diff --git a/.gitignore b/.gitignore index d0cc217..4a89642 100644 --- a/.gitignore +++ b/.gitignore @@ -175,4 +175,11 @@ data.yaml # orchestrateur - tests Timothée orchestrateur/ -flows/ \ No newline at end of file +flows/ +images/ +labeled-images/ +_non_images_tmp/ +yolov8n.pt +images_test/ +labeled_test/ +runs/ \ No newline at end of file diff --git a/ml/prompt_textuel_yolo/README.md b/ml/prompt_textuel_yolo/README.md new file mode 100644 index 0000000..f5170b2 --- /dev/null +++ b/ml/prompt_textuel_yolo/README.md @@ -0,0 +1,174 @@ +# ML — Détection et crop d'espèces marines (BioLit) + +## C'est quoi l'objectif ? + +On veut automatiser la détection des espèces marines (animaux et végétaux) dans les photos BioLit. +Concrètement : le programme regarde une photo, trouve où se trouve l'espèce, et **découpe cette zone** (= le crop). + +Ce crop servira ensuite à : +- classifier automatiquement l'espèce si la détection est fiable +- envoyer l'image dans Label Studio pour annotation manuelle si la détection est douteuse +- ignorer l'image si aucune espèce n'est trouvée + +--- + +## Ce que fait chaque fichier + +### `build_dataset.py` — Construire la base d'images + +Ce script part du fichier `export_biolit.csv` (l'export brut de la plateforme BioLit) et prépare toutes les images pour le travail suivant. + +Il fait 4 choses dans l'ordre : +1. Lit le CSV et garde seulement les observations **validées** +2. Télécharge les photos depuis internet +3. Les range dans des dossiers selon qu'elles sont **identifiables ou non** +4. Sauvegarde un fichier de métadonnées (`metadata.csv`) et un fichier de config pour YOLO (`data.yaml`) + +Structure créée automatiquement : + +``` +dataset_biolit/ +├── images/ +│ ├── identifiable/ ← photos d'espèces qu'on peut identifier +│ └── non_identifiable/ ← photos floues ou ambiguës (à valider) +├── labels/ +│ ├── identifiable/ ← réservé aux annotations YOLO +│ └── non_identifiable/ +├── metadata.csv ← tableau avec toutes les infos par image +└── data.yaml ← config pour entraîner un modèle YOLO +``` + +> ⚠️ Ce script doit être exécuté **en premier**, avant tout le reste. + +--- + +### `crop_pipeline.py` — Premier test de détection + +Ce script est le **prototype** : il teste Grounding DINO sur une seule image pour vérifier que le modèle fonctionne et que les crops sont corrects. + +Il utilise le prompt `"animal, plant"` sur une image de test et sauvegarde le crop découpé. + +C'est le point de départ qui a servi de base pour construire le benchmark. + +--- + +### `benchmark_gdino_simplifie.py` — Trouver le meilleur prompt ← **nouveau** + +C'est le script principal de cette étape. + +#### Pourquoi un benchmark de prompts ? + +Grounding DINO est un modèle **zéro-shot** : on lui dit en texte ce qu'on cherche, et il détecte. +Par exemple : `"crab, starfish, sea urchin"`. + +Le problème : on ne sait pas quel texte donne les **meilleures détections** sur nos photos BioLit. +Ce benchmark teste automatiquement **19 variantes de prompts** sur 100 images et compare les résultats. + +#### Ce qu'il fait, étape par étape + +1. **Charge 100 images** au hasard depuis `dataset_biolit/images/identifiable/` +2. **Charge le modèle** Grounding DINO (téléchargé automatiquement la première fois, ~700 MB) +3. **Pour chaque prompt**, applique la détection sur toutes les images et enregistre : + - combien de détections ont été trouvées + - le score de confiance de chaque détection + - les coordonnées de chaque boîte (bbox) + - les crops découpés (sauvegardés en `.webp`) +4. **Calcule des statistiques** par prompt : nombre de détections, confiance moyenne, % d'images avec confiance ≥ 60% +5. **Génère 5 graphiques** pour comparer visuellement les prompts +6. **Sauvegarde tout** : CSV brut, CSV de stats, et les graphiques + +#### Les 19 prompts testés + +| Nom du prompt | Texte envoyé au modèle | +|---|---| +| `simple` | `animal, plant` | +| `marin` | `marine animal, marine plant` | +| `sous_marin` | `underwater animal, underwater plant, marine organism` | +| `animaux_biolit` | `crab, starfish, sea urchin, anemone, shellfish...` | +| `plantes_biolit` | `seaweed, algae, brown algae, red algae...` | +| `equilibre` | `crab, starfish, sea urchin, anemone, seaweed...` | +| `morphologique` | `animal with shell, animal with tentacles...` | +| `ultra_detaille` | liste complète des espèces BioLit connues | +| `generique` | `animal, plant, marine organism, shellfish...` | +| `taxonomique` | `crustacean, mollusk, echinoderm, cnidarian...` | +| `crustaces` | `crab, lobster, shrimp, barnacle, mussel...` | +| `echinodermes` | `starfish, sea star, sea urchin, brittle star...` | +| `cnidaires` | `sea anemone, anemone, jellyfish...` | +| `algues_couleur` | `brown seaweed, red seaweed, green seaweed...` | +| `intertidal` | `intertidal animal, intertidal plant, tide pool creature...` | +| `visuel` | `spiny animal, shelled animal, tentacled creature...` | +| `top_combo` | `crab, starfish, sea urchin, mussel, barnacle, brown algae...` | +| `sessiles` | `barnacle, mussel, oyster, sea anemone...` | +| `mobiles` | `crab, starfish, sea urchin, snail, whelk...` | + +#### Les graphiques produits + +| Fichier | Ce qu'il montre | +|---|---| +| `01_detections.png` | Nombre total de détections par prompt | +| `02_confiance.png` | Score de confiance moyen par prompt | +| `03_haute_confiance.png` | % d'images avec confiance ≥ 60% | +| `04_heatmap.png` | Vue d'ensemble des 3 métriques normalisées | +| `05_violon_confiance.png` | Distribution des scores pour les 5 meilleurs prompts | + +#### Utilisation + +```bash +# Test rapide (10 images) +python benchmark_gdino_prompts.py --n-images 10 --output results/gdino_benchmark + +# Benchmark complet (100 images) +python benchmark_gdino_prompts.py --n-images 100 --output results/gdino_benchmark +``` + +#### Sorties + +``` +results/gdino_benchmark/ +├── crops/ +│ ├── simple/ ← crops découpés par prompt +│ ├── marin/ +│ └── ... +├── visualisations/ +│ ├── 01_detections.png +│ ├── 02_confiance.png +│ ├── 03_haute_confiance.png +│ ├── 04_heatmap.png +│ └── 05_violon_confiance.png +├── resultats_bruts_YYYYMMDD.csv ← une ligne par détection +└── stats_par_prompt_YYYYMMDD.csv ← une ligne par prompt +``` + +--- + +## Schéma du pipeline complet + +``` +export_biolit.csv + │ + ▼ +build_dataset.py → télécharge et range les images + │ + ▼ +dataset_biolit/images/identifiable/ + │ + ▼ +benchmark_gdino_prompts.py → teste 19 prompts, trouve le meilleur + │ + ▼ + résultats + graphiques + │ + ├── confiance forte → Classification automatique + ├── confiance faible → Label Studio (annotation manuelle) + └── aucune détection → stop +``` + +--- + +## Dépendances Python + +```bash +pip install torch transformers pandas matplotlib Pillow tqdm +``` + +> Le modèle Grounding DINO est téléchargé automatiquement par Hugging Face lors du premier lancement (~700 MB). diff --git a/ml/prompt_textuel_yolo/benchmark_gdino_prompts.py b/ml/prompt_textuel_yolo/benchmark_gdino_prompts.py new file mode 100644 index 0000000..41ad448 --- /dev/null +++ b/ml/prompt_textuel_yolo/benchmark_gdino_prompts.py @@ -0,0 +1,383 @@ +""" +Benchmark de prompts textuels pour Grounding DINO + +Ce script teste différents textes de recherche (prompts) sur un lot d'images +pour trouver lequel détecte le mieux les organismes marins du projet BioLit. + +Utilisation : + python benchmark_gdino_prompts.py --n-images 100 --output results/gdino_benchmark +""" + +# ── Imports ──────────────────────────────────────────────────────────────────── +import random +import argparse +from pathlib import Path +from datetime import datetime + +import torch +import pandas as pd +import matplotlib.pyplot as plt +from PIL import Image +from tqdm import tqdm +from transformers import AutoModelForZeroShotObjectDetection, AutoProcessor + + +# ── 1. CONFIGURATION GÉNÉRALE ───────────────────────────────────────────────── +# Chemins vers les données +IMAGES_DIR = Path("dataset_biolit/images/identifiable") + +# GPU si disponible, sinon CPU +DEVICE = torch.device("cuda" if torch.cuda.is_available() else "cpu") + +# Modèle à utiliser (tiny = plus rapide, base = plus précis) +MODEL_ID = "IDEA-Research/grounding-dino-base" + +# Seuil de confiance : on ignore les détections en-dessous de 30% +THRESHOLD = 0.3 + + +# ── 2. PROMPTS À TESTER ─────────────────────────────────────────────────────── +# Chaque entrée : nom_du_prompt → texte envoyé au modèle +PROMPTS = { + "simple": "animal, plant", + +} + + +# ── 3. CHARGEMENT DU MODÈLE ─────────────────────────────────────────────────── +def charger_modele(): + """Charge le modèle Grounding DINO et son processeur d'images.""" + print(f"Chargement du modèle sur {DEVICE}...") + processeur = AutoProcessor.from_pretrained(MODEL_ID) + modele = ( + AutoModelForZeroShotObjectDetection + .from_pretrained(MODEL_ID) + .eval() # mode évaluation : désactive le dropout + .to(DEVICE) # envoie le modèle sur GPU ou CPU + ) + print("Modèle prêt !\n") + return modele, processeur + + +# ── 4. DÉTECTION SUR UNE IMAGE ──────────────────────────────────────────────── +@torch.inference_mode() # désactive le calcul du gradient → plus rapide +def detecter(image, prompt, modele, processeur): + """ + Applique Grounding DINO sur une image avec un prompt textuel. + Retourne un dict avec les clés : 'scores', 'labels', 'boxes'. + """ + # Grounding DINO attend les labels séparés par des points + # Ex : "crab, starfish" → "crab. starfish." + labels = [lb.strip() for lb in prompt.split(",") if lb.strip()] + texte_formate = ". ".join(labels) + "." + + # Préparer les entrées du modèle + entrees = processeur( + images=image, + text=texte_formate, + return_tensors="pt" + ).to(DEVICE) + + # Inférence + sorties = modele(**entrees) + + # Convertir les sorties en boîtes de détection lisibles + resultats = processeur.post_process_grounded_object_detection( + sorties, + input_ids=entrees["input_ids"], + target_sizes=[(image.height, image.width)], + threshold=THRESHOLD, + text_threshold=THRESHOLD, + )[0] + + return resultats + + +# ── 5. SAUVEGARDER LES CROPS ────────────────────────────────────────────────── +def sauvegarder_crops(image, resultats, nom_image, dossier_sortie): + """ + Découpe et sauvegarde chaque zone détectée (crop) dans un fichier .webp. + Nom du fichier : nomimage_crop0_label_score.webp + """ + for i, (score, label, boite) in enumerate( + zip(resultats["scores"], resultats["labels"], resultats["boxes"]) + ): + x1, y1, x2, y2 = map(int, boite.tolist()) + crop = image.crop((x1, y1, x2, y2)) + nom_fichier = f"{nom_image}_crop{i}_{label}_{score:.2f}.webp" + crop.save(dossier_sortie / nom_fichier, "WEBP", quality=90) + + +# ── 6. TESTER UN PROMPT SUR TOUTES LES IMAGES ───────────────────────────────── +def tester_prompt(nom_prompt, texte_prompt, images, modele, processeur, dossier_crops): + """ + Applique un prompt sur toutes les images. + Retourne une liste de dicts (une entrée par détection trouvée). + """ + resultats_prompt = [] + + # Créer un sous-dossier pour les crops de ce prompt + dossier_prompt = dossier_crops / nom_prompt + dossier_prompt.mkdir(exist_ok=True) + + for chemin_image, image in tqdm(images, desc=f" {nom_prompt}", leave=False): + try: + resultats = detecter(image, texte_prompt, modele, processeur) + + # Sauvegarder les crops si on a trouvé quelque chose + if len(resultats["scores"]) > 0: + sauvegarder_crops(image, resultats, chemin_image.stem, dossier_prompt) + + # Enregistrer chaque détection dans notre tableau de résultats + for score, label, boite in zip( + resultats["scores"], resultats["labels"], resultats["boxes"] + ): + resultats_prompt.append({ + "prompt": nom_prompt, + "texte_prompt": texte_prompt, + "image": chemin_image.name, + "label": label, + "confiance": float(score), + "x1": float(boite[0]), "y1": float(boite[1]), + "x2": float(boite[2]), "y2": float(boite[3]), + }) + + except Exception as e: + print(f" ⚠ Erreur sur {chemin_image.name} : {e}") + + # Afficher un résumé pour ce prompt + n_images_avec_detection = len({r["image"] for r in resultats_prompt}) + print(f" → {len(resultats_prompt)} détections sur {n_images_avec_detection}/{len(images)} images") + + return resultats_prompt + + +# ── 7. GÉNÉRER LES GRAPHIQUES ───────────────────────────────────────────────── +def generer_violon(df_detections, stats, dossier_viz, timestamp): + """ + Violin plot de la distribution des scores de confiance pour les top 5 prompts. + Le violon montre la forme de la distribution : large = beaucoup de valeurs a cette hauteur. + La ligne centrale = mediane, le point = moyenne. + """ + print(" -> Generation du violin plot...") + + try: + # Selectionner les 5 prompts avec le plus de detections + top5 = stats.sort_values("n_detections", ascending=False).head(5)["prompt"].tolist() + + # Garder seulement les prompts avec au moins 2 detections + # (matplotlib ne peut pas dessiner un violon avec un seul point) + donnees = [] + labels_valides = [] + for p in top5: + valeurs = df_detections[df_detections["prompt"] == p]["confiance"].values + if len(valeurs) >= 2: + donnees.append(valeurs) + labels_valides.append(p) + else: + print(f" Prompt {p!r} ignore : seulement {len(valeurs)} detection(s), minimum 2 requis") + + if len(donnees) == 0: + print(" Violin plot ignore : aucun prompt n a assez de detections (min 2)") + return + + fig, ax = plt.subplots(figsize=(14, 8)) + + parts = ax.violinplot( + donnees, + positions=range(len(labels_valides)), + widths=0.7, + showmeans=True, + showmedians=True, + ) + + # Couleurs distinctes pour chaque violon + couleurs = plt.cm.Set3([i / max(len(labels_valides), 1) for i in range(len(labels_valides))]) + for i, pc in enumerate(parts["bodies"]): + pc.set_facecolor(couleurs[i]) + pc.set_alpha(0.7) + + ax.set_xticks(range(len(labels_valides))) + ax.set_xticklabels(labels_valides, rotation=30, ha="right", fontsize=10) + ax.set_ylabel("Score de confiance", fontsize=12, fontweight="bold") + ax.set_ylim(0, 1.0) + ax.set_title("Distribution des scores de confiance - Top 5 des prompts", + fontsize=14, fontweight="bold", pad=20) + ax.grid(axis="y", alpha=0.3) + + plt.tight_layout() + chemin = dossier_viz / f"05_violon_confiance_{timestamp}.png" + fig.savefig(chemin, dpi=150) + plt.close() + print(f" OK Violin plot -> {chemin.name}") + + except Exception as e: + print(f" ERREUR violin plot : {e}") + plt.close() + + +def generer_graphiques(stats, dossier_viz, timestamp, df_detections=None): + """Crée 5 graphiques de comparaison et les sauvegarde en PNG.""" + + # -- Graphique 1 : nombre total de détections par prompt + fig, ax = plt.subplots(figsize=(14, 8)) + stats_tri = stats.sort_values("n_detections") + ax.barh(stats_tri["prompt"], stats_tri["n_detections"], color="steelblue") + ax.set_xlabel("Nombre de détections") + ax.set_title("Détections totales par prompt") + plt.tight_layout() + fig.savefig(dossier_viz / f"01_detections_{timestamp}.png", dpi=150) + plt.close() + + # -- Graphique 2 : confiance moyenne par prompt + fig, ax = plt.subplots(figsize=(14, 8)) + stats_tri = stats.sort_values("confiance_moyenne") + ax.barh(stats_tri["prompt"], stats_tri["confiance_moyenne"], color="darkorange") + ax.set_xlabel("Confiance moyenne") + ax.set_xlim(0, 1) + ax.set_title("Confiance moyenne par prompt") + plt.tight_layout() + fig.savefig(dossier_viz / f"02_confiance_{timestamp}.png", dpi=150) + plt.close() + + # -- Graphique 3 : images avec confiance ≥ 60% + fig, ax = plt.subplots(figsize=(14, 8)) + stats_tri = stats.sort_values("pct_conf_60") + ax.barh(stats_tri["prompt"], stats_tri["pct_conf_60"], color="seagreen") + ax.set_xlabel("% d'images avec confiance ≥ 60%") + ax.set_xlim(0, 100) + ax.set_title("Images avec haute confiance (≥60%) par prompt") + plt.tight_layout() + fig.savefig(dossier_viz / f"03_haute_confiance_{timestamp}.png", dpi=150) + plt.close() + + # -- Graphique 4 : heatmap des 3 métriques normalisées + fig, ax = plt.subplots(figsize=(10, 9)) + stats_tri = stats.sort_values("n_detections", ascending=False) + + # Normaliser chaque colonne entre 0 et 1 + matrice = stats_tri[["n_detections", "confiance_moyenne", "pct_conf_60"]].copy() + matrice["n_detections"] = matrice["n_detections"] / matrice["n_detections"].max() + matrice["pct_conf_60"] = matrice["pct_conf_60"] / 100 + + im = ax.imshow(matrice.values, cmap="YlGnBu", aspect="auto", vmin=0, vmax=1) + ax.set_xticks([0, 1, 2]) + ax.set_xticklabels(["Détections", "Confiance moy.", "Conf. ≥60%"], fontweight="bold") + ax.set_yticks(range(len(stats_tri))) + ax.set_yticklabels(stats_tri["prompt"].values, fontsize=9) + for i in range(len(stats_tri)): + for j in range(3): + ax.text(j, i, f"{matrice.values[i, j]:.2f}", + ha="center", va="center", fontsize=8, fontweight="bold") + plt.colorbar(im, ax=ax, label="Score normalisé (0–1)") + ax.set_title("Heatmap de performance des prompts", fontweight="bold") + plt.tight_layout() + fig.savefig(dossier_viz / f"04_heatmap_{timestamp}.png", dpi=150) + plt.close() + + # -- Graphique 5 : violin plot top 5 prompts + if df_detections is not None and not df_detections.empty: + generer_violon(df_detections, stats, dossier_viz, timestamp) + + print(f"✓ Graphiques sauvegardés dans : {dossier_viz}") + + +# ── 8. PROGRAMME PRINCIPAL ──────────────────────────────────────────────────── +def main(): + # Lire les arguments de la ligne de commande + parser = argparse.ArgumentParser(description="Benchmark prompts Grounding DINO") + parser.add_argument("--n-images", type=int, default=100, help="Nombre d'images à tester") + parser.add_argument("--output", type=str, default="results/gdino_benchmark", help="Dossier de sortie") + args = parser.parse_args() + + timestamp = datetime.now().strftime("%Y%m%d_%H%M%S") + dossier = Path(args.output) + dossier_crops = dossier / "crops" + dossier_viz = dossier / "visualisations" + dossier_crops.mkdir(parents=True, exist_ok=True) + dossier_viz.mkdir(parents=True, exist_ok=True) + + print(f"Device : {DEVICE} | Modèle : {MODEL_ID}") + print(f"Images : {args.n_images} | Seuil : {THRESHOLD}\n") + + # ── Étape A : charger les images ────────────────────────────────────────── + fichiers = ( + list(IMAGES_DIR.glob("*.webp")) + + list(IMAGES_DIR.glob("*.jpg")) + + list(IMAGES_DIR.glob("*.jpeg")) + + list(IMAGES_DIR.glob("*.png")) + ) + random.seed(42) # seed fixe → même sélection à chaque run + fichiers = random.sample(fichiers, min(args.n_images, len(fichiers))) + + images = [] + for chemin in fichiers: + try: + images.append((chemin, Image.open(chemin).convert("RGB"))) + except Exception as e: + print(f"⚠ Impossible de charger {chemin.name} : {e}") + print(f"{len(images)} images chargées.\n") + + # ── Étape B : charger le modèle ─────────────────────────────────────────── + modele, processeur = charger_modele() + + # ── Étape C : tester tous les prompts ──────────────────────────────────── + toutes_detections = [] + + for nom_prompt, texte_prompt in PROMPTS.items(): + print(f"▶ Prompt : {nom_prompt}") + detections = tester_prompt( + nom_prompt, texte_prompt, images, modele, processeur, dossier_crops + ) + toutes_detections.extend(detections) + + # ── Étape D : sauvegarder les résultats bruts ───────────────────────────── + df = pd.DataFrame(toutes_detections) + chemin_csv = dossier / f"resultats_bruts_{timestamp}.csv" + df.to_csv(chemin_csv, index=False) + print(f"\n✓ Résultats bruts → {chemin_csv}") + + # ── Étape E : calculer les statistiques par prompt ──────────────────────── + if df.empty: + print("Aucune détection. Arrêt.") + return + + stats = df.groupby("prompt").agg( + n_detections = ("image", "count"), + n_images_detectees = ("image", "nunique"), + confiance_moyenne = ("confiance", "mean"), + confiance_mediane = ("confiance", "median"), + ).reset_index() + + # Ajouter : % d'images avec au moins une détection ≥ 60% + pct_list = [] + for prompt in stats["prompt"]: + df_p = df[df["prompt"] == prompt] + images_haute_conf = df_p[df_p["confiance"] >= 0.6]["image"].nunique() + total = df_p["image"].nunique() + pct_list.append(images_haute_conf / total * 100 if total > 0 else 0) + stats["pct_conf_60"] = pct_list + + stats = stats.sort_values("n_detections", ascending=False) + + chemin_stats = dossier / f"stats_par_prompt_{timestamp}.csv" + stats.to_csv(chemin_stats, index=False) + print(f"✓ Statistiques → {chemin_stats}") + + # Afficher le podium dans le terminal + print("\n🏆 TOP 3 DES PROMPTS :") + for i, (_, row) in enumerate(stats.head(3).iterrows(), 1): + print(f" {i}. {row['prompt']}") + print(f" {int(row['n_detections'])} détections | " + f"confiance moy. {row['confiance_moyenne']:.3f} | " + f"{row['pct_conf_60']:.1f}% images conf≥60%") + + # ── Étape F : générer les graphiques ───────────────────────────────────── + generer_graphiques(stats, dossier_viz, timestamp, df_detections=df) + + print(f"\n✅ Terminé ! Tout est dans : {dossier}") + + +if __name__ == "__main__": + main() + diff --git a/ml/prompt_textuel_yolo/build_dataset.py b/ml/prompt_textuel_yolo/build_dataset.py new file mode 100644 index 0000000..9ebb33c --- /dev/null +++ b/ml/prompt_textuel_yolo/build_dataset.py @@ -0,0 +1,247 @@ +import logging +import sys +import requests +import pandas as pd +from pathlib import Path +from tqdm import tqdm + + + +# LOGGING +LOG_FILE = Path("logs/build_dataset.log") +LOG_FILE.parent.mkdir(parents=True, exist_ok=True) + +logger = logging.getLogger("biolit") +logger.setLevel(logging.INFO) + +_stream_handler = logging.StreamHandler(sys.stdout) +_stream_handler.setLevel(logging.INFO) +_stream_handler.setFormatter( + logging.Formatter("%(asctime)s %(levelname)-8s %(message)s", "%H:%M:%S") +) + +_file_handler = logging.FileHandler(LOG_FILE, mode="w", encoding="utf-8") +_file_handler.setLevel(logging.INFO) +_file_handler.setFormatter( + logging.Formatter( + "%(asctime)s %(levelname)-8s %(message)s", + "%Y-%m-%d %H:%M:%S", + ) +) + +logger.addHandler(_stream_handler) +logger.addHandler(_file_handler) + + +# CONFIGS +DATA_PATH = "dataset_biolit/export_biolit.csv" +BASE_DIR = Path("dataset_biolit") +TIMEOUT = 10 +VALID_EXTS = {"jpg", "jpeg", "png", "webp"} + +USE_COLS = [ + "ID - N1", + "images - observation", + "Nom commun - observation", + "validee - observation", + "espece identifiable ? - observation", +] + +IDENTIFIABLE_VALUES = ["Identifiable", "Non identifiable"] + +SUBFOLDER_MAP = { + "Identifiable": "identifiable", + "Non identifiable": "non_identifiable", +} + + +# FONCTION UTILS +def load_and_filter(path: str) -> pd.DataFrame: + """Charge le CSV et filtre les observations validées.""" + logger.info("Chargement du CSV : %s", path) + data = pd.read_csv(path, usecols=USE_COLS) + total = len(data) + filtered = data[data["validee - observation"] == "TRUE"] + logger.info( + "CSV chargé — %d lignes totales, %d après filtrage (validée=TRUE)", + total, len(filtered), + ) + return filtered + + +def explode_image_urls(df: pd.DataFrame) -> pd.DataFrame: + """Split les URLs multiples (séparées par |) en une ligne par image.""" + logger.debug("Explosion des URLs multiples...") + result = ( + df.copy() + .assign(**{ + "images - observation": df["images - observation"] + .str.strip() + .str.split("|") + }) + .explode("images - observation") + .rename(columns={"images - observation": "image_url"}) + .assign(image_url=lambda d: d["image_url"].str.strip()) + .reset_index(drop=True) + ) + logger.info("Explosion terminée — %d lignes (une par image)", len(result)) + return result + + +def prepare_dataset(df: pd.DataFrame) -> pd.DataFrame: + """Sélectionne, renomme et enrichit les colonnes utiles.""" + logger.debug("Préparation du dataset...") + dataset = ( + df[[ + "ID - N1", + "Nom commun - observation", + "espece identifiable ? - observation", + "image_url", + ]] + .copy() + .rename(columns={"espece identifiable ? - observation": "identifiable"}) + .pipe(lambda d: d[d["identifiable"].isin(IDENTIFIABLE_VALUES)]) + .reset_index(drop=True) + ) + + dataset["filename"] = [_make_filename(row, i) for i, row in dataset.iterrows()] + dataset["subfolder"] = dataset["identifiable"].map(SUBFOLDER_MAP) + dataset["filepath"] = ( + str(BASE_DIR / "images") + "/" + dataset["subfolder"] + "/" + dataset["filename"] + ) + + counts = dataset["subfolder"].value_counts() + logger.info( + "Dataset préparé — identifiable: %d | non_identifiable: %d | total: %d", + counts.get("identifiable", 0), + counts.get("non_identifiable", 0), + len(dataset), + ) + return dataset + + +def _make_filename(row: pd.Series, idx: int) -> str: + id_n1 = str(row["ID - N1"]) + nom = str(row["Nom commun - observation"]) if pd.notna(row["Nom commun - observation"]) else "inconnu" + nom = nom.strip().replace(" ", "_").replace("/", "-") + ext = row["image_url"].split(".")[-1].split("?")[0].lower() + ext = ext if ext in VALID_EXTS else "jpg" + return f"{id_n1}_{nom}_{idx}.{ext}" + + +def create_folder_structure() -> None: + """Crée l'arborescence du dataset.""" + logger.debug("Création de l'arborescence des dossiers...") + for sub in [ + "images/identifiable", "images/non_identifiable", + "labels/identifiable", "labels/non_identifiable", + ]: + (BASE_DIR / sub).mkdir(parents=True, exist_ok=True) + logger.info("Arborescence créée dans : %s", BASE_DIR.resolve()) + + +def download_images(dataset: pd.DataFrame) -> list[dict]: + """Télécharge les images, skippe celles déjà présentes.""" + failed = [] + skipped = 0 + success = 0 + + logger.info("Démarrage du téléchargement (%d images)...", len(dataset)) + + for _, row in tqdm(dataset.iterrows(), total=len(dataset), desc="Téléchargement"): + dest = Path(row["filepath"]) + if dest.exists(): + skipped += 1 + logger.debug("Skipped (déjà présente) : %s", dest.name) + continue + try: + response = requests.get(row["image_url"], timeout=TIMEOUT) + response.raise_for_status() + dest.write_bytes(response.content) + success += 1 + logger.debug("OK %s", dest.name) + except Exception as e: + failed.append({"url": row["image_url"], "erreur": str(e)}) + logger.warning("ÉCHEC %s → %s", row["image_url"], e) + + logger.info( + "Téléchargement terminé — succès: %d | skipped: %d | échecs: %d", + success, skipped, len(failed), + ) + return failed + + +def save_metadata(dataset: pd.DataFrame) -> None: + dest = BASE_DIR / "metadata.csv" + dataset.to_csv(dest, index=False) + logger.info("Métadonnées sauvegardées : %s (%d lignes)", dest, len(dataset)) + + +def save_yaml(dataset: pd.DataFrame) -> None: + classes = sorted(dataset["Nom commun - observation"].dropna().unique().tolist()) + yaml_content = ( + f"# Dataset Biolit - config YOLO\n" + f"path: {BASE_DIR.resolve()}\n" + f"train: images/identifiable\n" + f"val: images/identifiable # à splitter train/val/test\n\n" + f"nc: {len(classes)}\n" + f"names: {classes}\n" + ) + dest = BASE_DIR / "data.yaml" + dest.write_text(yaml_content) + logger.info("data.yaml sauvegardé : %d classes", len(classes)) + + +def print_report(dataset: pd.DataFrame, failed: list[dict]) -> None: + counts = dataset["subfolder"].value_counts() + report = f""" + Dataset sauvegardé dans : {BASE_DIR.resolve()} + + images/identifiable/ -> {counts.get('identifiable', 0):>5} images + images/non_identifiable/ -> {counts.get('non_identifiable', 0):>5} images + labels/ -> prêt pour annotation YOLO + metadata.csv -> {len(dataset):>5} lignes + data.yaml -> {dataset['Nom commun - observation'].nunique():>5} classes + + Succès : {len(dataset) - len(failed)} + Échecs : {len(failed)} + """ + print(report) + logger.info("=== RAPPORT FINAL ===") + logger.info("identifiable: %d | non_identifiable: %d", counts.get("identifiable", 0), counts.get("non_identifiable", 0)) + logger.info("Total lignes metadata: %d | Classes: %d", len(dataset), dataset["Nom commun - observation"].nunique()) + logger.info("Succès: %d | Échecs: %d", len(dataset) - len(failed), len(failed)) + logger.info("Logs sauvegardés dans : %s", LOG_FILE.resolve()) + + +# RUNNER L'EXTRACT +def build_dataset(): + logger.info("════════ START build_dataset ════════") + + logger.info("Chargement et filtrage...") + raw = load_and_filter(DATA_PATH) + exploded = explode_image_urls(raw) + dataset = prepare_dataset(exploded) + + logger.info("%d images à traiter", len(dataset)) + + create_folder_structure() + + logger.info("Téléchargement des images...") + failed = download_images(dataset) + + logger.info("Sauvegarde des métadonnées...") + save_metadata(dataset) + save_yaml(dataset) + + if failed: + dest = BASE_DIR / "failed_downloads.csv" + pd.DataFrame(failed).to_csv(dest, index=False) + logger.warning("%d échec(s) enregistré(s) dans : %s", len(failed), dest) + + print_report(dataset, failed) + logger.info("════════ END build_dataset ════════") + + +if __name__ == "__main__": + build_dataset() diff --git a/ml/yolov8_DINO/crop_pipeline.py b/ml/prompt_textuel_yolo/crop_pipeline.py similarity index 100% rename from ml/yolov8_DINO/crop_pipeline.py rename to ml/prompt_textuel_yolo/crop_pipeline.py diff --git a/ml/prompt_textuel_yolo/dataset_biolit/export_biolit.csv b/ml/prompt_textuel_yolo/dataset_biolit/export_biolit.csv new file mode 100644 index 0000000..bfa70e5 --- /dev/null +++ b/ml/prompt_textuel_yolo/dataset_biolit/export_biolit.csv @@ -0,0 +1,22093 @@ +protocole,ID - N1,titre - N1,lien - N1,auteur - N1,images - N1,date - N1,heure-de-debut - N1,heure-de-fin - N1,latitude - N1,longitude - N1,relais-local - N1,nom du lieu - N1,ID - observation,titre - observation,lien - observation,Nom scientifique - observation,Nom commun - observation,programme espèce,images - observation,nombre de mollusques - observation,validee - observation,espece identifiable ? - observation +N1,22217,sortie-c03952e1-cef4-457c-8cb4-dd48111398de,https://biolit.fr/sorties/sortie-c03952e1-cef4-457c-8cb4-dd48111398de/,Marine,,03/02/2023,14.0:35,15.000005,49.328136000000,-0.377498000000,Planète Mer,Plage de saint-Aubin,20791,observation-c03952e1-cef4-457c-8cb4-dd48111398de,https://biolit.fr/observations/observation-c03952e1-cef4-457c-8cb4-dd48111398de/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20230302_142332-scaled.jpg,,FALSE, +N1,22217,sortie-c03952e1-cef4-457c-8cb4-dd48111398de,https://biolit.fr/sorties/sortie-c03952e1-cef4-457c-8cb4-dd48111398de/,Marine,,03/02/2023,14.0:35,15.000005,49.328136000000,-0.377498000000,Planète Mer,Plage de saint-Aubin,20793,observation-c03952e1-cef4-457c-8cb4-dd48111398de-2,https://biolit.fr/observations/observation-c03952e1-cef4-457c-8cb4-dd48111398de-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20230302_142624-scaled.jpg,,FALSE, +N1,22217,sortie-c03952e1-cef4-457c-8cb4-dd48111398de,https://biolit.fr/sorties/sortie-c03952e1-cef4-457c-8cb4-dd48111398de/,Marine,,03/02/2023,14.0:35,15.000005,49.328136000000,-0.377498000000,Planète Mer,Plage de saint-Aubin,20795,observation-c03952e1-cef4-457c-8cb4-dd48111398de-3,https://biolit.fr/observations/observation-c03952e1-cef4-457c-8cb4-dd48111398de-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20230302_142332_0-scaled.jpg,,FALSE, +N1,22218,sortie-071b53f0-78bd-4d2f-90b5-0445df772601,https://biolit.fr/sorties/sortie-071b53f0-78bd-4d2f-90b5-0445df772601/,Hupp,,1/25/2023 0:00,16.0000000,18.0000000,48.255326000000,1.859333000000,,plzge,,,,,,,,,, +N1,22219,sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3,https://biolit.fr/sorties/sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3/,carodub,,7/15/2022 0:00,11.0000000,13.0000000,47.264180000000,-2.406967000000,,PLAGE LA BAULE ESCOUBLAC,20799,observation-80e0b530-5709-4c97-98a0-1a1abf9907a3,https://biolit.fr/observations/observation-80e0b530-5709-4c97-98a0-1a1abf9907a3/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/05/IMG_5457.JPG,,TRUE, +N1,22219,sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3,https://biolit.fr/sorties/sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3/,carodub,,7/15/2022 0:00,11.0000000,13.0000000,47.264180000000,-2.406967000000,,PLAGE LA BAULE ESCOUBLAC,20801,observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-2,https://biolit.fr/observations/observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-2/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/IMG_5458.JPG,,TRUE, +N1,22219,sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3,https://biolit.fr/sorties/sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3/,carodub,,7/15/2022 0:00,11.0000000,13.0000000,47.264180000000,-2.406967000000,,PLAGE LA BAULE ESCOUBLAC,20803,observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-3,https://biolit.fr/observations/observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_5459.JPG,,FALSE, +N1,22219,sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3,https://biolit.fr/sorties/sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3/,carodub,,7/15/2022 0:00,11.0000000,13.0000000,47.264180000000,-2.406967000000,,PLAGE LA BAULE ESCOUBLAC,20805,observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-4,https://biolit.fr/observations/observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-4/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/05/IMG_5464.JPG,,,on +N1,22219,sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3,https://biolit.fr/sorties/sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3/,carodub,,7/15/2022 0:00,11.0000000,13.0000000,47.264180000000,-2.406967000000,,PLAGE LA BAULE ESCOUBLAC,20807,observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-5,https://biolit.fr/observations/observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-5/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/05/IMG_5465.JPG,,TRUE, +N1,22219,sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3,https://biolit.fr/sorties/sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3/,carodub,,7/15/2022 0:00,11.0000000,13.0000000,47.264180000000,-2.406967000000,,PLAGE LA BAULE ESCOUBLAC,20809,observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-6,https://biolit.fr/observations/observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-6/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_5468.JPG,,FALSE, +N1,22219,sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3,https://biolit.fr/sorties/sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3/,carodub,,7/15/2022 0:00,11.0000000,13.0000000,47.264180000000,-2.406967000000,,PLAGE LA BAULE ESCOUBLAC,20811,observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-7,https://biolit.fr/observations/observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-7/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_5469.JPG,,FALSE, +N1,22219,sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3,https://biolit.fr/sorties/sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3/,carodub,,7/15/2022 0:00,11.0000000,13.0000000,47.264180000000,-2.406967000000,,PLAGE LA BAULE ESCOUBLAC,20813,observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-8,https://biolit.fr/observations/observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-8/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_5485.JPG,,FALSE, +N1,22219,sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3,https://biolit.fr/sorties/sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3/,carodub,,7/15/2022 0:00,11.0000000,13.0000000,47.264180000000,-2.406967000000,,PLAGE LA BAULE ESCOUBLAC,20815,observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-9,https://biolit.fr/observations/observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-9/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_5487.JPG,,FALSE, +N1,22219,sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3,https://biolit.fr/sorties/sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3/,carodub,,7/15/2022 0:00,11.0000000,13.0000000,47.264180000000,-2.406967000000,,PLAGE LA BAULE ESCOUBLAC,20817,observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-10,https://biolit.fr/observations/observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-10/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_5469_0.JPG,,FALSE, +N1,22219,sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3,https://biolit.fr/sorties/sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3/,carodub,,7/15/2022 0:00,11.0000000,13.0000000,47.264180000000,-2.406967000000,,PLAGE LA BAULE ESCOUBLAC,20819,observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-11,https://biolit.fr/observations/observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-11/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_5498.JPG,,FALSE, +N1,22219,sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3,https://biolit.fr/sorties/sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3/,carodub,,7/15/2022 0:00,11.0000000,13.0000000,47.264180000000,-2.406967000000,,PLAGE LA BAULE ESCOUBLAC,20821,observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-12,https://biolit.fr/observations/observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-12/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_5502.JPG,,FALSE, +N1,22219,sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3,https://biolit.fr/sorties/sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3/,carodub,,7/15/2022 0:00,11.0000000,13.0000000,47.264180000000,-2.406967000000,,PLAGE LA BAULE ESCOUBLAC,20825,observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-14,https://biolit.fr/observations/observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-14/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5504.JPG,,TRUE, +N1,22219,sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3,https://biolit.fr/sorties/sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3/,carodub,,7/15/2022 0:00,11.0000000,13.0000000,47.264180000000,-2.406967000000,,PLAGE LA BAULE ESCOUBLAC,20827,observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-15,https://biolit.fr/observations/observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-15/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/05/IMG_5505.JPG,,TRUE, +N1,22219,sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3,https://biolit.fr/sorties/sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3/,carodub,,7/15/2022 0:00,11.0000000,13.0000000,47.264180000000,-2.406967000000,,PLAGE LA BAULE ESCOUBLAC,20829,observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-16,https://biolit.fr/observations/observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-16/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/05/IMG_5510.JPG,,TRUE, +N1,22220,sortie-5fab034b-74dc-4e3d-9864-e21146cb2055,https://biolit.fr/sorties/sortie-5fab034b-74dc-4e3d-9864-e21146cb2055/,sunnyattitude,,8/16/2022 0:00,15.0000000,16.0000000,47.853086000000,-3.993693000000,Planète Mer,Beg-meil,20833,observation-5fab034b-74dc-4e3d-9864-e21146cb2055,https://biolit.fr/observations/observation-5fab034b-74dc-4e3d-9864-e21146cb2055/,,,,https://biolit.fr/wp-content/uploads/2023/05/306055177_1459764144451048_3296221070870805390_n.jpg,,FALSE, +N1,22220,sortie-5fab034b-74dc-4e3d-9864-e21146cb2055,https://biolit.fr/sorties/sortie-5fab034b-74dc-4e3d-9864-e21146cb2055/,sunnyattitude,,8/16/2022 0:00,15.0000000,16.0000000,47.853086000000,-3.993693000000,Planète Mer,Beg-meil,20835,observation-5fab034b-74dc-4e3d-9864-e21146cb2055-2,https://biolit.fr/observations/observation-5fab034b-74dc-4e3d-9864-e21146cb2055-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/305539870_525029322668190_7630357606170935480_n.jpg,,FALSE, +N1,22220,sortie-5fab034b-74dc-4e3d-9864-e21146cb2055,https://biolit.fr/sorties/sortie-5fab034b-74dc-4e3d-9864-e21146cb2055/,sunnyattitude,,8/16/2022 0:00,15.0000000,16.0000000,47.853086000000,-3.993693000000,Planète Mer,Beg-meil,20837,observation-5fab034b-74dc-4e3d-9864-e21146cb2055-3,https://biolit.fr/observations/observation-5fab034b-74dc-4e3d-9864-e21146cb2055-3/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/05/305433719_496381301823393_4197361325610774026_n.jpg,,TRUE, +N1,22220,sortie-5fab034b-74dc-4e3d-9864-e21146cb2055,https://biolit.fr/sorties/sortie-5fab034b-74dc-4e3d-9864-e21146cb2055/,sunnyattitude,,8/16/2022 0:00,15.0000000,16.0000000,47.853086000000,-3.993693000000,Planète Mer,Beg-meil,20839,observation-5fab034b-74dc-4e3d-9864-e21146cb2055-4,https://biolit.fr/observations/observation-5fab034b-74dc-4e3d-9864-e21146cb2055-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/305047341_1516571405448761_2356056680141978947_n.jpg,,FALSE, +N1,22221,sortie-8a8d1084-aebb-4f26-8a33-0416330fede1,https://biolit.fr/sorties/sortie-8a8d1084-aebb-4f26-8a33-0416330fede1/,OFB,,7/13/2022 0:00,10.0:25,12.0000000,47.53357500000,-3.145403000000,,Portivy,20843,observation-8a8d1084-aebb-4f26-8a33-0416330fede1,https://biolit.fr/observations/observation-8a8d1084-aebb-4f26-8a33-0416330fede1/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20220713_105503.jpg,,TRUE, +N1,22222,sortie-28216dd6-7d97-4e50-b9e9-9e1909c44ca1,https://biolit.fr/sorties/sortie-28216dd6-7d97-4e50-b9e9-9e1909c44ca1/,Anne,,7/29/2022 0:00,14.0000000,15.0000000,48.619133000000,-2.152903000000,,"Plage de l'Islet, Lancieux",20845,observation-28216dd6-7d97-4e50-b9e9-9e1909c44ca1,https://biolit.fr/observations/observation-28216dd6-7d97-4e50-b9e9-9e1909c44ca1/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Fucus vesiculeux et gibbule ombilique-scaled.jpg,,TRUE, +N1,22222,sortie-28216dd6-7d97-4e50-b9e9-9e1909c44ca1,https://biolit.fr/sorties/sortie-28216dd6-7d97-4e50-b9e9-9e1909c44ca1/,Anne,,7/29/2022 0:00,14.0000000,15.0000000,48.619133000000,-2.152903000000,,"Plage de l'Islet, Lancieux",20847,observation-28216dd6-7d97-4e50-b9e9-9e1909c44ca1-2,https://biolit.fr/observations/observation-28216dd6-7d97-4e50-b9e9-9e1909c44ca1-2/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Fucus vesiculeux et bernique-scaled.jpg,,TRUE, +N1,22222,sortie-28216dd6-7d97-4e50-b9e9-9e1909c44ca1,https://biolit.fr/sorties/sortie-28216dd6-7d97-4e50-b9e9-9e1909c44ca1/,Anne,,7/29/2022 0:00,14.0000000,15.0000000,48.619133000000,-2.152903000000,,"Plage de l'Islet, Lancieux",20849,observation-28216dd6-7d97-4e50-b9e9-9e1909c44ca1-3,https://biolit.fr/observations/observation-28216dd6-7d97-4e50-b9e9-9e1909c44ca1-3/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/Fucus dente et gibbule commune-scaled.jpg,,TRUE, +N1,22223,sortie-aec94ecb-52b1-4411-9b9f-b014d04dad28,https://biolit.fr/sorties/sortie-aec94ecb-52b1-4411-9b9f-b014d04dad28/,Ligue de l'enseignement 22,,2/28/2022 0:00,13.0000000,14.0000000,48.596886000000,-2.823316000000,,"Plage de la banche, Binic",20851,observation-aec94ecb-52b1-4411-9b9f-b014d04dad28,https://biolit.fr/observations/observation-aec94ecb-52b1-4411-9b9f-b014d04dad28/,,,,https://biolit.fr/wp-content/uploads/2022/06/bigorneau_0.jpg,,FALSE, +N1,22223,sortie-aec94ecb-52b1-4411-9b9f-b014d04dad28,https://biolit.fr/sorties/sortie-aec94ecb-52b1-4411-9b9f-b014d04dad28/,Ligue de l'enseignement 22,,2/28/2022 0:00,13.0000000,14.0000000,48.596886000000,-2.823316000000,,"Plage de la banche, Binic",20852,observation-aec94ecb-52b1-4411-9b9f-b014d04dad28-2,https://biolit.fr/observations/observation-aec94ecb-52b1-4411-9b9f-b014d04dad28-2/,,,,https://biolit.fr/wp-content/uploads/2022/06/Balanes.jpg,,FALSE, +N1,22223,sortie-aec94ecb-52b1-4411-9b9f-b014d04dad28,https://biolit.fr/sorties/sortie-aec94ecb-52b1-4411-9b9f-b014d04dad28/,Ligue de l'enseignement 22,,2/28/2022 0:00,13.0000000,14.0000000,48.596886000000,-2.823316000000,,"Plage de la banche, Binic",20853,observation-aec94ecb-52b1-4411-9b9f-b014d04dad28-3,https://biolit.fr/observations/observation-aec94ecb-52b1-4411-9b9f-b014d04dad28-3/,,,,https://biolit.fr/wp-content/uploads/2022/06/Actinie cheval.jpg,,FALSE, +N1,22223,sortie-aec94ecb-52b1-4411-9b9f-b014d04dad28,https://biolit.fr/sorties/sortie-aec94ecb-52b1-4411-9b9f-b014d04dad28/,Ligue de l'enseignement 22,,2/28/2022 0:00,13.0000000,14.0000000,48.596886000000,-2.823316000000,,"Plage de la banche, Binic",20854,observation-aec94ecb-52b1-4411-9b9f-b014d04dad28-4,https://biolit.fr/observations/observation-aec94ecb-52b1-4411-9b9f-b014d04dad28-4/,,,,https://biolit.fr/wp-content/uploads/2022/06/Littorine Fabalis.jpg,,FALSE, +N1,22223,sortie-aec94ecb-52b1-4411-9b9f-b014d04dad28,https://biolit.fr/sorties/sortie-aec94ecb-52b1-4411-9b9f-b014d04dad28/,Ligue de l'enseignement 22,,2/28/2022 0:00,13.0000000,14.0000000,48.596886000000,-2.823316000000,,"Plage de la banche, Binic",20855,observation-aec94ecb-52b1-4411-9b9f-b014d04dad28-5,https://biolit.fr/observations/observation-aec94ecb-52b1-4411-9b9f-b014d04dad28-5/,,,,https://biolit.fr/wp-content/uploads/2022/06/Littorine Obtuses.jpg,,FALSE, +N1,22223,sortie-aec94ecb-52b1-4411-9b9f-b014d04dad28,https://biolit.fr/sorties/sortie-aec94ecb-52b1-4411-9b9f-b014d04dad28/,Ligue de l'enseignement 22,,2/28/2022 0:00,13.0000000,14.0000000,48.596886000000,-2.823316000000,,"Plage de la banche, Binic",20856,observation-aec94ecb-52b1-4411-9b9f-b014d04dad28-6,https://biolit.fr/observations/observation-aec94ecb-52b1-4411-9b9f-b014d04dad28-6/,,,,https://biolit.fr/wp-content/uploads/2022/06/Moule_1-1.jpg,,FALSE, +N1,22224,sortie-3d79aef8-2789-4ee0-867f-31b63341ecf1,https://biolit.fr/sorties/sortie-3d79aef8-2789-4ee0-867f-31b63341ecf1/,Ligue de l'enseignement 22,,2/28/2022 0:00,13.0000000,14.0:15,48.597969000000,-2.82352100000,,"Plage de la Banche, Binic ",20857,observation-3d79aef8-2789-4ee0-867f-31b63341ecf1,https://biolit.fr/observations/observation-3d79aef8-2789-4ee0-867f-31b63341ecf1/,,,,https://biolit.fr/wp-content/uploads/2022/06/IMG_20220228_141033_0.jpg,,FALSE, +N1,22224,sortie-3d79aef8-2789-4ee0-867f-31b63341ecf1,https://biolit.fr/sorties/sortie-3d79aef8-2789-4ee0-867f-31b63341ecf1/,Ligue de l'enseignement 22,,2/28/2022 0:00,13.0000000,14.0:15,48.597969000000,-2.82352100000,,"Plage de la Banche, Binic ",20858,observation-3d79aef8-2789-4ee0-867f-31b63341ecf1-2,https://biolit.fr/observations/observation-3d79aef8-2789-4ee0-867f-31b63341ecf1-2/,,,,https://biolit.fr/wp-content/uploads/2022/06/IMG_20220228_141220.jpg,,FALSE, +N1,22224,sortie-3d79aef8-2789-4ee0-867f-31b63341ecf1,https://biolit.fr/sorties/sortie-3d79aef8-2789-4ee0-867f-31b63341ecf1/,Ligue de l'enseignement 22,,2/28/2022 0:00,13.0000000,14.0:15,48.597969000000,-2.82352100000,,"Plage de la Banche, Binic ",20859,observation-3d79aef8-2789-4ee0-867f-31b63341ecf1-3,https://biolit.fr/observations/observation-3d79aef8-2789-4ee0-867f-31b63341ecf1-3/,,,,https://biolit.fr/wp-content/uploads/2022/06/IMG_20220228_141520.jpg,,FALSE, +N1,22224,sortie-3d79aef8-2789-4ee0-867f-31b63341ecf1,https://biolit.fr/sorties/sortie-3d79aef8-2789-4ee0-867f-31b63341ecf1/,Ligue de l'enseignement 22,,2/28/2022 0:00,13.0000000,14.0:15,48.597969000000,-2.82352100000,,"Plage de la Banche, Binic ",20860,observation-3d79aef8-2789-4ee0-867f-31b63341ecf1-4,https://biolit.fr/observations/observation-3d79aef8-2789-4ee0-867f-31b63341ecf1-4/,,,,https://biolit.fr/wp-content/uploads/2022/06/IMG_20220228_141627.jpg,,FALSE, +N1,22225,sortie-0c4a6138-4c25-4bcc-bf47-911518116c1a,https://biolit.fr/sorties/sortie-0c4a6138-4c25-4bcc-bf47-911518116c1a/,collège paul Eluard,,1/25/2022 0:00,14.0000000,15.0000000,50.829169000000,1.59095800000,,Audreselles,20861,observation-0c4a6138-4c25-4bcc-bf47-911518116c1a,https://biolit.fr/observations/observation-0c4a6138-4c25-4bcc-bf47-911518116c1a/,,,,https://biolit.fr/wp-content/uploads/2022/06/GilliersLecleireJoachim5e6Bigorneau1.jpg.png,,FALSE, +N1,22226,sortie-75cbd5c8-d10b-46bb-88e0-d1c205ce5f00,https://biolit.fr/sorties/sortie-75cbd5c8-d10b-46bb-88e0-d1c205ce5f00/,collège paul Eluard,,01/11/2022,14.0000000,15.0000000,50.824114000000,1.596090000000,,Audresselles ,20862,observation-75cbd5c8-d10b-46bb-88e0-d1c205ce5f00,https://biolit.fr/observations/observation-75cbd5c8-d10b-46bb-88e0-d1c205ce5f00/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/208AF806-2587-4FE2-9E4F-CFCBD7CC4DE5-scaled.jpeg,,TRUE, +N1,22227,sortie-93b18f80-ec28-444a-932d-03e6d9614c7f,https://biolit.fr/sorties/sortie-93b18f80-ec28-444a-932d-03e6d9614c7f/,collège paul Eluard,,01/11/2022,14.0000000,15.0000000,50.828647000000,1.590607000000,,audresselles,20864,observation-93b18f80-ec28-444a-932d-03e6d9614c7f,https://biolit.fr/observations/observation-93b18f80-ec28-444a-932d-03e6d9614c7f/,,,,https://biolit.fr/wp-content/uploads/2022/06/20220111_151427[1]-scaled.jpg,,FALSE, +N1,22228,sortie-ec773291-6ce8-47bf-87d7-3468109e7e2b,https://biolit.fr/sorties/sortie-ec773291-6ce8-47bf-87d7-3468109e7e2b/,collège paul Eluard,,01/11/2022,14.0000000,15.0000000,50.830537000000,1.58978200000,,Audresselles,20865,observation-ec773291-6ce8-47bf-87d7-3468109e7e2b,https://biolit.fr/observations/observation-ec773291-6ce8-47bf-87d7-3468109e7e2b/,,,,https://biolit.fr/wp-content/uploads/2022/06/Lilian bernard.jpg,,FALSE, +N1,22229,sortie-54f166a5-283a-40f0-b39f-5416cc08437a,https://biolit.fr/sorties/sortie-54f166a5-283a-40f0-b39f-5416cc08437a/,collège paul Eluard,,01/11/2022,14.0000000,15.0000000,50.820200000000,1.594331000000,,Audresselles,20866,observation-54f166a5-283a-40f0-b39f-5416cc08437a,https://biolit.fr/observations/observation-54f166a5-283a-40f0-b39f-5416cc08437a/,,,,https://biolit.fr/wp-content/uploads/2022/06/C222441F-383C-45AF-A577-39E81F6FBCFA-scaled.jpeg,,FALSE, +N1,22230,sortie-ca7b9d02-6ac0-418b-aa08-54f9894d7eac,https://biolit.fr/sorties/sortie-ca7b9d02-6ac0-418b-aa08-54f9894d7eac/,collège paul Eluard,,01/11/2022,14.0000000,15.0000000,50.823385000000,1.594438000000,,Audresselles,20867,observation-ca7b9d02-6ac0-418b-aa08-54f9894d7eac,https://biolit.fr/observations/observation-ca7b9d02-6ac0-418b-aa08-54f9894d7eac/,,,,https://biolit.fr/wp-content/uploads/2022/06/IMG_20220111_150006[1]-scaled.jpg,,FALSE, +N1,22231,sortie-5ea7f50d-5f96-4c34-b1c8-65ecff949ae5,https://biolit.fr/sorties/sortie-5ea7f50d-5f96-4c34-b1c8-65ecff949ae5/,collège paul Eluard,,01/11/2022,14.0000000,15.0000000,44.354230000000,4.804969000000,,Audresselles,20868,observation-5ea7f50d-5f96-4c34-b1c8-65ecff949ae5,https://biolit.fr/observations/observation-5ea7f50d-5f96-4c34-b1c8-65ecff949ae5/,,,,https://biolit.fr/wp-content/uploads/2022/06/IMG_20220111_144914-scaled.jpg,,FALSE, +N1,22232,sortie-05b3ce1e-f30c-4dc9-9115-1bf6341a9e31,https://biolit.fr/sorties/sortie-05b3ce1e-f30c-4dc9-9115-1bf6341a9e31/,collège paul Eluard,,01/11/2022,14.0000000,15.0000000,50.635310000000,1.576371000000,Nausicaa,HARDELOT,20869,observation-05b3ce1e-f30c-4dc9-9115-1bf6341a9e31,https://biolit.fr/observations/observation-05b3ce1e-f30c-4dc9-9115-1bf6341a9e31/,,,,https://biolit.fr/wp-content/uploads/2022/06/un coquillage sur son algue.jpg,,FALSE, +N1,22233,sortie-bcb155e8-6d60-4eee-bf9d-47c801e3f1d2,https://biolit.fr/sorties/sortie-bcb155e8-6d60-4eee-bf9d-47c801e3f1d2/,collège paul Eluard,,01/11/2022,14.0000000,15.0000000,50.823643000000,1.592014000000,,Audresselle,20870,observation-bcb155e8-6d60-4eee-bf9d-47c801e3f1d2,https://biolit.fr/observations/observation-bcb155e8-6d60-4eee-bf9d-47c801e3f1d2/,,,,https://biolit.fr/wp-content/uploads/2022/06/272048826_357270412902684_1740025504187171953_n.jpg,,FALSE, +N1,22233,sortie-bcb155e8-6d60-4eee-bf9d-47c801e3f1d2,https://biolit.fr/sorties/sortie-bcb155e8-6d60-4eee-bf9d-47c801e3f1d2/,collège paul Eluard,,01/11/2022,14.0000000,15.0000000,50.823643000000,1.592014000000,,Audresselle,20871,observation-bcb155e8-6d60-4eee-bf9d-47c801e3f1d2-2,https://biolit.fr/observations/observation-bcb155e8-6d60-4eee-bf9d-47c801e3f1d2-2/,,,,https://biolit.fr/wp-content/uploads/2022/06/271940398_3172298306388949_7017236535389674198_n.jpg,,FALSE, +N1,22234,sortie-cb03d7ba-0521-49d4-be43-433a5f92748a,https://biolit.fr/sorties/sortie-cb03d7ba-0521-49d4-be43-433a5f92748a/,collège paul Eluard,,1/19/2022 0:00,14.0000000,15.0000000,50.828814000000,1.590451000000,,Audresselles,20872,observation-cb03d7ba-0521-49d4-be43-433a5f92748a,https://biolit.fr/observations/observation-cb03d7ba-0521-49d4-be43-433a5f92748a/,,,,https://biolit.fr/wp-content/uploads/2022/06/Snapchat-50754479.jpg,,FALSE, +N1,22235,sortie-03400d6d-0004-48b3-a770-bfa8390e8f45,https://biolit.fr/sorties/sortie-03400d6d-0004-48b3-a770-bfa8390e8f45/,Dorian ROULET,,01/04/2022,11.0000000,11.0:45,47.346432000000,-3.1520720000,Planète Mer,Plage du port,20873,observation-03400d6d-0004-48b3-a770-bfa8390e8f45,https://biolit.fr/observations/observation-03400d6d-0004-48b3-a770-bfa8390e8f45/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG20220104111033-scaled.jpg,,TRUE, +N1,22236,sortie-fa444e60-ede5-4703-8653-0070e7c216a4,https://biolit.fr/sorties/sortie-fa444e60-ede5-4703-8653-0070e7c216a4/,Valérie Eurin,,9/25/2021 0:00,18.0000000,20.0000000,49.375621000000,0.085658000000,,Plage des roches noires,20875,observation-fa444e60-ede5-4703-8653-0070e7c216a4,https://biolit.fr/observations/observation-fa444e60-ede5-4703-8653-0070e7c216a4/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1700.jpg,,TRUE, +N1,22236,sortie-fa444e60-ede5-4703-8653-0070e7c216a4,https://biolit.fr/sorties/sortie-fa444e60-ede5-4703-8653-0070e7c216a4/,Valérie Eurin,,9/25/2021 0:00,18.0000000,20.0000000,49.375621000000,0.085658000000,,Plage des roches noires,20877,observation-fa444e60-ede5-4703-8653-0070e7c216a4-2,https://biolit.fr/observations/observation-fa444e60-ede5-4703-8653-0070e7c216a4-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1755_0-scaled.jpg,,FALSE, +N1,22236,sortie-fa444e60-ede5-4703-8653-0070e7c216a4,https://biolit.fr/sorties/sortie-fa444e60-ede5-4703-8653-0070e7c216a4/,Valérie Eurin,,9/25/2021 0:00,18.0000000,20.0000000,49.375621000000,0.085658000000,,Plage des roches noires,20879,observation-fa444e60-ede5-4703-8653-0070e7c216a4-3,https://biolit.fr/observations/observation-fa444e60-ede5-4703-8653-0070e7c216a4-3/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1752-scaled.jpg,,TRUE, +N1,22237,sortie-b17fc0ad-4273-4ad4-a8ca-dd15b7a6c44d,https://biolit.fr/sorties/sortie-b17fc0ad-4273-4ad4-a8ca-dd15b7a6c44d/,Valérie Eurin,,9/25/2021 0:00,18.0000000,20.0000000,49.378855000000,0.087557000000,,"Plage des roches noires, Trouville",20881,observation-b17fc0ad-4273-4ad4-a8ca-dd15b7a6c44d,https://biolit.fr/observations/observation-b17fc0ad-4273-4ad4-a8ca-dd15b7a6c44d/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1753 redim-scaled.jpg,,FALSE, +N1,22237,sortie-b17fc0ad-4273-4ad4-a8ca-dd15b7a6c44d,https://biolit.fr/sorties/sortie-b17fc0ad-4273-4ad4-a8ca-dd15b7a6c44d/,Valérie Eurin,,9/25/2021 0:00,18.0000000,20.0000000,49.378855000000,0.087557000000,,"Plage des roches noires, Trouville",20883,observation-b17fc0ad-4273-4ad4-a8ca-dd15b7a6c44d-2,https://biolit.fr/observations/observation-b17fc0ad-4273-4ad4-a8ca-dd15b7a6c44d-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_1785 redim-scaled.jpg,,TRUE, +N1,22237,sortie-b17fc0ad-4273-4ad4-a8ca-dd15b7a6c44d,https://biolit.fr/sorties/sortie-b17fc0ad-4273-4ad4-a8ca-dd15b7a6c44d/,Valérie Eurin,,9/25/2021 0:00,18.0000000,20.0000000,49.378855000000,0.087557000000,,"Plage des roches noires, Trouville",20885,observation-b17fc0ad-4273-4ad4-a8ca-dd15b7a6c44d-3,https://biolit.fr/observations/observation-b17fc0ad-4273-4ad4-a8ca-dd15b7a6c44d-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_1779_redim-scaled.jpg,,TRUE, +N1,22238,sortie-9c6f7db5-fefc-4aa9-8a66-65cc83ffe43d,https://biolit.fr/sorties/sortie-9c6f7db5-fefc-4aa9-8a66-65cc83ffe43d/,CHRISTELLE LECAILLE,,7/29/2021 0:00,14.0000000,14.0000000,47.297112000000,-2.546253000000,,LE CROISIC,20889,observation-9c6f7db5-fefc-4aa9-8a66-65cc83ffe43d,https://biolit.fr/observations/observation-9c6f7db5-fefc-4aa9-8a66-65cc83ffe43d/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/Algues_1.jpg,,TRUE, +N1,22238,sortie-9c6f7db5-fefc-4aa9-8a66-65cc83ffe43d,https://biolit.fr/sorties/sortie-9c6f7db5-fefc-4aa9-8a66-65cc83ffe43d/,CHRISTELLE LECAILLE,,7/29/2021 0:00,14.0000000,14.0000000,47.297112000000,-2.546253000000,,LE CROISIC,20891,observation-9c6f7db5-fefc-4aa9-8a66-65cc83ffe43d-2,https://biolit.fr/observations/observation-9c6f7db5-fefc-4aa9-8a66-65cc83ffe43d-2/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/05/Algues 2_0.jpg,,TRUE, +N1,22239,sortie-ce941977-26c1-443b-921c-3a95f63537d3,https://biolit.fr/sorties/sortie-ce941977-26c1-443b-921c-3a95f63537d3/,AIEJE,,6/30/2021 0:00,11.0000000,12.0000000,43.330982000000,5.202953000000,AIEJE,plage des anthenors,20893,observation-ce941977-26c1-443b-921c-3a95f63537d3,https://biolit.fr/observations/observation-ce941977-26c1-443b-921c-3a95f63537d3/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/05/IMG_2987.JPG,,TRUE, +N1,22240,sortie-b1fc787c-e210-4992-8260-36ccfc443e9a,https://biolit.fr/sorties/sortie-b1fc787c-e210-4992-8260-36ccfc443e9a/,Environat,,05/01/2021,14.0000000,15.0000000,45.630458000000,-1.064403000000,Environat,conche de Saint Sordelin,20895,observation-b1fc787c-e210-4992-8260-36ccfc443e9a,https://biolit.fr/observations/observation-b1fc787c-e210-4992-8260-36ccfc443e9a/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1030283.jpg,,TRUE, +N1,22240,sortie-b1fc787c-e210-4992-8260-36ccfc443e9a,https://biolit.fr/sorties/sortie-b1fc787c-e210-4992-8260-36ccfc443e9a/,Environat,,05/01/2021,14.0000000,15.0000000,45.630458000000,-1.064403000000,Environat,conche de Saint Sordelin,20897,observation-b1fc787c-e210-4992-8260-36ccfc443e9a-2,https://biolit.fr/observations/observation-b1fc787c-e210-4992-8260-36ccfc443e9a-2/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1030278.jpg,,TRUE, +N1,22240,sortie-b1fc787c-e210-4992-8260-36ccfc443e9a,https://biolit.fr/sorties/sortie-b1fc787c-e210-4992-8260-36ccfc443e9a/,Environat,,05/01/2021,14.0000000,15.0000000,45.630458000000,-1.064403000000,Environat,conche de Saint Sordelin,20899,observation-b1fc787c-e210-4992-8260-36ccfc443e9a-3,https://biolit.fr/observations/observation-b1fc787c-e210-4992-8260-36ccfc443e9a-3/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1030277.jpg,,TRUE, +N1,22240,sortie-b1fc787c-e210-4992-8260-36ccfc443e9a,https://biolit.fr/sorties/sortie-b1fc787c-e210-4992-8260-36ccfc443e9a/,Environat,,05/01/2021,14.0000000,15.0000000,45.630458000000,-1.064403000000,Environat,conche de Saint Sordelin,20901,observation-b1fc787c-e210-4992-8260-36ccfc443e9a-4,https://biolit.fr/observations/observation-b1fc787c-e210-4992-8260-36ccfc443e9a-4/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1030275.jpg,,TRUE, +N1,22240,sortie-b1fc787c-e210-4992-8260-36ccfc443e9a,https://biolit.fr/sorties/sortie-b1fc787c-e210-4992-8260-36ccfc443e9a/,Environat,,05/01/2021,14.0000000,15.0000000,45.630458000000,-1.064403000000,Environat,conche de Saint Sordelin,20903,observation-b1fc787c-e210-4992-8260-36ccfc443e9a-5,https://biolit.fr/observations/observation-b1fc787c-e210-4992-8260-36ccfc443e9a-5/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1030273.jpg,,TRUE, +N1,22240,sortie-b1fc787c-e210-4992-8260-36ccfc443e9a,https://biolit.fr/sorties/sortie-b1fc787c-e210-4992-8260-36ccfc443e9a/,Environat,,05/01/2021,14.0000000,15.0000000,45.630458000000,-1.064403000000,Environat,conche de Saint Sordelin,20905,observation-b1fc787c-e210-4992-8260-36ccfc443e9a-6,https://biolit.fr/observations/observation-b1fc787c-e210-4992-8260-36ccfc443e9a-6/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/P1030272.jpg,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20915,observation-eb185631-6714-4180-8214-9b7bcb43598d-5,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-5/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4918.PNG,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20917,observation-eb185631-6714-4180-8214-9b7bcb43598d-6,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-6/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4917.PNG,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20919,observation-eb185631-6714-4180-8214-9b7bcb43598d-7,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-7/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4919.PNG,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20927,observation-eb185631-6714-4180-8214-9b7bcb43598d-11,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-11/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4859.jpg,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20933,observation-eb185631-6714-4180-8214-9b7bcb43598d-14,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-14/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4912.PNG,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20935,observation-eb185631-6714-4180-8214-9b7bcb43598d-15,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-15/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4913.PNG,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20937,observation-eb185631-6714-4180-8214-9b7bcb43598d-16,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-16/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4920.PNG,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20941,observation-eb185631-6714-4180-8214-9b7bcb43598d-18,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-18/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4896.JPG,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20943,observation-eb185631-6714-4180-8214-9b7bcb43598d-19,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-19/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4897.JPG,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20945,observation-eb185631-6714-4180-8214-9b7bcb43598d-20,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-20/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4898.JPG,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20949,observation-eb185631-6714-4180-8214-9b7bcb43598d-22,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-22/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4900.JPG,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20957,observation-eb185631-6714-4180-8214-9b7bcb43598d-26,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-26/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4866.jpg,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20959,observation-eb185631-6714-4180-8214-9b7bcb43598d-27,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-27/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4868.jpg,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20961,observation-eb185631-6714-4180-8214-9b7bcb43598d-28,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-28/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4869.jpg,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20963,observation-eb185631-6714-4180-8214-9b7bcb43598d-29,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-29/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4891.jpg,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20977,observation-eb185631-6714-4180-8214-9b7bcb43598d-36,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-36/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4904.JPG,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20979,observation-eb185631-6714-4180-8214-9b7bcb43598d-37,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-37/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4910.JPG,,TRUE, +N1,22242,sortie-ec44943b-6a77-4830-b3cb-6541b71ffeb9,https://biolit.fr/sorties/sortie-ec44943b-6a77-4830-b3cb-6541b71ffeb9/,CPIE Loire Océane,,7/16/2020 0:00,10.0000000,11.0:15,47.374044000000,-2.560195000000,CPIE Loire Oceane Environnement,Piriac-sur-Mer,20983,observation-ec44943b-6a77-4830-b3cb-6541b71ffeb9,https://biolit.fr/observations/observation-ec44943b-6a77-4830-b3cb-6541b71ffeb9/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/05/fiche 6 le castelli Piriac.jpg,,TRUE, +N1,22243,sortie-a1b281cb-6c23-4623-b46f-109235330f8b,https://biolit.fr/sorties/sortie-a1b281cb-6c23-4623-b46f-109235330f8b/,Les glénans animateurs environnement 2020,,1/28/2020 0:00,11.0000000,11.0000000,47.870024000000,-3.922050000000,,"Plage CAC, Concarneau",20985,observation-a1b281cb-6c23-4623-b46f-109235330f8b,https://biolit.fr/observations/observation-a1b281cb-6c23-4623-b46f-109235330f8b/,,,,https://biolit.fr/wp-content/uploads/2023/05/Fucus denté - gastéropode inconnu-scaled.jpg,,FALSE, +N1,22243,sortie-a1b281cb-6c23-4623-b46f-109235330f8b,https://biolit.fr/sorties/sortie-a1b281cb-6c23-4623-b46f-109235330f8b/,Les glénans animateurs environnement 2020,,1/28/2020 0:00,11.0000000,11.0000000,47.870024000000,-3.922050000000,,"Plage CAC, Concarneau",20987,observation-a1b281cb-6c23-4623-b46f-109235330f8b-2,https://biolit.fr/observations/observation-a1b281cb-6c23-4623-b46f-109235330f8b-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/Fucus denté ponte littorine-scaled.jpg,,FALSE, +N1,22243,sortie-a1b281cb-6c23-4623-b46f-109235330f8b,https://biolit.fr/sorties/sortie-a1b281cb-6c23-4623-b46f-109235330f8b/,Les glénans animateurs environnement 2020,,1/28/2020 0:00,11.0000000,11.0000000,47.870024000000,-3.922050000000,,"Plage CAC, Concarneau",20989,observation-a1b281cb-6c23-4623-b46f-109235330f8b-3,https://biolit.fr/observations/observation-a1b281cb-6c23-4623-b46f-109235330f8b-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/Fucus denté littorine avec des oeufs-scaled.jpg,,FALSE, +N1,22243,sortie-a1b281cb-6c23-4623-b46f-109235330f8b,https://biolit.fr/sorties/sortie-a1b281cb-6c23-4623-b46f-109235330f8b/,Les glénans animateurs environnement 2020,,1/28/2020 0:00,11.0000000,11.0000000,47.870024000000,-3.922050000000,,"Plage CAC, Concarneau",20991,observation-a1b281cb-6c23-4623-b46f-109235330f8b-4,https://biolit.fr/observations/observation-a1b281cb-6c23-4623-b46f-109235330f8b-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/Fucus denté avec moule-scaled.jpg,,FALSE, +N1,22243,sortie-a1b281cb-6c23-4623-b46f-109235330f8b,https://biolit.fr/sorties/sortie-a1b281cb-6c23-4623-b46f-109235330f8b/,Les glénans animateurs environnement 2020,,1/28/2020 0:00,11.0000000,11.0000000,47.870024000000,-3.922050000000,,"Plage CAC, Concarneau",20993,observation-a1b281cb-6c23-4623-b46f-109235330f8b-5,https://biolit.fr/observations/observation-a1b281cb-6c23-4623-b46f-109235330f8b-5/,,,,https://biolit.fr/wp-content/uploads/2023/05/ascophylle noueux vellèle-scaled.jpg,,FALSE, +N1,22244,sortie-b063bf9f-41f3-4a75-a0ae-817a3800b078,https://biolit.fr/sorties/sortie-b063bf9f-41f3-4a75-a0ae-817a3800b078/,enzo2007,,11/05/2019,9.000005,10.000005,43.407860000000,5.057427000000,,plage de ferreieres,20995,observation-b063bf9f-41f3-4a75-a0ae-817a3800b078,https://biolit.fr/observations/observation-b063bf9f-41f3-4a75-a0ae-817a3800b078/,,,,https://biolit.fr/wp-content/uploads/2023/05/plage2.jpg,,FALSE, +N1,22244,sortie-b063bf9f-41f3-4a75-a0ae-817a3800b078,https://biolit.fr/sorties/sortie-b063bf9f-41f3-4a75-a0ae-817a3800b078/,enzo2007,,11/05/2019,9.000005,10.000005,43.407860000000,5.057427000000,,plage de ferreieres,20997,observation-b063bf9f-41f3-4a75-a0ae-817a3800b078-2,https://biolit.fr/observations/observation-b063bf9f-41f3-4a75-a0ae-817a3800b078-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/plage3.jpg,,FALSE, +N1,22244,sortie-b063bf9f-41f3-4a75-a0ae-817a3800b078,https://biolit.fr/sorties/sortie-b063bf9f-41f3-4a75-a0ae-817a3800b078/,enzo2007,,11/05/2019,9.000005,10.000005,43.407860000000,5.057427000000,,plage de ferreieres,20999,observation-b063bf9f-41f3-4a75-a0ae-817a3800b078-3,https://biolit.fr/observations/observation-b063bf9f-41f3-4a75-a0ae-817a3800b078-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/plage6.jpg,,FALSE, +N1,22244,sortie-b063bf9f-41f3-4a75-a0ae-817a3800b078,https://biolit.fr/sorties/sortie-b063bf9f-41f3-4a75-a0ae-817a3800b078/,enzo2007,,11/05/2019,9.000005,10.000005,43.407860000000,5.057427000000,,plage de ferreieres,21001,observation-b063bf9f-41f3-4a75-a0ae-817a3800b078-4,https://biolit.fr/observations/observation-b063bf9f-41f3-4a75-a0ae-817a3800b078-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/plage11.jpg,,FALSE, +N1,22245,sortie-dad4c959-8e2e-42d8-a74c-d6aa26bda79c,https://biolit.fr/sorties/sortie-dad4c959-8e2e-42d8-a74c-d6aa26bda79c/,Emeline 44240,,08/05/2019,17.0000000,17.0:45,47.489315000000,-2.821097000000,,"Plage de kercambre,56730,Saint-Glidas-De-Rhuys,France",21003,observation-dad4c959-8e2e-42d8-a74c-d6aa26bda79c,https://biolit.fr/observations/observation-dad4c959-8e2e-42d8-a74c-d6aa26bda79c/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/Algue brune.png,,TRUE, +N1,22246,sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9,https://biolit.fr/sorties/sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9/,laetimiq,,07/04/2019,17.0000000,17.0000000,48.640085000000,-2.072088000000,Planète Mer,Plage de Saint-Enogat,21005,observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9,https://biolit.fr/observations/observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P7040085-scaled.jpg,,TRUE, +N1,22246,sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9,https://biolit.fr/sorties/sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9/,laetimiq,,07/04/2019,17.0000000,17.0000000,48.640085000000,-2.072088000000,Planète Mer,Plage de Saint-Enogat,21007,observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-2,https://biolit.fr/observations/observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-2/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P7040087-scaled.jpg,,TRUE, +N1,22246,sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9,https://biolit.fr/sorties/sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9/,laetimiq,,07/04/2019,17.0000000,17.0000000,48.640085000000,-2.072088000000,Planète Mer,Plage de Saint-Enogat,21009,observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-3,https://biolit.fr/observations/observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-3/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P7040090-scaled.jpg,,TRUE, +N1,22246,sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9,https://biolit.fr/sorties/sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9/,laetimiq,,07/04/2019,17.0000000,17.0000000,48.640085000000,-2.072088000000,Planète Mer,Plage de Saint-Enogat,21011,observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-4,https://biolit.fr/observations/observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P7040091-scaled.jpg,,TRUE, +N1,22246,sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9,https://biolit.fr/sorties/sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9/,laetimiq,,07/04/2019,17.0000000,17.0000000,48.640085000000,-2.072088000000,Planète Mer,Plage de Saint-Enogat,21013,observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-5,https://biolit.fr/observations/observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-5/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P7040094-scaled.jpg,,TRUE, +N1,22246,sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9,https://biolit.fr/sorties/sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9/,laetimiq,,07/04/2019,17.0000000,17.0000000,48.640085000000,-2.072088000000,Planète Mer,Plage de Saint-Enogat,21015,observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-6,https://biolit.fr/observations/observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-6/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P7040095-scaled.jpg,,TRUE, +N1,22246,sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9,https://biolit.fr/sorties/sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9/,laetimiq,,07/04/2019,17.0000000,17.0000000,48.640085000000,-2.072088000000,Planète Mer,Plage de Saint-Enogat,21017,observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-7,https://biolit.fr/observations/observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-7/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P7040096-scaled.jpg,,TRUE, +N1,22246,sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9,https://biolit.fr/sorties/sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9/,laetimiq,,07/04/2019,17.0000000,17.0000000,48.640085000000,-2.072088000000,Planète Mer,Plage de Saint-Enogat,21019,observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-8,https://biolit.fr/observations/observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-8/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P7040097-scaled.jpg,,TRUE, +N1,22246,sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9,https://biolit.fr/sorties/sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9/,laetimiq,,07/04/2019,17.0000000,17.0000000,48.640085000000,-2.072088000000,Planète Mer,Plage de Saint-Enogat,21021,observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-9,https://biolit.fr/observations/observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-9/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P7040098-scaled.jpg,,TRUE, +N1,22246,sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9,https://biolit.fr/sorties/sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9/,laetimiq,,07/04/2019,17.0000000,17.0000000,48.640085000000,-2.072088000000,Planète Mer,Plage de Saint-Enogat,21023,observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-10,https://biolit.fr/observations/observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-10/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P7040099-scaled.jpg,,TRUE, +N1,22246,sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9,https://biolit.fr/sorties/sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9/,laetimiq,,07/04/2019,17.0000000,17.0000000,48.640085000000,-2.072088000000,Planète Mer,Plage de Saint-Enogat,21025,observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-11,https://biolit.fr/observations/observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-11/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P7040100-scaled.jpg,,TRUE, +N1,22246,sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9,https://biolit.fr/sorties/sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9/,laetimiq,,07/04/2019,17.0000000,17.0000000,48.640085000000,-2.072088000000,Planète Mer,Plage de Saint-Enogat,21027,observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-12,https://biolit.fr/observations/observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-12/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P7040102-scaled.jpg,,TRUE, +N1,22247,sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1,https://biolit.fr/sorties/sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1/,ymf-saillard@orange.fr,,5/25/2019 0:00,14.0:45,16.0000000,47.857757000000,-3.978398000000,,Pointe de Beg Meil,21029,observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1,https://biolit.fr/observations/observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/IMGP1.gif,,TRUE, +N1,22247,sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1,https://biolit.fr/sorties/sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1/,ymf-saillard@orange.fr,,5/25/2019 0:00,14.0:45,16.0000000,47.857757000000,-3.978398000000,,Pointe de Beg Meil,21031,observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1-2,https://biolit.fr/observations/observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1-2/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/IMGP2.gif,,TRUE, +N1,22247,sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1,https://biolit.fr/sorties/sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1/,ymf-saillard@orange.fr,,5/25/2019 0:00,14.0:45,16.0000000,47.857757000000,-3.978398000000,,Pointe de Beg Meil,21033,observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1-3,https://biolit.fr/observations/observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMGP3.gif,,TRUE, +N1,22247,sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1,https://biolit.fr/sorties/sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1/,ymf-saillard@orange.fr,,5/25/2019 0:00,14.0:45,16.0000000,47.857757000000,-3.978398000000,,Pointe de Beg Meil,21035,observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1-4,https://biolit.fr/observations/observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMGP4.gif,,TRUE, +N1,22247,sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1,https://biolit.fr/sorties/sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1/,ymf-saillard@orange.fr,,5/25/2019 0:00,14.0:45,16.0000000,47.857757000000,-3.978398000000,,Pointe de Beg Meil,21037,observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1-5,https://biolit.fr/observations/observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMGP5.gif,,TRUE, +N1,22247,sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1,https://biolit.fr/sorties/sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1/,ymf-saillard@orange.fr,,5/25/2019 0:00,14.0:45,16.0000000,47.857757000000,-3.978398000000,,Pointe de Beg Meil,21039,observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1-6,https://biolit.fr/observations/observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1-6/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMGP9.gif,,FALSE, +N1,22247,sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1,https://biolit.fr/sorties/sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1/,ymf-saillard@orange.fr,,5/25/2019 0:00,14.0:45,16.0000000,47.857757000000,-3.978398000000,,Pointe de Beg Meil,21041,observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1-7,https://biolit.fr/observations/observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1-7/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMGP10.gif,,TRUE, +N1,22247,sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1,https://biolit.fr/sorties/sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1/,ymf-saillard@orange.fr,,5/25/2019 0:00,14.0:45,16.0000000,47.857757000000,-3.978398000000,,Pointe de Beg Meil,21043,observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1-8,https://biolit.fr/observations/observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1-8/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/05/IMGP12.gif,,TRUE, +N1,22247,sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1,https://biolit.fr/sorties/sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1/,ymf-saillard@orange.fr,,5/25/2019 0:00,14.0:45,16.0000000,47.857757000000,-3.978398000000,,Pointe de Beg Meil,21045,observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1-9,https://biolit.fr/observations/observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1-9/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/IMGP13.gif,,TRUE, +N1,22248,sortie-243fc707-bfe8-43f9-b385-893ecfd555a4,https://biolit.fr/sorties/sortie-243fc707-bfe8-43f9-b385-893ecfd555a4/,Environat,,4/24/2019 0:00,14.0000000,16.0000000,45.604199000000,-1.013034000000,Environat,ile aux mouettes,21047,observation-243fc707-bfe8-43f9-b385-893ecfd555a4,https://biolit.fr/observations/observation-243fc707-bfe8-43f9-b385-893ecfd555a4/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_0003_1.JPG,,TRUE, +N1,22248,sortie-243fc707-bfe8-43f9-b385-893ecfd555a4,https://biolit.fr/sorties/sortie-243fc707-bfe8-43f9-b385-893ecfd555a4/,Environat,,4/24/2019 0:00,14.0000000,16.0000000,45.604199000000,-1.013034000000,Environat,ile aux mouettes,21049,observation-243fc707-bfe8-43f9-b385-893ecfd555a4-2,https://biolit.fr/observations/observation-243fc707-bfe8-43f9-b385-893ecfd555a4-2/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_0004_1.JPG,,TRUE, +N1,22248,sortie-243fc707-bfe8-43f9-b385-893ecfd555a4,https://biolit.fr/sorties/sortie-243fc707-bfe8-43f9-b385-893ecfd555a4/,Environat,,4/24/2019 0:00,14.0000000,16.0000000,45.604199000000,-1.013034000000,Environat,ile aux mouettes,21051,observation-243fc707-bfe8-43f9-b385-893ecfd555a4-3,https://biolit.fr/observations/observation-243fc707-bfe8-43f9-b385-893ecfd555a4-3/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_0007_1.JPG,,TRUE, +N1,22248,sortie-243fc707-bfe8-43f9-b385-893ecfd555a4,https://biolit.fr/sorties/sortie-243fc707-bfe8-43f9-b385-893ecfd555a4/,Environat,,4/24/2019 0:00,14.0000000,16.0000000,45.604199000000,-1.013034000000,Environat,ile aux mouettes,21053,observation-243fc707-bfe8-43f9-b385-893ecfd555a4-4,https://biolit.fr/observations/observation-243fc707-bfe8-43f9-b385-893ecfd555a4-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_0011.JPG,,TRUE, +N1,22249,sortie-3efb9b3f-3464-41b5-b64d-0986c403222d,https://biolit.fr/sorties/sortie-3efb9b3f-3464-41b5-b64d-0986c403222d/,LesGlénans,,04/08/2019,13.0000000,14.0000000,47.718992000000,-3.958357000000,,Ile de Penfret,21055,observation-3efb9b3f-3464-41b5-b64d-0986c403222d,https://biolit.fr/observations/observation-3efb9b3f-3464-41b5-b64d-0986c403222d/,,,,https://biolit.fr/wp-content/uploads/2023/05/20190408_132309_0-scaled.jpg,,FALSE, +N1,22249,sortie-3efb9b3f-3464-41b5-b64d-0986c403222d,https://biolit.fr/sorties/sortie-3efb9b3f-3464-41b5-b64d-0986c403222d/,LesGlénans,,04/08/2019,13.0000000,14.0000000,47.718992000000,-3.958357000000,,Ile de Penfret,21057,observation-3efb9b3f-3464-41b5-b64d-0986c403222d-2,https://biolit.fr/observations/observation-3efb9b3f-3464-41b5-b64d-0986c403222d-2/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20190408_134305_0-scaled.jpg,,TRUE, +N1,22249,sortie-3efb9b3f-3464-41b5-b64d-0986c403222d,https://biolit.fr/sorties/sortie-3efb9b3f-3464-41b5-b64d-0986c403222d/,LesGlénans,,04/08/2019,13.0000000,14.0000000,47.718992000000,-3.958357000000,,Ile de Penfret,21059,observation-3efb9b3f-3464-41b5-b64d-0986c403222d-3,https://biolit.fr/observations/observation-3efb9b3f-3464-41b5-b64d-0986c403222d-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20190408_134314_0-scaled.jpg,,TRUE, +N1,22250,sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144,https://biolit.fr/sorties/sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869639000000,-3.923713000000,,"concarneau, estran rocheux de la corniche",21061,observation-bd1cf7c2-6141-47c1-9a1e-e40922677144,https://biolit.fr/observations/observation-bd1cf7c2-6141-47c1-9a1e-e40922677144/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190421_121314-scaled.jpg,,FALSE, +N1,22250,sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144,https://biolit.fr/sorties/sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869639000000,-3.923713000000,,"concarneau, estran rocheux de la corniche",21063,observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-2,https://biolit.fr/observations/observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-2/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190421_123158-scaled.jpg,,TRUE, +N1,22250,sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144,https://biolit.fr/sorties/sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869639000000,-3.923713000000,,"concarneau, estran rocheux de la corniche",21065,observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-3,https://biolit.fr/observations/observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-3/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190421_123121-scaled.jpg,,TRUE, +N1,22250,sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144,https://biolit.fr/sorties/sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869639000000,-3.923713000000,,"concarneau, estran rocheux de la corniche",21067,observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-4,https://biolit.fr/observations/observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-4/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190421_123255-scaled.jpg,,TRUE, +N1,22250,sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144,https://biolit.fr/sorties/sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869639000000,-3.923713000000,,"concarneau, estran rocheux de la corniche",21069,observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-5,https://biolit.fr/observations/observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-5/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190421_123515-scaled.jpg,,TRUE, +N1,22250,sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144,https://biolit.fr/sorties/sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869639000000,-3.923713000000,,"concarneau, estran rocheux de la corniche",21071,observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-6,https://biolit.fr/observations/observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-6/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190421_124650-scaled.jpg,,TRUE, +N1,22250,sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144,https://biolit.fr/sorties/sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869639000000,-3.923713000000,,"concarneau, estran rocheux de la corniche",21073,observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-7,https://biolit.fr/observations/observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-7/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190421_124826-scaled.jpg,,FALSE, +N1,22250,sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144,https://biolit.fr/sorties/sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869639000000,-3.923713000000,,"concarneau, estran rocheux de la corniche",21075,observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-8,https://biolit.fr/observations/observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-8/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190421_125248-scaled.jpg,,TRUE, +N1,22250,sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144,https://biolit.fr/sorties/sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869639000000,-3.923713000000,,"concarneau, estran rocheux de la corniche",21077,observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-9,https://biolit.fr/observations/observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-9/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190421_125355-scaled.jpg,,TRUE, +N1,22250,sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144,https://biolit.fr/sorties/sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869639000000,-3.923713000000,,"concarneau, estran rocheux de la corniche",21079,observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-10,https://biolit.fr/observations/observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-10/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190421_125438-scaled.jpg,,TRUE, +N1,22251,sortie-95fcb117-719f-459a-82d1-b809221dbf2c,https://biolit.fr/sorties/sortie-95fcb117-719f-459a-82d1-b809221dbf2c/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869707000000,-3.923956000000,,"Concarneau, estran rocheux de la corniche",21081,observation-95fcb117-719f-459a-82d1-b809221dbf2c,https://biolit.fr/observations/observation-95fcb117-719f-459a-82d1-b809221dbf2c/,,,,https://biolit.fr/wp-content/uploads/2023/05/Ceinture_pelvetie[1]-scaled.jpg,,FALSE, +N1,22251,sortie-95fcb117-719f-459a-82d1-b809221dbf2c,https://biolit.fr/sorties/sortie-95fcb117-719f-459a-82d1-b809221dbf2c/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869707000000,-3.923956000000,,"Concarneau, estran rocheux de la corniche",21083,observation-95fcb117-719f-459a-82d1-b809221dbf2c-2,https://biolit.fr/observations/observation-95fcb117-719f-459a-82d1-b809221dbf2c-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/Quadra1-scaled.jpg,,FALSE, +N1,22251,sortie-95fcb117-719f-459a-82d1-b809221dbf2c,https://biolit.fr/sorties/sortie-95fcb117-719f-459a-82d1-b809221dbf2c/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869707000000,-3.923956000000,,"Concarneau, estran rocheux de la corniche",21085,observation-95fcb117-719f-459a-82d1-b809221dbf2c-3,https://biolit.fr/observations/observation-95fcb117-719f-459a-82d1-b809221dbf2c-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_0648[1]-scaled.jpg,,TRUE, +N1,22251,sortie-95fcb117-719f-459a-82d1-b809221dbf2c,https://biolit.fr/sorties/sortie-95fcb117-719f-459a-82d1-b809221dbf2c/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869707000000,-3.923956000000,,"Concarneau, estran rocheux de la corniche",21087,observation-95fcb117-719f-459a-82d1-b809221dbf2c-4,https://biolit.fr/observations/observation-95fcb117-719f-459a-82d1-b809221dbf2c-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_0649[1]-scaled.jpg,,TRUE, +N1,22251,sortie-95fcb117-719f-459a-82d1-b809221dbf2c,https://biolit.fr/sorties/sortie-95fcb117-719f-459a-82d1-b809221dbf2c/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869707000000,-3.923956000000,,"Concarneau, estran rocheux de la corniche",21089,observation-95fcb117-719f-459a-82d1-b809221dbf2c-5,https://biolit.fr/observations/observation-95fcb117-719f-459a-82d1-b809221dbf2c-5/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_0650[1]-scaled.jpg,,FALSE, +N1,22251,sortie-95fcb117-719f-459a-82d1-b809221dbf2c,https://biolit.fr/sorties/sortie-95fcb117-719f-459a-82d1-b809221dbf2c/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869707000000,-3.923956000000,,"Concarneau, estran rocheux de la corniche",21091,observation-95fcb117-719f-459a-82d1-b809221dbf2c-6,https://biolit.fr/observations/observation-95fcb117-719f-459a-82d1-b809221dbf2c-6/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_0651[1]-scaled.jpg,,FALSE, +N1,22251,sortie-95fcb117-719f-459a-82d1-b809221dbf2c,https://biolit.fr/sorties/sortie-95fcb117-719f-459a-82d1-b809221dbf2c/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869707000000,-3.923956000000,,"Concarneau, estran rocheux de la corniche",21093,observation-95fcb117-719f-459a-82d1-b809221dbf2c-7,https://biolit.fr/observations/observation-95fcb117-719f-459a-82d1-b809221dbf2c-7/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_0652[1]-scaled.jpg,,FALSE, +N1,22251,sortie-95fcb117-719f-459a-82d1-b809221dbf2c,https://biolit.fr/sorties/sortie-95fcb117-719f-459a-82d1-b809221dbf2c/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869707000000,-3.923956000000,,"Concarneau, estran rocheux de la corniche",21095,observation-95fcb117-719f-459a-82d1-b809221dbf2c-8,https://biolit.fr/observations/observation-95fcb117-719f-459a-82d1-b809221dbf2c-8/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_0653[1]-scaled.jpg,,FALSE, +N1,22251,sortie-95fcb117-719f-459a-82d1-b809221dbf2c,https://biolit.fr/sorties/sortie-95fcb117-719f-459a-82d1-b809221dbf2c/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869707000000,-3.923956000000,,"Concarneau, estran rocheux de la corniche",21097,observation-95fcb117-719f-459a-82d1-b809221dbf2c-9,https://biolit.fr/observations/observation-95fcb117-719f-459a-82d1-b809221dbf2c-9/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_0654[1]-scaled.jpg,,FALSE, +N1,22251,sortie-95fcb117-719f-459a-82d1-b809221dbf2c,https://biolit.fr/sorties/sortie-95fcb117-719f-459a-82d1-b809221dbf2c/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869707000000,-3.923956000000,,"Concarneau, estran rocheux de la corniche",21099,observation-95fcb117-719f-459a-82d1-b809221dbf2c-10,https://biolit.fr/observations/observation-95fcb117-719f-459a-82d1-b809221dbf2c-10/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_0655[1]-scaled.jpg,,FALSE, +N1,22251,sortie-95fcb117-719f-459a-82d1-b809221dbf2c,https://biolit.fr/sorties/sortie-95fcb117-719f-459a-82d1-b809221dbf2c/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869707000000,-3.923956000000,,"Concarneau, estran rocheux de la corniche",21101,observation-95fcb117-719f-459a-82d1-b809221dbf2c-11,https://biolit.fr/observations/observation-95fcb117-719f-459a-82d1-b809221dbf2c-11/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_0656[1]-scaled.jpg,,FALSE, +N1,22251,sortie-95fcb117-719f-459a-82d1-b809221dbf2c,https://biolit.fr/sorties/sortie-95fcb117-719f-459a-82d1-b809221dbf2c/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869707000000,-3.923956000000,,"Concarneau, estran rocheux de la corniche",21103,observation-95fcb117-719f-459a-82d1-b809221dbf2c-12,https://biolit.fr/observations/observation-95fcb117-719f-459a-82d1-b809221dbf2c-12/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_0657[1]-scaled.jpg,,FALSE, +N1,22251,sortie-95fcb117-719f-459a-82d1-b809221dbf2c,https://biolit.fr/sorties/sortie-95fcb117-719f-459a-82d1-b809221dbf2c/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869707000000,-3.923956000000,,"Concarneau, estran rocheux de la corniche",21105,observation-95fcb117-719f-459a-82d1-b809221dbf2c-13,https://biolit.fr/observations/observation-95fcb117-719f-459a-82d1-b809221dbf2c-13/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_0658[1]-scaled.jpg,,FALSE, +N1,22252,sortie-6aea2b33-ef4e-47e6-976b-08ead2560d06,https://biolit.fr/sorties/sortie-6aea2b33-ef4e-47e6-976b-08ead2560d06/,DidierB,,04/08/2019,13.0000000,14.0000000,47.71889500000,-3.95840000000,,estran Ouest Île de Penfret,21107,observation-6aea2b33-ef4e-47e6-976b-08ead2560d06,https://biolit.fr/observations/observation-6aea2b33-ef4e-47e6-976b-08ead2560d06/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/_MG_2881.thumb_-scaled.jpg,,TRUE, +N1,22252,sortie-6aea2b33-ef4e-47e6-976b-08ead2560d06,https://biolit.fr/sorties/sortie-6aea2b33-ef4e-47e6-976b-08ead2560d06/,DidierB,,04/08/2019,13.0000000,14.0000000,47.71889500000,-3.95840000000,,estran Ouest Île de Penfret,21109,observation-6aea2b33-ef4e-47e6-976b-08ead2560d06-2,https://biolit.fr/observations/observation-6aea2b33-ef4e-47e6-976b-08ead2560d06-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/_MG_2882.thumb_-scaled.jpg,,TRUE, +N1,22252,sortie-6aea2b33-ef4e-47e6-976b-08ead2560d06,https://biolit.fr/sorties/sortie-6aea2b33-ef4e-47e6-976b-08ead2560d06/,DidierB,,04/08/2019,13.0000000,14.0000000,47.71889500000,-3.95840000000,,estran Ouest Île de Penfret,21111,observation-6aea2b33-ef4e-47e6-976b-08ead2560d06-3,https://biolit.fr/observations/observation-6aea2b33-ef4e-47e6-976b-08ead2560d06-3/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/_MG_2884.thumb_-scaled.jpg,,TRUE, +N1,22252,sortie-6aea2b33-ef4e-47e6-976b-08ead2560d06,https://biolit.fr/sorties/sortie-6aea2b33-ef4e-47e6-976b-08ead2560d06/,DidierB,,04/08/2019,13.0000000,14.0000000,47.71889500000,-3.95840000000,,estran Ouest Île de Penfret,21113,observation-6aea2b33-ef4e-47e6-976b-08ead2560d06-4,https://biolit.fr/observations/observation-6aea2b33-ef4e-47e6-976b-08ead2560d06-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/_MG_2885.thumb_-scaled.jpg,,TRUE, +N1,22253,sortie-7ea6aa41-0725-4931-a0aa-710b63aab1f7,https://biolit.fr/sorties/sortie-7ea6aa41-0725-4931-a0aa-710b63aab1f7/,DidierB,,04/08/2019,13.0000000,14.0000000,44.534868000000,-4.380601000000,,estran Ouest Île de Penfret,21115,observation-7ea6aa41-0725-4931-a0aa-710b63aab1f7,https://biolit.fr/observations/observation-7ea6aa41-0725-4931-a0aa-710b63aab1f7/,,,,https://biolit.fr/wp-content/uploads/2023/05/_MG_2872.thumb_-scaled.jpg,,FALSE, +N1,22253,sortie-7ea6aa41-0725-4931-a0aa-710b63aab1f7,https://biolit.fr/sorties/sortie-7ea6aa41-0725-4931-a0aa-710b63aab1f7/,DidierB,,04/08/2019,13.0000000,14.0000000,44.534868000000,-4.380601000000,,estran Ouest Île de Penfret,21117,observation-7ea6aa41-0725-4931-a0aa-710b63aab1f7-2,https://biolit.fr/observations/observation-7ea6aa41-0725-4931-a0aa-710b63aab1f7-2/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/_MG_2874.thumb_-scaled.jpg,,TRUE, +N1,22254,sortie-a9e05ad8-e27b-4ce1-8abf-470c0eccf6f6,https://biolit.fr/sorties/sortie-a9e05ad8-e27b-4ce1-8abf-470c0eccf6f6/,collège paul Eluard,,04/04/2019,14.0000000,16.0000000,50.722700000000,1.584975000000,,outreau,21119,observation-a9e05ad8-e27b-4ce1-8abf-470c0eccf6f6,https://biolit.fr/observations/observation-a9e05ad8-e27b-4ce1-8abf-470c0eccf6f6/,,,,https://biolit.fr/wp-content/uploads/2023/05/SVT LILOU 55 B 1-scaled.jpg,,FALSE, +N1,22255,sortie-c7ce037c-5c45-4c29-9308-e69fdab4fd40,https://biolit.fr/sorties/sortie-c7ce037c-5c45-4c29-9308-e69fdab4fd40/,collège paul Eluard,,04/04/2019,14.0:35,16.0:35,50.708262000000,1.570470000000,,outreau ,21121,observation-c7ce037c-5c45-4c29-9308-e69fdab4fd40,https://biolit.fr/observations/observation-c7ce037c-5c45-4c29-9308-e69fdab4fd40/,,,,https://biolit.fr/wp-content/uploads/2023/05/ALICIA 55 5-scaled.jpg,,FALSE, +N1,22256,sortie-c3605018-e54b-4826-8046-e1247166e18a,https://biolit.fr/sorties/sortie-c3605018-e54b-4826-8046-e1247166e18a/,Kevinlf,,04/01/2019,18.0000000,18.0000000,48.659211000000,-4.222885000000,,Plage de Porsmeur,21123,observation-c3605018-e54b-4826-8046-e1247166e18a,https://biolit.fr/observations/observation-c3605018-e54b-4826-8046-e1247166e18a/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190401_184530-min.png,,TRUE, +N1,22257,sortie-d0427a93-cf1b-4923-b537-7896696d530f,https://biolit.fr/sorties/sortie-d0427a93-cf1b-4923-b537-7896696d530f/,Alice BAUDOT,,2/28/2019 0:00,15.0000000,17.0000000,44.652667000000,-1.196266000000,,Perreire,21125,observation-d0427a93-cf1b-4923-b537-7896696d530f,https://biolit.fr/observations/observation-d0427a93-cf1b-4923-b537-7896696d530f/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190228_160721-scaled.jpg,,TRUE, +N1,22257,sortie-d0427a93-cf1b-4923-b537-7896696d530f,https://biolit.fr/sorties/sortie-d0427a93-cf1b-4923-b537-7896696d530f/,Alice BAUDOT,,2/28/2019 0:00,15.0000000,17.0000000,44.652667000000,-1.196266000000,,Perreire,21129,observation-d0427a93-cf1b-4923-b537-7896696d530f-3,https://biolit.fr/observations/observation-d0427a93-cf1b-4923-b537-7896696d530f-3/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190228_155446-scaled.jpg,,TRUE, +N1,22257,sortie-d0427a93-cf1b-4923-b537-7896696d530f,https://biolit.fr/sorties/sortie-d0427a93-cf1b-4923-b537-7896696d530f/,Alice BAUDOT,,2/28/2019 0:00,15.0000000,17.0000000,44.652667000000,-1.196266000000,,Perreire,21131,observation-d0427a93-cf1b-4923-b537-7896696d530f-4,https://biolit.fr/observations/observation-d0427a93-cf1b-4923-b537-7896696d530f-4/,Tritia neritea,Cyclope néritoïde,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190228_160025-scaled.jpg,,TRUE, +N1,22257,sortie-d0427a93-cf1b-4923-b537-7896696d530f,https://biolit.fr/sorties/sortie-d0427a93-cf1b-4923-b537-7896696d530f/,Alice BAUDOT,,2/28/2019 0:00,15.0000000,17.0000000,44.652667000000,-1.196266000000,,Perreire,21133,observation-d0427a93-cf1b-4923-b537-7896696d530f-5,https://biolit.fr/observations/observation-d0427a93-cf1b-4923-b537-7896696d530f-5/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190228_152531-scaled.jpg,,TRUE, +N1,22257,sortie-d0427a93-cf1b-4923-b537-7896696d530f,https://biolit.fr/sorties/sortie-d0427a93-cf1b-4923-b537-7896696d530f/,Alice BAUDOT,,2/28/2019 0:00,15.0000000,17.0000000,44.652667000000,-1.196266000000,,Perreire,21135,observation-d0427a93-cf1b-4923-b537-7896696d530f-6,https://biolit.fr/observations/observation-d0427a93-cf1b-4923-b537-7896696d530f-6/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190228_160447-scaled.jpg,,TRUE, +N1,22257,sortie-d0427a93-cf1b-4923-b537-7896696d530f,https://biolit.fr/sorties/sortie-d0427a93-cf1b-4923-b537-7896696d530f/,Alice BAUDOT,,2/28/2019 0:00,15.0000000,17.0000000,44.652667000000,-1.196266000000,,Perreire,21137,observation-d0427a93-cf1b-4923-b537-7896696d530f-7,https://biolit.fr/observations/observation-d0427a93-cf1b-4923-b537-7896696d530f-7/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190228_160019-scaled.jpg,,TRUE, +N1,22257,sortie-d0427a93-cf1b-4923-b537-7896696d530f,https://biolit.fr/sorties/sortie-d0427a93-cf1b-4923-b537-7896696d530f/,Alice BAUDOT,,2/28/2019 0:00,15.0000000,17.0000000,44.652667000000,-1.196266000000,,Perreire,21139,observation-d0427a93-cf1b-4923-b537-7896696d530f-8,https://biolit.fr/observations/observation-d0427a93-cf1b-4923-b537-7896696d530f-8/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190228_151309-scaled.jpg,,TRUE, +N1,22258,sortie-40aaad65-7ccf-455c-8bd9-6fe4983926c9,https://biolit.fr/sorties/sortie-40aaad65-7ccf-455c-8bd9-6fe4983926c9/,Copépode56,,02/05/2019,11.0000000,12.0000000,47.527773000000,-3.152926000000,,"Plage du foso, Saint-Pierre Quiberon",21141,observation-40aaad65-7ccf-455c-8bd9-6fe4983926c9,https://biolit.fr/observations/observation-40aaad65-7ccf-455c-8bd9-6fe4983926c9/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Foso.omb_-scaled.jpg,,TRUE, +N1,22259,sortie-54733e27-05e2-4ddb-8519-24ba1dc5de94,https://biolit.fr/sorties/sortie-54733e27-05e2-4ddb-8519-24ba1dc5de94/,Copépode56,,02/05/2019,11.0000000,12.0000000,47.527781000000,-3.152983000000,,"Plage du foso, Saint-Pierre Quiberon",21143,observation-54733e27-05e2-4ddb-8519-24ba1dc5de94,https://biolit.fr/observations/observation-54733e27-05e2-4ddb-8519-24ba1dc5de94/,Mastocarpus stellatus,Gigartine,,https://biolit.fr/wp-content/uploads/2023/05/Foso.Chondrus.jpg,,TRUE, +N1,22260,sortie-53876800-5851-43c1-9794-f3f0fb4d2a89,https://biolit.fr/sorties/sortie-53876800-5851-43c1-9794-f3f0fb4d2a89/,Copépode56,,02/05/2019,11.0000000,12.0000000,47.527714000000,-3.153076000000,,"Plage du foso, Saint-Pierre Quiberon",21145,observation-53876800-5851-43c1-9794-f3f0fb4d2a89,https://biolit.fr/observations/observation-53876800-5851-43c1-9794-f3f0fb4d2a89/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Foso.L.Obtusata.jpg,,TRUE, +N1,22261,sortie-e0ec61ec-70ab-46ad-9e10-96c9c9f5ea1f,https://biolit.fr/sorties/sortie-e0ec61ec-70ab-46ad-9e10-96c9c9f5ea1f/,Environat,,1/13/2019 0:00,14.0000000,14.0000000,45.570293000000,-0.97680000000,,plage de l'Arnèche,21147,observation-e0ec61ec-70ab-46ad-9e10-96c9c9f5ea1f,https://biolit.fr/observations/observation-e0ec61ec-70ab-46ad-9e10-96c9c9f5ea1f/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSC_0003_0-rotated.jpg,,FALSE, +N1,22261,sortie-e0ec61ec-70ab-46ad-9e10-96c9c9f5ea1f,https://biolit.fr/sorties/sortie-e0ec61ec-70ab-46ad-9e10-96c9c9f5ea1f/,Environat,,1/13/2019 0:00,14.0000000,14.0000000,45.570293000000,-0.97680000000,,plage de l'Arnèche,21149,observation-e0ec61ec-70ab-46ad-9e10-96c9c9f5ea1f-2,https://biolit.fr/observations/observation-e0ec61ec-70ab-46ad-9e10-96c9c9f5ea1f-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSC_0007_0-rotated.jpg,,FALSE, +N1,22261,sortie-e0ec61ec-70ab-46ad-9e10-96c9c9f5ea1f,https://biolit.fr/sorties/sortie-e0ec61ec-70ab-46ad-9e10-96c9c9f5ea1f/,Environat,,1/13/2019 0:00,14.0000000,14.0000000,45.570293000000,-0.97680000000,,plage de l'Arnèche,21151,observation-e0ec61ec-70ab-46ad-9e10-96c9c9f5ea1f-3,https://biolit.fr/observations/observation-e0ec61ec-70ab-46ad-9e10-96c9c9f5ea1f-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSC_0012-rotated.jpg,,FALSE, +N1,22262,sortie-ea8fb374-de5b-4aad-a40d-13afd236b7b7,https://biolit.fr/sorties/sortie-ea8fb374-de5b-4aad-a40d-13afd236b7b7/,Guillaume D,,01/07/2019,10.0000000,12.0000000,46.110365000000,-1.139048000000,,"Angoulins, Pointe du Chay",21153,observation-ea8fb374-de5b-4aad-a40d-13afd236b7b7,https://biolit.fr/observations/observation-ea8fb374-de5b-4aad-a40d-13afd236b7b7/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20190107_111213_0-scaled.jpg,,TRUE, +N1,22262,sortie-ea8fb374-de5b-4aad-a40d-13afd236b7b7,https://biolit.fr/sorties/sortie-ea8fb374-de5b-4aad-a40d-13afd236b7b7/,Guillaume D,,01/07/2019,10.0000000,12.0000000,46.110365000000,-1.139048000000,,"Angoulins, Pointe du Chay",21155,observation-ea8fb374-de5b-4aad-a40d-13afd236b7b7-2,https://biolit.fr/observations/observation-ea8fb374-de5b-4aad-a40d-13afd236b7b7-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20190107_111233-scaled.jpg,,TRUE, +N1,22262,sortie-ea8fb374-de5b-4aad-a40d-13afd236b7b7,https://biolit.fr/sorties/sortie-ea8fb374-de5b-4aad-a40d-13afd236b7b7/,Guillaume D,,01/07/2019,10.0000000,12.0000000,46.110365000000,-1.139048000000,,"Angoulins, Pointe du Chay",21157,observation-ea8fb374-de5b-4aad-a40d-13afd236b7b7-3,https://biolit.fr/observations/observation-ea8fb374-de5b-4aad-a40d-13afd236b7b7-3/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20190107_112947-scaled.jpg,,TRUE, +N1,22262,sortie-ea8fb374-de5b-4aad-a40d-13afd236b7b7,https://biolit.fr/sorties/sortie-ea8fb374-de5b-4aad-a40d-13afd236b7b7/,Guillaume D,,01/07/2019,10.0000000,12.0000000,46.110365000000,-1.139048000000,,"Angoulins, Pointe du Chay",21159,observation-ea8fb374-de5b-4aad-a40d-13afd236b7b7-4,https://biolit.fr/observations/observation-ea8fb374-de5b-4aad-a40d-13afd236b7b7-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20190107_113006-scaled.jpg,,TRUE, +N1,22262,sortie-ea8fb374-de5b-4aad-a40d-13afd236b7b7,https://biolit.fr/sorties/sortie-ea8fb374-de5b-4aad-a40d-13afd236b7b7/,Guillaume D,,01/07/2019,10.0000000,12.0000000,46.110365000000,-1.139048000000,,"Angoulins, Pointe du Chay",21161,observation-ea8fb374-de5b-4aad-a40d-13afd236b7b7-5,https://biolit.fr/observations/observation-ea8fb374-de5b-4aad-a40d-13afd236b7b7-5/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20190107_113953-scaled.jpg,,TRUE, +N1,22262,sortie-ea8fb374-de5b-4aad-a40d-13afd236b7b7,https://biolit.fr/sorties/sortie-ea8fb374-de5b-4aad-a40d-13afd236b7b7/,Guillaume D,,01/07/2019,10.0000000,12.0000000,46.110365000000,-1.139048000000,,"Angoulins, Pointe du Chay",21163,observation-ea8fb374-de5b-4aad-a40d-13afd236b7b7-6,https://biolit.fr/observations/observation-ea8fb374-de5b-4aad-a40d-13afd236b7b7-6/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20190107_114003-scaled.jpg,,TRUE, +N1,22263,sortie-383f43bc-16f9-41e3-ae1d-ebd7dc85e6c6,https://biolit.fr/sorties/sortie-383f43bc-16f9-41e3-ae1d-ebd7dc85e6c6/,Classes 6A 6B 6C,,10/01/2018,14.000005,15.0000000,46.532391000000,0.771987000000,,"Logonna Daoulas, Moulin Mer",21165,observation-383f43bc-16f9-41e3-ae1d-ebd7dc85e6c6,https://biolit.fr/observations/observation-383f43bc-16f9-41e3-ae1d-ebd7dc85e6c6/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/05/IMG_0060 2-scaled.jpg,,TRUE, +N1,22264,sortie-9a583492-0240-4483-ae0e-caa65ea5f8d9,https://biolit.fr/sorties/sortie-9a583492-0240-4483-ae0e-caa65ea5f8d9/,Environat,,9/26/2018 0:00,10.0000000,12.0000000,45.630364000000,-1.064586000000,,saint sordelin,21167,observation-9a583492-0240-4483-ae0e-caa65ea5f8d9,https://biolit.fr/observations/observation-9a583492-0240-4483-ae0e-caa65ea5f8d9/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN0089bd.JPG,,TRUE, +N1,22264,sortie-9a583492-0240-4483-ae0e-caa65ea5f8d9,https://biolit.fr/sorties/sortie-9a583492-0240-4483-ae0e-caa65ea5f8d9/,Environat,,9/26/2018 0:00,10.0000000,12.0000000,45.630364000000,-1.064586000000,,saint sordelin,21169,observation-9a583492-0240-4483-ae0e-caa65ea5f8d9-2,https://biolit.fr/observations/observation-9a583492-0240-4483-ae0e-caa65ea5f8d9-2/,Calyptraea chinensis,Chapeau chinois,,https://biolit.fr/wp-content/uploads/2023/05/DSCN0095bd.JPG,,TRUE, +N1,22264,sortie-9a583492-0240-4483-ae0e-caa65ea5f8d9,https://biolit.fr/sorties/sortie-9a583492-0240-4483-ae0e-caa65ea5f8d9/,Environat,,9/26/2018 0:00,10.0000000,12.0000000,45.630364000000,-1.064586000000,,saint sordelin,21171,observation-9a583492-0240-4483-ae0e-caa65ea5f8d9-3,https://biolit.fr/observations/observation-9a583492-0240-4483-ae0e-caa65ea5f8d9-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN0091bd.JPG,,TRUE, +N1,22264,sortie-9a583492-0240-4483-ae0e-caa65ea5f8d9,https://biolit.fr/sorties/sortie-9a583492-0240-4483-ae0e-caa65ea5f8d9/,Environat,,9/26/2018 0:00,10.0000000,12.0000000,45.630364000000,-1.064586000000,,saint sordelin,21173,observation-9a583492-0240-4483-ae0e-caa65ea5f8d9-4,https://biolit.fr/observations/observation-9a583492-0240-4483-ae0e-caa65ea5f8d9-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN0079bd.JPG,,FALSE, +N1,22265,sortie-1834e505-234b-4e6c-9e6f-859bbc4b95cb,https://biolit.fr/sorties/sortie-1834e505-234b-4e6c-9e6f-859bbc4b95cb/,Environat,,8/25/2018 0:00,10.0000000,11.0000000,45.603912000000,-1.013275000000,,"ile aux mouettes, saint georges de didonne",21175,observation-1834e505-234b-4e6c-9e6f-859bbc4b95cb,https://biolit.fr/observations/observation-1834e505-234b-4e6c-9e6f-859bbc4b95cb/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN0010.JPG,,FALSE, +N1,22265,sortie-1834e505-234b-4e6c-9e6f-859bbc4b95cb,https://biolit.fr/sorties/sortie-1834e505-234b-4e6c-9e6f-859bbc4b95cb/,Environat,,8/25/2018 0:00,10.0000000,11.0000000,45.603912000000,-1.013275000000,,"ile aux mouettes, saint georges de didonne",21177,observation-1834e505-234b-4e6c-9e6f-859bbc4b95cb-2,https://biolit.fr/observations/observation-1834e505-234b-4e6c-9e6f-859bbc4b95cb-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN0012.JPG,,TRUE, +N1,22265,sortie-1834e505-234b-4e6c-9e6f-859bbc4b95cb,https://biolit.fr/sorties/sortie-1834e505-234b-4e6c-9e6f-859bbc4b95cb/,Environat,,8/25/2018 0:00,10.0000000,11.0000000,45.603912000000,-1.013275000000,,"ile aux mouettes, saint georges de didonne",21179,observation-1834e505-234b-4e6c-9e6f-859bbc4b95cb-3,https://biolit.fr/observations/observation-1834e505-234b-4e6c-9e6f-859bbc4b95cb-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN0028bd.JPG,,TRUE, +N1,22265,sortie-1834e505-234b-4e6c-9e6f-859bbc4b95cb,https://biolit.fr/sorties/sortie-1834e505-234b-4e6c-9e6f-859bbc4b95cb/,Environat,,8/25/2018 0:00,10.0000000,11.0000000,45.603912000000,-1.013275000000,,"ile aux mouettes, saint georges de didonne",21181,observation-1834e505-234b-4e6c-9e6f-859bbc4b95cb-4,https://biolit.fr/observations/observation-1834e505-234b-4e6c-9e6f-859bbc4b95cb-4/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN0030bd.JPG,,TRUE, +N1,22266,sortie-0b51776e-35df-4730-90aa-2dd414c4a6c5,https://biolit.fr/sorties/sortie-0b51776e-35df-4730-90aa-2dd414c4a6c5/,AMi42,,08/09/2018,8.0000000,10.0000000,46.142049000000,-1.171220000000,,"Estran plage des minimes, la Rochelle",21183,observation-0b51776e-35df-4730-90aa-2dd414c4a6c5,https://biolit.fr/observations/observation-0b51776e-35df-4730-90aa-2dd414c4a6c5/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20180809_093846-scaled.jpg,,TRUE, +N1,22266,sortie-0b51776e-35df-4730-90aa-2dd414c4a6c5,https://biolit.fr/sorties/sortie-0b51776e-35df-4730-90aa-2dd414c4a6c5/,AMi42,,08/09/2018,8.0000000,10.0000000,46.142049000000,-1.171220000000,,"Estran plage des minimes, la Rochelle",21185,observation-0b51776e-35df-4730-90aa-2dd414c4a6c5-2,https://biolit.fr/observations/observation-0b51776e-35df-4730-90aa-2dd414c4a6c5-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20180809_100302-scaled.jpg,,TRUE, +N1,22266,sortie-0b51776e-35df-4730-90aa-2dd414c4a6c5,https://biolit.fr/sorties/sortie-0b51776e-35df-4730-90aa-2dd414c4a6c5/,AMi42,,08/09/2018,8.0000000,10.0000000,46.142049000000,-1.171220000000,,"Estran plage des minimes, la Rochelle",21187,observation-0b51776e-35df-4730-90aa-2dd414c4a6c5-3,https://biolit.fr/observations/observation-0b51776e-35df-4730-90aa-2dd414c4a6c5-3/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20180809_094643-scaled.jpg,,TRUE, +N1,22266,sortie-0b51776e-35df-4730-90aa-2dd414c4a6c5,https://biolit.fr/sorties/sortie-0b51776e-35df-4730-90aa-2dd414c4a6c5/,AMi42,,08/09/2018,8.0000000,10.0000000,46.142049000000,-1.171220000000,,"Estran plage des minimes, la Rochelle",21189,observation-0b51776e-35df-4730-90aa-2dd414c4a6c5-4,https://biolit.fr/observations/observation-0b51776e-35df-4730-90aa-2dd414c4a6c5-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20180809_101719-scaled.jpg,,TRUE, +N1,22267,sortie-02de1144-1478-48d2-9b7f-38ce2a9c32c2,https://biolit.fr/sorties/sortie-02de1144-1478-48d2-9b7f-38ce2a9c32c2/,Guillaume D,,07/11/2018,9.0000000,11.0000000,46.110209000000,-1.138931000000,,"Angoulins, Pointe du Chay",21191,observation-02de1144-1478-48d2-9b7f-38ce2a9c32c2,https://biolit.fr/observations/observation-02de1144-1478-48d2-9b7f-38ce2a9c32c2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_8273-scaled.jpg,,TRUE, +N1,22267,sortie-02de1144-1478-48d2-9b7f-38ce2a9c32c2,https://biolit.fr/sorties/sortie-02de1144-1478-48d2-9b7f-38ce2a9c32c2/,Guillaume D,,07/11/2018,9.0000000,11.0000000,46.110209000000,-1.138931000000,,"Angoulins, Pointe du Chay",21193,observation-02de1144-1478-48d2-9b7f-38ce2a9c32c2-2,https://biolit.fr/observations/observation-02de1144-1478-48d2-9b7f-38ce2a9c32c2-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_8275_5mo-scaled.jpg,,TRUE, +N1,22267,sortie-02de1144-1478-48d2-9b7f-38ce2a9c32c2,https://biolit.fr/sorties/sortie-02de1144-1478-48d2-9b7f-38ce2a9c32c2/,Guillaume D,,07/11/2018,9.0000000,11.0000000,46.110209000000,-1.138931000000,,"Angoulins, Pointe du Chay",21195,observation-02de1144-1478-48d2-9b7f-38ce2a9c32c2-3,https://biolit.fr/observations/observation-02de1144-1478-48d2-9b7f-38ce2a9c32c2-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_8278_5mo-scaled.jpg,,TRUE, +N1,22267,sortie-02de1144-1478-48d2-9b7f-38ce2a9c32c2,https://biolit.fr/sorties/sortie-02de1144-1478-48d2-9b7f-38ce2a9c32c2/,Guillaume D,,07/11/2018,9.0000000,11.0000000,46.110209000000,-1.138931000000,,"Angoulins, Pointe du Chay",21197,observation-02de1144-1478-48d2-9b7f-38ce2a9c32c2-4,https://biolit.fr/observations/observation-02de1144-1478-48d2-9b7f-38ce2a9c32c2-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_8279-scaled.jpg,,TRUE, +N1,22267,sortie-02de1144-1478-48d2-9b7f-38ce2a9c32c2,https://biolit.fr/sorties/sortie-02de1144-1478-48d2-9b7f-38ce2a9c32c2/,Guillaume D,,07/11/2018,9.0000000,11.0000000,46.110209000000,-1.138931000000,,"Angoulins, Pointe du Chay",21199,observation-02de1144-1478-48d2-9b7f-38ce2a9c32c2-5,https://biolit.fr/observations/observation-02de1144-1478-48d2-9b7f-38ce2a9c32c2-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_8281-scaled.jpg,,TRUE, +N1,22268,sortie-17cc450a-87f2-4ce9-bd9b-a09a504a33ff,https://biolit.fr/sorties/sortie-17cc450a-87f2-4ce9-bd9b-a09a504a33ff/,polig,,06/06/2018,20.0000000,20.0000000,47.874018000000,-4.120016000000,,port de combrit ste marine ,21201,observation-17cc450a-87f2-4ce9-bd9b-a09a504a33ff,https://biolit.fr/observations/observation-17cc450a-87f2-4ce9-bd9b-a09a504a33ff/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSC_0214.JPG,,FALSE, +N1,22268,sortie-17cc450a-87f2-4ce9-bd9b-a09a504a33ff,https://biolit.fr/sorties/sortie-17cc450a-87f2-4ce9-bd9b-a09a504a33ff/,polig,,06/06/2018,20.0000000,20.0000000,47.874018000000,-4.120016000000,,port de combrit ste marine ,21203,observation-17cc450a-87f2-4ce9-bd9b-a09a504a33ff-2,https://biolit.fr/observations/observation-17cc450a-87f2-4ce9-bd9b-a09a504a33ff-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_0216_0.JPG,,TRUE, +N1,22268,sortie-17cc450a-87f2-4ce9-bd9b-a09a504a33ff,https://biolit.fr/sorties/sortie-17cc450a-87f2-4ce9-bd9b-a09a504a33ff/,polig,,06/06/2018,20.0000000,20.0000000,47.874018000000,-4.120016000000,,port de combrit ste marine ,21205,observation-17cc450a-87f2-4ce9-bd9b-a09a504a33ff-3,https://biolit.fr/observations/observation-17cc450a-87f2-4ce9-bd9b-a09a504a33ff-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_0217.JPG,,TRUE, +N1,22268,sortie-17cc450a-87f2-4ce9-bd9b-a09a504a33ff,https://biolit.fr/sorties/sortie-17cc450a-87f2-4ce9-bd9b-a09a504a33ff/,polig,,06/06/2018,20.0000000,20.0000000,47.874018000000,-4.120016000000,,port de combrit ste marine ,21207,observation-17cc450a-87f2-4ce9-bd9b-a09a504a33ff-4,https://biolit.fr/observations/observation-17cc450a-87f2-4ce9-bd9b-a09a504a33ff-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSC_0221.JPG,,FALSE, +N1,22268,sortie-17cc450a-87f2-4ce9-bd9b-a09a504a33ff,https://biolit.fr/sorties/sortie-17cc450a-87f2-4ce9-bd9b-a09a504a33ff/,polig,,06/06/2018,20.0000000,20.0000000,47.874018000000,-4.120016000000,,port de combrit ste marine ,21209,observation-17cc450a-87f2-4ce9-bd9b-a09a504a33ff-5,https://biolit.fr/observations/observation-17cc450a-87f2-4ce9-bd9b-a09a504a33ff-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_0224.jpg,,TRUE, +N1,22269,sortie-faa62854-5224-44d5-a9f7-aa45ba7adf37,https://biolit.fr/sorties/sortie-faa62854-5224-44d5-a9f7-aa45ba7adf37/,PEP44 La Marjolaine,,5/29/2018 0:00,11.0000000,11.0:15,47.348764000000,-2.518759000000,,la Turballe,21211,observation-faa62854-5224-44d5-a9f7-aa45ba7adf37,https://biolit.fr/observations/observation-faa62854-5224-44d5-a9f7-aa45ba7adf37/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/060.jpg,,TRUE, +N1,22270,sortie-aaef1bcd-5604-4dbd-900f-2dcd4ba0804e,https://biolit.fr/sorties/sortie-aaef1bcd-5604-4dbd-900f-2dcd4ba0804e/,saint louis,,5/27/2018 0:00,10.0000000,11.0000000,45.911519000000,-1.254287000000,,Dolus d'Oleron,21213,observation-aaef1bcd-5604-4dbd-900f-2dcd4ba0804e,https://biolit.fr/observations/observation-aaef1bcd-5604-4dbd-900f-2dcd4ba0804e/,,,,https://biolit.fr/wp-content/uploads/2023/05/20180517_101936-scaled.jpg,,FALSE, +N1,22271,sortie-94b94a5d-7cdf-4c58-b052-baffb0919b46,https://biolit.fr/sorties/sortie-94b94a5d-7cdf-4c58-b052-baffb0919b46/,saint louis,,5/27/2018 0:00,10.0000000,11.0000000,45.911519000000,-1.254287000000,,Dolus d'Oleron,21215,observation-94b94a5d-7cdf-4c58-b052-baffb0919b46,https://biolit.fr/observations/observation-94b94a5d-7cdf-4c58-b052-baffb0919b46/,,,,https://biolit.fr/wp-content/uploads/2023/05/20180517_101936-scaled.jpg,,FALSE, +N1,22272,sortie-5da4761e-62aa-47d7-a9b4-1d9a852d77d8,https://biolit.fr/sorties/sortie-5da4761e-62aa-47d7-a9b4-1d9a852d77d8/,polig,,4/20/2018 0:00,16.0000000,16.0000000,48.624606000000,-4.479657000000,,le zorn plouguerneau,21216,observation-5da4761e-62aa-47d7-a9b4-1d9a852d77d8,https://biolit.fr/observations/observation-5da4761e-62aa-47d7-a9b4-1d9a852d77d8/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_0674.jpg,,TRUE, +N1,22272,sortie-5da4761e-62aa-47d7-a9b4-1d9a852d77d8,https://biolit.fr/sorties/sortie-5da4761e-62aa-47d7-a9b4-1d9a852d77d8/,polig,,4/20/2018 0:00,16.0000000,16.0000000,48.624606000000,-4.479657000000,,le zorn plouguerneau,21218,observation-5da4761e-62aa-47d7-a9b4-1d9a852d77d8-2,https://biolit.fr/observations/observation-5da4761e-62aa-47d7-a9b4-1d9a852d77d8-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_0675_0.JPG,,TRUE, +N1,22272,sortie-5da4761e-62aa-47d7-a9b4-1d9a852d77d8,https://biolit.fr/sorties/sortie-5da4761e-62aa-47d7-a9b4-1d9a852d77d8/,polig,,4/20/2018 0:00,16.0000000,16.0000000,48.624606000000,-4.479657000000,,le zorn plouguerneau,21220,observation-5da4761e-62aa-47d7-a9b4-1d9a852d77d8-3,https://biolit.fr/observations/observation-5da4761e-62aa-47d7-a9b4-1d9a852d77d8-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSC_0677_0.JPG,,FALSE, +N1,22272,sortie-5da4761e-62aa-47d7-a9b4-1d9a852d77d8,https://biolit.fr/sorties/sortie-5da4761e-62aa-47d7-a9b4-1d9a852d77d8/,polig,,4/20/2018 0:00,16.0000000,16.0000000,48.624606000000,-4.479657000000,,le zorn plouguerneau,21222,observation-5da4761e-62aa-47d7-a9b4-1d9a852d77d8-4,https://biolit.fr/observations/observation-5da4761e-62aa-47d7-a9b4-1d9a852d77d8-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_0681.jpg,,TRUE, +N1,22272,sortie-5da4761e-62aa-47d7-a9b4-1d9a852d77d8,https://biolit.fr/sorties/sortie-5da4761e-62aa-47d7-a9b4-1d9a852d77d8/,polig,,4/20/2018 0:00,16.0000000,16.0000000,48.624606000000,-4.479657000000,,le zorn plouguerneau,21224,observation-5da4761e-62aa-47d7-a9b4-1d9a852d77d8-5,https://biolit.fr/observations/observation-5da4761e-62aa-47d7-a9b4-1d9a852d77d8-5/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_0682.jpg,,TRUE, +N1,22273,sortie-1e930f36-d288-4a31-a1b4-eaa5d59e491d,https://biolit.fr/sorties/sortie-1e930f36-d288-4a31-a1b4-eaa5d59e491d/,polig,,4/18/2018 0:00,11.0000000,12.0:15,48.630756000000,-4.533876000000,,la greve blanche plouguerneau,21226,observation-1e930f36-d288-4a31-a1b4-eaa5d59e491d,https://biolit.fr/observations/observation-1e930f36-d288-4a31-a1b4-eaa5d59e491d/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSC_0601.JPG,,FALSE, +N1,22273,sortie-1e930f36-d288-4a31-a1b4-eaa5d59e491d,https://biolit.fr/sorties/sortie-1e930f36-d288-4a31-a1b4-eaa5d59e491d/,polig,,4/18/2018 0:00,11.0000000,12.0:15,48.630756000000,-4.533876000000,,la greve blanche plouguerneau,21228,observation-1e930f36-d288-4a31-a1b4-eaa5d59e491d-2,https://biolit.fr/observations/observation-1e930f36-d288-4a31-a1b4-eaa5d59e491d-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSC_0607.JPG,,FALSE, +N1,22273,sortie-1e930f36-d288-4a31-a1b4-eaa5d59e491d,https://biolit.fr/sorties/sortie-1e930f36-d288-4a31-a1b4-eaa5d59e491d/,polig,,4/18/2018 0:00,11.0000000,12.0:15,48.630756000000,-4.533876000000,,la greve blanche plouguerneau,21230,observation-1e930f36-d288-4a31-a1b4-eaa5d59e491d-3,https://biolit.fr/observations/observation-1e930f36-d288-4a31-a1b4-eaa5d59e491d-3/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_0620.jpg,,TRUE, +N1,22274,sortie-18600084-61fb-422f-8f44-5b5ddb991003,https://biolit.fr/sorties/sortie-18600084-61fb-422f-8f44-5b5ddb991003/,PEP44 La Marjolaine,,04/05/2018,15.000005,15.0:35,47.349021000000,-2.515210000000,,plage de la Bastille,21232,observation-18600084-61fb-422f-8f44-5b5ddb991003,https://biolit.fr/observations/observation-18600084-61fb-422f-8f44-5b5ddb991003/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180405_152125-scaled.jpg,,FALSE, +N1,22274,sortie-18600084-61fb-422f-8f44-5b5ddb991003,https://biolit.fr/sorties/sortie-18600084-61fb-422f-8f44-5b5ddb991003/,PEP44 La Marjolaine,,04/05/2018,15.000005,15.0:35,47.349021000000,-2.515210000000,,plage de la Bastille,21234,observation-18600084-61fb-422f-8f44-5b5ddb991003-2,https://biolit.fr/observations/observation-18600084-61fb-422f-8f44-5b5ddb991003-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180405_151525_1-scaled.jpg,,FALSE, +N1,22274,sortie-18600084-61fb-422f-8f44-5b5ddb991003,https://biolit.fr/sorties/sortie-18600084-61fb-422f-8f44-5b5ddb991003/,PEP44 La Marjolaine,,04/05/2018,15.000005,15.0:35,47.349021000000,-2.515210000000,,plage de la Bastille,21236,observation-18600084-61fb-422f-8f44-5b5ddb991003-3,https://biolit.fr/observations/observation-18600084-61fb-422f-8f44-5b5ddb991003-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180405_150828_1-scaled.jpg,,FALSE, +N1,22275,sortie-12ce3700-c800-4f9f-b91a-5541211555e5,https://biolit.fr/sorties/sortie-12ce3700-c800-4f9f-b91a-5541211555e5/,polig,,04/07/2018,14.0000000,15.0000000,47.795563000000,-4.366589000000,,penmarc'h,21238,observation-12ce3700-c800-4f9f-b91a-5541211555e5,https://biolit.fr/observations/observation-12ce3700-c800-4f9f-b91a-5541211555e5/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_0525_2.jpg,,TRUE, +N1,22275,sortie-12ce3700-c800-4f9f-b91a-5541211555e5,https://biolit.fr/sorties/sortie-12ce3700-c800-4f9f-b91a-5541211555e5/,polig,,04/07/2018,14.0000000,15.0000000,47.795563000000,-4.366589000000,,penmarc'h,21240,observation-12ce3700-c800-4f9f-b91a-5541211555e5-2,https://biolit.fr/observations/observation-12ce3700-c800-4f9f-b91a-5541211555e5-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSC_0526.jpg,,FALSE, +N1,22275,sortie-12ce3700-c800-4f9f-b91a-5541211555e5,https://biolit.fr/sorties/sortie-12ce3700-c800-4f9f-b91a-5541211555e5/,polig,,04/07/2018,14.0000000,15.0000000,47.795563000000,-4.366589000000,,penmarc'h,21242,observation-12ce3700-c800-4f9f-b91a-5541211555e5-3,https://biolit.fr/observations/observation-12ce3700-c800-4f9f-b91a-5541211555e5-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_0492.JPG,,TRUE, +N1,22275,sortie-12ce3700-c800-4f9f-b91a-5541211555e5,https://biolit.fr/sorties/sortie-12ce3700-c800-4f9f-b91a-5541211555e5/,polig,,04/07/2018,14.0000000,15.0000000,47.795563000000,-4.366589000000,,penmarc'h,21244,observation-12ce3700-c800-4f9f-b91a-5541211555e5-4,https://biolit.fr/observations/observation-12ce3700-c800-4f9f-b91a-5541211555e5-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSC_0501.jpg,,FALSE, +N1,22275,sortie-12ce3700-c800-4f9f-b91a-5541211555e5,https://biolit.fr/sorties/sortie-12ce3700-c800-4f9f-b91a-5541211555e5/,polig,,04/07/2018,14.0000000,15.0000000,47.795563000000,-4.366589000000,,penmarc'h,21246,observation-12ce3700-c800-4f9f-b91a-5541211555e5-5,https://biolit.fr/observations/observation-12ce3700-c800-4f9f-b91a-5541211555e5-5/,Littorina compressa,Littorine à lignes noires,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_0502.JPG,,TRUE, +N1,22276,sortie-d1880882-2944-447f-a748-ea743e2850c8,https://biolit.fr/sorties/sortie-d1880882-2944-447f-a748-ea743e2850c8/,collège paul Eluard,,3/26/2018 0:00,13.0000000,14.0000000,50.694058000000,1.56203700000,,outreau plage ningles,21248,observation-d1880882-2944-447f-a748-ea743e2850c8,https://biolit.fr/observations/observation-d1880882-2944-447f-a748-ea743e2850c8/,,,,https://biolit.fr/wp-content/uploads/2023/05/20180326_145925-rotated.jpg,,FALSE, +N1,22276,sortie-d1880882-2944-447f-a748-ea743e2850c8,https://biolit.fr/sorties/sortie-d1880882-2944-447f-a748-ea743e2850c8/,collège paul Eluard,,3/26/2018 0:00,13.0000000,14.0000000,50.694058000000,1.56203700000,,outreau plage ningles,21250,observation-d1880882-2944-447f-a748-ea743e2850c8-2,https://biolit.fr/observations/observation-d1880882-2944-447f-a748-ea743e2850c8-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/20180326_145143-rotated.jpg,,FALSE, +N1,22276,sortie-d1880882-2944-447f-a748-ea743e2850c8,https://biolit.fr/sorties/sortie-d1880882-2944-447f-a748-ea743e2850c8/,collège paul Eluard,,3/26/2018 0:00,13.0000000,14.0000000,50.694058000000,1.56203700000,,outreau plage ningles,21252,observation-d1880882-2944-447f-a748-ea743e2850c8-3,https://biolit.fr/observations/observation-d1880882-2944-447f-a748-ea743e2850c8-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/20180326_144316.jpg,,FALSE, +N1,22277,sortie-5bbd33a9-2114-4c5e-b4a0-337399277f1f,https://biolit.fr/sorties/sortie-5bbd33a9-2114-4c5e-b4a0-337399277f1f/,collège paul Eluard,,3/26/2018 0:00,14.0000000,15.0000000,50.693935000000,1.56214500000,,"Outreau, plage de Ningles ",21254,observation-5bbd33a9-2114-4c5e-b4a0-337399277f1f,https://biolit.fr/observations/observation-5bbd33a9-2114-4c5e-b4a0-337399277f1f/,,,,https://biolit.fr/wp-content/uploads/2023/05/1522072045265.jpg,,FALSE, +N1,22278,sortie-7b1cf0ba-97d6-4567-a5d0-788b71dfc8fd,https://biolit.fr/sorties/sortie-7b1cf0ba-97d6-4567-a5d0-788b71dfc8fd/,collège paul Eluard,,3/26/2018 0:00,14.0000000,15.0000000,50.693935000000,1.56214500000,,"Outreau, plage de Ningles ",21256,observation-7b1cf0ba-97d6-4567-a5d0-788b71dfc8fd,https://biolit.fr/observations/observation-7b1cf0ba-97d6-4567-a5d0-788b71dfc8fd/,,,,https://biolit.fr/wp-content/uploads/2023/05/1522067746603.jpg,,FALSE, +N1,22279,sortie-cafb1931-1549-43db-b5a7-5b61f5256bc9,https://biolit.fr/sorties/sortie-cafb1931-1549-43db-b5a7-5b61f5256bc9/,collège paul Eluard,,3/27/2018 0:00,14.0000000,15.0000000,50.693487000000,1.56214500000,,outreau.plage de ningles,21258,observation-cafb1931-1549-43db-b5a7-5b61f5256bc9,https://biolit.fr/observations/observation-cafb1931-1549-43db-b5a7-5b61f5256bc9/,,,,https://biolit.fr/wp-content/uploads/2023/05/20180327_143655_0-rotated.jpg,,FALSE, +N1,22280,sortie-6025c94a-e86f-4973-b670-05050678e4b1,https://biolit.fr/sorties/sortie-6025c94a-e86f-4973-b670-05050678e4b1/,collège paul Eluard,,3/27/2018 0:00,14.0000000,15.0000000,50.69415100000,1.563979000000,,"outreau, plage de ninge",21260,observation-6025c94a-e86f-4973-b670-05050678e4b1,https://biolit.fr/observations/observation-6025c94a-e86f-4973-b670-05050678e4b1/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1862-scaled.jpg,,FALSE, +N1,22281,sortie-6e2b800d-12d4-4883-b5a4-48d760cdeb38,https://biolit.fr/sorties/sortie-6e2b800d-12d4-4883-b5a4-48d760cdeb38/,collège paul Eluard,,3/27/2018 0:00,14.0000000,15.0000000,50.958838000000,1.594589000000,,"outreau, plage de ningle",21262,observation-6e2b800d-12d4-4883-b5a4-48d760cdeb38,https://biolit.fr/observations/observation-6e2b800d-12d4-4883-b5a4-48d760cdeb38/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1932.JPG,,FALSE, +N1,22281,sortie-6e2b800d-12d4-4883-b5a4-48d760cdeb38,https://biolit.fr/sorties/sortie-6e2b800d-12d4-4883-b5a4-48d760cdeb38/,collège paul Eluard,,3/27/2018 0:00,14.0000000,15.0000000,50.958838000000,1.594589000000,,"outreau, plage de ningle",21264,observation-6e2b800d-12d4-4883-b5a4-48d760cdeb38-2,https://biolit.fr/observations/observation-6e2b800d-12d4-4883-b5a4-48d760cdeb38-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1936-rotated.jpg,,FALSE, +N1,22281,sortie-6e2b800d-12d4-4883-b5a4-48d760cdeb38,https://biolit.fr/sorties/sortie-6e2b800d-12d4-4883-b5a4-48d760cdeb38/,collège paul Eluard,,3/27/2018 0:00,14.0000000,15.0000000,50.958838000000,1.594589000000,,"outreau, plage de ningle",21266,observation-6e2b800d-12d4-4883-b5a4-48d760cdeb38-3,https://biolit.fr/observations/observation-6e2b800d-12d4-4883-b5a4-48d760cdeb38-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1940-rotated.jpg,,FALSE, +N1,22282,sortie-f8a56dc6-9f78-4010-8881-879630899e5e,https://biolit.fr/sorties/sortie-f8a56dc6-9f78-4010-8881-879630899e5e/,collège paul Eluard,,3/27/2018 0:00,14.0000000,15.0000000,50.67337900000,1.567820000000,,"Outreau,plage de ningle ",21268,observation-f8a56dc6-9f78-4010-8881-879630899e5e,https://biolit.fr/observations/observation-f8a56dc6-9f78-4010-8881-879630899e5e/,,,,https://biolit.fr/wp-content/uploads/2023/05/monodonte-scaled.jpg,,FALSE, +N1,22283,sortie-d20a2e8f-83fa-4705-bed1-24cf032bef92,https://biolit.fr/sorties/sortie-d20a2e8f-83fa-4705-bed1-24cf032bef92/,collège paul Eluard,,04/03/2018,14.0000000,15.0000000,50.682251000000,1.566231000000,,"outreau,la plage de ningles",21270,observation-d20a2e8f-83fa-4705-bed1-24cf032bef92,https://biolit.fr/observations/observation-d20a2e8f-83fa-4705-bed1-24cf032bef92/,,,,https://biolit.fr/wp-content/uploads/2023/05/20180327_144113-scaled.jpg,,FALSE, +N1,22283,sortie-d20a2e8f-83fa-4705-bed1-24cf032bef92,https://biolit.fr/sorties/sortie-d20a2e8f-83fa-4705-bed1-24cf032bef92/,collège paul Eluard,,04/03/2018,14.0000000,15.0000000,50.682251000000,1.566231000000,,"outreau,la plage de ningles",21272,observation-d20a2e8f-83fa-4705-bed1-24cf032bef92-2,https://biolit.fr/observations/observation-d20a2e8f-83fa-4705-bed1-24cf032bef92-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20180327_145742-scaled.jpg,,TRUE, +N1,22283,sortie-d20a2e8f-83fa-4705-bed1-24cf032bef92,https://biolit.fr/sorties/sortie-d20a2e8f-83fa-4705-bed1-24cf032bef92/,collège paul Eluard,,04/03/2018,14.0000000,15.0000000,50.682251000000,1.566231000000,,"outreau,la plage de ningles",21274,observation-d20a2e8f-83fa-4705-bed1-24cf032bef92-3,https://biolit.fr/observations/observation-d20a2e8f-83fa-4705-bed1-24cf032bef92-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20180327_151620-scaled.jpg,,TRUE, +N1,22283,sortie-d20a2e8f-83fa-4705-bed1-24cf032bef92,https://biolit.fr/sorties/sortie-d20a2e8f-83fa-4705-bed1-24cf032bef92/,collège paul Eluard,,04/03/2018,14.0000000,15.0000000,50.682251000000,1.566231000000,,"outreau,la plage de ningles",21276,observation-d20a2e8f-83fa-4705-bed1-24cf032bef92-4,https://biolit.fr/observations/observation-d20a2e8f-83fa-4705-bed1-24cf032bef92-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/20180327_143724-scaled.jpg,,FALSE, +N1,22284,sortie-50382179-0099-46bb-b5ad-ca805eee8fdf,https://biolit.fr/sorties/sortie-50382179-0099-46bb-b5ad-ca805eee8fdf/,collège paul Eluard,,3/27/2018 0:00,14.0000000,15.0000000,50.685731000000,1.563389000000,,"outreau,la plage de ningle",21278,observation-50382179-0099-46bb-b5ad-ca805eee8fdf,https://biolit.fr/observations/observation-50382179-0099-46bb-b5ad-ca805eee8fdf/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180327_143901_resized_20180402_050601260_0.jpg,,FALSE, +N1,22284,sortie-50382179-0099-46bb-b5ad-ca805eee8fdf,https://biolit.fr/sorties/sortie-50382179-0099-46bb-b5ad-ca805eee8fdf/,collège paul Eluard,,3/27/2018 0:00,14.0000000,15.0000000,50.685731000000,1.563389000000,,"outreau,la plage de ningle",21280,observation-50382179-0099-46bb-b5ad-ca805eee8fdf-2,https://biolit.fr/observations/observation-50382179-0099-46bb-b5ad-ca805eee8fdf-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180327_145449_resized_20180402_050559187_0.jpg,,FALSE, +N1,22284,sortie-50382179-0099-46bb-b5ad-ca805eee8fdf,https://biolit.fr/sorties/sortie-50382179-0099-46bb-b5ad-ca805eee8fdf/,collège paul Eluard,,3/27/2018 0:00,14.0000000,15.0000000,50.685731000000,1.563389000000,,"outreau,la plage de ningle",21282,observation-50382179-0099-46bb-b5ad-ca805eee8fdf-3,https://biolit.fr/observations/observation-50382179-0099-46bb-b5ad-ca805eee8fdf-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180327_150004_resized_20180402_050558265_1.jpg,,FALSE, +N1,22284,sortie-50382179-0099-46bb-b5ad-ca805eee8fdf,https://biolit.fr/sorties/sortie-50382179-0099-46bb-b5ad-ca805eee8fdf/,collège paul Eluard,,3/27/2018 0:00,14.0000000,15.0000000,50.685731000000,1.563389000000,,"outreau,la plage de ningle",21284,observation-50382179-0099-46bb-b5ad-ca805eee8fdf-4,https://biolit.fr/observations/observation-50382179-0099-46bb-b5ad-ca805eee8fdf-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180327_160155_resized_20180402_050600508.jpg,,FALSE, +N1,22284,sortie-50382179-0099-46bb-b5ad-ca805eee8fdf,https://biolit.fr/sorties/sortie-50382179-0099-46bb-b5ad-ca805eee8fdf/,collège paul Eluard,,3/27/2018 0:00,14.0000000,15.0000000,50.685731000000,1.563389000000,,"outreau,la plage de ningle",21286,observation-50382179-0099-46bb-b5ad-ca805eee8fdf-5,https://biolit.fr/observations/observation-50382179-0099-46bb-b5ad-ca805eee8fdf-5/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180327_160214_resized_20180402_050559760_0.jpg,,FALSE, +N1,22285,sortie-60bd23ec-2e59-42c1-babf-0f774ac86e9a,https://biolit.fr/sorties/sortie-60bd23ec-2e59-42c1-babf-0f774ac86e9a/,collège paul Eluard,,3/27/2018 0:00,14.0000000,15.0000000,50.691907000000,1.562842000000,,"outreu, plage de ningle",21288,observation-60bd23ec-2e59-42c1-babf-0f774ac86e9a,https://biolit.fr/observations/observation-60bd23ec-2e59-42c1-babf-0f774ac86e9a/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0010_0-scaled.jpg,,FALSE, +N1,22285,sortie-60bd23ec-2e59-42c1-babf-0f774ac86e9a,https://biolit.fr/sorties/sortie-60bd23ec-2e59-42c1-babf-0f774ac86e9a/,collège paul Eluard,,3/27/2018 0:00,14.0000000,15.0000000,50.691907000000,1.562842000000,,"outreu, plage de ningle",21290,observation-60bd23ec-2e59-42c1-babf-0f774ac86e9a-2,https://biolit.fr/observations/observation-60bd23ec-2e59-42c1-babf-0f774ac86e9a-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0014_1-scaled.jpg,,FALSE, +N1,22286,sortie-6bb3db68-9a57-4ef8-8a94-82c7012fc14a,https://biolit.fr/sorties/sortie-6bb3db68-9a57-4ef8-8a94-82c7012fc14a/,collège paul Eluard,,3/27/2018 0:00,14.0000000,15.0000000,50.6931910000,1.56223700000,,"outreau, plage de ningles",21292,observation-6bb3db68-9a57-4ef8-8a94-82c7012fc14a,https://biolit.fr/observations/observation-6bb3db68-9a57-4ef8-8a94-82c7012fc14a/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0021_0-scaled.jpg,,FALSE, +N1,22287,sortie-b6f7730a-ff5b-4262-83e7-bbb60ccb664b,https://biolit.fr/sorties/sortie-b6f7730a-ff5b-4262-83e7-bbb60ccb664b/,collège paul Eluard,,04/03/2018,14.0000000,15.0000000,50.69195500000,1.562843000000,,cap d'aleprech,21294,observation-b6f7730a-ff5b-4262-83e7-bbb60ccb664b,https://biolit.fr/observations/observation-b6f7730a-ff5b-4262-83e7-bbb60ccb664b/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0008-scaled.jpg,,FALSE, +N1,22287,sortie-b6f7730a-ff5b-4262-83e7-bbb60ccb664b,https://biolit.fr/sorties/sortie-b6f7730a-ff5b-4262-83e7-bbb60ccb664b/,collège paul Eluard,,04/03/2018,14.0000000,15.0000000,50.69195500000,1.562843000000,,cap d'aleprech,21296,observation-b6f7730a-ff5b-4262-83e7-bbb60ccb664b-2,https://biolit.fr/observations/observation-b6f7730a-ff5b-4262-83e7-bbb60ccb664b-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0009-scaled.jpg,,FALSE, +N1,22287,sortie-b6f7730a-ff5b-4262-83e7-bbb60ccb664b,https://biolit.fr/sorties/sortie-b6f7730a-ff5b-4262-83e7-bbb60ccb664b/,collège paul Eluard,,04/03/2018,14.0000000,15.0000000,50.69195500000,1.562843000000,,cap d'aleprech,21298,observation-b6f7730a-ff5b-4262-83e7-bbb60ccb664b-3,https://biolit.fr/observations/observation-b6f7730a-ff5b-4262-83e7-bbb60ccb664b-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0014_2-scaled.jpg,,FALSE, +N1,22288,sortie-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017,https://biolit.fr/sorties/sortie-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017/,Observe la nature,,04/01/2018,13.0000000,14.0:15,48.815533000000,-3.427140000000,,Plage de Pors-ar-goret perros guirec,21300,observation-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017,https://biolit.fr/observations/observation-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4010572-scaled.jpg,,TRUE, +N1,22288,sortie-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017,https://biolit.fr/sorties/sortie-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017/,Observe la nature,,04/01/2018,13.0000000,14.0:15,48.815533000000,-3.427140000000,,Plage de Pors-ar-goret perros guirec,21302,observation-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017-2,https://biolit.fr/observations/observation-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4010576-scaled.jpg,,TRUE, +N1,22288,sortie-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017,https://biolit.fr/sorties/sortie-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017/,Observe la nature,,04/01/2018,13.0000000,14.0:15,48.815533000000,-3.427140000000,,Plage de Pors-ar-goret perros guirec,21304,observation-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017-3,https://biolit.fr/observations/observation-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017-3/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4010588-scaled.jpg,,TRUE, +N1,22288,sortie-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017,https://biolit.fr/sorties/sortie-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017/,Observe la nature,,04/01/2018,13.0000000,14.0:15,48.815533000000,-3.427140000000,,Plage de Pors-ar-goret perros guirec,21306,observation-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017-4,https://biolit.fr/observations/observation-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017-4/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4010584-scaled.jpg,,TRUE, +N1,22288,sortie-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017,https://biolit.fr/sorties/sortie-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017/,Observe la nature,,04/01/2018,13.0000000,14.0:15,48.815533000000,-3.427140000000,,Plage de Pors-ar-goret perros guirec,21308,observation-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017-5,https://biolit.fr/observations/observation-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017-5/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4010583-scaled.jpg,,TRUE, +N1,22288,sortie-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017,https://biolit.fr/sorties/sortie-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017/,Observe la nature,,04/01/2018,13.0000000,14.0:15,48.815533000000,-3.427140000000,,Plage de Pors-ar-goret perros guirec,21310,observation-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017-6,https://biolit.fr/observations/observation-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017-6/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4010578-scaled.jpg,,TRUE, +N1,22289,sortie-b183972d-ee72-47ca-b909-ac672479dd4b,https://biolit.fr/sorties/sortie-b183972d-ee72-47ca-b909-ac672479dd4b/,collège paul Eluard,,3/26/2018 0:00,14.0000000,15.0000000,50.692196000000,1.562745000000,,"outreau , plage de ningles ",21312,observation-b183972d-ee72-47ca-b909-ac672479dd4b,https://biolit.fr/observations/observation-b183972d-ee72-47ca-b909-ac672479dd4b/,,,,https://biolit.fr/wp-content/uploads/2023/05/photo plage animaux.jpeg,,FALSE, +N1,22290,sortie-4e0558ad-0c60-4f1c-9c4a-60c2bf785d98,https://biolit.fr/sorties/sortie-4e0558ad-0c60-4f1c-9c4a-60c2bf785d98/,collège paul Eluard,,3/26/2018 0:00,14.0000000,15.0000000,50.692087000000,1.562488000000,,"outreau, plage de ningles",21314,observation-4e0558ad-0c60-4f1c-9c4a-60c2bf785d98,https://biolit.fr/observations/observation-4e0558ad-0c60-4f1c-9c4a-60c2bf785d98/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0025-scaled.jpg,,FALSE, +N1,22291,sortie-0d53e9c5-481e-46e4-af07-a258c65c0d0c,https://biolit.fr/sorties/sortie-0d53e9c5-481e-46e4-af07-a258c65c0d0c/,collège paul Eluard,,3/26/2018 0:00,14.0000000,15.0000000,50.707091000000,1.590040000000,,"Outreau, plage de Ningles",21316,observation-0d53e9c5-481e-46e4-af07-a258c65c0d0c,https://biolit.fr/observations/observation-0d53e9c5-481e-46e4-af07-a258c65c0d0c/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_2613_1-scaled.jpg,,FALSE, +N1,22292,sortie-dd3aeb1b-7433-4efd-bfc1-00fc055635c3,https://biolit.fr/sorties/sortie-dd3aeb1b-7433-4efd-bfc1-00fc055635c3/,collège paul Eluard,,3/26/2018 0:00,14.0000000,15.0000000,48.618816000000,5.062835000000,,outreau plage de ningles ,21318,observation-dd3aeb1b-7433-4efd-bfc1-00fc055635c3,https://biolit.fr/observations/observation-dd3aeb1b-7433-4efd-bfc1-00fc055635c3/,,,,https://biolit.fr/wp-content/uploads/2023/05/20180326_143513-scaled.jpg,,FALSE, +N1,22293,sortie-6b448e0f-cfd9-4740-9265-c9eb9b1ac9d2,https://biolit.fr/sorties/sortie-6b448e0f-cfd9-4740-9265-c9eb9b1ac9d2/,collège paul Eluard,,3/26/2018 0:00,14.0000000,15.0000000,46.396180000000,-0.810044000000,,"outreau, plage de Ningles",21320,observation-6b448e0f-cfd9-4740-9265-c9eb9b1ac9d2,https://biolit.fr/observations/observation-6b448e0f-cfd9-4740-9265-c9eb9b1ac9d2/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180326_143642_1-scaled.jpg,,FALSE, +N1,22294,sortie-78be8137-2f4a-4978-b839-20e168dd5024,https://biolit.fr/sorties/sortie-78be8137-2f4a-4978-b839-20e168dd5024/,collège paul Eluard,,3/26/2018 0:00,14.0:25,15.0000000,50.462729000000,2.455642000000,,"Outreau,plage de Ningles",21322,observation-78be8137-2f4a-4978-b839-20e168dd5024,https://biolit.fr/observations/observation-78be8137-2f4a-4978-b839-20e168dd5024/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0021-scaled.jpg,,FALSE, +N1,22295,sortie-44f3d82b-2cbe-4b5f-a2a4-d47428b514ac,https://biolit.fr/sorties/sortie-44f3d82b-2cbe-4b5f-a2a4-d47428b514ac/,Morice,,3/19/2018 0:00,11.0000000,13.0000000,48.641954000000,-2.072184000000,,Saint-Enogat,21324,observation-44f3d82b-2cbe-4b5f-a2a4-d47428b514ac,https://biolit.fr/observations/observation-44f3d82b-2cbe-4b5f-a2a4-d47428b514ac/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_0271.jpg,,TRUE, +N1,22296,sortie-1b7cbda1-c4dd-48da-83f5-23cc241324d8,https://biolit.fr/sorties/sortie-1b7cbda1-c4dd-48da-83f5-23cc241324d8/,Morice,,2/19/2018 0:00,14.0000000,16.0000000,48.643131000000,-2.112364000000,,Pointe du Décollé,21326,observation-1b7cbda1-c4dd-48da-83f5-23cc241324d8,https://biolit.fr/observations/observation-1b7cbda1-c4dd-48da-83f5-23cc241324d8/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20180219_144258-scaled.jpg,,TRUE, +N1,22296,sortie-1b7cbda1-c4dd-48da-83f5-23cc241324d8,https://biolit.fr/sorties/sortie-1b7cbda1-c4dd-48da-83f5-23cc241324d8/,Morice,,2/19/2018 0:00,14.0000000,16.0000000,48.643131000000,-2.112364000000,,Pointe du Décollé,21328,observation-1b7cbda1-c4dd-48da-83f5-23cc241324d8-2,https://biolit.fr/observations/observation-1b7cbda1-c4dd-48da-83f5-23cc241324d8-2/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20180219_144454-scaled.jpg,,TRUE, +N1,22296,sortie-1b7cbda1-c4dd-48da-83f5-23cc241324d8,https://biolit.fr/sorties/sortie-1b7cbda1-c4dd-48da-83f5-23cc241324d8/,Morice,,2/19/2018 0:00,14.0000000,16.0000000,48.643131000000,-2.112364000000,,Pointe du Décollé,21330,observation-1b7cbda1-c4dd-48da-83f5-23cc241324d8-3,https://biolit.fr/observations/observation-1b7cbda1-c4dd-48da-83f5-23cc241324d8-3/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20180219_144603-scaled.jpg,,TRUE, +N1,22296,sortie-1b7cbda1-c4dd-48da-83f5-23cc241324d8,https://biolit.fr/sorties/sortie-1b7cbda1-c4dd-48da-83f5-23cc241324d8/,Morice,,2/19/2018 0:00,14.0000000,16.0000000,48.643131000000,-2.112364000000,,Pointe du Décollé,21332,observation-1b7cbda1-c4dd-48da-83f5-23cc241324d8-4,https://biolit.fr/observations/observation-1b7cbda1-c4dd-48da-83f5-23cc241324d8-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20180219_144619-scaled.jpg,,TRUE, +N1,22296,sortie-1b7cbda1-c4dd-48da-83f5-23cc241324d8,https://biolit.fr/sorties/sortie-1b7cbda1-c4dd-48da-83f5-23cc241324d8/,Morice,,2/19/2018 0:00,14.0000000,16.0000000,48.643131000000,-2.112364000000,,Pointe du Décollé,21334,observation-1b7cbda1-c4dd-48da-83f5-23cc241324d8-5,https://biolit.fr/observations/observation-1b7cbda1-c4dd-48da-83f5-23cc241324d8-5/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20180219_144630-scaled.jpg,,TRUE, +N1,22296,sortie-1b7cbda1-c4dd-48da-83f5-23cc241324d8,https://biolit.fr/sorties/sortie-1b7cbda1-c4dd-48da-83f5-23cc241324d8/,Morice,,2/19/2018 0:00,14.0000000,16.0000000,48.643131000000,-2.112364000000,,Pointe du Décollé,21336,observation-1b7cbda1-c4dd-48da-83f5-23cc241324d8-6,https://biolit.fr/observations/observation-1b7cbda1-c4dd-48da-83f5-23cc241324d8-6/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20180219_144657-scaled.jpg,,TRUE, +N1,22296,sortie-1b7cbda1-c4dd-48da-83f5-23cc241324d8,https://biolit.fr/sorties/sortie-1b7cbda1-c4dd-48da-83f5-23cc241324d8/,Morice,,2/19/2018 0:00,14.0000000,16.0000000,48.643131000000,-2.112364000000,,Pointe du Décollé,21338,observation-1b7cbda1-c4dd-48da-83f5-23cc241324d8-7,https://biolit.fr/observations/observation-1b7cbda1-c4dd-48da-83f5-23cc241324d8-7/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20180219_144750-scaled.jpg,,TRUE, +N1,22296,sortie-1b7cbda1-c4dd-48da-83f5-23cc241324d8,https://biolit.fr/sorties/sortie-1b7cbda1-c4dd-48da-83f5-23cc241324d8/,Morice,,2/19/2018 0:00,14.0000000,16.0000000,48.643131000000,-2.112364000000,,Pointe du Décollé,21340,observation-1b7cbda1-c4dd-48da-83f5-23cc241324d8-8,https://biolit.fr/observations/observation-1b7cbda1-c4dd-48da-83f5-23cc241324d8-8/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20180219_150210-scaled.jpg,,TRUE, +N1,22297,sortie-82c7facf-53ed-4d9d-adba-44bf01daa5ef,https://biolit.fr/sorties/sortie-82c7facf-53ed-4d9d-adba-44bf01daa5ef/,polig,,03/04/2018,11.0000000,11.0000000,47.869788000000,-4.114446000000,,combrit Sainte Marine,21342,observation-82c7facf-53ed-4d9d-adba-44bf01daa5ef,https://biolit.fr/observations/observation-82c7facf-53ed-4d9d-adba-44bf01daa5ef/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1190127 - Version 2.JPG,,TRUE, +N1,22298,sortie-6428f918-89fe-4cf6-8fcd-7cd3b22a45b2,https://biolit.fr/sorties/sortie-6428f918-89fe-4cf6-8fcd-7cd3b22a45b2/,Observe la nature,,03/03/2018,13.0000000,14.0000000,48.815468000000,-3.427204000000,,PORS AR GORET Perros Guirec,21344,observation-6428f918-89fe-4cf6-8fcd-7cd3b22a45b2,https://biolit.fr/observations/observation-6428f918-89fe-4cf6-8fcd-7cd3b22a45b2/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P3030471-scaled.jpg,,TRUE, +N1,22299,sortie-fe2a7929-bafe-494a-a163-953c55220f96,https://biolit.fr/sorties/sortie-fe2a7929-bafe-494a-a163-953c55220f96/,Observe la nature,,03/04/2018,14.0000000,15.0000000,48.830090000000,-3.34679700000,,Le Royau,21346,observation-fe2a7929-bafe-494a-a163-953c55220f96,https://biolit.fr/observations/observation-fe2a7929-bafe-494a-a163-953c55220f96/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P3040491-scaled.jpg,,TRUE, +N1,22300,sortie-671e6ba3-8e79-4234-9d5a-ddaeaeabec9d,https://biolit.fr/sorties/sortie-671e6ba3-8e79-4234-9d5a-ddaeaeabec9d/,Morice,,03/02/2018,12.0000000,14.0000000,47.351086000000,-2.51817300000,,Plage de la Bastille,21348,observation-671e6ba3-8e79-4234-9d5a-ddaeaeabec9d,https://biolit.fr/observations/observation-671e6ba3-8e79-4234-9d5a-ddaeaeabec9d/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC04899.JPG,,TRUE, +N1,22300,sortie-671e6ba3-8e79-4234-9d5a-ddaeaeabec9d,https://biolit.fr/sorties/sortie-671e6ba3-8e79-4234-9d5a-ddaeaeabec9d/,Morice,,03/02/2018,12.0000000,14.0000000,47.351086000000,-2.51817300000,,Plage de la Bastille,21350,observation-671e6ba3-8e79-4234-9d5a-ddaeaeabec9d-2,https://biolit.fr/observations/observation-671e6ba3-8e79-4234-9d5a-ddaeaeabec9d-2/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC04913-rotated.jpg,,TRUE, +N1,22301,sortie-ad3497f1-3876-4038-a681-8dfcfec1d6b3,https://biolit.fr/sorties/sortie-ad3497f1-3876-4038-a681-8dfcfec1d6b3/,RIEM,,02/03/2018,15.0000000,15.0000000,47.493108000000,-2.681668000000,,PENVINS ,21352,observation-ad3497f1-3876-4038-a681-8dfcfec1d6b3,https://biolit.fr/observations/observation-ad3497f1-3876-4038-a681-8dfcfec1d6b3/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1040339.JPG,,FALSE, +N1,22301,sortie-ad3497f1-3876-4038-a681-8dfcfec1d6b3,https://biolit.fr/sorties/sortie-ad3497f1-3876-4038-a681-8dfcfec1d6b3/,RIEM,,02/03/2018,15.0000000,15.0000000,47.493108000000,-2.681668000000,,PENVINS ,21354,observation-ad3497f1-3876-4038-a681-8dfcfec1d6b3-2,https://biolit.fr/observations/observation-ad3497f1-3876-4038-a681-8dfcfec1d6b3-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1040341.JPG,,TRUE, +N1,22302,sortie-68f1097c-c75b-49a2-af6f-18d2e9f40fb9,https://biolit.fr/sorties/sortie-68f1097c-c75b-49a2-af6f-18d2e9f40fb9/,collège paul Eluard,,01/11/2018,13.0000000,16.0:15,50.687121000000,1.563111000000,,Plage de ningle,21356,observation-68f1097c-c75b-49a2-af6f-18d2e9f40fb9,https://biolit.fr/observations/observation-68f1097c-c75b-49a2-af6f-18d2e9f40fb9/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180214_152250_0.jpg,,FALSE, +N1,22303,sortie-32cb0c18-32e7-42d6-97b4-463094e51d61,https://biolit.fr/sorties/sortie-32cb0c18-32e7-42d6-97b4-463094e51d61/,collège paul Eluard,,01/12/2018,14.0000000,15.0:45,50.692074000000,1.562864000000,,plage de Ningle,21358,observation-32cb0c18-32e7-42d6-97b4-463094e51d61,https://biolit.fr/observations/observation-32cb0c18-32e7-42d6-97b4-463094e51d61/,,,,https://biolit.fr/wp-content/uploads/2023/05/PICT1990_0.JPG,,FALSE, +N1,22304,sortie-d4f83e48-495e-49bf-a379-a6f7fb95c8a3,https://biolit.fr/sorties/sortie-d4f83e48-495e-49bf-a379-a6f7fb95c8a3/,Association Avril - Vigie des havres,,1/22/2018 0:00,14.0000000,15.0000000,49.029303000000,-1.598034000000,,agon coutainville,21360,observation-d4f83e48-495e-49bf-a379-a6f7fb95c8a3,https://biolit.fr/observations/observation-d4f83e48-495e-49bf-a379-a6f7fb95c8a3/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20180122_151047-scaled.jpg,,TRUE, +N1,22305,sortie-6960ecc9-a991-46b4-8f79-00839b0f7e47,https://biolit.fr/sorties/sortie-6960ecc9-a991-46b4-8f79-00839b0f7e47/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.692931000000,1.562239000000,,plage de Ningle,21362,observation-6960ecc9-a991-46b4-8f79-00839b0f7e47,https://biolit.fr/observations/observation-6960ecc9-a991-46b4-8f79-00839b0f7e47/,,,,https://biolit.fr/wp-content/uploads/2023/05/PICT1990.JPG,,FALSE, +N1,22305,sortie-6960ecc9-a991-46b4-8f79-00839b0f7e47,https://biolit.fr/sorties/sortie-6960ecc9-a991-46b4-8f79-00839b0f7e47/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.692931000000,1.562239000000,,plage de Ningle,21364,observation-6960ecc9-a991-46b4-8f79-00839b0f7e47-2,https://biolit.fr/observations/observation-6960ecc9-a991-46b4-8f79-00839b0f7e47-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/PICT1993.JPG,,FALSE, +N1,22306,sortie-e8b9f15d-ef68-4b75-9a89-95b36d9328db,https://biolit.fr/sorties/sortie-e8b9f15d-ef68-4b75-9a89-95b36d9328db/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.691839000000,1.562964000000,,plage de ningle ,21366,observation-e8b9f15d-ef68-4b75-9a89-95b36d9328db,https://biolit.fr/observations/observation-e8b9f15d-ef68-4b75-9a89-95b36d9328db/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_0489.jpg,,FALSE, +N1,22307,sortie-8b60096d-eb9f-4c43-b16b-481d8839565b,https://biolit.fr/sorties/sortie-8b60096d-eb9f-4c43-b16b-481d8839565b/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.691891000000,1.562926000000,,Plage de Ningle,21368,observation-8b60096d-eb9f-4c43-b16b-481d8839565b,https://biolit.fr/observations/observation-8b60096d-eb9f-4c43-b16b-481d8839565b/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_0064-scaled.jpg,,FALSE, +N1,22308,sortie-7a9ecbef-95de-48c0-ac89-e9e808eaecd4,https://biolit.fr/sorties/sortie-7a9ecbef-95de-48c0-ac89-e9e808eaecd4/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.691818000000,1.562640000000,,plage de Ningles,21370,observation-7a9ecbef-95de-48c0-ac89-e9e808eaecd4,https://biolit.fr/observations/observation-7a9ecbef-95de-48c0-ac89-e9e808eaecd4/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_0180-scaled.jpg,,FALSE, +N1,22308,sortie-7a9ecbef-95de-48c0-ac89-e9e808eaecd4,https://biolit.fr/sorties/sortie-7a9ecbef-95de-48c0-ac89-e9e808eaecd4/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.691818000000,1.562640000000,,plage de Ningles,21372,observation-7a9ecbef-95de-48c0-ac89-e9e808eaecd4-2,https://biolit.fr/observations/observation-7a9ecbef-95de-48c0-ac89-e9e808eaecd4-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_0186-scaled.jpg,,FALSE, +N1,22309,sortie-afe4af33-4b21-4012-a44f-316e85269f2a,https://biolit.fr/sorties/sortie-afe4af33-4b21-4012-a44f-316e85269f2a/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.691758000000,1.562831000000,,Plage de Ningles,21374,observation-afe4af33-4b21-4012-a44f-316e85269f2a,https://biolit.fr/observations/observation-afe4af33-4b21-4012-a44f-316e85269f2a/,,,,https://biolit.fr/wp-content/uploads/2023/05/P_20180112_142848_1[1]_0-scaled.jpg,,FALSE, +N1,22310,sortie-700e54ee-9118-4c01-bc07-7fbfe310bbae,https://biolit.fr/sorties/sortie-700e54ee-9118-4c01-bc07-7fbfe310bbae/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.691758000000,1.562831000000,,Plage de Ningles,21376,observation-700e54ee-9118-4c01-bc07-7fbfe310bbae,https://biolit.fr/observations/observation-700e54ee-9118-4c01-bc07-7fbfe310bbae/,,,,https://biolit.fr/wp-content/uploads/2023/05/P_20180112_142848_1[1]_0-scaled.jpg,,FALSE, +N1,22311,sortie-4d2cbd22-04de-4b66-9491-19c5fe994ba2,https://biolit.fr/sorties/sortie-4d2cbd22-04de-4b66-9491-19c5fe994ba2/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.692055000000,1.562640000000,,Plage de Ningles,21377,observation-4d2cbd22-04de-4b66-9491-19c5fe994ba2,https://biolit.fr/observations/observation-4d2cbd22-04de-4b66-9491-19c5fe994ba2/,,,,https://biolit.fr/wp-content/uploads/2023/05/20180112_142427-scaled.jpg,,FALSE, +N1,22311,sortie-4d2cbd22-04de-4b66-9491-19c5fe994ba2,https://biolit.fr/sorties/sortie-4d2cbd22-04de-4b66-9491-19c5fe994ba2/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.692055000000,1.562640000000,,Plage de Ningles,21379,observation-4d2cbd22-04de-4b66-9491-19c5fe994ba2-2,https://biolit.fr/observations/observation-4d2cbd22-04de-4b66-9491-19c5fe994ba2-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/20180112_142738-scaled.jpg,,FALSE, +N1,22312,sortie-984c8c1b-3d4d-4b05-a6ad-b5cf5bed77e3,https://biolit.fr/sorties/sortie-984c8c1b-3d4d-4b05-a6ad-b5cf5bed77e3/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.691943000000,1.562864000000,,plage de Ningles ,21381,observation-984c8c1b-3d4d-4b05-a6ad-b5cf5bed77e3,https://biolit.fr/observations/observation-984c8c1b-3d4d-4b05-a6ad-b5cf5bed77e3/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMAG0060[1]-scaled.jpg,,FALSE, +N1,22312,sortie-984c8c1b-3d4d-4b05-a6ad-b5cf5bed77e3,https://biolit.fr/sorties/sortie-984c8c1b-3d4d-4b05-a6ad-b5cf5bed77e3/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.691943000000,1.562864000000,,plage de Ningles ,21383,observation-984c8c1b-3d4d-4b05-a6ad-b5cf5bed77e3-2,https://biolit.fr/observations/observation-984c8c1b-3d4d-4b05-a6ad-b5cf5bed77e3-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMAG0073[1]-scaled.jpg,,FALSE, +N1,22313,sortie-38606b94-633b-4c58-a945-8d1018c7dc4e,https://biolit.fr/sorties/sortie-38606b94-633b-4c58-a945-8d1018c7dc4e/,collège paul Eluard,,1/19/2018 0:00,14.0000000,15.0000000,50.69159900000,1.562861000000,,Plage de Ningles,21385,observation-38606b94-633b-4c58-a945-8d1018c7dc4e,https://biolit.fr/observations/observation-38606b94-633b-4c58-a945-8d1018c7dc4e/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180112_142838[1]-scaled.jpg,,FALSE, +N1,22314,sortie-19530ac9-8aea-45bb-963b-2ce1f8d9ca35,https://biolit.fr/sorties/sortie-19530ac9-8aea-45bb-963b-2ce1f8d9ca35/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.691937000000,1.563297000000,,Plage de Ningles,21387,observation-19530ac9-8aea-45bb-963b-2ce1f8d9ca35,https://biolit.fr/observations/observation-19530ac9-8aea-45bb-963b-2ce1f8d9ca35/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0015-scaled.jpg,,FALSE, +N1,22314,sortie-19530ac9-8aea-45bb-963b-2ce1f8d9ca35,https://biolit.fr/sorties/sortie-19530ac9-8aea-45bb-963b-2ce1f8d9ca35/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.691937000000,1.563297000000,,Plage de Ningles,21389,observation-19530ac9-8aea-45bb-963b-2ce1f8d9ca35-2,https://biolit.fr/observations/observation-19530ac9-8aea-45bb-963b-2ce1f8d9ca35-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0011-scaled.jpg,,FALSE, +N1,22315,sortie-3396adf5-39a1-46a0-b995-992e98a7337c,https://biolit.fr/sorties/sortie-3396adf5-39a1-46a0-b995-992e98a7337c/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.691937000000,1.563297000000,,Plage de Ningles,21391,observation-3396adf5-39a1-46a0-b995-992e98a7337c,https://biolit.fr/observations/observation-3396adf5-39a1-46a0-b995-992e98a7337c/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0015-scaled.jpg,,FALSE, +N1,22315,sortie-3396adf5-39a1-46a0-b995-992e98a7337c,https://biolit.fr/sorties/sortie-3396adf5-39a1-46a0-b995-992e98a7337c/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.691937000000,1.563297000000,,Plage de Ningles,21392,observation-3396adf5-39a1-46a0-b995-992e98a7337c-2,https://biolit.fr/observations/observation-3396adf5-39a1-46a0-b995-992e98a7337c-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0011-scaled.jpg,,FALSE, +N1,22316,sortie-2757d1f2-b3de-45a7-9d61-a93ea5b2230a,https://biolit.fr/sorties/sortie-2757d1f2-b3de-45a7-9d61-a93ea5b2230a/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.691919000000,1.562683000000,,plage de Ningles,21393,observation-2757d1f2-b3de-45a7-9d61-a93ea5b2230a,https://biolit.fr/observations/observation-2757d1f2-b3de-45a7-9d61-a93ea5b2230a/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180112_144047[1].jpg,,FALSE, +N1,22317,sortie-c1e80808-0652-4c1e-b78a-0c7886ba4e69,https://biolit.fr/sorties/sortie-c1e80808-0652-4c1e-b78a-0c7886ba4e69/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.691849000000,1.562598000000,,plage de Ningles,21395,observation-c1e80808-0652-4c1e-b78a-0c7886ba4e69,https://biolit.fr/observations/observation-c1e80808-0652-4c1e-b78a-0c7886ba4e69/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180111_144222-scaled.jpg,,FALSE, +N1,22317,sortie-c1e80808-0652-4c1e-b78a-0c7886ba4e69,https://biolit.fr/sorties/sortie-c1e80808-0652-4c1e-b78a-0c7886ba4e69/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.691849000000,1.562598000000,,plage de Ningles,21397,observation-c1e80808-0652-4c1e-b78a-0c7886ba4e69-2,https://biolit.fr/observations/observation-c1e80808-0652-4c1e-b78a-0c7886ba4e69-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180111_144353-scaled.jpg,,FALSE, +N1,22318,sortie-4b66bebf-b757-47e8-b950-1a23630a9636,https://biolit.fr/sorties/sortie-4b66bebf-b757-47e8-b950-1a23630a9636/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.695461000000,1.562316000000,,plage de ningles,21399,observation-4b66bebf-b757-47e8-b950-1a23630a9636,https://biolit.fr/observations/observation-4b66bebf-b757-47e8-b950-1a23630a9636/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180111_144345-scaled.jpg,,FALSE, +N1,22318,sortie-4b66bebf-b757-47e8-b950-1a23630a9636,https://biolit.fr/sorties/sortie-4b66bebf-b757-47e8-b950-1a23630a9636/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.695461000000,1.562316000000,,plage de ningles,21401,observation-4b66bebf-b757-47e8-b950-1a23630a9636-2,https://biolit.fr/observations/observation-4b66bebf-b757-47e8-b950-1a23630a9636-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180111_145825-scaled.jpg,,FALSE, +N1,22318,sortie-4b66bebf-b757-47e8-b950-1a23630a9636,https://biolit.fr/sorties/sortie-4b66bebf-b757-47e8-b950-1a23630a9636/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.695461000000,1.562316000000,,plage de ningles,21403,observation-4b66bebf-b757-47e8-b950-1a23630a9636-3,https://biolit.fr/observations/observation-4b66bebf-b757-47e8-b950-1a23630a9636-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180111_150152-scaled.jpg,,FALSE, +N1,22318,sortie-4b66bebf-b757-47e8-b950-1a23630a9636,https://biolit.fr/sorties/sortie-4b66bebf-b757-47e8-b950-1a23630a9636/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.695461000000,1.562316000000,,plage de ningles,21405,observation-4b66bebf-b757-47e8-b950-1a23630a9636-4,https://biolit.fr/observations/observation-4b66bebf-b757-47e8-b950-1a23630a9636-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180111_150203-scaled.jpg,,FALSE, +N1,22319,sortie-84ad3242-5f82-4735-b242-f9f66b5ff59e,https://biolit.fr/sorties/sortie-84ad3242-5f82-4735-b242-f9f66b5ff59e/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.691946000000,1.562865000000,,Plage de Ningles,21407,observation-84ad3242-5f82-4735-b242-f9f66b5ff59e,https://biolit.fr/observations/observation-84ad3242-5f82-4735-b242-f9f66b5ff59e/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0098-scaled.jpg,,FALSE, +N1,22319,sortie-84ad3242-5f82-4735-b242-f9f66b5ff59e,https://biolit.fr/sorties/sortie-84ad3242-5f82-4735-b242-f9f66b5ff59e/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.691946000000,1.562865000000,,Plage de Ningles,21409,observation-84ad3242-5f82-4735-b242-f9f66b5ff59e-2,https://biolit.fr/observations/observation-84ad3242-5f82-4735-b242-f9f66b5ff59e-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0100-scaled.jpg,,FALSE, +N1,22319,sortie-84ad3242-5f82-4735-b242-f9f66b5ff59e,https://biolit.fr/sorties/sortie-84ad3242-5f82-4735-b242-f9f66b5ff59e/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.691946000000,1.562865000000,,Plage de Ningles,21411,observation-84ad3242-5f82-4735-b242-f9f66b5ff59e-3,https://biolit.fr/observations/observation-84ad3242-5f82-4735-b242-f9f66b5ff59e-3/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/05/100_0093-scaled.jpg,,TRUE, +N1,22320,sortie-6f5dd35e-50dc-438d-ac14-cf022aa5ed57,https://biolit.fr/sorties/sortie-6f5dd35e-50dc-438d-ac14-cf022aa5ed57/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.682382000000,1.567528000000,,plage de Ningles,21413,observation-6f5dd35e-50dc-438d-ac14-cf022aa5ed57,https://biolit.fr/observations/observation-6f5dd35e-50dc-438d-ac14-cf022aa5ed57/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMAG0301-scaled.jpg,,FALSE, +N1,22321,sortie-0a74df8f-2988-49dc-8d37-69dc7b69c5bf,https://biolit.fr/sorties/sortie-0a74df8f-2988-49dc-8d37-69dc7b69c5bf/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.694282000000,1.563475000000,,Plage de Ningles,21415,observation-0a74df8f-2988-49dc-8d37-69dc7b69c5bf,https://biolit.fr/observations/observation-0a74df8f-2988-49dc-8d37-69dc7b69c5bf/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMAG0299-scaled.jpg,,FALSE, +N1,22322,sortie-f024d46e-29b4-42ac-8446-ebbb8bc2fdb0,https://biolit.fr/sorties/sortie-f024d46e-29b4-42ac-8446-ebbb8bc2fdb0/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,48.712207000000,1.920059000000,,plage de Ningles ,21417,observation-f024d46e-29b4-42ac-8446-ebbb8bc2fdb0,https://biolit.fr/observations/observation-f024d46e-29b4-42ac-8446-ebbb8bc2fdb0/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/05/IMAG0311-scaled.jpg,,TRUE, +N1,22323,sortie-01752621-2ad0-479e-b91f-cd06bf2fb01b,https://biolit.fr/sorties/sortie-01752621-2ad0-479e-b91f-cd06bf2fb01b/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.670449000000,1.557510000000,,plage de ningles,21419,observation-01752621-2ad0-479e-b91f-cd06bf2fb01b,https://biolit.fr/observations/observation-01752621-2ad0-479e-b91f-cd06bf2fb01b/,,,,https://biolit.fr/wp-content/uploads/2023/05/20170203_221611-scaled.jpg,,FALSE, +N1,22323,sortie-01752621-2ad0-479e-b91f-cd06bf2fb01b,https://biolit.fr/sorties/sortie-01752621-2ad0-479e-b91f-cd06bf2fb01b/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.670449000000,1.557510000000,,plage de ningles,21421,observation-01752621-2ad0-479e-b91f-cd06bf2fb01b-2,https://biolit.fr/observations/observation-01752621-2ad0-479e-b91f-cd06bf2fb01b-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/20170203_221611_1-scaled.jpg,,FALSE, +N1,22324,sortie-55c819ca-0260-4226-a9c6-2034304161f5,https://biolit.fr/sorties/sortie-55c819ca-0260-4226-a9c6-2034304161f5/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.691856000000,1.562979000000,,plage de Ningles,21423,observation-55c819ca-0260-4226-a9c6-2034304161f5,https://biolit.fr/observations/observation-55c819ca-0260-4226-a9c6-2034304161f5/,,,,https://biolit.fr/wp-content/uploads/2023/05/007-scaled.jpg,,FALSE, +N1,22324,sortie-55c819ca-0260-4226-a9c6-2034304161f5,https://biolit.fr/sorties/sortie-55c819ca-0260-4226-a9c6-2034304161f5/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.691856000000,1.562979000000,,plage de Ningles,21425,observation-55c819ca-0260-4226-a9c6-2034304161f5-2,https://biolit.fr/observations/observation-55c819ca-0260-4226-a9c6-2034304161f5-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/005-scaled.jpg,,FALSE, +N1,22324,sortie-55c819ca-0260-4226-a9c6-2034304161f5,https://biolit.fr/sorties/sortie-55c819ca-0260-4226-a9c6-2034304161f5/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.691856000000,1.562979000000,,plage de Ningles,21427,observation-55c819ca-0260-4226-a9c6-2034304161f5-3,https://biolit.fr/observations/observation-55c819ca-0260-4226-a9c6-2034304161f5-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/003-scaled.jpg,,FALSE, +N1,22324,sortie-55c819ca-0260-4226-a9c6-2034304161f5,https://biolit.fr/sorties/sortie-55c819ca-0260-4226-a9c6-2034304161f5/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.691856000000,1.562979000000,,plage de Ningles,21429,observation-55c819ca-0260-4226-a9c6-2034304161f5-4,https://biolit.fr/observations/observation-55c819ca-0260-4226-a9c6-2034304161f5-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/008-scaled.jpg,,FALSE, +N1,22324,sortie-55c819ca-0260-4226-a9c6-2034304161f5,https://biolit.fr/sorties/sortie-55c819ca-0260-4226-a9c6-2034304161f5/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.691856000000,1.562979000000,,plage de Ningles,21431,observation-55c819ca-0260-4226-a9c6-2034304161f5-5,https://biolit.fr/observations/observation-55c819ca-0260-4226-a9c6-2034304161f5-5/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/004-scaled.jpg,,TRUE, +N1,22324,sortie-55c819ca-0260-4226-a9c6-2034304161f5,https://biolit.fr/sorties/sortie-55c819ca-0260-4226-a9c6-2034304161f5/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.691856000000,1.562979000000,,plage de Ningles,21433,observation-55c819ca-0260-4226-a9c6-2034304161f5-6,https://biolit.fr/observations/observation-55c819ca-0260-4226-a9c6-2034304161f5-6/,,,,https://biolit.fr/wp-content/uploads/2023/05/006-scaled.jpg,,FALSE, +N1,22325,sortie-a421dbcb-c2d8-4402-8a09-fc455d06a3fe,https://biolit.fr/sorties/sortie-a421dbcb-c2d8-4402-8a09-fc455d06a3fe/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.691966000000,1.562871000000,,Plage de Ningles,21435,observation-a421dbcb-c2d8-4402-8a09-fc455d06a3fe,https://biolit.fr/observations/observation-a421dbcb-c2d8-4402-8a09-fc455d06a3fe/,,,,https://biolit.fr/wp-content/uploads/2023/05/20180111_135728[1]-scaled.jpg,,FALSE, +N1,22326,sortie-946ef71a-a2d4-4c9c-94d1-bec02eb64b18,https://biolit.fr/sorties/sortie-946ef71a-a2d4-4c9c-94d1-bec02eb64b18/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.800741000000,1.595793000000,,Plage de Ningles,21437,observation-946ef71a-a2d4-4c9c-94d1-bec02eb64b18,https://biolit.fr/observations/observation-946ef71a-a2d4-4c9c-94d1-bec02eb64b18/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0078-scaled.jpg,,FALSE, +N1,22327,sortie-2945e111-a6c4-48d7-bb77-5f01a770026a,https://biolit.fr/sorties/sortie-2945e111-a6c4-48d7-bb77-5f01a770026a/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.691946000000,1.562865000000,,Plage de Ningles,21439,observation-2945e111-a6c4-48d7-bb77-5f01a770026a,https://biolit.fr/observations/observation-2945e111-a6c4-48d7-bb77-5f01a770026a/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0098-scaled.jpg,,FALSE, +N1,22327,sortie-2945e111-a6c4-48d7-bb77-5f01a770026a,https://biolit.fr/sorties/sortie-2945e111-a6c4-48d7-bb77-5f01a770026a/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.691946000000,1.562865000000,,Plage de Ningles,21440,observation-2945e111-a6c4-48d7-bb77-5f01a770026a-2,https://biolit.fr/observations/observation-2945e111-a6c4-48d7-bb77-5f01a770026a-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0100-scaled.jpg,,FALSE, +N1,22327,sortie-2945e111-a6c4-48d7-bb77-5f01a770026a,https://biolit.fr/sorties/sortie-2945e111-a6c4-48d7-bb77-5f01a770026a/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.691946000000,1.562865000000,,Plage de Ningles,21441,observation-2945e111-a6c4-48d7-bb77-5f01a770026a-3,https://biolit.fr/observations/observation-2945e111-a6c4-48d7-bb77-5f01a770026a-3/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/05/100_0093-scaled.jpg,,TRUE, +N1,22328,sortie-d4cdd274-fdd9-4190-bc92-bd0c612a65f4,https://biolit.fr/sorties/sortie-d4cdd274-fdd9-4190-bc92-bd0c612a65f4/,RIEM,,8/22/2017 0:00,11.0000000,11.0000000,47.493297000000,-2.682188000000,,PLAGE DE PENVINS 56240 SARZEAU,21442,observation-d4cdd274-fdd9-4190-bc92-bd0c612a65f4,https://biolit.fr/observations/observation-d4cdd274-fdd9-4190-bc92-bd0c612a65f4/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1040118.JPG,,FALSE, +N1,22328,sortie-d4cdd274-fdd9-4190-bc92-bd0c612a65f4,https://biolit.fr/sorties/sortie-d4cdd274-fdd9-4190-bc92-bd0c612a65f4/,RIEM,,8/22/2017 0:00,11.0000000,11.0000000,47.493297000000,-2.682188000000,,PLAGE DE PENVINS 56240 SARZEAU,21444,observation-d4cdd274-fdd9-4190-bc92-bd0c612a65f4-2,https://biolit.fr/observations/observation-d4cdd274-fdd9-4190-bc92-bd0c612a65f4-2/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/P1040119.JPG,,TRUE, +N1,22328,sortie-d4cdd274-fdd9-4190-bc92-bd0c612a65f4,https://biolit.fr/sorties/sortie-d4cdd274-fdd9-4190-bc92-bd0c612a65f4/,RIEM,,8/22/2017 0:00,11.0000000,11.0000000,47.493297000000,-2.682188000000,,PLAGE DE PENVINS 56240 SARZEAU,21446,observation-d4cdd274-fdd9-4190-bc92-bd0c612a65f4-3,https://biolit.fr/observations/observation-d4cdd274-fdd9-4190-bc92-bd0c612a65f4-3/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1040120.JPG,,TRUE, +N1,22328,sortie-d4cdd274-fdd9-4190-bc92-bd0c612a65f4,https://biolit.fr/sorties/sortie-d4cdd274-fdd9-4190-bc92-bd0c612a65f4/,RIEM,,8/22/2017 0:00,11.0000000,11.0000000,47.493297000000,-2.682188000000,,PLAGE DE PENVINS 56240 SARZEAU,21448,observation-d4cdd274-fdd9-4190-bc92-bd0c612a65f4-4,https://biolit.fr/observations/observation-d4cdd274-fdd9-4190-bc92-bd0c612a65f4-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1040121.JPG,,FALSE, +N1,22328,sortie-d4cdd274-fdd9-4190-bc92-bd0c612a65f4,https://biolit.fr/sorties/sortie-d4cdd274-fdd9-4190-bc92-bd0c612a65f4/,RIEM,,8/22/2017 0:00,11.0000000,11.0000000,47.493297000000,-2.682188000000,,PLAGE DE PENVINS 56240 SARZEAU,21450,observation-d4cdd274-fdd9-4190-bc92-bd0c612a65f4-5,https://biolit.fr/observations/observation-d4cdd274-fdd9-4190-bc92-bd0c612a65f4-5/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1040122.JPG,,FALSE, +N1,22328,sortie-d4cdd274-fdd9-4190-bc92-bd0c612a65f4,https://biolit.fr/sorties/sortie-d4cdd274-fdd9-4190-bc92-bd0c612a65f4/,RIEM,,8/22/2017 0:00,11.0000000,11.0000000,47.493297000000,-2.682188000000,,PLAGE DE PENVINS 56240 SARZEAU,21452,observation-d4cdd274-fdd9-4190-bc92-bd0c612a65f4-6,https://biolit.fr/observations/observation-d4cdd274-fdd9-4190-bc92-bd0c612a65f4-6/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/P1040123.JPG,,TRUE, +N1,22329,sortie-6bcecd2b-f6f1-473f-9102-d5332425b3ed,https://biolit.fr/sorties/sortie-6bcecd2b-f6f1-473f-9102-d5332425b3ed/,Nicolas,,7/24/2017 0:00,12.0000000,13.0000000,46.20182900000,-1.202942000000,,Pointe du plomb,21454,observation-6bcecd2b-f6f1-473f-9102-d5332425b3ed,https://biolit.fr/observations/observation-6bcecd2b-f6f1-473f-9102-d5332425b3ed/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_20170724_131138_0-scaled.jpg,,TRUE, +N1,22329,sortie-6bcecd2b-f6f1-473f-9102-d5332425b3ed,https://biolit.fr/sorties/sortie-6bcecd2b-f6f1-473f-9102-d5332425b3ed/,Nicolas,,7/24/2017 0:00,12.0000000,13.0000000,46.20182900000,-1.202942000000,,Pointe du plomb,21456,observation-6bcecd2b-f6f1-473f-9102-d5332425b3ed-2,https://biolit.fr/observations/observation-6bcecd2b-f6f1-473f-9102-d5332425b3ed-2/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20170724_131412-scaled.jpg,,TRUE, +N1,22330,sortie-546b7c91-e88a-432b-87d8-212fae62cebe,https://biolit.fr/sorties/sortie-546b7c91-e88a-432b-87d8-212fae62cebe/,LucileA,,07/04/2017,11.0:35,11.0:55,48.640681000000,-2.072721000000,,Estran de St Enogat,21458,observation-546b7c91-e88a-432b-87d8-212fae62cebe,https://biolit.fr/observations/observation-546b7c91-e88a-432b-87d8-212fae62cebe/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_6671-scaled.jpg,,TRUE, +N1,22330,sortie-546b7c91-e88a-432b-87d8-212fae62cebe,https://biolit.fr/sorties/sortie-546b7c91-e88a-432b-87d8-212fae62cebe/,LucileA,,07/04/2017,11.0:35,11.0:55,48.640681000000,-2.072721000000,,Estran de St Enogat,21460,observation-546b7c91-e88a-432b-87d8-212fae62cebe-2,https://biolit.fr/observations/observation-546b7c91-e88a-432b-87d8-212fae62cebe-2/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_6672-scaled.jpg,,TRUE, +N1,22330,sortie-546b7c91-e88a-432b-87d8-212fae62cebe,https://biolit.fr/sorties/sortie-546b7c91-e88a-432b-87d8-212fae62cebe/,LucileA,,07/04/2017,11.0:35,11.0:55,48.640681000000,-2.072721000000,,Estran de St Enogat,21462,observation-546b7c91-e88a-432b-87d8-212fae62cebe-3,https://biolit.fr/observations/observation-546b7c91-e88a-432b-87d8-212fae62cebe-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_6673-scaled.jpg,,TRUE, +N1,22330,sortie-546b7c91-e88a-432b-87d8-212fae62cebe,https://biolit.fr/sorties/sortie-546b7c91-e88a-432b-87d8-212fae62cebe/,LucileA,,07/04/2017,11.0:35,11.0:55,48.640681000000,-2.072721000000,,Estran de St Enogat,21464,observation-546b7c91-e88a-432b-87d8-212fae62cebe-4,https://biolit.fr/observations/observation-546b7c91-e88a-432b-87d8-212fae62cebe-4/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_6674-scaled.jpg,,TRUE, +N1,22331,sortie-5aa6b0c6-dd1f-4464-b917-88552882edc3,https://biolit.fr/sorties/sortie-5aa6b0c6-dd1f-4464-b917-88552882edc3/,PEP44 La Marjolaine,,05/08/2017,10.0:15,11.0000000,47.351536000000,-2.517506000000,,La Turballe,21466,observation-5aa6b0c6-dd1f-4464-b917-88552882edc3,https://biolit.fr/observations/observation-5aa6b0c6-dd1f-4464-b917-88552882edc3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC04925.JPG,,TRUE, +N1,22331,sortie-5aa6b0c6-dd1f-4464-b917-88552882edc3,https://biolit.fr/sorties/sortie-5aa6b0c6-dd1f-4464-b917-88552882edc3/,PEP44 La Marjolaine,,05/08/2017,10.0:15,11.0000000,47.351536000000,-2.517506000000,,La Turballe,21468,observation-5aa6b0c6-dd1f-4464-b917-88552882edc3-2,https://biolit.fr/observations/observation-5aa6b0c6-dd1f-4464-b917-88552882edc3-2/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC04927.JPG,,TRUE, +N1,22332,sortie-6d09883e-a24d-41c3-9f40-648bb41aa65f,https://biolit.fr/sorties/sortie-6d09883e-a24d-41c3-9f40-648bb41aa65f/,ESTRAN Cité de la Mer,,05/04/2017,14.0000000,15.0000000,49.925471000000,1.058953000000,,Dieppe,21470,observation-6d09883e-a24d-41c3-9f40-648bb41aa65f,https://biolit.fr/observations/observation-6d09883e-a24d-41c3-9f40-648bb41aa65f/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20170504_143307-scaled.jpg,,TRUE, +N1,22332,sortie-6d09883e-a24d-41c3-9f40-648bb41aa65f,https://biolit.fr/sorties/sortie-6d09883e-a24d-41c3-9f40-648bb41aa65f/,ESTRAN Cité de la Mer,,05/04/2017,14.0000000,15.0000000,49.925471000000,1.058953000000,,Dieppe,21472,observation-6d09883e-a24d-41c3-9f40-648bb41aa65f-2,https://biolit.fr/observations/observation-6d09883e-a24d-41c3-9f40-648bb41aa65f-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/20170504_143641-scaled.jpg,,FALSE, +N1,22332,sortie-6d09883e-a24d-41c3-9f40-648bb41aa65f,https://biolit.fr/sorties/sortie-6d09883e-a24d-41c3-9f40-648bb41aa65f/,ESTRAN Cité de la Mer,,05/04/2017,14.0000000,15.0000000,49.925471000000,1.058953000000,,Dieppe,21474,observation-6d09883e-a24d-41c3-9f40-648bb41aa65f-3,https://biolit.fr/observations/observation-6d09883e-a24d-41c3-9f40-648bb41aa65f-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20170504_143722-scaled.jpg,,TRUE, +N1,22332,sortie-6d09883e-a24d-41c3-9f40-648bb41aa65f,https://biolit.fr/sorties/sortie-6d09883e-a24d-41c3-9f40-648bb41aa65f/,ESTRAN Cité de la Mer,,05/04/2017,14.0000000,15.0000000,49.925471000000,1.058953000000,,Dieppe,21476,observation-6d09883e-a24d-41c3-9f40-648bb41aa65f-4,https://biolit.fr/observations/observation-6d09883e-a24d-41c3-9f40-648bb41aa65f-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20170504_143838-scaled.jpg,,TRUE, +N1,22332,sortie-6d09883e-a24d-41c3-9f40-648bb41aa65f,https://biolit.fr/sorties/sortie-6d09883e-a24d-41c3-9f40-648bb41aa65f/,ESTRAN Cité de la Mer,,05/04/2017,14.0000000,15.0000000,49.925471000000,1.058953000000,,Dieppe,21478,observation-6d09883e-a24d-41c3-9f40-648bb41aa65f-5,https://biolit.fr/observations/observation-6d09883e-a24d-41c3-9f40-648bb41aa65f-5/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20170504_144006-scaled.jpg,,TRUE, +N1,22332,sortie-6d09883e-a24d-41c3-9f40-648bb41aa65f,https://biolit.fr/sorties/sortie-6d09883e-a24d-41c3-9f40-648bb41aa65f/,ESTRAN Cité de la Mer,,05/04/2017,14.0000000,15.0000000,49.925471000000,1.058953000000,,Dieppe,21480,observation-6d09883e-a24d-41c3-9f40-648bb41aa65f-6,https://biolit.fr/observations/observation-6d09883e-a24d-41c3-9f40-648bb41aa65f-6/,,,,https://biolit.fr/wp-content/uploads/2023/05/20170504_144156-scaled.jpg,,FALSE, +N1,22332,sortie-6d09883e-a24d-41c3-9f40-648bb41aa65f,https://biolit.fr/sorties/sortie-6d09883e-a24d-41c3-9f40-648bb41aa65f/,ESTRAN Cité de la Mer,,05/04/2017,14.0000000,15.0000000,49.925471000000,1.058953000000,,Dieppe,21482,observation-6d09883e-a24d-41c3-9f40-648bb41aa65f-7,https://biolit.fr/observations/observation-6d09883e-a24d-41c3-9f40-648bb41aa65f-7/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20170504_144242-scaled.jpg,,TRUE, +N1,22333,sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80,https://biolit.fr/sorties/sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80/,RIEM,,4/27/2017 0:00,11.0000000,11.0:45,47.484479000000,-2.673622000000,,Plage de PENVINS 56240 SARZEAU,21484,observation-43bd5cff-2b95-4e64-b15d-951d417f7f80,https://biolit.fr/observations/observation-43bd5cff-2b95-4e64-b15d-951d417f7f80/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/P1020425.JPG,,TRUE, +N1,22333,sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80,https://biolit.fr/sorties/sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80/,RIEM,,4/27/2017 0:00,11.0000000,11.0:45,47.484479000000,-2.673622000000,,Plage de PENVINS 56240 SARZEAU,21486,observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-2,https://biolit.fr/observations/observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1020427.JPG,,FALSE, +N1,22333,sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80,https://biolit.fr/sorties/sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80/,RIEM,,4/27/2017 0:00,11.0000000,11.0:45,47.484479000000,-2.673622000000,,Plage de PENVINS 56240 SARZEAU,21488,observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-3,https://biolit.fr/observations/observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1020429.JPG,,FALSE, +N1,22333,sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80,https://biolit.fr/sorties/sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80/,RIEM,,4/27/2017 0:00,11.0000000,11.0:45,47.484479000000,-2.673622000000,,Plage de PENVINS 56240 SARZEAU,21490,observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-4,https://biolit.fr/observations/observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1020430.JPG,,FALSE, +N1,22333,sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80,https://biolit.fr/sorties/sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80/,RIEM,,4/27/2017 0:00,11.0000000,11.0:45,47.484479000000,-2.673622000000,,Plage de PENVINS 56240 SARZEAU,21492,observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-5,https://biolit.fr/observations/observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-5/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1020432.JPG,,FALSE, +N1,22333,sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80,https://biolit.fr/sorties/sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80/,RIEM,,4/27/2017 0:00,11.0000000,11.0:45,47.484479000000,-2.673622000000,,Plage de PENVINS 56240 SARZEAU,21494,observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-6,https://biolit.fr/observations/observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-6/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1020433.JPG,,FALSE, +N1,22333,sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80,https://biolit.fr/sorties/sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80/,RIEM,,4/27/2017 0:00,11.0000000,11.0:45,47.484479000000,-2.673622000000,,Plage de PENVINS 56240 SARZEAU,21496,observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-7,https://biolit.fr/observations/observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-7/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/P1020434.JPG,,TRUE, +N1,22333,sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80,https://biolit.fr/sorties/sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80/,RIEM,,4/27/2017 0:00,11.0000000,11.0:45,47.484479000000,-2.673622000000,,Plage de PENVINS 56240 SARZEAU,21498,observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-8,https://biolit.fr/observations/observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-8/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/P1020435.JPG,,TRUE, +N1,22333,sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80,https://biolit.fr/sorties/sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80/,RIEM,,4/27/2017 0:00,11.0000000,11.0:45,47.484479000000,-2.673622000000,,Plage de PENVINS 56240 SARZEAU,21500,observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-9,https://biolit.fr/observations/observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-9/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1020436.JPG,,FALSE, +N1,22333,sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80,https://biolit.fr/sorties/sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80/,RIEM,,4/27/2017 0:00,11.0000000,11.0:45,47.484479000000,-2.673622000000,,Plage de PENVINS 56240 SARZEAU,21502,observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-10,https://biolit.fr/observations/observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-10/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1020443.JPG,,FALSE, +N1,22334,sortie-745239f5-043e-4f84-b04e-27be585de301,https://biolit.fr/sorties/sortie-745239f5-043e-4f84-b04e-27be585de301/,RIEM,,3/28/2017 0:00,11.0:15,11.0000000,47.488943000000,-2.636864000000,,PLAGE DE PENVINS 56240 SARZEAU,21504,observation-745239f5-043e-4f84-b04e-27be585de301,https://biolit.fr/observations/observation-745239f5-043e-4f84-b04e-27be585de301/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1020342_0.JPG,,TRUE, +N1,22334,sortie-745239f5-043e-4f84-b04e-27be585de301,https://biolit.fr/sorties/sortie-745239f5-043e-4f84-b04e-27be585de301/,RIEM,,3/28/2017 0:00,11.0:15,11.0000000,47.488943000000,-2.636864000000,,PLAGE DE PENVINS 56240 SARZEAU,21506,observation-745239f5-043e-4f84-b04e-27be585de301-2,https://biolit.fr/observations/observation-745239f5-043e-4f84-b04e-27be585de301-2/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/05/P1020343.JPG,,TRUE, +N1,22335,sortie-4b72c588-be9f-427b-858d-2ae0db1a2a97,https://biolit.fr/sorties/sortie-4b72c588-be9f-427b-858d-2ae0db1a2a97/,tridimeg,,2/24/2017 0:00,10.0000000,11.0000000,47.350260000000,-2.519137000000,,Plage de la Bastille,21508,observation-4b72c588-be9f-427b-858d-2ae0db1a2a97,https://biolit.fr/observations/observation-4b72c588-be9f-427b-858d-2ae0db1a2a97/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_0233.jpg,,TRUE, +N1,22335,sortie-4b72c588-be9f-427b-858d-2ae0db1a2a97,https://biolit.fr/sorties/sortie-4b72c588-be9f-427b-858d-2ae0db1a2a97/,tridimeg,,2/24/2017 0:00,10.0000000,11.0000000,47.350260000000,-2.519137000000,,Plage de la Bastille,21510,observation-4b72c588-be9f-427b-858d-2ae0db1a2a97-2,https://biolit.fr/observations/observation-4b72c588-be9f-427b-858d-2ae0db1a2a97-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_0236.jpg,,TRUE, +N1,22335,sortie-4b72c588-be9f-427b-858d-2ae0db1a2a97,https://biolit.fr/sorties/sortie-4b72c588-be9f-427b-858d-2ae0db1a2a97/,tridimeg,,2/24/2017 0:00,10.0000000,11.0000000,47.350260000000,-2.519137000000,,Plage de la Bastille,21512,observation-4b72c588-be9f-427b-858d-2ae0db1a2a97-3,https://biolit.fr/observations/observation-4b72c588-be9f-427b-858d-2ae0db1a2a97-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_0238.jpg,,TRUE, +N1,22335,sortie-4b72c588-be9f-427b-858d-2ae0db1a2a97,https://biolit.fr/sorties/sortie-4b72c588-be9f-427b-858d-2ae0db1a2a97/,tridimeg,,2/24/2017 0:00,10.0000000,11.0000000,47.350260000000,-2.519137000000,,Plage de la Bastille,21514,observation-4b72c588-be9f-427b-858d-2ae0db1a2a97-4,https://biolit.fr/observations/observation-4b72c588-be9f-427b-858d-2ae0db1a2a97-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_0241.jpg,,TRUE, +N1,22336,sortie-6d081084-50cc-41a9-9e4f-81d2aaea8ea9,https://biolit.fr/sorties/sortie-6d081084-50cc-41a9-9e4f-81d2aaea8ea9/,PEP44 La Marjolaine,,2/24/2017 0:00,10.0000000,11.0000000,47.350338000000,-2.519048000000,,Plage de la Bastille,21516,observation-6d081084-50cc-41a9-9e4f-81d2aaea8ea9,https://biolit.fr/observations/observation-6d081084-50cc-41a9-9e4f-81d2aaea8ea9/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1160135-scaled.jpg,,TRUE, +N1,22336,sortie-6d081084-50cc-41a9-9e4f-81d2aaea8ea9,https://biolit.fr/sorties/sortie-6d081084-50cc-41a9-9e4f-81d2aaea8ea9/,PEP44 La Marjolaine,,2/24/2017 0:00,10.0000000,11.0000000,47.350338000000,-2.519048000000,,Plage de la Bastille,21518,observation-6d081084-50cc-41a9-9e4f-81d2aaea8ea9-2,https://biolit.fr/observations/observation-6d081084-50cc-41a9-9e4f-81d2aaea8ea9-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1160136-scaled.jpg,,FALSE, +N1,22336,sortie-6d081084-50cc-41a9-9e4f-81d2aaea8ea9,https://biolit.fr/sorties/sortie-6d081084-50cc-41a9-9e4f-81d2aaea8ea9/,PEP44 La Marjolaine,,2/24/2017 0:00,10.0000000,11.0000000,47.350338000000,-2.519048000000,,Plage de la Bastille,21520,observation-6d081084-50cc-41a9-9e4f-81d2aaea8ea9-3,https://biolit.fr/observations/observation-6d081084-50cc-41a9-9e4f-81d2aaea8ea9-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1160154-scaled.jpg,,FALSE, +N1,22337,sortie-26743db5-29ba-496f-bdf8-c133cdafad82,https://biolit.fr/sorties/sortie-26743db5-29ba-496f-bdf8-c133cdafad82/,Marine,,07/05/2016,9.0000000,11.0000000,50.829434000000,1.589846000000,,Plage du Noirda,21522,observation-26743db5-29ba-496f-bdf8-c133cdafad82,https://biolit.fr/observations/observation-26743db5-29ba-496f-bdf8-c133cdafad82/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1465_0.jpg,,FALSE, +N1,22337,sortie-26743db5-29ba-496f-bdf8-c133cdafad82,https://biolit.fr/sorties/sortie-26743db5-29ba-496f-bdf8-c133cdafad82/,Marine,,07/05/2016,9.0000000,11.0000000,50.829434000000,1.589846000000,,Plage du Noirda,21524,observation-26743db5-29ba-496f-bdf8-c133cdafad82-2,https://biolit.fr/observations/observation-26743db5-29ba-496f-bdf8-c133cdafad82-2/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1466.jpg,,TRUE, +N1,22337,sortie-26743db5-29ba-496f-bdf8-c133cdafad82,https://biolit.fr/sorties/sortie-26743db5-29ba-496f-bdf8-c133cdafad82/,Marine,,07/05/2016,9.0000000,11.0000000,50.829434000000,1.589846000000,,Plage du Noirda,21526,observation-26743db5-29ba-496f-bdf8-c133cdafad82-3,https://biolit.fr/observations/observation-26743db5-29ba-496f-bdf8-c133cdafad82-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_1467.JPG,,TRUE, +N1,22337,sortie-26743db5-29ba-496f-bdf8-c133cdafad82,https://biolit.fr/sorties/sortie-26743db5-29ba-496f-bdf8-c133cdafad82/,Marine,,07/05/2016,9.0000000,11.0000000,50.829434000000,1.589846000000,,Plage du Noirda,21528,observation-26743db5-29ba-496f-bdf8-c133cdafad82-4,https://biolit.fr/observations/observation-26743db5-29ba-496f-bdf8-c133cdafad82-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_1468.JPG,,TRUE, +N1,22338,sortie-47df0897-04dc-4f05-8667-28effce804a9,https://biolit.fr/sorties/sortie-47df0897-04dc-4f05-8667-28effce804a9/,Marine,,7/19/2016 0:00,9.0000000,11.0000000,50.829576000000,1.589782000000,,Plage du Noirda,21530,observation-47df0897-04dc-4f05-8667-28effce804a9,https://biolit.fr/observations/observation-47df0897-04dc-4f05-8667-28effce804a9/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1461.jpg,,FALSE, +N1,22338,sortie-47df0897-04dc-4f05-8667-28effce804a9,https://biolit.fr/sorties/sortie-47df0897-04dc-4f05-8667-28effce804a9/,Marine,,7/19/2016 0:00,9.0000000,11.0000000,50.829576000000,1.589782000000,,Plage du Noirda,21532,observation-47df0897-04dc-4f05-8667-28effce804a9-2,https://biolit.fr/observations/observation-47df0897-04dc-4f05-8667-28effce804a9-2/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_1462.jpg,,TRUE, +N1,22338,sortie-47df0897-04dc-4f05-8667-28effce804a9,https://biolit.fr/sorties/sortie-47df0897-04dc-4f05-8667-28effce804a9/,Marine,,7/19/2016 0:00,9.0000000,11.0000000,50.829576000000,1.589782000000,,Plage du Noirda,21534,observation-47df0897-04dc-4f05-8667-28effce804a9-3,https://biolit.fr/observations/observation-47df0897-04dc-4f05-8667-28effce804a9-3/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_1463.jpg,,TRUE, +N1,22338,sortie-47df0897-04dc-4f05-8667-28effce804a9,https://biolit.fr/sorties/sortie-47df0897-04dc-4f05-8667-28effce804a9/,Marine,,7/19/2016 0:00,9.0000000,11.0000000,50.829576000000,1.589782000000,,Plage du Noirda,21536,observation-47df0897-04dc-4f05-8667-28effce804a9-4,https://biolit.fr/observations/observation-47df0897-04dc-4f05-8667-28effce804a9-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1464.jpg,,FALSE, +N1,22339,sortie-3d0c77eb-3235-4605-8b3d-db5a9b575353,https://biolit.fr/sorties/sortie-3d0c77eb-3235-4605-8b3d-db5a9b575353/,Marine,,07/05/2016,9.0000000,11.0000000,50.829404000000,1.589868000000,,Plage du Noirda,21538,observation-3d0c77eb-3235-4605-8b3d-db5a9b575353,https://biolit.fr/observations/observation-3d0c77eb-3235-4605-8b3d-db5a9b575353/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1456.JPG,,FALSE, +N1,22339,sortie-3d0c77eb-3235-4605-8b3d-db5a9b575353,https://biolit.fr/sorties/sortie-3d0c77eb-3235-4605-8b3d-db5a9b575353/,Marine,,07/05/2016,9.0000000,11.0000000,50.829404000000,1.589868000000,,Plage du Noirda,21540,observation-3d0c77eb-3235-4605-8b3d-db5a9b575353-2,https://biolit.fr/observations/observation-3d0c77eb-3235-4605-8b3d-db5a9b575353-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1457.JPG,,FALSE, +N1,22339,sortie-3d0c77eb-3235-4605-8b3d-db5a9b575353,https://biolit.fr/sorties/sortie-3d0c77eb-3235-4605-8b3d-db5a9b575353/,Marine,,07/05/2016,9.0000000,11.0000000,50.829404000000,1.589868000000,,Plage du Noirda,21542,observation-3d0c77eb-3235-4605-8b3d-db5a9b575353-3,https://biolit.fr/observations/observation-3d0c77eb-3235-4605-8b3d-db5a9b575353-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1458.JPG,,FALSE, +N1,22339,sortie-3d0c77eb-3235-4605-8b3d-db5a9b575353,https://biolit.fr/sorties/sortie-3d0c77eb-3235-4605-8b3d-db5a9b575353/,Marine,,07/05/2016,9.0000000,11.0000000,50.829404000000,1.589868000000,,Plage du Noirda,21544,observation-3d0c77eb-3235-4605-8b3d-db5a9b575353-4,https://biolit.fr/observations/observation-3d0c77eb-3235-4605-8b3d-db5a9b575353-4/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1459.jpg,,TRUE, +N1,22339,sortie-3d0c77eb-3235-4605-8b3d-db5a9b575353,https://biolit.fr/sorties/sortie-3d0c77eb-3235-4605-8b3d-db5a9b575353/,Marine,,07/05/2016,9.0000000,11.0000000,50.829404000000,1.589868000000,,Plage du Noirda,21546,observation-3d0c77eb-3235-4605-8b3d-db5a9b575353-5,https://biolit.fr/observations/observation-3d0c77eb-3235-4605-8b3d-db5a9b575353-5/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1460.jpg,,TRUE, +N1,22340,sortie-20655a3b-e51d-488a-a33c-8a11da01a541,https://biolit.fr/sorties/sortie-20655a3b-e51d-488a-a33c-8a11da01a541/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829207000000,1.589431000000,,Audresselles,21548,observation-20655a3b-e51d-488a-a33c-8a11da01a541,https://biolit.fr/observations/observation-20655a3b-e51d-488a-a33c-8a11da01a541/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCF9833-scaled.jpg,,TRUE, +N1,22340,sortie-20655a3b-e51d-488a-a33c-8a11da01a541,https://biolit.fr/sorties/sortie-20655a3b-e51d-488a-a33c-8a11da01a541/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829207000000,1.589431000000,,Audresselles,21550,observation-20655a3b-e51d-488a-a33c-8a11da01a541-2,https://biolit.fr/observations/observation-20655a3b-e51d-488a-a33c-8a11da01a541-2/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1100134-scaled.jpg,,TRUE, +N1,22340,sortie-20655a3b-e51d-488a-a33c-8a11da01a541,https://biolit.fr/sorties/sortie-20655a3b-e51d-488a-a33c-8a11da01a541/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829207000000,1.589431000000,,Audresselles,21552,observation-20655a3b-e51d-488a-a33c-8a11da01a541-3,https://biolit.fr/observations/observation-20655a3b-e51d-488a-a33c-8a11da01a541-3/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCF9876-scaled.jpg,,TRUE, +N1,22340,sortie-20655a3b-e51d-488a-a33c-8a11da01a541,https://biolit.fr/sorties/sortie-20655a3b-e51d-488a-a33c-8a11da01a541/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829207000000,1.589431000000,,Audresselles,21554,observation-20655a3b-e51d-488a-a33c-8a11da01a541-4,https://biolit.fr/observations/observation-20655a3b-e51d-488a-a33c-8a11da01a541-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCF9809-scaled.jpg,,FALSE, +N1,22340,sortie-20655a3b-e51d-488a-a33c-8a11da01a541,https://biolit.fr/sorties/sortie-20655a3b-e51d-488a-a33c-8a11da01a541/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829207000000,1.589431000000,,Audresselles,21556,observation-20655a3b-e51d-488a-a33c-8a11da01a541-5,https://biolit.fr/observations/observation-20655a3b-e51d-488a-a33c-8a11da01a541-5/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCF9835-scaled.jpg,,TRUE, +N1,22340,sortie-20655a3b-e51d-488a-a33c-8a11da01a541,https://biolit.fr/sorties/sortie-20655a3b-e51d-488a-a33c-8a11da01a541/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829207000000,1.589431000000,,Audresselles,21558,observation-20655a3b-e51d-488a-a33c-8a11da01a541-6,https://biolit.fr/observations/observation-20655a3b-e51d-488a-a33c-8a11da01a541-6/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCF9839-scaled.jpg,,FALSE, +N1,22340,sortie-20655a3b-e51d-488a-a33c-8a11da01a541,https://biolit.fr/sorties/sortie-20655a3b-e51d-488a-a33c-8a11da01a541/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829207000000,1.589431000000,,Audresselles,21560,observation-20655a3b-e51d-488a-a33c-8a11da01a541-7,https://biolit.fr/observations/observation-20655a3b-e51d-488a-a33c-8a11da01a541-7/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1100092-scaled.jpg,,FALSE, +N1,22340,sortie-20655a3b-e51d-488a-a33c-8a11da01a541,https://biolit.fr/sorties/sortie-20655a3b-e51d-488a-a33c-8a11da01a541/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829207000000,1.589431000000,,Audresselles,21562,observation-20655a3b-e51d-488a-a33c-8a11da01a541-8,https://biolit.fr/observations/observation-20655a3b-e51d-488a-a33c-8a11da01a541-8/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1100094-scaled.jpg,,FALSE, +N1,22340,sortie-20655a3b-e51d-488a-a33c-8a11da01a541,https://biolit.fr/sorties/sortie-20655a3b-e51d-488a-a33c-8a11da01a541/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829207000000,1.589431000000,,Audresselles,21564,observation-20655a3b-e51d-488a-a33c-8a11da01a541-9,https://biolit.fr/observations/observation-20655a3b-e51d-488a-a33c-8a11da01a541-9/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1100133-scaled.jpg,,TRUE, +N1,22341,sortie-24ced503-6972-4a64-bdbf-67b1f78d5699,https://biolit.fr/sorties/sortie-24ced503-6972-4a64-bdbf-67b1f78d5699/,azelie,,4/15/2016 0:00,16.0000000,16.0:15,48.629224000000,-2.471313000000,,"Plage du centre, Erquy, Côtes-d'Armor",21566,observation-24ced503-6972-4a64-bdbf-67b1f78d5699,https://biolit.fr/observations/observation-24ced503-6972-4a64-bdbf-67b1f78d5699/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_2459.jpg,,TRUE, +N1,22341,sortie-24ced503-6972-4a64-bdbf-67b1f78d5699,https://biolit.fr/sorties/sortie-24ced503-6972-4a64-bdbf-67b1f78d5699/,azelie,,4/15/2016 0:00,16.0000000,16.0:15,48.629224000000,-2.471313000000,,"Plage du centre, Erquy, Côtes-d'Armor",21568,observation-24ced503-6972-4a64-bdbf-67b1f78d5699-2,https://biolit.fr/observations/observation-24ced503-6972-4a64-bdbf-67b1f78d5699-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_2457.jpg,,TRUE, +N1,22341,sortie-24ced503-6972-4a64-bdbf-67b1f78d5699,https://biolit.fr/sorties/sortie-24ced503-6972-4a64-bdbf-67b1f78d5699/,azelie,,4/15/2016 0:00,16.0000000,16.0:15,48.629224000000,-2.471313000000,,"Plage du centre, Erquy, Côtes-d'Armor",21570,observation-24ced503-6972-4a64-bdbf-67b1f78d5699-3,https://biolit.fr/observations/observation-24ced503-6972-4a64-bdbf-67b1f78d5699-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_2458.jpg,,TRUE, +N1,22341,sortie-24ced503-6972-4a64-bdbf-67b1f78d5699,https://biolit.fr/sorties/sortie-24ced503-6972-4a64-bdbf-67b1f78d5699/,azelie,,4/15/2016 0:00,16.0000000,16.0:15,48.629224000000,-2.471313000000,,"Plage du centre, Erquy, Côtes-d'Armor",21572,observation-24ced503-6972-4a64-bdbf-67b1f78d5699-4,https://biolit.fr/observations/observation-24ced503-6972-4a64-bdbf-67b1f78d5699-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_2455.jpg,,FALSE, +N1,22341,sortie-24ced503-6972-4a64-bdbf-67b1f78d5699,https://biolit.fr/sorties/sortie-24ced503-6972-4a64-bdbf-67b1f78d5699/,azelie,,4/15/2016 0:00,16.0000000,16.0:15,48.629224000000,-2.471313000000,,"Plage du centre, Erquy, Côtes-d'Armor",21574,observation-24ced503-6972-4a64-bdbf-67b1f78d5699-5,https://biolit.fr/observations/observation-24ced503-6972-4a64-bdbf-67b1f78d5699-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_2453.jpg,,TRUE, +N1,22341,sortie-24ced503-6972-4a64-bdbf-67b1f78d5699,https://biolit.fr/sorties/sortie-24ced503-6972-4a64-bdbf-67b1f78d5699/,azelie,,4/15/2016 0:00,16.0000000,16.0:15,48.629224000000,-2.471313000000,,"Plage du centre, Erquy, Côtes-d'Armor",21576,observation-24ced503-6972-4a64-bdbf-67b1f78d5699-6,https://biolit.fr/observations/observation-24ced503-6972-4a64-bdbf-67b1f78d5699-6/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_2452.jpg,,TRUE, +N1,22341,sortie-24ced503-6972-4a64-bdbf-67b1f78d5699,https://biolit.fr/sorties/sortie-24ced503-6972-4a64-bdbf-67b1f78d5699/,azelie,,4/15/2016 0:00,16.0000000,16.0:15,48.629224000000,-2.471313000000,,"Plage du centre, Erquy, Côtes-d'Armor",21578,observation-24ced503-6972-4a64-bdbf-67b1f78d5699-7,https://biolit.fr/observations/observation-24ced503-6972-4a64-bdbf-67b1f78d5699-7/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_2450.jpg,,TRUE, +N1,22341,sortie-24ced503-6972-4a64-bdbf-67b1f78d5699,https://biolit.fr/sorties/sortie-24ced503-6972-4a64-bdbf-67b1f78d5699/,azelie,,4/15/2016 0:00,16.0000000,16.0:15,48.629224000000,-2.471313000000,,"Plage du centre, Erquy, Côtes-d'Armor",21580,observation-24ced503-6972-4a64-bdbf-67b1f78d5699-8,https://biolit.fr/observations/observation-24ced503-6972-4a64-bdbf-67b1f78d5699-8/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_2449.jpg,,TRUE, +N1,22341,sortie-24ced503-6972-4a64-bdbf-67b1f78d5699,https://biolit.fr/sorties/sortie-24ced503-6972-4a64-bdbf-67b1f78d5699/,azelie,,4/15/2016 0:00,16.0000000,16.0:15,48.629224000000,-2.471313000000,,"Plage du centre, Erquy, Côtes-d'Armor",21582,observation-24ced503-6972-4a64-bdbf-67b1f78d5699-9,https://biolit.fr/observations/observation-24ced503-6972-4a64-bdbf-67b1f78d5699-9/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_2448-scaled.jpg,,TRUE, +N1,22341,sortie-24ced503-6972-4a64-bdbf-67b1f78d5699,https://biolit.fr/sorties/sortie-24ced503-6972-4a64-bdbf-67b1f78d5699/,azelie,,4/15/2016 0:00,16.0000000,16.0:15,48.629224000000,-2.471313000000,,"Plage du centre, Erquy, Côtes-d'Armor",21584,observation-24ced503-6972-4a64-bdbf-67b1f78d5699-10,https://biolit.fr/observations/observation-24ced503-6972-4a64-bdbf-67b1f78d5699-10/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/IMG_2460-scaled.jpg,,TRUE, +N1,22342,sortie-519b90d6-a067-4cff-a831-e058ad38947e,https://biolit.fr/sorties/sortie-519b90d6-a067-4cff-a831-e058ad38947e/,nicole bunel,,3/20/2016 0:00,12.0000000,13.0:15,48.641477000000,-2.070988000000,,Dinard - Plage de Saint Enogat,21586,observation-519b90d6-a067-4cff-a831-e058ad38947e,https://biolit.fr/observations/observation-519b90d6-a067-4cff-a831-e058ad38947e/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/05/Quadrat 2-ascophylle.jpg,,TRUE, +N1,22342,sortie-519b90d6-a067-4cff-a831-e058ad38947e,https://biolit.fr/sorties/sortie-519b90d6-a067-4cff-a831-e058ad38947e/,nicole bunel,,3/20/2016 0:00,12.0000000,13.0:15,48.641477000000,-2.070988000000,,Dinard - Plage de Saint Enogat,21588,observation-519b90d6-a067-4cff-a831-e058ad38947e-2,https://biolit.fr/observations/observation-519b90d6-a067-4cff-a831-e058ad38947e-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/littorines obtuses.jpg,,TRUE, +N1,22342,sortie-519b90d6-a067-4cff-a831-e058ad38947e,https://biolit.fr/sorties/sortie-519b90d6-a067-4cff-a831-e058ad38947e/,nicole bunel,,3/20/2016 0:00,12.0000000,13.0:15,48.641477000000,-2.070988000000,,Dinard - Plage de Saint Enogat,21590,observation-519b90d6-a067-4cff-a831-e058ad38947e-3,https://biolit.fr/observations/observation-519b90d6-a067-4cff-a831-e058ad38947e-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/pourpre.jpg,,TRUE, +N1,22342,sortie-519b90d6-a067-4cff-a831-e058ad38947e,https://biolit.fr/sorties/sortie-519b90d6-a067-4cff-a831-e058ad38947e/,nicole bunel,,3/20/2016 0:00,12.0000000,13.0:15,48.641477000000,-2.070988000000,,Dinard - Plage de Saint Enogat,21592,observation-519b90d6-a067-4cff-a831-e058ad38947e-4,https://biolit.fr/observations/observation-519b90d6-a067-4cff-a831-e058ad38947e-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/pourpre ouverture.jpg,,TRUE, +N1,22342,sortie-519b90d6-a067-4cff-a831-e058ad38947e,https://biolit.fr/sorties/sortie-519b90d6-a067-4cff-a831-e058ad38947e/,nicole bunel,,3/20/2016 0:00,12.0000000,13.0:15,48.641477000000,-2.070988000000,,Dinard - Plage de Saint Enogat,21594,observation-519b90d6-a067-4cff-a831-e058ad38947e-5,https://biolit.fr/observations/observation-519b90d6-a067-4cff-a831-e058ad38947e-5/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/patelles.jpg,,TRUE, +N1,22343,sortie-ad471d44-f5ea-4c62-b52a-53a1f7377c4e,https://biolit.fr/sorties/sortie-ad471d44-f5ea-4c62-b52a-53a1f7377c4e/,nicole bunel,,3/20/2016 0:00,12.0000000,13.0000000,48.641463000000,-2.0706390000,,Dinard - Plage de Saint Enogat,21598,observation-ad471d44-f5ea-4c62-b52a-53a1f7377c4e,https://biolit.fr/observations/observation-ad471d44-f5ea-4c62-b52a-53a1f7377c4e/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/IMGP6545_tn.jpg,,TRUE, +N1,22343,sortie-ad471d44-f5ea-4c62-b52a-53a1f7377c4e,https://biolit.fr/sorties/sortie-ad471d44-f5ea-4c62-b52a-53a1f7377c4e/,nicole bunel,,3/20/2016 0:00,12.0000000,13.0000000,48.641463000000,-2.0706390000,,Dinard - Plage de Saint Enogat,21600,observation-ad471d44-f5ea-4c62-b52a-53a1f7377c4e-2,https://biolit.fr/observations/observation-ad471d44-f5ea-4c62-b52a-53a1f7377c4e-2/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMGP6547_tn.jpg,,TRUE, +N1,22343,sortie-ad471d44-f5ea-4c62-b52a-53a1f7377c4e,https://biolit.fr/sorties/sortie-ad471d44-f5ea-4c62-b52a-53a1f7377c4e/,nicole bunel,,3/20/2016 0:00,12.0000000,13.0000000,48.641463000000,-2.0706390000,,Dinard - Plage de Saint Enogat,21602,observation-ad471d44-f5ea-4c62-b52a-53a1f7377c4e-3,https://biolit.fr/observations/observation-ad471d44-f5ea-4c62-b52a-53a1f7377c4e-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMGP6554_tn.jpg,,FALSE, +N1,22343,sortie-ad471d44-f5ea-4c62-b52a-53a1f7377c4e,https://biolit.fr/sorties/sortie-ad471d44-f5ea-4c62-b52a-53a1f7377c4e/,nicole bunel,,3/20/2016 0:00,12.0000000,13.0000000,48.641463000000,-2.0706390000,,Dinard - Plage de Saint Enogat,21604,observation-ad471d44-f5ea-4c62-b52a-53a1f7377c4e-4,https://biolit.fr/observations/observation-ad471d44-f5ea-4c62-b52a-53a1f7377c4e-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMGP6564_tn.jpg,,FALSE, +N1,22344,sortie-1df0d270-9321-454e-84c3-e18ad3049e95,https://biolit.fr/sorties/sortie-1df0d270-9321-454e-84c3-e18ad3049e95/,Alain Paitry,,04/09/2016,16.0:45,17.0000000,48.628596000000,-2.187077000000,,St Jacut de la mer,21606,observation-1df0d270-9321-454e-84c3-e18ad3049e95,https://biolit.fr/observations/observation-1df0d270-9321-454e-84c3-e18ad3049e95/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/IMGP3760-scaled.jpg,,TRUE, +N1,22344,sortie-1df0d270-9321-454e-84c3-e18ad3049e95,https://biolit.fr/sorties/sortie-1df0d270-9321-454e-84c3-e18ad3049e95/,Alain Paitry,,04/09/2016,16.0:45,17.0000000,48.628596000000,-2.187077000000,,St Jacut de la mer,21608,observation-1df0d270-9321-454e-84c3-e18ad3049e95-2,https://biolit.fr/observations/observation-1df0d270-9321-454e-84c3-e18ad3049e95-2/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMGP3765-scaled.jpg,,TRUE, +N1,22345,sortie-4bce129a-7405-4001-a4f6-5cf78b3e7fb5,https://biolit.fr/sorties/sortie-4bce129a-7405-4001-a4f6-5cf78b3e7fb5/,Alain Paitry,,04/09/2016,16.000005,16.0000000,48.617268000000,-2.204570000000,,St Jacut de la mer,21610,observation-4bce129a-7405-4001-a4f6-5cf78b3e7fb5,https://biolit.fr/observations/observation-4bce129a-7405-4001-a4f6-5cf78b3e7fb5/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/IMGP3733-scaled.jpg,,TRUE, +N1,22345,sortie-4bce129a-7405-4001-a4f6-5cf78b3e7fb5,https://biolit.fr/sorties/sortie-4bce129a-7405-4001-a4f6-5cf78b3e7fb5/,Alain Paitry,,04/09/2016,16.000005,16.0000000,48.617268000000,-2.204570000000,,St Jacut de la mer,21612,observation-4bce129a-7405-4001-a4f6-5cf78b3e7fb5-2,https://biolit.fr/observations/observation-4bce129a-7405-4001-a4f6-5cf78b3e7fb5-2/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/IMGP3736-scaled.jpg,,TRUE, +N1,22346,sortie-ed91dc86-78ea-43aa-912c-5245e262f2f3,https://biolit.fr/sorties/sortie-ed91dc86-78ea-43aa-912c-5245e262f2f3/,Alain Paitry,,04/09/2016,15.0:45,15.0:55,48.621697000000,-2.207402000000,,St Jacut de la mer,21614,observation-ed91dc86-78ea-43aa-912c-5245e262f2f3,https://biolit.fr/observations/observation-ed91dc86-78ea-43aa-912c-5245e262f2f3/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/IMGP3745-scaled.jpg,,TRUE, +N1,22346,sortie-ed91dc86-78ea-43aa-912c-5245e262f2f3,https://biolit.fr/sorties/sortie-ed91dc86-78ea-43aa-912c-5245e262f2f3/,Alain Paitry,,04/09/2016,15.0:45,15.0:55,48.621697000000,-2.207402000000,,St Jacut de la mer,21616,observation-ed91dc86-78ea-43aa-912c-5245e262f2f3-2,https://biolit.fr/observations/observation-ed91dc86-78ea-43aa-912c-5245e262f2f3-2/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/IMGP3747-scaled.jpg,,TRUE, +N1,22347,sortie-27f08ddd-65c0-4201-98f2-b307f1df60cb,https://biolit.fr/sorties/sortie-27f08ddd-65c0-4201-98f2-b307f1df60cb/,mikme,,3/20/2016 0:00,11.0000000,13.0000000,48.640508000000,-2.07230200000,,plage Saint Enogat,21618,observation-27f08ddd-65c0-4201-98f2-b307f1df60cb,https://biolit.fr/observations/observation-27f08ddd-65c0-4201-98f2-b307f1df60cb/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1060510-scaled.jpg,,TRUE, +N1,22348,sortie-e1b357fa-2e4d-4e7a-83ca-883ff1c8a3b0,https://biolit.fr/sorties/sortie-e1b357fa-2e4d-4e7a-83ca-883ff1c8a3b0/,Bistif74,,2/19/2016 0:00,11.0000000,12.0000000,48.639489000000,-2.055791000000,,Dinard,21620,observation-e1b357fa-2e4d-4e7a-83ca-883ff1c8a3b0,https://biolit.fr/observations/observation-e1b357fa-2e4d-4e7a-83ca-883ff1c8a3b0/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_0021-scaled.jpg,,FALSE, +N1,22349,sortie-07764e8e-8065-4524-a0f7-778e8e98a95c,https://biolit.fr/sorties/sortie-07764e8e-8065-4524-a0f7-778e8e98a95c/,Bistif74,,2/19/2016 0:00,11.0000000,12.0000000,48.640742000000,-2.07317100000,,Dinard ,21622,observation-07764e8e-8065-4524-a0f7-778e8e98a95c,https://biolit.fr/observations/observation-07764e8e-8065-4524-a0f7-778e8e98a95c/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/05/IMG_0012-scaled.jpg,,TRUE, +N1,22350,sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb,https://biolit.fr/sorties/sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb/,Alicia,,9/21/2015 0:00,16.0000000,17.0000000,47.642485000000,-3.429865000000,,Port Mélite ,21624,observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb,https://biolit.fr/observations/observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb/,Littorina compressa,Littorine à lignes noires,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1110882-scaled.jpg,,TRUE, +N1,22350,sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb,https://biolit.fr/sorties/sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb/,Alicia,,9/21/2015 0:00,16.0000000,17.0000000,47.642485000000,-3.429865000000,,Port Mélite ,21626,observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-2,https://biolit.fr/observations/observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-2/,Littorina compressa,Littorine à lignes noires,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1110874-scaled.jpg,,TRUE, +N1,22350,sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb,https://biolit.fr/sorties/sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb/,Alicia,,9/21/2015 0:00,16.0000000,17.0000000,47.642485000000,-3.429865000000,,Port Mélite ,21628,observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-3,https://biolit.fr/observations/observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1110871-scaled.jpg,,TRUE, +N1,22350,sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb,https://biolit.fr/sorties/sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb/,Alicia,,9/21/2015 0:00,16.0000000,17.0000000,47.642485000000,-3.429865000000,,Port Mélite ,21630,observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-4,https://biolit.fr/observations/observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-4/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1110870-scaled.jpg,,TRUE, +N1,22350,sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb,https://biolit.fr/sorties/sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb/,Alicia,,9/21/2015 0:00,16.0000000,17.0000000,47.642485000000,-3.429865000000,,Port Mélite ,21632,observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-5,https://biolit.fr/observations/observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1110869-scaled.jpg,,TRUE, +N1,22350,sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb,https://biolit.fr/sorties/sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb/,Alicia,,9/21/2015 0:00,16.0000000,17.0000000,47.642485000000,-3.429865000000,,Port Mélite ,21634,observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-6,https://biolit.fr/observations/observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-6/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1110861-scaled.jpg,,TRUE, +N1,22350,sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb,https://biolit.fr/sorties/sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb/,Alicia,,9/21/2015 0:00,16.0000000,17.0000000,47.642485000000,-3.429865000000,,Port Mélite ,21636,observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-7,https://biolit.fr/observations/observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-7/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1110860-scaled.jpg,,FALSE, +N1,22350,sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb,https://biolit.fr/sorties/sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb/,Alicia,,9/21/2015 0:00,16.0000000,17.0000000,47.642485000000,-3.429865000000,,Port Mélite ,21638,observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-8,https://biolit.fr/observations/observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-8/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1110858-scaled.jpg,,TRUE, +N1,22350,sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb,https://biolit.fr/sorties/sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb/,Alicia,,9/21/2015 0:00,16.0000000,17.0000000,47.642485000000,-3.429865000000,,Port Mélite ,21640,observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-9,https://biolit.fr/observations/observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-9/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1110857-scaled.jpg,,FALSE, +N1,22350,sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb,https://biolit.fr/sorties/sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb/,Alicia,,9/21/2015 0:00,16.0000000,17.0000000,47.642485000000,-3.429865000000,,Port Mélite ,21642,observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-10,https://biolit.fr/observations/observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-10/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1110854-scaled.jpg,,TRUE, +N1,22350,sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb,https://biolit.fr/sorties/sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb/,Alicia,,9/21/2015 0:00,16.0000000,17.0000000,47.642485000000,-3.429865000000,,Port Mélite ,21644,observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-11,https://biolit.fr/observations/observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-11/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1110853-scaled.jpg,,FALSE, +N1,22350,sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb,https://biolit.fr/sorties/sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb/,Alicia,,9/21/2015 0:00,16.0000000,17.0000000,47.642485000000,-3.429865000000,,Port Mélite ,21646,observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-12,https://biolit.fr/observations/observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-12/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1110852-scaled.jpg,,FALSE, +N1,22350,sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb,https://biolit.fr/sorties/sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb/,Alicia,,9/21/2015 0:00,16.0000000,17.0000000,47.642485000000,-3.429865000000,,Port Mélite ,21648,observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-13,https://biolit.fr/observations/observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-13/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1110850-scaled.jpg,,FALSE, +N1,22350,sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb,https://biolit.fr/sorties/sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb/,Alicia,,9/21/2015 0:00,16.0000000,17.0000000,47.642485000000,-3.429865000000,,Port Mélite ,21650,observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-14,https://biolit.fr/observations/observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-14/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1110848-scaled.jpg,,TRUE, +N1,22351,sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6,https://biolit.fr/sorties/sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6/,Alicia,,9/17/2015 0:00,12.0000000,14.0000000,47.625326000000,-3.436385000000,,Locmaria,21652,observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6,https://biolit.fr/observations/observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1110705-scaled.jpg,,TRUE, +N1,22351,sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6,https://biolit.fr/sorties/sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6/,Alicia,,9/17/2015 0:00,12.0000000,14.0000000,47.625326000000,-3.436385000000,,Locmaria,21654,observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6-2,https://biolit.fr/observations/observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1110707-scaled.jpg,,TRUE, +N1,22351,sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6,https://biolit.fr/sorties/sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6/,Alicia,,9/17/2015 0:00,12.0000000,14.0000000,47.625326000000,-3.436385000000,,Locmaria,21656,observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6-3,https://biolit.fr/observations/observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1110766-scaled.jpg,,FALSE, +N1,22351,sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6,https://biolit.fr/sorties/sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6/,Alicia,,9/17/2015 0:00,12.0000000,14.0000000,47.625326000000,-3.436385000000,,Locmaria,21658,observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6-4,https://biolit.fr/observations/observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1110767-scaled.jpg,,FALSE, +N1,22351,sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6,https://biolit.fr/sorties/sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6/,Alicia,,9/17/2015 0:00,12.0000000,14.0000000,47.625326000000,-3.436385000000,,Locmaria,21660,observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6-5,https://biolit.fr/observations/observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6-5/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1110780-scaled.jpg,,FALSE, +N1,22351,sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6,https://biolit.fr/sorties/sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6/,Alicia,,9/17/2015 0:00,12.0000000,14.0000000,47.625326000000,-3.436385000000,,Locmaria,21662,observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6-6,https://biolit.fr/observations/observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6-6/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1110783-scaled.jpg,,FALSE, +N1,22351,sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6,https://biolit.fr/sorties/sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6/,Alicia,,9/17/2015 0:00,12.0000000,14.0000000,47.625326000000,-3.436385000000,,Locmaria,21664,observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6-7,https://biolit.fr/observations/observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6-7/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1110793-scaled.jpg,,TRUE, +N1,22351,sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6,https://biolit.fr/sorties/sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6/,Alicia,,9/17/2015 0:00,12.0000000,14.0000000,47.625326000000,-3.436385000000,,Locmaria,21666,observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6-8,https://biolit.fr/observations/observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6-8/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1110794-scaled.jpg,,FALSE, +N1,22351,sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6,https://biolit.fr/sorties/sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6/,Alicia,,9/17/2015 0:00,12.0000000,14.0000000,47.625326000000,-3.436385000000,,Locmaria,21668,observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6-9,https://biolit.fr/observations/observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6-9/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1110811-scaled.jpg,,FALSE, +N1,22352,sortie-15ae4740-1d80-4e67-bd7d-adf40692ccf5,https://biolit.fr/sorties/sortie-15ae4740-1d80-4e67-bd7d-adf40692ccf5/,JF P,,08/04/2015,9.0000000,11.0000000,48.637197000000,-2.070725000000,,35800 St Enogat,21670,observation-15ae4740-1d80-4e67-bd7d-adf40692ccf5,https://biolit.fr/observations/observation-15ae4740-1d80-4e67-bd7d-adf40692ccf5/,,,,https://biolit.fr/wp-content/uploads/2023/05/WP_20150801_006-scaled.jpg,,FALSE, +N1,22353,sortie-d80136ed-182d-4448-b754-c17b483fff37,https://biolit.fr/sorties/sortie-d80136ed-182d-4448-b754-c17b483fff37/,ESTRAN Cité de la Mer,,6/15/2015 0:00,12.0000000,14.0000000,49.895570000000,0.876770000000,,Saint Aubin sur Mer,21672,observation-d80136ed-182d-4448-b754-c17b483fff37,https://biolit.fr/observations/observation-d80136ed-182d-4448-b754-c17b483fff37/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1020858-scaled.jpg,,TRUE, +N1,22354,sortie-a560660b-ed04-4c42-aa54-f008dbfe38b2,https://biolit.fr/sorties/sortie-a560660b-ed04-4c42-aa54-f008dbfe38b2/,ESTRAN Cité de la Mer,,5/23/2015 0:00,11.0000000,12.0000000,49.925898000000,1.065056000000,,bas fort blanc,21674,observation-a560660b-ed04-4c42-aa54-f008dbfe38b2,https://biolit.fr/observations/observation-a560660b-ed04-4c42-aa54-f008dbfe38b2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN0991.JPG,,TRUE, +N1,22354,sortie-a560660b-ed04-4c42-aa54-f008dbfe38b2,https://biolit.fr/sorties/sortie-a560660b-ed04-4c42-aa54-f008dbfe38b2/,ESTRAN Cité de la Mer,,5/23/2015 0:00,11.0000000,12.0000000,49.925898000000,1.065056000000,,bas fort blanc,21676,observation-a560660b-ed04-4c42-aa54-f008dbfe38b2-2,https://biolit.fr/observations/observation-a560660b-ed04-4c42-aa54-f008dbfe38b2-2/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN0992.JPG,,TRUE, +N1,22354,sortie-a560660b-ed04-4c42-aa54-f008dbfe38b2,https://biolit.fr/sorties/sortie-a560660b-ed04-4c42-aa54-f008dbfe38b2/,ESTRAN Cité de la Mer,,5/23/2015 0:00,11.0000000,12.0000000,49.925898000000,1.065056000000,,bas fort blanc,21678,observation-a560660b-ed04-4c42-aa54-f008dbfe38b2-3,https://biolit.fr/observations/observation-a560660b-ed04-4c42-aa54-f008dbfe38b2-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN0994.JPG,,FALSE, +N1,22354,sortie-a560660b-ed04-4c42-aa54-f008dbfe38b2,https://biolit.fr/sorties/sortie-a560660b-ed04-4c42-aa54-f008dbfe38b2/,ESTRAN Cité de la Mer,,5/23/2015 0:00,11.0000000,12.0000000,49.925898000000,1.065056000000,,bas fort blanc,21680,observation-a560660b-ed04-4c42-aa54-f008dbfe38b2-4,https://biolit.fr/observations/observation-a560660b-ed04-4c42-aa54-f008dbfe38b2-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN0995.JPG,,TRUE, +N1,22355,sortie-f8a7ce2e-4823-4a02-bfbe-204a2ecd34d0,https://biolit.fr/sorties/sortie-f8a7ce2e-4823-4a02-bfbe-204a2ecd34d0/,Emmanuelle,,5/24/2015 0:00,16.0000000,23.0000000,47.85362900000,-3.978055000000,,BEG MEIL Finistère,21682,observation-f8a7ce2e-4823-4a02-bfbe-204a2ecd34d0,https://biolit.fr/observations/observation-f8a7ce2e-4823-4a02-bfbe-204a2ecd34d0/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/SAM_0363_3-scaled.jpg,,TRUE, +N1,22356,sortie-e2835a4e-fc74-40bf-b5c0-54cbfa664425,https://biolit.fr/sorties/sortie-e2835a4e-fc74-40bf-b5c0-54cbfa664425/,Emmanuelle,,5/24/2015 0:00,18.0000000,20.0000000,47.854695000000,-3.975437000000,,BEG MEIL Finistère,21684,observation-e2835a4e-fc74-40bf-b5c0-54cbfa664425,https://biolit.fr/observations/observation-e2835a4e-fc74-40bf-b5c0-54cbfa664425/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/05/SAM_0361-scaled.jpg,,TRUE, +N1,22356,sortie-e2835a4e-fc74-40bf-b5c0-54cbfa664425,https://biolit.fr/sorties/sortie-e2835a4e-fc74-40bf-b5c0-54cbfa664425/,Emmanuelle,,5/24/2015 0:00,18.0000000,20.0000000,47.854695000000,-3.975437000000,,BEG MEIL Finistère,21686,observation-e2835a4e-fc74-40bf-b5c0-54cbfa664425-2,https://biolit.fr/observations/observation-e2835a4e-fc74-40bf-b5c0-54cbfa664425-2/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/05/SAM_0363_2-scaled.jpg,,TRUE, +N1,22357,sortie-adcf155d-f277-4f59-be36-5e6374c089d8,https://biolit.fr/sorties/sortie-adcf155d-f277-4f59-be36-5e6374c089d8/,Parc de l'Estuaire,,4/25/2015 0:00,14.0000000,15.0000000,45.581975000000,-0.989988000000,,"Saint-Georges-de-Didonne, concheau de Suzac",21688,observation-adcf155d-f277-4f59-be36-5e6374c089d8,https://biolit.fr/observations/observation-adcf155d-f277-4f59-be36-5e6374c089d8/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/BigorneauRED.jpg,,TRUE, +N1,22357,sortie-adcf155d-f277-4f59-be36-5e6374c089d8,https://biolit.fr/sorties/sortie-adcf155d-f277-4f59-be36-5e6374c089d8/,Parc de l'Estuaire,,4/25/2015 0:00,14.0000000,15.0000000,45.581975000000,-0.989988000000,,"Saint-Georges-de-Didonne, concheau de Suzac",21690,observation-adcf155d-f277-4f59-be36-5e6374c089d8-2,https://biolit.fr/observations/observation-adcf155d-f277-4f59-be36-5e6374c089d8-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/Idotée granuleuse concheau Suzac 25.04.15RED.jpg,,FALSE, +N1,22357,sortie-adcf155d-f277-4f59-be36-5e6374c089d8,https://biolit.fr/sorties/sortie-adcf155d-f277-4f59-be36-5e6374c089d8/,Parc de l'Estuaire,,4/25/2015 0:00,14.0000000,15.0000000,45.581975000000,-0.989988000000,,"Saint-Georges-de-Didonne, concheau de Suzac",21692,observation-adcf155d-f277-4f59-be36-5e6374c089d8-3,https://biolit.fr/observations/observation-adcf155d-f277-4f59-be36-5e6374c089d8-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/littorinefabalisfucusdenté1RED.JPG,,TRUE, +N1,22357,sortie-adcf155d-f277-4f59-be36-5e6374c089d8,https://biolit.fr/sorties/sortie-adcf155d-f277-4f59-be36-5e6374c089d8/,Parc de l'Estuaire,,4/25/2015 0:00,14.0000000,15.0000000,45.581975000000,-0.989988000000,,"Saint-Georges-de-Didonne, concheau de Suzac",21694,observation-adcf155d-f277-4f59-be36-5e6374c089d8-4,https://biolit.fr/observations/observation-adcf155d-f277-4f59-be36-5e6374c089d8-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Bigorneaufucusdenté2red.jpg,,TRUE, +N1,22357,sortie-adcf155d-f277-4f59-be36-5e6374c089d8,https://biolit.fr/sorties/sortie-adcf155d-f277-4f59-be36-5e6374c089d8/,Parc de l'Estuaire,,4/25/2015 0:00,14.0000000,15.0000000,45.581975000000,-0.989988000000,,"Saint-Georges-de-Didonne, concheau de Suzac",21696,observation-adcf155d-f277-4f59-be36-5e6374c089d8-5,https://biolit.fr/observations/observation-adcf155d-f277-4f59-be36-5e6374c089d8-5/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Littorine fabalisredsurfucusdente.jpg,,TRUE, +N1,22357,sortie-adcf155d-f277-4f59-be36-5e6374c089d8,https://biolit.fr/sorties/sortie-adcf155d-f277-4f59-be36-5e6374c089d8/,Parc de l'Estuaire,,4/25/2015 0:00,14.0000000,15.0000000,45.581975000000,-0.989988000000,,"Saint-Georges-de-Didonne, concheau de Suzac",21698,observation-adcf155d-f277-4f59-be36-5e6374c089d8-6,https://biolit.fr/observations/observation-adcf155d-f277-4f59-be36-5e6374c089d8-6/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Littorinefabalisfucusdente2Red.jpg,,TRUE, +N1,22357,sortie-adcf155d-f277-4f59-be36-5e6374c089d8,https://biolit.fr/sorties/sortie-adcf155d-f277-4f59-be36-5e6374c089d8/,Parc de l'Estuaire,,4/25/2015 0:00,14.0000000,15.0000000,45.581975000000,-0.989988000000,,"Saint-Georges-de-Didonne, concheau de Suzac",21700,observation-adcf155d-f277-4f59-be36-5e6374c089d8-7,https://biolit.fr/observations/observation-adcf155d-f277-4f59-be36-5e6374c089d8-7/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/littorinefabalisfucusdente3red.jpg,,TRUE, +N1,22357,sortie-adcf155d-f277-4f59-be36-5e6374c089d8,https://biolit.fr/sorties/sortie-adcf155d-f277-4f59-be36-5e6374c089d8/,Parc de l'Estuaire,,4/25/2015 0:00,14.0000000,15.0000000,45.581975000000,-0.989988000000,,"Saint-Georges-de-Didonne, concheau de Suzac",21702,observation-adcf155d-f277-4f59-be36-5e6374c089d8-8,https://biolit.fr/observations/observation-adcf155d-f277-4f59-be36-5e6374c089d8-8/,,,,https://biolit.fr/wp-content/uploads/2023/05/versnereis à verifierred.jpg,,FALSE, +N1,22358,sortie-1e1d353b-19fe-477e-9006-6cca2808ab13,https://biolit.fr/sorties/sortie-1e1d353b-19fe-477e-9006-6cca2808ab13/,Phil,,4/23/2015 0:00,10.0000000,10.0000000,47.829441000000,-4.363237000000,,Pointe au bout Rue des Flots Penmarc'h 29,21704,observation-1e1d353b-19fe-477e-9006-6cca2808ab13,https://biolit.fr/observations/observation-1e1d353b-19fe-477e-9006-6cca2808ab13/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC03567.JPG,,TRUE, +N1,22359,sortie-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9,https://biolit.fr/sorties/sortie-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9/,figuier,,04/11/2015,8.0000000,9.0000000,50.416783000000,1.562107000000,,Berck sur mer 62,21706,observation-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9,https://biolit.fr/observations/observation-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9/,,,,https://biolit.fr/wp-content/uploads/2023/05/image.jpg,,FALSE, +N1,22359,sortie-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9,https://biolit.fr/sorties/sortie-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9/,figuier,,04/11/2015,8.0000000,9.0000000,50.416783000000,1.562107000000,,Berck sur mer 62,21708,observation-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9-2,https://biolit.fr/observations/observation-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/image_0.jpg,,TRUE, +N1,22359,sortie-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9,https://biolit.fr/sorties/sortie-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9/,figuier,,04/11/2015,8.0000000,9.0000000,50.416783000000,1.562107000000,,Berck sur mer 62,21710,observation-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9-3,https://biolit.fr/observations/observation-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/image_1.jpg,,FALSE, +N1,22359,sortie-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9,https://biolit.fr/sorties/sortie-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9/,figuier,,04/11/2015,8.0000000,9.0000000,50.416783000000,1.562107000000,,Berck sur mer 62,21712,observation-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9-4,https://biolit.fr/observations/observation-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/image_2.jpg,,FALSE, +N1,22359,sortie-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9,https://biolit.fr/sorties/sortie-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9/,figuier,,04/11/2015,8.0000000,9.0000000,50.416783000000,1.562107000000,,Berck sur mer 62,21714,observation-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9-5,https://biolit.fr/observations/observation-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9-5/,,,,https://biolit.fr/wp-content/uploads/2023/05/image_3.jpg,,FALSE, +N1,22359,sortie-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9,https://biolit.fr/sorties/sortie-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9/,figuier,,04/11/2015,8.0000000,9.0000000,50.416783000000,1.562107000000,,Berck sur mer 62,21716,observation-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9-6,https://biolit.fr/observations/observation-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9-6/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/image_4.jpg,,TRUE, +N1,22359,sortie-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9,https://biolit.fr/sorties/sortie-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9/,figuier,,04/11/2015,8.0000000,9.0000000,50.416783000000,1.562107000000,,Berck sur mer 62,21718,observation-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9-7,https://biolit.fr/observations/observation-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9-7/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/image_5.jpg,,TRUE, +N1,22360,sortie-e76e755a-1f8d-4349-80da-e3900e0953fd,https://biolit.fr/sorties/sortie-e76e755a-1f8d-4349-80da-e3900e0953fd/,Anne D,,04/04/2015,11.0000000,12.0000000,50.83198900000,1.588752000000,,Audresselles,21720,observation-e76e755a-1f8d-4349-80da-e3900e0953fd,https://biolit.fr/observations/observation-e76e755a-1f8d-4349-80da-e3900e0953fd/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN9081-scaled.jpg,,FALSE, +N1,22361,sortie-108a7af0-8892-4826-8b24-268377644634,https://biolit.fr/sorties/sortie-108a7af0-8892-4826-8b24-268377644634/,ESTRAN Cité de la Mer,,3/30/2015 0:00,14.0000000,15.0000000,49.916484000000,1.023696000000,,plage pourville ouest,21722,observation-108a7af0-8892-4826-8b24-268377644634,https://biolit.fr/observations/observation-108a7af0-8892-4826-8b24-268377644634/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN0814.JPG,,TRUE, +N1,22361,sortie-108a7af0-8892-4826-8b24-268377644634,https://biolit.fr/sorties/sortie-108a7af0-8892-4826-8b24-268377644634/,ESTRAN Cité de la Mer,,3/30/2015 0:00,14.0000000,15.0000000,49.916484000000,1.023696000000,,plage pourville ouest,21724,observation-108a7af0-8892-4826-8b24-268377644634-2,https://biolit.fr/observations/observation-108a7af0-8892-4826-8b24-268377644634-2/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN0815.JPG,,TRUE, +N1,22361,sortie-108a7af0-8892-4826-8b24-268377644634,https://biolit.fr/sorties/sortie-108a7af0-8892-4826-8b24-268377644634/,ESTRAN Cité de la Mer,,3/30/2015 0:00,14.0000000,15.0000000,49.916484000000,1.023696000000,,plage pourville ouest,21726,observation-108a7af0-8892-4826-8b24-268377644634-3,https://biolit.fr/observations/observation-108a7af0-8892-4826-8b24-268377644634-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN0816.JPG,,TRUE, +N1,22362,sortie-74fc7747-452e-41e5-9421-2c64f17344b0,https://biolit.fr/sorties/sortie-74fc7747-452e-41e5-9421-2c64f17344b0/,Morice,,3/27/2015 0:00,10.0000000,12.0000000,50.828546000000,1.589632000000,,Audresselles,21728,observation-74fc7747-452e-41e5-9421-2c64f17344b0,https://biolit.fr/observations/observation-74fc7747-452e-41e5-9421-2c64f17344b0/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1080878-scaled.jpg,,FALSE, +N1,22363,sortie-f70a8ef4-a066-43fe-8e9f-db113f8ca058,https://biolit.fr/sorties/sortie-f70a8ef4-a066-43fe-8e9f-db113f8ca058/,Parc de l'Estuaire,,3/22/2015 0:00,13.0000000,14.0000000,45.604009000000,-1.013506000000,,"Saint-Georges-de-Didonne,Pointe de Vallières",21730,observation-f70a8ef4-a066-43fe-8e9f-db113f8ca058,https://biolit.fr/observations/observation-f70a8ef4-a066-43fe-8e9f-db113f8ca058/,,,,https://biolit.fr/wp-content/uploads/2023/05/Patella vulgata Fucus denté.JPG,,FALSE, +N1,22364,sortie-269e3f24-298b-44da-9aca-23e89f28f1d5,https://biolit.fr/sorties/sortie-269e3f24-298b-44da-9aca-23e89f28f1d5/,Parc de l'Estuaire,,3/22/2015 0:00,13.0000000,14.0000000,45.604039000000,-1.013452000000,,"Saint-Georges-de-Didonne,Pointe de Vallières",21732,observation-269e3f24-298b-44da-9aca-23e89f28f1d5,https://biolit.fr/observations/observation-269e3f24-298b-44da-9aca-23e89f28f1d5/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Littorine fabalis dessous.JPG,,TRUE, +N1,22365,sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f,https://biolit.fr/sorties/sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f/,Anne D,,3/22/2015 0:00,8.0000000,11.0000000,50.871952000000,1.588344000000,,Audinghen Plage de la Sirène,21734,observation-b440c653-c967-42fe-bf95-7f8b8d55b15f,https://biolit.fr/observations/observation-b440c653-c967-42fe-bf95-7f8b8d55b15f/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN8912-scaled.jpg,,FALSE, +N1,22365,sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f,https://biolit.fr/sorties/sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f/,Anne D,,3/22/2015 0:00,8.0000000,11.0000000,50.871952000000,1.588344000000,,Audinghen Plage de la Sirène,21736,observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-2,https://biolit.fr/observations/observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN8917-scaled.jpg,,FALSE, +N1,22365,sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f,https://biolit.fr/sorties/sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f/,Anne D,,3/22/2015 0:00,8.0000000,11.0000000,50.871952000000,1.588344000000,,Audinghen Plage de la Sirène,21738,observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-3,https://biolit.fr/observations/observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN8932-scaled.jpg,,FALSE, +N1,22365,sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f,https://biolit.fr/sorties/sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f/,Anne D,,3/22/2015 0:00,8.0000000,11.0000000,50.871952000000,1.588344000000,,Audinghen Plage de la Sirène,21740,observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-4,https://biolit.fr/observations/observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN8943-scaled.jpg,,FALSE, +N1,22365,sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f,https://biolit.fr/sorties/sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f/,Anne D,,3/22/2015 0:00,8.0000000,11.0000000,50.871952000000,1.588344000000,,Audinghen Plage de la Sirène,21742,observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-5,https://biolit.fr/observations/observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-5/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/05/DSCN8945-scaled.jpg,,TRUE, +N1,22365,sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f,https://biolit.fr/sorties/sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f/,Anne D,,3/22/2015 0:00,8.0000000,11.0000000,50.871952000000,1.588344000000,,Audinghen Plage de la Sirène,21744,observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-6,https://biolit.fr/observations/observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-6/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/05/DSCN8957-scaled.jpg,,TRUE, +N1,22365,sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f,https://biolit.fr/sorties/sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f/,Anne D,,3/22/2015 0:00,8.0000000,11.0000000,50.871952000000,1.588344000000,,Audinghen Plage de la Sirène,21746,observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-7,https://biolit.fr/observations/observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-7/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN8949-scaled.jpg,,FALSE, +N1,22365,sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f,https://biolit.fr/sorties/sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f/,Anne D,,3/22/2015 0:00,8.0000000,11.0000000,50.871952000000,1.588344000000,,Audinghen Plage de la Sirène,21748,observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-8,https://biolit.fr/observations/observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-8/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN8955-scaled.jpg,,FALSE, +N1,22365,sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f,https://biolit.fr/sorties/sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f/,Anne D,,3/22/2015 0:00,8.0000000,11.0000000,50.871952000000,1.588344000000,,Audinghen Plage de la Sirène,21750,observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-9,https://biolit.fr/observations/observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-9/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN8990-scaled.jpg,,FALSE, +N1,22365,sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f,https://biolit.fr/sorties/sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f/,Anne D,,3/22/2015 0:00,8.0000000,11.0000000,50.871952000000,1.588344000000,,Audinghen Plage de la Sirène,21752,observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-10,https://biolit.fr/observations/observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-10/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN8930-scaled.jpg,,TRUE, +N1,22365,sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f,https://biolit.fr/sorties/sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f/,Anne D,,3/22/2015 0:00,8.0000000,11.0000000,50.871952000000,1.588344000000,,Audinghen Plage de la Sirène,21754,observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-11,https://biolit.fr/observations/observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-11/,Chondrus crispus,Goémon frisé,,https://biolit.fr/wp-content/uploads/2023/05/DSCN8937-scaled.jpg,,TRUE, +N1,22365,sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f,https://biolit.fr/sorties/sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f/,Anne D,,3/22/2015 0:00,8.0000000,11.0000000,50.871952000000,1.588344000000,,Audinghen Plage de la Sirène,21756,observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-12,https://biolit.fr/observations/observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-12/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN8915-scaled.jpg,,FALSE, +N1,22365,sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f,https://biolit.fr/sorties/sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f/,Anne D,,3/22/2015 0:00,8.0000000,11.0000000,50.871952000000,1.588344000000,,Audinghen Plage de la Sirène,21758,observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-13,https://biolit.fr/observations/observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-13/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/05/DSCN8946-scaled.jpg,,TRUE, +N1,22366,sortie-5f8ac968-e8d1-4568-872c-ee98f8197fcc,https://biolit.fr/sorties/sortie-5f8ac968-e8d1-4568-872c-ee98f8197fcc/,KatSea,,03/08/2015,18.0000000,18.0000000,50.682093000000,1.565479000000,,"equihen plage, lieu ""la crevasse""",21760,observation-5f8ac968-e8d1-4568-872c-ee98f8197fcc,https://biolit.fr/observations/observation-5f8ac968-e8d1-4568-872c-ee98f8197fcc/,,,,https://biolit.fr/wp-content/uploads/2023/05/equihen (75)-scaled.jpg,,FALSE, +N1,22367,sortie-8e4e1ecd-d06a-4c70-9d58-4376b3461b5d,https://biolit.fr/sorties/sortie-8e4e1ecd-d06a-4c70-9d58-4376b3461b5d/,Anne D,,2/22/2015 0:00,9.0000000,11.0000000,50.837762000000,1.584568000000,,Nord d'Audresselles,21762,observation-8e4e1ecd-d06a-4c70-9d58-4376b3461b5d,https://biolit.fr/observations/observation-8e4e1ecd-d06a-4c70-9d58-4376b3461b5d/,Barnea candida,Pholade blanche,,https://biolit.fr/wp-content/uploads/2023/05/Pholade-scaled.jpg,,TRUE, +N1,22368,sortie-5941df3c-84d1-4027-8ca6-d568dd1a1cd4,https://biolit.fr/sorties/sortie-5941df3c-84d1-4027-8ca6-d568dd1a1cd4/,Anne D,,2/22/2015 0:00,9.0000000,11.0000000,50.8371930000,1.584718000000,,Nord d'Audresselles,21764,observation-5941df3c-84d1-4027-8ca6-d568dd1a1cd4,https://biolit.fr/observations/observation-5941df3c-84d1-4027-8ca6-d568dd1a1cd4/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/05/Algues rouges éponge bigorneaux gibules patelles et balanes-scaled.jpg,,TRUE, +N1,22369,sortie-1baefff9-bd27-4503-840f-1c083458bbaa,https://biolit.fr/sorties/sortie-1baefff9-bd27-4503-840f-1c083458bbaa/,Anne D,,2/22/2015 0:00,9.0000000,11.0000000,50.831555000000,1.588108000000,,Nord d'Audresselles,21766,observation-1baefff9-bd27-4503-840f-1c083458bbaa,https://biolit.fr/observations/observation-1baefff9-bd27-4503-840f-1c083458bbaa/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/2023/05/Laminaria sachaccharina-scaled.jpg,,TRUE, +N1,22370,sortie-2b79f70a-1956-4d57-8c3f-4d5cc5a41ab6,https://biolit.fr/sorties/sortie-2b79f70a-1956-4d57-8c3f-4d5cc5a41ab6/,La Huppe du Paradou,,02/04/2015,11.0:15,12.0000000,47.085501000000,-2.047122000000,,plage Maxence 44760 la Bernerie en Retz,21768,observation-2b79f70a-1956-4d57-8c3f-4d5cc5a41ab6,https://biolit.fr/observations/observation-2b79f70a-1956-4d57-8c3f-4d5cc5a41ab6/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1070747-scaled.jpg,,FALSE, +N1,22370,sortie-2b79f70a-1956-4d57-8c3f-4d5cc5a41ab6,https://biolit.fr/sorties/sortie-2b79f70a-1956-4d57-8c3f-4d5cc5a41ab6/,La Huppe du Paradou,,02/04/2015,11.0:15,12.0000000,47.085501000000,-2.047122000000,,plage Maxence 44760 la Bernerie en Retz,21770,observation-2b79f70a-1956-4d57-8c3f-4d5cc5a41ab6-2,https://biolit.fr/observations/observation-2b79f70a-1956-4d57-8c3f-4d5cc5a41ab6-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1070746-scaled.jpg,,FALSE, +N1,22371,sortie-9fb6ceae-3171-4bb9-99c3-469d4e151bc9,https://biolit.fr/sorties/sortie-9fb6ceae-3171-4bb9-99c3-469d4e151bc9/,Katy M,,1/23/2015 0:00,10.0000000,11.0000000,50.829284000000,1.589608000000,,Audresselles,21772,observation-9fb6ceae-3171-4bb9-99c3-469d4e151bc9,https://biolit.fr/observations/observation-9fb6ceae-3171-4bb9-99c3-469d4e151bc9/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/05/DSCN2064.JPG,,TRUE, +N1,22371,sortie-9fb6ceae-3171-4bb9-99c3-469d4e151bc9,https://biolit.fr/sorties/sortie-9fb6ceae-3171-4bb9-99c3-469d4e151bc9/,Katy M,,1/23/2015 0:00,10.0000000,11.0000000,50.829284000000,1.589608000000,,Audresselles,21774,observation-9fb6ceae-3171-4bb9-99c3-469d4e151bc9-2,https://biolit.fr/observations/observation-9fb6ceae-3171-4bb9-99c3-469d4e151bc9-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN2069.JPG,,TRUE, +N1,22371,sortie-9fb6ceae-3171-4bb9-99c3-469d4e151bc9,https://biolit.fr/sorties/sortie-9fb6ceae-3171-4bb9-99c3-469d4e151bc9/,Katy M,,1/23/2015 0:00,10.0000000,11.0000000,50.829284000000,1.589608000000,,Audresselles,21776,observation-9fb6ceae-3171-4bb9-99c3-469d4e151bc9-3,https://biolit.fr/observations/observation-9fb6ceae-3171-4bb9-99c3-469d4e151bc9-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN2070.JPG,,TRUE, +N1,22371,sortie-9fb6ceae-3171-4bb9-99c3-469d4e151bc9,https://biolit.fr/sorties/sortie-9fb6ceae-3171-4bb9-99c3-469d4e151bc9/,Katy M,,1/23/2015 0:00,10.0000000,11.0000000,50.829284000000,1.589608000000,,Audresselles,21778,observation-9fb6ceae-3171-4bb9-99c3-469d4e151bc9-4,https://biolit.fr/observations/observation-9fb6ceae-3171-4bb9-99c3-469d4e151bc9-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN2071.JPG,,TRUE, +N1,22372,sortie-5565d5dc-473f-4c69-acdf-d5cabdfa3d99,https://biolit.fr/sorties/sortie-5565d5dc-473f-4c69-acdf-d5cabdfa3d99/,Katy M,,1/23/2015 0:00,9.0000000,10.0000000,50.871426000000,1.590654000000,,Cap gris nez,21780,observation-5565d5dc-473f-4c69-acdf-d5cabdfa3d99,https://biolit.fr/observations/observation-5565d5dc-473f-4c69-acdf-d5cabdfa3d99/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/05/DSCN2015.JPG,,TRUE, +N1,22372,sortie-5565d5dc-473f-4c69-acdf-d5cabdfa3d99,https://biolit.fr/sorties/sortie-5565d5dc-473f-4c69-acdf-d5cabdfa3d99/,Katy M,,1/23/2015 0:00,9.0000000,10.0000000,50.871426000000,1.590654000000,,Cap gris nez,21782,observation-5565d5dc-473f-4c69-acdf-d5cabdfa3d99-2,https://biolit.fr/observations/observation-5565d5dc-473f-4c69-acdf-d5cabdfa3d99-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN2045.JPG,,FALSE, +N1,22372,sortie-5565d5dc-473f-4c69-acdf-d5cabdfa3d99,https://biolit.fr/sorties/sortie-5565d5dc-473f-4c69-acdf-d5cabdfa3d99/,Katy M,,1/23/2015 0:00,9.0000000,10.0000000,50.871426000000,1.590654000000,,Cap gris nez,21784,observation-5565d5dc-473f-4c69-acdf-d5cabdfa3d99-3,https://biolit.fr/observations/observation-5565d5dc-473f-4c69-acdf-d5cabdfa3d99-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN2046.JPG,,FALSE, +N1,22372,sortie-5565d5dc-473f-4c69-acdf-d5cabdfa3d99,https://biolit.fr/sorties/sortie-5565d5dc-473f-4c69-acdf-d5cabdfa3d99/,Katy M,,1/23/2015 0:00,9.0000000,10.0000000,50.871426000000,1.590654000000,,Cap gris nez,21786,observation-5565d5dc-473f-4c69-acdf-d5cabdfa3d99-4,https://biolit.fr/observations/observation-5565d5dc-473f-4c69-acdf-d5cabdfa3d99-4/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/05/DSCN2048.JPG,,TRUE, +N1,22373,sortie-7e4e8cd4-8222-411d-97e4-038eeb3216e7,https://biolit.fr/sorties/sortie-7e4e8cd4-8222-411d-97e4-038eeb3216e7/,marine lemaire,,12/26/2014 0:00,15.0:45,16.0000000,48.596903000000,-2.537794000000,,"Pléneuf Val-André, Plage des vallées",21788,observation-7e4e8cd4-8222-411d-97e4-038eeb3216e7,https://biolit.fr/observations/observation-7e4e8cd4-8222-411d-97e4-038eeb3216e7/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1509-scaled.jpg,,TRUE, +N1,22373,sortie-7e4e8cd4-8222-411d-97e4-038eeb3216e7,https://biolit.fr/sorties/sortie-7e4e8cd4-8222-411d-97e4-038eeb3216e7/,marine lemaire,,12/26/2014 0:00,15.0:45,16.0000000,48.596903000000,-2.537794000000,,"Pléneuf Val-André, Plage des vallées",21790,observation-7e4e8cd4-8222-411d-97e4-038eeb3216e7-2,https://biolit.fr/observations/observation-7e4e8cd4-8222-411d-97e4-038eeb3216e7-2/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/05/DSCN1512_0-scaled.jpg,,TRUE, +N1,22374,sortie-532afef4-aa75-45dd-964d-45cec7c04633,https://biolit.fr/sorties/sortie-532afef4-aa75-45dd-964d-45cec7c04633/,Katy M,,4/18/2014 0:00,9.0000000,10.0000000,50.829228000000,1.589712000000,,Audresselles,21792,observation-532afef4-aa75-45dd-964d-45cec7c04633,https://biolit.fr/observations/observation-532afef4-aa75-45dd-964d-45cec7c04633/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1297.jpg,,TRUE, +N1,22374,sortie-532afef4-aa75-45dd-964d-45cec7c04633,https://biolit.fr/sorties/sortie-532afef4-aa75-45dd-964d-45cec7c04633/,Katy M,,4/18/2014 0:00,9.0000000,10.0000000,50.829228000000,1.589712000000,,Audresselles,21794,observation-532afef4-aa75-45dd-964d-45cec7c04633-2,https://biolit.fr/observations/observation-532afef4-aa75-45dd-964d-45cec7c04633-2/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1301.jpg,,TRUE, +N1,22374,sortie-532afef4-aa75-45dd-964d-45cec7c04633,https://biolit.fr/sorties/sortie-532afef4-aa75-45dd-964d-45cec7c04633/,Katy M,,4/18/2014 0:00,9.0000000,10.0000000,50.829228000000,1.589712000000,,Audresselles,21796,observation-532afef4-aa75-45dd-964d-45cec7c04633-3,https://biolit.fr/observations/observation-532afef4-aa75-45dd-964d-45cec7c04633-3/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1302.jpg,,TRUE, +N1,22374,sortie-532afef4-aa75-45dd-964d-45cec7c04633,https://biolit.fr/sorties/sortie-532afef4-aa75-45dd-964d-45cec7c04633/,Katy M,,4/18/2014 0:00,9.0000000,10.0000000,50.829228000000,1.589712000000,,Audresselles,21798,observation-532afef4-aa75-45dd-964d-45cec7c04633-4,https://biolit.fr/observations/observation-532afef4-aa75-45dd-964d-45cec7c04633-4/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1303.jpg,,TRUE, +N1,22374,sortie-532afef4-aa75-45dd-964d-45cec7c04633,https://biolit.fr/sorties/sortie-532afef4-aa75-45dd-964d-45cec7c04633/,Katy M,,4/18/2014 0:00,9.0000000,10.0000000,50.829228000000,1.589712000000,,Audresselles,21800,observation-532afef4-aa75-45dd-964d-45cec7c04633-5,https://biolit.fr/observations/observation-532afef4-aa75-45dd-964d-45cec7c04633-5/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1305.jpg,,TRUE, +N1,22374,sortie-532afef4-aa75-45dd-964d-45cec7c04633,https://biolit.fr/sorties/sortie-532afef4-aa75-45dd-964d-45cec7c04633/,Katy M,,4/18/2014 0:00,9.0000000,10.0000000,50.829228000000,1.589712000000,,Audresselles,21802,observation-532afef4-aa75-45dd-964d-45cec7c04633-6,https://biolit.fr/observations/observation-532afef4-aa75-45dd-964d-45cec7c04633-6/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1306.jpg,,TRUE, +N1,22374,sortie-532afef4-aa75-45dd-964d-45cec7c04633,https://biolit.fr/sorties/sortie-532afef4-aa75-45dd-964d-45cec7c04633/,Katy M,,4/18/2014 0:00,9.0000000,10.0000000,50.829228000000,1.589712000000,,Audresselles,21804,observation-532afef4-aa75-45dd-964d-45cec7c04633-7,https://biolit.fr/observations/observation-532afef4-aa75-45dd-964d-45cec7c04633-7/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1307.jpg,,TRUE, +N1,22374,sortie-532afef4-aa75-45dd-964d-45cec7c04633,https://biolit.fr/sorties/sortie-532afef4-aa75-45dd-964d-45cec7c04633/,Katy M,,4/18/2014 0:00,9.0000000,10.0000000,50.829228000000,1.589712000000,,Audresselles,21806,observation-532afef4-aa75-45dd-964d-45cec7c04633-8,https://biolit.fr/observations/observation-532afef4-aa75-45dd-964d-45cec7c04633-8/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1308.jpg,,TRUE, +N1,22375,sortie-ccde6dca-c776-416a-a5ed-16c2d224d269,https://biolit.fr/sorties/sortie-ccde6dca-c776-416a-a5ed-16c2d224d269/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828494000000,1.589913000000,,"plage du Noirda, Audresselles",21808,observation-ccde6dca-c776-416a-a5ed-16c2d224d269,https://biolit.fr/observations/observation-ccde6dca-c776-416a-a5ed-16c2d224d269/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/05/IMG_2663-scaled.jpg,,TRUE, +N1,22375,sortie-ccde6dca-c776-416a-a5ed-16c2d224d269,https://biolit.fr/sorties/sortie-ccde6dca-c776-416a-a5ed-16c2d224d269/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828494000000,1.589913000000,,"plage du Noirda, Audresselles",21810,observation-ccde6dca-c776-416a-a5ed-16c2d224d269-2,https://biolit.fr/observations/observation-ccde6dca-c776-416a-a5ed-16c2d224d269-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/05/IMG_2667-scaled.jpg,,TRUE, +N1,22375,sortie-ccde6dca-c776-416a-a5ed-16c2d224d269,https://biolit.fr/sorties/sortie-ccde6dca-c776-416a-a5ed-16c2d224d269/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828494000000,1.589913000000,,"plage du Noirda, Audresselles",21812,observation-ccde6dca-c776-416a-a5ed-16c2d224d269-3,https://biolit.fr/observations/observation-ccde6dca-c776-416a-a5ed-16c2d224d269-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_2669-scaled.jpg,,FALSE, +N1,22375,sortie-ccde6dca-c776-416a-a5ed-16c2d224d269,https://biolit.fr/sorties/sortie-ccde6dca-c776-416a-a5ed-16c2d224d269/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828494000000,1.589913000000,,"plage du Noirda, Audresselles",21814,observation-ccde6dca-c776-416a-a5ed-16c2d224d269-4,https://biolit.fr/observations/observation-ccde6dca-c776-416a-a5ed-16c2d224d269-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_2670-scaled.jpg,,FALSE, +N1,22375,sortie-ccde6dca-c776-416a-a5ed-16c2d224d269,https://biolit.fr/sorties/sortie-ccde6dca-c776-416a-a5ed-16c2d224d269/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828494000000,1.589913000000,,"plage du Noirda, Audresselles",21816,observation-ccde6dca-c776-416a-a5ed-16c2d224d269-5,https://biolit.fr/observations/observation-ccde6dca-c776-416a-a5ed-16c2d224d269-5/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/05/IMG_2671-scaled.jpg,,TRUE, +N1,22376,sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6,https://biolit.fr/sorties/sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828476000000,1.58991600000,,"plage du Noirda, Audresselles",21818,observation-bc6ee21a-119e-4080-9f68-a48b9587dab6,https://biolit.fr/observations/observation-bc6ee21a-119e-4080-9f68-a48b9587dab6/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1847.jpg,,TRUE, +N1,22376,sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6,https://biolit.fr/sorties/sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828476000000,1.58991600000,,"plage du Noirda, Audresselles",21820,observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-2,https://biolit.fr/observations/observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1848.jpg,,TRUE, +N1,22376,sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6,https://biolit.fr/sorties/sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828476000000,1.58991600000,,"plage du Noirda, Audresselles",21822,observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-3,https://biolit.fr/observations/observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1849.jpg,,TRUE, +N1,22376,sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6,https://biolit.fr/sorties/sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828476000000,1.58991600000,,"plage du Noirda, Audresselles",21824,observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-4,https://biolit.fr/observations/observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1851.jpg,,FALSE, +N1,22376,sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6,https://biolit.fr/sorties/sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828476000000,1.58991600000,,"plage du Noirda, Audresselles",21826,observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-5,https://biolit.fr/observations/observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1852.jpg,,TRUE, +N1,22376,sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6,https://biolit.fr/sorties/sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828476000000,1.58991600000,,"plage du Noirda, Audresselles",21828,observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-6,https://biolit.fr/observations/observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-6/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1853.jpg,,TRUE, +N1,22376,sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6,https://biolit.fr/sorties/sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828476000000,1.58991600000,,"plage du Noirda, Audresselles",21830,observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-7,https://biolit.fr/observations/observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-7/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1854.jpg,,TRUE, +N1,22376,sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6,https://biolit.fr/sorties/sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828476000000,1.58991600000,,"plage du Noirda, Audresselles",21832,observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-8,https://biolit.fr/observations/observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-8/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1858.jpg,,TRUE, +N1,22376,sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6,https://biolit.fr/sorties/sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828476000000,1.58991600000,,"plage du Noirda, Audresselles",21834,observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-9,https://biolit.fr/observations/observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-9/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1859.jpg,,TRUE, +N1,22376,sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6,https://biolit.fr/sorties/sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828476000000,1.58991600000,,"plage du Noirda, Audresselles",21836,observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-10,https://biolit.fr/observations/observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-10/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1860.jpg,,TRUE, +N1,22376,sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6,https://biolit.fr/sorties/sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828476000000,1.58991600000,,"plage du Noirda, Audresselles",21838,observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-11,https://biolit.fr/observations/observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-11/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1861.jpg,,FALSE, +N1,22376,sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6,https://biolit.fr/sorties/sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828476000000,1.58991600000,,"plage du Noirda, Audresselles",21840,observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-12,https://biolit.fr/observations/observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-12/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1862.jpg,,FALSE, +N1,22376,sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6,https://biolit.fr/sorties/sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828476000000,1.58991600000,,"plage du Noirda, Audresselles",21842,observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-13,https://biolit.fr/observations/observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-13/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1863.jpg,,FALSE, +N1,22376,sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6,https://biolit.fr/sorties/sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828476000000,1.58991600000,,"plage du Noirda, Audresselles",21844,observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-14,https://biolit.fr/observations/observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-14/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1864.jpg,,FALSE, +N1,22376,sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6,https://biolit.fr/sorties/sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828476000000,1.58991600000,,"plage du Noirda, Audresselles",21846,observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-15,https://biolit.fr/observations/observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-15/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1865.jpg,,FALSE, +N1,22377,sortie-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c,https://biolit.fr/sorties/sortie-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c/,Hippolyte,,10/02/2014,14.0000000,16.0000000,49.892926000000,0.862193000000,,Plage de Saussemare,21848,observation-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c,https://biolit.fr/observations/observation-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_1715.jpg,,TRUE, +N1,22377,sortie-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c,https://biolit.fr/sorties/sortie-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c/,Hippolyte,,10/02/2014,14.0000000,16.0000000,49.892926000000,0.862193000000,,Plage de Saussemare,21850,observation-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c-2,https://biolit.fr/observations/observation-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c-2/,Littorina compressa,Littorine à lignes noires,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_1717.jpg,,TRUE, +N1,22377,sortie-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c,https://biolit.fr/sorties/sortie-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c/,Hippolyte,,10/02/2014,14.0000000,16.0000000,49.892926000000,0.862193000000,,Plage de Saussemare,21852,observation-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c-3,https://biolit.fr/observations/observation-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1720.jpg,,FALSE, +N1,22377,sortie-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c,https://biolit.fr/sorties/sortie-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c/,Hippolyte,,10/02/2014,14.0000000,16.0000000,49.892926000000,0.862193000000,,Plage de Saussemare,21854,observation-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c-4,https://biolit.fr/observations/observation-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1721.jpg,,FALSE, +N1,22377,sortie-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c,https://biolit.fr/sorties/sortie-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c/,Hippolyte,,10/02/2014,14.0000000,16.0000000,49.892926000000,0.862193000000,,Plage de Saussemare,21856,observation-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c-5,https://biolit.fr/observations/observation-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c-5/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1724.jpg,,FALSE, +N1,22377,sortie-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c,https://biolit.fr/sorties/sortie-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c/,Hippolyte,,10/02/2014,14.0000000,16.0000000,49.892926000000,0.862193000000,,Plage de Saussemare,21858,observation-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c-6,https://biolit.fr/observations/observation-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c-6/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1725.jpg,,FALSE, +N1,22377,sortie-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c,https://biolit.fr/sorties/sortie-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c/,Hippolyte,,10/02/2014,14.0000000,16.0000000,49.892926000000,0.862193000000,,Plage de Saussemare,21860,observation-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c-7,https://biolit.fr/observations/observation-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c-7/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_1726.jpg,,TRUE, +N1,22377,sortie-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c,https://biolit.fr/sorties/sortie-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c/,Hippolyte,,10/02/2014,14.0000000,16.0000000,49.892926000000,0.862193000000,,Plage de Saussemare,21862,observation-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c-8,https://biolit.fr/observations/observation-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c-8/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_1728.jpg,,TRUE, +N1,22378,sortie-d583e589-a2ed-4fbc-8078-039ea1c5faeb,https://biolit.fr/sorties/sortie-d583e589-a2ed-4fbc-8078-039ea1c5faeb/,marion Delporte,,09/11/2014,8.0000000,11.0000000,50.750439000000,1.594417000000,,Boulogne sur Mer,21864,observation-d583e589-a2ed-4fbc-8078-039ea1c5faeb,https://biolit.fr/observations/observation-d583e589-a2ed-4fbc-8078-039ea1c5faeb/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Pelvetia caniculata (pelvétie) Littorina saxatilis (bigorneau)_2-scaled.jpg,,TRUE, +N1,22379,sortie-d545a23d-3a69-42de-b611-12c5671aa1ff,https://biolit.fr/sorties/sortie-d545a23d-3a69-42de-b611-12c5671aa1ff/,Juh,,09/11/2014,8.0000000,11.0000000,50.750982000000,1.588495000000,,Pointe de la Crêche Boulogne Sur Mer,21866,observation-d545a23d-3a69-42de-b611-12c5671aa1ff,https://biolit.fr/observations/observation-d545a23d-3a69-42de-b611-12c5671aa1ff/,,,,https://biolit.fr/wp-content/uploads/2023/05/mytilus edulis fucus vesiculosus ulva lactuca.jpg,,FALSE, +N1,22380,sortie-02ca30f4-16cc-4b62-8aa8-087d96229f12,https://biolit.fr/sorties/sortie-02ca30f4-16cc-4b62-8aa8-087d96229f12/,Juh,,09/11/2014,8.0000000,11.0000000,50.751200000000,1.590211000000,,Pointe de la Crêche Boulogne Sur Mer,21868,observation-02ca30f4-16cc-4b62-8aa8-087d96229f12,https://biolit.fr/observations/observation-02ca30f4-16cc-4b62-8aa8-087d96229f12/,,,,https://biolit.fr/wp-content/uploads/2023/05/littorina saxtilis ulva lactuca.jpg,,FALSE, +N1,22381,sortie-a5684bcd-455d-459c-ac96-03b3cca03589,https://biolit.fr/sorties/sortie-a5684bcd-455d-459c-ac96-03b3cca03589/,Juh,,09/11/2014,8.0000000,11.0000000,50.751091000000,1.590769000000,,Pointe de la Crêche Boulogne Sur Mer,21870,observation-a5684bcd-455d-459c-ac96-03b3cca03589,https://biolit.fr/observations/observation-a5684bcd-455d-459c-ac96-03b3cca03589/,,,,https://biolit.fr/wp-content/uploads/2023/05/littorina littorea ulva lactuca.jpg,,FALSE, +N1,22382,sortie-d2c71ffa-4b2b-4b7e-a71a-d44a1edd1065,https://biolit.fr/sorties/sortie-d2c71ffa-4b2b-4b7e-a71a-d44a1edd1065/,marion Delporte,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593816000000,,Boulogne sur Mer,21872,observation-d2c71ffa-4b2b-4b7e-a71a-d44a1edd1065,https://biolit.fr/observations/observation-d2c71ffa-4b2b-4b7e-a71a-d44a1edd1065/,,,,https://biolit.fr/wp-content/uploads/2023/05/Pelvetia caniculata (pelvétie) Littorina saxatilis(bigorneau) (2)-scaled.jpg,,FALSE, +N1,22382,sortie-d2c71ffa-4b2b-4b7e-a71a-d44a1edd1065,https://biolit.fr/sorties/sortie-d2c71ffa-4b2b-4b7e-a71a-d44a1edd1065/,marion Delporte,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593816000000,,Boulogne sur Mer,21874,observation-d2c71ffa-4b2b-4b7e-a71a-d44a1edd1065-2,https://biolit.fr/observations/observation-d2c71ffa-4b2b-4b7e-a71a-d44a1edd1065-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/ulva lactuca (laitue de mer) ulva intestinalis littorina littorea (bigorneau)-scaled.jpg,,TRUE, +N1,22383,sortie-ab1edce2-5b5f-44ce-a66d-089f4439db5e,https://biolit.fr/sorties/sortie-ab1edce2-5b5f-44ce-a66d-089f4439db5e/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.751268000000,1.59231400000,,Boulogne/mer,21876,observation-ab1edce2-5b5f-44ce-a66d-089f4439db5e,https://biolit.fr/observations/observation-ab1edce2-5b5f-44ce-a66d-089f4439db5e/,,,,https://biolit.fr/wp-content/uploads/2023/05/SAM_0134-scaled.jpg,,FALSE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21878,observation-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8/,,,,https://biolit.fr/wp-content/uploads/2023/05/082_0-scaled.jpg,,FALSE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21880,observation-f883c73b-a64a-4351-853b-1350cae3cca8-2,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/088-scaled.jpg,,FALSE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21882,observation-f883c73b-a64a-4351-853b-1350cae3cca8-3,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/092-scaled.jpg,,FALSE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21884,observation-f883c73b-a64a-4351-853b-1350cae3cca8-4,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-4/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/05/095-scaled.jpg,,TRUE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21886,observation-f883c73b-a64a-4351-853b-1350cae3cca8-5,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-5/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/05/107-scaled.jpg,,TRUE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21888,observation-f883c73b-a64a-4351-853b-1350cae3cca8-6,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-6/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/05/108-scaled.jpg,,TRUE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21890,observation-f883c73b-a64a-4351-853b-1350cae3cca8-7,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-7/,Crangon crangon,Crevette grise européenne,,https://biolit.fr/wp-content/uploads/2023/05/111-scaled.jpg,,TRUE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21892,observation-f883c73b-a64a-4351-853b-1350cae3cca8-8,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-8/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/2023/05/112-scaled.jpg,,TRUE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21894,observation-f883c73b-a64a-4351-853b-1350cae3cca8-9,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-9/,Phycis phycis,Mostelle de roche,,https://biolit.fr/wp-content/uploads/2023/05/113-scaled.jpg,,TRUE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21896,observation-f883c73b-a64a-4351-853b-1350cae3cca8-10,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-10/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/05/114-scaled.jpg,,TRUE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21898,observation-f883c73b-a64a-4351-853b-1350cae3cca8-11,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-11/,,,,https://biolit.fr/wp-content/uploads/2023/05/115-scaled.jpg,,FALSE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21900,observation-f883c73b-a64a-4351-853b-1350cae3cca8-12,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-12/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/05/116-scaled.jpg,,TRUE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21902,observation-f883c73b-a64a-4351-853b-1350cae3cca8-13,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-13/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/05/117-scaled.jpg,,TRUE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21904,observation-f883c73b-a64a-4351-853b-1350cae3cca8-14,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-14/,,,,https://biolit.fr/wp-content/uploads/2023/05/120-scaled.jpg,,FALSE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21906,observation-f883c73b-a64a-4351-853b-1350cae3cca8-15,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-15/,,,,https://biolit.fr/wp-content/uploads/2023/05/118-scaled.jpg,,FALSE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21908,observation-f883c73b-a64a-4351-853b-1350cae3cca8-16,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-16/,,,,https://biolit.fr/wp-content/uploads/2023/05/121-scaled.jpg,,FALSE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21910,observation-f883c73b-a64a-4351-853b-1350cae3cca8-17,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-17/,,,,https://biolit.fr/wp-content/uploads/2023/05/122-scaled.jpg,,FALSE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21912,observation-f883c73b-a64a-4351-853b-1350cae3cca8-18,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-18/,,,,https://biolit.fr/wp-content/uploads/2023/05/089-scaled.jpg,,FALSE, +N1,22385,sortie-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1,https://biolit.fr/sorties/sortie-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1/,reinette,,9/14/2014 0:00,15.0:25,18.0:25,48.636301000000,-2.084098000000,,devant la thalassothérapie de Dinard,21914,observation-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1,https://biolit.fr/observations/observation-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1020670.JPG,,FALSE, +N1,22385,sortie-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1,https://biolit.fr/sorties/sortie-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1/,reinette,,9/14/2014 0:00,15.0:25,18.0:25,48.636301000000,-2.084098000000,,devant la thalassothérapie de Dinard,21916,observation-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1-2,https://biolit.fr/observations/observation-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1020671.JPG,,FALSE, +N1,22385,sortie-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1,https://biolit.fr/sorties/sortie-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1/,reinette,,9/14/2014 0:00,15.0:25,18.0:25,48.636301000000,-2.084098000000,,devant la thalassothérapie de Dinard,21918,observation-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1-3,https://biolit.fr/observations/observation-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1020672.JPG,,FALSE, +N1,22385,sortie-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1,https://biolit.fr/sorties/sortie-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1/,reinette,,9/14/2014 0:00,15.0:25,18.0:25,48.636301000000,-2.084098000000,,devant la thalassothérapie de Dinard,21920,observation-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1-4,https://biolit.fr/observations/observation-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1-4/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/05/P1020674.JPG,,TRUE, +N1,22385,sortie-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1,https://biolit.fr/sorties/sortie-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1/,reinette,,9/14/2014 0:00,15.0:25,18.0:25,48.636301000000,-2.084098000000,,devant la thalassothérapie de Dinard,21922,observation-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1-5,https://biolit.fr/observations/observation-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1-5/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/05/P1020676.JPG,,TRUE, +N1,22385,sortie-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1,https://biolit.fr/sorties/sortie-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1/,reinette,,9/14/2014 0:00,15.0:25,18.0:25,48.636301000000,-2.084098000000,,devant la thalassothérapie de Dinard,21924,observation-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1-6,https://biolit.fr/observations/observation-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1-6/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/P1020677.JPG,,TRUE, +N1,22385,sortie-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1,https://biolit.fr/sorties/sortie-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1/,reinette,,9/14/2014 0:00,15.0:25,18.0:25,48.636301000000,-2.084098000000,,devant la thalassothérapie de Dinard,21926,observation-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1-7,https://biolit.fr/observations/observation-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1-7/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1020678.JPG,,TRUE, +N1,22385,sortie-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1,https://biolit.fr/sorties/sortie-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1/,reinette,,9/14/2014 0:00,15.0:25,18.0:25,48.636301000000,-2.084098000000,,devant la thalassothérapie de Dinard,21928,observation-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1-8,https://biolit.fr/observations/observation-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1-8/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1020679.JPG,,TRUE, +N1,22386,sortie-702fc8d7-d4fd-45c2-ad85-c44c4b7f1195,https://biolit.fr/sorties/sortie-702fc8d7-d4fd-45c2-ad85-c44c4b7f1195/,leajoly,,09/11/2014,8.0000000,11.0000000,50.751393000000,1.589693000000,,plage de Boulogne-sur-mer,21930,observation-702fc8d7-d4fd-45c2-ad85-c44c4b7f1195,https://biolit.fr/observations/observation-702fc8d7-d4fd-45c2-ad85-c44c4b7f1195/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Pelvetia caniculata-scaled.jpg,,TRUE, +N1,22386,sortie-702fc8d7-d4fd-45c2-ad85-c44c4b7f1195,https://biolit.fr/sorties/sortie-702fc8d7-d4fd-45c2-ad85-c44c4b7f1195/,leajoly,,09/11/2014,8.0000000,11.0000000,50.751393000000,1.589693000000,,plage de Boulogne-sur-mer,21932,observation-702fc8d7-d4fd-45c2-ad85-c44c4b7f1195-2,https://biolit.fr/observations/observation-702fc8d7-d4fd-45c2-ad85-c44c4b7f1195-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Pelvetia caniculata-scaled.jpg,,TRUE, +N1,22386,sortie-702fc8d7-d4fd-45c2-ad85-c44c4b7f1195,https://biolit.fr/sorties/sortie-702fc8d7-d4fd-45c2-ad85-c44c4b7f1195/,leajoly,,09/11/2014,8.0000000,11.0000000,50.751393000000,1.589693000000,,plage de Boulogne-sur-mer,21933,observation-702fc8d7-d4fd-45c2-ad85-c44c4b7f1195-3,https://biolit.fr/observations/observation-702fc8d7-d4fd-45c2-ad85-c44c4b7f1195-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Fucus serratus-scaled.jpg,,TRUE, +N1,22387,sortie-369282ee-a5c3-4d2e-bfa6-2f0761f7f377,https://biolit.fr/sorties/sortie-369282ee-a5c3-4d2e-bfa6-2f0761f7f377/,M.DAO-CASTES Corentin,,09/11/2014,9.0000000,11.0000000,50.750657000000,1.594749000000,,Boulogne-sur-mer,21935,observation-369282ee-a5c3-4d2e-bfa6-2f0761f7f377,https://biolit.fr/observations/observation-369282ee-a5c3-4d2e-bfa6-2f0761f7f377/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Pelvetia caniculata -Littorina saxatilis-scaled.jpg,,TRUE, +N1,22387,sortie-369282ee-a5c3-4d2e-bfa6-2f0761f7f377,https://biolit.fr/sorties/sortie-369282ee-a5c3-4d2e-bfa6-2f0761f7f377/,M.DAO-CASTES Corentin,,09/11/2014,9.0000000,11.0000000,50.750657000000,1.594749000000,,Boulogne-sur-mer,21937,observation-369282ee-a5c3-4d2e-bfa6-2f0761f7f377-2,https://biolit.fr/observations/observation-369282ee-a5c3-4d2e-bfa6-2f0761f7f377-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Fucus spiralus-Littorina saxatilis-scaled.jpg,,TRUE, +N1,22387,sortie-369282ee-a5c3-4d2e-bfa6-2f0761f7f377,https://biolit.fr/sorties/sortie-369282ee-a5c3-4d2e-bfa6-2f0761f7f377/,M.DAO-CASTES Corentin,,09/11/2014,9.0000000,11.0000000,50.750657000000,1.594749000000,,Boulogne-sur-mer,21939,observation-369282ee-a5c3-4d2e-bfa6-2f0761f7f377-3,https://biolit.fr/observations/observation-369282ee-a5c3-4d2e-bfa6-2f0761f7f377-3/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Fucus serratus-Gibbula umbilicalis-scaled.jpg,,TRUE, +N1,22388,sortie-8e5f5c18-9aca-4ab1-9bca-641b44f429d7,https://biolit.fr/sorties/sortie-8e5f5c18-9aca-4ab1-9bca-641b44f429d7/,Mel-Mei,,09/11/2014,8.0000000,11.0000000,50.750494000000,1.593687000000,,boulogne sur mer,21941,observation-8e5f5c18-9aca-4ab1-9bca-641b44f429d7,https://biolit.fr/observations/observation-8e5f5c18-9aca-4ab1-9bca-641b44f429d7/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/DSC00442 bis.jpg,,TRUE, +N1,22388,sortie-8e5f5c18-9aca-4ab1-9bca-641b44f429d7,https://biolit.fr/sorties/sortie-8e5f5c18-9aca-4ab1-9bca-641b44f429d7/,Mel-Mei,,09/11/2014,8.0000000,11.0000000,50.750494000000,1.593687000000,,boulogne sur mer,21943,observation-8e5f5c18-9aca-4ab1-9bca-641b44f429d7-2,https://biolit.fr/observations/observation-8e5f5c18-9aca-4ab1-9bca-641b44f429d7-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSC00445 bis.jpg,,FALSE, +N1,22389,sortie-4074b9cc-adeb-4b47-800b-6049136e8296,https://biolit.fr/sorties/sortie-4074b9cc-adeb-4b47-800b-6049136e8296/,Centre La Sapinière,,8/19/2014 0:00,16.0000000,17.0000000,46.102026000000,-1.113339000000,,Angoulins sur mer,21945,observation-4074b9cc-adeb-4b47-800b-6049136e8296,https://biolit.fr/observations/observation-4074b9cc-adeb-4b47-800b-6049136e8296/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1040498.JPG,,FALSE, +N1,22389,sortie-4074b9cc-adeb-4b47-800b-6049136e8296,https://biolit.fr/sorties/sortie-4074b9cc-adeb-4b47-800b-6049136e8296/,Centre La Sapinière,,8/19/2014 0:00,16.0000000,17.0000000,46.102026000000,-1.113339000000,,Angoulins sur mer,21947,observation-4074b9cc-adeb-4b47-800b-6049136e8296-2,https://biolit.fr/observations/observation-4074b9cc-adeb-4b47-800b-6049136e8296-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1040497_2.JPG,,FALSE, +N1,22389,sortie-4074b9cc-adeb-4b47-800b-6049136e8296,https://biolit.fr/sorties/sortie-4074b9cc-adeb-4b47-800b-6049136e8296/,Centre La Sapinière,,8/19/2014 0:00,16.0000000,17.0000000,46.102026000000,-1.113339000000,,Angoulins sur mer,21949,observation-4074b9cc-adeb-4b47-800b-6049136e8296-3,https://biolit.fr/observations/observation-4074b9cc-adeb-4b47-800b-6049136e8296-3/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1040496.JPG,,TRUE, +N1,22389,sortie-4074b9cc-adeb-4b47-800b-6049136e8296,https://biolit.fr/sorties/sortie-4074b9cc-adeb-4b47-800b-6049136e8296/,Centre La Sapinière,,8/19/2014 0:00,16.0000000,17.0000000,46.102026000000,-1.113339000000,,Angoulins sur mer,21951,observation-4074b9cc-adeb-4b47-800b-6049136e8296-4,https://biolit.fr/observations/observation-4074b9cc-adeb-4b47-800b-6049136e8296-4/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1040495.JPG,,TRUE, +N1,22389,sortie-4074b9cc-adeb-4b47-800b-6049136e8296,https://biolit.fr/sorties/sortie-4074b9cc-adeb-4b47-800b-6049136e8296/,Centre La Sapinière,,8/19/2014 0:00,16.0000000,17.0000000,46.102026000000,-1.113339000000,,Angoulins sur mer,21953,observation-4074b9cc-adeb-4b47-800b-6049136e8296-5,https://biolit.fr/observations/observation-4074b9cc-adeb-4b47-800b-6049136e8296-5/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1040499.JPG,,FALSE, +N1,22389,sortie-4074b9cc-adeb-4b47-800b-6049136e8296,https://biolit.fr/sorties/sortie-4074b9cc-adeb-4b47-800b-6049136e8296/,Centre La Sapinière,,8/19/2014 0:00,16.0000000,17.0000000,46.102026000000,-1.113339000000,,Angoulins sur mer,21955,observation-4074b9cc-adeb-4b47-800b-6049136e8296-6,https://biolit.fr/observations/observation-4074b9cc-adeb-4b47-800b-6049136e8296-6/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1040500.JPG,,FALSE, +N1,22390,sortie-98a6433f-2d97-47c2-8d7a-427abad9348e,https://biolit.fr/sorties/sortie-98a6433f-2d97-47c2-8d7a-427abad9348e/,Centre La Sapinière,,8/13/2014 0:00,10.0:45,12.0000000,46.102065000000,-1.113342000000,,Angoulins sur mer,21957,observation-98a6433f-2d97-47c2-8d7a-427abad9348e,https://biolit.fr/observations/observation-98a6433f-2d97-47c2-8d7a-427abad9348e/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMGP0301-scaled.jpg,,FALSE, +N1,22390,sortie-98a6433f-2d97-47c2-8d7a-427abad9348e,https://biolit.fr/sorties/sortie-98a6433f-2d97-47c2-8d7a-427abad9348e/,Centre La Sapinière,,8/13/2014 0:00,10.0:45,12.0000000,46.102065000000,-1.113342000000,,Angoulins sur mer,21959,observation-98a6433f-2d97-47c2-8d7a-427abad9348e-2,https://biolit.fr/observations/observation-98a6433f-2d97-47c2-8d7a-427abad9348e-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMGP0302-scaled.jpg,,FALSE, +N1,22390,sortie-98a6433f-2d97-47c2-8d7a-427abad9348e,https://biolit.fr/sorties/sortie-98a6433f-2d97-47c2-8d7a-427abad9348e/,Centre La Sapinière,,8/13/2014 0:00,10.0:45,12.0000000,46.102065000000,-1.113342000000,,Angoulins sur mer,21961,observation-98a6433f-2d97-47c2-8d7a-427abad9348e-3,https://biolit.fr/observations/observation-98a6433f-2d97-47c2-8d7a-427abad9348e-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMGP0304-scaled.jpg,,TRUE, +N1,22390,sortie-98a6433f-2d97-47c2-8d7a-427abad9348e,https://biolit.fr/sorties/sortie-98a6433f-2d97-47c2-8d7a-427abad9348e/,Centre La Sapinière,,8/13/2014 0:00,10.0:45,12.0000000,46.102065000000,-1.113342000000,,Angoulins sur mer,21963,observation-98a6433f-2d97-47c2-8d7a-427abad9348e-4,https://biolit.fr/observations/observation-98a6433f-2d97-47c2-8d7a-427abad9348e-4/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMGP0305-scaled.jpg,,TRUE, +N1,22390,sortie-98a6433f-2d97-47c2-8d7a-427abad9348e,https://biolit.fr/sorties/sortie-98a6433f-2d97-47c2-8d7a-427abad9348e/,Centre La Sapinière,,8/13/2014 0:00,10.0:45,12.0000000,46.102065000000,-1.113342000000,,Angoulins sur mer,21965,observation-98a6433f-2d97-47c2-8d7a-427abad9348e-5,https://biolit.fr/observations/observation-98a6433f-2d97-47c2-8d7a-427abad9348e-5/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMGP0306-scaled.jpg,,FALSE, +N1,22390,sortie-98a6433f-2d97-47c2-8d7a-427abad9348e,https://biolit.fr/sorties/sortie-98a6433f-2d97-47c2-8d7a-427abad9348e/,Centre La Sapinière,,8/13/2014 0:00,10.0:45,12.0000000,46.102065000000,-1.113342000000,,Angoulins sur mer,21967,observation-98a6433f-2d97-47c2-8d7a-427abad9348e-6,https://biolit.fr/observations/observation-98a6433f-2d97-47c2-8d7a-427abad9348e-6/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMGP0309-scaled.jpg,,FALSE, +N1,22390,sortie-98a6433f-2d97-47c2-8d7a-427abad9348e,https://biolit.fr/sorties/sortie-98a6433f-2d97-47c2-8d7a-427abad9348e/,Centre La Sapinière,,8/13/2014 0:00,10.0:45,12.0000000,46.102065000000,-1.113342000000,,Angoulins sur mer,21969,observation-98a6433f-2d97-47c2-8d7a-427abad9348e-7,https://biolit.fr/observations/observation-98a6433f-2d97-47c2-8d7a-427abad9348e-7/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMGP0308-scaled.jpg,,TRUE,non-identifiable +N1,22391,sortie-0c9f4078-850a-4135-aaf7-519957f1047f,https://biolit.fr/sorties/sortie-0c9f4078-850a-4135-aaf7-519957f1047f/,franck garel,,08/02/2014,15.0:15,16.0:15,48.648943000000,-2.030018000000,,saint-malo bon secours,21971,observation-0c9f4078-850a-4135-aaf7-519957f1047f,https://biolit.fr/observations/observation-0c9f4078-850a-4135-aaf7-519957f1047f/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_1639-scaled.jpg,,TRUE, +N1,22391,sortie-0c9f4078-850a-4135-aaf7-519957f1047f,https://biolit.fr/sorties/sortie-0c9f4078-850a-4135-aaf7-519957f1047f/,franck garel,,08/02/2014,15.0:15,16.0:15,48.648943000000,-2.030018000000,,saint-malo bon secours,21973,observation-0c9f4078-850a-4135-aaf7-519957f1047f-2,https://biolit.fr/observations/observation-0c9f4078-850a-4135-aaf7-519957f1047f-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSC_1641-scaled.jpg,,FALSE, +N1,22391,sortie-0c9f4078-850a-4135-aaf7-519957f1047f,https://biolit.fr/sorties/sortie-0c9f4078-850a-4135-aaf7-519957f1047f/,franck garel,,08/02/2014,15.0:15,16.0:15,48.648943000000,-2.030018000000,,saint-malo bon secours,21975,observation-0c9f4078-850a-4135-aaf7-519957f1047f-3,https://biolit.fr/observations/observation-0c9f4078-850a-4135-aaf7-519957f1047f-3/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_1643-scaled.jpg,,TRUE, +N1,22392,sortie-e433047b-734e-4c2e-a9af-8c4e953fc5bd,https://biolit.fr/sorties/sortie-e433047b-734e-4c2e-a9af-8c4e953fc5bd/,Isa923,,08/05/2014,15.0000000,15.0000000,46.101842000000,-1.113284000000,,Angoulins,21977,observation-e433047b-734e-4c2e-a9af-8c4e953fc5bd,https://biolit.fr/observations/observation-e433047b-734e-4c2e-a9af-8c4e953fc5bd/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/05/test-3.jpg,,TRUE, +N1,22393,sortie-b05e3164-7238-40fa-abf1-48cb03d9a45a,https://biolit.fr/sorties/sortie-b05e3164-7238-40fa-abf1-48cb03d9a45a/,Isa923,,08/05/2014,15.0000000,15.0000000,46.101842000000,-1.113284000000,,Angoulins,21986,observation-b05e3164-7238-40fa-abf1-48cb03d9a45a,https://biolit.fr/observations/observation-b05e3164-7238-40fa-abf1-48cb03d9a45a/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/05/test-7.jpg,,TRUE, +N1,22394,sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac,https://biolit.fr/sorties/sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac/,Ondinec,,08/02/2014,15.0000000,17.0000000,48.649014000000,-2.030084000000,,Bon Secours,21995,observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac,https://biolit.fr/observations/observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5377_0-scaled.jpg,,TRUE, +N1,22394,sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac,https://biolit.fr/sorties/sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac/,Ondinec,,08/02/2014,15.0000000,17.0000000,48.649014000000,-2.030084000000,,Bon Secours,21997,observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac-2,https://biolit.fr/observations/observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5382_0-scaled.jpg,,TRUE, +N1,22394,sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac,https://biolit.fr/sorties/sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac/,Ondinec,,08/02/2014,15.0000000,17.0000000,48.649014000000,-2.030084000000,,Bon Secours,21999,observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac-3,https://biolit.fr/observations/observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5383_0-scaled.jpg,,TRUE, +N1,22394,sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac,https://biolit.fr/sorties/sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac/,Ondinec,,08/02/2014,15.0000000,17.0000000,48.649014000000,-2.030084000000,,Bon Secours,22001,observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac-4,https://biolit.fr/observations/observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac-4/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5385-scaled.jpg,,TRUE, +N1,22394,sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac,https://biolit.fr/sorties/sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac/,Ondinec,,08/02/2014,15.0000000,17.0000000,48.649014000000,-2.030084000000,,Bon Secours,22003,observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac-5,https://biolit.fr/observations/observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac-5/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5386_0-scaled.jpg,,TRUE, +N1,22394,sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac,https://biolit.fr/sorties/sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac/,Ondinec,,08/02/2014,15.0000000,17.0000000,48.649014000000,-2.030084000000,,Bon Secours,22005,observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac-6,https://biolit.fr/observations/observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac-6/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5387-scaled.jpg,,TRUE,Identifiable +N1,22394,sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac,https://biolit.fr/sorties/sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac/,Ondinec,,08/02/2014,15.0000000,17.0000000,48.649014000000,-2.030084000000,,Bon Secours,22007,observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac-7,https://biolit.fr/observations/observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac-7/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5393-scaled.jpg,,TRUE, +N1,22394,sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac,https://biolit.fr/sorties/sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac/,Ondinec,,08/02/2014,15.0000000,17.0000000,48.649014000000,-2.030084000000,,Bon Secours,22009,observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac-8,https://biolit.fr/observations/observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac-8/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5395-scaled.jpg,,TRUE, +N1,22394,sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac,https://biolit.fr/sorties/sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac/,Ondinec,,08/02/2014,15.0000000,17.0000000,48.649014000000,-2.030084000000,,Bon Secours,22011,observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac-9,https://biolit.fr/observations/observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac-9/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5398-scaled.jpg,,TRUE, +N1,22395,sortie-021824fd-5d71-43b5-85d0-118148eec9b4,https://biolit.fr/sorties/sortie-021824fd-5d71-43b5-85d0-118148eec9b4/,Centre La Sapinière,,7/28/2014 0:00,10.0:45,11.0:45,46.10200700000,-1.113332000000,,"Angoulins sur mer, Pont de la Chaume",22013,observation-021824fd-5d71-43b5-85d0-118148eec9b4,https://biolit.fr/observations/observation-021824fd-5d71-43b5-85d0-118148eec9b4/,,,,https://biolit.fr/wp-content/uploads/2023/05/relevé-scaled.jpg,,TRUE,non-identifiable +N1,22395,sortie-021824fd-5d71-43b5-85d0-118148eec9b4,https://biolit.fr/sorties/sortie-021824fd-5d71-43b5-85d0-118148eec9b4/,Centre La Sapinière,,7/28/2014 0:00,10.0:45,11.0:45,46.10200700000,-1.113332000000,,"Angoulins sur mer, Pont de la Chaume",22015,observation-021824fd-5d71-43b5-85d0-118148eec9b4-2,https://biolit.fr/observations/observation-021824fd-5d71-43b5-85d0-118148eec9b4-2/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/algue-scaled.jpg,,TRUE,Identifiable +N1,22395,sortie-021824fd-5d71-43b5-85d0-118148eec9b4,https://biolit.fr/sorties/sortie-021824fd-5d71-43b5-85d0-118148eec9b4/,Centre La Sapinière,,7/28/2014 0:00,10.0:45,11.0:45,46.10200700000,-1.113332000000,,"Angoulins sur mer, Pont de la Chaume",22017,observation-021824fd-5d71-43b5-85d0-118148eec9b4-3,https://biolit.fr/observations/observation-021824fd-5d71-43b5-85d0-118148eec9b4-3/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/algues-scaled.jpg,,TRUE,Identifiable +N1,22395,sortie-021824fd-5d71-43b5-85d0-118148eec9b4,https://biolit.fr/sorties/sortie-021824fd-5d71-43b5-85d0-118148eec9b4/,Centre La Sapinière,,7/28/2014 0:00,10.0:45,11.0:45,46.10200700000,-1.113332000000,,"Angoulins sur mer, Pont de la Chaume",22019,observation-021824fd-5d71-43b5-85d0-118148eec9b4-4,https://biolit.fr/observations/observation-021824fd-5d71-43b5-85d0-118148eec9b4-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1040413-scaled.jpg,,TRUE, +N1,22396,sortie-e1ffd781-ca65-44c8-a7c3-9dcb77f097f5,https://biolit.fr/sorties/sortie-e1ffd781-ca65-44c8-a7c3-9dcb77f097f5/,Centre La Sapinière,,7/21/2014 0:00,16.0000000,17.0:15,46.102007000000,-1.113329000000,,"Angoulins sur mer, Pont de la Chaume",22021,observation-e1ffd781-ca65-44c8-a7c3-9dcb77f097f5,https://biolit.fr/observations/observation-e1ffd781-ca65-44c8-a7c3-9dcb77f097f5/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1040348.JPG,,FALSE, +N1,22396,sortie-e1ffd781-ca65-44c8-a7c3-9dcb77f097f5,https://biolit.fr/sorties/sortie-e1ffd781-ca65-44c8-a7c3-9dcb77f097f5/,Centre La Sapinière,,7/21/2014 0:00,16.0000000,17.0:15,46.102007000000,-1.113329000000,,"Angoulins sur mer, Pont de la Chaume",22023,observation-e1ffd781-ca65-44c8-a7c3-9dcb77f097f5-2,https://biolit.fr/observations/observation-e1ffd781-ca65-44c8-a7c3-9dcb77f097f5-2/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/05/P1040338.JPG,,TRUE, +N1,22396,sortie-e1ffd781-ca65-44c8-a7c3-9dcb77f097f5,https://biolit.fr/sorties/sortie-e1ffd781-ca65-44c8-a7c3-9dcb77f097f5/,Centre La Sapinière,,7/21/2014 0:00,16.0000000,17.0:15,46.102007000000,-1.113329000000,,"Angoulins sur mer, Pont de la Chaume",22025,observation-e1ffd781-ca65-44c8-a7c3-9dcb77f097f5-3,https://biolit.fr/observations/observation-e1ffd781-ca65-44c8-a7c3-9dcb77f097f5-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1040343.JPG,,TRUE, +N1,22397,sortie-46f32e20-d566-49e4-af75-a6bd3aaed8d1,https://biolit.fr/sorties/sortie-46f32e20-d566-49e4-af75-a6bd3aaed8d1/,tridimeg,,07/07/2014,18.0000000,19.0000000,48.639841000000,-2.078541000000,,La roche pelée,22027,observation-46f32e20-d566-49e4-af75-a6bd3aaed8d1,https://biolit.fr/observations/observation-46f32e20-d566-49e4-af75-a6bd3aaed8d1/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20140707_190135-rotated.jpg,,TRUE, +N1,22397,sortie-46f32e20-d566-49e4-af75-a6bd3aaed8d1,https://biolit.fr/sorties/sortie-46f32e20-d566-49e4-af75-a6bd3aaed8d1/,tridimeg,,07/07/2014,18.0000000,19.0000000,48.639841000000,-2.078541000000,,La roche pelée,22029,observation-46f32e20-d566-49e4-af75-a6bd3aaed8d1-2,https://biolit.fr/observations/observation-46f32e20-d566-49e4-af75-a6bd3aaed8d1-2/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/05/20140707_190224.jpg,,TRUE, +N1,22397,sortie-46f32e20-d566-49e4-af75-a6bd3aaed8d1,https://biolit.fr/sorties/sortie-46f32e20-d566-49e4-af75-a6bd3aaed8d1/,tridimeg,,07/07/2014,18.0000000,19.0000000,48.639841000000,-2.078541000000,,La roche pelée,22031,observation-46f32e20-d566-49e4-af75-a6bd3aaed8d1-3,https://biolit.fr/observations/observation-46f32e20-d566-49e4-af75-a6bd3aaed8d1-3/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20140707_190310.jpg,,TRUE, +N1,22397,sortie-46f32e20-d566-49e4-af75-a6bd3aaed8d1,https://biolit.fr/sorties/sortie-46f32e20-d566-49e4-af75-a6bd3aaed8d1/,tridimeg,,07/07/2014,18.0000000,19.0000000,48.639841000000,-2.078541000000,,La roche pelée,22033,observation-46f32e20-d566-49e4-af75-a6bd3aaed8d1-4,https://biolit.fr/observations/observation-46f32e20-d566-49e4-af75-a6bd3aaed8d1-4/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20140707_190358.jpg,,TRUE, +N1,22397,sortie-46f32e20-d566-49e4-af75-a6bd3aaed8d1,https://biolit.fr/sorties/sortie-46f32e20-d566-49e4-af75-a6bd3aaed8d1/,tridimeg,,07/07/2014,18.0000000,19.0000000,48.639841000000,-2.078541000000,,La roche pelée,22035,observation-46f32e20-d566-49e4-af75-a6bd3aaed8d1-5,https://biolit.fr/observations/observation-46f32e20-d566-49e4-af75-a6bd3aaed8d1-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20140707_190443-rotated.jpg,,TRUE, +N1,22397,sortie-46f32e20-d566-49e4-af75-a6bd3aaed8d1,https://biolit.fr/sorties/sortie-46f32e20-d566-49e4-af75-a6bd3aaed8d1/,tridimeg,,07/07/2014,18.0000000,19.0000000,48.639841000000,-2.078541000000,,La roche pelée,22037,observation-46f32e20-d566-49e4-af75-a6bd3aaed8d1-6,https://biolit.fr/observations/observation-46f32e20-d566-49e4-af75-a6bd3aaed8d1-6/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20140707_190832-rotated.jpg,,TRUE, +N1,22397,sortie-46f32e20-d566-49e4-af75-a6bd3aaed8d1,https://biolit.fr/sorties/sortie-46f32e20-d566-49e4-af75-a6bd3aaed8d1/,tridimeg,,07/07/2014,18.0000000,19.0000000,48.639841000000,-2.078541000000,,La roche pelée,22039,observation-46f32e20-d566-49e4-af75-a6bd3aaed8d1-7,https://biolit.fr/observations/observation-46f32e20-d566-49e4-af75-a6bd3aaed8d1-7/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20140707_190945-rotated.jpg,,TRUE, +N1,22398,sortie-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc,https://biolit.fr/sorties/sortie-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc/,Planète Mer,,7/19/2014 0:00,15.0000000,16.0000000,48.64907100000,-2.02991000000,,Estran de bon secours,22041,observation-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc,https://biolit.fr/observations/observation-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5368-scaled.jpg,,TRUE, +N1,22398,sortie-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc,https://biolit.fr/sorties/sortie-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc/,Planète Mer,,7/19/2014 0:00,15.0000000,16.0000000,48.64907100000,-2.02991000000,,Estran de bon secours,22043,observation-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc-2,https://biolit.fr/observations/observation-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc-2/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5369-scaled.jpg,,TRUE, +N1,22398,sortie-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc,https://biolit.fr/sorties/sortie-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc/,Planète Mer,,7/19/2014 0:00,15.0000000,16.0000000,48.64907100000,-2.02991000000,,Estran de bon secours,22045,observation-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc-3,https://biolit.fr/observations/observation-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5370-scaled.jpg,,TRUE, +N1,22398,sortie-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc,https://biolit.fr/sorties/sortie-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc/,Planète Mer,,7/19/2014 0:00,15.0000000,16.0000000,48.64907100000,-2.02991000000,,Estran de bon secours,22047,observation-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc-4,https://biolit.fr/observations/observation-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc-4/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5371-scaled.jpg,,TRUE, +N1,22398,sortie-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc,https://biolit.fr/sorties/sortie-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc/,Planète Mer,,7/19/2014 0:00,15.0000000,16.0000000,48.64907100000,-2.02991000000,,Estran de bon secours,22049,observation-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc-5,https://biolit.fr/observations/observation-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5372-scaled.jpg,,TRUE, +N1,22398,sortie-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc,https://biolit.fr/sorties/sortie-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc/,Planète Mer,,7/19/2014 0:00,15.0000000,16.0000000,48.64907100000,-2.02991000000,,Estran de bon secours,22051,observation-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc-6,https://biolit.fr/observations/observation-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc-6/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5373-scaled.jpg,,TRUE, +N1,22398,sortie-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc,https://biolit.fr/sorties/sortie-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc/,Planète Mer,,7/19/2014 0:00,15.0000000,16.0000000,48.64907100000,-2.02991000000,,Estran de bon secours,22053,observation-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc-7,https://biolit.fr/observations/observation-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc-7/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5374-scaled.jpg,,TRUE, +N1,22399,sortie-b95264a3-7ecb-4279-82b6-fcdd9b8f7b36,https://biolit.fr/sorties/sortie-b95264a3-7ecb-4279-82b6-fcdd9b8f7b36/,Planète Mer,,7/15/2014 0:00,14.0:45,17.0000000,46.11032000000,-1.138625000000,,Estran pointe du Chay,22055,observation-b95264a3-7ecb-4279-82b6-fcdd9b8f7b36,https://biolit.fr/observations/observation-b95264a3-7ecb-4279-82b6-fcdd9b8f7b36/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_5346-scaled.jpg,,FALSE, +N1,22399,sortie-b95264a3-7ecb-4279-82b6-fcdd9b8f7b36,https://biolit.fr/sorties/sortie-b95264a3-7ecb-4279-82b6-fcdd9b8f7b36/,Planète Mer,,7/15/2014 0:00,14.0:45,17.0000000,46.11032000000,-1.138625000000,,Estran pointe du Chay,22057,observation-b95264a3-7ecb-4279-82b6-fcdd9b8f7b36-2,https://biolit.fr/observations/observation-b95264a3-7ecb-4279-82b6-fcdd9b8f7b36-2/,Ocinebrellus inornatus,Bigorneau perceur japonais,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5351-scaled.jpg,,TRUE, +N1,22400,sortie-d2491b1a-11ec-4ff5-ab06-a1d3d46bd34b,https://biolit.fr/sorties/sortie-d2491b1a-11ec-4ff5-ab06-a1d3d46bd34b/,NAUSICAA,,07/05/2014,11.0000000,12.0000000,50.828499000000,1.589854000000,,plage du Noirda Audresselles,22059,observation-d2491b1a-11ec-4ff5-ab06-a1d3d46bd34b,https://biolit.fr/observations/observation-d2491b1a-11ec-4ff5-ab06-a1d3d46bd34b/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1315-scaled.jpg,,TRUE, +N1,22400,sortie-d2491b1a-11ec-4ff5-ab06-a1d3d46bd34b,https://biolit.fr/sorties/sortie-d2491b1a-11ec-4ff5-ab06-a1d3d46bd34b/,NAUSICAA,,07/05/2014,11.0000000,12.0000000,50.828499000000,1.589854000000,,plage du Noirda Audresselles,22061,observation-d2491b1a-11ec-4ff5-ab06-a1d3d46bd34b-2,https://biolit.fr/observations/observation-d2491b1a-11ec-4ff5-ab06-a1d3d46bd34b-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1329-scaled.jpg,,FALSE, +N1,22400,sortie-d2491b1a-11ec-4ff5-ab06-a1d3d46bd34b,https://biolit.fr/sorties/sortie-d2491b1a-11ec-4ff5-ab06-a1d3d46bd34b/,NAUSICAA,,07/05/2014,11.0000000,12.0000000,50.828499000000,1.589854000000,,plage du Noirda Audresselles,22063,observation-d2491b1a-11ec-4ff5-ab06-a1d3d46bd34b-3,https://biolit.fr/observations/observation-d2491b1a-11ec-4ff5-ab06-a1d3d46bd34b-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_3622.jpg,,FALSE, +N1,22401,sortie-9a0fb047-9eac-4215-ae66-d6ab5acb9880,https://biolit.fr/sorties/sortie-9a0fb047-9eac-4215-ae66-d6ab5acb9880/,NAUSICAA,,07/04/2014,11.0000000,12.0000000,50.828523000000,1.58990400000,,Plage du Noirda Audresselles,22065,observation-9a0fb047-9eac-4215-ae66-d6ab5acb9880,https://biolit.fr/observations/observation-9a0fb047-9eac-4215-ae66-d6ab5acb9880/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1268-scaled.jpg,,TRUE, +N1,22402,sortie-470566ad-14ab-47eb-b508-1d8566e46d09,https://biolit.fr/sorties/sortie-470566ad-14ab-47eb-b508-1d8566e46d09/,NAUSICAA,,07/04/2014,11.0000000,12.0000000,50.828528000000,1.589872000000,,"Plage du Noirda, Audresselles",22067,observation-470566ad-14ab-47eb-b508-1d8566e46d09,https://biolit.fr/observations/observation-470566ad-14ab-47eb-b508-1d8566e46d09/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1267-scaled.jpg,,TRUE, +N1,22402,sortie-470566ad-14ab-47eb-b508-1d8566e46d09,https://biolit.fr/sorties/sortie-470566ad-14ab-47eb-b508-1d8566e46d09/,NAUSICAA,,07/04/2014,11.0000000,12.0000000,50.828528000000,1.589872000000,,"Plage du Noirda, Audresselles",22069,observation-470566ad-14ab-47eb-b508-1d8566e46d09-2,https://biolit.fr/observations/observation-470566ad-14ab-47eb-b508-1d8566e46d09-2/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1269-scaled.jpg,,TRUE, +N1,22403,sortie-9826eae9-c992-44ba-99fe-7634470a63c1,https://biolit.fr/sorties/sortie-9826eae9-c992-44ba-99fe-7634470a63c1/,NAUSICAA,,07/05/2014,11.0000000,12.0000000,50.828479000000,1.589867000000,,Plage du Noirda,22071,observation-9826eae9-c992-44ba-99fe-7634470a63c1,https://biolit.fr/observations/observation-9826eae9-c992-44ba-99fe-7634470a63c1/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_3640-scaled.jpg,,TRUE, +N1,22404,sortie-607a51e6-7ab6-4ab2-8343-5a40df9e6c5a,https://biolit.fr/sorties/sortie-607a51e6-7ab6-4ab2-8343-5a40df9e6c5a/,NAUSICAA,,07/04/2014,11.0000000,12.0000000,50.828499000000,1.589897000000,,Plage du Noirda,22073,observation-607a51e6-7ab6-4ab2-8343-5a40df9e6c5a,https://biolit.fr/observations/observation-607a51e6-7ab6-4ab2-8343-5a40df9e6c5a/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1509_0.jpg,,TRUE, +N1,22405,sortie-acc706f3-4f63-41c1-bcd8-462ebcebfcc5,https://biolit.fr/sorties/sortie-acc706f3-4f63-41c1-bcd8-462ebcebfcc5/,Anne Bronnec,,5/29/2014 0:00,10.0000000,11.0000000,48.362272000000,-4.553335000000,,"Brest, Ste Anne du Portzic",22075,observation-acc706f3-4f63-41c1-bcd8-462ebcebfcc5,https://biolit.fr/observations/observation-acc706f3-4f63-41c1-bcd8-462ebcebfcc5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Fucus-spirale_Monodonte.jpg,,TRUE, +N1,22405,sortie-acc706f3-4f63-41c1-bcd8-462ebcebfcc5,https://biolit.fr/sorties/sortie-acc706f3-4f63-41c1-bcd8-462ebcebfcc5/,Anne Bronnec,,5/29/2014 0:00,10.0000000,11.0000000,48.362272000000,-4.553335000000,,"Brest, Ste Anne du Portzic",22077,observation-acc706f3-4f63-41c1-bcd8-462ebcebfcc5-2,https://biolit.fr/observations/observation-acc706f3-4f63-41c1-bcd8-462ebcebfcc5-2/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Fucus-spirale_Gibule-ombiliquee.jpg,,TRUE, +N1,22405,sortie-acc706f3-4f63-41c1-bcd8-462ebcebfcc5,https://biolit.fr/sorties/sortie-acc706f3-4f63-41c1-bcd8-462ebcebfcc5/,Anne Bronnec,,5/29/2014 0:00,10.0000000,11.0000000,48.362272000000,-4.553335000000,,"Brest, Ste Anne du Portzic",22079,observation-acc706f3-4f63-41c1-bcd8-462ebcebfcc5-3,https://biolit.fr/observations/observation-acc706f3-4f63-41c1-bcd8-462ebcebfcc5-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Fucus-serratus_Littorine-obtuse.jpg,,TRUE, +N1,22405,sortie-acc706f3-4f63-41c1-bcd8-462ebcebfcc5,https://biolit.fr/sorties/sortie-acc706f3-4f63-41c1-bcd8-462ebcebfcc5/,Anne Bronnec,,5/29/2014 0:00,10.0000000,11.0000000,48.362272000000,-4.553335000000,,"Brest, Ste Anne du Portzic",22081,observation-acc706f3-4f63-41c1-bcd8-462ebcebfcc5-4,https://biolit.fr/observations/observation-acc706f3-4f63-41c1-bcd8-462ebcebfcc5-4/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Fucus-serratus_Gibule-ombiliquee.jpg,,TRUE, +N1,22405,sortie-acc706f3-4f63-41c1-bcd8-462ebcebfcc5,https://biolit.fr/sorties/sortie-acc706f3-4f63-41c1-bcd8-462ebcebfcc5/,Anne Bronnec,,5/29/2014 0:00,10.0000000,11.0000000,48.362272000000,-4.553335000000,,"Brest, Ste Anne du Portzic",22083,observation-acc706f3-4f63-41c1-bcd8-462ebcebfcc5-5,https://biolit.fr/observations/observation-acc706f3-4f63-41c1-bcd8-462ebcebfcc5-5/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Fucus-serratus_Bigorneau.jpg,,TRUE, +N1,22405,sortie-acc706f3-4f63-41c1-bcd8-462ebcebfcc5,https://biolit.fr/sorties/sortie-acc706f3-4f63-41c1-bcd8-462ebcebfcc5/,Anne Bronnec,,5/29/2014 0:00,10.0000000,11.0000000,48.362272000000,-4.553335000000,,"Brest, Ste Anne du Portzic",22085,observation-acc706f3-4f63-41c1-bcd8-462ebcebfcc5-6,https://biolit.fr/observations/observation-acc706f3-4f63-41c1-bcd8-462ebcebfcc5-6/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Fucus serratus-scaled.jpg,,TRUE, +N1,22405,sortie-acc706f3-4f63-41c1-bcd8-462ebcebfcc5,https://biolit.fr/sorties/sortie-acc706f3-4f63-41c1-bcd8-462ebcebfcc5/,Anne Bronnec,,5/29/2014 0:00,10.0000000,11.0000000,48.362272000000,-4.553335000000,,"Brest, Ste Anne du Portzic",22086,observation-acc706f3-4f63-41c1-bcd8-462ebcebfcc5-7,https://biolit.fr/observations/observation-acc706f3-4f63-41c1-bcd8-462ebcebfcc5-7/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Fucus-serratus2.jpg,,TRUE, +N1,22406,sortie-f97cf7e7-6afc-4097-a49e-78a89d5065c6,https://biolit.fr/sorties/sortie-f97cf7e7-6afc-4097-a49e-78a89d5065c6/,Guigui Nature,,6/26/2014 0:00,14.0000000,15.0000000,48.642124000000,-2.074427000000,,Estran de Saint Enogat,22088,observation-f97cf7e7-6afc-4097-a49e-78a89d5065c6,https://biolit.fr/observations/observation-f97cf7e7-6afc-4097-a49e-78a89d5065c6/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5312-scaled.jpg,,TRUE, +N1,22406,sortie-f97cf7e7-6afc-4097-a49e-78a89d5065c6,https://biolit.fr/sorties/sortie-f97cf7e7-6afc-4097-a49e-78a89d5065c6/,Guigui Nature,,6/26/2014 0:00,14.0000000,15.0000000,48.642124000000,-2.074427000000,,Estran de Saint Enogat,22090,observation-f97cf7e7-6afc-4097-a49e-78a89d5065c6-2,https://biolit.fr/observations/observation-f97cf7e7-6afc-4097-a49e-78a89d5065c6-2/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5313-scaled.jpg,,TRUE, +N1,22407,sortie-9c9ce6b2-eb25-4574-b8e1-14a42d120e72,https://biolit.fr/sorties/sortie-9c9ce6b2-eb25-4574-b8e1-14a42d120e72/,Guigui Nature,,6/26/2014 0:00,14.0000000,15.0000000,48.642124000000,-2.074427000000,,Estran de Saint Enogat,22092,observation-9c9ce6b2-eb25-4574-b8e1-14a42d120e72,https://biolit.fr/observations/observation-9c9ce6b2-eb25-4574-b8e1-14a42d120e72/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5312-scaled.jpg,,TRUE, +N1,22407,sortie-9c9ce6b2-eb25-4574-b8e1-14a42d120e72,https://biolit.fr/sorties/sortie-9c9ce6b2-eb25-4574-b8e1-14a42d120e72/,Guigui Nature,,6/26/2014 0:00,14.0000000,15.0000000,48.642124000000,-2.074427000000,,Estran de Saint Enogat,22093,observation-9c9ce6b2-eb25-4574-b8e1-14a42d120e72-2,https://biolit.fr/observations/observation-9c9ce6b2-eb25-4574-b8e1-14a42d120e72-2/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5313-scaled.jpg,,TRUE, +N1,22408,sortie-f230b22f-4a14-4c8b-8275-d1092e78bae4,https://biolit.fr/sorties/sortie-f230b22f-4a14-4c8b-8275-d1092e78bae4/,Guigui Nature,,6/25/2014 0:00,14.0000000,15.0000000,48.642138000000,-2.074448000000,,estran de saint enogat,22094,observation-f230b22f-4a14-4c8b-8275-d1092e78bae4,https://biolit.fr/observations/observation-f230b22f-4a14-4c8b-8275-d1092e78bae4/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5325-scaled.jpg,,TRUE, +N1,22408,sortie-f230b22f-4a14-4c8b-8275-d1092e78bae4,https://biolit.fr/sorties/sortie-f230b22f-4a14-4c8b-8275-d1092e78bae4/,Guigui Nature,,6/25/2014 0:00,14.0000000,15.0000000,48.642138000000,-2.074448000000,,estran de saint enogat,22096,observation-f230b22f-4a14-4c8b-8275-d1092e78bae4-2,https://biolit.fr/observations/observation-f230b22f-4a14-4c8b-8275-d1092e78bae4-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5326-scaled.jpg,,TRUE, +N1,22408,sortie-f230b22f-4a14-4c8b-8275-d1092e78bae4,https://biolit.fr/sorties/sortie-f230b22f-4a14-4c8b-8275-d1092e78bae4/,Guigui Nature,,6/25/2014 0:00,14.0000000,15.0000000,48.642138000000,-2.074448000000,,estran de saint enogat,22098,observation-f230b22f-4a14-4c8b-8275-d1092e78bae4-3,https://biolit.fr/observations/observation-f230b22f-4a14-4c8b-8275-d1092e78bae4-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5327-scaled.jpg,,TRUE, +N1,22408,sortie-f230b22f-4a14-4c8b-8275-d1092e78bae4,https://biolit.fr/sorties/sortie-f230b22f-4a14-4c8b-8275-d1092e78bae4/,Guigui Nature,,6/25/2014 0:00,14.0000000,15.0000000,48.642138000000,-2.074448000000,,estran de saint enogat,22100,observation-f230b22f-4a14-4c8b-8275-d1092e78bae4-4,https://biolit.fr/observations/observation-f230b22f-4a14-4c8b-8275-d1092e78bae4-4/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5328-scaled.jpg,,TRUE, +N1,22408,sortie-f230b22f-4a14-4c8b-8275-d1092e78bae4,https://biolit.fr/sorties/sortie-f230b22f-4a14-4c8b-8275-d1092e78bae4/,Guigui Nature,,6/25/2014 0:00,14.0000000,15.0000000,48.642138000000,-2.074448000000,,estran de saint enogat,22102,observation-f230b22f-4a14-4c8b-8275-d1092e78bae4-5,https://biolit.fr/observations/observation-f230b22f-4a14-4c8b-8275-d1092e78bae4-5/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5329-scaled.jpg,,TRUE, +N1,22408,sortie-f230b22f-4a14-4c8b-8275-d1092e78bae4,https://biolit.fr/sorties/sortie-f230b22f-4a14-4c8b-8275-d1092e78bae4/,Guigui Nature,,6/25/2014 0:00,14.0000000,15.0000000,48.642138000000,-2.074448000000,,estran de saint enogat,22104,observation-f230b22f-4a14-4c8b-8275-d1092e78bae4-6,https://biolit.fr/observations/observation-f230b22f-4a14-4c8b-8275-d1092e78bae4-6/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5330-scaled.jpg,,TRUE, +N1,22408,sortie-f230b22f-4a14-4c8b-8275-d1092e78bae4,https://biolit.fr/sorties/sortie-f230b22f-4a14-4c8b-8275-d1092e78bae4/,Guigui Nature,,6/25/2014 0:00,14.0000000,15.0000000,48.642138000000,-2.074448000000,,estran de saint enogat,22106,observation-f230b22f-4a14-4c8b-8275-d1092e78bae4-7,https://biolit.fr/observations/observation-f230b22f-4a14-4c8b-8275-d1092e78bae4-7/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5331-scaled.jpg,,TRUE, +N1,22409,sortie-ee037877-a161-4019-9cf4-3b8496dddc22,https://biolit.fr/sorties/sortie-ee037877-a161-4019-9cf4-3b8496dddc22/,PBLOT,,6/13/2014 0:00,10.0000000,12.0000000,47.301223000000,-2.529383000000,,Le Croisic,22108,observation-ee037877-a161-4019-9cf4-3b8496dddc22,https://biolit.fr/observations/observation-ee037877-a161-4019-9cf4-3b8496dddc22/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/patelle.jpg,,TRUE, +N1,22410,sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0,https://biolit.fr/sorties/sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0/,NAUSICAA,,06/08/2014,16.0000000,17.0000000,50.828885000000,1.590479000000,,Audresselles,22110,observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0,https://biolit.fr/observations/observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1500.JPG,,TRUE, +N1,22410,sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0,https://biolit.fr/sorties/sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0/,NAUSICAA,,06/08/2014,16.0000000,17.0000000,50.828885000000,1.590479000000,,Audresselles,22112,observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-2,https://biolit.fr/observations/observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-2/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1519.JPG,,TRUE, +N1,22410,sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0,https://biolit.fr/sorties/sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0/,NAUSICAA,,06/08/2014,16.0000000,17.0000000,50.828885000000,1.590479000000,,Audresselles,22114,observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-3,https://biolit.fr/observations/observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1514.jpg,,TRUE, +N1,22410,sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0,https://biolit.fr/sorties/sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0/,NAUSICAA,,06/08/2014,16.0000000,17.0000000,50.828885000000,1.590479000000,,Audresselles,22116,observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-4,https://biolit.fr/observations/observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-4/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1498.JPG,,TRUE, +N1,22410,sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0,https://biolit.fr/sorties/sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0/,NAUSICAA,,06/08/2014,16.0000000,17.0000000,50.828885000000,1.590479000000,,Audresselles,22118,observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-5,https://biolit.fr/observations/observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-5/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1502.JPG,,TRUE, +N1,22410,sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0,https://biolit.fr/sorties/sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0/,NAUSICAA,,06/08/2014,16.0000000,17.0000000,50.828885000000,1.590479000000,,Audresselles,22120,observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-6,https://biolit.fr/observations/observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-6/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1503.JPG,,TRUE, +N1,22410,sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0,https://biolit.fr/sorties/sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0/,NAUSICAA,,06/08/2014,16.0000000,17.0000000,50.828885000000,1.590479000000,,Audresselles,22122,observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-7,https://biolit.fr/observations/observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-7/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1506.JPG,,TRUE, +N1,22410,sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0,https://biolit.fr/sorties/sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0/,NAUSICAA,,06/08/2014,16.0000000,17.0000000,50.828885000000,1.590479000000,,Audresselles,22124,observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-8,https://biolit.fr/observations/observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-8/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1508.JPG,,TRUE, +N1,22410,sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0,https://biolit.fr/sorties/sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0/,NAUSICAA,,06/08/2014,16.0000000,17.0000000,50.828885000000,1.590479000000,,Audresselles,22126,observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-9,https://biolit.fr/observations/observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-9/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1509-scaled.jpg,,FALSE, +N1,22410,sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0,https://biolit.fr/sorties/sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0/,NAUSICAA,,06/08/2014,16.0000000,17.0000000,50.828885000000,1.590479000000,,Audresselles,22127,observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-10,https://biolit.fr/observations/observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-10/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1510.JPG,,TRUE, +N1,22410,sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0,https://biolit.fr/sorties/sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0/,NAUSICAA,,06/08/2014,16.0000000,17.0000000,50.828885000000,1.590479000000,,Audresselles,22129,observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-11,https://biolit.fr/observations/observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-11/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1511.JPG,,FALSE, +N1,22410,sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0,https://biolit.fr/sorties/sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0/,NAUSICAA,,06/08/2014,16.0000000,17.0000000,50.828885000000,1.590479000000,,Audresselles,22131,observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-12,https://biolit.fr/observations/observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-12/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1512.JPG,,FALSE, +N1,22410,sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0,https://biolit.fr/sorties/sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0/,NAUSICAA,,06/08/2014,16.0000000,17.0000000,50.828885000000,1.590479000000,,Audresselles,22133,observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-13,https://biolit.fr/observations/observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-13/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1513.JPG,,TRUE, +N1,22410,sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0,https://biolit.fr/sorties/sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0/,NAUSICAA,,06/08/2014,16.0000000,17.0000000,50.828885000000,1.590479000000,,Audresselles,22135,observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-14,https://biolit.fr/observations/observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-14/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1514_0.jpg,,TRUE, +N1,22410,sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0,https://biolit.fr/sorties/sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0/,NAUSICAA,,06/08/2014,16.0000000,17.0000000,50.828885000000,1.590479000000,,Audresselles,22137,observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-15,https://biolit.fr/observations/observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-15/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1516.JPG,,FALSE, +N1,22411,sortie-23caf513-bf32-407b-b16e-a923d14da7bd,https://biolit.fr/sorties/sortie-23caf513-bf32-407b-b16e-a923d14da7bd/,Observe la nature,,06/03/2014,16.0000000,16.0:35,48.599088000000,-2.555720000000,,Plage de Piegu Pleneuf val andré,22139,observation-23caf513-bf32-407b-b16e-a923d14da7bd,https://biolit.fr/observations/observation-23caf513-bf32-407b-b16e-a923d14da7bd/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC04063_0-scaled.jpg,,TRUE, +N1,22411,sortie-23caf513-bf32-407b-b16e-a923d14da7bd,https://biolit.fr/sorties/sortie-23caf513-bf32-407b-b16e-a923d14da7bd/,Observe la nature,,06/03/2014,16.0000000,16.0:35,48.599088000000,-2.555720000000,,Plage de Piegu Pleneuf val andré,22141,observation-23caf513-bf32-407b-b16e-a923d14da7bd-2,https://biolit.fr/observations/observation-23caf513-bf32-407b-b16e-a923d14da7bd-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC04058_0-scaled.jpg,,TRUE, +N1,22411,sortie-23caf513-bf32-407b-b16e-a923d14da7bd,https://biolit.fr/sorties/sortie-23caf513-bf32-407b-b16e-a923d14da7bd/,Observe la nature,,06/03/2014,16.0000000,16.0:35,48.599088000000,-2.555720000000,,Plage de Piegu Pleneuf val andré,22143,observation-23caf513-bf32-407b-b16e-a923d14da7bd-3,https://biolit.fr/observations/observation-23caf513-bf32-407b-b16e-a923d14da7bd-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/POURPRE_0-scaled.jpg,,TRUE, +N1,22412,sortie-6de21c1f-842d-43b0-9654-675738a928e5,https://biolit.fr/sorties/sortie-6de21c1f-842d-43b0-9654-675738a928e5/,NAUSICAA,,5/24/2014 0:00,17.0000000,18.0000000,50.828844000000,1.590276000000,,Noirda Audresselles,22145,observation-6de21c1f-842d-43b0-9654-675738a928e5,https://biolit.fr/observations/observation-6de21c1f-842d-43b0-9654-675738a928e5/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/05/DSCN6520_1.JPG,,TRUE, +N1,22412,sortie-6de21c1f-842d-43b0-9654-675738a928e5,https://biolit.fr/sorties/sortie-6de21c1f-842d-43b0-9654-675738a928e5/,NAUSICAA,,5/24/2014 0:00,17.0000000,18.0000000,50.828844000000,1.590276000000,,Noirda Audresselles,22147,observation-6de21c1f-842d-43b0-9654-675738a928e5-2,https://biolit.fr/observations/observation-6de21c1f-842d-43b0-9654-675738a928e5-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN6518.JPG,,FALSE, +N1,22412,sortie-6de21c1f-842d-43b0-9654-675738a928e5,https://biolit.fr/sorties/sortie-6de21c1f-842d-43b0-9654-675738a928e5/,NAUSICAA,,5/24/2014 0:00,17.0000000,18.0000000,50.828844000000,1.590276000000,,Noirda Audresselles,22149,observation-6de21c1f-842d-43b0-9654-675738a928e5-3,https://biolit.fr/observations/observation-6de21c1f-842d-43b0-9654-675738a928e5-3/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/DSCN6510.JPG,,TRUE, +N1,22412,sortie-6de21c1f-842d-43b0-9654-675738a928e5,https://biolit.fr/sorties/sortie-6de21c1f-842d-43b0-9654-675738a928e5/,NAUSICAA,,5/24/2014 0:00,17.0000000,18.0000000,50.828844000000,1.590276000000,,Noirda Audresselles,22151,observation-6de21c1f-842d-43b0-9654-675738a928e5-4,https://biolit.fr/observations/observation-6de21c1f-842d-43b0-9654-675738a928e5-4/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/DSCN6509.JPG,,TRUE, +N1,22412,sortie-6de21c1f-842d-43b0-9654-675738a928e5,https://biolit.fr/sorties/sortie-6de21c1f-842d-43b0-9654-675738a928e5/,NAUSICAA,,5/24/2014 0:00,17.0000000,18.0000000,50.828844000000,1.590276000000,,Noirda Audresselles,22153,observation-6de21c1f-842d-43b0-9654-675738a928e5-5,https://biolit.fr/observations/observation-6de21c1f-842d-43b0-9654-675738a928e5-5/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/DSCN6508.JPG,,TRUE, +N1,22412,sortie-6de21c1f-842d-43b0-9654-675738a928e5,https://biolit.fr/sorties/sortie-6de21c1f-842d-43b0-9654-675738a928e5/,NAUSICAA,,5/24/2014 0:00,17.0000000,18.0000000,50.828844000000,1.590276000000,,Noirda Audresselles,22155,observation-6de21c1f-842d-43b0-9654-675738a928e5-6,https://biolit.fr/observations/observation-6de21c1f-842d-43b0-9654-675738a928e5-6/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/DSCN6507.JPG,,TRUE, +N1,22413,sortie-b182ad22-e341-47a8-aa51-3b49cea98bb5,https://biolit.fr/sorties/sortie-b182ad22-e341-47a8-aa51-3b49cea98bb5/,ESTRAN Cité de la Mer,,5/19/2014 0:00,9.0000000,11.0000000,49.925626000000,1.064163000000,,"Dieppe, bas fort blanc",22157,observation-b182ad22-e341-47a8-aa51-3b49cea98bb5,https://biolit.fr/observations/observation-b182ad22-e341-47a8-aa51-3b49cea98bb5/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P5190056.JPG,,TRUE, +N1,22413,sortie-b182ad22-e341-47a8-aa51-3b49cea98bb5,https://biolit.fr/sorties/sortie-b182ad22-e341-47a8-aa51-3b49cea98bb5/,ESTRAN Cité de la Mer,,5/19/2014 0:00,9.0000000,11.0000000,49.925626000000,1.064163000000,,"Dieppe, bas fort blanc",22159,observation-b182ad22-e341-47a8-aa51-3b49cea98bb5-2,https://biolit.fr/observations/observation-b182ad22-e341-47a8-aa51-3b49cea98bb5-2/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P5190057.JPG,,TRUE, +N1,22413,sortie-b182ad22-e341-47a8-aa51-3b49cea98bb5,https://biolit.fr/sorties/sortie-b182ad22-e341-47a8-aa51-3b49cea98bb5/,ESTRAN Cité de la Mer,,5/19/2014 0:00,9.0000000,11.0000000,49.925626000000,1.064163000000,,"Dieppe, bas fort blanc",22161,observation-b182ad22-e341-47a8-aa51-3b49cea98bb5-3,https://biolit.fr/observations/observation-b182ad22-e341-47a8-aa51-3b49cea98bb5-3/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P5190072.JPG,,TRUE, +N1,22413,sortie-b182ad22-e341-47a8-aa51-3b49cea98bb5,https://biolit.fr/sorties/sortie-b182ad22-e341-47a8-aa51-3b49cea98bb5/,ESTRAN Cité de la Mer,,5/19/2014 0:00,9.0000000,11.0000000,49.925626000000,1.064163000000,,"Dieppe, bas fort blanc",22163,observation-b182ad22-e341-47a8-aa51-3b49cea98bb5-4,https://biolit.fr/observations/observation-b182ad22-e341-47a8-aa51-3b49cea98bb5-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P5190077.JPG,,TRUE, +N1,22413,sortie-b182ad22-e341-47a8-aa51-3b49cea98bb5,https://biolit.fr/sorties/sortie-b182ad22-e341-47a8-aa51-3b49cea98bb5/,ESTRAN Cité de la Mer,,5/19/2014 0:00,9.0000000,11.0000000,49.925626000000,1.064163000000,,"Dieppe, bas fort blanc",22165,observation-b182ad22-e341-47a8-aa51-3b49cea98bb5-5,https://biolit.fr/observations/observation-b182ad22-e341-47a8-aa51-3b49cea98bb5-5/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P5190078.JPG,,TRUE, +N1,22414,sortie-2ffe57c3-75a1-4b23-86b1-3abb38f4d5fd,https://biolit.fr/sorties/sortie-2ffe57c3-75a1-4b23-86b1-3abb38f4d5fd/,Anne Bronnec,,05/10/2014,18.0000000,18.0000000,48.520642000000,-4.765288000000,,Argenton en Landunvez,22167,observation-2ffe57c3-75a1-4b23-86b1-3abb38f4d5fd,https://biolit.fr/observations/observation-2ffe57c3-75a1-4b23-86b1-3abb38f4d5fd/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Ascophyllum-Littorine fabilis_1.jpg,,TRUE, +N1,22415,sortie-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0,https://biolit.fr/sorties/sortie-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0/,Anne Bronnec,,5/19/2014 0:00,20.0000000,22.0000000,48.362145000000,-4.551929000000,,Brest Ste Anne du Portzic,22169,observation-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0,https://biolit.fr/observations/observation-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Ascophyllum-Littorine fabilis.jpg,,TRUE, +N1,22415,sortie-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0,https://biolit.fr/sorties/sortie-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0/,Anne Bronnec,,5/19/2014 0:00,20.0000000,22.0000000,48.362145000000,-4.551929000000,,Brest Ste Anne du Portzic,22171,observation-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0-2,https://biolit.fr/observations/observation-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Ascophyllum-Littorine obtuse.jpg,,TRUE, +N1,22415,sortie-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0,https://biolit.fr/sorties/sortie-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0/,Anne Bronnec,,5/19/2014 0:00,20.0000000,22.0000000,48.362145000000,-4.551929000000,,Brest Ste Anne du Portzic,22173,observation-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0-3,https://biolit.fr/observations/observation-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Fucus spirale-Littorine fabilis.jpg,,TRUE, +N1,22415,sortie-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0,https://biolit.fr/sorties/sortie-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0/,Anne Bronnec,,5/19/2014 0:00,20.0000000,22.0000000,48.362145000000,-4.551929000000,,Brest Ste Anne du Portzic,22175,observation-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0-4,https://biolit.fr/observations/observation-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0-4/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Pelvétie-Littorine obtuse_0.jpg,,TRUE, +N1,22415,sortie-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0,https://biolit.fr/sorties/sortie-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0/,Anne Bronnec,,5/19/2014 0:00,20.0000000,22.0000000,48.362145000000,-4.551929000000,,Brest Ste Anne du Portzic,22177,observation-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0-5,https://biolit.fr/observations/observation-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0-5/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Ascophyllum-.jpg,,TRUE, +N1,22416,sortie-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26,https://biolit.fr/sorties/sortie-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26/,tridimeg,,04/10/2014,9.0000000,10.0000000,48.353938000000,-4.566177000000,,Petit Dellec,22179,observation-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26,https://biolit.fr/observations/observation-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5058_0-scaled.jpg,,TRUE, +N1,22416,sortie-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26,https://biolit.fr/sorties/sortie-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26/,tridimeg,,04/10/2014,9.0000000,10.0000000,48.353938000000,-4.566177000000,,Petit Dellec,22181,observation-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26-2,https://biolit.fr/observations/observation-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26-2/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5063-scaled.jpg,,TRUE, +N1,22416,sortie-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26,https://biolit.fr/sorties/sortie-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26/,tridimeg,,04/10/2014,9.0000000,10.0000000,48.353938000000,-4.566177000000,,Petit Dellec,22183,observation-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26-3,https://biolit.fr/observations/observation-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26-3/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5078-scaled.jpg,,TRUE, +N1,22416,sortie-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26,https://biolit.fr/sorties/sortie-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26/,tridimeg,,04/10/2014,9.0000000,10.0000000,48.353938000000,-4.566177000000,,Petit Dellec,22185,observation-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26-4,https://biolit.fr/observations/observation-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26-4/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5088-scaled.jpg,,TRUE, +N1,22416,sortie-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26,https://biolit.fr/sorties/sortie-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26/,tridimeg,,04/10/2014,9.0000000,10.0000000,48.353938000000,-4.566177000000,,Petit Dellec,22187,observation-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26-5,https://biolit.fr/observations/observation-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26-5/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5133-scaled.jpg,,TRUE, +N1,22417,sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60,https://biolit.fr/sorties/sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60/,ESTRAN Cité de la Mer,,04/06/2014,11.0000000,11.0:45,49.910010000000,0.937415000000,,Plage de Sainte Marguerite sur mer,22189,observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60,https://biolit.fr/observations/observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4060016.JPG,,TRUE, +N1,22417,sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60,https://biolit.fr/sorties/sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60/,ESTRAN Cité de la Mer,,04/06/2014,11.0000000,11.0:45,49.910010000000,0.937415000000,,Plage de Sainte Marguerite sur mer,22191,observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-2,https://biolit.fr/observations/observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4060017.JPG,,TRUE, +N1,22417,sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60,https://biolit.fr/sorties/sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60/,ESTRAN Cité de la Mer,,04/06/2014,11.0000000,11.0:45,49.910010000000,0.937415000000,,Plage de Sainte Marguerite sur mer,22193,observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-3,https://biolit.fr/observations/observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-3/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4060018.JPG,,TRUE, +N1,22417,sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60,https://biolit.fr/sorties/sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60/,ESTRAN Cité de la Mer,,04/06/2014,11.0000000,11.0:45,49.910010000000,0.937415000000,,Plage de Sainte Marguerite sur mer,22195,observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-4,https://biolit.fr/observations/observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-4/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4060019.JPG,,TRUE, +N1,22417,sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60,https://biolit.fr/sorties/sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60/,ESTRAN Cité de la Mer,,04/06/2014,11.0000000,11.0:45,49.910010000000,0.937415000000,,Plage de Sainte Marguerite sur mer,22197,observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-5,https://biolit.fr/observations/observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-5/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4060020.JPG,,TRUE, +N1,22417,sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60,https://biolit.fr/sorties/sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60/,ESTRAN Cité de la Mer,,04/06/2014,11.0000000,11.0:45,49.910010000000,0.937415000000,,Plage de Sainte Marguerite sur mer,22199,observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-6,https://biolit.fr/observations/observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-6/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4060021.JPG,,TRUE, +N1,22417,sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60,https://biolit.fr/sorties/sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60/,ESTRAN Cité de la Mer,,04/06/2014,11.0000000,11.0:45,49.910010000000,0.937415000000,,Plage de Sainte Marguerite sur mer,22201,observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-7,https://biolit.fr/observations/observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-7/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4060022.JPG,,TRUE, +N1,22417,sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60,https://biolit.fr/sorties/sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60/,ESTRAN Cité de la Mer,,04/06/2014,11.0000000,11.0:45,49.910010000000,0.937415000000,,Plage de Sainte Marguerite sur mer,22203,observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-8,https://biolit.fr/observations/observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-8/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4060023.JPG,,TRUE, +N1,22417,sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60,https://biolit.fr/sorties/sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60/,ESTRAN Cité de la Mer,,04/06/2014,11.0000000,11.0:45,49.910010000000,0.937415000000,,Plage de Sainte Marguerite sur mer,22205,observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-9,https://biolit.fr/observations/observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-9/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4060024.JPG,,TRUE, +N1,22417,sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60,https://biolit.fr/sorties/sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60/,ESTRAN Cité de la Mer,,04/06/2014,11.0000000,11.0:45,49.910010000000,0.937415000000,,Plage de Sainte Marguerite sur mer,22207,observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-10,https://biolit.fr/observations/observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-10/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4060025.JPG,,TRUE, +N1,22417,sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60,https://biolit.fr/sorties/sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60/,ESTRAN Cité de la Mer,,04/06/2014,11.0000000,11.0:45,49.910010000000,0.937415000000,,Plage de Sainte Marguerite sur mer,22209,observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-11,https://biolit.fr/observations/observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-11/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4060026.JPG,,TRUE, +N1,22417,sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60,https://biolit.fr/sorties/sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60/,ESTRAN Cité de la Mer,,04/06/2014,11.0000000,11.0:45,49.910010000000,0.937415000000,,Plage de Sainte Marguerite sur mer,22211,observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-12,https://biolit.fr/observations/observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-12/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4060027.JPG,,TRUE, +N1,25774,sortie-b6faf542-426e-40df-b7f8-b53b743cff31,https://biolit.fr/sorties/sortie-b6faf542-426e-40df-b7f8-b53b743cff31/,Skol Gwital CM,,6/16/2023 0:00,13.0000000,14.0000000,48.574560000000,-4.667332000000,,"Pen ar Pont, Gwitalmeze",25738,observation-b6faf542-426e-40df-b7f8-b53b743cff31,https://biolit.fr/observations/observation-b6faf542-426e-40df-b7f8-b53b743cff31/,,,,https://biolit.fr/wp-content/uploads/2023/07/Balane et brennig - Fucus denté-scaled.jpg,,FALSE, +N1,25774,sortie-b6faf542-426e-40df-b7f8-b53b743cff31,https://biolit.fr/sorties/sortie-b6faf542-426e-40df-b7f8-b53b743cff31/,Skol Gwital CM,,6/16/2023 0:00,13.0000000,14.0000000,48.574560000000,-4.667332000000,,"Pen ar Pont, Gwitalmeze",25740,observation-b6faf542-426e-40df-b7f8-b53b743cff31-2,https://biolit.fr/observations/observation-b6faf542-426e-40df-b7f8-b53b743cff31-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Bennig - Ascophylle-scaled.jpg,,FALSE, +N1,25774,sortie-b6faf542-426e-40df-b7f8-b53b743cff31,https://biolit.fr/sorties/sortie-b6faf542-426e-40df-b7f8-b53b743cff31/,Skol Gwital CM,,6/16/2023 0:00,13.0000000,14.0000000,48.574560000000,-4.667332000000,,"Pen ar Pont, Gwitalmeze",25742,observation-b6faf542-426e-40df-b7f8-b53b743cff31-3,https://biolit.fr/observations/observation-b6faf542-426e-40df-b7f8-b53b743cff31-3/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Gibbule - Fucus spiralée-scaled.jpg,,TRUE, +N1,25774,sortie-b6faf542-426e-40df-b7f8-b53b743cff31,https://biolit.fr/sorties/sortie-b6faf542-426e-40df-b7f8-b53b743cff31/,Skol Gwital CM,,6/16/2023 0:00,13.0000000,14.0000000,48.574560000000,-4.667332000000,,"Pen ar Pont, Gwitalmeze",25744,observation-b6faf542-426e-40df-b7f8-b53b743cff31-4,https://biolit.fr/observations/observation-b6faf542-426e-40df-b7f8-b53b743cff31-4/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorine - Ascophylle Noueux-scaled.jpg,,TRUE, +N1,25774,sortie-b6faf542-426e-40df-b7f8-b53b743cff31,https://biolit.fr/sorties/sortie-b6faf542-426e-40df-b7f8-b53b743cff31/,Skol Gwital CM,,6/16/2023 0:00,13.0000000,14.0000000,48.574560000000,-4.667332000000,,"Pen ar Pont, Gwitalmeze",25746,observation-b6faf542-426e-40df-b7f8-b53b743cff31-5,https://biolit.fr/observations/observation-b6faf542-426e-40df-b7f8-b53b743cff31-5/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorine - Fucus spiralé-scaled.jpg,,TRUE, +N1,25774,sortie-b6faf542-426e-40df-b7f8-b53b743cff31,https://biolit.fr/sorties/sortie-b6faf542-426e-40df-b7f8-b53b743cff31/,Skol Gwital CM,,6/16/2023 0:00,13.0000000,14.0000000,48.574560000000,-4.667332000000,,"Pen ar Pont, Gwitalmeze",25748,observation-b6faf542-426e-40df-b7f8-b53b743cff31-6,https://biolit.fr/observations/observation-b6faf542-426e-40df-b7f8-b53b743cff31-6/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorine sur fucus denté-scaled.jpg,,TRUE, +N1,25774,sortie-b6faf542-426e-40df-b7f8-b53b743cff31,https://biolit.fr/sorties/sortie-b6faf542-426e-40df-b7f8-b53b743cff31/,Skol Gwital CM,,6/16/2023 0:00,13.0000000,14.0000000,48.574560000000,-4.667332000000,,"Pen ar Pont, Gwitalmeze",25750,observation-b6faf542-426e-40df-b7f8-b53b743cff31-7,https://biolit.fr/observations/observation-b6faf542-426e-40df-b7f8-b53b743cff31-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Monodonte - Ascophylle-scaled.jpg,,FALSE, +N1,25774,sortie-b6faf542-426e-40df-b7f8-b53b743cff31,https://biolit.fr/sorties/sortie-b6faf542-426e-40df-b7f8-b53b743cff31/,Skol Gwital CM,,6/16/2023 0:00,13.0000000,14.0000000,48.574560000000,-4.667332000000,,"Pen ar Pont, Gwitalmeze",25752,observation-b6faf542-426e-40df-b7f8-b53b743cff31-8,https://biolit.fr/observations/observation-b6faf542-426e-40df-b7f8-b53b743cff31-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Moule - Ascophylle-scaled.jpg,,FALSE, +N1,25774,sortie-b6faf542-426e-40df-b7f8-b53b743cff31,https://biolit.fr/sorties/sortie-b6faf542-426e-40df-b7f8-b53b743cff31/,Skol Gwital CM,,6/16/2023 0:00,13.0000000,14.0000000,48.574560000000,-4.667332000000,,"Pen ar Pont, Gwitalmeze",25754,observation-b6faf542-426e-40df-b7f8-b53b743cff31-9,https://biolit.fr/observations/observation-b6faf542-426e-40df-b7f8-b53b743cff31-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Balane - Ascophylle noueux-scaled.jpg,,FALSE, +N1,25774,sortie-b6faf542-426e-40df-b7f8-b53b743cff31,https://biolit.fr/sorties/sortie-b6faf542-426e-40df-b7f8-b53b743cff31/,Skol Gwital CM,,6/16/2023 0:00,13.0000000,14.0000000,48.574560000000,-4.667332000000,,"Pen ar Pont, Gwitalmeze",25756,observation-b6faf542-426e-40df-b7f8-b53b743cff31-10,https://biolit.fr/observations/observation-b6faf542-426e-40df-b7f8-b53b743cff31-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule commune - Ascophylle-scaled.jpg,,FALSE, +N1,25774,sortie-b6faf542-426e-40df-b7f8-b53b743cff31,https://biolit.fr/sorties/sortie-b6faf542-426e-40df-b7f8-b53b743cff31/,Skol Gwital CM,,6/16/2023 0:00,13.0000000,14.0000000,48.574560000000,-4.667332000000,,"Pen ar Pont, Gwitalmeze",25758,observation-b6faf542-426e-40df-b7f8-b53b743cff31-11,https://biolit.fr/observations/observation-b6faf542-426e-40df-b7f8-b53b743cff31-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule commune - Fucus spriralé-scaled.jpg,,FALSE, +N1,25775,sortie-db143bd4-2ae4-447e-ad85-ad6095694f1b,https://biolit.fr/sorties/sortie-db143bd4-2ae4-447e-ad85-ad6095694f1b/,egaborit@donbosco.asso.fr,,6/20/2023 0:00,15.0000000,16.0000000,48.318576000000,-4.282370000000,,Grève du Rohou,25760,observation-db143bd4-2ae4-447e-ad85-ad6095694f1b,https://biolit.fr/observations/observation-db143bd4-2ae4-447e-ad85-ad6095694f1b/,,,,https://biolit.fr/wp-content/uploads/2023/07/230620 - st urbain - bigorneau-scaled.jpg,,FALSE, +N1,25775,sortie-db143bd4-2ae4-447e-ad85-ad6095694f1b,https://biolit.fr/sorties/sortie-db143bd4-2ae4-447e-ad85-ad6095694f1b/,egaborit@donbosco.asso.fr,,6/20/2023 0:00,15.0000000,16.0000000,48.318576000000,-4.282370000000,,Grève du Rohou,25762,observation-db143bd4-2ae4-447e-ad85-ad6095694f1b-2,https://biolit.fr/observations/observation-db143bd4-2ae4-447e-ad85-ad6095694f1b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/230620 - st urbain - huitre-scaled.jpg,,FALSE, +N1,25775,sortie-db143bd4-2ae4-447e-ad85-ad6095694f1b,https://biolit.fr/sorties/sortie-db143bd4-2ae4-447e-ad85-ad6095694f1b/,egaborit@donbosco.asso.fr,,6/20/2023 0:00,15.0000000,16.0000000,48.318576000000,-4.282370000000,,Grève du Rohou,25764,observation-db143bd4-2ae4-447e-ad85-ad6095694f1b-3,https://biolit.fr/observations/observation-db143bd4-2ae4-447e-ad85-ad6095694f1b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/230620 - st urbain - littorine obtuse-scaled.jpg,,FALSE, +N1,25776,sortie-538bb231-ed4b-4825-92e3-e10f1ff274c3,https://biolit.fr/sorties/sortie-538bb231-ed4b-4825-92e3-e10f1ff274c3/,Agathe Bouet,,5/25/2023 0:00,16.0000000,17.0000000,48.636481000000,-2.055563000000,Planète Mer,"Dinard, Saint Enogat",25766,observation-538bb231-ed4b-4825-92e3-e10f1ff274c3,https://biolit.fr/observations/observation-538bb231-ed4b-4825-92e3-e10f1ff274c3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/©A.Bouet (3)-scaled.jpg,,TRUE, +N1,25777,sortie-bed71260-66a7-4851-9e72-8d590bffc342,https://biolit.fr/sorties/sortie-bed71260-66a7-4851-9e72-8d590bffc342/,marion.nourry.auditeur@lecnam.net,,5/18/2023 0:00,10.0000000,11.0000000,46.694192000000,-1.959409000000,,Plage de la Pelle à Porteau,25767,observation-bed71260-66a7-4851-9e72-8d590bffc342,https://biolit.fr/observations/observation-bed71260-66a7-4851-9e72-8d590bffc342/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20230518_110540-scaled.jpg,,FALSE, +N1,25777,sortie-bed71260-66a7-4851-9e72-8d590bffc342,https://biolit.fr/sorties/sortie-bed71260-66a7-4851-9e72-8d590bffc342/,marion.nourry.auditeur@lecnam.net,,5/18/2023 0:00,10.0000000,11.0000000,46.694192000000,-1.959409000000,,Plage de la Pelle à Porteau,25768,observation-bed71260-66a7-4851-9e72-8d590bffc342-2,https://biolit.fr/observations/observation-bed71260-66a7-4851-9e72-8d590bffc342-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20230518_112128-scaled.jpg,,FALSE, +N1,25777,sortie-bed71260-66a7-4851-9e72-8d590bffc342,https://biolit.fr/sorties/sortie-bed71260-66a7-4851-9e72-8d590bffc342/,marion.nourry.auditeur@lecnam.net,,5/18/2023 0:00,10.0000000,11.0000000,46.694192000000,-1.959409000000,,Plage de la Pelle à Porteau,25769,observation-bed71260-66a7-4851-9e72-8d590bffc342-3,https://biolit.fr/observations/observation-bed71260-66a7-4851-9e72-8d590bffc342-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/Snapchat-1701675889-scaled.jpg,,FALSE, +N1,25777,sortie-bed71260-66a7-4851-9e72-8d590bffc342,https://biolit.fr/sorties/sortie-bed71260-66a7-4851-9e72-8d590bffc342/,marion.nourry.auditeur@lecnam.net,,5/18/2023 0:00,10.0000000,11.0000000,46.694192000000,-1.959409000000,,Plage de la Pelle à Porteau,25770,observation-bed71260-66a7-4851-9e72-8d590bffc342-4,https://biolit.fr/observations/observation-bed71260-66a7-4851-9e72-8d590bffc342-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20230518_113008-scaled.jpg,,FALSE, +N1,25777,sortie-bed71260-66a7-4851-9e72-8d590bffc342,https://biolit.fr/sorties/sortie-bed71260-66a7-4851-9e72-8d590bffc342/,marion.nourry.auditeur@lecnam.net,,5/18/2023 0:00,10.0000000,11.0000000,46.694192000000,-1.959409000000,,Plage de la Pelle à Porteau,25771,observation-bed71260-66a7-4851-9e72-8d590bffc342-5,https://biolit.fr/observations/observation-bed71260-66a7-4851-9e72-8d590bffc342-5/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20230518_112618-scaled.jpg,,FALSE, +N1,25778,sortie-f08e6292-3fd5-4b0c-ab49-4ecc558f1105,https://biolit.fr/sorties/sortie-f08e6292-3fd5-4b0c-ab49-4ecc558f1105/,Marine,,5/15/2023 0:00,17.0000000,17.0000000,48.638602000000,-2.069496000000,Planète Mer,Plage de saint Enogat,25772,observation-f08e6292-3fd5-4b0c-ab49-4ecc558f1105,https://biolit.fr/observations/observation-f08e6292-3fd5-4b0c-ab49-4ecc558f1105/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_20230427_145118_0-scaled.jpg,,TRUE, +N1,25779,sortie-0278946e-ba06-41e6-bcb9-c4a877b188bf,https://biolit.fr/sorties/sortie-0278946e-ba06-41e6-bcb9-c4a877b188bf/,ecole.0350508m@ac-rennes.fr,,05/02/2023,14.0000000,15.0000000,48.653834000000,-2.023699000000,Planète Mer,Saint-Malo,25773,observation-0278946e-ba06-41e6-bcb9-c4a877b188bf,https://biolit.fr/observations/observation-0278946e-ba06-41e6-bcb9-c4a877b188bf/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG-4749-scaled.jpg,,FALSE, +N1,26207,sortie-fc55b738-f48a-4a96-bc1e-4960b026aeab,https://biolit.fr/sorties/sortie-fc55b738-f48a-4a96-bc1e-4960b026aeab/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209487000000,5.372619000000,,"Marseille, Parc National des Calanques",25780,observation-fc55b738-f48a-4a96-bc1e-4960b026aeab,https://biolit.fr/observations/observation-fc55b738-f48a-4a96-bc1e-4960b026aeab/,Pallenis maritima,Astérolide maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6884-scaled.jpg,,TRUE, +N1,26207,sortie-fc55b738-f48a-4a96-bc1e-4960b026aeab,https://biolit.fr/sorties/sortie-fc55b738-f48a-4a96-bc1e-4960b026aeab/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209487000000,5.372619000000,,"Marseille, Parc National des Calanques",25782,observation-fc55b738-f48a-4a96-bc1e-4960b026aeab-2,https://biolit.fr/observations/observation-fc55b738-f48a-4a96-bc1e-4960b026aeab-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6896-scaled.jpg,,FALSE, +N1,26207,sortie-fc55b738-f48a-4a96-bc1e-4960b026aeab,https://biolit.fr/sorties/sortie-fc55b738-f48a-4a96-bc1e-4960b026aeab/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209487000000,5.372619000000,,"Marseille, Parc National des Calanques",25784,observation-fc55b738-f48a-4a96-bc1e-4960b026aeab-3,https://biolit.fr/observations/observation-fc55b738-f48a-4a96-bc1e-4960b026aeab-3/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6942-scaled.jpg,,TRUE, +N1,26208,sortie-b6d40ec8-451b-4885-9490-19dbb59cb06b,https://biolit.fr/sorties/sortie-b6d40ec8-451b-4885-9490-19dbb59cb06b/,Axel,,4/22/2021 0:00,13.0000000,15.0000000,43.21315400000,5.398299000000,,"Marseille, Parc National des Calanques",25786,observation-b6d40ec8-451b-4885-9490-19dbb59cb06b,https://biolit.fr/observations/observation-b6d40ec8-451b-4885-9490-19dbb59cb06b/,Pallenis maritima,Astérolide maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6791-scaled.jpg,,TRUE, +N1,26208,sortie-b6d40ec8-451b-4885-9490-19dbb59cb06b,https://biolit.fr/sorties/sortie-b6d40ec8-451b-4885-9490-19dbb59cb06b/,Axel,,4/22/2021 0:00,13.0000000,15.0000000,43.21315400000,5.398299000000,,"Marseille, Parc National des Calanques",25788,observation-b6d40ec8-451b-4885-9490-19dbb59cb06b-2,https://biolit.fr/observations/observation-b6d40ec8-451b-4885-9490-19dbb59cb06b-2/,Pallenis maritima,Astérolide maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6795-scaled.jpg,,TRUE, +N1,26208,sortie-b6d40ec8-451b-4885-9490-19dbb59cb06b,https://biolit.fr/sorties/sortie-b6d40ec8-451b-4885-9490-19dbb59cb06b/,Axel,,4/22/2021 0:00,13.0000000,15.0000000,43.21315400000,5.398299000000,,"Marseille, Parc National des Calanques",25790,observation-b6d40ec8-451b-4885-9490-19dbb59cb06b-3,https://biolit.fr/observations/observation-b6d40ec8-451b-4885-9490-19dbb59cb06b-3/,Limonium vulgare,Lavande de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6799-scaled.jpg,,TRUE, +N1,26208,sortie-b6d40ec8-451b-4885-9490-19dbb59cb06b,https://biolit.fr/sorties/sortie-b6d40ec8-451b-4885-9490-19dbb59cb06b/,Axel,,4/22/2021 0:00,13.0000000,15.0000000,43.21315400000,5.398299000000,,"Marseille, Parc National des Calanques",25792,observation-b6d40ec8-451b-4885-9490-19dbb59cb06b-4,https://biolit.fr/observations/observation-b6d40ec8-451b-4885-9490-19dbb59cb06b-4/,Limonium vulgare,Lavande de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6804-scaled.jpg,,TRUE, +N1,26208,sortie-b6d40ec8-451b-4885-9490-19dbb59cb06b,https://biolit.fr/sorties/sortie-b6d40ec8-451b-4885-9490-19dbb59cb06b/,Axel,,4/22/2021 0:00,13.0000000,15.0000000,43.21315400000,5.398299000000,,"Marseille, Parc National des Calanques",25794,observation-b6d40ec8-451b-4885-9490-19dbb59cb06b-5,https://biolit.fr/observations/observation-b6d40ec8-451b-4885-9490-19dbb59cb06b-5/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6813-scaled.jpg,,TRUE, +N1,26209,sortie-cf92ec55-7e24-42dd-ae30-db1065ad4db2,https://biolit.fr/sorties/sortie-cf92ec55-7e24-42dd-ae30-db1065ad4db2/,Association NACOMED,,9/19/2020 0:00,17.0000000,19.0000000,41.472772000000,9.270502000000,,baie de rondinara,25796,observation-cf92ec55-7e24-42dd-ae30-db1065ad4db2,https://biolit.fr/observations/observation-cf92ec55-7e24-42dd-ae30-db1065ad4db2/,Pancratium maritimum,Lis de mer,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6525.JPG,,TRUE, +N1,26210,sortie-b6a062e4-e37d-4d2f-9daa-d2a206309449,https://biolit.fr/sorties/sortie-b6a062e4-e37d-4d2f-9daa-d2a206309449/,guydemarseille,,1/29/2020 0:00,16.0:45,18.0:45,43.213997000000,5.34116800000,,"marseille 13008, rue désiré pelaprat",25798,observation-b6a062e4-e37d-4d2f-9daa-d2a206309449,https://biolit.fr/observations/observation-b6a062e4-e37d-4d2f-9daa-d2a206309449/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-5207 seneçon à feuille de marguerite senecio leucanthemifolius-scaled.jpg,,FALSE, +N1,26210,sortie-b6a062e4-e37d-4d2f-9daa-d2a206309449,https://biolit.fr/sorties/sortie-b6a062e4-e37d-4d2f-9daa-d2a206309449/,guydemarseille,,1/29/2020 0:00,16.0:45,18.0:45,43.213997000000,5.34116800000,,"marseille 13008, rue désiré pelaprat",25800,observation-b6a062e4-e37d-4d2f-9daa-d2a206309449-2,https://biolit.fr/observations/observation-b6a062e4-e37d-4d2f-9daa-d2a206309449-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-5208-scaled.jpg,,FALSE, +N1,26210,sortie-b6a062e4-e37d-4d2f-9daa-d2a206309449,https://biolit.fr/sorties/sortie-b6a062e4-e37d-4d2f-9daa-d2a206309449/,guydemarseille,,1/29/2020 0:00,16.0:45,18.0:45,43.213997000000,5.34116800000,,"marseille 13008, rue désiré pelaprat",25802,observation-b6a062e4-e37d-4d2f-9daa-d2a206309449-3,https://biolit.fr/observations/observation-b6a062e4-e37d-4d2f-9daa-d2a206309449-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-5210-scaled.jpg,,FALSE, +N1,26210,sortie-b6a062e4-e37d-4d2f-9daa-d2a206309449,https://biolit.fr/sorties/sortie-b6a062e4-e37d-4d2f-9daa-d2a206309449/,guydemarseille,,1/29/2020 0:00,16.0:45,18.0:45,43.213997000000,5.34116800000,,"marseille 13008, rue désiré pelaprat",25804,observation-b6a062e4-e37d-4d2f-9daa-d2a206309449-4,https://biolit.fr/observations/observation-b6a062e4-e37d-4d2f-9daa-d2a206309449-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-5217.JPG,,FALSE, +N1,26210,sortie-b6a062e4-e37d-4d2f-9daa-d2a206309449,https://biolit.fr/sorties/sortie-b6a062e4-e37d-4d2f-9daa-d2a206309449/,guydemarseille,,1/29/2020 0:00,16.0:45,18.0:45,43.213997000000,5.34116800000,,"marseille 13008, rue désiré pelaprat",25806,observation-b6a062e4-e37d-4d2f-9daa-d2a206309449-5,https://biolit.fr/observations/observation-b6a062e4-e37d-4d2f-9daa-d2a206309449-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-5218.JPG,,FALSE, +N1,26211,sortie-59649df3-7621-45d4-bc5e-e25cfee29274,https://biolit.fr/sorties/sortie-59649df3-7621-45d4-bc5e-e25cfee29274/,Associu Mare Vivu,,08/04/2019,10.0:15,10.0000000,41.535230000000,8.856860000000,,Plage de Tizzano,25808,observation-59649df3-7621-45d4-bc5e-e25cfee29274,https://biolit.fr/observations/observation-59649df3-7621-45d4-bc5e-e25cfee29274/,Pancratium maritimum,Lis de mer,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6655 (1)-scaled.jpg,,TRUE, +N1,26212,sortie-379cb499-820d-444a-814d-ecf881553e5f,https://biolit.fr/sorties/sortie-379cb499-820d-444a-814d-ecf881553e5f/,Associu Mare Vivu,,9/15/2019 0:00,11.0000000,13.0000000,41.90097700000,8.617479000000,,Plage des îles sanguinaires,25810,observation-379cb499-820d-444a-814d-ecf881553e5f,https://biolit.fr/observations/observation-379cb499-820d-444a-814d-ecf881553e5f/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6626-scaled.jpg,,FALSE, +N1,26212,sortie-379cb499-820d-444a-814d-ecf881553e5f,https://biolit.fr/sorties/sortie-379cb499-820d-444a-814d-ecf881553e5f/,Associu Mare Vivu,,9/15/2019 0:00,11.0000000,13.0000000,41.90097700000,8.617479000000,,Plage des îles sanguinaires,25812,observation-379cb499-820d-444a-814d-ecf881553e5f-2,https://biolit.fr/observations/observation-379cb499-820d-444a-814d-ecf881553e5f-2/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6629-scaled.jpg,,TRUE, +N1,26213,sortie-3f210b80-3eb6-4e71-b8a4-a9dc7cb0b16a,https://biolit.fr/sorties/sortie-3f210b80-3eb6-4e71-b8a4-a9dc7cb0b16a/,Associu Mare Vivu,,9/15/2019 0:00,11.0000000,13.0000000,41.90097700000,8.617479000000,,Plage des îles sanguinaires,25814,observation-3f210b80-3eb6-4e71-b8a4-a9dc7cb0b16a,https://biolit.fr/observations/observation-3f210b80-3eb6-4e71-b8a4-a9dc7cb0b16a/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6626-scaled.jpg,,FALSE, +N1,26213,sortie-3f210b80-3eb6-4e71-b8a4-a9dc7cb0b16a,https://biolit.fr/sorties/sortie-3f210b80-3eb6-4e71-b8a4-a9dc7cb0b16a/,Associu Mare Vivu,,9/15/2019 0:00,11.0000000,13.0000000,41.90097700000,8.617479000000,,Plage des îles sanguinaires,25815,observation-3f210b80-3eb6-4e71-b8a4-a9dc7cb0b16a-2,https://biolit.fr/observations/observation-3f210b80-3eb6-4e71-b8a4-a9dc7cb0b16a-2/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6629-scaled.jpg,,TRUE, +N1,26214,sortie-ce4287d5-8326-4738-b128-d6bf30f61035,https://biolit.fr/sorties/sortie-ce4287d5-8326-4738-b128-d6bf30f61035/,Associu Mare Vivu,,7/15/2019 0:00,18.0000000,18.0:45,42.728660000000,9.132360000000,,plage de ghignu,25816,observation-ce4287d5-8326-4738-b128-d6bf30f61035,https://biolit.fr/observations/observation-ce4287d5-8326-4738-b128-d6bf30f61035/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6460-scaled.jpg,,FALSE, +N1,26215,sortie-88164066-33e6-4622-82a0-7eb30e91970f,https://biolit.fr/sorties/sortie-88164066-33e6-4622-82a0-7eb30e91970f/,Associu Mare Vivu,,7/15/2019 0:00,18.0000000,18.0:45,42.728748000000,9.136942000000,,plage de ghignu,25818,observation-88164066-33e6-4622-82a0-7eb30e91970f,https://biolit.fr/observations/observation-88164066-33e6-4622-82a0-7eb30e91970f/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6381_0-scaled.jpg,,TRUE, +N1,26216,sortie-95d76cb4-96d9-48bb-88d8-b68e03d1c807,https://biolit.fr/sorties/sortie-95d76cb4-96d9-48bb-88d8-b68e03d1c807/,Associu Mare Vivu,,07/08/2019,16.0:45,17.0:25,42.965833000000,9.457383000000,,Macinaggio,25820,observation-95d76cb4-96d9-48bb-88d8-b68e03d1c807,https://biolit.fr/observations/observation-95d76cb4-96d9-48bb-88d8-b68e03d1c807/,Jacobaea maritima,Cinéraire maritime,,https://biolit.fr/wp-content/uploads/2023/07/Cinéraire maritime-scaled.jpg,,TRUE, +N1,26217,sortie-a4299ae3-41ae-4ddb-b966-d2b0fbe1d373,https://biolit.fr/sorties/sortie-a4299ae3-41ae-4ddb-b966-d2b0fbe1d373/,Associu Mare Vivu,,7/26/2019 0:00,16.0000000,17.0000000,41.89830000000,8.614144000000,,Iles sanguinaires,25822,observation-a4299ae3-41ae-4ddb-b966-d2b0fbe1d373,https://biolit.fr/observations/observation-a4299ae3-41ae-4ddb-b966-d2b0fbe1d373/,,,,https://biolit.fr/wp-content/uploads/2023/07/Criste marine-scaled.jpg,,FALSE, +N1,26218,sortie-1d1db19d-2ce3-4301-aa89-b20fa404d14e,https://biolit.fr/sorties/sortie-1d1db19d-2ce3-4301-aa89-b20fa404d14e/,Emeline 44240,,08/05/2019,17.0000000,17.0:45,47.489331000000,-2.820927000000,,"Plage de kercambre,56730,Saint-Gildas-De-Rhuys,France",25824,observation-1d1db19d-2ce3-4301-aa89-b20fa404d14e,https://biolit.fr/observations/observation-1d1db19d-2ce3-4301-aa89-b20fa404d14e/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/20190805_174337 (2).jpg,,TRUE, +N1,26218,sortie-1d1db19d-2ce3-4301-aa89-b20fa404d14e,https://biolit.fr/sorties/sortie-1d1db19d-2ce3-4301-aa89-b20fa404d14e/,Emeline 44240,,08/05/2019,17.0000000,17.0:45,47.489331000000,-2.820927000000,,"Plage de kercambre,56730,Saint-Gildas-De-Rhuys,France",25826,observation-1d1db19d-2ce3-4301-aa89-b20fa404d14e-2,https://biolit.fr/observations/observation-1d1db19d-2ce3-4301-aa89-b20fa404d14e-2/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/20190805_174327 (2).jpg,,TRUE, +N1,26218,sortie-1d1db19d-2ce3-4301-aa89-b20fa404d14e,https://biolit.fr/sorties/sortie-1d1db19d-2ce3-4301-aa89-b20fa404d14e/,Emeline 44240,,08/05/2019,17.0000000,17.0:45,47.489331000000,-2.820927000000,,"Plage de kercambre,56730,Saint-Gildas-De-Rhuys,France",25828,observation-1d1db19d-2ce3-4301-aa89-b20fa404d14e-3,https://biolit.fr/observations/observation-1d1db19d-2ce3-4301-aa89-b20fa404d14e-3/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/20190805_174258 (2).jpg,,TRUE, +N1,26219,sortie-fb2e200c-6504-4a4e-b71c-0ca4157cc7f9,https://biolit.fr/sorties/sortie-fb2e200c-6504-4a4e-b71c-0ca4157cc7f9/,Associu Mare Vivu,,7/22/2019 0:00,17.0000000,19.0000000,42.349821000000,8.614063000000,,Girolata,25830,observation-fb2e200c-6504-4a4e-b71c-0ca4157cc7f9,https://biolit.fr/observations/observation-fb2e200c-6504-4a4e-b71c-0ca4157cc7f9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6539-scaled.jpg,,FALSE, +N1,26220,sortie-e8e711eb-a7ab-40d3-a932-c687cc3504b1,https://biolit.fr/sorties/sortie-e8e711eb-a7ab-40d3-a932-c687cc3504b1/,Associu Mare Vivu,,7/24/2019 0:00,17.0000000,19.0000000,42.350091000000,8.614183000000,,Girolata,25832,observation-e8e711eb-a7ab-40d3-a932-c687cc3504b1,https://biolit.fr/observations/observation-e8e711eb-a7ab-40d3-a932-c687cc3504b1/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6535-scaled.jpg,,FALSE, +N1,26221,sortie-50a1e045-9da3-4fa2-a77b-7b58784b6269,https://biolit.fr/sorties/sortie-50a1e045-9da3-4fa2-a77b-7b58784b6269/,Associu Mare Vivu,,7/22/2019 0:00,16.0:55,18.0:55,42.34998800000,8.614324000000,,Girolata,25834,observation-50a1e045-9da3-4fa2-a77b-7b58784b6269,https://biolit.fr/observations/observation-50a1e045-9da3-4fa2-a77b-7b58784b6269/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6531-scaled.jpg,,TRUE, +N1,26222,sortie-834b787b-6085-4ad6-ba2e-f1141e13253a,https://biolit.fr/sorties/sortie-834b787b-6085-4ad6-ba2e-f1141e13253a/,Associu Mare Vivu,,7/19/2019 0:00,18.0000000,20.0000000,42.923773000000,9.360584000000,Mare Vivu,Anse d'aliso,25836,observation-834b787b-6085-4ad6-ba2e-f1141e13253a,https://biolit.fr/observations/observation-834b787b-6085-4ad6-ba2e-f1141e13253a/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6307-scaled.jpg,,FALSE, +N1,26222,sortie-834b787b-6085-4ad6-ba2e-f1141e13253a,https://biolit.fr/sorties/sortie-834b787b-6085-4ad6-ba2e-f1141e13253a/,Associu Mare Vivu,,7/19/2019 0:00,18.0000000,20.0000000,42.923773000000,9.360584000000,Mare Vivu,Anse d'aliso,25838,observation-834b787b-6085-4ad6-ba2e-f1141e13253a-2,https://biolit.fr/observations/observation-834b787b-6085-4ad6-ba2e-f1141e13253a-2/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6305-scaled.jpg,,TRUE, +N1,26223,sortie-82c3b949-d1da-4b8d-8d7a-d7b13dc94867,https://biolit.fr/sorties/sortie-82c3b949-d1da-4b8d-8d7a-d7b13dc94867/,Associu Mare Vivu,,07/08/2019,16.0:45,17.0:25,42.96432400000,9.451581000000,,Macinaggio,25840,observation-82c3b949-d1da-4b8d-8d7a-d7b13dc94867,https://biolit.fr/observations/observation-82c3b949-d1da-4b8d-8d7a-d7b13dc94867/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6246-scaled.jpg,,TRUE, +N1,26224,sortie-ccd3fc78-3a43-4097-9ae3-b9999243bcd1,https://biolit.fr/sorties/sortie-ccd3fc78-3a43-4097-9ae3-b9999243bcd1/,Associu Mare Vivu,,7/22/2018 0:00,13.0000000,13.0000000,42.207762000000,8.576357000000,,plage d'arone,25842,observation-ccd3fc78-3a43-4097-9ae3-b9999243bcd1,https://biolit.fr/observations/observation-ccd3fc78-3a43-4097-9ae3-b9999243bcd1/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-30-scaled.jpg,,FALSE, +N1,26225,sortie-d32b8dac-4b16-4ca5-b389-d793576f68d5,https://biolit.fr/sorties/sortie-d32b8dac-4b16-4ca5-b389-d793576f68d5/,Associu Mare Vivu,,7/22/2018 0:00,13.0000000,13.0000000,42.207635000000,8.576250000000,,plage d'arone,25844,observation-d32b8dac-4b16-4ca5-b389-d793576f68d5,https://biolit.fr/observations/observation-d32b8dac-4b16-4ca5-b389-d793576f68d5/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-28-scaled.jpg,,FALSE, +N1,26226,sortie-e2c8c399-019c-4c5d-94ad-12e40347483a,https://biolit.fr/sorties/sortie-e2c8c399-019c-4c5d-94ad-12e40347483a/,Associu Mare Vivu,,7/22/2018 0:00,13.0000000,13.0000000,42.207666000000,8.576250000000,,plage d'arone,25846,observation-e2c8c399-019c-4c5d-94ad-12e40347483a,https://biolit.fr/observations/observation-e2c8c399-019c-4c5d-94ad-12e40347483a/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-27_0-scaled.jpg,,FALSE, +N1,26227,sortie-f4c1c253-ed0f-4c1d-8e57-c7f0c09052a3,https://biolit.fr/sorties/sortie-f4c1c253-ed0f-4c1d-8e57-c7f0c09052a3/,Associu Mare Vivu,,7/22/2018 0:00,13.0000000,13.0000000,42.208048000000,8.578267000000,,plage d'arone,25848,observation-f4c1c253-ed0f-4c1d-8e57-c7f0c09052a3,https://biolit.fr/observations/observation-f4c1c253-ed0f-4c1d-8e57-c7f0c09052a3/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-24-scaled.jpg,,FALSE, +N1,26228,sortie-42604ca3-0ee5-4b43-9815-68b64f23fe85,https://biolit.fr/sorties/sortie-42604ca3-0ee5-4b43-9815-68b64f23fe85/,Associu Mare Vivu,,7/22/2018 0:00,13.0000000,13.0000000,42.208016000000,8.578503000000,,plage d'arone,25850,observation-42604ca3-0ee5-4b43-9815-68b64f23fe85,https://biolit.fr/observations/observation-42604ca3-0ee5-4b43-9815-68b64f23fe85/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-21-scaled.jpg,,FALSE, +N1,26229,sortie-37495aea-67b3-4114-a70b-ae821235d409,https://biolit.fr/sorties/sortie-37495aea-67b3-4114-a70b-ae821235d409/,Associu Mare Vivu,,7/22/2018 0:00,13.0000000,13.0000000,42.207857000000,8.578825000000,,plage d'arone,25852,observation-37495aea-67b3-4114-a70b-ae821235d409,https://biolit.fr/observations/observation-37495aea-67b3-4114-a70b-ae821235d409/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-22-scaled.jpg,,FALSE, +N1,26230,sortie-202db6a7-c8bc-4745-a25d-1f61a884baa0,https://biolit.fr/sorties/sortie-202db6a7-c8bc-4745-a25d-1f61a884baa0/,Associu Mare Vivu,,7/22/2018 0:00,13.0000000,13.0000000,42.207984000000,8.578771000000,,plage d'arone,25854,observation-202db6a7-c8bc-4745-a25d-1f61a884baa0,https://biolit.fr/observations/observation-202db6a7-c8bc-4745-a25d-1f61a884baa0/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-19_0-scaled.jpg,,FALSE, +N1,26231,sortie-4f53abb6-8511-42fc-a010-b7c99f7a0b5d,https://biolit.fr/sorties/sortie-4f53abb6-8511-42fc-a010-b7c99f7a0b5d/,Associu Mare Vivu,,7/22/2018 0:00,13.0000000,13.0000000,42.207793000000,8.579254000000,,plage d'arone,25856,observation-4f53abb6-8511-42fc-a010-b7c99f7a0b5d,https://biolit.fr/observations/observation-4f53abb6-8511-42fc-a010-b7c99f7a0b5d/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-16_0-scaled.jpg,,FALSE, +N1,26232,sortie-2ae4885d-0362-42d1-99e1-ff37ac1df922,https://biolit.fr/sorties/sortie-2ae4885d-0362-42d1-99e1-ff37ac1df922/,Associu Mare Vivu,,7/22/2018 0:00,13.0000000,13.0000000,42.207857000000,8.578825000000,,plage d'arone,25858,observation-2ae4885d-0362-42d1-99e1-ff37ac1df922,https://biolit.fr/observations/observation-2ae4885d-0362-42d1-99e1-ff37ac1df922/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-15_1-scaled.jpg,,FALSE, +N1,26233,sortie-1adf0d18-eb70-4cb8-832c-e9d37138afc5,https://biolit.fr/sorties/sortie-1adf0d18-eb70-4cb8-832c-e9d37138afc5/,Associu Mare Vivu,,7/22/2018 0:00,12.0000000,13.0000000,42.207762000000,8.579190000000,,plage d'arone,25860,observation-1adf0d18-eb70-4cb8-832c-e9d37138afc5,https://biolit.fr/observations/observation-1adf0d18-eb70-4cb8-832c-e9d37138afc5/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-17-scaled.jpg,,FALSE, +N1,26234,sortie-39fbfc1e-2e55-4f6e-8543-e7deabcc8940,https://biolit.fr/sorties/sortie-39fbfc1e-2e55-4f6e-8543-e7deabcc8940/,Associu Mare Vivu,,7/22/2018 0:00,12.0000000,13.0000000,42.20788900000,8.578868000000,,plage d'arone,25862,observation-39fbfc1e-2e55-4f6e-8543-e7deabcc8940,https://biolit.fr/observations/observation-39fbfc1e-2e55-4f6e-8543-e7deabcc8940/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-13-scaled.jpg,,FALSE, +N1,26235,sortie-38f1b1b3-176c-4674-856e-a5d19c33fca3,https://biolit.fr/sorties/sortie-38f1b1b3-176c-4674-856e-a5d19c33fca3/,Associu Mare Vivu,,7/22/2018 0:00,12.000005,13.000005,42.207952000000,8.579168000000,,plage d'arone,25864,observation-38f1b1b3-176c-4674-856e-a5d19c33fca3,https://biolit.fr/observations/observation-38f1b1b3-176c-4674-856e-a5d19c33fca3/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-12-scaled.jpg,,FALSE, +N1,26236,sortie-40ae1222-c8eb-4e42-902a-84e3f77720ef,https://biolit.fr/sorties/sortie-40ae1222-c8eb-4e42-902a-84e3f77720ef/,Associu Mare Vivu,,7/22/2018 0:00,13.0000000,13.0000000,42.207984000000,8.578782000000,,plage d'arone,25866,observation-40ae1222-c8eb-4e42-902a-84e3f77720ef,https://biolit.fr/observations/observation-40ae1222-c8eb-4e42-902a-84e3f77720ef/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-11_2-scaled.jpg,,FALSE, +N1,26237,sortie-0bf5a0dd-7bdb-4f87-9a86-a9b9a89b4280,https://biolit.fr/sorties/sortie-0bf5a0dd-7bdb-4f87-9a86-a9b9a89b4280/,Associu Mare Vivu,,7/22/2018 0:00,13.0000000,13.0000000,42.208143000000,8.577816000000,,plage d'arone,25868,observation-0bf5a0dd-7bdb-4f87-9a86-a9b9a89b4280,https://biolit.fr/observations/observation-0bf5a0dd-7bdb-4f87-9a86-a9b9a89b4280/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-10-scaled.jpg,,FALSE, +N1,26238,sortie-85e91281-a251-472a-a722-7a544b966b75,https://biolit.fr/sorties/sortie-85e91281-a251-472a-a722-7a544b966b75/,Associu Mare Vivu,,7/22/2018 0:00,12.0000000,13.0000000,42.20808000000,8.577022000000,,plage d'arone,25870,observation-85e91281-a251-472a-a722-7a544b966b75,https://biolit.fr/observations/observation-85e91281-a251-472a-a722-7a544b966b75/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-8_1-scaled.jpg,,FALSE, +N1,26239,sortie-16f52e72-653e-4825-bef6-894d4230b88e,https://biolit.fr/sorties/sortie-16f52e72-653e-4825-bef6-894d4230b88e/,Associu Mare Vivu,,7/22/2018 0:00,12.0000000,13.0000000,42.207921000000,8.576550000000,,plage d'arone,25872,observation-16f52e72-653e-4825-bef6-894d4230b88e,https://biolit.fr/observations/observation-16f52e72-653e-4825-bef6-894d4230b88e/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-6_0-scaled.jpg,,FALSE, +N1,26240,sortie-e4325a0d-b472-4a2d-843d-7f16c1a4cec0,https://biolit.fr/sorties/sortie-e4325a0d-b472-4a2d-843d-7f16c1a4cec0/,Associu Mare Vivu,,7/22/2018 0:00,12.0000000,13.0000000,42.20774600000,8.576368000000,,plage d'arone,25874,observation-e4325a0d-b472-4a2d-843d-7f16c1a4cec0,https://biolit.fr/observations/observation-e4325a0d-b472-4a2d-843d-7f16c1a4cec0/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-2_0-scaled.jpg,,FALSE, +N1,26241,sortie-262fe96e-e29f-47ad-b52e-c90b251c65fb,https://biolit.fr/sorties/sortie-262fe96e-e29f-47ad-b52e-c90b251c65fb/,Associu Mare Vivu,,7/22/2018 0:00,11.0000000,11.0000000,42.261842000000,8.677165000000,,le port de castagna,25876,observation-262fe96e-e29f-47ad-b52e-c90b251c65fb,https://biolit.fr/observations/observation-262fe96e-e29f-47ad-b52e-c90b251c65fb/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-11_0-scaled.jpg,,FALSE, +N1,26242,sortie-d6e2e862-b78a-4fba-b63e-8e7ca2d118ac,https://biolit.fr/sorties/sortie-d6e2e862-b78a-4fba-b63e-8e7ca2d118ac/,Associu Mare Vivu,,7/22/2018 0:00,11.0000000,11.0000000,42.261897000000,8.677273000000,,le port de castagna,25878,observation-d6e2e862-b78a-4fba-b63e-8e7ca2d118ac,https://biolit.fr/observations/observation-d6e2e862-b78a-4fba-b63e-8e7ca2d118ac/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-9_0-scaled.jpg,,FALSE, +N1,26243,sortie-ef33b664-1b24-4ddc-9180-e1e3c192d0b6,https://biolit.fr/sorties/sortie-ef33b664-1b24-4ddc-9180-e1e3c192d0b6/,Associu Mare Vivu,,7/22/2018 0:00,11.0000000,11.0000000,42.261865000000,8.677197000000,,le port de castagna,25880,observation-ef33b664-1b24-4ddc-9180-e1e3c192d0b6,https://biolit.fr/observations/observation-ef33b664-1b24-4ddc-9180-e1e3c192d0b6/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-5_0-scaled.jpg,,FALSE, +N1,26244,sortie-e2201389-7fba-45c7-a164-e98763fa58dc,https://biolit.fr/sorties/sortie-e2201389-7fba-45c7-a164-e98763fa58dc/,Associu Mare Vivu,,7/22/2018 0:00,11.0000000,11.0000000,42.26181000000,8.677138000000,,le port de castagna,25882,observation-e2201389-7fba-45c7-a164-e98763fa58dc,https://biolit.fr/observations/observation-e2201389-7fba-45c7-a164-e98763fa58dc/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-4_0-scaled.jpg,,FALSE, +N1,26245,sortie-ebe59b97-1b5b-4aea-b88f-07429525fed8,https://biolit.fr/sorties/sortie-ebe59b97-1b5b-4aea-b88f-07429525fed8/,Associu Mare Vivu,,7/22/2018 0:00,11.0000000,11.0000000,42.261782000000,8.677144000000,,le port de castagna,25884,observation-ebe59b97-1b5b-4aea-b88f-07429525fed8,https://biolit.fr/observations/observation-ebe59b97-1b5b-4aea-b88f-07429525fed8/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-2-scaled.jpg,,FALSE, +N1,26246,sortie-8cc6d022-8d4d-4229-aeb1-e3493cec45b8,https://biolit.fr/sorties/sortie-8cc6d022-8d4d-4229-aeb1-e3493cec45b8/,Associu Mare Vivu,,7/16/2018 0:00,9.0000000,11.0000000,41.548030000000,8.805899000000,,phare de Senetosa,25886,observation-8cc6d022-8d4d-4229-aeb1-e3493cec45b8,https://biolit.fr/observations/observation-8cc6d022-8d4d-4229-aeb1-e3493cec45b8/,,,,https://biolit.fr/wp-content/uploads/2023/07/1-4-scaled.jpg,,FALSE, +N1,26247,sortie-010320ab-e04c-474c-b207-3d8435de9263,https://biolit.fr/sorties/sortie-010320ab-e04c-474c-b207-3d8435de9263/,Associu Mare Vivu,,7/16/2018 0:00,9.0000000,11.0000000,41.558507000000,8.794024000000,,phare de Senetosa,25888,observation-010320ab-e04c-474c-b207-3d8435de9263,https://biolit.fr/observations/observation-010320ab-e04c-474c-b207-3d8435de9263/,,,,https://biolit.fr/wp-content/uploads/2023/07/1-3-scaled.jpg,,FALSE, +N1,26248,sortie-cf037316-f218-4d2d-b64a-edc310e65daa,https://biolit.fr/sorties/sortie-cf037316-f218-4d2d-b64a-edc310e65daa/,Associu Mare Vivu,,7/17/2018 0:00,17.0000000,17.0000000,41.738367000000,8.782222000000,,plage de cupabia,25890,observation-cf037316-f218-4d2d-b64a-edc310e65daa,https://biolit.fr/observations/observation-cf037316-f218-4d2d-b64a-edc310e65daa/,,,,https://biolit.fr/wp-content/uploads/2023/07/2-21_0-scaled.jpg,,FALSE, +N1,26249,sortie-713f36f2-4a7b-43d4-8a0a-96de978dabe3,https://biolit.fr/sorties/sortie-713f36f2-4a7b-43d4-8a0a-96de978dabe3/,Associu Mare Vivu,,7/17/2018 0:00,17.0000000,17.0000000,41.738367000000,8.782565000000,,plage de cupabia,25892,observation-713f36f2-4a7b-43d4-8a0a-96de978dabe3,https://biolit.fr/observations/observation-713f36f2-4a7b-43d4-8a0a-96de978dabe3/,,,,https://biolit.fr/wp-content/uploads/2023/07/2-19-scaled.jpg,,FALSE, +N1,26250,sortie-eb26cf79-d793-4bdb-ab7f-c8eb4d6fe6de,https://biolit.fr/sorties/sortie-eb26cf79-d793-4bdb-ab7f-c8eb4d6fe6de/,Associu Mare Vivu,,7/17/2018 0:00,18.0000000,18.0000000,41.73798300000,8.782308000000,,plage de cupabia,25894,observation-eb26cf79-d793-4bdb-ab7f-c8eb4d6fe6de,https://biolit.fr/observations/observation-eb26cf79-d793-4bdb-ab7f-c8eb4d6fe6de/,,,,https://biolit.fr/wp-content/uploads/2023/07/2-16_0-scaled.jpg,,FALSE, +N1,26251,sortie-ae42f75e-00d6-4bd1-a644-b035f3035eb7,https://biolit.fr/sorties/sortie-ae42f75e-00d6-4bd1-a644-b035f3035eb7/,Associu Mare Vivu,,7/17/2018 0:00,18.0000000,20.0000000,41.737854000000,8.782050000000,,plage de cupabia,25896,observation-ae42f75e-00d6-4bd1-a644-b035f3035eb7,https://biolit.fr/observations/observation-ae42f75e-00d6-4bd1-a644-b035f3035eb7/,,,,https://biolit.fr/wp-content/uploads/2023/07/2-12-scaled.jpg,,FALSE, +N1,26252,sortie-48bd38a2-7230-45c7-8fc2-dea0b5517e94,https://biolit.fr/sorties/sortie-48bd38a2-7230-45c7-8fc2-dea0b5517e94/,Associu Mare Vivu,,7/17/2018 0:00,18.0000000,18.0000000,41.737854000000,8.782050000000,,plage de cupabia,25898,observation-48bd38a2-7230-45c7-8fc2-dea0b5517e94,https://biolit.fr/observations/observation-48bd38a2-7230-45c7-8fc2-dea0b5517e94/,,,,https://biolit.fr/wp-content/uploads/2023/07/2-10-scaled.jpg,,FALSE, +N1,26253,sortie-c35cf965-d6ee-4c80-88c3-a981a4cedde2,https://biolit.fr/sorties/sortie-c35cf965-d6ee-4c80-88c3-a981a4cedde2/,Associu Mare Vivu,,7/17/2018 0:00,17.0:35,17.0:35,41.738111000000,8.782909000000,,plage de cupabia,25900,observation-c35cf965-d6ee-4c80-88c3-a981a4cedde2,https://biolit.fr/observations/observation-c35cf965-d6ee-4c80-88c3-a981a4cedde2/,Lagurus ovatus,Queue de lièvre,,https://biolit.fr/wp-content/uploads/2023/07/2-8-scaled.jpg,,TRUE, +N1,26254,sortie-d9c33983-780f-4cb0-9c51-0ace12bcdccc,https://biolit.fr/sorties/sortie-d9c33983-780f-4cb0-9c51-0ace12bcdccc/,Associu Mare Vivu,,7/17/2018 0:00,18.0000000,18.0000000,41.738239000000,8.782995000000,,plage de cupabia,25902,observation-d9c33983-780f-4cb0-9c51-0ace12bcdccc,https://biolit.fr/observations/observation-d9c33983-780f-4cb0-9c51-0ace12bcdccc/,,,,https://biolit.fr/wp-content/uploads/2023/07/2-3-scaled.jpg,,FALSE, +N1,26255,sortie-2ac49f47-d3e9-4db6-a73b-835a34a1e5d7,https://biolit.fr/sorties/sortie-2ac49f47-d3e9-4db6-a73b-835a34a1e5d7/,Associu Mare Vivu,,7/17/2018 0:00,15.0000000,15.0000000,41.73849500000,8.782533000000,,plage de cupabia,25904,observation-2ac49f47-d3e9-4db6-a73b-835a34a1e5d7,https://biolit.fr/observations/observation-2ac49f47-d3e9-4db6-a73b-835a34a1e5d7/,,,,https://biolit.fr/wp-content/uploads/2023/07/2-2-scaled.jpg,,FALSE, +N1,26256,sortie-5d969e2d-104c-4fcc-81cc-1ce84eeefc18,https://biolit.fr/sorties/sortie-5d969e2d-104c-4fcc-81cc-1ce84eeefc18/,Associu Mare Vivu,,7/15/2018 0:00,18.0000000,18.0000000,41.535975000000,8.855554000000,,plage de tizzano,25906,observation-5d969e2d-104c-4fcc-81cc-1ce84eeefc18,https://biolit.fr/observations/observation-5d969e2d-104c-4fcc-81cc-1ce84eeefc18/,,,,https://biolit.fr/wp-content/uploads/2023/07/0-3-scaled.jpg,,FALSE, +N1,26257,sortie-ee78c477-7118-4c80-adff-9fa28e317f06,https://biolit.fr/sorties/sortie-ee78c477-7118-4c80-adff-9fa28e317f06/,Associu Mare Vivu,,7/15/2018 0:00,18.0000000,18.0000000,41.536047000000,8.85564500000,,plage de tizzano,25908,observation-ee78c477-7118-4c80-adff-9fa28e317f06,https://biolit.fr/observations/observation-ee78c477-7118-4c80-adff-9fa28e317f06/,Lagurus ovatus,Queue de lièvre,,https://biolit.fr/wp-content/uploads/2023/07/3-16-scaled.jpg,,TRUE, +N1,26258,sortie-05d121ad-05eb-4171-be7d-b10acc823e04,https://biolit.fr/sorties/sortie-05d121ad-05eb-4171-be7d-b10acc823e04/,Associu Mare Vivu,,7/15/2018 0:00,18.0000000,18.0000000,41.536100000000,8.855732000000,,plage tizzano,25910,observation-05d121ad-05eb-4171-be7d-b10acc823e04,https://biolit.fr/observations/observation-05d121ad-05eb-4171-be7d-b10acc823e04/,,,,https://biolit.fr/wp-content/uploads/2023/07/3-13-scaled.jpg,,FALSE, +N1,26259,sortie-040b4ebc-e019-4411-b46c-7a87f59be8b5,https://biolit.fr/sorties/sortie-040b4ebc-e019-4411-b46c-7a87f59be8b5/,Domaine du Rayol,,4/21/2018 0:00,10.0:55,11.0000000,43.152990000000,6.481702000000,,Domaine du Rayol,25912,observation-040b4ebc-e019-4411-b46c-7a87f59be8b5,https://biolit.fr/observations/observation-040b4ebc-e019-4411-b46c-7a87f59be8b5/,Anthyllis barba-jovis,Anthyllide barbe-de-Jupiter,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180421_105801.jpg,,TRUE, +N1,26259,sortie-040b4ebc-e019-4411-b46c-7a87f59be8b5,https://biolit.fr/sorties/sortie-040b4ebc-e019-4411-b46c-7a87f59be8b5/,Domaine du Rayol,,4/21/2018 0:00,10.0:55,11.0000000,43.152990000000,6.481702000000,,Domaine du Rayol,25914,observation-040b4ebc-e019-4411-b46c-7a87f59be8b5-2,https://biolit.fr/observations/observation-040b4ebc-e019-4411-b46c-7a87f59be8b5-2/,Anthyllis barba-jovis,Anthyllide barbe-de-Jupiter,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180421_105400.jpg,,TRUE, +N1,26260,sortie-bde5a34f-aa5b-4201-b581-f42cd713d910,https://biolit.fr/sorties/sortie-bde5a34f-aa5b-4201-b581-f42cd713d910/,Centre de Découverte Mer et Montagne,,3/22/2018 0:00,14.0000000,16.0000000,43.686159000000,7.297888000000,,"Sentier littoral, Nice",25916,observation-bde5a34f-aa5b-4201-b581-f42cd713d910,https://biolit.fr/observations/observation-bde5a34f-aa5b-4201-b581-f42cd713d910/,,,,https://biolit.fr/wp-content/uploads/2023/07/180322_CALY_De_croisset_STlitto (6)-scaled.jpg,,FALSE, +N1,26261,sortie-e0f8fedd-ffc3-427a-8a67-3b63490219d6,https://biolit.fr/sorties/sortie-e0f8fedd-ffc3-427a-8a67-3b63490219d6/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284067000000,5.316333000000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",25918,observation-e0f8fedd-ffc3-427a-8a67-3b63490219d6,https://biolit.fr/observations/observation-e0f8fedd-ffc3-427a-8a67-3b63490219d6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9617-scaled.jpg,,FALSE, +N1,26261,sortie-e0f8fedd-ffc3-427a-8a67-3b63490219d6,https://biolit.fr/sorties/sortie-e0f8fedd-ffc3-427a-8a67-3b63490219d6/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284067000000,5.316333000000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",25920,observation-e0f8fedd-ffc3-427a-8a67-3b63490219d6-2,https://biolit.fr/observations/observation-e0f8fedd-ffc3-427a-8a67-3b63490219d6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9603-scaled.jpg,,FALSE, +N1,26262,sortie-2eab3821-bf75-431f-bdc7-d0382bbf1a1d,https://biolit.fr/sorties/sortie-2eab3821-bf75-431f-bdc7-d0382bbf1a1d/,Dodode,,10/20/2017 0:00,11.0000000,17.0000000,43.294804000000,5.359096000000,,Palais du congrès du Pharo,25922,observation-2eab3821-bf75-431f-bdc7-d0382bbf1a1d,https://biolit.fr/observations/observation-2eab3821-bf75-431f-bdc7-d0382bbf1a1d/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171020_12_50_51_Pro.jpg,,FALSE, +N1,26263,sortie-945655df-8d08-4bfe-88e2-b07ecc902f12,https://biolit.fr/sorties/sortie-945655df-8d08-4bfe-88e2-b07ecc902f12/,Fleur,,10/20/2017 0:00,15.0000000,15.0000000,43.214658000000,5.342634000000,,Anse de la Maronaise,25924,observation-945655df-8d08-4bfe-88e2-b07ecc902f12,https://biolit.fr/observations/observation-945655df-8d08-4bfe-88e2-b07ecc902f12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9461-scaled.jpg,,FALSE, +N1,26263,sortie-945655df-8d08-4bfe-88e2-b07ecc902f12,https://biolit.fr/sorties/sortie-945655df-8d08-4bfe-88e2-b07ecc902f12/,Fleur,,10/20/2017 0:00,15.0000000,15.0000000,43.214658000000,5.342634000000,,Anse de la Maronaise,25926,observation-945655df-8d08-4bfe-88e2-b07ecc902f12-2,https://biolit.fr/observations/observation-945655df-8d08-4bfe-88e2-b07ecc902f12-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9481-scaled.jpg,,FALSE, +N1,26263,sortie-945655df-8d08-4bfe-88e2-b07ecc902f12,https://biolit.fr/sorties/sortie-945655df-8d08-4bfe-88e2-b07ecc902f12/,Fleur,,10/20/2017 0:00,15.0000000,15.0000000,43.214658000000,5.342634000000,,Anse de la Maronaise,25928,observation-945655df-8d08-4bfe-88e2-b07ecc902f12-3,https://biolit.fr/observations/observation-945655df-8d08-4bfe-88e2-b07ecc902f12-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9482-scaled.jpg,,FALSE, +N1,26264,sortie-a4e91ba7-7bff-4da1-9718-15cbe308449a,https://biolit.fr/sorties/sortie-a4e91ba7-7bff-4da1-9718-15cbe308449a/,Fleur,,9/17/2017 0:00,10.0000000,12.0:15,43.284114000000,5.316344000000,,"Plage St Estève (Ile de Ratonneau, Archipel du Frioul)",25930,observation-a4e91ba7-7bff-4da1-9718-15cbe308449a,https://biolit.fr/observations/observation-a4e91ba7-7bff-4da1-9718-15cbe308449a/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9392-scaled.jpg,,FALSE, +N1,26265,sortie-48db0164-f32f-4343-acaf-4632e0206c13,https://biolit.fr/sorties/sortie-48db0164-f32f-4343-acaf-4632e0206c13/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236015000000,5.360092000000,,plage de la Bonne brise,25932,observation-48db0164-f32f-4343-acaf-4632e0206c13,https://biolit.fr/observations/observation-48db0164-f32f-4343-acaf-4632e0206c13/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6290468-scaled.jpg,,FALSE, +N1,26266,sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d,https://biolit.fr/sorties/sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.2546860000,5.374456000000,,plage de Borely,25934,observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d,https://biolit.fr/observations/observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0036.JPG,,FALSE, +N1,26266,sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d,https://biolit.fr/sorties/sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.2546860000,5.374456000000,,plage de Borely,25936,observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d-2,https://biolit.fr/observations/observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0037_0.JPG,,FALSE, +N1,26266,sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d,https://biolit.fr/sorties/sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.2546860000,5.374456000000,,plage de Borely,25938,observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d-3,https://biolit.fr/observations/observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0038.JPG,,FALSE, +N1,26266,sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d,https://biolit.fr/sorties/sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.2546860000,5.374456000000,,plage de Borely,25940,observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d-4,https://biolit.fr/observations/observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0039_0.JPG,,FALSE, +N1,26266,sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d,https://biolit.fr/sorties/sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.2546860000,5.374456000000,,plage de Borely,25942,observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d-5,https://biolit.fr/observations/observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0040_0.JPG,,FALSE, +N1,26266,sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d,https://biolit.fr/sorties/sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.2546860000,5.374456000000,,plage de Borely,25944,observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d-6,https://biolit.fr/observations/observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0041.JPG,,FALSE, +N1,26266,sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d,https://biolit.fr/sorties/sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.2546860000,5.374456000000,,plage de Borely,25946,observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d-7,https://biolit.fr/observations/observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0042_4.JPG,,FALSE, +N1,26266,sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d,https://biolit.fr/sorties/sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.2546860000,5.374456000000,,plage de Borely,25948,observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d-8,https://biolit.fr/observations/observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0043_1.JPG,,FALSE, +N1,26266,sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d,https://biolit.fr/sorties/sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.2546860000,5.374456000000,,plage de Borely,25950,observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d-9,https://biolit.fr/observations/observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0044_1.JPG,,FALSE, +N1,26267,sortie-14a49712-ebdb-4a8d-b776-2b23cb16ed97,https://biolit.fr/sorties/sortie-14a49712-ebdb-4a8d-b776-2b23cb16ed97/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214891000000,5.342836000000,,Anse de la maronaise,25952,observation-14a49712-ebdb-4a8d-b776-2b23cb16ed97,https://biolit.fr/observations/observation-14a49712-ebdb-4a8d-b776-2b23cb16ed97/,,,,https://biolit.fr/wp-content/uploads/2023/07/P4120248-scaled.jpg,,FALSE, +N1,26267,sortie-14a49712-ebdb-4a8d-b776-2b23cb16ed97,https://biolit.fr/sorties/sortie-14a49712-ebdb-4a8d-b776-2b23cb16ed97/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214891000000,5.342836000000,,Anse de la maronaise,25954,observation-14a49712-ebdb-4a8d-b776-2b23cb16ed97-2,https://biolit.fr/observations/observation-14a49712-ebdb-4a8d-b776-2b23cb16ed97-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P4120249-scaled.jpg,,FALSE, +N1,26267,sortie-14a49712-ebdb-4a8d-b776-2b23cb16ed97,https://biolit.fr/sorties/sortie-14a49712-ebdb-4a8d-b776-2b23cb16ed97/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214891000000,5.342836000000,,Anse de la maronaise,25956,observation-14a49712-ebdb-4a8d-b776-2b23cb16ed97-3,https://biolit.fr/observations/observation-14a49712-ebdb-4a8d-b776-2b23cb16ed97-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P4120250-scaled.jpg,,FALSE, +N1,26267,sortie-14a49712-ebdb-4a8d-b776-2b23cb16ed97,https://biolit.fr/sorties/sortie-14a49712-ebdb-4a8d-b776-2b23cb16ed97/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214891000000,5.342836000000,,Anse de la maronaise,25958,observation-14a49712-ebdb-4a8d-b776-2b23cb16ed97-4,https://biolit.fr/observations/observation-14a49712-ebdb-4a8d-b776-2b23cb16ed97-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P4120251-scaled.jpg,,FALSE, +N1,26268,sortie-e38eb175-51d9-46aa-a62a-7f8024ba6537,https://biolit.fr/sorties/sortie-e38eb175-51d9-46aa-a62a-7f8024ba6537/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.20965600000,5.3725760000,,plage de la Calanque de Marseilleveyre,25960,observation-e38eb175-51d9-46aa-a62a-7f8024ba6537,https://biolit.fr/observations/observation-e38eb175-51d9-46aa-a62a-7f8024ba6537/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/P1110694.JPG,,TRUE, +N1,26268,sortie-e38eb175-51d9-46aa-a62a-7f8024ba6537,https://biolit.fr/sorties/sortie-e38eb175-51d9-46aa-a62a-7f8024ba6537/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.20965600000,5.3725760000,,plage de la Calanque de Marseilleveyre,25962,observation-e38eb175-51d9-46aa-a62a-7f8024ba6537-2,https://biolit.fr/observations/observation-e38eb175-51d9-46aa-a62a-7f8024ba6537-2/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/P1110698.JPG,,TRUE, +N1,26269,sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f,https://biolit.fr/sorties/sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214759000000,5.3429680000,,anse de la Maronaise,25964,observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f,https://biolit.fr/observations/observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0980-scaled.jpg,,FALSE, +N1,26269,sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f,https://biolit.fr/sorties/sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214759000000,5.3429680000,,anse de la Maronaise,25966,observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-2,https://biolit.fr/observations/observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0981-scaled.jpg,,FALSE, +N1,26269,sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f,https://biolit.fr/sorties/sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214759000000,5.3429680000,,anse de la Maronaise,25968,observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-3,https://biolit.fr/observations/observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0986-scaled.jpg,,FALSE, +N1,26269,sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f,https://biolit.fr/sorties/sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214759000000,5.3429680000,,anse de la Maronaise,25970,observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-4,https://biolit.fr/observations/observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-4/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0987-scaled.jpg,,TRUE, +N1,26269,sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f,https://biolit.fr/sorties/sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214759000000,5.3429680000,,anse de la Maronaise,25972,observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-5,https://biolit.fr/observations/observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0988-scaled.jpg,,FALSE, +N1,26269,sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f,https://biolit.fr/sorties/sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214759000000,5.3429680000,,anse de la Maronaise,25974,observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-6,https://biolit.fr/observations/observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0992-scaled.jpg,,FALSE, +N1,26269,sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f,https://biolit.fr/sorties/sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214759000000,5.3429680000,,anse de la Maronaise,25976,observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-7,https://biolit.fr/observations/observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0993-scaled.jpg,,FALSE, +N1,26269,sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f,https://biolit.fr/sorties/sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214759000000,5.3429680000,,anse de la Maronaise,25978,observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-8,https://biolit.fr/observations/observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0994-scaled.jpg,,FALSE, +N1,26269,sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f,https://biolit.fr/sorties/sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214759000000,5.3429680000,,anse de la Maronaise,25980,observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-9,https://biolit.fr/observations/observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0997-scaled.jpg,,FALSE, +N1,26269,sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f,https://biolit.fr/sorties/sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214759000000,5.3429680000,,anse de la Maronaise,25982,observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-10,https://biolit.fr/observations/observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1013-scaled.jpg,,FALSE, +N1,26270,sortie-068c6e4e-eb3d-410f-bc60-5734b12f5c89,https://biolit.fr/sorties/sortie-068c6e4e-eb3d-410f-bc60-5734b12f5c89/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215235000000,5.342707000000,,Anse de la maronaise,25984,observation-068c6e4e-eb3d-410f-bc60-5734b12f5c89,https://biolit.fr/observations/observation-068c6e4e-eb3d-410f-bc60-5734b12f5c89/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0147_0-scaled.jpg,,FALSE, +N1,26270,sortie-068c6e4e-eb3d-410f-bc60-5734b12f5c89,https://biolit.fr/sorties/sortie-068c6e4e-eb3d-410f-bc60-5734b12f5c89/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215235000000,5.342707000000,,Anse de la maronaise,25986,observation-068c6e4e-eb3d-410f-bc60-5734b12f5c89-2,https://biolit.fr/observations/observation-068c6e4e-eb3d-410f-bc60-5734b12f5c89-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0148-scaled.jpg,,FALSE, +N1,26271,sortie-c2c0a4ae-fe8a-419e-9926-d4fdb48b6023,https://biolit.fr/sorties/sortie-c2c0a4ae-fe8a-419e-9926-d4fdb48b6023/,SofiaManuel,,02/07/2017,16.0:55,18.0:55,43.333367000000,5.197171000000,,la redonne,25988,observation-c2c0a4ae-fe8a-419e-9926-d4fdb48b6023,https://biolit.fr/observations/observation-c2c0a4ae-fe8a-419e-9926-d4fdb48b6023/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 4_9-scaled.jpg,,FALSE, +N1,26272,sortie-000cca3a-21f7-4651-888d-b9618754c9a4,https://biolit.fr/sorties/sortie-000cca3a-21f7-4651-888d-b9618754c9a4/,yanis bennadji,,1/24/2017 0:00,14.0000000,17.0000000,43.333757000000,5.197718000000,,Calanque de la Redonne,25990,observation-000cca3a-21f7-4651-888d-b9618754c9a4,https://biolit.fr/observations/observation-000cca3a-21f7-4651-888d-b9618754c9a4/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 1_2-scaled.jpg,,FALSE, +N1,26273,sortie-6294e661-193b-4a8e-97cd-5f0706816fb0,https://biolit.fr/sorties/sortie-6294e661-193b-4a8e-97cd-5f0706816fb0/,dana,,1/23/2017 0:00,14.0000000,17.0000000,43.341730000000,5.260959000000,,plage des prébraies,25992,observation-6294e661-193b-4a8e-97cd-5f0706816fb0,https://biolit.fr/observations/observation-6294e661-193b-4a8e-97cd-5f0706816fb0/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 2_7.JPG,,FALSE, +N1,26274,sortie-20799116-e825-4e11-a478-4db54393a357,https://biolit.fr/sorties/sortie-20799116-e825-4e11-a478-4db54393a357/,Joaronchin,,1/30/2017 0:00,16.0000000,18.0000000,43.330148000000,5.198104000000,,Ensuès la Redonne,25994,observation-20799116-e825-4e11-a478-4db54393a357,https://biolit.fr/observations/observation-20799116-e825-4e11-a478-4db54393a357/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 1_6-scaled.jpg,,FALSE, +N1,26275,sortie-269d7903-0a37-4dc5-8f2a-a697a7fbb492,https://biolit.fr/sorties/sortie-269d7903-0a37-4dc5-8f2a-a697a7fbb492/,justine_camille,,1/30/2017 0:00,14.0000000,17.0000000,43.333574000000,5.197675000000,,Ensuès la Redone,25996,observation-269d7903-0a37-4dc5-8f2a-a697a7fbb492,https://biolit.fr/observations/observation-269d7903-0a37-4dc5-8f2a-a697a7fbb492/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 1_5-scaled.jpg,,FALSE, +N1,26276,sortie-ad581e78-dd45-47c2-bc07-33c9bb41c32b,https://biolit.fr/sorties/sortie-ad581e78-dd45-47c2-bc07-33c9bb41c32b/,azerty123,,02/06/2017,14.0000000,17.0000000,43.333940000000,5.197667000000,,Plage des pébraïres,25998,observation-ad581e78-dd45-47c2-bc07-33c9bb41c32b,https://biolit.fr/observations/observation-ad581e78-dd45-47c2-bc07-33c9bb41c32b/,Opuntia ficus,Figuier de barbarie,,https://biolit.fr/wp-content/uploads/2023/07/photo 2_1.JPG,,TRUE, +N1,26276,sortie-ad581e78-dd45-47c2-bc07-33c9bb41c32b,https://biolit.fr/sorties/sortie-ad581e78-dd45-47c2-bc07-33c9bb41c32b/,azerty123,,02/06/2017,14.0000000,17.0000000,43.333940000000,5.197667000000,,Plage des pébraïres,26000,observation-ad581e78-dd45-47c2-bc07-33c9bb41c32b-2,https://biolit.fr/observations/observation-ad581e78-dd45-47c2-bc07-33c9bb41c32b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 4-scaled.jpg,,FALSE, +N1,26277,sortie-1d0d3a1b-97d9-424d-a16d-b476fd3bb8c0,https://biolit.fr/sorties/sortie-1d0d3a1b-97d9-424d-a16d-b476fd3bb8c0/,Joaronchin,,1/30/2017 0:00,14.0000000,17.0000000,43.321157000000,5.562026000000,,Ensuès la Redonne,,,,,,,,,, +N1,26278,sortie-4dd199d0-d541-4201-b940-b2af17d3f6ec,https://biolit.fr/sorties/sortie-4dd199d0-d541-4201-b940-b2af17d3f6ec/,Linda,,1/23/2017 0:00,13.0000000,17.0000000,43.355117000000,5.209090000000,,La redonne,26004,observation-4dd199d0-d541-4201-b940-b2af17d3f6ec,https://biolit.fr/observations/observation-4dd199d0-d541-4201-b940-b2af17d3f6ec/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 2_0-scaled.jpg,,FALSE, +N1,26279,sortie-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275,https://biolit.fr/sorties/sortie-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275/,ludovic,,01/12/2017,16.000005,17.000005,43.255282000000,5.373767000000,,plage borely,26006,observation-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275,https://biolit.fr/observations/observation-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0693-scaled.jpg,,FALSE, +N1,26279,sortie-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275,https://biolit.fr/sorties/sortie-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275/,ludovic,,01/12/2017,16.000005,17.000005,43.255282000000,5.373767000000,,plage borely,26008,observation-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275-2,https://biolit.fr/observations/observation-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0694-scaled.jpg,,FALSE, +N1,26279,sortie-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275,https://biolit.fr/sorties/sortie-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275/,ludovic,,01/12/2017,16.000005,17.000005,43.255282000000,5.373767000000,,plage borely,26010,observation-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275-3,https://biolit.fr/observations/observation-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0698-scaled.jpg,,FALSE, +N1,26279,sortie-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275,https://biolit.fr/sorties/sortie-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275/,ludovic,,01/12/2017,16.000005,17.000005,43.255282000000,5.373767000000,,plage borely,26012,observation-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275-4,https://biolit.fr/observations/observation-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0707-scaled.jpg,,FALSE, +N1,26279,sortie-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275,https://biolit.fr/sorties/sortie-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275/,ludovic,,01/12/2017,16.000005,17.000005,43.255282000000,5.373767000000,,plage borely,26014,observation-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275-5,https://biolit.fr/observations/observation-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0708-scaled.jpg,,FALSE, +N1,26279,sortie-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275,https://biolit.fr/sorties/sortie-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275/,ludovic,,01/12/2017,16.000005,17.000005,43.255282000000,5.373767000000,,plage borely,26016,observation-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275-6,https://biolit.fr/observations/observation-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0709-scaled.jpg,,FALSE, +N1,26280,sortie-ec697428-8213-4d03-8132-d1b643865482,https://biolit.fr/sorties/sortie-ec697428-8213-4d03-8132-d1b643865482/,romisseu,,12/13/2016 0:00,14.0000000,17.0000000,43.333436000000,5.197112000000,,plage des pébraires,26018,observation-ec697428-8213-4d03-8132-d1b643865482,https://biolit.fr/observations/observation-ec697428-8213-4d03-8132-d1b643865482/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic2_8-scaled.jpg,,FALSE, +N1,26281,sortie-b058e0ad-067d-4476-ab2e-f6ddfe98cf27,https://biolit.fr/sorties/sortie-b058e0ad-067d-4476-ab2e-f6ddfe98cf27/,thomas,,12/13/2016 0:00,14.0000000,17.0000000,43.33343700000,5.197734000000,,ensues-la-redonne,26020,observation-b058e0ad-067d-4476-ab2e-f6ddfe98cf27,https://biolit.fr/observations/observation-b058e0ad-067d-4476-ab2e-f6ddfe98cf27/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic-scaled.jpg,,FALSE, +N1,26282,sortie-5fd345cf-5640-4f12-addf-04b1ea6201c2,https://biolit.fr/sorties/sortie-5fd345cf-5640-4f12-addf-04b1ea6201c2/,Ville de Marseille,,11/14/2016 0:00,11.0000000,12.0000000,43.280462000000,5.352738000000,,"Anse de la fausse monnaie, Marseille",26022,observation-5fd345cf-5640-4f12-addf-04b1ea6201c2,https://biolit.fr/observations/observation-5fd345cf-5640-4f12-addf-04b1ea6201c2/,,,,https://biolit.fr/wp-content/uploads/2023/07/épinard de nelle zélande.JPG,,FALSE, +N1,26283,sortie-2900271e-0d09-4727-a0c3-a419edf157cd,https://biolit.fr/sorties/sortie-2900271e-0d09-4727-a0c3-a419edf157cd/,Marine,,10/16/2016 0:00,9.0000000,10.0000000,43.072562000000,5.784553000000,,Ile des Embiez,26024,observation-2900271e-0d09-4727-a0c3-a419edf157cd,https://biolit.fr/observations/observation-2900271e-0d09-4727-a0c3-a419edf157cd/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1902-rotated.jpg,,FALSE, +N1,26283,sortie-2900271e-0d09-4727-a0c3-a419edf157cd,https://biolit.fr/sorties/sortie-2900271e-0d09-4727-a0c3-a419edf157cd/,Marine,,10/16/2016 0:00,9.0000000,10.0000000,43.072562000000,5.784553000000,,Ile des Embiez,26026,observation-2900271e-0d09-4727-a0c3-a419edf157cd-2,https://biolit.fr/observations/observation-2900271e-0d09-4727-a0c3-a419edf157cd-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1903-rotated.jpg,,FALSE, +N1,26283,sortie-2900271e-0d09-4727-a0c3-a419edf157cd,https://biolit.fr/sorties/sortie-2900271e-0d09-4727-a0c3-a419edf157cd/,Marine,,10/16/2016 0:00,9.0000000,10.0000000,43.072562000000,5.784553000000,,Ile des Embiez,26028,observation-2900271e-0d09-4727-a0c3-a419edf157cd-3,https://biolit.fr/observations/observation-2900271e-0d09-4727-a0c3-a419edf157cd-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1904-rotated.jpg,,FALSE, +N1,26284,sortie-843f715b-a41e-44da-a4ab-944c1feac6cd,https://biolit.fr/sorties/sortie-843f715b-a41e-44da-a4ab-944c1feac6cd/,Ecole de la mer,,8/29/2016 0:00,20.0000000,22.0000000,16.213718000000,-61.536479000000,,Ilet cochon ,26030,observation-843f715b-a41e-44da-a4ab-944c1feac6cd,https://biolit.fr/observations/observation-843f715b-a41e-44da-a4ab-944c1feac6cd/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN1147-001.JPG,,FALSE, +N1,26285,sortie-11b357c4-3c47-4f60-a842-e59b515af1a8,https://biolit.fr/sorties/sortie-11b357c4-3c47-4f60-a842-e59b515af1a8/,Ecole de la mer,,08/01/2016,9.0000000,10.0000000,16.215363000000,-61.536994000000,,Ilet cochon ,26032,observation-11b357c4-3c47-4f60-a842-e59b515af1a8,https://biolit.fr/observations/observation-11b357c4-3c47-4f60-a842-e59b515af1a8/,Avicennia germinans,Palétuvier noir,,https://biolit.fr/wp-content/uploads/2023/07/DSCN1159-001_0.JPG,,TRUE, +N1,26286,sortie-cd073ab8-427f-487e-91b7-a561b386b94f,https://biolit.fr/sorties/sortie-cd073ab8-427f-487e-91b7-a561b386b94f/,Valie,,6/26/2016 0:00,13.0000000,13.0000000,43.289384000000,3.435118000000,,Plage de la Tamarissière,26034,observation-cd073ab8-427f-487e-91b7-a561b386b94f,https://biolit.fr/observations/observation-cd073ab8-427f-487e-91b7-a561b386b94f/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02682.JPG,,FALSE, +N1,26286,sortie-cd073ab8-427f-487e-91b7-a561b386b94f,https://biolit.fr/sorties/sortie-cd073ab8-427f-487e-91b7-a561b386b94f/,Valie,,6/26/2016 0:00,13.0000000,13.0000000,43.289384000000,3.435118000000,,Plage de la Tamarissière,26036,observation-cd073ab8-427f-487e-91b7-a561b386b94f-2,https://biolit.fr/observations/observation-cd073ab8-427f-487e-91b7-a561b386b94f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02726-scaled.jpg,,FALSE, +N1,26286,sortie-cd073ab8-427f-487e-91b7-a561b386b94f,https://biolit.fr/sorties/sortie-cd073ab8-427f-487e-91b7-a561b386b94f/,Valie,,6/26/2016 0:00,13.0000000,13.0000000,43.289384000000,3.435118000000,,Plage de la Tamarissière,26038,observation-cd073ab8-427f-487e-91b7-a561b386b94f-3,https://biolit.fr/observations/observation-cd073ab8-427f-487e-91b7-a561b386b94f-3/,Convolvulus soldanella,Liseron des dunes,,https://biolit.fr/wp-content/uploads/2023/07/DSC02716.JPG,,TRUE, +N1,26286,sortie-cd073ab8-427f-487e-91b7-a561b386b94f,https://biolit.fr/sorties/sortie-cd073ab8-427f-487e-91b7-a561b386b94f/,Valie,,6/26/2016 0:00,13.0000000,13.0000000,43.289384000000,3.435118000000,,Plage de la Tamarissière,26040,observation-cd073ab8-427f-487e-91b7-a561b386b94f-4,https://biolit.fr/observations/observation-cd073ab8-427f-487e-91b7-a561b386b94f-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02733.JPG,,FALSE, +N1,26286,sortie-cd073ab8-427f-487e-91b7-a561b386b94f,https://biolit.fr/sorties/sortie-cd073ab8-427f-487e-91b7-a561b386b94f/,Valie,,6/26/2016 0:00,13.0000000,13.0000000,43.289384000000,3.435118000000,,Plage de la Tamarissière,26042,observation-cd073ab8-427f-487e-91b7-a561b386b94f-5,https://biolit.fr/observations/observation-cd073ab8-427f-487e-91b7-a561b386b94f-5/,Anthemis maritima,Anthémis maritime,,https://biolit.fr/wp-content/uploads/2023/07/DSC02734-scaled.jpg,,TRUE, +N1,26286,sortie-cd073ab8-427f-487e-91b7-a561b386b94f,https://biolit.fr/sorties/sortie-cd073ab8-427f-487e-91b7-a561b386b94f/,Valie,,6/26/2016 0:00,13.0000000,13.0000000,43.289384000000,3.435118000000,,Plage de la Tamarissière,26044,observation-cd073ab8-427f-487e-91b7-a561b386b94f-6,https://biolit.fr/observations/observation-cd073ab8-427f-487e-91b7-a561b386b94f-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02735.JPG,,FALSE, +N1,26286,sortie-cd073ab8-427f-487e-91b7-a561b386b94f,https://biolit.fr/sorties/sortie-cd073ab8-427f-487e-91b7-a561b386b94f/,Valie,,6/26/2016 0:00,13.0000000,13.0000000,43.289384000000,3.435118000000,,Plage de la Tamarissière,26046,observation-cd073ab8-427f-487e-91b7-a561b386b94f-7,https://biolit.fr/observations/observation-cd073ab8-427f-487e-91b7-a561b386b94f-7/,Matthiola sinuata,Giroflée des dunes,,https://biolit.fr/wp-content/uploads/2023/07/DSC02736.JPG,,TRUE, +N1,26286,sortie-cd073ab8-427f-487e-91b7-a561b386b94f,https://biolit.fr/sorties/sortie-cd073ab8-427f-487e-91b7-a561b386b94f/,Valie,,6/26/2016 0:00,13.0000000,13.0000000,43.289384000000,3.435118000000,,Plage de la Tamarissière,26048,observation-cd073ab8-427f-487e-91b7-a561b386b94f-8,https://biolit.fr/observations/observation-cd073ab8-427f-487e-91b7-a561b386b94f-8/,Lagurus ovatus,Queue de lièvre,,https://biolit.fr/wp-content/uploads/2023/07/DSC02737.JPG,,TRUE, +N1,26286,sortie-cd073ab8-427f-487e-91b7-a561b386b94f,https://biolit.fr/sorties/sortie-cd073ab8-427f-487e-91b7-a561b386b94f/,Valie,,6/26/2016 0:00,13.0000000,13.0000000,43.289384000000,3.435118000000,,Plage de la Tamarissière,26050,observation-cd073ab8-427f-487e-91b7-a561b386b94f-9,https://biolit.fr/observations/observation-cd073ab8-427f-487e-91b7-a561b386b94f-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02741.JPG,,FALSE, +N1,26286,sortie-cd073ab8-427f-487e-91b7-a561b386b94f,https://biolit.fr/sorties/sortie-cd073ab8-427f-487e-91b7-a561b386b94f/,Valie,,6/26/2016 0:00,13.0000000,13.0000000,43.289384000000,3.435118000000,,Plage de la Tamarissière,26052,observation-cd073ab8-427f-487e-91b7-a561b386b94f-10,https://biolit.fr/observations/observation-cd073ab8-427f-487e-91b7-a561b386b94f-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02741_0.JPG,,FALSE, +N1,26286,sortie-cd073ab8-427f-487e-91b7-a561b386b94f,https://biolit.fr/sorties/sortie-cd073ab8-427f-487e-91b7-a561b386b94f/,Valie,,6/26/2016 0:00,13.0000000,13.0000000,43.289384000000,3.435118000000,,Plage de la Tamarissière,26054,observation-cd073ab8-427f-487e-91b7-a561b386b94f-11,https://biolit.fr/observations/observation-cd073ab8-427f-487e-91b7-a561b386b94f-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02746-scaled.jpg,,FALSE, +N1,26286,sortie-cd073ab8-427f-487e-91b7-a561b386b94f,https://biolit.fr/sorties/sortie-cd073ab8-427f-487e-91b7-a561b386b94f/,Valie,,6/26/2016 0:00,13.0000000,13.0000000,43.289384000000,3.435118000000,,Plage de la Tamarissière,26056,observation-cd073ab8-427f-487e-91b7-a561b386b94f-12,https://biolit.fr/observations/observation-cd073ab8-427f-487e-91b7-a561b386b94f-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02738-scaled.jpg,,FALSE, +N1,26286,sortie-cd073ab8-427f-487e-91b7-a561b386b94f,https://biolit.fr/sorties/sortie-cd073ab8-427f-487e-91b7-a561b386b94f/,Valie,,6/26/2016 0:00,13.0000000,13.0000000,43.289384000000,3.435118000000,,Plage de la Tamarissière,26058,observation-cd073ab8-427f-487e-91b7-a561b386b94f-13,https://biolit.fr/observations/observation-cd073ab8-427f-487e-91b7-a561b386b94f-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02743-scaled.jpg,,FALSE, +N1,26287,sortie-1eb7f8a2-0e70-4949-be88-89f618f2fa13,https://biolit.fr/sorties/sortie-1eb7f8a2-0e70-4949-be88-89f618f2fa13/,Ecole de la mer,,3/30/2016 0:00,9.0000000,10.0:15,16.198696000000,-61.491043000000,,Ilet gosier ,26060,observation-1eb7f8a2-0e70-4949-be88-89f618f2fa13,https://biolit.fr/observations/observation-1eb7f8a2-0e70-4949-be88-89f618f2fa13/,,,,https://biolit.fr/wp-content/uploads/2023/07/GOPR3006.JPG,,FALSE, +N1,26287,sortie-1eb7f8a2-0e70-4949-be88-89f618f2fa13,https://biolit.fr/sorties/sortie-1eb7f8a2-0e70-4949-be88-89f618f2fa13/,Ecole de la mer,,3/30/2016 0:00,9.0000000,10.0:15,16.198696000000,-61.491043000000,,Ilet gosier ,26062,observation-1eb7f8a2-0e70-4949-be88-89f618f2fa13-2,https://biolit.fr/observations/observation-1eb7f8a2-0e70-4949-be88-89f618f2fa13-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/GOPR3005-001.JPG,,FALSE, +N1,26288,sortie-b3c7d47a-7548-4c0a-9cab-b276c18dfa8c,https://biolit.fr/sorties/sortie-b3c7d47a-7548-4c0a-9cab-b276c18dfa8c/,Ecole de la mer,,3/29/2016 0:00,9.0000000,10.0:15,16.213876000000,-61.535315000000,,Ilet cochon,26064,observation-b3c7d47a-7548-4c0a-9cab-b276c18dfa8c,https://biolit.fr/observations/observation-b3c7d47a-7548-4c0a-9cab-b276c18dfa8c/,,,,https://biolit.fr/wp-content/uploads/2023/07/GOPR3053.JPG,,FALSE, +N1,26288,sortie-b3c7d47a-7548-4c0a-9cab-b276c18dfa8c,https://biolit.fr/sorties/sortie-b3c7d47a-7548-4c0a-9cab-b276c18dfa8c/,Ecole de la mer,,3/29/2016 0:00,9.0000000,10.0:15,16.213876000000,-61.535315000000,,Ilet cochon,26066,observation-b3c7d47a-7548-4c0a-9cab-b276c18dfa8c-2,https://biolit.fr/observations/observation-b3c7d47a-7548-4c0a-9cab-b276c18dfa8c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/GOPR3055.JPG,,FALSE, +N1,26289,sortie-87776a5c-7644-4dbe-b772-d109fe59471e,https://biolit.fr/sorties/sortie-87776a5c-7644-4dbe-b772-d109fe59471e/,Marine,,03/08/2016,13.0000000,15.0000000,43.419847000000,5.173589000000,,Lido du Jai,26068,observation-87776a5c-7644-4dbe-b772-d109fe59471e,https://biolit.fr/observations/observation-87776a5c-7644-4dbe-b772-d109fe59471e/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1218-rotated.jpg,,FALSE, +N1,26290,sortie-9f0546a0-377d-4aab-b4e1-b15055bebb99,https://biolit.fr/sorties/sortie-9f0546a0-377d-4aab-b4e1-b15055bebb99/,Ecole de la mer,,3/21/2016 0:00,9.0:45,10.0000000,16.21568900000,-61.537688000000,,Ilet cochon,26070,observation-9f0546a0-377d-4aab-b4e1-b15055bebb99,https://biolit.fr/observations/observation-9f0546a0-377d-4aab-b4e1-b15055bebb99/,,,,https://biolit.fr/wp-content/uploads/2023/07/raisinier 2.JPG,,FALSE, +N1,26290,sortie-9f0546a0-377d-4aab-b4e1-b15055bebb99,https://biolit.fr/sorties/sortie-9f0546a0-377d-4aab-b4e1-b15055bebb99/,Ecole de la mer,,3/21/2016 0:00,9.0:45,10.0000000,16.21568900000,-61.537688000000,,Ilet cochon,26072,observation-9f0546a0-377d-4aab-b4e1-b15055bebb99-2,https://biolit.fr/observations/observation-9f0546a0-377d-4aab-b4e1-b15055bebb99-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/raisinier.JPG,,FALSE, +N1,26290,sortie-9f0546a0-377d-4aab-b4e1-b15055bebb99,https://biolit.fr/sorties/sortie-9f0546a0-377d-4aab-b4e1-b15055bebb99/,Ecole de la mer,,3/21/2016 0:00,9.0:45,10.0000000,16.21568900000,-61.537688000000,,Ilet cochon,26074,observation-9f0546a0-377d-4aab-b4e1-b15055bebb99-3,https://biolit.fr/observations/observation-9f0546a0-377d-4aab-b4e1-b15055bebb99-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/catalpa.JPG,,FALSE, +N1,26290,sortie-9f0546a0-377d-4aab-b4e1-b15055bebb99,https://biolit.fr/sorties/sortie-9f0546a0-377d-4aab-b4e1-b15055bebb99/,Ecole de la mer,,3/21/2016 0:00,9.0:45,10.0000000,16.21568900000,-61.537688000000,,Ilet cochon,26076,observation-9f0546a0-377d-4aab-b4e1-b15055bebb99-4,https://biolit.fr/observations/observation-9f0546a0-377d-4aab-b4e1-b15055bebb99-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/GOPR3159.JPG,,FALSE, +N1,26290,sortie-9f0546a0-377d-4aab-b4e1-b15055bebb99,https://biolit.fr/sorties/sortie-9f0546a0-377d-4aab-b4e1-b15055bebb99/,Ecole de la mer,,3/21/2016 0:00,9.0:45,10.0000000,16.21568900000,-61.537688000000,,Ilet cochon,26078,observation-9f0546a0-377d-4aab-b4e1-b15055bebb99-5,https://biolit.fr/observations/observation-9f0546a0-377d-4aab-b4e1-b15055bebb99-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/badanier 2.JPG,,FALSE, +N1,26291,sortie-4307f415-8883-48c8-b5ca-67029980755b,https://biolit.fr/sorties/sortie-4307f415-8883-48c8-b5ca-67029980755b/,Marine,,1/31/2016 0:00,12.0000000,14.0000000,43.093140000000,6.024675000000,,Plage de la Garonne,26080,observation-4307f415-8883-48c8-b5ca-67029980755b,https://biolit.fr/observations/observation-4307f415-8883-48c8-b5ca-67029980755b/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1088-scaled.jpg,,FALSE, +N1,26292,sortie-6cda2832-7bbf-4f81-bb4c-72057c106bf2,https://biolit.fr/sorties/sortie-6cda2832-7bbf-4f81-bb4c-72057c106bf2/,Centre de Découverte Mer et Montagne,,11/04/2015,14.0000000,16.0000000,43.689868000000,7.294454000000,,Sentier littoral de Nice,26082,observation-6cda2832-7bbf-4f81-bb4c-72057c106bf2,https://biolit.fr/observations/observation-6cda2832-7bbf-4f81-bb4c-72057c106bf2/,,,,https://biolit.fr/wp-content/uploads/2023/07/151104_CN_biolit_ClA (4)euphorbe arborescente-scaled.jpg,,FALSE, +N1,26292,sortie-6cda2832-7bbf-4f81-bb4c-72057c106bf2,https://biolit.fr/sorties/sortie-6cda2832-7bbf-4f81-bb4c-72057c106bf2/,Centre de Découverte Mer et Montagne,,11/04/2015,14.0000000,16.0000000,43.689868000000,7.294454000000,,Sentier littoral de Nice,26084,observation-6cda2832-7bbf-4f81-bb4c-72057c106bf2-2,https://biolit.fr/observations/observation-6cda2832-7bbf-4f81-bb4c-72057c106bf2-2/,Lobularia maritima,Alysson maritime,,https://biolit.fr/wp-content/uploads/2023/07/151104_CN_biolit_ClA (6)alysson-scaled.jpg,,TRUE, +N1,26292,sortie-6cda2832-7bbf-4f81-bb4c-72057c106bf2,https://biolit.fr/sorties/sortie-6cda2832-7bbf-4f81-bb4c-72057c106bf2/,Centre de Découverte Mer et Montagne,,11/04/2015,14.0000000,16.0000000,43.689868000000,7.294454000000,,Sentier littoral de Nice,26086,observation-6cda2832-7bbf-4f81-bb4c-72057c106bf2-3,https://biolit.fr/observations/observation-6cda2832-7bbf-4f81-bb4c-72057c106bf2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/151104_CN_biolit_ClA (9)acanthe à feuille molle et figuier de barbarie-scaled.jpg,,FALSE, +N1,26292,sortie-6cda2832-7bbf-4f81-bb4c-72057c106bf2,https://biolit.fr/sorties/sortie-6cda2832-7bbf-4f81-bb4c-72057c106bf2/,Centre de Découverte Mer et Montagne,,11/04/2015,14.0000000,16.0000000,43.689868000000,7.294454000000,,Sentier littoral de Nice,26088,observation-6cda2832-7bbf-4f81-bb4c-72057c106bf2-4,https://biolit.fr/observations/observation-6cda2832-7bbf-4f81-bb4c-72057c106bf2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/151104_CN_biolit_ClA (14)criste marine-scaled.jpg,,FALSE, +N1,26292,sortie-6cda2832-7bbf-4f81-bb4c-72057c106bf2,https://biolit.fr/sorties/sortie-6cda2832-7bbf-4f81-bb4c-72057c106bf2/,Centre de Découverte Mer et Montagne,,11/04/2015,14.0000000,16.0000000,43.689868000000,7.294454000000,,Sentier littoral de Nice,26090,observation-6cda2832-7bbf-4f81-bb4c-72057c106bf2-5,https://biolit.fr/observations/observation-6cda2832-7bbf-4f81-bb4c-72057c106bf2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/151104_CN_biolit_ClA (16)statice a feuille cordée-scaled.jpg,,FALSE, +N1,26292,sortie-6cda2832-7bbf-4f81-bb4c-72057c106bf2,https://biolit.fr/sorties/sortie-6cda2832-7bbf-4f81-bb4c-72057c106bf2/,Centre de Découverte Mer et Montagne,,11/04/2015,14.0000000,16.0000000,43.689868000000,7.294454000000,,Sentier littoral de Nice,26092,observation-6cda2832-7bbf-4f81-bb4c-72057c106bf2-6,https://biolit.fr/observations/observation-6cda2832-7bbf-4f81-bb4c-72057c106bf2-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/151104_CN_biolit_ClA (19)-scaled.jpg,,FALSE, +N1,26292,sortie-6cda2832-7bbf-4f81-bb4c-72057c106bf2,https://biolit.fr/sorties/sortie-6cda2832-7bbf-4f81-bb4c-72057c106bf2/,Centre de Découverte Mer et Montagne,,11/04/2015,14.0000000,16.0000000,43.689868000000,7.294454000000,,Sentier littoral de Nice,26094,observation-6cda2832-7bbf-4f81-bb4c-72057c106bf2-7,https://biolit.fr/observations/observation-6cda2832-7bbf-4f81-bb4c-72057c106bf2-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/151104_CN_biolit_ClA (32)maceron-scaled.jpg,,FALSE, +N1,26292,sortie-6cda2832-7bbf-4f81-bb4c-72057c106bf2,https://biolit.fr/sorties/sortie-6cda2832-7bbf-4f81-bb4c-72057c106bf2/,Centre de Découverte Mer et Montagne,,11/04/2015,14.0000000,16.0000000,43.689868000000,7.294454000000,,Sentier littoral de Nice,26096,observation-6cda2832-7bbf-4f81-bb4c-72057c106bf2-8,https://biolit.fr/observations/observation-6cda2832-7bbf-4f81-bb4c-72057c106bf2-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/151104_CN_biolit_ClA (33)carpobrotus-scaled.jpg,,FALSE, +N1,26293,sortie-9d9ecf08-ab19-4e5a-8d62-a9b1ee62c85f,https://biolit.fr/sorties/sortie-9d9ecf08-ab19-4e5a-8d62-a9b1ee62c85f/,Planète Mer,,9/21/2015 0:00,14.0000000,16.0000000,43.521018000000,7.032667000000,,île Sainte Marguerite,26098,observation-9d9ecf08-ab19-4e5a-8d62-a9b1ee62c85f,https://biolit.fr/observations/observation-9d9ecf08-ab19-4e5a-8d62-a9b1ee62c85f/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0020_0-scaled.jpg,,FALSE, +N1,26293,sortie-9d9ecf08-ab19-4e5a-8d62-a9b1ee62c85f,https://biolit.fr/sorties/sortie-9d9ecf08-ab19-4e5a-8d62-a9b1ee62c85f/,Planète Mer,,9/21/2015 0:00,14.0000000,16.0000000,43.521018000000,7.032667000000,,île Sainte Marguerite,26100,observation-9d9ecf08-ab19-4e5a-8d62-a9b1ee62c85f-2,https://biolit.fr/observations/observation-9d9ecf08-ab19-4e5a-8d62-a9b1ee62c85f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0021-scaled.jpg,,FALSE, +N1,26294,sortie-ae803e3e-a31b-4683-a47d-8469a13b8aca,https://biolit.fr/sorties/sortie-ae803e3e-a31b-4683-a47d-8469a13b8aca/,Centre de Découverte Mer et Montagne,,7/22/2015 0:00,15.0000000,15.0000000,43.692160000000,7.290585000000,,Nice,26102,observation-ae803e3e-a31b-4683-a47d-8469a13b8aca,https://biolit.fr/observations/observation-ae803e3e-a31b-4683-a47d-8469a13b8aca/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP2560-scaled.jpg,,FALSE, +N1,26295,sortie-09603699-706a-4aab-b0ce-6de0c54a9b87,https://biolit.fr/sorties/sortie-09603699-706a-4aab-b0ce-6de0c54a9b87/,Marine,,07/02/2015,16.0000000,19.0000000,43.209586000000,5.372984000000,,Calanques de Marseilleverye,26104,observation-09603699-706a-4aab-b0ce-6de0c54a9b87,https://biolit.fr/observations/observation-09603699-706a-4aab-b0ce-6de0c54a9b87/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0706-scaled.jpg,,FALSE, +N1,26295,sortie-09603699-706a-4aab-b0ce-6de0c54a9b87,https://biolit.fr/sorties/sortie-09603699-706a-4aab-b0ce-6de0c54a9b87/,Marine,,07/02/2015,16.0000000,19.0000000,43.209586000000,5.372984000000,,Calanques de Marseilleverye,26106,observation-09603699-706a-4aab-b0ce-6de0c54a9b87-2,https://biolit.fr/observations/observation-09603699-706a-4aab-b0ce-6de0c54a9b87-2/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0707-scaled.jpg,,TRUE, +N1,26295,sortie-09603699-706a-4aab-b0ce-6de0c54a9b87,https://biolit.fr/sorties/sortie-09603699-706a-4aab-b0ce-6de0c54a9b87/,Marine,,07/02/2015,16.0000000,19.0000000,43.209586000000,5.372984000000,,Calanques de Marseilleverye,26108,observation-09603699-706a-4aab-b0ce-6de0c54a9b87-3,https://biolit.fr/observations/observation-09603699-706a-4aab-b0ce-6de0c54a9b87-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0710-scaled.jpg,,FALSE, +N1,26296,sortie-1a640a35-a961-416b-abf0-6f2a39a5ef69,https://biolit.fr/sorties/sortie-1a640a35-a961-416b-abf0-6f2a39a5ef69/,Marine,,6/25/2015 0:00,17.0000000,18.0000000,43.156106000000,6.503254000000,,Hameau du Dattier,26110,observation-1a640a35-a961-416b-abf0-6f2a39a5ef69,https://biolit.fr/observations/observation-1a640a35-a961-416b-abf0-6f2a39a5ef69/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0689-scaled.jpg,,TRUE,Identifiable +N1,26296,sortie-1a640a35-a961-416b-abf0-6f2a39a5ef69,https://biolit.fr/sorties/sortie-1a640a35-a961-416b-abf0-6f2a39a5ef69/,Marine,,6/25/2015 0:00,17.0000000,18.0000000,43.156106000000,6.503254000000,,Hameau du Dattier,26112,observation-1a640a35-a961-416b-abf0-6f2a39a5ef69-2,https://biolit.fr/observations/observation-1a640a35-a961-416b-abf0-6f2a39a5ef69-2/,Anthyllis barba-jovis,Anthyllide barbe-de-Jupiter,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0688-scaled.jpg,,TRUE, +N1,26297,sortie-9219fd6b-a106-41e1-900d-1252196aaaa4,https://biolit.fr/sorties/sortie-9219fd6b-a106-41e1-900d-1252196aaaa4/,Marine,,06/05/2015,18.0000000,20.0000000,43.32591800000,5.054005000000,,Plage de la Couronne Vieille,26114,observation-9219fd6b-a106-41e1-900d-1252196aaaa4,https://biolit.fr/observations/observation-9219fd6b-a106-41e1-900d-1252196aaaa4/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0653-scaled.jpg,,TRUE, +N1,26298,sortie-4816ba5a-c1e1-4da9-ae36-b828b27e7615,https://biolit.fr/sorties/sortie-4816ba5a-c1e1-4da9-ae36-b828b27e7615/,SIBOJAÏ - Syndicat Intercommunal du Bolmon et du Jaï,,5/21/2015 0:00,15.0000000,16.0:15,43.419620000000,5.173878000000,,Lido du Jaï,26116,observation-4816ba5a-c1e1-4da9-ae36-b828b27e7615,https://biolit.fr/observations/observation-4816ba5a-c1e1-4da9-ae36-b828b27e7615/,Zostera noltei,Zostère naine,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0034-scaled.jpg,,TRUE, +N1,26299,sortie-208c9679-5e05-41ae-9104-e85e58f1af16,https://biolit.fr/sorties/sortie-208c9679-5e05-41ae-9104-e85e58f1af16/,SIBOJAÏ - Syndicat Intercommunal du Bolmon et du Jaï,,5/21/2015 0:00,15.0000000,16.0:15,43.419355000000,5.174157000000,,Lido du Jaï - Marignane,26118,observation-208c9679-5e05-41ae-9104-e85e58f1af16,https://biolit.fr/observations/observation-208c9679-5e05-41ae-9104-e85e58f1af16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lys des sables.JPG,,FALSE, +N1,26300,sortie-4ce1db86-76e6-4888-a42e-f9902600e228,https://biolit.fr/sorties/sortie-4ce1db86-76e6-4888-a42e-f9902600e228/,Marine,,5/19/2015 0:00,9.0000000,10.0000000,43.273244000000,5.362813000000,,Corniche Kennedy,26120,observation-4ce1db86-76e6-4888-a42e-f9902600e228,https://biolit.fr/observations/observation-4ce1db86-76e6-4888-a42e-f9902600e228/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0007_2-scaled.jpg,,TRUE, +N1,26301,sortie-3e375acd-0498-4e1f-a43c-b95a350eccf5,https://biolit.fr/sorties/sortie-3e375acd-0498-4e1f-a43c-b95a350eccf5/,Malori,,5/24/2015 0:00,12.0000000,12.0000000,43.280305000000,5.352793000000,,Anse de la fausse monnaie,26122,observation-3e375acd-0498-4e1f-a43c-b95a350eccf5,https://biolit.fr/observations/observation-3e375acd-0498-4e1f-a43c-b95a350eccf5/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/11022517_10155487940450408_4960961901641815163_o.jpg,,TRUE, +N1,26302,sortie-b8de20b6-c1f5-4ea0-ac08-97b717fd6d9d,https://biolit.fr/sorties/sortie-b8de20b6-c1f5-4ea0-ac08-97b717fd6d9d/,Marine,,5/22/2015 0:00,15.0000000,18.0000000,43.419925000000,5.173900000000,,Le Lido du Jaï,26124,observation-b8de20b6-c1f5-4ea0-ac08-97b717fd6d9d,https://biolit.fr/observations/observation-b8de20b6-c1f5-4ea0-ac08-97b717fd6d9d/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0634-scaled.jpg,,FALSE, +N1,26303,sortie-b2fa53c1-995d-479a-ab03-19fb32d4b1d4,https://biolit.fr/sorties/sortie-b2fa53c1-995d-479a-ab03-19fb32d4b1d4/,ugomad,,5/21/2015 0:00,14.0000000,15.0000000,43.278642000000,5.353452000000,,"Marégraphe, Corniche Kennedy, Marseille",26126,observation-b2fa53c1-995d-479a-ab03-19fb32d4b1d4,https://biolit.fr/observations/observation-b2fa53c1-995d-479a-ab03-19fb32d4b1d4/,Pallenis maritima,Astérolide maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8328-scaled.jpg,,TRUE, +N1,26303,sortie-b2fa53c1-995d-479a-ab03-19fb32d4b1d4,https://biolit.fr/sorties/sortie-b2fa53c1-995d-479a-ab03-19fb32d4b1d4/,ugomad,,5/21/2015 0:00,14.0000000,15.0000000,43.278642000000,5.353452000000,,"Marégraphe, Corniche Kennedy, Marseille",26128,observation-b2fa53c1-995d-479a-ab03-19fb32d4b1d4-2,https://biolit.fr/observations/observation-b2fa53c1-995d-479a-ab03-19fb32d4b1d4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8330-scaled.jpg,,FALSE, +N1,26304,sortie-474bfeae-4378-44d3-a1d1-31b701f1713f,https://biolit.fr/sorties/sortie-474bfeae-4378-44d3-a1d1-31b701f1713f/,ugomad,,5/20/2015 0:00,16.0000000,16.0:45,43.28032900000,5.352750000000,,"Anse de la Fausse Monnaie, Marseille",26130,observation-474bfeae-4378-44d3-a1d1-31b701f1713f,https://biolit.fr/observations/observation-474bfeae-4378-44d3-a1d1-31b701f1713f/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8267-scaled.jpg,,TRUE, +N1,26304,sortie-474bfeae-4378-44d3-a1d1-31b701f1713f,https://biolit.fr/sorties/sortie-474bfeae-4378-44d3-a1d1-31b701f1713f/,ugomad,,5/20/2015 0:00,16.0000000,16.0:45,43.28032900000,5.352750000000,,"Anse de la Fausse Monnaie, Marseille",26132,observation-474bfeae-4378-44d3-a1d1-31b701f1713f-2,https://biolit.fr/observations/observation-474bfeae-4378-44d3-a1d1-31b701f1713f-2/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8268-scaled.jpg,,TRUE, +N1,26304,sortie-474bfeae-4378-44d3-a1d1-31b701f1713f,https://biolit.fr/sorties/sortie-474bfeae-4378-44d3-a1d1-31b701f1713f/,ugomad,,5/20/2015 0:00,16.0000000,16.0:45,43.28032900000,5.352750000000,,"Anse de la Fausse Monnaie, Marseille",26134,observation-474bfeae-4378-44d3-a1d1-31b701f1713f-3,https://biolit.fr/observations/observation-474bfeae-4378-44d3-a1d1-31b701f1713f-3/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8269-scaled.jpg,,TRUE, +N1,26305,sortie-0edf27d4-306b-46b3-bb98-2e96c6a2441e,https://biolit.fr/sorties/sortie-0edf27d4-306b-46b3-bb98-2e96c6a2441e/,Marine,,05/09/2015,16.0000000,18.0000000,43.096313000000,6.020437000000,,Plage du Pradet,26136,observation-0edf27d4-306b-46b3-bb98-2e96c6a2441e,https://biolit.fr/observations/observation-0edf27d4-306b-46b3-bb98-2e96c6a2441e/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9713_2-scaled.jpg,,TRUE, +N1,26305,sortie-0edf27d4-306b-46b3-bb98-2e96c6a2441e,https://biolit.fr/sorties/sortie-0edf27d4-306b-46b3-bb98-2e96c6a2441e/,Marine,,05/09/2015,16.0000000,18.0000000,43.096313000000,6.020437000000,,Plage du Pradet,26138,observation-0edf27d4-306b-46b3-bb98-2e96c6a2441e-2,https://biolit.fr/observations/observation-0edf27d4-306b-46b3-bb98-2e96c6a2441e-2/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9714_2-scaled.jpg,,TRUE, +N1,26306,sortie-46639a9c-8a68-43bc-9d2c-4c743ae4e5b9,https://biolit.fr/sorties/sortie-46639a9c-8a68-43bc-9d2c-4c743ae4e5b9/,Céline,,11/16/2014 0:00,15.0:15,16.0:15,43.331404000000,5.071321000000,,Plage de Ste Croix,26140,observation-46639a9c-8a68-43bc-9d2c-4c743ae4e5b9,https://biolit.fr/observations/observation-46639a9c-8a68-43bc-9d2c-4c743ae4e5b9/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/DSCN8414-scaled.jpg,,TRUE, +N1,26306,sortie-46639a9c-8a68-43bc-9d2c-4c743ae4e5b9,https://biolit.fr/sorties/sortie-46639a9c-8a68-43bc-9d2c-4c743ae4e5b9/,Céline,,11/16/2014 0:00,15.0:15,16.0:15,43.331404000000,5.071321000000,,Plage de Ste Croix,26142,observation-46639a9c-8a68-43bc-9d2c-4c743ae4e5b9-2,https://biolit.fr/observations/observation-46639a9c-8a68-43bc-9d2c-4c743ae4e5b9-2/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/DSCN8416-scaled.jpg,,TRUE, +N1,26307,sortie-ea2a3d83-a3f5-4990-a6cc-68f363a52cfc,https://biolit.fr/sorties/sortie-ea2a3d83-a3f5-4990-a6cc-68f363a52cfc/,Marine,,09/03/2014,9.0000000,10.0000000,43.282341000000,5.348691000000,,Malmousque,26145,observation-ea2a3d83-a3f5-4990-a6cc-68f363a52cfc,https://biolit.fr/observations/observation-ea2a3d83-a3f5-4990-a6cc-68f363a52cfc/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9019-scaled.jpg,,TRUE, +N1,26307,sortie-ea2a3d83-a3f5-4990-a6cc-68f363a52cfc,https://biolit.fr/sorties/sortie-ea2a3d83-a3f5-4990-a6cc-68f363a52cfc/,Marine,,09/03/2014,9.0000000,10.0000000,43.282341000000,5.348691000000,,Malmousque,26147,observation-ea2a3d83-a3f5-4990-a6cc-68f363a52cfc-2,https://biolit.fr/observations/observation-ea2a3d83-a3f5-4990-a6cc-68f363a52cfc-2/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9020-scaled.jpg,,TRUE, +N1,26308,sortie-d289172c-ac25-4d0a-8819-dd711f428b3f,https://biolit.fr/sorties/sortie-d289172c-ac25-4d0a-8819-dd711f428b3f/,Observe la nature,,09/08/2014,17.0000000,18.0000000,41.338764000000,9.253604000000,,Iles Lavezzi,26149,observation-d289172c-ac25-4d0a-8819-dd711f428b3f,https://biolit.fr/observations/observation-d289172c-ac25-4d0a-8819-dd711f428b3f/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/C VU CRISTE DSC02949.jpg,,TRUE, +N1,26309,sortie-420153e9-2cc7-4117-9907-3b8f7c744d36,https://biolit.fr/sorties/sortie-420153e9-2cc7-4117-9907-3b8f7c744d36/,Observe la nature,,09/05/2014,19.0000000,20.0000000,41.735533000000,8.785151000000,,Cupabia en Corse,26151,observation-420153e9-2cc7-4117-9907-3b8f7c744d36,https://biolit.fr/observations/observation-420153e9-2cc7-4117-9907-3b8f7c744d36/,Carpobrotus edulis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/C IMGP4991.jpg,,TRUE, +N1,26310,sortie-a10f7410-c1a3-4175-8fca-af9bbb35efb4,https://biolit.fr/sorties/sortie-a10f7410-c1a3-4175-8fca-af9bbb35efb4/,Observe la nature,,09/05/2014,17.0000000,18.0000000,41.338007000000,9.257241000000,,Iles Lavezzi,26153,observation-a10f7410-c1a3-4175-8fca-af9bbb35efb4,https://biolit.fr/observations/observation-a10f7410-c1a3-4175-8fca-af9bbb35efb4/,Carpobrotus edulis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/C GRIF LAVEZI DSC02877.jpg,,TRUE, +N1,26310,sortie-a10f7410-c1a3-4175-8fca-af9bbb35efb4,https://biolit.fr/sorties/sortie-a10f7410-c1a3-4175-8fca-af9bbb35efb4/,Observe la nature,,09/05/2014,17.0000000,18.0000000,41.338007000000,9.257241000000,,Iles Lavezzi,26155,observation-a10f7410-c1a3-4175-8fca-af9bbb35efb4-2,https://biolit.fr/observations/observation-a10f7410-c1a3-4175-8fca-af9bbb35efb4-2/,Carpobrotus edulis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/C grif lavezi DSC02878.jpg,,TRUE, +N1,26311,sortie-4d05feb7-6f45-4064-a67c-11ce8d85753f,https://biolit.fr/sorties/sortie-4d05feb7-6f45-4064-a67c-11ce8d85753f/,Observe la nature,,09/04/2014,17.0000000,18.0000000,42.350011000000,8.613930000000,,Girolata en Corse,26157,observation-4d05feb7-6f45-4064-a67c-11ce8d85753f,https://biolit.fr/observations/observation-4d05feb7-6f45-4064-a67c-11ce8d85753f/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/C PAVOT GIROLATA DSC02510.jpg,,TRUE, +N1,26311,sortie-4d05feb7-6f45-4064-a67c-11ce8d85753f,https://biolit.fr/sorties/sortie-4d05feb7-6f45-4064-a67c-11ce8d85753f/,Observe la nature,,09/04/2014,17.0000000,18.0000000,42.350011000000,8.613930000000,,Girolata en Corse,26159,observation-4d05feb7-6f45-4064-a67c-11ce8d85753f-2,https://biolit.fr/observations/observation-4d05feb7-6f45-4064-a67c-11ce8d85753f-2/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/C PAVOT DSC02511.jpg,,TRUE, +N1,26311,sortie-4d05feb7-6f45-4064-a67c-11ce8d85753f,https://biolit.fr/sorties/sortie-4d05feb7-6f45-4064-a67c-11ce8d85753f/,Observe la nature,,09/04/2014,17.0000000,18.0000000,42.350011000000,8.613930000000,,Girolata en Corse,26161,observation-4d05feb7-6f45-4064-a67c-11ce8d85753f-3,https://biolit.fr/observations/observation-4d05feb7-6f45-4064-a67c-11ce8d85753f-3/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/C PAVOT GIROLATA DSC02510_0.jpg,,TRUE, +N1,26312,sortie-e231b5b8-1094-42b9-82f6-56c648a6722f,https://biolit.fr/sorties/sortie-e231b5b8-1094-42b9-82f6-56c648a6722f/,Observe la nature,,8/30/2014 0:00,10.0000000,11.0000000,42.555608000000,8.767395000000,,CORSE Calvi,26163,observation-e231b5b8-1094-42b9-82f6-56c648a6722f,https://biolit.fr/observations/observation-e231b5b8-1094-42b9-82f6-56c648a6722f/,Carpobrotus acinaciformis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/C DSC02311 GRIFFE CALVI.jpg,,TRUE,Identifiable +N1,26312,sortie-e231b5b8-1094-42b9-82f6-56c648a6722f,https://biolit.fr/sorties/sortie-e231b5b8-1094-42b9-82f6-56c648a6722f/,Observe la nature,,8/30/2014 0:00,10.0000000,11.0000000,42.555608000000,8.767395000000,,CORSE Calvi,26165,observation-e231b5b8-1094-42b9-82f6-56c648a6722f-2,https://biolit.fr/observations/observation-e231b5b8-1094-42b9-82f6-56c648a6722f-2/,Carpobrotus edulis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/C DSC02309 CALVI GRIFFES DE SOR.jpg,,TRUE, +N1,26312,sortie-e231b5b8-1094-42b9-82f6-56c648a6722f,https://biolit.fr/sorties/sortie-e231b5b8-1094-42b9-82f6-56c648a6722f/,Observe la nature,,8/30/2014 0:00,10.0000000,11.0000000,42.555608000000,8.767395000000,,CORSE Calvi,26167,observation-e231b5b8-1094-42b9-82f6-56c648a6722f-3,https://biolit.fr/observations/observation-e231b5b8-1094-42b9-82f6-56c648a6722f-3/,Carpobrotus edulis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/C DSC02310 CALVI GRIFFE de sorciere.jpg,,TRUE, +N1,26313,sortie-c81d96c4-d01c-4699-aba9-a245f7cb7ac7,https://biolit.fr/sorties/sortie-c81d96c4-d01c-4699-aba9-a245f7cb7ac7/,Observe la nature,,8/26/2014 0:00,17.0000000,18.0000000,43.516096000000,7.04376400000,,îles de Lérins sur île Marguerite ,26169,observation-c81d96c4-d01c-4699-aba9-a245f7cb7ac7,https://biolit.fr/observations/observation-c81d96c4-d01c-4699-aba9-a245f7cb7ac7/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/C CRISTE LERINS DSC01727.jpg,,TRUE, +N1,26314,sortie-40d20da4-1453-41f8-a6e2-7087f572908d,https://biolit.fr/sorties/sortie-40d20da4-1453-41f8-a6e2-7087f572908d/,Observe la nature,,08/09/2014,11.0000000,12.0000000,43.271267000000,5.300581000000,,Iles du Frioul,26171,observation-40d20da4-1453-41f8-a6e2-7087f572908d,https://biolit.fr/observations/observation-40d20da4-1453-41f8-a6e2-7087f572908d/,Pancratium maritimum,Lis de mer,,https://biolit.fr/wp-content/uploads/2023/07/C LIS PLUSIEURS FRIOUL VIMGP4848.jpg,,TRUE, +N1,26314,sortie-40d20da4-1453-41f8-a6e2-7087f572908d,https://biolit.fr/sorties/sortie-40d20da4-1453-41f8-a6e2-7087f572908d/,Observe la nature,,08/09/2014,11.0000000,12.0000000,43.271267000000,5.300581000000,,Iles du Frioul,26173,observation-40d20da4-1453-41f8-a6e2-7087f572908d-2,https://biolit.fr/observations/observation-40d20da4-1453-41f8-a6e2-7087f572908d-2/,Pancratium maritimum,Lis de mer,,https://biolit.fr/wp-content/uploads/2023/07/C LIS FRIOUL IMGP4843.jpg,,TRUE, +N1,26314,sortie-40d20da4-1453-41f8-a6e2-7087f572908d,https://biolit.fr/sorties/sortie-40d20da4-1453-41f8-a6e2-7087f572908d/,Observe la nature,,08/09/2014,11.0000000,12.0000000,43.271267000000,5.300581000000,,Iles du Frioul,26175,observation-40d20da4-1453-41f8-a6e2-7087f572908d-3,https://biolit.fr/observations/observation-40d20da4-1453-41f8-a6e2-7087f572908d-3/,Pancratium maritimum,Lis de mer,,https://biolit.fr/wp-content/uploads/2023/07/C LIS GRAINES IMGP4845.jpg,,TRUE, +N1,26315,sortie-d5920fd2-0a2f-4de6-87e0-3c4e703c14d7,https://biolit.fr/sorties/sortie-d5920fd2-0a2f-4de6-87e0-3c4e703c14d7/,AIEJE,,8/20/2014 0:00,9.0000000,15.0000000,43.358752000000,5.294117000000,,Plages de Corbières,26177,observation-d5920fd2-0a2f-4de6-87e0-3c4e703c14d7,https://biolit.fr/observations/observation-d5920fd2-0a2f-4de6-87e0-3c4e703c14d7/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20140818_140627.jpg,,TRUE, +N1,26316,sortie-e3fec488-7f71-45fa-91e6-0d3433c38d75,https://biolit.fr/sorties/sortie-e3fec488-7f71-45fa-91e6-0d3433c38d75/,AIEJE,,08/12/2014,11.0000000,12.0000000,43.443423000000,5.054252000000,,Parc de Figuerolles - Etang de Berre,26179,observation-e3fec488-7f71-45fa-91e6-0d3433c38d75,https://biolit.fr/observations/observation-e3fec488-7f71-45fa-91e6-0d3433c38d75/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20140812_112344.jpg,,TRUE, +N1,26317,sortie-d46e3162-3978-42f5-a46a-0a2c3e9e7e7d,https://biolit.fr/sorties/sortie-d46e3162-3978-42f5-a46a-0a2c3e9e7e7d/,AIEJE,,7/31/2014 0:00,14.0000000,16.0000000,43.340293000000,5.260428000000,,La Vesse,26181,observation-d46e3162-3978-42f5-a46a-0a2c3e9e7e7d,https://biolit.fr/observations/observation-d46e3162-3978-42f5-a46a-0a2c3e9e7e7d/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20140729_160923.jpg,,TRUE, +N1,26318,sortie-45e5acd2-dbc2-4e45-be16-2cbcb7d9f486,https://biolit.fr/sorties/sortie-45e5acd2-dbc2-4e45-be16-2cbcb7d9f486/,Observe la nature,,7/29/2014 0:00,15.0000000,15.0000000,43.447929000000,3.656255000000,,Bouzigues,26183,observation-45e5acd2-dbc2-4e45-be16-2cbcb7d9f486,https://biolit.fr/observations/observation-45e5acd2-dbc2-4e45-be16-2cbcb7d9f486/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/C CRISTE B.jpg,,TRUE, +N1,26318,sortie-45e5acd2-dbc2-4e45-be16-2cbcb7d9f486,https://biolit.fr/sorties/sortie-45e5acd2-dbc2-4e45-be16-2cbcb7d9f486/,Observe la nature,,7/29/2014 0:00,15.0000000,15.0000000,43.447929000000,3.656255000000,,Bouzigues,26185,observation-45e5acd2-dbc2-4e45-be16-2cbcb7d9f486-2,https://biolit.fr/observations/observation-45e5acd2-dbc2-4e45-be16-2cbcb7d9f486-2/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/C coupolle.jpg,,TRUE, +N1,26318,sortie-45e5acd2-dbc2-4e45-be16-2cbcb7d9f486,https://biolit.fr/sorties/sortie-45e5acd2-dbc2-4e45-be16-2cbcb7d9f486/,Observe la nature,,7/29/2014 0:00,15.0000000,15.0000000,43.447929000000,3.656255000000,,Bouzigues,26187,observation-45e5acd2-dbc2-4e45-be16-2cbcb7d9f486-3,https://biolit.fr/observations/observation-45e5acd2-dbc2-4e45-be16-2cbcb7d9f486-3/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/C criste feuille.jpg,,TRUE, +N1,26319,sortie-070813f4-cd04-4210-a8f2-78311420c837,https://biolit.fr/sorties/sortie-070813f4-cd04-4210-a8f2-78311420c837/,AIEJE,,7/24/2014 0:00,9.0000000,10.0000000,43.326619000000,5.151715000000,,Carry le rouet,26189,observation-070813f4-cd04-4210-a8f2-78311420c837,https://biolit.fr/observations/observation-070813f4-cd04-4210-a8f2-78311420c837/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20140724_094726.jpg,,TRUE, +N1,26320,sortie-646a5ad8-4cf3-4266-98bc-027d8783eff8,https://biolit.fr/sorties/sortie-646a5ad8-4cf3-4266-98bc-027d8783eff8/,AIEJE,,07/04/2014,10.0000000,12.0000000,43.329680000000,5.22068800000,,Chemin des Douaniers,26191,observation-646a5ad8-4cf3-4266-98bc-027d8783eff8,https://biolit.fr/observations/observation-646a5ad8-4cf3-4266-98bc-027d8783eff8/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20140704_103147[2].jpg,,TRUE, +N1,26321,sortie-728f8dd7-90a2-43b2-946e-add3b4a66163,https://biolit.fr/sorties/sortie-728f8dd7-90a2-43b2-946e-add3b4a66163/,Laurent Debas,,6/30/2014 0:00,9.0000000,11.0000000,43.210035000000,5.419992000000,,Marseille - Calanque de Sormiou,26193,observation-728f8dd7-90a2-43b2-946e-add3b4a66163,https://biolit.fr/observations/observation-728f8dd7-90a2-43b2-946e-add3b4a66163/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0061_0-scaled.jpg,,TRUE, +N1,26321,sortie-728f8dd7-90a2-43b2-946e-add3b4a66163,https://biolit.fr/sorties/sortie-728f8dd7-90a2-43b2-946e-add3b4a66163/,Laurent Debas,,6/30/2014 0:00,9.0000000,11.0000000,43.210035000000,5.419992000000,,Marseille - Calanque de Sormiou,26195,observation-728f8dd7-90a2-43b2-946e-add3b4a66163-2,https://biolit.fr/observations/observation-728f8dd7-90a2-43b2-946e-add3b4a66163-2/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0069-scaled.jpg,,TRUE, +N1,26322,sortie-edddb06b-d45e-433a-ab56-1d2c30fec2ca,https://biolit.fr/sorties/sortie-edddb06b-d45e-433a-ab56-1d2c30fec2ca/,Marine,,6/13/2014 0:00,14.0000000,16.0000000,43.328599000000,5.220270000000,,Cap Méjean,26197,observation-edddb06b-d45e-433a-ab56-1d2c30fec2ca,https://biolit.fr/observations/observation-edddb06b-d45e-433a-ab56-1d2c30fec2ca/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20140613_150958[1].jpg,,TRUE, +N1,26323,sortie-8eef62df-6543-4d7d-9024-c9ece0a8fef4,https://biolit.fr/sorties/sortie-8eef62df-6543-4d7d-9024-c9ece0a8fef4/,Marine,,5/29/2014 0:00,10.0000000,11.0000000,43.094449000000,6.0237040000,,plage du Pradet,26199,observation-8eef62df-6543-4d7d-9024-c9ece0a8fef4,https://biolit.fr/observations/observation-8eef62df-6543-4d7d-9024-c9ece0a8fef4/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8392-scaled.jpg,,TRUE, +N1,26323,sortie-8eef62df-6543-4d7d-9024-c9ece0a8fef4,https://biolit.fr/sorties/sortie-8eef62df-6543-4d7d-9024-c9ece0a8fef4/,Marine,,5/29/2014 0:00,10.0000000,11.0000000,43.094449000000,6.0237040000,,plage du Pradet,26201,observation-8eef62df-6543-4d7d-9024-c9ece0a8fef4-2,https://biolit.fr/observations/observation-8eef62df-6543-4d7d-9024-c9ece0a8fef4-2/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8393-scaled.jpg,,TRUE, +N1,26324,sortie-e5baed62-6b0f-44a1-8c32-144d6c19dc7d,https://biolit.fr/sorties/sortie-e5baed62-6b0f-44a1-8c32-144d6c19dc7d/,Marine,,5/23/2014 0:00,11.0000000,12.0000000,43.331364000000,5.203310000000,,Calanques des Anthénors,26203,observation-e5baed62-6b0f-44a1-8c32-144d6c19dc7d,https://biolit.fr/observations/observation-e5baed62-6b0f-44a1-8c32-144d6c19dc7d/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20140523_115458.jpg,,TRUE, +N1,26325,sortie-168badcc-8b0f-4767-894f-0f7db0cf41b4,https://biolit.fr/sorties/sortie-168badcc-8b0f-4767-894f-0f7db0cf41b4/,Marine,,5/22/2014 0:00,11.0000000,12.0000000,43.333937000000,5.197739000000,,Plage des Pébraïres,26205,observation-168badcc-8b0f-4767-894f-0f7db0cf41b4,https://biolit.fr/observations/observation-168badcc-8b0f-4767-894f-0f7db0cf41b4/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20140522_113543.jpg,,TRUE, +N1,26872,sortie-236f2b90-7583-470f-b0b3-46a55d586bb5,https://biolit.fr/sorties/sortie-236f2b90-7583-470f-b0b3-46a55d586bb5/,AILERONS,,5/25/2023 0:00,19.0000000,21.0000000,43.417342000000,3.593958000000,Ailerons,Plage de la Conque,26326,observation-236f2b90-7583-470f-b0b3-46a55d586bb5,https://biolit.fr/observations/observation-236f2b90-7583-470f-b0b3-46a55d586bb5/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20230525_154336.jpg,,TRUE, +N1,26872,sortie-236f2b90-7583-470f-b0b3-46a55d586bb5,https://biolit.fr/sorties/sortie-236f2b90-7583-470f-b0b3-46a55d586bb5/,AILERONS,,5/25/2023 0:00,19.0000000,21.0000000,43.417342000000,3.593958000000,Ailerons,Plage de la Conque,26328,observation-236f2b90-7583-470f-b0b3-46a55d586bb5-2,https://biolit.fr/observations/observation-236f2b90-7583-470f-b0b3-46a55d586bb5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230615_185754.jpg,,FALSE, +N1,26873,sortie-cc77e094-50a5-4ed2-bb8f-7cab8b418c00,https://biolit.fr/sorties/sortie-cc77e094-50a5-4ed2-bb8f-7cab8b418c00/,LABELBLEU,,5/27/2023 0:00,14.0000000,16.0000000,42.502058000000,3.124811000000,,Site classé de l'anse de Paulilles,26330,observation-cc77e094-50a5-4ed2-bb8f-7cab8b418c00,https://biolit.fr/observations/observation-cc77e094-50a5-4ed2-bb8f-7cab8b418c00/,,,,https://biolit.fr/wp-content/uploads/2023/07/Design sans titre-scaled.jpg,,FALSE, +N1,26874,sortie-8e7ace7a-b4b4-46c4-bd4a-9b0158df7e43,https://biolit.fr/sorties/sortie-8e7ace7a-b4b4-46c4-bd4a-9b0158df7e43/,AILERONS,,5/20/2023 0:00,9.0000000,11.0000000,43.524817000000,3.927327000000,Ailerons,Palavas,26332,observation-8e7ace7a-b4b4-46c4-bd4a-9b0158df7e43,https://biolit.fr/observations/observation-8e7ace7a-b4b4-46c4-bd4a-9b0158df7e43/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230520_104531-scaled.jpg,,FALSE, +N1,26875,sortie-b58a2cdb-08b8-48c2-bfc2-4880bd4371af,https://biolit.fr/sorties/sortie-b58a2cdb-08b8-48c2-bfc2-4880bd4371af/,AILERONS,,5/13/2023 0:00,10.0000000,12.0000000,43.541881000000,3.971004000000,Ailerons,Plage de Carnon,26334,observation-b58a2cdb-08b8-48c2-bfc2-4880bd4371af,https://biolit.fr/observations/observation-b58a2cdb-08b8-48c2-bfc2-4880bd4371af/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230513_115059-scaled.jpg,,FALSE, +N1,26876,sortie-9f033016-0303-4f7f-b1b8-31e0f2a3d287,https://biolit.fr/sorties/sortie-9f033016-0303-4f7f-b1b8-31e0f2a3d287/,LPO Occitanie - Aude,,1/28/2023 0:00,18.0000000,20.0000000,42.886416000000,3.051350000000,LPO Occitanie (Dt Aude),Leucate,26336,observation-9f033016-0303-4f7f-b1b8-31e0f2a3d287,https://biolit.fr/observations/observation-9f033016-0303-4f7f-b1b8-31e0f2a3d287/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20230421180317.jpg,,FALSE, +N1,26876,sortie-9f033016-0303-4f7f-b1b8-31e0f2a3d287,https://biolit.fr/sorties/sortie-9f033016-0303-4f7f-b1b8-31e0f2a3d287/,LPO Occitanie - Aude,,1/28/2023 0:00,18.0000000,20.0000000,42.886416000000,3.051350000000,LPO Occitanie (Dt Aude),Leucate,26338,observation-9f033016-0303-4f7f-b1b8-31e0f2a3d287-2,https://biolit.fr/observations/observation-9f033016-0303-4f7f-b1b8-31e0f2a3d287-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20230421180505.jpg,,FALSE, +N1,26876,sortie-9f033016-0303-4f7f-b1b8-31e0f2a3d287,https://biolit.fr/sorties/sortie-9f033016-0303-4f7f-b1b8-31e0f2a3d287/,LPO Occitanie - Aude,,1/28/2023 0:00,18.0000000,20.0000000,42.886416000000,3.051350000000,LPO Occitanie (Dt Aude),Leucate,26340,observation-9f033016-0303-4f7f-b1b8-31e0f2a3d287-3,https://biolit.fr/observations/observation-9f033016-0303-4f7f-b1b8-31e0f2a3d287-3/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230128_104351-scaled.jpg,,TRUE, +N1,26877,sortie-b81c123a-14c9-4d15-8434-5c835ddfebe8,https://biolit.fr/sorties/sortie-b81c123a-14c9-4d15-8434-5c835ddfebe8/,LPO Occitanie - Aude,,2/18/2023 0:00,10.0000000,12.0000000,43.012197000000,3.063152000000,LPO Occitanie (Dt Aude),Port la nouvelle,26342,observation-b81c123a-14c9-4d15-8434-5c835ddfebe8,https://biolit.fr/observations/observation-b81c123a-14c9-4d15-8434-5c835ddfebe8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20230421180038.jpg,,FALSE, +N1,26877,sortie-b81c123a-14c9-4d15-8434-5c835ddfebe8,https://biolit.fr/sorties/sortie-b81c123a-14c9-4d15-8434-5c835ddfebe8/,LPO Occitanie - Aude,,2/18/2023 0:00,10.0000000,12.0000000,43.012197000000,3.063152000000,LPO Occitanie (Dt Aude),Port la nouvelle,26344,observation-b81c123a-14c9-4d15-8434-5c835ddfebe8-2,https://biolit.fr/observations/observation-b81c123a-14c9-4d15-8434-5c835ddfebe8-2/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/1677064466634.jpg,,TRUE, +N1,26877,sortie-b81c123a-14c9-4d15-8434-5c835ddfebe8,https://biolit.fr/sorties/sortie-b81c123a-14c9-4d15-8434-5c835ddfebe8/,LPO Occitanie - Aude,,2/18/2023 0:00,10.0000000,12.0000000,43.012197000000,3.063152000000,LPO Occitanie (Dt Aude),Port la nouvelle,26346,observation-b81c123a-14c9-4d15-8434-5c835ddfebe8-3,https://biolit.fr/observations/observation-b81c123a-14c9-4d15-8434-5c835ddfebe8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20230421180114.jpg,,FALSE, +N1,26878,sortie-d9056f9a-14b2-4455-a06b-03c1a73d344e,https://biolit.fr/sorties/sortie-d9056f9a-14b2-4455-a06b-03c1a73d344e/,LPO Occitanie - Aude,,3/15/2023 0:00,14.0000000,16.0000000,43.117205000000,3.129670000000,LPO Occitanie (Dt Aude),"Gruissan, plage de mateille",26348,observation-d9056f9a-14b2-4455-a06b-03c1a73d344e,https://biolit.fr/observations/observation-d9056f9a-14b2-4455-a06b-03c1a73d344e/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20230421175838.jpg,,FALSE, +N1,26879,sortie-b443c6ea-5290-4ebd-8283-9c5c3f42a68d,https://biolit.fr/sorties/sortie-b443c6ea-5290-4ebd-8283-9c5c3f42a68d/,LPO Occitanie - Aude,,04/12/2023,14.0000000,16.0000000,43.169428000000,3.183624000000,LPO Occitanie (Dt Aude),Saint pierre la mer,26350,observation-b443c6ea-5290-4ebd-8283-9c5c3f42a68d,https://biolit.fr/observations/observation-b443c6ea-5290-4ebd-8283-9c5c3f42a68d/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG20230412151042_0-scaled.jpg,,TRUE, +N1,26879,sortie-b443c6ea-5290-4ebd-8283-9c5c3f42a68d,https://biolit.fr/sorties/sortie-b443c6ea-5290-4ebd-8283-9c5c3f42a68d/,LPO Occitanie - Aude,,04/12/2023,14.0000000,16.0000000,43.169428000000,3.183624000000,LPO Occitanie (Dt Aude),Saint pierre la mer,26352,observation-b443c6ea-5290-4ebd-8283-9c5c3f42a68d-2,https://biolit.fr/observations/observation-b443c6ea-5290-4ebd-8283-9c5c3f42a68d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20230412151716-scaled.jpg,,FALSE, +N1,26879,sortie-b443c6ea-5290-4ebd-8283-9c5c3f42a68d,https://biolit.fr/sorties/sortie-b443c6ea-5290-4ebd-8283-9c5c3f42a68d/,LPO Occitanie - Aude,,04/12/2023,14.0000000,16.0000000,43.169428000000,3.183624000000,LPO Occitanie (Dt Aude),Saint pierre la mer,26354,observation-b443c6ea-5290-4ebd-8283-9c5c3f42a68d-3,https://biolit.fr/observations/observation-b443c6ea-5290-4ebd-8283-9c5c3f42a68d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20230414171849-scaled.jpg,,FALSE, +N1,26880,sortie-f6b19836-c2d0-4afe-aeb0-15330003d35c,https://biolit.fr/sorties/sortie-f6b19836-c2d0-4afe-aeb0-15330003d35c/,Club subaquatique Narbonnais,,3/25/2023 0:00,10.0000000,11.0000000,43.167949000000,3.179913000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne plage,26356,observation-f6b19836-c2d0-4afe-aeb0-15330003d35c,https://biolit.fr/observations/observation-f6b19836-c2d0-4afe-aeb0-15330003d35c/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6598.JPG,,FALSE, +N1,26880,sortie-f6b19836-c2d0-4afe-aeb0-15330003d35c,https://biolit.fr/sorties/sortie-f6b19836-c2d0-4afe-aeb0-15330003d35c/,Club subaquatique Narbonnais,,3/25/2023 0:00,10.0000000,11.0000000,43.167949000000,3.179913000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne plage,26358,observation-f6b19836-c2d0-4afe-aeb0-15330003d35c-2,https://biolit.fr/observations/observation-f6b19836-c2d0-4afe-aeb0-15330003d35c-2/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_6608_0.JPG,,TRUE, +N1,26881,sortie-9957912c-2516-4804-96ed-ee91d8f8b112,https://biolit.fr/sorties/sortie-9957912c-2516-4804-96ed-ee91d8f8b112/,AILERONS,,3/18/2023 0:00,10.0000000,12.0000000,43.525027000000,3.928010000000,Ailerons,Palavas-Les-Flôts,26360,observation-9957912c-2516-4804-96ed-ee91d8f8b112,https://biolit.fr/observations/observation-9957912c-2516-4804-96ed-ee91d8f8b112/,,,,https://biolit.fr/wp-content/uploads/2023/07/feuille_biolit_18-03-23.jpg,,FALSE, +N1,26881,sortie-9957912c-2516-4804-96ed-ee91d8f8b112,https://biolit.fr/sorties/sortie-9957912c-2516-4804-96ed-ee91d8f8b112/,AILERONS,,3/18/2023 0:00,10.0000000,12.0000000,43.525027000000,3.928010000000,Ailerons,Palavas-Les-Flôts,26362,observation-9957912c-2516-4804-96ed-ee91d8f8b112-2,https://biolit.fr/observations/observation-9957912c-2516-4804-96ed-ee91d8f8b112-2/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/336350161_1392455868179663_4909182647477761488_n (1).jpg,,TRUE,Identifiable +N1,26881,sortie-9957912c-2516-4804-96ed-ee91d8f8b112,https://biolit.fr/sorties/sortie-9957912c-2516-4804-96ed-ee91d8f8b112/,AILERONS,,3/18/2023 0:00,10.0000000,12.0000000,43.525027000000,3.928010000000,Ailerons,Palavas-Les-Flôts,26364,observation-9957912c-2516-4804-96ed-ee91d8f8b112-3,https://biolit.fr/observations/observation-9957912c-2516-4804-96ed-ee91d8f8b112-3/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/336212907_1580150165829277_3163736130909872852_n (1).jpg,,TRUE,Identifiable +N1,26881,sortie-9957912c-2516-4804-96ed-ee91d8f8b112,https://biolit.fr/sorties/sortie-9957912c-2516-4804-96ed-ee91d8f8b112/,AILERONS,,3/18/2023 0:00,10.0000000,12.0000000,43.525027000000,3.928010000000,Ailerons,Palavas-Les-Flôts,26366,observation-9957912c-2516-4804-96ed-ee91d8f8b112-4,https://biolit.fr/observations/observation-9957912c-2516-4804-96ed-ee91d8f8b112-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/335682377_1039330754089945_4071618949806602401_n (1).jpg,,TRUE,non-identifiable +N1,26882,sortie-72e281d9-e64b-46e2-8b90-12c92ca32480,https://biolit.fr/sorties/sortie-72e281d9-e64b-46e2-8b90-12c92ca32480/,Marine,,3/15/2023 0:00,10.0000000,10.0000000,43.214882000000,5.342882000000,Planète Mer,Anse de la maronaise,26368,observation-72e281d9-e64b-46e2-8b90-12c92ca32480,https://biolit.fr/observations/observation-72e281d9-e64b-46e2-8b90-12c92ca32480/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230315_101446_W0AZNier4W.jpeg,,FALSE, +N1,26882,sortie-72e281d9-e64b-46e2-8b90-12c92ca32480,https://biolit.fr/sorties/sortie-72e281d9-e64b-46e2-8b90-12c92ca32480/,Marine,,3/15/2023 0:00,10.0000000,10.0000000,43.214882000000,5.342882000000,Planète Mer,Anse de la maronaise,26370,observation-72e281d9-e64b-46e2-8b90-12c92ca32480-2,https://biolit.fr/observations/observation-72e281d9-e64b-46e2-8b90-12c92ca32480-2/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230315_102534_AsyygMZO5W.jpeg,,TRUE, +N1,26882,sortie-72e281d9-e64b-46e2-8b90-12c92ca32480,https://biolit.fr/sorties/sortie-72e281d9-e64b-46e2-8b90-12c92ca32480/,Marine,,3/15/2023 0:00,10.0000000,10.0000000,43.214882000000,5.342882000000,Planète Mer,Anse de la maronaise,26372,observation-72e281d9-e64b-46e2-8b90-12c92ca32480-3,https://biolit.fr/observations/observation-72e281d9-e64b-46e2-8b90-12c92ca32480-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230315_103623_n3OT9oAE0W.jpeg,,FALSE, +N1,26882,sortie-72e281d9-e64b-46e2-8b90-12c92ca32480,https://biolit.fr/sorties/sortie-72e281d9-e64b-46e2-8b90-12c92ca32480/,Marine,,3/15/2023 0:00,10.0000000,10.0000000,43.214882000000,5.342882000000,Planète Mer,Anse de la maronaise,26374,observation-72e281d9-e64b-46e2-8b90-12c92ca32480-4,https://biolit.fr/observations/observation-72e281d9-e64b-46e2-8b90-12c92ca32480-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230315_104759_EFtZrO3C59.jpeg,,FALSE, +N1,26883,sortie-414759ad-93ce-4eaf-ae10-03acc47da179,https://biolit.fr/sorties/sortie-414759ad-93ce-4eaf-ae10-03acc47da179/,AILERONS,,03/11/2023,10.0000000,18.0000000,43.541171000000,3.971494000000,Ailerons,"Plage des Roquilles, Carnon",26376,observation-414759ad-93ce-4eaf-ae10-03acc47da179,https://biolit.fr/observations/observation-414759ad-93ce-4eaf-ae10-03acc47da179/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230311_173707.jpg,,FALSE, +N1,26883,sortie-414759ad-93ce-4eaf-ae10-03acc47da179,https://biolit.fr/sorties/sortie-414759ad-93ce-4eaf-ae10-03acc47da179/,AILERONS,,03/11/2023,10.0000000,18.0000000,43.541171000000,3.971494000000,Ailerons,"Plage des Roquilles, Carnon",26378,observation-414759ad-93ce-4eaf-ae10-03acc47da179-2,https://biolit.fr/observations/observation-414759ad-93ce-4eaf-ae10-03acc47da179-2/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/huitres_creuses-scaled.jpg,,TRUE, +N1,26883,sortie-414759ad-93ce-4eaf-ae10-03acc47da179,https://biolit.fr/sorties/sortie-414759ad-93ce-4eaf-ae10-03acc47da179/,AILERONS,,03/11/2023,10.0000000,18.0000000,43.541171000000,3.971494000000,Ailerons,"Plage des Roquilles, Carnon",26380,observation-414759ad-93ce-4eaf-ae10-03acc47da179-3,https://biolit.fr/observations/observation-414759ad-93ce-4eaf-ae10-03acc47da179-3/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/huitre_noires-scaled.jpg,,TRUE, +N1,26883,sortie-414759ad-93ce-4eaf-ae10-03acc47da179,https://biolit.fr/sorties/sortie-414759ad-93ce-4eaf-ae10-03acc47da179/,AILERONS,,03/11/2023,10.0000000,18.0000000,43.541171000000,3.971494000000,Ailerons,"Plage des Roquilles, Carnon",26382,observation-414759ad-93ce-4eaf-ae10-03acc47da179-4,https://biolit.fr/observations/observation-414759ad-93ce-4eaf-ae10-03acc47da179-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/cascail-scaled.jpg,,FALSE, +N1,26883,sortie-414759ad-93ce-4eaf-ae10-03acc47da179,https://biolit.fr/sorties/sortie-414759ad-93ce-4eaf-ae10-03acc47da179/,AILERONS,,03/11/2023,10.0000000,18.0000000,43.541171000000,3.971494000000,Ailerons,"Plage des Roquilles, Carnon",26384,observation-414759ad-93ce-4eaf-ae10-03acc47da179-5,https://biolit.fr/observations/observation-414759ad-93ce-4eaf-ae10-03acc47da179-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/groupe_fin-scaled.jpg,,TRUE,non-identifiable +N1,26884,sortie-cbbab9a3-b15e-4258-a3eb-c6522774dcea,https://biolit.fr/sorties/sortie-cbbab9a3-b15e-4258-a3eb-c6522774dcea/,AILERONS,,03/08/2023,14.0:15,20.0000000,43.525080000000,3.928721000000,Ailerons,Palavas-les-flots,26386,observation-cbbab9a3-b15e-4258-a3eb-c6522774dcea,https://biolit.fr/observations/observation-cbbab9a3-b15e-4258-a3eb-c6522774dcea/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230308_201655.jpg,,FALSE, +N1,26884,sortie-cbbab9a3-b15e-4258-a3eb-c6522774dcea,https://biolit.fr/sorties/sortie-cbbab9a3-b15e-4258-a3eb-c6522774dcea/,AILERONS,,03/08/2023,14.0:15,20.0000000,43.525080000000,3.928721000000,Ailerons,Palavas-les-flots,26388,observation-cbbab9a3-b15e-4258-a3eb-c6522774dcea-2,https://biolit.fr/observations/observation-cbbab9a3-b15e-4258-a3eb-c6522774dcea-2/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20230308_162651-scaled.jpg,,TRUE, +N1,26885,sortie-1182bb2d-9479-463d-aa7e-58f9efa1111d,https://biolit.fr/sorties/sortie-1182bb2d-9479-463d-aa7e-58f9efa1111d/,AILERONS,,03/04/2023,10.0000000,12.0000000,43.524607000000,3.92654000,CPIE Littoral d'Occitanie,Palavas,26390,observation-1182bb2d-9479-463d-aa7e-58f9efa1111d,https://biolit.fr/observations/observation-1182bb2d-9479-463d-aa7e-58f9efa1111d/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230304_114533-scaled.jpg,,FALSE, +N1,26886,sortie-d2f96cc6-72d7-4759-8ff5-a9506b8b9250,https://biolit.fr/sorties/sortie-d2f96cc6-72d7-4759-8ff5-a9506b8b9250/,AILERONS,,2/25/2023 0:00,10.0000000,12.0000000,43.541174000000,3.971237000000,CPIE Littoral d'Occitanie,Plage de Carnon,26392,observation-d2f96cc6-72d7-4759-8ff5-a9506b8b9250,https://biolit.fr/observations/observation-d2f96cc6-72d7-4759-8ff5-a9506b8b9250/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20230225_124113-scaled.jpg,,TRUE, +N1,26886,sortie-d2f96cc6-72d7-4759-8ff5-a9506b8b9250,https://biolit.fr/sorties/sortie-d2f96cc6-72d7-4759-8ff5-a9506b8b9250/,AILERONS,,2/25/2023 0:00,10.0000000,12.0000000,43.541174000000,3.971237000000,CPIE Littoral d'Occitanie,Plage de Carnon,26394,observation-d2f96cc6-72d7-4759-8ff5-a9506b8b9250-2,https://biolit.fr/observations/observation-d2f96cc6-72d7-4759-8ff5-a9506b8b9250-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230225_121812-scaled.jpg,,FALSE, +N1,26886,sortie-d2f96cc6-72d7-4759-8ff5-a9506b8b9250,https://biolit.fr/sorties/sortie-d2f96cc6-72d7-4759-8ff5-a9506b8b9250/,AILERONS,,2/25/2023 0:00,10.0000000,12.0000000,43.541174000000,3.971237000000,CPIE Littoral d'Occitanie,Plage de Carnon,26396,observation-d2f96cc6-72d7-4759-8ff5-a9506b8b9250-3,https://biolit.fr/observations/observation-d2f96cc6-72d7-4759-8ff5-a9506b8b9250-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230225_121729-scaled.jpg,,FALSE, +N1,26886,sortie-d2f96cc6-72d7-4759-8ff5-a9506b8b9250,https://biolit.fr/sorties/sortie-d2f96cc6-72d7-4759-8ff5-a9506b8b9250/,AILERONS,,2/25/2023 0:00,10.0000000,12.0000000,43.541174000000,3.971237000000,CPIE Littoral d'Occitanie,Plage de Carnon,26398,observation-d2f96cc6-72d7-4759-8ff5-a9506b8b9250-4,https://biolit.fr/observations/observation-d2f96cc6-72d7-4759-8ff5-a9506b8b9250-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230225_121635-scaled.jpg,,FALSE, +N1,26886,sortie-d2f96cc6-72d7-4759-8ff5-a9506b8b9250,https://biolit.fr/sorties/sortie-d2f96cc6-72d7-4759-8ff5-a9506b8b9250/,AILERONS,,2/25/2023 0:00,10.0000000,12.0000000,43.541174000000,3.971237000000,CPIE Littoral d'Occitanie,Plage de Carnon,26400,observation-d2f96cc6-72d7-4759-8ff5-a9506b8b9250-5,https://biolit.fr/observations/observation-d2f96cc6-72d7-4759-8ff5-a9506b8b9250-5/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20230225_191722-scaled.jpg,,TRUE, +N1,26886,sortie-d2f96cc6-72d7-4759-8ff5-a9506b8b9250,https://biolit.fr/sorties/sortie-d2f96cc6-72d7-4759-8ff5-a9506b8b9250/,AILERONS,,2/25/2023 0:00,10.0000000,12.0000000,43.541174000000,3.971237000000,CPIE Littoral d'Occitanie,Plage de Carnon,26402,observation-d2f96cc6-72d7-4759-8ff5-a9506b8b9250-6,https://biolit.fr/observations/observation-d2f96cc6-72d7-4759-8ff5-a9506b8b9250-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230227_163550-rotated.jpg,,FALSE, +N1,26887,sortie-13c31892-c21a-4216-8e85-5ccec9922bcc,https://biolit.fr/sorties/sortie-13c31892-c21a-4216-8e85-5ccec9922bcc/,Camille Benyamine,,2/16/2023 0:00,16.0000000,16.0000000,43.257343000000,5.3751670000,Planète Mer,Plage Borely,26404,observation-13c31892-c21a-4216-8e85-5ccec9922bcc,https://biolit.fr/observations/observation-13c31892-c21a-4216-8e85-5ccec9922bcc/,,,,https://biolit.fr/wp-content/uploads/2023/07/fiche obs borely.jpg,,FALSE, +N1,26887,sortie-13c31892-c21a-4216-8e85-5ccec9922bcc,https://biolit.fr/sorties/sortie-13c31892-c21a-4216-8e85-5ccec9922bcc/,Camille Benyamine,,2/16/2023 0:00,16.0000000,16.0000000,43.257343000000,5.3751670000,Planète Mer,Plage Borely,26406,observation-13c31892-c21a-4216-8e85-5ccec9922bcc-2,https://biolit.fr/observations/observation-13c31892-c21a-4216-8e85-5ccec9922bcc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/huitre borely.jpg,,FALSE, +N1,26888,sortie-b7fd603d-5c9b-47a7-bc3c-8b786ba45ed4,https://biolit.fr/sorties/sortie-b7fd603d-5c9b-47a7-bc3c-8b786ba45ed4/,Camille Benyamine,,2/16/2023 0:00,15.0000000,15.0000000,43.239903000000,5.362540000000,Planète Mer,Bain des dames,26408,observation-b7fd603d-5c9b-47a7-bc3c-8b786ba45ed4,https://biolit.fr/observations/observation-b7fd603d-5c9b-47a7-bc3c-8b786ba45ed4/,,,,https://biolit.fr/wp-content/uploads/2023/07/huitre bain des dames.jpg,,FALSE, +N1,26888,sortie-b7fd603d-5c9b-47a7-bc3c-8b786ba45ed4,https://biolit.fr/sorties/sortie-b7fd603d-5c9b-47a7-bc3c-8b786ba45ed4/,Camille Benyamine,,2/16/2023 0:00,15.0000000,15.0000000,43.239903000000,5.362540000000,Planète Mer,Bain des dames,26410,observation-b7fd603d-5c9b-47a7-bc3c-8b786ba45ed4-2,https://biolit.fr/observations/observation-b7fd603d-5c9b-47a7-bc3c-8b786ba45ed4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/fiche obs bain des dames.jpg,,FALSE, +N1,26889,sortie-58f67ede-4dab-4b6b-803a-362d8894e0c3,https://biolit.fr/sorties/sortie-58f67ede-4dab-4b6b-803a-362d8894e0c3/,AILERONS,,10/15/2022 0:00,17.0000000,17.0000000,43.528114000000,3.935102000000,Ailerons,Palavas-Les-Flots,26412,observation-58f67ede-4dab-4b6b-803a-362d8894e0c3,https://biolit.fr/observations/observation-58f67ede-4dab-4b6b-803a-362d8894e0c3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221018_083835.jpg,,FALSE, +N1,26889,sortie-58f67ede-4dab-4b6b-803a-362d8894e0c3,https://biolit.fr/sorties/sortie-58f67ede-4dab-4b6b-803a-362d8894e0c3/,AILERONS,,10/15/2022 0:00,17.0000000,17.0000000,43.528114000000,3.935102000000,Ailerons,Palavas-Les-Flots,26414,observation-58f67ede-4dab-4b6b-803a-362d8894e0c3-2,https://biolit.fr/observations/observation-58f67ede-4dab-4b6b-803a-362d8894e0c3-2/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20221015_170802-rotated.jpg,,TRUE, +N1,26889,sortie-58f67ede-4dab-4b6b-803a-362d8894e0c3,https://biolit.fr/sorties/sortie-58f67ede-4dab-4b6b-803a-362d8894e0c3/,AILERONS,,10/15/2022 0:00,17.0000000,17.0000000,43.528114000000,3.935102000000,Ailerons,Palavas-Les-Flots,26416,observation-58f67ede-4dab-4b6b-803a-362d8894e0c3-3,https://biolit.fr/observations/observation-58f67ede-4dab-4b6b-803a-362d8894e0c3-3/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20221015_165847-rotated.jpg,,TRUE,Identifiable +N1,26890,sortie-ac318d12-d895-4634-88df-e27cec750cdf,https://biolit.fr/sorties/sortie-ac318d12-d895-4634-88df-e27cec750cdf/,AILERONS,,07/02/2022,17.0:45,18.000005,43.528120000000,3.935102000000,Ailerons,Palavas-Les-Flots,,,,,,,,,, +N1,26891,sortie-9ceddff0-38ce-40bf-966c-06a0f67ff7e4,https://biolit.fr/sorties/sortie-9ceddff0-38ce-40bf-966c-06a0f67ff7e4/,Camille Benyamine,,1/25/2023 0:00,9.0000000,10.0000000,43.239905000000,5.362395000000,Planète Mer,Bain des dames,26420,observation-9ceddff0-38ce-40bf-966c-06a0f67ff7e4,https://biolit.fr/observations/observation-9ceddff0-38ce-40bf-966c-06a0f67ff7e4/,,,,https://biolit.fr/wp-content/uploads/2023/07/331068580_709323580901197_1613023781573248351_n_0.jpg,,FALSE, +N1,26891,sortie-9ceddff0-38ce-40bf-966c-06a0f67ff7e4,https://biolit.fr/sorties/sortie-9ceddff0-38ce-40bf-966c-06a0f67ff7e4/,Camille Benyamine,,1/25/2023 0:00,9.0000000,10.0000000,43.239905000000,5.362395000000,Planète Mer,Bain des dames,26422,observation-9ceddff0-38ce-40bf-966c-06a0f67ff7e4-2,https://biolit.fr/observations/observation-9ceddff0-38ce-40bf-966c-06a0f67ff7e4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/330867328_1100967354638144_96870539135830680_n.jpg,,FALSE, +N1,26891,sortie-9ceddff0-38ce-40bf-966c-06a0f67ff7e4,https://biolit.fr/sorties/sortie-9ceddff0-38ce-40bf-966c-06a0f67ff7e4/,Camille Benyamine,,1/25/2023 0:00,9.0000000,10.0000000,43.239905000000,5.362395000000,Planète Mer,Bain des dames,26424,observation-9ceddff0-38ce-40bf-966c-06a0f67ff7e4-3,https://biolit.fr/observations/observation-9ceddff0-38ce-40bf-966c-06a0f67ff7e4-3/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/2023/07/330923600_1655683214860602_2803079927667974416_n.jpg,,TRUE, +N1,26891,sortie-9ceddff0-38ce-40bf-966c-06a0f67ff7e4,https://biolit.fr/sorties/sortie-9ceddff0-38ce-40bf-966c-06a0f67ff7e4/,Camille Benyamine,,1/25/2023 0:00,9.0000000,10.0000000,43.239905000000,5.362395000000,Planète Mer,Bain des dames,26426,observation-9ceddff0-38ce-40bf-966c-06a0f67ff7e4-4,https://biolit.fr/observations/observation-9ceddff0-38ce-40bf-966c-06a0f67ff7e4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/331129510_1811287012587781_2349721424005803763_n.jpg,,FALSE, +N1,26891,sortie-9ceddff0-38ce-40bf-966c-06a0f67ff7e4,https://biolit.fr/sorties/sortie-9ceddff0-38ce-40bf-966c-06a0f67ff7e4/,Camille Benyamine,,1/25/2023 0:00,9.0000000,10.0000000,43.239905000000,5.362395000000,Planète Mer,Bain des dames,26428,observation-9ceddff0-38ce-40bf-966c-06a0f67ff7e4-5,https://biolit.fr/observations/observation-9ceddff0-38ce-40bf-966c-06a0f67ff7e4-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/MicrosoftTeams-image_0-scaled.png,,FALSE, +N1,26892,sortie-df8fa951-e0ad-4fac-8a8c-6b897468c89d,https://biolit.fr/sorties/sortie-df8fa951-e0ad-4fac-8a8c-6b897468c89d/,LABELBLEU,,11/02/2022,15.0000000,17.0000000,42.746530000000,3.034827000000,LABELBLEU,Toreilles,26430,observation-df8fa951-e0ad-4fac-8a8c-6b897468c89d,https://biolit.fr/observations/observation-df8fa951-e0ad-4fac-8a8c-6b897468c89d/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2022-12-02 142306_1.png,,FALSE, +N1,26893,sortie-407db9d2-71c9-4486-a3ca-be80f274f36e,https://biolit.fr/sorties/sortie-407db9d2-71c9-4486-a3ca-be80f274f36e/,LABELBLEU,,11/16/2022 0:00,14.0000000,16.0000000,42.755412000000,3.035857000000,LABELBLEU, Torreilles,26432,observation-407db9d2-71c9-4486-a3ca-be80f274f36e,https://biolit.fr/observations/observation-407db9d2-71c9-4486-a3ca-be80f274f36e/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2022-12-02 142306_0.png,,FALSE, +N1,26894,sortie-21a1207b-4a91-46db-9d0d-0f679cb69497,https://biolit.fr/sorties/sortie-21a1207b-4a91-46db-9d0d-0f679cb69497/,LABELBLEU,,10/26/2022 0:00,14.0:25,16.0:25,42.724217000000,3.030708000000,LABELBLEU,plage de Sainte Marie-La-Mer,26434,observation-21a1207b-4a91-46db-9d0d-0f679cb69497,https://biolit.fr/observations/observation-21a1207b-4a91-46db-9d0d-0f679cb69497/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2022-12-02 142306.png,,FALSE, +N1,26895,sortie-a891f8ca-7652-4fe0-9809-2ca65b77f863,https://biolit.fr/sorties/sortie-a891f8ca-7652-4fe0-9809-2ca65b77f863/,Institut Marin du Seaquarium,,8/18/2022 0:00,17.0000000,19.0000000,43.525962000000,4.138204000000,Institut Marin du Seaquarium,Plage du Seaquarium,26436,observation-a891f8ca-7652-4fe0-9809-2ca65b77f863,https://biolit.fr/observations/observation-a891f8ca-7652-4fe0-9809-2ca65b77f863/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221201_165931-scaled.jpg,,FALSE, +N1,26895,sortie-a891f8ca-7652-4fe0-9809-2ca65b77f863,https://biolit.fr/sorties/sortie-a891f8ca-7652-4fe0-9809-2ca65b77f863/,Institut Marin du Seaquarium,,8/18/2022 0:00,17.0000000,19.0000000,43.525962000000,4.138204000000,Institut Marin du Seaquarium,Plage du Seaquarium,26438,observation-a891f8ca-7652-4fe0-9809-2ca65b77f863-2,https://biolit.fr/observations/observation-a891f8ca-7652-4fe0-9809-2ca65b77f863-2/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220825_193038-scaled.jpg,,TRUE, +N1,26896,sortie-763cb626-f51b-415e-885f-210ff933f4cf,https://biolit.fr/sorties/sortie-763cb626-f51b-415e-885f-210ff933f4cf/,Institut Marin du Seaquarium,,08/04/2022,17.0000000,19.0000000,43.52594400000,4.138204000000,Institut Marin du Seaquarium,Plage du Seaquarium,26440,observation-763cb626-f51b-415e-885f-210ff933f4cf,https://biolit.fr/observations/observation-763cb626-f51b-415e-885f-210ff933f4cf/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220804_191226-scaled.jpg,,FALSE, +N1,26896,sortie-763cb626-f51b-415e-885f-210ff933f4cf,https://biolit.fr/sorties/sortie-763cb626-f51b-415e-885f-210ff933f4cf/,Institut Marin du Seaquarium,,08/04/2022,17.0000000,19.0000000,43.52594400000,4.138204000000,Institut Marin du Seaquarium,Plage du Seaquarium,26442,observation-763cb626-f51b-415e-885f-210ff933f4cf-2,https://biolit.fr/observations/observation-763cb626-f51b-415e-885f-210ff933f4cf-2/,Grateloupia turuturu,Grateloupe du Pacifique,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20220804_185003-scaled.jpg,,TRUE, +N1,26896,sortie-763cb626-f51b-415e-885f-210ff933f4cf,https://biolit.fr/sorties/sortie-763cb626-f51b-415e-885f-210ff933f4cf/,Institut Marin du Seaquarium,,08/04/2022,17.0000000,19.0000000,43.52594400000,4.138204000000,Institut Marin du Seaquarium,Plage du Seaquarium,26444,observation-763cb626-f51b-415e-885f-210ff933f4cf-3,https://biolit.fr/observations/observation-763cb626-f51b-415e-885f-210ff933f4cf-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220804_184916-scaled.jpg,,FALSE, +N1,26897,sortie-3369106c-b804-4318-bbeb-affeee65bcc2,https://biolit.fr/sorties/sortie-3369106c-b804-4318-bbeb-affeee65bcc2/,Institut Marin du Seaquarium,,7/28/2022 0:00,17.0000000,19.0000000,43.525951000000,4.138241000000,Institut Marin du Seaquarium,Plage du Seaquarium,26446,observation-3369106c-b804-4318-bbeb-affeee65bcc2,https://biolit.fr/observations/observation-3369106c-b804-4318-bbeb-affeee65bcc2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221201_165218-scaled.jpg,,FALSE, +N1,26897,sortie-3369106c-b804-4318-bbeb-affeee65bcc2,https://biolit.fr/sorties/sortie-3369106c-b804-4318-bbeb-affeee65bcc2/,Institut Marin du Seaquarium,,7/28/2022 0:00,17.0000000,19.0000000,43.525951000000,4.138241000000,Institut Marin du Seaquarium,Plage du Seaquarium,26448,observation-3369106c-b804-4318-bbeb-affeee65bcc2-2,https://biolit.fr/observations/observation-3369106c-b804-4318-bbeb-affeee65bcc2-2/,Grateloupia turuturu,Grateloupe du Pacifique,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220728_191533-scaled.jpg,,TRUE, +N1,26897,sortie-3369106c-b804-4318-bbeb-affeee65bcc2,https://biolit.fr/sorties/sortie-3369106c-b804-4318-bbeb-affeee65bcc2/,Institut Marin du Seaquarium,,7/28/2022 0:00,17.0000000,19.0000000,43.525951000000,4.138241000000,Institut Marin du Seaquarium,Plage du Seaquarium,26450,observation-3369106c-b804-4318-bbeb-affeee65bcc2-3,https://biolit.fr/observations/observation-3369106c-b804-4318-bbeb-affeee65bcc2-3/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220728_191512-scaled.jpg,,TRUE, +N1,26898,sortie-9fab1dba-f5f2-460f-8c6e-7fa304388c67,https://biolit.fr/sorties/sortie-9fab1dba-f5f2-460f-8c6e-7fa304388c67/,Institut Marin du Seaquarium,,7/21/2022 0:00,17.0000000,19.0000000,43.525964000000,4.138226000000,Institut Marin du Seaquarium,Plage du Seaquarium,26452,observation-9fab1dba-f5f2-460f-8c6e-7fa304388c67,https://biolit.fr/observations/observation-9fab1dba-f5f2-460f-8c6e-7fa304388c67/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221201_164121-scaled.jpg,,FALSE, +N1,26898,sortie-9fab1dba-f5f2-460f-8c6e-7fa304388c67,https://biolit.fr/sorties/sortie-9fab1dba-f5f2-460f-8c6e-7fa304388c67/,Institut Marin du Seaquarium,,7/21/2022 0:00,17.0000000,19.0000000,43.525964000000,4.138226000000,Institut Marin du Seaquarium,Plage du Seaquarium,26454,observation-9fab1dba-f5f2-460f-8c6e-7fa304388c67-2,https://biolit.fr/observations/observation-9fab1dba-f5f2-460f-8c6e-7fa304388c67-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220721_193558-scaled.jpg,,FALSE, +N1,26898,sortie-9fab1dba-f5f2-460f-8c6e-7fa304388c67,https://biolit.fr/sorties/sortie-9fab1dba-f5f2-460f-8c6e-7fa304388c67/,Institut Marin du Seaquarium,,7/21/2022 0:00,17.0000000,19.0000000,43.525964000000,4.138226000000,Institut Marin du Seaquarium,Plage du Seaquarium,26456,observation-9fab1dba-f5f2-460f-8c6e-7fa304388c67-3,https://biolit.fr/observations/observation-9fab1dba-f5f2-460f-8c6e-7fa304388c67-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220721_193615.jpg,,FALSE, +N1,26898,sortie-9fab1dba-f5f2-460f-8c6e-7fa304388c67,https://biolit.fr/sorties/sortie-9fab1dba-f5f2-460f-8c6e-7fa304388c67/,Institut Marin du Seaquarium,,7/21/2022 0:00,17.0000000,19.0000000,43.525964000000,4.138226000000,Institut Marin du Seaquarium,Plage du Seaquarium,26458,observation-9fab1dba-f5f2-460f-8c6e-7fa304388c67-4,https://biolit.fr/observations/observation-9fab1dba-f5f2-460f-8c6e-7fa304388c67-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220721_193626-scaled.jpg,,FALSE, +N1,26898,sortie-9fab1dba-f5f2-460f-8c6e-7fa304388c67,https://biolit.fr/sorties/sortie-9fab1dba-f5f2-460f-8c6e-7fa304388c67/,Institut Marin du Seaquarium,,7/21/2022 0:00,17.0000000,19.0000000,43.525964000000,4.138226000000,Institut Marin du Seaquarium,Plage du Seaquarium,26460,observation-9fab1dba-f5f2-460f-8c6e-7fa304388c67-5,https://biolit.fr/observations/observation-9fab1dba-f5f2-460f-8c6e-7fa304388c67-5/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220721_193551.jpg,,TRUE, +N1,26899,sortie-b24734be-f9e7-451c-b554-1764090e9edf,https://biolit.fr/sorties/sortie-b24734be-f9e7-451c-b554-1764090e9edf/,Institut Marin du Seaquarium,,7/14/2022 0:00,17.0000000,19.0000000,43.525954000000,4.138119000000,Institut Marin du Seaquarium,Plage du Seaquarium,26462,observation-b24734be-f9e7-451c-b554-1764090e9edf,https://biolit.fr/observations/observation-b24734be-f9e7-451c-b554-1764090e9edf/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220714_191033-scaled.jpg,,TRUE, +N1,26899,sortie-b24734be-f9e7-451c-b554-1764090e9edf,https://biolit.fr/sorties/sortie-b24734be-f9e7-451c-b554-1764090e9edf/,Institut Marin du Seaquarium,,7/14/2022 0:00,17.0000000,19.0000000,43.525954000000,4.138119000000,Institut Marin du Seaquarium,Plage du Seaquarium,26464,observation-b24734be-f9e7-451c-b554-1764090e9edf-2,https://biolit.fr/observations/observation-b24734be-f9e7-451c-b554-1764090e9edf-2/,Ficopomatus enigmaticus,Cascail,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220714_190947-scaled.jpg,,TRUE, +N1,26900,sortie-e29d0f44-2ee0-4d35-bee2-317dda2475fd,https://biolit.fr/sorties/sortie-e29d0f44-2ee0-4d35-bee2-317dda2475fd/,Institut Marin du Seaquarium,,07/08/2022,18.0000000,19.0000000,43.525951000000,4.138164000000,Institut Marin du Seaquarium,Plage du Seaquarium,,,,,,,,,, +N1,26901,sortie-711b386b-d9fc-4d32-bcd4-036eee95b320,https://biolit.fr/sorties/sortie-711b386b-d9fc-4d32-bcd4-036eee95b320/,LABELBLEU,,11/23/2022 0:00,14.0000000,16.0000000,42.775962000000,3.03863600000,LABELBLEU,Plage de Torreilles,,,,,,,,,, +N1,26902,sortie-87848061-49c4-4c90-8e0e-05c6c5337b87,https://biolit.fr/sorties/sortie-87848061-49c4-4c90-8e0e-05c6c5337b87/,Marine,,10/30/2022 0:00,16.000005,16.0:15,46.14619600000,-1.207320000000,,Chef de Baie,26470,observation-87848061-49c4-4c90-8e0e-05c6c5337b87,https://biolit.fr/observations/observation-87848061-49c4-4c90-8e0e-05c6c5337b87/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221030_152847_compress14-scaled.jpg,,TRUE, +N1,26902,sortie-87848061-49c4-4c90-8e0e-05c6c5337b87,https://biolit.fr/sorties/sortie-87848061-49c4-4c90-8e0e-05c6c5337b87/,Marine,,10/30/2022 0:00,16.000005,16.0:15,46.14619600000,-1.207320000000,,Chef de Baie,26472,observation-87848061-49c4-4c90-8e0e-05c6c5337b87-2,https://biolit.fr/observations/observation-87848061-49c4-4c90-8e0e-05c6c5337b87-2/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221030_152852_compress7-scaled.jpg,,TRUE, +N1,26902,sortie-87848061-49c4-4c90-8e0e-05c6c5337b87,https://biolit.fr/sorties/sortie-87848061-49c4-4c90-8e0e-05c6c5337b87/,Marine,,10/30/2022 0:00,16.000005,16.0:15,46.14619600000,-1.207320000000,,Chef de Baie,26474,observation-87848061-49c4-4c90-8e0e-05c6c5337b87-3,https://biolit.fr/observations/observation-87848061-49c4-4c90-8e0e-05c6c5337b87-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221030_152751_compress16-scaled.jpg,,FALSE, +N1,26903,sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834,https://biolit.fr/sorties/sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834/,AIEJE,,10/28/2022 0:00,14.0000000,15.0000000,43.331389000000,5.20325400000,AIEJE,ENSUES LA REDONNE,26476,observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834,https://biolit.fr/observations/observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834/,,,,https://biolit.fr/wp-content/uploads/2023/07/MicrosoftTeams-image-rotated.png,,FALSE, +N1,26903,sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834,https://biolit.fr/sorties/sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834/,AIEJE,,10/28/2022 0:00,14.0000000,15.0000000,43.331389000000,5.20325400000,AIEJE,ENSUES LA REDONNE,26478,observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834-2,https://biolit.fr/observations/observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2576-scaled.jpg,,FALSE, +N1,26903,sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834,https://biolit.fr/sorties/sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834/,AIEJE,,10/28/2022 0:00,14.0000000,15.0000000,43.331389000000,5.20325400000,AIEJE,ENSUES LA REDONNE,26480,observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834-3,https://biolit.fr/observations/observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2578-scaled.jpg,,FALSE, +N1,26903,sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834,https://biolit.fr/sorties/sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834/,AIEJE,,10/28/2022 0:00,14.0000000,15.0000000,43.331389000000,5.20325400000,AIEJE,ENSUES LA REDONNE,26482,observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834-4,https://biolit.fr/observations/observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2580-scaled.jpg,,FALSE, +N1,26903,sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834,https://biolit.fr/sorties/sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834/,AIEJE,,10/28/2022 0:00,14.0000000,15.0000000,43.331389000000,5.20325400000,AIEJE,ENSUES LA REDONNE,26484,observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834-5,https://biolit.fr/observations/observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2582-scaled.jpg,,FALSE, +N1,26903,sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834,https://biolit.fr/sorties/sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834/,AIEJE,,10/28/2022 0:00,14.0000000,15.0000000,43.331389000000,5.20325400000,AIEJE,ENSUES LA REDONNE,26486,observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834-6,https://biolit.fr/observations/observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2585-scaled.jpg,,FALSE, +N1,26903,sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834,https://biolit.fr/sorties/sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834/,AIEJE,,10/28/2022 0:00,14.0000000,15.0000000,43.331389000000,5.20325400000,AIEJE,ENSUES LA REDONNE,26488,observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834-7,https://biolit.fr/observations/observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2579-scaled.jpg,,FALSE, +N1,26903,sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834,https://biolit.fr/sorties/sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834/,AIEJE,,10/28/2022 0:00,14.0000000,15.0000000,43.331389000000,5.20325400000,AIEJE,ENSUES LA REDONNE,26490,observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834-8,https://biolit.fr/observations/observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2583-scaled.jpg,,FALSE, +N1,26903,sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834,https://biolit.fr/sorties/sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834/,AIEJE,,10/28/2022 0:00,14.0000000,15.0000000,43.331389000000,5.20325400000,AIEJE,ENSUES LA REDONNE,26492,observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834-9,https://biolit.fr/observations/observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834-9/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2581-scaled.jpg,,TRUE, +N1,26904,sortie-af8898e6-aac8-4c90-a9a4-684a3abef757,https://biolit.fr/sorties/sortie-af8898e6-aac8-4c90-a9a4-684a3abef757/,Institut Marin du Seaquarium,,10/26/2022 0:00,16.0000000,17.0000000,43.525961000000,4.138228000000,Institut Marin du Seaquarium,Plage du Seaquarium,26494,observation-af8898e6-aac8-4c90-a9a4-684a3abef757,https://biolit.fr/observations/observation-af8898e6-aac8-4c90-a9a4-684a3abef757/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221027_101851-scaled.jpg,,FALSE, +N1,26904,sortie-af8898e6-aac8-4c90-a9a4-684a3abef757,https://biolit.fr/sorties/sortie-af8898e6-aac8-4c90-a9a4-684a3abef757/,Institut Marin du Seaquarium,,10/26/2022 0:00,16.0000000,17.0000000,43.525961000000,4.138228000000,Institut Marin du Seaquarium,Plage du Seaquarium,26496,observation-af8898e6-aac8-4c90-a9a4-684a3abef757-2,https://biolit.fr/observations/observation-af8898e6-aac8-4c90-a9a4-684a3abef757-2/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220825_193056-scaled.jpg,,TRUE, +N1,26905,sortie-e642fbf5-be3b-4d8f-822f-11280d0c6afa,https://biolit.fr/sorties/sortie-e642fbf5-be3b-4d8f-822f-11280d0c6afa/,Institut Marin du Seaquarium,,10/25/2022 0:00,16.0000000,17.0000000,43.525937000000,4.138239000000,Institut Marin du Seaquarium,Plage du Seaquarium,26498,observation-e642fbf5-be3b-4d8f-822f-11280d0c6afa,https://biolit.fr/observations/observation-e642fbf5-be3b-4d8f-822f-11280d0c6afa/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221025_173440-scaled.jpg,,TRUE, +N1,26906,sortie-239329b0-40a9-4b1d-9b7a-e2a0b9b24a6d,https://biolit.fr/sorties/sortie-239329b0-40a9-4b1d-9b7a-e2a0b9b24a6d/,Camille Benyamine,,10/25/2022 0:00,10.0:15,10.0000000,43.213716000000,5.345518000000,Planète Mer,Anse de la Maronaise,26500,observation-239329b0-40a9-4b1d-9b7a-e2a0b9b24a6d,https://biolit.fr/observations/observation-239329b0-40a9-4b1d-9b7a-e2a0b9b24a6d/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221025 FICHE NA.jpg,,FALSE, +N1,26906,sortie-239329b0-40a9-4b1d-9b7a-e2a0b9b24a6d,https://biolit.fr/sorties/sortie-239329b0-40a9-4b1d-9b7a-e2a0b9b24a6d/,Camille Benyamine,,10/25/2022 0:00,10.0:15,10.0000000,43.213716000000,5.345518000000,Planète Mer,Anse de la Maronaise,26502,observation-239329b0-40a9-4b1d-9b7a-e2a0b9b24a6d-2,https://biolit.fr/observations/observation-239329b0-40a9-4b1d-9b7a-e2a0b9b24a6d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/MicrosoftTeams-image(1).jpg,,FALSE, +N1,26907,sortie-90689286-d85a-4752-a0d8-5f4fa43f67a1,https://biolit.fr/sorties/sortie-90689286-d85a-4752-a0d8-5f4fa43f67a1/,Watch The Sea,,9/30/2022 0:00,10.0:15,10.0000000,43.284843000000,5.321314000000,Watch The Sea,Calanque de Ratonneau,26504,observation-90689286-d85a-4752-a0d8-5f4fa43f67a1,https://biolit.fr/observations/observation-90689286-d85a-4752-a0d8-5f4fa43f67a1/,,,,https://biolit.fr/wp-content/uploads/2023/07/72119_0.jpg,,FALSE, +N1,26908,sortie-880d6f04-e48c-4d06-801b-3c79936b2c0f,https://biolit.fr/sorties/sortie-880d6f04-e48c-4d06-801b-3c79936b2c0f/,Watch The Sea,,10/21/2022 0:00,16.0000000,18.0000000,43.284581000000,5.321142000000,,Calanque de Ratonneau,26506,observation-880d6f04-e48c-4d06-801b-3c79936b2c0f,https://biolit.fr/observations/observation-880d6f04-e48c-4d06-801b-3c79936b2c0f/,,,,https://biolit.fr/wp-content/uploads/2023/07/10784.jpg,,FALSE, +N1,26909,sortie-661b7c5f-e21b-41a2-8508-a1ccacd0eb62,https://biolit.fr/sorties/sortie-661b7c5f-e21b-41a2-8508-a1ccacd0eb62/,LABELBLEU,,10/19/2022 0:00,10.0000000,12.0000000,42.535186000000,3.06449300000,LABELBLEU,Criques de Porteils,26508,observation-661b7c5f-e21b-41a2-8508-a1ccacd0eb62,https://biolit.fr/observations/observation-661b7c5f-e21b-41a2-8508-a1ccacd0eb62/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/codium fragile.jpg,,TRUE, +N1,26910,sortie-fb2f9a58-8473-4102-a9f7-a1a11213c17b,https://biolit.fr/sorties/sortie-fb2f9a58-8473-4102-a9f7-a1a11213c17b/,LABELBLEU,,10/08/2022,10.0000000,12.0000000,42.535288000000,3.064074000000,LABELBLEU,Criques de Porteils,26510,observation-fb2f9a58-8473-4102-a9f7-a1a11213c17b,https://biolit.fr/observations/observation-fb2f9a58-8473-4102-a9f7-a1a11213c17b/,,,,https://biolit.fr/wp-content/uploads/2023/07/espèces NA-scaled.jpg,,FALSE, +N1,26911,sortie-01e73f71-5ae4-4189-96fe-851d334f9637,https://biolit.fr/sorties/sortie-01e73f71-5ae4-4189-96fe-851d334f9637/,AILERONS,,9/18/2022 0:00,17.0000000,19.0000000,43.541245000000,3.97124200000,Ailerons,"Plage des Roquilles, 34 280 Carnon-Mauguio",26512,observation-01e73f71-5ae4-4189-96fe-851d334f9637,https://biolit.fr/observations/observation-01e73f71-5ae4-4189-96fe-851d334f9637/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220918_191426-scaled.jpg,,FALSE, +N1,26911,sortie-01e73f71-5ae4-4189-96fe-851d334f9637,https://biolit.fr/sorties/sortie-01e73f71-5ae4-4189-96fe-851d334f9637/,AILERONS,,9/18/2022 0:00,17.0000000,19.0000000,43.541245000000,3.97124200000,Ailerons,"Plage des Roquilles, 34 280 Carnon-Mauguio",26514,observation-01e73f71-5ae4-4189-96fe-851d334f9637-2,https://biolit.fr/observations/observation-01e73f71-5ae4-4189-96fe-851d334f9637-2/,Ficopomatus enigmaticus,Cascail,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20220918_190340-scaled.jpg,,TRUE, +N1,26911,sortie-01e73f71-5ae4-4189-96fe-851d334f9637,https://biolit.fr/sorties/sortie-01e73f71-5ae4-4189-96fe-851d334f9637/,AILERONS,,9/18/2022 0:00,17.0000000,19.0000000,43.541245000000,3.97124200000,Ailerons,"Plage des Roquilles, 34 280 Carnon-Mauguio",26516,observation-01e73f71-5ae4-4189-96fe-851d334f9637-3,https://biolit.fr/observations/observation-01e73f71-5ae4-4189-96fe-851d334f9637-3/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20220918_185604-scaled.jpg,,TRUE, +N1,26911,sortie-01e73f71-5ae4-4189-96fe-851d334f9637,https://biolit.fr/sorties/sortie-01e73f71-5ae4-4189-96fe-851d334f9637/,AILERONS,,9/18/2022 0:00,17.0000000,19.0000000,43.541245000000,3.97124200000,Ailerons,"Plage des Roquilles, 34 280 Carnon-Mauguio",26518,observation-01e73f71-5ae4-4189-96fe-851d334f9637-4,https://biolit.fr/observations/observation-01e73f71-5ae4-4189-96fe-851d334f9637-4/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20220918_185310-scaled.jpg,,TRUE, +N1,26912,sortie-0a3fba34-6553-42f6-a7ab-a7529d3141e9,https://biolit.fr/sorties/sortie-0a3fba34-6553-42f6-a7ab-a7529d3141e9/,AILERONS,,10/01/2022,16.0000000,18.0000000,43.528211000000,3.934028000000,Ailerons,"Palavas, plage de l'Hotel de Ville ",26520,observation-0a3fba34-6553-42f6-a7ab-a7529d3141e9,https://biolit.fr/observations/observation-0a3fba34-6553-42f6-a7ab-a7529d3141e9/,,,,https://biolit.fr/wp-content/uploads/2023/07/received_1333444414066298.jpeg,,FALSE, +N1,26912,sortie-0a3fba34-6553-42f6-a7ab-a7529d3141e9,https://biolit.fr/sorties/sortie-0a3fba34-6553-42f6-a7ab-a7529d3141e9/,AILERONS,,10/01/2022,16.0000000,18.0000000,43.528211000000,3.934028000000,Ailerons,"Palavas, plage de l'Hotel de Ville ",26522,observation-0a3fba34-6553-42f6-a7ab-a7529d3141e9-2,https://biolit.fr/observations/observation-0a3fba34-6553-42f6-a7ab-a7529d3141e9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Asparagopsis armata.jpg,,FALSE, +N1,26912,sortie-0a3fba34-6553-42f6-a7ab-a7529d3141e9,https://biolit.fr/sorties/sortie-0a3fba34-6553-42f6-a7ab-a7529d3141e9/,AILERONS,,10/01/2022,16.0000000,18.0000000,43.528211000000,3.934028000000,Ailerons,"Palavas, plage de l'Hotel de Ville ",26524,observation-0a3fba34-6553-42f6-a7ab-a7529d3141e9-3,https://biolit.fr/observations/observation-0a3fba34-6553-42f6-a7ab-a7529d3141e9-3/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crassostrea gigas.jpg,,TRUE, +N1,26912,sortie-0a3fba34-6553-42f6-a7ab-a7529d3141e9,https://biolit.fr/sorties/sortie-0a3fba34-6553-42f6-a7ab-a7529d3141e9/,AILERONS,,10/01/2022,16.0000000,18.0000000,43.528211000000,3.934028000000,Ailerons,"Palavas, plage de l'Hotel de Ville ",26526,observation-0a3fba34-6553-42f6-a7ab-a7529d3141e9-4,https://biolit.fr/observations/observation-0a3fba34-6553-42f6-a7ab-a7529d3141e9-4/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Codium fragile_1.jpg,,TRUE, +N1,26913,sortie-75941036-9081-4edc-a7b3-0a1d0e8f9545,https://biolit.fr/sorties/sortie-75941036-9081-4edc-a7b3-0a1d0e8f9545/,Marine,,9/17/2022 0:00,13.0:45,13.0:55,43.280516000000,5.352967000000,Planète Mer,Anse fausse monnaie ,26528,observation-75941036-9081-4edc-a7b3-0a1d0e8f9545,https://biolit.fr/observations/observation-75941036-9081-4edc-a7b3-0a1d0e8f9545/,Caulerpa cylindracea,Caulerpe cylindracée,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220917_124459_compress98-scaled.jpg,,TRUE, +N1,26913,sortie-75941036-9081-4edc-a7b3-0a1d0e8f9545,https://biolit.fr/sorties/sortie-75941036-9081-4edc-a7b3-0a1d0e8f9545/,Marine,,9/17/2022 0:00,13.0:45,13.0:55,43.280516000000,5.352967000000,Planète Mer,Anse fausse monnaie ,26530,observation-75941036-9081-4edc-a7b3-0a1d0e8f9545-2,https://biolit.fr/observations/observation-75941036-9081-4edc-a7b3-0a1d0e8f9545-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220918_083926_compress64-scaled.jpg,,FALSE, +N1,26914,sortie-a3d3a32f-3d71-487c-94c3-f43dc5f6126c,https://biolit.fr/sorties/sortie-a3d3a32f-3d71-487c-94c3-f43dc5f6126c/,LABELBLEU,,9/14/2022 0:00,15.0000000,17.0000000,42.729612000000,3.038282000000,LABELBLEU,Sainte-marie-la-mer,26532,observation-a3d3a32f-3d71-487c-94c3-f43dc5f6126c,https://biolit.fr/observations/observation-a3d3a32f-3d71-487c-94c3-f43dc5f6126c/,,,,https://biolit.fr/wp-content/uploads/2023/07/Biolit pas de NA.jpg,,FALSE, +N1,26915,sortie-d83a5727-6a9b-474e-b90a-a185004c16b5,https://biolit.fr/sorties/sortie-d83a5727-6a9b-474e-b90a-a185004c16b5/,LABELBLEU,,8/17/2022 0:00,10.0000000,12.0000000,42.544143000000,3.051725000000,LABELBLEU,Port-Argelès,26534,observation-d83a5727-6a9b-474e-b90a-a185004c16b5,https://biolit.fr/observations/observation-d83a5727-6a9b-474e-b90a-a185004c16b5/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/huitre creuse-scaled.jpg,,TRUE, +N1,26916,sortie-ce6f0540-6993-4bcf-b6c4-c52fbc84ca89,https://biolit.fr/sorties/sortie-ce6f0540-6993-4bcf-b6c4-c52fbc84ca89/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.853660000000,-3.981947000000,,Plage des dunes ( Beg-meil),26536,observation-ce6f0540-6993-4bcf-b6c4-c52fbc84ca89,https://biolit.fr/observations/observation-ce6f0540-6993-4bcf-b6c4-c52fbc84ca89/,,,,https://biolit.fr/wp-content/uploads/2023/07/305949545_619788366201830_6842376493550192176_n_0.jpg,,FALSE, +N1,26916,sortie-ce6f0540-6993-4bcf-b6c4-c52fbc84ca89,https://biolit.fr/sorties/sortie-ce6f0540-6993-4bcf-b6c4-c52fbc84ca89/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.853660000000,-3.981947000000,,Plage des dunes ( Beg-meil),26538,observation-ce6f0540-6993-4bcf-b6c4-c52fbc84ca89-2,https://biolit.fr/observations/observation-ce6f0540-6993-4bcf-b6c4-c52fbc84ca89-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/306398389_495162315325320_8126500358242817747_n.jpg,,FALSE, +N1,26916,sortie-ce6f0540-6993-4bcf-b6c4-c52fbc84ca89,https://biolit.fr/sorties/sortie-ce6f0540-6993-4bcf-b6c4-c52fbc84ca89/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.853660000000,-3.981947000000,,Plage des dunes ( Beg-meil),26540,observation-ce6f0540-6993-4bcf-b6c4-c52fbc84ca89-3,https://biolit.fr/observations/observation-ce6f0540-6993-4bcf-b6c4-c52fbc84ca89-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/305529410_617000053413261_4920154097195251455_n.jpg,,FALSE, +N1,26917,sortie-9d5288ff-b90f-4d71-8ff2-baef62218501,https://biolit.fr/sorties/sortie-9d5288ff-b90f-4d71-8ff2-baef62218501/,Projet Azur - Philo,,09/05/2022,10.0000000,12.0000000,43.570550000000,7.119086000000,,Golf Juan,26542,observation-9d5288ff-b90f-4d71-8ff2-baef62218501,https://biolit.fr/observations/observation-9d5288ff-b90f-4d71-8ff2-baef62218501/,Caulerpa taxifolia,Caulerpe à feuilles d'if,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Caulerpe_0.jpg,,TRUE, +N1,26918,sortie-336dd18b-2380-444a-bb24-029dce919699,https://biolit.fr/sorties/sortie-336dd18b-2380-444a-bb24-029dce919699/,Projet Azur - Philo,,8/28/2022 0:00,16.0000000,17.0000000,43.404458000000,6.67938200000,,Roquebrune,26544,observation-336dd18b-2380-444a-bb24-029dce919699,https://biolit.fr/observations/observation-336dd18b-2380-444a-bb24-029dce919699/,Percnon gibbesi,Crabe plat des oursins,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crabe plat à oursins 28.08.22_0.png,,TRUE, +N1,26919,sortie-39b6f3fa-1697-4f96-9228-f1be119634af,https://biolit.fr/sorties/sortie-39b6f3fa-1697-4f96-9228-f1be119634af/,Litt'Obs,,08/11/2022,21.0:45,22.0000000,48.555909000000,-2.720348000000,,"Martin-plage, Plérin",26546,observation-39b6f3fa-1697-4f96-9228-f1be119634af,https://biolit.fr/observations/observation-39b6f3fa-1697-4f96-9228-f1be119634af/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crabe marbré©F.BARGAT.jpg,,TRUE, +N1,26920,sortie-a34dd820-378b-4c48-a4dd-0a0387fd274b,https://biolit.fr/sorties/sortie-a34dd820-378b-4c48-a4dd-0a0387fd274b/,LPO Occitanie - Aude,,08/10/2022,10.0000000,11.0000000,42.895352000000,3.053501000000,LPO Occitanie (Dt Aude),Leucate plage,26548,observation-a34dd820-378b-4c48-a4dd-0a0387fd274b,https://biolit.fr/observations/observation-a34dd820-378b-4c48-a4dd-0a0387fd274b/,,,,https://biolit.fr/wp-content/uploads/2023/07/16602261444829125077007856691979-scaled.jpg,,FALSE, +N1,26920,sortie-a34dd820-378b-4c48-a4dd-0a0387fd274b,https://biolit.fr/sorties/sortie-a34dd820-378b-4c48-a4dd-0a0387fd274b/,LPO Occitanie - Aude,,08/10/2022,10.0000000,11.0000000,42.895352000000,3.053501000000,LPO Occitanie (Dt Aude),Leucate plage,26550,observation-a34dd820-378b-4c48-a4dd-0a0387fd274b-2,https://biolit.fr/observations/observation-a34dd820-378b-4c48-a4dd-0a0387fd274b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/16602262364813962806167463556070-scaled.jpg,,FALSE, +N1,26920,sortie-a34dd820-378b-4c48-a4dd-0a0387fd274b,https://biolit.fr/sorties/sortie-a34dd820-378b-4c48-a4dd-0a0387fd274b/,LPO Occitanie - Aude,,08/10/2022,10.0000000,11.0000000,42.895352000000,3.053501000000,LPO Occitanie (Dt Aude),Leucate plage,26552,observation-a34dd820-378b-4c48-a4dd-0a0387fd274b-3,https://biolit.fr/observations/observation-a34dd820-378b-4c48-a4dd-0a0387fd274b-3/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220810_103552-scaled.jpg,,TRUE, +N1,26921,sortie-cb50cff2-5f45-4b49-8c4a-eab764fe2582,https://biolit.fr/sorties/sortie-cb50cff2-5f45-4b49-8c4a-eab764fe2582/,LABELBLEU,,08/04/2022,10.0000000,12.0000000,42.535268000000,3.064096000000,LABELBLEU,"Criques de Porteils, Argelès-sur-mer",26554,observation-cb50cff2-5f45-4b49-8c4a-eab764fe2582,https://biolit.fr/observations/observation-cb50cff2-5f45-4b49-8c4a-eab764fe2582/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/296635966_426574346160151_4647479717521645600_n-scaled.jpg,,TRUE, +N1,26921,sortie-cb50cff2-5f45-4b49-8c4a-eab764fe2582,https://biolit.fr/sorties/sortie-cb50cff2-5f45-4b49-8c4a-eab764fe2582/,LABELBLEU,,08/04/2022,10.0000000,12.0000000,42.535268000000,3.064096000000,LABELBLEU,"Criques de Porteils, Argelès-sur-mer",26556,observation-cb50cff2-5f45-4b49-8c4a-eab764fe2582-2,https://biolit.fr/observations/observation-cb50cff2-5f45-4b49-8c4a-eab764fe2582-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/296779895_362995766037862_5910574748420860194_n-scaled.jpg,,FALSE, +N1,26922,sortie-c9abba18-7d43-4491-a20f-666621404b24,https://biolit.fr/sorties/sortie-c9abba18-7d43-4491-a20f-666621404b24/,LABELBLEU,,7/29/2022 0:00,10.0000000,12.0000000,42.543510000000,3.052142000000,LABELBLEU,Port d'Argelès-sur-mer,26558,observation-c9abba18-7d43-4491-a20f-666621404b24,https://biolit.fr/observations/observation-c9abba18-7d43-4491-a20f-666621404b24/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Crabe_bleu-scaled.jpg,,TRUE, +N1,26922,sortie-c9abba18-7d43-4491-a20f-666621404b24,https://biolit.fr/sorties/sortie-c9abba18-7d43-4491-a20f-666621404b24/,LABELBLEU,,7/29/2022 0:00,10.0000000,12.0000000,42.543510000000,3.052142000000,LABELBLEU,Port d'Argelès-sur-mer,26560,observation-c9abba18-7d43-4491-a20f-666621404b24-2,https://biolit.fr/observations/observation-c9abba18-7d43-4491-a20f-666621404b24-2/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Crabe_mitaine-scaled.jpg,,TRUE, +N1,26922,sortie-c9abba18-7d43-4491-a20f-666621404b24,https://biolit.fr/sorties/sortie-c9abba18-7d43-4491-a20f-666621404b24/,LABELBLEU,,7/29/2022 0:00,10.0000000,12.0000000,42.543510000000,3.052142000000,LABELBLEU,Port d'Argelès-sur-mer,26562,observation-c9abba18-7d43-4491-a20f-666621404b24-3,https://biolit.fr/observations/observation-c9abba18-7d43-4491-a20f-666621404b24-3/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Huitre_creuse-scaled.jpg,,TRUE, +N1,26922,sortie-c9abba18-7d43-4491-a20f-666621404b24,https://biolit.fr/sorties/sortie-c9abba18-7d43-4491-a20f-666621404b24/,LABELBLEU,,7/29/2022 0:00,10.0000000,12.0000000,42.543510000000,3.052142000000,LABELBLEU,Port d'Argelès-sur-mer,26564,observation-c9abba18-7d43-4491-a20f-666621404b24-4,https://biolit.fr/observations/observation-c9abba18-7d43-4491-a20f-666621404b24-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/290722_tableau.jpg,,,non-identifiable +N1,26923,sortie-19786e84-728f-4ccb-b4b2-69b4a13766a6,https://biolit.fr/sorties/sortie-19786e84-728f-4ccb-b4b2-69b4a13766a6/,LPO Occitanie - Aude,,08/03/2022,9.0000000,10.0000000,42.937114000000,3.030740000000,LPO Occitanie (Dt Aude),Grau de la Franqui,26566,observation-19786e84-728f-4ccb-b4b2-69b4a13766a6,https://biolit.fr/observations/observation-19786e84-728f-4ccb-b4b2-69b4a13766a6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220803_103901-scaled.jpg,,FALSE, +N1,26923,sortie-19786e84-728f-4ccb-b4b2-69b4a13766a6,https://biolit.fr/sorties/sortie-19786e84-728f-4ccb-b4b2-69b4a13766a6/,LPO Occitanie - Aude,,08/03/2022,9.0000000,10.0000000,42.937114000000,3.030740000000,LPO Occitanie (Dt Aude),Grau de la Franqui,26568,observation-19786e84-728f-4ccb-b4b2-69b4a13766a6-2,https://biolit.fr/observations/observation-19786e84-728f-4ccb-b4b2-69b4a13766a6-2/,Arcuatula senhousia,Moule asiatique,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220803_104001-scaled.jpg,,TRUE, +N1,26923,sortie-19786e84-728f-4ccb-b4b2-69b4a13766a6,https://biolit.fr/sorties/sortie-19786e84-728f-4ccb-b4b2-69b4a13766a6/,LPO Occitanie - Aude,,08/03/2022,9.0000000,10.0000000,42.937114000000,3.030740000000,LPO Occitanie (Dt Aude),Grau de la Franqui,26570,observation-19786e84-728f-4ccb-b4b2-69b4a13766a6-3,https://biolit.fr/observations/observation-19786e84-728f-4ccb-b4b2-69b4a13766a6-3/,Arcuatula senhousia,Moule asiatique,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220803_103955-scaled.jpg,,TRUE, +N1,26923,sortie-19786e84-728f-4ccb-b4b2-69b4a13766a6,https://biolit.fr/sorties/sortie-19786e84-728f-4ccb-b4b2-69b4a13766a6/,LPO Occitanie - Aude,,08/03/2022,9.0000000,10.0000000,42.937114000000,3.030740000000,LPO Occitanie (Dt Aude),Grau de la Franqui,26572,observation-19786e84-728f-4ccb-b4b2-69b4a13766a6-4,https://biolit.fr/observations/observation-19786e84-728f-4ccb-b4b2-69b4a13766a6-4/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220803_103920-scaled.jpg,,TRUE, +N1,26923,sortie-19786e84-728f-4ccb-b4b2-69b4a13766a6,https://biolit.fr/sorties/sortie-19786e84-728f-4ccb-b4b2-69b4a13766a6/,LPO Occitanie - Aude,,08/03/2022,9.0000000,10.0000000,42.937114000000,3.030740000000,LPO Occitanie (Dt Aude),Grau de la Franqui,26574,observation-19786e84-728f-4ccb-b4b2-69b4a13766a6-5,https://biolit.fr/observations/observation-19786e84-728f-4ccb-b4b2-69b4a13766a6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220803_103908-scaled.jpg,,FALSE, +N1,26924,sortie-cd704770-3be0-402d-ac03-9a56c7b164d9,https://biolit.fr/sorties/sortie-cd704770-3be0-402d-ac03-9a56c7b164d9/,LPO Occitanie - Aude,,7/27/2022 0:00,9.0:15,10.0000000,42.886295000000,3.051247000000,LPO Occitanie (Dt Aude),"Plage de la maison de l'étang, Leucate",26576,observation-cd704770-3be0-402d-ac03-9a56c7b164d9,https://biolit.fr/observations/observation-cd704770-3be0-402d-ac03-9a56c7b164d9/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220727_100004-scaled.jpg,,TRUE, +N1,26924,sortie-cd704770-3be0-402d-ac03-9a56c7b164d9,https://biolit.fr/sorties/sortie-cd704770-3be0-402d-ac03-9a56c7b164d9/,LPO Occitanie - Aude,,7/27/2022 0:00,9.0:15,10.0000000,42.886295000000,3.051247000000,LPO Occitanie (Dt Aude),"Plage de la maison de l'étang, Leucate",26578,observation-cd704770-3be0-402d-ac03-9a56c7b164d9-2,https://biolit.fr/observations/observation-cd704770-3be0-402d-ac03-9a56c7b164d9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220727_095917-scaled.jpg,,FALSE, +N1,26924,sortie-cd704770-3be0-402d-ac03-9a56c7b164d9,https://biolit.fr/sorties/sortie-cd704770-3be0-402d-ac03-9a56c7b164d9/,LPO Occitanie - Aude,,7/27/2022 0:00,9.0:15,10.0000000,42.886295000000,3.051247000000,LPO Occitanie (Dt Aude),"Plage de la maison de l'étang, Leucate",26580,observation-cd704770-3be0-402d-ac03-9a56c7b164d9-3,https://biolit.fr/observations/observation-cd704770-3be0-402d-ac03-9a56c7b164d9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220802_155443-scaled.jpg,,FALSE, +N1,26925,sortie-57b30a88-1033-4396-ab22-f04c5b8b3133,https://biolit.fr/sorties/sortie-57b30a88-1033-4396-ab22-f04c5b8b3133/,LPO Occitanie - Aude,,07/08/2022,10.0000000,11.0000000,43.083333000000,3.051856000000,LPO Occitanie (Dt Aude),"Gruissan, plage des Goules ",,,,,,,,,, +N1,26926,sortie-f1ec57e2-7c14-4001-bfb5-f127f766c71b,https://biolit.fr/sorties/sortie-f1ec57e2-7c14-4001-bfb5-f127f766c71b/,Axel,,5/23/2022 0:00,15.0000000,16.0000000,43.280210000000,5.352776000000,,"Marseille, Anse de La Fausse Monnaie",26586,observation-f1ec57e2-7c14-4001-bfb5-f127f766c71b,https://biolit.fr/observations/observation-f1ec57e2-7c14-4001-bfb5-f127f766c71b/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_7455.JPG,,TRUE, +N1,26926,sortie-f1ec57e2-7c14-4001-bfb5-f127f766c71b,https://biolit.fr/sorties/sortie-f1ec57e2-7c14-4001-bfb5-f127f766c71b/,Axel,,5/23/2022 0:00,15.0000000,16.0000000,43.280210000000,5.352776000000,,"Marseille, Anse de La Fausse Monnaie",26588,observation-f1ec57e2-7c14-4001-bfb5-f127f766c71b-2,https://biolit.fr/observations/observation-f1ec57e2-7c14-4001-bfb5-f127f766c71b-2/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_7456_0.JPG,,TRUE, +N1,26926,sortie-f1ec57e2-7c14-4001-bfb5-f127f766c71b,https://biolit.fr/sorties/sortie-f1ec57e2-7c14-4001-bfb5-f127f766c71b/,Axel,,5/23/2022 0:00,15.0000000,16.0000000,43.280210000000,5.352776000000,,"Marseille, Anse de La Fausse Monnaie",26590,observation-f1ec57e2-7c14-4001-bfb5-f127f766c71b-3,https://biolit.fr/observations/observation-f1ec57e2-7c14-4001-bfb5-f127f766c71b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7469.JPG,,FALSE, +N1,26927,sortie-a76f2ae4-dda2-4d8c-9dee-ed534191ea38,https://biolit.fr/sorties/sortie-a76f2ae4-dda2-4d8c-9dee-ed534191ea38/,Institut Marin du Seaquarium,,05/05/2022,17.0000000,19.0000000,43.526009000000,4.138058000000,Institut Marin du Seaquarium,Plage du Seaquarium - Grau du Roi,26592,observation-a76f2ae4-dda2-4d8c-9dee-ed534191ea38,https://biolit.fr/observations/observation-a76f2ae4-dda2-4d8c-9dee-ed534191ea38/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220505_185211-scaled.jpg,,TRUE, +N1,26927,sortie-a76f2ae4-dda2-4d8c-9dee-ed534191ea38,https://biolit.fr/sorties/sortie-a76f2ae4-dda2-4d8c-9dee-ed534191ea38/,Institut Marin du Seaquarium,,05/05/2022,17.0000000,19.0000000,43.526009000000,4.138058000000,Institut Marin du Seaquarium,Plage du Seaquarium - Grau du Roi,26594,observation-a76f2ae4-dda2-4d8c-9dee-ed534191ea38-2,https://biolit.fr/observations/observation-a76f2ae4-dda2-4d8c-9dee-ed534191ea38-2/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220505_185254-scaled.jpg,,TRUE, +N1,26927,sortie-a76f2ae4-dda2-4d8c-9dee-ed534191ea38,https://biolit.fr/sorties/sortie-a76f2ae4-dda2-4d8c-9dee-ed534191ea38/,Institut Marin du Seaquarium,,05/05/2022,17.0000000,19.0000000,43.526009000000,4.138058000000,Institut Marin du Seaquarium,Plage du Seaquarium - Grau du Roi,26596,observation-a76f2ae4-dda2-4d8c-9dee-ed534191ea38-3,https://biolit.fr/observations/observation-a76f2ae4-dda2-4d8c-9dee-ed534191ea38-3/,Grateloupia turuturu,Grateloupe du Pacifique,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220505_185328-scaled.jpg,,TRUE, +N1,26927,sortie-a76f2ae4-dda2-4d8c-9dee-ed534191ea38,https://biolit.fr/sorties/sortie-a76f2ae4-dda2-4d8c-9dee-ed534191ea38/,Institut Marin du Seaquarium,,05/05/2022,17.0000000,19.0000000,43.526009000000,4.138058000000,Institut Marin du Seaquarium,Plage du Seaquarium - Grau du Roi,26598,observation-a76f2ae4-dda2-4d8c-9dee-ed534191ea38-4,https://biolit.fr/observations/observation-a76f2ae4-dda2-4d8c-9dee-ed534191ea38-4/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220505_185356-scaled.jpg,,TRUE, +N1,26928,sortie-6889a916-9c0e-4f29-a381-edfdcdfc1e1c,https://biolit.fr/sorties/sortie-6889a916-9c0e-4f29-a381-edfdcdfc1e1c/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284075000000,5.316336000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Esteve ",26602,observation-6889a916-9c0e-4f29-a381-edfdcdfc1e1c-2,https://biolit.fr/observations/observation-6889a916-9c0e-4f29-a381-edfdcdfc1e1c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7367.JPG,,FALSE, +N1,26928,sortie-6889a916-9c0e-4f29-a381-edfdcdfc1e1c,https://biolit.fr/sorties/sortie-6889a916-9c0e-4f29-a381-edfdcdfc1e1c/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284075000000,5.316336000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Esteve ",26604,observation-6889a916-9c0e-4f29-a381-edfdcdfc1e1c-3,https://biolit.fr/observations/observation-6889a916-9c0e-4f29-a381-edfdcdfc1e1c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7368.JPG,,FALSE, +N1,26928,sortie-6889a916-9c0e-4f29-a381-edfdcdfc1e1c,https://biolit.fr/sorties/sortie-6889a916-9c0e-4f29-a381-edfdcdfc1e1c/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284075000000,5.316336000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Esteve ",26606,observation-6889a916-9c0e-4f29-a381-edfdcdfc1e1c-4,https://biolit.fr/observations/observation-6889a916-9c0e-4f29-a381-edfdcdfc1e1c-4/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7420.JPG,,TRUE, +N1,26928,sortie-6889a916-9c0e-4f29-a381-edfdcdfc1e1c,https://biolit.fr/sorties/sortie-6889a916-9c0e-4f29-a381-edfdcdfc1e1c/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284075000000,5.316336000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Esteve ",26608,observation-6889a916-9c0e-4f29-a381-edfdcdfc1e1c-5,https://biolit.fr/observations/observation-6889a916-9c0e-4f29-a381-edfdcdfc1e1c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7369.JPG,,FALSE, +N1,26928,sortie-6889a916-9c0e-4f29-a381-edfdcdfc1e1c,https://biolit.fr/sorties/sortie-6889a916-9c0e-4f29-a381-edfdcdfc1e1c/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284075000000,5.316336000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Esteve ",26610,observation-6889a916-9c0e-4f29-a381-edfdcdfc1e1c-6,https://biolit.fr/observations/observation-6889a916-9c0e-4f29-a381-edfdcdfc1e1c-6/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7403.JPG,,TRUE, +N1,26929,sortie-b6665417-20b9-4711-902c-6fe07f0f2322,https://biolit.fr/sorties/sortie-b6665417-20b9-4711-902c-6fe07f0f2322/,Dorian ROULET,,4/14/2022 0:00,10.0:45,11.0:15,43.256004000000,5.375184000000,Planète Mer,Escale borély,26612,observation-b6665417-20b9-4711-902c-6fe07f0f2322,https://biolit.fr/observations/observation-b6665417-20b9-4711-902c-6fe07f0f2322/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8835_0-scaled.jpg,,FALSE, +N1,26930,sortie-c2c7a0a1-0128-4f1f-aa07-528ab6f603de,https://biolit.fr/sorties/sortie-c2c7a0a1-0128-4f1f-aa07-528ab6f603de/,Dorian ROULET,,4/14/2022 0:00,9.0000000,9.0000000,43.239815000000,5.362448000000,Planète Mer,Bain des Dames,26614,observation-c2c7a0a1-0128-4f1f-aa07-528ab6f603de,https://biolit.fr/observations/observation-c2c7a0a1-0128-4f1f-aa07-528ab6f603de/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8820-scaled.jpg,,FALSE, +N1,26931,sortie-ace74d8d-5578-4647-9c74-0825fefcd396,https://biolit.fr/sorties/sortie-ace74d8d-5578-4647-9c74-0825fefcd396/,Marine,,3/17/2022 0:00,14.0000000,14.0:45,43.429364000000,3.767017000000,CPIE Littoral d'Occitanie,Plage du poisson rouge,26618,observation-ace74d8d-5578-4647-9c74-0825fefcd396-2,https://biolit.fr/observations/observation-ace74d8d-5578-4647-9c74-0825fefcd396-2/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220317_145743-scaled.jpg,,TRUE, +N1,26931,sortie-ace74d8d-5578-4647-9c74-0825fefcd396,https://biolit.fr/sorties/sortie-ace74d8d-5578-4647-9c74-0825fefcd396/,Marine,,3/17/2022 0:00,14.0000000,14.0:45,43.429364000000,3.767017000000,CPIE Littoral d'Occitanie,Plage du poisson rouge,26620,observation-ace74d8d-5578-4647-9c74-0825fefcd396-3,https://biolit.fr/observations/observation-ace74d8d-5578-4647-9c74-0825fefcd396-3/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220317_145012-scaled.jpg,,TRUE, +N1,26931,sortie-ace74d8d-5578-4647-9c74-0825fefcd396,https://biolit.fr/sorties/sortie-ace74d8d-5578-4647-9c74-0825fefcd396/,Marine,,3/17/2022 0:00,14.0000000,14.0:45,43.429364000000,3.767017000000,CPIE Littoral d'Occitanie,Plage du poisson rouge,26622,observation-ace74d8d-5578-4647-9c74-0825fefcd396-4,https://biolit.fr/observations/observation-ace74d8d-5578-4647-9c74-0825fefcd396-4/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220317_145431-scaled.jpg,,TRUE, +N1,26931,sortie-ace74d8d-5578-4647-9c74-0825fefcd396,https://biolit.fr/sorties/sortie-ace74d8d-5578-4647-9c74-0825fefcd396/,Marine,,3/17/2022 0:00,14.0000000,14.0:45,43.429364000000,3.767017000000,CPIE Littoral d'Occitanie,Plage du poisson rouge,26624,observation-ace74d8d-5578-4647-9c74-0825fefcd396-5,https://biolit.fr/observations/observation-ace74d8d-5578-4647-9c74-0825fefcd396-5/,Ficopomatus enigmaticus,Cascail,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220317_151747-scaled.jpg,,TRUE, +N1,26932,sortie-1c253b21-cf3c-4f2c-ac64-af56e98489db,https://biolit.fr/sorties/sortie-1c253b21-cf3c-4f2c-ac64-af56e98489db/,Marine,,12/14/2021 0:00,15.0000000,15.0:15,43.240920000,5.362098000000,Planète Mer,Plage du bain des dames,26626,observation-1c253b21-cf3c-4f2c-ac64-af56e98489db,https://biolit.fr/observations/observation-1c253b21-cf3c-4f2c-ac64-af56e98489db/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211214_154927_compress70-scaled.jpg,,TRUE, +N1,26932,sortie-1c253b21-cf3c-4f2c-ac64-af56e98489db,https://biolit.fr/sorties/sortie-1c253b21-cf3c-4f2c-ac64-af56e98489db/,Marine,,12/14/2021 0:00,15.0000000,15.0:15,43.240920000,5.362098000000,Planète Mer,Plage du bain des dames,26628,observation-1c253b21-cf3c-4f2c-ac64-af56e98489db-2,https://biolit.fr/observations/observation-1c253b21-cf3c-4f2c-ac64-af56e98489db-2/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211214_154901_compress17-scaled.jpg,,TRUE, +N1,26933,sortie-53a60d6c-4b0b-4bf2-8201-235750bf70b7,https://biolit.fr/sorties/sortie-53a60d6c-4b0b-4bf2-8201-235750bf70b7/,AIEJE,,12/14/2021 0:00,17.0000000,19.0000000,43.32839200000,5.054981000000,AIEJE,Plage de la vieille Couronne,26630,observation-53a60d6c-4b0b-4bf2-8201-235750bf70b7,https://biolit.fr/observations/observation-53a60d6c-4b0b-4bf2-8201-235750bf70b7/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1636[1]-scaled.jpg,,TRUE, +N1,26933,sortie-53a60d6c-4b0b-4bf2-8201-235750bf70b7,https://biolit.fr/sorties/sortie-53a60d6c-4b0b-4bf2-8201-235750bf70b7/,AIEJE,,12/14/2021 0:00,17.0000000,19.0000000,43.32839200000,5.054981000000,AIEJE,Plage de la vieille Couronne,26632,observation-53a60d6c-4b0b-4bf2-8201-235750bf70b7-2,https://biolit.fr/observations/observation-53a60d6c-4b0b-4bf2-8201-235750bf70b7-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1637[1]-scaled.jpg,,TRUE, +N1,26933,sortie-53a60d6c-4b0b-4bf2-8201-235750bf70b7,https://biolit.fr/sorties/sortie-53a60d6c-4b0b-4bf2-8201-235750bf70b7/,AIEJE,,12/14/2021 0:00,17.0000000,19.0000000,43.32839200000,5.054981000000,AIEJE,Plage de la vieille Couronne,26634,observation-53a60d6c-4b0b-4bf2-8201-235750bf70b7-3,https://biolit.fr/observations/observation-53a60d6c-4b0b-4bf2-8201-235750bf70b7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1642[1]-scaled.jpg,,FALSE, +N1,26933,sortie-53a60d6c-4b0b-4bf2-8201-235750bf70b7,https://biolit.fr/sorties/sortie-53a60d6c-4b0b-4bf2-8201-235750bf70b7/,AIEJE,,12/14/2021 0:00,17.0000000,19.0000000,43.32839200000,5.054981000000,AIEJE,Plage de la vieille Couronne,26636,observation-53a60d6c-4b0b-4bf2-8201-235750bf70b7-4,https://biolit.fr/observations/observation-53a60d6c-4b0b-4bf2-8201-235750bf70b7-4/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_1639[1]-scaled.jpg,,TRUE, +N1,26934,sortie-469bd302-7490-4dd5-8aa0-74a2a648137f,https://biolit.fr/sorties/sortie-469bd302-7490-4dd5-8aa0-74a2a648137f/,Dorian ROULET,,11/26/2021 0:00,10.0000000,10.0000000,43.280582000000,5.353050000000,Planète Mer,Anse de la fausse monnaie,26638,observation-469bd302-7490-4dd5-8aa0-74a2a648137f,https://biolit.fr/observations/observation-469bd302-7490-4dd5-8aa0-74a2a648137f/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20211102090640_1-scaled.jpg,,FALSE, +N1,26935,sortie-2ffa3ca7-2d9f-4ec3-ac0f-28df8cce43ed,https://biolit.fr/sorties/sortie-2ffa3ca7-2d9f-4ec3-ac0f-28df8cce43ed/,Marine,,9/18/2021 0:00,9.0000000,10.0000000,43.214893000000,5.343016000000,Planète Mer,Anse de la maronaise,26640,observation-2ffa3ca7-2d9f-4ec3-ac0f-28df8cce43ed,https://biolit.fr/observations/observation-2ffa3ca7-2d9f-4ec3-ac0f-28df8cce43ed/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210918_094042-scaled.jpg,,FALSE, +N1,26935,sortie-2ffa3ca7-2d9f-4ec3-ac0f-28df8cce43ed,https://biolit.fr/sorties/sortie-2ffa3ca7-2d9f-4ec3-ac0f-28df8cce43ed/,Marine,,9/18/2021 0:00,9.0000000,10.0000000,43.214893000000,5.343016000000,Planète Mer,Anse de la maronaise,26642,observation-2ffa3ca7-2d9f-4ec3-ac0f-28df8cce43ed-2,https://biolit.fr/observations/observation-2ffa3ca7-2d9f-4ec3-ac0f-28df8cce43ed-2/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210918_094022-scaled.jpg,,TRUE, +N1,26936,sortie-8a1f86b7-7956-4472-9a08-64fc4fc91ef3,https://biolit.fr/sorties/sortie-8a1f86b7-7956-4472-9a08-64fc4fc91ef3/,Eric barbier,,09/10/2021,8.0:45,12.0:45,49.42473800000,0.213508000000,,honfleur plage,26658,observation-8a1f86b7-7956-4472-9a08-64fc4fc91ef3-8,https://biolit.fr/observations/observation-8a1f86b7-7956-4472-9a08-64fc4fc91ef3-8/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/plante piquante-rotated.jpg,,TRUE, +N1,26937,sortie-80f344bf-e6ca-419c-b95a-d30466c54e29,https://biolit.fr/sorties/sortie-80f344bf-e6ca-419c-b95a-d30466c54e29/,Eric barbier,,09/10/2021,8.0:45,12.0:45,49.42473800000,0.213508000000,,honfleur plage,26666,observation-80f344bf-e6ca-419c-b95a-d30466c54e29,https://biolit.fr/observations/observation-80f344bf-e6ca-419c-b95a-d30466c54e29/,Chrysaora hysoscella,Méduse rayonnée,,https://biolit.fr/wp-content/uploads/2023/07/méduse_0.jpg,,TRUE, +N1,26937,sortie-80f344bf-e6ca-419c-b95a-d30466c54e29,https://biolit.fr/sorties/sortie-80f344bf-e6ca-419c-b95a-d30466c54e29/,Eric barbier,,09/10/2021,8.0:45,12.0:45,49.42473800000,0.213508000000,,honfleur plage,26667,observation-80f344bf-e6ca-419c-b95a-d30466c54e29-2,https://biolit.fr/observations/observation-80f344bf-e6ca-419c-b95a-d30466c54e29-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabe rose-rotated.jpg,,FALSE, +N1,26937,sortie-80f344bf-e6ca-419c-b95a-d30466c54e29,https://biolit.fr/sorties/sortie-80f344bf-e6ca-419c-b95a-d30466c54e29/,Eric barbier,,09/10/2021,8.0:45,12.0:45,49.42473800000,0.213508000000,,honfleur plage,26668,observation-80f344bf-e6ca-419c-b95a-d30466c54e29-3,https://biolit.fr/observations/observation-80f344bf-e6ca-419c-b95a-d30466c54e29-3/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/algue jaune-rotated.jpg,,TRUE, +N1,26937,sortie-80f344bf-e6ca-419c-b95a-d30466c54e29,https://biolit.fr/sorties/sortie-80f344bf-e6ca-419c-b95a-d30466c54e29/,Eric barbier,,09/10/2021,8.0:45,12.0:45,49.42473800000,0.213508000000,,honfleur plage,26669,observation-80f344bf-e6ca-419c-b95a-d30466c54e29-4,https://biolit.fr/observations/observation-80f344bf-e6ca-419c-b95a-d30466c54e29-4/,Ensis ensis,Couteau-sabre,,https://biolit.fr/wp-content/uploads/2023/07/couteau-rotated.jpg,,TRUE, +N1,26937,sortie-80f344bf-e6ca-419c-b95a-d30466c54e29,https://biolit.fr/sorties/sortie-80f344bf-e6ca-419c-b95a-d30466c54e29/,Eric barbier,,09/10/2021,8.0:45,12.0:45,49.42473800000,0.213508000000,,honfleur plage,26670,observation-80f344bf-e6ca-419c-b95a-d30466c54e29-5,https://biolit.fr/observations/observation-80f344bf-e6ca-419c-b95a-d30466c54e29-5/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/goemon-rotated.jpg,,TRUE, +N1,26937,sortie-80f344bf-e6ca-419c-b95a-d30466c54e29,https://biolit.fr/sorties/sortie-80f344bf-e6ca-419c-b95a-d30466c54e29/,Eric barbier,,09/10/2021,8.0:45,12.0:45,49.42473800000,0.213508000000,,honfleur plage,26671,observation-80f344bf-e6ca-419c-b95a-d30466c54e29-6,https://biolit.fr/observations/observation-80f344bf-e6ca-419c-b95a-d30466c54e29-6/,Honckenya peploides,Pourpier de mer,,https://biolit.fr/wp-content/uploads/2023/07/plante verte-rotated.jpg,,TRUE, +N1,26937,sortie-80f344bf-e6ca-419c-b95a-d30466c54e29,https://biolit.fr/sorties/sortie-80f344bf-e6ca-419c-b95a-d30466c54e29/,Eric barbier,,09/10/2021,8.0:45,12.0:45,49.42473800000,0.213508000000,,honfleur plage,26672,observation-80f344bf-e6ca-419c-b95a-d30466c54e29-7,https://biolit.fr/observations/observation-80f344bf-e6ca-419c-b95a-d30466c54e29-7/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/chapeau chinois-rotated.jpg,,TRUE, +N1,26937,sortie-80f344bf-e6ca-419c-b95a-d30466c54e29,https://biolit.fr/sorties/sortie-80f344bf-e6ca-419c-b95a-d30466c54e29/,Eric barbier,,09/10/2021,8.0:45,12.0:45,49.42473800000,0.213508000000,,honfleur plage,26673,observation-80f344bf-e6ca-419c-b95a-d30466c54e29-8,https://biolit.fr/observations/observation-80f344bf-e6ca-419c-b95a-d30466c54e29-8/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/plante piquante-rotated.jpg,,TRUE, +N1,26937,sortie-80f344bf-e6ca-419c-b95a-d30466c54e29,https://biolit.fr/sorties/sortie-80f344bf-e6ca-419c-b95a-d30466c54e29/,Eric barbier,,09/10/2021,8.0:45,12.0:45,49.42473800000,0.213508000000,,honfleur plage,26674,observation-80f344bf-e6ca-419c-b95a-d30466c54e29-9,https://biolit.fr/observations/observation-80f344bf-e6ca-419c-b95a-d30466c54e29-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/plante rouge et petits trous ds sable-rotated.jpg,,FALSE, +N1,26937,sortie-80f344bf-e6ca-419c-b95a-d30466c54e29,https://biolit.fr/sorties/sortie-80f344bf-e6ca-419c-b95a-d30466c54e29/,Eric barbier,,09/10/2021,8.0:45,12.0:45,49.42473800000,0.213508000000,,honfleur plage,26675,observation-80f344bf-e6ca-419c-b95a-d30466c54e29-10,https://biolit.fr/observations/observation-80f344bf-e6ca-419c-b95a-d30466c54e29-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/oiseau echassier chevalier sylvain peut etre-rotated.jpg,,FALSE, +N1,26937,sortie-80f344bf-e6ca-419c-b95a-d30466c54e29,https://biolit.fr/sorties/sortie-80f344bf-e6ca-419c-b95a-d30466c54e29/,Eric barbier,,09/10/2021,8.0:45,12.0:45,49.42473800000,0.213508000000,,honfleur plage,26676,observation-80f344bf-e6ca-419c-b95a-d30466c54e29-11,https://biolit.fr/observations/observation-80f344bf-e6ca-419c-b95a-d30466c54e29-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/monticules de sables et petits trous-rotated.jpg,,FALSE, +N1,26938,sortie-3aa471b3-cef4-4550-a43e-f39bc9929001,https://biolit.fr/sorties/sortie-3aa471b3-cef4-4550-a43e-f39bc9929001/,Marine,,09/04/2021,10.0000000,10.0000000,43.256458000000,5.375144000000,Planète Mer,Plage borely,26677,observation-3aa471b3-cef4-4550-a43e-f39bc9929001,https://biolit.fr/observations/observation-3aa471b3-cef4-4550-a43e-f39bc9929001/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_07041.jpg,,FALSE, +N1,26938,sortie-3aa471b3-cef4-4550-a43e-f39bc9929001,https://biolit.fr/sorties/sortie-3aa471b3-cef4-4550-a43e-f39bc9929001/,Marine,,09/04/2021,10.0000000,10.0000000,43.256458000000,5.375144000000,Planète Mer,Plage borely,26679,observation-3aa471b3-cef4-4550-a43e-f39bc9929001-2,https://biolit.fr/observations/observation-3aa471b3-cef4-4550-a43e-f39bc9929001-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_07061.jpg,,FALSE, +N1,26938,sortie-3aa471b3-cef4-4550-a43e-f39bc9929001,https://biolit.fr/sorties/sortie-3aa471b3-cef4-4550-a43e-f39bc9929001/,Marine,,09/04/2021,10.0000000,10.0000000,43.256458000000,5.375144000000,Planète Mer,Plage borely,26681,observation-3aa471b3-cef4-4550-a43e-f39bc9929001-3,https://biolit.fr/observations/observation-3aa471b3-cef4-4550-a43e-f39bc9929001-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_07051.jpg,,FALSE, +N1,26939,sortie-5e26689d-14e4-4400-b787-41e033344c71,https://biolit.fr/sorties/sortie-5e26689d-14e4-4400-b787-41e033344c71/,fl0r3nt,,09/02/2021,18.0000000,20.0000000,35.225921000000,23.682848000000,,"Paleochora, Crète",26683,observation-5e26689d-14e4-4400-b787-41e033344c71,https://biolit.fr/observations/observation-5e26689d-14e4-4400-b787-41e033344c71/,Pterois volitans/miles,Rascasse volante du Pacifique/de l'océan Indien,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20210902-WA0003.jpg,,TRUE, +N1,26940,sortie-c185be23-4cc5-4dd5-bcc7-fa3e6d750326,https://biolit.fr/sorties/sortie-c185be23-4cc5-4dd5-bcc7-fa3e6d750326/,doudou76,,7/27/2021 0:00,9.0000000,16.0000000,49.646131000000,0.153191000000,,plage de st jouin de bruneval,26685,observation-c185be23-4cc5-4dd5-bcc7-fa3e6d750326,https://biolit.fr/observations/observation-c185be23-4cc5-4dd5-bcc7-fa3e6d750326/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/20210803_114431-scaled.jpg,,TRUE, +N1,26941,sortie-b82f8297-ac4f-4156-9747-7ce096ede31f,https://biolit.fr/sorties/sortie-b82f8297-ac4f-4156-9747-7ce096ede31f/,Marine,,06/04/2021,14.0000000,14.0000000,43.209479000000,5.372424000000,Planète Mer,Calanques de Marseilleveyre,26687,observation-b82f8297-ac4f-4156-9747-7ce096ede31f,https://biolit.fr/observations/observation-b82f8297-ac4f-4156-9747-7ce096ede31f/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210604_132725_compress68-scaled.jpg,,TRUE, +N1,26941,sortie-b82f8297-ac4f-4156-9747-7ce096ede31f,https://biolit.fr/sorties/sortie-b82f8297-ac4f-4156-9747-7ce096ede31f/,Marine,,06/04/2021,14.0000000,14.0000000,43.209479000000,5.372424000000,Planète Mer,Calanques de Marseilleveyre,26689,observation-b82f8297-ac4f-4156-9747-7ce096ede31f-2,https://biolit.fr/observations/observation-b82f8297-ac4f-4156-9747-7ce096ede31f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210604_132355_compress23-scaled.jpg,,FALSE, +N1,26941,sortie-b82f8297-ac4f-4156-9747-7ce096ede31f,https://biolit.fr/sorties/sortie-b82f8297-ac4f-4156-9747-7ce096ede31f/,Marine,,06/04/2021,14.0000000,14.0000000,43.209479000000,5.372424000000,Planète Mer,Calanques de Marseilleveyre,26691,observation-b82f8297-ac4f-4156-9747-7ce096ede31f-3,https://biolit.fr/observations/observation-b82f8297-ac4f-4156-9747-7ce096ede31f-3/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210604_132425_compress20-scaled.jpg,,TRUE, +N1,26941,sortie-b82f8297-ac4f-4156-9747-7ce096ede31f,https://biolit.fr/sorties/sortie-b82f8297-ac4f-4156-9747-7ce096ede31f/,Marine,,06/04/2021,14.0000000,14.0000000,43.209479000000,5.372424000000,Planète Mer,Calanques de Marseilleveyre,26693,observation-b82f8297-ac4f-4156-9747-7ce096ede31f-4,https://biolit.fr/observations/observation-b82f8297-ac4f-4156-9747-7ce096ede31f-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210604_132716_compress69-scaled.jpg,,FALSE, +N1,26941,sortie-b82f8297-ac4f-4156-9747-7ce096ede31f,https://biolit.fr/sorties/sortie-b82f8297-ac4f-4156-9747-7ce096ede31f/,Marine,,06/04/2021,14.0000000,14.0000000,43.209479000000,5.372424000000,Planète Mer,Calanques de Marseilleveyre,26695,observation-b82f8297-ac4f-4156-9747-7ce096ede31f-5,https://biolit.fr/observations/observation-b82f8297-ac4f-4156-9747-7ce096ede31f-5/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210604_132203_compress49-scaled.jpg,,TRUE, +N1,26942,sortie-ac6fe086-6c77-4697-8338-7c42b90b33de,https://biolit.fr/sorties/sortie-ac6fe086-6c77-4697-8338-7c42b90b33de/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209559000000,5.372684000000,,"Marseille, Parc National des Calanques",26697,observation-ac6fe086-6c77-4697-8338-7c42b90b33de,https://biolit.fr/observations/observation-ac6fe086-6c77-4697-8338-7c42b90b33de/,Carpobrotus acinaciformis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6877-scaled.jpg,,TRUE, +N1,26942,sortie-ac6fe086-6c77-4697-8338-7c42b90b33de,https://biolit.fr/sorties/sortie-ac6fe086-6c77-4697-8338-7c42b90b33de/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209559000000,5.372684000000,,"Marseille, Parc National des Calanques",26699,observation-ac6fe086-6c77-4697-8338-7c42b90b33de-2,https://biolit.fr/observations/observation-ac6fe086-6c77-4697-8338-7c42b90b33de-2/,Carpobrotus acinaciformis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6878-scaled.jpg,,TRUE, +N1,26942,sortie-ac6fe086-6c77-4697-8338-7c42b90b33de,https://biolit.fr/sorties/sortie-ac6fe086-6c77-4697-8338-7c42b90b33de/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209559000000,5.372684000000,,"Marseille, Parc National des Calanques",26701,observation-ac6fe086-6c77-4697-8338-7c42b90b33de-3,https://biolit.fr/observations/observation-ac6fe086-6c77-4697-8338-7c42b90b33de-3/,Alca torda,Pingouin torda,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6882-scaled.jpeg,,TRUE, +N1,26942,sortie-ac6fe086-6c77-4697-8338-7c42b90b33de,https://biolit.fr/sorties/sortie-ac6fe086-6c77-4697-8338-7c42b90b33de/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209559000000,5.372684000000,,"Marseille, Parc National des Calanques",26702,observation-ac6fe086-6c77-4697-8338-7c42b90b33de-4,https://biolit.fr/observations/observation-ac6fe086-6c77-4697-8338-7c42b90b33de-4/,Opuntia ficus,Figuier de barbarie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6944-scaled.jpg,,TRUE, +N1,26942,sortie-ac6fe086-6c77-4697-8338-7c42b90b33de,https://biolit.fr/sorties/sortie-ac6fe086-6c77-4697-8338-7c42b90b33de/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209559000000,5.372684000000,,"Marseille, Parc National des Calanques",26704,observation-ac6fe086-6c77-4697-8338-7c42b90b33de-5,https://biolit.fr/observations/observation-ac6fe086-6c77-4697-8338-7c42b90b33de-5/,Opuntia ficus,Figuier de barbarie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6945-scaled.jpg,,TRUE, +N1,26943,sortie-482824bc-81e7-4fa0-a081-cdcacc0ae67b,https://biolit.fr/sorties/sortie-482824bc-81e7-4fa0-a081-cdcacc0ae67b/,Pierre Corbrion,,3/24/2021 0:00,14.0000000,16.0000000,48.673413000000,-1.847984000000,,Cancale,26706,observation-482824bc-81e7-4fa0-a081-cdcacc0ae67b,https://biolit.fr/observations/observation-482824bc-81e7-4fa0-a081-cdcacc0ae67b/,Diadumene lineata,Anémone asiatique lignée,,https://biolit.fr/wp-content/uploads/2023/07/P3242215-scaled.jpg,,TRUE, +N1,26943,sortie-482824bc-81e7-4fa0-a081-cdcacc0ae67b,https://biolit.fr/sorties/sortie-482824bc-81e7-4fa0-a081-cdcacc0ae67b/,Pierre Corbrion,,3/24/2021 0:00,14.0000000,16.0000000,48.673413000000,-1.847984000000,,Cancale,26708,observation-482824bc-81e7-4fa0-a081-cdcacc0ae67b-2,https://biolit.fr/observations/observation-482824bc-81e7-4fa0-a081-cdcacc0ae67b-2/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P3242179-scaled.jpg,,TRUE, +N1,26943,sortie-482824bc-81e7-4fa0-a081-cdcacc0ae67b,https://biolit.fr/sorties/sortie-482824bc-81e7-4fa0-a081-cdcacc0ae67b/,Pierre Corbrion,,3/24/2021 0:00,14.0000000,16.0000000,48.673413000000,-1.847984000000,,Cancale,26710,observation-482824bc-81e7-4fa0-a081-cdcacc0ae67b-3,https://biolit.fr/observations/observation-482824bc-81e7-4fa0-a081-cdcacc0ae67b-3/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P3242252-scaled.jpg,,TRUE, +N1,26944,sortie-aeebffaf-7d89-483b-b46f-cf49f9d3ca5f,https://biolit.fr/sorties/sortie-aeebffaf-7d89-483b-b46f-cf49f9d3ca5f/,Pierre Corbrion,,1/28/2021 0:00,17.0000000,18.0000000,48.57181900000,-1.9806520000,,Saint-Suliac,26712,observation-aeebffaf-7d89-483b-b46f-cf49f9d3ca5f,https://biolit.fr/observations/observation-aeebffaf-7d89-483b-b46f-cf49f9d3ca5f/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/P1280493.jpg,,TRUE, +N1,26945,sortie-c271b19f-584b-4ae9-918d-c2053250d768,https://biolit.fr/sorties/sortie-c271b19f-584b-4ae9-918d-c2053250d768/,Pierre Corbrion,,01/10/2021,14.0000000,18.0:25,48.579428000000,-1.967720000000,,Les Guettes,26714,observation-c271b19f-584b-4ae9-918d-c2053250d768,https://biolit.fr/observations/observation-c271b19f-584b-4ae9-918d-c2053250d768/,Ficopomatus enigmaticus,Cascail,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1102160-scaled.jpg,,TRUE, +N1,26946,sortie-f4c9243f-32ab-46c7-9818-10f9204cfe9d,https://biolit.fr/sorties/sortie-f4c9243f-32ab-46c7-9818-10f9204cfe9d/,Atlantique Landes Recifs,,7/31/2018 0:00,10.0000000,12.0000000,43.782356000000,-1.410108000000,,"lac de Port d'Albret, Vieux Boucau",26716,observation-f4c9243f-32ab-46c7-9818-10f9204cfe9d,https://biolit.fr/observations/observation-f4c9243f-32ab-46c7-9818-10f9204cfe9d/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/crabe sanguin (2)-scaled.jpg,,TRUE, +N1,26947,sortie-10e30021-ab51-428c-93ee-024d77db7e91,https://biolit.fr/sorties/sortie-10e30021-ab51-428c-93ee-024d77db7e91/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0000000,11.0000000,43.173936000000,3.192209000000,,Saint-Pierre la mer,26718,observation-10e30021-ab51-428c-93ee-024d77db7e91,https://biolit.fr/observations/observation-10e30021-ab51-428c-93ee-024d77db7e91/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/etrille gros plan.JPG,,TRUE, +N1,26948,sortie-60906797-2dc2-439b-b42a-714b3f7a0a97,https://biolit.fr/sorties/sortie-60906797-2dc2-439b-b42a-714b3f7a0a97/,polig,,6/19/2018 0:00,16.0000000,16.0000000,48.677211000000,-4.346523000000,,brignogan pointe de pontusval,26720,observation-60906797-2dc2-439b-b42a-714b3f7a0a97,https://biolit.fr/observations/observation-60906797-2dc2-439b-b42a-714b3f7a0a97/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0271_0.jpg,,TRUE, +N1,26948,sortie-60906797-2dc2-439b-b42a-714b3f7a0a97,https://biolit.fr/sorties/sortie-60906797-2dc2-439b-b42a-714b3f7a0a97/,polig,,6/19/2018 0:00,16.0000000,16.0000000,48.677211000000,-4.346523000000,,brignogan pointe de pontusval,26722,observation-60906797-2dc2-439b-b42a-714b3f7a0a97-2,https://biolit.fr/observations/observation-60906797-2dc2-439b-b42a-714b3f7a0a97-2/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/P1190374.jpg,,TRUE, +N1,26948,sortie-60906797-2dc2-439b-b42a-714b3f7a0a97,https://biolit.fr/sorties/sortie-60906797-2dc2-439b-b42a-714b3f7a0a97/,polig,,6/19/2018 0:00,16.0000000,16.0000000,48.677211000000,-4.346523000000,,brignogan pointe de pontusval,26724,observation-60906797-2dc2-439b-b42a-714b3f7a0a97-3,https://biolit.fr/observations/observation-60906797-2dc2-439b-b42a-714b3f7a0a97-3/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/P1190377.jpg,,TRUE, +N1,26948,sortie-60906797-2dc2-439b-b42a-714b3f7a0a97,https://biolit.fr/sorties/sortie-60906797-2dc2-439b-b42a-714b3f7a0a97/,polig,,6/19/2018 0:00,16.0000000,16.0000000,48.677211000000,-4.346523000000,,brignogan pointe de pontusval,26726,observation-60906797-2dc2-439b-b42a-714b3f7a0a97-4,https://biolit.fr/observations/observation-60906797-2dc2-439b-b42a-714b3f7a0a97-4/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/P1190375.jpg,,TRUE, +N1,26949,sortie-ca54a38c-bd3c-4821-8a30-4eb84971cf40,https://biolit.fr/sorties/sortie-ca54a38c-bd3c-4821-8a30-4eb84971cf40/,polig,,06/12/2018,14.0000000,16.0000000,47.798899000000,-4.347513000000,,plage du ster kerity penmarc'h,26728,observation-ca54a38c-bd3c-4821-8a30-4eb84971cf40,https://biolit.fr/observations/observation-ca54a38c-bd3c-4821-8a30-4eb84971cf40/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0264_0.JPG,,TRUE, +N1,26949,sortie-ca54a38c-bd3c-4821-8a30-4eb84971cf40,https://biolit.fr/sorties/sortie-ca54a38c-bd3c-4821-8a30-4eb84971cf40/,polig,,06/12/2018,14.0000000,16.0000000,47.798899000000,-4.347513000000,,plage du ster kerity penmarc'h,26730,observation-ca54a38c-bd3c-4821-8a30-4eb84971cf40-2,https://biolit.fr/observations/observation-ca54a38c-bd3c-4821-8a30-4eb84971cf40-2/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0266.JPG,,TRUE, +N1,26949,sortie-ca54a38c-bd3c-4821-8a30-4eb84971cf40,https://biolit.fr/sorties/sortie-ca54a38c-bd3c-4821-8a30-4eb84971cf40/,polig,,06/12/2018,14.0000000,16.0000000,47.798899000000,-4.347513000000,,plage du ster kerity penmarc'h,26732,observation-ca54a38c-bd3c-4821-8a30-4eb84971cf40-3,https://biolit.fr/observations/observation-ca54a38c-bd3c-4821-8a30-4eb84971cf40-3/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0267.JPG,,TRUE, +N1,26949,sortie-ca54a38c-bd3c-4821-8a30-4eb84971cf40,https://biolit.fr/sorties/sortie-ca54a38c-bd3c-4821-8a30-4eb84971cf40/,polig,,06/12/2018,14.0000000,16.0000000,47.798899000000,-4.347513000000,,plage du ster kerity penmarc'h,26734,observation-ca54a38c-bd3c-4821-8a30-4eb84971cf40-4,https://biolit.fr/observations/observation-ca54a38c-bd3c-4821-8a30-4eb84971cf40-4/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0250-scaled.jpg,,TRUE, +N1,26950,sortie-066abc00-297e-46fd-8401-1ccb0fb45478,https://biolit.fr/sorties/sortie-066abc00-297e-46fd-8401-1ccb0fb45478/,Club subaquatique Narbonnais,,4/28/2018 0:00,11.0000000,11.0000000,43.174676000000,3.19136100000,,Saint-Pierre la mer,26736,observation-066abc00-297e-46fd-8401-1ccb0fb45478,https://biolit.fr/observations/observation-066abc00-297e-46fd-8401-1ccb0fb45478/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/face etrille.jpg,,TRUE, +N1,26951,sortie-51470d28-4850-4867-a065-dc756bd38cc3,https://biolit.fr/sorties/sortie-51470d28-4850-4867-a065-dc756bd38cc3/,ESTRAN Cité de la Mer,,11/03/2017,12.0000000,14.0000000,49.900196000000,0.870033000000,,Saint Aubin sur mer,26738,observation-51470d28-4850-4867-a065-dc756bd38cc3,https://biolit.fr/observations/observation-51470d28-4850-4867-a065-dc756bd38cc3/,Callinectes sapidus,Crabe bleu américain,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20171026 crabe bleu.jpg,,TRUE, +N1,26952,sortie-4dc04b23-c4e4-428a-ad66-812479b10c02,https://biolit.fr/sorties/sortie-4dc04b23-c4e4-428a-ad66-812479b10c02/,CarpeDiem,,8/13/2017 0:00,17.0000000,18.0000000,42.963036000000,9.347707000000,,"centuri, petite crique",26740,observation-4dc04b23-c4e4-428a-ad66-812479b10c02,https://biolit.fr/observations/observation-4dc04b23-c4e4-428a-ad66-812479b10c02/,,,,https://biolit.fr/wp-content/uploads/2023/07/Caulerpa racemosa_2-scaled.jpg,,FALSE, +N1,26953,sortie-5353e131-68de-4d4e-9c1d-3b8377c59d29,https://biolit.fr/sorties/sortie-5353e131-68de-4d4e-9c1d-3b8377c59d29/,ESTRAN Cité de la Mer,,05/04/2017,14.0000000,15.0000000,49.92533200000,1.059940000000,,Dieppe,26742,observation-5353e131-68de-4d4e-9c1d-3b8377c59d29,https://biolit.fr/observations/observation-5353e131-68de-4d4e-9c1d-3b8377c59d29/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20170504_151500-scaled.jpg,,TRUE, +N1,26953,sortie-5353e131-68de-4d4e-9c1d-3b8377c59d29,https://biolit.fr/sorties/sortie-5353e131-68de-4d4e-9c1d-3b8377c59d29/,ESTRAN Cité de la Mer,,05/04/2017,14.0000000,15.0000000,49.92533200000,1.059940000000,,Dieppe,26744,observation-5353e131-68de-4d4e-9c1d-3b8377c59d29-2,https://biolit.fr/observations/observation-5353e131-68de-4d4e-9c1d-3b8377c59d29-2/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20170504_151502-scaled.jpg,,TRUE, +N1,26953,sortie-5353e131-68de-4d4e-9c1d-3b8377c59d29,https://biolit.fr/sorties/sortie-5353e131-68de-4d4e-9c1d-3b8377c59d29/,ESTRAN Cité de la Mer,,05/04/2017,14.0000000,15.0000000,49.92533200000,1.059940000000,,Dieppe,26746,observation-5353e131-68de-4d4e-9c1d-3b8377c59d29-3,https://biolit.fr/observations/observation-5353e131-68de-4d4e-9c1d-3b8377c59d29-3/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20170504_151505-scaled.jpg,,TRUE, +N1,26954,sortie-15617f25-94ec-4b16-8a26-4814bdf0dde1,https://biolit.fr/sorties/sortie-15617f25-94ec-4b16-8a26-4814bdf0dde1/,Joaronchin,,02/06/2017,16.0000000,18.0000000,43.33248300000,5.197407000000,,ensuès-la-redonne,26748,observation-15617f25-94ec-4b16-8a26-4814bdf0dde1,https://biolit.fr/observations/observation-15617f25-94ec-4b16-8a26-4814bdf0dde1/,Xantho poressa,Xanthe de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/photo 4_5-scaled.jpg,,TRUE, +N1,26955,sortie-4436423a-6a15-481e-8019-beaa3e913127,https://biolit.fr/sorties/sortie-4436423a-6a15-481e-8019-beaa3e913127/,Marine,,9/17/2016 0:00,9.0000000,11.0000000,43.236201000000,5.359857000000,,Plage de la bonne brise,26750,observation-4436423a-6a15-481e-8019-beaa3e913127,https://biolit.fr/observations/observation-4436423a-6a15-481e-8019-beaa3e913127/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_1727.JPG,,TRUE, +N1,26956,sortie-9d4144ca-dc2a-418e-8226-aec970919b51,https://biolit.fr/sorties/sortie-9d4144ca-dc2a-418e-8226-aec970919b51/,MouleFrite,,10/10/2016,9.0000000,11.0000000,43.041809000000,6.150299000000,,Giens,26752,observation-9d4144ca-dc2a-418e-8226-aec970919b51,https://biolit.fr/observations/observation-9d4144ca-dc2a-418e-8226-aec970919b51/,Opuntia ficus,Figuier de barbarie,,https://biolit.fr/wp-content/uploads/2023/07/barbarie.jpg,,TRUE, +N1,26957,sortie-2f997430-5d4e-4300-9637-1e44e64a2e4c,https://biolit.fr/sorties/sortie-2f997430-5d4e-4300-9637-1e44e64a2e4c/,ecole publique CAVALIERE,,9/23/2016 0:00,9.0000000,12.0000000,43.129395000000,6.372268000000,, Cavalière LE LAVANDOU,26754,observation-2f997430-5d4e-4300-9637-1e44e64a2e4c,https://biolit.fr/observations/observation-2f997430-5d4e-4300-9637-1e44e64a2e4c/,,,,https://biolit.fr/wp-content/uploads/2023/07/P9180053-scaled.jpg,,FALSE, +N1,26958,sortie-816ee021-805c-46de-a26d-c68794e1802b,https://biolit.fr/sorties/sortie-816ee021-805c-46de-a26d-c68794e1802b/,Ecole de la mer,,4/18/2016 0:00,10.0000000,12.0000000,16.213029000000,-61.536544000000,,Pointe à Pitre,26756,observation-816ee021-805c-46de-a26d-c68794e1802b,https://biolit.fr/observations/observation-816ee021-805c-46de-a26d-c68794e1802b/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2016-04-18 à 16.41.26.png,,FALSE, +N1,26959,sortie-e6b6e1a5-9ad9-4903-a52b-3b21e3b8295d,https://biolit.fr/sorties/sortie-e6b6e1a5-9ad9-4903-a52b-3b21e3b8295d/,Ecole de la mer,,3/21/2016 0:00,9.0:45,10.0000000,16.215741000000,-61.537509000000,,Ilet cochons ,26758,observation-e6b6e1a5-9ad9-4903-a52b-3b21e3b8295d,https://biolit.fr/observations/observation-e6b6e1a5-9ad9-4903-a52b-3b21e3b8295d/,,,,https://biolit.fr/wp-content/uploads/2023/07/GOPR1924.JPG,,FALSE, +N1,26959,sortie-e6b6e1a5-9ad9-4903-a52b-3b21e3b8295d,https://biolit.fr/sorties/sortie-e6b6e1a5-9ad9-4903-a52b-3b21e3b8295d/,Ecole de la mer,,3/21/2016 0:00,9.0:45,10.0000000,16.215741000000,-61.537509000000,,Ilet cochons ,26760,observation-e6b6e1a5-9ad9-4903-a52b-3b21e3b8295d-2,https://biolit.fr/observations/observation-e6b6e1a5-9ad9-4903-a52b-3b21e3b8295d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/GOPR1961-001.JPG,,FALSE, +N1,26960,sortie-d0dd4380-4131-4b13-8851-e4d9786c1871,https://biolit.fr/sorties/sortie-d0dd4380-4131-4b13-8851-e4d9786c1871/,Centre de Découverte Mer et Montagne,,11/04/2015,15.0000000,16.0000000,43.689334000000,7.294495000000,,Sentier littoral Cap de Nie,26762,observation-d0dd4380-4131-4b13-8851-e4d9786c1871,https://biolit.fr/observations/observation-d0dd4380-4131-4b13-8851-e4d9786c1871/,,,,https://biolit.fr/wp-content/uploads/2023/07/151104_CN_biolit_ClA (10)figuier de barbarie-scaled.jpg,,FALSE, +N1,26960,sortie-d0dd4380-4131-4b13-8851-e4d9786c1871,https://biolit.fr/sorties/sortie-d0dd4380-4131-4b13-8851-e4d9786c1871/,Centre de Découverte Mer et Montagne,,11/04/2015,15.0000000,16.0000000,43.689334000000,7.294495000000,,Sentier littoral Cap de Nie,26764,observation-d0dd4380-4131-4b13-8851-e4d9786c1871-2,https://biolit.fr/observations/observation-d0dd4380-4131-4b13-8851-e4d9786c1871-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/151104_CN_biolit_ClA (34)-scaled.jpg,,FALSE, +N1,26961,sortie-515bf970-a26c-4ad9-8fa9-a8d06edf4e78,https://biolit.fr/sorties/sortie-515bf970-a26c-4ad9-8fa9-a8d06edf4e78/,Centre de Découverte Mer et Montagne,,8/26/2015 0:00,15.0000000,15.0:45,43.693037000000,7.320783000000,,Rade de Villefranche sur Mer,26766,observation-515bf970-a26c-4ad9-8fa9-a8d06edf4e78,https://biolit.fr/observations/observation-515bf970-a26c-4ad9-8fa9-a8d06edf4e78/,Percnon gibbesi,Crabe plat des oursins,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/150824_enquete_PMT_10-12_MR (21) [1600x1200].JPG,,TRUE, +N1,26962,sortie-f1e07a6d-8c7b-44b9-b34a-f6c0c6342d19,https://biolit.fr/sorties/sortie-f1e07a6d-8c7b-44b9-b34a-f6c0c6342d19/,Marine,,10/04/2015,10.0000000,17.0000000,43.154247000000,6.481978000000,,Baie du Figier,26768,observation-f1e07a6d-8c7b-44b9-b34a-f6c0c6342d19,https://biolit.fr/observations/observation-f1e07a6d-8c7b-44b9-b34a-f6c0c6342d19/,,,,https://biolit.fr/wp-content/uploads/2023/07/PA040021-scaled.jpg,,FALSE, +N1,26963,sortie-f54f2c68-8502-4542-95ad-5a052314ebbb,https://biolit.fr/sorties/sortie-f54f2c68-8502-4542-95ad-5a052314ebbb/,NAUSICAA,,6/27/2015 0:00,15.0000000,16.0000000,50.828527000000,1.589782000000,,Audresselles,26770,observation-f54f2c68-8502-4542-95ad-5a052314ebbb,https://biolit.fr/observations/observation-f54f2c68-8502-4542-95ad-5a052314ebbb/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/DSCF9597-scaled.jpg,,TRUE, +N1,26964,sortie-5426d991-3edb-4836-869f-339335bf3c4a,https://biolit.fr/sorties/sortie-5426d991-3edb-4836-869f-339335bf3c4a/,Marine,,07/02/2015,16.0000000,19.0000000,43.209448000000,5.372823000000,,Calanque de Marseilleveyre,26772,observation-5426d991-3edb-4836-869f-339335bf3c4a,https://biolit.fr/observations/observation-5426d991-3edb-4836-869f-339335bf3c4a/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0704-scaled.jpg,,FALSE, +N1,26964,sortie-5426d991-3edb-4836-869f-339335bf3c4a,https://biolit.fr/sorties/sortie-5426d991-3edb-4836-869f-339335bf3c4a/,Marine,,07/02/2015,16.0000000,19.0000000,43.209448000000,5.372823000000,,Calanque de Marseilleveyre,26774,observation-5426d991-3edb-4836-869f-339335bf3c4a-2,https://biolit.fr/observations/observation-5426d991-3edb-4836-869f-339335bf3c4a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0709-scaled.jpg,,FALSE, +N1,26965,sortie-b8ededb0-a73d-495c-9516-177b64809ba4,https://biolit.fr/sorties/sortie-b8ededb0-a73d-495c-9516-177b64809ba4/,Pierre THIRIET,,05/12/2015,15.0000000,16.0000000,48.452166000000,-5.123122000000,,Baie de Lampaul - Loqueltas,26776,observation-b8ededb0-a73d-495c-9516-177b64809ba4,https://biolit.fr/observations/observation-b8ededb0-a73d-495c-9516-177b64809ba4/,Undaria pinnatifida,Wakamé,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/2015_05_Plongee_Oussant_selection_P1060270-scaled.jpg,,TRUE, +N1,26966,sortie-8822ab23-87cd-48d8-a51d-0320ea96be99,https://biolit.fr/sorties/sortie-8822ab23-87cd-48d8-a51d-0320ea96be99/,Marine,,5/22/2015 0:00,15.0000000,17.0:35,43.419164000000,5.174415000000,,Le Lido du Jaï,26778,observation-8822ab23-87cd-48d8-a51d-0320ea96be99,https://biolit.fr/observations/observation-8822ab23-87cd-48d8-a51d-0320ea96be99/,Arcuatula senhousia,Moule asiatique,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_0628-scaled.jpg,,TRUE, +N1,26967,sortie-9741830d-89d9-42de-b2a2-c3b6fc5aeb39,https://biolit.fr/sorties/sortie-9741830d-89d9-42de-b2a2-c3b6fc5aeb39/,wiem.boussellaa@hotmail.com,,01/01/2014,7.0000000,15.0000000,34.568032000000,11.362808000000,,Golfe de Gabès,26780,observation-9741830d-89d9-42de-b2a2-c3b6fc5aeb39,https://biolit.fr/observations/observation-9741830d-89d9-42de-b2a2-c3b6fc5aeb39/,Fistularia commersonii,Poisson-flûte,,https://biolit.fr/wp-content/uploads/2023/07/fistularia.jpg,,TRUE, +N1,26967,sortie-9741830d-89d9-42de-b2a2-c3b6fc5aeb39,https://biolit.fr/sorties/sortie-9741830d-89d9-42de-b2a2-c3b6fc5aeb39/,wiem.boussellaa@hotmail.com,,01/01/2014,7.0000000,15.0000000,34.568032000000,11.362808000000,,Golfe de Gabès,26782,observation-9741830d-89d9-42de-b2a2-c3b6fc5aeb39-2,https://biolit.fr/observations/observation-9741830d-89d9-42de-b2a2-c3b6fc5aeb39-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/images (1).jpg,,FALSE, +N1,26967,sortie-9741830d-89d9-42de-b2a2-c3b6fc5aeb39,https://biolit.fr/sorties/sortie-9741830d-89d9-42de-b2a2-c3b6fc5aeb39/,wiem.boussellaa@hotmail.com,,01/01/2014,7.0000000,15.0000000,34.568032000000,11.362808000000,,Golfe de Gabès,26784,observation-9741830d-89d9-42de-b2a2-c3b6fc5aeb39-3,https://biolit.fr/observations/observation-9741830d-89d9-42de-b2a2-c3b6fc5aeb39-3/,Siganus rivulatus,Poisson-lapin à ventre strié,,https://biolit.fr/wp-content/uploads/2023/07/images_0.jpg,,TRUE, +N1,26967,sortie-9741830d-89d9-42de-b2a2-c3b6fc5aeb39,https://biolit.fr/sorties/sortie-9741830d-89d9-42de-b2a2-c3b6fc5aeb39/,wiem.boussellaa@hotmail.com,,01/01/2014,7.0000000,15.0000000,34.568032000000,11.362808000000,,Golfe de Gabès,26786,observation-9741830d-89d9-42de-b2a2-c3b6fc5aeb39-4,https://biolit.fr/observations/observation-9741830d-89d9-42de-b2a2-c3b6fc5aeb39-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/téléchargement (1).jpg,,FALSE, +N1,26968,sortie-976b3389-13e0-4a21-8d00-e53950f2975b,https://biolit.fr/sorties/sortie-976b3389-13e0-4a21-8d00-e53950f2975b/,Anne D,,2/22/2015 0:00,8.0000000,10.0000000,50.840784000000,1.58553300000,,Audresselles,26788,observation-976b3389-13e0-4a21-8d00-e53950f2975b,https://biolit.fr/observations/observation-976b3389-13e0-4a21-8d00-e53950f2975b/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/DSCN8762-scaled.jpg,,TRUE, +N1,26969,sortie-a827938b-68c4-40ec-846e-5df0f82dd34a,https://biolit.fr/sorties/sortie-a827938b-68c4-40ec-846e-5df0f82dd34a/,Morice,,3/31/2015 0:00,10.0000000,11.0000000,48.64110700000,-2.072817000000,,Pointe de la roche Pelée,26790,observation-a827938b-68c4-40ec-846e-5df0f82dd34a,https://biolit.fr/observations/observation-a827938b-68c4-40ec-846e-5df0f82dd34a/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_0571-scaled.jpg,,TRUE, +N1,26970,sortie-b1147376-d62c-4bc3-ac75-3bc59a92469f,https://biolit.fr/sorties/sortie-b1147376-d62c-4bc3-ac75-3bc59a92469f/,mdf55000,,2/21/2015 0:00,8.0000000,10.0000000,51.053344000000,2.345667000000,,"Plage entre l'écluse Trystram et l'écluse Charles de Gaulle, Dunkerque",26792,observation-b1147376-d62c-4bc3-ac75-3bc59a92469f,https://biolit.fr/observations/observation-b1147376-d62c-4bc3-ac75-3bc59a92469f/,Styela clava,Ascidie japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Ascidie japonaise-scaled.jpg,,TRUE, +N1,26970,sortie-b1147376-d62c-4bc3-ac75-3bc59a92469f,https://biolit.fr/sorties/sortie-b1147376-d62c-4bc3-ac75-3bc59a92469f/,mdf55000,,2/21/2015 0:00,8.0000000,10.0000000,51.053344000000,2.345667000000,,"Plage entre l'écluse Trystram et l'écluse Charles de Gaulle, Dunkerque",26794,observation-b1147376-d62c-4bc3-ac75-3bc59a92469f-2,https://biolit.fr/observations/observation-b1147376-d62c-4bc3-ac75-3bc59a92469f-2/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Huître japonaise-scaled.jpg,,TRUE, +N1,26970,sortie-b1147376-d62c-4bc3-ac75-3bc59a92469f,https://biolit.fr/sorties/sortie-b1147376-d62c-4bc3-ac75-3bc59a92469f/,mdf55000,,2/21/2015 0:00,8.0000000,10.0000000,51.053344000000,2.345667000000,,"Plage entre l'écluse Trystram et l'écluse Charles de Gaulle, Dunkerque",26796,observation-b1147376-d62c-4bc3-ac75-3bc59a92469f-3,https://biolit.fr/observations/observation-b1147376-d62c-4bc3-ac75-3bc59a92469f-3/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crépidules-scaled.jpg,,TRUE, +N1,26970,sortie-b1147376-d62c-4bc3-ac75-3bc59a92469f,https://biolit.fr/sorties/sortie-b1147376-d62c-4bc3-ac75-3bc59a92469f/,mdf55000,,2/21/2015 0:00,8.0000000,10.0000000,51.053344000000,2.345667000000,,"Plage entre l'écluse Trystram et l'écluse Charles de Gaulle, Dunkerque",26798,observation-b1147376-d62c-4bc3-ac75-3bc59a92469f-4,https://biolit.fr/observations/observation-b1147376-d62c-4bc3-ac75-3bc59a92469f-4/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Hemigrapsus takanoï-scaled.jpg,,TRUE, +N1,26971,sortie-a33f3109-713b-4faf-b739-8d471ca101e8,https://biolit.fr/sorties/sortie-a33f3109-713b-4faf-b739-8d471ca101e8/,Katy M,,1/23/2015 0:00,9.0000000,10.0000000,50.87156500000,1.590174000000,,Cap Gris Nez,26800,observation-a33f3109-713b-4faf-b739-8d471ca101e8,https://biolit.fr/observations/observation-a33f3109-713b-4faf-b739-8d471ca101e8/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2017.JPG,,TRUE, +N1,26971,sortie-a33f3109-713b-4faf-b739-8d471ca101e8,https://biolit.fr/sorties/sortie-a33f3109-713b-4faf-b739-8d471ca101e8/,Katy M,,1/23/2015 0:00,9.0000000,10.0000000,50.87156500000,1.590174000000,,Cap Gris Nez,26802,observation-a33f3109-713b-4faf-b739-8d471ca101e8-2,https://biolit.fr/observations/observation-a33f3109-713b-4faf-b739-8d471ca101e8-2/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/DSCN2018.JPG,,TRUE, +N1,26971,sortie-a33f3109-713b-4faf-b739-8d471ca101e8,https://biolit.fr/sorties/sortie-a33f3109-713b-4faf-b739-8d471ca101e8/,Katy M,,1/23/2015 0:00,9.0000000,10.0000000,50.87156500000,1.590174000000,,Cap Gris Nez,26804,observation-a33f3109-713b-4faf-b739-8d471ca101e8-3,https://biolit.fr/observations/observation-a33f3109-713b-4faf-b739-8d471ca101e8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2050.JPG,,FALSE, +N1,26972,sortie-2c69bda8-66a1-4f82-80d4-61655111da5e,https://biolit.fr/sorties/sortie-2c69bda8-66a1-4f82-80d4-61655111da5e/,alicemalouine,,10/28/2014 0:00,14.0000000,16.0000000,48.641737000000,-2.073617000000,,plage st énogat,26806,observation-2c69bda8-66a1-4f82-80d4-61655111da5e,https://biolit.fr/observations/observation-2c69bda8-66a1-4f82-80d4-61655111da5e/,,,,https://biolit.fr/wp-content/uploads/2023/07/SAM_0550-scaled.jpg,,FALSE, +N1,26973,sortie-e2dd3f40-0d66-4fce-b95b-74fa0ada2a03,https://biolit.fr/sorties/sortie-e2dd3f40-0d66-4fce-b95b-74fa0ada2a03/,tridimeg,,10/28/2014 0:00,14.0000000,16.0000000,48.642098000000,-2.074078000000,,plage st énogat,26808,observation-e2dd3f40-0d66-4fce-b95b-74fa0ada2a03,https://biolit.fr/observations/observation-e2dd3f40-0d66-4fce-b95b-74fa0ada2a03/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/SAM_0554-scaled.jpg,,TRUE, +N1,26973,sortie-e2dd3f40-0d66-4fce-b95b-74fa0ada2a03,https://biolit.fr/sorties/sortie-e2dd3f40-0d66-4fce-b95b-74fa0ada2a03/,tridimeg,,10/28/2014 0:00,14.0000000,16.0000000,48.642098000000,-2.074078000000,,plage st énogat,26810,observation-e2dd3f40-0d66-4fce-b95b-74fa0ada2a03-2,https://biolit.fr/observations/observation-e2dd3f40-0d66-4fce-b95b-74fa0ada2a03-2/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/SAM_0551-scaled.jpg,,TRUE, +N1,26974,sortie-dc34f4df-e9c0-489f-81ef-e4e8b9f86037,https://biolit.fr/sorties/sortie-dc34f4df-e9c0-489f-81ef-e4e8b9f86037/,tridimeg,,10/28/2014 0:00,14.0000000,16.0000000,48.641575000000,-2.074148000000,,Estran de saint enogat,26812,observation-dc34f4df-e9c0-489f-81ef-e4e8b9f86037,https://biolit.fr/observations/observation-dc34f4df-e9c0-489f-81ef-e4e8b9f86037/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5709-scaled.jpg,,FALSE, +N1,26975,sortie-8527564b-8924-4fa5-af34-1bef87ebdc03,https://biolit.fr/sorties/sortie-8527564b-8924-4fa5-af34-1bef87ebdc03/,Marine,,10/07/2014,10.0000000,11.0000000,43.333969000000,5.197873000000,,Plage des Pebraires,26814,observation-8527564b-8924-4fa5-af34-1bef87ebdc03,https://biolit.fr/observations/observation-8527564b-8924-4fa5-af34-1bef87ebdc03/,Opuntia ficus,Figuier de barbarie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0335-scaled.jpg,,TRUE, +N1,26976,sortie-b034eb4b-82a3-4d6d-9461-26326a0c4ca5,https://biolit.fr/sorties/sortie-b034eb4b-82a3-4d6d-9461-26326a0c4ca5/,Planète Mer,,10/07/2014,12.0000000,14.0000000,48.641743000000,-2.074373000000,,Estran de saint enogat,26816,observation-b034eb4b-82a3-4d6d-9461-26326a0c4ca5,https://biolit.fr/observations/observation-b034eb4b-82a3-4d6d-9461-26326a0c4ca5/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_5531.JPG,,TRUE, +N1,26976,sortie-b034eb4b-82a3-4d6d-9461-26326a0c4ca5,https://biolit.fr/sorties/sortie-b034eb4b-82a3-4d6d-9461-26326a0c4ca5/,Planète Mer,,10/07/2014,12.0000000,14.0000000,48.641743000000,-2.074373000000,,Estran de saint enogat,26818,observation-b034eb4b-82a3-4d6d-9461-26326a0c4ca5-2,https://biolit.fr/observations/observation-b034eb4b-82a3-4d6d-9461-26326a0c4ca5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5552.JPG,,FALSE, +N1,26976,sortie-b034eb4b-82a3-4d6d-9461-26326a0c4ca5,https://biolit.fr/sorties/sortie-b034eb4b-82a3-4d6d-9461-26326a0c4ca5/,Planète Mer,,10/07/2014,12.0000000,14.0000000,48.641743000000,-2.074373000000,,Estran de saint enogat,26820,observation-b034eb4b-82a3-4d6d-9461-26326a0c4ca5-3,https://biolit.fr/observations/observation-b034eb4b-82a3-4d6d-9461-26326a0c4ca5-3/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_5574.JPG,,TRUE, +N1,26976,sortie-b034eb4b-82a3-4d6d-9461-26326a0c4ca5,https://biolit.fr/sorties/sortie-b034eb4b-82a3-4d6d-9461-26326a0c4ca5/,Planète Mer,,10/07/2014,12.0000000,14.0000000,48.641743000000,-2.074373000000,,Estran de saint enogat,26822,observation-b034eb4b-82a3-4d6d-9461-26326a0c4ca5-4,https://biolit.fr/observations/observation-b034eb4b-82a3-4d6d-9461-26326a0c4ca5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5602.JPG,,FALSE, +N1,26976,sortie-b034eb4b-82a3-4d6d-9461-26326a0c4ca5,https://biolit.fr/sorties/sortie-b034eb4b-82a3-4d6d-9461-26326a0c4ca5/,Planète Mer,,10/07/2014,12.0000000,14.0000000,48.641743000000,-2.074373000000,,Estran de saint enogat,26824,observation-b034eb4b-82a3-4d6d-9461-26326a0c4ca5-5,https://biolit.fr/observations/observation-b034eb4b-82a3-4d6d-9461-26326a0c4ca5-5/,Styela clava,Ascidie japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_5605.JPG,,TRUE, +N1,26977,sortie-bb8cc3ac-f6a7-4a9f-9956-7259d7e451cb,https://biolit.fr/sorties/sortie-bb8cc3ac-f6a7-4a9f-9956-7259d7e451cb/,Planète Mer,,10/07/2014,12.0000000,14.0000000,48.641788000000,-2.074169000000,,Estran de Saint Enogat,26826,observation-bb8cc3ac-f6a7-4a9f-9956-7259d7e451cb,https://biolit.fr/observations/observation-bb8cc3ac-f6a7-4a9f-9956-7259d7e451cb/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_5561.JPG,,TRUE, +N1,26978,sortie-b5f1ca68-2425-4c5d-972e-1f371b03fa7f,https://biolit.fr/sorties/sortie-b5f1ca68-2425-4c5d-972e-1f371b03fa7f/,Juh,,09/11/2014,8.0000000,11.0000000,50.751122000000,1.589353000000,,Pointe de la Crêche Boulogne Sur Mer,26828,observation-b5f1ca68-2425-4c5d-972e-1f371b03fa7f,https://biolit.fr/observations/observation-b5f1ca68-2425-4c5d-972e-1f371b03fa7f/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/porcellana platycheles.jpg,,TRUE, +N1,26979,sortie-d666a04a-1c29-4819-85da-35c038449279,https://biolit.fr/sorties/sortie-d666a04a-1c29-4819-85da-35c038449279/,Juh,,09/11/2014,8.0000000,11.0000000,50.7511220000,1.589696000000,,Pointe de la Crêche Boulogne Sur Mer,26830,observation-d666a04a-1c29-4819-85da-35c038449279,https://biolit.fr/observations/observation-d666a04a-1c29-4819-85da-35c038449279/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ligia oceanica.jpg,,FALSE, +N1,26980,sortie-3db25626-8c02-4ae7-a4c9-08bb9285cd5f,https://biolit.fr/sorties/sortie-3db25626-8c02-4ae7-a4c9-08bb9285cd5f/,marion Delporte,,09/11/2014,8.0000000,11.0000000,50.750796000000,1.593988000000,,Boulogne sur Mer,26832,observation-3db25626-8c02-4ae7-a4c9-08bb9285cd5f,https://biolit.fr/observations/observation-3db25626-8c02-4ae7-a4c9-08bb9285cd5f/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Sargassum muticum (Sargasse) 2.png,,TRUE, +N1,26980,sortie-3db25626-8c02-4ae7-a4c9-08bb9285cd5f,https://biolit.fr/sorties/sortie-3db25626-8c02-4ae7-a4c9-08bb9285cd5f/,marion Delporte,,09/11/2014,8.0000000,11.0000000,50.750796000000,1.593988000000,,Boulogne sur Mer,26834,observation-3db25626-8c02-4ae7-a4c9-08bb9285cd5f-2,https://biolit.fr/observations/observation-3db25626-8c02-4ae7-a4c9-08bb9285cd5f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Hemigrapsus sanguineus (crabe sanguin).JPG,,FALSE, +N1,26981,sortie-43e85eef-c74b-4fd2-bfb4-eed1f6b010a2,https://biolit.fr/sorties/sortie-43e85eef-c74b-4fd2-bfb4-eed1f6b010a2/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.751573000000,1.592915000000,,Boulogne / Mer,26836,observation-43e85eef-c74b-4fd2-bfb4-eed1f6b010a2,https://biolit.fr/observations/observation-43e85eef-c74b-4fd2-bfb4-eed1f6b010a2/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/SAM_0103-scaled.jpg,,TRUE, +N1,26981,sortie-43e85eef-c74b-4fd2-bfb4-eed1f6b010a2,https://biolit.fr/sorties/sortie-43e85eef-c74b-4fd2-bfb4-eed1f6b010a2/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.751573000000,1.592915000000,,Boulogne / Mer,26838,observation-43e85eef-c74b-4fd2-bfb4-eed1f6b010a2-2,https://biolit.fr/observations/observation-43e85eef-c74b-4fd2-bfb4-eed1f6b010a2-2/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/SAM_0239-scaled.jpg,,TRUE, +N1,26982,sortie-4cbc4d14-fd8a-4712-b926-6d31f49d7f7c,https://biolit.fr/sorties/sortie-4cbc4d14-fd8a-4712-b926-6d31f49d7f7c/,leajoly,,09/11/2014,8.0000000,11.0000000,50.751106000000,1.591724000000,,plage Boulogne-sur-mer,26840,observation-4cbc4d14-fd8a-4712-b926-6d31f49d7f7c,https://biolit.fr/observations/observation-4cbc4d14-fd8a-4712-b926-6d31f49d7f7c/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Hemigrapsus sanguineus-scaled.jpg,,TRUE, +N1,26982,sortie-4cbc4d14-fd8a-4712-b926-6d31f49d7f7c,https://biolit.fr/sorties/sortie-4cbc4d14-fd8a-4712-b926-6d31f49d7f7c/,leajoly,,09/11/2014,8.0000000,11.0000000,50.751106000000,1.591724000000,,plage Boulogne-sur-mer,26842,observation-4cbc4d14-fd8a-4712-b926-6d31f49d7f7c-2,https://biolit.fr/observations/observation-4cbc4d14-fd8a-4712-b926-6d31f49d7f7c-2/,Diadumene lineata,Anémone asiatique lignée,,https://biolit.fr/wp-content/uploads/2023/07/Diadumene lineata-scaled.jpg,,TRUE, +N1,26982,sortie-4cbc4d14-fd8a-4712-b926-6d31f49d7f7c,https://biolit.fr/sorties/sortie-4cbc4d14-fd8a-4712-b926-6d31f49d7f7c/,leajoly,,09/11/2014,8.0000000,11.0000000,50.751106000000,1.591724000000,,plage Boulogne-sur-mer,26844,observation-4cbc4d14-fd8a-4712-b926-6d31f49d7f7c-3,https://biolit.fr/observations/observation-4cbc4d14-fd8a-4712-b926-6d31f49d7f7c-3/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Sargassum muticum-scaled.jpg,,TRUE, +N1,26983,sortie-750e59b5-2a42-4767-bf7b-eb98983607a0,https://biolit.fr/sorties/sortie-750e59b5-2a42-4767-bf7b-eb98983607a0/,M.DAO-CASTES Corentin,,09/11/2014,9.0000000,11.0000000,50.750728000000,1.594363000000,,Boulogne-sur-mer,26846,observation-750e59b5-2a42-4767-bf7b-eb98983607a0,https://biolit.fr/observations/observation-750e59b5-2a42-4767-bf7b-eb98983607a0/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Sarcasum miticum-scaled.jpg,,TRUE, +N1,26984,sortie-f41dcad7-20bf-4940-b75f-d319bd78e2a1,https://biolit.fr/sorties/sortie-f41dcad7-20bf-4940-b75f-d319bd78e2a1/,M.DAO-CASTES Corentin,,09/11/2014,9.0000000,11.0000000,50.75076900000,1.594277000000,,Boulogne-sur-mer,26848,observation-f41dcad7-20bf-4940-b75f-d319bd78e2a1,https://biolit.fr/observations/observation-f41dcad7-20bf-4940-b75f-d319bd78e2a1/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Hemigraspus sanguineus-scaled.jpg,,TRUE, +N1,26985,sortie-f32acd40-72d1-49c9-9a24-1550db3644dc,https://biolit.fr/sorties/sortie-f32acd40-72d1-49c9-9a24-1550db3644dc/,Mel-Mei,,09/11/2014,8.0000000,11.0000000,50.749601000000,1.59484600000,,Boulogne sur Mer,26850,observation-f32acd40-72d1-49c9-9a24-1550db3644dc,https://biolit.fr/observations/observation-f32acd40-72d1-49c9-9a24-1550db3644dc/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC00478 bis.jpg,,FALSE, +N1,26986,sortie-8b4cef3c-8c83-4831-ae8e-fc36590247a7,https://biolit.fr/sorties/sortie-8b4cef3c-8c83-4831-ae8e-fc36590247a7/,Laurent Debas,,6/30/2014 0:00,9.0000000,11.0000000,43.21008500000,5.420012000000,,Marseille - Calanque de Sormiou,26852,observation-8b4cef3c-8c83-4831-ae8e-fc36590247a7,https://biolit.fr/observations/observation-8b4cef3c-8c83-4831-ae8e-fc36590247a7/,Atriplex halimus,Arroche marine,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0064-scaled.jpg,,TRUE,Identifiable +N1,26987,sortie-54f7ab6a-821c-4d28-b703-fa59b730633f,https://biolit.fr/sorties/sortie-54f7ab6a-821c-4d28-b703-fa59b730633f/,Marine,,5/30/2014 0:00,16.0000000,18.0000000,43.079468000000,5.778604000000,,Les Embiez,26854,observation-54f7ab6a-821c-4d28-b703-fa59b730633f,https://biolit.fr/observations/observation-54f7ab6a-821c-4d28-b703-fa59b730633f/,Carpobrotus edulis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8527-scaled.jpg,,TRUE, +N1,26988,sortie-9005ea79-1a03-4678-b35e-d5138117d4c7,https://biolit.fr/sorties/sortie-9005ea79-1a03-4678-b35e-d5138117d4c7/,Marine,,5/29/2014 0:00,10.0000000,11.0000000,43.094460000000,6.023706000000,,Plage du Pradet,26856,observation-9005ea79-1a03-4678-b35e-d5138117d4c7,https://biolit.fr/observations/observation-9005ea79-1a03-4678-b35e-d5138117d4c7/,Carpobrotus edulis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8395-scaled.jpg,,TRUE, +N1,26988,sortie-9005ea79-1a03-4678-b35e-d5138117d4c7,https://biolit.fr/sorties/sortie-9005ea79-1a03-4678-b35e-d5138117d4c7/,Marine,,5/29/2014 0:00,10.0000000,11.0000000,43.094460000000,6.023706000000,,Plage du Pradet,26858,observation-9005ea79-1a03-4678-b35e-d5138117d4c7-2,https://biolit.fr/observations/observation-9005ea79-1a03-4678-b35e-d5138117d4c7-2/,Carpobrotus acinaciformis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8394-scaled.jpg,,TRUE, +N1,26989,sortie-373031db-2f6b-4fa4-83a4-0b77aa5712a3,https://biolit.fr/sorties/sortie-373031db-2f6b-4fa4-83a4-0b77aa5712a3/,Marine,,5/23/2014 0:00,21.0000000,23.0000000,43.331943000000,5.20015900000,,Calanque des Anthénors,26860,observation-373031db-2f6b-4fa4-83a4-0b77aa5712a3,https://biolit.fr/observations/observation-373031db-2f6b-4fa4-83a4-0b77aa5712a3/,Opuntia ficus,Figuier de barbarie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20140523_133015.jpg,,TRUE, +N1,26990,sortie-123a1069-dc2f-4a3b-abe6-737c49ed3415,https://biolit.fr/sorties/sortie-123a1069-dc2f-4a3b-abe6-737c49ed3415/,Blue eyes,,4/17/2014 0:00,15.0000000,16.0000000,43.418603000000,6.829421000000,,Plage d'Aiguebonne (Saint-Raphaël - Var),26862,observation-123a1069-dc2f-4a3b-abe6-737c49ed3415,https://biolit.fr/observations/observation-123a1069-dc2f-4a3b-abe6-737c49ed3415/,Opuntia ficus,Figuier de barbarie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0080-scaled.jpg,,TRUE, +N1,26990,sortie-123a1069-dc2f-4a3b-abe6-737c49ed3415,https://biolit.fr/sorties/sortie-123a1069-dc2f-4a3b-abe6-737c49ed3415/,Blue eyes,,4/17/2014 0:00,15.0000000,16.0000000,43.418603000000,6.829421000000,,Plage d'Aiguebonne (Saint-Raphaël - Var),26864,observation-123a1069-dc2f-4a3b-abe6-737c49ed3415-2,https://biolit.fr/observations/observation-123a1069-dc2f-4a3b-abe6-737c49ed3415-2/,Opuntia ficus,Figuier de barbarie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0081-scaled.jpg,,TRUE, +N1,26991,sortie-7fa28120-9d65-4127-a288-23a653c5ef7d,https://biolit.fr/sorties/sortie-7fa28120-9d65-4127-a288-23a653c5ef7d/,Laurent Debas,,3/28/2014 0:00,11.0000000,12.0000000,43.438639000000,3.672179000000,,Etang de Thau - Balaruc les Bains,26866,observation-7fa28120-9d65-4127-a288-23a653c5ef7d,https://biolit.fr/observations/observation-7fa28120-9d65-4127-a288-23a653c5ef7d/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/DSC_0116-scaled.jpg,,TRUE, +N1,26992,sortie-4960c279-4b7f-44ad-9016-1ed8240c6fe7,https://biolit.fr/sorties/sortie-4960c279-4b7f-44ad-9016-1ed8240c6fe7/,Robert,,3/19/2014 0:00,14.0000000,16.0000000,43.281687000000,5.30531200000,,Marseille - Îles du Frioul,26868,observation-4960c279-4b7f-44ad-9016-1ed8240c6fe7,https://biolit.fr/observations/observation-4960c279-4b7f-44ad-9016-1ed8240c6fe7/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P3194018-scaled.jpg,,TRUE, +N1,26993,sortie-f0fd2586-ade6-48c2-a6dd-0d5254a7004f,https://biolit.fr/sorties/sortie-f0fd2586-ade6-48c2-a6dd-0d5254a7004f/,Robert,,3/21/2014 0:00,11.0000000,16.0000000,43.281297000000,5.311830000000,,Marseille - Îles du Frioul,26870,observation-f0fd2586-ade6-48c2-a6dd-0d5254a7004f,https://biolit.fr/observations/observation-f0fd2586-ade6-48c2-a6dd-0d5254a7004f/,Opuntia ficus,Figuier de barbarie,,https://biolit.fr/wp-content/uploads/2023/07/P3194004-scaled.jpg,,TRUE, +N1,28406,sortie-6cd45a79-5233-4766-bd92-b7dc56f87313,https://biolit.fr/sorties/sortie-6cd45a79-5233-4766-bd92-b7dc56f87313/,ecoleclaudedebussy,,06/06/2023,14.0000000,16.0000000,48.625503000000,-2.053109000000,Planète Mer,Plage du prieuré ,26994,observation-6cd45a79-5233-4766-bd92-b7dc56f87313,https://biolit.fr/observations/observation-6cd45a79-5233-4766-bd92-b7dc56f87313/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capsule raie.PNG,,FALSE, +N1,28406,sortie-6cd45a79-5233-4766-bd92-b7dc56f87313,https://biolit.fr/sorties/sortie-6cd45a79-5233-4766-bd92-b7dc56f87313/,ecoleclaudedebussy,,06/06/2023,14.0000000,16.0000000,48.625503000000,-2.053109000000,Planète Mer,Plage du prieuré ,26996,observation-6cd45a79-5233-4766-bd92-b7dc56f87313-2,https://biolit.fr/observations/observation-6cd45a79-5233-4766-bd92-b7dc56f87313-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/capsule rousette.PNG,,FALSE, +N1,28407,sortie-3b67650b-bf0d-4c68-9536-a48252a82d47,https://biolit.fr/sorties/sortie-3b67650b-bf0d-4c68-9536-a48252a82d47/,Marine,,5/24/2023 0:00,13.0000000,14.0:45,46.146769000000,-1.209267000000,Planète Mer,Chef de baie,26998,observation-3b67650b-bf0d-4c68-9536-a48252a82d47,https://biolit.fr/observations/observation-3b67650b-bf0d-4c68-9536-a48252a82d47/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230524_144832-scaled.jpg,,TRUE, +N1,28407,sortie-3b67650b-bf0d-4c68-9536-a48252a82d47,https://biolit.fr/sorties/sortie-3b67650b-bf0d-4c68-9536-a48252a82d47/,Marine,,5/24/2023 0:00,13.0000000,14.0:45,46.146769000000,-1.209267000000,Planète Mer,Chef de baie,27000,observation-3b67650b-bf0d-4c68-9536-a48252a82d47-2,https://biolit.fr/observations/observation-3b67650b-bf0d-4c68-9536-a48252a82d47-2/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230524_144839-scaled.jpg,,TRUE, +N1,28408,sortie-de701e3e-f96a-422f-adef-75c848a82611,https://biolit.fr/sorties/sortie-de701e3e-f96a-422f-adef-75c848a82611/,Marine,,5/19/2023 0:00,16.0000000,16.0000000,46.147728000000,-1.210227000000,,Chef de baie,27002,observation-de701e3e-f96a-422f-adef-75c848a82611,https://biolit.fr/observations/observation-de701e3e-f96a-422f-adef-75c848a82611/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230519_160601_compress89-scaled.jpg,,TRUE, +N1,28408,sortie-de701e3e-f96a-422f-adef-75c848a82611,https://biolit.fr/sorties/sortie-de701e3e-f96a-422f-adef-75c848a82611/,Marine,,5/19/2023 0:00,16.0000000,16.0000000,46.147728000000,-1.210227000000,,Chef de baie,27004,observation-de701e3e-f96a-422f-adef-75c848a82611-2,https://biolit.fr/observations/observation-de701e3e-f96a-422f-adef-75c848a82611-2/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230519_161056_compress25-scaled.jpg,,TRUE, +N1,28408,sortie-de701e3e-f96a-422f-adef-75c848a82611,https://biolit.fr/sorties/sortie-de701e3e-f96a-422f-adef-75c848a82611/,Marine,,5/19/2023 0:00,16.0000000,16.0000000,46.147728000000,-1.210227000000,,Chef de baie,27006,observation-de701e3e-f96a-422f-adef-75c848a82611-3,https://biolit.fr/observations/observation-de701e3e-f96a-422f-adef-75c848a82611-3/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230519_161127_compress69-scaled.jpg,,TRUE, +N1,28408,sortie-de701e3e-f96a-422f-adef-75c848a82611,https://biolit.fr/sorties/sortie-de701e3e-f96a-422f-adef-75c848a82611/,Marine,,5/19/2023 0:00,16.0000000,16.0000000,46.147728000000,-1.210227000000,,Chef de baie,27008,observation-de701e3e-f96a-422f-adef-75c848a82611-4,https://biolit.fr/observations/observation-de701e3e-f96a-422f-adef-75c848a82611-4/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230519_160709_compress29-scaled.jpg,,TRUE, +N1,28408,sortie-de701e3e-f96a-422f-adef-75c848a82611,https://biolit.fr/sorties/sortie-de701e3e-f96a-422f-adef-75c848a82611/,Marine,,5/19/2023 0:00,16.0000000,16.0000000,46.147728000000,-1.210227000000,,Chef de baie,27010,observation-de701e3e-f96a-422f-adef-75c848a82611-5,https://biolit.fr/observations/observation-de701e3e-f96a-422f-adef-75c848a82611-5/,Pleurobrachia pileus,Groseille de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230519_160613_compress14-scaled.jpg,,TRUE, +N1,28409,sortie-2257d2ea-2ca2-4ec3-8045-268ce8690b6f,https://biolit.fr/sorties/sortie-2257d2ea-2ca2-4ec3-8045-268ce8690b6f/,Marine,,5/15/2023 0:00,17.0000000,17.0000000,48.638474000000,-2.069499000000,Planète Mer,plage de saint enogat,27012,observation-2257d2ea-2ca2-4ec3-8045-268ce8690b6f,https://biolit.fr/observations/observation-2257d2ea-2ca2-4ec3-8045-268ce8690b6f/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230427_150600_1-scaled.jpg,,TRUE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27014,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_141618-scaled.jpg,,FALSE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27016,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-2,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_141911-scaled.jpg,,FALSE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27018,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-3,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_142052-scaled.jpg,,FALSE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27020,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-4,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_142651-scaled.jpg,,FALSE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27022,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-5,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-5/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_144434-scaled.jpg,,TRUE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27024,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-6,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-6/,Rhombosepion elegans,Os de seiche élégante,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_144710-scaled.jpg,,TRUE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27026,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-7,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-7/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_151514-scaled.jpg,,TRUE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27028,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-8,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_152659-scaled.jpg,,FALSE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27030,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-9,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-9/,Phoenicopterus roseus,Flamant rose,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_170224-scaled.jpg,,TRUE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27032,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-10,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_142509-scaled.jpg,,FALSE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27034,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-11,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_144621-scaled.jpg,,FALSE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27036,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-12,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_150311-scaled.jpg,,FALSE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27038,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-13,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_144813-scaled.jpg,,FALSE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27040,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-14,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_151213-scaled.jpg,,FALSE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27042,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-15,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_142454-scaled.jpg,,FALSE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27044,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-16,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_142259-scaled.jpg,,FALSE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27046,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-17,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_142621-scaled.jpg,,FALSE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27048,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-18,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_142832-scaled.jpg,,FALSE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27050,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-19,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_143922-scaled.jpg,,FALSE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27052,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-20,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_150925-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27054,observation-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1147-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27056,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-2,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1148_0-scaled.jpg,,TRUE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27058,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-3,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1149-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27060,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-4,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1150-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27062,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-5,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-5/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1151-scaled.jpg,,TRUE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27064,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-6,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1152_0-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27066,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-7,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1153-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27068,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-8,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1154_0-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27070,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-9,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1155_0-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27072,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-10,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1156_0-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27074,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-11,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1157_0-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27076,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-12,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1158_0-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27078,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-13,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1159_0-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27080,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-14,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1161_0-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27082,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-15,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1162_0-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27084,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-16,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1163_0-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27086,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-17,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1164_0-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27088,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-18,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1166_1-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27090,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-19,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1168_0-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27092,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-20,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1169_0-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27094,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-21,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1170-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27096,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-22,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1171-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27098,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-23,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-23/,Ericaria amentacea,Cystoseire stricte,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1175-scaled.jpg,,TRUE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27100,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-24,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-24/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1173-scaled.jpg,,TRUE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27102,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-25,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1178-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27104,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-26,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1174-scaled.jpg,,FALSE, +N1,28412,sortie-2fd34195-cc77-4680-b637-c58dc544d444,https://biolit.fr/sorties/sortie-2fd34195-cc77-4680-b637-c58dc544d444/,Club subaquatique Narbonnais,,3/25/2023 0:00,10.0000000,11.0000000,43.168062000000,3.179913000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,27106,observation-2fd34195-cc77-4680-b637-c58dc544d444,https://biolit.fr/observations/observation-2fd34195-cc77-4680-b637-c58dc544d444/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6559.JPG,,FALSE, +N1,28412,sortie-2fd34195-cc77-4680-b637-c58dc544d444,https://biolit.fr/sorties/sortie-2fd34195-cc77-4680-b637-c58dc544d444/,Club subaquatique Narbonnais,,3/25/2023 0:00,10.0000000,11.0000000,43.168062000000,3.179913000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,27108,observation-2fd34195-cc77-4680-b637-c58dc544d444-2,https://biolit.fr/observations/observation-2fd34195-cc77-4680-b637-c58dc544d444-2/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_6564.JPG,,TRUE, +N1,28412,sortie-2fd34195-cc77-4680-b637-c58dc544d444,https://biolit.fr/sorties/sortie-2fd34195-cc77-4680-b637-c58dc544d444/,Club subaquatique Narbonnais,,3/25/2023 0:00,10.0000000,11.0000000,43.168062000000,3.179913000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,27110,observation-2fd34195-cc77-4680-b637-c58dc544d444-3,https://biolit.fr/observations/observation-2fd34195-cc77-4680-b637-c58dc544d444-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6568.JPG,,FALSE, +N1,28412,sortie-2fd34195-cc77-4680-b637-c58dc544d444,https://biolit.fr/sorties/sortie-2fd34195-cc77-4680-b637-c58dc544d444/,Club subaquatique Narbonnais,,3/25/2023 0:00,10.0000000,11.0000000,43.168062000000,3.179913000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,27112,observation-2fd34195-cc77-4680-b637-c58dc544d444-4,https://biolit.fr/observations/observation-2fd34195-cc77-4680-b637-c58dc544d444-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6571.JPG,,FALSE, +N1,28412,sortie-2fd34195-cc77-4680-b637-c58dc544d444,https://biolit.fr/sorties/sortie-2fd34195-cc77-4680-b637-c58dc544d444/,Club subaquatique Narbonnais,,3/25/2023 0:00,10.0000000,11.0000000,43.168062000000,3.179913000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,27114,observation-2fd34195-cc77-4680-b637-c58dc544d444-5,https://biolit.fr/observations/observation-2fd34195-cc77-4680-b637-c58dc544d444-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6575.JPG,,FALSE, +N1,28412,sortie-2fd34195-cc77-4680-b637-c58dc544d444,https://biolit.fr/sorties/sortie-2fd34195-cc77-4680-b637-c58dc544d444/,Club subaquatique Narbonnais,,3/25/2023 0:00,10.0000000,11.0000000,43.168062000000,3.179913000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,27116,observation-2fd34195-cc77-4680-b637-c58dc544d444-6,https://biolit.fr/observations/observation-2fd34195-cc77-4680-b637-c58dc544d444-6/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_6589.JPG,,TRUE, +N1,28412,sortie-2fd34195-cc77-4680-b637-c58dc544d444,https://biolit.fr/sorties/sortie-2fd34195-cc77-4680-b637-c58dc544d444/,Club subaquatique Narbonnais,,3/25/2023 0:00,10.0000000,11.0000000,43.168062000000,3.179913000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,27118,observation-2fd34195-cc77-4680-b637-c58dc544d444-7,https://biolit.fr/observations/observation-2fd34195-cc77-4680-b637-c58dc544d444-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6594.JPG,,FALSE, +N1,28412,sortie-2fd34195-cc77-4680-b637-c58dc544d444,https://biolit.fr/sorties/sortie-2fd34195-cc77-4680-b637-c58dc544d444/,Club subaquatique Narbonnais,,3/25/2023 0:00,10.0000000,11.0000000,43.168062000000,3.179913000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,27120,observation-2fd34195-cc77-4680-b637-c58dc544d444-8,https://biolit.fr/observations/observation-2fd34195-cc77-4680-b637-c58dc544d444-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6595.JPG,,FALSE, +N1,28412,sortie-2fd34195-cc77-4680-b637-c58dc544d444,https://biolit.fr/sorties/sortie-2fd34195-cc77-4680-b637-c58dc544d444/,Club subaquatique Narbonnais,,3/25/2023 0:00,10.0000000,11.0000000,43.168062000000,3.179913000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,27122,observation-2fd34195-cc77-4680-b637-c58dc544d444-9,https://biolit.fr/observations/observation-2fd34195-cc77-4680-b637-c58dc544d444-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6596.JPG,,FALSE, +N1,28412,sortie-2fd34195-cc77-4680-b637-c58dc544d444,https://biolit.fr/sorties/sortie-2fd34195-cc77-4680-b637-c58dc544d444/,Club subaquatique Narbonnais,,3/25/2023 0:00,10.0000000,11.0000000,43.168062000000,3.179913000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,27124,observation-2fd34195-cc77-4680-b637-c58dc544d444-10,https://biolit.fr/observations/observation-2fd34195-cc77-4680-b637-c58dc544d444-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6597.JPG,,FALSE, +N1,28412,sortie-2fd34195-cc77-4680-b637-c58dc544d444,https://biolit.fr/sorties/sortie-2fd34195-cc77-4680-b637-c58dc544d444/,Club subaquatique Narbonnais,,3/25/2023 0:00,10.0000000,11.0000000,43.168062000000,3.179913000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,27126,observation-2fd34195-cc77-4680-b637-c58dc544d444-11,https://biolit.fr/observations/observation-2fd34195-cc77-4680-b637-c58dc544d444-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6598_0.JPG,,FALSE, +N1,28412,sortie-2fd34195-cc77-4680-b637-c58dc544d444,https://biolit.fr/sorties/sortie-2fd34195-cc77-4680-b637-c58dc544d444/,Club subaquatique Narbonnais,,3/25/2023 0:00,10.0000000,11.0000000,43.168062000000,3.179913000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,27128,observation-2fd34195-cc77-4680-b637-c58dc544d444-12,https://biolit.fr/observations/observation-2fd34195-cc77-4680-b637-c58dc544d444-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6600.JPG,,FALSE, +N1,28412,sortie-2fd34195-cc77-4680-b637-c58dc544d444,https://biolit.fr/sorties/sortie-2fd34195-cc77-4680-b637-c58dc544d444/,Club subaquatique Narbonnais,,3/25/2023 0:00,10.0000000,11.0000000,43.168062000000,3.179913000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,27130,observation-2fd34195-cc77-4680-b637-c58dc544d444-13,https://biolit.fr/observations/observation-2fd34195-cc77-4680-b637-c58dc544d444-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6601.JPG,,FALSE, +N1,28412,sortie-2fd34195-cc77-4680-b637-c58dc544d444,https://biolit.fr/sorties/sortie-2fd34195-cc77-4680-b637-c58dc544d444/,Club subaquatique Narbonnais,,3/25/2023 0:00,10.0000000,11.0000000,43.168062000000,3.179913000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,27132,observation-2fd34195-cc77-4680-b637-c58dc544d444-14,https://biolit.fr/observations/observation-2fd34195-cc77-4680-b637-c58dc544d444-14/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_6602.JPG,,TRUE, +N1,28413,sortie-1d39bf8b-4b9a-413e-be18-4f73a9676bf8,https://biolit.fr/sorties/sortie-1d39bf8b-4b9a-413e-be18-4f73a9676bf8/,Marine,,3/15/2023 0:00,10.0000000,10.0000000,43.214890000000,5.34291400000,Planète Mer,Anse de la Maronaise,27134,observation-1d39bf8b-4b9a-413e-be18-4f73a9676bf8,https://biolit.fr/observations/observation-1d39bf8b-4b9a-413e-be18-4f73a9676bf8/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230315_105534_6filjnOP1f.jpeg,,TRUE, +N1,28413,sortie-1d39bf8b-4b9a-413e-be18-4f73a9676bf8,https://biolit.fr/sorties/sortie-1d39bf8b-4b9a-413e-be18-4f73a9676bf8/,Marine,,3/15/2023 0:00,10.0000000,10.0000000,43.214890000000,5.34291400000,Planète Mer,Anse de la Maronaise,27136,observation-1d39bf8b-4b9a-413e-be18-4f73a9676bf8-2,https://biolit.fr/observations/observation-1d39bf8b-4b9a-413e-be18-4f73a9676bf8-2/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG-20230315-WA0014.jpg,,TRUE, +N1,28414,sortie-00c3e5b9-d8d2-49d8-8c4c-7aa059fce067,https://biolit.fr/sorties/sortie-00c3e5b9-d8d2-49d8-8c4c-7aa059fce067/,Marine,,03/02/2023,14.0:35,15.000005,49.328052000000,-0.377412000000,Planète Mer,Plage de Saint-Aubin,27138,observation-00c3e5b9-d8d2-49d8-8c4c-7aa059fce067,https://biolit.fr/observations/observation-00c3e5b9-d8d2-49d8-8c4c-7aa059fce067/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230302_140125-scaled.jpg,,FALSE, +N1,28414,sortie-00c3e5b9-d8d2-49d8-8c4c-7aa059fce067,https://biolit.fr/sorties/sortie-00c3e5b9-d8d2-49d8-8c4c-7aa059fce067/,Marine,,03/02/2023,14.0:35,15.000005,49.328052000000,-0.377412000000,Planète Mer,Plage de Saint-Aubin,27140,observation-00c3e5b9-d8d2-49d8-8c4c-7aa059fce067-2,https://biolit.fr/observations/observation-00c3e5b9-d8d2-49d8-8c4c-7aa059fce067-2/,Loligo spp.,Ponte de Calmar,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230302_135655-scaled.jpg,,TRUE, +N1,28415,sortie-9831b50b-89fe-4473-aef1-1562856df937,https://biolit.fr/sorties/sortie-9831b50b-89fe-4473-aef1-1562856df937/,Camille Benyamine,,2/14/2023 0:00,8.0000000,10.0000000,43.239792000000,5.362395000000,Planète Mer,Bain des Dames,27142,observation-9831b50b-89fe-4473-aef1-1562856df937,https://biolit.fr/observations/observation-9831b50b-89fe-4473-aef1-1562856df937/,,,,https://biolit.fr/wp-content/uploads/2023/07/330798595_1150672962262852_3443912666821141741_n.jpg,,FALSE, +N1,28415,sortie-9831b50b-89fe-4473-aef1-1562856df937,https://biolit.fr/sorties/sortie-9831b50b-89fe-4473-aef1-1562856df937/,Camille Benyamine,,2/14/2023 0:00,8.0000000,10.0000000,43.239792000000,5.362395000000,Planète Mer,Bain des Dames,27144,observation-9831b50b-89fe-4473-aef1-1562856df937-2,https://biolit.fr/observations/observation-9831b50b-89fe-4473-aef1-1562856df937-2/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/330824166_911079103644487_1566738228441481161_n.jpg,,TRUE, +N1,28415,sortie-9831b50b-89fe-4473-aef1-1562856df937,https://biolit.fr/sorties/sortie-9831b50b-89fe-4473-aef1-1562856df937/,Camille Benyamine,,2/14/2023 0:00,8.0000000,10.0000000,43.239792000000,5.362395000000,Planète Mer,Bain des Dames,27146,observation-9831b50b-89fe-4473-aef1-1562856df937-3,https://biolit.fr/observations/observation-9831b50b-89fe-4473-aef1-1562856df937-3/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/331227727_934090620952569_1438078857820519900_n.jpg,,TRUE, +N1,28415,sortie-9831b50b-89fe-4473-aef1-1562856df937,https://biolit.fr/sorties/sortie-9831b50b-89fe-4473-aef1-1562856df937/,Camille Benyamine,,2/14/2023 0:00,8.0000000,10.0000000,43.239792000000,5.362395000000,Planète Mer,Bain des Dames,27148,observation-9831b50b-89fe-4473-aef1-1562856df937-4,https://biolit.fr/observations/observation-9831b50b-89fe-4473-aef1-1562856df937-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/330930215_670230494898894_5070991189777937198_n.jpg,,FALSE, +N1,28415,sortie-9831b50b-89fe-4473-aef1-1562856df937,https://biolit.fr/sorties/sortie-9831b50b-89fe-4473-aef1-1562856df937/,Camille Benyamine,,2/14/2023 0:00,8.0000000,10.0000000,43.239792000000,5.362395000000,Planète Mer,Bain des Dames,27150,observation-9831b50b-89fe-4473-aef1-1562856df937-5,https://biolit.fr/observations/observation-9831b50b-89fe-4473-aef1-1562856df937-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/331068580_709323580901197_1613023781573248351_n.jpg,,FALSE, +N1,28416,sortie-35922f19-0555-4351-80fc-d850d2008f89,https://biolit.fr/sorties/sortie-35922f19-0555-4351-80fc-d850d2008f89/,Marine,,1/21/2023 0:00,17.0000000,17.0000000,46.306579000000,-1.312966000000,,Plage de la Barrique,27152,observation-35922f19-0555-4351-80fc-d850d2008f89,https://biolit.fr/observations/observation-35922f19-0555-4351-80fc-d850d2008f89/,,,,https://biolit.fr/wp-content/uploads/2023/07/1674560076520-scaled.jpg,,FALSE, +N1,28416,sortie-35922f19-0555-4351-80fc-d850d2008f89,https://biolit.fr/sorties/sortie-35922f19-0555-4351-80fc-d850d2008f89/,Marine,,1/21/2023 0:00,17.0000000,17.0000000,46.306579000000,-1.312966000000,,Plage de la Barrique,27154,observation-35922f19-0555-4351-80fc-d850d2008f89-2,https://biolit.fr/observations/observation-35922f19-0555-4351-80fc-d850d2008f89-2/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/1674560076530-scaled.jpg,,TRUE, +N1,28417,sortie-f76fb9f2-f57b-420f-8ff6-633c1a3d3944,https://biolit.fr/sorties/sortie-f76fb9f2-f57b-420f-8ff6-633c1a3d3944/,Observe la nature,,01/05/2023,14.0000000,16.0000000,41.712897000000,8.818386000000,,Porto Pollo plage,27156,observation-f76fb9f2-f57b-420f-8ff6-633c1a3d3944,https://biolit.fr/observations/observation-f76fb9f2-f57b-420f-8ff6-633c1a3d3944/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/321502381_2379126948917737_2788687876471827993_n.jpg,,TRUE, +N1,28418,sortie-481d0cd2-1c8d-4d95-b4c6-c972220fad74,https://biolit.fr/sorties/sortie-481d0cd2-1c8d-4d95-b4c6-c972220fad74/,Camille Benyamine,,11/24/2022 0:00,10.0000000,12.0000000,43.239831000000,5.362405000000,,Bain des Dames,27158,observation-481d0cd2-1c8d-4d95-b4c6-c972220fad74,https://biolit.fr/observations/observation-481d0cd2-1c8d-4d95-b4c6-c972220fad74/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/316514157_2116523898532716_1982054198504790836_n(1)-scaled.jpg,,TRUE, +N1,28418,sortie-481d0cd2-1c8d-4d95-b4c6-c972220fad74,https://biolit.fr/sorties/sortie-481d0cd2-1c8d-4d95-b4c6-c972220fad74/,Camille Benyamine,,11/24/2022 0:00,10.0000000,12.0000000,43.239831000000,5.362405000000,,Bain des Dames,27160,observation-481d0cd2-1c8d-4d95-b4c6-c972220fad74-2,https://biolit.fr/observations/observation-481d0cd2-1c8d-4d95-b4c6-c972220fad74-2/,Posidonia oceanica,Fleur de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/316962423_1238552720062497_9135367134901084027_n(1)-scaled.jpg,,TRUE, +N1,28418,sortie-481d0cd2-1c8d-4d95-b4c6-c972220fad74,https://biolit.fr/sorties/sortie-481d0cd2-1c8d-4d95-b4c6-c972220fad74/,Camille Benyamine,,11/24/2022 0:00,10.0000000,12.0000000,43.239831000000,5.362405000000,,Bain des Dames,27162,observation-481d0cd2-1c8d-4d95-b4c6-c972220fad74-3,https://biolit.fr/observations/observation-481d0cd2-1c8d-4d95-b4c6-c972220fad74-3/,Posidonia oceanica,Fleur de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/313499207_844763753312138_954460083479780131_n-scaled.jpg,,TRUE, +N1,28418,sortie-481d0cd2-1c8d-4d95-b4c6-c972220fad74,https://biolit.fr/sorties/sortie-481d0cd2-1c8d-4d95-b4c6-c972220fad74/,Camille Benyamine,,11/24/2022 0:00,10.0000000,12.0000000,43.239831000000,5.362405000000,,Bain des Dames,27164,observation-481d0cd2-1c8d-4d95-b4c6-c972220fad74-4,https://biolit.fr/observations/observation-481d0cd2-1c8d-4d95-b4c6-c972220fad74-4/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/316186071_700855934789731_8097555739698690075_n-scaled.jpg,,TRUE, +N1,28418,sortie-481d0cd2-1c8d-4d95-b4c6-c972220fad74,https://biolit.fr/sorties/sortie-481d0cd2-1c8d-4d95-b4c6-c972220fad74/,Camille Benyamine,,11/24/2022 0:00,10.0000000,12.0000000,43.239831000000,5.362405000000,,Bain des Dames,27166,observation-481d0cd2-1c8d-4d95-b4c6-c972220fad74-5,https://biolit.fr/observations/observation-481d0cd2-1c8d-4d95-b4c6-c972220fad74-5/,Posidonia oceanica,Fleur de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/316335767_1173531370259600_2795216559149940946_n(2)-scaled.jpg,,TRUE, +N1,28418,sortie-481d0cd2-1c8d-4d95-b4c6-c972220fad74,https://biolit.fr/sorties/sortie-481d0cd2-1c8d-4d95-b4c6-c972220fad74/,Camille Benyamine,,11/24/2022 0:00,10.0000000,12.0000000,43.239831000000,5.362405000000,,Bain des Dames,27168,observation-481d0cd2-1c8d-4d95-b4c6-c972220fad74-6,https://biolit.fr/observations/observation-481d0cd2-1c8d-4d95-b4c6-c972220fad74-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/313342787_2568974623245522_8257198668653415165_n(1)-scaled.jpg,,FALSE, +N1,28418,sortie-481d0cd2-1c8d-4d95-b4c6-c972220fad74,https://biolit.fr/sorties/sortie-481d0cd2-1c8d-4d95-b4c6-c972220fad74/,Camille Benyamine,,11/24/2022 0:00,10.0000000,12.0000000,43.239831000000,5.362405000000,,Bain des Dames,27170,observation-481d0cd2-1c8d-4d95-b4c6-c972220fad74-7,https://biolit.fr/observations/observation-481d0cd2-1c8d-4d95-b4c6-c972220fad74-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/313493770_934833450989414_2666185091710113582_n(1)-scaled.jpg,,FALSE, +N1,28419,sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c,https://biolit.fr/sorties/sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c/,LABELBLEU,,11/23/2022 0:00,14.0000000,16.0000000,42.774973000000,3.0387430000,LABELBLEU,Plage de Torreilles,27172,observation-0e5c16be-688c-49e3-845e-f88a6f87d54c,https://biolit.fr/observations/observation-0e5c16be-688c-49e3-845e-f88a6f87d54c/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/IMG20221123151753-scaled.jpg,,TRUE, +N1,28419,sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c,https://biolit.fr/sorties/sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c/,LABELBLEU,,11/23/2022 0:00,14.0000000,16.0000000,42.774973000000,3.0387430000,LABELBLEU,Plage de Torreilles,27174,observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-2,https://biolit.fr/observations/observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-2/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/IMG20221123151800-scaled.jpg,,TRUE, +N1,28419,sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c,https://biolit.fr/sorties/sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c/,LABELBLEU,,11/23/2022 0:00,14.0000000,16.0000000,42.774973000000,3.0387430000,LABELBLEU,Plage de Torreilles,27176,observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-3,https://biolit.fr/observations/observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20221123153544-scaled.jpg,,FALSE, +N1,28419,sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c,https://biolit.fr/sorties/sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c/,LABELBLEU,,11/23/2022 0:00,14.0000000,16.0000000,42.774973000000,3.0387430000,LABELBLEU,Plage de Torreilles,27178,observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-4,https://biolit.fr/observations/observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-4/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG20221123153553-scaled.jpg,,TRUE, +N1,28419,sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c,https://biolit.fr/sorties/sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c/,LABELBLEU,,11/23/2022 0:00,14.0000000,16.0000000,42.774973000000,3.0387430000,LABELBLEU,Plage de Torreilles,27180,observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-5,https://biolit.fr/observations/observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-5/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/IMG20221123153557-scaled.jpg,,TRUE, +N1,28419,sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c,https://biolit.fr/sorties/sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c/,LABELBLEU,,11/23/2022 0:00,14.0000000,16.0000000,42.774973000000,3.0387430000,LABELBLEU,Plage de Torreilles,27182,observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-6,https://biolit.fr/observations/observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-6/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG20221123153602-scaled.jpg,,TRUE, +N1,28419,sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c,https://biolit.fr/sorties/sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c/,LABELBLEU,,11/23/2022 0:00,14.0000000,16.0000000,42.774973000000,3.0387430000,LABELBLEU,Plage de Torreilles,27184,observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-7,https://biolit.fr/observations/observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20221123153607-scaled.jpg,,FALSE, +N1,28419,sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c,https://biolit.fr/sorties/sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c/,LABELBLEU,,11/23/2022 0:00,14.0000000,16.0000000,42.774973000000,3.0387430000,LABELBLEU,Plage de Torreilles,27186,observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-8,https://biolit.fr/observations/observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20221123153611-scaled.jpg,,FALSE, +N1,28419,sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c,https://biolit.fr/sorties/sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c/,LABELBLEU,,11/23/2022 0:00,14.0000000,16.0000000,42.774973000000,3.0387430000,LABELBLEU,Plage de Torreilles,27188,observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-9,https://biolit.fr/observations/observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20221123153616-scaled.jpg,,FALSE, +N1,28419,sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c,https://biolit.fr/sorties/sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c/,LABELBLEU,,11/23/2022 0:00,14.0000000,16.0000000,42.774973000000,3.0387430000,LABELBLEU,Plage de Torreilles,27190,observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-10,https://biolit.fr/observations/observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-10/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/IMG20221123153618-scaled.jpg,,TRUE, +N1,28420,sortie-6e7f3e7a-ec0f-4075-a77c-ccbb6c9dc058,https://biolit.fr/sorties/sortie-6e7f3e7a-ec0f-4075-a77c-ccbb6c9dc058/,AIEJE,,10/26/2022 0:00,10.0000000,11.0000000,43.329086000000,5.160435000000,AIEJE,CARRY LE ROUET ,27192,observation-6e7f3e7a-ec0f-4075-a77c-ccbb6c9dc058,https://biolit.fr/observations/observation-6e7f3e7a-ec0f-4075-a77c-ccbb6c9dc058/,Posidonia oceanica,Fleur de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_2562-scaled.jpg,,TRUE, +N1,28420,sortie-6e7f3e7a-ec0f-4075-a77c-ccbb6c9dc058,https://biolit.fr/sorties/sortie-6e7f3e7a-ec0f-4075-a77c-ccbb6c9dc058/,AIEJE,,10/26/2022 0:00,10.0000000,11.0000000,43.329086000000,5.160435000000,AIEJE,CARRY LE ROUET ,27194,observation-6e7f3e7a-ec0f-4075-a77c-ccbb6c9dc058-2,https://biolit.fr/observations/observation-6e7f3e7a-ec0f-4075-a77c-ccbb6c9dc058-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2563-scaled.jpg,,FALSE, +N1,28420,sortie-6e7f3e7a-ec0f-4075-a77c-ccbb6c9dc058,https://biolit.fr/sorties/sortie-6e7f3e7a-ec0f-4075-a77c-ccbb6c9dc058/,AIEJE,,10/26/2022 0:00,10.0000000,11.0000000,43.329086000000,5.160435000000,AIEJE,CARRY LE ROUET ,27196,observation-6e7f3e7a-ec0f-4075-a77c-ccbb6c9dc058-3,https://biolit.fr/observations/observation-6e7f3e7a-ec0f-4075-a77c-ccbb6c9dc058-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2555-scaled.jpg,,FALSE, +N1,28420,sortie-6e7f3e7a-ec0f-4075-a77c-ccbb6c9dc058,https://biolit.fr/sorties/sortie-6e7f3e7a-ec0f-4075-a77c-ccbb6c9dc058/,AIEJE,,10/26/2022 0:00,10.0000000,11.0000000,43.329086000000,5.160435000000,AIEJE,CARRY LE ROUET ,27198,observation-6e7f3e7a-ec0f-4075-a77c-ccbb6c9dc058-4,https://biolit.fr/observations/observation-6e7f3e7a-ec0f-4075-a77c-ccbb6c9dc058-4/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2561-scaled.jpg,,TRUE, +N1,28421,sortie-187961d2-bd51-4bdd-84d7-84b445bbb89d,https://biolit.fr/sorties/sortie-187961d2-bd51-4bdd-84d7-84b445bbb89d/,AIEJE,,10/24/2022 0:00,10.0000000,11.0000000,43.329024000000,5.160457000000,AIEJE,CARRY LE ROUET ,27200,observation-187961d2-bd51-4bdd-84d7-84b445bbb89d,https://biolit.fr/observations/observation-187961d2-bd51-4bdd-84d7-84b445bbb89d/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2551-scaled.jpg,,FALSE, +N1,28421,sortie-187961d2-bd51-4bdd-84d7-84b445bbb89d,https://biolit.fr/sorties/sortie-187961d2-bd51-4bdd-84d7-84b445bbb89d/,AIEJE,,10/24/2022 0:00,10.0000000,11.0000000,43.329024000000,5.160457000000,AIEJE,CARRY LE ROUET ,27202,observation-187961d2-bd51-4bdd-84d7-84b445bbb89d-2,https://biolit.fr/observations/observation-187961d2-bd51-4bdd-84d7-84b445bbb89d-2/,Posidonia oceanica,Fleur de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_2553-scaled.jpg,,TRUE, +N1,28421,sortie-187961d2-bd51-4bdd-84d7-84b445bbb89d,https://biolit.fr/sorties/sortie-187961d2-bd51-4bdd-84d7-84b445bbb89d/,AIEJE,,10/24/2022 0:00,10.0000000,11.0000000,43.329024000000,5.160457000000,AIEJE,CARRY LE ROUET ,27204,observation-187961d2-bd51-4bdd-84d7-84b445bbb89d-3,https://biolit.fr/observations/observation-187961d2-bd51-4bdd-84d7-84b445bbb89d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2554-scaled.jpg,,FALSE, +N1,28421,sortie-187961d2-bd51-4bdd-84d7-84b445bbb89d,https://biolit.fr/sorties/sortie-187961d2-bd51-4bdd-84d7-84b445bbb89d/,AIEJE,,10/24/2022 0:00,10.0000000,11.0000000,43.329024000000,5.160457000000,AIEJE,CARRY LE ROUET ,27206,observation-187961d2-bd51-4bdd-84d7-84b445bbb89d-4,https://biolit.fr/observations/observation-187961d2-bd51-4bdd-84d7-84b445bbb89d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1113-scaled.jpg,,FALSE, +N1,28422,sortie-d2a73318-2070-462e-b7c0-b8e64059ec80,https://biolit.fr/sorties/sortie-d2a73318-2070-462e-b7c0-b8e64059ec80/,Institut Marin du Seaquarium,,10/31/2022 0:00,10.0000000,11.0000000,43.525931000000,4.138297000000,Institut Marin du Seaquarium,Plage du Seaquarium,27208,observation-d2a73318-2070-462e-b7c0-b8e64059ec80,https://biolit.fr/observations/observation-d2a73318-2070-462e-b7c0-b8e64059ec80/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221031_110713-scaled.jpg,,FALSE, +N1,28423,sortie-ebf38e54-2e52-46c4-aacb-682e10ee32ad,https://biolit.fr/sorties/sortie-ebf38e54-2e52-46c4-aacb-682e10ee32ad/,Institut Marin du Seaquarium,,10/26/2022 0:00,10.0000000,11.0000000,43.526024000000,4.138207000000,Institut Marin du Seaquarium,Plage du Seaquarium,27210,observation-ebf38e54-2e52-46c4-aacb-682e10ee32ad,https://biolit.fr/observations/observation-ebf38e54-2e52-46c4-aacb-682e10ee32ad/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture_5.PNG,,FALSE, +N1,28424,sortie-68899bd2-0535-4c38-af3f-bebbd2b13fb8,https://biolit.fr/sorties/sortie-68899bd2-0535-4c38-af3f-bebbd2b13fb8/,Institut Marin du Seaquarium,,10/25/2022 0:00,10.0000000,12.0000000,43.526224000000,4.13849000000,Institut Marin du Seaquarium,Plage Seaquarium,27212,observation-68899bd2-0535-4c38-af3f-bebbd2b13fb8,https://biolit.fr/observations/observation-68899bd2-0535-4c38-af3f-bebbd2b13fb8/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221025_115012-scaled.jpg,,TRUE, +N1,28424,sortie-68899bd2-0535-4c38-af3f-bebbd2b13fb8,https://biolit.fr/sorties/sortie-68899bd2-0535-4c38-af3f-bebbd2b13fb8/,Institut Marin du Seaquarium,,10/25/2022 0:00,10.0000000,12.0000000,43.526224000000,4.13849000000,Institut Marin du Seaquarium,Plage Seaquarium,27214,observation-68899bd2-0535-4c38-af3f-bebbd2b13fb8-2,https://biolit.fr/observations/observation-68899bd2-0535-4c38-af3f-bebbd2b13fb8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221025_115129-scaled.jpg,,FALSE, +N1,28425,sortie-a8d7c760-1300-4c46-9739-d862bc36821f,https://biolit.fr/sorties/sortie-a8d7c760-1300-4c46-9739-d862bc36821f/,LABELBLEU,,10/08/2022,10.0000000,12.0000000,42.535086000000,3.064418000000,LABELBLEU,Criques de porteils,27216,observation-a8d7c760-1300-4c46-9739-d862bc36821f,https://biolit.fr/observations/observation-a8d7c760-1300-4c46-9739-d862bc36821f/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/codium en boule-scaled.jpg,,TRUE, +N1,28425,sortie-a8d7c760-1300-4c46-9739-d862bc36821f,https://biolit.fr/sorties/sortie-a8d7c760-1300-4c46-9739-d862bc36821f/,LABELBLEU,,10/08/2022,10.0000000,12.0000000,42.535086000000,3.064418000000,LABELBLEU,Criques de porteils,27218,observation-a8d7c760-1300-4c46-9739-d862bc36821f-2,https://biolit.fr/observations/observation-a8d7c760-1300-4c46-9739-d862bc36821f-2/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/2023/07/couteau_0-scaled.jpg,,TRUE, +N1,28425,sortie-a8d7c760-1300-4c46-9739-d862bc36821f,https://biolit.fr/sorties/sortie-a8d7c760-1300-4c46-9739-d862bc36821f/,LABELBLEU,,10/08/2022,10.0000000,12.0000000,42.535086000000,3.064418000000,LABELBLEU,Criques de porteils,27220,observation-a8d7c760-1300-4c46-9739-d862bc36821f-3,https://biolit.fr/observations/observation-a8d7c760-1300-4c46-9739-d862bc36821f-3/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/crabe poilu-scaled.jpg,,TRUE, +N1,28425,sortie-a8d7c760-1300-4c46-9739-d862bc36821f,https://biolit.fr/sorties/sortie-a8d7c760-1300-4c46-9739-d862bc36821f/,LABELBLEU,,10/08/2022,10.0000000,12.0000000,42.535086000000,3.064418000000,LABELBLEU,Criques de porteils,27222,observation-a8d7c760-1300-4c46-9739-d862bc36821f-4,https://biolit.fr/observations/observation-a8d7c760-1300-4c46-9739-d862bc36821f-4/,Eunicella singularis,Gorgone blanche,,https://biolit.fr/wp-content/uploads/2023/07/gorgone blanche-scaled.jpg,,TRUE, +N1,28425,sortie-a8d7c760-1300-4c46-9739-d862bc36821f,https://biolit.fr/sorties/sortie-a8d7c760-1300-4c46-9739-d862bc36821f/,LABELBLEU,,10/08/2022,10.0000000,12.0000000,42.535086000000,3.064418000000,LABELBLEU,Criques de porteils,27224,observation-a8d7c760-1300-4c46-9739-d862bc36821f-5,https://biolit.fr/observations/observation-a8d7c760-1300-4c46-9739-d862bc36821f-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20221008114124-scaled.jpg,,FALSE, +N1,28425,sortie-a8d7c760-1300-4c46-9739-d862bc36821f,https://biolit.fr/sorties/sortie-a8d7c760-1300-4c46-9739-d862bc36821f/,LABELBLEU,,10/08/2022,10.0000000,12.0000000,42.535086000000,3.064418000000,LABELBLEU,Criques de porteils,27226,observation-a8d7c760-1300-4c46-9739-d862bc36821f-6,https://biolit.fr/observations/observation-a8d7c760-1300-4c46-9739-d862bc36821f-6/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/crabe marbre-scaled.jpg,,TRUE, +N1,28425,sortie-a8d7c760-1300-4c46-9739-d862bc36821f,https://biolit.fr/sorties/sortie-a8d7c760-1300-4c46-9739-d862bc36821f/,LABELBLEU,,10/08/2022,10.0000000,12.0000000,42.535086000000,3.064418000000,LABELBLEU,Criques de porteils,27228,observation-a8d7c760-1300-4c46-9739-d862bc36821f-7,https://biolit.fr/observations/observation-a8d7c760-1300-4c46-9739-d862bc36821f-7/,Halimeda tuna,Monnaie de Poséidon,,https://biolit.fr/wp-content/uploads/2023/07/Halimede-scaled.jpg,,TRUE, +N1,28425,sortie-a8d7c760-1300-4c46-9739-d862bc36821f,https://biolit.fr/sorties/sortie-a8d7c760-1300-4c46-9739-d862bc36821f/,LABELBLEU,,10/08/2022,10.0000000,12.0000000,42.535086000000,3.064418000000,LABELBLEU,Criques de porteils,27230,observation-a8d7c760-1300-4c46-9739-d862bc36821f-8,https://biolit.fr/observations/observation-a8d7c760-1300-4c46-9739-d862bc36821f-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Liagore_0-scaled.jpg,,FALSE, +N1,28425,sortie-a8d7c760-1300-4c46-9739-d862bc36821f,https://biolit.fr/sorties/sortie-a8d7c760-1300-4c46-9739-d862bc36821f/,LABELBLEU,,10/08/2022,10.0000000,12.0000000,42.535086000000,3.064418000000,LABELBLEU,Criques de porteils,27232,observation-a8d7c760-1300-4c46-9739-d862bc36821f-9,https://biolit.fr/observations/observation-a8d7c760-1300-4c46-9739-d862bc36821f-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/moule_0-scaled.jpg,,FALSE, +N1,28425,sortie-a8d7c760-1300-4c46-9739-d862bc36821f,https://biolit.fr/sorties/sortie-a8d7c760-1300-4c46-9739-d862bc36821f/,LABELBLEU,,10/08/2022,10.0000000,12.0000000,42.535086000000,3.064418000000,LABELBLEU,Criques de porteils,27234,observation-a8d7c760-1300-4c46-9739-d862bc36821f-10,https://biolit.fr/observations/observation-a8d7c760-1300-4c46-9739-d862bc36821f-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/porcelaine-scaled.jpg,,FALSE, +N1,28425,sortie-a8d7c760-1300-4c46-9739-d862bc36821f,https://biolit.fr/sorties/sortie-a8d7c760-1300-4c46-9739-d862bc36821f/,LABELBLEU,,10/08/2022,10.0000000,12.0000000,42.535086000000,3.064418000000,LABELBLEU,Criques de porteils,27236,observation-a8d7c760-1300-4c46-9739-d862bc36821f-11,https://biolit.fr/observations/observation-a8d7c760-1300-4c46-9739-d862bc36821f-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/spondylus gaederopus-scaled.jpg,,FALSE, +N1,28425,sortie-a8d7c760-1300-4c46-9739-d862bc36821f,https://biolit.fr/sorties/sortie-a8d7c760-1300-4c46-9739-d862bc36821f/,LABELBLEU,,10/08/2022,10.0000000,12.0000000,42.535086000000,3.064418000000,LABELBLEU,Criques de porteils,27238,observation-a8d7c760-1300-4c46-9739-d862bc36821f-12,https://biolit.fr/observations/observation-a8d7c760-1300-4c46-9739-d862bc36821f-12/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/test oursin-scaled.jpg,,TRUE, +N1,28425,sortie-a8d7c760-1300-4c46-9739-d862bc36821f,https://biolit.fr/sorties/sortie-a8d7c760-1300-4c46-9739-d862bc36821f/,LABELBLEU,,10/08/2022,10.0000000,12.0000000,42.535086000000,3.064418000000,LABELBLEU,Criques de porteils,27240,observation-a8d7c760-1300-4c46-9739-d862bc36821f-13,https://biolit.fr/observations/observation-a8d7c760-1300-4c46-9739-d862bc36821f-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/non identifie2-scaled.jpg,,FALSE, +N1,28425,sortie-a8d7c760-1300-4c46-9739-d862bc36821f,https://biolit.fr/sorties/sortie-a8d7c760-1300-4c46-9739-d862bc36821f/,LABELBLEU,,10/08/2022,10.0000000,12.0000000,42.535086000000,3.064418000000,LABELBLEU,Criques de porteils,27242,observation-a8d7c760-1300-4c46-9739-d862bc36821f-14,https://biolit.fr/observations/observation-a8d7c760-1300-4c46-9739-d862bc36821f-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ulve_0-scaled.jpg,,FALSE, +N1,28426,sortie-2c033447-96d8-4198-b68e-c4de49ea98ce,https://biolit.fr/sorties/sortie-2c033447-96d8-4198-b68e-c4de49ea98ce/,Marine,,10/08/2022,11.0000000,11.0:15,43.284218000000,5.315710000000,Planète Mer,Plage st Estève ,27244,observation-2c033447-96d8-4198-b68e-c4de49ea98ce,https://biolit.fr/observations/observation-2c033447-96d8-4198-b68e-c4de49ea98ce/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/1665660991219_compress94-scaled.jpg,,TRUE, +N1,28426,sortie-2c033447-96d8-4198-b68e-c4de49ea98ce,https://biolit.fr/sorties/sortie-2c033447-96d8-4198-b68e-c4de49ea98ce/,Marine,,10/08/2022,11.0000000,11.0:15,43.284218000000,5.315710000000,Planète Mer,Plage st Estève ,27246,observation-2c033447-96d8-4198-b68e-c4de49ea98ce-2,https://biolit.fr/observations/observation-2c033447-96d8-4198-b68e-c4de49ea98ce-2/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/1665660991131_compress34-scaled.jpg,,TRUE, +N1,28426,sortie-2c033447-96d8-4198-b68e-c4de49ea98ce,https://biolit.fr/sorties/sortie-2c033447-96d8-4198-b68e-c4de49ea98ce/,Marine,,10/08/2022,11.0000000,11.0:15,43.284218000000,5.315710000000,Planète Mer,Plage st Estève ,27248,observation-2c033447-96d8-4198-b68e-c4de49ea98ce-3,https://biolit.fr/observations/observation-2c033447-96d8-4198-b68e-c4de49ea98ce-3/,Posidonia oceanica,Fleur de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/1665660991164_compress5-scaled.jpg,,TRUE, +N1,28426,sortie-2c033447-96d8-4198-b68e-c4de49ea98ce,https://biolit.fr/sorties/sortie-2c033447-96d8-4198-b68e-c4de49ea98ce/,Marine,,10/08/2022,11.0000000,11.0:15,43.284218000000,5.315710000000,Planète Mer,Plage st Estève ,27250,observation-2c033447-96d8-4198-b68e-c4de49ea98ce-4,https://biolit.fr/observations/observation-2c033447-96d8-4198-b68e-c4de49ea98ce-4/,Posidonia oceanica,Fleur de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/1665660991113_compress73-scaled.jpg,,TRUE, +N1,28427,sortie-254d7deb-6f3a-471b-9655-9249c17984b8,https://biolit.fr/sorties/sortie-254d7deb-6f3a-471b-9655-9249c17984b8/,Institut Marin du Seaquarium,,9/18/2022 0:00,16.0000000,18.0000000,43.557372000000,4.0696770000,Institut Marin du Seaquarium,Plage du Couchant La Grande Motte,27252,observation-254d7deb-6f3a-471b-9655-9249c17984b8,https://biolit.fr/observations/observation-254d7deb-6f3a-471b-9655-9249c17984b8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mactre_18092022-scaled.jpg,,FALSE, +N1,28428,sortie-1c727099-e5f9-4036-89a8-a283a016dfdf,https://biolit.fr/sorties/sortie-1c727099-e5f9-4036-89a8-a283a016dfdf/,Institut Marin du Seaquarium,,9/18/2022 0:00,16.0000000,18.0000000,43.557372000000,4.0696770000,Institut Marin du Seaquarium,Plage du Couchant La Grande Motte,27254,observation-1c727099-e5f9-4036-89a8-a283a016dfdf,https://biolit.fr/observations/observation-1c727099-e5f9-4036-89a8-a283a016dfdf/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mactre_18092022-scaled.jpg,,FALSE, +N1,28428,sortie-1c727099-e5f9-4036-89a8-a283a016dfdf,https://biolit.fr/sorties/sortie-1c727099-e5f9-4036-89a8-a283a016dfdf/,Institut Marin du Seaquarium,,9/18/2022 0:00,16.0000000,18.0000000,43.557372000000,4.0696770000,Institut Marin du Seaquarium,Plage du Couchant La Grande Motte,27255,observation-1c727099-e5f9-4036-89a8-a283a016dfdf-2,https://biolit.fr/observations/observation-1c727099-e5f9-4036-89a8-a283a016dfdf-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/posidonie zostere-scaled.jpg,,FALSE, +N1,28428,sortie-1c727099-e5f9-4036-89a8-a283a016dfdf,https://biolit.fr/sorties/sortie-1c727099-e5f9-4036-89a8-a283a016dfdf/,Institut Marin du Seaquarium,,9/18/2022 0:00,16.0000000,18.0000000,43.557372000000,4.0696770000,Institut Marin du Seaquarium,Plage du Couchant La Grande Motte,27257,observation-1c727099-e5f9-4036-89a8-a283a016dfdf-3,https://biolit.fr/observations/observation-1c727099-e5f9-4036-89a8-a283a016dfdf-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/couteau silique-scaled.jpg,,FALSE, +N1,28428,sortie-1c727099-e5f9-4036-89a8-a283a016dfdf,https://biolit.fr/sorties/sortie-1c727099-e5f9-4036-89a8-a283a016dfdf/,Institut Marin du Seaquarium,,9/18/2022 0:00,16.0000000,18.0000000,43.557372000000,4.0696770000,Institut Marin du Seaquarium,Plage du Couchant La Grande Motte,27259,observation-1c727099-e5f9-4036-89a8-a283a016dfdf-4,https://biolit.fr/observations/observation-1c727099-e5f9-4036-89a8-a283a016dfdf-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Turitelle commune-scaled.jpg,,FALSE, +N1,28429,sortie-685373a0-78c1-4ae6-b817-b97762d1a5fa,https://biolit.fr/sorties/sortie-685373a0-78c1-4ae6-b817-b97762d1a5fa/,LABELBLEU,,8/30/2022 0:00,9.0000000,11.0000000,42.641226000000,3.035160000000,,Plage Saint-Cyprien,27261,observation-685373a0-78c1-4ae6-b817-b97762d1a5fa,https://biolit.fr/observations/observation-685373a0-78c1-4ae6-b817-b97762d1a5fa/,,,,https://biolit.fr/wp-content/uploads/2023/07/Biolit Telline.jpg,,FALSE, +N1,28429,sortie-685373a0-78c1-4ae6-b817-b97762d1a5fa,https://biolit.fr/sorties/sortie-685373a0-78c1-4ae6-b817-b97762d1a5fa/,LABELBLEU,,8/30/2022 0:00,9.0000000,11.0000000,42.641226000000,3.035160000000,,Plage Saint-Cyprien,27263,observation-685373a0-78c1-4ae6-b817-b97762d1a5fa-2,https://biolit.fr/observations/observation-685373a0-78c1-4ae6-b817-b97762d1a5fa-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Biolit coque.jpg,,FALSE, +N1,28429,sortie-685373a0-78c1-4ae6-b817-b97762d1a5fa,https://biolit.fr/sorties/sortie-685373a0-78c1-4ae6-b817-b97762d1a5fa/,LABELBLEU,,8/30/2022 0:00,9.0000000,11.0000000,42.641226000000,3.035160000000,,Plage Saint-Cyprien,27265,observation-685373a0-78c1-4ae6-b817-b97762d1a5fa-3,https://biolit.fr/observations/observation-685373a0-78c1-4ae6-b817-b97762d1a5fa-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Biolit anomie.jpg,,FALSE, +N1,28429,sortie-685373a0-78c1-4ae6-b817-b97762d1a5fa,https://biolit.fr/sorties/sortie-685373a0-78c1-4ae6-b817-b97762d1a5fa/,LABELBLEU,,8/30/2022 0:00,9.0000000,11.0000000,42.641226000000,3.035160000000,,Plage Saint-Cyprien,27267,observation-685373a0-78c1-4ae6-b817-b97762d1a5fa-4,https://biolit.fr/observations/observation-685373a0-78c1-4ae6-b817-b97762d1a5fa-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Biolit couteau.jpg,,FALSE, +N1,28429,sortie-685373a0-78c1-4ae6-b817-b97762d1a5fa,https://biolit.fr/sorties/sortie-685373a0-78c1-4ae6-b817-b97762d1a5fa/,LABELBLEU,,8/30/2022 0:00,9.0000000,11.0000000,42.641226000000,3.035160000000,,Plage Saint-Cyprien,27269,observation-685373a0-78c1-4ae6-b817-b97762d1a5fa-5,https://biolit.fr/observations/observation-685373a0-78c1-4ae6-b817-b97762d1a5fa-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Biolit Lucine.jpg,,FALSE, +N1,28429,sortie-685373a0-78c1-4ae6-b817-b97762d1a5fa,https://biolit.fr/sorties/sortie-685373a0-78c1-4ae6-b817-b97762d1a5fa/,LABELBLEU,,8/30/2022 0:00,9.0000000,11.0000000,42.641226000000,3.035160000000,,Plage Saint-Cyprien,27271,observation-685373a0-78c1-4ae6-b817-b97762d1a5fa-6,https://biolit.fr/observations/observation-685373a0-78c1-4ae6-b817-b97762d1a5fa-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Biolit Telline 2.jpg,,FALSE, +N1,28429,sortie-685373a0-78c1-4ae6-b817-b97762d1a5fa,https://biolit.fr/sorties/sortie-685373a0-78c1-4ae6-b817-b97762d1a5fa/,LABELBLEU,,8/30/2022 0:00,9.0000000,11.0000000,42.641226000000,3.035160000000,,Plage Saint-Cyprien,27273,observation-685373a0-78c1-4ae6-b817-b97762d1a5fa-7,https://biolit.fr/observations/observation-685373a0-78c1-4ae6-b817-b97762d1a5fa-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Biolit morceau nasse reticulee.jpg,,FALSE, +N1,28429,sortie-685373a0-78c1-4ae6-b817-b97762d1a5fa,https://biolit.fr/sorties/sortie-685373a0-78c1-4ae6-b817-b97762d1a5fa/,LABELBLEU,,8/30/2022 0:00,9.0000000,11.0000000,42.641226000000,3.035160000000,,Plage Saint-Cyprien,27275,observation-685373a0-78c1-4ae6-b817-b97762d1a5fa-8,https://biolit.fr/observations/observation-685373a0-78c1-4ae6-b817-b97762d1a5fa-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Biolit scrobiculaire.jpg,,FALSE, +N1,28430,sortie-6d847e85-5c99-4904-8db9-403a6e0536be,https://biolit.fr/sorties/sortie-6d847e85-5c99-4904-8db9-403a6e0536be/,Andromede,,5/21/2022 0:00,9.0000000,11.0000000,43.239894000000,5.362450000000,Planète Mer,"Plage du Bain des Dames, Marseille pointe rouge",27277,observation-6d847e85-5c99-4904-8db9-403a6e0536be,https://biolit.fr/observations/observation-6d847e85-5c99-4904-8db9-403a6e0536be/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_5005-scaled.jpg,,FALSE, +N1,28430,sortie-6d847e85-5c99-4904-8db9-403a6e0536be,https://biolit.fr/sorties/sortie-6d847e85-5c99-4904-8db9-403a6e0536be/,Andromede,,5/21/2022 0:00,9.0000000,11.0000000,43.239894000000,5.362450000000,Planète Mer,"Plage du Bain des Dames, Marseille pointe rouge",27279,observation-6d847e85-5c99-4904-8db9-403a6e0536be-2,https://biolit.fr/observations/observation-6d847e85-5c99-4904-8db9-403a6e0536be-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_5006-scaled.jpg,,FALSE, +N1,28430,sortie-6d847e85-5c99-4904-8db9-403a6e0536be,https://biolit.fr/sorties/sortie-6d847e85-5c99-4904-8db9-403a6e0536be/,Andromede,,5/21/2022 0:00,9.0000000,11.0000000,43.239894000000,5.362450000000,Planète Mer,"Plage du Bain des Dames, Marseille pointe rouge",27281,observation-6d847e85-5c99-4904-8db9-403a6e0536be-3,https://biolit.fr/observations/observation-6d847e85-5c99-4904-8db9-403a6e0536be-3/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/_MG_5008.JPG,,TRUE, +N1,28430,sortie-6d847e85-5c99-4904-8db9-403a6e0536be,https://biolit.fr/sorties/sortie-6d847e85-5c99-4904-8db9-403a6e0536be/,Andromede,,5/21/2022 0:00,9.0000000,11.0000000,43.239894000000,5.362450000000,Planète Mer,"Plage du Bain des Dames, Marseille pointe rouge",27283,observation-6d847e85-5c99-4904-8db9-403a6e0536be-4,https://biolit.fr/observations/observation-6d847e85-5c99-4904-8db9-403a6e0536be-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_5010.JPG,,FALSE, +N1,28430,sortie-6d847e85-5c99-4904-8db9-403a6e0536be,https://biolit.fr/sorties/sortie-6d847e85-5c99-4904-8db9-403a6e0536be/,Andromede,,5/21/2022 0:00,9.0000000,11.0000000,43.239894000000,5.362450000000,Planète Mer,"Plage du Bain des Dames, Marseille pointe rouge",27285,observation-6d847e85-5c99-4904-8db9-403a6e0536be-5,https://biolit.fr/observations/observation-6d847e85-5c99-4904-8db9-403a6e0536be-5/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/_MG_5012.JPG,,TRUE, +N1,28430,sortie-6d847e85-5c99-4904-8db9-403a6e0536be,https://biolit.fr/sorties/sortie-6d847e85-5c99-4904-8db9-403a6e0536be/,Andromede,,5/21/2022 0:00,9.0000000,11.0000000,43.239894000000,5.362450000000,Planète Mer,"Plage du Bain des Dames, Marseille pointe rouge",27287,observation-6d847e85-5c99-4904-8db9-403a6e0536be-6,https://biolit.fr/observations/observation-6d847e85-5c99-4904-8db9-403a6e0536be-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_5015.JPG,,FALSE, +N1,28430,sortie-6d847e85-5c99-4904-8db9-403a6e0536be,https://biolit.fr/sorties/sortie-6d847e85-5c99-4904-8db9-403a6e0536be/,Andromede,,5/21/2022 0:00,9.0000000,11.0000000,43.239894000000,5.362450000000,Planète Mer,"Plage du Bain des Dames, Marseille pointe rouge",27289,observation-6d847e85-5c99-4904-8db9-403a6e0536be-7,https://biolit.fr/observations/observation-6d847e85-5c99-4904-8db9-403a6e0536be-7/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/_MG_5022.JPG,,TRUE, +N1,28430,sortie-6d847e85-5c99-4904-8db9-403a6e0536be,https://biolit.fr/sorties/sortie-6d847e85-5c99-4904-8db9-403a6e0536be/,Andromede,,5/21/2022 0:00,9.0000000,11.0000000,43.239894000000,5.362450000000,Planète Mer,"Plage du Bain des Dames, Marseille pointe rouge",27291,observation-6d847e85-5c99-4904-8db9-403a6e0536be-8,https://biolit.fr/observations/observation-6d847e85-5c99-4904-8db9-403a6e0536be-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_5023.JPG,,FALSE, +N1,28430,sortie-6d847e85-5c99-4904-8db9-403a6e0536be,https://biolit.fr/sorties/sortie-6d847e85-5c99-4904-8db9-403a6e0536be/,Andromede,,5/21/2022 0:00,9.0000000,11.0000000,43.239894000000,5.362450000000,Planète Mer,"Plage du Bain des Dames, Marseille pointe rouge",27293,observation-6d847e85-5c99-4904-8db9-403a6e0536be-9,https://biolit.fr/observations/observation-6d847e85-5c99-4904-8db9-403a6e0536be-9/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/_MG_5025.JPG,,TRUE, +N1,28430,sortie-6d847e85-5c99-4904-8db9-403a6e0536be,https://biolit.fr/sorties/sortie-6d847e85-5c99-4904-8db9-403a6e0536be/,Andromede,,5/21/2022 0:00,9.0000000,11.0000000,43.239894000000,5.362450000000,Planète Mer,"Plage du Bain des Dames, Marseille pointe rouge",27295,observation-6d847e85-5c99-4904-8db9-403a6e0536be-10,https://biolit.fr/observations/observation-6d847e85-5c99-4904-8db9-403a6e0536be-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_5026.JPG,,FALSE, +N1,28430,sortie-6d847e85-5c99-4904-8db9-403a6e0536be,https://biolit.fr/sorties/sortie-6d847e85-5c99-4904-8db9-403a6e0536be/,Andromede,,5/21/2022 0:00,9.0000000,11.0000000,43.239894000000,5.362450000000,Planète Mer,"Plage du Bain des Dames, Marseille pointe rouge",27297,observation-6d847e85-5c99-4904-8db9-403a6e0536be-11,https://biolit.fr/observations/observation-6d847e85-5c99-4904-8db9-403a6e0536be-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_5027.JPG,,FALSE, +N1,28431,sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b,https://biolit.fr/sorties/sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b/,Institut Marin du Seaquarium,,4/29/2022 0:00,10.0000000,12.0000000,43.526306000000,4.138452000000,Institut Marin du Seaquarium,Plage Seaquarium - Grau du Roi,27299,observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b,https://biolit.fr/observations/observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220429_114932-scaled.jpg,,TRUE, +N1,28431,sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b,https://biolit.fr/sorties/sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b/,Institut Marin du Seaquarium,,4/29/2022 0:00,10.0000000,12.0000000,43.526306000000,4.138452000000,Institut Marin du Seaquarium,Plage Seaquarium - Grau du Roi,27301,observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-2,https://biolit.fr/observations/observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-2/,Grateloupia turuturu,Grateloupe du Pacifique,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220429_115006-scaled.jpg,,TRUE, +N1,28431,sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b,https://biolit.fr/sorties/sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b/,Institut Marin du Seaquarium,,4/29/2022 0:00,10.0000000,12.0000000,43.526306000000,4.138452000000,Institut Marin du Seaquarium,Plage Seaquarium - Grau du Roi,27303,observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-3,https://biolit.fr/observations/observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-3/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220429_114810-scaled.jpg,,TRUE, +N1,28431,sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b,https://biolit.fr/sorties/sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b/,Institut Marin du Seaquarium,,4/29/2022 0:00,10.0000000,12.0000000,43.526306000000,4.138452000000,Institut Marin du Seaquarium,Plage Seaquarium - Grau du Roi,27305,observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-4,https://biolit.fr/observations/observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-4/,Turritellinella tricarinata,Turritelle commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220429_113842-scaled.jpg,,TRUE, +N1,28431,sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b,https://biolit.fr/sorties/sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b/,Institut Marin du Seaquarium,,4/29/2022 0:00,10.0000000,12.0000000,43.526306000000,4.138452000000,Institut Marin du Seaquarium,Plage Seaquarium - Grau du Roi,27307,observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-5,https://biolit.fr/observations/observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220429_113815-scaled.jpg,,FALSE, +N1,28431,sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b,https://biolit.fr/sorties/sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b/,Institut Marin du Seaquarium,,4/29/2022 0:00,10.0000000,12.0000000,43.526306000000,4.138452000000,Institut Marin du Seaquarium,Plage Seaquarium - Grau du Roi,27309,observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-6,https://biolit.fr/observations/observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-6/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220429_113802-scaled.jpg,,TRUE, +N1,28431,sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b,https://biolit.fr/sorties/sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b/,Institut Marin du Seaquarium,,4/29/2022 0:00,10.0000000,12.0000000,43.526306000000,4.138452000000,Institut Marin du Seaquarium,Plage Seaquarium - Grau du Roi,27311,observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-7,https://biolit.fr/observations/observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-7/,Tritia neritea,Cyclope néritoïde,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220429_113732-scaled.jpg,,TRUE, +N1,28431,sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b,https://biolit.fr/sorties/sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b/,Institut Marin du Seaquarium,,4/29/2022 0:00,10.0000000,12.0000000,43.526306000000,4.138452000000,Institut Marin du Seaquarium,Plage Seaquarium - Grau du Roi,27313,observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-8,https://biolit.fr/observations/observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-8/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220429_113627-scaled.jpg,,TRUE, +N1,28431,sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b,https://biolit.fr/sorties/sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b/,Institut Marin du Seaquarium,,4/29/2022 0:00,10.0000000,12.0000000,43.526306000000,4.138452000000,Institut Marin du Seaquarium,Plage Seaquarium - Grau du Roi,27315,observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-9,https://biolit.fr/observations/observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-9/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220429_113559-scaled.jpg,,TRUE, +N1,28431,sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b,https://biolit.fr/sorties/sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b/,Institut Marin du Seaquarium,,4/29/2022 0:00,10.0000000,12.0000000,43.526306000000,4.138452000000,Institut Marin du Seaquarium,Plage Seaquarium - Grau du Roi,27317,observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-10,https://biolit.fr/observations/observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220429_113545-scaled.jpg,,FALSE, +N1,28431,sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b,https://biolit.fr/sorties/sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b/,Institut Marin du Seaquarium,,4/29/2022 0:00,10.0000000,12.0000000,43.526306000000,4.138452000000,Institut Marin du Seaquarium,Plage Seaquarium - Grau du Roi,27319,observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-11,https://biolit.fr/observations/observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-11/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220429_113459-scaled.jpg,,TRUE, +N1,28431,sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b,https://biolit.fr/sorties/sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b/,Institut Marin du Seaquarium,,4/29/2022 0:00,10.0000000,12.0000000,43.526306000000,4.138452000000,Institut Marin du Seaquarium,Plage Seaquarium - Grau du Roi,27321,observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-12,https://biolit.fr/observations/observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-12/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220429_113402-scaled.jpg,,TRUE, +N1,28431,sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b,https://biolit.fr/sorties/sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b/,Institut Marin du Seaquarium,,4/29/2022 0:00,10.0000000,12.0000000,43.526306000000,4.138452000000,Institut Marin du Seaquarium,Plage Seaquarium - Grau du Roi,27323,observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-13,https://biolit.fr/observations/observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-13/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220429_113349-scaled.jpg,,TRUE, +N1,28432,sortie-0cd0e671-272b-413a-8c79-bd8ceba4d206,https://biolit.fr/sorties/sortie-0cd0e671-272b-413a-8c79-bd8ceba4d206/,Marine,,05/07/2022,17.0000000,17.000005,43.202272000000,5.498210000000,,Calanque d'En Vau,27325,observation-0cd0e671-272b-413a-8c79-bd8ceba4d206,https://biolit.fr/observations/observation-0cd0e671-272b-413a-8c79-bd8ceba4d206/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220507_171620_compress40-scaled.jpg,,TRUE, +N1,28432,sortie-0cd0e671-272b-413a-8c79-bd8ceba4d206,https://biolit.fr/sorties/sortie-0cd0e671-272b-413a-8c79-bd8ceba4d206/,Marine,,05/07/2022,17.0000000,17.000005,43.202272000000,5.498210000000,,Calanque d'En Vau,27327,observation-0cd0e671-272b-413a-8c79-bd8ceba4d206-2,https://biolit.fr/observations/observation-0cd0e671-272b-413a-8c79-bd8ceba4d206-2/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220507_171617_compress2-scaled.jpg,,TRUE, +N1,28433,sortie-70c8db60-829b-456c-86f3-6237c0925ee3,https://biolit.fr/sorties/sortie-70c8db60-829b-456c-86f3-6237c0925ee3/,Marine,,4/30/2022 0:00,19.0:15,19.0000000,43.142506000000,6.382592000000,,Plage saint clair,27329,observation-70c8db60-829b-456c-86f3-6237c0925ee3,https://biolit.fr/observations/observation-70c8db60-829b-456c-86f3-6237c0925ee3/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220430_192515-scaled.jpg,,TRUE, +N1,28433,sortie-70c8db60-829b-456c-86f3-6237c0925ee3,https://biolit.fr/sorties/sortie-70c8db60-829b-456c-86f3-6237c0925ee3/,Marine,,4/30/2022 0:00,19.0:15,19.0000000,43.142506000000,6.382592000000,,Plage saint clair,27331,observation-70c8db60-829b-456c-86f3-6237c0925ee3-2,https://biolit.fr/observations/observation-70c8db60-829b-456c-86f3-6237c0925ee3-2/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220430_192519-scaled.jpg,,TRUE, +N1,28434,sortie-feb88219-badd-4393-b53f-56c56ebfc645,https://biolit.fr/sorties/sortie-feb88219-badd-4393-b53f-56c56ebfc645/,CarpeDiem,,4/17/2022 0:00,16.0000000,17.0000000,43.437370000000,6.892520000000,,Calanque d'Anthéor ,27333,observation-feb88219-badd-4393-b53f-56c56ebfc645,https://biolit.fr/observations/observation-feb88219-badd-4393-b53f-56c56ebfc645/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Cymbulia peronii-scaled.jpg,,TRUE, +N1,28434,sortie-feb88219-badd-4393-b53f-56c56ebfc645,https://biolit.fr/sorties/sortie-feb88219-badd-4393-b53f-56c56ebfc645/,CarpeDiem,,4/17/2022 0:00,16.0000000,17.0000000,43.437370000000,6.892520000000,,Calanque d'Anthéor ,27335,observation-feb88219-badd-4393-b53f-56c56ebfc645-2,https://biolit.fr/observations/observation-feb88219-badd-4393-b53f-56c56ebfc645-2/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Cymbulia peronii-scaled.jpg,,TRUE, +N1,28434,sortie-feb88219-badd-4393-b53f-56c56ebfc645,https://biolit.fr/sorties/sortie-feb88219-badd-4393-b53f-56c56ebfc645/,CarpeDiem,,4/17/2022 0:00,16.0000000,17.0000000,43.437370000000,6.892520000000,,Calanque d'Anthéor ,27336,observation-feb88219-badd-4393-b53f-56c56ebfc645-3,https://biolit.fr/observations/observation-feb88219-badd-4393-b53f-56c56ebfc645-3/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Posidonie_3-scaled.jpg,,TRUE, +N1,28434,sortie-feb88219-badd-4393-b53f-56c56ebfc645,https://biolit.fr/sorties/sortie-feb88219-badd-4393-b53f-56c56ebfc645/,CarpeDiem,,4/17/2022 0:00,16.0000000,17.0000000,43.437370000000,6.892520000000,,Calanque d'Anthéor ,27338,observation-feb88219-badd-4393-b53f-56c56ebfc645-4,https://biolit.fr/observations/observation-feb88219-badd-4393-b53f-56c56ebfc645-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220417_161329-scaled.jpg,,FALSE, +N1,28434,sortie-feb88219-badd-4393-b53f-56c56ebfc645,https://biolit.fr/sorties/sortie-feb88219-badd-4393-b53f-56c56ebfc645/,CarpeDiem,,4/17/2022 0:00,16.0000000,17.0000000,43.437370000000,6.892520000000,,Calanque d'Anthéor ,27340,observation-feb88219-badd-4393-b53f-56c56ebfc645-5,https://biolit.fr/observations/observation-feb88219-badd-4393-b53f-56c56ebfc645-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220417_161402-scaled.jpg,,FALSE, +N1,28435,sortie-e9787914-da2d-4832-ae63-b599863d9bfc,https://biolit.fr/sorties/sortie-e9787914-da2d-4832-ae63-b599863d9bfc/,Marine,,3/17/2022 0:00,14.0000000,14.0:45,43.429376000000,3.767065000000,CPIE Littoral d'Occitanie,Plage du Poisson rouge,27342,observation-e9787914-da2d-4832-ae63-b599863d9bfc,https://biolit.fr/observations/observation-e9787914-da2d-4832-ae63-b599863d9bfc/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220317_144048-scaled.jpg,,FALSE, +N1,28435,sortie-e9787914-da2d-4832-ae63-b599863d9bfc,https://biolit.fr/sorties/sortie-e9787914-da2d-4832-ae63-b599863d9bfc/,Marine,,3/17/2022 0:00,14.0000000,14.0:45,43.429376000000,3.767065000000,CPIE Littoral d'Occitanie,Plage du Poisson rouge,27344,observation-e9787914-da2d-4832-ae63-b599863d9bfc-2,https://biolit.fr/observations/observation-e9787914-da2d-4832-ae63-b599863d9bfc-2/,Ocenebra erinaceus,Ponte de Bigorneau perceur,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220317_150757-scaled.jpg,,TRUE, +N1,28435,sortie-e9787914-da2d-4832-ae63-b599863d9bfc,https://biolit.fr/sorties/sortie-e9787914-da2d-4832-ae63-b599863d9bfc/,Marine,,3/17/2022 0:00,14.0000000,14.0:45,43.429376000000,3.767065000000,CPIE Littoral d'Occitanie,Plage du Poisson rouge,27346,observation-e9787914-da2d-4832-ae63-b599863d9bfc-3,https://biolit.fr/observations/observation-e9787914-da2d-4832-ae63-b599863d9bfc-3/,Ocenebra erinaceus,Ponte de Bigorneau perceur,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220317_150819-scaled.jpg,,TRUE, +N1,28435,sortie-e9787914-da2d-4832-ae63-b599863d9bfc,https://biolit.fr/sorties/sortie-e9787914-da2d-4832-ae63-b599863d9bfc/,Marine,,3/17/2022 0:00,14.0000000,14.0:45,43.429376000000,3.767065000000,CPIE Littoral d'Occitanie,Plage du Poisson rouge,27348,observation-e9787914-da2d-4832-ae63-b599863d9bfc-4,https://biolit.fr/observations/observation-e9787914-da2d-4832-ae63-b599863d9bfc-4/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220317_150834-scaled.jpg,,TRUE, +N1,28435,sortie-e9787914-da2d-4832-ae63-b599863d9bfc,https://biolit.fr/sorties/sortie-e9787914-da2d-4832-ae63-b599863d9bfc/,Marine,,3/17/2022 0:00,14.0000000,14.0:45,43.429376000000,3.767065000000,CPIE Littoral d'Occitanie,Plage du Poisson rouge,27350,observation-e9787914-da2d-4832-ae63-b599863d9bfc-5,https://biolit.fr/observations/observation-e9787914-da2d-4832-ae63-b599863d9bfc-5/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220317_150840-scaled.jpg,,TRUE, +N1,28435,sortie-e9787914-da2d-4832-ae63-b599863d9bfc,https://biolit.fr/sorties/sortie-e9787914-da2d-4832-ae63-b599863d9bfc/,Marine,,3/17/2022 0:00,14.0000000,14.0:45,43.429376000000,3.767065000000,CPIE Littoral d'Occitanie,Plage du Poisson rouge,27352,observation-e9787914-da2d-4832-ae63-b599863d9bfc-6,https://biolit.fr/observations/observation-e9787914-da2d-4832-ae63-b599863d9bfc-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220317_150843-scaled.jpg,,FALSE, +N1,28435,sortie-e9787914-da2d-4832-ae63-b599863d9bfc,https://biolit.fr/sorties/sortie-e9787914-da2d-4832-ae63-b599863d9bfc/,Marine,,3/17/2022 0:00,14.0000000,14.0:45,43.429376000000,3.767065000000,CPIE Littoral d'Occitanie,Plage du Poisson rouge,27354,observation-e9787914-da2d-4832-ae63-b599863d9bfc-7,https://biolit.fr/observations/observation-e9787914-da2d-4832-ae63-b599863d9bfc-7/,Eunicella singularis,Gorgone blanche,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220317_150849-scaled.jpg,,TRUE, +N1,28435,sortie-e9787914-da2d-4832-ae63-b599863d9bfc,https://biolit.fr/sorties/sortie-e9787914-da2d-4832-ae63-b599863d9bfc/,Marine,,3/17/2022 0:00,14.0000000,14.0:45,43.429376000000,3.767065000000,CPIE Littoral d'Occitanie,Plage du Poisson rouge,27356,observation-e9787914-da2d-4832-ae63-b599863d9bfc-8,https://biolit.fr/observations/observation-e9787914-da2d-4832-ae63-b599863d9bfc-8/,Bolinus brandaris,Murex épineux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220317_150902-scaled.jpg,,TRUE, +N1,28435,sortie-e9787914-da2d-4832-ae63-b599863d9bfc,https://biolit.fr/sorties/sortie-e9787914-da2d-4832-ae63-b599863d9bfc/,Marine,,3/17/2022 0:00,14.0000000,14.0:45,43.429376000000,3.767065000000,CPIE Littoral d'Occitanie,Plage du Poisson rouge,27358,observation-e9787914-da2d-4832-ae63-b599863d9bfc-9,https://biolit.fr/observations/observation-e9787914-da2d-4832-ae63-b599863d9bfc-9/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220317_150912-scaled.jpg,,TRUE, +N1,28435,sortie-e9787914-da2d-4832-ae63-b599863d9bfc,https://biolit.fr/sorties/sortie-e9787914-da2d-4832-ae63-b599863d9bfc/,Marine,,3/17/2022 0:00,14.0000000,14.0:45,43.429376000000,3.767065000000,CPIE Littoral d'Occitanie,Plage du Poisson rouge,27360,observation-e9787914-da2d-4832-ae63-b599863d9bfc-10,https://biolit.fr/observations/observation-e9787914-da2d-4832-ae63-b599863d9bfc-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220317_151422-scaled.jpg,,FALSE, +N1,28435,sortie-e9787914-da2d-4832-ae63-b599863d9bfc,https://biolit.fr/sorties/sortie-e9787914-da2d-4832-ae63-b599863d9bfc/,Marine,,3/17/2022 0:00,14.0000000,14.0:45,43.429376000000,3.767065000000,CPIE Littoral d'Occitanie,Plage du Poisson rouge,27362,observation-e9787914-da2d-4832-ae63-b599863d9bfc-11,https://biolit.fr/observations/observation-e9787914-da2d-4832-ae63-b599863d9bfc-11/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220317_150938-scaled.jpg,,TRUE, +N1,28436,sortie-4b847ac5-477e-4220-8596-4d2894b22118,https://biolit.fr/sorties/sortie-4b847ac5-477e-4220-8596-4d2894b22118/,Institut Marin du Seaquarium,,2/24/2022 0:00,10.0000000,12.0000000,43.525799000000,4.137945000000,,Plage Seaquarium,27364,observation-4b847ac5-477e-4220-8596-4d2894b22118,https://biolit.fr/observations/observation-4b847ac5-477e-4220-8596-4d2894b22118/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220223_112543_0-scaled.jpg,,FALSE, +N1,28437,sortie-7354496a-e39b-437c-8344-67f205dfc0f4,https://biolit.fr/sorties/sortie-7354496a-e39b-437c-8344-67f205dfc0f4/,Institut Marin du Seaquarium,,2/23/2020 0:00,10.0000000,12.0000000,43.525905000000,4.137720000000,,Plage Seaquarium,27366,observation-7354496a-e39b-437c-8344-67f205dfc0f4,https://biolit.fr/observations/observation-7354496a-e39b-437c-8344-67f205dfc0f4/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220223_112607-scaled.jpg,,TRUE, +N1,28437,sortie-7354496a-e39b-437c-8344-67f205dfc0f4,https://biolit.fr/sorties/sortie-7354496a-e39b-437c-8344-67f205dfc0f4/,Institut Marin du Seaquarium,,2/23/2020 0:00,10.0000000,12.0000000,43.525905000000,4.137720000000,,Plage Seaquarium,27368,observation-7354496a-e39b-437c-8344-67f205dfc0f4-2,https://biolit.fr/observations/observation-7354496a-e39b-437c-8344-67f205dfc0f4-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220223_112626-scaled.jpg,,TRUE, +N1,28438,sortie-42ee676e-dbfe-44f0-9459-fa843f27d9ae,https://biolit.fr/sorties/sortie-42ee676e-dbfe-44f0-9459-fa843f27d9ae/,Institut Marin du Seaquarium,,2/22/2022 0:00,10.0000000,11.0:45,43.525920000000,4.137741000000,,Plage Seaquarium,27370,observation-42ee676e-dbfe-44f0-9459-fa843f27d9ae,https://biolit.fr/observations/observation-42ee676e-dbfe-44f0-9459-fa843f27d9ae/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220223_112543-scaled.jpg,,TRUE, +N1,28439,sortie-122e1ee0-b580-42dc-976b-f3df3a71da7a,https://biolit.fr/sorties/sortie-122e1ee0-b580-42dc-976b-f3df3a71da7a/,AIEJE,,12/14/2021 0:00,17.0000000,19.0000000,43.328450000000,5.055239000000,AIEJE,plage de la vieille couronne,27372,observation-122e1ee0-b580-42dc-976b-f3df3a71da7a,https://biolit.fr/observations/observation-122e1ee0-b580-42dc-976b-f3df3a71da7a/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_3261[1]-scaled.jpg,,TRUE, +N1,28439,sortie-122e1ee0-b580-42dc-976b-f3df3a71da7a,https://biolit.fr/sorties/sortie-122e1ee0-b580-42dc-976b-f3df3a71da7a/,AIEJE,,12/14/2021 0:00,17.0000000,19.0000000,43.328450000000,5.055239000000,AIEJE,plage de la vieille couronne,27374,observation-122e1ee0-b580-42dc-976b-f3df3a71da7a-2,https://biolit.fr/observations/observation-122e1ee0-b580-42dc-976b-f3df3a71da7a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/oeuf-scaled.jpg,,FALSE, +N1,28440,sortie-053f1c02-1b2b-4df6-9a64-5baf051e6703,https://biolit.fr/sorties/sortie-053f1c02-1b2b-4df6-9a64-5baf051e6703/,AIEJE,,12/14/2021 0:00,17.0000000,18.0000000,43.328349000000,5.05489600000,AIEJE,la vieille couronne ,27376,observation-053f1c02-1b2b-4df6-9a64-5baf051e6703,https://biolit.fr/observations/observation-053f1c02-1b2b-4df6-9a64-5baf051e6703/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/26AA0A62-1271-4800-B70B-AF8A52491999.jpeg,,TRUE, +N1,28440,sortie-053f1c02-1b2b-4df6-9a64-5baf051e6703,https://biolit.fr/sorties/sortie-053f1c02-1b2b-4df6-9a64-5baf051e6703/,AIEJE,,12/14/2021 0:00,17.0000000,18.0000000,43.328349000000,5.05489600000,AIEJE,la vieille couronne ,27378,observation-053f1c02-1b2b-4df6-9a64-5baf051e6703-2,https://biolit.fr/observations/observation-053f1c02-1b2b-4df6-9a64-5baf051e6703-2/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Snapchat-337779907.jpg,,TRUE, +N1,28441,sortie-f26a2c3d-fae5-4d75-afec-43eded221f97,https://biolit.fr/sorties/sortie-f26a2c3d-fae5-4d75-afec-43eded221f97/,larkemsalwa,,12/14/2021 0:00,16.0000000,18.0000000,43.326,5.051,,La vieille couronne,27380,observation-f26a2c3d-fae5-4d75-afec-43eded221f97,https://biolit.fr/observations/observation-f26a2c3d-fae5-4d75-afec-43eded221f97/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/20211207_160532-scaled.jpg,,TRUE, +N1,28441,sortie-f26a2c3d-fae5-4d75-afec-43eded221f97,https://biolit.fr/sorties/sortie-f26a2c3d-fae5-4d75-afec-43eded221f97/,larkemsalwa,,12/14/2021 0:00,16.0000000,18.0000000,43.326,5.051,,La vieille couronne,27382,observation-f26a2c3d-fae5-4d75-afec-43eded221f97-2,https://biolit.fr/observations/observation-f26a2c3d-fae5-4d75-afec-43eded221f97-2/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_6872.JPG,,TRUE, +N1,28441,sortie-f26a2c3d-fae5-4d75-afec-43eded221f97,https://biolit.fr/sorties/sortie-f26a2c3d-fae5-4d75-afec-43eded221f97/,larkemsalwa,,12/14/2021 0:00,16.0000000,18.0000000,43.326,5.051,,La vieille couronne,27384,observation-f26a2c3d-fae5-4d75-afec-43eded221f97-3,https://biolit.fr/observations/observation-f26a2c3d-fae5-4d75-afec-43eded221f97-3/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6875.JPG,,TRUE, +N1,28441,sortie-f26a2c3d-fae5-4d75-afec-43eded221f97,https://biolit.fr/sorties/sortie-f26a2c3d-fae5-4d75-afec-43eded221f97/,larkemsalwa,,12/14/2021 0:00,16.0000000,18.0000000,43.326,5.051,,La vieille couronne,27386,observation-f26a2c3d-fae5-4d75-afec-43eded221f97-4,https://biolit.fr/observations/observation-f26a2c3d-fae5-4d75-afec-43eded221f97-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6876.JPG,,FALSE, +N1,28441,sortie-f26a2c3d-fae5-4d75-afec-43eded221f97,https://biolit.fr/sorties/sortie-f26a2c3d-fae5-4d75-afec-43eded221f97/,larkemsalwa,,12/14/2021 0:00,16.0000000,18.0000000,43.326,5.051,,La vieille couronne,27388,observation-f26a2c3d-fae5-4d75-afec-43eded221f97-5,https://biolit.fr/observations/observation-f26a2c3d-fae5-4d75-afec-43eded221f97-5/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6877_0.JPG,,TRUE, +N1,28442,sortie-fa234748-6c7b-4c5c-ad4f-607ae5b43ad9,https://biolit.fr/sorties/sortie-fa234748-6c7b-4c5c-ad4f-607ae5b43ad9/,Dorian ROULET,,11/26/2021 0:00,10.0000000,10.0000000,43.273026000000,5.361882000000,Planète Mer,Plage du prophète,27390,observation-fa234748-6c7b-4c5c-ad4f-607ae5b43ad9,https://biolit.fr/observations/observation-fa234748-6c7b-4c5c-ad4f-607ae5b43ad9/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG20211126105633-scaled.jpg,,TRUE, +N1,28443,sortie-775f41c0-9a78-4c2f-8ba9-81bfd0e7d772,https://biolit.fr/sorties/sortie-775f41c0-9a78-4c2f-8ba9-81bfd0e7d772/,Evang,,10/05/2021,16.0000000,17.0000000,43.421272000000,5.060904000000,AIEJE,plage de tholon,,,,,,,,,, +N1,28444,sortie-47778a80-6777-4bf1-8fd7-73505a3c27ab,https://biolit.fr/sorties/sortie-47778a80-6777-4bf1-8fd7-73505a3c27ab/,yasmine mehdi,,10/19/2021 0:00,17.0:15,19.0:15,43.419605000000,5.061032000000,AIEJE,Plage Tholon,27394,observation-47778a80-6777-4bf1-8fd7-73505a3c27ab,https://biolit.fr/observations/observation-47778a80-6777-4bf1-8fd7-73505a3c27ab/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1922[1]-scaled.jpg,,FALSE, +N1,28444,sortie-47778a80-6777-4bf1-8fd7-73505a3c27ab,https://biolit.fr/sorties/sortie-47778a80-6777-4bf1-8fd7-73505a3c27ab/,yasmine mehdi,,10/19/2021 0:00,17.0:15,19.0:15,43.419605000000,5.061032000000,AIEJE,Plage Tholon,27396,observation-47778a80-6777-4bf1-8fd7-73505a3c27ab-2,https://biolit.fr/observations/observation-47778a80-6777-4bf1-8fd7-73505a3c27ab-2/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1926[1]-scaled.jpg,,FALSE, +N1,28445,sortie-ba44b6e7-8602-4f29-94fd-bbd9ff496ec7,https://biolit.fr/sorties/sortie-ba44b6e7-8602-4f29-94fd-bbd9ff496ec7/,kaïna.188,,10/05/2021,15.0:55,17.0000000,43.422195000000,5.061392000000,,Etang de Berre,27398,observation-ba44b6e7-8602-4f29-94fd-bbd9ff496ec7,https://biolit.fr/observations/observation-ba44b6e7-8602-4f29-94fd-bbd9ff496ec7/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/odium branchu-scaled.jpg,,TRUE, +N1,28446,sortie-822baafd-d248-4d18-b86d-aa5c42406fc2,https://biolit.fr/sorties/sortie-822baafd-d248-4d18-b86d-aa5c42406fc2/,larkemsalwa,,10/05/2021,16.0000000,17.0000000,43.423936000000,5.060724000000,AIEJE,plage de tolon,27400,observation-822baafd-d248-4d18-b86d-aa5c42406fc2,https://biolit.fr/observations/observation-822baafd-d248-4d18-b86d-aa5c42406fc2/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/20211005_164434(1).jpg,,TRUE, +N1,28446,sortie-822baafd-d248-4d18-b86d-aa5c42406fc2,https://biolit.fr/sorties/sortie-822baafd-d248-4d18-b86d-aa5c42406fc2/,larkemsalwa,,10/05/2021,16.0000000,17.0000000,43.423936000000,5.060724000000,AIEJE,plage de tolon,27402,observation-822baafd-d248-4d18-b86d-aa5c42406fc2-2,https://biolit.fr/observations/observation-822baafd-d248-4d18-b86d-aa5c42406fc2-2/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20211005_164638(1).jpg,,TRUE, +N1,28446,sortie-822baafd-d248-4d18-b86d-aa5c42406fc2,https://biolit.fr/sorties/sortie-822baafd-d248-4d18-b86d-aa5c42406fc2/,larkemsalwa,,10/05/2021,16.0000000,17.0000000,43.423936000000,5.060724000000,AIEJE,plage de tolon,27404,observation-822baafd-d248-4d18-b86d-aa5c42406fc2-3,https://biolit.fr/observations/observation-822baafd-d248-4d18-b86d-aa5c42406fc2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211005_164605(1).jpg,,FALSE, +N1,28447,sortie-ab68adaf-67eb-49bd-b94e-54fab883a65d,https://biolit.fr/sorties/sortie-ab68adaf-67eb-49bd-b94e-54fab883a65d/,AIEJE,,6/30/2021 0:00,11.0000000,12.0000000,43.331345000000,5.20398400000,AIEJE,plage des anthenors,27406,observation-ab68adaf-67eb-49bd-b94e-54fab883a65d,https://biolit.fr/observations/observation-ab68adaf-67eb-49bd-b94e-54fab883a65d/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2981.JPG,,FALSE, +N1,28448,sortie-130fe938-16cd-492a-ad93-a15bbebd2875,https://biolit.fr/sorties/sortie-130fe938-16cd-492a-ad93-a15bbebd2875/,AIEJE,,6/30/2021 0:00,11.0000000,12.0000000,43.33042700000,5.208833000000,AIEJE,plage des anthenors,27408,observation-130fe938-16cd-492a-ad93-a15bbebd2875,https://biolit.fr/observations/observation-130fe938-16cd-492a-ad93-a15bbebd2875/,Peyssonnelia squamaria,Peyssonnelia,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2977.JPG,,TRUE, +N1,28449,sortie-b856c361-fbef-434c-9903-054257abb9fd,https://biolit.fr/sorties/sortie-b856c361-fbef-434c-9903-054257abb9fd/,AIEJE,,6/30/2021 0:00,11.0000000,12.0000000,43.330845000000,5.203640000000,AIEJE,plage des anthenors,27410,observation-b856c361-fbef-434c-9903-054257abb9fd,https://biolit.fr/observations/observation-b856c361-fbef-434c-9903-054257abb9fd/,Ophioderma longicaudum,Ophiure lisse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2986-scaled.jpg,,TRUE, +N1,28450,sortie-f69f4242-40b8-4eff-b83e-43612f4c8c6a,https://biolit.fr/sorties/sortie-f69f4242-40b8-4eff-b83e-43612f4c8c6a/,AIEJE,,6/30/2021 0:00,11.0000000,12.0000000,43.331126000000,5.202954000000,AIEJE,plage des anthenors,27412,observation-f69f4242-40b8-4eff-b83e-43612f4c8c6a,https://biolit.fr/observations/observation-f69f4242-40b8-4eff-b83e-43612f4c8c6a/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2982.JPG,,TRUE, +N1,28451,sortie-5486fbc2-ec28-4764-9bed-215ede427538,https://biolit.fr/sorties/sortie-5486fbc2-ec28-4764-9bed-215ede427538/,Marine,,5/22/2021 0:00,9.0:15,10.0:15,43.24095800000,5.362461000000,Planète Mer,Plage du bain des dames,27414,observation-5486fbc2-ec28-4764-9bed-215ede427538,https://biolit.fr/observations/observation-5486fbc2-ec28-4764-9bed-215ede427538/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_100205_compress14-scaled.jpg,,TRUE, +N1,28451,sortie-5486fbc2-ec28-4764-9bed-215ede427538,https://biolit.fr/sorties/sortie-5486fbc2-ec28-4764-9bed-215ede427538/,Marine,,5/22/2021 0:00,9.0:15,10.0:15,43.24095800000,5.362461000000,Planète Mer,Plage du bain des dames,27416,observation-5486fbc2-ec28-4764-9bed-215ede427538-2,https://biolit.fr/observations/observation-5486fbc2-ec28-4764-9bed-215ede427538-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_095133_compress7-scaled.jpg,,TRUE, +N1,28451,sortie-5486fbc2-ec28-4764-9bed-215ede427538,https://biolit.fr/sorties/sortie-5486fbc2-ec28-4764-9bed-215ede427538/,Marine,,5/22/2021 0:00,9.0:15,10.0:15,43.24095800000,5.362461000000,Planète Mer,Plage du bain des dames,27418,observation-5486fbc2-ec28-4764-9bed-215ede427538-3,https://biolit.fr/observations/observation-5486fbc2-ec28-4764-9bed-215ede427538-3/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_094820_compress10-scaled.jpg,,TRUE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27420,observation-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0001.JPG,,TRUE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27422,observation-008ba672-3d03-4bca-85df-321bb9066f08-2,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0002.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27424,observation-008ba672-3d03-4bca-85df-321bb9066f08-3,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0003.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27426,observation-008ba672-3d03-4bca-85df-321bb9066f08-4,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0005.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27428,observation-008ba672-3d03-4bca-85df-321bb9066f08-5,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-5/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0006.JPG,,TRUE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27430,observation-008ba672-3d03-4bca-85df-321bb9066f08-6,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0009.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27432,observation-008ba672-3d03-4bca-85df-321bb9066f08-7,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0007.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27434,observation-008ba672-3d03-4bca-85df-321bb9066f08-8,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0008.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27436,observation-008ba672-3d03-4bca-85df-321bb9066f08-9,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0010.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27438,observation-008ba672-3d03-4bca-85df-321bb9066f08-10,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0011.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27440,observation-008ba672-3d03-4bca-85df-321bb9066f08-11,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0012.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27442,observation-008ba672-3d03-4bca-85df-321bb9066f08-12,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0014.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27444,observation-008ba672-3d03-4bca-85df-321bb9066f08-13,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-13/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0015.JPG,,TRUE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27446,observation-008ba672-3d03-4bca-85df-321bb9066f08-14,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0016.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27448,observation-008ba672-3d03-4bca-85df-321bb9066f08-15,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0017.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27450,observation-008ba672-3d03-4bca-85df-321bb9066f08-16,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0018.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27452,observation-008ba672-3d03-4bca-85df-321bb9066f08-17,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0019.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27454,observation-008ba672-3d03-4bca-85df-321bb9066f08-18,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0021.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27456,observation-008ba672-3d03-4bca-85df-321bb9066f08-19,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0022.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27458,observation-008ba672-3d03-4bca-85df-321bb9066f08-20,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0023.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27460,observation-008ba672-3d03-4bca-85df-321bb9066f08-21,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0024.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27462,observation-008ba672-3d03-4bca-85df-321bb9066f08-22,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0025.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27464,observation-008ba672-3d03-4bca-85df-321bb9066f08-23,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0026.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27466,observation-008ba672-3d03-4bca-85df-321bb9066f08-24,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0027.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27468,observation-008ba672-3d03-4bca-85df-321bb9066f08-25,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-25/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0028.JPG,,TRUE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27470,observation-008ba672-3d03-4bca-85df-321bb9066f08-26,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-26/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0029.JPG,,TRUE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27472,observation-008ba672-3d03-4bca-85df-321bb9066f08-27,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0031.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27474,observation-008ba672-3d03-4bca-85df-321bb9066f08-28,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0032.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27476,observation-008ba672-3d03-4bca-85df-321bb9066f08-29,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0033.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27478,observation-008ba672-3d03-4bca-85df-321bb9066f08-30,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-30/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0036.JPG,,TRUE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27480,observation-008ba672-3d03-4bca-85df-321bb9066f08-31,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0038.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27482,observation-008ba672-3d03-4bca-85df-321bb9066f08-32,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0041.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27484,observation-008ba672-3d03-4bca-85df-321bb9066f08-33,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0042.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27486,observation-008ba672-3d03-4bca-85df-321bb9066f08-34,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0043.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27488,observation-008ba672-3d03-4bca-85df-321bb9066f08-35,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0044.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27490,observation-008ba672-3d03-4bca-85df-321bb9066f08-36,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-36/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/E.Cousin_0001-scaled.jpg,,TRUE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27492,observation-008ba672-3d03-4bca-85df-321bb9066f08-37,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/E.Cousin_0002-scaled.jpg,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27494,observation-008ba672-3d03-4bca-85df-321bb9066f08-38,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-38/,Pecten jacobaeus,Coquille Saint-Jacques de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/E.Cousin_0003-scaled.jpg,,TRUE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27496,observation-008ba672-3d03-4bca-85df-321bb9066f08-39,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-39/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/E.Cousin_0004-scaled.jpg,,TRUE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27498,observation-008ba672-3d03-4bca-85df-321bb9066f08-40,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-40/,,,,https://biolit.fr/wp-content/uploads/2023/07/E.Cousin_0005-scaled.jpg,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27500,observation-008ba672-3d03-4bca-85df-321bb9066f08-41,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-41/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/E.Cousin_0006-scaled.jpg,,TRUE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27502,observation-008ba672-3d03-4bca-85df-321bb9066f08-42,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-42/,,,,https://biolit.fr/wp-content/uploads/2023/07/CPIEBT_0002-scaled.jpg,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27504,observation-008ba672-3d03-4bca-85df-321bb9066f08-43,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-43/,,,,https://biolit.fr/wp-content/uploads/2023/07/CPIEBT_0003-scaled.jpg,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27506,observation-008ba672-3d03-4bca-85df-321bb9066f08-44,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-44/,,,,https://biolit.fr/wp-content/uploads/2023/07/CPIEBT_0006-scaled.jpg,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27508,observation-008ba672-3d03-4bca-85df-321bb9066f08-45,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-45/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/CPIEBT_0007-scaled.jpg,,TRUE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27510,observation-008ba672-3d03-4bca-85df-321bb9066f08-46,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-46/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/CPIEBT_0020-scaled.jpg,,TRUE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27512,observation-008ba672-3d03-4bca-85df-321bb9066f08-47,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-47/,,,,https://biolit.fr/wp-content/uploads/2023/07/CPIEBT_0012-scaled.jpg,,FALSE, +N1,28453,sortie-1c20bd0d-7622-4625-a278-32449450a560,https://biolit.fr/sorties/sortie-1c20bd0d-7622-4625-a278-32449450a560/,CPIE Cote Provencale Atelier Bleu,,4/17/2021 0:00,14.0:15,16.0:15,43.161576000000,5.617526000000,CPIE Côte Provençale,"Plage de Saint-Pierre de l'île verte, La Ciotat",27514,observation-1c20bd0d-7622-4625-a278-32449450a560,https://biolit.fr/observations/observation-1c20bd0d-7622-4625-a278-32449450a560/,Aequorea forskalea,Equorée,,https://biolit.fr/wp-content/uploads/2023/07/20210417_161350.jpg,,TRUE, +N1,28453,sortie-1c20bd0d-7622-4625-a278-32449450a560,https://biolit.fr/sorties/sortie-1c20bd0d-7622-4625-a278-32449450a560/,CPIE Cote Provencale Atelier Bleu,,4/17/2021 0:00,14.0:15,16.0:15,43.161576000000,5.617526000000,CPIE Côte Provençale,"Plage de Saint-Pierre de l'île verte, La Ciotat",27516,observation-1c20bd0d-7622-4625-a278-32449450a560-2,https://biolit.fr/observations/observation-1c20bd0d-7622-4625-a278-32449450a560-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210417_141738.jpg,,FALSE, +N1,28453,sortie-1c20bd0d-7622-4625-a278-32449450a560,https://biolit.fr/sorties/sortie-1c20bd0d-7622-4625-a278-32449450a560/,CPIE Cote Provencale Atelier Bleu,,4/17/2021 0:00,14.0:15,16.0:15,43.161576000000,5.617526000000,CPIE Côte Provençale,"Plage de Saint-Pierre de l'île verte, La Ciotat",27518,observation-1c20bd0d-7622-4625-a278-32449450a560-3,https://biolit.fr/observations/observation-1c20bd0d-7622-4625-a278-32449450a560-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210417_160532.jpg,,FALSE, +N1,28454,sortie-b640762f-31ff-458d-95f5-4523c9f91d27,https://biolit.fr/sorties/sortie-b640762f-31ff-458d-95f5-4523c9f91d27/,Axel,,4/15/2021 0:00,12.0000000,14.0000000,43.25467600000,5.372201000000,,Plage de l'Escale Borély,27520,observation-b640762f-31ff-458d-95f5-4523c9f91d27,https://biolit.fr/observations/observation-b640762f-31ff-458d-95f5-4523c9f91d27/,Phalacrocorax aristotelis,Cormoran huppé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6759-scaled.jpg,,TRUE, +N1,28454,sortie-b640762f-31ff-458d-95f5-4523c9f91d27,https://biolit.fr/sorties/sortie-b640762f-31ff-458d-95f5-4523c9f91d27/,Axel,,4/15/2021 0:00,12.0000000,14.0000000,43.25467600000,5.372201000000,,Plage de l'Escale Borély,27522,observation-b640762f-31ff-458d-95f5-4523c9f91d27-2,https://biolit.fr/observations/observation-b640762f-31ff-458d-95f5-4523c9f91d27-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6767-scaled.jpg,,FALSE, +N1,28454,sortie-b640762f-31ff-458d-95f5-4523c9f91d27,https://biolit.fr/sorties/sortie-b640762f-31ff-458d-95f5-4523c9f91d27/,Axel,,4/15/2021 0:00,12.0000000,14.0000000,43.25467600000,5.372201000000,,Plage de l'Escale Borély,27524,observation-b640762f-31ff-458d-95f5-4523c9f91d27-3,https://biolit.fr/observations/observation-b640762f-31ff-458d-95f5-4523c9f91d27-3/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6771-scaled.jpg,,TRUE, +N1,28454,sortie-b640762f-31ff-458d-95f5-4523c9f91d27,https://biolit.fr/sorties/sortie-b640762f-31ff-458d-95f5-4523c9f91d27/,Axel,,4/15/2021 0:00,12.0000000,14.0000000,43.25467600000,5.372201000000,,Plage de l'Escale Borély,27526,observation-b640762f-31ff-458d-95f5-4523c9f91d27-4,https://biolit.fr/observations/observation-b640762f-31ff-458d-95f5-4523c9f91d27-4/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6772-scaled.jpg,,TRUE, +N1,28454,sortie-b640762f-31ff-458d-95f5-4523c9f91d27,https://biolit.fr/sorties/sortie-b640762f-31ff-458d-95f5-4523c9f91d27/,Axel,,4/15/2021 0:00,12.0000000,14.0000000,43.25467600000,5.372201000000,,Plage de l'Escale Borély,27528,observation-b640762f-31ff-458d-95f5-4523c9f91d27-5,https://biolit.fr/observations/observation-b640762f-31ff-458d-95f5-4523c9f91d27-5/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6773-scaled.jpg,,TRUE, +N1,28455,sortie-7682998e-d1e6-4f07-947b-0018b2f4d110,https://biolit.fr/sorties/sortie-7682998e-d1e6-4f07-947b-0018b2f4d110/,Axel,,4/15/2021 0:00,12.0000000,14.0000000,43.259583000000,5.374819000000,,"Marseille, plage de l'Huveaune et plage Borély",27530,observation-7682998e-d1e6-4f07-947b-0018b2f4d110,https://biolit.fr/observations/observation-7682998e-d1e6-4f07-947b-0018b2f4d110/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6735-scaled.jpg,,FALSE, +N1,28455,sortie-7682998e-d1e6-4f07-947b-0018b2f4d110,https://biolit.fr/sorties/sortie-7682998e-d1e6-4f07-947b-0018b2f4d110/,Axel,,4/15/2021 0:00,12.0000000,14.0000000,43.259583000000,5.374819000000,,"Marseille, plage de l'Huveaune et plage Borély",27532,observation-7682998e-d1e6-4f07-947b-0018b2f4d110-2,https://biolit.fr/observations/observation-7682998e-d1e6-4f07-947b-0018b2f4d110-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6737-scaled.jpg,,FALSE, +N1,28455,sortie-7682998e-d1e6-4f07-947b-0018b2f4d110,https://biolit.fr/sorties/sortie-7682998e-d1e6-4f07-947b-0018b2f4d110/,Axel,,4/15/2021 0:00,12.0000000,14.0000000,43.259583000000,5.374819000000,,"Marseille, plage de l'Huveaune et plage Borély",27534,observation-7682998e-d1e6-4f07-947b-0018b2f4d110-3,https://biolit.fr/observations/observation-7682998e-d1e6-4f07-947b-0018b2f4d110-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6738-scaled.jpg,,FALSE, +N1,28455,sortie-7682998e-d1e6-4f07-947b-0018b2f4d110,https://biolit.fr/sorties/sortie-7682998e-d1e6-4f07-947b-0018b2f4d110/,Axel,,4/15/2021 0:00,12.0000000,14.0000000,43.259583000000,5.374819000000,,"Marseille, plage de l'Huveaune et plage Borély",27536,observation-7682998e-d1e6-4f07-947b-0018b2f4d110-4,https://biolit.fr/observations/observation-7682998e-d1e6-4f07-947b-0018b2f4d110-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6744-scaled.jpg,,FALSE, +N1,28455,sortie-7682998e-d1e6-4f07-947b-0018b2f4d110,https://biolit.fr/sorties/sortie-7682998e-d1e6-4f07-947b-0018b2f4d110/,Axel,,4/15/2021 0:00,12.0000000,14.0000000,43.259583000000,5.374819000000,,"Marseille, plage de l'Huveaune et plage Borély",27538,observation-7682998e-d1e6-4f07-947b-0018b2f4d110-5,https://biolit.fr/observations/observation-7682998e-d1e6-4f07-947b-0018b2f4d110-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6747-scaled.jpg,,FALSE, +N1,28455,sortie-7682998e-d1e6-4f07-947b-0018b2f4d110,https://biolit.fr/sorties/sortie-7682998e-d1e6-4f07-947b-0018b2f4d110/,Axel,,4/15/2021 0:00,12.0000000,14.0000000,43.259583000000,5.374819000000,,"Marseille, plage de l'Huveaune et plage Borély",27540,observation-7682998e-d1e6-4f07-947b-0018b2f4d110-6,https://biolit.fr/observations/observation-7682998e-d1e6-4f07-947b-0018b2f4d110-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6748-scaled.jpg,,FALSE, +N1,28455,sortie-7682998e-d1e6-4f07-947b-0018b2f4d110,https://biolit.fr/sorties/sortie-7682998e-d1e6-4f07-947b-0018b2f4d110/,Axel,,4/15/2021 0:00,12.0000000,14.0000000,43.259583000000,5.374819000000,,"Marseille, plage de l'Huveaune et plage Borély",27542,observation-7682998e-d1e6-4f07-947b-0018b2f4d110-7,https://biolit.fr/observations/observation-7682998e-d1e6-4f07-947b-0018b2f4d110-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6753-scaled.jpg,,FALSE, +N1,28455,sortie-7682998e-d1e6-4f07-947b-0018b2f4d110,https://biolit.fr/sorties/sortie-7682998e-d1e6-4f07-947b-0018b2f4d110/,Axel,,4/15/2021 0:00,12.0000000,14.0000000,43.259583000000,5.374819000000,,"Marseille, plage de l'Huveaune et plage Borély",27544,observation-7682998e-d1e6-4f07-947b-0018b2f4d110-8,https://biolit.fr/observations/observation-7682998e-d1e6-4f07-947b-0018b2f4d110-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6754-scaled.jpg,,FALSE, +N1,28455,sortie-7682998e-d1e6-4f07-947b-0018b2f4d110,https://biolit.fr/sorties/sortie-7682998e-d1e6-4f07-947b-0018b2f4d110/,Axel,,4/15/2021 0:00,12.0000000,14.0000000,43.259583000000,5.374819000000,,"Marseille, plage de l'Huveaune et plage Borély",27546,observation-7682998e-d1e6-4f07-947b-0018b2f4d110-9,https://biolit.fr/observations/observation-7682998e-d1e6-4f07-947b-0018b2f4d110-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6743bis-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27548,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/R.Maquis_0956-scaled.jpg,,TRUE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27550,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-2,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-2/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/R.Maquis_0955-scaled.jpg,,TRUE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27552,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-3,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-3/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/R.Maquis_0926-scaled.jpg,,TRUE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27556,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-5,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-5/,Naticarius hebraeus,Natice hébraïque,,https://biolit.fr/wp-content/uploads/2023/07/R.Maquis_0923-scaled.jpg | https://biolit.fr/wp-content/uploads/2021/03/R.Maquis_0924-scaled-1.jpg,,TRUE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27558,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-6,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/R.Maquis_0920-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27560,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-7,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-7/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/R.Maquis_0918-scaled.jpg,,TRUE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27562,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-8,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/R.Maquis_0916-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27564,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-9,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/R.Maquis_0914-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27566,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-10,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/R.Maquis_0912-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27568,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-11,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/R.Maquis_0911-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27572,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-13,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-13/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/R.Maquis_0908-scaled.jpg | https://biolit.fr/wp-content/uploads/2021/03/R.Maquis_0909-scaled-1.jpg,,TRUE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27574,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-14,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-14/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/R.Maquis_0907-scaled.jpg,,TRUE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27576,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-15,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/R.Maquis_0906-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27578,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-16,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/R.Maquis_0905-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27580,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-17,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-17/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/R.Maquis_0903-scaled.jpg,,TRUE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27582,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-18,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/Larderet_14-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27584,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-19,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/Larderet_8-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27586,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-20,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Larderet_13-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27588,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-21,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-21/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Larderet_12-scaled.jpg,,TRUE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27590,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-22,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/Larderet_10-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27592,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-23,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/Larderet_9-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27594,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-24,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/Larderet_7-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27596,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-25,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas6.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27598,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-26,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/Larderet_6-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27600,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-27,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/Larderet_5-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27602,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-28,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/Larderet_4-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27604,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-29,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/Larderet_3-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27606,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-30,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/Larderet_1-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27608,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-31,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/Larderet_2-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27610,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-32,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas33.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27612,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-33,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-33/,Pecten jacobaeus,Coquille Saint-Jacques de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas31.jpg,,TRUE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27614,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-34,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-34/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas29.jpg,,TRUE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27616,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-35,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas27.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27618,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-36,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-36/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas25.jpg,,TRUE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27620,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-37,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-37/,Bittium reticulatum,Cérithe réticulé,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas24.jpg,,TRUE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27622,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-38,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-38/,,,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas22.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27624,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-39,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-39/,,,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas20.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27626,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-40,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-40/,,,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas18.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27632,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-43,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-43/,,,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas15.jpg | https://biolit.fr/wp-content/uploads/2021/03/L.Thomas16.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27634,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-44,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-44/,,,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas14.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27636,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-45,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-45/,,,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas12.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27638,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-46,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-46/,Talochlamys multistriata,Pétoncle strié,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas11.jpg,,TRUE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27640,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-47,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-47/,,,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas7.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27642,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-48,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-48/,,,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas5.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27644,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-49,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-49/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas3.jpg,,TRUE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27648,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-51,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-51/,,,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas4.jpg | https://biolit.fr/wp-content/uploads/2021/03/L.Thomas2.jpg,,FALSE, +N1,28457,sortie-254dd4b1-b5e0-433e-9541-b928f3db707b,https://biolit.fr/sorties/sortie-254dd4b1-b5e0-433e-9541-b928f3db707b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.453924000000,3.813140000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27650,observation-254dd4b1-b5e0-433e-9541-b928f3db707b,https://biolit.fr/observations/observation-254dd4b1-b5e0-433e-9541-b928f3db707b/,Sepia officinalis,Seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/R.Maquis_0958-scaled.jpg,,TRUE, +N1,28458,sortie-91e83560-b377-4878-8ea7-eb70da7a94eb,https://biolit.fr/sorties/sortie-91e83560-b377-4878-8ea7-eb70da7a94eb/,sidali_king13,,02/05/2021,13.0000000,16.0000000,43.253365000000,5.374438000000,,Plage de l'Escale Borély ,27652,observation-91e83560-b377-4878-8ea7-eb70da7a94eb,https://biolit.fr/observations/observation-91e83560-b377-4878-8ea7-eb70da7a94eb/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2299_0.JPG,,TRUE, +N1,28458,sortie-91e83560-b377-4878-8ea7-eb70da7a94eb,https://biolit.fr/sorties/sortie-91e83560-b377-4878-8ea7-eb70da7a94eb/,sidali_king13,,02/05/2021,13.0000000,16.0000000,43.253365000000,5.374438000000,,Plage de l'Escale Borély ,27654,observation-91e83560-b377-4878-8ea7-eb70da7a94eb-2,https://biolit.fr/observations/observation-91e83560-b377-4878-8ea7-eb70da7a94eb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2300.JPG,,FALSE, +N1,28458,sortie-91e83560-b377-4878-8ea7-eb70da7a94eb,https://biolit.fr/sorties/sortie-91e83560-b377-4878-8ea7-eb70da7a94eb/,sidali_king13,,02/05/2021,13.0000000,16.0000000,43.253365000000,5.374438000000,,Plage de l'Escale Borély ,27656,observation-91e83560-b377-4878-8ea7-eb70da7a94eb-3,https://biolit.fr/observations/observation-91e83560-b377-4878-8ea7-eb70da7a94eb-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2301.JPG,,FALSE, +N1,28458,sortie-91e83560-b377-4878-8ea7-eb70da7a94eb,https://biolit.fr/sorties/sortie-91e83560-b377-4878-8ea7-eb70da7a94eb/,sidali_king13,,02/05/2021,13.0000000,16.0000000,43.253365000000,5.374438000000,,Plage de l'Escale Borély ,27658,observation-91e83560-b377-4878-8ea7-eb70da7a94eb-4,https://biolit.fr/observations/observation-91e83560-b377-4878-8ea7-eb70da7a94eb-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2302.JPG,,FALSE, +N1,28458,sortie-91e83560-b377-4878-8ea7-eb70da7a94eb,https://biolit.fr/sorties/sortie-91e83560-b377-4878-8ea7-eb70da7a94eb/,sidali_king13,,02/05/2021,13.0000000,16.0000000,43.253365000000,5.374438000000,,Plage de l'Escale Borély ,27660,observation-91e83560-b377-4878-8ea7-eb70da7a94eb-5,https://biolit.fr/observations/observation-91e83560-b377-4878-8ea7-eb70da7a94eb-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2303.JPG,,FALSE, +N1,28458,sortie-91e83560-b377-4878-8ea7-eb70da7a94eb,https://biolit.fr/sorties/sortie-91e83560-b377-4878-8ea7-eb70da7a94eb/,sidali_king13,,02/05/2021,13.0000000,16.0000000,43.253365000000,5.374438000000,,Plage de l'Escale Borély ,27662,observation-91e83560-b377-4878-8ea7-eb70da7a94eb-6,https://biolit.fr/observations/observation-91e83560-b377-4878-8ea7-eb70da7a94eb-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2304.JPG,,FALSE, +N1,28459,sortie-73887bb4-9e04-4a17-b484-f4171fe03c70,https://biolit.fr/sorties/sortie-73887bb4-9e04-4a17-b484-f4171fe03c70/,Mahee Albertini,,02/05/2021,14.0000000,16.0000000,43.253571000000,5.374336000000,,plage du Prado,27664,observation-73887bb4-9e04-4a17-b484-f4171fe03c70,https://biolit.fr/observations/observation-73887bb4-9e04-4a17-b484-f4171fe03c70/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4769-scaled.jpg,,FALSE, +N1,28459,sortie-73887bb4-9e04-4a17-b484-f4171fe03c70,https://biolit.fr/sorties/sortie-73887bb4-9e04-4a17-b484-f4171fe03c70/,Mahee Albertini,,02/05/2021,14.0000000,16.0000000,43.253571000000,5.374336000000,,plage du Prado,27666,observation-73887bb4-9e04-4a17-b484-f4171fe03c70-2,https://biolit.fr/observations/observation-73887bb4-9e04-4a17-b484-f4171fe03c70-2/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_4768-scaled.jpg,,TRUE, +N1,28459,sortie-73887bb4-9e04-4a17-b484-f4171fe03c70,https://biolit.fr/sorties/sortie-73887bb4-9e04-4a17-b484-f4171fe03c70/,Mahee Albertini,,02/05/2021,14.0000000,16.0000000,43.253571000000,5.374336000000,,plage du Prado,27668,observation-73887bb4-9e04-4a17-b484-f4171fe03c70-3,https://biolit.fr/observations/observation-73887bb4-9e04-4a17-b484-f4171fe03c70-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4766-scaled.jpg,,FALSE, +N1,28459,sortie-73887bb4-9e04-4a17-b484-f4171fe03c70,https://biolit.fr/sorties/sortie-73887bb4-9e04-4a17-b484-f4171fe03c70/,Mahee Albertini,,02/05/2021,14.0000000,16.0000000,43.253571000000,5.374336000000,,plage du Prado,27670,observation-73887bb4-9e04-4a17-b484-f4171fe03c70-4,https://biolit.fr/observations/observation-73887bb4-9e04-4a17-b484-f4171fe03c70-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4760.JPG,,FALSE, +N1,28460,sortie-49f031ac-3855-42c3-87de-0c5dc386e5f4,https://biolit.fr/sorties/sortie-49f031ac-3855-42c3-87de-0c5dc386e5f4/,joaomarques,,2/16/2021 0:00,14.0000000,16.0000000,43.332029000000,5.050593000000,AIEJE,La couronne,27672,observation-49f031ac-3855-42c3-87de-0c5dc386e5f4,https://biolit.fr/observations/observation-49f031ac-3855-42c3-87de-0c5dc386e5f4/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2676.PNG,,TRUE, +N1,28461,sortie-a370937a-86d6-4dc3-a3ad-eb74b298ed91,https://biolit.fr/sorties/sortie-a370937a-86d6-4dc3-a3ad-eb74b298ed91/,joaomarques,,2/16/2021 0:00,10.0000000,14.0000000,43.332060000000,5.050497000000,AIEJE,La couronne,27674,observation-a370937a-86d6-4dc3-a3ad-eb74b298ed91,https://biolit.fr/observations/observation-a370937a-86d6-4dc3-a3ad-eb74b298ed91/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2675.PNG,,TRUE, +N1,28462,sortie-51174d70-2f7e-48f5-9b67-232a8e3ab7ae,https://biolit.fr/sorties/sortie-51174d70-2f7e-48f5-9b67-232a8e3ab7ae/,joaomarques,,2/16/2021 0:00,10.0000000,14.0000000,43.331940000000,5.050636000000,AIEJE,La couronne,27676,observation-51174d70-2f7e-48f5-9b67-232a8e3ab7ae,https://biolit.fr/observations/observation-51174d70-2f7e-48f5-9b67-232a8e3ab7ae/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2674.PNG,,FALSE, +N1,28463,sortie-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07,https://biolit.fr/sorties/sortie-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07/,Giluc13,,2/22/2021 0:00,10.0000000,11.0000000,43.165157000000,5.596347000000,CPIE Côte Provençale,"La Ciotat, Calanque de Figueroles",27678,observation-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07,https://biolit.fr/observations/observation-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/2021 02 Oursins-scaled.jpg,,TRUE, +N1,28463,sortie-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07,https://biolit.fr/sorties/sortie-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07/,Giluc13,,2/22/2021 0:00,10.0000000,11.0000000,43.165157000000,5.596347000000,CPIE Côte Provençale,"La Ciotat, Calanque de Figueroles",27680,observation-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07-2,https://biolit.fr/observations/observation-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/2021 02-cerithe-scaled.jpg,,FALSE, +N1,28463,sortie-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07,https://biolit.fr/sorties/sortie-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07/,Giluc13,,2/22/2021 0:00,10.0000000,11.0000000,43.165157000000,5.596347000000,CPIE Côte Provençale,"La Ciotat, Calanque de Figueroles",27682,observation-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07-3,https://biolit.fr/observations/observation-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07-3/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/2021 02-codium en boule-scaled.jpg,,TRUE, +N1,28463,sortie-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07,https://biolit.fr/sorties/sortie-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07/,Giluc13,,2/22/2021 0:00,10.0000000,11.0000000,43.165157000000,5.596347000000,CPIE Côte Provençale,"La Ciotat, Calanque de Figueroles",27684,observation-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07-4,https://biolit.fr/observations/observation-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07-4/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/2021 02-codium en boule 2-scaled.jpg,,TRUE, +N1,28463,sortie-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07,https://biolit.fr/sorties/sortie-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07/,Giluc13,,2/22/2021 0:00,10.0000000,11.0000000,43.165157000000,5.596347000000,CPIE Côte Provençale,"La Ciotat, Calanque de Figueroles",27686,observation-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07-5,https://biolit.fr/observations/observation-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/2021 02-Ircinia (éponge) et cérithes.jpg,,FALSE, +N1,28464,sortie-f991cc75-a52b-41e9-8ecb-08ec0c208604,https://biolit.fr/sorties/sortie-f991cc75-a52b-41e9-8ecb-08ec0c208604/,Club subaquatique Narbonnais,,2/21/2021 0:00,11.0000000,12.0000000,43.168363000000,3.180563000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne plage,27688,observation-f991cc75-a52b-41e9-8ecb-08ec0c208604,https://biolit.fr/observations/observation-f991cc75-a52b-41e9-8ecb-08ec0c208604/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/mini vélelle.jpg,,TRUE, +N1,28464,sortie-f991cc75-a52b-41e9-8ecb-08ec0c208604,https://biolit.fr/sorties/sortie-f991cc75-a52b-41e9-8ecb-08ec0c208604/,Club subaquatique Narbonnais,,2/21/2021 0:00,11.0000000,12.0000000,43.168363000000,3.180563000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne plage,27690,observation-f991cc75-a52b-41e9-8ecb-08ec0c208604-2,https://biolit.fr/observations/observation-f991cc75-a52b-41e9-8ecb-08ec0c208604-2/,Scyliorhinus canicula,Capsule de petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/mini vélelle2.jpg,,TRUE, +N1,28464,sortie-f991cc75-a52b-41e9-8ecb-08ec0c208604,https://biolit.fr/sorties/sortie-f991cc75-a52b-41e9-8ecb-08ec0c208604/,Club subaquatique Narbonnais,,2/21/2021 0:00,11.0000000,12.0000000,43.168363000000,3.180563000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne plage,27692,observation-f991cc75-a52b-41e9-8ecb-08ec0c208604-3,https://biolit.fr/observations/observation-f991cc75-a52b-41e9-8ecb-08ec0c208604-3/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/sabot (Cymbulia peronii).jpg,,TRUE, +N1,28464,sortie-f991cc75-a52b-41e9-8ecb-08ec0c208604,https://biolit.fr/sorties/sortie-f991cc75-a52b-41e9-8ecb-08ec0c208604/,Club subaquatique Narbonnais,,2/21/2021 0:00,11.0000000,12.0000000,43.168363000000,3.180563000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne plage,27694,observation-f991cc75-a52b-41e9-8ecb-08ec0c208604-4,https://biolit.fr/observations/observation-f991cc75-a52b-41e9-8ecb-08ec0c208604-4/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/sabot3.jpg,,TRUE, +N1,28465,sortie-01b422a8-14eb-442c-8447-b8d49758b8d4,https://biolit.fr/sorties/sortie-01b422a8-14eb-442c-8447-b8d49758b8d4/,lycée latecoere,,1/29/2021 0:00,11.0000000,13.0000000,43.509878000000,5.000216000000,AIEJE,la romaniquette,27696,observation-01b422a8-14eb-442c-8447-b8d49758b8d4,https://biolit.fr/observations/observation-01b422a8-14eb-442c-8447-b8d49758b8d4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210129_112557-scaled.jpg,,FALSE, +N1,28465,sortie-01b422a8-14eb-442c-8447-b8d49758b8d4,https://biolit.fr/sorties/sortie-01b422a8-14eb-442c-8447-b8d49758b8d4/,lycée latecoere,,1/29/2021 0:00,11.0000000,13.0000000,43.509878000000,5.000216000000,AIEJE,la romaniquette,27698,observation-01b422a8-14eb-442c-8447-b8d49758b8d4-2,https://biolit.fr/observations/observation-01b422a8-14eb-442c-8447-b8d49758b8d4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210129_112607-scaled.jpg,,FALSE, +N1,28465,sortie-01b422a8-14eb-442c-8447-b8d49758b8d4,https://biolit.fr/sorties/sortie-01b422a8-14eb-442c-8447-b8d49758b8d4/,lycée latecoere,,1/29/2021 0:00,11.0000000,13.0000000,43.509878000000,5.000216000000,AIEJE,la romaniquette,27700,observation-01b422a8-14eb-442c-8447-b8d49758b8d4-3,https://biolit.fr/observations/observation-01b422a8-14eb-442c-8447-b8d49758b8d4-3/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/20210129_112541-scaled.jpg,,TRUE, +N1,28465,sortie-01b422a8-14eb-442c-8447-b8d49758b8d4,https://biolit.fr/sorties/sortie-01b422a8-14eb-442c-8447-b8d49758b8d4/,lycée latecoere,,1/29/2021 0:00,11.0000000,13.0000000,43.509878000000,5.000216000000,AIEJE,la romaniquette,27702,observation-01b422a8-14eb-442c-8447-b8d49758b8d4-4,https://biolit.fr/observations/observation-01b422a8-14eb-442c-8447-b8d49758b8d4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210129_112510-scaled.jpg,,FALSE, +N1,28466,sortie-da6fc40f-04e9-4ce6-8b40-68684846a249,https://biolit.fr/sorties/sortie-da6fc40f-04e9-4ce6-8b40-68684846a249/,lycée latecoere,,1/29/2021 0:00,9.0000000,11.0000000,43.50999000000,5.000270000,AIEJE,la romaniquette,27704,observation-da6fc40f-04e9-4ce6-8b40-68684846a249,https://biolit.fr/observations/observation-da6fc40f-04e9-4ce6-8b40-68684846a249/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210129_112445-scaled.jpg,,FALSE, +N1,28467,sortie-51a603f7-aaa7-49c1-89fa-11a0fa439dd1,https://biolit.fr/sorties/sortie-51a603f7-aaa7-49c1-89fa-11a0fa439dd1/,collegedalzongrauduoi,,10/08/2020,14.0000000,15.0000000,43.551942000000,4.109632000000,,"Plage du Boucanet, Le Grau du Roi",27706,observation-51a603f7-aaa7-49c1-89fa-11a0fa439dd1,https://biolit.fr/observations/observation-51a603f7-aaa7-49c1-89fa-11a0fa439dd1/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1814-rotated.jpg,,FALSE, +N1,28467,sortie-51a603f7-aaa7-49c1-89fa-11a0fa439dd1,https://biolit.fr/sorties/sortie-51a603f7-aaa7-49c1-89fa-11a0fa439dd1/,collegedalzongrauduoi,,10/08/2020,14.0000000,15.0000000,43.551942000000,4.109632000000,,"Plage du Boucanet, Le Grau du Roi",27708,observation-51a603f7-aaa7-49c1-89fa-11a0fa439dd1-2,https://biolit.fr/observations/observation-51a603f7-aaa7-49c1-89fa-11a0fa439dd1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1815-rotated.jpg,,FALSE, +N1,28467,sortie-51a603f7-aaa7-49c1-89fa-11a0fa439dd1,https://biolit.fr/sorties/sortie-51a603f7-aaa7-49c1-89fa-11a0fa439dd1/,collegedalzongrauduoi,,10/08/2020,14.0000000,15.0000000,43.551942000000,4.109632000000,,"Plage du Boucanet, Le Grau du Roi",27710,observation-51a603f7-aaa7-49c1-89fa-11a0fa439dd1-3,https://biolit.fr/observations/observation-51a603f7-aaa7-49c1-89fa-11a0fa439dd1-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1819-rotated.jpg,,FALSE, +N1,28467,sortie-51a603f7-aaa7-49c1-89fa-11a0fa439dd1,https://biolit.fr/sorties/sortie-51a603f7-aaa7-49c1-89fa-11a0fa439dd1/,collegedalzongrauduoi,,10/08/2020,14.0000000,15.0000000,43.551942000000,4.109632000000,,"Plage du Boucanet, Le Grau du Roi",27712,observation-51a603f7-aaa7-49c1-89fa-11a0fa439dd1-4,https://biolit.fr/observations/observation-51a603f7-aaa7-49c1-89fa-11a0fa439dd1-4/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1822-rotated.jpg,,TRUE, +N1,28467,sortie-51a603f7-aaa7-49c1-89fa-11a0fa439dd1,https://biolit.fr/sorties/sortie-51a603f7-aaa7-49c1-89fa-11a0fa439dd1/,collegedalzongrauduoi,,10/08/2020,14.0000000,15.0000000,43.551942000000,4.109632000000,,"Plage du Boucanet, Le Grau du Roi",27714,observation-51a603f7-aaa7-49c1-89fa-11a0fa439dd1-5,https://biolit.fr/observations/observation-51a603f7-aaa7-49c1-89fa-11a0fa439dd1-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1824-rotated.jpg,,FALSE, +N1,28467,sortie-51a603f7-aaa7-49c1-89fa-11a0fa439dd1,https://biolit.fr/sorties/sortie-51a603f7-aaa7-49c1-89fa-11a0fa439dd1/,collegedalzongrauduoi,,10/08/2020,14.0000000,15.0000000,43.551942000000,4.109632000000,,"Plage du Boucanet, Le Grau du Roi",27716,observation-51a603f7-aaa7-49c1-89fa-11a0fa439dd1-6,https://biolit.fr/observations/observation-51a603f7-aaa7-49c1-89fa-11a0fa439dd1-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1821-rotated.jpg,,FALSE, +N1,28467,sortie-51a603f7-aaa7-49c1-89fa-11a0fa439dd1,https://biolit.fr/sorties/sortie-51a603f7-aaa7-49c1-89fa-11a0fa439dd1/,collegedalzongrauduoi,,10/08/2020,14.0000000,15.0000000,43.551942000000,4.109632000000,,"Plage du Boucanet, Le Grau du Roi",27718,observation-51a603f7-aaa7-49c1-89fa-11a0fa439dd1-7,https://biolit.fr/observations/observation-51a603f7-aaa7-49c1-89fa-11a0fa439dd1-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1823-rotated.jpg,,FALSE, +N1,28468,sortie-265d76ee-b9dd-4b43-ad84-4834ce9dd358,https://biolit.fr/sorties/sortie-265d76ee-b9dd-4b43-ad84-4834ce9dd358/,e.detrez,,10/21/2020 0:00,13.0000000,13.0000000,43.459300000000,3.819148000000,CPIE Littoral d'Occitanie,Frontignan,27720,observation-265d76ee-b9dd-4b43-ad84-4834ce9dd358,https://biolit.fr/observations/observation-265d76ee-b9dd-4b43-ad84-4834ce9dd358/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/122379192_2719359644970208_1545030587083608712_n.jpg,,TRUE, +N1,28468,sortie-265d76ee-b9dd-4b43-ad84-4834ce9dd358,https://biolit.fr/sorties/sortie-265d76ee-b9dd-4b43-ad84-4834ce9dd358/,e.detrez,,10/21/2020 0:00,13.0000000,13.0000000,43.459300000000,3.819148000000,CPIE Littoral d'Occitanie,Frontignan,27722,observation-265d76ee-b9dd-4b43-ad84-4834ce9dd358-2,https://biolit.fr/observations/observation-265d76ee-b9dd-4b43-ad84-4834ce9dd358-2/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/122320394_2138143649654145_5497984118596794563_n.jpg,,TRUE, +N1,28468,sortie-265d76ee-b9dd-4b43-ad84-4834ce9dd358,https://biolit.fr/sorties/sortie-265d76ee-b9dd-4b43-ad84-4834ce9dd358/,e.detrez,,10/21/2020 0:00,13.0000000,13.0000000,43.459300000000,3.819148000000,CPIE Littoral d'Occitanie,Frontignan,27724,observation-265d76ee-b9dd-4b43-ad84-4834ce9dd358-3,https://biolit.fr/observations/observation-265d76ee-b9dd-4b43-ad84-4834ce9dd358-3/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/122456336_1306249069712195_3688789281781766063_n.jpg,,TRUE, +N1,28468,sortie-265d76ee-b9dd-4b43-ad84-4834ce9dd358,https://biolit.fr/sorties/sortie-265d76ee-b9dd-4b43-ad84-4834ce9dd358/,e.detrez,,10/21/2020 0:00,13.0000000,13.0000000,43.459300000000,3.819148000000,CPIE Littoral d'Occitanie,Frontignan,27726,observation-265d76ee-b9dd-4b43-ad84-4834ce9dd358-4,https://biolit.fr/observations/observation-265d76ee-b9dd-4b43-ad84-4834ce9dd358-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/122439983_823550388469693_4406279492045489489_n.jpg,,FALSE, +N1,28468,sortie-265d76ee-b9dd-4b43-ad84-4834ce9dd358,https://biolit.fr/sorties/sortie-265d76ee-b9dd-4b43-ad84-4834ce9dd358/,e.detrez,,10/21/2020 0:00,13.0000000,13.0000000,43.459300000000,3.819148000000,CPIE Littoral d'Occitanie,Frontignan,27728,observation-265d76ee-b9dd-4b43-ad84-4834ce9dd358-5,https://biolit.fr/observations/observation-265d76ee-b9dd-4b43-ad84-4834ce9dd358-5/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/122460500_391848795169490_2328172510581274035_n.jpg,,TRUE, +N1,28468,sortie-265d76ee-b9dd-4b43-ad84-4834ce9dd358,https://biolit.fr/sorties/sortie-265d76ee-b9dd-4b43-ad84-4834ce9dd358/,e.detrez,,10/21/2020 0:00,13.0000000,13.0000000,43.459300000000,3.819148000000,CPIE Littoral d'Occitanie,Frontignan,27730,observation-265d76ee-b9dd-4b43-ad84-4834ce9dd358-6,https://biolit.fr/observations/observation-265d76ee-b9dd-4b43-ad84-4834ce9dd358-6/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/122465753_2491554204478891_8900691495877609362_n.jpg,,TRUE, +N1,28469,sortie-57a701b9-61a9-4cd1-b7c8-05ce71f2935e,https://biolit.fr/sorties/sortie-57a701b9-61a9-4cd1-b7c8-05ce71f2935e/,Emeline 44240,,2/17/2020 0:00,17.0:25,17.0000000,47.489222000000,-2.820291000000,,"plage de Kercambre, Saint-Gildas de Rhuys 56730",27732,observation-57a701b9-61a9-4cd1-b7c8-05ce71f2935e,https://biolit.fr/observations/observation-57a701b9-61a9-4cd1-b7c8-05ce71f2935e/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_0776 (2).JPG,,TRUE, +N1,28469,sortie-57a701b9-61a9-4cd1-b7c8-05ce71f2935e,https://biolit.fr/sorties/sortie-57a701b9-61a9-4cd1-b7c8-05ce71f2935e/,Emeline 44240,,2/17/2020 0:00,17.0:25,17.0000000,47.489222000000,-2.820291000000,,"plage de Kercambre, Saint-Gildas de Rhuys 56730",27734,observation-57a701b9-61a9-4cd1-b7c8-05ce71f2935e-2,https://biolit.fr/observations/observation-57a701b9-61a9-4cd1-b7c8-05ce71f2935e-2/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0763 (2).JPG,,TRUE, +N1,28469,sortie-57a701b9-61a9-4cd1-b7c8-05ce71f2935e,https://biolit.fr/sorties/sortie-57a701b9-61a9-4cd1-b7c8-05ce71f2935e/,Emeline 44240,,2/17/2020 0:00,17.0:25,17.0000000,47.489222000000,-2.820291000000,,"plage de Kercambre, Saint-Gildas de Rhuys 56730",27736,observation-57a701b9-61a9-4cd1-b7c8-05ce71f2935e-3,https://biolit.fr/observations/observation-57a701b9-61a9-4cd1-b7c8-05ce71f2935e-3/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_0766 (2).JPG,,TRUE, +N1,28470,sortie-7f1e7c5f-f5a9-43df-a1d7-153cd3466db3,https://biolit.fr/sorties/sortie-7f1e7c5f-f5a9-43df-a1d7-153cd3466db3/,Institut Marin du Seaquarium,,11/10/2018,10.0000000,12.0000000,43.509431000000,4.114105000000,Institut Marin du Seaquarium,Plage de L'Espiguette ,27738,observation-7f1e7c5f-f5a9-43df-a1d7-153cd3466db3,https://biolit.fr/observations/observation-7f1e7c5f-f5a9-43df-a1d7-153cd3466db3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181110_103651.jpg,,FALSE, +N1,28470,sortie-7f1e7c5f-f5a9-43df-a1d7-153cd3466db3,https://biolit.fr/sorties/sortie-7f1e7c5f-f5a9-43df-a1d7-153cd3466db3/,Institut Marin du Seaquarium,,11/10/2018,10.0000000,12.0000000,43.509431000000,4.114105000000,Institut Marin du Seaquarium,Plage de L'Espiguette ,27740,observation-7f1e7c5f-f5a9-43df-a1d7-153cd3466db3-2,https://biolit.fr/observations/observation-7f1e7c5f-f5a9-43df-a1d7-153cd3466db3-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181110_114213.jpg,,TRUE, +N1,28470,sortie-7f1e7c5f-f5a9-43df-a1d7-153cd3466db3,https://biolit.fr/sorties/sortie-7f1e7c5f-f5a9-43df-a1d7-153cd3466db3/,Institut Marin du Seaquarium,,11/10/2018,10.0000000,12.0000000,43.509431000000,4.114105000000,Institut Marin du Seaquarium,Plage de L'Espiguette ,27742,observation-7f1e7c5f-f5a9-43df-a1d7-153cd3466db3-3,https://biolit.fr/observations/observation-7f1e7c5f-f5a9-43df-a1d7-153cd3466db3-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181110_114223.jpg,,FALSE, +N1,28471,sortie-5b39833c-4bff-4209-ad3a-89dd341c58c3,https://biolit.fr/sorties/sortie-5b39833c-4bff-4209-ad3a-89dd341c58c3/,Institut Marin du Seaquarium,,10/24/2018 0:00,10.0000000,12.0000000,43.53697100000,4.133718000000,Institut Marin du Seaquarium,"Grau du Roi, plage Villa Parry",27744,observation-5b39833c-4bff-4209-ad3a-89dd341c58c3,https://biolit.fr/observations/observation-5b39833c-4bff-4209-ad3a-89dd341c58c3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181024_102102.jpg,,FALSE, +N1,28471,sortie-5b39833c-4bff-4209-ad3a-89dd341c58c3,https://biolit.fr/sorties/sortie-5b39833c-4bff-4209-ad3a-89dd341c58c3/,Institut Marin du Seaquarium,,10/24/2018 0:00,10.0000000,12.0000000,43.53697100000,4.133718000000,Institut Marin du Seaquarium,"Grau du Roi, plage Villa Parry",27746,observation-5b39833c-4bff-4209-ad3a-89dd341c58c3-2,https://biolit.fr/observations/observation-5b39833c-4bff-4209-ad3a-89dd341c58c3-2/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181024_102206.jpg,,TRUE, +N1,28471,sortie-5b39833c-4bff-4209-ad3a-89dd341c58c3,https://biolit.fr/sorties/sortie-5b39833c-4bff-4209-ad3a-89dd341c58c3/,Institut Marin du Seaquarium,,10/24/2018 0:00,10.0000000,12.0000000,43.53697100000,4.133718000000,Institut Marin du Seaquarium,"Grau du Roi, plage Villa Parry",27748,observation-5b39833c-4bff-4209-ad3a-89dd341c58c3-3,https://biolit.fr/observations/observation-5b39833c-4bff-4209-ad3a-89dd341c58c3-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181024_102328.jpg,,FALSE, +N1,28471,sortie-5b39833c-4bff-4209-ad3a-89dd341c58c3,https://biolit.fr/sorties/sortie-5b39833c-4bff-4209-ad3a-89dd341c58c3/,Institut Marin du Seaquarium,,10/24/2018 0:00,10.0000000,12.0000000,43.53697100000,4.133718000000,Institut Marin du Seaquarium,"Grau du Roi, plage Villa Parry",27750,observation-5b39833c-4bff-4209-ad3a-89dd341c58c3-4,https://biolit.fr/observations/observation-5b39833c-4bff-4209-ad3a-89dd341c58c3-4/,Tritia neritea,Cyclope néritoïde,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181024_102622.jpg,,TRUE, +N1,28471,sortie-5b39833c-4bff-4209-ad3a-89dd341c58c3,https://biolit.fr/sorties/sortie-5b39833c-4bff-4209-ad3a-89dd341c58c3/,Institut Marin du Seaquarium,,10/24/2018 0:00,10.0000000,12.0000000,43.53697100000,4.133718000000,Institut Marin du Seaquarium,"Grau du Roi, plage Villa Parry",27752,observation-5b39833c-4bff-4209-ad3a-89dd341c58c3-5,https://biolit.fr/observations/observation-5b39833c-4bff-4209-ad3a-89dd341c58c3-5/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181024_102658.jpg,,TRUE, +N1,28471,sortie-5b39833c-4bff-4209-ad3a-89dd341c58c3,https://biolit.fr/sorties/sortie-5b39833c-4bff-4209-ad3a-89dd341c58c3/,Institut Marin du Seaquarium,,10/24/2018 0:00,10.0000000,12.0000000,43.53697100000,4.133718000000,Institut Marin du Seaquarium,"Grau du Roi, plage Villa Parry",27754,observation-5b39833c-4bff-4209-ad3a-89dd341c58c3-6,https://biolit.fr/observations/observation-5b39833c-4bff-4209-ad3a-89dd341c58c3-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181024_102916.jpg,,FALSE, +N1,28471,sortie-5b39833c-4bff-4209-ad3a-89dd341c58c3,https://biolit.fr/sorties/sortie-5b39833c-4bff-4209-ad3a-89dd341c58c3/,Institut Marin du Seaquarium,,10/24/2018 0:00,10.0000000,12.0000000,43.53697100000,4.133718000000,Institut Marin du Seaquarium,"Grau du Roi, plage Villa Parry",27756,observation-5b39833c-4bff-4209-ad3a-89dd341c58c3-7,https://biolit.fr/observations/observation-5b39833c-4bff-4209-ad3a-89dd341c58c3-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181024_104411.jpg,,FALSE, +N1,28471,sortie-5b39833c-4bff-4209-ad3a-89dd341c58c3,https://biolit.fr/sorties/sortie-5b39833c-4bff-4209-ad3a-89dd341c58c3/,Institut Marin du Seaquarium,,10/24/2018 0:00,10.0000000,12.0000000,43.53697100000,4.133718000000,Institut Marin du Seaquarium,"Grau du Roi, plage Villa Parry",27758,observation-5b39833c-4bff-4209-ad3a-89dd341c58c3-8,https://biolit.fr/observations/observation-5b39833c-4bff-4209-ad3a-89dd341c58c3-8/,Aplysia depilans,Aplysie visqueuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181024_104742.jpg,,TRUE, +N1,28472,sortie-a5f0bfa8-aefd-4d9f-861f-3e89272aa6cb,https://biolit.fr/sorties/sortie-a5f0bfa8-aefd-4d9f-861f-3e89272aa6cb/,Institut Marin du Seaquarium,,05/07/2018,10.0000000,11.0000000,43.537087000000,4.133954000000,Institut Marin du Seaquarium,"Grau du Roi, plage Villa Parry",27760,observation-a5f0bfa8-aefd-4d9f-861f-3e89272aa6cb,https://biolit.fr/observations/observation-a5f0bfa8-aefd-4d9f-861f-3e89272aa6cb/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180509_115308-scaled.jpg,,FALSE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27762,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/81843883_592519731537363_5105247154524389376_n_1-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27764,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-2,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/81992507_2789335301087059_2049962159231729664_n_0-scaled.jpg,,FALSE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27766,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-3,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-3/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/81995354_824783414651651_4982829673076490240_n-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27768,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-4,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-4/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/81998073_875845979536772_4955752395356241920_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27772,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-6,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-6/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/82109252_872767053141330_4760168810286153728_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27776,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-8,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-8/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/82130892_506910286608933_6589282926523842560_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27778,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-9,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/82176420_2650218838379625_8715367097540018176_n_0-scaled.jpg,,FALSE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27780,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-10,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-10/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/82193981_487760182166972_3224230621962305536_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27782,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-11,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-11/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/82253700_483720765621182_7415341833468772352_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27784,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-12,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-12/,Bolinus brandaris,Murex épineux,,https://biolit.fr/wp-content/uploads/2023/07/82276430_2644558882265498_5398546979359817728_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27786,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-13,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-13/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/82307862_461817248061839_1547819433664184320_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27788,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-14,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/82310955_475054566760133_2353000912605151232_n_0-scaled.jpg,,FALSE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27790,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-15,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/82362779_553069288755237_1963277169304010752_n-scaled.jpg,,FALSE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27792,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-16,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-16/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/82369126_504917760158886_4504217737588899840_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27794,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-17,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-17/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/82382160_523814581822036_4090578929188864000_n-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27796,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-18,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-18/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/82391816_605331680033047_2339803972753162240_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27798,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-19,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-19/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/82452289_485276338803301_5031975450541293568_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27800,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-20,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-20/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/82464479_598026660993471_529599059921469440_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27802,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-21,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-21/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/2023/07/82493890_2497626257167032_6762065337673318400_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27804,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-22,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/82544205_477081546566631_20949184022577152_n_0-scaled.jpg,,FALSE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27806,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-23,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-23/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/82558763_658595214682011_6140974377606316032_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27808,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-24,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-24/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/82584335_631151437689092_3185936444443066368_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27810,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-25,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/82591782_560612204525381_8893346526491836416_n_0-scaled.jpg,,FALSE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27812,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-26,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/82634840_857283388081152_7811146073640009728_n-scaled.jpg,,FALSE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27816,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-28,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-28/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/82678449_3298996956793673_8155072675153182720_n-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27818,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-29,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/82751017_2461205090768226_4035382938668367872_n_0-scaled.jpg,,FALSE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27820,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-30,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/82759828_3402236396485371_7954111069473996800_n_0-scaled.jpg,,FALSE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27822,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-31,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-31/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/82799886_509977449876617_2300317138650398720_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27824,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-32,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-32/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/82816580_483069425978991_7777151063894786048_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27826,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-33,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-33/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/82929335_2501877469934679_8557505793618870272_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27828,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-34,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-34/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/83044424_795187097628446_3232907628426297344_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27830,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-35,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/83088178_1520452901450316_4654674651035729920_n_0-scaled.jpg,,FALSE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27832,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-36,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-36/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/83152888_2724056497642067_2422388737792016384_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27834,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-37,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-37/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/83729512_2608648482516624_3237094950956957696_n_0-scaled.jpg,,TRUE, +N1,28474,sortie-c53532e5-9ea7-46c4-9f05-e88b5a1f7f8c,https://biolit.fr/sorties/sortie-c53532e5-9ea7-46c4-9f05-e88b5a1f7f8c/,polig,,12/20/2019 0:00,15.0000000,16.0000000,47.864568000000,-4.119901000000,,Combrit sainte marine plage pen morvan,27836,observation-c53532e5-9ea7-46c4-9f05-e88b5a1f7f8c,https://biolit.fr/observations/observation-c53532e5-9ea7-46c4-9f05-e88b5a1f7f8c/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1078-scaled.jpg,,TRUE, +N1,28474,sortie-c53532e5-9ea7-46c4-9f05-e88b5a1f7f8c,https://biolit.fr/sorties/sortie-c53532e5-9ea7-46c4-9f05-e88b5a1f7f8c/,polig,,12/20/2019 0:00,15.0000000,16.0000000,47.864568000000,-4.119901000000,,Combrit sainte marine plage pen morvan,27838,observation-c53532e5-9ea7-46c4-9f05-e88b5a1f7f8c-2,https://biolit.fr/observations/observation-c53532e5-9ea7-46c4-9f05-e88b5a1f7f8c-2/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1090-scaled.jpg,,TRUE, +N1,28475,sortie-430c2a8d-e36c-4704-8b97-2536ee56629a,https://biolit.fr/sorties/sortie-430c2a8d-e36c-4704-8b97-2536ee56629a/,Emeline 44240,,08/05/2019,17.0000000,17.0:45,47.489243000000,-2.821313000000,,"Plage de kercambre,56730,Saint-Gildas-De-Rhuys,France",27840,observation-430c2a8d-e36c-4704-8b97-2536ee56629a,https://biolit.fr/observations/observation-430c2a8d-e36c-4704-8b97-2536ee56629a/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Oeufs de seiche-rotated.jpg,,TRUE, +N1,28476,sortie-a2bfeb6c-3f2b-486f-b70c-3ce4fe8de711,https://biolit.fr/sorties/sortie-a2bfeb6c-3f2b-486f-b70c-3ce4fe8de711/,cmercier,,4/30/2018 0:00,11.0000000,11.0:35,43.266474000000,6.697595000000,,Cap de Saint Tropez,27842,observation-a2bfeb6c-3f2b-486f-b70c-3ce4fe8de711,https://biolit.fr/observations/observation-a2bfeb6c-3f2b-486f-b70c-3ce4fe8de711/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20180427_Velella_CapStTropez_6.JPG,,TRUE, +N1,28476,sortie-a2bfeb6c-3f2b-486f-b70c-3ce4fe8de711,https://biolit.fr/sorties/sortie-a2bfeb6c-3f2b-486f-b70c-3ce4fe8de711/,cmercier,,4/30/2018 0:00,11.0000000,11.0:35,43.266474000000,6.697595000000,,Cap de Saint Tropez,27844,observation-a2bfeb6c-3f2b-486f-b70c-3ce4fe8de711-2,https://biolit.fr/observations/observation-a2bfeb6c-3f2b-486f-b70c-3ce4fe8de711-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20180427_Velella_CapStTropez_7.JPG,,TRUE, +N1,28476,sortie-a2bfeb6c-3f2b-486f-b70c-3ce4fe8de711,https://biolit.fr/sorties/sortie-a2bfeb6c-3f2b-486f-b70c-3ce4fe8de711/,cmercier,,4/30/2018 0:00,11.0000000,11.0:35,43.266474000000,6.697595000000,,Cap de Saint Tropez,27846,observation-a2bfeb6c-3f2b-486f-b70c-3ce4fe8de711-3,https://biolit.fr/observations/observation-a2bfeb6c-3f2b-486f-b70c-3ce4fe8de711-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20180427_Velella_CapStTropez_4.JPG,,TRUE, +N1,28477,sortie-b5ac154b-5254-476e-a8b7-6bd0cd11f77c,https://biolit.fr/sorties/sortie-b5ac154b-5254-476e-a8b7-6bd0cd11f77c/,Fleur,,06/09/2019,13.0000000,13.0:15,43.064080000000,6.150342000000,,Plage de la Capte - Hyères,27848,observation-b5ac154b-5254-476e-a8b7-6bd0cd11f77c,https://biolit.fr/observations/observation-b5ac154b-5254-476e-a8b7-6bd0cd11f77c/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190609_123621-scaled.jpg,,TRUE, +N1,28477,sortie-b5ac154b-5254-476e-a8b7-6bd0cd11f77c,https://biolit.fr/sorties/sortie-b5ac154b-5254-476e-a8b7-6bd0cd11f77c/,Fleur,,06/09/2019,13.0000000,13.0:15,43.064080000000,6.150342000000,,Plage de la Capte - Hyères,27850,observation-b5ac154b-5254-476e-a8b7-6bd0cd11f77c-2,https://biolit.fr/observations/observation-b5ac154b-5254-476e-a8b7-6bd0cd11f77c-2/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190609_123629-scaled.jpg,,TRUE, +N1,28478,sortie-d60fb788-d90d-440a-9283-7b0d3d12eb96,https://biolit.fr/sorties/sortie-d60fb788-d90d-440a-9283-7b0d3d12eb96/,Club subaquatique Narbonnais,,4/14/2019 0:00,11.0000000,12.0000000,43.168418000000,3.180337000000,Club Subaquatique Narbonnais CSN/FSGT,"plage de Narbonne-plage, promenade du port",27852,observation-d60fb788-d90d-440a-9283-7b0d3d12eb96,https://biolit.fr/observations/observation-d60fb788-d90d-440a-9283-7b0d3d12eb96/,,,,https://biolit.fr/wp-content/uploads/2023/07/capsules raie.JPG,,FALSE, +N1,28478,sortie-d60fb788-d90d-440a-9283-7b0d3d12eb96,https://biolit.fr/sorties/sortie-d60fb788-d90d-440a-9283-7b0d3d12eb96/,Club subaquatique Narbonnais,,4/14/2019 0:00,11.0000000,12.0000000,43.168418000000,3.180337000000,Club Subaquatique Narbonnais CSN/FSGT,"plage de Narbonne-plage, promenade du port",27854,observation-d60fb788-d90d-440a-9283-7b0d3d12eb96-2,https://biolit.fr/observations/observation-d60fb788-d90d-440a-9283-7b0d3d12eb96-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/divers.JPG,,FALSE, +N1,28478,sortie-d60fb788-d90d-440a-9283-7b0d3d12eb96,https://biolit.fr/sorties/sortie-d60fb788-d90d-440a-9283-7b0d3d12eb96/,Club subaquatique Narbonnais,,4/14/2019 0:00,11.0000000,12.0000000,43.168418000000,3.180337000000,Club Subaquatique Narbonnais CSN/FSGT,"plage de Narbonne-plage, promenade du port",27856,observation-d60fb788-d90d-440a-9283-7b0d3d12eb96-3,https://biolit.fr/observations/observation-d60fb788-d90d-440a-9283-7b0d3d12eb96-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/oeufs seiche_0.JPG,,FALSE, +N1,28478,sortie-d60fb788-d90d-440a-9283-7b0d3d12eb96,https://biolit.fr/sorties/sortie-d60fb788-d90d-440a-9283-7b0d3d12eb96/,Club subaquatique Narbonnais,,4/14/2019 0:00,11.0000000,12.0000000,43.168418000000,3.180337000000,Club Subaquatique Narbonnais CSN/FSGT,"plage de Narbonne-plage, promenade du port",27858,observation-d60fb788-d90d-440a-9283-7b0d3d12eb96-4,https://biolit.fr/observations/observation-d60fb788-d90d-440a-9283-7b0d3d12eb96-4/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/os seiche.JPG,,TRUE, +N1,28478,sortie-d60fb788-d90d-440a-9283-7b0d3d12eb96,https://biolit.fr/sorties/sortie-d60fb788-d90d-440a-9283-7b0d3d12eb96/,Club subaquatique Narbonnais,,4/14/2019 0:00,11.0000000,12.0000000,43.168418000000,3.180337000000,Club Subaquatique Narbonnais CSN/FSGT,"plage de Narbonne-plage, promenade du port",27860,observation-d60fb788-d90d-440a-9283-7b0d3d12eb96-5,https://biolit.fr/observations/observation-d60fb788-d90d-440a-9283-7b0d3d12eb96-5/,Hippocampus hippocampus,Hippocampe à museau court,,https://biolit.fr/wp-content/uploads/2023/07/hippo.JPG,,TRUE, +N1,28478,sortie-d60fb788-d90d-440a-9283-7b0d3d12eb96,https://biolit.fr/sorties/sortie-d60fb788-d90d-440a-9283-7b0d3d12eb96/,Club subaquatique Narbonnais,,4/14/2019 0:00,11.0000000,12.0000000,43.168418000000,3.180337000000,Club Subaquatique Narbonnais CSN/FSGT,"plage de Narbonne-plage, promenade du port",27862,observation-d60fb788-d90d-440a-9283-7b0d3d12eb96-6,https://biolit.fr/observations/observation-d60fb788-d90d-440a-9283-7b0d3d12eb96-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabepince.JPG,,FALSE, +N1,28478,sortie-d60fb788-d90d-440a-9283-7b0d3d12eb96,https://biolit.fr/sorties/sortie-d60fb788-d90d-440a-9283-7b0d3d12eb96/,Club subaquatique Narbonnais,,4/14/2019 0:00,11.0000000,12.0000000,43.168418000000,3.180337000000,Club Subaquatique Narbonnais CSN/FSGT,"plage de Narbonne-plage, promenade du port",27864,observation-d60fb788-d90d-440a-9283-7b0d3d12eb96-7,https://biolit.fr/observations/observation-d60fb788-d90d-440a-9283-7b0d3d12eb96-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/poisson.JPG,,FALSE, +N1,28478,sortie-d60fb788-d90d-440a-9283-7b0d3d12eb96,https://biolit.fr/sorties/sortie-d60fb788-d90d-440a-9283-7b0d3d12eb96/,Club subaquatique Narbonnais,,4/14/2019 0:00,11.0000000,12.0000000,43.168418000000,3.180337000000,Club Subaquatique Narbonnais CSN/FSGT,"plage de Narbonne-plage, promenade du port",27866,observation-d60fb788-d90d-440a-9283-7b0d3d12eb96-8,https://biolit.fr/observations/observation-d60fb788-d90d-440a-9283-7b0d3d12eb96-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/roussette.JPG,,FALSE, +N1,28479,sortie-af91e3bb-4127-46a6-ad66-942f4dc9e900,https://biolit.fr/sorties/sortie-af91e3bb-4127-46a6-ad66-942f4dc9e900/,Leonore Aubert,,3/14/2019 0:00,9.0000000,10.0000000,43.235903000000,5.359943000000,,Plage de la bonne brise 13008 Marseille,27868,observation-af91e3bb-4127-46a6-ad66-942f4dc9e900,https://biolit.fr/observations/observation-af91e3bb-4127-46a6-ad66-942f4dc9e900/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20190314_103516-scaled.jpg,,TRUE, +N1,28479,sortie-af91e3bb-4127-46a6-ad66-942f4dc9e900,https://biolit.fr/sorties/sortie-af91e3bb-4127-46a6-ad66-942f4dc9e900/,Leonore Aubert,,3/14/2019 0:00,9.0000000,10.0000000,43.235903000000,5.359943000000,,Plage de la bonne brise 13008 Marseille,27870,observation-af91e3bb-4127-46a6-ad66-942f4dc9e900-2,https://biolit.fr/observations/observation-af91e3bb-4127-46a6-ad66-942f4dc9e900-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190314_103355-scaled.jpg,,FALSE, +N1,28479,sortie-af91e3bb-4127-46a6-ad66-942f4dc9e900,https://biolit.fr/sorties/sortie-af91e3bb-4127-46a6-ad66-942f4dc9e900/,Leonore Aubert,,3/14/2019 0:00,9.0000000,10.0000000,43.235903000000,5.359943000000,,Plage de la bonne brise 13008 Marseille,27872,observation-af91e3bb-4127-46a6-ad66-942f4dc9e900-3,https://biolit.fr/observations/observation-af91e3bb-4127-46a6-ad66-942f4dc9e900-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190314_103425-scaled.jpg,,FALSE, +N1,28479,sortie-af91e3bb-4127-46a6-ad66-942f4dc9e900,https://biolit.fr/sorties/sortie-af91e3bb-4127-46a6-ad66-942f4dc9e900/,Leonore Aubert,,3/14/2019 0:00,9.0000000,10.0000000,43.235903000000,5.359943000000,,Plage de la bonne brise 13008 Marseille,27874,observation-af91e3bb-4127-46a6-ad66-942f4dc9e900-4,https://biolit.fr/observations/observation-af91e3bb-4127-46a6-ad66-942f4dc9e900-4/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/20190314_103407-min-scaled.jpg,,TRUE, +N1,28479,sortie-af91e3bb-4127-46a6-ad66-942f4dc9e900,https://biolit.fr/sorties/sortie-af91e3bb-4127-46a6-ad66-942f4dc9e900/,Leonore Aubert,,3/14/2019 0:00,9.0000000,10.0000000,43.235903000000,5.359943000000,,Plage de la bonne brise 13008 Marseille,27876,observation-af91e3bb-4127-46a6-ad66-942f4dc9e900-5,https://biolit.fr/observations/observation-af91e3bb-4127-46a6-ad66-942f4dc9e900-5/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/20190314_103419-scaled.jpg,,TRUE, +N1,28479,sortie-af91e3bb-4127-46a6-ad66-942f4dc9e900,https://biolit.fr/sorties/sortie-af91e3bb-4127-46a6-ad66-942f4dc9e900/,Leonore Aubert,,3/14/2019 0:00,9.0000000,10.0000000,43.235903000000,5.359943000000,,Plage de la bonne brise 13008 Marseille,27878,observation-af91e3bb-4127-46a6-ad66-942f4dc9e900-6,https://biolit.fr/observations/observation-af91e3bb-4127-46a6-ad66-942f4dc9e900-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190314_103535-scaled.jpg,,FALSE, +N1,28480,sortie-b83c4ae1-240e-411f-99d5-77a896931d16,https://biolit.fr/sorties/sortie-b83c4ae1-240e-411f-99d5-77a896931d16/,Club subaquatique Narbonnais,,03/09/2019,15.0000000,16.0000000,43.168193000000,3.181029000000,Club Subaquatique Narbonnais CSN/FSGT,"plage de Narbonne-plage, promenade du port",27880,observation-b83c4ae1-240e-411f-99d5-77a896931d16,https://biolit.fr/observations/observation-b83c4ae1-240e-411f-99d5-77a896931d16/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/oeufs seiche.JPG,,TRUE, +N1,28480,sortie-b83c4ae1-240e-411f-99d5-77a896931d16,https://biolit.fr/sorties/sortie-b83c4ae1-240e-411f-99d5-77a896931d16/,Club subaquatique Narbonnais,,03/09/2019,15.0000000,16.0000000,43.168193000000,3.181029000000,Club Subaquatique Narbonnais CSN/FSGT,"plage de Narbonne-plage, promenade du port",27882,observation-b83c4ae1-240e-411f-99d5-77a896931d16-2,https://biolit.fr/observations/observation-b83c4ae1-240e-411f-99d5-77a896931d16-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/capsules raies.JPG,,FALSE, +N1,28480,sortie-b83c4ae1-240e-411f-99d5-77a896931d16,https://biolit.fr/sorties/sortie-b83c4ae1-240e-411f-99d5-77a896931d16/,Club subaquatique Narbonnais,,03/09/2019,15.0000000,16.0000000,43.168193000000,3.181029000000,Club Subaquatique Narbonnais CSN/FSGT,"plage de Narbonne-plage, promenade du port",27884,observation-b83c4ae1-240e-411f-99d5-77a896931d16-3,https://biolit.fr/observations/observation-b83c4ae1-240e-411f-99d5-77a896931d16-3/,Pleurobrachia pileus,Groseille de mer,,https://biolit.fr/wp-content/uploads/2023/07/groseille.JPG,,TRUE, +N1,28481,sortie-bc79af47-a227-413d-a21e-aebdeba58412,https://biolit.fr/sorties/sortie-bc79af47-a227-413d-a21e-aebdeba58412/,Marine,,10/08/2018,9.0:25,9.0000000,43.236138000000,5.359962000000,,plage de la bonne brise,27886,observation-bc79af47-a227-413d-a21e-aebdeba58412,https://biolit.fr/observations/observation-bc79af47-a227-413d-a21e-aebdeba58412/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5554-rotated.jpg,,FALSE, +N1,28482,sortie-5c23d48b-b0a2-4ad8-a918-81ff851b5c83,https://biolit.fr/sorties/sortie-5c23d48b-b0a2-4ad8-a918-81ff851b5c83/,Fleur,,9/28/2018 0:00,13.0000000,14.0000000,43.078560000000,5.894808000000,,"Plage des Sablettes, La Seyne-sur-Mer",27888,observation-5c23d48b-b0a2-4ad8-a918-81ff851b5c83,https://biolit.fr/observations/observation-5c23d48b-b0a2-4ad8-a918-81ff851b5c83/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9686-min-scaled.jpg,,FALSE, +N1,28483,sortie-a77e4564-62ff-47a0-82a3-6b5b82da7575,https://biolit.fr/sorties/sortie-a77e4564-62ff-47a0-82a3-6b5b82da7575/,LPO Occitanie (délégation Hérault),,9/21/2018 0:00,10.0:15,10.0000000,43.453930000000,3.813569000000,,"Plage des Aresquiers, Frontignan",27890,observation-a77e4564-62ff-47a0-82a3-6b5b82da7575,https://biolit.fr/observations/observation-a77e4564-62ff-47a0-82a3-6b5b82da7575/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180921_112515 - Copie (2).jpg,,FALSE, +N1,28483,sortie-a77e4564-62ff-47a0-82a3-6b5b82da7575,https://biolit.fr/sorties/sortie-a77e4564-62ff-47a0-82a3-6b5b82da7575/,LPO Occitanie (délégation Hérault),,9/21/2018 0:00,10.0:15,10.0000000,43.453930000000,3.813569000000,,"Plage des Aresquiers, Frontignan",27892,observation-a77e4564-62ff-47a0-82a3-6b5b82da7575-2,https://biolit.fr/observations/observation-a77e4564-62ff-47a0-82a3-6b5b82da7575-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180921_112515 - Copie (3).jpg,,FALSE, +N1,28483,sortie-a77e4564-62ff-47a0-82a3-6b5b82da7575,https://biolit.fr/sorties/sortie-a77e4564-62ff-47a0-82a3-6b5b82da7575/,LPO Occitanie (délégation Hérault),,9/21/2018 0:00,10.0:15,10.0000000,43.453930000000,3.813569000000,,"Plage des Aresquiers, Frontignan",27894,observation-a77e4564-62ff-47a0-82a3-6b5b82da7575-3,https://biolit.fr/observations/observation-a77e4564-62ff-47a0-82a3-6b5b82da7575-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180921_112515 - Copie (5).jpg,,FALSE, +N1,28483,sortie-a77e4564-62ff-47a0-82a3-6b5b82da7575,https://biolit.fr/sorties/sortie-a77e4564-62ff-47a0-82a3-6b5b82da7575/,LPO Occitanie (délégation Hérault),,9/21/2018 0:00,10.0:15,10.0000000,43.453930000000,3.813569000000,,"Plage des Aresquiers, Frontignan",27896,observation-a77e4564-62ff-47a0-82a3-6b5b82da7575-4,https://biolit.fr/observations/observation-a77e4564-62ff-47a0-82a3-6b5b82da7575-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180921_112515 - Copie (4).jpg,,FALSE, +N1,28483,sortie-a77e4564-62ff-47a0-82a3-6b5b82da7575,https://biolit.fr/sorties/sortie-a77e4564-62ff-47a0-82a3-6b5b82da7575/,LPO Occitanie (délégation Hérault),,9/21/2018 0:00,10.0:15,10.0000000,43.453930000000,3.813569000000,,"Plage des Aresquiers, Frontignan",27898,observation-a77e4564-62ff-47a0-82a3-6b5b82da7575-5,https://biolit.fr/observations/observation-a77e4564-62ff-47a0-82a3-6b5b82da7575-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180921_112515 - Copie.jpg,,FALSE, +N1,28483,sortie-a77e4564-62ff-47a0-82a3-6b5b82da7575,https://biolit.fr/sorties/sortie-a77e4564-62ff-47a0-82a3-6b5b82da7575/,LPO Occitanie (délégation Hérault),,9/21/2018 0:00,10.0:15,10.0000000,43.453930000000,3.813569000000,,"Plage des Aresquiers, Frontignan",27900,observation-a77e4564-62ff-47a0-82a3-6b5b82da7575-6,https://biolit.fr/observations/observation-a77e4564-62ff-47a0-82a3-6b5b82da7575-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180921_112515 - Copie (6).jpg,,FALSE, +N1,28484,sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c,https://biolit.fr/sorties/sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c/,Morice,,6/27/2018 0:00,10.0000000,10.0:45,48.625845000000,-2.053248000000,,Plage du Prieuré,27902,observation-2667873c-0387-45f1-b440-e2fbf90b2a6c,https://biolit.fr/observations/observation-2667873c-0387-45f1-b440-e2fbf90b2a6c/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20180627_103819-scaled.jpg,,TRUE, +N1,28484,sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c,https://biolit.fr/sorties/sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c/,Morice,,6/27/2018 0:00,10.0000000,10.0:45,48.625845000000,-2.053248000000,,Plage du Prieuré,27904,observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-2,https://biolit.fr/observations/observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-2/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20180627_103843-scaled.jpg,,TRUE, +N1,28484,sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c,https://biolit.fr/sorties/sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c/,Morice,,6/27/2018 0:00,10.0000000,10.0:45,48.625845000000,-2.053248000000,,Plage du Prieuré,27906,observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-3,https://biolit.fr/observations/observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180627_103920-scaled.jpg,,FALSE, +N1,28484,sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c,https://biolit.fr/sorties/sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c/,Morice,,6/27/2018 0:00,10.0000000,10.0:45,48.625845000000,-2.053248000000,,Plage du Prieuré,27908,observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-4,https://biolit.fr/observations/observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20180627_103941-scaled.jpg,,TRUE, +N1,28484,sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c,https://biolit.fr/sorties/sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c/,Morice,,6/27/2018 0:00,10.0000000,10.0:45,48.625845000000,-2.053248000000,,Plage du Prieuré,27910,observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-5,https://biolit.fr/observations/observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180627_104105-scaled.jpg,,FALSE, +N1,28484,sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c,https://biolit.fr/sorties/sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c/,Morice,,6/27/2018 0:00,10.0000000,10.0:45,48.625845000000,-2.053248000000,,Plage du Prieuré,27912,observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-6,https://biolit.fr/observations/observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180627_104140-scaled.jpg,,FALSE, +N1,28484,sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c,https://biolit.fr/sorties/sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c/,Morice,,6/27/2018 0:00,10.0000000,10.0:45,48.625845000000,-2.053248000000,,Plage du Prieuré,27914,observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-7,https://biolit.fr/observations/observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-7/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/20180627_104223-scaled.jpg,,TRUE, +N1,28484,sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c,https://biolit.fr/sorties/sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c/,Morice,,6/27/2018 0:00,10.0000000,10.0:45,48.625845000000,-2.053248000000,,Plage du Prieuré,27916,observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-8,https://biolit.fr/observations/observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-8/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/20180627_104327-scaled.jpg,,TRUE, +N1,28484,sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c,https://biolit.fr/sorties/sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c/,Morice,,6/27/2018 0:00,10.0000000,10.0:45,48.625845000000,-2.053248000000,,Plage du Prieuré,27918,observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-9,https://biolit.fr/observations/observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180627_104348-scaled.jpg,,FALSE, +N1,28484,sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c,https://biolit.fr/sorties/sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c/,Morice,,6/27/2018 0:00,10.0000000,10.0:45,48.625845000000,-2.053248000000,,Plage du Prieuré,27920,observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-10,https://biolit.fr/observations/observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180627_104727-scaled.jpg,,FALSE, +N1,28484,sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c,https://biolit.fr/sorties/sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c/,Morice,,6/27/2018 0:00,10.0000000,10.0:45,48.625845000000,-2.053248000000,,Plage du Prieuré,27922,observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-11,https://biolit.fr/observations/observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180627_104806-scaled.jpg,,FALSE, +N1,28484,sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c,https://biolit.fr/sorties/sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c/,Morice,,6/27/2018 0:00,10.0000000,10.0:45,48.625845000000,-2.053248000000,,Plage du Prieuré,27924,observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-12,https://biolit.fr/observations/observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180627_104822-scaled.jpg,,FALSE, +N1,28484,sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c,https://biolit.fr/sorties/sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c/,Morice,,6/27/2018 0:00,10.0000000,10.0:45,48.625845000000,-2.053248000000,,Plage du Prieuré,27926,observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-13,https://biolit.fr/observations/observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-13/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/20180627_104750-scaled.jpg,,TRUE, +N1,28485,sortie-233a0b3e-d0ea-4d59-9722-85d6aa06f43e,https://biolit.fr/sorties/sortie-233a0b3e-d0ea-4d59-9722-85d6aa06f43e/,CarpeDiem,,5/20/2018 0:00,16.0000000,17.0000000,43.187944000000,6.645553000000,,Anse de l'Escalet,27928,observation-233a0b3e-d0ea-4d59-9722-85d6aa06f43e,https://biolit.fr/observations/observation-233a0b3e-d0ea-4d59-9722-85d6aa06f43e/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Velella velella_2-scaled.jpg,,TRUE, +N1,28486,sortie-4b26b509-cdec-4823-b41f-9b8afe9dabca,https://biolit.fr/sorties/sortie-4b26b509-cdec-4823-b41f-9b8afe9dabca/,Fleur,,4/19/2018 0:00,12.0000000,12.0000000,43.001881000000,6.2077410000,,"Plage de la Courtade, Porquerolles",27930,observation-4b26b509-cdec-4823-b41f-9b8afe9dabca,https://biolit.fr/observations/observation-4b26b509-cdec-4823-b41f-9b8afe9dabca/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_0768-scaled.jpg,,TRUE, +N1,28487,sortie-04e10c01-1ad9-4b92-911a-282eb1e2d8f3,https://biolit.fr/sorties/sortie-04e10c01-1ad9-4b92-911a-282eb1e2d8f3/,Fleur,,4/15/2018 0:00,15.0000000,15.0000000,43.07204700000,6.128573000000,,"Plage de l'Almanarre, Hyères",27932,observation-04e10c01-1ad9-4b92-911a-282eb1e2d8f3,https://biolit.fr/observations/observation-04e10c01-1ad9-4b92-911a-282eb1e2d8f3/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_0739-scaled.jpg,,TRUE, +N1,28488,sortie-e0a59da1-4bff-444b-b8dc-5a3254c4dbbf,https://biolit.fr/sorties/sortie-e0a59da1-4bff-444b-b8dc-5a3254c4dbbf/,Club subaquatique Narbonnais,,4/28/2018 0:00,11.0000000,11.0000000,43.173744000000,3.190964000000,,Saint-Pierre la mer,27934,observation-e0a59da1-4bff-444b-b8dc-5a3254c4dbbf,https://biolit.fr/observations/observation-e0a59da1-4bff-444b-b8dc-5a3254c4dbbf/,Sabella spallanzanii,Spirographe,,https://biolit.fr/wp-content/uploads/2023/07/TRioponte seiche.jpg,,TRUE, +N1,28488,sortie-e0a59da1-4bff-444b-b8dc-5a3254c4dbbf,https://biolit.fr/sorties/sortie-e0a59da1-4bff-444b-b8dc-5a3254c4dbbf/,Club subaquatique Narbonnais,,4/28/2018 0:00,11.0000000,11.0000000,43.173744000000,3.190964000000,,Saint-Pierre la mer,27936,observation-e0a59da1-4bff-444b-b8dc-5a3254c4dbbf-2,https://biolit.fr/observations/observation-e0a59da1-4bff-444b-b8dc-5a3254c4dbbf-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/ponte_0.jpg,,FALSE, +N1,28488,sortie-e0a59da1-4bff-444b-b8dc-5a3254c4dbbf,https://biolit.fr/sorties/sortie-e0a59da1-4bff-444b-b8dc-5a3254c4dbbf/,Club subaquatique Narbonnais,,4/28/2018 0:00,11.0000000,11.0000000,43.173744000000,3.190964000000,,Saint-Pierre la mer,27938,observation-e0a59da1-4bff-444b-b8dc-5a3254c4dbbf-3,https://biolit.fr/observations/observation-e0a59da1-4bff-444b-b8dc-5a3254c4dbbf-3/,Cratena peregrina,Hervia,,https://biolit.fr/wp-content/uploads/2023/07/Hervia et juvenil.jpg,,TRUE, +N1,28489,sortie-353d43e3-10a3-4746-8f01-3dcd3e690959,https://biolit.fr/sorties/sortie-353d43e3-10a3-4746-8f01-3dcd3e690959/,Club subaquatique Narbonnais,,4/15/2018 0:00,11.0000000,12.0000000,43.168173000000,3.180622000000,,"plage de Narbonne-plage, promenade du port",27940,observation-353d43e3-10a3-4746-8f01-3dcd3e690959,https://biolit.fr/observations/observation-353d43e3-10a3-4746-8f01-3dcd3e690959/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue 2-scaled.jpg,,FALSE, +N1,28489,sortie-353d43e3-10a3-4746-8f01-3dcd3e690959,https://biolit.fr/sorties/sortie-353d43e3-10a3-4746-8f01-3dcd3e690959/,Club subaquatique Narbonnais,,4/15/2018 0:00,11.0000000,12.0000000,43.168173000000,3.180622000000,,"plage de Narbonne-plage, promenade du port",27942,observation-353d43e3-10a3-4746-8f01-3dcd3e690959-2,https://biolit.fr/observations/observation-353d43e3-10a3-4746-8f01-3dcd3e690959-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/capsule-scaled.jpg,,FALSE, +N1,28489,sortie-353d43e3-10a3-4746-8f01-3dcd3e690959,https://biolit.fr/sorties/sortie-353d43e3-10a3-4746-8f01-3dcd3e690959/,Club subaquatique Narbonnais,,4/15/2018 0:00,11.0000000,12.0000000,43.168173000000,3.180622000000,,"plage de Narbonne-plage, promenade du port",27944,observation-353d43e3-10a3-4746-8f01-3dcd3e690959-3,https://biolit.fr/observations/observation-353d43e3-10a3-4746-8f01-3dcd3e690959-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/méduse_0.jpg,,FALSE, +N1,28489,sortie-353d43e3-10a3-4746-8f01-3dcd3e690959,https://biolit.fr/sorties/sortie-353d43e3-10a3-4746-8f01-3dcd3e690959/,Club subaquatique Narbonnais,,4/15/2018 0:00,11.0000000,12.0000000,43.168173000000,3.180622000000,,"plage de Narbonne-plage, promenade du port",27945,observation-353d43e3-10a3-4746-8f01-3dcd3e690959-4,https://biolit.fr/observations/observation-353d43e3-10a3-4746-8f01-3dcd3e690959-4/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/velella.JPG,,TRUE, +N1,28490,sortie-4a84d4fe-a9f8-448a-b125-bdf6afbf8ec0,https://biolit.fr/sorties/sortie-4a84d4fe-a9f8-448a-b125-bdf6afbf8ec0/,CPIE Cote Provencale Atelier Bleu,,04/10/2018,13.0000000,17.0:15,43.166254000000,5.605894000000,,"Plage du Mugel, LA CIOTAT",27947,observation-4a84d4fe-a9f8-448a-b125-bdf6afbf8ec0,https://biolit.fr/observations/observation-4a84d4fe-a9f8-448a-b125-bdf6afbf8ec0/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Velelle-scaled.jpg,,TRUE, +N1,28490,sortie-4a84d4fe-a9f8-448a-b125-bdf6afbf8ec0,https://biolit.fr/sorties/sortie-4a84d4fe-a9f8-448a-b125-bdf6afbf8ec0/,CPIE Cote Provencale Atelier Bleu,,04/10/2018,13.0000000,17.0:15,43.166254000000,5.605894000000,,"Plage du Mugel, LA CIOTAT",27949,observation-4a84d4fe-a9f8-448a-b125-bdf6afbf8ec0-2,https://biolit.fr/observations/observation-4a84d4fe-a9f8-448a-b125-bdf6afbf8ec0-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Velelle 2-scaled.jpg,,TRUE, +N1,28491,sortie-e0e053f5-25da-408e-bf59-9152d09df279,https://biolit.fr/sorties/sortie-e0e053f5-25da-408e-bf59-9152d09df279/,CPIE Cote Provencale Atelier Bleu,,03/09/2018,17.0000000,17.0000000,43.165930000000,5.605840000000,,La Ciotat,27951,observation-e0e053f5-25da-408e-bf59-9152d09df279,https://biolit.fr/observations/observation-e0e053f5-25da-408e-bf59-9152d09df279/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_0263-scaled.jpg,,TRUE, +N1,28492,sortie-441b4a18-5e4c-441b-858d-b2046a4af347,https://biolit.fr/sorties/sortie-441b4a18-5e4c-441b-858d-b2046a4af347/,Observe la nature,,04/01/2018,21.0000000,23.0000000,48.815538000000,-3.427140000000,,Pors ar Goret Perros Guirec,27953,observation-441b4a18-5e4c-441b-858d-b2046a4af347,https://biolit.fr/observations/observation-441b4a18-5e4c-441b-858d-b2046a4af347/,,,,https://biolit.fr/wp-content/uploads/2023/07/P4020647-scaled.jpg,,FALSE, +N1,28492,sortie-441b4a18-5e4c-441b-858d-b2046a4af347,https://biolit.fr/sorties/sortie-441b4a18-5e4c-441b-858d-b2046a4af347/,Observe la nature,,04/01/2018,21.0000000,23.0000000,48.815538000000,-3.427140000000,,Pors ar Goret Perros Guirec,27955,observation-441b4a18-5e4c-441b-858d-b2046a4af347-2,https://biolit.fr/observations/observation-441b4a18-5e4c-441b-858d-b2046a4af347-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P4020774-scaled.jpg,,FALSE, +N1,28492,sortie-441b4a18-5e4c-441b-858d-b2046a4af347,https://biolit.fr/sorties/sortie-441b4a18-5e4c-441b-858d-b2046a4af347/,Observe la nature,,04/01/2018,21.0000000,23.0000000,48.815538000000,-3.427140000000,,Pors ar Goret Perros Guirec,27957,observation-441b4a18-5e4c-441b-858d-b2046a4af347-3,https://biolit.fr/observations/observation-441b4a18-5e4c-441b-858d-b2046a4af347-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P4020754-scaled.jpg,,FALSE, +N1,28492,sortie-441b4a18-5e4c-441b-858d-b2046a4af347,https://biolit.fr/sorties/sortie-441b4a18-5e4c-441b-858d-b2046a4af347/,Observe la nature,,04/01/2018,21.0000000,23.0000000,48.815538000000,-3.427140000000,,Pors ar Goret Perros Guirec,27959,observation-441b4a18-5e4c-441b-858d-b2046a4af347-4,https://biolit.fr/observations/observation-441b4a18-5e4c-441b-858d-b2046a4af347-4/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/P4020732-scaled.jpg,,TRUE, +N1,28493,sortie-fa9a78ca-37bf-445f-81ad-9c1d6fb0c826,https://biolit.fr/sorties/sortie-fa9a78ca-37bf-445f-81ad-9c1d6fb0c826/,Morice,,3/18/2018 0:00,14.0000000,15.0000000,48.643216000000,-2.07271000000,,Saint-Enogat,27961,observation-fa9a78ca-37bf-445f-81ad-9c1d6fb0c826,https://biolit.fr/observations/observation-fa9a78ca-37bf-445f-81ad-9c1d6fb0c826/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC_0259.jpg,,TRUE, +N1,28493,sortie-fa9a78ca-37bf-445f-81ad-9c1d6fb0c826,https://biolit.fr/sorties/sortie-fa9a78ca-37bf-445f-81ad-9c1d6fb0c826/,Morice,,3/18/2018 0:00,14.0000000,15.0000000,48.643216000000,-2.07271000000,,Saint-Enogat,27963,observation-fa9a78ca-37bf-445f-81ad-9c1d6fb0c826-2,https://biolit.fr/observations/observation-fa9a78ca-37bf-445f-81ad-9c1d6fb0c826-2/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0388.jpg,,TRUE, +N1,28494,sortie-c298a983-dae4-4d0d-8422-23995a629a06,https://biolit.fr/sorties/sortie-c298a983-dae4-4d0d-8422-23995a629a06/,Morice,,03/06/2018,14.0000000,17.0000000,48.869809000000,-1.826269000000,,Chausey - Port Marie,27965,observation-c298a983-dae4-4d0d-8422-23995a629a06,https://biolit.fr/observations/observation-c298a983-dae4-4d0d-8422-23995a629a06/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180306_162016-scaled.jpg,,TRUE, +N1,28494,sortie-c298a983-dae4-4d0d-8422-23995a629a06,https://biolit.fr/sorties/sortie-c298a983-dae4-4d0d-8422-23995a629a06/,Morice,,03/06/2018,14.0000000,17.0000000,48.869809000000,-1.826269000000,,Chausey - Port Marie,27967,observation-c298a983-dae4-4d0d-8422-23995a629a06-2,https://biolit.fr/observations/observation-c298a983-dae4-4d0d-8422-23995a629a06-2/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20180305_165326-scaled.jpg,,TRUE, +N1,28495,sortie-5b757eb8-94fa-4e44-a259-fcda8405de27,https://biolit.fr/sorties/sortie-5b757eb8-94fa-4e44-a259-fcda8405de27/,club de la mer nice,,1/24/2018 0:00,10.0000000,12.0000000,43.685283000000,7.305891000000,,Villefranche sur Mer,27969,observation-5b757eb8-94fa-4e44-a259-fcda8405de27,https://biolit.fr/observations/observation-5b757eb8-94fa-4e44-a259-fcda8405de27/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180124_114350.jpg,,FALSE, +N1,28496,sortie-9ac1a736-8baf-4a23-b43b-f808b036806f,https://biolit.fr/sorties/sortie-9ac1a736-8baf-4a23-b43b-f808b036806f/,Club subaquatique Narbonnais,,1/13/2018 0:00,14.0:45,15.0000000,43.168380000000,3.180737000000,,"plage de Narbonne-plage, promenade du port",27971,observation-9ac1a736-8baf-4a23-b43b-f808b036806f,https://biolit.fr/observations/observation-9ac1a736-8baf-4a23-b43b-f808b036806f/,,,,https://biolit.fr/wp-content/uploads/2023/07/méduse pélagia-scaled.jpg,,FALSE, +N1,28496,sortie-9ac1a736-8baf-4a23-b43b-f808b036806f,https://biolit.fr/sorties/sortie-9ac1a736-8baf-4a23-b43b-f808b036806f/,Club subaquatique Narbonnais,,1/13/2018 0:00,14.0:45,15.0000000,43.168380000000,3.180737000000,,"plage de Narbonne-plage, promenade du port",27973,observation-9ac1a736-8baf-4a23-b43b-f808b036806f-2,https://biolit.fr/observations/observation-9ac1a736-8baf-4a23-b43b-f808b036806f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/oeuf raie étoilée.JPG,,FALSE, +N1,28496,sortie-9ac1a736-8baf-4a23-b43b-f808b036806f,https://biolit.fr/sorties/sortie-9ac1a736-8baf-4a23-b43b-f808b036806f/,Club subaquatique Narbonnais,,1/13/2018 0:00,14.0:45,15.0000000,43.168380000000,3.180737000000,,"plage de Narbonne-plage, promenade du port",27975,observation-9ac1a736-8baf-4a23-b43b-f808b036806f-3,https://biolit.fr/observations/observation-9ac1a736-8baf-4a23-b43b-f808b036806f-3/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/oeufs buccin-scaled.jpg,,TRUE, +N1,28496,sortie-9ac1a736-8baf-4a23-b43b-f808b036806f,https://biolit.fr/sorties/sortie-9ac1a736-8baf-4a23-b43b-f808b036806f/,Club subaquatique Narbonnais,,1/13/2018 0:00,14.0:45,15.0000000,43.168380000000,3.180737000000,,"plage de Narbonne-plage, promenade du port",27977,observation-9ac1a736-8baf-4a23-b43b-f808b036806f-4,https://biolit.fr/observations/observation-9ac1a736-8baf-4a23-b43b-f808b036806f-4/,Solecurtus strigilatus,Solécurte rose,,https://biolit.fr/wp-content/uploads/2023/07/Solecurtus-scaled.jpg,,TRUE, +N1,28497,sortie-072339fc-6425-4120-bb43-f804ddb76859,https://biolit.fr/sorties/sortie-072339fc-6425-4120-bb43-f804ddb76859/,LucileA,,12/12/2017,14.0000000,15.0000000,48.636445000000,-2.081416000000,,Plage de la rue Sergent Boulanger,27979,observation-072339fc-6425-4120-bb43-f804ddb76859,https://biolit.fr/observations/observation-072339fc-6425-4120-bb43-f804ddb76859/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_8174-scaled.jpg,,TRUE, +N1,28498,sortie-3e02a364-6989-4703-9805-931a7b3bfcf8,https://biolit.fr/sorties/sortie-3e02a364-6989-4703-9805-931a7b3bfcf8/,Institut Marin du Seaquarium,,10/18/2017 0:00,15.0000000,17.0000000,43.527400000000,4.139173000000,,plages du Grau du Roi,27981,observation-3e02a364-6989-4703-9805-931a7b3bfcf8,https://biolit.fr/observations/observation-3e02a364-6989-4703-9805-931a7b3bfcf8/,Tritia neritea,Cyclope néritoïde,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171008_103621_0-scaled.jpg,,TRUE, +N1,28498,sortie-3e02a364-6989-4703-9805-931a7b3bfcf8,https://biolit.fr/sorties/sortie-3e02a364-6989-4703-9805-931a7b3bfcf8/,Institut Marin du Seaquarium,,10/18/2017 0:00,15.0000000,17.0000000,43.527400000000,4.139173000000,,plages du Grau du Roi,27983,observation-3e02a364-6989-4703-9805-931a7b3bfcf8-2,https://biolit.fr/observations/observation-3e02a364-6989-4703-9805-931a7b3bfcf8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171008_105059-scaled.jpg,,FALSE, +N1,28498,sortie-3e02a364-6989-4703-9805-931a7b3bfcf8,https://biolit.fr/sorties/sortie-3e02a364-6989-4703-9805-931a7b3bfcf8/,Institut Marin du Seaquarium,,10/18/2017 0:00,15.0000000,17.0000000,43.527400000000,4.139173000000,,plages du Grau du Roi,27985,observation-3e02a364-6989-4703-9805-931a7b3bfcf8-3,https://biolit.fr/observations/observation-3e02a364-6989-4703-9805-931a7b3bfcf8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171008_104035-scaled.jpg,,FALSE, +N1,28499,sortie-0614698a-2755-497a-839e-19ad25265f8a,https://biolit.fr/sorties/sortie-0614698a-2755-497a-839e-19ad25265f8a/,LucileA,,07/04/2017,14.0:45,16.0:45,48.640798000000,-2.072506000000,,Plage de Saint Enogat,27987,observation-0614698a-2755-497a-839e-19ad25265f8a,https://biolit.fr/observations/observation-0614698a-2755-497a-839e-19ad25265f8a/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_6652-scaled.jpg,,TRUE, +N1,28499,sortie-0614698a-2755-497a-839e-19ad25265f8a,https://biolit.fr/sorties/sortie-0614698a-2755-497a-839e-19ad25265f8a/,LucileA,,07/04/2017,14.0:45,16.0:45,48.640798000000,-2.072506000000,,Plage de Saint Enogat,27989,observation-0614698a-2755-497a-839e-19ad25265f8a-2,https://biolit.fr/observations/observation-0614698a-2755-497a-839e-19ad25265f8a-2/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_6653-scaled.jpg,,TRUE, +N1,28500,sortie-35b712ee-649a-4acf-86df-a780a7fe6533,https://biolit.fr/sorties/sortie-35b712ee-649a-4acf-86df-a780a7fe6533/,NVanzu,,6/29/2017 0:00,11.0000000,13.0000000,43.233082000000,5.356246000000,,Plage de la bonne brise,27991,observation-35b712ee-649a-4acf-86df-a780a7fe6533,https://biolit.fr/observations/observation-35b712ee-649a-4acf-86df-a780a7fe6533/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0105-scaled.jpg,,FALSE, +N1,28500,sortie-35b712ee-649a-4acf-86df-a780a7fe6533,https://biolit.fr/sorties/sortie-35b712ee-649a-4acf-86df-a780a7fe6533/,NVanzu,,6/29/2017 0:00,11.0000000,13.0000000,43.233082000000,5.356246000000,,Plage de la bonne brise,27993,observation-35b712ee-649a-4acf-86df-a780a7fe6533-2,https://biolit.fr/observations/observation-35b712ee-649a-4acf-86df-a780a7fe6533-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0106-scaled.jpg,,FALSE, +N1,28500,sortie-35b712ee-649a-4acf-86df-a780a7fe6533,https://biolit.fr/sorties/sortie-35b712ee-649a-4acf-86df-a780a7fe6533/,NVanzu,,6/29/2017 0:00,11.0000000,13.0000000,43.233082000000,5.356246000000,,Plage de la bonne brise,27995,observation-35b712ee-649a-4acf-86df-a780a7fe6533-3,https://biolit.fr/observations/observation-35b712ee-649a-4acf-86df-a780a7fe6533-3/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_0108-scaled.jpg,,TRUE, +N1,28500,sortie-35b712ee-649a-4acf-86df-a780a7fe6533,https://biolit.fr/sorties/sortie-35b712ee-649a-4acf-86df-a780a7fe6533/,NVanzu,,6/29/2017 0:00,11.0000000,13.0000000,43.233082000000,5.356246000000,,Plage de la bonne brise,27997,observation-35b712ee-649a-4acf-86df-a780a7fe6533-4,https://biolit.fr/observations/observation-35b712ee-649a-4acf-86df-a780a7fe6533-4/,Janthina janthina,Janthine commune,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0117-scaled.jpg,,TRUE, +N1,28501,sortie-5fc839e8-6e67-4e38-b4d1-a951ecfe90db,https://biolit.fr/sorties/sortie-5fc839e8-6e67-4e38-b4d1-a951ecfe90db/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215240000000,5.342490000000,,Anse de la Maronaise ,27999,observation-5fc839e8-6e67-4e38-b4d1-a951ecfe90db,https://biolit.fr/observations/observation-5fc839e8-6e67-4e38-b4d1-a951ecfe90db/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0138_0-scaled.jpg,,FALSE, +N1,28502,sortie-f509b9e5-8d1b-4ad3-9d06-5597801a5b19,https://biolit.fr/sorties/sortie-f509b9e5-8d1b-4ad3-9d06-5597801a5b19/,ludovic,,4/26/2017 0:00,11.0000000,13.0000000,43.15437200000,6.481942000000,,plage Domaine du Rayol (le figuier),28001,observation-f509b9e5-8d1b-4ad3-9d06-5597801a5b19,https://biolit.fr/observations/observation-f509b9e5-8d1b-4ad3-9d06-5597801a5b19/,,,,https://biolit.fr/wp-content/uploads/2023/07/meduse-scaled.jpg,,FALSE, +N1,28502,sortie-f509b9e5-8d1b-4ad3-9d06-5597801a5b19,https://biolit.fr/sorties/sortie-f509b9e5-8d1b-4ad3-9d06-5597801a5b19/,ludovic,,4/26/2017 0:00,11.0000000,13.0000000,43.15437200000,6.481942000000,,plage Domaine du Rayol (le figuier),28003,observation-f509b9e5-8d1b-4ad3-9d06-5597801a5b19-2,https://biolit.fr/observations/observation-f509b9e5-8d1b-4ad3-9d06-5597801a5b19-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Velelle-scaled.jpg,,TRUE, +N1,28502,sortie-f509b9e5-8d1b-4ad3-9d06-5597801a5b19,https://biolit.fr/sorties/sortie-f509b9e5-8d1b-4ad3-9d06-5597801a5b19/,ludovic,,4/26/2017 0:00,11.0000000,13.0000000,43.15437200000,6.481942000000,,plage Domaine du Rayol (le figuier),28004,observation-f509b9e5-8d1b-4ad3-9d06-5597801a5b19-3,https://biolit.fr/observations/observation-f509b9e5-8d1b-4ad3-9d06-5597801a5b19-3/,Janthina janthina,Janthine commune,,https://biolit.fr/wp-content/uploads/2023/07/escargot-scaled.jpg,,TRUE, +N1,28503,sortie-ae725bf2-6c21-4484-ab4e-55bde4268f72,https://biolit.fr/sorties/sortie-ae725bf2-6c21-4484-ab4e-55bde4268f72/,jugo,,5/14/2017 0:00,16.0000000,17.0000000,43.157514000000,6.462734000000,,rayol canadel,28006,observation-ae725bf2-6c21-4484-ab4e-55bde4268f72,https://biolit.fr/observations/observation-ae725bf2-6c21-4484-ab4e-55bde4268f72/,Janthina janthina,Janthine commune,,https://biolit.fr/wp-content/uploads/2023/07/DSCF7672-scaled.jpg,,TRUE, +N1,28504,sortie-612d8d83-ffaa-4cca-9e2d-205cd44739ed,https://biolit.fr/sorties/sortie-612d8d83-ffaa-4cca-9e2d-205cd44739ed/,Marine,,5/19/2017 0:00,13.0000000,13.0:45,43.214820000000,5.342949000000,,Anse de la Maronaise,28008,observation-612d8d83-ffaa-4cca-9e2d-205cd44739ed,https://biolit.fr/observations/observation-612d8d83-ffaa-4cca-9e2d-205cd44739ed/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_2386_0-rotated.jpg,,TRUE, +N1,28504,sortie-612d8d83-ffaa-4cca-9e2d-205cd44739ed,https://biolit.fr/sorties/sortie-612d8d83-ffaa-4cca-9e2d-205cd44739ed/,Marine,,5/19/2017 0:00,13.0000000,13.0:45,43.214820000000,5.342949000000,,Anse de la Maronaise,28010,observation-612d8d83-ffaa-4cca-9e2d-205cd44739ed-2,https://biolit.fr/observations/observation-612d8d83-ffaa-4cca-9e2d-205cd44739ed-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_2387_1.JPG,,TRUE, +N1,28504,sortie-612d8d83-ffaa-4cca-9e2d-205cd44739ed,https://biolit.fr/sorties/sortie-612d8d83-ffaa-4cca-9e2d-205cd44739ed/,Marine,,5/19/2017 0:00,13.0000000,13.0:45,43.214820000000,5.342949000000,,Anse de la Maronaise,28012,observation-612d8d83-ffaa-4cca-9e2d-205cd44739ed-3,https://biolit.fr/observations/observation-612d8d83-ffaa-4cca-9e2d-205cd44739ed-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_2388_0.JPG,,TRUE, +N1,28504,sortie-612d8d83-ffaa-4cca-9e2d-205cd44739ed,https://biolit.fr/sorties/sortie-612d8d83-ffaa-4cca-9e2d-205cd44739ed/,Marine,,5/19/2017 0:00,13.0000000,13.0:45,43.214820000000,5.342949000000,,Anse de la Maronaise,28014,observation-612d8d83-ffaa-4cca-9e2d-205cd44739ed-4,https://biolit.fr/observations/observation-612d8d83-ffaa-4cca-9e2d-205cd44739ed-4/,Janthina janthina,Janthine commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2390_0-rotated.jpg,,TRUE, +N1,28504,sortie-612d8d83-ffaa-4cca-9e2d-205cd44739ed,https://biolit.fr/sorties/sortie-612d8d83-ffaa-4cca-9e2d-205cd44739ed/,Marine,,5/19/2017 0:00,13.0000000,13.0:45,43.214820000000,5.342949000000,,Anse de la Maronaise,28016,observation-612d8d83-ffaa-4cca-9e2d-205cd44739ed-5,https://biolit.fr/observations/observation-612d8d83-ffaa-4cca-9e2d-205cd44739ed-5/,Janthina janthina,Janthine commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2391_0.JPG,,TRUE, +N1,28505,sortie-8de0ebe2-ea2d-4692-b63a-fc3c1244f97a,https://biolit.fr/sorties/sortie-8de0ebe2-ea2d-4692-b63a-fc3c1244f97a/,Centre de Découverte Mer et Montagne,,05/10/2017,8.0:15,8.0:35,43.692001000000,7.290321000000,,plage des Bains militaires,28018,observation-8de0ebe2-ea2d-4692-b63a-fc3c1244f97a,https://biolit.fr/observations/observation-8de0ebe2-ea2d-4692-b63a-fc3c1244f97a/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/100517_echouage_BainsMilitaires_CDMM_CB_basse_def (23).JPG,,TRUE, +N1,28506,sortie-3bde59e7-c4ad-4bda-a504-52dd399f2be6,https://biolit.fr/sorties/sortie-3bde59e7-c4ad-4bda-a504-52dd399f2be6/,Centre de Découverte Mer et Montagne,,05/10/2017,8.0:15,8.0:35,43.692010000000,7.290363000000,,plage des Bains militaires,28020,observation-3bde59e7-c4ad-4bda-a504-52dd399f2be6,https://biolit.fr/observations/observation-3bde59e7-c4ad-4bda-a504-52dd399f2be6/,Janthina janthina,Janthine commune,,https://biolit.fr/wp-content/uploads/2023/07/100517_echouage_BainsMilitaires_CDMM_CB_basse_def (15).JPG,,TRUE, +N1,28506,sortie-3bde59e7-c4ad-4bda-a504-52dd399f2be6,https://biolit.fr/sorties/sortie-3bde59e7-c4ad-4bda-a504-52dd399f2be6/,Centre de Découverte Mer et Montagne,,05/10/2017,8.0:15,8.0:35,43.692010000000,7.290363000000,,plage des Bains militaires,28022,observation-3bde59e7-c4ad-4bda-a504-52dd399f2be6-2,https://biolit.fr/observations/observation-3bde59e7-c4ad-4bda-a504-52dd399f2be6-2/,Janthina janthina,Janthine commune,,https://biolit.fr/wp-content/uploads/2023/07/100517_echouage_BainsMilitaires_CDMM_CB_basse_def (1).JPG,,TRUE, +N1,28507,sortie-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e,https://biolit.fr/sorties/sortie-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e/,Marine,,4/26/2017 0:00,14.0000000,14.0:25,43.154373000000,6.481809000000,,Plage du Domaine du Rayol,28024,observation-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e,https://biolit.fr/observations/observation-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_2280-rotated.jpg,,TRUE, +N1,28507,sortie-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e,https://biolit.fr/sorties/sortie-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e/,Marine,,4/26/2017 0:00,14.0000000,14.0:25,43.154373000000,6.481809000000,,Plage du Domaine du Rayol,28026,observation-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e-2,https://biolit.fr/observations/observation-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_2283.JPG,,TRUE, +N1,28507,sortie-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e,https://biolit.fr/sorties/sortie-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e/,Marine,,4/26/2017 0:00,14.0000000,14.0:25,43.154373000000,6.481809000000,,Plage du Domaine du Rayol,28028,observation-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e-3,https://biolit.fr/observations/observation-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e-3/,Janthina janthina,Janthine commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2286-rotated.jpg,,TRUE, +N1,28507,sortie-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e,https://biolit.fr/sorties/sortie-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e/,Marine,,4/26/2017 0:00,14.0000000,14.0:25,43.154373000000,6.481809000000,,Plage du Domaine du Rayol,28030,observation-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e-4,https://biolit.fr/observations/observation-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e-4/,Janthina janthina,Janthine commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2288-rotated.jpg,,TRUE, +N1,28507,sortie-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e,https://biolit.fr/sorties/sortie-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e/,Marine,,4/26/2017 0:00,14.0000000,14.0:25,43.154373000000,6.481809000000,,Plage du Domaine du Rayol,28032,observation-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e-5,https://biolit.fr/observations/observation-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2289-rotated.jpg,,FALSE, +N1,28507,sortie-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e,https://biolit.fr/sorties/sortie-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e/,Marine,,4/26/2017 0:00,14.0000000,14.0:25,43.154373000000,6.481809000000,,Plage du Domaine du Rayol,28034,observation-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e-6,https://biolit.fr/observations/observation-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2290-rotated.jpg,,FALSE, +N1,28508,sortie-df42e089-3ac1-45c1-b20d-d9b620c67539,https://biolit.fr/sorties/sortie-df42e089-3ac1-45c1-b20d-d9b620c67539/,Audrey,,3/15/2017 0:00,14.0000000,15.0000000,47.839294000000,-4.346655000000,,Plage de la Torche,28036,observation-df42e089-3ac1-45c1-b20d-d9b620c67539,https://biolit.fr/observations/observation-df42e089-3ac1-45c1-b20d-d9b620c67539/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Saison_Mer_Velelle1.jpg,,TRUE, +N1,28508,sortie-df42e089-3ac1-45c1-b20d-d9b620c67539,https://biolit.fr/sorties/sortie-df42e089-3ac1-45c1-b20d-d9b620c67539/,Audrey,,3/15/2017 0:00,14.0000000,15.0000000,47.839294000000,-4.346655000000,,Plage de la Torche,28038,observation-df42e089-3ac1-45c1-b20d-d9b620c67539-2,https://biolit.fr/observations/observation-df42e089-3ac1-45c1-b20d-d9b620c67539-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Saison_Mer_Velelle2.jpg,,TRUE, +N1,28508,sortie-df42e089-3ac1-45c1-b20d-d9b620c67539,https://biolit.fr/sorties/sortie-df42e089-3ac1-45c1-b20d-d9b620c67539/,Audrey,,3/15/2017 0:00,14.0000000,15.0000000,47.839294000000,-4.346655000000,,Plage de la Torche,28040,observation-df42e089-3ac1-45c1-b20d-d9b620c67539-3,https://biolit.fr/observations/observation-df42e089-3ac1-45c1-b20d-d9b620c67539-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Saison_Mer_Velelle3.jpg,,TRUE, +N1,28509,sortie-ab7fabab-e6e1-4920-ae14-09f62d3ee7dc,https://biolit.fr/sorties/sortie-ab7fabab-e6e1-4920-ae14-09f62d3ee7dc/,Audrey,,3/15/2017 0:00,14.0000000,15.0000000,47.838181000000,-4.346856000000,,Plage de la Torche,28042,observation-ab7fabab-e6e1-4920-ae14-09f62d3ee7dc,https://biolit.fr/observations/observation-ab7fabab-e6e1-4920-ae14-09f62d3ee7dc/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Saison_Mer_Os_Seiche1.jpg,,TRUE, +N1,28509,sortie-ab7fabab-e6e1-4920-ae14-09f62d3ee7dc,https://biolit.fr/sorties/sortie-ab7fabab-e6e1-4920-ae14-09f62d3ee7dc/,Audrey,,3/15/2017 0:00,14.0000000,15.0000000,47.838181000000,-4.346856000000,,Plage de la Torche,28044,observation-ab7fabab-e6e1-4920-ae14-09f62d3ee7dc-2,https://biolit.fr/observations/observation-ab7fabab-e6e1-4920-ae14-09f62d3ee7dc-2/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Saison_Mer_Os_Seiche2.jpg,,TRUE, +N1,28509,sortie-ab7fabab-e6e1-4920-ae14-09f62d3ee7dc,https://biolit.fr/sorties/sortie-ab7fabab-e6e1-4920-ae14-09f62d3ee7dc/,Audrey,,3/15/2017 0:00,14.0000000,15.0000000,47.838181000000,-4.346856000000,,Plage de la Torche,28046,observation-ab7fabab-e6e1-4920-ae14-09f62d3ee7dc-3,https://biolit.fr/observations/observation-ab7fabab-e6e1-4920-ae14-09f62d3ee7dc-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Saison_Mer_Os_Seiche3.jpg,,FALSE, +N1,28510,sortie-17692feb-2eb1-410c-8d29-4f999c41600e,https://biolit.fr/sorties/sortie-17692feb-2eb1-410c-8d29-4f999c41600e/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236104000000,5.360040000000,,plage de la bonne brise,28048,observation-17692feb-2eb1-410c-8d29-4f999c41600e,https://biolit.fr/observations/observation-17692feb-2eb1-410c-8d29-4f999c41600e/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1021-scaled.jpg,,FALSE, +N1,28511,sortie-97aee746-7771-4655-8d56-fdba0b8bf509,https://biolit.fr/sorties/sortie-97aee746-7771-4655-8d56-fdba0b8bf509/,NVanzu,,03/02/2017,14.0:45,16.0000000,43.23311100000,5.356151000000,,Plage de la bonne brise,28050,observation-97aee746-7771-4655-8d56-fdba0b8bf509,https://biolit.fr/observations/observation-97aee746-7771-4655-8d56-fdba0b8bf509/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_0198-scaled.jpg,,TRUE, +N1,28511,sortie-97aee746-7771-4655-8d56-fdba0b8bf509,https://biolit.fr/sorties/sortie-97aee746-7771-4655-8d56-fdba0b8bf509/,NVanzu,,03/02/2017,14.0:45,16.0000000,43.23311100000,5.356151000000,,Plage de la bonne brise,28052,observation-97aee746-7771-4655-8d56-fdba0b8bf509-2,https://biolit.fr/observations/observation-97aee746-7771-4655-8d56-fdba0b8bf509-2/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_0199-scaled.jpg,,TRUE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28054,observation-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0196-scaled.jpg,,FALSE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28056,observation-f9064840-d923-46dd-920e-16ae5eb8793f-2,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-2/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0198-scaled.jpg,,TRUE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28058,observation-f9064840-d923-46dd-920e-16ae5eb8793f-3,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/scrobiculaire bon format.jpg,,FALSE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28060,observation-f9064840-d923-46dd-920e-16ae5eb8793f-4,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-4/,Ensis magnus,Couteau arqué,,https://biolit.fr/wp-content/uploads/2023/07/P1010006_0-scaled.jpg,,TRUE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28062,observation-f9064840-d923-46dd-920e-16ae5eb8793f-5,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010005-scaled.jpg,,FALSE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28064,observation-f9064840-d923-46dd-920e-16ae5eb8793f-6,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-6/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1010013-scaled.jpg,,TRUE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28066,observation-f9064840-d923-46dd-920e-16ae5eb8793f-7,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010015-scaled.jpg,,FALSE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28068,observation-f9064840-d923-46dd-920e-16ae5eb8793f-8,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010017-scaled.jpg,,FALSE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28070,observation-f9064840-d923-46dd-920e-16ae5eb8793f-9,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010023-scaled.jpg,,FALSE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28072,observation-f9064840-d923-46dd-920e-16ae5eb8793f-10,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010021-scaled.jpg,,FALSE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28074,observation-f9064840-d923-46dd-920e-16ae5eb8793f-11,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010024-scaled.jpg,,FALSE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28076,observation-f9064840-d923-46dd-920e-16ae5eb8793f-12,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010025-scaled.jpg,,FALSE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28078,observation-f9064840-d923-46dd-920e-16ae5eb8793f-13,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010027_0-scaled.jpg,,FALSE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28080,observation-f9064840-d923-46dd-920e-16ae5eb8793f-14,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010028-scaled.jpg,,FALSE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28082,observation-f9064840-d923-46dd-920e-16ae5eb8793f-15,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010029-scaled.jpg,,FALSE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28084,observation-f9064840-d923-46dd-920e-16ae5eb8793f-16,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-16/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1010031-scaled.jpg,,TRUE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28086,observation-f9064840-d923-46dd-920e-16ae5eb8793f-17,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010033-scaled.jpg,,FALSE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28088,observation-f9064840-d923-46dd-920e-16ae5eb8793f-18,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010034-scaled.jpg,,FALSE, +N1,28513,sortie-fa9a63ea-0b16-47f5-823e-cafeda53e001,https://biolit.fr/sorties/sortie-fa9a63ea-0b16-47f5-823e-cafeda53e001/,Marine,,2/14/2017 0:00,15.0000000,15.0:45,43.290708000000,5.355515000000,,Plage des Catalans,28090,observation-fa9a63ea-0b16-47f5-823e-cafeda53e001,https://biolit.fr/observations/observation-fa9a63ea-0b16-47f5-823e-cafeda53e001/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2181-rotated.jpg,,FALSE, +N1,28513,sortie-fa9a63ea-0b16-47f5-823e-cafeda53e001,https://biolit.fr/sorties/sortie-fa9a63ea-0b16-47f5-823e-cafeda53e001/,Marine,,2/14/2017 0:00,15.0000000,15.0:45,43.290708000000,5.355515000000,,Plage des Catalans,28092,observation-fa9a63ea-0b16-47f5-823e-cafeda53e001-2,https://biolit.fr/observations/observation-fa9a63ea-0b16-47f5-823e-cafeda53e001-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2188-rotated.jpg,,FALSE, +N1,28513,sortie-fa9a63ea-0b16-47f5-823e-cafeda53e001,https://biolit.fr/sorties/sortie-fa9a63ea-0b16-47f5-823e-cafeda53e001/,Marine,,2/14/2017 0:00,15.0000000,15.0:45,43.290708000000,5.355515000000,,Plage des Catalans,28094,observation-fa9a63ea-0b16-47f5-823e-cafeda53e001-3,https://biolit.fr/observations/observation-fa9a63ea-0b16-47f5-823e-cafeda53e001-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2183-rotated.jpg,,FALSE, +N1,28514,sortie-01627541-210a-4c67-b78f-fa2a75efece6,https://biolit.fr/sorties/sortie-01627541-210a-4c67-b78f-fa2a75efece6/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,15.0000000,50.223794000000,1.612743000000,,AIRE MARINE EDUCATIVE LE CROTOY,28096,observation-01627541-210a-4c67-b78f-fa2a75efece6,https://biolit.fr/observations/observation-01627541-210a-4c67-b78f-fa2a75efece6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040688-scaled.jpg,,FALSE, +N1,28515,sortie-08da9fc2-b95e-47da-aa74-6475482db054,https://biolit.fr/sorties/sortie-08da9fc2-b95e-47da-aa74-6475482db054/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,15.0000000,50.223935000000,1.612742000000,,AIRE MARINE EDUCATIVE LE CROTOY,28098,observation-08da9fc2-b95e-47da-aa74-6475482db054,https://biolit.fr/observations/observation-08da9fc2-b95e-47da-aa74-6475482db054/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010006-scaled.jpg,,FALSE, +N1,28516,sortie-4d155011-568d-49cc-ba03-3a25c005445a,https://biolit.fr/sorties/sortie-4d155011-568d-49cc-ba03-3a25c005445a/,sofia loubna hanane,,1/24/2017 0:00,13.0000000,17.0000000,43.333399000000,5.197198000000,,La Redonne,28100,observation-4d155011-568d-49cc-ba03-3a25c005445a,https://biolit.fr/observations/observation-4d155011-568d-49cc-ba03-3a25c005445a/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/photo 4_6-scaled.jpg,,TRUE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28102,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170201_144305.jpg,,FALSE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28104,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-2,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170201_144319.jpg,,FALSE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28106,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-3,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170201_144335-rotated.jpg,,FALSE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28108,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-4,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-4/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/20170201_144423-rotated.jpg,,TRUE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28110,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-5,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170201_144402-rotated.jpg,,FALSE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28112,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-6,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-6/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/20170201_144348-rotated.jpg,,TRUE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28114,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-7,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170201_144519-rotated.jpg,,FALSE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28116,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-8,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170201_144536-rotated.jpg,,FALSE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28118,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-9,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170201_144608-rotated.jpg,,FALSE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28120,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-10,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-10/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/20170201_144621-rotated.jpg,,TRUE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28122,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-11,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-11/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/20170201_144637-rotated.jpg,,TRUE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28124,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-12,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-12/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/2023/07/20170201_144807-rotated.jpg,,TRUE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28126,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-13,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170201_144854-rotated.jpg,,FALSE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28128,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-14,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170201_145149-rotated.jpg,,FALSE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28130,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-15,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-15/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20170201_145420-rotated.jpg,,TRUE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28132,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-16,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170201_145238-rotated.jpg,,FALSE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28134,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-17,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170201_145133-rotated.jpg,,FALSE, +N1,28518,sortie-01af170a-86c6-409a-862f-b6b9ddd6e8c2,https://biolit.fr/sorties/sortie-01af170a-86c6-409a-862f-b6b9ddd6e8c2/,Ines,,1/16/2017 0:00,10.000005,11.0000000,43.273260000000,5.361837000000,,le prophete ,28136,observation-01af170a-86c6-409a-862f-b6b9ddd6e8c2,https://biolit.fr/observations/observation-01af170a-86c6-409a-862f-b6b9ddd6e8c2/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0008-scaled.jpg,,TRUE, +N1,28518,sortie-01af170a-86c6-409a-862f-b6b9ddd6e8c2,https://biolit.fr/sorties/sortie-01af170a-86c6-409a-862f-b6b9ddd6e8c2/,Ines,,1/16/2017 0:00,10.000005,11.0000000,43.273260000000,5.361837000000,,le prophete ,28138,observation-01af170a-86c6-409a-862f-b6b9ddd6e8c2-2,https://biolit.fr/observations/observation-01af170a-86c6-409a-862f-b6b9ddd6e8c2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0009-scaled.jpg,,FALSE, +N1,28519,sortie-489a912f-94e3-47a1-8287-91f1854d26dc,https://biolit.fr/sorties/sortie-489a912f-94e3-47a1-8287-91f1854d26dc/,corinne vasseur,,1/27/2017 0:00,16.0000000,18.0000000,50.224434000000,1.611690000000,,Aire marine éducative du Crotoy,28140,observation-489a912f-94e3-47a1-8287-91f1854d26dc,https://biolit.fr/observations/observation-489a912f-94e3-47a1-8287-91f1854d26dc/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/IMGP5178.JPG,,TRUE, +N1,28519,sortie-489a912f-94e3-47a1-8287-91f1854d26dc,https://biolit.fr/sorties/sortie-489a912f-94e3-47a1-8287-91f1854d26dc/,corinne vasseur,,1/27/2017 0:00,16.0000000,18.0000000,50.224434000000,1.611690000000,,Aire marine éducative du Crotoy,28142,observation-489a912f-94e3-47a1-8287-91f1854d26dc-2,https://biolit.fr/observations/observation-489a912f-94e3-47a1-8287-91f1854d26dc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP5174.JPG,,FALSE, +N1,28519,sortie-489a912f-94e3-47a1-8287-91f1854d26dc,https://biolit.fr/sorties/sortie-489a912f-94e3-47a1-8287-91f1854d26dc/,corinne vasseur,,1/27/2017 0:00,16.0000000,18.0000000,50.224434000000,1.611690000000,,Aire marine éducative du Crotoy,28144,observation-489a912f-94e3-47a1-8287-91f1854d26dc-3,https://biolit.fr/observations/observation-489a912f-94e3-47a1-8287-91f1854d26dc-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP5220.JPG,,FALSE, +N1,28520,sortie-210542b4-e172-48a3-92ec-693b03050eca,https://biolit.fr/sorties/sortie-210542b4-e172-48a3-92ec-693b03050eca/,Audrey,,12/27/2016 0:00,14.0000000,15.0000000,49.567817000000,-1.843746000000,,Plage de Siouville-Hague,28146,observation-210542b4-e172-48a3-92ec-693b03050eca,https://biolit.fr/observations/observation-210542b4-e172-48a3-92ec-693b03050eca/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20161227_Siouville (18)-scaled.jpg,,TRUE, +N1,28520,sortie-210542b4-e172-48a3-92ec-693b03050eca,https://biolit.fr/sorties/sortie-210542b4-e172-48a3-92ec-693b03050eca/,Audrey,,12/27/2016 0:00,14.0000000,15.0000000,49.567817000000,-1.843746000000,,Plage de Siouville-Hague,28148,observation-210542b4-e172-48a3-92ec-693b03050eca-2,https://biolit.fr/observations/observation-210542b4-e172-48a3-92ec-693b03050eca-2/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20161227_Siouville (19)-scaled.jpg,,TRUE, +N1,28520,sortie-210542b4-e172-48a3-92ec-693b03050eca,https://biolit.fr/sorties/sortie-210542b4-e172-48a3-92ec-693b03050eca/,Audrey,,12/27/2016 0:00,14.0000000,15.0000000,49.567817000000,-1.843746000000,,Plage de Siouville-Hague,28150,observation-210542b4-e172-48a3-92ec-693b03050eca-3,https://biolit.fr/observations/observation-210542b4-e172-48a3-92ec-693b03050eca-3/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20161227_Siouville (20)-scaled.jpg,,TRUE, +N1,28520,sortie-210542b4-e172-48a3-92ec-693b03050eca,https://biolit.fr/sorties/sortie-210542b4-e172-48a3-92ec-693b03050eca/,Audrey,,12/27/2016 0:00,14.0000000,15.0000000,49.567817000000,-1.843746000000,,Plage de Siouville-Hague,28152,observation-210542b4-e172-48a3-92ec-693b03050eca-4,https://biolit.fr/observations/observation-210542b4-e172-48a3-92ec-693b03050eca-4/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20161227_Siouville (21)-scaled.jpg,,TRUE, +N1,28521,sortie-62eb00b8-e925-4913-824f-4b658b9b1689,https://biolit.fr/sorties/sortie-62eb00b8-e925-4913-824f-4b658b9b1689/,Audrey,,12/27/2016 0:00,14.0000000,15.0000000,49.56787300000,-1.843735000000,,Plage de Siouville-Hague,28154,observation-62eb00b8-e925-4913-824f-4b658b9b1689,https://biolit.fr/observations/observation-62eb00b8-e925-4913-824f-4b658b9b1689/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20161227_Siouville (22)-scaled.jpg,,TRUE, +N1,28521,sortie-62eb00b8-e925-4913-824f-4b658b9b1689,https://biolit.fr/sorties/sortie-62eb00b8-e925-4913-824f-4b658b9b1689/,Audrey,,12/27/2016 0:00,14.0000000,15.0000000,49.56787300000,-1.843735000000,,Plage de Siouville-Hague,28156,observation-62eb00b8-e925-4913-824f-4b658b9b1689-2,https://biolit.fr/observations/observation-62eb00b8-e925-4913-824f-4b658b9b1689-2/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20161227_Siouville (23)-scaled.jpg,,TRUE, +N1,28522,sortie-f6116023-c162-4e5f-8fd3-c23c59a59409,https://biolit.fr/sorties/sortie-f6116023-c162-4e5f-8fd3-c23c59a59409/,Audrey,,12/27/2016 0:00,14.0000000,15.0000000,49.568694000000,-1.843488000000,,Plage de Siouville-Hague,28158,observation-f6116023-c162-4e5f-8fd3-c23c59a59409,https://biolit.fr/observations/observation-f6116023-c162-4e5f-8fd3-c23c59a59409/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161227_Siouville (10)-scaled.jpg,,FALSE, +N1,28522,sortie-f6116023-c162-4e5f-8fd3-c23c59a59409,https://biolit.fr/sorties/sortie-f6116023-c162-4e5f-8fd3-c23c59a59409/,Audrey,,12/27/2016 0:00,14.0000000,15.0000000,49.568694000000,-1.843488000000,,Plage de Siouville-Hague,28160,observation-f6116023-c162-4e5f-8fd3-c23c59a59409-2,https://biolit.fr/observations/observation-f6116023-c162-4e5f-8fd3-c23c59a59409-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161227_Siouville (13)-scaled.jpg,,FALSE, +N1,28522,sortie-f6116023-c162-4e5f-8fd3-c23c59a59409,https://biolit.fr/sorties/sortie-f6116023-c162-4e5f-8fd3-c23c59a59409/,Audrey,,12/27/2016 0:00,14.0000000,15.0000000,49.568694000000,-1.843488000000,,Plage de Siouville-Hague,28162,observation-f6116023-c162-4e5f-8fd3-c23c59a59409-3,https://biolit.fr/observations/observation-f6116023-c162-4e5f-8fd3-c23c59a59409-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161227_Siouville (12)-scaled.jpg,,FALSE, +N1,28523,sortie-25b116ce-6f1f-4d97-9c80-66826dd8b2c5,https://biolit.fr/sorties/sortie-25b116ce-6f1f-4d97-9c80-66826dd8b2c5/,Audrey,,12/27/2016 0:00,14.0000000,15.0000000,49.569231000000,-1.843311000000,,Plage de Siouville-Hague,28164,observation-25b116ce-6f1f-4d97-9c80-66826dd8b2c5,https://biolit.fr/observations/observation-25b116ce-6f1f-4d97-9c80-66826dd8b2c5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161227_Siouville (9)-scaled.jpg,,FALSE, +N1,28523,sortie-25b116ce-6f1f-4d97-9c80-66826dd8b2c5,https://biolit.fr/sorties/sortie-25b116ce-6f1f-4d97-9c80-66826dd8b2c5/,Audrey,,12/27/2016 0:00,14.0000000,15.0000000,49.569231000000,-1.843311000000,,Plage de Siouville-Hague,28166,observation-25b116ce-6f1f-4d97-9c80-66826dd8b2c5-2,https://biolit.fr/observations/observation-25b116ce-6f1f-4d97-9c80-66826dd8b2c5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161227_Siouville (1)-scaled.jpg,,FALSE, +N1,28523,sortie-25b116ce-6f1f-4d97-9c80-66826dd8b2c5,https://biolit.fr/sorties/sortie-25b116ce-6f1f-4d97-9c80-66826dd8b2c5/,Audrey,,12/27/2016 0:00,14.0000000,15.0000000,49.569231000000,-1.843311000000,,Plage de Siouville-Hague,28168,observation-25b116ce-6f1f-4d97-9c80-66826dd8b2c5-3,https://biolit.fr/observations/observation-25b116ce-6f1f-4d97-9c80-66826dd8b2c5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161227_Siouville (3)-scaled.jpg,,FALSE, +N1,28523,sortie-25b116ce-6f1f-4d97-9c80-66826dd8b2c5,https://biolit.fr/sorties/sortie-25b116ce-6f1f-4d97-9c80-66826dd8b2c5/,Audrey,,12/27/2016 0:00,14.0000000,15.0000000,49.569231000000,-1.843311000000,,Plage de Siouville-Hague,28170,observation-25b116ce-6f1f-4d97-9c80-66826dd8b2c5-4,https://biolit.fr/observations/observation-25b116ce-6f1f-4d97-9c80-66826dd8b2c5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161227_Siouville (4)-scaled.jpg,,FALSE, +N1,28524,sortie-fa72aa60-5a8e-47a3-8ce2-13a7a7b47b2c,https://biolit.fr/sorties/sortie-fa72aa60-5a8e-47a3-8ce2-13a7a7b47b2c/,Marine,,9/22/2016 0:00,9.0000000,11.0000000,43.150603000000,6.434163000000,,Plage de Cavalière,28172,observation-fa72aa60-5a8e-47a3-8ce2-13a7a7b47b2c,https://biolit.fr/observations/observation-fa72aa60-5a8e-47a3-8ce2-13a7a7b47b2c/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1737-rotated.jpg,,FALSE, +N1,28524,sortie-fa72aa60-5a8e-47a3-8ce2-13a7a7b47b2c,https://biolit.fr/sorties/sortie-fa72aa60-5a8e-47a3-8ce2-13a7a7b47b2c/,Marine,,9/22/2016 0:00,9.0000000,11.0000000,43.150603000000,6.434163000000,,Plage de Cavalière,28174,observation-fa72aa60-5a8e-47a3-8ce2-13a7a7b47b2c-2,https://biolit.fr/observations/observation-fa72aa60-5a8e-47a3-8ce2-13a7a7b47b2c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1738-rotated.jpg,,FALSE, +N1,28525,sortie-c650b905-d53d-4c69-9a0f-c7bdbf90dc2a,https://biolit.fr/sorties/sortie-c650b905-d53d-4c69-9a0f-c7bdbf90dc2a/,Marine,,9/17/2016 0:00,9.0000000,11.0000000,43.236143000000,5.359970000000,,Plage de bonne brise,28176,observation-c650b905-d53d-4c69-9a0f-c7bdbf90dc2a,https://biolit.fr/observations/observation-c650b905-d53d-4c69-9a0f-c7bdbf90dc2a/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1728.jpg,,TRUE, +N1,28525,sortie-c650b905-d53d-4c69-9a0f-c7bdbf90dc2a,https://biolit.fr/sorties/sortie-c650b905-d53d-4c69-9a0f-c7bdbf90dc2a/,Marine,,9/17/2016 0:00,9.0000000,11.0000000,43.236143000000,5.359970000000,,Plage de bonne brise,28177,observation-c650b905-d53d-4c69-9a0f-c7bdbf90dc2a-2,https://biolit.fr/observations/observation-c650b905-d53d-4c69-9a0f-c7bdbf90dc2a-2/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1731.JPG,,TRUE, +N1,28526,sortie-6f457fd4-cdab-4cbc-81fb-124486e1f96b,https://biolit.fr/sorties/sortie-6f457fd4-cdab-4cbc-81fb-124486e1f96b/,Julie Bee,,9/18/2016 0:00,9.0000000,11.0000000,43.235982000000,5.359908000000,,Plage de la Bonne Brise ,28179,observation-6f457fd4-cdab-4cbc-81fb-124486e1f96b,https://biolit.fr/observations/observation-6f457fd4-cdab-4cbc-81fb-124486e1f96b/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/PICT0471-scaled.jpg,,TRUE, +N1,28527,sortie-74cf35eb-fad3-4f15-b0f7-0f21a0207441,https://biolit.fr/sorties/sortie-74cf35eb-fad3-4f15-b0f7-0f21a0207441/,KatSea,,9/15/2016 0:00,16.0000000,17.0000000,50.62710400000,1.575298000000,,hardelot,28181,observation-74cf35eb-fad3-4f15-b0f7-0f21a0207441,https://biolit.fr/observations/observation-74cf35eb-fad3-4f15-b0f7-0f21a0207441/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0566_0-scaled.jpg,,FALSE, +N1,28528,sortie-8509dfdf-d88a-490b-b507-34d08ef62025,https://biolit.fr/sorties/sortie-8509dfdf-d88a-490b-b507-34d08ef62025/,tridimeg,,4/22/2015 0:00,16.0000000,17.0:45,48.625561000000,-2.031391000000,,Pointe de la Vicomté,28183,observation-8509dfdf-d88a-490b-b507-34d08ef62025,https://biolit.fr/observations/observation-8509dfdf-d88a-490b-b507-34d08ef62025/,Loligo spp.,Ponte de Calmar,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20150422_172909.jpg,,TRUE, +N1,28529,sortie-910288a4-d28b-4862-ac70-b050f109bf12,https://biolit.fr/sorties/sortie-910288a4-d28b-4862-ac70-b050f109bf12/,Marine,,07/05/2016,9.0000000,11.0000000,50.829637000000,1.589793000000,,Plage du Noirda,28185,observation-910288a4-d28b-4862-ac70-b050f109bf12,https://biolit.fr/observations/observation-910288a4-d28b-4862-ac70-b050f109bf12/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1483-scaled.jpg,,TRUE, +N1,28530,sortie-9eae2f7b-9d60-4e3e-90aa-742d2cc32940,https://biolit.fr/sorties/sortie-9eae2f7b-9d60-4e3e-90aa-742d2cc32940/,Marine,,07/05/2016,9.0000000,11.0000000,50.82955900000,1.58980600000,,Plage du Noirda,28187,observation-9eae2f7b-9d60-4e3e-90aa-742d2cc32940,https://biolit.fr/observations/observation-9eae2f7b-9d60-4e3e-90aa-742d2cc32940/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1482-scaled.jpg,,FALSE, +N1,28531,sortie-06716f37-90c7-4535-9e7f-72b34b9eac32,https://biolit.fr/sorties/sortie-06716f37-90c7-4535-9e7f-72b34b9eac32/,Marine,,07/05/2016,9.0000000,11.0000000,50.829563000000,1.589921000000,,Plage du Noirda,28189,observation-06716f37-90c7-4535-9e7f-72b34b9eac32,https://biolit.fr/observations/observation-06716f37-90c7-4535-9e7f-72b34b9eac32/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1481-scaled.jpg,,FALSE, +N1,28532,sortie-39b738bf-b031-492b-ba3d-9e9e4b510051,https://biolit.fr/sorties/sortie-39b738bf-b031-492b-ba3d-9e9e4b510051/,Marine,,07/05/2016,9.0000000,11.0000000,50.829620000000,1.589775000000,,Plage du Noirda,28191,observation-39b738bf-b031-492b-ba3d-9e9e4b510051,https://biolit.fr/observations/observation-39b738bf-b031-492b-ba3d-9e9e4b510051/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1480-scaled.jpg,,TRUE, +N1,28532,sortie-39b738bf-b031-492b-ba3d-9e9e4b510051,https://biolit.fr/sorties/sortie-39b738bf-b031-492b-ba3d-9e9e4b510051/,Marine,,07/05/2016,9.0000000,11.0000000,50.829620000000,1.589775000000,,Plage du Noirda,28193,observation-39b738bf-b031-492b-ba3d-9e9e4b510051-2,https://biolit.fr/observations/observation-39b738bf-b031-492b-ba3d-9e9e4b510051-2/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1445-scaled.jpg,,TRUE, +N1,28533,sortie-870ab12f-6194-42ef-bdd6-757cb0890c9c,https://biolit.fr/sorties/sortie-870ab12f-6194-42ef-bdd6-757cb0890c9c/,Marine,,07/05/2016,9.0000000,11.0000000,50.829433000000,1.589826000000,,Plage du Noirda,28195,observation-870ab12f-6194-42ef-bdd6-757cb0890c9c,https://biolit.fr/observations/observation-870ab12f-6194-42ef-bdd6-757cb0890c9c/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1470.jpg,,FALSE, +N1,28533,sortie-870ab12f-6194-42ef-bdd6-757cb0890c9c,https://biolit.fr/sorties/sortie-870ab12f-6194-42ef-bdd6-757cb0890c9c/,Marine,,07/05/2016,9.0000000,11.0000000,50.829433000000,1.589826000000,,Plage du Noirda,28197,observation-870ab12f-6194-42ef-bdd6-757cb0890c9c-2,https://biolit.fr/observations/observation-870ab12f-6194-42ef-bdd6-757cb0890c9c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1471.jpg,,FALSE, +N1,28534,sortie-7e8b5903-951d-43c0-8d8f-a36265b4115e,https://biolit.fr/sorties/sortie-7e8b5903-951d-43c0-8d8f-a36265b4115e/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829420000000,1.590064000000,,Audresselles,28199,observation-7e8b5903-951d-43c0-8d8f-a36265b4115e,https://biolit.fr/observations/observation-7e8b5903-951d-43c0-8d8f-a36265b4115e/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF9856-scaled.jpg,,FALSE, +N1,28534,sortie-7e8b5903-951d-43c0-8d8f-a36265b4115e,https://biolit.fr/sorties/sortie-7e8b5903-951d-43c0-8d8f-a36265b4115e/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829420000000,1.590064000000,,Audresselles,28201,observation-7e8b5903-951d-43c0-8d8f-a36265b4115e-2,https://biolit.fr/observations/observation-7e8b5903-951d-43c0-8d8f-a36265b4115e-2/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/DSCF9863-scaled.jpg,,TRUE, +N1,28534,sortie-7e8b5903-951d-43c0-8d8f-a36265b4115e,https://biolit.fr/sorties/sortie-7e8b5903-951d-43c0-8d8f-a36265b4115e/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829420000000,1.590064000000,,Audresselles,28203,observation-7e8b5903-951d-43c0-8d8f-a36265b4115e-3,https://biolit.fr/observations/observation-7e8b5903-951d-43c0-8d8f-a36265b4115e-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1100137-scaled.jpg,,TRUE, +N1,28534,sortie-7e8b5903-951d-43c0-8d8f-a36265b4115e,https://biolit.fr/sorties/sortie-7e8b5903-951d-43c0-8d8f-a36265b4115e/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829420000000,1.590064000000,,Audresselles,28205,observation-7e8b5903-951d-43c0-8d8f-a36265b4115e-4,https://biolit.fr/observations/observation-7e8b5903-951d-43c0-8d8f-a36265b4115e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100136-scaled.jpg,,FALSE, +N1,28535,sortie-63facec5-3f37-48b3-ad84-347d0e552ea2,https://biolit.fr/sorties/sortie-63facec5-3f37-48b3-ad84-347d0e552ea2/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829780000000,1.590010000000,,Audreselles,28207,observation-63facec5-3f37-48b3-ad84-347d0e552ea2,https://biolit.fr/observations/observation-63facec5-3f37-48b3-ad84-347d0e552ea2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF9805-scaled.jpg,,FALSE, +N1,28535,sortie-63facec5-3f37-48b3-ad84-347d0e552ea2,https://biolit.fr/sorties/sortie-63facec5-3f37-48b3-ad84-347d0e552ea2/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829780000000,1.590010000000,,Audreselles,28209,observation-63facec5-3f37-48b3-ad84-347d0e552ea2-2,https://biolit.fr/observations/observation-63facec5-3f37-48b3-ad84-347d0e552ea2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF9847-scaled.jpg,,FALSE, +N1,28535,sortie-63facec5-3f37-48b3-ad84-347d0e552ea2,https://biolit.fr/sorties/sortie-63facec5-3f37-48b3-ad84-347d0e552ea2/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829780000000,1.590010000000,,Audreselles,28211,observation-63facec5-3f37-48b3-ad84-347d0e552ea2-3,https://biolit.fr/observations/observation-63facec5-3f37-48b3-ad84-347d0e552ea2-3/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/DSCF9848-scaled.jpg,,TRUE, +N1,28535,sortie-63facec5-3f37-48b3-ad84-347d0e552ea2,https://biolit.fr/sorties/sortie-63facec5-3f37-48b3-ad84-347d0e552ea2/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829780000000,1.590010000000,,Audreselles,28213,observation-63facec5-3f37-48b3-ad84-347d0e552ea2-4,https://biolit.fr/observations/observation-63facec5-3f37-48b3-ad84-347d0e552ea2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF9854-scaled.jpg,,FALSE, +N1,28535,sortie-63facec5-3f37-48b3-ad84-347d0e552ea2,https://biolit.fr/sorties/sortie-63facec5-3f37-48b3-ad84-347d0e552ea2/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829780000000,1.590010000000,,Audreselles,28215,observation-63facec5-3f37-48b3-ad84-347d0e552ea2-5,https://biolit.fr/observations/observation-63facec5-3f37-48b3-ad84-347d0e552ea2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF9843-scaled.jpg,,FALSE, +N1,28535,sortie-63facec5-3f37-48b3-ad84-347d0e552ea2,https://biolit.fr/sorties/sortie-63facec5-3f37-48b3-ad84-347d0e552ea2/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829780000000,1.590010000000,,Audreselles,28217,observation-63facec5-3f37-48b3-ad84-347d0e552ea2-6,https://biolit.fr/observations/observation-63facec5-3f37-48b3-ad84-347d0e552ea2-6/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/DSCF9850-scaled.jpg,,TRUE, +N1,28535,sortie-63facec5-3f37-48b3-ad84-347d0e552ea2,https://biolit.fr/sorties/sortie-63facec5-3f37-48b3-ad84-347d0e552ea2/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829780000000,1.590010000000,,Audreselles,28219,observation-63facec5-3f37-48b3-ad84-347d0e552ea2-7,https://biolit.fr/observations/observation-63facec5-3f37-48b3-ad84-347d0e552ea2-7/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/DSCF9864-scaled.jpg,,TRUE, +N1,28535,sortie-63facec5-3f37-48b3-ad84-347d0e552ea2,https://biolit.fr/sorties/sortie-63facec5-3f37-48b3-ad84-347d0e552ea2/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829780000000,1.590010000000,,Audreselles,28221,observation-63facec5-3f37-48b3-ad84-347d0e552ea2-8,https://biolit.fr/observations/observation-63facec5-3f37-48b3-ad84-347d0e552ea2-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF9837-scaled.jpg,,FALSE, +N1,28535,sortie-63facec5-3f37-48b3-ad84-347d0e552ea2,https://biolit.fr/sorties/sortie-63facec5-3f37-48b3-ad84-347d0e552ea2/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829780000000,1.590010000000,,Audreselles,28223,observation-63facec5-3f37-48b3-ad84-347d0e552ea2-9,https://biolit.fr/observations/observation-63facec5-3f37-48b3-ad84-347d0e552ea2-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF9857-scaled.jpg,,FALSE, +N1,28536,sortie-3b9326a0-a077-486e-a3de-faf8c5aba7d1,https://biolit.fr/sorties/sortie-3b9326a0-a077-486e-a3de-faf8c5aba7d1/,AIEJE,,5/30/2016 0:00,10.0:25,11.0:25,43.33392900000,5.197718000000,,"plage des pebraires, ensues la redonne",28225,observation-3b9326a0-a077-486e-a3de-faf8c5aba7d1,https://biolit.fr/observations/observation-3b9326a0-a077-486e-a3de-faf8c5aba7d1/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_3090.JPG,,TRUE, +N1,28537,sortie-b2002dee-3c7c-4718-81b9-7057b4739499,https://biolit.fr/sorties/sortie-b2002dee-3c7c-4718-81b9-7057b4739499/,Audrey,,5/22/2016 0:00,10.0000000,17.0000000,43.450539000000,6.919583000000,,Pointe de l'Observatoire,28227,observation-b2002dee-3c7c-4718-81b9-7057b4739499,https://biolit.fr/observations/observation-b2002dee-3c7c-4718-81b9-7057b4739499/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/20160522_Pelagia_CapRoux_5.jpg,,TRUE, +N1,28537,sortie-b2002dee-3c7c-4718-81b9-7057b4739499,https://biolit.fr/sorties/sortie-b2002dee-3c7c-4718-81b9-7057b4739499/,Audrey,,5/22/2016 0:00,10.0000000,17.0000000,43.450539000000,6.919583000000,,Pointe de l'Observatoire,28229,observation-b2002dee-3c7c-4718-81b9-7057b4739499-2,https://biolit.fr/observations/observation-b2002dee-3c7c-4718-81b9-7057b4739499-2/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/20160522_Pelagia_CapRoux_4.jpg,,TRUE, +N1,28537,sortie-b2002dee-3c7c-4718-81b9-7057b4739499,https://biolit.fr/sorties/sortie-b2002dee-3c7c-4718-81b9-7057b4739499/,Audrey,,5/22/2016 0:00,10.0000000,17.0000000,43.450539000000,6.919583000000,,Pointe de l'Observatoire,28231,observation-b2002dee-3c7c-4718-81b9-7057b4739499-3,https://biolit.fr/observations/observation-b2002dee-3c7c-4718-81b9-7057b4739499-3/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/20160522_Pelagia_CapRoux_1.jpg,,TRUE, +N1,28538,sortie-6074decb-0113-4500-868c-9aec5068f999,https://biolit.fr/sorties/sortie-6074decb-0113-4500-868c-9aec5068f999/,Audrey,,5/22/2016 0:00,10.0000000,17.0000000,43.450554000000,6.919567000000,,Pointe de l'Observatoire,28233,observation-6074decb-0113-4500-868c-9aec5068f999,https://biolit.fr/observations/observation-6074decb-0113-4500-868c-9aec5068f999/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20160522_SabotDeVenus_CapRoux_1.jpg,,TRUE, +N1,28538,sortie-6074decb-0113-4500-868c-9aec5068f999,https://biolit.fr/sorties/sortie-6074decb-0113-4500-868c-9aec5068f999/,Audrey,,5/22/2016 0:00,10.0000000,17.0000000,43.450554000000,6.919567000000,,Pointe de l'Observatoire,28235,observation-6074decb-0113-4500-868c-9aec5068f999-2,https://biolit.fr/observations/observation-6074decb-0113-4500-868c-9aec5068f999-2/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20160522_SabotDeVenus_CapRoux_3.jpg,,TRUE, +N1,28539,sortie-739a12f6-db27-487c-924b-cca878dca8f7,https://biolit.fr/sorties/sortie-739a12f6-db27-487c-924b-cca878dca8f7/,Marine,,5/17/2016 0:00,12.0000000,14.0000000,43.214910000000,5.342997000000,,Plage de la Maronaise,28237,observation-739a12f6-db27-487c-924b-cca878dca8f7,https://biolit.fr/observations/observation-739a12f6-db27-487c-924b-cca878dca8f7/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1362-scaled.jpg,,TRUE, +N1,28539,sortie-739a12f6-db27-487c-924b-cca878dca8f7,https://biolit.fr/sorties/sortie-739a12f6-db27-487c-924b-cca878dca8f7/,Marine,,5/17/2016 0:00,12.0000000,14.0000000,43.214910000000,5.342997000000,,Plage de la Maronaise,28239,observation-739a12f6-db27-487c-924b-cca878dca8f7-2,https://biolit.fr/observations/observation-739a12f6-db27-487c-924b-cca878dca8f7-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1363-scaled.jpg,,TRUE, +N1,28540,sortie-d089f8e9-17f3-4694-b121-304f86ae4572,https://biolit.fr/sorties/sortie-d089f8e9-17f3-4694-b121-304f86ae4572/,Marine,,5/17/2016 0:00,12.0000000,14.0000000,43.214859000000,5.342970000000,,Plage de la Maronaise,28241,observation-d089f8e9-17f3-4694-b121-304f86ae4572,https://biolit.fr/observations/observation-d089f8e9-17f3-4694-b121-304f86ae4572/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1360-scaled.jpg,,TRUE, +N1,28540,sortie-d089f8e9-17f3-4694-b121-304f86ae4572,https://biolit.fr/sorties/sortie-d089f8e9-17f3-4694-b121-304f86ae4572/,Marine,,5/17/2016 0:00,12.0000000,14.0000000,43.214859000000,5.342970000000,,Plage de la Maronaise,28243,observation-d089f8e9-17f3-4694-b121-304f86ae4572-2,https://biolit.fr/observations/observation-d089f8e9-17f3-4694-b121-304f86ae4572-2/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1361-scaled.jpg,,TRUE, +N1,28541,sortie-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39,https://biolit.fr/sorties/sortie-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.094774000000,6.023538000000,,Plage de la Garonne,28245,observation-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39,https://biolit.fr/observations/observation-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1343-scaled.jpg,,TRUE, +N1,28541,sortie-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39,https://biolit.fr/sorties/sortie-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.094774000000,6.023538000000,,Plage de la Garonne,28247,observation-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39-2,https://biolit.fr/observations/observation-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39-2/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1344-scaled.jpg,,TRUE, +N1,28541,sortie-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39,https://biolit.fr/sorties/sortie-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.094774000000,6.023538000000,,Plage de la Garonne,28249,observation-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39-3,https://biolit.fr/observations/observation-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39-3/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1345-scaled.jpg,,TRUE, +N1,28541,sortie-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39,https://biolit.fr/sorties/sortie-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.094774000000,6.023538000000,,Plage de la Garonne,28251,observation-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39-4,https://biolit.fr/observations/observation-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39-4/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1346-scaled.jpg,,TRUE, +N1,28541,sortie-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39,https://biolit.fr/sorties/sortie-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.094774000000,6.023538000000,,Plage de la Garonne,28253,observation-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39-5,https://biolit.fr/observations/observation-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39-5/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1349-scaled.jpg,,TRUE, +N1,28542,sortie-acae5c7e-39a8-4643-ad2a-f4a1748ce7e3,https://biolit.fr/sorties/sortie-acae5c7e-39a8-4643-ad2a-f4a1748ce7e3/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.094722000000,6.023559000000,,Plage de la Garonne,28255,observation-acae5c7e-39a8-4643-ad2a-f4a1748ce7e3,https://biolit.fr/observations/observation-acae5c7e-39a8-4643-ad2a-f4a1748ce7e3/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1340-scaled.jpg,,TRUE, +N1,28542,sortie-acae5c7e-39a8-4643-ad2a-f4a1748ce7e3,https://biolit.fr/sorties/sortie-acae5c7e-39a8-4643-ad2a-f4a1748ce7e3/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.094722000000,6.023559000000,,Plage de la Garonne,28257,observation-acae5c7e-39a8-4643-ad2a-f4a1748ce7e3-2,https://biolit.fr/observations/observation-acae5c7e-39a8-4643-ad2a-f4a1748ce7e3-2/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1341-scaled.jpg,,TRUE, +N1,28542,sortie-acae5c7e-39a8-4643-ad2a-f4a1748ce7e3,https://biolit.fr/sorties/sortie-acae5c7e-39a8-4643-ad2a-f4a1748ce7e3/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.094722000000,6.023559000000,,Plage de la Garonne,28259,observation-acae5c7e-39a8-4643-ad2a-f4a1748ce7e3-3,https://biolit.fr/observations/observation-acae5c7e-39a8-4643-ad2a-f4a1748ce7e3-3/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1342-scaled.jpg,,TRUE, +N1,28543,sortie-2047d38d-a649-4d15-8c11-e56cb6479028,https://biolit.fr/sorties/sortie-2047d38d-a649-4d15-8c11-e56cb6479028/,Centre de Découverte Mer et Montagne,,4/28/2016 0:00,10.0000000,11.0000000,43.555240000000,7.140305000000,,"Antibes, plage de la pointe de la Garoupe",28261,observation-2047d38d-a649-4d15-8c11-e56cb6479028,https://biolit.fr/observations/observation-2047d38d-a649-4d15-8c11-e56cb6479028/,Argonauta argo,Argonaute,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Argonaute.jpg,,TRUE, +N1,28544,sortie-cd0ab0bf-50ca-430c-9865-4d75731a6ae7,https://biolit.fr/sorties/sortie-cd0ab0bf-50ca-430c-9865-4d75731a6ae7/,MarieSol,,3/26/2016 0:00,15.0000000,16.0000000,43.547270000000,3.989156000000,,Carnon plage,28263,observation-cd0ab0bf-50ca-430c-9865-4d75731a6ae7,https://biolit.fr/observations/observation-cd0ab0bf-50ca-430c-9865-4d75731a6ae7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Os de seiche.JPG,,FALSE, +N1,28545,sortie-afacb03b-9eb8-4ed8-9ea7-b0f2679514bc,https://biolit.fr/sorties/sortie-afacb03b-9eb8-4ed8-9ea7-b0f2679514bc/,Marine,,1/31/2016 0:00,12.0000000,14.0000000,43.093375000000,6.024289000000,,Plage de la Garonne,28265,observation-afacb03b-9eb8-4ed8-9ea7-b0f2679514bc,https://biolit.fr/observations/observation-afacb03b-9eb8-4ed8-9ea7-b0f2679514bc/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1091-scaled.jpg,,TRUE, +N1,28545,sortie-afacb03b-9eb8-4ed8-9ea7-b0f2679514bc,https://biolit.fr/sorties/sortie-afacb03b-9eb8-4ed8-9ea7-b0f2679514bc/,Marine,,1/31/2016 0:00,12.0000000,14.0000000,43.093375000000,6.024289000000,,Plage de la Garonne,28267,observation-afacb03b-9eb8-4ed8-9ea7-b0f2679514bc-2,https://biolit.fr/observations/observation-afacb03b-9eb8-4ed8-9ea7-b0f2679514bc-2/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1096-scaled.jpg,,TRUE, +N1,28546,sortie-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c,https://biolit.fr/sorties/sortie-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c/,Zarah Simard,,12/05/2015,9.0000000,11.0000000,43.454103000000,3.812732000000,,"Plage des Aresquiers, Frontignan-plage",28269,observation-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c,https://biolit.fr/observations/observation-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/IMGP7422-scaled.jpg,,TRUE, +N1,28546,sortie-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c,https://biolit.fr/sorties/sortie-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c/,Zarah Simard,,12/05/2015,9.0000000,11.0000000,43.454103000000,3.812732000000,,"Plage des Aresquiers, Frontignan-plage",28271,observation-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c-2,https://biolit.fr/observations/observation-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c-2/,Raja asterias,Raie étoilée,,https://biolit.fr/wp-content/uploads/2023/07/IMGP7423-scaled.jpg,,TRUE, +N1,28546,sortie-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c,https://biolit.fr/sorties/sortie-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c/,Zarah Simard,,12/05/2015,9.0000000,11.0000000,43.454103000000,3.812732000000,,"Plage des Aresquiers, Frontignan-plage",28273,observation-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c-3,https://biolit.fr/observations/observation-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP7400-scaled.jpg,,FALSE, +N1,28546,sortie-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c,https://biolit.fr/sorties/sortie-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c/,Zarah Simard,,12/05/2015,9.0000000,11.0000000,43.454103000000,3.812732000000,,"Plage des Aresquiers, Frontignan-plage",28275,observation-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c-4,https://biolit.fr/observations/observation-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP7392-scaled.jpg,,FALSE, +N1,28546,sortie-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c,https://biolit.fr/sorties/sortie-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c/,Zarah Simard,,12/05/2015,9.0000000,11.0000000,43.454103000000,3.812732000000,,"Plage des Aresquiers, Frontignan-plage",28277,observation-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c-5,https://biolit.fr/observations/observation-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP7424-scaled.jpg,,FALSE, +N1,28546,sortie-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c,https://biolit.fr/sorties/sortie-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c/,Zarah Simard,,12/05/2015,9.0000000,11.0000000,43.454103000000,3.812732000000,,"Plage des Aresquiers, Frontignan-plage",28279,observation-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c-6,https://biolit.fr/observations/observation-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP7385-scaled.jpg,,FALSE, +N1,28547,sortie-537a4dce-47c2-4754-9a50-53e7ffdf31e1,https://biolit.fr/sorties/sortie-537a4dce-47c2-4754-9a50-53e7ffdf31e1/,Zarah Simard,,11/07/2015,9.0000000,11.0000000,43.338962000000,3.581311000000,,"Plage du Castellas, Lido de Sete",28281,observation-537a4dce-47c2-4754-9a50-53e7ffdf31e1,https://biolit.fr/observations/observation-537a4dce-47c2-4754-9a50-53e7ffdf31e1/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP7380-scaled.jpg,,FALSE, +N1,28548,sortie-ffa44241-4afe-489c-8386-1258c36f6a6f,https://biolit.fr/sorties/sortie-ffa44241-4afe-489c-8386-1258c36f6a6f/,Josiane WACQUANT,,12/08/2015,9.0:45,11.0000000,43.433666000000,3.780514000000,,FRONTIGNAN,28283,observation-ffa44241-4afe-489c-8386-1258c36f6a6f,https://biolit.fr/observations/observation-ffa44241-4afe-489c-8386-1258c36f6a6f/,,,,https://biolit.fr/wp-content/uploads/2023/07/6-Pachygrapsus marmoratus vivant -scaled.jpg,,FALSE, +N1,28548,sortie-ffa44241-4afe-489c-8386-1258c36f6a6f,https://biolit.fr/sorties/sortie-ffa44241-4afe-489c-8386-1258c36f6a6f/,Josiane WACQUANT,,12/08/2015,9.0:45,11.0000000,43.433666000000,3.780514000000,,FRONTIGNAN,28285,observation-ffa44241-4afe-489c-8386-1258c36f6a6f-2,https://biolit.fr/observations/observation-ffa44241-4afe-489c-8386-1258c36f6a6f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/2-Posidonia oceanica -scaled.jpg,,FALSE, +N1,28548,sortie-ffa44241-4afe-489c-8386-1258c36f6a6f,https://biolit.fr/sorties/sortie-ffa44241-4afe-489c-8386-1258c36f6a6f/,Josiane WACQUANT,,12/08/2015,9.0:45,11.0000000,43.433666000000,3.780514000000,,FRONTIGNAN,28287,observation-ffa44241-4afe-489c-8386-1258c36f6a6f-3,https://biolit.fr/observations/observation-ffa44241-4afe-489c-8386-1258c36f6a6f-3/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/5-éponge et Arca noae -scaled.jpg,,TRUE, +N1,28548,sortie-ffa44241-4afe-489c-8386-1258c36f6a6f,https://biolit.fr/sorties/sortie-ffa44241-4afe-489c-8386-1258c36f6a6f/,Josiane WACQUANT,,12/08/2015,9.0:45,11.0000000,43.433666000000,3.780514000000,,FRONTIGNAN,28289,observation-ffa44241-4afe-489c-8386-1258c36f6a6f-4,https://biolit.fr/observations/observation-ffa44241-4afe-489c-8386-1258c36f6a6f-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/7-Scrobicularia -scaled.jpg,,FALSE, +N1,28548,sortie-ffa44241-4afe-489c-8386-1258c36f6a6f,https://biolit.fr/sorties/sortie-ffa44241-4afe-489c-8386-1258c36f6a6f/,Josiane WACQUANT,,12/08/2015,9.0:45,11.0000000,43.433666000000,3.780514000000,,FRONTIGNAN,28291,observation-ffa44241-4afe-489c-8386-1258c36f6a6f-5,https://biolit.fr/observations/observation-ffa44241-4afe-489c-8386-1258c36f6a6f-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/8-Tellina tenuis -scaled.jpg,,FALSE, +N1,28548,sortie-ffa44241-4afe-489c-8386-1258c36f6a6f,https://biolit.fr/sorties/sortie-ffa44241-4afe-489c-8386-1258c36f6a6f/,Josiane WACQUANT,,12/08/2015,9.0:45,11.0000000,43.433666000000,3.780514000000,,FRONTIGNAN,28293,observation-ffa44241-4afe-489c-8386-1258c36f6a6f-6,https://biolit.fr/observations/observation-ffa44241-4afe-489c-8386-1258c36f6a6f-6/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/9-os de seiche et pétoncle-scaled.jpg,,TRUE, +N1,28548,sortie-ffa44241-4afe-489c-8386-1258c36f6a6f,https://biolit.fr/sorties/sortie-ffa44241-4afe-489c-8386-1258c36f6a6f/,Josiane WACQUANT,,12/08/2015,9.0:45,11.0000000,43.433666000000,3.780514000000,,FRONTIGNAN,28295,observation-ffa44241-4afe-489c-8386-1258c36f6a6f-7,https://biolit.fr/observations/observation-ffa44241-4afe-489c-8386-1258c36f6a6f-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/10-Mytilus -scaled.jpg,,FALSE, +N1,28548,sortie-ffa44241-4afe-489c-8386-1258c36f6a6f,https://biolit.fr/sorties/sortie-ffa44241-4afe-489c-8386-1258c36f6a6f/,Josiane WACQUANT,,12/08/2015,9.0:45,11.0000000,43.433666000000,3.780514000000,,FRONTIGNAN,28297,observation-ffa44241-4afe-489c-8386-1258c36f6a6f-8,https://biolit.fr/observations/observation-ffa44241-4afe-489c-8386-1258c36f6a6f-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/11-Alg. rouge Sphaerococcus coronopifolius -scaled.jpg,,FALSE, +N1,28548,sortie-ffa44241-4afe-489c-8386-1258c36f6a6f,https://biolit.fr/sorties/sortie-ffa44241-4afe-489c-8386-1258c36f6a6f/,Josiane WACQUANT,,12/08/2015,9.0:45,11.0000000,43.433666000000,3.780514000000,,FRONTIGNAN,28299,observation-ffa44241-4afe-489c-8386-1258c36f6a6f-9,https://biolit.fr/observations/observation-ffa44241-4afe-489c-8386-1258c36f6a6f-9/,Pecten jacobaeus,Coquille Saint-Jacques de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/12-Pecten jacobeus-scaled.jpg,,TRUE, +N1,28548,sortie-ffa44241-4afe-489c-8386-1258c36f6a6f,https://biolit.fr/sorties/sortie-ffa44241-4afe-489c-8386-1258c36f6a6f/,Josiane WACQUANT,,12/08/2015,9.0:45,11.0000000,43.433666000000,3.780514000000,,FRONTIGNAN,28301,observation-ffa44241-4afe-489c-8386-1258c36f6a6f-10,https://biolit.fr/observations/observation-ffa44241-4afe-489c-8386-1258c36f6a6f-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/13-Donax trunculus _0-scaled.jpg,,FALSE, +N1,28548,sortie-ffa44241-4afe-489c-8386-1258c36f6a6f,https://biolit.fr/sorties/sortie-ffa44241-4afe-489c-8386-1258c36f6a6f/,Josiane WACQUANT,,12/08/2015,9.0:45,11.0000000,43.433666000000,3.780514000000,,FRONTIGNAN,28303,observation-ffa44241-4afe-489c-8386-1258c36f6a6f-11,https://biolit.fr/observations/observation-ffa44241-4afe-489c-8386-1258c36f6a6f-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/14-Ostrea 763 -scaled.jpg,,FALSE, +N1,28549,sortie-f570982d-5247-40b9-828c-745f2da733a4,https://biolit.fr/sorties/sortie-f570982d-5247-40b9-828c-745f2da733a4/,Marine,,11/26/2015 0:00,12.0000000,14.0000000,42.668181000000,9.447496000000,,Lido de la Marana,28305,observation-f570982d-5247-40b9-828c-745f2da733a4,https://biolit.fr/observations/observation-f570982d-5247-40b9-828c-745f2da733a4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0353-scaled.jpg,,FALSE, +N1,28549,sortie-f570982d-5247-40b9-828c-745f2da733a4,https://biolit.fr/sorties/sortie-f570982d-5247-40b9-828c-745f2da733a4/,Marine,,11/26/2015 0:00,12.0000000,14.0000000,42.668181000000,9.447496000000,,Lido de la Marana,28307,observation-f570982d-5247-40b9-828c-745f2da733a4-2,https://biolit.fr/observations/observation-f570982d-5247-40b9-828c-745f2da733a4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0354-scaled.jpg,,FALSE, +N1,28550,sortie-589dcfe8-062c-40c8-b145-c5c32dd51dc3,https://biolit.fr/sorties/sortie-589dcfe8-062c-40c8-b145-c5c32dd51dc3/,Morice,,11/26/2015 0:00,8.0:15,8.0:45,48.636077000000,-2.082924000000,,Plage du Port Blanc,28309,observation-589dcfe8-062c-40c8-b145-c5c32dd51dc3,https://biolit.fr/observations/observation-589dcfe8-062c-40c8-b145-c5c32dd51dc3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20151126_084609-scaled.jpg,,TRUE, +N1,28550,sortie-589dcfe8-062c-40c8-b145-c5c32dd51dc3,https://biolit.fr/sorties/sortie-589dcfe8-062c-40c8-b145-c5c32dd51dc3/,Morice,,11/26/2015 0:00,8.0:15,8.0:45,48.636077000000,-2.082924000000,,Plage du Port Blanc,28311,observation-589dcfe8-062c-40c8-b145-c5c32dd51dc3-2,https://biolit.fr/observations/observation-589dcfe8-062c-40c8-b145-c5c32dd51dc3-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20151126_084543-scaled.jpg,,TRUE, +N1,28551,sortie-b96fb005-05fc-4eb4-85d4-a0454d5a374d,https://biolit.fr/sorties/sortie-b96fb005-05fc-4eb4-85d4-a0454d5a374d/,Marine,,11/23/2015 0:00,8.0000000,9.0000000,41.922156000000,8.784121000000,,Plage U ricanto,28313,observation-b96fb005-05fc-4eb4-85d4-a0454d5a374d,https://biolit.fr/observations/observation-b96fb005-05fc-4eb4-85d4-a0454d5a374d/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_0171-scaled.jpg,,TRUE, +N1,28551,sortie-b96fb005-05fc-4eb4-85d4-a0454d5a374d,https://biolit.fr/sorties/sortie-b96fb005-05fc-4eb4-85d4-a0454d5a374d/,Marine,,11/23/2015 0:00,8.0000000,9.0000000,41.922156000000,8.784121000000,,Plage U ricanto,28315,observation-b96fb005-05fc-4eb4-85d4-a0454d5a374d-2,https://biolit.fr/observations/observation-b96fb005-05fc-4eb4-85d4-a0454d5a374d-2/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_0172-scaled.jpg,,TRUE, +N1,28551,sortie-b96fb005-05fc-4eb4-85d4-a0454d5a374d,https://biolit.fr/sorties/sortie-b96fb005-05fc-4eb4-85d4-a0454d5a374d/,Marine,,11/23/2015 0:00,8.0000000,9.0000000,41.922156000000,8.784121000000,,Plage U ricanto,28317,observation-b96fb005-05fc-4eb4-85d4-a0454d5a374d-3,https://biolit.fr/observations/observation-b96fb005-05fc-4eb4-85d4-a0454d5a374d-3/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_0173-scaled.jpg,,TRUE, +N1,28551,sortie-b96fb005-05fc-4eb4-85d4-a0454d5a374d,https://biolit.fr/sorties/sortie-b96fb005-05fc-4eb4-85d4-a0454d5a374d/,Marine,,11/23/2015 0:00,8.0000000,9.0000000,41.922156000000,8.784121000000,,Plage U ricanto,28319,observation-b96fb005-05fc-4eb4-85d4-a0454d5a374d-4,https://biolit.fr/observations/observation-b96fb005-05fc-4eb4-85d4-a0454d5a374d-4/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_0177-scaled.jpg,,TRUE, +N1,28551,sortie-b96fb005-05fc-4eb4-85d4-a0454d5a374d,https://biolit.fr/sorties/sortie-b96fb005-05fc-4eb4-85d4-a0454d5a374d/,Marine,,11/23/2015 0:00,8.0000000,9.0000000,41.922156000000,8.784121000000,,Plage U ricanto,28321,observation-b96fb005-05fc-4eb4-85d4-a0454d5a374d-5,https://biolit.fr/observations/observation-b96fb005-05fc-4eb4-85d4-a0454d5a374d-5/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_0178-scaled.jpg,,TRUE, +N1,28551,sortie-b96fb005-05fc-4eb4-85d4-a0454d5a374d,https://biolit.fr/sorties/sortie-b96fb005-05fc-4eb4-85d4-a0454d5a374d/,Marine,,11/23/2015 0:00,8.0000000,9.0000000,41.922156000000,8.784121000000,,Plage U ricanto,28323,observation-b96fb005-05fc-4eb4-85d4-a0454d5a374d-6,https://biolit.fr/observations/observation-b96fb005-05fc-4eb4-85d4-a0454d5a374d-6/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0175-scaled.jpg,,TRUE, +N1,28551,sortie-b96fb005-05fc-4eb4-85d4-a0454d5a374d,https://biolit.fr/sorties/sortie-b96fb005-05fc-4eb4-85d4-a0454d5a374d/,Marine,,11/23/2015 0:00,8.0000000,9.0000000,41.922156000000,8.784121000000,,Plage U ricanto,28325,observation-b96fb005-05fc-4eb4-85d4-a0454d5a374d-7,https://biolit.fr/observations/observation-b96fb005-05fc-4eb4-85d4-a0454d5a374d-7/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0176-scaled.jpg,,TRUE, +N1,28552,sortie-9dc62e7d-be2c-48cb-9861-f3f8f7356b38,https://biolit.fr/sorties/sortie-9dc62e7d-be2c-48cb-9861-f3f8f7356b38/,Planète Mer,,10/04/2015,14.0000000,17.0000000,43.154247000000,6.481935000000,,Baie du Figuier,28327,observation-9dc62e7d-be2c-48cb-9861-f3f8f7356b38,https://biolit.fr/observations/observation-9dc62e7d-be2c-48cb-9861-f3f8f7356b38/,,,,https://biolit.fr/wp-content/uploads/2023/07/PA040013_0-scaled.jpg,,FALSE, +N1,28553,sortie-15be3ce2-2841-465c-a910-bdaa96a1463b,https://biolit.fr/sorties/sortie-15be3ce2-2841-465c-a910-bdaa96a1463b/,Planète Mer,,9/21/2015 0:00,14.0000000,17.0000000,43.519751000000,7.033805000000,,île Sainte Marguerite,28329,observation-15be3ce2-2841-465c-a910-bdaa96a1463b,https://biolit.fr/observations/observation-15be3ce2-2841-465c-a910-bdaa96a1463b/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0047-scaled.jpg,,FALSE, +N1,28553,sortie-15be3ce2-2841-465c-a910-bdaa96a1463b,https://biolit.fr/sorties/sortie-15be3ce2-2841-465c-a910-bdaa96a1463b/,Planète Mer,,9/21/2015 0:00,14.0000000,17.0000000,43.519751000000,7.033805000000,,île Sainte Marguerite,28331,observation-15be3ce2-2841-465c-a910-bdaa96a1463b-2,https://biolit.fr/observations/observation-15be3ce2-2841-465c-a910-bdaa96a1463b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0051_0-scaled.jpg,,FALSE, +N1,28553,sortie-15be3ce2-2841-465c-a910-bdaa96a1463b,https://biolit.fr/sorties/sortie-15be3ce2-2841-465c-a910-bdaa96a1463b/,Planète Mer,,9/21/2015 0:00,14.0000000,17.0000000,43.519751000000,7.033805000000,,île Sainte Marguerite,28333,observation-15be3ce2-2841-465c-a910-bdaa96a1463b-3,https://biolit.fr/observations/observation-15be3ce2-2841-465c-a910-bdaa96a1463b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0037-scaled.jpg,,FALSE, +N1,28554,sortie-0b4af78c-cadf-44fd-a114-d53be86e8497,https://biolit.fr/sorties/sortie-0b4af78c-cadf-44fd-a114-d53be86e8497/,Marine,,06/05/2015,18.0000000,20.0000000,43.325903000000,5.054252000000,,Plage de la Couronne Vieille,28335,observation-0b4af78c-cadf-44fd-a114-d53be86e8497,https://biolit.fr/observations/observation-0b4af78c-cadf-44fd-a114-d53be86e8497/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_0656-scaled.jpg,,TRUE, +N1,28555,sortie-ca69ba0f-3a27-4736-9c79-7af5b9876d05,https://biolit.fr/sorties/sortie-ca69ba0f-3a27-4736-9c79-7af5b9876d05/,Audrey,,5/20/2015 0:00,14.0:15,15.0:15,43.273263000000,5.361569000000,,Plage du Prophète Marseille,28337,observation-ca69ba0f-3a27-4736-9c79-7af5b9876d05,https://biolit.fr/observations/observation-ca69ba0f-3a27-4736-9c79-7af5b9876d05/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/ponte.jpg,,TRUE, +N1,28556,sortie-3a60d38d-ad92-40e9-a584-93e86d00920a,https://biolit.fr/sorties/sortie-3a60d38d-ad92-40e9-a584-93e86d00920a/,Céline,,5/16/2015 0:00,18.0000000,18.0000000,47.512765000000,-2.847750000000,,"St Gildas, plage des govelins",28339,observation-3a60d38d-ad92-40e9-a584-93e86d00920a,https://biolit.fr/observations/observation-3a60d38d-ad92-40e9-a584-93e86d00920a/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/20150516 st gildas pontes_1-rotated.jpg,,TRUE, +N1,28557,sortie-67a14fe3-9802-48b4-a7f2-f6356e3b2a34,https://biolit.fr/sorties/sortie-67a14fe3-9802-48b4-a7f2-f6356e3b2a34/,Marine,,05/09/2015,16.0000000,18.0000000,43.094756000000,6.023482000000,,Plage du Pradet,28341,observation-67a14fe3-9802-48b4-a7f2-f6356e3b2a34,https://biolit.fr/observations/observation-67a14fe3-9802-48b4-a7f2-f6356e3b2a34/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_9702_2-scaled.jpg,,TRUE, +N1,28557,sortie-67a14fe3-9802-48b4-a7f2-f6356e3b2a34,https://biolit.fr/sorties/sortie-67a14fe3-9802-48b4-a7f2-f6356e3b2a34/,Marine,,05/09/2015,16.0000000,18.0000000,43.094756000000,6.023482000000,,Plage du Pradet,28343,observation-67a14fe3-9802-48b4-a7f2-f6356e3b2a34-2,https://biolit.fr/observations/observation-67a14fe3-9802-48b4-a7f2-f6356e3b2a34-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_9706_2-scaled.jpg,,TRUE, +N1,28558,sortie-c4493942-2aed-41c5-b904-10782f50a76b,https://biolit.fr/sorties/sortie-c4493942-2aed-41c5-b904-10782f50a76b/,Audrey,,05/03/2015,14.0000000,14.0:45,43.758627000000,7.482897000000,,Roquebrune-Cap-Martin,28345,observation-c4493942-2aed-41c5-b904-10782f50a76b,https://biolit.fr/observations/observation-c4493942-2aed-41c5-b904-10782f50a76b/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/velele.jpg,,TRUE, +N1,28558,sortie-c4493942-2aed-41c5-b904-10782f50a76b,https://biolit.fr/sorties/sortie-c4493942-2aed-41c5-b904-10782f50a76b/,Audrey,,05/03/2015,14.0000000,14.0:45,43.758627000000,7.482897000000,,Roquebrune-Cap-Martin,28347,observation-c4493942-2aed-41c5-b904-10782f50a76b-2,https://biolit.fr/observations/observation-c4493942-2aed-41c5-b904-10782f50a76b-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/velele1.jpg,,TRUE, +N1,28558,sortie-c4493942-2aed-41c5-b904-10782f50a76b,https://biolit.fr/sorties/sortie-c4493942-2aed-41c5-b904-10782f50a76b/,Audrey,,05/03/2015,14.0000000,14.0:45,43.758627000000,7.482897000000,,Roquebrune-Cap-Martin,28349,observation-c4493942-2aed-41c5-b904-10782f50a76b-3,https://biolit.fr/observations/observation-c4493942-2aed-41c5-b904-10782f50a76b-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/velele2.jpg,,TRUE, +N1,28560,sortie-66f921f7-780a-4027-8a86-068373481d34,https://biolit.fr/sorties/sortie-66f921f7-780a-4027-8a86-068373481d34/,Marine,,5/29/2014 0:00,10.0000000,11.0000000,43.094507000000,6.023674000000,,Plage du Pradet,28353,observation-66f921f7-780a-4027-8a86-068373481d34,https://biolit.fr/observations/observation-66f921f7-780a-4027-8a86-068373481d34/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_8399-scaled.jpg,,TRUE, +N1,28560,sortie-66f921f7-780a-4027-8a86-068373481d34,https://biolit.fr/sorties/sortie-66f921f7-780a-4027-8a86-068373481d34/,Marine,,5/29/2014 0:00,10.0000000,11.0000000,43.094507000000,6.023674000000,,Plage du Pradet,28355,observation-66f921f7-780a-4027-8a86-068373481d34-2,https://biolit.fr/observations/observation-66f921f7-780a-4027-8a86-068373481d34-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_8400-scaled.jpg,,TRUE, +N1,28560,sortie-66f921f7-780a-4027-8a86-068373481d34,https://biolit.fr/sorties/sortie-66f921f7-780a-4027-8a86-068373481d34/,Marine,,5/29/2014 0:00,10.0000000,11.0000000,43.094507000000,6.023674000000,,Plage du Pradet,28357,observation-66f921f7-780a-4027-8a86-068373481d34-3,https://biolit.fr/observations/observation-66f921f7-780a-4027-8a86-068373481d34-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_8401-scaled.jpg,,TRUE, +N1,28561,sortie-370b5a7e-1590-4866-a35e-bb2cb8fa10eb,https://biolit.fr/sorties/sortie-370b5a7e-1590-4866-a35e-bb2cb8fa10eb/,Marine,,5/23/2014 0:00,14.0000000,15.0000000,43.333936000000,5.197766000000,,Plage des Pébraïres,28359,observation-370b5a7e-1590-4866-a35e-bb2cb8fa10eb,https://biolit.fr/observations/observation-370b5a7e-1590-4866-a35e-bb2cb8fa10eb/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20140523_141122.jpg,,TRUE, +N1,28562,sortie-d80a213a-c77c-42ab-87d0-b76f4ee085fa,https://biolit.fr/sorties/sortie-d80a213a-c77c-42ab-87d0-b76f4ee085fa/,Marine,,5/22/2014 0:00,11.0000000,12.0000000,43.333935000000,5.197750000000,,Plage des Pebraïres,28361,observation-d80a213a-c77c-42ab-87d0-b76f4ee085fa,https://biolit.fr/observations/observation-d80a213a-c77c-42ab-87d0-b76f4ee085fa/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20140522_112128.jpg,,TRUE, +N1,28564,sortie-17619710-b39f-49da-89cf-78c3adf56d80,https://biolit.fr/sorties/sortie-17619710-b39f-49da-89cf-78c3adf56d80/,Ville de Marseille,,5/16/2014 0:00,10.0000000,11.0000000,43.280120000000,5.352684000000,,Anse de la Fausse-Monnaie Côte rocheuse,28365,observation-17619710-b39f-49da-89cf-78c3adf56d80,https://biolit.fr/observations/observation-17619710-b39f-49da-89cf-78c3adf56d80/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus P5167951-scaled.jpg,,TRUE, +N1,28564,sortie-17619710-b39f-49da-89cf-78c3adf56d80,https://biolit.fr/sorties/sortie-17619710-b39f-49da-89cf-78c3adf56d80/,Ville de Marseille,,5/16/2014 0:00,10.0000000,11.0000000,43.280120000000,5.352684000000,,Anse de la Fausse-Monnaie Côte rocheuse,28367,observation-17619710-b39f-49da-89cf-78c3adf56d80-2,https://biolit.fr/observations/observation-17619710-b39f-49da-89cf-78c3adf56d80-2/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus P5167952-scaled.jpg,,TRUE, +N1,28564,sortie-17619710-b39f-49da-89cf-78c3adf56d80,https://biolit.fr/sorties/sortie-17619710-b39f-49da-89cf-78c3adf56d80/,Ville de Marseille,,5/16/2014 0:00,10.0000000,11.0000000,43.280120000000,5.352684000000,,Anse de la Fausse-Monnaie Côte rocheuse,28369,observation-17619710-b39f-49da-89cf-78c3adf56d80-3,https://biolit.fr/observations/observation-17619710-b39f-49da-89cf-78c3adf56d80-3/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus P5167953-scaled.jpg,,TRUE, +N1,28565,sortie-6dee1878-2ba8-432c-a94c-3a7780a4f398,https://biolit.fr/sorties/sortie-6dee1878-2ba8-432c-a94c-3a7780a4f398/,Ville de Marseille,,5/16/2014 0:00,10.0000000,11.0000000,43.280589000000,5.352976000000,,Anse de la Fausse-Monnaie Côte rocheuse ,28371,observation-6dee1878-2ba8-432c-a94c-3a7780a4f398,https://biolit.fr/observations/observation-6dee1878-2ba8-432c-a94c-3a7780a4f398/,Acanthonyx lunulatus,Araignée de mer glabre,,https://biolit.fr/wp-content/uploads/2023/07/P5167939-scaled.jpg,,TRUE, +N1,28565,sortie-6dee1878-2ba8-432c-a94c-3a7780a4f398,https://biolit.fr/sorties/sortie-6dee1878-2ba8-432c-a94c-3a7780a4f398/,Ville de Marseille,,5/16/2014 0:00,10.0000000,11.0000000,43.280589000000,5.352976000000,,Anse de la Fausse-Monnaie Côte rocheuse ,28373,observation-6dee1878-2ba8-432c-a94c-3a7780a4f398-2,https://biolit.fr/observations/observation-6dee1878-2ba8-432c-a94c-3a7780a4f398-2/,Acanthonyx lunulatus,Araignée de mer glabre,,https://biolit.fr/wp-content/uploads/2023/07/P5167940-scaled.jpg,,TRUE, +N1,28565,sortie-6dee1878-2ba8-432c-a94c-3a7780a4f398,https://biolit.fr/sorties/sortie-6dee1878-2ba8-432c-a94c-3a7780a4f398/,Ville de Marseille,,5/16/2014 0:00,10.0000000,11.0000000,43.280589000000,5.352976000000,,Anse de la Fausse-Monnaie Côte rocheuse ,28375,observation-6dee1878-2ba8-432c-a94c-3a7780a4f398-3,https://biolit.fr/observations/observation-6dee1878-2ba8-432c-a94c-3a7780a4f398-3/,Acanthonyx lunulatus,Araignée de mer glabre,,https://biolit.fr/wp-content/uploads/2023/07/P5167945-scaled.jpg,,TRUE, +N1,28565,sortie-6dee1878-2ba8-432c-a94c-3a7780a4f398,https://biolit.fr/sorties/sortie-6dee1878-2ba8-432c-a94c-3a7780a4f398/,Ville de Marseille,,5/16/2014 0:00,10.0000000,11.0000000,43.280589000000,5.352976000000,,Anse de la Fausse-Monnaie Côte rocheuse ,28377,observation-6dee1878-2ba8-432c-a94c-3a7780a4f398-4,https://biolit.fr/observations/observation-6dee1878-2ba8-432c-a94c-3a7780a4f398-4/,Acanthonyx lunulatus,Araignée de mer glabre,,https://biolit.fr/wp-content/uploads/2023/07/P5167946-scaled.jpg,,TRUE, +N1,28566,sortie-92bdb1fe-e3d1-4b27-9914-73d2e8853f6b,https://biolit.fr/sorties/sortie-92bdb1fe-e3d1-4b27-9914-73d2e8853f6b/,Ville de Marseille,,05/02/2014,10.0000000,11.0000000,43.272835000000,5.362070000000,,"bassin du Roucas Blanc,13008 Marseille",28379,observation-92bdb1fe-e3d1-4b27-9914-73d2e8853f6b,https://biolit.fr/observations/observation-92bdb1fe-e3d1-4b27-9914-73d2e8853f6b/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/os de seiche (2)-scaled.jpg,,TRUE, +N1,28566,sortie-92bdb1fe-e3d1-4b27-9914-73d2e8853f6b,https://biolit.fr/sorties/sortie-92bdb1fe-e3d1-4b27-9914-73d2e8853f6b/,Ville de Marseille,,05/02/2014,10.0000000,11.0000000,43.272835000000,5.362070000000,,"bassin du Roucas Blanc,13008 Marseille",28381,observation-92bdb1fe-e3d1-4b27-9914-73d2e8853f6b-2,https://biolit.fr/observations/observation-92bdb1fe-e3d1-4b27-9914-73d2e8853f6b-2/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Os de seiche.JPG,,TRUE, +N1,28567,sortie-725447b1-5e9b-48e2-ba8f-c165354f44d0,https://biolit.fr/sorties/sortie-725447b1-5e9b-48e2-ba8f-c165354f44d0/,Audrey,,5/18/2014 0:00,15.0000000,16.0000000,43.040996000000,6.106383000000,,"Presqu'île de Giens, Plage de l'Ermitage",28382,observation-725447b1-5e9b-48e2-ba8f-c165354f44d0,https://biolit.fr/observations/observation-725447b1-5e9b-48e2-ba8f-c165354f44d0/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/2_PointeDeLermitage_Presquile_Gien_Hyeres_20140518 (1)-scaled.jpg,,TRUE, +N1,28567,sortie-725447b1-5e9b-48e2-ba8f-c165354f44d0,https://biolit.fr/sorties/sortie-725447b1-5e9b-48e2-ba8f-c165354f44d0/,Audrey,,5/18/2014 0:00,15.0000000,16.0000000,43.040996000000,6.106383000000,,"Presqu'île de Giens, Plage de l'Ermitage",28384,observation-725447b1-5e9b-48e2-ba8f-c165354f44d0-2,https://biolit.fr/observations/observation-725447b1-5e9b-48e2-ba8f-c165354f44d0-2/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/2_PointeDeLermitage_Presquile_Gien_Hyeres_20140518 (3)-scaled.jpg,,TRUE, +N1,28568,sortie-68450cef-85d5-4c42-8ebe-f11884be7b0f,https://biolit.fr/sorties/sortie-68450cef-85d5-4c42-8ebe-f11884be7b0f/,Audrey,,5/18/2014 0:00,15.0000000,16.0000000,43.041366000000,6.103389000000,,"Presqu'île de Giens, Pointe de l'Ermitage",28386,observation-68450cef-85d5-4c42-8ebe-f11884be7b0f,https://biolit.fr/observations/observation-68450cef-85d5-4c42-8ebe-f11884be7b0f/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1040578-scaled.jpg,,TRUE, +N1,28569,sortie-e276b23f-3d05-4e16-ae5b-487a300fb15b,https://biolit.fr/sorties/sortie-e276b23f-3d05-4e16-ae5b-487a300fb15b/,Audrey,,5/18/2014 0:00,10.0000000,11.0000000,43.141523000000,6.381896000000,,"Le Lavandou, Plage Saint Clair, ",28388,observation-e276b23f-3d05-4e16-ae5b-487a300fb15b,https://biolit.fr/observations/observation-e276b23f-3d05-4e16-ae5b-487a300fb15b/,,,,https://biolit.fr/wp-content/uploads/2023/07/1_Lavandou_Plage_SaintClair_20140518 (2)-scaled.jpg,,FALSE, +N1,28569,sortie-e276b23f-3d05-4e16-ae5b-487a300fb15b,https://biolit.fr/sorties/sortie-e276b23f-3d05-4e16-ae5b-487a300fb15b/,Audrey,,5/18/2014 0:00,10.0000000,11.0000000,43.141523000000,6.381896000000,,"Le Lavandou, Plage Saint Clair, ",28390,observation-e276b23f-3d05-4e16-ae5b-487a300fb15b-2,https://biolit.fr/observations/observation-e276b23f-3d05-4e16-ae5b-487a300fb15b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/1_Lavandou_Plage_SaintClair_20140518 (3)-scaled.jpg,,TRUE,non-identifiable +N1,28570,sortie-8a651ba0-cc41-47fb-bcf0-83d66237583a,https://biolit.fr/sorties/sortie-8a651ba0-cc41-47fb-bcf0-83d66237583a/,Julie Chabalier,,03/02/2014,10.0000000,12.0:45,43.482954000000,4.138540000000,,"Plage de l'Espiguette, Le Grau du Roi",28392,observation-8a651ba0-cc41-47fb-bcf0-83d66237583a,https://biolit.fr/observations/observation-8a651ba0-cc41-47fb-bcf0-83d66237583a/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Seiche-scaled.jpg,,TRUE, +N1,28570,sortie-8a651ba0-cc41-47fb-bcf0-83d66237583a,https://biolit.fr/sorties/sortie-8a651ba0-cc41-47fb-bcf0-83d66237583a/,Julie Chabalier,,03/02/2014,10.0000000,12.0:45,43.482954000000,4.138540000000,,"Plage de l'Espiguette, Le Grau du Roi",28394,observation-8a651ba0-cc41-47fb-bcf0-83d66237583a-2,https://biolit.fr/observations/observation-8a651ba0-cc41-47fb-bcf0-83d66237583a-2/,Raja asterias,Raie étoilée,,https://biolit.fr/wp-content/uploads/2023/07/Raie-scaled.jpg,,TRUE, +N1,28570,sortie-8a651ba0-cc41-47fb-bcf0-83d66237583a,https://biolit.fr/sorties/sortie-8a651ba0-cc41-47fb-bcf0-83d66237583a/,Julie Chabalier,,03/02/2014,10.0000000,12.0:45,43.482954000000,4.138540000000,,"Plage de l'Espiguette, Le Grau du Roi",28396,observation-8a651ba0-cc41-47fb-bcf0-83d66237583a-3,https://biolit.fr/observations/observation-8a651ba0-cc41-47fb-bcf0-83d66237583a-3/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/Moule-scaled.jpg,,TRUE, +N1,28571,sortie-5b8a6f7a-f217-4ee0-82a8-f5c36a4b4c2f,https://biolit.fr/sorties/sortie-5b8a6f7a-f217-4ee0-82a8-f5c36a4b4c2f/,Robert,,3/19/2014 0:00,11.0000000,13.0000000,43.267357000000,5.292094000000,,Marseille - Îles du Frioul,28398,observation-5b8a6f7a-f217-4ee0-82a8-f5c36a4b4c2f,https://biolit.fr/observations/observation-5b8a6f7a-f217-4ee0-82a8-f5c36a4b4c2f/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/P3193954-scaled.jpg,,TRUE, +N1,28572,sortie-460f4eb3-9881-430d-9016-66343d056cfa,https://biolit.fr/sorties/sortie-460f4eb3-9881-430d-9016-66343d056cfa/,Lisa Kundasamy,,3/21/2014 0:00,10.0000000,12.0000000,43.520939000000,7.032501000000,,ÎLes de Lérins - Sainte Marguerite,28400,observation-460f4eb3-9881-430d-9016-66343d056cfa,https://biolit.fr/observations/observation-460f4eb3-9881-430d-9016-66343d056cfa/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_0173-scaled.jpg,,TRUE, +N1,28572,sortie-460f4eb3-9881-430d-9016-66343d056cfa,https://biolit.fr/sorties/sortie-460f4eb3-9881-430d-9016-66343d056cfa/,Lisa Kundasamy,,3/21/2014 0:00,10.0000000,12.0000000,43.520939000000,7.032501000000,,ÎLes de Lérins - Sainte Marguerite,28402,observation-460f4eb3-9881-430d-9016-66343d056cfa-2,https://biolit.fr/observations/observation-460f4eb3-9881-430d-9016-66343d056cfa-2/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_0174-scaled.jpg,,TRUE, +N1,28573,sortie-6675ee89-886b-441b-a3a1-e1e9d5cd715f,https://biolit.fr/sorties/sortie-6675ee89-886b-441b-a3a1-e1e9d5cd715f/,Laurent Debas,,3/31/2014 0:00,9.0000000,11.0000000,43.284151000000,5.315503000000,,Frioul - Marseille - Calanque de Sainte Estève,28404,observation-6675ee89-886b-441b-a3a1-e1e9d5cd715f,https://biolit.fr/observations/observation-6675ee89-886b-441b-a3a1-e1e9d5cd715f/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_0084_0-scaled.jpg,,TRUE, +N1,58515,sortie-d2168b71-9aed-4682-9275-395b132f3982,https://biolit.fr/sorties/sortie-d2168b71-9aed-4682-9275-395b132f3982/,Watch The Sea,,6/16/2023 0:00,11.0000000,12.0000000,43.450237000000,6.922174000000,,Côte d'Esterel,28574,observation-d2168b71-9aed-4682-9275-395b132f3982,https://biolit.fr/observations/observation-d2168b71-9aed-4682-9275-395b132f3982/,,,,https://biolit.fr/wp-content/uploads/2023/07/1_6.jpg,,FALSE, +N1,58515,sortie-d2168b71-9aed-4682-9275-395b132f3982,https://biolit.fr/sorties/sortie-d2168b71-9aed-4682-9275-395b132f3982/,Watch The Sea,,6/16/2023 0:00,11.0000000,12.0000000,43.450237000000,6.922174000000,,Côte d'Esterel,28576,observation-d2168b71-9aed-4682-9275-395b132f3982-2,https://biolit.fr/observations/observation-d2168b71-9aed-4682-9275-395b132f3982-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/3_7.jpg,,FALSE, +N1,58515,sortie-d2168b71-9aed-4682-9275-395b132f3982,https://biolit.fr/sorties/sortie-d2168b71-9aed-4682-9275-395b132f3982/,Watch The Sea,,6/16/2023 0:00,11.0000000,12.0000000,43.450237000000,6.922174000000,,Côte d'Esterel,28578,observation-d2168b71-9aed-4682-9275-395b132f3982-3,https://biolit.fr/observations/observation-d2168b71-9aed-4682-9275-395b132f3982-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/4_6.jpg,,FALSE, +N1,58515,sortie-d2168b71-9aed-4682-9275-395b132f3982,https://biolit.fr/sorties/sortie-d2168b71-9aed-4682-9275-395b132f3982/,Watch The Sea,,6/16/2023 0:00,11.0000000,12.0000000,43.450237000000,6.922174000000,,Côte d'Esterel,28580,observation-d2168b71-9aed-4682-9275-395b132f3982-4,https://biolit.fr/observations/observation-d2168b71-9aed-4682-9275-395b132f3982-4/,Edmundsella pedata,Coryphelle mauve,,https://biolit.fr/wp-content/uploads/2023/07/5_4.jpg,,TRUE, +N1,58516,sortie-9be1c584-ef3e-427d-98e0-b68456f3073a,https://biolit.fr/sorties/sortie-9be1c584-ef3e-427d-98e0-b68456f3073a/,edgar.reverdy12@gmail.com,,4/17/2023 0:00,10.0000000,12.0000000,42.354302000000,3.175933000000,,"Cap de Bol, Llança ",28582,observation-9be1c584-ef3e-427d-98e0-b68456f3073a,https://biolit.fr/observations/observation-9be1c584-ef3e-427d-98e0-b68456f3073a/,,,,https://biolit.fr/wp-content/uploads/2023/07/meduse-scaled.jpg,,FALSE, +N1,58516,sortie-9be1c584-ef3e-427d-98e0-b68456f3073a,https://biolit.fr/sorties/sortie-9be1c584-ef3e-427d-98e0-b68456f3073a/,edgar.reverdy12@gmail.com,,4/17/2023 0:00,10.0000000,12.0000000,42.354302000000,3.175933000000,,"Cap de Bol, Llança ",28583,observation-9be1c584-ef3e-427d-98e0-b68456f3073a-2,https://biolit.fr/observations/observation-9be1c584-ef3e-427d-98e0-b68456f3073a-2/,Ophiura ophiura,Ophiure commune,,https://biolit.fr/wp-content/uploads/2023/07/OPHIURE.png,,TRUE, +N1,58516,sortie-9be1c584-ef3e-427d-98e0-b68456f3073a,https://biolit.fr/sorties/sortie-9be1c584-ef3e-427d-98e0-b68456f3073a/,edgar.reverdy12@gmail.com,,4/17/2023 0:00,10.0000000,12.0000000,42.354302000000,3.175933000000,,"Cap de Bol, Llança ",28585,observation-9be1c584-ef3e-427d-98e0-b68456f3073a-3,https://biolit.fr/observations/observation-9be1c584-ef3e-427d-98e0-b68456f3073a-3/,Serranus scriba,Serran-écriture,,https://biolit.fr/wp-content/uploads/2023/07/SERRAN.png,,TRUE, +N1,58517,sortie-03f3b38c-a92a-444d-af4f-a7c83baf9699,https://biolit.fr/sorties/sortie-03f3b38c-a92a-444d-af4f-a7c83baf9699/,ecoleclaudedebussy,,06/08/2023,14.0000000,16.0000000,48.625421000000,-2.052819000000,Planète Mer,"Plage du prieuré, Dinard",28587,observation-03f3b38c-a92a-444d-af4f-a7c83baf9699,https://biolit.fr/observations/observation-03f3b38c-a92a-444d-af4f-a7c83baf9699/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/oeufs de bulot.PNG,,TRUE, +N1,58518,sortie-91c2f30e-11e6-4669-a28d-e9be25d4cfde,https://biolit.fr/sorties/sortie-91c2f30e-11e6-4669-a28d-e9be25d4cfde/,okozlova@kyriba.com,,4/25/2023 0:00,12.0000000,14.0000000,41.90935900000,8.796075000000,,Ajaccio,28589,observation-91c2f30e-11e6-4669-a28d-e9be25d4cfde,https://biolit.fr/observations/observation-91c2f30e-11e6-4669-a28d-e9be25d4cfde/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo1685526926.jpeg,,FALSE, +N1,58519,sortie-363b6c2b-e225-4eb1-9548-5023c49b779f,https://biolit.fr/sorties/sortie-363b6c2b-e225-4eb1-9548-5023c49b779f/,okozlova@kyriba.com,,5/31/2023 0:00,11.0000000,13.0000000,41.904975000000,8.627246000000,,Ajaccio,28591,observation-363b6c2b-e225-4eb1-9548-5023c49b779f,https://biolit.fr/observations/observation-363b6c2b-e225-4eb1-9548-5023c49b779f/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo1685526834.jpeg,,FALSE, +N1,58519,sortie-363b6c2b-e225-4eb1-9548-5023c49b779f,https://biolit.fr/sorties/sortie-363b6c2b-e225-4eb1-9548-5023c49b779f/,okozlova@kyriba.com,,5/31/2023 0:00,11.0000000,13.0000000,41.904975000000,8.627246000000,,Ajaccio,28593,observation-363b6c2b-e225-4eb1-9548-5023c49b779f-2,https://biolit.fr/observations/observation-363b6c2b-e225-4eb1-9548-5023c49b779f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo1685526797.jpeg,,FALSE, +N1,58520,sortie-650cffda-f831-49e7-965e-194d63e04f3b,https://biolit.fr/sorties/sortie-650cffda-f831-49e7-965e-194d63e04f3b/,fabien.allemand@totalenergies.com,,5/20/2023 0:00,16.0000000,17.0000000,43.32863600000,5.083112000000,,"Anse de Boumandariel, Martigues (13)",28595,observation-650cffda-f831-49e7-965e-194d63e04f3b,https://biolit.fr/observations/observation-650cffda-f831-49e7-965e-194d63e04f3b/,,,,https://biolit.fr/wp-content/uploads/2023/07/230520-13_AnseBoumandariel_x6746_Posidonies & Padine Padina pavonica_DxO-scaled.jpg,,FALSE, +N1,58520,sortie-650cffda-f831-49e7-965e-194d63e04f3b,https://biolit.fr/sorties/sortie-650cffda-f831-49e7-965e-194d63e04f3b/,fabien.allemand@totalenergies.com,,5/20/2023 0:00,16.0000000,17.0000000,43.32863600000,5.083112000000,,"Anse de Boumandariel, Martigues (13)",28597,observation-650cffda-f831-49e7-965e-194d63e04f3b-2,https://biolit.fr/observations/observation-650cffda-f831-49e7-965e-194d63e04f3b-2/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/230520-13_AnseBoumandariel_x6742_Petelle & moules Mytilus galloprovincialis_DxO-scaled.jpg,,TRUE, +N1,58520,sortie-650cffda-f831-49e7-965e-194d63e04f3b,https://biolit.fr/sorties/sortie-650cffda-f831-49e7-965e-194d63e04f3b/,fabien.allemand@totalenergies.com,,5/20/2023 0:00,16.0000000,17.0000000,43.32863600000,5.083112000000,,"Anse de Boumandariel, Martigues (13)",28599,observation-650cffda-f831-49e7-965e-194d63e04f3b-3,https://biolit.fr/observations/observation-650cffda-f831-49e7-965e-194d63e04f3b-3/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/230520-13_AnseBoumandariel_x6741_Gibbule toupie Phorcus turbinatus_DxO-scaled.jpg,,TRUE, +N1,58520,sortie-650cffda-f831-49e7-965e-194d63e04f3b,https://biolit.fr/sorties/sortie-650cffda-f831-49e7-965e-194d63e04f3b/,fabien.allemand@totalenergies.com,,5/20/2023 0:00,16.0000000,17.0000000,43.32863600000,5.083112000000,,"Anse de Boumandariel, Martigues (13)",28601,observation-650cffda-f831-49e7-965e-194d63e04f3b-4,https://biolit.fr/observations/observation-650cffda-f831-49e7-965e-194d63e04f3b-4/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/230520-13_AnseBoumandariel_x6740_Gibbule et patelles Patella sp_DxO-scaled.jpg,,TRUE, +N1,58520,sortie-650cffda-f831-49e7-965e-194d63e04f3b,https://biolit.fr/sorties/sortie-650cffda-f831-49e7-965e-194d63e04f3b/,fabien.allemand@totalenergies.com,,5/20/2023 0:00,16.0000000,17.0000000,43.32863600000,5.083112000000,,"Anse de Boumandariel, Martigues (13)",28603,observation-650cffda-f831-49e7-965e-194d63e04f3b-5,https://biolit.fr/observations/observation-650cffda-f831-49e7-965e-194d63e04f3b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/230520-13_AnseBoumandariel_x6738_Etrille commune Necora puber_DxO-scaled.jpg,,FALSE, +N1,58520,sortie-650cffda-f831-49e7-965e-194d63e04f3b,https://biolit.fr/sorties/sortie-650cffda-f831-49e7-965e-194d63e04f3b/,fabien.allemand@totalenergies.com,,5/20/2023 0:00,16.0000000,17.0000000,43.32863600000,5.083112000000,,"Anse de Boumandariel, Martigues (13)",28605,observation-650cffda-f831-49e7-965e-194d63e04f3b-6,https://biolit.fr/observations/observation-650cffda-f831-49e7-965e-194d63e04f3b-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/230520-13_AnseBoumandariel_x6737_A identifier_DxO-scaled.jpg,,FALSE, +N1,58520,sortie-650cffda-f831-49e7-965e-194d63e04f3b,https://biolit.fr/sorties/sortie-650cffda-f831-49e7-965e-194d63e04f3b/,fabien.allemand@totalenergies.com,,5/20/2023 0:00,16.0000000,17.0000000,43.32863600000,5.083112000000,,"Anse de Boumandariel, Martigues (13)",28607,observation-650cffda-f831-49e7-965e-194d63e04f3b-7,https://biolit.fr/observations/observation-650cffda-f831-49e7-965e-194d63e04f3b-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/230520-13_AnseBoumandariel_x6733_DxO-scaled.jpg,,FALSE, +N1,58521,sortie-b1968df7-c524-4e6d-b06f-82bed50946df,https://biolit.fr/sorties/sortie-b1968df7-c524-4e6d-b06f-82bed50946df/,Marine,,5/24/2023 0:00,13.0000000,14.0:45,46.146676000000,-1.209353000000,Planète Mer,Chef de baie,28609,observation-b1968df7-c524-4e6d-b06f-82bed50946df,https://biolit.fr/observations/observation-b1968df7-c524-4e6d-b06f-82bed50946df/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230524_134802_6xsf0uFU8w.jpeg,,TRUE, +N1,58521,sortie-b1968df7-c524-4e6d-b06f-82bed50946df,https://biolit.fr/sorties/sortie-b1968df7-c524-4e6d-b06f-82bed50946df/,Marine,,5/24/2023 0:00,13.0000000,14.0:45,46.146676000000,-1.209353000000,Planète Mer,Chef de baie,28611,observation-b1968df7-c524-4e6d-b06f-82bed50946df-2,https://biolit.fr/observations/observation-b1968df7-c524-4e6d-b06f-82bed50946df-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230524_134437_z4qDijQR48.jpeg,,TRUE, +N1,58521,sortie-b1968df7-c524-4e6d-b06f-82bed50946df,https://biolit.fr/sorties/sortie-b1968df7-c524-4e6d-b06f-82bed50946df/,Marine,,5/24/2023 0:00,13.0000000,14.0:45,46.146676000000,-1.209353000000,Planète Mer,Chef de baie,28613,observation-b1968df7-c524-4e6d-b06f-82bed50946df-3,https://biolit.fr/observations/observation-b1968df7-c524-4e6d-b06f-82bed50946df-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230524_135255_8ieW4RQs9k.jpeg,,FALSE, +N1,58521,sortie-b1968df7-c524-4e6d-b06f-82bed50946df,https://biolit.fr/sorties/sortie-b1968df7-c524-4e6d-b06f-82bed50946df/,Marine,,5/24/2023 0:00,13.0000000,14.0:45,46.146676000000,-1.209353000000,Planète Mer,Chef de baie,28615,observation-b1968df7-c524-4e6d-b06f-82bed50946df-4,https://biolit.fr/observations/observation-b1968df7-c524-4e6d-b06f-82bed50946df-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230524_135247_svQ17gE847.jpeg,,FALSE, +N1,58521,sortie-b1968df7-c524-4e6d-b06f-82bed50946df,https://biolit.fr/sorties/sortie-b1968df7-c524-4e6d-b06f-82bed50946df/,Marine,,5/24/2023 0:00,13.0000000,14.0:45,46.146676000000,-1.209353000000,Planète Mer,Chef de baie,28617,observation-b1968df7-c524-4e6d-b06f-82bed50946df-5,https://biolit.fr/observations/observation-b1968df7-c524-4e6d-b06f-82bed50946df-5/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230524_145100-scaled.jpg,,TRUE, +N1,58521,sortie-b1968df7-c524-4e6d-b06f-82bed50946df,https://biolit.fr/sorties/sortie-b1968df7-c524-4e6d-b06f-82bed50946df/,Marine,,5/24/2023 0:00,13.0000000,14.0:45,46.146676000000,-1.209353000000,Planète Mer,Chef de baie,28619,observation-b1968df7-c524-4e6d-b06f-82bed50946df-6,https://biolit.fr/observations/observation-b1968df7-c524-4e6d-b06f-82bed50946df-6/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230524_134417-scaled.jpg,,TRUE, +N1,58522,sortie-3e385f60-2a07-460e-b531-afe89d49d383,https://biolit.fr/sorties/sortie-3e385f60-2a07-460e-b531-afe89d49d383/,Marine,,5/19/2023 0:00,16.0000000,16.0000000,46.147898000000,-1.210709000000,,Chef de baie,28621,observation-3e385f60-2a07-460e-b531-afe89d49d383,https://biolit.fr/observations/observation-3e385f60-2a07-460e-b531-afe89d49d383/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230519_161025_compress43-scaled.jpg,,TRUE, +N1,58522,sortie-3e385f60-2a07-460e-b531-afe89d49d383,https://biolit.fr/sorties/sortie-3e385f60-2a07-460e-b531-afe89d49d383/,Marine,,5/19/2023 0:00,16.0000000,16.0000000,46.147898000000,-1.210709000000,,Chef de baie,28623,observation-3e385f60-2a07-460e-b531-afe89d49d383-2,https://biolit.fr/observations/observation-3e385f60-2a07-460e-b531-afe89d49d383-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230519_161001_compress40-scaled.jpg,,FALSE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28625,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,,,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-89-min.jpg,,FALSE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28627,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-2,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-88-min.jpg,,FALSE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28629,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-3,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-87-min.jpg,,FALSE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28631,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-4,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-85-min.jpg,,FALSE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28633,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-5,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-31-min.jpg,,FALSE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28635,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-6,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-30-min.jpg,,FALSE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28637,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-7,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-73-min.jpg,,FALSE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28639,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-8,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-8/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-82-min.jpg,,TRUE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28641,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-9,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-9/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-80-min.jpg,,TRUE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28643,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-10,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-10/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-79-min.jpg,,TRUE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28645,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-11,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-11/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-78-min.jpg,,TRUE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28647,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-12,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-12/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-70-min.jpg,,TRUE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28649,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-13,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-49-min.jpg,,FALSE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28651,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-14,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-34-min.jpg,,FALSE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28653,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-15,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-23-min.jpg,,FALSE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28655,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-16,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-15-min.jpg,,FALSE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28657,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-17,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-39-scaled.jpg,,FALSE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28659,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-18,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-45-scaled.jpg,,FALSE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28661,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-19,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-71-min.jpg,,FALSE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28663,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-20,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-96-min.jpg,,FALSE, +N1,58524,sortie-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2,https://biolit.fr/sorties/sortie-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2/,merwan.lomri@totalenergies.com,,05/02/2023,11.0000000,14.0000000,47.489725000000,-2.533066000000,,Port Lin,28665,observation-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2,https://biolit.fr/observations/observation-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1704-scaled.jpg,,TRUE, +N1,58524,sortie-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2,https://biolit.fr/sorties/sortie-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2/,merwan.lomri@totalenergies.com,,05/02/2023,11.0000000,14.0000000,47.489725000000,-2.533066000000,,Port Lin,28667,observation-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2-2,https://biolit.fr/observations/observation-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1705-scaled.jpg,,FALSE, +N1,58524,sortie-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2,https://biolit.fr/sorties/sortie-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2/,merwan.lomri@totalenergies.com,,05/02/2023,11.0000000,14.0000000,47.489725000000,-2.533066000000,,Port Lin,28669,observation-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2-3,https://biolit.fr/observations/observation-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1707-scaled.jpg,,FALSE, +N1,58524,sortie-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2,https://biolit.fr/sorties/sortie-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2/,merwan.lomri@totalenergies.com,,05/02/2023,11.0000000,14.0000000,47.489725000000,-2.533066000000,,Port Lin,28671,observation-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2-4,https://biolit.fr/observations/observation-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2-4/,Pelvetia canaliculata,Pelvétie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1718-scaled.jpg,,TRUE, +N1,58524,sortie-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2,https://biolit.fr/sorties/sortie-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2/,merwan.lomri@totalenergies.com,,05/02/2023,11.0000000,14.0000000,47.489725000000,-2.533066000000,,Port Lin,28673,observation-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2-5,https://biolit.fr/observations/observation-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1737-rotated.jpg,,FALSE, +N1,58525,sortie-e00c8f75-b850-4af2-a274-bff61cbcd05c,https://biolit.fr/sorties/sortie-e00c8f75-b850-4af2-a274-bff61cbcd05c/,Lexton,,4/20/2023 0:00,13.000005,13.0:25,48.287440000000,-4.507337000000,,"Crozon, Le Fret",28674,observation-e00c8f75-b850-4af2-a274-bff61cbcd05c,https://biolit.fr/observations/observation-e00c8f75-b850-4af2-a274-bff61cbcd05c/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230420_132222 Bourse de mer Codium bursa Algue verte-scaled.jpg,,FALSE, +N1,58526,sortie-fea3bf94-a243-4139-89b5-0f8d166e68c7,https://biolit.fr/sorties/sortie-fea3bf94-a243-4139-89b5-0f8d166e68c7/,Lexton,,4/20/2023 0:00,13.0000000,13.0:45,48.286996000000,-4.507283000000,,"Crozon, Le Fret",28676,observation-fea3bf94-a243-4139-89b5-0f8d166e68c7,https://biolit.fr/observations/observation-fea3bf94-a243-4139-89b5-0f8d166e68c7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230420_134539 Lièvre de mer Aplysia punctata-scaled.jpg,,FALSE, +N1,58527,sortie-2d476366-9262-46b3-9565-c242e294628d,https://biolit.fr/sorties/sortie-2d476366-9262-46b3-9565-c242e294628d/,Céline,,4/28/2023 0:00,15.0000000,16.0000000,43.3213330000,6.664951000000,,Plage de la nartelle Sainte Maxime,28678,observation-2d476366-9262-46b3-9565-c242e294628d,https://biolit.fr/observations/observation-2d476366-9262-46b3-9565-c242e294628d/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/velelles.jpg,,TRUE, +N1,58527,sortie-2d476366-9262-46b3-9565-c242e294628d,https://biolit.fr/sorties/sortie-2d476366-9262-46b3-9565-c242e294628d/,Céline,,4/28/2023 0:00,15.0000000,16.0000000,43.3213330000,6.664951000000,,Plage de la nartelle Sainte Maxime,28680,observation-2d476366-9262-46b3-9565-c242e294628d-2,https://biolit.fr/observations/observation-2d476366-9262-46b3-9565-c242e294628d-2/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Sabot de Venus.jpg,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28682,observation-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita_13.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28684,observation-e3240bd6-2e92-48e3-9e70-755495d00843-2,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_26.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28686,observation-e3240bd6-2e92-48e3-9e70-755495d00843-3,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue sp_3.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28688,observation-e3240bd6-2e92-48e3-9e70-755495d00843-4,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-4/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomium eppiphium.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28690,observation-e3240bd6-2e92-48e3-9e70-755495d00843-5,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-5/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/Armeria maritima_1.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28692,observation-e3240bd6-2e92-48e3-9e70-755495d00843-6,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/ascidie sp_9.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28694,observation-e3240bd6-2e92-48e3-9e70-755495d00843-7,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-7/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/Ascophyllum nodosum_2.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28696,observation-e3240bd6-2e92-48e3-9e70-755495d00843-8,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-8/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_25.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28698,observation-e3240bd6-2e92-48e3-9e70-755495d00843-9,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-9/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_30.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28700,observation-e3240bd6-2e92-48e3-9e70-755495d00843-10,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-10/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_17.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28702,observation-e3240bd6-2e92-48e3-9e70-755495d00843-11,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-11/,Atriplex halimus,Arroche marine,,https://biolit.fr/wp-content/uploads/2023/07/Atriplex marimus.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28704,observation-e3240bd6-2e92-48e3-9e70-755495d00843-12,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-12/,Bittium reticulatum,Cérithe réticulé,,https://biolit.fr/wp-content/uploads/2023/07/Bittium reticulatum.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28706,observation-e3240bd6-2e92-48e3-9e70-755495d00843-13,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-13/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_19.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28708,observation-e3240bd6-2e92-48e3-9e70-755495d00843-14,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-14/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28709,observation-e3240bd6-2e92-48e3-9e70-755495d00843-15,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Calliactis tuberculata.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28711,observation-e3240bd6-2e92-48e3-9e70-755495d00843-16,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-16/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_28.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28713,observation-e3240bd6-2e92-48e3-9e70-755495d00843-17,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-17/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_25.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28715,observation-e3240bd6-2e92-48e3-9e70-755495d00843-18,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-18/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/Clibanarius erythropus_5.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28717,observation-e3240bd6-2e92-48e3-9e70-755495d00843-19,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/crithmum maritimum.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28719,observation-e3240bd6-2e92-48e3-9e70-755495d00843-20,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-20/,Dysidea fragilis,Eponge mie de pain mouillée,,https://biolit.fr/wp-content/uploads/2023/07/Dysidea fragilis_4.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28721,observation-e3240bd6-2e92-48e3-9e70-755495d00843-21,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/Eolidia sp.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28723,observation-e3240bd6-2e92-48e3-9e70-755495d00843-22,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 1_13.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28725,observation-e3240bd6-2e92-48e3-9e70-755495d00843-23,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_40.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28727,observation-e3240bd6-2e92-48e3-9e70-755495d00843-24,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-24/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/Euphorbia maritimum sp.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28729,observation-e3240bd6-2e92-48e3-9e70-755495d00843-25,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-25/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/Fucus serratus_6.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28731,observation-e3240bd6-2e92-48e3-9e70-755495d00843-26,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-26/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/Fucus vesiculosus_0.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28733,observation-e3240bd6-2e92-48e3-9e70-755495d00843-27,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-27/,Gari depressa,Psammobie déprimée,,https://biolit.fr/wp-content/uploads/2023/07/Gari depressa_14.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28735,observation-e3240bd6-2e92-48e3-9e70-755495d00843-28,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-28/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Gibbula magus_2.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28737,observation-e3240bd6-2e92-48e3-9e70-755495d00843-29,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gobie sp_3.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28739,observation-e3240bd6-2e92-48e3-9e70-755495d00843-30,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/haliotis tuberculata_2.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28741,observation-e3240bd6-2e92-48e3-9e70-755495d00843-31,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/Heteranomia squamula_6.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28743,observation-e3240bd6-2e92-48e3-9e70-755495d00843-32,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-32/,Hiatella arctica,Hiatelle ridée,,https://biolit.fr/wp-content/uploads/2023/07/Hiatella arctica.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28745,observation-e3240bd6-2e92-48e3-9e70-755495d00843-33,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-33/,Isozoanthus sulcatus,Anémone chocolat,,https://biolit.fr/wp-content/uploads/2023/07/Isozoanthus sulcatus_9.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28747,observation-e3240bd6-2e92-48e3-9e70-755495d00843-34,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-34/,Lagurus ovatus,Queue de lièvre,,https://biolit.fr/wp-content/uploads/2023/07/Lagurus ovatus_1.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28749,observation-e3240bd6-2e92-48e3-9e70-755495d00843-35,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona spp.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28751,observation-e3240bd6-2e92-48e3-9e70-755495d00843-36,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-36/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_15.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28753,observation-e3240bd6-2e92-48e3-9e70-755495d00843-37,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-37/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/Lipophrys pholis_3.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28755,observation-e3240bd6-2e92-48e3-9e70-755495d00843-38,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-38/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lithophyllum incrustans_0.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28757,observation-e3240bd6-2e92-48e3-9e70-755495d00843-39,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-39/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_16.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28759,observation-e3240bd6-2e92-48e3-9e70-755495d00843-40,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-40/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina obtusata_4.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28761,observation-e3240bd6-2e92-48e3-9e70-755495d00843-41,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-41/,Lomentaria articulata,Algue saucisson,,https://biolit.fr/wp-content/uploads/2023/07/Lomentaria articulata_4.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28763,observation-e3240bd6-2e92-48e3-9e70-755495d00843-42,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-42/,Lutraria magna,Grande lutraire,,https://biolit.fr/wp-content/uploads/2023/07/Lutraria oblonga_0.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28765,observation-e3240bd6-2e92-48e3-9e70-755495d00843-43,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-43/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_34.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28767,observation-e3240bd6-2e92-48e3-9e70-755495d00843-44,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-44/,Metridium senile,Œillet de mer,,https://biolit.fr/wp-content/uploads/2023/07/metridium senile pe.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28769,observation-e3240bd6-2e92-48e3-9e70-755495d00843-45,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-45/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia_16.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28771,observation-e3240bd6-2e92-48e3-9e70-755495d00843-46,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-46/,Modiolus barbatus,Modiole barbue,,https://biolit.fr/wp-content/uploads/2023/07/Modiola barbatus.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28773,observation-e3240bd6-2e92-48e3-9e70-755495d00843-47,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-47/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_21.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28775,observation-e3240bd6-2e92-48e3-9e70-755495d00843-48,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-48/,,,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_24.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28777,observation-e3240bd6-2e92-48e3-9e70-755495d00843-49,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-49/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_25.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28779,observation-e3240bd6-2e92-48e3-9e70-755495d00843-50,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-50/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebra erinaceus_8.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28781,observation-e3240bd6-2e92-48e3-9e70-755495d00843-51,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-51/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ophiothrix sp_4.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28783,observation-e3240bd6-2e92-48e3-9e70-755495d00843-52,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-52/,,,,https://biolit.fr/wp-content/uploads/2023/07/Osilinus lineatus.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28785,observation-e3240bd6-2e92-48e3-9e70-755495d00843-53,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-53/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/Osmundea pinnitafida.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28787,observation-e3240bd6-2e92-48e3-9e70-755495d00843-54,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-54/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/Palaemon elegans.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28789,observation-e3240bd6-2e92-48e3-9e70-755495d00843-55,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-55/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Paracentrotus lividus_8.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28791,observation-e3240bd6-2e92-48e3-9e70-755495d00843-56,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-56/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patella intermedia.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28793,observation-e3240bd6-2e92-48e3-9e70-755495d00843-57,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-57/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/07/Patella vulgata_2.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28795,observation-e3240bd6-2e92-48e3-9e70-755495d00843-58,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-58/,,,,https://biolit.fr/wp-content/uploads/2023/05/Pelvetia caniculata-scaled.jpg,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28796,observation-e3240bd6-2e92-48e3-9e70-755495d00843-59,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-59/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/Perforatus perforatus_2.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28798,observation-e3240bd6-2e92-48e3-9e70-755495d00843-60,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-60/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/Pisidia longicornis_14.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28800,observation-e3240bd6-2e92-48e3-9e70-755495d00843-61,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-61/,,,,https://biolit.fr/wp-content/uploads/2023/07/Plante sp 2.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28802,observation-e3240bd6-2e92-48e3-9e70-755495d00843-62,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-62/,,,,https://biolit.fr/wp-content/uploads/2023/07/Plante sp 3.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28804,observation-e3240bd6-2e92-48e3-9e70-755495d00843-63,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-63/,,,,https://biolit.fr/wp-content/uploads/2023/07/Plante sp 4.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28806,observation-e3240bd6-2e92-48e3-9e70-755495d00843-64,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-64/,,,,https://biolit.fr/wp-content/uploads/2023/07/Plante sp 5.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28808,observation-e3240bd6-2e92-48e3-9e70-755495d00843-65,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-65/,,,,https://biolit.fr/wp-content/uploads/2023/07/plante sp_0.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28810,observation-e3240bd6-2e92-48e3-9e70-755495d00843-66,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-66/,,,,https://biolit.fr/wp-content/uploads/2023/07/plante sp1.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28812,observation-e3240bd6-2e92-48e3-9e70-755495d00843-67,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-67/,,,,https://biolit.fr/wp-content/uploads/2023/07/Plante sp6.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28814,observation-e3240bd6-2e92-48e3-9e70-755495d00843-68,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-68/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pleurobrachia pileus.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28816,observation-e3240bd6-2e92-48e3-9e70-755495d00843-69,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-69/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ponte gastéro.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28818,observation-e3240bd6-2e92-48e3-9e70-755495d00843-70,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-70/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/porcellana platycheles_7.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28820,observation-e3240bd6-2e92-48e3-9e70-755495d00843-71,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-71/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_34.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28822,observation-e3240bd6-2e92-48e3-9e70-755495d00843-72,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-72/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pycnogonide sp_3.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28824,observation-e3240bd6-2e92-48e3-9e70-755495d00843-73,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-73/,,,,https://biolit.fr/wp-content/uploads/2023/07/Raphanus raphanistrum.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28826,observation-e3240bd6-2e92-48e3-9e70-755495d00843-74,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-74/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes decussatus_5.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28828,observation-e3240bd6-2e92-48e3-9e70-755495d00843-75,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-75/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes phlippinarum.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28830,observation-e3240bd6-2e92-48e3-9e70-755495d00843-76,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-76/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sedum acre_0.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28832,observation-e3240bd6-2e92-48e3-9e70-755495d00843-77,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-77/,,,,https://biolit.fr/wp-content/uploads/2023/07/Spirobranchus triqueter_2.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28834,observation-e3240bd6-2e92-48e3-9e70-755495d00843-78,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-78/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Steromphala umbilicalis_6.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28836,observation-e3240bd6-2e92-48e3-9e70-755495d00843-79,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-79/,Tectura virginea,Acmée à damier rose,,https://biolit.fr/wp-content/uploads/2023/07/Tectura virginea_1.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28838,observation-e3240bd6-2e92-48e3-9e70-755495d00843-80,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-80/,,,,https://biolit.fr/wp-content/uploads/2023/07/Terpios gelatinosus_0.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28840,observation-e3240bd6-2e92-48e3-9e70-755495d00843-81,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-81/,,,,https://biolit.fr/wp-content/uploads/2023/07/Venerupis aurea_5.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28842,observation-e3240bd6-2e92-48e3-9e70-755495d00843-82,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-82/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/venus verrucosa échouage.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28844,observation-e3240bd6-2e92-48e3-9e70-755495d00843-83,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-83/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa_13.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28846,observation-e3240bd6-2e92-48e3-9e70-755495d00843-84,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-84/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_25.PNG,,TRUE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28848,observation-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38/,,,,https://biolit.fr/wp-content/uploads/2023/07/meduse-scaled.jpg,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28849,observation-2c2203d3-727c-4b05-a47a-e74027266d38-2,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Meduse2.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28851,observation-2c2203d3-727c-4b05-a47a-e74027266d38-3,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0200_0.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28853,observation-2c2203d3-727c-4b05-a47a-e74027266d38-4,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-4/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_0201_2.JPG,,TRUE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28855,observation-2c2203d3-727c-4b05-a47a-e74027266d38-5,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-5/,",",,https://biolit.fr/wp-content/uploads/2023/07/DSC_0208_2.JPG,,FALSE,, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28857,observation-2c2203d3-727c-4b05-a47a-e74027266d38-6,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0212_0.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28859,observation-2c2203d3-727c-4b05-a47a-e74027266d38-7,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0211.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28861,observation-2c2203d3-727c-4b05-a47a-e74027266d38-8,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0210.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28863,observation-2c2203d3-727c-4b05-a47a-e74027266d38-9,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0209.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28865,observation-2c2203d3-727c-4b05-a47a-e74027266d38-10,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0214_0.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28867,observation-2c2203d3-727c-4b05-a47a-e74027266d38-11,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0213.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28869,observation-2c2203d3-727c-4b05-a47a-e74027266d38-12,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0223_0.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28871,observation-2c2203d3-727c-4b05-a47a-e74027266d38-13,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230422_112348-rotated.jpg,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28873,observation-2c2203d3-727c-4b05-a47a-e74027266d38-14,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0226_0.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28875,observation-2c2203d3-727c-4b05-a47a-e74027266d38-15,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1580-rotated.jpg,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28877,observation-2c2203d3-727c-4b05-a47a-e74027266d38-16,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0231.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28879,observation-2c2203d3-727c-4b05-a47a-e74027266d38-17,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0217_0.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28881,observation-2c2203d3-727c-4b05-a47a-e74027266d38-18,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0230_0.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28883,observation-2c2203d3-727c-4b05-a47a-e74027266d38-19,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0229.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28885,observation-2c2203d3-727c-4b05-a47a-e74027266d38-20,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0234_0.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28887,observation-2c2203d3-727c-4b05-a47a-e74027266d38-21,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0242.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28889,observation-2c2203d3-727c-4b05-a47a-e74027266d38-22,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0243.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28891,observation-2c2203d3-727c-4b05-a47a-e74027266d38-23,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0239.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28893,observation-2c2203d3-727c-4b05-a47a-e74027266d38-24,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0241_0.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28895,observation-2c2203d3-727c-4b05-a47a-e74027266d38-25,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0245.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28897,observation-2c2203d3-727c-4b05-a47a-e74027266d38-26,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0246.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28899,observation-2c2203d3-727c-4b05-a47a-e74027266d38-27,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0247.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28901,observation-2c2203d3-727c-4b05-a47a-e74027266d38-28,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0252.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28903,observation-2c2203d3-727c-4b05-a47a-e74027266d38-29,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0251.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28905,observation-2c2203d3-727c-4b05-a47a-e74027266d38-30,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0253.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28907,observation-2c2203d3-727c-4b05-a47a-e74027266d38-31,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0254.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28909,observation-2c2203d3-727c-4b05-a47a-e74027266d38-32,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1444.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28911,observation-2c2203d3-727c-4b05-a47a-e74027266d38-33,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1443-rotated.jpg,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28913,observation-2c2203d3-727c-4b05-a47a-e74027266d38-34,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1449-rotated.jpg,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28915,observation-2c2203d3-727c-4b05-a47a-e74027266d38-35,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1448.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28917,observation-2c2203d3-727c-4b05-a47a-e74027266d38-36,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-36/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1518.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28919,observation-2c2203d3-727c-4b05-a47a-e74027266d38-37,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1519.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28921,observation-2c2203d3-727c-4b05-a47a-e74027266d38-38,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-38/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1546.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28923,observation-2c2203d3-727c-4b05-a47a-e74027266d38-39,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-39/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1549.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28925,observation-2c2203d3-727c-4b05-a47a-e74027266d38-40,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-40/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1561.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28927,observation-2c2203d3-727c-4b05-a47a-e74027266d38-41,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-41/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1566.JPG,,TRUE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28929,observation-2c2203d3-727c-4b05-a47a-e74027266d38-42,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-42/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1570.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28931,observation-2c2203d3-727c-4b05-a47a-e74027266d38-43,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-43/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1591-rotated.jpg,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28933,observation-2c2203d3-727c-4b05-a47a-e74027266d38-44,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-44/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1604.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28935,observation-2c2203d3-727c-4b05-a47a-e74027266d38-45,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-45/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1610.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28937,observation-2c2203d3-727c-4b05-a47a-e74027266d38-46,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-46/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1616.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28939,observation-2c2203d3-727c-4b05-a47a-e74027266d38-47,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-47/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1620-rotated.jpg,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28941,observation-2c2203d3-727c-4b05-a47a-e74027266d38-48,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-48/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1625.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28943,observation-2c2203d3-727c-4b05-a47a-e74027266d38-49,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-49/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1653-rotated.jpg,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28945,observation-2c2203d3-727c-4b05-a47a-e74027266d38-50,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-50/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1652.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28947,observation-2c2203d3-727c-4b05-a47a-e74027266d38-51,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-51/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1657.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28949,observation-2c2203d3-727c-4b05-a47a-e74027266d38-52,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-52/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0258.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28951,observation-2c2203d3-727c-4b05-a47a-e74027266d38-53,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-53/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0257.JPG,,FALSE, +N1,58530,sortie-c903631a-2345-4fd5-821a-61900e54611d,https://biolit.fr/sorties/sortie-c903631a-2345-4fd5-821a-61900e54611d/,julien.queinnec@gmail.com,,03/12/2023,15.0000000,15.0:45,47.474013000000,-2.489252000000,,Penestin,28953,observation-c903631a-2345-4fd5-821a-61900e54611d,https://biolit.fr/observations/observation-c903631a-2345-4fd5-821a-61900e54611d/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/20230312_143006-scaled.jpg,,TRUE, +N1,58530,sortie-c903631a-2345-4fd5-821a-61900e54611d,https://biolit.fr/sorties/sortie-c903631a-2345-4fd5-821a-61900e54611d/,julien.queinnec@gmail.com,,03/12/2023,15.0000000,15.0:45,47.474013000000,-2.489252000000,,Penestin,28955,observation-c903631a-2345-4fd5-821a-61900e54611d-2,https://biolit.fr/observations/observation-c903631a-2345-4fd5-821a-61900e54611d-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20230312_144853-scaled.jpg,,TRUE, +N1,58530,sortie-c903631a-2345-4fd5-821a-61900e54611d,https://biolit.fr/sorties/sortie-c903631a-2345-4fd5-821a-61900e54611d/,julien.queinnec@gmail.com,,03/12/2023,15.0000000,15.0:45,47.474013000000,-2.489252000000,,Penestin,28957,observation-c903631a-2345-4fd5-821a-61900e54611d-3,https://biolit.fr/observations/observation-c903631a-2345-4fd5-821a-61900e54611d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230312_145454-scaled.jpg,,FALSE, +N1,58531,sortie-66d1c5ab-630f-4573-854c-9eb74dc4c019,https://biolit.fr/sorties/sortie-66d1c5ab-630f-4573-854c-9eb74dc4c019/,Alain Denniel,,03/05/2023,8.0000000,9.0000000,47.333025000000,-2.488828000000,,Marais salants de Guérande,28959,observation-66d1c5ab-630f-4573-854c-9eb74dc4c019,https://biolit.fr/observations/observation-66d1c5ab-630f-4573-854c-9eb74dc4c019/,,,,https://biolit.fr/wp-content/uploads/2023/07/_DSC1206-01_2.jpg,,FALSE, +N1,58531,sortie-66d1c5ab-630f-4573-854c-9eb74dc4c019,https://biolit.fr/sorties/sortie-66d1c5ab-630f-4573-854c-9eb74dc4c019/,Alain Denniel,,03/05/2023,8.0000000,9.0000000,47.333025000000,-2.488828000000,,Marais salants de Guérande,28961,observation-66d1c5ab-630f-4573-854c-9eb74dc4c019-2,https://biolit.fr/observations/observation-66d1c5ab-630f-4573-854c-9eb74dc4c019-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/_DSC1161_2-scaled.jpg,,FALSE, +N1,58531,sortie-66d1c5ab-630f-4573-854c-9eb74dc4c019,https://biolit.fr/sorties/sortie-66d1c5ab-630f-4573-854c-9eb74dc4c019/,Alain Denniel,,03/05/2023,8.0000000,9.0000000,47.333025000000,-2.488828000000,,Marais salants de Guérande,28963,observation-66d1c5ab-630f-4573-854c-9eb74dc4c019-3,https://biolit.fr/observations/observation-66d1c5ab-630f-4573-854c-9eb74dc4c019-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/_DSC1158_2.jpg,,FALSE, +N1,58532,sortie-c6b6f6c9-0933-48f7-a894-7b1f8db7ccc3,https://biolit.fr/sorties/sortie-c6b6f6c9-0933-48f7-a894-7b1f8db7ccc3/,RIEM,,4/17/2023 0:00,10.0000000,10.0:45,47.587152000000,-2.874308000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Golfe du Morbihan - Ile aux moines -Creizic,28965,observation-c6b6f6c9-0933-48f7-a894-7b1f8db7ccc3,https://biolit.fr/observations/observation-c6b6f6c9-0933-48f7-a894-7b1f8db7ccc3/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/os de seiche_0.jpg,,TRUE, +N1,58533,sortie-182c1d37-9f0e-4d72-8259-559be6b654c0,https://biolit.fr/sorties/sortie-182c1d37-9f0e-4d72-8259-559be6b654c0/,philippe.solans@totalenergies.com,,04/07/2023,11.0000000,12.0000000,43.409209000000,-1.636440000000,,Erromardie Plage,28967,observation-182c1d37-9f0e-4d72-8259-559be6b654c0,https://biolit.fr/observations/observation-182c1d37-9f0e-4d72-8259-559be6b654c0/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/concombreMer-scaled.jpg,,TRUE, +N1,58533,sortie-182c1d37-9f0e-4d72-8259-559be6b654c0,https://biolit.fr/sorties/sortie-182c1d37-9f0e-4d72-8259-559be6b654c0/,philippe.solans@totalenergies.com,,04/07/2023,11.0000000,12.0000000,43.409209000000,-1.636440000000,,Erromardie Plage,28969,observation-182c1d37-9f0e-4d72-8259-559be6b654c0-2,https://biolit.fr/observations/observation-182c1d37-9f0e-4d72-8259-559be6b654c0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabe1-scaled.jpg,,FALSE, +N1,58533,sortie-182c1d37-9f0e-4d72-8259-559be6b654c0,https://biolit.fr/sorties/sortie-182c1d37-9f0e-4d72-8259-559be6b654c0/,philippe.solans@totalenergies.com,,04/07/2023,11.0000000,12.0000000,43.409209000000,-1.636440000000,,Erromardie Plage,28971,observation-182c1d37-9f0e-4d72-8259-559be6b654c0-3,https://biolit.fr/observations/observation-182c1d37-9f0e-4d72-8259-559be6b654c0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabe2_0-scaled.jpg,,FALSE, +N1,58534,sortie-606af2f1-009c-45d5-971a-2ac947592682,https://biolit.fr/sorties/sortie-606af2f1-009c-45d5-971a-2ac947592682/,philippe.solans@totalenergies.com,,04/07/2023,10.0000000,11.0000000,43.414174000000,-1.628061000000,,Lafitenia,28973,observation-606af2f1-009c-45d5-971a-2ac947592682,https://biolit.fr/observations/observation-606af2f1-009c-45d5-971a-2ac947592682/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/sabotVenus-scaled.jpg,,TRUE, +N1,58534,sortie-606af2f1-009c-45d5-971a-2ac947592682,https://biolit.fr/sorties/sortie-606af2f1-009c-45d5-971a-2ac947592682/,philippe.solans@totalenergies.com,,04/07/2023,10.0000000,11.0000000,43.414174000000,-1.628061000000,,Lafitenia,28975,observation-606af2f1-009c-45d5-971a-2ac947592682-2,https://biolit.fr/observations/observation-606af2f1-009c-45d5-971a-2ac947592682-2/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/sabotVenus2-scaled.jpg,,TRUE, +N1,58534,sortie-606af2f1-009c-45d5-971a-2ac947592682,https://biolit.fr/sorties/sortie-606af2f1-009c-45d5-971a-2ac947592682/,philippe.solans@totalenergies.com,,04/07/2023,10.0000000,11.0000000,43.414174000000,-1.628061000000,,Lafitenia,28977,observation-606af2f1-009c-45d5-971a-2ac947592682-3,https://biolit.fr/observations/observation-606af2f1-009c-45d5-971a-2ac947592682-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/algueBizarre-min-scaled.jpg,,FALSE, +N1,58535,sortie-62ec6745-507a-43b5-aeec-551b978823cd,https://biolit.fr/sorties/sortie-62ec6745-507a-43b5-aeec-551b978823cd/,philippe.solans@totalenergies.com,,04/07/2023,9.0000000,10.0000000,43.42275600000,-1.619220000000,,Senix plage,28979,observation-62ec6745-507a-43b5-aeec-551b978823cd,https://biolit.fr/observations/observation-62ec6745-507a-43b5-aeec-551b978823cd/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1635-scaled.jpg,,FALSE, +N1,58535,sortie-62ec6745-507a-43b5-aeec-551b978823cd,https://biolit.fr/sorties/sortie-62ec6745-507a-43b5-aeec-551b978823cd/,philippe.solans@totalenergies.com,,04/07/2023,9.0000000,10.0000000,43.42275600000,-1.619220000000,,Senix plage,28981,observation-62ec6745-507a-43b5-aeec-551b978823cd-2,https://biolit.fr/observations/observation-62ec6745-507a-43b5-aeec-551b978823cd-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1638-scaled.jpg,,FALSE, +N1,58535,sortie-62ec6745-507a-43b5-aeec-551b978823cd,https://biolit.fr/sorties/sortie-62ec6745-507a-43b5-aeec-551b978823cd/,philippe.solans@totalenergies.com,,04/07/2023,9.0000000,10.0000000,43.42275600000,-1.619220000000,,Senix plage,28983,observation-62ec6745-507a-43b5-aeec-551b978823cd-3,https://biolit.fr/observations/observation-62ec6745-507a-43b5-aeec-551b978823cd-3/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1642-scaled.jpg,,TRUE, +N1,58535,sortie-62ec6745-507a-43b5-aeec-551b978823cd,https://biolit.fr/sorties/sortie-62ec6745-507a-43b5-aeec-551b978823cd/,philippe.solans@totalenergies.com,,04/07/2023,9.0000000,10.0000000,43.42275600000,-1.619220000000,,Senix plage,28985,observation-62ec6745-507a-43b5-aeec-551b978823cd-4,https://biolit.fr/observations/observation-62ec6745-507a-43b5-aeec-551b978823cd-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/cenitz_algue-min-scaled.jpg,,FALSE, +N1,58536,sortie-11eb6bb9-30cb-450c-8f57-06e6e73a26cc,https://biolit.fr/sorties/sortie-11eb6bb9-30cb-450c-8f57-06e6e73a26cc/,Romuald VIALE - EXPENATURE,,3/22/2023 0:00,9.0000000,12.0000000,43.159091000000,5.620160000000,,La Ciotat,28987,observation-11eb6bb9-30cb-450c-8f57-06e6e73a26cc,https://biolit.fr/observations/observation-11eb6bb9-30cb-450c-8f57-06e6e73a26cc/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230322_114017-scaled.jpg,,FALSE, +N1,58536,sortie-11eb6bb9-30cb-450c-8f57-06e6e73a26cc,https://biolit.fr/sorties/sortie-11eb6bb9-30cb-450c-8f57-06e6e73a26cc/,Romuald VIALE - EXPENATURE,,3/22/2023 0:00,9.0000000,12.0000000,43.159091000000,5.620160000000,,La Ciotat,28989,observation-11eb6bb9-30cb-450c-8f57-06e6e73a26cc-2,https://biolit.fr/observations/observation-11eb6bb9-30cb-450c-8f57-06e6e73a26cc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230322_114011_0-scaled.jpg,,FALSE, +N1,58537,sortie-f49e72a3-cea5-48e2-87be-f1438e0968a8,https://biolit.fr/sorties/sortie-f49e72a3-cea5-48e2-87be-f1438e0968a8/,Romuald VIALE - EXPENATURE,,3/21/2023 0:00,11.0000000,15.0000000,43.163520000000,5.606739000000,,La Ciotat,28991,observation-f49e72a3-cea5-48e2-87be-f1438e0968a8,https://biolit.fr/observations/observation-f49e72a3-cea5-48e2-87be-f1438e0968a8/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_9464.jpeg,,TRUE, +N1,58537,sortie-f49e72a3-cea5-48e2-87be-f1438e0968a8,https://biolit.fr/sorties/sortie-f49e72a3-cea5-48e2-87be-f1438e0968a8/,Romuald VIALE - EXPENATURE,,3/21/2023 0:00,11.0000000,15.0000000,43.163520000000,5.606739000000,,La Ciotat,28993,observation-f49e72a3-cea5-48e2-87be-f1438e0968a8-2,https://biolit.fr/observations/observation-f49e72a3-cea5-48e2-87be-f1438e0968a8-2/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_9465.jpeg,,TRUE, +N1,58537,sortie-f49e72a3-cea5-48e2-87be-f1438e0968a8,https://biolit.fr/sorties/sortie-f49e72a3-cea5-48e2-87be-f1438e0968a8/,Romuald VIALE - EXPENATURE,,3/21/2023 0:00,11.0000000,15.0000000,43.163520000000,5.606739000000,,La Ciotat,28995,observation-f49e72a3-cea5-48e2-87be-f1438e0968a8-3,https://biolit.fr/observations/observation-f49e72a3-cea5-48e2-87be-f1438e0968a8-3/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_9467.jpeg,,TRUE, +N1,58537,sortie-f49e72a3-cea5-48e2-87be-f1438e0968a8,https://biolit.fr/sorties/sortie-f49e72a3-cea5-48e2-87be-f1438e0968a8/,Romuald VIALE - EXPENATURE,,3/21/2023 0:00,11.0000000,15.0000000,43.163520000000,5.606739000000,,La Ciotat,28997,observation-f49e72a3-cea5-48e2-87be-f1438e0968a8-4,https://biolit.fr/observations/observation-f49e72a3-cea5-48e2-87be-f1438e0968a8-4/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_9468.jpeg,,TRUE, +N1,58537,sortie-f49e72a3-cea5-48e2-87be-f1438e0968a8,https://biolit.fr/sorties/sortie-f49e72a3-cea5-48e2-87be-f1438e0968a8/,Romuald VIALE - EXPENATURE,,3/21/2023 0:00,11.0000000,15.0000000,43.163520000000,5.606739000000,,La Ciotat,28999,observation-f49e72a3-cea5-48e2-87be-f1438e0968a8-5,https://biolit.fr/observations/observation-f49e72a3-cea5-48e2-87be-f1438e0968a8-5/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_9469.jpeg,,TRUE, +N1,58538,sortie-3630cbe9-9ceb-49c6-b325-d09b4bc65d8e,https://biolit.fr/sorties/sortie-3630cbe9-9ceb-49c6-b325-d09b4bc65d8e/,Romuald VIALE - EXPENATURE,,3/21/2023 0:00,11.0000000,15.0000000,43.163413000000,5.606765000000,,La Ciotat,29001,observation-3630cbe9-9ceb-49c6-b325-d09b4bc65d8e,https://biolit.fr/observations/observation-3630cbe9-9ceb-49c6-b325-d09b4bc65d8e/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG-9445.JPG,,TRUE, +N1,58539,sortie-10796c24-8da3-439a-b674-3f411c62f9ea,https://biolit.fr/sorties/sortie-10796c24-8da3-439a-b674-3f411c62f9ea/,Agathe Bouet,,1/27/2023 0:00,16.0000000,17.0000000,48.641003000000,-2.111808000000,Planète Mer,Grande Plage de Saint-Lunaire,29003,observation-10796c24-8da3-439a-b674-3f411c62f9ea,https://biolit.fr/observations/observation-10796c24-8da3-439a-b674-3f411c62f9ea/,Aplidium pallidum,Flocon pédonculé blanc,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20230126_154512705-scaled.jpg,,TRUE, +N1,58540,sortie-a9e2099c-ecf3-4e8d-b044-690b2b321d49,https://biolit.fr/sorties/sortie-a9e2099c-ecf3-4e8d-b044-690b2b321d49/,Agathe Bouet,,1/27/2023 0:00,16.0000000,17.0000000,48.642065000000,-2.112189000000,Planète Mer,Grande Plage de Saint-Lunaire,29005,observation-a9e2099c-ecf3-4e8d-b044-690b2b321d49,https://biolit.fr/observations/observation-a9e2099c-ecf3-4e8d-b044-690b2b321d49/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20230126_153638267-scaled.jpg,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29007,observation-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_25.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29009,observation-9167eb0a-c164-4a50-9830-8b7f14941723-2,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea_10.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29011,observation-9167eb0a-c164-4a50-9830-8b7f14941723-3,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algue sp_1.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29013,observation-9167eb0a-c164-4a50-9830-8b7f14941723-4,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_18.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29015,observation-9167eb0a-c164-4a50-9830-8b7f14941723-5,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-5/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/Ascophyllum nodosum_1.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29017,observation-9167eb0a-c164-4a50-9830-8b7f14941723-6,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-6/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_24.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29019,observation-9167eb0a-c164-4a50-9830-8b7f14941723-7,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-7/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/Balanus Perforatus perforatus.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29021,observation-9167eb0a-c164-4a50-9830-8b7f14941723-8,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-8/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_27.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29023,observation-9167eb0a-c164-4a50-9830-8b7f14941723-9,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Corallina officinalis.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29025,observation-9167eb0a-c164-4a50-9830-8b7f14941723-10,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-10/,Corella eumyota,Ascidie cartilagineuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Corella eumyota.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29027,observation-9167eb0a-c164-4a50-9830-8b7f14941723-11,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-11/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crepidula fornicata_9.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29029,observation-9167eb0a-c164-4a50-9830-8b7f14941723-12,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Didemnide sp_0.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29031,observation-9167eb0a-c164-4a50-9830-8b7f14941723-13,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_39.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29033,observation-9167eb0a-c164-4a50-9830-8b7f14941723-14,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-14/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/Fucus serratus_5.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29035,observation-9167eb0a-c164-4a50-9830-8b7f14941723-15,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-15/,Grateloupia turuturu,Grateloupe du Pacifique,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Grateloupia turuturu.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29037,observation-9167eb0a-c164-4a50-9830-8b7f14941723-16,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Heteranomia squamula_5.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29039,observation-9167eb0a-c164-4a50-9830-8b7f14941723-17,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/lepadogaster sp_0.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29041,observation-9167eb0a-c164-4a50-9830-8b7f14941723-18,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona sp_2.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29043,observation-9167eb0a-c164-4a50-9830-8b7f14941723-19,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lithophyllum incrustans.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29045,observation-9167eb0a-c164-4a50-9830-8b7f14941723-20,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-20/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_15.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29047,observation-9167eb0a-c164-4a50-9830-8b7f14941723-21,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-21/,Lomentaria articulata,Algue saucisson,,https://biolit.fr/wp-content/uploads/2023/07/Lomentaria articulata_3.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29049,observation-9167eb0a-c164-4a50-9830-8b7f14941723-22,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/Magallana gigas_0.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29051,observation-9167eb0a-c164-4a50-9830-8b7f14941723-23,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_33.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29053,observation-9167eb0a-c164-4a50-9830-8b7f14941723-24,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/Nassarius reticulatus_1.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29055,observation-9167eb0a-c164-4a50-9830-8b7f14941723-25,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-25/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_23.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29057,observation-9167eb0a-c164-4a50-9830-8b7f14941723-26,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-26/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis lumbriciformis_4.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29059,observation-9167eb0a-c164-4a50-9830-8b7f14941723-27,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-27/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_24.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29061,observation-9167eb0a-c164-4a50-9830-8b7f14941723-28,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-28/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebra erinaceus_7.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29063,observation-9167eb0a-c164-4a50-9830-8b7f14941723-29,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-29/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/Osmundea pinnitifida.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29065,observation-9167eb0a-c164-4a50-9830-8b7f14941723-30,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-30/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/Ostrea edulis_1.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29067,observation-9167eb0a-c164-4a50-9830-8b7f14941723-31,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patella ulyssiponensis pe.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29069,observation-9167eb0a-c164-4a50-9830-8b7f14941723-32,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-32/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/07/Patella vulgata_1.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29071,observation-9167eb0a-c164-4a50-9830-8b7f14941723-33,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/ponte de poisson sp.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29073,observation-9167eb0a-c164-4a50-9830-8b7f14941723-34,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-34/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_29.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29075,observation-9167eb0a-c164-4a50-9830-8b7f14941723-35,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/pylaiella pe.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29077,observation-9167eb0a-c164-4a50-9830-8b7f14941723-36,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-36/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes decussatus_4.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29079,observation-9167eb0a-c164-4a50-9830-8b7f14941723-37,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sabellaria sp.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29081,observation-9167eb0a-c164-4a50-9830-8b7f14941723-38,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-38/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Sepia officinalis_0.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29083,observation-9167eb0a-c164-4a50-9830-8b7f14941723-39,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-39/,,,,https://biolit.fr/wp-content/uploads/2023/07/Spirobrancher triqueter.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29085,observation-9167eb0a-c164-4a50-9830-8b7f14941723-40,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-40/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Steromphala umbilicalis_5.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29087,observation-9167eb0a-c164-4a50-9830-8b7f14941723-41,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-41/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/Urticina felina_7.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29089,observation-9167eb0a-c164-4a50-9830-8b7f14941723-42,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-42/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa_12.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29091,observation-9167eb0a-c164-4a50-9830-8b7f14941723-43,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-43/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Watersipora subatra_11.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29093,observation-9167eb0a-c164-4a50-9830-8b7f14941723-44,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-44/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_24.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29095,observation-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona fascicularis_7.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29097,observation-c70492dc-1491-4102-b005-4b211c17fa09-2,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis.jpg,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29099,observation-c70492dc-1491-4102-b005-4b211c17fa09-3,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-3/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_17.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29101,observation-c70492dc-1491-4102-b005-4b211c17fa09-4,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Anthopluera balii.jpg,,FALSE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29103,observation-c70492dc-1491-4102-b005-4b211c17fa09-5,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-5/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_23.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29105,observation-c70492dc-1491-4102-b005-4b211c17fa09-6,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-6/,Atelecyclus undecimdentatus,Grand crabe circulaire,,https://biolit.fr/wp-content/uploads/2023/07/Atelecyclus undecimdentatus.jpg,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29107,observation-c70492dc-1491-4102-b005-4b211c17fa09-7,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-7/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_16.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29109,observation-c70492dc-1491-4102-b005-4b211c17fa09-8,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-8/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/2023/07/Calliactis parasitica_0.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29111,observation-c70492dc-1491-4102-b005-4b211c17fa09-9,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Calyptreae chinensis_1.PNG,,FALSE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29113,observation-c70492dc-1491-4102-b005-4b211c17fa09-10,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-10/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_1.jpg,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29115,observation-c70492dc-1491-4102-b005-4b211c17fa09-11,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-11/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_13.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29117,observation-c70492dc-1491-4102-b005-4b211c17fa09-12,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-12/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crepidula fornicata_8.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29119,observation-c70492dc-1491-4102-b005-4b211c17fa09-13,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-13/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/doris pseudoargus pe.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29121,observation-c70492dc-1491-4102-b005-4b211c17fa09-14,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-14/,Ensis ensis,Couteau-sabre,,https://biolit.fr/wp-content/uploads/2023/07/ensis ensis.jpg,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29123,observation-c70492dc-1491-4102-b005-4b211c17fa09-15,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-15/,Epitonium clathrus,Scalaire,,https://biolit.fr/wp-content/uploads/2023/07/Epitonium clathrus_0.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29125,observation-c70492dc-1491-4102-b005-4b211c17fa09-16,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-16/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/fucus vesiculosus.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29127,observation-c70492dc-1491-4102-b005-4b211c17fa09-17,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-17/,Gari depressa,Psammobie déprimée,,https://biolit.fr/wp-content/uploads/2023/07/Gari depressa.jpg,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29129,observation-c70492dc-1491-4102-b005-4b211c17fa09-18,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbula maguq.PNG,,FALSE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29131,observation-c70492dc-1491-4102-b005-4b211c17fa09-19,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/Heteranomia squamula_4.PNG,,FALSE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29133,observation-c70492dc-1491-4102-b005-4b211c17fa09-20,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona sp_1.PNG,,FALSE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29135,observation-c70492dc-1491-4102-b005-4b211c17fa09-21,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-21/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_14.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29137,observation-c70492dc-1491-4102-b005-4b211c17fa09-22,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-22/,Lutraria lutraria,Lutraire elliptique,,https://biolit.fr/wp-content/uploads/2023/07/Lutraria lutraria.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29139,observation-c70492dc-1491-4102-b005-4b211c17fa09-23,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-23/,Lutraria magna,Grande lutraire,,https://biolit.fr/wp-content/uploads/2023/07/Lutraria oblonga.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29141,observation-c70492dc-1491-4102-b005-4b211c17fa09-24,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/Macropoda sp_3.PNG,,FALSE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29143,observation-c70492dc-1491-4102-b005-4b211c17fa09-25,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/Magallana gigas.PNG,,FALSE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29145,observation-c70492dc-1491-4102-b005-4b211c17fa09-26,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-26/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia_15.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29147,observation-c70492dc-1491-4102-b005-4b211c17fa09-27,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-27/,Modiolus barbatus,Modiole barbue,,https://biolit.fr/wp-content/uploads/2023/07/Modiolus barbatus_7.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29149,observation-c70492dc-1491-4102-b005-4b211c17fa09-28,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/mytilus edule.PNG,,FALSE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29151,observation-c70492dc-1491-4102-b005-4b211c17fa09-29,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-29/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebra erinaceus_6.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29153,observation-c70492dc-1491-4102-b005-4b211c17fa09-30,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-30/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/Ostrea edulis_0.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29155,observation-c70492dc-1491-4102-b005-4b211c17fa09-31,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-31/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/Pisidia longicornis_13.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29157,observation-c70492dc-1491-4102-b005-4b211c17fa09-32,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-32/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_28.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29159,observation-c70492dc-1491-4102-b005-4b211c17fa09-33,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-33/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_33.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29161,observation-c70492dc-1491-4102-b005-4b211c17fa09-34,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes decussatus_3.PNG,,FALSE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29163,observation-c70492dc-1491-4102-b005-4b211c17fa09-35,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes philipinarum_1.PNG,,FALSE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29165,observation-c70492dc-1491-4102-b005-4b211c17fa09-36,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-36/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Sargassum jap.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29167,observation-c70492dc-1491-4102-b005-4b211c17fa09-37,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/Venerupis aurea_4.PNG,,FALSE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29169,observation-c70492dc-1491-4102-b005-4b211c17fa09-38,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-38/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa_11.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29171,observation-c70492dc-1491-4102-b005-4b211c17fa09-39,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-39/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_24.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29173,observation-c70492dc-1491-4102-b005-4b211c17fa09-40,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-40/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_23.PNG,,TRUE, +N1,58543,sortie-c4a0c593-afd8-4fd6-9608-a55fcfe27fc6,https://biolit.fr/sorties/sortie-c4a0c593-afd8-4fd6-9608-a55fcfe27fc6/,LPO Occitanie (délégation Hérault),,3/22/2023 0:00,7.0000000,11.0000000,43.451102000000,3.809364000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,29175,observation-c4a0c593-afd8-4fd6-9608-a55fcfe27fc6,https://biolit.fr/observations/observation-c4a0c593-afd8-4fd6-9608-a55fcfe27fc6/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/original.jpeg,,TRUE, +N1,58543,sortie-c4a0c593-afd8-4fd6-9608-a55fcfe27fc6,https://biolit.fr/sorties/sortie-c4a0c593-afd8-4fd6-9608-a55fcfe27fc6/,LPO Occitanie (délégation Hérault),,3/22/2023 0:00,7.0000000,11.0000000,43.451102000000,3.809364000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,29177,observation-c4a0c593-afd8-4fd6-9608-a55fcfe27fc6-2,https://biolit.fr/observations/observation-c4a0c593-afd8-4fd6-9608-a55fcfe27fc6-2/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20230322_083548-scaled.jpg,,TRUE, +N1,58543,sortie-c4a0c593-afd8-4fd6-9608-a55fcfe27fc6,https://biolit.fr/sorties/sortie-c4a0c593-afd8-4fd6-9608-a55fcfe27fc6/,LPO Occitanie (délégation Hérault),,3/22/2023 0:00,7.0000000,11.0000000,43.451102000000,3.809364000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,29179,observation-c4a0c593-afd8-4fd6-9608-a55fcfe27fc6-3,https://biolit.fr/observations/observation-c4a0c593-afd8-4fd6-9608-a55fcfe27fc6-3/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20230322_083605-scaled.jpg,,TRUE, +N1,58544,sortie-c13c560d-249f-4e64-9767-be81e1ac9908,https://biolit.fr/sorties/sortie-c13c560d-249f-4e64-9767-be81e1ac9908/,Romuald VIALE - EXPENATURE,,3/22/2023 0:00,9.0000000,12.0000000,43.159064000000,5.620134000000,,La Ciotat,29181,observation-c13c560d-249f-4e64-9767-be81e1ac9908,https://biolit.fr/observations/observation-c13c560d-249f-4e64-9767-be81e1ac9908/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230322_114549-scaled.jpg,,FALSE, +N1,58545,sortie-6a6ea092-4a94-493a-912d-c1dc44e54635,https://biolit.fr/sorties/sortie-6a6ea092-4a94-493a-912d-c1dc44e54635/,Romuald VIALE - EXPENATURE,,3/22/2023 0:00,9.0000000,12.0000000,43.159064000000,5.620117000000,,La Ciotat,29183,observation-6a6ea092-4a94-493a-912d-c1dc44e54635,https://biolit.fr/observations/observation-6a6ea092-4a94-493a-912d-c1dc44e54635/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230322_114011-scaled.jpg,,FALSE, +N1,58546,sortie-23a72e57-314d-4042-b548-e32a68ad8a97,https://biolit.fr/sorties/sortie-23a72e57-314d-4042-b548-e32a68ad8a97/,Pollen,,3/15/2023 0:00,10.0000000,13.0000000,43.2148700000,5.342990000000,Planète Mer,Marseille,29185,observation-23a72e57-314d-4042-b548-e32a68ad8a97,https://biolit.fr/observations/observation-23a72e57-314d-4042-b548-e32a68ad8a97/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230315_105051-scaled.jpg,,FALSE, +N1,58546,sortie-23a72e57-314d-4042-b548-e32a68ad8a97,https://biolit.fr/sorties/sortie-23a72e57-314d-4042-b548-e32a68ad8a97/,Pollen,,3/15/2023 0:00,10.0000000,13.0000000,43.2148700000,5.342990000000,Planète Mer,Marseille,29187,observation-23a72e57-314d-4042-b548-e32a68ad8a97-2,https://biolit.fr/observations/observation-23a72e57-314d-4042-b548-e32a68ad8a97-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230315_105141-scaled.jpg,,FALSE, +N1,58546,sortie-23a72e57-314d-4042-b548-e32a68ad8a97,https://biolit.fr/sorties/sortie-23a72e57-314d-4042-b548-e32a68ad8a97/,Pollen,,3/15/2023 0:00,10.0000000,13.0000000,43.2148700000,5.342990000000,Planète Mer,Marseille,29189,observation-23a72e57-314d-4042-b548-e32a68ad8a97-3,https://biolit.fr/observations/observation-23a72e57-314d-4042-b548-e32a68ad8a97-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230315_105205-scaled.jpg,,FALSE, +N1,58546,sortie-23a72e57-314d-4042-b548-e32a68ad8a97,https://biolit.fr/sorties/sortie-23a72e57-314d-4042-b548-e32a68ad8a97/,Pollen,,3/15/2023 0:00,10.0000000,13.0000000,43.2148700000,5.342990000000,Planète Mer,Marseille,29191,observation-23a72e57-314d-4042-b548-e32a68ad8a97-4,https://biolit.fr/observations/observation-23a72e57-314d-4042-b548-e32a68ad8a97-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230315_105642-scaled.jpg,,FALSE, +N1,58546,sortie-23a72e57-314d-4042-b548-e32a68ad8a97,https://biolit.fr/sorties/sortie-23a72e57-314d-4042-b548-e32a68ad8a97/,Pollen,,3/15/2023 0:00,10.0000000,13.0000000,43.2148700000,5.342990000000,Planète Mer,Marseille,29193,observation-23a72e57-314d-4042-b548-e32a68ad8a97-5,https://biolit.fr/observations/observation-23a72e57-314d-4042-b548-e32a68ad8a97-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230315_105647-scaled.jpg,,FALSE, +N1,58546,sortie-23a72e57-314d-4042-b548-e32a68ad8a97,https://biolit.fr/sorties/sortie-23a72e57-314d-4042-b548-e32a68ad8a97/,Pollen,,3/15/2023 0:00,10.0000000,13.0000000,43.2148700000,5.342990000000,Planète Mer,Marseille,29195,observation-23a72e57-314d-4042-b548-e32a68ad8a97-6,https://biolit.fr/observations/observation-23a72e57-314d-4042-b548-e32a68ad8a97-6/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20230315_105836-scaled.jpg,,TRUE, +N1,58547,sortie-12b30ae0-9288-4c77-b059-7c58e06cbd64,https://biolit.fr/sorties/sortie-12b30ae0-9288-4c77-b059-7c58e06cbd64/,valerie.fab@gmail.com,,2/20/2023 0:00,13.0000000,15.0000000,43.612290000000,7.128002000000,,"Biot, plage de Biot",29197,observation-12b30ae0-9288-4c77-b059-7c58e06cbd64,https://biolit.fr/observations/observation-12b30ae0-9288-4c77-b059-7c58e06cbd64/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_0051-rotated.jpg,,TRUE, +N1,58547,sortie-12b30ae0-9288-4c77-b059-7c58e06cbd64,https://biolit.fr/sorties/sortie-12b30ae0-9288-4c77-b059-7c58e06cbd64/,valerie.fab@gmail.com,,2/20/2023 0:00,13.0000000,15.0000000,43.612290000000,7.128002000000,,"Biot, plage de Biot",29199,observation-12b30ae0-9288-4c77-b059-7c58e06cbd64-2,https://biolit.fr/observations/observation-12b30ae0-9288-4c77-b059-7c58e06cbd64-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0052-rotated.jpg,,FALSE, +N1,58547,sortie-12b30ae0-9288-4c77-b059-7c58e06cbd64,https://biolit.fr/sorties/sortie-12b30ae0-9288-4c77-b059-7c58e06cbd64/,valerie.fab@gmail.com,,2/20/2023 0:00,13.0000000,15.0000000,43.612290000000,7.128002000000,,"Biot, plage de Biot",29201,observation-12b30ae0-9288-4c77-b059-7c58e06cbd64-3,https://biolit.fr/observations/observation-12b30ae0-9288-4c77-b059-7c58e06cbd64-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0116_0-rotated.jpg,,FALSE, +N1,58548,sortie-8518f38a-671e-4856-be3b-7dfa8bbe2b04,https://biolit.fr/sorties/sortie-8518f38a-671e-4856-be3b-7dfa8bbe2b04/,Agathe Bouet,,1/26/2023 0:00,16.0000000,17.0:15,48.640519000000,-2.111220000000,Planète Mer,Grande Plage de Saint-Lunaire,29203,observation-8518f38a-671e-4856-be3b-7dfa8bbe2b04,https://biolit.fr/observations/observation-8518f38a-671e-4856-be3b-7dfa8bbe2b04/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20230126_160250652-scaled.jpg,,TRUE, +N1,58549,sortie-1c19fc5c-3742-42cc-8714-e322da276f9d,https://biolit.fr/sorties/sortie-1c19fc5c-3742-42cc-8714-e322da276f9d/,Agathe Bouet,,1/26/2023 0:00,16.0000000,17.0:15,48.640212000000,-2.111423000000,Planète Mer,Grande Plage de Saint-Lunaire,29205,observation-1c19fc5c-3742-42cc-8714-e322da276f9d,https://biolit.fr/observations/observation-1c19fc5c-3742-42cc-8714-e322da276f9d/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/PXL_20230126_151616915-scaled.jpg,,TRUE, +N1,58550,sortie-203b9d79-fc22-4381-9a3d-c139887c966b,https://biolit.fr/sorties/sortie-203b9d79-fc22-4381-9a3d-c139887c966b/,Agathe Bouet,,1/26/2023 0:00,16.0000000,17.0:15,48.641515000000,-2.11162900000,Planète Mer,Grande Plage de Saint-Lunaire,29207,observation-203b9d79-fc22-4381-9a3d-c139887c966b,https://biolit.fr/observations/observation-203b9d79-fc22-4381-9a3d-c139887c966b/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20230126_151552481-scaled.jpg,,TRUE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29209,observation-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050426-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29211,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-2,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050429_0-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29213,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-3,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050430-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29215,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-4,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050431-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29217,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-5,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050433_0-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29219,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-6,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050434-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29221,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-7,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050435-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29223,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-8,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050436-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29225,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-9,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050437-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29227,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-10,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050438-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29229,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-11,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050439_0-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29231,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-12,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050440-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29233,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-13,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050441-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29235,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-14,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050442-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29237,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-15,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050443_0-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29239,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-16,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050444-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29241,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-17,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050445-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29243,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-18,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050446-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29245,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-19,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050447-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29247,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-20,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050448-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29249,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-21,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050449-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29251,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-22,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050450-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29253,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-23,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050451-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29255,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-24,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050452_0-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29257,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-25,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050453-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29259,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-26,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050454_0-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29261,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-27,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050455-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29263,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-28,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050456-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29265,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-29,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050457-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29267,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-30,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050458_0-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29269,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-31,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050459_0-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29271,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-32,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050460-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29273,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-33,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050461-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29275,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-34,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050462-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29277,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-35,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050463-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29279,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-36,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-36/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050464-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29281,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-37,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050465-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29283,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-38,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-38/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050466-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29285,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-39,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-39/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050467-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29287,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-40,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-40/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050468-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29289,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-41,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-41/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050469-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29291,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-42,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-42/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050470-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29293,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-43,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-43/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050471-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29295,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-44,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-44/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050472-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29297,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-45,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-45/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050473-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29299,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-46,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-46/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050474-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29301,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-47,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-47/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050475-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29303,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-48,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-48/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050476-scaled.jpg,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29305,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,,,,https://biolit.fr/wp-content/uploads/2023/07/50.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29307,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-2,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/52.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29309,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-3,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/actinia equina_5.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29311,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-4,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-4/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_16.PNG,,TRUE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29313,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-5,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/anser anser.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29315,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-6,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-6/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/asterias rubens_2.PNG,,TRUE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29317,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-7,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/asterina gibbosa_3.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29319,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-8,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_15.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29321,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-9,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Calyptrea chinensis.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29323,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-10,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-10/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/cancer pagurus_5.PNG,,TRUE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29325,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-11,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/cerastoderma edule_6.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29327,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-12,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-12/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/cereus pedunculatus_0.PNG,,TRUE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29329,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-13,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/crassostrea gigas_1.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29331,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-14,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/crepidula fornicata_3.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29333,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-15,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp1_4.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29335,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-16,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp2_1.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29337,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-17,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gari depressa_13.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29339,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-18,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/gibula albida.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29341,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-19,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/haliotis tuberculata_1.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29343,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-20,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/gibula magus.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29345,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-21,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/Hatriplex halimus pas sûr.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29347,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-22,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/Isozoanthus sulcatus_8.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29349,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-23,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/larus marinus pe.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29351,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-24,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/lepidochitona sp_0.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29353,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-25,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/limace de mer 1.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29355,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-26,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/limace de mer.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29357,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-27,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-27/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/lineus longissimus.PNG,,TRUE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29359,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-28,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-28/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/littorina littorea_6.PNG,,TRUE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29361,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-29,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_32.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29363,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-30,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/Metridium senile_2.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29365,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-31,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia_14.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29367,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-32,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-32/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/mytilus edulis_2.PNG,,TRUE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29369,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-33,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-33/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/nucella lapillus_5.PNG,,TRUE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29371,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-34,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-34/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebra erinaceus_5.PNG,,TRUE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29373,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-35,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ophiothrix sp_3.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29375,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-36,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-36/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_14.PNG,,TRUE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29377,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-37,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/palaemon serratus_0.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29379,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-38,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-38/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/patella vulgata_0.PNG,,TRUE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29381,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-39,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-39/,,,,https://biolit.fr/wp-content/uploads/2023/07/Phalacrocorax carbo_1.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29383,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-40,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-40/,,,,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus_10.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29385,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-41,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-41/,,,,https://biolit.fr/wp-content/uploads/2023/07/phyllodoce lamelligera.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29387,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-42,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-42/,Pilumnus hirtellus,Pilumne hirsute,,https://biolit.fr/wp-content/uploads/2023/07/Pilumnus hirtellus et porcellana platycheles.PNG,,TRUE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29389,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-43,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-43/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/Pisidia longicornis_11.PNG,,TRUE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29391,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-44,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-44/,,,,https://biolit.fr/wp-content/uploads/2023/07/plante sp.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29393,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-45,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-45/,,,,https://biolit.fr/wp-content/uploads/2023/07/Platalea leucorodia.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29395,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-46,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-46/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pycnogonide sp_2.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29397,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-47,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-47/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sedum anglicum.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29399,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-48,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-48/,,,,https://biolit.fr/wp-content/uploads/2023/07/Spirobranchus triqueter_1.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29401,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-49,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-49/,,,,https://biolit.fr/wp-content/uploads/2023/07/tectura virginea.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29403,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-50,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-50/,,,,https://biolit.fr/wp-content/uploads/2023/07/venerupis corrugata_0.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29405,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-51,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-51/,,,,https://biolit.fr/wp-content/uploads/2023/07/venus verrucosa_5.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29407,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-52,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-52/,,,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrohilus.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29409,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-53,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-53/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_22.PNG,,TRUE, +N1,58553,sortie-489cab78-6730-4285-afa0-02a70c609e12,https://biolit.fr/sorties/sortie-489cab78-6730-4285-afa0-02a70c609e12/,charlene.didon,,2/22/2023 0:00,15.0000000,17.0000000,43.523709000000,3.923529000000,,Palavas,29411,observation-489cab78-6730-4285-afa0-02a70c609e12,https://biolit.fr/observations/observation-489cab78-6730-4285-afa0-02a70c609e12/,,,,https://biolit.fr/wp-content/uploads/2023/07/16770765711434702796352952910014-scaled.jpg,,FALSE, +N1,58553,sortie-489cab78-6730-4285-afa0-02a70c609e12,https://biolit.fr/sorties/sortie-489cab78-6730-4285-afa0-02a70c609e12/,charlene.didon,,2/22/2023 0:00,15.0000000,17.0000000,43.523709000000,3.923529000000,,Palavas,29413,observation-489cab78-6730-4285-afa0-02a70c609e12-2,https://biolit.fr/observations/observation-489cab78-6730-4285-afa0-02a70c609e12-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/16770770262248874176217959755828-scaled.jpg,,FALSE, +N1,58554,sortie-698e7e93-93e0-494a-a52a-0e5279d97b7c,https://biolit.fr/sorties/sortie-698e7e93-93e0-494a-a52a-0e5279d97b7c/,Camille Benyamine,,2/16/2023 0:00,15.0000000,15.0000000,43.239981000000,5.362389000000,,Bain des dames,29415,observation-698e7e93-93e0-494a-a52a-0e5279d97b7c,https://biolit.fr/observations/observation-698e7e93-93e0-494a-a52a-0e5279d97b7c/,,,,https://biolit.fr/wp-content/uploads/2023/07/autre 2 bain des dames.jpg,,FALSE, +N1,58554,sortie-698e7e93-93e0-494a-a52a-0e5279d97b7c,https://biolit.fr/sorties/sortie-698e7e93-93e0-494a-a52a-0e5279d97b7c/,Camille Benyamine,,2/16/2023 0:00,15.0000000,15.0000000,43.239981000000,5.362389000000,,Bain des dames,29417,observation-698e7e93-93e0-494a-a52a-0e5279d97b7c-2,https://biolit.fr/observations/observation-698e7e93-93e0-494a-a52a-0e5279d97b7c-2/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/arche bain des dames.jpg,,TRUE, +N1,58554,sortie-698e7e93-93e0-494a-a52a-0e5279d97b7c,https://biolit.fr/sorties/sortie-698e7e93-93e0-494a-a52a-0e5279d97b7c/,Camille Benyamine,,2/16/2023 0:00,15.0000000,15.0000000,43.239981000000,5.362389000000,,Bain des dames,29419,observation-698e7e93-93e0-494a-a52a-0e5279d97b7c-3,https://biolit.fr/observations/observation-698e7e93-93e0-494a-a52a-0e5279d97b7c-3/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/2023/07/autre bain des dames.jpg,,TRUE, +N1,58555,sortie-c0a82722-a826-418a-bd2d-8966670e9989,https://biolit.fr/sorties/sortie-c0a82722-a826-418a-bd2d-8966670e9989/,Marine,,02/05/2023,15.0000000,15.0000000,46.248109000000,-1.141512000000,,Pointe saint Clement ,29421,observation-c0a82722-a826-418a-bd2d-8966670e9989,https://biolit.fr/observations/observation-c0a82722-a826-418a-bd2d-8966670e9989/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230205_150442_compress75-scaled.jpg,,FALSE, +N1,58555,sortie-c0a82722-a826-418a-bd2d-8966670e9989,https://biolit.fr/sorties/sortie-c0a82722-a826-418a-bd2d-8966670e9989/,Marine,,02/05/2023,15.0000000,15.0000000,46.248109000000,-1.141512000000,,Pointe saint Clement ,29423,observation-c0a82722-a826-418a-bd2d-8966670e9989-2,https://biolit.fr/observations/observation-c0a82722-a826-418a-bd2d-8966670e9989-2/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230205_150031_compress14-scaled.jpg,,TRUE, +N1,58555,sortie-c0a82722-a826-418a-bd2d-8966670e9989,https://biolit.fr/sorties/sortie-c0a82722-a826-418a-bd2d-8966670e9989/,Marine,,02/05/2023,15.0000000,15.0000000,46.248109000000,-1.141512000000,,Pointe saint Clement ,29425,observation-c0a82722-a826-418a-bd2d-8966670e9989-3,https://biolit.fr/observations/observation-c0a82722-a826-418a-bd2d-8966670e9989-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230205_151320_compress53-scaled.jpg,,FALSE, +N1,58556,sortie-88963246-854d-46b4-a20e-0e414c099c96,https://biolit.fr/sorties/sortie-88963246-854d-46b4-a20e-0e414c099c96/,Roman,,1/21/2023 0:00,16.0000000,16.0000000,47.695860000000,-3.354355000000,,Gâvres,29427,observation-88963246-854d-46b4-a20e-0e414c099c96,https://biolit.fr/observations/observation-88963246-854d-46b4-a20e-0e414c099c96/,,,,https://biolit.fr/wp-content/uploads/2023/07/Anatifera anatifera.PNG,,FALSE, +N1,58556,sortie-88963246-854d-46b4-a20e-0e414c099c96,https://biolit.fr/sorties/sortie-88963246-854d-46b4-a20e-0e414c099c96/,Roman,,1/21/2023 0:00,16.0000000,16.0000000,47.695860000000,-3.354355000000,,Gâvres,29429,observation-88963246-854d-46b4-a20e-0e414c099c96-2,https://biolit.fr/observations/observation-88963246-854d-46b4-a20e-0e414c099c96-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Physalia physalis_0.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29431,observation-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_24.PNG,,TRUE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29433,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-2,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-2/,Actinia striata,Actinie striée,,https://biolit.fr/wp-content/uploads/2023/07/Actinia striata.PNG,,TRUE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29435,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-3,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue sp un doute.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29437,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-4,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue sp_2.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29439,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-5,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/anémone sp_9.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29441,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-6,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Anthopleura balii_11.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29443,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-7,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-7/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_29.PNG,,TRUE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29445,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-8,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Aulactinia verrucosa_10.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29447,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-9,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-9/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_18.PNG,,TRUE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29449,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-10,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus sp.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29451,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-11,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-11/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_26.PNG,,TRUE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29453,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-12,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/carottage..PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29455,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-13,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_18.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29457,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-14,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Corralina officinalis.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29459,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-15,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crevette sp.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29461,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-16,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_38.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29463,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-17,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/flaque à lithophyllum incrustans.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29465,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-18,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-18/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/Haliotis tuberculata_13.PNG,,TRUE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29467,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-19,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/Helcion pelludica_0.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29469,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-20,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Himanthalia elongata_1.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29471,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-21,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/Laminaria sp_1.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29473,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-22,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lepadogaster sp.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29475,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-23,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-23/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_14.PNG,,TRUE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29477,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-24,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/Liocarcinus sp_2.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29479,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-25,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lomentaria artiulata.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29481,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-26,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/Macropodia sp_1.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29483,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-27,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-27/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_31.PNG,,TRUE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29485,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-28,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_20.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29487,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-29,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_22.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29489,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-30,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-30/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nuella lapillus.PNG,,TRUE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29491,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-31,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-31/,Ophiocomina nigra,Ophiure noire,,https://biolit.fr/wp-content/uploads/2023/07/Ophiocomina nigra.PNG,,TRUE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29493,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-32,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/Paracentrotus lividus_7.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29495,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-33,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-33/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/07/patella vulgata_0.PNG,,TRUE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29496,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-34,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-34/,Pilumnus hirtellus,Pilumne hirsute,,https://biolit.fr/wp-content/uploads/2023/07/Pilumnus hirtellus_9.PNG,,TRUE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29498,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-35,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-35/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/Pisidia longicornis_12.PNG,,TRUE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29500,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-36,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-36/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_27.PNG,,TRUE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29502,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-37,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_32.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29504,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-38,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-38/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sabellaria alveolata_10.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29506,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-39,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-39/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sargassum japonica_0.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29508,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-40,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-40/,,,,https://biolit.fr/wp-content/uploads/2023/07/Spatule blanche.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29510,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-41,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-41/,,,,https://biolit.fr/wp-content/uploads/2023/07/Tethya citrina_0.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29512,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-42,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-42/,,,,https://biolit.fr/wp-content/uploads/2023/07/ver sp_4.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29514,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-43,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-43/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_21.PNG,,TRUE, +N1,58558,sortie-2134375f-7e5a-4e18-9297-8cc5f942be9c,https://biolit.fr/sorties/sortie-2134375f-7e5a-4e18-9297-8cc5f942be9c/,chloehoez,,1/25/2023 0:00,16.0000000,18.0000000,46.188000000000,-1.314739000000,,Plage de l'Arnérault,29516,observation-2134375f-7e5a-4e18-9297-8cc5f942be9c,https://biolit.fr/observations/observation-2134375f-7e5a-4e18-9297-8cc5f942be9c/,,,,https://biolit.fr/wp-content/uploads/2023/07/MicrosoftTeams-image (12).png,,FALSE, +N1,58558,sortie-2134375f-7e5a-4e18-9297-8cc5f942be9c,https://biolit.fr/sorties/sortie-2134375f-7e5a-4e18-9297-8cc5f942be9c/,chloehoez,,1/25/2023 0:00,16.0000000,18.0000000,46.188000000000,-1.314739000000,,Plage de l'Arnérault,29518,observation-2134375f-7e5a-4e18-9297-8cc5f942be9c-2,https://biolit.fr/observations/observation-2134375f-7e5a-4e18-9297-8cc5f942be9c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/MicrosoftTeams-image (11).png,,FALSE, +N1,58558,sortie-2134375f-7e5a-4e18-9297-8cc5f942be9c,https://biolit.fr/sorties/sortie-2134375f-7e5a-4e18-9297-8cc5f942be9c/,chloehoez,,1/25/2023 0:00,16.0000000,18.0000000,46.188000000000,-1.314739000000,,Plage de l'Arnérault,29520,observation-2134375f-7e5a-4e18-9297-8cc5f942be9c-3,https://biolit.fr/observations/observation-2134375f-7e5a-4e18-9297-8cc5f942be9c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/MicrosoftTeams-image (9).png,,FALSE, +N1,58558,sortie-2134375f-7e5a-4e18-9297-8cc5f942be9c,https://biolit.fr/sorties/sortie-2134375f-7e5a-4e18-9297-8cc5f942be9c/,chloehoez,,1/25/2023 0:00,16.0000000,18.0000000,46.188000000000,-1.314739000000,,Plage de l'Arnérault,29522,observation-2134375f-7e5a-4e18-9297-8cc5f942be9c-4,https://biolit.fr/observations/observation-2134375f-7e5a-4e18-9297-8cc5f942be9c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/MicrosoftTeams-image (7).png,,FALSE, +N1,58559,sortie-914de4de-ede1-44c2-977f-26eb2ed46e18,https://biolit.fr/sorties/sortie-914de4de-ede1-44c2-977f-26eb2ed46e18/,Marine,,1/21/2023 0:00,17.0000000,17.0000000,46.305862000000,-1.312451000000,,Plage de la Barrique,29524,observation-914de4de-ede1-44c2-977f-26eb2ed46e18,https://biolit.fr/observations/observation-914de4de-ede1-44c2-977f-26eb2ed46e18/,,,,https://biolit.fr/wp-content/uploads/2023/07/1674560076540-scaled.jpg,,FALSE, +N1,58559,sortie-914de4de-ede1-44c2-977f-26eb2ed46e18,https://biolit.fr/sorties/sortie-914de4de-ede1-44c2-977f-26eb2ed46e18/,Marine,,1/21/2023 0:00,17.0000000,17.0000000,46.305862000000,-1.312451000000,,Plage de la Barrique,29526,observation-914de4de-ede1-44c2-977f-26eb2ed46e18-2,https://biolit.fr/observations/observation-914de4de-ede1-44c2-977f-26eb2ed46e18-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/1674560076549-scaled.jpg,,FALSE, +N1,58559,sortie-914de4de-ede1-44c2-977f-26eb2ed46e18,https://biolit.fr/sorties/sortie-914de4de-ede1-44c2-977f-26eb2ed46e18/,Marine,,1/21/2023 0:00,17.0000000,17.0000000,46.305862000000,-1.312451000000,,Plage de la Barrique,29528,observation-914de4de-ede1-44c2-977f-26eb2ed46e18-3,https://biolit.fr/observations/observation-914de4de-ede1-44c2-977f-26eb2ed46e18-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/1674560076557-scaled.jpg,,FALSE, +N1,58559,sortie-914de4de-ede1-44c2-977f-26eb2ed46e18,https://biolit.fr/sorties/sortie-914de4de-ede1-44c2-977f-26eb2ed46e18/,Marine,,1/21/2023 0:00,17.0000000,17.0000000,46.305862000000,-1.312451000000,,Plage de la Barrique,29530,observation-914de4de-ede1-44c2-977f-26eb2ed46e18-4,https://biolit.fr/observations/observation-914de4de-ede1-44c2-977f-26eb2ed46e18-4/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/1674560076565-scaled.jpg,,TRUE, +N1,58559,sortie-914de4de-ede1-44c2-977f-26eb2ed46e18,https://biolit.fr/sorties/sortie-914de4de-ede1-44c2-977f-26eb2ed46e18/,Marine,,1/21/2023 0:00,17.0000000,17.0000000,46.305862000000,-1.312451000000,,Plage de la Barrique,29532,observation-914de4de-ede1-44c2-977f-26eb2ed46e18-5,https://biolit.fr/observations/observation-914de4de-ede1-44c2-977f-26eb2ed46e18-5/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/1674560076573-scaled.jpg,,TRUE, +N1,58560,sortie-c41af137-af93-4f15-9f4f-1dba17d50733,https://biolit.fr/sorties/sortie-c41af137-af93-4f15-9f4f-1dba17d50733/,cyrille.mirgain@totalenergies.com,,01/09/2023,10.0000000,12.0000000,49.646842000000,0.153877000000,,saint jouin de bruneval,29534,observation-c41af137-af93-4f15-9f4f-1dba17d50733,https://biolit.fr/observations/observation-c41af137-af93-4f15-9f4f-1dba17d50733/,,,,https://biolit.fr/wp-content/uploads/2023/07/action - 01.jpg,,FALSE, +N1,58560,sortie-c41af137-af93-4f15-9f4f-1dba17d50733,https://biolit.fr/sorties/sortie-c41af137-af93-4f15-9f4f-1dba17d50733/,cyrille.mirgain@totalenergies.com,,01/09/2023,10.0000000,12.0000000,49.646842000000,0.153877000000,,saint jouin de bruneval,29536,observation-c41af137-af93-4f15-9f4f-1dba17d50733-2,https://biolit.fr/observations/observation-c41af137-af93-4f15-9f4f-1dba17d50733-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/action - 02.jpg,,FALSE, +N1,58560,sortie-c41af137-af93-4f15-9f4f-1dba17d50733,https://biolit.fr/sorties/sortie-c41af137-af93-4f15-9f4f-1dba17d50733/,cyrille.mirgain@totalenergies.com,,01/09/2023,10.0000000,12.0000000,49.646842000000,0.153877000000,,saint jouin de bruneval,29538,observation-c41af137-af93-4f15-9f4f-1dba17d50733-3,https://biolit.fr/observations/observation-c41af137-af93-4f15-9f4f-1dba17d50733-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/action - 03.jpg,,FALSE, +N1,58560,sortie-c41af137-af93-4f15-9f4f-1dba17d50733,https://biolit.fr/sorties/sortie-c41af137-af93-4f15-9f4f-1dba17d50733/,cyrille.mirgain@totalenergies.com,,01/09/2023,10.0000000,12.0000000,49.646842000000,0.153877000000,,saint jouin de bruneval,29540,observation-c41af137-af93-4f15-9f4f-1dba17d50733-4,https://biolit.fr/observations/observation-c41af137-af93-4f15-9f4f-1dba17d50733-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/action - 04.jpg,,FALSE, +N1,58560,sortie-c41af137-af93-4f15-9f4f-1dba17d50733,https://biolit.fr/sorties/sortie-c41af137-af93-4f15-9f4f-1dba17d50733/,cyrille.mirgain@totalenergies.com,,01/09/2023,10.0000000,12.0000000,49.646842000000,0.153877000000,,saint jouin de bruneval,29542,observation-c41af137-af93-4f15-9f4f-1dba17d50733-5,https://biolit.fr/observations/observation-c41af137-af93-4f15-9f4f-1dba17d50733-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/action - 05.jpg,,FALSE, +N1,58560,sortie-c41af137-af93-4f15-9f4f-1dba17d50733,https://biolit.fr/sorties/sortie-c41af137-af93-4f15-9f4f-1dba17d50733/,cyrille.mirgain@totalenergies.com,,01/09/2023,10.0000000,12.0000000,49.646842000000,0.153877000000,,saint jouin de bruneval,29544,observation-c41af137-af93-4f15-9f4f-1dba17d50733-6,https://biolit.fr/observations/observation-c41af137-af93-4f15-9f4f-1dba17d50733-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/action - 06.jpg,,FALSE, +N1,58560,sortie-c41af137-af93-4f15-9f4f-1dba17d50733,https://biolit.fr/sorties/sortie-c41af137-af93-4f15-9f4f-1dba17d50733/,cyrille.mirgain@totalenergies.com,,01/09/2023,10.0000000,12.0000000,49.646842000000,0.153877000000,,saint jouin de bruneval,29546,observation-c41af137-af93-4f15-9f4f-1dba17d50733-7,https://biolit.fr/observations/observation-c41af137-af93-4f15-9f4f-1dba17d50733-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/action - 07.jpg,,FALSE, +N1,58560,sortie-c41af137-af93-4f15-9f4f-1dba17d50733,https://biolit.fr/sorties/sortie-c41af137-af93-4f15-9f4f-1dba17d50733/,cyrille.mirgain@totalenergies.com,,01/09/2023,10.0000000,12.0000000,49.646842000000,0.153877000000,,saint jouin de bruneval,29548,observation-c41af137-af93-4f15-9f4f-1dba17d50733-8,https://biolit.fr/observations/observation-c41af137-af93-4f15-9f4f-1dba17d50733-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/action - 08.jpg,,FALSE, +N1,58560,sortie-c41af137-af93-4f15-9f4f-1dba17d50733,https://biolit.fr/sorties/sortie-c41af137-af93-4f15-9f4f-1dba17d50733/,cyrille.mirgain@totalenergies.com,,01/09/2023,10.0000000,12.0000000,49.646842000000,0.153877000000,,saint jouin de bruneval,29550,observation-c41af137-af93-4f15-9f4f-1dba17d50733-9,https://biolit.fr/observations/observation-c41af137-af93-4f15-9f4f-1dba17d50733-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/action - 09.jpg,,FALSE, +N1,58560,sortie-c41af137-af93-4f15-9f4f-1dba17d50733,https://biolit.fr/sorties/sortie-c41af137-af93-4f15-9f4f-1dba17d50733/,cyrille.mirgain@totalenergies.com,,01/09/2023,10.0000000,12.0000000,49.646842000000,0.153877000000,,saint jouin de bruneval,29552,observation-c41af137-af93-4f15-9f4f-1dba17d50733-10,https://biolit.fr/observations/observation-c41af137-af93-4f15-9f4f-1dba17d50733-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/action - 11.jpg,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29554,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3140.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29556,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-2,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3141.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29558,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-3,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3142_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29560,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-4,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3143.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29562,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-5,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3144.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29564,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-6,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3145.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29566,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-7,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3146.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29568,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-8,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3147-scaled.jpg,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29570,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-9,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3150.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29572,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-10,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3151.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29574,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-11,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3152.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29576,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-12,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3153.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29578,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-13,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3154.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29580,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-14,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3155.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29582,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-15,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3156.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29584,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-16,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3157.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29586,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-17,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3158.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29588,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-18,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3160.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29590,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-19,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3161.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29592,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-20,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3163_0-scaled.jpg,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29594,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-21,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3164_0-scaled.jpg,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29596,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-22,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3165_0-scaled.jpg,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29598,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-23,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3166.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29600,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-24,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3167.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29602,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-25,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3168_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29604,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-26,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3169.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29606,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-27,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3170.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29608,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-28,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3171.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29610,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-29,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3172.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29612,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-30,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3173.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29614,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-31,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3174_0-scaled.jpg,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29616,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-32,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3175.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29618,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-33,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3176.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29620,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-34,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6848_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29622,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-35,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6849.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29624,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-36,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-36/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6850_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29626,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-37,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6852.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29628,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-38,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-38/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6853.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29630,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-39,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-39/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6854.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29632,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-40,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-40/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6855.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29634,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-41,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-41/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6856.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29636,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-42,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-42/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6857.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29638,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-43,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-43/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6858.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29640,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-44,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-44/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6859.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29642,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-45,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-45/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6860.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29644,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-46,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-46/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6861.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29646,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-47,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-47/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6862.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29648,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-48,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-48/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6863.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29650,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-49,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-49/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6864.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29652,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-50,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-50/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6866_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29654,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-51,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-51/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6865.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29656,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-52,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-52/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6867.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29658,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-53,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-53/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6868.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29660,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-54,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-54/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6869_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29662,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-55,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-55/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6870.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29664,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-56,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-56/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6871.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29666,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-57,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-57/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6872_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29668,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-58,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-58/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6876_0-scaled.jpg,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29670,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-59,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-59/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6877_1.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29672,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-60,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-60/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6878_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29674,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-61,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-61/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6879.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29676,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-62,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-62/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6882_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29678,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-63,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-63/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6883_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29680,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-64,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-64/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6884_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29682,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-65,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-65/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6885.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29684,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-66,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-66/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6886.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29686,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-67,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-67/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6887.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29688,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-68,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-68/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7459_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29690,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-69,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-69/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7460_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29692,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-70,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-70/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7461_1.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29694,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-71,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-71/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7462_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29696,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-72,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-72/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7463_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29698,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-73,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-73/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7467_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29700,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-74,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-74/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7468_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29702,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-75,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-75/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7469_0.JPG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29704,observation-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea/,,,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita_12.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29706,observation-b67e6bcc-785c-44aa-9034-79a039024eea-2,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_23.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29708,observation-b67e6bcc-785c-44aa-9034-79a039024eea-3,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-3/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragaceae_6.PNG,,TRUE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29710,observation-b67e6bcc-785c-44aa-9034-79a039024eea-4,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algue sp_1.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29711,observation-b67e6bcc-785c-44aa-9034-79a039024eea-5,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Anguilla anguilla_0.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29713,observation-b67e6bcc-785c-44aa-9034-79a039024eea-6,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-6/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_15.PNG,,TRUE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29715,observation-b67e6bcc-785c-44aa-9034-79a039024eea-7,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascophyllum nodosum_0.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29717,observation-b67e6bcc-785c-44aa-9034-79a039024eea-8,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-8/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_22.PNG,,TRUE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29719,observation-b67e6bcc-785c-44aa-9034-79a039024eea-9,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_14.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29721,observation-b67e6bcc-785c-44aa-9034-79a039024eea-10,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Austrominius modestus.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29723,observation-b67e6bcc-785c-44aa-9034-79a039024eea-11,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_12.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29725,observation-b67e6bcc-785c-44aa-9034-79a039024eea-12,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ciliata mustela_5.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29727,observation-b67e6bcc-785c-44aa-9034-79a039024eea-13,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-13/,Ciona intestinalis,Cione intestinale,,https://biolit.fr/wp-content/uploads/2023/07/Ciona intestinalis_4.PNG,,TRUE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29729,observation-b67e6bcc-785c-44aa-9034-79a039024eea-14,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crassostrea gigas_5.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29731,observation-b67e6bcc-785c-44aa-9034-79a039024eea-15,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Doridien sp_0.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29733,observation-b67e6bcc-785c-44aa-9034-79a039024eea-16,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Doridien sp1.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29735,observation-b67e6bcc-785c-44aa-9034-79a039024eea-17,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/Dysidea fragilis_3.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29737,observation-b67e6bcc-785c-44aa-9034-79a039024eea-18,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 1_12.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29739,observation-b67e6bcc-785c-44aa-9034-79a039024eea-19,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_37.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29741,observation-b67e6bcc-785c-44aa-9034-79a039024eea-20,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Fucus serratus_4.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29743,observation-b67e6bcc-785c-44aa-9034-79a039024eea-21,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/fucus vesiculosus.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29744,observation-b67e6bcc-785c-44aa-9034-79a039024eea-22,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-22/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/Haliotis tuberculata_12.PNG,,TRUE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29746,observation-b67e6bcc-785c-44aa-9034-79a039024eea-23,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/lepidochitona sp_0.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29747,observation-b67e6bcc-785c-44aa-9034-79a039024eea-24,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_13.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29749,observation-b67e6bcc-785c-44aa-9034-79a039024eea-25,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-25/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_13.PNG,,TRUE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29751,observation-b67e6bcc-785c-44aa-9034-79a039024eea-26,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia_13.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29753,observation-b67e6bcc-785c-44aa-9034-79a039024eea-27,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/Modiolula phaseolina.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29755,observation-b67e6bcc-785c-44aa-9034-79a039024eea-28,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/Murex doute.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29757,observation-b67e6bcc-785c-44aa-9034-79a039024eea-29,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ophiothrix sp_2.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29759,observation-b67e6bcc-785c-44aa-9034-79a039024eea-30,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ostrea edule.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29761,observation-b67e6bcc-785c-44aa-9034-79a039024eea-31,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patella intermedia picta pe.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29763,observation-b67e6bcc-785c-44aa-9034-79a039024eea-32,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-32/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus_9.PNG,,TRUE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29765,observation-b67e6bcc-785c-44aa-9034-79a039024eea-33,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_31.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29767,observation-b67e6bcc-785c-44aa-9034-79a039024eea-34,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes philipinarum_0.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29769,observation-b67e6bcc-785c-44aa-9034-79a039024eea-35,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sargassum sp.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29771,observation-b67e6bcc-785c-44aa-9034-79a039024eea-36,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-36/,,,,https://biolit.fr/wp-content/uploads/2023/07/Spurilla neapolitana_3.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29773,observation-b67e6bcc-785c-44aa-9034-79a039024eea-37,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/Steromphala umbilicalis_4.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29775,observation-b67e6bcc-785c-44aa-9034-79a039024eea-38,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-38/,,,,https://biolit.fr/wp-content/uploads/2023/07/Venerupis rhomboides.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29777,observation-b67e6bcc-785c-44aa-9034-79a039024eea-39,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-39/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ver sp_5.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29779,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue sp_0.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29781,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-2,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_24.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29783,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-3,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-3/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_14.PNG,,TRUE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29785,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-4,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-4/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_21.PNG,,TRUE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29787,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-5,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_28.PNG,,TRUE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29789,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-6,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_24.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29791,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-7,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crepidula fornicata_7.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29793,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-8,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/dysidea pe 1.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29795,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-9,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/dysidea pe.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29797,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-10,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/epitnium clathrus.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29799,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-11,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 1_11.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29801,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-12,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 2_5.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29803,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-13,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 3_0.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29805,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-14,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp mix.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29807,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-15,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_36.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29809,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-16,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Fucus serratus_3.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29811,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-17,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbula magus_1.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29813,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-18,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/gobie sp_4.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29815,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-19,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/Haliotis tuberculata_11.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29817,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-20,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Heteranomia squamula_1.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29819,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-21,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/Labridé sp.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29821,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-22,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_12.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29823,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-23,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lomentaria articulata_2.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29825,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-24,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/macropodia sp.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29827,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-25,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-25/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_30.PNG,,TRUE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29829,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-26,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/Metridium sp_2.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29831,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-27,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia_12.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29833,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-28,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_19.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29835,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-29,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-29/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_23.PNG,,TRUE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29837,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-30,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ophiothrix sp_1.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29839,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-31,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-31/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/Pisidia longicornis_10.PNG,,TRUE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29841,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-32,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-32/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_26.PNG,,TRUE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29843,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-33,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-33/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/Trivia monacha_2.PNG,,TRUE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29845,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-34,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa_10.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29847,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-35,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/ver sp 1.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29849,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-36,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-36/,,,,https://biolit.fr/wp-content/uploads/2023/07/ver sp_4.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29850,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-37,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_23.PNG,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29852,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Anémone tomate Actinia equina Damgan 26-12-2022 (2) copie.jpg,,TRUE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29854,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-2,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Anémone tomate Actinia equina Damgan 26-12-2022 (3) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29856,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-3,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-3/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/Ascophylle noueux Ascophyllum nodosum Damgan 23-12-22 copie.jpg,,TRUE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29858,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-4,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Bigorneau Littorina littorea Damgan 23-12-22 (7) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29860,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-5,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Bryozoaire Damgan 26-12-2022 (80) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29862,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-6,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Bryozoaire Damgan 26-12-2022 (81) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29864,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-7,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Calyptrée chapeau chinois Calyptrea chinensis Damgan 23-12-22 copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29866,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-8,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Canalisation rompue eau brune Damgan 23-12-22 (4) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29868,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-9,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Canalisation rompue eau brune Damgan 23-12-22 (5) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29870,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-10,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Carragahenn fucus crispus Damgan 26-12-2022 (29) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29872,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-11,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ceramium sp Damgan 23-12-22 copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29874,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-12,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cérithe réticulé Bittium reticulatum Damgan 26-12-2022 (75) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29876,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-13,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/Chiton cendré Lepidochitona cinerea Damgan 26-12-2022 copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29878,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-14,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Citron de mer Doris pseudoargus Damgan 23-12-22 (28) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29880,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-15,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Citron de mer Doris pseudoargus Damgan 23-12-22 (29) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29882,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-16,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Coque commune Cerastoderma edule Damgan 26-12-2022 (41) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29884,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-17,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/Corallina caespitosa Damgan 23-12-22 (50) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29886,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-18,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crépidule des moules Crepidula fornicataDamgan 26-12-2022 (12) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29888,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-19,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crustacé Damgan 23-12-22 (87) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29890,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-20,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Dulse poivrée Osmundea pinnatifida Damgan 23-12-22 copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29892,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-21,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/Eponge Damgan 23-12-22 (93) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29894,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-22,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/Fucus vesiculosus Damgan 23-12-22 1 copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29896,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-23,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule ombiliquée Steromphala umbilicalis Damgan 23-12-22 (1) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29898,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-24,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule ombiliquée Steromphala umbilicalis Damgan 23-12-22 (2) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29900,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-25,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gracillaire gracile Gracillaria gracillis Damgan 23-12-22 1 copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29902,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-26,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/Grain de café Trivia arctica Damgan 26-12-2022 (86) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29904,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-27,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/Huitre creuse Magallana gigas Damgan 23-12-22 copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29906,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-28,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/Laminaire digité Laminaria digitata Damgan 26-12-2022 (59) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29908,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-29,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lièvre de mer Aplysia fasciata Damgan 26-12-2022 (1) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29910,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-30,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lièvre de mer Aplysia fasciata Damgan 26-12-2022 (2) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29912,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-31,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/Littorina fabalis Damgan 26-12-2022 (86) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29914,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-32,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/Littorina fabalis Damgan 26-12-2022 (87) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29916,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-33,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/Modiole barbue Modiolus barbatus Damgan 23-12-22 (78)_0.JPG,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29918,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-34,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/Motelle à 5 barbillons Ciliata mustela Damgan 26-12-2022 (4).JPG,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29920,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-35,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mouettes rieuses Damgan 26-12-2022 (26) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29922,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-36,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-36/,,,,https://biolit.fr/wp-content/uploads/2023/07/Modiole barbue Modiolus barbatus Damgan 23-12-22.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29924,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-37,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/Moule commune Mytylus edulis Damgan 23-12-22 1_0.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29926,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-38,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-38/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mye des sables Mya arenaria Damgan 23-12-22 (2)_0.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29928,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-39,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-39/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mye des sables Mya arenaria Damgan 23-12-22_0.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29930,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-40,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-40/,,,,https://biolit.fr/wp-content/uploads/2023/07/Nasse réticulée Nassaruis reticulatus Damgan 26-12-2022 (23).JPG,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29932,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-41,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-41/,,,,https://biolit.fr/wp-content/uploads/2023/07/Oies bernaches cravant Damgan 26-12-2022 (39).jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29934,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-42,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-42/,,,,https://biolit.fr/wp-content/uploads/2023/07/Palourde dorée Polititapes aureus Damgan 23-12-22 (64)_0.JPG,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29936,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-43,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-43/,,,,https://biolit.fr/wp-content/uploads/2023/07/Palourde Ruditapes phillipinarum Damgan 26-12-2022 (1).JPG,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29938,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-44,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-44/,,,,https://biolit.fr/wp-content/uploads/2023/07/Palourde Ruditapes phillipinarum Damgan 26-12-2022 (2).JPG,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29940,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-45,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-45/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle déprimée Patella depressa Damgan 23-12-22 (1)_0.JPG,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29942,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-46,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-46/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle déprimée Patella depressa Damgan 23-12-22 (4)_0.JPG,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29944,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-47,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-47/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle vulgaire Patella vulgata Damgan 23-12-22_0.JPG,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29946,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-48,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-48/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle vulgaire Patella vulgata Damgan 23-12-22 5_0.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29948,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-49,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-49/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pétoncle noir Mimachlamys varia Damgan 23-12-22_0.JPG,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29950,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-50,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-50/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ponte sur Fucus serratus Damgan 26-12-2022 (63).jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29952,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-51,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-51/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pourpre petite pierre Purpura lapillus Damgan 23-12-22 (22)_0.JPG,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29954,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-52,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-52/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Pourpre petite pierre Purpura lapillus Damgan 23-12-22 (24)_0.JPG,,TRUE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29956,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-53,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-53/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Pourpre petite pierre Purpura lapillus Damgan 23-12-22 3_0.jpg,,TRUE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29958,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-54,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-54/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Rocher hérisson Ocinebra erinaceus Damgan 26-12-2022.JPG,,TRUE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29960,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-55,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-55/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sargassum muticum Damgan 26-12-2022 (31).JPG,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29962,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-56,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-56/,,,,https://biolit.fr/wp-content/uploads/2023/07/Palourde Ruditapes phillipinarum Damgan 1.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29964,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-57,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-57/,,,,https://biolit.fr/wp-content/uploads/2023/07/Spirorbe Spirorbis spirorbis Damgan 26-12-2022 (6).JPG,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29966,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-58,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-58/,,,,https://biolit.fr/wp-content/uploads/2023/07/Telline de la Baltique Limecola balthica Damgan 26-12-2022 (79).JPG,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29968,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-59,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-59/,,,,https://biolit.fr/wp-content/uploads/2023/07/Vers Nereis Damgan 23-12-22 (8)_0.JPG,,FALSE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,29970,observation-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/Biolit Moule-scaled.jpg,,TRUE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,29972,observation-33991749-7102-475c-ae2c-cb92c6bc93ce-2,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Huitres-scaled.jpg,,FALSE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,29974,observation-33991749-7102-475c-ae2c-cb92c6bc93ce-3,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/chapeau chinois-rotated.jpg,,FALSE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,29975,observation-33991749-7102-475c-ae2c-cb92c6bc93ce-4,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce-4/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/Moules-scaled.jpg,,TRUE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,29977,observation-33991749-7102-475c-ae2c-cb92c6bc93ce-5,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Eau rocher-scaled.jpg,,FALSE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,29979,observation-33991749-7102-475c-ae2c-cb92c6bc93ce-6,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce-6/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/euphorbe-scaled.jpg,,TRUE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,29981,observation-33991749-7102-475c-ae2c-cb92c6bc93ce-7,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce-7/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/Chardon-scaled.jpg,,TRUE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,29983,observation-33991749-7102-475c-ae2c-cb92c6bc93ce-8,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Criste-scaled.jpg,,FALSE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,29985,observation-33991749-7102-475c-ae2c-cb92c6bc93ce-9,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Abre Hottentot-scaled.jpg,,FALSE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,29987,observation-33991749-7102-475c-ae2c-cb92c6bc93ce-10,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/bette-scaled.jpg,,FALSE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,29989,observation-33991749-7102-475c-ae2c-cb92c6bc93ce-11,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/plante-scaled.jpg,,FALSE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,29991,observation-33991749-7102-475c-ae2c-cb92c6bc93ce-12,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/fleur1-scaled.jpg,,FALSE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,29993,observation-33991749-7102-475c-ae2c-cb92c6bc93ce-13,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/Fleur 2-scaled.jpg,,FALSE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,29995,observation-33991749-7102-475c-ae2c-cb92c6bc93ce-14,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Becasseau-scaled.jpg,,FALSE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,29997,observation-33991749-7102-475c-ae2c-cb92c6bc93ce-15,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/moineau-scaled.jpg,,FALSE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,29999,observation-33991749-7102-475c-ae2c-cb92c6bc93ce-16,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/sable-scaled.jpg,,FALSE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,30001,observation-33991749-7102-475c-ae2c-cb92c6bc93ce-17,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce-17/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/coquillage-scaled.jpg,,TRUE, +N1,58566,sortie-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17,https://biolit.fr/sorties/sortie-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17/,D-L,,12/06/2022,10.000005,15.0000000,43.527291000000,-1.523673000000,,Anglet,30003,observation-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17,https://biolit.fr/observations/observation-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221206_102410-scaled.jpg,,FALSE, +N1,58566,sortie-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17,https://biolit.fr/sorties/sortie-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17/,D-L,,12/06/2022,10.000005,15.0000000,43.527291000000,-1.523673000000,,Anglet,30005,observation-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17-2,https://biolit.fr/observations/observation-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221206_101914-scaled.jpg,,FALSE, +N1,58566,sortie-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17,https://biolit.fr/sorties/sortie-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17/,D-L,,12/06/2022,10.000005,15.0000000,43.527291000000,-1.523673000000,,Anglet,30007,observation-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17-3,https://biolit.fr/observations/observation-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221206_105402-scaled.jpg,,FALSE, +N1,58566,sortie-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17,https://biolit.fr/sorties/sortie-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17/,D-L,,12/06/2022,10.000005,15.0000000,43.527291000000,-1.523673000000,,Anglet,30009,observation-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17-4,https://biolit.fr/observations/observation-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221206_105426-scaled.jpg,,FALSE, +N1,58566,sortie-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17,https://biolit.fr/sorties/sortie-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17/,D-L,,12/06/2022,10.000005,15.0000000,43.527291000000,-1.523673000000,,Anglet,30011,observation-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17-5,https://biolit.fr/observations/observation-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221206_131748-scaled.jpg,,FALSE, +N1,58566,sortie-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17,https://biolit.fr/sorties/sortie-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17/,D-L,,12/06/2022,10.000005,15.0000000,43.527291000000,-1.523673000000,,Anglet,30013,observation-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17-6,https://biolit.fr/observations/observation-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221206_133746-scaled.jpg,,FALSE, +N1,58566,sortie-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17,https://biolit.fr/sorties/sortie-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17/,D-L,,12/06/2022,10.000005,15.0000000,43.527291000000,-1.523673000000,,Anglet,30015,observation-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17-7,https://biolit.fr/observations/observation-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221206_135312-scaled.jpg,,FALSE, +N1,58567,sortie-bdcc4075-75d9-4a7d-976f-948916722004,https://biolit.fr/sorties/sortie-bdcc4075-75d9-4a7d-976f-948916722004/,Anne Embry,,12/02/2022,19.0000000,21.0000000,43.293495000000,5.37097800000,,Vieux port de Marseille ,30017,observation-bdcc4075-75d9-4a7d-976f-948916722004,https://biolit.fr/observations/observation-bdcc4075-75d9-4a7d-976f-948916722004/,,,,https://biolit.fr/wp-content/uploads/2023/07/Screenshot_20221202-193341_Gallery.jpg,,FALSE, +N1,58568,sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a,https://biolit.fr/sorties/sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a/,Magali LHOMMET CARPENTIER,,11/25/2022 0:00,15.0000000,16.0000000,49.855289000000,0.606162000000,,Plage de Veulettes sur Mer (76450),30019,observation-647a99af-0cdd-4f1c-b3b4-10899b84945a,https://biolit.fr/observations/observation-647a99af-0cdd-4f1c-b3b4-10899b84945a/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221125_photo algue 1-scaled.jpg,,FALSE, +N1,58568,sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a,https://biolit.fr/sorties/sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a/,Magali LHOMMET CARPENTIER,,11/25/2022 0:00,15.0000000,16.0000000,49.855289000000,0.606162000000,,Plage de Veulettes sur Mer (76450),30021,observation-647a99af-0cdd-4f1c-b3b4-10899b84945a-2,https://biolit.fr/observations/observation-647a99af-0cdd-4f1c-b3b4-10899b84945a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221125_photo algue 2-scaled.jpg,,FALSE, +N1,58568,sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a,https://biolit.fr/sorties/sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a/,Magali LHOMMET CARPENTIER,,11/25/2022 0:00,15.0000000,16.0000000,49.855289000000,0.606162000000,,Plage de Veulettes sur Mer (76450),30023,observation-647a99af-0cdd-4f1c-b3b4-10899b84945a-3,https://biolit.fr/observations/observation-647a99af-0cdd-4f1c-b3b4-10899b84945a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221125_photo algue 3-scaled.jpg,,FALSE, +N1,58568,sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a,https://biolit.fr/sorties/sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a/,Magali LHOMMET CARPENTIER,,11/25/2022 0:00,15.0000000,16.0000000,49.855289000000,0.606162000000,,Plage de Veulettes sur Mer (76450),30025,observation-647a99af-0cdd-4f1c-b3b4-10899b84945a-4,https://biolit.fr/observations/observation-647a99af-0cdd-4f1c-b3b4-10899b84945a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221125_photo coquillage 1-scaled.jpg,,FALSE, +N1,58568,sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a,https://biolit.fr/sorties/sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a/,Magali LHOMMET CARPENTIER,,11/25/2022 0:00,15.0000000,16.0000000,49.855289000000,0.606162000000,,Plage de Veulettes sur Mer (76450),30027,observation-647a99af-0cdd-4f1c-b3b4-10899b84945a-5,https://biolit.fr/observations/observation-647a99af-0cdd-4f1c-b3b4-10899b84945a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221125_photo coquillage 2-scaled.jpg,,FALSE, +N1,58568,sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a,https://biolit.fr/sorties/sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a/,Magali LHOMMET CARPENTIER,,11/25/2022 0:00,15.0000000,16.0000000,49.855289000000,0.606162000000,,Plage de Veulettes sur Mer (76450),30029,observation-647a99af-0cdd-4f1c-b3b4-10899b84945a-6,https://biolit.fr/observations/observation-647a99af-0cdd-4f1c-b3b4-10899b84945a-6/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20221125_photo os de seiche 2-scaled.jpg,,TRUE, +N1,58568,sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a,https://biolit.fr/sorties/sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a/,Magali LHOMMET CARPENTIER,,11/25/2022 0:00,15.0000000,16.0000000,49.855289000000,0.606162000000,,Plage de Veulettes sur Mer (76450),30031,observation-647a99af-0cdd-4f1c-b3b4-10899b84945a-7,https://biolit.fr/observations/observation-647a99af-0cdd-4f1c-b3b4-10899b84945a-7/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20221125_photo os de seiche-scaled.jpg,,TRUE, +N1,58568,sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a,https://biolit.fr/sorties/sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a/,Magali LHOMMET CARPENTIER,,11/25/2022 0:00,15.0000000,16.0000000,49.855289000000,0.606162000000,,Plage de Veulettes sur Mer (76450),30033,observation-647a99af-0cdd-4f1c-b3b4-10899b84945a-8,https://biolit.fr/observations/observation-647a99af-0cdd-4f1c-b3b4-10899b84945a-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221125_photo oeufs-scaled.jpg,,FALSE, +N1,58568,sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a,https://biolit.fr/sorties/sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a/,Magali LHOMMET CARPENTIER,,11/25/2022 0:00,15.0000000,16.0000000,49.855289000000,0.606162000000,,Plage de Veulettes sur Mer (76450),30035,observation-647a99af-0cdd-4f1c-b3b4-10899b84945a-9,https://biolit.fr/observations/observation-647a99af-0cdd-4f1c-b3b4-10899b84945a-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221125_photo animal a determiner-scaled.jpg,,FALSE, +N1,58569,sortie-058556f1-56b9-4a9c-98f1-103dcdb4e02e,https://biolit.fr/sorties/sortie-058556f1-56b9-4a9c-98f1-103dcdb4e02e/,Jusup,,09/09/2022,12.0000000,12.0000000,47.612506000000,-3.171555000000,,Plage de Porh-Kehouet,30037,observation-058556f1-56b9-4a9c-98f1-103dcdb4e02e,https://biolit.fr/observations/observation-058556f1-56b9-4a9c-98f1-103dcdb4e02e/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0116-scaled.jpg,,FALSE, +N1,58569,sortie-058556f1-56b9-4a9c-98f1-103dcdb4e02e,https://biolit.fr/sorties/sortie-058556f1-56b9-4a9c-98f1-103dcdb4e02e/,Jusup,,09/09/2022,12.0000000,12.0000000,47.612506000000,-3.171555000000,,Plage de Porh-Kehouet,30039,observation-058556f1-56b9-4a9c-98f1-103dcdb4e02e-2,https://biolit.fr/observations/observation-058556f1-56b9-4a9c-98f1-103dcdb4e02e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0117-scaled.jpg,,FALSE, +N1,58569,sortie-058556f1-56b9-4a9c-98f1-103dcdb4e02e,https://biolit.fr/sorties/sortie-058556f1-56b9-4a9c-98f1-103dcdb4e02e/,Jusup,,09/09/2022,12.0000000,12.0000000,47.612506000000,-3.171555000000,,Plage de Porh-Kehouet,30041,observation-058556f1-56b9-4a9c-98f1-103dcdb4e02e-3,https://biolit.fr/observations/observation-058556f1-56b9-4a9c-98f1-103dcdb4e02e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0118-scaled.jpg,,FALSE, +N1,58569,sortie-058556f1-56b9-4a9c-98f1-103dcdb4e02e,https://biolit.fr/sorties/sortie-058556f1-56b9-4a9c-98f1-103dcdb4e02e/,Jusup,,09/09/2022,12.0000000,12.0000000,47.612506000000,-3.171555000000,,Plage de Porh-Kehouet,30043,observation-058556f1-56b9-4a9c-98f1-103dcdb4e02e-4,https://biolit.fr/observations/observation-058556f1-56b9-4a9c-98f1-103dcdb4e02e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0121-scaled.jpg,,FALSE, +N1,58569,sortie-058556f1-56b9-4a9c-98f1-103dcdb4e02e,https://biolit.fr/sorties/sortie-058556f1-56b9-4a9c-98f1-103dcdb4e02e/,Jusup,,09/09/2022,12.0000000,12.0000000,47.612506000000,-3.171555000000,,Plage de Porh-Kehouet,30045,observation-058556f1-56b9-4a9c-98f1-103dcdb4e02e-5,https://biolit.fr/observations/observation-058556f1-56b9-4a9c-98f1-103dcdb4e02e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0123-scaled.jpg,,FALSE, +N1,58569,sortie-058556f1-56b9-4a9c-98f1-103dcdb4e02e,https://biolit.fr/sorties/sortie-058556f1-56b9-4a9c-98f1-103dcdb4e02e/,Jusup,,09/09/2022,12.0000000,12.0000000,47.612506000000,-3.171555000000,,Plage de Porh-Kehouet,30047,observation-058556f1-56b9-4a9c-98f1-103dcdb4e02e-6,https://biolit.fr/observations/observation-058556f1-56b9-4a9c-98f1-103dcdb4e02e-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0124-scaled.jpg,,FALSE, +N1,58569,sortie-058556f1-56b9-4a9c-98f1-103dcdb4e02e,https://biolit.fr/sorties/sortie-058556f1-56b9-4a9c-98f1-103dcdb4e02e/,Jusup,,09/09/2022,12.0000000,12.0000000,47.612506000000,-3.171555000000,,Plage de Porh-Kehouet,30049,observation-058556f1-56b9-4a9c-98f1-103dcdb4e02e-7,https://biolit.fr/observations/observation-058556f1-56b9-4a9c-98f1-103dcdb4e02e-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0127-scaled.jpg,,FALSE, +N1,58569,sortie-058556f1-56b9-4a9c-98f1-103dcdb4e02e,https://biolit.fr/sorties/sortie-058556f1-56b9-4a9c-98f1-103dcdb4e02e/,Jusup,,09/09/2022,12.0000000,12.0000000,47.612506000000,-3.171555000000,,Plage de Porh-Kehouet,30051,observation-058556f1-56b9-4a9c-98f1-103dcdb4e02e-8,https://biolit.fr/observations/observation-058556f1-56b9-4a9c-98f1-103dcdb4e02e-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0126-scaled.jpg,,FALSE, +N1,58570,sortie-2fc3fb44-c26b-4303-b2a4-b74575092bc7,https://biolit.fr/sorties/sortie-2fc3fb44-c26b-4303-b2a4-b74575092bc7/,Jusup,,09/09/2022,10.0000000,11.0000000,47.541518000000,-3.133339000000,,plage de kerhostin,30053,observation-2fc3fb44-c26b-4303-b2a4-b74575092bc7,https://biolit.fr/observations/observation-2fc3fb44-c26b-4303-b2a4-b74575092bc7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0098-scaled.jpg,,FALSE, +N1,58570,sortie-2fc3fb44-c26b-4303-b2a4-b74575092bc7,https://biolit.fr/sorties/sortie-2fc3fb44-c26b-4303-b2a4-b74575092bc7/,Jusup,,09/09/2022,10.0000000,11.0000000,47.541518000000,-3.133339000000,,plage de kerhostin,30055,observation-2fc3fb44-c26b-4303-b2a4-b74575092bc7-2,https://biolit.fr/observations/observation-2fc3fb44-c26b-4303-b2a4-b74575092bc7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0103-scaled.jpg,,FALSE, +N1,58570,sortie-2fc3fb44-c26b-4303-b2a4-b74575092bc7,https://biolit.fr/sorties/sortie-2fc3fb44-c26b-4303-b2a4-b74575092bc7/,Jusup,,09/09/2022,10.0000000,11.0000000,47.541518000000,-3.133339000000,,plage de kerhostin,30057,observation-2fc3fb44-c26b-4303-b2a4-b74575092bc7-3,https://biolit.fr/observations/observation-2fc3fb44-c26b-4303-b2a4-b74575092bc7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0099-scaled.jpg,,FALSE, +N1,58570,sortie-2fc3fb44-c26b-4303-b2a4-b74575092bc7,https://biolit.fr/sorties/sortie-2fc3fb44-c26b-4303-b2a4-b74575092bc7/,Jusup,,09/09/2022,10.0000000,11.0000000,47.541518000000,-3.133339000000,,plage de kerhostin,30059,observation-2fc3fb44-c26b-4303-b2a4-b74575092bc7-4,https://biolit.fr/observations/observation-2fc3fb44-c26b-4303-b2a4-b74575092bc7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0100-scaled.jpg,,FALSE, +N1,58570,sortie-2fc3fb44-c26b-4303-b2a4-b74575092bc7,https://biolit.fr/sorties/sortie-2fc3fb44-c26b-4303-b2a4-b74575092bc7/,Jusup,,09/09/2022,10.0000000,11.0000000,47.541518000000,-3.133339000000,,plage de kerhostin,30061,observation-2fc3fb44-c26b-4303-b2a4-b74575092bc7-5,https://biolit.fr/observations/observation-2fc3fb44-c26b-4303-b2a4-b74575092bc7-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0104-scaled.jpg,,FALSE, +N1,58570,sortie-2fc3fb44-c26b-4303-b2a4-b74575092bc7,https://biolit.fr/sorties/sortie-2fc3fb44-c26b-4303-b2a4-b74575092bc7/,Jusup,,09/09/2022,10.0000000,11.0000000,47.541518000000,-3.133339000000,,plage de kerhostin,30063,observation-2fc3fb44-c26b-4303-b2a4-b74575092bc7-6,https://biolit.fr/observations/observation-2fc3fb44-c26b-4303-b2a4-b74575092bc7-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0107-scaled.jpg,,FALSE, +N1,58570,sortie-2fc3fb44-c26b-4303-b2a4-b74575092bc7,https://biolit.fr/sorties/sortie-2fc3fb44-c26b-4303-b2a4-b74575092bc7/,Jusup,,09/09/2022,10.0000000,11.0000000,47.541518000000,-3.133339000000,,plage de kerhostin,30065,observation-2fc3fb44-c26b-4303-b2a4-b74575092bc7-7,https://biolit.fr/observations/observation-2fc3fb44-c26b-4303-b2a4-b74575092bc7-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0112-scaled.jpg,,FALSE, +N1,58570,sortie-2fc3fb44-c26b-4303-b2a4-b74575092bc7,https://biolit.fr/sorties/sortie-2fc3fb44-c26b-4303-b2a4-b74575092bc7/,Jusup,,09/09/2022,10.0000000,11.0000000,47.541518000000,-3.133339000000,,plage de kerhostin,30067,observation-2fc3fb44-c26b-4303-b2a4-b74575092bc7-8,https://biolit.fr/observations/observation-2fc3fb44-c26b-4303-b2a4-b74575092bc7-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0113-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30069,observation-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0060-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30071,observation-69d49537-aab8-4ea0-91bd-1417586b979a-2,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0061-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30073,observation-69d49537-aab8-4ea0-91bd-1417586b979a-3,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0062-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30075,observation-69d49537-aab8-4ea0-91bd-1417586b979a-4,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0063-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30077,observation-69d49537-aab8-4ea0-91bd-1417586b979a-5,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-5/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_0064-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30078,observation-69d49537-aab8-4ea0-91bd-1417586b979a-6,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0065_0-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30080,observation-69d49537-aab8-4ea0-91bd-1417586b979a-7,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0067-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30082,observation-69d49537-aab8-4ea0-91bd-1417586b979a-8,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0069-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30084,observation-69d49537-aab8-4ea0-91bd-1417586b979a-9,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0070_0-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30086,observation-69d49537-aab8-4ea0-91bd-1417586b979a-10,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0073-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30088,observation-69d49537-aab8-4ea0-91bd-1417586b979a-11,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0076-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30090,observation-69d49537-aab8-4ea0-91bd-1417586b979a-12,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0074-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30092,observation-69d49537-aab8-4ea0-91bd-1417586b979a-13,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0077-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30094,observation-69d49537-aab8-4ea0-91bd-1417586b979a-14,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0079-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30096,observation-69d49537-aab8-4ea0-91bd-1417586b979a-15,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0081-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30098,observation-69d49537-aab8-4ea0-91bd-1417586b979a-16,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0080-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30100,observation-69d49537-aab8-4ea0-91bd-1417586b979a-17,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0084-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30102,observation-69d49537-aab8-4ea0-91bd-1417586b979a-18,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0088-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30104,observation-69d49537-aab8-4ea0-91bd-1417586b979a-19,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0092-scaled.jpg,,FALSE, +N1,58573,sortie-b78be47b-627a-4647-a57e-91fa33b268e2,https://biolit.fr/sorties/sortie-b78be47b-627a-4647-a57e-91fa33b268e2/,Nat83,,11/24/2022 0:00,11.0000000,11.0000000,43.270916000000,6.579045000000,,Port Grimaud 83310,30112,observation-b78be47b-627a-4647-a57e-91fa33b268e2,https://biolit.fr/observations/observation-b78be47b-627a-4647-a57e-91fa33b268e2/,Alca torda,Pingouin torda,,https://biolit.fr/wp-content/uploads/2023/07/77E2F921-E47C-4636-9A63-1F1083937DC7.jpeg,,TRUE, +N1,58574,sortie-cbf71238-d3b3-4ace-bf27-608e5a48e262,https://biolit.fr/sorties/sortie-cbf71238-d3b3-4ace-bf27-608e5a48e262/,Nat83,,11/23/2022 0:00,12.0000000,12.0:15,43.271916000000,6.58210200000,,Port Grimaud 83310,30114,observation-cbf71238-d3b3-4ace-bf27-608e5a48e262,https://biolit.fr/observations/observation-cbf71238-d3b3-4ace-bf27-608e5a48e262/,Alca torda,Pingouin torda,,https://biolit.fr/wp-content/uploads/2023/07/1DE7765C-3049-415A-B0DD-EA64FF24D94F-scaled.jpeg,,TRUE, +N1,58575,sortie-2fe57a20-6710-421d-a025-218db1f5ea72,https://biolit.fr/sorties/sortie-2fe57a20-6710-421d-a025-218db1f5ea72/,Nat83,,11/21/2022 0:00,12.0:25,12.0:35,43.27056400000,6.586373000000,,Port Grimaud 83310,30116,observation-2fe57a20-6710-421d-a025-218db1f5ea72,https://biolit.fr/observations/observation-2fe57a20-6710-421d-a025-218db1f5ea72/,Alca torda,Pingouin torda,,https://biolit.fr/wp-content/uploads/2023/07/C3E2AEA7-85F0-4EE7-BBEB-E7198EC30D5A.jpeg,,TRUE, +N1,58576,sortie-de9a40d3-ba94-49ab-9495-02704079f5fb,https://biolit.fr/sorties/sortie-de9a40d3-ba94-49ab-9495-02704079f5fb/,Nat83,,11/20/2022 0:00,17.000005,17.0:15,43.272212000000,6.588175000000,,Port Grimaud 83310,30118,observation-de9a40d3-ba94-49ab-9495-02704079f5fb,https://biolit.fr/observations/observation-de9a40d3-ba94-49ab-9495-02704079f5fb/,Alca torda,Pingouin torda,,https://biolit.fr/wp-content/uploads/2023/07/31C41C5B-421E-4AE6-A2F4-A087F7A493FA-scaled.jpeg,,TRUE, +N1,58576,sortie-de9a40d3-ba94-49ab-9495-02704079f5fb,https://biolit.fr/sorties/sortie-de9a40d3-ba94-49ab-9495-02704079f5fb/,Nat83,,11/20/2022 0:00,17.000005,17.0:15,43.272212000000,6.588175000000,,Port Grimaud 83310,30120,observation-de9a40d3-ba94-49ab-9495-02704079f5fb-2,https://biolit.fr/observations/observation-de9a40d3-ba94-49ab-9495-02704079f5fb-2/,Alca torda,Pingouin torda,,https://biolit.fr/wp-content/uploads/2023/07/C61CC781-2BB3-427E-9BCF-2872AA1D58C6-scaled.jpeg,,TRUE, +N1,58577,sortie-3ad42e4b-8769-4b80-9d25-0d75db6f89b7,https://biolit.fr/sorties/sortie-3ad42e4b-8769-4b80-9d25-0d75db6f89b7/,Nat83,,11/20/2022 0:00,7.0:35,7.0000000,43.272607000000,6.58830400000,,Port Grimaud 83310,30122,observation-3ad42e4b-8769-4b80-9d25-0d75db6f89b7,https://biolit.fr/observations/observation-3ad42e4b-8769-4b80-9d25-0d75db6f89b7/,Alca torda,Pingouin torda,,https://biolit.fr/wp-content/uploads/2023/07/F6A5BB66-92B4-4451-B340-D393FAF9562A.jpeg,,TRUE, +N1,58578,sortie-9a491432-de3b-4e4f-8625-2141c6a8687b,https://biolit.fr/sorties/sortie-9a491432-de3b-4e4f-8625-2141c6a8687b/,Nat83,,11/19/2022 0:00,11.0000000,11.0000000,43.272673000000,6.588100000000,,Port Grimaud 83310,30124,observation-9a491432-de3b-4e4f-8625-2141c6a8687b,https://biolit.fr/observations/observation-9a491432-de3b-4e4f-8625-2141c6a8687b/,Alca torda,Pingouin torda,,https://biolit.fr/wp-content/uploads/2023/07/A403185C-FA4F-4154-A9C9-0DF78ED98436.jpeg,,TRUE, +N1,58579,sortie-963bdc1b-7149-46f0-88f0-2538a9b48308,https://biolit.fr/sorties/sortie-963bdc1b-7149-46f0-88f0-2538a9b48308/,Roman,,11/07/2022,17.0000000,18.0000000,47.708292000000,-3.361640000000,,Port-Louis,30126,observation-963bdc1b-7149-46f0-88f0-2538a9b48308,https://biolit.fr/observations/observation-963bdc1b-7149-46f0-88f0-2538a9b48308/,,,,https://biolit.fr/wp-content/uploads/2023/07/Arrivage de plastique.PNG,,FALSE, +N1,58579,sortie-963bdc1b-7149-46f0-88f0-2538a9b48308,https://biolit.fr/sorties/sortie-963bdc1b-7149-46f0-88f0-2538a9b48308/,Roman,,11/07/2022,17.0000000,18.0000000,47.708292000000,-3.361640000000,,Port-Louis,30128,observation-963bdc1b-7149-46f0-88f0-2538a9b48308-2,https://biolit.fr/observations/observation-963bdc1b-7149-46f0-88f0-2538a9b48308-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capsule d'oeuf de roussette.PNG,,FALSE, +N1,58579,sortie-963bdc1b-7149-46f0-88f0-2538a9b48308,https://biolit.fr/sorties/sortie-963bdc1b-7149-46f0-88f0-2538a9b48308/,Roman,,11/07/2022,17.0000000,18.0000000,47.708292000000,-3.361640000000,,Port-Louis,30130,observation-963bdc1b-7149-46f0-88f0-2538a9b48308-3,https://biolit.fr/observations/observation-963bdc1b-7149-46f0-88f0-2538a9b48308-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Laminaria sp_0.PNG,,FALSE, +N1,58579,sortie-963bdc1b-7149-46f0-88f0-2538a9b48308,https://biolit.fr/sorties/sortie-963bdc1b-7149-46f0-88f0-2538a9b48308/,Roman,,11/07/2022,17.0000000,18.0000000,47.708292000000,-3.361640000000,,Port-Louis,30132,observation-963bdc1b-7149-46f0-88f0-2538a9b48308-4,https://biolit.fr/observations/observation-963bdc1b-7149-46f0-88f0-2538a9b48308-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pelagia noctiluca.PNG,,FALSE, +N1,58579,sortie-963bdc1b-7149-46f0-88f0-2538a9b48308,https://biolit.fr/sorties/sortie-963bdc1b-7149-46f0-88f0-2538a9b48308/,Roman,,11/07/2022,17.0000000,18.0000000,47.708292000000,-3.361640000000,,Port-Louis,30134,observation-963bdc1b-7149-46f0-88f0-2538a9b48308-5,https://biolit.fr/observations/observation-963bdc1b-7149-46f0-88f0-2538a9b48308-5/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/Physalia physalis.jpg,,TRUE, +N1,58579,sortie-963bdc1b-7149-46f0-88f0-2538a9b48308,https://biolit.fr/sorties/sortie-963bdc1b-7149-46f0-88f0-2538a9b48308/,Roman,,11/07/2022,17.0000000,18.0000000,47.708292000000,-3.361640000000,,Port-Louis,30136,observation-963bdc1b-7149-46f0-88f0-2538a9b48308-6,https://biolit.fr/observations/observation-963bdc1b-7149-46f0-88f0-2538a9b48308-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sepia sp.PNG,,FALSE, +N1,58579,sortie-963bdc1b-7149-46f0-88f0-2538a9b48308,https://biolit.fr/sorties/sortie-963bdc1b-7149-46f0-88f0-2538a9b48308/,Roman,,11/07/2022,17.0000000,18.0000000,47.708292000000,-3.361640000000,,Port-Louis,30138,observation-963bdc1b-7149-46f0-88f0-2538a9b48308-7,https://biolit.fr/observations/observation-963bdc1b-7149-46f0-88f0-2538a9b48308-7/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Velella velella_4.PNG,,TRUE, +N1,58579,sortie-963bdc1b-7149-46f0-88f0-2538a9b48308,https://biolit.fr/sorties/sortie-963bdc1b-7149-46f0-88f0-2538a9b48308/,Roman,,11/07/2022,17.0000000,18.0000000,47.708292000000,-3.361640000000,,Port-Louis,30140,observation-963bdc1b-7149-46f0-88f0-2538a9b48308-8,https://biolit.fr/observations/observation-963bdc1b-7149-46f0-88f0-2538a9b48308-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Zostera marina_4.PNG,,FALSE, +N1,58580,sortie-9b60f20f-8912-43d0-af93-285abebc148f,https://biolit.fr/sorties/sortie-9b60f20f-8912-43d0-af93-285abebc148f/,Marine,,10/30/2022 0:00,16.0:15,16.0:25,46.148205000000,-1.211011000000,,Chef de Baie,30142,observation-9b60f20f-8912-43d0-af93-285abebc148f,https://biolit.fr/observations/observation-9b60f20f-8912-43d0-af93-285abebc148f/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221030_153301_compress97-scaled.jpg,,TRUE, +N1,58580,sortie-9b60f20f-8912-43d0-af93-285abebc148f,https://biolit.fr/sorties/sortie-9b60f20f-8912-43d0-af93-285abebc148f/,Marine,,10/30/2022 0:00,16.0:15,16.0:25,46.148205000000,-1.211011000000,,Chef de Baie,30144,observation-9b60f20f-8912-43d0-af93-285abebc148f-2,https://biolit.fr/observations/observation-9b60f20f-8912-43d0-af93-285abebc148f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221030_153323_compress93-scaled.jpg,,FALSE, +N1,58580,sortie-9b60f20f-8912-43d0-af93-285abebc148f,https://biolit.fr/sorties/sortie-9b60f20f-8912-43d0-af93-285abebc148f/,Marine,,10/30/2022 0:00,16.0:15,16.0:25,46.148205000000,-1.211011000000,,Chef de Baie,30146,observation-9b60f20f-8912-43d0-af93-285abebc148f-3,https://biolit.fr/observations/observation-9b60f20f-8912-43d0-af93-285abebc148f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221030_153915_compress98-scaled.jpg,,FALSE, +N1,58580,sortie-9b60f20f-8912-43d0-af93-285abebc148f,https://biolit.fr/sorties/sortie-9b60f20f-8912-43d0-af93-285abebc148f/,Marine,,10/30/2022 0:00,16.0:15,16.0:25,46.148205000000,-1.211011000000,,Chef de Baie,30148,observation-9b60f20f-8912-43d0-af93-285abebc148f-4,https://biolit.fr/observations/observation-9b60f20f-8912-43d0-af93-285abebc148f-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221030_154101_compress22-scaled.jpg,,TRUE, +N1,58580,sortie-9b60f20f-8912-43d0-af93-285abebc148f,https://biolit.fr/sorties/sortie-9b60f20f-8912-43d0-af93-285abebc148f/,Marine,,10/30/2022 0:00,16.0:15,16.0:25,46.148205000000,-1.211011000000,,Chef de Baie,30150,observation-9b60f20f-8912-43d0-af93-285abebc148f-5,https://biolit.fr/observations/observation-9b60f20f-8912-43d0-af93-285abebc148f-5/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221030_154155_compress61-scaled.jpg,,TRUE, +N1,58580,sortie-9b60f20f-8912-43d0-af93-285abebc148f,https://biolit.fr/sorties/sortie-9b60f20f-8912-43d0-af93-285abebc148f/,Marine,,10/30/2022 0:00,16.0:15,16.0:25,46.148205000000,-1.211011000000,,Chef de Baie,30152,observation-9b60f20f-8912-43d0-af93-285abebc148f-6,https://biolit.fr/observations/observation-9b60f20f-8912-43d0-af93-285abebc148f-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221030_154159_compress62-scaled.jpg,,FALSE, +N1,58581,sortie-9577f933-51e5-4d6c-93c4-f3feb02953c9,https://biolit.fr/sorties/sortie-9577f933-51e5-4d6c-93c4-f3feb02953c9/,Marine,,9/28/2022 0:00,10.0:35,10.0000000,43.284254000000,5.315855000000,Planète Mer,Plage de Saint Esteve,30154,observation-9577f933-51e5-4d6c-93c4-f3feb02953c9,https://biolit.fr/observations/observation-9577f933-51e5-4d6c-93c4-f3feb02953c9/,Larus michahellis,Goéland leucophée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220928_104531_compress99-scaled.jpg,,TRUE, +N1,58581,sortie-9577f933-51e5-4d6c-93c4-f3feb02953c9,https://biolit.fr/sorties/sortie-9577f933-51e5-4d6c-93c4-f3feb02953c9/,Marine,,9/28/2022 0:00,10.0:35,10.0000000,43.284254000000,5.315855000000,Planète Mer,Plage de Saint Esteve,30156,observation-9577f933-51e5-4d6c-93c4-f3feb02953c9-2,https://biolit.fr/observations/observation-9577f933-51e5-4d6c-93c4-f3feb02953c9-2/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220928_104753_compress47-scaled.jpg,,TRUE, +N1,58582,sortie-58f8019b-93e7-4054-a433-0c231d5de174,https://biolit.fr/sorties/sortie-58f8019b-93e7-4054-a433-0c231d5de174/,Groupe Associatif Estuaire,,11/09/2022,10.0000000,12.0000000,46.436816000000,-1.665476000000,,Anse de la République,30158,observation-58f8019b-93e7-4054-a433-0c231d5de174,https://biolit.fr/observations/observation-58f8019b-93e7-4054-a433-0c231d5de174/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221109_100824-scaled.jpg,,TRUE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30160,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,,,,https://biolit.fr/wp-content/uploads/2023/07/Alentia gelatinosa_0.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30162,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-2,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-2/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_13.PNG,,TRUE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30164,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-3,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie sp_6.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30166,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-4,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-4/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_20.PNG,,TRUE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30168,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-5,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_13.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30170,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-6,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Bottrylloides sp.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30172,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-7,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Bottrylloides sp1.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30174,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-8,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Branta bernicla_3.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30176,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-9,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-9/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas précopulation.PNG,,TRUE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30178,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-10,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_11.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30180,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-11,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ciliata mustela_4.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30182,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-12,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ciona intestinalis_3.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30184,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-13,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-13/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crepidula fornicata_6.PNG,,TRUE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30186,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-14,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 1_10.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30188,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-15,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_35.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30190,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-16,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbula magus_0.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30192,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-17,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/Haematopus ostralagus.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30194,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-18,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-18/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/Haliotis tuberculata_10.PNG,,TRUE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30196,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-19,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/lepidochitona c et acanthochitona crinita.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30198,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-20,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lipophrys pholis_2.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30200,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-21,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_12.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30202,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-22,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_29.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30204,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-23,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia_11.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30206,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-24,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/Modiolus sp.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30208,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-25,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-25/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_22.PNG,,TRUE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30210,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-26,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-26/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebra erinaceus_4.PNG,,TRUE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30212,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-27,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ophiothrix fragilis_3.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30214,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-28,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ostrea edulis.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30216,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-29,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_30.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30218,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-30,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes decussatus_2.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30220,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-31,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes philippinarum_2.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30222,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-32,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sagartia sp pe.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30224,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-33,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/Venerupis aurea_3.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30226,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-34,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/Venerupis corrugata_1.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30228,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-35,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa_9.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30230,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-36,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-36/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_20.PNG,,TRUE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30232,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-37,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/Zostera noltii.PNG,,FALSE, +N1,58584,sortie-cdb96b94-2ae4-42c0-8182-9c08f1075ade,https://biolit.fr/sorties/sortie-cdb96b94-2ae4-42c0-8182-9c08f1075ade/,Camille Benyamine,,10/25/2022 0:00,10.0000000,11.0000000,43.214703000000,5.34320100000,,Anse de la Maronaise,30234,observation-cdb96b94-2ae4-42c0-8182-9c08f1075ade,https://biolit.fr/observations/observation-cdb96b94-2ae4-42c0-8182-9c08f1075ade/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221025 OEUF MUREX.jpg,,FALSE, +N1,58584,sortie-cdb96b94-2ae4-42c0-8182-9c08f1075ade,https://biolit.fr/sorties/sortie-cdb96b94-2ae4-42c0-8182-9c08f1075ade/,Camille Benyamine,,10/25/2022 0:00,10.0000000,11.0000000,43.214703000000,5.34320100000,,Anse de la Maronaise,30236,observation-cdb96b94-2ae4-42c0-8182-9c08f1075ade-2,https://biolit.fr/observations/observation-cdb96b94-2ae4-42c0-8182-9c08f1075ade-2/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20221025 OEUFS DE SECHES.jpg,,TRUE, +N1,58585,sortie-6f334b31-a2e0-43e2-8d42-200e471d988a,https://biolit.fr/sorties/sortie-6f334b31-a2e0-43e2-8d42-200e471d988a/,Camille Benyamine,,10/25/2022 0:00,10.0000000,11.0000000,43.214366000000,5.342428000000,Planète Mer,Anse de la Maronaise,30238,observation-6f334b31-a2e0-43e2-8d42-200e471d988a,https://biolit.fr/observations/observation-6f334b31-a2e0-43e2-8d42-200e471d988a/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/20221025 2 ARCHES DE NOE_0-scaled.jpg,,TRUE, +N1,58585,sortie-6f334b31-a2e0-43e2-8d42-200e471d988a,https://biolit.fr/sorties/sortie-6f334b31-a2e0-43e2-8d42-200e471d988a/,Camille Benyamine,,10/25/2022 0:00,10.0000000,11.0000000,43.214366000000,5.342428000000,Planète Mer,Anse de la Maronaise,30240,observation-6f334b31-a2e0-43e2-8d42-200e471d988a-2,https://biolit.fr/observations/observation-6f334b31-a2e0-43e2-8d42-200e471d988a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221025 CRABE-scaled.jpg,,FALSE, +N1,58586,sortie-c35e7c7e-00a5-4493-82ba-a75b3ea09c00,https://biolit.fr/sorties/sortie-c35e7c7e-00a5-4493-82ba-a75b3ea09c00/,CPIE Flandre Maritime,,10/04/2022,8.0000000,12.0000000,51.072066000000,2.487657000000,,Plage de Zuydcoote,30242,observation-c35e7c7e-00a5-4493-82ba-a75b3ea09c00,https://biolit.fr/observations/observation-c35e7c7e-00a5-4493-82ba-a75b3ea09c00/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221004_111406-min-scaled.jpg,,FALSE, +N1,58586,sortie-c35e7c7e-00a5-4493-82ba-a75b3ea09c00,https://biolit.fr/sorties/sortie-c35e7c7e-00a5-4493-82ba-a75b3ea09c00/,CPIE Flandre Maritime,,10/04/2022,8.0000000,12.0000000,51.072066000000,2.487657000000,,Plage de Zuydcoote,30244,observation-c35e7c7e-00a5-4493-82ba-a75b3ea09c00-2,https://biolit.fr/observations/observation-c35e7c7e-00a5-4493-82ba-a75b3ea09c00-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221004_111407-min-scaled.jpg,,FALSE, +N1,58586,sortie-c35e7c7e-00a5-4493-82ba-a75b3ea09c00,https://biolit.fr/sorties/sortie-c35e7c7e-00a5-4493-82ba-a75b3ea09c00/,CPIE Flandre Maritime,,10/04/2022,8.0000000,12.0000000,51.072066000000,2.487657000000,,Plage de Zuydcoote,30246,observation-c35e7c7e-00a5-4493-82ba-a75b3ea09c00-3,https://biolit.fr/observations/observation-c35e7c7e-00a5-4493-82ba-a75b3ea09c00-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221004_111416-min-scaled.jpg,,FALSE, +N1,58586,sortie-c35e7c7e-00a5-4493-82ba-a75b3ea09c00,https://biolit.fr/sorties/sortie-c35e7c7e-00a5-4493-82ba-a75b3ea09c00/,CPIE Flandre Maritime,,10/04/2022,8.0000000,12.0000000,51.072066000000,2.487657000000,,Plage de Zuydcoote,30248,observation-c35e7c7e-00a5-4493-82ba-a75b3ea09c00-4,https://biolit.fr/observations/observation-c35e7c7e-00a5-4493-82ba-a75b3ea09c00-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221004_111419-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30250,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_105946-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30252,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-2,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_105949-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30254,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-3,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_105955-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30256,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-4,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_110007-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30258,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-5,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_110009-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30260,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-6,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111244-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30262,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-7,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111322-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30264,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-8,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111333-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30266,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-9,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111336-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30268,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-10,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111348-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30270,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-11,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111352-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30272,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-12,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_105957-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30274,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-13,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_113112-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30276,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-14,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_112925-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30278,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-15,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_112917-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30280,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-16,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_112849-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30282,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-17,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_112604-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30284,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-18,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_112411-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30286,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-19,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_112228-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30288,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-20,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_112227-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30290,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-21,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_112201-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30292,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-22,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_112053-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30294,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-23,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111805-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30296,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-24,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111800-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30298,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-25,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111757-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30300,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-26,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111423-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30302,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-27,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111412-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30304,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-28,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111427-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30306,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-29,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111453-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30308,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-30,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111504-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30310,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-31,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111511-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30312,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-32,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111524-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30314,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-33,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111532-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30316,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-34,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111550-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30318,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-35,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111606-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30320,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-36,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-36/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111610-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30322,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-37,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111623-min-scaled.jpg,,FALSE, +N1,58588,sortie-57a824dc-423f-47a4-bf77-7adbdd52887a,https://biolit.fr/sorties/sortie-57a824dc-423f-47a4-bf77-7adbdd52887a/,CPIE Flandre Maritime,,10/04/2022,14.0000000,17.0000000,51.070655000000,2.483397000000,,Plage de Zuydcoote,30324,observation-57a824dc-423f-47a4-bf77-7adbdd52887a,https://biolit.fr/observations/observation-57a824dc-423f-47a4-bf77-7adbdd52887a/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221004_160911-min-scaled.jpg,,FALSE, +N1,58588,sortie-57a824dc-423f-47a4-bf77-7adbdd52887a,https://biolit.fr/sorties/sortie-57a824dc-423f-47a4-bf77-7adbdd52887a/,CPIE Flandre Maritime,,10/04/2022,14.0000000,17.0000000,51.070655000000,2.483397000000,,Plage de Zuydcoote,30326,observation-57a824dc-423f-47a4-bf77-7adbdd52887a-2,https://biolit.fr/observations/observation-57a824dc-423f-47a4-bf77-7adbdd52887a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221004_160913-min-scaled.jpg,,FALSE, +N1,58588,sortie-57a824dc-423f-47a4-bf77-7adbdd52887a,https://biolit.fr/sorties/sortie-57a824dc-423f-47a4-bf77-7adbdd52887a/,CPIE Flandre Maritime,,10/04/2022,14.0000000,17.0000000,51.070655000000,2.483397000000,,Plage de Zuydcoote,30328,observation-57a824dc-423f-47a4-bf77-7adbdd52887a-3,https://biolit.fr/observations/observation-57a824dc-423f-47a4-bf77-7adbdd52887a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221004_160914-min-scaled.jpg,,FALSE, +N1,58589,sortie-a1d799e4-2132-4ad9-a75e-f5c3e7f1a5e2,https://biolit.fr/sorties/sortie-a1d799e4-2132-4ad9-a75e-f5c3e7f1a5e2/,CPIE Flandre Maritime,,10/03/2022,13.0000000,16.0000000,51.072018000000,2.487625000000,,Plage de Zuydcoote,30330,observation-a1d799e4-2132-4ad9-a75e-f5c3e7f1a5e2,https://biolit.fr/observations/observation-a1d799e4-2132-4ad9-a75e-f5c3e7f1a5e2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221003_160857-min-scaled.jpg,,FALSE, +N1,58590,sortie-8c8a51d6-bec7-460a-b38d-438782278fa4,https://biolit.fr/sorties/sortie-8c8a51d6-bec7-460a-b38d-438782278fa4/,CPIE Flandre Maritime,,9/30/2022 0:00,8.0:55,11.0:55,51.072075000000,2.487635000000,,Plage de Zuydcoote,30332,observation-8c8a51d6-bec7-460a-b38d-438782278fa4,https://biolit.fr/observations/observation-8c8a51d6-bec7-460a-b38d-438782278fa4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220930_104925-min-scaled.jpg,,FALSE, +N1,58591,sortie-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63,https://biolit.fr/sorties/sortie-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63/,CPIE Flandre Maritime,,9/29/2022 0:00,8.0000000,11.0:35,51.072001000000,2.487689000000,,Plage de Zuydcoote,30334,observation-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63,https://biolit.fr/observations/observation-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_155007-min-scaled.jpg,,FALSE, +N1,58591,sortie-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63,https://biolit.fr/sorties/sortie-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63/,CPIE Flandre Maritime,,9/29/2022 0:00,8.0000000,11.0:35,51.072001000000,2.487689000000,,Plage de Zuydcoote,30336,observation-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63-2,https://biolit.fr/observations/observation-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_155010-min-scaled.jpg,,FALSE, +N1,58591,sortie-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63,https://biolit.fr/sorties/sortie-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63/,CPIE Flandre Maritime,,9/29/2022 0:00,8.0000000,11.0:35,51.072001000000,2.487689000000,,Plage de Zuydcoote,30338,observation-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63-3,https://biolit.fr/observations/observation-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_155015-min-scaled.jpg,,FALSE, +N1,58591,sortie-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63,https://biolit.fr/sorties/sortie-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63/,CPIE Flandre Maritime,,9/29/2022 0:00,8.0000000,11.0:35,51.072001000000,2.487689000000,,Plage de Zuydcoote,30340,observation-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63-4,https://biolit.fr/observations/observation-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_155023-min-scaled.jpg,,FALSE, +N1,58591,sortie-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63,https://biolit.fr/sorties/sortie-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63/,CPIE Flandre Maritime,,9/29/2022 0:00,8.0000000,11.0:35,51.072001000000,2.487689000000,,Plage de Zuydcoote,30342,observation-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63-5,https://biolit.fr/observations/observation-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_155031-min-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30344,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_105134-min_0-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30346,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-2,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_105136-min_0-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30348,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-3,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_105138-min_0-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30350,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-4,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_105145-min_0-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30352,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-5,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_105203-min_0-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30354,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-6,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_105215-min_0-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30356,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-7,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_105219-min_0-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30358,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-8,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_105222-min_0-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30360,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-9,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_105240-min_0-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30362,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-10,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_105324-min_0-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30364,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-11,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_110330-min_0-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30366,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-12,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_110405-min_0-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30368,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-13,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_110411-min-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30370,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-14,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_110447-min-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30372,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-15,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_110456-min-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30374,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-16,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_110517-min-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30376,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-17,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_111136-min-scaled.jpg,,FALSE, +N1,58593,sortie-e2bae3dd-9de9-485d-9fa2-517514f11665,https://biolit.fr/sorties/sortie-e2bae3dd-9de9-485d-9fa2-517514f11665/,CPIE Flandre Maritime,,9/22/2022 0:00,9.0000000,12.0000000,51.051570000000,2.400474000000,,Plage de Malo-les-Bains,30378,observation-e2bae3dd-9de9-485d-9fa2-517514f11665,https://biolit.fr/observations/observation-e2bae3dd-9de9-485d-9fa2-517514f11665/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220922_111312-min-scaled.jpg,,FALSE, +N1,58593,sortie-e2bae3dd-9de9-485d-9fa2-517514f11665,https://biolit.fr/sorties/sortie-e2bae3dd-9de9-485d-9fa2-517514f11665/,CPIE Flandre Maritime,,9/22/2022 0:00,9.0000000,12.0000000,51.051570000000,2.400474000000,,Plage de Malo-les-Bains,30380,observation-e2bae3dd-9de9-485d-9fa2-517514f11665-2,https://biolit.fr/observations/observation-e2bae3dd-9de9-485d-9fa2-517514f11665-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220922_111314-min-scaled.jpg,,FALSE, +N1,58593,sortie-e2bae3dd-9de9-485d-9fa2-517514f11665,https://biolit.fr/sorties/sortie-e2bae3dd-9de9-485d-9fa2-517514f11665/,CPIE Flandre Maritime,,9/22/2022 0:00,9.0000000,12.0000000,51.051570000000,2.400474000000,,Plage de Malo-les-Bains,30382,observation-e2bae3dd-9de9-485d-9fa2-517514f11665-3,https://biolit.fr/observations/observation-e2bae3dd-9de9-485d-9fa2-517514f11665-3/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/20220922_111436-min-scaled.jpg,,TRUE, +N1,58593,sortie-e2bae3dd-9de9-485d-9fa2-517514f11665,https://biolit.fr/sorties/sortie-e2bae3dd-9de9-485d-9fa2-517514f11665/,CPIE Flandre Maritime,,9/22/2022 0:00,9.0000000,12.0000000,51.051570000000,2.400474000000,,Plage de Malo-les-Bains,30384,observation-e2bae3dd-9de9-485d-9fa2-517514f11665-4,https://biolit.fr/observations/observation-e2bae3dd-9de9-485d-9fa2-517514f11665-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220922_111438-min-scaled.jpg,,FALSE, +N1,58594,sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629,https://biolit.fr/sorties/sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629/,CPIE Flandre Maritime,,9/20/2022 0:00,9.0000000,12.0000000,51.052070000000,2.404337000000,,Plage de Malo-les-Bains,30386,observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629,https://biolit.fr/observations/observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220920_113533-min-scaled.jpg,,FALSE, +N1,58594,sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629,https://biolit.fr/sorties/sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629/,CPIE Flandre Maritime,,9/20/2022 0:00,9.0000000,12.0000000,51.052070000000,2.404337000000,,Plage de Malo-les-Bains,30388,observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-2,https://biolit.fr/observations/observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220920_113541-min-scaled.jpg,,FALSE, +N1,58594,sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629,https://biolit.fr/sorties/sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629/,CPIE Flandre Maritime,,9/20/2022 0:00,9.0000000,12.0000000,51.052070000000,2.404337000000,,Plage de Malo-les-Bains,30390,observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-3,https://biolit.fr/observations/observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220920_113550-min-scaled.jpg,,FALSE, +N1,58594,sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629,https://biolit.fr/sorties/sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629/,CPIE Flandre Maritime,,9/20/2022 0:00,9.0000000,12.0000000,51.052070000000,2.404337000000,,Plage de Malo-les-Bains,30392,observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-4,https://biolit.fr/observations/observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220920_113609-min-scaled.jpg,,FALSE, +N1,58594,sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629,https://biolit.fr/sorties/sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629/,CPIE Flandre Maritime,,9/20/2022 0:00,9.0000000,12.0000000,51.052070000000,2.404337000000,,Plage de Malo-les-Bains,30394,observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-5,https://biolit.fr/observations/observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220920_113614-min-scaled.jpg,,FALSE, +N1,58594,sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629,https://biolit.fr/sorties/sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629/,CPIE Flandre Maritime,,9/20/2022 0:00,9.0000000,12.0000000,51.052070000000,2.404337000000,,Plage de Malo-les-Bains,30396,observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-6,https://biolit.fr/observations/observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220920_114020-min-scaled.jpg,,FALSE, +N1,58594,sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629,https://biolit.fr/sorties/sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629/,CPIE Flandre Maritime,,9/20/2022 0:00,9.0000000,12.0000000,51.052070000000,2.404337000000,,Plage de Malo-les-Bains,30398,observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-7,https://biolit.fr/observations/observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220920_114022-min-scaled.jpg,,FALSE, +N1,58594,sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629,https://biolit.fr/sorties/sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629/,CPIE Flandre Maritime,,9/20/2022 0:00,9.0000000,12.0000000,51.052070000000,2.404337000000,,Plage de Malo-les-Bains,30400,observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-8,https://biolit.fr/observations/observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220920_114024-min-scaled.jpg,,FALSE, +N1,58594,sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629,https://biolit.fr/sorties/sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629/,CPIE Flandre Maritime,,9/20/2022 0:00,9.0000000,12.0000000,51.052070000000,2.404337000000,,Plage de Malo-les-Bains,30402,observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-9,https://biolit.fr/observations/observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220920_114025-min-scaled.jpg,,FALSE, +N1,58594,sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629,https://biolit.fr/sorties/sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629/,CPIE Flandre Maritime,,9/20/2022 0:00,9.0000000,12.0000000,51.052070000000,2.404337000000,,Plage de Malo-les-Bains,30404,observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-10,https://biolit.fr/observations/observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220920_114027-min-scaled.jpg,,FALSE, +N1,58594,sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629,https://biolit.fr/sorties/sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629/,CPIE Flandre Maritime,,9/20/2022 0:00,9.0000000,12.0000000,51.052070000000,2.404337000000,,Plage de Malo-les-Bains,30406,observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-11,https://biolit.fr/observations/observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crabe ...-min-scaled.jpg,,FALSE, +N1,58594,sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629,https://biolit.fr/sorties/sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629/,CPIE Flandre Maritime,,9/20/2022 0:00,9.0000000,12.0000000,51.052070000000,2.404337000000,,Plage de Malo-les-Bains,30408,observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-12,https://biolit.fr/observations/observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Echinocyamus pusillus-min-scaled.jpg,,FALSE, +N1,58594,sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629,https://biolit.fr/sorties/sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629/,CPIE Flandre Maritime,,9/20/2022 0:00,9.0000000,12.0000000,51.052070000000,2.404337000000,,Plage de Malo-les-Bains,30410,observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-13,https://biolit.fr/observations/observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/Magallana gigas-min-scaled.jpg,,FALSE, +N1,58594,sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629,https://biolit.fr/sorties/sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629/,CPIE Flandre Maritime,,9/20/2022 0:00,9.0000000,12.0000000,51.052070000000,2.404337000000,,Plage de Malo-les-Bains,30412,observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-14,https://biolit.fr/observations/observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sepia officinalis-min-scaled.jpg,,FALSE, +N1,58595,sortie-3f6b0d42-130c-4b7d-ba4f-926b3bc5a843,https://biolit.fr/sorties/sortie-3f6b0d42-130c-4b7d-ba4f-926b3bc5a843/,Watch The Sea,,10/01/2022,11.0000000,11.0000000,43.187305000000,5.38882000000,Watch The Sea,Côte Nord de l'Ile Plane,30414,observation-3f6b0d42-130c-4b7d-ba4f-926b3bc5a843,https://biolit.fr/observations/observation-3f6b0d42-130c-4b7d-ba4f-926b3bc5a843/,,,,https://biolit.fr/wp-content/uploads/2023/07/81796.jpg,,FALSE, +N1,58596,sortie-face8305-092b-458a-b7bd-ccef3c592d10,https://biolit.fr/sorties/sortie-face8305-092b-458a-b7bd-ccef3c592d10/,Watch The Sea,,10/01/2022,10.0000000,10.0000000,43.187368000000,5.388434000000,,Côte Nord de l'Ile Plane,30416,observation-face8305-092b-458a-b7bd-ccef3c592d10,https://biolit.fr/observations/observation-face8305-092b-458a-b7bd-ccef3c592d10/,,,,https://biolit.fr/wp-content/uploads/2023/07/28997_2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30418,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2907b2_0.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30420,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-2,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2909_0-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30422,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-3,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-3/,Salicornia spp.,Salicorne,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2908.2_0-scaled.jpg,,TRUE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30424,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-4,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2910.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30426,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-5,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2911-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30428,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-6,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2912.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30430,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-7,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2913.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30432,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-8,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2914.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30434,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-9,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2915.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30436,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-10,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2918.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30438,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-11,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2919.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30440,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-12,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2920.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30442,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-13,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2921.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30444,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-14,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2922-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30446,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-15,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2923-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30448,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-16,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2924.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30450,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-17,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-17/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2928.2.jpg,,TRUE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30452,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-18,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2929.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30454,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-19,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2930.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30456,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-20,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2936.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30458,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-21,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2934-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30460,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-22,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2937.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30462,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-23,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2938.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30464,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-24,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-24/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2939.2.jpg,,TRUE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30466,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-25,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2940.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30468,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-26,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2941.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30470,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-27,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2942.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30472,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-28,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2943-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30474,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-29,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2944-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30476,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-30,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2945-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30478,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-31,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-31/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_2952.2.jpg,,TRUE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30480,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-32,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-32/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_2953.2.jpg,,TRUE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30482,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-33,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-33/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2954.2.jpg,,TRUE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30484,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-34,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2955.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30486,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-35,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2958_0-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30488,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-36,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-36/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2960.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30490,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-37,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2962-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30492,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-38,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-38/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2963-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30494,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-39,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-39/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2964.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30496,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-40,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-40/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2965_2-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30498,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-41,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-41/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2967.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30500,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-42,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-42/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2968.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30502,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-43,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-43/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2971.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30504,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-44,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-44/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2972.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30506,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-45,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-45/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2973_0-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30508,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-46,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-46/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2977.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30510,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-47,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-47/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2978.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30512,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-48,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-48/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2981.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30514,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-49,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-49/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2982_0-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30516,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-50,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-50/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2983-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30518,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-51,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-51/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2984-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30520,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-52,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-52/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2985.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30522,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-53,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-53/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2986.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30524,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-54,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-54/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2987.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30526,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-55,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-55/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2988.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30528,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-56,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-56/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2989.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30530,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-57,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-57/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2990.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30532,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-58,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-58/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2994-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30534,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-59,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-59/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2997-scaled.jpg,,TRUE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30536,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-60,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-60/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2998-scaled.jpg,,TRUE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30538,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-61,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-61/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2999-scaled.jpg,,TRUE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30540,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-62,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-62/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3005.2.jpg,,TRUE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30542,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-63,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-63/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3006.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30544,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-64,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-64/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3009.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30546,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-65,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-65/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3010.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30548,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-66,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-66/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3014.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30550,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-67,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-67/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3015.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30552,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-68,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-68/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3016-scaled.jpg,,FALSE, +N1,58598,sortie-b04ad69e-9099-4110-9820-bd67dfa081d1,https://biolit.fr/sorties/sortie-b04ad69e-9099-4110-9820-bd67dfa081d1/,Julie Codognotto,,10/03/2022,12.0000000,14.0000000,16.49128100000,-61.48822500000,,Anse Castalia en Guadeloupe,30554,observation-b04ad69e-9099-4110-9820-bd67dfa081d1,https://biolit.fr/observations/observation-b04ad69e-9099-4110-9820-bd67dfa081d1/,,,,https://biolit.fr/wp-content/uploads/2023/07/dentfossilisée.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30556,observation-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30558,observation-da99cdbc-9f72-4145-9377-15e697492ac9-2,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragaceae.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30560,observation-da99cdbc-9f72-4145-9377-15e697492ac9-3,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue sp-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30562,observation-da99cdbc-9f72-4145-9377-15e697492ac9-4,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30563,observation-da99cdbc-9f72-4145-9377-15e697492ac9-5,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30565,observation-da99cdbc-9f72-4145-9377-15e697492ac9-6,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_1-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30567,observation-da99cdbc-9f72-4145-9377-15e697492ac9-7,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Balanus perforatus.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30569,observation-da99cdbc-9f72-4145-9377-15e697492ac9-8,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus shclosseri-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30571,observation-da99cdbc-9f72-4145-9377-15e697492ac9-9,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Bottryloides-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30573,observation-da99cdbc-9f72-4145-9377-15e697492ac9-10,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Bryo sp-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30575,observation-da99cdbc-9f72-4145-9377-15e697492ac9-11,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/bulot-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30577,observation-da99cdbc-9f72-4145-9377-15e697492ac9-12,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-12/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_0.jpg,,TRUE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30579,observation-da99cdbc-9f72-4145-9377-15e697492ac9-13,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-13/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas-scaled.jpg,,TRUE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30581,observation-da99cdbc-9f72-4145-9377-15e697492ac9-14,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30583,observation-da99cdbc-9f72-4145-9377-15e697492ac9-15,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Chthamalus stellatus-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30585,observation-da99cdbc-9f72-4145-9377-15e697492ac9-16,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crampon de laminaire-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30587,observation-da99cdbc-9f72-4145-9377-15e697492ac9-17,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/cupule d'haricot de mer.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30589,observation-da99cdbc-9f72-4145-9377-15e697492ac9-18,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30591,observation-da99cdbc-9f72-4145-9377-15e697492ac9-19,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-19/,,,,https://biolit.fr/wp-content/uploads/2023/05/Fucus serratus-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30592,observation-da99cdbc-9f72-4145-9377-15e697492ac9-20,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibulla magu_s-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30594,observation-da99cdbc-9f72-4145-9377-15e697492ac9-21,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/huître plate-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30596,observation-da99cdbc-9f72-4145-9377-15e697492ac9-22,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/laminaria sp-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30598,observation-da99cdbc-9f72-4145-9377-15e697492ac9-23,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30600,observation-da99cdbc-9f72-4145-9377-15e697492ac9-24,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-24/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/lineus longissimus.PNG,,TRUE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30601,observation-da99cdbc-9f72-4145-9377-15e697492ac9-25,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lipos pholis-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30603,observation-da99cdbc-9f72-4145-9377-15e697492ac9-26,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lithophyllum incrustans.PNG,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30604,observation-da99cdbc-9f72-4145-9377-15e697492ac9-27,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/Littorina obtusata_0-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30606,observation-da99cdbc-9f72-4145-9377-15e697492ac9-28,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/Magalla gigas-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30608,observation-da99cdbc-9f72-4145-9377-15e697492ac9-29,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterais glacialis 1-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30610,observation-da99cdbc-9f72-4145-9377-15e697492ac9-30,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/Melarhaphe neritoides-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30612,observation-da99cdbc-9f72-4145-9377-15e697492ac9-31,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_0-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30614,observation-da99cdbc-9f72-4145-9377-15e697492ac9-32,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30616,observation-da99cdbc-9f72-4145-9377-15e697492ac9-33,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis lumbriciformis.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30618,observation-da99cdbc-9f72-4145-9377-15e697492ac9-34,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_0-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30620,observation-da99cdbc-9f72-4145-9377-15e697492ac9-35,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ostrea edulis.PNG,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30621,observation-da99cdbc-9f72-4145-9377-15e697492ac9-36,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-36/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30623,observation-da99cdbc-9f72-4145-9377-15e697492ac9-37,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/Palaemon elegans.PNG,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30624,observation-da99cdbc-9f72-4145-9377-15e697492ac9-38,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-38/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patella vulgata-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30626,observation-da99cdbc-9f72-4145-9377-15e697492ac9-39,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-39/,,,,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30628,observation-da99cdbc-9f72-4145-9377-15e697492ac9-40,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-40/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pince d'eriphia verrucosa.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30630,observation-da99cdbc-9f72-4145-9377-15e697492ac9-41,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-41/,,,,https://biolit.fr/wp-content/uploads/2023/07/plomb de pêche-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30632,observation-da99cdbc-9f72-4145-9377-15e697492ac9-42,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-42/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ponte d'aplysie-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30634,observation-da99cdbc-9f72-4145-9377-15e697492ac9-43,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-43/,,,,https://biolit.fr/wp-content/uploads/2023/07/porcellana platycheles.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30635,observation-da99cdbc-9f72-4145-9377-15e697492ac9-44,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-44/,,,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris-rotated.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30637,observation-da99cdbc-9f72-4145-9377-15e697492ac9-45,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-45/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes decussatus-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30639,observation-da99cdbc-9f72-4145-9377-15e697492ac9-46,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-46/,,,,https://biolit.fr/wp-content/uploads/2023/07/Salaria pavo-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30641,observation-da99cdbc-9f72-4145-9377-15e697492ac9-47,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-47/,,,,https://biolit.fr/wp-content/uploads/2023/07/Spurilla neapolitana-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30643,observation-da99cdbc-9f72-4145-9377-15e697492ac9-48,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-48/,,,,https://biolit.fr/wp-content/uploads/2023/07/Steromphala umbilicalis-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30645,observation-da99cdbc-9f72-4145-9377-15e697492ac9-49,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-49/,,,,https://biolit.fr/wp-content/uploads/2023/07/tomate de mer et petit chiton épineux-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30647,observation-da99cdbc-9f72-4145-9377-15e697492ac9-50,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-50/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ver sp-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30649,observation-da99cdbc-9f72-4145-9377-15e697492ac9-51,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-51/,,,,https://biolit.fr/wp-content/uploads/2023/07/Watersipora subatra-rotated.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30651,observation-da99cdbc-9f72-4145-9377-15e697492ac9-52,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-52/,,,,https://biolit.fr/wp-content/uploads/2023/07/xanthe-scaled.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30653,observation-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 01_0.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30655,observation-3e449323-3615-490f-af44-dde6577863ff-2,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 02_1.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30657,observation-3e449323-3615-490f-af44-dde6577863ff-3,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 03.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30659,observation-3e449323-3615-490f-af44-dde6577863ff-4,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 04.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30661,observation-3e449323-3615-490f-af44-dde6577863ff-5,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 05.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30663,observation-3e449323-3615-490f-af44-dde6577863ff-6,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 06.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30665,observation-3e449323-3615-490f-af44-dde6577863ff-7,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-7/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Image 07.jpg,,TRUE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30667,observation-3e449323-3615-490f-af44-dde6577863ff-8,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-8/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/Image 08.jpg,,TRUE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30669,observation-3e449323-3615-490f-af44-dde6577863ff-9,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 09.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30671,observation-3e449323-3615-490f-af44-dde6577863ff-10,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 10.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30673,observation-3e449323-3615-490f-af44-dde6577863ff-11,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 11.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30675,observation-3e449323-3615-490f-af44-dde6577863ff-12,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 12.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30677,observation-3e449323-3615-490f-af44-dde6577863ff-13,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 13.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30679,observation-3e449323-3615-490f-af44-dde6577863ff-14,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 14.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30681,observation-3e449323-3615-490f-af44-dde6577863ff-15,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 15.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30683,observation-3e449323-3615-490f-af44-dde6577863ff-16,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 16.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30685,observation-3e449323-3615-490f-af44-dde6577863ff-17,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 17.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30687,observation-3e449323-3615-490f-af44-dde6577863ff-18,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 18.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30689,observation-3e449323-3615-490f-af44-dde6577863ff-19,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-19/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Image 19.jpg,,TRUE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30691,observation-3e449323-3615-490f-af44-dde6577863ff-20,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 20.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30693,observation-3e449323-3615-490f-af44-dde6577863ff-21,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 21.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30695,observation-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_143655-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30697,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-2,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_143704-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30699,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-3,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_143710-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30701,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-4,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_143715-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30703,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-5,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_143719-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30705,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-6,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_143726-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30707,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-7,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_143811-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30709,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-8,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_143826-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30711,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-9,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_143843-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30713,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-10,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_143852-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30715,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-11,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_143923-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30717,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-12,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_143926-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30719,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-13,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_143927-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30721,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-14,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_143944-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30723,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-15,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_144147-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30725,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-16,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_144403-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30727,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-17,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_144441-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30729,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-18,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_144451-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30731,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-19,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_144454-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30733,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-20,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_144457-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30735,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-21,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_144514-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30737,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-22,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_144531-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30739,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-23,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_144541-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30741,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-24,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_144610-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30743,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-25,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_144721-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30745,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-26,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_144758-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30747,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-27,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_151048-scaled.jpg,,FALSE, +N1,58602,sortie-5637fca2-e15f-43c2-bc72-ebfcdb19f033,https://biolit.fr/sorties/sortie-5637fca2-e15f-43c2-bc72-ebfcdb19f033/,Phil,,05/01/2022,16.0000000,16.0000000,47.835065000000,-4.347974000000,,Penmarc'h - Finistère,30749,observation-5637fca2-e15f-43c2-bc72-ebfcdb19f033,https://biolit.fr/observations/observation-5637fca2-e15f-43c2-bc72-ebfcdb19f033/,Matthiola sinuata,Giroflée des dunes,,https://biolit.fr/wp-content/uploads/2023/07/20220501_155906-scaled.jpg,,TRUE, +N1,58602,sortie-5637fca2-e15f-43c2-bc72-ebfcdb19f033,https://biolit.fr/sorties/sortie-5637fca2-e15f-43c2-bc72-ebfcdb19f033/,Phil,,05/01/2022,16.0000000,16.0000000,47.835065000000,-4.347974000000,,Penmarc'h - Finistère,30751,observation-5637fca2-e15f-43c2-bc72-ebfcdb19f033-2,https://biolit.fr/observations/observation-5637fca2-e15f-43c2-bc72-ebfcdb19f033-2/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/20220501_161220.jpg,,TRUE, +N1,58602,sortie-5637fca2-e15f-43c2-bc72-ebfcdb19f033,https://biolit.fr/sorties/sortie-5637fca2-e15f-43c2-bc72-ebfcdb19f033/,Phil,,05/01/2022,16.0000000,16.0000000,47.835065000000,-4.347974000000,,Penmarc'h - Finistère,30753,observation-5637fca2-e15f-43c2-bc72-ebfcdb19f033-3,https://biolit.fr/observations/observation-5637fca2-e15f-43c2-bc72-ebfcdb19f033-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220501_161010(0).jpg,,FALSE, +N1,58603,sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e,https://biolit.fr/sorties/sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e/,Anne Dominique PECOT,,9/17/2022 0:00,14.0000000,16.0000000,48.606850000000,-2.161427000000,,LANCIEUX PLAGE DU CADUCET,30755,observation-07c2628d-8f7a-40db-88f1-c2a833c6555e,https://biolit.fr/observations/observation-07c2628d-8f7a-40db-88f1-c2a833c6555e/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220917-WA0010_0.jpg,,FALSE, +N1,58603,sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e,https://biolit.fr/sorties/sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e/,Anne Dominique PECOT,,9/17/2022 0:00,14.0000000,16.0000000,48.606850000000,-2.161427000000,,LANCIEUX PLAGE DU CADUCET,30757,observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-2,https://biolit.fr/observations/observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220917-WA0001.jpg,,FALSE, +N1,58603,sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e,https://biolit.fr/sorties/sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e/,Anne Dominique PECOT,,9/17/2022 0:00,14.0000000,16.0000000,48.606850000000,-2.161427000000,,LANCIEUX PLAGE DU CADUCET,30759,observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-3,https://biolit.fr/observations/observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220917-WA0018.jpg,,FALSE, +N1,58603,sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e,https://biolit.fr/sorties/sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e/,Anne Dominique PECOT,,9/17/2022 0:00,14.0000000,16.0000000,48.606850000000,-2.161427000000,,LANCIEUX PLAGE DU CADUCET,30761,observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-4,https://biolit.fr/observations/observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1062-scaled.jpg,,FALSE, +N1,58603,sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e,https://biolit.fr/sorties/sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e/,Anne Dominique PECOT,,9/17/2022 0:00,14.0000000,16.0000000,48.606850000000,-2.161427000000,,LANCIEUX PLAGE DU CADUCET,30763,observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-5,https://biolit.fr/observations/observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1079-scaled.jpg,,FALSE, +N1,58603,sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e,https://biolit.fr/sorties/sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e/,Anne Dominique PECOT,,9/17/2022 0:00,14.0000000,16.0000000,48.606850000000,-2.161427000000,,LANCIEUX PLAGE DU CADUCET,30765,observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-6,https://biolit.fr/observations/observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1087-scaled.jpg,,FALSE, +N1,58603,sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e,https://biolit.fr/sorties/sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e/,Anne Dominique PECOT,,9/17/2022 0:00,14.0000000,16.0000000,48.606850000000,-2.161427000000,,LANCIEUX PLAGE DU CADUCET,30767,observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-7,https://biolit.fr/observations/observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1085_0-scaled.jpg,,FALSE, +N1,58603,sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e,https://biolit.fr/sorties/sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e/,Anne Dominique PECOT,,9/17/2022 0:00,14.0000000,16.0000000,48.606850000000,-2.161427000000,,LANCIEUX PLAGE DU CADUCET,30769,observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-8,https://biolit.fr/observations/observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1100-scaled.jpg,,FALSE, +N1,58603,sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e,https://biolit.fr/sorties/sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e/,Anne Dominique PECOT,,9/17/2022 0:00,14.0000000,16.0000000,48.606850000000,-2.161427000000,,LANCIEUX PLAGE DU CADUCET,30771,observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-9,https://biolit.fr/observations/observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1126-scaled.jpg,,FALSE, +N1,58603,sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e,https://biolit.fr/sorties/sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e/,Anne Dominique PECOT,,9/17/2022 0:00,14.0000000,16.0000000,48.606850000000,-2.161427000000,,LANCIEUX PLAGE DU CADUCET,30773,observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-10,https://biolit.fr/observations/observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1110-scaled.jpg,,FALSE, +N1,58603,sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e,https://biolit.fr/sorties/sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e/,Anne Dominique PECOT,,9/17/2022 0:00,14.0000000,16.0000000,48.606850000000,-2.161427000000,,LANCIEUX PLAGE DU CADUCET,30775,observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-11,https://biolit.fr/observations/observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1146-scaled.jpg,,FALSE, +N1,58603,sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e,https://biolit.fr/sorties/sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e/,Anne Dominique PECOT,,9/17/2022 0:00,14.0000000,16.0000000,48.606850000000,-2.161427000000,,LANCIEUX PLAGE DU CADUCET,30777,observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-12,https://biolit.fr/observations/observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1132-scaled.jpg,,FALSE, +N1,58604,sortie-83a6f71e-f47d-4657-bc1f-09e816bff132,https://biolit.fr/sorties/sortie-83a6f71e-f47d-4657-bc1f-09e816bff132/,Phil,,09/10/2022,18.0000000,18.0000000,47.881812000000,-4.362512000000,,Plage de Kermabec - Tréguennec - Finistère,30779,observation-83a6f71e-f47d-4657-bc1f-09e816bff132,https://biolit.fr/observations/observation-83a6f71e-f47d-4657-bc1f-09e816bff132/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1130969.JPG,,TRUE, +N1,58604,sortie-83a6f71e-f47d-4657-bc1f-09e816bff132,https://biolit.fr/sorties/sortie-83a6f71e-f47d-4657-bc1f-09e816bff132/,Phil,,09/10/2022,18.0000000,18.0000000,47.881812000000,-4.362512000000,,Plage de Kermabec - Tréguennec - Finistère,30781,observation-83a6f71e-f47d-4657-bc1f-09e816bff132-2,https://biolit.fr/observations/observation-83a6f71e-f47d-4657-bc1f-09e816bff132-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130972.JPG,,FALSE, +N1,58604,sortie-83a6f71e-f47d-4657-bc1f-09e816bff132,https://biolit.fr/sorties/sortie-83a6f71e-f47d-4657-bc1f-09e816bff132/,Phil,,09/10/2022,18.0000000,18.0000000,47.881812000000,-4.362512000000,,Plage de Kermabec - Tréguennec - Finistère,30783,observation-83a6f71e-f47d-4657-bc1f-09e816bff132-3,https://biolit.fr/observations/observation-83a6f71e-f47d-4657-bc1f-09e816bff132-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130973.JPG,,FALSE, +N1,58604,sortie-83a6f71e-f47d-4657-bc1f-09e816bff132,https://biolit.fr/sorties/sortie-83a6f71e-f47d-4657-bc1f-09e816bff132/,Phil,,09/10/2022,18.0000000,18.0000000,47.881812000000,-4.362512000000,,Plage de Kermabec - Tréguennec - Finistère,30785,observation-83a6f71e-f47d-4657-bc1f-09e816bff132-4,https://biolit.fr/observations/observation-83a6f71e-f47d-4657-bc1f-09e816bff132-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130974.JPG,,FALSE, +N1,58604,sortie-83a6f71e-f47d-4657-bc1f-09e816bff132,https://biolit.fr/sorties/sortie-83a6f71e-f47d-4657-bc1f-09e816bff132/,Phil,,09/10/2022,18.0000000,18.0000000,47.881812000000,-4.362512000000,,Plage de Kermabec - Tréguennec - Finistère,30787,observation-83a6f71e-f47d-4657-bc1f-09e816bff132-5,https://biolit.fr/observations/observation-83a6f71e-f47d-4657-bc1f-09e816bff132-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130975.JPG,,FALSE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30789,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,,,,https://biolit.fr/wp-content/uploads/2023/07/305588560_666314197816267_1953876829319553967_n.jpg,,FALSE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30791,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-2,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/305949545_619788366201830_6842376493550192176_n.jpg,,FALSE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30793,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-3,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/306236012_502577811679312_191454333368951009_n.jpg,,FALSE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30795,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-4,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/305608015_617722003174336_5947928907487626923_n.jpg,,TRUE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30797,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-5,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/306055177_1459764144451048_3296221070870805390_n_0.jpg,,FALSE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30799,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-6,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/305709673_1248136745949738_3544101229785422067_n.jpg,,FALSE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30801,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-7,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/306553926_1242140893185175_435522029663659819_n.jpg,,FALSE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30803,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-8,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-8/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/305282039_5438797859580102_7240354752053102754_n.jpg,,TRUE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30805,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-9,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/305670492_1145138243087664_4609713403106986993_n(1).jpg,,FALSE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30807,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-10,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/305753071_765239944773793_2379731755399366165_n.jpg,,FALSE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30809,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-11,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/306092222_1086067128948876_1128595819120493288_n.jpg,,FALSE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30811,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-12,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/305561170_755231265580354_1202362877242840219_n.jpg,,FALSE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30813,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-13,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-13/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/305767082_616762976561204_7796862930687352221_n.jpg,,TRUE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30815,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-14,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-14/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/305464468_642612793837121_2022436790308567084_n.jpg,,TRUE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30817,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-15,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-15/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/305533467_629153605237335_76443199961043203_n.jpg,,TRUE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30819,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-16,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/305472826_578155904058024_5357845986476177309_n.jpg,,FALSE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30821,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-17,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-17/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/305637925_1040727159834658_6427173863072743871_n.jpg,,, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30823,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-18,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-18/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/305529410_617000053413261_4920154097195251455_n_0.jpg,,TRUE, +N1,58606,sortie-2deafc4e-c700-412f-90fa-fc616e6cd60a,https://biolit.fr/sorties/sortie-2deafc4e-c700-412f-90fa-fc616e6cd60a/,Projet Azur - Philo,,09/10/2022,10.0000000,11.0000000,43.430261000000,6.861640000000,,Bay d'Agay,30825,observation-2deafc4e-c700-412f-90fa-fc616e6cd60a,https://biolit.fr/observations/observation-2deafc4e-c700-412f-90fa-fc616e6cd60a/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/thumbnail_image3_0.jpg,,TRUE, +N1,58607,sortie-75c07652-46a5-4c55-af0e-36d07e1cde29,https://biolit.fr/sorties/sortie-75c07652-46a5-4c55-af0e-36d07e1cde29/,Observe la nature,,09/04/2022,10.0000000,12.0000000,48.638712000000,-2.025006000000,,Saint Malo,30827,observation-75c07652-46a5-4c55-af0e-36d07e1cde29,https://biolit.fr/observations/observation-75c07652-46a5-4c55-af0e-36d07e1cde29/,Balistes capriscus,Baliste commun,,https://biolit.fr/wp-content/uploads/2023/07/301696829_1522112161553239_6249772148132312556_n.jpg,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30829,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona fascicularis_6.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30831,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-2,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/anémone sp_8.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30833,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-3,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-3/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/Anthopleura balii_9.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30835,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-4,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-4/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/Arenaria interpres_5.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30837,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-5,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/ascidie sp_8.PNG,,FALSE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30839,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-6,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-6/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_27.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30841,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-7,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_12.PNG,,FALSE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30843,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-8,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-8/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/Balanus perforatus_0.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30845,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-9,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-9/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_17.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30847,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-10,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Bryo sp_1.PNG,,FALSE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30849,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-11,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-11/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_25.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30851,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-12,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-12/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_23.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30853,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-13,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_10.PNG,,FALSE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30855,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-14,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-14/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_17.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30857,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-15,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Doridien sp.PNG,,FALSE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30861,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-17,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-17/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_34.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30863,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-18,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-18/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Eriphia verrucosa_11.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30865,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-19,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-19/,Larus canus,Goéland cendré,,https://biolit.fr/wp-content/uploads/2023/07/Larus sp_1.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30867,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-20,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-20/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_11.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30869,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-21,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-21/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina sp.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30871,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-22,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-22/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_18.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30873,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-23,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-23/,Tritia incrassata,Nasse épaisse,,https://biolit.fr/wp-content/uploads/2023/07/Nassarius incrassatus_3.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30875,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-24,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-24/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_21.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30877,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-25,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-25/,Hediste diversicolor,Néréis multicolore,,https://biolit.fr/wp-content/uploads/2023/07/Nereis.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30879,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-26,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis sp.PNG,,FALSE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30881,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-27,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-27/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebrina erinaceus.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30883,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-28,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ophiothrix sp_0.PNG,,FALSE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30885,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-29,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-29/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_13.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30887,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-30,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-30/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_25.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30889,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-31,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-31/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_29.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30891,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-32,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-32/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/Sabellaria alveolata_9.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30893,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-33,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ver sp_3.PNG,,FALSE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30895,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-34,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-34/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Watersipora subatra_10.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30897,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-35,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-35/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_22.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30899,observation-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita.jpg,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30900,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-2,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea_9.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30902,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-3,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-3/,Actinia striata,Actinie striée,,https://biolit.fr/wp-content/uploads/2023/07/Actinia striatula_0.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30904,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-4,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/ascidie sp_7.PNG,,FALSE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30906,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-5,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-5/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/Balanus perforatus.jpg,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30907,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-6,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/bryo sp_6.PNG,,FALSE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30909,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-7,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-7/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/Clibanarius erythropus_4.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30911,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-8,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-8/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crepidula fornicata_5.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30913,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-9,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-9/,Donacilla cornea,Donacilla cornée,,https://biolit.fr/wp-content/uploads/2023/07/Donacilla cornea_2.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30915,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-10,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-10/,Doris verrucosa,Doris verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/Doris verrucosa_7.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30917,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-11,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-11/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 1_9.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30919,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-12,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_33.PNG,,FALSE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30921,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-13,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-13/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/Larus sp_0.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30923,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-14,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-14/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea 1.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30925,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-15,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-15/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_18.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30927,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-16,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-16/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_11.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30929,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-17,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-17/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_10.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30931,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-18,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-18/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_28.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30933,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-19,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-19/,Modiolus barbatus,Modiole barbue,,https://biolit.fr/wp-content/uploads/2023/07/Modiolus barbatus_4.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30935,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-20,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-20/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_20.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30937,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-21,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-21/,Onchidella celtica,Limace celtique,,https://biolit.fr/wp-content/uploads/2023/07/Onchidella celtica_0.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30939,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-22,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-22/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_12.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30941,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-23,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ponte de doridien.PNG,,FALSE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30943,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-24,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-24/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes decussatus_1.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30945,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-25,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-25/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/Sabellaria alveolata_8.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30947,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-26,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-26/,Sphaeromatidae (famille),Sphéromiens,,https://biolit.fr/wp-content/uploads/2023/07/Sphaeromatidae sp.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30949,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-27,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-27/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_21.PNG,,TRUE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30951,observation-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220818_104514-scaled.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30953,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-2,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220818_112308-scaled.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30955,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-3,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220818_112509-scaled.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30957,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-4,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220818_112511-scaled.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30959,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-5,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220818_112513-scaled.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30961,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-6,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220818_112515-scaled.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30963,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-7,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220818_112517-scaled.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30965,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-8,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220818_112522-scaled.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30967,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-9,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220826-WA0000.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30969,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-10,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220826-WA0002.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30971,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-11,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220826-WA0008.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30973,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-12,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220826-WA0010.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30975,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-13,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220826-WA0011.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30977,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-14,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220826-WA0012.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30979,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-15,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220826-WA0017.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30981,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-16,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220826-WA0018.jpg,",""false""",, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30983,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-17,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220826-WA0019.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30985,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-18,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220826-WA0020.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30987,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-19,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-19/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220826-WA0021.jpg,,TRUE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30989,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-20,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-20/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220826-WA0023.jpg,,, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30991,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-21,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-21/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220826-WA0024.jpg,,TRUE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30993,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-22,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-22/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220826-WA0025.jpg,,TRUE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30995,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-23,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220826-WA0026.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30997,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-24,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220826-WA0027.jpg,,FALSE, +N1,58611,sortie-38c2c691-af45-43a0-b4be-b1d44589ea76,https://biolit.fr/sorties/sortie-38c2c691-af45-43a0-b4be-b1d44589ea76/,MichelB,,8/25/2022 0:00,8.0000000,10.0000000,48.821793000000,-3.066762000000,,Loguivy ,30999,observation-38c2c691-af45-43a0-b4be-b1d44589ea76,https://biolit.fr/observations/observation-38c2c691-af45-43a0-b4be-b1d44589ea76/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7210-scaled.jpg,,TRUE,on +N1,58611,sortie-38c2c691-af45-43a0-b4be-b1d44589ea76,https://biolit.fr/sorties/sortie-38c2c691-af45-43a0-b4be-b1d44589ea76/,MichelB,,8/25/2022 0:00,8.0000000,10.0000000,48.821793000000,-3.066762000000,,Loguivy ,31001,observation-38c2c691-af45-43a0-b4be-b1d44589ea76-2,https://biolit.fr/observations/observation-38c2c691-af45-43a0-b4be-b1d44589ea76-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7222-scaled.jpg,,FALSE, +N1,58611,sortie-38c2c691-af45-43a0-b4be-b1d44589ea76,https://biolit.fr/sorties/sortie-38c2c691-af45-43a0-b4be-b1d44589ea76/,MichelB,,8/25/2022 0:00,8.0000000,10.0000000,48.821793000000,-3.066762000000,,Loguivy ,31003,observation-38c2c691-af45-43a0-b4be-b1d44589ea76-3,https://biolit.fr/observations/observation-38c2c691-af45-43a0-b4be-b1d44589ea76-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7224-scaled.jpg,,FALSE, +N1,58611,sortie-38c2c691-af45-43a0-b4be-b1d44589ea76,https://biolit.fr/sorties/sortie-38c2c691-af45-43a0-b4be-b1d44589ea76/,MichelB,,8/25/2022 0:00,8.0000000,10.0000000,48.821793000000,-3.066762000000,,Loguivy ,31005,observation-38c2c691-af45-43a0-b4be-b1d44589ea76-4,https://biolit.fr/observations/observation-38c2c691-af45-43a0-b4be-b1d44589ea76-4/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7226-scaled.jpg,,, +N1,58611,sortie-38c2c691-af45-43a0-b4be-b1d44589ea76,https://biolit.fr/sorties/sortie-38c2c691-af45-43a0-b4be-b1d44589ea76/,MichelB,,8/25/2022 0:00,8.0000000,10.0000000,48.821793000000,-3.066762000000,,Loguivy ,31007,observation-38c2c691-af45-43a0-b4be-b1d44589ea76-5,https://biolit.fr/observations/observation-38c2c691-af45-43a0-b4be-b1d44589ea76-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7227-scaled.jpg,,FALSE, +N1,58611,sortie-38c2c691-af45-43a0-b4be-b1d44589ea76,https://biolit.fr/sorties/sortie-38c2c691-af45-43a0-b4be-b1d44589ea76/,MichelB,,8/25/2022 0:00,8.0000000,10.0000000,48.821793000000,-3.066762000000,,Loguivy ,31009,observation-38c2c691-af45-43a0-b4be-b1d44589ea76-6,https://biolit.fr/observations/observation-38c2c691-af45-43a0-b4be-b1d44589ea76-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7228-scaled.jpg,,FALSE, +N1,58611,sortie-38c2c691-af45-43a0-b4be-b1d44589ea76,https://biolit.fr/sorties/sortie-38c2c691-af45-43a0-b4be-b1d44589ea76/,MichelB,,8/25/2022 0:00,8.0000000,10.0000000,48.821793000000,-3.066762000000,,Loguivy ,31011,observation-38c2c691-af45-43a0-b4be-b1d44589ea76-7,https://biolit.fr/observations/observation-38c2c691-af45-43a0-b4be-b1d44589ea76-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7229-scaled.jpg,,TRUE, +N1,58611,sortie-38c2c691-af45-43a0-b4be-b1d44589ea76,https://biolit.fr/sorties/sortie-38c2c691-af45-43a0-b4be-b1d44589ea76/,MichelB,,8/25/2022 0:00,8.0000000,10.0000000,48.821793000000,-3.066762000000,,Loguivy ,31013,observation-38c2c691-af45-43a0-b4be-b1d44589ea76-8,https://biolit.fr/observations/observation-38c2c691-af45-43a0-b4be-b1d44589ea76-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7231-scaled.jpg,,FALSE, +N1,58611,sortie-38c2c691-af45-43a0-b4be-b1d44589ea76,https://biolit.fr/sorties/sortie-38c2c691-af45-43a0-b4be-b1d44589ea76/,MichelB,,8/25/2022 0:00,8.0000000,10.0000000,48.821793000000,-3.066762000000,,Loguivy ,31015,observation-38c2c691-af45-43a0-b4be-b1d44589ea76-9,https://biolit.fr/observations/observation-38c2c691-af45-43a0-b4be-b1d44589ea76-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7232-scaled.jpg,,FALSE, +N1,58612,sortie-568c7a7c-8ec8-4f33-93f5-f77b0791fdd8,https://biolit.fr/sorties/sortie-568c7a7c-8ec8-4f33-93f5-f77b0791fdd8/,Julia_mlv,,8/18/2022 0:00,14.0000000,14.0000000,47.693726000000,-3.357333000000,,Gavres - Goërem,31017,observation-568c7a7c-8ec8-4f33-93f5-f77b0791fdd8,https://biolit.fr/observations/observation-568c7a7c-8ec8-4f33-93f5-f77b0791fdd8/,,,,https://biolit.fr/wp-content/uploads/2023/07/415A4F3C-33B3-452F-8859-13E2CA491938-scaled.jpeg,,FALSE, +N1,58612,sortie-568c7a7c-8ec8-4f33-93f5-f77b0791fdd8,https://biolit.fr/sorties/sortie-568c7a7c-8ec8-4f33-93f5-f77b0791fdd8/,Julia_mlv,,8/18/2022 0:00,14.0000000,14.0000000,47.693726000000,-3.357333000000,,Gavres - Goërem,31019,observation-568c7a7c-8ec8-4f33-93f5-f77b0791fdd8-2,https://biolit.fr/observations/observation-568c7a7c-8ec8-4f33-93f5-f77b0791fdd8-2/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/2023/07/E4C8207A-99F9-4975-B463-0ECAC4447156.jpeg,,TRUE, +N1,58612,sortie-568c7a7c-8ec8-4f33-93f5-f77b0791fdd8,https://biolit.fr/sorties/sortie-568c7a7c-8ec8-4f33-93f5-f77b0791fdd8/,Julia_mlv,,8/18/2022 0:00,14.0000000,14.0000000,47.693726000000,-3.357333000000,,Gavres - Goërem,31021,observation-568c7a7c-8ec8-4f33-93f5-f77b0791fdd8-3,https://biolit.fr/observations/observation-568c7a7c-8ec8-4f33-93f5-f77b0791fdd8-3/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/2023/07/42225ACA-E8D1-4919-A0BB-B469B8611B2C-scaled.jpeg,,TRUE, +N1,58613,sortie-92c1f9f8-4c47-4df4-8aac-e8e18177a8a8,https://biolit.fr/sorties/sortie-92c1f9f8-4c47-4df4-8aac-e8e18177a8a8/,Julia_mlv,,8/16/2022 0:00,14.0000000,15.0000000,47.704255000000,-3.355755000000,,Port Louis - Lohic ,31023,observation-92c1f9f8-4c47-4df4-8aac-e8e18177a8a8,https://biolit.fr/observations/observation-92c1f9f8-4c47-4df4-8aac-e8e18177a8a8/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/9C1EE2DB-6385-4203-B975-D9673EC98EF5.jpeg,,TRUE, +N1,58613,sortie-92c1f9f8-4c47-4df4-8aac-e8e18177a8a8,https://biolit.fr/sorties/sortie-92c1f9f8-4c47-4df4-8aac-e8e18177a8a8/,Julia_mlv,,8/16/2022 0:00,14.0000000,15.0000000,47.704255000000,-3.355755000000,,Port Louis - Lohic ,31025,observation-92c1f9f8-4c47-4df4-8aac-e8e18177a8a8-2,https://biolit.fr/observations/observation-92c1f9f8-4c47-4df4-8aac-e8e18177a8a8-2/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/1D11CC48-C4DB-4D65-9751-49C972716954-scaled.jpeg,,TRUE, +N1,58614,sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6,https://biolit.fr/sorties/sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6/,Julia_mlv,,8/16/2022 0:00,14.0000000,15.0000000,47.70425500000,-3.355750000000,Observatoire du Plancton,Port Louis - Lohic ,31027,observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6,https://biolit.fr/observations/observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/0E4E2532-F5E2-4E74-8A1F-96453FD347BB-scaled.jpeg,,TRUE, +N1,58614,sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6,https://biolit.fr/sorties/sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6/,Julia_mlv,,8/16/2022 0:00,14.0000000,15.0000000,47.70425500000,-3.355750000000,Observatoire du Plancton,Port Louis - Lohic ,31029,observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-2,https://biolit.fr/observations/observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/2BFD87FB-A5AA-49F9-B19D-1934CB24A989-scaled.jpeg,,FALSE, +N1,58614,sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6,https://biolit.fr/sorties/sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6/,Julia_mlv,,8/16/2022 0:00,14.0000000,15.0000000,47.70425500000,-3.355750000000,Observatoire du Plancton,Port Louis - Lohic ,31031,observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-3,https://biolit.fr/observations/observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/319A3D7A-69EE-407B-9DBA-8E9E0D395EF5-scaled.jpeg,,FALSE, +N1,58614,sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6,https://biolit.fr/sorties/sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6/,Julia_mlv,,8/16/2022 0:00,14.0000000,15.0000000,47.70425500000,-3.355750000000,Observatoire du Plancton,Port Louis - Lohic ,31033,observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-4,https://biolit.fr/observations/observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/A27C86B4-E5F9-4FAA-A75C-9ED4FD9B3789-scaled.jpeg,,FALSE, +N1,58614,sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6,https://biolit.fr/sorties/sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6/,Julia_mlv,,8/16/2022 0:00,14.0000000,15.0000000,47.70425500000,-3.355750000000,Observatoire du Plancton,Port Louis - Lohic ,31035,observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-5,https://biolit.fr/observations/observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-5/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/A17DF853-DA37-4E78-AAD6-6CEBB4B6367D-scaled.jpeg,,TRUE, +N1,58614,sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6,https://biolit.fr/sorties/sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6/,Julia_mlv,,8/16/2022 0:00,14.0000000,15.0000000,47.70425500000,-3.355750000000,Observatoire du Plancton,Port Louis - Lohic ,31037,observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-6,https://biolit.fr/observations/observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-6/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/000FC84D-6AB6-4CA4-B489-C23990C529FA-scaled.jpeg,,TRUE, +N1,58614,sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6,https://biolit.fr/sorties/sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6/,Julia_mlv,,8/16/2022 0:00,14.0000000,15.0000000,47.70425500000,-3.355750000000,Observatoire du Plancton,Port Louis - Lohic ,31039,observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-7,https://biolit.fr/observations/observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-7/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/B1863060-F689-4EAA-AD44-F64A9F90515B-scaled.jpeg,,TRUE, +N1,58614,sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6,https://biolit.fr/sorties/sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6/,Julia_mlv,,8/16/2022 0:00,14.0000000,15.0000000,47.70425500000,-3.355750000000,Observatoire du Plancton,Port Louis - Lohic ,31041,observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-8,https://biolit.fr/observations/observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-8/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/F7B594A5-C353-4940-BD5B-4C85D2D81F7E-scaled.jpeg,,TRUE, +N1,58614,sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6,https://biolit.fr/sorties/sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6/,Julia_mlv,,8/16/2022 0:00,14.0000000,15.0000000,47.70425500000,-3.355750000000,Observatoire du Plancton,Port Louis - Lohic ,31043,observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-9,https://biolit.fr/observations/observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-9/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/6CA6E5E5-7B61-4415-A1A9-CD115FBC4677-scaled.jpeg,,TRUE, +N1,58614,sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6,https://biolit.fr/sorties/sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6/,Julia_mlv,,8/16/2022 0:00,14.0000000,15.0000000,47.70425500000,-3.355750000000,Observatoire du Plancton,Port Louis - Lohic ,31045,observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-10,https://biolit.fr/observations/observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-10/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/66663680-9615-41AD-AD4F-9D529004A37E.jpeg,,TRUE, +N1,58614,sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6,https://biolit.fr/sorties/sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6/,Julia_mlv,,8/16/2022 0:00,14.0000000,15.0000000,47.70425500000,-3.355750000000,Observatoire du Plancton,Port Louis - Lohic ,31047,observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-11,https://biolit.fr/observations/observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-11/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/2023/07/5E831BEE-52F3-4743-AC65-024203B22815-scaled.jpeg,,TRUE, +N1,58614,sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6,https://biolit.fr/sorties/sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6/,Julia_mlv,,8/16/2022 0:00,14.0000000,15.0000000,47.70425500000,-3.355750000000,Observatoire du Plancton,Port Louis - Lohic ,31049,observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-12,https://biolit.fr/observations/observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/0704432D-79D1-4EF4-B143-40E828172938-scaled.jpeg,,FALSE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31051,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita_11.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31053,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-2,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_22.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31055,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-3,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue sp 1_0.PNG,,FALSE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31057,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-4,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue sp_0.PNG,,FALSE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31058,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-5,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-5/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_12.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31060,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-6,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-6/,Aplidium elegans,Fraise de mer,,https://biolit.fr/wp-content/uploads/2023/07/Aplydium elegans_0.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31062,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-7,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie sp_5.PNG,,FALSE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31064,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-8,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-8/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_26.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31066,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-9,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-9/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/Aulactinia verrucosa_9.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31068,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-10,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-10/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_16.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31070,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-11,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-11/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Calliostoma zyziphinum_4.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31072,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-12,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-12/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_24.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31074,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-13,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-13/,Ciona intestinalis,Cione intestinale,,https://biolit.fr/wp-content/uploads/2023/07/Ciona intestinalis_2.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31076,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-14,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-14/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/Clibanarius erythropus_3.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31078,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-15,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-15/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Crassostreas gigas.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31080,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-16,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-16/,Doris verrucosa,Doris verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/Doris verrucosa_6.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31082,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-17,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-17/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Eriphia verrucosa_10.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31084,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-18,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-18/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/Haliotis tuberculata_9.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31086,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-19,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-19/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/Himanthalia elongata_0.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31088,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-20,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/laminaria sp-scaled.jpg,,FALSE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31089,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-21,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-21/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/Lipophrys pholis 1.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31091,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-22,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-22/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_27.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31093,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-23,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-23/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/2023/07/Mouette rieuse.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31095,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-24,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-24/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_19.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31097,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-25,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-25/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/Nrophis sp.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31099,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-26,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-26/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus 1.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31101,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-27,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-27/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_21.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31103,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-28,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-28/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebrena erinaceus.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31105,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-29,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-29/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_11.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31107,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-30,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-30/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus_8.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31109,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-31,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-31/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/Pisidia longicornis_7.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31111,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-32,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-32/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_24.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31113,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-33,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-33/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_28.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31115,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-34,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-34/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/Sabellaria alveolata_7.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31117,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-35,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-35/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Steromphala umbilicalis_3.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31119,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-36,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-36/,Trivia arctica,Grain de café rose,,https://biolit.fr/wp-content/uploads/2023/07/Trivia arctica_4.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31121,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-37,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-37/,Watersipora subtorquata,Bryozoaire rouge orange vif à points noirs,,https://biolit.fr/wp-content/uploads/2023/07/Watersipora subatra_9.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31123,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-38,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-38/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus et porcellana platycheles.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31125,observation-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita_10.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31127,observation-4a13fd10-72e0-4d95-9865-de1867426a17-2,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-2/,Aequipecten opercularis,Peigne operculé,,https://biolit.fr/wp-content/uploads/2023/07/Aequipecten opercularis pe.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31129,observation-4a13fd10-72e0-4d95-9865-de1867426a17-3,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/anémone sp_6.PNG,,FALSE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31131,observation-4a13fd10-72e0-4d95-9865-de1867426a17-4,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-4/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Anémone sp1.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31133,observation-4a13fd10-72e0-4d95-9865-de1867426a17-5,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-5/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_23.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31135,observation-4a13fd10-72e0-4d95-9865-de1867426a17-6,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Annélide sp 1.PNG,,FALSE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31137,observation-4a13fd10-72e0-4d95-9865-de1867426a17-7,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/annélide sp_1.PNG,,FALSE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31139,observation-4a13fd10-72e0-4d95-9865-de1867426a17-8,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-8/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_10.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31141,observation-4a13fd10-72e0-4d95-9865-de1867426a17-9,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-9/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/Anthopleura sp.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31143,observation-4a13fd10-72e0-4d95-9865-de1867426a17-10,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-10/,Aplidium elegans,Fraise de mer,,https://biolit.fr/wp-content/uploads/2023/07/Aplydium elegans.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31145,observation-4a13fd10-72e0-4d95-9865-de1867426a17-11,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie sp_4.PNG,,FALSE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31147,observation-4a13fd10-72e0-4d95-9865-de1867426a17-12,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-12/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_17.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31149,observation-4a13fd10-72e0-4d95-9865-de1867426a17-13,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-13/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_24.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31151,observation-4a13fd10-72e0-4d95-9865-de1867426a17-14,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-14/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_11.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31153,observation-4a13fd10-72e0-4d95-9865-de1867426a17-15,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/aucune idée mais c'est vivant.PNG,,FALSE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31155,observation-4a13fd10-72e0-4d95-9865-de1867426a17-16,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-16/,Calyptraea chinensis,Chapeau chinois,,https://biolit.fr/wp-content/uploads/2023/07/Calyptreae chinensis_0.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31157,observation-4a13fd10-72e0-4d95-9865-de1867426a17-17,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-17/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_23.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31159,observation-4a13fd10-72e0-4d95-9865-de1867426a17-18,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-18/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_22.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31161,observation-4a13fd10-72e0-4d95-9865-de1867426a17-19,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-19/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_9.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31163,observation-4a13fd10-72e0-4d95-9865-de1867426a17-20,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-20/,Ciona intestinalis,Cione intestinale,,https://biolit.fr/wp-content/uploads/2023/07/Ciona intestinalis_1.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31165,observation-4a13fd10-72e0-4d95-9865-de1867426a17-21,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-21/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/Clibanarius erythropus_2.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31167,observation-4a13fd10-72e0-4d95-9865-de1867426a17-22,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-22/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crepidula fornicata_4.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31169,observation-4a13fd10-72e0-4d95-9865-de1867426a17-23,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-23/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/Crithmum maritimum_1.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31171,observation-4a13fd10-72e0-4d95-9865-de1867426a17-24,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-24/,Dysidea fragilis,Eponge mie de pain mouillée,,https://biolit.fr/wp-content/uploads/2023/07/Disydea fragilis_0.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31173,observation-4a13fd10-72e0-4d95-9865-de1867426a17-25,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-25/,Doris verrucosa,Doris verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/Doris verruqueux.PNG,,,on +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31175,observation-4a13fd10-72e0-4d95-9865-de1867426a17-26,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_32.PNG,,FALSE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31177,observation-4a13fd10-72e0-4d95-9865-de1867426a17-27,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-27/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/Galathea squamifera_1.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31179,observation-4a13fd10-72e0-4d95-9865-de1867426a17-28,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-28/,Gari depressa,Psammobie déprimée,,https://biolit.fr/wp-content/uploads/2023/07/Gari depressa_11.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31181,observation-4a13fd10-72e0-4d95-9865-de1867426a17-29,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-29/,Isozoanthus sulcatus,Anémone chocolat,,https://biolit.fr/wp-content/uploads/2023/07/Isozoanthus sulcatus_6.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31183,observation-4a13fd10-72e0-4d95-9865-de1867426a17-30,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-30/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/Larus marinus_0.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31185,observation-4a13fd10-72e0-4d95-9865-de1867426a17-31,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-31/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_17.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31187,observation-4a13fd10-72e0-4d95-9865-de1867426a17-32,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/Limace sp_0.PNG,,FALSE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31189,observation-4a13fd10-72e0-4d95-9865-de1867426a17-33,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-33/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_8.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31191,observation-4a13fd10-72e0-4d95-9865-de1867426a17-34,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/Liocarcinus sp_1.PNG,,FALSE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31193,observation-4a13fd10-72e0-4d95-9865-de1867426a17-35,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-35/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina obtusata_3.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31195,observation-4a13fd10-72e0-4d95-9865-de1867426a17-36,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-36/,,,,https://biolit.fr/wp-content/uploads/2023/07/Macropoda sp_2.PNG,,FALSE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31197,observation-4a13fd10-72e0-4d95-9865-de1867426a17-37,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-37/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_26.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31199,observation-4a13fd10-72e0-4d95-9865-de1867426a17-38,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-38/,Metridium senile,Œillet de mer,,https://biolit.fr/wp-content/uploads/2023/07/metridium sp.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31201,observation-4a13fd10-72e0-4d95-9865-de1867426a17-39,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-39/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia_10.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31203,observation-4a13fd10-72e0-4d95-9865-de1867426a17-40,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-40/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_17.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31205,observation-4a13fd10-72e0-4d95-9865-de1867426a17-41,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-41/,Tritia incrassata,Nasse épaisse,,https://biolit.fr/wp-content/uploads/2023/07/Nassarius incrassatus_2.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31207,observation-4a13fd10-72e0-4d95-9865-de1867426a17-42,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-42/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_18.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31209,observation-4a13fd10-72e0-4d95-9865-de1867426a17-43,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-43/,Nereiphylla paretti,Néréiphylle de Paretto,,https://biolit.fr/wp-content/uploads/2023/07/Nereiphylla de paretti pe.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31211,observation-4a13fd10-72e0-4d95-9865-de1867426a17-44,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-44/,,,,https://biolit.fr/wp-content/uploads/2023/07/Non identifié 1.PNG,,FALSE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31213,observation-4a13fd10-72e0-4d95-9865-de1867426a17-45,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-45/,,,,https://biolit.fr/wp-content/uploads/2023/07/Non identifié 2.PNG,,FALSE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31215,observation-4a13fd10-72e0-4d95-9865-de1867426a17-46,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-46/,Sedum acre,Orpin âcre,,https://biolit.fr/wp-content/uploads/2023/07/Non identifié.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31217,observation-4a13fd10-72e0-4d95-9865-de1867426a17-47,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-47/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/Ophiothrix sp.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31219,observation-4a13fd10-72e0-4d95-9865-de1867426a17-48,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-48/,Pilumnus hirtellus,Pilumne hirsute,,https://biolit.fr/wp-content/uploads/2023/07/Pilumnus hirtellus_8.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31221,observation-4a13fd10-72e0-4d95-9865-de1867426a17-49,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-49/,Polychaeta spp,Ponte de polychète,,https://biolit.fr/wp-content/uploads/2023/07/Ponte de polychète_0.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31223,observation-4a13fd10-72e0-4d95-9865-de1867426a17-50,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-50/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_27.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31225,observation-4a13fd10-72e0-4d95-9865-de1867426a17-51,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-51/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pycnogonide sp_1.PNG,,FALSE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31227,observation-4a13fd10-72e0-4d95-9865-de1867426a17-52,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-52/,Venerupis corrugata,Palourde-poulette,,https://biolit.fr/wp-content/uploads/2023/07/venerupis corrugata_0.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31228,observation-4a13fd10-72e0-4d95-9865-de1867426a17-53,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-53/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa_8.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31230,observation-4a13fd10-72e0-4d95-9865-de1867426a17-54,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-54/,Prostheceraeus vittatus,Planaire blanche,,https://biolit.fr/wp-content/uploads/2023/07/Ver plat sp_0.PNG,,,on +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31232,observation-4a13fd10-72e0-4d95-9865-de1867426a17-55,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-55/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Watersipora subatra_7.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31234,observation-4a13fd10-72e0-4d95-9865-de1867426a17-56,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-56/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_19.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31236,observation-4a13fd10-72e0-4d95-9865-de1867426a17-57,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-57/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_19.PNG,,TRUE, +N1,58617,sortie-89817cb7-bbf6-4a54-a90d-063a10f3fc00,https://biolit.fr/sorties/sortie-89817cb7-bbf6-4a54-a90d-063a10f3fc00/,ddewick,,2/23/2022 0:00,14.0000000,15.0000000,48.235440000000,-4.448493000000,,Plage de l'Aber - Parc naturel marin d'Iroise,31238,observation-89817cb7-bbf6-4a54-a90d-063a10f3fc00,https://biolit.fr/observations/observation-89817cb7-bbf6-4a54-a90d-063a10f3fc00/,,,,https://biolit.fr/wp-content/uploads/2023/07/crozon - sea weed 3.jpg,,FALSE, +N1,58617,sortie-89817cb7-bbf6-4a54-a90d-063a10f3fc00,https://biolit.fr/sorties/sortie-89817cb7-bbf6-4a54-a90d-063a10f3fc00/,ddewick,,2/23/2022 0:00,14.0000000,15.0000000,48.235440000000,-4.448493000000,,Plage de l'Aber - Parc naturel marin d'Iroise,31240,observation-89817cb7-bbf6-4a54-a90d-063a10f3fc00-2,https://biolit.fr/observations/observation-89817cb7-bbf6-4a54-a90d-063a10f3fc00-2/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/crozon - sea week 2.jpg,,TRUE, +N1,58618,sortie-bbd4c975-ae0a-496c-8147-a4497cc1c143,https://biolit.fr/sorties/sortie-bbd4c975-ae0a-496c-8147-a4497cc1c143/,ddewick,,2/23/2022 0:00,12.0000000,15.0000000,48.232010000000,-4.440081000000,,Plage de l'Aber - Parc naturel marin d'Iroise,31242,observation-bbd4c975-ae0a-496c-8147-a4497cc1c143,https://biolit.fr/observations/observation-bbd4c975-ae0a-496c-8147-a4497cc1c143/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/starfish1.jpg,,TRUE, +N1,58618,sortie-bbd4c975-ae0a-496c-8147-a4497cc1c143,https://biolit.fr/sorties/sortie-bbd4c975-ae0a-496c-8147-a4497cc1c143/,ddewick,,2/23/2022 0:00,12.0000000,15.0000000,48.232010000000,-4.440081000000,,Plage de l'Aber - Parc naturel marin d'Iroise,31244,observation-bbd4c975-ae0a-496c-8147-a4497cc1c143-2,https://biolit.fr/observations/observation-bbd4c975-ae0a-496c-8147-a4497cc1c143-2/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/starfish2.jpg,,TRUE, +N1,58618,sortie-bbd4c975-ae0a-496c-8147-a4497cc1c143,https://biolit.fr/sorties/sortie-bbd4c975-ae0a-496c-8147-a4497cc1c143/,ddewick,,2/23/2022 0:00,12.0000000,15.0000000,48.232010000000,-4.440081000000,,Plage de l'Aber - Parc naturel marin d'Iroise,31246,observation-bbd4c975-ae0a-496c-8147-a4497cc1c143-3,https://biolit.fr/observations/observation-bbd4c975-ae0a-496c-8147-a4497cc1c143-3/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/starfish3.jpg,,TRUE, +N1,58619,sortie-db7f2efb-0c31-4f1f-88b7-8a22331e95ca,https://biolit.fr/sorties/sortie-db7f2efb-0c31-4f1f-88b7-8a22331e95ca/,ddewick,,2/22/2022 0:00,12.0000000,14.0000000,48.230899000000,-4.43574700000,,Plage de l'Aber - Parc naturel marin d'Iroise,31248,observation-db7f2efb-0c31-4f1f-88b7-8a22331e95ca,https://biolit.fr/observations/observation-db7f2efb-0c31-4f1f-88b7-8a22331e95ca/,,,,https://biolit.fr/wp-content/uploads/2023/07/crozon - sea weed 1.jpg,,FALSE, +N1,58620,sortie-8d177c4f-6e49-4d25-81c9-96e3cc78df8c,https://biolit.fr/sorties/sortie-8d177c4f-6e49-4d25-81c9-96e3cc78df8c/,ddewick,,2/21/2022 0:00,11.0:45,13.0000000,48.234730000000,-4.441068000000,,Plage de l'Aber - Parc naturel marin d'Iroise,31250,observation-8d177c4f-6e49-4d25-81c9-96e3cc78df8c,https://biolit.fr/observations/observation-8d177c4f-6e49-4d25-81c9-96e3cc78df8c/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crozon - Sea grass_0.jpg,,FALSE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31252,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita_9.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31254,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-2,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_21.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31256,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-3,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Alevins sp.PNG,,FALSE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31258,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-4,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue sp 1.PNG,,FALSE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31260,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-5,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algue sp 2.PNG,,FALSE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31262,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-6,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-6/,Chondrus crispus,Goémon frisé,,https://biolit.fr/wp-content/uploads/2023/07/Algue sp 3.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31264,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-7,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algue sp 4.PNG,,FALSE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31266,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-8,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-8/,Corallina officinalis/caespitosa,Coralline,,https://biolit.fr/wp-content/uploads/2023/07/Algue sp 5.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31268,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-9,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-9/,Alvania lactea,Alvania lactea,,https://biolit.fr/wp-content/uploads/2023/07/Alvania lactea.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31270,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-10,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-10/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_22.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31272,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-11,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-11/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/Aplysia en nombre.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31274,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-12,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-12/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/Aplysia ponte.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31276,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-13,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-13/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/Aplysia sp_0.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31278,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-14,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-14/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/Armeria maritima_0.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31280,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-15,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie sp_5.PNG,,FALSE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31281,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-16,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-16/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_8.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31283,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-17,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-17/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/Aulactinia verrucosa_8.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31285,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-18,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-18/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_14.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31287,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-19,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-19/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Calliostoma zyziphinum_3.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31289,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-20,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-20/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_22.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31291,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-21,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-21/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_21.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31293,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-22,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-22/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_15.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31295,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-23,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-23/,Bittium reticulatum,Cérithe réticulé,,https://biolit.fr/wp-content/uploads/2023/07/Cerithium reticulatum.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31297,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-24,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-24/,Convolvulus soldanella,Liseron des dunes,,https://biolit.fr/wp-content/uploads/2023/07/convolvulus soldanella.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31299,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-25,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-25/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/Crithmum maritimum_0.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31301,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-26,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/Dynamaena magnitorata.PNG,,FALSE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31303,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-27,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_31.PNG,,FALSE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31305,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-28,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-28/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/Eryngium maritimum.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31307,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-29,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-29/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/Fucus serratus_2.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31309,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-30,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/Helichrysum stoechas.PNG,,FALSE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31311,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-31,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-31/,Lagurus ovatus,Queue de lièvre,,https://biolit.fr/wp-content/uploads/2023/07/Lagurus ovatus_0.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31313,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-32,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-32/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_16.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31315,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-33,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-33/,Lomentaria articulata,Algue saucisson,,https://biolit.fr/wp-content/uploads/2023/07/Lomentaria articulata_0.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31317,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-34,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-34/,Matthiola sinuata,Giroflée des dunes,,https://biolit.fr/wp-content/uploads/2023/07/matthiola sinuata.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31319,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-35,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-35/,Chrysaora hysoscella,Méduse rayonnée,,https://biolit.fr/wp-content/uploads/2023/07/Méduse sp 1.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31321,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-36,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-36/,Chrysaora hysoscella,Méduse rayonnée,,https://biolit.fr/wp-content/uploads/2023/07/méduse sp.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31323,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-37,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-37/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/Melaraphe neritoides.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31325,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-38,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-38/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia_8.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31327,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-39,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-39/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_16.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31329,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-40,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-40/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber-scaled.jpg,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31330,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-41,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-41/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/Ophiothrix fragilis_0.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31332,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-42,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-42/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_10.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31334,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-43,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-43/,,,,https://biolit.fr/wp-content/uploads/2023/07/ponte de limace sp.PNG,,FALSE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31336,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-44,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-44/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_22.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31338,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-45,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-45/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_24.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31340,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-46,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-46/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/Sabellaria alveolata_5.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31342,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-47,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-47/,Cilysta elegans,Sagartie élégante,,https://biolit.fr/wp-content/uploads/2023/07/Sagartia elegans pe.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31344,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-48,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-48/,Sedum acre,Orpin âcre,,https://biolit.fr/wp-content/uploads/2023/07/Sedum acre.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31346,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-49,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-49/,Spergularia rupicola,Spergulaire des rochers,,https://biolit.fr/wp-content/uploads/2023/07/Spergula rupicola_0.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31348,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-50,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-50/,Terpios gelatinosus,Eponge encroûtante bleue,,https://biolit.fr/wp-content/uploads/2023/07/Terpios gelatinosus.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31350,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-51,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-51/,Tricolia pullus,Phasianelle minuscule,,https://biolit.fr/wp-content/uploads/2023/07/Tricolia pullus.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31352,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-52,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-52/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa_6.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31354,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-53,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-53/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_18.PNG,,TRUE, +N1,58622,sortie-7ad55660-71e7-49b2-b07b-ead7261f8719,https://biolit.fr/sorties/sortie-7ad55660-71e7-49b2-b07b-ead7261f8719/,Axel,,5/30/2022 0:00,19.0000000,19.0:45,43.259493000000,5.373869000000,,"Marseille, Embouchure de l'Huveaune",31356,observation-7ad55660-71e7-49b2-b07b-ead7261f8719,https://biolit.fr/observations/observation-7ad55660-71e7-49b2-b07b-ead7261f8719/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7525_0.JPG,,FALSE, +N1,58622,sortie-7ad55660-71e7-49b2-b07b-ead7261f8719,https://biolit.fr/sorties/sortie-7ad55660-71e7-49b2-b07b-ead7261f8719/,Axel,,5/30/2022 0:00,19.0000000,19.0:45,43.259493000000,5.373869000000,,"Marseille, Embouchure de l'Huveaune",31358,observation-7ad55660-71e7-49b2-b07b-ead7261f8719-2,https://biolit.fr/observations/observation-7ad55660-71e7-49b2-b07b-ead7261f8719-2/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7532_0-rotated.jpg,,TRUE, +N1,58622,sortie-7ad55660-71e7-49b2-b07b-ead7261f8719,https://biolit.fr/sorties/sortie-7ad55660-71e7-49b2-b07b-ead7261f8719/,Axel,,5/30/2022 0:00,19.0000000,19.0:45,43.259493000000,5.373869000000,,"Marseille, Embouchure de l'Huveaune",31360,observation-7ad55660-71e7-49b2-b07b-ead7261f8719-3,https://biolit.fr/observations/observation-7ad55660-71e7-49b2-b07b-ead7261f8719-3/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7537_0.JPG,,FALSE, +N1,58623,sortie-b1851612-0598-40f2-a645-694f77b8f54f,https://biolit.fr/sorties/sortie-b1851612-0598-40f2-a645-694f77b8f54f/,Axel,,5/30/2022 0:00,18.0000000,19.0000000,43.259674000000,5.374470000000,,"Marseille, Plage de l'huveaune",31362,observation-b1851612-0598-40f2-a645-694f77b8f54f,https://biolit.fr/observations/observation-b1851612-0598-40f2-a645-694f77b8f54f/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7503_0.JPG | https://biolit.fr/wp-content/uploads/2022/05/IMG_7504_0.jpg,,FALSE, +N1,58623,sortie-b1851612-0598-40f2-a645-694f77b8f54f,https://biolit.fr/sorties/sortie-b1851612-0598-40f2-a645-694f77b8f54f/,Axel,,5/30/2022 0:00,18.0000000,19.0000000,43.259674000000,5.374470000000,,"Marseille, Plage de l'huveaune",31366,observation-b1851612-0598-40f2-a645-694f77b8f54f-3,https://biolit.fr/observations/observation-b1851612-0598-40f2-a645-694f77b8f54f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7505-rotated.jpg | https://biolit.fr/wp-content/uploads/2022/05/IMG_7506_0-rotated-1-scaled.jpg,,FALSE, +N1,58623,sortie-b1851612-0598-40f2-a645-694f77b8f54f,https://biolit.fr/sorties/sortie-b1851612-0598-40f2-a645-694f77b8f54f/,Axel,,5/30/2022 0:00,18.0000000,19.0000000,43.259674000000,5.374470000000,,"Marseille, Plage de l'huveaune",31370,observation-b1851612-0598-40f2-a645-694f77b8f54f-5,https://biolit.fr/observations/observation-b1851612-0598-40f2-a645-694f77b8f54f-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7507_0-rotated.jpg,,FALSE, +N1,58623,sortie-b1851612-0598-40f2-a645-694f77b8f54f,https://biolit.fr/sorties/sortie-b1851612-0598-40f2-a645-694f77b8f54f/,Axel,,5/30/2022 0:00,18.0000000,19.0000000,43.259674000000,5.374470000000,,"Marseille, Plage de l'huveaune",31372,observation-b1851612-0598-40f2-a645-694f77b8f54f-6,https://biolit.fr/observations/observation-b1851612-0598-40f2-a645-694f77b8f54f-6/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7511_0.JPG,,TRUE, +N1,58623,sortie-b1851612-0598-40f2-a645-694f77b8f54f,https://biolit.fr/sorties/sortie-b1851612-0598-40f2-a645-694f77b8f54f/,Axel,,5/30/2022 0:00,18.0000000,19.0000000,43.259674000000,5.374470000000,,"Marseille, Plage de l'huveaune",31374,observation-b1851612-0598-40f2-a645-694f77b8f54f-7,https://biolit.fr/observations/observation-b1851612-0598-40f2-a645-694f77b8f54f-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7513_0.JPG,,FALSE, +N1,58623,sortie-b1851612-0598-40f2-a645-694f77b8f54f,https://biolit.fr/sorties/sortie-b1851612-0598-40f2-a645-694f77b8f54f/,Axel,,5/30/2022 0:00,18.0000000,19.0000000,43.259674000000,5.374470000000,,"Marseille, Plage de l'huveaune",31376,observation-b1851612-0598-40f2-a645-694f77b8f54f-8,https://biolit.fr/observations/observation-b1851612-0598-40f2-a645-694f77b8f54f-8/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7519_0.JPG,,TRUE, +N1,58624,sortie-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756,https://biolit.fr/sorties/sortie-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0000000,48.649543000000,-4.273184000000,,Pointe de Guévroc,31378,observation-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756,https://biolit.fr/observations/observation-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Astérie bossue 1.JPG,,TRUE, +N1,58624,sortie-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756,https://biolit.fr/sorties/sortie-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0000000,48.649543000000,-4.273184000000,,Pointe de Guévroc,31380,observation-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756-2,https://biolit.fr/observations/observation-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756-2/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Astérie bossue 2-scaled.jpg,,TRUE, +N1,58624,sortie-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756,https://biolit.fr/sorties/sortie-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0000000,48.649543000000,-4.273184000000,,Pointe de Guévroc,31382,observation-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756-3,https://biolit.fr/observations/observation-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/lanice conchilega 1.JPG,,FALSE, +N1,58624,sortie-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756,https://biolit.fr/sorties/sortie-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0000000,48.649543000000,-4.273184000000,,Pointe de Guévroc,31384,observation-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756-4,https://biolit.fr/observations/observation-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/lanice conchilega 2-scaled.jpg,,FALSE, +N1,58624,sortie-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756,https://biolit.fr/sorties/sortie-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0000000,48.649543000000,-4.273184000000,,Pointe de Guévroc,31386,observation-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756-5,https://biolit.fr/observations/observation-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756-5/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nasse réticulée 1-scaled.jpg,,TRUE, +N1,58624,sortie-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756,https://biolit.fr/sorties/sortie-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0000000,48.649543000000,-4.273184000000,,Pointe de Guévroc,31388,observation-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756-6,https://biolit.fr/observations/observation-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756-6/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nasse réticulée 2-scaled.jpg,,TRUE, +N1,58625,sortie-c988b8b9-c275-463e-8936-992b7d4414e7,https://biolit.fr/sorties/sortie-c988b8b9-c275-463e-8936-992b7d4414e7/,BLANCHET SVT,,06/02/2022,14.0:15,16.0000000,48.649531000000,-4.27416000000,,Pointe de Guévroc,31390,observation-c988b8b9-c275-463e-8936-992b7d4414e7,https://biolit.fr/observations/observation-c988b8b9-c275-463e-8936-992b7d4414e7/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/la patelle1.JPG,,TRUE, +N1,58625,sortie-c988b8b9-c275-463e-8936-992b7d4414e7,https://biolit.fr/sorties/sortie-c988b8b9-c275-463e-8936-992b7d4414e7/,BLANCHET SVT,,06/02/2022,14.0:15,16.0000000,48.649531000000,-4.27416000000,,Pointe de Guévroc,31392,observation-c988b8b9-c275-463e-8936-992b7d4414e7-2,https://biolit.fr/observations/observation-c988b8b9-c275-463e-8936-992b7d4414e7-2/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/la patelle2-scaled.jpg,,TRUE, +N1,58625,sortie-c988b8b9-c275-463e-8936-992b7d4414e7,https://biolit.fr/sorties/sortie-c988b8b9-c275-463e-8936-992b7d4414e7/,BLANCHET SVT,,06/02/2022,14.0:15,16.0000000,48.649531000000,-4.27416000000,,Pointe de Guévroc,31394,observation-c988b8b9-c275-463e-8936-992b7d4414e7-3,https://biolit.fr/observations/observation-c988b8b9-c275-463e-8936-992b7d4414e7-3/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/mordocet.JPG,,TRUE, +N1,58626,sortie-c60ac20d-3d80-475d-a6a3-3cdd525d55f6,https://biolit.fr/sorties/sortie-c60ac20d-3d80-475d-a6a3-3cdd525d55f6/,BLANCHET SVT,,06/02/2022,14.0000000,16.0:15,48.649952000000,-4.273189000000,,Pointe de Guevroc,31396,observation-c60ac20d-3d80-475d-a6a3-3cdd525d55f6,https://biolit.fr/observations/observation-c60ac20d-3d80-475d-a6a3-3cdd525d55f6/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/coquille_patelle-scaled.jpg,,TRUE, +N1,58626,sortie-c60ac20d-3d80-475d-a6a3-3cdd525d55f6,https://biolit.fr/sorties/sortie-c60ac20d-3d80-475d-a6a3-3cdd525d55f6/,BLANCHET SVT,,06/02/2022,14.0000000,16.0:15,48.649952000000,-4.273189000000,,Pointe de Guevroc,31398,observation-c60ac20d-3d80-475d-a6a3-3cdd525d55f6-2,https://biolit.fr/observations/observation-c60ac20d-3d80-475d-a6a3-3cdd525d55f6-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/crabe_vert_0.jpg,,TRUE, +N1,58626,sortie-c60ac20d-3d80-475d-a6a3-3cdd525d55f6,https://biolit.fr/sorties/sortie-c60ac20d-3d80-475d-a6a3-3cdd525d55f6/,BLANCHET SVT,,06/02/2022,14.0000000,16.0:15,48.649952000000,-4.273189000000,,Pointe de Guevroc,31400,observation-c60ac20d-3d80-475d-a6a3-3cdd525d55f6-3,https://biolit.fr/observations/observation-c60ac20d-3d80-475d-a6a3-3cdd525d55f6-3/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/littorine_des_rochers.JPG,,TRUE, +N1,58626,sortie-c60ac20d-3d80-475d-a6a3-3cdd525d55f6,https://biolit.fr/sorties/sortie-c60ac20d-3d80-475d-a6a3-3cdd525d55f6/,BLANCHET SVT,,06/02/2022,14.0000000,16.0:15,48.649952000000,-4.273189000000,,Pointe de Guevroc,31402,observation-c60ac20d-3d80-475d-a6a3-3cdd525d55f6-4,https://biolit.fr/observations/observation-c60ac20d-3d80-475d-a6a3-3cdd525d55f6-4/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/nasse_reticulee.jpg,,TRUE, +N1,58626,sortie-c60ac20d-3d80-475d-a6a3-3cdd525d55f6,https://biolit.fr/sorties/sortie-c60ac20d-3d80-475d-a6a3-3cdd525d55f6/,BLANCHET SVT,,06/02/2022,14.0000000,16.0:15,48.649952000000,-4.273189000000,,Pointe de Guevroc,31404,observation-c60ac20d-3d80-475d-a6a3-3cdd525d55f6-5,https://biolit.fr/observations/observation-c60ac20d-3d80-475d-a6a3-3cdd525d55f6-5/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/patelle_2-scaled.jpg,,TRUE, +N1,58626,sortie-c60ac20d-3d80-475d-a6a3-3cdd525d55f6,https://biolit.fr/sorties/sortie-c60ac20d-3d80-475d-a6a3-3cdd525d55f6/,BLANCHET SVT,,06/02/2022,14.0000000,16.0:15,48.649952000000,-4.273189000000,,Pointe de Guevroc,31406,observation-c60ac20d-3d80-475d-a6a3-3cdd525d55f6-6,https://biolit.fr/observations/observation-c60ac20d-3d80-475d-a6a3-3cdd525d55f6-6/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/troque_epais_0-scaled.jpg,,TRUE, +N1,58627,sortie-04818f91-c377-4daa-bd2d-e6daf5a168f4,https://biolit.fr/sorties/sortie-04818f91-c377-4daa-bd2d-e6daf5a168f4/,BLANCHET SVT,,5/17/2022 0:00,14.0000000,16.0:15,48.649851000000,-4.273715000000,,"Tréflez,Pointe du Guevroc",31408,observation-04818f91-c377-4daa-bd2d-e6daf5a168f4,https://biolit.fr/observations/observation-04818f91-c377-4daa-bd2d-e6daf5a168f4/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/Aulactinia_verrucosa-scaled.jpg,,TRUE, +N1,58627,sortie-04818f91-c377-4daa-bd2d-e6daf5a168f4,https://biolit.fr/sorties/sortie-04818f91-c377-4daa-bd2d-e6daf5a168f4/,BLANCHET SVT,,5/17/2022 0:00,14.0000000,16.0:15,48.649851000000,-4.273715000000,,"Tréflez,Pointe du Guevroc",31410,observation-04818f91-c377-4daa-bd2d-e6daf5a168f4-2,https://biolit.fr/observations/observation-04818f91-c377-4daa-bd2d-e6daf5a168f4-2/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Moule_commune-scaled.jpg,,TRUE, +N1,58627,sortie-04818f91-c377-4daa-bd2d-e6daf5a168f4,https://biolit.fr/sorties/sortie-04818f91-c377-4daa-bd2d-e6daf5a168f4/,BLANCHET SVT,,5/17/2022 0:00,14.0000000,16.0:15,48.649851000000,-4.273715000000,,"Tréflez,Pointe du Guevroc",31412,observation-04818f91-c377-4daa-bd2d-e6daf5a168f4-3,https://biolit.fr/observations/observation-04818f91-c377-4daa-bd2d-e6daf5a168f4-3/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/Aulactinia_verrucosa2-scaled.jpg,,TRUE, +N1,58627,sortie-04818f91-c377-4daa-bd2d-e6daf5a168f4,https://biolit.fr/sorties/sortie-04818f91-c377-4daa-bd2d-e6daf5a168f4/,BLANCHET SVT,,5/17/2022 0:00,14.0000000,16.0:15,48.649851000000,-4.273715000000,,"Tréflez,Pointe du Guevroc",31416,observation-04818f91-c377-4daa-bd2d-e6daf5a168f4-5,https://biolit.fr/observations/observation-04818f91-c377-4daa-bd2d-e6daf5a168f4-5/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/crabe_vert_2-scaled.jpg,,TRUE, +N1,58627,sortie-04818f91-c377-4daa-bd2d-e6daf5a168f4,https://biolit.fr/sorties/sortie-04818f91-c377-4daa-bd2d-e6daf5a168f4/,BLANCHET SVT,,5/17/2022 0:00,14.0000000,16.0:15,48.649851000000,-4.273715000000,,"Tréflez,Pointe du Guevroc",31418,observation-04818f91-c377-4daa-bd2d-e6daf5a168f4-6,https://biolit.fr/observations/observation-04818f91-c377-4daa-bd2d-e6daf5a168f4-6/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorine_obtusata-scaled.jpg,,TRUE, +N1,58628,sortie-06a89f95-7dfd-4348-b88e-1c1a2136e464,https://biolit.fr/sorties/sortie-06a89f95-7dfd-4348-b88e-1c1a2136e464/,BLANCHET SVT,,5/17/2022 0:00,14.0000000,16.0:15,48.650105000000,-4.272626000000,,pointe de Guevroc,31420,observation-06a89f95-7dfd-4348-b88e-1c1a2136e464,https://biolit.fr/observations/observation-06a89f95-7dfd-4348-b88e-1c1a2136e464/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Patelle commune-scaled.jpg,,TRUE, +N1,58628,sortie-06a89f95-7dfd-4348-b88e-1c1a2136e464,https://biolit.fr/sorties/sortie-06a89f95-7dfd-4348-b88e-1c1a2136e464/,BLANCHET SVT,,5/17/2022 0:00,14.0000000,16.0:15,48.650105000000,-4.272626000000,,pointe de Guevroc,31424,observation-06a89f95-7dfd-4348-b88e-1c1a2136e464-3,https://biolit.fr/observations/observation-06a89f95-7dfd-4348-b88e-1c1a2136e464-3/,Venerupis corrugata,Palourde-poulette,,https://biolit.fr/wp-content/uploads/2023/07/Palourde_Poulette2-scaled.jpg,,TRUE, +N1,58629,sortie-40ddbbf5-f683-410b-a4e8-94415b7dc239,https://biolit.fr/sorties/sortie-40ddbbf5-f683-410b-a4e8-94415b7dc239/,BLANCHET SVT,,5/17/2022 0:00,14.0000000,16.0000000,48.649981000000,-4.275131000000,,pointe de gevroc,31426,observation-40ddbbf5-f683-410b-a4e8-94415b7dc239,https://biolit.fr/observations/observation-40ddbbf5-f683-410b-a4e8-94415b7dc239/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/gasteropodes.jpg,,TRUE, +N1,58629,sortie-40ddbbf5-f683-410b-a4e8-94415b7dc239,https://biolit.fr/sorties/sortie-40ddbbf5-f683-410b-a4e8-94415b7dc239/,BLANCHET SVT,,5/17/2022 0:00,14.0000000,16.0000000,48.649981000000,-4.275131000000,,pointe de gevroc,31428,observation-40ddbbf5-f683-410b-a4e8-94415b7dc239-2,https://biolit.fr/observations/observation-40ddbbf5-f683-410b-a4e8-94415b7dc239-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/troc_epais.jpg,,TRUE, +N1,58630,sortie-4d2ce46f-5e0e-42a0-83ea-14b30b7fcf3d,https://biolit.fr/sorties/sortie-4d2ce46f-5e0e-42a0-83ea-14b30b7fcf3d/,BLANCHET SVT,,5/17/2022 0:00,14.0000000,16.0:15,48.649606000000,-4.274986000000,,baie de keremma,31430,observation-4d2ce46f-5e0e-42a0-83ea-14b30b7fcf3d,https://biolit.fr/observations/observation-4d2ce46f-5e0e-42a0-83ea-14b30b7fcf3d/,,,,https://biolit.fr/wp-content/uploads/2023/07/anemone_geme.jpg,,FALSE, +N1,58630,sortie-4d2ce46f-5e0e-42a0-83ea-14b30b7fcf3d,https://biolit.fr/sorties/sortie-4d2ce46f-5e0e-42a0-83ea-14b30b7fcf3d/,BLANCHET SVT,,5/17/2022 0:00,14.0000000,16.0:15,48.649606000000,-4.274986000000,,baie de keremma,31432,observation-4d2ce46f-5e0e-42a0-83ea-14b30b7fcf3d-2,https://biolit.fr/observations/observation-4d2ce46f-5e0e-42a0-83ea-14b30b7fcf3d-2/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/bernic.jpg,,TRUE, +N1,58630,sortie-4d2ce46f-5e0e-42a0-83ea-14b30b7fcf3d,https://biolit.fr/sorties/sortie-4d2ce46f-5e0e-42a0-83ea-14b30b7fcf3d/,BLANCHET SVT,,5/17/2022 0:00,14.0000000,16.0:15,48.649606000000,-4.274986000000,,baie de keremma,31434,observation-4d2ce46f-5e0e-42a0-83ea-14b30b7fcf3d-3,https://biolit.fr/observations/observation-4d2ce46f-5e0e-42a0-83ea-14b30b7fcf3d-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/bigorneau_1.jpg,,TRUE, +N1,58630,sortie-4d2ce46f-5e0e-42a0-83ea-14b30b7fcf3d,https://biolit.fr/sorties/sortie-4d2ce46f-5e0e-42a0-83ea-14b30b7fcf3d/,BLANCHET SVT,,5/17/2022 0:00,14.0000000,16.0:15,48.649606000000,-4.274986000000,,baie de keremma,31436,observation-4d2ce46f-5e0e-42a0-83ea-14b30b7fcf3d-4,https://biolit.fr/observations/observation-4d2ce46f-5e0e-42a0-83ea-14b30b7fcf3d-4/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Bigorneau2-scaled.jpg,,TRUE, +N1,58631,sortie-aa2d9e62-02c9-45d8-be97-9e8a332ec99c,https://biolit.fr/sorties/sortie-aa2d9e62-02c9-45d8-be97-9e8a332ec99c/,BLANCHET SVT,,5/17/2022 0:00,14.0000000,16.0:15,48.649804000000,-4.274814000000,,pointe de guevroc,31438,observation-aa2d9e62-02c9-45d8-be97-9e8a332ec99c,https://biolit.fr/observations/observation-aa2d9e62-02c9-45d8-be97-9e8a332ec99c/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/crabe_vert_-scaled.jpg,,TRUE, +N1,58631,sortie-aa2d9e62-02c9-45d8-be97-9e8a332ec99c,https://biolit.fr/sorties/sortie-aa2d9e62-02c9-45d8-be97-9e8a332ec99c/,BLANCHET SVT,,5/17/2022 0:00,14.0000000,16.0:15,48.649804000000,-4.274814000000,,pointe de guevroc,31439,observation-aa2d9e62-02c9-45d8-be97-9e8a332ec99c-2,https://biolit.fr/observations/observation-aa2d9e62-02c9-45d8-be97-9e8a332ec99c-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Troque_Epais-scaled.jpg,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31441,observation-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita_8.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31443,observation-12cfceae-ae7d-4770-b788-0554a21a52df-2,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea_7.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31445,observation-12cfceae-ae7d-4770-b788-0554a21a52df-3,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue sp-scaled.jpg,,FALSE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31446,observation-12cfceae-ae7d-4770-b788-0554a21a52df-4,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-4/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_19.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31448,observation-12cfceae-ae7d-4770-b788-0554a21a52df-5,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-5/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/Chthamalus stellatus-scaled.jpg,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31449,observation-12cfceae-ae7d-4770-b788-0554a21a52df-6,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-6/,Cingula trifasciata,Cingule trois faces,,https://biolit.fr/wp-content/uploads/2023/07/Cingula trifasciata pe.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31451,observation-12cfceae-ae7d-4770-b788-0554a21a52df-7,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-7/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/Clibanarius erythropus_1.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31453,observation-12cfceae-ae7d-4770-b788-0554a21a52df-8,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Dynamene magnitorata_0.PNG,,FALSE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31455,observation-12cfceae-ae7d-4770-b788-0554a21a52df-9,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-9/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/Fucus serratus_1.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31457,observation-12cfceae-ae7d-4770-b788-0554a21a52df-10,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-10/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/Gobie sp_2.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31459,observation-12cfceae-ae7d-4770-b788-0554a21a52df-11,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-11/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/Himanthalia elongata.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31461,observation-12cfceae-ae7d-4770-b788-0554a21a52df-12,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Laminaire sp.PNG,,FALSE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31463,observation-12cfceae-ae7d-4770-b788-0554a21a52df-13,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-13/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Litorrina obtusata.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31465,observation-12cfceae-ae7d-4770-b788-0554a21a52df-14,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Méduse sp_0.PNG,,FALSE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31467,observation-12cfceae-ae7d-4770-b788-0554a21a52df-15,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-15/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_15.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31469,observation-12cfceae-ae7d-4770-b788-0554a21a52df-16,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-16/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_20.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31471,observation-12cfceae-ae7d-4770-b788-0554a21a52df-17,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-17/,Onchidella celtica,Limace celtique,,https://biolit.fr/wp-content/uploads/2023/07/Onchidella celtica.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31473,observation-12cfceae-ae7d-4770-b788-0554a21a52df-18,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-18/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_9.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31475,observation-12cfceae-ae7d-4770-b788-0554a21a52df-19,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-19/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/palaemon serratus_0.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31476,observation-12cfceae-ae7d-4770-b788-0554a21a52df-20,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-20/,Pelvetia canaliculata,Pelvétie,,https://biolit.fr/wp-content/uploads/2023/07/Pelvetia canaliculata.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31478,observation-12cfceae-ae7d-4770-b788-0554a21a52df-21,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/Poisson sp.PNG,,FALSE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31480,observation-12cfceae-ae7d-4770-b788-0554a21a52df-22,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-22/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Sargassum japonica.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31482,observation-12cfceae-ae7d-4770-b788-0554a21a52df-23,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-23/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Steromphala umbilicalis_2.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31484,observation-12cfceae-ae7d-4770-b788-0554a21a52df-24,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-24/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/Urticina felina_5.PNG,,TRUE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31486,observation-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Aequipecten opercularis.PNG,,TRUE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31488,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-2,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-2/,Botrylloides spp. (leachii violaceus diegensis),Botrylles,,https://biolit.fr/wp-content/uploads/2023/07/Botrylloides spp_3.PNG,,TRUE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31490,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-3,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_20.PNG,,TRUE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31492,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-4,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-4/,Ciona intestinalis,Cione intestinale,,https://biolit.fr/wp-content/uploads/2023/07/Ciona intestinalis_0.PNG,,TRUE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31494,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-5,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-5/,Clavelina lepadiformis,Grande claveline,,https://biolit.fr/wp-content/uploads/2023/07/Clavelina lepadiformis.PNG,,TRUE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31496,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-6,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-6/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Crassostrea gigas_4.PNG,,TRUE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31498,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-7,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_28.PNG,,FALSE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31500,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-8,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-8/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_9.PNG,,TRUE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31502,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-9,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-9/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_24.PNG,,TRUE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31504,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-10,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-10/,Metridium senile,Œillet de mer,,https://biolit.fr/wp-content/uploads/2023/07/Metridium senile_1.PNG,,TRUE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31506,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-11,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-11/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus eudlis.PNG,,TRUE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31508,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-12,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-12/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_16.PNG,,TRUE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31510,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-13,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-13/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/Palaemon serratus.PNG,,TRUE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31512,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-14,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-14/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus_7.PNG,,TRUE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31514,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-15,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Poissons sp.PNG,,FALSE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31516,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-16,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-16/,Sedum acre,Orpin âcre,,https://biolit.fr/wp-content/uploads/2023/07/Sedum anglicum.PNG,,TRUE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31517,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-17,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/Umbilicus rupestris.PNG,,FALSE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31519,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-18,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ver plat sp.PNG,,FALSE, +N1,58634,sortie-9ae2565a-9163-480a-9b52-07b3d76a50d9,https://biolit.fr/sorties/sortie-9ae2565a-9163-480a-9b52-07b3d76a50d9/,Axel,,5/25/2022 0:00,19.0:15,20.0000000,43.280267000000,5.34988000000,,"Marseille, Maldormé ",31521,observation-9ae2565a-9163-480a-9b52-07b3d76a50d9,https://biolit.fr/observations/observation-9ae2565a-9163-480a-9b52-07b3d76a50d9/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_7482_0-rotated.jpg,,TRUE, +N1,58634,sortie-9ae2565a-9163-480a-9b52-07b3d76a50d9,https://biolit.fr/sorties/sortie-9ae2565a-9163-480a-9b52-07b3d76a50d9/,Axel,,5/25/2022 0:00,19.0:15,20.0000000,43.280267000000,5.34988000000,,"Marseille, Maldormé ",31523,observation-9ae2565a-9163-480a-9b52-07b3d76a50d9-2,https://biolit.fr/observations/observation-9ae2565a-9163-480a-9b52-07b3d76a50d9-2/,Maja squinado,Grande araignée de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7485_0.JPG,,TRUE, +N1,58634,sortie-9ae2565a-9163-480a-9b52-07b3d76a50d9,https://biolit.fr/sorties/sortie-9ae2565a-9163-480a-9b52-07b3d76a50d9/,Axel,,5/25/2022 0:00,19.0:15,20.0000000,43.280267000000,5.34988000000,,"Marseille, Maldormé ",31525,observation-9ae2565a-9163-480a-9b52-07b3d76a50d9-3,https://biolit.fr/observations/observation-9ae2565a-9163-480a-9b52-07b3d76a50d9-3/,Maja squinado,Grande araignée de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7495_0.JPG,,TRUE, +N1,58634,sortie-9ae2565a-9163-480a-9b52-07b3d76a50d9,https://biolit.fr/sorties/sortie-9ae2565a-9163-480a-9b52-07b3d76a50d9/,Axel,,5/25/2022 0:00,19.0:15,20.0000000,43.280267000000,5.34988000000,,"Marseille, Maldormé ",31527,observation-9ae2565a-9163-480a-9b52-07b3d76a50d9-4,https://biolit.fr/observations/observation-9ae2565a-9163-480a-9b52-07b3d76a50d9-4/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7488_0-rotated.jpg,,TRUE, +N1,58634,sortie-9ae2565a-9163-480a-9b52-07b3d76a50d9,https://biolit.fr/sorties/sortie-9ae2565a-9163-480a-9b52-07b3d76a50d9/,Axel,,5/25/2022 0:00,19.0:15,20.0000000,43.280267000000,5.34988000000,,"Marseille, Maldormé ",31529,observation-9ae2565a-9163-480a-9b52-07b3d76a50d9-5,https://biolit.fr/observations/observation-9ae2565a-9163-480a-9b52-07b3d76a50d9-5/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7489_0-rotated.jpg,,TRUE, +N1,58635,sortie-5990db3f-3575-4597-9d82-e7e394f884c5,https://biolit.fr/sorties/sortie-5990db3f-3575-4597-9d82-e7e394f884c5/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0:15,48.648829000000,-4.272433000000,,la baie du kernic,31531,observation-5990db3f-3575-4597-9d82-e7e394f884c5,https://biolit.fr/observations/observation-5990db3f-3575-4597-9d82-e7e394f884c5/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/anémone gemme1.JPG,,TRUE, +N1,58635,sortie-5990db3f-3575-4597-9d82-e7e394f884c5,https://biolit.fr/sorties/sortie-5990db3f-3575-4597-9d82-e7e394f884c5/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0:15,48.648829000000,-4.272433000000,,la baie du kernic,31533,observation-5990db3f-3575-4597-9d82-e7e394f884c5-2,https://biolit.fr/observations/observation-5990db3f-3575-4597-9d82-e7e394f884c5-2/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/chitons.JPG,,TRUE, +N1,58635,sortie-5990db3f-3575-4597-9d82-e7e394f884c5,https://biolit.fr/sorties/sortie-5990db3f-3575-4597-9d82-e7e394f884c5/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0:15,48.648829000000,-4.272433000000,,la baie du kernic,31535,observation-5990db3f-3575-4597-9d82-e7e394f884c5-3,https://biolit.fr/observations/observation-5990db3f-3575-4597-9d82-e7e394f884c5-3/,Corallina officinalis/caespitosa,Coralline,,https://biolit.fr/wp-content/uploads/2023/07/coralline officinale-scaled.jpg,,TRUE, +N1,58635,sortie-5990db3f-3575-4597-9d82-e7e394f884c5,https://biolit.fr/sorties/sortie-5990db3f-3575-4597-9d82-e7e394f884c5/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0:15,48.648829000000,-4.272433000000,,la baie du kernic,31537,observation-5990db3f-3575-4597-9d82-e7e394f884c5-4,https://biolit.fr/observations/observation-5990db3f-3575-4597-9d82-e7e394f884c5-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/bigorneau commun_1.JPG,,TRUE, +N1,58635,sortie-5990db3f-3575-4597-9d82-e7e394f884c5,https://biolit.fr/sorties/sortie-5990db3f-3575-4597-9d82-e7e394f884c5/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0:15,48.648829000000,-4.272433000000,,la baie du kernic,31539,observation-5990db3f-3575-4597-9d82-e7e394f884c5-5,https://biolit.fr/observations/observation-5990db3f-3575-4597-9d82-e7e394f884c5-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Astérie bossue 2-scaled.jpg,,TRUE, +N1,58635,sortie-5990db3f-3575-4597-9d82-e7e394f884c5,https://biolit.fr/sorties/sortie-5990db3f-3575-4597-9d82-e7e394f884c5/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0:15,48.648829000000,-4.272433000000,,la baie du kernic,31540,observation-5990db3f-3575-4597-9d82-e7e394f884c5-6,https://biolit.fr/observations/observation-5990db3f-3575-4597-9d82-e7e394f884c5-6/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/asterie bossue1-scaled.jpg,,TRUE, +N1,58635,sortie-5990db3f-3575-4597-9d82-e7e394f884c5,https://biolit.fr/sorties/sortie-5990db3f-3575-4597-9d82-e7e394f884c5/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0:15,48.648829000000,-4.272433000000,,la baie du kernic,31542,observation-5990db3f-3575-4597-9d82-e7e394f884c5-7,https://biolit.fr/observations/observation-5990db3f-3575-4597-9d82-e7e394f884c5-7/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/anémone gemme2.JPG,,TRUE, +N1,58636,sortie-373f371b-c3bb-4afc-8d1e-164165bec7d3,https://biolit.fr/sorties/sortie-373f371b-c3bb-4afc-8d1e-164165bec7d3/,BLANCHET SVT,,5/16/2002 0:00,14.0:15,17.0:15,48.641071000000,-4.301851000000,,Tréflez,31544,observation-373f371b-c3bb-4afc-8d1e-164165bec7d3,https://biolit.fr/observations/observation-373f371b-c3bb-4afc-8d1e-164165bec7d3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas 1 -scaled.jpg,,TRUE, +N1,58636,sortie-373f371b-c3bb-4afc-8d1e-164165bec7d3,https://biolit.fr/sorties/sortie-373f371b-c3bb-4afc-8d1e-164165bec7d3/,BLANCHET SVT,,5/16/2002 0:00,14.0:15,17.0:15,48.641071000000,-4.301851000000,,Tréflez,31546,observation-373f371b-c3bb-4afc-8d1e-164165bec7d3-2,https://biolit.fr/observations/observation-373f371b-c3bb-4afc-8d1e-164165bec7d3-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas 2 -scaled.jpg,,TRUE, +N1,58636,sortie-373f371b-c3bb-4afc-8d1e-164165bec7d3,https://biolit.fr/sorties/sortie-373f371b-c3bb-4afc-8d1e-164165bec7d3/,BLANCHET SVT,,5/16/2002 0:00,14.0:15,17.0:15,48.641071000000,-4.301851000000,,Tréflez,31548,observation-373f371b-c3bb-4afc-8d1e-164165bec7d3-3,https://biolit.fr/observations/observation-373f371b-c3bb-4afc-8d1e-164165bec7d3-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lipophrys pholis-scaled.jpg,,FALSE, +N1,58636,sortie-373f371b-c3bb-4afc-8d1e-164165bec7d3,https://biolit.fr/sorties/sortie-373f371b-c3bb-4afc-8d1e-164165bec7d3/,BLANCHET SVT,,5/16/2002 0:00,14.0:15,17.0:15,48.641071000000,-4.301851000000,,Tréflez,31550,observation-373f371b-c3bb-4afc-8d1e-164165bec7d3-4,https://biolit.fr/observations/observation-373f371b-c3bb-4afc-8d1e-164165bec7d3-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea-scaled.jpg,,FALSE, +N1,58637,sortie-8471c401-2645-436a-be07-72d3ed91edf5,https://biolit.fr/sorties/sortie-8471c401-2645-436a-be07-72d3ed91edf5/,BLANCHET SVT,,5/16/2022 0:00,14.0000000,16.0:15,48.642910000000,-4.286959000000,,Dunes de Kerema,31552,observation-8471c401-2645-436a-be07-72d3ed91edf5,https://biolit.fr/observations/observation-8471c401-2645-436a-be07-72d3ed91edf5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/bigorneau commun_0.JPG,,TRUE, +N1,58637,sortie-8471c401-2645-436a-be07-72d3ed91edf5,https://biolit.fr/sorties/sortie-8471c401-2645-436a-be07-72d3ed91edf5/,BLANCHET SVT,,5/16/2022 0:00,14.0000000,16.0:15,48.642910000000,-4.286959000000,,Dunes de Kerema,31554,observation-8471c401-2645-436a-be07-72d3ed91edf5-2,https://biolit.fr/observations/observation-8471c401-2645-436a-be07-72d3ed91edf5-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/littorine des rochers2.JPG,,TRUE, +N1,58637,sortie-8471c401-2645-436a-be07-72d3ed91edf5,https://biolit.fr/sorties/sortie-8471c401-2645-436a-be07-72d3ed91edf5/,BLANCHET SVT,,5/16/2022 0:00,14.0000000,16.0:15,48.642910000000,-4.286959000000,,Dunes de Kerema,31556,observation-8471c401-2645-436a-be07-72d3ed91edf5-3,https://biolit.fr/observations/observation-8471c401-2645-436a-be07-72d3ed91edf5-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/crabe vert-scaled.jpg,,TRUE, +N1,58637,sortie-8471c401-2645-436a-be07-72d3ed91edf5,https://biolit.fr/sorties/sortie-8471c401-2645-436a-be07-72d3ed91edf5/,BLANCHET SVT,,5/16/2022 0:00,14.0000000,16.0:15,48.642910000000,-4.286959000000,,Dunes de Kerema,31558,observation-8471c401-2645-436a-be07-72d3ed91edf5-4,https://biolit.fr/observations/observation-8471c401-2645-436a-be07-72d3ed91edf5-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/crabe vert 2_0-scaled.jpg,,TRUE, +N1,58638,sortie-36f84a3d-efae-45ec-8e99-1d278940ab19,https://biolit.fr/sorties/sortie-36f84a3d-efae-45ec-8e99-1d278940ab19/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0:15,48.649812000000,-4.273055000000,,Dunes de Keremma,31560,observation-36f84a3d-efae-45ec-8e99-1d278940ab19,https://biolit.fr/observations/observation-36f84a3d-efae-45ec-8e99-1d278940ab19/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Astérie bossue.JPG,,TRUE, +N1,58638,sortie-36f84a3d-efae-45ec-8e99-1d278940ab19,https://biolit.fr/sorties/sortie-36f84a3d-efae-45ec-8e99-1d278940ab19/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0:15,48.649812000000,-4.273055000000,,Dunes de Keremma,31562,observation-36f84a3d-efae-45ec-8e99-1d278940ab19-2,https://biolit.fr/observations/observation-36f84a3d-efae-45ec-8e99-1d278940ab19-2/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/La coque commune-scaled.jpg,,TRUE, +N1,58638,sortie-36f84a3d-efae-45ec-8e99-1d278940ab19,https://biolit.fr/sorties/sortie-36f84a3d-efae-45ec-8e99-1d278940ab19/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0:15,48.649812000000,-4.273055000000,,Dunes de Keremma,31564,observation-36f84a3d-efae-45ec-8e99-1d278940ab19-3,https://biolit.fr/observations/observation-36f84a3d-efae-45ec-8e99-1d278940ab19-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/littorine des rochers.JPG,,TRUE, +N1,58638,sortie-36f84a3d-efae-45ec-8e99-1d278940ab19,https://biolit.fr/sorties/sortie-36f84a3d-efae-45ec-8e99-1d278940ab19/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0:15,48.649812000000,-4.273055000000,,Dunes de Keremma,31566,observation-36f84a3d-efae-45ec-8e99-1d278940ab19-4,https://biolit.fr/observations/observation-36f84a3d-efae-45ec-8e99-1d278940ab19-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Troque épais-scaled.jpg,,TRUE, +N1,58639,sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401,https://biolit.fr/sorties/sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401/,Axel,,5/23/2022 0:00,15.0000000,16.0000000,43.28019900000,5.352766000000,,"Marseille, Anse de La Fausse Monnaie",31568,observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401,https://biolit.fr/observations/observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7441.JPG,,FALSE, +N1,58639,sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401,https://biolit.fr/sorties/sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401/,Axel,,5/23/2022 0:00,15.0000000,16.0000000,43.28019900000,5.352766000000,,"Marseille, Anse de La Fausse Monnaie",31570,observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-2,https://biolit.fr/observations/observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7442.JPG,,FALSE, +N1,58639,sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401,https://biolit.fr/sorties/sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401/,Axel,,5/23/2022 0:00,15.0000000,16.0000000,43.28019900000,5.352766000000,,"Marseille, Anse de La Fausse Monnaie",31572,observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-3,https://biolit.fr/observations/observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-3/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7447.JPG,,TRUE, +N1,58639,sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401,https://biolit.fr/sorties/sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401/,Axel,,5/23/2022 0:00,15.0000000,16.0000000,43.28019900000,5.352766000000,,"Marseille, Anse de La Fausse Monnaie",31574,observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-4,https://biolit.fr/observations/observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7460.JPG,,FALSE, +N1,58639,sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401,https://biolit.fr/sorties/sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401/,Axel,,5/23/2022 0:00,15.0000000,16.0000000,43.28019900000,5.352766000000,,"Marseille, Anse de La Fausse Monnaie",31576,observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-5,https://biolit.fr/observations/observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7461_0.JPG,,FALSE, +N1,58639,sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401,https://biolit.fr/sorties/sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401/,Axel,,5/23/2022 0:00,15.0000000,16.0000000,43.28019900000,5.352766000000,,"Marseille, Anse de La Fausse Monnaie",31578,observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-6,https://biolit.fr/observations/observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7463.JPG,,FALSE, +N1,58639,sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401,https://biolit.fr/sorties/sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401/,Axel,,5/23/2022 0:00,15.0000000,16.0000000,43.28019900000,5.352766000000,,"Marseille, Anse de La Fausse Monnaie",31580,observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-7,https://biolit.fr/observations/observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-7/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_7464_0.JPG,,TRUE, +N1,58639,sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401,https://biolit.fr/sorties/sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401/,Axel,,5/23/2022 0:00,15.0000000,16.0000000,43.28019900000,5.352766000000,,"Marseille, Anse de La Fausse Monnaie",31582,observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-8,https://biolit.fr/observations/observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-8/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7467.JPG,,TRUE, +N1,58639,sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401,https://biolit.fr/sorties/sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401/,Axel,,5/23/2022 0:00,15.0000000,16.0000000,43.28019900000,5.352766000000,,"Marseille, Anse de La Fausse Monnaie",31584,observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-9,https://biolit.fr/observations/observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-9/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_7473_0.JPG,,TRUE, +N1,58639,sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401,https://biolit.fr/sorties/sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401/,Axel,,5/23/2022 0:00,15.0000000,16.0000000,43.28019900000,5.352766000000,,"Marseille, Anse de La Fausse Monnaie",31586,observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-10,https://biolit.fr/observations/observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-10/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7477.JPG,,TRUE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31588,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7364.JPG,,TRUE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31590,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-2,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7370.JPG,,FALSE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31592,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-3,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-3/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7373.JPG,,TRUE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31594,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-4,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-4/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7374.JPG,,TRUE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31596,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-5,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-5/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7375.JPG,,TRUE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31598,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-6,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-6/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_7377-rotated.jpg,,TRUE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31600,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-7,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7378.JPG,,FALSE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31602,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-8,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7387-rotated.jpg,,FALSE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31604,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-9,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-9/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7389-rotated.jpg,,TRUE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31606,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-10,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-10/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7391-rotated.jpg,,TRUE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31608,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-11,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-11/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7388.JPG,,TRUE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31610,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-12,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7398.JPG,,FALSE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31612,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-13,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-13/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7395.JPG,,TRUE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31614,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-14,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-14/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7412.JPG,,TRUE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31616,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-15,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7421.JPG,,FALSE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31618,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-16,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-16/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7423-rotated.jpg,,TRUE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31620,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-17,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-17/,Pallenis maritima,Astérolide maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7428.JPG,,TRUE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31622,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-18,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7429.JPG,,FALSE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31624,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-19,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-19/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7430.JPG,,TRUE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31626,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-20,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-20/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7431.JPG,,TRUE, +N1,58641,sortie-4546854f-c45b-4275-a993-70c5e19932af,https://biolit.fr/sorties/sortie-4546854f-c45b-4275-a993-70c5e19932af/,Marine Nature,,5/15/2022 0:00,13.0000000,14.0000000,43.011321000000,6.222676000000,Naturoscope (Antenne Var),"Plage de l'Alycastre, Porquerolles",31628,observation-4546854f-c45b-4275-a993-70c5e19932af,https://biolit.fr/observations/observation-4546854f-c45b-4275-a993-70c5e19932af/,,,,https://biolit.fr/wp-content/uploads/2023/07/image_67367425 (2)-scaled.jpg,,FALSE, +N1,58642,sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f,https://biolit.fr/sorties/sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f/,çg,,05/06/2022,11.0:15,13.0000000,43.465035000000,-1.574916000000,,Plage Milady (Biarritz),31630,observation-1a027ea1-18c2-401e-9884-305e8b72cc0f,https://biolit.fr/observations/observation-1a027ea1-18c2-401e-9884-305e8b72cc0f/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9073_low.JPG,,FALSE, +N1,58642,sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f,https://biolit.fr/sorties/sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f/,çg,,05/06/2022,11.0:15,13.0000000,43.465035000000,-1.574916000000,,Plage Milady (Biarritz),31632,observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-2,https://biolit.fr/observations/observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-2/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9076_low.JPG,,TRUE, +N1,58642,sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f,https://biolit.fr/sorties/sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f/,çg,,05/06/2022,11.0:15,13.0000000,43.465035000000,-1.574916000000,,Plage Milady (Biarritz),31634,observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-3,https://biolit.fr/observations/observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9078_low.JPG,,FALSE, +N1,58642,sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f,https://biolit.fr/sorties/sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f/,çg,,05/06/2022,11.0:15,13.0000000,43.465035000000,-1.574916000000,,Plage Milady (Biarritz),31636,observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-4,https://biolit.fr/observations/observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-4/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_9079_low.JPG,,TRUE, +N1,58642,sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f,https://biolit.fr/sorties/sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f/,çg,,05/06/2022,11.0:15,13.0000000,43.465035000000,-1.574916000000,,Plage Milady (Biarritz),31638,observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-5,https://biolit.fr/observations/observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-5/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9083_low-rotated.jpg,,TRUE, +N1,58642,sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f,https://biolit.fr/sorties/sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f/,çg,,05/06/2022,11.0:15,13.0000000,43.465035000000,-1.574916000000,,Plage Milady (Biarritz),31640,observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-6,https://biolit.fr/observations/observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-6/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9085_low-rotated.jpg,,TRUE, +N1,58642,sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f,https://biolit.fr/sorties/sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f/,çg,,05/06/2022,11.0:15,13.0000000,43.465035000000,-1.574916000000,,Plage Milady (Biarritz),31642,observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-7,https://biolit.fr/observations/observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-7/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9088_low-rotated.jpg,,TRUE, +N1,58642,sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f,https://biolit.fr/sorties/sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f/,çg,,05/06/2022,11.0:15,13.0000000,43.465035000000,-1.574916000000,,Plage Milady (Biarritz),31644,observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-8,https://biolit.fr/observations/observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9089_low-rotated.jpg,,FALSE, +N1,58642,sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f,https://biolit.fr/sorties/sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f/,çg,,05/06/2022,11.0:15,13.0000000,43.465035000000,-1.574916000000,,Plage Milady (Biarritz),31646,observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-9,https://biolit.fr/observations/observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-9/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9093_low-rotated.jpg,,TRUE, +N1,58642,sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f,https://biolit.fr/sorties/sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f/,çg,,05/06/2022,11.0:15,13.0000000,43.465035000000,-1.574916000000,,Plage Milady (Biarritz),31648,observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-10,https://biolit.fr/observations/observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9094_low-rotated.jpg,,FALSE, +N1,58642,sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f,https://biolit.fr/sorties/sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f/,çg,,05/06/2022,11.0:15,13.0000000,43.465035000000,-1.574916000000,,Plage Milady (Biarritz),31650,observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-11,https://biolit.fr/observations/observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-11/,Carpobrotus edulis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9086_low.JPG,,TRUE, +N1,58643,sortie-484e45c7-581a-4437-96ce-9849867f2f21,https://biolit.fr/sorties/sortie-484e45c7-581a-4437-96ce-9849867f2f21/,çg,,05/06/2022,10.0000000,11.0:15,43.460494000000,-1.57811300000,,Plage d'Ilbarritz,31652,observation-484e45c7-581a-4437-96ce-9849867f2f21,https://biolit.fr/observations/observation-484e45c7-581a-4437-96ce-9849867f2f21/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_9036_low-scaled.jpg,,TRUE, +N1,58643,sortie-484e45c7-581a-4437-96ce-9849867f2f21,https://biolit.fr/sorties/sortie-484e45c7-581a-4437-96ce-9849867f2f21/,çg,,05/06/2022,10.0000000,11.0:15,43.460494000000,-1.57811300000,,Plage d'Ilbarritz,31654,observation-484e45c7-581a-4437-96ce-9849867f2f21-2,https://biolit.fr/observations/observation-484e45c7-581a-4437-96ce-9849867f2f21-2/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9037_low.JPG,,TRUE, +N1,58643,sortie-484e45c7-581a-4437-96ce-9849867f2f21,https://biolit.fr/sorties/sortie-484e45c7-581a-4437-96ce-9849867f2f21/,çg,,05/06/2022,10.0000000,11.0:15,43.460494000000,-1.57811300000,,Plage d'Ilbarritz,31656,observation-484e45c7-581a-4437-96ce-9849867f2f21-3,https://biolit.fr/observations/observation-484e45c7-581a-4437-96ce-9849867f2f21-3/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9038_low.JPG,,TRUE, +N1,58643,sortie-484e45c7-581a-4437-96ce-9849867f2f21,https://biolit.fr/sorties/sortie-484e45c7-581a-4437-96ce-9849867f2f21/,çg,,05/06/2022,10.0000000,11.0:15,43.460494000000,-1.57811300000,,Plage d'Ilbarritz,31658,observation-484e45c7-581a-4437-96ce-9849867f2f21-4,https://biolit.fr/observations/observation-484e45c7-581a-4437-96ce-9849867f2f21-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9039_low.JPG,,FALSE, +N1,58643,sortie-484e45c7-581a-4437-96ce-9849867f2f21,https://biolit.fr/sorties/sortie-484e45c7-581a-4437-96ce-9849867f2f21/,çg,,05/06/2022,10.0000000,11.0:15,43.460494000000,-1.57811300000,,Plage d'Ilbarritz,31660,observation-484e45c7-581a-4437-96ce-9849867f2f21-5,https://biolit.fr/observations/observation-484e45c7-581a-4437-96ce-9849867f2f21-5/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9053_low-rotated.jpg,,TRUE, +N1,58643,sortie-484e45c7-581a-4437-96ce-9849867f2f21,https://biolit.fr/sorties/sortie-484e45c7-581a-4437-96ce-9849867f2f21/,çg,,05/06/2022,10.0000000,11.0:15,43.460494000000,-1.57811300000,,Plage d'Ilbarritz,31662,observation-484e45c7-581a-4437-96ce-9849867f2f21-6,https://biolit.fr/observations/observation-484e45c7-581a-4437-96ce-9849867f2f21-6/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9054_low-rotated.jpg,,TRUE, +N1,58643,sortie-484e45c7-581a-4437-96ce-9849867f2f21,https://biolit.fr/sorties/sortie-484e45c7-581a-4437-96ce-9849867f2f21/,çg,,05/06/2022,10.0000000,11.0:15,43.460494000000,-1.57811300000,,Plage d'Ilbarritz,31664,observation-484e45c7-581a-4437-96ce-9849867f2f21-7,https://biolit.fr/observations/observation-484e45c7-581a-4437-96ce-9849867f2f21-7/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_9057_low.JPG,,TRUE, +N1,58643,sortie-484e45c7-581a-4437-96ce-9849867f2f21,https://biolit.fr/sorties/sortie-484e45c7-581a-4437-96ce-9849867f2f21/,çg,,05/06/2022,10.0000000,11.0:15,43.460494000000,-1.57811300000,,Plage d'Ilbarritz,31666,observation-484e45c7-581a-4437-96ce-9849867f2f21-8,https://biolit.fr/observations/observation-484e45c7-581a-4437-96ce-9849867f2f21-8/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_9058_low.JPG,,TRUE, +N1,58643,sortie-484e45c7-581a-4437-96ce-9849867f2f21,https://biolit.fr/sorties/sortie-484e45c7-581a-4437-96ce-9849867f2f21/,çg,,05/06/2022,10.0000000,11.0:15,43.460494000000,-1.57811300000,,Plage d'Ilbarritz,31668,observation-484e45c7-581a-4437-96ce-9849867f2f21-9,https://biolit.fr/observations/observation-484e45c7-581a-4437-96ce-9849867f2f21-9/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9059_low-rotated.jpg,,TRUE, +N1,58643,sortie-484e45c7-581a-4437-96ce-9849867f2f21,https://biolit.fr/sorties/sortie-484e45c7-581a-4437-96ce-9849867f2f21/,çg,,05/06/2022,10.0000000,11.0:15,43.460494000000,-1.57811300000,,Plage d'Ilbarritz,31670,observation-484e45c7-581a-4437-96ce-9849867f2f21-10,https://biolit.fr/observations/observation-484e45c7-581a-4437-96ce-9849867f2f21-10/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9060_low-rotated.jpg,,TRUE, +N1,58643,sortie-484e45c7-581a-4437-96ce-9849867f2f21,https://biolit.fr/sorties/sortie-484e45c7-581a-4437-96ce-9849867f2f21/,çg,,05/06/2022,10.0000000,11.0:15,43.460494000000,-1.57811300000,,Plage d'Ilbarritz,31672,observation-484e45c7-581a-4437-96ce-9849867f2f21-11,https://biolit.fr/observations/observation-484e45c7-581a-4437-96ce-9849867f2f21-11/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_9062_low.JPG,,TRUE, +N1,58643,sortie-484e45c7-581a-4437-96ce-9849867f2f21,https://biolit.fr/sorties/sortie-484e45c7-581a-4437-96ce-9849867f2f21/,çg,,05/06/2022,10.0000000,11.0:15,43.460494000000,-1.57811300000,,Plage d'Ilbarritz,31674,observation-484e45c7-581a-4437-96ce-9849867f2f21-12,https://biolit.fr/observations/observation-484e45c7-581a-4437-96ce-9849867f2f21-12/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9070_low-rotated.jpg,,TRUE, +N1,58644,sortie-3e5681f3-bb2d-4de0-88f7-792499eae5b3,https://biolit.fr/sorties/sortie-3e5681f3-bb2d-4de0-88f7-792499eae5b3/,Phil,,4/27/2022 0:00,15.0000000,15.0000000,47.864563000000,-4.084796000000,,Bénodet - Finistère,31676,observation-3e5681f3-bb2d-4de0-88f7-792499eae5b3,https://biolit.fr/observations/observation-3e5681f3-bb2d-4de0-88f7-792499eae5b3/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/20220427_153202.jpg,,TRUE, +N1,58644,sortie-3e5681f3-bb2d-4de0-88f7-792499eae5b3,https://biolit.fr/sorties/sortie-3e5681f3-bb2d-4de0-88f7-792499eae5b3/,Phil,,4/27/2022 0:00,15.0000000,15.0000000,47.864563000000,-4.084796000000,,Bénodet - Finistère,31678,observation-3e5681f3-bb2d-4de0-88f7-792499eae5b3-2,https://biolit.fr/observations/observation-3e5681f3-bb2d-4de0-88f7-792499eae5b3-2/,Spergularia rupicola,Spergulaire des rochers,,https://biolit.fr/wp-content/uploads/2023/07/20220427_153156.jpg,,TRUE, +N1,58644,sortie-3e5681f3-bb2d-4de0-88f7-792499eae5b3,https://biolit.fr/sorties/sortie-3e5681f3-bb2d-4de0-88f7-792499eae5b3/,Phil,,4/27/2022 0:00,15.0000000,15.0000000,47.864563000000,-4.084796000000,,Bénodet - Finistère,31680,observation-3e5681f3-bb2d-4de0-88f7-792499eae5b3-3,https://biolit.fr/observations/observation-3e5681f3-bb2d-4de0-88f7-792499eae5b3-3/,Salicornia spp.,Salicorne,,https://biolit.fr/wp-content/uploads/2023/07/20220427_153053.jpg,,TRUE, +N1,58644,sortie-3e5681f3-bb2d-4de0-88f7-792499eae5b3,https://biolit.fr/sorties/sortie-3e5681f3-bb2d-4de0-88f7-792499eae5b3/,Phil,,4/27/2022 0:00,15.0000000,15.0000000,47.864563000000,-4.084796000000,,Bénodet - Finistère,31682,observation-3e5681f3-bb2d-4de0-88f7-792499eae5b3-4,https://biolit.fr/observations/observation-3e5681f3-bb2d-4de0-88f7-792499eae5b3-4/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/20220427_151353.jpg,,TRUE, +N1,58644,sortie-3e5681f3-bb2d-4de0-88f7-792499eae5b3,https://biolit.fr/sorties/sortie-3e5681f3-bb2d-4de0-88f7-792499eae5b3/,Phil,,4/27/2022 0:00,15.0000000,15.0000000,47.864563000000,-4.084796000000,,Bénodet - Finistère,31684,observation-3e5681f3-bb2d-4de0-88f7-792499eae5b3-5,https://biolit.fr/observations/observation-3e5681f3-bb2d-4de0-88f7-792499eae5b3-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220427_151244.jpg,,FALSE, +N1,58645,sortie-ce6eb2ad-df1c-4f63-9510-ff85d5f9b255,https://biolit.fr/sorties/sortie-ce6eb2ad-df1c-4f63-9510-ff85d5f9b255/,Phil,,08/08/2021,15.0:25,15.0000000,47.795880000000,-4.274122000000,,Léchiagat - Finistère,31686,observation-ce6eb2ad-df1c-4f63-9510-ff85d5f9b255,https://biolit.fr/observations/observation-ce6eb2ad-df1c-4f63-9510-ff85d5f9b255/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/2023/07/20210808_152646.jpg,,TRUE, +N1,58645,sortie-ce6eb2ad-df1c-4f63-9510-ff85d5f9b255,https://biolit.fr/sorties/sortie-ce6eb2ad-df1c-4f63-9510-ff85d5f9b255/,Phil,,08/08/2021,15.0:25,15.0000000,47.795880000000,-4.274122000000,,Léchiagat - Finistère,31690,observation-ce6eb2ad-df1c-4f63-9510-ff85d5f9b255-3,https://biolit.fr/observations/observation-ce6eb2ad-df1c-4f63-9510-ff85d5f9b255-3/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20210808_152426.jpg,,TRUE, +N1,58646,sortie-44fbf52e-621d-471e-bda6-1776d60a1b90,https://biolit.fr/sorties/sortie-44fbf52e-621d-471e-bda6-1776d60a1b90/,Phil,,05/01/2022,15.0:45,15.0000000,47.828727000000,-4.353516000000,,Penmarc'h - Finistère,31694,observation-44fbf52e-621d-471e-bda6-1776d60a1b90-2,https://biolit.fr/observations/observation-44fbf52e-621d-471e-bda6-1776d60a1b90-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220501_154903.jpg | https://biolit.fr/wp-content/uploads/2022/05/20220501_154845.jpg,,FALSE, +N1,58647,sortie-57b3b749-c98a-4690-b4d6-395cd946de91,https://biolit.fr/sorties/sortie-57b3b749-c98a-4690-b4d6-395cd946de91/,Dorian ROULET,,05/03/2022,9.0:45,10.0:45,43.239968000000,5.36246500000,Planète Mer,Bain des Dames,31696,observation-57b3b749-c98a-4690-b4d6-395cd946de91,https://biolit.fr/observations/observation-57b3b749-c98a-4690-b4d6-395cd946de91/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220503105620-scaled.jpg,,TRUE, +N1,58647,sortie-57b3b749-c98a-4690-b4d6-395cd946de91,https://biolit.fr/sorties/sortie-57b3b749-c98a-4690-b4d6-395cd946de91/,Dorian ROULET,,05/03/2022,9.0:45,10.0:45,43.239968000000,5.36246500000,Planète Mer,Bain des Dames,31698,observation-57b3b749-c98a-4690-b4d6-395cd946de91-2,https://biolit.fr/observations/observation-57b3b749-c98a-4690-b4d6-395cd946de91-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220503100248-scaled.jpg,,FALSE, +N1,58647,sortie-57b3b749-c98a-4690-b4d6-395cd946de91,https://biolit.fr/sorties/sortie-57b3b749-c98a-4690-b4d6-395cd946de91/,Dorian ROULET,,05/03/2022,9.0:45,10.0:45,43.239968000000,5.36246500000,Planète Mer,Bain des Dames,31700,observation-57b3b749-c98a-4690-b4d6-395cd946de91-3,https://biolit.fr/observations/observation-57b3b749-c98a-4690-b4d6-395cd946de91-3/,Tritia incrassata,Nasse épaisse,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220503100306-scaled.jpg,,TRUE, +N1,58648,sortie-7768a4be-12ff-41d2-90f5-8164e19fae0d,https://biolit.fr/sorties/sortie-7768a4be-12ff-41d2-90f5-8164e19fae0d/,Phil,,01/05/2022,15.0000000,15.000005,47.89609400000,-3.974654000000,,La Forêt-Fouesnant - Finistère,31702,observation-7768a4be-12ff-41d2-90f5-8164e19fae0d,https://biolit.fr/observations/observation-7768a4be-12ff-41d2-90f5-8164e19fae0d/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20220105_150151.jpg,,TRUE, +N1,58648,sortie-7768a4be-12ff-41d2-90f5-8164e19fae0d,https://biolit.fr/sorties/sortie-7768a4be-12ff-41d2-90f5-8164e19fae0d/,Phil,,01/05/2022,15.0000000,15.000005,47.89609400000,-3.974654000000,,La Forêt-Fouesnant - Finistère,31704,observation-7768a4be-12ff-41d2-90f5-8164e19fae0d-2,https://biolit.fr/observations/observation-7768a4be-12ff-41d2-90f5-8164e19fae0d-2/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20220105_150222.jpg,,TRUE, +N1,58648,sortie-7768a4be-12ff-41d2-90f5-8164e19fae0d,https://biolit.fr/sorties/sortie-7768a4be-12ff-41d2-90f5-8164e19fae0d/,Phil,,01/05/2022,15.0000000,15.000005,47.89609400000,-3.974654000000,,La Forêt-Fouesnant - Finistère,31706,observation-7768a4be-12ff-41d2-90f5-8164e19fae0d-3,https://biolit.fr/observations/observation-7768a4be-12ff-41d2-90f5-8164e19fae0d-3/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20220105_150212.jpg,,TRUE, +N1,58649,sortie-cc167af4-ebc9-411a-8b52-47b254966772,https://biolit.fr/sorties/sortie-cc167af4-ebc9-411a-8b52-47b254966772/,Phil,,4/27/2022 0:00,15.0000000,15.0000000,47.86454900000,-4.08492500000,,Bénodet - Finistère,31708,observation-cc167af4-ebc9-411a-8b52-47b254966772,https://biolit.fr/observations/observation-cc167af4-ebc9-411a-8b52-47b254966772/,Salicornia spp.,Salicorne,,https://biolit.fr/wp-content/uploads/2023/07/20220427_151223.jpg,,TRUE, +N1,58649,sortie-cc167af4-ebc9-411a-8b52-47b254966772,https://biolit.fr/sorties/sortie-cc167af4-ebc9-411a-8b52-47b254966772/,Phil,,4/27/2022 0:00,15.0000000,15.0000000,47.86454900000,-4.08492500000,,Bénodet - Finistère,31710,observation-cc167af4-ebc9-411a-8b52-47b254966772-2,https://biolit.fr/observations/observation-cc167af4-ebc9-411a-8b52-47b254966772-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20220427_151127.jpg,,TRUE, +N1,58650,sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5,https://biolit.fr/sorties/sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5/,Natan Torres Rejas,,4/16/2022 0:00,9.0000000,12.0000000,43.380697000000,-1.755711000000,,Hendaye,31716,observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-3,https://biolit.fr/observations/observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Quadrat especes - Caulacanthus - Enteromorpha - Ulva - Codium - Natan Torres Rejas.jpg,,FALSE, +N1,58650,sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5,https://biolit.fr/sorties/sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5/,Natan Torres Rejas,,4/16/2022 0:00,9.0000000,12.0000000,43.380697000000,-1.755711000000,,Hendaye,31718,observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-4,https://biolit.fr/observations/observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Corallina spp - Natan Torres Rejas-scaled.jpg,,FALSE, +N1,58650,sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5,https://biolit.fr/sorties/sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5/,Natan Torres Rejas,,4/16/2022 0:00,9.0000000,12.0000000,43.380697000000,-1.755711000000,,Hendaye,31720,observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-5,https://biolit.fr/observations/observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-5/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/Ulva lactuca - Natan Torres Rejas-scaled.jpg,,TRUE, +N1,58650,sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5,https://biolit.fr/sorties/sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5/,Natan Torres Rejas,,4/16/2022 0:00,9.0000000,12.0000000,43.380697000000,-1.755711000000,,Hendaye,31722,observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-6,https://biolit.fr/observations/observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Enteromorpha spp - Natan Torres Rejas-scaled.jpg,,FALSE, +N1,58650,sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5,https://biolit.fr/sorties/sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5/,Natan Torres Rejas,,4/16/2022 0:00,9.0000000,12.0000000,43.380697000000,-1.755711000000,,Hendaye,31724,observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-7,https://biolit.fr/observations/observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-7/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/cloporte - Natan Torres Rejas-scaled.jpg,,TRUE, +N1,58650,sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5,https://biolit.fr/sorties/sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5/,Natan Torres Rejas,,4/16/2022 0:00,9.0000000,12.0000000,43.380697000000,-1.755711000000,,Hendaye,31726,observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-8,https://biolit.fr/observations/observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-8/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri et Eponge - Natan Torres Rejas-scaled.jpg,,TRUE, +N1,58650,sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5,https://biolit.fr/sorties/sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5/,Natan Torres Rejas,,4/16/2022 0:00,9.0000000,12.0000000,43.380697000000,-1.755711000000,,Hendaye,31728,observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-9,https://biolit.fr/observations/observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-9/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Calyptraea chinensis2 - Natan Torres Rejas-scaled.jpg,,TRUE, +N1,58650,sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5,https://biolit.fr/sorties/sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5/,Natan Torres Rejas,,4/16/2022 0:00,9.0000000,12.0000000,43.380697000000,-1.755711000000,,Hendaye,31730,observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-10,https://biolit.fr/observations/observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-10/,Thysanozoon brocchii,Ver plat à papilles,,https://biolit.fr/wp-content/uploads/2023/07/Limace des mers - Natan Torres Rejas-scaled.jpg,,FALSE, +N1,58650,sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5,https://biolit.fr/sorties/sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5/,Natan Torres Rejas,,4/16/2022 0:00,9.0000000,12.0000000,43.380697000000,-1.755711000000,,Hendaye,31732,observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-11,https://biolit.fr/observations/observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-11/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Calyptraea chinensis - Natan Torres Rejas-scaled.jpg,,TRUE, +N1,58650,sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5,https://biolit.fr/sorties/sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5/,Natan Torres Rejas,,4/16/2022 0:00,9.0000000,12.0000000,43.380697000000,-1.755711000000,,Hendaye,31734,observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-12,https://biolit.fr/observations/observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-12/,Holothuria (Holothuria) tubulosa,Holothurie tubuleuse,,https://biolit.fr/wp-content/uploads/2023/07/Holothuroidea - Concombre de mer - Natan Torres Rejas-scaled.jpg,,TRUE, +N1,58651,sortie-5728830e-e9e0-4e3d-867a-83def3ac476a,https://biolit.fr/sorties/sortie-5728830e-e9e0-4e3d-867a-83def3ac476a/,Dorian ROULET,,4/21/2022 0:00,11.0000000,13.0000000,43.255842000000,5.374980000000,Planète Mer,Escale Borély,31736,observation-5728830e-e9e0-4e3d-867a-83def3ac476a,https://biolit.fr/observations/observation-5728830e-e9e0-4e3d-867a-83def3ac476a/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220421100318-scaled.jpg,,FALSE, +N1,58651,sortie-5728830e-e9e0-4e3d-867a-83def3ac476a,https://biolit.fr/sorties/sortie-5728830e-e9e0-4e3d-867a-83def3ac476a/,Dorian ROULET,,4/21/2022 0:00,11.0000000,13.0000000,43.255842000000,5.374980000000,Planète Mer,Escale Borély,31738,observation-5728830e-e9e0-4e3d-867a-83def3ac476a-2,https://biolit.fr/observations/observation-5728830e-e9e0-4e3d-867a-83def3ac476a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220421100230-scaled.jpg,,FALSE, +N1,58652,sortie-7968cc98-7a88-441e-8eab-8734b12fe5c1,https://biolit.fr/sorties/sortie-7968cc98-7a88-441e-8eab-8734b12fe5c1/,Marine Nature,,04/10/2022,16.0:35,16.0:35,43.181618000000,6.640516000000,Naturoscope (Antenne Var),"Plage de l'Escalet, Ramatuelle",31740,observation-7968cc98-7a88-441e-8eab-8734b12fe5c1,https://biolit.fr/observations/observation-7968cc98-7a88-441e-8eab-8734b12fe5c1/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-1334-scaled.jpg,,FALSE, +N1,58653,sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16,https://biolit.fr/sorties/sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16/,Marine Nature,,04/10/2022,12.0:45,13.0000000,43.174937000000,6.640682000000,Naturoscope (Antenne Var),"Plage des Douanes, Ramatuelle",31742,observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16,https://biolit.fr/observations/observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-1317-scaled.jpg,,FALSE, +N1,58653,sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16,https://biolit.fr/sorties/sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16/,Marine Nature,,04/10/2022,12.0:45,13.0000000,43.174937000000,6.640682000000,Naturoscope (Antenne Var),"Plage des Douanes, Ramatuelle",31744,observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-2,https://biolit.fr/observations/observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-1318-scaled.jpg,,FALSE, +N1,58653,sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16,https://biolit.fr/sorties/sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16/,Marine Nature,,04/10/2022,12.0:45,13.0000000,43.174937000000,6.640682000000,Naturoscope (Antenne Var),"Plage des Douanes, Ramatuelle",31746,observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-3,https://biolit.fr/observations/observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-1319-scaled.jpg,,FALSE, +N1,58653,sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16,https://biolit.fr/sorties/sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16/,Marine Nature,,04/10/2022,12.0:45,13.0000000,43.174937000000,6.640682000000,Naturoscope (Antenne Var),"Plage des Douanes, Ramatuelle",31748,observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-4,https://biolit.fr/observations/observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-1320-scaled.jpg,,FALSE, +N1,58653,sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16,https://biolit.fr/sorties/sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16/,Marine Nature,,04/10/2022,12.0:45,13.0000000,43.174937000000,6.640682000000,Naturoscope (Antenne Var),"Plage des Douanes, Ramatuelle",31750,observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-5,https://biolit.fr/observations/observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-1322-scaled.jpg,,FALSE, +N1,58653,sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16,https://biolit.fr/sorties/sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16/,Marine Nature,,04/10/2022,12.0:45,13.0000000,43.174937000000,6.640682000000,Naturoscope (Antenne Var),"Plage des Douanes, Ramatuelle",31752,observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-6,https://biolit.fr/observations/observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-1323-scaled.jpg,,FALSE, +N1,58653,sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16,https://biolit.fr/sorties/sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16/,Marine Nature,,04/10/2022,12.0:45,13.0000000,43.174937000000,6.640682000000,Naturoscope (Antenne Var),"Plage des Douanes, Ramatuelle",31754,observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-7,https://biolit.fr/observations/observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-1324-scaled.jpg,,FALSE, +N1,58653,sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16,https://biolit.fr/sorties/sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16/,Marine Nature,,04/10/2022,12.0:45,13.0000000,43.174937000000,6.640682000000,Naturoscope (Antenne Var),"Plage des Douanes, Ramatuelle",31756,observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-8,https://biolit.fr/observations/observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-1325-scaled.jpg,,FALSE, +N1,58653,sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16,https://biolit.fr/sorties/sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16/,Marine Nature,,04/10/2022,12.0:45,13.0000000,43.174937000000,6.640682000000,Naturoscope (Antenne Var),"Plage des Douanes, Ramatuelle",31758,observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-9,https://biolit.fr/observations/observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-1326-scaled.jpg,,FALSE, +N1,58653,sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16,https://biolit.fr/sorties/sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16/,Marine Nature,,04/10/2022,12.0:45,13.0000000,43.174937000000,6.640682000000,Naturoscope (Antenne Var),"Plage des Douanes, Ramatuelle",31760,observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-10,https://biolit.fr/observations/observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-1328-scaled.jpg,,FALSE, +N1,58654,sortie-f0b53420-dadc-420a-a192-b1fedf7373ed,https://biolit.fr/sorties/sortie-f0b53420-dadc-420a-a192-b1fedf7373ed/,Maxime Le Hen-Douchet,,04/10/2022,14.0:15,16.0000000,51.072012000000,2.487886000000,,plage de zuydcoote,31762,observation-f0b53420-dadc-420a-a192-b1fedf7373ed,https://biolit.fr/observations/observation-f0b53420-dadc-420a-a192-b1fedf7373ed/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220411_091136-scaled.jpg,,FALSE, +N1,58654,sortie-f0b53420-dadc-420a-a192-b1fedf7373ed,https://biolit.fr/sorties/sortie-f0b53420-dadc-420a-a192-b1fedf7373ed/,Maxime Le Hen-Douchet,,04/10/2022,14.0:15,16.0000000,51.072012000000,2.487886000000,,plage de zuydcoote,31764,observation-f0b53420-dadc-420a-a192-b1fedf7373ed-2,https://biolit.fr/observations/observation-f0b53420-dadc-420a-a192-b1fedf7373ed-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220411_091101-scaled.jpg,,FALSE, +N1,58654,sortie-f0b53420-dadc-420a-a192-b1fedf7373ed,https://biolit.fr/sorties/sortie-f0b53420-dadc-420a-a192-b1fedf7373ed/,Maxime Le Hen-Douchet,,04/10/2022,14.0:15,16.0000000,51.072012000000,2.487886000000,,plage de zuydcoote,31766,observation-f0b53420-dadc-420a-a192-b1fedf7373ed-3,https://biolit.fr/observations/observation-f0b53420-dadc-420a-a192-b1fedf7373ed-3/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220411_091037-scaled.jpg,,TRUE, +N1,58654,sortie-f0b53420-dadc-420a-a192-b1fedf7373ed,https://biolit.fr/sorties/sortie-f0b53420-dadc-420a-a192-b1fedf7373ed/,Maxime Le Hen-Douchet,,04/10/2022,14.0:15,16.0000000,51.072012000000,2.487886000000,,plage de zuydcoote,31768,observation-f0b53420-dadc-420a-a192-b1fedf7373ed-4,https://biolit.fr/observations/observation-f0b53420-dadc-420a-a192-b1fedf7373ed-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220411_090858-scaled.jpg,,FALSE, +N1,58654,sortie-f0b53420-dadc-420a-a192-b1fedf7373ed,https://biolit.fr/sorties/sortie-f0b53420-dadc-420a-a192-b1fedf7373ed/,Maxime Le Hen-Douchet,,04/10/2022,14.0:15,16.0000000,51.072012000000,2.487886000000,,plage de zuydcoote,31770,observation-f0b53420-dadc-420a-a192-b1fedf7373ed-5,https://biolit.fr/observations/observation-f0b53420-dadc-420a-a192-b1fedf7373ed-5/,Petricolaria pholadiformis,Fausse pholade,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220411_090637-scaled.jpg,,TRUE, +N1,58654,sortie-f0b53420-dadc-420a-a192-b1fedf7373ed,https://biolit.fr/sorties/sortie-f0b53420-dadc-420a-a192-b1fedf7373ed/,Maxime Le Hen-Douchet,,04/10/2022,14.0:15,16.0000000,51.072012000000,2.487886000000,,plage de zuydcoote,31772,observation-f0b53420-dadc-420a-a192-b1fedf7373ed-6,https://biolit.fr/observations/observation-f0b53420-dadc-420a-a192-b1fedf7373ed-6/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220411_085915-scaled.jpg,,TRUE, +N1,58654,sortie-f0b53420-dadc-420a-a192-b1fedf7373ed,https://biolit.fr/sorties/sortie-f0b53420-dadc-420a-a192-b1fedf7373ed/,Maxime Le Hen-Douchet,,04/10/2022,14.0:15,16.0000000,51.072012000000,2.487886000000,,plage de zuydcoote,31774,observation-f0b53420-dadc-420a-a192-b1fedf7373ed-7,https://biolit.fr/observations/observation-f0b53420-dadc-420a-a192-b1fedf7373ed-7/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220411_090753-scaled.jpg,,TRUE, +N1,58654,sortie-f0b53420-dadc-420a-a192-b1fedf7373ed,https://biolit.fr/sorties/sortie-f0b53420-dadc-420a-a192-b1fedf7373ed/,Maxime Le Hen-Douchet,,04/10/2022,14.0:15,16.0000000,51.072012000000,2.487886000000,,plage de zuydcoote,31776,observation-f0b53420-dadc-420a-a192-b1fedf7373ed-8,https://biolit.fr/observations/observation-f0b53420-dadc-420a-a192-b1fedf7373ed-8/,Epitonium clathrus,Scalaire,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220411_090731-scaled.jpg,,TRUE, +N1,58654,sortie-f0b53420-dadc-420a-a192-b1fedf7373ed,https://biolit.fr/sorties/sortie-f0b53420-dadc-420a-a192-b1fedf7373ed/,Maxime Le Hen-Douchet,,04/10/2022,14.0:15,16.0000000,51.072012000000,2.487886000000,,plage de zuydcoote,31778,observation-f0b53420-dadc-420a-a192-b1fedf7373ed-9,https://biolit.fr/observations/observation-f0b53420-dadc-420a-a192-b1fedf7373ed-9/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220411_085945-scaled.jpg,,TRUE, +N1,58654,sortie-f0b53420-dadc-420a-a192-b1fedf7373ed,https://biolit.fr/sorties/sortie-f0b53420-dadc-420a-a192-b1fedf7373ed/,Maxime Le Hen-Douchet,,04/10/2022,14.0:15,16.0000000,51.072012000000,2.487886000000,,plage de zuydcoote,31780,observation-f0b53420-dadc-420a-a192-b1fedf7373ed-10,https://biolit.fr/observations/observation-f0b53420-dadc-420a-a192-b1fedf7373ed-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220411_085335-scaled.jpg,,FALSE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31782,observation-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc/,,,,https://biolit.fr/wp-content/uploads/2023/07/Alentia gelatinosa_2.PNG,,FALSE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31784,observation-b169d806-f02d-4994-afd9-2c7694be38fc-2,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anomia viridis.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31786,observation-b169d806-f02d-4994-afd9-2c7694be38fc-3,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-3/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/Arenaria interpres_4.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31788,observation-b169d806-f02d-4994-afd9-2c7694be38fc-4,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-4/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_19.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31790,observation-b169d806-f02d-4994-afd9-2c7694be38fc-5,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-5/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_9.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31792,observation-b169d806-f02d-4994-afd9-2c7694be38fc-6,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-6/,Botrylloides spp. (leachii violaceus diegensis),Botrylles,,https://biolit.fr/wp-content/uploads/2023/07/Botrylloides sp.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31794,observation-b169d806-f02d-4994-afd9-2c7694be38fc-7,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-7/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_21.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31796,observation-b169d806-f02d-4994-afd9-2c7694be38fc-8,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-8/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_19.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31798,observation-b169d806-f02d-4994-afd9-2c7694be38fc-9,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-9/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_8.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31800,observation-b169d806-f02d-4994-afd9-2c7694be38fc-10,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-10/,Ciona intestinalis,Cione intestinale,,https://biolit.fr/wp-content/uploads/2023/07/Ciona intestinalis.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31802,observation-b169d806-f02d-4994-afd9-2c7694be38fc-11,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ciona sp.PNG,,FALSE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31804,observation-b169d806-f02d-4994-afd9-2c7694be38fc-12,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-12/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Crassostrea gigas_3.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31806,observation-b169d806-f02d-4994-afd9-2c7694be38fc-13,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-13/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/crepidula fornicata_3.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31807,observation-b169d806-f02d-4994-afd9-2c7694be38fc-14,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_30.PNG,,FALSE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31809,observation-b169d806-f02d-4994-afd9-2c7694be38fc-15,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Heteranomia squamula_3.PNG,,FALSE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31811,observation-b169d806-f02d-4994-afd9-2c7694be38fc-16,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-16/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_15.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31813,observation-b169d806-f02d-4994-afd9-2c7694be38fc-17,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-17/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_10.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31815,observation-b169d806-f02d-4994-afd9-2c7694be38fc-18,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-18/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_8.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31817,observation-b169d806-f02d-4994-afd9-2c7694be38fc-19,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/Macropoda sp_1.PNG,,FALSE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31819,observation-b169d806-f02d-4994-afd9-2c7694be38fc-20,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Metridium sp_1.PNG,,FALSE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31821,observation-b169d806-f02d-4994-afd9-2c7694be38fc-21,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-21/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Mimachalmys varia.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31823,observation-b169d806-f02d-4994-afd9-2c7694be38fc-22,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-22/,Modiolus barbatus,Modiole barbue,,https://biolit.fr/wp-content/uploads/2023/07/Modiolus barbatus_6.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31825,observation-b169d806-f02d-4994-afd9-2c7694be38fc-23,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-23/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/Ophiothrix fragilis_2.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31827,observation-b169d806-f02d-4994-afd9-2c7694be38fc-24,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-24/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ostreis edulis.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31829,observation-b169d806-f02d-4994-afd9-2c7694be38fc-25,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-25/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/Pisidia longicornis_9.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31831,observation-b169d806-f02d-4994-afd9-2c7694be38fc-26,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-26/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_26.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31833,observation-b169d806-f02d-4994-afd9-2c7694be38fc-27,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-27/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes philippinarum_1.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31835,observation-b169d806-f02d-4994-afd9-2c7694be38fc-28,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-28/,Spirobranchus triqueter / lamarcki,Serpule triangulaire,,https://biolit.fr/wp-content/uploads/2023/07/Spirobranchus triqueter_0.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31837,observation-b169d806-f02d-4994-afd9-2c7694be38fc-29,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-29/,Styela clava,Ascidie japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Stelya clava.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31839,observation-b169d806-f02d-4994-afd9-2c7694be38fc-30,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-30/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Steromphala umbilicalis_1.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31841,observation-b169d806-f02d-4994-afd9-2c7694be38fc-31,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-31/,Venerupis corrugata,Palourde-poulette,,https://biolit.fr/wp-content/uploads/2023/07/Venerupis aurea_2.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31843,observation-b169d806-f02d-4994-afd9-2c7694be38fc-32,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/Vers tubicoles sp.PNG,,FALSE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31845,observation-b169d806-f02d-4994-afd9-2c7694be38fc-33,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-33/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes grainée_1.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31934,observation-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167/,,,,https://biolit.fr/wp-content/uploads/2023/07/Alentia gelatinosa.PNG,,FALSE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31936,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-2,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue sp-scaled.jpg,,FALSE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31937,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-3,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_21.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31939,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-4,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-4/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/Anthopleura balii_8.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31941,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-5,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie sp_3.PNG,,FALSE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31943,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-6,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-6/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_16.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31945,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-7,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-7/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_23.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31947,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-8,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-8/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_13.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31949,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-9,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-9/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_18.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31951,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-10,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-10/,Ciona intestinalis,Cione intestinale,,https://biolit.fr/wp-content/uploads/2023/07/Ciona intestinalis pe.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31953,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-11,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-11/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/Colpomenia peregrina_1.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31955,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-12,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-12/,Dysidea fragilis,Eponge mie de pain mouillée,,https://biolit.fr/wp-content/uploads/2023/07/Dysidea fragilis_2.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31957,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-13,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-13/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/Fucus serratus_0.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31959,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-14,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-14/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Glycymeris glycymeris_2.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31961,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-15,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-15/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/Himantalia elongata cupules.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31963,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-16,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-16/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/Himantalia elongata.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31965,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-17,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/hydraire sp.PNG,,FALSE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31967,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-18,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/Idothea sp.PNG,,FALSE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31969,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-19,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/Laminaria saccharina.PNG,,FALSE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31971,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-20,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Laminaria spp.PNG,,FALSE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31973,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-21,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-21/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/Larus argentatus.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31975,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-22,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-22/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_14.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31977,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-23,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-23/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_7.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31979,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-24,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-24/,Lomentaria articulata,Algue saucisson,,https://biolit.fr/wp-content/uploads/2023/07/Lomentaria articulata.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31981,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-25,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-25/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_23.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31983,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-26,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-26/,Mastocarpus stellatus,Gigartine,,https://biolit.fr/wp-content/uploads/2023/07/Mastocarpus stellatus.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31985,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-27,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mix d'éponge.PNG,,FALSE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31987,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-28,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-28/,Modiolus barbatus,Modiole barbue,,https://biolit.fr/wp-content/uploads/2023/07/Modiolus barbatus_3.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31989,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-29,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-29/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_15.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31991,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-30,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-30/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/Ophiothrix fragilis.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31993,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-31,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/Osmundea pinnatifida.PNG,,FALSE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31995,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-32,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-32/,Pilumnus hirtellus,Pilumne hirsute,,https://biolit.fr/wp-content/uploads/2023/07/Pilumnus hirtellus_7.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31997,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-33,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-33/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/Pisidia longicornis_6.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31999,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-34,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-34/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_21.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,32001,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-35,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-35/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_23.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,32003,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-36,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-36/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Steromphala umbilicalis_0.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,32005,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-37,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-37/,Trivia arctica,Grain de café rose,,https://biolit.fr/wp-content/uploads/2023/07/Trivia arctica_3.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,32007,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-38,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-38/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ver sp_3.PNG,,FALSE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,32008,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-39,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-39/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Watersipora subatra_6.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,32010,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-40,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-40/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_18.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,32012,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-41,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-41/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_17.PNG,,TRUE, +N1,58658,sortie-2605423f-38ec-41ad-9e14-501452f5ebc1,https://biolit.fr/sorties/sortie-2605423f-38ec-41ad-9e14-501452f5ebc1/,Marine Nature,,2/27/2022 0:00,11.0000000,11.0000000,43.071629000000,5.906851000000,Naturoscope (Antenne Var),"Plage de Sainte-Asile, Saint-Mandrier-sur-Mer",,,,,,,,,, +N1,58659,sortie-1f36dd2b-b3a5-4bd0-aa4b-1fa475cb2d69,https://biolit.fr/sorties/sortie-1f36dd2b-b3a5-4bd0-aa4b-1fa475cb2d69/,Marine Nature,,2/27/2022 0:00,11.0000000,11.0000000,43.071629000000,5.906851000000,Naturoscope (Antenne Var),"Plage de Sainte-Asile, Saint-Mandrier-sur-Mer",32018,observation-1f36dd2b-b3a5-4bd0-aa4b-1fa475cb2d69,https://biolit.fr/observations/observation-1f36dd2b-b3a5-4bd0-aa4b-1fa475cb2d69/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-0438-scaled.jpg,,FALSE, +N1,58659,sortie-1f36dd2b-b3a5-4bd0-aa4b-1fa475cb2d69,https://biolit.fr/sorties/sortie-1f36dd2b-b3a5-4bd0-aa4b-1fa475cb2d69/,Marine Nature,,2/27/2022 0:00,11.0000000,11.0000000,43.071629000000,5.906851000000,Naturoscope (Antenne Var),"Plage de Sainte-Asile, Saint-Mandrier-sur-Mer",32019,observation-1f36dd2b-b3a5-4bd0-aa4b-1fa475cb2d69-2,https://biolit.fr/observations/observation-1f36dd2b-b3a5-4bd0-aa4b-1fa475cb2d69-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-0439-scaled.jpg,,FALSE, +N1,58660,sortie-0cc632a0-5d9c-4db9-96d1-d8ca7510758f,https://biolit.fr/sorties/sortie-0cc632a0-5d9c-4db9-96d1-d8ca7510758f/,Marine Nature,,3/27/2022 0:00,14.0:25,14.0000000,43.040383000000,6.094917000000,Naturoscope (Antenne Var),Presqu'ile de Giens,32022,observation-0cc632a0-5d9c-4db9-96d1-d8ca7510758f-2,https://biolit.fr/observations/observation-0cc632a0-5d9c-4db9-96d1-d8ca7510758f-2/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG-0966-scaled.jpg | https://biolit.fr/wp-content/uploads/2022/03/IMG-0964-scaled-1-scaled.jpg,,TRUE, +N1,58660,sortie-0cc632a0-5d9c-4db9-96d1-d8ca7510758f,https://biolit.fr/sorties/sortie-0cc632a0-5d9c-4db9-96d1-d8ca7510758f/,Marine Nature,,3/27/2022 0:00,14.0:25,14.0000000,43.040383000000,6.094917000000,Naturoscope (Antenne Var),Presqu'ile de Giens,32024,observation-0cc632a0-5d9c-4db9-96d1-d8ca7510758f-3,https://biolit.fr/observations/observation-0cc632a0-5d9c-4db9-96d1-d8ca7510758f-3/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG-0968-scaled.jpg,,TRUE, +N1,58660,sortie-0cc632a0-5d9c-4db9-96d1-d8ca7510758f,https://biolit.fr/sorties/sortie-0cc632a0-5d9c-4db9-96d1-d8ca7510758f/,Marine Nature,,3/27/2022 0:00,14.0:25,14.0000000,43.040383000000,6.094917000000,Naturoscope (Antenne Var),Presqu'ile de Giens,32026,observation-0cc632a0-5d9c-4db9-96d1-d8ca7510758f-4,https://biolit.fr/observations/observation-0cc632a0-5d9c-4db9-96d1-d8ca7510758f-4/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG-0969-scaled.jpg,,TRUE, +N1,58660,sortie-0cc632a0-5d9c-4db9-96d1-d8ca7510758f,https://biolit.fr/sorties/sortie-0cc632a0-5d9c-4db9-96d1-d8ca7510758f/,Marine Nature,,3/27/2022 0:00,14.0:25,14.0000000,43.040383000000,6.094917000000,Naturoscope (Antenne Var),Presqu'ile de Giens,32028,observation-0cc632a0-5d9c-4db9-96d1-d8ca7510758f-5,https://biolit.fr/observations/observation-0cc632a0-5d9c-4db9-96d1-d8ca7510758f-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-0970-scaled.jpg,,FALSE, +N1,58660,sortie-0cc632a0-5d9c-4db9-96d1-d8ca7510758f,https://biolit.fr/sorties/sortie-0cc632a0-5d9c-4db9-96d1-d8ca7510758f/,Marine Nature,,3/27/2022 0:00,14.0:25,14.0000000,43.040383000000,6.094917000000,Naturoscope (Antenne Var),Presqu'ile de Giens,32030,observation-0cc632a0-5d9c-4db9-96d1-d8ca7510758f-6,https://biolit.fr/observations/observation-0cc632a0-5d9c-4db9-96d1-d8ca7510758f-6/,Maja squinado,Grande araignée de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG-0972-scaled.jpg,,TRUE, +N1,58660,sortie-0cc632a0-5d9c-4db9-96d1-d8ca7510758f,https://biolit.fr/sorties/sortie-0cc632a0-5d9c-4db9-96d1-d8ca7510758f/,Marine Nature,,3/27/2022 0:00,14.0:25,14.0000000,43.040383000000,6.094917000000,Naturoscope (Antenne Var),Presqu'ile de Giens,32032,observation-0cc632a0-5d9c-4db9-96d1-d8ca7510758f-7,https://biolit.fr/observations/observation-0cc632a0-5d9c-4db9-96d1-d8ca7510758f-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-0973-scaled.jpg,,FALSE, +N1,58661,sortie-cbbe34e9-a18a-4844-9267-dc32d8defaeb,https://biolit.fr/sorties/sortie-cbbe34e9-a18a-4844-9267-dc32d8defaeb/,Marine Nature,,3/27/2022 0:00,11.0:25,11.0000000,43.031061000000,6.103264000000,Naturoscope (Antenne Var),Presqu'ile de Giens,32034,observation-cbbe34e9-a18a-4844-9267-dc32d8defaeb,https://biolit.fr/observations/observation-cbbe34e9-a18a-4844-9267-dc32d8defaeb/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-0950-scaled.jpg,,FALSE, +N1,58661,sortie-cbbe34e9-a18a-4844-9267-dc32d8defaeb,https://biolit.fr/sorties/sortie-cbbe34e9-a18a-4844-9267-dc32d8defaeb/,Marine Nature,,3/27/2022 0:00,11.0:25,11.0000000,43.031061000000,6.103264000000,Naturoscope (Antenne Var),Presqu'ile de Giens,32036,observation-cbbe34e9-a18a-4844-9267-dc32d8defaeb-2,https://biolit.fr/observations/observation-cbbe34e9-a18a-4844-9267-dc32d8defaeb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-0953-scaled.jpg,,FALSE, +N1,58661,sortie-cbbe34e9-a18a-4844-9267-dc32d8defaeb,https://biolit.fr/sorties/sortie-cbbe34e9-a18a-4844-9267-dc32d8defaeb/,Marine Nature,,3/27/2022 0:00,11.0:25,11.0000000,43.031061000000,6.103264000000,Naturoscope (Antenne Var),Presqu'ile de Giens,32038,observation-cbbe34e9-a18a-4844-9267-dc32d8defaeb-3,https://biolit.fr/observations/observation-cbbe34e9-a18a-4844-9267-dc32d8defaeb-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-0954-scaled.jpg,,FALSE, +N1,58661,sortie-cbbe34e9-a18a-4844-9267-dc32d8defaeb,https://biolit.fr/sorties/sortie-cbbe34e9-a18a-4844-9267-dc32d8defaeb/,Marine Nature,,3/27/2022 0:00,11.0:25,11.0000000,43.031061000000,6.103264000000,Naturoscope (Antenne Var),Presqu'ile de Giens,32040,observation-cbbe34e9-a18a-4844-9267-dc32d8defaeb-4,https://biolit.fr/observations/observation-cbbe34e9-a18a-4844-9267-dc32d8defaeb-4/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG-0955-scaled.jpg,,TRUE, +N1,58662,sortie-13ded2da-68a9-4f07-a51d-154fd8bf9005,https://biolit.fr/sorties/sortie-13ded2da-68a9-4f07-a51d-154fd8bf9005/,fg,,3/21/2022 0:00,14.0000000,16.0000000,48.654158000000,-2.024051000000,,Plage de l'éventail,,,,,,,,,, +N1,58663,sortie-515b12ea-418d-4b25-9004-d843e141f0bd,https://biolit.fr/sorties/sortie-515b12ea-418d-4b25-9004-d843e141f0bd/,RBBBM,,3/19/2022 0:00,10.0000000,12.0000000,47.788593000000,-3.703682000000,,L'île percée,32044,observation-515b12ea-418d-4b25-9004-d843e141f0bd,https://biolit.fr/observations/observation-515b12ea-418d-4b25-9004-d843e141f0bd/,Luidia ciliaris,Etoile à sept bras,,https://biolit.fr/wp-content/uploads/2023/07/Luidia ciliaris 19 mars 2022 Trenez paint.jpg,,TRUE, +N1,58663,sortie-515b12ea-418d-4b25-9004-d843e141f0bd,https://biolit.fr/sorties/sortie-515b12ea-418d-4b25-9004-d843e141f0bd/,RBBBM,,3/19/2022 0:00,10.0000000,12.0000000,47.788593000000,-3.703682000000,,L'île percée,32046,observation-515b12ea-418d-4b25-9004-d843e141f0bd-2,https://biolit.fr/observations/observation-515b12ea-418d-4b25-9004-d843e141f0bd-2/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P1040367.JPG,,TRUE, +N1,58663,sortie-515b12ea-418d-4b25-9004-d843e141f0bd,https://biolit.fr/sorties/sortie-515b12ea-418d-4b25-9004-d843e141f0bd/,RBBBM,,3/19/2022 0:00,10.0000000,12.0000000,47.788593000000,-3.703682000000,,L'île percée,32048,observation-515b12ea-418d-4b25-9004-d843e141f0bd-3,https://biolit.fr/observations/observation-515b12ea-418d-4b25-9004-d843e141f0bd-3/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/P1040515_0.JPG,,TRUE, +N1,58664,sortie-d7959de6-6c79-45ba-83f8-42486006c9b4,https://biolit.fr/sorties/sortie-d7959de6-6c79-45ba-83f8-42486006c9b4/,Dorian ROULET,,3/31/2022 0:00,9.000005,9.0000000,43.272952000000,5.362105000000,Planète Mer,Plage du prophète,32050,observation-d7959de6-6c79-45ba-83f8-42486006c9b4,https://biolit.fr/observations/observation-d7959de6-6c79-45ba-83f8-42486006c9b4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220331090930-scaled.jpg,,FALSE, +N1,58664,sortie-d7959de6-6c79-45ba-83f8-42486006c9b4,https://biolit.fr/sorties/sortie-d7959de6-6c79-45ba-83f8-42486006c9b4/,Dorian ROULET,,3/31/2022 0:00,9.000005,9.0000000,43.272952000000,5.362105000000,Planète Mer,Plage du prophète,32052,observation-d7959de6-6c79-45ba-83f8-42486006c9b4-2,https://biolit.fr/observations/observation-d7959de6-6c79-45ba-83f8-42486006c9b4-2/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG20220331091021-scaled.jpg,,TRUE, +N1,58664,sortie-d7959de6-6c79-45ba-83f8-42486006c9b4,https://biolit.fr/sorties/sortie-d7959de6-6c79-45ba-83f8-42486006c9b4/,Dorian ROULET,,3/31/2022 0:00,9.000005,9.0000000,43.272952000000,5.362105000000,Planète Mer,Plage du prophète,32054,observation-d7959de6-6c79-45ba-83f8-42486006c9b4-3,https://biolit.fr/observations/observation-d7959de6-6c79-45ba-83f8-42486006c9b4-3/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220331091111-scaled.jpg,,TRUE, +N1,58664,sortie-d7959de6-6c79-45ba-83f8-42486006c9b4,https://biolit.fr/sorties/sortie-d7959de6-6c79-45ba-83f8-42486006c9b4/,Dorian ROULET,,3/31/2022 0:00,9.000005,9.0000000,43.272952000000,5.362105000000,Planète Mer,Plage du prophète,32056,observation-d7959de6-6c79-45ba-83f8-42486006c9b4-4,https://biolit.fr/observations/observation-d7959de6-6c79-45ba-83f8-42486006c9b4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220331091514-scaled.jpg,,FALSE, +N1,58664,sortie-d7959de6-6c79-45ba-83f8-42486006c9b4,https://biolit.fr/sorties/sortie-d7959de6-6c79-45ba-83f8-42486006c9b4/,Dorian ROULET,,3/31/2022 0:00,9.000005,9.0000000,43.272952000000,5.362105000000,Planète Mer,Plage du prophète,32058,observation-d7959de6-6c79-45ba-83f8-42486006c9b4-5,https://biolit.fr/observations/observation-d7959de6-6c79-45ba-83f8-42486006c9b4-5/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220331091246-scaled.jpg,,TRUE, +N1,58664,sortie-d7959de6-6c79-45ba-83f8-42486006c9b4,https://biolit.fr/sorties/sortie-d7959de6-6c79-45ba-83f8-42486006c9b4/,Dorian ROULET,,3/31/2022 0:00,9.000005,9.0000000,43.272952000000,5.362105000000,Planète Mer,Plage du prophète,32060,observation-d7959de6-6c79-45ba-83f8-42486006c9b4-6,https://biolit.fr/observations/observation-d7959de6-6c79-45ba-83f8-42486006c9b4-6/,Maja squinado,Grande araignée de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220331091409-scaled.jpg,,FALSE, +N1,58665,sortie-2212577e-d1de-4703-b421-fb4bb2968919,https://biolit.fr/sorties/sortie-2212577e-d1de-4703-b421-fb4bb2968919/,Dorian ROULET,,3/24/2022 0:00,9.0000000,10.0000000,43.272892000000,5.362084000000,Planète Mer,Plage du prophète,32062,observation-2212577e-d1de-4703-b421-fb4bb2968919,https://biolit.fr/observations/observation-2212577e-d1de-4703-b421-fb4bb2968919/,Maja squinado,Grande araignée de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220324094533-scaled.jpg,,TRUE, +N1,58665,sortie-2212577e-d1de-4703-b421-fb4bb2968919,https://biolit.fr/sorties/sortie-2212577e-d1de-4703-b421-fb4bb2968919/,Dorian ROULET,,3/24/2022 0:00,9.0000000,10.0000000,43.272892000000,5.362084000000,Planète Mer,Plage du prophète,32066,observation-2212577e-d1de-4703-b421-fb4bb2968919-3,https://biolit.fr/observations/observation-2212577e-d1de-4703-b421-fb4bb2968919-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220324094815-scaled.jpg,,FALSE, +N1,58665,sortie-2212577e-d1de-4703-b421-fb4bb2968919,https://biolit.fr/sorties/sortie-2212577e-d1de-4703-b421-fb4bb2968919/,Dorian ROULET,,3/24/2022 0:00,9.0000000,10.0000000,43.272892000000,5.362084000000,Planète Mer,Plage du prophète,32068,observation-2212577e-d1de-4703-b421-fb4bb2968919-4,https://biolit.fr/observations/observation-2212577e-d1de-4703-b421-fb4bb2968919-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220324095342-scaled.jpg,,FALSE, +N1,58665,sortie-2212577e-d1de-4703-b421-fb4bb2968919,https://biolit.fr/sorties/sortie-2212577e-d1de-4703-b421-fb4bb2968919/,Dorian ROULET,,3/24/2022 0:00,9.0000000,10.0000000,43.272892000000,5.362084000000,Planète Mer,Plage du prophète,32070,observation-2212577e-d1de-4703-b421-fb4bb2968919-5,https://biolit.fr/observations/observation-2212577e-d1de-4703-b421-fb4bb2968919-5/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220324094124-scaled.jpg,,TRUE, +N1,58665,sortie-2212577e-d1de-4703-b421-fb4bb2968919,https://biolit.fr/sorties/sortie-2212577e-d1de-4703-b421-fb4bb2968919/,Dorian ROULET,,3/24/2022 0:00,9.0000000,10.0000000,43.272892000000,5.362084000000,Planète Mer,Plage du prophète,32072,observation-2212577e-d1de-4703-b421-fb4bb2968919-6,https://biolit.fr/observations/observation-2212577e-d1de-4703-b421-fb4bb2968919-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220324092308-scaled.jpg,,FALSE, +N1,58665,sortie-2212577e-d1de-4703-b421-fb4bb2968919,https://biolit.fr/sorties/sortie-2212577e-d1de-4703-b421-fb4bb2968919/,Dorian ROULET,,3/24/2022 0:00,9.0000000,10.0000000,43.272892000000,5.362084000000,Planète Mer,Plage du prophète,32074,observation-2212577e-d1de-4703-b421-fb4bb2968919-7,https://biolit.fr/observations/observation-2212577e-d1de-4703-b421-fb4bb2968919-7/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220324092222-scaled.jpg,,TRUE, +N1,58665,sortie-2212577e-d1de-4703-b421-fb4bb2968919,https://biolit.fr/sorties/sortie-2212577e-d1de-4703-b421-fb4bb2968919/,Dorian ROULET,,3/24/2022 0:00,9.0000000,10.0000000,43.272892000000,5.362084000000,Planète Mer,Plage du prophète,32076,observation-2212577e-d1de-4703-b421-fb4bb2968919-8,https://biolit.fr/observations/observation-2212577e-d1de-4703-b421-fb4bb2968919-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220324093850-scaled.jpg,,FALSE, +N1,58665,sortie-2212577e-d1de-4703-b421-fb4bb2968919,https://biolit.fr/sorties/sortie-2212577e-d1de-4703-b421-fb4bb2968919/,Dorian ROULET,,3/24/2022 0:00,9.0000000,10.0000000,43.272892000000,5.362084000000,Planète Mer,Plage du prophète,32078,observation-2212577e-d1de-4703-b421-fb4bb2968919-9,https://biolit.fr/observations/observation-2212577e-d1de-4703-b421-fb4bb2968919-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220324093805-scaled.jpg,,FALSE, +N1,58665,sortie-2212577e-d1de-4703-b421-fb4bb2968919,https://biolit.fr/sorties/sortie-2212577e-d1de-4703-b421-fb4bb2968919/,Dorian ROULET,,3/24/2022 0:00,9.0000000,10.0000000,43.272892000000,5.362084000000,Planète Mer,Plage du prophète,32080,observation-2212577e-d1de-4703-b421-fb4bb2968919-10,https://biolit.fr/observations/observation-2212577e-d1de-4703-b421-fb4bb2968919-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220324092335-scaled.jpg,,FALSE, +N1,58666,sortie-d4152028-ee35-4411-b42a-839aa7e6761a,https://biolit.fr/sorties/sortie-d4152028-ee35-4411-b42a-839aa7e6761a/,Roman,,03/06/2022,15.0000000,15.0000000,48.23377300000,-4.446776000000,,Crozon,32082,observation-d4152028-ee35-4411-b42a-839aa7e6761a,https://biolit.fr/observations/observation-d4152028-ee35-4411-b42a-839aa7e6761a/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/Acanthocardia spp.PNG,,TRUE, +N1,58666,sortie-d4152028-ee35-4411-b42a-839aa7e6761a,https://biolit.fr/sorties/sortie-d4152028-ee35-4411-b42a-839aa7e6761a/,Roman,,03/06/2022,15.0000000,15.0000000,48.23377300000,-4.446776000000,,Crozon,32084,observation-d4152028-ee35-4411-b42a-839aa7e6761a-2,https://biolit.fr/observations/observation-d4152028-ee35-4411-b42a-839aa7e6761a-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_20.PNG,,TRUE, +N1,58666,sortie-d4152028-ee35-4411-b42a-839aa7e6761a,https://biolit.fr/sorties/sortie-d4152028-ee35-4411-b42a-839aa7e6761a/,Roman,,03/06/2022,15.0000000,15.0000000,48.23377300000,-4.446776000000,,Crozon,32086,observation-d4152028-ee35-4411-b42a-839aa7e6761a-3,https://biolit.fr/observations/observation-d4152028-ee35-4411-b42a-839aa7e6761a-3/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/2023/07/Chamelea striatula.PNG,,TRUE, +N1,58666,sortie-d4152028-ee35-4411-b42a-839aa7e6761a,https://biolit.fr/sorties/sortie-d4152028-ee35-4411-b42a-839aa7e6761a/,Roman,,03/06/2022,15.0000000,15.0000000,48.23377300000,-4.446776000000,,Crozon,32088,observation-d4152028-ee35-4411-b42a-839aa7e6761a-4,https://biolit.fr/observations/observation-d4152028-ee35-4411-b42a-839aa7e6761a-4/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/Chtamalus montagui.PNG,,TRUE, +N1,58666,sortie-d4152028-ee35-4411-b42a-839aa7e6761a,https://biolit.fr/sorties/sortie-d4152028-ee35-4411-b42a-839aa7e6761a/,Roman,,03/06/2022,15.0000000,15.0000000,48.23377300000,-4.446776000000,,Crozon,32090,observation-d4152028-ee35-4411-b42a-839aa7e6761a-5,https://biolit.fr/observations/observation-d4152028-ee35-4411-b42a-839aa7e6761a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Donacina sp.PNG,,FALSE, +N1,58666,sortie-d4152028-ee35-4411-b42a-839aa7e6761a,https://biolit.fr/sorties/sortie-d4152028-ee35-4411-b42a-839aa7e6761a/,Roman,,03/06/2022,15.0000000,15.0000000,48.23377300000,-4.446776000000,,Crozon,32092,observation-d4152028-ee35-4411-b42a-839aa7e6761a-6,https://biolit.fr/observations/observation-d4152028-ee35-4411-b42a-839aa7e6761a-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gari fervensis_0.PNG,,FALSE, +N1,58666,sortie-d4152028-ee35-4411-b42a-839aa7e6761a,https://biolit.fr/sorties/sortie-d4152028-ee35-4411-b42a-839aa7e6761a/,Roman,,03/06/2022,15.0000000,15.0000000,48.23377300000,-4.446776000000,,Crozon,32094,observation-d4152028-ee35-4411-b42a-839aa7e6761a-7,https://biolit.fr/observations/observation-d4152028-ee35-4411-b42a-839aa7e6761a-7/,Laevicardium crassum,Bucarde de Norvège,,https://biolit.fr/wp-content/uploads/2023/07/Laevicardium crassum.PNG,,TRUE, +N1,58666,sortie-d4152028-ee35-4411-b42a-839aa7e6761a,https://biolit.fr/sorties/sortie-d4152028-ee35-4411-b42a-839aa7e6761a/,Roman,,03/06/2022,15.0000000,15.0000000,48.23377300000,-4.446776000000,,Crozon,32096,observation-d4152028-ee35-4411-b42a-839aa7e6761a-8,https://biolit.fr/observations/observation-d4152028-ee35-4411-b42a-839aa7e6761a-8/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina obtusata_2.PNG,,TRUE, +N1,58666,sortie-d4152028-ee35-4411-b42a-839aa7e6761a,https://biolit.fr/sorties/sortie-d4152028-ee35-4411-b42a-839aa7e6761a/,Roman,,03/06/2022,15.0000000,15.0000000,48.23377300000,-4.446776000000,,Crozon,32098,observation-d4152028-ee35-4411-b42a-839aa7e6761a-9,https://biolit.fr/observations/observation-d4152028-ee35-4411-b42a-839aa7e6761a-9/,Lutraria angustior,Lutraire étroite,,https://biolit.fr/wp-content/uploads/2023/07/Lutraria anguistor.PNG,,TRUE, +N1,58666,sortie-d4152028-ee35-4411-b42a-839aa7e6761a,https://biolit.fr/sorties/sortie-d4152028-ee35-4411-b42a-839aa7e6761a/,Roman,,03/06/2022,15.0000000,15.0000000,48.23377300000,-4.446776000000,,Crozon,32100,observation-d4152028-ee35-4411-b42a-839aa7e6761a-10,https://biolit.fr/observations/observation-d4152028-ee35-4411-b42a-839aa7e6761a-10/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/2023/07/Mactra stultorum_2.PNG,,TRUE, +N1,58666,sortie-d4152028-ee35-4411-b42a-839aa7e6761a,https://biolit.fr/sorties/sortie-d4152028-ee35-4411-b42a-839aa7e6761a/,Roman,,03/06/2022,15.0000000,15.0000000,48.23377300000,-4.446776000000,,Crozon,32102,observation-d4152028-ee35-4411-b42a-839aa7e6761a-11,https://biolit.fr/observations/observation-d4152028-ee35-4411-b42a-839aa7e6761a-11/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_19.PNG,,TRUE, +N1,58666,sortie-d4152028-ee35-4411-b42a-839aa7e6761a,https://biolit.fr/sorties/sortie-d4152028-ee35-4411-b42a-839aa7e6761a/,Roman,,03/06/2022,15.0000000,15.0000000,48.23377300000,-4.446776000000,,Crozon,32104,observation-d4152028-ee35-4411-b42a-839aa7e6761a-12,https://biolit.fr/observations/observation-d4152028-ee35-4411-b42a-839aa7e6761a-12/,Spisula solida,Mactre épaisse,,https://biolit.fr/wp-content/uploads/2023/07/Spisula subtruncata_0.PNG,,TRUE, +N1,58667,sortie-681df4ac-3202-46ae-8e14-48ae8993e3d3,https://biolit.fr/sorties/sortie-681df4ac-3202-46ae-8e14-48ae8993e3d3/,thomc69,,2/21/2022 0:00,16.0000000,18.0000000,47.243556000000,-2.262203000000,,"Saint-Nazaire, plage de port Charlotte",32106,observation-681df4ac-3202-46ae-8e14-48ae8993e3d3,https://biolit.fr/observations/observation-681df4ac-3202-46ae-8e14-48ae8993e3d3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220206_154602-scaled.jpg,,FALSE, +N1,58667,sortie-681df4ac-3202-46ae-8e14-48ae8993e3d3,https://biolit.fr/sorties/sortie-681df4ac-3202-46ae-8e14-48ae8993e3d3/,thomc69,,2/21/2022 0:00,16.0000000,18.0000000,47.243556000000,-2.262203000000,,"Saint-Nazaire, plage de port Charlotte",32108,observation-681df4ac-3202-46ae-8e14-48ae8993e3d3-2,https://biolit.fr/observations/observation-681df4ac-3202-46ae-8e14-48ae8993e3d3-2/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/20220206_155011-scaled.jpg,,TRUE, +N1,58667,sortie-681df4ac-3202-46ae-8e14-48ae8993e3d3,https://biolit.fr/sorties/sortie-681df4ac-3202-46ae-8e14-48ae8993e3d3/,thomc69,,2/21/2022 0:00,16.0000000,18.0000000,47.243556000000,-2.262203000000,,"Saint-Nazaire, plage de port Charlotte",32110,observation-681df4ac-3202-46ae-8e14-48ae8993e3d3-3,https://biolit.fr/observations/observation-681df4ac-3202-46ae-8e14-48ae8993e3d3-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220206_155715-scaled.jpg,,FALSE, +N1,58667,sortie-681df4ac-3202-46ae-8e14-48ae8993e3d3,https://biolit.fr/sorties/sortie-681df4ac-3202-46ae-8e14-48ae8993e3d3/,thomc69,,2/21/2022 0:00,16.0000000,18.0000000,47.243556000000,-2.262203000000,,"Saint-Nazaire, plage de port Charlotte",32112,observation-681df4ac-3202-46ae-8e14-48ae8993e3d3-4,https://biolit.fr/observations/observation-681df4ac-3202-46ae-8e14-48ae8993e3d3-4/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/20220206_155507-scaled.jpg,,TRUE, +N1,58667,sortie-681df4ac-3202-46ae-8e14-48ae8993e3d3,https://biolit.fr/sorties/sortie-681df4ac-3202-46ae-8e14-48ae8993e3d3/,thomc69,,2/21/2022 0:00,16.0000000,18.0000000,47.243556000000,-2.262203000000,,"Saint-Nazaire, plage de port Charlotte",32114,observation-681df4ac-3202-46ae-8e14-48ae8993e3d3-5,https://biolit.fr/observations/observation-681df4ac-3202-46ae-8e14-48ae8993e3d3-5/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/20220206_153718-scaled.jpg,,TRUE, +N1,58667,sortie-681df4ac-3202-46ae-8e14-48ae8993e3d3,https://biolit.fr/sorties/sortie-681df4ac-3202-46ae-8e14-48ae8993e3d3/,thomc69,,2/21/2022 0:00,16.0000000,18.0000000,47.243556000000,-2.262203000000,,"Saint-Nazaire, plage de port Charlotte",32116,observation-681df4ac-3202-46ae-8e14-48ae8993e3d3-6,https://biolit.fr/observations/observation-681df4ac-3202-46ae-8e14-48ae8993e3d3-6/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/20220206_155507_0-scaled.jpg,,TRUE, +N1,58668,sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0,https://biolit.fr/sorties/sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0/,marieduthoo,,2/17/2022 0:00,8.0:45,11.0:15,43.273188000000,5.362202000000,Planète Mer,Plage du Prophète,32118,observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0,https://biolit.fr/observations/observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2022-02-17 à 12.48.31.png,,TRUE, +N1,58668,sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0,https://biolit.fr/sorties/sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0/,marieduthoo,,2/17/2022 0:00,8.0:45,11.0:15,43.273188000000,5.362202000000,Planète Mer,Plage du Prophète,32120,observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-2,https://biolit.fr/observations/observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-2/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2022-02-17 à 12.48.24.png,,TRUE, +N1,58668,sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0,https://biolit.fr/sorties/sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0/,marieduthoo,,2/17/2022 0:00,8.0:45,11.0:15,43.273188000000,5.362202000000,Planète Mer,Plage du Prophète,32122,observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-3,https://biolit.fr/observations/observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-3/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2022-02-17 à 12.48.18.png,,TRUE, +N1,58668,sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0,https://biolit.fr/sorties/sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0/,marieduthoo,,2/17/2022 0:00,8.0:45,11.0:15,43.273188000000,5.362202000000,Planète Mer,Plage du Prophète,32124,observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-4,https://biolit.fr/observations/observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-4/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2022-02-17 à 12.47.58.png,,TRUE, +N1,58668,sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0,https://biolit.fr/sorties/sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0/,marieduthoo,,2/17/2022 0:00,8.0:45,11.0:15,43.273188000000,5.362202000000,Planète Mer,Plage du Prophète,32126,observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-5,https://biolit.fr/observations/observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-5/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2022-02-17 à 12.47.49.png,,TRUE, +N1,58668,sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0,https://biolit.fr/sorties/sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0/,marieduthoo,,2/17/2022 0:00,8.0:45,11.0:15,43.273188000000,5.362202000000,Planète Mer,Plage du Prophète,32128,observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-6,https://biolit.fr/observations/observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2022-02-17 à 12.47.39.png,,FALSE, +N1,58668,sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0,https://biolit.fr/sorties/sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0/,marieduthoo,,2/17/2022 0:00,8.0:45,11.0:15,43.273188000000,5.362202000000,Planète Mer,Plage du Prophète,32130,observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-7,https://biolit.fr/observations/observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2022-02-17 à 12.47.32.png,,FALSE, +N1,58668,sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0,https://biolit.fr/sorties/sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0/,marieduthoo,,2/17/2022 0:00,8.0:45,11.0:15,43.273188000000,5.362202000000,Planète Mer,Plage du Prophète,32132,observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-8,https://biolit.fr/observations/observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2022-02-17 à 12.47.24.png,,FALSE, +N1,58668,sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0,https://biolit.fr/sorties/sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0/,marieduthoo,,2/17/2022 0:00,8.0:45,11.0:15,43.273188000000,5.362202000000,Planète Mer,Plage du Prophète,32134,observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-9,https://biolit.fr/observations/observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-9/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2022-02-17 à 12.47.16.png,,TRUE, +N1,58668,sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0,https://biolit.fr/sorties/sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0/,marieduthoo,,2/17/2022 0:00,8.0:45,11.0:15,43.273188000000,5.362202000000,Planète Mer,Plage du Prophète,32136,observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-10,https://biolit.fr/observations/observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-10/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2022-02-17 à 12.47.11.png,,TRUE, +N1,58668,sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0,https://biolit.fr/sorties/sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0/,marieduthoo,,2/17/2022 0:00,8.0:45,11.0:15,43.273188000000,5.362202000000,Planète Mer,Plage du Prophète,32138,observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-11,https://biolit.fr/observations/observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2022-02-17 à 12.47.04.png,,FALSE, +N1,58668,sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0,https://biolit.fr/sorties/sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0/,marieduthoo,,2/17/2022 0:00,8.0:45,11.0:15,43.273188000000,5.362202000000,Planète Mer,Plage du Prophète,32140,observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-12,https://biolit.fr/observations/observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2022-02-17 à 12.46.53.png,,FALSE, +N1,58669,sortie-57bc31db-5000-43f7-8f97-00fe40042500,https://biolit.fr/sorties/sortie-57bc31db-5000-43f7-8f97-00fe40042500/,marieduthoo,,2/17/2022 0:00,8.0000000,11.0:15,43.280179000000,5.35303900000,Planète Mer,Anse de la Fausse Monnaie,32142,observation-57bc31db-5000-43f7-8f97-00fe40042500,https://biolit.fr/observations/observation-57bc31db-5000-43f7-8f97-00fe40042500/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3495_0-scaled.jpg,,FALSE, +N1,58669,sortie-57bc31db-5000-43f7-8f97-00fe40042500,https://biolit.fr/sorties/sortie-57bc31db-5000-43f7-8f97-00fe40042500/,marieduthoo,,2/17/2022 0:00,8.0000000,11.0:15,43.280179000000,5.35303900000,Planète Mer,Anse de la Fausse Monnaie,32144,observation-57bc31db-5000-43f7-8f97-00fe40042500-2,https://biolit.fr/observations/observation-57bc31db-5000-43f7-8f97-00fe40042500-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3494_0-scaled.jpg,,FALSE, +N1,58669,sortie-57bc31db-5000-43f7-8f97-00fe40042500,https://biolit.fr/sorties/sortie-57bc31db-5000-43f7-8f97-00fe40042500/,marieduthoo,,2/17/2022 0:00,8.0000000,11.0:15,43.280179000000,5.35303900000,Planète Mer,Anse de la Fausse Monnaie,32146,observation-57bc31db-5000-43f7-8f97-00fe40042500-3,https://biolit.fr/observations/observation-57bc31db-5000-43f7-8f97-00fe40042500-3/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_3492-scaled.jpg,,TRUE, +N1,58669,sortie-57bc31db-5000-43f7-8f97-00fe40042500,https://biolit.fr/sorties/sortie-57bc31db-5000-43f7-8f97-00fe40042500/,marieduthoo,,2/17/2022 0:00,8.0000000,11.0:15,43.280179000000,5.35303900000,Planète Mer,Anse de la Fausse Monnaie,32148,observation-57bc31db-5000-43f7-8f97-00fe40042500-4,https://biolit.fr/observations/observation-57bc31db-5000-43f7-8f97-00fe40042500-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3490-scaled.jpg,,FALSE, +N1,58669,sortie-57bc31db-5000-43f7-8f97-00fe40042500,https://biolit.fr/sorties/sortie-57bc31db-5000-43f7-8f97-00fe40042500/,marieduthoo,,2/17/2022 0:00,8.0000000,11.0:15,43.280179000000,5.35303900000,Planète Mer,Anse de la Fausse Monnaie,32150,observation-57bc31db-5000-43f7-8f97-00fe40042500-5,https://biolit.fr/observations/observation-57bc31db-5000-43f7-8f97-00fe40042500-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3488-scaled.jpg,,FALSE, +N1,58669,sortie-57bc31db-5000-43f7-8f97-00fe40042500,https://biolit.fr/sorties/sortie-57bc31db-5000-43f7-8f97-00fe40042500/,marieduthoo,,2/17/2022 0:00,8.0000000,11.0:15,43.280179000000,5.35303900000,Planète Mer,Anse de la Fausse Monnaie,32152,observation-57bc31db-5000-43f7-8f97-00fe40042500-6,https://biolit.fr/observations/observation-57bc31db-5000-43f7-8f97-00fe40042500-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3493_0-scaled.jpg,,FALSE, +N1,58669,sortie-57bc31db-5000-43f7-8f97-00fe40042500,https://biolit.fr/sorties/sortie-57bc31db-5000-43f7-8f97-00fe40042500/,marieduthoo,,2/17/2022 0:00,8.0000000,11.0:15,43.280179000000,5.35303900000,Planète Mer,Anse de la Fausse Monnaie,32154,observation-57bc31db-5000-43f7-8f97-00fe40042500-7,https://biolit.fr/observations/observation-57bc31db-5000-43f7-8f97-00fe40042500-7/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_3491-scaled.jpg,,TRUE, +N1,58669,sortie-57bc31db-5000-43f7-8f97-00fe40042500,https://biolit.fr/sorties/sortie-57bc31db-5000-43f7-8f97-00fe40042500/,marieduthoo,,2/17/2022 0:00,8.0000000,11.0:15,43.280179000000,5.35303900000,Planète Mer,Anse de la Fausse Monnaie,32156,observation-57bc31db-5000-43f7-8f97-00fe40042500-8,https://biolit.fr/observations/observation-57bc31db-5000-43f7-8f97-00fe40042500-8/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3489-scaled.jpg,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32158,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita_7.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32160,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-2,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacaea_1.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32162,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-3,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_20.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32164,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-4,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-4/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/Ascophyllum nodosum.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32166,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-5,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-5/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_15.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32168,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-6,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-6/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_22.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32170,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-7,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-7/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_12.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32172,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-8,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-8/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_17.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32174,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-9,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-9/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas copulation.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32176,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-10,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-10/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_14.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32178,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-11,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-11/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Crassostrea gigas_2.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32180,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-12,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 1_8.PNG,,FALSE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32182,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-13,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-13/,Pachymatisma johnstonia,Fesse d'éléphant,,https://biolit.fr/wp-content/uploads/2023/07/Eponge sp_0.PNG,,FALSE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32184,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-14,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_27.PNG,,FALSE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32186,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-15,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-15/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/Eulalia clavigera.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32188,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-16,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-16/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Fucus serratus-scaled.jpg,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32189,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-17,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-17/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/Haliotis tuberculata_8.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32191,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-18,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/Larus sp.PNG,,FALSE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32193,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-19,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-19/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_22.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32195,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-20,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-20/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_14.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32197,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-21,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/nul en algue.PNG,,FALSE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32199,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-22,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-22/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_8.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32201,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-23,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-23/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/Pholis sp.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32203,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-24,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-24/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/porcellana platycheles_6.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32205,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-25,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-25/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_22.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32207,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-26,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-26/,Sargassum vulgare,Sargasse commune,,https://biolit.fr/wp-content/uploads/2023/07/Sargassum vulgare.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32209,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-27,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ver plat.PNG,,FALSE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32211,observation-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_19.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32213,observation-9c234179-8296-491a-a958-02aa2af7dec2-2,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-2/,Actinia striata,Actinie striée,,https://biolit.fr/wp-content/uploads/2023/07/Actinia striata.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32214,observation-9c234179-8296-491a-a958-02aa2af7dec2-3,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_19.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32216,observation-9c234179-8296-491a-a958-02aa2af7dec2-4,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-4/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/Anthopleura balii_7.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32218,observation-9c234179-8296-491a-a958-02aa2af7dec2-5,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-5/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/Aplysia punctata_1.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32220,observation-9c234179-8296-491a-a958-02aa2af7dec2-6,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-6/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/Arenaria interpres_3.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32222,observation-9c234179-8296-491a-a958-02aa2af7dec2-7,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie sp_2.PNG,,FALSE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32224,observation-9c234179-8296-491a-a958-02aa2af7dec2-8,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-8/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_14.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32226,observation-9c234179-8296-491a-a958-02aa2af7dec2-9,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-9/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_21.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32228,observation-9c234179-8296-491a-a958-02aa2af7dec2-10,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-10/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/Aulactinia verrucosa_7.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32230,observation-9c234179-8296-491a-a958-02aa2af7dec2-11,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-11/,Berthella plumula,Berthelle plume,,https://biolit.fr/wp-content/uploads/2023/07/Berthella plumula_3.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32232,observation-9c234179-8296-491a-a958-02aa2af7dec2-12,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-12/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_11.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32234,observation-9c234179-8296-491a-a958-02aa2af7dec2-13,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-13/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_16.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32236,observation-9c234179-8296-491a-a958-02aa2af7dec2-14,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-14/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_13.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32238,observation-9c234179-8296-491a-a958-02aa2af7dec2-15,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-15/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/Colpomenia peregrina_0.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32240,observation-9c234179-8296-491a-a958-02aa2af7dec2-16,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_26.PNG,,FALSE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32242,observation-9c234179-8296-491a-a958-02aa2af7dec2-17,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-17/,Gari depressa,Psammobie déprimée,,https://biolit.fr/wp-content/uploads/2023/07/Gari depressa_10.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32244,observation-9c234179-8296-491a-a958-02aa2af7dec2-18,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-18/,Isozoanthus sulcatus,Anémone chocolat,,https://biolit.fr/wp-content/uploads/2023/07/Isozoanthus sulcatus_5.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32246,observation-9c234179-8296-491a-a958-02aa2af7dec2-19,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-19/,Lanice conchilega,Lanice,,https://biolit.fr/wp-content/uploads/2023/07/Lanice conchilega.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32248,observation-9c234179-8296-491a-a958-02aa2af7dec2-20,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Limace sp.PNG,,FALSE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32250,observation-9c234179-8296-491a-a958-02aa2af7dec2-21,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_6.PNG,,FALSE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32252,observation-9c234179-8296-491a-a958-02aa2af7dec2-22,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-22/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_7.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32254,observation-9c234179-8296-491a-a958-02aa2af7dec2-23,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-23/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_21.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32256,observation-9c234179-8296-491a-a958-02aa2af7dec2-24,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-24/,Chrysaora hysoscella,Méduse rayonnée,,https://biolit.fr/wp-content/uploads/2023/07/méduse sp.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32257,observation-9c234179-8296-491a-a958-02aa2af7dec2-25,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-25/,Dysidea fragilis,Eponge mie de pain mouillée,,https://biolit.fr/wp-content/uploads/2023/07/Mie de pain.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32259,observation-9c234179-8296-491a-a958-02aa2af7dec2-26,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-26/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_13.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32261,observation-9c234179-8296-491a-a958-02aa2af7dec2-27,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-27/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_18.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32263,observation-9c234179-8296-491a-a958-02aa2af7dec2-28,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-28/,Pilumnus hirtellus,Pilumne hirsute,,https://biolit.fr/wp-content/uploads/2023/07/Pilumnus hirtellus_6.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32265,observation-9c234179-8296-491a-a958-02aa2af7dec2-29,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-29/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/Pisidia longicornis_5.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32267,observation-9c234179-8296-491a-a958-02aa2af7dec2-30,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-30/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_20.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32269,observation-9c234179-8296-491a-a958-02aa2af7dec2-31,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-31/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_21.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32271,observation-9c234179-8296-491a-a958-02aa2af7dec2-32,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-32/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/Sabellaria alveolata_4.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32273,observation-9c234179-8296-491a-a958-02aa2af7dec2-33,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-33/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/Urticina felina_4.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32275,observation-9c234179-8296-491a-a958-02aa2af7dec2-34,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-34/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/venus verrucosa_5.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32276,observation-9c234179-8296-491a-a958-02aa2af7dec2-35,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-35/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Watersipora subatra_5.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32278,observation-9c234179-8296-491a-a958-02aa2af7dec2-36,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-36/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_16.PNG,,TRUE, +N1,58672,sortie-1a2653f6-8452-4ae8-b227-4e333cb00678,https://biolit.fr/sorties/sortie-1a2653f6-8452-4ae8-b227-4e333cb00678/,VALERIE MUFFAT,,1/24/2022 0:00,11.0000000,12.0000000,43.107247000000,5.979137000000,Naturoscope (Antenne Var),ANSE MAGAUD LA GARDE,32280,observation-1a2653f6-8452-4ae8-b227-4e333cb00678,https://biolit.fr/observations/observation-1a2653f6-8452-4ae8-b227-4e333cb00678/,,,,https://biolit.fr/wp-content/uploads/2023/07/ON MESURE LA LARGEUR DE MAGAUD AVEC MARION GEORGE DU NATUROSCOPE-scaled.jpg,,FALSE, +N1,58672,sortie-1a2653f6-8452-4ae8-b227-4e333cb00678,https://biolit.fr/sorties/sortie-1a2653f6-8452-4ae8-b227-4e333cb00678/,VALERIE MUFFAT,,1/24/2022 0:00,11.0000000,12.0000000,43.107247000000,5.979137000000,Naturoscope (Antenne Var),ANSE MAGAUD LA GARDE,32282,observation-1a2653f6-8452-4ae8-b227-4e333cb00678-2,https://biolit.fr/observations/observation-1a2653f6-8452-4ae8-b227-4e333cb00678-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/MARION NATUROSCOPE ECOLE P LANGEVIN AME MAGAUD-scaled.jpg,,FALSE, +N1,58672,sortie-1a2653f6-8452-4ae8-b227-4e333cb00678,https://biolit.fr/sorties/sortie-1a2653f6-8452-4ae8-b227-4e333cb00678/,VALERIE MUFFAT,,1/24/2022 0:00,11.0000000,12.0000000,43.107247000000,5.979137000000,Naturoscope (Antenne Var),ANSE MAGAUD LA GARDE,32284,observation-1a2653f6-8452-4ae8-b227-4e333cb00678-3,https://biolit.fr/observations/observation-1a2653f6-8452-4ae8-b227-4e333cb00678-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/LONGUEUR LARGEUR MAGAUD AME LA GARDE-scaled.jpg,,FALSE, +N1,58673,sortie-74a6f42f-e851-43a8-b44c-3849f2098205,https://biolit.fr/sorties/sortie-74a6f42f-e851-43a8-b44c-3849f2098205/,VALERIE MUFFAT,,1/18/2022 0:00,14.0000000,16.0000000,43.107298000000,5.979147000000,,ANSE MAGAUD LA GARDE,32286,observation-74a6f42f-e851-43a8-b44c-3849f2098205,https://biolit.fr/observations/observation-74a6f42f-e851-43a8-b44c-3849f2098205/,,,,https://biolit.fr/wp-content/uploads/2023/07/ON MESURE LARGEUR LONGUEUR EPAISSEUR POSIDONIE-scaled.jpg,,FALSE, +N1,58673,sortie-74a6f42f-e851-43a8-b44c-3849f2098205,https://biolit.fr/sorties/sortie-74a6f42f-e851-43a8-b44c-3849f2098205/,VALERIE MUFFAT,,1/18/2022 0:00,14.0000000,16.0000000,43.107298000000,5.979147000000,,ANSE MAGAUD LA GARDE,32288,observation-74a6f42f-e851-43a8-b44c-3849f2098205-2,https://biolit.fr/observations/observation-74a6f42f-e851-43a8-b44c-3849f2098205-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/ON MESURE LARGEUR LONGUEUR EPAISSEUR DE LA POSIDONIE-scaled.jpg,,FALSE, +N1,58674,sortie-9e1ee552-3cd6-4231-80a2-cbd1bd880a38,https://biolit.fr/sorties/sortie-9e1ee552-3cd6-4231-80a2-cbd1bd880a38/,VALERIE MUFFAT,,1/18/2022 0:00,14.0000000,16.0000000,43.107339000000,5.979528000000,,ANSE MAGAUD LA GARDE,32290,observation-9e1ee552-3cd6-4231-80a2-cbd1bd880a38,https://biolit.fr/observations/observation-9e1ee552-3cd6-4231-80a2-cbd1bd880a38/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/ANSE MAGAUD-scaled.jpg,,TRUE, +N1,58674,sortie-9e1ee552-3cd6-4231-80a2-cbd1bd880a38,https://biolit.fr/sorties/sortie-9e1ee552-3cd6-4231-80a2-cbd1bd880a38/,VALERIE MUFFAT,,1/18/2022 0:00,14.0000000,16.0000000,43.107339000000,5.979528000000,,ANSE MAGAUD LA GARDE,32292,observation-9e1ee552-3cd6-4231-80a2-cbd1bd880a38-2,https://biolit.fr/observations/observation-9e1ee552-3cd6-4231-80a2-cbd1bd880a38-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/ANSE MAGAUD OURSINS ECOLE P LANGEVIN LA GARDE-scaled.jpg,,TRUE, +N1,58674,sortie-9e1ee552-3cd6-4231-80a2-cbd1bd880a38,https://biolit.fr/sorties/sortie-9e1ee552-3cd6-4231-80a2-cbd1bd880a38/,VALERIE MUFFAT,,1/18/2022 0:00,14.0000000,16.0000000,43.107339000000,5.979528000000,,ANSE MAGAUD LA GARDE,32294,observation-9e1ee552-3cd6-4231-80a2-cbd1bd880a38-3,https://biolit.fr/observations/observation-9e1ee552-3cd6-4231-80a2-cbd1bd880a38-3/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/ANSE MAGAUD ECOLE PAUL LANGEVIN AMBASSADEURS DE MAGAUD AME-scaled.jpg,,TRUE, +N1,58674,sortie-9e1ee552-3cd6-4231-80a2-cbd1bd880a38,https://biolit.fr/sorties/sortie-9e1ee552-3cd6-4231-80a2-cbd1bd880a38/,VALERIE MUFFAT,,1/18/2022 0:00,14.0000000,16.0000000,43.107339000000,5.979528000000,,ANSE MAGAUD LA GARDE,32296,observation-9e1ee552-3cd6-4231-80a2-cbd1bd880a38-4,https://biolit.fr/observations/observation-9e1ee552-3cd6-4231-80a2-cbd1bd880a38-4/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/2023/07/ANSE MAGAUD AME ECOLE P LANGEVIN LA GARDE VAR-scaled.jpg,,TRUE, +N1,58675,sortie-0255d41b-294d-4f40-808b-aace20282f68,https://biolit.fr/sorties/sortie-0255d41b-294d-4f40-808b-aace20282f68/,enorabocher,,1/21/2022 0:00,12.0:55,13.0:15,48.357985000000,-4.533640000000,,Estran de la pointe du Portzic,32298,observation-0255d41b-294d-4f40-808b-aace20282f68,https://biolit.fr/observations/observation-0255d41b-294d-4f40-808b-aace20282f68/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220121_132101-scaled.jpg,,TRUE, +N1,58675,sortie-0255d41b-294d-4f40-808b-aace20282f68,https://biolit.fr/sorties/sortie-0255d41b-294d-4f40-808b-aace20282f68/,enorabocher,,1/21/2022 0:00,12.0:55,13.0:15,48.357985000000,-4.533640000000,,Estran de la pointe du Portzic,32300,observation-0255d41b-294d-4f40-808b-aace20282f68-2,https://biolit.fr/observations/observation-0255d41b-294d-4f40-808b-aace20282f68-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia_viridis (2)-scaled.jpg,,TRUE, +N1,58675,sortie-0255d41b-294d-4f40-808b-aace20282f68,https://biolit.fr/sorties/sortie-0255d41b-294d-4f40-808b-aace20282f68/,enorabocher,,1/21/2022 0:00,12.0:55,13.0:15,48.357985000000,-4.533640000000,,Estran de la pointe du Portzic,32302,observation-0255d41b-294d-4f40-808b-aace20282f68-3,https://biolit.fr/observations/observation-0255d41b-294d-4f40-808b-aace20282f68-3/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Calliostoma_zizyphinum (2)-scaled.jpg,,TRUE, +N1,58675,sortie-0255d41b-294d-4f40-808b-aace20282f68,https://biolit.fr/sorties/sortie-0255d41b-294d-4f40-808b-aace20282f68/,enorabocher,,1/21/2022 0:00,12.0:55,13.0:15,48.357985000000,-4.533640000000,,Estran de la pointe du Portzic,32304,observation-0255d41b-294d-4f40-808b-aace20282f68-4,https://biolit.fr/observations/observation-0255d41b-294d-4f40-808b-aace20282f68-4/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Eulalia_viridis_et_Watersipora_subatra (2)-scaled.jpg,,TRUE, +N1,58675,sortie-0255d41b-294d-4f40-808b-aace20282f68,https://biolit.fr/sorties/sortie-0255d41b-294d-4f40-808b-aace20282f68/,enorabocher,,1/21/2022 0:00,12.0:55,13.0:15,48.357985000000,-4.533640000000,,Estran de la pointe du Portzic,32306,observation-0255d41b-294d-4f40-808b-aace20282f68-5,https://biolit.fr/observations/observation-0255d41b-294d-4f40-808b-aace20282f68-5/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220121_131049 (2)-scaled.jpg,,TRUE, +N1,58675,sortie-0255d41b-294d-4f40-808b-aace20282f68,https://biolit.fr/sorties/sortie-0255d41b-294d-4f40-808b-aace20282f68/,enorabocher,,1/21/2022 0:00,12.0:55,13.0:15,48.357985000000,-4.533640000000,,Estran de la pointe du Portzic,32308,observation-0255d41b-294d-4f40-808b-aace20282f68-6,https://biolit.fr/observations/observation-0255d41b-294d-4f40-808b-aace20282f68-6/,Limacia clavigera,Limacia clavigère,,https://biolit.fr/wp-content/uploads/2023/07/Limacia_clavigera2-scaled.jpg,,TRUE, +N1,58675,sortie-0255d41b-294d-4f40-808b-aace20282f68,https://biolit.fr/sorties/sortie-0255d41b-294d-4f40-808b-aace20282f68/,enorabocher,,1/21/2022 0:00,12.0:55,13.0:15,48.357985000000,-4.533640000000,,Estran de la pointe du Portzic,32310,observation-0255d41b-294d-4f40-808b-aace20282f68-7,https://biolit.fr/observations/observation-0255d41b-294d-4f40-808b-aace20282f68-7/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebra_erinaceus-scaled.jpg,,TRUE, +N1,58675,sortie-0255d41b-294d-4f40-808b-aace20282f68,https://biolit.fr/sorties/sortie-0255d41b-294d-4f40-808b-aace20282f68/,enorabocher,,1/21/2022 0:00,12.0:55,13.0:15,48.357985000000,-4.533640000000,,Estran de la pointe du Portzic,32312,observation-0255d41b-294d-4f40-808b-aace20282f68-8,https://biolit.fr/observations/observation-0255d41b-294d-4f40-808b-aace20282f68-8/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina_obtusata2 (2)-scaled.jpg,,TRUE, +N1,58676,sortie-a0b050f3-e965-46e6-b602-5f9a440cd902,https://biolit.fr/sorties/sortie-a0b050f3-e965-46e6-b602-5f9a440cd902/,Phil,,01/05/2022,11.0000000,11.0:45,47.792644000000,-4.289333000000,,Guilvinec - Finistère,32314,observation-a0b050f3-e965-46e6-b602-5f9a440cd902,https://biolit.fr/observations/observation-a0b050f3-e965-46e6-b602-5f9a440cd902/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/20220105_114245.jpg,,TRUE, +N1,58676,sortie-a0b050f3-e965-46e6-b602-5f9a440cd902,https://biolit.fr/sorties/sortie-a0b050f3-e965-46e6-b602-5f9a440cd902/,Phil,,01/05/2022,11.0000000,11.0:45,47.792644000000,-4.289333000000,,Guilvinec - Finistère,32316,observation-a0b050f3-e965-46e6-b602-5f9a440cd902-2,https://biolit.fr/observations/observation-a0b050f3-e965-46e6-b602-5f9a440cd902-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220105_114252.jpg,,FALSE, +N1,58676,sortie-a0b050f3-e965-46e6-b602-5f9a440cd902,https://biolit.fr/sorties/sortie-a0b050f3-e965-46e6-b602-5f9a440cd902/,Phil,,01/05/2022,11.0000000,11.0:45,47.792644000000,-4.289333000000,,Guilvinec - Finistère,32318,observation-a0b050f3-e965-46e6-b602-5f9a440cd902-3,https://biolit.fr/observations/observation-a0b050f3-e965-46e6-b602-5f9a440cd902-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220105_114328.jpg,,FALSE, +N1,58676,sortie-a0b050f3-e965-46e6-b602-5f9a440cd902,https://biolit.fr/sorties/sortie-a0b050f3-e965-46e6-b602-5f9a440cd902/,Phil,,01/05/2022,11.0000000,11.0:45,47.792644000000,-4.289333000000,,Guilvinec - Finistère,32320,observation-a0b050f3-e965-46e6-b602-5f9a440cd902-4,https://biolit.fr/observations/observation-a0b050f3-e965-46e6-b602-5f9a440cd902-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220105_114145.jpg,,FALSE, +N1,58677,sortie-7cb7a3e0-df9e-4031-aa0b-95ac887568d5,https://biolit.fr/sorties/sortie-7cb7a3e0-df9e-4031-aa0b-95ac887568d5/,Phil,,01/05/2022,14.0:45,14.0:55,47.896797000000,-3.974456000000,,La Forêt-Fouesnant - Finistère,32322,observation-7cb7a3e0-df9e-4031-aa0b-95ac887568d5,https://biolit.fr/observations/observation-7cb7a3e0-df9e-4031-aa0b-95ac887568d5/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20220105_145340.jpg,,TRUE, +N1,58677,sortie-7cb7a3e0-df9e-4031-aa0b-95ac887568d5,https://biolit.fr/sorties/sortie-7cb7a3e0-df9e-4031-aa0b-95ac887568d5/,Phil,,01/05/2022,14.0:45,14.0:55,47.896797000000,-3.974456000000,,La Forêt-Fouesnant - Finistère,32324,observation-7cb7a3e0-df9e-4031-aa0b-95ac887568d5-2,https://biolit.fr/observations/observation-7cb7a3e0-df9e-4031-aa0b-95ac887568d5-2/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/20220105_144928.jpg,,TRUE, +N1,58678,sortie-76e72e13-45c9-45c5-852c-50061b5e961c,https://biolit.fr/sorties/sortie-76e72e13-45c9-45c5-852c-50061b5e961c/,ddewick,,12/30/2021 0:00,11.0:25,12.0:25,47.963830000000,-4.426992000000,,Menhir des Droits de l'Homme,32326,observation-76e72e13-45c9-45c5-852c-50061b5e961c,https://biolit.fr/observations/observation-76e72e13-45c9-45c5-852c-50061b5e961c/,,,,https://biolit.fr/wp-content/uploads/2023/07/2021-12-30 Bird Plozevet.jpg,,FALSE, +N1,58679,sortie-d0cbf652-aa06-44c0-b712-d4426b641aa7,https://biolit.fr/sorties/sortie-d0cbf652-aa06-44c0-b712-d4426b641aa7/,ddewick,,12/30/2021 0:00,14.0000000,15.0000000,48.038902000000,-4.736619000000,,Pointe du Raz - Cap Sizun,32328,observation-d0cbf652-aa06-44c0-b712-d4426b641aa7,https://biolit.fr/observations/observation-d0cbf652-aa06-44c0-b712-d4426b641aa7/,,,,https://biolit.fr/wp-content/uploads/2023/07/2021-12-30 Seaweed Pointe du Raz Cap Sizun.jpg,,FALSE, +N1,58680,sortie-d737dc48-774a-464b-8ce1-6e8568dbf932,https://biolit.fr/sorties/sortie-d737dc48-774a-464b-8ce1-6e8568dbf932/,ddewick,,12/29/2021 0:00,11.0000000,12.0000000,47.965182000000,-4.4289230000,,Menhir des Droits de l'Homme,32330,observation-d737dc48-774a-464b-8ce1-6e8568dbf932,https://biolit.fr/observations/observation-d737dc48-774a-464b-8ce1-6e8568dbf932/,,,,https://biolit.fr/wp-content/uploads/2023/07/2021-12-29 Shrub.jpg,,FALSE, +N1,58681,sortie-97ee40fd-0576-4f77-8de8-00d017007792,https://biolit.fr/sorties/sortie-97ee40fd-0576-4f77-8de8-00d017007792/,Dorian ROULET,,01/05/2022,12.0000000,12.0000000,47.300510000000,-3.198781000000,Planète Mer,plage de kerel,32332,observation-97ee40fd-0576-4f77-8de8-00d017007792,https://biolit.fr/observations/observation-97ee40fd-0576-4f77-8de8-00d017007792/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220105124143-scaled.jpg,,TRUE, +N1,58681,sortie-97ee40fd-0576-4f77-8de8-00d017007792,https://biolit.fr/sorties/sortie-97ee40fd-0576-4f77-8de8-00d017007792/,Dorian ROULET,,01/05/2022,12.0000000,12.0000000,47.300510000000,-3.198781000000,Planète Mer,plage de kerel,32334,observation-97ee40fd-0576-4f77-8de8-00d017007792-2,https://biolit.fr/observations/observation-97ee40fd-0576-4f77-8de8-00d017007792-2/,Electra pilosa,Ecorce pileuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220105125716-scaled.jpg,,TRUE, +N1,58681,sortie-97ee40fd-0576-4f77-8de8-00d017007792,https://biolit.fr/sorties/sortie-97ee40fd-0576-4f77-8de8-00d017007792/,Dorian ROULET,,01/05/2022,12.0000000,12.0000000,47.300510000000,-3.198781000000,Planète Mer,plage de kerel,32336,observation-97ee40fd-0576-4f77-8de8-00d017007792-3,https://biolit.fr/observations/observation-97ee40fd-0576-4f77-8de8-00d017007792-3/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220105125411-scaled.jpg,,TRUE, +N1,58681,sortie-97ee40fd-0576-4f77-8de8-00d017007792,https://biolit.fr/sorties/sortie-97ee40fd-0576-4f77-8de8-00d017007792/,Dorian ROULET,,01/05/2022,12.0000000,12.0000000,47.300510000000,-3.198781000000,Planète Mer,plage de kerel,32338,observation-97ee40fd-0576-4f77-8de8-00d017007792-4,https://biolit.fr/observations/observation-97ee40fd-0576-4f77-8de8-00d017007792-4/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG20220105125350-scaled.jpg,,TRUE, +N1,58682,sortie-9c9ea057-8359-491b-b6d2-a99786b4e0f3,https://biolit.fr/sorties/sortie-9c9ea057-8359-491b-b6d2-a99786b4e0f3/,Dorian ROULET,,01/04/2022,11.0000000,11.0:45,47.346409000000,-3.152074000000,Planète Mer,plage du port,32340,observation-9c9ea057-8359-491b-b6d2-a99786b4e0f3,https://biolit.fr/observations/observation-9c9ea057-8359-491b-b6d2-a99786b4e0f3/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220104112401-scaled.jpg,,TRUE, +N1,58682,sortie-9c9ea057-8359-491b-b6d2-a99786b4e0f3,https://biolit.fr/sorties/sortie-9c9ea057-8359-491b-b6d2-a99786b4e0f3/,Dorian ROULET,,01/04/2022,11.0000000,11.0:45,47.346409000000,-3.152074000000,Planète Mer,plage du port,32342,observation-9c9ea057-8359-491b-b6d2-a99786b4e0f3-2,https://biolit.fr/observations/observation-9c9ea057-8359-491b-b6d2-a99786b4e0f3-2/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220104113758-scaled.jpg,,TRUE, +N1,58684,sortie-6f93f603-b386-43f0-81c0-f374ab476f3b,https://biolit.fr/sorties/sortie-6f93f603-b386-43f0-81c0-f374ab476f3b/,LYDIE BLOCH,,10/27/2021 0:00,14.0000000,14.0:45,43.39616300000,-1.681599000000,,"Plage du Fort de Socoa, 64500 Ciboure",32374,observation-6f93f603-b386-43f0-81c0-f374ab476f3b,https://biolit.fr/observations/observation-6f93f603-b386-43f0-81c0-f374ab476f3b/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/algue IMG_20211027_141749-scaled.jpg,,TRUE, +N1,58684,sortie-6f93f603-b386-43f0-81c0-f374ab476f3b,https://biolit.fr/sorties/sortie-6f93f603-b386-43f0-81c0-f374ab476f3b/,LYDIE BLOCH,,10/27/2021 0:00,14.0000000,14.0:45,43.39616300000,-1.681599000000,,"Plage du Fort de Socoa, 64500 Ciboure",32376,observation-6f93f603-b386-43f0-81c0-f374ab476f3b-2,https://biolit.fr/observations/observation-6f93f603-b386-43f0-81c0-f374ab476f3b-2/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/bernard IMG_20211027_143454-scaled.jpg,,TRUE, +N1,58684,sortie-6f93f603-b386-43f0-81c0-f374ab476f3b,https://biolit.fr/sorties/sortie-6f93f603-b386-43f0-81c0-f374ab476f3b/,LYDIE BLOCH,,10/27/2021 0:00,14.0000000,14.0:45,43.39616300000,-1.681599000000,,"Plage du Fort de Socoa, 64500 Ciboure",32380,observation-6f93f603-b386-43f0-81c0-f374ab476f3b-4,https://biolit.fr/observations/observation-6f93f603-b386-43f0-81c0-f374ab476f3b-4/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/crabe IMG_20211027_141409-scaled.jpg | https://biolit.fr/wp-content/uploads/2021/10/crabe-IMG_20211027_141402-scaled-1.jpg,,TRUE, +N1,58684,sortie-6f93f603-b386-43f0-81c0-f374ab476f3b,https://biolit.fr/sorties/sortie-6f93f603-b386-43f0-81c0-f374ab476f3b/,LYDIE BLOCH,,10/27/2021 0:00,14.0000000,14.0:45,43.39616300000,-1.681599000000,,"Plage du Fort de Socoa, 64500 Ciboure",32382,observation-6f93f603-b386-43f0-81c0-f374ab476f3b-5,https://biolit.fr/observations/observation-6f93f603-b386-43f0-81c0-f374ab476f3b-5/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/crabe IMG_20211027_142211-scaled.jpg,,TRUE, +N1,58684,sortie-6f93f603-b386-43f0-81c0-f374ab476f3b,https://biolit.fr/sorties/sortie-6f93f603-b386-43f0-81c0-f374ab476f3b/,LYDIE BLOCH,,10/27/2021 0:00,14.0000000,14.0:45,43.39616300000,-1.681599000000,,"Plage du Fort de Socoa, 64500 Ciboure",32384,observation-6f93f603-b386-43f0-81c0-f374ab476f3b-6,https://biolit.fr/observations/observation-6f93f603-b386-43f0-81c0-f374ab476f3b-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabe IMG_20211027_142349-scaled.jpg,,FALSE, +N1,58684,sortie-6f93f603-b386-43f0-81c0-f374ab476f3b,https://biolit.fr/sorties/sortie-6f93f603-b386-43f0-81c0-f374ab476f3b/,LYDIE BLOCH,,10/27/2021 0:00,14.0000000,14.0:45,43.39616300000,-1.681599000000,,"Plage du Fort de Socoa, 64500 Ciboure",32386,observation-6f93f603-b386-43f0-81c0-f374ab476f3b-7,https://biolit.fr/observations/observation-6f93f603-b386-43f0-81c0-f374ab476f3b-7/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211027_143527-scaled.jpg,,TRUE, +N1,58684,sortie-6f93f603-b386-43f0-81c0-f374ab476f3b,https://biolit.fr/sorties/sortie-6f93f603-b386-43f0-81c0-f374ab476f3b/,LYDIE BLOCH,,10/27/2021 0:00,14.0000000,14.0:45,43.39616300000,-1.681599000000,,"Plage du Fort de Socoa, 64500 Ciboure",32388,observation-6f93f603-b386-43f0-81c0-f374ab476f3b-8,https://biolit.fr/observations/observation-6f93f603-b386-43f0-81c0-f374ab476f3b-8/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/mouette IMG_20211027_143149-scaled.jpg,,TRUE, +N1,58684,sortie-6f93f603-b386-43f0-81c0-f374ab476f3b,https://biolit.fr/sorties/sortie-6f93f603-b386-43f0-81c0-f374ab476f3b/,LYDIE BLOCH,,10/27/2021 0:00,14.0000000,14.0:45,43.39616300000,-1.681599000000,,"Plage du Fort de Socoa, 64500 Ciboure",32390,observation-6f93f603-b386-43f0-81c0-f374ab476f3b-9,https://biolit.fr/observations/observation-6f93f603-b386-43f0-81c0-f374ab476f3b-9/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/os de seiche IMG_20211027_141124-scaled.jpg,,TRUE, +N1,58685,sortie-129ce6b7-6348-4ed5-8924-af8037cb2d48,https://biolit.fr/sorties/sortie-129ce6b7-6348-4ed5-8924-af8037cb2d48/,LYDIE BLOCH,,10/27/2021 0:00,13.0000000,14.000005,43.39579300000,-1.684460000000,,"Fort de Socoa, 64500 Ciboure",32392,observation-129ce6b7-6348-4ed5-8924-af8037cb2d48,https://biolit.fr/observations/observation-129ce6b7-6348-4ed5-8924-af8037cb2d48/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue IMG_20211027_134804-scaled.jpg,,FALSE, +N1,58685,sortie-129ce6b7-6348-4ed5-8924-af8037cb2d48,https://biolit.fr/sorties/sortie-129ce6b7-6348-4ed5-8924-af8037cb2d48/,LYDIE BLOCH,,10/27/2021 0:00,13.0000000,14.000005,43.39579300000,-1.684460000000,,"Fort de Socoa, 64500 Ciboure",32394,observation-129ce6b7-6348-4ed5-8924-af8037cb2d48-2,https://biolit.fr/observations/observation-129ce6b7-6348-4ed5-8924-af8037cb2d48-2/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/algue verte IMG_20211027_133724-scaled.jpg,,TRUE, +N1,58685,sortie-129ce6b7-6348-4ed5-8924-af8037cb2d48,https://biolit.fr/sorties/sortie-129ce6b7-6348-4ed5-8924-af8037cb2d48/,LYDIE BLOCH,,10/27/2021 0:00,13.0000000,14.000005,43.39579300000,-1.684460000000,,"Fort de Socoa, 64500 Ciboure",32396,observation-129ce6b7-6348-4ed5-8924-af8037cb2d48-3,https://biolit.fr/observations/observation-129ce6b7-6348-4ed5-8924-af8037cb2d48-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabe IMG_20211027_134431-scaled.jpg,,FALSE, +N1,58685,sortie-129ce6b7-6348-4ed5-8924-af8037cb2d48,https://biolit.fr/sorties/sortie-129ce6b7-6348-4ed5-8924-af8037cb2d48/,LYDIE BLOCH,,10/27/2021 0:00,13.0000000,14.000005,43.39579300000,-1.684460000000,,"Fort de Socoa, 64500 Ciboure",32398,observation-129ce6b7-6348-4ed5-8924-af8037cb2d48-4,https://biolit.fr/observations/observation-129ce6b7-6348-4ed5-8924-af8037cb2d48-4/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/crevette IMG_20211027_133056-scaled.jpg,,TRUE, +N1,58685,sortie-129ce6b7-6348-4ed5-8924-af8037cb2d48,https://biolit.fr/sorties/sortie-129ce6b7-6348-4ed5-8924-af8037cb2d48/,LYDIE BLOCH,,10/27/2021 0:00,13.0000000,14.000005,43.39579300000,-1.684460000000,,"Fort de Socoa, 64500 Ciboure",32400,observation-129ce6b7-6348-4ed5-8924-af8037cb2d48-5,https://biolit.fr/observations/observation-129ce6b7-6348-4ed5-8924-af8037cb2d48-5/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/crevette IMG_20211027_134613-scaled.jpg,,TRUE, +N1,58685,sortie-129ce6b7-6348-4ed5-8924-af8037cb2d48,https://biolit.fr/sorties/sortie-129ce6b7-6348-4ed5-8924-af8037cb2d48/,LYDIE BLOCH,,10/27/2021 0:00,13.0000000,14.000005,43.39579300000,-1.684460000000,,"Fort de Socoa, 64500 Ciboure",32402,observation-129ce6b7-6348-4ed5-8924-af8037cb2d48-6,https://biolit.fr/observations/observation-129ce6b7-6348-4ed5-8924-af8037cb2d48-6/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/plante terrestre IMG_20211027_140319-scaled.jpg,,TRUE, +N1,58685,sortie-129ce6b7-6348-4ed5-8924-af8037cb2d48,https://biolit.fr/sorties/sortie-129ce6b7-6348-4ed5-8924-af8037cb2d48/,LYDIE BLOCH,,10/27/2021 0:00,13.0000000,14.000005,43.39579300000,-1.684460000000,,"Fort de Socoa, 64500 Ciboure",32404,observation-129ce6b7-6348-4ed5-8924-af8037cb2d48-7,https://biolit.fr/observations/observation-129ce6b7-6348-4ed5-8924-af8037cb2d48-7/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/plante terrestre IMG_20211027_140323-scaled.jpg,,TRUE, +N1,58686,sortie-3bcc5cbd-05f4-432c-822b-3d1385367247,https://biolit.fr/sorties/sortie-3bcc5cbd-05f4-432c-822b-3d1385367247/,LYDIE BLOCH,,10/27/2021 0:00,11.0000000,11.0:55,43.393549000000,-1.683959000000,,Plage de Socoa,32406,observation-3bcc5cbd-05f4-432c-822b-3d1385367247,https://biolit.fr/observations/observation-3bcc5cbd-05f4-432c-822b-3d1385367247/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211027_113440-scaled.jpg,,TRUE, +N1,58686,sortie-3bcc5cbd-05f4-432c-822b-3d1385367247,https://biolit.fr/sorties/sortie-3bcc5cbd-05f4-432c-822b-3d1385367247/,LYDIE BLOCH,,10/27/2021 0:00,11.0000000,11.0:55,43.393549000000,-1.683959000000,,Plage de Socoa,32408,observation-3bcc5cbd-05f4-432c-822b-3d1385367247-2,https://biolit.fr/observations/observation-3bcc5cbd-05f4-432c-822b-3d1385367247-2/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211027_114202-scaled.jpg,,TRUE, +N1,58686,sortie-3bcc5cbd-05f4-432c-822b-3d1385367247,https://biolit.fr/sorties/sortie-3bcc5cbd-05f4-432c-822b-3d1385367247/,LYDIE BLOCH,,10/27/2021 0:00,11.0000000,11.0:55,43.393549000000,-1.683959000000,,Plage de Socoa,32410,observation-3bcc5cbd-05f4-432c-822b-3d1385367247-3,https://biolit.fr/observations/observation-3bcc5cbd-05f4-432c-822b-3d1385367247-3/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211027_114514-scaled.jpg,,TRUE, +N1,58686,sortie-3bcc5cbd-05f4-432c-822b-3d1385367247,https://biolit.fr/sorties/sortie-3bcc5cbd-05f4-432c-822b-3d1385367247/,LYDIE BLOCH,,10/27/2021 0:00,11.0000000,11.0:55,43.393549000000,-1.683959000000,,Plage de Socoa,32412,observation-3bcc5cbd-05f4-432c-822b-3d1385367247-4,https://biolit.fr/observations/observation-3bcc5cbd-05f4-432c-822b-3d1385367247-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211027_115447-scaled.jpg,,FALSE, +N1,58687,sortie-cc1bc18a-0ad1-442d-bb08-8a5ed7a7ca5f,https://biolit.fr/sorties/sortie-cc1bc18a-0ad1-442d-bb08-8a5ed7a7ca5f/,LYDIE BLOCH,,10/27/2021 0:00,9.0000000,10.0:15,43.445914000000,-1.589937000000,,"Plage d'Erretegia, 64210 Bidart",32416,observation-cc1bc18a-0ad1-442d-bb08-8a5ed7a7ca5f-2,https://biolit.fr/observations/observation-cc1bc18a-0ad1-442d-bb08-8a5ed7a7ca5f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211027_100651-scaled.jpg,,FALSE, +N1,58687,sortie-cc1bc18a-0ad1-442d-bb08-8a5ed7a7ca5f,https://biolit.fr/sorties/sortie-cc1bc18a-0ad1-442d-bb08-8a5ed7a7ca5f/,LYDIE BLOCH,,10/27/2021 0:00,9.0000000,10.0:15,43.445914000000,-1.589937000000,,"Plage d'Erretegia, 64210 Bidart",32418,observation-cc1bc18a-0ad1-442d-bb08-8a5ed7a7ca5f-3,https://biolit.fr/observations/observation-cc1bc18a-0ad1-442d-bb08-8a5ed7a7ca5f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211027_100709-scaled.jpg,,FALSE, +N1,58687,sortie-cc1bc18a-0ad1-442d-bb08-8a5ed7a7ca5f,https://biolit.fr/sorties/sortie-cc1bc18a-0ad1-442d-bb08-8a5ed7a7ca5f/,LYDIE BLOCH,,10/27/2021 0:00,9.0000000,10.0:15,43.445914000000,-1.589937000000,,"Plage d'Erretegia, 64210 Bidart",32420,observation-cc1bc18a-0ad1-442d-bb08-8a5ed7a7ca5f-4,https://biolit.fr/observations/observation-cc1bc18a-0ad1-442d-bb08-8a5ed7a7ca5f-4/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211027_100911-scaled.jpg,,TRUE, +N1,58687,sortie-cc1bc18a-0ad1-442d-bb08-8a5ed7a7ca5f,https://biolit.fr/sorties/sortie-cc1bc18a-0ad1-442d-bb08-8a5ed7a7ca5f/,LYDIE BLOCH,,10/27/2021 0:00,9.0000000,10.0:15,43.445914000000,-1.589937000000,,"Plage d'Erretegia, 64210 Bidart",32422,observation-cc1bc18a-0ad1-442d-bb08-8a5ed7a7ca5f-5,https://biolit.fr/observations/observation-cc1bc18a-0ad1-442d-bb08-8a5ed7a7ca5f-5/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211027_101504-scaled.jpg,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32424,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_18.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32426,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-2,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-2/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/anémone pas sûr.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32428,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-3,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_18.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32430,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-4,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-4/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/Anthopleura balii_6.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32432,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-5,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Blennie sp_4.PNG,,FALSE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32434,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-6,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-6/,Botrylloides diegensis,Botrylle de San Diego,,https://biolit.fr/wp-content/uploads/2023/07/botrylloides diegensis.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32436,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-7,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Bryo sp_0.PNG,,FALSE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32438,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-8,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-8/,Callista chione,Vernis,,https://biolit.fr/wp-content/uploads/2023/07/Callista chione_0.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32440,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-9,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-9/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_15.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32442,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-10,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-10/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_18.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32444,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-11,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-11/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_12.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32446,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-12,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Didemnide sp.PNG,,FALSE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32448,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-13,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-13/,Hiatella rugosa,Hiatelle rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/Hiatella rugosa_0.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32450,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-14,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-14/,Isozoanthus sulcatus,Anémone chocolat,,https://biolit.fr/wp-content/uploads/2023/07/Isozoanthus sulcatus_4.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32452,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-15,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-15/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_13.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32454,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-16,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-16/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/littorina littorea_6.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32455,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-17,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-17/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina obtusata_1.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32457,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-18,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-18/,Modiolus barbatus,Modiole barbue,,https://biolit.fr/wp-content/uploads/2023/07/Modiolus barbatus_2.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32459,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-19,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-19/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_14.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32461,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-20,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-20/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_17.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32463,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-21,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-21/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus_6.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32465,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-22,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-22/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/Pisidia longicornis_4.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32467,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-23,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-23/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_20.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32469,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-24,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-24/,Spirobranchus triqueter / lamarcki,Serpule triangulaire,,https://biolit.fr/wp-content/uploads/2023/07/Spirobranchus triqueter.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32471,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-25,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-25/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Steromphala umbilicalis-scaled.jpg,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32472,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-26,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/Tunicier sp 1.PNG,,FALSE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32474,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-27,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/tunicier sp.PNG,,FALSE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32476,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_17.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32478,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-2,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacaea_0.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32480,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-3,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-3/,Astropecten irregularis,Etoile-peigne commune,,https://biolit.fr/wp-content/uploads/2023/07/Astropecten irregularis.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32482,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-4,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-4/,Atelecyclus undecimdentatus,Grand crabe circulaire,,https://biolit.fr/wp-content/uploads/2023/07/Atelecyclus undecimdentatus_2.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32484,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-5,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-5/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/Aulactinia verrucosa_6.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32486,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-6,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-6/,Calidris alba,Bécasseau sanderling,,https://biolit.fr/wp-content/uploads/2023/07/calidris alba.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32488,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-7,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-7/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_7.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32490,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-8,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-8/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_11.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32492,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-9,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-9/,Donacilla cornea,Donacilla cornée,,https://biolit.fr/wp-content/uploads/2023/07/Donacilla cornea_1.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32494,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-10,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-10/,Dosinia exoleta,Dosinie radiée,,https://biolit.fr/wp-content/uploads/2023/07/Dosinia exolata.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32496,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-11,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-11/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/Echinocardium cordatum_1.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32498,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-12,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-12/,Epitonium clathrus,Scalaire,,https://biolit.fr/wp-content/uploads/2023/07/Epitonium clathrus.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32500,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-13,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-13/,Euspira catena,Natice porte-chaîne,,https://biolit.fr/wp-content/uploads/2023/07/Eutice catena.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32502,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-14,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-14/,Gari depressa,Psammobie déprimée,,https://biolit.fr/wp-content/uploads/2023/07/Gari depressa_9.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32504,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-15,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbula magus.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32506,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-16,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-16/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Glycymeris glycymeris_1.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32508,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-17,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-17/,Patella pellucida,Helcion,,https://biolit.fr/wp-content/uploads/2023/07/Hlecion pelludica.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32510,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-18,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-18/,Isozoanthus sulcatus,Anémone chocolat,,https://biolit.fr/wp-content/uploads/2023/07/Isozoanthus sulcatus_3.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32512,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-19,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-19/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_5.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32514,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-20,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-20/,Lutraria angustior,Lutraire étroite,,https://biolit.fr/wp-content/uploads/2023/07/Lutraria angustior.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32516,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-21,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-21/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/2023/07/Mactra stultorum_1.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32518,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-22,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-22/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia_7.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32520,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-23,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-23/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_13.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32522,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-24,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-24/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/Oeuf de raie.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32524,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-25,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-25/,Scyliorhinus canicula,Capsule de petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/Oeuf de roussette.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32526,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-26,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-26/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_19.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32528,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-27,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-27/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes philippinarum_0.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32532,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-29,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-29/,Fabulina fabula,Telline striée,,https://biolit.fr/wp-content/uploads/2023/07/Tellina fabula.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32534,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-30,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-30/,Trivia arctica,Grain de café rose,,https://biolit.fr/wp-content/uploads/2023/07/Trivia arctica_2.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32536,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-31,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-31/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/Trivia monacha_3.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32538,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-32,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-32/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/Zostera marina_3.PNG,,TRUE, +N1,58690,sortie-daebef4f-aa04-469d-ac22-fb8a59823e9b,https://biolit.fr/sorties/sortie-daebef4f-aa04-469d-ac22-fb8a59823e9b/,Isabelle perrin,,12/26/2021 0:00,14.0000000,15.0000000,46.23535,-1.55973,,phare des baleines,32540,observation-daebef4f-aa04-469d-ac22-fb8a59823e9b,https://biolit.fr/observations/observation-daebef4f-aa04-469d-ac22-fb8a59823e9b/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0416[1]-scaled.jpg,,FALSE, +N1,58690,sortie-daebef4f-aa04-469d-ac22-fb8a59823e9b,https://biolit.fr/sorties/sortie-daebef4f-aa04-469d-ac22-fb8a59823e9b/,Isabelle perrin,,12/26/2021 0:00,14.0000000,15.0000000,46.23535,-1.55973,,phare des baleines,32542,observation-daebef4f-aa04-469d-ac22-fb8a59823e9b-2,https://biolit.fr/observations/observation-daebef4f-aa04-469d-ac22-fb8a59823e9b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0417[1]-scaled.jpg,,FALSE, +N1,58690,sortie-daebef4f-aa04-469d-ac22-fb8a59823e9b,https://biolit.fr/sorties/sortie-daebef4f-aa04-469d-ac22-fb8a59823e9b/,Isabelle perrin,,12/26/2021 0:00,14.0000000,15.0000000,46.23535,-1.55973,,phare des baleines,32544,observation-daebef4f-aa04-469d-ac22-fb8a59823e9b-3,https://biolit.fr/observations/observation-daebef4f-aa04-469d-ac22-fb8a59823e9b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0418[1]-scaled.jpg,,FALSE, +N1,58690,sortie-daebef4f-aa04-469d-ac22-fb8a59823e9b,https://biolit.fr/sorties/sortie-daebef4f-aa04-469d-ac22-fb8a59823e9b/,Isabelle perrin,,12/26/2021 0:00,14.0000000,15.0000000,46.23535,-1.55973,,phare des baleines,32546,observation-daebef4f-aa04-469d-ac22-fb8a59823e9b-4,https://biolit.fr/observations/observation-daebef4f-aa04-469d-ac22-fb8a59823e9b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0430[1]-scaled.jpg,,FALSE, +N1,58691,sortie-344e17d7-948c-4c6f-8f49-1a6b4070a964,https://biolit.fr/sorties/sortie-344e17d7-948c-4c6f-8f49-1a6b4070a964/,Yann,,12/26/2021 0:00,16.0:35,17.0:35,47.518096000000,-2.498591000000,,Pen Lan,32548,observation-344e17d7-948c-4c6f-8f49-1a6b4070a964,https://biolit.fr/observations/observation-344e17d7-948c-4c6f-8f49-1a6b4070a964/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/Goélands argentés et bécasseaux-scaled.jpg,,TRUE, +N1,58691,sortie-344e17d7-948c-4c6f-8f49-1a6b4070a964,https://biolit.fr/sorties/sortie-344e17d7-948c-4c6f-8f49-1a6b4070a964/,Yann,,12/26/2021 0:00,16.0:35,17.0:35,47.518096000000,-2.498591000000,,Pen Lan,32550,observation-344e17d7-948c-4c6f-8f49-1a6b4070a964-2,https://biolit.fr/observations/observation-344e17d7-948c-4c6f-8f49-1a6b4070a964-2/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Moules et chapeaux-scaled.jpg,,TRUE, +N1,58691,sortie-344e17d7-948c-4c6f-8f49-1a6b4070a964,https://biolit.fr/sorties/sortie-344e17d7-948c-4c6f-8f49-1a6b4070a964/,Yann,,12/26/2021 0:00,16.0:35,17.0:35,47.518096000000,-2.498591000000,,Pen Lan,32552,observation-344e17d7-948c-4c6f-8f49-1a6b4070a964-3,https://biolit.fr/observations/observation-344e17d7-948c-4c6f-8f49-1a6b4070a964-3/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Huitres-scaled.jpg,,TRUE, +N1,58691,sortie-344e17d7-948c-4c6f-8f49-1a6b4070a964,https://biolit.fr/sorties/sortie-344e17d7-948c-4c6f-8f49-1a6b4070a964/,Yann,,12/26/2021 0:00,16.0:35,17.0:35,47.518096000000,-2.498591000000,,Pen Lan,32553,observation-344e17d7-948c-4c6f-8f49-1a6b4070a964-4,https://biolit.fr/observations/observation-344e17d7-948c-4c6f-8f49-1a6b4070a964-4/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/Aigrette garzette en vol-scaled.jpg,,TRUE, +N1,58692,sortie-c0b06419-7292-4e76-a016-1f2b78f7d1c6,https://biolit.fr/sorties/sortie-c0b06419-7292-4e76-a016-1f2b78f7d1c6/,Phil,,06/05/2021,17.0:15,17.0000000,47.869956000000,-3.911585000000,,Concarneau - Finistère,32555,observation-c0b06419-7292-4e76-a016-1f2b78f7d1c6,https://biolit.fr/observations/observation-c0b06419-7292-4e76-a016-1f2b78f7d1c6/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210506_171642.jpg,,TRUE, +N1,58692,sortie-c0b06419-7292-4e76-a016-1f2b78f7d1c6,https://biolit.fr/sorties/sortie-c0b06419-7292-4e76-a016-1f2b78f7d1c6/,Phil,,06/05/2021,17.0:15,17.0000000,47.869956000000,-3.911585000000,,Concarneau - Finistère,32557,observation-c0b06419-7292-4e76-a016-1f2b78f7d1c6-2,https://biolit.fr/observations/observation-c0b06419-7292-4e76-a016-1f2b78f7d1c6-2/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/20210506_171657.jpg,,TRUE, +N1,58692,sortie-c0b06419-7292-4e76-a016-1f2b78f7d1c6,https://biolit.fr/sorties/sortie-c0b06419-7292-4e76-a016-1f2b78f7d1c6/,Phil,,06/05/2021,17.0:15,17.0000000,47.869956000000,-3.911585000000,,Concarneau - Finistère,32559,observation-c0b06419-7292-4e76-a016-1f2b78f7d1c6-3,https://biolit.fr/observations/observation-c0b06419-7292-4e76-a016-1f2b78f7d1c6-3/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/20210506_171544.jpg,,TRUE, +N1,58693,sortie-3e6cfe43-2db0-4446-b6df-c358a9deda91,https://biolit.fr/sorties/sortie-3e6cfe43-2db0-4446-b6df-c358a9deda91/,Phil,,02/11/2021,10.0:55,11.000005,47.89617000000,-3.96759600000,,La Forêt-Fouesnant - Finistère,32565,observation-3e6cfe43-2db0-4446-b6df-c358a9deda91-3,https://biolit.fr/observations/observation-3e6cfe43-2db0-4446-b6df-c358a9deda91-3/,Scyliorhinus canicula,Capsule de petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20210211_110213-scaled.jpg,,TRUE, +N1,58694,sortie-240d4ef9-c3e7-48c5-892e-2caa1bc8f498,https://biolit.fr/sorties/sortie-240d4ef9-c3e7-48c5-892e-2caa1bc8f498/,Phil,,06/11/2021,18.0:45,18.0000000,47.864149000000,-4.084210000000,,Bénodet - Finistère,32567,observation-240d4ef9-c3e7-48c5-892e-2caa1bc8f498,https://biolit.fr/observations/observation-240d4ef9-c3e7-48c5-892e-2caa1bc8f498/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20210611_184913.jpg,,TRUE, +N1,58695,sortie-f615fd4d-43e4-4fa8-9687-6adbd9d058a3,https://biolit.fr/sorties/sortie-f615fd4d-43e4-4fa8-9687-6adbd9d058a3/,Phil,,11/25/2021 0:00,11.0:35,11.0000000,47.792411000000,-4.279273000000,,Léchiagat - Finistère,32573,observation-f615fd4d-43e4-4fa8-9687-6adbd9d058a3-3,https://biolit.fr/observations/observation-f615fd4d-43e4-4fa8-9687-6adbd9d058a3-3/,,,,https://biolit.fr/wp-content/uploads/2021/11/20211125_113737.jpg | https://biolit.fr/wp-content/uploads/2023/07/20211125_113734.jpg | https://biolit.fr/wp-content/uploads/2021/11/20211125_113702.jpg,,FALSE, +N1,58696,sortie-15f7a37a-d5c1-41b6-86f5-fa743cee74f6,https://biolit.fr/sorties/sortie-15f7a37a-d5c1-41b6-86f5-fa743cee74f6/,Phil,,09/08/2021,10.0:55,11.0000000,47.895246000000,-3.964433000000,,La Forêt-Fouesnant - Finistère,32575,observation-15f7a37a-d5c1-41b6-86f5-fa743cee74f6,https://biolit.fr/observations/observation-15f7a37a-d5c1-41b6-86f5-fa743cee74f6/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/20210908_105608.jpg,,TRUE, +N1,58696,sortie-15f7a37a-d5c1-41b6-86f5-fa743cee74f6,https://biolit.fr/sorties/sortie-15f7a37a-d5c1-41b6-86f5-fa743cee74f6/,Phil,,09/08/2021,10.0:55,11.0000000,47.895246000000,-3.964433000000,,La Forêt-Fouesnant - Finistère,32577,observation-15f7a37a-d5c1-41b6-86f5-fa743cee74f6-2,https://biolit.fr/observations/observation-15f7a37a-d5c1-41b6-86f5-fa743cee74f6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210908_105616.jpg,,FALSE, +N1,58696,sortie-15f7a37a-d5c1-41b6-86f5-fa743cee74f6,https://biolit.fr/sorties/sortie-15f7a37a-d5c1-41b6-86f5-fa743cee74f6/,Phil,,09/08/2021,10.0:55,11.0000000,47.895246000000,-3.964433000000,,La Forêt-Fouesnant - Finistère,32579,observation-15f7a37a-d5c1-41b6-86f5-fa743cee74f6-3,https://biolit.fr/observations/observation-15f7a37a-d5c1-41b6-86f5-fa743cee74f6-3/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/20210908_105703.jpg,,TRUE, +N1,58696,sortie-15f7a37a-d5c1-41b6-86f5-fa743cee74f6,https://biolit.fr/sorties/sortie-15f7a37a-d5c1-41b6-86f5-fa743cee74f6/,Phil,,09/08/2021,10.0:55,11.0000000,47.895246000000,-3.964433000000,,La Forêt-Fouesnant - Finistère,32581,observation-15f7a37a-d5c1-41b6-86f5-fa743cee74f6-4,https://biolit.fr/observations/observation-15f7a37a-d5c1-41b6-86f5-fa743cee74f6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210908_105740.jpg,,FALSE, +N1,58696,sortie-15f7a37a-d5c1-41b6-86f5-fa743cee74f6,https://biolit.fr/sorties/sortie-15f7a37a-d5c1-41b6-86f5-fa743cee74f6/,Phil,,09/08/2021,10.0:55,11.0000000,47.895246000000,-3.964433000000,,La Forêt-Fouesnant - Finistère,32583,observation-15f7a37a-d5c1-41b6-86f5-fa743cee74f6-5,https://biolit.fr/observations/observation-15f7a37a-d5c1-41b6-86f5-fa743cee74f6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210908_110024.jpg,,FALSE, +N1,58697,sortie-7764029b-5f57-4960-8d68-59bacc2aabe1,https://biolit.fr/sorties/sortie-7764029b-5f57-4960-8d68-59bacc2aabe1/,PHG,,12/19/2021 0:00,9.0000000,16.0000000,43.418443000000,-1.625001000000,,Plage Mayarco,32585,observation-7764029b-5f57-4960-8d68-59bacc2aabe1,https://biolit.fr/observations/observation-7764029b-5f57-4960-8d68-59bacc2aabe1/,,,,https://biolit.fr/wp-content/uploads/2023/07/SJ-1-scaled.jpg,,FALSE, +N1,58697,sortie-7764029b-5f57-4960-8d68-59bacc2aabe1,https://biolit.fr/sorties/sortie-7764029b-5f57-4960-8d68-59bacc2aabe1/,PHG,,12/19/2021 0:00,9.0000000,16.0000000,43.418443000000,-1.625001000000,,Plage Mayarco,32587,observation-7764029b-5f57-4960-8d68-59bacc2aabe1-2,https://biolit.fr/observations/observation-7764029b-5f57-4960-8d68-59bacc2aabe1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/SJ-2-scaled.jpg,,FALSE, +N1,58697,sortie-7764029b-5f57-4960-8d68-59bacc2aabe1,https://biolit.fr/sorties/sortie-7764029b-5f57-4960-8d68-59bacc2aabe1/,PHG,,12/19/2021 0:00,9.0000000,16.0000000,43.418443000000,-1.625001000000,,Plage Mayarco,32589,observation-7764029b-5f57-4960-8d68-59bacc2aabe1-3,https://biolit.fr/observations/observation-7764029b-5f57-4960-8d68-59bacc2aabe1-3/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/SJ-3-scaled.jpg,,TRUE, +N1,58697,sortie-7764029b-5f57-4960-8d68-59bacc2aabe1,https://biolit.fr/sorties/sortie-7764029b-5f57-4960-8d68-59bacc2aabe1/,PHG,,12/19/2021 0:00,9.0000000,16.0000000,43.418443000000,-1.625001000000,,Plage Mayarco,32591,observation-7764029b-5f57-4960-8d68-59bacc2aabe1-4,https://biolit.fr/observations/observation-7764029b-5f57-4960-8d68-59bacc2aabe1-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/SJ-4-scaled.jpg,,FALSE, +N1,58698,sortie-6d998b53-9b33-4b71-8866-f9dfec3c6e61,https://biolit.fr/sorties/sortie-6d998b53-9b33-4b71-8866-f9dfec3c6e61/,PHG,,12/20/2021 0:00,8.0:35,16.0000000,43.431698000000,-1.600159000000,,Plage Uhabia,32593,observation-6d998b53-9b33-4b71-8866-f9dfec3c6e61,https://biolit.fr/observations/observation-6d998b53-9b33-4b71-8866-f9dfec3c6e61/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/Bidar-1-scaled.jpg,,TRUE, +N1,58698,sortie-6d998b53-9b33-4b71-8866-f9dfec3c6e61,https://biolit.fr/sorties/sortie-6d998b53-9b33-4b71-8866-f9dfec3c6e61/,PHG,,12/20/2021 0:00,8.0:35,16.0000000,43.431698000000,-1.600159000000,,Plage Uhabia,32595,observation-6d998b53-9b33-4b71-8866-f9dfec3c6e61-2,https://biolit.fr/observations/observation-6d998b53-9b33-4b71-8866-f9dfec3c6e61-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Bidart-2-scaled.jpg,,FALSE, +N1,58698,sortie-6d998b53-9b33-4b71-8866-f9dfec3c6e61,https://biolit.fr/sorties/sortie-6d998b53-9b33-4b71-8866-f9dfec3c6e61/,PHG,,12/20/2021 0:00,8.0:35,16.0000000,43.431698000000,-1.600159000000,,Plage Uhabia,32597,observation-6d998b53-9b33-4b71-8866-f9dfec3c6e61-3,https://biolit.fr/observations/observation-6d998b53-9b33-4b71-8866-f9dfec3c6e61-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Bidart-3-scaled.jpg,,FALSE, +N1,58698,sortie-6d998b53-9b33-4b71-8866-f9dfec3c6e61,https://biolit.fr/sorties/sortie-6d998b53-9b33-4b71-8866-f9dfec3c6e61/,PHG,,12/20/2021 0:00,8.0:35,16.0000000,43.431698000000,-1.600159000000,,Plage Uhabia,32599,observation-6d998b53-9b33-4b71-8866-f9dfec3c6e61-4,https://biolit.fr/observations/observation-6d998b53-9b33-4b71-8866-f9dfec3c6e61-4/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Bidart-4-scaled.jpg,,TRUE, +N1,58699,sortie-78d9df49-82e0-4a3c-8a60-f587484aa73e,https://biolit.fr/sorties/sortie-78d9df49-82e0-4a3c-8a60-f587484aa73e/,Phil,,9/23/2021 0:00,12.0:25,12.0000000,47.864511000000,-4.084223000000,,Bénodet - Finistère,32601,observation-78d9df49-82e0-4a3c-8a60-f587484aa73e,https://biolit.fr/observations/observation-78d9df49-82e0-4a3c-8a60-f587484aa73e/,Suaeda maritima,Soude maritime,,https://biolit.fr/wp-content/uploads/2023/07/20210923_123136.jpg,,TRUE, +N1,58699,sortie-78d9df49-82e0-4a3c-8a60-f587484aa73e,https://biolit.fr/sorties/sortie-78d9df49-82e0-4a3c-8a60-f587484aa73e/,Phil,,9/23/2021 0:00,12.0:25,12.0000000,47.864511000000,-4.084223000000,,Bénodet - Finistère,32603,observation-78d9df49-82e0-4a3c-8a60-f587484aa73e-2,https://biolit.fr/observations/observation-78d9df49-82e0-4a3c-8a60-f587484aa73e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210923_123132.jpg,,FALSE, +N1,58699,sortie-78d9df49-82e0-4a3c-8a60-f587484aa73e,https://biolit.fr/sorties/sortie-78d9df49-82e0-4a3c-8a60-f587484aa73e/,Phil,,9/23/2021 0:00,12.0:25,12.0000000,47.864511000000,-4.084223000000,,Bénodet - Finistère,32605,observation-78d9df49-82e0-4a3c-8a60-f587484aa73e-3,https://biolit.fr/observations/observation-78d9df49-82e0-4a3c-8a60-f587484aa73e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210923_123125.jpg,,FALSE, +N1,58700,sortie-d95639e5-c6ff-49d7-b229-7c630b99f5f0,https://biolit.fr/sorties/sortie-d95639e5-c6ff-49d7-b229-7c630b99f5f0/,Phil,,11/03/2021,12.0000000,12.0000000,47.792491000000,-4.28713800000,,Guilvinec - Finistère,32607,observation-d95639e5-c6ff-49d7-b229-7c630b99f5f0,https://biolit.fr/observations/observation-d95639e5-c6ff-49d7-b229-7c630b99f5f0/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211103_121700.jpg,,FALSE, +N1,58700,sortie-d95639e5-c6ff-49d7-b229-7c630b99f5f0,https://biolit.fr/sorties/sortie-d95639e5-c6ff-49d7-b229-7c630b99f5f0/,Phil,,11/03/2021,12.0000000,12.0000000,47.792491000000,-4.28713800000,,Guilvinec - Finistère,32609,observation-d95639e5-c6ff-49d7-b229-7c630b99f5f0-2,https://biolit.fr/observations/observation-d95639e5-c6ff-49d7-b229-7c630b99f5f0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211103_121335.jpg,,FALSE, +N1,58700,sortie-d95639e5-c6ff-49d7-b229-7c630b99f5f0,https://biolit.fr/sorties/sortie-d95639e5-c6ff-49d7-b229-7c630b99f5f0/,Phil,,11/03/2021,12.0000000,12.0000000,47.792491000000,-4.28713800000,,Guilvinec - Finistère,32611,observation-d95639e5-c6ff-49d7-b229-7c630b99f5f0-3,https://biolit.fr/observations/observation-d95639e5-c6ff-49d7-b229-7c630b99f5f0-3/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20211103_121639.jpg,,TRUE, +N1,58700,sortie-d95639e5-c6ff-49d7-b229-7c630b99f5f0,https://biolit.fr/sorties/sortie-d95639e5-c6ff-49d7-b229-7c630b99f5f0/,Phil,,11/03/2021,12.0000000,12.0000000,47.792491000000,-4.28713800000,,Guilvinec - Finistère,32613,observation-d95639e5-c6ff-49d7-b229-7c630b99f5f0-4,https://biolit.fr/observations/observation-d95639e5-c6ff-49d7-b229-7c630b99f5f0-4/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/20211103_121416.jpg,,TRUE, +N1,58701,sortie-63654f68-cb05-41c6-8ebd-76bf585a7387,https://biolit.fr/sorties/sortie-63654f68-cb05-41c6-8ebd-76bf585a7387/,Norbert,,12/21/2021 0:00,15.0000000,17.0000000,46.760491000000,-56.16963700000,,"Saint-Pierre (97500), Pointe Blanche",32615,observation-63654f68-cb05-41c6-8ebd-76bf585a7387,https://biolit.fr/observations/observation-63654f68-cb05-41c6-8ebd-76bf585a7387/,Pagurus bernhardus,Bernard-l'ermite commun,,https://biolit.fr/wp-content/uploads/2023/07/Pagurus acadianus_IMG_6558.jpeg,,TRUE, +N1,58702,sortie-7ce1754b-2b95-4387-8a0a-f2fcb95045b4,https://biolit.fr/sorties/sortie-7ce1754b-2b95-4387-8a0a-f2fcb95045b4/,Norbert,,12/20/2021 0:00,11.0:25,12.0000000,46.761079000000,-56.171010000000,,"Saint-Pierre (97500), Pointe Blanche",32617,observation-7ce1754b-2b95-4387-8a0a-f2fcb95045b4,https://biolit.fr/observations/observation-7ce1754b-2b95-4387-8a0a-f2fcb95045b4/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6658.jpeg,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32619,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_17.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32621,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-2,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-2/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_9.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32623,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-3,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-3/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_13.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32625,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-4,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-4/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_20.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32627,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-5,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-5/,Berthella plumula,Berthelle plume,,https://biolit.fr/wp-content/uploads/2023/07/Berthella plumula_2.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32629,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-6,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-6/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_14.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32631,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-7,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-7/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_17.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32633,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-8,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-8/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/cerastoderma edule_6.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32634,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-9,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-9/,Ciliata mustela,Motelle à 5 barbillons,,https://biolit.fr/wp-content/uploads/2023/07/Ciliata mustela_3.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32636,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-10,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-10/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Crassotreas gigas.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32638,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-11,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-11/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crepidula fornicata_2.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32640,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-12,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_25.PNG,,FALSE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32642,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-13,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-13/,Isozoanthus sulcatus,Anémone chocolat,,https://biolit.fr/wp-content/uploads/2023/07/Isozoanthus sulcatus_2.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32644,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-14,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-14/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_12.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32646,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-15,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-15/,Metridium senile,Œillet de mer,,https://biolit.fr/wp-content/uploads/2023/07/Metridium senile_0.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32648,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-16,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-16/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia_6.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32650,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-17,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-17/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/mordocet.JPG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32651,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-18,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-18/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebra erinaceus_3.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32653,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-19,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-19/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_7.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32655,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-20,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-20/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/Palaemon sp_0.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32657,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-21,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-21/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/Ponte de pourpre.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32659,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-22,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-22/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_19.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32661,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-23,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-23/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_18.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32663,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-24,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-24/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes decusattus.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32665,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-25,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ver sp_2.PNG,,FALSE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32667,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-26,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-26/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_17.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32669,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-27,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-27/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_15.PNG,,TRUE, +N1,58704,sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582,https://biolit.fr/sorties/sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582/,Roman,,12/11/2021,11.0000000,12.0000000,48.750472000000,-1.57292300000,,Carolles,32671,observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582,https://biolit.fr/observations/observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_16.PNG,,TRUE, +N1,58704,sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582,https://biolit.fr/sorties/sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582/,Roman,,12/11/2021,11.0000000,12.0000000,48.750472000000,-1.57292300000,,Carolles,32673,observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-2,https://biolit.fr/observations/observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_16.PNG,,TRUE, +N1,58704,sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582,https://biolit.fr/sorties/sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582/,Roman,,12/11/2021,11.0000000,12.0000000,48.750472000000,-1.57292300000,,Carolles,32675,observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-3,https://biolit.fr/observations/observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capsule d'oeuf de raie.PNG,,FALSE, +N1,58704,sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582,https://biolit.fr/sorties/sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582/,Roman,,12/11/2021,11.0000000,12.0000000,48.750472000000,-1.57292300000,,Carolles,32677,observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-4,https://biolit.fr/observations/observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-4/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_5.PNG,,TRUE, +N1,58704,sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582,https://biolit.fr/sorties/sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582/,Roman,,12/11/2021,11.0000000,12.0000000,48.750472000000,-1.57292300000,,Carolles,32679,observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-5,https://biolit.fr/observations/observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-5/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crepidula fornicata_1.PNG,,TRUE, +N1,58704,sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582,https://biolit.fr/sorties/sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582/,Roman,,12/11/2021,11.0000000,12.0000000,48.750472000000,-1.57292300000,,Carolles,32681,observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-6,https://biolit.fr/observations/observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-6/,Glycymeris pilosa,Amande de mer velue,,https://biolit.fr/wp-content/uploads/2023/07/Glycymeris glycymeris_0.PNG,,TRUE, +N1,58704,sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582,https://biolit.fr/sorties/sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582/,Roman,,12/11/2021,11.0000000,12.0000000,48.750472000000,-1.57292300000,,Carolles,32683,observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-7,https://biolit.fr/observations/observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-7/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Hemigrapsus sanguineus-scaled.jpg,,TRUE, +N1,58704,sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582,https://biolit.fr/sorties/sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582/,Roman,,12/11/2021,11.0000000,12.0000000,48.750472000000,-1.57292300000,,Carolles,32684,observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-8,https://biolit.fr/observations/observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-8/,Myosotella myosotis,Grande ellobie,,https://biolit.fr/wp-content/uploads/2023/07/Myosotella myosotis.PNG,,TRUE, +N1,58704,sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582,https://biolit.fr/sorties/sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582/,Roman,,12/11/2021,11.0000000,12.0000000,48.750472000000,-1.57292300000,,Carolles,32686,observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-9,https://biolit.fr/observations/observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-9/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_16.PNG,,TRUE, +N1,58704,sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582,https://biolit.fr/sorties/sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582/,Roman,,12/11/2021,11.0000000,12.0000000,48.750472000000,-1.57292300000,,Carolles,32688,observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-10,https://biolit.fr/observations/observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-10/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus_5.PNG,,TRUE, +N1,58704,sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582,https://biolit.fr/sorties/sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582/,Roman,,12/11/2021,11.0000000,12.0000000,48.750472000000,-1.57292300000,,Carolles,32690,observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-11,https://biolit.fr/observations/observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-11/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/Ponte de buccinum undatum.PNG,,TRUE, +N1,58704,sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582,https://biolit.fr/sorties/sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582/,Roman,,12/11/2021,11.0000000,12.0000000,48.750472000000,-1.57292300000,,Carolles,32692,observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-12,https://biolit.fr/observations/observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/scarabée sp.PNG,,FALSE, +N1,58705,sortie-5f16663b-f3da-47fc-8f91-8a8424b684fb,https://biolit.fr/sorties/sortie-5f16663b-f3da-47fc-8f91-8a8424b684fb/,Marine,,12/14/2021 0:00,15.0000000,15.0:15,43.240995000000,5.362447000000,Planète Mer,Plage de la batterie,32694,observation-5f16663b-f3da-47fc-8f91-8a8424b684fb,https://biolit.fr/observations/observation-5f16663b-f3da-47fc-8f91-8a8424b684fb/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211214_151211_compress4-scaled.jpg,,FALSE, +N1,58705,sortie-5f16663b-f3da-47fc-8f91-8a8424b684fb,https://biolit.fr/sorties/sortie-5f16663b-f3da-47fc-8f91-8a8424b684fb/,Marine,,12/14/2021 0:00,15.0000000,15.0:15,43.240995000000,5.362447000000,Planète Mer,Plage de la batterie,32696,observation-5f16663b-f3da-47fc-8f91-8a8424b684fb-2,https://biolit.fr/observations/observation-5f16663b-f3da-47fc-8f91-8a8424b684fb-2/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211214_151349_compress97-scaled.jpg,,TRUE, +N1,58705,sortie-5f16663b-f3da-47fc-8f91-8a8424b684fb,https://biolit.fr/sorties/sortie-5f16663b-f3da-47fc-8f91-8a8424b684fb/,Marine,,12/14/2021 0:00,15.0000000,15.0:15,43.240995000000,5.362447000000,Planète Mer,Plage de la batterie,32698,observation-5f16663b-f3da-47fc-8f91-8a8424b684fb-3,https://biolit.fr/observations/observation-5f16663b-f3da-47fc-8f91-8a8424b684fb-3/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211214_151404_compress95-scaled.jpg,,TRUE, +N1,58705,sortie-5f16663b-f3da-47fc-8f91-8a8424b684fb,https://biolit.fr/sorties/sortie-5f16663b-f3da-47fc-8f91-8a8424b684fb/,Marine,,12/14/2021 0:00,15.0000000,15.0:15,43.240995000000,5.362447000000,Planète Mer,Plage de la batterie,32700,observation-5f16663b-f3da-47fc-8f91-8a8424b684fb-4,https://biolit.fr/observations/observation-5f16663b-f3da-47fc-8f91-8a8424b684fb-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211214_150936_compress27-scaled.jpg,,FALSE, +N1,58705,sortie-5f16663b-f3da-47fc-8f91-8a8424b684fb,https://biolit.fr/sorties/sortie-5f16663b-f3da-47fc-8f91-8a8424b684fb/,Marine,,12/14/2021 0:00,15.0000000,15.0:15,43.240995000000,5.362447000000,Planète Mer,Plage de la batterie,32704,observation-5f16663b-f3da-47fc-8f91-8a8424b684fb-6,https://biolit.fr/observations/observation-5f16663b-f3da-47fc-8f91-8a8424b684fb-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211214_151439_compress99-scaled.jpg | https://biolit.fr/wp-content/uploads/2021/12/IMG_20211214_151417_compress29-scaled-1-scaled.jpg,,FALSE, +N1,58706,sortie-c2ed56a2-b392-4787-877a-59852284c7d6,https://biolit.fr/sorties/sortie-c2ed56a2-b392-4787-877a-59852284c7d6/,PHG,,12/15/2021 0:00,9.0000000,16.0000000,43.685052000000,-1.440878000000,,Hossegor,32706,observation-c2ed56a2-b392-4787-877a-59852284c7d6,https://biolit.fr/observations/observation-c2ed56a2-b392-4787-877a-59852284c7d6/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/_A7R5575-scaled.jpg,,TRUE, +N1,58706,sortie-c2ed56a2-b392-4787-877a-59852284c7d6,https://biolit.fr/sorties/sortie-c2ed56a2-b392-4787-877a-59852284c7d6/,PHG,,12/15/2021 0:00,9.0000000,16.0000000,43.685052000000,-1.440878000000,,Hossegor,32708,observation-c2ed56a2-b392-4787-877a-59852284c7d6-2,https://biolit.fr/observations/observation-c2ed56a2-b392-4787-877a-59852284c7d6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/_A7R5579-scaled.jpg,,FALSE, +N1,58706,sortie-c2ed56a2-b392-4787-877a-59852284c7d6,https://biolit.fr/sorties/sortie-c2ed56a2-b392-4787-877a-59852284c7d6/,PHG,,12/15/2021 0:00,9.0000000,16.0000000,43.685052000000,-1.440878000000,,Hossegor,32710,observation-c2ed56a2-b392-4787-877a-59852284c7d6-3,https://biolit.fr/observations/observation-c2ed56a2-b392-4787-877a-59852284c7d6-3/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/_A7R5574-scaled.jpg,,TRUE, +N1,58707,sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c,https://biolit.fr/sorties/sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c/,marieduthoo,,12/14/2021 0:00,14.0000000,16.000005,43.239846000000,5.362459000000,,Bain des Dames,32712,observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c,https://biolit.fr/observations/observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/IMG-2064-scaled.jpg,,TRUE, +N1,58707,sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c,https://biolit.fr/sorties/sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c/,marieduthoo,,12/14/2021 0:00,14.0000000,16.000005,43.239846000000,5.362459000000,,Bain des Dames,32714,observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c-2,https://biolit.fr/observations/observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-2067-scaled.jpg,,FALSE, +N1,58707,sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c,https://biolit.fr/sorties/sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c/,marieduthoo,,12/14/2021 0:00,14.0000000,16.000005,43.239846000000,5.362459000000,,Bain des Dames,32716,observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c-3,https://biolit.fr/observations/observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-2070-scaled.jpg,,FALSE, +N1,58707,sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c,https://biolit.fr/sorties/sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c/,marieduthoo,,12/14/2021 0:00,14.0000000,16.000005,43.239846000000,5.362459000000,,Bain des Dames,32718,observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c-4,https://biolit.fr/observations/observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-2072-scaled.jpg,,FALSE, +N1,58707,sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c,https://biolit.fr/sorties/sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c/,marieduthoo,,12/14/2021 0:00,14.0000000,16.000005,43.239846000000,5.362459000000,,Bain des Dames,32720,observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c-5,https://biolit.fr/observations/observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-2078-scaled.jpg,,FALSE, +N1,58707,sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c,https://biolit.fr/sorties/sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c/,marieduthoo,,12/14/2021 0:00,14.0000000,16.000005,43.239846000000,5.362459000000,,Bain des Dames,32722,observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c-6,https://biolit.fr/observations/observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-2079-scaled.jpg,,FALSE, +N1,58707,sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c,https://biolit.fr/sorties/sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c/,marieduthoo,,12/14/2021 0:00,14.0000000,16.000005,43.239846000000,5.362459000000,,Bain des Dames,32724,observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c-7,https://biolit.fr/observations/observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c-7/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG-2080-scaled.jpg,,TRUE, +N1,58707,sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c,https://biolit.fr/sorties/sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c/,marieduthoo,,12/14/2021 0:00,14.0000000,16.000005,43.239846000000,5.362459000000,,Bain des Dames,32726,observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c-8,https://biolit.fr/observations/observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c-8/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/IMG-2088-scaled.jpg,,TRUE, +N1,58707,sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c,https://biolit.fr/sorties/sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c/,marieduthoo,,12/14/2021 0:00,14.0000000,16.000005,43.239846000000,5.362459000000,,Bain des Dames,32728,observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c-9,https://biolit.fr/observations/observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-2089-scaled.jpg,,FALSE, +N1,58708,sortie-acd40f84-0f6c-4b23-b335-a441bbf8e375,https://biolit.fr/sorties/sortie-acd40f84-0f6c-4b23-b335-a441bbf8e375/,RBBBM,,12/05/2021,10.0000000,12.0000000,47.788837000000,-3.703620000000,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),L'île percée,32730,observation-acd40f84-0f6c-4b23-b335-a441bbf8e375,https://biolit.fr/observations/observation-acd40f84-0f6c-4b23-b335-a441bbf8e375/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1040173_0.JPG,,TRUE, +N1,58708,sortie-acd40f84-0f6c-4b23-b335-a441bbf8e375,https://biolit.fr/sorties/sortie-acd40f84-0f6c-4b23-b335-a441bbf8e375/,RBBBM,,12/05/2021,10.0000000,12.0000000,47.788837000000,-3.703620000000,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),L'île percée,32732,observation-acd40f84-0f6c-4b23-b335-a441bbf8e375-2,https://biolit.fr/observations/observation-acd40f84-0f6c-4b23-b335-a441bbf8e375-2/,Dromia personata,Dromie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6517-rotated.jpg,,TRUE, +N1,58709,sortie-b9e46fce-9af5-4de2-a739-6554ddcbea74,https://biolit.fr/sorties/sortie-b9e46fce-9af5-4de2-a739-6554ddcbea74/,Marine,,12/10/2021,13.0:15,13.0000000,43.259545000000,5.374814000000,,Plage des surfeurs,32738,observation-b9e46fce-9af5-4de2-a739-6554ddcbea74-3,https://biolit.fr/observations/observation-b9e46fce-9af5-4de2-a739-6554ddcbea74-3/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211210_131254_compress43-scaled.jpg | https://biolit.fr/wp-content/uploads/2021/12/IMG_20211210_131259_compress24-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2021/12/IMG_20211210_131301_compress89-scaled-1.jpg,,TRUE, +N1,58710,sortie-6c67b421-b1a2-4831-b1e0-2fc3ae39d68d,https://biolit.fr/sorties/sortie-6c67b421-b1a2-4831-b1e0-2fc3ae39d68d/,marieduthoo,,12/09/2021,11.0:55,12.0:55,43.256559000000,5.375291000000,,Escale Borely,32740,observation-6c67b421-b1a2-4831-b1e0-2fc3ae39d68d,https://biolit.fr/observations/observation-6c67b421-b1a2-4831-b1e0-2fc3ae39d68d/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0062_1.JPG,,FALSE, +N1,58710,sortie-6c67b421-b1a2-4831-b1e0-2fc3ae39d68d,https://biolit.fr/sorties/sortie-6c67b421-b1a2-4831-b1e0-2fc3ae39d68d/,marieduthoo,,12/09/2021,11.0:55,12.0:55,43.256559000000,5.375291000000,,Escale Borely,32742,observation-6c67b421-b1a2-4831-b1e0-2fc3ae39d68d-2,https://biolit.fr/observations/observation-6c67b421-b1a2-4831-b1e0-2fc3ae39d68d-2/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_0061_2.JPG,,TRUE, +N1,58710,sortie-6c67b421-b1a2-4831-b1e0-2fc3ae39d68d,https://biolit.fr/sorties/sortie-6c67b421-b1a2-4831-b1e0-2fc3ae39d68d/,marieduthoo,,12/09/2021,11.0:55,12.0:55,43.256559000000,5.375291000000,,Escale Borely,32744,observation-6c67b421-b1a2-4831-b1e0-2fc3ae39d68d-3,https://biolit.fr/observations/observation-6c67b421-b1a2-4831-b1e0-2fc3ae39d68d-3/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC_0057.JPG,,TRUE, +N1,58710,sortie-6c67b421-b1a2-4831-b1e0-2fc3ae39d68d,https://biolit.fr/sorties/sortie-6c67b421-b1a2-4831-b1e0-2fc3ae39d68d/,marieduthoo,,12/09/2021,11.0:55,12.0:55,43.256559000000,5.375291000000,,Escale Borely,32746,observation-6c67b421-b1a2-4831-b1e0-2fc3ae39d68d-4,https://biolit.fr/observations/observation-6c67b421-b1a2-4831-b1e0-2fc3ae39d68d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0056_0.JPG,,FALSE, +N1,58711,sortie-6f019c83-c3e3-4ed0-9d41-b6c338993518,https://biolit.fr/sorties/sortie-6f019c83-c3e3-4ed0-9d41-b6c338993518/,marieduthoo,,12/09/2021,10.0000000,11.0000000,43.280308000000,5.353082000000,,Anse de la fausse monnaie,32748,observation-6f019c83-c3e3-4ed0-9d41-b6c338993518,https://biolit.fr/observations/observation-6f019c83-c3e3-4ed0-9d41-b6c338993518/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0055_0.JPG,,TRUE, +N1,58711,sortie-6f019c83-c3e3-4ed0-9d41-b6c338993518,https://biolit.fr/sorties/sortie-6f019c83-c3e3-4ed0-9d41-b6c338993518/,marieduthoo,,12/09/2021,10.0000000,11.0000000,43.280308000000,5.353082000000,,Anse de la fausse monnaie,32750,observation-6f019c83-c3e3-4ed0-9d41-b6c338993518-2,https://biolit.fr/observations/observation-6f019c83-c3e3-4ed0-9d41-b6c338993518-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0047_1.JPG,,FALSE, +N1,58711,sortie-6f019c83-c3e3-4ed0-9d41-b6c338993518,https://biolit.fr/sorties/sortie-6f019c83-c3e3-4ed0-9d41-b6c338993518/,marieduthoo,,12/09/2021,10.0000000,11.0000000,43.280308000000,5.353082000000,,Anse de la fausse monnaie,32752,observation-6f019c83-c3e3-4ed0-9d41-b6c338993518-3,https://biolit.fr/observations/observation-6f019c83-c3e3-4ed0-9d41-b6c338993518-3/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0045_0.JPG,,TRUE, +N1,58711,sortie-6f019c83-c3e3-4ed0-9d41-b6c338993518,https://biolit.fr/sorties/sortie-6f019c83-c3e3-4ed0-9d41-b6c338993518/,marieduthoo,,12/09/2021,10.0000000,11.0000000,43.280308000000,5.353082000000,,Anse de la fausse monnaie,32754,observation-6f019c83-c3e3-4ed0-9d41-b6c338993518-4,https://biolit.fr/observations/observation-6f019c83-c3e3-4ed0-9d41-b6c338993518-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0046_1.JPG,,FALSE, +N1,58711,sortie-6f019c83-c3e3-4ed0-9d41-b6c338993518,https://biolit.fr/sorties/sortie-6f019c83-c3e3-4ed0-9d41-b6c338993518/,marieduthoo,,12/09/2021,10.0000000,11.0000000,43.280308000000,5.353082000000,,Anse de la fausse monnaie,32756,observation-6f019c83-c3e3-4ed0-9d41-b6c338993518-5,https://biolit.fr/observations/observation-6f019c83-c3e3-4ed0-9d41-b6c338993518-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0043_2.JPG,,FALSE, +N1,58712,sortie-c1e5e9c4-9d14-4e34-8f9a-883f5299011d,https://biolit.fr/sorties/sortie-c1e5e9c4-9d14-4e34-8f9a-883f5299011d/,marieduthoo,,12/09/2021,9.0000000,10.0000000,43.272946000000,5.362137000000,,Plage du Prophète,32758,observation-c1e5e9c4-9d14-4e34-8f9a-883f5299011d,https://biolit.fr/observations/observation-c1e5e9c4-9d14-4e34-8f9a-883f5299011d/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_0009_0.jpg,,TRUE, +N1,58713,sortie-23c7311c-4054-43b0-aa57-0da72a7809d4,https://biolit.fr/sorties/sortie-23c7311c-4054-43b0-aa57-0da72a7809d4/,marieduthoo,,12/09/2021,9.0000000,11.0000000,43.273012000000,5.362191000000,,Plage du Prophète,32761,observation-23c7311c-4054-43b0-aa57-0da72a7809d4-2,https://biolit.fr/observations/observation-23c7311c-4054-43b0-aa57-0da72a7809d4-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0007.jpg,,TRUE, +N1,58713,sortie-23c7311c-4054-43b0-aa57-0da72a7809d4,https://biolit.fr/sorties/sortie-23c7311c-4054-43b0-aa57-0da72a7809d4/,marieduthoo,,12/09/2021,9.0000000,11.0000000,43.273012000000,5.362191000000,,Plage du Prophète,32763,observation-23c7311c-4054-43b0-aa57-0da72a7809d4-3,https://biolit.fr/observations/observation-23c7311c-4054-43b0-aa57-0da72a7809d4-3/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0025.jpg,,TRUE, +N1,58713,sortie-23c7311c-4054-43b0-aa57-0da72a7809d4,https://biolit.fr/sorties/sortie-23c7311c-4054-43b0-aa57-0da72a7809d4/,marieduthoo,,12/09/2021,9.0000000,11.0000000,43.273012000000,5.362191000000,,Plage du Prophète,32765,observation-23c7311c-4054-43b0-aa57-0da72a7809d4-4,https://biolit.fr/observations/observation-23c7311c-4054-43b0-aa57-0da72a7809d4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0032.jpg,,FALSE, +N1,58713,sortie-23c7311c-4054-43b0-aa57-0da72a7809d4,https://biolit.fr/sorties/sortie-23c7311c-4054-43b0-aa57-0da72a7809d4/,marieduthoo,,12/09/2021,9.0000000,11.0000000,43.273012000000,5.362191000000,,Plage du Prophète,32767,observation-23c7311c-4054-43b0-aa57-0da72a7809d4-5,https://biolit.fr/observations/observation-23c7311c-4054-43b0-aa57-0da72a7809d4-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0035.jpg,,FALSE, +N1,58713,sortie-23c7311c-4054-43b0-aa57-0da72a7809d4,https://biolit.fr/sorties/sortie-23c7311c-4054-43b0-aa57-0da72a7809d4/,marieduthoo,,12/09/2021,9.0000000,11.0000000,43.273012000000,5.362191000000,,Plage du Prophète,32769,observation-23c7311c-4054-43b0-aa57-0da72a7809d4-6,https://biolit.fr/observations/observation-23c7311c-4054-43b0-aa57-0da72a7809d4-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0040.jpg,,FALSE, +N1,58714,sortie-99f4891d-c5bf-43e4-837b-1523c1be7ad2,https://biolit.fr/sorties/sortie-99f4891d-c5bf-43e4-837b-1523c1be7ad2/,marieduthoo,,12/03/2021,14.0000000,16.0000000,43.258919000000,5.375430000000,,Escale Borely,32771,observation-99f4891d-c5bf-43e4-837b-1523c1be7ad2,https://biolit.fr/observations/observation-99f4891d-c5bf-43e4-837b-1523c1be7ad2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/262812454_576092877008303_7368882160766593810_n (1).jpg,,TRUE, +N1,58715,sortie-cc1118e8-ce8c-4d43-b7c4-d5a7d4ed66ca,https://biolit.fr/sorties/sortie-cc1118e8-ce8c-4d43-b7c4-d5a7d4ed66ca/,DELPY Emmanuelle,,11/28/2021 0:00,16.0000000,17.0000000,43.398155000000,5.124633000000,,chateauneuf-les-martigues,32773,observation-cc1118e8-ce8c-4d43-b7c4-d5a7d4ed66ca,https://biolit.fr/observations/observation-cc1118e8-ce8c-4d43-b7c4-d5a7d4ed66ca/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211128_170434-scaled.jpg,,FALSE, +N1,58716,sortie-dc21c98a-1016-46ab-96ab-64fc62b4342f,https://biolit.fr/sorties/sortie-dc21c98a-1016-46ab-96ab-64fc62b4342f/,DELPY Emmanuelle,,11/27/2021 0:00,11.0000000,12.0000000,43.418233000000,5.161025000000,,"chateauneuf-les-martigues, étang de Bolmon",32775,observation-dc21c98a-1016-46ab-96ab-64fc62b4342f,https://biolit.fr/observations/observation-dc21c98a-1016-46ab-96ab-64fc62b4342f/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211127_110230-scaled.jpg,,FALSE, +N1,58717,sortie-3cf77b3c-c312-493d-9669-dddb7cf4ecbd,https://biolit.fr/sorties/sortie-3cf77b3c-c312-493d-9669-dddb7cf4ecbd/,LABELBLEU,,6/13/2021 0:00,10.0000000,13.0000000,42.535462000000,3.065262000000,,Criques de Porteils,32777,observation-3cf77b3c-c312-493d-9669-dddb7cf4ecbd,https://biolit.fr/observations/observation-3cf77b3c-c312-493d-9669-dddb7cf4ecbd/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210613_110258-min-scaled.jpg,,FALSE, +N1,58717,sortie-3cf77b3c-c312-493d-9669-dddb7cf4ecbd,https://biolit.fr/sorties/sortie-3cf77b3c-c312-493d-9669-dddb7cf4ecbd/,LABELBLEU,,6/13/2021 0:00,10.0000000,13.0000000,42.535462000000,3.065262000000,,Criques de Porteils,32779,observation-3cf77b3c-c312-493d-9669-dddb7cf4ecbd-2,https://biolit.fr/observations/observation-3cf77b3c-c312-493d-9669-dddb7cf4ecbd-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210613_110509-min-scaled.jpg,,FALSE, +N1,58717,sortie-3cf77b3c-c312-493d-9669-dddb7cf4ecbd,https://biolit.fr/sorties/sortie-3cf77b3c-c312-493d-9669-dddb7cf4ecbd/,LABELBLEU,,6/13/2021 0:00,10.0000000,13.0000000,42.535462000000,3.065262000000,,Criques de Porteils,32781,observation-3cf77b3c-c312-493d-9669-dddb7cf4ecbd-3,https://biolit.fr/observations/observation-3cf77b3c-c312-493d-9669-dddb7cf4ecbd-3/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210613_110559-min-scaled.jpg,,TRUE, +N1,58717,sortie-3cf77b3c-c312-493d-9669-dddb7cf4ecbd,https://biolit.fr/sorties/sortie-3cf77b3c-c312-493d-9669-dddb7cf4ecbd/,LABELBLEU,,6/13/2021 0:00,10.0000000,13.0000000,42.535462000000,3.065262000000,,Criques de Porteils,32783,observation-3cf77b3c-c312-493d-9669-dddb7cf4ecbd-4,https://biolit.fr/observations/observation-3cf77b3c-c312-493d-9669-dddb7cf4ecbd-4/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210613_110707-min-scaled.jpg,,TRUE, +N1,58717,sortie-3cf77b3c-c312-493d-9669-dddb7cf4ecbd,https://biolit.fr/sorties/sortie-3cf77b3c-c312-493d-9669-dddb7cf4ecbd/,LABELBLEU,,6/13/2021 0:00,10.0000000,13.0000000,42.535462000000,3.065262000000,,Criques de Porteils,32787,observation-3cf77b3c-c312-493d-9669-dddb7cf4ecbd-6,https://biolit.fr/observations/observation-3cf77b3c-c312-493d-9669-dddb7cf4ecbd-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210613_111408-min-scaled.jpg,,FALSE, +N1,58717,sortie-3cf77b3c-c312-493d-9669-dddb7cf4ecbd,https://biolit.fr/sorties/sortie-3cf77b3c-c312-493d-9669-dddb7cf4ecbd/,LABELBLEU,,6/13/2021 0:00,10.0000000,13.0000000,42.535462000000,3.065262000000,,Criques de Porteils,32789,observation-3cf77b3c-c312-493d-9669-dddb7cf4ecbd-7,https://biolit.fr/observations/observation-3cf77b3c-c312-493d-9669-dddb7cf4ecbd-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210613_111413-min-scaled.jpg,,FALSE, +N1,58717,sortie-3cf77b3c-c312-493d-9669-dddb7cf4ecbd,https://biolit.fr/sorties/sortie-3cf77b3c-c312-493d-9669-dddb7cf4ecbd/,LABELBLEU,,6/13/2021 0:00,10.0000000,13.0000000,42.535462000000,3.065262000000,,Criques de Porteils,32791,observation-3cf77b3c-c312-493d-9669-dddb7cf4ecbd-8,https://biolit.fr/observations/observation-3cf77b3c-c312-493d-9669-dddb7cf4ecbd-8/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210613_111632-min-scaled.jpg,,TRUE, +N1,58717,sortie-3cf77b3c-c312-493d-9669-dddb7cf4ecbd,https://biolit.fr/sorties/sortie-3cf77b3c-c312-493d-9669-dddb7cf4ecbd/,LABELBLEU,,6/13/2021 0:00,10.0000000,13.0000000,42.535462000000,3.065262000000,,Criques de Porteils,32793,observation-3cf77b3c-c312-493d-9669-dddb7cf4ecbd-9,https://biolit.fr/observations/observation-3cf77b3c-c312-493d-9669-dddb7cf4ecbd-9/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210613_111636-min-scaled.jpg,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32795,observation-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actina equina.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32797,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-2,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-2/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_8.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32799,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-3,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-3/,Atelecyclus undecimdentatus,Grand crabe circulaire,,https://biolit.fr/wp-content/uploads/2023/07/Atelecyclus undecimdentatus_1.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32801,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-4,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-4/,Berthella plumula,Berthelle plume,,https://biolit.fr/wp-content/uploads/2023/07/Berthella plumula_1.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32803,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-5,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-5/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/Branta bernicla_2.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32805,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-6,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-6/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_4.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32807,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-7,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-7/,Dysidea fragilis,Eponge mie de pain mouillée,,https://biolit.fr/wp-content/uploads/2023/07/Disydea fragilis.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32809,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-8,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Doris sp_0.PNG,,FALSE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32811,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-9,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Emarginula rosea.PNG,,FALSE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32813,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-10,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_24.PNG,,FALSE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32815,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-11,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-11/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/Galathea squamifera_0.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32817,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-12,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-12/,Patella pellucida,Helcion,,https://biolit.fr/wp-content/uploads/2023/07/Helcion pelludica.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32819,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-13,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-13/,Isozoanthus sulcatus,Anémone chocolat,,https://biolit.fr/wp-content/uploads/2023/07/Isozoanthus sulcatus_1.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32821,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-14,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lepadogaster sp.PNG,,FALSE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32822,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-15,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-15/,Inachus phalangium,Araignée des anémones,,https://biolit.fr/wp-content/uploads/2023/07/Macropodia sp_0.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32824,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-16,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-16/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_20.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32826,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-17,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-17/,Membranipora membranacea,Membranipore,,https://biolit.fr/wp-content/uploads/2023/07/Membranipora membranacea.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32828,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-18,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-18/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia_5.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32830,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-19,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-19/,Tritia incrassata,Nasse épaisse,,https://biolit.fr/wp-content/uploads/2023/07/Nassarius incrassatus_1.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32832,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-20,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-20/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_12.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32834,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-21,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-21/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_15.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32836,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-22,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-22/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/Ophiotrix fragilis_5.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32838,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-23,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-23/,Pilumnus hirtellus,Pilumne hirsute,,https://biolit.fr/wp-content/uploads/2023/07/Pilumnus hirtellus_5.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32840,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-24,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/Polychète spp.PNG,,FALSE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32842,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-25,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-25/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/Ponte d'aplysie-scaled.jpg,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32843,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-26,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-26/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_17.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32845,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-27,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-27/,Trivia arctica,Grain de café rose,,https://biolit.fr/wp-content/uploads/2023/07/Trivia arctica_1.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32847,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-28,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-28/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/Urticina felina_3.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32849,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-29,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-29/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa_4.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32851,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-30,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-30/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Watersipora subatra_4.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32853,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-31,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-31/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho ydrophilus.PNG,,TRUE, +N1,58719,sortie-4d020c65-e661-430c-a431-c7b924557f62,https://biolit.fr/sorties/sortie-4d020c65-e661-430c-a431-c7b924557f62/,nicolasmorvezen,,11/18/2021 0:00,16.0000000,18.0000000,48.651467000000,-2.031200000000,,Saint-Malo - Plage de Bonsecours,32855,observation-4d020c65-e661-430c-a431-c7b924557f62,https://biolit.fr/observations/observation-4d020c65-e661-430c-a431-c7b924557f62/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/IMG20211104135940-scaled.jpg,,TRUE, +N1,58719,sortie-4d020c65-e661-430c-a431-c7b924557f62,https://biolit.fr/sorties/sortie-4d020c65-e661-430c-a431-c7b924557f62/,nicolasmorvezen,,11/18/2021 0:00,16.0000000,18.0000000,48.651467000000,-2.031200000000,,Saint-Malo - Plage de Bonsecours,32857,observation-4d020c65-e661-430c-a431-c7b924557f62-2,https://biolit.fr/observations/observation-4d020c65-e661-430c-a431-c7b924557f62-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20211104135408-scaled.jpg,,FALSE, +N1,58719,sortie-4d020c65-e661-430c-a431-c7b924557f62,https://biolit.fr/sorties/sortie-4d020c65-e661-430c-a431-c7b924557f62/,nicolasmorvezen,,11/18/2021 0:00,16.0000000,18.0000000,48.651467000000,-2.031200000000,,Saint-Malo - Plage de Bonsecours,32859,observation-4d020c65-e661-430c-a431-c7b924557f62-3,https://biolit.fr/observations/observation-4d020c65-e661-430c-a431-c7b924557f62-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG20211104144125-scaled.jpg,,TRUE, +N1,58720,sortie-c21c23ae-88d1-4b40-ba1c-805bcfd543d2,https://biolit.fr/sorties/sortie-c21c23ae-88d1-4b40-ba1c-805bcfd543d2/,RBBBM,,11/06/2021,10.0000000,12.0:15,47.806123000000,-3.715447000000,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),"Moëlan anse du Gorgen, le Bélon",32861,observation-c21c23ae-88d1-4b40-ba1c-805bcfd543d2,https://biolit.fr/observations/observation-c21c23ae-88d1-4b40-ba1c-805bcfd543d2/,Aplysia depilans,Aplysie visqueuse,,https://biolit.fr/wp-content/uploads/2023/07/aplysie paint.jpg,,TRUE, +N1,58720,sortie-c21c23ae-88d1-4b40-ba1c-805bcfd543d2,https://biolit.fr/sorties/sortie-c21c23ae-88d1-4b40-ba1c-805bcfd543d2/,RBBBM,,11/06/2021,10.0000000,12.0:15,47.806123000000,-3.715447000000,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),"Moëlan anse du Gorgen, le Bélon",32863,observation-c21c23ae-88d1-4b40-ba1c-805bcfd543d2-2,https://biolit.fr/observations/observation-c21c23ae-88d1-4b40-ba1c-805bcfd543d2-2/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/aplysie ponte paint.jpg,,TRUE, +N1,58720,sortie-c21c23ae-88d1-4b40-ba1c-805bcfd543d2,https://biolit.fr/sorties/sortie-c21c23ae-88d1-4b40-ba1c-805bcfd543d2/,RBBBM,,11/06/2021,10.0000000,12.0:15,47.806123000000,-3.715447000000,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),"Moëlan anse du Gorgen, le Bélon",32865,observation-c21c23ae-88d1-4b40-ba1c-805bcfd543d2-3,https://biolit.fr/observations/observation-c21c23ae-88d1-4b40-ba1c-805bcfd543d2-3/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/astérine bossue paint.jpg,,TRUE, +N1,58720,sortie-c21c23ae-88d1-4b40-ba1c-805bcfd543d2,https://biolit.fr/sorties/sortie-c21c23ae-88d1-4b40-ba1c-805bcfd543d2/,RBBBM,,11/06/2021,10.0000000,12.0:15,47.806123000000,-3.715447000000,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),"Moëlan anse du Gorgen, le Bélon",32867,observation-c21c23ae-88d1-4b40-ba1c-805bcfd543d2-4,https://biolit.fr/observations/observation-c21c23ae-88d1-4b40-ba1c-805bcfd543d2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/macropode paint.jpg,,FALSE, +N1,58721,sortie-91cddc84-166e-41cc-a163-3db4db95a24b,https://biolit.fr/sorties/sortie-91cddc84-166e-41cc-a163-3db4db95a24b/,chloe.bachelez,,11/04/2021,13.0000000,15.0000000,48.652621000000,-2.021150000000,,Plage de Bonsecours - Saint Malo,32871,observation-91cddc84-166e-41cc-a163-3db4db95a24b-2,https://biolit.fr/observations/observation-91cddc84-166e-41cc-a163-3db4db95a24b-2/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211104_140509 (1)-scaled.jpg,,TRUE, +N1,58721,sortie-91cddc84-166e-41cc-a163-3db4db95a24b,https://biolit.fr/sorties/sortie-91cddc84-166e-41cc-a163-3db4db95a24b/,chloe.bachelez,,11/04/2021,13.0000000,15.0000000,48.652621000000,-2.021150000000,,Plage de Bonsecours - Saint Malo,32873,observation-91cddc84-166e-41cc-a163-3db4db95a24b-3,https://biolit.fr/observations/observation-91cddc84-166e-41cc-a163-3db4db95a24b-3/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211104_140627 (1)-scaled.jpg,,TRUE, +N1,58721,sortie-91cddc84-166e-41cc-a163-3db4db95a24b,https://biolit.fr/sorties/sortie-91cddc84-166e-41cc-a163-3db4db95a24b/,chloe.bachelez,,11/04/2021,13.0000000,15.0000000,48.652621000000,-2.021150000000,,Plage de Bonsecours - Saint Malo,32875,observation-91cddc84-166e-41cc-a163-3db4db95a24b-4,https://biolit.fr/observations/observation-91cddc84-166e-41cc-a163-3db4db95a24b-4/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211104_135653_0-scaled.jpg,,TRUE, +N1,58722,sortie-e6d4af85-3e37-4f3f-aa1e-e81f8cfc6258,https://biolit.fr/sorties/sortie-e6d4af85-3e37-4f3f-aa1e-e81f8cfc6258/,EVAby,,11/04/2021,13.0000000,15.0000000,48.64839900000,-2.029805000000,,Plage de Bonsecours - St Malo,32877,observation-e6d4af85-3e37-4f3f-aa1e-e81f8cfc6258,https://biolit.fr/observations/observation-e6d4af85-3e37-4f3f-aa1e-e81f8cfc6258/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/St malo 1.jpg,,TRUE, +N1,58722,sortie-e6d4af85-3e37-4f3f-aa1e-e81f8cfc6258,https://biolit.fr/sorties/sortie-e6d4af85-3e37-4f3f-aa1e-e81f8cfc6258/,EVAby,,11/04/2021,13.0000000,15.0000000,48.64839900000,-2.029805000000,,Plage de Bonsecours - St Malo,32879,observation-e6d4af85-3e37-4f3f-aa1e-e81f8cfc6258-2,https://biolit.fr/observations/observation-e6d4af85-3e37-4f3f-aa1e-e81f8cfc6258-2/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/st malo 2.jpg,,TRUE, +N1,58722,sortie-e6d4af85-3e37-4f3f-aa1e-e81f8cfc6258,https://biolit.fr/sorties/sortie-e6d4af85-3e37-4f3f-aa1e-e81f8cfc6258/,EVAby,,11/04/2021,13.0000000,15.0000000,48.64839900000,-2.029805000000,,Plage de Bonsecours - St Malo,32883,observation-e6d4af85-3e37-4f3f-aa1e-e81f8cfc6258-4,https://biolit.fr/observations/observation-e6d4af85-3e37-4f3f-aa1e-e81f8cfc6258-4/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/st malo 4.jpg,,TRUE, +N1,58723,sortie-2b5c17c8-2437-41a3-b931-5e9208144914,https://biolit.fr/sorties/sortie-2b5c17c8-2437-41a3-b931-5e9208144914/,Vanessa Jaeger,,11/04/2021,12.0000000,17.0000000,48.659260000000,-2.070862000000,,Plage de Bonsecours saint malo,32885,observation-2b5c17c8-2437-41a3-b931-5e9208144914,https://biolit.fr/observations/observation-2b5c17c8-2437-41a3-b931-5e9208144914/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_0003-min[1]-scaled.jpg,,TRUE, +N1,58723,sortie-2b5c17c8-2437-41a3-b931-5e9208144914,https://biolit.fr/sorties/sortie-2b5c17c8-2437-41a3-b931-5e9208144914/,Vanessa Jaeger,,11/04/2021,12.0000000,17.0000000,48.659260000000,-2.070862000000,,Plage de Bonsecours saint malo,32887,observation-2b5c17c8-2437-41a3-b931-5e9208144914-2,https://biolit.fr/observations/observation-2b5c17c8-2437-41a3-b931-5e9208144914-2/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0006-min[1]-scaled.jpg,,TRUE, +N1,58723,sortie-2b5c17c8-2437-41a3-b931-5e9208144914,https://biolit.fr/sorties/sortie-2b5c17c8-2437-41a3-b931-5e9208144914/,Vanessa Jaeger,,11/04/2021,12.0000000,17.0000000,48.659260000000,-2.070862000000,,Plage de Bonsecours saint malo,32889,observation-2b5c17c8-2437-41a3-b931-5e9208144914-3,https://biolit.fr/observations/observation-2b5c17c8-2437-41a3-b931-5e9208144914-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0042-min[1]-scaled.jpg,,TRUE, +N1,58723,sortie-2b5c17c8-2437-41a3-b931-5e9208144914,https://biolit.fr/sorties/sortie-2b5c17c8-2437-41a3-b931-5e9208144914/,Vanessa Jaeger,,11/04/2021,12.0000000,17.0000000,48.659260000000,-2.070862000000,,Plage de Bonsecours saint malo,32891,observation-2b5c17c8-2437-41a3-b931-5e9208144914-4,https://biolit.fr/observations/observation-2b5c17c8-2437-41a3-b931-5e9208144914-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0052-min[1]-scaled.jpg,,TRUE, +N1,58723,sortie-2b5c17c8-2437-41a3-b931-5e9208144914,https://biolit.fr/sorties/sortie-2b5c17c8-2437-41a3-b931-5e9208144914/,Vanessa Jaeger,,11/04/2021,12.0000000,17.0000000,48.659260000000,-2.070862000000,,Plage de Bonsecours saint malo,32893,observation-2b5c17c8-2437-41a3-b931-5e9208144914-5,https://biolit.fr/observations/observation-2b5c17c8-2437-41a3-b931-5e9208144914-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0053-min[1]-scaled.jpg,,FALSE, +N1,58724,sortie-5fadd01f-6132-4645-ba8d-e77555b01de8,https://biolit.fr/sorties/sortie-5fadd01f-6132-4645-ba8d-e77555b01de8/,william.panchout,,11/09/2021,8.0000000,16.0000000,49.504400000000,0.076147000000,,"Sainte-adresse 76310, plage",32895,observation-5fadd01f-6132-4645-ba8d-e77555b01de8,https://biolit.fr/observations/observation-5fadd01f-6132-4645-ba8d-e77555b01de8/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4197-scaled.jpg,,TRUE, +N1,58724,sortie-5fadd01f-6132-4645-ba8d-e77555b01de8,https://biolit.fr/sorties/sortie-5fadd01f-6132-4645-ba8d-e77555b01de8/,william.panchout,,11/09/2021,8.0000000,16.0000000,49.504400000000,0.076147000000,,"Sainte-adresse 76310, plage",32897,observation-5fadd01f-6132-4645-ba8d-e77555b01de8-2,https://biolit.fr/observations/observation-5fadd01f-6132-4645-ba8d-e77555b01de8-2/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4200-scaled.jpg,,TRUE, +N1,58724,sortie-5fadd01f-6132-4645-ba8d-e77555b01de8,https://biolit.fr/sorties/sortie-5fadd01f-6132-4645-ba8d-e77555b01de8/,william.panchout,,11/09/2021,8.0000000,16.0000000,49.504400000000,0.076147000000,,"Sainte-adresse 76310, plage",32899,observation-5fadd01f-6132-4645-ba8d-e77555b01de8-3,https://biolit.fr/observations/observation-5fadd01f-6132-4645-ba8d-e77555b01de8-3/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4201-scaled.jpg,,TRUE, +N1,58724,sortie-5fadd01f-6132-4645-ba8d-e77555b01de8,https://biolit.fr/sorties/sortie-5fadd01f-6132-4645-ba8d-e77555b01de8/,william.panchout,,11/09/2021,8.0000000,16.0000000,49.504400000000,0.076147000000,,"Sainte-adresse 76310, plage",32901,observation-5fadd01f-6132-4645-ba8d-e77555b01de8-4,https://biolit.fr/observations/observation-5fadd01f-6132-4645-ba8d-e77555b01de8-4/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4202-scaled.jpg,,TRUE, +N1,58724,sortie-5fadd01f-6132-4645-ba8d-e77555b01de8,https://biolit.fr/sorties/sortie-5fadd01f-6132-4645-ba8d-e77555b01de8/,william.panchout,,11/09/2021,8.0000000,16.0000000,49.504400000000,0.076147000000,,"Sainte-adresse 76310, plage",32903,observation-5fadd01f-6132-4645-ba8d-e77555b01de8-5,https://biolit.fr/observations/observation-5fadd01f-6132-4645-ba8d-e77555b01de8-5/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4203-scaled.jpg,,TRUE, +N1,58724,sortie-5fadd01f-6132-4645-ba8d-e77555b01de8,https://biolit.fr/sorties/sortie-5fadd01f-6132-4645-ba8d-e77555b01de8/,william.panchout,,11/09/2021,8.0000000,16.0000000,49.504400000000,0.076147000000,,"Sainte-adresse 76310, plage",32905,observation-5fadd01f-6132-4645-ba8d-e77555b01de8-6,https://biolit.fr/observations/observation-5fadd01f-6132-4645-ba8d-e77555b01de8-6/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4207-scaled.jpg,,TRUE, +N1,58724,sortie-5fadd01f-6132-4645-ba8d-e77555b01de8,https://biolit.fr/sorties/sortie-5fadd01f-6132-4645-ba8d-e77555b01de8/,william.panchout,,11/09/2021,8.0000000,16.0000000,49.504400000000,0.076147000000,,"Sainte-adresse 76310, plage",32907,observation-5fadd01f-6132-4645-ba8d-e77555b01de8-7,https://biolit.fr/observations/observation-5fadd01f-6132-4645-ba8d-e77555b01de8-7/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4208-scaled.jpg,,TRUE, +N1,58724,sortie-5fadd01f-6132-4645-ba8d-e77555b01de8,https://biolit.fr/sorties/sortie-5fadd01f-6132-4645-ba8d-e77555b01de8/,william.panchout,,11/09/2021,8.0000000,16.0000000,49.504400000000,0.076147000000,,"Sainte-adresse 76310, plage",32909,observation-5fadd01f-6132-4645-ba8d-e77555b01de8-8,https://biolit.fr/observations/observation-5fadd01f-6132-4645-ba8d-e77555b01de8-8/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4209-scaled.jpg,,TRUE, +N1,58724,sortie-5fadd01f-6132-4645-ba8d-e77555b01de8,https://biolit.fr/sorties/sortie-5fadd01f-6132-4645-ba8d-e77555b01de8/,william.panchout,,11/09/2021,8.0000000,16.0000000,49.504400000000,0.076147000000,,"Sainte-adresse 76310, plage",32911,observation-5fadd01f-6132-4645-ba8d-e77555b01de8-9,https://biolit.fr/observations/observation-5fadd01f-6132-4645-ba8d-e77555b01de8-9/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4210-scaled.jpg,,TRUE, +N1,58724,sortie-5fadd01f-6132-4645-ba8d-e77555b01de8,https://biolit.fr/sorties/sortie-5fadd01f-6132-4645-ba8d-e77555b01de8/,william.panchout,,11/09/2021,8.0000000,16.0000000,49.504400000000,0.076147000000,,"Sainte-adresse 76310, plage",32913,observation-5fadd01f-6132-4645-ba8d-e77555b01de8-10,https://biolit.fr/observations/observation-5fadd01f-6132-4645-ba8d-e77555b01de8-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4228-scaled.jpg,,FALSE, +N1,58724,sortie-5fadd01f-6132-4645-ba8d-e77555b01de8,https://biolit.fr/sorties/sortie-5fadd01f-6132-4645-ba8d-e77555b01de8/,william.panchout,,11/09/2021,8.0000000,16.0000000,49.504400000000,0.076147000000,,"Sainte-adresse 76310, plage",32915,observation-5fadd01f-6132-4645-ba8d-e77555b01de8-11,https://biolit.fr/observations/observation-5fadd01f-6132-4645-ba8d-e77555b01de8-11/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4237-scaled.jpg,,TRUE, +N1,58724,sortie-5fadd01f-6132-4645-ba8d-e77555b01de8,https://biolit.fr/sorties/sortie-5fadd01f-6132-4645-ba8d-e77555b01de8/,william.panchout,,11/09/2021,8.0000000,16.0000000,49.504400000000,0.076147000000,,"Sainte-adresse 76310, plage",32917,observation-5fadd01f-6132-4645-ba8d-e77555b01de8-12,https://biolit.fr/observations/observation-5fadd01f-6132-4645-ba8d-e77555b01de8-12/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4238-scaled.jpg,,TRUE, +N1,58725,sortie-d425e2ea-5b75-4bc4-a5d3-aae96df74d73,https://biolit.fr/sorties/sortie-d425e2ea-5b75-4bc4-a5d3-aae96df74d73/,Marie-Anne Issa,,11/04/2021,13.0000000,15.0000000,48.646009000000,-2.011674000000,, Plage de Bonsecours - Saint Malo,32919,observation-d425e2ea-5b75-4bc4-a5d3-aae96df74d73,https://biolit.fr/observations/observation-d425e2ea-5b75-4bc4-a5d3-aae96df74d73/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3360.jpg,,TRUE, +N1,58725,sortie-d425e2ea-5b75-4bc4-a5d3-aae96df74d73,https://biolit.fr/sorties/sortie-d425e2ea-5b75-4bc4-a5d3-aae96df74d73/,Marie-Anne Issa,,11/04/2021,13.0000000,15.0000000,48.646009000000,-2.011674000000,, Plage de Bonsecours - Saint Malo,32921,observation-d425e2ea-5b75-4bc4-a5d3-aae96df74d73-2,https://biolit.fr/observations/observation-d425e2ea-5b75-4bc4-a5d3-aae96df74d73-2/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_3366-rotated.jpg,,TRUE, +N1,58725,sortie-d425e2ea-5b75-4bc4-a5d3-aae96df74d73,https://biolit.fr/sorties/sortie-d425e2ea-5b75-4bc4-a5d3-aae96df74d73/,Marie-Anne Issa,,11/04/2021,13.0000000,15.0000000,48.646009000000,-2.011674000000,, Plage de Bonsecours - Saint Malo,32923,observation-d425e2ea-5b75-4bc4-a5d3-aae96df74d73-3,https://biolit.fr/observations/observation-d425e2ea-5b75-4bc4-a5d3-aae96df74d73-3/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3375.jpg,,TRUE, +N1,58725,sortie-d425e2ea-5b75-4bc4-a5d3-aae96df74d73,https://biolit.fr/sorties/sortie-d425e2ea-5b75-4bc4-a5d3-aae96df74d73/,Marie-Anne Issa,,11/04/2021,13.0000000,15.0000000,48.646009000000,-2.011674000000,, Plage de Bonsecours - Saint Malo,32925,observation-d425e2ea-5b75-4bc4-a5d3-aae96df74d73-4,https://biolit.fr/observations/observation-d425e2ea-5b75-4bc4-a5d3-aae96df74d73-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3390.jpg,,FALSE, +N1,58726,sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677,https://biolit.fr/sorties/sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677/,alex06,,11/04/2021,13.0000000,15.0000000,48.649357000000,-2.029532000000,,Plage de Bon Secours - Saint Malo,32927,observation-f985fdf9-62a4-4449-81cf-95ef52ce2677,https://biolit.fr/observations/observation-f985fdf9-62a4-4449-81cf-95ef52ce2677/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/4_5.jpg,,TRUE, +N1,58726,sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677,https://biolit.fr/sorties/sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677/,alex06,,11/04/2021,13.0000000,15.0000000,48.649357000000,-2.029532000000,,Plage de Bon Secours - Saint Malo,32929,observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-2,https://biolit.fr/observations/observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-2/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/1_5.jpg,,TRUE, +N1,58726,sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677,https://biolit.fr/sorties/sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677/,alex06,,11/04/2021,13.0000000,15.0000000,48.649357000000,-2.029532000000,,Plage de Bon Secours - Saint Malo,32931,observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-3,https://biolit.fr/observations/observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/6_0.jpg,,FALSE, +N1,58726,sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677,https://biolit.fr/sorties/sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677/,alex06,,11/04/2021,13.0000000,15.0000000,48.649357000000,-2.029532000000,,Plage de Bon Secours - Saint Malo,32933,observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-4,https://biolit.fr/observations/observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/12_1.jpg,,FALSE, +N1,58726,sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677,https://biolit.fr/sorties/sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677/,alex06,,11/04/2021,13.0000000,15.0000000,48.649357000000,-2.029532000000,,Plage de Bon Secours - Saint Malo,32935,observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-5,https://biolit.fr/observations/observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-5/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/13_0.jpg,,TRUE, +N1,58726,sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677,https://biolit.fr/sorties/sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677/,alex06,,11/04/2021,13.0000000,15.0000000,48.649357000000,-2.029532000000,,Plage de Bon Secours - Saint Malo,32937,observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-6,https://biolit.fr/observations/observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-6/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/15_1.jpg,,TRUE, +N1,58726,sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677,https://biolit.fr/sorties/sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677/,alex06,,11/04/2021,13.0000000,15.0000000,48.649357000000,-2.029532000000,,Plage de Bon Secours - Saint Malo,32939,observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-7,https://biolit.fr/observations/observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/5_3.jpg,,FALSE, +N1,58726,sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677,https://biolit.fr/sorties/sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677/,alex06,,11/04/2021,13.0000000,15.0000000,48.649357000000,-2.029532000000,,Plage de Bon Secours - Saint Malo,32941,observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-8,https://biolit.fr/observations/observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-8/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/3_6.jpg,,TRUE, +N1,58726,sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677,https://biolit.fr/sorties/sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677/,alex06,,11/04/2021,13.0000000,15.0000000,48.649357000000,-2.029532000000,,Plage de Bon Secours - Saint Malo,32943,observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-9,https://biolit.fr/observations/observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-9/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/7_0.jpg,,TRUE, +N1,58726,sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677,https://biolit.fr/sorties/sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677/,alex06,,11/04/2021,13.0000000,15.0000000,48.649357000000,-2.029532000000,,Plage de Bon Secours - Saint Malo,32945,observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-10,https://biolit.fr/observations/observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/9_1.jpg,,FALSE, +N1,58726,sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677,https://biolit.fr/sorties/sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677/,alex06,,11/04/2021,13.0000000,15.0000000,48.649357000000,-2.029532000000,,Plage de Bon Secours - Saint Malo,32947,observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-11,https://biolit.fr/observations/observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/11_0.jpg,,FALSE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32949,observation-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/B71F30CC-7A1B-40B0-86E4-DA11BABE937E.jpeg,,TRUE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32951,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-2,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/3E78E8AD-7B8B-42B1-A14F-5B8A00372AE3.jpeg,,FALSE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32953,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-3,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/80B5BC79-3EAD-4BD1-81F8-3111482C21FD.jpeg,,FALSE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32955,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-4,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/EDBFB84E-FC4A-4F1B-BB5F-82506C066A8E.jpeg,,FALSE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32957,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-5,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DA62DFAF-D3D6-4E2A-87C6-7FFF0A5F4985.jpeg,,FALSE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32959,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-6,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-6/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/1CAA5739-8818-4BF9-8384-B9E6E0490E82.jpeg,,TRUE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32961,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-7,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/A64AA35E-A432-4E7C-A13D-322DFBD165EC.jpeg,,FALSE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32963,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-8,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/D75CED39-4561-4B77-A52A-BB5761CB6B60.jpeg,,FALSE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32965,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-9,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/BB285EFA-8DF6-4601-AFDB-8C4E215901E8.jpeg,,FALSE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32967,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-10,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-10/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/D9FC11FE-5DAE-46D0-9958-285CCC009339.jpeg,,TRUE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32969,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-11,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/5B2FB7F9-1BFE-44F3-BE22-90777A8CEB4D.jpeg,,FALSE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32971,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-12,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/6F814E8D-7B68-4F49-BECF-582EFFFEE65D.jpeg,,FALSE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32973,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-13,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-13/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/744141D4-5AE0-4D11-82E8-468A25CD7F8B.jpeg,,TRUE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32975,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-14,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/9F03B322-C628-4BF7-9C87-69A08B93A668.jpeg,,FALSE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32977,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-15,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-15/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/0E696CD4-D7C6-4456-80D0-37777DB1FA1F.jpeg,,TRUE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32979,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-16,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-16/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/2EABD766-D39C-41C6-B8C9-A4C5A9A63F7A.jpeg,,TRUE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32981,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-17,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/DC398B35-1208-4B70-9D56-12ABB2DC2806.jpeg,,FALSE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32983,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-18,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/3FD5B57A-6E62-4544-BB89-BF1FC3F8AA66.jpeg,,FALSE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32985,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-19,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/DA9BFD3B-3647-4429-8EAD-B608A10850D0.jpeg,,FALSE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32987,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-20,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/9C3A25CD-232A-4049-985F-C74552803DF2.jpeg,,FALSE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32989,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-21,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-21/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/1B83991B-E042-4501-BA16-8225EBAA7F54.jpeg,,TRUE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32991,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-22,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-22/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/29E7FA34-1A1A-4BD7-AA7B-BC8BCE5AC418.jpeg,,TRUE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32993,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-23,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/3E5FEDAD-099F-411D-8652-425E11B3A803.jpeg,,FALSE, +N1,58728,sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1,https://biolit.fr/sorties/sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1/,freeda,,11/04/2021,13.0:45,15.0:15,48.652202000000,-2.038078000000,,Saint Malo,32995,observation-732eee73-cb1d-4dc2-823a-d05f69554cd1,https://biolit.fr/observations/observation-732eee73-cb1d-4dc2-823a-d05f69554cd1/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211104_135814-scaled.jpg,,TRUE, +N1,58728,sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1,https://biolit.fr/sorties/sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1/,freeda,,11/04/2021,13.0:45,15.0:15,48.652202000000,-2.038078000000,,Saint Malo,32997,observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-2,https://biolit.fr/observations/observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-2/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211104_135821-scaled.jpg,,TRUE, +N1,58728,sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1,https://biolit.fr/sorties/sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1/,freeda,,11/04/2021,13.0:45,15.0:15,48.652202000000,-2.038078000000,,Saint Malo,32999,observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-3,https://biolit.fr/observations/observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211104_143046-scaled.jpg,,FALSE, +N1,58728,sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1,https://biolit.fr/sorties/sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1/,freeda,,11/04/2021,13.0:45,15.0:15,48.652202000000,-2.038078000000,,Saint Malo,33001,observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-4,https://biolit.fr/observations/observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-4/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211104_141431-scaled.jpg,,TRUE, +N1,58728,sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1,https://biolit.fr/sorties/sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1/,freeda,,11/04/2021,13.0:45,15.0:15,48.652202000000,-2.038078000000,,Saint Malo,33003,observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-5,https://biolit.fr/observations/observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-5/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211104_140318-scaled.jpg,,TRUE, +N1,58728,sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1,https://biolit.fr/sorties/sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1/,freeda,,11/04/2021,13.0:45,15.0:15,48.652202000000,-2.038078000000,,Saint Malo,33005,observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-6,https://biolit.fr/observations/observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-6/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211104_140238_0-scaled.jpg,,TRUE, +N1,58728,sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1,https://biolit.fr/sorties/sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1/,freeda,,11/04/2021,13.0:45,15.0:15,48.652202000000,-2.038078000000,,Saint Malo,33007,observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-7,https://biolit.fr/observations/observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-7/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211104_141607 -.jpg,,TRUE, +N1,58728,sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1,https://biolit.fr/sorties/sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1/,freeda,,11/04/2021,13.0:45,15.0:15,48.652202000000,-2.038078000000,,Saint Malo,33009,observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-8,https://biolit.fr/observations/observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211104_142459-.jpg,,FALSE, +N1,58728,sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1,https://biolit.fr/sorties/sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1/,freeda,,11/04/2021,13.0:45,15.0:15,48.652202000000,-2.038078000000,,Saint Malo,33011,observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-9,https://biolit.fr/observations/observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-9/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211104_140628-.jpg,,TRUE, +N1,58728,sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1,https://biolit.fr/sorties/sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1/,freeda,,11/04/2021,13.0:45,15.0:15,48.652202000000,-2.038078000000,,Saint Malo,33013,observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-10,https://biolit.fr/observations/observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211104_140255-.jpg,,FALSE, +N1,58728,sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1,https://biolit.fr/sorties/sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1/,freeda,,11/04/2021,13.0:45,15.0:15,48.652202000000,-2.038078000000,,Saint Malo,33015,observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-11,https://biolit.fr/observations/observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-11/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211104_140941-.jpg,,TRUE, +N1,58729,sortie-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06,https://biolit.fr/sorties/sortie-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06/,slequertier,,11/06/2021,8.0000000,12.0000000,50.257108000000,1.55761100000,,"Parc du Marquenterre, Saint-Quentin-en-Tourmont",33017,observation-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06,https://biolit.fr/observations/observation-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2968-scaled.jpg,,TRUE, +N1,58729,sortie-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06,https://biolit.fr/sorties/sortie-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06/,slequertier,,11/06/2021,8.0000000,12.0000000,50.257108000000,1.55761100000,,"Parc du Marquenterre, Saint-Quentin-en-Tourmont",33019,observation-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06-2,https://biolit.fr/observations/observation-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06-2/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2970-scaled.jpg,,TRUE, +N1,58729,sortie-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06,https://biolit.fr/sorties/sortie-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06/,slequertier,,11/06/2021,8.0000000,12.0000000,50.257108000000,1.55761100000,,"Parc du Marquenterre, Saint-Quentin-en-Tourmont",33021,observation-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06-3,https://biolit.fr/observations/observation-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06-3/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2972-scaled.jpg,,TRUE, +N1,58729,sortie-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06,https://biolit.fr/sorties/sortie-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06/,slequertier,,11/06/2021,8.0000000,12.0000000,50.257108000000,1.55761100000,,"Parc du Marquenterre, Saint-Quentin-en-Tourmont",33023,observation-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06-4,https://biolit.fr/observations/observation-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06-4/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2980-scaled.jpg,,TRUE, +N1,58729,sortie-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06,https://biolit.fr/sorties/sortie-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06/,slequertier,,11/06/2021,8.0000000,12.0000000,50.257108000000,1.55761100000,,"Parc du Marquenterre, Saint-Quentin-en-Tourmont",33025,observation-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06-5,https://biolit.fr/observations/observation-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2991-scaled.jpg,,FALSE, +N1,58730,sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c,https://biolit.fr/sorties/sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c/,Cecars,,11/07/2021,16.0:45,17.0000000,49.904732000000,0.924194000000,,Quiberville,33027,observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c,https://biolit.fr/observations/observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_9649-scaled.jpg,,TRUE, +N1,58730,sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c,https://biolit.fr/sorties/sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c/,Cecars,,11/07/2021,16.0:45,17.0000000,49.904732000000,0.924194000000,,Quiberville,33029,observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-2,https://biolit.fr/observations/observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-2/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9648-scaled.jpg,,TRUE, +N1,58730,sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c,https://biolit.fr/sorties/sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c/,Cecars,,11/07/2021,16.0:45,17.0000000,49.904732000000,0.924194000000,,Quiberville,33031,observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-3,https://biolit.fr/observations/observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9647-scaled.jpg,,FALSE, +N1,58730,sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c,https://biolit.fr/sorties/sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c/,Cecars,,11/07/2021,16.0:45,17.0000000,49.904732000000,0.924194000000,,Quiberville,33033,observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-4,https://biolit.fr/observations/observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_9646-scaled.jpg,,TRUE, +N1,58730,sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c,https://biolit.fr/sorties/sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c/,Cecars,,11/07/2021,16.0:45,17.0000000,49.904732000000,0.924194000000,,Quiberville,33035,observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-5,https://biolit.fr/observations/observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-5/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9654-scaled.jpg,,TRUE, +N1,58730,sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c,https://biolit.fr/sorties/sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c/,Cecars,,11/07/2021,16.0:45,17.0000000,49.904732000000,0.924194000000,,Quiberville,33037,observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-6,https://biolit.fr/observations/observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-6/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9653-scaled.jpg,,TRUE, +N1,58730,sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c,https://biolit.fr/sorties/sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c/,Cecars,,11/07/2021,16.0:45,17.0000000,49.904732000000,0.924194000000,,Quiberville,33039,observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-7,https://biolit.fr/observations/observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-7/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9652-scaled.jpg,,TRUE, +N1,58730,sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c,https://biolit.fr/sorties/sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c/,Cecars,,11/07/2021,16.0:45,17.0000000,49.904732000000,0.924194000000,,Quiberville,33041,observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-8,https://biolit.fr/observations/observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-8/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9650.jpg,,TRUE, +N1,58730,sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c,https://biolit.fr/sorties/sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c/,Cecars,,11/07/2021,16.0:45,17.0000000,49.904732000000,0.924194000000,,Quiberville,33043,observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-9,https://biolit.fr/observations/observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9659-scaled.jpg,,FALSE, +N1,58730,sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c,https://biolit.fr/sorties/sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c/,Cecars,,11/07/2021,16.0:45,17.0000000,49.904732000000,0.924194000000,,Quiberville,33045,observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-10,https://biolit.fr/observations/observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-10/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_9658-scaled.jpg,,TRUE, +N1,58730,sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c,https://biolit.fr/sorties/sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c/,Cecars,,11/07/2021,16.0:45,17.0000000,49.904732000000,0.924194000000,,Quiberville,33047,observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-11,https://biolit.fr/observations/observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-11/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_9657-scaled.jpg,,TRUE, +N1,58730,sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c,https://biolit.fr/sorties/sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c/,Cecars,,11/07/2021,16.0:45,17.0000000,49.904732000000,0.924194000000,,Quiberville,33049,observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-12,https://biolit.fr/observations/observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-12/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9656-scaled.jpg,,TRUE, +N1,58730,sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c,https://biolit.fr/sorties/sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c/,Cecars,,11/07/2021,16.0:45,17.0000000,49.904732000000,0.924194000000,,Quiberville,33051,observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-13,https://biolit.fr/observations/observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-13/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9655-scaled.jpg,,TRUE, +N1,58731,sortie-77c63e39-09b8-4b82-83cf-437477a94bca,https://biolit.fr/sorties/sortie-77c63e39-09b8-4b82-83cf-437477a94bca/,Cecars,,11/06/2021,17.0000000,19.0000000,49.916639000000,1.028678000000,,Pourville,33053,observation-77c63e39-09b8-4b82-83cf-437477a94bca,https://biolit.fr/observations/observation-77c63e39-09b8-4b82-83cf-437477a94bca/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_9634-scaled.jpg,,TRUE, +N1,58731,sortie-77c63e39-09b8-4b82-83cf-437477a94bca,https://biolit.fr/sorties/sortie-77c63e39-09b8-4b82-83cf-437477a94bca/,Cecars,,11/06/2021,17.0000000,19.0000000,49.916639000000,1.028678000000,,Pourville,33055,observation-77c63e39-09b8-4b82-83cf-437477a94bca-2,https://biolit.fr/observations/observation-77c63e39-09b8-4b82-83cf-437477a94bca-2/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9631-scaled.jpg,,TRUE, +N1,58731,sortie-77c63e39-09b8-4b82-83cf-437477a94bca,https://biolit.fr/sorties/sortie-77c63e39-09b8-4b82-83cf-437477a94bca/,Cecars,,11/06/2021,17.0000000,19.0000000,49.916639000000,1.028678000000,,Pourville,33057,observation-77c63e39-09b8-4b82-83cf-437477a94bca-3,https://biolit.fr/observations/observation-77c63e39-09b8-4b82-83cf-437477a94bca-3/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_9632-scaled.jpg,,TRUE, +N1,58731,sortie-77c63e39-09b8-4b82-83cf-437477a94bca,https://biolit.fr/sorties/sortie-77c63e39-09b8-4b82-83cf-437477a94bca/,Cecars,,11/06/2021,17.0000000,19.0000000,49.916639000000,1.028678000000,,Pourville,33059,observation-77c63e39-09b8-4b82-83cf-437477a94bca-4,https://biolit.fr/observations/observation-77c63e39-09b8-4b82-83cf-437477a94bca-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9639-scaled.jpg,,FALSE, +N1,58731,sortie-77c63e39-09b8-4b82-83cf-437477a94bca,https://biolit.fr/sorties/sortie-77c63e39-09b8-4b82-83cf-437477a94bca/,Cecars,,11/06/2021,17.0000000,19.0000000,49.916639000000,1.028678000000,,Pourville,33061,observation-77c63e39-09b8-4b82-83cf-437477a94bca-5,https://biolit.fr/observations/observation-77c63e39-09b8-4b82-83cf-437477a94bca-5/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9638-scaled.jpg,,TRUE, +N1,58731,sortie-77c63e39-09b8-4b82-83cf-437477a94bca,https://biolit.fr/sorties/sortie-77c63e39-09b8-4b82-83cf-437477a94bca/,Cecars,,11/06/2021,17.0000000,19.0000000,49.916639000000,1.028678000000,,Pourville,33063,observation-77c63e39-09b8-4b82-83cf-437477a94bca-6,https://biolit.fr/observations/observation-77c63e39-09b8-4b82-83cf-437477a94bca-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9641-scaled.jpg,,FALSE, +N1,58731,sortie-77c63e39-09b8-4b82-83cf-437477a94bca,https://biolit.fr/sorties/sortie-77c63e39-09b8-4b82-83cf-437477a94bca/,Cecars,,11/06/2021,17.0000000,19.0000000,49.916639000000,1.028678000000,,Pourville,33065,observation-77c63e39-09b8-4b82-83cf-437477a94bca-7,https://biolit.fr/observations/observation-77c63e39-09b8-4b82-83cf-437477a94bca-7/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_9640-scaled.jpg,,TRUE, +N1,58731,sortie-77c63e39-09b8-4b82-83cf-437477a94bca,https://biolit.fr/sorties/sortie-77c63e39-09b8-4b82-83cf-437477a94bca/,Cecars,,11/06/2021,17.0000000,19.0000000,49.916639000000,1.028678000000,,Pourville,33067,observation-77c63e39-09b8-4b82-83cf-437477a94bca-8,https://biolit.fr/observations/observation-77c63e39-09b8-4b82-83cf-437477a94bca-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9642-scaled.jpg,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33069,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080551_0-scaled.jpg,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33071,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-2,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080553_0-scaled.jpg,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33073,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-3,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080552_0-scaled.jpg,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33075,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-4,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-4/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080554_0.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33077,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-5,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080556_0.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33079,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-6,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080557_0.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33081,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-7,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-7/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1080558_0.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33083,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-8,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-8/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080559.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33085,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-9,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-9/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080560_0.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33087,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-10,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-10/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080561_1.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33089,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-11,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-11/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080562_0.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33091,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-12,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080563.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33093,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-13,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080564_0.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33095,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-14,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-14/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1080567_0.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33097,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-15,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080568.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33099,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-16,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-16/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1080569_0.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33101,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-17,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080570_0.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33103,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-18,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-18/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080571_0.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33105,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-19,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-19/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080572-rotated.jpg,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33107,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-20,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080573_0.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33109,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-21,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080575_0.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33111,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-22,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080576.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33113,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-23,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080578_0.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33115,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-24,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-24/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080579_0.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33117,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-25,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080582_0-scaled.jpg,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33119,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-26,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080584_1.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33121,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-27,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080590_0.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33123,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-28,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080591_0.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33125,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-29,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-29/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/P1080599_0.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33127,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-30,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-30/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/P1080600_0.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33129,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-31,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080601_0.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33131,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-32,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080602_0.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33133,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-33,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080603_0.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33135,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-34,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080604.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33137,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-35,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080607.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33139,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-36,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-36/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080609_0.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33141,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-37,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-37/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1080610.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33143,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-38,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-38/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080611.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33145,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-39,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-39/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080612_0.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33147,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-40,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-40/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080613_0.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33149,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-41,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-41/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080614.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33151,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-42,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-42/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080615.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33153,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-43,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-43/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/P1080616.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33155,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-44,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-44/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080618.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33157,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-45,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-45/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/P1080620.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33159,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-46,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-46/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/P1080623-rotated.jpg,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33161,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-47,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-47/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/P1080624.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33163,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-48,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-48/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1080625.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33165,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-49,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-49/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1080629.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33167,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-50,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-50/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/P1080632.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33169,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-51,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-51/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080633.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33171,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-52,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-52/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080637.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33173,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-53,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-53/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080639_0.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33175,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-54,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-54/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080641.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33177,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-55,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-55/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080642.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33179,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-56,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-56/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080644_0.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33181,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-57,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-57/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080645_0.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33183,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-58,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-58/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/P1080646_0.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33185,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-59,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-59/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080647.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33187,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-60,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-60/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080648.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33189,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-61,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-61/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080649_0.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33191,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-62,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-62/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080650.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33193,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-63,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-63/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1080651.JPG,,TRUE, +N1,58733,sortie-d93fe4dc-bff8-4f30-8882-a06aa3396669,https://biolit.fr/sorties/sortie-d93fe4dc-bff8-4f30-8882-a06aa3396669/,Cblondet,,11/05/2021,13.0000000,13.0:15,43.030285,6.1531960,,Porquerolles ,33195,observation-d93fe4dc-bff8-4f30-8882-a06aa3396669,https://biolit.fr/observations/observation-d93fe4dc-bff8-4f30-8882-a06aa3396669/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_2432-scaled.jpg,,TRUE, +N1,58734,sortie-957be56a-e09b-4614-8dc1-79e3bc9d5623,https://biolit.fr/sorties/sortie-957be56a-e09b-4614-8dc1-79e3bc9d5623/,tridimeg,",11/4/2021 0:00",12.0:25,12.0000000,47.663846000000,-3.250393000000,,Plage de Magouero,33197,observation-957be56a-e09b-4614-8dc1-79e3bc9d5623,https://biolit.fr/observations/observation-957be56a-e09b-4614-8dc1-79e3bc9d5623/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20211104_114000064.jpg,,TRUE,, +N1,58734,sortie-957be56a-e09b-4614-8dc1-79e3bc9d5623,https://biolit.fr/sorties/sortie-957be56a-e09b-4614-8dc1-79e3bc9d5623/,tridimeg,,11/04/2021,12.0:25,12.0000000,47.663846000000,-3.250393000000,,Plage de Magouero,33199,observation-957be56a-e09b-4614-8dc1-79e3bc9d5623-2,https://biolit.fr/observations/observation-957be56a-e09b-4614-8dc1-79e3bc9d5623-2/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20211104_114008891-scaled.jpg,,TRUE, +N1,58735,sortie-246c230f-0687-485d-a634-8ab0b7339252,https://biolit.fr/sorties/sortie-246c230f-0687-485d-a634-8ab0b7339252/,Lexton,,10/27/2021 0:00,18.0000000,18.0:15,49.353893000000,-0.797352000000,,"Sainte-Honorine-des-Pertes, Les Bateaux, Plage de Sainte-Honorine-des-Pertes",33201,observation-246c230f-0687-485d-a634-8ab0b7339252,https://biolit.fr/observations/observation-246c230f-0687-485d-a634-8ab0b7339252/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211027_180119-scaled.jpg,,FALSE, +N1,58736,sortie-5212da8f-2488-47ac-9d85-b2ce907b866f,https://biolit.fr/sorties/sortie-5212da8f-2488-47ac-9d85-b2ce907b866f/,patricia.guibert3@orange.fr,,10/27/2021 0:00,18.0:45,19.0:45,50.399101000000,1.561355000000,,calvaire de berck,33203,observation-5212da8f-2488-47ac-9d85-b2ce907b866f,https://biolit.fr/observations/observation-5212da8f-2488-47ac-9d85-b2ce907b866f/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110566-scaled.jpg,,FALSE, +N1,58736,sortie-5212da8f-2488-47ac-9d85-b2ce907b866f,https://biolit.fr/sorties/sortie-5212da8f-2488-47ac-9d85-b2ce907b866f/,patricia.guibert3@orange.fr,,10/27/2021 0:00,18.0:45,19.0:45,50.399101000000,1.561355000000,,calvaire de berck,33205,observation-5212da8f-2488-47ac-9d85-b2ce907b866f-2,https://biolit.fr/observations/observation-5212da8f-2488-47ac-9d85-b2ce907b866f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110549-min-scaled.jpg,,FALSE, +N1,58736,sortie-5212da8f-2488-47ac-9d85-b2ce907b866f,https://biolit.fr/sorties/sortie-5212da8f-2488-47ac-9d85-b2ce907b866f/,patricia.guibert3@orange.fr,,10/27/2021 0:00,18.0:45,19.0:45,50.399101000000,1.561355000000,,calvaire de berck,33207,observation-5212da8f-2488-47ac-9d85-b2ce907b866f-3,https://biolit.fr/observations/observation-5212da8f-2488-47ac-9d85-b2ce907b866f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110574-min-scaled.jpg,,FALSE, +N1,58736,sortie-5212da8f-2488-47ac-9d85-b2ce907b866f,https://biolit.fr/sorties/sortie-5212da8f-2488-47ac-9d85-b2ce907b866f/,patricia.guibert3@orange.fr,,10/27/2021 0:00,18.0:45,19.0:45,50.399101000000,1.561355000000,,calvaire de berck,33209,observation-5212da8f-2488-47ac-9d85-b2ce907b866f-4,https://biolit.fr/observations/observation-5212da8f-2488-47ac-9d85-b2ce907b866f-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110610-min-scaled.jpg,,FALSE, +N1,58736,sortie-5212da8f-2488-47ac-9d85-b2ce907b866f,https://biolit.fr/sorties/sortie-5212da8f-2488-47ac-9d85-b2ce907b866f/,patricia.guibert3@orange.fr,,10/27/2021 0:00,18.0:45,19.0:45,50.399101000000,1.561355000000,,calvaire de berck,33211,observation-5212da8f-2488-47ac-9d85-b2ce907b866f-5,https://biolit.fr/observations/observation-5212da8f-2488-47ac-9d85-b2ce907b866f-5/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/P1110547-min-scaled.jpg,,TRUE, +N1,58737,sortie-68eef03e-0a92-47d8-9a3e-8a5d27d70766,https://biolit.fr/sorties/sortie-68eef03e-0a92-47d8-9a3e-8a5d27d70766/,patricia.guibert3@orange.fr,,10/28/2021 0:00,14.0000000,15.0000000,50.404877000000,1.560256000000,,Baie d'authie,33213,observation-68eef03e-0a92-47d8-9a3e-8a5d27d70766,https://biolit.fr/observations/observation-68eef03e-0a92-47d8-9a3e-8a5d27d70766/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1110606_0-scaled.jpg,,TRUE, +N1,58738,sortie-dab993fb-2c2d-4f89-ae8d-4b305a48b531,https://biolit.fr/sorties/sortie-dab993fb-2c2d-4f89-ae8d-4b305a48b531/,CPIE Cote Provencale Atelier Bleu,,10/29/2021 0:00,14.0000000,15.0000000,43.166298000000,5.606014000000,,"La Ciotat, plage du grand Mugel",33215,observation-dab993fb-2c2d-4f89-ae8d-4b305a48b531,https://biolit.fr/observations/observation-dab993fb-2c2d-4f89-ae8d-4b305a48b531/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211029_145212[1]-scaled.jpg,,FALSE, +N1,58738,sortie-dab993fb-2c2d-4f89-ae8d-4b305a48b531,https://biolit.fr/sorties/sortie-dab993fb-2c2d-4f89-ae8d-4b305a48b531/,CPIE Cote Provencale Atelier Bleu,,10/29/2021 0:00,14.0000000,15.0000000,43.166298000000,5.606014000000,,"La Ciotat, plage du grand Mugel",33217,observation-dab993fb-2c2d-4f89-ae8d-4b305a48b531-2,https://biolit.fr/observations/observation-dab993fb-2c2d-4f89-ae8d-4b305a48b531-2/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20211029_144320[1]-scaled.jpg,,TRUE, +N1,58738,sortie-dab993fb-2c2d-4f89-ae8d-4b305a48b531,https://biolit.fr/sorties/sortie-dab993fb-2c2d-4f89-ae8d-4b305a48b531/,CPIE Cote Provencale Atelier Bleu,,10/29/2021 0:00,14.0000000,15.0000000,43.166298000000,5.606014000000,,"La Ciotat, plage du grand Mugel",33219,observation-dab993fb-2c2d-4f89-ae8d-4b305a48b531-3,https://biolit.fr/observations/observation-dab993fb-2c2d-4f89-ae8d-4b305a48b531-3/,Ocinebrellus inornatus,Bigorneau perceur japonais,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20211029_144741[1]-scaled.jpg,,TRUE, +N1,58738,sortie-dab993fb-2c2d-4f89-ae8d-4b305a48b531,https://biolit.fr/sorties/sortie-dab993fb-2c2d-4f89-ae8d-4b305a48b531/,CPIE Cote Provencale Atelier Bleu,,10/29/2021 0:00,14.0000000,15.0000000,43.166298000000,5.606014000000,,"La Ciotat, plage du grand Mugel",33221,observation-dab993fb-2c2d-4f89-ae8d-4b305a48b531-4,https://biolit.fr/observations/observation-dab993fb-2c2d-4f89-ae8d-4b305a48b531-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211029_144505[1]-scaled.jpg,,FALSE, +N1,58738,sortie-dab993fb-2c2d-4f89-ae8d-4b305a48b531,https://biolit.fr/sorties/sortie-dab993fb-2c2d-4f89-ae8d-4b305a48b531/,CPIE Cote Provencale Atelier Bleu,,10/29/2021 0:00,14.0000000,15.0000000,43.166298000000,5.606014000000,,"La Ciotat, plage du grand Mugel",33223,observation-dab993fb-2c2d-4f89-ae8d-4b305a48b531-5,https://biolit.fr/observations/observation-dab993fb-2c2d-4f89-ae8d-4b305a48b531-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211029_145113[1]-scaled.jpg,,FALSE, +N1,58738,sortie-dab993fb-2c2d-4f89-ae8d-4b305a48b531,https://biolit.fr/sorties/sortie-dab993fb-2c2d-4f89-ae8d-4b305a48b531/,CPIE Cote Provencale Atelier Bleu,,10/29/2021 0:00,14.0000000,15.0000000,43.166298000000,5.606014000000,,"La Ciotat, plage du grand Mugel",33225,observation-dab993fb-2c2d-4f89-ae8d-4b305a48b531-6,https://biolit.fr/observations/observation-dab993fb-2c2d-4f89-ae8d-4b305a48b531-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211029_145224[1]-scaled.jpg,,FALSE, +N1,58739,sortie-d4679a56-6455-4286-81db-926c32843a0a,https://biolit.fr/sorties/sortie-d4679a56-6455-4286-81db-926c32843a0a/,Dorian ROULET,,10/29/2021 0:00,14.0000000,16.0000000,43.280825000000,5.360000000000,Planète Mer,Escale Borély,33227,observation-d4679a56-6455-4286-81db-926c32843a0a,https://biolit.fr/observations/observation-d4679a56-6455-4286-81db-926c32843a0a/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG20211029115537[1]-scaled.jpg,,TRUE, +N1,58739,sortie-d4679a56-6455-4286-81db-926c32843a0a,https://biolit.fr/sorties/sortie-d4679a56-6455-4286-81db-926c32843a0a/,Dorian ROULET,,10/29/2021 0:00,14.0000000,16.0000000,43.280825000000,5.360000000000,Planète Mer,Escale Borély,33229,observation-d4679a56-6455-4286-81db-926c32843a0a-2,https://biolit.fr/observations/observation-d4679a56-6455-4286-81db-926c32843a0a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20211029111805[1]-scaled.jpg,,FALSE, +N1,58740,sortie-9185cc90-1d23-4db7-8aa1-dd4516dedeef,https://biolit.fr/sorties/sortie-9185cc90-1d23-4db7-8aa1-dd4516dedeef/,Dorian ROULET,,10/29/2021 0:00,9.0000000,10.0000000,43.260604000000,5.371291000000,Planète Mer,Plage du prophète,33231,observation-9185cc90-1d23-4db7-8aa1-dd4516dedeef,https://biolit.fr/observations/observation-9185cc90-1d23-4db7-8aa1-dd4516dedeef/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG20211029090731[1]-scaled.jpg,,TRUE, +N1,58740,sortie-9185cc90-1d23-4db7-8aa1-dd4516dedeef,https://biolit.fr/sorties/sortie-9185cc90-1d23-4db7-8aa1-dd4516dedeef/,Dorian ROULET,,10/29/2021 0:00,9.0000000,10.0000000,43.260604000000,5.371291000000,Planète Mer,Plage du prophète,33233,observation-9185cc90-1d23-4db7-8aa1-dd4516dedeef-2,https://biolit.fr/observations/observation-9185cc90-1d23-4db7-8aa1-dd4516dedeef-2/,Bolinus brandaris,Ponte de murex épineux,,https://biolit.fr/wp-content/uploads/2023/07/IMG20211029090437[1]-scaled.jpg,,TRUE, +N1,58740,sortie-9185cc90-1d23-4db7-8aa1-dd4516dedeef,https://biolit.fr/sorties/sortie-9185cc90-1d23-4db7-8aa1-dd4516dedeef/,Dorian ROULET,,10/29/2021 0:00,9.0000000,10.0000000,43.260604000000,5.371291000000,Planète Mer,Plage du prophète,33235,observation-9185cc90-1d23-4db7-8aa1-dd4516dedeef-3,https://biolit.fr/observations/observation-9185cc90-1d23-4db7-8aa1-dd4516dedeef-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20211029085823[1]-scaled.jpg,,FALSE, +N1,58741,sortie-de71ba36-62c3-4ad9-9349-6db47c030579,https://biolit.fr/sorties/sortie-de71ba36-62c3-4ad9-9349-6db47c030579/,patricia.guibert3@orange.fr,,10/23/2021 0:00,19.0000000,20.0000000,50.403741000000,1.559432000000,,Plage de Berck,33237,observation-de71ba36-62c3-4ad9-9349-6db47c030579,https://biolit.fr/observations/observation-de71ba36-62c3-4ad9-9349-6db47c030579/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1110489-min_0-scaled.jpg,,TRUE, +N1,58741,sortie-de71ba36-62c3-4ad9-9349-6db47c030579,https://biolit.fr/sorties/sortie-de71ba36-62c3-4ad9-9349-6db47c030579/,patricia.guibert3@orange.fr,,10/23/2021 0:00,19.0000000,20.0000000,50.403741000000,1.559432000000,,Plage de Berck,33239,observation-de71ba36-62c3-4ad9-9349-6db47c030579-2,https://biolit.fr/observations/observation-de71ba36-62c3-4ad9-9349-6db47c030579-2/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/2023/07/P1110499-min-scaled.jpg,,TRUE, +N1,58741,sortie-de71ba36-62c3-4ad9-9349-6db47c030579,https://biolit.fr/sorties/sortie-de71ba36-62c3-4ad9-9349-6db47c030579/,patricia.guibert3@orange.fr,,10/23/2021 0:00,19.0000000,20.0000000,50.403741000000,1.559432000000,,Plage de Berck,33241,observation-de71ba36-62c3-4ad9-9349-6db47c030579-3,https://biolit.fr/observations/observation-de71ba36-62c3-4ad9-9349-6db47c030579-3/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1110490-min-scaled.jpg,,TRUE, +N1,58741,sortie-de71ba36-62c3-4ad9-9349-6db47c030579,https://biolit.fr/sorties/sortie-de71ba36-62c3-4ad9-9349-6db47c030579/,patricia.guibert3@orange.fr,,10/23/2021 0:00,19.0000000,20.0000000,50.403741000000,1.559432000000,,Plage de Berck,33243,observation-de71ba36-62c3-4ad9-9349-6db47c030579-4,https://biolit.fr/observations/observation-de71ba36-62c3-4ad9-9349-6db47c030579-4/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/P1110503-min-scaled.jpg,,TRUE, +N1,58741,sortie-de71ba36-62c3-4ad9-9349-6db47c030579,https://biolit.fr/sorties/sortie-de71ba36-62c3-4ad9-9349-6db47c030579/,patricia.guibert3@orange.fr,,10/23/2021 0:00,19.0000000,20.0000000,50.403741000000,1.559432000000,,Plage de Berck,33245,observation-de71ba36-62c3-4ad9-9349-6db47c030579-5,https://biolit.fr/observations/observation-de71ba36-62c3-4ad9-9349-6db47c030579-5/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/P1110464-min-scaled.jpg,,TRUE, +N1,58741,sortie-de71ba36-62c3-4ad9-9349-6db47c030579,https://biolit.fr/sorties/sortie-de71ba36-62c3-4ad9-9349-6db47c030579/,patricia.guibert3@orange.fr,,10/23/2021 0:00,19.0000000,20.0000000,50.403741000000,1.559432000000,,Plage de Berck,33247,observation-de71ba36-62c3-4ad9-9349-6db47c030579-6,https://biolit.fr/observations/observation-de71ba36-62c3-4ad9-9349-6db47c030579-6/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/P1110486-min-scaled.jpg,,TRUE, +N1,58742,sortie-893c741f-f3a8-4d55-85a8-1780c7531bde,https://biolit.fr/sorties/sortie-893c741f-f3a8-4d55-85a8-1780c7531bde/,patricia.guibert3@orange.fr,,10/19/2021 0:00,18.0:45,19.0000000,50.398051000000,1.558059000000,,Baie d'authie,33249,observation-893c741f-f3a8-4d55-85a8-1780c7531bde,https://biolit.fr/observations/observation-893c741f-f3a8-4d55-85a8-1780c7531bde/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/P1110399-min-scaled.jpg,,TRUE, +N1,58742,sortie-893c741f-f3a8-4d55-85a8-1780c7531bde,https://biolit.fr/sorties/sortie-893c741f-f3a8-4d55-85a8-1780c7531bde/,patricia.guibert3@orange.fr,,10/19/2021 0:00,18.0:45,19.0000000,50.398051000000,1.558059000000,,Baie d'authie,33251,observation-893c741f-f3a8-4d55-85a8-1780c7531bde-2,https://biolit.fr/observations/observation-893c741f-f3a8-4d55-85a8-1780c7531bde-2/,Pomatoschistus microps,Gobie tacheté,,https://biolit.fr/wp-content/uploads/2023/07/P1110400-min-scaled.jpg,,TRUE, +N1,58742,sortie-893c741f-f3a8-4d55-85a8-1780c7531bde,https://biolit.fr/sorties/sortie-893c741f-f3a8-4d55-85a8-1780c7531bde/,patricia.guibert3@orange.fr,,10/19/2021 0:00,18.0:45,19.0000000,50.398051000000,1.558059000000,,Baie d'authie,33253,observation-893c741f-f3a8-4d55-85a8-1780c7531bde-3,https://biolit.fr/observations/observation-893c741f-f3a8-4d55-85a8-1780c7531bde-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1110384-min-scaled.jpg,,TRUE, +N1,58742,sortie-893c741f-f3a8-4d55-85a8-1780c7531bde,https://biolit.fr/sorties/sortie-893c741f-f3a8-4d55-85a8-1780c7531bde/,patricia.guibert3@orange.fr,,10/19/2021 0:00,18.0:45,19.0000000,50.398051000000,1.558059000000,,Baie d'authie,33255,observation-893c741f-f3a8-4d55-85a8-1780c7531bde-4,https://biolit.fr/observations/observation-893c741f-f3a8-4d55-85a8-1780c7531bde-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110404-min-scaled.jpg,,FALSE, +N1,58743,sortie-653fa968-8d99-4fb1-bc45-957625ced279,https://biolit.fr/sorties/sortie-653fa968-8d99-4fb1-bc45-957625ced279/,patricia.guibert3@orange.fr,,10/20/2021 0:00,18.0000000,19.0000000,50.400765000000,1.552840000000,,calvaire de berck,33257,observation-653fa968-8d99-4fb1-bc45-957625ced279,https://biolit.fr/observations/observation-653fa968-8d99-4fb1-bc45-957625ced279/,Tritia reticulata,Ponte de nasse réticulée,,https://biolit.fr/wp-content/uploads/2023/07/P1110408-scaled.jpg,,TRUE, +N1,58744,sortie-357b7c9a-5b54-4846-83ab-833ed2f6cbe1,https://biolit.fr/sorties/sortie-357b7c9a-5b54-4846-83ab-833ed2f6cbe1/,patricia.guibert3@orange.fr,,10/21/2021 0:00,12.0000000,13.0000000,50.407406000000,1.559260000000,,calvaire de berck,33259,observation-357b7c9a-5b54-4846-83ab-833ed2f6cbe1,https://biolit.fr/observations/observation-357b7c9a-5b54-4846-83ab-833ed2f6cbe1/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110432_0-scaled.jpg,,FALSE, +N1,58745,sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e,https://biolit.fr/sorties/sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e/,Naëlle_Guilloux,,10/05/2021,16.0000000,17.0000000,43.420898000000,5.060858000000,Planète Mer,Martigues plage,33261,observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e,https://biolit.fr/observations/observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1181-scaled.jpeg,,FALSE, +N1,58745,sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e,https://biolit.fr/sorties/sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e/,Naëlle_Guilloux,,10/05/2021,16.0000000,17.0000000,43.420898000000,5.060858000000,Planète Mer,Martigues plage,33263,observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-2,https://biolit.fr/observations/observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-2/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_1182-scaled.jpeg,,TRUE, +N1,58745,sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e,https://biolit.fr/sorties/sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e/,Naëlle_Guilloux,,10/05/2021,16.0000000,17.0000000,43.420898000000,5.060858000000,Planète Mer,Martigues plage,33265,observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-3,https://biolit.fr/observations/observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1183-scaled.jpeg,,FALSE, +N1,58745,sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e,https://biolit.fr/sorties/sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e/,Naëlle_Guilloux,,10/05/2021,16.0000000,17.0000000,43.420898000000,5.060858000000,Planète Mer,Martigues plage,33267,observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-4,https://biolit.fr/observations/observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1185-scaled.jpeg,,FALSE, +N1,58745,sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e,https://biolit.fr/sorties/sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e/,Naëlle_Guilloux,,10/05/2021,16.0000000,17.0000000,43.420898000000,5.060858000000,Planète Mer,Martigues plage,33269,observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-5,https://biolit.fr/observations/observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-5/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1186-scaled.jpeg,,TRUE, +N1,58745,sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e,https://biolit.fr/sorties/sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e/,Naëlle_Guilloux,,10/05/2021,16.0000000,17.0000000,43.420898000000,5.060858000000,Planète Mer,Martigues plage,33271,observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-6,https://biolit.fr/observations/observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-6/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1187-scaled.jpeg,,TRUE, +N1,58745,sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e,https://biolit.fr/sorties/sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e/,Naëlle_Guilloux,,10/05/2021,16.0000000,17.0000000,43.420898000000,5.060858000000,Planète Mer,Martigues plage,33273,observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-7,https://biolit.fr/observations/observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1188-scaled.jpeg,,FALSE, +N1,58745,sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e,https://biolit.fr/sorties/sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e/,Naëlle_Guilloux,,10/05/2021,16.0000000,17.0000000,43.420898000000,5.060858000000,Planète Mer,Martigues plage,33275,observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-8,https://biolit.fr/observations/observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1189-scaled.jpeg,,FALSE, +N1,58745,sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e,https://biolit.fr/sorties/sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e/,Naëlle_Guilloux,,10/05/2021,16.0000000,17.0000000,43.420898000000,5.060858000000,Planète Mer,Martigues plage,33277,observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-9,https://biolit.fr/observations/observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1191-scaled.jpeg,,FALSE, +N1,58745,sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e,https://biolit.fr/sorties/sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e/,Naëlle_Guilloux,,10/05/2021,16.0000000,17.0000000,43.420898000000,5.060858000000,Planète Mer,Martigues plage,33279,observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-10,https://biolit.fr/observations/observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-10/,Pecten jacobaeus,Coquille Saint-Jacques de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1195-scaled.jpeg,,TRUE, +N1,58745,sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e,https://biolit.fr/sorties/sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e/,Naëlle_Guilloux,,10/05/2021,16.0000000,17.0000000,43.420898000000,5.060858000000,Planète Mer,Martigues plage,33281,observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-11,https://biolit.fr/observations/observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-11/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1196-scaled.jpeg,,TRUE, +N1,58745,sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e,https://biolit.fr/sorties/sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e/,Naëlle_Guilloux,,10/05/2021,16.0000000,17.0000000,43.420898000000,5.060858000000,Planète Mer,Martigues plage,33283,observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-12,https://biolit.fr/observations/observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1197-scaled.jpeg,,FALSE, +N1,58745,sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e,https://biolit.fr/sorties/sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e/,Naëlle_Guilloux,,10/05/2021,16.0000000,17.0000000,43.420898000000,5.060858000000,Planète Mer,Martigues plage,33285,observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-13,https://biolit.fr/observations/observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-13/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1198-scaled.jpeg,,TRUE, +N1,58745,sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e,https://biolit.fr/sorties/sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e/,Naëlle_Guilloux,,10/05/2021,16.0000000,17.0000000,43.420898000000,5.060858000000,Planète Mer,Martigues plage,33287,observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-14,https://biolit.fr/observations/observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-14/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1201-scaled.jpeg,,TRUE, +N1,58746,sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6,https://biolit.fr/sorties/sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6/,Watch The Sea,,10/20/2021 0:00,16.0000000,18.0000000,43.174517000000,5.382640000000,Watch The Sea,"îles des Calanques (Jarre, Riou, Plane)",33289,observation-36506fe3-9fd2-48c5-a67a-40cf360599d6,https://biolit.fr/observations/observation-36506fe3-9fd2-48c5-a67a-40cf360599d6/,Sabella spallanzanii,Spirographe,,https://biolit.fr/wp-content/uploads/2023/07/4_4.jpg,,TRUE, +N1,58746,sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6,https://biolit.fr/sorties/sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6/,Watch The Sea,,10/20/2021 0:00,16.0000000,18.0000000,43.174517000000,5.382640000000,Watch The Sea,"îles des Calanques (Jarre, Riou, Plane)",33291,observation-36506fe3-9fd2-48c5-a67a-40cf360599d6-2,https://biolit.fr/observations/observation-36506fe3-9fd2-48c5-a67a-40cf360599d6-2/,Sabella spallanzanii,Spirographe,,https://biolit.fr/wp-content/uploads/2023/07/3_5.jpg,,TRUE, +N1,58746,sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6,https://biolit.fr/sorties/sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6/,Watch The Sea,,10/20/2021 0:00,16.0000000,18.0000000,43.174517000000,5.382640000000,Watch The Sea,"îles des Calanques (Jarre, Riou, Plane)",33293,observation-36506fe3-9fd2-48c5-a67a-40cf360599d6-3,https://biolit.fr/observations/observation-36506fe3-9fd2-48c5-a67a-40cf360599d6-3/,Bolinopsis infundibulum,Bolinopsis,,https://biolit.fr/wp-content/uploads/2023/07/8_0.jpg,,TRUE, +N1,58746,sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6,https://biolit.fr/sorties/sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6/,Watch The Sea,,10/20/2021 0:00,16.0000000,18.0000000,43.174517000000,5.382640000000,Watch The Sea,"îles des Calanques (Jarre, Riou, Plane)",33295,observation-36506fe3-9fd2-48c5-a67a-40cf360599d6-4,https://biolit.fr/observations/observation-36506fe3-9fd2-48c5-a67a-40cf360599d6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/9_0.jpg,,FALSE, +N1,58746,sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6,https://biolit.fr/sorties/sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6/,Watch The Sea,,10/20/2021 0:00,16.0000000,18.0000000,43.174517000000,5.382640000000,Watch The Sea,"îles des Calanques (Jarre, Riou, Plane)",33297,observation-36506fe3-9fd2-48c5-a67a-40cf360599d6-5,https://biolit.fr/observations/observation-36506fe3-9fd2-48c5-a67a-40cf360599d6-5/,Scorpaena scrofa,Chapon,,https://biolit.fr/wp-content/uploads/2023/07/113_0.jpg,,TRUE, +N1,58746,sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6,https://biolit.fr/sorties/sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6/,Watch The Sea,,10/20/2021 0:00,16.0000000,18.0000000,43.174517000000,5.382640000000,Watch The Sea,"îles des Calanques (Jarre, Riou, Plane)",33299,observation-36506fe3-9fd2-48c5-a67a-40cf360599d6-6,https://biolit.fr/observations/observation-36506fe3-9fd2-48c5-a67a-40cf360599d6-6/,Pegea confoederata,Salpe Pégée,,https://biolit.fr/wp-content/uploads/2023/07/76.jpg,,TRUE, +N1,58746,sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6,https://biolit.fr/sorties/sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6/,Watch The Sea,,10/20/2021 0:00,16.0000000,18.0000000,43.174517000000,5.382640000000,Watch The Sea,"îles des Calanques (Jarre, Riou, Plane)",33301,observation-36506fe3-9fd2-48c5-a67a-40cf360599d6-7,https://biolit.fr/observations/observation-36506fe3-9fd2-48c5-a67a-40cf360599d6-7/,Palinurus elephas,Langouste rouge,,https://biolit.fr/wp-content/uploads/2023/07/61.jpg,,TRUE, +N1,58746,sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6,https://biolit.fr/sorties/sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6/,Watch The Sea,,10/20/2021 0:00,16.0000000,18.0000000,43.174517000000,5.382640000000,Watch The Sea,"îles des Calanques (Jarre, Riou, Plane)",33303,observation-36506fe3-9fd2-48c5-a67a-40cf360599d6-8,https://biolit.fr/observations/observation-36506fe3-9fd2-48c5-a67a-40cf360599d6-8/,Cotylorhiza tuberculata,Méduse œuf au plat,,https://biolit.fr/wp-content/uploads/2023/07/67.jpg,,TRUE, +N1,58746,sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6,https://biolit.fr/sorties/sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6/,Watch The Sea,,10/20/2021 0:00,16.0000000,18.0000000,43.174517000000,5.382640000000,Watch The Sea,"îles des Calanques (Jarre, Riou, Plane)",33305,observation-36506fe3-9fd2-48c5-a67a-40cf360599d6-9,https://biolit.fr/observations/observation-36506fe3-9fd2-48c5-a67a-40cf360599d6-9/,Paramuricea clavata,Gorgone pourpre,,https://biolit.fr/wp-content/uploads/2023/07/93.jpg,,TRUE, +N1,58747,sortie-64892ddf-eedc-4a83-b3af-35b4245dec69,https://biolit.fr/sorties/sortie-64892ddf-eedc-4a83-b3af-35b4245dec69/,patricia.guibert3@orange.fr,,10/19/2021 0:00,18.0000000,20.0000000,50.423950000000,1.565856000000,,"Terminus, Berck 62600",33307,observation-64892ddf-eedc-4a83-b3af-35b4245dec69,https://biolit.fr/observations/observation-64892ddf-eedc-4a83-b3af-35b4245dec69/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/2023/07/P1110335-scaled.jpg,,TRUE, +N1,58747,sortie-64892ddf-eedc-4a83-b3af-35b4245dec69,https://biolit.fr/sorties/sortie-64892ddf-eedc-4a83-b3af-35b4245dec69/,patricia.guibert3@orange.fr,,10/19/2021 0:00,18.0000000,20.0000000,50.423950000000,1.565856000000,,"Terminus, Berck 62600",33309,observation-64892ddf-eedc-4a83-b3af-35b4245dec69-2,https://biolit.fr/observations/observation-64892ddf-eedc-4a83-b3af-35b4245dec69-2/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1100564_0-scaled.jpg,,TRUE, +N1,58747,sortie-64892ddf-eedc-4a83-b3af-35b4245dec69,https://biolit.fr/sorties/sortie-64892ddf-eedc-4a83-b3af-35b4245dec69/,patricia.guibert3@orange.fr,,10/19/2021 0:00,18.0000000,20.0000000,50.423950000000,1.565856000000,,"Terminus, Berck 62600",33311,observation-64892ddf-eedc-4a83-b3af-35b4245dec69-3,https://biolit.fr/observations/observation-64892ddf-eedc-4a83-b3af-35b4245dec69-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1110363-scaled.jpg,,TRUE, +N1,58747,sortie-64892ddf-eedc-4a83-b3af-35b4245dec69,https://biolit.fr/sorties/sortie-64892ddf-eedc-4a83-b3af-35b4245dec69/,patricia.guibert3@orange.fr,,10/19/2021 0:00,18.0000000,20.0000000,50.423950000000,1.565856000000,,"Terminus, Berck 62600",33313,observation-64892ddf-eedc-4a83-b3af-35b4245dec69-4,https://biolit.fr/observations/observation-64892ddf-eedc-4a83-b3af-35b4245dec69-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110362-min-scaled.jpg,,FALSE, +N1,58747,sortie-64892ddf-eedc-4a83-b3af-35b4245dec69,https://biolit.fr/sorties/sortie-64892ddf-eedc-4a83-b3af-35b4245dec69/,patricia.guibert3@orange.fr,,10/19/2021 0:00,18.0000000,20.0000000,50.423950000000,1.565856000000,,"Terminus, Berck 62600",33315,observation-64892ddf-eedc-4a83-b3af-35b4245dec69-5,https://biolit.fr/observations/observation-64892ddf-eedc-4a83-b3af-35b4245dec69-5/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/2023/07/P1100951-min-scaled.jpg,,TRUE, +N1,58748,sortie-1b450e8e-6715-49f0-b3d7-61d138a20fca,https://biolit.fr/sorties/sortie-1b450e8e-6715-49f0-b3d7-61d138a20fca/,leane-garcia,,10/05/2021,17.0000000,19.0000000,43.420976000000,5.060871000000,AIEJE,plage de Tholon,33317,observation-1b450e8e-6715-49f0-b3d7-61d138a20fca,https://biolit.fr/observations/observation-1b450e8e-6715-49f0-b3d7-61d138a20fca/,,,,https://biolit.fr/wp-content/uploads/2023/07/image8-scaled.jpeg,,FALSE, +N1,58749,sortie-4e25da91-1da9-4f1d-8081-434db490870e,https://biolit.fr/sorties/sortie-4e25da91-1da9-4f1d-8081-434db490870e/,leane-garcia,,10/05/2021,16.0000000,17.0000000,43.420696000000,5.060882000000,,plage du tolon,33319,observation-4e25da91-1da9-4f1d-8081-434db490870e,https://biolit.fr/observations/observation-4e25da91-1da9-4f1d-8081-434db490870e/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/image4-scaled.jpeg,,TRUE, +N1,58750,sortie-f144a5d6-fb97-47b3-9517-df18dd7256e9,https://biolit.fr/sorties/sortie-f144a5d6-fb97-47b3-9517-df18dd7256e9/,Dorian ROULET,,10/13/2021 0:00,9.0000000,10.0:15,43.214949000000,5.342893000000,,Anse de la Maronnaise,33321,observation-f144a5d6-fb97-47b3-9517-df18dd7256e9,https://biolit.fr/observations/observation-f144a5d6-fb97-47b3-9517-df18dd7256e9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211013_093732-min-scaled.jpg,,FALSE, +N1,58750,sortie-f144a5d6-fb97-47b3-9517-df18dd7256e9,https://biolit.fr/sorties/sortie-f144a5d6-fb97-47b3-9517-df18dd7256e9/,Dorian ROULET,,10/13/2021 0:00,9.0000000,10.0:15,43.214949000000,5.342893000000,,Anse de la Maronnaise,33323,observation-f144a5d6-fb97-47b3-9517-df18dd7256e9-2,https://biolit.fr/observations/observation-f144a5d6-fb97-47b3-9517-df18dd7256e9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211013_093754-min-scaled.jpg,,FALSE, +N1,58750,sortie-f144a5d6-fb97-47b3-9517-df18dd7256e9,https://biolit.fr/sorties/sortie-f144a5d6-fb97-47b3-9517-df18dd7256e9/,Dorian ROULET,,10/13/2021 0:00,9.0000000,10.0:15,43.214949000000,5.342893000000,,Anse de la Maronnaise,33325,observation-f144a5d6-fb97-47b3-9517-df18dd7256e9-3,https://biolit.fr/observations/observation-f144a5d6-fb97-47b3-9517-df18dd7256e9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211013_093900-min-scaled.jpg,,FALSE, +N1,58750,sortie-f144a5d6-fb97-47b3-9517-df18dd7256e9,https://biolit.fr/sorties/sortie-f144a5d6-fb97-47b3-9517-df18dd7256e9/,Dorian ROULET,,10/13/2021 0:00,9.0000000,10.0:15,43.214949000000,5.342893000000,,Anse de la Maronnaise,33327,observation-f144a5d6-fb97-47b3-9517-df18dd7256e9-4,https://biolit.fr/observations/observation-f144a5d6-fb97-47b3-9517-df18dd7256e9-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211013_094300-min-scaled.jpg,,FALSE, +N1,58750,sortie-f144a5d6-fb97-47b3-9517-df18dd7256e9,https://biolit.fr/sorties/sortie-f144a5d6-fb97-47b3-9517-df18dd7256e9/,Dorian ROULET,,10/13/2021 0:00,9.0000000,10.0:15,43.214949000000,5.342893000000,,Anse de la Maronnaise,33329,observation-f144a5d6-fb97-47b3-9517-df18dd7256e9-5,https://biolit.fr/observations/observation-f144a5d6-fb97-47b3-9517-df18dd7256e9-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211013_094950-min-scaled.jpg,,FALSE, +N1,58751,sortie-71c7303e-389b-4412-9b48-ad539eea64c7,https://biolit.fr/sorties/sortie-71c7303e-389b-4412-9b48-ad539eea64c7/,edith-charrier,,10/13/2021 0:00,9.0000000,10.0:15,43.214826000000,5.342981000000,Planète Mer,"Marseille, Anse de la Maronaise",33331,observation-71c7303e-389b-4412-9b48-ad539eea64c7,https://biolit.fr/observations/observation-71c7303e-389b-4412-9b48-ad539eea64c7/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20211013_093511-min-scaled.jpg,,TRUE, +N1,58751,sortie-71c7303e-389b-4412-9b48-ad539eea64c7,https://biolit.fr/sorties/sortie-71c7303e-389b-4412-9b48-ad539eea64c7/,edith-charrier,,10/13/2021 0:00,9.0000000,10.0:15,43.214826000000,5.342981000000,Planète Mer,"Marseille, Anse de la Maronaise",33333,observation-71c7303e-389b-4412-9b48-ad539eea64c7-2,https://biolit.fr/observations/observation-71c7303e-389b-4412-9b48-ad539eea64c7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211013_093628-min-scaled.jpg,,FALSE, +N1,58751,sortie-71c7303e-389b-4412-9b48-ad539eea64c7,https://biolit.fr/sorties/sortie-71c7303e-389b-4412-9b48-ad539eea64c7/,edith-charrier,,10/13/2021 0:00,9.0000000,10.0:15,43.214826000000,5.342981000000,Planète Mer,"Marseille, Anse de la Maronaise",33335,observation-71c7303e-389b-4412-9b48-ad539eea64c7-3,https://biolit.fr/observations/observation-71c7303e-389b-4412-9b48-ad539eea64c7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211013_094010-min-scaled.jpg,,FALSE, +N1,58751,sortie-71c7303e-389b-4412-9b48-ad539eea64c7,https://biolit.fr/sorties/sortie-71c7303e-389b-4412-9b48-ad539eea64c7/,edith-charrier,,10/13/2021 0:00,9.0000000,10.0:15,43.214826000000,5.342981000000,Planète Mer,"Marseille, Anse de la Maronaise",33337,observation-71c7303e-389b-4412-9b48-ad539eea64c7-4,https://biolit.fr/observations/observation-71c7303e-389b-4412-9b48-ad539eea64c7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211013_094055-min-scaled.jpg,,FALSE, +N1,58751,sortie-71c7303e-389b-4412-9b48-ad539eea64c7,https://biolit.fr/sorties/sortie-71c7303e-389b-4412-9b48-ad539eea64c7/,edith-charrier,,10/13/2021 0:00,9.0000000,10.0:15,43.214826000000,5.342981000000,Planète Mer,"Marseille, Anse de la Maronaise",33339,observation-71c7303e-389b-4412-9b48-ad539eea64c7-5,https://biolit.fr/observations/observation-71c7303e-389b-4412-9b48-ad539eea64c7-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211013_094417-min-scaled.jpg,,FALSE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33341,observation-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona fascicularis_5.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33343,observation-26ac2801-a270-4deb-b70d-79227a24776c-2,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_15.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33345,observation-26ac2801-a270-4deb-b70d-79227a24776c-3,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-3/,Conger conger,Congre,,https://biolit.fr/wp-content/uploads/2023/07/Anguilla anguilla.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33347,observation-26ac2801-a270-4deb-b70d-79227a24776c-4,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-4/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/Anthopleura balii_5.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33349,observation-26ac2801-a270-4deb-b70d-79227a24776c-5,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/aplisium elegans pe.PNG,,FALSE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33351,observation-26ac2801-a270-4deb-b70d-79227a24776c-6,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie sp_1.PNG,,FALSE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33353,observation-26ac2801-a270-4deb-b70d-79227a24776c-7,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/aucune idée 1.PNG,,FALSE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33355,observation-26ac2801-a270-4deb-b70d-79227a24776c-8,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/aucune idée_2.PNG,,FALSE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33357,observation-26ac2801-a270-4deb-b70d-79227a24776c-9,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-9/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/Aulactinia verrucosa_5.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33359,observation-26ac2801-a270-4deb-b70d-79227a24776c-10,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-10/,Berthella plumula,Berthelle plume,,https://biolit.fr/wp-content/uploads/2023/07/Berthella plumula_0.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33361,observation-26ac2801-a270-4deb-b70d-79227a24776c-11,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-11/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_10.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33363,observation-26ac2801-a270-4deb-b70d-79227a24776c-12,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Bryo sp-scaled.jpg,,FALSE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33364,observation-26ac2801-a270-4deb-b70d-79227a24776c-13,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-13/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Calliostoma zyziphinum_2.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33366,observation-26ac2801-a270-4deb-b70d-79227a24776c-14,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-14/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_13.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33368,observation-26ac2801-a270-4deb-b70d-79227a24776c-15,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-15/,Ciliata mustela,Motelle à 5 barbillons,,https://biolit.fr/wp-content/uploads/2023/07/Ciliata mustela_2.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33370,observation-26ac2801-a270-4deb-b70d-79227a24776c-16,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Concombre de mer pe.PNG,,FALSE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33372,observation-26ac2801-a270-4deb-b70d-79227a24776c-17,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/Doris sp.PNG,,FALSE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33374,observation-26ac2801-a270-4deb-b70d-79227a24776c-18,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-18/,Dysidea fragilis,Eponge mie de pain mouillée,,https://biolit.fr/wp-content/uploads/2023/07/Dysidea fragilis_1.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33376,observation-26ac2801-a270-4deb-b70d-79227a24776c-19,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 1_7.PNG,,FALSE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33378,observation-26ac2801-a270-4deb-b70d-79227a24776c-20,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_23.PNG,,FALSE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33380,observation-26ac2801-a270-4deb-b70d-79227a24776c-21,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-21/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Eriphia verrucosa_9.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33382,observation-26ac2801-a270-4deb-b70d-79227a24776c-22,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-22/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/Gakathea squamifera.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33384,observation-26ac2801-a270-4deb-b70d-79227a24776c-23,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-23/,Gari depressa,Psammobie déprimée,,https://biolit.fr/wp-content/uploads/2023/07/Gari depressa_8.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33386,observation-26ac2801-a270-4deb-b70d-79227a24776c-24,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-24/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/Gobie sp_3.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33387,observation-26ac2801-a270-4deb-b70d-79227a24776c-25,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-25/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/Haliotis tuberculata_7.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33389,observation-26ac2801-a270-4deb-b70d-79227a24776c-26,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-26/,Isozoanthus sulcatus,Anémone chocolat,,https://biolit.fr/wp-content/uploads/2023/07/Isozoanthus sulcatus_0.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33391,observation-26ac2801-a270-4deb-b70d-79227a24776c-27,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lamellaria sp_1.PNG,,FALSE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33393,observation-26ac2801-a270-4deb-b70d-79227a24776c-28,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-28/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_5.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33395,observation-26ac2801-a270-4deb-b70d-79227a24776c-29,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/Macropodia sp 1.PNG,,FALSE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33397,observation-26ac2801-a270-4deb-b70d-79227a24776c-30,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-30/,Macropodia deflexa,Macropode à rostre plongeant,,https://biolit.fr/wp-content/uploads/2023/07/macropodia sp.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33398,observation-26ac2801-a270-4deb-b70d-79227a24776c-31,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-31/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_19.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33400,observation-26ac2801-a270-4deb-b70d-79227a24776c-32,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-32/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_12.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33402,observation-26ac2801-a270-4deb-b70d-79227a24776c-33,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-33/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_11.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33404,observation-26ac2801-a270-4deb-b70d-79227a24776c-34,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-34/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis lombriciformis_0.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33406,observation-26ac2801-a270-4deb-b70d-79227a24776c-35,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-35/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/Ophiotrix fragilis_4.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33408,observation-26ac2801-a270-4deb-b70d-79227a24776c-36,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-36/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/Phalacrocorax carbo_0.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33410,observation-26ac2801-a270-4deb-b70d-79227a24776c-37,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-37/,Pilumnus hirtellus,Pilumne hirsute,,https://biolit.fr/wp-content/uploads/2023/07/Pilumnus hirtellus_4.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33412,observation-26ac2801-a270-4deb-b70d-79227a24776c-38,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-38/,Pisa armata,Pise armée,,https://biolit.fr/wp-content/uploads/2023/07/Pisa armata_0.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33414,observation-26ac2801-a270-4deb-b70d-79227a24776c-39,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-39/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/Pisidia longicornis_3.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33416,observation-26ac2801-a270-4deb-b70d-79227a24776c-40,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-40/,,,,https://biolit.fr/wp-content/uploads/2023/07/Polychète sp_0.PNG,,FALSE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33418,observation-26ac2801-a270-4deb-b70d-79227a24776c-41,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-41/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_18.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33420,observation-26ac2801-a270-4deb-b70d-79227a24776c-42,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-42/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_16.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33422,observation-26ac2801-a270-4deb-b70d-79227a24776c-43,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-43/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pycnogonide sp_0.PNG,,FALSE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33424,observation-26ac2801-a270-4deb-b70d-79227a24776c-44,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-44/,Spurilla neapolitana,Limace à bigoudis,,https://biolit.fr/wp-content/uploads/2023/07/Spurilla neapolitana_1.PNG,,FALSE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33426,observation-26ac2801-a270-4deb-b70d-79227a24776c-45,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-45/,Tethya citrina,Orange de mer de Manche Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Tethya citrina.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33428,observation-26ac2801-a270-4deb-b70d-79227a24776c-46,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-46/,Trivia arctica,Grain de café rose,,https://biolit.fr/wp-content/uploads/2023/07/Trivia arctica_0.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33430,observation-26ac2801-a270-4deb-b70d-79227a24776c-47,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-47/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa_3.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33432,observation-26ac2801-a270-4deb-b70d-79227a24776c-48,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-48/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ver sp_1.PNG,,FALSE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33434,observation-26ac2801-a270-4deb-b70d-79227a24776c-49,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-49/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_16.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33436,observation-26ac2801-a270-4deb-b70d-79227a24776c-50,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-50/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_14.PNG,,TRUE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33438,observation-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c/,Acteon tornatilis,Actéon enroulé,,https://biolit.fr/wp-content/uploads/2023/07/Acteon tornalitis_0.PNG,,TRUE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33440,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-2,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Arcopagia crassa_1.PNG,,FALSE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33442,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-3,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-3/,Barnea candida,Pholade blanche,,https://biolit.fr/wp-content/uploads/2023/07/Barnea candida_1.PNG,,TRUE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33444,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-4,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-4/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/Buccinum undatum.PNG,,TRUE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33446,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-5,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-5/,Callista chione,Vernis,,https://biolit.fr/wp-content/uploads/2023/07/Callista chione.PNG,,TRUE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33448,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-6,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-6/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_3.PNG,,TRUE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33450,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-7,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-7/,Dosinia exoleta,Dosinie radiée,,https://biolit.fr/wp-content/uploads/2023/07/Dosinia exoleta_1.PNG,,TRUE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33452,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-8,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-8/,Diodora graeca,Fissurelle,,https://biolit.fr/wp-content/uploads/2023/07/Fissurella graeca.PNG,,TRUE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33454,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-9,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gastéropode du littoral.PNG,,FALSE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33456,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-10,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-10/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/2023/07/Mactra stultorum_0.PNG,,TRUE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33458,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-11,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-11/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_18.PNG,,TRUE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33460,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-12,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-12/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia_4.PNG,,TRUE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33462,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-13,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-13/,Pholas dactylus,Pholade,,https://biolit.fr/wp-content/uploads/2023/07/Pholas dactyla.PNG,,TRUE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33464,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-14,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ponte de polychète.PNG,,FALSE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33466,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-15,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-15/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes decussatus_0.PNG,,TRUE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33468,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-16,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-16/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/Sabellaria alveolata_3.PNG,,TRUE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33470,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-17,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/Tellina incarnata.PNG,,FALSE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33472,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-18,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-18/,Venerupis corrugata,Palourde-poulette,,https://biolit.fr/wp-content/uploads/2023/07/Venerupis aurea_1.PNG,,TRUE, +N1,58754,sortie-78f2555d-7386-4859-a2cd-01e7053c7608,https://biolit.fr/sorties/sortie-78f2555d-7386-4859-a2cd-01e7053c7608/,LABELBLEU,,10/03/2021,10.0000000,12.0000000,42.53521500000,3.064924000000,,"Anse de Porteils, Argeles sur Mer",33474,observation-78f2555d-7386-4859-a2cd-01e7053c7608,https://biolit.fr/observations/observation-78f2555d-7386-4859-a2cd-01e7053c7608/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1321-rotated.jpg,,TRUE, +N1,58754,sortie-78f2555d-7386-4859-a2cd-01e7053c7608,https://biolit.fr/sorties/sortie-78f2555d-7386-4859-a2cd-01e7053c7608/,LABELBLEU,,10/03/2021,10.0000000,12.0000000,42.53521500000,3.064924000000,,"Anse de Porteils, Argeles sur Mer",33476,observation-78f2555d-7386-4859-a2cd-01e7053c7608-2,https://biolit.fr/observations/observation-78f2555d-7386-4859-a2cd-01e7053c7608-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1323_0.JPG,,FALSE, +N1,58754,sortie-78f2555d-7386-4859-a2cd-01e7053c7608,https://biolit.fr/sorties/sortie-78f2555d-7386-4859-a2cd-01e7053c7608/,LABELBLEU,,10/03/2021,10.0000000,12.0000000,42.53521500000,3.064924000000,,"Anse de Porteils, Argeles sur Mer",33478,observation-78f2555d-7386-4859-a2cd-01e7053c7608-3,https://biolit.fr/observations/observation-78f2555d-7386-4859-a2cd-01e7053c7608-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1328-rotated.jpg,,FALSE, +N1,58754,sortie-78f2555d-7386-4859-a2cd-01e7053c7608,https://biolit.fr/sorties/sortie-78f2555d-7386-4859-a2cd-01e7053c7608/,LABELBLEU,,10/03/2021,10.0000000,12.0000000,42.53521500000,3.064924000000,,"Anse de Porteils, Argeles sur Mer",33480,observation-78f2555d-7386-4859-a2cd-01e7053c7608-4,https://biolit.fr/observations/observation-78f2555d-7386-4859-a2cd-01e7053c7608-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1319_0-rotated.jpg,,FALSE, +N1,58754,sortie-78f2555d-7386-4859-a2cd-01e7053c7608,https://biolit.fr/sorties/sortie-78f2555d-7386-4859-a2cd-01e7053c7608/,LABELBLEU,,10/03/2021,10.0000000,12.0000000,42.53521500000,3.064924000000,,"Anse de Porteils, Argeles sur Mer",33482,observation-78f2555d-7386-4859-a2cd-01e7053c7608-5,https://biolit.fr/observations/observation-78f2555d-7386-4859-a2cd-01e7053c7608-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1320-rotated.jpg,,FALSE, +N1,58754,sortie-78f2555d-7386-4859-a2cd-01e7053c7608,https://biolit.fr/sorties/sortie-78f2555d-7386-4859-a2cd-01e7053c7608/,LABELBLEU,,10/03/2021,10.0000000,12.0000000,42.53521500000,3.064924000000,,"Anse de Porteils, Argeles sur Mer",33484,observation-78f2555d-7386-4859-a2cd-01e7053c7608-6,https://biolit.fr/observations/observation-78f2555d-7386-4859-a2cd-01e7053c7608-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211003_111044-scaled.jpg,,FALSE, +N1,58755,sortie-cf49eeeb-f919-4e52-990e-f9de07945b1c,https://biolit.fr/sorties/sortie-cf49eeeb-f919-4e52-990e-f9de07945b1c/,edith-charrier,,9/22/2021 0:00,10.0000000,11.0000000,43.284268000000,5.316341000000,Planète Mer,Plage de Saint-Estève (île du Frioul),33486,observation-cf49eeeb-f919-4e52-990e-f9de07945b1c,https://biolit.fr/observations/observation-cf49eeeb-f919-4e52-990e-f9de07945b1c/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20210922_102437-scaled.jpg,,TRUE, +N1,58755,sortie-cf49eeeb-f919-4e52-990e-f9de07945b1c,https://biolit.fr/sorties/sortie-cf49eeeb-f919-4e52-990e-f9de07945b1c/,edith-charrier,,9/22/2021 0:00,10.0000000,11.0000000,43.284268000000,5.316341000000,Planète Mer,Plage de Saint-Estève (île du Frioul),33488,observation-cf49eeeb-f919-4e52-990e-f9de07945b1c-2,https://biolit.fr/observations/observation-cf49eeeb-f919-4e52-990e-f9de07945b1c-2/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20210922_102518-scaled.jpg,,TRUE, +N1,58755,sortie-cf49eeeb-f919-4e52-990e-f9de07945b1c,https://biolit.fr/sorties/sortie-cf49eeeb-f919-4e52-990e-f9de07945b1c/,edith-charrier,,9/22/2021 0:00,10.0000000,11.0000000,43.284268000000,5.316341000000,Planète Mer,Plage de Saint-Estève (île du Frioul),33490,observation-cf49eeeb-f919-4e52-990e-f9de07945b1c-3,https://biolit.fr/observations/observation-cf49eeeb-f919-4e52-990e-f9de07945b1c-3/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20210922_102521-scaled.jpg,,TRUE, +N1,58755,sortie-cf49eeeb-f919-4e52-990e-f9de07945b1c,https://biolit.fr/sorties/sortie-cf49eeeb-f919-4e52-990e-f9de07945b1c/,edith-charrier,,9/22/2021 0:00,10.0000000,11.0000000,43.284268000000,5.316341000000,Planète Mer,Plage de Saint-Estève (île du Frioul),33492,observation-cf49eeeb-f919-4e52-990e-f9de07945b1c-4,https://biolit.fr/observations/observation-cf49eeeb-f919-4e52-990e-f9de07945b1c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210922_102645-scaled.jpg,,FALSE, +N1,58755,sortie-cf49eeeb-f919-4e52-990e-f9de07945b1c,https://biolit.fr/sorties/sortie-cf49eeeb-f919-4e52-990e-f9de07945b1c/,edith-charrier,,9/22/2021 0:00,10.0000000,11.0000000,43.284268000000,5.316341000000,Planète Mer,Plage de Saint-Estève (île du Frioul),33494,observation-cf49eeeb-f919-4e52-990e-f9de07945b1c-5,https://biolit.fr/observations/observation-cf49eeeb-f919-4e52-990e-f9de07945b1c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210922_102722-scaled.jpg,,FALSE, +N1,58755,sortie-cf49eeeb-f919-4e52-990e-f9de07945b1c,https://biolit.fr/sorties/sortie-cf49eeeb-f919-4e52-990e-f9de07945b1c/,edith-charrier,,9/22/2021 0:00,10.0000000,11.0000000,43.284268000000,5.316341000000,Planète Mer,Plage de Saint-Estève (île du Frioul),33496,observation-cf49eeeb-f919-4e52-990e-f9de07945b1c-6,https://biolit.fr/observations/observation-cf49eeeb-f919-4e52-990e-f9de07945b1c-6/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/20210922_102751-scaled.jpg,,TRUE, +N1,58755,sortie-cf49eeeb-f919-4e52-990e-f9de07945b1c,https://biolit.fr/sorties/sortie-cf49eeeb-f919-4e52-990e-f9de07945b1c/,edith-charrier,,9/22/2021 0:00,10.0000000,11.0000000,43.284268000000,5.316341000000,Planète Mer,Plage de Saint-Estève (île du Frioul),33498,observation-cf49eeeb-f919-4e52-990e-f9de07945b1c-7,https://biolit.fr/observations/observation-cf49eeeb-f919-4e52-990e-f9de07945b1c-7/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20210922_103033-scaled.jpg,,TRUE, +N1,58755,sortie-cf49eeeb-f919-4e52-990e-f9de07945b1c,https://biolit.fr/sorties/sortie-cf49eeeb-f919-4e52-990e-f9de07945b1c/,edith-charrier,,9/22/2021 0:00,10.0000000,11.0000000,43.284268000000,5.316341000000,Planète Mer,Plage de Saint-Estève (île du Frioul),33500,observation-cf49eeeb-f919-4e52-990e-f9de07945b1c-8,https://biolit.fr/observations/observation-cf49eeeb-f919-4e52-990e-f9de07945b1c-8/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20210922_103055-scaled.jpg,,TRUE, +N1,58756,sortie-9333368f-abde-44d7-8175-11fca0646e69,https://biolit.fr/sorties/sortie-9333368f-abde-44d7-8175-11fca0646e69/,Dbriard,,9/22/2021 0:00,13.0000000,16.0000000,43.325736000000,5.05287900000,,cap couronne,33502,observation-9333368f-abde-44d7-8175-11fca0646e69,https://biolit.fr/observations/observation-9333368f-abde-44d7-8175-11fca0646e69/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20210923_205816.jpg,,TRUE, +N1,58756,sortie-9333368f-abde-44d7-8175-11fca0646e69,https://biolit.fr/sorties/sortie-9333368f-abde-44d7-8175-11fca0646e69/,Dbriard,,9/22/2021 0:00,13.0000000,16.0000000,43.325736000000,5.05287900000,,cap couronne,33504,observation-9333368f-abde-44d7-8175-11fca0646e69-2,https://biolit.fr/observations/observation-9333368f-abde-44d7-8175-11fca0646e69-2/,Larus michahellis,Goéland leucophée,,https://biolit.fr/wp-content/uploads/2023/07/20210922_141222-scaled.jpg,,TRUE, +N1,58756,sortie-9333368f-abde-44d7-8175-11fca0646e69,https://biolit.fr/sorties/sortie-9333368f-abde-44d7-8175-11fca0646e69/,Dbriard,,9/22/2021 0:00,13.0000000,16.0000000,43.325736000000,5.05287900000,,cap couronne,33506,observation-9333368f-abde-44d7-8175-11fca0646e69-3,https://biolit.fr/observations/observation-9333368f-abde-44d7-8175-11fca0646e69-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20210923_210008-scaled.jpg,,TRUE, +N1,58756,sortie-9333368f-abde-44d7-8175-11fca0646e69,https://biolit.fr/sorties/sortie-9333368f-abde-44d7-8175-11fca0646e69/,Dbriard,,9/22/2021 0:00,13.0000000,16.0000000,43.325736000000,5.05287900000,,cap couronne,33508,observation-9333368f-abde-44d7-8175-11fca0646e69-4,https://biolit.fr/observations/observation-9333368f-abde-44d7-8175-11fca0646e69-4/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/20210922_133643-scaled.jpg,,TRUE, +N1,58756,sortie-9333368f-abde-44d7-8175-11fca0646e69,https://biolit.fr/sorties/sortie-9333368f-abde-44d7-8175-11fca0646e69/,Dbriard,,9/22/2021 0:00,13.0000000,16.0000000,43.325736000000,5.05287900000,,cap couronne,33510,observation-9333368f-abde-44d7-8175-11fca0646e69-5,https://biolit.fr/observations/observation-9333368f-abde-44d7-8175-11fca0646e69-5/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/20210922_154800.jpg,,TRUE, +N1,58757,sortie-393f119b-b493-4afb-9c59-234501c3d45f,https://biolit.fr/sorties/sortie-393f119b-b493-4afb-9c59-234501c3d45f/,Valérie Eurin,,9/25/2021 0:00,18.0000000,20.0000000,49.378256000000,0.087155000000,,"Plage des roches noires, Trouville",33512,observation-393f119b-b493-4afb-9c59-234501c3d45f,https://biolit.fr/observations/observation-393f119b-b493-4afb-9c59-234501c3d45f/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_1772 redim-scaled.jpg,,TRUE, +N1,58757,sortie-393f119b-b493-4afb-9c59-234501c3d45f,https://biolit.fr/sorties/sortie-393f119b-b493-4afb-9c59-234501c3d45f/,Valérie Eurin,,9/25/2021 0:00,18.0000000,20.0000000,49.378256000000,0.087155000000,,"Plage des roches noires, Trouville",33514,observation-393f119b-b493-4afb-9c59-234501c3d45f-2,https://biolit.fr/observations/observation-393f119b-b493-4afb-9c59-234501c3d45f-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1780-scaled.jpg,,TRUE, +N1,58757,sortie-393f119b-b493-4afb-9c59-234501c3d45f,https://biolit.fr/sorties/sortie-393f119b-b493-4afb-9c59-234501c3d45f/,Valérie Eurin,,9/25/2021 0:00,18.0000000,20.0000000,49.378256000000,0.087155000000,,"Plage des roches noires, Trouville",33516,observation-393f119b-b493-4afb-9c59-234501c3d45f-3,https://biolit.fr/observations/observation-393f119b-b493-4afb-9c59-234501c3d45f-3/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1783 redim-scaled.jpg,,TRUE, +N1,58757,sortie-393f119b-b493-4afb-9c59-234501c3d45f,https://biolit.fr/sorties/sortie-393f119b-b493-4afb-9c59-234501c3d45f/,Valérie Eurin,,9/25/2021 0:00,18.0000000,20.0000000,49.378256000000,0.087155000000,,"Plage des roches noires, Trouville",33518,observation-393f119b-b493-4afb-9c59-234501c3d45f-4,https://biolit.fr/observations/observation-393f119b-b493-4afb-9c59-234501c3d45f-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1767_0-scaled.jpg,,FALSE, +N1,58757,sortie-393f119b-b493-4afb-9c59-234501c3d45f,https://biolit.fr/sorties/sortie-393f119b-b493-4afb-9c59-234501c3d45f/,Valérie Eurin,,9/25/2021 0:00,18.0000000,20.0000000,49.378256000000,0.087155000000,,"Plage des roches noires, Trouville",33520,observation-393f119b-b493-4afb-9c59-234501c3d45f-5,https://biolit.fr/observations/observation-393f119b-b493-4afb-9c59-234501c3d45f-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1768_0.JPG,,FALSE, +N1,58757,sortie-393f119b-b493-4afb-9c59-234501c3d45f,https://biolit.fr/sorties/sortie-393f119b-b493-4afb-9c59-234501c3d45f/,Valérie Eurin,,9/25/2021 0:00,18.0000000,20.0000000,49.378256000000,0.087155000000,,"Plage des roches noires, Trouville",33522,observation-393f119b-b493-4afb-9c59-234501c3d45f-6,https://biolit.fr/observations/observation-393f119b-b493-4afb-9c59-234501c3d45f-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1769-scaled.jpg,,FALSE, +N1,58758,sortie-d5f284e4-1023-49e5-b0fa-0bed2747c46c,https://biolit.fr/sorties/sortie-d5f284e4-1023-49e5-b0fa-0bed2747c46c/,Valérie Eurin,,9/22/2021 0:00,19.0000000,20.0000000,49.424738000000,0.213299000000,,Honfleur plage du Butin,33524,observation-d5f284e4-1023-49e5-b0fa-0bed2747c46c,https://biolit.fr/observations/observation-d5f284e4-1023-49e5-b0fa-0bed2747c46c/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1743redim.jpg,,TRUE, +N1,58758,sortie-d5f284e4-1023-49e5-b0fa-0bed2747c46c,https://biolit.fr/sorties/sortie-d5f284e4-1023-49e5-b0fa-0bed2747c46c/,Valérie Eurin,,9/22/2021 0:00,19.0000000,20.0000000,49.424738000000,0.213299000000,,Honfleur plage du Butin,33526,observation-d5f284e4-1023-49e5-b0fa-0bed2747c46c-2,https://biolit.fr/observations/observation-d5f284e4-1023-49e5-b0fa-0bed2747c46c-2/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1740 redim.JPG,,TRUE, +N1,58758,sortie-d5f284e4-1023-49e5-b0fa-0bed2747c46c,https://biolit.fr/sorties/sortie-d5f284e4-1023-49e5-b0fa-0bed2747c46c/,Valérie Eurin,,9/22/2021 0:00,19.0000000,20.0000000,49.424738000000,0.213299000000,,Honfleur plage du Butin,33528,observation-d5f284e4-1023-49e5-b0fa-0bed2747c46c-3,https://biolit.fr/observations/observation-d5f284e4-1023-49e5-b0fa-0bed2747c46c-3/,Cygnus olor,Cygne tuberculé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1739 redim-scaled.jpg,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33530,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona fascicularis_4.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33532,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-2,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_15.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33534,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-3,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-3/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragaceae_5.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33536,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-4,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Anémone sp_0.PNG,,FALSE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33538,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-5,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-5/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_14.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33540,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-6,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-6/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_7.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33542,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-7,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-7/,Aplidium elegans,Fraise de mer,,https://biolit.fr/wp-content/uploads/2023/07/Aplidium elegans_0.PNG,,FALSE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33544,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-8,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie solitaire sp.PNG,,FALSE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33546,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-9,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-9/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_12.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33548,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-10,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-10/,Botrylloides spp. (leachii violaceus diegensis),Botrylles,,https://biolit.fr/wp-content/uploads/2023/07/Botrylloides spp_2.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33550,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-11,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-11/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_12.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33552,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-12,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-12/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_16.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33554,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-13,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-13/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_10.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33556,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-14,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-14/,Doris verrucosa,Doris verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/Doris verrucosa_5.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33558,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-15,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_22.PNG,,FALSE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33560,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-16,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp1_3.PNG,,FALSE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33562,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-17,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-17/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp2_0.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33564,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-18,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-18/,Gari depressa,Psammobie déprimée,,https://biolit.fr/wp-content/uploads/2023/07/Gari depressa_7.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33566,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-19,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-19/,Hiatella rugosa,Hiatelle rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/Hiatella rugosa.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33568,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-20,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-20/,Pleurobranchus membranaceus,Pleurobranche membraneux,,https://biolit.fr/wp-content/uploads/2023/07/Lamellaria sp_0.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33570,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-21,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-21/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/Lipophrys pholis_1.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33572,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-22,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-22/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_17.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33574,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-23,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-23/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_11.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33576,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-24,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-24/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_14.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33578,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-25,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-25/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_6.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33580,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-26,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-26/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_15.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33582,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-27,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-27/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes philippinarum pe.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33584,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-28,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/Spurilla neapolitana_0.PNG,,FALSE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33586,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-29,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-29/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/Urticina felina_2.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33588,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-30,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ver sp_0.PNG,,FALSE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33590,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-31,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-31/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_13.PNG,,TRUE, +N1,58760,sortie-591276fd-e661-40cd-96b0-90fe3e65a7f2,https://biolit.fr/sorties/sortie-591276fd-e661-40cd-96b0-90fe3e65a7f2/,S DENIS,,9/20/2021 0:00,14.0000000,18.0000000,46.344011000000,-1.469696000000,,LA TRANCHE SUR MER,33592,observation-591276fd-e661-40cd-96b0-90fe3e65a7f2,https://biolit.fr/observations/observation-591276fd-e661-40cd-96b0-90fe3e65a7f2/,Calidris alba,Bécasseau sanderling,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0630[1]-scaled.jpg,,TRUE, +N1,58761,sortie-e7a24294-ab23-4f0a-8263-739a6aca5b98,https://biolit.fr/sorties/sortie-e7a24294-ab23-4f0a-8263-739a6aca5b98/,S DENIS,,9/20/2021 0:00,14.0000000,18.0000000,46.344307000000,-1.469867000000,,LA TRANCHE SUR MER,33594,observation-e7a24294-ab23-4f0a-8263-739a6aca5b98,https://biolit.fr/observations/observation-e7a24294-ab23-4f0a-8263-739a6aca5b98/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0633[1]-scaled.jpg,,TRUE, +N1,58762,sortie-2ed3da6e-b6ad-43a9-90f5-445c5d040524,https://biolit.fr/sorties/sortie-2ed3da6e-b6ad-43a9-90f5-445c5d040524/,S DENIS,,9/20/2021 0:00,14.0000000,18.0000000,46.34408700000,-1.469964000000,,LA TRANCHE SUR MER,33596,observation-2ed3da6e-b6ad-43a9-90f5-445c5d040524,https://biolit.fr/observations/observation-2ed3da6e-b6ad-43a9-90f5-445c5d040524/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0629[1]-scaled.jpg,,FALSE, +N1,58763,sortie-684b1f68-1943-4cef-b23d-61cae1ab0611,https://biolit.fr/sorties/sortie-684b1f68-1943-4cef-b23d-61cae1ab0611/,S DENIS,,9/20/2021 0:00,9.0000000,13.0000000,46.340752000000,-1.343096000000,,RESERVE NATURELLE CASSE DE LA BELLE HENRIETTE,,,,,,,,,, +N1,58764,sortie-a63ef4d9-4d91-4b66-802d-9bcb591824ec,https://biolit.fr/sorties/sortie-a63ef4d9-4d91-4b66-802d-9bcb591824ec/,S DENIS,,9/20/2021 0:00,14.0000000,18.0000000,46.34122600000,-1.34318100000,,RESERVE NATURELLE CASSE DE LA BELLE HENRIETTE,33600,observation-a63ef4d9-4d91-4b66-802d-9bcb591824ec,https://biolit.fr/observations/observation-a63ef4d9-4d91-4b66-802d-9bcb591824ec/,Tripolium pannonicum,Aster maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0614[1]-scaled.jpg,,TRUE, +N1,58765,sortie-f3766fa7-dcff-4b9f-a1e7-8d4f669258fd,https://biolit.fr/sorties/sortie-f3766fa7-dcff-4b9f-a1e7-8d4f669258fd/,S DENIS,,9/20/2021 0:00,9.0000000,13.0000000,46.340811000000,-1.343010000000,,RESERVE NATURELLE CASSE DE LA BELLE HENRIETTE,33602,observation-f3766fa7-dcff-4b9f-a1e7-8d4f669258fd,https://biolit.fr/observations/observation-f3766fa7-dcff-4b9f-a1e7-8d4f669258fd/,Leymus arenarius,Élyme des sables,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0626[1]-scaled.jpg,,TRUE, +N1,58766,sortie-5e9a79ce-582b-4824-bd9c-d65e53792bde,https://biolit.fr/sorties/sortie-5e9a79ce-582b-4824-bd9c-d65e53792bde/,S DENIS,,9/20/2021 0:00,9.0000000,13.0000000,46.340888000000,-1.343482000000,,RESERVE NATURELLE CASSE DE LA BELLE HENRIETTE,,,,,,,,,, +N1,58767,sortie-aeefe58d-c796-4b11-845a-373fe2b5dd45,https://biolit.fr/sorties/sortie-aeefe58d-c796-4b11-845a-373fe2b5dd45/,S DENIS,,9/20/2021 0:00,9.0000000,13.0000000,46.33792500000,-1.338504000000,,RESERVE NATURELLE CASSE DE LA BELLE HENRIETTE,33606,observation-aeefe58d-c796-4b11-845a-373fe2b5dd45,https://biolit.fr/observations/observation-aeefe58d-c796-4b11-845a-373fe2b5dd45/,Tripolium pannonicum,Aster maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0615[1]-scaled.jpg,,TRUE, +N1,58768,sortie-59ebb1b0-4e88-4c0c-885e-6d1c927ddda7,https://biolit.fr/sorties/sortie-59ebb1b0-4e88-4c0c-885e-6d1c927ddda7/,S DENIS,,9/20/2021 0:00,9.0000000,13.0000000,46.339922000000,-1.343525000000,,RESERVE NATURELLE CASSE DE LA BELLE HENRIETTE,,,,,,,,,, +N1,58769,sortie-509e5329-f516-464a-8dd9-e885b0af0e6a,https://biolit.fr/sorties/sortie-509e5329-f516-464a-8dd9-e885b0af0e6a/,S DENIS,,9/20/2021 0:00,9.0000000,13.0000000,46.338418000000,-1.339153000000,,RESERVE NATURELLE CASSE DE LA BELLE HENRIETTE,33610,observation-509e5329-f516-464a-8dd9-e885b0af0e6a,https://biolit.fr/observations/observation-509e5329-f516-464a-8dd9-e885b0af0e6a/,Salicornia spp.,Salicorne,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0606[1]-scaled.jpg,,TRUE, +N1,58770,sortie-ac11021e-bce5-411d-b814-6f3e6d512c90,https://biolit.fr/sorties/sortie-ac11021e-bce5-411d-b814-6f3e6d512c90/,S DENIS,,9/20/2021 0:00,9.0000000,13.0000000,46.33757000000,-1.337474000000,,RESERVE NATURELLE CASSE DE LA BELLE HENRIETTE,,,,,,,,,, +N1,58771,sortie-7041d2c7-7e7d-46e8-9c8d-ea5254abee65,https://biolit.fr/sorties/sortie-7041d2c7-7e7d-46e8-9c8d-ea5254abee65/,S DENIS,,9/20/2021 0:00,9.0:15,13.0:15,46.33713100000,-1.337216000000,,RESERVE NATURELLE CASSE DE LA BELLE HENRIETTE,,,,,,,,,, +N1,58772,sortie-55b414da-9e53-461a-8506-0834ee8cfab2,https://biolit.fr/sorties/sortie-55b414da-9e53-461a-8506-0834ee8cfab2/,S DENIS,,9/20/2021 0:00,9.0000000,13.0000000,46.336397000000,-1.33614300000,,RESERVE NATURELLE CASSE DE LA BELLE HENRIETTE,,,,,,,,,, +N1,58773,sortie-8df2efaf-207d-4d4d-ae6e-85064013eb4f,https://biolit.fr/sorties/sortie-8df2efaf-207d-4d4d-ae6e-85064013eb4f/,S DENIS,,9/20/2021 0:00,9.0000000,13.0000000,46.333285000000,-1.331508000000,,RESERVE NATURELLE CASSE DE LA BELLE HENRIETTE,33618,observation-8df2efaf-207d-4d4d-ae6e-85064013eb4f,https://biolit.fr/observations/observation-8df2efaf-207d-4d4d-ae6e-85064013eb4f/,Phragmites australis,Roseau,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0585[1]-scaled.jpg,,TRUE, +N1,58774,sortie-56d39597-3469-4895-ac34-2625ecb37bf7,https://biolit.fr/sorties/sortie-56d39597-3469-4895-ac34-2625ecb37bf7/,S DENIS,,9/24/2021 0:00,11.0000000,13.0000000,46.332864000000,-1.333096000000,,RESERVE NATURELLE CASSE DE LA BELLE HENRIETTE,33620,observation-56d39597-3469-4895-ac34-2625ecb37bf7,https://biolit.fr/observations/observation-56d39597-3469-4895-ac34-2625ecb37bf7/,Centaurea aspera,Centaurée rude,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0592[1]-scaled.jpg,,TRUE, +N1,58775,sortie-828478e0-fe6a-4b1d-8552-f3e0dfd4b4fa,https://biolit.fr/sorties/sortie-828478e0-fe6a-4b1d-8552-f3e0dfd4b4fa/,S DENIS,,9/24/2021 0:00,10.0000000,12.0000000,46.331644000000,-1.335757000000,,RESERVE NATURELLE CASSE DE LA BELLE HENRIETTE,,,,,,,,,, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33624,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita_6.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33626,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-2,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_14.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33628,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-3,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-3/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacaea.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33630,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-4,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_13.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33632,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-5,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-5/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/Anthopleura balli.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33634,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-6,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-6/,Lissoclinum weigelei,Ascidie coloniale beige,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie coloniale sp.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33636,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-7,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-7/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/asterias rubens_1.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33638,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-8,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-8/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_19.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33640,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-9,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/aucune idée_1.PNG,,FALSE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33642,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-10,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-10/,Berthella plumula,Berthelle plume,,https://biolit.fr/wp-content/uploads/2023/07/Berthella plumula.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33644,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-11,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-11/,Botrylloides spp. (leachii violaceus diegensis),Botrylles,,https://biolit.fr/wp-content/uploads/2023/07/botrylloides sp_1.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33646,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-12,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-12/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_9.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33648,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-13,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-13/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_9.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33650,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-14,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crassadoma pusio.PNG,,FALSE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33652,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-15,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge mie de pain.PNG,,FALSE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33654,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-16,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp pe_0.PNG,,FALSE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33656,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-17,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_21.PNG,,FALSE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33658,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-18,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp1_2.PNG,,FALSE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33660,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-19,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-19/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Eriphia verrucosa_8.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33662,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-20,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-20/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/Gobie sp_1.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33664,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-21,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-21/,Isozoanthus sulcatus,Anémone chocolat,,https://biolit.fr/wp-content/uploads/2023/07/Isozoanthus sulcatus.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33666,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-22,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lamellaria sp.PNG,,FALSE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33668,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-23,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-23/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_4.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33670,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-24,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-24/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_16.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33672,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-25,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-25/,Tritia incrassata,Nasse épaisse,,https://biolit.fr/wp-content/uploads/2023/07/Nassarius incrassatus_0.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33674,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-26,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-26/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_10.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33676,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-27,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-27/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_13.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33678,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-28,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-28/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/Pholacrocorax crabo.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33680,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-29,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-29/,Pilumnus hirtellus,Pilumne hirsute,,https://biolit.fr/wp-content/uploads/2023/07/Pilumnus hirtellus_3.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33682,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-30,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-30/,Spurilla neapolitana,Limace à bigoudis,,https://biolit.fr/wp-content/uploads/2023/07/Ponte de spurilla neapolitana.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33684,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-31,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-31/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_17.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33686,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-32,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-32/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_14.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33688,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-33,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-33/,Cilysta elegans,Sagartie élégante,,https://biolit.fr/wp-content/uploads/2023/07/Sagartia elegans.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33690,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-34,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-34/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/2023/07/Salaria pavo_1.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33692,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-35,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-35/,Serpula vermicularis,Serpule,,https://biolit.fr/wp-content/uploads/2023/07/Serpule sp.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33694,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-36,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-36/,,,,https://biolit.fr/wp-content/uploads/2023/07/siphon de bivalve sp.PNG,,FALSE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33696,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-37,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-37/,Spurilla neapolitana,Limace à bigoudis,,https://biolit.fr/wp-content/uploads/2023/07/Spurilla neapolitana-scaled.jpg,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33697,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-38,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-38/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/Urticina felina_1.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33699,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-39,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-39/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Watersipora subatra_3.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33701,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-40,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-40/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_15.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33703,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-41,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-41/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_12.PNG,,TRUE, +N1,58777,sortie-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba,https://biolit.fr/sorties/sortie-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba/,Marine,,9/18/2021 0:00,9.0:25,10.0:25,43.214937000000,5.34298800000,Planète Mer,Anse de la Maronaise,33705,observation-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba,https://biolit.fr/observations/observation-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210918_095525-scaled.jpg,,TRUE, +N1,58777,sortie-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba,https://biolit.fr/sorties/sortie-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba/,Marine,,9/18/2021 0:00,9.0:25,10.0:25,43.214937000000,5.34298800000,Planète Mer,Anse de la Maronaise,33709,observation-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba-3,https://biolit.fr/observations/observation-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba-3/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210918_094648-scaled.jpg,,TRUE, +N1,58777,sortie-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba,https://biolit.fr/sorties/sortie-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba/,Marine,,9/18/2021 0:00,9.0:25,10.0:25,43.214937000000,5.34298800000,Planète Mer,Anse de la Maronaise,33711,observation-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba-4,https://biolit.fr/observations/observation-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba-4/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210918_104030-scaled.jpg,,TRUE, +N1,58777,sortie-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba,https://biolit.fr/sorties/sortie-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba/,Marine,,9/18/2021 0:00,9.0:25,10.0:25,43.214937000000,5.34298800000,Planète Mer,Anse de la Maronaise,33713,observation-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba-5,https://biolit.fr/observations/observation-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210918_094710-scaled.jpg,,FALSE, +N1,58777,sortie-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba,https://biolit.fr/sorties/sortie-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba/,Marine,,9/18/2021 0:00,9.0:25,10.0:25,43.214937000000,5.34298800000,Planète Mer,Anse de la Maronaise,33715,observation-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba-6,https://biolit.fr/observations/observation-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba-6/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210918_095501-scaled.jpg,,TRUE, +N1,58778,sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3,https://biolit.fr/sorties/sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3/,do,,9/18/2021 0:00,9.0000000,12.0000000,43.214929000000,5.342935000000,Planète Mer,"marseille, Anse de la Maronaise",33727,observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-6,https://biolit.fr/observations/observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-6/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5562-rotated.jpg,,TRUE, +N1,58778,sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3,https://biolit.fr/sorties/sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3/,do,,9/18/2021 0:00,9.0000000,12.0000000,43.214929000000,5.342935000000,Planète Mer,"marseille, Anse de la Maronaise",33729,observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-7,https://biolit.fr/observations/observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5563-scaled.jpg,,FALSE, +N1,58778,sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3,https://biolit.fr/sorties/sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3/,do,,9/18/2021 0:00,9.0000000,12.0000000,43.214929000000,5.342935000000,Planète Mer,"marseille, Anse de la Maronaise",33731,observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-8,https://biolit.fr/observations/observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5564-scaled.jpg,,FALSE, +N1,58778,sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3,https://biolit.fr/sorties/sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3/,do,,9/18/2021 0:00,9.0000000,12.0000000,43.214929000000,5.342935000000,Planète Mer,"marseille, Anse de la Maronaise",33733,observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-9,https://biolit.fr/observations/observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5566-scaled.jpg,,FALSE, +N1,58778,sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3,https://biolit.fr/sorties/sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3/,do,,9/18/2021 0:00,9.0000000,12.0000000,43.214929000000,5.342935000000,Planète Mer,"marseille, Anse de la Maronaise",33735,observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-10,https://biolit.fr/observations/observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5567-scaled.jpg,,FALSE, +N1,58778,sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3,https://biolit.fr/sorties/sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3/,do,,9/18/2021 0:00,9.0000000,12.0000000,43.214929000000,5.342935000000,Planète Mer,"marseille, Anse de la Maronaise",33737,observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-11,https://biolit.fr/observations/observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5568-scaled.jpg,,FALSE, +N1,58778,sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3,https://biolit.fr/sorties/sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3/,do,,9/18/2021 0:00,9.0000000,12.0000000,43.214929000000,5.342935000000,Planète Mer,"marseille, Anse de la Maronaise",33739,observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-12,https://biolit.fr/observations/observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5569-scaled.jpg,,FALSE, +N1,58778,sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3,https://biolit.fr/sorties/sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3/,do,,9/18/2021 0:00,9.0000000,12.0000000,43.214929000000,5.342935000000,Planète Mer,"marseille, Anse de la Maronaise",33741,observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-13,https://biolit.fr/observations/observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5570-scaled.jpg,,FALSE, +N1,58778,sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3,https://biolit.fr/sorties/sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3/,do,,9/18/2021 0:00,9.0000000,12.0000000,43.214929000000,5.342935000000,Planète Mer,"marseille, Anse de la Maronaise",33743,observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-14,https://biolit.fr/observations/observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5571-scaled.jpg,,FALSE, +N1,58778,sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3,https://biolit.fr/sorties/sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3/,do,,9/18/2021 0:00,9.0000000,12.0000000,43.214929000000,5.342935000000,Planète Mer,"marseille, Anse de la Maronaise",33745,observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-15,https://biolit.fr/observations/observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5572-scaled.jpg,,FALSE, +N1,58778,sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3,https://biolit.fr/sorties/sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3/,do,,9/18/2021 0:00,9.0000000,12.0000000,43.214929000000,5.342935000000,Planète Mer,"marseille, Anse de la Maronaise",33747,observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-16,https://biolit.fr/observations/observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-16/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5573-scaled.jpg,,TRUE, +N1,58778,sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3,https://biolit.fr/sorties/sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3/,do,,9/18/2021 0:00,9.0000000,12.0000000,43.214929000000,5.342935000000,Planète Mer,"marseille, Anse de la Maronaise",33749,observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-17,https://biolit.fr/observations/observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5574.JPG,,FALSE, +N1,58779,sortie-3817e339-ec30-475d-a261-27bc1fd1b90d,https://biolit.fr/sorties/sortie-3817e339-ec30-475d-a261-27bc1fd1b90d/,edith-charrier,,09/11/2021,9.0:45,10.0000000,43.214885000000,5.342992000000,Planète Mer,"Marseille, Anse de la Maronaise",33750,observation-3817e339-ec30-475d-a261-27bc1fd1b90d,https://biolit.fr/observations/observation-3817e339-ec30-475d-a261-27bc1fd1b90d/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20210911_095705-min-scaled.jpg,,TRUE, +N1,58779,sortie-3817e339-ec30-475d-a261-27bc1fd1b90d,https://biolit.fr/sorties/sortie-3817e339-ec30-475d-a261-27bc1fd1b90d/,edith-charrier,,09/11/2021,9.0:45,10.0000000,43.214885000000,5.342992000000,Planète Mer,"Marseille, Anse de la Maronaise",33752,observation-3817e339-ec30-475d-a261-27bc1fd1b90d-2,https://biolit.fr/observations/observation-3817e339-ec30-475d-a261-27bc1fd1b90d-2/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210911_095725-min-scaled.jpg,,TRUE, +N1,58779,sortie-3817e339-ec30-475d-a261-27bc1fd1b90d,https://biolit.fr/sorties/sortie-3817e339-ec30-475d-a261-27bc1fd1b90d/,edith-charrier,,09/11/2021,9.0:45,10.0000000,43.214885000000,5.342992000000,Planète Mer,"Marseille, Anse de la Maronaise",33754,observation-3817e339-ec30-475d-a261-27bc1fd1b90d-3,https://biolit.fr/observations/observation-3817e339-ec30-475d-a261-27bc1fd1b90d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210911_095731-min-scaled.jpg,,FALSE, +N1,58779,sortie-3817e339-ec30-475d-a261-27bc1fd1b90d,https://biolit.fr/sorties/sortie-3817e339-ec30-475d-a261-27bc1fd1b90d/,edith-charrier,,09/11/2021,9.0:45,10.0000000,43.214885000000,5.342992000000,Planète Mer,"Marseille, Anse de la Maronaise",33756,observation-3817e339-ec30-475d-a261-27bc1fd1b90d-4,https://biolit.fr/observations/observation-3817e339-ec30-475d-a261-27bc1fd1b90d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210911_101908-min-scaled.jpg,,FALSE, +N1,58779,sortie-3817e339-ec30-475d-a261-27bc1fd1b90d,https://biolit.fr/sorties/sortie-3817e339-ec30-475d-a261-27bc1fd1b90d/,edith-charrier,,09/11/2021,9.0:45,10.0000000,43.214885000000,5.342992000000,Planète Mer,"Marseille, Anse de la Maronaise",33758,observation-3817e339-ec30-475d-a261-27bc1fd1b90d-5,https://biolit.fr/observations/observation-3817e339-ec30-475d-a261-27bc1fd1b90d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210911_101915-min-scaled.jpg,,FALSE, +N1,58779,sortie-3817e339-ec30-475d-a261-27bc1fd1b90d,https://biolit.fr/sorties/sortie-3817e339-ec30-475d-a261-27bc1fd1b90d/,edith-charrier,,09/11/2021,9.0:45,10.0000000,43.214885000000,5.342992000000,Planète Mer,"Marseille, Anse de la Maronaise",33760,observation-3817e339-ec30-475d-a261-27bc1fd1b90d-6,https://biolit.fr/observations/observation-3817e339-ec30-475d-a261-27bc1fd1b90d-6/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20210911_101920-min-scaled.jpg,,TRUE, +N1,58779,sortie-3817e339-ec30-475d-a261-27bc1fd1b90d,https://biolit.fr/sorties/sortie-3817e339-ec30-475d-a261-27bc1fd1b90d/,edith-charrier,,09/11/2021,9.0:45,10.0000000,43.214885000000,5.342992000000,Planète Mer,"Marseille, Anse de la Maronaise",33762,observation-3817e339-ec30-475d-a261-27bc1fd1b90d-7,https://biolit.fr/observations/observation-3817e339-ec30-475d-a261-27bc1fd1b90d-7/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/20210911_102530-min-scaled.jpg,,TRUE, +N1,58779,sortie-3817e339-ec30-475d-a261-27bc1fd1b90d,https://biolit.fr/sorties/sortie-3817e339-ec30-475d-a261-27bc1fd1b90d/,edith-charrier,,09/11/2021,9.0:45,10.0000000,43.214885000000,5.342992000000,Planète Mer,"Marseille, Anse de la Maronaise",33764,observation-3817e339-ec30-475d-a261-27bc1fd1b90d-8,https://biolit.fr/observations/observation-3817e339-ec30-475d-a261-27bc1fd1b90d-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210911_103236-min-scaled.jpg,,FALSE, +N1,58779,sortie-3817e339-ec30-475d-a261-27bc1fd1b90d,https://biolit.fr/sorties/sortie-3817e339-ec30-475d-a261-27bc1fd1b90d/,edith-charrier,,09/11/2021,9.0:45,10.0000000,43.214885000000,5.342992000000,Planète Mer,"Marseille, Anse de la Maronaise",33766,observation-3817e339-ec30-475d-a261-27bc1fd1b90d-9,https://biolit.fr/observations/observation-3817e339-ec30-475d-a261-27bc1fd1b90d-9/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/20210911_103357-min-scaled.jpg,,TRUE, +N1,58779,sortie-3817e339-ec30-475d-a261-27bc1fd1b90d,https://biolit.fr/sorties/sortie-3817e339-ec30-475d-a261-27bc1fd1b90d/,edith-charrier,,09/11/2021,9.0:45,10.0000000,43.214885000000,5.342992000000,Planète Mer,"Marseille, Anse de la Maronaise",33768,observation-3817e339-ec30-475d-a261-27bc1fd1b90d-10,https://biolit.fr/observations/observation-3817e339-ec30-475d-a261-27bc1fd1b90d-10/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20210911_104052-min-scaled.jpg,,TRUE, +N1,58779,sortie-3817e339-ec30-475d-a261-27bc1fd1b90d,https://biolit.fr/sorties/sortie-3817e339-ec30-475d-a261-27bc1fd1b90d/,edith-charrier,,09/11/2021,9.0:45,10.0000000,43.214885000000,5.342992000000,Planète Mer,"Marseille, Anse de la Maronaise",33770,observation-3817e339-ec30-475d-a261-27bc1fd1b90d-11,https://biolit.fr/observations/observation-3817e339-ec30-475d-a261-27bc1fd1b90d-11/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20210911_104054-min-scaled.jpg,,TRUE, +N1,58780,sortie-7bc896d1-1b40-4f4d-a791-29c034fcd71e,https://biolit.fr/sorties/sortie-7bc896d1-1b40-4f4d-a791-29c034fcd71e/,guisen,,9/13/2021 0:00,16.0:35,18.0:35,47.104917000000,-2.091555000000,,plage de la Birochère - Pornic ,33772,observation-7bc896d1-1b40-4f4d-a791-29c034fcd71e,https://biolit.fr/observations/observation-7bc896d1-1b40-4f4d-a791-29c034fcd71e/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4213[1]-scaled.jpg,,FALSE, +N1,58780,sortie-7bc896d1-1b40-4f4d-a791-29c034fcd71e,https://biolit.fr/sorties/sortie-7bc896d1-1b40-4f4d-a791-29c034fcd71e/,guisen,,9/13/2021 0:00,16.0:35,18.0:35,47.104917000000,-2.091555000000,,plage de la Birochère - Pornic ,33774,observation-7bc896d1-1b40-4f4d-a791-29c034fcd71e-2,https://biolit.fr/observations/observation-7bc896d1-1b40-4f4d-a791-29c034fcd71e-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4215[1]-scaled.jpg,,TRUE, +N1,58780,sortie-7bc896d1-1b40-4f4d-a791-29c034fcd71e,https://biolit.fr/sorties/sortie-7bc896d1-1b40-4f4d-a791-29c034fcd71e/,guisen,,9/13/2021 0:00,16.0:35,18.0:35,47.104917000000,-2.091555000000,,plage de la Birochère - Pornic ,33776,observation-7bc896d1-1b40-4f4d-a791-29c034fcd71e-3,https://biolit.fr/observations/observation-7bc896d1-1b40-4f4d-a791-29c034fcd71e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4216[1]-scaled.jpg,,FALSE, +N1,58780,sortie-7bc896d1-1b40-4f4d-a791-29c034fcd71e,https://biolit.fr/sorties/sortie-7bc896d1-1b40-4f4d-a791-29c034fcd71e/,guisen,,9/13/2021 0:00,16.0:35,18.0:35,47.104917000000,-2.091555000000,,plage de la Birochère - Pornic ,33778,observation-7bc896d1-1b40-4f4d-a791-29c034fcd71e-4,https://biolit.fr/observations/observation-7bc896d1-1b40-4f4d-a791-29c034fcd71e-4/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4218[1]-scaled.jpg,,TRUE, +N1,58780,sortie-7bc896d1-1b40-4f4d-a791-29c034fcd71e,https://biolit.fr/sorties/sortie-7bc896d1-1b40-4f4d-a791-29c034fcd71e/,guisen,,9/13/2021 0:00,16.0:35,18.0:35,47.104917000000,-2.091555000000,,plage de la Birochère - Pornic ,33780,observation-7bc896d1-1b40-4f4d-a791-29c034fcd71e-5,https://biolit.fr/observations/observation-7bc896d1-1b40-4f4d-a791-29c034fcd71e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4219[1]-scaled.jpg,,FALSE, +N1,58781,sortie-74dd8b3f-1961-4b3f-8635-c1b80160cf52,https://biolit.fr/sorties/sortie-74dd8b3f-1961-4b3f-8635-c1b80160cf52/,Alexandrine Choffat,,8/15/2021 0:00,9.0000000,11.0000000,49.513582000000,0.09018900000,,Saint Adresse ,33782,observation-74dd8b3f-1961-4b3f-8635-c1b80160cf52,https://biolit.fr/observations/observation-74dd8b3f-1961-4b3f-8635-c1b80160cf52/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20210815_tourteau-scaled.jpg,,TRUE, +N1,58781,sortie-74dd8b3f-1961-4b3f-8635-c1b80160cf52,https://biolit.fr/sorties/sortie-74dd8b3f-1961-4b3f-8635-c1b80160cf52/,Alexandrine Choffat,,8/15/2021 0:00,9.0000000,11.0000000,49.513582000000,0.09018900000,,Saint Adresse ,33784,observation-74dd8b3f-1961-4b3f-8635-c1b80160cf52-2,https://biolit.fr/observations/observation-74dd8b3f-1961-4b3f-8635-c1b80160cf52-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20210815_anémone-scaled.jpg,,TRUE, +N1,58781,sortie-74dd8b3f-1961-4b3f-8635-c1b80160cf52,https://biolit.fr/sorties/sortie-74dd8b3f-1961-4b3f-8635-c1b80160cf52/,Alexandrine Choffat,,8/15/2021 0:00,9.0000000,11.0000000,49.513582000000,0.09018900000,,Saint Adresse ,33786,observation-74dd8b3f-1961-4b3f-8635-c1b80160cf52-3,https://biolit.fr/observations/observation-74dd8b3f-1961-4b3f-8635-c1b80160cf52-3/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20210815_concombre-scaled.jpg,,TRUE, +N1,58781,sortie-74dd8b3f-1961-4b3f-8635-c1b80160cf52,https://biolit.fr/sorties/sortie-74dd8b3f-1961-4b3f-8635-c1b80160cf52/,Alexandrine Choffat,,8/15/2021 0:00,9.0000000,11.0000000,49.513582000000,0.09018900000,,Saint Adresse ,33788,observation-74dd8b3f-1961-4b3f-8635-c1b80160cf52-4,https://biolit.fr/observations/observation-74dd8b3f-1961-4b3f-8635-c1b80160cf52-4/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/20210815_goélands-scaled.jpg,,TRUE, +N1,58781,sortie-74dd8b3f-1961-4b3f-8635-c1b80160cf52,https://biolit.fr/sorties/sortie-74dd8b3f-1961-4b3f-8635-c1b80160cf52/,Alexandrine Choffat,,8/15/2021 0:00,9.0000000,11.0000000,49.513582000000,0.09018900000,,Saint Adresse ,33790,observation-74dd8b3f-1961-4b3f-8635-c1b80160cf52-5,https://biolit.fr/observations/observation-74dd8b3f-1961-4b3f-8635-c1b80160cf52-5/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/20210815_moules-scaled.jpg,,TRUE, +N1,58781,sortie-74dd8b3f-1961-4b3f-8635-c1b80160cf52,https://biolit.fr/sorties/sortie-74dd8b3f-1961-4b3f-8635-c1b80160cf52/,Alexandrine Choffat,,8/15/2021 0:00,9.0000000,11.0000000,49.513582000000,0.09018900000,,Saint Adresse ,33792,observation-74dd8b3f-1961-4b3f-8635-c1b80160cf52-6,https://biolit.fr/observations/observation-74dd8b3f-1961-4b3f-8635-c1b80160cf52-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210815_algue-scaled.jpg,,FALSE, +N1,58782,sortie-1dea3b99-73e7-472b-ac28-1b8d2135fcf7,https://biolit.fr/sorties/sortie-1dea3b99-73e7-472b-ac28-1b8d2135fcf7/,djulien,,09/04/2021,13.0000000,15.0000000,49.737876000000,0.289688000000,,Plage de Vaucottes,33794,observation-1dea3b99-73e7-472b-ac28-1b8d2135fcf7,https://biolit.fr/observations/observation-1dea3b99-73e7-472b-ac28-1b8d2135fcf7/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/10F38D57-83AD-4B01-99BC-EF3CEBB0E61D-scaled.jpeg,,TRUE, +N1,58782,sortie-1dea3b99-73e7-472b-ac28-1b8d2135fcf7,https://biolit.fr/sorties/sortie-1dea3b99-73e7-472b-ac28-1b8d2135fcf7/,djulien,,09/04/2021,13.0000000,15.0000000,49.737876000000,0.289688000000,,Plage de Vaucottes,33796,observation-1dea3b99-73e7-472b-ac28-1b8d2135fcf7-2,https://biolit.fr/observations/observation-1dea3b99-73e7-472b-ac28-1b8d2135fcf7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/64D8E1B3-59C2-4C02-AA76-9A946924E779-scaled.jpeg,,FALSE, +N1,58782,sortie-1dea3b99-73e7-472b-ac28-1b8d2135fcf7,https://biolit.fr/sorties/sortie-1dea3b99-73e7-472b-ac28-1b8d2135fcf7/,djulien,,09/04/2021,13.0000000,15.0000000,49.737876000000,0.289688000000,,Plage de Vaucottes,33798,observation-1dea3b99-73e7-472b-ac28-1b8d2135fcf7-3,https://biolit.fr/observations/observation-1dea3b99-73e7-472b-ac28-1b8d2135fcf7-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/884CE90F-9D3F-4663-8C64-586D689F84B2-scaled.jpeg,,TRUE, +N1,58782,sortie-1dea3b99-73e7-472b-ac28-1b8d2135fcf7,https://biolit.fr/sorties/sortie-1dea3b99-73e7-472b-ac28-1b8d2135fcf7/,djulien,,09/04/2021,13.0000000,15.0000000,49.737876000000,0.289688000000,,Plage de Vaucottes,33800,observation-1dea3b99-73e7-472b-ac28-1b8d2135fcf7-4,https://biolit.fr/observations/observation-1dea3b99-73e7-472b-ac28-1b8d2135fcf7-4/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/64B34226-23CA-4E9A-A537-4E3C0CCE2FD8-scaled.jpeg,,TRUE, +N1,58782,sortie-1dea3b99-73e7-472b-ac28-1b8d2135fcf7,https://biolit.fr/sorties/sortie-1dea3b99-73e7-472b-ac28-1b8d2135fcf7/,djulien,,09/04/2021,13.0000000,15.0000000,49.737876000000,0.289688000000,,Plage de Vaucottes,33802,observation-1dea3b99-73e7-472b-ac28-1b8d2135fcf7-5,https://biolit.fr/observations/observation-1dea3b99-73e7-472b-ac28-1b8d2135fcf7-5/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/65215A31-60FE-46C9-B1A9-E51053CA6F36-scaled.jpeg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33804,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_143546_1-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33806,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-2,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_143609-scaled.jpg,,FALSE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33808,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-3,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_143537-scaled.jpg,,FALSE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33810,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-4,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-4/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_160735_1-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33812,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-5,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-5/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_153433 (2)-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33814,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-6,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-6/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_163846_1-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33816,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-7,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-7/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_170102-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33818,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-8,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-8/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_165039-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33820,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-9,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_165044-scaled.jpg,,FALSE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33822,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-10,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_172150 (2)-scaled.jpg,,FALSE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33824,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-11,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_172151 (2)-scaled.jpg,,FALSE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33826,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-12,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_155913 (2)-scaled.jpg,,FALSE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33828,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-13,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-13/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/bis.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33830,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-14,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-14/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_165541_1-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33832,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-15,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-15/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_165630-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33834,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-16,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_165035 (2)-scaled.jpg,,,Identifiable +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33836,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-17,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_172109-scaled.jpg,,FALSE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33838,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-18,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_172100_1-scaled.jpg,,FALSE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33840,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-19,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_172006-scaled.jpg,,FALSE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33842,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-20,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-20/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_150328 (2)-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33844,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-21,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-21/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_150442-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33846,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-22,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-22/,Pelvetia canaliculata,Pelvétie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_144228-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33848,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-23,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-23/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_164924-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33850,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-24,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-24/,Ramalina siliquosa,Ramaline des rochers,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_143925-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33852,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-25,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-25/,Ramalina siliquosa,Ramaline des rochers,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_143929-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33854,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-26,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_154900-scaled.jpg,,FALSE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33856,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-27,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-27/,Rivularia bullata,Rivulaire en forme de bulle,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_154146-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33858,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-28,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-28/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_164032-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33860,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-29,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-29/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_164041-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33862,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-30,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_160230-scaled.jpg,,FALSE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33864,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_13.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33866,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-2,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragaceae_4.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33868,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-3,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-3/,Lissoclinum weigelei,Ascidie coloniale beige,,https://biolit.fr/wp-content/uploads/2023/07/ascidie coloniales et solitaire.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33870,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-4,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-4/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_18.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33872,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-5,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/aucune idée_0.PNG,,FALSE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33874,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-6,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-6/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_8.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33876,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-7,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-7/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_8.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33878,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-8,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-8/,Diodora graeca,Fissurelle,,https://biolit.fr/wp-content/uploads/2023/07/Diodora graeca_2.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33880,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-9,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-9/,Doris verrucosa,Doris verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/Doris verrucosa_4.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33882,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-10,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_20.PNG,,FALSE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33884,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-11,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-11/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Eriphia verrucosa_7.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33886,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-12,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-12/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/Haliotis tuberculata_6.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33888,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-13,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-13/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_3.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33890,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-14,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-14/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/Lipophrys pholis pe.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33892,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-15,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-15/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Maja pe.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33894,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-16,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-16/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_15.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33896,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-17,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-17/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis lumbriciformis_3.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33898,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-18,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-18/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/Ophiotrix fragilis_3.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33900,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-19,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-19/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_5.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33902,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-20,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-20/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/Palaemon sp.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33904,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-21,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-21/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/Phalacrocorax carbo.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33906,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-22,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/Polychète sp.PNG,,FALSE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33908,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-23,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-23/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_16.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33910,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-24,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-24/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_13.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33912,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-25,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-25/,Trivia arctica,Grain de café rose,,https://biolit.fr/wp-content/uploads/2023/07/Trivia monacha et arctica_0.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33914,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-26,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-26/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_14.PNG,,TRUE, +N1,58785,sortie-4812f228-6ac5-4a82-9f47-359ec99916b0,https://biolit.fr/sorties/sortie-4812f228-6ac5-4a82-9f47-359ec99916b0/,Sophie LOEHLE,,8/19/2021 0:00,12.0000000,14.0000000,48.26025400000,-4.602999000000,,"Plage de Veryac'h, Presqu'île de Crozon, GR34",33916,observation-4812f228-6ac5-4a82-9f47-359ec99916b0,https://biolit.fr/observations/observation-4812f228-6ac5-4a82-9f47-359ec99916b0/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Crozon1.JPG,,TRUE, +N1,58785,sortie-4812f228-6ac5-4a82-9f47-359ec99916b0,https://biolit.fr/sorties/sortie-4812f228-6ac5-4a82-9f47-359ec99916b0/,Sophie LOEHLE,,8/19/2021 0:00,12.0000000,14.0000000,48.26025400000,-4.602999000000,,"Plage de Veryac'h, Presqu'île de Crozon, GR34",33918,observation-4812f228-6ac5-4a82-9f47-359ec99916b0-2,https://biolit.fr/observations/observation-4812f228-6ac5-4a82-9f47-359ec99916b0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crozon2.JPG,,FALSE, +N1,58785,sortie-4812f228-6ac5-4a82-9f47-359ec99916b0,https://biolit.fr/sorties/sortie-4812f228-6ac5-4a82-9f47-359ec99916b0/,Sophie LOEHLE,,8/19/2021 0:00,12.0000000,14.0000000,48.26025400000,-4.602999000000,,"Plage de Veryac'h, Presqu'île de Crozon, GR34",33920,observation-4812f228-6ac5-4a82-9f47-359ec99916b0-3,https://biolit.fr/observations/observation-4812f228-6ac5-4a82-9f47-359ec99916b0-3/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/2023/07/Crozon3.JPG,,TRUE, +N1,58785,sortie-4812f228-6ac5-4a82-9f47-359ec99916b0,https://biolit.fr/sorties/sortie-4812f228-6ac5-4a82-9f47-359ec99916b0/,Sophie LOEHLE,,8/19/2021 0:00,12.0000000,14.0000000,48.26025400000,-4.602999000000,,"Plage de Veryac'h, Presqu'île de Crozon, GR34",33922,observation-4812f228-6ac5-4a82-9f47-359ec99916b0-4,https://biolit.fr/observations/observation-4812f228-6ac5-4a82-9f47-359ec99916b0-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210819_075747594-scaled.jpg,,FALSE, +N1,58785,sortie-4812f228-6ac5-4a82-9f47-359ec99916b0,https://biolit.fr/sorties/sortie-4812f228-6ac5-4a82-9f47-359ec99916b0/,Sophie LOEHLE,,8/19/2021 0:00,12.0000000,14.0000000,48.26025400000,-4.602999000000,,"Plage de Veryac'h, Presqu'île de Crozon, GR34",33924,observation-4812f228-6ac5-4a82-9f47-359ec99916b0-5,https://biolit.fr/observations/observation-4812f228-6ac5-4a82-9f47-359ec99916b0-5/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210819_103139976-scaled.jpg,,TRUE, +N1,58785,sortie-4812f228-6ac5-4a82-9f47-359ec99916b0,https://biolit.fr/sorties/sortie-4812f228-6ac5-4a82-9f47-359ec99916b0/,Sophie LOEHLE,,8/19/2021 0:00,12.0000000,14.0000000,48.26025400000,-4.602999000000,,"Plage de Veryac'h, Presqu'île de Crozon, GR34",33926,observation-4812f228-6ac5-4a82-9f47-359ec99916b0-6,https://biolit.fr/observations/observation-4812f228-6ac5-4a82-9f47-359ec99916b0-6/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210819_103258717-scaled.jpg,,TRUE, +N1,58785,sortie-4812f228-6ac5-4a82-9f47-359ec99916b0,https://biolit.fr/sorties/sortie-4812f228-6ac5-4a82-9f47-359ec99916b0/,Sophie LOEHLE,,8/19/2021 0:00,12.0000000,14.0000000,48.26025400000,-4.602999000000,,"Plage de Veryac'h, Presqu'île de Crozon, GR34",33928,observation-4812f228-6ac5-4a82-9f47-359ec99916b0-7,https://biolit.fr/observations/observation-4812f228-6ac5-4a82-9f47-359ec99916b0-7/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210819_103239743-scaled.jpg,,TRUE, +N1,58785,sortie-4812f228-6ac5-4a82-9f47-359ec99916b0,https://biolit.fr/sorties/sortie-4812f228-6ac5-4a82-9f47-359ec99916b0/,Sophie LOEHLE,,8/19/2021 0:00,12.0000000,14.0000000,48.26025400000,-4.602999000000,,"Plage de Veryac'h, Presqu'île de Crozon, GR34",33930,observation-4812f228-6ac5-4a82-9f47-359ec99916b0-8,https://biolit.fr/observations/observation-4812f228-6ac5-4a82-9f47-359ec99916b0-8/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210819_103218776-scaled.jpg,,TRUE, +N1,58786,sortie-3eb6e07d-e09e-43b1-ad40-b3a94557f710,https://biolit.fr/sorties/sortie-3eb6e07d-e09e-43b1-ad40-b3a94557f710/,Sophie LOEHLE,,8/17/2021 0:00,16.0000000,18.0000000,48.281829000000,-4.495077000000,,"Anse du Fret, presqu'île de Crozon, Lanveoc",33932,observation-3eb6e07d-e09e-43b1-ad40-b3a94557f710,https://biolit.fr/observations/observation-3eb6e07d-e09e-43b1-ad40-b3a94557f710/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210817_155204535-scaled.jpg,,TRUE, +N1,58786,sortie-3eb6e07d-e09e-43b1-ad40-b3a94557f710,https://biolit.fr/sorties/sortie-3eb6e07d-e09e-43b1-ad40-b3a94557f710/,Sophie LOEHLE,,8/17/2021 0:00,16.0000000,18.0000000,48.281829000000,-4.495077000000,,"Anse du Fret, presqu'île de Crozon, Lanveoc",33934,observation-3eb6e07d-e09e-43b1-ad40-b3a94557f710-2,https://biolit.fr/observations/observation-3eb6e07d-e09e-43b1-ad40-b3a94557f710-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210817_155224993-scaled.jpg,,FALSE, +N1,58786,sortie-3eb6e07d-e09e-43b1-ad40-b3a94557f710,https://biolit.fr/sorties/sortie-3eb6e07d-e09e-43b1-ad40-b3a94557f710/,Sophie LOEHLE,,8/17/2021 0:00,16.0000000,18.0000000,48.281829000000,-4.495077000000,,"Anse du Fret, presqu'île de Crozon, Lanveoc",33936,observation-3eb6e07d-e09e-43b1-ad40-b3a94557f710-3,https://biolit.fr/observations/observation-3eb6e07d-e09e-43b1-ad40-b3a94557f710-3/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210817_155511129-scaled.jpg,,TRUE, +N1,58786,sortie-3eb6e07d-e09e-43b1-ad40-b3a94557f710,https://biolit.fr/sorties/sortie-3eb6e07d-e09e-43b1-ad40-b3a94557f710/,Sophie LOEHLE,,8/17/2021 0:00,16.0000000,18.0000000,48.281829000000,-4.495077000000,,"Anse du Fret, presqu'île de Crozon, Lanveoc",33938,observation-3eb6e07d-e09e-43b1-ad40-b3a94557f710-4,https://biolit.fr/observations/observation-3eb6e07d-e09e-43b1-ad40-b3a94557f710-4/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210817_155605299-scaled.jpg,,TRUE, +N1,58786,sortie-3eb6e07d-e09e-43b1-ad40-b3a94557f710,https://biolit.fr/sorties/sortie-3eb6e07d-e09e-43b1-ad40-b3a94557f710/,Sophie LOEHLE,,8/17/2021 0:00,16.0000000,18.0000000,48.281829000000,-4.495077000000,,"Anse du Fret, presqu'île de Crozon, Lanveoc",33940,observation-3eb6e07d-e09e-43b1-ad40-b3a94557f710-5,https://biolit.fr/observations/observation-3eb6e07d-e09e-43b1-ad40-b3a94557f710-5/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210817_155818600-scaled.jpg,,TRUE, +N1,58787,sortie-e6a30948-aaa0-48b4-8aa4-9990e507fc16,https://biolit.fr/sorties/sortie-e6a30948-aaa0-48b4-8aa4-9990e507fc16/,Florian Martel,,8/21/2021 0:00,11.0:15,11.0000000,43.285819000000,3.392173000000,,Vias plage - camping roucan west,33942,observation-e6a30948-aaa0-48b4-8aa4-9990e507fc16,https://biolit.fr/observations/observation-e6a30948-aaa0-48b4-8aa4-9990e507fc16/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/12044BAC-D7B5-4030-B07B-8F545756942C-scaled.jpeg,,TRUE, +N1,58788,sortie-eb4c46d1-31a3-43b5-9430-f11301939f42,https://biolit.fr/sorties/sortie-eb4c46d1-31a3-43b5-9430-f11301939f42/,Laura_34,,8/25/2021 0:00,13.0000000,15.0000000,43.553155000000,4.009682000000,,Plage du Petit Travers - MAUGUIO (34),33944,observation-eb4c46d1-31a3-43b5-9430-f11301939f42,https://biolit.fr/observations/observation-eb4c46d1-31a3-43b5-9430-f11301939f42/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/Photo 8.jpg,,TRUE, +N1,58788,sortie-eb4c46d1-31a3-43b5-9430-f11301939f42,https://biolit.fr/sorties/sortie-eb4c46d1-31a3-43b5-9430-f11301939f42/,Laura_34,,8/25/2021 0:00,13.0000000,15.0000000,43.553155000000,4.009682000000,,Plage du Petit Travers - MAUGUIO (34),33946,observation-eb4c46d1-31a3-43b5-9430-f11301939f42-2,https://biolit.fr/observations/observation-eb4c46d1-31a3-43b5-9430-f11301939f42-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Photo 6.jpg,,FALSE, +N1,58788,sortie-eb4c46d1-31a3-43b5-9430-f11301939f42,https://biolit.fr/sorties/sortie-eb4c46d1-31a3-43b5-9430-f11301939f42/,Laura_34,,8/25/2021 0:00,13.0000000,15.0000000,43.553155000000,4.009682000000,,Plage du Petit Travers - MAUGUIO (34),33948,observation-eb4c46d1-31a3-43b5-9430-f11301939f42-3,https://biolit.fr/observations/observation-eb4c46d1-31a3-43b5-9430-f11301939f42-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Photo 9.jpg,,FALSE, +N1,58788,sortie-eb4c46d1-31a3-43b5-9430-f11301939f42,https://biolit.fr/sorties/sortie-eb4c46d1-31a3-43b5-9430-f11301939f42/,Laura_34,,8/25/2021 0:00,13.0000000,15.0000000,43.553155000000,4.009682000000,,Plage du Petit Travers - MAUGUIO (34),33950,observation-eb4c46d1-31a3-43b5-9430-f11301939f42-4,https://biolit.fr/observations/observation-eb4c46d1-31a3-43b5-9430-f11301939f42-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Photo 3.jpg,,FALSE, +N1,58788,sortie-eb4c46d1-31a3-43b5-9430-f11301939f42,https://biolit.fr/sorties/sortie-eb4c46d1-31a3-43b5-9430-f11301939f42/,Laura_34,,8/25/2021 0:00,13.0000000,15.0000000,43.553155000000,4.009682000000,,Plage du Petit Travers - MAUGUIO (34),33952,observation-eb4c46d1-31a3-43b5-9430-f11301939f42-5,https://biolit.fr/observations/observation-eb4c46d1-31a3-43b5-9430-f11301939f42-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Photo 11.jpg,,FALSE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33954,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie sp_4.PNG,,FALSE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33955,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-2,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-2/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_11.PNG,,TRUE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33957,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-3,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-3/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_17.PNG,,TRUE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33959,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-4,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-4/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Chlamys varia_2.PNG,,TRUE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33961,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-5,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-5/,Ciliata mustela,Motelle à 5 barbillons,,https://biolit.fr/wp-content/uploads/2023/07/Ciliata mustela_1.PNG,,TRUE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33963,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-6,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-6/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Doris pseudoargus et marthasterias glacialis.PNG,,TRUE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33965,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-7,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-7/,Dysidea fragilis,Eponge mie de pain mouillée,,https://biolit.fr/wp-content/uploads/2023/07/Dysidea fragilis_0.PNG,,TRUE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33967,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-8,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_19.PNG,,FALSE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33969,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-9,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-9/,Galeomma turtoni,Goutte de lait,,https://biolit.fr/wp-content/uploads/2023/07/Galeomma turtoni.PNG,,TRUE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33971,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-10,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-10/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/Haliotis tuberculata_5.PNG,,TRUE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33973,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-11,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-11/,Limaria hians,Lime bâillante,,https://biolit.fr/wp-content/uploads/2023/07/limaria loscombii pe.PNG,,TRUE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33975,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-12,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-12/,Inachus phalangium,Araignée des anémones,,https://biolit.fr/wp-content/uploads/2023/07/Macropoda sp_0.PNG,,TRUE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33977,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-13,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-13/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_9.PNG,,TRUE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33979,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-14,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-14/,Pilumnus hirtellus,Pilumne hirsute,,https://biolit.fr/wp-content/uploads/2023/07/Pilumnus hirtellus_2.PNG,,TRUE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33981,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-15,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ponte sp.PNG,,FALSE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33983,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-16,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pycnogonide sp.PNG,,FALSE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33985,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-17,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-17/,Styela clava,Ascidie japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Styela clava_0.PNG,,TRUE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33987,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-18,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-18/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/Trivia monacha_1.PNG,,TRUE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33989,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-19,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-19/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Watersipora subatra_2.PNG,,TRUE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33991,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-20,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-20/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_13.PNG,,TRUE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33993,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-21,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-21/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_11.PNG,,TRUE, +N1,58790,sortie-fbc69d2c-16db-42ac-a226-74ad043ce4a9,https://biolit.fr/sorties/sortie-fbc69d2c-16db-42ac-a226-74ad043ce4a9/,VAL DYS,,8/18/2021 0:00,17.0000000,18.0000000,47.250682000000,-2.329569000000,,PORNICHET,33995,observation-fbc69d2c-16db-42ac-a226-74ad043ce4a9,https://biolit.fr/observations/observation-fbc69d2c-16db-42ac-a226-74ad043ce4a9/,Yucca gloriosa,Yucca,,https://biolit.fr/wp-content/uploads/2023/07/escargot_0-scaled.jpg,,TRUE, +N1,58790,sortie-fbc69d2c-16db-42ac-a226-74ad043ce4a9,https://biolit.fr/sorties/sortie-fbc69d2c-16db-42ac-a226-74ad043ce4a9/,VAL DYS,,8/18/2021 0:00,17.0000000,18.0000000,47.250682000000,-2.329569000000,,PORNICHET,33997,observation-fbc69d2c-16db-42ac-a226-74ad043ce4a9-2,https://biolit.fr/observations/observation-fbc69d2c-16db-42ac-a226-74ad043ce4a9-2/,Gaillardia pulchella,Gaillarde jolie,,https://biolit.fr/wp-content/uploads/2023/07/fleur -scaled.jpg,,TRUE, +N1,58790,sortie-fbc69d2c-16db-42ac-a226-74ad043ce4a9,https://biolit.fr/sorties/sortie-fbc69d2c-16db-42ac-a226-74ad043ce4a9/,VAL DYS,,8/18/2021 0:00,17.0000000,18.0000000,47.250682000000,-2.329569000000,,PORNICHET,33999,observation-fbc69d2c-16db-42ac-a226-74ad043ce4a9-3,https://biolit.fr/observations/observation-fbc69d2c-16db-42ac-a226-74ad043ce4a9-3/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/algues_0.JPG,,TRUE, +N1,58790,sortie-fbc69d2c-16db-42ac-a226-74ad043ce4a9,https://biolit.fr/sorties/sortie-fbc69d2c-16db-42ac-a226-74ad043ce4a9/,VAL DYS,,8/18/2021 0:00,17.0000000,18.0000000,47.250682000000,-2.329569000000,,PORNICHET,34001,observation-fbc69d2c-16db-42ac-a226-74ad043ce4a9-4,https://biolit.fr/observations/observation-fbc69d2c-16db-42ac-a226-74ad043ce4a9-4/,Pancratium maritimum,Lis de mer,,https://biolit.fr/wp-content/uploads/2023/07/fleurs blanches.JPG,,TRUE, +N1,58790,sortie-fbc69d2c-16db-42ac-a226-74ad043ce4a9,https://biolit.fr/sorties/sortie-fbc69d2c-16db-42ac-a226-74ad043ce4a9/,VAL DYS,,8/18/2021 0:00,17.0000000,18.0000000,47.250682000000,-2.329569000000,,PORNICHET,34003,observation-fbc69d2c-16db-42ac-a226-74ad043ce4a9-5,https://biolit.fr/observations/observation-fbc69d2c-16db-42ac-a226-74ad043ce4a9-5/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/Chardon-scaled.jpg,,TRUE, +N1,58790,sortie-fbc69d2c-16db-42ac-a226-74ad043ce4a9,https://biolit.fr/sorties/sortie-fbc69d2c-16db-42ac-a226-74ad043ce4a9/,VAL DYS,,8/18/2021 0:00,17.0000000,18.0000000,47.250682000000,-2.329569000000,,PORNICHET,34004,observation-fbc69d2c-16db-42ac-a226-74ad043ce4a9-6,https://biolit.fr/observations/observation-fbc69d2c-16db-42ac-a226-74ad043ce4a9-6/,Gaillardia pulchella,Gaillarde jolie,,https://biolit.fr/wp-content/uploads/2023/07/fleur jaune-scaled.jpg,,TRUE, +N1,58791,sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161,https://biolit.fr/sorties/sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161/,LPO Occitanie DT Aude,,6/30/2021 0:00,9.0000000,12.0000000,43.212131000000,3.237559000000,LPO Occitanie (Dt Aude),Plage des cabanes de Fleury,34006,observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161,https://biolit.fr/observations/observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5922-scaled.jpg,,FALSE, +N1,58791,sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161,https://biolit.fr/sorties/sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161/,LPO Occitanie DT Aude,,6/30/2021 0:00,9.0000000,12.0000000,43.212131000000,3.237559000000,LPO Occitanie (Dt Aude),Plage des cabanes de Fleury,34008,observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-2,https://biolit.fr/observations/observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5921-scaled.jpg,,FALSE, +N1,58791,sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161,https://biolit.fr/sorties/sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161/,LPO Occitanie DT Aude,,6/30/2021 0:00,9.0000000,12.0000000,43.212131000000,3.237559000000,LPO Occitanie (Dt Aude),Plage des cabanes de Fleury,34010,observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-3,https://biolit.fr/observations/observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-3/,Pimelia muricata,Pimélie à deux points,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5923-scaled.jpg,,TRUE, +N1,58791,sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161,https://biolit.fr/sorties/sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161/,LPO Occitanie DT Aude,,6/30/2021 0:00,9.0000000,12.0000000,43.212131000000,3.237559000000,LPO Occitanie (Dt Aude),Plage des cabanes de Fleury,34012,observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-4,https://biolit.fr/observations/observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-4/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5924-scaled.jpg,,TRUE, +N1,58791,sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161,https://biolit.fr/sorties/sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161/,LPO Occitanie DT Aude,,6/30/2021 0:00,9.0000000,12.0000000,43.212131000000,3.237559000000,LPO Occitanie (Dt Aude),Plage des cabanes de Fleury,34014,observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-5,https://biolit.fr/observations/observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-5/,Medicago marina,Luzerne marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5925-scaled.jpg,,TRUE, +N1,58791,sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161,https://biolit.fr/sorties/sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161/,LPO Occitanie DT Aude,,6/30/2021 0:00,9.0000000,12.0000000,43.212131000000,3.237559000000,LPO Occitanie (Dt Aude),Plage des cabanes de Fleury,34016,observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-6,https://biolit.fr/observations/observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5926-scaled.jpg,,FALSE, +N1,58791,sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161,https://biolit.fr/sorties/sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161/,LPO Occitanie DT Aude,,6/30/2021 0:00,9.0000000,12.0000000,43.212131000000,3.237559000000,LPO Occitanie (Dt Aude),Plage des cabanes de Fleury,34018,observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-7,https://biolit.fr/observations/observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-7/,Pancratium maritimum,Lis de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5927-scaled.jpg,,TRUE, +N1,58791,sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161,https://biolit.fr/sorties/sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161/,LPO Occitanie DT Aude,,6/30/2021 0:00,9.0000000,12.0000000,43.212131000000,3.237559000000,LPO Occitanie (Dt Aude),Plage des cabanes de Fleury,34020,observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-8,https://biolit.fr/observations/observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5928-scaled.jpg,,FALSE, +N1,58791,sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161,https://biolit.fr/sorties/sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161/,LPO Occitanie DT Aude,,6/30/2021 0:00,9.0000000,12.0000000,43.212131000000,3.237559000000,LPO Occitanie (Dt Aude),Plage des cabanes de Fleury,34022,observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-9,https://biolit.fr/observations/observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5929-scaled.jpg,,FALSE, +N1,58791,sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161,https://biolit.fr/sorties/sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161/,LPO Occitanie DT Aude,,6/30/2021 0:00,9.0000000,12.0000000,43.212131000000,3.237559000000,LPO Occitanie (Dt Aude),Plage des cabanes de Fleury,34024,observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-10,https://biolit.fr/observations/observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5930-scaled.jpg,,FALSE, +N1,58791,sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161,https://biolit.fr/sorties/sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161/,LPO Occitanie DT Aude,,6/30/2021 0:00,9.0000000,12.0000000,43.212131000000,3.237559000000,LPO Occitanie (Dt Aude),Plage des cabanes de Fleury,34026,observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-11,https://biolit.fr/observations/observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-11/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_5931-scaled.jpg,,TRUE, +N1,58791,sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161,https://biolit.fr/sorties/sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161/,LPO Occitanie DT Aude,,6/30/2021 0:00,9.0000000,12.0000000,43.212131000000,3.237559000000,LPO Occitanie (Dt Aude),Plage des cabanes de Fleury,34028,observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-12,https://biolit.fr/observations/observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-12/,Aporrhais serresiana,Pied de pélican de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5932-scaled.jpg,,TRUE, +N1,58791,sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161,https://biolit.fr/sorties/sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161/,LPO Occitanie DT Aude,,6/30/2021 0:00,9.0000000,12.0000000,43.212131000000,3.237559000000,LPO Occitanie (Dt Aude),Plage des cabanes de Fleury,34030,observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-13,https://biolit.fr/observations/observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-13/,Turritellinella tricarinata,Turritelle commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5933-scaled.jpg,,TRUE, +N1,58791,sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161,https://biolit.fr/sorties/sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161/,LPO Occitanie DT Aude,,6/30/2021 0:00,9.0000000,12.0000000,43.212131000000,3.237559000000,LPO Occitanie (Dt Aude),Plage des cabanes de Fleury,34032,observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-14,https://biolit.fr/observations/observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5934-scaled.jpg,,FALSE, +N1,58791,sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161,https://biolit.fr/sorties/sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161/,LPO Occitanie DT Aude,,6/30/2021 0:00,9.0000000,12.0000000,43.212131000000,3.237559000000,LPO Occitanie (Dt Aude),Plage des cabanes de Fleury,34034,observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-15,https://biolit.fr/observations/observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5935-scaled.jpg,,FALSE, +N1,58792,sortie-1276e9bd-b484-4492-be46-09eaa304a580,https://biolit.fr/sorties/sortie-1276e9bd-b484-4492-be46-09eaa304a580/,Groupe addap13,,08/03/2021,7.0:35,8.0000000,43.271444000000,5.301240000000,,"marseille, frioul, calanque de Pomègues",34036,observation-1276e9bd-b484-4492-be46-09eaa304a580,https://biolit.fr/observations/observation-1276e9bd-b484-4492-be46-09eaa304a580/,Chromis chromis,Castagnole,,https://biolit.fr/wp-content/uploads/2023/07/VideoCapture_20210807-113639_0.jpg,,TRUE, +N1,58792,sortie-1276e9bd-b484-4492-be46-09eaa304a580,https://biolit.fr/sorties/sortie-1276e9bd-b484-4492-be46-09eaa304a580/,Groupe addap13,,08/03/2021,7.0:35,8.0000000,43.271444000000,5.301240000000,,"marseille, frioul, calanque de Pomègues",34038,observation-1276e9bd-b484-4492-be46-09eaa304a580-2,https://biolit.fr/observations/observation-1276e9bd-b484-4492-be46-09eaa304a580-2/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/2023/07/VideoCapture_20210807-113737.jpg,,TRUE, +N1,58792,sortie-1276e9bd-b484-4492-be46-09eaa304a580,https://biolit.fr/sorties/sortie-1276e9bd-b484-4492-be46-09eaa304a580/,Groupe addap13,,08/03/2021,7.0:35,8.0000000,43.271444000000,5.301240000000,,"marseille, frioul, calanque de Pomègues",34040,observation-1276e9bd-b484-4492-be46-09eaa304a580-3,https://biolit.fr/observations/observation-1276e9bd-b484-4492-be46-09eaa304a580-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/VideoCapture_20210807-114051_1.jpg,,FALSE, +N1,58792,sortie-1276e9bd-b484-4492-be46-09eaa304a580,https://biolit.fr/sorties/sortie-1276e9bd-b484-4492-be46-09eaa304a580/,Groupe addap13,,08/03/2021,7.0:35,8.0000000,43.271444000000,5.301240000000,,"marseille, frioul, calanque de Pomègues",34042,observation-1276e9bd-b484-4492-be46-09eaa304a580-4,https://biolit.fr/observations/observation-1276e9bd-b484-4492-be46-09eaa304a580-4/,Echinaster (Echinaster) sepositus,Etoile de mer rouge,,https://biolit.fr/wp-content/uploads/2023/07/VideoCapture_20210807-114136_1.jpg,,TRUE, +N1,58792,sortie-1276e9bd-b484-4492-be46-09eaa304a580,https://biolit.fr/sorties/sortie-1276e9bd-b484-4492-be46-09eaa304a580/,Groupe addap13,,08/03/2021,7.0:35,8.0000000,43.271444000000,5.301240000000,,"marseille, frioul, calanque de Pomègues",34044,observation-1276e9bd-b484-4492-be46-09eaa304a580-5,https://biolit.fr/observations/observation-1276e9bd-b484-4492-be46-09eaa304a580-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/VideoCapture_20210807-114302_1.jpg,,FALSE, +N1,58792,sortie-1276e9bd-b484-4492-be46-09eaa304a580,https://biolit.fr/sorties/sortie-1276e9bd-b484-4492-be46-09eaa304a580/,Groupe addap13,,08/03/2021,7.0:35,8.0000000,43.271444000000,5.301240000000,,"marseille, frioul, calanque de Pomègues",34046,observation-1276e9bd-b484-4492-be46-09eaa304a580-6,https://biolit.fr/observations/observation-1276e9bd-b484-4492-be46-09eaa304a580-6/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/2023/07/VideoCapture_20210807-114553_2.jpg,,TRUE, +N1,58792,sortie-1276e9bd-b484-4492-be46-09eaa304a580,https://biolit.fr/sorties/sortie-1276e9bd-b484-4492-be46-09eaa304a580/,Groupe addap13,,08/03/2021,7.0:35,8.0000000,43.271444000000,5.301240000000,,"marseille, frioul, calanque de Pomègues",34048,observation-1276e9bd-b484-4492-be46-09eaa304a580-7,https://biolit.fr/observations/observation-1276e9bd-b484-4492-be46-09eaa304a580-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/VideoCapture_20210807-114802_1.jpg,,FALSE, +N1,58792,sortie-1276e9bd-b484-4492-be46-09eaa304a580,https://biolit.fr/sorties/sortie-1276e9bd-b484-4492-be46-09eaa304a580/,Groupe addap13,,08/03/2021,7.0:35,8.0000000,43.271444000000,5.301240000000,,"marseille, frioul, calanque de Pomègues",34050,observation-1276e9bd-b484-4492-be46-09eaa304a580-8,https://biolit.fr/observations/observation-1276e9bd-b484-4492-be46-09eaa304a580-8/,Diplodus sargus,Sar commun de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/VideoCapture_20210807-114512_0.jpg,,TRUE, +N1,58792,sortie-1276e9bd-b484-4492-be46-09eaa304a580,https://biolit.fr/sorties/sortie-1276e9bd-b484-4492-be46-09eaa304a580/,Groupe addap13,,08/03/2021,7.0:35,8.0000000,43.271444000000,5.301240000000,,"marseille, frioul, calanque de Pomègues",34052,observation-1276e9bd-b484-4492-be46-09eaa304a580-9,https://biolit.fr/observations/observation-1276e9bd-b484-4492-be46-09eaa304a580-9/,Coris julis,Girelle commune,,https://biolit.fr/wp-content/uploads/2023/07/VideoCapture_20210807-114248_0.jpg,,TRUE, +N1,58793,sortie-6803c6de-802f-4d35-93ba-6c4f74000ddc,https://biolit.fr/sorties/sortie-6803c6de-802f-4d35-93ba-6c4f74000ddc/,Groupe addap13,,08/02/2021,10.0000000,11.0000000,43.271543000000,5.300967000000,,"marseille, frioul, calanque de Pomègues",34054,observation-6803c6de-802f-4d35-93ba-6c4f74000ddc,https://biolit.fr/observations/observation-6803c6de-802f-4d35-93ba-6c4f74000ddc/,Pancratium maritimum,Lis de mer,,https://biolit.fr/wp-content/uploads/2023/07/20210802_103618-scaled.jpg,,TRUE, +N1,58793,sortie-6803c6de-802f-4d35-93ba-6c4f74000ddc,https://biolit.fr/sorties/sortie-6803c6de-802f-4d35-93ba-6c4f74000ddc/,Groupe addap13,,08/02/2021,10.0000000,11.0000000,43.271543000000,5.300967000000,,"marseille, frioul, calanque de Pomègues",34056,observation-6803c6de-802f-4d35-93ba-6c4f74000ddc-2,https://biolit.fr/observations/observation-6803c6de-802f-4d35-93ba-6c4f74000ddc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210802_123135-scaled.jpg,,FALSE, +N1,58793,sortie-6803c6de-802f-4d35-93ba-6c4f74000ddc,https://biolit.fr/sorties/sortie-6803c6de-802f-4d35-93ba-6c4f74000ddc/,Groupe addap13,,08/02/2021,10.0000000,11.0000000,43.271543000000,5.300967000000,,"marseille, frioul, calanque de Pomègues",34058,observation-6803c6de-802f-4d35-93ba-6c4f74000ddc-3,https://biolit.fr/observations/observation-6803c6de-802f-4d35-93ba-6c4f74000ddc-3/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/20210802_123153-scaled.jpg,,TRUE, +N1,58793,sortie-6803c6de-802f-4d35-93ba-6c4f74000ddc,https://biolit.fr/sorties/sortie-6803c6de-802f-4d35-93ba-6c4f74000ddc/,Groupe addap13,,08/02/2021,10.0000000,11.0000000,43.271543000000,5.300967000000,,"marseille, frioul, calanque de Pomègues",34060,observation-6803c6de-802f-4d35-93ba-6c4f74000ddc-4,https://biolit.fr/observations/observation-6803c6de-802f-4d35-93ba-6c4f74000ddc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210802_104317-scaled.jpg,,FALSE, +N1,58794,sortie-115f9cb7-fa08-428e-9c32-44fe59a4c63c,https://biolit.fr/sorties/sortie-115f9cb7-fa08-428e-9c32-44fe59a4c63c/,Agent007,,08/03/2021,9.0000000,11.0000000,43.592466000000,7.129638000000,,"Antibes, plage de la Salis",34062,observation-115f9cb7-fa08-428e-9c32-44fe59a4c63c,https://biolit.fr/observations/observation-115f9cb7-fa08-428e-9c32-44fe59a4c63c/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_4652 2-scaled.jpeg,,TRUE, +N1,58795,sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9,https://biolit.fr/sorties/sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9/,Nicolas Petit,,08/04/2021,16.0000000,18.0000000,43.428465000000,-1.606285000000,,"Plage Parlementia, Guethary",34064,observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9,https://biolit.fr/observations/observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Bigorneau.jpg,,TRUE, +N1,58795,sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9,https://biolit.fr/sorties/sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9/,Nicolas Petit,,08/04/2021,16.0000000,18.0000000,43.428465000000,-1.606285000000,,"Plage Parlementia, Guethary",34066,observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-2,https://biolit.fr/observations/observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-2/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Crabe sanguin-scaled.jpg,,TRUE, +N1,58795,sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9,https://biolit.fr/sorties/sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9/,Nicolas Petit,,08/04/2021,16.0000000,18.0000000,43.428465000000,-1.606285000000,,"Plage Parlementia, Guethary",34068,observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-3,https://biolit.fr/observations/observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-3/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Pilumne Hirsute.jpg,,TRUE, +N1,58795,sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9,https://biolit.fr/sorties/sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9/,Nicolas Petit,,08/04/2021,16.0000000,18.0000000,43.428465000000,-1.606285000000,,"Plage Parlementia, Guethary",34070,observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-4,https://biolit.fr/observations/observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-4/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/codium fragile.jpg,,TRUE, +N1,58795,sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9,https://biolit.fr/sorties/sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9/,Nicolas Petit,,08/04/2021,16.0000000,18.0000000,43.428465000000,-1.606285000000,,"Plage Parlementia, Guethary",34071,observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-5,https://biolit.fr/observations/observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-5/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/Blennie_1-scaled.jpg,,TRUE, +N1,58795,sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9,https://biolit.fr/sorties/sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9/,Nicolas Petit,,08/04/2021,16.0000000,18.0000000,43.428465000000,-1.606285000000,,"Plage Parlementia, Guethary",34073,observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-6,https://biolit.fr/observations/observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-6/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/Criste marine-scaled.jpg,,TRUE, +N1,58795,sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9,https://biolit.fr/sorties/sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9/,Nicolas Petit,,08/04/2021,16.0000000,18.0000000,43.428465000000,-1.606285000000,,"Plage Parlementia, Guethary",34074,observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-7,https://biolit.fr/observations/observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-7/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/Crevette_0-scaled.jpg,,TRUE, +N1,58795,sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9,https://biolit.fr/sorties/sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9/,Nicolas Petit,,08/04/2021,16.0000000,18.0000000,43.428465000000,-1.606285000000,,"Plage Parlementia, Guethary",34076,observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-8,https://biolit.fr/observations/observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algue_1-scaled.jpg,,FALSE, +N1,58795,sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9,https://biolit.fr/sorties/sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9/,Nicolas Petit,,08/04/2021,16.0000000,18.0000000,43.428465000000,-1.606285000000,,"Plage Parlementia, Guethary",34078,observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-9,https://biolit.fr/observations/observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-9/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Crabe marbré_0.jpg,,TRUE, +N1,58795,sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9,https://biolit.fr/sorties/sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9/,Nicolas Petit,,08/04/2021,16.0000000,18.0000000,43.428465000000,-1.606285000000,,"Plage Parlementia, Guethary",34080,observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-10,https://biolit.fr/observations/observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lichen marin-scaled.jpg,,FALSE, +N1,58796,sortie-ea836f26-f8a5-4619-aaa0-8c10b2142ea5,https://biolit.fr/sorties/sortie-ea836f26-f8a5-4619-aaa0-8c10b2142ea5/,doudou76,,7/27/2021 0:00,9.0000000,16.0000000,49.646391000000,0.153255000000,,plage de st jouin de bruneval,34082,observation-ea836f26-f8a5-4619-aaa0-8c10b2142ea5,https://biolit.fr/observations/observation-ea836f26-f8a5-4619-aaa0-8c10b2142ea5/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/20210803_115417-scaled.jpg,,TRUE, +N1,58796,sortie-ea836f26-f8a5-4619-aaa0-8c10b2142ea5,https://biolit.fr/sorties/sortie-ea836f26-f8a5-4619-aaa0-8c10b2142ea5/,doudou76,,7/27/2021 0:00,9.0000000,16.0000000,49.646391000000,0.153255000000,,plage de st jouin de bruneval,34084,observation-ea836f26-f8a5-4619-aaa0-8c10b2142ea5-2,https://biolit.fr/observations/observation-ea836f26-f8a5-4619-aaa0-8c10b2142ea5-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20210803_115432-scaled.jpg,,TRUE, +N1,58796,sortie-ea836f26-f8a5-4619-aaa0-8c10b2142ea5,https://biolit.fr/sorties/sortie-ea836f26-f8a5-4619-aaa0-8c10b2142ea5/,doudou76,,7/27/2021 0:00,9.0000000,16.0000000,49.646391000000,0.153255000000,,plage de st jouin de bruneval,34086,observation-ea836f26-f8a5-4619-aaa0-8c10b2142ea5-3,https://biolit.fr/observations/observation-ea836f26-f8a5-4619-aaa0-8c10b2142ea5-3/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Snapchat-1482324377-scaled.jpg,,TRUE, +N1,58796,sortie-ea836f26-f8a5-4619-aaa0-8c10b2142ea5,https://biolit.fr/sorties/sortie-ea836f26-f8a5-4619-aaa0-8c10b2142ea5/,doudou76,,7/27/2021 0:00,9.0000000,16.0000000,49.646391000000,0.153255000000,,plage de st jouin de bruneval,34088,observation-ea836f26-f8a5-4619-aaa0-8c10b2142ea5-4,https://biolit.fr/observations/observation-ea836f26-f8a5-4619-aaa0-8c10b2142ea5-4/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Snapchat-1411804144-scaled.jpg,,TRUE, +N1,58796,sortie-ea836f26-f8a5-4619-aaa0-8c10b2142ea5,https://biolit.fr/sorties/sortie-ea836f26-f8a5-4619-aaa0-8c10b2142ea5/,doudou76,,7/27/2021 0:00,9.0000000,16.0000000,49.646391000000,0.153255000000,,plage de st jouin de bruneval,34090,observation-ea836f26-f8a5-4619-aaa0-8c10b2142ea5-5,https://biolit.fr/observations/observation-ea836f26-f8a5-4619-aaa0-8c10b2142ea5-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210803_115215(0)-scaled.jpg,,FALSE, +N1,58797,sortie-5bc3cd81-f9c8-4ddf-93fd-346dcbd7fdeb,https://biolit.fr/sorties/sortie-5bc3cd81-f9c8-4ddf-93fd-346dcbd7fdeb/,Agent007,,7/23/2021 0:00,9.0000000,10.0000000,43.685915000000,7.339236000000,,Saint Jean Cap Ferrat,34092,observation-5bc3cd81-f9c8-4ddf-93fd-346dcbd7fdeb,https://biolit.fr/observations/observation-5bc3cd81-f9c8-4ddf-93fd-346dcbd7fdeb/,Luria lurida,Porcelaine livide,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4149 2-scaled.jpeg,,TRUE, +N1,58797,sortie-5bc3cd81-f9c8-4ddf-93fd-346dcbd7fdeb,https://biolit.fr/sorties/sortie-5bc3cd81-f9c8-4ddf-93fd-346dcbd7fdeb/,Agent007,,7/23/2021 0:00,9.0000000,10.0000000,43.685915000000,7.339236000000,,Saint Jean Cap Ferrat,34094,observation-5bc3cd81-f9c8-4ddf-93fd-346dcbd7fdeb-2,https://biolit.fr/observations/observation-5bc3cd81-f9c8-4ddf-93fd-346dcbd7fdeb-2/,Luria lurida,Porcelaine livide,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4146-scaled.jpeg,,TRUE, +N1,58797,sortie-5bc3cd81-f9c8-4ddf-93fd-346dcbd7fdeb,https://biolit.fr/sorties/sortie-5bc3cd81-f9c8-4ddf-93fd-346dcbd7fdeb/,Agent007,,7/23/2021 0:00,9.0000000,10.0000000,43.685915000000,7.339236000000,,Saint Jean Cap Ferrat,34096,observation-5bc3cd81-f9c8-4ddf-93fd-346dcbd7fdeb-3,https://biolit.fr/observations/observation-5bc3cd81-f9c8-4ddf-93fd-346dcbd7fdeb-3/,Luria lurida,Porcelaine livide,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4156-scaled.jpeg,,TRUE, +N1,58798,sortie-c32f0870-5237-4cac-885c-5504b44f5e04,https://biolit.fr/sorties/sortie-c32f0870-5237-4cac-885c-5504b44f5e04/,Phil,,5/19/2021 0:00,12.0000000,12.0000000,47.864442000000,-4.084511000000,,Bénodet - Finistère,34098,observation-c32f0870-5237-4cac-885c-5504b44f5e04,https://biolit.fr/observations/observation-c32f0870-5237-4cac-885c-5504b44f5e04/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/20210519_121045.jpg,,TRUE, +N1,58799,sortie-5765472a-4071-43bf-b262-c8f532bb1dc4,https://biolit.fr/sorties/sortie-5765472a-4071-43bf-b262-c8f532bb1dc4/,edith-charrier,,7/19/2021 0:00,9.0000000,10.0000000,43.23988100000,5.362472000000,Planète Mer,Plage du Bain des Dames,34100,observation-5765472a-4071-43bf-b262-c8f532bb1dc4,https://biolit.fr/observations/observation-5765472a-4071-43bf-b262-c8f532bb1dc4/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20210719_080110-min-scaled.jpg,,TRUE, +N1,58799,sortie-5765472a-4071-43bf-b262-c8f532bb1dc4,https://biolit.fr/sorties/sortie-5765472a-4071-43bf-b262-c8f532bb1dc4/,edith-charrier,,7/19/2021 0:00,9.0000000,10.0000000,43.23988100000,5.362472000000,Planète Mer,Plage du Bain des Dames,34102,observation-5765472a-4071-43bf-b262-c8f532bb1dc4-2,https://biolit.fr/observations/observation-5765472a-4071-43bf-b262-c8f532bb1dc4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210719_093141-min-scaled.jpg,,FALSE, +N1,58799,sortie-5765472a-4071-43bf-b262-c8f532bb1dc4,https://biolit.fr/sorties/sortie-5765472a-4071-43bf-b262-c8f532bb1dc4/,edith-charrier,,7/19/2021 0:00,9.0000000,10.0000000,43.23988100000,5.362472000000,Planète Mer,Plage du Bain des Dames,34104,observation-5765472a-4071-43bf-b262-c8f532bb1dc4-3,https://biolit.fr/observations/observation-5765472a-4071-43bf-b262-c8f532bb1dc4-3/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/20210719_093229-min-scaled.jpg,,TRUE, +N1,58799,sortie-5765472a-4071-43bf-b262-c8f532bb1dc4,https://biolit.fr/sorties/sortie-5765472a-4071-43bf-b262-c8f532bb1dc4/,edith-charrier,,7/19/2021 0:00,9.0000000,10.0000000,43.23988100000,5.362472000000,Planète Mer,Plage du Bain des Dames,34106,observation-5765472a-4071-43bf-b262-c8f532bb1dc4-4,https://biolit.fr/observations/observation-5765472a-4071-43bf-b262-c8f532bb1dc4-4/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/20210719_093417-min-scaled.jpg,,TRUE, +N1,58799,sortie-5765472a-4071-43bf-b262-c8f532bb1dc4,https://biolit.fr/sorties/sortie-5765472a-4071-43bf-b262-c8f532bb1dc4/,edith-charrier,,7/19/2021 0:00,9.0000000,10.0000000,43.23988100000,5.362472000000,Planète Mer,Plage du Bain des Dames,34108,observation-5765472a-4071-43bf-b262-c8f532bb1dc4-5,https://biolit.fr/observations/observation-5765472a-4071-43bf-b262-c8f532bb1dc4-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210719_093631-min-scaled.jpg,,FALSE, +N1,58799,sortie-5765472a-4071-43bf-b262-c8f532bb1dc4,https://biolit.fr/sorties/sortie-5765472a-4071-43bf-b262-c8f532bb1dc4/,edith-charrier,,7/19/2021 0:00,9.0000000,10.0000000,43.23988100000,5.362472000000,Planète Mer,Plage du Bain des Dames,34110,observation-5765472a-4071-43bf-b262-c8f532bb1dc4-6,https://biolit.fr/observations/observation-5765472a-4071-43bf-b262-c8f532bb1dc4-6/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20210719_094122-min-scaled.jpg,,TRUE, +N1,58799,sortie-5765472a-4071-43bf-b262-c8f532bb1dc4,https://biolit.fr/sorties/sortie-5765472a-4071-43bf-b262-c8f532bb1dc4/,edith-charrier,,7/19/2021 0:00,9.0000000,10.0000000,43.23988100000,5.362472000000,Planète Mer,Plage du Bain des Dames,34112,observation-5765472a-4071-43bf-b262-c8f532bb1dc4-7,https://biolit.fr/observations/observation-5765472a-4071-43bf-b262-c8f532bb1dc4-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210719_094130-min-scaled.jpg,,FALSE, +N1,58800,sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a,https://biolit.fr/sorties/sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a/,buya,,7/15/2021 0:00,12.0:25,14.0:25,49.508489000000,0.067489000000,,cap de la heve,34114,observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a,https://biolit.fr/observations/observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210715_110433-min-scaled.jpg,,TRUE, +N1,58800,sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a,https://biolit.fr/sorties/sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a/,buya,,7/15/2021 0:00,12.0:25,14.0:25,49.508489000000,0.067489000000,,cap de la heve,34116,observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-2,https://biolit.fr/observations/observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210715_110306-min-scaled.jpg,,TRUE, +N1,58800,sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a,https://biolit.fr/sorties/sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a/,buya,,7/15/2021 0:00,12.0:25,14.0:25,49.508489000000,0.067489000000,,cap de la heve,34118,observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-3,https://biolit.fr/observations/observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-3/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/20210715_110544-min-scaled.jpg,,TRUE, +N1,58800,sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a,https://biolit.fr/sorties/sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a/,buya,,7/15/2021 0:00,12.0:25,14.0:25,49.508489000000,0.067489000000,,cap de la heve,34120,observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-4,https://biolit.fr/observations/observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-4/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20210715_110345-min-scaled.jpg,,TRUE, +N1,58800,sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a,https://biolit.fr/sorties/sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a/,buya,,7/15/2021 0:00,12.0:25,14.0:25,49.508489000000,0.067489000000,,cap de la heve,34122,observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-5,https://biolit.fr/observations/observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210715_111919-min-scaled.jpg,,FALSE, +N1,58800,sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a,https://biolit.fr/sorties/sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a/,buya,,7/15/2021 0:00,12.0:25,14.0:25,49.508489000000,0.067489000000,,cap de la heve,34124,observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-6,https://biolit.fr/observations/observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-6/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/20210715_112349-min-scaled.jpg,,TRUE, +N1,58800,sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a,https://biolit.fr/sorties/sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a/,buya,,7/15/2021 0:00,12.0:25,14.0:25,49.508489000000,0.067489000000,,cap de la heve,34126,observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-7,https://biolit.fr/observations/observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-7/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20210715_112234-min-scaled.jpg,,TRUE, +N1,58800,sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a,https://biolit.fr/sorties/sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a/,buya,,7/15/2021 0:00,12.0:25,14.0:25,49.508489000000,0.067489000000,,cap de la heve,34128,observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-8,https://biolit.fr/observations/observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-8/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20210715_112154-min-scaled.jpg,,TRUE, +N1,58800,sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a,https://biolit.fr/sorties/sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a/,buya,,7/15/2021 0:00,12.0:25,14.0:25,49.508489000000,0.067489000000,,cap de la heve,34130,observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-9,https://biolit.fr/observations/observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-9/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/20210715_111212-min-scaled.jpg,,TRUE, +N1,58800,sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a,https://biolit.fr/sorties/sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a/,buya,,7/15/2021 0:00,12.0:25,14.0:25,49.508489000000,0.067489000000,,cap de la heve,34132,observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-10,https://biolit.fr/observations/observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210715_110800-scaled.jpg,,FALSE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34134,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita_5.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34136,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-2,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_12.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34138,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-3,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie sp_0.PNG,,FALSE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34140,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-4,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-4/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_10.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34142,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-5,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_16.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34144,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-6,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-6/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_7.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34146,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-7,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-7/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_15.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34148,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-8,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-8/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_2.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34150,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-9,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-9/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/Clibanarius erythropus_0.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34152,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-10,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-10/,Doris verrucosa,Doris verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/Doris verrucosa_3.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34154,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-11,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_18.PNG,,FALSE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34156,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-12,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-12/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/Galathea squamifera.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34158,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-13,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-13/,Hediste diversicolor,Néréis multicolore,,https://biolit.fr/wp-content/uploads/2023/07/Gravelle sp.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34160,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-14,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-14/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/Lipophrys pholis_0.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34162,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-15,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-15/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_4.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34164,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-16,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-16/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_14.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34166,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-17,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-17/,Mya arenaria,Mye des sables,,https://biolit.fr/wp-content/uploads/2023/07/Mya arenaria.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34168,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-18,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-18/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis lumbriciformis_2.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34170,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-19,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-19/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_12.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34172,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-20,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-20/,Venerupis corrugata,Palourde-poulette,,https://biolit.fr/wp-content/uploads/2023/07/Venerupis corrugata.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34174,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-21,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ver sp-scaled.jpg,,FALSE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34175,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-22,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-22/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Watersipora subatra_1.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34177,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-23,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-23/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_12.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34179,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-24,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-24/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes avec ponte.PNG,,TRUE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34181,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Ammophila arenaria,Oyat,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5183.JPG,,TRUE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34183,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-2,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-2/,Honckenya peploides,Pourpier de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5184.JPG,,TRUE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34185,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-3,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-3/,Honckenya peploides,Pourpier de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5185.JPG,,TRUE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34187,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-4,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-4/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5186.JPG,,TRUE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34189,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-5,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-5/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5187.JPG,,TRUE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34191,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-6,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5189.JPG,,FALSE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34193,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-7,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-7/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5194.JPG,,TRUE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34195,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-8,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-8/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5195.JPG,,TRUE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34197,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-9,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-9/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5200.JPG,,TRUE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34199,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-10,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-10/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_5203.JPG,,TRUE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34201,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-11,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-11/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5205.JPG,,TRUE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34203,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-12,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-12/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5206.JPG,,TRUE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34205,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-13,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-13/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5208_0.JPG,,TRUE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34207,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-14,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-14/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_5209.JPG,,TRUE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34209,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-15,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-15/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5211.JPG,,TRUE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34211,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-16,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-16/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5213.JPG,,TRUE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34213,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-17,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-17/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5217.JPG,,TRUE, +N1,58803,sortie-c1408200-a9fc-4388-a607-2c50f22659ca,https://biolit.fr/sorties/sortie-c1408200-a9fc-4388-a607-2c50f22659ca/,Fabrice P,,07/11/2021,6.0000000,11.0000000,49.512923000000,0.065917000000,,"Sainte-Adresse, Lieu-dit ""Le Bout du monde""",34215,observation-c1408200-a9fc-4388-a607-2c50f22659ca,https://biolit.fr/observations/observation-c1408200-a9fc-4388-a607-2c50f22659ca/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0298_4-scaled.jpg,,FALSE, +N1,58803,sortie-c1408200-a9fc-4388-a607-2c50f22659ca,https://biolit.fr/sorties/sortie-c1408200-a9fc-4388-a607-2c50f22659ca/,Fabrice P,,07/11/2021,6.0000000,11.0000000,49.512923000000,0.065917000000,,"Sainte-Adresse, Lieu-dit ""Le Bout du monde""",34217,observation-c1408200-a9fc-4388-a607-2c50f22659ca-2,https://biolit.fr/observations/observation-c1408200-a9fc-4388-a607-2c50f22659ca-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0309-scaled.jpg,,TRUE, +N1,58803,sortie-c1408200-a9fc-4388-a607-2c50f22659ca,https://biolit.fr/sorties/sortie-c1408200-a9fc-4388-a607-2c50f22659ca/,Fabrice P,,07/11/2021,6.0000000,11.0000000,49.512923000000,0.065917000000,,"Sainte-Adresse, Lieu-dit ""Le Bout du monde""",34219,observation-c1408200-a9fc-4388-a607-2c50f22659ca-3,https://biolit.fr/observations/observation-c1408200-a9fc-4388-a607-2c50f22659ca-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_0311-scaled.jpg,,TRUE, +N1,58803,sortie-c1408200-a9fc-4388-a607-2c50f22659ca,https://biolit.fr/sorties/sortie-c1408200-a9fc-4388-a607-2c50f22659ca/,Fabrice P,,07/11/2021,6.0000000,11.0000000,49.512923000000,0.065917000000,,"Sainte-Adresse, Lieu-dit ""Le Bout du monde""",34221,observation-c1408200-a9fc-4388-a607-2c50f22659ca-4,https://biolit.fr/observations/observation-c1408200-a9fc-4388-a607-2c50f22659ca-4/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0318-scaled.jpg,,TRUE, +N1,58803,sortie-c1408200-a9fc-4388-a607-2c50f22659ca,https://biolit.fr/sorties/sortie-c1408200-a9fc-4388-a607-2c50f22659ca/,Fabrice P,,07/11/2021,6.0000000,11.0000000,49.512923000000,0.065917000000,,"Sainte-Adresse, Lieu-dit ""Le Bout du monde""",34223,observation-c1408200-a9fc-4388-a607-2c50f22659ca-5,https://biolit.fr/observations/observation-c1408200-a9fc-4388-a607-2c50f22659ca-5/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_03281-scaled.jpg,,TRUE, +N1,58803,sortie-c1408200-a9fc-4388-a607-2c50f22659ca,https://biolit.fr/sorties/sortie-c1408200-a9fc-4388-a607-2c50f22659ca/,Fabrice P,,07/11/2021,6.0000000,11.0000000,49.512923000000,0.065917000000,,"Sainte-Adresse, Lieu-dit ""Le Bout du monde""",34225,observation-c1408200-a9fc-4388-a607-2c50f22659ca-6,https://biolit.fr/observations/observation-c1408200-a9fc-4388-a607-2c50f22659ca-6/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0306-scaled.jpg,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34227,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita_4.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34229,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-2,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragaceae_3.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34231,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-3,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/anemonia viridis_8.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34233,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-4,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-4/,Lissoclinum weigelei,Ascidie coloniale beige,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie coloniale sp.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34234,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-5,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-5/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_9.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34236,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-6,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-6/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_7.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34238,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-7,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-7/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_11.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34240,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-8,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-8/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_14.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34242,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-9,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-9/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/crassostrea gigas_1.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34243,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-10,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-10/,Doris verrucosa,Doris verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/Doris verrucosa_2.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34245,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-11,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-11/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 1_6.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34247,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-12,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-12/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_17.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34249,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-13,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-13/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_11.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34251,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-14,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-14/,Membranipora membranacea,Membranipore,,https://biolit.fr/wp-content/uploads/2023/07/membranipora sp_0.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34253,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-15,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-15/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis lombriciformis.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34255,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-16,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-16/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_15.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34257,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-17,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-17/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_11.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34259,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-18,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-18/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Steromphola umbilicalis.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34261,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-19,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-19/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_11.PNG,,TRUE, +N1,58805,sortie-4ab0f136-4928-4702-a71c-c7342f105cbb,https://biolit.fr/sorties/sortie-4ab0f136-4928-4702-a71c-c7342f105cbb/,Sophie Lacombe,,6/25/2021 0:00,14.0000000,16.0000000,47.274337000000,-2.484579000000,,Boulevard de Mer à Batz sur Mer,34263,observation-4ab0f136-4928-4702-a71c-c7342f105cbb,https://biolit.fr/observations/observation-4ab0f136-4928-4702-a71c-c7342f105cbb/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_5432-rotated.jpg,,TRUE, +N1,58805,sortie-4ab0f136-4928-4702-a71c-c7342f105cbb,https://biolit.fr/sorties/sortie-4ab0f136-4928-4702-a71c-c7342f105cbb/,Sophie Lacombe,,6/25/2021 0:00,14.0000000,16.0000000,47.274337000000,-2.484579000000,,Boulevard de Mer à Batz sur Mer,34265,observation-4ab0f136-4928-4702-a71c-c7342f105cbb-2,https://biolit.fr/observations/observation-4ab0f136-4928-4702-a71c-c7342f105cbb-2/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5433-rotated.jpg,,TRUE, +N1,58805,sortie-4ab0f136-4928-4702-a71c-c7342f105cbb,https://biolit.fr/sorties/sortie-4ab0f136-4928-4702-a71c-c7342f105cbb/,Sophie Lacombe,,6/25/2021 0:00,14.0000000,16.0000000,47.274337000000,-2.484579000000,,Boulevard de Mer à Batz sur Mer,34267,observation-4ab0f136-4928-4702-a71c-c7342f105cbb-3,https://biolit.fr/observations/observation-4ab0f136-4928-4702-a71c-c7342f105cbb-3/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5434-rotated.jpg,,TRUE, +N1,58805,sortie-4ab0f136-4928-4702-a71c-c7342f105cbb,https://biolit.fr/sorties/sortie-4ab0f136-4928-4702-a71c-c7342f105cbb/,Sophie Lacombe,,6/25/2021 0:00,14.0000000,16.0000000,47.274337000000,-2.484579000000,,Boulevard de Mer à Batz sur Mer,34269,observation-4ab0f136-4928-4702-a71c-c7342f105cbb-4,https://biolit.fr/observations/observation-4ab0f136-4928-4702-a71c-c7342f105cbb-4/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_5435-rotated.jpg,,TRUE, +N1,58806,sortie-3f1f9a3c-01f4-42df-aa3c-8d00cbcaa151,https://biolit.fr/sorties/sortie-3f1f9a3c-01f4-42df-aa3c-8d00cbcaa151/,Sophie Lacombe,,6/25/2021 0:00,14.0000000,16.0000000,47.280979000000,-2.500254000000,,Plage Valentin,34271,observation-3f1f9a3c-01f4-42df-aa3c-8d00cbcaa151,https://biolit.fr/observations/observation-3f1f9a3c-01f4-42df-aa3c-8d00cbcaa151/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5428-rotated.jpg,,FALSE, +N1,58806,sortie-3f1f9a3c-01f4-42df-aa3c-8d00cbcaa151,https://biolit.fr/sorties/sortie-3f1f9a3c-01f4-42df-aa3c-8d00cbcaa151/,Sophie Lacombe,,6/25/2021 0:00,14.0000000,16.0000000,47.280979000000,-2.500254000000,,Plage Valentin,34273,observation-3f1f9a3c-01f4-42df-aa3c-8d00cbcaa151-2,https://biolit.fr/observations/observation-3f1f9a3c-01f4-42df-aa3c-8d00cbcaa151-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5429-rotated.jpg,,TRUE, +N1,58806,sortie-3f1f9a3c-01f4-42df-aa3c-8d00cbcaa151,https://biolit.fr/sorties/sortie-3f1f9a3c-01f4-42df-aa3c-8d00cbcaa151/,Sophie Lacombe,,6/25/2021 0:00,14.0000000,16.0000000,47.280979000000,-2.500254000000,,Plage Valentin,34275,observation-3f1f9a3c-01f4-42df-aa3c-8d00cbcaa151-3,https://biolit.fr/observations/observation-3f1f9a3c-01f4-42df-aa3c-8d00cbcaa151-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5430-rotated.jpg,,FALSE, +N1,58807,sortie-193b5a50-cf2a-4ccf-9e36-43fecb37a4ec,https://biolit.fr/sorties/sortie-193b5a50-cf2a-4ccf-9e36-43fecb37a4ec/,Sophie Lacombe,,6/25/2021 0:00,11.0000000,12.0000000,47.281653000000,-2.508011000000,,"Après Plage du Port Lin, Le Croisic",34277,observation-193b5a50-cf2a-4ccf-9e36-43fecb37a4ec,https://biolit.fr/observations/observation-193b5a50-cf2a-4ccf-9e36-43fecb37a4ec/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_5424_0-rotated.jpg,,TRUE, +N1,58807,sortie-193b5a50-cf2a-4ccf-9e36-43fecb37a4ec,https://biolit.fr/sorties/sortie-193b5a50-cf2a-4ccf-9e36-43fecb37a4ec/,Sophie Lacombe,,6/25/2021 0:00,11.0000000,12.0000000,47.281653000000,-2.508011000000,,"Après Plage du Port Lin, Le Croisic",34279,observation-193b5a50-cf2a-4ccf-9e36-43fecb37a4ec-2,https://biolit.fr/observations/observation-193b5a50-cf2a-4ccf-9e36-43fecb37a4ec-2/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5425_0-rotated.jpg,,TRUE, +N1,58807,sortie-193b5a50-cf2a-4ccf-9e36-43fecb37a4ec,https://biolit.fr/sorties/sortie-193b5a50-cf2a-4ccf-9e36-43fecb37a4ec/,Sophie Lacombe,,6/25/2021 0:00,11.0000000,12.0000000,47.281653000000,-2.508011000000,,"Après Plage du Port Lin, Le Croisic",34281,observation-193b5a50-cf2a-4ccf-9e36-43fecb37a4ec-3,https://biolit.fr/observations/observation-193b5a50-cf2a-4ccf-9e36-43fecb37a4ec-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_5427_0-rotated.jpg,,TRUE, +N1,58808,sortie-da3b4488-da1b-4018-a1c0-262e8ab7e838,https://biolit.fr/sorties/sortie-da3b4488-da1b-4018-a1c0-262e8ab7e838/,Sophie Lacombe,,6/25/2021 0:00,10.0000000,12.0000000,47.283798000000,-2.51442700000,,"Plage du Port Lin, Le Croisic",34283,observation-da3b4488-da1b-4018-a1c0-262e8ab7e838,https://biolit.fr/observations/observation-da3b4488-da1b-4018-a1c0-262e8ab7e838/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5417-rotated.jpg,,FALSE, +N1,58809,sortie-6eeeb246-0126-4747-9baa-e18117e00d14,https://biolit.fr/sorties/sortie-6eeeb246-0126-4747-9baa-e18117e00d14/,Sophie Lacombe,,07/06/2021,14.0000000,16.0000000,47.282903000000,-2.512743000000,,"Après Plage du Port Lin, Le Croisic",34285,observation-6eeeb246-0126-4747-9baa-e18117e00d14,https://biolit.fr/observations/observation-6eeeb246-0126-4747-9baa-e18117e00d14/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_5419-rotated.jpg,,TRUE, +N1,58809,sortie-6eeeb246-0126-4747-9baa-e18117e00d14,https://biolit.fr/sorties/sortie-6eeeb246-0126-4747-9baa-e18117e00d14/,Sophie Lacombe,,07/06/2021,14.0000000,16.0000000,47.282903000000,-2.512743000000,,"Après Plage du Port Lin, Le Croisic",34287,observation-6eeeb246-0126-4747-9baa-e18117e00d14-2,https://biolit.fr/observations/observation-6eeeb246-0126-4747-9baa-e18117e00d14-2/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5420-rotated.jpg,,TRUE, +N1,58809,sortie-6eeeb246-0126-4747-9baa-e18117e00d14,https://biolit.fr/sorties/sortie-6eeeb246-0126-4747-9baa-e18117e00d14/,Sophie Lacombe,,07/06/2021,14.0000000,16.0000000,47.282903000000,-2.512743000000,,"Après Plage du Port Lin, Le Croisic",34289,observation-6eeeb246-0126-4747-9baa-e18117e00d14-3,https://biolit.fr/observations/observation-6eeeb246-0126-4747-9baa-e18117e00d14-3/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5421-rotated.jpg,,TRUE, +N1,58809,sortie-6eeeb246-0126-4747-9baa-e18117e00d14,https://biolit.fr/sorties/sortie-6eeeb246-0126-4747-9baa-e18117e00d14/,Sophie Lacombe,,07/06/2021,14.0000000,16.0000000,47.282903000000,-2.512743000000,,"Après Plage du Port Lin, Le Croisic",34291,observation-6eeeb246-0126-4747-9baa-e18117e00d14-4,https://biolit.fr/observations/observation-6eeeb246-0126-4747-9baa-e18117e00d14-4/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5422-rotated.jpg,,TRUE, +N1,58809,sortie-6eeeb246-0126-4747-9baa-e18117e00d14,https://biolit.fr/sorties/sortie-6eeeb246-0126-4747-9baa-e18117e00d14/,Sophie Lacombe,,07/06/2021,14.0000000,16.0000000,47.282903000000,-2.512743000000,,"Après Plage du Port Lin, Le Croisic",34293,observation-6eeeb246-0126-4747-9baa-e18117e00d14-5,https://biolit.fr/observations/observation-6eeeb246-0126-4747-9baa-e18117e00d14-5/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5423-rotated.jpg,,TRUE, +N1,58809,sortie-6eeeb246-0126-4747-9baa-e18117e00d14,https://biolit.fr/sorties/sortie-6eeeb246-0126-4747-9baa-e18117e00d14/,Sophie Lacombe,,07/06/2021,14.0000000,16.0000000,47.282903000000,-2.512743000000,,"Après Plage du Port Lin, Le Croisic",34295,observation-6eeeb246-0126-4747-9baa-e18117e00d14-6,https://biolit.fr/observations/observation-6eeeb246-0126-4747-9baa-e18117e00d14-6/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5424-rotated.jpg,,TRUE, +N1,58809,sortie-6eeeb246-0126-4747-9baa-e18117e00d14,https://biolit.fr/sorties/sortie-6eeeb246-0126-4747-9baa-e18117e00d14/,Sophie Lacombe,,07/06/2021,14.0000000,16.0000000,47.282903000000,-2.512743000000,,"Après Plage du Port Lin, Le Croisic",34297,observation-6eeeb246-0126-4747-9baa-e18117e00d14-7,https://biolit.fr/observations/observation-6eeeb246-0126-4747-9baa-e18117e00d14-7/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5425-rotated.jpg,,TRUE, +N1,58810,sortie-784222d4-23cc-4a00-aaf8-52d3dca5b290,https://biolit.fr/sorties/sortie-784222d4-23cc-4a00-aaf8-52d3dca5b290/,Sophie Lacombe,,6/25/2021 0:00,10.0000000,12.0000000,47.283709000000,-2.514095000000,,"Plage du Port Lin, Le Croisic",34299,observation-784222d4-23cc-4a00-aaf8-52d3dca5b290,https://biolit.fr/observations/observation-784222d4-23cc-4a00-aaf8-52d3dca5b290/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5404-rotated.jpg,,TRUE, +N1,58810,sortie-784222d4-23cc-4a00-aaf8-52d3dca5b290,https://biolit.fr/sorties/sortie-784222d4-23cc-4a00-aaf8-52d3dca5b290/,Sophie Lacombe,,6/25/2021 0:00,10.0000000,12.0000000,47.283709000000,-2.514095000000,,"Plage du Port Lin, Le Croisic",34301,observation-784222d4-23cc-4a00-aaf8-52d3dca5b290-2,https://biolit.fr/observations/observation-784222d4-23cc-4a00-aaf8-52d3dca5b290-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5405-rotated.jpg,,TRUE, +N1,58810,sortie-784222d4-23cc-4a00-aaf8-52d3dca5b290,https://biolit.fr/sorties/sortie-784222d4-23cc-4a00-aaf8-52d3dca5b290/,Sophie Lacombe,,6/25/2021 0:00,10.0000000,12.0000000,47.283709000000,-2.514095000000,,"Plage du Port Lin, Le Croisic",34303,observation-784222d4-23cc-4a00-aaf8-52d3dca5b290-3,https://biolit.fr/observations/observation-784222d4-23cc-4a00-aaf8-52d3dca5b290-3/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5406-rotated.jpg,,TRUE, +N1,58810,sortie-784222d4-23cc-4a00-aaf8-52d3dca5b290,https://biolit.fr/sorties/sortie-784222d4-23cc-4a00-aaf8-52d3dca5b290/,Sophie Lacombe,,6/25/2021 0:00,10.0000000,12.0000000,47.283709000000,-2.514095000000,,"Plage du Port Lin, Le Croisic",34305,observation-784222d4-23cc-4a00-aaf8-52d3dca5b290-4,https://biolit.fr/observations/observation-784222d4-23cc-4a00-aaf8-52d3dca5b290-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_5407_2-rotated.jpg,,TRUE, +N1,58811,sortie-92e1371a-6bc8-4962-a176-425b3a344473,https://biolit.fr/sorties/sortie-92e1371a-6bc8-4962-a176-425b3a344473/,Fédération l'Air et Moi,,6/30/2021 0:00,11.0000000,11.0000000,43.284197000000,5.315612000000,Planète Mer,Plage de Saint-Estève,34307,observation-92e1371a-6bc8-4962-a176-425b3a344473,https://biolit.fr/observations/observation-92e1371a-6bc8-4962-a176-425b3a344473/,Malva arborea,Lavatère arborescente,,https://biolit.fr/wp-content/uploads/2023/07/207302246_980583859373088_1719065115760592442_n.jpg,,TRUE, +N1,58811,sortie-92e1371a-6bc8-4962-a176-425b3a344473,https://biolit.fr/sorties/sortie-92e1371a-6bc8-4962-a176-425b3a344473/,Fédération l'Air et Moi,,6/30/2021 0:00,11.0000000,11.0000000,43.284197000000,5.315612000000,Planète Mer,Plage de Saint-Estève,34309,observation-92e1371a-6bc8-4962-a176-425b3a344473-2,https://biolit.fr/observations/observation-92e1371a-6bc8-4962-a176-425b3a344473-2/,Opuntia ficus,Figuier de barbarie,,https://biolit.fr/wp-content/uploads/2023/07/205929174_2905989362973768_6824310987621903004_n.jpg,,TRUE, +N1,58811,sortie-92e1371a-6bc8-4962-a176-425b3a344473,https://biolit.fr/sorties/sortie-92e1371a-6bc8-4962-a176-425b3a344473/,Fédération l'Air et Moi,,6/30/2021 0:00,11.0000000,11.0000000,43.284197000000,5.315612000000,Planète Mer,Plage de Saint-Estève,34311,observation-92e1371a-6bc8-4962-a176-425b3a344473-3,https://biolit.fr/observations/observation-92e1371a-6bc8-4962-a176-425b3a344473-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/205611501_4065032486920676_4298187741079484196_n.jpg,,FALSE, +N1,58811,sortie-92e1371a-6bc8-4962-a176-425b3a344473,https://biolit.fr/sorties/sortie-92e1371a-6bc8-4962-a176-425b3a344473/,Fédération l'Air et Moi,,6/30/2021 0:00,11.0000000,11.0000000,43.284197000000,5.315612000000,Planète Mer,Plage de Saint-Estève,34313,observation-92e1371a-6bc8-4962-a176-425b3a344473-4,https://biolit.fr/observations/observation-92e1371a-6bc8-4962-a176-425b3a344473-4/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/206235854_4216434748418478_5778785240307774591_n.jpg,,TRUE, +N1,58811,sortie-92e1371a-6bc8-4962-a176-425b3a344473,https://biolit.fr/sorties/sortie-92e1371a-6bc8-4962-a176-425b3a344473/,Fédération l'Air et Moi,,6/30/2021 0:00,11.0000000,11.0000000,43.284197000000,5.315612000000,Planète Mer,Plage de Saint-Estève,34315,observation-92e1371a-6bc8-4962-a176-425b3a344473-5,https://biolit.fr/observations/observation-92e1371a-6bc8-4962-a176-425b3a344473-5/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/206356666_132612295643389_3994915632084453114_n.jpg,,TRUE, +N1,58811,sortie-92e1371a-6bc8-4962-a176-425b3a344473,https://biolit.fr/sorties/sortie-92e1371a-6bc8-4962-a176-425b3a344473/,Fédération l'Air et Moi,,6/30/2021 0:00,11.0000000,11.0000000,43.284197000000,5.315612000000,Planète Mer,Plage de Saint-Estève,34317,observation-92e1371a-6bc8-4962-a176-425b3a344473-6,https://biolit.fr/observations/observation-92e1371a-6bc8-4962-a176-425b3a344473-6/,Larus michahellis,Goéland leucophée,,https://biolit.fr/wp-content/uploads/2023/07/206968052_237803364559395_5846758407393224630_n.jpg,,TRUE, +N1,58811,sortie-92e1371a-6bc8-4962-a176-425b3a344473,https://biolit.fr/sorties/sortie-92e1371a-6bc8-4962-a176-425b3a344473/,Fédération l'Air et Moi,,6/30/2021 0:00,11.0000000,11.0000000,43.284197000000,5.315612000000,Planète Mer,Plage de Saint-Estève,34319,observation-92e1371a-6bc8-4962-a176-425b3a344473-7,https://biolit.fr/observations/observation-92e1371a-6bc8-4962-a176-425b3a344473-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/206369765_782868685729692_1920535679997872682_n.jpg,,FALSE, +N1,58811,sortie-92e1371a-6bc8-4962-a176-425b3a344473,https://biolit.fr/sorties/sortie-92e1371a-6bc8-4962-a176-425b3a344473/,Fédération l'Air et Moi,,6/30/2021 0:00,11.0000000,11.0000000,43.284197000000,5.315612000000,Planète Mer,Plage de Saint-Estève,34321,observation-92e1371a-6bc8-4962-a176-425b3a344473-8,https://biolit.fr/observations/observation-92e1371a-6bc8-4962-a176-425b3a344473-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/206369765_3827504860712360_2208807837340475607_n.jpg,,FALSE, +N1,58811,sortie-92e1371a-6bc8-4962-a176-425b3a344473,https://biolit.fr/sorties/sortie-92e1371a-6bc8-4962-a176-425b3a344473/,Fédération l'Air et Moi,,6/30/2021 0:00,11.0000000,11.0000000,43.284197000000,5.315612000000,Planète Mer,Plage de Saint-Estève,34323,observation-92e1371a-6bc8-4962-a176-425b3a344473-9,https://biolit.fr/observations/observation-92e1371a-6bc8-4962-a176-425b3a344473-9/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/206379138_243969500508603_7549609511567527741_n.jpg,,TRUE, +N1,58811,sortie-92e1371a-6bc8-4962-a176-425b3a344473,https://biolit.fr/sorties/sortie-92e1371a-6bc8-4962-a176-425b3a344473/,Fédération l'Air et Moi,,6/30/2021 0:00,11.0000000,11.0000000,43.284197000000,5.315612000000,Planète Mer,Plage de Saint-Estève,34325,observation-92e1371a-6bc8-4962-a176-425b3a344473-10,https://biolit.fr/observations/observation-92e1371a-6bc8-4962-a176-425b3a344473-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/207095689_502469914367709_429175979510162535_n.jpg,,FALSE, +N1,58812,sortie-d706edea-e6e9-441b-95cb-483e5babb810,https://biolit.fr/sorties/sortie-d706edea-e6e9-441b-95cb-483e5babb810/,Youenn Le Lorec,,6/25/2021 0:00,11.0000000,13.0000000,47.26666700000,-2.454871000000,,"BATZ SUR MER, plage de la govelle",34327,observation-d706edea-e6e9-441b-95cb-483e5babb810,https://biolit.fr/observations/observation-d706edea-e6e9-441b-95cb-483e5babb810/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/20210625_112445-scaled.jpg,,TRUE, +N1,58813,sortie-c751d606-87f3-4629-852d-090fb03f3571,https://biolit.fr/sorties/sortie-c751d606-87f3-4629-852d-090fb03f3571/,Youenn Le Lorec,,6/25/2021 0:00,9.0000000,11.0000000,47.283997000000,-2.513199000000,,"Le Croisic, plage du port Lin",34329,observation-c751d606-87f3-4629-852d-090fb03f3571,https://biolit.fr/observations/observation-c751d606-87f3-4629-852d-090fb03f3571/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20210625_092739_0-scaled.jpg,,TRUE, +N1,58813,sortie-c751d606-87f3-4629-852d-090fb03f3571,https://biolit.fr/sorties/sortie-c751d606-87f3-4629-852d-090fb03f3571/,Youenn Le Lorec,,6/25/2021 0:00,9.0000000,11.0000000,47.283997000000,-2.513199000000,,"Le Croisic, plage du port Lin",34331,observation-c751d606-87f3-4629-852d-090fb03f3571-2,https://biolit.fr/observations/observation-c751d606-87f3-4629-852d-090fb03f3571-2/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/20210625_092852_0-scaled.jpg,,TRUE, +N1,58813,sortie-c751d606-87f3-4629-852d-090fb03f3571,https://biolit.fr/sorties/sortie-c751d606-87f3-4629-852d-090fb03f3571/,Youenn Le Lorec,,6/25/2021 0:00,9.0000000,11.0000000,47.283997000000,-2.513199000000,,"Le Croisic, plage du port Lin",34333,observation-c751d606-87f3-4629-852d-090fb03f3571-3,https://biolit.fr/observations/observation-c751d606-87f3-4629-852d-090fb03f3571-3/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/20210625_093236_0-scaled.jpg,,TRUE, +N1,58813,sortie-c751d606-87f3-4629-852d-090fb03f3571,https://biolit.fr/sorties/sortie-c751d606-87f3-4629-852d-090fb03f3571/,Youenn Le Lorec,,6/25/2021 0:00,9.0000000,11.0000000,47.283997000000,-2.513199000000,,"Le Croisic, plage du port Lin",34335,observation-c751d606-87f3-4629-852d-090fb03f3571-4,https://biolit.fr/observations/observation-c751d606-87f3-4629-852d-090fb03f3571-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210625_094255_0-scaled.jpg,,FALSE, +N1,58813,sortie-c751d606-87f3-4629-852d-090fb03f3571,https://biolit.fr/sorties/sortie-c751d606-87f3-4629-852d-090fb03f3571/,Youenn Le Lorec,,6/25/2021 0:00,9.0000000,11.0000000,47.283997000000,-2.513199000000,,"Le Croisic, plage du port Lin",34337,observation-c751d606-87f3-4629-852d-090fb03f3571-5,https://biolit.fr/observations/observation-c751d606-87f3-4629-852d-090fb03f3571-5/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210625_094318(0)_0-scaled.jpg,,TRUE, +N1,58813,sortie-c751d606-87f3-4629-852d-090fb03f3571,https://biolit.fr/sorties/sortie-c751d606-87f3-4629-852d-090fb03f3571/,Youenn Le Lorec,,6/25/2021 0:00,9.0000000,11.0000000,47.283997000000,-2.513199000000,,"Le Croisic, plage du port Lin",34339,observation-c751d606-87f3-4629-852d-090fb03f3571-6,https://biolit.fr/observations/observation-c751d606-87f3-4629-852d-090fb03f3571-6/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/20210625_094835_0-scaled.jpg,,TRUE, +N1,58814,sortie-00839426-e379-4186-a672-e7870fbe3c30,https://biolit.fr/sorties/sortie-00839426-e379-4186-a672-e7870fbe3c30/,v.berting,,6/29/2021 0:00,10.0000000,10.000005,49.985309000000,1.211440000000,,plage de Dieppe,34341,observation-00839426-e379-4186-a672-e7870fbe3c30,https://biolit.fr/observations/observation-00839426-e379-4186-a672-e7870fbe3c30/,,,,https://biolit.fr/wp-content/uploads/2023/07/observation-du-29-juin-2021-ConvertImage.jpg,,FALSE, +N1,58815,sortie-83c57a9b-25bb-473e-a876-abcc978a2909,https://biolit.fr/sorties/sortie-83c57a9b-25bb-473e-a876-abcc978a2909/,MarineGoyallon,,6/26/2021 0:00,14.0000000,16.0000000,47.269540000000,-2.464624000000,,Batz sur Mer,34343,observation-83c57a9b-25bb-473e-a876-abcc978a2909,https://biolit.fr/observations/observation-83c57a9b-25bb-473e-a876-abcc978a2909/,,,,https://biolit.fr/wp-content/uploads/2023/07/52.PNG,,FALSE, +N1,58815,sortie-83c57a9b-25bb-473e-a876-abcc978a2909,https://biolit.fr/sorties/sortie-83c57a9b-25bb-473e-a876-abcc978a2909/,MarineGoyallon,,6/26/2021 0:00,14.0000000,16.0000000,47.269540000000,-2.464624000000,,Batz sur Mer,34344,observation-83c57a9b-25bb-473e-a876-abcc978a2909-2,https://biolit.fr/observations/observation-83c57a9b-25bb-473e-a876-abcc978a2909-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/53.jpg,,FALSE, +N1,58815,sortie-83c57a9b-25bb-473e-a876-abcc978a2909,https://biolit.fr/sorties/sortie-83c57a9b-25bb-473e-a876-abcc978a2909/,MarineGoyallon,,6/26/2021 0:00,14.0000000,16.0000000,47.269540000000,-2.464624000000,,Batz sur Mer,34346,observation-83c57a9b-25bb-473e-a876-abcc978a2909-3,https://biolit.fr/observations/observation-83c57a9b-25bb-473e-a876-abcc978a2909-3/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/54.jpg,,TRUE, +N1,58816,sortie-35726cbc-b3c5-45b9-8da3-4321f5e5fdc5,https://biolit.fr/sorties/sortie-35726cbc-b3c5-45b9-8da3-4321f5e5fdc5/,MarineGoyallon,,6/26/2021 0:00,11.0000000,13.0000000,47.270642000000,-2.474355000000,,Batz sur Mer,34348,observation-35726cbc-b3c5-45b9-8da3-4321f5e5fdc5,https://biolit.fr/observations/observation-35726cbc-b3c5-45b9-8da3-4321f5e5fdc5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/42.jpg,,TRUE, +N1,58816,sortie-35726cbc-b3c5-45b9-8da3-4321f5e5fdc5,https://biolit.fr/sorties/sortie-35726cbc-b3c5-45b9-8da3-4321f5e5fdc5/,MarineGoyallon,,6/26/2021 0:00,11.0000000,13.0000000,47.270642000000,-2.474355000000,,Batz sur Mer,34350,observation-35726cbc-b3c5-45b9-8da3-4321f5e5fdc5-2,https://biolit.fr/observations/observation-35726cbc-b3c5-45b9-8da3-4321f5e5fdc5-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/43.jpg,,TRUE, +N1,58816,sortie-35726cbc-b3c5-45b9-8da3-4321f5e5fdc5,https://biolit.fr/sorties/sortie-35726cbc-b3c5-45b9-8da3-4321f5e5fdc5/,MarineGoyallon,,6/26/2021 0:00,11.0000000,13.0000000,47.270642000000,-2.474355000000,,Batz sur Mer,34352,observation-35726cbc-b3c5-45b9-8da3-4321f5e5fdc5-3,https://biolit.fr/observations/observation-35726cbc-b3c5-45b9-8da3-4321f5e5fdc5-3/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/44_0.jpg,,TRUE, +N1,58816,sortie-35726cbc-b3c5-45b9-8da3-4321f5e5fdc5,https://biolit.fr/sorties/sortie-35726cbc-b3c5-45b9-8da3-4321f5e5fdc5/,MarineGoyallon,,6/26/2021 0:00,11.0000000,13.0000000,47.270642000000,-2.474355000000,,Batz sur Mer,34354,observation-35726cbc-b3c5-45b9-8da3-4321f5e5fdc5-4,https://biolit.fr/observations/observation-35726cbc-b3c5-45b9-8da3-4321f5e5fdc5-4/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/45.jpg,,TRUE, +N1,58817,sortie-51d993dd-8076-43a4-a8bd-497f29a4a4ef,https://biolit.fr/sorties/sortie-51d993dd-8076-43a4-a8bd-497f29a4a4ef/,MarineGoyallon,,6/26/2021 0:00,9.0000000,9.0000000,47.259326000000,-2.432646000000,,Plage du Guec,34356,observation-51d993dd-8076-43a4-a8bd-497f29a4a4ef,https://biolit.fr/observations/observation-51d993dd-8076-43a4-a8bd-497f29a4a4ef/,Allium sphaerocephalon,Ail à tête ronde,,https://biolit.fr/wp-content/uploads/2023/07/32.jpg,,TRUE, +N1,58818,sortie-b7083a69-abf1-46b0-9dda-e56f18122734,https://biolit.fr/sorties/sortie-b7083a69-abf1-46b0-9dda-e56f18122734/,MarineGoyallon,,6/26/2021 0:00,9.0000000,13.0000000,47.284143000000,-2.513617000000,,Plage du Port Lin,34358,observation-b7083a69-abf1-46b0-9dda-e56f18122734,https://biolit.fr/observations/observation-b7083a69-abf1-46b0-9dda-e56f18122734/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/22..jpg,,TRUE, +N1,58818,sortie-b7083a69-abf1-46b0-9dda-e56f18122734,https://biolit.fr/sorties/sortie-b7083a69-abf1-46b0-9dda-e56f18122734/,MarineGoyallon,,6/26/2021 0:00,9.0000000,13.0000000,47.284143000000,-2.513617000000,,Plage du Port Lin,34360,observation-b7083a69-abf1-46b0-9dda-e56f18122734-2,https://biolit.fr/observations/observation-b7083a69-abf1-46b0-9dda-e56f18122734-2/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/23.jpg,,TRUE, +N1,58818,sortie-b7083a69-abf1-46b0-9dda-e56f18122734,https://biolit.fr/sorties/sortie-b7083a69-abf1-46b0-9dda-e56f18122734/,MarineGoyallon,,6/26/2021 0:00,9.0000000,13.0000000,47.284143000000,-2.513617000000,,Plage du Port Lin,34362,observation-b7083a69-abf1-46b0-9dda-e56f18122734-3,https://biolit.fr/observations/observation-b7083a69-abf1-46b0-9dda-e56f18122734-3/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/24.jpg,,TRUE, +N1,58818,sortie-b7083a69-abf1-46b0-9dda-e56f18122734,https://biolit.fr/sorties/sortie-b7083a69-abf1-46b0-9dda-e56f18122734/,MarineGoyallon,,6/26/2021 0:00,9.0000000,13.0000000,47.284143000000,-2.513617000000,,Plage du Port Lin,34364,observation-b7083a69-abf1-46b0-9dda-e56f18122734-4,https://biolit.fr/observations/observation-b7083a69-abf1-46b0-9dda-e56f18122734-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/25.jpg,,TRUE, +N1,58818,sortie-b7083a69-abf1-46b0-9dda-e56f18122734,https://biolit.fr/sorties/sortie-b7083a69-abf1-46b0-9dda-e56f18122734/,MarineGoyallon,,6/26/2021 0:00,9.0000000,13.0000000,47.284143000000,-2.513617000000,,Plage du Port Lin,34366,observation-b7083a69-abf1-46b0-9dda-e56f18122734-5,https://biolit.fr/observations/observation-b7083a69-abf1-46b0-9dda-e56f18122734-5/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/26.jpg,,TRUE, +N1,58818,sortie-b7083a69-abf1-46b0-9dda-e56f18122734,https://biolit.fr/sorties/sortie-b7083a69-abf1-46b0-9dda-e56f18122734/,MarineGoyallon,,6/26/2021 0:00,9.0000000,13.0000000,47.284143000000,-2.513617000000,,Plage du Port Lin,34368,observation-b7083a69-abf1-46b0-9dda-e56f18122734-6,https://biolit.fr/observations/observation-b7083a69-abf1-46b0-9dda-e56f18122734-6/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/27.jpg,,TRUE, +N1,58819,sortie-533be709-5b54-48ec-954b-a7b04ea1c9c0,https://biolit.fr/sorties/sortie-533be709-5b54-48ec-954b-a7b04ea1c9c0/,MarineGoyallon,,6/26/2021 0:00,12.0000000,13.0000000,47.25611000000,-2.239930000000,,Plage de Kerlédé,34370,observation-533be709-5b54-48ec-954b-a7b04ea1c9c0,https://biolit.fr/observations/observation-533be709-5b54-48ec-954b-a7b04ea1c9c0/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8598[1]-scaled.jpg,,TRUE, +N1,58819,sortie-533be709-5b54-48ec-954b-a7b04ea1c9c0,https://biolit.fr/sorties/sortie-533be709-5b54-48ec-954b-a7b04ea1c9c0/,MarineGoyallon,,6/26/2021 0:00,12.0000000,13.0000000,47.25611000000,-2.239930000000,,Plage de Kerlédé,34372,observation-533be709-5b54-48ec-954b-a7b04ea1c9c0-2,https://biolit.fr/observations/observation-533be709-5b54-48ec-954b-a7b04ea1c9c0-2/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8599[1]-scaled.jpg,,TRUE, +N1,58819,sortie-533be709-5b54-48ec-954b-a7b04ea1c9c0,https://biolit.fr/sorties/sortie-533be709-5b54-48ec-954b-a7b04ea1c9c0/,MarineGoyallon,,6/26/2021 0:00,12.0000000,13.0000000,47.25611000000,-2.239930000000,,Plage de Kerlédé,34374,observation-533be709-5b54-48ec-954b-a7b04ea1c9c0-3,https://biolit.fr/observations/observation-533be709-5b54-48ec-954b-a7b04ea1c9c0-3/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/11.jpg,,TRUE, +N1,58819,sortie-533be709-5b54-48ec-954b-a7b04ea1c9c0,https://biolit.fr/sorties/sortie-533be709-5b54-48ec-954b-a7b04ea1c9c0/,MarineGoyallon,,6/26/2021 0:00,12.0000000,13.0000000,47.25611000000,-2.239930000000,,Plage de Kerlédé,34376,observation-533be709-5b54-48ec-954b-a7b04ea1c9c0-4,https://biolit.fr/observations/observation-533be709-5b54-48ec-954b-a7b04ea1c9c0-4/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/12_0.jpg,,TRUE, +N1,58819,sortie-533be709-5b54-48ec-954b-a7b04ea1c9c0,https://biolit.fr/sorties/sortie-533be709-5b54-48ec-954b-a7b04ea1c9c0/,MarineGoyallon,,6/26/2021 0:00,12.0000000,13.0000000,47.25611000000,-2.239930000000,,Plage de Kerlédé,34378,observation-533be709-5b54-48ec-954b-a7b04ea1c9c0-5,https://biolit.fr/observations/observation-533be709-5b54-48ec-954b-a7b04ea1c9c0-5/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/13.jpg,,TRUE, +N1,58819,sortie-533be709-5b54-48ec-954b-a7b04ea1c9c0,https://biolit.fr/sorties/sortie-533be709-5b54-48ec-954b-a7b04ea1c9c0/,MarineGoyallon,,6/26/2021 0:00,12.0000000,13.0000000,47.25611000000,-2.239930000000,,Plage de Kerlédé,34380,observation-533be709-5b54-48ec-954b-a7b04ea1c9c0-6,https://biolit.fr/observations/observation-533be709-5b54-48ec-954b-a7b04ea1c9c0-6/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/14.jpg,,TRUE, +N1,58819,sortie-533be709-5b54-48ec-954b-a7b04ea1c9c0,https://biolit.fr/sorties/sortie-533be709-5b54-48ec-954b-a7b04ea1c9c0/,MarineGoyallon,,6/26/2021 0:00,12.0000000,13.0000000,47.25611000000,-2.239930000000,,Plage de Kerlédé,34382,observation-533be709-5b54-48ec-954b-a7b04ea1c9c0-7,https://biolit.fr/observations/observation-533be709-5b54-48ec-954b-a7b04ea1c9c0-7/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/15_0.jpg,,TRUE, +N1,58820,sortie-0dc1501b-cf25-4f99-ab49-56b711dcc4cb,https://biolit.fr/sorties/sortie-0dc1501b-cf25-4f99-ab49-56b711dcc4cb/,S DENIS,,6/25/2021 0:00,13.0000000,17.0000000,45.805994000000,-1.239498000000,,Maumusson,34386,observation-0dc1501b-cf25-4f99-ab49-56b711dcc4cb,https://biolit.fr/observations/observation-0dc1501b-cf25-4f99-ab49-56b711dcc4cb/,Matthiola sinuata,Giroflée des dunes,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0501_1-scaled.jpg,,TRUE, +N1,58821,sortie-599012d7-2a25-40da-8eea-0f5d9b8d6012,https://biolit.fr/sorties/sortie-599012d7-2a25-40da-8eea-0f5d9b8d6012/,S DENIS,,6/25/2021 0:00,13.0000000,17.0000000,45.803682000000,-1.238618000000,,Maumusson,34388,observation-599012d7-2a25-40da-8eea-0f5d9b8d6012,https://biolit.fr/observations/observation-599012d7-2a25-40da-8eea-0f5d9b8d6012/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0500-scaled.jpg,,FALSE, +N1,58822,sortie-eaf057cb-4ecc-418a-ada7-6a6e74dabbf9,https://biolit.fr/sorties/sortie-eaf057cb-4ecc-418a-ada7-6a6e74dabbf9/,S DENIS,,6/25/2021 0:00,13.0000000,17.0000000,45.800729000000,-1.231601000000,,Plage de Gatseau,34390,observation-eaf057cb-4ecc-418a-ada7-6a6e74dabbf9,https://biolit.fr/observations/observation-eaf057cb-4ecc-418a-ada7-6a6e74dabbf9/,Chrysaora hysoscella,Méduse rayonnée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0499_0-scaled.jpg,,TRUE, +N1,58823,sortie-eac81380-089e-4b77-a62f-47b69900fa02,https://biolit.fr/sorties/sortie-eac81380-089e-4b77-a62f-47b69900fa02/,S DENIS,,6/25/2021 0:00,13.0000000,17.0000000,45.80888700000,-1.226130000000,,Plage de Gatseau,34392,observation-eac81380-089e-4b77-a62f-47b69900fa02,https://biolit.fr/observations/observation-eac81380-089e-4b77-a62f-47b69900fa02/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0493-scaled.jpg,,TRUE, +N1,58824,sortie-07bc9aec-558b-434b-acd4-fb5353bedba1,https://biolit.fr/sorties/sortie-07bc9aec-558b-434b-acd4-fb5353bedba1/,S DENIS,,6/25/2021 0:00,13.0000000,17.0000000,45.801208000000,-1.232460000000,,Plage de Gatseau,34394,observation-07bc9aec-558b-434b-acd4-fb5353bedba1,https://biolit.fr/observations/observation-07bc9aec-558b-434b-acd4-fb5353bedba1/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0496-scaled.jpg,,TRUE, +N1,58825,sortie-1f5d22a7-f3f7-4b0e-821a-f361fb4f709b,https://biolit.fr/sorties/sortie-1f5d22a7-f3f7-4b0e-821a-f361fb4f709b/,S DENIS,,6/25/2021 0:00,13.0000000,17.0000000,45.80299400000,-1.227031000000,,Plage de Gatseau,34396,observation-1f5d22a7-f3f7-4b0e-821a-f361fb4f709b,https://biolit.fr/observations/observation-1f5d22a7-f3f7-4b0e-821a-f361fb4f709b/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_0487-scaled.jpg,,TRUE, +N1,58826,sortie-509407fe-e748-4a6b-8537-c18c5f8f376e,https://biolit.fr/sorties/sortie-509407fe-e748-4a6b-8537-c18c5f8f376e/,S DENIS,,6/25/2021 0:00,13.0000000,17.0000000,45.810129000000,-1.225186000000,,Plage de Gatseau,34398,observation-509407fe-e748-4a6b-8537-c18c5f8f376e,https://biolit.fr/observations/observation-509407fe-e748-4a6b-8537-c18c5f8f376e/,Lotus corniculatus,Lotier corniculé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0484-scaled.jpg,,TRUE, +N1,58827,sortie-9da74cea-8981-4f1a-bc6d-5250849d8300,https://biolit.fr/sorties/sortie-9da74cea-8981-4f1a-bc6d-5250849d8300/,S DENIS,,6/25/2021 0:00,13.0000000,17.0000000,45.810682000000,-1.224499000000,,Plage de Ga,34400,observation-9da74cea-8981-4f1a-bc6d-5250849d8300,https://biolit.fr/observations/observation-9da74cea-8981-4f1a-bc6d-5250849d8300/,Yucca gloriosa,Yucca,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0483_0-scaled.jpg,,TRUE, +N1,58828,sortie-47a4c804-c847-4280-8542-d447db5f17fb,https://biolit.fr/sorties/sortie-47a4c804-c847-4280-8542-d447db5f17fb/,S DENIS,,6/25/2021 0:00,13.0000000,17.0000000,45.81062200000,-1.224714000000,,Plage de Gatseau,,,,,,,,,, +N1,58829,sortie-73e3e2ba-5a56-411a-9c72-edad2bde4042,https://biolit.fr/sorties/sortie-73e3e2ba-5a56-411a-9c72-edad2bde4042/,S DENIS,,6/25/2021 0:00,13.0000000,17.0000000,45.81062200000,-1.224714000000,,Plage de Gatseau,34404,observation-73e3e2ba-5a56-411a-9c72-edad2bde4042,https://biolit.fr/observations/observation-73e3e2ba-5a56-411a-9c72-edad2bde4042/,Oenothera glazioviana,Onagre à sépales rouges,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0478-scaled.jpg,,TRUE, +N1,58831,sortie-70b49989-49c4-4c00-91b1-5be7af50b99c,https://biolit.fr/sorties/sortie-70b49989-49c4-4c00-91b1-5be7af50b99c/,S DENIS,,6/25/2021 0:00,8.0000000,13.0000000,45.793610000000,-1.176187000000,,Plage de la Cèpe,34407,observation-70b49989-49c4-4c00-91b1-5be7af50b99c,https://biolit.fr/observations/observation-70b49989-49c4-4c00-91b1-5be7af50b99c/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0471-scaled.jpg,,FALSE, +N1,58832,sortie-3ddf2381-4032-4d84-8106-9781861d18d0,https://biolit.fr/sorties/sortie-3ddf2381-4032-4d84-8106-9781861d18d0/,S DENIS,,6/25/2021 0:00,8.0000000,13.0000000,45.793629000000,-1.176348000000,,Plage de la Cèpe,34409,observation-3ddf2381-4032-4d84-8106-9781861d18d0,https://biolit.fr/observations/observation-3ddf2381-4032-4d84-8106-9781861d18d0/,Tripleurospermum maritimum,Matricaire maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0468-scaled.jpg,,TRUE, +N1,58833,sortie-0741bb0f-0de1-42d8-ae0d-ba98d64390f5,https://biolit.fr/sorties/sortie-0741bb0f-0de1-42d8-ae0d-ba98d64390f5/,S DENIS,,6/25/2021 0:00,8.0000000,13.0000000,45.79377900000,-1.175318000000,,Plage de la Cèpe,34411,observation-0741bb0f-0de1-42d8-ae0d-ba98d64390f5,https://biolit.fr/observations/observation-0741bb0f-0de1-42d8-ae0d-ba98d64390f5/,Calystegia soldanella,Liseron des dunes,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0462-scaled.jpg,,TRUE, +N1,58834,sortie-529f222f-fee8-4fcb-b275-e04a14604b5a,https://biolit.fr/sorties/sortie-529f222f-fee8-4fcb-b275-e04a14604b5a/,S DENIS,,6/25/2021 0:00,8.0000000,13.0000000,45.794201000000,-1.173837000000,,Plage de la Cèpe,34413,observation-529f222f-fee8-4fcb-b275-e04a14604b5a,https://biolit.fr/observations/observation-529f222f-fee8-4fcb-b275-e04a14604b5a/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0458-scaled.jpg,,TRUE, +N1,58835,sortie-dda24bf5-d548-4294-b4d2-10782f8e5a16,https://biolit.fr/sorties/sortie-dda24bf5-d548-4294-b4d2-10782f8e5a16/,S DENIS,,6/25/2021 0:00,8.0000000,13.0000000,45.798853000000,-1.166660000000,,Plage de la Cèpe,34415,observation-dda24bf5-d548-4294-b4d2-10782f8e5a16,https://biolit.fr/observations/observation-dda24bf5-d548-4294-b4d2-10782f8e5a16/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0457-scaled.jpg,,FALSE, +N1,58836,sortie-762238b6-3970-4441-ac7a-3f9d08ee2468,https://biolit.fr/sorties/sortie-762238b6-3970-4441-ac7a-3f9d08ee2468/,S DENIS,,6/25/2021 0:00,8.0000000,13.0000000,45.799983000000,-1.165158000000,,Plage de la Cèpe,34417,observation-762238b6-3970-4441-ac7a-3f9d08ee2468,https://biolit.fr/observations/observation-762238b6-3970-4441-ac7a-3f9d08ee2468/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0456-scaled.jpg,,FALSE, +N1,58837,sortie-01b24eba-769a-4757-a682-95caef274cac,https://biolit.fr/sorties/sortie-01b24eba-769a-4757-a682-95caef274cac/,S DENIS,,6/25/2021 0:00,8.0000000,13.0000000,45.799908000000,-1.165115000000,,Plage de la Cèpe,34419,observation-01b24eba-769a-4757-a682-95caef274cac,https://biolit.fr/observations/observation-01b24eba-769a-4757-a682-95caef274cac/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0453-scaled.jpg,,TRUE, +N1,58838,sortie-37bf9015-8d0d-4a41-97c6-9668e6951597,https://biolit.fr/sorties/sortie-37bf9015-8d0d-4a41-97c6-9668e6951597/,S DENIS,,6/25/2021 0:00,8.0000000,13.0000000,45.799698000000,-1.16487900000,,Plage de la Cèpe,34421,observation-37bf9015-8d0d-4a41-97c6-9668e6951597,https://biolit.fr/observations/observation-37bf9015-8d0d-4a41-97c6-9668e6951597/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0450_0-scaled.jpg,,TRUE, +N1,58839,sortie-dd81bc1e-a858-4cbb-96e9-72d6cf98fa40,https://biolit.fr/sorties/sortie-dd81bc1e-a858-4cbb-96e9-72d6cf98fa40/,S DENIS,,6/25/2021 0:00,8.0000000,13.0000000,45.799733000000,-1.164761000000,,Plage de la Cèpe,34423,observation-dd81bc1e-a858-4cbb-96e9-72d6cf98fa40,https://biolit.fr/observations/observation-dd81bc1e-a858-4cbb-96e9-72d6cf98fa40/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0443-scaled.jpg,,TRUE, +N1,58840,sortie-1f44356f-a574-4f49-b208-24d9a83589c8,https://biolit.fr/sorties/sortie-1f44356f-a574-4f49-b208-24d9a83589c8/,S DENIS,,6/25/2021 0:00,9.0000000,11.0000000,45.799652000000,-1.164654000000,,Plage de la Cèpe,34425,observation-1f44356f-a574-4f49-b208-24d9a83589c8,https://biolit.fr/observations/observation-1f44356f-a574-4f49-b208-24d9a83589c8/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0440_0-scaled.jpg,,TRUE, +N1,58841,sortie-d345ceca-b154-44d6-bd8b-24a53b6a570c,https://biolit.fr/sorties/sortie-d345ceca-b154-44d6-bd8b-24a53b6a570c/,S DENIS,,6/25/2021 0:00,8.0000000,13.0000000,45.799672000000,-1.164927000000,,Plage de la Cèpe,34427,observation-d345ceca-b154-44d6-bd8b-24a53b6a570c,https://biolit.fr/observations/observation-d345ceca-b154-44d6-bd8b-24a53b6a570c/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0435-scaled.jpg,,TRUE, +N1,58842,sortie-936677dc-e98e-4339-afc8-5338ab3f608c,https://biolit.fr/sorties/sortie-936677dc-e98e-4339-afc8-5338ab3f608c/,BAQUE yves,,6/18/2021 0:00,14.0000000,15.0000000,43.401832000000,6.727354000000,,Saint-Aygulf 83600 FREJUS,,,,,,,,,, +N1,58843,sortie-ab681c95-a82c-45e0-9c78-6898b93d85e0,https://biolit.fr/sorties/sortie-ab681c95-a82c-45e0-9c78-6898b93d85e0/,BAQUE yves,,6/18/2021 0:00,9.0000000,11.0000000,43.4019140000,6.730542000000,,Saint-Aygulf 83600 FREJUS,34437,observation-ab681c95-a82c-45e0-9c78-6898b93d85e0,https://biolit.fr/observations/observation-ab681c95-a82c-45e0-9c78-6898b93d85e0/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1359-rotated.jpg,,FALSE, +N1,58843,sortie-ab681c95-a82c-45e0-9c78-6898b93d85e0,https://biolit.fr/sorties/sortie-ab681c95-a82c-45e0-9c78-6898b93d85e0/,BAQUE yves,,6/18/2021 0:00,9.0000000,11.0000000,43.4019140000,6.730542000000,,Saint-Aygulf 83600 FREJUS,34439,observation-ab681c95-a82c-45e0-9c78-6898b93d85e0-2,https://biolit.fr/observations/observation-ab681c95-a82c-45e0-9c78-6898b93d85e0-2/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1365-rotated.jpg,,TRUE, +N1,58843,sortie-ab681c95-a82c-45e0-9c78-6898b93d85e0,https://biolit.fr/sorties/sortie-ab681c95-a82c-45e0-9c78-6898b93d85e0/,BAQUE yves,,6/18/2021 0:00,9.0000000,11.0000000,43.4019140000,6.730542000000,,Saint-Aygulf 83600 FREJUS,34443,observation-ab681c95-a82c-45e0-9c78-6898b93d85e0-4,https://biolit.fr/observations/observation-ab681c95-a82c-45e0-9c78-6898b93d85e0-4/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1375-scaled.jpg,,TRUE, +N1,58843,sortie-ab681c95-a82c-45e0-9c78-6898b93d85e0,https://biolit.fr/sorties/sortie-ab681c95-a82c-45e0-9c78-6898b93d85e0/,BAQUE yves,,6/18/2021 0:00,9.0000000,11.0000000,43.4019140000,6.730542000000,,Saint-Aygulf 83600 FREJUS,34445,observation-ab681c95-a82c-45e0-9c78-6898b93d85e0-5,https://biolit.fr/observations/observation-ab681c95-a82c-45e0-9c78-6898b93d85e0-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1385-scaled.jpg,,FALSE, +N1,58844,sortie-318eb37d-9cab-4e54-a735-064d9b7ab1df,https://biolit.fr/sorties/sortie-318eb37d-9cab-4e54-a735-064d9b7ab1df/,Marine,,6/16/2021 0:00,10.0000000,10.0000000,43.214835000000,5.342970000000,Planète Mer,Anse de la maronaise,34447,observation-318eb37d-9cab-4e54-a735-064d9b7ab1df,https://biolit.fr/observations/observation-318eb37d-9cab-4e54-a735-064d9b7ab1df/,Ligia italica,Ligie italienne,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210616_102054_compress64-scaled.jpg,,TRUE, +N1,58844,sortie-318eb37d-9cab-4e54-a735-064d9b7ab1df,https://biolit.fr/sorties/sortie-318eb37d-9cab-4e54-a735-064d9b7ab1df/,Marine,,6/16/2021 0:00,10.0000000,10.0000000,43.214835000000,5.342970000000,Planète Mer,Anse de la maronaise,34449,observation-318eb37d-9cab-4e54-a735-064d9b7ab1df-2,https://biolit.fr/observations/observation-318eb37d-9cab-4e54-a735-064d9b7ab1df-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210616_102031_compress60-scaled.jpg,,FALSE, +N1,58844,sortie-318eb37d-9cab-4e54-a735-064d9b7ab1df,https://biolit.fr/sorties/sortie-318eb37d-9cab-4e54-a735-064d9b7ab1df/,Marine,,6/16/2021 0:00,10.0000000,10.0000000,43.214835000000,5.342970000000,Planète Mer,Anse de la maronaise,34451,observation-318eb37d-9cab-4e54-a735-064d9b7ab1df-3,https://biolit.fr/observations/observation-318eb37d-9cab-4e54-a735-064d9b7ab1df-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210616_102015_compress75-scaled.jpg,,FALSE, +N1,58844,sortie-318eb37d-9cab-4e54-a735-064d9b7ab1df,https://biolit.fr/sorties/sortie-318eb37d-9cab-4e54-a735-064d9b7ab1df/,Marine,,6/16/2021 0:00,10.0000000,10.0000000,43.214835000000,5.342970000000,Planète Mer,Anse de la maronaise,34453,observation-318eb37d-9cab-4e54-a735-064d9b7ab1df-4,https://biolit.fr/observations/observation-318eb37d-9cab-4e54-a735-064d9b7ab1df-4/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210616_105809_compress60-scaled.jpg,,TRUE, +N1,58844,sortie-318eb37d-9cab-4e54-a735-064d9b7ab1df,https://biolit.fr/sorties/sortie-318eb37d-9cab-4e54-a735-064d9b7ab1df/,Marine,,6/16/2021 0:00,10.0000000,10.0000000,43.214835000000,5.342970000000,Planète Mer,Anse de la maronaise,34455,observation-318eb37d-9cab-4e54-a735-064d9b7ab1df-5,https://biolit.fr/observations/observation-318eb37d-9cab-4e54-a735-064d9b7ab1df-5/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210616_102743_compress15-scaled.jpg,,TRUE, +N1,58844,sortie-318eb37d-9cab-4e54-a735-064d9b7ab1df,https://biolit.fr/sorties/sortie-318eb37d-9cab-4e54-a735-064d9b7ab1df/,Marine,,6/16/2021 0:00,10.0000000,10.0000000,43.214835000000,5.342970000000,Planète Mer,Anse de la maronaise,34457,observation-318eb37d-9cab-4e54-a735-064d9b7ab1df-6,https://biolit.fr/observations/observation-318eb37d-9cab-4e54-a735-064d9b7ab1df-6/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210616_102417_compress66-scaled.jpg,,TRUE, +N1,58844,sortie-318eb37d-9cab-4e54-a735-064d9b7ab1df,https://biolit.fr/sorties/sortie-318eb37d-9cab-4e54-a735-064d9b7ab1df/,Marine,,6/16/2021 0:00,10.0000000,10.0000000,43.214835000000,5.342970000000,Planète Mer,Anse de la maronaise,34459,observation-318eb37d-9cab-4e54-a735-064d9b7ab1df-7,https://biolit.fr/observations/observation-318eb37d-9cab-4e54-a735-064d9b7ab1df-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210616_102328_compress44-scaled.jpg,,FALSE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34461,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona fascicularis_3.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34463,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-2,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_12.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34465,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-3,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-3/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_6.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34467,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-4,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-4/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/Anthopleura balii_4.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34469,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-5,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-5/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/Arenaria interpres_2.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34471,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-6,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-6/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_8.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34473,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-7,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-7/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_15.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34475,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-8,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-8/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_6.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34477,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-9,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-9/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus spp.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34479,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-10,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-10/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_9.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34481,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-11,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-11/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_13.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34483,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-12,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-12/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_7.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34485,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-13,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-13/,Clavelina lepadiformis,Grande claveline,,https://biolit.fr/wp-content/uploads/2023/07/Clavelina padeliformis.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34487,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-14,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-14/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crepidula fornicata_0.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34489,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-15,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-15/,Doris verrucosa,Doris verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/Doris verrucosa_1.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34491,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-16,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_16.PNG,,FALSE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34493,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-17,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-17/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Eriphia verrucosa_6.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34495,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-18,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-18/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_10.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34497,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-19,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-19/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_13.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34499,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-20,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-20/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_8.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34501,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-21,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-21/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis lumbriciformis_1.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34503,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-22,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/non identifié 1_0.PNG,,FALSE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34505,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-23,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-23/,Berthella plumula,Berthelle plume,,https://biolit.fr/wp-content/uploads/2023/07/non identifié plus athanas nitescens.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34507,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-24,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-24/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_14.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34509,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-25,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-25/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_10.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34511,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-26,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-26/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/2023/07/Salaria pavo_0.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34513,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-27,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-27/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_10.PNG,,TRUE, +N1,58846,sortie-675f2c51-2a01-494a-a350-4a976fd9f9e7,https://biolit.fr/sorties/sortie-675f2c51-2a01-494a-a350-4a976fd9f9e7/,Roman,,6/13/2021 0:00,11.0000000,11.0:45,47.649187000000,-3.479679000000,,Groix,34515,observation-675f2c51-2a01-494a-a350-4a976fd9f9e7,https://biolit.fr/observations/observation-675f2c51-2a01-494a-a350-4a976fd9f9e7/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_11.PNG,,TRUE, +N1,58846,sortie-675f2c51-2a01-494a-a350-4a976fd9f9e7,https://biolit.fr/sorties/sortie-675f2c51-2a01-494a-a350-4a976fd9f9e7/,Roman,,6/13/2021 0:00,11.0000000,11.0:45,47.649187000000,-3.479679000000,,Groix,34517,observation-675f2c51-2a01-494a-a350-4a976fd9f9e7-2,https://biolit.fr/observations/observation-675f2c51-2a01-494a-a350-4a976fd9f9e7-2/,Beroe cucumis,Beroe cucumis,,https://biolit.fr/wp-content/uploads/2023/07/Beroe sp.PNG,,TRUE, +N1,58846,sortie-675f2c51-2a01-494a-a350-4a976fd9f9e7,https://biolit.fr/sorties/sortie-675f2c51-2a01-494a-a350-4a976fd9f9e7/,Roman,,6/13/2021 0:00,11.0000000,11.0:45,47.649187000000,-3.479679000000,,Groix,34519,observation-675f2c51-2a01-494a-a350-4a976fd9f9e7-3,https://biolit.fr/observations/observation-675f2c51-2a01-494a-a350-4a976fd9f9e7-3/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Eriphia verrucosa_5.PNG,,TRUE, +N1,58846,sortie-675f2c51-2a01-494a-a350-4a976fd9f9e7,https://biolit.fr/sorties/sortie-675f2c51-2a01-494a-a350-4a976fd9f9e7/,Roman,,6/13/2021 0:00,11.0000000,11.0:45,47.649187000000,-3.479679000000,,Groix,34521,observation-675f2c51-2a01-494a-a350-4a976fd9f9e7-4,https://biolit.fr/observations/observation-675f2c51-2a01-494a-a350-4a976fd9f9e7-4/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_4.PNG,,TRUE, +N1,58846,sortie-675f2c51-2a01-494a-a350-4a976fd9f9e7,https://biolit.fr/sorties/sortie-675f2c51-2a01-494a-a350-4a976fd9f9e7/,Roman,,6/13/2021 0:00,11.0000000,11.0:45,47.649187000000,-3.479679000000,,Groix,34523,observation-675f2c51-2a01-494a-a350-4a976fd9f9e7-5,https://biolit.fr/observations/observation-675f2c51-2a01-494a-a350-4a976fd9f9e7-5/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/Pollicipes pollicipes_0.PNG,,TRUE, +N1,58847,sortie-21560e90-fa67-48b3-9ecc-1c04606884a2,https://biolit.fr/sorties/sortie-21560e90-fa67-48b3-9ecc-1c04606884a2/,patrick.caillon,,6/14/2021 0:00,11.0000000,13.0000000,47.228108000000,-2.176463000000,,Saint Brevin l'ocean,34527,observation-21560e90-fa67-48b3-9ecc-1c04606884a2-2,https://biolit.fr/observations/observation-21560e90-fa67-48b3-9ecc-1c04606884a2-2/,Ensis ensis,Couteau-sabre,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4306-min-scaled.jpg,,TRUE, +N1,58847,sortie-21560e90-fa67-48b3-9ecc-1c04606884a2,https://biolit.fr/sorties/sortie-21560e90-fa67-48b3-9ecc-1c04606884a2/,patrick.caillon,,6/14/2021 0:00,11.0000000,13.0000000,47.228108000000,-2.176463000000,,Saint Brevin l'ocean,34537,observation-21560e90-fa67-48b3-9ecc-1c04606884a2-7,https://biolit.fr/observations/observation-21560e90-fa67-48b3-9ecc-1c04606884a2-7/,Ensis ensis,Couteau-sabre,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4312-min-scaled.jpg,,TRUE, +N1,58847,sortie-21560e90-fa67-48b3-9ecc-1c04606884a2,https://biolit.fr/sorties/sortie-21560e90-fa67-48b3-9ecc-1c04606884a2/,patrick.caillon,,6/14/2021 0:00,11.0000000,13.0000000,47.228108000000,-2.176463000000,,Saint Brevin l'ocean,34539,observation-21560e90-fa67-48b3-9ecc-1c04606884a2-8,https://biolit.fr/observations/observation-21560e90-fa67-48b3-9ecc-1c04606884a2-8/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4313-min-scaled.jpg,,TRUE, +N1,58847,sortie-21560e90-fa67-48b3-9ecc-1c04606884a2,https://biolit.fr/sorties/sortie-21560e90-fa67-48b3-9ecc-1c04606884a2/,patrick.caillon,,6/14/2021 0:00,11.0000000,13.0000000,47.228108000000,-2.176463000000,,Saint Brevin l'ocean,34541,observation-21560e90-fa67-48b3-9ecc-1c04606884a2-9,https://biolit.fr/observations/observation-21560e90-fa67-48b3-9ecc-1c04606884a2-9/,Ensis ensis,Couteau-sabre,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4315-min-scaled.jpg,,TRUE, +N1,58847,sortie-21560e90-fa67-48b3-9ecc-1c04606884a2,https://biolit.fr/sorties/sortie-21560e90-fa67-48b3-9ecc-1c04606884a2/,patrick.caillon,,6/14/2021 0:00,11.0000000,13.0000000,47.228108000000,-2.176463000000,,Saint Brevin l'ocean,34543,observation-21560e90-fa67-48b3-9ecc-1c04606884a2-10,https://biolit.fr/observations/observation-21560e90-fa67-48b3-9ecc-1c04606884a2-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4316-min-scaled.jpg,,FALSE, +N1,58847,sortie-21560e90-fa67-48b3-9ecc-1c04606884a2,https://biolit.fr/sorties/sortie-21560e90-fa67-48b3-9ecc-1c04606884a2/,patrick.caillon,,6/14/2021 0:00,11.0000000,13.0000000,47.228108000000,-2.176463000000,,Saint Brevin l'ocean,34545,observation-21560e90-fa67-48b3-9ecc-1c04606884a2-11,https://biolit.fr/observations/observation-21560e90-fa67-48b3-9ecc-1c04606884a2-11/,Chrysaora hysoscella,Méduse rayonnée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4317-min-scaled.jpg,,TRUE, +N1,58847,sortie-21560e90-fa67-48b3-9ecc-1c04606884a2,https://biolit.fr/sorties/sortie-21560e90-fa67-48b3-9ecc-1c04606884a2/,patrick.caillon,,6/14/2021 0:00,11.0000000,13.0000000,47.228108000000,-2.176463000000,,Saint Brevin l'ocean,34549,observation-21560e90-fa67-48b3-9ecc-1c04606884a2-13,https://biolit.fr/observations/observation-21560e90-fa67-48b3-9ecc-1c04606884a2-13/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4319-min-scaled.jpg,,TRUE, +N1,58847,sortie-21560e90-fa67-48b3-9ecc-1c04606884a2,https://biolit.fr/sorties/sortie-21560e90-fa67-48b3-9ecc-1c04606884a2/,patrick.caillon,,6/14/2021 0:00,11.0000000,13.0000000,47.228108000000,-2.176463000000,,Saint Brevin l'ocean,34551,observation-21560e90-fa67-48b3-9ecc-1c04606884a2-14,https://biolit.fr/observations/observation-21560e90-fa67-48b3-9ecc-1c04606884a2-14/,Balistes capriscus,Baliste commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4322-min-scaled.jpg,,TRUE, +N1,58848,sortie-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d,https://biolit.fr/sorties/sortie-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d/,Marta,,06/07/2021,15.0000000,17.0000000,46.121702000000,-1.125077000000,,Plage d'Aytré,34553,observation-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d,https://biolit.fr/observations/observation-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d/,Sedum acre,Orpin âcre,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0018-scaled.jpg,,TRUE, +N1,58848,sortie-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d,https://biolit.fr/sorties/sortie-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d/,Marta,,06/07/2021,15.0000000,17.0000000,46.121702000000,-1.125077000000,,Plage d'Aytré,34555,observation-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d-2,https://biolit.fr/observations/observation-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0020-scaled.jpg,,FALSE, +N1,58848,sortie-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d,https://biolit.fr/sorties/sortie-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d/,Marta,,06/07/2021,15.0000000,17.0000000,46.121702000000,-1.125077000000,,Plage d'Aytré,34557,observation-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d-3,https://biolit.fr/observations/observation-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0024-scaled.jpg,,FALSE, +N1,58848,sortie-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d,https://biolit.fr/sorties/sortie-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d/,Marta,,06/07/2021,15.0000000,17.0000000,46.121702000000,-1.125077000000,,Plage d'Aytré,34559,observation-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d-4,https://biolit.fr/observations/observation-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0025-scaled.jpg,,FALSE, +N1,58848,sortie-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d,https://biolit.fr/sorties/sortie-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d/,Marta,,06/07/2021,15.0000000,17.0000000,46.121702000000,-1.125077000000,,Plage d'Aytré,34561,observation-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d-5,https://biolit.fr/observations/observation-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0028.jpg,,FALSE, +N1,58848,sortie-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d,https://biolit.fr/sorties/sortie-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d/,Marta,,06/07/2021,15.0000000,17.0000000,46.121702000000,-1.125077000000,,Plage d'Aytré,34563,observation-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d-6,https://biolit.fr/observations/observation-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d-6/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0030-scaled.jpg,,TRUE, +N1,58848,sortie-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d,https://biolit.fr/sorties/sortie-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d/,Marta,,06/07/2021,15.0000000,17.0000000,46.121702000000,-1.125077000000,,Plage d'Aytré,34565,observation-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d-7,https://biolit.fr/observations/observation-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d-7/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0031-scaled.jpg,,TRUE, +N1,58848,sortie-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d,https://biolit.fr/sorties/sortie-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d/,Marta,,06/07/2021,15.0000000,17.0000000,46.121702000000,-1.125077000000,,Plage d'Aytré,34567,observation-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d-8,https://biolit.fr/observations/observation-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d-8/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0034.jpg,,TRUE, +N1,58849,sortie-351552ee-dccb-4109-943c-5a0647ccb317,https://biolit.fr/sorties/sortie-351552ee-dccb-4109-943c-5a0647ccb317/,Marine,,5/22/2021 0:00,9.0:15,10.0:15,43.240955000000,5.362472000000,Planète Mer,Plage du bain des dames,34571,observation-351552ee-dccb-4109-943c-5a0647ccb317,https://biolit.fr/observations/observation-351552ee-dccb-4109-943c-5a0647ccb317/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_093022_compress48-scaled.jpg,,FALSE, +N1,58849,sortie-351552ee-dccb-4109-943c-5a0647ccb317,https://biolit.fr/sorties/sortie-351552ee-dccb-4109-943c-5a0647ccb317/,Marine,,5/22/2021 0:00,9.0:15,10.0:15,43.240955000000,5.362472000000,Planète Mer,Plage du bain des dames,34573,observation-351552ee-dccb-4109-943c-5a0647ccb317-2,https://biolit.fr/observations/observation-351552ee-dccb-4109-943c-5a0647ccb317-2/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_091747_compress34-scaled.jpg,,TRUE, +N1,58849,sortie-351552ee-dccb-4109-943c-5a0647ccb317,https://biolit.fr/sorties/sortie-351552ee-dccb-4109-943c-5a0647ccb317/,Marine,,5/22/2021 0:00,9.0:15,10.0:15,43.240955000000,5.362472000000,Planète Mer,Plage du bain des dames,34575,observation-351552ee-dccb-4109-943c-5a0647ccb317-3,https://biolit.fr/observations/observation-351552ee-dccb-4109-943c-5a0647ccb317-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_093204_compress61-scaled.jpg,,FALSE, +N1,58849,sortie-351552ee-dccb-4109-943c-5a0647ccb317,https://biolit.fr/sorties/sortie-351552ee-dccb-4109-943c-5a0647ccb317/,Marine,,5/22/2021 0:00,9.0:15,10.0:15,43.240955000000,5.362472000000,Planète Mer,Plage du bain des dames,34577,observation-351552ee-dccb-4109-943c-5a0647ccb317-4,https://biolit.fr/observations/observation-351552ee-dccb-4109-943c-5a0647ccb317-4/,Dynamena pumila,Petite dynamène,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_092852_compress35-scaled.jpg,,TRUE, +N1,58849,sortie-351552ee-dccb-4109-943c-5a0647ccb317,https://biolit.fr/sorties/sortie-351552ee-dccb-4109-943c-5a0647ccb317/,Marine,,5/22/2021 0:00,9.0:15,10.0:15,43.240955000000,5.362472000000,Planète Mer,Plage du bain des dames,34579,observation-351552ee-dccb-4109-943c-5a0647ccb317-5,https://biolit.fr/observations/observation-351552ee-dccb-4109-943c-5a0647ccb317-5/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_093029_compress83-scaled.jpg,,TRUE, +N1,58849,sortie-351552ee-dccb-4109-943c-5a0647ccb317,https://biolit.fr/sorties/sortie-351552ee-dccb-4109-943c-5a0647ccb317/,Marine,,5/22/2021 0:00,9.0:15,10.0:15,43.240955000000,5.362472000000,Planète Mer,Plage du bain des dames,34581,observation-351552ee-dccb-4109-943c-5a0647ccb317-6,https://biolit.fr/observations/observation-351552ee-dccb-4109-943c-5a0647ccb317-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_095033_compress10-scaled.jpg,,FALSE, +N1,58849,sortie-351552ee-dccb-4109-943c-5a0647ccb317,https://biolit.fr/sorties/sortie-351552ee-dccb-4109-943c-5a0647ccb317/,Marine,,5/22/2021 0:00,9.0:15,10.0:15,43.240955000000,5.362472000000,Planète Mer,Plage du bain des dames,34583,observation-351552ee-dccb-4109-943c-5a0647ccb317-7,https://biolit.fr/observations/observation-351552ee-dccb-4109-943c-5a0647ccb317-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_094726_compress68-scaled.jpg,,FALSE, +N1,58849,sortie-351552ee-dccb-4109-943c-5a0647ccb317,https://biolit.fr/sorties/sortie-351552ee-dccb-4109-943c-5a0647ccb317/,Marine,,5/22/2021 0:00,9.0:15,10.0:15,43.240955000000,5.362472000000,Planète Mer,Plage du bain des dames,34587,observation-351552ee-dccb-4109-943c-5a0647ccb317-9,https://biolit.fr/observations/observation-351552ee-dccb-4109-943c-5a0647ccb317-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_095329_compress14-scaled.jpg | https://biolit.fr/wp-content/uploads/2021/05/1623232118182-scaled-1-scaled.jpg,,FALSE, +N1,58849,sortie-351552ee-dccb-4109-943c-5a0647ccb317,https://biolit.fr/sorties/sortie-351552ee-dccb-4109-943c-5a0647ccb317/,Marine,,5/22/2021 0:00,9.0:15,10.0:15,43.240955000000,5.362472000000,Planète Mer,Plage du bain des dames,34589,observation-351552ee-dccb-4109-943c-5a0647ccb317-10,https://biolit.fr/observations/observation-351552ee-dccb-4109-943c-5a0647ccb317-10/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_093029_compress83_0-scaled.jpg,,TRUE, +N1,58850,sortie-5d12db93-139b-4575-a0c8-6ea5fa2e4381,https://biolit.fr/sorties/sortie-5d12db93-139b-4575-a0c8-6ea5fa2e4381/,BLANCHET SVT,,5/27/2021 0:00,14.0000000,16.0000000,48.650509000000,-4.272883000000,,Kerema pionte de guévroc,34591,observation-5d12db93-139b-4575-a0c8-6ea5fa2e4381,https://biolit.fr/observations/observation-5d12db93-139b-4575-a0c8-6ea5fa2e4381/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus_maenas-scaled.jpg,,TRUE, +N1,58850,sortie-5d12db93-139b-4575-a0c8-6ea5fa2e4381,https://biolit.fr/sorties/sortie-5d12db93-139b-4575-a0c8-6ea5fa2e4381/,BLANCHET SVT,,5/27/2021 0:00,14.0000000,16.0000000,48.650509000000,-4.272883000000,,Kerema pionte de guévroc,34593,observation-5d12db93-139b-4575-a0c8-6ea5fa2e4381-2,https://biolit.fr/observations/observation-5d12db93-139b-4575-a0c8-6ea5fa2e4381-2/,Ensis ensis,Couteau-sabre,,https://biolit.fr/wp-content/uploads/2023/07/couteau sabre-scaled.jpg,,TRUE, +N1,58850,sortie-5d12db93-139b-4575-a0c8-6ea5fa2e4381,https://biolit.fr/sorties/sortie-5d12db93-139b-4575-a0c8-6ea5fa2e4381/,BLANCHET SVT,,5/27/2021 0:00,14.0000000,16.0000000,48.650509000000,-4.272883000000,,Kerema pionte de guévroc,34595,observation-5d12db93-139b-4575-a0c8-6ea5fa2e4381-3,https://biolit.fr/observations/observation-5d12db93-139b-4575-a0c8-6ea5fa2e4381-3/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/mytilus edulis-scaled.jpg,,TRUE, +N1,58850,sortie-5d12db93-139b-4575-a0c8-6ea5fa2e4381,https://biolit.fr/sorties/sortie-5d12db93-139b-4575-a0c8-6ea5fa2e4381/,BLANCHET SVT,,5/27/2021 0:00,14.0000000,16.0000000,48.650509000000,-4.272883000000,,Kerema pionte de guévroc,34597,observation-5d12db93-139b-4575-a0c8-6ea5fa2e4381-4,https://biolit.fr/observations/observation-5d12db93-139b-4575-a0c8-6ea5fa2e4381-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina_littorea -scaled.jpg,,TRUE, +N1,58850,sortie-5d12db93-139b-4575-a0c8-6ea5fa2e4381,https://biolit.fr/sorties/sortie-5d12db93-139b-4575-a0c8-6ea5fa2e4381/,BLANCHET SVT,,5/27/2021 0:00,14.0000000,16.0000000,48.650509000000,-4.272883000000,,Kerema pionte de guévroc,34599,observation-5d12db93-139b-4575-a0c8-6ea5fa2e4381-5,https://biolit.fr/observations/observation-5d12db93-139b-4575-a0c8-6ea5fa2e4381-5/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/patella depressa-scaled.jpg,,TRUE, +N1,58850,sortie-5d12db93-139b-4575-a0c8-6ea5fa2e4381,https://biolit.fr/sorties/sortie-5d12db93-139b-4575-a0c8-6ea5fa2e4381/,BLANCHET SVT,,5/27/2021 0:00,14.0000000,16.0000000,48.650509000000,-4.272883000000,,Kerema pionte de guévroc,34601,observation-5d12db93-139b-4575-a0c8-6ea5fa2e4381-6,https://biolit.fr/observations/observation-5d12db93-139b-4575-a0c8-6ea5fa2e4381-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/anemone gemme-scaled.jpg,,FALSE, +N1,58851,sortie-7d55ae6d-f6ff-4620-b6f2-d76aa2b8e49e,https://biolit.fr/sorties/sortie-7d55ae6d-f6ff-4620-b6f2-d76aa2b8e49e/,BLANCHET SVT,,5/27/2021 0:00,14.0000000,17.0000000,48.648916000000,-4.27191400000,,pointe de Guévroc,34603,observation-7d55ae6d-f6ff-4620-b6f2-d76aa2b8e49e,https://biolit.fr/observations/observation-7d55ae6d-f6ff-4620-b6f2-d76aa2b8e49e/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/2023/07/Laminaire_lisse-scaled.jpg,,TRUE, +N1,58851,sortie-7d55ae6d-f6ff-4620-b6f2-d76aa2b8e49e,https://biolit.fr/sorties/sortie-7d55ae6d-f6ff-4620-b6f2-d76aa2b8e49e/,BLANCHET SVT,,5/27/2021 0:00,14.0000000,17.0000000,48.648916000000,-4.27191400000,,pointe de Guévroc,34605,observation-7d55ae6d-f6ff-4620-b6f2-d76aa2b8e49e-2,https://biolit.fr/observations/observation-7d55ae6d-f6ff-4620-b6f2-d76aa2b8e49e-2/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/Goélan argenté-scaled.jpg,,TRUE, +N1,58851,sortie-7d55ae6d-f6ff-4620-b6f2-d76aa2b8e49e,https://biolit.fr/sorties/sortie-7d55ae6d-f6ff-4620-b6f2-d76aa2b8e49e/,BLANCHET SVT,,5/27/2021 0:00,14.0000000,17.0000000,48.648916000000,-4.27191400000,,pointe de Guévroc,34607,observation-7d55ae6d-f6ff-4620-b6f2-d76aa2b8e49e-3,https://biolit.fr/observations/observation-7d55ae6d-f6ff-4620-b6f2-d76aa2b8e49e-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/crabe_vert_-scaled.jpg,,TRUE, +N1,58851,sortie-7d55ae6d-f6ff-4620-b6f2-d76aa2b8e49e,https://biolit.fr/sorties/sortie-7d55ae6d-f6ff-4620-b6f2-d76aa2b8e49e/,BLANCHET SVT,,5/27/2021 0:00,14.0000000,17.0000000,48.648916000000,-4.27191400000,,pointe de Guévroc,34608,observation-7d55ae6d-f6ff-4620-b6f2-d76aa2b8e49e-4,https://biolit.fr/observations/observation-7d55ae6d-f6ff-4620-b6f2-d76aa2b8e49e-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Actinia_fragacea-scaled.jpg,,TRUE, +N1,58852,sortie-7cec630a-1735-4b18-8a3b-5f8cbb549a7c,https://biolit.fr/sorties/sortie-7cec630a-1735-4b18-8a3b-5f8cbb549a7c/,BLANCHET SVT,,5/27/2021 0:00,14.0:25,16.0000000,48.649770000000,-4.272669000000,,dune de kerema pointe de guevroc,34610,observation-7cec630a-1735-4b18-8a3b-5f8cbb549a7c,https://biolit.fr/observations/observation-7cec630a-1735-4b18-8a3b-5f8cbb549a7c/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber-scaled.jpg,,TRUE, +N1,58852,sortie-7cec630a-1735-4b18-8a3b-5f8cbb549a7c,https://biolit.fr/sorties/sortie-7cec630a-1735-4b18-8a3b-5f8cbb549a7c/,BLANCHET SVT,,5/27/2021 0:00,14.0:25,16.0000000,48.649770000000,-4.272669000000,,dune de kerema pointe de guevroc,34611,observation-7cec630a-1735-4b18-8a3b-5f8cbb549a7c-2,https://biolit.fr/observations/observation-7cec630a-1735-4b18-8a3b-5f8cbb549a7c-2/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/2023/07/laminaire digitée-scaled.jpg,,TRUE, +N1,58852,sortie-7cec630a-1735-4b18-8a3b-5f8cbb549a7c,https://biolit.fr/sorties/sortie-7cec630a-1735-4b18-8a3b-5f8cbb549a7c/,BLANCHET SVT,,5/27/2021 0:00,14.0:25,16.0000000,48.649770000000,-4.272669000000,,dune de kerema pointe de guevroc,34613,observation-7cec630a-1735-4b18-8a3b-5f8cbb549a7c-3,https://biolit.fr/observations/observation-7cec630a-1735-4b18-8a3b-5f8cbb549a7c-3/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/cerastoderma edule-scaled.jpg,,TRUE, +N1,58852,sortie-7cec630a-1735-4b18-8a3b-5f8cbb549a7c,https://biolit.fr/sorties/sortie-7cec630a-1735-4b18-8a3b-5f8cbb549a7c/,BLANCHET SVT,,5/27/2021 0:00,14.0:25,16.0000000,48.649770000000,-4.272669000000,,dune de kerema pointe de guevroc,34615,observation-7cec630a-1735-4b18-8a3b-5f8cbb549a7c-4,https://biolit.fr/observations/observation-7cec630a-1735-4b18-8a3b-5f8cbb549a7c-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_0-scaled.jpg,,TRUE, +N1,58853,sortie-5c74bf53-51eb-49a8-a999-36fd4ed30e47,https://biolit.fr/sorties/sortie-5c74bf53-51eb-49a8-a999-36fd4ed30e47/,BLANCHET SVT,,5/27/2021 0:00,14.0:25,16.0000000,48.649503000000,-4.272003000000,,"tréflez ,Guievroc,kerema",34617,observation-5c74bf53-51eb-49a8-a999-36fd4ed30e47,https://biolit.fr/observations/observation-5c74bf53-51eb-49a8-a999-36fd4ed30e47/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas-scaled.jpg,,TRUE, +N1,58853,sortie-5c74bf53-51eb-49a8-a999-36fd4ed30e47,https://biolit.fr/sorties/sortie-5c74bf53-51eb-49a8-a999-36fd4ed30e47/,BLANCHET SVT,,5/27/2021 0:00,14.0:25,16.0000000,48.649503000000,-4.272003000000,,"tréflez ,Guievroc,kerema",34618,observation-5c74bf53-51eb-49a8-a999-36fd4ed30e47-2,https://biolit.fr/observations/observation-5c74bf53-51eb-49a8-a999-36fd4ed30e47-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma_edule-scaled.jpg,,FALSE, +N1,58853,sortie-5c74bf53-51eb-49a8-a999-36fd4ed30e47,https://biolit.fr/sorties/sortie-5c74bf53-51eb-49a8-a999-36fd4ed30e47/,BLANCHET SVT,,5/27/2021 0:00,14.0:25,16.0000000,48.649503000000,-4.272003000000,,"tréflez ,Guievroc,kerema",34620,observation-5c74bf53-51eb-49a8-a999-36fd4ed30e47-3,https://biolit.fr/observations/observation-5c74bf53-51eb-49a8-a999-36fd4ed30e47-3/,Ensis ensis,Couteau-sabre,,https://biolit.fr/wp-content/uploads/2023/07/couteau caummen-scaled.jpg,,TRUE, +N1,58853,sortie-5c74bf53-51eb-49a8-a999-36fd4ed30e47,https://biolit.fr/sorties/sortie-5c74bf53-51eb-49a8-a999-36fd4ed30e47/,BLANCHET SVT,,5/27/2021 0:00,14.0:25,16.0000000,48.649503000000,-4.272003000000,,"tréflez ,Guievroc,kerema",34622,observation-5c74bf53-51eb-49a8-a999-36fd4ed30e47-4,https://biolit.fr/observations/observation-5c74bf53-51eb-49a8-a999-36fd4ed30e47-4/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/patella depressa-scaled.jpg,,TRUE, +N1,58853,sortie-5c74bf53-51eb-49a8-a999-36fd4ed30e47,https://biolit.fr/sorties/sortie-5c74bf53-51eb-49a8-a999-36fd4ed30e47/,BLANCHET SVT,,5/27/2021 0:00,14.0:25,16.0000000,48.649503000000,-4.272003000000,,"tréflez ,Guievroc,kerema",34623,observation-5c74bf53-51eb-49a8-a999-36fd4ed30e47-5,https://biolit.fr/observations/observation-5c74bf53-51eb-49a8-a999-36fd4ed30e47-5/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Pisidia_longicornis-scaled.jpg,,TRUE, +N1,58854,sortie-09b8df85-8281-4644-a8dc-03d99714b18c,https://biolit.fr/sorties/sortie-09b8df85-8281-4644-a8dc-03d99714b18c/,BLANCHET SVT,,5/27/2021 0:00,14.0:25,16.0000000,48.649776000000,-4.2749000000,,Dunes de keremma/Pointe de Guévroc,34627,observation-09b8df85-8281-4644-a8dc-03d99714b18c,https://biolit.fr/observations/observation-09b8df85-8281-4644-a8dc-03d99714b18c/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus_maenas-scaled.jpg,,TRUE, +N1,58854,sortie-09b8df85-8281-4644-a8dc-03d99714b18c,https://biolit.fr/sorties/sortie-09b8df85-8281-4644-a8dc-03d99714b18c/,BLANCHET SVT,,5/27/2021 0:00,14.0:25,16.0000000,48.649776000000,-4.2749000000,,Dunes de keremma/Pointe de Guévroc,34628,observation-09b8df85-8281-4644-a8dc-03d99714b18c-2,https://biolit.fr/observations/observation-09b8df85-8281-4644-a8dc-03d99714b18c-2/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/2023/07/chaetogammarus_marinus-scaled.jpg,,TRUE, +N1,58854,sortie-09b8df85-8281-4644-a8dc-03d99714b18c,https://biolit.fr/sorties/sortie-09b8df85-8281-4644-a8dc-03d99714b18c/,BLANCHET SVT,,5/27/2021 0:00,14.0:25,16.0000000,48.649776000000,-4.2749000000,,Dunes de keremma/Pointe de Guévroc,34630,observation-09b8df85-8281-4644-a8dc-03d99714b18c-3,https://biolit.fr/observations/observation-09b8df85-8281-4644-a8dc-03d99714b18c-3/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/poisson_NI_1-scaled.jpg,,TRUE, +N1,58855,sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d,https://biolit.fr/sorties/sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d/,Guillaume LE BAIL,,06/07/2021,14.0000000,16.0000000,47.255648000000,-2.227688000000,,"Villès Martin , SAINT-NAZAIRE ,44600 ",34631,observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d,https://biolit.fr/observations/observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_170131[1].jpg,,TRUE, +N1,58855,sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d,https://biolit.fr/sorties/sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d/,Guillaume LE BAIL,,06/07/2021,14.0000000,16.0000000,47.255648000000,-2.227688000000,,"Villès Martin , SAINT-NAZAIRE ,44600 ",34633,observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-2,https://biolit.fr/observations/observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-2/,Hemigrapsus takanoi,Crabe à pinceaux de Takano,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_170345[1].jpg,,TRUE, +N1,58855,sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d,https://biolit.fr/sorties/sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d/,Guillaume LE BAIL,,06/07/2021,14.0000000,16.0000000,47.255648000000,-2.227688000000,,"Villès Martin , SAINT-NAZAIRE ,44600 ",34635,observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-3,https://biolit.fr/observations/observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_170732[1].jpg,,TRUE, +N1,58855,sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d,https://biolit.fr/sorties/sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d/,Guillaume LE BAIL,,06/07/2021,14.0000000,16.0000000,47.255648000000,-2.227688000000,,"Villès Martin , SAINT-NAZAIRE ,44600 ",34637,observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-4,https://biolit.fr/observations/observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-4/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_171446[1].jpg,,TRUE, +N1,58855,sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d,https://biolit.fr/sorties/sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d/,Guillaume LE BAIL,,06/07/2021,14.0000000,16.0000000,47.255648000000,-2.227688000000,,"Villès Martin , SAINT-NAZAIRE ,44600 ",34639,observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-5,https://biolit.fr/observations/observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-5/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_171744[1].jpg,,TRUE, +N1,58855,sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d,https://biolit.fr/sorties/sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d/,Guillaume LE BAIL,,06/07/2021,14.0000000,16.0000000,47.255648000000,-2.227688000000,,"Villès Martin , SAINT-NAZAIRE ,44600 ",34641,observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-6,https://biolit.fr/observations/observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-6/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_171846[1].jpg,,TRUE, +N1,58855,sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d,https://biolit.fr/sorties/sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d/,Guillaume LE BAIL,,06/07/2021,14.0000000,16.0000000,47.255648000000,-2.227688000000,,"Villès Martin , SAINT-NAZAIRE ,44600 ",34643,observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-7,https://biolit.fr/observations/observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-7/,Spergularia rupicola,Spergulaire des rochers,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_172421[1].jpg,,TRUE, +N1,58855,sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d,https://biolit.fr/sorties/sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d/,Guillaume LE BAIL,,06/07/2021,14.0000000,16.0000000,47.255648000000,-2.227688000000,,"Villès Martin , SAINT-NAZAIRE ,44600 ",34645,observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-8,https://biolit.fr/observations/observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-8/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_172438[1].jpg,,TRUE, +N1,58855,sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d,https://biolit.fr/sorties/sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d/,Guillaume LE BAIL,,06/07/2021,14.0000000,16.0000000,47.255648000000,-2.227688000000,,"Villès Martin , SAINT-NAZAIRE ,44600 ",34647,observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-9,https://biolit.fr/observations/observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-9/,Calystegia soldanella,Liseron des dunes,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_174338[1].jpg,,TRUE, +N1,58855,sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d,https://biolit.fr/sorties/sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d/,Guillaume LE BAIL,,06/07/2021,14.0000000,16.0000000,47.255648000000,-2.227688000000,,"Villès Martin , SAINT-NAZAIRE ,44600 ",34649,observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-10,https://biolit.fr/observations/observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-10/,Sedum acre,Orpin âcre,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_174425[1].jpg,,TRUE, +N1,58855,sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d,https://biolit.fr/sorties/sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d/,Guillaume LE BAIL,,06/07/2021,14.0000000,16.0000000,47.255648000000,-2.227688000000,,"Villès Martin , SAINT-NAZAIRE ,44600 ",34651,observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-11,https://biolit.fr/observations/observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-11/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_174506[1].jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34653,observation-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90/,Ensis ensis,Couteau-sabre,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_154827 (2)-scaled.jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34655,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-2,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-2/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_155435 (2)-scaled.jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34657,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-3,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-3/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_155729 (2)-scaled.jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34659,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-4,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-4/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_160453 (2)-scaled.jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34661,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-5,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-5/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_160658 (2)-scaled.jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34663,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-6,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-6/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_160908 (2)-scaled.jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34665,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-7,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-7/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_160945 (2)-scaled.jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34667,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-8,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-8/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_161239 (2)-scaled.jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34669,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-9,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-9/,Lutraria lutraria,Lutraire elliptique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_161343 (2)-scaled.jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34671,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-10,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-10/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_161505 (2)-scaled.jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34673,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-11,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-11/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_161535 (2)-scaled.jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34675,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-12,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-12/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_162050 (2)-scaled.jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34677,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-13,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-13/,Loligo spp.,Ponte de Calmar,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_162133 (2)-scaled.jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34679,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-14,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_162209 (2)-scaled.jpg,,FALSE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34681,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-15,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-15/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_162258 (2)-scaled.jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34683,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-16,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-16/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_162508 (2)-scaled.jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34685,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-17,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-17/,Anarhynchus alexandrinus,Pluvier à collier interrompu,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_164936 (2).jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34687,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-18,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-18/,Leymus arenarius,Élyme des sables,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_165025 (2)-scaled.jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34689,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-19,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-19/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_171101 (2)-scaled.jpg,,TRUE, +N1,58857,sortie-16297a15-1630-48ea-8a6b-49a5348be52b,https://biolit.fr/sorties/sortie-16297a15-1630-48ea-8a6b-49a5348be52b/,L'île en bandoulière,,5/25/2021 0:00,12.0000000,13.0000000,46.688651000000,-2.332852000000,,"Anse des Fontaines, Ile d'Yeu",34691,observation-16297a15-1630-48ea-8a6b-49a5348be52b,https://biolit.fr/observations/observation-16297a15-1630-48ea-8a6b-49a5348be52b/,,,,https://biolit.fr/wp-content/uploads/2023/07/alguebleue-scaled.jpg,,FALSE, +N1,58857,sortie-16297a15-1630-48ea-8a6b-49a5348be52b,https://biolit.fr/sorties/sortie-16297a15-1630-48ea-8a6b-49a5348be52b/,L'île en bandoulière,,5/25/2021 0:00,12.0000000,13.0000000,46.688651000000,-2.332852000000,,"Anse des Fontaines, Ile d'Yeu",34693,observation-16297a15-1630-48ea-8a6b-49a5348be52b-2,https://biolit.fr/observations/observation-16297a15-1630-48ea-8a6b-49a5348be52b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5427-scaled.jpg,,FALSE, +N1,58857,sortie-16297a15-1630-48ea-8a6b-49a5348be52b,https://biolit.fr/sorties/sortie-16297a15-1630-48ea-8a6b-49a5348be52b/,L'île en bandoulière,,5/25/2021 0:00,12.0000000,13.0000000,46.688651000000,-2.332852000000,,"Anse des Fontaines, Ile d'Yeu",34695,observation-16297a15-1630-48ea-8a6b-49a5348be52b-3,https://biolit.fr/observations/observation-16297a15-1630-48ea-8a6b-49a5348be52b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5436.jpg,,FALSE, +N1,58858,sortie-26281b6f-37aa-4b4f-be6f-0ab9b101a336,https://biolit.fr/sorties/sortie-26281b6f-37aa-4b4f-be6f-0ab9b101a336/,BLANCHET SVT,,06/03/2021,14.0:15,16.0000000,48.649478000000,-4.27233100000,,Biolit.fr,34697,observation-26281b6f-37aa-4b4f-be6f-0ab9b101a336,https://biolit.fr/observations/observation-26281b6f-37aa-4b4f-be6f-0ab9b101a336/,,,,https://biolit.fr/wp-content/uploads/2023/07/bernar lermit -scaled.jpg,,FALSE, +N1,58858,sortie-26281b6f-37aa-4b4f-be6f-0ab9b101a336,https://biolit.fr/sorties/sortie-26281b6f-37aa-4b4f-be6f-0ab9b101a336/,BLANCHET SVT,,06/03/2021,14.0:15,16.0000000,48.649478000000,-4.27233100000,,Biolit.fr,34699,observation-26281b6f-37aa-4b4f-be6f-0ab9b101a336-2,https://biolit.fr/observations/observation-26281b6f-37aa-4b4f-be6f-0ab9b101a336-2/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/chiton. JPG.jpg,,TRUE, +N1,58858,sortie-26281b6f-37aa-4b4f-be6f-0ab9b101a336,https://biolit.fr/sorties/sortie-26281b6f-37aa-4b4f-be6f-0ab9b101a336/,BLANCHET SVT,,06/03/2021,14.0:15,16.0000000,48.649478000000,-4.27233100000,,Biolit.fr,34701,observation-26281b6f-37aa-4b4f-be6f-0ab9b101a336-3,https://biolit.fr/observations/observation-26281b6f-37aa-4b4f-be6f-0ab9b101a336-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Alevin_NI 2-scaled.jpg,,FALSE, +N1,58858,sortie-26281b6f-37aa-4b4f-be6f-0ab9b101a336,https://biolit.fr/sorties/sortie-26281b6f-37aa-4b4f-be6f-0ab9b101a336/,BLANCHET SVT,,06/03/2021,14.0:15,16.0000000,48.649478000000,-4.27233100000,,Biolit.fr,34703,observation-26281b6f-37aa-4b4f-be6f-0ab9b101a336-4,https://biolit.fr/observations/observation-26281b6f-37aa-4b4f-be6f-0ab9b101a336-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/crabe _ vert-scaled.jpg,,TRUE, +N1,58858,sortie-26281b6f-37aa-4b4f-be6f-0ab9b101a336,https://biolit.fr/sorties/sortie-26281b6f-37aa-4b4f-be6f-0ab9b101a336/,BLANCHET SVT,,06/03/2021,14.0:15,16.0000000,48.649478000000,-4.27233100000,,Biolit.fr,34705,observation-26281b6f-37aa-4b4f-be6f-0ab9b101a336-5,https://biolit.fr/observations/observation-26281b6f-37aa-4b4f-be6f-0ab9b101a336-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/caillou-scaled.jpg,,TRUE, +N1,58859,sortie-a85e69be-1816-4f79-ab98-a1c199f29809,https://biolit.fr/sorties/sortie-a85e69be-1816-4f79-ab98-a1c199f29809/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.648582000000,-4.268597000000,,dune de kerema pointe de Guévroc,34707,observation-a85e69be-1816-4f79-ab98-a1c199f29809,https://biolit.fr/observations/observation-a85e69be-1816-4f79-ab98-a1c199f29809/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidiella_ aspersa-scaled.jpg,,FALSE, +N1,58859,sortie-a85e69be-1816-4f79-ab98-a1c199f29809,https://biolit.fr/sorties/sortie-a85e69be-1816-4f79-ab98-a1c199f29809/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.648582000000,-4.268597000000,,dune de kerema pointe de Guévroc,34709,observation-a85e69be-1816-4f79-ab98-a1c199f29809-2,https://biolit.fr/observations/observation-a85e69be-1816-4f79-ab98-a1c199f29809-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/bernard-l'ermite_commun.jpg,,FALSE, +N1,58859,sortie-a85e69be-1816-4f79-ab98-a1c199f29809,https://biolit.fr/sorties/sortie-a85e69be-1816-4f79-ab98-a1c199f29809/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.648582000000,-4.268597000000,,dune de kerema pointe de Guévroc,34711,observation-a85e69be-1816-4f79-ab98-a1c199f29809-3,https://biolit.fr/observations/observation-a85e69be-1816-4f79-ab98-a1c199f29809-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/bigorneau_commun.jpg,,TRUE, +N1,58859,sortie-a85e69be-1816-4f79-ab98-a1c199f29809,https://biolit.fr/sorties/sortie-a85e69be-1816-4f79-ab98-a1c199f29809/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.648582000000,-4.268597000000,,dune de kerema pointe de Guévroc,34713,observation-a85e69be-1816-4f79-ab98-a1c199f29809-4,https://biolit.fr/observations/observation-a85e69be-1816-4f79-ab98-a1c199f29809-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/carcinus_maenas_0.jpg,,TRUE, +N1,58859,sortie-a85e69be-1816-4f79-ab98-a1c199f29809,https://biolit.fr/sorties/sortie-a85e69be-1816-4f79-ab98-a1c199f29809/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.648582000000,-4.268597000000,,dune de kerema pointe de Guévroc,34715,observation-a85e69be-1816-4f79-ab98-a1c199f29809-5,https://biolit.fr/observations/observation-a85e69be-1816-4f79-ab98-a1c199f29809-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/pagurus_bernhardus.jpg,,FALSE, +N1,58859,sortie-a85e69be-1816-4f79-ab98-a1c199f29809,https://biolit.fr/sorties/sortie-a85e69be-1816-4f79-ab98-a1c199f29809/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.648582000000,-4.268597000000,,dune de kerema pointe de Guévroc,34717,observation-a85e69be-1816-4f79-ab98-a1c199f29809-6,https://biolit.fr/observations/observation-a85e69be-1816-4f79-ab98-a1c199f29809-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/vers_ anneles.jpg,,FALSE, +N1,58859,sortie-a85e69be-1816-4f79-ab98-a1c199f29809,https://biolit.fr/sorties/sortie-a85e69be-1816-4f79-ab98-a1c199f29809/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.648582000000,-4.268597000000,,dune de kerema pointe de Guévroc,34719,observation-a85e69be-1816-4f79-ab98-a1c199f29809-7,https://biolit.fr/observations/observation-a85e69be-1816-4f79-ab98-a1c199f29809-7/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/patelle_communes.jpg,,TRUE, +N1,58860,sortie-801ca8e8-49cf-460a-9a31-f01c27680cf8,https://biolit.fr/sorties/sortie-801ca8e8-49cf-460a-9a31-f01c27680cf8/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.649762000000,-4.272320000000,,"Tréflez,Dune de Kerema pointe de Guèvroc",34721,observation-801ca8e8-49cf-460a-9a31-f01c27680cf8,https://biolit.fr/observations/observation-801ca8e8-49cf-460a-9a31-f01c27680cf8/,Pomatoschistus microps,Gobie tacheté,,https://biolit.fr/wp-content/uploads/2023/07/pomatoschistas_microps.jpg,,TRUE, +N1,58860,sortie-801ca8e8-49cf-460a-9a31-f01c27680cf8,https://biolit.fr/sorties/sortie-801ca8e8-49cf-460a-9a31-f01c27680cf8/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.649762000000,-4.272320000000,,"Tréflez,Dune de Kerema pointe de Guèvroc",34723,observation-801ca8e8-49cf-460a-9a31-f01c27680cf8-2,https://biolit.fr/observations/observation-801ca8e8-49cf-460a-9a31-f01c27680cf8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/poisson_N1.jpg,,FALSE, +N1,58860,sortie-801ca8e8-49cf-460a-9a31-f01c27680cf8,https://biolit.fr/sorties/sortie-801ca8e8-49cf-460a-9a31-f01c27680cf8/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.649762000000,-4.272320000000,,"Tréflez,Dune de Kerema pointe de Guèvroc",34725,observation-801ca8e8-49cf-460a-9a31-f01c27680cf8-3,https://biolit.fr/observations/observation-801ca8e8-49cf-460a-9a31-f01c27680cf8-3/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/patella_vulgata.jpg,,TRUE, +N1,58860,sortie-801ca8e8-49cf-460a-9a31-f01c27680cf8,https://biolit.fr/sorties/sortie-801ca8e8-49cf-460a-9a31-f01c27680cf8/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.649762000000,-4.272320000000,,"Tréflez,Dune de Kerema pointe de Guèvroc",34727,observation-801ca8e8-49cf-460a-9a31-f01c27680cf8-4,https://biolit.fr/observations/observation-801ca8e8-49cf-460a-9a31-f01c27680cf8-4/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/palaemon_elegans-scaled.jpg,,TRUE, +N1,58860,sortie-801ca8e8-49cf-460a-9a31-f01c27680cf8,https://biolit.fr/sorties/sortie-801ca8e8-49cf-460a-9a31-f01c27680cf8/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.649762000000,-4.272320000000,,"Tréflez,Dune de Kerema pointe de Guèvroc",34729,observation-801ca8e8-49cf-460a-9a31-f01c27680cf8-5,https://biolit.fr/observations/observation-801ca8e8-49cf-460a-9a31-f01c27680cf8-5/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/anemonia_sulcuta.jpg,,TRUE, +N1,58861,sortie-3747fa01-9710-4790-9e0e-dae40731279b,https://biolit.fr/sorties/sortie-3747fa01-9710-4790-9e0e-dae40731279b/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.650086000000,-4.272325000000,,dunes de Kerema,34735,observation-3747fa01-9710-4790-9e0e-dae40731279b-2,https://biolit.fr/observations/observation-3747fa01-9710-4790-9e0e-dae40731279b-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Monodonta_lineata1-scaled.jpg,,TRUE, +N1,58861,sortie-3747fa01-9710-4790-9e0e-dae40731279b,https://biolit.fr/sorties/sortie-3747fa01-9710-4790-9e0e-dae40731279b/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.650086000000,-4.272325000000,,dunes de Kerema,34737,observation-3747fa01-9710-4790-9e0e-dae40731279b-3,https://biolit.fr/observations/observation-3747fa01-9710-4790-9e0e-dae40731279b-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Monodonta_lineata2-scaled.jpg,,TRUE, +N1,58861,sortie-3747fa01-9710-4790-9e0e-dae40731279b,https://biolit.fr/sorties/sortie-3747fa01-9710-4790-9e0e-dae40731279b/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.650086000000,-4.272325000000,,dunes de Kerema,34739,observation-3747fa01-9710-4790-9e0e-dae40731279b-4,https://biolit.fr/observations/observation-3747fa01-9710-4790-9e0e-dae40731279b-4/,Liocarcinus vernalis,Etrille lisse,,https://biolit.fr/wp-content/uploads/2023/07/Necora_puber-scaled.jpg,,TRUE, +N1,58861,sortie-3747fa01-9710-4790-9e0e-dae40731279b,https://biolit.fr/sorties/sortie-3747fa01-9710-4790-9e0e-dae40731279b/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.650086000000,-4.272325000000,,dunes de Kerema,34741,observation-3747fa01-9710-4790-9e0e-dae40731279b-5,https://biolit.fr/observations/observation-3747fa01-9710-4790-9e0e-dae40731279b-5/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebra_erinacea-scaled.jpg,,TRUE, +N1,58862,sortie-903c8fed-3a57-4a25-ba29-4b50f3925c5c,https://biolit.fr/sorties/sortie-903c8fed-3a57-4a25-ba29-4b50f3925c5c/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.649818000000,-4.272380000000,,"Dune de keremma, Pointe de Guévroc",34743,observation-903c8fed-3a57-4a25-ba29-4b50f3925c5c,https://biolit.fr/observations/observation-903c8fed-3a57-4a25-ba29-4b50f3925c5c/,,,,https://biolit.fr/wp-content/uploads/2023/07/gobie_commun.JPG,,FALSE, +N1,58862,sortie-903c8fed-3a57-4a25-ba29-4b50f3925c5c,https://biolit.fr/sorties/sortie-903c8fed-3a57-4a25-ba29-4b50f3925c5c/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.649818000000,-4.272380000000,,"Dune de keremma, Pointe de Guévroc",34745,observation-903c8fed-3a57-4a25-ba29-4b50f3925c5c-2,https://biolit.fr/observations/observation-903c8fed-3a57-4a25-ba29-4b50f3925c5c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/isopode_NI.JPG,,FALSE, +N1,58862,sortie-903c8fed-3a57-4a25-ba29-4b50f3925c5c,https://biolit.fr/sorties/sortie-903c8fed-3a57-4a25-ba29-4b50f3925c5c/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.649818000000,-4.272380000000,,"Dune de keremma, Pointe de Guévroc",34747,observation-903c8fed-3a57-4a25-ba29-4b50f3925c5c-3,https://biolit.fr/observations/observation-903c8fed-3a57-4a25-ba29-4b50f3925c5c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidiella_aspersa.JPG,,FALSE, +N1,58862,sortie-903c8fed-3a57-4a25-ba29-4b50f3925c5c,https://biolit.fr/sorties/sortie-903c8fed-3a57-4a25-ba29-4b50f3925c5c/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.649818000000,-4.272380000000,,"Dune de keremma, Pointe de Guévroc",34749,observation-903c8fed-3a57-4a25-ba29-4b50f3925c5c-4,https://biolit.fr/observations/observation-903c8fed-3a57-4a25-ba29-4b50f3925c5c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/La motelle à 5 barbillon.JPG,,FALSE, +N1,58862,sortie-903c8fed-3a57-4a25-ba29-4b50f3925c5c,https://biolit.fr/sorties/sortie-903c8fed-3a57-4a25-ba29-4b50f3925c5c/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.649818000000,-4.272380000000,,"Dune de keremma, Pointe de Guévroc",34751,observation-903c8fed-3a57-4a25-ba29-4b50f3925c5c-5,https://biolit.fr/observations/observation-903c8fed-3a57-4a25-ba29-4b50f3925c5c-5/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/patelle_commune1-scaled.jpg,,TRUE, +N1,58862,sortie-903c8fed-3a57-4a25-ba29-4b50f3925c5c,https://biolit.fr/sorties/sortie-903c8fed-3a57-4a25-ba29-4b50f3925c5c/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.649818000000,-4.272380000000,,"Dune de keremma, Pointe de Guévroc",34753,observation-903c8fed-3a57-4a25-ba29-4b50f3925c5c-6,https://biolit.fr/observations/observation-903c8fed-3a57-4a25-ba29-4b50f3925c5c-6/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/patelle_commune2-scaled.jpg,,TRUE, +N1,58863,sortie-ce67e909-240e-4a78-a7f7-6c8184a399f2,https://biolit.fr/sorties/sortie-ce67e909-240e-4a78-a7f7-6c8184a399f2/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.649656000000,-4.272465000000,,"tréflez, dune de keremma, pointe de guévroc",34755,observation-ce67e909-240e-4a78-a7f7-6c8184a399f2,https://biolit.fr/observations/observation-ce67e909-240e-4a78-a7f7-6c8184a399f2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus_maenas1.JPG,,TRUE, +N1,58863,sortie-ce67e909-240e-4a78-a7f7-6c8184a399f2,https://biolit.fr/sorties/sortie-ce67e909-240e-4a78-a7f7-6c8184a399f2/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.649656000000,-4.272465000000,,"tréflez, dune de keremma, pointe de guévroc",34757,observation-ce67e909-240e-4a78-a7f7-6c8184a399f2-2,https://biolit.fr/observations/observation-ce67e909-240e-4a78-a7f7-6c8184a399f2-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus_maenas2.JPG,,TRUE, +N1,58863,sortie-ce67e909-240e-4a78-a7f7-6c8184a399f2,https://biolit.fr/sorties/sortie-ce67e909-240e-4a78-a7f7-6c8184a399f2/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.649656000000,-4.272465000000,,"tréflez, dune de keremma, pointe de guévroc",34759,observation-ce67e909-240e-4a78-a7f7-6c8184a399f2-3,https://biolit.fr/observations/observation-ce67e909-240e-4a78-a7f7-6c8184a399f2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crabe_NI (2).JPG,,FALSE, +N1,58863,sortie-ce67e909-240e-4a78-a7f7-6c8184a399f2,https://biolit.fr/sorties/sortie-ce67e909-240e-4a78-a7f7-6c8184a399f2/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.649656000000,-4.272465000000,,"tréflez, dune de keremma, pointe de guévroc",34761,observation-ce67e909-240e-4a78-a7f7-6c8184a399f2-4,https://biolit.fr/observations/observation-ce67e909-240e-4a78-a7f7-6c8184a399f2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabe_NI-scaled.jpg,,FALSE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34763,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e/,Ammophila arenaria,Oyat,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0233-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34767,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-3,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-3/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/euphorbe maritime-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34769,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-4,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-4/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/euphorbe maritime2-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34771,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-5,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-5/,Phragmites australis,Roseau,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0239-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34775,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-7,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-7/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0242-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34777,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-8,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-8/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/chou marin-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34779,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-9,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-9/,Ammophila arenaria,Oyat,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0279-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34781,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-10,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-10/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0280-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34783,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-11,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-11/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/panicaut maritime-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34785,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-12,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-12/,Sedum acre,Orpin âcre,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0283-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34789,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-14,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/champignon1-scaled.jpg,,FALSE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34793,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-16,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-16/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/algue verte1-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34795,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-17,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-17/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/algue verte2-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34797,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-18,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-18/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/algue brune1-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34799,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-19,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-19/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/algue brune2-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34803,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-21,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-21/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/algues_0.JPG,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34804,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-22,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-22/,Ensis ensis,Couteau-sabre,,https://biolit.fr/wp-content/uploads/2023/07/couteau de mer-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34806,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-23,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-23/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Moule-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34807,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-24,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-24/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/coquillage1-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34809,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-25,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-25/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/coquillage2_0-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34811,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-26,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/coquillage3-scaled.jpg,,FALSE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34813,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-27,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-27/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/coquillage4-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34815,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-28,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-28/,Euspira catena,Natice porte-chaîne,,https://biolit.fr/wp-content/uploads/2023/07/coquillage5-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34817,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-29,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-29/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/coquillage6-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34819,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-30,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-30/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Bigorneau.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34820,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-31,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/arénicole-scaled.jpg,,FALSE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34822,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-32,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/hermelles1-scaled.jpg,,FALSE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34824,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-33,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-33/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0267-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34826,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-34,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-34/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/Oeuf de raie.PNG,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34827,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-35,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-35/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/oeuf de bulot-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34829,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-36,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-36/,Tritia reticulata,Ponte de nasse réticulée,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0245-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34831,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-37,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabe-scaled.jpg,,FALSE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34833,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-38,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-38/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/2023/07/talitre-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34835,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-39,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-39/,,,,https://biolit.fr/wp-content/uploads/2023/07/insecte-scaled.jpg,,FALSE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34837,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-40,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-40/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabe2-scaled.jpg,,FALSE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34839,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-41,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-41/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/2023/07/Mouette rieuse.PNG,,TRUE, +N1,58865,sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b,https://biolit.fr/sorties/sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b/,LP Heinlex,,06/03/2021,9.0000000,11.0000000,47.254337000000,-2.248502000000,,"Saint-Nazaire, plage de Porcé",34840,observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b,https://biolit.fr/observations/observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1169-scaled.jpg,,TRUE, +N1,58865,sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b,https://biolit.fr/sorties/sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b/,LP Heinlex,,06/03/2021,9.0000000,11.0000000,47.254337000000,-2.248502000000,,"Saint-Nazaire, plage de Porcé",34842,observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-2,https://biolit.fr/observations/observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-2/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1168-scaled.jpg,,TRUE, +N1,58865,sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b,https://biolit.fr/sorties/sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b/,LP Heinlex,,06/03/2021,9.0000000,11.0000000,47.254337000000,-2.248502000000,,"Saint-Nazaire, plage de Porcé",34846,observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-4,https://biolit.fr/observations/observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1165-scaled.jpg | https://biolit.fr/wp-content/uploads/2021/06/IMG_1166_0-scaled-1-scaled.jpg,,FALSE, +N1,58865,sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b,https://biolit.fr/sorties/sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b/,LP Heinlex,,06/03/2021,9.0000000,11.0000000,47.254337000000,-2.248502000000,,"Saint-Nazaire, plage de Porcé",34848,observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-5,https://biolit.fr/observations/observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-5/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1164-scaled.jpg,,TRUE, +N1,58865,sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b,https://biolit.fr/sorties/sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b/,LP Heinlex,,06/03/2021,9.0000000,11.0000000,47.254337000000,-2.248502000000,,"Saint-Nazaire, plage de Porcé",34850,observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-6,https://biolit.fr/observations/observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-6/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_1163-scaled.jpg,,TRUE, +N1,58865,sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b,https://biolit.fr/sorties/sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b/,LP Heinlex,,06/03/2021,9.0000000,11.0000000,47.254337000000,-2.248502000000,,"Saint-Nazaire, plage de Porcé",34852,observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-7,https://biolit.fr/observations/observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-7/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_1161-scaled.jpg,,TRUE, +N1,58865,sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b,https://biolit.fr/sorties/sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b/,LP Heinlex,,06/03/2021,9.0000000,11.0000000,47.254337000000,-2.248502000000,,"Saint-Nazaire, plage de Porcé",34854,observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-8,https://biolit.fr/observations/observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-8/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_1160_0-scaled.jpg,,TRUE, +N1,58865,sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b,https://biolit.fr/sorties/sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b/,LP Heinlex,,06/03/2021,9.0000000,11.0000000,47.254337000000,-2.248502000000,,"Saint-Nazaire, plage de Porcé",34856,observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-9,https://biolit.fr/observations/observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1159-scaled.jpg,,FALSE, +N1,58865,sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b,https://biolit.fr/sorties/sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b/,LP Heinlex,,06/03/2021,9.0000000,11.0000000,47.254337000000,-2.248502000000,,"Saint-Nazaire, plage de Porcé",34858,observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-10,https://biolit.fr/observations/observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1158-scaled.jpg,,FALSE, +N1,58865,sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b,https://biolit.fr/sorties/sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b/,LP Heinlex,,06/03/2021,9.0000000,11.0000000,47.254337000000,-2.248502000000,,"Saint-Nazaire, plage de Porcé",34862,observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-12,https://biolit.fr/observations/observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-12/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1156-scaled.jpg,,TRUE, +N1,58865,sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b,https://biolit.fr/sorties/sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b/,LP Heinlex,,06/03/2021,9.0000000,11.0000000,47.254337000000,-2.248502000000,,"Saint-Nazaire, plage de Porcé",34864,observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-13,https://biolit.fr/observations/observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1154-scaled.jpg,,FALSE, +N1,58865,sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b,https://biolit.fr/sorties/sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b/,LP Heinlex,,06/03/2021,9.0000000,11.0000000,47.254337000000,-2.248502000000,,"Saint-Nazaire, plage de Porcé",34866,observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-14,https://biolit.fr/observations/observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1155-scaled.jpg,,FALSE, +N1,58865,sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b,https://biolit.fr/sorties/sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b/,LP Heinlex,,06/03/2021,9.0000000,11.0000000,47.254337000000,-2.248502000000,,"Saint-Nazaire, plage de Porcé",34868,observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-15,https://biolit.fr/observations/observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-15/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_1152-scaled.jpg,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34876,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/acanthochitona crinita_2.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34878,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-2,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_10.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34880,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-3,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/anemonia viridis_7.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34882,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-4,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-4/,Patella pellucida,Helcion,,https://biolit.fr/wp-content/uploads/2023/07/Ansates pelludica_1.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34884,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-5,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-5/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/Anthopleura balii_3.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34886,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-6,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-6/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/Aplysia sp.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34888,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-7,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/ascidies et bryo sp.PNG,,FALSE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34890,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-8,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-8/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_14.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34892,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-9,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-9/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/blennie sp_3.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34894,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-10,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-10/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_5.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34896,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-11,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-11/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Calliostoma zyziphinum_1.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34898,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-12,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-12/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_10.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34900,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-13,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-13/,Diodora graeca,Fissurelle,,https://biolit.fr/wp-content/uploads/2023/07/Diodora graeca_1.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34902,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-14,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-14/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/Doris pseudoargus pe_0.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34904,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-15,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-15/,Doris verrucosa,Doris verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/doris verrucosa pe.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34906,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-16,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_15.PNG,,FALSE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34908,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-17,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-17/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Eriphia verrucosa_4.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34910,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-18,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-18/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/Haliotis tuberculata_4.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34912,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-19,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-19/,Lepadogaster candolii,Porte-écuelle de Candolle,,https://biolit.fr/wp-content/uploads/2023/07/Lepadogaster candolii.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34914,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-20,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-20/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_9.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34916,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-21,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-21/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/Ligia oceanica_0.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34918,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-22,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-22/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_2.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34920,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-23,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-23/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_12.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34922,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-24,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-24/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/Melaraphes neritoides.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34924,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-25,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-25/,Ciliata mustela,Motelle à 5 barbillons,,https://biolit.fr/wp-content/uploads/2023/07/Mustela ciliata.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34926,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-26,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-26/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_7.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34928,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-27,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/non identifié_1.PNG,,FALSE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34930,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-28,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-28/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/Ophiotrix fragilis_2.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34932,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-29,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-29/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_3.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34934,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-30,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-30/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Patella ulyssiponensis_2.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34936,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-31,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-31/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_13.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34938,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-32,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-32/,Sphaeromatidae (famille),Sphéromiens,,https://biolit.fr/wp-content/uploads/2023/07/Sphaeromatidae_4.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34940,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-33,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/steromphola sp.PNG,,FALSE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34942,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-34,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-34/,Tricolia pullus,Phasianelle minuscule,,https://biolit.fr/wp-content/uploads/2023/07/Tricolia pulus.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34944,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-35,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-35/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/trivia monacha et arctica.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34946,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-36,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-36/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_10.PNG,,TRUE, +N1,58867,sortie-84f4b0ce-881c-4c97-afdd-d0ef76018fc1,https://biolit.fr/sorties/sortie-84f4b0ce-881c-4c97-afdd-d0ef76018fc1/,Axel,,5/22/2021 0:00,17.0:45,18.0:35,43.32981600000,5.126725000000,,"Sausset-les-Pins, Anse du Grand Rouveau",34948,observation-84f4b0ce-881c-4c97-afdd-d0ef76018fc1,https://biolit.fr/observations/observation-84f4b0ce-881c-4c97-afdd-d0ef76018fc1/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_174913-scaled.jpg,,FALSE, +N1,58867,sortie-84f4b0ce-881c-4c97-afdd-d0ef76018fc1,https://biolit.fr/sorties/sortie-84f4b0ce-881c-4c97-afdd-d0ef76018fc1/,Axel,,5/22/2021 0:00,17.0:45,18.0:35,43.32981600000,5.126725000000,,"Sausset-les-Pins, Anse du Grand Rouveau",34950,observation-84f4b0ce-881c-4c97-afdd-d0ef76018fc1-2,https://biolit.fr/observations/observation-84f4b0ce-881c-4c97-afdd-d0ef76018fc1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_175051-scaled.jpg,,FALSE, +N1,58867,sortie-84f4b0ce-881c-4c97-afdd-d0ef76018fc1,https://biolit.fr/sorties/sortie-84f4b0ce-881c-4c97-afdd-d0ef76018fc1/,Axel,,5/22/2021 0:00,17.0:45,18.0:35,43.32981600000,5.126725000000,,"Sausset-les-Pins, Anse du Grand Rouveau",34952,observation-84f4b0ce-881c-4c97-afdd-d0ef76018fc1-3,https://biolit.fr/observations/observation-84f4b0ce-881c-4c97-afdd-d0ef76018fc1-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_175337-scaled.jpg,,FALSE, +N1,58867,sortie-84f4b0ce-881c-4c97-afdd-d0ef76018fc1,https://biolit.fr/sorties/sortie-84f4b0ce-881c-4c97-afdd-d0ef76018fc1/,Axel,,5/22/2021 0:00,17.0:45,18.0:35,43.32981600000,5.126725000000,,"Sausset-les-Pins, Anse du Grand Rouveau",34954,observation-84f4b0ce-881c-4c97-afdd-d0ef76018fc1-4,https://biolit.fr/observations/observation-84f4b0ce-881c-4c97-afdd-d0ef76018fc1-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_175433-scaled.jpg,,FALSE, +N1,58867,sortie-84f4b0ce-881c-4c97-afdd-d0ef76018fc1,https://biolit.fr/sorties/sortie-84f4b0ce-881c-4c97-afdd-d0ef76018fc1/,Axel,,5/22/2021 0:00,17.0:45,18.0:35,43.32981600000,5.126725000000,,"Sausset-les-Pins, Anse du Grand Rouveau",34956,observation-84f4b0ce-881c-4c97-afdd-d0ef76018fc1-5,https://biolit.fr/observations/observation-84f4b0ce-881c-4c97-afdd-d0ef76018fc1-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_175626-scaled.jpg,,FALSE, +N1,58867,sortie-84f4b0ce-881c-4c97-afdd-d0ef76018fc1,https://biolit.fr/sorties/sortie-84f4b0ce-881c-4c97-afdd-d0ef76018fc1/,Axel,,5/22/2021 0:00,17.0:45,18.0:35,43.32981600000,5.126725000000,,"Sausset-les-Pins, Anse du Grand Rouveau",34958,observation-84f4b0ce-881c-4c97-afdd-d0ef76018fc1-6,https://biolit.fr/observations/observation-84f4b0ce-881c-4c97-afdd-d0ef76018fc1-6/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_180238-scaled.jpg,,TRUE, +N1,58867,sortie-84f4b0ce-881c-4c97-afdd-d0ef76018fc1,https://biolit.fr/sorties/sortie-84f4b0ce-881c-4c97-afdd-d0ef76018fc1/,Axel,,5/22/2021 0:00,17.0:45,18.0:35,43.32981600000,5.126725000000,,"Sausset-les-Pins, Anse du Grand Rouveau",34960,observation-84f4b0ce-881c-4c97-afdd-d0ef76018fc1-7,https://biolit.fr/observations/observation-84f4b0ce-881c-4c97-afdd-d0ef76018fc1-7/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_183517-scaled.jpg,,TRUE, +N1,58868,sortie-f5a00958-64d2-492e-bc7f-0525b5f7063d,https://biolit.fr/sorties/sortie-f5a00958-64d2-492e-bc7f-0525b5f7063d/,Thomas DIEUZEIDE,,5/22/2021 0:00,12.0:15,12.0:45,43.663077000000,-1.443947000000,,Hossegor plage centrale,34962,observation-f5a00958-64d2-492e-bc7f-0525b5f7063d,https://biolit.fr/observations/observation-f5a00958-64d2-492e-bc7f-0525b5f7063d/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/13 S.Officinalis.jpg,,TRUE, +N1,58868,sortie-f5a00958-64d2-492e-bc7f-0525b5f7063d,https://biolit.fr/sorties/sortie-f5a00958-64d2-492e-bc7f-0525b5f7063d/,Thomas DIEUZEIDE,,5/22/2021 0:00,12.0:15,12.0:45,43.663077000000,-1.443947000000,,Hossegor plage centrale,34964,observation-f5a00958-64d2-492e-bc7f-0525b5f7063d-2,https://biolit.fr/observations/observation-f5a00958-64d2-492e-bc7f-0525b5f7063d-2/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/14 S.Officinalis.jpg,,TRUE, +N1,58868,sortie-f5a00958-64d2-492e-bc7f-0525b5f7063d,https://biolit.fr/sorties/sortie-f5a00958-64d2-492e-bc7f-0525b5f7063d/,Thomas DIEUZEIDE,,5/22/2021 0:00,12.0:15,12.0:45,43.663077000000,-1.443947000000,,Hossegor plage centrale,34966,observation-f5a00958-64d2-492e-bc7f-0525b5f7063d-3,https://biolit.fr/observations/observation-f5a00958-64d2-492e-bc7f-0525b5f7063d-3/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/15 S.Officinalis.jpg,,TRUE, +N1,58869,sortie-951ce66d-5d5d-4ddb-a184-f8ff0d8e41c6,https://biolit.fr/sorties/sortie-951ce66d-5d5d-4ddb-a184-f8ff0d8e41c6/,Thomas DIEUZEIDE,,05/06/2021,9.0000000,11.0000000,43.663574000000,-1.431244000000,,Hossegor Lac marin,34968,observation-951ce66d-5d5d-4ddb-a184-f8ff0d8e41c6,https://biolit.fr/observations/observation-951ce66d-5d5d-4ddb-a184-f8ff0d8e41c6/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/11 Crabe vert Atlantique 1.jpg,,TRUE, +N1,58869,sortie-951ce66d-5d5d-4ddb-a184-f8ff0d8e41c6,https://biolit.fr/sorties/sortie-951ce66d-5d5d-4ddb-a184-f8ff0d8e41c6/,Thomas DIEUZEIDE,,05/06/2021,9.0000000,11.0000000,43.663574000000,-1.431244000000,,Hossegor Lac marin,34970,observation-951ce66d-5d5d-4ddb-a184-f8ff0d8e41c6-2,https://biolit.fr/observations/observation-951ce66d-5d5d-4ddb-a184-f8ff0d8e41c6-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/10 Crabe vert Atlantique 2.jpg,,TRUE, +N1,58870,sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58,https://biolit.fr/sorties/sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58/,patrick.caillon,,5/22/2021 0:00,17.0000000,18.0000000,46.829979000000,-2.145033000000,,Notre dame des monts,34972,observation-34c26d0e-bea6-443c-8b66-89c9970b5d58,https://biolit.fr/observations/observation-34c26d0e-bea6-443c-8b66-89c9970b5d58/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4256-min-scaled.jpg,,FALSE, +N1,58870,sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58,https://biolit.fr/sorties/sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58/,patrick.caillon,,5/22/2021 0:00,17.0000000,18.0000000,46.829979000000,-2.145033000000,,Notre dame des monts,34974,observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-2,https://biolit.fr/observations/observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4257-min-scaled.jpg,,FALSE, +N1,58870,sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58,https://biolit.fr/sorties/sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58/,patrick.caillon,,5/22/2021 0:00,17.0000000,18.0000000,46.829979000000,-2.145033000000,,Notre dame des monts,34976,observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-3,https://biolit.fr/observations/observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-3/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4258-min-scaled.jpg,,TRUE, +N1,58870,sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58,https://biolit.fr/sorties/sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58/,patrick.caillon,,5/22/2021 0:00,17.0000000,18.0000000,46.829979000000,-2.145033000000,,Notre dame des monts,34978,observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-4,https://biolit.fr/observations/observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4259-min-scaled.jpg,,FALSE, +N1,58870,sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58,https://biolit.fr/sorties/sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58/,patrick.caillon,,5/22/2021 0:00,17.0000000,18.0000000,46.829979000000,-2.145033000000,,Notre dame des monts,34980,observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-5,https://biolit.fr/observations/observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4260-min-scaled.jpg,,FALSE, +N1,58870,sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58,https://biolit.fr/sorties/sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58/,patrick.caillon,,5/22/2021 0:00,17.0000000,18.0000000,46.829979000000,-2.145033000000,,Notre dame des monts,34982,observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-6,https://biolit.fr/observations/observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4261-min-scaled.jpg,,FALSE, +N1,58870,sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58,https://biolit.fr/sorties/sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58/,patrick.caillon,,5/22/2021 0:00,17.0000000,18.0000000,46.829979000000,-2.145033000000,,Notre dame des monts,34984,observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-7,https://biolit.fr/observations/observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4262-min-scaled.jpg,,FALSE, +N1,58870,sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58,https://biolit.fr/sorties/sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58/,patrick.caillon,,5/22/2021 0:00,17.0000000,18.0000000,46.829979000000,-2.145033000000,,Notre dame des monts,34986,observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-8,https://biolit.fr/observations/observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-8/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4263-min-scaled.jpg,,TRUE, +N1,58870,sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58,https://biolit.fr/sorties/sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58/,patrick.caillon,,5/22/2021 0:00,17.0000000,18.0000000,46.829979000000,-2.145033000000,,Notre dame des monts,34988,observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-9,https://biolit.fr/observations/observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4264-min-scaled.jpg,,FALSE, +N1,58870,sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58,https://biolit.fr/sorties/sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58/,patrick.caillon,,5/22/2021 0:00,17.0000000,18.0000000,46.829979000000,-2.145033000000,,Notre dame des monts,34990,observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-10,https://biolit.fr/observations/observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-10/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4265-min-scaled.jpg,,TRUE, +N1,58870,sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58,https://biolit.fr/sorties/sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58/,patrick.caillon,,5/22/2021 0:00,17.0000000,18.0000000,46.829979000000,-2.145033000000,,Notre dame des monts,34992,observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-11,https://biolit.fr/observations/observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4266-min-scaled.jpg,,FALSE, +N1,58870,sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58,https://biolit.fr/sorties/sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58/,patrick.caillon,,5/22/2021 0:00,17.0000000,18.0000000,46.829979000000,-2.145033000000,,Notre dame des monts,34994,observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-12,https://biolit.fr/observations/observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-12/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4267-min-scaled.jpg,,TRUE, +N1,58871,sortie-1db65452-cf0e-48fc-9b9b-31247a772b57,https://biolit.fr/sorties/sortie-1db65452-cf0e-48fc-9b9b-31247a772b57/,LPO Occitanie (délégation Hérault),,5/22/2021 0:00,10.0000000,11.0000000,43.463171000000,3.82263500000,CPIE Littoral d'Occitanie,Plage des Aresquiers,34996,observation-1db65452-cf0e-48fc-9b9b-31247a772b57,https://biolit.fr/observations/observation-1db65452-cf0e-48fc-9b9b-31247a772b57/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210522_114236_1.jpg,,FALSE, +N1,58871,sortie-1db65452-cf0e-48fc-9b9b-31247a772b57,https://biolit.fr/sorties/sortie-1db65452-cf0e-48fc-9b9b-31247a772b57/,LPO Occitanie (délégation Hérault),,5/22/2021 0:00,10.0000000,11.0000000,43.463171000000,3.82263500000,CPIE Littoral d'Occitanie,Plage des Aresquiers,34998,observation-1db65452-cf0e-48fc-9b9b-31247a772b57-2,https://biolit.fr/observations/observation-1db65452-cf0e-48fc-9b9b-31247a772b57-2/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/20210522_114251_1.jpg,,TRUE, +N1,58871,sortie-1db65452-cf0e-48fc-9b9b-31247a772b57,https://biolit.fr/sorties/sortie-1db65452-cf0e-48fc-9b9b-31247a772b57/,LPO Occitanie (délégation Hérault),,5/22/2021 0:00,10.0000000,11.0000000,43.463171000000,3.82263500000,CPIE Littoral d'Occitanie,Plage des Aresquiers,35000,observation-1db65452-cf0e-48fc-9b9b-31247a772b57-3,https://biolit.fr/observations/observation-1db65452-cf0e-48fc-9b9b-31247a772b57-3/,Aporrhais serresiana,Pied de pélican de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/20210522_114301_1.jpg,,TRUE, +N1,58871,sortie-1db65452-cf0e-48fc-9b9b-31247a772b57,https://biolit.fr/sorties/sortie-1db65452-cf0e-48fc-9b9b-31247a772b57/,LPO Occitanie (délégation Hérault),,5/22/2021 0:00,10.0000000,11.0000000,43.463171000000,3.82263500000,CPIE Littoral d'Occitanie,Plage des Aresquiers,35002,observation-1db65452-cf0e-48fc-9b9b-31247a772b57-4,https://biolit.fr/observations/observation-1db65452-cf0e-48fc-9b9b-31247a772b57-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210522_114309_1.jpg,,FALSE, +N1,58871,sortie-1db65452-cf0e-48fc-9b9b-31247a772b57,https://biolit.fr/sorties/sortie-1db65452-cf0e-48fc-9b9b-31247a772b57/,LPO Occitanie (délégation Hérault),,5/22/2021 0:00,10.0000000,11.0000000,43.463171000000,3.82263500000,CPIE Littoral d'Occitanie,Plage des Aresquiers,35004,observation-1db65452-cf0e-48fc-9b9b-31247a772b57-5,https://biolit.fr/observations/observation-1db65452-cf0e-48fc-9b9b-31247a772b57-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210522_114316_1.jpg,,FALSE, +N1,58871,sortie-1db65452-cf0e-48fc-9b9b-31247a772b57,https://biolit.fr/sorties/sortie-1db65452-cf0e-48fc-9b9b-31247a772b57/,LPO Occitanie (délégation Hérault),,5/22/2021 0:00,10.0000000,11.0000000,43.463171000000,3.82263500000,CPIE Littoral d'Occitanie,Plage des Aresquiers,35006,observation-1db65452-cf0e-48fc-9b9b-31247a772b57-6,https://biolit.fr/observations/observation-1db65452-cf0e-48fc-9b9b-31247a772b57-6/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/20210522_114326_1.jpg,,TRUE, +N1,58871,sortie-1db65452-cf0e-48fc-9b9b-31247a772b57,https://biolit.fr/sorties/sortie-1db65452-cf0e-48fc-9b9b-31247a772b57/,LPO Occitanie (délégation Hérault),,5/22/2021 0:00,10.0000000,11.0000000,43.463171000000,3.82263500000,CPIE Littoral d'Occitanie,Plage des Aresquiers,35008,observation-1db65452-cf0e-48fc-9b9b-31247a772b57-7,https://biolit.fr/observations/observation-1db65452-cf0e-48fc-9b9b-31247a772b57-7/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/2023/07/20210522_114330.jpg,,TRUE, +N1,58871,sortie-1db65452-cf0e-48fc-9b9b-31247a772b57,https://biolit.fr/sorties/sortie-1db65452-cf0e-48fc-9b9b-31247a772b57/,LPO Occitanie (délégation Hérault),,5/22/2021 0:00,10.0000000,11.0000000,43.463171000000,3.82263500000,CPIE Littoral d'Occitanie,Plage des Aresquiers,35010,observation-1db65452-cf0e-48fc-9b9b-31247a772b57-8,https://biolit.fr/observations/observation-1db65452-cf0e-48fc-9b9b-31247a772b57-8/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/2023/07/20210522_114341.jpg,,TRUE, +N1,58871,sortie-1db65452-cf0e-48fc-9b9b-31247a772b57,https://biolit.fr/sorties/sortie-1db65452-cf0e-48fc-9b9b-31247a772b57/,LPO Occitanie (délégation Hérault),,5/22/2021 0:00,10.0000000,11.0000000,43.463171000000,3.82263500000,CPIE Littoral d'Occitanie,Plage des Aresquiers,35012,observation-1db65452-cf0e-48fc-9b9b-31247a772b57-9,https://biolit.fr/observations/observation-1db65452-cf0e-48fc-9b9b-31247a772b57-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210522_114346.jpg,,FALSE, +N1,58871,sortie-1db65452-cf0e-48fc-9b9b-31247a772b57,https://biolit.fr/sorties/sortie-1db65452-cf0e-48fc-9b9b-31247a772b57/,LPO Occitanie (délégation Hérault),,5/22/2021 0:00,10.0000000,11.0000000,43.463171000000,3.82263500000,CPIE Littoral d'Occitanie,Plage des Aresquiers,35014,observation-1db65452-cf0e-48fc-9b9b-31247a772b57-10,https://biolit.fr/observations/observation-1db65452-cf0e-48fc-9b9b-31247a772b57-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210522_114353.jpg,,FALSE, +N1,58871,sortie-1db65452-cf0e-48fc-9b9b-31247a772b57,https://biolit.fr/sorties/sortie-1db65452-cf0e-48fc-9b9b-31247a772b57/,LPO Occitanie (délégation Hérault),,5/22/2021 0:00,10.0000000,11.0000000,43.463171000000,3.82263500000,CPIE Littoral d'Occitanie,Plage des Aresquiers,35016,observation-1db65452-cf0e-48fc-9b9b-31247a772b57-11,https://biolit.fr/observations/observation-1db65452-cf0e-48fc-9b9b-31247a772b57-11/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/20210522_114402.jpg,,TRUE, +N1,58871,sortie-1db65452-cf0e-48fc-9b9b-31247a772b57,https://biolit.fr/sorties/sortie-1db65452-cf0e-48fc-9b9b-31247a772b57/,LPO Occitanie (délégation Hérault),,5/22/2021 0:00,10.0000000,11.0000000,43.463171000000,3.82263500000,CPIE Littoral d'Occitanie,Plage des Aresquiers,35018,observation-1db65452-cf0e-48fc-9b9b-31247a772b57-12,https://biolit.fr/observations/observation-1db65452-cf0e-48fc-9b9b-31247a772b57-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210522_114413.jpg,,FALSE, +N1,58871,sortie-1db65452-cf0e-48fc-9b9b-31247a772b57,https://biolit.fr/sorties/sortie-1db65452-cf0e-48fc-9b9b-31247a772b57/,LPO Occitanie (délégation Hérault),,5/22/2021 0:00,10.0000000,11.0000000,43.463171000000,3.82263500000,CPIE Littoral d'Occitanie,Plage des Aresquiers,35020,observation-1db65452-cf0e-48fc-9b9b-31247a772b57-13,https://biolit.fr/observations/observation-1db65452-cf0e-48fc-9b9b-31247a772b57-13/,Pecten jacobaeus,Coquille Saint-Jacques de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/20210522_114423.jpg,,TRUE, +N1,58872,sortie-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124,https://biolit.fr/sorties/sortie-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124/,AléaNature,,5/24/2021 0:00,15.0000000,17.0000000,47.132498000000,-2.241035000000,,l'Anse du Sud,35022,observation-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124,https://biolit.fr/observations/observation-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210510_121228487_HDR-scaled.jpg,,TRUE, +N1,58872,sortie-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124,https://biolit.fr/sorties/sortie-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124/,AléaNature,,5/24/2021 0:00,15.0000000,17.0000000,47.132498000000,-2.241035000000,,l'Anse du Sud,35024,observation-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124-2,https://biolit.fr/observations/observation-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124-2/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210510_112655471-scaled.jpg,,TRUE, +N1,58872,sortie-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124,https://biolit.fr/sorties/sortie-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124/,AléaNature,,5/24/2021 0:00,15.0000000,17.0000000,47.132498000000,-2.241035000000,,l'Anse du Sud,35026,observation-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124-3,https://biolit.fr/observations/observation-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210510_122422942_HDR-scaled.jpg,,FALSE, +N1,58872,sortie-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124,https://biolit.fr/sorties/sortie-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124/,AléaNature,,5/24/2021 0:00,15.0000000,17.0000000,47.132498000000,-2.241035000000,,l'Anse du Sud,35028,observation-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124-4,https://biolit.fr/observations/observation-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210510_124034621-scaled.jpg,,FALSE, +N1,58872,sortie-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124,https://biolit.fr/sorties/sortie-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124/,AléaNature,,5/24/2021 0:00,15.0000000,17.0000000,47.132498000000,-2.241035000000,,l'Anse du Sud,35030,observation-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124-5,https://biolit.fr/observations/observation-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210511_122337065_HDR-scaled.jpg,,TRUE, +N1,58873,sortie-bb15205b-0380-4cd9-9754-fbd56362dc16,https://biolit.fr/sorties/sortie-bb15205b-0380-4cd9-9754-fbd56362dc16/,Olivier BILLON,,5/21/2021 0:00,10.0000000,12.0000000,43.775820000000,-1.418219000000,,plage de Soustons,35032,observation-bb15205b-0380-4cd9-9754-fbd56362dc16,https://biolit.fr/observations/observation-bb15205b-0380-4cd9-9754-fbd56362dc16/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7474_blanches_inconnues-scaled.jpg,,FALSE, +N1,58873,sortie-bb15205b-0380-4cd9-9754-fbd56362dc16,https://biolit.fr/sorties/sortie-bb15205b-0380-4cd9-9754-fbd56362dc16/,Olivier BILLON,,5/21/2021 0:00,10.0000000,12.0000000,43.775820000000,-1.418219000000,,plage de Soustons,35034,observation-bb15205b-0380-4cd9-9754-fbd56362dc16-2,https://biolit.fr/observations/observation-bb15205b-0380-4cd9-9754-fbd56362dc16-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7476_clam-scaled.jpg,,FALSE, +N1,58873,sortie-bb15205b-0380-4cd9-9754-fbd56362dc16,https://biolit.fr/sorties/sortie-bb15205b-0380-4cd9-9754-fbd56362dc16/,Olivier BILLON,,5/21/2021 0:00,10.0000000,12.0000000,43.775820000000,-1.418219000000,,plage de Soustons,35038,observation-bb15205b-0380-4cd9-9754-fbd56362dc16-4,https://biolit.fr/observations/observation-bb15205b-0380-4cd9-9754-fbd56362dc16-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7479_corail2-scaled.jpg | https://biolit.fr/wp-content/uploads/2021/05/IMG_7478_corail1-scaled-1.jpg,,FALSE, +N1,58873,sortie-bb15205b-0380-4cd9-9754-fbd56362dc16,https://biolit.fr/sorties/sortie-bb15205b-0380-4cd9-9754-fbd56362dc16/,Olivier BILLON,,5/21/2021 0:00,10.0000000,12.0000000,43.775820000000,-1.418219000000,,plage de Soustons,35040,observation-bb15205b-0380-4cd9-9754-fbd56362dc16-5,https://biolit.fr/observations/observation-bb15205b-0380-4cd9-9754-fbd56362dc16-5/,Anthemis maritima,Anthémis maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7480_anthemis_tomentosa-scaled.jpg,,TRUE, +N1,58873,sortie-bb15205b-0380-4cd9-9754-fbd56362dc16,https://biolit.fr/sorties/sortie-bb15205b-0380-4cd9-9754-fbd56362dc16/,Olivier BILLON,,5/21/2021 0:00,10.0000000,12.0000000,43.775820000000,-1.418219000000,,plage de Soustons,35042,observation-bb15205b-0380-4cd9-9754-fbd56362dc16-6,https://biolit.fr/observations/observation-bb15205b-0380-4cd9-9754-fbd56362dc16-6/,Calystegia soldanella,Liseron des dunes,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7482_calystegia_soldanella.JPG,,TRUE, +N1,58873,sortie-bb15205b-0380-4cd9-9754-fbd56362dc16,https://biolit.fr/sorties/sortie-bb15205b-0380-4cd9-9754-fbd56362dc16/,Olivier BILLON,,5/21/2021 0:00,10.0000000,12.0000000,43.775820000000,-1.418219000000,,plage de Soustons,35044,observation-bb15205b-0380-4cd9-9754-fbd56362dc16-7,https://biolit.fr/observations/observation-bb15205b-0380-4cd9-9754-fbd56362dc16-7/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7484_eryngium_maritimum-scaled.jpg,,TRUE, +N1,58873,sortie-bb15205b-0380-4cd9-9754-fbd56362dc16,https://biolit.fr/sorties/sortie-bb15205b-0380-4cd9-9754-fbd56362dc16/,Olivier BILLON,,5/21/2021 0:00,10.0000000,12.0000000,43.775820000000,-1.418219000000,,plage de Soustons,35046,observation-bb15205b-0380-4cd9-9754-fbd56362dc16-8,https://biolit.fr/observations/observation-bb15205b-0380-4cd9-9754-fbd56362dc16-8/,Yucca gloriosa,Yucca,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7485_yucca_gloriosa-scaled.jpg,,TRUE, +N1,58873,sortie-bb15205b-0380-4cd9-9754-fbd56362dc16,https://biolit.fr/sorties/sortie-bb15205b-0380-4cd9-9754-fbd56362dc16/,Olivier BILLON,,5/21/2021 0:00,10.0000000,12.0000000,43.775820000000,-1.418219000000,,plage de Soustons,35048,observation-bb15205b-0380-4cd9-9754-fbd56362dc16-9,https://biolit.fr/observations/observation-bb15205b-0380-4cd9-9754-fbd56362dc16-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7486_tamaris-scaled.jpg,,FALSE, +N1,58873,sortie-bb15205b-0380-4cd9-9754-fbd56362dc16,https://biolit.fr/sorties/sortie-bb15205b-0380-4cd9-9754-fbd56362dc16/,Olivier BILLON,,5/21/2021 0:00,10.0000000,12.0000000,43.775820000000,-1.418219000000,,plage de Soustons,35050,observation-bb15205b-0380-4cd9-9754-fbd56362dc16-10,https://biolit.fr/observations/observation-bb15205b-0380-4cd9-9754-fbd56362dc16-10/,Limbarda crithmoides,Inule fausse criste,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7487_immortelles-scaled.jpg,,TRUE, +N1,58874,sortie-d782886d-7c4a-47bf-978d-c42c638d4687,https://biolit.fr/sorties/sortie-d782886d-7c4a-47bf-978d-c42c638d4687/,Olivier BILLON,,5/21/2021 0:00,10.0000000,12.0000000,43.776401000000,-1.411224000000,,Lac marin de Soustons,35052,observation-d782886d-7c4a-47bf-978d-c42c638d4687,https://biolit.fr/observations/observation-d782886d-7c4a-47bf-978d-c42c638d4687/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7465_clam.JPG,,FALSE, +N1,58874,sortie-d782886d-7c4a-47bf-978d-c42c638d4687,https://biolit.fr/sorties/sortie-d782886d-7c4a-47bf-978d-c42c638d4687/,Olivier BILLON,,5/21/2021 0:00,10.0000000,12.0000000,43.776401000000,-1.411224000000,,Lac marin de Soustons,35054,observation-d782886d-7c4a-47bf-978d-c42c638d4687-2,https://biolit.fr/observations/observation-d782886d-7c4a-47bf-978d-c42c638d4687-2/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7466_algue_verte-scaled.jpg,,TRUE, +N1,58874,sortie-d782886d-7c4a-47bf-978d-c42c638d4687,https://biolit.fr/sorties/sortie-d782886d-7c4a-47bf-978d-c42c638d4687/,Olivier BILLON,,5/21/2021 0:00,10.0000000,12.0000000,43.776401000000,-1.411224000000,,Lac marin de Soustons,35056,observation-d782886d-7c4a-47bf-978d-c42c638d4687-3,https://biolit.fr/observations/observation-d782886d-7c4a-47bf-978d-c42c638d4687-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7468_buse.JPG,,FALSE, +N1,58874,sortie-d782886d-7c4a-47bf-978d-c42c638d4687,https://biolit.fr/sorties/sortie-d782886d-7c4a-47bf-978d-c42c638d4687/,Olivier BILLON,,5/21/2021 0:00,10.0000000,12.0000000,43.776401000000,-1.411224000000,,Lac marin de Soustons,35058,observation-d782886d-7c4a-47bf-978d-c42c638d4687-4,https://biolit.fr/observations/observation-d782886d-7c4a-47bf-978d-c42c638d4687-4/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7471_herons-scaled.jpg,,TRUE, +N1,58874,sortie-d782886d-7c4a-47bf-978d-c42c638d4687,https://biolit.fr/sorties/sortie-d782886d-7c4a-47bf-978d-c42c638d4687/,Olivier BILLON,,5/21/2021 0:00,10.0000000,12.0000000,43.776401000000,-1.411224000000,,Lac marin de Soustons,35060,observation-d782886d-7c4a-47bf-978d-c42c638d4687-5,https://biolit.fr/observations/observation-d782886d-7c4a-47bf-978d-c42c638d4687-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7490_merle-scaled.jpg,,FALSE, +N1,58874,sortie-d782886d-7c4a-47bf-978d-c42c638d4687,https://biolit.fr/sorties/sortie-d782886d-7c4a-47bf-978d-c42c638d4687/,Olivier BILLON,,5/21/2021 0:00,10.0000000,12.0000000,43.776401000000,-1.411224000000,,Lac marin de Soustons,35062,observation-d782886d-7c4a-47bf-978d-c42c638d4687-6,https://biolit.fr/observations/observation-d782886d-7c4a-47bf-978d-c42c638d4687-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7470_canards-scaled.jpg,,FALSE, +N1,58875,sortie-027b9104-46dc-4c63-bcde-1285317f52eb,https://biolit.fr/sorties/sortie-027b9104-46dc-4c63-bcde-1285317f52eb/,Marine,,5/20/2021 0:00,11.0000000,12.0000000,43.239909000000,5.362335000000,Planète Mer,Plage du bain des dames,35066,observation-027b9104-46dc-4c63-bcde-1285317f52eb,https://biolit.fr/observations/observation-027b9104-46dc-4c63-bcde-1285317f52eb/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210520_111315_compress27-scaled.jpg,,TRUE, +N1,58875,sortie-027b9104-46dc-4c63-bcde-1285317f52eb,https://biolit.fr/sorties/sortie-027b9104-46dc-4c63-bcde-1285317f52eb/,Marine,,5/20/2021 0:00,11.0000000,12.0000000,43.239909000000,5.362335000000,Planète Mer,Plage du bain des dames,35068,observation-027b9104-46dc-4c63-bcde-1285317f52eb-2,https://biolit.fr/observations/observation-027b9104-46dc-4c63-bcde-1285317f52eb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210520_113133_compress68-scaled.jpg,,FALSE, +N1,58875,sortie-027b9104-46dc-4c63-bcde-1285317f52eb,https://biolit.fr/sorties/sortie-027b9104-46dc-4c63-bcde-1285317f52eb/,Marine,,5/20/2021 0:00,11.0000000,12.0000000,43.239909000000,5.362335000000,Planète Mer,Plage du bain des dames,35070,observation-027b9104-46dc-4c63-bcde-1285317f52eb-3,https://biolit.fr/observations/observation-027b9104-46dc-4c63-bcde-1285317f52eb-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210520_112238_compress47-scaled.jpg,,FALSE, +N1,58875,sortie-027b9104-46dc-4c63-bcde-1285317f52eb,https://biolit.fr/sorties/sortie-027b9104-46dc-4c63-bcde-1285317f52eb/,Marine,,5/20/2021 0:00,11.0000000,12.0000000,43.239909000000,5.362335000000,Planète Mer,Plage du bain des dames,35072,observation-027b9104-46dc-4c63-bcde-1285317f52eb-4,https://biolit.fr/observations/observation-027b9104-46dc-4c63-bcde-1285317f52eb-4/,Caulerpa cylindracea,Caulerpe cylindracée,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210520_113723_compress89-scaled.jpg,,TRUE, +N1,58875,sortie-027b9104-46dc-4c63-bcde-1285317f52eb,https://biolit.fr/sorties/sortie-027b9104-46dc-4c63-bcde-1285317f52eb/,Marine,,5/20/2021 0:00,11.0000000,12.0000000,43.239909000000,5.362335000000,Planète Mer,Plage du bain des dames,35074,observation-027b9104-46dc-4c63-bcde-1285317f52eb-5,https://biolit.fr/observations/observation-027b9104-46dc-4c63-bcde-1285317f52eb-5/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210520_115418-scaled.jpg,,TRUE, +N1,58875,sortie-027b9104-46dc-4c63-bcde-1285317f52eb,https://biolit.fr/sorties/sortie-027b9104-46dc-4c63-bcde-1285317f52eb/,Marine,,5/20/2021 0:00,11.0000000,12.0000000,43.239909000000,5.362335000000,Planète Mer,Plage du bain des dames,35076,observation-027b9104-46dc-4c63-bcde-1285317f52eb-6,https://biolit.fr/observations/observation-027b9104-46dc-4c63-bcde-1285317f52eb-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210520_111531-scaled.jpg,,FALSE, +N1,58875,sortie-027b9104-46dc-4c63-bcde-1285317f52eb,https://biolit.fr/sorties/sortie-027b9104-46dc-4c63-bcde-1285317f52eb/,Marine,,5/20/2021 0:00,11.0000000,12.0000000,43.239909000000,5.362335000000,Planète Mer,Plage du bain des dames,35078,observation-027b9104-46dc-4c63-bcde-1285317f52eb-7,https://biolit.fr/observations/observation-027b9104-46dc-4c63-bcde-1285317f52eb-7/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210520_114619-scaled.jpg,,TRUE, +N1,58875,sortie-027b9104-46dc-4c63-bcde-1285317f52eb,https://biolit.fr/sorties/sortie-027b9104-46dc-4c63-bcde-1285317f52eb/,Marine,,5/20/2021 0:00,11.0000000,12.0000000,43.239909000000,5.362335000000,Planète Mer,Plage du bain des dames,35080,observation-027b9104-46dc-4c63-bcde-1285317f52eb-8,https://biolit.fr/observations/observation-027b9104-46dc-4c63-bcde-1285317f52eb-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210520_113246-scaled.jpg,,FALSE, +N1,58875,sortie-027b9104-46dc-4c63-bcde-1285317f52eb,https://biolit.fr/sorties/sortie-027b9104-46dc-4c63-bcde-1285317f52eb/,Marine,,5/20/2021 0:00,11.0000000,12.0000000,43.239909000000,5.362335000000,Planète Mer,Plage du bain des dames,35082,observation-027b9104-46dc-4c63-bcde-1285317f52eb-9,https://biolit.fr/observations/observation-027b9104-46dc-4c63-bcde-1285317f52eb-9/,Anurida maritima,Collembole marin,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210520_112710-scaled.jpg,,TRUE, +N1,58875,sortie-027b9104-46dc-4c63-bcde-1285317f52eb,https://biolit.fr/sorties/sortie-027b9104-46dc-4c63-bcde-1285317f52eb/,Marine,,5/20/2021 0:00,11.0000000,12.0000000,43.239909000000,5.362335000000,Planète Mer,Plage du bain des dames,35084,observation-027b9104-46dc-4c63-bcde-1285317f52eb-10,https://biolit.fr/observations/observation-027b9104-46dc-4c63-bcde-1285317f52eb-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210520_115231-scaled.jpg,,FALSE, +N1,58876,sortie-678f22fa-c95a-45fb-8b56-913748d3bc07,https://biolit.fr/sorties/sortie-678f22fa-c95a-45fb-8b56-913748d3bc07/,bpages,,5/17/2021 0:00,17.0000000,18.0000000,43.46122800000,-1.577531000000,,Plage d’Ilbarritz,35086,observation-678f22fa-c95a-45fb-8b56-913748d3bc07,https://biolit.fr/observations/observation-678f22fa-c95a-45fb-8b56-913748d3bc07/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/804752EF-D6F7-48AC-B9D5-EA9841CE7EDC.jpeg,,TRUE, +N1,58876,sortie-678f22fa-c95a-45fb-8b56-913748d3bc07,https://biolit.fr/sorties/sortie-678f22fa-c95a-45fb-8b56-913748d3bc07/,bpages,,5/17/2021 0:00,17.0000000,18.0000000,43.46122800000,-1.577531000000,,Plage d’Ilbarritz,35088,observation-678f22fa-c95a-45fb-8b56-913748d3bc07-2,https://biolit.fr/observations/observation-678f22fa-c95a-45fb-8b56-913748d3bc07-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/8F4C705B-9719-4E65-BB0E-9EC19423E5FD.jpeg,,FALSE, +N1,58876,sortie-678f22fa-c95a-45fb-8b56-913748d3bc07,https://biolit.fr/sorties/sortie-678f22fa-c95a-45fb-8b56-913748d3bc07/,bpages,,5/17/2021 0:00,17.0000000,18.0000000,43.46122800000,-1.577531000000,,Plage d’Ilbarritz,35090,observation-678f22fa-c95a-45fb-8b56-913748d3bc07-3,https://biolit.fr/observations/observation-678f22fa-c95a-45fb-8b56-913748d3bc07-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/F2FD3D1F-C9C4-4018-AF0A-9F00CD6976C9.jpeg,,FALSE, +N1,58877,sortie-e31df313-91cb-4245-af5b-26d1b74a19e2,https://biolit.fr/sorties/sortie-e31df313-91cb-4245-af5b-26d1b74a19e2/,CHRISTOPHE LIBERSE,,5/15/2021 0:00,15.0000000,16.0000000,49.689201000000,0.167782000000,,"La Poterie, Valleuse du Fourquet",35092,observation-e31df313-91cb-4245-af5b-26d1b74a19e2,https://biolit.fr/observations/observation-e31df313-91cb-4245-af5b-26d1b74a19e2/,,,,https://biolit.fr/wp-content/uploads/2023/07/1-scaled.jpg,,FALSE, +N1,58877,sortie-e31df313-91cb-4245-af5b-26d1b74a19e2,https://biolit.fr/sorties/sortie-e31df313-91cb-4245-af5b-26d1b74a19e2/,CHRISTOPHE LIBERSE,,5/15/2021 0:00,15.0000000,16.0000000,49.689201000000,0.167782000000,,"La Poterie, Valleuse du Fourquet",35094,observation-e31df313-91cb-4245-af5b-26d1b74a19e2-2,https://biolit.fr/observations/observation-e31df313-91cb-4245-af5b-26d1b74a19e2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/2-scaled.jpg,,FALSE, +N1,58877,sortie-e31df313-91cb-4245-af5b-26d1b74a19e2,https://biolit.fr/sorties/sortie-e31df313-91cb-4245-af5b-26d1b74a19e2/,CHRISTOPHE LIBERSE,,5/15/2021 0:00,15.0000000,16.0000000,49.689201000000,0.167782000000,,"La Poterie, Valleuse du Fourquet",35097,observation-e31df313-91cb-4245-af5b-26d1b74a19e2-4,https://biolit.fr/observations/observation-e31df313-91cb-4245-af5b-26d1b74a19e2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/4-scaled.jpg,,FALSE, +N1,58877,sortie-e31df313-91cb-4245-af5b-26d1b74a19e2,https://biolit.fr/sorties/sortie-e31df313-91cb-4245-af5b-26d1b74a19e2/,CHRISTOPHE LIBERSE,,5/15/2021 0:00,15.0000000,16.0000000,49.689201000000,0.167782000000,,"La Poterie, Valleuse du Fourquet",35099,observation-e31df313-91cb-4245-af5b-26d1b74a19e2-5,https://biolit.fr/observations/observation-e31df313-91cb-4245-af5b-26d1b74a19e2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/5_0-scaled.jpg,,FALSE, +N1,58877,sortie-e31df313-91cb-4245-af5b-26d1b74a19e2,https://biolit.fr/sorties/sortie-e31df313-91cb-4245-af5b-26d1b74a19e2/,CHRISTOPHE LIBERSE,,5/15/2021 0:00,15.0000000,16.0000000,49.689201000000,0.167782000000,,"La Poterie, Valleuse du Fourquet",35101,observation-e31df313-91cb-4245-af5b-26d1b74a19e2-6,https://biolit.fr/observations/observation-e31df313-91cb-4245-af5b-26d1b74a19e2-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/6_0.jpg,,FALSE, +N1,58877,sortie-e31df313-91cb-4245-af5b-26d1b74a19e2,https://biolit.fr/sorties/sortie-e31df313-91cb-4245-af5b-26d1b74a19e2/,CHRISTOPHE LIBERSE,,5/15/2021 0:00,15.0000000,16.0000000,49.689201000000,0.167782000000,,"La Poterie, Valleuse du Fourquet",35102,observation-e31df313-91cb-4245-af5b-26d1b74a19e2-7,https://biolit.fr/observations/observation-e31df313-91cb-4245-af5b-26d1b74a19e2-7/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/7_0.jpg,,TRUE, +N1,58877,sortie-e31df313-91cb-4245-af5b-26d1b74a19e2,https://biolit.fr/sorties/sortie-e31df313-91cb-4245-af5b-26d1b74a19e2/,CHRISTOPHE LIBERSE,,5/15/2021 0:00,15.0000000,16.0000000,49.689201000000,0.167782000000,,"La Poterie, Valleuse du Fourquet",35103,observation-e31df313-91cb-4245-af5b-26d1b74a19e2-8,https://biolit.fr/observations/observation-e31df313-91cb-4245-af5b-26d1b74a19e2-8/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/8-scaled.jpg,,TRUE, +N1,58877,sortie-e31df313-91cb-4245-af5b-26d1b74a19e2,https://biolit.fr/sorties/sortie-e31df313-91cb-4245-af5b-26d1b74a19e2/,CHRISTOPHE LIBERSE,,5/15/2021 0:00,15.0000000,16.0000000,49.689201000000,0.167782000000,,"La Poterie, Valleuse du Fourquet",35105,observation-e31df313-91cb-4245-af5b-26d1b74a19e2-9,https://biolit.fr/observations/observation-e31df313-91cb-4245-af5b-26d1b74a19e2-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/9-scaled.jpg,,FALSE, +N1,58877,sortie-e31df313-91cb-4245-af5b-26d1b74a19e2,https://biolit.fr/sorties/sortie-e31df313-91cb-4245-af5b-26d1b74a19e2/,CHRISTOPHE LIBERSE,,5/15/2021 0:00,15.0000000,16.0000000,49.689201000000,0.167782000000,,"La Poterie, Valleuse du Fourquet",35107,observation-e31df313-91cb-4245-af5b-26d1b74a19e2-10,https://biolit.fr/observations/observation-e31df313-91cb-4245-af5b-26d1b74a19e2-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/10-scaled.jpg,,FALSE, +N1,58877,sortie-e31df313-91cb-4245-af5b-26d1b74a19e2,https://biolit.fr/sorties/sortie-e31df313-91cb-4245-af5b-26d1b74a19e2/,CHRISTOPHE LIBERSE,,5/15/2021 0:00,15.0000000,16.0000000,49.689201000000,0.167782000000,,"La Poterie, Valleuse du Fourquet",35109,observation-e31df313-91cb-4245-af5b-26d1b74a19e2-11,https://biolit.fr/observations/observation-e31df313-91cb-4245-af5b-26d1b74a19e2-11/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/11.jpg,,TRUE, +N1,58878,sortie-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5,https://biolit.fr/sorties/sortie-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5/,patrick.caillon,,05/02/2021,14.0000000,15.0000000,47.263861000000,-2.345190000000,,"pornichet, plage des libraires",35110,observation-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5,https://biolit.fr/observations/observation-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4126-scaled.jpg | https://biolit.fr/wp-content/uploads/2021/05/IMG_4127-scaled-1.jpg,,FALSE, +N1,58878,sortie-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5,https://biolit.fr/sorties/sortie-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5/,patrick.caillon,,05/02/2021,14.0000000,15.0000000,47.263861000000,-2.345190000000,,"pornichet, plage des libraires",35114,observation-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5-3,https://biolit.fr/observations/observation-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5-3/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4129-scaled.jpg,,TRUE, +N1,58878,sortie-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5,https://biolit.fr/sorties/sortie-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5/,patrick.caillon,,05/02/2021,14.0000000,15.0000000,47.263861000000,-2.345190000000,,"pornichet, plage des libraires",35116,observation-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5-4,https://biolit.fr/observations/observation-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4131-scaled.jpg,,FALSE, +N1,58878,sortie-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5,https://biolit.fr/sorties/sortie-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5/,patrick.caillon,,05/02/2021,14.0000000,15.0000000,47.263861000000,-2.345190000000,,"pornichet, plage des libraires",35118,observation-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5-5,https://biolit.fr/observations/observation-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4128-min-scaled.jpg,,FALSE, +N1,58878,sortie-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5,https://biolit.fr/sorties/sortie-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5/,patrick.caillon,,05/02/2021,14.0000000,15.0000000,47.263861000000,-2.345190000000,,"pornichet, plage des libraires",35120,observation-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5-6,https://biolit.fr/observations/observation-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5-6/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4130-min-scaled.jpg,,TRUE, +N1,58878,sortie-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5,https://biolit.fr/sorties/sortie-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5/,patrick.caillon,,05/02/2021,14.0000000,15.0000000,47.263861000000,-2.345190000000,,"pornichet, plage des libraires",35122,observation-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5-7,https://biolit.fr/observations/observation-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5-7/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_4132-min-scaled.jpg,,TRUE, +N1,58878,sortie-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5,https://biolit.fr/sorties/sortie-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5/,patrick.caillon,,05/02/2021,14.0000000,15.0000000,47.263861000000,-2.345190000000,,"pornichet, plage des libraires",35124,observation-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5-8,https://biolit.fr/observations/observation-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4133-min-scaled.jpg,,FALSE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35126,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragaceae_2.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35128,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-2,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-2/,Aeolidiella alderi,Eolis d'Alder,,https://biolit.fr/wp-content/uploads/2023/07/Aeolidiella alderi.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35130,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-3,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_11.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35132,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-4,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-4/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_5.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35134,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-5,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-5/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/Aplysia fasciata.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35136,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-6,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-6/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/Armeria maritima.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35138,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-7,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-7/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_13.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35140,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-8,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-8/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_12.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35142,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-9,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-9/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_6.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35144,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-10,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-10/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/crithmum maritimum.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35145,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-11,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_14.PNG,,FALSE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35147,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-12,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-12/,Lagurus ovatus,Queue de lièvre,,https://biolit.fr/wp-content/uploads/2023/07/Lagurus ovatus.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35149,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-13,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-13/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_8.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35151,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-14,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-14/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina fabalis.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35153,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-15,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-15/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_3.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35155,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-16,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-16/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Patella ulyssiponensis_1.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35157,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-17,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-17/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus_4.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35159,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-18,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-18/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_12.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35161,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-19,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-19/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/2023/07/Salaria pavo-scaled.jpg,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35162,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-20,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-20/,Sparus aurata,Dorade (daurade) royale,,https://biolit.fr/wp-content/uploads/2023/07/Sparus aurata.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35164,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-21,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-21/,Spergularia rupicola,Spergulaire des rochers,,https://biolit.fr/wp-content/uploads/2023/07/Spergula rupicola.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35166,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-22,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-22/,Sphaeromatidae (famille),Sphéromiens,,https://biolit.fr/wp-content/uploads/2023/07/Sphaeromatidae_3.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35168,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-23,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-23/,Spondyliosoma cantharus,Dorade grise,,https://biolit.fr/wp-content/uploads/2023/07/Spondilyosoma cantharus.PNG,,FALSE, +N1,58880,sortie-b956ed35-0411-4ced-be62-642bb6f8a405,https://biolit.fr/sorties/sortie-b956ed35-0411-4ced-be62-642bb6f8a405/,Marine,,5/13/2021 0:00,16.0000000,16.0:25,43.67899900000,-1.4406350000,,Hossegor,35170,observation-b956ed35-0411-4ced-be62-642bb6f8a405,https://biolit.fr/observations/observation-b956ed35-0411-4ced-be62-642bb6f8a405/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210513_170156_compress26-scaled.jpg,,TRUE, +N1,58880,sortie-b956ed35-0411-4ced-be62-642bb6f8a405,https://biolit.fr/sorties/sortie-b956ed35-0411-4ced-be62-642bb6f8a405/,Marine,,5/13/2021 0:00,16.0000000,16.0:25,43.67899900000,-1.4406350000,,Hossegor,35172,observation-b956ed35-0411-4ced-be62-642bb6f8a405-2,https://biolit.fr/observations/observation-b956ed35-0411-4ced-be62-642bb6f8a405-2/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210513_170139_compress34-scaled.jpg,,TRUE, +N1,58880,sortie-b956ed35-0411-4ced-be62-642bb6f8a405,https://biolit.fr/sorties/sortie-b956ed35-0411-4ced-be62-642bb6f8a405/,Marine,,5/13/2021 0:00,16.0000000,16.0:25,43.67899900000,-1.4406350000,,Hossegor,35174,observation-b956ed35-0411-4ced-be62-642bb6f8a405-3,https://biolit.fr/observations/observation-b956ed35-0411-4ced-be62-642bb6f8a405-3/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210513_170217_compress9-scaled.jpg,,TRUE, +N1,58880,sortie-b956ed35-0411-4ced-be62-642bb6f8a405,https://biolit.fr/sorties/sortie-b956ed35-0411-4ced-be62-642bb6f8a405/,Marine,,5/13/2021 0:00,16.0000000,16.0:25,43.67899900000,-1.4406350000,,Hossegor,35176,observation-b956ed35-0411-4ced-be62-642bb6f8a405-4,https://biolit.fr/observations/observation-b956ed35-0411-4ced-be62-642bb6f8a405-4/,Scyliorhinus canicula,Capsule de petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210513_170010_compress70-scaled.jpg,,TRUE, +N1,58880,sortie-b956ed35-0411-4ced-be62-642bb6f8a405,https://biolit.fr/sorties/sortie-b956ed35-0411-4ced-be62-642bb6f8a405/,Marine,,5/13/2021 0:00,16.0000000,16.0:25,43.67899900000,-1.4406350000,,Hossegor,35178,observation-b956ed35-0411-4ced-be62-642bb6f8a405-5,https://biolit.fr/observations/observation-b956ed35-0411-4ced-be62-642bb6f8a405-5/,Ocenebra erinaceus,Ponte de Bigorneau perceur,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210513_170621_compress43-scaled.jpg,,TRUE, +N1,58880,sortie-b956ed35-0411-4ced-be62-642bb6f8a405,https://biolit.fr/sorties/sortie-b956ed35-0411-4ced-be62-642bb6f8a405/,Marine,,5/13/2021 0:00,16.0000000,16.0:25,43.67899900000,-1.4406350000,,Hossegor,35180,observation-b956ed35-0411-4ced-be62-642bb6f8a405-6,https://biolit.fr/observations/observation-b956ed35-0411-4ced-be62-642bb6f8a405-6/,Ocenebra erinaceus,Ponte de Bigorneau perceur,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210513_170637-scaled.jpg,,TRUE, +N1,58881,sortie-5a5bc220-4bc1-41b7-803c-37f87ed7603a,https://biolit.fr/sorties/sortie-5a5bc220-4bc1-41b7-803c-37f87ed7603a/,Thomas DIEUZEIDE,,05/06/2021,11.0000000,16.0000000,43.659248000000,-1.444033000000,,"Hossegor, plage sud",35182,observation-5a5bc220-4bc1-41b7-803c-37f87ed7603a,https://biolit.fr/observations/observation-5a5bc220-4bc1-41b7-803c-37f87ed7603a/,,,,https://biolit.fr/wp-content/uploads/2023/07/1 Lys des sables 1-scaled.jpg,,FALSE, +N1,58881,sortie-5a5bc220-4bc1-41b7-803c-37f87ed7603a,https://biolit.fr/sorties/sortie-5a5bc220-4bc1-41b7-803c-37f87ed7603a/,Thomas DIEUZEIDE,,05/06/2021,11.0000000,16.0000000,43.659248000000,-1.444033000000,,"Hossegor, plage sud",35184,observation-5a5bc220-4bc1-41b7-803c-37f87ed7603a-2,https://biolit.fr/observations/observation-5a5bc220-4bc1-41b7-803c-37f87ed7603a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/2 Lys des sables 2-scaled.jpg,,FALSE, +N1,58881,sortie-5a5bc220-4bc1-41b7-803c-37f87ed7603a,https://biolit.fr/sorties/sortie-5a5bc220-4bc1-41b7-803c-37f87ed7603a/,Thomas DIEUZEIDE,,05/06/2021,11.0000000,16.0000000,43.659248000000,-1.444033000000,,"Hossegor, plage sud",35186,observation-5a5bc220-4bc1-41b7-803c-37f87ed7603a-3,https://biolit.fr/observations/observation-5a5bc220-4bc1-41b7-803c-37f87ed7603a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/3 Lys des sables 3-scaled.jpg,,FALSE, +N1,58881,sortie-5a5bc220-4bc1-41b7-803c-37f87ed7603a,https://biolit.fr/sorties/sortie-5a5bc220-4bc1-41b7-803c-37f87ed7603a/,Thomas DIEUZEIDE,,05/06/2021,11.0000000,16.0000000,43.659248000000,-1.444033000000,,"Hossegor, plage sud",35188,observation-5a5bc220-4bc1-41b7-803c-37f87ed7603a-4,https://biolit.fr/observations/observation-5a5bc220-4bc1-41b7-803c-37f87ed7603a-4/,Carpobrotus edulis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/4 Griffes de sorcière 1-scaled.jpg,,TRUE, +N1,58881,sortie-5a5bc220-4bc1-41b7-803c-37f87ed7603a,https://biolit.fr/sorties/sortie-5a5bc220-4bc1-41b7-803c-37f87ed7603a/,Thomas DIEUZEIDE,,05/06/2021,11.0000000,16.0000000,43.659248000000,-1.444033000000,,"Hossegor, plage sud",35190,observation-5a5bc220-4bc1-41b7-803c-37f87ed7603a-5,https://biolit.fr/observations/observation-5a5bc220-4bc1-41b7-803c-37f87ed7603a-5/,Carpobrotus edulis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/5 Griffes de sorcière 2-scaled.jpg,,TRUE, +N1,58881,sortie-5a5bc220-4bc1-41b7-803c-37f87ed7603a,https://biolit.fr/sorties/sortie-5a5bc220-4bc1-41b7-803c-37f87ed7603a/,Thomas DIEUZEIDE,,05/06/2021,11.0000000,16.0000000,43.659248000000,-1.444033000000,,"Hossegor, plage sud",35192,observation-5a5bc220-4bc1-41b7-803c-37f87ed7603a-6,https://biolit.fr/observations/observation-5a5bc220-4bc1-41b7-803c-37f87ed7603a-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/6 Immortelles-scaled.jpg,,FALSE, +N1,58881,sortie-5a5bc220-4bc1-41b7-803c-37f87ed7603a,https://biolit.fr/sorties/sortie-5a5bc220-4bc1-41b7-803c-37f87ed7603a/,Thomas DIEUZEIDE,,05/06/2021,11.0000000,16.0000000,43.659248000000,-1.444033000000,,"Hossegor, plage sud",35196,observation-5a5bc220-4bc1-41b7-803c-37f87ed7603a-8,https://biolit.fr/observations/observation-5a5bc220-4bc1-41b7-803c-37f87ed7603a-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/8 Oeillets des sables 2-scaled.jpg | https://biolit.fr/wp-content/uploads/2021/05/7-Oeillets-des-sables-1-scaled-1.jpg,,FALSE, +N1,58882,sortie-e27d8c67-a2a5-4be3-aff1-62521135e338,https://biolit.fr/sorties/sortie-e27d8c67-a2a5-4be3-aff1-62521135e338/,Jackie,,05/08/2021,15.0000000,16.0000000,51.050933000000,2.374060000000,,Dunkerque Plage des Alliés,35198,observation-e27d8c67-a2a5-4be3-aff1-62521135e338,https://biolit.fr/observations/observation-e27d8c67-a2a5-4be3-aff1-62521135e338/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8188-scaled.jpg,,FALSE, +N1,58882,sortie-e27d8c67-a2a5-4be3-aff1-62521135e338,https://biolit.fr/sorties/sortie-e27d8c67-a2a5-4be3-aff1-62521135e338/,Jackie,,05/08/2021,15.0000000,16.0000000,51.050933000000,2.374060000000,,Dunkerque Plage des Alliés,35200,observation-e27d8c67-a2a5-4be3-aff1-62521135e338-2,https://biolit.fr/observations/observation-e27d8c67-a2a5-4be3-aff1-62521135e338-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210508_161949-scaled.jpg,,FALSE, +N1,58882,sortie-e27d8c67-a2a5-4be3-aff1-62521135e338,https://biolit.fr/sorties/sortie-e27d8c67-a2a5-4be3-aff1-62521135e338/,Jackie,,05/08/2021,15.0000000,16.0000000,51.050933000000,2.374060000000,,Dunkerque Plage des Alliés,35202,observation-e27d8c67-a2a5-4be3-aff1-62521135e338-3,https://biolit.fr/observations/observation-e27d8c67-a2a5-4be3-aff1-62521135e338-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8170-scaled.jpg,,FALSE, +N1,58882,sortie-e27d8c67-a2a5-4be3-aff1-62521135e338,https://biolit.fr/sorties/sortie-e27d8c67-a2a5-4be3-aff1-62521135e338/,Jackie,,05/08/2021,15.0000000,16.0000000,51.050933000000,2.374060000000,,Dunkerque Plage des Alliés,35206,observation-e27d8c67-a2a5-4be3-aff1-62521135e338-5,https://biolit.fr/observations/observation-e27d8c67-a2a5-4be3-aff1-62521135e338-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8167.JPG,,FALSE, +N1,58882,sortie-e27d8c67-a2a5-4be3-aff1-62521135e338,https://biolit.fr/sorties/sortie-e27d8c67-a2a5-4be3-aff1-62521135e338/,Jackie,,05/08/2021,15.0000000,16.0000000,51.050933000000,2.374060000000,,Dunkerque Plage des Alliés,35208,observation-e27d8c67-a2a5-4be3-aff1-62521135e338-6,https://biolit.fr/observations/observation-e27d8c67-a2a5-4be3-aff1-62521135e338-6/,Ensis ensis,Couteau-sabre,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8181.JPG,,TRUE, +N1,58882,sortie-e27d8c67-a2a5-4be3-aff1-62521135e338,https://biolit.fr/sorties/sortie-e27d8c67-a2a5-4be3-aff1-62521135e338/,Jackie,,05/08/2021,15.0000000,16.0000000,51.050933000000,2.374060000000,,Dunkerque Plage des Alliés,35210,observation-e27d8c67-a2a5-4be3-aff1-62521135e338-7,https://biolit.fr/observations/observation-e27d8c67-a2a5-4be3-aff1-62521135e338-7/,Scyliorhinus canicula,Capsule de petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8185-scaled.jpg,,TRUE, +N1,58882,sortie-e27d8c67-a2a5-4be3-aff1-62521135e338,https://biolit.fr/sorties/sortie-e27d8c67-a2a5-4be3-aff1-62521135e338/,Jackie,,05/08/2021,15.0000000,16.0000000,51.050933000000,2.374060000000,,Dunkerque Plage des Alliés,35212,observation-e27d8c67-a2a5-4be3-aff1-62521135e338-8,https://biolit.fr/observations/observation-e27d8c67-a2a5-4be3-aff1-62521135e338-8/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210508_152340-scaled.jpg,,TRUE, +N1,58882,sortie-e27d8c67-a2a5-4be3-aff1-62521135e338,https://biolit.fr/sorties/sortie-e27d8c67-a2a5-4be3-aff1-62521135e338/,Jackie,,05/08/2021,15.0000000,16.0000000,51.050933000000,2.374060000000,,Dunkerque Plage des Alliés,35214,observation-e27d8c67-a2a5-4be3-aff1-62521135e338-9,https://biolit.fr/observations/observation-e27d8c67-a2a5-4be3-aff1-62521135e338-9/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20210508_155355-scaled.jpg,,TRUE, +N1,58882,sortie-e27d8c67-a2a5-4be3-aff1-62521135e338,https://biolit.fr/sorties/sortie-e27d8c67-a2a5-4be3-aff1-62521135e338/,Jackie,,05/08/2021,15.0000000,16.0000000,51.050933000000,2.374060000000,,Dunkerque Plage des Alliés,35216,observation-e27d8c67-a2a5-4be3-aff1-62521135e338-10,https://biolit.fr/observations/observation-e27d8c67-a2a5-4be3-aff1-62521135e338-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8160-scaled.jpg,,FALSE, +N1,58882,sortie-e27d8c67-a2a5-4be3-aff1-62521135e338,https://biolit.fr/sorties/sortie-e27d8c67-a2a5-4be3-aff1-62521135e338/,Jackie,,05/08/2021,15.0000000,16.0000000,51.050933000000,2.374060000000,,Dunkerque Plage des Alliés,35218,observation-e27d8c67-a2a5-4be3-aff1-62521135e338-11,https://biolit.fr/observations/observation-e27d8c67-a2a5-4be3-aff1-62521135e338-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210508_153916-scaled.jpg,,FALSE, +N1,58882,sortie-e27d8c67-a2a5-4be3-aff1-62521135e338,https://biolit.fr/sorties/sortie-e27d8c67-a2a5-4be3-aff1-62521135e338/,Jackie,,05/08/2021,15.0000000,16.0000000,51.050933000000,2.374060000000,,Dunkerque Plage des Alliés,35220,observation-e27d8c67-a2a5-4be3-aff1-62521135e338-12,https://biolit.fr/observations/observation-e27d8c67-a2a5-4be3-aff1-62521135e338-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8155-scaled.jpg,,FALSE, +N1,58882,sortie-e27d8c67-a2a5-4be3-aff1-62521135e338,https://biolit.fr/sorties/sortie-e27d8c67-a2a5-4be3-aff1-62521135e338/,Jackie,,05/08/2021,15.0000000,16.0000000,51.050933000000,2.374060000000,,Dunkerque Plage des Alliés,35222,observation-e27d8c67-a2a5-4be3-aff1-62521135e338-13,https://biolit.fr/observations/observation-e27d8c67-a2a5-4be3-aff1-62521135e338-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8187.JPG,,FALSE, +N1,58882,sortie-e27d8c67-a2a5-4be3-aff1-62521135e338,https://biolit.fr/sorties/sortie-e27d8c67-a2a5-4be3-aff1-62521135e338/,Jackie,,05/08/2021,15.0000000,16.0000000,51.050933000000,2.374060000000,,Dunkerque Plage des Alliés,35224,observation-e27d8c67-a2a5-4be3-aff1-62521135e338-14,https://biolit.fr/observations/observation-e27d8c67-a2a5-4be3-aff1-62521135e338-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8191-scaled.jpg,,FALSE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35226,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Isozoanthus sulcatus,Anémone chocolat,,https://biolit.fr/wp-content/uploads/2023/07/anémone sp_5.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35228,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-2,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_10.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35230,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-3,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-3/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_4.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35232,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-4,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-4/,Anthus petrosus,Pipit maritime,,https://biolit.fr/wp-content/uploads/2023/07/Anthus petrosus.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35234,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-5,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-5/,Aplysia fasciata,Aplysie fasciée,,https://biolit.fr/wp-content/uploads/2023/07/Aplysia spp.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35236,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-6,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/aplysie sp.PNG,,FALSE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35238,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-7,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-7/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/Arenaria interpres_1.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35240,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-8,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-8/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_7.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35242,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-9,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-9/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_12.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35244,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-10,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-10/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_6.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35246,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-11,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-11/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botrylloides schlosseri.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35248,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-12,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-12/,Botrylloides spp. (leachii violaceus diegensis),Botrylles,,https://biolit.fr/wp-content/uploads/2023/07/Botrylloides spp_1.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35250,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-13,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-13/,Calyptraea chinensis,Chapeau chinois,,https://biolit.fr/wp-content/uploads/2023/07/Calyptreae chinensis.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35252,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-14,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-14/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/cancer pagurus_4.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35254,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-15,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-15/,Dynamena pumila,Petite dynamène,,https://biolit.fr/wp-content/uploads/2023/07/Dynamene pumila.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35256,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-16,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-16/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 1_5.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35258,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-17,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-17/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 2_4.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35260,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-18,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_13.PNG,,FALSE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35262,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-19,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-19/,Ocenebra erinaceus,Ponte de Bigorneau perceur,,https://biolit.fr/wp-content/uploads/2023/07/erinaceus.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35264,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-20,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge spp.PNG,,FALSE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35266,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-21,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-21/,Gari depressa,Psammobie déprimée,,https://biolit.fr/wp-content/uploads/2023/07/Gari depressa_6.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35268,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-22,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-22/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/Haliotis tuberculata_3.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35270,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-23,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-23/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochiotona cinerea.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35272,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-24,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-24/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_11.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35274,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-25,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-25/,Metridium senile,Œillet de mer,,https://biolit.fr/wp-content/uploads/2023/07/Metridium sp_0.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35276,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-26,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-26/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia_3.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35278,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-27,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-27/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_6.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35280,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-28,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/Non identifié 1.PNG,,FALSE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35281,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-29,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/non identifié_0.PNG,,FALSE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35283,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-30,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-30/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/ophiotrix fragilis_1.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35285,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-31,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-31/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/Ponte d'aplysie-scaled.jpg,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35286,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-32,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ponte de doris.PNG,,FALSE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35288,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-33,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-33/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_11.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35290,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-34,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-34/,Sterna hirundo,Sterne pierregarin,,https://biolit.fr/wp-content/uploads/2023/07/Sterna hirundo.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35292,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-35,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-35/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_9.PNG,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35296,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-2,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-2/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210418_02.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35298,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-3,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-3/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/20210418_03.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35300,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-4,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210418_04.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35302,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-5,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-5/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20210418_05.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35304,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-6,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-6/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/20210418_06.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35306,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-7,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-7/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210418_07.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35308,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-8,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210418_08.jpg,,FALSE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35310,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-9,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-9/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/20210418_09.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,"""https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/""",Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35312,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-10,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210418_10.jpg,,FALSE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35314,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-11,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210418_11.jpg,,FALSE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35316,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-12,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210418_12.jpg,,FALSE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35318,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-13,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210418_13.jpg,,FALSE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35320,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-14,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210418_14.jpg,,FALSE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35322,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-15,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-15/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/20210418_15.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35324,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-16,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-16/,Botrylloides diegensis,Botrylle de San Diego,,https://biolit.fr/wp-content/uploads/2023/07/20210418_16.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35326,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-17,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-17/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/20210418_17.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35328,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-18,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-18/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/20210418_21.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35330,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-19,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-19/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/20210418_22.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35332,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-20,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210418_24.jpg,,FALSE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35334,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-21,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210418_25.jpg,,FALSE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35336,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-22,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-22/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210418_26.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35338,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-23,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-23/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20210418_27.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35340,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-24,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-24/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/20210418_28.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35342,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-25,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210418_30.jpg,,FALSE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35344,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-26,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-26/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20210418_32.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35346,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-27,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210418_34.jpg,,FALSE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35348,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-28,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-28/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/20210418_35.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35350,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-29,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210418_36.jpg,,FALSE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35352,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-30,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-30/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210418_37.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35354,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-31,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-31/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/20210418_38.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35356,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-32,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210418_39.jpg,,FALSE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35358,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-33,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210418_40.jpg,,FALSE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35360,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-34,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-34/,Matthiola incana subsp. incana,Giroflée des jardins,,https://biolit.fr/wp-content/uploads/2023/07/20210418_41_0.jpg,,TRUE, +N1,58885,sortie-87bcbc25-2d13-48c5-b238-2cbe96333a64,https://biolit.fr/sorties/sortie-87bcbc25-2d13-48c5-b238-2cbe96333a64/,Marion.BioLit,,05/05/2021,10.0000000,10.0:45,43.28434500000,5.315757000000,,plage de saint-estève ,35362,observation-87bcbc25-2d13-48c5-b238-2cbe96333a64,https://biolit.fr/observations/observation-87bcbc25-2d13-48c5-b238-2cbe96333a64/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2021-05-06 à 18.36.52.png,,FALSE, +N1,58885,sortie-87bcbc25-2d13-48c5-b238-2cbe96333a64,https://biolit.fr/sorties/sortie-87bcbc25-2d13-48c5-b238-2cbe96333a64/,Marion.BioLit,,05/05/2021,10.0000000,10.0:45,43.28434500000,5.315757000000,,plage de saint-estève ,35364,observation-87bcbc25-2d13-48c5-b238-2cbe96333a64-2,https://biolit.fr/observations/observation-87bcbc25-2d13-48c5-b238-2cbe96333a64-2/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2021-05-06 à 18.37.32.png,,TRUE, +N1,58885,sortie-87bcbc25-2d13-48c5-b238-2cbe96333a64,https://biolit.fr/sorties/sortie-87bcbc25-2d13-48c5-b238-2cbe96333a64/,Marion.BioLit,,05/05/2021,10.0000000,10.0:45,43.28434500000,5.315757000000,,plage de saint-estève ,35366,observation-87bcbc25-2d13-48c5-b238-2cbe96333a64-3,https://biolit.fr/observations/observation-87bcbc25-2d13-48c5-b238-2cbe96333a64-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2021-05-06 à 18.37.43.png,,FALSE, +N1,58885,sortie-87bcbc25-2d13-48c5-b238-2cbe96333a64,https://biolit.fr/sorties/sortie-87bcbc25-2d13-48c5-b238-2cbe96333a64/,Marion.BioLit,,05/05/2021,10.0000000,10.0:45,43.28434500000,5.315757000000,,plage de saint-estève ,35368,observation-87bcbc25-2d13-48c5-b238-2cbe96333a64-4,https://biolit.fr/observations/observation-87bcbc25-2d13-48c5-b238-2cbe96333a64-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2021-05-06 à 18.37.54.png,,FALSE, +N1,58886,sortie-2ed2ea95-6b88-4420-8b63-c0a5ebebdfdd,https://biolit.fr/sorties/sortie-2ed2ea95-6b88-4420-8b63-c0a5ebebdfdd/,Romuald VIALE - EXPENATURE,,05/05/2021,10.0000000,12.0000000,43.284140000000,5.315784000000,ExpéNature,Plage Saint Estève ,35370,observation-2ed2ea95-6b88-4420-8b63-c0a5ebebdfdd,https://biolit.fr/observations/observation-2ed2ea95-6b88-4420-8b63-c0a5ebebdfdd/,,,,https://biolit.fr/wp-content/uploads/2023/07/183028580_3807425489363708_2265794656969356061_n.png,,FALSE, +N1,58887,sortie-28579743-ed11-4ab4-8e96-8f3d9f072eaa,https://biolit.fr/sorties/sortie-28579743-ed11-4ab4-8e96-8f3d9f072eaa/,Romuald VIALE - EXPENATURE,,05/05/2021,17.0000000,19.0000000,43.284244000000,5.315706000000,ExpéNature,Plage Saint Estève ,35372,observation-28579743-ed11-4ab4-8e96-8f3d9f072eaa,https://biolit.fr/observations/observation-28579743-ed11-4ab4-8e96-8f3d9f072eaa/,,,,https://biolit.fr/wp-content/uploads/2023/07/182726882_304387117881165_5528068588235173626_n.png,,FALSE, +N1,58888,sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03,https://biolit.fr/sorties/sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03/,FloVP,,4/29/2021 0:00,14.0000000,16.0000000,43.10374300000,3.118051000000,,"Gruissan, plage face aux chalets",35374,observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03,https://biolit.fr/observations/observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5271R.JPG,,FALSE, +N1,58888,sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03,https://biolit.fr/sorties/sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03/,FloVP,,4/29/2021 0:00,14.0000000,16.0000000,43.10374300000,3.118051000000,,"Gruissan, plage face aux chalets",35376,observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03-2,https://biolit.fr/observations/observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5273R-rotated.jpg,,FALSE, +N1,58888,sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03,https://biolit.fr/sorties/sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03/,FloVP,,4/29/2021 0:00,14.0000000,16.0000000,43.10374300000,3.118051000000,,"Gruissan, plage face aux chalets",35378,observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03-3,https://biolit.fr/observations/observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03-3/,Bolinus brandaris,Murex épineux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5279R-rotated.jpg,,TRUE, +N1,58888,sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03,https://biolit.fr/sorties/sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03/,FloVP,,4/29/2021 0:00,14.0000000,16.0000000,43.10374300000,3.118051000000,,"Gruissan, plage face aux chalets",35380,observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03-4,https://biolit.fr/observations/observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5280R-rotated.jpg,,FALSE, +N1,58888,sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03,https://biolit.fr/sorties/sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03/,FloVP,,4/29/2021 0:00,14.0000000,16.0000000,43.10374300000,3.118051000000,,"Gruissan, plage face aux chalets",35382,observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03-5,https://biolit.fr/observations/observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5282R.JPG,,FALSE, +N1,58888,sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03,https://biolit.fr/sorties/sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03/,FloVP,,4/29/2021 0:00,14.0000000,16.0000000,43.10374300000,3.118051000000,,"Gruissan, plage face aux chalets",35384,observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03-6,https://biolit.fr/observations/observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5283R.JPG,,FALSE, +N1,58888,sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03,https://biolit.fr/sorties/sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03/,FloVP,,4/29/2021 0:00,14.0000000,16.0000000,43.10374300000,3.118051000000,,"Gruissan, plage face aux chalets",35386,observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03-7,https://biolit.fr/observations/observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5284R.JPG,,FALSE, +N1,58888,sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03,https://biolit.fr/sorties/sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03/,FloVP,,4/29/2021 0:00,14.0000000,16.0000000,43.10374300000,3.118051000000,,"Gruissan, plage face aux chalets",35388,observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03-8,https://biolit.fr/observations/observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5285RR.JPG,,FALSE, +N1,58888,sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03,https://biolit.fr/sorties/sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03/,FloVP,,4/29/2021 0:00,14.0000000,16.0000000,43.10374300000,3.118051000000,,"Gruissan, plage face aux chalets",35390,observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03-9,https://biolit.fr/observations/observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5288R.JPG,,FALSE, +N1,58889,sortie-ae81491c-657d-4db4-bb14-d0f0bd846d5a,https://biolit.fr/sorties/sortie-ae81491c-657d-4db4-bb14-d0f0bd846d5a/,FloVP,,4/21/2021 0:00,15.0000000,16.0000000,43.182403000000,3.196962000000,,Saint Pierre la Mer (11560) ,35392,observation-ae81491c-657d-4db4-bb14-d0f0bd846d5a,https://biolit.fr/observations/observation-ae81491c-657d-4db4-bb14-d0f0bd846d5a/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5243R-rotated.jpg,,FALSE, +N1,58889,sortie-ae81491c-657d-4db4-bb14-d0f0bd846d5a,https://biolit.fr/sorties/sortie-ae81491c-657d-4db4-bb14-d0f0bd846d5a/,FloVP,,4/21/2021 0:00,15.0000000,16.0000000,43.182403000000,3.196962000000,,Saint Pierre la Mer (11560) ,35394,observation-ae81491c-657d-4db4-bb14-d0f0bd846d5a-2,https://biolit.fr/observations/observation-ae81491c-657d-4db4-bb14-d0f0bd846d5a-2/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5245R-rotated.jpg,,TRUE, +N1,58889,sortie-ae81491c-657d-4db4-bb14-d0f0bd846d5a,https://biolit.fr/sorties/sortie-ae81491c-657d-4db4-bb14-d0f0bd846d5a/,FloVP,,4/21/2021 0:00,15.0000000,16.0000000,43.182403000000,3.196962000000,,Saint Pierre la Mer (11560) ,35396,observation-ae81491c-657d-4db4-bb14-d0f0bd846d5a-3,https://biolit.fr/observations/observation-ae81491c-657d-4db4-bb14-d0f0bd846d5a-3/,Pecten jacobaeus,Coquille Saint-Jacques de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5250R-rotated.jpg,,TRUE, +N1,58889,sortie-ae81491c-657d-4db4-bb14-d0f0bd846d5a,https://biolit.fr/sorties/sortie-ae81491c-657d-4db4-bb14-d0f0bd846d5a/,FloVP,,4/21/2021 0:00,15.0000000,16.0000000,43.182403000000,3.196962000000,,Saint Pierre la Mer (11560) ,35398,observation-ae81491c-657d-4db4-bb14-d0f0bd846d5a-4,https://biolit.fr/observations/observation-ae81491c-657d-4db4-bb14-d0f0bd846d5a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5253R-rotated.jpg,,FALSE, +N1,58889,sortie-ae81491c-657d-4db4-bb14-d0f0bd846d5a,https://biolit.fr/sorties/sortie-ae81491c-657d-4db4-bb14-d0f0bd846d5a/,FloVP,,4/21/2021 0:00,15.0000000,16.0000000,43.182403000000,3.196962000000,,Saint Pierre la Mer (11560) ,35400,observation-ae81491c-657d-4db4-bb14-d0f0bd846d5a-5,https://biolit.fr/observations/observation-ae81491c-657d-4db4-bb14-d0f0bd846d5a-5/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_5255R-rotated.jpg,,TRUE, +N1,58889,sortie-ae81491c-657d-4db4-bb14-d0f0bd846d5a,https://biolit.fr/sorties/sortie-ae81491c-657d-4db4-bb14-d0f0bd846d5a/,FloVP,,4/21/2021 0:00,15.0000000,16.0000000,43.182403000000,3.196962000000,,Saint Pierre la Mer (11560) ,35402,observation-ae81491c-657d-4db4-bb14-d0f0bd846d5a-6,https://biolit.fr/observations/observation-ae81491c-657d-4db4-bb14-d0f0bd846d5a-6/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5256R-rotated.jpg,,TRUE, +N1,58889,sortie-ae81491c-657d-4db4-bb14-d0f0bd846d5a,https://biolit.fr/sorties/sortie-ae81491c-657d-4db4-bb14-d0f0bd846d5a/,FloVP,,4/21/2021 0:00,15.0000000,16.0000000,43.182403000000,3.196962000000,,Saint Pierre la Mer (11560) ,35404,observation-ae81491c-657d-4db4-bb14-d0f0bd846d5a-7,https://biolit.fr/observations/observation-ae81491c-657d-4db4-bb14-d0f0bd846d5a-7/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5240RR.JPG,,TRUE, +N1,58890,sortie-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8,https://biolit.fr/sorties/sortie-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8/,FloVP,,4/26/2021 0:00,15.0000000,16.0000000,43.176523000000,3.191619000000,,Saint Pierre la Mer (11560) Rocher de St Pierre La Mer ,35406,observation-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8,https://biolit.fr/observations/observation-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5231RM.JPG,,TRUE, +N1,58890,sortie-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8,https://biolit.fr/sorties/sortie-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8/,FloVP,,4/26/2021 0:00,15.0000000,16.0000000,43.176523000000,3.191619000000,,Saint Pierre la Mer (11560) Rocher de St Pierre La Mer ,35408,observation-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8-2,https://biolit.fr/observations/observation-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8-2/,Ammophila arenaria,Oyat,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5232RM.JPG,,TRUE, +N1,58890,sortie-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8,https://biolit.fr/sorties/sortie-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8/,FloVP,,4/26/2021 0:00,15.0000000,16.0000000,43.176523000000,3.191619000000,,Saint Pierre la Mer (11560) Rocher de St Pierre La Mer ,35410,observation-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8-3,https://biolit.fr/observations/observation-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8-3/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5233RM.JPG,,TRUE, +N1,58890,sortie-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8,https://biolit.fr/sorties/sortie-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8/,FloVP,,4/26/2021 0:00,15.0000000,16.0000000,43.176523000000,3.191619000000,,Saint Pierre la Mer (11560) Rocher de St Pierre La Mer ,35412,observation-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8-4,https://biolit.fr/observations/observation-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8-4/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5234RM-rotated.jpg,,TRUE, +N1,58890,sortie-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8,https://biolit.fr/sorties/sortie-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8/,FloVP,,4/26/2021 0:00,15.0000000,16.0000000,43.176523000000,3.191619000000,,Saint Pierre la Mer (11560) Rocher de St Pierre La Mer ,35414,observation-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8-5,https://biolit.fr/observations/observation-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8-5/,Medicago marina,Luzerne marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5237RM-rotated.jpg,,TRUE, +N1,58890,sortie-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8,https://biolit.fr/sorties/sortie-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8/,FloVP,,4/26/2021 0:00,15.0000000,16.0000000,43.176523000000,3.191619000000,,Saint Pierre la Mer (11560) Rocher de St Pierre La Mer ,35416,observation-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8-6,https://biolit.fr/observations/observation-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8-6/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5238RM1.JPG,,TRUE, +N1,58890,sortie-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8,https://biolit.fr/sorties/sortie-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8/,FloVP,,4/26/2021 0:00,15.0000000,16.0000000,43.176523000000,3.191619000000,,Saint Pierre la Mer (11560) Rocher de St Pierre La Mer ,35418,observation-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8-7,https://biolit.fr/observations/observation-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8-7/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5239RM-rotated.jpg,,TRUE, +N1,58891,sortie-d72d6e0e-627f-4400-9557-e58b17bd5f9d,https://biolit.fr/sorties/sortie-d72d6e0e-627f-4400-9557-e58b17bd5f9d/,Sandy Hinchy,,4/29/2021 0:00,17.0000000,18.0000000,43.186948000000,5.623878000000,,Grande Plage ,35420,observation-d72d6e0e-627f-4400-9557-e58b17bd5f9d,https://biolit.fr/observations/observation-d72d6e0e-627f-4400-9557-e58b17bd5f9d/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/2_4-scaled.jpg,,TRUE, +N1,58891,sortie-d72d6e0e-627f-4400-9557-e58b17bd5f9d,https://biolit.fr/sorties/sortie-d72d6e0e-627f-4400-9557-e58b17bd5f9d/,Sandy Hinchy,,4/29/2021 0:00,17.0000000,18.0000000,43.186948000000,5.623878000000,,Grande Plage ,35422,observation-d72d6e0e-627f-4400-9557-e58b17bd5f9d-2,https://biolit.fr/observations/observation-d72d6e0e-627f-4400-9557-e58b17bd5f9d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/3_3-scaled.jpg,,FALSE, +N1,58892,sortie-5275b4ad-5831-4c2f-a2f5-6ac316fa928c,https://biolit.fr/sorties/sortie-5275b4ad-5831-4c2f-a2f5-6ac316fa928c/,Mélody L.,,4/25/2021 0:00,14.0000000,16.0000000,49.679981000000,-1.722093000000,,Estran Urville Nacqueville,35424,observation-5275b4ad-5831-4c2f-a2f5-6ac316fa928c,https://biolit.fr/observations/observation-5275b4ad-5831-4c2f-a2f5-6ac316fa928c/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/WBVT3922[1].JPG,,TRUE, +N1,58892,sortie-5275b4ad-5831-4c2f-a2f5-6ac316fa928c,https://biolit.fr/sorties/sortie-5275b4ad-5831-4c2f-a2f5-6ac316fa928c/,Mélody L.,,4/25/2021 0:00,14.0000000,16.0000000,49.679981000000,-1.722093000000,,Estran Urville Nacqueville,35426,observation-5275b4ad-5831-4c2f-a2f5-6ac316fa928c-2,https://biolit.fr/observations/observation-5275b4ad-5831-4c2f-a2f5-6ac316fa928c-2/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/UMMG3338[1].JPG,,TRUE, +N1,58892,sortie-5275b4ad-5831-4c2f-a2f5-6ac316fa928c,https://biolit.fr/sorties/sortie-5275b4ad-5831-4c2f-a2f5-6ac316fa928c/,Mélody L.,,4/25/2021 0:00,14.0000000,16.0000000,49.679981000000,-1.722093000000,,Estran Urville Nacqueville,35428,observation-5275b4ad-5831-4c2f-a2f5-6ac316fa928c-3,https://biolit.fr/observations/observation-5275b4ad-5831-4c2f-a2f5-6ac316fa928c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/UCPE6252[1].JPG,,FALSE, +N1,58892,sortie-5275b4ad-5831-4c2f-a2f5-6ac316fa928c,https://biolit.fr/sorties/sortie-5275b4ad-5831-4c2f-a2f5-6ac316fa928c/,Mélody L.,,4/25/2021 0:00,14.0000000,16.0000000,49.679981000000,-1.722093000000,,Estran Urville Nacqueville,35430,observation-5275b4ad-5831-4c2f-a2f5-6ac316fa928c-4,https://biolit.fr/observations/observation-5275b4ad-5831-4c2f-a2f5-6ac316fa928c-4/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/THVQ4562[1].JPG,,TRUE, +N1,58892,sortie-5275b4ad-5831-4c2f-a2f5-6ac316fa928c,https://biolit.fr/sorties/sortie-5275b4ad-5831-4c2f-a2f5-6ac316fa928c/,Mélody L.,,4/25/2021 0:00,14.0000000,16.0000000,49.679981000000,-1.722093000000,,Estran Urville Nacqueville,35432,observation-5275b4ad-5831-4c2f-a2f5-6ac316fa928c-5,https://biolit.fr/observations/observation-5275b4ad-5831-4c2f-a2f5-6ac316fa928c-5/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/SDMX5330[1].JPG,,TRUE, +N1,58892,sortie-5275b4ad-5831-4c2f-a2f5-6ac316fa928c,https://biolit.fr/sorties/sortie-5275b4ad-5831-4c2f-a2f5-6ac316fa928c/,Mélody L.,,4/25/2021 0:00,14.0000000,16.0000000,49.679981000000,-1.722093000000,,Estran Urville Nacqueville,35434,observation-5275b4ad-5831-4c2f-a2f5-6ac316fa928c-6,https://biolit.fr/observations/observation-5275b4ad-5831-4c2f-a2f5-6ac316fa928c-6/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/OGWD7532[1].JPG,,TRUE, +N1,58892,sortie-5275b4ad-5831-4c2f-a2f5-6ac316fa928c,https://biolit.fr/sorties/sortie-5275b4ad-5831-4c2f-a2f5-6ac316fa928c/,Mélody L.,,4/25/2021 0:00,14.0000000,16.0000000,49.679981000000,-1.722093000000,,Estran Urville Nacqueville,35436,observation-5275b4ad-5831-4c2f-a2f5-6ac316fa928c-7,https://biolit.fr/observations/observation-5275b4ad-5831-4c2f-a2f5-6ac316fa928c-7/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0798[1].jpg,,TRUE, +N1,58892,sortie-5275b4ad-5831-4c2f-a2f5-6ac316fa928c,https://biolit.fr/sorties/sortie-5275b4ad-5831-4c2f-a2f5-6ac316fa928c/,Mélody L.,,4/25/2021 0:00,14.0000000,16.0000000,49.679981000000,-1.722093000000,,Estran Urville Nacqueville,35438,observation-5275b4ad-5831-4c2f-a2f5-6ac316fa928c-8,https://biolit.fr/observations/observation-5275b4ad-5831-4c2f-a2f5-6ac316fa928c-8/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0807[1].jpg,,TRUE, +N1,58893,sortie-ff092de4-6995-4b20-963c-40378278d230,https://biolit.fr/sorties/sortie-ff092de4-6995-4b20-963c-40378278d230/,Gwentaz,,4/27/2021 0:00,15.0000000,15.0:15,48.6392990000,-2.067630000000,,Plage de St Enogat à Dinard,35440,observation-ff092de4-6995-4b20-963c-40378278d230,https://biolit.fr/observations/observation-ff092de4-6995-4b20-963c-40378278d230/,Corystes cassivelaunus,Crabe masqué,,https://biolit.fr/wp-content/uploads/2023/07/B6515F13-6624-4FD7-B145-F7C411C5E9BE.jpeg,,TRUE, +N1,58894,sortie-224023b5-5ec1-4950-b656-1064f23fdc3e,https://biolit.fr/sorties/sortie-224023b5-5ec1-4950-b656-1064f23fdc3e/,jean vaireaux,,4/24/2021 0:00,8.0:15,10.0000000,49.51003000000,0.066555000000,,Sainte adresse,35442,observation-224023b5-5ec1-4950-b656-1064f23fdc3e,https://biolit.fr/observations/observation-224023b5-5ec1-4950-b656-1064f23fdc3e/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/criste sainte adresse (1)-scaled.jpg,,TRUE, +N1,58895,sortie-6e410bbe-c544-45b2-b4ad-b11799032cb2,https://biolit.fr/sorties/sortie-6e410bbe-c544-45b2-b4ad-b11799032cb2/,jean vaireaux,,4/24/2021 0:00,8.0:15,10.0000000,49.493319000000,0.092712000000,,Le havre,35444,observation-6e410bbe-c544-45b2-b4ad-b11799032cb2,https://biolit.fr/observations/observation-6e410bbe-c544-45b2-b4ad-b11799032cb2/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/crambe plage (2)-scaled.jpg,,TRUE, +N1,58895,sortie-6e410bbe-c544-45b2-b4ad-b11799032cb2,https://biolit.fr/sorties/sortie-6e410bbe-c544-45b2-b4ad-b11799032cb2/,jean vaireaux,,4/24/2021 0:00,8.0:15,10.0000000,49.493319000000,0.092712000000,,Le havre,35446,observation-6e410bbe-c544-45b2-b4ad-b11799032cb2-2,https://biolit.fr/observations/observation-6e410bbe-c544-45b2-b4ad-b11799032cb2-2/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/crambe plage (3)-scaled.jpg,,TRUE, +N1,58895,sortie-6e410bbe-c544-45b2-b4ad-b11799032cb2,https://biolit.fr/sorties/sortie-6e410bbe-c544-45b2-b4ad-b11799032cb2/,jean vaireaux,,4/24/2021 0:00,8.0:15,10.0000000,49.493319000000,0.092712000000,,Le havre,35448,observation-6e410bbe-c544-45b2-b4ad-b11799032cb2-3,https://biolit.fr/observations/observation-6e410bbe-c544-45b2-b4ad-b11799032cb2-3/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/crambe plage (4)-scaled.jpg,,TRUE, +N1,58895,sortie-6e410bbe-c544-45b2-b4ad-b11799032cb2,https://biolit.fr/sorties/sortie-6e410bbe-c544-45b2-b4ad-b11799032cb2/,jean vaireaux,,4/24/2021 0:00,8.0:15,10.0000000,49.493319000000,0.092712000000,,Le havre,35450,observation-6e410bbe-c544-45b2-b4ad-b11799032cb2-4,https://biolit.fr/observations/observation-6e410bbe-c544-45b2-b4ad-b11799032cb2-4/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/crambe plage (5)-scaled.jpg,,TRUE, +N1,58895,sortie-6e410bbe-c544-45b2-b4ad-b11799032cb2,https://biolit.fr/sorties/sortie-6e410bbe-c544-45b2-b4ad-b11799032cb2/,jean vaireaux,,4/24/2021 0:00,8.0:15,10.0000000,49.493319000000,0.092712000000,,Le havre,35452,observation-6e410bbe-c544-45b2-b4ad-b11799032cb2-5,https://biolit.fr/observations/observation-6e410bbe-c544-45b2-b4ad-b11799032cb2-5/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/crambe plage (6)-scaled.jpg,,TRUE, +N1,58895,sortie-6e410bbe-c544-45b2-b4ad-b11799032cb2,https://biolit.fr/sorties/sortie-6e410bbe-c544-45b2-b4ad-b11799032cb2/,jean vaireaux,,4/24/2021 0:00,8.0:15,10.0000000,49.493319000000,0.092712000000,,Le havre,35454,observation-6e410bbe-c544-45b2-b4ad-b11799032cb2-6,https://biolit.fr/observations/observation-6e410bbe-c544-45b2-b4ad-b11799032cb2-6/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/crambe plage (7)-scaled.jpg,,TRUE, +N1,58896,sortie-8a62c2d0-49b3-440f-9089-9a1f005f7ca3,https://biolit.fr/sorties/sortie-8a62c2d0-49b3-440f-9089-9a1f005f7ca3/,jean vaireaux,,4/24/2021 0:00,8.0:15,10.0000000,49.492176000000,0.093614000000,,Le Havre,35458,observation-8a62c2d0-49b3-440f-9089-9a1f005f7ca3,https://biolit.fr/observations/observation-8a62c2d0-49b3-440f-9089-9a1f005f7ca3/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/Crambe digue nord (2)-scaled.jpg,,TRUE, +N1,58896,sortie-8a62c2d0-49b3-440f-9089-9a1f005f7ca3,https://biolit.fr/sorties/sortie-8a62c2d0-49b3-440f-9089-9a1f005f7ca3/,jean vaireaux,,4/24/2021 0:00,8.0:15,10.0000000,49.492176000000,0.093614000000,,Le Havre,35460,observation-8a62c2d0-49b3-440f-9089-9a1f005f7ca3-2,https://biolit.fr/observations/observation-8a62c2d0-49b3-440f-9089-9a1f005f7ca3-2/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/Crambe digue nord (3)-scaled.jpg,,TRUE, +N1,58896,sortie-8a62c2d0-49b3-440f-9089-9a1f005f7ca3,https://biolit.fr/sorties/sortie-8a62c2d0-49b3-440f-9089-9a1f005f7ca3/,jean vaireaux,,4/24/2021 0:00,8.0:15,10.0000000,49.492176000000,0.093614000000,,Le Havre,35462,observation-8a62c2d0-49b3-440f-9089-9a1f005f7ca3-3,https://biolit.fr/observations/observation-8a62c2d0-49b3-440f-9089-9a1f005f7ca3-3/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/Crambe digue nord (4)-scaled.jpg,,TRUE, +N1,58896,sortie-8a62c2d0-49b3-440f-9089-9a1f005f7ca3,https://biolit.fr/sorties/sortie-8a62c2d0-49b3-440f-9089-9a1f005f7ca3/,jean vaireaux,,4/24/2021 0:00,8.0:15,10.0000000,49.492176000000,0.093614000000,,Le Havre,35464,observation-8a62c2d0-49b3-440f-9089-9a1f005f7ca3-4,https://biolit.fr/observations/observation-8a62c2d0-49b3-440f-9089-9a1f005f7ca3-4/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/Crambe digue nord (5)-scaled.jpg,,TRUE, +N1,58896,sortie-8a62c2d0-49b3-440f-9089-9a1f005f7ca3,https://biolit.fr/sorties/sortie-8a62c2d0-49b3-440f-9089-9a1f005f7ca3/,jean vaireaux,,4/24/2021 0:00,8.0:15,10.0000000,49.492176000000,0.093614000000,,Le Havre,35466,observation-8a62c2d0-49b3-440f-9089-9a1f005f7ca3-5,https://biolit.fr/observations/observation-8a62c2d0-49b3-440f-9089-9a1f005f7ca3-5/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/Crambe digue nord (6)-scaled.jpg,,TRUE, +N1,58896,sortie-8a62c2d0-49b3-440f-9089-9a1f005f7ca3,https://biolit.fr/sorties/sortie-8a62c2d0-49b3-440f-9089-9a1f005f7ca3/,jean vaireaux,,4/24/2021 0:00,8.0:15,10.0000000,49.492176000000,0.093614000000,,Le Havre,35468,observation-8a62c2d0-49b3-440f-9089-9a1f005f7ca3-6,https://biolit.fr/observations/observation-8a62c2d0-49b3-440f-9089-9a1f005f7ca3-6/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/Crambe digue nord (7)-scaled.jpg,,TRUE, +N1,58897,sortie-80b3c354-a3fa-47f4-bece-5ae080aac525,https://biolit.fr/sorties/sortie-80b3c354-a3fa-47f4-bece-5ae080aac525/,jean vaireaux,,4/24/2021 0:00,8.0:15,10.0000000,49.492597000000,0.093125000000,,Le Havre,35470,observation-80b3c354-a3fa-47f4-bece-5ae080aac525,https://biolit.fr/observations/observation-80b3c354-a3fa-47f4-bece-5ae080aac525/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/les survivants-scaled.jpg,,TRUE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35474,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Carpobrotus edulis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6880-scaled.jpg,,TRUE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35476,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-2,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-2/,Carpobrotus acinaciformis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6889-scaled.jpg,,TRUE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35478,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-3,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-3/,Pallenis maritima,Astérolide maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6883-scaled.jpg,,TRUE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35480,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-4,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-4/,Agave americana,Agave d'Amérique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6892-scaled.jpg,,TRUE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35482,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-5,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-5/,Jacobaea maritima,Cinéraire maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6893 bis-scaled.jpg,,TRUE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35484,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-6,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-6/,Jacobaea maritima,Cinéraire maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6895-scaled.jpg,,TRUE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35490,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-9,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6915 bis-scaled.jpg,,FALSE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35498,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-13,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-13/,Lobularia maritima,Alysson maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6922-scaled.jpg,,TRUE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35500,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-14,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6926-scaled.jpg,,FALSE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35502,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-15,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6927-scaled.jpg,,FALSE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35504,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-16,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6928-scaled.jpg,,FALSE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35506,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-17,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6929 bis-scaled.jpg,,FALSE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35510,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-19,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6939-scaled.jpg,,FALSE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35512,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-20,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-20/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6940-scaled.jpg,,TRUE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35514,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-21,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6948-scaled.jpg,,FALSE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35516,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-22,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-22/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6951-scaled.jpg,,TRUE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35518,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-23,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-23/,Beta vulgaris subsp. maritima,Betterave maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6953-scaled.jpg,,TRUE, +N1,58899,sortie-811ab9b5-0de8-488e-92cc-96c7250aee10,https://biolit.fr/sorties/sortie-811ab9b5-0de8-488e-92cc-96c7250aee10/,Axel,,4/22/2021 0:00,13.0000000,15.0000000,43.213107000000,5.398251000000,,"Marseille, Parc National des Calanques",35530,observation-811ab9b5-0de8-488e-92cc-96c7250aee10-3,https://biolit.fr/observations/observation-811ab9b5-0de8-488e-92cc-96c7250aee10-3/,Lotus cytisoides,Lotier faux cytise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6814-scaled.jpg,,TRUE, +N1,58899,sortie-811ab9b5-0de8-488e-92cc-96c7250aee10,https://biolit.fr/sorties/sortie-811ab9b5-0de8-488e-92cc-96c7250aee10/,Axel,,4/22/2021 0:00,13.0000000,15.0000000,43.213107000000,5.398251000000,,"Marseille, Parc National des Calanques",35536,observation-811ab9b5-0de8-488e-92cc-96c7250aee10-6,https://biolit.fr/observations/observation-811ab9b5-0de8-488e-92cc-96c7250aee10-6/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6819-scaled.jpg,,TRUE, +N1,58899,sortie-811ab9b5-0de8-488e-92cc-96c7250aee10,https://biolit.fr/sorties/sortie-811ab9b5-0de8-488e-92cc-96c7250aee10/,Axel,,4/22/2021 0:00,13.0000000,15.0000000,43.213107000000,5.398251000000,,"Marseille, Parc National des Calanques",35538,observation-811ab9b5-0de8-488e-92cc-96c7250aee10-7,https://biolit.fr/observations/observation-811ab9b5-0de8-488e-92cc-96c7250aee10-7/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_6824-scaled.jpg,,TRUE, +N1,58899,sortie-811ab9b5-0de8-488e-92cc-96c7250aee10,https://biolit.fr/sorties/sortie-811ab9b5-0de8-488e-92cc-96c7250aee10/,Axel,,4/22/2021 0:00,13.0000000,15.0000000,43.213107000000,5.398251000000,,"Marseille, Parc National des Calanques",35542,observation-811ab9b5-0de8-488e-92cc-96c7250aee10-9,https://biolit.fr/observations/observation-811ab9b5-0de8-488e-92cc-96c7250aee10-9/,Jacobaea maritima,Cinéraire maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6830-scaled.jpg | https://biolit.fr/wp-content/uploads/2021/04/IMG_6828-scaled-1-scaled.jpg,,TRUE, +N1,58899,sortie-811ab9b5-0de8-488e-92cc-96c7250aee10,https://biolit.fr/sorties/sortie-811ab9b5-0de8-488e-92cc-96c7250aee10/,Axel,,4/22/2021 0:00,13.0000000,15.0000000,43.213107000000,5.398251000000,,"Marseille, Parc National des Calanques",35544,observation-811ab9b5-0de8-488e-92cc-96c7250aee10-10,https://biolit.fr/observations/observation-811ab9b5-0de8-488e-92cc-96c7250aee10-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6835-scaled.jpg,,FALSE, +N1,58899,sortie-811ab9b5-0de8-488e-92cc-96c7250aee10,https://biolit.fr/sorties/sortie-811ab9b5-0de8-488e-92cc-96c7250aee10/,Axel,,4/22/2021 0:00,13.0000000,15.0000000,43.213107000000,5.398251000000,,"Marseille, Parc National des Calanques",35546,observation-811ab9b5-0de8-488e-92cc-96c7250aee10-11,https://biolit.fr/observations/observation-811ab9b5-0de8-488e-92cc-96c7250aee10-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6836-scaled.jpg,,FALSE, +N1,58899,sortie-811ab9b5-0de8-488e-92cc-96c7250aee10,https://biolit.fr/sorties/sortie-811ab9b5-0de8-488e-92cc-96c7250aee10/,Axel,,4/22/2021 0:00,13.0000000,15.0000000,43.213107000000,5.398251000000,,"Marseille, Parc National des Calanques",35550,observation-811ab9b5-0de8-488e-92cc-96c7250aee10-13,https://biolit.fr/observations/observation-811ab9b5-0de8-488e-92cc-96c7250aee10-13/,Lotus cytisoides,Lotier faux cytise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6842-scaled.jpg | https://biolit.fr/wp-content/uploads/2021/04/IMG_6840-scaled-1.jpg,,TRUE, +N1,58900,sortie-fb8f27a1-49cb-49fd-8516-00023ca1b250,https://biolit.fr/sorties/sortie-fb8f27a1-49cb-49fd-8516-00023ca1b250/,Phil,,4/16/2021 0:00,12.0000000,12.0:45,47.870249000000,-3.911907000000,,Concarneau - Finistère,35562,observation-fb8f27a1-49cb-49fd-8516-00023ca1b250,https://biolit.fr/observations/observation-fb8f27a1-49cb-49fd-8516-00023ca1b250/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210416_123930.jpg,,TRUE, +N1,58900,sortie-fb8f27a1-49cb-49fd-8516-00023ca1b250,https://biolit.fr/sorties/sortie-fb8f27a1-49cb-49fd-8516-00023ca1b250/,Phil,,4/16/2021 0:00,12.0000000,12.0:45,47.870249000000,-3.911907000000,,Concarneau - Finistère,35564,observation-fb8f27a1-49cb-49fd-8516-00023ca1b250-2,https://biolit.fr/observations/observation-fb8f27a1-49cb-49fd-8516-00023ca1b250-2/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210416_124002.jpg,,TRUE, +N1,58900,sortie-fb8f27a1-49cb-49fd-8516-00023ca1b250,https://biolit.fr/sorties/sortie-fb8f27a1-49cb-49fd-8516-00023ca1b250/,Phil,,4/16/2021 0:00,12.0000000,12.0:45,47.870249000000,-3.911907000000,,Concarneau - Finistère,35566,observation-fb8f27a1-49cb-49fd-8516-00023ca1b250-3,https://biolit.fr/observations/observation-fb8f27a1-49cb-49fd-8516-00023ca1b250-3/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210416_124018.jpg,,TRUE, +N1,58901,sortie-9eb8124a-42ac-4b0b-a0ad-92494835faec,https://biolit.fr/sorties/sortie-9eb8124a-42ac-4b0b-a0ad-92494835faec/,Axel,,4/19/2021 0:00,17.0:45,18.0:15,43.259419000000,5.373869000000,,"Marseille, Embouchure de l'Huveaune",35568,observation-9eb8124a-42ac-4b0b-a0ad-92494835faec,https://biolit.fr/observations/observation-9eb8124a-42ac-4b0b-a0ad-92494835faec/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210419_174634-scaled.jpg,,TRUE, +N1,58901,sortie-9eb8124a-42ac-4b0b-a0ad-92494835faec,https://biolit.fr/sorties/sortie-9eb8124a-42ac-4b0b-a0ad-92494835faec/,Axel,,4/19/2021 0:00,17.0:45,18.0:15,43.259419000000,5.373869000000,,"Marseille, Embouchure de l'Huveaune",35570,observation-9eb8124a-42ac-4b0b-a0ad-92494835faec-2,https://biolit.fr/observations/observation-9eb8124a-42ac-4b0b-a0ad-92494835faec-2/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210419_174820-scaled.jpg,,TRUE, +N1,58901,sortie-9eb8124a-42ac-4b0b-a0ad-92494835faec,https://biolit.fr/sorties/sortie-9eb8124a-42ac-4b0b-a0ad-92494835faec/,Axel,,4/19/2021 0:00,17.0:45,18.0:15,43.259419000000,5.373869000000,,"Marseille, Embouchure de l'Huveaune",35572,observation-9eb8124a-42ac-4b0b-a0ad-92494835faec-3,https://biolit.fr/observations/observation-9eb8124a-42ac-4b0b-a0ad-92494835faec-3/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210419_174945 bis.jpg,,TRUE, +N1,58901,sortie-9eb8124a-42ac-4b0b-a0ad-92494835faec,https://biolit.fr/sorties/sortie-9eb8124a-42ac-4b0b-a0ad-92494835faec/,Axel,,4/19/2021 0:00,17.0:45,18.0:15,43.259419000000,5.373869000000,,"Marseille, Embouchure de l'Huveaune",35574,observation-9eb8124a-42ac-4b0b-a0ad-92494835faec-4,https://biolit.fr/observations/observation-9eb8124a-42ac-4b0b-a0ad-92494835faec-4/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210419_175034-scaled.jpg,,TRUE, +N1,58901,sortie-9eb8124a-42ac-4b0b-a0ad-92494835faec,https://biolit.fr/sorties/sortie-9eb8124a-42ac-4b0b-a0ad-92494835faec/,Axel,,4/19/2021 0:00,17.0:45,18.0:15,43.259419000000,5.373869000000,,"Marseille, Embouchure de l'Huveaune",35576,observation-9eb8124a-42ac-4b0b-a0ad-92494835faec-5,https://biolit.fr/observations/observation-9eb8124a-42ac-4b0b-a0ad-92494835faec-5/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210419_175416 bis.jpg,,TRUE, +N1,58901,sortie-9eb8124a-42ac-4b0b-a0ad-92494835faec,https://biolit.fr/sorties/sortie-9eb8124a-42ac-4b0b-a0ad-92494835faec/,Axel,,4/19/2021 0:00,17.0:45,18.0:15,43.259419000000,5.373869000000,,"Marseille, Embouchure de l'Huveaune",35580,observation-9eb8124a-42ac-4b0b-a0ad-92494835faec-7,https://biolit.fr/observations/observation-9eb8124a-42ac-4b0b-a0ad-92494835faec-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210419_181028-scaled.jpg,,FALSE, +N1,58902,sortie-ca32a30c-f908-4c04-a60b-f1d1311bcd76,https://biolit.fr/sorties/sortie-ca32a30c-f908-4c04-a60b-f1d1311bcd76/,Conrad Van Dorssen,,4/18/2021 0:00,20.0000000,22.0000000,47.839361000000,-4.34498100000,,Plomeur,35584,observation-ca32a30c-f908-4c04-a60b-f1d1311bcd76-2,https://biolit.fr/observations/observation-ca32a30c-f908-4c04-a60b-f1d1311bcd76-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0300.JPG | https://biolit.fr/wp-content/uploads/2021/04/IMG_02991-scaled-1-scaled.jpg,,FALSE, +N1,58903,sortie-ac42f724-43c1-4614-9ca6-d0440abbcc30,https://biolit.fr/sorties/sortie-ac42f724-43c1-4614-9ca6-d0440abbcc30/,Axel,,4/16/2021 0:00,14.0000000,14.0000000,43.273497000000,5.361939000000,,"Marseille, Plage du Prophète",35588,observation-ac42f724-43c1-4614-9ca6-d0440abbcc30-2,https://biolit.fr/observations/observation-ac42f724-43c1-4614-9ca6-d0440abbcc30-2/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210416_140406-scaled.jpg | https://biolit.fr/wp-content/uploads/2021/04/IMG_20210416_140352bis-scaled.jpg,,TRUE, +N1,58904,sortie-c5e32373-f156-41ec-8ab7-8dcc95ca1b73,https://biolit.fr/sorties/sortie-c5e32373-f156-41ec-8ab7-8dcc95ca1b73/,Phil,,2/22/2021 0:00,10.0:55,11.0000000,48.669277000000,-4.370844000000,,Kerlouan - Finistère,35590,observation-c5e32373-f156-41ec-8ab7-8dcc95ca1b73,https://biolit.fr/observations/observation-c5e32373-f156-41ec-8ab7-8dcc95ca1b73/,Littorina compressa,Littorine à lignes noires,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210227_105903.jpg,,TRUE, +N1,58904,sortie-c5e32373-f156-41ec-8ab7-8dcc95ca1b73,https://biolit.fr/sorties/sortie-c5e32373-f156-41ec-8ab7-8dcc95ca1b73/,Phil,,2/22/2021 0:00,10.0:55,11.0000000,48.669277000000,-4.370844000000,,Kerlouan - Finistère,35592,observation-c5e32373-f156-41ec-8ab7-8dcc95ca1b73-2,https://biolit.fr/observations/observation-c5e32373-f156-41ec-8ab7-8dcc95ca1b73-2/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210227_105849.jpg,,TRUE, +N1,58905,sortie-093ea724-8d16-466e-b785-d1b1fdd92c69,https://biolit.fr/sorties/sortie-093ea724-8d16-466e-b785-d1b1fdd92c69/,Phil,,5/22/2020 0:00,14.0000000,14.000005,47.799827000000,-4.180993000000,,Loctudy - Finistère,35594,observation-093ea724-8d16-466e-b785-d1b1fdd92c69,https://biolit.fr/observations/observation-093ea724-8d16-466e-b785-d1b1fdd92c69/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200522_140728.jpg,,TRUE, +N1,58905,sortie-093ea724-8d16-466e-b785-d1b1fdd92c69,https://biolit.fr/sorties/sortie-093ea724-8d16-466e-b785-d1b1fdd92c69/,Phil,,5/22/2020 0:00,14.0000000,14.000005,47.799827000000,-4.180993000000,,Loctudy - Finistère,35596,observation-093ea724-8d16-466e-b785-d1b1fdd92c69-2,https://biolit.fr/observations/observation-093ea724-8d16-466e-b785-d1b1fdd92c69-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200522_140859.jpg,,TRUE, +N1,58906,sortie-d53787e7-f882-4889-adef-a212086bed77,https://biolit.fr/sorties/sortie-d53787e7-f882-4889-adef-a212086bed77/,Phil,,4/16/2021 0:00,12.0:35,12.0000000,47.870546000000,-3.911628000000,,Concarneau - Finistère,35598,observation-d53787e7-f882-4889-adef-a212086bed77,https://biolit.fr/observations/observation-d53787e7-f882-4889-adef-a212086bed77/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210416_123918.jpg,,TRUE, +N1,58906,sortie-d53787e7-f882-4889-adef-a212086bed77,https://biolit.fr/sorties/sortie-d53787e7-f882-4889-adef-a212086bed77/,Phil,,4/16/2021 0:00,12.0:35,12.0000000,47.870546000000,-3.911628000000,,Concarneau - Finistère,35600,observation-d53787e7-f882-4889-adef-a212086bed77-2,https://biolit.fr/observations/observation-d53787e7-f882-4889-adef-a212086bed77-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210416_123907-scaled.jpg,,FALSE, +N1,58907,sortie-ca8d89d8-8db6-4718-879b-ec362446957b,https://biolit.fr/sorties/sortie-ca8d89d8-8db6-4718-879b-ec362446957b/,jean vaireaux,,4/17/2021 0:00,8.0000000,11.0:45,49.618633000000,0.135810000000,,entre cauville sur mer et heuqueville,35602,observation-ca8d89d8-8db6-4718-879b-ec362446957b,https://biolit.fr/observations/observation-ca8d89d8-8db6-4718-879b-ec362446957b/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/crambe heuqueville (1)-scaled.jpg,,TRUE, +N1,58907,sortie-ca8d89d8-8db6-4718-879b-ec362446957b,https://biolit.fr/sorties/sortie-ca8d89d8-8db6-4718-879b-ec362446957b/,jean vaireaux,,4/17/2021 0:00,8.0000000,11.0:45,49.618633000000,0.135810000000,,entre cauville sur mer et heuqueville,35604,observation-ca8d89d8-8db6-4718-879b-ec362446957b-2,https://biolit.fr/observations/observation-ca8d89d8-8db6-4718-879b-ec362446957b-2/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/crambe heuqueville (2)-scaled.jpg,,TRUE, +N1,58907,sortie-ca8d89d8-8db6-4718-879b-ec362446957b,https://biolit.fr/sorties/sortie-ca8d89d8-8db6-4718-879b-ec362446957b/,jean vaireaux,,4/17/2021 0:00,8.0000000,11.0:45,49.618633000000,0.135810000000,,entre cauville sur mer et heuqueville,35606,observation-ca8d89d8-8db6-4718-879b-ec362446957b-3,https://biolit.fr/observations/observation-ca8d89d8-8db6-4718-879b-ec362446957b-3/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/crambe heuqueville (3)-scaled.jpg,,TRUE, +N1,58907,sortie-ca8d89d8-8db6-4718-879b-ec362446957b,https://biolit.fr/sorties/sortie-ca8d89d8-8db6-4718-879b-ec362446957b/,jean vaireaux,,4/17/2021 0:00,8.0000000,11.0:45,49.618633000000,0.135810000000,,entre cauville sur mer et heuqueville,35608,observation-ca8d89d8-8db6-4718-879b-ec362446957b-4,https://biolit.fr/observations/observation-ca8d89d8-8db6-4718-879b-ec362446957b-4/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/crambe heuqueville (4)-scaled.jpg,,TRUE, +N1,58907,sortie-ca8d89d8-8db6-4718-879b-ec362446957b,https://biolit.fr/sorties/sortie-ca8d89d8-8db6-4718-879b-ec362446957b/,jean vaireaux,,4/17/2021 0:00,8.0000000,11.0:45,49.618633000000,0.135810000000,,entre cauville sur mer et heuqueville,35610,observation-ca8d89d8-8db6-4718-879b-ec362446957b-5,https://biolit.fr/observations/observation-ca8d89d8-8db6-4718-879b-ec362446957b-5/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/crambe heuqueville (5)-scaled.jpg,,TRUE, +N1,58907,sortie-ca8d89d8-8db6-4718-879b-ec362446957b,https://biolit.fr/sorties/sortie-ca8d89d8-8db6-4718-879b-ec362446957b/,jean vaireaux,,4/17/2021 0:00,8.0000000,11.0:45,49.618633000000,0.135810000000,,entre cauville sur mer et heuqueville,35612,observation-ca8d89d8-8db6-4718-879b-ec362446957b-6,https://biolit.fr/observations/observation-ca8d89d8-8db6-4718-879b-ec362446957b-6/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/crambe heuqueville (6)-scaled.jpg,,TRUE, +N1,58907,sortie-ca8d89d8-8db6-4718-879b-ec362446957b,https://biolit.fr/sorties/sortie-ca8d89d8-8db6-4718-879b-ec362446957b/,jean vaireaux,,4/17/2021 0:00,8.0000000,11.0:45,49.618633000000,0.135810000000,,entre cauville sur mer et heuqueville,35614,observation-ca8d89d8-8db6-4718-879b-ec362446957b-7,https://biolit.fr/observations/observation-ca8d89d8-8db6-4718-879b-ec362446957b-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/crambe heuqueville (7)-scaled.jpg,,FALSE, +N1,58907,sortie-ca8d89d8-8db6-4718-879b-ec362446957b,https://biolit.fr/sorties/sortie-ca8d89d8-8db6-4718-879b-ec362446957b/,jean vaireaux,,4/17/2021 0:00,8.0000000,11.0:45,49.618633000000,0.135810000000,,entre cauville sur mer et heuqueville,35616,observation-ca8d89d8-8db6-4718-879b-ec362446957b-8,https://biolit.fr/observations/observation-ca8d89d8-8db6-4718-879b-ec362446957b-8/,Euphorbia portlandica,Euphorbe des estuaires,,https://biolit.fr/wp-content/uploads/2023/07/euphorbe maritime (1)-scaled.jpg,,TRUE, +N1,58907,sortie-ca8d89d8-8db6-4718-879b-ec362446957b,https://biolit.fr/sorties/sortie-ca8d89d8-8db6-4718-879b-ec362446957b/,jean vaireaux,,4/17/2021 0:00,8.0000000,11.0:45,49.618633000000,0.135810000000,,entre cauville sur mer et heuqueville,35618,observation-ca8d89d8-8db6-4718-879b-ec362446957b-9,https://biolit.fr/observations/observation-ca8d89d8-8db6-4718-879b-ec362446957b-9/,Euphorbia portlandica,Euphorbe des estuaires,,https://biolit.fr/wp-content/uploads/2023/07/euphorbe maritime (2)-scaled.jpg,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35620,observation-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona fascicularis_2.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35622,observation-708998eb-90c2-4d20-be7e-576259ef6393-2,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_9.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35624,observation-708998eb-90c2-4d20-be7e-576259ef6393-3,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-3/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragaceae_1.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35626,observation-708998eb-90c2-4d20-be7e-576259ef6393-4,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Anémone sp.PNG,,FALSE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35628,observation-708998eb-90c2-4d20-be7e-576259ef6393-5,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-5/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_9.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35630,observation-708998eb-90c2-4d20-be7e-576259ef6393-6,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-6/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/Anthopleura balii_2.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35632,observation-708998eb-90c2-4d20-be7e-576259ef6393-7,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie sp_3.PNG,,FALSE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35633,observation-708998eb-90c2-4d20-be7e-576259ef6393-8,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-8/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_6.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35635,observation-708998eb-90c2-4d20-be7e-576259ef6393-9,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/bryo sp_5.PNG,,FALSE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35637,observation-708998eb-90c2-4d20-be7e-576259ef6393-10,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-10/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_8.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35639,observation-708998eb-90c2-4d20-be7e-576259ef6393-11,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-11/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_11.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35641,observation-708998eb-90c2-4d20-be7e-576259ef6393-12,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-12/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crepidula fornicata.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35643,observation-708998eb-90c2-4d20-be7e-576259ef6393-13,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/doris verrucosa pe.PNG,,FALSE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35644,observation-708998eb-90c2-4d20-be7e-576259ef6393-14,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-14/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_12.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35646,observation-708998eb-90c2-4d20-be7e-576259ef6393-15,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-15/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Eriphia verrucosa_3.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35648,observation-708998eb-90c2-4d20-be7e-576259ef6393-16,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-16/,Gari depressa,Psammobie déprimée,,https://biolit.fr/wp-content/uploads/2023/07/Gari depressa_5.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35650,observation-708998eb-90c2-4d20-be7e-576259ef6393-17,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-17/,Hiatella arctica,Hiatelle ridée,,https://biolit.fr/wp-content/uploads/2023/07/Hiatella arctica.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35651,observation-708998eb-90c2-4d20-be7e-576259ef6393-18,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-18/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_7.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35653,observation-708998eb-90c2-4d20-be7e-576259ef6393-19,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-19/,Modiolus barbatus,Modiole barbue,,https://biolit.fr/wp-content/uploads/2023/07/Modiolus barbatus_1.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35655,observation-708998eb-90c2-4d20-be7e-576259ef6393-20,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-20/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis lumbriciformis_0.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35657,observation-708998eb-90c2-4d20-be7e-576259ef6393-21,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-21/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_12.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35659,observation-708998eb-90c2-4d20-be7e-576259ef6393-22,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-22/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebra erinaceus_2.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35661,observation-708998eb-90c2-4d20-be7e-576259ef6393-23,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/ponte de limace.PNG,,FALSE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35663,observation-708998eb-90c2-4d20-be7e-576259ef6393-24,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-24/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_10.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35665,observation-708998eb-90c2-4d20-be7e-576259ef6393-25,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-25/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_8.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35667,observation-708998eb-90c2-4d20-be7e-576259ef6393-26,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-26/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_9.PNG,,TRUE, +N1,58909,sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a,https://biolit.fr/sorties/sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a/,Roman,,4/15/2021 0:00,14.0000000,15.0000000,47.653928000000,-3.230341000000,,Plouhinec,35669,observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a,https://biolit.fr/observations/observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_8.PNG,,TRUE, +N1,58909,sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a,https://biolit.fr/sorties/sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a/,Roman,,4/15/2021 0:00,14.0000000,15.0000000,47.653928000000,-3.230341000000,,Plouhinec,35671,observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-2,https://biolit.fr/observations/observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragaceae_0.PNG,,TRUE, +N1,58909,sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a,https://biolit.fr/sorties/sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a/,Roman,,4/15/2021 0:00,14.0000000,15.0000000,47.653928000000,-3.230341000000,,Plouhinec,35673,observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-3,https://biolit.fr/observations/observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-3/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/Echinocardium cordatum_0.PNG,,TRUE, +N1,58909,sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a,https://biolit.fr/sorties/sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a/,Roman,,4/15/2021 0:00,14.0000000,15.0000000,47.653928000000,-3.230341000000,,Plouhinec,35675,observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-4,https://biolit.fr/observations/observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Hydre sp.PNG,,FALSE, +N1,58909,sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a,https://biolit.fr/sorties/sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a/,Roman,,4/15/2021 0:00,14.0000000,15.0000000,47.653928000000,-3.230341000000,,Plouhinec,35677,observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-5,https://biolit.fr/observations/observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-5/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/2023/07/Mactra stultorum.PNG,,TRUE, +N1,58909,sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a,https://biolit.fr/sorties/sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a/,Roman,,4/15/2021 0:00,14.0000000,15.0000000,47.653928000000,-3.230341000000,,Plouhinec,35679,observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-6,https://biolit.fr/observations/observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-6/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_10.PNG,,TRUE, +N1,58909,sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a,https://biolit.fr/sorties/sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a/,Roman,,4/15/2021 0:00,14.0000000,15.0000000,47.653928000000,-3.230341000000,,Plouhinec,35681,observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-7,https://biolit.fr/observations/observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-7/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_10.PNG,,TRUE, +N1,58909,sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a,https://biolit.fr/sorties/sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a/,Roman,,4/15/2021 0:00,14.0000000,15.0000000,47.653928000000,-3.230341000000,,Plouhinec,35683,observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-8,https://biolit.fr/observations/observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-8/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_11.PNG,,TRUE, +N1,58909,sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a,https://biolit.fr/sorties/sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a/,Roman,,4/15/2021 0:00,14.0000000,15.0000000,47.653928000000,-3.230341000000,,Plouhinec,35685,observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-9,https://biolit.fr/observations/observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-9/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Paracentrotus lividus_6.PNG,,TRUE, +N1,58909,sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a,https://biolit.fr/sorties/sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a/,Roman,,4/15/2021 0:00,14.0000000,15.0000000,47.653928000000,-3.230341000000,,Plouhinec,35687,observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-10,https://biolit.fr/observations/observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-10/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/Ponte de nucella lapillus_1.PNG,,TRUE, +N1,58909,sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a,https://biolit.fr/sorties/sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a/,Roman,,4/15/2021 0:00,14.0000000,15.0000000,47.653928000000,-3.230341000000,,Plouhinec,35689,observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-11,https://biolit.fr/observations/observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Rhizostoma octopus pe.PNG,,FALSE, +N1,58909,sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a,https://biolit.fr/sorties/sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a/,Roman,,4/15/2021 0:00,14.0000000,15.0000000,47.653928000000,-3.230341000000,,Plouhinec,35691,observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-12,https://biolit.fr/observations/observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-12/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/Sabellaria alveolata_2.PNG,,TRUE, +N1,58909,sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a,https://biolit.fr/sorties/sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a/,Roman,,4/15/2021 0:00,14.0000000,15.0000000,47.653928000000,-3.230341000000,,Plouhinec,35693,observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-13,https://biolit.fr/observations/observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-13/,Symsagittifera roscoffensis,Ver plat de Roscoff,,https://biolit.fr/wp-content/uploads/2023/07/Symsagittifera roscoffensis.PNG,,TRUE, +N1,58909,sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a,https://biolit.fr/sorties/sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a/,Roman,,4/15/2021 0:00,14.0000000,15.0000000,47.653928000000,-3.230341000000,,Plouhinec,35695,observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-14,https://biolit.fr/observations/observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-14/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/Trivia monacha_0.PNG,,TRUE, +N1,58910,sortie-61abd291-c226-43fd-a9de-4bb159a03212,https://biolit.fr/sorties/sortie-61abd291-c226-43fd-a9de-4bb159a03212/,Anthony Palermo,,4/15/2021 0:00,15.0000000,18.0000000,43.561099000000,7.063763000000,,Cannes,35699,observation-61abd291-c226-43fd-a9de-4bb159a03212-2,https://biolit.fr/observations/observation-61abd291-c226-43fd-a9de-4bb159a03212-2/,Opuntia ficus,Figuier de barbarie,,https://biolit.fr/wp-content/uploads/2023/07/20210415_161342_resized_1.jpg,,TRUE, +N1,58910,sortie-61abd291-c226-43fd-a9de-4bb159a03212,https://biolit.fr/sorties/sortie-61abd291-c226-43fd-a9de-4bb159a03212/,Anthony Palermo,,4/15/2021 0:00,15.0000000,18.0000000,43.561099000000,7.063763000000,,Cannes,35705,observation-61abd291-c226-43fd-a9de-4bb159a03212-5,https://biolit.fr/observations/observation-61abd291-c226-43fd-a9de-4bb159a03212-5/,Tropaeolum majus,Grande capucine,,https://biolit.fr/wp-content/uploads/2023/07/20210415_155944_resized_1.jpg,,TRUE, +N1,58910,sortie-61abd291-c226-43fd-a9de-4bb159a03212,https://biolit.fr/sorties/sortie-61abd291-c226-43fd-a9de-4bb159a03212/,Anthony Palermo,,4/15/2021 0:00,15.0000000,18.0000000,43.561099000000,7.063763000000,,Cannes,35707,observation-61abd291-c226-43fd-a9de-4bb159a03212-6,https://biolit.fr/observations/observation-61abd291-c226-43fd-a9de-4bb159a03212-6/,Lavandula stoechas,Lavande papillon,,https://biolit.fr/wp-content/uploads/2023/07/20210415_153605_resized_1.jpg,,TRUE, +N1,58910,sortie-61abd291-c226-43fd-a9de-4bb159a03212,https://biolit.fr/sorties/sortie-61abd291-c226-43fd-a9de-4bb159a03212/,Anthony Palermo,,4/15/2021 0:00,15.0000000,18.0000000,43.561099000000,7.063763000000,,Cannes,35709,observation-61abd291-c226-43fd-a9de-4bb159a03212-7,https://biolit.fr/observations/observation-61abd291-c226-43fd-a9de-4bb159a03212-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210415_153313_resized_1.jpg,,FALSE, +N1,58910,sortie-61abd291-c226-43fd-a9de-4bb159a03212,https://biolit.fr/sorties/sortie-61abd291-c226-43fd-a9de-4bb159a03212/,Anthony Palermo,,4/15/2021 0:00,15.0000000,18.0000000,43.561099000000,7.063763000000,,Cannes,35711,observation-61abd291-c226-43fd-a9de-4bb159a03212-8,https://biolit.fr/observations/observation-61abd291-c226-43fd-a9de-4bb159a03212-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210415_154702_resized_1.jpg,,FALSE, +N1,58910,sortie-61abd291-c226-43fd-a9de-4bb159a03212,https://biolit.fr/sorties/sortie-61abd291-c226-43fd-a9de-4bb159a03212/,Anthony Palermo,,4/15/2021 0:00,15.0000000,18.0000000,43.561099000000,7.063763000000,,Cannes,35713,observation-61abd291-c226-43fd-a9de-4bb159a03212-9,https://biolit.fr/observations/observation-61abd291-c226-43fd-a9de-4bb159a03212-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210415_155731_resized_1.jpg,,FALSE, +N1,58911,sortie-1ca47eeb-aef9-4cf9-9f72-d73b7b59e991,https://biolit.fr/sorties/sortie-1ca47eeb-aef9-4cf9-9f72-d73b7b59e991/,Anthony Palermo,,4/15/2021 0:00,14.0000000,15.0000000,43.563898000000,7.069514000000,,Golfe-Juan,35717,observation-1ca47eeb-aef9-4cf9-9f72-d73b7b59e991,https://biolit.fr/observations/observation-1ca47eeb-aef9-4cf9-9f72-d73b7b59e991/,Carpobrotus edulis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/20210415_150309_resized_1.jpg,,TRUE, +N1,58911,sortie-1ca47eeb-aef9-4cf9-9f72-d73b7b59e991,https://biolit.fr/sorties/sortie-1ca47eeb-aef9-4cf9-9f72-d73b7b59e991/,Anthony Palermo,,4/15/2021 0:00,14.0000000,15.0000000,43.563898000000,7.069514000000,,Golfe-Juan,35719,observation-1ca47eeb-aef9-4cf9-9f72-d73b7b59e991-2,https://biolit.fr/observations/observation-1ca47eeb-aef9-4cf9-9f72-d73b7b59e991-2/,Carpobrotus edulis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/20210415_150422_resized_1.jpg,,TRUE, +N1,58911,sortie-1ca47eeb-aef9-4cf9-9f72-d73b7b59e991,https://biolit.fr/sorties/sortie-1ca47eeb-aef9-4cf9-9f72-d73b7b59e991/,Anthony Palermo,,4/15/2021 0:00,14.0000000,15.0000000,43.563898000000,7.069514000000,,Golfe-Juan,35723,observation-1ca47eeb-aef9-4cf9-9f72-d73b7b59e991-4,https://biolit.fr/observations/observation-1ca47eeb-aef9-4cf9-9f72-d73b7b59e991-4/,Malva arborea,Lavatère arborescente,,https://biolit.fr/wp-content/uploads/2023/07/20210415_150826_resized_1.jpg,,TRUE, +N1,58912,sortie-5608a670-d8c8-471d-9868-4f60657f4c91,https://biolit.fr/sorties/sortie-5608a670-d8c8-471d-9868-4f60657f4c91/,Phil,,04/01/2021,13.000005,13.0000000,47.795625000000,-4.274756000000,,Léchiagat - Finistère,35725,observation-5608a670-d8c8-471d-9868-4f60657f4c91,https://biolit.fr/observations/observation-5608a670-d8c8-471d-9868-4f60657f4c91/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210401_131023.jpg,,TRUE, +N1,58912,sortie-5608a670-d8c8-471d-9868-4f60657f4c91,https://biolit.fr/sorties/sortie-5608a670-d8c8-471d-9868-4f60657f4c91/,Phil,,04/01/2021,13.000005,13.0000000,47.795625000000,-4.274756000000,,Léchiagat - Finistère,35727,observation-5608a670-d8c8-471d-9868-4f60657f4c91-2,https://biolit.fr/observations/observation-5608a670-d8c8-471d-9868-4f60657f4c91-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210401_131015.jpg,,TRUE, +N1,58912,sortie-5608a670-d8c8-471d-9868-4f60657f4c91,https://biolit.fr/sorties/sortie-5608a670-d8c8-471d-9868-4f60657f4c91/,Phil,,04/01/2021,13.000005,13.0000000,47.795625000000,-4.274756000000,,Léchiagat - Finistère,35729,observation-5608a670-d8c8-471d-9868-4f60657f4c91-3,https://biolit.fr/observations/observation-5608a670-d8c8-471d-9868-4f60657f4c91-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210401_130955.jpg,,TRUE, +N1,58912,sortie-5608a670-d8c8-471d-9868-4f60657f4c91,https://biolit.fr/sorties/sortie-5608a670-d8c8-471d-9868-4f60657f4c91/,Phil,,04/01/2021,13.000005,13.0000000,47.795625000000,-4.274756000000,,Léchiagat - Finistère,35731,observation-5608a670-d8c8-471d-9868-4f60657f4c91-4,https://biolit.fr/observations/observation-5608a670-d8c8-471d-9868-4f60657f4c91-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210401_130942.jpg,,TRUE, +N1,58912,sortie-5608a670-d8c8-471d-9868-4f60657f4c91,https://biolit.fr/sorties/sortie-5608a670-d8c8-471d-9868-4f60657f4c91/,Phil,,04/01/2021,13.000005,13.0000000,47.795625000000,-4.274756000000,,Léchiagat - Finistère,35733,observation-5608a670-d8c8-471d-9868-4f60657f4c91-5,https://biolit.fr/observations/observation-5608a670-d8c8-471d-9868-4f60657f4c91-5/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210401_131051.jpg,,TRUE, +N1,58912,sortie-5608a670-d8c8-471d-9868-4f60657f4c91,https://biolit.fr/sorties/sortie-5608a670-d8c8-471d-9868-4f60657f4c91/,Phil,,04/01/2021,13.000005,13.0000000,47.795625000000,-4.274756000000,,Léchiagat - Finistère,35735,observation-5608a670-d8c8-471d-9868-4f60657f4c91-6,https://biolit.fr/observations/observation-5608a670-d8c8-471d-9868-4f60657f4c91-6/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210401_131119.jpg,,TRUE, +N1,58913,sortie-982391e6-9d58-4bcd-bf51-db52bf294ece,https://biolit.fr/sorties/sortie-982391e6-9d58-4bcd-bf51-db52bf294ece/,Phil,,5/22/2020 0:00,13.0000000,14.0000000,47.800239000000,-4.18107900000,,Loctudy - Finistère,35741,observation-982391e6-9d58-4bcd-bf51-db52bf294ece-3,https://biolit.fr/observations/observation-982391e6-9d58-4bcd-bf51-db52bf294ece-3/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/20200522_140508.jpg,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35743,observation-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_7.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35745,observation-49213f11-834c-4647-9c29-ebbcc823e13b-2,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea_6.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35747,observation-49213f11-834c-4647-9c29-ebbcc823e13b-3,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-3/,Aeolidiella glauca,Eolis brillante,,https://biolit.fr/wp-content/uploads/2023/07/Aeolidiella glauca.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35749,observation-49213f11-834c-4647-9c29-ebbcc823e13b-4,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/anemonia viridis_8.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35750,observation-49213f11-834c-4647-9c29-ebbcc823e13b-5,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-5/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_3.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35752,observation-49213f11-834c-4647-9c29-ebbcc823e13b-6,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-6/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/anthopleura balii_1.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35754,observation-49213f11-834c-4647-9c29-ebbcc823e13b-7,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-7/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_5.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35756,observation-49213f11-834c-4647-9c29-ebbcc823e13b-8,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-8/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_5.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35758,observation-49213f11-834c-4647-9c29-ebbcc823e13b-9,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/bryo sp_4.PNG,,FALSE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35760,observation-49213f11-834c-4647-9c29-ebbcc823e13b-10,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-10/,Calyptraea chinensis,Chapeau chinois,,https://biolit.fr/wp-content/uploads/2023/07/Calyptraea chinensis.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35762,observation-49213f11-834c-4647-9c29-ebbcc823e13b-11,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-11/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_7.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35764,observation-49213f11-834c-4647-9c29-ebbcc823e13b-12,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-12/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_10.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35766,observation-49213f11-834c-4647-9c29-ebbcc823e13b-13,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp pe.PNG,,FALSE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35768,observation-49213f11-834c-4647-9c29-ebbcc823e13b-14,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-14/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_11.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35770,observation-49213f11-834c-4647-9c29-ebbcc823e13b-15,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-15/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Eriphia verrucosa_2.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35772,observation-49213f11-834c-4647-9c29-ebbcc823e13b-16,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-16/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/Haematopus ostralegus_0.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35774,observation-49213f11-834c-4647-9c29-ebbcc823e13b-17,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-17/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_6.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35776,observation-49213f11-834c-4647-9c29-ebbcc823e13b-18,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-18/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/Lipophrys pholis-scaled.jpg,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35777,observation-49213f11-834c-4647-9c29-ebbcc823e13b-19,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lithophaga rugosa.PNG,,FALSE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35779,observation-49213f11-834c-4647-9c29-ebbcc823e13b-20,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-20/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_2.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35781,observation-49213f11-834c-4647-9c29-ebbcc823e13b-21,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-21/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_9.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35783,observation-49213f11-834c-4647-9c29-ebbcc823e13b-22,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-22/,Microporella pseudomarsupiata,Microporelle ciliée noire,,https://biolit.fr/wp-content/uploads/2023/07/Microporella pseudomarsupiata.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35785,observation-49213f11-834c-4647-9c29-ebbcc823e13b-23,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-23/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_9.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35787,observation-49213f11-834c-4647-9c29-ebbcc823e13b-24,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-24/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes philippinarum.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35789,observation-49213f11-834c-4647-9c29-ebbcc823e13b-25,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-25/,Venerupis corrugata,Palourde-poulette,,https://biolit.fr/wp-content/uploads/2023/07/Venerupis aurea_0.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35791,observation-49213f11-834c-4647-9c29-ebbcc823e13b-26,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-26/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Watersipora subatra_0.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35793,observation-49213f11-834c-4647-9c29-ebbcc823e13b-27,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-27/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_7.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35795,observation-49213f11-834c-4647-9c29-ebbcc823e13b-28,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-28/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_8.PNG,,TRUE, +N1,58915,sortie-2855cf87-082c-489d-b704-682592c4cd28,https://biolit.fr/sorties/sortie-2855cf87-082c-489d-b704-682592c4cd28/,CamilleAgui,,04/01/2021,9.0000000,11.0000000,43.09300600000,6.015405000000,,Vers la Garonne au Pradet,35797,observation-2855cf87-082c-489d-b704-682592c4cd28,https://biolit.fr/observations/observation-2855cf87-082c-489d-b704-682592c4cd28/,Hippocampus guttulatus,Hippocampe moucheté,,https://biolit.fr/wp-content/uploads/2023/07/928C3925-7A18-4C77-9FD5-B4D12FE7745A-scaled.jpeg,,TRUE, +N1,58915,sortie-2855cf87-082c-489d-b704-682592c4cd28,https://biolit.fr/sorties/sortie-2855cf87-082c-489d-b704-682592c4cd28/,CamilleAgui,,04/01/2021,9.0000000,11.0000000,43.09300600000,6.015405000000,,Vers la Garonne au Pradet,35799,observation-2855cf87-082c-489d-b704-682592c4cd28-2,https://biolit.fr/observations/observation-2855cf87-082c-489d-b704-682592c4cd28-2/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/2742F497-0CCE-4C0D-B08D-95807666ECB2-scaled.jpeg,,TRUE, +N1,58916,sortie-0f9625f2-1710-4a6e-83c1-35cf43e831d5,https://biolit.fr/sorties/sortie-0f9625f2-1710-4a6e-83c1-35cf43e831d5/,Phil,,03/12/2021,16.0:15,16.0000000,47.7901640000,-4.249029000000,,Tréffiagat - Finistère,35801,observation-0f9625f2-1710-4a6e-83c1-35cf43e831d5,https://biolit.fr/observations/observation-0f9625f2-1710-4a6e-83c1-35cf43e831d5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130871.JPG,,FALSE, +N1,58916,sortie-0f9625f2-1710-4a6e-83c1-35cf43e831d5,https://biolit.fr/sorties/sortie-0f9625f2-1710-4a6e-83c1-35cf43e831d5/,Phil,,03/12/2021,16.0:15,16.0000000,47.7901640000,-4.249029000000,,Tréffiagat - Finistère,35803,observation-0f9625f2-1710-4a6e-83c1-35cf43e831d5-2,https://biolit.fr/observations/observation-0f9625f2-1710-4a6e-83c1-35cf43e831d5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130872.JPG,,FALSE, +N1,58916,sortie-0f9625f2-1710-4a6e-83c1-35cf43e831d5,https://biolit.fr/sorties/sortie-0f9625f2-1710-4a6e-83c1-35cf43e831d5/,Phil,,03/12/2021,16.0:15,16.0000000,47.7901640000,-4.249029000000,,Tréffiagat - Finistère,35805,observation-0f9625f2-1710-4a6e-83c1-35cf43e831d5-3,https://biolit.fr/observations/observation-0f9625f2-1710-4a6e-83c1-35cf43e831d5-3/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/P1130869.JPG,,TRUE, +N1,58916,sortie-0f9625f2-1710-4a6e-83c1-35cf43e831d5,https://biolit.fr/sorties/sortie-0f9625f2-1710-4a6e-83c1-35cf43e831d5/,Phil,,03/12/2021,16.0:15,16.0000000,47.7901640000,-4.249029000000,,Tréffiagat - Finistère,35807,observation-0f9625f2-1710-4a6e-83c1-35cf43e831d5-4,https://biolit.fr/observations/observation-0f9625f2-1710-4a6e-83c1-35cf43e831d5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130868.JPG,,FALSE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35809,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona fascicularis_1.PNG,,TRUE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35811,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-2,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_6.PNG,,TRUE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35813,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-3,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-3/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea_5.PNG,,TRUE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35815,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-4,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-4/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/anémone sp_4.PNG,,TRUE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35817,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-5,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-5/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/anemonia viridis_7.PNG,,TRUE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35818,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-6,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-6/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_4.PNG,,TRUE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35820,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-7,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-7/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_9.PNG,,TRUE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35822,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-8,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-8/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Crassotrea gigas.PNG,,TRUE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35824,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-9,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 1_4.PNG,,FALSE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35826,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-10,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_10.PNG,,FALSE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35828,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-11,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-11/,Gari depressa,Psammobie déprimée,,https://biolit.fr/wp-content/uploads/2023/07/Gari depressa_4.PNG,,TRUE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35830,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-12,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-12/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_5.PNG,,TRUE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35832,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-13,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-13/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_1.PNG,,TRUE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35834,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-14,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-14/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_9.PNG,,TRUE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35836,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-15,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-15/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_10.PNG,,TRUE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35838,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-16,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-16/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_2.PNG,,TRUE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35840,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-17,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-17/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus_3.PNG,,TRUE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35842,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-18,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-18/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/Sabellaria alveolata_1.PNG,,TRUE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35844,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-19,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-19/,Sphaeromatidae (famille),Sphéromiens,,https://biolit.fr/wp-content/uploads/2023/07/Sphaeromatidae_2.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35846,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,,,,https://biolit.fr/wp-content/uploads/2023/07/Aiptasia sp pe.PNG,,FALSE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35848,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-2,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_6.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35850,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-3,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-3/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/Aplysia punctata_0.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35852,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-4,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-4/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/Arenaria interpres_0.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35854,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-5,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-5/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_3.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35856,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-6,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-6/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_11.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35858,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-7,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-7/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_4.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35860,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-8,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-8/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/blennie sp_3.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35861,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-9,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-9/,Botrylloides spp. (leachii violaceus diegensis),Botrylles,,https://biolit.fr/wp-content/uploads/2023/07/Botrylloides spp_0.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35863,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-10,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-10/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_4.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35865,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-11,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Bryo sp pe alcydion.PNG,,FALSE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35867,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-12,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-12/,Conger conger,Congre,,https://biolit.fr/wp-content/uploads/2023/07/Conger conger_0.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35869,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-13,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-13/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/Doris pseudoargus_0.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35871,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-14,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-14/,Dysidea fragilis,Eponge mie de pain mouillée,,https://biolit.fr/wp-content/uploads/2023/07/Dysidea fragilis.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35873,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-15,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/épiphyte sp.PNG,,FALSE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35875,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-16,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp1_1.PNG,,FALSE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35877,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-17,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-17/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/haliotis tuberculata_2.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35878,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-18,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-18/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Hinia reticulata.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35880,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-19,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-19/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_4.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35882,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-20,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-20/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissiumus et porcellana platycheles.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35884,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-21,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-21/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina obtusata_0-scaled.jpg,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35885,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-22,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-22/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_8.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35887,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-23,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-23/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia_2.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35889,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-24,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-24/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebra erinaceus_1.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35891,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-25,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-25/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/ophiotrix fragilis_1.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35892,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-26,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-26/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/Perforatus perforatus_1.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35894,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-27,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-27/,Pilumnus hirtellus,Pilumne hirsute,,https://biolit.fr/wp-content/uploads/2023/07/Pilumnus hirtellus_1.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35896,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-28,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-28/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_8.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35898,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-29,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pycnogonide.PNG,,FALSE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35900,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-30,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-30/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Watersipora subatra-rotated.jpg,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35901,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-31,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_6.PNG,,FALSE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35903,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-32,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-32/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_7.PNG,,TRUE, +N1,58919,sortie-c407f9f8-7bf0-468a-96a0-294dde524343,https://biolit.fr/sorties/sortie-c407f9f8-7bf0-468a-96a0-294dde524343/,Romuald VIALE - EXPENATURE,,3/24/2021 0:00,15.0000000,16.0000000,43.034197000000,6.160443000000,ExpéNature,Plage de la baume,,,,,,,,,, +N1,58920,sortie-413bf06d-ea7c-478b-a349-b8a0a5489347,https://biolit.fr/sorties/sortie-413bf06d-ea7c-478b-a349-b8a0a5489347/,Romuald VIALE - EXPENATURE,,3/24/2021 0:00,11.0000000,12.0000000,43.031878000000,6.094573000000,ExpéNature,Calanque du blé,,,,,,,,,, +N1,58921,sortie-3f1ab2a8-f530-4c00-81b0-6a33aeae0e92,https://biolit.fr/sorties/sortie-3f1ab2a8-f530-4c00-81b0-6a33aeae0e92/,Romuald VIALE - EXPENATURE,,3/24/2021 0:00,10.0000000,11.0000000,43.041375000000,6.1009520000,ExpéNature,Calanque du Four à Chaux,35909,observation-3f1ab2a8-f530-4c00-81b0-6a33aeae0e92,https://biolit.fr/observations/observation-3f1ab2a8-f530-4c00-81b0-6a33aeae0e92/,,,,https://biolit.fr/wp-content/uploads/2023/07/giens.JPG,,FALSE, +N1,58922,sortie-0254d470-ec04-4dfa-a97c-ae5eb45b5bcf,https://biolit.fr/sorties/sortie-0254d470-ec04-4dfa-a97c-ae5eb45b5bcf/,Agent007,,3/21/2021 0:00,13.0000000,13.0000000,43.698254000000,7.188003000000,,Saint Jean Cap Ferrat,35911,observation-0254d470-ec04-4dfa-a97c-ae5eb45b5bcf,https://biolit.fr/observations/observation-0254d470-ec04-4dfa-a97c-ae5eb45b5bcf/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_9579-scaled.jpeg,,TRUE, +N1,58922,sortie-0254d470-ec04-4dfa-a97c-ae5eb45b5bcf,https://biolit.fr/sorties/sortie-0254d470-ec04-4dfa-a97c-ae5eb45b5bcf/,Agent007,,3/21/2021 0:00,13.0000000,13.0000000,43.698254000000,7.188003000000,,Saint Jean Cap Ferrat,35913,observation-0254d470-ec04-4dfa-a97c-ae5eb45b5bcf-2,https://biolit.fr/observations/observation-0254d470-ec04-4dfa-a97c-ae5eb45b5bcf-2/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_9581-scaled.jpeg,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35915,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita_3.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35917,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-2,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-2/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona fascicularis_0.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35919,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-3,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Aiptasia mutabilis.PNG,,FALSE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35921,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-4,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/anémone sp_3.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35923,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-5,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-5/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_5.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35925,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-6,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-6/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/anthopleura balii_1.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35926,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-7,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-7/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/asterias rubens_2.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35927,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-8,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-8/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_10.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35929,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-9,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-9/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_3.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35931,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-10,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-10/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/bryo sp_3.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35933,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-11,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-11/,Aplysilla rosea,Aplysille rose,,https://biolit.fr/wp-content/uploads/2023/07/éponge pe_0.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35935,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-12,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-12/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_3.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35937,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-13,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-13/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_1.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35939,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-14,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-14/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_7.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35941,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-15,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-15/,Metridium senile,Œillet de mer,,https://biolit.fr/wp-content/uploads/2023/07/metridium senile pe.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35942,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-16,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-16/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia_1.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35944,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-17,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-17/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis lumbriciformis.jpg,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35945,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-18,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-18/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_9.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35947,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-19,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-19/,Nymphon gracile,Nymphon grêle,,https://biolit.fr/wp-content/uploads/2023/07/nymphon gracile pe.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35949,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-20,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-20/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebra erinaceus_0.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35951,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-21,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-21/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/Ophiotrix fragilis_0.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35953,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-22,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-22/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Paracentrotus lividus_5.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35955,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-23,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-23/,Pilumnus hirtellus,Pilumne hirsute,,https://biolit.fr/wp-content/uploads/2023/07/Pilumnus hirtellus_0.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35957,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-24,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-24/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/porcellana platycheles_7.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35958,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-25,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-25/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/Urticina sp pe.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35960,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-26,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-26/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_6.PNG,,TRUE, +N1,58924,sortie-e5267a32-da39-45a7-bafd-e55e3ba37b4a,https://biolit.fr/sorties/sortie-e5267a32-da39-45a7-bafd-e55e3ba37b4a/,Phil,,3/21/2021 0:00,16.0000000,16.0000000,47.791086000000,-4.26083700000,,Tréffiagat - Finistère,35961,observation-e5267a32-da39-45a7-bafd-e55e3ba37b4a,https://biolit.fr/observations/observation-e5267a32-da39-45a7-bafd-e55e3ba37b4a/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/P1130863-scaled.jpg,,TRUE, +N1,58924,sortie-e5267a32-da39-45a7-bafd-e55e3ba37b4a,https://biolit.fr/sorties/sortie-e5267a32-da39-45a7-bafd-e55e3ba37b4a/,Phil,,3/21/2021 0:00,16.0000000,16.0000000,47.791086000000,-4.26083700000,,Tréffiagat - Finistère,35963,observation-e5267a32-da39-45a7-bafd-e55e3ba37b4a-2,https://biolit.fr/observations/observation-e5267a32-da39-45a7-bafd-e55e3ba37b4a-2/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/2023/07/P1130860-scaled.jpg,,TRUE, +N1,58924,sortie-e5267a32-da39-45a7-bafd-e55e3ba37b4a,https://biolit.fr/sorties/sortie-e5267a32-da39-45a7-bafd-e55e3ba37b4a/,Phil,,3/21/2021 0:00,16.0000000,16.0000000,47.791086000000,-4.26083700000,,Tréffiagat - Finistère,35965,observation-e5267a32-da39-45a7-bafd-e55e3ba37b4a-3,https://biolit.fr/observations/observation-e5267a32-da39-45a7-bafd-e55e3ba37b4a-3/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/2023/07/P1130858-scaled.jpg,,TRUE, +N1,58924,sortie-e5267a32-da39-45a7-bafd-e55e3ba37b4a,https://biolit.fr/sorties/sortie-e5267a32-da39-45a7-bafd-e55e3ba37b4a/,Phil,,3/21/2021 0:00,16.0000000,16.0000000,47.791086000000,-4.26083700000,,Tréffiagat - Finistère,35967,observation-e5267a32-da39-45a7-bafd-e55e3ba37b4a-4,https://biolit.fr/observations/observation-e5267a32-da39-45a7-bafd-e55e3ba37b4a-4/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/2023/07/P1130857-scaled.jpg,,TRUE, +N1,58925,sortie-16a8105c-e444-4f8c-801e-809a1aba4867,https://biolit.fr/sorties/sortie-16a8105c-e444-4f8c-801e-809a1aba4867/,Phil,,2/27/2021 0:00,10.0:55,11.0000000,48.66943300000,-4.370833000000,,Kerlouan - Finistère,35969,observation-16a8105c-e444-4f8c-801e-809a1aba4867,https://biolit.fr/observations/observation-16a8105c-e444-4f8c-801e-809a1aba4867/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210227_105938.jpg,,TRUE, +N1,58925,sortie-16a8105c-e444-4f8c-801e-809a1aba4867,https://biolit.fr/sorties/sortie-16a8105c-e444-4f8c-801e-809a1aba4867/,Phil,,2/27/2021 0:00,10.0:55,11.0000000,48.66943300000,-4.370833000000,,Kerlouan - Finistère,35971,observation-16a8105c-e444-4f8c-801e-809a1aba4867-2,https://biolit.fr/observations/observation-16a8105c-e444-4f8c-801e-809a1aba4867-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210227_105944.jpg,,TRUE, +N1,58925,sortie-16a8105c-e444-4f8c-801e-809a1aba4867,https://biolit.fr/sorties/sortie-16a8105c-e444-4f8c-801e-809a1aba4867/,Phil,,2/27/2021 0:00,10.0:55,11.0000000,48.66943300000,-4.370833000000,,Kerlouan - Finistère,35973,observation-16a8105c-e444-4f8c-801e-809a1aba4867-3,https://biolit.fr/observations/observation-16a8105c-e444-4f8c-801e-809a1aba4867-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210227_105950.jpg,,TRUE, +N1,58926,sortie-ff4c198a-e212-4e84-b5a5-08cc63b5224c,https://biolit.fr/sorties/sortie-ff4c198a-e212-4e84-b5a5-08cc63b5224c/,Phil,,5/22/2020 0:00,13.0000000,14.0000000,47.798478000000,-4.179641000000,,Loctudy - Finistère,35975,observation-ff4c198a-e212-4e84-b5a5-08cc63b5224c,https://biolit.fr/observations/observation-ff4c198a-e212-4e84-b5a5-08cc63b5224c/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/20200522_140432.jpg,,TRUE, +N1,58927,sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8,https://biolit.fr/sorties/sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8/,Guazzelli Léo,,3/19/2021 0:00,15.0000000,17.0000000,43.256329000000,5.375202000000,,"Marseille, plage borely",35981,observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8,https://biolit.fr/observations/observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210205_143550_6-scaled.jpg,,TRUE, +N1,58927,sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8,https://biolit.fr/sorties/sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8/,Guazzelli Léo,,3/19/2021 0:00,15.0000000,17.0000000,43.256329000000,5.375202000000,,"Marseille, plage borely",35983,observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-2,https://biolit.fr/observations/observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210205_143713_4-scaled.jpg,,FALSE, +N1,58927,sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8,https://biolit.fr/sorties/sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8/,Guazzelli Léo,,3/19/2021 0:00,15.0000000,17.0000000,43.256329000000,5.375202000000,,"Marseille, plage borely",35985,observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-3,https://biolit.fr/observations/observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-3/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210205_143742_1-scaled.jpg,,TRUE, +N1,58927,sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8,https://biolit.fr/sorties/sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8/,Guazzelli Léo,,3/19/2021 0:00,15.0000000,17.0000000,43.256329000000,5.375202000000,,"Marseille, plage borely",35987,observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-4,https://biolit.fr/observations/observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-4/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210205_144020_5-scaled.jpg,,TRUE, +N1,58927,sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8,https://biolit.fr/sorties/sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8/,Guazzelli Léo,,3/19/2021 0:00,15.0000000,17.0000000,43.256329000000,5.375202000000,,"Marseille, plage borely",35989,observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-5,https://biolit.fr/observations/observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210205_144525_0-scaled.jpg,,FALSE, +N1,58927,sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8,https://biolit.fr/sorties/sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8/,Guazzelli Léo,,3/19/2021 0:00,15.0000000,17.0000000,43.256329000000,5.375202000000,,"Marseille, plage borely",35991,observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-6,https://biolit.fr/observations/observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210205_145100_3-scaled.jpg,,FALSE, +N1,58927,sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8,https://biolit.fr/sorties/sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8/,Guazzelli Léo,,3/19/2021 0:00,15.0000000,17.0000000,43.256329000000,5.375202000000,,"Marseille, plage borely",35993,observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-7,https://biolit.fr/observations/observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-7/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210205_145227_5-scaled.jpg,,FALSE, +N1,58927,sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8,https://biolit.fr/sorties/sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8/,Guazzelli Léo,,3/19/2021 0:00,15.0000000,17.0000000,43.256329000000,5.375202000000,,"Marseille, plage borely",35995,observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-8,https://biolit.fr/observations/observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210205_145239_4-scaled.jpg,,FALSE, +N1,58927,sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8,https://biolit.fr/sorties/sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8/,Guazzelli Léo,,3/19/2021 0:00,15.0000000,17.0000000,43.256329000000,5.375202000000,,"Marseille, plage borely",35997,observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-9,https://biolit.fr/observations/observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210205_145450_6-scaled.jpg,,FALSE, +N1,58927,sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8,https://biolit.fr/sorties/sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8/,Guazzelli Léo,,3/19/2021 0:00,15.0000000,17.0000000,43.256329000000,5.375202000000,,"Marseille, plage borely",35999,observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-10,https://biolit.fr/observations/observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210205_145654_8-scaled.jpg,,FALSE, +N1,58928,sortie-7de82303-515c-4a70-b748-84da63dfdf9c,https://biolit.fr/sorties/sortie-7de82303-515c-4a70-b748-84da63dfdf9c/,Roman,,3/13/2021 0:00,11.0000000,12.0000000,47.701808000000,-3.315152000000,,Riantec,36001,observation-7de82303-515c-4a70-b748-84da63dfdf9c,https://biolit.fr/observations/observation-7de82303-515c-4a70-b748-84da63dfdf9c/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/Arenaria interpres.PNG,,TRUE, +N1,58928,sortie-7de82303-515c-4a70-b748-84da63dfdf9c,https://biolit.fr/sorties/sortie-7de82303-515c-4a70-b748-84da63dfdf9c/,Roman,,3/13/2021 0:00,11.0000000,12.0000000,47.701808000000,-3.315152000000,,Riantec,36003,observation-7de82303-515c-4a70-b748-84da63dfdf9c-2,https://biolit.fr/observations/observation-7de82303-515c-4a70-b748-84da63dfdf9c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Blennie sp_2.PNG,,FALSE, +N1,58928,sortie-7de82303-515c-4a70-b748-84da63dfdf9c,https://biolit.fr/sorties/sortie-7de82303-515c-4a70-b748-84da63dfdf9c/,Roman,,3/13/2021 0:00,11.0000000,12.0000000,47.701808000000,-3.315152000000,,Riantec,36005,observation-7de82303-515c-4a70-b748-84da63dfdf9c-3,https://biolit.fr/observations/observation-7de82303-515c-4a70-b748-84da63dfdf9c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_9.PNG,,FALSE, +N1,58928,sortie-7de82303-515c-4a70-b748-84da63dfdf9c,https://biolit.fr/sorties/sortie-7de82303-515c-4a70-b748-84da63dfdf9c/,Roman,,3/13/2021 0:00,11.0000000,12.0000000,47.701808000000,-3.315152000000,,Riantec,36007,observation-7de82303-515c-4a70-b748-84da63dfdf9c-4,https://biolit.fr/observations/observation-7de82303-515c-4a70-b748-84da63dfdf9c-4/,Gari depressa,Psammobie déprimée,,https://biolit.fr/wp-content/uploads/2023/07/Gari depressa_3.PNG,,TRUE, +N1,58928,sortie-7de82303-515c-4a70-b748-84da63dfdf9c,https://biolit.fr/sorties/sortie-7de82303-515c-4a70-b748-84da63dfdf9c/,Roman,,3/13/2021 0:00,11.0000000,12.0000000,47.701808000000,-3.315152000000,,Riantec,36009,observation-7de82303-515c-4a70-b748-84da63dfdf9c-5,https://biolit.fr/observations/observation-7de82303-515c-4a70-b748-84da63dfdf9c-5/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/Gobie sp_2.PNG,,TRUE, +N1,58928,sortie-7de82303-515c-4a70-b748-84da63dfdf9c,https://biolit.fr/sorties/sortie-7de82303-515c-4a70-b748-84da63dfdf9c/,Roman,,3/13/2021 0:00,11.0000000,12.0000000,47.701808000000,-3.315152000000,,Riantec,36010,observation-7de82303-515c-4a70-b748-84da63dfdf9c-6,https://biolit.fr/observations/observation-7de82303-515c-4a70-b748-84da63dfdf9c-6/,Larus canus,Goéland cendré,,https://biolit.fr/wp-content/uploads/2023/07/larus canus.PNG,,TRUE, +N1,58928,sortie-7de82303-515c-4a70-b748-84da63dfdf9c,https://biolit.fr/sorties/sortie-7de82303-515c-4a70-b748-84da63dfdf9c/,Roman,,3/13/2021 0:00,11.0000000,12.0000000,47.701808000000,-3.315152000000,,Riantec,36012,observation-7de82303-515c-4a70-b748-84da63dfdf9c-7,https://biolit.fr/observations/observation-7de82303-515c-4a70-b748-84da63dfdf9c-7/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia_0.PNG,,TRUE, +N1,58928,sortie-7de82303-515c-4a70-b748-84da63dfdf9c,https://biolit.fr/sorties/sortie-7de82303-515c-4a70-b748-84da63dfdf9c/,Roman,,3/13/2021 0:00,11.0000000,12.0000000,47.701808000000,-3.315152000000,,Riantec,36014,observation-7de82303-515c-4a70-b748-84da63dfdf9c-8,https://biolit.fr/observations/observation-7de82303-515c-4a70-b748-84da63dfdf9c-8/,Ocenebra erinaceus,Ponte de Bigorneau perceur,,https://biolit.fr/wp-content/uploads/2023/07/oeuf de gastéropode.PNG,,TRUE, +N1,58928,sortie-7de82303-515c-4a70-b748-84da63dfdf9c,https://biolit.fr/sorties/sortie-7de82303-515c-4a70-b748-84da63dfdf9c/,Roman,,3/13/2021 0:00,11.0000000,12.0000000,47.701808000000,-3.315152000000,,Riantec,36016,observation-7de82303-515c-4a70-b748-84da63dfdf9c-9,https://biolit.fr/observations/observation-7de82303-515c-4a70-b748-84da63dfdf9c-9/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/Pisidia longicornis_2.PNG,,TRUE, +N1,58928,sortie-7de82303-515c-4a70-b748-84da63dfdf9c,https://biolit.fr/sorties/sortie-7de82303-515c-4a70-b748-84da63dfdf9c/,Roman,,3/13/2021 0:00,11.0000000,12.0000000,47.701808000000,-3.315152000000,,Riantec,36018,observation-7de82303-515c-4a70-b748-84da63dfdf9c-10,https://biolit.fr/observations/observation-7de82303-515c-4a70-b748-84da63dfdf9c-10/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/Ponte de nucella lapillus_0.PNG,,TRUE, +N1,58928,sortie-7de82303-515c-4a70-b748-84da63dfdf9c,https://biolit.fr/sorties/sortie-7de82303-515c-4a70-b748-84da63dfdf9c/,Roman,,3/13/2021 0:00,11.0000000,12.0000000,47.701808000000,-3.315152000000,,Riantec,36020,observation-7de82303-515c-4a70-b748-84da63dfdf9c-11,https://biolit.fr/observations/observation-7de82303-515c-4a70-b748-84da63dfdf9c-11/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_9.PNG,,TRUE, +N1,58928,sortie-7de82303-515c-4a70-b748-84da63dfdf9c,https://biolit.fr/sorties/sortie-7de82303-515c-4a70-b748-84da63dfdf9c/,Roman,,3/13/2021 0:00,11.0000000,12.0000000,47.701808000000,-3.315152000000,,Riantec,36022,observation-7de82303-515c-4a70-b748-84da63dfdf9c-12,https://biolit.fr/observations/observation-7de82303-515c-4a70-b748-84da63dfdf9c-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Venerupis aurea.PNG,,FALSE, +N1,58929,sortie-9b820515-55e8-41f0-bb8f-77d7c0499ff5,https://biolit.fr/sorties/sortie-9b820515-55e8-41f0-bb8f-77d7c0499ff5/,Conrad Van Dorssen,,3/14/2021 0:00,10.0000000,12.0000000,47.799825000000,-4.343994000000,,penmarch,36024,observation-9b820515-55e8-41f0-bb8f-77d7c0499ff5,https://biolit.fr/observations/observation-9b820515-55e8-41f0-bb8f-77d7c0499ff5/,,,,https://biolit.fr/wp-content/uploads/2023/07/slak2_0-rotated.jpg,,FALSE, +N1,58929,sortie-9b820515-55e8-41f0-bb8f-77d7c0499ff5,https://biolit.fr/sorties/sortie-9b820515-55e8-41f0-bb8f-77d7c0499ff5/,Conrad Van Dorssen,,3/14/2021 0:00,10.0000000,12.0000000,47.799825000000,-4.343994000000,,penmarch,36026,observation-9b820515-55e8-41f0-bb8f-77d7c0499ff5-2,https://biolit.fr/observations/observation-9b820515-55e8-41f0-bb8f-77d7c0499ff5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/slak3_0-scaled.jpg,,FALSE, +N1,58929,sortie-9b820515-55e8-41f0-bb8f-77d7c0499ff5,https://biolit.fr/sorties/sortie-9b820515-55e8-41f0-bb8f-77d7c0499ff5/,Conrad Van Dorssen,,3/14/2021 0:00,10.0000000,12.0000000,47.799825000000,-4.343994000000,,penmarch,36028,observation-9b820515-55e8-41f0-bb8f-77d7c0499ff5-3,https://biolit.fr/observations/observation-9b820515-55e8-41f0-bb8f-77d7c0499ff5-3/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/slak4_0.JPG,,TRUE, +N1,58929,sortie-9b820515-55e8-41f0-bb8f-77d7c0499ff5,https://biolit.fr/sorties/sortie-9b820515-55e8-41f0-bb8f-77d7c0499ff5/,Conrad Van Dorssen,,3/14/2021 0:00,10.0000000,12.0000000,47.799825000000,-4.343994000000,,penmarch,36030,observation-9b820515-55e8-41f0-bb8f-77d7c0499ff5-4,https://biolit.fr/observations/observation-9b820515-55e8-41f0-bb8f-77d7c0499ff5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/slak5_0.JPG,,FALSE, +N1,58929,sortie-9b820515-55e8-41f0-bb8f-77d7c0499ff5,https://biolit.fr/sorties/sortie-9b820515-55e8-41f0-bb8f-77d7c0499ff5/,Conrad Van Dorssen,,3/14/2021 0:00,10.0000000,12.0000000,47.799825000000,-4.343994000000,,penmarch,36032,observation-9b820515-55e8-41f0-bb8f-77d7c0499ff5-5,https://biolit.fr/observations/observation-9b820515-55e8-41f0-bb8f-77d7c0499ff5-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/slak6.JPG,,FALSE, +N1,58929,sortie-9b820515-55e8-41f0-bb8f-77d7c0499ff5,https://biolit.fr/sorties/sortie-9b820515-55e8-41f0-bb8f-77d7c0499ff5/,Conrad Van Dorssen,,3/14/2021 0:00,10.0000000,12.0000000,47.799825000000,-4.343994000000,,penmarch,36034,observation-9b820515-55e8-41f0-bb8f-77d7c0499ff5-6,https://biolit.fr/observations/observation-9b820515-55e8-41f0-bb8f-77d7c0499ff5-6/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/slak7.JPG,,TRUE, +N1,58930,sortie-7f0e5002-902e-4e73-aa02-e29c9eef0642,https://biolit.fr/sorties/sortie-7f0e5002-902e-4e73-aa02-e29c9eef0642/,institution sainte trinite,,3/13/2021 0:00,14.0000000,16.0000000,43.333419000000,5.177194000000,,Carry le rouet,36036,observation-7f0e5002-902e-4e73-aa02-e29c9eef0642,https://biolit.fr/observations/observation-7f0e5002-902e-4e73-aa02-e29c9eef0642/,,,,https://biolit.fr/wp-content/uploads/2023/07/428F0D1D-A541-454C-BCED-C751E464C1C8.jpeg,,FALSE, +N1,58930,sortie-7f0e5002-902e-4e73-aa02-e29c9eef0642,https://biolit.fr/sorties/sortie-7f0e5002-902e-4e73-aa02-e29c9eef0642/,institution sainte trinite,,3/13/2021 0:00,14.0000000,16.0000000,43.333419000000,5.177194000000,,Carry le rouet,36038,observation-7f0e5002-902e-4e73-aa02-e29c9eef0642-2,https://biolit.fr/observations/observation-7f0e5002-902e-4e73-aa02-e29c9eef0642-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/4DEE1994-DC84-4684-90DB-A92EABC67737-scaled.jpeg,,FALSE, +N1,58931,sortie-93fa2e2b-1b84-4ef1-831c-607d4650f5f5,https://biolit.fr/sorties/sortie-93fa2e2b-1b84-4ef1-831c-607d4650f5f5/,Emiaa,,03/12/2021,8.0000000,10.0000000,43.25344100000,5.374570000000,,Marseille ,36040,observation-93fa2e2b-1b84-4ef1-831c-607d4650f5f5,https://biolit.fr/observations/observation-93fa2e2b-1b84-4ef1-831c-607d4650f5f5/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20210203_090304-scaled.jpg,,TRUE, +N1,58932,sortie-5a88018c-42a8-46b7-a9af-4d5b25b7dbc6,https://biolit.fr/sorties/sortie-5a88018c-42a8-46b7-a9af-4d5b25b7dbc6/,Phil,,5/22/2020 0:00,13.0000000,13.0:55,47.79685100000,-4.179164000000,,Loctudy - Finistère,36042,observation-5a88018c-42a8-46b7-a9af-4d5b25b7dbc6,https://biolit.fr/observations/observation-5a88018c-42a8-46b7-a9af-4d5b25b7dbc6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_135526.jpg,,FALSE, +N1,58932,sortie-5a88018c-42a8-46b7-a9af-4d5b25b7dbc6,https://biolit.fr/sorties/sortie-5a88018c-42a8-46b7-a9af-4d5b25b7dbc6/,Phil,,5/22/2020 0:00,13.0000000,13.0:55,47.79685100000,-4.179164000000,,Loctudy - Finistère,36044,observation-5a88018c-42a8-46b7-a9af-4d5b25b7dbc6-2,https://biolit.fr/observations/observation-5a88018c-42a8-46b7-a9af-4d5b25b7dbc6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_135539.jpg,,FALSE, +N1,58932,sortie-5a88018c-42a8-46b7-a9af-4d5b25b7dbc6,https://biolit.fr/sorties/sortie-5a88018c-42a8-46b7-a9af-4d5b25b7dbc6/,Phil,,5/22/2020 0:00,13.0000000,13.0:55,47.79685100000,-4.179164000000,,Loctudy - Finistère,36046,observation-5a88018c-42a8-46b7-a9af-4d5b25b7dbc6-3,https://biolit.fr/observations/observation-5a88018c-42a8-46b7-a9af-4d5b25b7dbc6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_135459.jpg,,FALSE, +N1,58932,sortie-5a88018c-42a8-46b7-a9af-4d5b25b7dbc6,https://biolit.fr/sorties/sortie-5a88018c-42a8-46b7-a9af-4d5b25b7dbc6/,Phil,,5/22/2020 0:00,13.0000000,13.0:55,47.79685100000,-4.179164000000,,Loctudy - Finistère,36048,observation-5a88018c-42a8-46b7-a9af-4d5b25b7dbc6-4,https://biolit.fr/observations/observation-5a88018c-42a8-46b7-a9af-4d5b25b7dbc6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_135502.jpg,,FALSE, +N1,58933,sortie-bad48abb-8759-47cd-85f1-320c7cb453dd,https://biolit.fr/sorties/sortie-bad48abb-8759-47cd-85f1-320c7cb453dd/,Thomas 06130,,2/26/2021 0:00,13.0000000,14.0000000,43.569880000000,7.131977000000,,plage de la salis,36050,observation-bad48abb-8759-47cd-85f1-320c7cb453dd,https://biolit.fr/observations/observation-bad48abb-8759-47cd-85f1-320c7cb453dd/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/20210226_131721-scaled.jpg,,TRUE, +N1,58933,sortie-bad48abb-8759-47cd-85f1-320c7cb453dd,https://biolit.fr/sorties/sortie-bad48abb-8759-47cd-85f1-320c7cb453dd/,Thomas 06130,,2/26/2021 0:00,13.0000000,14.0000000,43.569880000000,7.131977000000,,plage de la salis,36052,observation-bad48abb-8759-47cd-85f1-320c7cb453dd-2,https://biolit.fr/observations/observation-bad48abb-8759-47cd-85f1-320c7cb453dd-2/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/20210226_131733-scaled.jpg,,TRUE, +N1,58933,sortie-bad48abb-8759-47cd-85f1-320c7cb453dd,https://biolit.fr/sorties/sortie-bad48abb-8759-47cd-85f1-320c7cb453dd/,Thomas 06130,,2/26/2021 0:00,13.0000000,14.0000000,43.569880000000,7.131977000000,,plage de la salis,36054,observation-bad48abb-8759-47cd-85f1-320c7cb453dd-3,https://biolit.fr/observations/observation-bad48abb-8759-47cd-85f1-320c7cb453dd-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210226_131858-scaled.jpg,,FALSE, +N1,58933,sortie-bad48abb-8759-47cd-85f1-320c7cb453dd,https://biolit.fr/sorties/sortie-bad48abb-8759-47cd-85f1-320c7cb453dd/,Thomas 06130,,2/26/2021 0:00,13.0000000,14.0000000,43.569880000000,7.131977000000,,plage de la salis,36056,observation-bad48abb-8759-47cd-85f1-320c7cb453dd-4,https://biolit.fr/observations/observation-bad48abb-8759-47cd-85f1-320c7cb453dd-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210226_131903-scaled.jpg,,FALSE, +N1,58933,sortie-bad48abb-8759-47cd-85f1-320c7cb453dd,https://biolit.fr/sorties/sortie-bad48abb-8759-47cd-85f1-320c7cb453dd/,Thomas 06130,,2/26/2021 0:00,13.0000000,14.0000000,43.569880000000,7.131977000000,,plage de la salis,36058,observation-bad48abb-8759-47cd-85f1-320c7cb453dd-5,https://biolit.fr/observations/observation-bad48abb-8759-47cd-85f1-320c7cb453dd-5/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/20210226_131950-scaled.jpg,,TRUE, +N1,58933,sortie-bad48abb-8759-47cd-85f1-320c7cb453dd,https://biolit.fr/sorties/sortie-bad48abb-8759-47cd-85f1-320c7cb453dd/,Thomas 06130,,2/26/2021 0:00,13.0000000,14.0000000,43.569880000000,7.131977000000,,plage de la salis,36060,observation-bad48abb-8759-47cd-85f1-320c7cb453dd-6,https://biolit.fr/observations/observation-bad48abb-8759-47cd-85f1-320c7cb453dd-6/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/20210226_132041-scaled.jpg,,TRUE, +N1,58933,sortie-bad48abb-8759-47cd-85f1-320c7cb453dd,https://biolit.fr/sorties/sortie-bad48abb-8759-47cd-85f1-320c7cb453dd/,Thomas 06130,,2/26/2021 0:00,13.0000000,14.0000000,43.569880000000,7.131977000000,,plage de la salis,36062,observation-bad48abb-8759-47cd-85f1-320c7cb453dd-7,https://biolit.fr/observations/observation-bad48abb-8759-47cd-85f1-320c7cb453dd-7/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/20210226_132046-scaled.jpg,,TRUE, +N1,58933,sortie-bad48abb-8759-47cd-85f1-320c7cb453dd,https://biolit.fr/sorties/sortie-bad48abb-8759-47cd-85f1-320c7cb453dd/,Thomas 06130,,2/26/2021 0:00,13.0000000,14.0000000,43.569880000000,7.131977000000,,plage de la salis,36064,observation-bad48abb-8759-47cd-85f1-320c7cb453dd-8,https://biolit.fr/observations/observation-bad48abb-8759-47cd-85f1-320c7cb453dd-8/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210226_132344-scaled.jpg,,TRUE, +N1,58934,sortie-29d5458c-a720-49b4-b04d-3f55979605a4,https://biolit.fr/sorties/sortie-29d5458c-a720-49b4-b04d-3f55979605a4/,zoebernard31,,03/10/2021,8.0000000,10.0000000,43.253265000000,5.374513000000,,Plage de l'escale Borély,36066,observation-29d5458c-a720-49b4-b04d-3f55979605a4,https://biolit.fr/observations/observation-29d5458c-a720-49b4-b04d-3f55979605a4/,,,,https://biolit.fr/wp-content/uploads/2023/07/unnamed (1).jpg,,FALSE, +N1,58934,sortie-29d5458c-a720-49b4-b04d-3f55979605a4,https://biolit.fr/sorties/sortie-29d5458c-a720-49b4-b04d-3f55979605a4/,zoebernard31,,03/10/2021,8.0000000,10.0000000,43.253265000000,5.374513000000,,Plage de l'escale Borély,36068,observation-29d5458c-a720-49b4-b04d-3f55979605a4-2,https://biolit.fr/observations/observation-29d5458c-a720-49b4-b04d-3f55979605a4-2/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/unnamed.jpg,,TRUE, +N1,58935,sortie-9973f8bb-e675-4873-b84e-5b130949daae,https://biolit.fr/sorties/sortie-9973f8bb-e675-4873-b84e-5b130949daae/,Phil,,03/03/2021,10.0000000,10.0:45,47.88715400000,-3.982715000000,,Fouesnant - Finistère,36070,observation-9973f8bb-e675-4873-b84e-5b130949daae,https://biolit.fr/observations/observation-9973f8bb-e675-4873-b84e-5b130949daae/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/20210303_104534.jpg,,TRUE, +N1,58935,sortie-9973f8bb-e675-4873-b84e-5b130949daae,https://biolit.fr/sorties/sortie-9973f8bb-e675-4873-b84e-5b130949daae/,Phil,,03/03/2021,10.0000000,10.0:45,47.88715400000,-3.982715000000,,Fouesnant - Finistère,36072,observation-9973f8bb-e675-4873-b84e-5b130949daae-2,https://biolit.fr/observations/observation-9973f8bb-e675-4873-b84e-5b130949daae-2/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/20210303_104427.jpg,,TRUE, +N1,58935,sortie-9973f8bb-e675-4873-b84e-5b130949daae,https://biolit.fr/sorties/sortie-9973f8bb-e675-4873-b84e-5b130949daae/,Phil,,03/03/2021,10.0000000,10.0:45,47.88715400000,-3.982715000000,,Fouesnant - Finistère,36074,observation-9973f8bb-e675-4873-b84e-5b130949daae-3,https://biolit.fr/observations/observation-9973f8bb-e675-4873-b84e-5b130949daae-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210303_104302-scaled.jpg,,FALSE, +N1,58936,sortie-6761bf00-324c-4871-9ce8-c9903cec9003,https://biolit.fr/sorties/sortie-6761bf00-324c-4871-9ce8-c9903cec9003/,Phil,,2/27/2021 0:00,10.0:45,10.0000000,48.669586000000,-4.371301000000,,Kerlouan - Finistère,36076,observation-6761bf00-324c-4871-9ce8-c9903cec9003,https://biolit.fr/observations/observation-6761bf00-324c-4871-9ce8-c9903cec9003/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210227_104921.jpg,,TRUE, +N1,58936,sortie-6761bf00-324c-4871-9ce8-c9903cec9003,https://biolit.fr/sorties/sortie-6761bf00-324c-4871-9ce8-c9903cec9003/,Phil,,2/27/2021 0:00,10.0:45,10.0000000,48.669586000000,-4.371301000000,,Kerlouan - Finistère,36078,observation-6761bf00-324c-4871-9ce8-c9903cec9003-2,https://biolit.fr/observations/observation-6761bf00-324c-4871-9ce8-c9903cec9003-2/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/20210227_105118.jpg,,TRUE, +N1,58936,sortie-6761bf00-324c-4871-9ce8-c9903cec9003,https://biolit.fr/sorties/sortie-6761bf00-324c-4871-9ce8-c9903cec9003/,Phil,,2/27/2021 0:00,10.0:45,10.0000000,48.669586000000,-4.371301000000,,Kerlouan - Finistère,36080,observation-6761bf00-324c-4871-9ce8-c9903cec9003-3,https://biolit.fr/observations/observation-6761bf00-324c-4871-9ce8-c9903cec9003-3/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210227_104939.jpg,,TRUE, +N1,58936,sortie-6761bf00-324c-4871-9ce8-c9903cec9003,https://biolit.fr/sorties/sortie-6761bf00-324c-4871-9ce8-c9903cec9003/,Phil,,2/27/2021 0:00,10.0:45,10.0000000,48.669586000000,-4.371301000000,,Kerlouan - Finistère,36082,observation-6761bf00-324c-4871-9ce8-c9903cec9003-4,https://biolit.fr/observations/observation-6761bf00-324c-4871-9ce8-c9903cec9003-4/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210227_104905.jpg,,TRUE, +N1,58937,sortie-4026edd4-0c45-4381-8043-66bda6d34e72,https://biolit.fr/sorties/sortie-4026edd4-0c45-4381-8043-66bda6d34e72/,Phil,,5/22/2020 0:00,13.0000000,14.0000000,47.795568000000,-4.18192000000,,Loctudy - Finistère,36084,observation-4026edd4-0c45-4381-8043-66bda6d34e72,https://biolit.fr/observations/observation-4026edd4-0c45-4381-8043-66bda6d34e72/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_135930.jpg,,FALSE, +N1,58937,sortie-4026edd4-0c45-4381-8043-66bda6d34e72,https://biolit.fr/sorties/sortie-4026edd4-0c45-4381-8043-66bda6d34e72/,Phil,,5/22/2020 0:00,13.0000000,14.0000000,47.795568000000,-4.18192000000,,Loctudy - Finistère,36086,observation-4026edd4-0c45-4381-8043-66bda6d34e72-2,https://biolit.fr/observations/observation-4026edd4-0c45-4381-8043-66bda6d34e72-2/,Coryphoblennius galerita,Blennie coiffée,,https://biolit.fr/wp-content/uploads/2023/07/20200522_135939.jpg,,FALSE, +N1,58937,sortie-4026edd4-0c45-4381-8043-66bda6d34e72,https://biolit.fr/sorties/sortie-4026edd4-0c45-4381-8043-66bda6d34e72/,Phil,,5/22/2020 0:00,13.0000000,14.0000000,47.795568000000,-4.18192000000,,Loctudy - Finistère,36088,observation-4026edd4-0c45-4381-8043-66bda6d34e72-3,https://biolit.fr/observations/observation-4026edd4-0c45-4381-8043-66bda6d34e72-3/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20200522_140310.jpg,,TRUE, +N1,58938,sortie-7b092f44-ad98-4cde-aad8-e994f3b47dd3,https://biolit.fr/sorties/sortie-7b092f44-ad98-4cde-aad8-e994f3b47dd3/,institution sainte trinite,,03/04/2021,14.0000000,15.0000000,43.251547000000,5.373027000000,,Plage du prado,36090,observation-7b092f44-ad98-4cde-aad8-e994f3b47dd3,https://biolit.fr/observations/observation-7b092f44-ad98-4cde-aad8-e994f3b47dd3/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/DD4E85C2-1A60-4902-A96A-D5190C0586A1-scaled.jpeg,,TRUE, +N1,58938,sortie-7b092f44-ad98-4cde-aad8-e994f3b47dd3,https://biolit.fr/sorties/sortie-7b092f44-ad98-4cde-aad8-e994f3b47dd3/,institution sainte trinite,,03/04/2021,14.0000000,15.0000000,43.251547000000,5.373027000000,,Plage du prado,36092,observation-7b092f44-ad98-4cde-aad8-e994f3b47dd3-2,https://biolit.fr/observations/observation-7b092f44-ad98-4cde-aad8-e994f3b47dd3-2/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/44E65308-BE25-403A-ACCF-D34D286D1756-scaled.jpeg,,TRUE, +N1,58939,sortie-a0d61bd5-bea7-46a5-abbb-db0d7b95c5b9,https://biolit.fr/sorties/sortie-a0d61bd5-bea7-46a5-abbb-db0d7b95c5b9/,Phil,,03/03/2021,10.0000000,10.0:45,47.886437000000,-3.984346000000,,Fouesnant - Finistère,36094,observation-a0d61bd5-bea7-46a5-abbb-db0d7b95c5b9,https://biolit.fr/observations/observation-a0d61bd5-bea7-46a5-abbb-db0d7b95c5b9/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20210303_103912.jpg,,TRUE, +N1,58939,sortie-a0d61bd5-bea7-46a5-abbb-db0d7b95c5b9,https://biolit.fr/sorties/sortie-a0d61bd5-bea7-46a5-abbb-db0d7b95c5b9/,Phil,,03/03/2021,10.0000000,10.0:45,47.886437000000,-3.984346000000,,Fouesnant - Finistère,36096,observation-a0d61bd5-bea7-46a5-abbb-db0d7b95c5b9-2,https://biolit.fr/observations/observation-a0d61bd5-bea7-46a5-abbb-db0d7b95c5b9-2/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/20210303_104200.jpg,,TRUE, +N1,58939,sortie-a0d61bd5-bea7-46a5-abbb-db0d7b95c5b9,https://biolit.fr/sorties/sortie-a0d61bd5-bea7-46a5-abbb-db0d7b95c5b9/,Phil,,03/03/2021,10.0000000,10.0:45,47.886437000000,-3.984346000000,,Fouesnant - Finistère,36098,observation-a0d61bd5-bea7-46a5-abbb-db0d7b95c5b9-3,https://biolit.fr/observations/observation-a0d61bd5-bea7-46a5-abbb-db0d7b95c5b9-3/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20210303_104227.jpg,,TRUE, +N1,58940,sortie-282f09ec-be4c-4461-82ac-f7843e644bc1,https://biolit.fr/sorties/sortie-282f09ec-be4c-4461-82ac-f7843e644bc1/,Phil,,2/27/2021 0:00,10.0:45,10.0000000,48.669306000000,-4.371516000000,,Kerlouan - Finistère,36100,observation-282f09ec-be4c-4461-82ac-f7843e644bc1,https://biolit.fr/observations/observation-282f09ec-be4c-4461-82ac-f7843e644bc1/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20210227_104659.jpg,,TRUE, +N1,58940,sortie-282f09ec-be4c-4461-82ac-f7843e644bc1,https://biolit.fr/sorties/sortie-282f09ec-be4c-4461-82ac-f7843e644bc1/,Phil,,2/27/2021 0:00,10.0:45,10.0000000,48.669306000000,-4.371516000000,,Kerlouan - Finistère,36102,observation-282f09ec-be4c-4461-82ac-f7843e644bc1-2,https://biolit.fr/observations/observation-282f09ec-be4c-4461-82ac-f7843e644bc1-2/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210227_104735.jpg,,TRUE, +N1,58940,sortie-282f09ec-be4c-4461-82ac-f7843e644bc1,https://biolit.fr/sorties/sortie-282f09ec-be4c-4461-82ac-f7843e644bc1/,Phil,,2/27/2021 0:00,10.0:45,10.0000000,48.669306000000,-4.371516000000,,Kerlouan - Finistère,36104,observation-282f09ec-be4c-4461-82ac-f7843e644bc1-3,https://biolit.fr/observations/observation-282f09ec-be4c-4461-82ac-f7843e644bc1-3/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/2023/07/20210227_104802.jpg,,TRUE, +N1,58940,sortie-282f09ec-be4c-4461-82ac-f7843e644bc1,https://biolit.fr/sorties/sortie-282f09ec-be4c-4461-82ac-f7843e644bc1/,Phil,,2/27/2021 0:00,10.0:45,10.0000000,48.669306000000,-4.371516000000,,Kerlouan - Finistère,36106,observation-282f09ec-be4c-4461-82ac-f7843e644bc1-4,https://biolit.fr/observations/observation-282f09ec-be4c-4461-82ac-f7843e644bc1-4/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/2023/07/20210227_104818.jpg,,TRUE, +N1,58941,sortie-820400b7-03e4-4d47-a584-b59d533e3c61,https://biolit.fr/sorties/sortie-820400b7-03e4-4d47-a584-b59d533e3c61/,Phil,,5/22/2020 0:00,13.0:45,13.0000000,47.799621000000,-4.181542000000,,Loctudy - Finistère,36108,observation-820400b7-03e4-4d47-a584-b59d533e3c61,https://biolit.fr/observations/observation-820400b7-03e4-4d47-a584-b59d533e3c61/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_134521.jpg,,FALSE, +N1,58941,sortie-820400b7-03e4-4d47-a584-b59d533e3c61,https://biolit.fr/sorties/sortie-820400b7-03e4-4d47-a584-b59d533e3c61/,Phil,,5/22/2020 0:00,13.0:45,13.0000000,47.799621000000,-4.181542000000,,Loctudy - Finistère,36110,observation-820400b7-03e4-4d47-a584-b59d533e3c61-2,https://biolit.fr/observations/observation-820400b7-03e4-4d47-a584-b59d533e3c61-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_134551.jpg,,FALSE, +N1,58941,sortie-820400b7-03e4-4d47-a584-b59d533e3c61,https://biolit.fr/sorties/sortie-820400b7-03e4-4d47-a584-b59d533e3c61/,Phil,,5/22/2020 0:00,13.0:45,13.0000000,47.799621000000,-4.181542000000,,Loctudy - Finistère,36112,observation-820400b7-03e4-4d47-a584-b59d533e3c61-3,https://biolit.fr/observations/observation-820400b7-03e4-4d47-a584-b59d533e3c61-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_135045.jpg,,FALSE, +N1,58941,sortie-820400b7-03e4-4d47-a584-b59d533e3c61,https://biolit.fr/sorties/sortie-820400b7-03e4-4d47-a584-b59d533e3c61/,Phil,,5/22/2020 0:00,13.0:45,13.0000000,47.799621000000,-4.181542000000,,Loctudy - Finistère,36114,observation-820400b7-03e4-4d47-a584-b59d533e3c61-4,https://biolit.fr/observations/observation-820400b7-03e4-4d47-a584-b59d533e3c61-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_135053.jpg,,FALSE, +N1,58941,sortie-820400b7-03e4-4d47-a584-b59d533e3c61,https://biolit.fr/sorties/sortie-820400b7-03e4-4d47-a584-b59d533e3c61/,Phil,,5/22/2020 0:00,13.0:45,13.0000000,47.799621000000,-4.181542000000,,Loctudy - Finistère,36116,observation-820400b7-03e4-4d47-a584-b59d533e3c61-5,https://biolit.fr/observations/observation-820400b7-03e4-4d47-a584-b59d533e3c61-5/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20200522_134526.jpg,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36118,observation-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/actinia equina_5.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36119,observation-fbef4707-1231-4662-8ef8-b463931fcb55-2,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-2/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_2.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36121,observation-fbef4707-1231-4662-8ef8-b463931fcb55-3,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/anthopleura sp_0.PNG,,FALSE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36123,observation-fbef4707-1231-4662-8ef8-b463931fcb55-4,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-4/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asteria rubens_1.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36125,observation-fbef4707-1231-4662-8ef8-b463931fcb55-5,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-5/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/Blennie sp_1.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36127,observation-fbef4707-1231-4662-8ef8-b463931fcb55-6,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-6/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/Branta bernicla_1.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36129,observation-fbef4707-1231-4662-8ef8-b463931fcb55-7,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-7/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_6.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36131,observation-fbef4707-1231-4662-8ef8-b463931fcb55-8,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-8/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_8.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36133,observation-fbef4707-1231-4662-8ef8-b463931fcb55-9,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-9/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_5.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36135,observation-fbef4707-1231-4662-8ef8-b463931fcb55-10,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-10/,Ciliata mustela,Motelle à 5 barbillons,,https://biolit.fr/wp-content/uploads/2023/07/Ciliata mustela_0.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36137,observation-fbef4707-1231-4662-8ef8-b463931fcb55-11,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 1_3.PNG,,FALSE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36139,observation-fbef4707-1231-4662-8ef8-b463931fcb55-12,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-12/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_8.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36141,observation-fbef4707-1231-4662-8ef8-b463931fcb55-13,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-13/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Eriphia verrucosa_1.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36143,observation-fbef4707-1231-4662-8ef8-b463931fcb55-14,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-14/,Coryphoblennius galerita,Blennie coiffée,,https://biolit.fr/wp-content/uploads/2023/07/gobie sp pe.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36145,observation-fbef4707-1231-4662-8ef8-b463931fcb55-15,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Heteranomia squamula_0.PNG,,FALSE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36147,observation-fbef4707-1231-4662-8ef8-b463931fcb55-16,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-16/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_2.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36149,observation-fbef4707-1231-4662-8ef8-b463931fcb55-17,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-17/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_8.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36151,observation-fbef4707-1231-4662-8ef8-b463931fcb55-18,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-18/,Nerophis ophidion,Nérophis ophidion,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis ophidion_2.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36153,observation-fbef4707-1231-4662-8ef8-b463931fcb55-19,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-19/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_8.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36155,observation-fbef4707-1231-4662-8ef8-b463931fcb55-20,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Oeufs..PNG,,FALSE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36157,observation-fbef4707-1231-4662-8ef8-b463931fcb55-21,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-21/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/Perforatus perforatus_0.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36159,observation-fbef4707-1231-4662-8ef8-b463931fcb55-22,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-22/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/porcellana platycheles_6.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36160,observation-fbef4707-1231-4662-8ef8-b463931fcb55-23,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-23/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_8.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36162,observation-fbef4707-1231-4662-8ef8-b463931fcb55-24,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-24/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/Urticina felina_0.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36164,observation-fbef4707-1231-4662-8ef8-b463931fcb55-25,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-25/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_5.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36166,observation-fbef4707-1231-4662-8ef8-b463931fcb55-26,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-26/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_6.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36168,observation-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/acanthochitona crinita_2.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36169,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-2,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_4.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36171,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-3,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragaceae.jpg,,FALSE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36172,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-4,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_4.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36174,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-5,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-5/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/2023/07/Anguille.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36176,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-6,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-6/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/Anthopleura balii_0.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36178,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-7,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-7/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/Aulactinia verrucosa_4.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36180,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-8,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-8/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_3.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36182,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-9,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-9/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Calliostoma zyziphinum_0.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36184,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-10,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-10/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/cancer pagurus_5.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36185,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-11,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-11/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_4.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36187,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-12,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-12/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/Doris pseudoargus.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36189,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-13,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_7.PNG,,FALSE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36191,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-14,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-14/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Eriphia verrucosa_0.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36193,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-15,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-15/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_6.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36195,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-16,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-16/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_7.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36197,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-17,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-17/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_5.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36199,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-18,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-18/,Hediste diversicolor,Néréis multicolore,,https://biolit.fr/wp-content/uploads/2023/07/Nereis sp.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36201,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-19,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-19/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/Ophiotrix fragilis.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36203,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-20,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-20/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_1.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36205,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-21,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-21/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Paracentrotus lividus_4.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36207,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-22,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-22/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/Pisidia longicornis_1.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36209,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-23,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-23/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_5.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36211,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-24,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-24/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/Sabellaria alveolata_0.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36213,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-25,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-25/,Sphaeromatidae (famille),Sphéromiens,,https://biolit.fr/wp-content/uploads/2023/07/Sphaeromatidae_1.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36215,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-26,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-26/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/Urticina felina.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36217,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-27,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ver sp_2.PNG,,FALSE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36218,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-28,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-28/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_4.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36220,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-29,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-29/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_5.PNG,,TRUE, +N1,58944,sortie-282858f5-e6a7-4cb9-a602-e282f85e784d,https://biolit.fr/sorties/sortie-282858f5-e6a7-4cb9-a602-e282f85e784d/,Zélie Auger,,03/01/2021,17.0000000,19.0000000,47.100656000000,-2.07262300000,,Pornic,36222,observation-282858f5-e6a7-4cb9-a602-e282f85e784d,https://biolit.fr/observations/observation-282858f5-e6a7-4cb9-a602-e282f85e784d/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/1614613887398-scaled.jpg,,TRUE, +N1,58944,sortie-282858f5-e6a7-4cb9-a602-e282f85e784d,https://biolit.fr/sorties/sortie-282858f5-e6a7-4cb9-a602-e282f85e784d/,Zélie Auger,,03/01/2021,17.0000000,19.0000000,47.100656000000,-2.07262300000,,Pornic,36224,observation-282858f5-e6a7-4cb9-a602-e282f85e784d-2,https://biolit.fr/observations/observation-282858f5-e6a7-4cb9-a602-e282f85e784d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/1614613909047-scaled.jpg,,FALSE, +N1,58944,sortie-282858f5-e6a7-4cb9-a602-e282f85e784d,https://biolit.fr/sorties/sortie-282858f5-e6a7-4cb9-a602-e282f85e784d/,Zélie Auger,,03/01/2021,17.0000000,19.0000000,47.100656000000,-2.07262300000,,Pornic,36226,observation-282858f5-e6a7-4cb9-a602-e282f85e784d-3,https://biolit.fr/observations/observation-282858f5-e6a7-4cb9-a602-e282f85e784d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/1614613832694-scaled.jpg,,FALSE, +N1,58944,sortie-282858f5-e6a7-4cb9-a602-e282f85e784d,https://biolit.fr/sorties/sortie-282858f5-e6a7-4cb9-a602-e282f85e784d/,Zélie Auger,,03/01/2021,17.0000000,19.0000000,47.100656000000,-2.07262300000,,Pornic,36228,observation-282858f5-e6a7-4cb9-a602-e282f85e784d-4,https://biolit.fr/observations/observation-282858f5-e6a7-4cb9-a602-e282f85e784d-4/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/1614613887393-scaled.jpg,,TRUE, +N1,58944,sortie-282858f5-e6a7-4cb9-a602-e282f85e784d,https://biolit.fr/sorties/sortie-282858f5-e6a7-4cb9-a602-e282f85e784d/,Zélie Auger,,03/01/2021,17.0000000,19.0000000,47.100656000000,-2.07262300000,,Pornic,36230,observation-282858f5-e6a7-4cb9-a602-e282f85e784d-5,https://biolit.fr/observations/observation-282858f5-e6a7-4cb9-a602-e282f85e784d-5/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/1614613887386-scaled.jpg,,TRUE, +N1,58944,sortie-282858f5-e6a7-4cb9-a602-e282f85e784d,https://biolit.fr/sorties/sortie-282858f5-e6a7-4cb9-a602-e282f85e784d/,Zélie Auger,,03/01/2021,17.0000000,19.0000000,47.100656000000,-2.07262300000,,Pornic,36232,observation-282858f5-e6a7-4cb9-a602-e282f85e784d-6,https://biolit.fr/observations/observation-282858f5-e6a7-4cb9-a602-e282f85e784d-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/1614613856323-scaled.jpg,,FALSE, +N1,58944,sortie-282858f5-e6a7-4cb9-a602-e282f85e784d,https://biolit.fr/sorties/sortie-282858f5-e6a7-4cb9-a602-e282f85e784d/,Zélie Auger,,03/01/2021,17.0000000,19.0000000,47.100656000000,-2.07262300000,,Pornic,36236,observation-282858f5-e6a7-4cb9-a602-e282f85e784d-8,https://biolit.fr/observations/observation-282858f5-e6a7-4cb9-a602-e282f85e784d-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/1614613832683_0-scaled.jpg | https://biolit.fr/wp-content/uploads/2021/03/1614613832687-scaled-1-scaled.jpg,,FALSE, +N1,58944,sortie-282858f5-e6a7-4cb9-a602-e282f85e784d,https://biolit.fr/sorties/sortie-282858f5-e6a7-4cb9-a602-e282f85e784d/,Zélie Auger,,03/01/2021,17.0000000,19.0000000,47.100656000000,-2.07262300000,,Pornic,36238,observation-282858f5-e6a7-4cb9-a602-e282f85e784d-9,https://biolit.fr/observations/observation-282858f5-e6a7-4cb9-a602-e282f85e784d-9/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/1614613935537-min-scaled.jpg,,TRUE, +N1,58944,sortie-282858f5-e6a7-4cb9-a602-e282f85e784d,https://biolit.fr/sorties/sortie-282858f5-e6a7-4cb9-a602-e282f85e784d/,Zélie Auger,,03/01/2021,17.0000000,19.0000000,47.100656000000,-2.07262300000,,Pornic,36240,observation-282858f5-e6a7-4cb9-a602-e282f85e784d-10,https://biolit.fr/observations/observation-282858f5-e6a7-4cb9-a602-e282f85e784d-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/1614613909063-min (1)-scaled.jpg,,FALSE, +N1,58944,sortie-282858f5-e6a7-4cb9-a602-e282f85e784d,https://biolit.fr/sorties/sortie-282858f5-e6a7-4cb9-a602-e282f85e784d/,Zélie Auger,,03/01/2021,17.0000000,19.0000000,47.100656000000,-2.07262300000,,Pornic,36242,observation-282858f5-e6a7-4cb9-a602-e282f85e784d-11,https://biolit.fr/observations/observation-282858f5-e6a7-4cb9-a602-e282f85e784d-11/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/1614613909055-min-scaled.jpg,,TRUE, +N1,58944,sortie-282858f5-e6a7-4cb9-a602-e282f85e784d,https://biolit.fr/sorties/sortie-282858f5-e6a7-4cb9-a602-e282f85e784d/,Zélie Auger,,03/01/2021,17.0000000,19.0000000,47.100656000000,-2.07262300000,,Pornic,36244,observation-282858f5-e6a7-4cb9-a602-e282f85e784d-12,https://biolit.fr/observations/observation-282858f5-e6a7-4cb9-a602-e282f85e784d-12/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/1614613887403-min-scaled.jpg,,TRUE, +N1,58944,sortie-282858f5-e6a7-4cb9-a602-e282f85e784d,https://biolit.fr/sorties/sortie-282858f5-e6a7-4cb9-a602-e282f85e784d/,Zélie Auger,,03/01/2021,17.0000000,19.0000000,47.100656000000,-2.07262300000,,Pornic,36246,observation-282858f5-e6a7-4cb9-a602-e282f85e784d-13,https://biolit.fr/observations/observation-282858f5-e6a7-4cb9-a602-e282f85e784d-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/1614613856330-min-scaled.jpg,,FALSE, +N1,58944,sortie-282858f5-e6a7-4cb9-a602-e282f85e784d,https://biolit.fr/sorties/sortie-282858f5-e6a7-4cb9-a602-e282f85e784d/,Zélie Auger,,03/01/2021,17.0000000,19.0000000,47.100656000000,-2.07262300000,,Pornic,36248,observation-282858f5-e6a7-4cb9-a602-e282f85e784d-14,https://biolit.fr/observations/observation-282858f5-e6a7-4cb9-a602-e282f85e784d-14/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/1614613856314-min-scaled.jpg,,TRUE, +N1,58944,sortie-282858f5-e6a7-4cb9-a602-e282f85e784d,https://biolit.fr/sorties/sortie-282858f5-e6a7-4cb9-a602-e282f85e784d/,Zélie Auger,,03/01/2021,17.0000000,19.0000000,47.100656000000,-2.07262300000,,Pornic,36250,observation-282858f5-e6a7-4cb9-a602-e282f85e784d-15,https://biolit.fr/observations/observation-282858f5-e6a7-4cb9-a602-e282f85e784d-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/1614613832690-min-scaled.jpg,,FALSE, +N1,58945,sortie-d5fe45b6-2997-4b5f-b5bb-f892ca9651d8,https://biolit.fr/sorties/sortie-d5fe45b6-2997-4b5f-b5bb-f892ca9651d8/,LECLERCQ,,2/22/2021 0:00,10.0000000,12.0000000,43.166818000000,5.597228000000,,LE MUGEL A LA CIOTA (13600),36252,observation-d5fe45b6-2997-4b5f-b5bb-f892ca9651d8,https://biolit.fr/observations/observation-d5fe45b6-2997-4b5f-b5bb-f892ca9651d8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lithophyllum 1 LECLERCQ-scaled.jpg,,FALSE, +N1,58946,sortie-47774bc4-af8b-43db-af01-fabd7afafb41,https://biolit.fr/sorties/sortie-47774bc4-af8b-43db-af01-fabd7afafb41/,Phil,,2/27/2021 0:00,10.0000000,10.0:45,48.669489000000,-4.371348000000,,Kerlouan - Finistère,36254,observation-47774bc4-af8b-43db-af01-fabd7afafb41,https://biolit.fr/observations/observation-47774bc4-af8b-43db-af01-fabd7afafb41/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210227_104608_1.jpg,,TRUE, +N1,58946,sortie-47774bc4-af8b-43db-af01-fabd7afafb41,https://biolit.fr/sorties/sortie-47774bc4-af8b-43db-af01-fabd7afafb41/,Phil,,2/27/2021 0:00,10.0000000,10.0:45,48.669489000000,-4.371348000000,,Kerlouan - Finistère,36256,observation-47774bc4-af8b-43db-af01-fabd7afafb41-2,https://biolit.fr/observations/observation-47774bc4-af8b-43db-af01-fabd7afafb41-2/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210227_104601.jpg,,TRUE, +N1,58947,sortie-ca4654a4-2049-4b4f-891e-9d3686c93e15,https://biolit.fr/sorties/sortie-ca4654a4-2049-4b4f-891e-9d3686c93e15/,Phil,,02/02/2021,15.0:35,15.0000000,47.895880000000,-3.967584000000,,La Forêt-Fouesnant - Finistère,36258,observation-ca4654a4-2049-4b4f-891e-9d3686c93e15,https://biolit.fr/observations/observation-ca4654a4-2049-4b4f-891e-9d3686c93e15/,Atelecyclus undecimdentatus,Grand crabe circulaire,,https://biolit.fr/wp-content/uploads/2023/07/20210202_153722.jpg | https://biolit.fr/wp-content/uploads/2021/02/20210202_153710_0.jpg,,TRUE, +N1,58947,sortie-ca4654a4-2049-4b4f-891e-9d3686c93e15,https://biolit.fr/sorties/sortie-ca4654a4-2049-4b4f-891e-9d3686c93e15/,Phil,,02/02/2021,15.0:35,15.0000000,47.895880000000,-3.967584000000,,La Forêt-Fouesnant - Finistère,36262,observation-ca4654a4-2049-4b4f-891e-9d3686c93e15-3,https://biolit.fr/observations/observation-ca4654a4-2049-4b4f-891e-9d3686c93e15-3/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/20210202_153955.jpg,,TRUE, +N1,58947,sortie-ca4654a4-2049-4b4f-891e-9d3686c93e15,https://biolit.fr/sorties/sortie-ca4654a4-2049-4b4f-891e-9d3686c93e15/,Phil,,02/02/2021,15.0:35,15.0000000,47.895880000000,-3.967584000000,,La Forêt-Fouesnant - Finistère,36264,observation-ca4654a4-2049-4b4f-891e-9d3686c93e15-4,https://biolit.fr/observations/observation-ca4654a4-2049-4b4f-891e-9d3686c93e15-4/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20210202_154024.jpg,,TRUE, +N1,58948,sortie-949c5e4d-0ffb-4f60-97d3-8790e8bea109,https://biolit.fr/sorties/sortie-949c5e4d-0ffb-4f60-97d3-8790e8bea109/,Phil,,5/22/2020 0:00,13.0:35,13.0:45,47.800159000000,-4.180504000000,,Loctudy - Finistère,36266,observation-949c5e4d-0ffb-4f60-97d3-8790e8bea109,https://biolit.fr/observations/observation-949c5e4d-0ffb-4f60-97d3-8790e8bea109/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/20200522_134151.jpg,,TRUE, +N1,58948,sortie-949c5e4d-0ffb-4f60-97d3-8790e8bea109,https://biolit.fr/sorties/sortie-949c5e4d-0ffb-4f60-97d3-8790e8bea109/,Phil,,5/22/2020 0:00,13.0:35,13.0:45,47.800159000000,-4.180504000000,,Loctudy - Finistère,36268,observation-949c5e4d-0ffb-4f60-97d3-8790e8bea109-2,https://biolit.fr/observations/observation-949c5e4d-0ffb-4f60-97d3-8790e8bea109-2/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/20200522_134215.jpg,,TRUE, +N1,58948,sortie-949c5e4d-0ffb-4f60-97d3-8790e8bea109,https://biolit.fr/sorties/sortie-949c5e4d-0ffb-4f60-97d3-8790e8bea109/,Phil,,5/22/2020 0:00,13.0:35,13.0:45,47.800159000000,-4.180504000000,,Loctudy - Finistère,36270,observation-949c5e4d-0ffb-4f60-97d3-8790e8bea109-3,https://biolit.fr/observations/observation-949c5e4d-0ffb-4f60-97d3-8790e8bea109-3/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/20200522_134209.jpg,,TRUE, +N1,58948,sortie-949c5e4d-0ffb-4f60-97d3-8790e8bea109,https://biolit.fr/sorties/sortie-949c5e4d-0ffb-4f60-97d3-8790e8bea109/,Phil,,5/22/2020 0:00,13.0:35,13.0:45,47.800159000000,-4.180504000000,,Loctudy - Finistère,36272,observation-949c5e4d-0ffb-4f60-97d3-8790e8bea109-4,https://biolit.fr/observations/observation-949c5e4d-0ffb-4f60-97d3-8790e8bea109-4/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200522_133841.jpg,,TRUE, +N1,58948,sortie-949c5e4d-0ffb-4f60-97d3-8790e8bea109,https://biolit.fr/sorties/sortie-949c5e4d-0ffb-4f60-97d3-8790e8bea109/,Phil,,5/22/2020 0:00,13.0:35,13.0:45,47.800159000000,-4.180504000000,,Loctudy - Finistère,36274,observation-949c5e4d-0ffb-4f60-97d3-8790e8bea109-5,https://biolit.fr/observations/observation-949c5e4d-0ffb-4f60-97d3-8790e8bea109-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20200522_133846.jpg,,TRUE, +N1,58949,sortie-c7db2524-c979-4b7c-a5ac-4b9de088ae3e,https://biolit.fr/sorties/sortie-c7db2524-c979-4b7c-a5ac-4b9de088ae3e/,Phil,,02/07/2021,10.0:55,11.0000000,47.861786000000,-3.983866000000,,Fouesnant - Finistère,36276,observation-c7db2524-c979-4b7c-a5ac-4b9de088ae3e,https://biolit.fr/observations/observation-c7db2524-c979-4b7c-a5ac-4b9de088ae3e/,Ceramium virgatum,Céramium rouge,,https://biolit.fr/wp-content/uploads/2023/07/20210207_105717.jpg,,TRUE, +N1,58949,sortie-c7db2524-c979-4b7c-a5ac-4b9de088ae3e,https://biolit.fr/sorties/sortie-c7db2524-c979-4b7c-a5ac-4b9de088ae3e/,Phil,,02/07/2021,10.0:55,11.0000000,47.861786000000,-3.983866000000,,Fouesnant - Finistère,36278,observation-c7db2524-c979-4b7c-a5ac-4b9de088ae3e-2,https://biolit.fr/observations/observation-c7db2524-c979-4b7c-a5ac-4b9de088ae3e-2/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210207_105808.jpg,,TRUE, +N1,58950,sortie-e6317b2b-eadf-4327-ad3e-10140eebb30e,https://biolit.fr/sorties/sortie-e6317b2b-eadf-4327-ad3e-10140eebb30e/,Club subaquatique Narbonnais,,2/21/2021 0:00,11.0000000,12.0000000,43.168363000000,3.180552000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,36280,observation-e6317b2b-eadf-4327-ad3e-10140eebb30e,https://biolit.fr/observations/observation-e6317b2b-eadf-4327-ad3e-10140eebb30e/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/anatife (Lepas hillii).jpg,,TRUE, +N1,58950,sortie-e6317b2b-eadf-4327-ad3e-10140eebb30e,https://biolit.fr/sorties/sortie-e6317b2b-eadf-4327-ad3e-10140eebb30e/,Club subaquatique Narbonnais,,2/21/2021 0:00,11.0000000,12.0000000,43.168363000000,3.180552000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,36284,observation-e6317b2b-eadf-4327-ad3e-10140eebb30e-3,https://biolit.fr/observations/observation-e6317b2b-eadf-4327-ad3e-10140eebb30e-3/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/anatife3.jpg | https://biolit.fr/wp-content/uploads/2021/02/anatife2.jpg,,TRUE, +N1,58950,sortie-e6317b2b-eadf-4327-ad3e-10140eebb30e,https://biolit.fr/sorties/sortie-e6317b2b-eadf-4327-ad3e-10140eebb30e/,Club subaquatique Narbonnais,,2/21/2021 0:00,11.0000000,12.0000000,43.168363000000,3.180552000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,36286,observation-e6317b2b-eadf-4327-ad3e-10140eebb30e-4,https://biolit.fr/observations/observation-e6317b2b-eadf-4327-ad3e-10140eebb30e-4/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/capsules.jpg,,TRUE, +N1,58951,sortie-b71e10ee-9efd-448d-a4de-c3a12cb7a99e,https://biolit.fr/sorties/sortie-b71e10ee-9efd-448d-a4de-c3a12cb7a99e/,Phil,,02/02/2021,15.0:35,15.0000000,47.896034000000,-3.966981000000,,La Forêt-Fouesnant - Finistère,36288,observation-b71e10ee-9efd-448d-a4de-c3a12cb7a99e,https://biolit.fr/observations/observation-b71e10ee-9efd-448d-a4de-c3a12cb7a99e/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20210202_153446.jpg,,TRUE, +N1,58951,sortie-b71e10ee-9efd-448d-a4de-c3a12cb7a99e,https://biolit.fr/sorties/sortie-b71e10ee-9efd-448d-a4de-c3a12cb7a99e/,Phil,,02/02/2021,15.0:35,15.0000000,47.896034000000,-3.966981000000,,La Forêt-Fouesnant - Finistère,36290,observation-b71e10ee-9efd-448d-a4de-c3a12cb7a99e-2,https://biolit.fr/observations/observation-b71e10ee-9efd-448d-a4de-c3a12cb7a99e-2/,Dosinia exoleta,Dosinie radiée,,https://biolit.fr/wp-content/uploads/2023/07/20210202_153636.jpg,,TRUE, +N1,58951,sortie-b71e10ee-9efd-448d-a4de-c3a12cb7a99e,https://biolit.fr/sorties/sortie-b71e10ee-9efd-448d-a4de-c3a12cb7a99e/,Phil,,02/02/2021,15.0:35,15.0000000,47.896034000000,-3.966981000000,,La Forêt-Fouesnant - Finistère,36292,observation-b71e10ee-9efd-448d-a4de-c3a12cb7a99e-3,https://biolit.fr/observations/observation-b71e10ee-9efd-448d-a4de-c3a12cb7a99e-3/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/20210202_153616.jpg,,TRUE, +N1,58952,sortie-7a075c74-358d-45c2-8ea8-104846b1fc1b,https://biolit.fr/sorties/sortie-7a075c74-358d-45c2-8ea8-104846b1fc1b/,Phil,,02/11/2021,11.0000000,11.0000000,47.896096000000,-3.968025000000,,La Forêt-Fouesnant - Finistère,36294,observation-7a075c74-358d-45c2-8ea8-104846b1fc1b,https://biolit.fr/observations/observation-7a075c74-358d-45c2-8ea8-104846b1fc1b/,Mya arenaria,Mye des sables,,https://biolit.fr/wp-content/uploads/2023/07/20210211_110004.jpg,,TRUE, +N1,58952,sortie-7a075c74-358d-45c2-8ea8-104846b1fc1b,https://biolit.fr/sorties/sortie-7a075c74-358d-45c2-8ea8-104846b1fc1b/,Phil,,02/11/2021,11.0000000,11.0000000,47.896096000000,-3.968025000000,,La Forêt-Fouesnant - Finistère,36296,observation-7a075c74-358d-45c2-8ea8-104846b1fc1b-2,https://biolit.fr/observations/observation-7a075c74-358d-45c2-8ea8-104846b1fc1b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210211_110238.jpg,,FALSE, +N1,58953,sortie-7f19d8df-738e-4d36-80a9-ccf8f321aea4,https://biolit.fr/sorties/sortie-7f19d8df-738e-4d36-80a9-ccf8f321aea4/,Phil,,5/22/2020 0:00,13.0:35,13.0000000,47.799725000000,-4.181190000000,,Loctudy - Finistère,36298,observation-7f19d8df-738e-4d36-80a9-ccf8f321aea4,https://biolit.fr/observations/observation-7f19d8df-738e-4d36-80a9-ccf8f321aea4/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/20200522_133803.jpg,,TRUE, +N1,58953,sortie-7f19d8df-738e-4d36-80a9-ccf8f321aea4,https://biolit.fr/sorties/sortie-7f19d8df-738e-4d36-80a9-ccf8f321aea4/,Phil,,5/22/2020 0:00,13.0:35,13.0000000,47.799725000000,-4.181190000000,,Loctudy - Finistère,36302,observation-7f19d8df-738e-4d36-80a9-ccf8f321aea4-3,https://biolit.fr/observations/observation-7f19d8df-738e-4d36-80a9-ccf8f321aea4-3/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/20200522_133729.jpg,,TRUE, +N1,58953,sortie-7f19d8df-738e-4d36-80a9-ccf8f321aea4,https://biolit.fr/sorties/sortie-7f19d8df-738e-4d36-80a9-ccf8f321aea4/,Phil,,5/22/2020 0:00,13.0:35,13.0000000,47.799725000000,-4.181190000000,,Loctudy - Finistère,36304,observation-7f19d8df-738e-4d36-80a9-ccf8f321aea4-4,https://biolit.fr/observations/observation-7f19d8df-738e-4d36-80a9-ccf8f321aea4-4/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/20200522_133549.jpg,,TRUE, +N1,58953,sortie-7f19d8df-738e-4d36-80a9-ccf8f321aea4,https://biolit.fr/sorties/sortie-7f19d8df-738e-4d36-80a9-ccf8f321aea4/,Phil,,5/22/2020 0:00,13.0:35,13.0000000,47.799725000000,-4.181190000000,,Loctudy - Finistère,36306,observation-7f19d8df-738e-4d36-80a9-ccf8f321aea4-5,https://biolit.fr/observations/observation-7f19d8df-738e-4d36-80a9-ccf8f321aea4-5/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/20200522_133519.jpg,,TRUE, +N1,58954,sortie-ba6d3665-dd76-4ae7-b686-dc8b43239203,https://biolit.fr/sorties/sortie-ba6d3665-dd76-4ae7-b686-dc8b43239203/,Phil,,02/07/2021,10.0:35,10.0000000,47.854135000000,-3.981016000000,,Fouesnant - Finistère,36308,observation-ba6d3665-dd76-4ae7-b686-dc8b43239203,https://biolit.fr/observations/observation-ba6d3665-dd76-4ae7-b686-dc8b43239203/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20210207_103855.jpg,,TRUE, +N1,58954,sortie-ba6d3665-dd76-4ae7-b686-dc8b43239203,https://biolit.fr/sorties/sortie-ba6d3665-dd76-4ae7-b686-dc8b43239203/,Phil,,02/07/2021,10.0:35,10.0000000,47.854135000000,-3.981016000000,,Fouesnant - Finistère,36310,observation-ba6d3665-dd76-4ae7-b686-dc8b43239203-2,https://biolit.fr/observations/observation-ba6d3665-dd76-4ae7-b686-dc8b43239203-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210207_104106.jpg,,FALSE, +N1,58955,sortie-19900bda-92a7-4b15-8660-86b472008f0f,https://biolit.fr/sorties/sortie-19900bda-92a7-4b15-8660-86b472008f0f/,Roman,,02/06/2021,16.0000000,17.0000000,47.70803700000,-3.343568000000,,Port-Louis,36312,observation-19900bda-92a7-4b15-8660-86b472008f0f,https://biolit.fr/observations/observation-19900bda-92a7-4b15-8660-86b472008f0f/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_7.PNG,,TRUE, +N1,58955,sortie-19900bda-92a7-4b15-8660-86b472008f0f,https://biolit.fr/sorties/sortie-19900bda-92a7-4b15-8660-86b472008f0f/,Roman,,02/06/2021,16.0000000,17.0000000,47.70803700000,-3.343568000000,,Port-Louis,36314,observation-19900bda-92a7-4b15-8660-86b472008f0f-2,https://biolit.fr/observations/observation-19900bda-92a7-4b15-8660-86b472008f0f-2/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_1.PNG,,TRUE, +N1,58955,sortie-19900bda-92a7-4b15-8660-86b472008f0f,https://biolit.fr/sorties/sortie-19900bda-92a7-4b15-8660-86b472008f0f/,Roman,,02/06/2021,16.0000000,17.0000000,47.70803700000,-3.343568000000,,Port-Louis,36316,observation-19900bda-92a7-4b15-8660-86b472008f0f-3,https://biolit.fr/observations/observation-19900bda-92a7-4b15-8660-86b472008f0f-3/,Ensis siliqua,Couteau-silique,,https://biolit.fr/wp-content/uploads/2023/07/Ensis siliqua_0.PNG,,TRUE, +N1,58955,sortie-19900bda-92a7-4b15-8660-86b472008f0f,https://biolit.fr/sorties/sortie-19900bda-92a7-4b15-8660-86b472008f0f/,Roman,,02/06/2021,16.0000000,17.0000000,47.70803700000,-3.343568000000,,Port-Louis,36318,observation-19900bda-92a7-4b15-8660-86b472008f0f-4,https://biolit.fr/observations/observation-19900bda-92a7-4b15-8660-86b472008f0f-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_0.PNG,,TRUE, +N1,58955,sortie-19900bda-92a7-4b15-8660-86b472008f0f,https://biolit.fr/sorties/sortie-19900bda-92a7-4b15-8660-86b472008f0f/,Roman,,02/06/2021,16.0000000,17.0000000,47.70803700000,-3.343568000000,,Port-Louis,36320,observation-19900bda-92a7-4b15-8660-86b472008f0f-5,https://biolit.fr/observations/observation-19900bda-92a7-4b15-8660-86b472008f0f-5/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nassarius reticulatus_0.PNG,,TRUE, +N1,58955,sortie-19900bda-92a7-4b15-8660-86b472008f0f,https://biolit.fr/sorties/sortie-19900bda-92a7-4b15-8660-86b472008f0f/,Roman,,02/06/2021,16.0000000,17.0000000,47.70803700000,-3.343568000000,,Port-Louis,36322,observation-19900bda-92a7-4b15-8660-86b472008f0f-6,https://biolit.fr/observations/observation-19900bda-92a7-4b15-8660-86b472008f0f-6/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/07/Patella vulgata-scaled.jpg,,TRUE, +N1,58955,sortie-19900bda-92a7-4b15-8660-86b472008f0f,https://biolit.fr/sorties/sortie-19900bda-92a7-4b15-8660-86b472008f0f/,Roman,,02/06/2021,16.0000000,17.0000000,47.70803700000,-3.343568000000,,Port-Louis,36323,observation-19900bda-92a7-4b15-8660-86b472008f0f-7,https://biolit.fr/observations/observation-19900bda-92a7-4b15-8660-86b472008f0f-7/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus_2.PNG,,TRUE, +N1,58955,sortie-19900bda-92a7-4b15-8660-86b472008f0f,https://biolit.fr/sorties/sortie-19900bda-92a7-4b15-8660-86b472008f0f/,Roman,,02/06/2021,16.0000000,17.0000000,47.70803700000,-3.343568000000,,Port-Louis,36325,observation-19900bda-92a7-4b15-8660-86b472008f0f-8,https://biolit.fr/observations/observation-19900bda-92a7-4b15-8660-86b472008f0f-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/ponte de polychète_2.PNG,,FALSE, +N1,58955,sortie-19900bda-92a7-4b15-8660-86b472008f0f,https://biolit.fr/sorties/sortie-19900bda-92a7-4b15-8660-86b472008f0f/,Roman,,02/06/2021,16.0000000,17.0000000,47.70803700000,-3.343568000000,,Port-Louis,36327,observation-19900bda-92a7-4b15-8660-86b472008f0f-9,https://biolit.fr/observations/observation-19900bda-92a7-4b15-8660-86b472008f0f-9/,Scrobicularia plana,Scrobiculaire,,https://biolit.fr/wp-content/uploads/2023/07/Scrobicularia plana.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36329,observation-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_3.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36331,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-2,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea_4.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36333,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-3,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/anthopleura sp pe.PNG,,FALSE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36335,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-4,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-4/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_9.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36337,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-5,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-5/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/Blennie sp_0.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36339,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-6,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-6/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_2.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36341,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-7,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-7/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/Branta bernicla_0.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36343,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-8,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-8/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/cancer pagurus_4.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36344,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-9,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-9/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_6.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36346,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-10,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-10/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/cereus ou sagartia.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36348,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-11,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-11/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Crassostrea gigas_0.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36350,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-12,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 1_2.PNG,,FALSE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36352,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-13,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 2_3.PNG,,FALSE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36354,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-14,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona sp.PNG,,FALSE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36356,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-15,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/marsouin.PNG,,FALSE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36358,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-16,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-16/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_6.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36360,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-17,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-17/,Tritia incrassata,Nasse épaisse,,https://biolit.fr/wp-content/uploads/2023/07/Nassarius incrassatus et pisidia longicornis.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36362,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-18,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-18/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus ponte.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36364,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-19,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-19/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_7.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36366,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-20,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-20/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Paracentrotus lividus_3.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36368,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-21,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-21/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus_1.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36370,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-22,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-22/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_4.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36372,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-23,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-23/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_7.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36374,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-24,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/Urticina eques 1.PNG,,FALSE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36376,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-25,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/urticina eques.PNG,,FALSE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36378,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-26,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-26/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa_2.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36380,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-27,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-27/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_4.PNG,,TRUE, +N1,58957,sortie-71b1ab59-c470-46a2-b77c-826cbfdf29d7,https://biolit.fr/sorties/sortie-71b1ab59-c470-46a2-b77c-826cbfdf29d7/,Anjelika,,02/05/2021,14.0000000,16.0000000,43.31,5.36,,Vieux port de Marseille ,36388,observation-71b1ab59-c470-46a2-b77c-826cbfdf29d7-4,https://biolit.fr/observations/observation-71b1ab59-c470-46a2-b77c-826cbfdf29d7-4/,,,,https://biolit.fr/wp-content/uploads/2021/02/IMG_3174-scaled-1-scaled.jpg | https://biolit.fr/wp-content/uploads/2021/02/IMG_3177-scaled-1-scaled.jpg | https://biolit.fr/wp-content/uploads/2021/02/IMG_3189_0-scaled-1-scaled.jpg | https://biolit.fr/wp-content/uploads/2023/07/IMG_3190-scaled.jpg,,FALSE, +N1,58958,sortie-26fb5b33-21ac-44bc-8459-1a0e3b24ec24,https://biolit.fr/sorties/sortie-26fb5b33-21ac-44bc-8459-1a0e3b24ec24/,Phil,,5/22/2020 0:00,13.0000000,13.0000000,47.797010000000,-4.179740000000,,Loctudy - Finistère,36392,observation-26fb5b33-21ac-44bc-8459-1a0e3b24ec24,https://biolit.fr/observations/observation-26fb5b33-21ac-44bc-8459-1a0e3b24ec24/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20200522_133501.jpg,,TRUE, +N1,58958,sortie-26fb5b33-21ac-44bc-8459-1a0e3b24ec24,https://biolit.fr/sorties/sortie-26fb5b33-21ac-44bc-8459-1a0e3b24ec24/,Phil,,5/22/2020 0:00,13.0000000,13.0000000,47.797010000000,-4.179740000000,,Loctudy - Finistère,36394,observation-26fb5b33-21ac-44bc-8459-1a0e3b24ec24-2,https://biolit.fr/observations/observation-26fb5b33-21ac-44bc-8459-1a0e3b24ec24-2/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20200522_133344.jpg,,TRUE, +N1,58958,sortie-26fb5b33-21ac-44bc-8459-1a0e3b24ec24,https://biolit.fr/sorties/sortie-26fb5b33-21ac-44bc-8459-1a0e3b24ec24/,Phil,,5/22/2020 0:00,13.0000000,13.0000000,47.797010000000,-4.179740000000,,Loctudy - Finistère,36396,observation-26fb5b33-21ac-44bc-8459-1a0e3b24ec24-3,https://biolit.fr/observations/observation-26fb5b33-21ac-44bc-8459-1a0e3b24ec24-3/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20200522_133419.jpg,,TRUE, +N1,58958,sortie-26fb5b33-21ac-44bc-8459-1a0e3b24ec24,https://biolit.fr/sorties/sortie-26fb5b33-21ac-44bc-8459-1a0e3b24ec24/,Phil,,5/22/2020 0:00,13.0000000,13.0000000,47.797010000000,-4.179740000000,,Loctudy - Finistère,36398,observation-26fb5b33-21ac-44bc-8459-1a0e3b24ec24-4,https://biolit.fr/observations/observation-26fb5b33-21ac-44bc-8459-1a0e3b24ec24-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_133404.jpg,,FALSE, +N1,58958,sortie-26fb5b33-21ac-44bc-8459-1a0e3b24ec24,https://biolit.fr/sorties/sortie-26fb5b33-21ac-44bc-8459-1a0e3b24ec24/,Phil,,5/22/2020 0:00,13.0000000,13.0000000,47.797010000000,-4.179740000000,,Loctudy - Finistère,36400,observation-26fb5b33-21ac-44bc-8459-1a0e3b24ec24-5,https://biolit.fr/observations/observation-26fb5b33-21ac-44bc-8459-1a0e3b24ec24-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_133410.jpg,,FALSE, +N1,58958,sortie-26fb5b33-21ac-44bc-8459-1a0e3b24ec24,https://biolit.fr/sorties/sortie-26fb5b33-21ac-44bc-8459-1a0e3b24ec24/,Phil,,5/22/2020 0:00,13.0000000,13.0000000,47.797010000000,-4.179740000000,,Loctudy - Finistère,36402,observation-26fb5b33-21ac-44bc-8459-1a0e3b24ec24-6,https://biolit.fr/observations/observation-26fb5b33-21ac-44bc-8459-1a0e3b24ec24-6/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/20200522_133455.jpg,,TRUE, +N1,58959,sortie-93f8ab25-a879-44b2-87a2-cf16d282292f,https://biolit.fr/sorties/sortie-93f8ab25-a879-44b2-87a2-cf16d282292f/,Phil,,02/02/2021,15.0000000,15.0:35,47.895534000000,-3.966708000000,,La Forêt-Fouesnant - Finistère,36404,observation-93f8ab25-a879-44b2-87a2-cf16d282292f,https://biolit.fr/observations/observation-93f8ab25-a879-44b2-87a2-cf16d282292f/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20210202_153148.jpg,,TRUE, +N1,58959,sortie-93f8ab25-a879-44b2-87a2-cf16d282292f,https://biolit.fr/sorties/sortie-93f8ab25-a879-44b2-87a2-cf16d282292f/,Phil,,02/02/2021,15.0000000,15.0:35,47.895534000000,-3.966708000000,,La Forêt-Fouesnant - Finistère,36406,observation-93f8ab25-a879-44b2-87a2-cf16d282292f-2,https://biolit.fr/observations/observation-93f8ab25-a879-44b2-87a2-cf16d282292f-2/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20210202_153313.jpg,,TRUE, +N1,58959,sortie-93f8ab25-a879-44b2-87a2-cf16d282292f,https://biolit.fr/sorties/sortie-93f8ab25-a879-44b2-87a2-cf16d282292f/,Phil,,02/02/2021,15.0000000,15.0:35,47.895534000000,-3.966708000000,,La Forêt-Fouesnant - Finistère,36408,observation-93f8ab25-a879-44b2-87a2-cf16d282292f-3,https://biolit.fr/observations/observation-93f8ab25-a879-44b2-87a2-cf16d282292f-3/,Callista chione,Vernis,,https://biolit.fr/wp-content/uploads/2023/07/20210202_153230.jpg,,TRUE, +N1,58959,sortie-93f8ab25-a879-44b2-87a2-cf16d282292f,https://biolit.fr/sorties/sortie-93f8ab25-a879-44b2-87a2-cf16d282292f/,Phil,,02/02/2021,15.0000000,15.0:35,47.895534000000,-3.966708000000,,La Forêt-Fouesnant - Finistère,36410,observation-93f8ab25-a879-44b2-87a2-cf16d282292f-4,https://biolit.fr/observations/observation-93f8ab25-a879-44b2-87a2-cf16d282292f-4/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20210202_153354.jpg,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36412,observation-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita_1.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36414,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-2,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_2.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36416,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-3,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis pe.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36418,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-4,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-4/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asteria rubens_0.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36420,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-5,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_8.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36422,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-6,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-6/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/Blennie sp.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36424,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-7,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-7/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_1.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36426,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-8,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-8/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_3.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36428,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-9,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-9/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_5.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36430,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-10,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Colus jeffreysianus.PNG,,FALSE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36432,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-11,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-11/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/doris pseudoargus pe.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36433,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-12,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp-scaled.jpg,,FALSE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36434,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-13,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-13/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_1.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36436,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-14,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-14/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea-scaled.jpg,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36437,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-15,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-15/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina obtusata.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36439,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-16,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-16/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_5.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36441,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-17,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-17/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis ophidion pe.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36443,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-18,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-18/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/nucella lapillus_6.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36444,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-19,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-19/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebra erinaceus.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36446,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-20,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-20/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/Perforatus perforatus.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36448,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-21,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-21/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ponte de Nucella lapillus.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36450,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-22,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-22/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_3.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36452,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-23,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-23/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_6.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36454,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-24,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-24/,Hediste diversicolor,Néréis multicolore,,https://biolit.fr/wp-content/uploads/2023/07/Ver sp_1.PNG,,TRUE, +N1,58961,sortie-65b6002b-8566-438a-b0d0-f7f7b5cdaa34,https://biolit.fr/sorties/sortie-65b6002b-8566-438a-b0d0-f7f7b5cdaa34/,Phil,,5/22/2020 0:00,13.0:15,13.0000000,47.800352000000,-4.18097600000,,Loctudy - Finistère,36455,observation-65b6002b-8566-438a-b0d0-f7f7b5cdaa34,https://biolit.fr/observations/observation-65b6002b-8566-438a-b0d0-f7f7b5cdaa34/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20200522_132804.jpg,,TRUE, +N1,58961,sortie-65b6002b-8566-438a-b0d0-f7f7b5cdaa34,https://biolit.fr/sorties/sortie-65b6002b-8566-438a-b0d0-f7f7b5cdaa34/,Phil,,5/22/2020 0:00,13.0:15,13.0000000,47.800352000000,-4.18097600000,,Loctudy - Finistère,36457,observation-65b6002b-8566-438a-b0d0-f7f7b5cdaa34-2,https://biolit.fr/observations/observation-65b6002b-8566-438a-b0d0-f7f7b5cdaa34-2/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20200522_132840.jpg,,TRUE, +N1,58961,sortie-65b6002b-8566-438a-b0d0-f7f7b5cdaa34,https://biolit.fr/sorties/sortie-65b6002b-8566-438a-b0d0-f7f7b5cdaa34/,Phil,,5/22/2020 0:00,13.0:15,13.0000000,47.800352000000,-4.18097600000,,Loctudy - Finistère,36459,observation-65b6002b-8566-438a-b0d0-f7f7b5cdaa34-3,https://biolit.fr/observations/observation-65b6002b-8566-438a-b0d0-f7f7b5cdaa34-3/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20200522_132920.jpg,,TRUE, +N1,58961,sortie-65b6002b-8566-438a-b0d0-f7f7b5cdaa34,https://biolit.fr/sorties/sortie-65b6002b-8566-438a-b0d0-f7f7b5cdaa34/,Phil,,5/22/2020 0:00,13.0:15,13.0000000,47.800352000000,-4.18097600000,,Loctudy - Finistère,36461,observation-65b6002b-8566-438a-b0d0-f7f7b5cdaa34-4,https://biolit.fr/observations/observation-65b6002b-8566-438a-b0d0-f7f7b5cdaa34-4/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20200522_133007.jpg,,TRUE, +N1,58962,sortie-d0e203b9-c0d1-4fb3-887a-446d5efa50ab,https://biolit.fr/sorties/sortie-d0e203b9-c0d1-4fb3-887a-446d5efa50ab/,LCD,,1/23/2021 0:00,15.0000000,17.0000000,43.103975000000,5.967480000000,,"Chapelle Notre-Dame-du-Cap-Falcon, Toulon",36463,observation-d0e203b9-c0d1-4fb3-887a-446d5efa50ab,https://biolit.fr/observations/observation-d0e203b9-c0d1-4fb3-887a-446d5efa50ab/,,,,https://biolit.fr/wp-content/uploads/2023/07/Parazoanthus axinellae Phorbas tenacior Chondrosia reniformis.JPG,,FALSE, +N1,58962,sortie-d0e203b9-c0d1-4fb3-887a-446d5efa50ab,https://biolit.fr/sorties/sortie-d0e203b9-c0d1-4fb3-887a-446d5efa50ab/,LCD,,1/23/2021 0:00,15.0000000,17.0000000,43.103975000000,5.967480000000,,"Chapelle Notre-Dame-du-Cap-Falcon, Toulon",36465,observation-d0e203b9-c0d1-4fb3-887a-446d5efa50ab-2,https://biolit.fr/observations/observation-d0e203b9-c0d1-4fb3-887a-446d5efa50ab-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Parazoanthus axinellae.JPG,,FALSE, +N1,58962,sortie-d0e203b9-c0d1-4fb3-887a-446d5efa50ab,https://biolit.fr/sorties/sortie-d0e203b9-c0d1-4fb3-887a-446d5efa50ab/,LCD,,1/23/2021 0:00,15.0000000,17.0000000,43.103975000000,5.967480000000,,"Chapelle Notre-Dame-du-Cap-Falcon, Toulon",36467,observation-d0e203b9-c0d1-4fb3-887a-446d5efa50ab-3,https://biolit.fr/observations/observation-d0e203b9-c0d1-4fb3-887a-446d5efa50ab-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Spongia officinalis.JPG,,FALSE, +N1,58962,sortie-d0e203b9-c0d1-4fb3-887a-446d5efa50ab,https://biolit.fr/sorties/sortie-d0e203b9-c0d1-4fb3-887a-446d5efa50ab/,LCD,,1/23/2021 0:00,15.0000000,17.0000000,43.103975000000,5.967480000000,,"Chapelle Notre-Dame-du-Cap-Falcon, Toulon",36469,observation-d0e203b9-c0d1-4fb3-887a-446d5efa50ab-4,https://biolit.fr/observations/observation-d0e203b9-c0d1-4fb3-887a-446d5efa50ab-4/,Apogon imberbis,Apogon,,https://biolit.fr/wp-content/uploads/2023/07/Apogon imberbis.JPG,,TRUE, +N1,58963,sortie-4498ccdb-8bee-471b-845d-468968ca8eaa,https://biolit.fr/sorties/sortie-4498ccdb-8bee-471b-845d-468968ca8eaa/,Phil,,7/26/2020 0:00,16.0:15,16.0:35,47.798132000000,-4.180032000000,,Loctudy - Finistère,36471,observation-4498ccdb-8bee-471b-845d-468968ca8eaa,https://biolit.fr/observations/observation-4498ccdb-8bee-471b-845d-468968ca8eaa/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20200726_162910.jpg,,TRUE, +N1,58963,sortie-4498ccdb-8bee-471b-845d-468968ca8eaa,https://biolit.fr/sorties/sortie-4498ccdb-8bee-471b-845d-468968ca8eaa/,Phil,,7/26/2020 0:00,16.0:15,16.0:35,47.798132000000,-4.180032000000,,Loctudy - Finistère,36473,observation-4498ccdb-8bee-471b-845d-468968ca8eaa-2,https://biolit.fr/observations/observation-4498ccdb-8bee-471b-845d-468968ca8eaa-2/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20200726_162700.jpg,,TRUE, +N1,58963,sortie-4498ccdb-8bee-471b-845d-468968ca8eaa,https://biolit.fr/sorties/sortie-4498ccdb-8bee-471b-845d-468968ca8eaa/,Phil,,7/26/2020 0:00,16.0:15,16.0:35,47.798132000000,-4.180032000000,,Loctudy - Finistère,36475,observation-4498ccdb-8bee-471b-845d-468968ca8eaa-3,https://biolit.fr/observations/observation-4498ccdb-8bee-471b-845d-468968ca8eaa-3/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20200726_162637.jpg,,TRUE, +N1,58963,sortie-4498ccdb-8bee-471b-845d-468968ca8eaa,https://biolit.fr/sorties/sortie-4498ccdb-8bee-471b-845d-468968ca8eaa/,Phil,,7/26/2020 0:00,16.0:15,16.0:35,47.798132000000,-4.180032000000,,Loctudy - Finistère,36477,observation-4498ccdb-8bee-471b-845d-468968ca8eaa-4,https://biolit.fr/observations/observation-4498ccdb-8bee-471b-845d-468968ca8eaa-4/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200726_163415.jpg,,TRUE, +N1,58963,sortie-4498ccdb-8bee-471b-845d-468968ca8eaa,https://biolit.fr/sorties/sortie-4498ccdb-8bee-471b-845d-468968ca8eaa/,Phil,,7/26/2020 0:00,16.0:15,16.0:35,47.798132000000,-4.180032000000,,Loctudy - Finistère,36479,observation-4498ccdb-8bee-471b-845d-468968ca8eaa-5,https://biolit.fr/observations/observation-4498ccdb-8bee-471b-845d-468968ca8eaa-5/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20200726_163930.jpg,,TRUE, +N1,58964,sortie-a71fb58a-6297-425b-8227-8770e4aba9ad,https://biolit.fr/sorties/sortie-a71fb58a-6297-425b-8227-8770e4aba9ad/,Phil,,5/22/2020 0:00,13.0000000,13.0000000,47.800020000000,-4.180963000000,,Loctudy - Finistère,36481,observation-a71fb58a-6297-425b-8227-8770e4aba9ad,https://biolit.fr/observations/observation-a71fb58a-6297-425b-8227-8770e4aba9ad/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200522_132644.jpg,,TRUE, +N1,58964,sortie-a71fb58a-6297-425b-8227-8770e4aba9ad,https://biolit.fr/sorties/sortie-a71fb58a-6297-425b-8227-8770e4aba9ad/,Phil,,5/22/2020 0:00,13.0000000,13.0000000,47.800020000000,-4.180963000000,,Loctudy - Finistère,36483,observation-a71fb58a-6297-425b-8227-8770e4aba9ad-2,https://biolit.fr/observations/observation-a71fb58a-6297-425b-8227-8770e4aba9ad-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_132627.jpg,,FALSE, +N1,58964,sortie-a71fb58a-6297-425b-8227-8770e4aba9ad,https://biolit.fr/sorties/sortie-a71fb58a-6297-425b-8227-8770e4aba9ad/,Phil,,5/22/2020 0:00,13.0000000,13.0000000,47.800020000000,-4.180963000000,,Loctudy - Finistère,36485,observation-a71fb58a-6297-425b-8227-8770e4aba9ad-3,https://biolit.fr/observations/observation-a71fb58a-6297-425b-8227-8770e4aba9ad-3/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200522_132615.jpg,,TRUE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36487,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,,,,https://biolit.fr/wp-content/uploads/2023/07/139495044_445957766434076_1971277192232257432_n.jpg,,FALSE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36489,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-2,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-2/,Ammophila arenaria,Oyat,,https://biolit.fr/wp-content/uploads/2023/07/139722634_2913616095526334_2327790873469244375_n.jpg,,TRUE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36491,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-3,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-3/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/139770690_787582935445340_5886031011320725878_n.jpg,,TRUE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36493,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-4,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/139389423_490106979057067_2756968141103430650_n.jpg,,FALSE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36495,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-5,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-5/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/139521653_233494608349220_1272910810321620692_n.jpg,,TRUE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36497,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-6,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/139489322_1341433189566760_8921958939805332129_n.jpg,,FALSE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36499,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-7,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/139488729_418763705992420_5143935184930659431_n.jpg,,FALSE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36501,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-8,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/139496032_403220234293840_9131453023536328597_n.jpg,,FALSE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36503,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-9,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/139433608_3651768424858486_8023029805370478381_n.jpg,,FALSE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36505,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-10,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/139471697_2511385565821796_8298799480002607680_n.jpg,,FALSE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36507,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-11,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/139500286_454228392259628_9007399627640841517_n.jpg,,FALSE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36509,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-12,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/139824693_3851497244910222_5285225632336828436_n.jpg,,FALSE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36511,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-13,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/140306075_3500175916777972_8093638385389312580_n.jpg,,FALSE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36513,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-14,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/139399941_914970152376208_8933036482441773916_n.jpg,,FALSE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36515,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-15,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/139532595_241540477596037_4999259174173404059_n.jpg,,FALSE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36517,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-16,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/139599141_745280729696682_7652244480097880426_n.jpg,,FALSE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36521,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-18,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/139451126_2914004262257765_8219708979817677096_n.jpg,,FALSE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36529,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-22,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-22/,Beta vulgaris subsp. maritima,Betterave maritime,,https://biolit.fr/wp-content/uploads/2023/07/139452345_166558128568183_1600179492505329325_n.jpg,,TRUE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36531,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-23,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-23/,Ulex europaeus,Ajonc commun,,https://biolit.fr/wp-content/uploads/2023/07/139537939_729949667945359_1533583870383570255_n.jpg,,TRUE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36533,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-24,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/139537939_796885704242077_4029875322068029793_n.jpg,,FALSE, +N1,58966,sortie-e22868f3-3278-422b-b267-7132896ae0af,https://biolit.fr/sorties/sortie-e22868f3-3278-422b-b267-7132896ae0af/,Pascalulu,,1/16/2021 0:00,10.0000000,11.0:45,43.326615000000,3.566533000000,,Plage de Robinson,36535,observation-e22868f3-3278-422b-b267-7132896ae0af,https://biolit.fr/observations/observation-e22868f3-3278-422b-b267-7132896ae0af/,,,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210116_094558556~2-scaled.jpg,,FALSE, +N1,58966,sortie-e22868f3-3278-422b-b267-7132896ae0af,https://biolit.fr/sorties/sortie-e22868f3-3278-422b-b267-7132896ae0af/,Pascalulu,,1/16/2021 0:00,10.0000000,11.0:45,43.326615000000,3.566533000000,,Plage de Robinson,36537,observation-e22868f3-3278-422b-b267-7132896ae0af-2,https://biolit.fr/observations/observation-e22868f3-3278-422b-b267-7132896ae0af-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210116_094352549-scaled.jpg,,FALSE, +N1,58966,sortie-e22868f3-3278-422b-b267-7132896ae0af,https://biolit.fr/sorties/sortie-e22868f3-3278-422b-b267-7132896ae0af/,Pascalulu,,1/16/2021 0:00,10.0000000,11.0:45,43.326615000000,3.566533000000,,Plage de Robinson,36539,observation-e22868f3-3278-422b-b267-7132896ae0af-3,https://biolit.fr/observations/observation-e22868f3-3278-422b-b267-7132896ae0af-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210116_094445695-scaled.jpg,,FALSE, +N1,58966,sortie-e22868f3-3278-422b-b267-7132896ae0af,https://biolit.fr/sorties/sortie-e22868f3-3278-422b-b267-7132896ae0af/,Pascalulu,,1/16/2021 0:00,10.0000000,11.0:45,43.326615000000,3.566533000000,,Plage de Robinson,36541,observation-e22868f3-3278-422b-b267-7132896ae0af-4,https://biolit.fr/observations/observation-e22868f3-3278-422b-b267-7132896ae0af-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210116_094504923-scaled.jpg,,FALSE, +N1,58966,sortie-e22868f3-3278-422b-b267-7132896ae0af,https://biolit.fr/sorties/sortie-e22868f3-3278-422b-b267-7132896ae0af/,Pascalulu,,1/16/2021 0:00,10.0000000,11.0:45,43.326615000000,3.566533000000,,Plage de Robinson,36543,observation-e22868f3-3278-422b-b267-7132896ae0af-5,https://biolit.fr/observations/observation-e22868f3-3278-422b-b267-7132896ae0af-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210116_094519184-scaled.jpg,,FALSE, +N1,58966,sortie-e22868f3-3278-422b-b267-7132896ae0af,https://biolit.fr/sorties/sortie-e22868f3-3278-422b-b267-7132896ae0af/,Pascalulu,,1/16/2021 0:00,10.0000000,11.0:45,43.326615000000,3.566533000000,,Plage de Robinson,36545,observation-e22868f3-3278-422b-b267-7132896ae0af-6,https://biolit.fr/observations/observation-e22868f3-3278-422b-b267-7132896ae0af-6/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210116_094728505-scaled.jpg,,TRUE, +N1,58966,sortie-e22868f3-3278-422b-b267-7132896ae0af,https://biolit.fr/sorties/sortie-e22868f3-3278-422b-b267-7132896ae0af/,Pascalulu,,1/16/2021 0:00,10.0000000,11.0:45,43.326615000000,3.566533000000,,Plage de Robinson,36547,observation-e22868f3-3278-422b-b267-7132896ae0af-7,https://biolit.fr/observations/observation-e22868f3-3278-422b-b267-7132896ae0af-7/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210116_100516009-scaled.jpg,,TRUE, +N1,58966,sortie-e22868f3-3278-422b-b267-7132896ae0af,https://biolit.fr/sorties/sortie-e22868f3-3278-422b-b267-7132896ae0af/,Pascalulu,,1/16/2021 0:00,10.0000000,11.0:45,43.326615000000,3.566533000000,,Plage de Robinson,36549,observation-e22868f3-3278-422b-b267-7132896ae0af-8,https://biolit.fr/observations/observation-e22868f3-3278-422b-b267-7132896ae0af-8/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210116_100547119-scaled.jpg,,TRUE, +N1,58967,sortie-e2dc0dbb-b817-4915-9872-f3f87f3caf90,https://biolit.fr/sorties/sortie-e2dc0dbb-b817-4915-9872-f3f87f3caf90/,Phil,,3/13/2020 0:00,14.0:35,15.0000000,47.799206000000,-4.179766000000,,Loctudy - Finistère,36551,observation-e2dc0dbb-b817-4915-9872-f3f87f3caf90,https://biolit.fr/observations/observation-e2dc0dbb-b817-4915-9872-f3f87f3caf90/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/20200313_143642.jpg,,TRUE, +N1,58967,sortie-e2dc0dbb-b817-4915-9872-f3f87f3caf90,https://biolit.fr/sorties/sortie-e2dc0dbb-b817-4915-9872-f3f87f3caf90/,Phil,,3/13/2020 0:00,14.0:35,15.0000000,47.799206000000,-4.179766000000,,Loctudy - Finistère,36553,observation-e2dc0dbb-b817-4915-9872-f3f87f3caf90-2,https://biolit.fr/observations/observation-e2dc0dbb-b817-4915-9872-f3f87f3caf90-2/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20200313_150413.jpg,,TRUE, +N1,58967,sortie-e2dc0dbb-b817-4915-9872-f3f87f3caf90,https://biolit.fr/sorties/sortie-e2dc0dbb-b817-4915-9872-f3f87f3caf90/,Phil,,3/13/2020 0:00,14.0:35,15.0000000,47.799206000000,-4.179766000000,,Loctudy - Finistère,36555,observation-e2dc0dbb-b817-4915-9872-f3f87f3caf90-3,https://biolit.fr/observations/observation-e2dc0dbb-b817-4915-9872-f3f87f3caf90-3/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200313_150114.jpg,,TRUE, +N1,58967,sortie-e2dc0dbb-b817-4915-9872-f3f87f3caf90,https://biolit.fr/sorties/sortie-e2dc0dbb-b817-4915-9872-f3f87f3caf90/,Phil,,3/13/2020 0:00,14.0:35,15.0000000,47.799206000000,-4.179766000000,,Loctudy - Finistère,36557,observation-e2dc0dbb-b817-4915-9872-f3f87f3caf90-4,https://biolit.fr/observations/observation-e2dc0dbb-b817-4915-9872-f3f87f3caf90-4/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/20200313_150026.jpg,,TRUE, +N1,58967,sortie-e2dc0dbb-b817-4915-9872-f3f87f3caf90,https://biolit.fr/sorties/sortie-e2dc0dbb-b817-4915-9872-f3f87f3caf90/,Phil,,3/13/2020 0:00,14.0:35,15.0000000,47.799206000000,-4.179766000000,,Loctudy - Finistère,36559,observation-e2dc0dbb-b817-4915-9872-f3f87f3caf90-5,https://biolit.fr/observations/observation-e2dc0dbb-b817-4915-9872-f3f87f3caf90-5/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200313_150020.jpg,,TRUE, +N1,58967,sortie-e2dc0dbb-b817-4915-9872-f3f87f3caf90,https://biolit.fr/sorties/sortie-e2dc0dbb-b817-4915-9872-f3f87f3caf90/,Phil,,3/13/2020 0:00,14.0:35,15.0000000,47.799206000000,-4.179766000000,,Loctudy - Finistère,36561,observation-e2dc0dbb-b817-4915-9872-f3f87f3caf90-6,https://biolit.fr/observations/observation-e2dc0dbb-b817-4915-9872-f3f87f3caf90-6/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200313_145842.jpg,,TRUE, +N1,58968,sortie-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955,https://biolit.fr/sorties/sortie-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955/,Phil,,7/26/2020 0:00,16.0:15,16.0:25,47.800363000000,-4.180727000000,,Loctudy - Finistère,36563,observation-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955,https://biolit.fr/observations/observation-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/20200726_162413.jpg,,TRUE, +N1,58968,sortie-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955,https://biolit.fr/sorties/sortie-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955/,Phil,,7/26/2020 0:00,16.0:15,16.0:25,47.800363000000,-4.180727000000,,Loctudy - Finistère,36565,observation-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955-2,https://biolit.fr/observations/observation-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955-2/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/20200726_162338.jpg,,TRUE, +N1,58968,sortie-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955,https://biolit.fr/sorties/sortie-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955/,Phil,,7/26/2020 0:00,16.0:15,16.0:25,47.800363000000,-4.180727000000,,Loctudy - Finistère,36567,observation-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955-3,https://biolit.fr/observations/observation-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955-3/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/20200726_162325.jpg,,TRUE, +N1,58968,sortie-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955,https://biolit.fr/sorties/sortie-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955/,Phil,,7/26/2020 0:00,16.0:15,16.0:25,47.800363000000,-4.180727000000,,Loctudy - Finistère,36571,observation-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955-5,https://biolit.fr/observations/observation-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955-5/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/20200726_162445.jpg,,TRUE, +N1,58968,sortie-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955,https://biolit.fr/sorties/sortie-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955/,Phil,,7/26/2020 0:00,16.0:15,16.0:25,47.800363000000,-4.180727000000,,Loctudy - Finistère,36573,observation-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955-6,https://biolit.fr/observations/observation-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955-6/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/20200726_162458.jpg,,FALSE, +N1,58969,sortie-2cb78c02-6614-42b8-81d3-2936dc697aca,https://biolit.fr/sorties/sortie-2cb78c02-6614-42b8-81d3-2936dc697aca/,Massadiver,,3/13/2016 0:00,15.0000000,15.0:25,48.358942000000,-4.554964000000,,Sainte Anne du Portzic,36575,observation-2cb78c02-6614-42b8-81d3-2936dc697aca,https://biolit.fr/observations/observation-2cb78c02-6614-42b8-81d3-2936dc697aca/,,,,https://biolit.fr/wp-content/uploads/2023/07/Idotee_image1200.png,,FALSE, +N1,58970,sortie-faa04b11-b75b-41ea-8d39-6a0effbc83b9,https://biolit.fr/sorties/sortie-faa04b11-b75b-41ea-8d39-6a0effbc83b9/,Phil,,01/07/2021,16.0000000,16.0000000,47.799041000000,-4.212448000000,,Plobannalec-Lesconil - Finistère,36577,observation-faa04b11-b75b-41ea-8d39-6a0effbc83b9,https://biolit.fr/observations/observation-faa04b11-b75b-41ea-8d39-6a0effbc83b9/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/20210107_161804.jpg,,TRUE, +N1,58970,sortie-faa04b11-b75b-41ea-8d39-6a0effbc83b9,https://biolit.fr/sorties/sortie-faa04b11-b75b-41ea-8d39-6a0effbc83b9/,Phil,,01/07/2021,16.0000000,16.0000000,47.799041000000,-4.212448000000,,Plobannalec-Lesconil - Finistère,36579,observation-faa04b11-b75b-41ea-8d39-6a0effbc83b9-2,https://biolit.fr/observations/observation-faa04b11-b75b-41ea-8d39-6a0effbc83b9-2/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/20210107_161822.jpg,,TRUE, +N1,58970,sortie-faa04b11-b75b-41ea-8d39-6a0effbc83b9,https://biolit.fr/sorties/sortie-faa04b11-b75b-41ea-8d39-6a0effbc83b9/,Phil,,01/07/2021,16.0000000,16.0000000,47.799041000000,-4.212448000000,,Plobannalec-Lesconil - Finistère,36581,observation-faa04b11-b75b-41ea-8d39-6a0effbc83b9-3,https://biolit.fr/observations/observation-faa04b11-b75b-41ea-8d39-6a0effbc83b9-3/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/20210107_161837.jpg,,TRUE, +N1,58970,sortie-faa04b11-b75b-41ea-8d39-6a0effbc83b9,https://biolit.fr/sorties/sortie-faa04b11-b75b-41ea-8d39-6a0effbc83b9/,Phil,,01/07/2021,16.0000000,16.0000000,47.799041000000,-4.212448000000,,Plobannalec-Lesconil - Finistère,36583,observation-faa04b11-b75b-41ea-8d39-6a0effbc83b9-4,https://biolit.fr/observations/observation-faa04b11-b75b-41ea-8d39-6a0effbc83b9-4/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/2023/07/20210107_162012.jpg,,TRUE, +N1,58971,sortie-fb7b7f2f-1953-4da8-ba7d-d5614b96d7a7,https://biolit.fr/sorties/sortie-fb7b7f2f-1953-4da8-ba7d-d5614b96d7a7/,Phil,,5/22/2020 0:00,12.0:55,13.0000000,47.797083000000,-4.177680000000,,Loctudy - Finistère,36585,observation-fb7b7f2f-1953-4da8-ba7d-d5614b96d7a7,https://biolit.fr/observations/observation-fb7b7f2f-1953-4da8-ba7d-d5614b96d7a7/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200522_130415.jpg,,TRUE, +N1,58971,sortie-fb7b7f2f-1953-4da8-ba7d-d5614b96d7a7,https://biolit.fr/sorties/sortie-fb7b7f2f-1953-4da8-ba7d-d5614b96d7a7/,Phil,,5/22/2020 0:00,12.0:55,13.0000000,47.797083000000,-4.177680000000,,Loctudy - Finistère,36587,observation-fb7b7f2f-1953-4da8-ba7d-d5614b96d7a7-2,https://biolit.fr/observations/observation-fb7b7f2f-1953-4da8-ba7d-d5614b96d7a7-2/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200522_130423.jpg,,TRUE, +N1,58971,sortie-fb7b7f2f-1953-4da8-ba7d-d5614b96d7a7,https://biolit.fr/sorties/sortie-fb7b7f2f-1953-4da8-ba7d-d5614b96d7a7/,Phil,,5/22/2020 0:00,12.0:55,13.0000000,47.797083000000,-4.177680000000,,Loctudy - Finistère,36591,observation-fb7b7f2f-1953-4da8-ba7d-d5614b96d7a7-4,https://biolit.fr/observations/observation-fb7b7f2f-1953-4da8-ba7d-d5614b96d7a7-4/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200522_132516.jpg,,TRUE, +N1,58972,sortie-5ed921a0-21d8-4743-9c7e-9546f410d99b,https://biolit.fr/sorties/sortie-5ed921a0-21d8-4743-9c7e-9546f410d99b/,Phil,,7/26/2020 0:00,16.0000000,16.0000000,47.798743000000,-4.178967000000,,Loctudy - Finistère,36595,observation-5ed921a0-21d8-4743-9c7e-9546f410d99b,https://biolit.fr/observations/observation-5ed921a0-21d8-4743-9c7e-9546f410d99b/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200726_160806.jpg,,FALSE, +N1,58972,sortie-5ed921a0-21d8-4743-9c7e-9546f410d99b,https://biolit.fr/sorties/sortie-5ed921a0-21d8-4743-9c7e-9546f410d99b/,Phil,,7/26/2020 0:00,16.0000000,16.0000000,47.798743000000,-4.178967000000,,Loctudy - Finistère,36597,observation-5ed921a0-21d8-4743-9c7e-9546f410d99b-2,https://biolit.fr/observations/observation-5ed921a0-21d8-4743-9c7e-9546f410d99b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200726_160826.jpg,,FALSE, +N1,58972,sortie-5ed921a0-21d8-4743-9c7e-9546f410d99b,https://biolit.fr/sorties/sortie-5ed921a0-21d8-4743-9c7e-9546f410d99b/,Phil,,7/26/2020 0:00,16.0000000,16.0000000,47.798743000000,-4.178967000000,,Loctudy - Finistère,36599,observation-5ed921a0-21d8-4743-9c7e-9546f410d99b-3,https://biolit.fr/observations/observation-5ed921a0-21d8-4743-9c7e-9546f410d99b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200726_161935.jpg,,FALSE, +N1,58973,sortie-39044c9e-844d-416e-b07c-578e1b8d0c5b,https://biolit.fr/sorties/sortie-39044c9e-844d-416e-b07c-578e1b8d0c5b/,Phil,,5/22/2020 0:00,12.0:55,13.000005,47.799758000000,-4.178843000000,,Loctudy - Finistère,36603,observation-39044c9e-844d-416e-b07c-578e1b8d0c5b-2,https://biolit.fr/observations/observation-39044c9e-844d-416e-b07c-578e1b8d0c5b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_125225.jpg,,FALSE, +N1,58973,sortie-39044c9e-844d-416e-b07c-578e1b8d0c5b,https://biolit.fr/sorties/sortie-39044c9e-844d-416e-b07c-578e1b8d0c5b/,Phil,,5/22/2020 0:00,12.0:55,13.000005,47.799758000000,-4.178843000000,,Loctudy - Finistère,36605,observation-39044c9e-844d-416e-b07c-578e1b8d0c5b-3,https://biolit.fr/observations/observation-39044c9e-844d-416e-b07c-578e1b8d0c5b-3/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/20200522_125246.jpg,,FALSE, +N1,58973,sortie-39044c9e-844d-416e-b07c-578e1b8d0c5b,https://biolit.fr/sorties/sortie-39044c9e-844d-416e-b07c-578e1b8d0c5b/,Phil,,5/22/2020 0:00,12.0:55,13.000005,47.799758000000,-4.178843000000,,Loctudy - Finistère,36607,observation-39044c9e-844d-416e-b07c-578e1b8d0c5b-4,https://biolit.fr/observations/observation-39044c9e-844d-416e-b07c-578e1b8d0c5b-4/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/20200522_125354.jpg,,TRUE, +N1,58974,sortie-6f1913f8-fe51-4441-a962-c836458c3e3f,https://biolit.fr/sorties/sortie-6f1913f8-fe51-4441-a962-c836458c3e3f/,Phil,,5/22/2020 0:00,12.0000000,13.0000000,47.797217000000,-4.181104000000,,Loctudy - Finistère,36609,observation-6f1913f8-fe51-4441-a962-c836458c3e3f,https://biolit.fr/observations/observation-6f1913f8-fe51-4441-a962-c836458c3e3f/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20200522_125853.jpg,,TRUE, +N1,58974,sortie-6f1913f8-fe51-4441-a962-c836458c3e3f,https://biolit.fr/sorties/sortie-6f1913f8-fe51-4441-a962-c836458c3e3f/,Phil,,5/22/2020 0:00,12.0000000,13.0000000,47.797217000000,-4.181104000000,,Loctudy - Finistère,36611,observation-6f1913f8-fe51-4441-a962-c836458c3e3f-2,https://biolit.fr/observations/observation-6f1913f8-fe51-4441-a962-c836458c3e3f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_125254.jpg,,FALSE, +N1,58974,sortie-6f1913f8-fe51-4441-a962-c836458c3e3f,https://biolit.fr/sorties/sortie-6f1913f8-fe51-4441-a962-c836458c3e3f/,Phil,,5/22/2020 0:00,12.0000000,13.0000000,47.797217000000,-4.181104000000,,Loctudy - Finistère,36613,observation-6f1913f8-fe51-4441-a962-c836458c3e3f-3,https://biolit.fr/observations/observation-6f1913f8-fe51-4441-a962-c836458c3e3f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_125208.jpg,,FALSE, +N1,58974,sortie-6f1913f8-fe51-4441-a962-c836458c3e3f,https://biolit.fr/sorties/sortie-6f1913f8-fe51-4441-a962-c836458c3e3f/,Phil,,5/22/2020 0:00,12.0000000,13.0000000,47.797217000000,-4.181104000000,,Loctudy - Finistère,36615,observation-6f1913f8-fe51-4441-a962-c836458c3e3f-4,https://biolit.fr/observations/observation-6f1913f8-fe51-4441-a962-c836458c3e3f-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_125200.jpg,,FALSE, +N1,58975,sortie-2d990a4c-9926-4b58-92b0-c44ea39a28d0,https://biolit.fr/sorties/sortie-2d990a4c-9926-4b58-92b0-c44ea39a28d0/,Phil,,01/07/2021,16.0000000,16.0:15,47.798456000000,-4.211862000000,,Plobannalec-Lesconil - Finistère,36617,observation-2d990a4c-9926-4b58-92b0-c44ea39a28d0,https://biolit.fr/observations/observation-2d990a4c-9926-4b58-92b0-c44ea39a28d0/,Membranipora membranacea,Membranipore,,https://biolit.fr/wp-content/uploads/2023/07/20210107_161439.jpg,,TRUE, +N1,58975,sortie-2d990a4c-9926-4b58-92b0-c44ea39a28d0,https://biolit.fr/sorties/sortie-2d990a4c-9926-4b58-92b0-c44ea39a28d0/,Phil,,01/07/2021,16.0000000,16.0:15,47.798456000000,-4.211862000000,,Plobannalec-Lesconil - Finistère,36619,observation-2d990a4c-9926-4b58-92b0-c44ea39a28d0-2,https://biolit.fr/observations/observation-2d990a4c-9926-4b58-92b0-c44ea39a28d0-2/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/20210107_161216.jpg,,TRUE, +N1,58976,sortie-e0a4ec9c-27e5-42c2-b43f-a2f48473a1b2,https://biolit.fr/sorties/sortie-e0a4ec9c-27e5-42c2-b43f-a2f48473a1b2/,Phil,,7/26/2020 0:00,15.0000000,16.0000000,47.795937000000,-4.17638400000,,Loctudy - Finistère,36621,observation-e0a4ec9c-27e5-42c2-b43f-a2f48473a1b2,https://biolit.fr/observations/observation-e0a4ec9c-27e5-42c2-b43f-a2f48473a1b2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200726_160601.jpg,,FALSE, +N1,58976,sortie-e0a4ec9c-27e5-42c2-b43f-a2f48473a1b2,https://biolit.fr/sorties/sortie-e0a4ec9c-27e5-42c2-b43f-a2f48473a1b2/,Phil,,7/26/2020 0:00,15.0000000,16.0000000,47.795937000000,-4.17638400000,,Loctudy - Finistère,36623,observation-e0a4ec9c-27e5-42c2-b43f-a2f48473a1b2-2,https://biolit.fr/observations/observation-e0a4ec9c-27e5-42c2-b43f-a2f48473a1b2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200726_160618.jpg,,FALSE, +N1,58976,sortie-e0a4ec9c-27e5-42c2-b43f-a2f48473a1b2,https://biolit.fr/sorties/sortie-e0a4ec9c-27e5-42c2-b43f-a2f48473a1b2/,Phil,,7/26/2020 0:00,15.0000000,16.0000000,47.795937000000,-4.17638400000,,Loctudy - Finistère,36625,observation-e0a4ec9c-27e5-42c2-b43f-a2f48473a1b2-3,https://biolit.fr/observations/observation-e0a4ec9c-27e5-42c2-b43f-a2f48473a1b2-3/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/20200726_160754.jpg,,TRUE, +N1,58976,sortie-e0a4ec9c-27e5-42c2-b43f-a2f48473a1b2,https://biolit.fr/sorties/sortie-e0a4ec9c-27e5-42c2-b43f-a2f48473a1b2/,Phil,,7/26/2020 0:00,15.0000000,16.0000000,47.795937000000,-4.17638400000,,Loctudy - Finistère,36627,observation-e0a4ec9c-27e5-42c2-b43f-a2f48473a1b2-4,https://biolit.fr/observations/observation-e0a4ec9c-27e5-42c2-b43f-a2f48473a1b2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200726_160758.jpg,,FALSE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36629,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/Acanthocardia tuberculata.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36631,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-2,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_1.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36633,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-3,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/anémone sp_2.PNG,,FALSE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36635,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-4,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_3.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36637,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-5,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-5/,Patella pellucida,Helcion,,https://biolit.fr/wp-content/uploads/2023/07/Ansates pelludica_0.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36639,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-6,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-6/,Atelecyclus undecimdentatus,Grand crabe circulaire,,https://biolit.fr/wp-content/uploads/2023/07/Atelecyclus undecimdentatus_0.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36641,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-7,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-7/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/Aulactinia verrucosa_3.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36643,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-8,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-8/,Calidris alba,Bécasseau sanderling,,https://biolit.fr/wp-content/uploads/2023/07/Bécasseau sanderling.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36645,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-9,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-9/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule prédominance en laisse de mer.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36647,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-10,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-10/,Donacilla cornea,Donacilla cornée,,https://biolit.fr/wp-content/uploads/2023/07/Donacilla cornea_0.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36649,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-11,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-11/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Glycymeris glycymeris.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36651,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-12,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Limaria loscombii.PNG,,FALSE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36653,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-13,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-13/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36655,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-14,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-14/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_5.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36657,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-15,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-15/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/nucella lapillus_5.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36658,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-16,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-16/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Sepias elegans.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36660,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-17,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-17/,Striarca lactea,Striarca laiteuse,,https://biolit.fr/wp-content/uploads/2023/07/Striarca lactea_0.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36662,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-18,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/Telina tenuis.PNG,,FALSE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36666,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-20,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-20/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/trivia monacha et arctica.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36667,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-21,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-21/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Velella velella_3.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36669,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-22,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ver sp_0.PNG,,FALSE, +N1,58978,sortie-566e4bb6-2003-4ef5-9ac2-b52b08dc0a8c,https://biolit.fr/sorties/sortie-566e4bb6-2003-4ef5-9ac2-b52b08dc0a8c/,Massadiver,,6/13/2018 0:00,11.0000000,11.0000000,47.29967000000,-3.223567000000,,Domois,36670,observation-566e4bb6-2003-4ef5-9ac2-b52b08dc0a8c,https://biolit.fr/observations/observation-566e4bb6-2003-4ef5-9ac2-b52b08dc0a8c/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSCI1430.jpg,,TRUE, +N1,58978,sortie-566e4bb6-2003-4ef5-9ac2-b52b08dc0a8c,https://biolit.fr/sorties/sortie-566e4bb6-2003-4ef5-9ac2-b52b08dc0a8c/,Massadiver,,6/13/2018 0:00,11.0000000,11.0000000,47.29967000000,-3.223567000000,,Domois,36672,observation-566e4bb6-2003-4ef5-9ac2-b52b08dc0a8c-2,https://biolit.fr/observations/observation-566e4bb6-2003-4ef5-9ac2-b52b08dc0a8c-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSCI1434.jpg,,TRUE, +N1,58978,sortie-566e4bb6-2003-4ef5-9ac2-b52b08dc0a8c,https://biolit.fr/sorties/sortie-566e4bb6-2003-4ef5-9ac2-b52b08dc0a8c/,Massadiver,,6/13/2018 0:00,11.0000000,11.0000000,47.29967000000,-3.223567000000,,Domois,36674,observation-566e4bb6-2003-4ef5-9ac2-b52b08dc0a8c-3,https://biolit.fr/observations/observation-566e4bb6-2003-4ef5-9ac2-b52b08dc0a8c-3/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSCI1435.jpg,,TRUE, +N1,58978,sortie-566e4bb6-2003-4ef5-9ac2-b52b08dc0a8c,https://biolit.fr/sorties/sortie-566e4bb6-2003-4ef5-9ac2-b52b08dc0a8c/,Massadiver,,6/13/2018 0:00,11.0000000,11.0000000,47.29967000000,-3.223567000000,,Domois,36676,observation-566e4bb6-2003-4ef5-9ac2-b52b08dc0a8c-4,https://biolit.fr/observations/observation-566e4bb6-2003-4ef5-9ac2-b52b08dc0a8c-4/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSCI1436.jpg,,TRUE, +N1,58979,sortie-a9d1a00a-624d-4ca6-85ca-d923afd96f9b,https://biolit.fr/sorties/sortie-a9d1a00a-624d-4ca6-85ca-d923afd96f9b/,Massadiver,,3/15/2016 0:00,2.0:15,2.0000000,48.38156300000,-4.48731600000,,Bassin numéro 2 du port de Brest,36678,observation-a9d1a00a-624d-4ca6-85ca-d923afd96f9b,https://biolit.fr/observations/observation-a9d1a00a-624d-4ca6-85ca-d923afd96f9b/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN3425.jpg,,FALSE, +N1,58979,sortie-a9d1a00a-624d-4ca6-85ca-d923afd96f9b,https://biolit.fr/sorties/sortie-a9d1a00a-624d-4ca6-85ca-d923afd96f9b/,Massadiver,,3/15/2016 0:00,2.0:15,2.0000000,48.38156300000,-4.48731600000,,Bassin numéro 2 du port de Brest,36680,observation-a9d1a00a-624d-4ca6-85ca-d923afd96f9b-2,https://biolit.fr/observations/observation-a9d1a00a-624d-4ca6-85ca-d923afd96f9b-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/DSCN3426_0.jpg,,TRUE, +N1,58979,sortie-a9d1a00a-624d-4ca6-85ca-d923afd96f9b,https://biolit.fr/sorties/sortie-a9d1a00a-624d-4ca6-85ca-d923afd96f9b/,Massadiver,,3/15/2016 0:00,2.0:15,2.0000000,48.38156300000,-4.48731600000,,Bassin numéro 2 du port de Brest,36682,observation-a9d1a00a-624d-4ca6-85ca-d923afd96f9b-3,https://biolit.fr/observations/observation-a9d1a00a-624d-4ca6-85ca-d923afd96f9b-3/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/2023/07/DSCN3427.jpg,,TRUE, +N1,58979,sortie-a9d1a00a-624d-4ca6-85ca-d923afd96f9b,https://biolit.fr/sorties/sortie-a9d1a00a-624d-4ca6-85ca-d923afd96f9b/,Massadiver,,3/15/2016 0:00,2.0:15,2.0000000,48.38156300000,-4.48731600000,,Bassin numéro 2 du port de Brest,36684,observation-a9d1a00a-624d-4ca6-85ca-d923afd96f9b-4,https://biolit.fr/observations/observation-a9d1a00a-624d-4ca6-85ca-d923afd96f9b-4/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/2023/07/DSCN3428.jpg,,TRUE, +N1,58979,sortie-a9d1a00a-624d-4ca6-85ca-d923afd96f9b,https://biolit.fr/sorties/sortie-a9d1a00a-624d-4ca6-85ca-d923afd96f9b/,Massadiver,,3/15/2016 0:00,2.0:15,2.0000000,48.38156300000,-4.48731600000,,Bassin numéro 2 du port de Brest,36686,observation-a9d1a00a-624d-4ca6-85ca-d923afd96f9b-5,https://biolit.fr/observations/observation-a9d1a00a-624d-4ca6-85ca-d923afd96f9b-5/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/DSCN3504.jpg,,TRUE, +N1,58980,sortie-6b4afea5-2412-4728-9093-9397b611de76,https://biolit.fr/sorties/sortie-6b4afea5-2412-4728-9093-9397b611de76/,Roman,,12/25/2020 0:00,16.0000000,17.0000000,47.697214000000,-3.354452000000,,Gâvres,36688,observation-6b4afea5-2412-4728-9093-9397b611de76,https://biolit.fr/observations/observation-6b4afea5-2412-4728-9093-9397b611de76/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/Branta barnicla.PNG,,TRUE, +N1,58980,sortie-6b4afea5-2412-4728-9093-9397b611de76,https://biolit.fr/sorties/sortie-6b4afea5-2412-4728-9093-9397b611de76/,Roman,,12/25/2020 0:00,16.0000000,17.0000000,47.697214000000,-3.354452000000,,Gâvres,36690,observation-6b4afea5-2412-4728-9093-9397b611de76-2,https://biolit.fr/observations/observation-6b4afea5-2412-4728-9093-9397b611de76-2/,Conger conger,Congre,,https://biolit.fr/wp-content/uploads/2023/07/Conger conger.PNG,,TRUE, +N1,58980,sortie-6b4afea5-2412-4728-9093-9397b611de76,https://biolit.fr/sorties/sortie-6b4afea5-2412-4728-9093-9397b611de76/,Roman,,12/25/2020 0:00,16.0000000,17.0000000,47.697214000000,-3.354452000000,,Gâvres,36692,observation-6b4afea5-2412-4728-9093-9397b611de76-3,https://biolit.fr/observations/observation-6b4afea5-2412-4728-9093-9397b611de76-3/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/Echinocardium cordatum.PNG,,TRUE, +N1,58980,sortie-6b4afea5-2412-4728-9093-9397b611de76,https://biolit.fr/sorties/sortie-6b4afea5-2412-4728-9093-9397b611de76/,Roman,,12/25/2020 0:00,16.0000000,17.0000000,47.697214000000,-3.354452000000,,Gâvres,36696,observation-6b4afea5-2412-4728-9093-9397b611de76-5,https://biolit.fr/observations/observation-6b4afea5-2412-4728-9093-9397b611de76-5/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/Physalia physalis.jpg,,TRUE, +N1,58980,sortie-6b4afea5-2412-4728-9093-9397b611de76,https://biolit.fr/sorties/sortie-6b4afea5-2412-4728-9093-9397b611de76/,Roman,,12/25/2020 0:00,16.0000000,17.0000000,47.697214000000,-3.354452000000,,Gâvres,36697,observation-6b4afea5-2412-4728-9093-9397b611de76-6,https://biolit.fr/observations/observation-6b4afea5-2412-4728-9093-9397b611de76-6/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Velella velella_2-scaled.jpg,,TRUE, +N1,58980,sortie-6b4afea5-2412-4728-9093-9397b611de76,https://biolit.fr/sorties/sortie-6b4afea5-2412-4728-9093-9397b611de76/,Roman,,12/25/2020 0:00,16.0000000,17.0000000,47.697214000000,-3.354452000000,,Gâvres,36698,observation-6b4afea5-2412-4728-9093-9397b611de76-7,https://biolit.fr/observations/observation-6b4afea5-2412-4728-9093-9397b611de76-7/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/Zostera marina_1.PNG,,TRUE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36700,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_4.PNG,,TRUE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36701,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-2,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea_3.PNG,,TRUE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36703,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-3,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_6.PNG,,TRUE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36704,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-4,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-4/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/Anthopleura sp.PNG,,TRUE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36705,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-5,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-5/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/asterias rubens_1.PNG,,TRUE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36706,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-6,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-6/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_7.PNG,,TRUE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36708,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-7,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-7/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/Aulactinia verrucosa_2.PNG,,TRUE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36710,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-8,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-8/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_4.PNG,,TRUE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36712,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-9,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-9/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus pe.PNG,,TRUE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36714,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-10,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-10/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/Clibanarius erythropus.PNG,,TRUE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36716,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-11,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 1_1.PNG,,FALSE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36718,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-12,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_6.PNG,,FALSE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36720,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-13,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-13/,Hediste diversicolor,Néréis multicolore,,https://biolit.fr/wp-content/uploads/2023/07/Gravelle.PNG,,TRUE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36722,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-14,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-14/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_4.PNG,,TRUE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36724,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-15,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-15/,Nerophis ophidion,Nérophis ophidion,,https://biolit.fr/wp-content/uploads/2023/07/ophidion nerophis.PNG,,TRUE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36726,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-16,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-16/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_5.PNG,,TRUE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36727,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-17,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-17/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_5.PNG,,TRUE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36729,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-18,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/ruditapes decussatus pe.PNG,,FALSE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36731,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-19,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-19/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/Zostera marina_0.PNG,,TRUE, +N1,58982,sortie-311e237f-5d18-447a-a61e-9a5ae20ce819,https://biolit.fr/sorties/sortie-311e237f-5d18-447a-a61e-9a5ae20ce819/,Phil,,5/22/2020 0:00,12.0:45,12.0000000,47.799305000000,-4.180156000000,,Loctudy - Finistère,36735,observation-311e237f-5d18-447a-a61e-9a5ae20ce819-2,https://biolit.fr/observations/observation-311e237f-5d18-447a-a61e-9a5ae20ce819-2/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20200522_124646.jpg,,TRUE, +N1,58982,sortie-311e237f-5d18-447a-a61e-9a5ae20ce819,https://biolit.fr/sorties/sortie-311e237f-5d18-447a-a61e-9a5ae20ce819/,Phil,,5/22/2020 0:00,12.0:45,12.0000000,47.799305000000,-4.180156000000,,Loctudy - Finistère,36737,observation-311e237f-5d18-447a-a61e-9a5ae20ce819-3,https://biolit.fr/observations/observation-311e237f-5d18-447a-a61e-9a5ae20ce819-3/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/20200522_124659.jpg,,TRUE, +N1,58982,sortie-311e237f-5d18-447a-a61e-9a5ae20ce819,https://biolit.fr/sorties/sortie-311e237f-5d18-447a-a61e-9a5ae20ce819/,Phil,,5/22/2020 0:00,12.0:45,12.0000000,47.799305000000,-4.180156000000,,Loctudy - Finistère,36739,observation-311e237f-5d18-447a-a61e-9a5ae20ce819-4,https://biolit.fr/observations/observation-311e237f-5d18-447a-a61e-9a5ae20ce819-4/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20200522_124744.jpg,,TRUE, +N1,58982,sortie-311e237f-5d18-447a-a61e-9a5ae20ce819,https://biolit.fr/sorties/sortie-311e237f-5d18-447a-a61e-9a5ae20ce819/,Phil,,5/22/2020 0:00,12.0:45,12.0000000,47.799305000000,-4.180156000000,,Loctudy - Finistère,36741,observation-311e237f-5d18-447a-a61e-9a5ae20ce819-5,https://biolit.fr/observations/observation-311e237f-5d18-447a-a61e-9a5ae20ce819-5/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20200522_124819.jpg,,TRUE, +N1,58983,sortie-21d6f73e-b678-43a8-9122-59a1c1f823f8,https://biolit.fr/sorties/sortie-21d6f73e-b678-43a8-9122-59a1c1f823f8/,evatravo,,01/02/2021,10.0000000,12.0000000,43.08290300000,6.118565000000,,Hyeres ,36743,observation-21d6f73e-b678-43a8-9122-59a1c1f823f8,https://biolit.fr/observations/observation-21d6f73e-b678-43a8-9122-59a1c1f823f8/,Larus michahellis,Goéland leucophée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0626-scaled.jpg,,TRUE, +N1,58984,sortie-bf7efe1d-48ca-493e-b1ba-beda360bc62e,https://biolit.fr/sorties/sortie-bf7efe1d-48ca-493e-b1ba-beda360bc62e/,evatravo,,01/02/2021,9.0000000,11.0000000,43.14481600000,6.282797000000,,Hyeres ,36745,observation-bf7efe1d-48ca-493e-b1ba-beda360bc62e,https://biolit.fr/observations/observation-bf7efe1d-48ca-493e-b1ba-beda360bc62e/,Phoenicopterus roseus,Flamant rose,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0145.png,,TRUE, +N1,58985,sortie-f9cd6d4d-2bf4-499f-83ee-a5dcb32ff7bc,https://biolit.fr/sorties/sortie-f9cd6d4d-2bf4-499f-83ee-a5dcb32ff7bc/,Phil,,7/26/2020 0:00,15.0000000,16.0000000,47.798718000000,-4.179137000000,,Loctudy - Finistère,36747,observation-f9cd6d4d-2bf4-499f-83ee-a5dcb32ff7bc,https://biolit.fr/observations/observation-f9cd6d4d-2bf4-499f-83ee-a5dcb32ff7bc/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20200726_155401.jpg,,TRUE, +N1,58985,sortie-f9cd6d4d-2bf4-499f-83ee-a5dcb32ff7bc,https://biolit.fr/sorties/sortie-f9cd6d4d-2bf4-499f-83ee-a5dcb32ff7bc/,Phil,,7/26/2020 0:00,15.0000000,16.0000000,47.798718000000,-4.179137000000,,Loctudy - Finistère,36749,observation-f9cd6d4d-2bf4-499f-83ee-a5dcb32ff7bc-2,https://biolit.fr/observations/observation-f9cd6d4d-2bf4-499f-83ee-a5dcb32ff7bc-2/,Phymatolithon lenormandii,Algue encroûtante rouge de Lenormand,,https://biolit.fr/wp-content/uploads/2023/07/20200726_160347.jpg,,TRUE, +N1,58985,sortie-f9cd6d4d-2bf4-499f-83ee-a5dcb32ff7bc,https://biolit.fr/sorties/sortie-f9cd6d4d-2bf4-499f-83ee-a5dcb32ff7bc/,Phil,,7/26/2020 0:00,15.0000000,16.0000000,47.798718000000,-4.179137000000,,Loctudy - Finistère,36751,observation-f9cd6d4d-2bf4-499f-83ee-a5dcb32ff7bc-3,https://biolit.fr/observations/observation-f9cd6d4d-2bf4-499f-83ee-a5dcb32ff7bc-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200726_160400.jpg,,FALSE, +N1,58985,sortie-f9cd6d4d-2bf4-499f-83ee-a5dcb32ff7bc,https://biolit.fr/sorties/sortie-f9cd6d4d-2bf4-499f-83ee-a5dcb32ff7bc/,Phil,,7/26/2020 0:00,15.0000000,16.0000000,47.798718000000,-4.179137000000,,Loctudy - Finistère,36753,observation-f9cd6d4d-2bf4-499f-83ee-a5dcb32ff7bc-4,https://biolit.fr/observations/observation-f9cd6d4d-2bf4-499f-83ee-a5dcb32ff7bc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200726_160427.jpg,,FALSE, +N1,58986,sortie-0df1841c-58a2-4d10-99e8-92e39ea436a9,https://biolit.fr/sorties/sortie-0df1841c-58a2-4d10-99e8-92e39ea436a9/,Céline,,12/30/2020 0:00,12.0000000,12.0:55,43.3879310,5.0167830,,Plage napoleon,36755,observation-0df1841c-58a2-4d10-99e8-92e39ea436a9,https://biolit.fr/observations/observation-0df1841c-58a2-4d10-99e8-92e39ea436a9/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/16093291684334513098518679153185-scaled.jpg,,TRUE, +N1,58986,sortie-0df1841c-58a2-4d10-99e8-92e39ea436a9,https://biolit.fr/sorties/sortie-0df1841c-58a2-4d10-99e8-92e39ea436a9/,Céline,,12/30/2020 0:00,12.0000000,12.0:55,43.3879310,5.0167830,,Plage napoleon,36757,observation-0df1841c-58a2-4d10-99e8-92e39ea436a9-2,https://biolit.fr/observations/observation-0df1841c-58a2-4d10-99e8-92e39ea436a9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1551(1)(1)-scaled.jpg,,FALSE, +N1,58987,sortie-2da31fb3-b7fc-4e73-831a-01a5815fdfdc,https://biolit.fr/sorties/sortie-2da31fb3-b7fc-4e73-831a-01a5815fdfdc/,Phil,,5/22/2020 0:00,12.0000000,12.0:45,47.798267000000,-4.178178000000,,Loctudy - Finistère,36759,observation-2da31fb3-b7fc-4e73-831a-01a5815fdfdc,https://biolit.fr/observations/observation-2da31fb3-b7fc-4e73-831a-01a5815fdfdc/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_124440.jpg,,FALSE, +N1,58987,sortie-2da31fb3-b7fc-4e73-831a-01a5815fdfdc,https://biolit.fr/sorties/sortie-2da31fb3-b7fc-4e73-831a-01a5815fdfdc/,Phil,,5/22/2020 0:00,12.0000000,12.0:45,47.798267000000,-4.178178000000,,Loctudy - Finistère,36761,observation-2da31fb3-b7fc-4e73-831a-01a5815fdfdc-2,https://biolit.fr/observations/observation-2da31fb3-b7fc-4e73-831a-01a5815fdfdc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_124507.jpg,,FALSE, +N1,58987,sortie-2da31fb3-b7fc-4e73-831a-01a5815fdfdc,https://biolit.fr/sorties/sortie-2da31fb3-b7fc-4e73-831a-01a5815fdfdc/,Phil,,5/22/2020 0:00,12.0000000,12.0:45,47.798267000000,-4.178178000000,,Loctudy - Finistère,36763,observation-2da31fb3-b7fc-4e73-831a-01a5815fdfdc-3,https://biolit.fr/observations/observation-2da31fb3-b7fc-4e73-831a-01a5815fdfdc-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_124518.jpg,,FALSE, +N1,58987,sortie-2da31fb3-b7fc-4e73-831a-01a5815fdfdc,https://biolit.fr/sorties/sortie-2da31fb3-b7fc-4e73-831a-01a5815fdfdc/,Phil,,5/22/2020 0:00,12.0000000,12.0:45,47.798267000000,-4.178178000000,,Loctudy - Finistère,36765,observation-2da31fb3-b7fc-4e73-831a-01a5815fdfdc-4,https://biolit.fr/observations/observation-2da31fb3-b7fc-4e73-831a-01a5815fdfdc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_124533.jpg,,FALSE, +N1,58987,sortie-2da31fb3-b7fc-4e73-831a-01a5815fdfdc,https://biolit.fr/sorties/sortie-2da31fb3-b7fc-4e73-831a-01a5815fdfdc/,Phil,,5/22/2020 0:00,12.0000000,12.0:45,47.798267000000,-4.178178000000,,Loctudy - Finistère,36767,observation-2da31fb3-b7fc-4e73-831a-01a5815fdfdc-5,https://biolit.fr/observations/observation-2da31fb3-b7fc-4e73-831a-01a5815fdfdc-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_124606.jpg,,FALSE, +N1,58987,sortie-2da31fb3-b7fc-4e73-831a-01a5815fdfdc,https://biolit.fr/sorties/sortie-2da31fb3-b7fc-4e73-831a-01a5815fdfdc/,Phil,,5/22/2020 0:00,12.0000000,12.0:45,47.798267000000,-4.178178000000,,Loctudy - Finistère,36769,observation-2da31fb3-b7fc-4e73-831a-01a5815fdfdc-6,https://biolit.fr/observations/observation-2da31fb3-b7fc-4e73-831a-01a5815fdfdc-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_123927.jpg,,FALSE, +N1,58988,sortie-99e8b7c2-c086-40b9-9082-d0ab776aa9ba,https://biolit.fr/sorties/sortie-99e8b7c2-c086-40b9-9082-d0ab776aa9ba/,Phil,,3/13/2020 0:00,14.0000000,14.0000000,47.800545000000,-4.181662000000,,Loctudy - Finistère,36771,observation-99e8b7c2-c086-40b9-9082-d0ab776aa9ba,https://biolit.fr/observations/observation-99e8b7c2-c086-40b9-9082-d0ab776aa9ba/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/20200313_143420.jpg,,TRUE, +N1,58988,sortie-99e8b7c2-c086-40b9-9082-d0ab776aa9ba,https://biolit.fr/sorties/sortie-99e8b7c2-c086-40b9-9082-d0ab776aa9ba/,Phil,,3/13/2020 0:00,14.0000000,14.0000000,47.800545000000,-4.181662000000,,Loctudy - Finistère,36773,observation-99e8b7c2-c086-40b9-9082-d0ab776aa9ba-2,https://biolit.fr/observations/observation-99e8b7c2-c086-40b9-9082-d0ab776aa9ba-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_143423.jpg,,FALSE, +N1,58988,sortie-99e8b7c2-c086-40b9-9082-d0ab776aa9ba,https://biolit.fr/sorties/sortie-99e8b7c2-c086-40b9-9082-d0ab776aa9ba/,Phil,,3/13/2020 0:00,14.0000000,14.0000000,47.800545000000,-4.181662000000,,Loctudy - Finistère,36775,observation-99e8b7c2-c086-40b9-9082-d0ab776aa9ba-3,https://biolit.fr/observations/observation-99e8b7c2-c086-40b9-9082-d0ab776aa9ba-3/,Palmaria palmata,Goémon à vache,,https://biolit.fr/wp-content/uploads/2023/07/20200313_142910.jpg,,TRUE, +N1,58988,sortie-99e8b7c2-c086-40b9-9082-d0ab776aa9ba,https://biolit.fr/sorties/sortie-99e8b7c2-c086-40b9-9082-d0ab776aa9ba/,Phil,,3/13/2020 0:00,14.0000000,14.0000000,47.800545000000,-4.181662000000,,Loctudy - Finistère,36777,observation-99e8b7c2-c086-40b9-9082-d0ab776aa9ba-4,https://biolit.fr/observations/observation-99e8b7c2-c086-40b9-9082-d0ab776aa9ba-4/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20200313_143448.jpg,,TRUE, +N1,58989,sortie-c2d58302-e0e6-405b-889a-70fec82c4773,https://biolit.fr/sorties/sortie-c2d58302-e0e6-405b-889a-70fec82c4773/,Massadiver,,12/18/2020 0:00,14.0:25,14.0000000,48.377135000000,-4.490011000000,,Port de Brest,36779,observation-c2d58302-e0e6-405b-889a-70fec82c4773,https://biolit.fr/observations/observation-c2d58302-e0e6-405b-889a-70fec82c4773/,Phronima sedentaria,Phronime sédentaire,,https://biolit.fr/wp-content/uploads/2023/07/131642702_748446002735978_1389420599461576132_n.png,,TRUE, +N1,58989,sortie-c2d58302-e0e6-405b-889a-70fec82c4773,https://biolit.fr/sorties/sortie-c2d58302-e0e6-405b-889a-70fec82c4773/,Massadiver,,12/18/2020 0:00,14.0:25,14.0000000,48.377135000000,-4.490011000000,,Port de Brest,36781,observation-c2d58302-e0e6-405b-889a-70fec82c4773-2,https://biolit.fr/observations/observation-c2d58302-e0e6-405b-889a-70fec82c4773-2/,Phronima sedentaria,Phronime sédentaire,,https://biolit.fr/wp-content/uploads/2023/07/131672015_2876928462632462_8218439598066852498_n.png,,TRUE, +N1,58989,sortie-c2d58302-e0e6-405b-889a-70fec82c4773,https://biolit.fr/sorties/sortie-c2d58302-e0e6-405b-889a-70fec82c4773/,Massadiver,,12/18/2020 0:00,14.0:25,14.0000000,48.377135000000,-4.490011000000,,Port de Brest,36783,observation-c2d58302-e0e6-405b-889a-70fec82c4773-3,https://biolit.fr/observations/observation-c2d58302-e0e6-405b-889a-70fec82c4773-3/,Phronima sedentaria,Phronime sédentaire,,https://biolit.fr/wp-content/uploads/2023/07/131894630_2795397814048191_7264743242978157559_n.jpg.png,,TRUE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36785,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita_0.PNG,,TRUE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36789,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-3,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-3/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea_2.PNG,,TRUE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36791,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-4,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_2.PNG,,TRUE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36793,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-5,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-5/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asteria rubens_1.PNG,,TRUE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36794,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-6,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-6/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_6.PNG,,TRUE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36796,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-7,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/bryo sp_2.PNG,,FALSE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36798,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-8,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-8/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus et botryllus schlosseri.PNG,,TRUE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36800,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-9,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-9/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_3.PNG,,TRUE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36802,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-10,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-10/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_3.PNG,,TRUE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36804,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-11,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_5.PNG,,FALSE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36806,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-12,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-12/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_0.PNG,,TRUE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36808,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-13,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-13/,Modiolus barbatus,Modiole barbue,,https://biolit.fr/wp-content/uploads/2023/07/Modiolus barbatus_0.PNG,,TRUE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36810,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-14,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-14/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_3.PNG,,TRUE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36812,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-15,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-15/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_0.PNG,,TRUE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36814,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-16,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-16/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_4.PNG,,TRUE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36816,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-17,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-17/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes decussatus-scaled.jpg,,TRUE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36817,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-18,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-18/,Sphaeromatidae (famille),Sphéromiens,,https://biolit.fr/wp-content/uploads/2023/07/Sphaeromatidae_0.PNG,,TRUE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36819,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_1.PNG,,TRUE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36821,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-2,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-2/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asteria rubens.PNG,,TRUE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36823,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-3,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-3/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_2.PNG,,TRUE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36825,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-4,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-4/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/Branta bernicla.PNG,,TRUE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36827,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-5,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-5/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_2.PNG,,TRUE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36829,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-6,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-6/,Ciliata mustela,Motelle à 5 barbillons,,https://biolit.fr/wp-content/uploads/2023/07/Ciliata mustela.PNG,,TRUE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36831,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-7,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-7/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/Colpomenia peregrina.PNG,,TRUE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36833,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-8,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-8/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/Egretta garzetta.PNG,,TRUE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36835,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-9,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-9/,Hymeniacidon perlevis,Eponge-miette de pain,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 1_0.PNG,,TRUE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36837,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-10,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-10/,Hymeniacidon perlevis,Eponge-miette de pain,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 2_2.PNG,,TRUE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36839,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-11,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 3.PNG,,FALSE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36841,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-12,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp-scaled.jpg,,FALSE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36842,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-13,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-13/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/Gobie sp_1.PNG,,TRUE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36843,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-14,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-14/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_4.PNG,,TRUE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36845,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-15,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-15/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/Ponte de Nucella lapillus.PNG,,TRUE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36846,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-16,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-16/,Styela clava,Ascidie japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Styela clava.PNG,,TRUE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36848,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-17,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-17/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Velella velella_1.PNG,,TRUE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36850,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-18,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-18/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_3.PNG,,TRUE, +N1,58992,sortie-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66,https://biolit.fr/sorties/sortie-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66/,Phil,,12/13/2020 0:00,16.0000000,16.0000000,47.793508000000,-4.226929000000,,Plobannalec-Lesconil - Finistère,36852,observation-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66,https://biolit.fr/observations/observation-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/IMG_82281.jpg,,TRUE, +N1,58992,sortie-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66,https://biolit.fr/sorties/sortie-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66/,Phil,,12/13/2020 0:00,16.0000000,16.0000000,47.793508000000,-4.226929000000,,Plobannalec-Lesconil - Finistère,36854,observation-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66-2,https://biolit.fr/observations/observation-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66-2/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/IMG_82291.jpg,,TRUE, +N1,58992,sortie-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66,https://biolit.fr/sorties/sortie-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66/,Phil,,12/13/2020 0:00,16.0000000,16.0000000,47.793508000000,-4.226929000000,,Plobannalec-Lesconil - Finistère,36856,observation-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66-3,https://biolit.fr/observations/observation-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66-3/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/IMG_82341.jpg,,TRUE, +N1,58992,sortie-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66,https://biolit.fr/sorties/sortie-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66/,Phil,,12/13/2020 0:00,16.0000000,16.0000000,47.793508000000,-4.226929000000,,Plobannalec-Lesconil - Finistère,36858,observation-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66-4,https://biolit.fr/observations/observation-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66-4/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/IMG_82371.jpg,,TRUE, +N1,58992,sortie-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66,https://biolit.fr/sorties/sortie-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66/,Phil,,12/13/2020 0:00,16.0000000,16.0000000,47.793508000000,-4.226929000000,,Plobannalec-Lesconil - Finistère,36860,observation-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66-5,https://biolit.fr/observations/observation-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66-5/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/IMG_82421.jpg,,TRUE, +N1,58992,sortie-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66,https://biolit.fr/sorties/sortie-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66/,Phil,,12/13/2020 0:00,16.0000000,16.0000000,47.793508000000,-4.226929000000,,Plobannalec-Lesconil - Finistère,36862,observation-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66-6,https://biolit.fr/observations/observation-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66-6/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/IMG_82401.jpg,,TRUE, +N1,58992,sortie-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66,https://biolit.fr/sorties/sortie-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66/,Phil,,12/13/2020 0:00,16.0000000,16.0000000,47.793508000000,-4.226929000000,,Plobannalec-Lesconil - Finistère,36864,observation-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66-7,https://biolit.fr/observations/observation-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66-7/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/IMG_82461.jpg,,TRUE, +N1,58993,sortie-5e091f65-fe02-4431-a88b-6c859a532e81,https://biolit.fr/sorties/sortie-5e091f65-fe02-4431-a88b-6c859a532e81/,Phil,,5/22/2020 0:00,12.0000000,12.0:35,47.800245000000,-4.181298000000,,Locquirec - Finistère,36866,observation-5e091f65-fe02-4431-a88b-6c859a532e81,https://biolit.fr/observations/observation-5e091f65-fe02-4431-a88b-6c859a532e81/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/20200522_123019.jpg,,TRUE, +N1,58993,sortie-5e091f65-fe02-4431-a88b-6c859a532e81,https://biolit.fr/sorties/sortie-5e091f65-fe02-4431-a88b-6c859a532e81/,Phil,,5/22/2020 0:00,12.0000000,12.0:35,47.800245000000,-4.181298000000,,Locquirec - Finistère,36868,observation-5e091f65-fe02-4431-a88b-6c859a532e81-2,https://biolit.fr/observations/observation-5e091f65-fe02-4431-a88b-6c859a532e81-2/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/20200522_123037.jpg,,TRUE, +N1,58993,sortie-5e091f65-fe02-4431-a88b-6c859a532e81,https://biolit.fr/sorties/sortie-5e091f65-fe02-4431-a88b-6c859a532e81/,Phil,,5/22/2020 0:00,12.0000000,12.0:35,47.800245000000,-4.181298000000,,Locquirec - Finistère,36870,observation-5e091f65-fe02-4431-a88b-6c859a532e81-3,https://biolit.fr/observations/observation-5e091f65-fe02-4431-a88b-6c859a532e81-3/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20200522_123601.jpg,,TRUE, +N1,58993,sortie-5e091f65-fe02-4431-a88b-6c859a532e81,https://biolit.fr/sorties/sortie-5e091f65-fe02-4431-a88b-6c859a532e81/,Phil,,5/22/2020 0:00,12.0000000,12.0:35,47.800245000000,-4.181298000000,,Locquirec - Finistère,36872,observation-5e091f65-fe02-4431-a88b-6c859a532e81-4,https://biolit.fr/observations/observation-5e091f65-fe02-4431-a88b-6c859a532e81-4/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20200522_122227.jpg,,TRUE, +N1,58993,sortie-5e091f65-fe02-4431-a88b-6c859a532e81,https://biolit.fr/sorties/sortie-5e091f65-fe02-4431-a88b-6c859a532e81/,Phil,,5/22/2020 0:00,12.0000000,12.0:35,47.800245000000,-4.181298000000,,Locquirec - Finistère,36874,observation-5e091f65-fe02-4431-a88b-6c859a532e81-5,https://biolit.fr/observations/observation-5e091f65-fe02-4431-a88b-6c859a532e81-5/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20200522_122201.jpg,,TRUE, +N1,58994,sortie-f1a0e9cc-580e-4e29-92eb-a1b512a86062,https://biolit.fr/sorties/sortie-f1a0e9cc-580e-4e29-92eb-a1b512a86062/,Phil,,6/28/2020 0:00,16.0:45,16.0000000,48.688185000000,-3.676622000000,,Locquirec - Finistère,36876,observation-f1a0e9cc-580e-4e29-92eb-a1b512a86062,https://biolit.fr/observations/observation-f1a0e9cc-580e-4e29-92eb-a1b512a86062/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20200628_164725.jpg,,TRUE, +N1,58994,sortie-f1a0e9cc-580e-4e29-92eb-a1b512a86062,https://biolit.fr/sorties/sortie-f1a0e9cc-580e-4e29-92eb-a1b512a86062/,Phil,,6/28/2020 0:00,16.0:45,16.0000000,48.688185000000,-3.676622000000,,Locquirec - Finistère,36878,observation-f1a0e9cc-580e-4e29-92eb-a1b512a86062-2,https://biolit.fr/observations/observation-f1a0e9cc-580e-4e29-92eb-a1b512a86062-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200628_164554.jpg,,TRUE, +N1,58994,sortie-f1a0e9cc-580e-4e29-92eb-a1b512a86062,https://biolit.fr/sorties/sortie-f1a0e9cc-580e-4e29-92eb-a1b512a86062/,Phil,,6/28/2020 0:00,16.0:45,16.0000000,48.688185000000,-3.676622000000,,Locquirec - Finistère,36880,observation-f1a0e9cc-580e-4e29-92eb-a1b512a86062-3,https://biolit.fr/observations/observation-f1a0e9cc-580e-4e29-92eb-a1b512a86062-3/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/20200628_164927.jpg,,TRUE, +N1,58994,sortie-f1a0e9cc-580e-4e29-92eb-a1b512a86062,https://biolit.fr/sorties/sortie-f1a0e9cc-580e-4e29-92eb-a1b512a86062/,Phil,,6/28/2020 0:00,16.0:45,16.0000000,48.688185000000,-3.676622000000,,Locquirec - Finistère,36882,observation-f1a0e9cc-580e-4e29-92eb-a1b512a86062-4,https://biolit.fr/observations/observation-f1a0e9cc-580e-4e29-92eb-a1b512a86062-4/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20200628_164714.jpg,,TRUE, +N1,58995,sortie-bb724b11-0a34-418b-a09e-a91a1827f4fb,https://biolit.fr/sorties/sortie-bb724b11-0a34-418b-a09e-a91a1827f4fb/,Phil,,5/22/2020 0:00,12.0000000,12.0000000,47.800369000000,-4.180362000000,,Loctudy - Finistère,36884,observation-bb724b11-0a34-418b-a09e-a91a1827f4fb,https://biolit.fr/observations/observation-bb724b11-0a34-418b-a09e-a91a1827f4fb/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20200522_122151.jpg,,TRUE, +N1,58995,sortie-bb724b11-0a34-418b-a09e-a91a1827f4fb,https://biolit.fr/sorties/sortie-bb724b11-0a34-418b-a09e-a91a1827f4fb/,Phil,,5/22/2020 0:00,12.0000000,12.0000000,47.800369000000,-4.180362000000,,Loctudy - Finistère,36886,observation-bb724b11-0a34-418b-a09e-a91a1827f4fb-2,https://biolit.fr/observations/observation-bb724b11-0a34-418b-a09e-a91a1827f4fb-2/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20200522_122146.jpg,,TRUE, +N1,58995,sortie-bb724b11-0a34-418b-a09e-a91a1827f4fb,https://biolit.fr/sorties/sortie-bb724b11-0a34-418b-a09e-a91a1827f4fb/,Phil,,5/22/2020 0:00,12.0000000,12.0000000,47.800369000000,-4.180362000000,,Loctudy - Finistère,36888,observation-bb724b11-0a34-418b-a09e-a91a1827f4fb-3,https://biolit.fr/observations/observation-bb724b11-0a34-418b-a09e-a91a1827f4fb-3/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20200522_121814.jpg,,TRUE, +N1,58995,sortie-bb724b11-0a34-418b-a09e-a91a1827f4fb,https://biolit.fr/sorties/sortie-bb724b11-0a34-418b-a09e-a91a1827f4fb/,Phil,,5/22/2020 0:00,12.0000000,12.0000000,47.800369000000,-4.180362000000,,Loctudy - Finistère,36890,observation-bb724b11-0a34-418b-a09e-a91a1827f4fb-4,https://biolit.fr/observations/observation-bb724b11-0a34-418b-a09e-a91a1827f4fb-4/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20200522_121801.jpg,,TRUE, +N1,58995,sortie-bb724b11-0a34-418b-a09e-a91a1827f4fb,https://biolit.fr/sorties/sortie-bb724b11-0a34-418b-a09e-a91a1827f4fb/,Phil,,5/22/2020 0:00,12.0000000,12.0000000,47.800369000000,-4.180362000000,,Loctudy - Finistère,36892,observation-bb724b11-0a34-418b-a09e-a91a1827f4fb-5,https://biolit.fr/observations/observation-bb724b11-0a34-418b-a09e-a91a1827f4fb-5/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20200522_120542.jpg,,TRUE, +N1,58996,sortie-bf3d1008-8e16-4171-afff-986410553de7,https://biolit.fr/sorties/sortie-bf3d1008-8e16-4171-afff-986410553de7/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.794713000000,-4.178658000000,,Loctudy - Finistère,36894,observation-bf3d1008-8e16-4171-afff-986410553de7,https://biolit.fr/observations/observation-bf3d1008-8e16-4171-afff-986410553de7/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/20200726_154233.jpg,,TRUE, +N1,58996,sortie-bf3d1008-8e16-4171-afff-986410553de7,https://biolit.fr/sorties/sortie-bf3d1008-8e16-4171-afff-986410553de7/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.794713000000,-4.178658000000,,Loctudy - Finistère,36896,observation-bf3d1008-8e16-4171-afff-986410553de7-2,https://biolit.fr/observations/observation-bf3d1008-8e16-4171-afff-986410553de7-2/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/20200726_154213.jpg,,TRUE, +N1,58996,sortie-bf3d1008-8e16-4171-afff-986410553de7,https://biolit.fr/sorties/sortie-bf3d1008-8e16-4171-afff-986410553de7/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.794713000000,-4.178658000000,,Loctudy - Finistère,36898,observation-bf3d1008-8e16-4171-afff-986410553de7-3,https://biolit.fr/observations/observation-bf3d1008-8e16-4171-afff-986410553de7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200726_154923.jpg,,FALSE, +N1,58996,sortie-bf3d1008-8e16-4171-afff-986410553de7,https://biolit.fr/sorties/sortie-bf3d1008-8e16-4171-afff-986410553de7/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.794713000000,-4.178658000000,,Loctudy - Finistère,36900,observation-bf3d1008-8e16-4171-afff-986410553de7-4,https://biolit.fr/observations/observation-bf3d1008-8e16-4171-afff-986410553de7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200726_154927.jpg,,FALSE, +N1,58996,sortie-bf3d1008-8e16-4171-afff-986410553de7,https://biolit.fr/sorties/sortie-bf3d1008-8e16-4171-afff-986410553de7/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.794713000000,-4.178658000000,,Loctudy - Finistère,36902,observation-bf3d1008-8e16-4171-afff-986410553de7-5,https://biolit.fr/observations/observation-bf3d1008-8e16-4171-afff-986410553de7-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200726_154940.jpg,,FALSE, +N1,58996,sortie-bf3d1008-8e16-4171-afff-986410553de7,https://biolit.fr/sorties/sortie-bf3d1008-8e16-4171-afff-986410553de7/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.794713000000,-4.178658000000,,Loctudy - Finistère,36904,observation-bf3d1008-8e16-4171-afff-986410553de7-6,https://biolit.fr/observations/observation-bf3d1008-8e16-4171-afff-986410553de7-6/,Tritia incrassata,Nasse épaisse,,https://biolit.fr/wp-content/uploads/2023/07/20200726_154956.jpg,,TRUE, +N1,58997,sortie-5b5215c1-0fd4-4c87-94ab-b883197a97cb,https://biolit.fr/sorties/sortie-5b5215c1-0fd4-4c87-94ab-b883197a97cb/,Phil,,12/04/2020,13.0:45,13.0:45,47.791336000000,-4.277033000000,,Tréffiagat - Finistère,36906,observation-5b5215c1-0fd4-4c87-94ab-b883197a97cb,https://biolit.fr/observations/observation-5b5215c1-0fd4-4c87-94ab-b883197a97cb/,,,,https://biolit.fr/wp-content/uploads/2023/07/20201204_134519.jpg,,FALSE, +N1,58998,sortie-a15cfaef-7725-4908-a6e1-d33382365b3d,https://biolit.fr/sorties/sortie-a15cfaef-7725-4908-a6e1-d33382365b3d/,Phil,,10/22/2020 0:00,13.0000000,13.0:55,47.791581000000,-4.288427000000,,Guilvinec - Finistère,36908,observation-a15cfaef-7725-4908-a6e1-d33382365b3d,https://biolit.fr/observations/observation-a15cfaef-7725-4908-a6e1-d33382365b3d/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/20201022_135438.jpg,,TRUE, +N1,58998,sortie-a15cfaef-7725-4908-a6e1-d33382365b3d,https://biolit.fr/sorties/sortie-a15cfaef-7725-4908-a6e1-d33382365b3d/,Phil,,10/22/2020 0:00,13.0000000,13.0:55,47.791581000000,-4.288427000000,,Guilvinec - Finistère,36910,observation-a15cfaef-7725-4908-a6e1-d33382365b3d-2,https://biolit.fr/observations/observation-a15cfaef-7725-4908-a6e1-d33382365b3d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20201022_140050.jpg,,FALSE, +N1,58999,sortie-d7b67770-eeca-4d9e-9e89-832c4cad2b46,https://biolit.fr/sorties/sortie-d7b67770-eeca-4d9e-9e89-832c4cad2b46/,Phil,,10/22/2020 0:00,14.0000000,14.0000000,47.791745000000,-4.287054000000,,Guilvinec - Finistère,36912,observation-d7b67770-eeca-4d9e-9e89-832c4cad2b46,https://biolit.fr/observations/observation-d7b67770-eeca-4d9e-9e89-832c4cad2b46/,,,,https://biolit.fr/wp-content/uploads/2023/07/20201022_140121.jpg,,FALSE, +N1,59000,sortie-caf0a6a2-4b86-42e1-beaf-fa377b41f821,https://biolit.fr/sorties/sortie-caf0a6a2-4b86-42e1-beaf-fa377b41f821/,Phil,,3/13/2020 0:00,13.0000000,14.0000000,47.798507000000,-4.180156000000,,Loctudy - Finistère,36914,observation-caf0a6a2-4b86-42e1-beaf-fa377b41f821,https://biolit.fr/observations/observation-caf0a6a2-4b86-42e1-beaf-fa377b41f821/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20200313_142128.jpg,,TRUE, +N1,59000,sortie-caf0a6a2-4b86-42e1-beaf-fa377b41f821,https://biolit.fr/sorties/sortie-caf0a6a2-4b86-42e1-beaf-fa377b41f821/,Phil,,3/13/2020 0:00,13.0000000,14.0000000,47.798507000000,-4.180156000000,,Loctudy - Finistère,36916,observation-caf0a6a2-4b86-42e1-beaf-fa377b41f821-2,https://biolit.fr/observations/observation-caf0a6a2-4b86-42e1-beaf-fa377b41f821-2/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20200313_142050.jpg,,TRUE, +N1,59000,sortie-caf0a6a2-4b86-42e1-beaf-fa377b41f821,https://biolit.fr/sorties/sortie-caf0a6a2-4b86-42e1-beaf-fa377b41f821/,Phil,,3/13/2020 0:00,13.0000000,14.0000000,47.798507000000,-4.180156000000,,Loctudy - Finistère,36918,observation-caf0a6a2-4b86-42e1-beaf-fa377b41f821-3,https://biolit.fr/observations/observation-caf0a6a2-4b86-42e1-beaf-fa377b41f821-3/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20200313_142027.jpg,,TRUE, +N1,59000,sortie-caf0a6a2-4b86-42e1-beaf-fa377b41f821,https://biolit.fr/sorties/sortie-caf0a6a2-4b86-42e1-beaf-fa377b41f821/,Phil,,3/13/2020 0:00,13.0000000,14.0000000,47.798507000000,-4.180156000000,,Loctudy - Finistère,36920,observation-caf0a6a2-4b86-42e1-beaf-fa377b41f821-4,https://biolit.fr/observations/observation-caf0a6a2-4b86-42e1-beaf-fa377b41f821-4/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20200313_142026.jpg,,TRUE, +N1,59000,sortie-caf0a6a2-4b86-42e1-beaf-fa377b41f821,https://biolit.fr/sorties/sortie-caf0a6a2-4b86-42e1-beaf-fa377b41f821/,Phil,,3/13/2020 0:00,13.0000000,14.0000000,47.798507000000,-4.180156000000,,Loctudy - Finistère,36922,observation-caf0a6a2-4b86-42e1-beaf-fa377b41f821-5,https://biolit.fr/observations/observation-caf0a6a2-4b86-42e1-beaf-fa377b41f821-5/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/20200313_132559_0.jpg,,TRUE, +N1,59001,sortie-5aa90241-453b-47b2-9ebd-778091166621,https://biolit.fr/sorties/sortie-5aa90241-453b-47b2-9ebd-778091166621/,Phil,,5/22/2020 0:00,11.0000000,12.000005,47.798975000000,-4.179903000000,,Loctudy - Finistère,36924,observation-5aa90241-453b-47b2-9ebd-778091166621,https://biolit.fr/observations/observation-5aa90241-453b-47b2-9ebd-778091166621/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/20200522_120236.jpg,,TRUE, +N1,59001,sortie-5aa90241-453b-47b2-9ebd-778091166621,https://biolit.fr/sorties/sortie-5aa90241-453b-47b2-9ebd-778091166621/,Phil,,5/22/2020 0:00,11.0000000,12.000005,47.798975000000,-4.179903000000,,Loctudy - Finistère,36926,observation-5aa90241-453b-47b2-9ebd-778091166621-2,https://biolit.fr/observations/observation-5aa90241-453b-47b2-9ebd-778091166621-2/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/20200522_120334.jpg,,TRUE, +N1,59001,sortie-5aa90241-453b-47b2-9ebd-778091166621,https://biolit.fr/sorties/sortie-5aa90241-453b-47b2-9ebd-778091166621/,Phil,,5/22/2020 0:00,11.0000000,12.000005,47.798975000000,-4.179903000000,,Loctudy - Finistère,36928,observation-5aa90241-453b-47b2-9ebd-778091166621-3,https://biolit.fr/observations/observation-5aa90241-453b-47b2-9ebd-778091166621-3/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20200522_120248.jpg,,TRUE, +N1,59001,sortie-5aa90241-453b-47b2-9ebd-778091166621,https://biolit.fr/sorties/sortie-5aa90241-453b-47b2-9ebd-778091166621/,Phil,,5/22/2020 0:00,11.0000000,12.000005,47.798975000000,-4.179903000000,,Loctudy - Finistère,36930,observation-5aa90241-453b-47b2-9ebd-778091166621-4,https://biolit.fr/observations/observation-5aa90241-453b-47b2-9ebd-778091166621-4/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/20200522_120504.jpg,,TRUE, +N1,59001,sortie-5aa90241-453b-47b2-9ebd-778091166621,https://biolit.fr/sorties/sortie-5aa90241-453b-47b2-9ebd-778091166621/,Phil,,5/22/2020 0:00,11.0000000,12.000005,47.798975000000,-4.179903000000,,Loctudy - Finistère,36932,observation-5aa90241-453b-47b2-9ebd-778091166621-5,https://biolit.fr/observations/observation-5aa90241-453b-47b2-9ebd-778091166621-5/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/20200522_120520.jpg,,TRUE, +N1,59002,sortie-ab95018a-a031-4373-a953-95a5e5ee06c0,https://biolit.fr/sorties/sortie-ab95018a-a031-4373-a953-95a5e5ee06c0/,Phil,,06/12/2020,17.0000000,17.0:55,48.209472000000,-4.369692000000,,Telgruc-sur-Mer - Finistère,36934,observation-ab95018a-a031-4373-a953-95a5e5ee06c0,https://biolit.fr/observations/observation-ab95018a-a031-4373-a953-95a5e5ee06c0/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200612_175111_0.jpg,,FALSE, +N1,59002,sortie-ab95018a-a031-4373-a953-95a5e5ee06c0,https://biolit.fr/sorties/sortie-ab95018a-a031-4373-a953-95a5e5ee06c0/,Phil,,06/12/2020,17.0000000,17.0:55,48.209472000000,-4.369692000000,,Telgruc-sur-Mer - Finistère,36936,observation-ab95018a-a031-4373-a953-95a5e5ee06c0-2,https://biolit.fr/observations/observation-ab95018a-a031-4373-a953-95a5e5ee06c0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200612_175117.jpg,,FALSE, +N1,59002,sortie-ab95018a-a031-4373-a953-95a5e5ee06c0,https://biolit.fr/sorties/sortie-ab95018a-a031-4373-a953-95a5e5ee06c0/,Phil,,06/12/2020,17.0000000,17.0:55,48.209472000000,-4.369692000000,,Telgruc-sur-Mer - Finistère,36938,observation-ab95018a-a031-4373-a953-95a5e5ee06c0-3,https://biolit.fr/observations/observation-ab95018a-a031-4373-a953-95a5e5ee06c0-3/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/20200612_175212.jpg,,TRUE, +N1,59003,sortie-e5dab01a-2592-401e-9a19-b2a294ced101,https://biolit.fr/sorties/sortie-e5dab01a-2592-401e-9a19-b2a294ced101/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.798773000000,-4.180643000000,,Loctudy - Finistère,36940,observation-e5dab01a-2592-401e-9a19-b2a294ced101,https://biolit.fr/observations/observation-e5dab01a-2592-401e-9a19-b2a294ced101/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200726_153242.jpg,,FALSE, +N1,59003,sortie-e5dab01a-2592-401e-9a19-b2a294ced101,https://biolit.fr/sorties/sortie-e5dab01a-2592-401e-9a19-b2a294ced101/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.798773000000,-4.180643000000,,Loctudy - Finistère,36942,observation-e5dab01a-2592-401e-9a19-b2a294ced101-2,https://biolit.fr/observations/observation-e5dab01a-2592-401e-9a19-b2a294ced101-2/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/20200726_153452.jpg,,TRUE, +N1,59003,sortie-e5dab01a-2592-401e-9a19-b2a294ced101,https://biolit.fr/sorties/sortie-e5dab01a-2592-401e-9a19-b2a294ced101/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.798773000000,-4.180643000000,,Loctudy - Finistère,36944,observation-e5dab01a-2592-401e-9a19-b2a294ced101-3,https://biolit.fr/observations/observation-e5dab01a-2592-401e-9a19-b2a294ced101-3/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200726_153715.jpg,,TRUE, +N1,59003,sortie-e5dab01a-2592-401e-9a19-b2a294ced101,https://biolit.fr/sorties/sortie-e5dab01a-2592-401e-9a19-b2a294ced101/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.798773000000,-4.180643000000,,Loctudy - Finistère,36946,observation-e5dab01a-2592-401e-9a19-b2a294ced101-4,https://biolit.fr/observations/observation-e5dab01a-2592-401e-9a19-b2a294ced101-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200726_154115.jpg,,FALSE, +N1,59003,sortie-e5dab01a-2592-401e-9a19-b2a294ced101,https://biolit.fr/sorties/sortie-e5dab01a-2592-401e-9a19-b2a294ced101/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.798773000000,-4.180643000000,,Loctudy - Finistère,36948,observation-e5dab01a-2592-401e-9a19-b2a294ced101-5,https://biolit.fr/observations/observation-e5dab01a-2592-401e-9a19-b2a294ced101-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200726_154127.jpg,,FALSE, +N1,59004,sortie-649edf4c-6f02-4898-8f33-52ca5f376523,https://biolit.fr/sorties/sortie-649edf4c-6f02-4898-8f33-52ca5f376523/,Phil,,6/27/2020 0:00,14.000005,14.0000000,48.669988000000,-3.601266000000,,Plestin-les-Grèves - Côtes d'Armor,36950,observation-649edf4c-6f02-4898-8f33-52ca5f376523,https://biolit.fr/observations/observation-649edf4c-6f02-4898-8f33-52ca5f376523/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200627_140424.jpg,,FALSE, +N1,59004,sortie-649edf4c-6f02-4898-8f33-52ca5f376523,https://biolit.fr/sorties/sortie-649edf4c-6f02-4898-8f33-52ca5f376523/,Phil,,6/27/2020 0:00,14.000005,14.0000000,48.669988000000,-3.601266000000,,Plestin-les-Grèves - Côtes d'Armor,36952,observation-649edf4c-6f02-4898-8f33-52ca5f376523-2,https://biolit.fr/observations/observation-649edf4c-6f02-4898-8f33-52ca5f376523-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200627_140513.jpg,,FALSE, +N1,59004,sortie-649edf4c-6f02-4898-8f33-52ca5f376523,https://biolit.fr/sorties/sortie-649edf4c-6f02-4898-8f33-52ca5f376523/,Phil,,6/27/2020 0:00,14.000005,14.0000000,48.669988000000,-3.601266000000,,Plestin-les-Grèves - Côtes d'Armor,36954,observation-649edf4c-6f02-4898-8f33-52ca5f376523-3,https://biolit.fr/observations/observation-649edf4c-6f02-4898-8f33-52ca5f376523-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200627_140552.jpg,,FALSE, +N1,59005,sortie-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df,https://biolit.fr/sorties/sortie-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df/,Roman,,11/23/2020 0:00,15.0000000,16.0:45,47.701769000000,-3.311773000000,,Riantec,36956,observation-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df,https://biolit.fr/observations/observation-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df/,Atelecyclus undecimdentatus,Grand crabe circulaire,,https://biolit.fr/wp-content/uploads/2023/07/Atelecyclus undecimdentatus.jpg,,TRUE, +N1,59005,sortie-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df,https://biolit.fr/sorties/sortie-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df/,Roman,,11/23/2020 0:00,15.0000000,16.0:45,47.701769000000,-3.311773000000,,Riantec,36957,observation-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df-2,https://biolit.fr/observations/observation-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df-2/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/bernache cravant.PNG,,TRUE, +N1,59005,sortie-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df,https://biolit.fr/sorties/sortie-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df/,Roman,,11/23/2020 0:00,15.0000000,16.0:45,47.701769000000,-3.311773000000,,Riantec,36959,observation-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df-3,https://biolit.fr/observations/observation-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df-3/,Scyliorhinus canicula,Capsule de petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/Capsule d'oeuf de roussette.PNG,,TRUE, +N1,59005,sortie-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df,https://biolit.fr/sorties/sortie-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df/,Roman,,11/23/2020 0:00,15.0000000,16.0:45,47.701769000000,-3.311773000000,,Riantec,36960,observation-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df-4,https://biolit.fr/observations/observation-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df-4/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/Lepas anatifera_0.PNG,,TRUE, +N1,59005,sortie-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df,https://biolit.fr/sorties/sortie-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df/,Roman,,11/23/2020 0:00,15.0000000,16.0:45,47.701769000000,-3.311773000000,,Riantec,36961,observation-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df-5,https://biolit.fr/observations/observation-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df-5/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/tournpierre et bécasseau variable.PNG,,TRUE, +N1,59005,sortie-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df,https://biolit.fr/sorties/sortie-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df/,Roman,,11/23/2020 0:00,15.0000000,16.0:45,47.701769000000,-3.311773000000,,Riantec,36963,observation-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df-6,https://biolit.fr/observations/observation-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df-6/,Zostera noltei,Zostère naine,,https://biolit.fr/wp-content/uploads/2023/07/zostera naine.PNG,,TRUE, +N1,59006,sortie-d261ce7d-c041-4024-b8e4-7885364e7a78,https://biolit.fr/sorties/sortie-d261ce7d-c041-4024-b8e4-7885364e7a78/,Roman,,11/18/2020 0:00,12.0000000,12.0:15,47.707314000000,-3.358808000000,,Port-Louis,36965,observation-d261ce7d-c041-4024-b8e4-7885364e7a78,https://biolit.fr/observations/observation-d261ce7d-c041-4024-b8e4-7885364e7a78/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/127216202_139444920881342_6941971831746324365_n-scaled.jpg,,TRUE, +N1,59006,sortie-d261ce7d-c041-4024-b8e4-7885364e7a78,https://biolit.fr/sorties/sortie-d261ce7d-c041-4024-b8e4-7885364e7a78/,Roman,,11/18/2020 0:00,12.0000000,12.0:15,47.707314000000,-3.358808000000,,Port-Louis,36967,observation-d261ce7d-c041-4024-b8e4-7885364e7a78-2,https://biolit.fr/observations/observation-d261ce7d-c041-4024-b8e4-7885364e7a78-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/127108928_1050397002090406_6280797003432600290_n-scaled.jpg,,TRUE, +N1,59007,sortie-31d490e0-8d02-4cc9-ac88-13bc7071ce6b,https://biolit.fr/sorties/sortie-31d490e0-8d02-4cc9-ac88-13bc7071ce6b/,Phil,,06/12/2020,17.0000000,17.0:55,48.208670000000,-4.371125000000,,Telgruc-sur-Mer - Finistère,36969,observation-31d490e0-8d02-4cc9-ac88-13bc7071ce6b,https://biolit.fr/observations/observation-31d490e0-8d02-4cc9-ac88-13bc7071ce6b/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/20200612_175045.jpg,,TRUE, +N1,59007,sortie-31d490e0-8d02-4cc9-ac88-13bc7071ce6b,https://biolit.fr/sorties/sortie-31d490e0-8d02-4cc9-ac88-13bc7071ce6b/,Phil,,06/12/2020,17.0000000,17.0:55,48.208670000000,-4.371125000000,,Telgruc-sur-Mer - Finistère,36971,observation-31d490e0-8d02-4cc9-ac88-13bc7071ce6b-2,https://biolit.fr/observations/observation-31d490e0-8d02-4cc9-ac88-13bc7071ce6b-2/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/20200612_175020.jpg,,TRUE, +N1,59007,sortie-31d490e0-8d02-4cc9-ac88-13bc7071ce6b,https://biolit.fr/sorties/sortie-31d490e0-8d02-4cc9-ac88-13bc7071ce6b/,Phil,,06/12/2020,17.0000000,17.0:55,48.208670000000,-4.371125000000,,Telgruc-sur-Mer - Finistère,36973,observation-31d490e0-8d02-4cc9-ac88-13bc7071ce6b-3,https://biolit.fr/observations/observation-31d490e0-8d02-4cc9-ac88-13bc7071ce6b-3/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/20200612_175005.jpg,,TRUE, +N1,59008,sortie-5d88a0c5-1aa1-48a4-9f68-fd9cd471d72f,https://biolit.fr/sorties/sortie-5d88a0c5-1aa1-48a4-9f68-fd9cd471d72f/,Phil,,7/26/2020 0:00,15.0000000,15.0:25,47.797942000000,-4.179718000000,,Loctudy - Finistère,36975,observation-5d88a0c5-1aa1-48a4-9f68-fd9cd471d72f,https://biolit.fr/observations/observation-5d88a0c5-1aa1-48a4-9f68-fd9cd471d72f/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20200726_152451.jpg,,TRUE, +N1,59008,sortie-5d88a0c5-1aa1-48a4-9f68-fd9cd471d72f,https://biolit.fr/sorties/sortie-5d88a0c5-1aa1-48a4-9f68-fd9cd471d72f/,Phil,,7/26/2020 0:00,15.0000000,15.0:25,47.797942000000,-4.179718000000,,Loctudy - Finistère,36977,observation-5d88a0c5-1aa1-48a4-9f68-fd9cd471d72f-2,https://biolit.fr/observations/observation-5d88a0c5-1aa1-48a4-9f68-fd9cd471d72f-2/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20200726_152521.jpg,,TRUE, +N1,59008,sortie-5d88a0c5-1aa1-48a4-9f68-fd9cd471d72f,https://biolit.fr/sorties/sortie-5d88a0c5-1aa1-48a4-9f68-fd9cd471d72f/,Phil,,7/26/2020 0:00,15.0000000,15.0:25,47.797942000000,-4.179718000000,,Loctudy - Finistère,36979,observation-5d88a0c5-1aa1-48a4-9f68-fd9cd471d72f-3,https://biolit.fr/observations/observation-5d88a0c5-1aa1-48a4-9f68-fd9cd471d72f-3/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200726_152803.jpg,,TRUE, +N1,59008,sortie-5d88a0c5-1aa1-48a4-9f68-fd9cd471d72f,https://biolit.fr/sorties/sortie-5d88a0c5-1aa1-48a4-9f68-fd9cd471d72f/,Phil,,7/26/2020 0:00,15.0000000,15.0:25,47.797942000000,-4.179718000000,,Loctudy - Finistère,36981,observation-5d88a0c5-1aa1-48a4-9f68-fd9cd471d72f-4,https://biolit.fr/observations/observation-5d88a0c5-1aa1-48a4-9f68-fd9cd471d72f-4/,Chondrus crispus,Goémon frisé,,https://biolit.fr/wp-content/uploads/2023/07/20200726_152846.jpg,,FALSE, +N1,59009,sortie-a2beac1a-6892-4b10-9aae-037334f22147,https://biolit.fr/sorties/sortie-a2beac1a-6892-4b10-9aae-037334f22147/,Phil,,10/22/2020 0:00,13.0000000,13.0:55,47.791473000000,-4.286693000000,,Guilvinec - Finistère,36983,observation-a2beac1a-6892-4b10-9aae-037334f22147,https://biolit.fr/observations/observation-a2beac1a-6892-4b10-9aae-037334f22147/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20201022_135254.jpg,,TRUE, +N1,59009,sortie-a2beac1a-6892-4b10-9aae-037334f22147,https://biolit.fr/sorties/sortie-a2beac1a-6892-4b10-9aae-037334f22147/,Phil,,10/22/2020 0:00,13.0000000,13.0:55,47.791473000000,-4.286693000000,,Guilvinec - Finistère,36985,observation-a2beac1a-6892-4b10-9aae-037334f22147-2,https://biolit.fr/observations/observation-a2beac1a-6892-4b10-9aae-037334f22147-2/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20201022_135402.jpg,,TRUE, +N1,59009,sortie-a2beac1a-6892-4b10-9aae-037334f22147,https://biolit.fr/sorties/sortie-a2beac1a-6892-4b10-9aae-037334f22147/,Phil,,10/22/2020 0:00,13.0000000,13.0:55,47.791473000000,-4.286693000000,,Guilvinec - Finistère,36987,observation-a2beac1a-6892-4b10-9aae-037334f22147-3,https://biolit.fr/observations/observation-a2beac1a-6892-4b10-9aae-037334f22147-3/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20201022_135409.jpg,,TRUE, +N1,59010,sortie-9bf3419c-7046-4542-8af6-36fb58cf2263,https://biolit.fr/sorties/sortie-9bf3419c-7046-4542-8af6-36fb58cf2263/,laetimiq,,11/10/2020,11.0000000,12.0000000,48.011825000000,-4.546540000000,,Audierne,36989,observation-9bf3419c-7046-4542-8af6-36fb58cf2263,https://biolit.fr/observations/observation-9bf3419c-7046-4542-8af6-36fb58cf2263/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20201110_114414_0-scaled.jpg,,FALSE, +N1,59011,sortie-559f3c8d-5049-400e-a4fe-68d2263ef134,https://biolit.fr/sorties/sortie-559f3c8d-5049-400e-a4fe-68d2263ef134/,laetimiq,,11/04/2020,12.0000000,12.0000000,48.282037000000,-4.59944000000,,Camaret-sur-mer,36991,observation-559f3c8d-5049-400e-a4fe-68d2263ef134,https://biolit.fr/observations/observation-559f3c8d-5049-400e-a4fe-68d2263ef134/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20201104_121506_1-scaled.jpg,,TRUE, +N1,59012,sortie-850fdf5f-6571-4bee-a9a7-d3bd71e0cded,https://biolit.fr/sorties/sortie-850fdf5f-6571-4bee-a9a7-d3bd71e0cded/,laetimiq,,11/04/2020,11.0000000,11.0000000,48.275897000000,-4.617111000000,,Camaret-sur-mer,36993,observation-850fdf5f-6571-4bee-a9a7-d3bd71e0cded,https://biolit.fr/observations/observation-850fdf5f-6571-4bee-a9a7-d3bd71e0cded/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20201104_130457_0-scaled.jpg,,TRUE, +N1,59013,sortie-1b0cfc57-0fb2-400b-ab87-1e08dabb26fd,https://biolit.fr/sorties/sortie-1b0cfc57-0fb2-400b-ab87-1e08dabb26fd/,laetimiq,,11/04/2020,11.0000000,11.0000000,48.276399000000,-4.617636000000,,Camaret-sur-mer,36995,observation-1b0cfc57-0fb2-400b-ab87-1e08dabb26fd,https://biolit.fr/observations/observation-1b0cfc57-0fb2-400b-ab87-1e08dabb26fd/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20201104_125225_1-scaled.jpg,,TRUE, +N1,59014,sortie-25391148-7015-45ef-a974-3ebc9b4f5781,https://biolit.fr/sorties/sortie-25391148-7015-45ef-a974-3ebc9b4f5781/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.800626000000,-4.181654000000,,Loctudy - Finistère,36997,observation-25391148-7015-45ef-a974-3ebc9b4f5781,https://biolit.fr/observations/observation-25391148-7015-45ef-a974-3ebc9b4f5781/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200726_151410.jpg,,TRUE, +N1,59014,sortie-25391148-7015-45ef-a974-3ebc9b4f5781,https://biolit.fr/sorties/sortie-25391148-7015-45ef-a974-3ebc9b4f5781/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.800626000000,-4.181654000000,,Loctudy - Finistère,36999,observation-25391148-7015-45ef-a974-3ebc9b4f5781-2,https://biolit.fr/observations/observation-25391148-7015-45ef-a974-3ebc9b4f5781-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200726_151651.jpg,,FALSE, +N1,59014,sortie-25391148-7015-45ef-a974-3ebc9b4f5781,https://biolit.fr/sorties/sortie-25391148-7015-45ef-a974-3ebc9b4f5781/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.800626000000,-4.181654000000,,Loctudy - Finistère,37001,observation-25391148-7015-45ef-a974-3ebc9b4f5781-3,https://biolit.fr/observations/observation-25391148-7015-45ef-a974-3ebc9b4f5781-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200726_151754.jpg,,FALSE, +N1,59014,sortie-25391148-7015-45ef-a974-3ebc9b4f5781,https://biolit.fr/sorties/sortie-25391148-7015-45ef-a974-3ebc9b4f5781/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.800626000000,-4.181654000000,,Loctudy - Finistère,37003,observation-25391148-7015-45ef-a974-3ebc9b4f5781-4,https://biolit.fr/observations/observation-25391148-7015-45ef-a974-3ebc9b4f5781-4/,Rivularia bullata,Rivulaire en forme de bulle,,https://biolit.fr/wp-content/uploads/2023/07/20200726_151813.jpg,,TRUE, +N1,59014,sortie-25391148-7015-45ef-a974-3ebc9b4f5781,https://biolit.fr/sorties/sortie-25391148-7015-45ef-a974-3ebc9b4f5781/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.800626000000,-4.181654000000,,Loctudy - Finistère,37005,observation-25391148-7015-45ef-a974-3ebc9b4f5781-5,https://biolit.fr/observations/observation-25391148-7015-45ef-a974-3ebc9b4f5781-5/,Rivularia bullata,Rivulaire en forme de bulle,,https://biolit.fr/wp-content/uploads/2023/07/20200726_151816.jpg,,TRUE, +N1,59014,sortie-25391148-7015-45ef-a974-3ebc9b4f5781,https://biolit.fr/sorties/sortie-25391148-7015-45ef-a974-3ebc9b4f5781/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.800626000000,-4.181654000000,,Loctudy - Finistère,37007,observation-25391148-7015-45ef-a974-3ebc9b4f5781-6,https://biolit.fr/observations/observation-25391148-7015-45ef-a974-3ebc9b4f5781-6/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20200726_151855.jpg,,TRUE, +N1,59015,sortie-ef8c2ede-1f05-4fa6-a5cd-122ac1bb7b3d,https://biolit.fr/sorties/sortie-ef8c2ede-1f05-4fa6-a5cd-122ac1bb7b3d/,elsa.couaillier,,11/19/2020 0:00,14.0:45,15.0000000,44.756108000000,-1.13491300000,,plage d’arès ,37009,observation-ef8c2ede-1f05-4fa6-a5cd-122ac1bb7b3d,https://biolit.fr/observations/observation-ef8c2ede-1f05-4fa6-a5cd-122ac1bb7b3d/,,,,https://biolit.fr/wp-content/uploads/2023/07/2386957C-83B8-43AD-ABF7-34C56D9094ED-scaled.jpeg,,FALSE, +N1,59015,sortie-ef8c2ede-1f05-4fa6-a5cd-122ac1bb7b3d,https://biolit.fr/sorties/sortie-ef8c2ede-1f05-4fa6-a5cd-122ac1bb7b3d/,elsa.couaillier,,11/19/2020 0:00,14.0:45,15.0000000,44.756108000000,-1.13491300000,,plage d’arès ,37011,observation-ef8c2ede-1f05-4fa6-a5cd-122ac1bb7b3d-2,https://biolit.fr/observations/observation-ef8c2ede-1f05-4fa6-a5cd-122ac1bb7b3d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/D44EB31B-B049-4A20-97BC-AF27EE8AE212-scaled.jpeg,,FALSE, +N1,59016,sortie-44ca749d-1984-4c48-8e50-dd973fd1b992,https://biolit.fr/sorties/sortie-44ca749d-1984-4c48-8e50-dd973fd1b992/,Phil,,10/21/2020 0:00,15.0:45,15.0000000,48.097087000000,-4.336080000000,,Douarnenez - Finistère,37015,observation-44ca749d-1984-4c48-8e50-dd973fd1b992,https://biolit.fr/observations/observation-44ca749d-1984-4c48-8e50-dd973fd1b992/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20201021_154816.jpg,,TRUE, +N1,59016,sortie-44ca749d-1984-4c48-8e50-dd973fd1b992,https://biolit.fr/sorties/sortie-44ca749d-1984-4c48-8e50-dd973fd1b992/,Phil,,10/21/2020 0:00,15.0:45,15.0000000,48.097087000000,-4.336080000000,,Douarnenez - Finistère,37017,observation-44ca749d-1984-4c48-8e50-dd973fd1b992-2,https://biolit.fr/observations/observation-44ca749d-1984-4c48-8e50-dd973fd1b992-2/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20201021_154911.jpg,,TRUE, +N1,59016,sortie-44ca749d-1984-4c48-8e50-dd973fd1b992,https://biolit.fr/sorties/sortie-44ca749d-1984-4c48-8e50-dd973fd1b992/,Phil,,10/21/2020 0:00,15.0:45,15.0000000,48.097087000000,-4.336080000000,,Douarnenez - Finistère,37019,observation-44ca749d-1984-4c48-8e50-dd973fd1b992-3,https://biolit.fr/observations/observation-44ca749d-1984-4c48-8e50-dd973fd1b992-3/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20201021_155037.jpg,,TRUE, +N1,59016,sortie-44ca749d-1984-4c48-8e50-dd973fd1b992,https://biolit.fr/sorties/sortie-44ca749d-1984-4c48-8e50-dd973fd1b992/,Phil,,10/21/2020 0:00,15.0:45,15.0000000,48.097087000000,-4.336080000000,,Douarnenez - Finistère,37021,observation-44ca749d-1984-4c48-8e50-dd973fd1b992-4,https://biolit.fr/observations/observation-44ca749d-1984-4c48-8e50-dd973fd1b992-4/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/20201021_155115.jpg,,TRUE, +N1,59017,sortie-30d53143-602f-432b-9bda-2169c8770dc1,https://biolit.fr/sorties/sortie-30d53143-602f-432b-9bda-2169c8770dc1/,Phil,,3/13/2020 0:00,13.0000000,14.000005,47.799075000000,-4.179289000000,,Loctudy - Finistère,37023,observation-30d53143-602f-432b-9bda-2169c8770dc1,https://biolit.fr/observations/observation-30d53143-602f-432b-9bda-2169c8770dc1/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_140254.jpg,,FALSE, +N1,59017,sortie-30d53143-602f-432b-9bda-2169c8770dc1,https://biolit.fr/sorties/sortie-30d53143-602f-432b-9bda-2169c8770dc1/,Phil,,3/13/2020 0:00,13.0000000,14.000005,47.799075000000,-4.179289000000,,Loctudy - Finistère,37025,observation-30d53143-602f-432b-9bda-2169c8770dc1-2,https://biolit.fr/observations/observation-30d53143-602f-432b-9bda-2169c8770dc1-2/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/20200313_140415.jpg,,TRUE, +N1,59017,sortie-30d53143-602f-432b-9bda-2169c8770dc1,https://biolit.fr/sorties/sortie-30d53143-602f-432b-9bda-2169c8770dc1/,Phil,,3/13/2020 0:00,13.0000000,14.000005,47.799075000000,-4.179289000000,,Loctudy - Finistère,37027,observation-30d53143-602f-432b-9bda-2169c8770dc1-3,https://biolit.fr/observations/observation-30d53143-602f-432b-9bda-2169c8770dc1-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_140440.jpg,,FALSE, +N1,59017,sortie-30d53143-602f-432b-9bda-2169c8770dc1,https://biolit.fr/sorties/sortie-30d53143-602f-432b-9bda-2169c8770dc1/,Phil,,3/13/2020 0:00,13.0000000,14.000005,47.799075000000,-4.179289000000,,Loctudy - Finistère,37029,observation-30d53143-602f-432b-9bda-2169c8770dc1-4,https://biolit.fr/observations/observation-30d53143-602f-432b-9bda-2169c8770dc1-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_140744.jpg,,FALSE, +N1,59017,sortie-30d53143-602f-432b-9bda-2169c8770dc1,https://biolit.fr/sorties/sortie-30d53143-602f-432b-9bda-2169c8770dc1/,Phil,,3/13/2020 0:00,13.0000000,14.000005,47.799075000000,-4.179289000000,,Loctudy - Finistère,37031,observation-30d53143-602f-432b-9bda-2169c8770dc1-5,https://biolit.fr/observations/observation-30d53143-602f-432b-9bda-2169c8770dc1-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_140749.jpg,,FALSE, +N1,59018,sortie-8ac17185-be05-49ee-beda-191086c345f0,https://biolit.fr/sorties/sortie-8ac17185-be05-49ee-beda-191086c345f0/,Phil,,10/22/2020 0:00,13.0:45,13.0000000,47.791938000000,-4.28722600000,,Guilvinec - Finistère,37033,observation-8ac17185-be05-49ee-beda-191086c345f0,https://biolit.fr/observations/observation-8ac17185-be05-49ee-beda-191086c345f0/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/20201022_135200.jpg,,TRUE, +N1,59018,sortie-8ac17185-be05-49ee-beda-191086c345f0,https://biolit.fr/sorties/sortie-8ac17185-be05-49ee-beda-191086c345f0/,Phil,,10/22/2020 0:00,13.0:45,13.0000000,47.791938000000,-4.28722600000,,Guilvinec - Finistère,37035,observation-8ac17185-be05-49ee-beda-191086c345f0-2,https://biolit.fr/observations/observation-8ac17185-be05-49ee-beda-191086c345f0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20201022_135029.jpg,,FALSE, +N1,59018,sortie-8ac17185-be05-49ee-beda-191086c345f0,https://biolit.fr/sorties/sortie-8ac17185-be05-49ee-beda-191086c345f0/,Phil,,10/22/2020 0:00,13.0:45,13.0000000,47.791938000000,-4.28722600000,,Guilvinec - Finistère,37037,observation-8ac17185-be05-49ee-beda-191086c345f0-3,https://biolit.fr/observations/observation-8ac17185-be05-49ee-beda-191086c345f0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20201022_134844.jpg,,FALSE, +N1,59019,sortie-d380185d-ce30-4449-af9c-49e09e90559a,https://biolit.fr/sorties/sortie-d380185d-ce30-4449-af9c-49e09e90559a/,Phil,,7/26/2020 0:00,15.000005,15.0:15,47.800210000000,-4.182001000000,,Loctudy - Finistère,37039,observation-d380185d-ce30-4449-af9c-49e09e90559a,https://biolit.fr/observations/observation-d380185d-ce30-4449-af9c-49e09e90559a/,Rivularia bullata,Rivulaire en forme de bulle,,https://biolit.fr/wp-content/uploads/2023/07/20200726_151346.jpg,,TRUE, +N1,59019,sortie-d380185d-ce30-4449-af9c-49e09e90559a,https://biolit.fr/sorties/sortie-d380185d-ce30-4449-af9c-49e09e90559a/,Phil,,7/26/2020 0:00,15.000005,15.0:15,47.800210000000,-4.182001000000,,Loctudy - Finistère,37041,observation-d380185d-ce30-4449-af9c-49e09e90559a-2,https://biolit.fr/observations/observation-d380185d-ce30-4449-af9c-49e09e90559a-2/,Rivularia bullata,Rivulaire en forme de bulle,,https://biolit.fr/wp-content/uploads/2023/07/20200726_151340.jpg,,TRUE, +N1,59019,sortie-d380185d-ce30-4449-af9c-49e09e90559a,https://biolit.fr/sorties/sortie-d380185d-ce30-4449-af9c-49e09e90559a/,Phil,,7/26/2020 0:00,15.000005,15.0:15,47.800210000000,-4.182001000000,,Loctudy - Finistère,37043,observation-d380185d-ce30-4449-af9c-49e09e90559a-3,https://biolit.fr/observations/observation-d380185d-ce30-4449-af9c-49e09e90559a-3/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200726_151114.jpg,,TRUE, +N1,59019,sortie-d380185d-ce30-4449-af9c-49e09e90559a,https://biolit.fr/sorties/sortie-d380185d-ce30-4449-af9c-49e09e90559a/,Phil,,7/26/2020 0:00,15.000005,15.0:15,47.800210000000,-4.182001000000,,Loctudy - Finistère,37045,observation-d380185d-ce30-4449-af9c-49e09e90559a-4,https://biolit.fr/observations/observation-d380185d-ce30-4449-af9c-49e09e90559a-4/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/20200726_150753.jpg,,TRUE, +N1,59020,sortie-48b9a83b-e9e8-4db2-9af2-42f3dc0db70c,https://biolit.fr/sorties/sortie-48b9a83b-e9e8-4db2-9af2-42f3dc0db70c/,Ville de Marseille,,11/03/2020,16.0000000,16.0000000,43.253292000000,5.374314000000,,"plages du prado, Marseille",37047,observation-48b9a83b-e9e8-4db2-9af2-42f3dc0db70c,https://biolit.fr/observations/observation-48b9a83b-e9e8-4db2-9af2-42f3dc0db70c/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P1130049-scaled.jpg,,TRUE, +N1,59020,sortie-48b9a83b-e9e8-4db2-9af2-42f3dc0db70c,https://biolit.fr/sorties/sortie-48b9a83b-e9e8-4db2-9af2-42f3dc0db70c/,Ville de Marseille,,11/03/2020,16.0000000,16.0000000,43.253292000000,5.374314000000,,"plages du prado, Marseille",37049,observation-48b9a83b-e9e8-4db2-9af2-42f3dc0db70c-2,https://biolit.fr/observations/observation-48b9a83b-e9e8-4db2-9af2-42f3dc0db70c-2/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P1130056-scaled.jpg,,TRUE, +N1,59021,sortie-b4ed499c-52ed-4281-adef-4303a04c6290,https://biolit.fr/sorties/sortie-b4ed499c-52ed-4281-adef-4303a04c6290/,fchecler,,10/17/2020 0:00,12.0000000,17.0000000,43.284618000000,5.313096000000,,Iles du frioul 13007 marseille,37051,observation-b4ed499c-52ed-4281-adef-4303a04c6290,https://biolit.fr/observations/observation-b4ed499c-52ed-4281-adef-4303a04c6290/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20201020_194319-scaled.jpg,,FALSE, +N1,59021,sortie-b4ed499c-52ed-4281-adef-4303a04c6290,https://biolit.fr/sorties/sortie-b4ed499c-52ed-4281-adef-4303a04c6290/,fchecler,,10/17/2020 0:00,12.0000000,17.0000000,43.284618000000,5.313096000000,,Iles du frioul 13007 marseille,37053,observation-b4ed499c-52ed-4281-adef-4303a04c6290-2,https://biolit.fr/observations/observation-b4ed499c-52ed-4281-adef-4303a04c6290-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20201020_194351-scaled.jpg,,FALSE, +N1,59021,sortie-b4ed499c-52ed-4281-adef-4303a04c6290,https://biolit.fr/sorties/sortie-b4ed499c-52ed-4281-adef-4303a04c6290/,fchecler,,10/17/2020 0:00,12.0000000,17.0000000,43.284618000000,5.313096000000,,Iles du frioul 13007 marseille,37055,observation-b4ed499c-52ed-4281-adef-4303a04c6290-3,https://biolit.fr/observations/observation-b4ed499c-52ed-4281-adef-4303a04c6290-3/,Salvia rosmarinus,Romarin,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20201020_194411-scaled.jpg,,TRUE, +N1,59021,sortie-b4ed499c-52ed-4281-adef-4303a04c6290,https://biolit.fr/sorties/sortie-b4ed499c-52ed-4281-adef-4303a04c6290/,fchecler,,10/17/2020 0:00,12.0000000,17.0000000,43.284618000000,5.313096000000,,Iles du frioul 13007 marseille,37057,observation-b4ed499c-52ed-4281-adef-4303a04c6290-4,https://biolit.fr/observations/observation-b4ed499c-52ed-4281-adef-4303a04c6290-4/,Medicago arborea,Luzerne arborescente,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20201020_194427-scaled.jpg,,TRUE, +N1,59021,sortie-b4ed499c-52ed-4281-adef-4303a04c6290,https://biolit.fr/sorties/sortie-b4ed499c-52ed-4281-adef-4303a04c6290/,fchecler,,10/17/2020 0:00,12.0000000,17.0000000,43.284618000000,5.313096000000,,Iles du frioul 13007 marseille,37059,observation-b4ed499c-52ed-4281-adef-4303a04c6290-5,https://biolit.fr/observations/observation-b4ed499c-52ed-4281-adef-4303a04c6290-5/,Reichardia picroides,Cousteline,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20201020_194441-scaled.jpg,,TRUE, +N1,59021,sortie-b4ed499c-52ed-4281-adef-4303a04c6290,https://biolit.fr/sorties/sortie-b4ed499c-52ed-4281-adef-4303a04c6290/,fchecler,,10/17/2020 0:00,12.0000000,17.0000000,43.284618000000,5.313096000000,,Iles du frioul 13007 marseille,37061,observation-b4ed499c-52ed-4281-adef-4303a04c6290-6,https://biolit.fr/observations/observation-b4ed499c-52ed-4281-adef-4303a04c6290-6/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20201020_194634-scaled.jpg,,TRUE, +N1,59021,sortie-b4ed499c-52ed-4281-adef-4303a04c6290,https://biolit.fr/sorties/sortie-b4ed499c-52ed-4281-adef-4303a04c6290/,fchecler,,10/17/2020 0:00,12.0000000,17.0000000,43.284618000000,5.313096000000,,Iles du frioul 13007 marseille,37063,observation-b4ed499c-52ed-4281-adef-4303a04c6290-7,https://biolit.fr/observations/observation-b4ed499c-52ed-4281-adef-4303a04c6290-7/,Larus michahellis,Goéland leucophée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20201020_194936-scaled.jpg,,TRUE, +N1,59021,sortie-b4ed499c-52ed-4281-adef-4303a04c6290,https://biolit.fr/sorties/sortie-b4ed499c-52ed-4281-adef-4303a04c6290/,fchecler,,10/17/2020 0:00,12.0000000,17.0000000,43.284618000000,5.313096000000,,Iles du frioul 13007 marseille,37065,observation-b4ed499c-52ed-4281-adef-4303a04c6290-8,https://biolit.fr/observations/observation-b4ed499c-52ed-4281-adef-4303a04c6290-8/,Pistacia lentiscus,Pistachier lentisque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20201020_195056-scaled.jpg,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37069,observation-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37071,observation-e240f695-81d4-466f-82de-a51c839be202-2,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea_1.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37073,observation-e240f695-81d4-466f-82de-a51c839be202-3,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-3/,Actinia striata,Actinie striée,,https://biolit.fr/wp-content/uploads/2023/07/Actinia striatula.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37075,observation-e240f695-81d4-466f-82de-a51c839be202-4,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-4/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/anémone sp_1.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37077,observation-e240f695-81d4-466f-82de-a51c839be202-5,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-5/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/Anthopleura balii_0.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37078,observation-e240f695-81d4-466f-82de-a51c839be202-6,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-6/,Anthus petrosus,Pipit maritime,,https://biolit.fr/wp-content/uploads/2023/07/Antus petrosus.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37080,observation-e240f695-81d4-466f-82de-a51c839be202-7,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-7/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_5.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37082,observation-e240f695-81d4-466f-82de-a51c839be202-8,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-8/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_1.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37084,observation-e240f695-81d4-466f-82de-a51c839be202-9,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/aucune idée mais petricola lithophaga.PNG,,FALSE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37086,observation-e240f695-81d4-466f-82de-a51c839be202-10,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-10/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/Aulactinia verrucosa_1.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37088,observation-e240f695-81d4-466f-82de-a51c839be202-11,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-11/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_0.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37090,observation-e240f695-81d4-466f-82de-a51c839be202-12,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-12/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_2.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37092,observation-e240f695-81d4-466f-82de-a51c839be202-13,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-13/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_1.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37094,observation-e240f695-81d4-466f-82de-a51c839be202-14,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-14/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_2.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37096,observation-e240f695-81d4-466f-82de-a51c839be202-15,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-15/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/haliotis tuberculata_1.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37097,observation-e240f695-81d4-466f-82de-a51c839be202-16,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-16/,Idotea balthica,Idotée de la Baltique,,https://biolit.fr/wp-content/uploads/2023/07/Idotea sp.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37099,observation-e240f695-81d4-466f-82de-a51c839be202-17,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/laminaria sp-scaled.jpg,,FALSE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37101,observation-e240f695-81d4-466f-82de-a51c839be202-19,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-19/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Liocarcinus sp_0.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37103,observation-e240f695-81d4-466f-82de-a51c839be202-20,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-20/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_3.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37105,observation-e240f695-81d4-466f-82de-a51c839be202-21,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-21/,Metridium senile,Œillet de mer,,https://biolit.fr/wp-content/uploads/2023/07/metridium sp.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37106,observation-e240f695-81d4-466f-82de-a51c839be202-22,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-22/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_4.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37108,observation-e240f695-81d4-466f-82de-a51c839be202-23,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-23/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_4.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37110,observation-e240f695-81d4-466f-82de-a51c839be202-24,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-24/,Nerophis ophidion,Nérophis ophidion,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis ophidion_1.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37112,observation-e240f695-81d4-466f-82de-a51c839be202-25,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-25/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus avec ponte.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37114,observation-e240f695-81d4-466f-82de-a51c839be202-26,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-26/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Paracentrotus lividus_2.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37116,observation-e240f695-81d4-466f-82de-a51c839be202-27,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-27/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_2.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37118,observation-e240f695-81d4-466f-82de-a51c839be202-28,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-28/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Sagartia sp_0.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37120,observation-e240f695-81d4-466f-82de-a51c839be202-29,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-29/,Tectura virginea,Acmée à damier rose,,https://biolit.fr/wp-content/uploads/2023/07/Tectura virginea_0.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37122,observation-e240f695-81d4-466f-82de-a51c839be202-30,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-30/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa_1.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37124,observation-e240f695-81d4-466f-82de-a51c839be202-31,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ver sp-scaled.jpg,,FALSE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37125,observation-e240f695-81d4-466f-82de-a51c839be202-32,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-32/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_3.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37127,observation-e240f695-81d4-466f-82de-a51c839be202-33,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/xantho sp.PNG,,FALSE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37129,observation-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e/,Chondria coerulescens,Chondria bleue,,https://biolit.fr/wp-content/uploads/2023/07/algue bleue.PNG,,TRUE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37131,observation-7896520f-e1ae-4f78-825f-d6883172d64e-2,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/anémone pe metridium.PNG,,FALSE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37133,observation-7896520f-e1ae-4f78-825f-d6883172d64e-3,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_1.PNG,,TRUE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37137,observation-7896520f-e1ae-4f78-825f-d6883172d64e-5,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie sp_2.PNG,,FALSE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37138,observation-7896520f-e1ae-4f78-825f-d6883172d64e-6,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-6/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_0.PNG,,TRUE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37140,observation-7896520f-e1ae-4f78-825f-d6883172d64e-7,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-7/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_4.PNG,,TRUE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37142,observation-7896520f-e1ae-4f78-825f-d6883172d64e-8,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge pe.PNG,,FALSE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37144,observation-7896520f-e1ae-4f78-825f-d6883172d64e-9,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 1.PNG,,FALSE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37146,observation-7896520f-e1ae-4f78-825f-d6883172d64e-10,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 2_1.PNG,,FALSE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37148,observation-7896520f-e1ae-4f78-825f-d6883172d64e-11,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_4.PNG,,FALSE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37150,observation-7896520f-e1ae-4f78-825f-d6883172d64e-12,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-12/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/Galatea squamifera.PNG,,TRUE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37154,observation-7896520f-e1ae-4f78-825f-d6883172d64e-14,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-14/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/Haliotis tuberculata_0.PNG,,TRUE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37156,observation-7896520f-e1ae-4f78-825f-d6883172d64e-15,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Heteranomia squamula.PNG,,FALSE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37160,observation-7896520f-e1ae-4f78-825f-d6883172d64e-17,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-17/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_2.PNG,,TRUE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37162,observation-7896520f-e1ae-4f78-825f-d6883172d64e-18,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/méduse_0.jpg,,FALSE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37165,observation-7896520f-e1ae-4f78-825f-d6883172d64e-20,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-20/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_3.PNG,,TRUE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37167,observation-7896520f-e1ae-4f78-825f-d6883172d64e-21,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-21/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis ophidion_0.PNG,,TRUE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37169,observation-7896520f-e1ae-4f78-825f-d6883172d64e-22,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-22/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/ophiure sp_0.PNG,,TRUE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37171,observation-7896520f-e1ae-4f78-825f-d6883172d64e-23,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-23/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/phorcus lineatus et cereus pedunculatus.PNG,,TRUE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37173,observation-7896520f-e1ae-4f78-825f-d6883172d64e-24,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-24/,Pilumnus hirtellus,Pilumne hirsute,,https://biolit.fr/wp-content/uploads/2023/07/Pilemnus hirtellus.PNG,,TRUE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37175,observation-7896520f-e1ae-4f78-825f-d6883172d64e-25,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-25/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/Pisidia longicornis_0.PNG,,TRUE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37177,observation-7896520f-e1ae-4f78-825f-d6883172d64e-26,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/Poisson sp.PNG,,FALSE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37178,observation-7896520f-e1ae-4f78-825f-d6883172d64e-27,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-27/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platy et athanas nitescens.PNG,,TRUE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37180,observation-7896520f-e1ae-4f78-825f-d6883172d64e-28,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-28/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_3.PNG,,TRUE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37182,observation-7896520f-e1ae-4f78-825f-d6883172d64e-29,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-29/,Tectura virginea,Acmée à damier rose,,https://biolit.fr/wp-content/uploads/2023/07/tectura virginea.PNG,,TRUE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37187,observation-7896520f-e1ae-4f78-825f-d6883172d64e-32,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-32/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/Zostera marina.PNG,,TRUE, +N1,59024,sortie-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747,https://biolit.fr/sorties/sortie-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747/,fchecler,,10/19/2020 0:00,12.0000000,14.0000000,43.214985000000,5.3429540000,,"Anse de la maronaise, Marseille 13008",37189,observation-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747,https://biolit.fr/observations/observation-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747/,Corvus corone,Corneille noire,,https://biolit.fr/wp-content/uploads/2023/07/169A4948-scaled.jpg,,TRUE, +N1,59024,sortie-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747,https://biolit.fr/sorties/sortie-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747/,fchecler,,10/19/2020 0:00,12.0000000,14.0000000,43.214985000000,5.3429540000,,"Anse de la maronaise, Marseille 13008",37191,observation-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747-2,https://biolit.fr/observations/observation-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747-2/,Salvia rosmarinus,Romarin,,https://biolit.fr/wp-content/uploads/2023/07/169A4955-scaled.jpg,,TRUE, +N1,59024,sortie-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747,https://biolit.fr/sorties/sortie-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747/,fchecler,,10/19/2020 0:00,12.0000000,14.0000000,43.214985000000,5.3429540000,,"Anse de la maronaise, Marseille 13008",37193,observation-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747-3,https://biolit.fr/observations/observation-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747-3/,Agave americana,Agave d'Amérique,,https://biolit.fr/wp-content/uploads/2023/07/169A4967-scaled.jpg,,TRUE, +N1,59024,sortie-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747,https://biolit.fr/sorties/sortie-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747/,fchecler,,10/19/2020 0:00,12.0000000,14.0000000,43.214985000000,5.3429540000,,"Anse de la maronaise, Marseille 13008",37195,observation-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747-4,https://biolit.fr/observations/observation-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747-4/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/169A4969-scaled.jpg,,TRUE, +N1,59024,sortie-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747,https://biolit.fr/sorties/sortie-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747/,fchecler,,10/19/2020 0:00,12.0000000,14.0000000,43.214985000000,5.3429540000,,"Anse de la maronaise, Marseille 13008",37197,observation-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747-5,https://biolit.fr/observations/observation-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747-5/,Alcedo atthis,Martin-pêcheur d'Europe,,https://biolit.fr/wp-content/uploads/2023/07/169A4979.JPG,,TRUE, +N1,59024,sortie-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747,https://biolit.fr/sorties/sortie-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747/,fchecler,,10/19/2020 0:00,12.0000000,14.0000000,43.214985000000,5.3429540000,,"Anse de la maronaise, Marseille 13008",37199,observation-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747-6,https://biolit.fr/observations/observation-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747-6/,Alcedo atthis,Martin-pêcheur d'Europe,,https://biolit.fr/wp-content/uploads/2023/07/169A4981.JPG,,TRUE, +N1,59024,sortie-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747,https://biolit.fr/sorties/sortie-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747/,fchecler,,10/19/2020 0:00,12.0000000,14.0000000,43.214985000000,5.3429540000,,"Anse de la maronaise, Marseille 13008",37201,observation-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747-7,https://biolit.fr/observations/observation-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/169A4992-scaled.jpg,,FALSE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37205,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-2,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea_0.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37207,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-3,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-3/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia sp 1.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37209,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-4,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Actinia sp.PNG,,FALSE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37211,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-5,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-5/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_0.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37213,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-6,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie sp.PNG,,FALSE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37215,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-7,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-7/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/asterina gibbosa_3.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37216,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-8,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-8/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37218,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-9,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-9/,Terpios gelatinosus,Eponge encroûtante bleue,,https://biolit.fr/wp-content/uploads/2023/07/éponge bleue.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37220,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-10,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-10/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/2023/07/Fort échouage de laminaria sp.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37222,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-11,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-11/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/Gobie sp_0.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37224,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-12,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-12/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_3.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37228,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-14,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-14/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_2.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37230,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-15,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-15/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/Pagurus sp.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37232,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-16,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-16/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Paracentrotus lividus_1.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37234,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-17,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-17/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Patella caerulea pe.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37236,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-18,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-18/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Patella ulyssiponensis_0.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37238,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-19,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-19/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus_0.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37240,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-20,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-20/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_1.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37242,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-21,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-21/,Sphaeromatidae (famille),Sphéromiens,,https://biolit.fr/wp-content/uploads/2023/07/Sphaeromatidae.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37244,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-22,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-22/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_1.PNG,,TRUE, +N1,59026,sortie-00dabd16-6719-41c0-badf-b95c2e077665,https://biolit.fr/sorties/sortie-00dabd16-6719-41c0-badf-b95c2e077665/,Roman,,10/10/2020,15.0000000,16.0000000,47.68955200000,-3.352215000000,,Gâvres,37246,observation-00dabd16-6719-41c0-badf-b95c2e077665,https://biolit.fr/observations/observation-00dabd16-6719-41c0-badf-b95c2e077665/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea.PNG,,TRUE, +N1,59026,sortie-00dabd16-6719-41c0-badf-b95c2e077665,https://biolit.fr/sorties/sortie-00dabd16-6719-41c0-badf-b95c2e077665/,Roman,,10/10/2020,15.0000000,16.0000000,47.68955200000,-3.352215000000,,Gâvres,37248,observation-00dabd16-6719-41c0-badf-b95c2e077665-2,https://biolit.fr/observations/observation-00dabd16-6719-41c0-badf-b95c2e077665-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis.jpg,,TRUE, +N1,59026,sortie-00dabd16-6719-41c0-badf-b95c2e077665,https://biolit.fr/sorties/sortie-00dabd16-6719-41c0-badf-b95c2e077665/,Roman,,10/10/2020,15.0000000,16.0000000,47.68955200000,-3.352215000000,,Gâvres,37249,observation-00dabd16-6719-41c0-badf-b95c2e077665-3,https://biolit.fr/observations/observation-00dabd16-6719-41c0-badf-b95c2e077665-3/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/Ardea cinerea.PNG,,TRUE, +N1,59026,sortie-00dabd16-6719-41c0-badf-b95c2e077665,https://biolit.fr/sorties/sortie-00dabd16-6719-41c0-badf-b95c2e077665/,Roman,,10/10/2020,15.0000000,16.0000000,47.68955200000,-3.352215000000,,Gâvres,37251,observation-00dabd16-6719-41c0-badf-b95c2e077665-4,https://biolit.fr/observations/observation-00dabd16-6719-41c0-badf-b95c2e077665-4/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/Aulactinia verrucosa_0.PNG,,TRUE, +N1,59026,sortie-00dabd16-6719-41c0-badf-b95c2e077665,https://biolit.fr/sorties/sortie-00dabd16-6719-41c0-badf-b95c2e077665/,Roman,,10/10/2020,15.0000000,16.0000000,47.68955200000,-3.352215000000,,Gâvres,37253,observation-00dabd16-6719-41c0-badf-b95c2e077665-5,https://biolit.fr/observations/observation-00dabd16-6719-41c0-badf-b95c2e077665-5/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_1.PNG,,TRUE, +N1,59026,sortie-00dabd16-6719-41c0-badf-b95c2e077665,https://biolit.fr/sorties/sortie-00dabd16-6719-41c0-badf-b95c2e077665/,Roman,,10/10/2020,15.0000000,16.0000000,47.68955200000,-3.352215000000,,Gâvres,37255,observation-00dabd16-6719-41c0-badf-b95c2e077665-6,https://biolit.fr/observations/observation-00dabd16-6719-41c0-badf-b95c2e077665-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Clavelina pe.PNG,,FALSE, +N1,59026,sortie-00dabd16-6719-41c0-badf-b95c2e077665,https://biolit.fr/sorties/sortie-00dabd16-6719-41c0-badf-b95c2e077665/,Roman,,10/10/2020,15.0000000,16.0000000,47.68955200000,-3.352215000000,,Gâvres,37257,observation-00dabd16-6719-41c0-badf-b95c2e077665-7,https://biolit.fr/observations/observation-00dabd16-6719-41c0-badf-b95c2e077665-7/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Gibbula cinerea.PNG,,TRUE, +N1,59026,sortie-00dabd16-6719-41c0-badf-b95c2e077665,https://biolit.fr/sorties/sortie-00dabd16-6719-41c0-badf-b95c2e077665/,Roman,,10/10/2020,15.0000000,16.0000000,47.68955200000,-3.352215000000,,Gâvres,37259,observation-00dabd16-6719-41c0-badf-b95c2e077665-8,https://biolit.fr/observations/observation-00dabd16-6719-41c0-badf-b95c2e077665-8/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/Haliotis tuberculata.PNG,,TRUE, +N1,59026,sortie-00dabd16-6719-41c0-badf-b95c2e077665,https://biolit.fr/sorties/sortie-00dabd16-6719-41c0-badf-b95c2e077665/,Roman,,10/10/2020,15.0000000,16.0000000,47.68955200000,-3.352215000000,,Gâvres,37261,observation-00dabd16-6719-41c0-badf-b95c2e077665-9,https://biolit.fr/observations/observation-00dabd16-6719-41c0-badf-b95c2e077665-9/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/mytilus edulis_2.PNG,,TRUE, +N1,59026,sortie-00dabd16-6719-41c0-badf-b95c2e077665,https://biolit.fr/sorties/sortie-00dabd16-6719-41c0-badf-b95c2e077665/,Roman,,10/10/2020,15.0000000,16.0000000,47.68955200000,-3.352215000000,,Gâvres,37262,observation-00dabd16-6719-41c0-badf-b95c2e077665-10,https://biolit.fr/observations/observation-00dabd16-6719-41c0-badf-b95c2e077665-10/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_1.PNG,,TRUE, +N1,59026,sortie-00dabd16-6719-41c0-badf-b95c2e077665,https://biolit.fr/sorties/sortie-00dabd16-6719-41c0-badf-b95c2e077665/,Roman,,10/10/2020,15.0000000,16.0000000,47.68955200000,-3.352215000000,,Gâvres,37264,observation-00dabd16-6719-41c0-badf-b95c2e077665-11,https://biolit.fr/observations/observation-00dabd16-6719-41c0-badf-b95c2e077665-11/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus.jpg,,TRUE, +N1,59026,sortie-00dabd16-6719-41c0-badf-b95c2e077665,https://biolit.fr/sorties/sortie-00dabd16-6719-41c0-badf-b95c2e077665/,Roman,,10/10/2020,15.0000000,16.0000000,47.68955200000,-3.352215000000,,Gâvres,37265,observation-00dabd16-6719-41c0-badf-b95c2e077665-12,https://biolit.fr/observations/observation-00dabd16-6719-41c0-badf-b95c2e077665-12/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Paracentrotus lividus_0.PNG,,TRUE, +N1,59026,sortie-00dabd16-6719-41c0-badf-b95c2e077665,https://biolit.fr/sorties/sortie-00dabd16-6719-41c0-badf-b95c2e077665/,Roman,,10/10/2020,15.0000000,16.0000000,47.68955200000,-3.352215000000,,Gâvres,37267,observation-00dabd16-6719-41c0-badf-b95c2e077665-13,https://biolit.fr/observations/observation-00dabd16-6719-41c0-badf-b95c2e077665-13/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Patella ulyssiponensis.PNG,,TRUE, +N1,59026,sortie-00dabd16-6719-41c0-badf-b95c2e077665,https://biolit.fr/sorties/sortie-00dabd16-6719-41c0-badf-b95c2e077665/,Roman,,10/10/2020,15.0000000,16.0000000,47.68955200000,-3.352215000000,,Gâvres,37269,observation-00dabd16-6719-41c0-badf-b95c2e077665-14,https://biolit.fr/observations/observation-00dabd16-6719-41c0-badf-b95c2e077665-14/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus-scaled.jpg,,TRUE, +N1,59026,sortie-00dabd16-6719-41c0-badf-b95c2e077665,https://biolit.fr/sorties/sortie-00dabd16-6719-41c0-badf-b95c2e077665/,Roman,,10/10/2020,15.0000000,16.0000000,47.68955200000,-3.352215000000,,Gâvres,37270,observation-00dabd16-6719-41c0-badf-b95c2e077665-15,https://biolit.fr/observations/observation-00dabd16-6719-41c0-badf-b95c2e077665-15/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_2.PNG,,TRUE, +N1,59027,sortie-487aa213-b88e-4944-a9b4-3a8cf1046053,https://biolit.fr/sorties/sortie-487aa213-b88e-4944-a9b4-3a8cf1046053/,Associu Mare Vivu,,7/25/2020 0:00,17.0000000,18.0000000,42.57594700000,8.723827000000,,Plage d'oscelluccia,37272,observation-487aa213-b88e-4944-a9b4-3a8cf1046053,https://biolit.fr/observations/observation-487aa213-b88e-4944-a9b4-3a8cf1046053/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_7724-scaled.jpg,,TRUE, +N1,59027,sortie-487aa213-b88e-4944-a9b4-3a8cf1046053,https://biolit.fr/sorties/sortie-487aa213-b88e-4944-a9b4-3a8cf1046053/,Associu Mare Vivu,,7/25/2020 0:00,17.0000000,18.0000000,42.57594700000,8.723827000000,,Plage d'oscelluccia,37274,observation-487aa213-b88e-4944-a9b4-3a8cf1046053-2,https://biolit.fr/observations/observation-487aa213-b88e-4944-a9b4-3a8cf1046053-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC_7722-scaled.jpg,,TRUE, +N1,59028,sortie-b74ce074-36bd-40ce-86cc-90538af0089b,https://biolit.fr/sorties/sortie-b74ce074-36bd-40ce-86cc-90538af0089b/,Caterina Casagranda,,8/28/2020 0:00,16.0000000,17.0000000,43.240887000000,5.362030000000,,Platier de la Batterie de Montredon à Marseille,37276,observation-b74ce074-36bd-40ce-86cc-90538af0089b,https://biolit.fr/observations/observation-b74ce074-36bd-40ce-86cc-90538af0089b/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algues filamenteuses3.jpg,,FALSE, +N1,59028,sortie-b74ce074-36bd-40ce-86cc-90538af0089b,https://biolit.fr/sorties/sortie-b74ce074-36bd-40ce-86cc-90538af0089b/,Caterina Casagranda,,8/28/2020 0:00,16.0000000,17.0000000,43.240887000000,5.362030000000,,Platier de la Batterie de Montredon à Marseille,37278,observation-b74ce074-36bd-40ce-86cc-90538af0089b-2,https://biolit.fr/observations/observation-b74ce074-36bd-40ce-86cc-90538af0089b-2/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/Balanes4.jpg,,TRUE, +N1,59028,sortie-b74ce074-36bd-40ce-86cc-90538af0089b,https://biolit.fr/sorties/sortie-b74ce074-36bd-40ce-86cc-90538af0089b/,Caterina Casagranda,,8/28/2020 0:00,16.0000000,17.0000000,43.240887000000,5.362030000000,,Platier de la Batterie de Montredon à Marseille,37280,observation-b74ce074-36bd-40ce-86cc-90538af0089b-3,https://biolit.fr/observations/observation-b74ce074-36bd-40ce-86cc-90538af0089b-3/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/Gibbules-scaled.jpg,,TRUE, +N1,59028,sortie-b74ce074-36bd-40ce-86cc-90538af0089b,https://biolit.fr/sorties/sortie-b74ce074-36bd-40ce-86cc-90538af0089b/,Caterina Casagranda,,8/28/2020 0:00,16.0000000,17.0000000,43.240887000000,5.362030000000,,Platier de la Batterie de Montredon à Marseille,37282,observation-b74ce074-36bd-40ce-86cc-90538af0089b-4,https://biolit.fr/observations/observation-b74ce074-36bd-40ce-86cc-90538af0089b-4/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/Mini Littorines2-scaled.jpg,,TRUE, +N1,59028,sortie-b74ce074-36bd-40ce-86cc-90538af0089b,https://biolit.fr/sorties/sortie-b74ce074-36bd-40ce-86cc-90538af0089b/,Caterina Casagranda,,8/28/2020 0:00,16.0000000,17.0000000,43.240887000000,5.362030000000,,Platier de la Batterie de Montredon à Marseille,37284,observation-b74ce074-36bd-40ce-86cc-90538af0089b-5,https://biolit.fr/observations/observation-b74ce074-36bd-40ce-86cc-90538af0089b-5/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/Oeil de Sainte Lucie.jpg,,TRUE, +N1,59028,sortie-b74ce074-36bd-40ce-86cc-90538af0089b,https://biolit.fr/sorties/sortie-b74ce074-36bd-40ce-86cc-90538af0089b/,Caterina Casagranda,,8/28/2020 0:00,16.0000000,17.0000000,43.240887000000,5.362030000000,,Platier de la Batterie de Montredon à Marseille,37286,observation-b74ce074-36bd-40ce-86cc-90538af0089b-6,https://biolit.fr/observations/observation-b74ce074-36bd-40ce-86cc-90538af0089b-6/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/Padines-scaled.jpg,,TRUE, +N1,59028,sortie-b74ce074-36bd-40ce-86cc-90538af0089b,https://biolit.fr/sorties/sortie-b74ce074-36bd-40ce-86cc-90538af0089b/,Caterina Casagranda,,8/28/2020 0:00,16.0000000,17.0000000,43.240887000000,5.362030000000,,Platier de la Batterie de Montredon à Marseille,37288,observation-b74ce074-36bd-40ce-86cc-90538af0089b-7,https://biolit.fr/observations/observation-b74ce074-36bd-40ce-86cc-90538af0089b-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelles4.jpg,,FALSE, +N1,59029,sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d,https://biolit.fr/sorties/sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d/,Guillaume Rinaldi,,9/30/2020 0:00,9.0000000,11.0000000,43.235903000000,5.359923000000,,Plage de la bonne brise ,37290,observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d,https://biolit.fr/observations/observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/117707464_456751101922934_2231301511349070754_n.jpg,,TRUE, +N1,59029,sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d,https://biolit.fr/sorties/sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d/,Guillaume Rinaldi,,9/30/2020 0:00,9.0000000,11.0000000,43.235903000000,5.359923000000,,Plage de la bonne brise ,37292,observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-2,https://biolit.fr/observations/observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-2/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/120344838_3636751869691837_1512371242321924422_n.jpg,,TRUE, +N1,59029,sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d,https://biolit.fr/sorties/sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d/,Guillaume Rinaldi,,9/30/2020 0:00,9.0000000,11.0000000,43.235903000000,5.359923000000,,Plage de la bonne brise ,37294,observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-3,https://biolit.fr/observations/observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/120391806_1462586300617534_6343817534726219243_n.jpg,,FALSE, +N1,59029,sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d,https://biolit.fr/sorties/sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d/,Guillaume Rinaldi,,9/30/2020 0:00,9.0000000,11.0000000,43.235903000000,5.359923000000,,Plage de la bonne brise ,37296,observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-4,https://biolit.fr/observations/observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/120461190_2786502508260169_5140468733552265046_n.jpg,,FALSE, +N1,59029,sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d,https://biolit.fr/sorties/sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d/,Guillaume Rinaldi,,9/30/2020 0:00,9.0000000,11.0000000,43.235903000000,5.359923000000,,Plage de la bonne brise ,37298,observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-5,https://biolit.fr/observations/observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/120508527_674609649851051_7688345427288328098_n.jpg,,FALSE, +N1,59029,sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d,https://biolit.fr/sorties/sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d/,Guillaume Rinaldi,,9/30/2020 0:00,9.0000000,11.0000000,43.235903000000,5.359923000000,,Plage de la bonne brise ,37300,observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-6,https://biolit.fr/observations/observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/120509454_3596588467038810_2058762975312796346_n.jpg,,FALSE, +N1,59029,sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d,https://biolit.fr/sorties/sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d/,Guillaume Rinaldi,,9/30/2020 0:00,9.0000000,11.0000000,43.235903000000,5.359923000000,,Plage de la bonne brise ,37302,observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-7,https://biolit.fr/observations/observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-7/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/120517241_659961921621500_6935626057980417151_n.jpg,,TRUE, +N1,59029,sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d,https://biolit.fr/sorties/sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d/,Guillaume Rinaldi,,9/30/2020 0:00,9.0000000,11.0000000,43.235903000000,5.359923000000,,Plage de la bonne brise ,37304,observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-8,https://biolit.fr/observations/observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/120562035_663516244275823_1692114345220822271_n.jpg,,FALSE, +N1,59029,sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d,https://biolit.fr/sorties/sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d/,Guillaume Rinaldi,,9/30/2020 0:00,9.0000000,11.0000000,43.235903000000,5.359923000000,,Plage de la bonne brise ,37306,observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-9,https://biolit.fr/observations/observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/120583646_984850175363696_6938570027173955154_n.jpg,,FALSE, +N1,59029,sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d,https://biolit.fr/sorties/sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d/,Guillaume Rinaldi,,9/30/2020 0:00,9.0000000,11.0000000,43.235903000000,5.359923000000,,Plage de la bonne brise ,37308,observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-10,https://biolit.fr/observations/observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/120597455_1113020122446162_8015756005964514008_n.jpg,,FALSE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37310,observation-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc/,,,,https://biolit.fr/wp-content/uploads/2023/07/Acanthocardia paucicostata.PNG,,FALSE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37312,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-2,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue rouge sp.PNG,,FALSE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37314,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-3,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-3/,Antalis vulgaris,Dentale,,https://biolit.fr/wp-content/uploads/2023/07/Antalis novemcostatum.PNG,,TRUE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37318,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-5,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Arcopagia crassa_0.PNG,,FALSE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37320,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-6,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capsella variegata_0.PNG,,FALSE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37322,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-7,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_0.PNG,,FALSE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37324,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-8,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Chlamys varia_1.PNG,,FALSE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37326,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-9,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Diodora graeca_0.PNG,,FALSE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37328,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-10,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Donax vittatus_0.PNG,,FALSE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37332,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-12,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gari depressa_2.PNG,,FALSE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37334,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-13,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gari fervensis.PNG,,FALSE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37336,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-14,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Laevicardium crassa.PNG,,FALSE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37338,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-15,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Limaria tuberculata.PNG,,FALSE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37342,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-17,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-17/,Mactra glauca,Mactre fauve,,https://biolit.fr/wp-content/uploads/2023/07/Mactra glauca.PNG,,TRUE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37344,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-18,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-18/,Pholas dactylus,Pholade,,https://biolit.fr/wp-content/uploads/2023/07/Pholas dactylus.PNG,,TRUE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37346,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-19,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/Spisula subtruncata.PNG,,FALSE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37348,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-20,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Striacta lactea.PNG,,FALSE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37350,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-21,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/Tellina donacina.PNG,,FALSE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37352,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-22,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-22/,Trivia arctica,Grain de café rose,,https://biolit.fr/wp-content/uploads/2023/07/Trivia arctica.PNG,,TRUE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37354,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-23,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-23/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/Trivia monacha.PNG,,TRUE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37356,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-24,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-24/,Turritellinella tricarinata,Turritelle commune,,https://biolit.fr/wp-content/uploads/2023/07/Turitella communis.PNG,,TRUE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37358,observation-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_0.PNG,,TRUE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37360,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-2,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie sp_1.PNG,,FALSE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37361,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-3,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-3/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens-scaled.jpg,,TRUE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37362,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-4,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-4/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_2.PNG,,TRUE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37364,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-5,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-5/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_0.PNG,,TRUE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37366,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-6,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-6/,Botrylloides spp. (leachii violaceus diegensis),Botrylles,,https://biolit.fr/wp-content/uploads/2023/07/Botrylloides spp.PNG,,TRUE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37368,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-7,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_0-scaled.jpg,,FALSE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37372,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-10,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_3.PNG,,FALSE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37374,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-11,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp1_0.PNG,,FALSE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37376,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-12,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gari depressa_1.PNG,,FALSE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37378,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-13,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-13/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/Gobie sp.PNG,,TRUE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37380,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-14,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-14/,Macropodia rostrata,Macropode rostré,,https://biolit.fr/wp-content/uploads/2023/07/Macropoda sp.PNG,,TRUE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37381,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-15,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-15/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_1.PNG,,TRUE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37383,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-16,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-16/,Nerophis ophidion,Nérophis ophidion,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis ophidion.PNG,,TRUE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37385,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-17,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-17/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/pagurus bernhardus_1.PNG,,TRUE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37387,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-18,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-18/,Scrobicularia plana,Scrobiculaire,,https://biolit.fr/wp-content/uploads/2023/07/Politapes rhomboides.PNG,,TRUE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37389,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-19,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-19/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_1.PNG,,TRUE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37391,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-20,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-20/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_0.PNG,,TRUE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37393,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-21,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-21/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_2.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37395,observation-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674/,,,,https://biolit.fr/wp-content/uploads/2023/07/Alcyonidium spp.PNG,,FALSE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37399,observation-aaa65334-6180-4f4c-8936-415d72452674-3,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-3/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/anthopleura balii.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37400,observation-aaa65334-6180-4f4c-8936-415d72452674-4,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-4/,Aplidium elegans,Fraise de mer,,https://biolit.fr/wp-content/uploads/2023/07/Aplidium elegans.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37402,observation-aaa65334-6180-4f4c-8936-415d72452674-5,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie sp_0.PNG,,FALSE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37403,observation-aaa65334-6180-4f4c-8936-415d72452674-6,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/ascidie sp1.PNG,,FALSE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37405,observation-aaa65334-6180-4f4c-8936-415d72452674-7,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-7/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_1-scaled.jpg,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37406,observation-aaa65334-6180-4f4c-8936-415d72452674-8,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-8/,Atelecyclus undecimdentatus,Grand crabe circulaire,,https://biolit.fr/wp-content/uploads/2023/07/Atelecyclus undecimdentatus.jpg,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37407,observation-aaa65334-6180-4f4c-8936-415d72452674-9,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-9/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_0.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37408,observation-aaa65334-6180-4f4c-8936-415d72452674-10,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-10/,Tubulipora plumosa,Tubulipore plumeux,,https://biolit.fr/wp-content/uploads/2023/07/bryozoaire sp.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37410,observation-aaa65334-6180-4f4c-8936-415d72452674-11,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-11/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/2023/07/Calliactis parasitica.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37412,observation-aaa65334-6180-4f4c-8936-415d72452674-12,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-12/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_1.jpg,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37413,observation-aaa65334-6180-4f4c-8936-415d72452674-13,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-13/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/Colpomenia.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37415,observation-aaa65334-6180-4f4c-8936-415d72452674-14,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/concombre adhésif.PNG,,FALSE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37417,observation-aaa65334-6180-4f4c-8936-415d72452674-15,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-15/,Corynactis viridis,Anémone-bijou,,https://biolit.fr/wp-content/uploads/2023/07/Corynactis viridis.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37419,observation-aaa65334-6180-4f4c-8936-415d72452674-16,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-16/,Doris verrucosa,Doris verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/Doris verrucosa_0.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37421,observation-aaa65334-6180-4f4c-8936-415d72452674-17,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-17/,Dosinia exoleta,Dosinie radiée,,https://biolit.fr/wp-content/uploads/2023/07/Dosinia exoleta_0.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37423,observation-aaa65334-6180-4f4c-8936-415d72452674-18,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_2.PNG,,FALSE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37425,observation-aaa65334-6180-4f4c-8936-415d72452674-19,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-19/,Terpios gelatinosus,Eponge encroûtante bleue,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp1.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37427,observation-aaa65334-6180-4f4c-8936-415d72452674-20,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp2.PNG,,FALSE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37429,observation-aaa65334-6180-4f4c-8936-415d72452674-21,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp3.PNG,,FALSE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37431,observation-aaa65334-6180-4f4c-8936-415d72452674-22,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp4.PNG,,FALSE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37433,observation-aaa65334-6180-4f4c-8936-415d72452674-23,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-23/,Gari depressa,Psammobie déprimée,,https://biolit.fr/wp-content/uploads/2023/07/Gari depressa_0.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37435,observation-aaa65334-6180-4f4c-8936-415d72452674-24,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-24/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_0.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37437,observation-aaa65334-6180-4f4c-8936-415d72452674-25,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-25/,Liocarcinus navigator,Etrille arquée,,https://biolit.fr/wp-content/uploads/2023/07/Liocarcinus sp.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37439,observation-aaa65334-6180-4f4c-8936-415d72452674-26,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-26/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_0.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37441,observation-aaa65334-6180-4f4c-8936-415d72452674-27,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/Metridium senile.PNG,,FALSE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37443,observation-aaa65334-6180-4f4c-8936-415d72452674-28,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-28/,Modiolus barbatus,Modiole barbue,,https://biolit.fr/wp-content/uploads/2023/07/Modiolus barbatus.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37445,observation-aaa65334-6180-4f4c-8936-415d72452674-29,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-29/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_2.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37447,observation-aaa65334-6180-4f4c-8936-415d72452674-30,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-30/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocinebrena ericaneus.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37451,observation-aaa65334-6180-4f4c-8936-415d72452674-32,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-32/,Perophora japonica,Perophore japonaise,,https://biolit.fr/wp-content/uploads/2023/07/Perophora japonica.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37453,observation-aaa65334-6180-4f4c-8936-415d72452674-33,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-33/,Pilumnus hirtellus,Pilumne hirsute,,https://biolit.fr/wp-content/uploads/2023/07/Pilumnus hirtellus.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37455,observation-aaa65334-6180-4f4c-8936-415d72452674-34,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-34/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/pisidia longicornis.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37457,observation-aaa65334-6180-4f4c-8936-415d72452674-35,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-35/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_0.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37459,observation-aaa65334-6180-4f4c-8936-415d72452674-36,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-36/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/Sabellaria alveolata.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37461,observation-aaa65334-6180-4f4c-8936-415d72452674-37,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-37/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/Sagartia sp.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37463,observation-aaa65334-6180-4f4c-8936-415d72452674-38,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-38/,Styela clava,Ascidie japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Stella clavata.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37465,observation-aaa65334-6180-4f4c-8936-415d72452674-39,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-39/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_1.PNG,,TRUE, +N1,59033,sortie-5b73e504-850d-4e83-9762-049ddc28e2ee,https://biolit.fr/sorties/sortie-5b73e504-850d-4e83-9762-049ddc28e2ee/,Romuald VIALE - EXPENATURE,,9/14/2020 0:00,10.0000000,12.0000000,43.179882000000,5.612527000000,ExpéNature,La Ciotat,37467,observation-5b73e504-850d-4e83-9762-049ddc28e2ee,https://biolit.fr/observations/observation-5b73e504-850d-4e83-9762-049ddc28e2ee/,Olindias muelleri,Olindias,,https://biolit.fr/wp-content/uploads/2023/07/119479206_3386135418133880_7271718259874152658_n.png,,TRUE, +N1,59033,sortie-5b73e504-850d-4e83-9762-049ddc28e2ee,https://biolit.fr/sorties/sortie-5b73e504-850d-4e83-9762-049ddc28e2ee/,Romuald VIALE - EXPENATURE,,9/14/2020 0:00,10.0000000,12.0000000,43.179882000000,5.612527000000,ExpéNature,La Ciotat,37469,observation-5b73e504-850d-4e83-9762-049ddc28e2ee-2,https://biolit.fr/observations/observation-5b73e504-850d-4e83-9762-049ddc28e2ee-2/,Olindias muelleri,Olindias,,https://biolit.fr/wp-content/uploads/2023/07/119474286_361092721565142_3420387653811057195_n.png,,TRUE, +N1,59033,sortie-5b73e504-850d-4e83-9762-049ddc28e2ee,https://biolit.fr/sorties/sortie-5b73e504-850d-4e83-9762-049ddc28e2ee/,"""Romuald VIALE - EXPENATURE""",,9/14/2020 0:00,10.0000000,12.0000000,43.179882000000,5.612527000000,ExpéNature,La Ciotat,37471,observation-5b73e504-850d-4e83-9762-049ddc28e2ee-3,https://biolit.fr/observations/observation-5b73e504-850d-4e83-9762-049ddc28e2ee-3/,Olindias muelleri,Olindias,,https://biolit.fr/wp-content/uploads/2023/07/119528974_2660053667579275_4505372671719482452_n.png,,TRUE, +N1,59034,sortie-c38797d9-a63a-4041-a8e1-8b4d7ec176ad,https://biolit.fr/sorties/sortie-c38797d9-a63a-4041-a8e1-8b4d7ec176ad/,Planète Mer,,09/09/2020,15.0000000,16.0000000,48.641559000000,-2.072823000000,,Dinard - Plage de Saint-Enogat,37473,observation-c38797d9-a63a-4041-a8e1-8b4d7ec176ad,https://biolit.fr/observations/observation-c38797d9-a63a-4041-a8e1-8b4d7ec176ad/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200909_154834-scaled.jpg,,TRUE, +N1,59034,sortie-c38797d9-a63a-4041-a8e1-8b4d7ec176ad,https://biolit.fr/sorties/sortie-c38797d9-a63a-4041-a8e1-8b4d7ec176ad/,Planète Mer,,09/09/2020,15.0000000,16.0000000,48.641559000000,-2.072823000000,,Dinard - Plage de Saint-Enogat,37475,observation-c38797d9-a63a-4041-a8e1-8b4d7ec176ad-2,https://biolit.fr/observations/observation-c38797d9-a63a-4041-a8e1-8b4d7ec176ad-2/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/20200909_155420-scaled.jpg,,TRUE, +N1,59034,sortie-c38797d9-a63a-4041-a8e1-8b4d7ec176ad,https://biolit.fr/sorties/sortie-c38797d9-a63a-4041-a8e1-8b4d7ec176ad/,Planète Mer,,09/09/2020,15.0000000,16.0000000,48.641559000000,-2.072823000000,,Dinard - Plage de Saint-Enogat,37477,observation-c38797d9-a63a-4041-a8e1-8b4d7ec176ad-3,https://biolit.fr/observations/observation-c38797d9-a63a-4041-a8e1-8b4d7ec176ad-3/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20200909_160707-scaled.jpg,,TRUE, +N1,59034,sortie-c38797d9-a63a-4041-a8e1-8b4d7ec176ad,https://biolit.fr/sorties/sortie-c38797d9-a63a-4041-a8e1-8b4d7ec176ad/,Planète Mer,,09/09/2020,15.0000000,16.0000000,48.641559000000,-2.072823000000,,Dinard - Plage de Saint-Enogat,37479,observation-c38797d9-a63a-4041-a8e1-8b4d7ec176ad-4,https://biolit.fr/observations/observation-c38797d9-a63a-4041-a8e1-8b4d7ec176ad-4/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20200909_161228-scaled.jpg,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37481,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona fascicularis.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37482,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-2,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/actinia equina pe_0.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37484,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-3,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-3/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea_4.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37485,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-4,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-4/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/anémone sp 2.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37487,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-5,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-5/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/anémone sp 3.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37489,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-6,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-6/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/Anémone sp_0.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37490,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-7,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-7/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_5.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37491,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-8,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-8/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/Aplysia punctata.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37493,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-9,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-9/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asteria rubens_0.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37494,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-10,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-10/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37496,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-11,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-11/,Botrylloides spp. (leachii violaceus diegensis),Botrylles,,https://biolit.fr/wp-content/uploads/2023/07/botrylloides sp_0.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37498,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-12,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-12/,Membranipora membranacea,Membranipore,,https://biolit.fr/wp-content/uploads/2023/07/Bryo sp_1.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37499,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-13,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-13/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_0.jpg,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37500,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-14,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-14/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas-scaled.jpg,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37501,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-15,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-15/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/cereus pedunculatus_0.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37502,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-16,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-16/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Crassostrea gigas.jpg,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37503,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-17,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-17/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 2_0.PNG,,FALSE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37505,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-18,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-18/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_1.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37507,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-19,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-19/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/eriphia verrucosa pince.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37509,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-20,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-20/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/Gobie sp_0.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37510,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-21,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-21/,Spurilla neapolitana,Limace à bigoudis,,https://biolit.fr/wp-content/uploads/2023/07/Limace sp.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37511,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-22,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-22/,Lutraria magna,Grande lutraire,,https://biolit.fr/wp-content/uploads/2023/07/lutraria magna_2.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37513,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-23,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-23/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_1.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37515,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-24,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-24/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_1.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37517,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-25,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-25/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_0-scaled.jpg,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37518,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-26,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-26/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/pisidia longicornis.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37519,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-27,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/ponte de polychète_1.PNG,,FALSE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37521,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-28,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-28/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_0.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37523,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-29,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-29/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris-rotated.jpg,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37524,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-30,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-30/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes philipinarum.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37526,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-31,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-31/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/Syngnathidae sp.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37528,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-32,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-32/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa_4.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37529,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-33,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-33/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37531,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-34,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-34/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_0.PNG,,TRUE, +N1,59036,sortie-11277065-f047-4aef-abc0-dadf840bf562,https://biolit.fr/sorties/sortie-11277065-f047-4aef-abc0-dadf840bf562/,Ilse,,8/29/2020 0:00,7.0000000,7.0000000,49.315311000000,-0.382676000000,,"Luc sur Mer, plage",37537,observation-11277065-f047-4aef-abc0-dadf840bf562-3,https://biolit.fr/observations/observation-11277065-f047-4aef-abc0-dadf840bf562-3/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/P8270472-scaled.jpg,,TRUE, +N1,59036,sortie-11277065-f047-4aef-abc0-dadf840bf562,https://biolit.fr/sorties/sortie-11277065-f047-4aef-abc0-dadf840bf562/,Ilse,,8/29/2020 0:00,7.0000000,7.0000000,49.315311000000,-0.382676000000,,"Luc sur Mer, plage",37539,observation-11277065-f047-4aef-abc0-dadf840bf562-4,https://biolit.fr/observations/observation-11277065-f047-4aef-abc0-dadf840bf562-4/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P8270463-scaled.jpg,,TRUE, +N1,59036,sortie-11277065-f047-4aef-abc0-dadf840bf562,https://biolit.fr/sorties/sortie-11277065-f047-4aef-abc0-dadf840bf562/,Ilse,,8/29/2020 0:00,7.0000000,7.0000000,49.315311000000,-0.382676000000,,"Luc sur Mer, plage",37541,observation-11277065-f047-4aef-abc0-dadf840bf562-5,https://biolit.fr/observations/observation-11277065-f047-4aef-abc0-dadf840bf562-5/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/P8270465-scaled.jpg,,TRUE, +N1,59037,sortie-828d4e96-bd96-4f2a-abc0-28f0e0e64411,https://biolit.fr/sorties/sortie-828d4e96-bd96-4f2a-abc0-28f0e0e64411/,Caterina Casagranda,,7/14/2019 0:00,15.0000000,16.0000000,42.239685000000,8.550243000000,,Cap Rosso en Corse,37545,observation-828d4e96-bd96-4f2a-abc0-28f0e0e64411,https://biolit.fr/observations/observation-828d4e96-bd96-4f2a-abc0-28f0e0e64411/,Patella ferruginea,Patelle ferrugineuse,,https://biolit.fr/wp-content/uploads/2023/07/Chapeau chinois corse.jpg,,TRUE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37549,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-2,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-2/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_113114-scaled.jpg,,TRUE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37551,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-3,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-3/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_113020-scaled.jpg,,TRUE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37553,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-4,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-4/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_113222-scaled.jpg,,TRUE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37555,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-5,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-5/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_113225-scaled.jpg,,TRUE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37557,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-6,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-6/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_113408-scaled.jpg,,TRUE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37559,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-7,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-7/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_113424-scaled.jpg,,TRUE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37561,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-8,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_113436-scaled.jpg,,FALSE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37563,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-9,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-9/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_113501-scaled.jpg,,TRUE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37565,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-10,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-10/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_113555-scaled.jpg,,TRUE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37567,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-11,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-11/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_113649-scaled.jpg,,TRUE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37569,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-12,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_113716-scaled.jpg,,FALSE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37571,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-13,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-13/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_113738-scaled.jpg,,TRUE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37575,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-15,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-15/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_114304-scaled.jpg,,TRUE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37577,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-16,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-16/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_115718-scaled.jpg,,TRUE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37579,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-17,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-17/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_115751-scaled.jpg,,TRUE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37581,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-18,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-18/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_120031-scaled.jpg,,TRUE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37583,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-19,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-19/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_120034-scaled.jpg,,TRUE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37585,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-20,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-20/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_120957-scaled.jpg,,TRUE, +N1,59039,sortie-152ccbdb-d5c8-4735-83c3-2198c9aff065,https://biolit.fr/sorties/sortie-152ccbdb-d5c8-4735-83c3-2198c9aff065/,Arraiatxu,,8/19/2020 0:00,9.0000000,11.0000000,43.409504000000,-1.638160000000,,"Plage d'Erromardi, Commune de Saint-Jean-de-Luz",37587,observation-152ccbdb-d5c8-4735-83c3-2198c9aff065,https://biolit.fr/observations/observation-152ccbdb-d5c8-4735-83c3-2198c9aff065/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200819_102315-scaled.jpg,,FALSE, +N1,59040,sortie-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b,https://biolit.fr/sorties/sortie-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.87170300000,1.598966000000,,tardinghen,37589,observation-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b,https://biolit.fr/observations/observation-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b/,Abietinaria abietina,Hydraire-sapin,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_161347134-min-scaled.jpg,,TRUE, +N1,59040,sortie-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b,https://biolit.fr/sorties/sortie-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.87170300000,1.598966000000,,tardinghen,37591,observation-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b-2,https://biolit.fr/observations/observation-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b-2/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_161356952-min-scaled.jpg,,TRUE, +N1,59040,sortie-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b,https://biolit.fr/sorties/sortie-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.87170300000,1.598966000000,,tardinghen,37593,observation-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b-3,https://biolit.fr/observations/observation-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b-3/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_161652737-min-scaled.jpg,,TRUE, +N1,59040,sortie-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b,https://biolit.fr/sorties/sortie-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.87170300000,1.598966000000,,tardinghen,37595,observation-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b-4,https://biolit.fr/observations/observation-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b-4/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_161700459-min-scaled.jpg,,TRUE, +N1,59040,sortie-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b,https://biolit.fr/sorties/sortie-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.87170300000,1.598966000000,,tardinghen,37597,observation-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b-5,https://biolit.fr/observations/observation-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b-5/,Catenella caespitosa,Caténelle en touffe,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162340559-min-scaled.jpg,,TRUE, +N1,59041,sortie-c96ea248-2b10-4d46-aa56-49babcf0b0ab,https://biolit.fr/sorties/sortie-c96ea248-2b10-4d46-aa56-49babcf0b0ab/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871694000000,1.598930000000,,tardinghen,37599,observation-c96ea248-2b10-4d46-aa56-49babcf0b0ab,https://biolit.fr/observations/observation-c96ea248-2b10-4d46-aa56-49babcf0b0ab/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_161321243-min-scaled.jpg,,FALSE, +N1,59041,sortie-c96ea248-2b10-4d46-aa56-49babcf0b0ab,https://biolit.fr/sorties/sortie-c96ea248-2b10-4d46-aa56-49babcf0b0ab/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871694000000,1.598930000000,,tardinghen,37601,observation-c96ea248-2b10-4d46-aa56-49babcf0b0ab-2,https://biolit.fr/observations/observation-c96ea248-2b10-4d46-aa56-49babcf0b0ab-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_161334878-min-scaled.jpg,,FALSE, +N1,59041,sortie-c96ea248-2b10-4d46-aa56-49babcf0b0ab,https://biolit.fr/sorties/sortie-c96ea248-2b10-4d46-aa56-49babcf0b0ab/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871694000000,1.598930000000,,tardinghen,37603,observation-c96ea248-2b10-4d46-aa56-49babcf0b0ab-3,https://biolit.fr/observations/observation-c96ea248-2b10-4d46-aa56-49babcf0b0ab-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_161412814-min-scaled.jpg,,FALSE, +N1,59041,sortie-c96ea248-2b10-4d46-aa56-49babcf0b0ab,https://biolit.fr/sorties/sortie-c96ea248-2b10-4d46-aa56-49babcf0b0ab/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871694000000,1.598930000000,,tardinghen,37605,observation-c96ea248-2b10-4d46-aa56-49babcf0b0ab-4,https://biolit.fr/observations/observation-c96ea248-2b10-4d46-aa56-49babcf0b0ab-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_161434879-min-scaled.jpg,,FALSE, +N1,59042,sortie-cb176923-a5bb-4440-afae-c8bd0a965956,https://biolit.fr/sorties/sortie-cb176923-a5bb-4440-afae-c8bd0a965956/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871694000000,1.598930000000,,tardinghen,37607,observation-cb176923-a5bb-4440-afae-c8bd0a965956,https://biolit.fr/observations/observation-cb176923-a5bb-4440-afae-c8bd0a965956/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162211815-scaled.jpg,,FALSE, +N1,59042,sortie-cb176923-a5bb-4440-afae-c8bd0a965956,https://biolit.fr/sorties/sortie-cb176923-a5bb-4440-afae-c8bd0a965956/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871694000000,1.598930000000,,tardinghen,37609,observation-cb176923-a5bb-4440-afae-c8bd0a965956-2,https://biolit.fr/observations/observation-cb176923-a5bb-4440-afae-c8bd0a965956-2/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162915822-scaled.jpg,,TRUE, +N1,59042,sortie-cb176923-a5bb-4440-afae-c8bd0a965956,https://biolit.fr/sorties/sortie-cb176923-a5bb-4440-afae-c8bd0a965956/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871694000000,1.598930000000,,tardinghen,37611,observation-cb176923-a5bb-4440-afae-c8bd0a965956-3,https://biolit.fr/observations/observation-cb176923-a5bb-4440-afae-c8bd0a965956-3/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_171033687-scaled.jpg,,TRUE, +N1,59042,sortie-cb176923-a5bb-4440-afae-c8bd0a965956,https://biolit.fr/sorties/sortie-cb176923-a5bb-4440-afae-c8bd0a965956/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871694000000,1.598930000000,,tardinghen,37613,observation-cb176923-a5bb-4440-afae-c8bd0a965956-4,https://biolit.fr/observations/observation-cb176923-a5bb-4440-afae-c8bd0a965956-4/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_171041434-scaled.jpg,,TRUE, +N1,59043,sortie-064a8cb2-b321-4da5-930a-e8364c086eea,https://biolit.fr/sorties/sortie-064a8cb2-b321-4da5-930a-e8364c086eea/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871708000000,1.59895200000,,tardinghen,37615,observation-064a8cb2-b321-4da5-930a-e8364c086eea,https://biolit.fr/observations/observation-064a8cb2-b321-4da5-930a-e8364c086eea/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162612145-scaled.jpg,,FALSE, +N1,59043,sortie-064a8cb2-b321-4da5-930a-e8364c086eea,https://biolit.fr/sorties/sortie-064a8cb2-b321-4da5-930a-e8364c086eea/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871708000000,1.59895200000,,tardinghen,37617,observation-064a8cb2-b321-4da5-930a-e8364c086eea-2,https://biolit.fr/observations/observation-064a8cb2-b321-4da5-930a-e8364c086eea-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162615850-scaled.jpg,,FALSE, +N1,59043,sortie-064a8cb2-b321-4da5-930a-e8364c086eea,https://biolit.fr/sorties/sortie-064a8cb2-b321-4da5-930a-e8364c086eea/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871708000000,1.59895200000,,tardinghen,37619,observation-064a8cb2-b321-4da5-930a-e8364c086eea-3,https://biolit.fr/observations/observation-064a8cb2-b321-4da5-930a-e8364c086eea-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162636933-scaled.jpg,,TRUE, +N1,59043,sortie-064a8cb2-b321-4da5-930a-e8364c086eea,https://biolit.fr/sorties/sortie-064a8cb2-b321-4da5-930a-e8364c086eea/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871708000000,1.59895200000,,tardinghen,37621,observation-064a8cb2-b321-4da5-930a-e8364c086eea-4,https://biolit.fr/observations/observation-064a8cb2-b321-4da5-930a-e8364c086eea-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162642237-scaled.jpg,,TRUE, +N1,59043,sortie-064a8cb2-b321-4da5-930a-e8364c086eea,https://biolit.fr/sorties/sortie-064a8cb2-b321-4da5-930a-e8364c086eea/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871708000000,1.59895200000,,tardinghen,37623,observation-064a8cb2-b321-4da5-930a-e8364c086eea-5,https://biolit.fr/observations/observation-064a8cb2-b321-4da5-930a-e8364c086eea-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_171433268-scaled.jpg,,FALSE, +N1,59044,sortie-1e1c3c63-a696-4172-8c7e-90f7a9853543,https://biolit.fr/sorties/sortie-1e1c3c63-a696-4172-8c7e-90f7a9853543/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871694000000,1.598909000000,,tardinghen,37625,observation-1e1c3c63-a696-4172-8c7e-90f7a9853543,https://biolit.fr/observations/observation-1e1c3c63-a696-4172-8c7e-90f7a9853543/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162446151-scaled.jpg,,TRUE, +N1,59044,sortie-1e1c3c63-a696-4172-8c7e-90f7a9853543,https://biolit.fr/sorties/sortie-1e1c3c63-a696-4172-8c7e-90f7a9853543/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871694000000,1.598909000000,,tardinghen,37627,observation-1e1c3c63-a696-4172-8c7e-90f7a9853543-2,https://biolit.fr/observations/observation-1e1c3c63-a696-4172-8c7e-90f7a9853543-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162450523-scaled.jpg,,TRUE, +N1,59044,sortie-1e1c3c63-a696-4172-8c7e-90f7a9853543,https://biolit.fr/sorties/sortie-1e1c3c63-a696-4172-8c7e-90f7a9853543/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871694000000,1.598909000000,,tardinghen,37629,observation-1e1c3c63-a696-4172-8c7e-90f7a9853543-3,https://biolit.fr/observations/observation-1e1c3c63-a696-4172-8c7e-90f7a9853543-3/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162505868-scaled.jpg,,TRUE, +N1,59044,sortie-1e1c3c63-a696-4172-8c7e-90f7a9853543,https://biolit.fr/sorties/sortie-1e1c3c63-a696-4172-8c7e-90f7a9853543/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871694000000,1.598909000000,,tardinghen,37631,observation-1e1c3c63-a696-4172-8c7e-90f7a9853543-4,https://biolit.fr/observations/observation-1e1c3c63-a696-4172-8c7e-90f7a9853543-4/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162514403-scaled.jpg,,TRUE, +N1,59044,sortie-1e1c3c63-a696-4172-8c7e-90f7a9853543,https://biolit.fr/sorties/sortie-1e1c3c63-a696-4172-8c7e-90f7a9853543/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871694000000,1.598909000000,,tardinghen,37633,observation-1e1c3c63-a696-4172-8c7e-90f7a9853543-5,https://biolit.fr/observations/observation-1e1c3c63-a696-4172-8c7e-90f7a9853543-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162601689-scaled.jpg,,FALSE, +N1,59044,sortie-1e1c3c63-a696-4172-8c7e-90f7a9853543,https://biolit.fr/sorties/sortie-1e1c3c63-a696-4172-8c7e-90f7a9853543/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871694000000,1.598909000000,,tardinghen,37635,observation-1e1c3c63-a696-4172-8c7e-90f7a9853543-6,https://biolit.fr/observations/observation-1e1c3c63-a696-4172-8c7e-90f7a9853543-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162606257-scaled.jpg,,FALSE, +N1,59045,sortie-39397ab7-908b-4b1c-acdc-33be1924088c,https://biolit.fr/sorties/sortie-39397ab7-908b-4b1c-acdc-33be1924088c/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871735000000,1.598887000000,,tardinghen,37637,observation-39397ab7-908b-4b1c-acdc-33be1924088c,https://biolit.fr/observations/observation-39397ab7-908b-4b1c-acdc-33be1924088c/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162127052-scaled.jpg,,TRUE, +N1,59045,sortie-39397ab7-908b-4b1c-acdc-33be1924088c,https://biolit.fr/sorties/sortie-39397ab7-908b-4b1c-acdc-33be1924088c/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871735000000,1.598887000000,,tardinghen,37639,observation-39397ab7-908b-4b1c-acdc-33be1924088c-2,https://biolit.fr/observations/observation-39397ab7-908b-4b1c-acdc-33be1924088c-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162407426-scaled.jpg,,TRUE, +N1,59045,sortie-39397ab7-908b-4b1c-acdc-33be1924088c,https://biolit.fr/sorties/sortie-39397ab7-908b-4b1c-acdc-33be1924088c/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871735000000,1.598887000000,,tardinghen,37641,observation-39397ab7-908b-4b1c-acdc-33be1924088c-3,https://biolit.fr/observations/observation-39397ab7-908b-4b1c-acdc-33be1924088c-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162423062-scaled.jpg,,TRUE, +N1,59045,sortie-39397ab7-908b-4b1c-acdc-33be1924088c,https://biolit.fr/sorties/sortie-39397ab7-908b-4b1c-acdc-33be1924088c/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871735000000,1.598887000000,,tardinghen,37643,observation-39397ab7-908b-4b1c-acdc-33be1924088c-4,https://biolit.fr/observations/observation-39397ab7-908b-4b1c-acdc-33be1924088c-4/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162431767-scaled.jpg,,TRUE, +N1,59045,sortie-39397ab7-908b-4b1c-acdc-33be1924088c,https://biolit.fr/sorties/sortie-39397ab7-908b-4b1c-acdc-33be1924088c/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871735000000,1.598887000000,,tardinghen,37645,observation-39397ab7-908b-4b1c-acdc-33be1924088c-5,https://biolit.fr/observations/observation-39397ab7-908b-4b1c-acdc-33be1924088c-5/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162435846-scaled.jpg,,TRUE, +N1,59046,sortie-0b894693-ac70-4ffc-8bf3-8d0835b1a75e,https://biolit.fr/sorties/sortie-0b894693-ac70-4ffc-8bf3-8d0835b1a75e/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871684000000,1.598919000000,,tardinghen,37647,observation-0b894693-ac70-4ffc-8bf3-8d0835b1a75e,https://biolit.fr/observations/observation-0b894693-ac70-4ffc-8bf3-8d0835b1a75e/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_161603216-scaled.jpg,,FALSE, +N1,59046,sortie-0b894693-ac70-4ffc-8bf3-8d0835b1a75e,https://biolit.fr/sorties/sortie-0b894693-ac70-4ffc-8bf3-8d0835b1a75e/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871684000000,1.598919000000,,tardinghen,37649,observation-0b894693-ac70-4ffc-8bf3-8d0835b1a75e-2,https://biolit.fr/observations/observation-0b894693-ac70-4ffc-8bf3-8d0835b1a75e-2/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_161954544-scaled.jpg,,TRUE, +N1,59046,sortie-0b894693-ac70-4ffc-8bf3-8d0835b1a75e,https://biolit.fr/sorties/sortie-0b894693-ac70-4ffc-8bf3-8d0835b1a75e/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871684000000,1.598919000000,,tardinghen,37651,observation-0b894693-ac70-4ffc-8bf3-8d0835b1a75e-3,https://biolit.fr/observations/observation-0b894693-ac70-4ffc-8bf3-8d0835b1a75e-3/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162004044-scaled.jpg,,TRUE, +N1,59046,sortie-0b894693-ac70-4ffc-8bf3-8d0835b1a75e,https://biolit.fr/sorties/sortie-0b894693-ac70-4ffc-8bf3-8d0835b1a75e/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871684000000,1.598919000000,,tardinghen,37653,observation-0b894693-ac70-4ffc-8bf3-8d0835b1a75e-4,https://biolit.fr/observations/observation-0b894693-ac70-4ffc-8bf3-8d0835b1a75e-4/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162012401-scaled.jpg,,TRUE, +N1,59046,sortie-0b894693-ac70-4ffc-8bf3-8d0835b1a75e,https://biolit.fr/sorties/sortie-0b894693-ac70-4ffc-8bf3-8d0835b1a75e/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871684000000,1.598919000000,,tardinghen,37655,observation-0b894693-ac70-4ffc-8bf3-8d0835b1a75e-5,https://biolit.fr/observations/observation-0b894693-ac70-4ffc-8bf3-8d0835b1a75e-5/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162058943-scaled.jpg,,TRUE, +N1,59046,sortie-0b894693-ac70-4ffc-8bf3-8d0835b1a75e,https://biolit.fr/sorties/sortie-0b894693-ac70-4ffc-8bf3-8d0835b1a75e/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871684000000,1.598919000000,,tardinghen,37657,observation-0b894693-ac70-4ffc-8bf3-8d0835b1a75e-6,https://biolit.fr/observations/observation-0b894693-ac70-4ffc-8bf3-8d0835b1a75e-6/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162107222-scaled.jpg,,TRUE, +N1,59047,sortie-5051d2f7-1602-49de-83fe-7a7fe18561c6,https://biolit.fr/sorties/sortie-5051d2f7-1602-49de-83fe-7a7fe18561c6/,Arraiatxu,,08/07/2020,13.0000000,15.0000000,43.409419000000,-1.638106000000,,"Plage d'Erromardi, Commune de Saint-Jean-de-Luz",37659,observation-5051d2f7-1602-49de-83fe-7a7fe18561c6,https://biolit.fr/observations/observation-5051d2f7-1602-49de-83fe-7a7fe18561c6/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/20200807_141754-scaled.jpg,,TRUE, +N1,59047,sortie-5051d2f7-1602-49de-83fe-7a7fe18561c6,https://biolit.fr/sorties/sortie-5051d2f7-1602-49de-83fe-7a7fe18561c6/,Arraiatxu,,08/07/2020,13.0000000,15.0000000,43.409419000000,-1.638106000000,,"Plage d'Erromardi, Commune de Saint-Jean-de-Luz",37661,observation-5051d2f7-1602-49de-83fe-7a7fe18561c6-2,https://biolit.fr/observations/observation-5051d2f7-1602-49de-83fe-7a7fe18561c6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/anemone-scaled.jpg,,FALSE, +N1,59048,sortie-dea9b7c4-66d5-4afa-8293-62fc511aa17a,https://biolit.fr/sorties/sortie-dea9b7c4-66d5-4afa-8293-62fc511aa17a/,Arraiatxu,,7/24/2020 0:00,13.0000000,15.0000000,43.407306000000,-1.642076000000,,"Plage d'Erromardi, Commune de Saint-Jean-de-Luz",37663,observation-dea9b7c4-66d5-4afa-8293-62fc511aa17a,https://biolit.fr/observations/observation-dea9b7c4-66d5-4afa-8293-62fc511aa17a/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200724_134548-scaled.jpg,,FALSE, +N1,59049,sortie-1e39d054-6afc-4d18-bbda-5e56fbcd29c1,https://biolit.fr/sorties/sortie-1e39d054-6afc-4d18-bbda-5e56fbcd29c1/,Club subaquatique Narbonnais,,08/02/2020,15.0:25,15.0:45,43.112156000000,3.12096900000,Club Subaquatique Narbonnais CSN/FSGT,"Etang du Grazel, Gruissan",37665,observation-1e39d054-6afc-4d18-bbda-5e56fbcd29c1,https://biolit.fr/observations/observation-1e39d054-6afc-4d18-bbda-5e56fbcd29c1/,Acetabularia acetabulum,Acétabulaire,,https://biolit.fr/wp-content/uploads/2023/07/acétabulaire.JPG,,TRUE, +N1,59049,sortie-1e39d054-6afc-4d18-bbda-5e56fbcd29c1,https://biolit.fr/sorties/sortie-1e39d054-6afc-4d18-bbda-5e56fbcd29c1/,Club subaquatique Narbonnais,,08/02/2020,15.0:25,15.0:45,43.112156000000,3.12096900000,Club Subaquatique Narbonnais CSN/FSGT,"Etang du Grazel, Gruissan",37667,observation-1e39d054-6afc-4d18-bbda-5e56fbcd29c1-2,https://biolit.fr/observations/observation-1e39d054-6afc-4d18-bbda-5e56fbcd29c1-2/,Pinna nobilis,Grande nacre,,https://biolit.fr/wp-content/uploads/2023/07/coquille.JPG,,TRUE, +N1,59049,sortie-1e39d054-6afc-4d18-bbda-5e56fbcd29c1,https://biolit.fr/sorties/sortie-1e39d054-6afc-4d18-bbda-5e56fbcd29c1/,Club subaquatique Narbonnais,,08/02/2020,15.0:25,15.0:45,43.112156000000,3.12096900000,Club Subaquatique Narbonnais CSN/FSGT,"Etang du Grazel, Gruissan",37669,observation-1e39d054-6afc-4d18-bbda-5e56fbcd29c1-3,https://biolit.fr/observations/observation-1e39d054-6afc-4d18-bbda-5e56fbcd29c1-3/,Bolinus brandaris,Murex épineux,,https://biolit.fr/wp-content/uploads/2023/07/Murex et botrylles.JPG,,TRUE, +N1,59049,sortie-1e39d054-6afc-4d18-bbda-5e56fbcd29c1,https://biolit.fr/sorties/sortie-1e39d054-6afc-4d18-bbda-5e56fbcd29c1/,Club subaquatique Narbonnais,,08/02/2020,15.0:25,15.0:45,43.112156000000,3.12096900000,Club Subaquatique Narbonnais CSN/FSGT,"Etang du Grazel, Gruissan",37671,observation-1e39d054-6afc-4d18-bbda-5e56fbcd29c1-4,https://biolit.fr/observations/observation-1e39d054-6afc-4d18-bbda-5e56fbcd29c1-4/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/padine.JPG,,TRUE, +N1,59049,sortie-1e39d054-6afc-4d18-bbda-5e56fbcd29c1,https://biolit.fr/sorties/sortie-1e39d054-6afc-4d18-bbda-5e56fbcd29c1/,Club subaquatique Narbonnais,,08/02/2020,15.0:25,15.0:45,43.112156000000,3.12096900000,Club Subaquatique Narbonnais CSN/FSGT,"Etang du Grazel, Gruissan",37673,observation-1e39d054-6afc-4d18-bbda-5e56fbcd29c1-5,https://biolit.fr/observations/observation-1e39d054-6afc-4d18-bbda-5e56fbcd29c1-5/,Pinna nobilis,Grande nacre,,https://biolit.fr/wp-content/uploads/2023/07/Pinna et botrylles.JPG,,TRUE, +N1,59049,sortie-1e39d054-6afc-4d18-bbda-5e56fbcd29c1,https://biolit.fr/sorties/sortie-1e39d054-6afc-4d18-bbda-5e56fbcd29c1/,Club subaquatique Narbonnais,,08/02/2020,15.0:25,15.0:45,43.112156000000,3.12096900000,Club Subaquatique Narbonnais CSN/FSGT,"Etang du Grazel, Gruissan",37675,observation-1e39d054-6afc-4d18-bbda-5e56fbcd29c1-6,https://biolit.fr/observations/observation-1e39d054-6afc-4d18-bbda-5e56fbcd29c1-6/,Zostera noltei,Zostère naine,,https://biolit.fr/wp-content/uploads/2023/07/Pinna zostère.JPG,,TRUE, +N1,59050,sortie-c75d0340-26ce-4675-b5a7-5e6ae4d71223,https://biolit.fr/sorties/sortie-c75d0340-26ce-4675-b5a7-5e6ae4d71223/,Provence,,7/27/2020 0:00,8.0000000,10.0000000,42.890726000000,3.052444000000,,Leucate Mourets,37677,observation-c75d0340-26ce-4675-b5a7-5e6ae4d71223,https://biolit.fr/observations/observation-c75d0340-26ce-4675-b5a7-5e6ae4d71223/,Achillea maritima,Diotis blanc,,https://biolit.fr/wp-content/uploads/2023/07/20200625_Mourets_diotis_blanc.jpg,,TRUE, +N1,59051,sortie-11d44d07-2d67-466c-8d29-e06101859c1c,https://biolit.fr/sorties/sortie-11d44d07-2d67-466c-8d29-e06101859c1c/,Arraiatxu,,7/20/2020 0:00,10.0000000,11.0:45,43.409419000000,-1.637956000000,,"Plage d'Erromardi, Commune de Saint-Jean-de-Luz",37679,observation-11d44d07-2d67-466c-8d29-e06101859c1c,https://biolit.fr/observations/observation-11d44d07-2d67-466c-8d29-e06101859c1c/,Hesione splendida,Ver léopard,,https://biolit.fr/wp-content/uploads/2023/07/20200720_112542-scaled.jpg,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37681,observation-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_3.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37682,observation-973d57dc-efd6-488e-a168-78816f3e93d6-2,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea_3.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37683,observation-973d57dc-efd6-488e-a168-78816f3e93d6-3,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_4.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37684,observation-973d57dc-efd6-488e-a168-78816f3e93d6-4,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-4/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_2.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37685,observation-973d57dc-efd6-488e-a168-78816f3e93d6-5,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-5/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_0.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37686,observation-973d57dc-efd6-488e-a168-78816f3e93d6-6,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-6/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_2.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37687,observation-973d57dc-efd6-488e-a168-78816f3e93d6-7,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-7/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_2.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37688,observation-973d57dc-efd6-488e-a168-78816f3e93d6-8,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-8/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/2023/07/Blennie sp_2.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37689,observation-973d57dc-efd6-488e-a168-78816f3e93d6-9,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-9/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37690,observation-973d57dc-efd6-488e-a168-78816f3e93d6-10,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-10/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/bryo sp 1.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37692,observation-973d57dc-efd6-488e-a168-78816f3e93d6-11,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-11/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/bryo sp 2.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37694,observation-973d57dc-efd6-488e-a168-78816f3e93d6-12,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/bryo sp 3.PNG,,FALSE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37696,observation-973d57dc-efd6-488e-a168-78816f3e93d6-13,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-13/,Janua heterostropha,Spirorbe de Pagenstecher,,https://biolit.fr/wp-content/uploads/2023/07/Bryo sp_0.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37697,observation-973d57dc-efd6-488e-a168-78816f3e93d6-14,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-14/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_3.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37698,observation-973d57dc-efd6-488e-a168-78816f3e93d6-15,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-15/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_7.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37699,observation-973d57dc-efd6-488e-a168-78816f3e93d6-16,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-16/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/chthamalus montagui et stellatus.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37701,observation-973d57dc-efd6-488e-a168-78816f3e93d6-17,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-17/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crepidula fornicata_2.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37702,observation-973d57dc-efd6-488e-a168-78816f3e93d6-18,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-18/,Balanus crenatus,Balane crénelée,,https://biolit.fr/wp-content/uploads/2023/07/doris pe.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37704,observation-973d57dc-efd6-488e-a168-78816f3e93d6-19,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-19/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Gibbula magus.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37705,observation-973d57dc-efd6-488e-a168-78816f3e93d6-20,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-20/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/gibbula ombilicalis.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37707,observation-973d57dc-efd6-488e-a168-78816f3e93d6-21,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-21/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/Gobie sp.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37708,observation-973d57dc-efd6-488e-a168-78816f3e93d6-22,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-22/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_0.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37709,observation-973d57dc-efd6-488e-a168-78816f3e93d6-23,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/mycale subclavata pe.PNG,,FALSE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37711,observation-973d57dc-efd6-488e-a168-78816f3e93d6-24,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-24/,Tritia incrassata,Nasse épaisse,,https://biolit.fr/wp-content/uploads/2023/07/Nassarius incrassatus_0.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37712,observation-973d57dc-efd6-488e-a168-78816f3e93d6-25,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-25/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nassarius reticulatus_1.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37713,observation-973d57dc-efd6-488e-a168-78816f3e93d6-26,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-26/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis ophidion_0.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37714,observation-973d57dc-efd6-488e-a168-78816f3e93d6-27,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-27/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_4.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37715,observation-973d57dc-efd6-488e-a168-78816f3e93d6-28,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-28/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/ostreis edule_0.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37717,observation-973d57dc-efd6-488e-a168-78816f3e93d6-29,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-29/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/pagurus bernhardus_0.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37719,observation-973d57dc-efd6-488e-a168-78816f3e93d6-30,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-30/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Paracentrotus lividus_0.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37720,observation-973d57dc-efd6-488e-a168-78816f3e93d6-31,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-31/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/Perforatus perforatus_2.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37721,observation-973d57dc-efd6-488e-a168-78816f3e93d6-32,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-32/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus_1.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37722,observation-973d57dc-efd6-488e-a168-78816f3e93d6-33,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/polysyncraton sp.PNG,,FALSE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37724,observation-973d57dc-efd6-488e-a168-78816f3e93d6-34,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ponte de polychète_0.PNG,,FALSE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37725,observation-973d57dc-efd6-488e-a168-78816f3e93d6-35,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-35/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_4.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37726,observation-973d57dc-efd6-488e-a168-78816f3e93d6-36,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-36/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_5.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37727,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita_1.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37728,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-2,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_2.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37729,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-3,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis pe.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37730,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-4,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-4/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_1.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37731,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-5,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-5/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asteria rubens.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37732,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-6,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-6/,Botrylloides spp. (leachii violaceus diegensis),Botrylles,,https://biolit.fr/wp-content/uploads/2023/07/Botrylloides sp.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37733,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-7,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/botryllus sp pe.PNG,,FALSE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37735,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-8,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-8/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_2.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37736,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-9,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-9/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_5.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37737,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-10,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-10/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus-scaled.jpg,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37738,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-11,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-11/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Chlamys varia_0.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37739,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-12,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-12/,Geitodoris planata,Geitodoris étoilé,,https://biolit.fr/wp-content/uploads/2023/07/doris verrucosa ponte.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37741,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-13,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-13/,Doris verrucosa,Doris verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/doris verrucosa.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37743,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-14,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-14/,Hymeniacidon perlevis,Eponge-miette de pain,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 2.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37745,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-15,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Eponge sp_0.PNG,,FALSE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37746,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-16,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-16/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_1.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37747,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-17,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-17/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_5.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37748,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-18,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-18/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nassarius reticulatus_0.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37749,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-19,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-19/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_3.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37750,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-20,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-20/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ostreis edule.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37751,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-21,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-21/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/pagurus bernhardus.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37753,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-22,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-22/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/Patella intermedia.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37754,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-23,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-23/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/Perforatus perforatus_1.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37755,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-24,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-24/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus_0.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37756,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-25,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ponte de polychète.PNG,,FALSE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37757,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-26,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-26/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_3.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37758,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-27,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-27/,Sphaerechinus granularis,Oursin granuleux,,https://biolit.fr/wp-content/uploads/2023/07/sphaerechinus granularis.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37760,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-28,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/stromphia sp.PNG,,FALSE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37762,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-29,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-29/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa_3.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37763,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-30,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-30/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_4.PNG,,TRUE, +N1,59054,sortie-2b317e08-9d20-40c2-abe2-d98fe39f8e2a,https://biolit.fr/sorties/sortie-2b317e08-9d20-40c2-abe2-d98fe39f8e2a/,azelie,,7/16/2020 0:00,15.0:45,15.0000000,48.841737000000,-1.595770000000,,Plage de Granville,37764,observation-2b317e08-9d20-40c2-abe2-d98fe39f8e2a,https://biolit.fr/observations/observation-2b317e08-9d20-40c2-abe2-d98fe39f8e2a/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6196-scaled.jpg,,TRUE, +N1,59055,sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89,https://biolit.fr/sorties/sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89/,Objectif Sciences Internationale - France,,7/15/2020 0:00,15.0:45,16.0000000,48.470431000000,-4.757870000000,,Près du port de Lanildut,37766,observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89,https://biolit.fr/observations/observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Grosse-Actinia-Equina1-scaled.jpg,,TRUE, +N1,59055,sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89,https://biolit.fr/sorties/sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89/,Objectif Sciences Internationale - France,,7/15/2020 0:00,15.0:45,16.0000000,48.470431000000,-4.757870000000,,Près du port de Lanildut,37768,observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-2,https://biolit.fr/observations/observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-2/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/Grosse-Grangon-Grangon-scaled.jpg,,TRUE, +N1,59055,sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89,https://biolit.fr/sorties/sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89/,Objectif Sciences Internationale - France,,7/15/2020 0:00,15.0:45,16.0000000,48.470431000000,-4.757870000000,,Près du port de Lanildut,37770,observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-3,https://biolit.fr/observations/observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-3/,Littorina compressa,Littorine à lignes noires,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/littorina-nigrolineata-scaled.jpg,1,TRUE,Identifiable +N1,59055,sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89,https://biolit.fr/sorties/sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89/,Objectif Sciences Internationale - France,,7/15/2020 0:00,15.0:45,16.0000000,48.470431000000,-4.757870000000,,Près du port de Lanildut,37772,observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-4,https://biolit.fr/observations/observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-4/,Littorina compressa,Littorine à lignes noires,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/littorina-nigrolineata3-scaled.jpg,,TRUE, +N1,59055,sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89,https://biolit.fr/sorties/sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89/,Objectif Sciences Internationale - France,,7/15/2020 0:00,15.0:45,16.0000000,48.470431000000,-4.757870000000,,Près du port de Lanildut,37774,observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-5,https://biolit.fr/observations/observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-5/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Patella-Vulgata2-scaled.jpg,,TRUE, +N1,59055,sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89,https://biolit.fr/sorties/sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89/,Objectif Sciences Internationale - France,,7/15/2020 0:00,15.0:45,16.0000000,48.470431000000,-4.757870000000,,Près du port de Lanildut,37776,observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-6,https://biolit.fr/observations/observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-6/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Patella vulgata-scaled.jpg,,TRUE, +N1,59055,sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89,https://biolit.fr/sorties/sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89/,Objectif Sciences Internationale - France,,7/15/2020 0:00,15.0:45,16.0000000,48.470431000000,-4.757870000000,,Près du port de Lanildut,37777,observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-7,https://biolit.fr/observations/observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-7/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Petite-Actinia-Equina-scaled.jpg,,TRUE, +N1,59055,sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89,https://biolit.fr/sorties/sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89/,Objectif Sciences Internationale - France,,7/15/2020 0:00,15.0:45,16.0000000,48.470431000000,-4.757870000000,,Près du port de Lanildut,37779,observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-8,https://biolit.fr/observations/observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-8/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/Petite-Grangon-Grangon-scaled.jpg,,TRUE, +N1,59055,sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89,https://biolit.fr/sorties/sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89/,Objectif Sciences Internationale - France,,7/15/2020 0:00,15.0:45,16.0000000,48.470431000000,-4.757870000000,,Près du port de Lanildut,37781,observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-9,https://biolit.fr/observations/observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-9/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus_0.PNG,,TRUE, +N1,59055,sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89,https://biolit.fr/sorties/sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89/,Objectif Sciences Internationale - France,,7/15/2020 0:00,15.0:45,16.0000000,48.470431000000,-4.757870000000,,Près du port de Lanildut,37782,observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-10,https://biolit.fr/observations/observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-10/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/phorcus-lineatus2-scaled.jpg,,TRUE, +N1,59056,sortie-f97b6957-11b0-4cea-9004-b4ae5f6b55d8,https://biolit.fr/sorties/sortie-f97b6957-11b0-4cea-9004-b4ae5f6b55d8/,Arraiatxu,,07/09/2020,14.0:15,15.0:45,43.407054000000,-1.641795000000,,"Plage d'Erromardi, Commune de Saint-Jean-de-Luz",37784,observation-f97b6957-11b0-4cea-9004-b4ae5f6b55d8,https://biolit.fr/observations/observation-f97b6957-11b0-4cea-9004-b4ae5f6b55d8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Spirorbis sp.-scaled.jpg,,FALSE, +N1,59056,sortie-f97b6957-11b0-4cea-9004-b4ae5f6b55d8,https://biolit.fr/sorties/sortie-f97b6957-11b0-4cea-9004-b4ae5f6b55d8/,Arraiatxu,,07/09/2020,14.0:15,15.0:45,43.407054000000,-1.641795000000,,"Plage d'Erromardi, Commune de Saint-Jean-de-Luz",37786,observation-f97b6957-11b0-4cea-9004-b4ae5f6b55d8-2,https://biolit.fr/observations/observation-f97b6957-11b0-4cea-9004-b4ae5f6b55d8-2/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Codium spp..jpg,,TRUE, +N1,59057,sortie-84ff638f-3a3d-4d69-8c41-4991f403db63,https://biolit.fr/sorties/sortie-84ff638f-3a3d-4d69-8c41-4991f403db63/,Marine,,6/25/2020 0:00,10.0000000,10.0:15,43.239887000000,5.362408000000,Planète Mer,Plage de la bonne brise,37788,observation-84ff638f-3a3d-4d69-8c41-4991f403db63,https://biolit.fr/observations/observation-84ff638f-3a3d-4d69-8c41-4991f403db63/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1367.JPG,,FALSE, +N1,59058,sortie-c7b38f31-7992-4137-8330-d4976b05d8bf,https://biolit.fr/sorties/sortie-c7b38f31-7992-4137-8330-d4976b05d8bf/,Roman,,6/29/2020 0:00,16.0000000,17.0000000,47.708499000000,-3.326519000000,,Riantec,37790,observation-c7b38f31-7992-4137-8330-d4976b05d8bf,https://biolit.fr/observations/observation-c7b38f31-7992-4137-8330-d4976b05d8bf/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/actinia equina pe.PNG,,TRUE, +N1,59058,sortie-c7b38f31-7992-4137-8330-d4976b05d8bf,https://biolit.fr/sorties/sortie-c7b38f31-7992-4137-8330-d4976b05d8bf/,Roman,,6/29/2020 0:00,16.0000000,17.0000000,47.708499000000,-3.326519000000,,Riantec,37792,observation-c7b38f31-7992-4137-8330-d4976b05d8bf-2,https://biolit.fr/observations/observation-c7b38f31-7992-4137-8330-d4976b05d8bf-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_6.PNG,,TRUE, +N1,59058,sortie-c7b38f31-7992-4137-8330-d4976b05d8bf,https://biolit.fr/sorties/sortie-c7b38f31-7992-4137-8330-d4976b05d8bf/,Roman,,6/29/2020 0:00,16.0000000,17.0000000,47.708499000000,-3.326519000000,,Riantec,37793,observation-c7b38f31-7992-4137-8330-d4976b05d8bf-3,https://biolit.fr/observations/observation-c7b38f31-7992-4137-8330-d4976b05d8bf-3/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_4.PNG,,TRUE, +N1,59058,sortie-c7b38f31-7992-4137-8330-d4976b05d8bf,https://biolit.fr/sorties/sortie-c7b38f31-7992-4137-8330-d4976b05d8bf/,Roman,,6/29/2020 0:00,16.0000000,17.0000000,47.708499000000,-3.326519000000,,Riantec,37794,observation-c7b38f31-7992-4137-8330-d4976b05d8bf-4,https://biolit.fr/observations/observation-c7b38f31-7992-4137-8330-d4976b05d8bf-4/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crepidula fornicata_1.PNG,,TRUE, +N1,59058,sortie-c7b38f31-7992-4137-8330-d4976b05d8bf,https://biolit.fr/sorties/sortie-c7b38f31-7992-4137-8330-d4976b05d8bf/,Roman,,6/29/2020 0:00,16.0000000,17.0000000,47.708499000000,-3.326519000000,,Riantec,37795,observation-c7b38f31-7992-4137-8330-d4976b05d8bf-5,https://biolit.fr/observations/observation-c7b38f31-7992-4137-8330-d4976b05d8bf-5/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/Echinocardium cordatum_0.PNG,,TRUE, +N1,59058,sortie-c7b38f31-7992-4137-8330-d4976b05d8bf,https://biolit.fr/sorties/sortie-c7b38f31-7992-4137-8330-d4976b05d8bf/,Roman,,6/29/2020 0:00,16.0000000,17.0000000,47.708499000000,-3.326519000000,,Riantec,37796,observation-c7b38f31-7992-4137-8330-d4976b05d8bf-6,https://biolit.fr/observations/observation-c7b38f31-7992-4137-8330-d4976b05d8bf-6/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_4.PNG,,TRUE, +N1,59058,sortie-c7b38f31-7992-4137-8330-d4976b05d8bf,https://biolit.fr/sorties/sortie-c7b38f31-7992-4137-8330-d4976b05d8bf/,Roman,,6/29/2020 0:00,16.0000000,17.0000000,47.708499000000,-3.326519000000,,Riantec,37797,observation-c7b38f31-7992-4137-8330-d4976b05d8bf-7,https://biolit.fr/observations/observation-c7b38f31-7992-4137-8330-d4976b05d8bf-7/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina obtusata.PNG,,TRUE, +N1,59058,sortie-c7b38f31-7992-4137-8330-d4976b05d8bf,https://biolit.fr/sorties/sortie-c7b38f31-7992-4137-8330-d4976b05d8bf/,Roman,,6/29/2020 0:00,16.0000000,17.0000000,47.708499000000,-3.326519000000,,Riantec,37798,observation-c7b38f31-7992-4137-8330-d4976b05d8bf-8,https://biolit.fr/observations/observation-c7b38f31-7992-4137-8330-d4976b05d8bf-8/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/phorcus lineata.PNG,,TRUE, +N1,59058,sortie-c7b38f31-7992-4137-8330-d4976b05d8bf,https://biolit.fr/sorties/sortie-c7b38f31-7992-4137-8330-d4976b05d8bf/,Roman,,6/29/2020 0:00,16.0000000,17.0000000,47.708499000000,-3.326519000000,,Riantec,37800,observation-c7b38f31-7992-4137-8330-d4976b05d8bf-9,https://biolit.fr/observations/observation-c7b38f31-7992-4137-8330-d4976b05d8bf-9/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes decussatus-scaled.jpg,,TRUE, +N1,59058,sortie-c7b38f31-7992-4137-8330-d4976b05d8bf,https://biolit.fr/sorties/sortie-c7b38f31-7992-4137-8330-d4976b05d8bf/,Roman,,6/29/2020 0:00,16.0000000,17.0000000,47.708499000000,-3.326519000000,,Riantec,37801,observation-c7b38f31-7992-4137-8330-d4976b05d8bf-10,https://biolit.fr/observations/observation-c7b38f31-7992-4137-8330-d4976b05d8bf-10/,Scrobicularia plana,Scrobiculaire,,https://biolit.fr/wp-content/uploads/2023/07/scrobicularia plana_0.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37803,observation-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_3.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37804,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-2,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/annélide sp_0.PNG,,FALSE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37806,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-3,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-3/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_1-scaled.jpg,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37807,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-4,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-4/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_1.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37808,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-5,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-5/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/2023/07/blennie sp 1.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37810,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-6,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-6/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/2023/07/Blennie sp_1.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37811,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-7,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-7/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_5.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37812,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-8,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-8/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_3.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37813,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-9,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-9/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/Chthamalus stellatus-scaled.jpg,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37814,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-10,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-10/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Crassostrea gigas_0.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37815,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-11,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-11/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_3.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37816,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-12,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/membranipora sp.PNG,,FALSE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37818,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-13,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-13/,Mya arenaria,Mye des sables,,https://biolit.fr/wp-content/uploads/2023/07/mya arenaria_0.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37820,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-14,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-14/,Tritia incrassata,Nasse épaisse,,https://biolit.fr/wp-content/uploads/2023/07/Nassarius incrassatus.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37821,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-15,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-15/,Sedum acre,Orpin âcre,,https://biolit.fr/wp-content/uploads/2023/07/Non identifié.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37822,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-16,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-16/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_2.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37823,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-17,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-17/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebra erinaceus_0.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37824,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-18,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-18/,Amphipholis squamata,Ophiure écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/ophiure sp.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37826,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-19,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-19/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/Perforatus perforatus_0.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37827,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-20,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-20/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus-scaled.jpg,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37828,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-21,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-21/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/reste de protection de pectinaria.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37830,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-22,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-22/,Scrobicularia plana,Scrobiculaire,,https://biolit.fr/wp-content/uploads/2023/07/Scrobicularia plana.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37831,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-23,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-23/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/solen marginatus_0.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37833,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-24,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-24/,Venerupis corrugata,Palourde-poulette,,https://biolit.fr/wp-content/uploads/2023/07/Venerupis aurea_0.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37834,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-25,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-25/,Venerupis corrugata,Palourde-poulette,,https://biolit.fr/wp-content/uploads/2023/07/Venerupis corrugata.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37835,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-26,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-26/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa_2.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37836,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-27,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-27/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_3.PNG,,TRUE, +N1,59060,sortie-0aba5ad0-315d-4726-80c5-97452d6f93fb,https://biolit.fr/sorties/sortie-0aba5ad0-315d-4726-80c5-97452d6f93fb/,Guillaume Rinaldi,,6/25/2020 0:00,11.0000000,11.0000000,43.239731000000,5.362372000000,,Plage du bain des dames ,37837,observation-0aba5ad0-315d-4726-80c5-97452d6f93fb,https://biolit.fr/observations/observation-0aba5ad0-315d-4726-80c5-97452d6f93fb/,,,,https://biolit.fr/wp-content/uploads/2023/07/105588249_542637806619535_6824579639601241545_n_0.jpg,,FALSE, +N1,59061,sortie-6348c2df-3bee-47c1-abac-8c62c31f77fe,https://biolit.fr/sorties/sortie-6348c2df-3bee-47c1-abac-8c62c31f77fe/,Marine,,6/25/2020 0:00,9.0000000,10.0000000,43.239996000000,5.362518000000,Planète Mer,Plage du bain des dames,37839,observation-6348c2df-3bee-47c1-abac-8c62c31f77fe,https://biolit.fr/observations/observation-6348c2df-3bee-47c1-abac-8c62c31f77fe/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Paracentrotus lividus Malori-BioLit.jpg,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37841,observation-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea/,,,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona sp.PNG,,FALSE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37843,observation-a276da00-e214-437e-ac85-8407879a63ea-2,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_1.PNG,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37844,observation-a276da00-e214-437e-ac85-8407879a63ea-3,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_0.PNG,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37845,observation-a276da00-e214-437e-ac85-8407879a63ea-4,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-4/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/annélides sp.PNG,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37847,observation-a276da00-e214-437e-ac85-8407879a63ea-5,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-5/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/aurelia aurtita pe.PNG,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37849,observation-a276da00-e214-437e-ac85-8407879a63ea-6,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-6/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_1.jpg,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37850,observation-a276da00-e214-437e-ac85-8407879a63ea-7,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-7/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/cereus pe.PNG,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37852,observation-a276da00-e214-437e-ac85-8407879a63ea-8,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-8/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/chthmalus sp.PNG,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37854,observation-a276da00-e214-437e-ac85-8407879a63ea-9,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Dynamene magnitorata.PNG,,FALSE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37856,observation-a276da00-e214-437e-ac85-8407879a63ea-10,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-10/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/Ligia oceanica.jpg,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37857,observation-a276da00-e214-437e-ac85-8407879a63ea-11,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-11/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/Melarhaphe neritoides-scaled.jpg,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37858,observation-a276da00-e214-437e-ac85-8407879a63ea-12,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-12/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_1.PNG,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37859,observation-a276da00-e214-437e-ac85-8407879a63ea-13,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-13/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus.PNG,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37861,observation-a276da00-e214-437e-ac85-8407879a63ea-14,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-14/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_0.PNG,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37862,observation-a276da00-e214-437e-ac85-8407879a63ea-15,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-15/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/Pagurus sp.PNG,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37863,observation-a276da00-e214-437e-ac85-8407879a63ea-16,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-16/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/palaemon elegans_0.PNG,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37865,observation-a276da00-e214-437e-ac85-8407879a63ea-17,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-17/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/Perforatus perforatus.PNG,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37866,observation-a276da00-e214-437e-ac85-8407879a63ea-18,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-18/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/Pollicipes pollicipes.PNG,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37868,observation-a276da00-e214-437e-ac85-8407879a63ea-19,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/porifera sp.PNG,,FALSE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37870,observation-a276da00-e214-437e-ac85-8407879a63ea-20,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-20/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/Sabellaria alveolata_0.PNG,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37871,observation-a276da00-e214-437e-ac85-8407879a63ea-21,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-21/,Cilysta elegans,Sagartie élégante,,https://biolit.fr/wp-content/uploads/2023/07/Sagartia elegans pe.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37872,observation-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita.jpg,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37873,observation-6a685efa-6b87-415b-820e-419a4e74c605-2,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_0.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37874,observation-6a685efa-6b87-415b-820e-419a4e74c605-3,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-3/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea_2.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37875,observation-6a685efa-6b87-415b-820e-419a4e74c605-4,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-4/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_0.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37877,observation-6a685efa-6b87-415b-820e-419a4e74c605-5,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-5/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/Aulactinia verrucosa.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37879,observation-6a685efa-6b87-415b-820e-419a4e74c605-6,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-6/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_4.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37880,observation-6a685efa-6b87-415b-820e-419a4e74c605-7,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-7/,Doris verrucosa,Doris verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/doris verrucosa.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37881,observation-6a685efa-6b87-415b-820e-419a4e74c605-8,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-8/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp-scaled.jpg,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37882,observation-6a685efa-6b87-415b-820e-419a4e74c605-9,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-9/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/Gravelle.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37883,observation-6a685efa-6b87-415b-820e-419a4e74c605-10,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-10/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/indéterminé 1.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37885,observation-6a685efa-6b87-415b-820e-419a4e74c605-11,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/indéterminé 2.PNG,,FALSE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37887,observation-6a685efa-6b87-415b-820e-419a4e74c605-12,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-12/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/indéterminé 3.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37889,observation-6a685efa-6b87-415b-820e-419a4e74c605-13,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-13/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/indéterminé 4.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37891,observation-6a685efa-6b87-415b-820e-419a4e74c605-14,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-14/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/2023/07/indéterminé 5.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37893,observation-6a685efa-6b87-415b-820e-419a4e74c605-15,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/indéterminé 6.PNG,,FALSE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37895,observation-6a685efa-6b87-415b-820e-419a4e74c605-16,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/indéterminé 7.PNG,,FALSE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37897,observation-6a685efa-6b87-415b-820e-419a4e74c605-17,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-17/,Jorunna tomentosa,Jorunna blanche,,https://biolit.fr/wp-content/uploads/2023/07/indéterminé 8.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37899,observation-6a685efa-6b87-415b-820e-419a4e74c605-18,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/indéterminé_0.PNG,,FALSE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37901,observation-6a685efa-6b87-415b-820e-419a4e74c605-19,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-19/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_2.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37902,observation-6a685efa-6b87-415b-820e-419a4e74c605-20,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-20/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/meduse-scaled.jpg,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37903,observation-6a685efa-6b87-415b-820e-419a4e74c605-21,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-21/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_0-scaled.jpg,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37904,observation-6a685efa-6b87-415b-820e-419a4e74c605-22,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-22/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Paracentrotus lividus.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37906,observation-6a685efa-6b87-415b-820e-419a4e74c605-23,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-23/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Patella ulyssiponensis.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37907,observation-6a685efa-6b87-415b-820e-419a4e74c605-24,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-24/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus-scaled.jpg,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37908,observation-6a685efa-6b87-415b-820e-419a4e74c605-25,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-25/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_2.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37909,observation-6a685efa-6b87-415b-820e-419a4e74c605-26,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-26/,Cilysta elegans,Sagartie élégante,,https://biolit.fr/wp-content/uploads/2023/07/Sagartia elegans.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37910,observation-6a685efa-6b87-415b-820e-419a4e74c605-27,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-27/,Sphaeromatidae (famille),Sphéromiens,,https://biolit.fr/wp-content/uploads/2023/07/sphéromiens.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37912,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_0.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37913,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-2,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-2/,Antalis vulgaris,Dentale,,https://biolit.fr/wp-content/uploads/2023/07/Antalis vulgaris_0.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37915,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-3,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-3/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/Aplysia punctata_0.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37916,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-4,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-4/,Barnea candida,Pholade blanche,,https://biolit.fr/wp-content/uploads/2023/07/Barnea candida_0.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37918,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-5,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-5/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/buccinum undatum_0.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37920,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-6,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-6/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Calliostoma zyziphinum.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37922,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-7,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-7/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_0.jpg,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37923,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-8,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-8/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_3.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37924,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-9,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-9/,Donax vittatus,Donace des canards,,https://biolit.fr/wp-content/uploads/2023/07/Donax vittatus.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37926,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-10,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-10/,Dosinia exoleta,Dosinie radiée,,https://biolit.fr/wp-content/uploads/2023/07/Dosinia exoleta_0.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37927,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-11,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-11/,Echinocyamus pusillus,Fève de mer,,https://biolit.fr/wp-content/uploads/2023/07/echinocyamus pusillus_1.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37929,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-12,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-12/,Ensis siliqua,Couteau-silique,,https://biolit.fr/wp-content/uploads/2023/07/Ensis siliqua.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37931,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-13,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-13/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Eriphia verrucosa.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37933,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-14,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-14/,Euspira catena,Natice porte-chaîne,,https://biolit.fr/wp-content/uploads/2023/07/Eutice catena.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37934,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-15,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/indéterminé.PNG,,FALSE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37936,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-16,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-16/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/indéterminée.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37938,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-17,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-17/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/Larus argentatus.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37939,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-18,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-18/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/Larus marinus.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37941,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-19,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-19/,Lutraria magna,Grande lutraire,,https://biolit.fr/wp-content/uploads/2023/07/lutraria magna_1.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37943,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-20,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-20/,Macoma balthica,Telline de la Baltique,,https://biolit.fr/wp-content/uploads/2023/07/Macoma balthica.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37945,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-21,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-21/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/oeuf de seiche.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37947,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-22,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-22/,Pholas dactylus,Pholade,,https://biolit.fr/wp-content/uploads/2023/07/pholas dactylus_0.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37949,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-23,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-23/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/2023/07/rhizostoma octopus.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37951,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-24,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-24/,Trivia arctica,Grain de café rose,,https://biolit.fr/wp-content/uploads/2023/07/Trivia arctica_0.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37952,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-25,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-25/,Turritellinella tricarinata,Turritelle commune,,https://biolit.fr/wp-content/uploads/2023/07/turitella communis_1.PNG,,TRUE, +N1,59066,sortie-c530b34b-2efd-416c-bef2-1b0ffd918770,https://biolit.fr/sorties/sortie-c530b34b-2efd-416c-bef2-1b0ffd918770/,Marine,,06/08/2020,10.0000000,10.000005,43.247579000000,5.402083000000,,Maison,37984,observation-c530b34b-2efd-416c-bef2-1b0ffd918770,https://biolit.fr/observations/observation-c530b34b-2efd-416c-bef2-1b0ffd918770/,,,,https://biolit.fr/wp-content/uploads/2023/07/E224E8E6-2482-4248-ABE0-8260761F91A9-scaled.jpeg,,FALSE, +N1,59067,sortie-12677b21-1519-41d2-bebc-0d337a599618,https://biolit.fr/sorties/sortie-12677b21-1519-41d2-bebc-0d337a599618/,Caterina Casagranda,,06/08/2020,10.0000000,10.0000000,43.291793000000,5.379142000000,,Marseille,,,,,,,,,, +N1,59068,sortie-651be0d6-d92f-494f-9d6e-950ce88b4069,https://biolit.fr/sorties/sortie-651be0d6-d92f-494f-9d6e-950ce88b4069/,Phil,,5/24/2020 0:00,13.0000000,13.0:35,48.207998000000,-4.373803000000,,Telgruc-sur-Mer - Finistère,37998,observation-651be0d6-d92f-494f-9d6e-950ce88b4069,https://biolit.fr/observations/observation-651be0d6-d92f-494f-9d6e-950ce88b4069/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/20200524_133722.jpg,,TRUE, +N1,59068,sortie-651be0d6-d92f-494f-9d6e-950ce88b4069,https://biolit.fr/sorties/sortie-651be0d6-d92f-494f-9d6e-950ce88b4069/,Phil,,5/24/2020 0:00,13.0000000,13.0:35,48.207998000000,-4.373803000000,,Telgruc-sur-Mer - Finistère,38000,observation-651be0d6-d92f-494f-9d6e-950ce88b4069-2,https://biolit.fr/observations/observation-651be0d6-d92f-494f-9d6e-950ce88b4069-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20200524_133734.jpg,,TRUE, +N1,59068,sortie-651be0d6-d92f-494f-9d6e-950ce88b4069,https://biolit.fr/sorties/sortie-651be0d6-d92f-494f-9d6e-950ce88b4069/,Phil,,5/24/2020 0:00,13.0000000,13.0:35,48.207998000000,-4.373803000000,,Telgruc-sur-Mer - Finistère,38002,observation-651be0d6-d92f-494f-9d6e-950ce88b4069-3,https://biolit.fr/observations/observation-651be0d6-d92f-494f-9d6e-950ce88b4069-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130766.JPG,,FALSE, +N1,59068,sortie-651be0d6-d92f-494f-9d6e-950ce88b4069,https://biolit.fr/sorties/sortie-651be0d6-d92f-494f-9d6e-950ce88b4069/,Phil,,5/24/2020 0:00,13.0000000,13.0:35,48.207998000000,-4.373803000000,,Telgruc-sur-Mer - Finistère,38004,observation-651be0d6-d92f-494f-9d6e-950ce88b4069-4,https://biolit.fr/observations/observation-651be0d6-d92f-494f-9d6e-950ce88b4069-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130767.JPG,,FALSE, +N1,59069,sortie-bc0881c2-a94c-4227-ad41-dc68a64df2a5,https://biolit.fr/sorties/sortie-bc0881c2-a94c-4227-ad41-dc68a64df2a5/,Romuald VIALE - EXPENATURE,,06/01/2020,12.0000000,14.0000000,43.180550000000,5.61281800000,,La Ciotat,38006,observation-bc0881c2-a94c-4227-ad41-dc68a64df2a5,https://biolit.fr/observations/observation-bc0881c2-a94c-4227-ad41-dc68a64df2a5/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/101277279_703298370405543_2451913098898964480_n.jpg,,TRUE, +N1,59070,sortie-b349292c-4a37-408b-93f1-45a3ab183406,https://biolit.fr/sorties/sortie-b349292c-4a37-408b-93f1-45a3ab183406/,Phil,,5/22/2020 0:00,11.0:45,12.0000000,47.799595000000,-4.178826000000,,Loctudy - Finistère,38008,observation-b349292c-4a37-408b-93f1-45a3ab183406,https://biolit.fr/observations/observation-b349292c-4a37-408b-93f1-45a3ab183406/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/20200522_120128.jpg,,TRUE, +N1,59070,sortie-b349292c-4a37-408b-93f1-45a3ab183406,https://biolit.fr/sorties/sortie-b349292c-4a37-408b-93f1-45a3ab183406/,Phil,,5/22/2020 0:00,11.0:45,12.0000000,47.799595000000,-4.178826000000,,Loctudy - Finistère,38010,observation-b349292c-4a37-408b-93f1-45a3ab183406-2,https://biolit.fr/observations/observation-b349292c-4a37-408b-93f1-45a3ab183406-2/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/20200522_120107.jpg,,TRUE, +N1,59070,sortie-b349292c-4a37-408b-93f1-45a3ab183406,https://biolit.fr/sorties/sortie-b349292c-4a37-408b-93f1-45a3ab183406/,Phil,,5/22/2020 0:00,11.0:45,12.0000000,47.799595000000,-4.178826000000,,Loctudy - Finistère,38012,observation-b349292c-4a37-408b-93f1-45a3ab183406-3,https://biolit.fr/observations/observation-b349292c-4a37-408b-93f1-45a3ab183406-3/,Callochiton septemvalvis,Callochiton,,https://biolit.fr/wp-content/uploads/2023/07/20200522_115246.jpg,,TRUE, +N1,59070,sortie-b349292c-4a37-408b-93f1-45a3ab183406,https://biolit.fr/sorties/sortie-b349292c-4a37-408b-93f1-45a3ab183406/,Phil,,5/22/2020 0:00,11.0:45,12.0000000,47.799595000000,-4.178826000000,,Loctudy - Finistère,38014,observation-b349292c-4a37-408b-93f1-45a3ab183406-4,https://biolit.fr/observations/observation-b349292c-4a37-408b-93f1-45a3ab183406-4/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/20200522_120100.jpg,,TRUE, +N1,59071,sortie-ba5f0e75-1ec8-4413-9dd9-f89aa734688b,https://biolit.fr/sorties/sortie-ba5f0e75-1ec8-4413-9dd9-f89aa734688b/,Phil,,5/24/2020 0:00,12.0000000,12.0:35,48.208471000000,-4.372395000000,,Telgruc-sur-Mer - Finistère,38016,observation-ba5f0e75-1ec8-4413-9dd9-f89aa734688b,https://biolit.fr/observations/observation-ba5f0e75-1ec8-4413-9dd9-f89aa734688b/,Spondyliosoma cantharus,Dorade grise,,https://biolit.fr/wp-content/uploads/2023/07/P1130831.JPG,,TRUE, +N1,59071,sortie-ba5f0e75-1ec8-4413-9dd9-f89aa734688b,https://biolit.fr/sorties/sortie-ba5f0e75-1ec8-4413-9dd9-f89aa734688b/,Phil,,5/24/2020 0:00,12.0000000,12.0:35,48.208471000000,-4.372395000000,,Telgruc-sur-Mer - Finistère,38018,observation-ba5f0e75-1ec8-4413-9dd9-f89aa734688b-2,https://biolit.fr/observations/observation-ba5f0e75-1ec8-4413-9dd9-f89aa734688b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130830.JPG,,FALSE, +N1,59072,sortie-303dd5c2-c14a-40ea-a754-e7817b45dd39,https://biolit.fr/sorties/sortie-303dd5c2-c14a-40ea-a754-e7817b45dd39/,Romuald VIALE - EXPENATURE,,5/26/2020 0:00,19.0000000,20.0000000,43.160390000000,5.614374000000,,La Ciotat,38020,observation-303dd5c2-c14a-40ea-a754-e7817b45dd39,https://biolit.fr/observations/observation-303dd5c2-c14a-40ea-a754-e7817b45dd39/,,,,https://biolit.fr/wp-content/uploads/2023/07/100501376_540476109964488_2525554174364483584_n.jpg,,FALSE, +N1,59073,sortie-c0b5a476-97b5-4443-a795-0362b7768e66,https://biolit.fr/sorties/sortie-c0b5a476-97b5-4443-a795-0362b7768e66/,Phil,,5/22/2020 0:00,11.0000000,11.0000000,47.798145000000,-4.180383000000,,Loctudy - Finistère,38022,observation-c0b5a476-97b5-4443-a795-0362b7768e66,https://biolit.fr/observations/observation-c0b5a476-97b5-4443-a795-0362b7768e66/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20200522_113940.jpg,,TRUE, +N1,59073,sortie-c0b5a476-97b5-4443-a795-0362b7768e66,https://biolit.fr/sorties/sortie-c0b5a476-97b5-4443-a795-0362b7768e66/,Phil,,5/22/2020 0:00,11.0000000,11.0000000,47.798145000000,-4.180383000000,,Loctudy - Finistère,38024,observation-c0b5a476-97b5-4443-a795-0362b7768e66-2,https://biolit.fr/observations/observation-c0b5a476-97b5-4443-a795-0362b7768e66-2/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200522_113801.jpg,,TRUE, +N1,59073,sortie-c0b5a476-97b5-4443-a795-0362b7768e66,https://biolit.fr/sorties/sortie-c0b5a476-97b5-4443-a795-0362b7768e66/,Phil,,5/22/2020 0:00,11.0000000,11.0000000,47.798145000000,-4.180383000000,,Loctudy - Finistère,38026,observation-c0b5a476-97b5-4443-a795-0362b7768e66-3,https://biolit.fr/observations/observation-c0b5a476-97b5-4443-a795-0362b7768e66-3/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200522_113741.jpg,,TRUE, +N1,59073,sortie-c0b5a476-97b5-4443-a795-0362b7768e66,https://biolit.fr/sorties/sortie-c0b5a476-97b5-4443-a795-0362b7768e66/,Phil,,5/22/2020 0:00,11.0000000,11.0000000,47.798145000000,-4.180383000000,,Loctudy - Finistère,38028,observation-c0b5a476-97b5-4443-a795-0362b7768e66-4,https://biolit.fr/observations/observation-c0b5a476-97b5-4443-a795-0362b7768e66-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200522_113544.jpg,,TRUE, +N1,59074,sortie-a83504b7-0dd3-4706-aa41-7b7727dd2650,https://biolit.fr/sorties/sortie-a83504b7-0dd3-4706-aa41-7b7727dd2650/,Phil,,5/24/2020 0:00,12.0000000,12.0000000,48.208816000000,-4.371056000000,,Telgruc-sur-Mer - Finistère,38030,observation-a83504b7-0dd3-4706-aa41-7b7727dd2650,https://biolit.fr/observations/observation-a83504b7-0dd3-4706-aa41-7b7727dd2650/,Anthus petrosus,Pipit maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1130847.JPG,,TRUE, +N1,59074,sortie-a83504b7-0dd3-4706-aa41-7b7727dd2650,https://biolit.fr/sorties/sortie-a83504b7-0dd3-4706-aa41-7b7727dd2650/,Phil,,5/24/2020 0:00,12.0000000,12.0000000,48.208816000000,-4.371056000000,,Telgruc-sur-Mer - Finistère,38032,observation-a83504b7-0dd3-4706-aa41-7b7727dd2650-2,https://biolit.fr/observations/observation-a83504b7-0dd3-4706-aa41-7b7727dd2650-2/,Anthus petrosus,Pipit maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1130850.JPG,,TRUE, +N1,59075,sortie-f82d13a9-8ff6-4a20-9a8f-98434bb7ee84,https://biolit.fr/sorties/sortie-f82d13a9-8ff6-4a20-9a8f-98434bb7ee84/,Phil,,5/22/2020 0:00,11.0000000,11.0000000,47.798940000000,-4.180193000000,,Loctudy - Finistère,38034,observation-f82d13a9-8ff6-4a20-9a8f-98434bb7ee84,https://biolit.fr/observations/observation-f82d13a9-8ff6-4a20-9a8f-98434bb7ee84/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/20200522_112323.jpg,,TRUE, +N1,59075,sortie-f82d13a9-8ff6-4a20-9a8f-98434bb7ee84,https://biolit.fr/sorties/sortie-f82d13a9-8ff6-4a20-9a8f-98434bb7ee84/,Phil,,5/22/2020 0:00,11.0000000,11.0000000,47.798940000000,-4.180193000000,,Loctudy - Finistère,38036,observation-f82d13a9-8ff6-4a20-9a8f-98434bb7ee84-2,https://biolit.fr/observations/observation-f82d13a9-8ff6-4a20-9a8f-98434bb7ee84-2/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/20200522_112329.jpg,,TRUE, +N1,59075,sortie-f82d13a9-8ff6-4a20-9a8f-98434bb7ee84,https://biolit.fr/sorties/sortie-f82d13a9-8ff6-4a20-9a8f-98434bb7ee84/,Phil,,5/22/2020 0:00,11.0000000,11.0000000,47.798940000000,-4.180193000000,,Loctudy - Finistère,38038,observation-f82d13a9-8ff6-4a20-9a8f-98434bb7ee84-3,https://biolit.fr/observations/observation-f82d13a9-8ff6-4a20-9a8f-98434bb7ee84-3/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/20200522_112613.jpg,,TRUE, +N1,59075,sortie-f82d13a9-8ff6-4a20-9a8f-98434bb7ee84,https://biolit.fr/sorties/sortie-f82d13a9-8ff6-4a20-9a8f-98434bb7ee84/,Phil,,5/22/2020 0:00,11.0000000,11.0000000,47.798940000000,-4.180193000000,,Loctudy - Finistère,38040,observation-f82d13a9-8ff6-4a20-9a8f-98434bb7ee84-4,https://biolit.fr/observations/observation-f82d13a9-8ff6-4a20-9a8f-98434bb7ee84-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_113036.jpg,,FALSE, +N1,59076,sortie-1353d8e3-3939-48fb-bba6-1e61e8ec2263,https://biolit.fr/sorties/sortie-1353d8e3-3939-48fb-bba6-1e61e8ec2263/,Phil,,5/22/2020 0:00,10.0000000,11.0:15,47.799982000000,-4.181499000000,,Loctudy - Finistère,38042,observation-1353d8e3-3939-48fb-bba6-1e61e8ec2263,https://biolit.fr/observations/observation-1353d8e3-3939-48fb-bba6-1e61e8ec2263/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_104037.jpg,,FALSE, +N1,59076,sortie-1353d8e3-3939-48fb-bba6-1e61e8ec2263,https://biolit.fr/sorties/sortie-1353d8e3-3939-48fb-bba6-1e61e8ec2263/,Phil,,5/22/2020 0:00,10.0000000,11.0:15,47.799982000000,-4.181499000000,,Loctudy - Finistère,38044,observation-1353d8e3-3939-48fb-bba6-1e61e8ec2263-2,https://biolit.fr/observations/observation-1353d8e3-3939-48fb-bba6-1e61e8ec2263-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_104050.jpg,,FALSE, +N1,59076,sortie-1353d8e3-3939-48fb-bba6-1e61e8ec2263,https://biolit.fr/sorties/sortie-1353d8e3-3939-48fb-bba6-1e61e8ec2263/,Phil,,5/22/2020 0:00,10.0000000,11.0:15,47.799982000000,-4.181499000000,,Loctudy - Finistère,38046,observation-1353d8e3-3939-48fb-bba6-1e61e8ec2263-3,https://biolit.fr/observations/observation-1353d8e3-3939-48fb-bba6-1e61e8ec2263-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_103608.jpg,,FALSE, +N1,59076,sortie-1353d8e3-3939-48fb-bba6-1e61e8ec2263,https://biolit.fr/sorties/sortie-1353d8e3-3939-48fb-bba6-1e61e8ec2263/,Phil,,5/22/2020 0:00,10.0000000,11.0:15,47.799982000000,-4.181499000000,,Loctudy - Finistère,38048,observation-1353d8e3-3939-48fb-bba6-1e61e8ec2263-4,https://biolit.fr/observations/observation-1353d8e3-3939-48fb-bba6-1e61e8ec2263-4/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200522_111615.jpg,,TRUE, +N1,59076,sortie-1353d8e3-3939-48fb-bba6-1e61e8ec2263,https://biolit.fr/sorties/sortie-1353d8e3-3939-48fb-bba6-1e61e8ec2263/,Phil,,5/22/2020 0:00,10.0000000,11.0:15,47.799982000000,-4.181499000000,,Loctudy - Finistère,38050,observation-1353d8e3-3939-48fb-bba6-1e61e8ec2263-5,https://biolit.fr/observations/observation-1353d8e3-3939-48fb-bba6-1e61e8ec2263-5/,Lichina pygmaea,Lichen pygmée,,https://biolit.fr/wp-content/uploads/2023/07/20200522_111821.jpg,,TRUE, +N1,59077,sortie-0a6e996c-1007-4321-b27e-0ea144645a12,https://biolit.fr/sorties/sortie-0a6e996c-1007-4321-b27e-0ea144645a12/,Phil,,5/22/2020 0:00,10.0:45,10.0:45,47.801718000000,-4.182409000000,,Loctudy - Finistère,38052,observation-0a6e996c-1007-4321-b27e-0ea144645a12,https://biolit.fr/observations/observation-0a6e996c-1007-4321-b27e-0ea144645a12/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/20200522_104459.jpg,,TRUE, +N1,59077,sortie-0a6e996c-1007-4321-b27e-0ea144645a12,https://biolit.fr/sorties/sortie-0a6e996c-1007-4321-b27e-0ea144645a12/,Phil,,5/22/2020 0:00,10.0:45,10.0:45,47.801718000000,-4.182409000000,,Loctudy - Finistère,38054,observation-0a6e996c-1007-4321-b27e-0ea144645a12-2,https://biolit.fr/observations/observation-0a6e996c-1007-4321-b27e-0ea144645a12-2/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/20200522_104455.jpg,,TRUE, +N1,59078,sortie-279c65ae-d995-4dc7-958a-d63b5499aabb,https://biolit.fr/sorties/sortie-279c65ae-d995-4dc7-958a-d63b5499aabb/,Céline,,5/21/2020 0:00,12.0000000,12.0:45,43.3260990,5.0544840,,Phare de carro,38056,observation-279c65ae-d995-4dc7-958a-d63b5499aabb,https://biolit.fr/observations/observation-279c65ae-d995-4dc7-958a-d63b5499aabb/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1255-scaled.jpg,,TRUE, +N1,59079,sortie-e07f6082-3eab-4f22-811a-44a852b40b44,https://biolit.fr/sorties/sortie-e07f6082-3eab-4f22-811a-44a852b40b44/,Phil,,3/13/2020 0:00,13.0000000,13.0000000,47.797722000000,-4.178937000000,,Loctudy - Finistère,38058,observation-e07f6082-3eab-4f22-811a-44a852b40b44,https://biolit.fr/observations/observation-e07f6082-3eab-4f22-811a-44a852b40b44/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20200313_150414.jpg,,TRUE, +N1,59079,sortie-e07f6082-3eab-4f22-811a-44a852b40b44,https://biolit.fr/sorties/sortie-e07f6082-3eab-4f22-811a-44a852b40b44/,Phil,,3/13/2020 0:00,13.0000000,13.0000000,47.797722000000,-4.178937000000,,Loctudy - Finistère,38060,observation-e07f6082-3eab-4f22-811a-44a852b40b44-2,https://biolit.fr/observations/observation-e07f6082-3eab-4f22-811a-44a852b40b44-2/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20200313_134102.jpg,,TRUE, +N1,59079,sortie-e07f6082-3eab-4f22-811a-44a852b40b44,https://biolit.fr/sorties/sortie-e07f6082-3eab-4f22-811a-44a852b40b44/,Phil,,3/13/2020 0:00,13.0000000,13.0000000,47.797722000000,-4.178937000000,,Loctudy - Finistère,38062,observation-e07f6082-3eab-4f22-811a-44a852b40b44-3,https://biolit.fr/observations/observation-e07f6082-3eab-4f22-811a-44a852b40b44-3/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20200313_134050.jpg,,TRUE, +N1,59079,sortie-e07f6082-3eab-4f22-811a-44a852b40b44,https://biolit.fr/sorties/sortie-e07f6082-3eab-4f22-811a-44a852b40b44/,Phil,,3/13/2020 0:00,13.0000000,13.0000000,47.797722000000,-4.178937000000,,Loctudy - Finistère,38064,observation-e07f6082-3eab-4f22-811a-44a852b40b44-4,https://biolit.fr/observations/observation-e07f6082-3eab-4f22-811a-44a852b40b44-4/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20200313_134123.jpg,,TRUE, +N1,59079,sortie-e07f6082-3eab-4f22-811a-44a852b40b44,https://biolit.fr/sorties/sortie-e07f6082-3eab-4f22-811a-44a852b40b44/,Phil,,3/13/2020 0:00,13.0000000,13.0000000,47.797722000000,-4.178937000000,,Loctudy - Finistère,38066,observation-e07f6082-3eab-4f22-811a-44a852b40b44-5,https://biolit.fr/observations/observation-e07f6082-3eab-4f22-811a-44a852b40b44-5/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20200313_134704.jpg,,TRUE, +N1,59080,sortie-bbecf124-b110-4123-91dd-3456b50cd29a,https://biolit.fr/sorties/sortie-bbecf124-b110-4123-91dd-3456b50cd29a/,Phil,,2/14/2020 0:00,14.0000000,14.0000000,47.800295000000,-4.179946000000,,Loctudy - Finistère,38068,observation-bbecf124-b110-4123-91dd-3456b50cd29a,https://biolit.fr/observations/observation-bbecf124-b110-4123-91dd-3456b50cd29a/,Aplysia depilans,Aplysie visqueuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4169.JPG,,TRUE, +N1,59080,sortie-bbecf124-b110-4123-91dd-3456b50cd29a,https://biolit.fr/sorties/sortie-bbecf124-b110-4123-91dd-3456b50cd29a/,Phil,,2/14/2020 0:00,14.0000000,14.0000000,47.800295000000,-4.179946000000,,Loctudy - Finistère,38070,observation-bbecf124-b110-4123-91dd-3456b50cd29a-2,https://biolit.fr/observations/observation-bbecf124-b110-4123-91dd-3456b50cd29a-2/,Aplysia depilans,Aplysie visqueuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4177.JPG,,TRUE, +N1,59080,sortie-bbecf124-b110-4123-91dd-3456b50cd29a,https://biolit.fr/sorties/sortie-bbecf124-b110-4123-91dd-3456b50cd29a/,Phil,,2/14/2020 0:00,14.0000000,14.0000000,47.800295000000,-4.179946000000,,Loctudy - Finistère,38072,observation-bbecf124-b110-4123-91dd-3456b50cd29a-3,https://biolit.fr/observations/observation-bbecf124-b110-4123-91dd-3456b50cd29a-3/,Aplysia depilans,Aplysie visqueuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4171.JPG,,TRUE, +N1,59080,sortie-bbecf124-b110-4123-91dd-3456b50cd29a,https://biolit.fr/sorties/sortie-bbecf124-b110-4123-91dd-3456b50cd29a/,Phil,,2/14/2020 0:00,14.0000000,14.0000000,47.800295000000,-4.179946000000,,Loctudy - Finistère,38076,observation-bbecf124-b110-4123-91dd-3456b50cd29a-5,https://biolit.fr/observations/observation-bbecf124-b110-4123-91dd-3456b50cd29a-5/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4186.JPG,,TRUE, +N1,59080,sortie-bbecf124-b110-4123-91dd-3456b50cd29a,https://biolit.fr/sorties/sortie-bbecf124-b110-4123-91dd-3456b50cd29a/,Phil,,2/14/2020 0:00,14.0000000,14.0000000,47.800295000000,-4.179946000000,,Loctudy - Finistère,38078,observation-bbecf124-b110-4123-91dd-3456b50cd29a-6,https://biolit.fr/observations/observation-bbecf124-b110-4123-91dd-3456b50cd29a-6/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2020/02/IMG_4179.jpg | https://biolit.fr/wp-content/uploads/2023/07/IMG_4180.JPG,,TRUE, +N1,59080,sortie-bbecf124-b110-4123-91dd-3456b50cd29a,https://biolit.fr/sorties/sortie-bbecf124-b110-4123-91dd-3456b50cd29a/,Phil,,2/14/2020 0:00,14.0000000,14.0000000,47.800295000000,-4.179946000000,,Loctudy - Finistère,38080,observation-bbecf124-b110-4123-91dd-3456b50cd29a-7,https://biolit.fr/observations/observation-bbecf124-b110-4123-91dd-3456b50cd29a-7/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4181.JPG,,TRUE, +N1,59081,sortie-34fd7c3f-f945-4dcc-8213-c7a86f9b904e,https://biolit.fr/sorties/sortie-34fd7c3f-f945-4dcc-8213-c7a86f9b904e/,Phil,,2/21/2020 0:00,12.0000000,12.0:45,47.796337000000,-4.356978000000,,Penmarc'h - Finistère,38082,observation-34fd7c3f-f945-4dcc-8213-c7a86f9b904e,https://biolit.fr/observations/observation-34fd7c3f-f945-4dcc-8213-c7a86f9b904e/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/P1130686.JPG,,TRUE, +N1,59081,sortie-34fd7c3f-f945-4dcc-8213-c7a86f9b904e,https://biolit.fr/sorties/sortie-34fd7c3f-f945-4dcc-8213-c7a86f9b904e/,Phil,,2/21/2020 0:00,12.0000000,12.0:45,47.796337000000,-4.356978000000,,Penmarc'h - Finistère,38084,observation-34fd7c3f-f945-4dcc-8213-c7a86f9b904e-2,https://biolit.fr/observations/observation-34fd7c3f-f945-4dcc-8213-c7a86f9b904e-2/,Conus textile,Cône drap-d'or,,https://biolit.fr/wp-content/uploads/2023/07/P1130692.JPG,,FALSE, +N1,59081,sortie-34fd7c3f-f945-4dcc-8213-c7a86f9b904e,https://biolit.fr/sorties/sortie-34fd7c3f-f945-4dcc-8213-c7a86f9b904e/,Phil,,2/21/2020 0:00,12.0000000,12.0:45,47.796337000000,-4.356978000000,,Penmarc'h - Finistère,38086,observation-34fd7c3f-f945-4dcc-8213-c7a86f9b904e-3,https://biolit.fr/observations/observation-34fd7c3f-f945-4dcc-8213-c7a86f9b904e-3/,Conus textile,Cône drap-d'or,,https://biolit.fr/wp-content/uploads/2023/07/P1130691.JPG,,FALSE, +N1,59081,sortie-34fd7c3f-f945-4dcc-8213-c7a86f9b904e,https://biolit.fr/sorties/sortie-34fd7c3f-f945-4dcc-8213-c7a86f9b904e/,Phil,,2/21/2020 0:00,12.0000000,12.0:45,47.796337000000,-4.356978000000,,Penmarc'h - Finistère,38088,observation-34fd7c3f-f945-4dcc-8213-c7a86f9b904e-4,https://biolit.fr/observations/observation-34fd7c3f-f945-4dcc-8213-c7a86f9b904e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130694.JPG,,FALSE, +N1,59081,sortie-34fd7c3f-f945-4dcc-8213-c7a86f9b904e,https://biolit.fr/sorties/sortie-34fd7c3f-f945-4dcc-8213-c7a86f9b904e/,Phil,,2/21/2020 0:00,12.0000000,12.0:45,47.796337000000,-4.356978000000,,Penmarc'h - Finistère,38090,observation-34fd7c3f-f945-4dcc-8213-c7a86f9b904e-5,https://biolit.fr/observations/observation-34fd7c3f-f945-4dcc-8213-c7a86f9b904e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130685.JPG,,FALSE, +N1,59082,sortie-5309e694-67d8-40da-bd38-3c32f9a5863d,https://biolit.fr/sorties/sortie-5309e694-67d8-40da-bd38-3c32f9a5863d/,Phil,,3/13/2020 0:00,12.0:55,13.000005,47.798700000000,-4.177882000000,,Loctudy - Finistère,38092,observation-5309e694-67d8-40da-bd38-3c32f9a5863d,https://biolit.fr/observations/observation-5309e694-67d8-40da-bd38-3c32f9a5863d/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_125949.jpg,,FALSE, +N1,59082,sortie-5309e694-67d8-40da-bd38-3c32f9a5863d,https://biolit.fr/sorties/sortie-5309e694-67d8-40da-bd38-3c32f9a5863d/,Phil,,3/13/2020 0:00,12.0:55,13.000005,47.798700000000,-4.177882000000,,Loctudy - Finistère,38094,observation-5309e694-67d8-40da-bd38-3c32f9a5863d-2,https://biolit.fr/observations/observation-5309e694-67d8-40da-bd38-3c32f9a5863d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_130101.jpg,,FALSE, +N1,59082,sortie-5309e694-67d8-40da-bd38-3c32f9a5863d,https://biolit.fr/sorties/sortie-5309e694-67d8-40da-bd38-3c32f9a5863d/,Phil,,3/13/2020 0:00,12.0:55,13.000005,47.798700000000,-4.177882000000,,Loctudy - Finistère,38096,observation-5309e694-67d8-40da-bd38-3c32f9a5863d-3,https://biolit.fr/observations/observation-5309e694-67d8-40da-bd38-3c32f9a5863d-3/,Holothuria (Holothuria) tubulosa,Holothurie tubuleuse,,https://biolit.fr/wp-content/uploads/2023/07/20200313_130217.jpg,,TRUE, +N1,59083,sortie-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c,https://biolit.fr/sorties/sortie-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c/,Phil,,3/13/2020 0:00,13.0:25,13.0000000,47.798322000000,-4.178740000000,,Loctudy - Finistère,38098,observation-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c,https://biolit.fr/observations/observation-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/20200313_132559.jpg,,TRUE, +N1,59083,sortie-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c,https://biolit.fr/sorties/sortie-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c/,Phil,,3/13/2020 0:00,13.0:25,13.0000000,47.798322000000,-4.178740000000,,Loctudy - Finistère,38100,observation-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c-2,https://biolit.fr/observations/observation-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c-2/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/20200313_132542.jpg,,TRUE, +N1,59083,sortie-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c,https://biolit.fr/sorties/sortie-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c/,Phil,,3/13/2020 0:00,13.0:25,13.0000000,47.798322000000,-4.178740000000,,Loctudy - Finistère,38102,observation-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c-3,https://biolit.fr/observations/observation-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c-3/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20200313_134042.jpg,,TRUE, +N1,59083,sortie-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c,https://biolit.fr/sorties/sortie-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c/,Phil,,3/13/2020 0:00,13.0:25,13.0000000,47.798322000000,-4.178740000000,,Loctudy - Finistère,38104,observation-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c-4,https://biolit.fr/observations/observation-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c-4/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/20200313_132418.jpg,,TRUE, +N1,59083,sortie-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c,https://biolit.fr/sorties/sortie-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c/,Phil,,3/13/2020 0:00,13.0:25,13.0000000,47.798322000000,-4.178740000000,,Loctudy - Finistère,38106,observation-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c-5,https://biolit.fr/observations/observation-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c-5/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/20200313_132427.jpg,,TRUE, +N1,59084,sortie-65c68103-bb8f-4181-9f8f-744a78da1825,https://biolit.fr/sorties/sortie-65c68103-bb8f-4181-9f8f-744a78da1825/,Phil,,2/21/2020 0:00,12.0:35,12.0000000,47.796718000000,-4.356156000000,,Penmarc'h - Finistère,38108,observation-65c68103-bb8f-4181-9f8f-744a78da1825,https://biolit.fr/observations/observation-65c68103-bb8f-4181-9f8f-744a78da1825/,Corvus corone,Corneille noire,,https://biolit.fr/wp-content/uploads/2023/07/P1130678.JPG,,TRUE, +N1,59084,sortie-65c68103-bb8f-4181-9f8f-744a78da1825,https://biolit.fr/sorties/sortie-65c68103-bb8f-4181-9f8f-744a78da1825/,Phil,,2/21/2020 0:00,12.0:35,12.0000000,47.796718000000,-4.356156000000,,Penmarc'h - Finistère,38110,observation-65c68103-bb8f-4181-9f8f-744a78da1825-2,https://biolit.fr/observations/observation-65c68103-bb8f-4181-9f8f-744a78da1825-2/,Corvus corone,Corneille noire,,https://biolit.fr/wp-content/uploads/2023/07/P1130676.JPG,,TRUE, +N1,59084,sortie-65c68103-bb8f-4181-9f8f-744a78da1825,https://biolit.fr/sorties/sortie-65c68103-bb8f-4181-9f8f-744a78da1825/,Phil,,2/21/2020 0:00,12.0:35,12.0000000,47.796718000000,-4.356156000000,,Penmarc'h - Finistère,38112,observation-65c68103-bb8f-4181-9f8f-744a78da1825-3,https://biolit.fr/observations/observation-65c68103-bb8f-4181-9f8f-744a78da1825-3/,Corvus corone,Corneille noire,,https://biolit.fr/wp-content/uploads/2023/07/P1130675.JPG,,TRUE, +N1,59084,sortie-65c68103-bb8f-4181-9f8f-744a78da1825,https://biolit.fr/sorties/sortie-65c68103-bb8f-4181-9f8f-744a78da1825/,Phil,,2/21/2020 0:00,12.0:35,12.0000000,47.796718000000,-4.356156000000,,Penmarc'h - Finistère,38114,observation-65c68103-bb8f-4181-9f8f-744a78da1825-4,https://biolit.fr/observations/observation-65c68103-bb8f-4181-9f8f-744a78da1825-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130671.JPG,,FALSE, +N1,59084,sortie-65c68103-bb8f-4181-9f8f-744a78da1825,https://biolit.fr/sorties/sortie-65c68103-bb8f-4181-9f8f-744a78da1825/,Phil,,2/21/2020 0:00,12.0:35,12.0000000,47.796718000000,-4.356156000000,,Penmarc'h - Finistère,38116,observation-65c68103-bb8f-4181-9f8f-744a78da1825-5,https://biolit.fr/observations/observation-65c68103-bb8f-4181-9f8f-744a78da1825-5/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/P1130666.JPG,,TRUE, +N1,59085,sortie-4238ee85-951a-4b40-b096-d6d5b0e27a08,https://biolit.fr/sorties/sortie-4238ee85-951a-4b40-b096-d6d5b0e27a08/,Phil,,3/13/2020 0:00,13.0000000,13.0000000,47.799103000000,-4.179173000000,,Loctudy - Finistère,38118,observation-4238ee85-951a-4b40-b096-d6d5b0e27a08,https://biolit.fr/observations/observation-4238ee85-951a-4b40-b096-d6d5b0e27a08/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_132202.jpg,,FALSE, +N1,59085,sortie-4238ee85-951a-4b40-b096-d6d5b0e27a08,https://biolit.fr/sorties/sortie-4238ee85-951a-4b40-b096-d6d5b0e27a08/,Phil,,3/13/2020 0:00,13.0000000,13.0000000,47.799103000000,-4.179173000000,,Loctudy - Finistère,38120,observation-4238ee85-951a-4b40-b096-d6d5b0e27a08-2,https://biolit.fr/observations/observation-4238ee85-951a-4b40-b096-d6d5b0e27a08-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_132209.jpg,,FALSE, +N1,59085,sortie-4238ee85-951a-4b40-b096-d6d5b0e27a08,https://biolit.fr/sorties/sortie-4238ee85-951a-4b40-b096-d6d5b0e27a08/,Phil,,3/13/2020 0:00,13.0000000,13.0000000,47.799103000000,-4.179173000000,,Loctudy - Finistère,38122,observation-4238ee85-951a-4b40-b096-d6d5b0e27a08-3,https://biolit.fr/observations/observation-4238ee85-951a-4b40-b096-d6d5b0e27a08-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_132303.jpg,,FALSE, +N1,59085,sortie-4238ee85-951a-4b40-b096-d6d5b0e27a08,https://biolit.fr/sorties/sortie-4238ee85-951a-4b40-b096-d6d5b0e27a08/,Phil,,3/13/2020 0:00,13.0000000,13.0000000,47.799103000000,-4.179173000000,,Loctudy - Finistère,38124,observation-4238ee85-951a-4b40-b096-d6d5b0e27a08-4,https://biolit.fr/observations/observation-4238ee85-951a-4b40-b096-d6d5b0e27a08-4/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/20200313_132320.jpg,,TRUE, +N1,59085,sortie-4238ee85-951a-4b40-b096-d6d5b0e27a08,https://biolit.fr/sorties/sortie-4238ee85-951a-4b40-b096-d6d5b0e27a08/,Phil,,3/13/2020 0:00,13.0000000,13.0000000,47.799103000000,-4.179173000000,,Loctudy - Finistère,38126,observation-4238ee85-951a-4b40-b096-d6d5b0e27a08-5,https://biolit.fr/observations/observation-4238ee85-951a-4b40-b096-d6d5b0e27a08-5/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/20200313_132401.jpg,,TRUE, +N1,59086,sortie-404c6f48-fa93-4aa3-919a-893a1f2ba0b2,https://biolit.fr/sorties/sortie-404c6f48-fa93-4aa3-919a-893a1f2ba0b2/,Phil,,03/06/2020,16.0:55,17.0000000,48.212294000000,-4.37358800000,,Telgruc-sur-Mer - Finistère,38128,observation-404c6f48-fa93-4aa3-919a-893a1f2ba0b2,https://biolit.fr/observations/observation-404c6f48-fa93-4aa3-919a-893a1f2ba0b2/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/2023/07/P1130752.JPG,,TRUE, +N1,59086,sortie-404c6f48-fa93-4aa3-919a-893a1f2ba0b2,https://biolit.fr/sorties/sortie-404c6f48-fa93-4aa3-919a-893a1f2ba0b2/,Phil,,03/06/2020,16.0:55,17.0000000,48.212294000000,-4.37358800000,,Telgruc-sur-Mer - Finistère,38130,observation-404c6f48-fa93-4aa3-919a-893a1f2ba0b2-2,https://biolit.fr/observations/observation-404c6f48-fa93-4aa3-919a-893a1f2ba0b2-2/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/2023/07/P1130753.JPG,,TRUE, +N1,59086,sortie-404c6f48-fa93-4aa3-919a-893a1f2ba0b2,https://biolit.fr/sorties/sortie-404c6f48-fa93-4aa3-919a-893a1f2ba0b2/,Phil,,03/06/2020,16.0:55,17.0000000,48.212294000000,-4.37358800000,,Telgruc-sur-Mer - Finistère,38132,observation-404c6f48-fa93-4aa3-919a-893a1f2ba0b2-3,https://biolit.fr/observations/observation-404c6f48-fa93-4aa3-919a-893a1f2ba0b2-3/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/2023/07/P1130754.JPG,,TRUE, +N1,59087,sortie-36677060-e696-4982-b6c1-1d27e90793a5,https://biolit.fr/sorties/sortie-36677060-e696-4982-b6c1-1d27e90793a5/,Pan Bagnat,,4/18/2020 0:00,18.0000000,18.0000000,43.395711000000,3.699108000000,,Port de Sète - Vieux Bassin (Môle Saint-Louis),38134,observation-36677060-e696-4982-b6c1-1d27e90793a5,https://biolit.fr/observations/observation-36677060-e696-4982-b6c1-1d27e90793a5/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Eriphia verrucosa.PNG,,TRUE, +N1,59087,sortie-36677060-e696-4982-b6c1-1d27e90793a5,https://biolit.fr/sorties/sortie-36677060-e696-4982-b6c1-1d27e90793a5/,Pan Bagnat,,4/18/2020 0:00,18.0000000,18.0000000,43.395711000000,3.699108000000,,Port de Sète - Vieux Bassin (Môle Saint-Louis),38135,observation-36677060-e696-4982-b6c1-1d27e90793a5-2,https://biolit.fr/observations/observation-36677060-e696-4982-b6c1-1d27e90793a5-2/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/Scyliorhinus canicula-scaled.jpg,,TRUE, +N1,59087,sortie-36677060-e696-4982-b6c1-1d27e90793a5,https://biolit.fr/sorties/sortie-36677060-e696-4982-b6c1-1d27e90793a5/,Pan Bagnat,,4/18/2020 0:00,18.0000000,18.0000000,43.395711000000,3.699108000000,,Port de Sète - Vieux Bassin (Môle Saint-Louis),38137,observation-36677060-e696-4982-b6c1-1d27e90793a5-3,https://biolit.fr/observations/observation-36677060-e696-4982-b6c1-1d27e90793a5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Plathelminthe-scaled.jpg,,FALSE, +N1,59088,sortie-b8c82892-1921-48e5-a2b4-9d7d6def6199,https://biolit.fr/sorties/sortie-b8c82892-1921-48e5-a2b4-9d7d6def6199/,Phil,,3/13/2020 0:00,12.0000000,13.0000000,47.799139000000,-4.17936600000,,Loctudy - Finistère,38141,observation-b8c82892-1921-48e5-a2b4-9d7d6def6199-2,https://biolit.fr/observations/observation-b8c82892-1921-48e5-a2b4-9d7d6def6199-2/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/20200313_130913.jpg | https://biolit.fr/wp-content/uploads/2020/03/20200313_130839.jpg,,TRUE, +N1,59088,sortie-b8c82892-1921-48e5-a2b4-9d7d6def6199,https://biolit.fr/sorties/sortie-b8c82892-1921-48e5-a2b4-9d7d6def6199/,Phil,,3/13/2020 0:00,12.0000000,13.0000000,47.799139000000,-4.17936600000,,Loctudy - Finistère,38143,observation-b8c82892-1921-48e5-a2b4-9d7d6def6199-3,https://biolit.fr/observations/observation-b8c82892-1921-48e5-a2b4-9d7d6def6199-3/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20200313_130842.jpg,,TRUE, +N1,59088,sortie-b8c82892-1921-48e5-a2b4-9d7d6def6199,https://biolit.fr/sorties/sortie-b8c82892-1921-48e5-a2b4-9d7d6def6199/,Phil,,3/13/2020 0:00,12.0000000,13.0000000,47.799139000000,-4.17936600000,,Loctudy - Finistère,38145,observation-b8c82892-1921-48e5-a2b4-9d7d6def6199-4,https://biolit.fr/observations/observation-b8c82892-1921-48e5-a2b4-9d7d6def6199-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_131849.jpg,,FALSE, +N1,59089,sortie-f0f5d210-644f-41d3-a35c-c79058b2a3aa,https://biolit.fr/sorties/sortie-f0f5d210-644f-41d3-a35c-c79058b2a3aa/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.796426000000,-4.355834000000,,Penmarc'h - Finistère,38147,observation-f0f5d210-644f-41d3-a35c-c79058b2a3aa,https://biolit.fr/observations/observation-f0f5d210-644f-41d3-a35c-c79058b2a3aa/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1130650.JPG,,TRUE, +N1,59089,sortie-f0f5d210-644f-41d3-a35c-c79058b2a3aa,https://biolit.fr/sorties/sortie-f0f5d210-644f-41d3-a35c-c79058b2a3aa/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.796426000000,-4.355834000000,,Penmarc'h - Finistère,38149,observation-f0f5d210-644f-41d3-a35c-c79058b2a3aa-2,https://biolit.fr/observations/observation-f0f5d210-644f-41d3-a35c-c79058b2a3aa-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1130651.JPG,,TRUE, +N1,59089,sortie-f0f5d210-644f-41d3-a35c-c79058b2a3aa,https://biolit.fr/sorties/sortie-f0f5d210-644f-41d3-a35c-c79058b2a3aa/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.796426000000,-4.355834000000,,Penmarc'h - Finistère,38151,observation-f0f5d210-644f-41d3-a35c-c79058b2a3aa-3,https://biolit.fr/observations/observation-f0f5d210-644f-41d3-a35c-c79058b2a3aa-3/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1130655.JPG,,TRUE, +N1,59089,sortie-f0f5d210-644f-41d3-a35c-c79058b2a3aa,https://biolit.fr/sorties/sortie-f0f5d210-644f-41d3-a35c-c79058b2a3aa/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.796426000000,-4.355834000000,,Penmarc'h - Finistère,38153,observation-f0f5d210-644f-41d3-a35c-c79058b2a3aa-4,https://biolit.fr/observations/observation-f0f5d210-644f-41d3-a35c-c79058b2a3aa-4/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1130661.JPG,,TRUE, +N1,59089,sortie-f0f5d210-644f-41d3-a35c-c79058b2a3aa,https://biolit.fr/sorties/sortie-f0f5d210-644f-41d3-a35c-c79058b2a3aa/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.796426000000,-4.355834000000,,Penmarc'h - Finistère,38155,observation-f0f5d210-644f-41d3-a35c-c79058b2a3aa-5,https://biolit.fr/observations/observation-f0f5d210-644f-41d3-a35c-c79058b2a3aa-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130662.JPG,,FALSE, +N1,59089,sortie-f0f5d210-644f-41d3-a35c-c79058b2a3aa,https://biolit.fr/sorties/sortie-f0f5d210-644f-41d3-a35c-c79058b2a3aa/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.796426000000,-4.355834000000,,Penmarc'h - Finistère,38157,observation-f0f5d210-644f-41d3-a35c-c79058b2a3aa-6,https://biolit.fr/observations/observation-f0f5d210-644f-41d3-a35c-c79058b2a3aa-6/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/P1130663.JPG,,TRUE, +N1,59089,sortie-f0f5d210-644f-41d3-a35c-c79058b2a3aa,https://biolit.fr/sorties/sortie-f0f5d210-644f-41d3-a35c-c79058b2a3aa/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.796426000000,-4.355834000000,,Penmarc'h - Finistère,38159,observation-f0f5d210-644f-41d3-a35c-c79058b2a3aa-7,https://biolit.fr/observations/observation-f0f5d210-644f-41d3-a35c-c79058b2a3aa-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130664.JPG,,FALSE, +N1,59090,sortie-8032007a-4d96-4491-b651-d3ccb30674cc,https://biolit.fr/sorties/sortie-8032007a-4d96-4491-b651-d3ccb30674cc/,Phil,,3/13/2020 0:00,12.0000000,13.0000000,47.799153000000,-4.179641000000,,Loctudy - Finistère,38161,observation-8032007a-4d96-4491-b651-d3ccb30674cc,https://biolit.fr/observations/observation-8032007a-4d96-4491-b651-d3ccb30674cc/,Holothuria (Holothuria) tubulosa,Holothurie tubuleuse,,https://biolit.fr/wp-content/uploads/2023/07/20200313_125850.jpg,,TRUE, +N1,59090,sortie-8032007a-4d96-4491-b651-d3ccb30674cc,https://biolit.fr/sorties/sortie-8032007a-4d96-4491-b651-d3ccb30674cc/,Phil,,3/13/2020 0:00,12.0000000,13.0000000,47.799153000000,-4.179641000000,,Loctudy - Finistère,38163,observation-8032007a-4d96-4491-b651-d3ccb30674cc-2,https://biolit.fr/observations/observation-8032007a-4d96-4491-b651-d3ccb30674cc-2/,Holothuria (Holothuria) tubulosa,Holothurie tubuleuse,,https://biolit.fr/wp-content/uploads/2023/07/20200313_125909.jpg,,TRUE, +N1,59090,sortie-8032007a-4d96-4491-b651-d3ccb30674cc,https://biolit.fr/sorties/sortie-8032007a-4d96-4491-b651-d3ccb30674cc/,Phil,,3/13/2020 0:00,12.0000000,13.0000000,47.799153000000,-4.179641000000,,Loctudy - Finistère,38165,observation-8032007a-4d96-4491-b651-d3ccb30674cc-3,https://biolit.fr/observations/observation-8032007a-4d96-4491-b651-d3ccb30674cc-3/,Holothuria (Holothuria) tubulosa,Holothurie tubuleuse,,https://biolit.fr/wp-content/uploads/2023/07/20200313_125915.jpg,,TRUE, +N1,59091,sortie-81785c23-9312-45d6-9250-27e999961dd3,https://biolit.fr/sorties/sortie-81785c23-9312-45d6-9250-27e999961dd3/,Phil,,2/16/2020 0:00,13.000005,13.0000000,47.891637000000,-3.987350000000,,Fouesnant - Finistère,38167,observation-81785c23-9312-45d6-9250-27e999961dd3,https://biolit.fr/observations/observation-81785c23-9312-45d6-9250-27e999961dd3/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1130533.JPG,,TRUE, +N1,59091,sortie-81785c23-9312-45d6-9250-27e999961dd3,https://biolit.fr/sorties/sortie-81785c23-9312-45d6-9250-27e999961dd3/,Phil,,2/16/2020 0:00,13.000005,13.0000000,47.891637000000,-3.987350000000,,Fouesnant - Finistère,38169,observation-81785c23-9312-45d6-9250-27e999961dd3-2,https://biolit.fr/observations/observation-81785c23-9312-45d6-9250-27e999961dd3-2/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/P1130536.JPG,,TRUE, +N1,59091,sortie-81785c23-9312-45d6-9250-27e999961dd3,https://biolit.fr/sorties/sortie-81785c23-9312-45d6-9250-27e999961dd3/,Phil,,2/16/2020 0:00,13.000005,13.0000000,47.891637000000,-3.987350000000,,Fouesnant - Finistère,38171,observation-81785c23-9312-45d6-9250-27e999961dd3-3,https://biolit.fr/observations/observation-81785c23-9312-45d6-9250-27e999961dd3-3/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1130537.JPG,,TRUE, +N1,59092,sortie-e83018ca-d94e-42cb-b372-d470eb1f4c2d,https://biolit.fr/sorties/sortie-e83018ca-d94e-42cb-b372-d470eb1f4c2d/,Phil,,3/13/2020 0:00,12.0000000,12.0:55,47.798187000000,-4.180929000000,,Loctudy - Finistère,38173,observation-e83018ca-d94e-42cb-b372-d470eb1f4c2d,https://biolit.fr/observations/observation-e83018ca-d94e-42cb-b372-d470eb1f4c2d/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_125149.jpg,,FALSE, +N1,59092,sortie-e83018ca-d94e-42cb-b372-d470eb1f4c2d,https://biolit.fr/sorties/sortie-e83018ca-d94e-42cb-b372-d470eb1f4c2d/,Phil,,3/13/2020 0:00,12.0000000,12.0:55,47.798187000000,-4.180929000000,,Loctudy - Finistère,38175,observation-e83018ca-d94e-42cb-b372-d470eb1f4c2d-2,https://biolit.fr/observations/observation-e83018ca-d94e-42cb-b372-d470eb1f4c2d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_125201.jpg,,FALSE, +N1,59092,sortie-e83018ca-d94e-42cb-b372-d470eb1f4c2d,https://biolit.fr/sorties/sortie-e83018ca-d94e-42cb-b372-d470eb1f4c2d/,Phil,,3/13/2020 0:00,12.0000000,12.0:55,47.798187000000,-4.180929000000,,Loctudy - Finistère,38177,observation-e83018ca-d94e-42cb-b372-d470eb1f4c2d-3,https://biolit.fr/observations/observation-e83018ca-d94e-42cb-b372-d470eb1f4c2d-3/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20200313_125508.jpg,,TRUE, +N1,59092,sortie-e83018ca-d94e-42cb-b372-d470eb1f4c2d,https://biolit.fr/sorties/sortie-e83018ca-d94e-42cb-b372-d470eb1f4c2d/,Phil,,3/13/2020 0:00,12.0000000,12.0:55,47.798187000000,-4.180929000000,,Loctudy - Finistère,38179,observation-e83018ca-d94e-42cb-b372-d470eb1f4c2d-4,https://biolit.fr/observations/observation-e83018ca-d94e-42cb-b372-d470eb1f4c2d-4/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20200313_125824.jpg,,TRUE, +N1,59093,sortie-cd417d82-3805-47d4-9846-22902d33dafb,https://biolit.fr/sorties/sortie-cd417d82-3805-47d4-9846-22902d33dafb/,Phil,,2/21/2020 0:00,12.0000000,12.0:25,47.795595000000,-4.358448000000,,Penmarc'h - Finistère,38181,observation-cd417d82-3805-47d4-9846-22902d33dafb,https://biolit.fr/observations/observation-cd417d82-3805-47d4-9846-22902d33dafb/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1130641.JPG,,TRUE, +N1,59093,sortie-cd417d82-3805-47d4-9846-22902d33dafb,https://biolit.fr/sorties/sortie-cd417d82-3805-47d4-9846-22902d33dafb/,Phil,,2/21/2020 0:00,12.0000000,12.0:25,47.795595000000,-4.358448000000,,Penmarc'h - Finistère,38183,observation-cd417d82-3805-47d4-9846-22902d33dafb-2,https://biolit.fr/observations/observation-cd417d82-3805-47d4-9846-22902d33dafb-2/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1130642.JPG,,TRUE, +N1,59093,sortie-cd417d82-3805-47d4-9846-22902d33dafb,https://biolit.fr/sorties/sortie-cd417d82-3805-47d4-9846-22902d33dafb/,Phil,,2/21/2020 0:00,12.0000000,12.0:25,47.795595000000,-4.358448000000,,Penmarc'h - Finistère,38185,observation-cd417d82-3805-47d4-9846-22902d33dafb-3,https://biolit.fr/observations/observation-cd417d82-3805-47d4-9846-22902d33dafb-3/,Lomentaria articulata,Algue saucisson,,https://biolit.fr/wp-content/uploads/2023/07/P1130644.JPG,,TRUE, +N1,59093,sortie-cd417d82-3805-47d4-9846-22902d33dafb,https://biolit.fr/sorties/sortie-cd417d82-3805-47d4-9846-22902d33dafb/,Phil,,2/21/2020 0:00,12.0000000,12.0:25,47.795595000000,-4.358448000000,,Penmarc'h - Finistère,38187,observation-cd417d82-3805-47d4-9846-22902d33dafb-4,https://biolit.fr/observations/observation-cd417d82-3805-47d4-9846-22902d33dafb-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1130646.JPG,,TRUE, +N1,59093,sortie-cd417d82-3805-47d4-9846-22902d33dafb,https://biolit.fr/sorties/sortie-cd417d82-3805-47d4-9846-22902d33dafb/,Phil,,2/21/2020 0:00,12.0000000,12.0:25,47.795595000000,-4.358448000000,,Penmarc'h - Finistère,38189,observation-cd417d82-3805-47d4-9846-22902d33dafb-5,https://biolit.fr/observations/observation-cd417d82-3805-47d4-9846-22902d33dafb-5/,Lichina pygmaea,Lichen pygmée,,https://biolit.fr/wp-content/uploads/2023/07/P1130648.JPG,,TRUE, +N1,59094,sortie-b9c40e96-c235-46b5-bb6d-75ae57c45c71,https://biolit.fr/sorties/sortie-b9c40e96-c235-46b5-bb6d-75ae57c45c71/,Phil,,3/13/2020 0:00,12.0:35,12.0:45,47.797793000000,-4.179416000000,,Loctudy - Finistère,38191,observation-b9c40e96-c235-46b5-bb6d-75ae57c45c71,https://biolit.fr/observations/observation-b9c40e96-c235-46b5-bb6d-75ae57c45c71/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20200313_123804.jpg,,TRUE, +N1,59094,sortie-b9c40e96-c235-46b5-bb6d-75ae57c45c71,https://biolit.fr/sorties/sortie-b9c40e96-c235-46b5-bb6d-75ae57c45c71/,Phil,,3/13/2020 0:00,12.0:35,12.0:45,47.797793000000,-4.179416000000,,Loctudy - Finistère,38193,observation-b9c40e96-c235-46b5-bb6d-75ae57c45c71-2,https://biolit.fr/observations/observation-b9c40e96-c235-46b5-bb6d-75ae57c45c71-2/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20200313_123812.jpg,,TRUE, +N1,59094,sortie-b9c40e96-c235-46b5-bb6d-75ae57c45c71,https://biolit.fr/sorties/sortie-b9c40e96-c235-46b5-bb6d-75ae57c45c71/,Phil,,3/13/2020 0:00,12.0:35,12.0:45,47.797793000000,-4.179416000000,,Loctudy - Finistère,38195,observation-b9c40e96-c235-46b5-bb6d-75ae57c45c71-3,https://biolit.fr/observations/observation-b9c40e96-c235-46b5-bb6d-75ae57c45c71-3/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20200313_123753.jpg,,TRUE, +N1,59094,sortie-b9c40e96-c235-46b5-bb6d-75ae57c45c71,https://biolit.fr/sorties/sortie-b9c40e96-c235-46b5-bb6d-75ae57c45c71/,Phil,,3/13/2020 0:00,12.0:35,12.0:45,47.797793000000,-4.179416000000,,Loctudy - Finistère,38197,observation-b9c40e96-c235-46b5-bb6d-75ae57c45c71-4,https://biolit.fr/observations/observation-b9c40e96-c235-46b5-bb6d-75ae57c45c71-4/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/20200313_124824.jpg,,TRUE, +N1,59094,sortie-b9c40e96-c235-46b5-bb6d-75ae57c45c71,https://biolit.fr/sorties/sortie-b9c40e96-c235-46b5-bb6d-75ae57c45c71/,Phil,,3/13/2020 0:00,12.0:35,12.0:45,47.797793000000,-4.179416000000,,Loctudy - Finistère,38199,observation-b9c40e96-c235-46b5-bb6d-75ae57c45c71-5,https://biolit.fr/observations/observation-b9c40e96-c235-46b5-bb6d-75ae57c45c71-5/,Lomentaria articulata,Algue saucisson,,https://biolit.fr/wp-content/uploads/2023/07/20200313_124833.jpg,,TRUE, +N1,59095,sortie-562dfab8-0755-4683-9a52-abc69156234b,https://biolit.fr/sorties/sortie-562dfab8-0755-4683-9a52-abc69156234b/,Phil,,03/06/2020,15.0:45,15.0:55,48.209158000000,-4.370029000000,,Telgruc-sur-Mer - Finistère,38201,observation-562dfab8-0755-4683-9a52-abc69156234b,https://biolit.fr/observations/observation-562dfab8-0755-4683-9a52-abc69156234b/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130747.JPG,,FALSE, +N1,59095,sortie-562dfab8-0755-4683-9a52-abc69156234b,https://biolit.fr/sorties/sortie-562dfab8-0755-4683-9a52-abc69156234b/,Phil,,03/06/2020,15.0:45,15.0:55,48.209158000000,-4.370029000000,,Telgruc-sur-Mer - Finistère,38203,observation-562dfab8-0755-4683-9a52-abc69156234b-2,https://biolit.fr/observations/observation-562dfab8-0755-4683-9a52-abc69156234b-2/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/P1130740.JPG,,TRUE, +N1,59095,sortie-562dfab8-0755-4683-9a52-abc69156234b,https://biolit.fr/sorties/sortie-562dfab8-0755-4683-9a52-abc69156234b/,Phil,,03/06/2020,15.0:45,15.0:55,48.209158000000,-4.370029000000,,Telgruc-sur-Mer - Finistère,38205,observation-562dfab8-0755-4683-9a52-abc69156234b-3,https://biolit.fr/observations/observation-562dfab8-0755-4683-9a52-abc69156234b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130742.JPG,,FALSE, +N1,59095,sortie-562dfab8-0755-4683-9a52-abc69156234b,https://biolit.fr/sorties/sortie-562dfab8-0755-4683-9a52-abc69156234b/,Phil,,03/06/2020,15.0:45,15.0:55,48.209158000000,-4.370029000000,,Telgruc-sur-Mer - Finistère,38207,observation-562dfab8-0755-4683-9a52-abc69156234b-4,https://biolit.fr/observations/observation-562dfab8-0755-4683-9a52-abc69156234b-4/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/P1130743.JPG,,TRUE, +N1,59095,sortie-562dfab8-0755-4683-9a52-abc69156234b,https://biolit.fr/sorties/sortie-562dfab8-0755-4683-9a52-abc69156234b/,Phil,,03/06/2020,15.0:45,15.0:55,48.209158000000,-4.370029000000,,Telgruc-sur-Mer - Finistère,38209,observation-562dfab8-0755-4683-9a52-abc69156234b-5,https://biolit.fr/observations/observation-562dfab8-0755-4683-9a52-abc69156234b-5/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/P1130744.JPG,,TRUE, +N1,59095,sortie-562dfab8-0755-4683-9a52-abc69156234b,https://biolit.fr/sorties/sortie-562dfab8-0755-4683-9a52-abc69156234b/,Phil,,03/06/2020,15.0:45,15.0:55,48.209158000000,-4.370029000000,,Telgruc-sur-Mer - Finistère,38211,observation-562dfab8-0755-4683-9a52-abc69156234b-6,https://biolit.fr/observations/observation-562dfab8-0755-4683-9a52-abc69156234b-6/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/P1130745.JPG,,TRUE, +N1,59095,sortie-562dfab8-0755-4683-9a52-abc69156234b,https://biolit.fr/sorties/sortie-562dfab8-0755-4683-9a52-abc69156234b/,Phil,,03/06/2020,15.0:45,15.0:55,48.209158000000,-4.370029000000,,Telgruc-sur-Mer - Finistère,38213,observation-562dfab8-0755-4683-9a52-abc69156234b-7,https://biolit.fr/observations/observation-562dfab8-0755-4683-9a52-abc69156234b-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130746.JPG,,FALSE, +N1,59096,sortie-5f34ba94-8dc4-4078-ae32-5f7d43f09834,https://biolit.fr/sorties/sortie-5f34ba94-8dc4-4078-ae32-5f7d43f09834/,Phil,,2/21/2020 0:00,12.0:15,12.0000000,47.795828000000,-4.358568000000,,Penmarc'h - Finistère,38215,observation-5f34ba94-8dc4-4078-ae32-5f7d43f09834,https://biolit.fr/observations/observation-5f34ba94-8dc4-4078-ae32-5f7d43f09834/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1130631.JPG,,TRUE, +N1,59096,sortie-5f34ba94-8dc4-4078-ae32-5f7d43f09834,https://biolit.fr/sorties/sortie-5f34ba94-8dc4-4078-ae32-5f7d43f09834/,Phil,,2/21/2020 0:00,12.0:15,12.0000000,47.795828000000,-4.358568000000,,Penmarc'h - Finistère,38217,observation-5f34ba94-8dc4-4078-ae32-5f7d43f09834-2,https://biolit.fr/observations/observation-5f34ba94-8dc4-4078-ae32-5f7d43f09834-2/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/P1130632.JPG,,TRUE, +N1,59096,sortie-5f34ba94-8dc4-4078-ae32-5f7d43f09834,https://biolit.fr/sorties/sortie-5f34ba94-8dc4-4078-ae32-5f7d43f09834/,Phil,,2/21/2020 0:00,12.0:15,12.0000000,47.795828000000,-4.358568000000,,Penmarc'h - Finistère,38219,observation-5f34ba94-8dc4-4078-ae32-5f7d43f09834-3,https://biolit.fr/observations/observation-5f34ba94-8dc4-4078-ae32-5f7d43f09834-3/,Cladophora rupestris,Cladophore des rochers,,https://biolit.fr/wp-content/uploads/2023/07/P1130633.JPG,,TRUE, +N1,59096,sortie-5f34ba94-8dc4-4078-ae32-5f7d43f09834,https://biolit.fr/sorties/sortie-5f34ba94-8dc4-4078-ae32-5f7d43f09834/,Phil,,2/21/2020 0:00,12.0:15,12.0000000,47.795828000000,-4.358568000000,,Penmarc'h - Finistère,38221,observation-5f34ba94-8dc4-4078-ae32-5f7d43f09834-4,https://biolit.fr/observations/observation-5f34ba94-8dc4-4078-ae32-5f7d43f09834-4/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/P1130638.JPG,,TRUE, +N1,59096,sortie-5f34ba94-8dc4-4078-ae32-5f7d43f09834,https://biolit.fr/sorties/sortie-5f34ba94-8dc4-4078-ae32-5f7d43f09834/,Phil,,2/21/2020 0:00,12.0:15,12.0000000,47.795828000000,-4.358568000000,,Penmarc'h - Finistère,38223,observation-5f34ba94-8dc4-4078-ae32-5f7d43f09834-5,https://biolit.fr/observations/observation-5f34ba94-8dc4-4078-ae32-5f7d43f09834-5/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/P1130639.JPG,,TRUE, +N1,59097,sortie-4042007b-6f32-4f98-8817-18499c455647,https://biolit.fr/sorties/sortie-4042007b-6f32-4f98-8817-18499c455647/,Phil,,3/13/2020 0:00,12.0000000,12.0000000,47.798445000000,-4.181405000000,,Loctudy - Finistère,38225,observation-4042007b-6f32-4f98-8817-18499c455647,https://biolit.fr/observations/observation-4042007b-6f32-4f98-8817-18499c455647/,Aplysilla sulfurea,Aplysille jaune soufre,,https://biolit.fr/wp-content/uploads/2023/07/20200313_122149.jpg,,TRUE, +N1,59097,sortie-4042007b-6f32-4f98-8817-18499c455647,https://biolit.fr/sorties/sortie-4042007b-6f32-4f98-8817-18499c455647/,Phil,,3/13/2020 0:00,12.0000000,12.0000000,47.798445000000,-4.181405000000,,Loctudy - Finistère,38227,observation-4042007b-6f32-4f98-8817-18499c455647-2,https://biolit.fr/observations/observation-4042007b-6f32-4f98-8817-18499c455647-2/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/20200313_122750.jpg,,TRUE, +N1,59097,sortie-4042007b-6f32-4f98-8817-18499c455647,https://biolit.fr/sorties/sortie-4042007b-6f32-4f98-8817-18499c455647/,Phil,,3/13/2020 0:00,12.0000000,12.0000000,47.798445000000,-4.181405000000,,Loctudy - Finistère,38229,observation-4042007b-6f32-4f98-8817-18499c455647-3,https://biolit.fr/observations/observation-4042007b-6f32-4f98-8817-18499c455647-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_123303.jpg,,FALSE, +N1,59097,sortie-4042007b-6f32-4f98-8817-18499c455647,https://biolit.fr/sorties/sortie-4042007b-6f32-4f98-8817-18499c455647/,Phil,,3/13/2020 0:00,12.0000000,12.0000000,47.798445000000,-4.181405000000,,Loctudy - Finistère,38231,observation-4042007b-6f32-4f98-8817-18499c455647-4,https://biolit.fr/observations/observation-4042007b-6f32-4f98-8817-18499c455647-4/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20200313_123544.jpg,,TRUE, +N1,59097,sortie-4042007b-6f32-4f98-8817-18499c455647,https://biolit.fr/sorties/sortie-4042007b-6f32-4f98-8817-18499c455647/,Phil,,3/13/2020 0:00,12.0000000,12.0000000,47.798445000000,-4.181405000000,,Loctudy - Finistère,38233,observation-4042007b-6f32-4f98-8817-18499c455647-5,https://biolit.fr/observations/observation-4042007b-6f32-4f98-8817-18499c455647-5/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20200313_123629.jpg,,TRUE, +N1,59098,sortie-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e,https://biolit.fr/sorties/sortie-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e/,Phil,,2/21/2020 0:00,12.0:55,13.0000000,47.802102000000,-4.344500000000,,Penmarc'h - Finistère,38235,observation-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e,https://biolit.fr/observations/observation-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/2023/07/P1130697.JPG,,TRUE, +N1,59098,sortie-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e,https://biolit.fr/sorties/sortie-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e/,Phil,,2/21/2020 0:00,12.0:55,13.0000000,47.802102000000,-4.344500000000,,Penmarc'h - Finistère,38237,observation-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e-2,https://biolit.fr/observations/observation-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e-2/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/2023/07/P1130695.JPG,,TRUE, +N1,59098,sortie-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e,https://biolit.fr/sorties/sortie-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e/,Phil,,2/21/2020 0:00,12.0:55,13.0000000,47.802102000000,-4.344500000000,,Penmarc'h - Finistère,38239,observation-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e-3,https://biolit.fr/observations/observation-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e-3/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/2023/07/P1130703.JPG,,TRUE, +N1,59098,sortie-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e,https://biolit.fr/sorties/sortie-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e/,Phil,,2/21/2020 0:00,12.0:55,13.0000000,47.802102000000,-4.344500000000,,Penmarc'h - Finistère,38241,observation-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e-4,https://biolit.fr/observations/observation-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e-4/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/2023/07/P1130704.JPG,,TRUE, +N1,59098,sortie-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e,https://biolit.fr/sorties/sortie-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e/,Phil,,2/21/2020 0:00,12.0:55,13.0000000,47.802102000000,-4.344500000000,,Penmarc'h - Finistère,38243,observation-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e-5,https://biolit.fr/observations/observation-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e-5/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/2023/07/P1130708.JPG,,TRUE, +N1,59098,sortie-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e,https://biolit.fr/sorties/sortie-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e/,Phil,,2/21/2020 0:00,12.0:55,13.0000000,47.802102000000,-4.344500000000,,Penmarc'h - Finistère,38245,observation-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e-6,https://biolit.fr/observations/observation-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e-6/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/2023/07/P1130710.JPG,,TRUE, +N1,59098,sortie-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e,https://biolit.fr/sorties/sortie-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e/,Phil,,2/21/2020 0:00,12.0:55,13.0000000,47.802102000000,-4.344500000000,,Penmarc'h - Finistère,38247,observation-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e-7,https://biolit.fr/observations/observation-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e-7/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/2023/07/P1130711.JPG,,TRUE, +N1,59098,sortie-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e,https://biolit.fr/sorties/sortie-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e/,Phil,,2/21/2020 0:00,12.0:55,13.0000000,47.802102000000,-4.344500000000,,Penmarc'h - Finistère,38249,observation-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e-8,https://biolit.fr/observations/observation-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e-8/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/2023/07/P1130713.JPG,,TRUE, +N1,59099,sortie-a5a81ac3-185e-46f0-b690-5d977a17f967,https://biolit.fr/sorties/sortie-a5a81ac3-185e-46f0-b690-5d977a17f967/,Phil,,3/13/2020 0:00,12.0:15,12.0000000,47.800039000000,-4.18047100000,,Loctudy - Finistère,38251,observation-a5a81ac3-185e-46f0-b690-5d977a17f967,https://biolit.fr/observations/observation-a5a81ac3-185e-46f0-b690-5d977a17f967/,Terpios gelatinosus,Eponge encroûtante bleue,,https://biolit.fr/wp-content/uploads/2023/07/20200313_121455.jpg,,TRUE, +N1,59099,sortie-a5a81ac3-185e-46f0-b690-5d977a17f967,https://biolit.fr/sorties/sortie-a5a81ac3-185e-46f0-b690-5d977a17f967/,Phil,,3/13/2020 0:00,12.0:15,12.0000000,47.800039000000,-4.18047100000,,Loctudy - Finistère,38253,observation-a5a81ac3-185e-46f0-b690-5d977a17f967-2,https://biolit.fr/observations/observation-a5a81ac3-185e-46f0-b690-5d977a17f967-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_121445.jpg,,FALSE, +N1,59099,sortie-a5a81ac3-185e-46f0-b690-5d977a17f967,https://biolit.fr/sorties/sortie-a5a81ac3-185e-46f0-b690-5d977a17f967/,Phil,,3/13/2020 0:00,12.0:15,12.0000000,47.800039000000,-4.18047100000,,Loctudy - Finistère,38255,observation-a5a81ac3-185e-46f0-b690-5d977a17f967-3,https://biolit.fr/observations/observation-a5a81ac3-185e-46f0-b690-5d977a17f967-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_121449.jpg,,FALSE, +N1,59099,sortie-a5a81ac3-185e-46f0-b690-5d977a17f967,https://biolit.fr/sorties/sortie-a5a81ac3-185e-46f0-b690-5d977a17f967/,Phil,,3/13/2020 0:00,12.0:15,12.0000000,47.800039000000,-4.18047100000,,Loctudy - Finistère,38257,observation-a5a81ac3-185e-46f0-b690-5d977a17f967-4,https://biolit.fr/observations/observation-a5a81ac3-185e-46f0-b690-5d977a17f967-4/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/20200313_121839.jpg,,TRUE, +N1,59099,sortie-a5a81ac3-185e-46f0-b690-5d977a17f967,https://biolit.fr/sorties/sortie-a5a81ac3-185e-46f0-b690-5d977a17f967/,Phil,,3/13/2020 0:00,12.0:15,12.0000000,47.800039000000,-4.18047100000,,Loctudy - Finistère,38259,observation-a5a81ac3-185e-46f0-b690-5d977a17f967-5,https://biolit.fr/observations/observation-a5a81ac3-185e-46f0-b690-5d977a17f967-5/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20200313_121854.jpg,,TRUE, +N1,59100,sortie-98224b30-d2de-457f-becb-4d51c1f2607e,https://biolit.fr/sorties/sortie-98224b30-d2de-457f-becb-4d51c1f2607e/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.795519000000,-4.357991000000,,Penmarc'h - Finistère,38261,observation-98224b30-d2de-457f-becb-4d51c1f2607e,https://biolit.fr/observations/observation-98224b30-d2de-457f-becb-4d51c1f2607e/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1130606.JPG,,TRUE, +N1,59100,sortie-98224b30-d2de-457f-becb-4d51c1f2607e,https://biolit.fr/sorties/sortie-98224b30-d2de-457f-becb-4d51c1f2607e/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.795519000000,-4.357991000000,,Penmarc'h - Finistère,38263,observation-98224b30-d2de-457f-becb-4d51c1f2607e-2,https://biolit.fr/observations/observation-98224b30-d2de-457f-becb-4d51c1f2607e-2/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1130607.JPG,,TRUE, +N1,59100,sortie-98224b30-d2de-457f-becb-4d51c1f2607e,https://biolit.fr/sorties/sortie-98224b30-d2de-457f-becb-4d51c1f2607e/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.795519000000,-4.357991000000,,Penmarc'h - Finistère,38265,observation-98224b30-d2de-457f-becb-4d51c1f2607e-3,https://biolit.fr/observations/observation-98224b30-d2de-457f-becb-4d51c1f2607e-3/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1130622.JPG,,TRUE, +N1,59100,sortie-98224b30-d2de-457f-becb-4d51c1f2607e,https://biolit.fr/sorties/sortie-98224b30-d2de-457f-becb-4d51c1f2607e/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.795519000000,-4.357991000000,,Penmarc'h - Finistère,38267,observation-98224b30-d2de-457f-becb-4d51c1f2607e-4,https://biolit.fr/observations/observation-98224b30-d2de-457f-becb-4d51c1f2607e-4/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1130624.JPG,,TRUE, +N1,59100,sortie-98224b30-d2de-457f-becb-4d51c1f2607e,https://biolit.fr/sorties/sortie-98224b30-d2de-457f-becb-4d51c1f2607e/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.795519000000,-4.357991000000,,Penmarc'h - Finistère,38269,observation-98224b30-d2de-457f-becb-4d51c1f2607e-5,https://biolit.fr/observations/observation-98224b30-d2de-457f-becb-4d51c1f2607e-5/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1130630.JPG,,TRUE, +N1,59101,sortie-6e334f19-153c-4ece-a748-6741a1334ef7,https://biolit.fr/sorties/sortie-6e334f19-153c-4ece-a748-6741a1334ef7/,Phil,,3/13/2020 0:00,12.0000000,12.0:15,47.799323000000,-4.179892000000,,Loctudy - Finistère,38271,observation-6e334f19-153c-4ece-a748-6741a1334ef7,https://biolit.fr/observations/observation-6e334f19-153c-4ece-a748-6741a1334ef7/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20200313_121215.jpg,,TRUE, +N1,59101,sortie-6e334f19-153c-4ece-a748-6741a1334ef7,https://biolit.fr/sorties/sortie-6e334f19-153c-4ece-a748-6741a1334ef7/,Phil,,3/13/2020 0:00,12.0000000,12.0:15,47.799323000000,-4.179892000000,,Loctudy - Finistère,38273,observation-6e334f19-153c-4ece-a748-6741a1334ef7-2,https://biolit.fr/observations/observation-6e334f19-153c-4ece-a748-6741a1334ef7-2/,Terpios gelatinosus,Eponge encroûtante bleue,,https://biolit.fr/wp-content/uploads/2023/07/20200313_121227.jpg,,TRUE, +N1,59101,sortie-6e334f19-153c-4ece-a748-6741a1334ef7,https://biolit.fr/sorties/sortie-6e334f19-153c-4ece-a748-6741a1334ef7/,Phil,,3/13/2020 0:00,12.0000000,12.0:15,47.799323000000,-4.179892000000,,Loctudy - Finistère,38275,observation-6e334f19-153c-4ece-a748-6741a1334ef7-3,https://biolit.fr/observations/observation-6e334f19-153c-4ece-a748-6741a1334ef7-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200313_121305.jpg,,TRUE, +N1,59101,sortie-6e334f19-153c-4ece-a748-6741a1334ef7,https://biolit.fr/sorties/sortie-6e334f19-153c-4ece-a748-6741a1334ef7/,Phil,,3/13/2020 0:00,12.0000000,12.0:15,47.799323000000,-4.179892000000,,Loctudy - Finistère,38277,observation-6e334f19-153c-4ece-a748-6741a1334ef7-4,https://biolit.fr/observations/observation-6e334f19-153c-4ece-a748-6741a1334ef7-4/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200313_121310.jpg,,TRUE, +N1,59101,sortie-6e334f19-153c-4ece-a748-6741a1334ef7,https://biolit.fr/sorties/sortie-6e334f19-153c-4ece-a748-6741a1334ef7/,Phil,,3/13/2020 0:00,12.0000000,12.0:15,47.799323000000,-4.179892000000,,Loctudy - Finistère,38279,observation-6e334f19-153c-4ece-a748-6741a1334ef7-5,https://biolit.fr/observations/observation-6e334f19-153c-4ece-a748-6741a1334ef7-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_121221.jpg,,FALSE, +N1,59102,sortie-8ba98d21-3a35-43d1-8d67-f4afed8d76b6,https://biolit.fr/sorties/sortie-8ba98d21-3a35-43d1-8d67-f4afed8d76b6/,Phil,,3/16/2020 0:00,16.0000000,16.0:45,48.603442000000,-4.549898000000,,Plouguerneau - Finistère,38281,observation-8ba98d21-3a35-43d1-8d67-f4afed8d76b6,https://biolit.fr/observations/observation-8ba98d21-3a35-43d1-8d67-f4afed8d76b6/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/20200316_164404.jpg,,TRUE, +N1,59102,sortie-8ba98d21-3a35-43d1-8d67-f4afed8d76b6,https://biolit.fr/sorties/sortie-8ba98d21-3a35-43d1-8d67-f4afed8d76b6/,Phil,,3/16/2020 0:00,16.0000000,16.0:45,48.603442000000,-4.549898000000,,Plouguerneau - Finistère,38283,observation-8ba98d21-3a35-43d1-8d67-f4afed8d76b6-2,https://biolit.fr/observations/observation-8ba98d21-3a35-43d1-8d67-f4afed8d76b6-2/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/20200316_164346.jpg,,TRUE, +N1,59102,sortie-8ba98d21-3a35-43d1-8d67-f4afed8d76b6,https://biolit.fr/sorties/sortie-8ba98d21-3a35-43d1-8d67-f4afed8d76b6/,Phil,,3/16/2020 0:00,16.0000000,16.0:45,48.603442000000,-4.549898000000,,Plouguerneau - Finistère,38285,observation-8ba98d21-3a35-43d1-8d67-f4afed8d76b6-3,https://biolit.fr/observations/observation-8ba98d21-3a35-43d1-8d67-f4afed8d76b6-3/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20200316_164041.jpg,,TRUE, +N1,59102,sortie-8ba98d21-3a35-43d1-8d67-f4afed8d76b6,https://biolit.fr/sorties/sortie-8ba98d21-3a35-43d1-8d67-f4afed8d76b6/,Phil,,3/16/2020 0:00,16.0000000,16.0:45,48.603442000000,-4.549898000000,,Plouguerneau - Finistère,38287,observation-8ba98d21-3a35-43d1-8d67-f4afed8d76b6-4,https://biolit.fr/observations/observation-8ba98d21-3a35-43d1-8d67-f4afed8d76b6-4/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20200316_164550.jpg,,TRUE, +N1,59102,sortie-8ba98d21-3a35-43d1-8d67-f4afed8d76b6,https://biolit.fr/sorties/sortie-8ba98d21-3a35-43d1-8d67-f4afed8d76b6/,Phil,,3/16/2020 0:00,16.0000000,16.0:45,48.603442000000,-4.549898000000,,Plouguerneau - Finistère,38289,observation-8ba98d21-3a35-43d1-8d67-f4afed8d76b6-5,https://biolit.fr/observations/observation-8ba98d21-3a35-43d1-8d67-f4afed8d76b6-5/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20200316_163815.jpg,,TRUE, +N1,59103,sortie-1975e0e8-4809-4a45-8bc6-aa55807db7d7,https://biolit.fr/sorties/sortie-1975e0e8-4809-4a45-8bc6-aa55807db7d7/,Phil,,3/13/2020 0:00,12.000005,12.0000000,47.798995000000,-4.179021000000,,Loctudy - Finistère,38291,observation-1975e0e8-4809-4a45-8bc6-aa55807db7d7,https://biolit.fr/observations/observation-1975e0e8-4809-4a45-8bc6-aa55807db7d7/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20200313_120930.jpg,,TRUE, +N1,59103,sortie-1975e0e8-4809-4a45-8bc6-aa55807db7d7,https://biolit.fr/sorties/sortie-1975e0e8-4809-4a45-8bc6-aa55807db7d7/,Phil,,3/13/2020 0:00,12.000005,12.0000000,47.798995000000,-4.179021000000,,Loctudy - Finistère,38293,observation-1975e0e8-4809-4a45-8bc6-aa55807db7d7-2,https://biolit.fr/observations/observation-1975e0e8-4809-4a45-8bc6-aa55807db7d7-2/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20200313_120950.jpg,,TRUE, +N1,59103,sortie-1975e0e8-4809-4a45-8bc6-aa55807db7d7,https://biolit.fr/sorties/sortie-1975e0e8-4809-4a45-8bc6-aa55807db7d7/,Phil,,3/13/2020 0:00,12.000005,12.0000000,47.798995000000,-4.179021000000,,Loctudy - Finistère,38295,observation-1975e0e8-4809-4a45-8bc6-aa55807db7d7-3,https://biolit.fr/observations/observation-1975e0e8-4809-4a45-8bc6-aa55807db7d7-3/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20200313_120719.jpg,,TRUE, +N1,59103,sortie-1975e0e8-4809-4a45-8bc6-aa55807db7d7,https://biolit.fr/sorties/sortie-1975e0e8-4809-4a45-8bc6-aa55807db7d7/,Phil,,3/13/2020 0:00,12.000005,12.0000000,47.798995000000,-4.179021000000,,Loctudy - Finistère,38297,observation-1975e0e8-4809-4a45-8bc6-aa55807db7d7-4,https://biolit.fr/observations/observation-1975e0e8-4809-4a45-8bc6-aa55807db7d7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_120936.jpg,,FALSE, +N1,59103,sortie-1975e0e8-4809-4a45-8bc6-aa55807db7d7,https://biolit.fr/sorties/sortie-1975e0e8-4809-4a45-8bc6-aa55807db7d7/,Phil,,3/13/2020 0:00,12.000005,12.0000000,47.798995000000,-4.179021000000,,Loctudy - Finistère,38299,observation-1975e0e8-4809-4a45-8bc6-aa55807db7d7-5,https://biolit.fr/observations/observation-1975e0e8-4809-4a45-8bc6-aa55807db7d7-5/,Phymatolithon lenormandii,Algue encroûtante rouge de Lenormand,,https://biolit.fr/wp-content/uploads/2023/07/20200313_121058.jpg,,TRUE, +N1,59103,sortie-1975e0e8-4809-4a45-8bc6-aa55807db7d7,https://biolit.fr/sorties/sortie-1975e0e8-4809-4a45-8bc6-aa55807db7d7/,Phil,,3/13/2020 0:00,12.000005,12.0000000,47.798995000000,-4.179021000000,,Loctudy - Finistère,38301,observation-1975e0e8-4809-4a45-8bc6-aa55807db7d7-6,https://biolit.fr/observations/observation-1975e0e8-4809-4a45-8bc6-aa55807db7d7-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_121050.jpg,,FALSE, +N1,59104,sortie-4d106ca1-f2e5-465c-b5da-a8406f8e016e,https://biolit.fr/sorties/sortie-4d106ca1-f2e5-465c-b5da-a8406f8e016e/,Phil,,2/14/2020 0:00,11.0000000,11.0:45,47.793180000000,-4.226427000000,,Lesconil - Finistère,38303,observation-4d106ca1-f2e5-465c-b5da-a8406f8e016e,https://biolit.fr/observations/observation-4d106ca1-f2e5-465c-b5da-a8406f8e016e/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200214_114110.jpg,,TRUE, +N1,59104,sortie-4d106ca1-f2e5-465c-b5da-a8406f8e016e,https://biolit.fr/sorties/sortie-4d106ca1-f2e5-465c-b5da-a8406f8e016e/,Phil,,2/14/2020 0:00,11.0000000,11.0:45,47.793180000000,-4.226427000000,,Lesconil - Finistère,38305,observation-4d106ca1-f2e5-465c-b5da-a8406f8e016e-2,https://biolit.fr/observations/observation-4d106ca1-f2e5-465c-b5da-a8406f8e016e-2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200214_114211.jpg,,TRUE, +N1,59104,sortie-4d106ca1-f2e5-465c-b5da-a8406f8e016e,https://biolit.fr/sorties/sortie-4d106ca1-f2e5-465c-b5da-a8406f8e016e/,Phil,,2/14/2020 0:00,11.0000000,11.0:45,47.793180000000,-4.226427000000,,Lesconil - Finistère,38307,observation-4d106ca1-f2e5-465c-b5da-a8406f8e016e-3,https://biolit.fr/observations/observation-4d106ca1-f2e5-465c-b5da-a8406f8e016e-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200214_114233.jpg,,TRUE, +N1,59104,sortie-4d106ca1-f2e5-465c-b5da-a8406f8e016e,https://biolit.fr/sorties/sortie-4d106ca1-f2e5-465c-b5da-a8406f8e016e/,Phil,,2/14/2020 0:00,11.0000000,11.0:45,47.793180000000,-4.226427000000,,Lesconil - Finistère,38309,observation-4d106ca1-f2e5-465c-b5da-a8406f8e016e-4,https://biolit.fr/observations/observation-4d106ca1-f2e5-465c-b5da-a8406f8e016e-4/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200214_114305.jpg,,TRUE, +N1,59104,sortie-4d106ca1-f2e5-465c-b5da-a8406f8e016e,https://biolit.fr/sorties/sortie-4d106ca1-f2e5-465c-b5da-a8406f8e016e/,Phil,,2/14/2020 0:00,11.0000000,11.0:45,47.793180000000,-4.226427000000,,Lesconil - Finistère,38311,observation-4d106ca1-f2e5-465c-b5da-a8406f8e016e-5,https://biolit.fr/observations/observation-4d106ca1-f2e5-465c-b5da-a8406f8e016e-5/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200214_114342.jpg,,TRUE, +N1,59104,sortie-4d106ca1-f2e5-465c-b5da-a8406f8e016e,https://biolit.fr/sorties/sortie-4d106ca1-f2e5-465c-b5da-a8406f8e016e/,Phil,,2/14/2020 0:00,11.0000000,11.0:45,47.793180000000,-4.226427000000,,Lesconil - Finistère,38313,observation-4d106ca1-f2e5-465c-b5da-a8406f8e016e-6,https://biolit.fr/observations/observation-4d106ca1-f2e5-465c-b5da-a8406f8e016e-6/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200214_114409.jpg,,TRUE, +N1,59105,sortie-4e3b2fd3-4f63-49b3-831a-5a796946c8c8,https://biolit.fr/sorties/sortie-4e3b2fd3-4f63-49b3-831a-5a796946c8c8/,Romuald VIALE - EXPENATURE,,3/24/2020 0:00,12.0000000,13.0000000,43.180243000000,5.612917000000,ExpéNature,La Ciotat,38315,observation-4e3b2fd3-4f63-49b3-831a-5a796946c8c8,https://biolit.fr/observations/observation-4e3b2fd3-4f63-49b3-831a-5a796946c8c8/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/90766729_900183893743898_8304569148013281280_n-scaled.jpg,,TRUE, +N1,59105,sortie-4e3b2fd3-4f63-49b3-831a-5a796946c8c8,https://biolit.fr/sorties/sortie-4e3b2fd3-4f63-49b3-831a-5a796946c8c8/,Romuald VIALE - EXPENATURE,,3/24/2020 0:00,12.0000000,13.0000000,43.180243000000,5.612917000000,ExpéNature,La Ciotat,38317,observation-4e3b2fd3-4f63-49b3-831a-5a796946c8c8-2,https://biolit.fr/observations/observation-4e3b2fd3-4f63-49b3-831a-5a796946c8c8-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/90844605_2877217192371701_9110057339158790144_n-scaled.jpg,,TRUE, +N1,59106,sortie-ec0a7799-3a7d-4a9f-90c1-f80739df8de7,https://biolit.fr/sorties/sortie-ec0a7799-3a7d-4a9f-90c1-f80739df8de7/,Phil,,3/13/2020 0:00,12.0000000,12.0000000,47.798958000000,-4.178849000000,,Loctudy - Finistère,38319,observation-ec0a7799-3a7d-4a9f-90c1-f80739df8de7,https://biolit.fr/observations/observation-ec0a7799-3a7d-4a9f-90c1-f80739df8de7/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200313_120200.jpg,,TRUE, +N1,59106,sortie-ec0a7799-3a7d-4a9f-90c1-f80739df8de7,https://biolit.fr/sorties/sortie-ec0a7799-3a7d-4a9f-90c1-f80739df8de7/,Phil,,3/13/2020 0:00,12.0000000,12.0000000,47.798958000000,-4.178849000000,,Loctudy - Finistère,38321,observation-ec0a7799-3a7d-4a9f-90c1-f80739df8de7-2,https://biolit.fr/observations/observation-ec0a7799-3a7d-4a9f-90c1-f80739df8de7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_120154.jpg,,FALSE, +N1,59106,sortie-ec0a7799-3a7d-4a9f-90c1-f80739df8de7,https://biolit.fr/sorties/sortie-ec0a7799-3a7d-4a9f-90c1-f80739df8de7/,Phil,,3/13/2020 0:00,12.0000000,12.0000000,47.798958000000,-4.178849000000,,Loctudy - Finistère,38323,observation-ec0a7799-3a7d-4a9f-90c1-f80739df8de7-3,https://biolit.fr/observations/observation-ec0a7799-3a7d-4a9f-90c1-f80739df8de7-3/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/20200313_120324.jpg,,TRUE, +N1,59107,sortie-d8c2b98e-e92b-40cc-9a32-17dc8b11aa44,https://biolit.fr/sorties/sortie-d8c2b98e-e92b-40cc-9a32-17dc8b11aa44/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.7948050000,-4.358620000000,,Penmarc'h - Finistère,38325,observation-d8c2b98e-e92b-40cc-9a32-17dc8b11aa44,https://biolit.fr/observations/observation-d8c2b98e-e92b-40cc-9a32-17dc8b11aa44/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/P1130617_0.JPG,,TRUE, +N1,59107,sortie-d8c2b98e-e92b-40cc-9a32-17dc8b11aa44,https://biolit.fr/sorties/sortie-d8c2b98e-e92b-40cc-9a32-17dc8b11aa44/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.7948050000,-4.358620000000,,Penmarc'h - Finistère,38331,observation-d8c2b98e-e92b-40cc-9a32-17dc8b11aa44-4,https://biolit.fr/observations/observation-d8c2b98e-e92b-40cc-9a32-17dc8b11aa44-4/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/P1130611.JPG,,TRUE, +N1,59107,sortie-d8c2b98e-e92b-40cc-9a32-17dc8b11aa44,https://biolit.fr/sorties/sortie-d8c2b98e-e92b-40cc-9a32-17dc8b11aa44/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.7948050000,-4.358620000000,,Penmarc'h - Finistère,38333,observation-d8c2b98e-e92b-40cc-9a32-17dc8b11aa44-5,https://biolit.fr/observations/observation-d8c2b98e-e92b-40cc-9a32-17dc8b11aa44-5/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/P1130608.JPG,,TRUE, +N1,59108,sortie-64faab4d-555b-4dfb-b4a0-c0878557bbac,https://biolit.fr/sorties/sortie-64faab4d-555b-4dfb-b4a0-c0878557bbac/,Phil,,2/16/2020 0:00,13.0000000,13.0000000,47.890297000000,-3.977896000000,,Fouesnant - Finistère,38335,observation-64faab4d-555b-4dfb-b4a0-c0878557bbac,https://biolit.fr/observations/observation-64faab4d-555b-4dfb-b4a0-c0878557bbac/,Tadorna tadorna,Tadorne de Belon,,https://biolit.fr/wp-content/uploads/2023/07/P1130516.JPG,,TRUE, +N1,59108,sortie-64faab4d-555b-4dfb-b4a0-c0878557bbac,https://biolit.fr/sorties/sortie-64faab4d-555b-4dfb-b4a0-c0878557bbac/,Phil,,2/16/2020 0:00,13.0000000,13.0000000,47.890297000000,-3.977896000000,,Fouesnant - Finistère,38337,observation-64faab4d-555b-4dfb-b4a0-c0878557bbac-2,https://biolit.fr/observations/observation-64faab4d-555b-4dfb-b4a0-c0878557bbac-2/,Tadorna tadorna,Tadorne de Belon,,https://biolit.fr/wp-content/uploads/2023/07/P1130518.JPG,,TRUE, +N1,59108,sortie-64faab4d-555b-4dfb-b4a0-c0878557bbac,https://biolit.fr/sorties/sortie-64faab4d-555b-4dfb-b4a0-c0878557bbac/,Phil,,2/16/2020 0:00,13.0000000,13.0000000,47.890297000000,-3.977896000000,,Fouesnant - Finistère,38339,observation-64faab4d-555b-4dfb-b4a0-c0878557bbac-3,https://biolit.fr/observations/observation-64faab4d-555b-4dfb-b4a0-c0878557bbac-3/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1130525.JPG,,TRUE, +N1,59108,sortie-64faab4d-555b-4dfb-b4a0-c0878557bbac,https://biolit.fr/sorties/sortie-64faab4d-555b-4dfb-b4a0-c0878557bbac/,Phil,,2/16/2020 0:00,13.0000000,13.0000000,47.890297000000,-3.977896000000,,Fouesnant - Finistère,38341,observation-64faab4d-555b-4dfb-b4a0-c0878557bbac-4,https://biolit.fr/observations/observation-64faab4d-555b-4dfb-b4a0-c0878557bbac-4/,Tadorna tadorna,Tadorne de Belon,,https://biolit.fr/wp-content/uploads/2023/07/P1130526.JPG,,TRUE, +N1,59108,sortie-64faab4d-555b-4dfb-b4a0-c0878557bbac,https://biolit.fr/sorties/sortie-64faab4d-555b-4dfb-b4a0-c0878557bbac/,Phil,,2/16/2020 0:00,13.0000000,13.0000000,47.890297000000,-3.977896000000,,Fouesnant - Finistère,38343,observation-64faab4d-555b-4dfb-b4a0-c0878557bbac-5,https://biolit.fr/observations/observation-64faab4d-555b-4dfb-b4a0-c0878557bbac-5/,Tadorna tadorna,Tadorne de Belon,,https://biolit.fr/wp-content/uploads/2023/07/P1130535.JPG,,TRUE, +N1,59109,sortie-0f128da0-5346-4195-82bf-fd4be68302b3,https://biolit.fr/sorties/sortie-0f128da0-5346-4195-82bf-fd4be68302b3/,Phil,,3/13/2020 0:00,12.000005,12.0000000,47.799491000000,-4.179944000000,,Loctudy - Finistère,38345,observation-0f128da0-5346-4195-82bf-fd4be68302b3,https://biolit.fr/observations/observation-0f128da0-5346-4195-82bf-fd4be68302b3/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20200313_120524.jpg,,TRUE, +N1,59109,sortie-0f128da0-5346-4195-82bf-fd4be68302b3,https://biolit.fr/sorties/sortie-0f128da0-5346-4195-82bf-fd4be68302b3/,Phil,,3/13/2020 0:00,12.000005,12.0000000,47.799491000000,-4.179944000000,,Loctudy - Finistère,38347,observation-0f128da0-5346-4195-82bf-fd4be68302b3-2,https://biolit.fr/observations/observation-0f128da0-5346-4195-82bf-fd4be68302b3-2/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/20200313_120434.jpg,,TRUE, +N1,59109,sortie-0f128da0-5346-4195-82bf-fd4be68302b3,https://biolit.fr/sorties/sortie-0f128da0-5346-4195-82bf-fd4be68302b3/,Phil,,3/13/2020 0:00,12.000005,12.0000000,47.799491000000,-4.179944000000,,Loctudy - Finistère,38349,observation-0f128da0-5346-4195-82bf-fd4be68302b3-3,https://biolit.fr/observations/observation-0f128da0-5346-4195-82bf-fd4be68302b3-3/,Terpios gelatinosus,Eponge encroûtante bleue,,https://biolit.fr/wp-content/uploads/2023/07/20200313_120439.jpg,,TRUE, +N1,59109,sortie-0f128da0-5346-4195-82bf-fd4be68302b3,https://biolit.fr/sorties/sortie-0f128da0-5346-4195-82bf-fd4be68302b3/,Phil,,3/13/2020 0:00,12.000005,12.0000000,47.799491000000,-4.179944000000,,Loctudy - Finistère,38351,observation-0f128da0-5346-4195-82bf-fd4be68302b3-4,https://biolit.fr/observations/observation-0f128da0-5346-4195-82bf-fd4be68302b3-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_120443.jpg,,FALSE, +N1,59109,sortie-0f128da0-5346-4195-82bf-fd4be68302b3,https://biolit.fr/sorties/sortie-0f128da0-5346-4195-82bf-fd4be68302b3/,Phil,,3/13/2020 0:00,12.000005,12.0000000,47.799491000000,-4.179944000000,,Loctudy - Finistère,38353,observation-0f128da0-5346-4195-82bf-fd4be68302b3-5,https://biolit.fr/observations/observation-0f128da0-5346-4195-82bf-fd4be68302b3-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_120516.jpg,,FALSE, +N1,59110,sortie-ebc6ef0e-841b-4907-9852-011059a27eab,https://biolit.fr/sorties/sortie-ebc6ef0e-841b-4907-9852-011059a27eab/,Phil,,2/21/2020 0:00,12.0000000,12.000005,47.793779000000,-4.359804000000,,Penmarc'h - Finistère,38355,observation-ebc6ef0e-841b-4907-9852-011059a27eab,https://biolit.fr/observations/observation-ebc6ef0e-841b-4907-9852-011059a27eab/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1130596.JPG,,TRUE, +N1,59110,sortie-ebc6ef0e-841b-4907-9852-011059a27eab,https://biolit.fr/sorties/sortie-ebc6ef0e-841b-4907-9852-011059a27eab/,Phil,,2/21/2020 0:00,12.0000000,12.000005,47.793779000000,-4.359804000000,,Penmarc'h - Finistère,38357,observation-ebc6ef0e-841b-4907-9852-011059a27eab-2,https://biolit.fr/observations/observation-ebc6ef0e-841b-4907-9852-011059a27eab-2/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1130597.JPG,,TRUE, +N1,59110,sortie-ebc6ef0e-841b-4907-9852-011059a27eab,https://biolit.fr/sorties/sortie-ebc6ef0e-841b-4907-9852-011059a27eab/,Phil,,2/21/2020 0:00,12.0000000,12.000005,47.793779000000,-4.359804000000,,Penmarc'h - Finistère,38359,observation-ebc6ef0e-841b-4907-9852-011059a27eab-3,https://biolit.fr/observations/observation-ebc6ef0e-841b-4907-9852-011059a27eab-3/,Tringa totanus,Chevalier gambette,,https://biolit.fr/wp-content/uploads/2023/07/P1130592.JPG,,TRUE, +N1,59110,sortie-ebc6ef0e-841b-4907-9852-011059a27eab,https://biolit.fr/sorties/sortie-ebc6ef0e-841b-4907-9852-011059a27eab/,Phil,,2/21/2020 0:00,12.0000000,12.000005,47.793779000000,-4.359804000000,,Penmarc'h - Finistère,38361,observation-ebc6ef0e-841b-4907-9852-011059a27eab-4,https://biolit.fr/observations/observation-ebc6ef0e-841b-4907-9852-011059a27eab-4/,Tringa totanus,Chevalier gambette,,https://biolit.fr/wp-content/uploads/2023/07/P1130598.JPG,,TRUE, +N1,59111,sortie-1b7b4a25-4c75-44d8-b004-62da7e182b52,https://biolit.fr/sorties/sortie-1b7b4a25-4c75-44d8-b004-62da7e182b52/,Phil,,03/06/2020,15.0000000,15.0000000,48.208965000000,-4.370104000000,,Telgruc-sur-Mer - Finistère,38363,observation-1b7b4a25-4c75-44d8-b004-62da7e182b52,https://biolit.fr/observations/observation-1b7b4a25-4c75-44d8-b004-62da7e182b52/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130725.JPG,,FALSE, +N1,59111,sortie-1b7b4a25-4c75-44d8-b004-62da7e182b52,https://biolit.fr/sorties/sortie-1b7b4a25-4c75-44d8-b004-62da7e182b52/,Phil,,03/06/2020,15.0000000,15.0000000,48.208965000000,-4.370104000000,,Telgruc-sur-Mer - Finistère,38365,observation-1b7b4a25-4c75-44d8-b004-62da7e182b52-2,https://biolit.fr/observations/observation-1b7b4a25-4c75-44d8-b004-62da7e182b52-2/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/P1130732.JPG,,TRUE, +N1,59111,sortie-1b7b4a25-4c75-44d8-b004-62da7e182b52,https://biolit.fr/sorties/sortie-1b7b4a25-4c75-44d8-b004-62da7e182b52/,Phil,,03/06/2020,15.0000000,15.0000000,48.208965000000,-4.370104000000,,Telgruc-sur-Mer - Finistère,38367,observation-1b7b4a25-4c75-44d8-b004-62da7e182b52-3,https://biolit.fr/observations/observation-1b7b4a25-4c75-44d8-b004-62da7e182b52-3/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1130733.JPG,,TRUE, +N1,59111,sortie-1b7b4a25-4c75-44d8-b004-62da7e182b52,https://biolit.fr/sorties/sortie-1b7b4a25-4c75-44d8-b004-62da7e182b52/,Phil,,03/06/2020,15.0000000,15.0000000,48.208965000000,-4.370104000000,,Telgruc-sur-Mer - Finistère,38369,observation-1b7b4a25-4c75-44d8-b004-62da7e182b52-4,https://biolit.fr/observations/observation-1b7b4a25-4c75-44d8-b004-62da7e182b52-4/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/P1130738.JPG,,TRUE, +N1,59111,sortie-1b7b4a25-4c75-44d8-b004-62da7e182b52,https://biolit.fr/sorties/sortie-1b7b4a25-4c75-44d8-b004-62da7e182b52/,Phil,,03/06/2020,15.0000000,15.0000000,48.208965000000,-4.370104000000,,Telgruc-sur-Mer - Finistère,38371,observation-1b7b4a25-4c75-44d8-b004-62da7e182b52-5,https://biolit.fr/observations/observation-1b7b4a25-4c75-44d8-b004-62da7e182b52-5/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1130739.JPG,,TRUE, +N1,59112,sortie-8c47daeb-7278-4257-82fb-d462e59b6981,https://biolit.fr/sorties/sortie-8c47daeb-7278-4257-82fb-d462e59b6981/,Phil,,3/16/2020 0:00,16.0000000,16.0000000,48.603584000000,-4.550660000000,,Plouguerneau - Finistère,38373,observation-8c47daeb-7278-4257-82fb-d462e59b6981,https://biolit.fr/observations/observation-8c47daeb-7278-4257-82fb-d462e59b6981/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200316_163501.jpg,,FALSE, +N1,59112,sortie-8c47daeb-7278-4257-82fb-d462e59b6981,https://biolit.fr/sorties/sortie-8c47daeb-7278-4257-82fb-d462e59b6981/,Phil,,3/16/2020 0:00,16.0000000,16.0000000,48.603584000000,-4.550660000000,,Plouguerneau - Finistère,38375,observation-8c47daeb-7278-4257-82fb-d462e59b6981-2,https://biolit.fr/observations/observation-8c47daeb-7278-4257-82fb-d462e59b6981-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200316_163610.jpg,,TRUE, +N1,59112,sortie-8c47daeb-7278-4257-82fb-d462e59b6981,https://biolit.fr/sorties/sortie-8c47daeb-7278-4257-82fb-d462e59b6981/,Phil,,3/16/2020 0:00,16.0000000,16.0000000,48.603584000000,-4.550660000000,,Plouguerneau - Finistère,38377,observation-8c47daeb-7278-4257-82fb-d462e59b6981-3,https://biolit.fr/observations/observation-8c47daeb-7278-4257-82fb-d462e59b6981-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200316_163621.jpg,,TRUE, +N1,59112,sortie-8c47daeb-7278-4257-82fb-d462e59b6981,https://biolit.fr/sorties/sortie-8c47daeb-7278-4257-82fb-d462e59b6981/,Phil,,3/16/2020 0:00,16.0000000,16.0000000,48.603584000000,-4.550660000000,,Plouguerneau - Finistère,38379,observation-8c47daeb-7278-4257-82fb-d462e59b6981-4,https://biolit.fr/observations/observation-8c47daeb-7278-4257-82fb-d462e59b6981-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200316_163630.jpg,,TRUE, +N1,59112,sortie-8c47daeb-7278-4257-82fb-d462e59b6981,https://biolit.fr/sorties/sortie-8c47daeb-7278-4257-82fb-d462e59b6981/,Phil,,3/16/2020 0:00,16.0000000,16.0000000,48.603584000000,-4.550660000000,,Plouguerneau - Finistère,38381,observation-8c47daeb-7278-4257-82fb-d462e59b6981-5,https://biolit.fr/observations/observation-8c47daeb-7278-4257-82fb-d462e59b6981-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200316_163647.jpg,,FALSE, +N1,59113,sortie-5bf7171a-3498-4ca1-bf7b-a762118a2eb1,https://biolit.fr/sorties/sortie-5bf7171a-3498-4ca1-bf7b-a762118a2eb1/,Phil,,3/13/2020 0:00,11.0000000,12.0000000,47.799040000000,-4.179617000000,,Loctudy - Finistère,38383,observation-5bf7171a-3498-4ca1-bf7b-a762118a2eb1,https://biolit.fr/observations/observation-5bf7171a-3498-4ca1-bf7b-a762118a2eb1/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200313_115343.jpg,,TRUE, +N1,59113,sortie-5bf7171a-3498-4ca1-bf7b-a762118a2eb1,https://biolit.fr/sorties/sortie-5bf7171a-3498-4ca1-bf7b-a762118a2eb1/,Phil,,3/13/2020 0:00,11.0000000,12.0000000,47.799040000000,-4.179617000000,,Loctudy - Finistère,38385,observation-5bf7171a-3498-4ca1-bf7b-a762118a2eb1-2,https://biolit.fr/observations/observation-5bf7171a-3498-4ca1-bf7b-a762118a2eb1-2/,Hediste diversicolor,Néréis multicolore,,https://biolit.fr/wp-content/uploads/2023/07/20200313_115924.jpg,,TRUE, +N1,59113,sortie-5bf7171a-3498-4ca1-bf7b-a762118a2eb1,https://biolit.fr/sorties/sortie-5bf7171a-3498-4ca1-bf7b-a762118a2eb1/,Phil,,3/13/2020 0:00,11.0000000,12.0000000,47.799040000000,-4.179617000000,,Loctudy - Finistère,38387,observation-5bf7171a-3498-4ca1-bf7b-a762118a2eb1-3,https://biolit.fr/observations/observation-5bf7171a-3498-4ca1-bf7b-a762118a2eb1-3/,Terpios gelatinosus,Eponge encroûtante bleue,,https://biolit.fr/wp-content/uploads/2023/07/20200313_115932.jpg,,TRUE, +N1,59113,sortie-5bf7171a-3498-4ca1-bf7b-a762118a2eb1,https://biolit.fr/sorties/sortie-5bf7171a-3498-4ca1-bf7b-a762118a2eb1/,Phil,,3/13/2020 0:00,11.0000000,12.0000000,47.799040000000,-4.179617000000,,Loctudy - Finistère,38389,observation-5bf7171a-3498-4ca1-bf7b-a762118a2eb1-4,https://biolit.fr/observations/observation-5bf7171a-3498-4ca1-bf7b-a762118a2eb1-4/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20200313_120317.jpg,,TRUE, +N1,59113,sortie-5bf7171a-3498-4ca1-bf7b-a762118a2eb1,https://biolit.fr/sorties/sortie-5bf7171a-3498-4ca1-bf7b-a762118a2eb1/,Phil,,3/13/2020 0:00,11.0000000,12.0000000,47.799040000000,-4.179617000000,,Loctudy - Finistère,38391,observation-5bf7171a-3498-4ca1-bf7b-a762118a2eb1-5,https://biolit.fr/observations/observation-5bf7171a-3498-4ca1-bf7b-a762118a2eb1-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20200313_120331.jpg,,TRUE, +N1,59114,sortie-7de97bbe-19a4-4252-bbbd-59dde82035bd,https://biolit.fr/sorties/sortie-7de97bbe-19a4-4252-bbbd-59dde82035bd/,Phil,,2/18/2020 0:00,17.0:35,17.0000000,47.796273000000,-3.851459000000,,Trégunc - Finistère,38393,observation-7de97bbe-19a4-4252-bbbd-59dde82035bd,https://biolit.fr/observations/observation-7de97bbe-19a4-4252-bbbd-59dde82035bd/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130570.JPG,,FALSE, +N1,59114,sortie-7de97bbe-19a4-4252-bbbd-59dde82035bd,https://biolit.fr/sorties/sortie-7de97bbe-19a4-4252-bbbd-59dde82035bd/,Phil,,2/18/2020 0:00,17.0:35,17.0000000,47.796273000000,-3.851459000000,,Trégunc - Finistère,38395,observation-7de97bbe-19a4-4252-bbbd-59dde82035bd-2,https://biolit.fr/observations/observation-7de97bbe-19a4-4252-bbbd-59dde82035bd-2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1130576.JPG,,TRUE, +N1,59114,sortie-7de97bbe-19a4-4252-bbbd-59dde82035bd,https://biolit.fr/sorties/sortie-7de97bbe-19a4-4252-bbbd-59dde82035bd/,Phil,,2/18/2020 0:00,17.0:35,17.0000000,47.796273000000,-3.851459000000,,Trégunc - Finistère,38397,observation-7de97bbe-19a4-4252-bbbd-59dde82035bd-3,https://biolit.fr/observations/observation-7de97bbe-19a4-4252-bbbd-59dde82035bd-3/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1130579.JPG,,TRUE, +N1,59114,sortie-7de97bbe-19a4-4252-bbbd-59dde82035bd,https://biolit.fr/sorties/sortie-7de97bbe-19a4-4252-bbbd-59dde82035bd/,Phil,,2/18/2020 0:00,17.0:35,17.0000000,47.796273000000,-3.851459000000,,Trégunc - Finistère,38399,observation-7de97bbe-19a4-4252-bbbd-59dde82035bd-4,https://biolit.fr/observations/observation-7de97bbe-19a4-4252-bbbd-59dde82035bd-4/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1130580.JPG,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38401,observation-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita.jpg,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38402,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-2,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-2/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona fascicularis_1.PNG,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38403,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-3,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/ammotheidae.PNG,,FALSE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38405,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-4,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Anémone sp.PNG,,FALSE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38406,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-5,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-5/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_2.PNG,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38407,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-6,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-6/,Nereiphylla paretti,Néréiphylle de Paretto,,https://biolit.fr/wp-content/uploads/2023/07/annélide sp.PNG,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38409,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-7,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-7/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/asterina gibbosa.PNG,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38411,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-8,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-8/,Aslia lefevrei,Lèche-doigts de Lefèvre,,https://biolit.fr/wp-content/uploads/2023/07/aucune idée.PNG,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38413,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-9,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-9/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/Blennie sp.PNG,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38414,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-10,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-10/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_1.PNG,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38415,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-11,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Heteranomia squamula.PNG,,FALSE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38416,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-12,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-12/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea-scaled.jpg,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38417,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-13,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-13/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_1.PNG,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38418,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-14,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-14/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/marthasterias glacialis.PNG,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38420,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-15,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-15/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_1.PNG,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38421,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-16,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-16/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/Ophiotrix fragilis_0.PNG,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38422,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-17,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-17/,Berghia coerulescens,Berghia azurée,,https://biolit.fr/wp-content/uploads/2023/07/opisthobranche sp.PNG,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38424,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-18,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-18/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Paracentrotus lividus.PNG,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38425,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-19,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-19/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_0.PNG,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38426,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-20,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-20/,Serpula vermicularis,Serpule,,https://biolit.fr/wp-content/uploads/2023/07/spirographe sp.PNG,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38428,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-21,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-21/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_2.PNG,,TRUE, +N1,59116,sortie-1d2dc0af-304c-469c-9a7b-654b773801bc,https://biolit.fr/sorties/sortie-1d2dc0af-304c-469c-9a7b-654b773801bc/,Roman,,03/12/2020,12.0000000,14.0000000,47.701135000000,-3.388586000000,,Larmor PLage,38429,observation-1d2dc0af-304c-469c-9a7b-654b773801bc,https://biolit.fr/observations/observation-1d2dc0af-304c-469c-9a7b-654b773801bc/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona fascicularis_0.PNG,,TRUE, +N1,59116,sortie-1d2dc0af-304c-469c-9a7b-654b773801bc,https://biolit.fr/sorties/sortie-1d2dc0af-304c-469c-9a7b-654b773801bc/,Roman,,03/12/2020,12.0000000,14.0000000,47.701135000000,-3.388586000000,,Larmor PLage,38430,observation-1d2dc0af-304c-469c-9a7b-654b773801bc-2,https://biolit.fr/observations/observation-1d2dc0af-304c-469c-9a7b-654b773801bc-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_1.PNG,,TRUE, +N1,59116,sortie-1d2dc0af-304c-469c-9a7b-654b773801bc,https://biolit.fr/sorties/sortie-1d2dc0af-304c-469c-9a7b-654b773801bc/,Roman,,03/12/2020,12.0000000,14.0000000,47.701135000000,-3.388586000000,,Larmor PLage,38431,observation-1d2dc0af-304c-469c-9a7b-654b773801bc-3,https://biolit.fr/observations/observation-1d2dc0af-304c-469c-9a7b-654b773801bc-3/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/callisotoma zizyphynum_0.PNG,,TRUE, +N1,59116,sortie-1d2dc0af-304c-469c-9a7b-654b773801bc,https://biolit.fr/sorties/sortie-1d2dc0af-304c-469c-9a7b-654b773801bc/,Roman,,03/12/2020,12.0000000,14.0000000,47.701135000000,-3.388586000000,,Larmor PLage,38435,observation-1d2dc0af-304c-469c-9a7b-654b773801bc-5,https://biolit.fr/observations/observation-1d2dc0af-304c-469c-9a7b-654b773801bc-5/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/Galathea squamifera.PNG,,TRUE, +N1,59116,sortie-1d2dc0af-304c-469c-9a7b-654b773801bc,https://biolit.fr/sorties/sortie-1d2dc0af-304c-469c-9a7b-654b773801bc/,Roman,,03/12/2020,12.0000000,14.0000000,47.701135000000,-3.388586000000,,Larmor PLage,38436,observation-1d2dc0af-304c-469c-9a7b-654b773801bc-6,https://biolit.fr/observations/observation-1d2dc0af-304c-469c-9a7b-654b773801bc-6/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_0.PNG,,TRUE, +N1,59116,sortie-1d2dc0af-304c-469c-9a7b-654b773801bc,https://biolit.fr/sorties/sortie-1d2dc0af-304c-469c-9a7b-654b773801bc/,Roman,,03/12/2020,12.0000000,14.0000000,47.701135000000,-3.388586000000,,Larmor PLage,38437,observation-1d2dc0af-304c-469c-9a7b-654b773801bc-7,https://biolit.fr/observations/observation-1d2dc0af-304c-469c-9a7b-654b773801bc-7/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/marthasterias glacialis.PNG,,TRUE, +N1,59116,sortie-1d2dc0af-304c-469c-9a7b-654b773801bc,https://biolit.fr/sorties/sortie-1d2dc0af-304c-469c-9a7b-654b773801bc/,Roman,,03/12/2020,12.0000000,14.0000000,47.701135000000,-3.388586000000,,Larmor PLage,38438,observation-1d2dc0af-304c-469c-9a7b-654b773801bc-8,https://biolit.fr/observations/observation-1d2dc0af-304c-469c-9a7b-654b773801bc-8/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_0.PNG,,TRUE, +N1,59116,sortie-1d2dc0af-304c-469c-9a7b-654b773801bc,https://biolit.fr/sorties/sortie-1d2dc0af-304c-469c-9a7b-654b773801bc/,Roman,,03/12/2020,12.0000000,14.0000000,47.701135000000,-3.388586000000,,Larmor PLage,38440,observation-1d2dc0af-304c-469c-9a7b-654b773801bc-9,https://biolit.fr/observations/observation-1d2dc0af-304c-469c-9a7b-654b773801bc-9/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis ophidion.PNG,,TRUE, +N1,59116,sortie-1d2dc0af-304c-469c-9a7b-654b773801bc,https://biolit.fr/sorties/sortie-1d2dc0af-304c-469c-9a7b-654b773801bc/,Roman,,03/12/2020,12.0000000,14.0000000,47.701135000000,-3.388586000000,,Larmor PLage,38443,observation-1d2dc0af-304c-469c-9a7b-654b773801bc-11,https://biolit.fr/observations/observation-1d2dc0af-304c-469c-9a7b-654b773801bc-11/,Polymastia boletiformis,Eponge mamelles,,https://biolit.fr/wp-content/uploads/2023/07/polymastia boliteformis.PNG,,TRUE, +N1,59116,sortie-1d2dc0af-304c-469c-9a7b-654b773801bc,https://biolit.fr/sorties/sortie-1d2dc0af-304c-469c-9a7b-654b773801bc/,Roman,,03/12/2020,12.0000000,14.0000000,47.701135000000,-3.388586000000,,Larmor PLage,38445,observation-1d2dc0af-304c-469c-9a7b-654b773801bc-12,https://biolit.fr/observations/observation-1d2dc0af-304c-469c-9a7b-654b773801bc-12/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/porcellana platycheles.jpg,,TRUE, +N1,59116,sortie-1d2dc0af-304c-469c-9a7b-654b773801bc,https://biolit.fr/sorties/sortie-1d2dc0af-304c-469c-9a7b-654b773801bc/,Roman,,03/12/2020,12.0000000,14.0000000,47.701135000000,-3.388586000000,,Larmor PLage,38446,observation-1d2dc0af-304c-469c-9a7b-654b773801bc-13,https://biolit.fr/observations/observation-1d2dc0af-304c-469c-9a7b-654b773801bc-13/,Spisula solida,Mactre épaisse,,https://biolit.fr/wp-content/uploads/2023/07/spisula solida.PNG,,TRUE, +N1,59116,sortie-1d2dc0af-304c-469c-9a7b-654b773801bc,https://biolit.fr/sorties/sortie-1d2dc0af-304c-469c-9a7b-654b773801bc/,Roman,,03/12/2020,12.0000000,14.0000000,47.701135000000,-3.388586000000,,Larmor PLage,38448,observation-1d2dc0af-304c-469c-9a7b-654b773801bc-14,https://biolit.fr/observations/observation-1d2dc0af-304c-469c-9a7b-654b773801bc-14/,Tethya citrina,Orange de mer de Manche Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Tethya citrina.PNG,,TRUE, +N1,59116,sortie-1d2dc0af-304c-469c-9a7b-654b773801bc,https://biolit.fr/sorties/sortie-1d2dc0af-304c-469c-9a7b-654b773801bc/,Roman,,03/12/2020,12.0000000,14.0000000,47.701135000000,-3.388586000000,,Larmor PLage,38449,observation-1d2dc0af-304c-469c-9a7b-654b773801bc-15,https://biolit.fr/observations/observation-1d2dc0af-304c-469c-9a7b-654b773801bc-15/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_1.PNG,,TRUE, +N1,59116,sortie-1d2dc0af-304c-469c-9a7b-654b773801bc,https://biolit.fr/sorties/sortie-1d2dc0af-304c-469c-9a7b-654b773801bc/,Roman,,03/12/2020,12.0000000,14.0000000,47.701135000000,-3.388586000000,,Larmor PLage,38450,observation-1d2dc0af-304c-469c-9a7b-654b773801bc-16,https://biolit.fr/observations/observation-1d2dc0af-304c-469c-9a7b-654b773801bc-16/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/xantho pilipes.PNG,,TRUE, +N1,59117,sortie-99243728-e996-4232-a71e-c8653c0f882f,https://biolit.fr/sorties/sortie-99243728-e996-4232-a71e-c8653c0f882f/,Phil,,2/14/2020 0:00,11.0000000,11.0000000,47.793152000000,-4.226560000000,,Lesconil - Finistère,38451,observation-99243728-e996-4232-a71e-c8653c0f882f,https://biolit.fr/observations/observation-99243728-e996-4232-a71e-c8653c0f882f/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200214_113144.jpg,,TRUE, +N1,59117,sortie-99243728-e996-4232-a71e-c8653c0f882f,https://biolit.fr/sorties/sortie-99243728-e996-4232-a71e-c8653c0f882f/,Phil,,2/14/2020 0:00,11.0000000,11.0000000,47.793152000000,-4.226560000000,,Lesconil - Finistère,38453,observation-99243728-e996-4232-a71e-c8653c0f882f-2,https://biolit.fr/observations/observation-99243728-e996-4232-a71e-c8653c0f882f-2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200214_113451.jpg,,TRUE, +N1,59117,sortie-99243728-e996-4232-a71e-c8653c0f882f,https://biolit.fr/sorties/sortie-99243728-e996-4232-a71e-c8653c0f882f/,Phil,,2/14/2020 0:00,11.0000000,11.0000000,47.793152000000,-4.226560000000,,Lesconil - Finistère,38455,observation-99243728-e996-4232-a71e-c8653c0f882f-3,https://biolit.fr/observations/observation-99243728-e996-4232-a71e-c8653c0f882f-3/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200214_113532.jpg,,TRUE, +N1,59117,sortie-99243728-e996-4232-a71e-c8653c0f882f,https://biolit.fr/sorties/sortie-99243728-e996-4232-a71e-c8653c0f882f/,Phil,,2/14/2020 0:00,11.0000000,11.0000000,47.793152000000,-4.226560000000,,Lesconil - Finistère,38457,observation-99243728-e996-4232-a71e-c8653c0f882f-4,https://biolit.fr/observations/observation-99243728-e996-4232-a71e-c8653c0f882f-4/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200214_113747.jpg,,TRUE, +N1,59117,sortie-99243728-e996-4232-a71e-c8653c0f882f,https://biolit.fr/sorties/sortie-99243728-e996-4232-a71e-c8653c0f882f/,Phil,,2/14/2020 0:00,11.0000000,11.0000000,47.793152000000,-4.226560000000,,Lesconil - Finistère,38459,observation-99243728-e996-4232-a71e-c8653c0f882f-5,https://biolit.fr/observations/observation-99243728-e996-4232-a71e-c8653c0f882f-5/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200214_113818.jpg,,TRUE, +N1,59117,sortie-99243728-e996-4232-a71e-c8653c0f882f,https://biolit.fr/sorties/sortie-99243728-e996-4232-a71e-c8653c0f882f/,Phil,,2/14/2020 0:00,11.0000000,11.0000000,47.793152000000,-4.226560000000,,Lesconil - Finistère,38461,observation-99243728-e996-4232-a71e-c8653c0f882f-6,https://biolit.fr/observations/observation-99243728-e996-4232-a71e-c8653c0f882f-6/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/20200214_113044.jpg,,TRUE, +N1,59118,sortie-5749ef49-0552-4c15-aaf6-06891af46b19,https://biolit.fr/sorties/sortie-5749ef49-0552-4c15-aaf6-06891af46b19/,Phil,,2/14/2020 0:00,12.000005,12.0000000,47.79293900000,-4.279091000000,,Tréffiagat - Finistère,38463,observation-5749ef49-0552-4c15-aaf6-06891af46b19,https://biolit.fr/observations/observation-5749ef49-0552-4c15-aaf6-06891af46b19/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200214_121023.jpg,,TRUE, +N1,59118,sortie-5749ef49-0552-4c15-aaf6-06891af46b19,https://biolit.fr/sorties/sortie-5749ef49-0552-4c15-aaf6-06891af46b19/,Phil,,2/14/2020 0:00,12.000005,12.0000000,47.79293900000,-4.279091000000,,Tréffiagat - Finistère,38465,observation-5749ef49-0552-4c15-aaf6-06891af46b19-2,https://biolit.fr/observations/observation-5749ef49-0552-4c15-aaf6-06891af46b19-2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200214_121051.jpg,,TRUE, +N1,59118,sortie-5749ef49-0552-4c15-aaf6-06891af46b19,https://biolit.fr/sorties/sortie-5749ef49-0552-4c15-aaf6-06891af46b19/,Phil,,2/14/2020 0:00,12.000005,12.0000000,47.79293900000,-4.279091000000,,Tréffiagat - Finistère,38467,observation-5749ef49-0552-4c15-aaf6-06891af46b19-3,https://biolit.fr/observations/observation-5749ef49-0552-4c15-aaf6-06891af46b19-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200214_121136.jpg,,TRUE, +N1,59118,sortie-5749ef49-0552-4c15-aaf6-06891af46b19,https://biolit.fr/sorties/sortie-5749ef49-0552-4c15-aaf6-06891af46b19/,Phil,,2/14/2020 0:00,12.000005,12.0000000,47.79293900000,-4.279091000000,,Tréffiagat - Finistère,38469,observation-5749ef49-0552-4c15-aaf6-06891af46b19-4,https://biolit.fr/observations/observation-5749ef49-0552-4c15-aaf6-06891af46b19-4/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200214_121222.jpg,,TRUE, +N1,59119,sortie-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2,https://biolit.fr/sorties/sortie-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2/,Phil,,2/20/2020 0:00,16.0000000,17.0000000,47.889761000000,-3.982672000000,,Fouesnant - Finistère,38471,observation-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2,https://biolit.fr/observations/observation-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20200220_164855.jpg,,TRUE, +N1,59119,sortie-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2,https://biolit.fr/sorties/sortie-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2/,Phil,,2/20/2020 0:00,16.0000000,17.0000000,47.889761000000,-3.982672000000,,Fouesnant - Finistère,38473,observation-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2-2,https://biolit.fr/observations/observation-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2-2/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/20200220_165126.jpg,,TRUE, +N1,59119,sortie-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2,https://biolit.fr/sorties/sortie-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2/,Phil,,2/20/2020 0:00,16.0000000,17.0000000,47.889761000000,-3.982672000000,,Fouesnant - Finistère,38475,observation-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2-3,https://biolit.fr/observations/observation-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2-3/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20200220_164940.jpg,,TRUE, +N1,59119,sortie-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2,https://biolit.fr/sorties/sortie-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2/,Phil,,2/20/2020 0:00,16.0000000,17.0000000,47.889761000000,-3.982672000000,,Fouesnant - Finistère,38477,observation-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2-4,https://biolit.fr/observations/observation-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2-4/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20200220_165851.jpg,,TRUE, +N1,59119,sortie-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2,https://biolit.fr/sorties/sortie-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2/,Phil,,2/20/2020 0:00,16.0000000,17.0000000,47.889761000000,-3.982672000000,,Fouesnant - Finistère,38479,observation-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2-5,https://biolit.fr/observations/observation-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2-5/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200220_165902.jpg,,TRUE, +N1,59120,sortie-b83114c8-17b0-400e-b87d-844395b479cf,https://biolit.fr/sorties/sortie-b83114c8-17b0-400e-b87d-844395b479cf/,Phil,,2/17/2020 0:00,11.0000000,11.0:45,48.674607000000,-3.923359000000,,Carantec - Finistère,38481,observation-b83114c8-17b0-400e-b87d-844395b479cf,https://biolit.fr/observations/observation-b83114c8-17b0-400e-b87d-844395b479cf/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1130549.JPG,,TRUE, +N1,59120,sortie-b83114c8-17b0-400e-b87d-844395b479cf,https://biolit.fr/sorties/sortie-b83114c8-17b0-400e-b87d-844395b479cf/,Phil,,2/17/2020 0:00,11.0000000,11.0:45,48.674607000000,-3.923359000000,,Carantec - Finistère,38483,observation-b83114c8-17b0-400e-b87d-844395b479cf-2,https://biolit.fr/observations/observation-b83114c8-17b0-400e-b87d-844395b479cf-2/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1130552.JPG,,TRUE, +N1,59120,sortie-b83114c8-17b0-400e-b87d-844395b479cf,https://biolit.fr/sorties/sortie-b83114c8-17b0-400e-b87d-844395b479cf/,Phil,,2/17/2020 0:00,11.0000000,11.0:45,48.674607000000,-3.923359000000,,Carantec - Finistère,38485,observation-b83114c8-17b0-400e-b87d-844395b479cf-3,https://biolit.fr/observations/observation-b83114c8-17b0-400e-b87d-844395b479cf-3/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1130538.JPG,,TRUE, +N1,59120,sortie-b83114c8-17b0-400e-b87d-844395b479cf,https://biolit.fr/sorties/sortie-b83114c8-17b0-400e-b87d-844395b479cf/,Phil,,2/17/2020 0:00,11.0000000,11.0:45,48.674607000000,-3.923359000000,,Carantec - Finistère,38487,observation-b83114c8-17b0-400e-b87d-844395b479cf-4,https://biolit.fr/observations/observation-b83114c8-17b0-400e-b87d-844395b479cf-4/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1130553.JPG,,TRUE, +N1,59121,sortie-61b053ff-e283-404c-bd35-2cc918fc8a73,https://biolit.fr/sorties/sortie-61b053ff-e283-404c-bd35-2cc918fc8a73/,Phil,,03/06/2020,15.0:35,15.0000000,48.209029000000,-4.369713000000,,Telgruc-sur-Mer - Finistère,38489,observation-61b053ff-e283-404c-bd35-2cc918fc8a73,https://biolit.fr/observations/observation-61b053ff-e283-404c-bd35-2cc918fc8a73/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1130721.JPG,,TRUE, +N1,59121,sortie-61b053ff-e283-404c-bd35-2cc918fc8a73,https://biolit.fr/sorties/sortie-61b053ff-e283-404c-bd35-2cc918fc8a73/,Phil,,03/06/2020,15.0:35,15.0000000,48.209029000000,-4.369713000000,,Telgruc-sur-Mer - Finistère,38491,observation-61b053ff-e283-404c-bd35-2cc918fc8a73-2,https://biolit.fr/observations/observation-61b053ff-e283-404c-bd35-2cc918fc8a73-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1130719.JPG,,TRUE, +N1,59121,sortie-61b053ff-e283-404c-bd35-2cc918fc8a73,https://biolit.fr/sorties/sortie-61b053ff-e283-404c-bd35-2cc918fc8a73/,Phil,,03/06/2020,15.0:35,15.0000000,48.209029000000,-4.369713000000,,Telgruc-sur-Mer - Finistère,38493,observation-61b053ff-e283-404c-bd35-2cc918fc8a73-3,https://biolit.fr/observations/observation-61b053ff-e283-404c-bd35-2cc918fc8a73-3/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/P1130715.JPG,,TRUE, +N1,59121,sortie-61b053ff-e283-404c-bd35-2cc918fc8a73,https://biolit.fr/sorties/sortie-61b053ff-e283-404c-bd35-2cc918fc8a73/,Phil,,03/06/2020,15.0:35,15.0000000,48.209029000000,-4.369713000000,,Telgruc-sur-Mer - Finistère,38495,observation-61b053ff-e283-404c-bd35-2cc918fc8a73-4,https://biolit.fr/observations/observation-61b053ff-e283-404c-bd35-2cc918fc8a73-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130714.JPG,,FALSE, +N1,59122,sortie-0b43063d-0c95-4203-ba42-aa92cb0b2853,https://biolit.fr/sorties/sortie-0b43063d-0c95-4203-ba42-aa92cb0b2853/,Phil,,2/14/2020 0:00,11.0:45,11.0000000,47.793650000000,-4.228429000000,,Tréffiagat - Finistère,38497,observation-0b43063d-0c95-4203-ba42-aa92cb0b2853,https://biolit.fr/observations/observation-0b43063d-0c95-4203-ba42-aa92cb0b2853/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200214_114516.jpg,,TRUE, +N1,59122,sortie-0b43063d-0c95-4203-ba42-aa92cb0b2853,https://biolit.fr/sorties/sortie-0b43063d-0c95-4203-ba42-aa92cb0b2853/,Phil,,2/14/2020 0:00,11.0:45,11.0000000,47.793650000000,-4.228429000000,,Tréffiagat - Finistère,38499,observation-0b43063d-0c95-4203-ba42-aa92cb0b2853-2,https://biolit.fr/observations/observation-0b43063d-0c95-4203-ba42-aa92cb0b2853-2/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200214_114647.jpg,,TRUE, +N1,59122,sortie-0b43063d-0c95-4203-ba42-aa92cb0b2853,https://biolit.fr/sorties/sortie-0b43063d-0c95-4203-ba42-aa92cb0b2853/,Phil,,2/14/2020 0:00,11.0:45,11.0000000,47.793650000000,-4.228429000000,,Tréffiagat - Finistère,38501,observation-0b43063d-0c95-4203-ba42-aa92cb0b2853-3,https://biolit.fr/observations/observation-0b43063d-0c95-4203-ba42-aa92cb0b2853-3/,Ammophila arenaria,Oyat,,https://biolit.fr/wp-content/uploads/2023/07/20200214_114831.jpg,,TRUE, +N1,59122,sortie-0b43063d-0c95-4203-ba42-aa92cb0b2853,https://biolit.fr/sorties/sortie-0b43063d-0c95-4203-ba42-aa92cb0b2853/,Phil,,2/14/2020 0:00,11.0:45,11.0000000,47.793650000000,-4.228429000000,,Tréffiagat - Finistère,38503,observation-0b43063d-0c95-4203-ba42-aa92cb0b2853-4,https://biolit.fr/observations/observation-0b43063d-0c95-4203-ba42-aa92cb0b2853-4/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/20200214_114954.jpg,,TRUE, +N1,59123,sortie-00eb4fae-547d-4bd3-9709-e750629fdf19,https://biolit.fr/sorties/sortie-00eb4fae-547d-4bd3-9709-e750629fdf19/,Phil,,2/16/2020 0:00,13.0000000,13.000005,47.891023000000,-3.975851000000,,Fouesnant - Finistère,38505,observation-00eb4fae-547d-4bd3-9709-e750629fdf19,https://biolit.fr/observations/observation-00eb4fae-547d-4bd3-9709-e750629fdf19/,Charadrius hiaticula,Grand gravelot,,https://biolit.fr/wp-content/uploads/2023/07/P1130511.JPG,,TRUE, +N1,59123,sortie-00eb4fae-547d-4bd3-9709-e750629fdf19,https://biolit.fr/sorties/sortie-00eb4fae-547d-4bd3-9709-e750629fdf19/,Phil,,2/16/2020 0:00,13.0000000,13.000005,47.891023000000,-3.975851000000,,Fouesnant - Finistère,38507,observation-00eb4fae-547d-4bd3-9709-e750629fdf19-2,https://biolit.fr/observations/observation-00eb4fae-547d-4bd3-9709-e750629fdf19-2/,Charadrius hiaticula,Grand gravelot,,https://biolit.fr/wp-content/uploads/2023/07/P1130512.JPG,,TRUE, +N1,59123,sortie-00eb4fae-547d-4bd3-9709-e750629fdf19,https://biolit.fr/sorties/sortie-00eb4fae-547d-4bd3-9709-e750629fdf19/,Phil,,2/16/2020 0:00,13.0000000,13.000005,47.891023000000,-3.975851000000,,Fouesnant - Finistère,38509,observation-00eb4fae-547d-4bd3-9709-e750629fdf19-3,https://biolit.fr/observations/observation-00eb4fae-547d-4bd3-9709-e750629fdf19-3/,Calidris alba,Bécasseau sanderling,,https://biolit.fr/wp-content/uploads/2023/07/P1130513.JPG,,TRUE, +N1,59124,sortie-69956a6e-0968-417b-9623-c7d7292c0dff,https://biolit.fr/sorties/sortie-69956a6e-0968-417b-9623-c7d7292c0dff/,Phil,,2/14/2020 0:00,12.000005,12.0000000,47.792429000000,-4.279145000000,,Tréffiagat - Finistère,38511,observation-69956a6e-0968-417b-9623-c7d7292c0dff,https://biolit.fr/observations/observation-69956a6e-0968-417b-9623-c7d7292c0dff/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200214_120737.jpg,,TRUE, +N1,59124,sortie-69956a6e-0968-417b-9623-c7d7292c0dff,https://biolit.fr/sorties/sortie-69956a6e-0968-417b-9623-c7d7292c0dff/,Phil,,2/14/2020 0:00,12.000005,12.0000000,47.792429000000,-4.279145000000,,Tréffiagat - Finistère,38513,observation-69956a6e-0968-417b-9623-c7d7292c0dff-2,https://biolit.fr/observations/observation-69956a6e-0968-417b-9623-c7d7292c0dff-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200214_120613.jpg,,TRUE, +N1,59124,sortie-69956a6e-0968-417b-9623-c7d7292c0dff,https://biolit.fr/sorties/sortie-69956a6e-0968-417b-9623-c7d7292c0dff/,Phil,,2/14/2020 0:00,12.000005,12.0000000,47.792429000000,-4.279145000000,,Tréffiagat - Finistère,38515,observation-69956a6e-0968-417b-9623-c7d7292c0dff-3,https://biolit.fr/observations/observation-69956a6e-0968-417b-9623-c7d7292c0dff-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200214_120640.jpg,,TRUE, +N1,59124,sortie-69956a6e-0968-417b-9623-c7d7292c0dff,https://biolit.fr/sorties/sortie-69956a6e-0968-417b-9623-c7d7292c0dff/,Phil,,2/14/2020 0:00,12.000005,12.0000000,47.792429000000,-4.279145000000,,Tréffiagat - Finistère,38517,observation-69956a6e-0968-417b-9623-c7d7292c0dff-4,https://biolit.fr/observations/observation-69956a6e-0968-417b-9623-c7d7292c0dff-4/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200214_120658.jpg,,TRUE, +N1,59124,sortie-69956a6e-0968-417b-9623-c7d7292c0dff,https://biolit.fr/sorties/sortie-69956a6e-0968-417b-9623-c7d7292c0dff/,Phil,,2/14/2020 0:00,12.000005,12.0000000,47.792429000000,-4.279145000000,,Tréffiagat - Finistère,38519,observation-69956a6e-0968-417b-9623-c7d7292c0dff-5,https://biolit.fr/observations/observation-69956a6e-0968-417b-9623-c7d7292c0dff-5/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200214_120812.jpg,,TRUE, +N1,59125,sortie-cd7e703f-2f6f-4834-ac1b-6a167206c793,https://biolit.fr/sorties/sortie-cd7e703f-2f6f-4834-ac1b-6a167206c793/,Phil,,2/14/2020 0:00,11.0:15,11.0000000,47.79972400000,-4.213173000000,,Lesconil - Finistère,38521,observation-cd7e703f-2f6f-4834-ac1b-6a167206c793,https://biolit.fr/observations/observation-cd7e703f-2f6f-4834-ac1b-6a167206c793/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200214_111908.jpg,,FALSE, +N1,59125,sortie-cd7e703f-2f6f-4834-ac1b-6a167206c793,https://biolit.fr/sorties/sortie-cd7e703f-2f6f-4834-ac1b-6a167206c793/,Phil,,2/14/2020 0:00,11.0:15,11.0000000,47.79972400000,-4.213173000000,,Lesconil - Finistère,38523,observation-cd7e703f-2f6f-4834-ac1b-6a167206c793-2,https://biolit.fr/observations/observation-cd7e703f-2f6f-4834-ac1b-6a167206c793-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200214_111836.jpg,,FALSE, +N1,59126,sortie-f994d244-1e1d-4c62-8aa5-d252104d5e2a,https://biolit.fr/sorties/sortie-f994d244-1e1d-4c62-8aa5-d252104d5e2a/,Roman,,03/01/2020,16.0000000,16.0000000,47.65375600000,-3.203551000000,,Etel,38525,observation-f994d244-1e1d-4c62-8aa5-d252104d5e2a,https://biolit.fr/observations/observation-f994d244-1e1d-4c62-8aa5-d252104d5e2a/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_2.PNG,,TRUE, +N1,59126,sortie-f994d244-1e1d-4c62-8aa5-d252104d5e2a,https://biolit.fr/sorties/sortie-f994d244-1e1d-4c62-8aa5-d252104d5e2a/,Roman,,03/01/2020,16.0000000,16.0000000,47.65375600000,-3.203551000000,,Etel,38526,observation-f994d244-1e1d-4c62-8aa5-d252104d5e2a-2,https://biolit.fr/observations/observation-f994d244-1e1d-4c62-8aa5-d252104d5e2a-2/,Tritia neritea,Cyclope néritoïde,,https://biolit.fr/wp-content/uploads/2023/07/cyclope neritea.PNG,,TRUE, +N1,59126,sortie-f994d244-1e1d-4c62-8aa5-d252104d5e2a,https://biolit.fr/sorties/sortie-f994d244-1e1d-4c62-8aa5-d252104d5e2a/,Roman,,03/01/2020,16.0000000,16.0000000,47.65375600000,-3.203551000000,,Etel,38528,observation-f994d244-1e1d-4c62-8aa5-d252104d5e2a-3,https://biolit.fr/observations/observation-f994d244-1e1d-4c62-8aa5-d252104d5e2a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/88056964_311605933133433_5548491782381109248_n-scaled.jpg,,FALSE, +N1,59127,sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd,https://biolit.fr/sorties/sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd/,Roman,,03/01/2020,15.0000000,16.0000000,47.651578000000,-3.205042000000,,Etel,38530,observation-2d608acc-e272-4bea-9dfd-65e87776bdbd,https://biolit.fr/observations/observation-2d608acc-e272-4bea-9dfd-65e87776bdbd/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea_1.PNG,,TRUE, +N1,59127,sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd,https://biolit.fr/sorties/sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd/,Roman,,03/01/2020,15.0000000,16.0000000,47.651578000000,-3.205042000000,,Etel,38531,observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-2,https://biolit.fr/observations/observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/anemonia equina_0.PNG,,TRUE, +N1,59127,sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd,https://biolit.fr/sorties/sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd/,Roman,,03/01/2020,15.0000000,16.0000000,47.651578000000,-3.205042000000,,Etel,38533,observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-3,https://biolit.fr/observations/observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-3/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium.PNG,,TRUE, +N1,59127,sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd,https://biolit.fr/sorties/sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd/,Roman,,03/01/2020,15.0000000,16.0000000,47.651578000000,-3.205042000000,,Etel,38534,observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-4,https://biolit.fr/observations/observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-4/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/aulactinia verrucosa 1.PNG,,TRUE, +N1,59127,sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd,https://biolit.fr/sorties/sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd/,Roman,,03/01/2020,15.0000000,16.0000000,47.651578000000,-3.205042000000,,Etel,38536,observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-5,https://biolit.fr/observations/observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-5/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/Buccinum undatum.PNG,,TRUE, +N1,59127,sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd,https://biolit.fr/sorties/sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd/,Roman,,03/01/2020,15.0000000,16.0000000,47.651578000000,-3.205042000000,,Etel,38537,observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-6,https://biolit.fr/observations/observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-6/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_1.PNG,,TRUE, +N1,59127,sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd,https://biolit.fr/sorties/sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd/,Roman,,03/01/2020,15.0000000,16.0000000,47.651578000000,-3.205042000000,,Etel,38538,observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-7,https://biolit.fr/observations/observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-7/,Donacilla cornea,Donacilla cornée,,https://biolit.fr/wp-content/uploads/2023/07/Donacilla cornea.PNG,,TRUE, +N1,59127,sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd,https://biolit.fr/sorties/sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd/,Roman,,03/01/2020,15.0000000,16.0000000,47.651578000000,-3.205042000000,,Etel,38540,observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-8,https://biolit.fr/observations/observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-8/,Euspira catena,Natice porte-chaîne,,https://biolit.fr/wp-content/uploads/2023/07/euspira catena.PNG,,TRUE, +N1,59127,sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd,https://biolit.fr/sorties/sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd/,Roman,,03/01/2020,15.0000000,16.0000000,47.651578000000,-3.205042000000,,Etel,38542,observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-9,https://biolit.fr/observations/observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-9/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/lepas anatifera.PNG,,TRUE, +N1,59127,sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd,https://biolit.fr/sorties/sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd/,Roman,,03/01/2020,15.0000000,16.0000000,47.651578000000,-3.205042000000,,Etel,38544,observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-10,https://biolit.fr/observations/observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-10/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/lepas anatifera1.PNG,,TRUE, +N1,59127,sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd,https://biolit.fr/sorties/sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd/,Roman,,03/01/2020,15.0000000,16.0000000,47.651578000000,-3.205042000000,,Etel,38546,observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-11,https://biolit.fr/observations/observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-11/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_1.PNG,,TRUE, +N1,59127,sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd,https://biolit.fr/sorties/sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd/,Roman,,03/01/2020,15.0000000,16.0000000,47.651578000000,-3.205042000000,,Etel,38547,observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-12,https://biolit.fr/observations/observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-12/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes philippinarum_0.PNG,,TRUE, +N1,59127,sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd,https://biolit.fr/sorties/sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd/,Roman,,03/01/2020,15.0000000,16.0000000,47.651578000000,-3.205042000000,,Etel,38548,observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-13,https://biolit.fr/observations/observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-13/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Sepia officinalis.PNG,,TRUE, +N1,59127,sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd,https://biolit.fr/sorties/sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd/,Roman,,03/01/2020,15.0000000,16.0000000,47.651578000000,-3.205042000000,,Etel,38550,observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-14,https://biolit.fr/observations/observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-14/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Sepia orbignyana.PNG,,TRUE, +N1,59127,sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd,https://biolit.fr/sorties/sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd/,Roman,,03/01/2020,15.0000000,16.0000000,47.651578000000,-3.205042000000,,Etel,38552,observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-15,https://biolit.fr/observations/observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-15/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Velella velella_0.PNG,,TRUE, +N1,59128,sortie-245aa861-51cf-4832-9d76-d95a4858a5c8,https://biolit.fr/sorties/sortie-245aa861-51cf-4832-9d76-d95a4858a5c8/,Roman,,2/29/2020 0:00,14.0000000,15.0000000,47.735314000000,-3.337339000000,,"Locmiquélic, Pen mané ",38554,observation-245aa861-51cf-4832-9d76-d95a4858a5c8,https://biolit.fr/observations/observation-245aa861-51cf-4832-9d76-d95a4858a5c8/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/Arenaria interpres.PNG,,TRUE, +N1,59128,sortie-245aa861-51cf-4832-9d76-d95a4858a5c8,https://biolit.fr/sorties/sortie-245aa861-51cf-4832-9d76-d95a4858a5c8/,Roman,,2/29/2020 0:00,14.0000000,15.0000000,47.735314000000,-3.337339000000,,"Locmiquélic, Pen mané ",38555,observation-245aa861-51cf-4832-9d76-d95a4858a5c8-2,https://biolit.fr/observations/observation-245aa861-51cf-4832-9d76-d95a4858a5c8-2/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_0.PNG,,TRUE, +N1,59128,sortie-245aa861-51cf-4832-9d76-d95a4858a5c8,https://biolit.fr/sorties/sortie-245aa861-51cf-4832-9d76-d95a4858a5c8/,Roman,,2/29/2020 0:00,14.0000000,15.0000000,47.735314000000,-3.337339000000,,"Locmiquélic, Pen mané ",38556,observation-245aa861-51cf-4832-9d76-d95a4858a5c8-3,https://biolit.fr/observations/observation-245aa861-51cf-4832-9d76-d95a4858a5c8-3/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Crassostrea gigas.jpg,,TRUE, +N1,59128,sortie-245aa861-51cf-4832-9d76-d95a4858a5c8,https://biolit.fr/sorties/sortie-245aa861-51cf-4832-9d76-d95a4858a5c8/,Roman,,2/29/2020 0:00,14.0000000,15.0000000,47.735314000000,-3.337339000000,,"Locmiquélic, Pen mané ",38557,observation-245aa861-51cf-4832-9d76-d95a4858a5c8-4,https://biolit.fr/observations/observation-245aa861-51cf-4832-9d76-d95a4858a5c8-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_0.PNG,,TRUE, +N1,59128,sortie-245aa861-51cf-4832-9d76-d95a4858a5c8,https://biolit.fr/sorties/sortie-245aa861-51cf-4832-9d76-d95a4858a5c8/,Roman,,2/29/2020 0:00,14.0000000,15.0000000,47.735314000000,-3.337339000000,,"Locmiquélic, Pen mané ",38558,observation-245aa861-51cf-4832-9d76-d95a4858a5c8-5,https://biolit.fr/observations/observation-245aa861-51cf-4832-9d76-d95a4858a5c8-5/,Mya arenaria,Mye des sables,,https://biolit.fr/wp-content/uploads/2023/07/Mya arenaria.PNG,,TRUE, +N1,59128,sortie-245aa861-51cf-4832-9d76-d95a4858a5c8,https://biolit.fr/sorties/sortie-245aa861-51cf-4832-9d76-d95a4858a5c8/,Roman,,2/29/2020 0:00,14.0000000,15.0000000,47.735314000000,-3.337339000000,,"Locmiquélic, Pen mané ",38559,observation-245aa861-51cf-4832-9d76-d95a4858a5c8-6,https://biolit.fr/observations/observation-245aa861-51cf-4832-9d76-d95a4858a5c8-6/,Turritellinella tricarinata,Turritelle commune,,https://biolit.fr/wp-content/uploads/2023/07/turitella communis_0.PNG,,TRUE, +N1,59129,sortie-001b26ce-c999-4a6e-83fd-28ab1bce9ef1,https://biolit.fr/sorties/sortie-001b26ce-c999-4a6e-83fd-28ab1bce9ef1/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.796093000000,-4.357881000000,,Penmarc'h - Finistère,38561,observation-001b26ce-c999-4a6e-83fd-28ab1bce9ef1,https://biolit.fr/observations/observation-001b26ce-c999-4a6e-83fd-28ab1bce9ef1/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1130585.JPG,,TRUE, +N1,59129,sortie-001b26ce-c999-4a6e-83fd-28ab1bce9ef1,https://biolit.fr/sorties/sortie-001b26ce-c999-4a6e-83fd-28ab1bce9ef1/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.796093000000,-4.357881000000,,Penmarc'h - Finistère,38563,observation-001b26ce-c999-4a6e-83fd-28ab1bce9ef1-2,https://biolit.fr/observations/observation-001b26ce-c999-4a6e-83fd-28ab1bce9ef1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130582.JPG,,FALSE, +N1,59129,sortie-001b26ce-c999-4a6e-83fd-28ab1bce9ef1,https://biolit.fr/sorties/sortie-001b26ce-c999-4a6e-83fd-28ab1bce9ef1/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.796093000000,-4.357881000000,,Penmarc'h - Finistère,38565,observation-001b26ce-c999-4a6e-83fd-28ab1bce9ef1-3,https://biolit.fr/observations/observation-001b26ce-c999-4a6e-83fd-28ab1bce9ef1-3/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1130583.JPG,,TRUE, +N1,59129,sortie-001b26ce-c999-4a6e-83fd-28ab1bce9ef1,https://biolit.fr/sorties/sortie-001b26ce-c999-4a6e-83fd-28ab1bce9ef1/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.796093000000,-4.357881000000,,Penmarc'h - Finistère,38567,observation-001b26ce-c999-4a6e-83fd-28ab1bce9ef1-4,https://biolit.fr/observations/observation-001b26ce-c999-4a6e-83fd-28ab1bce9ef1-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1130589.JPG,,TRUE, +N1,59129,sortie-001b26ce-c999-4a6e-83fd-28ab1bce9ef1,https://biolit.fr/sorties/sortie-001b26ce-c999-4a6e-83fd-28ab1bce9ef1/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.796093000000,-4.357881000000,,Penmarc'h - Finistère,38569,observation-001b26ce-c999-4a6e-83fd-28ab1bce9ef1-5,https://biolit.fr/observations/observation-001b26ce-c999-4a6e-83fd-28ab1bce9ef1-5/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1130658.JPG,,TRUE, +N1,59130,sortie-176a62b9-74e8-4f72-a934-0ccf38ca1542,https://biolit.fr/sorties/sortie-176a62b9-74e8-4f72-a934-0ccf38ca1542/,club de la mer nice,,2/27/2020 0:00,16.0000000,18.0000000,28.575839000000,-16.143955000000,,Tenerife,38571,observation-176a62b9-74e8-4f72-a934-0ccf38ca1542,https://biolit.fr/observations/observation-176a62b9-74e8-4f72-a934-0ccf38ca1542/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200227_155506.jpg,,TRUE, +N1,59131,sortie-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94,https://biolit.fr/sorties/sortie-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94/,Phil,,2/20/2020 0:00,16.0000000,16.0:45,47.889874000000,-3.973583000000,,Fouesnant - Finistère,38573,observation-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94,https://biolit.fr/observations/observation-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20200220_164027.jpg,,TRUE, +N1,59131,sortie-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94,https://biolit.fr/sorties/sortie-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94/,Phil,,2/20/2020 0:00,16.0000000,16.0:45,47.889874000000,-3.973583000000,,Fouesnant - Finistère,38575,observation-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94-2,https://biolit.fr/observations/observation-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94-2/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20200220_164318.jpg,,TRUE, +N1,59131,sortie-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94,https://biolit.fr/sorties/sortie-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94/,Phil,,2/20/2020 0:00,16.0000000,16.0:45,47.889874000000,-3.973583000000,,Fouesnant - Finistère,38577,observation-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94-3,https://biolit.fr/observations/observation-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200220_164353.jpg,,FALSE, +N1,59131,sortie-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94,https://biolit.fr/sorties/sortie-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94/,Phil,,2/20/2020 0:00,16.0000000,16.0:45,47.889874000000,-3.973583000000,,Fouesnant - Finistère,38579,observation-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94-4,https://biolit.fr/observations/observation-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94-4/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/20200220_164500-scaled.jpg,,TRUE, +N1,59131,sortie-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94,https://biolit.fr/sorties/sortie-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94/,Phil,,2/20/2020 0:00,16.0000000,16.0:45,47.889874000000,-3.973583000000,,Fouesnant - Finistère,38581,observation-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94-5,https://biolit.fr/observations/observation-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94-5/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/20200220_164538.jpg,,TRUE, +N1,59132,sortie-6c9a67c4-8910-4001-ae50-986c9506d6e0,https://biolit.fr/sorties/sortie-6c9a67c4-8910-4001-ae50-986c9506d6e0/,Phil,,2/14/2020 0:00,11.0000000,11.0000000,47.799588000000,-4.212948000000,,Lesconil - Finistère,38583,observation-6c9a67c4-8910-4001-ae50-986c9506d6e0,https://biolit.fr/observations/observation-6c9a67c4-8910-4001-ae50-986c9506d6e0/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200214_111734.jpg,,TRUE, +N1,59132,sortie-6c9a67c4-8910-4001-ae50-986c9506d6e0,https://biolit.fr/sorties/sortie-6c9a67c4-8910-4001-ae50-986c9506d6e0/,Phil,,2/14/2020 0:00,11.0000000,11.0000000,47.799588000000,-4.212948000000,,Lesconil - Finistère,38585,observation-6c9a67c4-8910-4001-ae50-986c9506d6e0-2,https://biolit.fr/observations/observation-6c9a67c4-8910-4001-ae50-986c9506d6e0-2/,Venerupis corrugata,Palourde-poulette,,https://biolit.fr/wp-content/uploads/2023/07/20200214_111803.jpg,,TRUE, +N1,59133,sortie-68bd290c-8682-4bb7-b9ea-4563e8be2ef4,https://biolit.fr/sorties/sortie-68bd290c-8682-4bb7-b9ea-4563e8be2ef4/,Phil,,2/16/2020 0:00,12.0000000,13.0000000,47.886216000000,-3.985419000000,,Fouesnant - Finistère,38587,observation-68bd290c-8682-4bb7-b9ea-4563e8be2ef4,https://biolit.fr/observations/observation-68bd290c-8682-4bb7-b9ea-4563e8be2ef4/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20200216_125128.jpg,,TRUE, +N1,59133,sortie-68bd290c-8682-4bb7-b9ea-4563e8be2ef4,https://biolit.fr/sorties/sortie-68bd290c-8682-4bb7-b9ea-4563e8be2ef4/,Phil,,2/16/2020 0:00,12.0000000,13.0000000,47.886216000000,-3.985419000000,,Fouesnant - Finistère,38589,observation-68bd290c-8682-4bb7-b9ea-4563e8be2ef4-2,https://biolit.fr/observations/observation-68bd290c-8682-4bb7-b9ea-4563e8be2ef4-2/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20200216_125145.jpg,,TRUE, +N1,59133,sortie-68bd290c-8682-4bb7-b9ea-4563e8be2ef4,https://biolit.fr/sorties/sortie-68bd290c-8682-4bb7-b9ea-4563e8be2ef4/,Phil,,2/16/2020 0:00,12.0000000,13.0000000,47.886216000000,-3.985419000000,,Fouesnant - Finistère,38591,observation-68bd290c-8682-4bb7-b9ea-4563e8be2ef4-3,https://biolit.fr/observations/observation-68bd290c-8682-4bb7-b9ea-4563e8be2ef4-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200216_125233.jpg,,FALSE, +N1,59133,sortie-68bd290c-8682-4bb7-b9ea-4563e8be2ef4,https://biolit.fr/sorties/sortie-68bd290c-8682-4bb7-b9ea-4563e8be2ef4/,Phil,,2/16/2020 0:00,12.0000000,13.0000000,47.886216000000,-3.985419000000,,Fouesnant - Finistère,38593,observation-68bd290c-8682-4bb7-b9ea-4563e8be2ef4-4,https://biolit.fr/observations/observation-68bd290c-8682-4bb7-b9ea-4563e8be2ef4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200216_125237.jpg,,FALSE, +N1,59133,sortie-68bd290c-8682-4bb7-b9ea-4563e8be2ef4,https://biolit.fr/sorties/sortie-68bd290c-8682-4bb7-b9ea-4563e8be2ef4/,Phil,,2/16/2020 0:00,12.0000000,13.0000000,47.886216000000,-3.985419000000,,Fouesnant - Finistère,38595,observation-68bd290c-8682-4bb7-b9ea-4563e8be2ef4-5,https://biolit.fr/observations/observation-68bd290c-8682-4bb7-b9ea-4563e8be2ef4-5/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/20200216_125333.jpg,,TRUE, +N1,59133,sortie-68bd290c-8682-4bb7-b9ea-4563e8be2ef4,https://biolit.fr/sorties/sortie-68bd290c-8682-4bb7-b9ea-4563e8be2ef4/,Phil,,2/16/2020 0:00,12.0000000,13.0000000,47.886216000000,-3.985419000000,,Fouesnant - Finistère,38597,observation-68bd290c-8682-4bb7-b9ea-4563e8be2ef4-6,https://biolit.fr/observations/observation-68bd290c-8682-4bb7-b9ea-4563e8be2ef4-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200216_125619.jpg,,FALSE, +N1,59134,sortie-b3dc0066-43a8-46db-b089-6c388d25cadf,https://biolit.fr/sorties/sortie-b3dc0066-43a8-46db-b089-6c388d25cadf/,Phil,,12/29/2019 0:00,12.0000000,12.0000000,47.870867000000,-4.103009000000,,Bénodet - Finistère,38607,observation-b3dc0066-43a8-46db-b089-6c388d25cadf-5,https://biolit.fr/observations/observation-b3dc0066-43a8-46db-b089-6c388d25cadf-5/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/20191229_122716.jpg,,TRUE, +N1,59134,sortie-b3dc0066-43a8-46db-b089-6c388d25cadf,https://biolit.fr/sorties/sortie-b3dc0066-43a8-46db-b089-6c388d25cadf/,Phil,,12/29/2019 0:00,12.0000000,12.0000000,47.870867000000,-4.103009000000,,Bénodet - Finistère,38609,observation-b3dc0066-43a8-46db-b089-6c388d25cadf-6,https://biolit.fr/observations/observation-b3dc0066-43a8-46db-b089-6c388d25cadf-6/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/20191229_122805.jpg,,TRUE, +N1,59135,sortie-8f47171f-fba8-4f2f-a7e2-d6986e466eda,https://biolit.fr/sorties/sortie-8f47171f-fba8-4f2f-a7e2-d6986e466eda/,Phil,,2/18/2020 0:00,17.0000000,17.0:35,47.796437000000,-3.851146000000,,Trégunc - Finistère,38611,observation-8f47171f-fba8-4f2f-a7e2-d6986e466eda,https://biolit.fr/observations/observation-8f47171f-fba8-4f2f-a7e2-d6986e466eda/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/P1130567.JPG,,TRUE, +N1,59135,sortie-8f47171f-fba8-4f2f-a7e2-d6986e466eda,https://biolit.fr/sorties/sortie-8f47171f-fba8-4f2f-a7e2-d6986e466eda/,Phil,,2/18/2020 0:00,17.0000000,17.0:35,47.796437000000,-3.851146000000,,Trégunc - Finistère,38613,observation-8f47171f-fba8-4f2f-a7e2-d6986e466eda-2,https://biolit.fr/observations/observation-8f47171f-fba8-4f2f-a7e2-d6986e466eda-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1130572.JPG,,TRUE, +N1,59135,sortie-8f47171f-fba8-4f2f-a7e2-d6986e466eda,https://biolit.fr/sorties/sortie-8f47171f-fba8-4f2f-a7e2-d6986e466eda/,Phil,,2/18/2020 0:00,17.0000000,17.0:35,47.796437000000,-3.851146000000,,Trégunc - Finistère,38615,observation-8f47171f-fba8-4f2f-a7e2-d6986e466eda-3,https://biolit.fr/observations/observation-8f47171f-fba8-4f2f-a7e2-d6986e466eda-3/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/P1130566.JPG,,TRUE, +N1,59135,sortie-8f47171f-fba8-4f2f-a7e2-d6986e466eda,https://biolit.fr/sorties/sortie-8f47171f-fba8-4f2f-a7e2-d6986e466eda/,Phil,,2/18/2020 0:00,17.0000000,17.0:35,47.796437000000,-3.851146000000,,Trégunc - Finistère,38617,observation-8f47171f-fba8-4f2f-a7e2-d6986e466eda-4,https://biolit.fr/observations/observation-8f47171f-fba8-4f2f-a7e2-d6986e466eda-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1130562.JPG,,TRUE, +N1,59135,sortie-8f47171f-fba8-4f2f-a7e2-d6986e466eda,https://biolit.fr/sorties/sortie-8f47171f-fba8-4f2f-a7e2-d6986e466eda/,Phil,,2/18/2020 0:00,17.0000000,17.0:35,47.796437000000,-3.851146000000,,Trégunc - Finistère,38619,observation-8f47171f-fba8-4f2f-a7e2-d6986e466eda-5,https://biolit.fr/observations/observation-8f47171f-fba8-4f2f-a7e2-d6986e466eda-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130555.JPG,,FALSE, +N1,59136,sortie-8a3fdbaf-71e0-49e7-92de-1267c3bfed7d,https://biolit.fr/sorties/sortie-8a3fdbaf-71e0-49e7-92de-1267c3bfed7d/,Phil,,2/17/2020 0:00,11.0000000,11.0:35,48.674684000000,-3.923022000000,,Carantec - Finistère,38621,observation-8a3fdbaf-71e0-49e7-92de-1267c3bfed7d,https://biolit.fr/observations/observation-8a3fdbaf-71e0-49e7-92de-1267c3bfed7d/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200217_113344.jpg,,TRUE, +N1,59136,sortie-8a3fdbaf-71e0-49e7-92de-1267c3bfed7d,https://biolit.fr/sorties/sortie-8a3fdbaf-71e0-49e7-92de-1267c3bfed7d/,Phil,,2/17/2020 0:00,11.0000000,11.0:35,48.674684000000,-3.923022000000,,Carantec - Finistère,38623,observation-8a3fdbaf-71e0-49e7-92de-1267c3bfed7d-2,https://biolit.fr/observations/observation-8a3fdbaf-71e0-49e7-92de-1267c3bfed7d-2/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200217_113358.jpg,,TRUE, +N1,59136,sortie-8a3fdbaf-71e0-49e7-92de-1267c3bfed7d,https://biolit.fr/sorties/sortie-8a3fdbaf-71e0-49e7-92de-1267c3bfed7d/,Phil,,2/17/2020 0:00,11.0000000,11.0:35,48.674684000000,-3.923022000000,,Carantec - Finistère,38625,observation-8a3fdbaf-71e0-49e7-92de-1267c3bfed7d-3,https://biolit.fr/observations/observation-8a3fdbaf-71e0-49e7-92de-1267c3bfed7d-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200217_113040.jpg,,TRUE, +N1,59136,sortie-8a3fdbaf-71e0-49e7-92de-1267c3bfed7d,https://biolit.fr/sorties/sortie-8a3fdbaf-71e0-49e7-92de-1267c3bfed7d/,Phil,,2/17/2020 0:00,11.0000000,11.0:35,48.674684000000,-3.923022000000,,Carantec - Finistère,38627,observation-8a3fdbaf-71e0-49e7-92de-1267c3bfed7d-4,https://biolit.fr/observations/observation-8a3fdbaf-71e0-49e7-92de-1267c3bfed7d-4/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200217_113301.jpg,,TRUE, +N1,59137,sortie-6c2b833e-e5ee-4a18-899e-0c333ec573eb,https://biolit.fr/sorties/sortie-6c2b833e-e5ee-4a18-899e-0c333ec573eb/,Phil,,2/16/2020 0:00,13.0000000,13.000005,47.890628000000,-3.986629000000,,Fouesnant - Finistère,38629,observation-6c2b833e-e5ee-4a18-899e-0c333ec573eb,https://biolit.fr/observations/observation-6c2b833e-e5ee-4a18-899e-0c333ec573eb/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1130523.JPG,,TRUE, +N1,59137,sortie-6c2b833e-e5ee-4a18-899e-0c333ec573eb,https://biolit.fr/sorties/sortie-6c2b833e-e5ee-4a18-899e-0c333ec573eb/,Phil,,2/16/2020 0:00,13.0000000,13.000005,47.890628000000,-3.986629000000,,Fouesnant - Finistère,38631,observation-6c2b833e-e5ee-4a18-899e-0c333ec573eb-2,https://biolit.fr/observations/observation-6c2b833e-e5ee-4a18-899e-0c333ec573eb-2/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1130522.JPG,,TRUE, +N1,59137,sortie-6c2b833e-e5ee-4a18-899e-0c333ec573eb,https://biolit.fr/sorties/sortie-6c2b833e-e5ee-4a18-899e-0c333ec573eb/,Phil,,2/16/2020 0:00,13.0000000,13.000005,47.890628000000,-3.986629000000,,Fouesnant - Finistère,38633,observation-6c2b833e-e5ee-4a18-899e-0c333ec573eb-3,https://biolit.fr/observations/observation-6c2b833e-e5ee-4a18-899e-0c333ec573eb-3/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1130520.JPG,,TRUE, +N1,59137,sortie-6c2b833e-e5ee-4a18-899e-0c333ec573eb,https://biolit.fr/sorties/sortie-6c2b833e-e5ee-4a18-899e-0c333ec573eb/,Phil,,2/16/2020 0:00,13.0000000,13.000005,47.890628000000,-3.986629000000,,Fouesnant - Finistère,38635,observation-6c2b833e-e5ee-4a18-899e-0c333ec573eb-4,https://biolit.fr/observations/observation-6c2b833e-e5ee-4a18-899e-0c333ec573eb-4/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1130507.JPG,,TRUE, +N1,59138,sortie-daf9d1b6-dd73-4372-934a-c1edc39ba06c,https://biolit.fr/sorties/sortie-daf9d1b6-dd73-4372-934a-c1edc39ba06c/,Phil,,2/14/2020 0:00,11.0:25,11.0000000,47.792326000000,-4.224363000000,,Lesconil - Finistère,38637,observation-daf9d1b6-dd73-4372-934a-c1edc39ba06c,https://biolit.fr/observations/observation-daf9d1b6-dd73-4372-934a-c1edc39ba06c/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200214_112840.jpg,,FALSE, +N1,59138,sortie-daf9d1b6-dd73-4372-934a-c1edc39ba06c,https://biolit.fr/sorties/sortie-daf9d1b6-dd73-4372-934a-c1edc39ba06c/,Phil,,2/14/2020 0:00,11.0:25,11.0000000,47.792326000000,-4.224363000000,,Lesconil - Finistère,38639,observation-daf9d1b6-dd73-4372-934a-c1edc39ba06c-2,https://biolit.fr/observations/observation-daf9d1b6-dd73-4372-934a-c1edc39ba06c-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200214_112844.jpg,,TRUE, +N1,59138,sortie-daf9d1b6-dd73-4372-934a-c1edc39ba06c,https://biolit.fr/sorties/sortie-daf9d1b6-dd73-4372-934a-c1edc39ba06c/,Phil,,2/14/2020 0:00,11.0:25,11.0000000,47.792326000000,-4.224363000000,,Lesconil - Finistère,38641,observation-daf9d1b6-dd73-4372-934a-c1edc39ba06c-3,https://biolit.fr/observations/observation-daf9d1b6-dd73-4372-934a-c1edc39ba06c-3/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200214_112940.jpg,,TRUE, +N1,59138,sortie-daf9d1b6-dd73-4372-934a-c1edc39ba06c,https://biolit.fr/sorties/sortie-daf9d1b6-dd73-4372-934a-c1edc39ba06c/,Phil,,2/14/2020 0:00,11.0:25,11.0000000,47.792326000000,-4.224363000000,,Lesconil - Finistère,38643,observation-daf9d1b6-dd73-4372-934a-c1edc39ba06c-4,https://biolit.fr/observations/observation-daf9d1b6-dd73-4372-934a-c1edc39ba06c-4/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200214_113055.jpg,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38645,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea_0.PNG,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38646,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-2,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/anemonia equina.PNG,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38648,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-3,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-3/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/Balanus perforatus_0.PNG,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38649,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-4,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Bryo sp-scaled.jpg,,FALSE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38650,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-5,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-5/,Calyptraea chinensis,Chapeau chinois,,https://biolit.fr/wp-content/uploads/2023/07/calyptraea chinensis_0.PNG,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38652,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-6,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-6/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_0-scaled.jpg,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38653,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-7,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-7/,Epitonium clathrus,Scalaire,,https://biolit.fr/wp-content/uploads/2023/07/Epitonium clathrus_0.PNG,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38654,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-8,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-8/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/exuvie de cancer pagurus.PNG,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38656,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-9,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-9/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/Haematopus ostralegus.PNG,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38657,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-10,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona sp.PNG,,FALSE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38658,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-11,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-11/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/littorina fabalis_0.PNG,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38660,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-12,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-12/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_0-scaled.jpg,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38661,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-13,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-13/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_0-scaled.jpg,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38662,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-14,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-14/,Platichthys flesus,Flet,,https://biolit.fr/wp-content/uploads/2023/07/platichthys flesus.PNG,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38664,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-15,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-15/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/porcellana platycheles.jpg,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38665,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-16,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-16/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/Sabellaria alveolata.PNG,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38666,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-17,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-17/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Velella velella_0.PNG,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38667,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-18,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-18/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa_1.PNG,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38668,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-19,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-19/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_0.PNG,,TRUE, +N1,59140,sortie-833e3785-ad2d-4ed8-93cb-4ac01745322a,https://biolit.fr/sorties/sortie-833e3785-ad2d-4ed8-93cb-4ac01745322a/,Phil,,2/14/2020 0:00,11.0000000,11.0:15,47.799557000000,-4.212862000000,,Lesconil - Finistère,38669,observation-833e3785-ad2d-4ed8-93cb-4ac01745322a,https://biolit.fr/observations/observation-833e3785-ad2d-4ed8-93cb-4ac01745322a/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20200214_111321.jpg,,TRUE, +N1,59140,sortie-833e3785-ad2d-4ed8-93cb-4ac01745322a,https://biolit.fr/sorties/sortie-833e3785-ad2d-4ed8-93cb-4ac01745322a/,Phil,,2/14/2020 0:00,11.0000000,11.0:15,47.799557000000,-4.212862000000,,Lesconil - Finistère,38671,observation-833e3785-ad2d-4ed8-93cb-4ac01745322a-2,https://biolit.fr/observations/observation-833e3785-ad2d-4ed8-93cb-4ac01745322a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200214_111251.jpg,,FALSE, +N1,59140,sortie-833e3785-ad2d-4ed8-93cb-4ac01745322a,https://biolit.fr/sorties/sortie-833e3785-ad2d-4ed8-93cb-4ac01745322a/,Phil,,2/14/2020 0:00,11.0000000,11.0:15,47.799557000000,-4.212862000000,,Lesconil - Finistère,38673,observation-833e3785-ad2d-4ed8-93cb-4ac01745322a-3,https://biolit.fr/observations/observation-833e3785-ad2d-4ed8-93cb-4ac01745322a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200214_111435.jpg,,FALSE, +N1,59141,sortie-df6d2332-f1d3-4eda-a7cf-5d3cfbeb3936,https://biolit.fr/sorties/sortie-df6d2332-f1d3-4eda-a7cf-5d3cfbeb3936/,Phil,,2/13/2020 0:00,11.0:25,11.0000000,47.831324000000,-3.89124300000,,Trégunc - Finistère,38675,observation-df6d2332-f1d3-4eda-a7cf-5d3cfbeb3936,https://biolit.fr/observations/observation-df6d2332-f1d3-4eda-a7cf-5d3cfbeb3936/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200213_112658.jpg,,FALSE, +N1,59141,sortie-df6d2332-f1d3-4eda-a7cf-5d3cfbeb3936,https://biolit.fr/sorties/sortie-df6d2332-f1d3-4eda-a7cf-5d3cfbeb3936/,Phil,,2/13/2020 0:00,11.0:25,11.0000000,47.831324000000,-3.89124300000,,Trégunc - Finistère,38677,observation-df6d2332-f1d3-4eda-a7cf-5d3cfbeb3936-2,https://biolit.fr/observations/observation-df6d2332-f1d3-4eda-a7cf-5d3cfbeb3936-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200213_112708.jpg,,TRUE, +N1,59141,sortie-df6d2332-f1d3-4eda-a7cf-5d3cfbeb3936,https://biolit.fr/sorties/sortie-df6d2332-f1d3-4eda-a7cf-5d3cfbeb3936/,Phil,,2/13/2020 0:00,11.0:25,11.0000000,47.831324000000,-3.89124300000,,Trégunc - Finistère,38679,observation-df6d2332-f1d3-4eda-a7cf-5d3cfbeb3936-3,https://biolit.fr/observations/observation-df6d2332-f1d3-4eda-a7cf-5d3cfbeb3936-3/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200213_112837.jpg,,TRUE, +N1,59141,sortie-df6d2332-f1d3-4eda-a7cf-5d3cfbeb3936,https://biolit.fr/sorties/sortie-df6d2332-f1d3-4eda-a7cf-5d3cfbeb3936/,Phil,,2/13/2020 0:00,11.0:25,11.0000000,47.831324000000,-3.89124300000,,Trégunc - Finistère,38681,observation-df6d2332-f1d3-4eda-a7cf-5d3cfbeb3936-4,https://biolit.fr/observations/observation-df6d2332-f1d3-4eda-a7cf-5d3cfbeb3936-4/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200213_112854.jpg,,TRUE, +N1,59142,sortie-678629f9-b1a5-4743-ad59-a25f3c7ae5be,https://biolit.fr/sorties/sortie-678629f9-b1a5-4743-ad59-a25f3c7ae5be/,Phil,,2/13/2020 0:00,11.0:35,11.0000000,47.833883000000,-3.895546000000,,Trégunc - Finistère,38683,observation-678629f9-b1a5-4743-ad59-a25f3c7ae5be,https://biolit.fr/observations/observation-678629f9-b1a5-4743-ad59-a25f3c7ae5be/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200213_113727.jpg,,FALSE, +N1,59143,sortie-52a50b84-1c1c-4620-987d-97404100d49b,https://biolit.fr/sorties/sortie-52a50b84-1c1c-4620-987d-97404100d49b/,Centre de Découverte Mer et Montagne,,02/06/2020,11.0000000,11.0000000,43.546058000000,7.047155000000,CDMM (Centre de Découverte Mer et Montagne),Boulevard de la Gazanaire,38685,observation-52a50b84-1c1c-4620-987d-97404100d49b,https://biolit.fr/observations/observation-52a50b84-1c1c-4620-987d-97404100d49b/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200206_112102-scaled.jpg,,FALSE, +N1,59144,sortie-3523ff0c-b159-45a1-b391-65cbb28068c1,https://biolit.fr/sorties/sortie-3523ff0c-b159-45a1-b391-65cbb28068c1/,Centre de Découverte Mer et Montagne,,02/06/2020,11.0000000,18.0000000,43.546223000000,7.047262000000,CDMM (Centre de Découverte Mer et Montagne),boulevard de la gazagnaire,38687,observation-3523ff0c-b159-45a1-b391-65cbb28068c1,https://biolit.fr/observations/observation-3523ff0c-b159-45a1-b391-65cbb28068c1/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3339-scaled.jpg,,TRUE, +N1,59145,sortie-d0a919ac-3cc3-40a7-a7ec-0863ebef2b4a,https://biolit.fr/sorties/sortie-d0a919ac-3cc3-40a7-a7ec-0863ebef2b4a/,Centre de Découverte Mer et Montagne,,02/06/2020,11.0000000,11.0000000,43.546115000000,7.047117000000,CDMM (Centre de Découverte Mer et Montagne),boulevard de la Gazagnaire,38689,observation-d0a919ac-3cc3-40a7-a7ec-0863ebef2b4a,https://biolit.fr/observations/observation-d0a919ac-3cc3-40a7-a7ec-0863ebef2b4a/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1180-scaled.jpg,,FALSE, +N1,59146,sortie-de6d5c0d-d505-4eeb-8ddf-4d7225bd3b02,https://biolit.fr/sorties/sortie-de6d5c0d-d505-4eeb-8ddf-4d7225bd3b02/,Centre de Découverte Mer et Montagne,,02/06/2020,11.0000000,11.0000000,43.546249000000,7.047315000000,CDMM (Centre de Découverte Mer et Montagne),Boulevard de la Gazagnaire,38691,observation-de6d5c0d-d505-4eeb-8ddf-4d7225bd3b02,https://biolit.fr/observations/observation-de6d5c0d-d505-4eeb-8ddf-4d7225bd3b02/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/20200206_111711-scaled.jpg,,TRUE, +N1,59147,sortie-67e0c943-dabc-4421-a596-362e942b3a6d,https://biolit.fr/sorties/sortie-67e0c943-dabc-4421-a596-362e942b3a6d/,Centre de Découverte Mer et Montagne,,02/06/2020,10.0000000,13.0000000,43.546023000000,7.047144000000,CDMM (Centre de Découverte Mer et Montagne),boulevard de la gazagnaire,38693,observation-67e0c943-dabc-4421-a596-362e942b3a6d,https://biolit.fr/observations/observation-67e0c943-dabc-4421-a596-362e942b3a6d/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20200206_111650-scaled.jpg,,TRUE, +N1,59148,sortie-4c8258ef-3688-468b-837c-7f719c57dca7,https://biolit.fr/sorties/sortie-4c8258ef-3688-468b-837c-7f719c57dca7/,Centre de Découverte Mer et Montagne,,02/06/2020,9.0:35,14.0:15,43.546029000000,7.047171000000,CDMM (Centre de Découverte Mer et Montagne),"Cannes, Boulevard de la Gazagnaire",38695,observation-4c8258ef-3688-468b-837c-7f719c57dca7,https://biolit.fr/observations/observation-4c8258ef-3688-468b-837c-7f719c57dca7/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_E0942.JPG,,TRUE, +N1,59149,sortie-97f80231-c01c-4398-a54e-0e1603a4c4df,https://biolit.fr/sorties/sortie-97f80231-c01c-4398-a54e-0e1603a4c4df/,Centre de Découverte Mer et Montagne,,02/06/2020,10.0:15,13.0000000,43.546066000000,7.047230000000,CDMM (Centre de Découverte Mer et Montagne),boulevard de la Gazagnaire,38697,observation-97f80231-c01c-4398-a54e-0e1603a4c4df,https://biolit.fr/observations/observation-97f80231-c01c-4398-a54e-0e1603a4c4df/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9361-scaled.jpg,,FALSE, +N1,59150,sortie-eb254f24-194c-447b-a48d-36b6ad017008,https://biolit.fr/sorties/sortie-eb254f24-194c-447b-a48d-36b6ad017008/,Centre de Découverte Mer et Montagne,,02/06/2020,11.0000000,11.0000000,43.552870000000,7.017715000000,CDMM (Centre de Découverte Mer et Montagne),"Cannes, le boulevard de la Gazagnaire ",38699,observation-eb254f24-194c-447b-a48d-36b6ad017008,https://biolit.fr/observations/observation-eb254f24-194c-447b-a48d-36b6ad017008/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/20200206_111726-scaled.jpg,,TRUE, +N1,59151,sortie-b61a3e73-8408-4667-be65-54db89607984,https://biolit.fr/sorties/sortie-b61a3e73-8408-4667-be65-54db89607984/,Phil,,12/22/2019 0:00,17.0000000,17.0:45,47.801417000000,-4.182478000000,,Loctudy - Finistère,38701,observation-b61a3e73-8408-4667-be65-54db89607984,https://biolit.fr/observations/observation-b61a3e73-8408-4667-be65-54db89607984/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/P1130462.JPG,,TRUE, +N1,59151,sortie-b61a3e73-8408-4667-be65-54db89607984,https://biolit.fr/sorties/sortie-b61a3e73-8408-4667-be65-54db89607984/,Phil,,12/22/2019 0:00,17.0000000,17.0:45,47.801417000000,-4.182478000000,,Loctudy - Finistère,38703,observation-b61a3e73-8408-4667-be65-54db89607984-2,https://biolit.fr/observations/observation-b61a3e73-8408-4667-be65-54db89607984-2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191222_174458.jpg,,TRUE, +N1,59151,sortie-b61a3e73-8408-4667-be65-54db89607984,https://biolit.fr/sorties/sortie-b61a3e73-8408-4667-be65-54db89607984/,Phil,,12/22/2019 0:00,17.0000000,17.0:45,47.801417000000,-4.182478000000,,Loctudy - Finistère,38705,observation-b61a3e73-8408-4667-be65-54db89607984-3,https://biolit.fr/observations/observation-b61a3e73-8408-4667-be65-54db89607984-3/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/P1130491.JPG,,TRUE, +N1,59151,sortie-b61a3e73-8408-4667-be65-54db89607984,https://biolit.fr/sorties/sortie-b61a3e73-8408-4667-be65-54db89607984/,Phil,,12/22/2019 0:00,17.0000000,17.0:45,47.801417000000,-4.182478000000,,Loctudy - Finistère,38707,observation-b61a3e73-8408-4667-be65-54db89607984-4,https://biolit.fr/observations/observation-b61a3e73-8408-4667-be65-54db89607984-4/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1130496.JPG,,TRUE, +N1,59152,sortie-016c4e31-2f5c-496b-af0a-904e6ef8314d,https://biolit.fr/sorties/sortie-016c4e31-2f5c-496b-af0a-904e6ef8314d/,Phil,,1/23/2020 0:00,17.0000000,17.0000000,47.830486000000,-4.15880600000,,Loctudy - Finistère,38709,observation-016c4e31-2f5c-496b-af0a-904e6ef8314d,https://biolit.fr/observations/observation-016c4e31-2f5c-496b-af0a-904e6ef8314d/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200123_170743.jpg,,FALSE, +N1,59152,sortie-016c4e31-2f5c-496b-af0a-904e6ef8314d,https://biolit.fr/sorties/sortie-016c4e31-2f5c-496b-af0a-904e6ef8314d/,Phil,,1/23/2020 0:00,17.0000000,17.0000000,47.830486000000,-4.15880600000,,Loctudy - Finistère,38711,observation-016c4e31-2f5c-496b-af0a-904e6ef8314d-2,https://biolit.fr/observations/observation-016c4e31-2f5c-496b-af0a-904e6ef8314d-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200123_170119.jpg,,TRUE, +N1,59152,sortie-016c4e31-2f5c-496b-af0a-904e6ef8314d,https://biolit.fr/sorties/sortie-016c4e31-2f5c-496b-af0a-904e6ef8314d/,Phil,,1/23/2020 0:00,17.0000000,17.0000000,47.830486000000,-4.15880600000,,Loctudy - Finistère,38713,observation-016c4e31-2f5c-496b-af0a-904e6ef8314d-3,https://biolit.fr/observations/observation-016c4e31-2f5c-496b-af0a-904e6ef8314d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200123_170905.jpg,,FALSE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38715,observation-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328/,Antalis vulgaris,Dentale,,https://biolit.fr/wp-content/uploads/2023/07/antalis vulgaris.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38717,observation-4748dea9-a65b-4582-a957-bd4151c79328-2,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-2/,Aporrhais pespelecani,Pied de pélican commun,,https://biolit.fr/wp-content/uploads/2023/07/apporhais pespelecani.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38719,observation-4748dea9-a65b-4582-a957-bd4151c79328-3,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-3/,Arcopagia crassa,Telline épaisse,,https://biolit.fr/wp-content/uploads/2023/07/Arcopagia crassa.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38721,observation-4748dea9-a65b-4582-a957-bd4151c79328-4,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-4/,Calyptraea chinensis,Chapeau chinois,,https://biolit.fr/wp-content/uploads/2023/07/Calyptraea chinensis.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38722,observation-4748dea9-a65b-4582-a957-bd4151c79328-5,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-5/,Scyliorhinus canicula,Capsule de petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/capsule d'oeuf de petite roussette.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38724,observation-4748dea9-a65b-4582-a957-bd4151c79328-6,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capsule d'oeuf de raie.PNG,,FALSE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38725,observation-4748dea9-a65b-4582-a957-bd4151c79328-7,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-7/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/chlamys varia.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38727,observation-4748dea9-a65b-4582-a957-bd4151c79328-8,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crassadoma pusio.PNG,,FALSE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38728,observation-4748dea9-a65b-4582-a957-bd4151c79328-9,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-9/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crepidula fornicata_0.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38729,observation-4748dea9-a65b-4582-a957-bd4151c79328-10,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-10/,Diodora graeca,Fissurelle,,https://biolit.fr/wp-content/uploads/2023/07/diodora graeca.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38731,observation-4748dea9-a65b-4582-a957-bd4151c79328-11,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-11/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/2023/07/donax trunculus.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38733,observation-4748dea9-a65b-4582-a957-bd4151c79328-12,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-12/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/Echinocardium cordatum.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38734,observation-4748dea9-a65b-4582-a957-bd4151c79328-13,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-13/,Dosinia exoleta,Dosinie radiée,,https://biolit.fr/wp-content/uploads/2023/07/dosinia exoleta.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38736,observation-4748dea9-a65b-4582-a957-bd4151c79328-14,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-14/,Echinocyamus pusillus,Fève de mer,,https://biolit.fr/wp-content/uploads/2023/07/Echinocyamus pusillus_0.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38737,observation-4748dea9-a65b-4582-a957-bd4151c79328-15,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-15/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Glycymeris glycymeris_0.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38738,observation-4748dea9-a65b-4582-a957-bd4151c79328-16,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-16/,Laevicardium crassum,Bucarde de Norvège,,https://biolit.fr/wp-content/uploads/2023/07/laevicardium crassum_0.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38740,observation-4748dea9-a65b-4582-a957-bd4151c79328-17,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/lutraria magna_0.PNG,,FALSE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38742,observation-4748dea9-a65b-4582-a957-bd4151c79328-18,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-18/,Macoma balthica,Telline de la Baltique,,https://biolit.fr/wp-content/uploads/2023/07/Macoma balthica.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38743,observation-4748dea9-a65b-4582-a957-bd4151c79328-19,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-19/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/oeuf de buccin.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38745,observation-4748dea9-a65b-4582-a957-bd4151c79328-20,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-20/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/pecten maximus.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38747,observation-4748dea9-a65b-4582-a957-bd4151c79328-21,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-21/,Aequipecten opercularis,Peigne operculé,,https://biolit.fr/wp-content/uploads/2023/07/pecten opercularis.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38749,observation-4748dea9-a65b-4582-a957-bd4151c79328-22,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-22/,Pholas dactylus,Pholade,,https://biolit.fr/wp-content/uploads/2023/07/Pholas dactylus.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38750,observation-4748dea9-a65b-4582-a957-bd4151c79328-23,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-23/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/2023/07/solen marginatus.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38752,observation-4748dea9-a65b-4582-a957-bd4151c79328-24,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-24/,Turritellinella tricarinata,Turritelle commune,,https://biolit.fr/wp-content/uploads/2023/07/Turitella communis.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38753,observation-4748dea9-a65b-4582-a957-bd4151c79328-25,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-25/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/velella velella.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38755,observation-4748dea9-a65b-4582-a957-bd4151c79328-26,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-26/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa_0.PNG,,TRUE, +N1,59154,sortie-d97d3c52-6261-4781-bf48-609da2e3024b,https://biolit.fr/sorties/sortie-d97d3c52-6261-4781-bf48-609da2e3024b/,Phil,,1/19/2020 0:00,11.0:45,11.0:55,47.852756000000,-3.995341000000,,Fouesnant - Finistère,38756,observation-d97d3c52-6261-4781-bf48-609da2e3024b,https://biolit.fr/observations/observation-d97d3c52-6261-4781-bf48-609da2e3024b/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200119_115134.jpg,,TRUE, +N1,59154,sortie-d97d3c52-6261-4781-bf48-609da2e3024b,https://biolit.fr/sorties/sortie-d97d3c52-6261-4781-bf48-609da2e3024b/,Phil,,1/19/2020 0:00,11.0:45,11.0:55,47.852756000000,-3.995341000000,,Fouesnant - Finistère,38758,observation-d97d3c52-6261-4781-bf48-609da2e3024b-2,https://biolit.fr/observations/observation-d97d3c52-6261-4781-bf48-609da2e3024b-2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200119_115117.jpg,,TRUE, +N1,59154,sortie-d97d3c52-6261-4781-bf48-609da2e3024b,https://biolit.fr/sorties/sortie-d97d3c52-6261-4781-bf48-609da2e3024b/,Phil,,1/19/2020 0:00,11.0:45,11.0:55,47.852756000000,-3.995341000000,,Fouesnant - Finistère,38760,observation-d97d3c52-6261-4781-bf48-609da2e3024b-3,https://biolit.fr/observations/observation-d97d3c52-6261-4781-bf48-609da2e3024b-3/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200119_115214.jpg,,TRUE, +N1,59154,sortie-d97d3c52-6261-4781-bf48-609da2e3024b,https://biolit.fr/sorties/sortie-d97d3c52-6261-4781-bf48-609da2e3024b/,Phil,,1/19/2020 0:00,11.0:45,11.0:55,47.852756000000,-3.995341000000,,Fouesnant - Finistère,38762,observation-d97d3c52-6261-4781-bf48-609da2e3024b-4,https://biolit.fr/observations/observation-d97d3c52-6261-4781-bf48-609da2e3024b-4/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200119_115419.jpg,,TRUE, +N1,59154,sortie-d97d3c52-6261-4781-bf48-609da2e3024b,https://biolit.fr/sorties/sortie-d97d3c52-6261-4781-bf48-609da2e3024b/,Phil,,1/19/2020 0:00,11.0:45,11.0:55,47.852756000000,-3.995341000000,,Fouesnant - Finistère,38764,observation-d97d3c52-6261-4781-bf48-609da2e3024b-5,https://biolit.fr/observations/observation-d97d3c52-6261-4781-bf48-609da2e3024b-5/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200119_115326.jpg,,TRUE, +N1,59155,sortie-e7f59352-842b-424f-9f89-328466ee8755,https://biolit.fr/sorties/sortie-e7f59352-842b-424f-9f89-328466ee8755/,Centre de Découverte Mer et Montagne,,02/06/2020,11.0000000,11.0000000,43.546109000000,7.04714100000,CDMM (Centre de Découverte Mer et Montagne),Plage de cannes,38766,observation-e7f59352-842b-424f-9f89-328466ee8755,https://biolit.fr/observations/observation-e7f59352-842b-424f-9f89-328466ee8755/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200206_112349-scaled.jpg,,FALSE, +N1,59155,sortie-e7f59352-842b-424f-9f89-328466ee8755,https://biolit.fr/sorties/sortie-e7f59352-842b-424f-9f89-328466ee8755/,Centre de Découverte Mer et Montagne,,02/06/2020,11.0000000,11.0000000,43.546109000000,7.04714100000,CDMM (Centre de Découverte Mer et Montagne),Plage de cannes,38768,observation-e7f59352-842b-424f-9f89-328466ee8755-2,https://biolit.fr/observations/observation-e7f59352-842b-424f-9f89-328466ee8755-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200206_112236-scaled.jpg,,FALSE, +N1,59155,sortie-e7f59352-842b-424f-9f89-328466ee8755,https://biolit.fr/sorties/sortie-e7f59352-842b-424f-9f89-328466ee8755/,Centre de Découverte Mer et Montagne,,02/06/2020,11.0000000,11.0000000,43.546109000000,7.04714100000,CDMM (Centre de Découverte Mer et Montagne),Plage de cannes,38770,observation-e7f59352-842b-424f-9f89-328466ee8755-3,https://biolit.fr/observations/observation-e7f59352-842b-424f-9f89-328466ee8755-3/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200206_112038-scaled.jpg,,TRUE, +N1,59155,sortie-e7f59352-842b-424f-9f89-328466ee8755,https://biolit.fr/sorties/sortie-e7f59352-842b-424f-9f89-328466ee8755/,Centre de Découverte Mer et Montagne,,02/06/2020,11.0000000,11.0000000,43.546109000000,7.04714100000,CDMM (Centre de Découverte Mer et Montagne),Plage de cannes,38772,observation-e7f59352-842b-424f-9f89-328466ee8755-4,https://biolit.fr/observations/observation-e7f59352-842b-424f-9f89-328466ee8755-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200206_112116-scaled.jpg,,FALSE, +N1,59155,sortie-e7f59352-842b-424f-9f89-328466ee8755,https://biolit.fr/sorties/sortie-e7f59352-842b-424f-9f89-328466ee8755/,Centre de Découverte Mer et Montagne,,02/06/2020,11.0000000,11.0000000,43.546109000000,7.04714100000,CDMM (Centre de Découverte Mer et Montagne),Plage de cannes,38774,observation-e7f59352-842b-424f-9f89-328466ee8755-5,https://biolit.fr/observations/observation-e7f59352-842b-424f-9f89-328466ee8755-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200206_112153-scaled.jpg,,FALSE, +N1,59156,sortie-89d69e82-7259-4e54-add8-d286ef5c3ca3,https://biolit.fr/sorties/sortie-89d69e82-7259-4e54-add8-d286ef5c3ca3/,Centre de Découverte Mer et Montagne,,02/06/2020,10.0000000,10.0000000,43.54619300000,7.047254000000,CDMM (Centre de Découverte Mer et Montagne),Plage de cannes,38776,observation-89d69e82-7259-4e54-add8-d286ef5c3ca3,https://biolit.fr/observations/observation-89d69e82-7259-4e54-add8-d286ef5c3ca3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200206_104758-scaled.jpg,,FALSE, +N1,59157,sortie-f04ac046-bab1-4e50-8177-3d612ea728af,https://biolit.fr/sorties/sortie-f04ac046-bab1-4e50-8177-3d612ea728af/,Centre de Découverte Mer et Montagne,,02/06/2020,10.000005,10.0000000,43.545981000000,7.047130000000,,Plage de cannes,38778,observation-f04ac046-bab1-4e50-8177-3d612ea728af,https://biolit.fr/observations/observation-f04ac046-bab1-4e50-8177-3d612ea728af/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200206_104010-scaled.jpg,,FALSE, +N1,59157,sortie-f04ac046-bab1-4e50-8177-3d612ea728af,https://biolit.fr/sorties/sortie-f04ac046-bab1-4e50-8177-3d612ea728af/,Centre de Découverte Mer et Montagne,,02/06/2020,10.000005,10.0000000,43.545981000000,7.047130000000,,Plage de cannes,38780,observation-f04ac046-bab1-4e50-8177-3d612ea728af-2,https://biolit.fr/observations/observation-f04ac046-bab1-4e50-8177-3d612ea728af-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200206_104025-scaled.jpg,,FALSE, +N1,59158,sortie-4ede3b7d-f53f-43df-8466-27b5111643ca,https://biolit.fr/sorties/sortie-4ede3b7d-f53f-43df-8466-27b5111643ca/,Phil,,1/23/2020 0:00,16.000005,16.0:15,47.792990000000,-4.279209000000,,Tréffiagat - Finistère,38782,observation-4ede3b7d-f53f-43df-8466-27b5111643ca,https://biolit.fr/observations/observation-4ede3b7d-f53f-43df-8466-27b5111643ca/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200123_160838_1.jpg,,TRUE, +N1,59158,sortie-4ede3b7d-f53f-43df-8466-27b5111643ca,https://biolit.fr/sorties/sortie-4ede3b7d-f53f-43df-8466-27b5111643ca/,Phil,,1/23/2020 0:00,16.000005,16.0:15,47.792990000000,-4.279209000000,,Tréffiagat - Finistère,38784,observation-4ede3b7d-f53f-43df-8466-27b5111643ca-2,https://biolit.fr/observations/observation-4ede3b7d-f53f-43df-8466-27b5111643ca-2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200123_160926_0.jpg,,TRUE, +N1,59158,sortie-4ede3b7d-f53f-43df-8466-27b5111643ca,https://biolit.fr/sorties/sortie-4ede3b7d-f53f-43df-8466-27b5111643ca/,Phil,,1/23/2020 0:00,16.000005,16.0:15,47.792990000000,-4.279209000000,,Tréffiagat - Finistère,38786,observation-4ede3b7d-f53f-43df-8466-27b5111643ca-3,https://biolit.fr/observations/observation-4ede3b7d-f53f-43df-8466-27b5111643ca-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200123_161005_0.jpg,,FALSE, +N1,59158,sortie-4ede3b7d-f53f-43df-8466-27b5111643ca,https://biolit.fr/sorties/sortie-4ede3b7d-f53f-43df-8466-27b5111643ca/,Phil,,1/23/2020 0:00,16.000005,16.0:15,47.792990000000,-4.279209000000,,Tréffiagat - Finistère,38788,observation-4ede3b7d-f53f-43df-8466-27b5111643ca-4,https://biolit.fr/observations/observation-4ede3b7d-f53f-43df-8466-27b5111643ca-4/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200123_161200_0.jpg,,TRUE, +N1,59158,sortie-4ede3b7d-f53f-43df-8466-27b5111643ca,https://biolit.fr/sorties/sortie-4ede3b7d-f53f-43df-8466-27b5111643ca/,Phil,,1/23/2020 0:00,16.000005,16.0:15,47.792990000000,-4.279209000000,,Tréffiagat - Finistère,38790,observation-4ede3b7d-f53f-43df-8466-27b5111643ca-5,https://biolit.fr/observations/observation-4ede3b7d-f53f-43df-8466-27b5111643ca-5/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200123_161300_0.jpg,,TRUE, +N1,59158,sortie-4ede3b7d-f53f-43df-8466-27b5111643ca,https://biolit.fr/sorties/sortie-4ede3b7d-f53f-43df-8466-27b5111643ca/,Phil,,1/23/2020 0:00,16.000005,16.0:15,47.792990000000,-4.279209000000,,Tréffiagat - Finistère,38792,observation-4ede3b7d-f53f-43df-8466-27b5111643ca-6,https://biolit.fr/observations/observation-4ede3b7d-f53f-43df-8466-27b5111643ca-6/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200123_161343_0.jpg,,TRUE, +N1,59158,sortie-4ede3b7d-f53f-43df-8466-27b5111643ca,https://biolit.fr/sorties/sortie-4ede3b7d-f53f-43df-8466-27b5111643ca/,Phil,,1/23/2020 0:00,16.000005,16.0:15,47.792990000000,-4.279209000000,,Tréffiagat - Finistère,38794,observation-4ede3b7d-f53f-43df-8466-27b5111643ca-7,https://biolit.fr/observations/observation-4ede3b7d-f53f-43df-8466-27b5111643ca-7/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200123_161415_0.jpg,,TRUE, +N1,59159,sortie-254a2674-8842-4132-9dd6-f5bcc2afea8c,https://biolit.fr/sorties/sortie-254a2674-8842-4132-9dd6-f5bcc2afea8c/,Phil,,1/26/2020 0:00,12.0000000,12.0000000,47.854213000000,-3.979660000000,,Fouesnant - Finistère,38796,observation-254a2674-8842-4132-9dd6-f5bcc2afea8c,https://biolit.fr/observations/observation-254a2674-8842-4132-9dd6-f5bcc2afea8c/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200126_123232.jpg,,TRUE, +N1,59159,sortie-254a2674-8842-4132-9dd6-f5bcc2afea8c,https://biolit.fr/sorties/sortie-254a2674-8842-4132-9dd6-f5bcc2afea8c/,Phil,,1/26/2020 0:00,12.0000000,12.0000000,47.854213000000,-3.979660000000,,Fouesnant - Finistère,38798,observation-254a2674-8842-4132-9dd6-f5bcc2afea8c-2,https://biolit.fr/observations/observation-254a2674-8842-4132-9dd6-f5bcc2afea8c-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200126_123212.jpg,,TRUE, +N1,59159,sortie-254a2674-8842-4132-9dd6-f5bcc2afea8c,https://biolit.fr/sorties/sortie-254a2674-8842-4132-9dd6-f5bcc2afea8c/,Phil,,1/26/2020 0:00,12.0000000,12.0000000,47.854213000000,-3.979660000000,,Fouesnant - Finistère,38800,observation-254a2674-8842-4132-9dd6-f5bcc2afea8c-3,https://biolit.fr/observations/observation-254a2674-8842-4132-9dd6-f5bcc2afea8c-3/,Membranipora membranacea,Membranipore,,https://biolit.fr/wp-content/uploads/2023/07/20200126_123506.jpg,,TRUE, +N1,59159,sortie-254a2674-8842-4132-9dd6-f5bcc2afea8c,https://biolit.fr/sorties/sortie-254a2674-8842-4132-9dd6-f5bcc2afea8c/,Phil,,1/26/2020 0:00,12.0000000,12.0000000,47.854213000000,-3.979660000000,,Fouesnant - Finistère,38802,observation-254a2674-8842-4132-9dd6-f5bcc2afea8c-4,https://biolit.fr/observations/observation-254a2674-8842-4132-9dd6-f5bcc2afea8c-4/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200126_123750.jpg,,TRUE, +N1,59159,sortie-254a2674-8842-4132-9dd6-f5bcc2afea8c,https://biolit.fr/sorties/sortie-254a2674-8842-4132-9dd6-f5bcc2afea8c/,Phil,,1/26/2020 0:00,12.0000000,12.0000000,47.854213000000,-3.979660000000,,Fouesnant - Finistère,38804,observation-254a2674-8842-4132-9dd6-f5bcc2afea8c-5,https://biolit.fr/observations/observation-254a2674-8842-4132-9dd6-f5bcc2afea8c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200126_123401.jpg,,FALSE, +N1,59160,sortie-4ea45f29-9a45-4297-8f0a-eb9e6c685afd,https://biolit.fr/sorties/sortie-4ea45f29-9a45-4297-8f0a-eb9e6c685afd/,Roman,,02/01/2020,16.0000000,17.0000000,47.704059000000,-3.355981000000,,Port-louis,38806,observation-4ea45f29-9a45-4297-8f0a-eb9e6c685afd,https://biolit.fr/observations/observation-4ea45f29-9a45-4297-8f0a-eb9e6c685afd/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/actinia equina2.PNG,,TRUE, +N1,59160,sortie-4ea45f29-9a45-4297-8f0a-eb9e6c685afd,https://biolit.fr/sorties/sortie-4ea45f29-9a45-4297-8f0a-eb9e6c685afd/,Roman,,02/01/2020,16.0000000,17.0000000,47.704059000000,-3.355981000000,,Port-louis,38808,observation-4ea45f29-9a45-4297-8f0a-eb9e6c685afd-2,https://biolit.fr/observations/observation-4ea45f29-9a45-4297-8f0a-eb9e6c685afd-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/carcinus maenas3.PNG,,TRUE, +N1,59160,sortie-4ea45f29-9a45-4297-8f0a-eb9e6c685afd,https://biolit.fr/sorties/sortie-4ea45f29-9a45-4297-8f0a-eb9e6c685afd/,Roman,,02/01/2020,16.0000000,17.0000000,47.704059000000,-3.355981000000,,Port-louis,38810,observation-4ea45f29-9a45-4297-8f0a-eb9e6c685afd-3,https://biolit.fr/observations/observation-4ea45f29-9a45-4297-8f0a-eb9e6c685afd-3/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/cerastoderma edule3.PNG,,TRUE, +N1,59160,sortie-4ea45f29-9a45-4297-8f0a-eb9e6c685afd,https://biolit.fr/sorties/sortie-4ea45f29-9a45-4297-8f0a-eb9e6c685afd/,Roman,,02/01/2020,16.0000000,17.0000000,47.704059000000,-3.355981000000,,Port-louis,38812,observation-4ea45f29-9a45-4297-8f0a-eb9e6c685afd-4,https://biolit.fr/observations/observation-4ea45f29-9a45-4297-8f0a-eb9e6c685afd-4/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/chthamalus m et s.PNG,,TRUE, +N1,59160,sortie-4ea45f29-9a45-4297-8f0a-eb9e6c685afd,https://biolit.fr/sorties/sortie-4ea45f29-9a45-4297-8f0a-eb9e6c685afd/,Roman,,02/01/2020,16.0000000,17.0000000,47.704059000000,-3.355981000000,,Port-louis,38814,observation-4ea45f29-9a45-4297-8f0a-eb9e6c685afd-5,https://biolit.fr/observations/observation-4ea45f29-9a45-4297-8f0a-eb9e6c685afd-5/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/littorina littorea3.PNG,,TRUE, +N1,59160,sortie-4ea45f29-9a45-4297-8f0a-eb9e6c685afd,https://biolit.fr/sorties/sortie-4ea45f29-9a45-4297-8f0a-eb9e6c685afd/,Roman,,02/01/2020,16.0000000,17.0000000,47.704059000000,-3.355981000000,,Port-louis,38816,observation-4ea45f29-9a45-4297-8f0a-eb9e6c685afd-6,https://biolit.fr/observations/observation-4ea45f29-9a45-4297-8f0a-eb9e6c685afd-6/,Cilysta elegans,Sagartie élégante,,https://biolit.fr/wp-content/uploads/2023/07/Sagartia elegans.PNG,,TRUE, +N1,59160,sortie-4ea45f29-9a45-4297-8f0a-eb9e6c685afd,https://biolit.fr/sorties/sortie-4ea45f29-9a45-4297-8f0a-eb9e6c685afd/,Roman,,02/01/2020,16.0000000,17.0000000,47.704059000000,-3.355981000000,,Port-louis,38817,observation-4ea45f29-9a45-4297-8f0a-eb9e6c685afd-7,https://biolit.fr/observations/observation-4ea45f29-9a45-4297-8f0a-eb9e6c685afd-7/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/venus verrucosa1.PNG,,TRUE, +N1,59161,sortie-4533bcc1-94cc-4bc3-8fbe-5c3f948ce2af,https://biolit.fr/sorties/sortie-4533bcc1-94cc-4bc3-8fbe-5c3f948ce2af/,Soso40230,,1/31/2020 0:00,16.0000000,18.0000000,43.576476000000,-1.487654000000,,Ondres,38819,observation-4533bcc1-94cc-4bc3-8fbe-5c3f948ce2af,https://biolit.fr/observations/observation-4533bcc1-94cc-4bc3-8fbe-5c3f948ce2af/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200131_160021-scaled.jpg,,TRUE, +N1,59162,sortie-9ffd0ea9-8794-428c-af46-ff58477649b8,https://biolit.fr/sorties/sortie-9ffd0ea9-8794-428c-af46-ff58477649b8/,Phil,,1/19/2020 0:00,11.0:35,11.0000000,47.852626000000,-3.993732000000,,Fouesnant - Finistère,38821,observation-9ffd0ea9-8794-428c-af46-ff58477649b8,https://biolit.fr/observations/observation-9ffd0ea9-8794-428c-af46-ff58477649b8/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/20200119_114851.jpg,,TRUE, +N1,59162,sortie-9ffd0ea9-8794-428c-af46-ff58477649b8,https://biolit.fr/sorties/sortie-9ffd0ea9-8794-428c-af46-ff58477649b8/,Phil,,1/19/2020 0:00,11.0:35,11.0000000,47.852626000000,-3.993732000000,,Fouesnant - Finistère,38823,observation-9ffd0ea9-8794-428c-af46-ff58477649b8-2,https://biolit.fr/observations/observation-9ffd0ea9-8794-428c-af46-ff58477649b8-2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200119_114218.jpg,,TRUE, +N1,59162,sortie-9ffd0ea9-8794-428c-af46-ff58477649b8,https://biolit.fr/sorties/sortie-9ffd0ea9-8794-428c-af46-ff58477649b8/,Phil,,1/19/2020 0:00,11.0:35,11.0000000,47.852626000000,-3.993732000000,,Fouesnant - Finistère,38825,observation-9ffd0ea9-8794-428c-af46-ff58477649b8-3,https://biolit.fr/observations/observation-9ffd0ea9-8794-428c-af46-ff58477649b8-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200119_114016.jpg,,TRUE, +N1,59162,sortie-9ffd0ea9-8794-428c-af46-ff58477649b8,https://biolit.fr/sorties/sortie-9ffd0ea9-8794-428c-af46-ff58477649b8/,Phil,,1/19/2020 0:00,11.0:35,11.0000000,47.852626000000,-3.993732000000,,Fouesnant - Finistère,38827,observation-9ffd0ea9-8794-428c-af46-ff58477649b8-4,https://biolit.fr/observations/observation-9ffd0ea9-8794-428c-af46-ff58477649b8-4/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20200119_113950.jpg,,TRUE, +N1,59162,sortie-9ffd0ea9-8794-428c-af46-ff58477649b8,https://biolit.fr/sorties/sortie-9ffd0ea9-8794-428c-af46-ff58477649b8/,Phil,,1/19/2020 0:00,11.0:35,11.0000000,47.852626000000,-3.993732000000,,Fouesnant - Finistère,38829,observation-9ffd0ea9-8794-428c-af46-ff58477649b8-5,https://biolit.fr/observations/observation-9ffd0ea9-8794-428c-af46-ff58477649b8-5/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200119_113601.jpg,,TRUE, +N1,59162,sortie-9ffd0ea9-8794-428c-af46-ff58477649b8,https://biolit.fr/sorties/sortie-9ffd0ea9-8794-428c-af46-ff58477649b8/,Phil,,1/19/2020 0:00,11.0:35,11.0000000,47.852626000000,-3.993732000000,,Fouesnant - Finistère,38831,observation-9ffd0ea9-8794-428c-af46-ff58477649b8-6,https://biolit.fr/observations/observation-9ffd0ea9-8794-428c-af46-ff58477649b8-6/,Laevicardium crassum,Bucarde de Norvège,,https://biolit.fr/wp-content/uploads/2023/07/20200119_113718.jpg,,TRUE, +N1,59163,sortie-06a28fcf-1335-4b79-9a31-c61b137d678f,https://biolit.fr/sorties/sortie-06a28fcf-1335-4b79-9a31-c61b137d678f/,Phil,,1/23/2020 0:00,16.0:55,17.0000000,47.828087000000,-4.162376000000,,Loctudy - Finistère,38833,observation-06a28fcf-1335-4b79-9a31-c61b137d678f,https://biolit.fr/observations/observation-06a28fcf-1335-4b79-9a31-c61b137d678f/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200123_165826.jpg,,FALSE, +N1,59163,sortie-06a28fcf-1335-4b79-9a31-c61b137d678f,https://biolit.fr/sorties/sortie-06a28fcf-1335-4b79-9a31-c61b137d678f/,Phil,,1/23/2020 0:00,16.0:55,17.0000000,47.828087000000,-4.162376000000,,Loctudy - Finistère,38835,observation-06a28fcf-1335-4b79-9a31-c61b137d678f-2,https://biolit.fr/observations/observation-06a28fcf-1335-4b79-9a31-c61b137d678f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200123_165909.jpg,,FALSE, +N1,59163,sortie-06a28fcf-1335-4b79-9a31-c61b137d678f,https://biolit.fr/sorties/sortie-06a28fcf-1335-4b79-9a31-c61b137d678f/,Phil,,1/23/2020 0:00,16.0:55,17.0000000,47.828087000000,-4.162376000000,,Loctudy - Finistère,38837,observation-06a28fcf-1335-4b79-9a31-c61b137d678f-3,https://biolit.fr/observations/observation-06a28fcf-1335-4b79-9a31-c61b137d678f-3/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/20200123_165938.jpg,,TRUE, +N1,59163,sortie-06a28fcf-1335-4b79-9a31-c61b137d678f,https://biolit.fr/sorties/sortie-06a28fcf-1335-4b79-9a31-c61b137d678f/,Phil,,1/23/2020 0:00,16.0:55,17.0000000,47.828087000000,-4.162376000000,,Loctudy - Finistère,38839,observation-06a28fcf-1335-4b79-9a31-c61b137d678f-4,https://biolit.fr/observations/observation-06a28fcf-1335-4b79-9a31-c61b137d678f-4/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20200123_170054.jpg,,TRUE, +N1,59164,sortie-1599b97a-8554-4674-b7c2-72d951d528a7,https://biolit.fr/sorties/sortie-1599b97a-8554-4674-b7c2-72d951d528a7/,Phil,,1/23/2020 0:00,16.0000000,16.0000000,47.792588000000,-4.279183000000,,Léchiagat - Finistère,38841,observation-1599b97a-8554-4674-b7c2-72d951d528a7,https://biolit.fr/observations/observation-1599b97a-8554-4674-b7c2-72d951d528a7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200123_160614.jpg,,FALSE, +N1,59164,sortie-1599b97a-8554-4674-b7c2-72d951d528a7,https://biolit.fr/sorties/sortie-1599b97a-8554-4674-b7c2-72d951d528a7/,Phil,,1/23/2020 0:00,16.0000000,16.0000000,47.792588000000,-4.279183000000,,Léchiagat - Finistère,38843,observation-1599b97a-8554-4674-b7c2-72d951d528a7-2,https://biolit.fr/observations/observation-1599b97a-8554-4674-b7c2-72d951d528a7-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200123_160732.jpg,,TRUE, +N1,59164,sortie-1599b97a-8554-4674-b7c2-72d951d528a7,https://biolit.fr/sorties/sortie-1599b97a-8554-4674-b7c2-72d951d528a7/,Phil,,1/23/2020 0:00,16.0000000,16.0000000,47.792588000000,-4.279183000000,,Léchiagat - Finistère,38845,observation-1599b97a-8554-4674-b7c2-72d951d528a7-3,https://biolit.fr/observations/observation-1599b97a-8554-4674-b7c2-72d951d528a7-3/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200123_160634.jpg,,TRUE, +N1,59164,sortie-1599b97a-8554-4674-b7c2-72d951d528a7,https://biolit.fr/sorties/sortie-1599b97a-8554-4674-b7c2-72d951d528a7/,Phil,,1/23/2020 0:00,16.0000000,16.0000000,47.792588000000,-4.279183000000,,Léchiagat - Finistère,38847,observation-1599b97a-8554-4674-b7c2-72d951d528a7-4,https://biolit.fr/observations/observation-1599b97a-8554-4674-b7c2-72d951d528a7-4/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200123_160529.jpg,,TRUE, +N1,59164,sortie-1599b97a-8554-4674-b7c2-72d951d528a7,https://biolit.fr/sorties/sortie-1599b97a-8554-4674-b7c2-72d951d528a7/,Phil,,1/23/2020 0:00,16.0000000,16.0000000,47.792588000000,-4.279183000000,,Léchiagat - Finistère,38849,observation-1599b97a-8554-4674-b7c2-72d951d528a7-5,https://biolit.fr/observations/observation-1599b97a-8554-4674-b7c2-72d951d528a7-5/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200123_160245.jpg,,TRUE, +N1,59164,sortie-1599b97a-8554-4674-b7c2-72d951d528a7,https://biolit.fr/sorties/sortie-1599b97a-8554-4674-b7c2-72d951d528a7/,Phil,,1/23/2020 0:00,16.0000000,16.0000000,47.792588000000,-4.279183000000,,Léchiagat - Finistère,38851,observation-1599b97a-8554-4674-b7c2-72d951d528a7-6,https://biolit.fr/observations/observation-1599b97a-8554-4674-b7c2-72d951d528a7-6/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200123_160239.jpg,,TRUE, +N1,59165,sortie-1b2229f2-9f15-4d8b-aaa6-bb058003ca31,https://biolit.fr/sorties/sortie-1b2229f2-9f15-4d8b-aaa6-bb058003ca31/,Phil,,1/26/2020 0:00,12.0000000,12.0:35,47.854377000000,-3.975343000000,,Fouesnant - Finistère,38853,observation-1b2229f2-9f15-4d8b-aaa6-bb058003ca31,https://biolit.fr/observations/observation-1b2229f2-9f15-4d8b-aaa6-bb058003ca31/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200126_122802.jpg,,FALSE, +N1,59165,sortie-1b2229f2-9f15-4d8b-aaa6-bb058003ca31,https://biolit.fr/sorties/sortie-1b2229f2-9f15-4d8b-aaa6-bb058003ca31/,Phil,,1/26/2020 0:00,12.0000000,12.0:35,47.854377000000,-3.975343000000,,Fouesnant - Finistère,38855,observation-1b2229f2-9f15-4d8b-aaa6-bb058003ca31-2,https://biolit.fr/observations/observation-1b2229f2-9f15-4d8b-aaa6-bb058003ca31-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200126_122808.jpg,,FALSE, +N1,59165,sortie-1b2229f2-9f15-4d8b-aaa6-bb058003ca31,https://biolit.fr/sorties/sortie-1b2229f2-9f15-4d8b-aaa6-bb058003ca31/,Phil,,1/26/2020 0:00,12.0000000,12.0:35,47.854377000000,-3.975343000000,,Fouesnant - Finistère,38857,observation-1b2229f2-9f15-4d8b-aaa6-bb058003ca31-3,https://biolit.fr/observations/observation-1b2229f2-9f15-4d8b-aaa6-bb058003ca31-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200126_122713.jpg,,TRUE, +N1,59165,sortie-1b2229f2-9f15-4d8b-aaa6-bb058003ca31,https://biolit.fr/sorties/sortie-1b2229f2-9f15-4d8b-aaa6-bb058003ca31/,Phil,,1/26/2020 0:00,12.0000000,12.0:35,47.854377000000,-3.975343000000,,Fouesnant - Finistère,38859,observation-1b2229f2-9f15-4d8b-aaa6-bb058003ca31-4,https://biolit.fr/observations/observation-1b2229f2-9f15-4d8b-aaa6-bb058003ca31-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200126_122914.jpg,,FALSE, +N1,59165,sortie-1b2229f2-9f15-4d8b-aaa6-bb058003ca31,https://biolit.fr/sorties/sortie-1b2229f2-9f15-4d8b-aaa6-bb058003ca31/,Phil,,1/26/2020 0:00,12.0000000,12.0:35,47.854377000000,-3.975343000000,,Fouesnant - Finistère,38861,observation-1b2229f2-9f15-4d8b-aaa6-bb058003ca31-5,https://biolit.fr/observations/observation-1b2229f2-9f15-4d8b-aaa6-bb058003ca31-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200126_122958.jpg,,FALSE, +N1,59165,sortie-1b2229f2-9f15-4d8b-aaa6-bb058003ca31,https://biolit.fr/sorties/sortie-1b2229f2-9f15-4d8b-aaa6-bb058003ca31/,Phil,,1/26/2020 0:00,12.0000000,12.0:35,47.854377000000,-3.975343000000,,Fouesnant - Finistère,38863,observation-1b2229f2-9f15-4d8b-aaa6-bb058003ca31-6,https://biolit.fr/observations/observation-1b2229f2-9f15-4d8b-aaa6-bb058003ca31-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200126_123040.jpg,,FALSE, +N1,59165,sortie-1b2229f2-9f15-4d8b-aaa6-bb058003ca31,https://biolit.fr/sorties/sortie-1b2229f2-9f15-4d8b-aaa6-bb058003ca31/,Phil,,1/26/2020 0:00,12.0000000,12.0:35,47.854377000000,-3.975343000000,,Fouesnant - Finistère,38865,observation-1b2229f2-9f15-4d8b-aaa6-bb058003ca31-7,https://biolit.fr/observations/observation-1b2229f2-9f15-4d8b-aaa6-bb058003ca31-7/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200126_123123.jpg,,TRUE, +N1,59166,sortie-75c3233b-5f5d-415f-b04c-8f16882fd399,https://biolit.fr/sorties/sortie-75c3233b-5f5d-415f-b04c-8f16882fd399/,Roman,,1/25/2020 0:00,11.0000000,13.0000000,46.437214000000,-1.668115000000,,Plage du Veillon,38867,observation-75c3233b-5f5d-415f-b04c-8f16882fd399,https://biolit.fr/observations/observation-75c3233b-5f5d-415f-b04c-8f16882fd399/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/Aplysia punctata.PNG,,TRUE, +N1,59166,sortie-75c3233b-5f5d-415f-b04c-8f16882fd399,https://biolit.fr/sorties/sortie-75c3233b-5f5d-415f-b04c-8f16882fd399/,Roman,,1/25/2020 0:00,11.0000000,13.0000000,46.437214000000,-1.668115000000,,Plage du Veillon,38868,observation-75c3233b-5f5d-415f-b04c-8f16882fd399-2,https://biolit.fr/observations/observation-75c3233b-5f5d-415f-b04c-8f16882fd399-2/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/chiton sp.PNG,,TRUE, +N1,59166,sortie-75c3233b-5f5d-415f-b04c-8f16882fd399,https://biolit.fr/sorties/sortie-75c3233b-5f5d-415f-b04c-8f16882fd399/,Roman,,1/25/2020 0:00,11.0000000,13.0000000,46.437214000000,-1.668115000000,,Plage du Veillon,38870,observation-75c3233b-5f5d-415f-b04c-8f16882fd399-3,https://biolit.fr/observations/observation-75c3233b-5f5d-415f-b04c-8f16882fd399-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Osilinus lineatus.PNG,,TRUE, +N1,59166,sortie-75c3233b-5f5d-415f-b04c-8f16882fd399,https://biolit.fr/sorties/sortie-75c3233b-5f5d-415f-b04c-8f16882fd399/,Roman,,1/25/2020 0:00,11.0000000,13.0000000,46.437214000000,-1.668115000000,,Plage du Veillon,38871,observation-75c3233b-5f5d-415f-b04c-8f16882fd399-4,https://biolit.fr/observations/observation-75c3233b-5f5d-415f-b04c-8f16882fd399-4/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus.jpg,,TRUE, +N1,59166,sortie-75c3233b-5f5d-415f-b04c-8f16882fd399,https://biolit.fr/sorties/sortie-75c3233b-5f5d-415f-b04c-8f16882fd399/,Roman,,1/25/2020 0:00,11.0000000,13.0000000,46.437214000000,-1.668115000000,,Plage du Veillon,38872,observation-75c3233b-5f5d-415f-b04c-8f16882fd399-5,https://biolit.fr/observations/observation-75c3233b-5f5d-415f-b04c-8f16882fd399-5/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/eriphia sp.PNG,,TRUE, +N1,59166,sortie-75c3233b-5f5d-415f-b04c-8f16882fd399,https://biolit.fr/sorties/sortie-75c3233b-5f5d-415f-b04c-8f16882fd399/,Roman,,1/25/2020 0:00,11.0000000,13.0000000,46.437214000000,-1.668115000000,,Plage du Veillon,38874,observation-75c3233b-5f5d-415f-b04c-8f16882fd399-6,https://biolit.fr/observations/observation-75c3233b-5f5d-415f-b04c-8f16882fd399-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/tricolia pullus_0.PNG,,FALSE, +N1,59167,sortie-7d280f6b-fbc6-4012-a645-dae1666185fb,https://biolit.fr/sorties/sortie-7d280f6b-fbc6-4012-a645-dae1666185fb/,Phil,,12/29/2019 0:00,12.0:25,12.0000000,47.870491000000,-4.102297000000,,Bénodet - Finistère,38876,observation-7d280f6b-fbc6-4012-a645-dae1666185fb,https://biolit.fr/observations/observation-7d280f6b-fbc6-4012-a645-dae1666185fb/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20191229_123046.jpg,,TRUE, +N1,59167,sortie-7d280f6b-fbc6-4012-a645-dae1666185fb,https://biolit.fr/sorties/sortie-7d280f6b-fbc6-4012-a645-dae1666185fb/,Phil,,12/29/2019 0:00,12.0:25,12.0000000,47.870491000000,-4.102297000000,,Bénodet - Finistère,38878,observation-7d280f6b-fbc6-4012-a645-dae1666185fb-2,https://biolit.fr/observations/observation-7d280f6b-fbc6-4012-a645-dae1666185fb-2/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20191229_123025.jpg,,TRUE, +N1,59167,sortie-7d280f6b-fbc6-4012-a645-dae1666185fb,https://biolit.fr/sorties/sortie-7d280f6b-fbc6-4012-a645-dae1666185fb/,Phil,,12/29/2019 0:00,12.0:25,12.0000000,47.870491000000,-4.102297000000,,Bénodet - Finistère,38880,observation-7d280f6b-fbc6-4012-a645-dae1666185fb-3,https://biolit.fr/observations/observation-7d280f6b-fbc6-4012-a645-dae1666185fb-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191229_122748.jpg,,FALSE, +N1,59168,sortie-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c,https://biolit.fr/sorties/sortie-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c/,Phil,,12/22/2019 0:00,17.0000000,17.0:35,47.800339000000,-4.183132000000,,Loctudy - Finistère,38882,observation-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c,https://biolit.fr/observations/observation-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191222_174424.jpg,,TRUE, +N1,59168,sortie-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c,https://biolit.fr/sorties/sortie-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c/,Phil,,12/22/2019 0:00,17.0000000,17.0:35,47.800339000000,-4.183132000000,,Loctudy - Finistère,38884,observation-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c-2,https://biolit.fr/observations/observation-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c-2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1130441.JPG,,TRUE, +N1,59168,sortie-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c,https://biolit.fr/sorties/sortie-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c/,Phil,,12/22/2019 0:00,17.0000000,17.0:35,47.800339000000,-4.183132000000,,Loctudy - Finistère,38886,observation-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c-3,https://biolit.fr/observations/observation-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c-3/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1130454.JPG,,TRUE, +N1,59168,sortie-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c,https://biolit.fr/sorties/sortie-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c/,Phil,,12/22/2019 0:00,17.0000000,17.0:35,47.800339000000,-4.183132000000,,Loctudy - Finistère,38888,observation-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c-4,https://biolit.fr/observations/observation-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c-4/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1130458.JPG,,TRUE, +N1,59168,sortie-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c,https://biolit.fr/sorties/sortie-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c/,Phil,,12/22/2019 0:00,17.0000000,17.0:35,47.800339000000,-4.183132000000,,Loctudy - Finistère,38890,observation-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c-5,https://biolit.fr/observations/observation-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c-5/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1130482.JPG,,TRUE, +N1,59169,sortie-c744908b-af74-40b3-afea-615ab316306e,https://biolit.fr/sorties/sortie-c744908b-af74-40b3-afea-615ab316306e/,Phil,,1/23/2020 0:00,16.0:35,16.0:45,47.835411000000,-4.167136000000,,Loctudy - Finistère,38892,observation-c744908b-af74-40b3-afea-615ab316306e,https://biolit.fr/observations/observation-c744908b-af74-40b3-afea-615ab316306e/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200123_163944.jpg,,FALSE, +N1,59169,sortie-c744908b-af74-40b3-afea-615ab316306e,https://biolit.fr/sorties/sortie-c744908b-af74-40b3-afea-615ab316306e/,Phil,,1/23/2020 0:00,16.0:35,16.0:45,47.835411000000,-4.167136000000,,Loctudy - Finistère,38896,observation-c744908b-af74-40b3-afea-615ab316306e-3,https://biolit.fr/observations/observation-c744908b-af74-40b3-afea-615ab316306e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200123_164008.jpg,,FALSE, +N1,59169,sortie-c744908b-af74-40b3-afea-615ab316306e,https://biolit.fr/sorties/sortie-c744908b-af74-40b3-afea-615ab316306e/,Phil,,1/23/2020 0:00,16.0:35,16.0:45,47.835411000000,-4.167136000000,,Loctudy - Finistère,38898,observation-c744908b-af74-40b3-afea-615ab316306e-4,https://biolit.fr/observations/observation-c744908b-af74-40b3-afea-615ab316306e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200123_164319.jpg,,FALSE, +N1,59169,sortie-c744908b-af74-40b3-afea-615ab316306e,https://biolit.fr/sorties/sortie-c744908b-af74-40b3-afea-615ab316306e/,Phil,,1/23/2020 0:00,16.0:35,16.0:45,47.835411000000,-4.167136000000,,Loctudy - Finistère,38900,observation-c744908b-af74-40b3-afea-615ab316306e-5,https://biolit.fr/observations/observation-c744908b-af74-40b3-afea-615ab316306e-5/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/20200123_164351.jpg,,TRUE, +N1,59169,sortie-c744908b-af74-40b3-afea-615ab316306e,https://biolit.fr/sorties/sortie-c744908b-af74-40b3-afea-615ab316306e/,Phil,,1/23/2020 0:00,16.0:35,16.0:45,47.835411000000,-4.167136000000,,Loctudy - Finistère,38902,observation-c744908b-af74-40b3-afea-615ab316306e-6,https://biolit.fr/observations/observation-c744908b-af74-40b3-afea-615ab316306e-6/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/20200123_164420.jpg,,TRUE, +N1,59170,sortie-e377913f-0d2d-4ec9-ab69-925d6cc36afb,https://biolit.fr/sorties/sortie-e377913f-0d2d-4ec9-ab69-925d6cc36afb/,Phil,,1/23/2020 0:00,17.0:15,17.0000000,47.830760000000,-4.157510000000,,Loctudy - Finistère,38904,observation-e377913f-0d2d-4ec9-ab69-925d6cc36afb,https://biolit.fr/observations/observation-e377913f-0d2d-4ec9-ab69-925d6cc36afb/,Bittium reticulatum,Cérithe réticulé,,https://biolit.fr/wp-content/uploads/2023/07/20200123_171709.jpg,,TRUE, +N1,59170,sortie-e377913f-0d2d-4ec9-ab69-925d6cc36afb,https://biolit.fr/sorties/sortie-e377913f-0d2d-4ec9-ab69-925d6cc36afb/,Phil,,1/23/2020 0:00,17.0:15,17.0000000,47.830760000000,-4.157510000000,,Loctudy - Finistère,38906,observation-e377913f-0d2d-4ec9-ab69-925d6cc36afb-2,https://biolit.fr/observations/observation-e377913f-0d2d-4ec9-ab69-925d6cc36afb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200123_171637.jpg,,FALSE, +N1,59170,sortie-e377913f-0d2d-4ec9-ab69-925d6cc36afb,https://biolit.fr/sorties/sortie-e377913f-0d2d-4ec9-ab69-925d6cc36afb/,Phil,,1/23/2020 0:00,17.0:15,17.0000000,47.830760000000,-4.157510000000,,Loctudy - Finistère,38908,observation-e377913f-0d2d-4ec9-ab69-925d6cc36afb-3,https://biolit.fr/observations/observation-e377913f-0d2d-4ec9-ab69-925d6cc36afb-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200123_172034.jpg,,TRUE, +N1,59171,sortie-951852f5-f966-428d-a2ea-750b59febd98,https://biolit.fr/sorties/sortie-951852f5-f966-428d-a2ea-750b59febd98/,Phil,,1/19/2020 0:00,11.0000000,11.0:35,47.853149000000,-3.993401000000,,Fouesnant - Finistère,38910,observation-951852f5-f966-428d-a2ea-750b59febd98,https://biolit.fr/observations/observation-951852f5-f966-428d-a2ea-750b59febd98/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200119_113140.jpg,,TRUE, +N1,59171,sortie-951852f5-f966-428d-a2ea-750b59febd98,https://biolit.fr/sorties/sortie-951852f5-f966-428d-a2ea-750b59febd98/,Phil,,1/19/2020 0:00,11.0000000,11.0:35,47.853149000000,-3.993401000000,,Fouesnant - Finistère,38912,observation-951852f5-f966-428d-a2ea-750b59febd98-2,https://biolit.fr/observations/observation-951852f5-f966-428d-a2ea-750b59febd98-2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200119_113217.jpg,,TRUE, +N1,59171,sortie-951852f5-f966-428d-a2ea-750b59febd98,https://biolit.fr/sorties/sortie-951852f5-f966-428d-a2ea-750b59febd98/,Phil,,1/19/2020 0:00,11.0000000,11.0:35,47.853149000000,-3.993401000000,,Fouesnant - Finistère,38914,observation-951852f5-f966-428d-a2ea-750b59febd98-3,https://biolit.fr/observations/observation-951852f5-f966-428d-a2ea-750b59febd98-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200119_113234.jpg,,TRUE, +N1,59171,sortie-951852f5-f966-428d-a2ea-750b59febd98,https://biolit.fr/sorties/sortie-951852f5-f966-428d-a2ea-750b59febd98/,Phil,,1/19/2020 0:00,11.0000000,11.0:35,47.853149000000,-3.993401000000,,Fouesnant - Finistère,38916,observation-951852f5-f966-428d-a2ea-750b59febd98-4,https://biolit.fr/observations/observation-951852f5-f966-428d-a2ea-750b59febd98-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200119_113318.jpg,,FALSE, +N1,59171,sortie-951852f5-f966-428d-a2ea-750b59febd98,https://biolit.fr/sorties/sortie-951852f5-f966-428d-a2ea-750b59febd98/,Phil,,1/19/2020 0:00,11.0000000,11.0:35,47.853149000000,-3.993401000000,,Fouesnant - Finistère,38918,observation-951852f5-f966-428d-a2ea-750b59febd98-5,https://biolit.fr/observations/observation-951852f5-f966-428d-a2ea-750b59febd98-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200119_113336.jpg,,FALSE, +N1,59171,sortie-951852f5-f966-428d-a2ea-750b59febd98,https://biolit.fr/sorties/sortie-951852f5-f966-428d-a2ea-750b59febd98/,Phil,,1/19/2020 0:00,11.0000000,11.0:35,47.853149000000,-3.993401000000,,Fouesnant - Finistère,38920,observation-951852f5-f966-428d-a2ea-750b59febd98-6,https://biolit.fr/observations/observation-951852f5-f966-428d-a2ea-750b59febd98-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200119_113414.jpg,,FALSE, +N1,59171,sortie-951852f5-f966-428d-a2ea-750b59febd98,https://biolit.fr/sorties/sortie-951852f5-f966-428d-a2ea-750b59febd98/,Phil,,1/19/2020 0:00,11.0000000,11.0:35,47.853149000000,-3.993401000000,,Fouesnant - Finistère,38922,observation-951852f5-f966-428d-a2ea-750b59febd98-7,https://biolit.fr/observations/observation-951852f5-f966-428d-a2ea-750b59febd98-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200119_113436.jpg,,FALSE, +N1,59172,sortie-9ce4fdbf-0e72-459e-9905-67dbadd0a15e,https://biolit.fr/sorties/sortie-9ce4fdbf-0e72-459e-9905-67dbadd0a15e/,Phil,,6/14/2019 0:00,12.0:15,12.0000000,47.892435000000,-4.128482000000,,Gouesnach - Finistère,38924,observation-9ce4fdbf-0e72-459e-9905-67dbadd0a15e,https://biolit.fr/observations/observation-9ce4fdbf-0e72-459e-9905-67dbadd0a15e/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190614_121859.jpg,,TRUE, +N1,59172,sortie-9ce4fdbf-0e72-459e-9905-67dbadd0a15e,https://biolit.fr/sorties/sortie-9ce4fdbf-0e72-459e-9905-67dbadd0a15e/,Phil,,6/14/2019 0:00,12.0:15,12.0000000,47.892435000000,-4.128482000000,,Gouesnach - Finistère,38926,observation-9ce4fdbf-0e72-459e-9905-67dbadd0a15e-2,https://biolit.fr/observations/observation-9ce4fdbf-0e72-459e-9905-67dbadd0a15e-2/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190614_121853.jpg,,TRUE, +N1,59172,sortie-9ce4fdbf-0e72-459e-9905-67dbadd0a15e,https://biolit.fr/sorties/sortie-9ce4fdbf-0e72-459e-9905-67dbadd0a15e/,Phil,,6/14/2019 0:00,12.0:15,12.0000000,47.892435000000,-4.128482000000,,Gouesnach - Finistère,38928,observation-9ce4fdbf-0e72-459e-9905-67dbadd0a15e-3,https://biolit.fr/observations/observation-9ce4fdbf-0e72-459e-9905-67dbadd0a15e-3/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190614_121706.jpg,,TRUE, +N1,59172,sortie-9ce4fdbf-0e72-459e-9905-67dbadd0a15e,https://biolit.fr/sorties/sortie-9ce4fdbf-0e72-459e-9905-67dbadd0a15e/,Phil,,6/14/2019 0:00,12.0:15,12.0000000,47.892435000000,-4.128482000000,,Gouesnach - Finistère,38930,observation-9ce4fdbf-0e72-459e-9905-67dbadd0a15e-4,https://biolit.fr/observations/observation-9ce4fdbf-0e72-459e-9905-67dbadd0a15e-4/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190614_121702.jpg,,TRUE, +N1,59172,sortie-9ce4fdbf-0e72-459e-9905-67dbadd0a15e,https://biolit.fr/sorties/sortie-9ce4fdbf-0e72-459e-9905-67dbadd0a15e/,Phil,,6/14/2019 0:00,12.0:15,12.0000000,47.892435000000,-4.128482000000,,Gouesnach - Finistère,38932,observation-9ce4fdbf-0e72-459e-9905-67dbadd0a15e-5,https://biolit.fr/observations/observation-9ce4fdbf-0e72-459e-9905-67dbadd0a15e-5/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20190614_121653_0.jpg,,TRUE, +N1,59173,sortie-76bd9a32-0b91-433f-bb0f-d19450419270,https://biolit.fr/sorties/sortie-76bd9a32-0b91-433f-bb0f-d19450419270/,Phil,,05/05/2019,14.0000000,14.0:25,47.80032500000,-4.183561000000,,Loctudy - Finistère,38934,observation-76bd9a32-0b91-433f-bb0f-d19450419270,https://biolit.fr/observations/observation-76bd9a32-0b91-433f-bb0f-d19450419270/,Carpobrotus acinaciformis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/20190505_142400.jpg,,TRUE, +N1,59173,sortie-76bd9a32-0b91-433f-bb0f-d19450419270,https://biolit.fr/sorties/sortie-76bd9a32-0b91-433f-bb0f-d19450419270/,Phil,,05/05/2019,14.0000000,14.0:25,47.80032500000,-4.183561000000,,Loctudy - Finistère,38936,observation-76bd9a32-0b91-433f-bb0f-d19450419270-2,https://biolit.fr/observations/observation-76bd9a32-0b91-433f-bb0f-d19450419270-2/,Carpobrotus acinaciformis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/20190505_142423.jpg,,TRUE, +N1,59173,sortie-76bd9a32-0b91-433f-bb0f-d19450419270,https://biolit.fr/sorties/sortie-76bd9a32-0b91-433f-bb0f-d19450419270/,Phil,,05/05/2019,14.0000000,14.0:25,47.80032500000,-4.183561000000,,Loctudy - Finistère,38938,observation-76bd9a32-0b91-433f-bb0f-d19450419270-3,https://biolit.fr/observations/observation-76bd9a32-0b91-433f-bb0f-d19450419270-3/,Carpobrotus acinaciformis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/20190505_142426.jpg,,TRUE, +N1,59173,sortie-76bd9a32-0b91-433f-bb0f-d19450419270,https://biolit.fr/sorties/sortie-76bd9a32-0b91-433f-bb0f-d19450419270/,Phil,,05/05/2019,14.0000000,14.0:25,47.80032500000,-4.183561000000,,Loctudy - Finistère,38940,observation-76bd9a32-0b91-433f-bb0f-d19450419270-4,https://biolit.fr/observations/observation-76bd9a32-0b91-433f-bb0f-d19450419270-4/,Carpobrotus edulis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/20190505_142431.jpg,,TRUE, +N1,59174,sortie-ee6ef706-ea50-4372-bdd5-48fff99ac9c2,https://biolit.fr/sorties/sortie-ee6ef706-ea50-4372-bdd5-48fff99ac9c2/,Phil,,12/22/2019 0:00,17.0000000,17.0000000,47.801187000000,-4.182649000000,,Loctudy - Finistère,38942,observation-ee6ef706-ea50-4372-bdd5-48fff99ac9c2,https://biolit.fr/observations/observation-ee6ef706-ea50-4372-bdd5-48fff99ac9c2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191222_172704.jpg,,TRUE, +N1,59174,sortie-ee6ef706-ea50-4372-bdd5-48fff99ac9c2,https://biolit.fr/sorties/sortie-ee6ef706-ea50-4372-bdd5-48fff99ac9c2/,Phil,,12/22/2019 0:00,17.0000000,17.0000000,47.801187000000,-4.182649000000,,Loctudy - Finistère,38944,observation-ee6ef706-ea50-4372-bdd5-48fff99ac9c2-2,https://biolit.fr/observations/observation-ee6ef706-ea50-4372-bdd5-48fff99ac9c2-2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191222_172814.jpg,,TRUE, +N1,59174,sortie-ee6ef706-ea50-4372-bdd5-48fff99ac9c2,https://biolit.fr/sorties/sortie-ee6ef706-ea50-4372-bdd5-48fff99ac9c2/,Phil,,12/22/2019 0:00,17.0000000,17.0000000,47.801187000000,-4.182649000000,,Loctudy - Finistère,38946,observation-ee6ef706-ea50-4372-bdd5-48fff99ac9c2-3,https://biolit.fr/observations/observation-ee6ef706-ea50-4372-bdd5-48fff99ac9c2-3/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191222_172921.jpg,,TRUE, +N1,59174,sortie-ee6ef706-ea50-4372-bdd5-48fff99ac9c2,https://biolit.fr/sorties/sortie-ee6ef706-ea50-4372-bdd5-48fff99ac9c2/,Phil,,12/22/2019 0:00,17.0000000,17.0000000,47.801187000000,-4.182649000000,,Loctudy - Finistère,38948,observation-ee6ef706-ea50-4372-bdd5-48fff99ac9c2-4,https://biolit.fr/observations/observation-ee6ef706-ea50-4372-bdd5-48fff99ac9c2-4/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191222_173004.jpg,,TRUE, +N1,59174,sortie-ee6ef706-ea50-4372-bdd5-48fff99ac9c2,https://biolit.fr/sorties/sortie-ee6ef706-ea50-4372-bdd5-48fff99ac9c2/,Phil,,12/22/2019 0:00,17.0000000,17.0000000,47.801187000000,-4.182649000000,,Loctudy - Finistère,38950,observation-ee6ef706-ea50-4372-bdd5-48fff99ac9c2-5,https://biolit.fr/observations/observation-ee6ef706-ea50-4372-bdd5-48fff99ac9c2-5/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191222_172935.jpg,,TRUE, +N1,59175,sortie-0c7fefc2-35c5-40a4-a159-c66166499c99,https://biolit.fr/sorties/sortie-0c7fefc2-35c5-40a4-a159-c66166499c99/,Phil,,5/19/2019 0:00,13.0:15,13.0:25,47.800988000000,-4.180901000000,,Loctudy - Finistère,38952,observation-0c7fefc2-35c5-40a4-a159-c66166499c99,https://biolit.fr/observations/observation-0c7fefc2-35c5-40a4-a159-c66166499c99/,Saccharina latissima,Laminaire sucrée,,https://biolit.fr/wp-content/uploads/2023/07/20190519_131711.jpg,,TRUE, +N1,59175,sortie-0c7fefc2-35c5-40a4-a159-c66166499c99,https://biolit.fr/sorties/sortie-0c7fefc2-35c5-40a4-a159-c66166499c99/,Phil,,5/19/2019 0:00,13.0:15,13.0:25,47.800988000000,-4.180901000000,,Loctudy - Finistère,38954,observation-0c7fefc2-35c5-40a4-a159-c66166499c99-2,https://biolit.fr/observations/observation-0c7fefc2-35c5-40a4-a159-c66166499c99-2/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/20190519_131844.jpg,,TRUE, +N1,59175,sortie-0c7fefc2-35c5-40a4-a159-c66166499c99,https://biolit.fr/sorties/sortie-0c7fefc2-35c5-40a4-a159-c66166499c99/,Phil,,5/19/2019 0:00,13.0:15,13.0:25,47.800988000000,-4.180901000000,,Loctudy - Finistère,38956,observation-0c7fefc2-35c5-40a4-a159-c66166499c99-3,https://biolit.fr/observations/observation-0c7fefc2-35c5-40a4-a159-c66166499c99-3/,Labrus bergylta,Grande vieille,,https://biolit.fr/wp-content/uploads/2023/07/20190519_132408.jpg,,TRUE, +N1,59175,sortie-0c7fefc2-35c5-40a4-a159-c66166499c99,https://biolit.fr/sorties/sortie-0c7fefc2-35c5-40a4-a159-c66166499c99/,Phil,,5/19/2019 0:00,13.0:15,13.0:25,47.800988000000,-4.180901000000,,Loctudy - Finistère,38958,observation-0c7fefc2-35c5-40a4-a159-c66166499c99-4,https://biolit.fr/observations/observation-0c7fefc2-35c5-40a4-a159-c66166499c99-4/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20190519_132604.jpg,,TRUE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38960,observation-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900/,,,,https://biolit.fr/wp-content/uploads/2023/07/81992507_2789335301087059_2049962159231729664_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38962,observation-6917fad3-bd81-47bc-853d-369be3b19900-2,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/81843883_592519731537363_5105247154524389376_n_0-scaled.jpg,,TRUE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38964,observation-6917fad3-bd81-47bc-853d-369be3b19900-3,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/81998073_875845979536772_4955752395356241920_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38966,observation-6917fad3-bd81-47bc-853d-369be3b19900-4,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/82030007_799654277112176_5408546367599542272_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38968,observation-6917fad3-bd81-47bc-853d-369be3b19900-5,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/82109252_872767053141330_4760168810286153728_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38970,observation-6917fad3-bd81-47bc-853d-369be3b19900-6,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/82130892_506910286608933_6589282926523842560_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38974,observation-6917fad3-bd81-47bc-853d-369be3b19900-8,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/82193981_487760182166972_3224230621962305536_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38976,observation-6917fad3-bd81-47bc-853d-369be3b19900-9,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/82253700_483720765621182_7415341833468772352_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38978,observation-6917fad3-bd81-47bc-853d-369be3b19900-10,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-10/,Bolinus brandaris,Murex épineux,,https://biolit.fr/wp-content/uploads/2023/07/82276430_2644558882265498_5398546979359817728_n-scaled.jpg,,TRUE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38980,observation-6917fad3-bd81-47bc-853d-369be3b19900-11,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-11/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/82307862_461817248061839_1547819433664184320_n-scaled.jpg,,TRUE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38982,observation-6917fad3-bd81-47bc-853d-369be3b19900-12,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/82310955_475054566760133_2353000912605151232_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38984,observation-6917fad3-bd81-47bc-853d-369be3b19900-13,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/82369126_504917760158886_4504217737588899840_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38986,observation-6917fad3-bd81-47bc-853d-369be3b19900-14,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-14/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/82391816_605331680033047_2339803972753162240_n-scaled.jpg,,TRUE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38988,observation-6917fad3-bd81-47bc-853d-369be3b19900-15,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-15/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/82452289_485276338803301_5031975450541293568_n-scaled.jpg,,TRUE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38990,observation-6917fad3-bd81-47bc-853d-369be3b19900-16,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/82464479_598026660993471_529599059921469440_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38992,observation-6917fad3-bd81-47bc-853d-369be3b19900-17,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/82493890_2497626257167032_6762065337673318400_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38994,observation-6917fad3-bd81-47bc-853d-369be3b19900-18,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/82544205_477081546566631_20949184022577152_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38996,observation-6917fad3-bd81-47bc-853d-369be3b19900-19,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/82558763_658595214682011_6140974377606316032_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38998,observation-6917fad3-bd81-47bc-853d-369be3b19900-20,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/82584335_631151437689092_3185936444443066368_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",39000,observation-6917fad3-bd81-47bc-853d-369be3b19900-21,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/82591782_560612204525381_8893346526491836416_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",39002,observation-6917fad3-bd81-47bc-853d-369be3b19900-22,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-22/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/2023/07/82645872_2967941209897101_3630600082249744384_n-scaled.jpg,,TRUE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",39008,observation-6917fad3-bd81-47bc-853d-369be3b19900-25,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/82799886_509977449876617_2300317138650398720_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",39010,observation-6917fad3-bd81-47bc-853d-369be3b19900-26,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/82816580_483069425978991_7777151063894786048_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",39012,observation-6917fad3-bd81-47bc-853d-369be3b19900-27,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-27/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/82929335_2501877469934679_8557505793618870272_n-scaled.jpg,,TRUE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",39014,observation-6917fad3-bd81-47bc-853d-369be3b19900-28,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/83044424_795187097628446_3232907628426297344_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",39018,observation-6917fad3-bd81-47bc-853d-369be3b19900-30,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/83099295_865648503894985_1989876713516957696_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",39022,observation-6917fad3-bd81-47bc-853d-369be3b19900-32,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-32/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/83729512_2608648482516624_3237094950956957696_n-scaled.jpg,,TRUE, +N1,59177,sortie-fcbecf70-07a8-46ea-abcf-d28e7e2fc159,https://biolit.fr/sorties/sortie-fcbecf70-07a8-46ea-abcf-d28e7e2fc159/,Phil,,12/26/2019 0:00,11.0000000,11.0:55,47.889938000000,-3.974034000000,,Fouesnant - Finistère,39024,observation-fcbecf70-07a8-46ea-abcf-d28e7e2fc159,https://biolit.fr/observations/observation-fcbecf70-07a8-46ea-abcf-d28e7e2fc159/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20191226_115325.jpg,,TRUE, +N1,59177,sortie-fcbecf70-07a8-46ea-abcf-d28e7e2fc159,https://biolit.fr/sorties/sortie-fcbecf70-07a8-46ea-abcf-d28e7e2fc159/,Phil,,12/26/2019 0:00,11.0000000,11.0:55,47.889938000000,-3.974034000000,,Fouesnant - Finistère,39026,observation-fcbecf70-07a8-46ea-abcf-d28e7e2fc159-2,https://biolit.fr/observations/observation-fcbecf70-07a8-46ea-abcf-d28e7e2fc159-2/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20191226_115439.jpg,,TRUE, +N1,59177,sortie-fcbecf70-07a8-46ea-abcf-d28e7e2fc159,https://biolit.fr/sorties/sortie-fcbecf70-07a8-46ea-abcf-d28e7e2fc159/,Phil,,12/26/2019 0:00,11.0000000,11.0:55,47.889938000000,-3.974034000000,,Fouesnant - Finistère,39028,observation-fcbecf70-07a8-46ea-abcf-d28e7e2fc159-3,https://biolit.fr/observations/observation-fcbecf70-07a8-46ea-abcf-d28e7e2fc159-3/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20191226_115455.jpg,,TRUE, +N1,59177,sortie-fcbecf70-07a8-46ea-abcf-d28e7e2fc159,https://biolit.fr/sorties/sortie-fcbecf70-07a8-46ea-abcf-d28e7e2fc159/,Phil,,12/26/2019 0:00,11.0000000,11.0:55,47.889938000000,-3.974034000000,,Fouesnant - Finistère,39030,observation-fcbecf70-07a8-46ea-abcf-d28e7e2fc159-4,https://biolit.fr/observations/observation-fcbecf70-07a8-46ea-abcf-d28e7e2fc159-4/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/20191226_115212-scaled.jpg,,TRUE, +N1,59177,sortie-fcbecf70-07a8-46ea-abcf-d28e7e2fc159,https://biolit.fr/sorties/sortie-fcbecf70-07a8-46ea-abcf-d28e7e2fc159/,Phil,,12/26/2019 0:00,11.0000000,11.0:55,47.889938000000,-3.974034000000,,Fouesnant - Finistère,39032,observation-fcbecf70-07a8-46ea-abcf-d28e7e2fc159-5,https://biolit.fr/observations/observation-fcbecf70-07a8-46ea-abcf-d28e7e2fc159-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191226_115340-scaled.jpg,,FALSE, +N1,59178,sortie-92368020-5f5f-4562-9f43-3886a0182ad7,https://biolit.fr/sorties/sortie-92368020-5f5f-4562-9f43-3886a0182ad7/,Phil,,01/10/2020,13.0000000,14.0000000,47.791886000000,-4.287268000000,,Guilvinec - Finistère,39034,observation-92368020-5f5f-4562-9f43-3886a0182ad7,https://biolit.fr/observations/observation-92368020-5f5f-4562-9f43-3886a0182ad7/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200110_135715.jpg,,TRUE, +N1,59178,sortie-92368020-5f5f-4562-9f43-3886a0182ad7,https://biolit.fr/sorties/sortie-92368020-5f5f-4562-9f43-3886a0182ad7/,Phil,,01/10/2020,13.0000000,14.0000000,47.791886000000,-4.287268000000,,Guilvinec - Finistère,39036,observation-92368020-5f5f-4562-9f43-3886a0182ad7-2,https://biolit.fr/observations/observation-92368020-5f5f-4562-9f43-3886a0182ad7-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200110_135838.jpg,,TRUE, +N1,59178,sortie-92368020-5f5f-4562-9f43-3886a0182ad7,https://biolit.fr/sorties/sortie-92368020-5f5f-4562-9f43-3886a0182ad7/,Phil,,01/10/2020,13.0000000,14.0000000,47.791886000000,-4.287268000000,,Guilvinec - Finistère,39038,observation-92368020-5f5f-4562-9f43-3886a0182ad7-3,https://biolit.fr/observations/observation-92368020-5f5f-4562-9f43-3886a0182ad7-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200110_135852.jpg,,TRUE, +N1,59178,sortie-92368020-5f5f-4562-9f43-3886a0182ad7,https://biolit.fr/sorties/sortie-92368020-5f5f-4562-9f43-3886a0182ad7/,Phil,,01/10/2020,13.0000000,14.0000000,47.791886000000,-4.287268000000,,Guilvinec - Finistère,39040,observation-92368020-5f5f-4562-9f43-3886a0182ad7-4,https://biolit.fr/observations/observation-92368020-5f5f-4562-9f43-3886a0182ad7-4/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200110_135919.jpg,,TRUE, +N1,59178,sortie-92368020-5f5f-4562-9f43-3886a0182ad7,https://biolit.fr/sorties/sortie-92368020-5f5f-4562-9f43-3886a0182ad7/,Phil,,01/10/2020,13.0000000,14.0000000,47.791886000000,-4.287268000000,,Guilvinec - Finistère,39042,observation-92368020-5f5f-4562-9f43-3886a0182ad7-5,https://biolit.fr/observations/observation-92368020-5f5f-4562-9f43-3886a0182ad7-5/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200110_140106.jpg,,TRUE, +N1,59179,sortie-97644655-1408-4db6-9c44-06d433ebb572,https://biolit.fr/sorties/sortie-97644655-1408-4db6-9c44-06d433ebb572/,corlazo,,01/12/2020,16.0000000,18.0000000,47.363117000000,-2.527774000000,,"Piriac sur mer, plage de port Nabé + plages de Piriac orientées sud-ouest ",39044,observation-97644655-1408-4db6-9c44-06d433ebb572,https://biolit.fr/observations/observation-97644655-1408-4db6-9c44-06d433ebb572/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Vélèles et physalies.jpg,,TRUE, +N1,59180,sortie-f8a95221-489c-4c72-b650-897a0bdcdd7f,https://biolit.fr/sorties/sortie-f8a95221-489c-4c72-b650-897a0bdcdd7f/,michelGavres,,01/11/2020,10.0000000,12.0000000,47.695029000000,-3.343423000000,,gavres,39046,observation-f8a95221-489c-4c72-b650-897a0bdcdd7f,https://biolit.fr/observations/observation-f8a95221-489c-4c72-b650-897a0bdcdd7f/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/galere.png,,TRUE, +N1,59181,sortie-9b450bf4-def7-4cbc-a44e-5aa8d7c34c1c,https://biolit.fr/sorties/sortie-9b450bf4-def7-4cbc-a44e-5aa8d7c34c1c/,Phil,,11/16/2019 0:00,12.0000000,12.000005,48.06040200000,-4.671380000000,,Cléden-Cap-Sizun - Finistère,39048,observation-9b450bf4-def7-4cbc-a44e-5aa8d7c34c1c,https://biolit.fr/observations/observation-9b450bf4-def7-4cbc-a44e-5aa8d7c34c1c/,Uria aalge,Guillemot de Troïl,,https://biolit.fr/wp-content/uploads/2023/07/20191116_120113.jpg,,TRUE, +N1,59181,sortie-9b450bf4-def7-4cbc-a44e-5aa8d7c34c1c,https://biolit.fr/sorties/sortie-9b450bf4-def7-4cbc-a44e-5aa8d7c34c1c/,Phil,,11/16/2019 0:00,12.0000000,12.000005,48.06040200000,-4.671380000000,,Cléden-Cap-Sizun - Finistère,39050,observation-9b450bf4-def7-4cbc-a44e-5aa8d7c34c1c-2,https://biolit.fr/observations/observation-9b450bf4-def7-4cbc-a44e-5aa8d7c34c1c-2/,Uria aalge,Guillemot de Troïl,,https://biolit.fr/wp-content/uploads/2023/07/20191116_120119.jpg,,TRUE, +N1,59181,sortie-9b450bf4-def7-4cbc-a44e-5aa8d7c34c1c,https://biolit.fr/sorties/sortie-9b450bf4-def7-4cbc-a44e-5aa8d7c34c1c/,Phil,,11/16/2019 0:00,12.0000000,12.000005,48.06040200000,-4.671380000000,,Cléden-Cap-Sizun - Finistère,39052,observation-9b450bf4-def7-4cbc-a44e-5aa8d7c34c1c-3,https://biolit.fr/observations/observation-9b450bf4-def7-4cbc-a44e-5aa8d7c34c1c-3/,Uria aalge,Guillemot de Troïl,,https://biolit.fr/wp-content/uploads/2023/07/20191116_120502-scaled.jpg,,TRUE, +N1,59182,sortie-94833996-c4d2-466a-ae37-fc4084e90a75,https://biolit.fr/sorties/sortie-94833996-c4d2-466a-ae37-fc4084e90a75/,Roman,,01/11/2020,16.0000000,17.0000000,47.701604000000,-3.309906000000,,Riantec,39054,observation-94833996-c4d2-466a-ae37-fc4084e90a75,https://biolit.fr/observations/observation-94833996-c4d2-466a-ae37-fc4084e90a75/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/Lepas anatifera (1)-scaled.jpg,,TRUE, +N1,59182,sortie-94833996-c4d2-466a-ae37-fc4084e90a75,https://biolit.fr/sorties/sortie-94833996-c4d2-466a-ae37-fc4084e90a75/,Roman,,01/11/2020,16.0000000,17.0000000,47.701604000000,-3.309906000000,,Riantec,39056,observation-94833996-c4d2-466a-ae37-fc4084e90a75-2,https://biolit.fr/observations/observation-94833996-c4d2-466a-ae37-fc4084e90a75-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Velella velella_0.PNG,,TRUE, +N1,59183,sortie-4431d1bd-b0d4-43e1-96d0-7b704029fcff,https://biolit.fr/sorties/sortie-4431d1bd-b0d4-43e1-96d0-7b704029fcff/,Phil,,01/10/2020,13.0000000,13.0:55,47.792654000000,-4.286715000000,,Guilvinec - Finistère,39057,observation-4431d1bd-b0d4-43e1-96d0-7b704029fcff,https://biolit.fr/observations/observation-4431d1bd-b0d4-43e1-96d0-7b704029fcff/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200110_135001.jpg,,FALSE, +N1,59183,sortie-4431d1bd-b0d4-43e1-96d0-7b704029fcff,https://biolit.fr/sorties/sortie-4431d1bd-b0d4-43e1-96d0-7b704029fcff/,Phil,,01/10/2020,13.0000000,13.0:55,47.792654000000,-4.286715000000,,Guilvinec - Finistère,39059,observation-4431d1bd-b0d4-43e1-96d0-7b704029fcff-2,https://biolit.fr/observations/observation-4431d1bd-b0d4-43e1-96d0-7b704029fcff-2/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20200110_135030.jpg,,TRUE, +N1,59183,sortie-4431d1bd-b0d4-43e1-96d0-7b704029fcff,https://biolit.fr/sorties/sortie-4431d1bd-b0d4-43e1-96d0-7b704029fcff/,Phil,,01/10/2020,13.0000000,13.0:55,47.792654000000,-4.286715000000,,Guilvinec - Finistère,39061,observation-4431d1bd-b0d4-43e1-96d0-7b704029fcff-3,https://biolit.fr/observations/observation-4431d1bd-b0d4-43e1-96d0-7b704029fcff-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200110_135109.jpg,,FALSE, +N1,59183,sortie-4431d1bd-b0d4-43e1-96d0-7b704029fcff,https://biolit.fr/sorties/sortie-4431d1bd-b0d4-43e1-96d0-7b704029fcff/,Phil,,01/10/2020,13.0000000,13.0:55,47.792654000000,-4.286715000000,,Guilvinec - Finistère,39063,observation-4431d1bd-b0d4-43e1-96d0-7b704029fcff-4,https://biolit.fr/observations/observation-4431d1bd-b0d4-43e1-96d0-7b704029fcff-4/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/20200110_135323.jpg,,TRUE, +N1,59183,sortie-4431d1bd-b0d4-43e1-96d0-7b704029fcff,https://biolit.fr/sorties/sortie-4431d1bd-b0d4-43e1-96d0-7b704029fcff/,Phil,,01/10/2020,13.0000000,13.0:55,47.792654000000,-4.286715000000,,Guilvinec - Finistère,39065,observation-4431d1bd-b0d4-43e1-96d0-7b704029fcff-5,https://biolit.fr/observations/observation-4431d1bd-b0d4-43e1-96d0-7b704029fcff-5/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200110_135347.jpg,,TRUE, +N1,59183,sortie-4431d1bd-b0d4-43e1-96d0-7b704029fcff,https://biolit.fr/sorties/sortie-4431d1bd-b0d4-43e1-96d0-7b704029fcff/,Phil,,01/10/2020,13.0000000,13.0:55,47.792654000000,-4.286715000000,,Guilvinec - Finistère,39067,observation-4431d1bd-b0d4-43e1-96d0-7b704029fcff-6,https://biolit.fr/observations/observation-4431d1bd-b0d4-43e1-96d0-7b704029fcff-6/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200110_135351.jpg,,TRUE, +N1,59183,sortie-4431d1bd-b0d4-43e1-96d0-7b704029fcff,https://biolit.fr/sorties/sortie-4431d1bd-b0d4-43e1-96d0-7b704029fcff/,Phil,,01/10/2020,13.0000000,13.0:55,47.792654000000,-4.286715000000,,Guilvinec - Finistère,39069,observation-4431d1bd-b0d4-43e1-96d0-7b704029fcff-7,https://biolit.fr/observations/observation-4431d1bd-b0d4-43e1-96d0-7b704029fcff-7/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200110_135441.jpg,,TRUE, +N1,59184,sortie-4ca58226-8dc0-4543-b75e-4db2988fa03a,https://biolit.fr/sorties/sortie-4ca58226-8dc0-4543-b75e-4db2988fa03a/,Phil,,12/26/2019 0:00,11.0000000,12.0000000,47.889748000000,-3.973622000000,,Fouesnant - Finistère,39071,observation-4ca58226-8dc0-4543-b75e-4db2988fa03a,https://biolit.fr/observations/observation-4ca58226-8dc0-4543-b75e-4db2988fa03a/,Scyliorhinus canicula,Capsule de petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20191226_115116_1.jpg,,TRUE, +N1,59184,sortie-4ca58226-8dc0-4543-b75e-4db2988fa03a,https://biolit.fr/sorties/sortie-4ca58226-8dc0-4543-b75e-4db2988fa03a/,Phil,,12/26/2019 0:00,11.0000000,12.0000000,47.889748000000,-3.973622000000,,Fouesnant - Finistère,39073,observation-4ca58226-8dc0-4543-b75e-4db2988fa03a-2,https://biolit.fr/observations/observation-4ca58226-8dc0-4543-b75e-4db2988fa03a-2/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20191226_115056_0.jpg,,TRUE, +N1,59184,sortie-4ca58226-8dc0-4543-b75e-4db2988fa03a,https://biolit.fr/sorties/sortie-4ca58226-8dc0-4543-b75e-4db2988fa03a/,Phil,,12/26/2019 0:00,11.0000000,12.0000000,47.889748000000,-3.973622000000,,Fouesnant - Finistère,39075,observation-4ca58226-8dc0-4543-b75e-4db2988fa03a-3,https://biolit.fr/observations/observation-4ca58226-8dc0-4543-b75e-4db2988fa03a-3/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20191226_115714.jpg,,TRUE, +N1,59184,sortie-4ca58226-8dc0-4543-b75e-4db2988fa03a,https://biolit.fr/sorties/sortie-4ca58226-8dc0-4543-b75e-4db2988fa03a/,Phil,,12/26/2019 0:00,11.0000000,12.0000000,47.889748000000,-3.973622000000,,Fouesnant - Finistère,39077,observation-4ca58226-8dc0-4543-b75e-4db2988fa03a-4,https://biolit.fr/observations/observation-4ca58226-8dc0-4543-b75e-4db2988fa03a-4/,Scyliorhinus canicula,Capsule de petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20191226_120245.jpg,,TRUE, +N1,59184,sortie-4ca58226-8dc0-4543-b75e-4db2988fa03a,https://biolit.fr/sorties/sortie-4ca58226-8dc0-4543-b75e-4db2988fa03a/,Phil,,12/26/2019 0:00,11.0000000,12.0000000,47.889748000000,-3.973622000000,,Fouesnant - Finistère,39079,observation-4ca58226-8dc0-4543-b75e-4db2988fa03a-5,https://biolit.fr/observations/observation-4ca58226-8dc0-4543-b75e-4db2988fa03a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191226_114916.jpg,,FALSE, +N1,59184,sortie-4ca58226-8dc0-4543-b75e-4db2988fa03a,https://biolit.fr/sorties/sortie-4ca58226-8dc0-4543-b75e-4db2988fa03a/,Phil,,12/26/2019 0:00,11.0000000,12.0000000,47.889748000000,-3.973622000000,,Fouesnant - Finistère,39081,observation-4ca58226-8dc0-4543-b75e-4db2988fa03a-6,https://biolit.fr/observations/observation-4ca58226-8dc0-4543-b75e-4db2988fa03a-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191226_114941.jpg,,FALSE, +N1,59184,sortie-4ca58226-8dc0-4543-b75e-4db2988fa03a,https://biolit.fr/sorties/sortie-4ca58226-8dc0-4543-b75e-4db2988fa03a/,Phil,,12/26/2019 0:00,11.0000000,12.0000000,47.889748000000,-3.973622000000,,Fouesnant - Finistère,39083,observation-4ca58226-8dc0-4543-b75e-4db2988fa03a-7,https://biolit.fr/observations/observation-4ca58226-8dc0-4543-b75e-4db2988fa03a-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191226_114949.jpg,,FALSE, +N1,59184,sortie-4ca58226-8dc0-4543-b75e-4db2988fa03a,https://biolit.fr/sorties/sortie-4ca58226-8dc0-4543-b75e-4db2988fa03a/,Phil,,12/26/2019 0:00,11.0000000,12.0000000,47.889748000000,-3.973622000000,,Fouesnant - Finistère,39085,observation-4ca58226-8dc0-4543-b75e-4db2988fa03a-8,https://biolit.fr/observations/observation-4ca58226-8dc0-4543-b75e-4db2988fa03a-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191226_115025.jpg,,FALSE, +N1,59185,sortie-a14eb64b-5374-4e21-8fc6-f5ec2b88147e,https://biolit.fr/sorties/sortie-a14eb64b-5374-4e21-8fc6-f5ec2b88147e/,Phil,,01/09/2020,15.0000000,15.0:55,47.854363000000,-3.980422000000,,Fouesnant - Finistère,39087,observation-a14eb64b-5374-4e21-8fc6-f5ec2b88147e,https://biolit.fr/observations/observation-a14eb64b-5374-4e21-8fc6-f5ec2b88147e/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200109_155302.jpg,,TRUE, +N1,59185,sortie-a14eb64b-5374-4e21-8fc6-f5ec2b88147e,https://biolit.fr/sorties/sortie-a14eb64b-5374-4e21-8fc6-f5ec2b88147e/,Phil,,01/09/2020,15.0000000,15.0:55,47.854363000000,-3.980422000000,,Fouesnant - Finistère,39089,observation-a14eb64b-5374-4e21-8fc6-f5ec2b88147e-2,https://biolit.fr/observations/observation-a14eb64b-5374-4e21-8fc6-f5ec2b88147e-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200109_155155.jpg,,TRUE, +N1,59185,sortie-a14eb64b-5374-4e21-8fc6-f5ec2b88147e,https://biolit.fr/sorties/sortie-a14eb64b-5374-4e21-8fc6-f5ec2b88147e/,Phil,,01/09/2020,15.0000000,15.0:55,47.854363000000,-3.980422000000,,Fouesnant - Finistère,39091,observation-a14eb64b-5374-4e21-8fc6-f5ec2b88147e-3,https://biolit.fr/observations/observation-a14eb64b-5374-4e21-8fc6-f5ec2b88147e-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200109_155126.jpg,,TRUE, +N1,59185,sortie-a14eb64b-5374-4e21-8fc6-f5ec2b88147e,https://biolit.fr/sorties/sortie-a14eb64b-5374-4e21-8fc6-f5ec2b88147e/,Phil,,01/09/2020,15.0000000,15.0:55,47.854363000000,-3.980422000000,,Fouesnant - Finistère,39093,observation-a14eb64b-5374-4e21-8fc6-f5ec2b88147e-4,https://biolit.fr/observations/observation-a14eb64b-5374-4e21-8fc6-f5ec2b88147e-4/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200109_155101.jpg,,TRUE, +N1,59185,sortie-a14eb64b-5374-4e21-8fc6-f5ec2b88147e,https://biolit.fr/sorties/sortie-a14eb64b-5374-4e21-8fc6-f5ec2b88147e/,Phil,,01/09/2020,15.0000000,15.0:55,47.854363000000,-3.980422000000,,Fouesnant - Finistère,39095,observation-a14eb64b-5374-4e21-8fc6-f5ec2b88147e-5,https://biolit.fr/observations/observation-a14eb64b-5374-4e21-8fc6-f5ec2b88147e-5/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200109_155027.jpg,,TRUE, +N1,59185,sortie-a14eb64b-5374-4e21-8fc6-f5ec2b88147e,https://biolit.fr/sorties/sortie-a14eb64b-5374-4e21-8fc6-f5ec2b88147e/,Phil,,01/09/2020,15.0000000,15.0:55,47.854363000000,-3.980422000000,,Fouesnant - Finistère,39097,observation-a14eb64b-5374-4e21-8fc6-f5ec2b88147e-6,https://biolit.fr/observations/observation-a14eb64b-5374-4e21-8fc6-f5ec2b88147e-6/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200109_155020.jpg,,TRUE, +N1,59186,sortie-ac48a5d9-436b-448f-b535-6925b3038792,https://biolit.fr/sorties/sortie-ac48a5d9-436b-448f-b535-6925b3038792/,Roman,,01/08/2020,15.0000000,15.0000000,47.687789000000,-3.295808000000,,Gâvres,39099,observation-ac48a5d9-436b-448f-b535-6925b3038792,https://biolit.fr/observations/observation-ac48a5d9-436b-448f-b535-6925b3038792/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/Oeuf de raie.PNG,,TRUE, +N1,59186,sortie-ac48a5d9-436b-448f-b535-6925b3038792,https://biolit.fr/sorties/sortie-ac48a5d9-436b-448f-b535-6925b3038792/,Roman,,01/08/2020,15.0000000,15.0000000,47.687789000000,-3.295808000000,,Gâvres,39100,observation-ac48a5d9-436b-448f-b535-6925b3038792-2,https://biolit.fr/observations/observation-ac48a5d9-436b-448f-b535-6925b3038792-2/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/Oeuf de roussette.PNG,,TRUE, +N1,59186,sortie-ac48a5d9-436b-448f-b535-6925b3038792,https://biolit.fr/sorties/sortie-ac48a5d9-436b-448f-b535-6925b3038792/,Roman,,01/08/2020,15.0000000,15.0000000,47.687789000000,-3.295808000000,,Gâvres,39101,observation-ac48a5d9-436b-448f-b535-6925b3038792-3,https://biolit.fr/observations/observation-ac48a5d9-436b-448f-b535-6925b3038792-3/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/physalie1.PNG,,TRUE, +N1,59186,sortie-ac48a5d9-436b-448f-b535-6925b3038792,https://biolit.fr/sorties/sortie-ac48a5d9-436b-448f-b535-6925b3038792/,Roman,,01/08/2020,15.0000000,15.0000000,47.687789000000,-3.295808000000,,Gâvres,39103,observation-ac48a5d9-436b-448f-b535-6925b3038792-4,https://biolit.fr/observations/observation-ac48a5d9-436b-448f-b535-6925b3038792-4/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Velella velella3.PNG,,TRUE, +N1,59187,sortie-5494f096-e253-4787-ac6d-8f05e8ec926e,https://biolit.fr/sorties/sortie-5494f096-e253-4787-ac6d-8f05e8ec926e/,Phil,,5/19/2019 0:00,13.0000000,13.0000000,47.800510000000,-4.180435000000,,Loctudy - Finistère,39105,observation-5494f096-e253-4787-ac6d-8f05e8ec926e,https://biolit.fr/observations/observation-5494f096-e253-4787-ac6d-8f05e8ec926e/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190519_130117.jpg,,TRUE, +N1,59187,sortie-5494f096-e253-4787-ac6d-8f05e8ec926e,https://biolit.fr/sorties/sortie-5494f096-e253-4787-ac6d-8f05e8ec926e/,Phil,,5/19/2019 0:00,13.0000000,13.0000000,47.800510000000,-4.180435000000,,Loctudy - Finistère,39107,observation-5494f096-e253-4787-ac6d-8f05e8ec926e-2,https://biolit.fr/observations/observation-5494f096-e253-4787-ac6d-8f05e8ec926e-2/,Ocenebra erinaceus,Ponte de Bigorneau perceur,,https://biolit.fr/wp-content/uploads/2023/07/20190519_130131.jpg,,TRUE, +N1,59187,sortie-5494f096-e253-4787-ac6d-8f05e8ec926e,https://biolit.fr/sorties/sortie-5494f096-e253-4787-ac6d-8f05e8ec926e/,Phil,,5/19/2019 0:00,13.0000000,13.0000000,47.800510000000,-4.180435000000,,Loctudy - Finistère,39109,observation-5494f096-e253-4787-ac6d-8f05e8ec926e-3,https://biolit.fr/observations/observation-5494f096-e253-4787-ac6d-8f05e8ec926e-3/,Ocenebra erinaceus,Ponte de Bigorneau perceur,,https://biolit.fr/wp-content/uploads/2023/07/20190519_130124.jpg,,TRUE, +N1,59187,sortie-5494f096-e253-4787-ac6d-8f05e8ec926e,https://biolit.fr/sorties/sortie-5494f096-e253-4787-ac6d-8f05e8ec926e/,Phil,,5/19/2019 0:00,13.0000000,13.0000000,47.800510000000,-4.180435000000,,Loctudy - Finistère,39111,observation-5494f096-e253-4787-ac6d-8f05e8ec926e-4,https://biolit.fr/observations/observation-5494f096-e253-4787-ac6d-8f05e8ec926e-4/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190519_130229.jpg,,TRUE, +N1,59187,sortie-5494f096-e253-4787-ac6d-8f05e8ec926e,https://biolit.fr/sorties/sortie-5494f096-e253-4787-ac6d-8f05e8ec926e/,Phil,,5/19/2019 0:00,13.0000000,13.0000000,47.800510000000,-4.180435000000,,Loctudy - Finistère,39113,observation-5494f096-e253-4787-ac6d-8f05e8ec926e-5,https://biolit.fr/observations/observation-5494f096-e253-4787-ac6d-8f05e8ec926e-5/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190519_130241.jpg,,TRUE, +N1,59187,sortie-5494f096-e253-4787-ac6d-8f05e8ec926e,https://biolit.fr/sorties/sortie-5494f096-e253-4787-ac6d-8f05e8ec926e/,Phil,,5/19/2019 0:00,13.0000000,13.0000000,47.800510000000,-4.180435000000,,Loctudy - Finistère,39115,observation-5494f096-e253-4787-ac6d-8f05e8ec926e-6,https://biolit.fr/observations/observation-5494f096-e253-4787-ac6d-8f05e8ec926e-6/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20190519_130251.jpg,,TRUE, +N1,59187,sortie-5494f096-e253-4787-ac6d-8f05e8ec926e,https://biolit.fr/sorties/sortie-5494f096-e253-4787-ac6d-8f05e8ec926e/,Phil,,5/19/2019 0:00,13.0000000,13.0000000,47.800510000000,-4.180435000000,,Loctudy - Finistère,39117,observation-5494f096-e253-4787-ac6d-8f05e8ec926e-7,https://biolit.fr/observations/observation-5494f096-e253-4787-ac6d-8f05e8ec926e-7/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190519_130300.jpg,,TRUE, +N1,59188,sortie-59d7f257-802c-451f-8b4f-1186a7ae6c62,https://biolit.fr/sorties/sortie-59d7f257-802c-451f-8b4f-1186a7ae6c62/,Phil,,01/06/2020,12.0000000,12.0:15,47.861173000000,-3.983818000000,,Fouesnant - Finistère,39119,observation-59d7f257-802c-451f-8b4f-1186a7ae6c62,https://biolit.fr/observations/observation-59d7f257-802c-451f-8b4f-1186a7ae6c62/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200106_121045.jpg,,TRUE, +N1,59188,sortie-59d7f257-802c-451f-8b4f-1186a7ae6c62,https://biolit.fr/sorties/sortie-59d7f257-802c-451f-8b4f-1186a7ae6c62/,Phil,,01/06/2020,12.0000000,12.0:15,47.861173000000,-3.983818000000,,Fouesnant - Finistère,39121,observation-59d7f257-802c-451f-8b4f-1186a7ae6c62-2,https://biolit.fr/observations/observation-59d7f257-802c-451f-8b4f-1186a7ae6c62-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200106_121105.jpg,,TRUE, +N1,59188,sortie-59d7f257-802c-451f-8b4f-1186a7ae6c62,https://biolit.fr/sorties/sortie-59d7f257-802c-451f-8b4f-1186a7ae6c62/,Phil,,01/06/2020,12.0000000,12.0:15,47.861173000000,-3.983818000000,,Fouesnant - Finistère,39123,observation-59d7f257-802c-451f-8b4f-1186a7ae6c62-3,https://biolit.fr/observations/observation-59d7f257-802c-451f-8b4f-1186a7ae6c62-3/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200106_121210.jpg,,TRUE, +N1,59188,sortie-59d7f257-802c-451f-8b4f-1186a7ae6c62,https://biolit.fr/sorties/sortie-59d7f257-802c-451f-8b4f-1186a7ae6c62/,Phil,,01/06/2020,12.0000000,12.0:15,47.861173000000,-3.983818000000,,Fouesnant - Finistère,39125,observation-59d7f257-802c-451f-8b4f-1186a7ae6c62-4,https://biolit.fr/observations/observation-59d7f257-802c-451f-8b4f-1186a7ae6c62-4/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200106_120935.jpg,,TRUE, +N1,59188,sortie-59d7f257-802c-451f-8b4f-1186a7ae6c62,https://biolit.fr/sorties/sortie-59d7f257-802c-451f-8b4f-1186a7ae6c62/,Phil,,01/06/2020,12.0000000,12.0:15,47.861173000000,-3.983818000000,,Fouesnant - Finistère,39127,observation-59d7f257-802c-451f-8b4f-1186a7ae6c62-5,https://biolit.fr/observations/observation-59d7f257-802c-451f-8b4f-1186a7ae6c62-5/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200106_120948.jpg,,TRUE, +N1,59188,sortie-59d7f257-802c-451f-8b4f-1186a7ae6c62,https://biolit.fr/sorties/sortie-59d7f257-802c-451f-8b4f-1186a7ae6c62/,Phil,,01/06/2020,12.0000000,12.0:15,47.861173000000,-3.983818000000,,Fouesnant - Finistère,39129,observation-59d7f257-802c-451f-8b4f-1186a7ae6c62-6,https://biolit.fr/observations/observation-59d7f257-802c-451f-8b4f-1186a7ae6c62-6/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200106_121448.jpg,,TRUE, +N1,59189,sortie-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/sorties/sortie-20e82ee6-9311-412a-a754-b70dbf69089f/,Roman,,01/05/2020,16.0:15,17.0000000,47.704860000000,-3.356850000000,,Port-Louis,39131,observation-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/observations/observation-20e82ee6-9311-412a-a754-b70dbf69089f/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/actinia equina1.PNG,,TRUE, +N1,59189,sortie-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/sorties/sortie-20e82ee6-9311-412a-a754-b70dbf69089f/,Roman,,01/05/2020,16.0:15,17.0000000,47.704860000000,-3.356850000000,,Port-Louis,39133,observation-20e82ee6-9311-412a-a754-b70dbf69089f-2,https://biolit.fr/observations/observation-20e82ee6-9311-412a-a754-b70dbf69089f-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/actinia fragacea1.PNG,,TRUE, +N1,59189,sortie-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/sorties/sortie-20e82ee6-9311-412a-a754-b70dbf69089f/,Roman,,01/05/2020,16.0:15,17.0000000,47.704860000000,-3.356850000000,,Port-Louis,39135,observation-20e82ee6-9311-412a-a754-b70dbf69089f-3,https://biolit.fr/observations/observation-20e82ee6-9311-412a-a754-b70dbf69089f-3/,Aeolidia filomenae,Eolis de Filomène,,https://biolit.fr/wp-content/uploads/2023/07/Aeolidia papillosa.PNG,,TRUE, +N1,59189,sortie-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/sorties/sortie-20e82ee6-9311-412a-a754-b70dbf69089f/,Roman,,01/05/2020,16.0:15,17.0000000,47.704860000000,-3.356850000000,,Port-Louis,39137,observation-20e82ee6-9311-412a-a754-b70dbf69089f-4,https://biolit.fr/observations/observation-20e82ee6-9311-412a-a754-b70dbf69089f-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/anemonia viridis1.PNG,,TRUE, +N1,59189,sortie-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/sorties/sortie-20e82ee6-9311-412a-a754-b70dbf69089f/,Roman,,01/05/2020,16.0:15,17.0000000,47.704860000000,-3.356850000000,,Port-Louis,39139,observation-20e82ee6-9311-412a-a754-b70dbf69089f-5,https://biolit.fr/observations/observation-20e82ee6-9311-412a-a754-b70dbf69089f-5/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/Aulactinia verrucosa.PNG,,TRUE, +N1,59189,sortie-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/sorties/sortie-20e82ee6-9311-412a-a754-b70dbf69089f/,Roman,,01/05/2020,16.0:15,17.0000000,47.704860000000,-3.356850000000,,Port-Louis,39140,observation-20e82ee6-9311-412a-a754-b70dbf69089f-6,https://biolit.fr/observations/observation-20e82ee6-9311-412a-a754-b70dbf69089f-6/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/carcinus maenas2.PNG,,TRUE, +N1,59189,sortie-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/sorties/sortie-20e82ee6-9311-412a-a754-b70dbf69089f/,Roman,,01/05/2020,16.0:15,17.0000000,47.704860000000,-3.356850000000,,Port-Louis,39142,observation-20e82ee6-9311-412a-a754-b70dbf69089f-7,https://biolit.fr/observations/observation-20e82ee6-9311-412a-a754-b70dbf69089f-7/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/cerastoderma edule2.PNG,,TRUE, +N1,59189,sortie-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/sorties/sortie-20e82ee6-9311-412a-a754-b70dbf69089f/,Roman,,01/05/2020,16.0:15,17.0000000,47.704860000000,-3.356850000000,,Port-Louis,39144,observation-20e82ee6-9311-412a-a754-b70dbf69089f-8,https://biolit.fr/observations/observation-20e82ee6-9311-412a-a754-b70dbf69089f-8/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus3.PNG,,TRUE, +N1,59189,sortie-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/sorties/sortie-20e82ee6-9311-412a-a754-b70dbf69089f/,Roman,,01/05/2020,16.0:15,17.0000000,47.704860000000,-3.356850000000,,Port-Louis,39146,observation-20e82ee6-9311-412a-a754-b70dbf69089f-9,https://biolit.fr/observations/observation-20e82ee6-9311-412a-a754-b70dbf69089f-9/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/chthmalus stellatus et montagui.PNG,,TRUE, +N1,59189,sortie-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/sorties/sortie-20e82ee6-9311-412a-a754-b70dbf69089f/,Roman,,01/05/2020,16.0:15,17.0000000,47.704860000000,-3.356850000000,,Port-Louis,39148,observation-20e82ee6-9311-412a-a754-b70dbf69089f-10,https://biolit.fr/observations/observation-20e82ee6-9311-412a-a754-b70dbf69089f-10/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/littorina littorea2.PNG,,TRUE, +N1,59189,sortie-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/sorties/sortie-20e82ee6-9311-412a-a754-b70dbf69089f/,Roman,,01/05/2020,16.0:15,17.0000000,47.704860000000,-3.356850000000,,Port-Louis,39150,observation-20e82ee6-9311-412a-a754-b70dbf69089f-11,https://biolit.fr/observations/observation-20e82ee6-9311-412a-a754-b70dbf69089f-11/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/littorina saxatilis.PNG,,TRUE, +N1,59189,sortie-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/sorties/sortie-20e82ee6-9311-412a-a754-b70dbf69089f/,Roman,,01/05/2020,16.0:15,17.0000000,47.704860000000,-3.356850000000,,Port-Louis,39152,observation-20e82ee6-9311-412a-a754-b70dbf69089f-12,https://biolit.fr/observations/observation-20e82ee6-9311-412a-a754-b70dbf69089f-12/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis3.PNG,,TRUE, +N1,59189,sortie-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/sorties/sortie-20e82ee6-9311-412a-a754-b70dbf69089f/,Roman,,01/05/2020,16.0:15,17.0000000,47.704860000000,-3.356850000000,,Port-Louis,39154,observation-20e82ee6-9311-412a-a754-b70dbf69089f-13,https://biolit.fr/observations/observation-20e82ee6-9311-412a-a754-b70dbf69089f-13/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/nereidae sp.PNG,,TRUE, +N1,59189,sortie-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/sorties/sortie-20e82ee6-9311-412a-a754-b70dbf69089f/,Roman,,01/05/2020,16.0:15,17.0000000,47.704860000000,-3.356850000000,,Port-Louis,39156,observation-20e82ee6-9311-412a-a754-b70dbf69089f-14,https://biolit.fr/observations/observation-20e82ee6-9311-412a-a754-b70dbf69089f-14/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/osilinus lineatus3.PNG,,TRUE, +N1,59189,sortie-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/sorties/sortie-20e82ee6-9311-412a-a754-b70dbf69089f/,Roman,,01/05/2020,16.0:15,17.0000000,47.704860000000,-3.356850000000,,Port-Louis,39158,observation-20e82ee6-9311-412a-a754-b70dbf69089f-15,https://biolit.fr/observations/observation-20e82ee6-9311-412a-a754-b70dbf69089f-15/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris2.PNG,,TRUE, +N1,59189,sortie-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/sorties/sortie-20e82ee6-9311-412a-a754-b70dbf69089f/,Roman,,01/05/2020,16.0:15,17.0000000,47.704860000000,-3.356850000000,,Port-Louis,39160,observation-20e82ee6-9311-412a-a754-b70dbf69089f-16,https://biolit.fr/observations/observation-20e82ee6-9311-412a-a754-b70dbf69089f-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/ruditapes philippinarum1.PNG,,FALSE, +N1,59190,sortie-fb412a78-67c3-4846-adca-376508fb2411,https://biolit.fr/sorties/sortie-fb412a78-67c3-4846-adca-376508fb2411/,Roman,,01/04/2020,16.0000000,17.0000000,47.707553000000,-3.360916000000,,Port-louis,39162,observation-fb412a78-67c3-4846-adca-376508fb2411,https://biolit.fr/observations/observation-fb412a78-67c3-4846-adca-376508fb2411/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea.PNG,,TRUE, +N1,59190,sortie-fb412a78-67c3-4846-adca-376508fb2411,https://biolit.fr/sorties/sortie-fb412a78-67c3-4846-adca-376508fb2411/,Roman,,01/04/2020,16.0000000,17.0000000,47.707553000000,-3.360916000000,,Port-louis,39163,observation-fb412a78-67c3-4846-adca-376508fb2411-2,https://biolit.fr/observations/observation-fb412a78-67c3-4846-adca-376508fb2411-2/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis2.PNG,,TRUE, +N1,59190,sortie-fb412a78-67c3-4846-adca-376508fb2411,https://biolit.fr/sorties/sortie-fb412a78-67c3-4846-adca-376508fb2411/,Roman,,01/04/2020,16.0000000,17.0000000,47.707553000000,-3.360916000000,,Port-louis,39165,observation-fb412a78-67c3-4846-adca-376508fb2411-3,https://biolit.fr/observations/observation-fb412a78-67c3-4846-adca-376508fb2411-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis.jpg,,TRUE, +N1,59190,sortie-fb412a78-67c3-4846-adca-376508fb2411,https://biolit.fr/sorties/sortie-fb412a78-67c3-4846-adca-376508fb2411/,Roman,,01/04/2020,16.0000000,17.0000000,47.707553000000,-3.360916000000,,Port-louis,39166,observation-fb412a78-67c3-4846-adca-376508fb2411-4,https://biolit.fr/observations/observation-fb412a78-67c3-4846-adca-376508fb2411-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/osilinus lineatus2.PNG,,TRUE, +N1,59190,sortie-fb412a78-67c3-4846-adca-376508fb2411,https://biolit.fr/sorties/sortie-fb412a78-67c3-4846-adca-376508fb2411/,Roman,,01/04/2020,16.0000000,17.0000000,47.707553000000,-3.360916000000,,Port-louis,39168,observation-fb412a78-67c3-4846-adca-376508fb2411-5,https://biolit.fr/observations/observation-fb412a78-67c3-4846-adca-376508fb2411-5/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/ostrea edulis1.PNG,,TRUE, +N1,59190,sortie-fb412a78-67c3-4846-adca-376508fb2411,https://biolit.fr/sorties/sortie-fb412a78-67c3-4846-adca-376508fb2411/,Roman,,01/04/2020,16.0000000,17.0000000,47.707553000000,-3.360916000000,,Port-louis,39170,observation-fb412a78-67c3-4846-adca-376508fb2411-6,https://biolit.fr/observations/observation-fb412a78-67c3-4846-adca-376508fb2411-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa.PNG,,FALSE, +N1,59191,sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8,https://biolit.fr/sorties/sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8/,Roman,,01/04/2020,16.0000000,17.0000000,47.707568000,-3.361013000000,,Port-louis,39171,observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8,https://biolit.fr/observations/observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/anémone sp2.PNG,,TRUE, +N1,59191,sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8,https://biolit.fr/sorties/sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8/,Roman,,01/04/2020,16.0000000,17.0000000,47.707568000,-3.361013000000,,Port-louis,39173,observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-2,https://biolit.fr/observations/observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie sp.PNG,,FALSE, +N1,59191,sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8,https://biolit.fr/sorties/sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8/,Roman,,01/04/2020,16.0000000,17.0000000,47.707568000,-3.361013000000,,Port-louis,39174,observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-3,https://biolit.fr/observations/observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-3/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus2.PNG,,TRUE, +N1,59191,sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8,https://biolit.fr/sorties/sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8/,Roman,,01/04/2020,16.0000000,17.0000000,47.707568000,-3.361013000000,,Port-louis,39176,observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-4,https://biolit.fr/observations/observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/carcinus maenas1.PNG,,TRUE, +N1,59191,sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8,https://biolit.fr/sorties/sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8/,Roman,,01/04/2020,16.0000000,17.0000000,47.707568000,-3.361013000000,,Port-louis,39178,observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-5,https://biolit.fr/observations/observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-5/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus2.PNG,,TRUE, +N1,59191,sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8,https://biolit.fr/sorties/sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8/,Roman,,01/04/2020,16.0000000,17.0000000,47.707568000,-3.361013000000,,Port-louis,39180,observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-6,https://biolit.fr/observations/observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/chlamys varia.PNG,,FALSE, +N1,59191,sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8,https://biolit.fr/sorties/sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8/,Roman,,01/04/2020,16.0000000,17.0000000,47.707568000,-3.361013000000,,Port-louis,39181,observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-7,https://biolit.fr/observations/observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-7/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/chthmalus stellatus4.PNG,,TRUE, +N1,59191,sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8,https://biolit.fr/sorties/sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8/,Roman,,01/04/2020,16.0000000,17.0000000,47.707568000,-3.361013000000,,Port-louis,39183,observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-8,https://biolit.fr/observations/observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/tapes rhomboides.PNG,,FALSE, +N1,59191,sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8,https://biolit.fr/sorties/sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8/,Roman,,01/04/2020,16.0000000,17.0000000,47.707568000,-3.361013000000,,Port-louis,39185,observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-9,https://biolit.fr/observations/observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-9/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Velella velella2.PNG,,TRUE, +N1,59191,sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8,https://biolit.fr/sorties/sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8/,Roman,,01/04/2020,16.0000000,17.0000000,47.707568000,-3.361013000000,,Port-louis,39187,observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-10,https://biolit.fr/observations/observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-10/,Pisa armata,Pise armée,,https://biolit.fr/wp-content/uploads/2023/07/pisa armata.PNG,,TRUE, +N1,59192,sortie-95d34d79-279b-45b8-8c0d-ef7a5290b24b,https://biolit.fr/sorties/sortie-95d34d79-279b-45b8-8c0d-ef7a5290b24b/,Phil,,12/22/2019 0:00,17.0000000,17.0:45,47.801579000000,-4.182538000000,,Loctudy - Finistère,39188,observation-95d34d79-279b-45b8-8c0d-ef7a5290b24b,https://biolit.fr/observations/observation-95d34d79-279b-45b8-8c0d-ef7a5290b24b/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20191222_172753.jpg,,TRUE, +N1,59192,sortie-95d34d79-279b-45b8-8c0d-ef7a5290b24b,https://biolit.fr/sorties/sortie-95d34d79-279b-45b8-8c0d-ef7a5290b24b/,Phil,,12/22/2019 0:00,17.0000000,17.0:45,47.801579000000,-4.182538000000,,Loctudy - Finistère,39190,observation-95d34d79-279b-45b8-8c0d-ef7a5290b24b-2,https://biolit.fr/observations/observation-95d34d79-279b-45b8-8c0d-ef7a5290b24b-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20191222_172840.jpg,,TRUE, +N1,59192,sortie-95d34d79-279b-45b8-8c0d-ef7a5290b24b,https://biolit.fr/sorties/sortie-95d34d79-279b-45b8-8c0d-ef7a5290b24b/,Phil,,12/22/2019 0:00,17.0000000,17.0:45,47.801579000000,-4.182538000000,,Loctudy - Finistère,39192,observation-95d34d79-279b-45b8-8c0d-ef7a5290b24b-3,https://biolit.fr/observations/observation-95d34d79-279b-45b8-8c0d-ef7a5290b24b-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20191222_174252.jpg,,TRUE, +N1,59192,sortie-95d34d79-279b-45b8-8c0d-ef7a5290b24b,https://biolit.fr/sorties/sortie-95d34d79-279b-45b8-8c0d-ef7a5290b24b/,Phil,,12/22/2019 0:00,17.0000000,17.0:45,47.801579000000,-4.182538000000,,Loctudy - Finistère,39194,observation-95d34d79-279b-45b8-8c0d-ef7a5290b24b-4,https://biolit.fr/observations/observation-95d34d79-279b-45b8-8c0d-ef7a5290b24b-4/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1130450.JPG,,TRUE, +N1,59192,sortie-95d34d79-279b-45b8-8c0d-ef7a5290b24b,https://biolit.fr/sorties/sortie-95d34d79-279b-45b8-8c0d-ef7a5290b24b/,Phil,,12/22/2019 0:00,17.0000000,17.0:45,47.801579000000,-4.182538000000,,Loctudy - Finistère,39196,observation-95d34d79-279b-45b8-8c0d-ef7a5290b24b-5,https://biolit.fr/observations/observation-95d34d79-279b-45b8-8c0d-ef7a5290b24b-5/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1130452.JPG,,TRUE, +N1,59192,sortie-95d34d79-279b-45b8-8c0d-ef7a5290b24b,https://biolit.fr/sorties/sortie-95d34d79-279b-45b8-8c0d-ef7a5290b24b/,Phil,,12/22/2019 0:00,17.0000000,17.0:45,47.801579000000,-4.182538000000,,Loctudy - Finistère,39198,observation-95d34d79-279b-45b8-8c0d-ef7a5290b24b-6,https://biolit.fr/observations/observation-95d34d79-279b-45b8-8c0d-ef7a5290b24b-6/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1130492.JPG,,TRUE, +N1,59192,sortie-95d34d79-279b-45b8-8c0d-ef7a5290b24b,https://biolit.fr/sorties/sortie-95d34d79-279b-45b8-8c0d-ef7a5290b24b/,Phil,,12/22/2019 0:00,17.0000000,17.0:45,47.801579000000,-4.182538000000,,Loctudy - Finistère,39200,observation-95d34d79-279b-45b8-8c0d-ef7a5290b24b-7,https://biolit.fr/observations/observation-95d34d79-279b-45b8-8c0d-ef7a5290b24b-7/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1130504.JPG,,TRUE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39202,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture1_3.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39204,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-2,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture2_3.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39206,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-3,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture3_3.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39208,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-4,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture4_3.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39210,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-5,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture5_3.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39212,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-6,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-6/,Cocos nucifera,Cocotier,,https://biolit.fr/wp-content/uploads/2023/07/Capture6_3.PNG,,TRUE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39214,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-7,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture7_3.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39216,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-8,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture8_3.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39218,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-9,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture9_3.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39220,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-10,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture10_2.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39222,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-11,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture12_2.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39224,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-12,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture13_2.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39226,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-13,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture14_2.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39228,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-14,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture15_2.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39230,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-15,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture16_2.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39232,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-16,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture17_1.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39234,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-17,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture18_1.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39236,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-18,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture19_0.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39238,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-19,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture20_0.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39240,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-20,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture21.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39242,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-21,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture22.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39244,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-22,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture23.PNG,,FALSE, +N1,59194,sortie-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183,https://biolit.fr/sorties/sortie-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183/,Phil,,12/26/2019 0:00,11.0:45,11.0000000,47.888098000000,-3.979952000000,,Fouesnant - Finistère,39246,observation-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183,https://biolit.fr/observations/observation-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191226_114412.jpg,,FALSE, +N1,59194,sortie-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183,https://biolit.fr/sorties/sortie-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183/,Phil,,12/26/2019 0:00,11.0:45,11.0000000,47.888098000000,-3.979952000000,,Fouesnant - Finistère,39248,observation-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183-2,https://biolit.fr/observations/observation-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191226_114841.jpg,,FALSE, +N1,59194,sortie-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183,https://biolit.fr/sorties/sortie-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183/,Phil,,12/26/2019 0:00,11.0:45,11.0000000,47.888098000000,-3.979952000000,,Fouesnant - Finistère,39250,observation-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183-3,https://biolit.fr/observations/observation-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191226_114848.jpg,,FALSE, +N1,59194,sortie-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183,https://biolit.fr/sorties/sortie-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183/,Phil,,12/26/2019 0:00,11.0:45,11.0000000,47.888098000000,-3.979952000000,,Fouesnant - Finistère,39252,observation-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183-4,https://biolit.fr/observations/observation-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191226_114910.jpg,,FALSE, +N1,59194,sortie-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183,https://biolit.fr/sorties/sortie-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183/,Phil,,12/26/2019 0:00,11.0:45,11.0000000,47.888098000000,-3.979952000000,,Fouesnant - Finistère,39254,observation-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183-5,https://biolit.fr/observations/observation-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191226_114551-scaled.jpg,,FALSE, +N1,59195,sortie-2692a8ed-e145-43b8-b18c-429954a44227,https://biolit.fr/sorties/sortie-2692a8ed-e145-43b8-b18c-429954a44227/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332972000000,-61.328316000000,,"Plage de l'autre bord, Le Moule",39256,observation-2692a8ed-e145-43b8-b18c-429954a44227,https://biolit.fr/observations/observation-2692a8ed-e145-43b8-b18c-429954a44227/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture1_2.PNG,,FALSE, +N1,59195,sortie-2692a8ed-e145-43b8-b18c-429954a44227,https://biolit.fr/sorties/sortie-2692a8ed-e145-43b8-b18c-429954a44227/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332972000000,-61.328316000000,,"Plage de l'autre bord, Le Moule",39258,observation-2692a8ed-e145-43b8-b18c-429954a44227-2,https://biolit.fr/observations/observation-2692a8ed-e145-43b8-b18c-429954a44227-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture2_2.PNG,,FALSE, +N1,59195,sortie-2692a8ed-e145-43b8-b18c-429954a44227,https://biolit.fr/sorties/sortie-2692a8ed-e145-43b8-b18c-429954a44227/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332972000000,-61.328316000000,,"Plage de l'autre bord, Le Moule",39260,observation-2692a8ed-e145-43b8-b18c-429954a44227-3,https://biolit.fr/observations/observation-2692a8ed-e145-43b8-b18c-429954a44227-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture3_2.PNG,,FALSE, +N1,59195,sortie-2692a8ed-e145-43b8-b18c-429954a44227,https://biolit.fr/sorties/sortie-2692a8ed-e145-43b8-b18c-429954a44227/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332972000000,-61.328316000000,,"Plage de l'autre bord, Le Moule",39262,observation-2692a8ed-e145-43b8-b18c-429954a44227-4,https://biolit.fr/observations/observation-2692a8ed-e145-43b8-b18c-429954a44227-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture4_2.PNG,,FALSE, +N1,59195,sortie-2692a8ed-e145-43b8-b18c-429954a44227,https://biolit.fr/sorties/sortie-2692a8ed-e145-43b8-b18c-429954a44227/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332972000000,-61.328316000000,,"Plage de l'autre bord, Le Moule",39264,observation-2692a8ed-e145-43b8-b18c-429954a44227-5,https://biolit.fr/observations/observation-2692a8ed-e145-43b8-b18c-429954a44227-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture5_2.PNG,,FALSE, +N1,59195,sortie-2692a8ed-e145-43b8-b18c-429954a44227,https://biolit.fr/sorties/sortie-2692a8ed-e145-43b8-b18c-429954a44227/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332972000000,-61.328316000000,,"Plage de l'autre bord, Le Moule",39266,observation-2692a8ed-e145-43b8-b18c-429954a44227-6,https://biolit.fr/observations/observation-2692a8ed-e145-43b8-b18c-429954a44227-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture6_2.PNG,,FALSE, +N1,59195,sortie-2692a8ed-e145-43b8-b18c-429954a44227,https://biolit.fr/sorties/sortie-2692a8ed-e145-43b8-b18c-429954a44227/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332972000000,-61.328316000000,,"Plage de l'autre bord, Le Moule",39268,observation-2692a8ed-e145-43b8-b18c-429954a44227-7,https://biolit.fr/observations/observation-2692a8ed-e145-43b8-b18c-429954a44227-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture7_2.PNG,,FALSE, +N1,59195,sortie-2692a8ed-e145-43b8-b18c-429954a44227,https://biolit.fr/sorties/sortie-2692a8ed-e145-43b8-b18c-429954a44227/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332972000000,-61.328316000000,,"Plage de l'autre bord, Le Moule",39270,observation-2692a8ed-e145-43b8-b18c-429954a44227-8,https://biolit.fr/observations/observation-2692a8ed-e145-43b8-b18c-429954a44227-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture8_2.PNG,,FALSE, +N1,59195,sortie-2692a8ed-e145-43b8-b18c-429954a44227,https://biolit.fr/sorties/sortie-2692a8ed-e145-43b8-b18c-429954a44227/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332972000000,-61.328316000000,,"Plage de l'autre bord, Le Moule",39272,observation-2692a8ed-e145-43b8-b18c-429954a44227-9,https://biolit.fr/observations/observation-2692a8ed-e145-43b8-b18c-429954a44227-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture9_2.PNG,,FALSE, +N1,59196,sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/sorties/sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332948000000,-61.328317000000,,"Plage de l'autre bord, Le Moule",39274,observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/observations/observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture1_1.PNG,,FALSE, +N1,59196,sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/sorties/sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332948000000,-61.328317000000,,"Plage de l'autre bord, Le Moule",39276,observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-2,https://biolit.fr/observations/observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture2_1.PNG,,FALSE, +N1,59196,sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/sorties/sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332948000000,-61.328317000000,,"Plage de l'autre bord, Le Moule",39278,observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-3,https://biolit.fr/observations/observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture3_1.PNG,,FALSE, +N1,59196,sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/sorties/sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332948000000,-61.328317000000,,"Plage de l'autre bord, Le Moule",39280,observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-4,https://biolit.fr/observations/observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture4_1.PNG,,FALSE, +N1,59196,sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/sorties/sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332948000000,-61.328317000000,,"Plage de l'autre bord, Le Moule",39282,observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-5,https://biolit.fr/observations/observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture5_1.PNG,,FALSE, +N1,59196,sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/sorties/sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332948000000,-61.328317000000,,"Plage de l'autre bord, Le Moule",39284,observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-6,https://biolit.fr/observations/observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture6_1.PNG,,FALSE, +N1,59196,sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/sorties/sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332948000000,-61.328317000000,,"Plage de l'autre bord, Le Moule",39286,observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-7,https://biolit.fr/observations/observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture7_1.PNG,,FALSE, +N1,59196,sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/sorties/sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332948000000,-61.328317000000,,"Plage de l'autre bord, Le Moule",39288,observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-8,https://biolit.fr/observations/observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture8_1.PNG,,FALSE, +N1,59196,sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/sorties/sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332948000000,-61.328317000000,,"Plage de l'autre bord, Le Moule",39290,observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-9,https://biolit.fr/observations/observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture9_1.PNG,,FALSE, +N1,59196,sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/sorties/sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332948000000,-61.328317000000,,"Plage de l'autre bord, Le Moule",39292,observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-10,https://biolit.fr/observations/observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture10_1.PNG,,FALSE, +N1,59196,sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/sorties/sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332948000000,-61.328317000000,,"Plage de l'autre bord, Le Moule",39294,observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-11,https://biolit.fr/observations/observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture11_1.PNG,,FALSE, +N1,59196,sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/sorties/sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332948000000,-61.328317000000,,"Plage de l'autre bord, Le Moule",39296,observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-12,https://biolit.fr/observations/observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture12_1.PNG,,FALSE, +N1,59196,sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/sorties/sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332948000000,-61.328317000000,,"Plage de l'autre bord, Le Moule",39298,observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-13,https://biolit.fr/observations/observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture13_1.PNG,,FALSE, +N1,59196,sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/sorties/sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332948000000,-61.328317000000,,"Plage de l'autre bord, Le Moule",39300,observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-14,https://biolit.fr/observations/observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture14_1.PNG,,FALSE, +N1,59196,sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/sorties/sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332948000000,-61.328317000000,,"Plage de l'autre bord, Le Moule",39302,observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-15,https://biolit.fr/observations/observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture15_1.PNG,,FALSE, +N1,59196,sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/sorties/sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332948000000,-61.328317000000,,"Plage de l'autre bord, Le Moule",39304,observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-16,https://biolit.fr/observations/observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture16_1.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39306,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture1_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39308,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-2,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture2_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39310,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-3,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture3_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39312,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-4,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture4_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39314,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-5,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture5_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39316,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-6,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture6_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39318,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-7,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture7_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39320,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-8,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture8_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39322,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-9,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture9_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39324,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-10,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture10_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39326,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-11,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture11_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39328,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-12,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture12_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39330,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-13,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture13_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39332,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-14,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture14_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39334,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-15,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture15_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39336,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-16,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture16_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39338,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-17,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture17_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39340,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-18,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture18_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39342,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-19,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture19.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39344,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-20,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture20.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39346,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture_0.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39348,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-2,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture1.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39350,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-3,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture2.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39352,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-4,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture3.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39354,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-5,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture4.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39356,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-6,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture5.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39358,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-7,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture6.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39360,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-8,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture7.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39362,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-9,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture8.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39364,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-10,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture9.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39366,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-11,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture10.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39368,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-12,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture11.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39370,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-13,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture12.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39372,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-14,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture13.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39374,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-15,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture14.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39376,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-16,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture15.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39378,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-17,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture16.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39380,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-18,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture17.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39382,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-19,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture18.PNG,,FALSE, +N1,59199,sortie-cf587e37-78d9-4548-954f-d30578db26d5,https://biolit.fr/sorties/sortie-cf587e37-78d9-4548-954f-d30578db26d5/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332957000000,-61.328380000000,,"Plage de l'autre bord, Le Moule",39384,observation-cf587e37-78d9-4548-954f-d30578db26d5,https://biolit.fr/observations/observation-cf587e37-78d9-4548-954f-d30578db26d5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03778-ConvertImage-scaled.jpg,,FALSE, +N1,59199,sortie-cf587e37-78d9-4548-954f-d30578db26d5,https://biolit.fr/sorties/sortie-cf587e37-78d9-4548-954f-d30578db26d5/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332957000000,-61.328380000000,,"Plage de l'autre bord, Le Moule",39386,observation-cf587e37-78d9-4548-954f-d30578db26d5-2,https://biolit.fr/observations/observation-cf587e37-78d9-4548-954f-d30578db26d5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03781-ConvertImage-scaled.jpg,,FALSE, +N1,59199,sortie-cf587e37-78d9-4548-954f-d30578db26d5,https://biolit.fr/sorties/sortie-cf587e37-78d9-4548-954f-d30578db26d5/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332957000000,-61.328380000000,,"Plage de l'autre bord, Le Moule",39388,observation-cf587e37-78d9-4548-954f-d30578db26d5-3,https://biolit.fr/observations/observation-cf587e37-78d9-4548-954f-d30578db26d5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03783-ConvertImage-scaled.jpg,,FALSE, +N1,59199,sortie-cf587e37-78d9-4548-954f-d30578db26d5,https://biolit.fr/sorties/sortie-cf587e37-78d9-4548-954f-d30578db26d5/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332957000000,-61.328380000000,,"Plage de l'autre bord, Le Moule",39390,observation-cf587e37-78d9-4548-954f-d30578db26d5-4,https://biolit.fr/observations/observation-cf587e37-78d9-4548-954f-d30578db26d5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03794-ConvertImage-scaled.jpg,,FALSE, +N1,59199,sortie-cf587e37-78d9-4548-954f-d30578db26d5,https://biolit.fr/sorties/sortie-cf587e37-78d9-4548-954f-d30578db26d5/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332957000000,-61.328380000000,,"Plage de l'autre bord, Le Moule",39392,observation-cf587e37-78d9-4548-954f-d30578db26d5-5,https://biolit.fr/observations/observation-cf587e37-78d9-4548-954f-d30578db26d5-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03802-ConvertImage (1)-scaled.jpg,,FALSE, +N1,59199,sortie-cf587e37-78d9-4548-954f-d30578db26d5,https://biolit.fr/sorties/sortie-cf587e37-78d9-4548-954f-d30578db26d5/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332957000000,-61.328380000000,,"Plage de l'autre bord, Le Moule",39394,observation-cf587e37-78d9-4548-954f-d30578db26d5-6,https://biolit.fr/observations/observation-cf587e37-78d9-4548-954f-d30578db26d5-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03809-ConvertImage-scaled.jpg,,FALSE, +N1,59199,sortie-cf587e37-78d9-4548-954f-d30578db26d5,https://biolit.fr/sorties/sortie-cf587e37-78d9-4548-954f-d30578db26d5/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332957000000,-61.328380000000,,"Plage de l'autre bord, Le Moule",39396,observation-cf587e37-78d9-4548-954f-d30578db26d5-7,https://biolit.fr/observations/observation-cf587e37-78d9-4548-954f-d30578db26d5-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03804-ConvertImage-scaled.jpg,,FALSE, +N1,59199,sortie-cf587e37-78d9-4548-954f-d30578db26d5,https://biolit.fr/sorties/sortie-cf587e37-78d9-4548-954f-d30578db26d5/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332957000000,-61.328380000000,,"Plage de l'autre bord, Le Moule",39398,observation-cf587e37-78d9-4548-954f-d30578db26d5-8,https://biolit.fr/observations/observation-cf587e37-78d9-4548-954f-d30578db26d5-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03791-ConvertImage-scaled.jpg,,FALSE, +N1,59199,sortie-cf587e37-78d9-4548-954f-d30578db26d5,https://biolit.fr/sorties/sortie-cf587e37-78d9-4548-954f-d30578db26d5/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332957000000,-61.328380000000,,"Plage de l'autre bord, Le Moule",39400,observation-cf587e37-78d9-4548-954f-d30578db26d5-9,https://biolit.fr/observations/observation-cf587e37-78d9-4548-954f-d30578db26d5-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03792-ConvertImage-scaled.jpg,,FALSE, +N1,59199,sortie-cf587e37-78d9-4548-954f-d30578db26d5,https://biolit.fr/sorties/sortie-cf587e37-78d9-4548-954f-d30578db26d5/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332957000000,-61.328380000000,,"Plage de l'autre bord, Le Moule",39402,observation-cf587e37-78d9-4548-954f-d30578db26d5-10,https://biolit.fr/observations/observation-cf587e37-78d9-4548-954f-d30578db26d5-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03810-ConvertImage-scaled.jpg,,FALSE, +N1,59199,sortie-cf587e37-78d9-4548-954f-d30578db26d5,https://biolit.fr/sorties/sortie-cf587e37-78d9-4548-954f-d30578db26d5/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332957000000,-61.328380000000,,"Plage de l'autre bord, Le Moule",39404,observation-cf587e37-78d9-4548-954f-d30578db26d5-11,https://biolit.fr/observations/observation-cf587e37-78d9-4548-954f-d30578db26d5-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03798-ConvertImage-scaled.jpg,,FALSE, +N1,59199,sortie-cf587e37-78d9-4548-954f-d30578db26d5,https://biolit.fr/sorties/sortie-cf587e37-78d9-4548-954f-d30578db26d5/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332957000000,-61.328380000000,,"Plage de l'autre bord, Le Moule",39406,observation-cf587e37-78d9-4548-954f-d30578db26d5-12,https://biolit.fr/observations/observation-cf587e37-78d9-4548-954f-d30578db26d5-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03806-ConvertImage-scaled.jpg,,FALSE, +N1,59200,sortie-d703fc00-d3ca-4b56-a54b-b4fed8d322f5,https://biolit.fr/sorties/sortie-d703fc00-d3ca-4b56-a54b-b4fed8d322f5/,michelGavres,,01/01/2020,9.0000000,11.0000000,47.696415000000,-3.337929000000,,Grande plage GAVRES 56680,39408,observation-d703fc00-d3ca-4b56-a54b-b4fed8d322f5,https://biolit.fr/observations/observation-d703fc00-d3ca-4b56-a54b-b4fed8d322f5/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200101_092957_resized_20200102_083807504.jpg,,TRUE, +N1,59201,sortie-5d8d37a3-cb43-4b54-b248-ce97db0f8fb8,https://biolit.fr/sorties/sortie-5d8d37a3-cb43-4b54-b248-ce97db0f8fb8/,Phil,,11/16/2019 0:00,11.0:55,12.0000000,48.060694000000,-4.671670000000,,Cléden-Cap-Sizun - Finistère,39410,observation-5d8d37a3-cb43-4b54-b248-ce97db0f8fb8,https://biolit.fr/observations/observation-5d8d37a3-cb43-4b54-b248-ce97db0f8fb8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191116_120615.jpg,,FALSE, +N1,59201,sortie-5d8d37a3-cb43-4b54-b248-ce97db0f8fb8,https://biolit.fr/sorties/sortie-5d8d37a3-cb43-4b54-b248-ce97db0f8fb8/,Phil,,11/16/2019 0:00,11.0:55,12.0000000,48.060694000000,-4.671670000000,,Cléden-Cap-Sizun - Finistère,39412,observation-5d8d37a3-cb43-4b54-b248-ce97db0f8fb8-2,https://biolit.fr/observations/observation-5d8d37a3-cb43-4b54-b248-ce97db0f8fb8-2/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20191116_115347.jpg,,TRUE, +N1,59201,sortie-5d8d37a3-cb43-4b54-b248-ce97db0f8fb8,https://biolit.fr/sorties/sortie-5d8d37a3-cb43-4b54-b248-ce97db0f8fb8/,Phil,,11/16/2019 0:00,11.0:55,12.0000000,48.060694000000,-4.671670000000,,Cléden-Cap-Sizun - Finistère,39414,observation-5d8d37a3-cb43-4b54-b248-ce97db0f8fb8-3,https://biolit.fr/observations/observation-5d8d37a3-cb43-4b54-b248-ce97db0f8fb8-3/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/20191116_115333.jpg,,TRUE, +N1,59202,sortie-9be682da-8e8b-4986-ab4f-646a9d932cb3,https://biolit.fr/sorties/sortie-9be682da-8e8b-4986-ab4f-646a9d932cb3/,Phil,,8/13/2019 0:00,19.0:35,19.0:45,47.796819000000,-4.32104700000,,Penmarc'h - Finistère,39416,observation-9be682da-8e8b-4986-ab4f-646a9d932cb3,https://biolit.fr/observations/observation-9be682da-8e8b-4986-ab4f-646a9d932cb3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120812.JPG,,FALSE, +N1,59202,sortie-9be682da-8e8b-4986-ab4f-646a9d932cb3,https://biolit.fr/sorties/sortie-9be682da-8e8b-4986-ab4f-646a9d932cb3/,Phil,,8/13/2019 0:00,19.0:35,19.0:45,47.796819000000,-4.32104700000,,Penmarc'h - Finistère,39418,observation-9be682da-8e8b-4986-ab4f-646a9d932cb3-2,https://biolit.fr/observations/observation-9be682da-8e8b-4986-ab4f-646a9d932cb3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120833.JPG,,FALSE, +N1,59203,sortie-d9e3113d-1747-407c-b826-f8c8e206b53a,https://biolit.fr/sorties/sortie-d9e3113d-1747-407c-b826-f8c8e206b53a/,Phil,,09/03/2019,15.0000000,15.0000000,47.893897000000,-3.966442000000,,La Forêt-Fouesnant - Finistère,39420,observation-d9e3113d-1747-407c-b826-f8c8e206b53a,https://biolit.fr/observations/observation-d9e3113d-1747-407c-b826-f8c8e206b53a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120871.JPG,,FALSE, +N1,59203,sortie-d9e3113d-1747-407c-b826-f8c8e206b53a,https://biolit.fr/sorties/sortie-d9e3113d-1747-407c-b826-f8c8e206b53a/,Phil,,09/03/2019,15.0000000,15.0000000,47.893897000000,-3.966442000000,,La Forêt-Fouesnant - Finistère,39422,observation-d9e3113d-1747-407c-b826-f8c8e206b53a-2,https://biolit.fr/observations/observation-d9e3113d-1747-407c-b826-f8c8e206b53a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120872.JPG,,FALSE, +N1,59203,sortie-d9e3113d-1747-407c-b826-f8c8e206b53a,https://biolit.fr/sorties/sortie-d9e3113d-1747-407c-b826-f8c8e206b53a/,Phil,,09/03/2019,15.0000000,15.0000000,47.893897000000,-3.966442000000,,La Forêt-Fouesnant - Finistère,39424,observation-d9e3113d-1747-407c-b826-f8c8e206b53a-3,https://biolit.fr/observations/observation-d9e3113d-1747-407c-b826-f8c8e206b53a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120876.JPG,,FALSE, +N1,59203,sortie-d9e3113d-1747-407c-b826-f8c8e206b53a,https://biolit.fr/sorties/sortie-d9e3113d-1747-407c-b826-f8c8e206b53a/,Phil,,09/03/2019,15.0000000,15.0000000,47.893897000000,-3.966442000000,,La Forêt-Fouesnant - Finistère,39426,observation-d9e3113d-1747-407c-b826-f8c8e206b53a-4,https://biolit.fr/observations/observation-d9e3113d-1747-407c-b826-f8c8e206b53a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120878.JPG,",""false""",, +N1,59203,sortie-d9e3113d-1747-407c-b826-f8c8e206b53a,https://biolit.fr/sorties/sortie-d9e3113d-1747-407c-b826-f8c8e206b53a/,Phil,,09/03/2019,15.0000000,15.0000000,47.893897000000,-3.966442000000,,La Forêt-Fouesnant - Finistère,39428,observation-d9e3113d-1747-407c-b826-f8c8e206b53a-5,https://biolit.fr/observations/observation-d9e3113d-1747-407c-b826-f8c8e206b53a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120880.JPG,,FALSE, +N1,59203,sortie-d9e3113d-1747-407c-b826-f8c8e206b53a,https://biolit.fr/sorties/sortie-d9e3113d-1747-407c-b826-f8c8e206b53a/,Phil,,09/03/2019,15.0000000,15.0000000,47.893897000000,-3.966442000000,,La Forêt-Fouesnant - Finistère,39430,observation-d9e3113d-1747-407c-b826-f8c8e206b53a-6,https://biolit.fr/observations/observation-d9e3113d-1747-407c-b826-f8c8e206b53a-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120885.JPG,,FALSE, +N1,59204,sortie-bbbd0e9c-0d0f-40a1-b073-65f9d16709cc,https://biolit.fr/sorties/sortie-bbbd0e9c-0d0f-40a1-b073-65f9d16709cc/,Louisclaire,,12/31/2019 0:00,9.0000000,11.0000000,45.851714000000,-1.252051000000,,Grand plage,39432,observation-bbbd0e9c-0d0f-40a1-b073-65f9d16709cc,https://biolit.fr/observations/observation-bbbd0e9c-0d0f-40a1-b073-65f9d16709cc/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/20191222_171739-scaled.jpg,,TRUE, +N1,59205,sortie-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2,https://biolit.fr/sorties/sortie-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2/,Phil,,12/29/2019 0:00,12.0000000,12.0000000,47.87090400000,-4.103428000000,,Bénodet - Finistère,39434,observation-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2,https://biolit.fr/observations/observation-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191229_122520.jpg,,TRUE, +N1,59205,sortie-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2,https://biolit.fr/sorties/sortie-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2/,Phil,,12/29/2019 0:00,12.0000000,12.0000000,47.87090400000,-4.103428000000,,Bénodet - Finistère,39436,observation-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2-2,https://biolit.fr/observations/observation-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20191229_122558.jpg,,TRUE, +N1,59205,sortie-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2,https://biolit.fr/sorties/sortie-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2/,Phil,,12/29/2019 0:00,12.0000000,12.0000000,47.87090400000,-4.103428000000,,Bénodet - Finistère,39438,observation-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2-3,https://biolit.fr/observations/observation-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20191229_122833.jpg,,TRUE, +N1,59205,sortie-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2,https://biolit.fr/sorties/sortie-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2/,Phil,,12/29/2019 0:00,12.0000000,12.0000000,47.87090400000,-4.103428000000,,Bénodet - Finistère,39440,observation-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2-4,https://biolit.fr/observations/observation-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2-4/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191229_122843.jpg,,TRUE, +N1,59205,sortie-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2,https://biolit.fr/sorties/sortie-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2/,Phil,,12/29/2019 0:00,12.0000000,12.0000000,47.87090400000,-4.103428000000,,Bénodet - Finistère,39442,observation-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2-5,https://biolit.fr/observations/observation-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2-5/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191229_123009.jpg,,TRUE, +N1,59205,sortie-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2,https://biolit.fr/sorties/sortie-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2/,Phil,,12/29/2019 0:00,12.0000000,12.0000000,47.87090400000,-4.103428000000,,Bénodet - Finistère,39444,observation-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2-6,https://biolit.fr/observations/observation-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2-6/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191229_123143.jpg,,TRUE, +N1,59206,sortie-35820b5f-3d24-46d3-80e9-83f1d8235296,https://biolit.fr/sorties/sortie-35820b5f-3d24-46d3-80e9-83f1d8235296/,Phil,,12/26/2019 0:00,11.0:35,11.0000000,47.884708000000,-3.987479000000,,Fouesnant - Finistère,39446,observation-35820b5f-3d24-46d3-80e9-83f1d8235296,https://biolit.fr/observations/observation-35820b5f-3d24-46d3-80e9-83f1d8235296/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20191226_113837.jpg,,TRUE, +N1,59206,sortie-35820b5f-3d24-46d3-80e9-83f1d8235296,https://biolit.fr/sorties/sortie-35820b5f-3d24-46d3-80e9-83f1d8235296/,Phil,,12/26/2019 0:00,11.0:35,11.0000000,47.884708000000,-3.987479000000,,Fouesnant - Finistère,39448,observation-35820b5f-3d24-46d3-80e9-83f1d8235296-2,https://biolit.fr/observations/observation-35820b5f-3d24-46d3-80e9-83f1d8235296-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20191226_113904.jpg,,TRUE, +N1,59206,sortie-35820b5f-3d24-46d3-80e9-83f1d8235296,https://biolit.fr/sorties/sortie-35820b5f-3d24-46d3-80e9-83f1d8235296/,Phil,,12/26/2019 0:00,11.0:35,11.0000000,47.884708000000,-3.987479000000,,Fouesnant - Finistère,39450,observation-35820b5f-3d24-46d3-80e9-83f1d8235296-3,https://biolit.fr/observations/observation-35820b5f-3d24-46d3-80e9-83f1d8235296-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20191226_113945.jpg,,TRUE, +N1,59206,sortie-35820b5f-3d24-46d3-80e9-83f1d8235296,https://biolit.fr/sorties/sortie-35820b5f-3d24-46d3-80e9-83f1d8235296/,Phil,,12/26/2019 0:00,11.0:35,11.0000000,47.884708000000,-3.987479000000,,Fouesnant - Finistère,39452,observation-35820b5f-3d24-46d3-80e9-83f1d8235296-4,https://biolit.fr/observations/observation-35820b5f-3d24-46d3-80e9-83f1d8235296-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191226_114022.jpg,,FALSE, +N1,59206,sortie-35820b5f-3d24-46d3-80e9-83f1d8235296,https://biolit.fr/sorties/sortie-35820b5f-3d24-46d3-80e9-83f1d8235296/,Phil,,12/26/2019 0:00,11.0:35,11.0000000,47.884708000000,-3.987479000000,,Fouesnant - Finistère,39454,observation-35820b5f-3d24-46d3-80e9-83f1d8235296-5,https://biolit.fr/observations/observation-35820b5f-3d24-46d3-80e9-83f1d8235296-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191226_114026.jpg,,FALSE, +N1,59206,sortie-35820b5f-3d24-46d3-80e9-83f1d8235296,https://biolit.fr/sorties/sortie-35820b5f-3d24-46d3-80e9-83f1d8235296/,Phil,,12/26/2019 0:00,11.0:35,11.0000000,47.884708000000,-3.987479000000,,Fouesnant - Finistère,39456,observation-35820b5f-3d24-46d3-80e9-83f1d8235296-6,https://biolit.fr/observations/observation-35820b5f-3d24-46d3-80e9-83f1d8235296-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191226_114034.jpg,,FALSE, +N1,59206,sortie-35820b5f-3d24-46d3-80e9-83f1d8235296,https://biolit.fr/sorties/sortie-35820b5f-3d24-46d3-80e9-83f1d8235296/,Phil,,12/26/2019 0:00,11.0:35,11.0000000,47.884708000000,-3.987479000000,,Fouesnant - Finistère,39458,observation-35820b5f-3d24-46d3-80e9-83f1d8235296-7,https://biolit.fr/observations/observation-35820b5f-3d24-46d3-80e9-83f1d8235296-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191226_114135.jpg,,FALSE, +N1,59207,sortie-ead29971-7b19-46db-9594-7a43ece13198,https://biolit.fr/sorties/sortie-ead29971-7b19-46db-9594-7a43ece13198/,Cécile Kergal,,12/27/2019 0:00,10.0000000,12.0000000,47.57343400000,-2.860972000000,,île aux moines,39460,observation-ead29971-7b19-46db-9594-7a43ece13198,https://biolit.fr/observations/observation-ead29971-7b19-46db-9594-7a43ece13198/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20191226_160157-scaled.jpg,,TRUE, +N1,59207,sortie-ead29971-7b19-46db-9594-7a43ece13198,https://biolit.fr/sorties/sortie-ead29971-7b19-46db-9594-7a43ece13198/,Cécile Kergal,,12/27/2019 0:00,10.0000000,12.0000000,47.57343400000,-2.860972000000,,île aux moines,39462,observation-ead29971-7b19-46db-9594-7a43ece13198-2,https://biolit.fr/observations/observation-ead29971-7b19-46db-9594-7a43ece13198-2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20191226_160148-scaled.jpg,,TRUE, +N1,59207,sortie-ead29971-7b19-46db-9594-7a43ece13198,https://biolit.fr/sorties/sortie-ead29971-7b19-46db-9594-7a43ece13198/,Cécile Kergal,,12/27/2019 0:00,10.0000000,12.0000000,47.57343400000,-2.860972000000,,île aux moines,39464,observation-ead29971-7b19-46db-9594-7a43ece13198-3,https://biolit.fr/observations/observation-ead29971-7b19-46db-9594-7a43ece13198-3/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20191226_155751-scaled.jpg,,TRUE, +N1,59207,sortie-ead29971-7b19-46db-9594-7a43ece13198,https://biolit.fr/sorties/sortie-ead29971-7b19-46db-9594-7a43ece13198/,Cécile Kergal,,12/27/2019 0:00,10.0000000,12.0000000,47.57343400000,-2.860972000000,,île aux moines,39466,observation-ead29971-7b19-46db-9594-7a43ece13198-4,https://biolit.fr/observations/observation-ead29971-7b19-46db-9594-7a43ece13198-4/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20191226_155731-scaled.jpg,,TRUE, +N1,59208,sortie-4ff05703-13f6-4527-bd1e-5490d84b10e4,https://biolit.fr/sorties/sortie-4ff05703-13f6-4527-bd1e-5490d84b10e4/,Phil,,5/19/2019 0:00,12.0000000,12.0:55,47.800429000000,-4.180072000000,,Loctudy - Finistère,39468,observation-4ff05703-13f6-4527-bd1e-5490d84b10e4,https://biolit.fr/observations/observation-4ff05703-13f6-4527-bd1e-5490d84b10e4/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20190519_123802.jpg,,TRUE, +N1,59208,sortie-4ff05703-13f6-4527-bd1e-5490d84b10e4,https://biolit.fr/sorties/sortie-4ff05703-13f6-4527-bd1e-5490d84b10e4/,Phil,,5/19/2019 0:00,12.0000000,12.0:55,47.800429000000,-4.180072000000,,Loctudy - Finistère,39470,observation-4ff05703-13f6-4527-bd1e-5490d84b10e4-2,https://biolit.fr/observations/observation-4ff05703-13f6-4527-bd1e-5490d84b10e4-2/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20190519_123808.jpg,,TRUE, +N1,59208,sortie-4ff05703-13f6-4527-bd1e-5490d84b10e4,https://biolit.fr/sorties/sortie-4ff05703-13f6-4527-bd1e-5490d84b10e4/,Phil,,5/19/2019 0:00,12.0000000,12.0:55,47.800429000000,-4.180072000000,,Loctudy - Finistère,39472,observation-4ff05703-13f6-4527-bd1e-5490d84b10e4-3,https://biolit.fr/observations/observation-4ff05703-13f6-4527-bd1e-5490d84b10e4-3/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/20190519_125706.jpg,,TRUE, +N1,59208,sortie-4ff05703-13f6-4527-bd1e-5490d84b10e4,https://biolit.fr/sorties/sortie-4ff05703-13f6-4527-bd1e-5490d84b10e4/,Phil,,5/19/2019 0:00,12.0000000,12.0:55,47.800429000000,-4.180072000000,,Loctudy - Finistère,39474,observation-4ff05703-13f6-4527-bd1e-5490d84b10e4-4,https://biolit.fr/observations/observation-4ff05703-13f6-4527-bd1e-5490d84b10e4-4/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/20190519_125709.jpg,,TRUE, +N1,59208,sortie-4ff05703-13f6-4527-bd1e-5490d84b10e4,https://biolit.fr/sorties/sortie-4ff05703-13f6-4527-bd1e-5490d84b10e4/,Phil,,5/19/2019 0:00,12.0000000,12.0:55,47.800429000000,-4.180072000000,,Loctudy - Finistère,39476,observation-4ff05703-13f6-4527-bd1e-5490d84b10e4-5,https://biolit.fr/observations/observation-4ff05703-13f6-4527-bd1e-5490d84b10e4-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190519_125712.jpg,,FALSE, +N1,59209,sortie-f29ffc6a-b8db-49f9-8fa4-61e88e754e44,https://biolit.fr/sorties/sortie-f29ffc6a-b8db-49f9-8fa4-61e88e754e44/,Louisclaire,,12/24/2019 0:00,17.0000000,18.0000000,45.854016000000,-1.2524800000,,Grand plage,39478,observation-f29ffc6a-b8db-49f9-8fa4-61e88e754e44,https://biolit.fr/observations/observation-f29ffc6a-b8db-49f9-8fa4-61e88e754e44/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20191224_171105-scaled.jpg,,TRUE, +N1,59210,sortie-f9b8484b-0909-4a4a-89d6-8fb13034aaca,https://biolit.fr/sorties/sortie-f9b8484b-0909-4a4a-89d6-8fb13034aaca/,Elodie_LS,,11/28/2019 0:00,18.0000000,19.0000000,47.273463000000,-2.48129600000,,Plage Saint-Michel,39480,observation-f9b8484b-0909-4a4a-89d6-8fb13034aaca,https://biolit.fr/observations/observation-f9b8484b-0909-4a4a-89d6-8fb13034aaca/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20191224_114728-scaled.jpg,,TRUE, +N1,59210,sortie-f9b8484b-0909-4a4a-89d6-8fb13034aaca,https://biolit.fr/sorties/sortie-f9b8484b-0909-4a4a-89d6-8fb13034aaca/,Elodie_LS,,11/28/2019 0:00,18.0000000,19.0000000,47.273463000000,-2.48129600000,,Plage Saint-Michel,39482,observation-f9b8484b-0909-4a4a-89d6-8fb13034aaca-2,https://biolit.fr/observations/observation-f9b8484b-0909-4a4a-89d6-8fb13034aaca-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20191224_114708-scaled.jpg,,TRUE, +N1,59210,sortie-f9b8484b-0909-4a4a-89d6-8fb13034aaca,https://biolit.fr/sorties/sortie-f9b8484b-0909-4a4a-89d6-8fb13034aaca/,Elodie_LS,,11/28/2019 0:00,18.0000000,19.0000000,47.273463000000,-2.48129600000,,Plage Saint-Michel,39484,observation-f9b8484b-0909-4a4a-89d6-8fb13034aaca-3,https://biolit.fr/observations/observation-f9b8484b-0909-4a4a-89d6-8fb13034aaca-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20191224_114719-scaled.jpg,,TRUE, +N1,59211,sortie-0e72161a-d68a-41f9-9688-403aa699f5be,https://biolit.fr/sorties/sortie-0e72161a-d68a-41f9-9688-403aa699f5be/,Roman,,12/22/2019 0:00,15.0000000,17.0000000,47.687667000000,-3.35921000000,,Gâvres,39486,observation-0e72161a-d68a-41f9-9688-403aa699f5be,https://biolit.fr/observations/observation-0e72161a-d68a-41f9-9688-403aa699f5be/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/physalie.jpeg,,TRUE, +N1,59211,sortie-0e72161a-d68a-41f9-9688-403aa699f5be,https://biolit.fr/sorties/sortie-0e72161a-d68a-41f9-9688-403aa699f5be/,Roman,,12/22/2019 0:00,15.0000000,17.0000000,47.687667000000,-3.35921000000,,Gâvres,39487,observation-0e72161a-d68a-41f9-9688-403aa699f5be-2,https://biolit.fr/observations/observation-0e72161a-d68a-41f9-9688-403aa699f5be-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/vélelle1.PNG,,TRUE, +N1,59212,sortie-2f86cd49-2039-4051-9416-28fdf42820a0,https://biolit.fr/sorties/sortie-2f86cd49-2039-4051-9416-28fdf42820a0/,Phil,,11/16/2019 0:00,11.0:55,12.000005,48.06061800000,-4.671648000000,,Cléden-Cap-Sizun - Finistère,39489,observation-2f86cd49-2039-4051-9416-28fdf42820a0,https://biolit.fr/observations/observation-2f86cd49-2039-4051-9416-28fdf42820a0/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191116_120049.jpg,,TRUE, +N1,59212,sortie-2f86cd49-2039-4051-9416-28fdf42820a0,https://biolit.fr/sorties/sortie-2f86cd49-2039-4051-9416-28fdf42820a0/,Phil,,11/16/2019 0:00,11.0:55,12.000005,48.06061800000,-4.671648000000,,Cléden-Cap-Sizun - Finistère,39491,observation-2f86cd49-2039-4051-9416-28fdf42820a0-2,https://biolit.fr/observations/observation-2f86cd49-2039-4051-9416-28fdf42820a0-2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191116_120011.jpg,,TRUE, +N1,59212,sortie-2f86cd49-2039-4051-9416-28fdf42820a0,https://biolit.fr/sorties/sortie-2f86cd49-2039-4051-9416-28fdf42820a0/,Phil,,11/16/2019 0:00,11.0:55,12.000005,48.06061800000,-4.671648000000,,Cléden-Cap-Sizun - Finistère,39493,observation-2f86cd49-2039-4051-9416-28fdf42820a0-3,https://biolit.fr/observations/observation-2f86cd49-2039-4051-9416-28fdf42820a0-3/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191116_115621.jpg,,TRUE, +N1,59212,sortie-2f86cd49-2039-4051-9416-28fdf42820a0,https://biolit.fr/sorties/sortie-2f86cd49-2039-4051-9416-28fdf42820a0/,Phil,,11/16/2019 0:00,11.0:55,12.000005,48.06061800000,-4.671648000000,,Cléden-Cap-Sizun - Finistère,39495,observation-2f86cd49-2039-4051-9416-28fdf42820a0-4,https://biolit.fr/observations/observation-2f86cd49-2039-4051-9416-28fdf42820a0-4/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191116_115635.jpg,,TRUE, +N1,59212,sortie-2f86cd49-2039-4051-9416-28fdf42820a0,https://biolit.fr/sorties/sortie-2f86cd49-2039-4051-9416-28fdf42820a0/,Phil,,11/16/2019 0:00,11.0:55,12.000005,48.06061800000,-4.671648000000,,Cléden-Cap-Sizun - Finistère,39497,observation-2f86cd49-2039-4051-9416-28fdf42820a0-5,https://biolit.fr/observations/observation-2f86cd49-2039-4051-9416-28fdf42820a0-5/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191116_115927.jpg,,TRUE, +N1,59212,sortie-2f86cd49-2039-4051-9416-28fdf42820a0,https://biolit.fr/sorties/sortie-2f86cd49-2039-4051-9416-28fdf42820a0/,Phil,,11/16/2019 0:00,11.0:55,12.000005,48.06061800000,-4.671648000000,,Cléden-Cap-Sizun - Finistère,39499,observation-2f86cd49-2039-4051-9416-28fdf42820a0-6,https://biolit.fr/observations/observation-2f86cd49-2039-4051-9416-28fdf42820a0-6/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191116_115949.jpg,,TRUE, +N1,59212,sortie-2f86cd49-2039-4051-9416-28fdf42820a0,https://biolit.fr/sorties/sortie-2f86cd49-2039-4051-9416-28fdf42820a0/,Phil,,11/16/2019 0:00,11.0:55,12.000005,48.06061800000,-4.671648000000,,Cléden-Cap-Sizun - Finistère,39501,observation-2f86cd49-2039-4051-9416-28fdf42820a0-7,https://biolit.fr/observations/observation-2f86cd49-2039-4051-9416-28fdf42820a0-7/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191116_120032.jpg,,TRUE, +N1,59212,sortie-2f86cd49-2039-4051-9416-28fdf42820a0,https://biolit.fr/sorties/sortie-2f86cd49-2039-4051-9416-28fdf42820a0/,Phil,,11/16/2019 0:00,11.0:55,12.000005,48.06061800000,-4.671648000000,,Cléden-Cap-Sizun - Finistère,39503,observation-2f86cd49-2039-4051-9416-28fdf42820a0-8,https://biolit.fr/observations/observation-2f86cd49-2039-4051-9416-28fdf42820a0-8/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191116_120339.jpg,,TRUE, +N1,59213,sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58,https://biolit.fr/sorties/sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58/,Roman,,12/19/2019 0:00,15.0000000,17.0000000,47.622235000000,-3.194206000000,,Erdeven,39505,observation-791b09cf-42fb-48a3-bfd9-a889d4846c58,https://biolit.fr/observations/observation-791b09cf-42fb-48a3-bfd9-a889d4846c58/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina.PNG,,TRUE, +N1,59213,sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58,https://biolit.fr/sorties/sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58/,Roman,,12/19/2019 0:00,15.0000000,17.0000000,47.622235000000,-3.194206000000,,Erdeven,39506,observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-2,https://biolit.fr/observations/observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-2/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus1.PNG,,TRUE, +N1,59213,sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58,https://biolit.fr/sorties/sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58/,Roman,,12/19/2019 0:00,15.0000000,17.0000000,47.622235000000,-3.194206000000,,Erdeven,39508,observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-3,https://biolit.fr/observations/observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-3/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/chthmalus stellatus3.PNG,,TRUE, +N1,59213,sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58,https://biolit.fr/sorties/sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58/,Roman,,12/19/2019 0:00,15.0000000,17.0000000,47.622235000000,-3.194206000000,,Erdeven,39510,observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-4,https://biolit.fr/observations/observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Diodora graeca1.PNG,,FALSE, +N1,59213,sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58,https://biolit.fr/sorties/sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58/,Roman,,12/19/2019 0:00,15.0000000,17.0000000,47.622235000000,-3.194206000000,,Erdeven,39512,observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-5,https://biolit.fr/observations/observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Donax vittatus1.PNG,,FALSE, +N1,59213,sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58,https://biolit.fr/sorties/sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58/,Roman,,12/19/2019 0:00,15.0000000,17.0000000,47.622235000000,-3.194206000000,,Erdeven,39514,observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-6,https://biolit.fr/observations/observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-6/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/lepas anatifera.PNG,,TRUE, +N1,59213,sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58,https://biolit.fr/sorties/sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58/,Roman,,12/19/2019 0:00,15.0000000,17.0000000,47.622235000000,-3.194206000000,,Erdeven,39515,observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-7,https://biolit.fr/observations/observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-7/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/moulière.PNG,,TRUE, +N1,59213,sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58,https://biolit.fr/sorties/sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58/,Roman,,12/19/2019 0:00,15.0000000,17.0000000,47.622235000000,-3.194206000000,,Erdeven,39517,observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-8,https://biolit.fr/observations/observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-8/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/nucella lapillus4.PNG,,TRUE, +N1,59213,sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58,https://biolit.fr/sorties/sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58/,Roman,,12/19/2019 0:00,15.0000000,17.0000000,47.622235000000,-3.194206000000,,Erdeven,39519,observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-9,https://biolit.fr/observations/observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-9/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/Tournepierre à collier.PNG,,TRUE, +N1,59213,sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58,https://biolit.fr/sorties/sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58/,Roman,,12/19/2019 0:00,15.0000000,17.0000000,47.622235000000,-3.194206000000,,Erdeven,39520,observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-10,https://biolit.fr/observations/observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-10/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Velella velella1.PNG,,TRUE, +N1,59214,sortie-d88c3886-cedb-4b90-b3bd-ecfd18103d78,https://biolit.fr/sorties/sortie-d88c3886-cedb-4b90-b3bd-ecfd18103d78/,Phil,,5/19/2019 0:00,12.0000000,12.0000000,47.800119000000,-4.180600000000,,Loctudy - Finistère,39522,observation-d88c3886-cedb-4b90-b3bd-ecfd18103d78,https://biolit.fr/observations/observation-d88c3886-cedb-4b90-b3bd-ecfd18103d78/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/20190519_123040.jpg,,TRUE, +N1,59214,sortie-d88c3886-cedb-4b90-b3bd-ecfd18103d78,https://biolit.fr/sorties/sortie-d88c3886-cedb-4b90-b3bd-ecfd18103d78/,Phil,,5/19/2019 0:00,12.0000000,12.0000000,47.800119000000,-4.180600000000,,Loctudy - Finistère,39524,observation-d88c3886-cedb-4b90-b3bd-ecfd18103d78-2,https://biolit.fr/observations/observation-d88c3886-cedb-4b90-b3bd-ecfd18103d78-2/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/20190519_123034.jpg,,TRUE, +N1,59214,sortie-d88c3886-cedb-4b90-b3bd-ecfd18103d78,https://biolit.fr/sorties/sortie-d88c3886-cedb-4b90-b3bd-ecfd18103d78/,Phil,,5/19/2019 0:00,12.0000000,12.0000000,47.800119000000,-4.180600000000,,Loctudy - Finistère,39526,observation-d88c3886-cedb-4b90-b3bd-ecfd18103d78-3,https://biolit.fr/observations/observation-d88c3886-cedb-4b90-b3bd-ecfd18103d78-3/,Aplidium elegans,Fraise de mer,,https://biolit.fr/wp-content/uploads/2023/07/20190519_122246.jpg,,TRUE, +N1,59214,sortie-d88c3886-cedb-4b90-b3bd-ecfd18103d78,https://biolit.fr/sorties/sortie-d88c3886-cedb-4b90-b3bd-ecfd18103d78/,Phil,,5/19/2019 0:00,12.0000000,12.0000000,47.800119000000,-4.180600000000,,Loctudy - Finistère,39528,observation-d88c3886-cedb-4b90-b3bd-ecfd18103d78-4,https://biolit.fr/observations/observation-d88c3886-cedb-4b90-b3bd-ecfd18103d78-4/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/20190519_120925.jpg,,TRUE, +N1,59214,sortie-d88c3886-cedb-4b90-b3bd-ecfd18103d78,https://biolit.fr/sorties/sortie-d88c3886-cedb-4b90-b3bd-ecfd18103d78/,Phil,,5/19/2019 0:00,12.0000000,12.0000000,47.800119000000,-4.180600000000,,Loctudy - Finistère,39530,observation-d88c3886-cedb-4b90-b3bd-ecfd18103d78-5,https://biolit.fr/observations/observation-d88c3886-cedb-4b90-b3bd-ecfd18103d78-5/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/20190519_120923.jpg,,TRUE, +N1,59215,sortie-b4db0f9e-1a39-4b16-864b-70e0bbee64ed,https://biolit.fr/sorties/sortie-b4db0f9e-1a39-4b16-864b-70e0bbee64ed/,Elodie_LS,,11/28/2019 0:00,18.0000000,19.0000000,47.273443000000,-2.481286000000,,Plage Saint-Michel,39532,observation-b4db0f9e-1a39-4b16-864b-70e0bbee64ed,https://biolit.fr/observations/observation-b4db0f9e-1a39-4b16-864b-70e0bbee64ed/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/2023/07/P1002393-scaled.jpg,,TRUE, +N1,59216,sortie-b2793478-3e07-4b53-8d16-7c5b4661ff97,https://biolit.fr/sorties/sortie-b2793478-3e07-4b53-8d16-7c5b4661ff97/,Phil,,12/14/2019 0:00,12.0000000,12.0:15,47.794841000000,-4.215769000000,,Lesconil - Finistère,39534,observation-b2793478-3e07-4b53-8d16-7c5b4661ff97,https://biolit.fr/observations/observation-b2793478-3e07-4b53-8d16-7c5b4661ff97/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191214_121255.jpg,,FALSE, +N1,59216,sortie-b2793478-3e07-4b53-8d16-7c5b4661ff97,https://biolit.fr/sorties/sortie-b2793478-3e07-4b53-8d16-7c5b4661ff97/,Phil,,12/14/2019 0:00,12.0000000,12.0:15,47.794841000000,-4.215769000000,,Lesconil - Finistère,39536,observation-b2793478-3e07-4b53-8d16-7c5b4661ff97-2,https://biolit.fr/observations/observation-b2793478-3e07-4b53-8d16-7c5b4661ff97-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191214_121259.jpg,,FALSE, +N1,59216,sortie-b2793478-3e07-4b53-8d16-7c5b4661ff97,https://biolit.fr/sorties/sortie-b2793478-3e07-4b53-8d16-7c5b4661ff97/,Phil,,12/14/2019 0:00,12.0000000,12.0:15,47.794841000000,-4.215769000000,,Lesconil - Finistère,39538,observation-b2793478-3e07-4b53-8d16-7c5b4661ff97-3,https://biolit.fr/observations/observation-b2793478-3e07-4b53-8d16-7c5b4661ff97-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191214_121314.jpg,,FALSE, +N1,59216,sortie-b2793478-3e07-4b53-8d16-7c5b4661ff97,https://biolit.fr/sorties/sortie-b2793478-3e07-4b53-8d16-7c5b4661ff97/,Phil,,12/14/2019 0:00,12.0000000,12.0:15,47.794841000000,-4.215769000000,,Lesconil - Finistère,39540,observation-b2793478-3e07-4b53-8d16-7c5b4661ff97-4,https://biolit.fr/observations/observation-b2793478-3e07-4b53-8d16-7c5b4661ff97-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191214_121404.jpg,,FALSE, +N1,59216,sortie-b2793478-3e07-4b53-8d16-7c5b4661ff97,https://biolit.fr/sorties/sortie-b2793478-3e07-4b53-8d16-7c5b4661ff97/,Phil,,12/14/2019 0:00,12.0000000,12.0:15,47.794841000000,-4.215769000000,,Lesconil - Finistère,39542,observation-b2793478-3e07-4b53-8d16-7c5b4661ff97-5,https://biolit.fr/observations/observation-b2793478-3e07-4b53-8d16-7c5b4661ff97-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191214_121450.jpg,,FALSE, +N1,59217,sortie-7815b9b6-8399-4044-be3f-45c18d3280b6,https://biolit.fr/sorties/sortie-7815b9b6-8399-4044-be3f-45c18d3280b6/,Roman,,12/13/2019 0:00,14.0:15,15.0000000,47.696407000000,-3.3542910000,,Gâvres,39544,observation-7815b9b6-8399-4044-be3f-45c18d3280b6,https://biolit.fr/observations/observation-7815b9b6-8399-4044-be3f-45c18d3280b6/,Antalis vulgaris,Dentale,,https://biolit.fr/wp-content/uploads/2023/07/Antalis vulgaris1.PNG,,TRUE, +N1,59217,sortie-7815b9b6-8399-4044-be3f-45c18d3280b6,https://biolit.fr/sorties/sortie-7815b9b6-8399-4044-be3f-45c18d3280b6/,Roman,,12/13/2019 0:00,14.0:15,15.0000000,47.696407000000,-3.3542910000,,Gâvres,39546,observation-7815b9b6-8399-4044-be3f-45c18d3280b6-2,https://biolit.fr/observations/observation-7815b9b6-8399-4044-be3f-45c18d3280b6-2/,Antalis vulgaris,Dentale,,https://biolit.fr/wp-content/uploads/2023/07/Antalis novemcostata.PNG,,TRUE, +N1,59217,sortie-7815b9b6-8399-4044-be3f-45c18d3280b6,https://biolit.fr/sorties/sortie-7815b9b6-8399-4044-be3f-45c18d3280b6/,Roman,,12/13/2019 0:00,14.0:15,15.0000000,47.696407000000,-3.3542910000,,Gâvres,39548,observation-7815b9b6-8399-4044-be3f-45c18d3280b6-3,https://biolit.fr/observations/observation-7815b9b6-8399-4044-be3f-45c18d3280b6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/arcopagia crassa1.PNG,,FALSE, +N1,59217,sortie-7815b9b6-8399-4044-be3f-45c18d3280b6,https://biolit.fr/sorties/sortie-7815b9b6-8399-4044-be3f-45c18d3280b6/,Roman,,12/13/2019 0:00,14.0:15,15.0000000,47.696407000000,-3.3542910000,,Gâvres,39550,observation-7815b9b6-8399-4044-be3f-45c18d3280b6-4,https://biolit.fr/observations/observation-7815b9b6-8399-4044-be3f-45c18d3280b6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capsella variegata1.PNG,,FALSE, +N1,59217,sortie-7815b9b6-8399-4044-be3f-45c18d3280b6,https://biolit.fr/sorties/sortie-7815b9b6-8399-4044-be3f-45c18d3280b6/,Roman,,12/13/2019 0:00,14.0:15,15.0000000,47.696407000000,-3.3542910000,,Gâvres,39552,observation-7815b9b6-8399-4044-be3f-45c18d3280b6-5,https://biolit.fr/observations/observation-7815b9b6-8399-4044-be3f-45c18d3280b6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/cerastoderma edule1.PNG,,FALSE, +N1,59217,sortie-7815b9b6-8399-4044-be3f-45c18d3280b6,https://biolit.fr/sorties/sortie-7815b9b6-8399-4044-be3f-45c18d3280b6/,Roman,,12/13/2019 0:00,14.0:15,15.0000000,47.696407000000,-3.3542910000,,Gâvres,39554,observation-7815b9b6-8399-4044-be3f-45c18d3280b6-6,https://biolit.fr/observations/observation-7815b9b6-8399-4044-be3f-45c18d3280b6-6/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/chthmalus stellatus2.PNG,,TRUE, +N1,59217,sortie-7815b9b6-8399-4044-be3f-45c18d3280b6,https://biolit.fr/sorties/sortie-7815b9b6-8399-4044-be3f-45c18d3280b6/,Roman,,12/13/2019 0:00,14.0:15,15.0000000,47.696407000000,-3.3542910000,,Gâvres,39556,observation-7815b9b6-8399-4044-be3f-45c18d3280b6-7,https://biolit.fr/observations/observation-7815b9b6-8399-4044-be3f-45c18d3280b6-7/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/littorina littorea1.PNG,,TRUE, +N1,59217,sortie-7815b9b6-8399-4044-be3f-45c18d3280b6,https://biolit.fr/sorties/sortie-7815b9b6-8399-4044-be3f-45c18d3280b6/,Roman,,12/13/2019 0:00,14.0:15,15.0000000,47.696407000000,-3.3542910000,,Gâvres,39558,observation-7815b9b6-8399-4044-be3f-45c18d3280b6-8,https://biolit.fr/observations/observation-7815b9b6-8399-4044-be3f-45c18d3280b6-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes philippinarum.PNG,,FALSE, +N1,59217,sortie-7815b9b6-8399-4044-be3f-45c18d3280b6,https://biolit.fr/sorties/sortie-7815b9b6-8399-4044-be3f-45c18d3280b6/,Roman,,12/13/2019 0:00,14.0:15,15.0000000,47.696407000000,-3.3542910000,,Gâvres,39559,observation-7815b9b6-8399-4044-be3f-45c18d3280b6-9,https://biolit.fr/observations/observation-7815b9b6-8399-4044-be3f-45c18d3280b6-9/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/velella velella.PNG,,TRUE, +N1,59218,sortie-999322e8-8e29-4b98-a03e-52a45fe2dd50,https://biolit.fr/sorties/sortie-999322e8-8e29-4b98-a03e-52a45fe2dd50/,Phil,,05/05/2019,13.0:55,14.0000000,47.800039000000,-4.180675000000,,Loctudy - Finistère,39560,observation-999322e8-8e29-4b98-a03e-52a45fe2dd50,https://biolit.fr/observations/observation-999322e8-8e29-4b98-a03e-52a45fe2dd50/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20190505_135833.jpg,,TRUE, +N1,59218,sortie-999322e8-8e29-4b98-a03e-52a45fe2dd50,https://biolit.fr/sorties/sortie-999322e8-8e29-4b98-a03e-52a45fe2dd50/,Phil,,05/05/2019,13.0:55,14.0000000,47.800039000000,-4.180675000000,,Loctudy - Finistère,39562,observation-999322e8-8e29-4b98-a03e-52a45fe2dd50-2,https://biolit.fr/observations/observation-999322e8-8e29-4b98-a03e-52a45fe2dd50-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_135935.jpg,,FALSE, +N1,59218,sortie-999322e8-8e29-4b98-a03e-52a45fe2dd50,https://biolit.fr/sorties/sortie-999322e8-8e29-4b98-a03e-52a45fe2dd50/,Phil,,05/05/2019,13.0:55,14.0000000,47.800039000000,-4.180675000000,,Loctudy - Finistère,39564,observation-999322e8-8e29-4b98-a03e-52a45fe2dd50-3,https://biolit.fr/observations/observation-999322e8-8e29-4b98-a03e-52a45fe2dd50-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_135942.jpg,,FALSE, +N1,59218,sortie-999322e8-8e29-4b98-a03e-52a45fe2dd50,https://biolit.fr/sorties/sortie-999322e8-8e29-4b98-a03e-52a45fe2dd50/,Phil,,05/05/2019,13.0:55,14.0000000,47.800039000000,-4.180675000000,,Loctudy - Finistère,39566,observation-999322e8-8e29-4b98-a03e-52a45fe2dd50-4,https://biolit.fr/observations/observation-999322e8-8e29-4b98-a03e-52a45fe2dd50-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_135952.jpg,,FALSE, +N1,59218,sortie-999322e8-8e29-4b98-a03e-52a45fe2dd50,https://biolit.fr/sorties/sortie-999322e8-8e29-4b98-a03e-52a45fe2dd50/,Phil,,05/05/2019,13.0:55,14.0000000,47.800039000000,-4.180675000000,,Loctudy - Finistère,39568,observation-999322e8-8e29-4b98-a03e-52a45fe2dd50-5,https://biolit.fr/observations/observation-999322e8-8e29-4b98-a03e-52a45fe2dd50-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_140005.jpg,,FALSE, +N1,59218,sortie-999322e8-8e29-4b98-a03e-52a45fe2dd50,https://biolit.fr/sorties/sortie-999322e8-8e29-4b98-a03e-52a45fe2dd50/,Phil,,05/05/2019,13.0:55,14.0000000,47.800039000000,-4.180675000000,,Loctudy - Finistère,39570,observation-999322e8-8e29-4b98-a03e-52a45fe2dd50-6,https://biolit.fr/observations/observation-999322e8-8e29-4b98-a03e-52a45fe2dd50-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_141234.jpg,,FALSE, +N1,59219,sortie-3cda6d3c-ed17-4cba-b4c6-16e706379728,https://biolit.fr/sorties/sortie-3cda6d3c-ed17-4cba-b4c6-16e706379728/,Phil,,05/05/2018,17.0000000,17.0:15,48.576019000000,-4.62590100000,,Saint-Pabu - Finistère,39572,observation-3cda6d3c-ed17-4cba-b4c6-16e706379728,https://biolit.fr/observations/observation-3cda6d3c-ed17-4cba-b4c6-16e706379728/,Littorina compressa,Littorine à lignes noires,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110216.JPG,,TRUE, +N1,59219,sortie-3cda6d3c-ed17-4cba-b4c6-16e706379728,https://biolit.fr/sorties/sortie-3cda6d3c-ed17-4cba-b4c6-16e706379728/,Phil,,05/05/2018,17.0000000,17.0:15,48.576019000000,-4.62590100000,,Saint-Pabu - Finistère,39574,observation-3cda6d3c-ed17-4cba-b4c6-16e706379728-2,https://biolit.fr/observations/observation-3cda6d3c-ed17-4cba-b4c6-16e706379728-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110215.JPG,,FALSE, +N1,59219,sortie-3cda6d3c-ed17-4cba-b4c6-16e706379728,https://biolit.fr/sorties/sortie-3cda6d3c-ed17-4cba-b4c6-16e706379728/,Phil,,05/05/2018,17.0000000,17.0:15,48.576019000000,-4.62590100000,,Saint-Pabu - Finistère,39576,observation-3cda6d3c-ed17-4cba-b4c6-16e706379728-3,https://biolit.fr/observations/observation-3cda6d3c-ed17-4cba-b4c6-16e706379728-3/,Littorina compressa,Littorine à lignes noires,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110217.JPG,,TRUE, +N1,59220,sortie-84fd3505-4651-43e0-a8c7-266de9167153,https://biolit.fr/sorties/sortie-84fd3505-4651-43e0-a8c7-266de9167153/,LABELBLEU,,11/19/2019 0:00,15.0000000,16.0000000,42.581605000000,3.045427000000,LABELBLEU,Réserve naturelle du Mas Larrieu,39578,observation-84fd3505-4651-43e0-a8c7-266de9167153,https://biolit.fr/observations/observation-84fd3505-4651-43e0-a8c7-266de9167153/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_0413-scaled.jpg,,FALSE, +N1,59220,sortie-84fd3505-4651-43e0-a8c7-266de9167153,https://biolit.fr/sorties/sortie-84fd3505-4651-43e0-a8c7-266de9167153/,LABELBLEU,,11/19/2019 0:00,15.0000000,16.0000000,42.581605000000,3.045427000000,LABELBLEU,Réserve naturelle du Mas Larrieu,39580,observation-84fd3505-4651-43e0-a8c7-266de9167153-2,https://biolit.fr/observations/observation-84fd3505-4651-43e0-a8c7-266de9167153-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_0412-scaled.jpg,,FALSE, +N1,59220,sortie-84fd3505-4651-43e0-a8c7-266de9167153,https://biolit.fr/sorties/sortie-84fd3505-4651-43e0-a8c7-266de9167153/,LABELBLEU,,11/19/2019 0:00,15.0000000,16.0000000,42.581605000000,3.045427000000,LABELBLEU,Réserve naturelle du Mas Larrieu,39582,observation-84fd3505-4651-43e0-a8c7-266de9167153-3,https://biolit.fr/observations/observation-84fd3505-4651-43e0-a8c7-266de9167153-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_0411-scaled.jpg,,FALSE, +N1,59220,sortie-84fd3505-4651-43e0-a8c7-266de9167153,https://biolit.fr/sorties/sortie-84fd3505-4651-43e0-a8c7-266de9167153/,LABELBLEU,,11/19/2019 0:00,15.0000000,16.0000000,42.581605000000,3.045427000000,LABELBLEU,Réserve naturelle du Mas Larrieu,39584,observation-84fd3505-4651-43e0-a8c7-266de9167153-4,https://biolit.fr/observations/observation-84fd3505-4651-43e0-a8c7-266de9167153-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_0410-scaled.jpg,,FALSE, +N1,59220,sortie-84fd3505-4651-43e0-a8c7-266de9167153,https://biolit.fr/sorties/sortie-84fd3505-4651-43e0-a8c7-266de9167153/,LABELBLEU,,11/19/2019 0:00,15.0000000,16.0000000,42.581605000000,3.045427000000,LABELBLEU,Réserve naturelle du Mas Larrieu,39586,observation-84fd3505-4651-43e0-a8c7-266de9167153-5,https://biolit.fr/observations/observation-84fd3505-4651-43e0-a8c7-266de9167153-5/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/100_0408-scaled.jpg,,TRUE, +N1,59220,sortie-84fd3505-4651-43e0-a8c7-266de9167153,https://biolit.fr/sorties/sortie-84fd3505-4651-43e0-a8c7-266de9167153/,LABELBLEU,,11/19/2019 0:00,15.0000000,16.0000000,42.581605000000,3.045427000000,LABELBLEU,Réserve naturelle du Mas Larrieu,39588,observation-84fd3505-4651-43e0-a8c7-266de9167153-6,https://biolit.fr/observations/observation-84fd3505-4651-43e0-a8c7-266de9167153-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_0407-scaled.jpg,,FALSE, +N1,59220,sortie-84fd3505-4651-43e0-a8c7-266de9167153,https://biolit.fr/sorties/sortie-84fd3505-4651-43e0-a8c7-266de9167153/,LABELBLEU,,11/19/2019 0:00,15.0000000,16.0000000,42.581605000000,3.045427000000,LABELBLEU,Réserve naturelle du Mas Larrieu,39590,observation-84fd3505-4651-43e0-a8c7-266de9167153-7,https://biolit.fr/observations/observation-84fd3505-4651-43e0-a8c7-266de9167153-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4516[1]-scaled.jpg,,FALSE, +N1,59221,sortie-cb90b489-4b86-4da7-8c83-5de54b93b600,https://biolit.fr/sorties/sortie-cb90b489-4b86-4da7-8c83-5de54b93b600/,vautrin.matthieu,,12/01/2019,15.0000000,16.0000000,51.0332930,2.3830920,,Plage de leffrinckoucke ,39592,observation-cb90b489-4b86-4da7-8c83-5de54b93b600,https://biolit.fr/observations/observation-cb90b489-4b86-4da7-8c83-5de54b93b600/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20191130_161636-scaled.jpg,,TRUE, +N1,59222,sortie-f1243e53-ae3b-40dd-afd1-5ed5af8b0153,https://biolit.fr/sorties/sortie-f1243e53-ae3b-40dd-afd1-5ed5af8b0153/,Phil,,05/05/2019,13.0:45,13.0:55,47.80008700000,-4.179538000000,,Loctudy - Finistère,39594,observation-f1243e53-ae3b-40dd-afd1-5ed5af8b0153,https://biolit.fr/observations/observation-f1243e53-ae3b-40dd-afd1-5ed5af8b0153/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_134759.jpg,,FALSE, +N1,59222,sortie-f1243e53-ae3b-40dd-afd1-5ed5af8b0153,https://biolit.fr/sorties/sortie-f1243e53-ae3b-40dd-afd1-5ed5af8b0153/,Phil,,05/05/2019,13.0:45,13.0:55,47.80008700000,-4.179538000000,,Loctudy - Finistère,39596,observation-f1243e53-ae3b-40dd-afd1-5ed5af8b0153-2,https://biolit.fr/observations/observation-f1243e53-ae3b-40dd-afd1-5ed5af8b0153-2/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20190505_134803.jpg,,TRUE, +N1,59222,sortie-f1243e53-ae3b-40dd-afd1-5ed5af8b0153,https://biolit.fr/sorties/sortie-f1243e53-ae3b-40dd-afd1-5ed5af8b0153/,Phil,,05/05/2019,13.0:45,13.0:55,47.80008700000,-4.179538000000,,Loctudy - Finistère,39598,observation-f1243e53-ae3b-40dd-afd1-5ed5af8b0153-3,https://biolit.fr/observations/observation-f1243e53-ae3b-40dd-afd1-5ed5af8b0153-3/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20190505_135650.jpg,,TRUE, +N1,59222,sortie-f1243e53-ae3b-40dd-afd1-5ed5af8b0153,https://biolit.fr/sorties/sortie-f1243e53-ae3b-40dd-afd1-5ed5af8b0153/,Phil,,05/05/2019,13.0:45,13.0:55,47.80008700000,-4.179538000000,,Loctudy - Finistère,39600,observation-f1243e53-ae3b-40dd-afd1-5ed5af8b0153-4,https://biolit.fr/observations/observation-f1243e53-ae3b-40dd-afd1-5ed5af8b0153-4/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20190505_135707.jpg,,TRUE, +N1,59223,sortie-20b9649e-9fb2-4f35-9282-b1aca8bde030,https://biolit.fr/sorties/sortie-20b9649e-9fb2-4f35-9282-b1aca8bde030/,Phil,,10/22/2019 0:00,12.0000000,12.0:35,48.092890000000,-4.297637000000,,Douarnenez - Finistère,39602,observation-20b9649e-9fb2-4f35-9282-b1aca8bde030,https://biolit.fr/observations/observation-20b9649e-9fb2-4f35-9282-b1aca8bde030/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130438.JPG,,FALSE, +N1,59223,sortie-20b9649e-9fb2-4f35-9282-b1aca8bde030,https://biolit.fr/sorties/sortie-20b9649e-9fb2-4f35-9282-b1aca8bde030/,Phil,,10/22/2019 0:00,12.0000000,12.0:35,48.092890000000,-4.297637000000,,Douarnenez - Finistère,39604,observation-20b9649e-9fb2-4f35-9282-b1aca8bde030-2,https://biolit.fr/observations/observation-20b9649e-9fb2-4f35-9282-b1aca8bde030-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130435.JPG,,FALSE, +N1,59223,sortie-20b9649e-9fb2-4f35-9282-b1aca8bde030,https://biolit.fr/sorties/sortie-20b9649e-9fb2-4f35-9282-b1aca8bde030/,Phil,,10/22/2019 0:00,12.0000000,12.0:35,48.092890000000,-4.297637000000,,Douarnenez - Finistère,39606,observation-20b9649e-9fb2-4f35-9282-b1aca8bde030-3,https://biolit.fr/observations/observation-20b9649e-9fb2-4f35-9282-b1aca8bde030-3/,Pharus legumen,Couteau-gousse,,https://biolit.fr/wp-content/uploads/2023/07/P1130434.JPG,,TRUE, +N1,59223,sortie-20b9649e-9fb2-4f35-9282-b1aca8bde030,https://biolit.fr/sorties/sortie-20b9649e-9fb2-4f35-9282-b1aca8bde030/,Phil,,10/22/2019 0:00,12.0000000,12.0:35,48.092890000000,-4.297637000000,,Douarnenez - Finistère,39608,observation-20b9649e-9fb2-4f35-9282-b1aca8bde030-4,https://biolit.fr/observations/observation-20b9649e-9fb2-4f35-9282-b1aca8bde030-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130433.JPG,,FALSE, +N1,59223,sortie-20b9649e-9fb2-4f35-9282-b1aca8bde030,https://biolit.fr/sorties/sortie-20b9649e-9fb2-4f35-9282-b1aca8bde030/,Phil,,10/22/2019 0:00,12.0000000,12.0:35,48.092890000000,-4.297637000000,,Douarnenez - Finistère,39610,observation-20b9649e-9fb2-4f35-9282-b1aca8bde030-5,https://biolit.fr/observations/observation-20b9649e-9fb2-4f35-9282-b1aca8bde030-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130432.JPG,,FALSE, +N1,59224,sortie-3e67c690-9832-49b4-9094-a99e90cd488f,https://biolit.fr/sorties/sortie-3e67c690-9832-49b4-9094-a99e90cd488f/,Phil,,11/01/2019,13.0000000,13.000005,47.796354000000,-3.851783000000,,Trévignon - Finistère,39612,observation-3e67c690-9832-49b4-9094-a99e90cd488f,https://biolit.fr/observations/observation-3e67c690-9832-49b4-9094-a99e90cd488f/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20191101_125933.jpg,,TRUE, +N1,59224,sortie-3e67c690-9832-49b4-9094-a99e90cd488f,https://biolit.fr/sorties/sortie-3e67c690-9832-49b4-9094-a99e90cd488f/,Phil,,11/01/2019,13.0000000,13.000005,47.796354000000,-3.851783000000,,Trévignon - Finistère,39614,observation-3e67c690-9832-49b4-9094-a99e90cd488f-2,https://biolit.fr/observations/observation-3e67c690-9832-49b4-9094-a99e90cd488f-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20191101_130020.jpg,,TRUE, +N1,59224,sortie-3e67c690-9832-49b4-9094-a99e90cd488f,https://biolit.fr/sorties/sortie-3e67c690-9832-49b4-9094-a99e90cd488f/,Phil,,11/01/2019,13.0000000,13.000005,47.796354000000,-3.851783000000,,Trévignon - Finistère,39616,observation-3e67c690-9832-49b4-9094-a99e90cd488f-3,https://biolit.fr/observations/observation-3e67c690-9832-49b4-9094-a99e90cd488f-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20191101_130034.jpg,,TRUE, +N1,59224,sortie-3e67c690-9832-49b4-9094-a99e90cd488f,https://biolit.fr/sorties/sortie-3e67c690-9832-49b4-9094-a99e90cd488f/,Phil,,11/01/2019,13.0000000,13.000005,47.796354000000,-3.851783000000,,Trévignon - Finistère,39618,observation-3e67c690-9832-49b4-9094-a99e90cd488f-4,https://biolit.fr/observations/observation-3e67c690-9832-49b4-9094-a99e90cd488f-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20191101_130105.jpg,,TRUE, +N1,59225,sortie-2bfda373-c560-4022-a263-8f44c8addfe7,https://biolit.fr/sorties/sortie-2bfda373-c560-4022-a263-8f44c8addfe7/,Bigoudie,,12/02/2019,12.000005,12.0000000,47.09439500000,-2.053119000000,,Plage de la Boutinardière,39620,observation-2bfda373-c560-4022-a263-8f44c8addfe7,https://biolit.fr/observations/observation-2bfda373-c560-4022-a263-8f44c8addfe7/,,,,https://biolit.fr/wp-content/uploads/2023/07/PC020045-scaled.jpg,,FALSE, +N1,59225,sortie-2bfda373-c560-4022-a263-8f44c8addfe7,https://biolit.fr/sorties/sortie-2bfda373-c560-4022-a263-8f44c8addfe7/,Bigoudie,,12/02/2019,12.000005,12.0000000,47.09439500000,-2.053119000000,,Plage de la Boutinardière,39622,observation-2bfda373-c560-4022-a263-8f44c8addfe7-2,https://biolit.fr/observations/observation-2bfda373-c560-4022-a263-8f44c8addfe7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/PC020048-scaled.jpg,,FALSE, +N1,59225,sortie-2bfda373-c560-4022-a263-8f44c8addfe7,https://biolit.fr/sorties/sortie-2bfda373-c560-4022-a263-8f44c8addfe7/,Bigoudie,,12/02/2019,12.000005,12.0000000,47.09439500000,-2.053119000000,,Plage de la Boutinardière,39624,observation-2bfda373-c560-4022-a263-8f44c8addfe7-3,https://biolit.fr/observations/observation-2bfda373-c560-4022-a263-8f44c8addfe7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/PC020041-scaled.jpg,,FALSE, +N1,59225,sortie-2bfda373-c560-4022-a263-8f44c8addfe7,https://biolit.fr/sorties/sortie-2bfda373-c560-4022-a263-8f44c8addfe7/,Bigoudie,,12/02/2019,12.000005,12.0000000,47.09439500000,-2.053119000000,,Plage de la Boutinardière,39626,observation-2bfda373-c560-4022-a263-8f44c8addfe7-4,https://biolit.fr/observations/observation-2bfda373-c560-4022-a263-8f44c8addfe7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/PC020046-scaled.jpg,,FALSE, +N1,59225,sortie-2bfda373-c560-4022-a263-8f44c8addfe7,https://biolit.fr/sorties/sortie-2bfda373-c560-4022-a263-8f44c8addfe7/,Bigoudie,,12/02/2019,12.000005,12.0000000,47.09439500000,-2.053119000000,,Plage de la Boutinardière,39628,observation-2bfda373-c560-4022-a263-8f44c8addfe7-5,https://biolit.fr/observations/observation-2bfda373-c560-4022-a263-8f44c8addfe7-5/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/PC020038-scaled.jpg,,TRUE, +N1,59226,sortie-cd6dec87-773f-4c4b-90b2-ffab9c1a1b96,https://biolit.fr/sorties/sortie-cd6dec87-773f-4c4b-90b2-ffab9c1a1b96/,Bigoudie,,12/02/2019,12.000005,12.0000000,47.094395000000,-2.053168000000,,Plage de la Boutinardière,39630,observation-cd6dec87-773f-4c4b-90b2-ffab9c1a1b96,https://biolit.fr/observations/observation-cd6dec87-773f-4c4b-90b2-ffab9c1a1b96/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/PC020028-scaled.jpg,,TRUE, +N1,59226,sortie-cd6dec87-773f-4c4b-90b2-ffab9c1a1b96,https://biolit.fr/sorties/sortie-cd6dec87-773f-4c4b-90b2-ffab9c1a1b96/,Bigoudie,,12/02/2019,12.000005,12.0000000,47.094395000000,-2.053168000000,,Plage de la Boutinardière,39632,observation-cd6dec87-773f-4c4b-90b2-ffab9c1a1b96-2,https://biolit.fr/observations/observation-cd6dec87-773f-4c4b-90b2-ffab9c1a1b96-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/PC020021-scaled.jpg,,TRUE, +N1,59226,sortie-cd6dec87-773f-4c4b-90b2-ffab9c1a1b96,https://biolit.fr/sorties/sortie-cd6dec87-773f-4c4b-90b2-ffab9c1a1b96/,Bigoudie,,12/02/2019,12.000005,12.0000000,47.094395000000,-2.053168000000,,Plage de la Boutinardière,39634,observation-cd6dec87-773f-4c4b-90b2-ffab9c1a1b96-3,https://biolit.fr/observations/observation-cd6dec87-773f-4c4b-90b2-ffab9c1a1b96-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/PC020022-scaled.jpg,,TRUE, +N1,59226,sortie-cd6dec87-773f-4c4b-90b2-ffab9c1a1b96,https://biolit.fr/sorties/sortie-cd6dec87-773f-4c4b-90b2-ffab9c1a1b96/,Bigoudie,,12/02/2019,12.000005,12.0000000,47.094395000000,-2.053168000000,,Plage de la Boutinardière,39636,observation-cd6dec87-773f-4c4b-90b2-ffab9c1a1b96-4,https://biolit.fr/observations/observation-cd6dec87-773f-4c4b-90b2-ffab9c1a1b96-4/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/PC020010-scaled.jpg,,TRUE, +N1,59227,sortie-4cda50b3-4c03-479e-885a-33eedf4d1b03,https://biolit.fr/sorties/sortie-4cda50b3-4c03-479e-885a-33eedf4d1b03/,Phil,,05/05/2019,13.0000000,13.0:45,47.800750000000,-4.180718000000,,Loctudy - Finistère,39638,observation-4cda50b3-4c03-479e-885a-33eedf4d1b03,https://biolit.fr/observations/observation-4cda50b3-4c03-479e-885a-33eedf4d1b03/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20190505_134242.jpg,,TRUE, +N1,59227,sortie-4cda50b3-4c03-479e-885a-33eedf4d1b03,https://biolit.fr/sorties/sortie-4cda50b3-4c03-479e-885a-33eedf4d1b03/,Phil,,05/05/2019,13.0000000,13.0:45,47.800750000000,-4.180718000000,,Loctudy - Finistère,39640,observation-4cda50b3-4c03-479e-885a-33eedf4d1b03-2,https://biolit.fr/observations/observation-4cda50b3-4c03-479e-885a-33eedf4d1b03-2/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20190505_134235.jpg,,TRUE, +N1,59227,sortie-4cda50b3-4c03-479e-885a-33eedf4d1b03,https://biolit.fr/sorties/sortie-4cda50b3-4c03-479e-885a-33eedf4d1b03/,Phil,,05/05/2019,13.0000000,13.0:45,47.800750000000,-4.180718000000,,Loctudy - Finistère,39642,observation-4cda50b3-4c03-479e-885a-33eedf4d1b03-3,https://biolit.fr/observations/observation-4cda50b3-4c03-479e-885a-33eedf4d1b03-3/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20190505_134118.jpg,,TRUE, +N1,59227,sortie-4cda50b3-4c03-479e-885a-33eedf4d1b03,https://biolit.fr/sorties/sortie-4cda50b3-4c03-479e-885a-33eedf4d1b03/,Phil,,05/05/2019,13.0000000,13.0:45,47.800750000000,-4.180718000000,,Loctudy - Finistère,39644,observation-4cda50b3-4c03-479e-885a-33eedf4d1b03-4,https://biolit.fr/observations/observation-4cda50b3-4c03-479e-885a-33eedf4d1b03-4/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20190505_134304.jpg,,TRUE, +N1,59228,sortie-c9d4b3dc-78b1-4691-9a52-6cf547091814,https://biolit.fr/sorties/sortie-c9d4b3dc-78b1-4691-9a52-6cf547091814/,Phil,,10/29/2019 0:00,11.0:45,11.0000000,47.844735000000,-4.166026000000,,Île-Tudy - Finistère,39646,observation-c9d4b3dc-78b1-4691-9a52-6cf547091814,https://biolit.fr/observations/observation-c9d4b3dc-78b1-4691-9a52-6cf547091814/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191029_114829.jpg,,FALSE, +N1,59228,sortie-c9d4b3dc-78b1-4691-9a52-6cf547091814,https://biolit.fr/sorties/sortie-c9d4b3dc-78b1-4691-9a52-6cf547091814/,Phil,,10/29/2019 0:00,11.0:45,11.0000000,47.844735000000,-4.166026000000,,Île-Tudy - Finistère,39648,observation-c9d4b3dc-78b1-4691-9a52-6cf547091814-2,https://biolit.fr/observations/observation-c9d4b3dc-78b1-4691-9a52-6cf547091814-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191029_114757.jpg,,FALSE, +N1,59228,sortie-c9d4b3dc-78b1-4691-9a52-6cf547091814,https://biolit.fr/sorties/sortie-c9d4b3dc-78b1-4691-9a52-6cf547091814/,Phil,,10/29/2019 0:00,11.0:45,11.0000000,47.844735000000,-4.166026000000,,Île-Tudy - Finistère,39650,observation-c9d4b3dc-78b1-4691-9a52-6cf547091814-3,https://biolit.fr/observations/observation-c9d4b3dc-78b1-4691-9a52-6cf547091814-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191029_114854.jpg,,FALSE, +N1,59228,sortie-c9d4b3dc-78b1-4691-9a52-6cf547091814,https://biolit.fr/sorties/sortie-c9d4b3dc-78b1-4691-9a52-6cf547091814/,Phil,,10/29/2019 0:00,11.0:45,11.0000000,47.844735000000,-4.166026000000,,Île-Tudy - Finistère,39652,observation-c9d4b3dc-78b1-4691-9a52-6cf547091814-4,https://biolit.fr/observations/observation-c9d4b3dc-78b1-4691-9a52-6cf547091814-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191029_114929.jpg,,FALSE, +N1,59228,sortie-c9d4b3dc-78b1-4691-9a52-6cf547091814,https://biolit.fr/sorties/sortie-c9d4b3dc-78b1-4691-9a52-6cf547091814/,Phil,,10/29/2019 0:00,11.0:45,11.0000000,47.844735000000,-4.166026000000,,Île-Tudy - Finistère,39654,observation-c9d4b3dc-78b1-4691-9a52-6cf547091814-5,https://biolit.fr/observations/observation-c9d4b3dc-78b1-4691-9a52-6cf547091814-5/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20191029_115008.jpg,,TRUE, +N1,59228,sortie-c9d4b3dc-78b1-4691-9a52-6cf547091814,https://biolit.fr/sorties/sortie-c9d4b3dc-78b1-4691-9a52-6cf547091814/,Phil,,10/29/2019 0:00,11.0:45,11.0000000,47.844735000000,-4.166026000000,,Île-Tudy - Finistère,39656,observation-c9d4b3dc-78b1-4691-9a52-6cf547091814-6,https://biolit.fr/observations/observation-c9d4b3dc-78b1-4691-9a52-6cf547091814-6/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20191029_115014.jpg,,TRUE, +N1,59228,sortie-c9d4b3dc-78b1-4691-9a52-6cf547091814,https://biolit.fr/sorties/sortie-c9d4b3dc-78b1-4691-9a52-6cf547091814/,Phil,,10/29/2019 0:00,11.0:45,11.0000000,47.844735000000,-4.166026000000,,Île-Tudy - Finistère,39658,observation-c9d4b3dc-78b1-4691-9a52-6cf547091814-7,https://biolit.fr/observations/observation-c9d4b3dc-78b1-4691-9a52-6cf547091814-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191029_115022.jpg,,FALSE, +N1,59229,sortie-78a8e94f-0dee-4545-9c08-f5df336e9bf5,https://biolit.fr/sorties/sortie-78a8e94f-0dee-4545-9c08-f5df336e9bf5/,nathalie,,12/02/2019,14.0000000,16.0000000,46.093470000000,-1.100331000000,,Saint Jean des Sables ,39660,observation-78a8e94f-0dee-4545-9c08-f5df336e9bf5,https://biolit.fr/observations/observation-78a8e94f-0dee-4545-9c08-f5df336e9bf5/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20191202_145413-scaled.jpg,,TRUE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39662,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/Acanthocardia tuberculata.PNG,,TRUE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39663,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-2,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-2/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/Balanus perforatus.jpg,,TRUE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39664,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-3,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-3/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/calliostoma zizyphynum.PNG,,TRUE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39666,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-4,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Callista chione.PNG,,FALSE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39667,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-5,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/cerastoderma edule-scaled.jpg,,FALSE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39668,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-6,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-6/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crepidula fornicata.PNG,,TRUE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39669,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-7,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-7/,Epitonium clathrus,Scalaire,,https://biolit.fr/wp-content/uploads/2023/07/epitonium clathrus1.PNG,,TRUE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39671,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-8,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-8/,Echinocyamus pusillus,Fève de mer,,https://biolit.fr/wp-content/uploads/2023/07/Echinocyamus pusillus.PNG,,TRUE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39672,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-9,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-9/,Euspira catena,Natice porte-chaîne,,https://biolit.fr/wp-content/uploads/2023/07/eutice catena1.PNG,,TRUE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39674,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-10,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-10/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/2023/07/Mactra stultorum.PNG,,TRUE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39675,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-11,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-11/,Gari depressa,Psammobie déprimée,,https://biolit.fr/wp-content/uploads/2023/07/gari depressa 1.PNG,,TRUE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39677,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-12,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-12/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/nucella lapillus 3.PNG,,TRUE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39679,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-13,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-13/,Tricolia pullus,Phasianelle minuscule,,https://biolit.fr/wp-content/uploads/2023/07/Tricolia pullus.PNG,,TRUE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39680,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-14,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-14/,Trivia arctica,Grain de café rose,,https://biolit.fr/wp-content/uploads/2023/07/Trivia arctica.PNG,,TRUE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39681,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-15,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-15/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/Trivia monacha.PNG,,TRUE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39682,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-16,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-16/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Velelle-scaled.jpg,,TRUE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39683,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-17,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/Venerupis aurea.PNG,,FALSE, +N1,59231,sortie-3b2b9f08-7cec-46e4-8df0-1ff8656f211d,https://biolit.fr/sorties/sortie-3b2b9f08-7cec-46e4-8df0-1ff8656f211d/,Phil,,10/22/2019 0:00,12.0:45,12.0:55,48.100735000000,-4.345481000000,,Tréboul - Finistère,39684,observation-3b2b9f08-7cec-46e4-8df0-1ff8656f211d,https://biolit.fr/observations/observation-3b2b9f08-7cec-46e4-8df0-1ff8656f211d/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/2023/07/P1130411.JPG,,TRUE, +N1,59231,sortie-3b2b9f08-7cec-46e4-8df0-1ff8656f211d,https://biolit.fr/sorties/sortie-3b2b9f08-7cec-46e4-8df0-1ff8656f211d/,Phil,,10/22/2019 0:00,12.0:45,12.0:55,48.100735000000,-4.345481000000,,Tréboul - Finistère,39686,observation-3b2b9f08-7cec-46e4-8df0-1ff8656f211d-2,https://biolit.fr/observations/observation-3b2b9f08-7cec-46e4-8df0-1ff8656f211d-2/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/2023/07/P1130413.JPG,,TRUE, +N1,59231,sortie-3b2b9f08-7cec-46e4-8df0-1ff8656f211d,https://biolit.fr/sorties/sortie-3b2b9f08-7cec-46e4-8df0-1ff8656f211d/,Phil,,10/22/2019 0:00,12.0:45,12.0:55,48.100735000000,-4.345481000000,,Tréboul - Finistère,39688,observation-3b2b9f08-7cec-46e4-8df0-1ff8656f211d-3,https://biolit.fr/observations/observation-3b2b9f08-7cec-46e4-8df0-1ff8656f211d-3/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/P1130409.JPG,,TRUE, +N1,59232,sortie-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6,https://biolit.fr/sorties/sortie-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6/,Phil,,05/05/2019,13.0000000,13.0:35,47.800388000000,-4.179281000000,,Loctudy - Finistère,39690,observation-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6,https://biolit.fr/observations/observation-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/20190505_132922.jpg,,TRUE, +N1,59232,sortie-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6,https://biolit.fr/sorties/sortie-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6/,Phil,,05/05/2019,13.0000000,13.0:35,47.800388000000,-4.179281000000,,Loctudy - Finistère,39692,observation-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6-2,https://biolit.fr/observations/observation-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190505_132935.jpg,,TRUE, +N1,59232,sortie-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6,https://biolit.fr/sorties/sortie-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6/,Phil,,05/05/2019,13.0000000,13.0:35,47.800388000000,-4.179281000000,,Loctudy - Finistère,39694,observation-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6-3,https://biolit.fr/observations/observation-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6-3/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/20190505_133009.jpg,,TRUE, +N1,59232,sortie-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6,https://biolit.fr/sorties/sortie-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6/,Phil,,05/05/2019,13.0000000,13.0:35,47.800388000000,-4.179281000000,,Loctudy - Finistère,39696,observation-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6-4,https://biolit.fr/observations/observation-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6-4/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/20190505_133018.jpg,,TRUE, +N1,59232,sortie-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6,https://biolit.fr/sorties/sortie-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6/,Phil,,05/05/2019,13.0000000,13.0:35,47.800388000000,-4.179281000000,,Loctudy - Finistère,39698,observation-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6-5,https://biolit.fr/observations/observation-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6-5/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/20190505_133656.jpg,,TRUE, +N1,59233,sortie-b5ff7cbf-5976-4533-822a-ae07570a2e22,https://biolit.fr/sorties/sortie-b5ff7cbf-5976-4533-822a-ae07570a2e22/,Phil,,10/22/2019 0:00,12.0000000,12.0:35,48.093003000000,-4.297008000000,,Douarnenez - Finistère,39700,observation-b5ff7cbf-5976-4533-822a-ae07570a2e22,https://biolit.fr/observations/observation-b5ff7cbf-5976-4533-822a-ae07570a2e22/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130427.JPG,,FALSE, +N1,59233,sortie-b5ff7cbf-5976-4533-822a-ae07570a2e22,https://biolit.fr/sorties/sortie-b5ff7cbf-5976-4533-822a-ae07570a2e22/,Phil,,10/22/2019 0:00,12.0000000,12.0:35,48.093003000000,-4.297008000000,,Douarnenez - Finistère,39702,observation-b5ff7cbf-5976-4533-822a-ae07570a2e22-2,https://biolit.fr/observations/observation-b5ff7cbf-5976-4533-822a-ae07570a2e22-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130428.JPG,,FALSE, +N1,59233,sortie-b5ff7cbf-5976-4533-822a-ae07570a2e22,https://biolit.fr/sorties/sortie-b5ff7cbf-5976-4533-822a-ae07570a2e22/,Phil,,10/22/2019 0:00,12.0000000,12.0:35,48.093003000000,-4.297008000000,,Douarnenez - Finistère,39704,observation-b5ff7cbf-5976-4533-822a-ae07570a2e22-3,https://biolit.fr/observations/observation-b5ff7cbf-5976-4533-822a-ae07570a2e22-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130429.JPG,,FALSE, +N1,59233,sortie-b5ff7cbf-5976-4533-822a-ae07570a2e22,https://biolit.fr/sorties/sortie-b5ff7cbf-5976-4533-822a-ae07570a2e22/,Phil,,10/22/2019 0:00,12.0000000,12.0:35,48.093003000000,-4.297008000000,,Douarnenez - Finistère,39706,observation-b5ff7cbf-5976-4533-822a-ae07570a2e22-4,https://biolit.fr/observations/observation-b5ff7cbf-5976-4533-822a-ae07570a2e22-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130431.JPG,,FALSE, +N1,59234,sortie-3ab0ba1e-fead-4119-aa8a-79ff8c183639,https://biolit.fr/sorties/sortie-3ab0ba1e-fead-4119-aa8a-79ff8c183639/,Phil,,11/01/2019,12.0:55,13.0000000,47.796426000000,-3.851997000000,,Trévignon - Finistère,39708,observation-3ab0ba1e-fead-4119-aa8a-79ff8c183639,https://biolit.fr/observations/observation-3ab0ba1e-fead-4119-aa8a-79ff8c183639/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191101_125741.jpg,,FALSE, +N1,59234,sortie-3ab0ba1e-fead-4119-aa8a-79ff8c183639,https://biolit.fr/sorties/sortie-3ab0ba1e-fead-4119-aa8a-79ff8c183639/,Phil,,11/01/2019,12.0:55,13.0000000,47.796426000000,-3.851997000000,,Trévignon - Finistère,39710,observation-3ab0ba1e-fead-4119-aa8a-79ff8c183639-2,https://biolit.fr/observations/observation-3ab0ba1e-fead-4119-aa8a-79ff8c183639-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191101_125747.jpg,,FALSE, +N1,59234,sortie-3ab0ba1e-fead-4119-aa8a-79ff8c183639,https://biolit.fr/sorties/sortie-3ab0ba1e-fead-4119-aa8a-79ff8c183639/,Phil,,11/01/2019,12.0:55,13.0000000,47.796426000000,-3.851997000000,,Trévignon - Finistère,39712,observation-3ab0ba1e-fead-4119-aa8a-79ff8c183639-3,https://biolit.fr/observations/observation-3ab0ba1e-fead-4119-aa8a-79ff8c183639-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191101_130133.jpg,,FALSE, +N1,59234,sortie-3ab0ba1e-fead-4119-aa8a-79ff8c183639,https://biolit.fr/sorties/sortie-3ab0ba1e-fead-4119-aa8a-79ff8c183639/,Phil,,11/01/2019,12.0:55,13.0000000,47.796426000000,-3.851997000000,,Trévignon - Finistère,39714,observation-3ab0ba1e-fead-4119-aa8a-79ff8c183639-4,https://biolit.fr/observations/observation-3ab0ba1e-fead-4119-aa8a-79ff8c183639-4/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/20191101_130203.jpg,,TRUE, +N1,59234,sortie-3ab0ba1e-fead-4119-aa8a-79ff8c183639,https://biolit.fr/sorties/sortie-3ab0ba1e-fead-4119-aa8a-79ff8c183639/,Phil,,11/01/2019,12.0:55,13.0000000,47.796426000000,-3.851997000000,,Trévignon - Finistère,39716,observation-3ab0ba1e-fead-4119-aa8a-79ff8c183639-5,https://biolit.fr/observations/observation-3ab0ba1e-fead-4119-aa8a-79ff8c183639-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191101_125751-scaled.jpg,,FALSE, +N1,59235,sortie-83b2db0a-e54d-475f-8f8d-45257e77172b,https://biolit.fr/sorties/sortie-83b2db0a-e54d-475f-8f8d-45257e77172b/,cigale33,,11/25/2019 0:00,10.0:15,11.0:15,43.375738000000,-1.765994000000,,plage d'Hendaye,39718,observation-83b2db0a-e54d-475f-8f8d-45257e77172b,https://biolit.fr/observations/observation-83b2db0a-e54d-475f-8f8d-45257e77172b/,,,,https://biolit.fr/wp-content/uploads/2023/07/029.jpg,,FALSE, +N1,59235,sortie-83b2db0a-e54d-475f-8f8d-45257e77172b,https://biolit.fr/sorties/sortie-83b2db0a-e54d-475f-8f8d-45257e77172b/,cigale33,,11/25/2019 0:00,10.0:15,11.0:15,43.375738000000,-1.765994000000,,plage d'Hendaye,39720,observation-83b2db0a-e54d-475f-8f8d-45257e77172b-2,https://biolit.fr/observations/observation-83b2db0a-e54d-475f-8f8d-45257e77172b-2/,Pharus legumen,Couteau-gousse,,https://biolit.fr/wp-content/uploads/2023/07/048.jpg,,TRUE, +N1,59235,sortie-83b2db0a-e54d-475f-8f8d-45257e77172b,https://biolit.fr/sorties/sortie-83b2db0a-e54d-475f-8f8d-45257e77172b/,cigale33,,11/25/2019 0:00,10.0:15,11.0:15,43.375738000000,-1.765994000000,,plage d'Hendaye,39722,observation-83b2db0a-e54d-475f-8f8d-45257e77172b-3,https://biolit.fr/observations/observation-83b2db0a-e54d-475f-8f8d-45257e77172b-3/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/049-scaled.jpg,,TRUE, +N1,59235,sortie-83b2db0a-e54d-475f-8f8d-45257e77172b,https://biolit.fr/sorties/sortie-83b2db0a-e54d-475f-8f8d-45257e77172b/,cigale33,,11/25/2019 0:00,10.0:15,11.0:15,43.375738000000,-1.765994000000,,plage d'Hendaye,39724,observation-83b2db0a-e54d-475f-8f8d-45257e77172b-4,https://biolit.fr/observations/observation-83b2db0a-e54d-475f-8f8d-45257e77172b-4/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/052-scaled.jpg,,TRUE, +N1,59235,sortie-83b2db0a-e54d-475f-8f8d-45257e77172b,https://biolit.fr/sorties/sortie-83b2db0a-e54d-475f-8f8d-45257e77172b/,cigale33,,11/25/2019 0:00,10.0:15,11.0:15,43.375738000000,-1.765994000000,,plage d'Hendaye,39726,observation-83b2db0a-e54d-475f-8f8d-45257e77172b-5,https://biolit.fr/observations/observation-83b2db0a-e54d-475f-8f8d-45257e77172b-5/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/050-scaled.jpg,,TRUE, +N1,59236,sortie-d49ee94a-8807-4308-ab86-26ca17374b5d,https://biolit.fr/sorties/sortie-d49ee94a-8807-4308-ab86-26ca17374b5d/,Phil,,5/19/2019 0:00,11.0000000,12.000005,47.799526000000,-4.179817000000,,Loctudy - Finistère,39728,observation-d49ee94a-8807-4308-ab86-26ca17374b5d,https://biolit.fr/observations/observation-d49ee94a-8807-4308-ab86-26ca17374b5d/,Tritia reticulata,Ponte de nasse réticulée,,https://biolit.fr/wp-content/uploads/2023/07/20190519_112924.jpg,,TRUE, +N1,59236,sortie-d49ee94a-8807-4308-ab86-26ca17374b5d,https://biolit.fr/sorties/sortie-d49ee94a-8807-4308-ab86-26ca17374b5d/,Phil,,5/19/2019 0:00,11.0000000,12.000005,47.799526000000,-4.179817000000,,Loctudy - Finistère,39730,observation-d49ee94a-8807-4308-ab86-26ca17374b5d-2,https://biolit.fr/observations/observation-d49ee94a-8807-4308-ab86-26ca17374b5d-2/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/20190519_112954.jpg,,TRUE, +N1,59236,sortie-d49ee94a-8807-4308-ab86-26ca17374b5d,https://biolit.fr/sorties/sortie-d49ee94a-8807-4308-ab86-26ca17374b5d/,Phil,,5/19/2019 0:00,11.0000000,12.000005,47.799526000000,-4.179817000000,,Loctudy - Finistère,39732,observation-d49ee94a-8807-4308-ab86-26ca17374b5d-3,https://biolit.fr/observations/observation-d49ee94a-8807-4308-ab86-26ca17374b5d-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20190519_114313.jpg,,TRUE, +N1,59236,sortie-d49ee94a-8807-4308-ab86-26ca17374b5d,https://biolit.fr/sorties/sortie-d49ee94a-8807-4308-ab86-26ca17374b5d/,Phil,,5/19/2019 0:00,11.0000000,12.000005,47.799526000000,-4.179817000000,,Loctudy - Finistère,39734,observation-d49ee94a-8807-4308-ab86-26ca17374b5d-4,https://biolit.fr/observations/observation-d49ee94a-8807-4308-ab86-26ca17374b5d-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20190519_114341.jpg,,TRUE, +N1,59236,sortie-d49ee94a-8807-4308-ab86-26ca17374b5d,https://biolit.fr/sorties/sortie-d49ee94a-8807-4308-ab86-26ca17374b5d/,Phil,,5/19/2019 0:00,11.0000000,12.000005,47.799526000000,-4.179817000000,,Loctudy - Finistère,39736,observation-d49ee94a-8807-4308-ab86-26ca17374b5d-5,https://biolit.fr/observations/observation-d49ee94a-8807-4308-ab86-26ca17374b5d-5/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/20190519_114747.jpg,,TRUE, +N1,59236,sortie-d49ee94a-8807-4308-ab86-26ca17374b5d,https://biolit.fr/sorties/sortie-d49ee94a-8807-4308-ab86-26ca17374b5d/,Phil,,5/19/2019 0:00,11.0000000,12.000005,47.799526000000,-4.179817000000,,Loctudy - Finistère,39738,observation-d49ee94a-8807-4308-ab86-26ca17374b5d-6,https://biolit.fr/observations/observation-d49ee94a-8807-4308-ab86-26ca17374b5d-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190519_120657.jpg,,FALSE, +N1,59237,sortie-1457b15b-96bd-4f6b-822e-7d38d6b750c4,https://biolit.fr/sorties/sortie-1457b15b-96bd-4f6b-822e-7d38d6b750c4/,Roman,,11/21/2019 0:00,16.0:45,17.0000000,47.699430000000,-3.354924000000,,Gâvres,39740,observation-1457b15b-96bd-4f6b-822e-7d38d6b750c4,https://biolit.fr/observations/observation-1457b15b-96bd-4f6b-822e-7d38d6b750c4/,Patella pellucida,Helcion,,https://biolit.fr/wp-content/uploads/2023/07/Ansates pelludica.PNG,,TRUE, +N1,59237,sortie-1457b15b-96bd-4f6b-822e-7d38d6b750c4,https://biolit.fr/sorties/sortie-1457b15b-96bd-4f6b-822e-7d38d6b750c4/,Roman,,11/21/2019 0:00,16.0:45,17.0000000,47.699430000000,-3.354924000000,,Gâvres,39741,observation-1457b15b-96bd-4f6b-822e-7d38d6b750c4-2,https://biolit.fr/observations/observation-1457b15b-96bd-4f6b-822e-7d38d6b750c4-2/,Antalis vulgaris,Dentale,,https://biolit.fr/wp-content/uploads/2023/07/antalis vulgaris.PNG,,TRUE, +N1,59237,sortie-1457b15b-96bd-4f6b-822e-7d38d6b750c4,https://biolit.fr/sorties/sortie-1457b15b-96bd-4f6b-822e-7d38d6b750c4/,Roman,,11/21/2019 0:00,16.0:45,17.0000000,47.699430000000,-3.354924000000,,Gâvres,39742,observation-1457b15b-96bd-4f6b-822e-7d38d6b750c4-3,https://biolit.fr/observations/observation-1457b15b-96bd-4f6b-822e-7d38d6b750c4-3/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus1.PNG,,TRUE, +N1,59237,sortie-1457b15b-96bd-4f6b-822e-7d38d6b750c4,https://biolit.fr/sorties/sortie-1457b15b-96bd-4f6b-822e-7d38d6b750c4/,Roman,,11/21/2019 0:00,16.0:45,17.0000000,47.699430000000,-3.354924000000,,Gâvres,39744,observation-1457b15b-96bd-4f6b-822e-7d38d6b750c4-4,https://biolit.fr/observations/observation-1457b15b-96bd-4f6b-822e-7d38d6b750c4-4/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/chthmalus stellatus1.PNG,,TRUE, +N1,59237,sortie-1457b15b-96bd-4f6b-822e-7d38d6b750c4,https://biolit.fr/sorties/sortie-1457b15b-96bd-4f6b-822e-7d38d6b750c4/,Roman,,11/21/2019 0:00,16.0:45,17.0000000,47.699430000000,-3.354924000000,,Gâvres,39746,observation-1457b15b-96bd-4f6b-822e-7d38d6b750c4-5,https://biolit.fr/observations/observation-1457b15b-96bd-4f6b-822e-7d38d6b750c4-5/,Diodora graeca,Fissurelle,,https://biolit.fr/wp-content/uploads/2023/07/diodora graeca.PNG,,TRUE, +N1,59237,sortie-1457b15b-96bd-4f6b-822e-7d38d6b750c4,https://biolit.fr/sorties/sortie-1457b15b-96bd-4f6b-822e-7d38d6b750c4/,Roman,,11/21/2019 0:00,16.0:45,17.0000000,47.699430000000,-3.354924000000,,Gâvres,39747,observation-1457b15b-96bd-4f6b-822e-7d38d6b750c4-6,https://biolit.fr/observations/observation-1457b15b-96bd-4f6b-822e-7d38d6b750c4-6/,Laevicardium crassum,Bucarde de Norvège,,https://biolit.fr/wp-content/uploads/2023/07/Laevicardium crassum.PNG,,TRUE, +N1,59237,sortie-1457b15b-96bd-4f6b-822e-7d38d6b750c4,https://biolit.fr/sorties/sortie-1457b15b-96bd-4f6b-822e-7d38d6b750c4/,Roman,,11/21/2019 0:00,16.0:45,17.0000000,47.699430000000,-3.354924000000,,Gâvres,39748,observation-1457b15b-96bd-4f6b-822e-7d38d6b750c4-7,https://biolit.fr/observations/observation-1457b15b-96bd-4f6b-822e-7d38d6b750c4-7/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/mytilus edulis-scaled.jpg,,TRUE, +N1,59237,sortie-1457b15b-96bd-4f6b-822e-7d38d6b750c4,https://biolit.fr/sorties/sortie-1457b15b-96bd-4f6b-822e-7d38d6b750c4/,Roman,,11/21/2019 0:00,16.0:45,17.0000000,47.699430000000,-3.354924000000,,Gâvres,39749,observation-1457b15b-96bd-4f6b-822e-7d38d6b750c4-8,https://biolit.fr/observations/observation-1457b15b-96bd-4f6b-822e-7d38d6b750c4-8/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/nucella lapillus2 .PNG,,TRUE, +N1,59238,sortie-3986c6fd-a0eb-41aa-a90b-66653700271a,https://biolit.fr/sorties/sortie-3986c6fd-a0eb-41aa-a90b-66653700271a/,Phil,,11/16/2019 0:00,12.0000000,12.000005,48.061048000000,-4.672363000000,,Cléden-Cap-Sizun - Finistère,39753,observation-3986c6fd-a0eb-41aa-a90b-66653700271a-2,https://biolit.fr/observations/observation-3986c6fd-a0eb-41aa-a90b-66653700271a-2/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/20191116_115702.jpg,,TRUE, +N1,59239,sortie-62cec3a1-b38a-45ff-a8d7-dbb1a5c654d6,https://biolit.fr/sorties/sortie-62cec3a1-b38a-45ff-a8d7-dbb1a5c654d6/,Phil,,10/22/2019 0:00,12.0000000,12.0000000,48.093438000000,-4.298564000000,,Douarnenez - Finistère,39757,observation-62cec3a1-b38a-45ff-a8d7-dbb1a5c654d6,https://biolit.fr/observations/observation-62cec3a1-b38a-45ff-a8d7-dbb1a5c654d6/,Lutraria lutraria,Lutraire elliptique,,https://biolit.fr/wp-content/uploads/2023/07/P1130426.JPG,,TRUE, +N1,59239,sortie-62cec3a1-b38a-45ff-a8d7-dbb1a5c654d6,https://biolit.fr/sorties/sortie-62cec3a1-b38a-45ff-a8d7-dbb1a5c654d6/,Phil,,10/22/2019 0:00,12.0000000,12.0000000,48.093438000000,-4.298564000000,,Douarnenez - Finistère,39759,observation-62cec3a1-b38a-45ff-a8d7-dbb1a5c654d6-2,https://biolit.fr/observations/observation-62cec3a1-b38a-45ff-a8d7-dbb1a5c654d6-2/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/P1130420.JPG,,TRUE, +N1,59239,sortie-62cec3a1-b38a-45ff-a8d7-dbb1a5c654d6,https://biolit.fr/sorties/sortie-62cec3a1-b38a-45ff-a8d7-dbb1a5c654d6/,Phil,,10/22/2019 0:00,12.0000000,12.0000000,48.093438000000,-4.298564000000,,Douarnenez - Finistère,39761,observation-62cec3a1-b38a-45ff-a8d7-dbb1a5c654d6-3,https://biolit.fr/observations/observation-62cec3a1-b38a-45ff-a8d7-dbb1a5c654d6-3/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1130422.JPG,,TRUE, +N1,59239,sortie-62cec3a1-b38a-45ff-a8d7-dbb1a5c654d6,https://biolit.fr/sorties/sortie-62cec3a1-b38a-45ff-a8d7-dbb1a5c654d6/,Phil,,10/22/2019 0:00,12.0000000,12.0000000,48.093438000000,-4.298564000000,,Douarnenez - Finistère,39763,observation-62cec3a1-b38a-45ff-a8d7-dbb1a5c654d6-4,https://biolit.fr/observations/observation-62cec3a1-b38a-45ff-a8d7-dbb1a5c654d6-4/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/P1130421.JPG,,TRUE, +N1,59240,sortie-2e237374-e0a4-464a-a8ba-80d194b80d55,https://biolit.fr/sorties/sortie-2e237374-e0a4-464a-a8ba-80d194b80d55/,Phil,,10/22/2019 0:00,12.0000000,12.0:55,48.100908000000,-4.346082000000,,Tréboul - Finistère,39765,observation-2e237374-e0a4-464a-a8ba-80d194b80d55,https://biolit.fr/observations/observation-2e237374-e0a4-464a-a8ba-80d194b80d55/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20191022_125753.jpg,,TRUE, +N1,59240,sortie-2e237374-e0a4-464a-a8ba-80d194b80d55,https://biolit.fr/sorties/sortie-2e237374-e0a4-464a-a8ba-80d194b80d55/,Phil,,10/22/2019 0:00,12.0000000,12.0:55,48.100908000000,-4.346082000000,,Tréboul - Finistère,39767,observation-2e237374-e0a4-464a-a8ba-80d194b80d55-2,https://biolit.fr/observations/observation-2e237374-e0a4-464a-a8ba-80d194b80d55-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20191022_124411.jpg,,TRUE, +N1,59240,sortie-2e237374-e0a4-464a-a8ba-80d194b80d55,https://biolit.fr/sorties/sortie-2e237374-e0a4-464a-a8ba-80d194b80d55/,Phil,,10/22/2019 0:00,12.0000000,12.0:55,48.100908000000,-4.346082000000,,Tréboul - Finistère,39769,observation-2e237374-e0a4-464a-a8ba-80d194b80d55-3,https://biolit.fr/observations/observation-2e237374-e0a4-464a-a8ba-80d194b80d55-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20191022_124356.jpg,,TRUE, +N1,59241,sortie-c1587ecf-a122-43d4-a761-caf67b71b280,https://biolit.fr/sorties/sortie-c1587ecf-a122-43d4-a761-caf67b71b280/,Phil,,11/01/2019,12.0:55,13.0000000,47.796347000000,-3.851568000000,,Trégunc - Finistère,39771,observation-c1587ecf-a122-43d4-a761-caf67b71b280,https://biolit.fr/observations/observation-c1587ecf-a122-43d4-a761-caf67b71b280/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20191101_125544.jpg,,TRUE, +N1,59241,sortie-c1587ecf-a122-43d4-a761-caf67b71b280,https://biolit.fr/sorties/sortie-c1587ecf-a122-43d4-a761-caf67b71b280/,Phil,,11/01/2019,12.0:55,13.0000000,47.796347000000,-3.851568000000,,Trégunc - Finistère,39773,observation-c1587ecf-a122-43d4-a761-caf67b71b280-2,https://biolit.fr/observations/observation-c1587ecf-a122-43d4-a761-caf67b71b280-2/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20191101_125550.jpg,,TRUE, +N1,59241,sortie-c1587ecf-a122-43d4-a761-caf67b71b280,https://biolit.fr/sorties/sortie-c1587ecf-a122-43d4-a761-caf67b71b280/,Phil,,11/01/2019,12.0:55,13.0000000,47.796347000000,-3.851568000000,,Trégunc - Finistère,39775,observation-c1587ecf-a122-43d4-a761-caf67b71b280-3,https://biolit.fr/observations/observation-c1587ecf-a122-43d4-a761-caf67b71b280-3/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20191101_125603.jpg,,TRUE, +N1,59241,sortie-c1587ecf-a122-43d4-a761-caf67b71b280,https://biolit.fr/sorties/sortie-c1587ecf-a122-43d4-a761-caf67b71b280/,Phil,,11/01/2019,12.0:55,13.0000000,47.796347000000,-3.851568000000,,Trégunc - Finistère,39777,observation-c1587ecf-a122-43d4-a761-caf67b71b280-4,https://biolit.fr/observations/observation-c1587ecf-a122-43d4-a761-caf67b71b280-4/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/20191101_125621.jpg,,TRUE, +N1,59242,sortie-81bfae6a-551a-43c9-8c41-96edf2712b43,https://biolit.fr/sorties/sortie-81bfae6a-551a-43c9-8c41-96edf2712b43/,Phil,,05/05/2019,13.0:15,13.0000000,47.799323000000,-4.179040000000,,Loctudy - Finistère,39779,observation-81bfae6a-551a-43c9-8c41-96edf2712b43,https://biolit.fr/observations/observation-81bfae6a-551a-43c9-8c41-96edf2712b43/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20190505_131444.jpg,,TRUE, +N1,59242,sortie-81bfae6a-551a-43c9-8c41-96edf2712b43,https://biolit.fr/sorties/sortie-81bfae6a-551a-43c9-8c41-96edf2712b43/,Phil,,05/05/2019,13.0:15,13.0000000,47.799323000000,-4.179040000000,,Loctudy - Finistère,39781,observation-81bfae6a-551a-43c9-8c41-96edf2712b43-2,https://biolit.fr/observations/observation-81bfae6a-551a-43c9-8c41-96edf2712b43-2/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/20190505_132505.jpg,,TRUE, +N1,59242,sortie-81bfae6a-551a-43c9-8c41-96edf2712b43,https://biolit.fr/sorties/sortie-81bfae6a-551a-43c9-8c41-96edf2712b43/,Phil,,05/05/2019,13.0:15,13.0000000,47.799323000000,-4.179040000000,,Loctudy - Finistère,39783,observation-81bfae6a-551a-43c9-8c41-96edf2712b43-3,https://biolit.fr/observations/observation-81bfae6a-551a-43c9-8c41-96edf2712b43-3/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/20190505_132658.jpg,,TRUE, +N1,59242,sortie-81bfae6a-551a-43c9-8c41-96edf2712b43,https://biolit.fr/sorties/sortie-81bfae6a-551a-43c9-8c41-96edf2712b43/,Phil,,05/05/2019,13.0:15,13.0000000,47.799323000000,-4.179040000000,,Loctudy - Finistère,39785,observation-81bfae6a-551a-43c9-8c41-96edf2712b43-4,https://biolit.fr/observations/observation-81bfae6a-551a-43c9-8c41-96edf2712b43-4/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/20190505_132722.jpg,,TRUE, +N1,59243,sortie-07929acc-bf1a-49af-b8a7-93015693dbf9,https://biolit.fr/sorties/sortie-07929acc-bf1a-49af-b8a7-93015693dbf9/,Florian Martel,,11/16/2019 0:00,12.0:15,12.0000000,43.422799000000,3.677394000000,CPIE Littoral d'Occitanie,"Sète, barou, ",39787,observation-07929acc-bf1a-49af-b8a7-93015693dbf9,https://biolit.fr/observations/observation-07929acc-bf1a-49af-b8a7-93015693dbf9/,Raja montagui,Raie douce,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2847-scaled.jpg,,TRUE, +N1,59244,sortie-30cb46a0-9508-4973-bfec-9c67c790b337,https://biolit.fr/sorties/sortie-30cb46a0-9508-4973-bfec-9c67c790b337/,Phil,,10/28/2019 0:00,10.0:45,11.0000000,47.79677400000,-4.328214000000,,Penmarc'h - Finistère,39789,observation-30cb46a0-9508-4973-bfec-9c67c790b337,https://biolit.fr/observations/observation-30cb46a0-9508-4973-bfec-9c67c790b337/,Raja brachyura,Raie lisse,,https://biolit.fr/wp-content/uploads/2023/07/20191028_105014.jpg,,TRUE, +N1,59244,sortie-30cb46a0-9508-4973-bfec-9c67c790b337,https://biolit.fr/sorties/sortie-30cb46a0-9508-4973-bfec-9c67c790b337/,Phil,,10/28/2019 0:00,10.0:45,11.0000000,47.79677400000,-4.328214000000,,Penmarc'h - Finistère,39791,observation-30cb46a0-9508-4973-bfec-9c67c790b337-2,https://biolit.fr/observations/observation-30cb46a0-9508-4973-bfec-9c67c790b337-2/,Raja brachyura,Raie lisse,,https://biolit.fr/wp-content/uploads/2023/07/20191028_105021.jpg,,TRUE, +N1,59244,sortie-30cb46a0-9508-4973-bfec-9c67c790b337,https://biolit.fr/sorties/sortie-30cb46a0-9508-4973-bfec-9c67c790b337/,Phil,,10/28/2019 0:00,10.0:45,11.0000000,47.79677400000,-4.328214000000,,Penmarc'h - Finistère,39793,observation-30cb46a0-9508-4973-bfec-9c67c790b337-3,https://biolit.fr/observations/observation-30cb46a0-9508-4973-bfec-9c67c790b337-3/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191028_105145.jpg,,TRUE, +N1,59244,sortie-30cb46a0-9508-4973-bfec-9c67c790b337,https://biolit.fr/sorties/sortie-30cb46a0-9508-4973-bfec-9c67c790b337/,Phil,,10/28/2019 0:00,10.0:45,11.0000000,47.79677400000,-4.328214000000,,Penmarc'h - Finistère,39795,observation-30cb46a0-9508-4973-bfec-9c67c790b337-4,https://biolit.fr/observations/observation-30cb46a0-9508-4973-bfec-9c67c790b337-4/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20191028_105834.jpg,,TRUE, +N1,59245,sortie-4bad3aa7-5d06-4558-8599-29a20f17d0f9,https://biolit.fr/sorties/sortie-4bad3aa7-5d06-4558-8599-29a20f17d0f9/,Phil,,11/16/2019 0:00,12.0000000,12.0:15,48.06066400000,-4.671629000000,,Cléden-Cap-Sizun - Finistère,39797,observation-4bad3aa7-5d06-4558-8599-29a20f17d0f9,https://biolit.fr/observations/observation-4bad3aa7-5d06-4558-8599-29a20f17d0f9/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191116_121022.jpg,,TRUE, +N1,59245,sortie-4bad3aa7-5d06-4558-8599-29a20f17d0f9,https://biolit.fr/sorties/sortie-4bad3aa7-5d06-4558-8599-29a20f17d0f9/,Phil,,11/16/2019 0:00,12.0000000,12.0:15,48.06066400000,-4.671629000000,,Cléden-Cap-Sizun - Finistère,39799,observation-4bad3aa7-5d06-4558-8599-29a20f17d0f9-2,https://biolit.fr/observations/observation-4bad3aa7-5d06-4558-8599-29a20f17d0f9-2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191116_121029.jpg,,TRUE, +N1,59245,sortie-4bad3aa7-5d06-4558-8599-29a20f17d0f9,https://biolit.fr/sorties/sortie-4bad3aa7-5d06-4558-8599-29a20f17d0f9/,Phil,,11/16/2019 0:00,12.0000000,12.0:15,48.06066400000,-4.671629000000,,Cléden-Cap-Sizun - Finistère,39801,observation-4bad3aa7-5d06-4558-8599-29a20f17d0f9-3,https://biolit.fr/observations/observation-4bad3aa7-5d06-4558-8599-29a20f17d0f9-3/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191116_121220.jpg,,TRUE, +N1,59245,sortie-4bad3aa7-5d06-4558-8599-29a20f17d0f9,https://biolit.fr/sorties/sortie-4bad3aa7-5d06-4558-8599-29a20f17d0f9/,Phil,,11/16/2019 0:00,12.0000000,12.0:15,48.06066400000,-4.671629000000,,Cléden-Cap-Sizun - Finistère,39803,observation-4bad3aa7-5d06-4558-8599-29a20f17d0f9-4,https://biolit.fr/observations/observation-4bad3aa7-5d06-4558-8599-29a20f17d0f9-4/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191116_121216.jpg,,TRUE, +N1,59246,sortie-0b73ac0f-1aca-444e-a22f-d1d72c628af6,https://biolit.fr/sorties/sortie-0b73ac0f-1aca-444e-a22f-d1d72c628af6/,Phil,,11/08/2019,12.0000000,12.0:15,48.628617000000,-3.844459000000,,Plouezoc'h - Finistère,39805,observation-0b73ac0f-1aca-444e-a22f-d1d72c628af6,https://biolit.fr/observations/observation-0b73ac0f-1aca-444e-a22f-d1d72c628af6/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20191108_121203.jpg,,TRUE, +N1,59246,sortie-0b73ac0f-1aca-444e-a22f-d1d72c628af6,https://biolit.fr/sorties/sortie-0b73ac0f-1aca-444e-a22f-d1d72c628af6/,Phil,,11/08/2019,12.0000000,12.0:15,48.628617000000,-3.844459000000,,Plouezoc'h - Finistère,39807,observation-0b73ac0f-1aca-444e-a22f-d1d72c628af6-2,https://biolit.fr/observations/observation-0b73ac0f-1aca-444e-a22f-d1d72c628af6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191108_121133.jpg,,FALSE, +N1,59246,sortie-0b73ac0f-1aca-444e-a22f-d1d72c628af6,https://biolit.fr/sorties/sortie-0b73ac0f-1aca-444e-a22f-d1d72c628af6/,Phil,,11/08/2019,12.0000000,12.0:15,48.628617000000,-3.844459000000,,Plouezoc'h - Finistère,39809,observation-0b73ac0f-1aca-444e-a22f-d1d72c628af6-3,https://biolit.fr/observations/observation-0b73ac0f-1aca-444e-a22f-d1d72c628af6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191108_121129.jpg,,FALSE, +N1,59246,sortie-0b73ac0f-1aca-444e-a22f-d1d72c628af6,https://biolit.fr/sorties/sortie-0b73ac0f-1aca-444e-a22f-d1d72c628af6/,Phil,,11/08/2019,12.0000000,12.0:15,48.628617000000,-3.844459000000,,Plouezoc'h - Finistère,39811,observation-0b73ac0f-1aca-444e-a22f-d1d72c628af6-4,https://biolit.fr/observations/observation-0b73ac0f-1aca-444e-a22f-d1d72c628af6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191108_121059.jpg,,FALSE, +N1,59247,sortie-83abba39-0ed9-4537-9eb3-74ff284e4897,https://biolit.fr/sorties/sortie-83abba39-0ed9-4537-9eb3-74ff284e4897/,Phil,,10/22/2019 0:00,12.0000000,12.0:55,48.10074600000,-4.345824000000,,Tréboul - Finistère,39813,observation-83abba39-0ed9-4537-9eb3-74ff284e4897,https://biolit.fr/observations/observation-83abba39-0ed9-4537-9eb3-74ff284e4897/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191022_124006.jpg,,FALSE, +N1,59247,sortie-83abba39-0ed9-4537-9eb3-74ff284e4897,https://biolit.fr/sorties/sortie-83abba39-0ed9-4537-9eb3-74ff284e4897/,Phil,,10/22/2019 0:00,12.0000000,12.0:55,48.10074600000,-4.345824000000,,Tréboul - Finistère,39815,observation-83abba39-0ed9-4537-9eb3-74ff284e4897-2,https://biolit.fr/observations/observation-83abba39-0ed9-4537-9eb3-74ff284e4897-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191022_124013.jpg,,FALSE, +N1,59247,sortie-83abba39-0ed9-4537-9eb3-74ff284e4897,https://biolit.fr/sorties/sortie-83abba39-0ed9-4537-9eb3-74ff284e4897/,Phil,,10/22/2019 0:00,12.0000000,12.0:55,48.10074600000,-4.345824000000,,Tréboul - Finistère,39817,observation-83abba39-0ed9-4537-9eb3-74ff284e4897-3,https://biolit.fr/observations/observation-83abba39-0ed9-4537-9eb3-74ff284e4897-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191022_124050.jpg,,FALSE, +N1,59248,sortie-f73dabe1-b60c-4b6e-aae7-7ac3c934ade0,https://biolit.fr/sorties/sortie-f73dabe1-b60c-4b6e-aae7-7ac3c934ade0/,Phil,,05/05/2019,12.0:55,13.0000000,47.799724000000,-4.179774000000,,Loctudy - Finistère,39819,observation-f73dabe1-b60c-4b6e-aae7-7ac3c934ade0,https://biolit.fr/observations/observation-f73dabe1-b60c-4b6e-aae7-7ac3c934ade0/,Aeolidia filomenae,Eolis de Filomène,,https://biolit.fr/wp-content/uploads/2023/07/20190505_125708.jpg,,TRUE, +N1,59248,sortie-f73dabe1-b60c-4b6e-aae7-7ac3c934ade0,https://biolit.fr/sorties/sortie-f73dabe1-b60c-4b6e-aae7-7ac3c934ade0/,Phil,,05/05/2019,12.0:55,13.0000000,47.799724000000,-4.179774000000,,Loctudy - Finistère,39821,observation-f73dabe1-b60c-4b6e-aae7-7ac3c934ade0-2,https://biolit.fr/observations/observation-f73dabe1-b60c-4b6e-aae7-7ac3c934ade0-2/,Aeolidia filomenae,Eolis de Filomène,,https://biolit.fr/wp-content/uploads/2023/07/20190505_125634.jpg,,TRUE, +N1,59248,sortie-f73dabe1-b60c-4b6e-aae7-7ac3c934ade0,https://biolit.fr/sorties/sortie-f73dabe1-b60c-4b6e-aae7-7ac3c934ade0/,Phil,,05/05/2019,12.0:55,13.0000000,47.799724000000,-4.179774000000,,Loctudy - Finistère,39823,observation-f73dabe1-b60c-4b6e-aae7-7ac3c934ade0-3,https://biolit.fr/observations/observation-f73dabe1-b60c-4b6e-aae7-7ac3c934ade0-3/,Aeolidia filomenae,Eolis de Filomène,,https://biolit.fr/wp-content/uploads/2023/07/20190505_125552.jpg,,TRUE, +N1,59248,sortie-f73dabe1-b60c-4b6e-aae7-7ac3c934ade0,https://biolit.fr/sorties/sortie-f73dabe1-b60c-4b6e-aae7-7ac3c934ade0/,Phil,,05/05/2019,12.0:55,13.0000000,47.799724000000,-4.179774000000,,Loctudy - Finistère,39825,observation-f73dabe1-b60c-4b6e-aae7-7ac3c934ade0-4,https://biolit.fr/observations/observation-f73dabe1-b60c-4b6e-aae7-7ac3c934ade0-4/,Aeolidia filomenae,Eolis de Filomène,,https://biolit.fr/wp-content/uploads/2023/07/20190505_125419.jpg,,TRUE, +N1,59249,sortie-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a,https://biolit.fr/sorties/sortie-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a/,Phil,,10/29/2019 0:00,11.0:45,11.0000000,47.845077000000,-4.166316000000,,ÎleTudy - Finistère,39827,observation-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a,https://biolit.fr/observations/observation-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20191029_114710.jpg,,TRUE, +N1,59249,sortie-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a,https://biolit.fr/sorties/sortie-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a/,Phil,,10/29/2019 0:00,11.0:45,11.0000000,47.845077000000,-4.166316000000,,ÎleTudy - Finistère,39829,observation-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a-2,https://biolit.fr/observations/observation-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a-2/,Calliblepharis ciliata,Algue ciliée,,https://biolit.fr/wp-content/uploads/2023/07/20191029_114615.jpg,,TRUE, +N1,59249,sortie-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a,https://biolit.fr/sorties/sortie-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a/,Phil,,10/29/2019 0:00,11.0:45,11.0000000,47.845077000000,-4.166316000000,,ÎleTudy - Finistère,39831,observation-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a-3,https://biolit.fr/observations/observation-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191029_114620.jpg,,FALSE, +N1,59249,sortie-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a,https://biolit.fr/sorties/sortie-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a/,Phil,,10/29/2019 0:00,11.0:45,11.0000000,47.845077000000,-4.166316000000,,ÎleTudy - Finistère,39833,observation-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a-4,https://biolit.fr/observations/observation-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a-4/,Dosinia exoleta,Dosinie radiée,,https://biolit.fr/wp-content/uploads/2023/07/20191029_114558.jpg,,TRUE, +N1,59249,sortie-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a,https://biolit.fr/sorties/sortie-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a/,Phil,,10/29/2019 0:00,11.0:45,11.0000000,47.845077000000,-4.166316000000,,ÎleTudy - Finistère,39835,observation-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a-5,https://biolit.fr/observations/observation-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a-5/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/20191029_114739-scaled.jpg,,TRUE, +N1,59250,sortie-fc4ec33b-2c2f-4336-8c16-c4610a3cf321,https://biolit.fr/sorties/sortie-fc4ec33b-2c2f-4336-8c16-c4610a3cf321/,Bigoudie,,10/22/2019 0:00,17.0000000,19.0000000,47.367892000000,-2.546764000000,,"Plage du Grand Lanroué, Piriac sur Mer (44)",39837,observation-fc4ec33b-2c2f-4336-8c16-c4610a3cf321,https://biolit.fr/observations/observation-fc4ec33b-2c2f-4336-8c16-c4610a3cf321/,Lissoclinum perforatum,Didemne lisse perforé,,https://biolit.fr/wp-content/uploads/2023/07/Synascidie-scaled.jpg,,TRUE, +N1,59250,sortie-fc4ec33b-2c2f-4336-8c16-c4610a3cf321,https://biolit.fr/sorties/sortie-fc4ec33b-2c2f-4336-8c16-c4610a3cf321/,Bigoudie,,10/22/2019 0:00,17.0000000,19.0000000,47.367892000000,-2.546764000000,,"Plage du Grand Lanroué, Piriac sur Mer (44)",39839,observation-fc4ec33b-2c2f-4336-8c16-c4610a3cf321-2,https://biolit.fr/observations/observation-fc4ec33b-2c2f-4336-8c16-c4610a3cf321-2/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botrylle etoile (1)-scaled.jpg,,TRUE, +N1,59250,sortie-fc4ec33b-2c2f-4336-8c16-c4610a3cf321,https://biolit.fr/sorties/sortie-fc4ec33b-2c2f-4336-8c16-c4610a3cf321/,Bigoudie,,10/22/2019 0:00,17.0000000,19.0000000,47.367892000000,-2.546764000000,,"Plage du Grand Lanroué, Piriac sur Mer (44)",39841,observation-fc4ec33b-2c2f-4336-8c16-c4610a3cf321-3,https://biolit.fr/observations/observation-fc4ec33b-2c2f-4336-8c16-c4610a3cf321-3/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botrylle etoile (2)-scaled.jpg,,TRUE, +N1,59250,sortie-fc4ec33b-2c2f-4336-8c16-c4610a3cf321,https://biolit.fr/sorties/sortie-fc4ec33b-2c2f-4336-8c16-c4610a3cf321/,Bigoudie,,10/22/2019 0:00,17.0000000,19.0000000,47.367892000000,-2.546764000000,,"Plage du Grand Lanroué, Piriac sur Mer (44)",39843,observation-fc4ec33b-2c2f-4336-8c16-c4610a3cf321-4,https://biolit.fr/observations/observation-fc4ec33b-2c2f-4336-8c16-c4610a3cf321-4/,Dysidea fragilis,Eponge mie de pain mouillée,,https://biolit.fr/wp-content/uploads/2023/07/eponge epineuse blanche-scaled.jpg,,TRUE, +N1,59250,sortie-fc4ec33b-2c2f-4336-8c16-c4610a3cf321,https://biolit.fr/sorties/sortie-fc4ec33b-2c2f-4336-8c16-c4610a3cf321/,Bigoudie,,10/22/2019 0:00,17.0000000,19.0000000,47.367892000000,-2.546764000000,,"Plage du Grand Lanroué, Piriac sur Mer (44)",39845,observation-fc4ec33b-2c2f-4336-8c16-c4610a3cf321-5,https://biolit.fr/observations/observation-fc4ec33b-2c2f-4336-8c16-c4610a3cf321-5/,Sabella spallanzanii,Spirographe,,https://biolit.fr/wp-content/uploads/2023/07/Spirographe-scaled.jpg,,TRUE, +N1,59251,sortie-77349209-23ec-48ad-88b2-91800e87de13,https://biolit.fr/sorties/sortie-77349209-23ec-48ad-88b2-91800e87de13/,carmin89,,10/26/2019 0:00,9.0000000,10.0000000,43.036322000000,6.127436000000,,Plage du Niel,39847,observation-77349209-23ec-48ad-88b2-91800e87de13,https://biolit.fr/observations/observation-77349209-23ec-48ad-88b2-91800e87de13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20191026_091023b-scaled.jpg,,FALSE, +N1,59251,sortie-77349209-23ec-48ad-88b2-91800e87de13,https://biolit.fr/sorties/sortie-77349209-23ec-48ad-88b2-91800e87de13/,carmin89,,10/26/2019 0:00,9.0000000,10.0000000,43.036322000000,6.127436000000,,Plage du Niel,39849,observation-77349209-23ec-48ad-88b2-91800e87de13-2,https://biolit.fr/observations/observation-77349209-23ec-48ad-88b2-91800e87de13-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20191026_091040b.jpg,,FALSE, +N1,59251,sortie-77349209-23ec-48ad-88b2-91800e87de13,https://biolit.fr/sorties/sortie-77349209-23ec-48ad-88b2-91800e87de13/,carmin89,,10/26/2019 0:00,9.0000000,10.0000000,43.036322000000,6.127436000000,,Plage du Niel,39851,observation-77349209-23ec-48ad-88b2-91800e87de13-3,https://biolit.fr/observations/observation-77349209-23ec-48ad-88b2-91800e87de13-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20191026_091052b.jpg,,FALSE, +N1,59251,sortie-77349209-23ec-48ad-88b2-91800e87de13,https://biolit.fr/sorties/sortie-77349209-23ec-48ad-88b2-91800e87de13/,carmin89,,10/26/2019 0:00,9.0000000,10.0000000,43.036322000000,6.127436000000,,Plage du Niel,39853,observation-77349209-23ec-48ad-88b2-91800e87de13-4,https://biolit.fr/observations/observation-77349209-23ec-48ad-88b2-91800e87de13-4/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20191026_091136b.jpg,,TRUE, +N1,59251,sortie-77349209-23ec-48ad-88b2-91800e87de13,https://biolit.fr/sorties/sortie-77349209-23ec-48ad-88b2-91800e87de13/,carmin89,,10/26/2019 0:00,9.0000000,10.0000000,43.036322000000,6.127436000000,,Plage du Niel,39855,observation-77349209-23ec-48ad-88b2-91800e87de13-5,https://biolit.fr/observations/observation-77349209-23ec-48ad-88b2-91800e87de13-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20191026_091151b.jpg,,FALSE, +N1,59251,sortie-77349209-23ec-48ad-88b2-91800e87de13,https://biolit.fr/sorties/sortie-77349209-23ec-48ad-88b2-91800e87de13/,carmin89,,10/26/2019 0:00,9.0000000,10.0000000,43.036322000000,6.127436000000,,Plage du Niel,39857,observation-77349209-23ec-48ad-88b2-91800e87de13-6,https://biolit.fr/observations/observation-77349209-23ec-48ad-88b2-91800e87de13-6/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20191026_091211b.jpg,,TRUE, +N1,59251,sortie-77349209-23ec-48ad-88b2-91800e87de13,https://biolit.fr/sorties/sortie-77349209-23ec-48ad-88b2-91800e87de13/,carmin89,,10/26/2019 0:00,9.0000000,10.0000000,43.036322000000,6.127436000000,,Plage du Niel,39859,observation-77349209-23ec-48ad-88b2-91800e87de13-7,https://biolit.fr/observations/observation-77349209-23ec-48ad-88b2-91800e87de13-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20191026_091219b-scaled.jpg,,FALSE, +N1,59251,sortie-77349209-23ec-48ad-88b2-91800e87de13,https://biolit.fr/sorties/sortie-77349209-23ec-48ad-88b2-91800e87de13/,carmin89,,10/26/2019 0:00,9.0000000,10.0000000,43.036322000000,6.127436000000,,Plage du Niel,39861,observation-77349209-23ec-48ad-88b2-91800e87de13-8,https://biolit.fr/observations/observation-77349209-23ec-48ad-88b2-91800e87de13-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20191026_091245b-scaled.jpg,,FALSE, +N1,59251,sortie-77349209-23ec-48ad-88b2-91800e87de13,https://biolit.fr/sorties/sortie-77349209-23ec-48ad-88b2-91800e87de13/,carmin89,,10/26/2019 0:00,9.0000000,10.0000000,43.036322000000,6.127436000000,,Plage du Niel,39863,observation-77349209-23ec-48ad-88b2-91800e87de13-9,https://biolit.fr/observations/observation-77349209-23ec-48ad-88b2-91800e87de13-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20191026_091443b-scaled.jpg,,FALSE, +N1,59251,sortie-77349209-23ec-48ad-88b2-91800e87de13,https://biolit.fr/sorties/sortie-77349209-23ec-48ad-88b2-91800e87de13/,carmin89,,10/26/2019 0:00,9.0000000,10.0000000,43.036322000000,6.127436000000,,Plage du Niel,39865,observation-77349209-23ec-48ad-88b2-91800e87de13-10,https://biolit.fr/observations/observation-77349209-23ec-48ad-88b2-91800e87de13-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20191026_091744b-scaled.jpg,,FALSE, +N1,59251,sortie-77349209-23ec-48ad-88b2-91800e87de13,https://biolit.fr/sorties/sortie-77349209-23ec-48ad-88b2-91800e87de13/,carmin89,,10/26/2019 0:00,9.0000000,10.0000000,43.036322000000,6.127436000000,,Plage du Niel,39867,observation-77349209-23ec-48ad-88b2-91800e87de13-11,https://biolit.fr/observations/observation-77349209-23ec-48ad-88b2-91800e87de13-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20191026_092006b-scaled.jpg,,FALSE, +N1,59252,sortie-8c73c3cc-9e21-4d58-8393-701941a925b6,https://biolit.fr/sorties/sortie-8c73c3cc-9e21-4d58-8393-701941a925b6/,Phil,,9/19/2019 0:00,12.000005,12.0000000,47.792072000000,-4.286608000000,,Guilvinec - Finistère,39869,observation-8c73c3cc-9e21-4d58-8393-701941a925b6,https://biolit.fr/observations/observation-8c73c3cc-9e21-4d58-8393-701941a925b6/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20190919_120922.jpg,,TRUE, +N1,59252,sortie-8c73c3cc-9e21-4d58-8393-701941a925b6,https://biolit.fr/sorties/sortie-8c73c3cc-9e21-4d58-8393-701941a925b6/,Phil,,9/19/2019 0:00,12.000005,12.0000000,47.792072000000,-4.286608000000,,Guilvinec - Finistère,39871,observation-8c73c3cc-9e21-4d58-8393-701941a925b6-2,https://biolit.fr/observations/observation-8c73c3cc-9e21-4d58-8393-701941a925b6-2/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20190919_120944.jpg,,TRUE, +N1,59252,sortie-8c73c3cc-9e21-4d58-8393-701941a925b6,https://biolit.fr/sorties/sortie-8c73c3cc-9e21-4d58-8393-701941a925b6/,Phil,,9/19/2019 0:00,12.000005,12.0000000,47.792072000000,-4.286608000000,,Guilvinec - Finistère,39873,observation-8c73c3cc-9e21-4d58-8393-701941a925b6-3,https://biolit.fr/observations/observation-8c73c3cc-9e21-4d58-8393-701941a925b6-3/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20190919_120930.jpg,,TRUE, +N1,59252,sortie-8c73c3cc-9e21-4d58-8393-701941a925b6,https://biolit.fr/sorties/sortie-8c73c3cc-9e21-4d58-8393-701941a925b6/,Phil,,9/19/2019 0:00,12.000005,12.0000000,47.792072000000,-4.286608000000,,Guilvinec - Finistère,39875,observation-8c73c3cc-9e21-4d58-8393-701941a925b6-4,https://biolit.fr/observations/observation-8c73c3cc-9e21-4d58-8393-701941a925b6-4/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20190919_121006.jpg,,TRUE, +N1,59253,sortie-3685a256-6140-4076-9e97-ec8439683132,https://biolit.fr/sorties/sortie-3685a256-6140-4076-9e97-ec8439683132/,Phil,,10/28/2019 0:00,10.0:45,10.0000000,47.797824000000,-4.330527000000,,Penmarc'h - Finistère,39877,observation-3685a256-6140-4076-9e97-ec8439683132,https://biolit.fr/observations/observation-3685a256-6140-4076-9e97-ec8439683132/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20191028_104839.jpg,,TRUE, +N1,59253,sortie-3685a256-6140-4076-9e97-ec8439683132,https://biolit.fr/sorties/sortie-3685a256-6140-4076-9e97-ec8439683132/,Phil,,10/28/2019 0:00,10.0:45,10.0000000,47.797824000000,-4.330527000000,,Penmarc'h - Finistère,39879,observation-3685a256-6140-4076-9e97-ec8439683132-2,https://biolit.fr/observations/observation-3685a256-6140-4076-9e97-ec8439683132-2/,Matthiola sinuata,Giroflée des dunes,,https://biolit.fr/wp-content/uploads/2023/07/20191028_104748.jpg,,TRUE, +N1,59253,sortie-3685a256-6140-4076-9e97-ec8439683132,https://biolit.fr/sorties/sortie-3685a256-6140-4076-9e97-ec8439683132/,Phil,,10/28/2019 0:00,10.0:45,10.0000000,47.797824000000,-4.330527000000,,Penmarc'h - Finistère,39881,observation-3685a256-6140-4076-9e97-ec8439683132-3,https://biolit.fr/observations/observation-3685a256-6140-4076-9e97-ec8439683132-3/,Lutraria lutraria,Lutraire elliptique,,https://biolit.fr/wp-content/uploads/2023/07/20191028_104709.jpg,,TRUE, +N1,59253,sortie-3685a256-6140-4076-9e97-ec8439683132,https://biolit.fr/sorties/sortie-3685a256-6140-4076-9e97-ec8439683132/,Phil,,10/28/2019 0:00,10.0:45,10.0000000,47.797824000000,-4.330527000000,,Penmarc'h - Finistère,39883,observation-3685a256-6140-4076-9e97-ec8439683132-4,https://biolit.fr/observations/observation-3685a256-6140-4076-9e97-ec8439683132-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191028_104631.jpg,,FALSE, +N1,59254,sortie-7c26a98a-82c9-435d-a95c-7e2162482b10,https://biolit.fr/sorties/sortie-7c26a98a-82c9-435d-a95c-7e2162482b10/,Phil,,05/05/2019,12.0:25,12.0:55,47.800276000000,-4.179813000000,,Loctudy - Finistère,39885,observation-7c26a98a-82c9-435d-a95c-7e2162482b10,https://biolit.fr/observations/observation-7c26a98a-82c9-435d-a95c-7e2162482b10/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20190505_122307.jpg,,TRUE, +N1,59254,sortie-7c26a98a-82c9-435d-a95c-7e2162482b10,https://biolit.fr/sorties/sortie-7c26a98a-82c9-435d-a95c-7e2162482b10/,Phil,,05/05/2019,12.0:25,12.0:55,47.800276000000,-4.179813000000,,Loctudy - Finistère,39887,observation-7c26a98a-82c9-435d-a95c-7e2162482b10-2,https://biolit.fr/observations/observation-7c26a98a-82c9-435d-a95c-7e2162482b10-2/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20190505_122319.jpg,,TRUE, +N1,59254,sortie-7c26a98a-82c9-435d-a95c-7e2162482b10,https://biolit.fr/sorties/sortie-7c26a98a-82c9-435d-a95c-7e2162482b10/,Phil,,05/05/2019,12.0:25,12.0:55,47.800276000000,-4.179813000000,,Loctudy - Finistère,39889,observation-7c26a98a-82c9-435d-a95c-7e2162482b10-3,https://biolit.fr/observations/observation-7c26a98a-82c9-435d-a95c-7e2162482b10-3/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20190505_123731.jpg,,TRUE, +N1,59254,sortie-7c26a98a-82c9-435d-a95c-7e2162482b10,https://biolit.fr/sorties/sortie-7c26a98a-82c9-435d-a95c-7e2162482b10/,Phil,,05/05/2019,12.0:25,12.0:55,47.800276000000,-4.179813000000,,Loctudy - Finistère,39891,observation-7c26a98a-82c9-435d-a95c-7e2162482b10-4,https://biolit.fr/observations/observation-7c26a98a-82c9-435d-a95c-7e2162482b10-4/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20190505_123749.jpg,,TRUE, +N1,59254,sortie-7c26a98a-82c9-435d-a95c-7e2162482b10,https://biolit.fr/sorties/sortie-7c26a98a-82c9-435d-a95c-7e2162482b10/,Phil,,05/05/2019,12.0:25,12.0:55,47.800276000000,-4.179813000000,,Loctudy - Finistère,39893,observation-7c26a98a-82c9-435d-a95c-7e2162482b10-5,https://biolit.fr/observations/observation-7c26a98a-82c9-435d-a95c-7e2162482b10-5/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20190505_123852.jpg,,TRUE, +N1,59254,sortie-7c26a98a-82c9-435d-a95c-7e2162482b10,https://biolit.fr/sorties/sortie-7c26a98a-82c9-435d-a95c-7e2162482b10/,Phil,,05/05/2019,12.0:25,12.0:55,47.800276000000,-4.179813000000,,Loctudy - Finistère,39895,observation-7c26a98a-82c9-435d-a95c-7e2162482b10-6,https://biolit.fr/observations/observation-7c26a98a-82c9-435d-a95c-7e2162482b10-6/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20190505_123829.jpg,,TRUE, +N1,59255,sortie-ce9ec24f-944a-437b-a3d3-9cc210f4d5fd,https://biolit.fr/sorties/sortie-ce9ec24f-944a-437b-a3d3-9cc210f4d5fd/,Caterina Casagranda,,11/02/2018,14.0000000,17.0000000,43.316403000000,5.280502000000,,Rade nord de Marseille,39897,observation-ce9ec24f-944a-437b-a3d3-9cc210f4d5fd,https://biolit.fr/observations/observation-ce9ec24f-944a-437b-a3d3-9cc210f4d5fd/,Xiphias gladius,Espadon,,https://biolit.fr/wp-content/uploads/2023/07/Espadon photo Frédéric Larrey.jpg,,TRUE, +N1,59256,sortie-eb013d12-64c8-4778-8646-915002e69f1f,https://biolit.fr/sorties/sortie-eb013d12-64c8-4778-8646-915002e69f1f/,CPIE Littoral Basque,,10/30/2019 0:00,10.0000000,12.0000000,43.383254000000,-1.755131000000,CPIE Littoral Basque - Euskal Itsasbazterra,Hendaye ,39899,observation-eb013d12-64c8-4778-8646-915002e69f1f,https://biolit.fr/observations/observation-eb013d12-64c8-4778-8646-915002e69f1f/,Dictyota dichotoma,Dictyote,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4417-scaled.jpg,,TRUE, +N1,59256,sortie-eb013d12-64c8-4778-8646-915002e69f1f,https://biolit.fr/sorties/sortie-eb013d12-64c8-4778-8646-915002e69f1f/,CPIE Littoral Basque,,10/30/2019 0:00,10.0000000,12.0000000,43.383254000000,-1.755131000000,CPIE Littoral Basque - Euskal Itsasbazterra,Hendaye ,39901,observation-eb013d12-64c8-4778-8646-915002e69f1f-2,https://biolit.fr/observations/observation-eb013d12-64c8-4778-8646-915002e69f1f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4426.JPG,,FALSE, +N1,59256,sortie-eb013d12-64c8-4778-8646-915002e69f1f,https://biolit.fr/sorties/sortie-eb013d12-64c8-4778-8646-915002e69f1f/,CPIE Littoral Basque,,10/30/2019 0:00,10.0000000,12.0000000,43.383254000000,-1.755131000000,CPIE Littoral Basque - Euskal Itsasbazterra,Hendaye ,39903,observation-eb013d12-64c8-4778-8646-915002e69f1f-3,https://biolit.fr/observations/observation-eb013d12-64c8-4778-8646-915002e69f1f-3/,Apletodon dentatus,Porte-écuelle à petite tête,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4428.JPG,,TRUE, +N1,59256,sortie-eb013d12-64c8-4778-8646-915002e69f1f,https://biolit.fr/sorties/sortie-eb013d12-64c8-4778-8646-915002e69f1f/,CPIE Littoral Basque,,10/30/2019 0:00,10.0000000,12.0000000,43.383254000000,-1.755131000000,CPIE Littoral Basque - Euskal Itsasbazterra,Hendaye ,39905,observation-eb013d12-64c8-4778-8646-915002e69f1f-4,https://biolit.fr/observations/observation-eb013d12-64c8-4778-8646-915002e69f1f-4/,Janua heterostropha,Spirorbe de Pagenstecher,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4430.JPG,,TRUE, +N1,59256,sortie-eb013d12-64c8-4778-8646-915002e69f1f,https://biolit.fr/sorties/sortie-eb013d12-64c8-4778-8646-915002e69f1f/,CPIE Littoral Basque,,10/30/2019 0:00,10.0000000,12.0000000,43.383254000000,-1.755131000000,CPIE Littoral Basque - Euskal Itsasbazterra,Hendaye ,39907,observation-eb013d12-64c8-4778-8646-915002e69f1f-5,https://biolit.fr/observations/observation-eb013d12-64c8-4778-8646-915002e69f1f-5/,Chondria coerulescens,Chondria bleue,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4457-scaled.jpg,,TRUE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39909,observation-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234/,,,,https://biolit.fr/wp-content/uploads/2023/07/Acteon tornalitis.PNG,,FALSE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39911,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-2,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-2/,Aporrhais pespelecani,Pied de pélican commun,,https://biolit.fr/wp-content/uploads/2023/07/Apporhais pespelicani.PNG,,TRUE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39913,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-3,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Arcopagia crassa.PNG,,FALSE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39914,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-4,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-4/,Barnea candida,Pholade blanche,,https://biolit.fr/wp-content/uploads/2023/07/Barnea candida.PNG,,TRUE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39916,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-5,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Calyptreae chinensis.PNG,,FALSE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39917,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-6,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-6/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/cancer pagurus.PNG,,TRUE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39918,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-7,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capsella variegata.PNG,,FALSE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39920,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-8,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Chamelea striatula.PNG,,FALSE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39921,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-9,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/clausinella fasciata.PNG,,FALSE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39923,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-10,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mangelia attenuata.PNG,,FALSE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39925,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-11,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-11/,Dosinia exoleta,Dosinie radiée,,https://biolit.fr/wp-content/uploads/2023/07/dosinia exoleta.PNG,,TRUE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39926,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-12,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Dosisnia lupinus.PNG,,FALSE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39928,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-13,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gari tellinella.PNG,,FALSE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39930,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-14,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-14/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Glycymeris glycymeris.PNG,,TRUE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39931,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-15,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/lucinoma borealis.PNG,,FALSE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39933,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-16,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-16/,Lutraria magna,Grande lutraire,,https://biolit.fr/wp-content/uploads/2023/07/Lutraria magna.PNG,,TRUE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39934,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-17,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-17/,Mactra glauca,Mactre fauve,,https://biolit.fr/wp-content/uploads/2023/07/Mactra glauca.PNG,,TRUE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39935,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-18,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-18/,Striarca lactea,Striarca laiteuse,,https://biolit.fr/wp-content/uploads/2023/07/Striarca lactea.PNG,,TRUE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39937,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-19,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/Tellina incarnata.PNG,,FALSE, +N1,59258,sortie-1922ab7a-9974-4e87-9184-32aeb514e4b5,https://biolit.fr/sorties/sortie-1922ab7a-9974-4e87-9184-32aeb514e4b5/,helemog,,10/30/2019 0:00,16.0000000,18.0000000,43.46255800000,-1.576748000000,,Plage de Milady à Biarritz,39938,observation-1922ab7a-9974-4e87-9184-32aeb514e4b5,https://biolit.fr/observations/observation-1922ab7a-9974-4e87-9184-32aeb514e4b5/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue_Milady_25-10-19.jpg,,FALSE, +N1,59259,sortie-83857262-26ad-4a4d-aaa7-7cd62fb52949,https://biolit.fr/sorties/sortie-83857262-26ad-4a4d-aaa7-7cd62fb52949/,Roman,,10/23/2019 0:00,15.0000000,17.0000000,47.689894000000,-3.195193000000,,Pont-lorois,39940,observation-83857262-26ad-4a4d-aaa7-7cd62fb52949,https://biolit.fr/observations/observation-83857262-26ad-4a4d-aaa7-7cd62fb52949/,,,,https://biolit.fr/wp-content/uploads/2023/07/Aiptasia mutabilis.PNG,,FALSE, +N1,59259,sortie-83857262-26ad-4a4d-aaa7-7cd62fb52949,https://biolit.fr/sorties/sortie-83857262-26ad-4a4d-aaa7-7cd62fb52949/,Roman,,10/23/2019 0:00,15.0000000,17.0000000,47.689894000000,-3.195193000000,,Pont-lorois,39941,observation-83857262-26ad-4a4d-aaa7-7cd62fb52949-2,https://biolit.fr/observations/observation-83857262-26ad-4a4d-aaa7-7cd62fb52949-2/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens.PNG,,TRUE, +N1,59259,sortie-83857262-26ad-4a4d-aaa7-7cd62fb52949,https://biolit.fr/sorties/sortie-83857262-26ad-4a4d-aaa7-7cd62fb52949/,Roman,,10/23/2019 0:00,15.0000000,17.0000000,47.689894000000,-3.195193000000,,Pont-lorois,39942,observation-83857262-26ad-4a4d-aaa7-7cd62fb52949-3,https://biolit.fr/observations/observation-83857262-26ad-4a4d-aaa7-7cd62fb52949-3/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/asterias rubens 1.PNG,,TRUE, +N1,59259,sortie-83857262-26ad-4a4d-aaa7-7cd62fb52949,https://biolit.fr/sorties/sortie-83857262-26ad-4a4d-aaa7-7cd62fb52949/,Roman,,10/23/2019 0:00,15.0000000,17.0000000,47.689894000000,-3.195193000000,,Pont-lorois,39944,observation-83857262-26ad-4a4d-aaa7-7cd62fb52949-4,https://biolit.fr/observations/observation-83857262-26ad-4a4d-aaa7-7cd62fb52949-4/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus-scaled.jpg,,TRUE, +N1,59259,sortie-83857262-26ad-4a4d-aaa7-7cd62fb52949,https://biolit.fr/sorties/sortie-83857262-26ad-4a4d-aaa7-7cd62fb52949/,Roman,,10/23/2019 0:00,15.0000000,17.0000000,47.689894000000,-3.195193000000,,Pont-lorois,39945,observation-83857262-26ad-4a4d-aaa7-7cd62fb52949-5,https://biolit.fr/observations/observation-83857262-26ad-4a4d-aaa7-7cd62fb52949-5/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/chthmalus stellatus.PNG,,TRUE, +N1,59259,sortie-83857262-26ad-4a4d-aaa7-7cd62fb52949,https://biolit.fr/sorties/sortie-83857262-26ad-4a4d-aaa7-7cd62fb52949/,Roman,,10/23/2019 0:00,15.0000000,17.0000000,47.689894000000,-3.195193000000,,Pont-lorois,39947,observation-83857262-26ad-4a4d-aaa7-7cd62fb52949-6,https://biolit.fr/observations/observation-83857262-26ad-4a4d-aaa7-7cd62fb52949-6/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/elimnius modestus.PNG,,TRUE, +N1,59259,sortie-83857262-26ad-4a4d-aaa7-7cd62fb52949,https://biolit.fr/sorties/sortie-83857262-26ad-4a4d-aaa7-7cd62fb52949/,Roman,,10/23/2019 0:00,15.0000000,17.0000000,47.689894000000,-3.195193000000,,Pont-lorois,39949,observation-83857262-26ad-4a4d-aaa7-7cd62fb52949-7,https://biolit.fr/observations/observation-83857262-26ad-4a4d-aaa7-7cd62fb52949-7/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber-scaled.jpg,,TRUE, +N1,59259,sortie-83857262-26ad-4a4d-aaa7-7cd62fb52949,https://biolit.fr/sorties/sortie-83857262-26ad-4a4d-aaa7-7cd62fb52949/,Roman,,10/23/2019 0:00,15.0000000,17.0000000,47.689894000000,-3.195193000000,,Pont-lorois,39950,observation-83857262-26ad-4a4d-aaa7-7cd62fb52949-8,https://biolit.fr/observations/observation-83857262-26ad-4a4d-aaa7-7cd62fb52949-8/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/xantho hydrophilus 1.PNG,,TRUE, +N1,59260,sortie-bdb15666-f3ba-4577-9b35-65e663a5ef12,https://biolit.fr/sorties/sortie-bdb15666-f3ba-4577-9b35-65e663a5ef12/,Valornitho,,10/12/2019,14.0000000,17.0000000,48.685574000000,-2.316888000000,,Cap Fréhel,39952,observation-bdb15666-f3ba-4577-9b35-65e663a5ef12,https://biolit.fr/observations/observation-bdb15666-f3ba-4577-9b35-65e663a5ef12/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0410_0.JPG,,FALSE, +N1,59260,sortie-bdb15666-f3ba-4577-9b35-65e663a5ef12,https://biolit.fr/sorties/sortie-bdb15666-f3ba-4577-9b35-65e663a5ef12/,Valornitho,,10/12/2019,14.0000000,17.0000000,48.685574000000,-2.316888000000,,Cap Fréhel,39954,observation-bdb15666-f3ba-4577-9b35-65e663a5ef12-2,https://biolit.fr/observations/observation-bdb15666-f3ba-4577-9b35-65e663a5ef12-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0411_0.JPG,,FALSE, +N1,59261,sortie-402a36d9-38fb-4b13-b7b4-d45db58be8de,https://biolit.fr/sorties/sortie-402a36d9-38fb-4b13-b7b4-d45db58be8de/,Phil,,8/13/2019 0:00,19.0000000,19.0000000,47.796424000000,-4.327014000000,,Penmarc'h - Finistère,39956,observation-402a36d9-38fb-4b13-b7b4-d45db58be8de,https://biolit.fr/observations/observation-402a36d9-38fb-4b13-b7b4-d45db58be8de/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120798.JPG,,TRUE, +N1,59261,sortie-402a36d9-38fb-4b13-b7b4-d45db58be8de,https://biolit.fr/sorties/sortie-402a36d9-38fb-4b13-b7b4-d45db58be8de/,Phil,,8/13/2019 0:00,19.0000000,19.0000000,47.796424000000,-4.327014000000,,Penmarc'h - Finistère,39958,observation-402a36d9-38fb-4b13-b7b4-d45db58be8de-2,https://biolit.fr/observations/observation-402a36d9-38fb-4b13-b7b4-d45db58be8de-2/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120788.JPG,,TRUE, +N1,59261,sortie-402a36d9-38fb-4b13-b7b4-d45db58be8de,https://biolit.fr/sorties/sortie-402a36d9-38fb-4b13-b7b4-d45db58be8de/,Phil,,8/13/2019 0:00,19.0000000,19.0000000,47.796424000000,-4.327014000000,,Penmarc'h - Finistère,39960,observation-402a36d9-38fb-4b13-b7b4-d45db58be8de-3,https://biolit.fr/observations/observation-402a36d9-38fb-4b13-b7b4-d45db58be8de-3/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120803.JPG,,TRUE, +N1,59261,sortie-402a36d9-38fb-4b13-b7b4-d45db58be8de,https://biolit.fr/sorties/sortie-402a36d9-38fb-4b13-b7b4-d45db58be8de/,Phil,,8/13/2019 0:00,19.0000000,19.0000000,47.796424000000,-4.327014000000,,Penmarc'h - Finistère,39962,observation-402a36d9-38fb-4b13-b7b4-d45db58be8de-4,https://biolit.fr/observations/observation-402a36d9-38fb-4b13-b7b4-d45db58be8de-4/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120806.JPG,,TRUE, +N1,59261,sortie-402a36d9-38fb-4b13-b7b4-d45db58be8de,https://biolit.fr/sorties/sortie-402a36d9-38fb-4b13-b7b4-d45db58be8de/,Phil,,8/13/2019 0:00,19.0000000,19.0000000,47.796424000000,-4.327014000000,,Penmarc'h - Finistère,39964,observation-402a36d9-38fb-4b13-b7b4-d45db58be8de-5,https://biolit.fr/observations/observation-402a36d9-38fb-4b13-b7b4-d45db58be8de-5/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120807.JPG,,TRUE, +N1,59261,sortie-402a36d9-38fb-4b13-b7b4-d45db58be8de,https://biolit.fr/sorties/sortie-402a36d9-38fb-4b13-b7b4-d45db58be8de/,Phil,,8/13/2019 0:00,19.0000000,19.0000000,47.796424000000,-4.327014000000,,Penmarc'h - Finistère,39966,observation-402a36d9-38fb-4b13-b7b4-d45db58be8de-6,https://biolit.fr/observations/observation-402a36d9-38fb-4b13-b7b4-d45db58be8de-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120809.JPG,,FALSE, +N1,59262,sortie-ff036e76-f687-4813-8886-d21cb47ce006,https://biolit.fr/sorties/sortie-ff036e76-f687-4813-8886-d21cb47ce006/,Phil,,7/22/2018 0:00,14.0:55,15.0000000,47.725045000000,-3.974092000000,,Fouesnant - Finistère,39968,observation-ff036e76-f687-4813-8886-d21cb47ce006,https://biolit.fr/observations/observation-ff036e76-f687-4813-8886-d21cb47ce006/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120032.JPG,,FALSE, +N1,59262,sortie-ff036e76-f687-4813-8886-d21cb47ce006,https://biolit.fr/sorties/sortie-ff036e76-f687-4813-8886-d21cb47ce006/,Phil,,7/22/2018 0:00,14.0:55,15.0000000,47.725045000000,-3.974092000000,,Fouesnant - Finistère,39970,observation-ff036e76-f687-4813-8886-d21cb47ce006-2,https://biolit.fr/observations/observation-ff036e76-f687-4813-8886-d21cb47ce006-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120034.JPG,,FALSE, +N1,59262,sortie-ff036e76-f687-4813-8886-d21cb47ce006,https://biolit.fr/sorties/sortie-ff036e76-f687-4813-8886-d21cb47ce006/,Phil,,7/22/2018 0:00,14.0:55,15.0000000,47.725045000000,-3.974092000000,,Fouesnant - Finistère,39972,observation-ff036e76-f687-4813-8886-d21cb47ce006-3,https://biolit.fr/observations/observation-ff036e76-f687-4813-8886-d21cb47ce006-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120031.JPG,,FALSE, +N1,59262,sortie-ff036e76-f687-4813-8886-d21cb47ce006,https://biolit.fr/sorties/sortie-ff036e76-f687-4813-8886-d21cb47ce006/,Phil,,7/22/2018 0:00,14.0:55,15.0000000,47.725045000000,-3.974092000000,,Fouesnant - Finistère,39974,observation-ff036e76-f687-4813-8886-d21cb47ce006-4,https://biolit.fr/observations/observation-ff036e76-f687-4813-8886-d21cb47ce006-4/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1120028.JPG,,TRUE, +N1,59263,sortie-0ef5c5b8-3af5-4b7d-a592-f7424c8461da,https://biolit.fr/sorties/sortie-0ef5c5b8-3af5-4b7d-a592-f7424c8461da/,Phil,,05/05/2019,12.0000000,12.0000000,47.799259000000,-4.178053000000,,Loctudy - Finistère,39976,observation-0ef5c5b8-3af5-4b7d-a592-f7424c8461da,https://biolit.fr/observations/observation-0ef5c5b8-3af5-4b7d-a592-f7424c8461da/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20190505_122137.jpg,,TRUE, +N1,59263,sortie-0ef5c5b8-3af5-4b7d-a592-f7424c8461da,https://biolit.fr/sorties/sortie-0ef5c5b8-3af5-4b7d-a592-f7424c8461da/,Phil,,05/05/2019,12.0000000,12.0000000,47.799259000000,-4.178053000000,,Loctudy - Finistère,39978,observation-0ef5c5b8-3af5-4b7d-a592-f7424c8461da-2,https://biolit.fr/observations/observation-0ef5c5b8-3af5-4b7d-a592-f7424c8461da-2/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20190505_122155.jpg,,TRUE, +N1,59263,sortie-0ef5c5b8-3af5-4b7d-a592-f7424c8461da,https://biolit.fr/sorties/sortie-0ef5c5b8-3af5-4b7d-a592-f7424c8461da/,Phil,,05/05/2019,12.0000000,12.0000000,47.799259000000,-4.178053000000,,Loctudy - Finistère,39980,observation-0ef5c5b8-3af5-4b7d-a592-f7424c8461da-3,https://biolit.fr/observations/observation-0ef5c5b8-3af5-4b7d-a592-f7424c8461da-3/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20190505_122215.jpg,,TRUE, +N1,59263,sortie-0ef5c5b8-3af5-4b7d-a592-f7424c8461da,https://biolit.fr/sorties/sortie-0ef5c5b8-3af5-4b7d-a592-f7424c8461da/,Phil,,05/05/2019,12.0000000,12.0000000,47.799259000000,-4.178053000000,,Loctudy - Finistère,39982,observation-0ef5c5b8-3af5-4b7d-a592-f7424c8461da-4,https://biolit.fr/observations/observation-0ef5c5b8-3af5-4b7d-a592-f7424c8461da-4/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20190505_122233.jpg,,TRUE, +N1,59263,sortie-0ef5c5b8-3af5-4b7d-a592-f7424c8461da,https://biolit.fr/sorties/sortie-0ef5c5b8-3af5-4b7d-a592-f7424c8461da/,Phil,,05/05/2019,12.0000000,12.0000000,47.799259000000,-4.178053000000,,Loctudy - Finistère,39984,observation-0ef5c5b8-3af5-4b7d-a592-f7424c8461da-5,https://biolit.fr/observations/observation-0ef5c5b8-3af5-4b7d-a592-f7424c8461da-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20190505_121211.jpg,,TRUE, +N1,59264,sortie-facde69a-035e-43dd-a6ba-c0d91d817db2,https://biolit.fr/sorties/sortie-facde69a-035e-43dd-a6ba-c0d91d817db2/,Phil,,09/03/2019,15.000005,15.0000000,47.894434000000,-3.967953000000,,La Forêt-Fouesnant - Finistère,39986,observation-facde69a-035e-43dd-a6ba-c0d91d817db2,https://biolit.fr/observations/observation-facde69a-035e-43dd-a6ba-c0d91d817db2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120869.JPG,,FALSE, +N1,59264,sortie-facde69a-035e-43dd-a6ba-c0d91d817db2,https://biolit.fr/sorties/sortie-facde69a-035e-43dd-a6ba-c0d91d817db2/,Phil,,09/03/2019,15.000005,15.0000000,47.894434000000,-3.967953000000,,La Forêt-Fouesnant - Finistère,39988,observation-facde69a-035e-43dd-a6ba-c0d91d817db2-2,https://biolit.fr/observations/observation-facde69a-035e-43dd-a6ba-c0d91d817db2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120863.JPG,,FALSE, +N1,59265,sortie-315afe24-8c6b-433e-8a11-451cfb3b671e,https://biolit.fr/sorties/sortie-315afe24-8c6b-433e-8a11-451cfb3b671e/,Phil,,09/03/2019,14.0:35,14.0000000,47.880146000000,-3.932174000000,,Concarneau - Finistère,39990,observation-315afe24-8c6b-433e-8a11-451cfb3b671e,https://biolit.fr/observations/observation-315afe24-8c6b-433e-8a11-451cfb3b671e/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/P1120859.JPG,,TRUE, +N1,59265,sortie-315afe24-8c6b-433e-8a11-451cfb3b671e,https://biolit.fr/sorties/sortie-315afe24-8c6b-433e-8a11-451cfb3b671e/,Phil,,09/03/2019,14.0:35,14.0000000,47.880146000000,-3.932174000000,,Concarneau - Finistère,39992,observation-315afe24-8c6b-433e-8a11-451cfb3b671e-2,https://biolit.fr/observations/observation-315afe24-8c6b-433e-8a11-451cfb3b671e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120858.JPG,,FALSE, +N1,59265,sortie-315afe24-8c6b-433e-8a11-451cfb3b671e,https://biolit.fr/sorties/sortie-315afe24-8c6b-433e-8a11-451cfb3b671e/,Phil,,09/03/2019,14.0:35,14.0000000,47.880146000000,-3.932174000000,,Concarneau - Finistère,39994,observation-315afe24-8c6b-433e-8a11-451cfb3b671e-3,https://biolit.fr/observations/observation-315afe24-8c6b-433e-8a11-451cfb3b671e-3/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/P1120856.JPG,,TRUE, +N1,59266,sortie-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5,https://biolit.fr/sorties/sortie-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5/,Phil,,5/19/2019 0:00,11.0000000,11.0000000,47.799403000000,-4.179313000000,,Loctudy - Finistère,39996,observation-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5,https://biolit.fr/observations/observation-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20190519_110807.jpg,,TRUE, +N1,59266,sortie-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5,https://biolit.fr/sorties/sortie-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5/,Phil,,5/19/2019 0:00,11.0000000,11.0000000,47.799403000000,-4.179313000000,,Loctudy - Finistère,39998,observation-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5-2,https://biolit.fr/observations/observation-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190519_111030.jpg,,TRUE, +N1,59266,sortie-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5,https://biolit.fr/sorties/sortie-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5/,Phil,,5/19/2019 0:00,11.0000000,11.0000000,47.799403000000,-4.179313000000,,Loctudy - Finistère,40000,observation-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5-3,https://biolit.fr/observations/observation-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5-3/,Sycon ciliatum,Eponge petit œuf,,https://biolit.fr/wp-content/uploads/2023/07/20190519_111439.jpg,,TRUE, +N1,59266,sortie-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5,https://biolit.fr/sorties/sortie-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5/,Phil,,5/19/2019 0:00,11.0000000,11.0000000,47.799403000000,-4.179313000000,,Loctudy - Finistère,40002,observation-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5-4,https://biolit.fr/observations/observation-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5-4/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20190519_111504.jpg,,TRUE, +N1,59266,sortie-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5,https://biolit.fr/sorties/sortie-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5/,Phil,,5/19/2019 0:00,11.0000000,11.0000000,47.799403000000,-4.179313000000,,Loctudy - Finistère,40004,observation-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5-5,https://biolit.fr/observations/observation-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5-5/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/20190519_112020.jpg,,TRUE, +N1,59266,sortie-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5,https://biolit.fr/sorties/sortie-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5/,Phil,,5/19/2019 0:00,11.0000000,11.0000000,47.799403000000,-4.179313000000,,Loctudy - Finistère,40006,observation-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5-6,https://biolit.fr/observations/observation-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190519_112929.jpg,,FALSE, +N1,59267,sortie-bfd65706-73ae-45c4-95e2-9dc18632b0f0,https://biolit.fr/sorties/sortie-bfd65706-73ae-45c4-95e2-9dc18632b0f0/,Phil,,9/19/2019 0:00,12.000005,12.0000000,47.791859000000,-4.286436000000,,Guilvinec - Finistère,40008,observation-bfd65706-73ae-45c4-95e2-9dc18632b0f0,https://biolit.fr/observations/observation-bfd65706-73ae-45c4-95e2-9dc18632b0f0/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20190919_120644.jpg,,TRUE, +N1,59267,sortie-bfd65706-73ae-45c4-95e2-9dc18632b0f0,https://biolit.fr/sorties/sortie-bfd65706-73ae-45c4-95e2-9dc18632b0f0/,Phil,,9/19/2019 0:00,12.000005,12.0000000,47.791859000000,-4.286436000000,,Guilvinec - Finistère,40010,observation-bfd65706-73ae-45c4-95e2-9dc18632b0f0-2,https://biolit.fr/observations/observation-bfd65706-73ae-45c4-95e2-9dc18632b0f0-2/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20190919_120733.jpg,,TRUE, +N1,59267,sortie-bfd65706-73ae-45c4-95e2-9dc18632b0f0,https://biolit.fr/sorties/sortie-bfd65706-73ae-45c4-95e2-9dc18632b0f0/,Phil,,9/19/2019 0:00,12.000005,12.0000000,47.791859000000,-4.286436000000,,Guilvinec - Finistère,40012,observation-bfd65706-73ae-45c4-95e2-9dc18632b0f0-3,https://biolit.fr/observations/observation-bfd65706-73ae-45c4-95e2-9dc18632b0f0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190919_120832.jpg,,FALSE, +N1,59268,sortie-df40b7b5-47c9-4beb-8c34-627c5b50e2bc,https://biolit.fr/sorties/sortie-df40b7b5-47c9-4beb-8c34-627c5b50e2bc/,Phil,,09/09/2019,16.0000000,16.0:35,47.861092000000,-3.983833000000,,Fouesnant - Finistère,40014,observation-df40b7b5-47c9-4beb-8c34-627c5b50e2bc,https://biolit.fr/observations/observation-df40b7b5-47c9-4beb-8c34-627c5b50e2bc/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190909_163727.jpg,,FALSE, +N1,59269,sortie-eff7f20a-c264-4c7b-95f2-1f9044469500,https://biolit.fr/sorties/sortie-eff7f20a-c264-4c7b-95f2-1f9044469500/,eumétazoaire,,9/19/2019 0:00,11.0000000,11.0000000,50.750490000000,1.594975000000,,Boulogne sur mer,40016,observation-eff7f20a-c264-4c7b-95f2-1f9044469500,https://biolit.fr/observations/observation-eff7f20a-c264-4c7b-95f2-1f9044469500/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorine à lignes noires-scaled.jpg,,TRUE, +N1,59269,sortie-eff7f20a-c264-4c7b-95f2-1f9044469500,https://biolit.fr/sorties/sortie-eff7f20a-c264-4c7b-95f2-1f9044469500/,eumétazoaire,,9/19/2019 0:00,11.0000000,11.0000000,50.750490000000,1.594975000000,,Boulogne sur mer,40018,observation-eff7f20a-c264-4c7b-95f2-1f9044469500-2,https://biolit.fr/observations/observation-eff7f20a-c264-4c7b-95f2-1f9044469500-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Bigorneaux_0-scaled.jpg,,TRUE, +N1,59269,sortie-eff7f20a-c264-4c7b-95f2-1f9044469500,https://biolit.fr/sorties/sortie-eff7f20a-c264-4c7b-95f2-1f9044469500/,eumétazoaire,,9/19/2019 0:00,11.0000000,11.0000000,50.750490000000,1.594975000000,,Boulogne sur mer,40020,observation-eff7f20a-c264-4c7b-95f2-1f9044469500-3,https://biolit.fr/observations/observation-eff7f20a-c264-4c7b-95f2-1f9044469500-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/nasse réticulée-scaled.jpg,,TRUE, +N1,59270,sortie-d40a420b-26ad-4536-8a4c-127d35bcc220,https://biolit.fr/sorties/sortie-d40a420b-26ad-4536-8a4c-127d35bcc220/,Phil,,05/05/2019,11.0:35,12.000005,47.79887900000,-4.179233000000,,Loctudy - Finistère,40022,observation-d40a420b-26ad-4536-8a4c-127d35bcc220,https://biolit.fr/observations/observation-d40a420b-26ad-4536-8a4c-127d35bcc220/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/20190505_120524.jpg,,TRUE, +N1,59270,sortie-d40a420b-26ad-4536-8a4c-127d35bcc220,https://biolit.fr/sorties/sortie-d40a420b-26ad-4536-8a4c-127d35bcc220/,Phil,,05/05/2019,11.0:35,12.000005,47.79887900000,-4.179233000000,,Loctudy - Finistère,40024,observation-d40a420b-26ad-4536-8a4c-127d35bcc220-2,https://biolit.fr/observations/observation-d40a420b-26ad-4536-8a4c-127d35bcc220-2/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20190505_120615.jpg,,TRUE, +N1,59270,sortie-d40a420b-26ad-4536-8a4c-127d35bcc220,https://biolit.fr/sorties/sortie-d40a420b-26ad-4536-8a4c-127d35bcc220/,Phil,,05/05/2019,11.0:35,12.000005,47.79887900000,-4.179233000000,,Loctudy - Finistère,40026,observation-d40a420b-26ad-4536-8a4c-127d35bcc220-3,https://biolit.fr/observations/observation-d40a420b-26ad-4536-8a4c-127d35bcc220-3/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20190505_120629.jpg,,TRUE, +N1,59270,sortie-d40a420b-26ad-4536-8a4c-127d35bcc220,https://biolit.fr/sorties/sortie-d40a420b-26ad-4536-8a4c-127d35bcc220/,Phil,,05/05/2019,11.0:35,12.000005,47.79887900000,-4.179233000000,,Loctudy - Finistère,40028,observation-d40a420b-26ad-4536-8a4c-127d35bcc220-4,https://biolit.fr/observations/observation-d40a420b-26ad-4536-8a4c-127d35bcc220-4/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20190505_120807.jpg,,TRUE, +N1,59270,sortie-d40a420b-26ad-4536-8a4c-127d35bcc220,https://biolit.fr/sorties/sortie-d40a420b-26ad-4536-8a4c-127d35bcc220/,Phil,,05/05/2019,11.0:35,12.000005,47.79887900000,-4.179233000000,,Loctudy - Finistère,40030,observation-d40a420b-26ad-4536-8a4c-127d35bcc220-5,https://biolit.fr/observations/observation-d40a420b-26ad-4536-8a4c-127d35bcc220-5/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20190505_120816.jpg,,TRUE, +N1,59270,sortie-d40a420b-26ad-4536-8a4c-127d35bcc220,https://biolit.fr/sorties/sortie-d40a420b-26ad-4536-8a4c-127d35bcc220/,Phil,,05/05/2019,11.0:35,12.000005,47.79887900000,-4.179233000000,,Loctudy - Finistère,40032,observation-d40a420b-26ad-4536-8a4c-127d35bcc220-6,https://biolit.fr/observations/observation-d40a420b-26ad-4536-8a4c-127d35bcc220-6/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20190505_120911.jpg,,TRUE, +N1,59271,sortie-3b16669f-9a91-4565-b610-63b9b6b188f0,https://biolit.fr/sorties/sortie-3b16669f-9a91-4565-b610-63b9b6b188f0/,Phil,,09/03/2019,14.0000000,14.0000000,47.882467000000,-3.936755000000,,Concarneau - Finistère,40034,observation-3b16669f-9a91-4565-b610-63b9b6b188f0,https://biolit.fr/observations/observation-3b16669f-9a91-4565-b610-63b9b6b188f0/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/P1120837.JPG,,TRUE, +N1,59271,sortie-3b16669f-9a91-4565-b610-63b9b6b188f0,https://biolit.fr/sorties/sortie-3b16669f-9a91-4565-b610-63b9b6b188f0/,Phil,,09/03/2019,14.0000000,14.0000000,47.882467000000,-3.936755000000,,Concarneau - Finistère,40036,observation-3b16669f-9a91-4565-b610-63b9b6b188f0-2,https://biolit.fr/observations/observation-3b16669f-9a91-4565-b610-63b9b6b188f0-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/P1120839.JPG,,TRUE, +N1,59271,sortie-3b16669f-9a91-4565-b610-63b9b6b188f0,https://biolit.fr/sorties/sortie-3b16669f-9a91-4565-b610-63b9b6b188f0/,Phil,,09/03/2019,14.0000000,14.0000000,47.882467000000,-3.936755000000,,Concarneau - Finistère,40038,observation-3b16669f-9a91-4565-b610-63b9b6b188f0-3,https://biolit.fr/observations/observation-3b16669f-9a91-4565-b610-63b9b6b188f0-3/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1120847.JPG,,TRUE, +N1,59271,sortie-3b16669f-9a91-4565-b610-63b9b6b188f0,https://biolit.fr/sorties/sortie-3b16669f-9a91-4565-b610-63b9b6b188f0/,Phil,,09/03/2019,14.0000000,14.0000000,47.882467000000,-3.936755000000,,Concarneau - Finistère,40040,observation-3b16669f-9a91-4565-b610-63b9b6b188f0-4,https://biolit.fr/observations/observation-3b16669f-9a91-4565-b610-63b9b6b188f0-4/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/P1120851.JPG,,TRUE, +N1,59271,sortie-3b16669f-9a91-4565-b610-63b9b6b188f0,https://biolit.fr/sorties/sortie-3b16669f-9a91-4565-b610-63b9b6b188f0/,Phil,,09/03/2019,14.0000000,14.0000000,47.882467000000,-3.936755000000,,Concarneau - Finistère,40042,observation-3b16669f-9a91-4565-b610-63b9b6b188f0-5,https://biolit.fr/observations/observation-3b16669f-9a91-4565-b610-63b9b6b188f0-5/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/P1120854.JPG,,TRUE, +N1,59272,sortie-3bf1a7d6-2d11-4771-97ac-173de0ba4e79,https://biolit.fr/sorties/sortie-3bf1a7d6-2d11-4771-97ac-173de0ba4e79/,Phil,,5/19/2019 0:00,10.0:45,11.000005,47.799706000000,-4.179815000000,,Loctudy - Finistère,40044,observation-3bf1a7d6-2d11-4771-97ac-173de0ba4e79,https://biolit.fr/observations/observation-3bf1a7d6-2d11-4771-97ac-173de0ba4e79/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190519_104947.jpg,,FALSE, +N1,59272,sortie-3bf1a7d6-2d11-4771-97ac-173de0ba4e79,https://biolit.fr/sorties/sortie-3bf1a7d6-2d11-4771-97ac-173de0ba4e79/,Phil,,5/19/2019 0:00,10.0:45,11.000005,47.799706000000,-4.179815000000,,Loctudy - Finistère,40046,observation-3bf1a7d6-2d11-4771-97ac-173de0ba4e79-2,https://biolit.fr/observations/observation-3bf1a7d6-2d11-4771-97ac-173de0ba4e79-2/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/20190519_105408.jpg,,TRUE, +N1,59272,sortie-3bf1a7d6-2d11-4771-97ac-173de0ba4e79,https://biolit.fr/sorties/sortie-3bf1a7d6-2d11-4771-97ac-173de0ba4e79/,Phil,,5/19/2019 0:00,10.0:45,11.000005,47.799706000000,-4.179815000000,,Loctudy - Finistère,40048,observation-3bf1a7d6-2d11-4771-97ac-173de0ba4e79-3,https://biolit.fr/observations/observation-3bf1a7d6-2d11-4771-97ac-173de0ba4e79-3/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/20190519_105426.jpg,,TRUE, +N1,59272,sortie-3bf1a7d6-2d11-4771-97ac-173de0ba4e79,https://biolit.fr/sorties/sortie-3bf1a7d6-2d11-4771-97ac-173de0ba4e79/,Phil,,5/19/2019 0:00,10.0:45,11.000005,47.799706000000,-4.179815000000,,Loctudy - Finistère,40050,observation-3bf1a7d6-2d11-4771-97ac-173de0ba4e79-4,https://biolit.fr/observations/observation-3bf1a7d6-2d11-4771-97ac-173de0ba4e79-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190519_105006.jpg,,FALSE, +N1,59272,sortie-3bf1a7d6-2d11-4771-97ac-173de0ba4e79,https://biolit.fr/sorties/sortie-3bf1a7d6-2d11-4771-97ac-173de0ba4e79/,Phil,,5/19/2019 0:00,10.0:45,11.000005,47.799706000000,-4.179815000000,,Loctudy - Finistère,40052,observation-3bf1a7d6-2d11-4771-97ac-173de0ba4e79-5,https://biolit.fr/observations/observation-3bf1a7d6-2d11-4771-97ac-173de0ba4e79-5/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20190519_105840.jpg,,TRUE, +N1,59272,sortie-3bf1a7d6-2d11-4771-97ac-173de0ba4e79,https://biolit.fr/sorties/sortie-3bf1a7d6-2d11-4771-97ac-173de0ba4e79/,Phil,,5/19/2019 0:00,10.0:45,11.000005,47.799706000000,-4.179815000000,,Loctudy - Finistère,40054,observation-3bf1a7d6-2d11-4771-97ac-173de0ba4e79-6,https://biolit.fr/observations/observation-3bf1a7d6-2d11-4771-97ac-173de0ba4e79-6/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20190519_110044.jpg,,TRUE, +N1,59272,sortie-3bf1a7d6-2d11-4771-97ac-173de0ba4e79,https://biolit.fr/sorties/sortie-3bf1a7d6-2d11-4771-97ac-173de0ba4e79/,Phil,,5/19/2019 0:00,10.0:45,11.000005,47.799706000000,-4.179815000000,,Loctudy - Finistère,40056,observation-3bf1a7d6-2d11-4771-97ac-173de0ba4e79-7,https://biolit.fr/observations/observation-3bf1a7d6-2d11-4771-97ac-173de0ba4e79-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190519_110357.jpg,,FALSE, +N1,59273,sortie-065b4b50-d0c2-4fa4-984d-8cf6e2f09983,https://biolit.fr/sorties/sortie-065b4b50-d0c2-4fa4-984d-8cf6e2f09983/,helemog,,9/15/2019 0:00,10.0000000,12.0000000,50.407213000000,1.55751000000,,Berck-plage,40058,observation-065b4b50-d0c2-4fa4-984d-8cf6e2f09983,https://biolit.fr/observations/observation-065b4b50-d0c2-4fa4-984d-8cf6e2f09983/,,,,https://biolit.fr/wp-content/uploads/2023/07/Berck_15_09_19_11h30am-scaled.jpg,,FALSE, +N1,59274,sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60,https://biolit.fr/sorties/sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60/,Roman,,9/22/2019 0:00,17.0000000,18.0000000,47.677916000000,-3.202188000000,,Pont-lorois,40060,observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60,https://biolit.fr/observations/observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis.jpg,,TRUE, +N1,59274,sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60,https://biolit.fr/sorties/sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60/,Roman,,9/22/2019 0:00,17.0000000,18.0000000,47.677916000000,-3.202188000000,,Pont-lorois,40061,observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-2,https://biolit.fr/observations/observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-2/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens-scaled.jpg,,TRUE, +N1,59274,sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60,https://biolit.fr/sorties/sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60/,Roman,,9/22/2019 0:00,17.0000000,18.0000000,47.677916000000,-3.202188000000,,Pont-lorois,40062,observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-3,https://biolit.fr/observations/observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-3/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/asterina gibbosa.PNG,,TRUE, +N1,59274,sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60,https://biolit.fr/sorties/sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60/,Roman,,9/22/2019 0:00,17.0000000,18.0000000,47.677916000000,-3.202188000000,,Pont-lorois,40063,observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-4,https://biolit.fr/observations/observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-4/,Epitonium clathrus,Scalaire,,https://biolit.fr/wp-content/uploads/2023/07/Epitonium clathrus.PNG,,TRUE, +N1,59274,sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60,https://biolit.fr/sorties/sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60/,Roman,,9/22/2019 0:00,17.0000000,18.0000000,47.677916000000,-3.202188000000,,Pont-lorois,40064,observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-5,https://biolit.fr/observations/observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-5/,Gari depressa,Psammobie déprimée,,https://biolit.fr/wp-content/uploads/2023/07/Gari depressa.jpg,,TRUE, +N1,59274,sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60,https://biolit.fr/sorties/sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60/,Roman,,9/22/2019 0:00,17.0000000,18.0000000,47.677916000000,-3.202188000000,,Pont-lorois,40065,observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-6,https://biolit.fr/observations/observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-6/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/Haliotis tuberculata.PNG,,TRUE, +N1,59274,sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60,https://biolit.fr/sorties/sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60/,Roman,,9/22/2019 0:00,17.0000000,18.0000000,47.677916000000,-3.202188000000,,Pont-lorois,40066,observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-7,https://biolit.fr/observations/observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-7/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina fabalis.PNG,,TRUE, +N1,59274,sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60,https://biolit.fr/sorties/sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60/,Roman,,9/22/2019 0:00,17.0000000,18.0000000,47.677916000000,-3.202188000000,,Pont-lorois,40067,observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-8,https://biolit.fr/observations/observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-8/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/Ophiotrix fragilis.PNG,,TRUE, +N1,59274,sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60,https://biolit.fr/sorties/sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60/,Roman,,9/22/2019 0:00,17.0000000,18.0000000,47.677916000000,-3.202188000000,,Pont-lorois,40068,observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-9,https://biolit.fr/observations/observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-9/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/porcellana platycheles 1.PNG,,TRUE, +N1,59274,sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60,https://biolit.fr/sorties/sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60/,Roman,,9/22/2019 0:00,17.0000000,18.0000000,47.677916000000,-3.202188000000,,Pont-lorois,40070,observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-10,https://biolit.fr/observations/observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-10/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris1.PNG,,TRUE, +N1,59275,sortie-c80aefdf-45cd-452f-9432-acc65f6d3850,https://biolit.fr/sorties/sortie-c80aefdf-45cd-452f-9432-acc65f6d3850/,Phil,,9/19/2019 0:00,12.000005,12.0000000,47.791818000000,-4.286543000000,,Guilvinec - Finistère,40072,observation-c80aefdf-45cd-452f-9432-acc65f6d3850,https://biolit.fr/observations/observation-c80aefdf-45cd-452f-9432-acc65f6d3850/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190919_120505.jpg,,TRUE, +N1,59275,sortie-c80aefdf-45cd-452f-9432-acc65f6d3850,https://biolit.fr/sorties/sortie-c80aefdf-45cd-452f-9432-acc65f6d3850/,Phil,,9/19/2019 0:00,12.000005,12.0000000,47.791818000000,-4.286543000000,,Guilvinec - Finistère,40074,observation-c80aefdf-45cd-452f-9432-acc65f6d3850-2,https://biolit.fr/observations/observation-c80aefdf-45cd-452f-9432-acc65f6d3850-2/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/20190919_120524.jpg,,TRUE, +N1,59275,sortie-c80aefdf-45cd-452f-9432-acc65f6d3850,https://biolit.fr/sorties/sortie-c80aefdf-45cd-452f-9432-acc65f6d3850/,Phil,,9/19/2019 0:00,12.000005,12.0000000,47.791818000000,-4.286543000000,,Guilvinec - Finistère,40076,observation-c80aefdf-45cd-452f-9432-acc65f6d3850-3,https://biolit.fr/observations/observation-c80aefdf-45cd-452f-9432-acc65f6d3850-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190919_120421.jpg,,TRUE, +N1,59275,sortie-c80aefdf-45cd-452f-9432-acc65f6d3850,https://biolit.fr/sorties/sortie-c80aefdf-45cd-452f-9432-acc65f6d3850/,Phil,,9/19/2019 0:00,12.000005,12.0000000,47.791818000000,-4.286543000000,,Guilvinec - Finistère,40078,observation-c80aefdf-45cd-452f-9432-acc65f6d3850-4,https://biolit.fr/observations/observation-c80aefdf-45cd-452f-9432-acc65f6d3850-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190919_120423.jpg,,TRUE, +N1,59275,sortie-c80aefdf-45cd-452f-9432-acc65f6d3850,https://biolit.fr/sorties/sortie-c80aefdf-45cd-452f-9432-acc65f6d3850/,Phil,,9/19/2019 0:00,12.000005,12.0000000,47.791818000000,-4.286543000000,,Guilvinec - Finistère,40080,observation-c80aefdf-45cd-452f-9432-acc65f6d3850-5,https://biolit.fr/observations/observation-c80aefdf-45cd-452f-9432-acc65f6d3850-5/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190919_120433.jpg,,TRUE, +N1,59276,sortie-07fd2951-477a-40e6-90b5-95557880249c,https://biolit.fr/sorties/sortie-07fd2951-477a-40e6-90b5-95557880249c/,Roman,,9/20/2019 0:00,15.0000000,16.0000000,47.704030000000,-3.35016000000,,Port-louis,40082,observation-07fd2951-477a-40e6-90b5-95557880249c,https://biolit.fr/observations/observation-07fd2951-477a-40e6-90b5-95557880249c/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus.PNG,,TRUE, +N1,59276,sortie-07fd2951-477a-40e6-90b5-95557880249c,https://biolit.fr/sorties/sortie-07fd2951-477a-40e6-90b5-95557880249c/,Roman,,9/20/2019 0:00,15.0000000,16.0000000,47.704030000000,-3.35016000000,,Port-louis,40083,observation-07fd2951-477a-40e6-90b5-95557880249c-2,https://biolit.fr/observations/observation-07fd2951-477a-40e6-90b5-95557880249c-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas-scaled.jpg,,TRUE, +N1,59276,sortie-07fd2951-477a-40e6-90b5-95557880249c,https://biolit.fr/sorties/sortie-07fd2951-477a-40e6-90b5-95557880249c/,Roman,,9/20/2019 0:00,15.0000000,16.0000000,47.704030000000,-3.35016000000,,Port-louis,40084,observation-07fd2951-477a-40e6-90b5-95557880249c-3,https://biolit.fr/observations/observation-07fd2951-477a-40e6-90b5-95557880249c-3/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebra erinaceus.PNG,,TRUE, +N1,59276,sortie-07fd2951-477a-40e6-90b5-95557880249c,https://biolit.fr/sorties/sortie-07fd2951-477a-40e6-90b5-95557880249c/,Roman,,9/20/2019 0:00,15.0000000,16.0000000,47.704030000000,-3.35016000000,,Port-louis,40085,observation-07fd2951-477a-40e6-90b5-95557880249c-4,https://biolit.fr/observations/observation-07fd2951-477a-40e6-90b5-95557880249c-4/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/Palaemon elegans.PNG,,TRUE, +N1,59276,sortie-07fd2951-477a-40e6-90b5-95557880249c,https://biolit.fr/sorties/sortie-07fd2951-477a-40e6-90b5-95557880249c/,Roman,,9/20/2019 0:00,15.0000000,16.0000000,47.704030000000,-3.35016000000,,Port-louis,40086,observation-07fd2951-477a-40e6-90b5-95557880249c-5,https://biolit.fr/observations/observation-07fd2951-477a-40e6-90b5-95557880249c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/pododesmus patelliformis.PNG,,FALSE, +N1,59276,sortie-07fd2951-477a-40e6-90b5-95557880249c,https://biolit.fr/sorties/sortie-07fd2951-477a-40e6-90b5-95557880249c/,Roman,,9/20/2019 0:00,15.0000000,16.0000000,47.704030000000,-3.35016000000,,Port-louis,40088,observation-07fd2951-477a-40e6-90b5-95557880249c-6,https://biolit.fr/observations/observation-07fd2951-477a-40e6-90b5-95557880249c-6/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus.PNG,,TRUE, +N1,59276,sortie-07fd2951-477a-40e6-90b5-95557880249c,https://biolit.fr/sorties/sortie-07fd2951-477a-40e6-90b5-95557880249c/,Roman,,9/20/2019 0:00,15.0000000,16.0000000,47.704030000000,-3.35016000000,,Port-louis,40090,observation-07fd2951-477a-40e6-90b5-95557880249c-8,https://biolit.fr/observations/observation-07fd2951-477a-40e6-90b5-95557880249c-8/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea-scaled.jpg,,TRUE, +N1,59276,sortie-07fd2951-477a-40e6-90b5-95557880249c,https://biolit.fr/sorties/sortie-07fd2951-477a-40e6-90b5-95557880249c/,Roman,,9/20/2019 0:00,15.0000000,16.0000000,47.704030000000,-3.35016000000,,Port-louis,40091,observation-07fd2951-477a-40e6-90b5-95557880249c-9,https://biolit.fr/observations/observation-07fd2951-477a-40e6-90b5-95557880249c-9/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris-rotated.jpg,,TRUE, +N1,59277,sortie-14999eef-242a-4c79-831c-406affb52b85,https://biolit.fr/sorties/sortie-14999eef-242a-4c79-831c-406affb52b85/,Phil,,5/19/2019 0:00,10.0:35,10.0000000,47.799369000000,-4.181189000000,,Loctudy - Finistère,40092,observation-14999eef-242a-4c79-831c-406affb52b85,https://biolit.fr/observations/observation-14999eef-242a-4c79-831c-406affb52b85/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190519_103956.jpg,,FALSE, +N1,59277,sortie-14999eef-242a-4c79-831c-406affb52b85,https://biolit.fr/sorties/sortie-14999eef-242a-4c79-831c-406affb52b85/,Phil,,5/19/2019 0:00,10.0:35,10.0000000,47.799369000000,-4.181189000000,,Loctudy - Finistère,40094,observation-14999eef-242a-4c79-831c-406affb52b85-2,https://biolit.fr/observations/observation-14999eef-242a-4c79-831c-406affb52b85-2/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20190519_104208.jpg,,TRUE, +N1,59277,sortie-14999eef-242a-4c79-831c-406affb52b85,https://biolit.fr/sorties/sortie-14999eef-242a-4c79-831c-406affb52b85/,Phil,,5/19/2019 0:00,10.0:35,10.0000000,47.799369000000,-4.181189000000,,Loctudy - Finistère,40096,observation-14999eef-242a-4c79-831c-406affb52b85-3,https://biolit.fr/observations/observation-14999eef-242a-4c79-831c-406affb52b85-3/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190519_104444.jpg,,TRUE, +N1,59277,sortie-14999eef-242a-4c79-831c-406affb52b85,https://biolit.fr/sorties/sortie-14999eef-242a-4c79-831c-406affb52b85/,Phil,,5/19/2019 0:00,10.0:35,10.0000000,47.799369000000,-4.181189000000,,Loctudy - Finistère,40098,observation-14999eef-242a-4c79-831c-406affb52b85-4,https://biolit.fr/observations/observation-14999eef-242a-4c79-831c-406affb52b85-4/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20190519_104943.jpg,,TRUE, +N1,59278,sortie-3f71aef7-85ea-438b-9973-f9eee4c5af00,https://biolit.fr/sorties/sortie-3f71aef7-85ea-438b-9973-f9eee4c5af00/,Phil,,4/13/2019 0:00,14.0:35,14.0:45,48.625926000000,-4.546563000000,,Plouguerneau - Finistère,40100,observation-3f71aef7-85ea-438b-9973-f9eee4c5af00,https://biolit.fr/observations/observation-3f71aef7-85ea-438b-9973-f9eee4c5af00/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20190413_144543.jpg,,TRUE, +N1,59278,sortie-3f71aef7-85ea-438b-9973-f9eee4c5af00,https://biolit.fr/sorties/sortie-3f71aef7-85ea-438b-9973-f9eee4c5af00/,Phil,,4/13/2019 0:00,14.0:35,14.0:45,48.625926000000,-4.546563000000,,Plouguerneau - Finistère,40102,observation-3f71aef7-85ea-438b-9973-f9eee4c5af00-2,https://biolit.fr/observations/observation-3f71aef7-85ea-438b-9973-f9eee4c5af00-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20190413_144551.jpg,,TRUE, +N1,59278,sortie-3f71aef7-85ea-438b-9973-f9eee4c5af00,https://biolit.fr/sorties/sortie-3f71aef7-85ea-438b-9973-f9eee4c5af00/,Phil,,4/13/2019 0:00,14.0:35,14.0:45,48.625926000000,-4.546563000000,,Plouguerneau - Finistère,40104,observation-3f71aef7-85ea-438b-9973-f9eee4c5af00-3,https://biolit.fr/observations/observation-3f71aef7-85ea-438b-9973-f9eee4c5af00-3/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/20190413_144601.jpg,,TRUE, +N1,59279,sortie-19d8b716-230a-422b-a699-a13cb1f72278,https://biolit.fr/sorties/sortie-19d8b716-230a-422b-a699-a13cb1f72278/,Phil,,05/05/2019,11.0:25,12.0000000,47.798683000000,-4.179066000000,,Loctudy - Finistère,40106,observation-19d8b716-230a-422b-a699-a13cb1f72278,https://biolit.fr/observations/observation-19d8b716-230a-422b-a699-a13cb1f72278/,Atherina presbyter,Prêtre,,https://biolit.fr/wp-content/uploads/2023/07/20190505_115858.jpg,,TRUE, +N1,59279,sortie-19d8b716-230a-422b-a699-a13cb1f72278,https://biolit.fr/sorties/sortie-19d8b716-230a-422b-a699-a13cb1f72278/,Phil,,05/05/2019,11.0:25,12.0000000,47.798683000000,-4.179066000000,,Loctudy - Finistère,40108,observation-19d8b716-230a-422b-a699-a13cb1f72278-2,https://biolit.fr/observations/observation-19d8b716-230a-422b-a699-a13cb1f72278-2/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/2023/07/20190505_115903.jpg,,TRUE, +N1,59279,sortie-19d8b716-230a-422b-a699-a13cb1f72278,https://biolit.fr/sorties/sortie-19d8b716-230a-422b-a699-a13cb1f72278/,Phil,,05/05/2019,11.0:25,12.0000000,47.798683000000,-4.179066000000,,Loctudy - Finistère,40110,observation-19d8b716-230a-422b-a699-a13cb1f72278-3,https://biolit.fr/observations/observation-19d8b716-230a-422b-a699-a13cb1f72278-3/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20190505_115913.jpg,,TRUE, +N1,59279,sortie-19d8b716-230a-422b-a699-a13cb1f72278,https://biolit.fr/sorties/sortie-19d8b716-230a-422b-a699-a13cb1f72278/,Phil,,05/05/2019,11.0:25,12.0000000,47.798683000000,-4.179066000000,,Loctudy - Finistère,40112,observation-19d8b716-230a-422b-a699-a13cb1f72278-4,https://biolit.fr/observations/observation-19d8b716-230a-422b-a699-a13cb1f72278-4/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20190505_115917.jpg,,TRUE, +N1,59279,sortie-19d8b716-230a-422b-a699-a13cb1f72278,https://biolit.fr/sorties/sortie-19d8b716-230a-422b-a699-a13cb1f72278/,Phil,,05/05/2019,11.0:25,12.0000000,47.798683000000,-4.179066000000,,Loctudy - Finistère,40114,observation-19d8b716-230a-422b-a699-a13cb1f72278-5,https://biolit.fr/observations/observation-19d8b716-230a-422b-a699-a13cb1f72278-5/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/2023/07/20190505_115921.jpg,,TRUE, +N1,59279,sortie-19d8b716-230a-422b-a699-a13cb1f72278,https://biolit.fr/sorties/sortie-19d8b716-230a-422b-a699-a13cb1f72278/,Phil,,05/05/2019,11.0:25,12.0000000,47.798683000000,-4.179066000000,,Loctudy - Finistère,40116,observation-19d8b716-230a-422b-a699-a13cb1f72278-6,https://biolit.fr/observations/observation-19d8b716-230a-422b-a699-a13cb1f72278-6/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/2023/07/20190505_115937.jpg,,TRUE, +N1,59279,sortie-19d8b716-230a-422b-a699-a13cb1f72278,https://biolit.fr/sorties/sortie-19d8b716-230a-422b-a699-a13cb1f72278/,Phil,,05/05/2019,11.0:25,12.0000000,47.798683000000,-4.179066000000,,Loctudy - Finistère,40118,observation-19d8b716-230a-422b-a699-a13cb1f72278-7,https://biolit.fr/observations/observation-19d8b716-230a-422b-a699-a13cb1f72278-7/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/2023/07/20190505_120013.jpg,,TRUE, +N1,59280,sortie-574cd770-dc84-4b95-a650-51494aad589b,https://biolit.fr/sorties/sortie-574cd770-dc84-4b95-a650-51494aad589b/,Phil,,6/14/2019 0:00,12.0:15,12.0000000,47.892998000000,-4.129357000000,,Gouesnach - Finistère,40120,observation-574cd770-dc84-4b95-a650-51494aad589b,https://biolit.fr/observations/observation-574cd770-dc84-4b95-a650-51494aad589b/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20190614_122029.jpg,,TRUE, +N1,59280,sortie-574cd770-dc84-4b95-a650-51494aad589b,https://biolit.fr/sorties/sortie-574cd770-dc84-4b95-a650-51494aad589b/,Phil,,6/14/2019 0:00,12.0:15,12.0000000,47.892998000000,-4.129357000000,,Gouesnach - Finistère,40122,observation-574cd770-dc84-4b95-a650-51494aad589b-2,https://biolit.fr/observations/observation-574cd770-dc84-4b95-a650-51494aad589b-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20190614_122011.jpg,,TRUE, +N1,59280,sortie-574cd770-dc84-4b95-a650-51494aad589b,https://biolit.fr/sorties/sortie-574cd770-dc84-4b95-a650-51494aad589b/,Phil,,6/14/2019 0:00,12.0:15,12.0000000,47.892998000000,-4.129357000000,,Gouesnach - Finistère,40124,observation-574cd770-dc84-4b95-a650-51494aad589b-3,https://biolit.fr/observations/observation-574cd770-dc84-4b95-a650-51494aad589b-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20190614_121948.jpg,,TRUE, +N1,59281,sortie-b851170f-4e70-4f42-a35d-7186f9ae93d1,https://biolit.fr/sorties/sortie-b851170f-4e70-4f42-a35d-7186f9ae93d1/,Marie Bergé-Lefranc,,09/09/2019,15.0000000,15.0000000,43.445325000000,-1.589387000000,,Bidart (64),40126,observation-b851170f-4e70-4f42-a35d-7186f9ae93d1,https://biolit.fr/observations/observation-b851170f-4e70-4f42-a35d-7186f9ae93d1/,Chelidonichthys cuculus,Grondin rouge,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190909_151511_0-scaled.jpg,,TRUE, +N1,59281,sortie-b851170f-4e70-4f42-a35d-7186f9ae93d1,https://biolit.fr/sorties/sortie-b851170f-4e70-4f42-a35d-7186f9ae93d1/,Marie Bergé-Lefranc,,09/09/2019,15.0000000,15.0000000,43.445325000000,-1.589387000000,,Bidart (64),40128,observation-b851170f-4e70-4f42-a35d-7186f9ae93d1-2,https://biolit.fr/observations/observation-b851170f-4e70-4f42-a35d-7186f9ae93d1-2/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190909_152043-scaled.jpg,,TRUE, +N1,59281,sortie-b851170f-4e70-4f42-a35d-7186f9ae93d1,https://biolit.fr/sorties/sortie-b851170f-4e70-4f42-a35d-7186f9ae93d1/,Marie Bergé-Lefranc,,09/09/2019,15.0000000,15.0000000,43.445325000000,-1.589387000000,,Bidart (64),40130,observation-b851170f-4e70-4f42-a35d-7186f9ae93d1-3,https://biolit.fr/observations/observation-b851170f-4e70-4f42-a35d-7186f9ae93d1-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190909_152318-scaled.jpg,,FALSE, +N1,59281,sortie-b851170f-4e70-4f42-a35d-7186f9ae93d1,https://biolit.fr/sorties/sortie-b851170f-4e70-4f42-a35d-7186f9ae93d1/,Marie Bergé-Lefranc,,09/09/2019,15.0000000,15.0000000,43.445325000000,-1.589387000000,,Bidart (64),40132,observation-b851170f-4e70-4f42-a35d-7186f9ae93d1-4,https://biolit.fr/observations/observation-b851170f-4e70-4f42-a35d-7186f9ae93d1-4/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190909_152419-scaled.jpg,,TRUE, +N1,59281,sortie-b851170f-4e70-4f42-a35d-7186f9ae93d1,https://biolit.fr/sorties/sortie-b851170f-4e70-4f42-a35d-7186f9ae93d1/,Marie Bergé-Lefranc,,09/09/2019,15.0000000,15.0000000,43.445325000000,-1.589387000000,,Bidart (64),40134,observation-b851170f-4e70-4f42-a35d-7186f9ae93d1-5,https://biolit.fr/observations/observation-b851170f-4e70-4f42-a35d-7186f9ae93d1-5/,Solieria chordalis,Cordes de Solier,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190909_152438-scaled.jpg,,TRUE, +N1,59281,sortie-b851170f-4e70-4f42-a35d-7186f9ae93d1,https://biolit.fr/sorties/sortie-b851170f-4e70-4f42-a35d-7186f9ae93d1/,Marie Bergé-Lefranc,,09/09/2019,15.0000000,15.0000000,43.445325000000,-1.589387000000,,Bidart (64),40136,observation-b851170f-4e70-4f42-a35d-7186f9ae93d1-6,https://biolit.fr/observations/observation-b851170f-4e70-4f42-a35d-7186f9ae93d1-6/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190909_152644-scaled.jpg,,TRUE, +N1,59281,sortie-b851170f-4e70-4f42-a35d-7186f9ae93d1,https://biolit.fr/sorties/sortie-b851170f-4e70-4f42-a35d-7186f9ae93d1/,Marie Bergé-Lefranc,,09/09/2019,15.0000000,15.0000000,43.445325000000,-1.589387000000,,Bidart (64),40138,observation-b851170f-4e70-4f42-a35d-7186f9ae93d1-7,https://biolit.fr/observations/observation-b851170f-4e70-4f42-a35d-7186f9ae93d1-7/,Rhombosepion elegans,Os de seiche élégante,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190909_153453-scaled.jpg,,TRUE, +N1,59282,sortie-1e6903a4-e447-4cbb-b7a3-31e6f705b516,https://biolit.fr/sorties/sortie-1e6903a4-e447-4cbb-b7a3-31e6f705b516/,Caterina Casagranda,,09/08/2018,14.0000000,17.0000000,43.199403000000,5.229797000000,,Ile de Planier face nord,40140,observation-1e6903a4-e447-4cbb-b7a3-31e6f705b516,https://biolit.fr/observations/observation-1e6903a4-e447-4cbb-b7a3-31e6f705b516/,Calappa granulata,Crabe honteux,,https://biolit.fr/wp-content/uploads/2023/07/Crabe honteux Photo Bernat Garrigós.jpg,,TRUE, +N1,59282,sortie-1e6903a4-e447-4cbb-b7a3-31e6f705b516,https://biolit.fr/sorties/sortie-1e6903a4-e447-4cbb-b7a3-31e6f705b516/,Caterina Casagranda,,09/08/2018,14.0000000,17.0000000,43.199403000000,5.229797000000,,Ile de Planier face nord,40142,observation-1e6903a4-e447-4cbb-b7a3-31e6f705b516-2,https://biolit.fr/observations/observation-1e6903a4-e447-4cbb-b7a3-31e6f705b516-2/,Calappa granulata,Crabe honteux,,https://biolit.fr/wp-content/uploads/2023/07/Crabe honteux 2 Photo Bernat Garrigós.jpg,,TRUE, +N1,59283,sortie-d734c78b-a8f7-4cd5-9215-4807ce824b86,https://biolit.fr/sorties/sortie-d734c78b-a8f7-4cd5-9215-4807ce824b86/,Micka Green,,09/03/2019,16.0:45,17.0000000,48.639676000000,-2.071383000000,,"Dinard, plage Saint-Enogat",40144,observation-d734c78b-a8f7-4cd5-9215-4807ce824b86,https://biolit.fr/observations/observation-d734c78b-a8f7-4cd5-9215-4807ce824b86/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190903_164901_2-scaled.jpg,,TRUE, +N1,59283,sortie-d734c78b-a8f7-4cd5-9215-4807ce824b86,https://biolit.fr/sorties/sortie-d734c78b-a8f7-4cd5-9215-4807ce824b86/,Micka Green,,09/03/2019,16.0:45,17.0000000,48.639676000000,-2.071383000000,,"Dinard, plage Saint-Enogat",40146,observation-d734c78b-a8f7-4cd5-9215-4807ce824b86-2,https://biolit.fr/observations/observation-d734c78b-a8f7-4cd5-9215-4807ce824b86-2/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190903_165131_4-scaled.jpg,,TRUE, +N1,59283,sortie-d734c78b-a8f7-4cd5-9215-4807ce824b86,https://biolit.fr/sorties/sortie-d734c78b-a8f7-4cd5-9215-4807ce824b86/,Micka Green,,09/03/2019,16.0:45,17.0000000,48.639676000000,-2.071383000000,,"Dinard, plage Saint-Enogat",40148,observation-d734c78b-a8f7-4cd5-9215-4807ce824b86-3,https://biolit.fr/observations/observation-d734c78b-a8f7-4cd5-9215-4807ce824b86-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190903_165334_6-scaled.jpg,,FALSE, +N1,59283,sortie-d734c78b-a8f7-4cd5-9215-4807ce824b86,https://biolit.fr/sorties/sortie-d734c78b-a8f7-4cd5-9215-4807ce824b86/,Micka Green,,09/03/2019,16.0:45,17.0000000,48.639676000000,-2.071383000000,,"Dinard, plage Saint-Enogat",40150,observation-d734c78b-a8f7-4cd5-9215-4807ce824b86-4,https://biolit.fr/observations/observation-d734c78b-a8f7-4cd5-9215-4807ce824b86-4/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190903_165722_7-scaled.jpg,,TRUE, +N1,59283,sortie-d734c78b-a8f7-4cd5-9215-4807ce824b86,https://biolit.fr/sorties/sortie-d734c78b-a8f7-4cd5-9215-4807ce824b86/,Micka Green,,09/03/2019,16.0:45,17.0000000,48.639676000000,-2.071383000000,,"Dinard, plage Saint-Enogat",40152,observation-d734c78b-a8f7-4cd5-9215-4807ce824b86-5,https://biolit.fr/observations/observation-d734c78b-a8f7-4cd5-9215-4807ce824b86-5/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190903_170306_6-scaled.jpg,,TRUE, +N1,59284,sortie-ee63a825-635c-4f49-b1d2-ee618bdd3d3f,https://biolit.fr/sorties/sortie-ee63a825-635c-4f49-b1d2-ee618bdd3d3f/,LPO Occitanie (délégation Hérault),,8/30/2019 0:00,9.0:45,10.0:45,43.439787000000,3.681825000000,LPO Occitanie (Dt Hérault),Balaruc-les-Bains,40154,observation-ee63a825-635c-4f49-b1d2-ee618bdd3d3f,https://biolit.fr/observations/observation-ee63a825-635c-4f49-b1d2-ee618bdd3d3f/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/2023/07/20190830_095527.jpg,,TRUE, +N1,59284,sortie-ee63a825-635c-4f49-b1d2-ee618bdd3d3f,https://biolit.fr/sorties/sortie-ee63a825-635c-4f49-b1d2-ee618bdd3d3f/,LPO Occitanie (délégation Hérault),,8/30/2019 0:00,9.0:45,10.0:45,43.439787000000,3.681825000000,LPO Occitanie (Dt Hérault),Balaruc-les-Bains,40156,observation-ee63a825-635c-4f49-b1d2-ee618bdd3d3f-2,https://biolit.fr/observations/observation-ee63a825-635c-4f49-b1d2-ee618bdd3d3f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190830_101703.jpg,,FALSE, +N1,59284,sortie-ee63a825-635c-4f49-b1d2-ee618bdd3d3f,https://biolit.fr/sorties/sortie-ee63a825-635c-4f49-b1d2-ee618bdd3d3f/,LPO Occitanie (délégation Hérault),,8/30/2019 0:00,9.0:45,10.0:45,43.439787000000,3.681825000000,LPO Occitanie (Dt Hérault),Balaruc-les-Bains,40158,observation-ee63a825-635c-4f49-b1d2-ee618bdd3d3f-3,https://biolit.fr/observations/observation-ee63a825-635c-4f49-b1d2-ee618bdd3d3f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190830_101841.jpg,,FALSE, +N1,59285,sortie-e93dc79c-aee4-4924-8b53-e69cfbb7850c,https://biolit.fr/sorties/sortie-e93dc79c-aee4-4924-8b53-e69cfbb7850c/,Alice Caspar,,8/30/2019 0:00,14.0000000,18.0000000,49.333997000000,-0.396233000000,,Réserve naturelle des falaises du Cap Romain,40160,observation-e93dc79c-aee4-4924-8b53-e69cfbb7850c,https://biolit.fr/observations/observation-e93dc79c-aee4-4924-8b53-e69cfbb7850c/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebra erinaceus.PNG,,TRUE, +N1,59286,sortie-b1c0bc50-7e41-42b3-9366-fd0c55c977ba,https://biolit.fr/sorties/sortie-b1c0bc50-7e41-42b3-9366-fd0c55c977ba/,Lexton,,8/21/2019 0:00,16.0000000,17.0000000,49.361345000000,-0.846080000000,,Plage de Colleville-sur-Mer,40161,observation-b1c0bc50-7e41-42b3-9366-fd0c55c977ba,https://biolit.fr/observations/observation-b1c0bc50-7e41-42b3-9366-fd0c55c977ba/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190821_170820-scaled.jpg,,TRUE, +N1,59287,sortie-6417990c-8e25-4df3-9d38-0a8b9d90da52,https://biolit.fr/sorties/sortie-6417990c-8e25-4df3-9d38-0a8b9d90da52/,Associu Mare Vivu,,7/24/2019 0:00,18.0000000,18.0:35,42.348629000000,8.612783000000,,Girolata,40163,observation-6417990c-8e25-4df3-9d38-0a8b9d90da52,https://biolit.fr/observations/observation-6417990c-8e25-4df3-9d38-0a8b9d90da52/,Ligia italica,Ligie italienne,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20190722-WA0010-rotated.jpg,,TRUE, +N1,59287,sortie-6417990c-8e25-4df3-9d38-0a8b9d90da52,https://biolit.fr/sorties/sortie-6417990c-8e25-4df3-9d38-0a8b9d90da52/,Associu Mare Vivu,,7/24/2019 0:00,18.0000000,18.0:35,42.348629000000,8.612783000000,,Girolata,40165,observation-6417990c-8e25-4df3-9d38-0a8b9d90da52-2,https://biolit.fr/observations/observation-6417990c-8e25-4df3-9d38-0a8b9d90da52-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20190722-WA0016.jpg,,FALSE, +N1,59288,sortie-123d2b28-b9d0-4fe3-8304-424787cdc773,https://biolit.fr/sorties/sortie-123d2b28-b9d0-4fe3-8304-424787cdc773/,Associu Mare Vivu,,8/26/2019 0:00,17.0000000,19.0000000,42.348675000000,8.61275200000,,Girolata,40167,observation-123d2b28-b9d0-4fe3-8304-424787cdc773,https://biolit.fr/observations/observation-123d2b28-b9d0-4fe3-8304-424787cdc773/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20190722-WA0005.jpg,,FALSE, +N1,59288,sortie-123d2b28-b9d0-4fe3-8304-424787cdc773,https://biolit.fr/sorties/sortie-123d2b28-b9d0-4fe3-8304-424787cdc773/,Associu Mare Vivu,,8/26/2019 0:00,17.0000000,19.0000000,42.348675000000,8.61275200000,,Girolata,40169,observation-123d2b28-b9d0-4fe3-8304-424787cdc773-2,https://biolit.fr/observations/observation-123d2b28-b9d0-4fe3-8304-424787cdc773-2/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20190722-WA0008.jpg,,TRUE, +N1,59289,sortie-b85d7ec8-df8e-47dc-b749-aac50d9b1baf,https://biolit.fr/sorties/sortie-b85d7ec8-df8e-47dc-b749-aac50d9b1baf/,Associu Mare Vivu,,7/15/2019 0:00,18.0000000,18.0:45,42.729103000000,9.131218000000,,Désert des Agriates,40171,observation-b85d7ec8-df8e-47dc-b749-aac50d9b1baf,https://biolit.fr/observations/observation-b85d7ec8-df8e-47dc-b749-aac50d9b1baf/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6433-scaled.jpg,,FALSE, +N1,59290,sortie-51a093ac-6191-440b-af50-77c82db979c3,https://biolit.fr/sorties/sortie-51a093ac-6191-440b-af50-77c82db979c3/,Phil,,05/05/2019,11.0:25,11.0:55,47.799606000000,-4.179281000000,,Loctudy - Finistère,40173,observation-51a093ac-6191-440b-af50-77c82db979c3,https://biolit.fr/observations/observation-51a093ac-6191-440b-af50-77c82db979c3/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/2023/07/20190505_115705.jpg,,TRUE, +N1,59290,sortie-51a093ac-6191-440b-af50-77c82db979c3,https://biolit.fr/sorties/sortie-51a093ac-6191-440b-af50-77c82db979c3/,Phil,,05/05/2019,11.0:25,11.0:55,47.799606000000,-4.179281000000,,Loctudy - Finistère,40175,observation-51a093ac-6191-440b-af50-77c82db979c3-2,https://biolit.fr/observations/observation-51a093ac-6191-440b-af50-77c82db979c3-2/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/2023/07/20190505_115717.jpg,,TRUE, +N1,59290,sortie-51a093ac-6191-440b-af50-77c82db979c3,https://biolit.fr/sorties/sortie-51a093ac-6191-440b-af50-77c82db979c3/,Phil,,05/05/2019,11.0:25,11.0:55,47.799606000000,-4.179281000000,,Loctudy - Finistère,40177,observation-51a093ac-6191-440b-af50-77c82db979c3-3,https://biolit.fr/observations/observation-51a093ac-6191-440b-af50-77c82db979c3-3/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/2023/07/20190505_115753.jpg,,TRUE, +N1,59290,sortie-51a093ac-6191-440b-af50-77c82db979c3,https://biolit.fr/sorties/sortie-51a093ac-6191-440b-af50-77c82db979c3/,Phil,,05/05/2019,11.0:25,11.0:55,47.799606000000,-4.179281000000,,Loctudy - Finistère,40179,observation-51a093ac-6191-440b-af50-77c82db979c3-4,https://biolit.fr/observations/observation-51a093ac-6191-440b-af50-77c82db979c3-4/,Mastocarpus stellatus,Gigartine,,https://biolit.fr/wp-content/uploads/2023/07/20190505_115436.jpg,,TRUE, +N1,59290,sortie-51a093ac-6191-440b-af50-77c82db979c3,https://biolit.fr/sorties/sortie-51a093ac-6191-440b-af50-77c82db979c3/,Phil,,05/05/2019,11.0:25,11.0:55,47.799606000000,-4.179281000000,,Loctudy - Finistère,40181,observation-51a093ac-6191-440b-af50-77c82db979c3-5,https://biolit.fr/observations/observation-51a093ac-6191-440b-af50-77c82db979c3-5/,Lomentaria articulata,Algue saucisson,,https://biolit.fr/wp-content/uploads/2023/07/20190505_115449.jpg,,TRUE, +N1,59290,sortie-51a093ac-6191-440b-af50-77c82db979c3,https://biolit.fr/sorties/sortie-51a093ac-6191-440b-af50-77c82db979c3/,Phil,,05/05/2019,11.0:25,11.0:55,47.799606000000,-4.179281000000,,Loctudy - Finistère,40183,observation-51a093ac-6191-440b-af50-77c82db979c3-6,https://biolit.fr/observations/observation-51a093ac-6191-440b-af50-77c82db979c3-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_115500.jpg,,FALSE, +N1,59291,sortie-d526a326-28ed-4702-a86a-90f5b16fe976,https://biolit.fr/sorties/sortie-d526a326-28ed-4702-a86a-90f5b16fe976/,pamatelo,,8/20/2019 0:00,9.0000000,11.0000000,43.333936000000,5.197811000000,,ensues calanque de la redonne,40185,observation-d526a326-28ed-4702-a86a-90f5b16fe976,https://biolit.fr/observations/observation-d526a326-28ed-4702-a86a-90f5b16fe976/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190820_101323-scaled.jpg,,FALSE, +N1,59291,sortie-d526a326-28ed-4702-a86a-90f5b16fe976,https://biolit.fr/sorties/sortie-d526a326-28ed-4702-a86a-90f5b16fe976/,pamatelo,,8/20/2019 0:00,9.0000000,11.0000000,43.333936000000,5.197811000000,,ensues calanque de la redonne,40187,observation-d526a326-28ed-4702-a86a-90f5b16fe976-2,https://biolit.fr/observations/observation-d526a326-28ed-4702-a86a-90f5b16fe976-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190820_102530_0-scaled.jpg,,FALSE, +N1,59292,sortie-168b0393-f7df-4312-a5c1-0bf5932f3147,https://biolit.fr/sorties/sortie-168b0393-f7df-4312-a5c1-0bf5932f3147/,Phil,,8/13/2019 0:00,19.0000000,19.0000000,47.799164000000,-4.316627000000,,Penmarc'h - Finistère,40189,observation-168b0393-f7df-4312-a5c1-0bf5932f3147,https://biolit.fr/observations/observation-168b0393-f7df-4312-a5c1-0bf5932f3147/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120707.JPG,,FALSE, +N1,59292,sortie-168b0393-f7df-4312-a5c1-0bf5932f3147,https://biolit.fr/sorties/sortie-168b0393-f7df-4312-a5c1-0bf5932f3147/,Phil,,8/13/2019 0:00,19.0000000,19.0000000,47.799164000000,-4.316627000000,,Penmarc'h - Finistère,40191,observation-168b0393-f7df-4312-a5c1-0bf5932f3147-2,https://biolit.fr/observations/observation-168b0393-f7df-4312-a5c1-0bf5932f3147-2/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120685.JPG,,TRUE, +N1,59292,sortie-168b0393-f7df-4312-a5c1-0bf5932f3147,https://biolit.fr/sorties/sortie-168b0393-f7df-4312-a5c1-0bf5932f3147/,Phil,,8/13/2019 0:00,19.0000000,19.0000000,47.799164000000,-4.316627000000,,Penmarc'h - Finistère,40193,observation-168b0393-f7df-4312-a5c1-0bf5932f3147-3,https://biolit.fr/observations/observation-168b0393-f7df-4312-a5c1-0bf5932f3147-3/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120696.JPG,,TRUE, +N1,59292,sortie-168b0393-f7df-4312-a5c1-0bf5932f3147,https://biolit.fr/sorties/sortie-168b0393-f7df-4312-a5c1-0bf5932f3147/,Phil,,8/13/2019 0:00,19.0000000,19.0000000,47.799164000000,-4.316627000000,,Penmarc'h - Finistère,40195,observation-168b0393-f7df-4312-a5c1-0bf5932f3147-4,https://biolit.fr/observations/observation-168b0393-f7df-4312-a5c1-0bf5932f3147-4/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120699.JPG,,TRUE, +N1,59292,sortie-168b0393-f7df-4312-a5c1-0bf5932f3147,https://biolit.fr/sorties/sortie-168b0393-f7df-4312-a5c1-0bf5932f3147/,Phil,,8/13/2019 0:00,19.0000000,19.0000000,47.799164000000,-4.316627000000,,Penmarc'h - Finistère,40197,observation-168b0393-f7df-4312-a5c1-0bf5932f3147-5,https://biolit.fr/observations/observation-168b0393-f7df-4312-a5c1-0bf5932f3147-5/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120755.JPG,,TRUE, +N1,59292,sortie-168b0393-f7df-4312-a5c1-0bf5932f3147,https://biolit.fr/sorties/sortie-168b0393-f7df-4312-a5c1-0bf5932f3147/,Phil,,8/13/2019 0:00,19.0000000,19.0000000,47.799164000000,-4.316627000000,,Penmarc'h - Finistère,40199,observation-168b0393-f7df-4312-a5c1-0bf5932f3147-6,https://biolit.fr/observations/observation-168b0393-f7df-4312-a5c1-0bf5932f3147-6/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120771.JPG,,TRUE, +N1,59292,sortie-168b0393-f7df-4312-a5c1-0bf5932f3147,https://biolit.fr/sorties/sortie-168b0393-f7df-4312-a5c1-0bf5932f3147/,Phil,,8/13/2019 0:00,19.0000000,19.0000000,47.799164000000,-4.316627000000,,Penmarc'h - Finistère,40201,observation-168b0393-f7df-4312-a5c1-0bf5932f3147-7,https://biolit.fr/observations/observation-168b0393-f7df-4312-a5c1-0bf5932f3147-7/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120781.JPG,,TRUE, +N1,59292,sortie-168b0393-f7df-4312-a5c1-0bf5932f3147,https://biolit.fr/sorties/sortie-168b0393-f7df-4312-a5c1-0bf5932f3147/,Phil,,8/13/2019 0:00,19.0000000,19.0000000,47.799164000000,-4.316627000000,,Penmarc'h - Finistère,40203,observation-168b0393-f7df-4312-a5c1-0bf5932f3147-8,https://biolit.fr/observations/observation-168b0393-f7df-4312-a5c1-0bf5932f3147-8/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120799.JPG,,TRUE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40205,observation-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382/,Felimare cantabrica,Doris cantabrique,,https://biolit.fr/wp-content/uploads/2023/07/P8020604-scaled.jpg,,TRUE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40207,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-2,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-2/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P8020606-scaled.jpg,,TRUE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40209,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-3,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-3/,Botrylloides spp. (leachii violaceus diegensis),Botrylles,,https://biolit.fr/wp-content/uploads/2023/07/P8020608-scaled.jpg,,TRUE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40211,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-4,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-4/,Cryptosula pallasiana,Cryptosule cloche,,https://biolit.fr/wp-content/uploads/2023/07/P8020609-scaled.jpg,,TRUE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40213,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-5,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-5/,Spondyliosoma cantharus,Dorade grise,,https://biolit.fr/wp-content/uploads/2023/07/P8020611-scaled.jpg,,TRUE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40215,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-6,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-6/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P8020613-scaled.jpg,,TRUE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40217,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-7,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-7/,Thysanozoon brocchii,Ver plat à papilles,,https://biolit.fr/wp-content/uploads/2023/07/P8020614-scaled.jpg,,TRUE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40219,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-8,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8020615-scaled.jpg,,FALSE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40221,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-9,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-9/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P8020617-scaled.jpg,,TRUE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40223,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-10,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8020619-scaled.jpg,,FALSE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40225,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-11,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-11/,Spurilla neapolitana,Limace à bigoudis,,https://biolit.fr/wp-content/uploads/2023/07/P8020621-scaled.jpg,,TRUE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40227,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-12,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-12/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P8020626-scaled.jpg,,TRUE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40229,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-13,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8020627-scaled.jpg,,FALSE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40231,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-14,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8020632-scaled.jpg,,FALSE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40233,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-15,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-15/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P8020633-scaled.jpg,,TRUE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40235,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-16,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8020638-scaled.jpg,,FALSE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40237,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-17,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-17/,Doriopsilla areolata,Doris aréolée,,https://biolit.fr/wp-content/uploads/2023/07/P8020639-scaled.jpg,,TRUE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40239,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-18,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-18/,Ophioderma longicaudum,Ophiure lisse,,https://biolit.fr/wp-content/uploads/2023/07/P8020641-scaled.jpg,,TRUE, +N1,59294,sortie-b9dfc00e-7a11-4268-bf51-8de5f012001a,https://biolit.fr/sorties/sortie-b9dfc00e-7a11-4268-bf51-8de5f012001a/,Emeline 44240,,08/03/2019,14.0000000,15.0000000,47.488840000000,-2.819596000000,,"plage de kercambre,56730 Saint-Gildas-De-Rhuys,France",40241,observation-b9dfc00e-7a11-4268-bf51-8de5f012001a,https://biolit.fr/observations/observation-b9dfc00e-7a11-4268-bf51-8de5f012001a/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/20190803_143700-rotated.jpg,,TRUE, +N1,59294,sortie-b9dfc00e-7a11-4268-bf51-8de5f012001a,https://biolit.fr/sorties/sortie-b9dfc00e-7a11-4268-bf51-8de5f012001a/,Emeline 44240,,08/03/2019,14.0000000,15.0000000,47.488840000000,-2.819596000000,,"plage de kercambre,56730 Saint-Gildas-De-Rhuys,France",40243,observation-b9dfc00e-7a11-4268-bf51-8de5f012001a-2,https://biolit.fr/observations/observation-b9dfc00e-7a11-4268-bf51-8de5f012001a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190803_153805-rotated.jpg,,FALSE, +N1,59294,sortie-b9dfc00e-7a11-4268-bf51-8de5f012001a,https://biolit.fr/sorties/sortie-b9dfc00e-7a11-4268-bf51-8de5f012001a/,Emeline 44240,,08/03/2019,14.0000000,15.0000000,47.488840000000,-2.819596000000,,"plage de kercambre,56730 Saint-Gildas-De-Rhuys,France",40245,observation-b9dfc00e-7a11-4268-bf51-8de5f012001a-3,https://biolit.fr/observations/observation-b9dfc00e-7a11-4268-bf51-8de5f012001a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190803_143704-rotated.jpg,,FALSE, +N1,59294,sortie-b9dfc00e-7a11-4268-bf51-8de5f012001a,https://biolit.fr/sorties/sortie-b9dfc00e-7a11-4268-bf51-8de5f012001a/,Emeline 44240,,08/03/2019,14.0000000,15.0000000,47.488840000000,-2.819596000000,,"plage de kercambre,56730 Saint-Gildas-De-Rhuys,France",40247,observation-b9dfc00e-7a11-4268-bf51-8de5f012001a-4,https://biolit.fr/observations/observation-b9dfc00e-7a11-4268-bf51-8de5f012001a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190803_153147-rotated.jpg,,FALSE, +N1,59294,sortie-b9dfc00e-7a11-4268-bf51-8de5f012001a,https://biolit.fr/sorties/sortie-b9dfc00e-7a11-4268-bf51-8de5f012001a/,Emeline 44240,,08/03/2019,14.0000000,15.0000000,47.488840000000,-2.819596000000,,"plage de kercambre,56730 Saint-Gildas-De-Rhuys,France",40249,observation-b9dfc00e-7a11-4268-bf51-8de5f012001a-5,https://biolit.fr/observations/observation-b9dfc00e-7a11-4268-bf51-8de5f012001a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190803_153928-rotated.jpg,,FALSE, +N1,59295,sortie-45af1514-980e-4cc1-9459-da9a391549e5,https://biolit.fr/sorties/sortie-45af1514-980e-4cc1-9459-da9a391549e5/,Phil,,05/05/2019,11.0000000,11.0000000,47.799518000000,-4.1796450000,,Loctudy - Finistère,40253,observation-45af1514-980e-4cc1-9459-da9a391549e5-2,https://biolit.fr/observations/observation-45af1514-980e-4cc1-9459-da9a391549e5-2/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/20190505_115145.jpg | https://biolit.fr/wp-content/uploads/2019/05/20190505_115121.jpg,,TRUE, +N1,59295,sortie-45af1514-980e-4cc1-9459-da9a391549e5,https://biolit.fr/sorties/sortie-45af1514-980e-4cc1-9459-da9a391549e5/,Phil,,05/05/2019,11.0000000,11.0000000,47.799518000000,-4.1796450000,,Loctudy - Finistère,40255,observation-45af1514-980e-4cc1-9459-da9a391549e5-3,https://biolit.fr/observations/observation-45af1514-980e-4cc1-9459-da9a391549e5-3/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/2023/07/20190505_115244.jpg,,TRUE, +N1,59295,sortie-45af1514-980e-4cc1-9459-da9a391549e5,https://biolit.fr/sorties/sortie-45af1514-980e-4cc1-9459-da9a391549e5/,Phil,,05/05/2019,11.0000000,11.0000000,47.799518000000,-4.1796450000,,Loctudy - Finistère,40257,observation-45af1514-980e-4cc1-9459-da9a391549e5-4,https://biolit.fr/observations/observation-45af1514-980e-4cc1-9459-da9a391549e5-4/,Lomentaria articulata,Algue saucisson,,https://biolit.fr/wp-content/uploads/2023/07/20190505_115317.jpg,,TRUE, +N1,59295,sortie-45af1514-980e-4cc1-9459-da9a391549e5,https://biolit.fr/sorties/sortie-45af1514-980e-4cc1-9459-da9a391549e5/,Phil,,05/05/2019,11.0000000,11.0000000,47.799518000000,-4.1796450000,,Loctudy - Finistère,40259,observation-45af1514-980e-4cc1-9459-da9a391549e5-5,https://biolit.fr/observations/observation-45af1514-980e-4cc1-9459-da9a391549e5-5/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/2023/07/20190505_115328.jpg,,TRUE, +N1,59296,sortie-79eba2be-df1a-4f85-8d18-69241c8d42fe,https://biolit.fr/sorties/sortie-79eba2be-df1a-4f85-8d18-69241c8d42fe/,CPIE Littoral Basque,,7/31/2019 0:00,9.0000000,11.0000000,43.379848000000,-1.756510000000,,Deux jumeaux,40261,observation-79eba2be-df1a-4f85-8d18-69241c8d42fe,https://biolit.fr/observations/observation-79eba2be-df1a-4f85-8d18-69241c8d42fe/,,,,https://biolit.fr/wp-content/uploads/2023/07/P7310588-scaled.jpg,,FALSE, +N1,59296,sortie-79eba2be-df1a-4f85-8d18-69241c8d42fe,https://biolit.fr/sorties/sortie-79eba2be-df1a-4f85-8d18-69241c8d42fe/,CPIE Littoral Basque,,7/31/2019 0:00,9.0000000,11.0000000,43.379848000000,-1.756510000000,,Deux jumeaux,40263,observation-79eba2be-df1a-4f85-8d18-69241c8d42fe-2,https://biolit.fr/observations/observation-79eba2be-df1a-4f85-8d18-69241c8d42fe-2/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/P7310596-scaled.jpg,,TRUE, +N1,59296,sortie-79eba2be-df1a-4f85-8d18-69241c8d42fe,https://biolit.fr/sorties/sortie-79eba2be-df1a-4f85-8d18-69241c8d42fe/,CPIE Littoral Basque,,7/31/2019 0:00,9.0000000,11.0000000,43.379848000000,-1.756510000000,,Deux jumeaux,40265,observation-79eba2be-df1a-4f85-8d18-69241c8d42fe-3,https://biolit.fr/observations/observation-79eba2be-df1a-4f85-8d18-69241c8d42fe-3/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2711-scaled.jpg,,TRUE, +N1,59296,sortie-79eba2be-df1a-4f85-8d18-69241c8d42fe,https://biolit.fr/sorties/sortie-79eba2be-df1a-4f85-8d18-69241c8d42fe/,CPIE Littoral Basque,,7/31/2019 0:00,9.0000000,11.0000000,43.379848000000,-1.756510000000,,Deux jumeaux,40267,observation-79eba2be-df1a-4f85-8d18-69241c8d42fe-4,https://biolit.fr/observations/observation-79eba2be-df1a-4f85-8d18-69241c8d42fe-4/,Botrylloides spp. (leachii violaceus diegensis),Botrylles,,https://biolit.fr/wp-content/uploads/2023/07/P7310600-scaled.jpg,,TRUE, +N1,59296,sortie-79eba2be-df1a-4f85-8d18-69241c8d42fe,https://biolit.fr/sorties/sortie-79eba2be-df1a-4f85-8d18-69241c8d42fe/,CPIE Littoral Basque,,7/31/2019 0:00,9.0000000,11.0000000,43.379848000000,-1.756510000000,,Deux jumeaux,40269,observation-79eba2be-df1a-4f85-8d18-69241c8d42fe-5,https://biolit.fr/observations/observation-79eba2be-df1a-4f85-8d18-69241c8d42fe-5/,Janua heterostropha,Spirorbe de Pagenstecher,,https://biolit.fr/wp-content/uploads/2023/07/P7310601-scaled.jpg,,TRUE, +N1,59297,sortie-f031b9fe-e149-4e49-8145-d5a364bd0c93,https://biolit.fr/sorties/sortie-f031b9fe-e149-4e49-8145-d5a364bd0c93/,Centre de Découverte Mer et Montagne,,07/08/2019,13.0000000,16.0000000,43.506322000000,6.950867000000,,Sentier sous marin,40271,observation-f031b9fe-e149-4e49-8145-d5a364bd0c93,https://biolit.fr/observations/observation-f031b9fe-e149-4e49-8145-d5a364bd0c93/,Chromis chromis,Castagnole,,https://biolit.fr/wp-content/uploads/2023/07/CASTAGNOLE-Chromis chromis-scaled.jpg,,TRUE, +N1,59297,sortie-f031b9fe-e149-4e49-8145-d5a364bd0c93,https://biolit.fr/sorties/sortie-f031b9fe-e149-4e49-8145-d5a364bd0c93/,Centre de Découverte Mer et Montagne,,07/08/2019,13.0000000,16.0000000,43.506322000000,6.950867000000,,Sentier sous marin,40273,observation-f031b9fe-e149-4e49-8145-d5a364bd0c93-2,https://biolit.fr/observations/observation-f031b9fe-e149-4e49-8145-d5a364bd0c93-2/,Acetabularia acetabulum,Acétabulaire,,https://biolit.fr/wp-content/uploads/2023/07/ACETABULAIRE-Acetabularia acetabulum-scaled.jpg,,TRUE, +N1,59297,sortie-f031b9fe-e149-4e49-8145-d5a364bd0c93,https://biolit.fr/sorties/sortie-f031b9fe-e149-4e49-8145-d5a364bd0c93/,Centre de Découverte Mer et Montagne,,07/08/2019,13.0000000,16.0000000,43.506322000000,6.950867000000,,Sentier sous marin,40275,observation-f031b9fe-e149-4e49-8145-d5a364bd0c93-3,https://biolit.fr/observations/observation-f031b9fe-e149-4e49-8145-d5a364bd0c93-3/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/POSIDONIE-Posidonia oceanica-scaled.jpg,,TRUE, +N1,59297,sortie-f031b9fe-e149-4e49-8145-d5a364bd0c93,https://biolit.fr/sorties/sortie-f031b9fe-e149-4e49-8145-d5a364bd0c93/,Centre de Découverte Mer et Montagne,,07/08/2019,13.0000000,16.0000000,43.506322000000,6.950867000000,,Sentier sous marin,40277,observation-f031b9fe-e149-4e49-8145-d5a364bd0c93-4,https://biolit.fr/observations/observation-f031b9fe-e149-4e49-8145-d5a364bd0c93-4/,Diplodus sargus,Sar commun de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/SPARAILLON-Diplodus annularis.jpg,,TRUE, +N1,59297,sortie-f031b9fe-e149-4e49-8145-d5a364bd0c93,https://biolit.fr/sorties/sortie-f031b9fe-e149-4e49-8145-d5a364bd0c93/,Centre de Découverte Mer et Montagne,,07/08/2019,13.0000000,16.0000000,43.506322000000,6.950867000000,,Sentier sous marin,40279,observation-f031b9fe-e149-4e49-8145-d5a364bd0c93-5,https://biolit.fr/observations/observation-f031b9fe-e149-4e49-8145-d5a364bd0c93-5/,Mullus surmuletus,Rouget-barbet de roche,,https://biolit.fr/wp-content/uploads/2023/07/ROUGET_DE_ROCHE-Mullus surmuletus-scaled.jpg,,TRUE, +N1,59298,sortie-4fecbed6-1888-4d52-b573-fc3ae39800f5,https://biolit.fr/sorties/sortie-4fecbed6-1888-4d52-b573-fc3ae39800f5/,CPIE Littoral Basque,,7/18/2019 0:00,11.0000000,13.0000000,43.38777800000,-1.711223000000,,Les vivier basque ,40281,observation-4fecbed6-1888-4d52-b573-fc3ae39800f5,https://biolit.fr/observations/observation-4fecbed6-1888-4d52-b573-fc3ae39800f5/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/P7180560-scaled.jpg,,TRUE, +N1,59298,sortie-4fecbed6-1888-4d52-b573-fc3ae39800f5,https://biolit.fr/sorties/sortie-4fecbed6-1888-4d52-b573-fc3ae39800f5/,CPIE Littoral Basque,,7/18/2019 0:00,11.0000000,13.0000000,43.38777800000,-1.711223000000,,Les vivier basque ,40283,observation-4fecbed6-1888-4d52-b573-fc3ae39800f5-2,https://biolit.fr/observations/observation-4fecbed6-1888-4d52-b573-fc3ae39800f5-2/,Chondria coerulescens,Chondria bleue,,https://biolit.fr/wp-content/uploads/2023/07/P7180561-scaled.jpg,,TRUE, +N1,59298,sortie-4fecbed6-1888-4d52-b573-fc3ae39800f5,https://biolit.fr/sorties/sortie-4fecbed6-1888-4d52-b573-fc3ae39800f5/,CPIE Littoral Basque,,7/18/2019 0:00,11.0000000,13.0000000,43.38777800000,-1.711223000000,,Les vivier basque ,40285,observation-4fecbed6-1888-4d52-b573-fc3ae39800f5-3,https://biolit.fr/observations/observation-4fecbed6-1888-4d52-b573-fc3ae39800f5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P7180565-scaled.jpg,,FALSE, +N1,59298,sortie-4fecbed6-1888-4d52-b573-fc3ae39800f5,https://biolit.fr/sorties/sortie-4fecbed6-1888-4d52-b573-fc3ae39800f5/,CPIE Littoral Basque,,7/18/2019 0:00,11.0000000,13.0000000,43.38777800000,-1.711223000000,,Les vivier basque ,40287,observation-4fecbed6-1888-4d52-b573-fc3ae39800f5-4,https://biolit.fr/observations/observation-4fecbed6-1888-4d52-b573-fc3ae39800f5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P7180569.JPG,,FALSE, +N1,59298,sortie-4fecbed6-1888-4d52-b573-fc3ae39800f5,https://biolit.fr/sorties/sortie-4fecbed6-1888-4d52-b573-fc3ae39800f5/,CPIE Littoral Basque,,7/18/2019 0:00,11.0000000,13.0000000,43.38777800000,-1.711223000000,,Les vivier basque ,40289,observation-4fecbed6-1888-4d52-b573-fc3ae39800f5-5,https://biolit.fr/observations/observation-4fecbed6-1888-4d52-b573-fc3ae39800f5-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P7180574-scaled.jpg,,FALSE, +N1,59298,sortie-4fecbed6-1888-4d52-b573-fc3ae39800f5,https://biolit.fr/sorties/sortie-4fecbed6-1888-4d52-b573-fc3ae39800f5/,CPIE Littoral Basque,,7/18/2019 0:00,11.0000000,13.0000000,43.38777800000,-1.711223000000,,Les vivier basque ,40291,observation-4fecbed6-1888-4d52-b573-fc3ae39800f5-6,https://biolit.fr/observations/observation-4fecbed6-1888-4d52-b573-fc3ae39800f5-6/,Calliblepharis jubata,Algue à crinière,,https://biolit.fr/wp-content/uploads/2023/07/P7180581-scaled.jpg,,TRUE, +N1,59299,sortie-97ee9344-af80-4204-9340-79aec79a938a,https://biolit.fr/sorties/sortie-97ee9344-af80-4204-9340-79aec79a938a/,Associu Mare Vivu,,7/15/2019 0:00,17.0000000,19.0000000,42.728790000000,9.136908000000,,plage de ghignu,40293,observation-97ee9344-af80-4204-9340-79aec79a938a,https://biolit.fr/observations/observation-97ee9344-af80-4204-9340-79aec79a938a/,Calomera littoralis,Cicindèle des plages,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6386-scaled.jpg,,TRUE, +N1,59300,sortie-6179e561-5392-4f03-b9a6-b04cb1b37f01,https://biolit.fr/sorties/sortie-6179e561-5392-4f03-b9a6-b04cb1b37f01/,Associu Mare Vivu,,7/15/2019 0:00,17.0000000,19.0000000,42.728959000000,9.137213000000,,plage ghignu,40295,observation-6179e561-5392-4f03-b9a6-b04cb1b37f01,https://biolit.fr/observations/observation-6179e561-5392-4f03-b9a6-b04cb1b37f01/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6378-scaled.jpg,,FALSE, +N1,59301,sortie-d831262d-5f01-4800-bb5e-36b588e5b112,https://biolit.fr/sorties/sortie-d831262d-5f01-4800-bb5e-36b588e5b112/,CPIE Littoral Basque,,7/17/2019 0:00,10.0000000,12.0000000,43.379716000000,-1.756671000000,CPIE Littoral Basque - Euskal Itsasbazterra,Plage d'Hendaye,40297,observation-d831262d-5f01-4800-bb5e-36b588e5b112,https://biolit.fr/observations/observation-d831262d-5f01-4800-bb5e-36b588e5b112/,,,,https://biolit.fr/wp-content/uploads/2023/07/P7170548-scaled.jpg,,FALSE, +N1,59301,sortie-d831262d-5f01-4800-bb5e-36b588e5b112,https://biolit.fr/sorties/sortie-d831262d-5f01-4800-bb5e-36b588e5b112/,CPIE Littoral Basque,,7/17/2019 0:00,10.0000000,12.0000000,43.379716000000,-1.756671000000,CPIE Littoral Basque - Euskal Itsasbazterra,Plage d'Hendaye,40299,observation-d831262d-5f01-4800-bb5e-36b588e5b112-2,https://biolit.fr/observations/observation-d831262d-5f01-4800-bb5e-36b588e5b112-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P7170551-scaled.jpg,,TRUE, +N1,59301,sortie-d831262d-5f01-4800-bb5e-36b588e5b112,https://biolit.fr/sorties/sortie-d831262d-5f01-4800-bb5e-36b588e5b112/,CPIE Littoral Basque,,7/17/2019 0:00,10.0000000,12.0000000,43.379716000000,-1.756671000000,CPIE Littoral Basque - Euskal Itsasbazterra,Plage d'Hendaye,40301,observation-d831262d-5f01-4800-bb5e-36b588e5b112-3,https://biolit.fr/observations/observation-d831262d-5f01-4800-bb5e-36b588e5b112-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P7170553-scaled.jpg,,FALSE, +N1,59301,sortie-d831262d-5f01-4800-bb5e-36b588e5b112,https://biolit.fr/sorties/sortie-d831262d-5f01-4800-bb5e-36b588e5b112/,CPIE Littoral Basque,,7/17/2019 0:00,10.0000000,12.0000000,43.379716000000,-1.756671000000,CPIE Littoral Basque - Euskal Itsasbazterra,Plage d'Hendaye,40303,observation-d831262d-5f01-4800-bb5e-36b588e5b112-4,https://biolit.fr/observations/observation-d831262d-5f01-4800-bb5e-36b588e5b112-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P7170554-scaled.jpg,,FALSE, +N1,59301,sortie-d831262d-5f01-4800-bb5e-36b588e5b112,https://biolit.fr/sorties/sortie-d831262d-5f01-4800-bb5e-36b588e5b112/,CPIE Littoral Basque,,7/17/2019 0:00,10.0000000,12.0000000,43.379716000000,-1.756671000000,CPIE Littoral Basque - Euskal Itsasbazterra,Plage d'Hendaye,40305,observation-d831262d-5f01-4800-bb5e-36b588e5b112-5,https://biolit.fr/observations/observation-d831262d-5f01-4800-bb5e-36b588e5b112-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P7170556-scaled.jpg,,FALSE, +N1,59302,sortie-c352ec84-aa21-4ea1-b01a-b6dba6513aad,https://biolit.fr/sorties/sortie-c352ec84-aa21-4ea1-b01a-b6dba6513aad/,Phil,,05/05/2019,11.0000000,11.0:35,47.800016000000,-4.179141000000,,Loctudy - Finistère,40307,observation-c352ec84-aa21-4ea1-b01a-b6dba6513aad,https://biolit.fr/observations/observation-c352ec84-aa21-4ea1-b01a-b6dba6513aad/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190505_112520.jpg,,TRUE, +N1,59302,sortie-c352ec84-aa21-4ea1-b01a-b6dba6513aad,https://biolit.fr/sorties/sortie-c352ec84-aa21-4ea1-b01a-b6dba6513aad/,Phil,,05/05/2019,11.0000000,11.0:35,47.800016000000,-4.179141000000,,Loctudy - Finistère,40309,observation-c352ec84-aa21-4ea1-b01a-b6dba6513aad-2,https://biolit.fr/observations/observation-c352ec84-aa21-4ea1-b01a-b6dba6513aad-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_112510.jpg,,FALSE, +N1,59302,sortie-c352ec84-aa21-4ea1-b01a-b6dba6513aad,https://biolit.fr/sorties/sortie-c352ec84-aa21-4ea1-b01a-b6dba6513aad/,Phil,,05/05/2019,11.0000000,11.0:35,47.800016000000,-4.179141000000,,Loctudy - Finistère,40311,observation-c352ec84-aa21-4ea1-b01a-b6dba6513aad-3,https://biolit.fr/observations/observation-c352ec84-aa21-4ea1-b01a-b6dba6513aad-3/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/20190505_113430.jpg,,TRUE, +N1,59302,sortie-c352ec84-aa21-4ea1-b01a-b6dba6513aad,https://biolit.fr/sorties/sortie-c352ec84-aa21-4ea1-b01a-b6dba6513aad/,Phil,,05/05/2019,11.0000000,11.0:35,47.800016000000,-4.179141000000,,Loctudy - Finistère,40313,observation-c352ec84-aa21-4ea1-b01a-b6dba6513aad-4,https://biolit.fr/observations/observation-c352ec84-aa21-4ea1-b01a-b6dba6513aad-4/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/20190505_113435.jpg,,TRUE, +N1,59302,sortie-c352ec84-aa21-4ea1-b01a-b6dba6513aad,https://biolit.fr/sorties/sortie-c352ec84-aa21-4ea1-b01a-b6dba6513aad/,Phil,,05/05/2019,11.0000000,11.0:35,47.800016000000,-4.179141000000,,Loctudy - Finistère,40315,observation-c352ec84-aa21-4ea1-b01a-b6dba6513aad-5,https://biolit.fr/observations/observation-c352ec84-aa21-4ea1-b01a-b6dba6513aad-5/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/20190505_113642.jpg,,TRUE, +N1,59303,sortie-92d463fa-7a81-4cc8-a61f-fa320c099b8f,https://biolit.fr/sorties/sortie-92d463fa-7a81-4cc8-a61f-fa320c099b8f/,tridimeg,,7/14/2019 0:00,17.0000000,17.0000000,48.62125,-1.9913810,,Montmarin,40317,observation-92d463fa-7a81-4cc8-a61f-fa320c099b8f,https://biolit.fr/observations/observation-92d463fa-7a81-4cc8-a61f-fa320c099b8f/,,,,https://biolit.fr/wp-content/uploads/2023/07/15631162225312154692098366404715-rotated.jpg,,FALSE, +N1,59304,sortie-dc805873-0eba-4ffe-aa00-e09cdf5a93b8,https://biolit.fr/sorties/sortie-dc805873-0eba-4ffe-aa00-e09cdf5a93b8/,Ilse,,07/01/2019,9.0000000,10.0000000,49.341089000000,-0.432114000000,,"Luc sur Mer, plage",40319,observation-dc805873-0eba-4ffe-aa00-e09cdf5a93b8,https://biolit.fr/observations/observation-dc805873-0eba-4ffe-aa00-e09cdf5a93b8/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Sargasse micitum a verifier-scaled.jpg,,TRUE, +N1,59304,sortie-dc805873-0eba-4ffe-aa00-e09cdf5a93b8,https://biolit.fr/sorties/sortie-dc805873-0eba-4ffe-aa00-e09cdf5a93b8/,Ilse,,07/01/2019,9.0000000,10.0000000,49.341089000000,-0.432114000000,,"Luc sur Mer, plage",40321,observation-dc805873-0eba-4ffe-aa00-e09cdf5a93b8-2,https://biolit.fr/observations/observation-dc805873-0eba-4ffe-aa00-e09cdf5a93b8-2/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P7010698-scaled.jpg,,TRUE, +N1,59304,sortie-dc805873-0eba-4ffe-aa00-e09cdf5a93b8,https://biolit.fr/sorties/sortie-dc805873-0eba-4ffe-aa00-e09cdf5a93b8/,Ilse,,07/01/2019,9.0000000,10.0000000,49.341089000000,-0.432114000000,,"Luc sur Mer, plage",40323,observation-dc805873-0eba-4ffe-aa00-e09cdf5a93b8-3,https://biolit.fr/observations/observation-dc805873-0eba-4ffe-aa00-e09cdf5a93b8-3/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P7010699-scaled.jpg,,TRUE, +N1,59304,sortie-dc805873-0eba-4ffe-aa00-e09cdf5a93b8,https://biolit.fr/sorties/sortie-dc805873-0eba-4ffe-aa00-e09cdf5a93b8/,Ilse,,07/01/2019,9.0000000,10.0000000,49.341089000000,-0.432114000000,,"Luc sur Mer, plage",40325,observation-dc805873-0eba-4ffe-aa00-e09cdf5a93b8-4,https://biolit.fr/observations/observation-dc805873-0eba-4ffe-aa00-e09cdf5a93b8-4/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P7080713-scaled.jpg,,TRUE, +N1,59304,sortie-dc805873-0eba-4ffe-aa00-e09cdf5a93b8,https://biolit.fr/sorties/sortie-dc805873-0eba-4ffe-aa00-e09cdf5a93b8/,Ilse,,07/01/2019,9.0000000,10.0000000,49.341089000000,-0.432114000000,,"Luc sur Mer, plage",40327,observation-dc805873-0eba-4ffe-aa00-e09cdf5a93b8-5,https://biolit.fr/observations/observation-dc805873-0eba-4ffe-aa00-e09cdf5a93b8-5/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P7100731-scaled.jpg,,TRUE, +N1,59304,sortie-dc805873-0eba-4ffe-aa00-e09cdf5a93b8,https://biolit.fr/sorties/sortie-dc805873-0eba-4ffe-aa00-e09cdf5a93b8/,Ilse,,07/01/2019,9.0000000,10.0000000,49.341089000000,-0.432114000000,,"Luc sur Mer, plage",40329,observation-dc805873-0eba-4ffe-aa00-e09cdf5a93b8-6,https://biolit.fr/observations/observation-dc805873-0eba-4ffe-aa00-e09cdf5a93b8-6/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P7100730-scaled.jpg,,TRUE, +N1,59304,sortie-dc805873-0eba-4ffe-aa00-e09cdf5a93b8,https://biolit.fr/sorties/sortie-dc805873-0eba-4ffe-aa00-e09cdf5a93b8/,Ilse,,07/01/2019,9.0000000,10.0000000,49.341089000000,-0.432114000000,,"Luc sur Mer, plage",40331,observation-dc805873-0eba-4ffe-aa00-e09cdf5a93b8-7,https://biolit.fr/observations/observation-dc805873-0eba-4ffe-aa00-e09cdf5a93b8-7/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P7100718-scaled.jpg,,TRUE, +N1,59304,sortie-dc805873-0eba-4ffe-aa00-e09cdf5a93b8,https://biolit.fr/sorties/sortie-dc805873-0eba-4ffe-aa00-e09cdf5a93b8/,Ilse,,07/01/2019,9.0000000,10.0000000,49.341089000000,-0.432114000000,,"Luc sur Mer, plage",40333,observation-dc805873-0eba-4ffe-aa00-e09cdf5a93b8-8,https://biolit.fr/observations/observation-dc805873-0eba-4ffe-aa00-e09cdf5a93b8-8/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P7100724-scaled.jpg,,TRUE, +N1,59305,sortie-ff42611f-c822-46a3-adcc-38d564f62967,https://biolit.fr/sorties/sortie-ff42611f-c822-46a3-adcc-38d564f62967/,CPIE Littoral Basque,,07/04/2019,12.0000000,13.0000000,43.383443000000,-1.755544000000,,Deux-Jumeaux ,40335,observation-ff42611f-c822-46a3-adcc-38d564f62967,https://biolit.fr/observations/observation-ff42611f-c822-46a3-adcc-38d564f62967/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/P7040497-scaled.jpg,,TRUE, +N1,59305,sortie-ff42611f-c822-46a3-adcc-38d564f62967,https://biolit.fr/sorties/sortie-ff42611f-c822-46a3-adcc-38d564f62967/,CPIE Littoral Basque,,07/04/2019,12.0000000,13.0000000,43.383443000000,-1.755544000000,,Deux-Jumeaux ,40337,observation-ff42611f-c822-46a3-adcc-38d564f62967-2,https://biolit.fr/observations/observation-ff42611f-c822-46a3-adcc-38d564f62967-2/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/P7040498.jpg,,TRUE, +N1,59306,sortie-74933470-541d-4bcb-9ebf-8ab09468c308,https://biolit.fr/sorties/sortie-74933470-541d-4bcb-9ebf-8ab09468c308/,CPIE Littoral Basque,,07/03/2019,10.0000000,11.0000000,43.381244000000,-1.754428000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux-Jumeaux ,40339,observation-74933470-541d-4bcb-9ebf-8ab09468c308,https://biolit.fr/observations/observation-74933470-541d-4bcb-9ebf-8ab09468c308/,,,,https://biolit.fr/wp-content/uploads/2023/07/P7030474-scaled.jpg,,FALSE, +N1,59306,sortie-74933470-541d-4bcb-9ebf-8ab09468c308,https://biolit.fr/sorties/sortie-74933470-541d-4bcb-9ebf-8ab09468c308/,CPIE Littoral Basque,,07/03/2019,10.0000000,11.0000000,43.381244000000,-1.754428000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux-Jumeaux ,40341,observation-74933470-541d-4bcb-9ebf-8ab09468c308-2,https://biolit.fr/observations/observation-74933470-541d-4bcb-9ebf-8ab09468c308-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P7030480-scaled.jpg,,TRUE, +N1,59306,sortie-74933470-541d-4bcb-9ebf-8ab09468c308,https://biolit.fr/sorties/sortie-74933470-541d-4bcb-9ebf-8ab09468c308/,CPIE Littoral Basque,,07/03/2019,10.0000000,11.0000000,43.381244000000,-1.754428000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux-Jumeaux ,40343,observation-74933470-541d-4bcb-9ebf-8ab09468c308-3,https://biolit.fr/observations/observation-74933470-541d-4bcb-9ebf-8ab09468c308-3/,Dictyota dichotoma,Dictyote,,https://biolit.fr/wp-content/uploads/2023/07/P7030486-scaled.jpg,,TRUE, +N1,59307,sortie-07c38a01-5c81-4332-9441-fccb9fa43ef0,https://biolit.fr/sorties/sortie-07c38a01-5c81-4332-9441-fccb9fa43ef0/,CPIE Littoral Basque,,4/28/2018 0:00,10.0000000,11.0000000,43.381065000000,-1.734290000000,,Haiçabia,40345,observation-07c38a01-5c81-4332-9441-fccb9fa43ef0,https://biolit.fr/observations/observation-07c38a01-5c81-4332-9441-fccb9fa43ef0/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/18 avrl Haiçabia-Balanes-scaled.jpg,,TRUE, +N1,59307,sortie-07c38a01-5c81-4332-9441-fccb9fa43ef0,https://biolit.fr/sorties/sortie-07c38a01-5c81-4332-9441-fccb9fa43ef0/,CPIE Littoral Basque,,4/28/2018 0:00,10.0000000,11.0000000,43.381065000000,-1.734290000000,,Haiçabia,40347,observation-07c38a01-5c81-4332-9441-fccb9fa43ef0-2,https://biolit.fr/observations/observation-07c38a01-5c81-4332-9441-fccb9fa43ef0-2/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/P4180024- 18 avril Haiçabia- Balanes-scaled.jpg,,TRUE, +N1,59307,sortie-07c38a01-5c81-4332-9441-fccb9fa43ef0,https://biolit.fr/sorties/sortie-07c38a01-5c81-4332-9441-fccb9fa43ef0/,CPIE Littoral Basque,,4/28/2018 0:00,10.0000000,11.0000000,43.381065000000,-1.734290000000,,Haiçabia,40349,observation-07c38a01-5c81-4332-9441-fccb9fa43ef0-3,https://biolit.fr/observations/observation-07c38a01-5c81-4332-9441-fccb9fa43ef0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P4180029- 18 avril Haiçabia-Anémone tomate-scaled.jpg,,FALSE, +N1,59307,sortie-07c38a01-5c81-4332-9441-fccb9fa43ef0,https://biolit.fr/sorties/sortie-07c38a01-5c81-4332-9441-fccb9fa43ef0/,CPIE Littoral Basque,,4/28/2018 0:00,10.0000000,11.0000000,43.381065000000,-1.734290000000,,Haiçabia,40351,observation-07c38a01-5c81-4332-9441-fccb9fa43ef0-4,https://biolit.fr/observations/observation-07c38a01-5c81-4332-9441-fccb9fa43ef0-4/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/P4180025- 18 avril Haiçabia- Crabe verruqueux-scaled.jpg,,TRUE, +N1,59308,sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf,https://biolit.fr/sorties/sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf/,CPIE Littoral Basque,,5/16/2018 0:00,10.0000000,12.0000000,43.381034000000,-1.734441000000,CPIE Littoral Basque - Euskal Itsasbazterra,Haiçabia,40353,observation-10107c7e-1132-43b9-843e-7bbed18ed5bf,https://biolit.fr/observations/observation-10107c7e-1132-43b9-843e-7bbed18ed5bf/,Stramonita haemastoma,Bouche de sang,,https://biolit.fr/wp-content/uploads/2023/07/P5160075-16 mai Haiçabia- Pourpre bouche de sang-scaled.jpg,,TRUE, +N1,59308,sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf,https://biolit.fr/sorties/sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf/,CPIE Littoral Basque,,5/16/2018 0:00,10.0000000,12.0000000,43.381034000000,-1.734441000000,CPIE Littoral Basque - Euskal Itsasbazterra,Haiçabia,40355,observation-10107c7e-1132-43b9-843e-7bbed18ed5bf-2,https://biolit.fr/observations/observation-10107c7e-1132-43b9-843e-7bbed18ed5bf-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/P5160077-16 mai Haiçabia- Anémone fraise-scaled.jpg,,TRUE, +N1,59308,sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf,https://biolit.fr/sorties/sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf/,CPIE Littoral Basque,,5/16/2018 0:00,10.0000000,12.0000000,43.381034000000,-1.734441000000,CPIE Littoral Basque - Euskal Itsasbazterra,Haiçabia,40357,observation-10107c7e-1132-43b9-843e-7bbed18ed5bf-3,https://biolit.fr/observations/observation-10107c7e-1132-43b9-843e-7bbed18ed5bf-3/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/P5160081-16 mai Haiçabia- Balanes et Patelles-scaled.jpg,,TRUE, +N1,59308,sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf,https://biolit.fr/sorties/sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf/,CPIE Littoral Basque,,5/16/2018 0:00,10.0000000,12.0000000,43.381034000000,-1.734441000000,CPIE Littoral Basque - Euskal Itsasbazterra,Haiçabia,40359,observation-10107c7e-1132-43b9-843e-7bbed18ed5bf-4,https://biolit.fr/observations/observation-10107c7e-1132-43b9-843e-7bbed18ed5bf-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P5160083-16 mai Haiçabia-Cystoseire stricte (jeune)-scaled.jpg,,FALSE, +N1,59308,sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf,https://biolit.fr/sorties/sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf/,CPIE Littoral Basque,,5/16/2018 0:00,10.0000000,12.0000000,43.381034000000,-1.734441000000,CPIE Littoral Basque - Euskal Itsasbazterra,Haiçabia,40361,observation-10107c7e-1132-43b9-843e-7bbed18ed5bf-5,https://biolit.fr/observations/observation-10107c7e-1132-43b9-843e-7bbed18ed5bf-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P5160090- 16 mai Haiçabia- Cystoseira sp-scaled.jpg,,FALSE, +N1,59308,sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf,https://biolit.fr/sorties/sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf/,CPIE Littoral Basque,,5/16/2018 0:00,10.0000000,12.0000000,43.381034000000,-1.734441000000,CPIE Littoral Basque - Euskal Itsasbazterra,Haiçabia,40363,observation-10107c7e-1132-43b9-843e-7bbed18ed5bf-6,https://biolit.fr/observations/observation-10107c7e-1132-43b9-843e-7bbed18ed5bf-6/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/P5160093-16 mai Haiçabia- crevette bouquet-scaled.jpg,,TRUE, +N1,59308,sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf,https://biolit.fr/sorties/sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf/,CPIE Littoral Basque,,5/16/2018 0:00,10.0000000,12.0000000,43.381034000000,-1.734441000000,CPIE Littoral Basque - Euskal Itsasbazterra,Haiçabia,40365,observation-10107c7e-1132-43b9-843e-7bbed18ed5bf-7,https://biolit.fr/observations/observation-10107c7e-1132-43b9-843e-7bbed18ed5bf-7/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P5160096-16 mai Haiçabia- Gibbule de Penant-scaled.jpg,,TRUE, +N1,59308,sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf,https://biolit.fr/sorties/sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf/,CPIE Littoral Basque,,5/16/2018 0:00,10.0000000,12.0000000,43.381034000000,-1.734441000000,CPIE Littoral Basque - Euskal Itsasbazterra,Haiçabia,40367,observation-10107c7e-1132-43b9-843e-7bbed18ed5bf-8,https://biolit.fr/observations/observation-10107c7e-1132-43b9-843e-7bbed18ed5bf-8/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/P5160098- 16 mai Haiçabia- Crabe verruqueux-scaled.jpg,,TRUE, +N1,59308,sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf,https://biolit.fr/sorties/sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf/,CPIE Littoral Basque,,5/16/2018 0:00,10.0000000,12.0000000,43.381034000000,-1.734441000000,CPIE Littoral Basque - Euskal Itsasbazterra,Haiçabia,40369,observation-10107c7e-1132-43b9-843e-7bbed18ed5bf-9,https://biolit.fr/observations/observation-10107c7e-1132-43b9-843e-7bbed18ed5bf-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P5160099- 16 mai Haiçabia- Crabe marbré-scaled.jpg,,FALSE, +N1,59309,sortie-01bcbbfa-c288-4253-b0df-4a8723768aa9,https://biolit.fr/sorties/sortie-01bcbbfa-c288-4253-b0df-4a8723768aa9/,CPIE Littoral Basque,,2/16/2018 0:00,11.0000000,12.0000000,43.381010000000,-1.734484000000,,Haiçabia,40371,observation-01bcbbfa-c288-4253-b0df-4a8723768aa9,https://biolit.fr/observations/observation-01bcbbfa-c288-4253-b0df-4a8723768aa9/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/P2160023-16 février Haiçabia- Crabe verruqueux-scaled.jpg,,TRUE, +N1,59309,sortie-01bcbbfa-c288-4253-b0df-4a8723768aa9,https://biolit.fr/sorties/sortie-01bcbbfa-c288-4253-b0df-4a8723768aa9/,CPIE Littoral Basque,,2/16/2018 0:00,11.0000000,12.0000000,43.381010000000,-1.734484000000,,Haiçabia,40373,observation-01bcbbfa-c288-4253-b0df-4a8723768aa9-2,https://biolit.fr/observations/observation-01bcbbfa-c288-4253-b0df-4a8723768aa9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P2160024-16 février Haiçabia- Gibbule ombiliquée-scaled.jpg,,FALSE, +N1,59309,sortie-01bcbbfa-c288-4253-b0df-4a8723768aa9,https://biolit.fr/sorties/sortie-01bcbbfa-c288-4253-b0df-4a8723768aa9/,CPIE Littoral Basque,,2/16/2018 0:00,11.0000000,12.0000000,43.381010000000,-1.734484000000,,Haiçabia,40375,observation-01bcbbfa-c288-4253-b0df-4a8723768aa9-3,https://biolit.fr/observations/observation-01bcbbfa-c288-4253-b0df-4a8723768aa9-3/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/P2160030- 16 février Haiçabia- Balanes-scaled.jpg,,TRUE, +N1,59309,sortie-01bcbbfa-c288-4253-b0df-4a8723768aa9,https://biolit.fr/sorties/sortie-01bcbbfa-c288-4253-b0df-4a8723768aa9/,CPIE Littoral Basque,,2/16/2018 0:00,11.0000000,12.0000000,43.381010000000,-1.734484000000,,Haiçabia,40377,observation-01bcbbfa-c288-4253-b0df-4a8723768aa9-4,https://biolit.fr/observations/observation-01bcbbfa-c288-4253-b0df-4a8723768aa9-4/,Parablennius gattorugine,Cabot,,https://biolit.fr/wp-content/uploads/2023/07/P2160032-16 février Haiçabia- Blennie gattorugine-scaled.jpg,,TRUE, +N1,59309,sortie-01bcbbfa-c288-4253-b0df-4a8723768aa9,https://biolit.fr/sorties/sortie-01bcbbfa-c288-4253-b0df-4a8723768aa9/,CPIE Littoral Basque,,2/16/2018 0:00,11.0000000,12.0000000,43.381010000000,-1.734484000000,,Haiçabia,40379,observation-01bcbbfa-c288-4253-b0df-4a8723768aa9-5,https://biolit.fr/observations/observation-01bcbbfa-c288-4253-b0df-4a8723768aa9-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P2160034-16 février Haiçabia- crabe marbré-scaled.jpg,,FALSE, +N1,59309,sortie-01bcbbfa-c288-4253-b0df-4a8723768aa9,https://biolit.fr/sorties/sortie-01bcbbfa-c288-4253-b0df-4a8723768aa9/,CPIE Littoral Basque,,2/16/2018 0:00,11.0000000,12.0000000,43.381010000000,-1.734484000000,,Haiçabia,40381,observation-01bcbbfa-c288-4253-b0df-4a8723768aa9-6,https://biolit.fr/observations/observation-01bcbbfa-c288-4253-b0df-4a8723768aa9-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P2160036- 16 février Haiçabia- Patelles-scaled.jpg,,FALSE, +N1,59309,sortie-01bcbbfa-c288-4253-b0df-4a8723768aa9,https://biolit.fr/sorties/sortie-01bcbbfa-c288-4253-b0df-4a8723768aa9/,CPIE Littoral Basque,,2/16/2018 0:00,11.0000000,12.0000000,43.381010000000,-1.734484000000,,Haiçabia,40383,observation-01bcbbfa-c288-4253-b0df-4a8723768aa9-7,https://biolit.fr/observations/observation-01bcbbfa-c288-4253-b0df-4a8723768aa9-7/,Janua heterostropha,Spirorbe de Pagenstecher,,https://biolit.fr/wp-content/uploads/2023/07/P2160039- 16 février Haiçabia- (puce de sable)-scaled.jpg,,TRUE, +N1,59309,sortie-01bcbbfa-c288-4253-b0df-4a8723768aa9,https://biolit.fr/sorties/sortie-01bcbbfa-c288-4253-b0df-4a8723768aa9/,CPIE Littoral Basque,,2/16/2018 0:00,11.0000000,12.0000000,43.381010000000,-1.734484000000,,Haiçabia,40385,observation-01bcbbfa-c288-4253-b0df-4a8723768aa9-8,https://biolit.fr/observations/observation-01bcbbfa-c288-4253-b0df-4a8723768aa9-8/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/P2160041-16 février Haiçabia- Enteromorpha et Ulva lactuca-scaled.jpg,,TRUE, +N1,59310,sortie-c9829643-2ef1-43a2-b44a-04629ec1b253,https://biolit.fr/sorties/sortie-c9829643-2ef1-43a2-b44a-04629ec1b253/,laetimiq,,07/04/2019,16.0000000,17.0000000,48.640350000000,-2.072293000000,Planète Mer,Plage de Saint-Enogat,40387,observation-c9829643-2ef1-43a2-b44a-04629ec1b253,https://biolit.fr/observations/observation-c9829643-2ef1-43a2-b44a-04629ec1b253/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/P7040065-scaled.jpg,,TRUE, +N1,59310,sortie-c9829643-2ef1-43a2-b44a-04629ec1b253,https://biolit.fr/sorties/sortie-c9829643-2ef1-43a2-b44a-04629ec1b253/,laetimiq,,07/04/2019,16.0000000,17.0000000,48.640350000000,-2.072293000000,Planète Mer,Plage de Saint-Enogat,40389,observation-c9829643-2ef1-43a2-b44a-04629ec1b253-2,https://biolit.fr/observations/observation-c9829643-2ef1-43a2-b44a-04629ec1b253-2/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/P7040064-scaled.jpg,,TRUE, +N1,59310,sortie-c9829643-2ef1-43a2-b44a-04629ec1b253,https://biolit.fr/sorties/sortie-c9829643-2ef1-43a2-b44a-04629ec1b253/,laetimiq,,07/04/2019,16.0000000,17.0000000,48.640350000000,-2.072293000000,Planète Mer,Plage de Saint-Enogat,40391,observation-c9829643-2ef1-43a2-b44a-04629ec1b253-3,https://biolit.fr/observations/observation-c9829643-2ef1-43a2-b44a-04629ec1b253-3/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P7040068-scaled.jpg,,TRUE, +N1,59310,sortie-c9829643-2ef1-43a2-b44a-04629ec1b253,https://biolit.fr/sorties/sortie-c9829643-2ef1-43a2-b44a-04629ec1b253/,laetimiq,,07/04/2019,16.0000000,17.0000000,48.640350000000,-2.072293000000,Planète Mer,Plage de Saint-Enogat,40393,observation-c9829643-2ef1-43a2-b44a-04629ec1b253-4,https://biolit.fr/observations/observation-c9829643-2ef1-43a2-b44a-04629ec1b253-4/,Lepadogaster candolii,Porte-écuelle de Candolle,,https://biolit.fr/wp-content/uploads/2023/07/P7040071-scaled.jpg,,TRUE, +N1,59310,sortie-c9829643-2ef1-43a2-b44a-04629ec1b253,https://biolit.fr/sorties/sortie-c9829643-2ef1-43a2-b44a-04629ec1b253/,laetimiq,,07/04/2019,16.0000000,17.0000000,48.640350000000,-2.072293000000,Planète Mer,Plage de Saint-Enogat,40395,observation-c9829643-2ef1-43a2-b44a-04629ec1b253-5,https://biolit.fr/observations/observation-c9829643-2ef1-43a2-b44a-04629ec1b253-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P7040072-scaled.jpg,,FALSE, +N1,59310,sortie-c9829643-2ef1-43a2-b44a-04629ec1b253,https://biolit.fr/sorties/sortie-c9829643-2ef1-43a2-b44a-04629ec1b253/,laetimiq,,07/04/2019,16.0000000,17.0000000,48.640350000000,-2.072293000000,Planète Mer,Plage de Saint-Enogat,40397,observation-c9829643-2ef1-43a2-b44a-04629ec1b253-6,https://biolit.fr/observations/observation-c9829643-2ef1-43a2-b44a-04629ec1b253-6/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P7040077-scaled.jpg,,TRUE, +N1,59310,sortie-c9829643-2ef1-43a2-b44a-04629ec1b253,https://biolit.fr/sorties/sortie-c9829643-2ef1-43a2-b44a-04629ec1b253/,laetimiq,,07/04/2019,16.0000000,17.0000000,48.640350000000,-2.072293000000,Planète Mer,Plage de Saint-Enogat,40399,observation-c9829643-2ef1-43a2-b44a-04629ec1b253-7,https://biolit.fr/observations/observation-c9829643-2ef1-43a2-b44a-04629ec1b253-7/,Aplidium elegans,Fraise de mer,,https://biolit.fr/wp-content/uploads/2023/07/P7040078-scaled.jpg,,TRUE, +N1,59310,sortie-c9829643-2ef1-43a2-b44a-04629ec1b253,https://biolit.fr/sorties/sortie-c9829643-2ef1-43a2-b44a-04629ec1b253/,laetimiq,,07/04/2019,16.0000000,17.0000000,48.640350000000,-2.072293000000,Planète Mer,Plage de Saint-Enogat,40401,observation-c9829643-2ef1-43a2-b44a-04629ec1b253-8,https://biolit.fr/observations/observation-c9829643-2ef1-43a2-b44a-04629ec1b253-8/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/P7040080-scaled.jpg,,TRUE, +N1,59310,sortie-c9829643-2ef1-43a2-b44a-04629ec1b253,https://biolit.fr/sorties/sortie-c9829643-2ef1-43a2-b44a-04629ec1b253/,laetimiq,,07/04/2019,16.0000000,17.0000000,48.640350000000,-2.072293000000,Planète Mer,Plage de Saint-Enogat,40403,observation-c9829643-2ef1-43a2-b44a-04629ec1b253-9,https://biolit.fr/observations/observation-c9829643-2ef1-43a2-b44a-04629ec1b253-9/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/bryo-scaled.jpg,,TRUE, +N1,59310,sortie-c9829643-2ef1-43a2-b44a-04629ec1b253,https://biolit.fr/sorties/sortie-c9829643-2ef1-43a2-b44a-04629ec1b253/,laetimiq,,07/04/2019,16.0000000,17.0000000,48.640350000000,-2.072293000000,Planète Mer,Plage de Saint-Enogat,40405,observation-c9829643-2ef1-43a2-b44a-04629ec1b253-10,https://biolit.fr/observations/observation-c9829643-2ef1-43a2-b44a-04629ec1b253-10/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/P7040082-scaled.jpg,,TRUE, +N1,59311,sortie-3ba28a7a-e6c5-48d0-b6fe-01b931ebb099,https://biolit.fr/sorties/sortie-3ba28a7a-e6c5-48d0-b6fe-01b931ebb099/,Associu Mare Vivu,,07/08/2019,16.0000000,17.0000000,42.964554000000,9.451860000000,,Macinaggio,40407,observation-3ba28a7a-e6c5-48d0-b6fe-01b931ebb099,https://biolit.fr/observations/observation-3ba28a7a-e6c5-48d0-b6fe-01b931ebb099/,Podarcis siculus,Lézard des ruines,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6288-scaled.jpg,,TRUE, +N1,59312,sortie-d65a5313-6a57-4cbe-9884-02bea9521025,https://biolit.fr/sorties/sortie-d65a5313-6a57-4cbe-9884-02bea9521025/,Associu Mare Vivu,,07/09/2019,16.0000000,18.0000000,42.966193000000,9.454207000000,,Macinaggio,40409,observation-d65a5313-6a57-4cbe-9884-02bea9521025,https://biolit.fr/observations/observation-d65a5313-6a57-4cbe-9884-02bea9521025/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6277-scaled.jpg,,FALSE, +N1,59312,sortie-d65a5313-6a57-4cbe-9884-02bea9521025,https://biolit.fr/sorties/sortie-d65a5313-6a57-4cbe-9884-02bea9521025/,Associu Mare Vivu,,07/09/2019,16.0000000,18.0000000,42.966193000000,9.454207000000,,Macinaggio,40411,observation-d65a5313-6a57-4cbe-9884-02bea9521025-2,https://biolit.fr/observations/observation-d65a5313-6a57-4cbe-9884-02bea9521025-2/,Milabris variabilis,Mylabre à bandes,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6249-scaled.jpg,,TRUE, +N1,59312,sortie-d65a5313-6a57-4cbe-9884-02bea9521025,https://biolit.fr/sorties/sortie-d65a5313-6a57-4cbe-9884-02bea9521025/,Associu Mare Vivu,,07/09/2019,16.0000000,18.0000000,42.966193000000,9.454207000000,,Macinaggio,40413,observation-d65a5313-6a57-4cbe-9884-02bea9521025-3,https://biolit.fr/observations/observation-d65a5313-6a57-4cbe-9884-02bea9521025-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6256-scaled.jpg,,FALSE, +N1,59313,sortie-dcb8c422-28bb-43cb-bd60-af92ee612db8,https://biolit.fr/sorties/sortie-dcb8c422-28bb-43cb-bd60-af92ee612db8/,Club subaquatique Narbonnais,,07/06/2019,15.0000000,17.0000000,43.168293000000,3.181689000000,Club Subaquatique Narbonnais CSN/FSGT,Port de Narbonne-plage,40415,observation-dcb8c422-28bb-43cb-bd60-af92ee612db8,https://biolit.fr/observations/observation-dcb8c422-28bb-43cb-bd60-af92ee612db8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Atherine.jpg,,FALSE, +N1,59313,sortie-dcb8c422-28bb-43cb-bd60-af92ee612db8,https://biolit.fr/sorties/sortie-dcb8c422-28bb-43cb-bd60-af92ee612db8/,Club subaquatique Narbonnais,,07/06/2019,15.0000000,17.0000000,43.168293000000,3.181689000000,Club Subaquatique Narbonnais CSN/FSGT,Port de Narbonne-plage,40417,observation-dcb8c422-28bb-43cb-bd60-af92ee612db8-2,https://biolit.fr/observations/observation-dcb8c422-28bb-43cb-bd60-af92ee612db8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/bécune12.jpg,,FALSE, +N1,59313,sortie-dcb8c422-28bb-43cb-bd60-af92ee612db8,https://biolit.fr/sorties/sortie-dcb8c422-28bb-43cb-bd60-af92ee612db8/,Club subaquatique Narbonnais,,07/06/2019,15.0000000,17.0000000,43.168293000000,3.181689000000,Club Subaquatique Narbonnais CSN/FSGT,Port de Narbonne-plage,40419,observation-dcb8c422-28bb-43cb-bd60-af92ee612db8-3,https://biolit.fr/observations/observation-dcb8c422-28bb-43cb-bd60-af92ee612db8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/bécune 2.jpg,,FALSE, +N1,59314,sortie-4c2518cc-d285-4afd-a737-58e55e558a9e,https://biolit.fr/sorties/sortie-4c2518cc-d285-4afd-a737-58e55e558a9e/,Phil,,05/05/2019,11.0000000,11.0:25,47.799029000000,-4.179205000000,,Loctudy - Finistère,40421,observation-4c2518cc-d285-4afd-a737-58e55e558a9e,https://biolit.fr/observations/observation-4c2518cc-d285-4afd-a737-58e55e558a9e/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_111902.jpg,,FALSE, +N1,59314,sortie-4c2518cc-d285-4afd-a737-58e55e558a9e,https://biolit.fr/sorties/sortie-4c2518cc-d285-4afd-a737-58e55e558a9e/,Phil,,05/05/2019,11.0000000,11.0:25,47.799029000000,-4.179205000000,,Loctudy - Finistère,40423,observation-4c2518cc-d285-4afd-a737-58e55e558a9e-2,https://biolit.fr/observations/observation-4c2518cc-d285-4afd-a737-58e55e558a9e-2/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20190505_111951.jpg,,TRUE, +N1,59314,sortie-4c2518cc-d285-4afd-a737-58e55e558a9e,https://biolit.fr/sorties/sortie-4c2518cc-d285-4afd-a737-58e55e558a9e/,Phil,,05/05/2019,11.0000000,11.0:25,47.799029000000,-4.179205000000,,Loctudy - Finistère,40425,observation-4c2518cc-d285-4afd-a737-58e55e558a9e-3,https://biolit.fr/observations/observation-4c2518cc-d285-4afd-a737-58e55e558a9e-3/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20190505_112154.jpg,,TRUE, +N1,59314,sortie-4c2518cc-d285-4afd-a737-58e55e558a9e,https://biolit.fr/sorties/sortie-4c2518cc-d285-4afd-a737-58e55e558a9e/,Phil,,05/05/2019,11.0000000,11.0:25,47.799029000000,-4.179205000000,,Loctudy - Finistère,40427,observation-4c2518cc-d285-4afd-a737-58e55e558a9e-4,https://biolit.fr/observations/observation-4c2518cc-d285-4afd-a737-58e55e558a9e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_112329.jpg,,FALSE, +N1,59314,sortie-4c2518cc-d285-4afd-a737-58e55e558a9e,https://biolit.fr/sorties/sortie-4c2518cc-d285-4afd-a737-58e55e558a9e/,Phil,,05/05/2019,11.0000000,11.0:25,47.799029000000,-4.179205000000,,Loctudy - Finistère,40429,observation-4c2518cc-d285-4afd-a737-58e55e558a9e-5,https://biolit.fr/observations/observation-4c2518cc-d285-4afd-a737-58e55e558a9e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_112343.jpg,,FALSE, +N1,59315,sortie-22b13e8e-a6f6-4115-ada2-927e94615cdb,https://biolit.fr/sorties/sortie-22b13e8e-a6f6-4115-ada2-927e94615cdb/,tridimeg,,07/02/2019,14.0000000,15.0000000,48.6465100,-2.02819,,bon secours,40431,observation-22b13e8e-a6f6-4115-ada2-927e94615cdb,https://biolit.fr/observations/observation-22b13e8e-a6f6-4115-ada2-927e94615cdb/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/15620723124166103706641321128455-rotated.jpg,,TRUE, +N1,59316,sortie-72dc4bf6-5925-4e79-94b4-18ff2781d9e2,https://biolit.fr/sorties/sortie-72dc4bf6-5925-4e79-94b4-18ff2781d9e2/,Céline,,07/02/2019,15.0000000,15.0000000,48.6486530,-2.0309100,,Saint malo bonsecours,40433,observation-72dc4bf6-5925-4e79-94b4-18ff2781d9e2,https://biolit.fr/observations/observation-72dc4bf6-5925-4e79-94b4-18ff2781d9e2/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0368_0-scaled.jpg,,TRUE, +N1,59317,sortie-db6ad8ed-1c43-4548-96ed-6f0d72cc2140,https://biolit.fr/sorties/sortie-db6ad8ed-1c43-4548-96ed-6f0d72cc2140/,Céline,,07/02/2019,14.0000000,14.0000000,48.6475000,-2.0312220,Planète Mer,Saint malo bonsrcours,40435,observation-db6ad8ed-1c43-4548-96ed-6f0d72cc2140,https://biolit.fr/observations/observation-db6ad8ed-1c43-4548-96ed-6f0d72cc2140/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0361-scaled.jpg,,TRUE, +N1,59318,sortie-f34f046b-b742-4f9d-aa53-5a18f30eaa4f,https://biolit.fr/sorties/sortie-f34f046b-b742-4f9d-aa53-5a18f30eaa4f/,Céline,,07/02/2019,14.0000000,14.0000000,48.6472660,-2.0314720,,Saint malo bonsecours,40437,observation-f34f046b-b742-4f9d-aa53-5a18f30eaa4f,https://biolit.fr/observations/observation-f34f046b-b742-4f9d-aa53-5a18f30eaa4f/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0359-scaled.jpg,,TRUE, +N1,59319,sortie-5c50e3dd-fcdb-4ba0-b25f-f3d434379f8c,https://biolit.fr/sorties/sortie-5c50e3dd-fcdb-4ba0-b25f-f3d434379f8c/,Céline,,07/02/2019,14.0000000,14.0000000,48.6480100,-2.0282190,,Saint malo bonsecours,40439,observation-5c50e3dd-fcdb-4ba0-b25f-f3d434379f8c,https://biolit.fr/observations/observation-5c50e3dd-fcdb-4ba0-b25f-f3d434379f8c/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0356-scaled.jpg,,TRUE, +N1,59320,sortie-b6905165-8432-446c-ae45-414b400b5ca9,https://biolit.fr/sorties/sortie-b6905165-8432-446c-ae45-414b400b5ca9/,Céline,,07/02/2019,14.0000000,14.0000000,48.6478590,-2.0289180,,Saint-Malo beausejour,40441,observation-b6905165-8432-446c-ae45-414b400b5ca9,https://biolit.fr/observations/observation-b6905165-8432-446c-ae45-414b400b5ca9/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0354_0-scaled.jpg,,TRUE, +N1,59321,sortie-6c731701-ef8f-4121-af6b-b467c88d1e47,https://biolit.fr/sorties/sortie-6c731701-ef8f-4121-af6b-b467c88d1e47/,Noëlla M,,6/17/2019 0:00,15.0000000,16.0000000,41.912476000000,8.726722000000,,Plage du trottel ,40443,observation-6c731701-ef8f-4121-af6b-b467c88d1e47,https://biolit.fr/observations/observation-6c731701-ef8f-4121-af6b-b467c88d1e47/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190617_163657-min-scaled.jpg,,TRUE, +N1,59321,sortie-6c731701-ef8f-4121-af6b-b467c88d1e47,https://biolit.fr/sorties/sortie-6c731701-ef8f-4121-af6b-b467c88d1e47/,Noëlla M,,6/17/2019 0:00,15.0000000,16.0000000,41.912476000000,8.726722000000,,Plage du trottel ,40445,observation-6c731701-ef8f-4121-af6b-b467c88d1e47-2,https://biolit.fr/observations/observation-6c731701-ef8f-4121-af6b-b467c88d1e47-2/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190617_163720-min-scaled.jpg,,TRUE, +N1,59321,sortie-6c731701-ef8f-4121-af6b-b467c88d1e47,https://biolit.fr/sorties/sortie-6c731701-ef8f-4121-af6b-b467c88d1e47/,Noëlla M,,6/17/2019 0:00,15.0000000,16.0000000,41.912476000000,8.726722000000,,Plage du trottel ,40447,observation-6c731701-ef8f-4121-af6b-b467c88d1e47-3,https://biolit.fr/observations/observation-6c731701-ef8f-4121-af6b-b467c88d1e47-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190617_163756-min-scaled.jpg,,FALSE, +N1,59321,sortie-6c731701-ef8f-4121-af6b-b467c88d1e47,https://biolit.fr/sorties/sortie-6c731701-ef8f-4121-af6b-b467c88d1e47/,Noëlla M,,6/17/2019 0:00,15.0000000,16.0000000,41.912476000000,8.726722000000,,Plage du trottel ,40449,observation-6c731701-ef8f-4121-af6b-b467c88d1e47-4,https://biolit.fr/observations/observation-6c731701-ef8f-4121-af6b-b467c88d1e47-4/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190617_170607-min-scaled.jpg,,TRUE, +N1,59321,sortie-6c731701-ef8f-4121-af6b-b467c88d1e47,https://biolit.fr/sorties/sortie-6c731701-ef8f-4121-af6b-b467c88d1e47/,Noëlla M,,6/17/2019 0:00,15.0000000,16.0000000,41.912476000000,8.726722000000,,Plage du trottel ,40451,observation-6c731701-ef8f-4121-af6b-b467c88d1e47-5,https://biolit.fr/observations/observation-6c731701-ef8f-4121-af6b-b467c88d1e47-5/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190617_170543-min-scaled.jpg,,TRUE, +N1,59321,sortie-6c731701-ef8f-4121-af6b-b467c88d1e47,https://biolit.fr/sorties/sortie-6c731701-ef8f-4121-af6b-b467c88d1e47/,Noëlla M,,6/17/2019 0:00,15.0000000,16.0000000,41.912476000000,8.726722000000,,Plage du trottel ,40453,observation-6c731701-ef8f-4121-af6b-b467c88d1e47-6,https://biolit.fr/observations/observation-6c731701-ef8f-4121-af6b-b467c88d1e47-6/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190617_170825-min-scaled.jpg,,TRUE, +N1,59322,sortie-4869324f-8c26-4f9f-8367-7e7a58913cf6,https://biolit.fr/sorties/sortie-4869324f-8c26-4f9f-8367-7e7a58913cf6/,Observe la nature,,06/03/2019,10.0:45,12.0:45,48.818979000000,-3.454295000000,,Plage de trestrignel,40455,observation-4869324f-8c26-4f9f-8367-7e7a58913cf6,https://biolit.fr/observations/observation-4869324f-8c26-4f9f-8367-7e7a58913cf6/,Pleurobrachia pileus,Groseille de mer,,https://biolit.fr/wp-content/uploads/2023/07/62077932_684158922015238_1331489481517170688_o.jpg,,TRUE, +N1,59323,sortie-ac304f86-f6ff-4d81-a59e-841ab179854c,https://biolit.fr/sorties/sortie-ac304f86-f6ff-4d81-a59e-841ab179854c/,Observe la nature,,6/28/2019 0:00,10.0000000,12.0000000,48.834263000000,-3.40826900000,,PERROS GUIREC,40457,observation-ac304f86-f6ff-4d81-a59e-841ab179854c,https://biolit.fr/observations/observation-ac304f86-f6ff-4d81-a59e-841ab179854c/,,,,https://biolit.fr/wp-content/uploads/2023/07/65275877_701561306941666_1675112609231142912_n.jpg,,FALSE, +N1,59324,sortie-72a9c139-e6fc-4a5a-a0a8-eca03ca99701,https://biolit.fr/sorties/sortie-72a9c139-e6fc-4a5a-a0a8-eca03ca99701/,Marine,,6/20/2019 0:00,14.0000000,14.0000000,43.210763000000,5.420779000000,,Plage de sormiou,40459,observation-72a9c139-e6fc-4a5a-a0a8-eca03ca99701,https://biolit.fr/observations/observation-72a9c139-e6fc-4a5a-a0a8-eca03ca99701/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/E1F2B592-B8E2-40BD-848C-22788C2F63DA-scaled.jpeg,,TRUE, +N1,59325,sortie-38a814f3-3bea-4129-8679-765980b80f18,https://biolit.fr/sorties/sortie-38a814f3-3bea-4129-8679-765980b80f18/,Phil,,7/22/2018 0:00,14.0:45,14.0:55,47.708349000000,-3.992968000000,,Fouesnant - Finistère,40461,observation-38a814f3-3bea-4129-8679-765980b80f18,https://biolit.fr/observations/observation-38a814f3-3bea-4129-8679-765980b80f18/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120015.JPG,,FALSE, +N1,59325,sortie-38a814f3-3bea-4129-8679-765980b80f18,https://biolit.fr/sorties/sortie-38a814f3-3bea-4129-8679-765980b80f18/,Phil,,7/22/2018 0:00,14.0:45,14.0:55,47.708349000000,-3.992968000000,,Fouesnant - Finistère,40463,observation-38a814f3-3bea-4129-8679-765980b80f18-2,https://biolit.fr/observations/observation-38a814f3-3bea-4129-8679-765980b80f18-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120016.JPG,,FALSE, +N1,59325,sortie-38a814f3-3bea-4129-8679-765980b80f18,https://biolit.fr/sorties/sortie-38a814f3-3bea-4129-8679-765980b80f18/,Phil,,7/22/2018 0:00,14.0:45,14.0:55,47.708349000000,-3.992968000000,,Fouesnant - Finistère,40465,observation-38a814f3-3bea-4129-8679-765980b80f18-3,https://biolit.fr/observations/observation-38a814f3-3bea-4129-8679-765980b80f18-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120014.JPG,,FALSE, +N1,59325,sortie-38a814f3-3bea-4129-8679-765980b80f18,https://biolit.fr/sorties/sortie-38a814f3-3bea-4129-8679-765980b80f18/,Phil,,7/22/2018 0:00,14.0:45,14.0:55,47.708349000000,-3.992968000000,,Fouesnant - Finistère,40467,observation-38a814f3-3bea-4129-8679-765980b80f18-4,https://biolit.fr/observations/observation-38a814f3-3bea-4129-8679-765980b80f18-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120013.JPG,,FALSE, +N1,59325,sortie-38a814f3-3bea-4129-8679-765980b80f18,https://biolit.fr/sorties/sortie-38a814f3-3bea-4129-8679-765980b80f18/,Phil,,7/22/2018 0:00,14.0:45,14.0:55,47.708349000000,-3.992968000000,,Fouesnant - Finistère,40469,observation-38a814f3-3bea-4129-8679-765980b80f18-5,https://biolit.fr/observations/observation-38a814f3-3bea-4129-8679-765980b80f18-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120010.JPG,,FALSE, +N1,59325,sortie-38a814f3-3bea-4129-8679-765980b80f18,https://biolit.fr/sorties/sortie-38a814f3-3bea-4129-8679-765980b80f18/,Phil,,7/22/2018 0:00,14.0:45,14.0:55,47.708349000000,-3.992968000000,,Fouesnant - Finistère,40471,observation-38a814f3-3bea-4129-8679-765980b80f18-6,https://biolit.fr/observations/observation-38a814f3-3bea-4129-8679-765980b80f18-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120009.JPG,,FALSE, +N1,59326,sortie-298921fd-b326-458d-b231-9330c28bd85c,https://biolit.fr/sorties/sortie-298921fd-b326-458d-b231-9330c28bd85c/,Club subaquatique Narbonnais,,6/22/2019 0:00,11.0000000,12.0000000,43.168178000000,3.18195200000,Club Subaquatique Narbonnais CSN/FSGT,Port de Narbonne-plage,40473,observation-298921fd-b326-458d-b231-9330c28bd85c,https://biolit.fr/observations/observation-298921fd-b326-458d-b231-9330c28bd85c/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/algues-scaled.jpg,,TRUE, +N1,59326,sortie-298921fd-b326-458d-b231-9330c28bd85c,https://biolit.fr/sorties/sortie-298921fd-b326-458d-b231-9330c28bd85c/,Club subaquatique Narbonnais,,6/22/2019 0:00,11.0000000,12.0000000,43.168178000000,3.18195200000,Club Subaquatique Narbonnais CSN/FSGT,Port de Narbonne-plage,40474,observation-298921fd-b326-458d-b231-9330c28bd85c-2,https://biolit.fr/observations/observation-298921fd-b326-458d-b231-9330c28bd85c-2/,Okenia elegans,Okénia élégante,,https://biolit.fr/wp-content/uploads/2023/07/limace2.JPG,,TRUE, +N1,59326,sortie-298921fd-b326-458d-b231-9330c28bd85c,https://biolit.fr/sorties/sortie-298921fd-b326-458d-b231-9330c28bd85c/,Club subaquatique Narbonnais,,6/22/2019 0:00,11.0000000,12.0000000,43.168178000000,3.18195200000,Club Subaquatique Narbonnais CSN/FSGT,Port de Narbonne-plage,40476,observation-298921fd-b326-458d-b231-9330c28bd85c-3,https://biolit.fr/observations/observation-298921fd-b326-458d-b231-9330c28bd85c-3/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/P6200074-scaled.jpg,,TRUE, +N1,59327,sortie-06e4d4c1-69e7-4203-b183-f9b9260e6126,https://biolit.fr/sorties/sortie-06e4d4c1-69e7-4203-b183-f9b9260e6126/,Phil,,05/05/2019,11.000005,11.0000000,47.799727000000,-4.179060000000,,Loctudy - Finistère,40478,observation-06e4d4c1-69e7-4203-b183-f9b9260e6126,https://biolit.fr/observations/observation-06e4d4c1-69e7-4203-b183-f9b9260e6126/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_111504.jpg,,FALSE, +N1,59327,sortie-06e4d4c1-69e7-4203-b183-f9b9260e6126,https://biolit.fr/sorties/sortie-06e4d4c1-69e7-4203-b183-f9b9260e6126/,Phil,,05/05/2019,11.000005,11.0000000,47.799727000000,-4.179060000000,,Loctudy - Finistère,40480,observation-06e4d4c1-69e7-4203-b183-f9b9260e6126-2,https://biolit.fr/observations/observation-06e4d4c1-69e7-4203-b183-f9b9260e6126-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_111711.jpg,,FALSE, +N1,59327,sortie-06e4d4c1-69e7-4203-b183-f9b9260e6126,https://biolit.fr/sorties/sortie-06e4d4c1-69e7-4203-b183-f9b9260e6126/,Phil,,05/05/2019,11.000005,11.0000000,47.799727000000,-4.179060000000,,Loctudy - Finistère,40482,observation-06e4d4c1-69e7-4203-b183-f9b9260e6126-3,https://biolit.fr/observations/observation-06e4d4c1-69e7-4203-b183-f9b9260e6126-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_111716.jpg,,FALSE, +N1,59327,sortie-06e4d4c1-69e7-4203-b183-f9b9260e6126,https://biolit.fr/sorties/sortie-06e4d4c1-69e7-4203-b183-f9b9260e6126/,Phil,,05/05/2019,11.000005,11.0000000,47.799727000000,-4.179060000000,,Loctudy - Finistère,40484,observation-06e4d4c1-69e7-4203-b183-f9b9260e6126-4,https://biolit.fr/observations/observation-06e4d4c1-69e7-4203-b183-f9b9260e6126-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_111705.jpg,,FALSE, +N1,59327,sortie-06e4d4c1-69e7-4203-b183-f9b9260e6126,https://biolit.fr/sorties/sortie-06e4d4c1-69e7-4203-b183-f9b9260e6126/,Phil,,05/05/2019,11.000005,11.0000000,47.799727000000,-4.179060000000,,Loctudy - Finistère,40486,observation-06e4d4c1-69e7-4203-b183-f9b9260e6126-5,https://biolit.fr/observations/observation-06e4d4c1-69e7-4203-b183-f9b9260e6126-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_111644.jpg,,FALSE, +N1,59327,sortie-06e4d4c1-69e7-4203-b183-f9b9260e6126,https://biolit.fr/sorties/sortie-06e4d4c1-69e7-4203-b183-f9b9260e6126/,Phil,,05/05/2019,11.000005,11.0000000,47.799727000000,-4.179060000000,,Loctudy - Finistère,40488,observation-06e4d4c1-69e7-4203-b183-f9b9260e6126-6,https://biolit.fr/observations/observation-06e4d4c1-69e7-4203-b183-f9b9260e6126-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_111631.jpg,,FALSE, +N1,59328,sortie-998e9e22-1388-469e-95e1-40ab2535329e,https://biolit.fr/sorties/sortie-998e9e22-1388-469e-95e1-40ab2535329e/,Phil,,5/19/2019 0:00,10.0000000,10.0000000,47.799579000000,-4.18079500000,,Loctudy - Finistère,40490,observation-998e9e22-1388-469e-95e1-40ab2535329e,https://biolit.fr/observations/observation-998e9e22-1388-469e-95e1-40ab2535329e/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190519_102812.jpg,,FALSE, +N1,59328,sortie-998e9e22-1388-469e-95e1-40ab2535329e,https://biolit.fr/sorties/sortie-998e9e22-1388-469e-95e1-40ab2535329e/,Phil,,5/19/2019 0:00,10.0000000,10.0000000,47.799579000000,-4.18079500000,,Loctudy - Finistère,40492,observation-998e9e22-1388-469e-95e1-40ab2535329e-2,https://biolit.fr/observations/observation-998e9e22-1388-469e-95e1-40ab2535329e-2/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20190519_103505.jpg,,TRUE, +N1,59328,sortie-998e9e22-1388-469e-95e1-40ab2535329e,https://biolit.fr/sorties/sortie-998e9e22-1388-469e-95e1-40ab2535329e/,Phil,,5/19/2019 0:00,10.0000000,10.0000000,47.799579000000,-4.18079500000,,Loctudy - Finistère,40494,observation-998e9e22-1388-469e-95e1-40ab2535329e-3,https://biolit.fr/observations/observation-998e9e22-1388-469e-95e1-40ab2535329e-3/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20190519_103511.jpg,,TRUE, +N1,59328,sortie-998e9e22-1388-469e-95e1-40ab2535329e,https://biolit.fr/sorties/sortie-998e9e22-1388-469e-95e1-40ab2535329e/,Phil,,5/19/2019 0:00,10.0000000,10.0000000,47.799579000000,-4.18079500000,,Loctudy - Finistère,40496,observation-998e9e22-1388-469e-95e1-40ab2535329e-4,https://biolit.fr/observations/observation-998e9e22-1388-469e-95e1-40ab2535329e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190519_103618.jpg,,FALSE, +N1,59328,sortie-998e9e22-1388-469e-95e1-40ab2535329e,https://biolit.fr/sorties/sortie-998e9e22-1388-469e-95e1-40ab2535329e/,Phil,,5/19/2019 0:00,10.0000000,10.0000000,47.799579000000,-4.18079500000,,Loctudy - Finistère,40498,observation-998e9e22-1388-469e-95e1-40ab2535329e-5,https://biolit.fr/observations/observation-998e9e22-1388-469e-95e1-40ab2535329e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190519_103625.jpg,,FALSE, +N1,59328,sortie-998e9e22-1388-469e-95e1-40ab2535329e,https://biolit.fr/sorties/sortie-998e9e22-1388-469e-95e1-40ab2535329e/,Phil,,5/19/2019 0:00,10.0000000,10.0000000,47.799579000000,-4.18079500000,,Loctudy - Finistère,40500,observation-998e9e22-1388-469e-95e1-40ab2535329e-6,https://biolit.fr/observations/observation-998e9e22-1388-469e-95e1-40ab2535329e-6/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20190519_103632.jpg,,TRUE, +N1,59328,sortie-998e9e22-1388-469e-95e1-40ab2535329e,https://biolit.fr/sorties/sortie-998e9e22-1388-469e-95e1-40ab2535329e/,Phil,,5/19/2019 0:00,10.0000000,10.0000000,47.799579000000,-4.18079500000,,Loctudy - Finistère,40502,observation-998e9e22-1388-469e-95e1-40ab2535329e-7,https://biolit.fr/observations/observation-998e9e22-1388-469e-95e1-40ab2535329e-7/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/20190519_103949.jpg,,TRUE, +N1,59329,sortie-e23955a6-ada5-443f-a080-4c9d69fe52cc,https://biolit.fr/sorties/sortie-e23955a6-ada5-443f-a080-4c9d69fe52cc/,Phil,,6/15/2019 0:00,15.0:35,15.0000000,48.191459000000,-4.304752000000,,Saint-Nic - Finistère,40504,observation-e23955a6-ada5-443f-a080-4c9d69fe52cc,https://biolit.fr/observations/observation-e23955a6-ada5-443f-a080-4c9d69fe52cc/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190615_153702.jpg,,FALSE, +N1,59329,sortie-e23955a6-ada5-443f-a080-4c9d69fe52cc,https://biolit.fr/sorties/sortie-e23955a6-ada5-443f-a080-4c9d69fe52cc/,Phil,,6/15/2019 0:00,15.0:35,15.0000000,48.191459000000,-4.304752000000,,Saint-Nic - Finistère,40506,observation-e23955a6-ada5-443f-a080-4c9d69fe52cc-2,https://biolit.fr/observations/observation-e23955a6-ada5-443f-a080-4c9d69fe52cc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190615_153724.jpg,,FALSE, +N1,59329,sortie-e23955a6-ada5-443f-a080-4c9d69fe52cc,https://biolit.fr/sorties/sortie-e23955a6-ada5-443f-a080-4c9d69fe52cc/,Phil,,6/15/2019 0:00,15.0:35,15.0000000,48.191459000000,-4.304752000000,,Saint-Nic - Finistère,40508,observation-e23955a6-ada5-443f-a080-4c9d69fe52cc-3,https://biolit.fr/observations/observation-e23955a6-ada5-443f-a080-4c9d69fe52cc-3/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/20190615_153741.jpg,,TRUE, +N1,59329,sortie-e23955a6-ada5-443f-a080-4c9d69fe52cc,https://biolit.fr/sorties/sortie-e23955a6-ada5-443f-a080-4c9d69fe52cc/,Phil,,6/15/2019 0:00,15.0:35,15.0000000,48.191459000000,-4.304752000000,,Saint-Nic - Finistère,40510,observation-e23955a6-ada5-443f-a080-4c9d69fe52cc-4,https://biolit.fr/observations/observation-e23955a6-ada5-443f-a080-4c9d69fe52cc-4/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/20190615_153914.jpg,,TRUE, +N1,59329,sortie-e23955a6-ada5-443f-a080-4c9d69fe52cc,https://biolit.fr/sorties/sortie-e23955a6-ada5-443f-a080-4c9d69fe52cc/,Phil,,6/15/2019 0:00,15.0:35,15.0000000,48.191459000000,-4.304752000000,,Saint-Nic - Finistère,40512,observation-e23955a6-ada5-443f-a080-4c9d69fe52cc-5,https://biolit.fr/observations/observation-e23955a6-ada5-443f-a080-4c9d69fe52cc-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190615_154031.jpg,,FALSE, +N1,59329,sortie-e23955a6-ada5-443f-a080-4c9d69fe52cc,https://biolit.fr/sorties/sortie-e23955a6-ada5-443f-a080-4c9d69fe52cc/,Phil,,6/15/2019 0:00,15.0:35,15.0000000,48.191459000000,-4.304752000000,,Saint-Nic - Finistère,40514,observation-e23955a6-ada5-443f-a080-4c9d69fe52cc-6,https://biolit.fr/observations/observation-e23955a6-ada5-443f-a080-4c9d69fe52cc-6/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/20190615_153840-scaled.jpg,,TRUE, +N1,59330,sortie-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b,https://biolit.fr/sorties/sortie-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b/,Phil,,6/14/2019 0:00,12.0:15,12.0000000,47.892812000000,-4.127220000000,,Gouesnach - Finistère,40516,observation-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b,https://biolit.fr/observations/observation-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190614_121643.jpg,,FALSE, +N1,59330,sortie-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b,https://biolit.fr/sorties/sortie-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b/,Phil,,6/14/2019 0:00,12.0:15,12.0000000,47.892812000000,-4.127220000000,,Gouesnach - Finistère,40518,observation-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b-2,https://biolit.fr/observations/observation-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190614_121622.jpg,,FALSE, +N1,59330,sortie-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b,https://biolit.fr/sorties/sortie-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b/,Phil,,6/14/2019 0:00,12.0:15,12.0000000,47.892812000000,-4.127220000000,,Gouesnach - Finistère,40520,observation-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b-3,https://biolit.fr/observations/observation-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190614_121611.jpg,,FALSE, +N1,59330,sortie-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b,https://biolit.fr/sorties/sortie-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b/,Phil,,6/14/2019 0:00,12.0:15,12.0000000,47.892812000000,-4.127220000000,,Gouesnach - Finistère,40522,observation-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b-4,https://biolit.fr/observations/observation-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190614_121600.jpg,,FALSE, +N1,59330,sortie-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b,https://biolit.fr/sorties/sortie-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b/,Phil,,6/14/2019 0:00,12.0:15,12.0000000,47.892812000000,-4.127220000000,,Gouesnach - Finistère,40524,observation-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b-5,https://biolit.fr/observations/observation-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190614_121553.jpg,,FALSE, +N1,59330,sortie-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b,https://biolit.fr/sorties/sortie-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b/,Phil,,6/14/2019 0:00,12.0:15,12.0000000,47.892812000000,-4.127220000000,,Gouesnach - Finistère,40526,observation-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b-6,https://biolit.fr/observations/observation-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190614_121453.jpg,,FALSE, +N1,59330,sortie-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b,https://biolit.fr/sorties/sortie-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b/,Phil,,6/14/2019 0:00,12.0:15,12.0000000,47.892812000000,-4.127220000000,,Gouesnach - Finistère,40528,observation-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b-7,https://biolit.fr/observations/observation-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190614_121653.jpg,,FALSE, +N1,59331,sortie-8f9ccfa8-f8eb-4b5e-91f3-4423c064e05a,https://biolit.fr/sorties/sortie-8f9ccfa8-f8eb-4b5e-91f3-4423c064e05a/,Club subaquatique Narbonnais,,6/16/2019 0:00,12.0000000,13.0000000,43.168397000000,3.18165200000,Club Subaquatique Narbonnais CSN/FSGT,Port de Narbonne-plage,40530,observation-8f9ccfa8-f8eb-4b5e-91f3-4423c064e05a,https://biolit.fr/observations/observation-8f9ccfa8-f8eb-4b5e-91f3-4423c064e05a/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P6160046.JPG,,TRUE, +N1,59331,sortie-8f9ccfa8-f8eb-4b5e-91f3-4423c064e05a,https://biolit.fr/sorties/sortie-8f9ccfa8-f8eb-4b5e-91f3-4423c064e05a/,Club subaquatique Narbonnais,,6/16/2019 0:00,12.0000000,13.0000000,43.168397000000,3.18165200000,Club Subaquatique Narbonnais CSN/FSGT,Port de Narbonne-plage,40532,observation-8f9ccfa8-f8eb-4b5e-91f3-4423c064e05a-2,https://biolit.fr/observations/observation-8f9ccfa8-f8eb-4b5e-91f3-4423c064e05a-2/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P6160049.JPG,,TRUE, +N1,59331,sortie-8f9ccfa8-f8eb-4b5e-91f3-4423c064e05a,https://biolit.fr/sorties/sortie-8f9ccfa8-f8eb-4b5e-91f3-4423c064e05a/,Club subaquatique Narbonnais,,6/16/2019 0:00,12.0000000,13.0000000,43.168397000000,3.18165200000,Club Subaquatique Narbonnais CSN/FSGT,Port de Narbonne-plage,40534,observation-8f9ccfa8-f8eb-4b5e-91f3-4423c064e05a-3,https://biolit.fr/observations/observation-8f9ccfa8-f8eb-4b5e-91f3-4423c064e05a-3/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P6160053.JPG,,TRUE, +N1,59331,sortie-8f9ccfa8-f8eb-4b5e-91f3-4423c064e05a,https://biolit.fr/sorties/sortie-8f9ccfa8-f8eb-4b5e-91f3-4423c064e05a/,Club subaquatique Narbonnais,,6/16/2019 0:00,12.0000000,13.0000000,43.168397000000,3.18165200000,Club Subaquatique Narbonnais CSN/FSGT,Port de Narbonne-plage,40536,observation-8f9ccfa8-f8eb-4b5e-91f3-4423c064e05a-4,https://biolit.fr/observations/observation-8f9ccfa8-f8eb-4b5e-91f3-4423c064e05a-4/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P6160081-scaled.jpg,,TRUE, +N1,59332,sortie-e43512a7-d2e6-4462-ab06-3f6c60d630a1,https://biolit.fr/sorties/sortie-e43512a7-d2e6-4462-ab06-3f6c60d630a1/,Phil,,05/05/2019,11.0000000,11.0:15,47.799879000000,-4.179602000000,,Loctudy - Finistère,40538,observation-e43512a7-d2e6-4462-ab06-3f6c60d630a1,https://biolit.fr/observations/observation-e43512a7-d2e6-4462-ab06-3f6c60d630a1/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/20190505_110005.jpg,,TRUE, +N1,59332,sortie-e43512a7-d2e6-4462-ab06-3f6c60d630a1,https://biolit.fr/sorties/sortie-e43512a7-d2e6-4462-ab06-3f6c60d630a1/,Phil,,05/05/2019,11.0000000,11.0:15,47.799879000000,-4.179602000000,,Loctudy - Finistère,40540,observation-e43512a7-d2e6-4462-ab06-3f6c60d630a1-2,https://biolit.fr/observations/observation-e43512a7-d2e6-4462-ab06-3f6c60d630a1-2/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/20190505_110018.jpg,,TRUE, +N1,59332,sortie-e43512a7-d2e6-4462-ab06-3f6c60d630a1,https://biolit.fr/sorties/sortie-e43512a7-d2e6-4462-ab06-3f6c60d630a1/,Phil,,05/05/2019,11.0000000,11.0:15,47.799879000000,-4.179602000000,,Loctudy - Finistère,40542,observation-e43512a7-d2e6-4462-ab06-3f6c60d630a1-3,https://biolit.fr/observations/observation-e43512a7-d2e6-4462-ab06-3f6c60d630a1-3/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/07/20190505_110207.jpg,,TRUE, +N1,59332,sortie-e43512a7-d2e6-4462-ab06-3f6c60d630a1,https://biolit.fr/sorties/sortie-e43512a7-d2e6-4462-ab06-3f6c60d630a1/,Phil,,05/05/2019,11.0000000,11.0:15,47.799879000000,-4.179602000000,,Loctudy - Finistère,40544,observation-e43512a7-d2e6-4462-ab06-3f6c60d630a1-4,https://biolit.fr/observations/observation-e43512a7-d2e6-4462-ab06-3f6c60d630a1-4/,Aplidium turbinatum,Flocon pédonculé trompette,,https://biolit.fr/wp-content/uploads/2023/07/20190505_111452.jpg,,TRUE, +N1,59332,sortie-e43512a7-d2e6-4462-ab06-3f6c60d630a1,https://biolit.fr/sorties/sortie-e43512a7-d2e6-4462-ab06-3f6c60d630a1/,Phil,,05/05/2019,11.0000000,11.0:15,47.799879000000,-4.179602000000,,Loctudy - Finistère,40546,observation-e43512a7-d2e6-4462-ab06-3f6c60d630a1-5,https://biolit.fr/observations/observation-e43512a7-d2e6-4462-ab06-3f6c60d630a1-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190505_110124-scaled.jpg,,TRUE, +N1,59333,sortie-13e0f1f5-5098-4e27-900b-037503814f94,https://biolit.fr/sorties/sortie-13e0f1f5-5098-4e27-900b-037503814f94/,Septentrion Environnement,,06/08/2019,14.0000000,15.0000000,43.18858600000,5.385627000000,,Calanque de Pouars (Ile Plane - Riou Marseille),40548,observation-13e0f1f5-5098-4e27-900b-037503814f94,https://biolit.fr/observations/observation-13e0f1f5-5098-4e27-900b-037503814f94/,Clavelina lepadiformis,Grande claveline,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4277-2-scaled.jpg,,TRUE, +N1,59334,sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704,https://biolit.fr/sorties/sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704/,Phil,,06/04/2019,12.0000000,13.0:25,48.194447000000,-4.550043000000,,Crozon - Finistère,40550,observation-ca8e976b-41c9-49ca-84c0-be5df00e1704,https://biolit.fr/observations/observation-ca8e976b-41c9-49ca-84c0-be5df00e1704/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120514.JPG,,TRUE, +N1,59334,sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704,https://biolit.fr/sorties/sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704/,Phil,,06/04/2019,12.0000000,13.0:25,48.194447000000,-4.550043000000,,Crozon - Finistère,40552,observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-2,https://biolit.fr/observations/observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-2/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120545.JPG,,TRUE, +N1,59334,sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704,https://biolit.fr/sorties/sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704/,Phil,,06/04/2019,12.0000000,13.0:25,48.194447000000,-4.550043000000,,Crozon - Finistère,40554,observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-3,https://biolit.fr/observations/observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-3/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120547.JPG,,TRUE, +N1,59334,sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704,https://biolit.fr/sorties/sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704/,Phil,,06/04/2019,12.0000000,13.0:25,48.194447000000,-4.550043000000,,Crozon - Finistère,40556,observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-4,https://biolit.fr/observations/observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-4/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120553.JPG,,TRUE, +N1,59334,sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704,https://biolit.fr/sorties/sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704/,Phil,,06/04/2019,12.0000000,13.0:25,48.194447000000,-4.550043000000,,Crozon - Finistère,40558,observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-5,https://biolit.fr/observations/observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-5/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120554.JPG,,TRUE, +N1,59334,sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704,https://biolit.fr/sorties/sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704/,Phil,,06/04/2019,12.0000000,13.0:25,48.194447000000,-4.550043000000,,Crozon - Finistère,40560,observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-6,https://biolit.fr/observations/observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-6/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120571.JPG,,TRUE, +N1,59334,sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704,https://biolit.fr/sorties/sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704/,Phil,,06/04/2019,12.0000000,13.0:25,48.194447000000,-4.550043000000,,Crozon - Finistère,40562,observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-7,https://biolit.fr/observations/observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-7/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120572.JPG,,TRUE, +N1,59334,sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704,https://biolit.fr/sorties/sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704/,Phil,,06/04/2019,12.0000000,13.0:25,48.194447000000,-4.550043000000,,Crozon - Finistère,40564,observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-8,https://biolit.fr/observations/observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-8/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120586.JPG,,TRUE, +N1,59334,sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704,https://biolit.fr/sorties/sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704/,Phil,,06/04/2019,12.0000000,13.0:25,48.194447000000,-4.550043000000,,Crozon - Finistère,40566,observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-9,https://biolit.fr/observations/observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-9/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120591.JPG,,TRUE, +N1,59334,sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704,https://biolit.fr/sorties/sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704/,Phil,,06/04/2019,12.0000000,13.0:25,48.194447000000,-4.550043000000,,Crozon - Finistère,40568,observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-10,https://biolit.fr/observations/observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-10/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120640.JPG,,TRUE, +N1,59334,sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704,https://biolit.fr/sorties/sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704/,Phil,,06/04/2019,12.0000000,13.0:25,48.194447000000,-4.550043000000,,Crozon - Finistère,40570,observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-11,https://biolit.fr/observations/observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-11/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120653.JPG,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40572,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Alconium.jpg,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40574,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-2,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-2/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Amande de mer.jpg,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40576,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-3,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Anémone Metridium sp. (2).jpg,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40578,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-4,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-4/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asteria rubens.PNG,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40579,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-5,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/asterina gibbosa.PNG,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40580,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-6,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-6/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/Bouquet Palaemon serratus.jpg,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40582,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-7,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-7/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/Blennius pholis.jpg,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40584,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-8,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Corella emyota.jpg,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40586,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-9,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-9/,Cyclopterus lumpus,Lompe,,https://biolit.fr/wp-content/uploads/2023/07/Cyclopterus lumpus.jpg,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40588,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-10,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-10/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_0.PNG,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40589,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-11,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-11/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/cancer pagurus.PNG,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40590,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-12,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-12/,Dromia personata,Dromie,,https://biolit.fr/wp-content/uploads/2023/07/Dromia personata.jpg,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40592,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-13,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-13/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_0.PNG,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40593,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-14,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-14/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea-scaled.jpg,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40594,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-15,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Doridien sp.PNG,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40595,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-16,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Balanus crenatus.jpg,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40597,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-17,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-17/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Elminius modestus.jpg,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40599,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-18,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-18/,Diodora graeca,Fissurelle,,https://biolit.fr/wp-content/uploads/2023/07/diodora graeca.PNG,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40600,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-19,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-19/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammecchinus miliaris.jpg,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40602,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-20,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lanice conchilega1.jpg,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40604,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-21,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-21/,Mercenaria mercenaria,Clam,,https://biolit.fr/wp-content/uploads/2023/07/Venerupis decussata.jpg,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40606,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-22,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/Murex Ocenebra orinacea.jpg,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40608,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-23,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-23/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/Oeufs de Nucelle.jpg,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40610,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-24,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/Laminaire sucrée.jpg,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40612,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-25,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/Halichondria sp.jpg,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40614,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-26,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-26/,,,,https://biolit.fr/wp-content/uploads/2023/05/gibbule ombiliquée.jpg,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40615,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-27,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-27/,,,,https://biolit.fr/wp-content/uploads/2023/05/Pholade-scaled.jpg,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40616,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-28,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mulet.jpg,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40618,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-29,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/Eponge Halicondria panicea.jpg,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40620,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-30,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-30/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus.PNG,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40621,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-31,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-31/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crepidula fornicata.PNG,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40622,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-32,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-32/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina obtusata.PNG,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40623,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-33,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-33/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_0.PNG,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40624,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-34,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-34/,Ensis magnus,Couteau arqué,,https://biolit.fr/wp-content/uploads/2023/07/Ensis magnus.jpg,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40626,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-35,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-35/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Etrille Necora puber.jpg,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40628,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-36,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-36/,,,,https://biolit.fr/wp-content/uploads/2023/07/Méduse boussole.jpg,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40630,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-37,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-37/,Scyliorhinus canicula,Capsule de petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/Oeuf de roussette.PNG,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40631,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-38,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-38/,,,,https://biolit.fr/wp-content/uploads/2023/07/Oeufs de Lompe.jpg,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40633,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-39,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-39/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/Galathée (3).jpg,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40635,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-40,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-40/,,,,https://biolit.fr/wp-content/uploads/2023/07/Serpule.jpg,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40637,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-41,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-41/,,,,https://biolit.fr/wp-content/uploads/2023/07/Talitrus saltator.jpg,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40639,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-42,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-42/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nassarius reticulatus.PNG,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40640,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-43,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-43/,,,,https://biolit.fr/wp-content/uploads/2023/07/mytilus edulis-scaled.jpg,,FALSE, +N1,59336,sortie-95e16bd2-cd19-45bd-bcca-20289f6bfa9e,https://biolit.fr/sorties/sortie-95e16bd2-cd19-45bd-bcca-20289f6bfa9e/,Phil,,04/11/2019,13.0:15,13.0000000,47.794802000000,-4.213930000000,,Lesconil - Finistère,40641,observation-95e16bd2-cd19-45bd-bcca-20289f6bfa9e,https://biolit.fr/observations/observation-95e16bd2-cd19-45bd-bcca-20289f6bfa9e/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190411_131938.jpg,,FALSE, +N1,59336,sortie-95e16bd2-cd19-45bd-bcca-20289f6bfa9e,https://biolit.fr/sorties/sortie-95e16bd2-cd19-45bd-bcca-20289f6bfa9e/,Phil,,04/11/2019,13.0:15,13.0000000,47.794802000000,-4.213930000000,,Lesconil - Finistère,40643,observation-95e16bd2-cd19-45bd-bcca-20289f6bfa9e-2,https://biolit.fr/observations/observation-95e16bd2-cd19-45bd-bcca-20289f6bfa9e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190411_131943.jpg,,FALSE, +N1,59336,sortie-95e16bd2-cd19-45bd-bcca-20289f6bfa9e,https://biolit.fr/sorties/sortie-95e16bd2-cd19-45bd-bcca-20289f6bfa9e/,Phil,,04/11/2019,13.0:15,13.0000000,47.794802000000,-4.213930000000,,Lesconil - Finistère,40645,observation-95e16bd2-cd19-45bd-bcca-20289f6bfa9e-3,https://biolit.fr/observations/observation-95e16bd2-cd19-45bd-bcca-20289f6bfa9e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190411_131959.jpg,,FALSE, +N1,59336,sortie-95e16bd2-cd19-45bd-bcca-20289f6bfa9e,https://biolit.fr/sorties/sortie-95e16bd2-cd19-45bd-bcca-20289f6bfa9e/,Phil,,04/11/2019,13.0:15,13.0000000,47.794802000000,-4.213930000000,,Lesconil - Finistère,40647,observation-95e16bd2-cd19-45bd-bcca-20289f6bfa9e-4,https://biolit.fr/observations/observation-95e16bd2-cd19-45bd-bcca-20289f6bfa9e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190411_132026.jpg,,FALSE, +N1,59336,sortie-95e16bd2-cd19-45bd-bcca-20289f6bfa9e,https://biolit.fr/sorties/sortie-95e16bd2-cd19-45bd-bcca-20289f6bfa9e/,Phil,,04/11/2019,13.0:15,13.0000000,47.794802000000,-4.213930000000,,Lesconil - Finistère,40649,observation-95e16bd2-cd19-45bd-bcca-20289f6bfa9e-5,https://biolit.fr/observations/observation-95e16bd2-cd19-45bd-bcca-20289f6bfa9e-5/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20190411_132040.jpg,,TRUE, +N1,59337,sortie-016d23d1-5d42-484f-b05b-489539c42df5,https://biolit.fr/sorties/sortie-016d23d1-5d42-484f-b05b-489539c42df5/,Phil,,05/05/2019,10.0000000,11.0000000,47.798749000000,-4.18058900000,,Loctudy - Finistère,40651,observation-016d23d1-5d42-484f-b05b-489539c42df5,https://biolit.fr/observations/observation-016d23d1-5d42-484f-b05b-489539c42df5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20190505_105130.jpg,,TRUE, +N1,59337,sortie-016d23d1-5d42-484f-b05b-489539c42df5,https://biolit.fr/sorties/sortie-016d23d1-5d42-484f-b05b-489539c42df5/,Phil,,05/05/2019,10.0000000,11.0000000,47.798749000000,-4.18058900000,,Loctudy - Finistère,40653,observation-016d23d1-5d42-484f-b05b-489539c42df5-2,https://biolit.fr/observations/observation-016d23d1-5d42-484f-b05b-489539c42df5-2/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20190505_105139.jpg,,TRUE, +N1,59337,sortie-016d23d1-5d42-484f-b05b-489539c42df5,https://biolit.fr/sorties/sortie-016d23d1-5d42-484f-b05b-489539c42df5/,Phil,,05/05/2019,10.0000000,11.0000000,47.798749000000,-4.18058900000,,Loctudy - Finistère,40655,observation-016d23d1-5d42-484f-b05b-489539c42df5-3,https://biolit.fr/observations/observation-016d23d1-5d42-484f-b05b-489539c42df5-3/,Aplidium turbinatum,Flocon pédonculé trompette,,https://biolit.fr/wp-content/uploads/2023/07/20190505_105257.jpg,,TRUE, +N1,59337,sortie-016d23d1-5d42-484f-b05b-489539c42df5,https://biolit.fr/sorties/sortie-016d23d1-5d42-484f-b05b-489539c42df5/,Phil,,05/05/2019,10.0000000,11.0000000,47.798749000000,-4.18058900000,,Loctudy - Finistère,40657,observation-016d23d1-5d42-484f-b05b-489539c42df5-4,https://biolit.fr/observations/observation-016d23d1-5d42-484f-b05b-489539c42df5-4/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20190505_105327.jpg,,TRUE, +N1,59337,sortie-016d23d1-5d42-484f-b05b-489539c42df5,https://biolit.fr/sorties/sortie-016d23d1-5d42-484f-b05b-489539c42df5/,Phil,,05/05/2019,10.0000000,11.0000000,47.798749000000,-4.18058900000,,Loctudy - Finistère,40659,observation-016d23d1-5d42-484f-b05b-489539c42df5-5,https://biolit.fr/observations/observation-016d23d1-5d42-484f-b05b-489539c42df5-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_105422-scaled.jpg,,FALSE, +N1,59338,sortie-70867b1d-3bee-4cba-b386-716a981fa4af,https://biolit.fr/sorties/sortie-70867b1d-3bee-4cba-b386-716a981fa4af/,Epi Pidou,,5/31/2019 0:00,15.0000000,17.0000000,51.049308000000,2.381141000000,,leffrinckoucke,40661,observation-70867b1d-3bee-4cba-b386-716a981fa4af,https://biolit.fr/observations/observation-70867b1d-3bee-4cba-b386-716a981fa4af/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1107_0-scaled.jpg,,FALSE, +N1,59339,sortie-6e2db40b-c154-4095-bea0-49d954e46aa0,https://biolit.fr/sorties/sortie-6e2db40b-c154-4095-bea0-49d954e46aa0/,Epi Pidou,,5/31/2019 0:00,15.0000000,17.0000000,51.049524000000,2.382171000000,,Leffrinckoucke,40663,observation-6e2db40b-c154-4095-bea0-49d954e46aa0,https://biolit.fr/observations/observation-6e2db40b-c154-4095-bea0-49d954e46aa0/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1110-scaled.jpg,,FALSE, +N1,59340,sortie-f9e25857-03d0-42cb-a63e-0b08b9a0e9da,https://biolit.fr/sorties/sortie-f9e25857-03d0-42cb-a63e-0b08b9a0e9da/,Baudouin Vynck,,5/22/2019 0:00,10.0000000,10.000005,51.056551000000,2.424700000000,,plage de dunkerque ,40664,observation-f9e25857-03d0-42cb-a63e-0b08b9a0e9da,https://biolit.fr/observations/observation-f9e25857-03d0-42cb-a63e-0b08b9a0e9da/,Loligo spp.,Ponte de Calmar,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/meduse_baudouin-scaled.jpg,,TRUE, +N1,59341,sortie-d555798e-737d-4108-9184-b6559b4ecdef,https://biolit.fr/sorties/sortie-d555798e-737d-4108-9184-b6559b4ecdef/,Phil,,05/05/2019,10.0000000,10.0000000,47.79976600000,-4.181040000000,,Loctudy - Finistère,40666,observation-d555798e-737d-4108-9184-b6559b4ecdef,https://biolit.fr/observations/observation-d555798e-737d-4108-9184-b6559b4ecdef/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_104954.jpg,,FALSE, +N1,59341,sortie-d555798e-737d-4108-9184-b6559b4ecdef,https://biolit.fr/sorties/sortie-d555798e-737d-4108-9184-b6559b4ecdef/,Phil,,05/05/2019,10.0000000,10.0000000,47.79976600000,-4.181040000000,,Loctudy - Finistère,40668,observation-d555798e-737d-4108-9184-b6559b4ecdef-2,https://biolit.fr/observations/observation-d555798e-737d-4108-9184-b6559b4ecdef-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_104845.jpg,,FALSE, +N1,59341,sortie-d555798e-737d-4108-9184-b6559b4ecdef,https://biolit.fr/sorties/sortie-d555798e-737d-4108-9184-b6559b4ecdef/,Phil,,05/05/2019,10.0000000,10.0000000,47.79976600000,-4.181040000000,,Loctudy - Finistère,40670,observation-d555798e-737d-4108-9184-b6559b4ecdef-3,https://biolit.fr/observations/observation-d555798e-737d-4108-9184-b6559b4ecdef-3/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20190505_104834.jpg,,TRUE, +N1,59341,sortie-d555798e-737d-4108-9184-b6559b4ecdef,https://biolit.fr/sorties/sortie-d555798e-737d-4108-9184-b6559b4ecdef/,Phil,,05/05/2019,10.0000000,10.0000000,47.79976600000,-4.181040000000,,Loctudy - Finistère,40672,observation-d555798e-737d-4108-9184-b6559b4ecdef-4,https://biolit.fr/observations/observation-d555798e-737d-4108-9184-b6559b4ecdef-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_104809.jpg,,FALSE, +N1,59341,sortie-d555798e-737d-4108-9184-b6559b4ecdef,https://biolit.fr/sorties/sortie-d555798e-737d-4108-9184-b6559b4ecdef/,Phil,,05/05/2019,10.0000000,10.0000000,47.79976600000,-4.181040000000,,Loctudy - Finistère,40674,observation-d555798e-737d-4108-9184-b6559b4ecdef-5,https://biolit.fr/observations/observation-d555798e-737d-4108-9184-b6559b4ecdef-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_104758.jpg,,FALSE, +N1,59341,sortie-d555798e-737d-4108-9184-b6559b4ecdef,https://biolit.fr/sorties/sortie-d555798e-737d-4108-9184-b6559b4ecdef/,Phil,,05/05/2019,10.0000000,10.0000000,47.79976600000,-4.181040000000,,Loctudy - Finistère,40676,observation-d555798e-737d-4108-9184-b6559b4ecdef-6,https://biolit.fr/observations/observation-d555798e-737d-4108-9184-b6559b4ecdef-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_104208.jpg,,FALSE, +N1,59342,sortie-6065dc79-c640-4416-9b9e-1cebff645a3a,https://biolit.fr/sorties/sortie-6065dc79-c640-4416-9b9e-1cebff645a3a/,Phil,,04/11/2019,13.000005,13.0000000,47.794888000000,-4.213909000000,,Lesconil - Finistère,40678,observation-6065dc79-c640-4416-9b9e-1cebff645a3a,https://biolit.fr/observations/observation-6065dc79-c640-4416-9b9e-1cebff645a3a/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190411_131841.jpg,,FALSE, +N1,59342,sortie-6065dc79-c640-4416-9b9e-1cebff645a3a,https://biolit.fr/sorties/sortie-6065dc79-c640-4416-9b9e-1cebff645a3a/,Phil,,04/11/2019,13.000005,13.0000000,47.794888000000,-4.213909000000,,Lesconil - Finistère,40680,observation-6065dc79-c640-4416-9b9e-1cebff645a3a-2,https://biolit.fr/observations/observation-6065dc79-c640-4416-9b9e-1cebff645a3a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190411_131641.jpg,,FALSE, +N1,59343,sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa,https://biolit.fr/sorties/sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa/,Phil,,05/05/2019,10.0:35,10.0:45,47.799147000000,-4.180225000000,,Loctudy - Finistère,40682,observation-d788fb5e-ab24-45a5-bd11-2fd910195daa,https://biolit.fr/observations/observation-d788fb5e-ab24-45a5-bd11-2fd910195daa/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_104151.jpg,,FALSE, +N1,59343,sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa,https://biolit.fr/sorties/sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa/,Phil,,05/05/2019,10.0:35,10.0:45,47.799147000000,-4.180225000000,,Loctudy - Finistère,40684,observation-d788fb5e-ab24-45a5-bd11-2fd910195daa-2,https://biolit.fr/observations/observation-d788fb5e-ab24-45a5-bd11-2fd910195daa-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_104146.jpg,,FALSE, +N1,59343,sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa,https://biolit.fr/sorties/sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa/,Phil,,05/05/2019,10.0:35,10.0:45,47.799147000000,-4.180225000000,,Loctudy - Finistère,40686,observation-d788fb5e-ab24-45a5-bd11-2fd910195daa-3,https://biolit.fr/observations/observation-d788fb5e-ab24-45a5-bd11-2fd910195daa-3/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190505_104137.jpg,,TRUE, +N1,59343,sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa,https://biolit.fr/sorties/sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa/,Phil,,05/05/2019,10.0:35,10.0:45,47.799147000000,-4.180225000000,,Loctudy - Finistère,40688,observation-d788fb5e-ab24-45a5-bd11-2fd910195daa-4,https://biolit.fr/observations/observation-d788fb5e-ab24-45a5-bd11-2fd910195daa-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_104124.jpg,,FALSE, +N1,59343,sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa,https://biolit.fr/sorties/sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa/,Phil,,05/05/2019,10.0:35,10.0:45,47.799147000000,-4.180225000000,,Loctudy - Finistère,40690,observation-d788fb5e-ab24-45a5-bd11-2fd910195daa-5,https://biolit.fr/observations/observation-d788fb5e-ab24-45a5-bd11-2fd910195daa-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_104114.jpg,,FALSE, +N1,59343,sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa,https://biolit.fr/sorties/sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa/,Phil,,05/05/2019,10.0:35,10.0:45,47.799147000000,-4.180225000000,,Loctudy - Finistère,40692,observation-d788fb5e-ab24-45a5-bd11-2fd910195daa-6,https://biolit.fr/observations/observation-d788fb5e-ab24-45a5-bd11-2fd910195daa-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_104106.jpg,,FALSE, +N1,59343,sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa,https://biolit.fr/sorties/sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa/,Phil,,05/05/2019,10.0:35,10.0:45,47.799147000000,-4.180225000000,,Loctudy - Finistère,40694,observation-d788fb5e-ab24-45a5-bd11-2fd910195daa-7,https://biolit.fr/observations/observation-d788fb5e-ab24-45a5-bd11-2fd910195daa-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_104102.jpg,,FALSE, +N1,59343,sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa,https://biolit.fr/sorties/sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa/,Phil,,05/05/2019,10.0:35,10.0:45,47.799147000000,-4.180225000000,,Loctudy - Finistère,40696,observation-d788fb5e-ab24-45a5-bd11-2fd910195daa-8,https://biolit.fr/observations/observation-d788fb5e-ab24-45a5-bd11-2fd910195daa-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_104057.jpg,,FALSE, +N1,59343,sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa,https://biolit.fr/sorties/sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa/,Phil,,05/05/2019,10.0:35,10.0:45,47.799147000000,-4.180225000000,,Loctudy - Finistère,40698,observation-d788fb5e-ab24-45a5-bd11-2fd910195daa-9,https://biolit.fr/observations/observation-d788fb5e-ab24-45a5-bd11-2fd910195daa-9/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20190505_103754.jpg,,TRUE, +N1,59344,sortie-2c531398-89c9-4447-a92f-b5eeb1a68615,https://biolit.fr/sorties/sortie-2c531398-89c9-4447-a92f-b5eeb1a68615/,Phil,,7/22/2018 0:00,14.0:45,14.0000000,47.708233000000,-3.993089000000,,Fouesnant - Finistère,40700,observation-2c531398-89c9-4447-a92f-b5eeb1a68615,https://biolit.fr/observations/observation-2c531398-89c9-4447-a92f-b5eeb1a68615/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110999.JPG,,FALSE, +N1,59344,sortie-2c531398-89c9-4447-a92f-b5eeb1a68615,https://biolit.fr/sorties/sortie-2c531398-89c9-4447-a92f-b5eeb1a68615/,Phil,,7/22/2018 0:00,14.0:45,14.0000000,47.708233000000,-3.993089000000,,Fouesnant - Finistère,40702,observation-2c531398-89c9-4447-a92f-b5eeb1a68615-2,https://biolit.fr/observations/observation-2c531398-89c9-4447-a92f-b5eeb1a68615-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120001.JPG,,FALSE, +N1,59344,sortie-2c531398-89c9-4447-a92f-b5eeb1a68615,https://biolit.fr/sorties/sortie-2c531398-89c9-4447-a92f-b5eeb1a68615/,Phil,,7/22/2018 0:00,14.0:45,14.0000000,47.708233000000,-3.993089000000,,Fouesnant - Finistère,40704,observation-2c531398-89c9-4447-a92f-b5eeb1a68615-3,https://biolit.fr/observations/observation-2c531398-89c9-4447-a92f-b5eeb1a68615-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120004.JPG,,FALSE, +N1,59344,sortie-2c531398-89c9-4447-a92f-b5eeb1a68615,https://biolit.fr/sorties/sortie-2c531398-89c9-4447-a92f-b5eeb1a68615/,Phil,,7/22/2018 0:00,14.0:45,14.0000000,47.708233000000,-3.993089000000,,Fouesnant - Finistère,40706,observation-2c531398-89c9-4447-a92f-b5eeb1a68615-4,https://biolit.fr/observations/observation-2c531398-89c9-4447-a92f-b5eeb1a68615-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120006.JPG,,FALSE, +N1,59344,sortie-2c531398-89c9-4447-a92f-b5eeb1a68615,https://biolit.fr/sorties/sortie-2c531398-89c9-4447-a92f-b5eeb1a68615/,Phil,,7/22/2018 0:00,14.0:45,14.0000000,47.708233000000,-3.993089000000,,Fouesnant - Finistère,40708,observation-2c531398-89c9-4447-a92f-b5eeb1a68615-5,https://biolit.fr/observations/observation-2c531398-89c9-4447-a92f-b5eeb1a68615-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120007.JPG,,FALSE, +N1,59345,sortie-0437da57-5100-4416-bb17-b219cbac7684,https://biolit.fr/sorties/sortie-0437da57-5100-4416-bb17-b219cbac7684/,Phil,,05/05/2019,10.0000000,10.0000000,47.799477000000,-4.179731000000,,Loctudy - Finistère,40710,observation-0437da57-5100-4416-bb17-b219cbac7684,https://biolit.fr/observations/observation-0437da57-5100-4416-bb17-b219cbac7684/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20190505_103238.jpg,,TRUE, +N1,59345,sortie-0437da57-5100-4416-bb17-b219cbac7684,https://biolit.fr/sorties/sortie-0437da57-5100-4416-bb17-b219cbac7684/,Phil,,05/05/2019,10.0000000,10.0000000,47.799477000000,-4.179731000000,,Loctudy - Finistère,40712,observation-0437da57-5100-4416-bb17-b219cbac7684-2,https://biolit.fr/observations/observation-0437da57-5100-4416-bb17-b219cbac7684-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_103254.jpg,,FALSE, +N1,59345,sortie-0437da57-5100-4416-bb17-b219cbac7684,https://biolit.fr/sorties/sortie-0437da57-5100-4416-bb17-b219cbac7684/,Phil,,05/05/2019,10.0000000,10.0000000,47.799477000000,-4.179731000000,,Loctudy - Finistère,40714,observation-0437da57-5100-4416-bb17-b219cbac7684-3,https://biolit.fr/observations/observation-0437da57-5100-4416-bb17-b219cbac7684-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_103258.jpg,,FALSE, +N1,59345,sortie-0437da57-5100-4416-bb17-b219cbac7684,https://biolit.fr/sorties/sortie-0437da57-5100-4416-bb17-b219cbac7684/,Phil,,05/05/2019,10.0000000,10.0000000,47.799477000000,-4.179731000000,,Loctudy - Finistère,40716,observation-0437da57-5100-4416-bb17-b219cbac7684-4,https://biolit.fr/observations/observation-0437da57-5100-4416-bb17-b219cbac7684-4/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20190505_103611.jpg,,TRUE, +N1,59345,sortie-0437da57-5100-4416-bb17-b219cbac7684,https://biolit.fr/sorties/sortie-0437da57-5100-4416-bb17-b219cbac7684/,Phil,,05/05/2019,10.0000000,10.0000000,47.799477000000,-4.179731000000,,Loctudy - Finistère,40718,observation-0437da57-5100-4416-bb17-b219cbac7684-5,https://biolit.fr/observations/observation-0437da57-5100-4416-bb17-b219cbac7684-5/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20190505_103618.jpg,,TRUE, +N1,59345,sortie-0437da57-5100-4416-bb17-b219cbac7684,https://biolit.fr/sorties/sortie-0437da57-5100-4416-bb17-b219cbac7684/,Phil,,05/05/2019,10.0000000,10.0000000,47.799477000000,-4.179731000000,,Loctudy - Finistère,40720,observation-0437da57-5100-4416-bb17-b219cbac7684-6,https://biolit.fr/observations/observation-0437da57-5100-4416-bb17-b219cbac7684-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_103643.jpg,,FALSE, +N1,59346,sortie-88bc4e10-857b-4ff4-9c33-84adba84906c,https://biolit.fr/sorties/sortie-88bc4e10-857b-4ff4-9c33-84adba84906c/,Céline,,5/16/2019 0:00,19.0000000,19.0000000,42.6074980,3.0393830,,Saint cyprien,40722,observation-88bc4e10-857b-4ff4-9c33-84adba84906c,https://biolit.fr/observations/observation-88bc4e10-857b-4ff4-9c33-84adba84906c/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_0306_0-scaled.jpg,,TRUE, +N1,59347,sortie-f0dcd8b4-82f1-466b-8060-dafaf2217a82,https://biolit.fr/sorties/sortie-f0dcd8b4-82f1-466b-8060-dafaf2217a82/,Laurent Debas,,5/16/2019 0:00,20.0000000,20.0000000,42.60731000,3.03337300,,Saint Cyprien,40724,observation-f0dcd8b4-82f1-466b-8060-dafaf2217a82,https://biolit.fr/observations/observation-f0dcd8b4-82f1-466b-8060-dafaf2217a82/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/image_121-scaled.jpg,,TRUE, +N1,59348,sortie-e8bb09df-09be-44d1-b069-dd315e395cc5,https://biolit.fr/sorties/sortie-e8bb09df-09be-44d1-b069-dd315e395cc5/,Phil,,05/05/2019,10.0000000,10.0:35,47.799529000000,-4.180654000000,,Loctudy - Finistère,40726,observation-e8bb09df-09be-44d1-b069-dd315e395cc5,https://biolit.fr/observations/observation-e8bb09df-09be-44d1-b069-dd315e395cc5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102959.jpg,,FALSE, +N1,59348,sortie-e8bb09df-09be-44d1-b069-dd315e395cc5,https://biolit.fr/sorties/sortie-e8bb09df-09be-44d1-b069-dd315e395cc5/,Phil,,05/05/2019,10.0000000,10.0:35,47.799529000000,-4.180654000000,,Loctudy - Finistère,40728,observation-e8bb09df-09be-44d1-b069-dd315e395cc5-2,https://biolit.fr/observations/observation-e8bb09df-09be-44d1-b069-dd315e395cc5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_103004.jpg,,FALSE, +N1,59348,sortie-e8bb09df-09be-44d1-b069-dd315e395cc5,https://biolit.fr/sorties/sortie-e8bb09df-09be-44d1-b069-dd315e395cc5/,Phil,,05/05/2019,10.0000000,10.0:35,47.799529000000,-4.180654000000,,Loctudy - Finistère,40730,observation-e8bb09df-09be-44d1-b069-dd315e395cc5-3,https://biolit.fr/observations/observation-e8bb09df-09be-44d1-b069-dd315e395cc5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_103021.jpg,,FALSE, +N1,59348,sortie-e8bb09df-09be-44d1-b069-dd315e395cc5,https://biolit.fr/sorties/sortie-e8bb09df-09be-44d1-b069-dd315e395cc5/,Phil,,05/05/2019,10.0000000,10.0:35,47.799529000000,-4.180654000000,,Loctudy - Finistère,40732,observation-e8bb09df-09be-44d1-b069-dd315e395cc5-4,https://biolit.fr/observations/observation-e8bb09df-09be-44d1-b069-dd315e395cc5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_103204.jpg,,FALSE, +N1,59348,sortie-e8bb09df-09be-44d1-b069-dd315e395cc5,https://biolit.fr/sorties/sortie-e8bb09df-09be-44d1-b069-dd315e395cc5/,Phil,,05/05/2019,10.0000000,10.0:35,47.799529000000,-4.180654000000,,Loctudy - Finistère,40734,observation-e8bb09df-09be-44d1-b069-dd315e395cc5-5,https://biolit.fr/observations/observation-e8bb09df-09be-44d1-b069-dd315e395cc5-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_103208.jpg,,FALSE, +N1,59348,sortie-e8bb09df-09be-44d1-b069-dd315e395cc5,https://biolit.fr/sorties/sortie-e8bb09df-09be-44d1-b069-dd315e395cc5/,Phil,,05/05/2019,10.0000000,10.0:35,47.799529000000,-4.180654000000,,Loctudy - Finistère,40736,observation-e8bb09df-09be-44d1-b069-dd315e395cc5-6,https://biolit.fr/observations/observation-e8bb09df-09be-44d1-b069-dd315e395cc5-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_103214.jpg,,FALSE, +N1,59349,sortie-c7758947-8efd-42c5-9c99-eaee78a59fd1,https://biolit.fr/sorties/sortie-c7758947-8efd-42c5-9c99-eaee78a59fd1/,Françoise,,2/16/2006 0:00,17.0000000,19.0000000,49.333468000000,-0.400906000000,,St Aubin sur Mer,40738,observation-c7758947-8efd-42c5-9c99-eaee78a59fd1,https://biolit.fr/observations/observation-c7758947-8efd-42c5-9c99-eaee78a59fd1/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/AMANDE.JPG,,TRUE, +N1,59349,sortie-c7758947-8efd-42c5-9c99-eaee78a59fd1,https://biolit.fr/sorties/sortie-c7758947-8efd-42c5-9c99-eaee78a59fd1/,Françoise,,2/16/2006 0:00,17.0000000,19.0000000,49.333468000000,-0.400906000000,,St Aubin sur Mer,40740,observation-c7758947-8efd-42c5-9c99-eaee78a59fd1-2,https://biolit.fr/observations/observation-c7758947-8efd-42c5-9c99-eaee78a59fd1-2/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crépidules_0.JPG,,TRUE, +N1,59349,sortie-c7758947-8efd-42c5-9c99-eaee78a59fd1,https://biolit.fr/sorties/sortie-c7758947-8efd-42c5-9c99-eaee78a59fd1/,Françoise,,2/16/2006 0:00,17.0000000,19.0000000,49.333468000000,-0.400906000000,,St Aubin sur Mer,40742,observation-c7758947-8efd-42c5-9c99-eaee78a59fd1-3,https://biolit.fr/observations/observation-c7758947-8efd-42c5-9c99-eaee78a59fd1-3/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/meduse-scaled.jpg,,TRUE, +N1,59349,sortie-c7758947-8efd-42c5-9c99-eaee78a59fd1,https://biolit.fr/sorties/sortie-c7758947-8efd-42c5-9c99-eaee78a59fd1/,Françoise,,2/16/2006 0:00,17.0000000,19.0000000,49.333468000000,-0.400906000000,,St Aubin sur Mer,40743,observation-c7758947-8efd-42c5-9c99-eaee78a59fd1-4,https://biolit.fr/observations/observation-c7758947-8efd-42c5-9c99-eaee78a59fd1-4/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/Oeufs de buccin.JPG,,TRUE, +N1,59349,sortie-c7758947-8efd-42c5-9c99-eaee78a59fd1,https://biolit.fr/sorties/sortie-c7758947-8efd-42c5-9c99-eaee78a59fd1/,Françoise,,2/16/2006 0:00,17.0000000,19.0000000,49.333468000000,-0.400906000000,,St Aubin sur Mer,40745,observation-c7758947-8efd-42c5-9c99-eaee78a59fd1-5,https://biolit.fr/observations/observation-c7758947-8efd-42c5-9c99-eaee78a59fd1-5/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/Oeuf de roussette.PNG,,TRUE, +N1,59349,sortie-c7758947-8efd-42c5-9c99-eaee78a59fd1,https://biolit.fr/sorties/sortie-c7758947-8efd-42c5-9c99-eaee78a59fd1/,Françoise,,2/16/2006 0:00,17.0000000,19.0000000,49.333468000000,-0.400906000000,,St Aubin sur Mer,40746,observation-c7758947-8efd-42c5-9c99-eaee78a59fd1-6,https://biolit.fr/observations/observation-c7758947-8efd-42c5-9c99-eaee78a59fd1-6/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Oeufs de seiche-rotated.jpg,,TRUE, +N1,59349,sortie-c7758947-8efd-42c5-9c99-eaee78a59fd1,https://biolit.fr/sorties/sortie-c7758947-8efd-42c5-9c99-eaee78a59fd1/,Françoise,,2/16/2006 0:00,17.0000000,19.0000000,49.333468000000,-0.400906000000,,St Aubin sur Mer,40747,observation-c7758947-8efd-42c5-9c99-eaee78a59fd1-7,https://biolit.fr/observations/observation-c7758947-8efd-42c5-9c99-eaee78a59fd1-7/,Dicentrarchus labrax,Bar commun loup,,https://biolit.fr/wp-content/uploads/2023/07/P1550461-scaled.jpg,,TRUE, +N1,59349,sortie-c7758947-8efd-42c5-9c99-eaee78a59fd1,https://biolit.fr/sorties/sortie-c7758947-8efd-42c5-9c99-eaee78a59fd1/,Françoise,,2/16/2006 0:00,17.0000000,19.0000000,49.333468000000,-0.400906000000,,St Aubin sur Mer,40749,observation-c7758947-8efd-42c5-9c99-eaee78a59fd1-8,https://biolit.fr/observations/observation-c7758947-8efd-42c5-9c99-eaee78a59fd1-8/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Serpule.jpg,,TRUE, +N1,59350,sortie-6d9b381a-58ba-4be4-b771-7fd680ca0153,https://biolit.fr/sorties/sortie-6d9b381a-58ba-4be4-b771-7fd680ca0153/,Françoise,,3/22/2019 0:00,17.0000000,19.0000000,49.335468000000,-0.397610000000,,St Aubin sur Mer,40750,observation-6d9b381a-58ba-4be4-b771-7fd680ca0153,https://biolit.fr/observations/observation-6d9b381a-58ba-4be4-b771-7fd680ca0153/,,,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina (2)_opt.jpg,,FALSE, +N1,59350,sortie-6d9b381a-58ba-4be4-b771-7fd680ca0153,https://biolit.fr/sorties/sortie-6d9b381a-58ba-4be4-b771-7fd680ca0153/,Françoise,,3/22/2019 0:00,17.0000000,19.0000000,49.335468000000,-0.397610000000,,St Aubin sur Mer,40752,observation-6d9b381a-58ba-4be4-b771-7fd680ca0153-2,https://biolit.fr/observations/observation-6d9b381a-58ba-4be4-b771-7fd680ca0153-2/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asteria rubens (2)_opt.jpg,,TRUE, +N1,59350,sortie-6d9b381a-58ba-4be4-b771-7fd680ca0153,https://biolit.fr/sorties/sortie-6d9b381a-58ba-4be4-b771-7fd680ca0153/,Françoise,,3/22/2019 0:00,17.0000000,19.0000000,49.335468000000,-0.397610000000,,St Aubin sur Mer,40754,observation-6d9b381a-58ba-4be4-b771-7fd680ca0153-3,https://biolit.fr/observations/observation-6d9b381a-58ba-4be4-b771-7fd680ca0153-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_opt.jpg,,TRUE, +N1,59350,sortie-6d9b381a-58ba-4be4-b771-7fd680ca0153,https://biolit.fr/sorties/sortie-6d9b381a-58ba-4be4-b771-7fd680ca0153/,Françoise,,3/22/2019 0:00,17.0000000,19.0000000,49.335468000000,-0.397610000000,,St Aubin sur Mer,40756,observation-6d9b381a-58ba-4be4-b771-7fd680ca0153-4,https://biolit.fr/observations/observation-6d9b381a-58ba-4be4-b771-7fd680ca0153-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Oeufs de calmar_opt.jpg,,FALSE, +N1,59351,sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c,https://biolit.fr/sorties/sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c/,Phil,,05/05/2019,10.0:25,10.0000000,47.800076000000,-4.179489000000,,Loctudy - Finistère,40758,observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c,https://biolit.fr/observations/observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102630.jpg,,FALSE, +N1,59351,sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c,https://biolit.fr/sorties/sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c/,Phil,,05/05/2019,10.0:25,10.0000000,47.800076000000,-4.179489000000,,Loctudy - Finistère,40760,observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c-2,https://biolit.fr/observations/observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102652.jpg,,FALSE, +N1,59351,sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c,https://biolit.fr/sorties/sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c/,Phil,,05/05/2019,10.0:25,10.0000000,47.800076000000,-4.179489000000,,Loctudy - Finistère,40762,observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c-3,https://biolit.fr/observations/observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102705.jpg,,FALSE, +N1,59351,sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c,https://biolit.fr/sorties/sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c/,Phil,,05/05/2019,10.0:25,10.0000000,47.800076000000,-4.179489000000,,Loctudy - Finistère,40764,observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c-4,https://biolit.fr/observations/observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102717.jpg,,FALSE, +N1,59351,sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c,https://biolit.fr/sorties/sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c/,Phil,,05/05/2019,10.0:25,10.0000000,47.800076000000,-4.179489000000,,Loctudy - Finistère,40766,observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c-5,https://biolit.fr/observations/observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102732.jpg,,FALSE, +N1,59351,sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c,https://biolit.fr/sorties/sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c/,Phil,,05/05/2019,10.0:25,10.0000000,47.800076000000,-4.179489000000,,Loctudy - Finistère,40768,observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c-6,https://biolit.fr/observations/observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102746.jpg,,FALSE, +N1,59351,sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c,https://biolit.fr/sorties/sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c/,Phil,,05/05/2019,10.0:25,10.0000000,47.800076000000,-4.179489000000,,Loctudy - Finistère,40770,observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c-7,https://biolit.fr/observations/observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102906.jpg,,FALSE, +N1,59351,sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c,https://biolit.fr/sorties/sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c/,Phil,,05/05/2019,10.0:25,10.0000000,47.800076000000,-4.179489000000,,Loctudy - Finistère,40772,observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c-8,https://biolit.fr/observations/observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102914.jpg,,FALSE, +N1,59351,sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c,https://biolit.fr/sorties/sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c/,Phil,,05/05/2019,10.0:25,10.0000000,47.800076000000,-4.179489000000,,Loctudy - Finistère,40774,observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c-9,https://biolit.fr/observations/observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102911.jpg,,FALSE, +N1,59352,sortie-21150c52-a43a-4fc1-8bb9-cf2689df5193,https://biolit.fr/sorties/sortie-21150c52-a43a-4fc1-8bb9-cf2689df5193/,Phil,,7/16/2018 0:00,13.0000000,13.0:45,47.807125000000,-3.71301600000,,Moëlan-sur-Mer - Finistère,40776,observation-21150c52-a43a-4fc1-8bb9-cf2689df5193,https://biolit.fr/observations/observation-21150c52-a43a-4fc1-8bb9-cf2689df5193/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110839.JPG,,FALSE, +N1,59352,sortie-21150c52-a43a-4fc1-8bb9-cf2689df5193,https://biolit.fr/sorties/sortie-21150c52-a43a-4fc1-8bb9-cf2689df5193/,Phil,,7/16/2018 0:00,13.0000000,13.0:45,47.807125000000,-3.71301600000,,Moëlan-sur-Mer - Finistère,40778,observation-21150c52-a43a-4fc1-8bb9-cf2689df5193-2,https://biolit.fr/observations/observation-21150c52-a43a-4fc1-8bb9-cf2689df5193-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110842.JPG,,FALSE, +N1,59352,sortie-21150c52-a43a-4fc1-8bb9-cf2689df5193,https://biolit.fr/sorties/sortie-21150c52-a43a-4fc1-8bb9-cf2689df5193/,Phil,,7/16/2018 0:00,13.0000000,13.0:45,47.807125000000,-3.71301600000,,Moëlan-sur-Mer - Finistère,40780,observation-21150c52-a43a-4fc1-8bb9-cf2689df5193-3,https://biolit.fr/observations/observation-21150c52-a43a-4fc1-8bb9-cf2689df5193-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110836.JPG,,FALSE, +N1,59352,sortie-21150c52-a43a-4fc1-8bb9-cf2689df5193,https://biolit.fr/sorties/sortie-21150c52-a43a-4fc1-8bb9-cf2689df5193/,Phil,,7/16/2018 0:00,13.0000000,13.0:45,47.807125000000,-3.71301600000,,Moëlan-sur-Mer - Finistère,40782,observation-21150c52-a43a-4fc1-8bb9-cf2689df5193-4,https://biolit.fr/observations/observation-21150c52-a43a-4fc1-8bb9-cf2689df5193-4/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1110845.JPG,,TRUE, +N1,59352,sortie-21150c52-a43a-4fc1-8bb9-cf2689df5193,https://biolit.fr/sorties/sortie-21150c52-a43a-4fc1-8bb9-cf2689df5193/,Phil,,7/16/2018 0:00,13.0000000,13.0:45,47.807125000000,-3.71301600000,,Moëlan-sur-Mer - Finistère,40784,observation-21150c52-a43a-4fc1-8bb9-cf2689df5193-5,https://biolit.fr/observations/observation-21150c52-a43a-4fc1-8bb9-cf2689df5193-5/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/P1110848_0.JPG,,TRUE, +N1,59352,sortie-21150c52-a43a-4fc1-8bb9-cf2689df5193,https://biolit.fr/sorties/sortie-21150c52-a43a-4fc1-8bb9-cf2689df5193/,Phil,,7/16/2018 0:00,13.0000000,13.0:45,47.807125000000,-3.71301600000,,Moëlan-sur-Mer - Finistère,40786,observation-21150c52-a43a-4fc1-8bb9-cf2689df5193-6,https://biolit.fr/observations/observation-21150c52-a43a-4fc1-8bb9-cf2689df5193-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110850_1.JPG,,FALSE, +N1,59352,sortie-21150c52-a43a-4fc1-8bb9-cf2689df5193,https://biolit.fr/sorties/sortie-21150c52-a43a-4fc1-8bb9-cf2689df5193/,Phil,,7/16/2018 0:00,13.0000000,13.0:45,47.807125000000,-3.71301600000,,Moëlan-sur-Mer - Finistère,40788,observation-21150c52-a43a-4fc1-8bb9-cf2689df5193-7,https://biolit.fr/observations/observation-21150c52-a43a-4fc1-8bb9-cf2689df5193-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110854_1.JPG,,FALSE, +N1,59353,sortie-68b6edf2-5351-483d-8c2f-d7f6141d8fdf,https://biolit.fr/sorties/sortie-68b6edf2-5351-483d-8c2f-d7f6141d8fdf/,Phil,,12/26/2018 0:00,14.0000000,14.0:55,47.800041000000,-4.180933000000,,Loctudy - Finistère,40790,observation-68b6edf2-5351-483d-8c2f-d7f6141d8fdf,https://biolit.fr/observations/observation-68b6edf2-5351-483d-8c2f-d7f6141d8fdf/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_145243.jpg,,FALSE, +N1,59353,sortie-68b6edf2-5351-483d-8c2f-d7f6141d8fdf,https://biolit.fr/sorties/sortie-68b6edf2-5351-483d-8c2f-d7f6141d8fdf/,Phil,,12/26/2018 0:00,14.0000000,14.0:55,47.800041000000,-4.180933000000,,Loctudy - Finistère,40792,observation-68b6edf2-5351-483d-8c2f-d7f6141d8fdf-2,https://biolit.fr/observations/observation-68b6edf2-5351-483d-8c2f-d7f6141d8fdf-2/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20181226_145414.jpg,,TRUE, +N1,59353,sortie-68b6edf2-5351-483d-8c2f-d7f6141d8fdf,https://biolit.fr/sorties/sortie-68b6edf2-5351-483d-8c2f-d7f6141d8fdf/,Phil,,12/26/2018 0:00,14.0000000,14.0:55,47.800041000000,-4.180933000000,,Loctudy - Finistère,40794,observation-68b6edf2-5351-483d-8c2f-d7f6141d8fdf-3,https://biolit.fr/observations/observation-68b6edf2-5351-483d-8c2f-d7f6141d8fdf-3/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20181226_145452.jpg,,TRUE, +N1,59353,sortie-68b6edf2-5351-483d-8c2f-d7f6141d8fdf,https://biolit.fr/sorties/sortie-68b6edf2-5351-483d-8c2f-d7f6141d8fdf/,Phil,,12/26/2018 0:00,14.0000000,14.0:55,47.800041000000,-4.180933000000,,Loctudy - Finistère,40796,observation-68b6edf2-5351-483d-8c2f-d7f6141d8fdf-4,https://biolit.fr/observations/observation-68b6edf2-5351-483d-8c2f-d7f6141d8fdf-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_145505.jpg,,FALSE, +N1,59353,sortie-68b6edf2-5351-483d-8c2f-d7f6141d8fdf,https://biolit.fr/sorties/sortie-68b6edf2-5351-483d-8c2f-d7f6141d8fdf/,Phil,,12/26/2018 0:00,14.0000000,14.0:55,47.800041000000,-4.180933000000,,Loctudy - Finistère,40798,observation-68b6edf2-5351-483d-8c2f-d7f6141d8fdf-5,https://biolit.fr/observations/observation-68b6edf2-5351-483d-8c2f-d7f6141d8fdf-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_145510.jpg,,FALSE, +N1,59354,sortie-24435898-1bc2-4b28-a4c1-2420df6d8b93,https://biolit.fr/sorties/sortie-24435898-1bc2-4b28-a4c1-2420df6d8b93/,Françoise,,3/22/2019 0:00,16.0000000,18.0000000,49.335270000000,-0.397856000000,,St Aubin sur Mer,40800,observation-24435898-1bc2-4b28-a4c1-2420df6d8b93,https://biolit.fr/observations/observation-24435898-1bc2-4b28-a4c1-2420df6d8b93/,,,,https://biolit.fr/wp-content/uploads/2023/07/anemone-scaled.jpg,,FALSE, +N1,59354,sortie-24435898-1bc2-4b28-a4c1-2420df6d8b93,https://biolit.fr/sorties/sortie-24435898-1bc2-4b28-a4c1-2420df6d8b93/,Françoise,,3/22/2019 0:00,16.0000000,18.0000000,49.335270000000,-0.397856000000,,St Aubin sur Mer,40801,observation-24435898-1bc2-4b28-a4c1-2420df6d8b93-2,https://biolit.fr/observations/observation-24435898-1bc2-4b28-a4c1-2420df6d8b93-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas-scaled.jpg,,TRUE, +N1,59354,sortie-24435898-1bc2-4b28-a4c1-2420df6d8b93,https://biolit.fr/sorties/sortie-24435898-1bc2-4b28-a4c1-2420df6d8b93/,Françoise,,3/22/2019 0:00,16.0000000,18.0000000,49.335270000000,-0.397856000000,,St Aubin sur Mer,40802,observation-24435898-1bc2-4b28-a4c1-2420df6d8b93-3,https://biolit.fr/observations/observation-24435898-1bc2-4b28-a4c1-2420df6d8b93-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Eponge mie de pain Dysidea fragilis-scaled.jpg,,FALSE, +N1,59354,sortie-24435898-1bc2-4b28-a4c1-2420df6d8b93,https://biolit.fr/sorties/sortie-24435898-1bc2-4b28-a4c1-2420df6d8b93/,Françoise,,3/22/2019 0:00,16.0000000,18.0000000,49.335270000000,-0.397856000000,,St Aubin sur Mer,40804,observation-24435898-1bc2-4b28-a4c1-2420df6d8b93-4,https://biolit.fr/observations/observation-24435898-1bc2-4b28-a4c1-2420df6d8b93-4/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/Tealia felina (3)-scaled.jpg,,TRUE, +N1,59354,sortie-24435898-1bc2-4b28-a4c1-2420df6d8b93,https://biolit.fr/sorties/sortie-24435898-1bc2-4b28-a4c1-2420df6d8b93/,Françoise,,3/22/2019 0:00,16.0000000,18.0000000,49.335270000000,-0.397856000000,,St Aubin sur Mer,40806,observation-24435898-1bc2-4b28-a4c1-2420df6d8b93-5,https://biolit.fr/observations/observation-24435898-1bc2-4b28-a4c1-2420df6d8b93-5/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/Urticina 4-scaled.jpg,,TRUE, +N1,59355,sortie-323f55a1-c372-4202-8e32-53f8c0718111,https://biolit.fr/sorties/sortie-323f55a1-c372-4202-8e32-53f8c0718111/,tridimeg,,05/07/2019,14.0000000,15.0000000,48.6313230,-2.0776250,,saint-enogat,40808,observation-323f55a1-c372-4202-8e32-53f8c0718111,https://biolit.fr/observations/observation-323f55a1-c372-4202-8e32-53f8c0718111/,Ocenebra erinaceus,Ponte de Bigorneau perceur,,https://biolit.fr/wp-content/uploads/2023/07/20190507_144853-scaled.jpg,,TRUE, +N1,59356,sortie-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37,https://biolit.fr/sorties/sortie-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37/,Phil,,05/05/2019,10.0:25,10.0000000,47.800102000000,-4.179613000000,,Loctudy - Finistère,40810,observation-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37,https://biolit.fr/observations/observation-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102304.jpg,,TRUE, +N1,59356,sortie-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37,https://biolit.fr/sorties/sortie-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37/,Phil,,05/05/2019,10.0:25,10.0000000,47.800102000000,-4.179613000000,,Loctudy - Finistère,40812,observation-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37-2,https://biolit.fr/observations/observation-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37-2/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102311.jpg,,TRUE, +N1,59356,sortie-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37,https://biolit.fr/sorties/sortie-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37/,Phil,,05/05/2019,10.0:25,10.0000000,47.800102000000,-4.179613000000,,Loctudy - Finistère,40814,observation-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37-3,https://biolit.fr/observations/observation-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37-3/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102326.jpg,,TRUE, +N1,59356,sortie-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37,https://biolit.fr/sorties/sortie-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37/,Phil,,05/05/2019,10.0:25,10.0000000,47.800102000000,-4.179613000000,,Loctudy - Finistère,40816,observation-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37-4,https://biolit.fr/observations/observation-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37-4/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102331.jpg,,TRUE, +N1,59356,sortie-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37,https://biolit.fr/sorties/sortie-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37/,Phil,,05/05/2019,10.0:25,10.0000000,47.800102000000,-4.179613000000,,Loctudy - Finistère,40818,observation-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37-5,https://biolit.fr/observations/observation-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37-5/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102552.jpg,,TRUE, +N1,59356,sortie-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37,https://biolit.fr/sorties/sortie-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37/,Phil,,05/05/2019,10.0:25,10.0000000,47.800102000000,-4.179613000000,,Loctudy - Finistère,40820,observation-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37-6,https://biolit.fr/observations/observation-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102608.jpg,,FALSE, +N1,59356,sortie-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37,https://biolit.fr/sorties/sortie-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37/,Phil,,05/05/2019,10.0:25,10.0000000,47.800102000000,-4.179613000000,,Loctudy - Finistère,40822,observation-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37-7,https://biolit.fr/observations/observation-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102612.jpg,,FALSE, +N1,59357,sortie-b0a1c400-e5d1-4e73-821f-d7987ff40d30,https://biolit.fr/sorties/sortie-b0a1c400-e5d1-4e73-821f-d7987ff40d30/,Phil,,05/03/2019,17.0:45,17.0000000,47.791634000000,-4.286221000000,,Guilvinec - Finistère,40824,observation-b0a1c400-e5d1-4e73-821f-d7987ff40d30,https://biolit.fr/observations/observation-b0a1c400-e5d1-4e73-821f-d7987ff40d30/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190503_174729.jpg,,FALSE, +N1,59357,sortie-b0a1c400-e5d1-4e73-821f-d7987ff40d30,https://biolit.fr/sorties/sortie-b0a1c400-e5d1-4e73-821f-d7987ff40d30/,Phil,,05/03/2019,17.0:45,17.0000000,47.791634000000,-4.286221000000,,Guilvinec - Finistère,40826,observation-b0a1c400-e5d1-4e73-821f-d7987ff40d30-2,https://biolit.fr/observations/observation-b0a1c400-e5d1-4e73-821f-d7987ff40d30-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190503_174724.jpg,,FALSE, +N1,59357,sortie-b0a1c400-e5d1-4e73-821f-d7987ff40d30,https://biolit.fr/sorties/sortie-b0a1c400-e5d1-4e73-821f-d7987ff40d30/,Phil,,05/03/2019,17.0:45,17.0000000,47.791634000000,-4.286221000000,,Guilvinec - Finistère,40828,observation-b0a1c400-e5d1-4e73-821f-d7987ff40d30-3,https://biolit.fr/observations/observation-b0a1c400-e5d1-4e73-821f-d7987ff40d30-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190503_174621.jpg,,FALSE, +N1,59358,sortie-4ebfd23a-83b3-4b60-b528-87d0f0c35815,https://biolit.fr/sorties/sortie-4ebfd23a-83b3-4b60-b528-87d0f0c35815/,Phil,,4/30/2019 0:00,11.0:15,11.0:25,48.216852000000,-4.375532000000,,Telgruc-sur-Mer - Finistère,40830,observation-4ebfd23a-83b3-4b60-b528-87d0f0c35815,https://biolit.fr/observations/observation-4ebfd23a-83b3-4b60-b528-87d0f0c35815/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190430_111947.jpg,,FALSE, +N1,59358,sortie-4ebfd23a-83b3-4b60-b528-87d0f0c35815,https://biolit.fr/sorties/sortie-4ebfd23a-83b3-4b60-b528-87d0f0c35815/,Phil,,4/30/2019 0:00,11.0:15,11.0:25,48.216852000000,-4.375532000000,,Telgruc-sur-Mer - Finistère,40832,observation-4ebfd23a-83b3-4b60-b528-87d0f0c35815-2,https://biolit.fr/observations/observation-4ebfd23a-83b3-4b60-b528-87d0f0c35815-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190430_112111.jpg,,FALSE, +N1,59358,sortie-4ebfd23a-83b3-4b60-b528-87d0f0c35815,https://biolit.fr/sorties/sortie-4ebfd23a-83b3-4b60-b528-87d0f0c35815/,Phil,,4/30/2019 0:00,11.0:15,11.0:25,48.216852000000,-4.375532000000,,Telgruc-sur-Mer - Finistère,40834,observation-4ebfd23a-83b3-4b60-b528-87d0f0c35815-3,https://biolit.fr/observations/observation-4ebfd23a-83b3-4b60-b528-87d0f0c35815-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190430_112116.jpg,,FALSE, +N1,59358,sortie-4ebfd23a-83b3-4b60-b528-87d0f0c35815,https://biolit.fr/sorties/sortie-4ebfd23a-83b3-4b60-b528-87d0f0c35815/,Phil,,4/30/2019 0:00,11.0:15,11.0:25,48.216852000000,-4.375532000000,,Telgruc-sur-Mer - Finistère,40836,observation-4ebfd23a-83b3-4b60-b528-87d0f0c35815-4,https://biolit.fr/observations/observation-4ebfd23a-83b3-4b60-b528-87d0f0c35815-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190430_112126.jpg,,FALSE, +N1,59358,sortie-4ebfd23a-83b3-4b60-b528-87d0f0c35815,https://biolit.fr/sorties/sortie-4ebfd23a-83b3-4b60-b528-87d0f0c35815/,Phil,,4/30/2019 0:00,11.0:15,11.0:25,48.216852000000,-4.375532000000,,Telgruc-sur-Mer - Finistère,40838,observation-4ebfd23a-83b3-4b60-b528-87d0f0c35815-5,https://biolit.fr/observations/observation-4ebfd23a-83b3-4b60-b528-87d0f0c35815-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190430_112157.jpg,,FALSE, +N1,59358,sortie-4ebfd23a-83b3-4b60-b528-87d0f0c35815,https://biolit.fr/sorties/sortie-4ebfd23a-83b3-4b60-b528-87d0f0c35815/,Phil,,4/30/2019 0:00,11.0:15,11.0:25,48.216852000000,-4.375532000000,,Telgruc-sur-Mer - Finistère,40840,observation-4ebfd23a-83b3-4b60-b528-87d0f0c35815-6,https://biolit.fr/observations/observation-4ebfd23a-83b3-4b60-b528-87d0f0c35815-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190430_112228.jpg,,FALSE, +N1,59359,sortie-68320d9e-78a1-4946-8c39-451c931612ef,https://biolit.fr/sorties/sortie-68320d9e-78a1-4946-8c39-451c931612ef/,Phil,,04/11/2019,13.0000000,13.0:15,47.794940000000,-4.213162000000,,Lesconil - Finistère,40842,observation-68320d9e-78a1-4946-8c39-451c931612ef,https://biolit.fr/observations/observation-68320d9e-78a1-4946-8c39-451c931612ef/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190411_131159.jpg,,FALSE, +N1,59359,sortie-68320d9e-78a1-4946-8c39-451c931612ef,https://biolit.fr/sorties/sortie-68320d9e-78a1-4946-8c39-451c931612ef/,Phil,,04/11/2019,13.0000000,13.0:15,47.794940000000,-4.213162000000,,Lesconil - Finistère,40844,observation-68320d9e-78a1-4946-8c39-451c931612ef-2,https://biolit.fr/observations/observation-68320d9e-78a1-4946-8c39-451c931612ef-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190411_130955.jpg,,FALSE, +N1,59359,sortie-68320d9e-78a1-4946-8c39-451c931612ef,https://biolit.fr/sorties/sortie-68320d9e-78a1-4946-8c39-451c931612ef/,Phil,,04/11/2019,13.0000000,13.0:15,47.794940000000,-4.213162000000,,Lesconil - Finistère,40846,observation-68320d9e-78a1-4946-8c39-451c931612ef-3,https://biolit.fr/observations/observation-68320d9e-78a1-4946-8c39-451c931612ef-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190411_131038.jpg,,FALSE, +N1,59359,sortie-68320d9e-78a1-4946-8c39-451c931612ef,https://biolit.fr/sorties/sortie-68320d9e-78a1-4946-8c39-451c931612ef/,Phil,,04/11/2019,13.0000000,13.0:15,47.794940000000,-4.213162000000,,Lesconil - Finistère,40848,observation-68320d9e-78a1-4946-8c39-451c931612ef-4,https://biolit.fr/observations/observation-68320d9e-78a1-4946-8c39-451c931612ef-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190411_131232.jpg,,FALSE, +N1,59359,sortie-68320d9e-78a1-4946-8c39-451c931612ef,https://biolit.fr/sorties/sortie-68320d9e-78a1-4946-8c39-451c931612ef/,Phil,,04/11/2019,13.0000000,13.0:15,47.794940000000,-4.213162000000,,Lesconil - Finistère,40850,observation-68320d9e-78a1-4946-8c39-451c931612ef-5,https://biolit.fr/observations/observation-68320d9e-78a1-4946-8c39-451c931612ef-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190411_131429.jpg,,FALSE, +N1,59359,sortie-68320d9e-78a1-4946-8c39-451c931612ef,https://biolit.fr/sorties/sortie-68320d9e-78a1-4946-8c39-451c931612ef/,Phil,,04/11/2019,13.0000000,13.0:15,47.794940000000,-4.213162000000,,Lesconil - Finistère,40852,observation-68320d9e-78a1-4946-8c39-451c931612ef-6,https://biolit.fr/observations/observation-68320d9e-78a1-4946-8c39-451c931612ef-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190411_131515.jpg,,FALSE, +N1,59360,sortie-e3a7afe4-c695-4524-9da8-fc874281a03d,https://biolit.fr/sorties/sortie-e3a7afe4-c695-4524-9da8-fc874281a03d/,Lola CANIZARES,,4/26/2019 0:00,16.0000000,16.0:35,43.25836,5.3969800,,Plage de la maronaise,40854,observation-e3a7afe4-c695-4524-9da8-fc874281a03d,https://biolit.fr/observations/observation-e3a7afe4-c695-4524-9da8-fc874281a03d/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190427_162754-scaled.jpg,,FALSE, +N1,59361,sortie-2a0eab19-e5dc-4827-969d-13a27fc13f64,https://biolit.fr/sorties/sortie-2a0eab19-e5dc-4827-969d-13a27fc13f64/,Environat,,4/24/2019 0:00,14.0000000,16.0000000,45.604170000000,-1.012884000000,Environat,ile aux mouettes,40856,observation-2a0eab19-e5dc-4827-969d-13a27fc13f64,https://biolit.fr/observations/observation-2a0eab19-e5dc-4827-969d-13a27fc13f64/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0006_1.JPG,,FALSE, +N1,59361,sortie-2a0eab19-e5dc-4827-969d-13a27fc13f64,https://biolit.fr/sorties/sortie-2a0eab19-e5dc-4827-969d-13a27fc13f64/,Environat,,4/24/2019 0:00,14.0000000,16.0000000,45.604170000000,-1.012884000000,Environat,ile aux mouettes,40858,observation-2a0eab19-e5dc-4827-969d-13a27fc13f64-2,https://biolit.fr/observations/observation-2a0eab19-e5dc-4827-969d-13a27fc13f64-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0008-scaled.jpg,,FALSE, +N1,59361,sortie-2a0eab19-e5dc-4827-969d-13a27fc13f64,https://biolit.fr/sorties/sortie-2a0eab19-e5dc-4827-969d-13a27fc13f64/,Environat,,4/24/2019 0:00,14.0000000,16.0000000,45.604170000000,-1.012884000000,Environat,ile aux mouettes,40859,observation-2a0eab19-e5dc-4827-969d-13a27fc13f64-3,https://biolit.fr/observations/observation-2a0eab19-e5dc-4827-969d-13a27fc13f64-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0012_0.JPG,,FALSE, +N1,59361,sortie-2a0eab19-e5dc-4827-969d-13a27fc13f64,https://biolit.fr/sorties/sortie-2a0eab19-e5dc-4827-969d-13a27fc13f64/,Environat,,4/24/2019 0:00,14.0000000,16.0000000,45.604170000000,-1.012884000000,Environat,ile aux mouettes,40861,observation-2a0eab19-e5dc-4827-969d-13a27fc13f64-4,https://biolit.fr/observations/observation-2a0eab19-e5dc-4827-969d-13a27fc13f64-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0010_0.JPG,,FALSE, +N1,59362,sortie-09068967-4b77-48e5-b360-e64f023c3ae6,https://biolit.fr/sorties/sortie-09068967-4b77-48e5-b360-e64f023c3ae6/,Lola CANIZARES,,4/27/2019 0:00,16.0000000,16.0:35,43.215219,5.342027,,La marronaise,40863,observation-09068967-4b77-48e5-b360-e64f023c3ae6,https://biolit.fr/observations/observation-09068967-4b77-48e5-b360-e64f023c3ae6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190427_162732-scaled.jpg,,FALSE, +N1,59363,sortie-cffbcf86-58e0-419f-972b-13006f932706,https://biolit.fr/sorties/sortie-cffbcf86-58e0-419f-972b-13006f932706/,Phil,,12/26/2018 0:00,14.0:35,14.0000000,47.800463000000,-4.180999000000,,Loctudy - Finistère,40865,observation-cffbcf86-58e0-419f-972b-13006f932706,https://biolit.fr/observations/observation-cffbcf86-58e0-419f-972b-13006f932706/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20181226_144928.jpg,,TRUE, +N1,59363,sortie-cffbcf86-58e0-419f-972b-13006f932706,https://biolit.fr/sorties/sortie-cffbcf86-58e0-419f-972b-13006f932706/,Phil,,12/26/2018 0:00,14.0:35,14.0000000,47.800463000000,-4.180999000000,,Loctudy - Finistère,40867,observation-cffbcf86-58e0-419f-972b-13006f932706-2,https://biolit.fr/observations/observation-cffbcf86-58e0-419f-972b-13006f932706-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_143538.jpg,,FALSE, +N1,59363,sortie-cffbcf86-58e0-419f-972b-13006f932706,https://biolit.fr/sorties/sortie-cffbcf86-58e0-419f-972b-13006f932706/,Phil,,12/26/2018 0:00,14.0:35,14.0000000,47.800463000000,-4.180999000000,,Loctudy - Finistère,40869,observation-cffbcf86-58e0-419f-972b-13006f932706-3,https://biolit.fr/observations/observation-cffbcf86-58e0-419f-972b-13006f932706-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_145155.jpg,,FALSE, +N1,59363,sortie-cffbcf86-58e0-419f-972b-13006f932706,https://biolit.fr/sorties/sortie-cffbcf86-58e0-419f-972b-13006f932706/,Phil,,12/26/2018 0:00,14.0:35,14.0000000,47.800463000000,-4.180999000000,,Loctudy - Finistère,40871,observation-cffbcf86-58e0-419f-972b-13006f932706-4,https://biolit.fr/observations/observation-cffbcf86-58e0-419f-972b-13006f932706-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_145135-scaled.jpg,,FALSE, +N1,59363,sortie-cffbcf86-58e0-419f-972b-13006f932706,https://biolit.fr/sorties/sortie-cffbcf86-58e0-419f-972b-13006f932706/,Phil,,12/26/2018 0:00,14.0:35,14.0000000,47.800463000000,-4.180999000000,,Loctudy - Finistère,40873,observation-cffbcf86-58e0-419f-972b-13006f932706-5,https://biolit.fr/observations/observation-cffbcf86-58e0-419f-972b-13006f932706-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_143434-scaled.jpg,,FALSE, +N1,59364,sortie-1adf269e-4e89-4008-a114-87da3f67d4a5,https://biolit.fr/sorties/sortie-1adf269e-4e89-4008-a114-87da3f67d4a5/,ThomPoutch,,4/26/2019 0:00,12.0000000,12.0000000,43.2148800,5.343133,,Anse de la Maraunaise,40875,observation-1adf269e-4e89-4008-a114-87da3f67d4a5,https://biolit.fr/observations/observation-1adf269e-4e89-4008-a114-87da3f67d4a5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190426_115927-scaled.jpg,,FALSE, +N1,59365,sortie-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74,https://biolit.fr/sorties/sortie-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74/,Phil,,03/08/2019,13.000005,13.0000000,47.791691000000,-4.287337000000,,Guilvinec - Finistère,40877,observation-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74,https://biolit.fr/observations/observation-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190308_130511.jpg,,FALSE, +N1,59365,sortie-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74,https://biolit.fr/sorties/sortie-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74/,Phil,,03/08/2019,13.000005,13.0000000,47.791691000000,-4.287337000000,,Guilvinec - Finistère,40879,observation-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74-2,https://biolit.fr/observations/observation-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190308_130521.jpg,,FALSE, +N1,59365,sortie-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74,https://biolit.fr/sorties/sortie-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74/,Phil,,03/08/2019,13.000005,13.0000000,47.791691000000,-4.287337000000,,Guilvinec - Finistère,40881,observation-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74-3,https://biolit.fr/observations/observation-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190308_130523.jpg,,FALSE, +N1,59365,sortie-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74,https://biolit.fr/sorties/sortie-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74/,Phil,,03/08/2019,13.000005,13.0000000,47.791691000000,-4.287337000000,,Guilvinec - Finistère,40883,observation-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74-4,https://biolit.fr/observations/observation-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190308_130540.jpg,,FALSE, +N1,59365,sortie-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74,https://biolit.fr/sorties/sortie-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74/,Phil,,03/08/2019,13.000005,13.0000000,47.791691000000,-4.287337000000,,Guilvinec - Finistère,40885,observation-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74-5,https://biolit.fr/observations/observation-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190308_130544.jpg,,FALSE, +N1,59366,sortie-4b5324d6-93f3-4f0a-b68d-068077ceda84,https://biolit.fr/sorties/sortie-4b5324d6-93f3-4f0a-b68d-068077ceda84/,Phil,,04/11/2019,13.000005,13.0000000,47.794935000000,-4.213100000000,,Lesconil - Finistère,40887,observation-4b5324d6-93f3-4f0a-b68d-068077ceda84,https://biolit.fr/observations/observation-4b5324d6-93f3-4f0a-b68d-068077ceda84/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190411_130458.jpg,,TRUE, +N1,59366,sortie-4b5324d6-93f3-4f0a-b68d-068077ceda84,https://biolit.fr/sorties/sortie-4b5324d6-93f3-4f0a-b68d-068077ceda84/,Phil,,04/11/2019,13.000005,13.0000000,47.794935000000,-4.213100000000,,Lesconil - Finistère,40889,observation-4b5324d6-93f3-4f0a-b68d-068077ceda84-2,https://biolit.fr/observations/observation-4b5324d6-93f3-4f0a-b68d-068077ceda84-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190411_130505.jpg,,TRUE, +N1,59366,sortie-4b5324d6-93f3-4f0a-b68d-068077ceda84,https://biolit.fr/sorties/sortie-4b5324d6-93f3-4f0a-b68d-068077ceda84/,Phil,,04/11/2019,13.000005,13.0000000,47.794935000000,-4.213100000000,,Lesconil - Finistère,40891,observation-4b5324d6-93f3-4f0a-b68d-068077ceda84-3,https://biolit.fr/observations/observation-4b5324d6-93f3-4f0a-b68d-068077ceda84-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190411_130713.jpg,,FALSE, +N1,59366,sortie-4b5324d6-93f3-4f0a-b68d-068077ceda84,https://biolit.fr/sorties/sortie-4b5324d6-93f3-4f0a-b68d-068077ceda84/,Phil,,04/11/2019,13.000005,13.0000000,47.794935000000,-4.213100000000,,Lesconil - Finistère,40893,observation-4b5324d6-93f3-4f0a-b68d-068077ceda84-4,https://biolit.fr/observations/observation-4b5324d6-93f3-4f0a-b68d-068077ceda84-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190411_130854.jpg,,FALSE, +N1,59366,sortie-4b5324d6-93f3-4f0a-b68d-068077ceda84,https://biolit.fr/sorties/sortie-4b5324d6-93f3-4f0a-b68d-068077ceda84/,Phil,,04/11/2019,13.000005,13.0000000,47.794935000000,-4.213100000000,,Lesconil - Finistère,40895,observation-4b5324d6-93f3-4f0a-b68d-068077ceda84-5,https://biolit.fr/observations/observation-4b5324d6-93f3-4f0a-b68d-068077ceda84-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190411_130927.jpg,,FALSE, +N1,59367,sortie-2bbfd34f-2fb2-4c85-a372-52fd6d656b0a,https://biolit.fr/sorties/sortie-2bbfd34f-2fb2-4c85-a372-52fd6d656b0a/,LPO Occitanie (délégation Hérault),,04/05/2019,14.0000000,15.0000000,43.391804000000,3.672759000000,LPO Occitanie (Dt Hérault),"Plage du Lazaret, Sète",40897,observation-2bbfd34f-2fb2-4c85-a372-52fd6d656b0a,https://biolit.fr/observations/observation-2bbfd34f-2fb2-4c85-a372-52fd6d656b0a/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20190405_150633.jpg,,TRUE, +N1,59368,sortie-ac73d621-642b-4286-b090-0f448a34e954,https://biolit.fr/sorties/sortie-ac73d621-642b-4286-b090-0f448a34e954/,Phil,,12/26/2018 0:00,14.0000000,14.0:35,47.800257000000,-4.180611000000,,Loctudy - Finistère,40899,observation-ac73d621-642b-4286-b090-0f448a34e954,https://biolit.fr/observations/observation-ac73d621-642b-4286-b090-0f448a34e954/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_142246.jpg,,FALSE, +N1,59368,sortie-ac73d621-642b-4286-b090-0f448a34e954,https://biolit.fr/sorties/sortie-ac73d621-642b-4286-b090-0f448a34e954/,Phil,,12/26/2018 0:00,14.0000000,14.0:35,47.800257000000,-4.180611000000,,Loctudy - Finistère,40901,observation-ac73d621-642b-4286-b090-0f448a34e954-2,https://biolit.fr/observations/observation-ac73d621-642b-4286-b090-0f448a34e954-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_142313.jpg,,FALSE, +N1,59368,sortie-ac73d621-642b-4286-b090-0f448a34e954,https://biolit.fr/sorties/sortie-ac73d621-642b-4286-b090-0f448a34e954/,Phil,,12/26/2018 0:00,14.0000000,14.0:35,47.800257000000,-4.180611000000,,Loctudy - Finistère,40903,observation-ac73d621-642b-4286-b090-0f448a34e954-3,https://biolit.fr/observations/observation-ac73d621-642b-4286-b090-0f448a34e954-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_142541.jpg,,FALSE, +N1,59368,sortie-ac73d621-642b-4286-b090-0f448a34e954,https://biolit.fr/sorties/sortie-ac73d621-642b-4286-b090-0f448a34e954/,Phil,,12/26/2018 0:00,14.0000000,14.0:35,47.800257000000,-4.180611000000,,Loctudy - Finistère,40905,observation-ac73d621-642b-4286-b090-0f448a34e954-4,https://biolit.fr/observations/observation-ac73d621-642b-4286-b090-0f448a34e954-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_143132.jpg,,FALSE, +N1,59368,sortie-ac73d621-642b-4286-b090-0f448a34e954,https://biolit.fr/sorties/sortie-ac73d621-642b-4286-b090-0f448a34e954/,Phil,,12/26/2018 0:00,14.0000000,14.0:35,47.800257000000,-4.180611000000,,Loctudy - Finistère,40907,observation-ac73d621-642b-4286-b090-0f448a34e954-5,https://biolit.fr/observations/observation-ac73d621-642b-4286-b090-0f448a34e954-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_143416.jpg,,FALSE, +N1,59368,sortie-ac73d621-642b-4286-b090-0f448a34e954,https://biolit.fr/sorties/sortie-ac73d621-642b-4286-b090-0f448a34e954/,Phil,,12/26/2018 0:00,14.0000000,14.0:35,47.800257000000,-4.180611000000,,Loctudy - Finistère,40909,observation-ac73d621-642b-4286-b090-0f448a34e954-6,https://biolit.fr/observations/observation-ac73d621-642b-4286-b090-0f448a34e954-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_143426.jpg,,FALSE, +N1,59369,sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2,https://biolit.fr/sorties/sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2/,chloe_cpie,,3/30/2019 0:00,14.0:35,15.0:55,51.071533000000,2.485586000000,,Plage de Zuydcoote,40911,observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2,https://biolit.fr/observations/observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4240-scaled.jpg,,FALSE, +N1,59369,sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2,https://biolit.fr/sorties/sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2/,chloe_cpie,,3/30/2019 0:00,14.0:35,15.0:55,51.071533000000,2.485586000000,,Plage de Zuydcoote,40913,observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-2,https://biolit.fr/observations/observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4236-scaled.jpg,,FALSE, +N1,59369,sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2,https://biolit.fr/sorties/sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2/,chloe_cpie,,3/30/2019 0:00,14.0:35,15.0:55,51.071533000000,2.485586000000,,Plage de Zuydcoote,40915,observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-3,https://biolit.fr/observations/observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4241-scaled.jpg,,FALSE, +N1,59369,sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2,https://biolit.fr/sorties/sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2/,chloe_cpie,,3/30/2019 0:00,14.0:35,15.0:55,51.071533000000,2.485586000000,,Plage de Zuydcoote,40917,observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-4,https://biolit.fr/observations/observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4250_0-scaled.jpg,,FALSE, +N1,59369,sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2,https://biolit.fr/sorties/sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2/,chloe_cpie,,3/30/2019 0:00,14.0:35,15.0:55,51.071533000000,2.485586000000,,Plage de Zuydcoote,40919,observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-5,https://biolit.fr/observations/observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4253-scaled.jpg,,FALSE, +N1,59369,sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2,https://biolit.fr/sorties/sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2/,chloe_cpie,,3/30/2019 0:00,14.0:35,15.0:55,51.071533000000,2.485586000000,,Plage de Zuydcoote,40921,observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-6,https://biolit.fr/observations/observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4261-scaled.jpg,,FALSE, +N1,59369,sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2,https://biolit.fr/sorties/sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2/,chloe_cpie,,3/30/2019 0:00,14.0:35,15.0:55,51.071533000000,2.485586000000,,Plage de Zuydcoote,40923,observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-7,https://biolit.fr/observations/observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4257_0-scaled.jpg,,FALSE, +N1,59369,sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2,https://biolit.fr/sorties/sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2/,chloe_cpie,,3/30/2019 0:00,14.0:35,15.0:55,51.071533000000,2.485586000000,,Plage de Zuydcoote,40925,observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-8,https://biolit.fr/observations/observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4262-scaled.jpg,,FALSE, +N1,59369,sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2,https://biolit.fr/sorties/sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2/,chloe_cpie,,3/30/2019 0:00,14.0:35,15.0:55,51.071533000000,2.485586000000,,Plage de Zuydcoote,40927,observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-9,https://biolit.fr/observations/observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4270_0-scaled.jpg,,FALSE, +N1,59369,sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2,https://biolit.fr/sorties/sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2/,chloe_cpie,,3/30/2019 0:00,14.0:35,15.0:55,51.071533000000,2.485586000000,,Plage de Zuydcoote,40929,observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-10,https://biolit.fr/observations/observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4271-scaled.jpg,,FALSE, +N1,59369,sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2,https://biolit.fr/sorties/sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2/,chloe_cpie,,3/30/2019 0:00,14.0:35,15.0:55,51.071533000000,2.485586000000,,Plage de Zuydcoote,40931,observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-11,https://biolit.fr/observations/observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4274-scaled.jpg,,FALSE, +N1,59369,sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2,https://biolit.fr/sorties/sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2/,chloe_cpie,,3/30/2019 0:00,14.0:35,15.0:55,51.071533000000,2.485586000000,,Plage de Zuydcoote,40933,observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-12,https://biolit.fr/observations/observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4272_comp.JPG,,FALSE, +N1,59369,sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2,https://biolit.fr/sorties/sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2/,chloe_cpie,,3/30/2019 0:00,14.0:35,15.0:55,51.071533000000,2.485586000000,,Plage de Zuydcoote,40935,observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-13,https://biolit.fr/observations/observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4273-scaled.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40937,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_124912 petit.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40939,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-2,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_124740 petit.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40941,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-3,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_124818 petit.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40943,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-4,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_124949 petit.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40945,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-5,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_125135 petit.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40947,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-6,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_125031 petit.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40949,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-7,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_125219 petit.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40951,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-8,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_125249 petit.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40953,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-9,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_125508 petit.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40955,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-10,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_125632 petit.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40957,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-11,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_130120 petit.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40959,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-12,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_130326 petit.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40961,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-13,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_151306 petit.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40963,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-14,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_151844 petit.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40965,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-15,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_151938 petit.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40967,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-16,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_152047 petit.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40969,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-17,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_152145 petit.jpg,,FALSE, +N1,59371,sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373,https://biolit.fr/sorties/sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373/,severoques,,3/21/2019 0:00,10.0000000,12.0000000,43.381544000000,-1.734539000000,,Haiçabia,40971,observation-91c2fe7f-14f4-478d-9fd2-7d645038b373,https://biolit.fr/observations/observation-91c2fe7f-14f4-478d-9fd2-7d645038b373/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190321_111950-scaled.jpg,,FALSE, +N1,59371,sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373,https://biolit.fr/sorties/sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373/,severoques,,3/21/2019 0:00,10.0000000,12.0000000,43.381544000000,-1.734539000000,,Haiçabia,40973,observation-91c2fe7f-14f4-478d-9fd2-7d645038b373-2,https://biolit.fr/observations/observation-91c2fe7f-14f4-478d-9fd2-7d645038b373-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/20190321_140341.jpg,,TRUE, +N1,59371,sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373,https://biolit.fr/sorties/sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373/,severoques,,3/21/2019 0:00,10.0000000,12.0000000,43.381544000000,-1.734539000000,,Haiçabia,40975,observation-91c2fe7f-14f4-478d-9fd2-7d645038b373-3,https://biolit.fr/observations/observation-91c2fe7f-14f4-478d-9fd2-7d645038b373-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190321_114320-scaled.jpg,,FALSE, +N1,59371,sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373,https://biolit.fr/sorties/sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373/,severoques,,3/21/2019 0:00,10.0000000,12.0000000,43.381544000000,-1.734539000000,,Haiçabia,40977,observation-91c2fe7f-14f4-478d-9fd2-7d645038b373-4,https://biolit.fr/observations/observation-91c2fe7f-14f4-478d-9fd2-7d645038b373-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190321_112812-scaled.jpg,,FALSE, +N1,59371,sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373,https://biolit.fr/sorties/sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373/,severoques,,3/21/2019 0:00,10.0000000,12.0000000,43.381544000000,-1.734539000000,,Haiçabia,40979,observation-91c2fe7f-14f4-478d-9fd2-7d645038b373-5,https://biolit.fr/observations/observation-91c2fe7f-14f4-478d-9fd2-7d645038b373-5/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20190321_140839.jpg,,TRUE, +N1,59371,sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373,https://biolit.fr/sorties/sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373/,severoques,,3/21/2019 0:00,10.0000000,12.0000000,43.381544000000,-1.734539000000,,Haiçabia,40981,observation-91c2fe7f-14f4-478d-9fd2-7d645038b373-6,https://biolit.fr/observations/observation-91c2fe7f-14f4-478d-9fd2-7d645038b373-6/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/20190321_140446.jpg,,TRUE, +N1,59371,sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373,https://biolit.fr/sorties/sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373/,severoques,,3/21/2019 0:00,10.0000000,12.0000000,43.381544000000,-1.734539000000,,Haiçabia,40983,observation-91c2fe7f-14f4-478d-9fd2-7d645038b373-7,https://biolit.fr/observations/observation-91c2fe7f-14f4-478d-9fd2-7d645038b373-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190321_105042-scaled.jpg,,FALSE, +N1,59371,sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373,https://biolit.fr/sorties/sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373/,severoques,,3/21/2019 0:00,10.0000000,12.0000000,43.381544000000,-1.734539000000,,Haiçabia,40985,observation-91c2fe7f-14f4-478d-9fd2-7d645038b373-8,https://biolit.fr/observations/observation-91c2fe7f-14f4-478d-9fd2-7d645038b373-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190321_110936 (2)-scaled.jpg,,FALSE, +N1,59371,sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373,https://biolit.fr/sorties/sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373/,severoques,,3/21/2019 0:00,10.0000000,12.0000000,43.381544000000,-1.734539000000,,Haiçabia,40987,observation-91c2fe7f-14f4-478d-9fd2-7d645038b373-9,https://biolit.fr/observations/observation-91c2fe7f-14f4-478d-9fd2-7d645038b373-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190321_112833-scaled.jpg,,FALSE, +N1,59372,sortie-84acbba1-5f1a-47d4-9b59-2aa275d3146d,https://biolit.fr/sorties/sortie-84acbba1-5f1a-47d4-9b59-2aa275d3146d/,collège paul Eluard,,3/28/2019 0:00,14.0000000,16.0000000,50.692297000000,1.562895000000,,Ningles,40989,observation-84acbba1-5f1a-47d4-9b59-2aa275d3146d,https://biolit.fr/observations/observation-84acbba1-5f1a-47d4-9b59-2aa275d3146d/,,,,https://biolit.fr/wp-content/uploads/2023/07/Adonys-55-5[1].jpg,,FALSE, +N1,59372,sortie-84acbba1-5f1a-47d4-9b59-2aa275d3146d,https://biolit.fr/sorties/sortie-84acbba1-5f1a-47d4-9b59-2aa275d3146d/,collège paul Eluard,,3/28/2019 0:00,14.0000000,16.0000000,50.692297000000,1.562895000000,,Ningles,40991,observation-84acbba1-5f1a-47d4-9b59-2aa275d3146d-2,https://biolit.fr/observations/observation-84acbba1-5f1a-47d4-9b59-2aa275d3146d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Adonys-55-6[1].jpg,,FALSE, +N1,59373,sortie-5d21ca23-8066-44b7-a639-d1816b3adb24,https://biolit.fr/sorties/sortie-5d21ca23-8066-44b7-a639-d1816b3adb24/,Phil,,03/08/2019,13.0000000,13.000005,47.792005000000,-4.286515000000,,Guilvinec - Finistère,40993,observation-5d21ca23-8066-44b7-a639-d1816b3adb24,https://biolit.fr/observations/observation-5d21ca23-8066-44b7-a639-d1816b3adb24/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190308_125930.jpg,,FALSE, +N1,59373,sortie-5d21ca23-8066-44b7-a639-d1816b3adb24,https://biolit.fr/sorties/sortie-5d21ca23-8066-44b7-a639-d1816b3adb24/,Phil,,03/08/2019,13.0000000,13.000005,47.792005000000,-4.286515000000,,Guilvinec - Finistère,40995,observation-5d21ca23-8066-44b7-a639-d1816b3adb24-2,https://biolit.fr/observations/observation-5d21ca23-8066-44b7-a639-d1816b3adb24-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190308_125935.jpg,,FALSE, +N1,59373,sortie-5d21ca23-8066-44b7-a639-d1816b3adb24,https://biolit.fr/sorties/sortie-5d21ca23-8066-44b7-a639-d1816b3adb24/,Phil,,03/08/2019,13.0000000,13.000005,47.792005000000,-4.286515000000,,Guilvinec - Finistère,40997,observation-5d21ca23-8066-44b7-a639-d1816b3adb24-3,https://biolit.fr/observations/observation-5d21ca23-8066-44b7-a639-d1816b3adb24-3/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190308_130010.jpg,,TRUE, +N1,59373,sortie-5d21ca23-8066-44b7-a639-d1816b3adb24,https://biolit.fr/sorties/sortie-5d21ca23-8066-44b7-a639-d1816b3adb24/,Phil,,03/08/2019,13.0000000,13.000005,47.792005000000,-4.286515000000,,Guilvinec - Finistère,40999,observation-5d21ca23-8066-44b7-a639-d1816b3adb24-4,https://biolit.fr/observations/observation-5d21ca23-8066-44b7-a639-d1816b3adb24-4/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190308_130137.jpg,,TRUE, +N1,59374,sortie-2f3f29cb-74e4-4296-940e-e3775eec830b,https://biolit.fr/sorties/sortie-2f3f29cb-74e4-4296-940e-e3775eec830b/,Kevinlf,,04/01/2019,18.0000000,18.0000000,48.659125000000,-4.222853000000,,Plage de Porsmeur,41001,observation-2f3f29cb-74e4-4296-940e-e3775eec830b,https://biolit.fr/observations/observation-2f3f29cb-74e4-4296-940e-e3775eec830b/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190401_183140-min.png,,FALSE, +N1,59374,sortie-2f3f29cb-74e4-4296-940e-e3775eec830b,https://biolit.fr/sorties/sortie-2f3f29cb-74e4-4296-940e-e3775eec830b/,Kevinlf,,04/01/2019,18.0000000,18.0000000,48.659125000000,-4.222853000000,,Plage de Porsmeur,41003,observation-2f3f29cb-74e4-4296-940e-e3775eec830b-2,https://biolit.fr/observations/observation-2f3f29cb-74e4-4296-940e-e3775eec830b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190401_184012-min.png,,FALSE, +N1,59374,sortie-2f3f29cb-74e4-4296-940e-e3775eec830b,https://biolit.fr/sorties/sortie-2f3f29cb-74e4-4296-940e-e3775eec830b/,Kevinlf,,04/01/2019,18.0000000,18.0000000,48.659125000000,-4.222853000000,,Plage de Porsmeur,41005,observation-2f3f29cb-74e4-4296-940e-e3775eec830b-3,https://biolit.fr/observations/observation-2f3f29cb-74e4-4296-940e-e3775eec830b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190401_183212-min.png,,FALSE, +N1,59374,sortie-2f3f29cb-74e4-4296-940e-e3775eec830b,https://biolit.fr/sorties/sortie-2f3f29cb-74e4-4296-940e-e3775eec830b/,Kevinlf,,04/01/2019,18.0000000,18.0000000,48.659125000000,-4.222853000000,,Plage de Porsmeur,41007,observation-2f3f29cb-74e4-4296-940e-e3775eec830b-4,https://biolit.fr/observations/observation-2f3f29cb-74e4-4296-940e-e3775eec830b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190401_183219-min.png,,FALSE, +N1,59374,sortie-2f3f29cb-74e4-4296-940e-e3775eec830b,https://biolit.fr/sorties/sortie-2f3f29cb-74e4-4296-940e-e3775eec830b/,Kevinlf,,04/01/2019,18.0000000,18.0000000,48.659125000000,-4.222853000000,,Plage de Porsmeur,41009,observation-2f3f29cb-74e4-4296-940e-e3775eec830b-5,https://biolit.fr/observations/observation-2f3f29cb-74e4-4296-940e-e3775eec830b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190401_183227-min.png,,FALSE, +N1,59374,sortie-2f3f29cb-74e4-4296-940e-e3775eec830b,https://biolit.fr/sorties/sortie-2f3f29cb-74e4-4296-940e-e3775eec830b/,Kevinlf,,04/01/2019,18.0000000,18.0000000,48.659125000000,-4.222853000000,,Plage de Porsmeur,41011,observation-2f3f29cb-74e4-4296-940e-e3775eec830b-6,https://biolit.fr/observations/observation-2f3f29cb-74e4-4296-940e-e3775eec830b-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190401_183250-min.png,,FALSE, +N1,59374,sortie-2f3f29cb-74e4-4296-940e-e3775eec830b,https://biolit.fr/sorties/sortie-2f3f29cb-74e4-4296-940e-e3775eec830b/,Kevinlf,,04/01/2019,18.0000000,18.0000000,48.659125000000,-4.222853000000,,Plage de Porsmeur,41013,observation-2f3f29cb-74e4-4296-940e-e3775eec830b-7,https://biolit.fr/observations/observation-2f3f29cb-74e4-4296-940e-e3775eec830b-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190401_183335-min.png,,FALSE, +N1,59374,sortie-2f3f29cb-74e4-4296-940e-e3775eec830b,https://biolit.fr/sorties/sortie-2f3f29cb-74e4-4296-940e-e3775eec830b/,Kevinlf,,04/01/2019,18.0000000,18.0000000,48.659125000000,-4.222853000000,,Plage de Porsmeur,41015,observation-2f3f29cb-74e4-4296-940e-e3775eec830b-8,https://biolit.fr/observations/observation-2f3f29cb-74e4-4296-940e-e3775eec830b-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190401_183516-min.png,,FALSE, +N1,59374,sortie-2f3f29cb-74e4-4296-940e-e3775eec830b,https://biolit.fr/sorties/sortie-2f3f29cb-74e4-4296-940e-e3775eec830b/,Kevinlf,,04/01/2019,18.0000000,18.0000000,48.659125000000,-4.222853000000,,Plage de Porsmeur,41017,observation-2f3f29cb-74e4-4296-940e-e3775eec830b-9,https://biolit.fr/observations/observation-2f3f29cb-74e4-4296-940e-e3775eec830b-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190401_183524-min.png,,FALSE, +N1,59374,sortie-2f3f29cb-74e4-4296-940e-e3775eec830b,https://biolit.fr/sorties/sortie-2f3f29cb-74e4-4296-940e-e3775eec830b/,Kevinlf,,04/01/2019,18.0000000,18.0000000,48.659125000000,-4.222853000000,,Plage de Porsmeur,41019,observation-2f3f29cb-74e4-4296-940e-e3775eec830b-10,https://biolit.fr/observations/observation-2f3f29cb-74e4-4296-940e-e3775eec830b-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190401_183556-min.png,,FALSE, +N1,59374,sortie-2f3f29cb-74e4-4296-940e-e3775eec830b,https://biolit.fr/sorties/sortie-2f3f29cb-74e4-4296-940e-e3775eec830b/,Kevinlf,,04/01/2019,18.0000000,18.0000000,48.659125000000,-4.222853000000,,Plage de Porsmeur,41021,observation-2f3f29cb-74e4-4296-940e-e3775eec830b-11,https://biolit.fr/observations/observation-2f3f29cb-74e4-4296-940e-e3775eec830b-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190401_184158-min.png,,FALSE, +N1,59375,sortie-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946,https://biolit.fr/sorties/sortie-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946/,Phil,,12/26/2018 0:00,13.0000000,14.0000000,47.800400000000,-4.180160000000,,Loctudy - Finistère,41023,observation-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946,https://biolit.fr/observations/observation-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/2023/07/20181226_135540.jpg,,TRUE, +N1,59375,sortie-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946,https://biolit.fr/sorties/sortie-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946/,Phil,,12/26/2018 0:00,13.0000000,14.0000000,47.800400000000,-4.180160000000,,Loctudy - Finistère,41025,observation-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946-2,https://biolit.fr/observations/observation-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946-2/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/2023/07/20181226_135544.jpg,,TRUE, +N1,59375,sortie-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946,https://biolit.fr/sorties/sortie-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946/,Phil,,12/26/2018 0:00,13.0000000,14.0000000,47.800400000000,-4.180160000000,,Loctudy - Finistère,41027,observation-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946-3,https://biolit.fr/observations/observation-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946-3/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_135158.jpg,,TRUE, +N1,59375,sortie-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946,https://biolit.fr/sorties/sortie-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946/,Phil,,12/26/2018 0:00,13.0000000,14.0000000,47.800400000000,-4.180160000000,,Loctudy - Finistère,41029,observation-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946-4,https://biolit.fr/observations/observation-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946-4/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_135228.jpg,,TRUE, +N1,59375,sortie-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946,https://biolit.fr/sorties/sortie-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946/,Phil,,12/26/2018 0:00,13.0000000,14.0000000,47.800400000000,-4.180160000000,,Loctudy - Finistère,41031,observation-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946-5,https://biolit.fr/observations/observation-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946-5/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20181226_142019.jpg,,TRUE, +N1,59375,sortie-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946,https://biolit.fr/sorties/sortie-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946/,Phil,,12/26/2018 0:00,13.0000000,14.0000000,47.800400000000,-4.180160000000,,Loctudy - Finistère,41033,observation-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946-6,https://biolit.fr/observations/observation-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946-6/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181226_141952.jpg,,TRUE, +N1,59375,sortie-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946,https://biolit.fr/sorties/sortie-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946/,Phil,,12/26/2018 0:00,13.0000000,14.0000000,47.800400000000,-4.180160000000,,Loctudy - Finistère,41035,observation-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946-7,https://biolit.fr/observations/observation-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946-7/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181226_141851.jpg,,TRUE, +N1,59375,sortie-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946,https://biolit.fr/sorties/sortie-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946/,Phil,,12/26/2018 0:00,13.0000000,14.0000000,47.800400000000,-4.180160000000,,Loctudy - Finistère,41037,observation-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946-8,https://biolit.fr/observations/observation-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946-8/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20181226_141712.jpg,,TRUE, +N1,59376,sortie-eb086225-3f95-413f-b670-2e5387d0a328,https://biolit.fr/sorties/sortie-eb086225-3f95-413f-b670-2e5387d0a328/,Phil,,3/30/2019 0:00,12.0000000,12.0:35,47.845026000000,-4.038304000000,,Mousterlin - Finistère,41039,observation-eb086225-3f95-413f-b670-2e5387d0a328,https://biolit.fr/observations/observation-eb086225-3f95-413f-b670-2e5387d0a328/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190330_123017.jpg,,FALSE, +N1,59376,sortie-eb086225-3f95-413f-b670-2e5387d0a328,https://biolit.fr/sorties/sortie-eb086225-3f95-413f-b670-2e5387d0a328/,Phil,,3/30/2019 0:00,12.0000000,12.0:35,47.845026000000,-4.038304000000,,Mousterlin - Finistère,41041,observation-eb086225-3f95-413f-b670-2e5387d0a328-2,https://biolit.fr/observations/observation-eb086225-3f95-413f-b670-2e5387d0a328-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190330_123022.jpg,,FALSE, +N1,59376,sortie-eb086225-3f95-413f-b670-2e5387d0a328,https://biolit.fr/sorties/sortie-eb086225-3f95-413f-b670-2e5387d0a328/,Phil,,3/30/2019 0:00,12.0000000,12.0:35,47.845026000000,-4.038304000000,,Mousterlin - Finistère,41043,observation-eb086225-3f95-413f-b670-2e5387d0a328-3,https://biolit.fr/observations/observation-eb086225-3f95-413f-b670-2e5387d0a328-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190330_123059.jpg,,FALSE, +N1,59376,sortie-eb086225-3f95-413f-b670-2e5387d0a328,https://biolit.fr/sorties/sortie-eb086225-3f95-413f-b670-2e5387d0a328/,Phil,,3/30/2019 0:00,12.0000000,12.0:35,47.845026000000,-4.038304000000,,Mousterlin - Finistère,41045,observation-eb086225-3f95-413f-b670-2e5387d0a328-4,https://biolit.fr/observations/observation-eb086225-3f95-413f-b670-2e5387d0a328-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190330_123156.jpg,,FALSE, +N1,59377,sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d,https://biolit.fr/sorties/sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d/,Kevinlf,,3/30/2019 0:00,18.0:15,18.0000000,48.688516000000,-4.166344000000,,Poulfoën,41047,observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d,https://biolit.fr/observations/observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190330_181545-scaled.jpg,,TRUE, +N1,59377,sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d,https://biolit.fr/sorties/sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d/,Kevinlf,,3/30/2019 0:00,18.0:15,18.0000000,48.688516000000,-4.166344000000,,Poulfoën,41049,observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-2,https://biolit.fr/observations/observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-2/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190330_181552-scaled.jpg,,TRUE, +N1,59377,sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d,https://biolit.fr/sorties/sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d/,Kevinlf,,3/30/2019 0:00,18.0:15,18.0000000,48.688516000000,-4.166344000000,,Poulfoën,41051,observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-3,https://biolit.fr/observations/observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-3/,Palmaria palmata,Goémon à vache,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190330_181645-scaled.jpg,,TRUE, +N1,59377,sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d,https://biolit.fr/sorties/sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d/,Kevinlf,,3/30/2019 0:00,18.0:15,18.0000000,48.688516000000,-4.166344000000,,Poulfoën,41053,observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-4,https://biolit.fr/observations/observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190330_182352-scaled.jpg,,FALSE, +N1,59377,sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d,https://biolit.fr/sorties/sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d/,Kevinlf,,3/30/2019 0:00,18.0:15,18.0000000,48.688516000000,-4.166344000000,,Poulfoën,41055,observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-5,https://biolit.fr/observations/observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-5/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190330_182409-scaled.jpg,,TRUE, +N1,59377,sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d,https://biolit.fr/sorties/sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d/,Kevinlf,,3/30/2019 0:00,18.0:15,18.0000000,48.688516000000,-4.166344000000,,Poulfoën,41057,observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-6,https://biolit.fr/observations/observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-6/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190330_182758-scaled.jpg,,TRUE, +N1,59377,sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d,https://biolit.fr/sorties/sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d/,Kevinlf,,3/30/2019 0:00,18.0:15,18.0000000,48.688516000000,-4.166344000000,,Poulfoën,41059,observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-7,https://biolit.fr/observations/observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190330_182537-scaled.jpg,,FALSE, +N1,59377,sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d,https://biolit.fr/sorties/sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d/,Kevinlf,,3/30/2019 0:00,18.0:15,18.0000000,48.688516000000,-4.166344000000,,Poulfoën,41061,observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-8,https://biolit.fr/observations/observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-8/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190330_181608-scaled.jpg,,TRUE, +N1,59377,sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d,https://biolit.fr/sorties/sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d/,Kevinlf,,3/30/2019 0:00,18.0:15,18.0000000,48.688516000000,-4.166344000000,,Poulfoën,41063,observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-9,https://biolit.fr/observations/observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-9/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190330_181847-scaled.jpg,,TRUE, +N1,59377,sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d,https://biolit.fr/sorties/sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d/,Kevinlf,,3/30/2019 0:00,18.0:15,18.0000000,48.688516000000,-4.166344000000,,Poulfoën,41065,observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-10,https://biolit.fr/observations/observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-10/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190330_183050-scaled.jpg,,TRUE, +N1,59377,sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d,https://biolit.fr/sorties/sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d/,Kevinlf,,3/30/2019 0:00,18.0:15,18.0000000,48.688516000000,-4.166344000000,,Poulfoën,41067,observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-11,https://biolit.fr/observations/observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190330_183340-scaled.jpg,,FALSE, +N1,59377,sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d,https://biolit.fr/sorties/sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d/,Kevinlf,,3/30/2019 0:00,18.0:15,18.0000000,48.688516000000,-4.166344000000,,Poulfoën,41069,observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-12,https://biolit.fr/observations/observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190330_183444-scaled.jpg,,FALSE, +N1,59378,sortie-b45d2620-70ff-4d4c-830b-7a23e50c137b,https://biolit.fr/sorties/sortie-b45d2620-70ff-4d4c-830b-7a23e50c137b/,salamandre,,3/30/2019 0:00,14.0:35,15.0:25,51.070685000000,2.482421000000,,plage de zuycoote,41071,observation-b45d2620-70ff-4d4c-830b-7a23e50c137b,https://biolit.fr/observations/observation-b45d2620-70ff-4d4c-830b-7a23e50c137b/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3301939-scaled.jpg,,FALSE, +N1,59379,sortie-52d0c9fc-b4e3-4af1-b20d-101097b87d9a,https://biolit.fr/sorties/sortie-52d0c9fc-b4e3-4af1-b20d-101097b87d9a/,chloe_cpie,,3/27/2019 0:00,17.0000000,17.0000000,51.050637000000,2.394434000000,,"Malo-les-Bains, Dunkerque",41073,observation-52d0c9fc-b4e3-4af1-b20d-101097b87d9a,https://biolit.fr/observations/observation-52d0c9fc-b4e3-4af1-b20d-101097b87d9a/,Spisula solida,Mactre épaisse,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0092[1].JPG,,TRUE, +N1,59380,sortie-f916a241-4e16-4682-9544-863f711df568,https://biolit.fr/sorties/sortie-f916a241-4e16-4682-9544-863f711df568/,Phil,,7/16/2018 0:00,13.0:25,13.0:35,47.80937900000,-3.712038000000,,Moëllan-sur-Mer - Finistère,41075,observation-f916a241-4e16-4682-9544-863f711df568,https://biolit.fr/observations/observation-f916a241-4e16-4682-9544-863f711df568/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/P1110814.JPG,,TRUE, +N1,59380,sortie-f916a241-4e16-4682-9544-863f711df568,https://biolit.fr/sorties/sortie-f916a241-4e16-4682-9544-863f711df568/,Phil,,7/16/2018 0:00,13.0:25,13.0:35,47.80937900000,-3.712038000000,,Moëllan-sur-Mer - Finistère,41077,observation-f916a241-4e16-4682-9544-863f711df568-2,https://biolit.fr/observations/observation-f916a241-4e16-4682-9544-863f711df568-2/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/P1110820.JPG,,TRUE, +N1,59380,sortie-f916a241-4e16-4682-9544-863f711df568,https://biolit.fr/sorties/sortie-f916a241-4e16-4682-9544-863f711df568/,Phil,,7/16/2018 0:00,13.0:25,13.0:35,47.80937900000,-3.712038000000,,Moëllan-sur-Mer - Finistère,41079,observation-f916a241-4e16-4682-9544-863f711df568-3,https://biolit.fr/observations/observation-f916a241-4e16-4682-9544-863f711df568-3/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1110821.JPG,,TRUE, +N1,59380,sortie-f916a241-4e16-4682-9544-863f711df568,https://biolit.fr/sorties/sortie-f916a241-4e16-4682-9544-863f711df568/,Phil,,7/16/2018 0:00,13.0:25,13.0:35,47.80937900000,-3.712038000000,,Moëllan-sur-Mer - Finistère,41081,observation-f916a241-4e16-4682-9544-863f711df568-4,https://biolit.fr/observations/observation-f916a241-4e16-4682-9544-863f711df568-4/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1110823.JPG,,TRUE, +N1,59380,sortie-f916a241-4e16-4682-9544-863f711df568,https://biolit.fr/sorties/sortie-f916a241-4e16-4682-9544-863f711df568/,Phil,,7/16/2018 0:00,13.0:25,13.0:35,47.80937900000,-3.712038000000,,Moëllan-sur-Mer - Finistère,41083,observation-f916a241-4e16-4682-9544-863f711df568-5,https://biolit.fr/observations/observation-f916a241-4e16-4682-9544-863f711df568-5/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/P1110824.JPG,,TRUE, +N1,59380,sortie-f916a241-4e16-4682-9544-863f711df568,https://biolit.fr/sorties/sortie-f916a241-4e16-4682-9544-863f711df568/,Phil,,7/16/2018 0:00,13.0:25,13.0:35,47.80937900000,-3.712038000000,,Moëllan-sur-Mer - Finistère,41085,observation-f916a241-4e16-4682-9544-863f711df568-6,https://biolit.fr/observations/observation-f916a241-4e16-4682-9544-863f711df568-6/,Clavelina lepadiformis,Grande claveline,,https://biolit.fr/wp-content/uploads/2023/07/P1110829.JPG,,TRUE, +N1,59380,sortie-f916a241-4e16-4682-9544-863f711df568,https://biolit.fr/sorties/sortie-f916a241-4e16-4682-9544-863f711df568/,Phil,,7/16/2018 0:00,13.0:25,13.0:35,47.80937900000,-3.712038000000,,Moëllan-sur-Mer - Finistère,41087,observation-f916a241-4e16-4682-9544-863f711df568-7,https://biolit.fr/observations/observation-f916a241-4e16-4682-9544-863f711df568-7/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110830.JPG,,TRUE, +N1,59380,sortie-f916a241-4e16-4682-9544-863f711df568,https://biolit.fr/sorties/sortie-f916a241-4e16-4682-9544-863f711df568/,Phil,,7/16/2018 0:00,13.0:25,13.0:35,47.80937900000,-3.712038000000,,Moëllan-sur-Mer - Finistère,41089,observation-f916a241-4e16-4682-9544-863f711df568-8,https://biolit.fr/observations/observation-f916a241-4e16-4682-9544-863f711df568-8/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/P1110832.JPG,,TRUE, +N1,59381,sortie-15fce93f-fa5b-4b7c-9960-f494aaf607a3,https://biolit.fr/sorties/sortie-15fce93f-fa5b-4b7c-9960-f494aaf607a3/,Phil,,12/20/2018 0:00,17.0000000,17.0:45,48.211554000000,-4.371640000000,,Telgruc-sur-Mer Finistère,41091,observation-15fce93f-fa5b-4b7c-9960-f494aaf607a3,https://biolit.fr/observations/observation-15fce93f-fa5b-4b7c-9960-f494aaf607a3/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20181220_172029.jpg,,TRUE, +N1,59381,sortie-15fce93f-fa5b-4b7c-9960-f494aaf607a3,https://biolit.fr/sorties/sortie-15fce93f-fa5b-4b7c-9960-f494aaf607a3/,Phil,,12/20/2018 0:00,17.0000000,17.0:45,48.211554000000,-4.371640000000,,Telgruc-sur-Mer Finistère,41093,observation-15fce93f-fa5b-4b7c-9960-f494aaf607a3-2,https://biolit.fr/observations/observation-15fce93f-fa5b-4b7c-9960-f494aaf607a3-2/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/20181220_172244.jpg,,TRUE, +N1,59381,sortie-15fce93f-fa5b-4b7c-9960-f494aaf607a3,https://biolit.fr/sorties/sortie-15fce93f-fa5b-4b7c-9960-f494aaf607a3/,Phil,,12/20/2018 0:00,17.0000000,17.0:45,48.211554000000,-4.371640000000,,Telgruc-sur-Mer Finistère,41095,observation-15fce93f-fa5b-4b7c-9960-f494aaf607a3-3,https://biolit.fr/observations/observation-15fce93f-fa5b-4b7c-9960-f494aaf607a3-3/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20181220_172443.jpg,,TRUE, +N1,59381,sortie-15fce93f-fa5b-4b7c-9960-f494aaf607a3,https://biolit.fr/sorties/sortie-15fce93f-fa5b-4b7c-9960-f494aaf607a3/,Phil,,12/20/2018 0:00,17.0000000,17.0:45,48.211554000000,-4.371640000000,,Telgruc-sur-Mer Finistère,41097,observation-15fce93f-fa5b-4b7c-9960-f494aaf607a3-4,https://biolit.fr/observations/observation-15fce93f-fa5b-4b7c-9960-f494aaf607a3-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181220_174121.jpg,,FALSE, +N1,59381,sortie-15fce93f-fa5b-4b7c-9960-f494aaf607a3,https://biolit.fr/sorties/sortie-15fce93f-fa5b-4b7c-9960-f494aaf607a3/,Phil,,12/20/2018 0:00,17.0000000,17.0:45,48.211554000000,-4.371640000000,,Telgruc-sur-Mer Finistère,41099,observation-15fce93f-fa5b-4b7c-9960-f494aaf607a3-5,https://biolit.fr/observations/observation-15fce93f-fa5b-4b7c-9960-f494aaf607a3-5/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/20181220_174434.jpg,,TRUE, +N1,59382,sortie-22a39c88-c375-4be0-9183-96afa95c0f05,https://biolit.fr/sorties/sortie-22a39c88-c375-4be0-9183-96afa95c0f05/,Classe env St Jo les Maristes,,03/12/2019,8.0000000,10.0000000,43.236067000000,5.359933000000,,plage de la bonne brise,41101,observation-22a39c88-c375-4be0-9183-96afa95c0f05,https://biolit.fr/observations/observation-22a39c88-c375-4be0-9183-96afa95c0f05/,,,,https://biolit.fr/wp-content/uploads/2023/07/image posidonie.jpg,,FALSE, +N1,59382,sortie-22a39c88-c375-4be0-9183-96afa95c0f05,https://biolit.fr/sorties/sortie-22a39c88-c375-4be0-9183-96afa95c0f05/,Classe env St Jo les Maristes,,03/12/2019,8.0000000,10.0000000,43.236067000000,5.359933000000,,plage de la bonne brise,41103,observation-22a39c88-c375-4be0-9183-96afa95c0f05-2,https://biolit.fr/observations/observation-22a39c88-c375-4be0-9183-96afa95c0f05-2/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/image algue rouge.jpg,,TRUE, +N1,59382,sortie-22a39c88-c375-4be0-9183-96afa95c0f05,https://biolit.fr/sorties/sortie-22a39c88-c375-4be0-9183-96afa95c0f05/,Classe env St Jo les Maristes,,03/12/2019,8.0000000,10.0000000,43.236067000000,5.359933000000,,plage de la bonne brise,41105,observation-22a39c88-c375-4be0-9183-96afa95c0f05-3,https://biolit.fr/observations/observation-22a39c88-c375-4be0-9183-96afa95c0f05-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/image de plume.jpg,,FALSE, +N1,59382,sortie-22a39c88-c375-4be0-9183-96afa95c0f05,https://biolit.fr/sorties/sortie-22a39c88-c375-4be0-9183-96afa95c0f05/,Classe env St Jo les Maristes,,03/12/2019,8.0000000,10.0000000,43.236067000000,5.359933000000,,plage de la bonne brise,41107,observation-22a39c88-c375-4be0-9183-96afa95c0f05-4,https://biolit.fr/observations/observation-22a39c88-c375-4be0-9183-96afa95c0f05-4/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/image algue verte.jpg,,TRUE, +N1,59382,sortie-22a39c88-c375-4be0-9183-96afa95c0f05,https://biolit.fr/sorties/sortie-22a39c88-c375-4be0-9183-96afa95c0f05/,Classe env St Jo les Maristes,,03/12/2019,8.0000000,10.0000000,43.236067000000,5.359933000000,,plage de la bonne brise,41109,observation-22a39c88-c375-4be0-9183-96afa95c0f05-5,https://biolit.fr/observations/observation-22a39c88-c375-4be0-9183-96afa95c0f05-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/image coquillage.jpg,,FALSE, +N1,59383,sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f,https://biolit.fr/sorties/sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f/,Classe env St Jo les Maristes,,03/06/2019,9.0000000,12.0000000,43.236054000000,5.360051000000,,"Plage de la Bonne Brise, Marseille 13008",41111,observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f,https://biolit.fr/observations/observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/DSCN4999-scaled.jpg,,TRUE, +N1,59383,sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f,https://biolit.fr/sorties/sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f/,Classe env St Jo les Maristes,,03/06/2019,9.0000000,12.0000000,43.236054000000,5.360051000000,,"Plage de la Bonne Brise, Marseille 13008",41113,observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-2,https://biolit.fr/observations/observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-2/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/DSCN5000-scaled.jpg,,TRUE, +N1,59383,sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f,https://biolit.fr/sorties/sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f/,Classe env St Jo les Maristes,,03/06/2019,9.0000000,12.0000000,43.236054000000,5.360051000000,,"Plage de la Bonne Brise, Marseille 13008",41115,observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-3,https://biolit.fr/observations/observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-3/,Tritia mutabilis,Noisette de mer,,https://biolit.fr/wp-content/uploads/2023/07/DSCN4952-scaled.jpg,,TRUE, +N1,59383,sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f,https://biolit.fr/sorties/sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f/,Classe env St Jo les Maristes,,03/06/2019,9.0000000,12.0000000,43.236054000000,5.360051000000,,"Plage de la Bonne Brise, Marseille 13008",41117,observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-4,https://biolit.fr/observations/observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN4967-scaled.jpg,,FALSE, +N1,59383,sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f,https://biolit.fr/sorties/sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f/,Classe env St Jo les Maristes,,03/06/2019,9.0000000,12.0000000,43.236054000000,5.360051000000,,"Plage de la Bonne Brise, Marseille 13008",41119,observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-5,https://biolit.fr/observations/observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-5/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSCN4968-scaled.jpg,,TRUE, +N1,59383,sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f,https://biolit.fr/sorties/sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f/,Classe env St Jo les Maristes,,03/06/2019,9.0000000,12.0000000,43.236054000000,5.360051000000,,"Plage de la Bonne Brise, Marseille 13008",41121,observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-6,https://biolit.fr/observations/observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-6/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/DSCN4986-scaled.jpg,,TRUE, +N1,59383,sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f,https://biolit.fr/sorties/sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f/,Classe env St Jo les Maristes,,03/06/2019,9.0000000,12.0000000,43.236054000000,5.360051000000,,"Plage de la Bonne Brise, Marseille 13008",41123,observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-7,https://biolit.fr/observations/observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-7/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/DSCN4989-scaled.jpg,,TRUE, +N1,59383,sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f,https://biolit.fr/sorties/sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f/,Classe env St Jo les Maristes,,03/06/2019,9.0000000,12.0000000,43.236054000000,5.360051000000,,"Plage de la Bonne Brise, Marseille 13008",41125,observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-8,https://biolit.fr/observations/observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-8/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSCN4963-scaled.jpg,,TRUE, +N1,59383,sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f,https://biolit.fr/sorties/sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f/,Classe env St Jo les Maristes,,03/06/2019,9.0000000,12.0000000,43.236054000000,5.360051000000,,"Plage de la Bonne Brise, Marseille 13008",41127,observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-9,https://biolit.fr/observations/observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN5006-scaled.jpg,,FALSE, +N1,59383,sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f,https://biolit.fr/sorties/sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f/,Classe env St Jo les Maristes,,03/06/2019,9.0000000,12.0000000,43.236054000000,5.360051000000,,"Plage de la Bonne Brise, Marseille 13008",41129,observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-10,https://biolit.fr/observations/observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-10/,Amphisbetia operculata,Tamaris de mer,,https://biolit.fr/wp-content/uploads/2023/07/DSCN5002-scaled.jpg,,TRUE, +N1,59383,sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f,https://biolit.fr/sorties/sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f/,Classe env St Jo les Maristes,,03/06/2019,9.0000000,12.0000000,43.236054000000,5.360051000000,,"Plage de la Bonne Brise, Marseille 13008",41131,observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-11,https://biolit.fr/observations/observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-11/,Electra posidoniae,Bryozoaire de la posidonie,,https://biolit.fr/wp-content/uploads/2023/07/DSCN4997-scaled.jpg,,TRUE, +N1,59383,sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f,https://biolit.fr/sorties/sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f/,Classe env St Jo les Maristes,,03/06/2019,9.0000000,12.0000000,43.236054000000,5.360051000000,,"Plage de la Bonne Brise, Marseille 13008",41133,observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-12,https://biolit.fr/observations/observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN4958-scaled.jpg,,FALSE, +N1,59383,sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f,https://biolit.fr/sorties/sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f/,Classe env St Jo les Maristes,,03/06/2019,9.0000000,12.0000000,43.236054000000,5.360051000000,,"Plage de la Bonne Brise, Marseille 13008",41135,observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-13,https://biolit.fr/observations/observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-13/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/DSCN4961-scaled.jpg,,TRUE, +N1,59384,sortie-1b72c781-6f61-4a23-967d-9bc8bc963ff2,https://biolit.fr/sorties/sortie-1b72c781-6f61-4a23-967d-9bc8bc963ff2/,ESCALE BRETAGNE,,3/21/2019 0:00,13.0000000,16.0000000,48.639363000000,-2.071455000000,Escale Bretagne,plage de saint Énogat,41137,observation-1b72c781-6f61-4a23-967d-9bc8bc963ff2,https://biolit.fr/observations/observation-1b72c781-6f61-4a23-967d-9bc8bc963ff2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3808.JPG,,FALSE, +N1,59384,sortie-1b72c781-6f61-4a23-967d-9bc8bc963ff2,https://biolit.fr/sorties/sortie-1b72c781-6f61-4a23-967d-9bc8bc963ff2/,ESCALE BRETAGNE,,3/21/2019 0:00,13.0000000,16.0000000,48.639363000000,-2.071455000000,Escale Bretagne,plage de saint Énogat,41139,observation-1b72c781-6f61-4a23-967d-9bc8bc963ff2-2,https://biolit.fr/observations/observation-1b72c781-6f61-4a23-967d-9bc8bc963ff2-2/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3810.JPG,,TRUE, +N1,59384,sortie-1b72c781-6f61-4a23-967d-9bc8bc963ff2,https://biolit.fr/sorties/sortie-1b72c781-6f61-4a23-967d-9bc8bc963ff2/,ESCALE BRETAGNE,,3/21/2019 0:00,13.0000000,16.0000000,48.639363000000,-2.071455000000,Escale Bretagne,plage de saint Énogat,41141,observation-1b72c781-6f61-4a23-967d-9bc8bc963ff2-3,https://biolit.fr/observations/observation-1b72c781-6f61-4a23-967d-9bc8bc963ff2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3811.JPG,,FALSE, +N1,59384,sortie-1b72c781-6f61-4a23-967d-9bc8bc963ff2,https://biolit.fr/sorties/sortie-1b72c781-6f61-4a23-967d-9bc8bc963ff2/,ESCALE BRETAGNE,,3/21/2019 0:00,13.0000000,16.0000000,48.639363000000,-2.071455000000,Escale Bretagne,plage de saint Énogat,41143,observation-1b72c781-6f61-4a23-967d-9bc8bc963ff2-4,https://biolit.fr/observations/observation-1b72c781-6f61-4a23-967d-9bc8bc963ff2-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3812.JPG,,TRUE, +N1,59384,sortie-1b72c781-6f61-4a23-967d-9bc8bc963ff2,https://biolit.fr/sorties/sortie-1b72c781-6f61-4a23-967d-9bc8bc963ff2/,ESCALE BRETAGNE,,3/21/2019 0:00,13.0000000,16.0000000,48.639363000000,-2.071455000000,Escale Bretagne,plage de saint Énogat,41145,observation-1b72c781-6f61-4a23-967d-9bc8bc963ff2-5,https://biolit.fr/observations/observation-1b72c781-6f61-4a23-967d-9bc8bc963ff2-5/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3813.JPG,,TRUE, +N1,59385,sortie-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7,https://biolit.fr/sorties/sortie-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7/,Classe env St Jo les Maristes,,03/12/2019,8.0000000,12.0000000,43.236092000000,5.360045000000,,Plage de le Bonne Brise,41147,observation-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7,https://biolit.fr/observations/observation-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2539c-scaled.jpg,,FALSE, +N1,59385,sortie-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7,https://biolit.fr/sorties/sortie-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7/,Classe env St Jo les Maristes,,03/12/2019,8.0000000,12.0000000,43.236092000000,5.360045000000,,Plage de le Bonne Brise,41149,observation-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7-2,https://biolit.fr/observations/observation-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2531a-scaled.jpg,,FALSE, +N1,59385,sortie-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7,https://biolit.fr/sorties/sortie-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7/,Classe env St Jo les Maristes,,03/12/2019,8.0000000,12.0000000,43.236092000000,5.360045000000,,Plage de le Bonne Brise,41151,observation-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7-3,https://biolit.fr/observations/observation-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7-3/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2540a-scaled.jpg,,TRUE, +N1,59385,sortie-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7,https://biolit.fr/sorties/sortie-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7/,Classe env St Jo les Maristes,,03/12/2019,8.0000000,12.0000000,43.236092000000,5.360045000000,,Plage de le Bonne Brise,41153,observation-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7-4,https://biolit.fr/observations/observation-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2543a-scaled.jpg,,FALSE, +N1,59385,sortie-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7,https://biolit.fr/sorties/sortie-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7/,Classe env St Jo les Maristes,,03/12/2019,8.0000000,12.0000000,43.236092000000,5.360045000000,,Plage de le Bonne Brise,41155,observation-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7-5,https://biolit.fr/observations/observation-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7-5/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2544a-scaled.jpg,,TRUE, +N1,59385,sortie-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7,https://biolit.fr/sorties/sortie-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7/,Classe env St Jo les Maristes,,03/12/2019,8.0000000,12.0000000,43.236092000000,5.360045000000,,Plage de le Bonne Brise,41157,observation-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7-6,https://biolit.fr/observations/observation-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2535b-scaled.jpg,,FALSE, +N1,59386,sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90,https://biolit.fr/sorties/sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90/,Classe env St Jo les Maristes,,3/21/2019 0:00,21.0000000,23.0000000,43.235668000000,5.359680000000,,plage bonne brise,41159,observation-256f712a-5de3-4931-8e2a-4b54fccd2b90,https://biolit.fr/observations/observation-256f712a-5de3-4931-8e2a-4b54fccd2b90/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3120313-scaled.jpg,,FALSE, +N1,59386,sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90,https://biolit.fr/sorties/sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90/,Classe env St Jo les Maristes,,3/21/2019 0:00,21.0000000,23.0000000,43.235668000000,5.359680000000,,plage bonne brise,41161,observation-256f712a-5de3-4931-8e2a-4b54fccd2b90-2,https://biolit.fr/observations/observation-256f712a-5de3-4931-8e2a-4b54fccd2b90-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3120315-scaled.jpg,,FALSE, +N1,59386,sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90,https://biolit.fr/sorties/sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90/,Classe env St Jo les Maristes,,3/21/2019 0:00,21.0000000,23.0000000,43.235668000000,5.359680000000,,plage bonne brise,41163,observation-256f712a-5de3-4931-8e2a-4b54fccd2b90-3,https://biolit.fr/observations/observation-256f712a-5de3-4931-8e2a-4b54fccd2b90-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3120316-scaled.jpg,,FALSE, +N1,59386,sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90,https://biolit.fr/sorties/sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90/,Classe env St Jo les Maristes,,3/21/2019 0:00,21.0000000,23.0000000,43.235668000000,5.359680000000,,plage bonne brise,41165,observation-256f712a-5de3-4931-8e2a-4b54fccd2b90-4,https://biolit.fr/observations/observation-256f712a-5de3-4931-8e2a-4b54fccd2b90-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3120312-scaled.jpg,,FALSE, +N1,59386,sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90,https://biolit.fr/sorties/sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90/,Classe env St Jo les Maristes,,3/21/2019 0:00,21.0000000,23.0000000,43.235668000000,5.359680000000,,plage bonne brise,41167,observation-256f712a-5de3-4931-8e2a-4b54fccd2b90-5,https://biolit.fr/observations/observation-256f712a-5de3-4931-8e2a-4b54fccd2b90-5/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/P3120321-scaled.jpg,,TRUE, +N1,59386,sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90,https://biolit.fr/sorties/sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90/,Classe env St Jo les Maristes,,3/21/2019 0:00,21.0000000,23.0000000,43.235668000000,5.359680000000,,plage bonne brise,41169,observation-256f712a-5de3-4931-8e2a-4b54fccd2b90-6,https://biolit.fr/observations/observation-256f712a-5de3-4931-8e2a-4b54fccd2b90-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3120322-scaled.jpg,,FALSE, +N1,59386,sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90,https://biolit.fr/sorties/sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90/,Classe env St Jo les Maristes,,3/21/2019 0:00,21.0000000,23.0000000,43.235668000000,5.359680000000,,plage bonne brise,41171,observation-256f712a-5de3-4931-8e2a-4b54fccd2b90-7,https://biolit.fr/observations/observation-256f712a-5de3-4931-8e2a-4b54fccd2b90-7/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/P3120320-scaled.jpg,,TRUE, +N1,59386,sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90,https://biolit.fr/sorties/sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90/,Classe env St Jo les Maristes,,3/21/2019 0:00,21.0000000,23.0000000,43.235668000000,5.359680000000,,plage bonne brise,41173,observation-256f712a-5de3-4931-8e2a-4b54fccd2b90-8,https://biolit.fr/observations/observation-256f712a-5de3-4931-8e2a-4b54fccd2b90-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3120319-scaled.jpg,,FALSE, +N1,59386,sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90,https://biolit.fr/sorties/sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90/,Classe env St Jo les Maristes,,3/21/2019 0:00,21.0000000,23.0000000,43.235668000000,5.359680000000,,plage bonne brise,41175,observation-256f712a-5de3-4931-8e2a-4b54fccd2b90-9,https://biolit.fr/observations/observation-256f712a-5de3-4931-8e2a-4b54fccd2b90-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3120318-scaled.jpg,,FALSE, +N1,59387,sortie-049f42db-c253-4b31-8d4f-4b4fc387c60f,https://biolit.fr/sorties/sortie-049f42db-c253-4b31-8d4f-4b4fc387c60f/,Classe env St Jo les Maristes,,03/12/2019,8.0000000,12.0000000,43.236046000000,5.359916000000,,Plage de le Bonne Brise,41177,observation-049f42db-c253-4b31-8d4f-4b4fc387c60f,https://biolit.fr/observations/observation-049f42db-c253-4b31-8d4f-4b4fc387c60f/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20190321-WA0026.jpg,,FALSE, +N1,59387,sortie-049f42db-c253-4b31-8d4f-4b4fc387c60f,https://biolit.fr/sorties/sortie-049f42db-c253-4b31-8d4f-4b4fc387c60f/,Classe env St Jo les Maristes,,03/12/2019,8.0000000,12.0000000,43.236046000000,5.359916000000,,Plage de le Bonne Brise,41179,observation-049f42db-c253-4b31-8d4f-4b4fc387c60f-2,https://biolit.fr/observations/observation-049f42db-c253-4b31-8d4f-4b4fc387c60f-2/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20190321-WA0024.jpg,,TRUE, +N1,59387,sortie-049f42db-c253-4b31-8d4f-4b4fc387c60f,https://biolit.fr/sorties/sortie-049f42db-c253-4b31-8d4f-4b4fc387c60f/,Classe env St Jo les Maristes,,03/12/2019,8.0000000,12.0000000,43.236046000000,5.359916000000,,Plage de le Bonne Brise,41181,observation-049f42db-c253-4b31-8d4f-4b4fc387c60f-3,https://biolit.fr/observations/observation-049f42db-c253-4b31-8d4f-4b4fc387c60f-3/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20190321-WA0004.jpg,,TRUE, +N1,59388,sortie-4273bb1e-6836-4f16-878a-b12a2b407559,https://biolit.fr/sorties/sortie-4273bb1e-6836-4f16-878a-b12a2b407559/,Classe env St Jo les Maristes,,03/12/2019,9.000005,11.0000000,43.299789000000,5.463149000000,,Plage de la Bonne Brise,,,,,,,,,, +N1,59389,sortie-558b771c-1705-4f90-ab80-a496c64ae4d0,https://biolit.fr/sorties/sortie-558b771c-1705-4f90-ab80-a496c64ae4d0/,Classe env St Jo les Maristes,,03/12/2019,9.000005,11.0000000,43.299789000000,5.375259000000,,Plage de la Bonne Brise,41185,observation-558b771c-1705-4f90-ab80-a496c64ae4d0,https://biolit.fr/observations/observation-558b771c-1705-4f90-ab80-a496c64ae4d0/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7978-scaled.jpg,,FALSE, +N1,59390,sortie-2e7f5ef2-978b-4306-82c0-5312b9cc6724,https://biolit.fr/sorties/sortie-2e7f5ef2-978b-4306-82c0-5312b9cc6724/,Classe env St Jo les Maristes,,03/12/2019,9.000005,11.0000000,43.236099000000,5.359884000000,,"Plage de la bonne Brise,Marseille",41187,observation-2e7f5ef2-978b-4306-82c0-5312b9cc6724,https://biolit.fr/observations/observation-2e7f5ef2-978b-4306-82c0-5312b9cc6724/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7977-scaled.jpg,,FALSE, +N1,59391,sortie-9fdde111-296c-47f1-83d7-cfad0bd306a8,https://biolit.fr/sorties/sortie-9fdde111-296c-47f1-83d7-cfad0bd306a8/,Classe env St Jo les Maristes,,3/20/2019 0:00,15.0000000,17.0000000,43.236042000000,5.360002000000,,Plage de la Bonne Brise,41189,observation-9fdde111-296c-47f1-83d7-cfad0bd306a8,https://biolit.fr/observations/observation-9fdde111-296c-47f1-83d7-cfad0bd306a8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190312_093328-scaled.jpg,,FALSE, +N1,59391,sortie-9fdde111-296c-47f1-83d7-cfad0bd306a8,https://biolit.fr/sorties/sortie-9fdde111-296c-47f1-83d7-cfad0bd306a8/,Classe env St Jo les Maristes,,3/20/2019 0:00,15.0000000,17.0000000,43.236042000000,5.360002000000,,Plage de la Bonne Brise,41191,observation-9fdde111-296c-47f1-83d7-cfad0bd306a8-2,https://biolit.fr/observations/observation-9fdde111-296c-47f1-83d7-cfad0bd306a8-2/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190312_093354-scaled.jpg,,TRUE, +N1,59391,sortie-9fdde111-296c-47f1-83d7-cfad0bd306a8,https://biolit.fr/sorties/sortie-9fdde111-296c-47f1-83d7-cfad0bd306a8/,Classe env St Jo les Maristes,,3/20/2019 0:00,15.0000000,17.0000000,43.236042000000,5.360002000000,,Plage de la Bonne Brise,41193,observation-9fdde111-296c-47f1-83d7-cfad0bd306a8-3,https://biolit.fr/observations/observation-9fdde111-296c-47f1-83d7-cfad0bd306a8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0093.JPG,,FALSE, +N1,59391,sortie-9fdde111-296c-47f1-83d7-cfad0bd306a8,https://biolit.fr/sorties/sortie-9fdde111-296c-47f1-83d7-cfad0bd306a8/,Classe env St Jo les Maristes,,3/20/2019 0:00,15.0000000,17.0000000,43.236042000000,5.360002000000,,Plage de la Bonne Brise,41195,observation-9fdde111-296c-47f1-83d7-cfad0bd306a8-4,https://biolit.fr/observations/observation-9fdde111-296c-47f1-83d7-cfad0bd306a8-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0097.JPG,,FALSE, +N1,59392,sortie-e069d964-df36-4e42-a881-89e29ea18e82,https://biolit.fr/sorties/sortie-e069d964-df36-4e42-a881-89e29ea18e82/,Phil,,11/24/2018 0:00,11.0000000,12.0:15,47.80027200000,-4.18023500000,,Loctudy - Finistère,41197,observation-e069d964-df36-4e42-a881-89e29ea18e82,https://biolit.fr/observations/observation-e069d964-df36-4e42-a881-89e29ea18e82/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181124_121547.jpg,,FALSE, +N1,59392,sortie-e069d964-df36-4e42-a881-89e29ea18e82,https://biolit.fr/sorties/sortie-e069d964-df36-4e42-a881-89e29ea18e82/,Phil,,11/24/2018 0:00,11.0000000,12.0:15,47.80027200000,-4.18023500000,,Loctudy - Finistère,41199,observation-e069d964-df36-4e42-a881-89e29ea18e82-2,https://biolit.fr/observations/observation-e069d964-df36-4e42-a881-89e29ea18e82-2/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/20181124_120629.jpg,,TRUE, +N1,59392,sortie-e069d964-df36-4e42-a881-89e29ea18e82,https://biolit.fr/sorties/sortie-e069d964-df36-4e42-a881-89e29ea18e82/,Phil,,11/24/2018 0:00,11.0000000,12.0:15,47.80027200000,-4.18023500000,,Loctudy - Finistère,41201,observation-e069d964-df36-4e42-a881-89e29ea18e82-3,https://biolit.fr/observations/observation-e069d964-df36-4e42-a881-89e29ea18e82-3/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/20181124_120927.jpg,,TRUE, +N1,59392,sortie-e069d964-df36-4e42-a881-89e29ea18e82,https://biolit.fr/sorties/sortie-e069d964-df36-4e42-a881-89e29ea18e82/,Phil,,11/24/2018 0:00,11.0000000,12.0:15,47.80027200000,-4.18023500000,,Loctudy - Finistère,41203,observation-e069d964-df36-4e42-a881-89e29ea18e82-4,https://biolit.fr/observations/observation-e069d964-df36-4e42-a881-89e29ea18e82-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181124_120842.jpg,,TRUE, +N1,59392,sortie-e069d964-df36-4e42-a881-89e29ea18e82,https://biolit.fr/sorties/sortie-e069d964-df36-4e42-a881-89e29ea18e82/,Phil,,11/24/2018 0:00,11.0000000,12.0:15,47.80027200000,-4.18023500000,,Loctudy - Finistère,41205,observation-e069d964-df36-4e42-a881-89e29ea18e82-5,https://biolit.fr/observations/observation-e069d964-df36-4e42-a881-89e29ea18e82-5/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20181124_115713.jpg,,TRUE, +N1,59392,sortie-e069d964-df36-4e42-a881-89e29ea18e82,https://biolit.fr/sorties/sortie-e069d964-df36-4e42-a881-89e29ea18e82/,Phil,,11/24/2018 0:00,11.0000000,12.0:15,47.80027200000,-4.18023500000,,Loctudy - Finistère,41207,observation-e069d964-df36-4e42-a881-89e29ea18e82-6,https://biolit.fr/observations/observation-e069d964-df36-4e42-a881-89e29ea18e82-6/,Balanus crenatus,Balane crénelée,,https://biolit.fr/wp-content/uploads/2023/07/20181124_120215.jpg,,TRUE, +N1,59392,sortie-e069d964-df36-4e42-a881-89e29ea18e82,https://biolit.fr/sorties/sortie-e069d964-df36-4e42-a881-89e29ea18e82/,Phil,,11/24/2018 0:00,11.0000000,12.0:15,47.80027200000,-4.18023500000,,Loctudy - Finistère,41209,observation-e069d964-df36-4e42-a881-89e29ea18e82-7,https://biolit.fr/observations/observation-e069d964-df36-4e42-a881-89e29ea18e82-7/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20181124_120230.jpg,,TRUE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41211,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC00132-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41213,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-2,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02016-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41215,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-3,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC00145-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41217,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-4,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02017-min_0-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41219,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-5,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02018-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41221,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-6,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02019-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41223,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-7,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02024-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41225,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-8,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02027-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41227,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-9,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02028-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41229,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-10,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02030-min_0-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41231,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-11,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02040-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41233,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-12,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02044-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41235,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-13,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02045-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41237,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-14,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02046-min_0-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41239,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-15,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02049-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41241,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-16,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02050-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41243,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-17,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02051-min_0-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41245,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-18,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02053-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41247,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-19,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02054-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41249,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-20,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02061-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41251,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-21,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02062-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41253,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-22,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02064-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41255,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-23,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02066-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41257,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-24,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02072-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41259,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-25,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02073-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41261,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-26,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02074-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41263,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-27,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02075-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41265,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-28,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02076-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41267,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-29,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0714-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41269,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-30,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0725-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41271,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-31,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0729-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41273,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-32,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0731-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41275,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-33,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_E0709-min-scaled.jpg,,FALSE, +N1,59394,sortie-e0be0345-2398-463f-9a1e-3f107f8084ec,https://biolit.fr/sorties/sortie-e0be0345-2398-463f-9a1e-3f107f8084ec/,Phil,,12/26/2018 0:00,13.0:35,13.0:45,47.800019000000,-4.181023000000,,Loctudy - Finistère,41277,observation-e0be0345-2398-463f-9a1e-3f107f8084ec,https://biolit.fr/observations/observation-e0be0345-2398-463f-9a1e-3f107f8084ec/,Tethya citrina,Orange de mer de Manche Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20181226_133526.jpg,,TRUE, +N1,59394,sortie-e0be0345-2398-463f-9a1e-3f107f8084ec,https://biolit.fr/sorties/sortie-e0be0345-2398-463f-9a1e-3f107f8084ec/,Phil,,12/26/2018 0:00,13.0:35,13.0:45,47.800019000000,-4.181023000000,,Loctudy - Finistère,41279,observation-e0be0345-2398-463f-9a1e-3f107f8084ec-2,https://biolit.fr/observations/observation-e0be0345-2398-463f-9a1e-3f107f8084ec-2/,Tethya citrina,Orange de mer de Manche Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20181226_133555.jpg,,TRUE, +N1,59394,sortie-e0be0345-2398-463f-9a1e-3f107f8084ec,https://biolit.fr/sorties/sortie-e0be0345-2398-463f-9a1e-3f107f8084ec/,Phil,,12/26/2018 0:00,13.0:35,13.0:45,47.800019000000,-4.181023000000,,Loctudy - Finistère,41281,observation-e0be0345-2398-463f-9a1e-3f107f8084ec-3,https://biolit.fr/observations/observation-e0be0345-2398-463f-9a1e-3f107f8084ec-3/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20181226_134023.jpg,,TRUE, +N1,59394,sortie-e0be0345-2398-463f-9a1e-3f107f8084ec,https://biolit.fr/sorties/sortie-e0be0345-2398-463f-9a1e-3f107f8084ec/,Phil,,12/26/2018 0:00,13.0:35,13.0:45,47.800019000000,-4.181023000000,,Loctudy - Finistère,41283,observation-e0be0345-2398-463f-9a1e-3f107f8084ec-4,https://biolit.fr/observations/observation-e0be0345-2398-463f-9a1e-3f107f8084ec-4/,Aplysilla rosea,Aplysille rose,,https://biolit.fr/wp-content/uploads/2023/07/20181226_134037.jpg,,TRUE, +N1,59394,sortie-e0be0345-2398-463f-9a1e-3f107f8084ec,https://biolit.fr/sorties/sortie-e0be0345-2398-463f-9a1e-3f107f8084ec/,Phil,,12/26/2018 0:00,13.0:35,13.0:45,47.800019000000,-4.181023000000,,Loctudy - Finistère,41285,observation-e0be0345-2398-463f-9a1e-3f107f8084ec-5,https://biolit.fr/observations/observation-e0be0345-2398-463f-9a1e-3f107f8084ec-5/,Lomentaria articulata,Algue saucisson,,https://biolit.fr/wp-content/uploads/2023/07/20181226_134052.jpg,,TRUE, +N1,59394,sortie-e0be0345-2398-463f-9a1e-3f107f8084ec,https://biolit.fr/sorties/sortie-e0be0345-2398-463f-9a1e-3f107f8084ec/,Phil,,12/26/2018 0:00,13.0:35,13.0:45,47.800019000000,-4.181023000000,,Loctudy - Finistère,41287,observation-e0be0345-2398-463f-9a1e-3f107f8084ec-6,https://biolit.fr/observations/observation-e0be0345-2398-463f-9a1e-3f107f8084ec-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_134458.jpg,,FALSE, +N1,59395,sortie-c681d1b0-369d-4e09-b781-a24dd9314426,https://biolit.fr/sorties/sortie-c681d1b0-369d-4e09-b781-a24dd9314426/,Classe env St Jo les Maristes,,03/12/2019,9.0:25,10.0000000,43.231618000000,5.352932000000,,Plage de la Bonne Brise (ou de la Verrerie),41289,observation-c681d1b0-369d-4e09-b781-a24dd9314426,https://biolit.fr/observations/observation-c681d1b0-369d-4e09-b781-a24dd9314426/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5697-scaled.jpeg,,FALSE, +N1,59396,sortie-6df1b849-8035-4133-84c2-3e581b35f47c,https://biolit.fr/sorties/sortie-6df1b849-8035-4133-84c2-3e581b35f47c/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333310000000,-61.328780000000,,"AME les profs de la nature sur la plage de Morel, Le Moule",41291,observation-6df1b849-8035-4133-84c2-3e581b35f47c,https://biolit.fr/observations/observation-6df1b849-8035-4133-84c2-3e581b35f47c/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02017-min-scaled.jpg,,FALSE, +N1,59396,sortie-6df1b849-8035-4133-84c2-3e581b35f47c,https://biolit.fr/sorties/sortie-6df1b849-8035-4133-84c2-3e581b35f47c/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333310000000,-61.328780000000,,"AME les profs de la nature sur la plage de Morel, Le Moule",41293,observation-6df1b849-8035-4133-84c2-3e581b35f47c-2,https://biolit.fr/observations/observation-6df1b849-8035-4133-84c2-3e581b35f47c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02030-min-scaled.jpg,,FALSE, +N1,59396,sortie-6df1b849-8035-4133-84c2-3e581b35f47c,https://biolit.fr/sorties/sortie-6df1b849-8035-4133-84c2-3e581b35f47c/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333310000000,-61.328780000000,,"AME les profs de la nature sur la plage de Morel, Le Moule",41295,observation-6df1b849-8035-4133-84c2-3e581b35f47c-3,https://biolit.fr/observations/observation-6df1b849-8035-4133-84c2-3e581b35f47c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02046-min-scaled.jpg,,FALSE, +N1,59396,sortie-6df1b849-8035-4133-84c2-3e581b35f47c,https://biolit.fr/sorties/sortie-6df1b849-8035-4133-84c2-3e581b35f47c/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333310000000,-61.328780000000,,"AME les profs de la nature sur la plage de Morel, Le Moule",41297,observation-6df1b849-8035-4133-84c2-3e581b35f47c-4,https://biolit.fr/observations/observation-6df1b849-8035-4133-84c2-3e581b35f47c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02051-min-scaled.jpg,,TRUE,non-identifiable +N1,59396,sortie-6df1b849-8035-4133-84c2-3e581b35f47c,https://biolit.fr/sorties/sortie-6df1b849-8035-4133-84c2-3e581b35f47c/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333310000000,-61.328780000000,,"AME les profs de la nature sur la plage de Morel, Le Moule",41299,observation-6df1b849-8035-4133-84c2-3e581b35f47c-5,https://biolit.fr/observations/observation-6df1b849-8035-4133-84c2-3e581b35f47c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02063-min-scaled.jpg,,FALSE, +N1,59397,sortie-21c55830-87eb-4a65-989b-76f4e97ce9dd,https://biolit.fr/sorties/sortie-21c55830-87eb-4a65-989b-76f4e97ce9dd/,Ecole de la mer,,2/21/2019 0:00,9.0:15,11.0:15,16.333186000000,-61.328549000000,,AME Les profs de la nature à la plage de morel,41301,observation-21c55830-87eb-4a65-989b-76f4e97ce9dd,https://biolit.fr/observations/observation-21c55830-87eb-4a65-989b-76f4e97ce9dd/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC01973-min-scaled.jpg,,FALSE, +N1,59397,sortie-21c55830-87eb-4a65-989b-76f4e97ce9dd,https://biolit.fr/sorties/sortie-21c55830-87eb-4a65-989b-76f4e97ce9dd/,Ecole de la mer,,2/21/2019 0:00,9.0:15,11.0:15,16.333186000000,-61.328549000000,,AME Les profs de la nature à la plage de morel,41303,observation-21c55830-87eb-4a65-989b-76f4e97ce9dd-2,https://biolit.fr/observations/observation-21c55830-87eb-4a65-989b-76f4e97ce9dd-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC01987-min-scaled.jpg,,FALSE, +N1,59397,sortie-21c55830-87eb-4a65-989b-76f4e97ce9dd,https://biolit.fr/sorties/sortie-21c55830-87eb-4a65-989b-76f4e97ce9dd/,Ecole de la mer,,2/21/2019 0:00,9.0:15,11.0:15,16.333186000000,-61.328549000000,,AME Les profs de la nature à la plage de morel,41305,observation-21c55830-87eb-4a65-989b-76f4e97ce9dd-3,https://biolit.fr/observations/observation-21c55830-87eb-4a65-989b-76f4e97ce9dd-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC01990-min-scaled.jpg,,FALSE, +N1,59397,sortie-21c55830-87eb-4a65-989b-76f4e97ce9dd,https://biolit.fr/sorties/sortie-21c55830-87eb-4a65-989b-76f4e97ce9dd/,Ecole de la mer,,2/21/2019 0:00,9.0:15,11.0:15,16.333186000000,-61.328549000000,,AME Les profs de la nature à la plage de morel,41307,observation-21c55830-87eb-4a65-989b-76f4e97ce9dd-4,https://biolit.fr/observations/observation-21c55830-87eb-4a65-989b-76f4e97ce9dd-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC01991-min-scaled.jpg,,FALSE, +N1,59397,sortie-21c55830-87eb-4a65-989b-76f4e97ce9dd,https://biolit.fr/sorties/sortie-21c55830-87eb-4a65-989b-76f4e97ce9dd/,Ecole de la mer,,2/21/2019 0:00,9.0:15,11.0:15,16.333186000000,-61.328549000000,,AME Les profs de la nature à la plage de morel,41309,observation-21c55830-87eb-4a65-989b-76f4e97ce9dd-5,https://biolit.fr/observations/observation-21c55830-87eb-4a65-989b-76f4e97ce9dd-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02011-min_0-scaled.jpg,,FALSE, +N1,59398,sortie-6ba18c8c-72ae-43d6-a8a8-0e9da0ccacc1,https://biolit.fr/sorties/sortie-6ba18c8c-72ae-43d6-a8a8-0e9da0ccacc1/,Phil,,03/08/2019,12.0:55,13.0000000,47.792315000000,-4.286097000000,,Guilvinec - Finistère,41311,observation-6ba18c8c-72ae-43d6-a8a8-0e9da0ccacc1,https://biolit.fr/observations/observation-6ba18c8c-72ae-43d6-a8a8-0e9da0ccacc1/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190308_125839.jpg,,FALSE, +N1,59398,sortie-6ba18c8c-72ae-43d6-a8a8-0e9da0ccacc1,https://biolit.fr/sorties/sortie-6ba18c8c-72ae-43d6-a8a8-0e9da0ccacc1/,Phil,,03/08/2019,12.0:55,13.0000000,47.792315000000,-4.286097000000,,Guilvinec - Finistère,41313,observation-6ba18c8c-72ae-43d6-a8a8-0e9da0ccacc1-2,https://biolit.fr/observations/observation-6ba18c8c-72ae-43d6-a8a8-0e9da0ccacc1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190308_125845.jpg,,FALSE, +N1,59398,sortie-6ba18c8c-72ae-43d6-a8a8-0e9da0ccacc1,https://biolit.fr/sorties/sortie-6ba18c8c-72ae-43d6-a8a8-0e9da0ccacc1/,Phil,,03/08/2019,12.0:55,13.0000000,47.792315000000,-4.286097000000,,Guilvinec - Finistère,41315,observation-6ba18c8c-72ae-43d6-a8a8-0e9da0ccacc1-3,https://biolit.fr/observations/observation-6ba18c8c-72ae-43d6-a8a8-0e9da0ccacc1-3/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20190308_125711.jpg,,TRUE, +N1,59398,sortie-6ba18c8c-72ae-43d6-a8a8-0e9da0ccacc1,https://biolit.fr/sorties/sortie-6ba18c8c-72ae-43d6-a8a8-0e9da0ccacc1/,Phil,,03/08/2019,12.0:55,13.0000000,47.792315000000,-4.286097000000,,Guilvinec - Finistère,41317,observation-6ba18c8c-72ae-43d6-a8a8-0e9da0ccacc1-4,https://biolit.fr/observations/observation-6ba18c8c-72ae-43d6-a8a8-0e9da0ccacc1-4/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20190308_125916.jpg,,TRUE, +N1,59399,sortie-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73,https://biolit.fr/sorties/sortie-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73/,Phil,,12/26/2018 0:00,13.0000000,13.0:35,47.797377000000,-4.177431000000,,Loctudy - Finistère,41319,observation-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73,https://biolit.fr/observations/observation-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73/,Aplysilla sulfurea,Aplysille jaune soufre,,https://biolit.fr/wp-content/uploads/2023/07/20181226_132959.jpg,,TRUE, +N1,59399,sortie-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73,https://biolit.fr/sorties/sortie-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73/,Phil,,12/26/2018 0:00,13.0000000,13.0:35,47.797377000000,-4.177431000000,,Loctudy - Finistère,41321,observation-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73-2,https://biolit.fr/observations/observation-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73-2/,Aplysilla rosea,Aplysille rose,,https://biolit.fr/wp-content/uploads/2023/07/20181226_133007.jpg,,TRUE, +N1,59399,sortie-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73,https://biolit.fr/sorties/sortie-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73/,Phil,,12/26/2018 0:00,13.0000000,13.0:35,47.797377000000,-4.177431000000,,Loctudy - Finistère,41323,observation-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73-3,https://biolit.fr/observations/observation-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73-3/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20181226_133251.jpg,,TRUE, +N1,59399,sortie-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73,https://biolit.fr/sorties/sortie-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73/,Phil,,12/26/2018 0:00,13.0000000,13.0:35,47.797377000000,-4.177431000000,,Loctudy - Finistère,41325,observation-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73-4,https://biolit.fr/observations/observation-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73-4/,Mastocarpus stellatus,Gigartine,,https://biolit.fr/wp-content/uploads/2023/07/20181226_133325.jpg,,TRUE, +N1,59399,sortie-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73,https://biolit.fr/sorties/sortie-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73/,Phil,,12/26/2018 0:00,13.0000000,13.0:35,47.797377000000,-4.177431000000,,Loctudy - Finistère,41327,observation-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73-5,https://biolit.fr/observations/observation-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73-5/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20181226_133425.jpg,,TRUE, +N1,59399,sortie-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73,https://biolit.fr/sorties/sortie-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73/,Phil,,12/26/2018 0:00,13.0000000,13.0:35,47.797377000000,-4.177431000000,,Loctudy - Finistère,41329,observation-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73-6,https://biolit.fr/observations/observation-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73-6/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/20181226_133449.jpg,,TRUE, +N1,59400,sortie-83223cff-0364-4334-bbb0-856f1d7b2df5,https://biolit.fr/sorties/sortie-83223cff-0364-4334-bbb0-856f1d7b2df5/,RBBBM,,2/23/2019 0:00,13.0000000,15.0000000,50.958175000000,-2.24925300000,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),Moëlan sur mer plage de Trenez,41331,observation-83223cff-0364-4334-bbb0-856f1d7b2df5,https://biolit.fr/observations/observation-83223cff-0364-4334-bbb0-856f1d7b2df5/,Patella pellucida,Helcion,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3402.JPG,,TRUE, +N1,59400,sortie-83223cff-0364-4334-bbb0-856f1d7b2df5,https://biolit.fr/sorties/sortie-83223cff-0364-4334-bbb0-856f1d7b2df5/,RBBBM,,2/23/2019 0:00,13.0000000,15.0000000,50.958175000000,-2.24925300000,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),Moëlan sur mer plage de Trenez,41333,observation-83223cff-0364-4334-bbb0-856f1d7b2df5-2,https://biolit.fr/observations/observation-83223cff-0364-4334-bbb0-856f1d7b2df5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/ponte jaune mollsque TR .JPG,,FALSE, +N1,59400,sortie-83223cff-0364-4334-bbb0-856f1d7b2df5,https://biolit.fr/sorties/sortie-83223cff-0364-4334-bbb0-856f1d7b2df5/,RBBBM,,2/23/2019 0:00,13.0000000,15.0000000,50.958175000000,-2.24925300000,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),Moëlan sur mer plage de Trenez,41335,observation-83223cff-0364-4334-bbb0-856f1d7b2df5-3,https://biolit.fr/observations/observation-83223cff-0364-4334-bbb0-856f1d7b2df5-3/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/pousses d'Himanthalle .JPG,,TRUE, +N1,59400,sortie-83223cff-0364-4334-bbb0-856f1d7b2df5,https://biolit.fr/sorties/sortie-83223cff-0364-4334-bbb0-856f1d7b2df5/,RBBBM,,2/23/2019 0:00,13.0000000,15.0000000,50.958175000000,-2.24925300000,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),Moëlan sur mer plage de Trenez,41337,observation-83223cff-0364-4334-bbb0-856f1d7b2df5-4,https://biolit.fr/observations/observation-83223cff-0364-4334-bbb0-856f1d7b2df5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3424.JPG,,FALSE, +N1,59400,sortie-83223cff-0364-4334-bbb0-856f1d7b2df5,https://biolit.fr/sorties/sortie-83223cff-0364-4334-bbb0-856f1d7b2df5/,RBBBM,,2/23/2019 0:00,13.0000000,15.0000000,50.958175000000,-2.24925300000,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),Moëlan sur mer plage de Trenez,41339,observation-83223cff-0364-4334-bbb0-856f1d7b2df5-5,https://biolit.fr/observations/observation-83223cff-0364-4334-bbb0-856f1d7b2df5-5/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3416.JPG,,TRUE, +N1,59400,sortie-83223cff-0364-4334-bbb0-856f1d7b2df5,https://biolit.fr/sorties/sortie-83223cff-0364-4334-bbb0-856f1d7b2df5/,RBBBM,,2/23/2019 0:00,13.0000000,15.0000000,50.958175000000,-2.24925300000,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),Moëlan sur mer plage de Trenez,41341,observation-83223cff-0364-4334-bbb0-856f1d7b2df5-6,https://biolit.fr/observations/observation-83223cff-0364-4334-bbb0-856f1d7b2df5-6/,Schizoporella unicornis,Schizoporella unicorne,,https://biolit.fr/wp-content/uploads/2023/07/ponte Limace Tr .JPG,,TRUE, +N1,59401,sortie-3360666e-562a-4b05-b74f-340b6adc6cb5,https://biolit.fr/sorties/sortie-3360666e-562a-4b05-b74f-340b6adc6cb5/,Phil,,03/06/2019,13.0:25,13.0000000,47.850874000000,-4.021725000000,,Mousterlin - Finistère,41343,observation-3360666e-562a-4b05-b74f-340b6adc6cb5,https://biolit.fr/observations/observation-3360666e-562a-4b05-b74f-340b6adc6cb5/,Delphinus delphis,Dauphin commun,,https://biolit.fr/wp-content/uploads/2023/07/Image3.jpg,,TRUE, +N1,59401,sortie-3360666e-562a-4b05-b74f-340b6adc6cb5,https://biolit.fr/sorties/sortie-3360666e-562a-4b05-b74f-340b6adc6cb5/,Phil,,03/06/2019,13.0:25,13.0000000,47.850874000000,-4.021725000000,,Mousterlin - Finistère,41345,observation-3360666e-562a-4b05-b74f-340b6adc6cb5-2,https://biolit.fr/observations/observation-3360666e-562a-4b05-b74f-340b6adc6cb5-2/,Delphinus delphis,Dauphin commun,,https://biolit.fr/wp-content/uploads/2023/07/20190306_132756.jpg,,TRUE, +N1,59401,sortie-3360666e-562a-4b05-b74f-340b6adc6cb5,https://biolit.fr/sorties/sortie-3360666e-562a-4b05-b74f-340b6adc6cb5/,Phil,,03/06/2019,13.0:25,13.0000000,47.850874000000,-4.021725000000,,Mousterlin - Finistère,41347,observation-3360666e-562a-4b05-b74f-340b6adc6cb5-3,https://biolit.fr/observations/observation-3360666e-562a-4b05-b74f-340b6adc6cb5-3/,Delphinus delphis,Dauphin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120435.JPG,,TRUE, +N1,59401,sortie-3360666e-562a-4b05-b74f-340b6adc6cb5,https://biolit.fr/sorties/sortie-3360666e-562a-4b05-b74f-340b6adc6cb5/,Phil,,03/06/2019,13.0:25,13.0000000,47.850874000000,-4.021725000000,,Mousterlin - Finistère,41349,observation-3360666e-562a-4b05-b74f-340b6adc6cb5-4,https://biolit.fr/observations/observation-3360666e-562a-4b05-b74f-340b6adc6cb5-4/,Delphinus delphis,Dauphin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120468.JPG,,TRUE, +N1,59401,sortie-3360666e-562a-4b05-b74f-340b6adc6cb5,https://biolit.fr/sorties/sortie-3360666e-562a-4b05-b74f-340b6adc6cb5/,Phil,,03/06/2019,13.0:25,13.0000000,47.850874000000,-4.021725000000,,Mousterlin - Finistère,41351,observation-3360666e-562a-4b05-b74f-340b6adc6cb5-5,https://biolit.fr/observations/observation-3360666e-562a-4b05-b74f-340b6adc6cb5-5/,Delphinus delphis,Dauphin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120457.JPG,,TRUE, +N1,59401,sortie-3360666e-562a-4b05-b74f-340b6adc6cb5,https://biolit.fr/sorties/sortie-3360666e-562a-4b05-b74f-340b6adc6cb5/,Phil,,03/06/2019,13.0:25,13.0000000,47.850874000000,-4.021725000000,,Mousterlin - Finistère,41353,observation-3360666e-562a-4b05-b74f-340b6adc6cb5-6,https://biolit.fr/observations/observation-3360666e-562a-4b05-b74f-340b6adc6cb5-6/,Delphinus delphis,Dauphin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120463.JPG,,TRUE, +N1,59401,sortie-3360666e-562a-4b05-b74f-340b6adc6cb5,https://biolit.fr/sorties/sortie-3360666e-562a-4b05-b74f-340b6adc6cb5/,Phil,,03/06/2019,13.0:25,13.0000000,47.850874000000,-4.021725000000,,Mousterlin - Finistère,41355,observation-3360666e-562a-4b05-b74f-340b6adc6cb5-7,https://biolit.fr/observations/observation-3360666e-562a-4b05-b74f-340b6adc6cb5-7/,Delphinus delphis,Dauphin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120448.JPG,,TRUE, +N1,59403,sortie-46481756-c9ee-4af0-a776-37aedeba208e,https://biolit.fr/sorties/sortie-46481756-c9ee-4af0-a776-37aedeba208e/,Phil,,11/24/2018 0:00,11.0000000,11.0000000,47.798815000000,-4.18009600000,,Loctudy - Finistère,41395,observation-46481756-c9ee-4af0-a776-37aedeba208e,https://biolit.fr/observations/observation-46481756-c9ee-4af0-a776-37aedeba208e/,Mesophyllum lichenoides,Mésophylle lichenoïde,,https://biolit.fr/wp-content/uploads/2023/07/20181124_115030.jpg,,TRUE, +N1,59403,sortie-46481756-c9ee-4af0-a776-37aedeba208e,https://biolit.fr/sorties/sortie-46481756-c9ee-4af0-a776-37aedeba208e/,Phil,,11/24/2018 0:00,11.0000000,11.0000000,47.798815000000,-4.18009600000,,Loctudy - Finistère,41397,observation-46481756-c9ee-4af0-a776-37aedeba208e-2,https://biolit.fr/observations/observation-46481756-c9ee-4af0-a776-37aedeba208e-2/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/20181124_114036.jpg,,TRUE, +N1,59403,sortie-46481756-c9ee-4af0-a776-37aedeba208e,https://biolit.fr/sorties/sortie-46481756-c9ee-4af0-a776-37aedeba208e/,Phil,,11/24/2018 0:00,11.0000000,11.0000000,47.798815000000,-4.18009600000,,Loctudy - Finistère,41399,observation-46481756-c9ee-4af0-a776-37aedeba208e-3,https://biolit.fr/observations/observation-46481756-c9ee-4af0-a776-37aedeba208e-3/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/20181124_113956.jpg,,TRUE, +N1,59403,sortie-46481756-c9ee-4af0-a776-37aedeba208e,https://biolit.fr/sorties/sortie-46481756-c9ee-4af0-a776-37aedeba208e/,Phil,,11/24/2018 0:00,11.0000000,11.0000000,47.798815000000,-4.18009600000,,Loctudy - Finistère,41401,observation-46481756-c9ee-4af0-a776-37aedeba208e-4,https://biolit.fr/observations/observation-46481756-c9ee-4af0-a776-37aedeba208e-4/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181124_113915.jpg,,TRUE, +N1,59404,sortie-88e152da-8159-48fa-bb9f-31acf1325d4b,https://biolit.fr/sorties/sortie-88e152da-8159-48fa-bb9f-31acf1325d4b/,Epi Pidou,,7/29/2018 0:00,15.0000000,17.0000000,51.055199000000,2.444312000000,,Malo-les-bains,41403,observation-88e152da-8159-48fa-bb9f-31acf1325d4b,https://biolit.fr/observations/observation-88e152da-8159-48fa-bb9f-31acf1325d4b/,,,,https://biolit.fr/wp-content/uploads/2023/07/mouette.PNG,,FALSE, +N1,59405,sortie-1499b493-9e44-4d4c-93c9-5ebced510313,https://biolit.fr/sorties/sortie-1499b493-9e44-4d4c-93c9-5ebced510313/,Phil,,12/26/2018 0:00,13.0000000,13.0000000,47.796375000000,-4.177929000000,,Loctudy - Finistère,41405,observation-1499b493-9e44-4d4c-93c9-5ebced510313,https://biolit.fr/observations/observation-1499b493-9e44-4d4c-93c9-5ebced510313/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_130842.jpg,,TRUE, +N1,59405,sortie-1499b493-9e44-4d4c-93c9-5ebced510313,https://biolit.fr/sorties/sortie-1499b493-9e44-4d4c-93c9-5ebced510313/,Phil,,12/26/2018 0:00,13.0000000,13.0000000,47.796375000000,-4.177929000000,,Loctudy - Finistère,41407,observation-1499b493-9e44-4d4c-93c9-5ebced510313-2,https://biolit.fr/observations/observation-1499b493-9e44-4d4c-93c9-5ebced510313-2/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_130943.jpg,,TRUE, +N1,59405,sortie-1499b493-9e44-4d4c-93c9-5ebced510313,https://biolit.fr/sorties/sortie-1499b493-9e44-4d4c-93c9-5ebced510313/,Phil,,12/26/2018 0:00,13.0000000,13.0000000,47.796375000000,-4.177929000000,,Loctudy - Finistère,41409,observation-1499b493-9e44-4d4c-93c9-5ebced510313-3,https://biolit.fr/observations/observation-1499b493-9e44-4d4c-93c9-5ebced510313-3/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_131012.jpg,,TRUE, +N1,59405,sortie-1499b493-9e44-4d4c-93c9-5ebced510313,https://biolit.fr/sorties/sortie-1499b493-9e44-4d4c-93c9-5ebced510313/,Phil,,12/26/2018 0:00,13.0000000,13.0000000,47.796375000000,-4.177929000000,,Loctudy - Finistère,41411,observation-1499b493-9e44-4d4c-93c9-5ebced510313-4,https://biolit.fr/observations/observation-1499b493-9e44-4d4c-93c9-5ebced510313-4/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20181226_131051.jpg,,TRUE, +N1,59405,sortie-1499b493-9e44-4d4c-93c9-5ebced510313,https://biolit.fr/sorties/sortie-1499b493-9e44-4d4c-93c9-5ebced510313/,Phil,,12/26/2018 0:00,13.0000000,13.0000000,47.796375000000,-4.177929000000,,Loctudy - Finistère,41413,observation-1499b493-9e44-4d4c-93c9-5ebced510313-5,https://biolit.fr/observations/observation-1499b493-9e44-4d4c-93c9-5ebced510313-5/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_131119.jpg,,TRUE, +N1,59405,sortie-1499b493-9e44-4d4c-93c9-5ebced510313,https://biolit.fr/sorties/sortie-1499b493-9e44-4d4c-93c9-5ebced510313/,Phil,,12/26/2018 0:00,13.0000000,13.0000000,47.796375000000,-4.177929000000,,Loctudy - Finistère,41415,observation-1499b493-9e44-4d4c-93c9-5ebced510313-6,https://biolit.fr/observations/observation-1499b493-9e44-4d4c-93c9-5ebced510313-6/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_131149.jpg,,TRUE, +N1,59405,sortie-1499b493-9e44-4d4c-93c9-5ebced510313,https://biolit.fr/sorties/sortie-1499b493-9e44-4d4c-93c9-5ebced510313/,Phil,,12/26/2018 0:00,13.0000000,13.0000000,47.796375000000,-4.177929000000,,Loctudy - Finistère,41417,observation-1499b493-9e44-4d4c-93c9-5ebced510313-7,https://biolit.fr/observations/observation-1499b493-9e44-4d4c-93c9-5ebced510313-7/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181226_131219.jpg,,TRUE, +N1,59405,sortie-1499b493-9e44-4d4c-93c9-5ebced510313,https://biolit.fr/sorties/sortie-1499b493-9e44-4d4c-93c9-5ebced510313/,Phil,,12/26/2018 0:00,13.0000000,13.0000000,47.796375000000,-4.177929000000,,Loctudy - Finistère,41419,observation-1499b493-9e44-4d4c-93c9-5ebced510313-8,https://biolit.fr/observations/observation-1499b493-9e44-4d4c-93c9-5ebced510313-8/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_131258.jpg,,TRUE, +N1,59406,sortie-811d2916-f07c-4496-bf70-0259f6aabd2b,https://biolit.fr/sorties/sortie-811d2916-f07c-4496-bf70-0259f6aabd2b/,Alice BAUDOT,,2/28/2019 0:00,14.0000000,18.0000000,46.894087000000,0.511561000000,,Perreire,41421,observation-811d2916-f07c-4496-bf70-0259f6aabd2b,https://biolit.fr/observations/observation-811d2916-f07c-4496-bf70-0259f6aabd2b/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190228_161215-scaled.jpg,,TRUE, +N1,59406,sortie-811d2916-f07c-4496-bf70-0259f6aabd2b,https://biolit.fr/sorties/sortie-811d2916-f07c-4496-bf70-0259f6aabd2b/,Alice BAUDOT,,2/28/2019 0:00,14.0000000,18.0000000,46.894087000000,0.511561000000,,Perreire,41423,observation-811d2916-f07c-4496-bf70-0259f6aabd2b-2,https://biolit.fr/observations/observation-811d2916-f07c-4496-bf70-0259f6aabd2b-2/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190228_161058_0-scaled.jpg,,TRUE, +N1,59406,sortie-811d2916-f07c-4496-bf70-0259f6aabd2b,https://biolit.fr/sorties/sortie-811d2916-f07c-4496-bf70-0259f6aabd2b/,Alice BAUDOT,,2/28/2019 0:00,14.0000000,18.0000000,46.894087000000,0.511561000000,,Perreire,41425,observation-811d2916-f07c-4496-bf70-0259f6aabd2b-3,https://biolit.fr/observations/observation-811d2916-f07c-4496-bf70-0259f6aabd2b-3/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190228_153051-scaled.jpg,,TRUE, +N1,59406,sortie-811d2916-f07c-4496-bf70-0259f6aabd2b,https://biolit.fr/sorties/sortie-811d2916-f07c-4496-bf70-0259f6aabd2b/,Alice BAUDOT,,2/28/2019 0:00,14.0000000,18.0000000,46.894087000000,0.511561000000,,Perreire,41427,observation-811d2916-f07c-4496-bf70-0259f6aabd2b-4,https://biolit.fr/observations/observation-811d2916-f07c-4496-bf70-0259f6aabd2b-4/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190228_152053-scaled.jpg,,TRUE, +N1,59406,sortie-811d2916-f07c-4496-bf70-0259f6aabd2b,https://biolit.fr/sorties/sortie-811d2916-f07c-4496-bf70-0259f6aabd2b/,Alice BAUDOT,,2/28/2019 0:00,14.0000000,18.0000000,46.894087000000,0.511561000000,,Perreire,41429,observation-811d2916-f07c-4496-bf70-0259f6aabd2b-5,https://biolit.fr/observations/observation-811d2916-f07c-4496-bf70-0259f6aabd2b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190219_171746-scaled.jpg,,FALSE, +N1,59406,sortie-811d2916-f07c-4496-bf70-0259f6aabd2b,https://biolit.fr/sorties/sortie-811d2916-f07c-4496-bf70-0259f6aabd2b/,Alice BAUDOT,,2/28/2019 0:00,14.0000000,18.0000000,46.894087000000,0.511561000000,,Perreire,41431,observation-811d2916-f07c-4496-bf70-0259f6aabd2b-6,https://biolit.fr/observations/observation-811d2916-f07c-4496-bf70-0259f6aabd2b-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190228_152851-scaled.jpg,,FALSE, +N1,59407,sortie-e56df07b-292e-4466-ba44-ba9904105375,https://biolit.fr/sorties/sortie-e56df07b-292e-4466-ba44-ba9904105375/,Alice BAUDOT,,2/21/2019 0:00,14.0:15,18.0:15,45.529251000000,0.542814000000,,Perreire,41433,observation-e56df07b-292e-4466-ba44-ba9904105375,https://biolit.fr/observations/observation-e56df07b-292e-4466-ba44-ba9904105375/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190228_153433-scaled.jpg,,TRUE, +N1,59408,sortie-101f06a0-6742-4d8e-b85b-5285ee3dd7cf,https://biolit.fr/sorties/sortie-101f06a0-6742-4d8e-b85b-5285ee3dd7cf/,Phil,,7/16/2018 0:00,13.0000000,13.0000000,47.809394000000,-3.711962000000,,Moëllan-sur-Mer - Finistère,41435,observation-101f06a0-6742-4d8e-b85b-5285ee3dd7cf,https://biolit.fr/observations/observation-101f06a0-6742-4d8e-b85b-5285ee3dd7cf/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1110810.JPG,,TRUE, +N1,59408,sortie-101f06a0-6742-4d8e-b85b-5285ee3dd7cf,https://biolit.fr/sorties/sortie-101f06a0-6742-4d8e-b85b-5285ee3dd7cf/,Phil,,7/16/2018 0:00,13.0000000,13.0000000,47.809394000000,-3.711962000000,,Moëllan-sur-Mer - Finistère,41437,observation-101f06a0-6742-4d8e-b85b-5285ee3dd7cf-2,https://biolit.fr/observations/observation-101f06a0-6742-4d8e-b85b-5285ee3dd7cf-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110804.JPG,,FALSE, +N1,59408,sortie-101f06a0-6742-4d8e-b85b-5285ee3dd7cf,https://biolit.fr/sorties/sortie-101f06a0-6742-4d8e-b85b-5285ee3dd7cf/,Phil,,7/16/2018 0:00,13.0000000,13.0000000,47.809394000000,-3.711962000000,,Moëllan-sur-Mer - Finistère,41439,observation-101f06a0-6742-4d8e-b85b-5285ee3dd7cf-3,https://biolit.fr/observations/observation-101f06a0-6742-4d8e-b85b-5285ee3dd7cf-3/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/P1110802.JPG,,TRUE, +N1,59408,sortie-101f06a0-6742-4d8e-b85b-5285ee3dd7cf,https://biolit.fr/sorties/sortie-101f06a0-6742-4d8e-b85b-5285ee3dd7cf/,Phil,,7/16/2018 0:00,13.0000000,13.0000000,47.809394000000,-3.711962000000,,Moëllan-sur-Mer - Finistère,41441,observation-101f06a0-6742-4d8e-b85b-5285ee3dd7cf-4,https://biolit.fr/observations/observation-101f06a0-6742-4d8e-b85b-5285ee3dd7cf-4/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/P1110800.JPG,,TRUE, +N1,59408,sortie-101f06a0-6742-4d8e-b85b-5285ee3dd7cf,https://biolit.fr/sorties/sortie-101f06a0-6742-4d8e-b85b-5285ee3dd7cf/,Phil,,7/16/2018 0:00,13.0000000,13.0000000,47.809394000000,-3.711962000000,,Moëllan-sur-Mer - Finistère,41443,observation-101f06a0-6742-4d8e-b85b-5285ee3dd7cf-5,https://biolit.fr/observations/observation-101f06a0-6742-4d8e-b85b-5285ee3dd7cf-5/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110798.JPG,,TRUE, +N1,59408,sortie-101f06a0-6742-4d8e-b85b-5285ee3dd7cf,https://biolit.fr/sorties/sortie-101f06a0-6742-4d8e-b85b-5285ee3dd7cf/,Phil,,7/16/2018 0:00,13.0000000,13.0000000,47.809394000000,-3.711962000000,,Moëllan-sur-Mer - Finistère,41445,observation-101f06a0-6742-4d8e-b85b-5285ee3dd7cf-6,https://biolit.fr/observations/observation-101f06a0-6742-4d8e-b85b-5285ee3dd7cf-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110797.JPG,,FALSE, +N1,59409,sortie-13538699-32b1-45c2-856d-883059d0ef05,https://biolit.fr/sorties/sortie-13538699-32b1-45c2-856d-883059d0ef05/,Jessica bourcillier,,2/26/2019 0:00,15.0000000,15.0000000,44.549286000000,-1.249154000000,,plage du Petit Nice à la Teste de Buch,41447,observation-13538699-32b1-45c2-856d-883059d0ef05,https://biolit.fr/observations/observation-13538699-32b1-45c2-856d-883059d0ef05/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/sabot.jpg,,TRUE, +N1,59409,sortie-13538699-32b1-45c2-856d-883059d0ef05,https://biolit.fr/sorties/sortie-13538699-32b1-45c2-856d-883059d0ef05/,Jessica bourcillier,,2/26/2019 0:00,15.0000000,15.0000000,44.549286000000,-1.249154000000,,plage du Petit Nice à la Teste de Buch,41449,observation-13538699-32b1-45c2-856d-883059d0ef05-2,https://biolit.fr/observations/observation-13538699-32b1-45c2-856d-883059d0ef05-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue 4.jpg,,FALSE, +N1,59409,sortie-13538699-32b1-45c2-856d-883059d0ef05,https://biolit.fr/sorties/sortie-13538699-32b1-45c2-856d-883059d0ef05/,Jessica bourcillier,,2/26/2019 0:00,15.0000000,15.0000000,44.549286000000,-1.249154000000,,plage du Petit Nice à la Teste de Buch,41451,observation-13538699-32b1-45c2-856d-883059d0ef05-3,https://biolit.fr/observations/observation-13538699-32b1-45c2-856d-883059d0ef05-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue 3.jpg,,FALSE, +N1,59409,sortie-13538699-32b1-45c2-856d-883059d0ef05,https://biolit.fr/sorties/sortie-13538699-32b1-45c2-856d-883059d0ef05/,Jessica bourcillier,,2/26/2019 0:00,15.0000000,15.0000000,44.549286000000,-1.249154000000,,plage du Petit Nice à la Teste de Buch,41453,observation-13538699-32b1-45c2-856d-883059d0ef05-4,https://biolit.fr/observations/observation-13538699-32b1-45c2-856d-883059d0ef05-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/méduse_0.jpg,,FALSE, +N1,59410,sortie-b1ebeda3-0f75-4830-b535-099d726a6c05,https://biolit.fr/sorties/sortie-b1ebeda3-0f75-4830-b535-099d726a6c05/,Phil,,12/26/2018 0:00,13.0000000,13.0000000,47.797096000000,-4.177088000000,,Loctudy - Finistère,41454,observation-b1ebeda3-0f75-4830-b535-099d726a6c05,https://biolit.fr/observations/observation-b1ebeda3-0f75-4830-b535-099d726a6c05/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_125946.jpg,,FALSE, +N1,59410,sortie-b1ebeda3-0f75-4830-b535-099d726a6c05,https://biolit.fr/sorties/sortie-b1ebeda3-0f75-4830-b535-099d726a6c05/,Phil,,12/26/2018 0:00,13.0000000,13.0000000,47.797096000000,-4.177088000000,,Loctudy - Finistère,41456,observation-b1ebeda3-0f75-4830-b535-099d726a6c05-2,https://biolit.fr/observations/observation-b1ebeda3-0f75-4830-b535-099d726a6c05-2/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/2023/07/20181226_130745.jpg,,TRUE, +N1,59410,sortie-b1ebeda3-0f75-4830-b535-099d726a6c05,https://biolit.fr/sorties/sortie-b1ebeda3-0f75-4830-b535-099d726a6c05/,Phil,,12/26/2018 0:00,13.0000000,13.0000000,47.797096000000,-4.177088000000,,Loctudy - Finistère,41458,observation-b1ebeda3-0f75-4830-b535-099d726a6c05-3,https://biolit.fr/observations/observation-b1ebeda3-0f75-4830-b535-099d726a6c05-3/,Lomentaria articulata,Algue saucisson,,https://biolit.fr/wp-content/uploads/2023/07/20181226_130747.jpg,,TRUE, +N1,59410,sortie-b1ebeda3-0f75-4830-b535-099d726a6c05,https://biolit.fr/sorties/sortie-b1ebeda3-0f75-4830-b535-099d726a6c05/,Phil,,12/26/2018 0:00,13.0000000,13.0000000,47.797096000000,-4.177088000000,,Loctudy - Finistère,41460,observation-b1ebeda3-0f75-4830-b535-099d726a6c05-4,https://biolit.fr/observations/observation-b1ebeda3-0f75-4830-b535-099d726a6c05-4/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/2023/07/20181226_130810.jpg,,TRUE, +N1,59410,sortie-b1ebeda3-0f75-4830-b535-099d726a6c05,https://biolit.fr/sorties/sortie-b1ebeda3-0f75-4830-b535-099d726a6c05/,Phil,,12/26/2018 0:00,13.0000000,13.0000000,47.797096000000,-4.177088000000,,Loctudy - Finistère,41462,observation-b1ebeda3-0f75-4830-b535-099d726a6c05-5,https://biolit.fr/observations/observation-b1ebeda3-0f75-4830-b535-099d726a6c05-5/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20181226_130957.jpg,,TRUE, +N1,59411,sortie-796a1532-6f9c-4139-8280-7566192bd9c3,https://biolit.fr/sorties/sortie-796a1532-6f9c-4139-8280-7566192bd9c3/,Nina Colin,,2/20/2019 0:00,14.0000000,16.0000000,48.654051000000,-2.01920500000,,Fort National St Malo,41464,observation-796a1532-6f9c-4139-8280-7566192bd9c3,https://biolit.fr/observations/observation-796a1532-6f9c-4139-8280-7566192bd9c3/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0626-scaled.jpg,,TRUE, +N1,59411,sortie-796a1532-6f9c-4139-8280-7566192bd9c3,https://biolit.fr/sorties/sortie-796a1532-6f9c-4139-8280-7566192bd9c3/,Nina Colin,,2/20/2019 0:00,14.0000000,16.0000000,48.654051000000,-2.01920500000,,Fort National St Malo,41465,observation-796a1532-6f9c-4139-8280-7566192bd9c3-2,https://biolit.fr/observations/observation-796a1532-6f9c-4139-8280-7566192bd9c3-2/,Homarus gammarus,Homard européen,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0634_0-scaled.jpg,,TRUE, +N1,59411,sortie-796a1532-6f9c-4139-8280-7566192bd9c3,https://biolit.fr/sorties/sortie-796a1532-6f9c-4139-8280-7566192bd9c3/,Nina Colin,,2/20/2019 0:00,14.0000000,16.0000000,48.654051000000,-2.01920500000,,Fort National St Malo,41467,observation-796a1532-6f9c-4139-8280-7566192bd9c3-3,https://biolit.fr/observations/observation-796a1532-6f9c-4139-8280-7566192bd9c3-3/,Plagioecia patina,Plagioécie-assiette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0638-scaled.jpg,,TRUE, +N1,59411,sortie-796a1532-6f9c-4139-8280-7566192bd9c3,https://biolit.fr/sorties/sortie-796a1532-6f9c-4139-8280-7566192bd9c3/,Nina Colin,,2/20/2019 0:00,14.0000000,16.0000000,48.654051000000,-2.01920500000,,Fort National St Malo,41469,observation-796a1532-6f9c-4139-8280-7566192bd9c3-4,https://biolit.fr/observations/observation-796a1532-6f9c-4139-8280-7566192bd9c3-4/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0651-scaled.jpg,,TRUE, +N1,59411,sortie-796a1532-6f9c-4139-8280-7566192bd9c3,https://biolit.fr/sorties/sortie-796a1532-6f9c-4139-8280-7566192bd9c3/,Nina Colin,,2/20/2019 0:00,14.0000000,16.0000000,48.654051000000,-2.01920500000,,Fort National St Malo,41471,observation-796a1532-6f9c-4139-8280-7566192bd9c3-5,https://biolit.fr/observations/observation-796a1532-6f9c-4139-8280-7566192bd9c3-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0645-scaled.jpg,,TRUE, +N1,59411,sortie-796a1532-6f9c-4139-8280-7566192bd9c3,https://biolit.fr/sorties/sortie-796a1532-6f9c-4139-8280-7566192bd9c3/,Nina Colin,,2/20/2019 0:00,14.0000000,16.0000000,48.654051000000,-2.01920500000,,Fort National St Malo,41473,observation-796a1532-6f9c-4139-8280-7566192bd9c3-6,https://biolit.fr/observations/observation-796a1532-6f9c-4139-8280-7566192bd9c3-6/,Lomentaria articulata,Algue saucisson,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0649-scaled.jpg,,TRUE, +N1,59411,sortie-796a1532-6f9c-4139-8280-7566192bd9c3,https://biolit.fr/sorties/sortie-796a1532-6f9c-4139-8280-7566192bd9c3/,Nina Colin,,2/20/2019 0:00,14.0000000,16.0000000,48.654051000000,-2.01920500000,,Fort National St Malo,41475,observation-796a1532-6f9c-4139-8280-7566192bd9c3-7,https://biolit.fr/observations/observation-796a1532-6f9c-4139-8280-7566192bd9c3-7/,Mastocarpus stellatus,Gigartine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0648-scaled.jpg,,TRUE, +N1,59411,sortie-796a1532-6f9c-4139-8280-7566192bd9c3,https://biolit.fr/sorties/sortie-796a1532-6f9c-4139-8280-7566192bd9c3/,Nina Colin,,2/20/2019 0:00,14.0000000,16.0000000,48.654051000000,-2.01920500000,,Fort National St Malo,41477,observation-796a1532-6f9c-4139-8280-7566192bd9c3-8,https://biolit.fr/observations/observation-796a1532-6f9c-4139-8280-7566192bd9c3-8/,Parablennius gattorugine,Cabot,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0647-scaled.jpg,",""true""",, +N1,59412,sortie-86832cbe-c01f-4643-8dc9-e3437f083221,https://biolit.fr/sorties/sortie-86832cbe-c01f-4643-8dc9-e3437f083221/,Phil,,02/06/2019,11.0000000,11.0:35,47.797289000000,-4.213125000000,,Lesconil - Finistère,41479,observation-86832cbe-c01f-4643-8dc9-e3437f083221,https://biolit.fr/observations/observation-86832cbe-c01f-4643-8dc9-e3437f083221/,Vertebrata lanosa,Pompon des ascophylles,,https://biolit.fr/wp-content/uploads/2023/07/20190206_113140_1.jpg,,TRUE, +N1,59412,sortie-86832cbe-c01f-4643-8dc9-e3437f083221,https://biolit.fr/sorties/sortie-86832cbe-c01f-4643-8dc9-e3437f083221/,Phil,,02/06/2019,11.0000000,11.0:35,47.797289000000,-4.213125000000,,Lesconil - Finistère,41481,observation-86832cbe-c01f-4643-8dc9-e3437f083221-2,https://biolit.fr/observations/observation-86832cbe-c01f-4643-8dc9-e3437f083221-2/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190206_113138_0.jpg,,TRUE, +N1,59412,sortie-86832cbe-c01f-4643-8dc9-e3437f083221,https://biolit.fr/sorties/sortie-86832cbe-c01f-4643-8dc9-e3437f083221/,Phil,,02/06/2019,11.0000000,11.0:35,47.797289000000,-4.213125000000,,Lesconil - Finistère,41483,observation-86832cbe-c01f-4643-8dc9-e3437f083221-3,https://biolit.fr/observations/observation-86832cbe-c01f-4643-8dc9-e3437f083221-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190206_113113_0.jpg,,TRUE, +N1,59412,sortie-86832cbe-c01f-4643-8dc9-e3437f083221,https://biolit.fr/sorties/sortie-86832cbe-c01f-4643-8dc9-e3437f083221/,Phil,,02/06/2019,11.0000000,11.0:35,47.797289000000,-4.213125000000,,Lesconil - Finistère,41485,observation-86832cbe-c01f-4643-8dc9-e3437f083221-4,https://biolit.fr/observations/observation-86832cbe-c01f-4643-8dc9-e3437f083221-4/,Janua heterostropha,Spirorbe de Pagenstecher,,https://biolit.fr/wp-content/uploads/2023/07/20190206_113152.jpg,,TRUE, +N1,59412,sortie-86832cbe-c01f-4643-8dc9-e3437f083221,https://biolit.fr/sorties/sortie-86832cbe-c01f-4643-8dc9-e3437f083221/,Phil,,02/06/2019,11.0000000,11.0:35,47.797289000000,-4.213125000000,,Lesconil - Finistère,41487,observation-86832cbe-c01f-4643-8dc9-e3437f083221-5,https://biolit.fr/observations/observation-86832cbe-c01f-4643-8dc9-e3437f083221-5/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190206_113229.jpg,,TRUE, +N1,59413,sortie-e9c25f32-f32c-4a6f-bd61-d7e894741de7,https://biolit.fr/sorties/sortie-e9c25f32-f32c-4a6f-bd61-d7e894741de7/,Phil,,12/26/2018 0:00,12.0:55,13.000005,47.798117000000,-4.176684000000,,Loctudy - Finistère,41489,observation-e9c25f32-f32c-4a6f-bd61-d7e894741de7,https://biolit.fr/observations/observation-e9c25f32-f32c-4a6f-bd61-d7e894741de7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_125928.jpg,,FALSE, +N1,59413,sortie-e9c25f32-f32c-4a6f-bd61-d7e894741de7,https://biolit.fr/sorties/sortie-e9c25f32-f32c-4a6f-bd61-d7e894741de7/,Phil,,12/26/2018 0:00,12.0:55,13.000005,47.798117000000,-4.176684000000,,Loctudy - Finistère,41491,observation-e9c25f32-f32c-4a6f-bd61-d7e894741de7-2,https://biolit.fr/observations/observation-e9c25f32-f32c-4a6f-bd61-d7e894741de7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_125858.jpg,,FALSE, +N1,59413,sortie-e9c25f32-f32c-4a6f-bd61-d7e894741de7,https://biolit.fr/sorties/sortie-e9c25f32-f32c-4a6f-bd61-d7e894741de7/,Phil,,12/26/2018 0:00,12.0:55,13.000005,47.798117000000,-4.176684000000,,Loctudy - Finistère,41493,observation-e9c25f32-f32c-4a6f-bd61-d7e894741de7-3,https://biolit.fr/observations/observation-e9c25f32-f32c-4a6f-bd61-d7e894741de7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_125830.jpg,,FALSE, +N1,59413,sortie-e9c25f32-f32c-4a6f-bd61-d7e894741de7,https://biolit.fr/sorties/sortie-e9c25f32-f32c-4a6f-bd61-d7e894741de7/,Phil,,12/26/2018 0:00,12.0:55,13.000005,47.798117000000,-4.176684000000,,Loctudy - Finistère,41495,observation-e9c25f32-f32c-4a6f-bd61-d7e894741de7-4,https://biolit.fr/observations/observation-e9c25f32-f32c-4a6f-bd61-d7e894741de7-4/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20181226_125413.jpg,,TRUE, +N1,59413,sortie-e9c25f32-f32c-4a6f-bd61-d7e894741de7,https://biolit.fr/sorties/sortie-e9c25f32-f32c-4a6f-bd61-d7e894741de7/,Phil,,12/26/2018 0:00,12.0:55,13.000005,47.798117000000,-4.176684000000,,Loctudy - Finistère,41497,observation-e9c25f32-f32c-4a6f-bd61-d7e894741de7-5,https://biolit.fr/observations/observation-e9c25f32-f32c-4a6f-bd61-d7e894741de7-5/,Aplysilla rosea,Aplysille rose,,https://biolit.fr/wp-content/uploads/2023/07/20181226_125406.jpg,,TRUE, +N1,59413,sortie-e9c25f32-f32c-4a6f-bd61-d7e894741de7,https://biolit.fr/sorties/sortie-e9c25f32-f32c-4a6f-bd61-d7e894741de7/,Phil,,12/26/2018 0:00,12.0:55,13.000005,47.798117000000,-4.176684000000,,Loctudy - Finistère,41499,observation-e9c25f32-f32c-4a6f-bd61-d7e894741de7-6,https://biolit.fr/observations/observation-e9c25f32-f32c-4a6f-bd61-d7e894741de7-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_125351.jpg,,FALSE, +N1,59414,sortie-453ec557-a2fd-4764-b4f4-1b56880efbfb,https://biolit.fr/sorties/sortie-453ec557-a2fd-4764-b4f4-1b56880efbfb/,Phil,,02/12/2019,17.0:25,17.0000000,47.795543000000,-4.275401000000,,Léchiagat - Finistère,41501,observation-453ec557-a2fd-4764-b4f4-1b56880efbfb,https://biolit.fr/observations/observation-453ec557-a2fd-4764-b4f4-1b56880efbfb/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190212_172657.jpg,,TRUE, +N1,59414,sortie-453ec557-a2fd-4764-b4f4-1b56880efbfb,https://biolit.fr/sorties/sortie-453ec557-a2fd-4764-b4f4-1b56880efbfb/,Phil,,02/12/2019,17.0:25,17.0000000,47.795543000000,-4.275401000000,,Léchiagat - Finistère,41503,observation-453ec557-a2fd-4764-b4f4-1b56880efbfb-2,https://biolit.fr/observations/observation-453ec557-a2fd-4764-b4f4-1b56880efbfb-2/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20190212_172715.jpg,,TRUE, +N1,59414,sortie-453ec557-a2fd-4764-b4f4-1b56880efbfb,https://biolit.fr/sorties/sortie-453ec557-a2fd-4764-b4f4-1b56880efbfb/,Phil,,02/12/2019,17.0:25,17.0000000,47.795543000000,-4.275401000000,,Léchiagat - Finistère,41505,observation-453ec557-a2fd-4764-b4f4-1b56880efbfb-3,https://biolit.fr/observations/observation-453ec557-a2fd-4764-b4f4-1b56880efbfb-3/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/20190212_172754.jpg,,TRUE, +N1,59414,sortie-453ec557-a2fd-4764-b4f4-1b56880efbfb,https://biolit.fr/sorties/sortie-453ec557-a2fd-4764-b4f4-1b56880efbfb/,Phil,,02/12/2019,17.0:25,17.0000000,47.795543000000,-4.275401000000,,Léchiagat - Finistère,41507,observation-453ec557-a2fd-4764-b4f4-1b56880efbfb-4,https://biolit.fr/observations/observation-453ec557-a2fd-4764-b4f4-1b56880efbfb-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190212_172804.jpg,,TRUE, +N1,59414,sortie-453ec557-a2fd-4764-b4f4-1b56880efbfb,https://biolit.fr/sorties/sortie-453ec557-a2fd-4764-b4f4-1b56880efbfb/,Phil,,02/12/2019,17.0:25,17.0000000,47.795543000000,-4.275401000000,,Léchiagat - Finistère,41509,observation-453ec557-a2fd-4764-b4f4-1b56880efbfb-5,https://biolit.fr/observations/observation-453ec557-a2fd-4764-b4f4-1b56880efbfb-5/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190212_172826.jpg,,TRUE, +N1,59414,sortie-453ec557-a2fd-4764-b4f4-1b56880efbfb,https://biolit.fr/sorties/sortie-453ec557-a2fd-4764-b4f4-1b56880efbfb/,Phil,,02/12/2019,17.0:25,17.0000000,47.795543000000,-4.275401000000,,Léchiagat - Finistère,41511,observation-453ec557-a2fd-4764-b4f4-1b56880efbfb-6,https://biolit.fr/observations/observation-453ec557-a2fd-4764-b4f4-1b56880efbfb-6/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20190212_173052.jpg,,TRUE, +N1,59415,sortie-cec65dd6-c36b-4538-a26d-50d4c6c6f08d,https://biolit.fr/sorties/sortie-cec65dd6-c36b-4538-a26d-50d4c6c6f08d/,Phil,,12/26/2018 0:00,12.0000000,13.0000000,47.797695000000,-4.176934000000,,Loctudy - Finistère,41513,observation-cec65dd6-c36b-4538-a26d-50d4c6c6f08d,https://biolit.fr/observations/observation-cec65dd6-c36b-4538-a26d-50d4c6c6f08d/,Lissoclinum perforatum,Didemne lisse perforé,,https://biolit.fr/wp-content/uploads/2023/07/20181226_124922(0).jpg,,TRUE, +N1,59415,sortie-cec65dd6-c36b-4538-a26d-50d4c6c6f08d,https://biolit.fr/sorties/sortie-cec65dd6-c36b-4538-a26d-50d4c6c6f08d/,Phil,,12/26/2018 0:00,12.0000000,13.0000000,47.797695000000,-4.176934000000,,Loctudy - Finistère,41515,observation-cec65dd6-c36b-4538-a26d-50d4c6c6f08d-2,https://biolit.fr/observations/observation-cec65dd6-c36b-4538-a26d-50d4c6c6f08d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_124933.jpg,,FALSE, +N1,59415,sortie-cec65dd6-c36b-4538-a26d-50d4c6c6f08d,https://biolit.fr/sorties/sortie-cec65dd6-c36b-4538-a26d-50d4c6c6f08d/,Phil,,12/26/2018 0:00,12.0000000,13.0000000,47.797695000000,-4.176934000000,,Loctudy - Finistère,41517,observation-cec65dd6-c36b-4538-a26d-50d4c6c6f08d-3,https://biolit.fr/observations/observation-cec65dd6-c36b-4538-a26d-50d4c6c6f08d-3/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_124953.jpg,,TRUE, +N1,59415,sortie-cec65dd6-c36b-4538-a26d-50d4c6c6f08d,https://biolit.fr/sorties/sortie-cec65dd6-c36b-4538-a26d-50d4c6c6f08d/,Phil,,12/26/2018 0:00,12.0000000,13.0000000,47.797695000000,-4.176934000000,,Loctudy - Finistère,41519,observation-cec65dd6-c36b-4538-a26d-50d4c6c6f08d-4,https://biolit.fr/observations/observation-cec65dd6-c36b-4538-a26d-50d4c6c6f08d-4/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/20181226_125053.jpg,,TRUE, +N1,59415,sortie-cec65dd6-c36b-4538-a26d-50d4c6c6f08d,https://biolit.fr/sorties/sortie-cec65dd6-c36b-4538-a26d-50d4c6c6f08d/,Phil,,12/26/2018 0:00,12.0000000,13.0000000,47.797695000000,-4.176934000000,,Loctudy - Finistère,41521,observation-cec65dd6-c36b-4538-a26d-50d4c6c6f08d-5,https://biolit.fr/observations/observation-cec65dd6-c36b-4538-a26d-50d4c6c6f08d-5/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181226_125106.jpg,,TRUE, +N1,59415,sortie-cec65dd6-c36b-4538-a26d-50d4c6c6f08d,https://biolit.fr/sorties/sortie-cec65dd6-c36b-4538-a26d-50d4c6c6f08d/,Phil,,12/26/2018 0:00,12.0000000,13.0000000,47.797695000000,-4.176934000000,,Loctudy - Finistère,41523,observation-cec65dd6-c36b-4538-a26d-50d4c6c6f08d-6,https://biolit.fr/observations/observation-cec65dd6-c36b-4538-a26d-50d4c6c6f08d-6/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/20181226_125143.jpg,,TRUE, +N1,59415,sortie-cec65dd6-c36b-4538-a26d-50d4c6c6f08d,https://biolit.fr/sorties/sortie-cec65dd6-c36b-4538-a26d-50d4c6c6f08d/,Phil,,12/26/2018 0:00,12.0000000,13.0000000,47.797695000000,-4.176934000000,,Loctudy - Finistère,41525,observation-cec65dd6-c36b-4538-a26d-50d4c6c6f08d-7,https://biolit.fr/observations/observation-cec65dd6-c36b-4538-a26d-50d4c6c6f08d-7/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/20181226_125230.jpg,,TRUE, +N1,59416,sortie-49d567d0-fbca-4f58-8371-a7ba0c9c373e,https://biolit.fr/sorties/sortie-49d567d0-fbca-4f58-8371-a7ba0c9c373e/,Phil,,7/22/2018 0:00,14.0:45,14.0000000,47.707963000000,-3.992054000000,,Fouesnant - Finistère,41527,observation-49d567d0-fbca-4f58-8371-a7ba0c9c373e,https://biolit.fr/observations/observation-49d567d0-fbca-4f58-8371-a7ba0c9c373e/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/P1110991.JPG,,TRUE, +N1,59416,sortie-49d567d0-fbca-4f58-8371-a7ba0c9c373e,https://biolit.fr/sorties/sortie-49d567d0-fbca-4f58-8371-a7ba0c9c373e/,Phil,,7/22/2018 0:00,14.0:45,14.0000000,47.707963000000,-3.992054000000,,Fouesnant - Finistère,41529,observation-49d567d0-fbca-4f58-8371-a7ba0c9c373e-2,https://biolit.fr/observations/observation-49d567d0-fbca-4f58-8371-a7ba0c9c373e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110993.JPG,,FALSE, +N1,59416,sortie-49d567d0-fbca-4f58-8371-a7ba0c9c373e,https://biolit.fr/sorties/sortie-49d567d0-fbca-4f58-8371-a7ba0c9c373e/,Phil,,7/22/2018 0:00,14.0:45,14.0000000,47.707963000000,-3.992054000000,,Fouesnant - Finistère,41531,observation-49d567d0-fbca-4f58-8371-a7ba0c9c373e-3,https://biolit.fr/observations/observation-49d567d0-fbca-4f58-8371-a7ba0c9c373e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110994.JPG,,FALSE, +N1,59416,sortie-49d567d0-fbca-4f58-8371-a7ba0c9c373e,https://biolit.fr/sorties/sortie-49d567d0-fbca-4f58-8371-a7ba0c9c373e/,Phil,,7/22/2018 0:00,14.0:45,14.0000000,47.707963000000,-3.992054000000,,Fouesnant - Finistère,41533,observation-49d567d0-fbca-4f58-8371-a7ba0c9c373e-4,https://biolit.fr/observations/observation-49d567d0-fbca-4f58-8371-a7ba0c9c373e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110995.JPG,,FALSE, +N1,59416,sortie-49d567d0-fbca-4f58-8371-a7ba0c9c373e,https://biolit.fr/sorties/sortie-49d567d0-fbca-4f58-8371-a7ba0c9c373e/,Phil,,7/22/2018 0:00,14.0:45,14.0000000,47.707963000000,-3.992054000000,,Fouesnant - Finistère,41535,observation-49d567d0-fbca-4f58-8371-a7ba0c9c373e-5,https://biolit.fr/observations/observation-49d567d0-fbca-4f58-8371-a7ba0c9c373e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110996.JPG,,FALSE, +N1,59416,sortie-49d567d0-fbca-4f58-8371-a7ba0c9c373e,https://biolit.fr/sorties/sortie-49d567d0-fbca-4f58-8371-a7ba0c9c373e/,Phil,,7/22/2018 0:00,14.0:45,14.0000000,47.707963000000,-3.992054000000,,Fouesnant - Finistère,41537,observation-49d567d0-fbca-4f58-8371-a7ba0c9c373e-6,https://biolit.fr/observations/observation-49d567d0-fbca-4f58-8371-a7ba0c9c373e-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110997.JPG,,FALSE, +N1,59416,sortie-49d567d0-fbca-4f58-8371-a7ba0c9c373e,https://biolit.fr/sorties/sortie-49d567d0-fbca-4f58-8371-a7ba0c9c373e/,Phil,,7/22/2018 0:00,14.0:45,14.0000000,47.707963000000,-3.992054000000,,Fouesnant - Finistère,41539,observation-49d567d0-fbca-4f58-8371-a7ba0c9c373e-7,https://biolit.fr/observations/observation-49d567d0-fbca-4f58-8371-a7ba0c9c373e-7/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1110998.JPG,,TRUE, +N1,59417,sortie-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5,https://biolit.fr/sorties/sortie-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5/,Phil,,12/26/2018 0:00,12.0:45,12.0000000,47.797454000000,-4.177027000000,,Loctudy - Finistère,41541,observation-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5,https://biolit.fr/observations/observation-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_124744.jpg,,TRUE, +N1,59417,sortie-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5,https://biolit.fr/sorties/sortie-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5/,Phil,,12/26/2018 0:00,12.0:45,12.0000000,47.797454000000,-4.177027000000,,Loctudy - Finistère,41543,observation-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5-2,https://biolit.fr/observations/observation-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5-2/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181226_124754.jpg,,TRUE, +N1,59417,sortie-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5,https://biolit.fr/sorties/sortie-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5/,Phil,,12/26/2018 0:00,12.0:45,12.0000000,47.797454000000,-4.177027000000,,Loctudy - Finistère,41545,observation-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5-3,https://biolit.fr/observations/observation-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_124802.jpg,,FALSE, +N1,59417,sortie-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5,https://biolit.fr/sorties/sortie-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5/,Phil,,12/26/2018 0:00,12.0:45,12.0000000,47.797454000000,-4.177027000000,,Loctudy - Finistère,41547,observation-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5-4,https://biolit.fr/observations/observation-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5-4/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/20181226_124835.jpg,,TRUE, +N1,59417,sortie-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5,https://biolit.fr/sorties/sortie-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5/,Phil,,12/26/2018 0:00,12.0:45,12.0000000,47.797454000000,-4.177027000000,,Loctudy - Finistère,41549,observation-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5-5,https://biolit.fr/observations/observation-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5-5/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181226_124807.jpg,,TRUE, +N1,59417,sortie-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5,https://biolit.fr/sorties/sortie-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5/,Phil,,12/26/2018 0:00,12.0:45,12.0000000,47.797454000000,-4.177027000000,,Loctudy - Finistère,41551,observation-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5-6,https://biolit.fr/observations/observation-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5-6/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20181226_124855.jpg,,TRUE, +N1,59418,sortie-40fc67d5-9ed8-47e8-b7c1-7cb35b74c9eb,https://biolit.fr/sorties/sortie-40fc67d5-9ed8-47e8-b7c1-7cb35b74c9eb/,Phil,,02/12/2019,17.0:25,17.0000000,47.795478000000,-4.275620000000,,Léchiagat - Finistère,41553,observation-40fc67d5-9ed8-47e8-b7c1-7cb35b74c9eb,https://biolit.fr/observations/observation-40fc67d5-9ed8-47e8-b7c1-7cb35b74c9eb/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190212_172624.jpg,,TRUE, +N1,59418,sortie-40fc67d5-9ed8-47e8-b7c1-7cb35b74c9eb,https://biolit.fr/sorties/sortie-40fc67d5-9ed8-47e8-b7c1-7cb35b74c9eb/,Phil,,02/12/2019,17.0:25,17.0000000,47.795478000000,-4.275620000000,,Léchiagat - Finistère,41555,observation-40fc67d5-9ed8-47e8-b7c1-7cb35b74c9eb-2,https://biolit.fr/observations/observation-40fc67d5-9ed8-47e8-b7c1-7cb35b74c9eb-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190212_172601.jpg,,TRUE, +N1,59418,sortie-40fc67d5-9ed8-47e8-b7c1-7cb35b74c9eb,https://biolit.fr/sorties/sortie-40fc67d5-9ed8-47e8-b7c1-7cb35b74c9eb/,Phil,,02/12/2019,17.0:25,17.0000000,47.795478000000,-4.275620000000,,Léchiagat - Finistère,41557,observation-40fc67d5-9ed8-47e8-b7c1-7cb35b74c9eb-3,https://biolit.fr/observations/observation-40fc67d5-9ed8-47e8-b7c1-7cb35b74c9eb-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190212_172612.jpg,,TRUE, +N1,59418,sortie-40fc67d5-9ed8-47e8-b7c1-7cb35b74c9eb,https://biolit.fr/sorties/sortie-40fc67d5-9ed8-47e8-b7c1-7cb35b74c9eb/,Phil,,02/12/2019,17.0:25,17.0000000,47.795478000000,-4.275620000000,,Léchiagat - Finistère,41559,observation-40fc67d5-9ed8-47e8-b7c1-7cb35b74c9eb-4,https://biolit.fr/observations/observation-40fc67d5-9ed8-47e8-b7c1-7cb35b74c9eb-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190212_172529.jpg,,FALSE, +N1,59419,sortie-eb908e0f-d929-428b-805e-330ee3392f9f,https://biolit.fr/sorties/sortie-eb908e0f-d929-428b-805e-330ee3392f9f/,Phil,,02/06/2019,11.0:25,11.0000000,47.797453000000,-4.213349000000,,Lesconil - Finistère,41561,observation-eb908e0f-d929-428b-805e-330ee3392f9f,https://biolit.fr/observations/observation-eb908e0f-d929-428b-805e-330ee3392f9f/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20190206_112659.jpg,,TRUE, +N1,59419,sortie-eb908e0f-d929-428b-805e-330ee3392f9f,https://biolit.fr/sorties/sortie-eb908e0f-d929-428b-805e-330ee3392f9f/,Phil,,02/06/2019,11.0:25,11.0000000,47.797453000000,-4.213349000000,,Lesconil - Finistère,41563,observation-eb908e0f-d929-428b-805e-330ee3392f9f-2,https://biolit.fr/observations/observation-eb908e0f-d929-428b-805e-330ee3392f9f-2/,Hymeniacidon perlevis,Eponge-miette de pain,,https://biolit.fr/wp-content/uploads/2023/07/20190206_112823.jpg,,TRUE, +N1,59419,sortie-eb908e0f-d929-428b-805e-330ee3392f9f,https://biolit.fr/sorties/sortie-eb908e0f-d929-428b-805e-330ee3392f9f/,Phil,,02/06/2019,11.0:25,11.0000000,47.797453000000,-4.213349000000,,Lesconil - Finistère,41565,observation-eb908e0f-d929-428b-805e-330ee3392f9f-3,https://biolit.fr/observations/observation-eb908e0f-d929-428b-805e-330ee3392f9f-3/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/20190206_112521.jpg,,TRUE, +N1,59419,sortie-eb908e0f-d929-428b-805e-330ee3392f9f,https://biolit.fr/sorties/sortie-eb908e0f-d929-428b-805e-330ee3392f9f/,Phil,,02/06/2019,11.0:25,11.0000000,47.797453000000,-4.213349000000,,Lesconil - Finistère,41567,observation-eb908e0f-d929-428b-805e-330ee3392f9f-4,https://biolit.fr/observations/observation-eb908e0f-d929-428b-805e-330ee3392f9f-4/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20190206_112848.jpg,,TRUE, +N1,59420,sortie-9346dadf-ff31-470a-83b0-3afb5f02217e,https://biolit.fr/sorties/sortie-9346dadf-ff31-470a-83b0-3afb5f02217e/,Phil,,5/20/2018 0:00,16.0000000,16.0:15,47.800670000000,-4.180997000000,,Loctudy - Finistère,41569,observation-9346dadf-ff31-470a-83b0-3afb5f02217e,https://biolit.fr/observations/observation-9346dadf-ff31-470a-83b0-3afb5f02217e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110571_0.JPG,,FALSE, +N1,59420,sortie-9346dadf-ff31-470a-83b0-3afb5f02217e,https://biolit.fr/sorties/sortie-9346dadf-ff31-470a-83b0-3afb5f02217e/,Phil,,5/20/2018 0:00,16.0000000,16.0:15,47.800670000000,-4.180997000000,,Loctudy - Finistère,41571,observation-9346dadf-ff31-470a-83b0-3afb5f02217e-2,https://biolit.fr/observations/observation-9346dadf-ff31-470a-83b0-3afb5f02217e-2/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1110569.JPG,,TRUE, +N1,59420,sortie-9346dadf-ff31-470a-83b0-3afb5f02217e,https://biolit.fr/sorties/sortie-9346dadf-ff31-470a-83b0-3afb5f02217e/,Phil,,5/20/2018 0:00,16.0000000,16.0:15,47.800670000000,-4.180997000000,,Loctudy - Finistère,41573,observation-9346dadf-ff31-470a-83b0-3afb5f02217e-3,https://biolit.fr/observations/observation-9346dadf-ff31-470a-83b0-3afb5f02217e-3/,Schizoporella unicornis,Schizoporella unicorne,,https://biolit.fr/wp-content/uploads/2023/07/P1110574.JPG,,TRUE, +N1,59420,sortie-9346dadf-ff31-470a-83b0-3afb5f02217e,https://biolit.fr/sorties/sortie-9346dadf-ff31-470a-83b0-3afb5f02217e/,Phil,,5/20/2018 0:00,16.0000000,16.0:15,47.800670000000,-4.180997000000,,Loctudy - Finistère,41575,observation-9346dadf-ff31-470a-83b0-3afb5f02217e-4,https://biolit.fr/observations/observation-9346dadf-ff31-470a-83b0-3afb5f02217e-4/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110575.JPG,,TRUE, +N1,59420,sortie-9346dadf-ff31-470a-83b0-3afb5f02217e,https://biolit.fr/sorties/sortie-9346dadf-ff31-470a-83b0-3afb5f02217e/,Phil,,5/20/2018 0:00,16.0000000,16.0:15,47.800670000000,-4.180997000000,,Loctudy - Finistère,41577,observation-9346dadf-ff31-470a-83b0-3afb5f02217e-5,https://biolit.fr/observations/observation-9346dadf-ff31-470a-83b0-3afb5f02217e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110578.JPG,,FALSE, +N1,59420,sortie-9346dadf-ff31-470a-83b0-3afb5f02217e,https://biolit.fr/sorties/sortie-9346dadf-ff31-470a-83b0-3afb5f02217e/,Phil,,5/20/2018 0:00,16.0000000,16.0:15,47.800670000000,-4.180997000000,,Loctudy - Finistère,41579,observation-9346dadf-ff31-470a-83b0-3afb5f02217e-6,https://biolit.fr/observations/observation-9346dadf-ff31-470a-83b0-3afb5f02217e-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110579.JPG,,FALSE, +N1,59421,sortie-46f30fac-778f-4a65-9f53-0541a473013b,https://biolit.fr/sorties/sortie-46f30fac-778f-4a65-9f53-0541a473013b/,pamatelo,,02/10/2019,8.0000000,10.0000000,43.333857000000,5.197719000000,,"Ensues la redonne ,",41581,observation-46f30fac-778f-4a65-9f53-0541a473013b,https://biolit.fr/observations/observation-46f30fac-778f-4a65-9f53-0541a473013b/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190209_110334.1-scaled.jpg,,FALSE, +N1,59422,sortie-71c4178c-531b-4aae-969d-d08ed39652bb,https://biolit.fr/sorties/sortie-71c4178c-531b-4aae-969d-d08ed39652bb/,Phil,,12/26/2018 0:00,12.0000000,12.0:45,47.798615000000,-4.178057000000,,Loctudy - Finistère,41583,observation-71c4178c-531b-4aae-969d-d08ed39652bb,https://biolit.fr/observations/observation-71c4178c-531b-4aae-969d-d08ed39652bb/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_123951.jpg,,TRUE, +N1,59422,sortie-71c4178c-531b-4aae-969d-d08ed39652bb,https://biolit.fr/sorties/sortie-71c4178c-531b-4aae-969d-d08ed39652bb/,Phil,,12/26/2018 0:00,12.0000000,12.0:45,47.798615000000,-4.178057000000,,Loctudy - Finistère,41585,observation-71c4178c-531b-4aae-969d-d08ed39652bb-2,https://biolit.fr/observations/observation-71c4178c-531b-4aae-969d-d08ed39652bb-2/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_123956.jpg,,TRUE, +N1,59422,sortie-71c4178c-531b-4aae-969d-d08ed39652bb,https://biolit.fr/sorties/sortie-71c4178c-531b-4aae-969d-d08ed39652bb/,Phil,,12/26/2018 0:00,12.0000000,12.0:45,47.798615000000,-4.178057000000,,Loctudy - Finistère,41587,observation-71c4178c-531b-4aae-969d-d08ed39652bb-3,https://biolit.fr/observations/observation-71c4178c-531b-4aae-969d-d08ed39652bb-3/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_124009.jpg,,TRUE, +N1,59422,sortie-71c4178c-531b-4aae-969d-d08ed39652bb,https://biolit.fr/sorties/sortie-71c4178c-531b-4aae-969d-d08ed39652bb/,Phil,,12/26/2018 0:00,12.0000000,12.0:45,47.798615000000,-4.178057000000,,Loctudy - Finistère,41589,observation-71c4178c-531b-4aae-969d-d08ed39652bb-4,https://biolit.fr/observations/observation-71c4178c-531b-4aae-969d-d08ed39652bb-4/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_124017.jpg,,TRUE, +N1,59422,sortie-71c4178c-531b-4aae-969d-d08ed39652bb,https://biolit.fr/sorties/sortie-71c4178c-531b-4aae-969d-d08ed39652bb/,Phil,,12/26/2018 0:00,12.0000000,12.0:45,47.798615000000,-4.178057000000,,Loctudy - Finistère,41591,observation-71c4178c-531b-4aae-969d-d08ed39652bb-5,https://biolit.fr/observations/observation-71c4178c-531b-4aae-969d-d08ed39652bb-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20181226_124030.jpg,,TRUE, +N1,59422,sortie-71c4178c-531b-4aae-969d-d08ed39652bb,https://biolit.fr/sorties/sortie-71c4178c-531b-4aae-969d-d08ed39652bb/,Phil,,12/26/2018 0:00,12.0000000,12.0:45,47.798615000000,-4.178057000000,,Loctudy - Finistère,41593,observation-71c4178c-531b-4aae-969d-d08ed39652bb-6,https://biolit.fr/observations/observation-71c4178c-531b-4aae-969d-d08ed39652bb-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_124046.jpg,,FALSE, +N1,59422,sortie-71c4178c-531b-4aae-969d-d08ed39652bb,https://biolit.fr/sorties/sortie-71c4178c-531b-4aae-969d-d08ed39652bb/,Phil,,12/26/2018 0:00,12.0000000,12.0:45,47.798615000000,-4.178057000000,,Loctudy - Finistère,41595,observation-71c4178c-531b-4aae-969d-d08ed39652bb-7,https://biolit.fr/observations/observation-71c4178c-531b-4aae-969d-d08ed39652bb-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_124735.jpg,,FALSE, +N1,59423,sortie-03c7d241-d867-4af0-b3d2-1d6dca1a207c,https://biolit.fr/sorties/sortie-03c7d241-d867-4af0-b3d2-1d6dca1a207c/,Phil,,02/06/2019,11.0000000,11.0:25,47.797447000000,-4.213356000000,,Lesconil - Finistère,41597,observation-03c7d241-d867-4af0-b3d2-1d6dca1a207c,https://biolit.fr/observations/observation-03c7d241-d867-4af0-b3d2-1d6dca1a207c/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190206_112410.jpg,,FALSE, +N1,59423,sortie-03c7d241-d867-4af0-b3d2-1d6dca1a207c,https://biolit.fr/sorties/sortie-03c7d241-d867-4af0-b3d2-1d6dca1a207c/,Phil,,02/06/2019,11.0000000,11.0:25,47.797447000000,-4.213356000000,,Lesconil - Finistère,41599,observation-03c7d241-d867-4af0-b3d2-1d6dca1a207c-2,https://biolit.fr/observations/observation-03c7d241-d867-4af0-b3d2-1d6dca1a207c-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190206_112445.jpg,,TRUE, +N1,59423,sortie-03c7d241-d867-4af0-b3d2-1d6dca1a207c,https://biolit.fr/sorties/sortie-03c7d241-d867-4af0-b3d2-1d6dca1a207c/,Phil,,02/06/2019,11.0000000,11.0:25,47.797447000000,-4.213356000000,,Lesconil - Finistère,41601,observation-03c7d241-d867-4af0-b3d2-1d6dca1a207c-3,https://biolit.fr/observations/observation-03c7d241-d867-4af0-b3d2-1d6dca1a207c-3/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/20190206_112458.jpg,,TRUE, +N1,59423,sortie-03c7d241-d867-4af0-b3d2-1d6dca1a207c,https://biolit.fr/sorties/sortie-03c7d241-d867-4af0-b3d2-1d6dca1a207c/,Phil,,02/06/2019,11.0000000,11.0:25,47.797447000000,-4.213356000000,,Lesconil - Finistère,41603,observation-03c7d241-d867-4af0-b3d2-1d6dca1a207c-4,https://biolit.fr/observations/observation-03c7d241-d867-4af0-b3d2-1d6dca1a207c-4/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20190206_112022.jpg,,TRUE, +N1,59424,sortie-e389806b-b189-4c12-bf6d-a325a849d43a,https://biolit.fr/sorties/sortie-e389806b-b189-4c12-bf6d-a325a849d43a/,LPO Occitanie (délégation Hérault),,1/30/2019 0:00,9.0000000,10.0000000,43.371676000000,3.543299000000,,"Marseillan, Mas Ultra Marine",41605,observation-e389806b-b189-4c12-bf6d-a325a849d43a,https://biolit.fr/observations/observation-e389806b-b189-4c12-bf6d-a325a849d43a/,Pinna nobilis,Grande nacre,,https://biolit.fr/wp-content/uploads/2023/07/20190205_180946-scaled.jpg,,TRUE, +N1,59425,sortie-dc40e1df-1215-4909-9998-5d3019f80be6,https://biolit.fr/sorties/sortie-dc40e1df-1215-4909-9998-5d3019f80be6/,Phil,,7/16/2018 0:00,13.0:15,13.0000000,47.80866000000,-3.712378000000,,Moëlan-sur-Mer - Finistère,41607,observation-dc40e1df-1215-4909-9998-5d3019f80be6,https://biolit.fr/observations/observation-dc40e1df-1215-4909-9998-5d3019f80be6/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/P1110789.JPG,,TRUE, +N1,59425,sortie-dc40e1df-1215-4909-9998-5d3019f80be6,https://biolit.fr/sorties/sortie-dc40e1df-1215-4909-9998-5d3019f80be6/,Phil,,7/16/2018 0:00,13.0:15,13.0000000,47.80866000000,-3.712378000000,,Moëlan-sur-Mer - Finistère,41609,observation-dc40e1df-1215-4909-9998-5d3019f80be6-2,https://biolit.fr/observations/observation-dc40e1df-1215-4909-9998-5d3019f80be6-2/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/P1110790.JPG,,TRUE, +N1,59425,sortie-dc40e1df-1215-4909-9998-5d3019f80be6,https://biolit.fr/sorties/sortie-dc40e1df-1215-4909-9998-5d3019f80be6/,Phil,,7/16/2018 0:00,13.0:15,13.0000000,47.80866000000,-3.712378000000,,Moëlan-sur-Mer - Finistère,41611,observation-dc40e1df-1215-4909-9998-5d3019f80be6-3,https://biolit.fr/observations/observation-dc40e1df-1215-4909-9998-5d3019f80be6-3/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/P1110793_0.JPG,,TRUE, +N1,59425,sortie-dc40e1df-1215-4909-9998-5d3019f80be6,https://biolit.fr/sorties/sortie-dc40e1df-1215-4909-9998-5d3019f80be6/,Phil,,7/16/2018 0:00,13.0:15,13.0000000,47.80866000000,-3.712378000000,,Moëlan-sur-Mer - Finistère,41613,observation-dc40e1df-1215-4909-9998-5d3019f80be6-4,https://biolit.fr/observations/observation-dc40e1df-1215-4909-9998-5d3019f80be6-4/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1110795.JPG,,TRUE, +N1,59425,sortie-dc40e1df-1215-4909-9998-5d3019f80be6,https://biolit.fr/sorties/sortie-dc40e1df-1215-4909-9998-5d3019f80be6/,Phil,,7/16/2018 0:00,13.0:15,13.0000000,47.80866000000,-3.712378000000,,Moëlan-sur-Mer - Finistère,41615,observation-dc40e1df-1215-4909-9998-5d3019f80be6-5,https://biolit.fr/observations/observation-dc40e1df-1215-4909-9998-5d3019f80be6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110786.JPG,,FALSE, +N1,59425,sortie-dc40e1df-1215-4909-9998-5d3019f80be6,https://biolit.fr/sorties/sortie-dc40e1df-1215-4909-9998-5d3019f80be6/,Phil,,7/16/2018 0:00,13.0:15,13.0000000,47.80866000000,-3.712378000000,,Moëlan-sur-Mer - Finistère,41617,observation-dc40e1df-1215-4909-9998-5d3019f80be6-6,https://biolit.fr/observations/observation-dc40e1df-1215-4909-9998-5d3019f80be6-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110782.JPG,,FALSE, +N1,59425,sortie-dc40e1df-1215-4909-9998-5d3019f80be6,https://biolit.fr/sorties/sortie-dc40e1df-1215-4909-9998-5d3019f80be6/,Phil,,7/16/2018 0:00,13.0:15,13.0000000,47.80866000000,-3.712378000000,,Moëlan-sur-Mer - Finistère,41619,observation-dc40e1df-1215-4909-9998-5d3019f80be6-7,https://biolit.fr/observations/observation-dc40e1df-1215-4909-9998-5d3019f80be6-7/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/P1110779.JPG,,TRUE, +N1,59426,sortie-036305dd-2b0f-403e-b119-06232474233a,https://biolit.fr/sorties/sortie-036305dd-2b0f-403e-b119-06232474233a/,Phil,,12/26/2018 0:00,12.0000000,12.0000000,47.798324000000,-4.177079000000,,Loctudy - Finistère,41621,observation-036305dd-2b0f-403e-b119-06232474233a,https://biolit.fr/observations/observation-036305dd-2b0f-403e-b119-06232474233a/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20181226_123844.jpg,,TRUE, +N1,59426,sortie-036305dd-2b0f-403e-b119-06232474233a,https://biolit.fr/sorties/sortie-036305dd-2b0f-403e-b119-06232474233a/,Phil,,12/26/2018 0:00,12.0000000,12.0000000,47.798324000000,-4.177079000000,,Loctudy - Finistère,41623,observation-036305dd-2b0f-403e-b119-06232474233a-2,https://biolit.fr/observations/observation-036305dd-2b0f-403e-b119-06232474233a-2/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20181226_123851.jpg,,TRUE, +N1,59426,sortie-036305dd-2b0f-403e-b119-06232474233a,https://biolit.fr/sorties/sortie-036305dd-2b0f-403e-b119-06232474233a/,Phil,,12/26/2018 0:00,12.0000000,12.0000000,47.798324000000,-4.177079000000,,Loctudy - Finistère,41625,observation-036305dd-2b0f-403e-b119-06232474233a-3,https://biolit.fr/observations/observation-036305dd-2b0f-403e-b119-06232474233a-3/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/20181226_123157.jpg,,TRUE, +N1,59426,sortie-036305dd-2b0f-403e-b119-06232474233a,https://biolit.fr/sorties/sortie-036305dd-2b0f-403e-b119-06232474233a/,Phil,,12/26/2018 0:00,12.0000000,12.0000000,47.798324000000,-4.177079000000,,Loctudy - Finistère,41627,observation-036305dd-2b0f-403e-b119-06232474233a-4,https://biolit.fr/observations/observation-036305dd-2b0f-403e-b119-06232474233a-4/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/20181226_123944.jpg,,TRUE, +N1,59426,sortie-036305dd-2b0f-403e-b119-06232474233a,https://biolit.fr/sorties/sortie-036305dd-2b0f-403e-b119-06232474233a/,Phil,,12/26/2018 0:00,12.0000000,12.0000000,47.798324000000,-4.177079000000,,Loctudy - Finistère,41629,observation-036305dd-2b0f-403e-b119-06232474233a-5,https://biolit.fr/observations/observation-036305dd-2b0f-403e-b119-06232474233a-5/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/20181226_123259.jpg,,TRUE, +N1,59427,sortie-b8522b05-f2b0-4e37-9245-39a5fc67e7a9,https://biolit.fr/sorties/sortie-b8522b05-f2b0-4e37-9245-39a5fc67e7a9/,Environat,,1/13/2019 0:00,14.0000000,14.0000000,45.57023600000,-0.976126000000,,plage Arnèche,41631,observation-b8522b05-f2b0-4e37-9245-39a5fc67e7a9,https://biolit.fr/observations/observation-b8522b05-f2b0-4e37-9245-39a5fc67e7a9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0006_0-rotated.jpg,,FALSE, +N1,59427,sortie-b8522b05-f2b0-4e37-9245-39a5fc67e7a9,https://biolit.fr/sorties/sortie-b8522b05-f2b0-4e37-9245-39a5fc67e7a9/,Environat,,1/13/2019 0:00,14.0000000,14.0000000,45.57023600000,-0.976126000000,,plage Arnèche,41633,observation-b8522b05-f2b0-4e37-9245-39a5fc67e7a9-2,https://biolit.fr/observations/observation-b8522b05-f2b0-4e37-9245-39a5fc67e7a9-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0004_0-rotated.jpg,,TRUE, +N1,59427,sortie-b8522b05-f2b0-4e37-9245-39a5fc67e7a9,https://biolit.fr/sorties/sortie-b8522b05-f2b0-4e37-9245-39a5fc67e7a9/,Environat,,1/13/2019 0:00,14.0000000,14.0000000,45.57023600000,-0.976126000000,,plage Arnèche,41635,observation-b8522b05-f2b0-4e37-9245-39a5fc67e7a9-3,https://biolit.fr/observations/observation-b8522b05-f2b0-4e37-9245-39a5fc67e7a9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0009_1-rotated.jpg,,FALSE, +N1,59428,sortie-15c4696a-04cf-4b33-b08b-76a7c80d120d,https://biolit.fr/sorties/sortie-15c4696a-04cf-4b33-b08b-76a7c80d120d/,Phil,,9/16/2018 0:00,16.0000000,16.0:55,47.872877000000,-3.930683000000,,Concarneau - Finistère,41637,observation-15c4696a-04cf-4b33-b08b-76a7c80d120d,https://biolit.fr/observations/observation-15c4696a-04cf-4b33-b08b-76a7c80d120d/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180916_165459.jpg,,FALSE, +N1,59428,sortie-15c4696a-04cf-4b33-b08b-76a7c80d120d,https://biolit.fr/sorties/sortie-15c4696a-04cf-4b33-b08b-76a7c80d120d/,Phil,,9/16/2018 0:00,16.0000000,16.0:55,47.872877000000,-3.930683000000,,Concarneau - Finistère,41639,observation-15c4696a-04cf-4b33-b08b-76a7c80d120d-2,https://biolit.fr/observations/observation-15c4696a-04cf-4b33-b08b-76a7c80d120d-2/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/20180916_165445.jpg,,TRUE, +N1,59428,sortie-15c4696a-04cf-4b33-b08b-76a7c80d120d,https://biolit.fr/sorties/sortie-15c4696a-04cf-4b33-b08b-76a7c80d120d/,Phil,,9/16/2018 0:00,16.0000000,16.0:55,47.872877000000,-3.930683000000,,Concarneau - Finistère,41641,observation-15c4696a-04cf-4b33-b08b-76a7c80d120d-3,https://biolit.fr/observations/observation-15c4696a-04cf-4b33-b08b-76a7c80d120d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180916_165438.jpg,,FALSE, +N1,59429,sortie-3ecb6028-6c43-4495-8382-9e152c053873,https://biolit.fr/sorties/sortie-3ecb6028-6c43-4495-8382-9e152c053873/,Phil,,12/26/2018 0:00,12.0:25,12.0000000,47.799391000000,-4.178667000000,,Loctudy - Finistère,41643,observation-3ecb6028-6c43-4495-8382-9e152c053873,https://biolit.fr/observations/observation-3ecb6028-6c43-4495-8382-9e152c053873/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_122720.jpg,,FALSE, +N1,59429,sortie-3ecb6028-6c43-4495-8382-9e152c053873,https://biolit.fr/sorties/sortie-3ecb6028-6c43-4495-8382-9e152c053873/,Phil,,12/26/2018 0:00,12.0:25,12.0000000,47.799391000000,-4.178667000000,,Loctudy - Finistère,41645,observation-3ecb6028-6c43-4495-8382-9e152c053873-2,https://biolit.fr/observations/observation-3ecb6028-6c43-4495-8382-9e152c053873-2/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/20181226_123025.jpg,,TRUE, +N1,59429,sortie-3ecb6028-6c43-4495-8382-9e152c053873,https://biolit.fr/sorties/sortie-3ecb6028-6c43-4495-8382-9e152c053873/,Phil,,12/26/2018 0:00,12.0:25,12.0000000,47.799391000000,-4.178667000000,,Loctudy - Finistère,41647,observation-3ecb6028-6c43-4495-8382-9e152c053873-3,https://biolit.fr/observations/observation-3ecb6028-6c43-4495-8382-9e152c053873-3/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/20181226_123101.jpg,,TRUE, +N1,59429,sortie-3ecb6028-6c43-4495-8382-9e152c053873,https://biolit.fr/sorties/sortie-3ecb6028-6c43-4495-8382-9e152c053873/,Phil,,12/26/2018 0:00,12.0:25,12.0000000,47.799391000000,-4.178667000000,,Loctudy - Finistère,41649,observation-3ecb6028-6c43-4495-8382-9e152c053873-4,https://biolit.fr/observations/observation-3ecb6028-6c43-4495-8382-9e152c053873-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_123032.jpg,,FALSE, +N1,59429,sortie-3ecb6028-6c43-4495-8382-9e152c053873,https://biolit.fr/sorties/sortie-3ecb6028-6c43-4495-8382-9e152c053873/,Phil,,12/26/2018 0:00,12.0:25,12.0000000,47.799391000000,-4.178667000000,,Loctudy - Finistère,41651,observation-3ecb6028-6c43-4495-8382-9e152c053873-5,https://biolit.fr/observations/observation-3ecb6028-6c43-4495-8382-9e152c053873-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_123042.jpg,,FALSE, +N1,59429,sortie-3ecb6028-6c43-4495-8382-9e152c053873,https://biolit.fr/sorties/sortie-3ecb6028-6c43-4495-8382-9e152c053873/,Phil,,12/26/2018 0:00,12.0:25,12.0000000,47.799391000000,-4.178667000000,,Loctudy - Finistère,41653,observation-3ecb6028-6c43-4495-8382-9e152c053873-6,https://biolit.fr/observations/observation-3ecb6028-6c43-4495-8382-9e152c053873-6/,Janua heterostropha,Spirorbe de Pagenstecher,,https://biolit.fr/wp-content/uploads/2023/07/20181226_123037.jpg,,TRUE, +N1,59430,sortie-8c77ccb4-faac-4ea5-8c8b-fbbf7c567bc0,https://biolit.fr/sorties/sortie-8c77ccb4-faac-4ea5-8c8b-fbbf7c567bc0/,Phil,,12/26/2018 0:00,12.0000000,12.0:25,47.797692000000,-4.17761200000,,Loctudy - Finistère,41655,observation-8c77ccb4-faac-4ea5-8c8b-fbbf7c567bc0,https://biolit.fr/observations/observation-8c77ccb4-faac-4ea5-8c8b-fbbf7c567bc0/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_122556.jpg,,TRUE, +N1,59430,sortie-8c77ccb4-faac-4ea5-8c8b-fbbf7c567bc0,https://biolit.fr/sorties/sortie-8c77ccb4-faac-4ea5-8c8b-fbbf7c567bc0/,Phil,,12/26/2018 0:00,12.0000000,12.0:25,47.797692000000,-4.17761200000,,Loctudy - Finistère,41657,observation-8c77ccb4-faac-4ea5-8c8b-fbbf7c567bc0-2,https://biolit.fr/observations/observation-8c77ccb4-faac-4ea5-8c8b-fbbf7c567bc0-2/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_122543.jpg,,TRUE, +N1,59430,sortie-8c77ccb4-faac-4ea5-8c8b-fbbf7c567bc0,https://biolit.fr/sorties/sortie-8c77ccb4-faac-4ea5-8c8b-fbbf7c567bc0/,Phil,,12/26/2018 0:00,12.0000000,12.0:25,47.797692000000,-4.17761200000,,Loctudy - Finistère,41659,observation-8c77ccb4-faac-4ea5-8c8b-fbbf7c567bc0-3,https://biolit.fr/observations/observation-8c77ccb4-faac-4ea5-8c8b-fbbf7c567bc0-3/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_122532.jpg,,TRUE, +N1,59430,sortie-8c77ccb4-faac-4ea5-8c8b-fbbf7c567bc0,https://biolit.fr/sorties/sortie-8c77ccb4-faac-4ea5-8c8b-fbbf7c567bc0/,Phil,,12/26/2018 0:00,12.0000000,12.0:25,47.797692000000,-4.17761200000,,Loctudy - Finistère,41661,observation-8c77ccb4-faac-4ea5-8c8b-fbbf7c567bc0-4,https://biolit.fr/observations/observation-8c77ccb4-faac-4ea5-8c8b-fbbf7c567bc0-4/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20181226_122418.jpg,,TRUE, +N1,59431,sortie-7092ac8c-c225-43e5-bac8-eaa5c716e24b,https://biolit.fr/sorties/sortie-7092ac8c-c225-43e5-bac8-eaa5c716e24b/,Phil,,12/20/2018 0:00,17.0:15,17.0000000,48.210045000000,-4.369031000000,,Telgruc-sur-Mer Finistère,41663,observation-7092ac8c-c225-43e5-bac8-eaa5c716e24b,https://biolit.fr/observations/observation-7092ac8c-c225-43e5-bac8-eaa5c716e24b/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20181220_171517.jpg,,TRUE, +N1,59431,sortie-7092ac8c-c225-43e5-bac8-eaa5c716e24b,https://biolit.fr/sorties/sortie-7092ac8c-c225-43e5-bac8-eaa5c716e24b/,Phil,,12/20/2018 0:00,17.0:15,17.0000000,48.210045000000,-4.369031000000,,Telgruc-sur-Mer Finistère,41665,observation-7092ac8c-c225-43e5-bac8-eaa5c716e24b-2,https://biolit.fr/observations/observation-7092ac8c-c225-43e5-bac8-eaa5c716e24b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181220_171459.jpg,,FALSE, +N1,59431,sortie-7092ac8c-c225-43e5-bac8-eaa5c716e24b,https://biolit.fr/sorties/sortie-7092ac8c-c225-43e5-bac8-eaa5c716e24b/,Phil,,12/20/2018 0:00,17.0:15,17.0000000,48.210045000000,-4.369031000000,,Telgruc-sur-Mer Finistère,41667,observation-7092ac8c-c225-43e5-bac8-eaa5c716e24b-3,https://biolit.fr/observations/observation-7092ac8c-c225-43e5-bac8-eaa5c716e24b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181220_171548.jpg,,FALSE, +N1,59431,sortie-7092ac8c-c225-43e5-bac8-eaa5c716e24b,https://biolit.fr/sorties/sortie-7092ac8c-c225-43e5-bac8-eaa5c716e24b/,Phil,,12/20/2018 0:00,17.0:15,17.0000000,48.210045000000,-4.369031000000,,Telgruc-sur-Mer Finistère,41669,observation-7092ac8c-c225-43e5-bac8-eaa5c716e24b-4,https://biolit.fr/observations/observation-7092ac8c-c225-43e5-bac8-eaa5c716e24b-4/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/20181220_171848.jpg,,TRUE, +N1,59432,sortie-ec0cb9ab-2ab6-4a71-b24c-ef0515a4817e,https://biolit.fr/sorties/sortie-ec0cb9ab-2ab6-4a71-b24c-ef0515a4817e/,Phil,,12/26/2018 0:00,12.0:15,12.0:25,47.797878000000,-4.177491000000,,Loctudy - Finistère,41671,observation-ec0cb9ab-2ab6-4a71-b24c-ef0515a4817e,https://biolit.fr/observations/observation-ec0cb9ab-2ab6-4a71-b24c-ef0515a4817e/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/20181226_122149.jpg,,TRUE, +N1,59432,sortie-ec0cb9ab-2ab6-4a71-b24c-ef0515a4817e,https://biolit.fr/sorties/sortie-ec0cb9ab-2ab6-4a71-b24c-ef0515a4817e/,Phil,,12/26/2018 0:00,12.0:15,12.0:25,47.797878000000,-4.177491000000,,Loctudy - Finistère,41673,observation-ec0cb9ab-2ab6-4a71-b24c-ef0515a4817e-2,https://biolit.fr/observations/observation-ec0cb9ab-2ab6-4a71-b24c-ef0515a4817e-2/,Hildenbrandia rubra,Algue-velours rouge,,https://biolit.fr/wp-content/uploads/2023/07/20181226_122222.jpg,,TRUE, +N1,59432,sortie-ec0cb9ab-2ab6-4a71-b24c-ef0515a4817e,https://biolit.fr/sorties/sortie-ec0cb9ab-2ab6-4a71-b24c-ef0515a4817e/,Phil,,12/26/2018 0:00,12.0:15,12.0:25,47.797878000000,-4.177491000000,,Loctudy - Finistère,41675,observation-ec0cb9ab-2ab6-4a71-b24c-ef0515a4817e-3,https://biolit.fr/observations/observation-ec0cb9ab-2ab6-4a71-b24c-ef0515a4817e-3/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/20181226_122357.jpg,,TRUE, +N1,59433,sortie-1f07d7b8-8aa0-4de9-bbd1-0c53c90833f4,https://biolit.fr/sorties/sortie-1f07d7b8-8aa0-4de9-bbd1-0c53c90833f4/,Phil,,11/25/2018 0:00,14.0:35,14.0000000,47.89612800000,-3.968062000000,,La Forêt-Fouesnant - Finistère,41677,observation-1f07d7b8-8aa0-4de9-bbd1-0c53c90833f4,https://biolit.fr/observations/observation-1f07d7b8-8aa0-4de9-bbd1-0c53c90833f4/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/P1120345.JPG,,TRUE, +N1,59433,sortie-1f07d7b8-8aa0-4de9-bbd1-0c53c90833f4,https://biolit.fr/sorties/sortie-1f07d7b8-8aa0-4de9-bbd1-0c53c90833f4/,Phil,,11/25/2018 0:00,14.0:35,14.0000000,47.89612800000,-3.968062000000,,La Forêt-Fouesnant - Finistère,41679,observation-1f07d7b8-8aa0-4de9-bbd1-0c53c90833f4-2,https://biolit.fr/observations/observation-1f07d7b8-8aa0-4de9-bbd1-0c53c90833f4-2/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1120348.JPG,,TRUE, +N1,59434,sortie-c2290ea3-a707-4da2-8d83-222dc50e4670,https://biolit.fr/sorties/sortie-c2290ea3-a707-4da2-8d83-222dc50e4670/,Phil,,12/26/2018 0:00,12.0000000,12.0:15,47.798808000000,-4.17720800000,,Loctudy - Finistère,41681,observation-c2290ea3-a707-4da2-8d83-222dc50e4670,https://biolit.fr/observations/observation-c2290ea3-a707-4da2-8d83-222dc50e4670/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/20181226_121202.jpg,,TRUE, +N1,59434,sortie-c2290ea3-a707-4da2-8d83-222dc50e4670,https://biolit.fr/sorties/sortie-c2290ea3-a707-4da2-8d83-222dc50e4670/,Phil,,12/26/2018 0:00,12.0000000,12.0:15,47.798808000000,-4.17720800000,,Loctudy - Finistère,41683,observation-c2290ea3-a707-4da2-8d83-222dc50e4670-2,https://biolit.fr/observations/observation-c2290ea3-a707-4da2-8d83-222dc50e4670-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_121559.jpg,,FALSE, +N1,59434,sortie-c2290ea3-a707-4da2-8d83-222dc50e4670,https://biolit.fr/sorties/sortie-c2290ea3-a707-4da2-8d83-222dc50e4670/,Phil,,12/26/2018 0:00,12.0000000,12.0:15,47.798808000000,-4.17720800000,,Loctudy - Finistère,41685,observation-c2290ea3-a707-4da2-8d83-222dc50e4670-3,https://biolit.fr/observations/observation-c2290ea3-a707-4da2-8d83-222dc50e4670-3/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181226_121552.jpg,,TRUE, +N1,59434,sortie-c2290ea3-a707-4da2-8d83-222dc50e4670,https://biolit.fr/sorties/sortie-c2290ea3-a707-4da2-8d83-222dc50e4670/,Phil,,12/26/2018 0:00,12.0000000,12.0:15,47.798808000000,-4.17720800000,,Loctudy - Finistère,41687,observation-c2290ea3-a707-4da2-8d83-222dc50e4670-4,https://biolit.fr/observations/observation-c2290ea3-a707-4da2-8d83-222dc50e4670-4/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/20181226_121143.jpg,,TRUE, +N1,59434,sortie-c2290ea3-a707-4da2-8d83-222dc50e4670,https://biolit.fr/sorties/sortie-c2290ea3-a707-4da2-8d83-222dc50e4670/,Phil,,12/26/2018 0:00,12.0000000,12.0:15,47.798808000000,-4.17720800000,,Loctudy - Finistère,41689,observation-c2290ea3-a707-4da2-8d83-222dc50e4670-5,https://biolit.fr/observations/observation-c2290ea3-a707-4da2-8d83-222dc50e4670-5/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20181226_121138.jpg,,TRUE, +N1,59434,sortie-c2290ea3-a707-4da2-8d83-222dc50e4670,https://biolit.fr/sorties/sortie-c2290ea3-a707-4da2-8d83-222dc50e4670/,Phil,,12/26/2018 0:00,12.0000000,12.0:15,47.798808000000,-4.17720800000,,Loctudy - Finistère,41691,observation-c2290ea3-a707-4da2-8d83-222dc50e4670-6,https://biolit.fr/observations/observation-c2290ea3-a707-4da2-8d83-222dc50e4670-6/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20181226_121002.jpg,,TRUE, +N1,59434,sortie-c2290ea3-a707-4da2-8d83-222dc50e4670,https://biolit.fr/sorties/sortie-c2290ea3-a707-4da2-8d83-222dc50e4670/,Phil,,12/26/2018 0:00,12.0000000,12.0:15,47.798808000000,-4.17720800000,,Loctudy - Finistère,41693,observation-c2290ea3-a707-4da2-8d83-222dc50e4670-7,https://biolit.fr/observations/observation-c2290ea3-a707-4da2-8d83-222dc50e4670-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_120949.jpg,,FALSE, +N1,59435,sortie-a6dc0269-a33c-451c-b4fb-3014c851819b,https://biolit.fr/sorties/sortie-a6dc0269-a33c-451c-b4fb-3014c851819b/,RBBBM,,1/21/2019 0:00,21.0000000,23.0000000,47.784535000000,-3.701508000000,,Moëlan plage de Trenez,41695,observation-a6dc0269-a33c-451c-b4fb-3014c851819b,https://biolit.fr/observations/observation-a6dc0269-a33c-451c-b4fb-3014c851819b/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3231-scaled.jpg,,TRUE, +N1,59435,sortie-a6dc0269-a33c-451c-b4fb-3014c851819b,https://biolit.fr/sorties/sortie-a6dc0269-a33c-451c-b4fb-3014c851819b/,RBBBM,,1/21/2019 0:00,21.0000000,23.0000000,47.784535000000,-3.701508000000,,Moëlan plage de Trenez,41697,observation-a6dc0269-a33c-451c-b4fb-3014c851819b-2,https://biolit.fr/observations/observation-a6dc0269-a33c-451c-b4fb-3014c851819b-2/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_3222-scaled.jpg,,TRUE, +N1,59435,sortie-a6dc0269-a33c-451c-b4fb-3014c851819b,https://biolit.fr/sorties/sortie-a6dc0269-a33c-451c-b4fb-3014c851819b/,RBBBM,,1/21/2019 0:00,21.0000000,23.0000000,47.784535000000,-3.701508000000,,Moëlan plage de Trenez,41699,observation-a6dc0269-a33c-451c-b4fb-3014c851819b-3,https://biolit.fr/observations/observation-a6dc0269-a33c-451c-b4fb-3014c851819b-3/,Patella pellucida,Helcion,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3244-scaled.jpg,,TRUE, +N1,59435,sortie-a6dc0269-a33c-451c-b4fb-3014c851819b,https://biolit.fr/sorties/sortie-a6dc0269-a33c-451c-b4fb-3014c851819b/,RBBBM,,1/21/2019 0:00,21.0000000,23.0000000,47.784535000000,-3.701508000000,,Moëlan plage de Trenez,41701,observation-a6dc0269-a33c-451c-b4fb-3014c851819b-4,https://biolit.fr/observations/observation-a6dc0269-a33c-451c-b4fb-3014c851819b-4/,Tethya citrina,Orange de mer de Manche Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3256-scaled.jpg,,TRUE, +N1,59435,sortie-a6dc0269-a33c-451c-b4fb-3014c851819b,https://biolit.fr/sorties/sortie-a6dc0269-a33c-451c-b4fb-3014c851819b/,RBBBM,,1/21/2019 0:00,21.0000000,23.0000000,47.784535000000,-3.701508000000,,Moëlan plage de Trenez,41703,observation-a6dc0269-a33c-451c-b4fb-3014c851819b-5,https://biolit.fr/observations/observation-a6dc0269-a33c-451c-b4fb-3014c851819b-5/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3257-scaled.jpg,,TRUE, +N1,59435,sortie-a6dc0269-a33c-451c-b4fb-3014c851819b,https://biolit.fr/sorties/sortie-a6dc0269-a33c-451c-b4fb-3014c851819b/,RBBBM,,1/21/2019 0:00,21.0000000,23.0000000,47.784535000000,-3.701508000000,,Moëlan plage de Trenez,41705,observation-a6dc0269-a33c-451c-b4fb-3014c851819b-6,https://biolit.fr/observations/observation-a6dc0269-a33c-451c-b4fb-3014c851819b-6/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3247-scaled.jpg,,TRUE, +N1,59436,sortie-4f416cee-e967-44bc-8472-48d79c5ade45,https://biolit.fr/sorties/sortie-4f416cee-e967-44bc-8472-48d79c5ade45/,pamatelo,,01/12/2019,11.0000000,12.0000000,46.190456000000,2.355849000000,,"Ensues la redonne ,",41707,observation-4f416cee-e967-44bc-8472-48d79c5ade45,https://biolit.fr/observations/observation-4f416cee-e967-44bc-8472-48d79c5ade45/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190112_115708 (2)-scaled.jpg,,FALSE, +N1,59436,sortie-4f416cee-e967-44bc-8472-48d79c5ade45,https://biolit.fr/sorties/sortie-4f416cee-e967-44bc-8472-48d79c5ade45/,pamatelo,,01/12/2019,11.0000000,12.0000000,46.190456000000,2.355849000000,,"Ensues la redonne ,",41709,observation-4f416cee-e967-44bc-8472-48d79c5ade45-2,https://biolit.fr/observations/observation-4f416cee-e967-44bc-8472-48d79c5ade45-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190112_121552-scaled.jpg,,FALSE, +N1,59437,sortie-5a703b67-32b3-4b56-ba1c-488b58d96635,https://biolit.fr/sorties/sortie-5a703b67-32b3-4b56-ba1c-488b58d96635/,collège paul Eluard,,01/08/2019,14.0000000,16.0000000,50.688389000000,1.549227000000,,ningles,41711,observation-5a703b67-32b3-4b56-ba1c-488b58d96635,https://biolit.fr/observations/observation-5a703b67-32b3-4b56-ba1c-488b58d96635/,,,,https://biolit.fr/wp-content/uploads/2023/07/kyllian2-scaled.jpg,,FALSE, +N1,59438,sortie-215869e9-85cf-43cc-8978-834f3b0aaacd,https://biolit.fr/sorties/sortie-215869e9-85cf-43cc-8978-834f3b0aaacd/,collège paul Eluard,,12/18/2018 0:00,14.0000000,16.0000000,50.341933000000,1.541030000000,,ningles,41713,observation-215869e9-85cf-43cc-8978-834f3b0aaacd,https://biolit.fr/observations/observation-215869e9-85cf-43cc-8978-834f3b0aaacd/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/07/lucas2.jpg,,TRUE, +N1,59439,sortie-70e965bc-7ec7-4a36-b022-789747163873,https://biolit.fr/sorties/sortie-70e965bc-7ec7-4a36-b022-789747163873/,collège paul Eluard,,12/18/2018 0:00,15.0000000,15.0000000,50.13112800000,1.62342800000,,ningles,41715,observation-70e965bc-7ec7-4a36-b022-789747163873,https://biolit.fr/observations/observation-70e965bc-7ec7-4a36-b022-789747163873/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/jessie4-scaled.jpg,,TRUE, +N1,59440,sortie-aa58e000-f917-4d3f-9672-8e40c5a0b465,https://biolit.fr/sorties/sortie-aa58e000-f917-4d3f-9672-8e40c5a0b465/,ChristineSG,,01/01/2019,14.0000000,15.0000000,44.1841870000,-1.304236000000,,Mimizan plage,41717,observation-aa58e000-f917-4d3f-9672-8e40c5a0b465,https://biolit.fr/observations/observation-aa58e000-f917-4d3f-9672-8e40c5a0b465/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/étoile 1.png,,TRUE, +N1,59440,sortie-aa58e000-f917-4d3f-9672-8e40c5a0b465,https://biolit.fr/sorties/sortie-aa58e000-f917-4d3f-9672-8e40c5a0b465/,ChristineSG,,01/01/2019,14.0000000,15.0000000,44.1841870000,-1.304236000000,,Mimizan plage,41719,observation-aa58e000-f917-4d3f-9672-8e40c5a0b465-2,https://biolit.fr/observations/observation-aa58e000-f917-4d3f-9672-8e40c5a0b465-2/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/étoile 2.png,,TRUE, +N1,59440,sortie-aa58e000-f917-4d3f-9672-8e40c5a0b465,https://biolit.fr/sorties/sortie-aa58e000-f917-4d3f-9672-8e40c5a0b465/,ChristineSG,,01/01/2019,14.0000000,15.0000000,44.1841870000,-1.304236000000,,Mimizan plage,41721,observation-aa58e000-f917-4d3f-9672-8e40c5a0b465-3,https://biolit.fr/observations/observation-aa58e000-f917-4d3f-9672-8e40c5a0b465-3/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/étoile 3.png,,TRUE, +N1,59441,sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc,https://biolit.fr/sorties/sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc/,Guillaume D,,11/07/2018,10.0000000,12.0000000,46.110357000000,-1.139154000000,,"Angoulins, Pointe du Chay",41723,observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc,https://biolit.fr/observations/observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181107_101103_5mo.jpg,,FALSE, +N1,59441,sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc,https://biolit.fr/sorties/sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc/,Guillaume D,,11/07/2018,10.0000000,12.0000000,46.110357000000,-1.139154000000,,"Angoulins, Pointe du Chay",41725,observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-2,https://biolit.fr/observations/observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181107_101410_5mo.jpg,,FALSE, +N1,59441,sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc,https://biolit.fr/sorties/sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc/,Guillaume D,,11/07/2018,10.0000000,12.0000000,46.110357000000,-1.139154000000,,"Angoulins, Pointe du Chay",41727,observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-3,https://biolit.fr/observations/observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-3/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181107_102402-scaled.jpg,,TRUE, +N1,59441,sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc,https://biolit.fr/sorties/sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc/,Guillaume D,,11/07/2018,10.0000000,12.0000000,46.110357000000,-1.139154000000,,"Angoulins, Pointe du Chay",41729,observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-4,https://biolit.fr/observations/observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181107_102445-scaled.jpg,,FALSE, +N1,59441,sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc,https://biolit.fr/sorties/sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc/,Guillaume D,,11/07/2018,10.0000000,12.0000000,46.110357000000,-1.139154000000,,"Angoulins, Pointe du Chay",41731,observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-5,https://biolit.fr/observations/observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-5/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181107_102804_5mo.jpg,,TRUE, +N1,59441,sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc,https://biolit.fr/sorties/sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc/,Guillaume D,,11/07/2018,10.0000000,12.0000000,46.110357000000,-1.139154000000,,"Angoulins, Pointe du Chay",41733,observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-6,https://biolit.fr/observations/observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-6/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181107_103052-scaled.jpg,,TRUE, +N1,59441,sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc,https://biolit.fr/sorties/sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc/,Guillaume D,,11/07/2018,10.0000000,12.0000000,46.110357000000,-1.139154000000,,"Angoulins, Pointe du Chay",41735,observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-7,https://biolit.fr/observations/observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-7/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181107_104309-scaled.jpg,,TRUE, +N1,59441,sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc,https://biolit.fr/sorties/sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc/,Guillaume D,,11/07/2018,10.0000000,12.0000000,46.110357000000,-1.139154000000,,"Angoulins, Pointe du Chay",41737,observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-8,https://biolit.fr/observations/observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-8/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181107_104709-scaled.jpg,,TRUE, +N1,59441,sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc,https://biolit.fr/sorties/sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc/,Guillaume D,,11/07/2018,10.0000000,12.0000000,46.110357000000,-1.139154000000,,"Angoulins, Pointe du Chay",41739,observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-9,https://biolit.fr/observations/observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-9/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181107_110807-scaled.jpg,,TRUE, +N1,59441,sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc,https://biolit.fr/sorties/sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc/,Guillaume D,,11/07/2018,10.0000000,12.0000000,46.110357000000,-1.139154000000,,"Angoulins, Pointe du Chay",41741,observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-10,https://biolit.fr/observations/observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-10/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181107_111203-scaled.jpg,,TRUE, +N1,59441,sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc,https://biolit.fr/sorties/sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc/,Guillaume D,,11/07/2018,10.0000000,12.0000000,46.110357000000,-1.139154000000,,"Angoulins, Pointe du Chay",41743,observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-11,https://biolit.fr/observations/observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-11/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181107_111803-scaled.jpg,,TRUE, +N1,59442,sortie-d96fb581-f232-46b8-9036-e29f1be504fc,https://biolit.fr/sorties/sortie-d96fb581-f232-46b8-9036-e29f1be504fc/,Phil,,11/24/2018 0:00,11.0000000,11.0000000,47.796733000000,-4.17992000000,,Loctudy - Finistère,41745,observation-d96fb581-f232-46b8-9036-e29f1be504fc,https://biolit.fr/observations/observation-d96fb581-f232-46b8-9036-e29f1be504fc/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/20181124_113041.jpg,,TRUE, +N1,59442,sortie-d96fb581-f232-46b8-9036-e29f1be504fc,https://biolit.fr/sorties/sortie-d96fb581-f232-46b8-9036-e29f1be504fc/,Phil,,11/24/2018 0:00,11.0000000,11.0000000,47.796733000000,-4.17992000000,,Loctudy - Finistère,41747,observation-d96fb581-f232-46b8-9036-e29f1be504fc-2,https://biolit.fr/observations/observation-d96fb581-f232-46b8-9036-e29f1be504fc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181124_112920.jpg,,FALSE, +N1,59442,sortie-d96fb581-f232-46b8-9036-e29f1be504fc,https://biolit.fr/sorties/sortie-d96fb581-f232-46b8-9036-e29f1be504fc/,Phil,,11/24/2018 0:00,11.0000000,11.0000000,47.796733000000,-4.17992000000,,Loctudy - Finistère,41749,observation-d96fb581-f232-46b8-9036-e29f1be504fc-3,https://biolit.fr/observations/observation-d96fb581-f232-46b8-9036-e29f1be504fc-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181124_113050.jpg,,FALSE, +N1,59442,sortie-d96fb581-f232-46b8-9036-e29f1be504fc,https://biolit.fr/sorties/sortie-d96fb581-f232-46b8-9036-e29f1be504fc/,Phil,,11/24/2018 0:00,11.0000000,11.0000000,47.796733000000,-4.17992000000,,Loctudy - Finistère,41751,observation-d96fb581-f232-46b8-9036-e29f1be504fc-4,https://biolit.fr/observations/observation-d96fb581-f232-46b8-9036-e29f1be504fc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181124_113112.jpg,,FALSE, +N1,59442,sortie-d96fb581-f232-46b8-9036-e29f1be504fc,https://biolit.fr/sorties/sortie-d96fb581-f232-46b8-9036-e29f1be504fc/,Phil,,11/24/2018 0:00,11.0000000,11.0000000,47.796733000000,-4.17992000000,,Loctudy - Finistère,41753,observation-d96fb581-f232-46b8-9036-e29f1be504fc-5,https://biolit.fr/observations/observation-d96fb581-f232-46b8-9036-e29f1be504fc-5/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20181124_113318.jpg,,TRUE, +N1,59442,sortie-d96fb581-f232-46b8-9036-e29f1be504fc,https://biolit.fr/sorties/sortie-d96fb581-f232-46b8-9036-e29f1be504fc/,Phil,,11/24/2018 0:00,11.0000000,11.0000000,47.796733000000,-4.17992000000,,Loctudy - Finistère,41755,observation-d96fb581-f232-46b8-9036-e29f1be504fc-6,https://biolit.fr/observations/observation-d96fb581-f232-46b8-9036-e29f1be504fc-6/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/20181124_113324.jpg,,TRUE, +N1,59442,sortie-d96fb581-f232-46b8-9036-e29f1be504fc,https://biolit.fr/sorties/sortie-d96fb581-f232-46b8-9036-e29f1be504fc/,Phil,,11/24/2018 0:00,11.0000000,11.0000000,47.796733000000,-4.17992000000,,Loctudy - Finistère,41757,observation-d96fb581-f232-46b8-9036-e29f1be504fc-7,https://biolit.fr/observations/observation-d96fb581-f232-46b8-9036-e29f1be504fc-7/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20181124_113350.jpg,,TRUE, +N1,59443,sortie-7b071301-91a5-43d5-ac29-4263324cd01a,https://biolit.fr/sorties/sortie-7b071301-91a5-43d5-ac29-4263324cd01a/,Phil,,7/16/2018 0:00,13.0:15,13.0000000,47.809569000000,-3.712063000000,,Moëlan-sur-Mer - Finistère,41759,observation-7b071301-91a5-43d5-ac29-4263324cd01a,https://biolit.fr/observations/observation-7b071301-91a5-43d5-ac29-4263324cd01a/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/P1110767_0.JPG,,TRUE, +N1,59443,sortie-7b071301-91a5-43d5-ac29-4263324cd01a,https://biolit.fr/sorties/sortie-7b071301-91a5-43d5-ac29-4263324cd01a/,Phil,,7/16/2018 0:00,13.0:15,13.0000000,47.809569000000,-3.712063000000,,Moëlan-sur-Mer - Finistère,41761,observation-7b071301-91a5-43d5-ac29-4263324cd01a-2,https://biolit.fr/observations/observation-7b071301-91a5-43d5-ac29-4263324cd01a-2/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/P1110768.JPG,,TRUE, +N1,59443,sortie-7b071301-91a5-43d5-ac29-4263324cd01a,https://biolit.fr/sorties/sortie-7b071301-91a5-43d5-ac29-4263324cd01a/,Phil,,7/16/2018 0:00,13.0:15,13.0000000,47.809569000000,-3.712063000000,,Moëlan-sur-Mer - Finistère,41763,observation-7b071301-91a5-43d5-ac29-4263324cd01a-3,https://biolit.fr/observations/observation-7b071301-91a5-43d5-ac29-4263324cd01a-3/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/P1110770.JPG,,TRUE, +N1,59443,sortie-7b071301-91a5-43d5-ac29-4263324cd01a,https://biolit.fr/sorties/sortie-7b071301-91a5-43d5-ac29-4263324cd01a/,Phil,,7/16/2018 0:00,13.0:15,13.0000000,47.809569000000,-3.712063000000,,Moëlan-sur-Mer - Finistère,41765,observation-7b071301-91a5-43d5-ac29-4263324cd01a-4,https://biolit.fr/observations/observation-7b071301-91a5-43d5-ac29-4263324cd01a-4/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/P1110771.JPG,,TRUE, +N1,59443,sortie-7b071301-91a5-43d5-ac29-4263324cd01a,https://biolit.fr/sorties/sortie-7b071301-91a5-43d5-ac29-4263324cd01a/,Phil,,7/16/2018 0:00,13.0:15,13.0000000,47.809569000000,-3.712063000000,,Moëlan-sur-Mer - Finistère,41767,observation-7b071301-91a5-43d5-ac29-4263324cd01a-5,https://biolit.fr/observations/observation-7b071301-91a5-43d5-ac29-4263324cd01a-5/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110772.JPG,,TRUE, +N1,59444,sortie-faf88f5a-e603-4bb5-8925-537359bca1e0,https://biolit.fr/sorties/sortie-faf88f5a-e603-4bb5-8925-537359bca1e0/,Phil,,11/24/2018 0:00,11.0000000,11.0000000,47.797407000000,-4.178195000000,,Loctudy - Finistère,41769,observation-faf88f5a-e603-4bb5-8925-537359bca1e0,https://biolit.fr/observations/observation-faf88f5a-e603-4bb5-8925-537359bca1e0/,Aplysilla rosea,Aplysille rose,,https://biolit.fr/wp-content/uploads/2023/07/20181124_112742.jpg,,TRUE, +N1,59444,sortie-faf88f5a-e603-4bb5-8925-537359bca1e0,https://biolit.fr/sorties/sortie-faf88f5a-e603-4bb5-8925-537359bca1e0/,Phil,,11/24/2018 0:00,11.0000000,11.0000000,47.797407000000,-4.178195000000,,Loctudy - Finistère,41771,observation-faf88f5a-e603-4bb5-8925-537359bca1e0-2,https://biolit.fr/observations/observation-faf88f5a-e603-4bb5-8925-537359bca1e0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181124_112748.jpg,,FALSE, +N1,59444,sortie-faf88f5a-e603-4bb5-8925-537359bca1e0,https://biolit.fr/sorties/sortie-faf88f5a-e603-4bb5-8925-537359bca1e0/,Phil,,11/24/2018 0:00,11.0000000,11.0000000,47.797407000000,-4.178195000000,,Loctudy - Finistère,41773,observation-faf88f5a-e603-4bb5-8925-537359bca1e0-3,https://biolit.fr/observations/observation-faf88f5a-e603-4bb5-8925-537359bca1e0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181124_112751.jpg,,FALSE, +N1,59444,sortie-faf88f5a-e603-4bb5-8925-537359bca1e0,https://biolit.fr/sorties/sortie-faf88f5a-e603-4bb5-8925-537359bca1e0/,Phil,,11/24/2018 0:00,11.0000000,11.0000000,47.797407000000,-4.178195000000,,Loctudy - Finistère,41775,observation-faf88f5a-e603-4bb5-8925-537359bca1e0-4,https://biolit.fr/observations/observation-faf88f5a-e603-4bb5-8925-537359bca1e0-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181124_112503.jpg,,FALSE, +N1,59444,sortie-faf88f5a-e603-4bb5-8925-537359bca1e0,https://biolit.fr/sorties/sortie-faf88f5a-e603-4bb5-8925-537359bca1e0/,Phil,,11/24/2018 0:00,11.0000000,11.0000000,47.797407000000,-4.178195000000,,Loctudy - Finistère,41777,observation-faf88f5a-e603-4bb5-8925-537359bca1e0-5,https://biolit.fr/observations/observation-faf88f5a-e603-4bb5-8925-537359bca1e0-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181124_112453.jpg,,FALSE, +N1,59445,sortie-cc85d2e5-7744-44b9-84fc-3314f8a52176,https://biolit.fr/sorties/sortie-cc85d2e5-7744-44b9-84fc-3314f8a52176/,Phil,,7/22/2018 0:00,11.0000000,14.0000000,47.708393000000,-3.991951000000,,Fouesnant - Finistère,41779,observation-cc85d2e5-7744-44b9-84fc-3314f8a52176,https://biolit.fr/observations/observation-cc85d2e5-7744-44b9-84fc-3314f8a52176/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/P1110988.JPG,,TRUE, +N1,59445,sortie-cc85d2e5-7744-44b9-84fc-3314f8a52176,https://biolit.fr/sorties/sortie-cc85d2e5-7744-44b9-84fc-3314f8a52176/,Phil,,7/22/2018 0:00,11.0000000,14.0000000,47.708393000000,-3.991951000000,,Fouesnant - Finistère,41781,observation-cc85d2e5-7744-44b9-84fc-3314f8a52176-2,https://biolit.fr/observations/observation-cc85d2e5-7744-44b9-84fc-3314f8a52176-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110985.JPG,,FALSE, +N1,59445,sortie-cc85d2e5-7744-44b9-84fc-3314f8a52176,https://biolit.fr/sorties/sortie-cc85d2e5-7744-44b9-84fc-3314f8a52176/,Phil,,7/22/2018 0:00,11.0000000,14.0000000,47.708393000000,-3.991951000000,,Fouesnant - Finistère,41783,observation-cc85d2e5-7744-44b9-84fc-3314f8a52176-3,https://biolit.fr/observations/observation-cc85d2e5-7744-44b9-84fc-3314f8a52176-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110984.JPG,,FALSE, +N1,59445,sortie-cc85d2e5-7744-44b9-84fc-3314f8a52176,https://biolit.fr/sorties/sortie-cc85d2e5-7744-44b9-84fc-3314f8a52176/,Phil,,7/22/2018 0:00,11.0000000,14.0000000,47.708393000000,-3.991951000000,,Fouesnant - Finistère,41785,observation-cc85d2e5-7744-44b9-84fc-3314f8a52176-4,https://biolit.fr/observations/observation-cc85d2e5-7744-44b9-84fc-3314f8a52176-4/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110983.JPG,,TRUE, +N1,59445,sortie-cc85d2e5-7744-44b9-84fc-3314f8a52176,https://biolit.fr/sorties/sortie-cc85d2e5-7744-44b9-84fc-3314f8a52176/,Phil,,7/22/2018 0:00,11.0000000,14.0000000,47.708393000000,-3.991951000000,,Fouesnant - Finistère,41787,observation-cc85d2e5-7744-44b9-84fc-3314f8a52176-5,https://biolit.fr/observations/observation-cc85d2e5-7744-44b9-84fc-3314f8a52176-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110977.JPG,,FALSE, +N1,59445,sortie-cc85d2e5-7744-44b9-84fc-3314f8a52176,https://biolit.fr/sorties/sortie-cc85d2e5-7744-44b9-84fc-3314f8a52176/,Phil,,7/22/2018 0:00,11.0000000,14.0000000,47.708393000000,-3.991951000000,,Fouesnant - Finistère,41789,observation-cc85d2e5-7744-44b9-84fc-3314f8a52176-6,https://biolit.fr/observations/observation-cc85d2e5-7744-44b9-84fc-3314f8a52176-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110973.JPG,,FALSE, +N1,59446,sortie-d87059a6-16c9-4369-8867-a0ba759d72b9,https://biolit.fr/sorties/sortie-d87059a6-16c9-4369-8867-a0ba759d72b9/,Phil,,11/24/2018 0:00,11.000005,11.0000000,47.797740000000,-4.178452000000,,Loctudy - Finistère,41791,observation-d87059a6-16c9-4369-8867-a0ba759d72b9,https://biolit.fr/observations/observation-d87059a6-16c9-4369-8867-a0ba759d72b9/,Symphodus melops,Crénilabre commun,,https://biolit.fr/wp-content/uploads/2023/07/20181124_110501.jpg,,TRUE, +N1,59446,sortie-d87059a6-16c9-4369-8867-a0ba759d72b9,https://biolit.fr/sorties/sortie-d87059a6-16c9-4369-8867-a0ba759d72b9/,Phil,,11/24/2018 0:00,11.000005,11.0000000,47.797740000000,-4.178452000000,,Loctudy - Finistère,41793,observation-d87059a6-16c9-4369-8867-a0ba759d72b9-2,https://biolit.fr/observations/observation-d87059a6-16c9-4369-8867-a0ba759d72b9-2/,Symphodus melops,Crénilabre commun,,https://biolit.fr/wp-content/uploads/2023/07/20181124_110427.jpg,,TRUE, +N1,59446,sortie-d87059a6-16c9-4369-8867-a0ba759d72b9,https://biolit.fr/sorties/sortie-d87059a6-16c9-4369-8867-a0ba759d72b9/,Phil,,11/24/2018 0:00,11.000005,11.0000000,47.797740000000,-4.178452000000,,Loctudy - Finistère,41795,observation-d87059a6-16c9-4369-8867-a0ba759d72b9-3,https://biolit.fr/observations/observation-d87059a6-16c9-4369-8867-a0ba759d72b9-3/,Symphodus melops,Crénilabre commun,,https://biolit.fr/wp-content/uploads/2023/07/20181124_110627.jpg,,TRUE, +N1,59447,sortie-bee454f0-6be3-46f3-9e7f-69771b70e02b,https://biolit.fr/sorties/sortie-bee454f0-6be3-46f3-9e7f-69771b70e02b/,Phil,,11/25/2018 0:00,14.0000000,14.0000000,47.895794000000,-3.96669100000,,La Forêt-Fouesnant - Finistère,41797,observation-bee454f0-6be3-46f3-9e7f-69771b70e02b,https://biolit.fr/observations/observation-bee454f0-6be3-46f3-9e7f-69771b70e02b/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/P1120316.JPG,,TRUE, +N1,59447,sortie-bee454f0-6be3-46f3-9e7f-69771b70e02b,https://biolit.fr/sorties/sortie-bee454f0-6be3-46f3-9e7f-69771b70e02b/,Phil,,11/25/2018 0:00,14.0000000,14.0000000,47.895794000000,-3.96669100000,,La Forêt-Fouesnant - Finistère,41799,observation-bee454f0-6be3-46f3-9e7f-69771b70e02b-2,https://biolit.fr/observations/observation-bee454f0-6be3-46f3-9e7f-69771b70e02b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120313.JPG,,FALSE, +N1,59447,sortie-bee454f0-6be3-46f3-9e7f-69771b70e02b,https://biolit.fr/sorties/sortie-bee454f0-6be3-46f3-9e7f-69771b70e02b/,Phil,,11/25/2018 0:00,14.0000000,14.0000000,47.895794000000,-3.96669100000,,La Forêt-Fouesnant - Finistère,41801,observation-bee454f0-6be3-46f3-9e7f-69771b70e02b-3,https://biolit.fr/observations/observation-bee454f0-6be3-46f3-9e7f-69771b70e02b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120312.JPG,,FALSE, +N1,59447,sortie-bee454f0-6be3-46f3-9e7f-69771b70e02b,https://biolit.fr/sorties/sortie-bee454f0-6be3-46f3-9e7f-69771b70e02b/,Phil,,11/25/2018 0:00,14.0000000,14.0000000,47.895794000000,-3.96669100000,,La Forêt-Fouesnant - Finistère,41803,observation-bee454f0-6be3-46f3-9e7f-69771b70e02b-4,https://biolit.fr/observations/observation-bee454f0-6be3-46f3-9e7f-69771b70e02b-4/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/P1120317.JPG,,TRUE, +N1,59447,sortie-bee454f0-6be3-46f3-9e7f-69771b70e02b,https://biolit.fr/sorties/sortie-bee454f0-6be3-46f3-9e7f-69771b70e02b/,Phil,,11/25/2018 0:00,14.0000000,14.0000000,47.895794000000,-3.96669100000,,La Forêt-Fouesnant - Finistère,41805,observation-bee454f0-6be3-46f3-9e7f-69771b70e02b-5,https://biolit.fr/observations/observation-bee454f0-6be3-46f3-9e7f-69771b70e02b-5/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/P1120319.JPG,,TRUE, +N1,59448,sortie-63b07bb6-42df-458b-876d-d9a65ef34dbd,https://biolit.fr/sorties/sortie-63b07bb6-42df-458b-876d-d9a65ef34dbd/,Phil,,11/24/2018 0:00,11.0000000,11.0:25,47.799066000000,-4.177585000000,,Loctudy - Finistère,41807,observation-63b07bb6-42df-458b-876d-d9a65ef34dbd,https://biolit.fr/observations/observation-63b07bb6-42df-458b-876d-d9a65ef34dbd/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20181124_112206-scaled.jpg,,TRUE, +N1,59448,sortie-63b07bb6-42df-458b-876d-d9a65ef34dbd,https://biolit.fr/sorties/sortie-63b07bb6-42df-458b-876d-d9a65ef34dbd/,Phil,,11/24/2018 0:00,11.0000000,11.0:25,47.799066000000,-4.177585000000,,Loctudy - Finistère,41809,observation-63b07bb6-42df-458b-876d-d9a65ef34dbd-2,https://biolit.fr/observations/observation-63b07bb6-42df-458b-876d-d9a65ef34dbd-2/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20181124_112232.jpg,,TRUE, +N1,59448,sortie-63b07bb6-42df-458b-876d-d9a65ef34dbd,https://biolit.fr/sorties/sortie-63b07bb6-42df-458b-876d-d9a65ef34dbd/,Phil,,11/24/2018 0:00,11.0000000,11.0:25,47.799066000000,-4.177585000000,,Loctudy - Finistère,41811,observation-63b07bb6-42df-458b-876d-d9a65ef34dbd-3,https://biolit.fr/observations/observation-63b07bb6-42df-458b-876d-d9a65ef34dbd-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181124_112324.jpg,,FALSE, +N1,59448,sortie-63b07bb6-42df-458b-876d-d9a65ef34dbd,https://biolit.fr/sorties/sortie-63b07bb6-42df-458b-876d-d9a65ef34dbd/,Phil,,11/24/2018 0:00,11.0000000,11.0:25,47.799066000000,-4.177585000000,,Loctudy - Finistère,41813,observation-63b07bb6-42df-458b-876d-d9a65ef34dbd-4,https://biolit.fr/observations/observation-63b07bb6-42df-458b-876d-d9a65ef34dbd-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181124_112104.jpg,,FALSE, +N1,59448,sortie-63b07bb6-42df-458b-876d-d9a65ef34dbd,https://biolit.fr/sorties/sortie-63b07bb6-42df-458b-876d-d9a65ef34dbd/,Phil,,11/24/2018 0:00,11.0000000,11.0:25,47.799066000000,-4.177585000000,,Loctudy - Finistère,41815,observation-63b07bb6-42df-458b-876d-d9a65ef34dbd-5,https://biolit.fr/observations/observation-63b07bb6-42df-458b-876d-d9a65ef34dbd-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181124_112051.jpg,,FALSE, +N1,59448,sortie-63b07bb6-42df-458b-876d-d9a65ef34dbd,https://biolit.fr/sorties/sortie-63b07bb6-42df-458b-876d-d9a65ef34dbd/,Phil,,11/24/2018 0:00,11.0000000,11.0:25,47.799066000000,-4.177585000000,,Loctudy - Finistère,41817,observation-63b07bb6-42df-458b-876d-d9a65ef34dbd-6,https://biolit.fr/observations/observation-63b07bb6-42df-458b-876d-d9a65ef34dbd-6/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/20181124_111255.jpg,,TRUE, +N1,59449,sortie-f2407619-e6a8-4cb4-8993-8932d20f7a59,https://biolit.fr/sorties/sortie-f2407619-e6a8-4cb4-8993-8932d20f7a59/,Phil,,11/18/2018 0:00,12.0000000,12.0000000,47.854072000000,-3.981076000000,,Fouesnant - Finistère,41819,observation-f2407619-e6a8-4cb4-8993-8932d20f7a59,https://biolit.fr/observations/observation-f2407619-e6a8-4cb4-8993-8932d20f7a59/,Membranipora membranacea,Membranipore,,https://biolit.fr/wp-content/uploads/2023/07/20181118_124053.jpg,,TRUE, +N1,59449,sortie-f2407619-e6a8-4cb4-8993-8932d20f7a59,https://biolit.fr/sorties/sortie-f2407619-e6a8-4cb4-8993-8932d20f7a59/,Phil,,11/18/2018 0:00,12.0000000,12.0000000,47.854072000000,-3.981076000000,,Fouesnant - Finistère,41821,observation-f2407619-e6a8-4cb4-8993-8932d20f7a59-2,https://biolit.fr/observations/observation-f2407619-e6a8-4cb4-8993-8932d20f7a59-2/,Membranipora membranacea,Membranipore,,https://biolit.fr/wp-content/uploads/2023/07/20181118_124105.jpg,,TRUE, +N1,59449,sortie-f2407619-e6a8-4cb4-8993-8932d20f7a59,https://biolit.fr/sorties/sortie-f2407619-e6a8-4cb4-8993-8932d20f7a59/,Phil,,11/18/2018 0:00,12.0000000,12.0000000,47.854072000000,-3.981076000000,,Fouesnant - Finistère,41823,observation-f2407619-e6a8-4cb4-8993-8932d20f7a59-3,https://biolit.fr/observations/observation-f2407619-e6a8-4cb4-8993-8932d20f7a59-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181118_124154.jpg,,FALSE, +N1,59449,sortie-f2407619-e6a8-4cb4-8993-8932d20f7a59,https://biolit.fr/sorties/sortie-f2407619-e6a8-4cb4-8993-8932d20f7a59/,Phil,,11/18/2018 0:00,12.0000000,12.0000000,47.854072000000,-3.981076000000,,Fouesnant - Finistère,41825,observation-f2407619-e6a8-4cb4-8993-8932d20f7a59-4,https://biolit.fr/observations/observation-f2407619-e6a8-4cb4-8993-8932d20f7a59-4/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/20181118_123616.jpg,,TRUE, +N1,59449,sortie-f2407619-e6a8-4cb4-8993-8932d20f7a59,https://biolit.fr/sorties/sortie-f2407619-e6a8-4cb4-8993-8932d20f7a59/,Phil,,11/18/2018 0:00,12.0000000,12.0000000,47.854072000000,-3.981076000000,,Fouesnant - Finistère,41827,observation-f2407619-e6a8-4cb4-8993-8932d20f7a59-5,https://biolit.fr/observations/observation-f2407619-e6a8-4cb4-8993-8932d20f7a59-5/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20181118_123941.jpg,,TRUE, +N1,59450,sortie-104af9e2-911b-4c34-be32-c432ca5f21fe,https://biolit.fr/sorties/sortie-104af9e2-911b-4c34-be32-c432ca5f21fe/,Phil,,11/25/2018 0:00,14.0000000,14.0000000,47.896117000000,-3.963464000000,,La Forêt-Fouesnant - Finistère,41829,observation-104af9e2-911b-4c34-be32-c432ca5f21fe,https://biolit.fr/observations/observation-104af9e2-911b-4c34-be32-c432ca5f21fe/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1120294.JPG,,TRUE, +N1,59450,sortie-104af9e2-911b-4c34-be32-c432ca5f21fe,https://biolit.fr/sorties/sortie-104af9e2-911b-4c34-be32-c432ca5f21fe/,Phil,,11/25/2018 0:00,14.0000000,14.0000000,47.896117000000,-3.963464000000,,La Forêt-Fouesnant - Finistère,41831,observation-104af9e2-911b-4c34-be32-c432ca5f21fe-2,https://biolit.fr/observations/observation-104af9e2-911b-4c34-be32-c432ca5f21fe-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120304.JPG,,FALSE, +N1,59450,sortie-104af9e2-911b-4c34-be32-c432ca5f21fe,https://biolit.fr/sorties/sortie-104af9e2-911b-4c34-be32-c432ca5f21fe/,Phil,,11/25/2018 0:00,14.0000000,14.0000000,47.896117000000,-3.963464000000,,La Forêt-Fouesnant - Finistère,41833,observation-104af9e2-911b-4c34-be32-c432ca5f21fe-3,https://biolit.fr/observations/observation-104af9e2-911b-4c34-be32-c432ca5f21fe-3/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1120305.JPG,,TRUE, +N1,59450,sortie-104af9e2-911b-4c34-be32-c432ca5f21fe,https://biolit.fr/sorties/sortie-104af9e2-911b-4c34-be32-c432ca5f21fe/,Phil,,11/25/2018 0:00,14.0000000,14.0000000,47.896117000000,-3.963464000000,,La Forêt-Fouesnant - Finistère,41835,observation-104af9e2-911b-4c34-be32-c432ca5f21fe-4,https://biolit.fr/observations/observation-104af9e2-911b-4c34-be32-c432ca5f21fe-4/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1120308.JPG,,TRUE, +N1,59450,sortie-104af9e2-911b-4c34-be32-c432ca5f21fe,https://biolit.fr/sorties/sortie-104af9e2-911b-4c34-be32-c432ca5f21fe/,Phil,,11/25/2018 0:00,14.0000000,14.0000000,47.896117000000,-3.963464000000,,La Forêt-Fouesnant - Finistère,41837,observation-104af9e2-911b-4c34-be32-c432ca5f21fe-5,https://biolit.fr/observations/observation-104af9e2-911b-4c34-be32-c432ca5f21fe-5/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1120330.JPG,,TRUE, +N1,59450,sortie-104af9e2-911b-4c34-be32-c432ca5f21fe,https://biolit.fr/sorties/sortie-104af9e2-911b-4c34-be32-c432ca5f21fe/,Phil,,11/25/2018 0:00,14.0000000,14.0000000,47.896117000000,-3.963464000000,,La Forêt-Fouesnant - Finistère,41839,observation-104af9e2-911b-4c34-be32-c432ca5f21fe-6,https://biolit.fr/observations/observation-104af9e2-911b-4c34-be32-c432ca5f21fe-6/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1120340.JPG,,TRUE, +N1,59451,sortie-6366fb54-d802-4445-ba48-0dd99a93f824,https://biolit.fr/sorties/sortie-6366fb54-d802-4445-ba48-0dd99a93f824/,herve laurent,,11/28/2018 0:00,9.0:35,19.0000000,48.496849000000,-4.77828600000,,"kerizela, Porspoder 29840",41841,observation-6366fb54-d802-4445-ba48-0dd99a93f824,https://biolit.fr/observations/observation-6366fb54-d802-4445-ba48-0dd99a93f824/,Soestia zonaria,Soestia zonaria,,https://biolit.fr/wp-content/uploads/2023/07/20181128_180930-scaled.jpg,,TRUE, +N1,59451,sortie-6366fb54-d802-4445-ba48-0dd99a93f824,https://biolit.fr/sorties/sortie-6366fb54-d802-4445-ba48-0dd99a93f824/,herve laurent,,11/28/2018 0:00,9.0:35,19.0000000,48.496849000000,-4.77828600000,,"kerizela, Porspoder 29840",41843,observation-6366fb54-d802-4445-ba48-0dd99a93f824-2,https://biolit.fr/observations/observation-6366fb54-d802-4445-ba48-0dd99a93f824-2/,Soestia zonaria,Soestia zonaria,,https://biolit.fr/wp-content/uploads/2023/07/20181128_180900-scaled.jpg,,TRUE, +N1,59451,sortie-6366fb54-d802-4445-ba48-0dd99a93f824,https://biolit.fr/sorties/sortie-6366fb54-d802-4445-ba48-0dd99a93f824/,herve laurent,,11/28/2018 0:00,9.0:35,19.0000000,48.496849000000,-4.77828600000,,"kerizela, Porspoder 29840",41845,observation-6366fb54-d802-4445-ba48-0dd99a93f824-3,https://biolit.fr/observations/observation-6366fb54-d802-4445-ba48-0dd99a93f824-3/,Soestia zonaria,Soestia zonaria,,https://biolit.fr/wp-content/uploads/2023/07/20181128_181005-scaled.jpg,,TRUE, +N1,59452,sortie-5e993227-83fc-4ccc-837c-926e635a76cc,https://biolit.fr/sorties/sortie-5e993227-83fc-4ccc-837c-926e635a76cc/,Phil,,11/24/2018 0:00,11.000005,11.0000000,47.799112000000,-4.177972000000,,Loctudy - Finistère,41847,observation-5e993227-83fc-4ccc-837c-926e635a76cc,https://biolit.fr/observations/observation-5e993227-83fc-4ccc-837c-926e635a76cc/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181124_110328.jpg,,TRUE, +N1,59452,sortie-5e993227-83fc-4ccc-837c-926e635a76cc,https://biolit.fr/sorties/sortie-5e993227-83fc-4ccc-837c-926e635a76cc/,Phil,,11/24/2018 0:00,11.000005,11.0000000,47.799112000000,-4.177972000000,,Loctudy - Finistère,41849,observation-5e993227-83fc-4ccc-837c-926e635a76cc-2,https://biolit.fr/observations/observation-5e993227-83fc-4ccc-837c-926e635a76cc-2/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181124_110552.jpg,,TRUE, +N1,59452,sortie-5e993227-83fc-4ccc-837c-926e635a76cc,https://biolit.fr/sorties/sortie-5e993227-83fc-4ccc-837c-926e635a76cc/,Phil,,11/24/2018 0:00,11.000005,11.0000000,47.799112000000,-4.177972000000,,Loctudy - Finistère,41851,observation-5e993227-83fc-4ccc-837c-926e635a76cc-3,https://biolit.fr/observations/observation-5e993227-83fc-4ccc-837c-926e635a76cc-3/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181124_110707.jpg,,TRUE, +N1,59452,sortie-5e993227-83fc-4ccc-837c-926e635a76cc,https://biolit.fr/sorties/sortie-5e993227-83fc-4ccc-837c-926e635a76cc/,Phil,,11/24/2018 0:00,11.000005,11.0000000,47.799112000000,-4.177972000000,,Loctudy - Finistère,41853,observation-5e993227-83fc-4ccc-837c-926e635a76cc-4,https://biolit.fr/observations/observation-5e993227-83fc-4ccc-837c-926e635a76cc-4/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/20181124_110851.jpg,,TRUE, +N1,59453,sortie-28e708c9-e17c-4021-ae1c-85f43b979617,https://biolit.fr/sorties/sortie-28e708c9-e17c-4021-ae1c-85f43b979617/,Phil,,11/18/2018 0:00,12.0000000,12.0:35,47.854480000000,-3.980799000000,,Fouesnant - Finistère,41855,observation-28e708c9-e17c-4021-ae1c-85f43b979617,https://biolit.fr/observations/observation-28e708c9-e17c-4021-ae1c-85f43b979617/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181118_122912-scaled.jpg,,FALSE, +N1,59453,sortie-28e708c9-e17c-4021-ae1c-85f43b979617,https://biolit.fr/sorties/sortie-28e708c9-e17c-4021-ae1c-85f43b979617/,Phil,,11/18/2018 0:00,12.0000000,12.0:35,47.854480000000,-3.980799000000,,Fouesnant - Finistère,41857,observation-28e708c9-e17c-4021-ae1c-85f43b979617-2,https://biolit.fr/observations/observation-28e708c9-e17c-4021-ae1c-85f43b979617-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181118_123030-scaled.jpg,,FALSE, +N1,59453,sortie-28e708c9-e17c-4021-ae1c-85f43b979617,https://biolit.fr/sorties/sortie-28e708c9-e17c-4021-ae1c-85f43b979617/,Phil,,11/18/2018 0:00,12.0000000,12.0:35,47.854480000000,-3.980799000000,,Fouesnant - Finistère,41859,observation-28e708c9-e17c-4021-ae1c-85f43b979617-3,https://biolit.fr/observations/observation-28e708c9-e17c-4021-ae1c-85f43b979617-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181118_122953-scaled.jpg,,FALSE, +N1,59453,sortie-28e708c9-e17c-4021-ae1c-85f43b979617,https://biolit.fr/sorties/sortie-28e708c9-e17c-4021-ae1c-85f43b979617/,Phil,,11/18/2018 0:00,12.0000000,12.0:35,47.854480000000,-3.980799000000,,Fouesnant - Finistère,41861,observation-28e708c9-e17c-4021-ae1c-85f43b979617-4,https://biolit.fr/observations/observation-28e708c9-e17c-4021-ae1c-85f43b979617-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181118_123245.jpg,,FALSE, +N1,59453,sortie-28e708c9-e17c-4021-ae1c-85f43b979617,https://biolit.fr/sorties/sortie-28e708c9-e17c-4021-ae1c-85f43b979617/,Phil,,11/18/2018 0:00,12.0000000,12.0:35,47.854480000000,-3.980799000000,,Fouesnant - Finistère,41863,observation-28e708c9-e17c-4021-ae1c-85f43b979617-5,https://biolit.fr/observations/observation-28e708c9-e17c-4021-ae1c-85f43b979617-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181118_123449.jpg,,FALSE, +N1,59454,sortie-7ed30687-fa66-453e-ac3c-be56c55a445e,https://biolit.fr/sorties/sortie-7ed30687-fa66-453e-ac3c-be56c55a445e/,Phil,,7/22/2018 0:00,11.0000000,11.0000000,47.708283000000,-3.991667000000,,Fouesnant - Finistère,41865,observation-7ed30687-fa66-453e-ac3c-be56c55a445e,https://biolit.fr/observations/observation-7ed30687-fa66-453e-ac3c-be56c55a445e/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110963.JPG,,TRUE, +N1,59454,sortie-7ed30687-fa66-453e-ac3c-be56c55a445e,https://biolit.fr/sorties/sortie-7ed30687-fa66-453e-ac3c-be56c55a445e/,Phil,,7/22/2018 0:00,11.0000000,11.0000000,47.708283000000,-3.991667000000,,Fouesnant - Finistère,41867,observation-7ed30687-fa66-453e-ac3c-be56c55a445e-2,https://biolit.fr/observations/observation-7ed30687-fa66-453e-ac3c-be56c55a445e-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1110964.JPG,,TRUE, +N1,59454,sortie-7ed30687-fa66-453e-ac3c-be56c55a445e,https://biolit.fr/sorties/sortie-7ed30687-fa66-453e-ac3c-be56c55a445e/,Phil,,7/22/2018 0:00,11.0000000,11.0000000,47.708283000000,-3.991667000000,,Fouesnant - Finistère,41869,observation-7ed30687-fa66-453e-ac3c-be56c55a445e-3,https://biolit.fr/observations/observation-7ed30687-fa66-453e-ac3c-be56c55a445e-3/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/P1110966.JPG,,TRUE, +N1,59454,sortie-7ed30687-fa66-453e-ac3c-be56c55a445e,https://biolit.fr/sorties/sortie-7ed30687-fa66-453e-ac3c-be56c55a445e/,Phil,,7/22/2018 0:00,11.0000000,11.0000000,47.708283000000,-3.991667000000,,Fouesnant - Finistère,41871,observation-7ed30687-fa66-453e-ac3c-be56c55a445e-4,https://biolit.fr/observations/observation-7ed30687-fa66-453e-ac3c-be56c55a445e-4/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1110968.JPG,,TRUE, +N1,59454,sortie-7ed30687-fa66-453e-ac3c-be56c55a445e,https://biolit.fr/sorties/sortie-7ed30687-fa66-453e-ac3c-be56c55a445e/,Phil,,7/22/2018 0:00,11.0000000,11.0000000,47.708283000000,-3.991667000000,,Fouesnant - Finistère,41873,observation-7ed30687-fa66-453e-ac3c-be56c55a445e-5,https://biolit.fr/observations/observation-7ed30687-fa66-453e-ac3c-be56c55a445e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110970.JPG,,FALSE, +N1,59455,sortie-3dfc16ef-a521-49a6-92be-6eb2a4235a68,https://biolit.fr/sorties/sortie-3dfc16ef-a521-49a6-92be-6eb2a4235a68/,Phil,,11/24/2018 0:00,10.0:55,11.0000000,47.798422000000,-4.176744000000,,Loctudy - Finistère,41875,observation-3dfc16ef-a521-49a6-92be-6eb2a4235a68,https://biolit.fr/observations/observation-3dfc16ef-a521-49a6-92be-6eb2a4235a68/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20181124_105631.jpg,,TRUE, +N1,59455,sortie-3dfc16ef-a521-49a6-92be-6eb2a4235a68,https://biolit.fr/sorties/sortie-3dfc16ef-a521-49a6-92be-6eb2a4235a68/,Phil,,11/24/2018 0:00,10.0:55,11.0000000,47.798422000000,-4.176744000000,,Loctudy - Finistère,41877,observation-3dfc16ef-a521-49a6-92be-6eb2a4235a68-2,https://biolit.fr/observations/observation-3dfc16ef-a521-49a6-92be-6eb2a4235a68-2/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20181124_105555.jpg,,TRUE, +N1,59455,sortie-3dfc16ef-a521-49a6-92be-6eb2a4235a68,https://biolit.fr/sorties/sortie-3dfc16ef-a521-49a6-92be-6eb2a4235a68/,Phil,,11/24/2018 0:00,10.0:55,11.0000000,47.798422000000,-4.176744000000,,Loctudy - Finistère,41879,observation-3dfc16ef-a521-49a6-92be-6eb2a4235a68-3,https://biolit.fr/observations/observation-3dfc16ef-a521-49a6-92be-6eb2a4235a68-3/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20181124_105522.jpg,,TRUE, +N1,59455,sortie-3dfc16ef-a521-49a6-92be-6eb2a4235a68,https://biolit.fr/sorties/sortie-3dfc16ef-a521-49a6-92be-6eb2a4235a68/,Phil,,11/24/2018 0:00,10.0:55,11.0000000,47.798422000000,-4.176744000000,,Loctudy - Finistère,41881,observation-3dfc16ef-a521-49a6-92be-6eb2a4235a68-4,https://biolit.fr/observations/observation-3dfc16ef-a521-49a6-92be-6eb2a4235a68-4/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20181124_105405.jpg,,TRUE, +N1,59456,sortie-a9fe03c8-b0be-45c6-882c-180299669ac9,https://biolit.fr/sorties/sortie-a9fe03c8-b0be-45c6-882c-180299669ac9/,Phil,,11/12/2018,12.0000000,12.0000000,47.792629000000,-4.286689000000,,Gulivinec - Finistère,41883,observation-a9fe03c8-b0be-45c6-882c-180299669ac9,https://biolit.fr/observations/observation-a9fe03c8-b0be-45c6-882c-180299669ac9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181112_122301.jpg,,FALSE, +N1,59456,sortie-a9fe03c8-b0be-45c6-882c-180299669ac9,https://biolit.fr/sorties/sortie-a9fe03c8-b0be-45c6-882c-180299669ac9/,Phil,,11/12/2018,12.0000000,12.0000000,47.792629000000,-4.286689000000,,Gulivinec - Finistère,41885,observation-a9fe03c8-b0be-45c6-882c-180299669ac9-2,https://biolit.fr/observations/observation-a9fe03c8-b0be-45c6-882c-180299669ac9-2/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/20181112_122127.jpg,,TRUE, +N1,59456,sortie-a9fe03c8-b0be-45c6-882c-180299669ac9,https://biolit.fr/sorties/sortie-a9fe03c8-b0be-45c6-882c-180299669ac9/,Phil,,11/12/2018,12.0000000,12.0000000,47.792629000000,-4.286689000000,,Gulivinec - Finistère,41887,observation-a9fe03c8-b0be-45c6-882c-180299669ac9-3,https://biolit.fr/observations/observation-a9fe03c8-b0be-45c6-882c-180299669ac9-3/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/20181112_122046.jpg,,TRUE, +N1,59457,sortie-4a0ab20d-9f50-453e-a5d6-d83bcd523f07,https://biolit.fr/sorties/sortie-4a0ab20d-9f50-453e-a5d6-d83bcd523f07/,Phil,,10/26/2018 0:00,13.0000000,13.0000000,47.79668700000,-4.178890000000,,Loctudy - Finistère,41889,observation-4a0ab20d-9f50-453e-a5d6-d83bcd523f07,https://biolit.fr/observations/observation-4a0ab20d-9f50-453e-a5d6-d83bcd523f07/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181026_134524.jpg,,FALSE, +N1,59457,sortie-4a0ab20d-9f50-453e-a5d6-d83bcd523f07,https://biolit.fr/sorties/sortie-4a0ab20d-9f50-453e-a5d6-d83bcd523f07/,Phil,,10/26/2018 0:00,13.0000000,13.0000000,47.79668700000,-4.178890000000,,Loctudy - Finistère,41891,observation-4a0ab20d-9f50-453e-a5d6-d83bcd523f07-2,https://biolit.fr/observations/observation-4a0ab20d-9f50-453e-a5d6-d83bcd523f07-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181026_130902.jpg,,FALSE, +N1,59458,sortie-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/sorties/sortie-7ea0399e-87d8-458c-b036-582825d643b6/,Fleur,,11/18/2018 0:00,11.0000000,11.0000000,43.030911000000,6.103381000000,,"Plage avant Escampo-Barriou, Madrague, Presqu'île de Giens",41893,observation-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/observations/observation-7ea0399e-87d8-458c-b036-582825d643b6/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181118_111842-scaled.jpg,,TRUE, +N1,59458,sortie-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/sorties/sortie-7ea0399e-87d8-458c-b036-582825d643b6/,Fleur,,11/18/2018 0:00,11.0000000,11.0000000,43.030911000000,6.103381000000,,"Plage avant Escampo-Barriou, Madrague, Presqu'île de Giens",41895,observation-7ea0399e-87d8-458c-b036-582825d643b6-2,https://biolit.fr/observations/observation-7ea0399e-87d8-458c-b036-582825d643b6-2/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181118_111944-scaled.jpg,,TRUE, +N1,59458,sortie-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/sorties/sortie-7ea0399e-87d8-458c-b036-582825d643b6/,Fleur,,11/18/2018 0:00,11.0000000,11.0000000,43.030911000000,6.103381000000,,"Plage avant Escampo-Barriou, Madrague, Presqu'île de Giens",41897,observation-7ea0399e-87d8-458c-b036-582825d643b6-3,https://biolit.fr/observations/observation-7ea0399e-87d8-458c-b036-582825d643b6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181118_112047-scaled.jpg,,FALSE, +N1,59458,sortie-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/sorties/sortie-7ea0399e-87d8-458c-b036-582825d643b6/,Fleur,,11/18/2018 0:00,11.0000000,11.0000000,43.030911000000,6.103381000000,,"Plage avant Escampo-Barriou, Madrague, Presqu'île de Giens",41899,observation-7ea0399e-87d8-458c-b036-582825d643b6-4,https://biolit.fr/observations/observation-7ea0399e-87d8-458c-b036-582825d643b6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181118_112214-scaled.jpg,,FALSE, +N1,59458,sortie-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/sorties/sortie-7ea0399e-87d8-458c-b036-582825d643b6/,Fleur,,11/18/2018 0:00,11.0000000,11.0000000,43.030911000000,6.103381000000,,"Plage avant Escampo-Barriou, Madrague, Presqu'île de Giens",41901,observation-7ea0399e-87d8-458c-b036-582825d643b6-5,https://biolit.fr/observations/observation-7ea0399e-87d8-458c-b036-582825d643b6-5/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181118_112301-scaled.jpg,,TRUE, +N1,59458,sortie-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/sorties/sortie-7ea0399e-87d8-458c-b036-582825d643b6/,Fleur,,11/18/2018 0:00,11.0000000,11.0000000,43.030911000000,6.103381000000,,"Plage avant Escampo-Barriou, Madrague, Presqu'île de Giens",41903,observation-7ea0399e-87d8-458c-b036-582825d643b6-6,https://biolit.fr/observations/observation-7ea0399e-87d8-458c-b036-582825d643b6-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181118_112314-scaled.jpg,,FALSE, +N1,59458,sortie-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/sorties/sortie-7ea0399e-87d8-458c-b036-582825d643b6/,Fleur,,11/18/2018 0:00,11.0000000,11.0000000,43.030911000000,6.103381000000,,"Plage avant Escampo-Barriou, Madrague, Presqu'île de Giens",41905,observation-7ea0399e-87d8-458c-b036-582825d643b6-7,https://biolit.fr/observations/observation-7ea0399e-87d8-458c-b036-582825d643b6-7/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181118_112403-scaled.jpg,,TRUE, +N1,59458,sortie-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/sorties/sortie-7ea0399e-87d8-458c-b036-582825d643b6/,Fleur,,11/18/2018 0:00,11.0000000,11.0000000,43.030911000000,6.103381000000,,"Plage avant Escampo-Barriou, Madrague, Presqu'île de Giens",41907,observation-7ea0399e-87d8-458c-b036-582825d643b6-8,https://biolit.fr/observations/observation-7ea0399e-87d8-458c-b036-582825d643b6-8/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181118_112418-scaled.jpg,,TRUE, +N1,59458,sortie-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/sorties/sortie-7ea0399e-87d8-458c-b036-582825d643b6/,Fleur,,11/18/2018 0:00,11.0000000,11.0000000,43.030911000000,6.103381000000,,"Plage avant Escampo-Barriou, Madrague, Presqu'île de Giens",41909,observation-7ea0399e-87d8-458c-b036-582825d643b6-9,https://biolit.fr/observations/observation-7ea0399e-87d8-458c-b036-582825d643b6-9/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181118_112431-scaled.jpg,,TRUE, +N1,59458,sortie-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/sorties/sortie-7ea0399e-87d8-458c-b036-582825d643b6/,Fleur,,11/18/2018 0:00,11.0000000,11.0000000,43.030911000000,6.103381000000,,"Plage avant Escampo-Barriou, Madrague, Presqu'île de Giens",41911,observation-7ea0399e-87d8-458c-b036-582825d643b6-10,https://biolit.fr/observations/observation-7ea0399e-87d8-458c-b036-582825d643b6-10/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181118_112439-scaled.jpg,,TRUE, +N1,59458,sortie-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/sorties/sortie-7ea0399e-87d8-458c-b036-582825d643b6/,Fleur,,11/18/2018 0:00,11.0000000,11.0000000,43.030911000000,6.103381000000,,"Plage avant Escampo-Barriou, Madrague, Presqu'île de Giens",41913,observation-7ea0399e-87d8-458c-b036-582825d643b6-11,https://biolit.fr/observations/observation-7ea0399e-87d8-458c-b036-582825d643b6-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181118_112507-scaled.jpg,,FALSE, +N1,59458,sortie-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/sorties/sortie-7ea0399e-87d8-458c-b036-582825d643b6/,Fleur,,11/18/2018 0:00,11.0000000,11.0000000,43.030911000000,6.103381000000,,"Plage avant Escampo-Barriou, Madrague, Presqu'île de Giens",41915,observation-7ea0399e-87d8-458c-b036-582825d643b6-12,https://biolit.fr/observations/observation-7ea0399e-87d8-458c-b036-582825d643b6-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181118_112512-scaled.jpg,,FALSE, +N1,59458,sortie-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/sorties/sortie-7ea0399e-87d8-458c-b036-582825d643b6/,Fleur,,11/18/2018 0:00,11.0000000,11.0000000,43.030911000000,6.103381000000,,"Plage avant Escampo-Barriou, Madrague, Presqu'île de Giens",41917,observation-7ea0399e-87d8-458c-b036-582825d643b6-13,https://biolit.fr/observations/observation-7ea0399e-87d8-458c-b036-582825d643b6-13/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181118_112929-scaled.jpg,,TRUE, +N1,59458,sortie-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/sorties/sortie-7ea0399e-87d8-458c-b036-582825d643b6/,Fleur,,11/18/2018 0:00,11.0000000,11.0000000,43.030911000000,6.103381000000,,"Plage avant Escampo-Barriou, Madrague, Presqu'île de Giens",41919,observation-7ea0399e-87d8-458c-b036-582825d643b6-14,https://biolit.fr/observations/observation-7ea0399e-87d8-458c-b036-582825d643b6-14/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181118_112958-scaled.jpg,,TRUE, +N1,59458,sortie-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/sorties/sortie-7ea0399e-87d8-458c-b036-582825d643b6/,Fleur,,11/18/2018 0:00,11.0000000,11.0000000,43.030911000000,6.103381000000,,"Plage avant Escampo-Barriou, Madrague, Presqu'île de Giens",41921,observation-7ea0399e-87d8-458c-b036-582825d643b6-15,https://biolit.fr/observations/observation-7ea0399e-87d8-458c-b036-582825d643b6-15/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181118_113242-scaled.jpg,,TRUE, +N1,59458,sortie-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/sorties/sortie-7ea0399e-87d8-458c-b036-582825d643b6/,Fleur,,11/18/2018 0:00,11.0000000,11.0000000,43.030911000000,6.103381000000,,"Plage avant Escampo-Barriou, Madrague, Presqu'île de Giens",41923,observation-7ea0399e-87d8-458c-b036-582825d643b6-16,https://biolit.fr/observations/observation-7ea0399e-87d8-458c-b036-582825d643b6-16/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181118_113248-scaled.jpg,,TRUE, +N1,59459,sortie-0eccac41-6200-49c1-89f0-e59b092db8c0,https://biolit.fr/sorties/sortie-0eccac41-6200-49c1-89f0-e59b092db8c0/,Phil,,7/16/2018 0:00,14.0:15,14.0:25,47.809902000000,-3.712087000000,,Moëlan-sur-Mer - Finistère,41925,observation-0eccac41-6200-49c1-89f0-e59b092db8c0,https://biolit.fr/observations/observation-0eccac41-6200-49c1-89f0-e59b092db8c0/,Brissus unicolor,Oursin de sable gris,,https://biolit.fr/wp-content/uploads/2023/07/P1110858_0.JPG,,TRUE, +N1,59459,sortie-0eccac41-6200-49c1-89f0-e59b092db8c0,https://biolit.fr/sorties/sortie-0eccac41-6200-49c1-89f0-e59b092db8c0/,Phil,,7/16/2018 0:00,14.0:15,14.0:25,47.809902000000,-3.712087000000,,Moëlan-sur-Mer - Finistère,41927,observation-0eccac41-6200-49c1-89f0-e59b092db8c0-2,https://biolit.fr/observations/observation-0eccac41-6200-49c1-89f0-e59b092db8c0-2/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1110860_0.JPG,,TRUE, +N1,59459,sortie-0eccac41-6200-49c1-89f0-e59b092db8c0,https://biolit.fr/sorties/sortie-0eccac41-6200-49c1-89f0-e59b092db8c0/,Phil,,7/16/2018 0:00,14.0:15,14.0:25,47.809902000000,-3.712087000000,,Moëlan-sur-Mer - Finistère,41929,observation-0eccac41-6200-49c1-89f0-e59b092db8c0-3,https://biolit.fr/observations/observation-0eccac41-6200-49c1-89f0-e59b092db8c0-3/,Ensis siliqua,Couteau-silique,,https://biolit.fr/wp-content/uploads/2023/07/P1110861_0.JPG,,TRUE, +N1,59459,sortie-0eccac41-6200-49c1-89f0-e59b092db8c0,https://biolit.fr/sorties/sortie-0eccac41-6200-49c1-89f0-e59b092db8c0/,Phil,,7/16/2018 0:00,14.0:15,14.0:25,47.809902000000,-3.712087000000,,Moëlan-sur-Mer - Finistère,41931,observation-0eccac41-6200-49c1-89f0-e59b092db8c0-4,https://biolit.fr/observations/observation-0eccac41-6200-49c1-89f0-e59b092db8c0-4/,Ensis siliqua,Couteau-silique,,https://biolit.fr/wp-content/uploads/2023/07/P1110862.JPG,,TRUE, +N1,59460,sortie-6c64346f-deab-4ed6-8ee0-a8c21016cb6a,https://biolit.fr/sorties/sortie-6c64346f-deab-4ed6-8ee0-a8c21016cb6a/,Phil,,10/26/2018 0:00,12.0:55,13.0000000,47.796854000000,-4.177285000000,,Loctudy - Finistère,41933,observation-6c64346f-deab-4ed6-8ee0-a8c21016cb6a,https://biolit.fr/observations/observation-6c64346f-deab-4ed6-8ee0-a8c21016cb6a/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/20181026_125645.jpg,,TRUE, +N1,59460,sortie-6c64346f-deab-4ed6-8ee0-a8c21016cb6a,https://biolit.fr/sorties/sortie-6c64346f-deab-4ed6-8ee0-a8c21016cb6a/,Phil,,10/26/2018 0:00,12.0:55,13.0000000,47.796854000000,-4.177285000000,,Loctudy - Finistère,41935,observation-6c64346f-deab-4ed6-8ee0-a8c21016cb6a-2,https://biolit.fr/observations/observation-6c64346f-deab-4ed6-8ee0-a8c21016cb6a-2/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/20181026_125627.jpg,,TRUE, +N1,59460,sortie-6c64346f-deab-4ed6-8ee0-a8c21016cb6a,https://biolit.fr/sorties/sortie-6c64346f-deab-4ed6-8ee0-a8c21016cb6a/,Phil,,10/26/2018 0:00,12.0:55,13.0000000,47.796854000000,-4.177285000000,,Loctudy - Finistère,41937,observation-6c64346f-deab-4ed6-8ee0-a8c21016cb6a-3,https://biolit.fr/observations/observation-6c64346f-deab-4ed6-8ee0-a8c21016cb6a-3/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/20181026_125613.jpg,,TRUE, +N1,59460,sortie-6c64346f-deab-4ed6-8ee0-a8c21016cb6a,https://biolit.fr/sorties/sortie-6c64346f-deab-4ed6-8ee0-a8c21016cb6a/,Phil,,10/26/2018 0:00,12.0:55,13.0000000,47.796854000000,-4.177285000000,,Loctudy - Finistère,41939,observation-6c64346f-deab-4ed6-8ee0-a8c21016cb6a-4,https://biolit.fr/observations/observation-6c64346f-deab-4ed6-8ee0-a8c21016cb6a-4/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/20181026_125502.jpg,,TRUE, +N1,59460,sortie-6c64346f-deab-4ed6-8ee0-a8c21016cb6a,https://biolit.fr/sorties/sortie-6c64346f-deab-4ed6-8ee0-a8c21016cb6a/,Phil,,10/26/2018 0:00,12.0:55,13.0000000,47.796854000000,-4.177285000000,,Loctudy - Finistère,41941,observation-6c64346f-deab-4ed6-8ee0-a8c21016cb6a-5,https://biolit.fr/observations/observation-6c64346f-deab-4ed6-8ee0-a8c21016cb6a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181026_125521.jpg,,FALSE, +N1,59461,sortie-b39054f9-b7ef-45f6-a055-b71ce7cf44a7,https://biolit.fr/sorties/sortie-b39054f9-b7ef-45f6-a055-b71ce7cf44a7/,Phil,,11/18/2018 0:00,12.0:15,12.0000000,47.854206000000,-3.980508000000,,Fouesnant - Finistère,41943,observation-b39054f9-b7ef-45f6-a055-b71ce7cf44a7,https://biolit.fr/observations/observation-b39054f9-b7ef-45f6-a055-b71ce7cf44a7/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20181118_121806.jpg,,TRUE, +N1,59461,sortie-b39054f9-b7ef-45f6-a055-b71ce7cf44a7,https://biolit.fr/sorties/sortie-b39054f9-b7ef-45f6-a055-b71ce7cf44a7/,Phil,,11/18/2018 0:00,12.0:15,12.0000000,47.854206000000,-3.980508000000,,Fouesnant - Finistère,41945,observation-b39054f9-b7ef-45f6-a055-b71ce7cf44a7-2,https://biolit.fr/observations/observation-b39054f9-b7ef-45f6-a055-b71ce7cf44a7-2/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20181118_121745.jpg,,TRUE, +N1,59461,sortie-b39054f9-b7ef-45f6-a055-b71ce7cf44a7,https://biolit.fr/sorties/sortie-b39054f9-b7ef-45f6-a055-b71ce7cf44a7/,Phil,,11/18/2018 0:00,12.0:15,12.0000000,47.854206000000,-3.980508000000,,Fouesnant - Finistère,41947,observation-b39054f9-b7ef-45f6-a055-b71ce7cf44a7-3,https://biolit.fr/observations/observation-b39054f9-b7ef-45f6-a055-b71ce7cf44a7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181118_122622.jpg,,FALSE, +N1,59461,sortie-b39054f9-b7ef-45f6-a055-b71ce7cf44a7,https://biolit.fr/sorties/sortie-b39054f9-b7ef-45f6-a055-b71ce7cf44a7/,Phil,,11/18/2018 0:00,12.0:15,12.0000000,47.854206000000,-3.980508000000,,Fouesnant - Finistère,41949,observation-b39054f9-b7ef-45f6-a055-b71ce7cf44a7-4,https://biolit.fr/observations/observation-b39054f9-b7ef-45f6-a055-b71ce7cf44a7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181118_122647.jpg,,FALSE, +N1,59461,sortie-b39054f9-b7ef-45f6-a055-b71ce7cf44a7,https://biolit.fr/sorties/sortie-b39054f9-b7ef-45f6-a055-b71ce7cf44a7/,Phil,,11/18/2018 0:00,12.0:15,12.0000000,47.854206000000,-3.980508000000,,Fouesnant - Finistère,41951,observation-b39054f9-b7ef-45f6-a055-b71ce7cf44a7-5,https://biolit.fr/observations/observation-b39054f9-b7ef-45f6-a055-b71ce7cf44a7-5/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20181118_121908.jpg,,TRUE, +N1,59462,sortie-fac895c4-5823-455d-aa06-1eeecee2211c,https://biolit.fr/sorties/sortie-fac895c4-5823-455d-aa06-1eeecee2211c/,Phil,,10/26/2018 0:00,12.0:45,12.0000000,47.797122000000,-4.178006000000,,Loctudy - Finistère,41953,observation-fac895c4-5823-455d-aa06-1eeecee2211c,https://biolit.fr/observations/observation-fac895c4-5823-455d-aa06-1eeecee2211c/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20181026_124649.jpg,,TRUE, +N1,59462,sortie-fac895c4-5823-455d-aa06-1eeecee2211c,https://biolit.fr/sorties/sortie-fac895c4-5823-455d-aa06-1eeecee2211c/,Phil,,10/26/2018 0:00,12.0:45,12.0000000,47.797122000000,-4.178006000000,,Loctudy - Finistère,41955,observation-fac895c4-5823-455d-aa06-1eeecee2211c-2,https://biolit.fr/observations/observation-fac895c4-5823-455d-aa06-1eeecee2211c-2/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20181026_124621.jpg,,TRUE, +N1,59462,sortie-fac895c4-5823-455d-aa06-1eeecee2211c,https://biolit.fr/sorties/sortie-fac895c4-5823-455d-aa06-1eeecee2211c/,Phil,,10/26/2018 0:00,12.0:45,12.0000000,47.797122000000,-4.178006000000,,Loctudy - Finistère,41957,observation-fac895c4-5823-455d-aa06-1eeecee2211c-3,https://biolit.fr/observations/observation-fac895c4-5823-455d-aa06-1eeecee2211c-3/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20181026_124545.jpg,,TRUE, +N1,59462,sortie-fac895c4-5823-455d-aa06-1eeecee2211c,https://biolit.fr/sorties/sortie-fac895c4-5823-455d-aa06-1eeecee2211c/,Phil,,10/26/2018 0:00,12.0:45,12.0000000,47.797122000000,-4.178006000000,,Loctudy - Finistère,41959,observation-fac895c4-5823-455d-aa06-1eeecee2211c-4,https://biolit.fr/observations/observation-fac895c4-5823-455d-aa06-1eeecee2211c-4/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20181026_124707.jpg,,TRUE, +N1,59463,sortie-89bd0afd-91b6-426c-9e07-fff2965b6563,https://biolit.fr/sorties/sortie-89bd0afd-91b6-426c-9e07-fff2965b6563/,Phil,,11/18/2018 0:00,12.000005,12.0:15,47.853920000000,-3.9814150000,,Fouesnant - Finistère,41961,observation-89bd0afd-91b6-426c-9e07-fff2965b6563,https://biolit.fr/observations/observation-89bd0afd-91b6-426c-9e07-fff2965b6563/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/20181118_121042.jpg,,TRUE, +N1,59463,sortie-89bd0afd-91b6-426c-9e07-fff2965b6563,https://biolit.fr/sorties/sortie-89bd0afd-91b6-426c-9e07-fff2965b6563/,Phil,,11/18/2018 0:00,12.000005,12.0:15,47.853920000000,-3.9814150000,,Fouesnant - Finistère,41963,observation-89bd0afd-91b6-426c-9e07-fff2965b6563-2,https://biolit.fr/observations/observation-89bd0afd-91b6-426c-9e07-fff2965b6563-2/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/20181118_120558.jpg,,TRUE, +N1,59463,sortie-89bd0afd-91b6-426c-9e07-fff2965b6563,https://biolit.fr/sorties/sortie-89bd0afd-91b6-426c-9e07-fff2965b6563/,Phil,,11/18/2018 0:00,12.000005,12.0:15,47.853920000000,-3.9814150000,,Fouesnant - Finistère,41965,observation-89bd0afd-91b6-426c-9e07-fff2965b6563-3,https://biolit.fr/observations/observation-89bd0afd-91b6-426c-9e07-fff2965b6563-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181118_121535.jpg,,FALSE, +N1,59464,sortie-263cb134-bf94-4f39-a064-d2e79b0bbb43,https://biolit.fr/sorties/sortie-263cb134-bf94-4f39-a064-d2e79b0bbb43/,Phil,,10/26/2018 0:00,12.0000000,12.0000000,47.796508000000,-4.179328000000,,Loctudy - Finistère,41967,observation-263cb134-bf94-4f39-a064-d2e79b0bbb43,https://biolit.fr/observations/observation-263cb134-bf94-4f39-a064-d2e79b0bbb43/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181026_123944.jpg,,FALSE, +N1,59464,sortie-263cb134-bf94-4f39-a064-d2e79b0bbb43,https://biolit.fr/sorties/sortie-263cb134-bf94-4f39-a064-d2e79b0bbb43/,Phil,,10/26/2018 0:00,12.0000000,12.0000000,47.796508000000,-4.179328000000,,Loctudy - Finistère,41969,observation-263cb134-bf94-4f39-a064-d2e79b0bbb43-2,https://biolit.fr/observations/observation-263cb134-bf94-4f39-a064-d2e79b0bbb43-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181026_123959.jpg,,FALSE, +N1,59465,sortie-f1a6fae3-0fdb-467e-8f82-349872117202,https://biolit.fr/sorties/sortie-f1a6fae3-0fdb-467e-8f82-349872117202/,Phil,,11/12/2018,12.000005,12.0000000,47.792482000000,-4.28693200000,,Guilvinec - Finistère,41971,observation-f1a6fae3-0fdb-467e-8f82-349872117202,https://biolit.fr/observations/observation-f1a6fae3-0fdb-467e-8f82-349872117202/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181112_120819.jpg,,FALSE, +N1,59465,sortie-f1a6fae3-0fdb-467e-8f82-349872117202,https://biolit.fr/sorties/sortie-f1a6fae3-0fdb-467e-8f82-349872117202/,Phil,,11/12/2018,12.000005,12.0000000,47.792482000000,-4.28693200000,,Guilvinec - Finistère,41973,observation-f1a6fae3-0fdb-467e-8f82-349872117202-2,https://biolit.fr/observations/observation-f1a6fae3-0fdb-467e-8f82-349872117202-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181112_120924.jpg,,TRUE, +N1,59465,sortie-f1a6fae3-0fdb-467e-8f82-349872117202,https://biolit.fr/sorties/sortie-f1a6fae3-0fdb-467e-8f82-349872117202/,Phil,,11/12/2018,12.000005,12.0000000,47.792482000000,-4.28693200000,,Guilvinec - Finistère,41975,observation-f1a6fae3-0fdb-467e-8f82-349872117202-3,https://biolit.fr/observations/observation-f1a6fae3-0fdb-467e-8f82-349872117202-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181112_120949.jpg,,TRUE, +N1,59465,sortie-f1a6fae3-0fdb-467e-8f82-349872117202,https://biolit.fr/sorties/sortie-f1a6fae3-0fdb-467e-8f82-349872117202/,Phil,,11/12/2018,12.000005,12.0000000,47.792482000000,-4.28693200000,,Guilvinec - Finistère,41977,observation-f1a6fae3-0fdb-467e-8f82-349872117202-4,https://biolit.fr/observations/observation-f1a6fae3-0fdb-467e-8f82-349872117202-4/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/20181112_121008.jpg,,TRUE, +N1,59465,sortie-f1a6fae3-0fdb-467e-8f82-349872117202,https://biolit.fr/sorties/sortie-f1a6fae3-0fdb-467e-8f82-349872117202/,Phil,,11/12/2018,12.000005,12.0000000,47.792482000000,-4.28693200000,,Guilvinec - Finistère,41979,observation-f1a6fae3-0fdb-467e-8f82-349872117202-5,https://biolit.fr/observations/observation-f1a6fae3-0fdb-467e-8f82-349872117202-5/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/20181112_121057.jpg,,TRUE, +N1,59466,sortie-5d657cb6-ecae-44c2-9296-41ee14fc35e0,https://biolit.fr/sorties/sortie-5d657cb6-ecae-44c2-9296-41ee14fc35e0/,pamatelo,,7/26/2018 0:00,17.0000000,17.0:45,43.333745000000,5.197623000000,,ensues la redonne ,41981,observation-5d657cb6-ecae-44c2-9296-41ee14fc35e0,https://biolit.fr/observations/observation-5d657cb6-ecae-44c2-9296-41ee14fc35e0/,Hippocampus hippocampus,Hippocampe à museau court,,https://biolit.fr/wp-content/uploads/2023/07/Image1.png,,TRUE, +N1,59467,sortie-51bbb949-9849-4ad2-bf44-82389629d9aa,https://biolit.fr/sorties/sortie-51bbb949-9849-4ad2-bf44-82389629d9aa/,pamatelo,,10/07/2018,11.0000000,12.0000000,43.333852000000,5.197725000000,,ensues la redonne ,41982,observation-51bbb949-9849-4ad2-bf44-82389629d9aa,https://biolit.fr/observations/observation-51bbb949-9849-4ad2-bf44-82389629d9aa/,Loligo spp.,Ponte de Calmar,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20181007_114527-scaled.jpg,,TRUE, +N1,59467,sortie-51bbb949-9849-4ad2-bf44-82389629d9aa,https://biolit.fr/sorties/sortie-51bbb949-9849-4ad2-bf44-82389629d9aa/,pamatelo,,10/07/2018,11.0000000,12.0000000,43.333852000000,5.197725000000,,ensues la redonne ,41984,observation-51bbb949-9849-4ad2-bf44-82389629d9aa-2,https://biolit.fr/observations/observation-51bbb949-9849-4ad2-bf44-82389629d9aa-2/,Loligo spp.,Ponte de Calmar,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20181007_114530-scaled.jpg,,TRUE, +N1,59467,sortie-51bbb949-9849-4ad2-bf44-82389629d9aa,https://biolit.fr/sorties/sortie-51bbb949-9849-4ad2-bf44-82389629d9aa/,pamatelo,,10/07/2018,11.0000000,12.0000000,43.333852000000,5.197725000000,,ensues la redonne ,41986,observation-51bbb949-9849-4ad2-bf44-82389629d9aa-3,https://biolit.fr/observations/observation-51bbb949-9849-4ad2-bf44-82389629d9aa-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181007_121200-scaled.jpg,,FALSE, +N1,59468,sortie-88d715f4-d296-466d-bbef-4b3fd18987f5,https://biolit.fr/sorties/sortie-88d715f4-d296-466d-bbef-4b3fd18987f5/,Guillaume D,,11/16/2018 0:00,15.0000000,16.0000000,16.256366000000,-61.255201000000,,"Anse du Mancenillier, Saint-François, Guadeloupe",41988,observation-88d715f4-d296-466d-bbef-4b3fd18987f5,https://biolit.fr/observations/observation-88d715f4-d296-466d-bbef-4b3fd18987f5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181116_161850-scaled.jpg,,FALSE, +N1,59468,sortie-88d715f4-d296-466d-bbef-4b3fd18987f5,https://biolit.fr/sorties/sortie-88d715f4-d296-466d-bbef-4b3fd18987f5/,Guillaume D,,11/16/2018 0:00,15.0000000,16.0000000,16.256366000000,-61.255201000000,,"Anse du Mancenillier, Saint-François, Guadeloupe",41990,observation-88d715f4-d296-466d-bbef-4b3fd18987f5-2,https://biolit.fr/observations/observation-88d715f4-d296-466d-bbef-4b3fd18987f5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181116_161858-scaled.jpg,,FALSE, +N1,59468,sortie-88d715f4-d296-466d-bbef-4b3fd18987f5,https://biolit.fr/sorties/sortie-88d715f4-d296-466d-bbef-4b3fd18987f5/,Guillaume D,,11/16/2018 0:00,15.0000000,16.0000000,16.256366000000,-61.255201000000,,"Anse du Mancenillier, Saint-François, Guadeloupe",41992,observation-88d715f4-d296-466d-bbef-4b3fd18987f5-3,https://biolit.fr/observations/observation-88d715f4-d296-466d-bbef-4b3fd18987f5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181116_161937-scaled.jpg,,FALSE, +N1,59468,sortie-88d715f4-d296-466d-bbef-4b3fd18987f5,https://biolit.fr/sorties/sortie-88d715f4-d296-466d-bbef-4b3fd18987f5/,Guillaume D,,11/16/2018 0:00,15.0000000,16.0000000,16.256366000000,-61.255201000000,,"Anse du Mancenillier, Saint-François, Guadeloupe",41994,observation-88d715f4-d296-466d-bbef-4b3fd18987f5-4,https://biolit.fr/observations/observation-88d715f4-d296-466d-bbef-4b3fd18987f5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181116_162100-scaled.jpg,,FALSE, +N1,59468,sortie-88d715f4-d296-466d-bbef-4b3fd18987f5,https://biolit.fr/sorties/sortie-88d715f4-d296-466d-bbef-4b3fd18987f5/,Guillaume D,,11/16/2018 0:00,15.0000000,16.0000000,16.256366000000,-61.255201000000,,"Anse du Mancenillier, Saint-François, Guadeloupe",41996,observation-88d715f4-d296-466d-bbef-4b3fd18987f5-5,https://biolit.fr/observations/observation-88d715f4-d296-466d-bbef-4b3fd18987f5-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181116_162122-scaled.jpg,,FALSE, +N1,59468,sortie-88d715f4-d296-466d-bbef-4b3fd18987f5,https://biolit.fr/sorties/sortie-88d715f4-d296-466d-bbef-4b3fd18987f5/,Guillaume D,,11/16/2018 0:00,15.0000000,16.0000000,16.256366000000,-61.255201000000,,"Anse du Mancenillier, Saint-François, Guadeloupe",41998,observation-88d715f4-d296-466d-bbef-4b3fd18987f5-6,https://biolit.fr/observations/observation-88d715f4-d296-466d-bbef-4b3fd18987f5-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181116_162218-scaled.jpg,,FALSE, +N1,59469,sortie-76b49bdd-628c-48ca-b36c-74f1b1339a51,https://biolit.fr/sorties/sortie-76b49bdd-628c-48ca-b36c-74f1b1339a51/,Phil,,7/16/2018 0:00,13.0000000,13.0:45,47.808685000000,-3.7129750000,,Moëlan-sur-Mer - Finistère,42000,observation-76b49bdd-628c-48ca-b36c-74f1b1339a51,https://biolit.fr/observations/observation-76b49bdd-628c-48ca-b36c-74f1b1339a51/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110850_0.JPG,,FALSE, +N1,59469,sortie-76b49bdd-628c-48ca-b36c-74f1b1339a51,https://biolit.fr/sorties/sortie-76b49bdd-628c-48ca-b36c-74f1b1339a51/,Phil,,7/16/2018 0:00,13.0000000,13.0:45,47.808685000000,-3.7129750000,,Moëlan-sur-Mer - Finistère,42002,observation-76b49bdd-628c-48ca-b36c-74f1b1339a51-2,https://biolit.fr/observations/observation-76b49bdd-628c-48ca-b36c-74f1b1339a51-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110853_0.JPG,,FALSE, +N1,59469,sortie-76b49bdd-628c-48ca-b36c-74f1b1339a51,https://biolit.fr/sorties/sortie-76b49bdd-628c-48ca-b36c-74f1b1339a51/,Phil,,7/16/2018 0:00,13.0000000,13.0:45,47.808685000000,-3.7129750000,,Moëlan-sur-Mer - Finistère,42004,observation-76b49bdd-628c-48ca-b36c-74f1b1339a51-3,https://biolit.fr/observations/observation-76b49bdd-628c-48ca-b36c-74f1b1339a51-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110854_0.JPG,,FALSE, +N1,59469,sortie-76b49bdd-628c-48ca-b36c-74f1b1339a51,https://biolit.fr/sorties/sortie-76b49bdd-628c-48ca-b36c-74f1b1339a51/,Phil,,7/16/2018 0:00,13.0000000,13.0:45,47.808685000000,-3.7129750000,,Moëlan-sur-Mer - Finistère,42006,observation-76b49bdd-628c-48ca-b36c-74f1b1339a51-4,https://biolit.fr/observations/observation-76b49bdd-628c-48ca-b36c-74f1b1339a51-4/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/P1110763.JPG,,TRUE, +N1,59469,sortie-76b49bdd-628c-48ca-b36c-74f1b1339a51,https://biolit.fr/sorties/sortie-76b49bdd-628c-48ca-b36c-74f1b1339a51/,Phil,,7/16/2018 0:00,13.0000000,13.0:45,47.808685000000,-3.7129750000,,Moëlan-sur-Mer - Finistère,42008,observation-76b49bdd-628c-48ca-b36c-74f1b1339a51-5,https://biolit.fr/observations/observation-76b49bdd-628c-48ca-b36c-74f1b1339a51-5/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/P1110764.JPG,,TRUE, +N1,59470,sortie-7af2cb35-8121-4b01-881a-348ca3f67a60,https://biolit.fr/sorties/sortie-7af2cb35-8121-4b01-881a-348ca3f67a60/,Guillaume D,,11/14/2018 0:00,10.0000000,11.0000000,16.247216000000,-61.176644000000,,"Anse des Châteaux, Pointe des Châteaux, Guadeloupe",42010,observation-7af2cb35-8121-4b01-881a-348ca3f67a60,https://biolit.fr/observations/observation-7af2cb35-8121-4b01-881a-348ca3f67a60/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181114_092857_1-scaled.jpg,,FALSE, +N1,59470,sortie-7af2cb35-8121-4b01-881a-348ca3f67a60,https://biolit.fr/sorties/sortie-7af2cb35-8121-4b01-881a-348ca3f67a60/,Guillaume D,,11/14/2018 0:00,10.0000000,11.0000000,16.247216000000,-61.176644000000,,"Anse des Châteaux, Pointe des Châteaux, Guadeloupe",42012,observation-7af2cb35-8121-4b01-881a-348ca3f67a60-2,https://biolit.fr/observations/observation-7af2cb35-8121-4b01-881a-348ca3f67a60-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181114_102222_0-scaled.jpg,,FALSE, +N1,59470,sortie-7af2cb35-8121-4b01-881a-348ca3f67a60,https://biolit.fr/sorties/sortie-7af2cb35-8121-4b01-881a-348ca3f67a60/,Guillaume D,,11/14/2018 0:00,10.0000000,11.0000000,16.247216000000,-61.176644000000,,"Anse des Châteaux, Pointe des Châteaux, Guadeloupe",42014,observation-7af2cb35-8121-4b01-881a-348ca3f67a60-3,https://biolit.fr/observations/observation-7af2cb35-8121-4b01-881a-348ca3f67a60-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181114_102518_1-scaled.jpg,,FALSE, +N1,59470,sortie-7af2cb35-8121-4b01-881a-348ca3f67a60,https://biolit.fr/sorties/sortie-7af2cb35-8121-4b01-881a-348ca3f67a60/,Guillaume D,,11/14/2018 0:00,10.0000000,11.0000000,16.247216000000,-61.176644000000,,"Anse des Châteaux, Pointe des Châteaux, Guadeloupe",42016,observation-7af2cb35-8121-4b01-881a-348ca3f67a60-4,https://biolit.fr/observations/observation-7af2cb35-8121-4b01-881a-348ca3f67a60-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181114_102603_1-scaled.jpg,,FALSE, +N1,59471,sortie-42732e75-4228-4643-9c18-1ce972d3a3a4,https://biolit.fr/sorties/sortie-42732e75-4228-4643-9c18-1ce972d3a3a4/,Phil,,10/26/2018 0:00,12.0:15,12.0000000,47.796225000000,-4.17901900000,,Loctudy - Finistère,42018,observation-42732e75-4228-4643-9c18-1ce972d3a3a4,https://biolit.fr/observations/observation-42732e75-4228-4643-9c18-1ce972d3a3a4/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20181026_121624.jpg,,TRUE, +N1,59471,sortie-42732e75-4228-4643-9c18-1ce972d3a3a4,https://biolit.fr/sorties/sortie-42732e75-4228-4643-9c18-1ce972d3a3a4/,Phil,,10/26/2018 0:00,12.0:15,12.0000000,47.796225000000,-4.17901900000,,Loctudy - Finistère,42020,observation-42732e75-4228-4643-9c18-1ce972d3a3a4-2,https://biolit.fr/observations/observation-42732e75-4228-4643-9c18-1ce972d3a3a4-2/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20181026_121642.jpg,,TRUE, +N1,59471,sortie-42732e75-4228-4643-9c18-1ce972d3a3a4,https://biolit.fr/sorties/sortie-42732e75-4228-4643-9c18-1ce972d3a3a4/,Phil,,10/26/2018 0:00,12.0:15,12.0000000,47.796225000000,-4.17901900000,,Loctudy - Finistère,42022,observation-42732e75-4228-4643-9c18-1ce972d3a3a4-3,https://biolit.fr/observations/observation-42732e75-4228-4643-9c18-1ce972d3a3a4-3/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20181026_124044.jpg,,TRUE, +N1,59471,sortie-42732e75-4228-4643-9c18-1ce972d3a3a4,https://biolit.fr/sorties/sortie-42732e75-4228-4643-9c18-1ce972d3a3a4/,Phil,,10/26/2018 0:00,12.0:15,12.0000000,47.796225000000,-4.17901900000,,Loctudy - Finistère,42024,observation-42732e75-4228-4643-9c18-1ce972d3a3a4-4,https://biolit.fr/observations/observation-42732e75-4228-4643-9c18-1ce972d3a3a4-4/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20181026_123918.jpg,,TRUE, +N1,59471,sortie-42732e75-4228-4643-9c18-1ce972d3a3a4,https://biolit.fr/sorties/sortie-42732e75-4228-4643-9c18-1ce972d3a3a4/,Phil,,10/26/2018 0:00,12.0:15,12.0000000,47.796225000000,-4.17901900000,,Loctudy - Finistère,42026,observation-42732e75-4228-4643-9c18-1ce972d3a3a4-5,https://biolit.fr/observations/observation-42732e75-4228-4643-9c18-1ce972d3a3a4-5/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20181026_123900.jpg,,TRUE, +N1,59471,sortie-42732e75-4228-4643-9c18-1ce972d3a3a4,https://biolit.fr/sorties/sortie-42732e75-4228-4643-9c18-1ce972d3a3a4/,Phil,,10/26/2018 0:00,12.0:15,12.0000000,47.796225000000,-4.17901900000,,Loctudy - Finistère,42028,observation-42732e75-4228-4643-9c18-1ce972d3a3a4-6,https://biolit.fr/observations/observation-42732e75-4228-4643-9c18-1ce972d3a3a4-6/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20181026_124035.jpg,,TRUE, +N1,59471,sortie-42732e75-4228-4643-9c18-1ce972d3a3a4,https://biolit.fr/sorties/sortie-42732e75-4228-4643-9c18-1ce972d3a3a4/,Phil,,10/26/2018 0:00,12.0:15,12.0000000,47.796225000000,-4.17901900000,,Loctudy - Finistère,42030,observation-42732e75-4228-4643-9c18-1ce972d3a3a4-7,https://biolit.fr/observations/observation-42732e75-4228-4643-9c18-1ce972d3a3a4-7/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20181026_124041.jpg,,TRUE, +N1,59472,sortie-8a4d887b-ec06-4eb6-8a35-3688e07cc750,https://biolit.fr/sorties/sortie-8a4d887b-ec06-4eb6-8a35-3688e07cc750/,Maison du Littoral et de l'Environnement,,11/07/2018,14.0:15,15.0000000,49.657510000000,-1.567725000000,,Plage de collignon,42032,observation-8a4d887b-ec06-4eb6-8a35-3688e07cc750,https://biolit.fr/observations/observation-8a4d887b-ec06-4eb6-8a35-3688e07cc750/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2663_0-rotated.jpg,,TRUE, +N1,59472,sortie-8a4d887b-ec06-4eb6-8a35-3688e07cc750,https://biolit.fr/sorties/sortie-8a4d887b-ec06-4eb6-8a35-3688e07cc750/,Maison du Littoral et de l'Environnement,,11/07/2018,14.0:15,15.0000000,49.657510000000,-1.567725000000,,Plage de collignon,42034,observation-8a4d887b-ec06-4eb6-8a35-3688e07cc750-2,https://biolit.fr/observations/observation-8a4d887b-ec06-4eb6-8a35-3688e07cc750-2/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2795.JPG,,TRUE, +N1,59472,sortie-8a4d887b-ec06-4eb6-8a35-3688e07cc750,https://biolit.fr/sorties/sortie-8a4d887b-ec06-4eb6-8a35-3688e07cc750/,Maison du Littoral et de l'Environnement,,11/07/2018,14.0:15,15.0000000,49.657510000000,-1.567725000000,,Plage de collignon,42036,observation-8a4d887b-ec06-4eb6-8a35-3688e07cc750-3,https://biolit.fr/observations/observation-8a4d887b-ec06-4eb6-8a35-3688e07cc750-3/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2743.JPG,,TRUE, +N1,59472,sortie-8a4d887b-ec06-4eb6-8a35-3688e07cc750,https://biolit.fr/sorties/sortie-8a4d887b-ec06-4eb6-8a35-3688e07cc750/,Maison du Littoral et de l'Environnement,,11/07/2018,14.0:15,15.0000000,49.657510000000,-1.567725000000,,Plage de collignon,42038,observation-8a4d887b-ec06-4eb6-8a35-3688e07cc750-4,https://biolit.fr/observations/observation-8a4d887b-ec06-4eb6-8a35-3688e07cc750-4/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2791.JPG,,TRUE, +N1,59473,sortie-79975095-89f5-4693-938b-a5ea3d5987aa,https://biolit.fr/sorties/sortie-79975095-89f5-4693-938b-a5ea3d5987aa/,Phil,,7/16/2018 0:00,13.000005,13.0000000,47.810396000000,-3.711965000000,,Moëlan-sur-Mer - Finistère,42040,observation-79975095-89f5-4693-938b-a5ea3d5987aa,https://biolit.fr/observations/observation-79975095-89f5-4693-938b-a5ea3d5987aa/,Ramalina siliquosa,Ramaline des rochers,,https://biolit.fr/wp-content/uploads/2023/07/P1110759.JPG,,TRUE, +N1,59473,sortie-79975095-89f5-4693-938b-a5ea3d5987aa,https://biolit.fr/sorties/sortie-79975095-89f5-4693-938b-a5ea3d5987aa/,Phil,,7/16/2018 0:00,13.000005,13.0000000,47.810396000000,-3.711965000000,,Moëlan-sur-Mer - Finistère,42042,observation-79975095-89f5-4693-938b-a5ea3d5987aa-2,https://biolit.fr/observations/observation-79975095-89f5-4693-938b-a5ea3d5987aa-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110758.JPG,,FALSE, +N1,59473,sortie-79975095-89f5-4693-938b-a5ea3d5987aa,https://biolit.fr/sorties/sortie-79975095-89f5-4693-938b-a5ea3d5987aa/,Phil,,7/16/2018 0:00,13.000005,13.0000000,47.810396000000,-3.711965000000,,Moëlan-sur-Mer - Finistère,42044,observation-79975095-89f5-4693-938b-a5ea3d5987aa-3,https://biolit.fr/observations/observation-79975095-89f5-4693-938b-a5ea3d5987aa-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110760.JPG,,FALSE, +N1,59474,sortie-faf8962b-b293-4425-a1a9-aebd5c7bdde9,https://biolit.fr/sorties/sortie-faf8962b-b293-4425-a1a9-aebd5c7bdde9/,Phil,,10/26/2018 0:00,11.0000000,12.0:15,47.796887000000,-4.178229000000,,Loctudy - Finistère,42046,observation-faf8962b-b293-4425-a1a9-aebd5c7bdde9,https://biolit.fr/observations/observation-faf8962b-b293-4425-a1a9-aebd5c7bdde9/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/20181026_121329.jpg,,TRUE, +N1,59474,sortie-faf8962b-b293-4425-a1a9-aebd5c7bdde9,https://biolit.fr/sorties/sortie-faf8962b-b293-4425-a1a9-aebd5c7bdde9/,Phil,,10/26/2018 0:00,11.0000000,12.0:15,47.796887000000,-4.178229000000,,Loctudy - Finistère,42048,observation-faf8962b-b293-4425-a1a9-aebd5c7bdde9-2,https://biolit.fr/observations/observation-faf8962b-b293-4425-a1a9-aebd5c7bdde9-2/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20181026_121046.jpg,,TRUE, +N1,59474,sortie-faf8962b-b293-4425-a1a9-aebd5c7bdde9,https://biolit.fr/sorties/sortie-faf8962b-b293-4425-a1a9-aebd5c7bdde9/,Phil,,10/26/2018 0:00,11.0000000,12.0:15,47.796887000000,-4.178229000000,,Loctudy - Finistère,42050,observation-faf8962b-b293-4425-a1a9-aebd5c7bdde9-3,https://biolit.fr/observations/observation-faf8962b-b293-4425-a1a9-aebd5c7bdde9-3/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20181026_115528.jpg,,TRUE, +N1,59474,sortie-faf8962b-b293-4425-a1a9-aebd5c7bdde9,https://biolit.fr/sorties/sortie-faf8962b-b293-4425-a1a9-aebd5c7bdde9/,Phil,,10/26/2018 0:00,11.0000000,12.0:15,47.796887000000,-4.178229000000,,Loctudy - Finistère,42052,observation-faf8962b-b293-4425-a1a9-aebd5c7bdde9-4,https://biolit.fr/observations/observation-faf8962b-b293-4425-a1a9-aebd5c7bdde9-4/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181026_114258.jpg,,TRUE, +N1,59474,sortie-faf8962b-b293-4425-a1a9-aebd5c7bdde9,https://biolit.fr/sorties/sortie-faf8962b-b293-4425-a1a9-aebd5c7bdde9/,Phil,,10/26/2018 0:00,11.0000000,12.0:15,47.796887000000,-4.178229000000,,Loctudy - Finistère,42054,observation-faf8962b-b293-4425-a1a9-aebd5c7bdde9-5,https://biolit.fr/observations/observation-faf8962b-b293-4425-a1a9-aebd5c7bdde9-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20181026_114053.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42056,observation-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53/,,,,https://biolit.fr/wp-content/uploads/2023/07/1_3.jpg,,FALSE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42058,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-2,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-2/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/2_3.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42060,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-3,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-3/,Bifurcaria bifurcata,Bifurcaire,,https://biolit.fr/wp-content/uploads/2023/07/3_2.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42062,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-4,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-4/,Pelvetia canaliculata,Pelvétie,,https://biolit.fr/wp-content/uploads/2023/07/4_2.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42064,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-5,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-5/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/5_1.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42066,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-6,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-6/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/6.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42068,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-7,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-7/,Hydropunctaria maura,Verrucaire noire,,https://biolit.fr/wp-content/uploads/2023/07/7.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42070,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-8,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-8/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/z1.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42072,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-9,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-9/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/z2.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42074,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-10,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-10/,Pelvetia canaliculata,Pelvétie,,https://biolit.fr/wp-content/uploads/2023/07/z3.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42076,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-11,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-11/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/z4.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42078,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-12,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-12/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/z5.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42080,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-13,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-13/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/z6.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42082,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-14,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-14/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/z7.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42084,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-15,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-15/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/z8.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42086,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-16,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/z9.jpg,,FALSE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42088,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-17,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-17/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/z10.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42090,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-18,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/z11.jpg,,FALSE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42092,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-19,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/z12.jpg,,FALSE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42094,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-20,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-20/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/z13.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42096,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-21,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/z14.jpg,,FALSE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42098,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-22,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-22/,Bifurcaria bifurcata,Bifurcaire,,https://biolit.fr/wp-content/uploads/2023/07/z15.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42100,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-23,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-23/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/z16.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42102,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-24,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-24/,Mastocarpus stellatus,Gigartine,,https://biolit.fr/wp-content/uploads/2023/07/z17.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42104,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-25,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-25/,Lomentaria articulata,Algue saucisson,,https://biolit.fr/wp-content/uploads/2023/07/z18.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42106,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-26,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-26/,Mastocarpus stellatus,Gigartine,,https://biolit.fr/wp-content/uploads/2023/07/z19.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42108,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-27,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/z20.jpg,,FALSE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42110,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-28,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-28/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/z21.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42112,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-29,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-29/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/z22.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42114,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-30,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/z23.jpg,,FALSE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42116,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-31,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-31/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/z24.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42118,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-32,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/z25.jpg,,FALSE, +N1,59476,sortie-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba,https://biolit.fr/sorties/sortie-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba/,Phil,,7/22/2018 0:00,11.0:25,11.0000000,47.709291000000,-3.991835000000,,Fouesnant - Finistère,42120,observation-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba,https://biolit.fr/observations/observation-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110954_0.JPG,,FALSE, +N1,59476,sortie-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba,https://biolit.fr/sorties/sortie-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba/,Phil,,7/22/2018 0:00,11.0:25,11.0000000,47.709291000000,-3.991835000000,,Fouesnant - Finistère,42122,observation-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba-2,https://biolit.fr/observations/observation-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110952.JPG,,FALSE, +N1,59476,sortie-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba,https://biolit.fr/sorties/sortie-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba/,Phil,,7/22/2018 0:00,11.0:25,11.0000000,47.709291000000,-3.991835000000,,Fouesnant - Finistère,42124,observation-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba-3,https://biolit.fr/observations/observation-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba-3/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1110947.JPG,,TRUE, +N1,59476,sortie-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba,https://biolit.fr/sorties/sortie-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba/,Phil,,7/22/2018 0:00,11.0:25,11.0000000,47.709291000000,-3.991835000000,,Fouesnant - Finistère,42126,observation-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba-4,https://biolit.fr/observations/observation-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba-4/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1110944.JPG,,TRUE, +N1,59476,sortie-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba,https://biolit.fr/sorties/sortie-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba/,Phil,,7/22/2018 0:00,11.0:25,11.0000000,47.709291000000,-3.991835000000,,Fouesnant - Finistère,42128,observation-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba-5,https://biolit.fr/observations/observation-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba-5/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1110941.JPG,,TRUE, +N1,59476,sortie-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba,https://biolit.fr/sorties/sortie-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba/,Phil,,7/22/2018 0:00,11.0:25,11.0000000,47.709291000000,-3.991835000000,,Fouesnant - Finistère,42130,observation-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba-6,https://biolit.fr/observations/observation-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba-6/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/P1110940.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42132,observation-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7450.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42134,observation-9508afeb-ee6d-4608-852f-a433c83505d2-2,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-2/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7451.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42136,observation-9508afeb-ee6d-4608-852f-a433c83505d2-3,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-3/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7452.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42138,observation-9508afeb-ee6d-4608-852f-a433c83505d2-4,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-4/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7454.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42140,observation-9508afeb-ee6d-4608-852f-a433c83505d2-5,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-5/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7456.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42142,observation-9508afeb-ee6d-4608-852f-a433c83505d2-6,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-6/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7457.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42144,observation-9508afeb-ee6d-4608-852f-a433c83505d2-7,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-7/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7458.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42146,observation-9508afeb-ee6d-4608-852f-a433c83505d2-8,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-8/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7459.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42148,observation-9508afeb-ee6d-4608-852f-a433c83505d2-9,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7461.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42150,observation-9508afeb-ee6d-4608-852f-a433c83505d2-10,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7462.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42152,observation-9508afeb-ee6d-4608-852f-a433c83505d2-11,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-11/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_7465_1.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42154,observation-9508afeb-ee6d-4608-852f-a433c83505d2-12,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-12/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_7464.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42156,observation-9508afeb-ee6d-4608-852f-a433c83505d2-13,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-13/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_7466_1.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42158,observation-9508afeb-ee6d-4608-852f-a433c83505d2-14,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7468.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42160,observation-9508afeb-ee6d-4608-852f-a433c83505d2-15,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7470.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42162,observation-9508afeb-ee6d-4608-852f-a433c83505d2-16,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7471.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42164,observation-9508afeb-ee6d-4608-852f-a433c83505d2-17,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7472.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42166,observation-9508afeb-ee6d-4608-852f-a433c83505d2-18,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-18/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7473.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42168,observation-9508afeb-ee6d-4608-852f-a433c83505d2-19,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-19/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7474.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42170,observation-9508afeb-ee6d-4608-852f-a433c83505d2-20,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-20/,Petricolaria pholadiformis,Fausse pholade,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7475.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42172,observation-9508afeb-ee6d-4608-852f-a433c83505d2-21,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-21/,Petricolaria pholadiformis,Fausse pholade,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7476.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42174,observation-9508afeb-ee6d-4608-852f-a433c83505d2-22,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-22/,Petricolaria pholadiformis,Fausse pholade,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7478.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42176,observation-9508afeb-ee6d-4608-852f-a433c83505d2-23,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-23/,Maja crispata,Petite araignée de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7479.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42178,observation-9508afeb-ee6d-4608-852f-a433c83505d2-24,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-24/,Maja crispata,Petite araignée de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7480.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42180,observation-9508afeb-ee6d-4608-852f-a433c83505d2-25,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7481.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42182,observation-9508afeb-ee6d-4608-852f-a433c83505d2-26,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7482.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42184,observation-9508afeb-ee6d-4608-852f-a433c83505d2-27,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7483.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42186,observation-9508afeb-ee6d-4608-852f-a433c83505d2-28,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7484.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42188,observation-9508afeb-ee6d-4608-852f-a433c83505d2-29,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-29/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7485.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42190,observation-9508afeb-ee6d-4608-852f-a433c83505d2-30,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-30/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7487.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42192,observation-9508afeb-ee6d-4608-852f-a433c83505d2-31,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-31/,Liocarcinus navigator,Etrille arquée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7488.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42194,observation-9508afeb-ee6d-4608-852f-a433c83505d2-32,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-32/,Liocarcinus navigator,Etrille arquée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7489.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42196,observation-9508afeb-ee6d-4608-852f-a433c83505d2-33,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7490.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42198,observation-9508afeb-ee6d-4608-852f-a433c83505d2-34,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7491.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42200,observation-9508afeb-ee6d-4608-852f-a433c83505d2-35,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-35/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7493.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42202,observation-9508afeb-ee6d-4608-852f-a433c83505d2-36,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-36/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7494.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42204,observation-9508afeb-ee6d-4608-852f-a433c83505d2-37,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-37/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7495.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42206,observation-9508afeb-ee6d-4608-852f-a433c83505d2-38,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-38/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7496.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42208,observation-9508afeb-ee6d-4608-852f-a433c83505d2-39,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-39/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7497.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42210,observation-9508afeb-ee6d-4608-852f-a433c83505d2-40,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-40/,Pisa nodipes,Pise à pattes noueuses,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7498.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42212,observation-9508afeb-ee6d-4608-852f-a433c83505d2-41,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-41/,Pisa nodipes,Pise à pattes noueuses,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7500.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42214,observation-9508afeb-ee6d-4608-852f-a433c83505d2-42,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-42/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7501.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42216,observation-9508afeb-ee6d-4608-852f-a433c83505d2-43,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-43/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7502.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42218,observation-9508afeb-ee6d-4608-852f-a433c83505d2-44,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-44/,Liocarcinus navigator,Etrille arquée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7503.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42220,observation-9508afeb-ee6d-4608-852f-a433c83505d2-45,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-45/,Liocarcinus navigator,Etrille arquée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7504.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42222,observation-9508afeb-ee6d-4608-852f-a433c83505d2-46,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-46/,Eriocheir sinensis,Crabe chinois à mitaines,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_7506.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42224,observation-9508afeb-ee6d-4608-852f-a433c83505d2-47,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-47/,Eriocheir sinensis,Crabe chinois à mitaines,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_7507.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42226,observation-9508afeb-ee6d-4608-852f-a433c83505d2-48,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-48/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7508.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42228,observation-9508afeb-ee6d-4608-852f-a433c83505d2-49,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-49/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7509.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42230,observation-9508afeb-ee6d-4608-852f-a433c83505d2-50,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-50/,Calliblepharis ciliata,Algue ciliée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7511.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42232,observation-9508afeb-ee6d-4608-852f-a433c83505d2-51,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-51/,Electra pilosa,Ecorce pileuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7513.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42234,observation-9508afeb-ee6d-4608-852f-a433c83505d2-52,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-52/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7514.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42236,observation-9508afeb-ee6d-4608-852f-a433c83505d2-53,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-53/,Calliblepharis ciliata,Algue ciliée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7515.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42238,observation-9508afeb-ee6d-4608-852f-a433c83505d2-54,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-54/,Calliblepharis ciliata,Algue ciliée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7516.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42240,observation-9508afeb-ee6d-4608-852f-a433c83505d2-55,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-55/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7517.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42242,observation-9508afeb-ee6d-4608-852f-a433c83505d2-56,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-56/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7518.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42244,observation-9508afeb-ee6d-4608-852f-a433c83505d2-57,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-57/,Chondrus crispus,Goémon frisé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7519.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42246,observation-9508afeb-ee6d-4608-852f-a433c83505d2-58,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-58/,Chondrus crispus,Goémon frisé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7520.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42248,observation-9508afeb-ee6d-4608-852f-a433c83505d2-59,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-59/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7521.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42250,observation-9508afeb-ee6d-4608-852f-a433c83505d2-60,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-60/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7522.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42252,observation-9508afeb-ee6d-4608-852f-a433c83505d2-61,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-61/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7524.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42254,observation-9508afeb-ee6d-4608-852f-a433c83505d2-62,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-62/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7525.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42256,observation-9508afeb-ee6d-4608-852f-a433c83505d2-63,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-63/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7526.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42258,observation-9508afeb-ee6d-4608-852f-a433c83505d2-64,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-64/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7527.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42260,observation-9508afeb-ee6d-4608-852f-a433c83505d2-65,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-65/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7528.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42262,observation-9508afeb-ee6d-4608-852f-a433c83505d2-66,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-66/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7529.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42264,observation-9508afeb-ee6d-4608-852f-a433c83505d2-67,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-67/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7532.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42266,observation-9508afeb-ee6d-4608-852f-a433c83505d2-68,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-68/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_7533.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42268,observation-9508afeb-ee6d-4608-852f-a433c83505d2-69,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-69/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_7534.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42270,observation-9508afeb-ee6d-4608-852f-a433c83505d2-70,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-70/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7536.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42272,observation-9508afeb-ee6d-4608-852f-a433c83505d2-71,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-71/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7537.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42274,observation-9508afeb-ee6d-4608-852f-a433c83505d2-72,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-72/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7538.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42276,observation-9508afeb-ee6d-4608-852f-a433c83505d2-73,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-73/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7539.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42278,observation-9508afeb-ee6d-4608-852f-a433c83505d2-74,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-74/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_7540.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42280,observation-9508afeb-ee6d-4608-852f-a433c83505d2-75,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-75/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_7541.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42282,observation-9508afeb-ee6d-4608-852f-a433c83505d2-76,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-76/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_7542.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42284,observation-9508afeb-ee6d-4608-852f-a433c83505d2-77,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-77/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_7543.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42286,observation-9508afeb-ee6d-4608-852f-a433c83505d2-78,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-78/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7544.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42288,observation-9508afeb-ee6d-4608-852f-a433c83505d2-79,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-79/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7545.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42290,observation-9508afeb-ee6d-4608-852f-a433c83505d2-80,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-80/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_7546.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42292,observation-9508afeb-ee6d-4608-852f-a433c83505d2-81,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-81/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_7547.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42294,observation-9508afeb-ee6d-4608-852f-a433c83505d2-82,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-82/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7548.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42296,observation-9508afeb-ee6d-4608-852f-a433c83505d2-83,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-83/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7551.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42298,observation-9508afeb-ee6d-4608-852f-a433c83505d2-84,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-84/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_7552.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42300,observation-9508afeb-ee6d-4608-852f-a433c83505d2-85,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-85/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_7553.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42302,observation-9508afeb-ee6d-4608-852f-a433c83505d2-86,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-86/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7554.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42304,observation-9508afeb-ee6d-4608-852f-a433c83505d2-87,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-87/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7555.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42306,observation-9508afeb-ee6d-4608-852f-a433c83505d2-88,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-88/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7556.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42308,observation-9508afeb-ee6d-4608-852f-a433c83505d2-89,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-89/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7557_moule-scaled.jpg,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42310,observation-9508afeb-ee6d-4608-852f-a433c83505d2-90,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-90/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7642-scaled.jpg,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42312,observation-9508afeb-ee6d-4608-852f-a433c83505d2-91,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-91/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7644-scaled.jpg,,FALSE, +N1,59478,sortie-70cc785a-71ba-4581-8389-9a211d8be65c,https://biolit.fr/sorties/sortie-70cc785a-71ba-4581-8389-9a211d8be65c/,Phil,,10/26/2018 0:00,11.0000000,11.0:45,47.797755000000,-4.177388000000,,Loctudy - Finistère,42314,observation-70cc785a-71ba-4581-8389-9a211d8be65c,https://biolit.fr/observations/observation-70cc785a-71ba-4581-8389-9a211d8be65c/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20181026_114003.jpg,,TRUE, +N1,59478,sortie-70cc785a-71ba-4581-8389-9a211d8be65c,https://biolit.fr/sorties/sortie-70cc785a-71ba-4581-8389-9a211d8be65c/,Phil,,10/26/2018 0:00,11.0000000,11.0:45,47.797755000000,-4.177388000000,,Loctudy - Finistère,42316,observation-70cc785a-71ba-4581-8389-9a211d8be65c-2,https://biolit.fr/observations/observation-70cc785a-71ba-4581-8389-9a211d8be65c-2/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20181026_114008.jpg,,TRUE, +N1,59478,sortie-70cc785a-71ba-4581-8389-9a211d8be65c,https://biolit.fr/sorties/sortie-70cc785a-71ba-4581-8389-9a211d8be65c/,Phil,,10/26/2018 0:00,11.0000000,11.0:45,47.797755000000,-4.177388000000,,Loctudy - Finistère,42318,observation-70cc785a-71ba-4581-8389-9a211d8be65c-3,https://biolit.fr/observations/observation-70cc785a-71ba-4581-8389-9a211d8be65c-3/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20181026_113846.jpg,,TRUE, +N1,59478,sortie-70cc785a-71ba-4581-8389-9a211d8be65c,https://biolit.fr/sorties/sortie-70cc785a-71ba-4581-8389-9a211d8be65c/,Phil,,10/26/2018 0:00,11.0000000,11.0:45,47.797755000000,-4.177388000000,,Loctudy - Finistère,42320,observation-70cc785a-71ba-4581-8389-9a211d8be65c-4,https://biolit.fr/observations/observation-70cc785a-71ba-4581-8389-9a211d8be65c-4/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20181026_114019.jpg,,TRUE, +N1,59479,sortie-d9c29d48-3904-409d-b8f7-34511a628469,https://biolit.fr/sorties/sortie-d9c29d48-3904-409d-b8f7-34511a628469/,Phil,,5/17/2018 0:00,12.000005,12.0000000,47.89019600000,-3.965558000000,,La Forêt-Fouesnant - Finistère,42322,observation-d9c29d48-3904-409d-b8f7-34511a628469,https://biolit.fr/observations/observation-d9c29d48-3904-409d-b8f7-34511a628469/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110321.JPG,,FALSE, +N1,59479,sortie-d9c29d48-3904-409d-b8f7-34511a628469,https://biolit.fr/sorties/sortie-d9c29d48-3904-409d-b8f7-34511a628469/,Phil,,5/17/2018 0:00,12.000005,12.0000000,47.89019600000,-3.965558000000,,La Forêt-Fouesnant - Finistère,42324,observation-d9c29d48-3904-409d-b8f7-34511a628469-2,https://biolit.fr/observations/observation-d9c29d48-3904-409d-b8f7-34511a628469-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110318.JPG,,FALSE, +N1,59479,sortie-d9c29d48-3904-409d-b8f7-34511a628469,https://biolit.fr/sorties/sortie-d9c29d48-3904-409d-b8f7-34511a628469/,Phil,,5/17/2018 0:00,12.000005,12.0000000,47.89019600000,-3.965558000000,,La Forêt-Fouesnant - Finistère,42326,observation-d9c29d48-3904-409d-b8f7-34511a628469-3,https://biolit.fr/observations/observation-d9c29d48-3904-409d-b8f7-34511a628469-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110315.JPG,,FALSE, +N1,59480,sortie-d9521e16-0ebd-4c84-83f1-51cff717e40d,https://biolit.fr/sorties/sortie-d9521e16-0ebd-4c84-83f1-51cff717e40d/,Phil,,10/26/2018 0:00,11.0000000,11.0:35,47.797971000000,-4.179474000000,,Loctudy - Finistère,42328,observation-d9521e16-0ebd-4c84-83f1-51cff717e40d,https://biolit.fr/observations/observation-d9521e16-0ebd-4c84-83f1-51cff717e40d/,Chondrus crispus,Goémon frisé,,https://biolit.fr/wp-content/uploads/2023/07/20181026_112256.jpg,,TRUE, +N1,59480,sortie-d9521e16-0ebd-4c84-83f1-51cff717e40d,https://biolit.fr/sorties/sortie-d9521e16-0ebd-4c84-83f1-51cff717e40d/,Phil,,10/26/2018 0:00,11.0000000,11.0:35,47.797971000000,-4.179474000000,,Loctudy - Finistère,42330,observation-d9521e16-0ebd-4c84-83f1-51cff717e40d-2,https://biolit.fr/observations/observation-d9521e16-0ebd-4c84-83f1-51cff717e40d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181026_113323.jpg,,FALSE, +N1,59480,sortie-d9521e16-0ebd-4c84-83f1-51cff717e40d,https://biolit.fr/sorties/sortie-d9521e16-0ebd-4c84-83f1-51cff717e40d/,Phil,,10/26/2018 0:00,11.0000000,11.0:35,47.797971000000,-4.179474000000,,Loctudy - Finistère,42332,observation-d9521e16-0ebd-4c84-83f1-51cff717e40d-3,https://biolit.fr/observations/observation-d9521e16-0ebd-4c84-83f1-51cff717e40d-3/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20181026_113333.jpg,,TRUE, +N1,59480,sortie-d9521e16-0ebd-4c84-83f1-51cff717e40d,https://biolit.fr/sorties/sortie-d9521e16-0ebd-4c84-83f1-51cff717e40d/,Phil,,10/26/2018 0:00,11.0000000,11.0:35,47.797971000000,-4.179474000000,,Loctudy - Finistère,42334,observation-d9521e16-0ebd-4c84-83f1-51cff717e40d-4,https://biolit.fr/observations/observation-d9521e16-0ebd-4c84-83f1-51cff717e40d-4/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/20181026_113704.jpg,,TRUE, +N1,59481,sortie-b049e48a-4983-4c0d-9411-b9cfe8e6d98f,https://biolit.fr/sorties/sortie-b049e48a-4983-4c0d-9411-b9cfe8e6d98f/,Phil,,7/22/2018 0:00,11.0000000,11.0:25,47.70837200000,-3.992182000000,,Fouesnant - Finistère,42336,observation-b049e48a-4983-4c0d-9411-b9cfe8e6d98f,https://biolit.fr/observations/observation-b049e48a-4983-4c0d-9411-b9cfe8e6d98f/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110925.JPG,,TRUE, +N1,59481,sortie-b049e48a-4983-4c0d-9411-b9cfe8e6d98f,https://biolit.fr/sorties/sortie-b049e48a-4983-4c0d-9411-b9cfe8e6d98f/,Phil,,7/22/2018 0:00,11.0000000,11.0:25,47.70837200000,-3.992182000000,,Fouesnant - Finistère,42338,observation-b049e48a-4983-4c0d-9411-b9cfe8e6d98f-2,https://biolit.fr/observations/observation-b049e48a-4983-4c0d-9411-b9cfe8e6d98f-2/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110926.JPG,,TRUE, +N1,59481,sortie-b049e48a-4983-4c0d-9411-b9cfe8e6d98f,https://biolit.fr/sorties/sortie-b049e48a-4983-4c0d-9411-b9cfe8e6d98f/,Phil,,7/22/2018 0:00,11.0000000,11.0:25,47.70837200000,-3.992182000000,,Fouesnant - Finistère,42340,observation-b049e48a-4983-4c0d-9411-b9cfe8e6d98f-3,https://biolit.fr/observations/observation-b049e48a-4983-4c0d-9411-b9cfe8e6d98f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110927_0.JPG,,FALSE, +N1,59481,sortie-b049e48a-4983-4c0d-9411-b9cfe8e6d98f,https://biolit.fr/sorties/sortie-b049e48a-4983-4c0d-9411-b9cfe8e6d98f/,Phil,,7/22/2018 0:00,11.0000000,11.0:25,47.70837200000,-3.992182000000,,Fouesnant - Finistère,42342,observation-b049e48a-4983-4c0d-9411-b9cfe8e6d98f-4,https://biolit.fr/observations/observation-b049e48a-4983-4c0d-9411-b9cfe8e6d98f-4/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1110928.JPG,,TRUE, +N1,59481,sortie-b049e48a-4983-4c0d-9411-b9cfe8e6d98f,https://biolit.fr/sorties/sortie-b049e48a-4983-4c0d-9411-b9cfe8e6d98f/,Phil,,7/22/2018 0:00,11.0000000,11.0:25,47.70837200000,-3.992182000000,,Fouesnant - Finistère,42344,observation-b049e48a-4983-4c0d-9411-b9cfe8e6d98f-5,https://biolit.fr/observations/observation-b049e48a-4983-4c0d-9411-b9cfe8e6d98f-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110929.JPG,,FALSE, +N1,59481,sortie-b049e48a-4983-4c0d-9411-b9cfe8e6d98f,https://biolit.fr/sorties/sortie-b049e48a-4983-4c0d-9411-b9cfe8e6d98f/,Phil,,7/22/2018 0:00,11.0000000,11.0:25,47.70837200000,-3.992182000000,,Fouesnant - Finistère,42346,observation-b049e48a-4983-4c0d-9411-b9cfe8e6d98f-6,https://biolit.fr/observations/observation-b049e48a-4983-4c0d-9411-b9cfe8e6d98f-6/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/P1110931.JPG,,TRUE, +N1,59482,sortie-c6303bfd-3875-473f-81d4-4bb8da9a3f67,https://biolit.fr/sorties/sortie-c6303bfd-3875-473f-81d4-4bb8da9a3f67/,Phil,,10/26/2018 0:00,10.0:45,10.0:55,47.800565000000,-4.179954000000,,Loctudy - Finistère,42348,observation-c6303bfd-3875-473f-81d4-4bb8da9a3f67,https://biolit.fr/observations/observation-c6303bfd-3875-473f-81d4-4bb8da9a3f67/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181026_104337.jpg,,FALSE, +N1,59482,sortie-c6303bfd-3875-473f-81d4-4bb8da9a3f67,https://biolit.fr/sorties/sortie-c6303bfd-3875-473f-81d4-4bb8da9a3f67/,Phil,,10/26/2018 0:00,10.0:45,10.0:55,47.800565000000,-4.179954000000,,Loctudy - Finistère,42350,observation-c6303bfd-3875-473f-81d4-4bb8da9a3f67-2,https://biolit.fr/observations/observation-c6303bfd-3875-473f-81d4-4bb8da9a3f67-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181026_104406.jpg,,FALSE, +N1,59482,sortie-c6303bfd-3875-473f-81d4-4bb8da9a3f67,https://biolit.fr/sorties/sortie-c6303bfd-3875-473f-81d4-4bb8da9a3f67/,Phil,,10/26/2018 0:00,10.0:45,10.0:55,47.800565000000,-4.179954000000,,Loctudy - Finistère,42352,observation-c6303bfd-3875-473f-81d4-4bb8da9a3f67-3,https://biolit.fr/observations/observation-c6303bfd-3875-473f-81d4-4bb8da9a3f67-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20181026_104951.jpg,,TRUE, +N1,59482,sortie-c6303bfd-3875-473f-81d4-4bb8da9a3f67,https://biolit.fr/sorties/sortie-c6303bfd-3875-473f-81d4-4bb8da9a3f67/,Phil,,10/26/2018 0:00,10.0:45,10.0:55,47.800565000000,-4.179954000000,,Loctudy - Finistère,42354,observation-c6303bfd-3875-473f-81d4-4bb8da9a3f67-4,https://biolit.fr/observations/observation-c6303bfd-3875-473f-81d4-4bb8da9a3f67-4/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181026_104958.jpg,,TRUE, +N1,59482,sortie-c6303bfd-3875-473f-81d4-4bb8da9a3f67,https://biolit.fr/sorties/sortie-c6303bfd-3875-473f-81d4-4bb8da9a3f67/,Phil,,10/26/2018 0:00,10.0:45,10.0:55,47.800565000000,-4.179954000000,,Loctudy - Finistère,42356,observation-c6303bfd-3875-473f-81d4-4bb8da9a3f67-5,https://biolit.fr/observations/observation-c6303bfd-3875-473f-81d4-4bb8da9a3f67-5/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20181026_105206.jpg,,TRUE, +N1,59483,sortie-acdd3023-9b0c-4ba4-91cc-102cfd72aae8,https://biolit.fr/sorties/sortie-acdd3023-9b0c-4ba4-91cc-102cfd72aae8/,Phil,,7/16/2018 0:00,13.0000000,13.0000000,47.808705000000,-3.712281000000,,Moëlan-sur-Mer - Finistère,42358,observation-acdd3023-9b0c-4ba4-91cc-102cfd72aae8,https://biolit.fr/observations/observation-acdd3023-9b0c-4ba4-91cc-102cfd72aae8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110757.JPG,,FALSE, +N1,59483,sortie-acdd3023-9b0c-4ba4-91cc-102cfd72aae8,https://biolit.fr/sorties/sortie-acdd3023-9b0c-4ba4-91cc-102cfd72aae8/,Phil,,7/16/2018 0:00,13.0000000,13.0000000,47.808705000000,-3.712281000000,,Moëlan-sur-Mer - Finistère,42360,observation-acdd3023-9b0c-4ba4-91cc-102cfd72aae8-2,https://biolit.fr/observations/observation-acdd3023-9b0c-4ba4-91cc-102cfd72aae8-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110751.JPG,,TRUE, +N1,59483,sortie-acdd3023-9b0c-4ba4-91cc-102cfd72aae8,https://biolit.fr/sorties/sortie-acdd3023-9b0c-4ba4-91cc-102cfd72aae8/,Phil,,7/16/2018 0:00,13.0000000,13.0000000,47.808705000000,-3.712281000000,,Moëlan-sur-Mer - Finistère,42362,observation-acdd3023-9b0c-4ba4-91cc-102cfd72aae8-3,https://biolit.fr/observations/observation-acdd3023-9b0c-4ba4-91cc-102cfd72aae8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110752.JPG,,FALSE, +N1,59483,sortie-acdd3023-9b0c-4ba4-91cc-102cfd72aae8,https://biolit.fr/sorties/sortie-acdd3023-9b0c-4ba4-91cc-102cfd72aae8/,Phil,,7/16/2018 0:00,13.0000000,13.0000000,47.808705000000,-3.712281000000,,Moëlan-sur-Mer - Finistère,42364,observation-acdd3023-9b0c-4ba4-91cc-102cfd72aae8-4,https://biolit.fr/observations/observation-acdd3023-9b0c-4ba4-91cc-102cfd72aae8-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110755.JPG,,FALSE, +N1,59483,sortie-acdd3023-9b0c-4ba4-91cc-102cfd72aae8,https://biolit.fr/sorties/sortie-acdd3023-9b0c-4ba4-91cc-102cfd72aae8/,Phil,,7/16/2018 0:00,13.0000000,13.0000000,47.808705000000,-3.712281000000,,Moëlan-sur-Mer - Finistère,42366,observation-acdd3023-9b0c-4ba4-91cc-102cfd72aae8-5,https://biolit.fr/observations/observation-acdd3023-9b0c-4ba4-91cc-102cfd72aae8-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110756.JPG,,FALSE, +N1,59484,sortie-79a829a2-899b-4710-9fb7-51bc808a9f85,https://biolit.fr/sorties/sortie-79a829a2-899b-4710-9fb7-51bc808a9f85/,Phil,,06/02/2018,12.0000000,12.0000000,48.168117000000,-4.294433000000,,Plomodiern - Finistère,42368,observation-79a829a2-899b-4710-9fb7-51bc808a9f85,https://biolit.fr/observations/observation-79a829a2-899b-4710-9fb7-51bc808a9f85/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110676.JPG,,FALSE, +N1,59484,sortie-79a829a2-899b-4710-9fb7-51bc808a9f85,https://biolit.fr/sorties/sortie-79a829a2-899b-4710-9fb7-51bc808a9f85/,Phil,,06/02/2018,12.0000000,12.0000000,48.168117000000,-4.294433000000,,Plomodiern - Finistère,42370,observation-79a829a2-899b-4710-9fb7-51bc808a9f85-2,https://biolit.fr/observations/observation-79a829a2-899b-4710-9fb7-51bc808a9f85-2/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1110678.JPG,,TRUE, +N1,59484,sortie-79a829a2-899b-4710-9fb7-51bc808a9f85,https://biolit.fr/sorties/sortie-79a829a2-899b-4710-9fb7-51bc808a9f85/,Phil,,06/02/2018,12.0000000,12.0000000,48.168117000000,-4.294433000000,,Plomodiern - Finistère,42372,observation-79a829a2-899b-4710-9fb7-51bc808a9f85-3,https://biolit.fr/observations/observation-79a829a2-899b-4710-9fb7-51bc808a9f85-3/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1110674.JPG,,TRUE, +N1,59484,sortie-79a829a2-899b-4710-9fb7-51bc808a9f85,https://biolit.fr/sorties/sortie-79a829a2-899b-4710-9fb7-51bc808a9f85/,Phil,,06/02/2018,12.0000000,12.0000000,48.168117000000,-4.294433000000,,Plomodiern - Finistère,42374,observation-79a829a2-899b-4710-9fb7-51bc808a9f85-4,https://biolit.fr/observations/observation-79a829a2-899b-4710-9fb7-51bc808a9f85-4/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/2023/07/P1110672.JPG,,TRUE, +N1,59484,sortie-79a829a2-899b-4710-9fb7-51bc808a9f85,https://biolit.fr/sorties/sortie-79a829a2-899b-4710-9fb7-51bc808a9f85/,Phil,,06/02/2018,12.0000000,12.0000000,48.168117000000,-4.294433000000,,Plomodiern - Finistère,42376,observation-79a829a2-899b-4710-9fb7-51bc808a9f85-5,https://biolit.fr/observations/observation-79a829a2-899b-4710-9fb7-51bc808a9f85-5/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1110670.JPG,,TRUE, +N1,59485,sortie-cf63159f-4e7c-4f72-a817-abe42e54b059,https://biolit.fr/sorties/sortie-cf63159f-4e7c-4f72-a817-abe42e54b059/,naisf,,10/24/2018 0:00,10.0000000,12.0000000,46.139469000000,-1.173333000000,,"Plage des Minimes, La Rochelle",42378,observation-cf63159f-4e7c-4f72-a817-abe42e54b059,https://biolit.fr/observations/observation-cf63159f-4e7c-4f72-a817-abe42e54b059/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181024_103611_HDR-ConvertImage-scaled.jpg,,FALSE, +N1,59485,sortie-cf63159f-4e7c-4f72-a817-abe42e54b059,https://biolit.fr/sorties/sortie-cf63159f-4e7c-4f72-a817-abe42e54b059/,naisf,,10/24/2018 0:00,10.0000000,12.0000000,46.139469000000,-1.173333000000,,"Plage des Minimes, La Rochelle",42380,observation-cf63159f-4e7c-4f72-a817-abe42e54b059-2,https://biolit.fr/observations/observation-cf63159f-4e7c-4f72-a817-abe42e54b059-2/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181024_103600-ConvertImage-scaled.jpg,,TRUE, +N1,59485,sortie-cf63159f-4e7c-4f72-a817-abe42e54b059,https://biolit.fr/sorties/sortie-cf63159f-4e7c-4f72-a817-abe42e54b059/,naisf,,10/24/2018 0:00,10.0000000,12.0000000,46.139469000000,-1.173333000000,,"Plage des Minimes, La Rochelle",42382,observation-cf63159f-4e7c-4f72-a817-abe42e54b059-3,https://biolit.fr/observations/observation-cf63159f-4e7c-4f72-a817-abe42e54b059-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181024_103300_HDR-ConvertImage-scaled.jpg,,FALSE, +N1,59485,sortie-cf63159f-4e7c-4f72-a817-abe42e54b059,https://biolit.fr/sorties/sortie-cf63159f-4e7c-4f72-a817-abe42e54b059/,naisf,,10/24/2018 0:00,10.0000000,12.0000000,46.139469000000,-1.173333000000,,"Plage des Minimes, La Rochelle",42384,observation-cf63159f-4e7c-4f72-a817-abe42e54b059-4,https://biolit.fr/observations/observation-cf63159f-4e7c-4f72-a817-abe42e54b059-4/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/20181024_102449-ConvertImage-scaled.jpg,,TRUE, +N1,59485,sortie-cf63159f-4e7c-4f72-a817-abe42e54b059,https://biolit.fr/sorties/sortie-cf63159f-4e7c-4f72-a817-abe42e54b059/,naisf,,10/24/2018 0:00,10.0000000,12.0000000,46.139469000000,-1.173333000000,,"Plage des Minimes, La Rochelle",42386,observation-cf63159f-4e7c-4f72-a817-abe42e54b059-5,https://biolit.fr/observations/observation-cf63159f-4e7c-4f72-a817-abe42e54b059-5/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181024_104844-scaled.jpg,,TRUE, +N1,59485,sortie-cf63159f-4e7c-4f72-a817-abe42e54b059,https://biolit.fr/sorties/sortie-cf63159f-4e7c-4f72-a817-abe42e54b059/,naisf,,10/24/2018 0:00,10.0000000,12.0000000,46.139469000000,-1.173333000000,,"Plage des Minimes, La Rochelle",42388,observation-cf63159f-4e7c-4f72-a817-abe42e54b059-6,https://biolit.fr/observations/observation-cf63159f-4e7c-4f72-a817-abe42e54b059-6/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181024_105244-scaled.jpg,,TRUE, +N1,59485,sortie-cf63159f-4e7c-4f72-a817-abe42e54b059,https://biolit.fr/sorties/sortie-cf63159f-4e7c-4f72-a817-abe42e54b059/,naisf,,10/24/2018 0:00,10.0000000,12.0000000,46.139469000000,-1.173333000000,,"Plage des Minimes, La Rochelle",42390,observation-cf63159f-4e7c-4f72-a817-abe42e54b059-7,https://biolit.fr/observations/observation-cf63159f-4e7c-4f72-a817-abe42e54b059-7/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181024_105803-scaled.jpg,,TRUE, +N1,59485,sortie-cf63159f-4e7c-4f72-a817-abe42e54b059,https://biolit.fr/sorties/sortie-cf63159f-4e7c-4f72-a817-abe42e54b059/,naisf,,10/24/2018 0:00,10.0000000,12.0000000,46.139469000000,-1.173333000000,,"Plage des Minimes, La Rochelle",42392,observation-cf63159f-4e7c-4f72-a817-abe42e54b059-8,https://biolit.fr/observations/observation-cf63159f-4e7c-4f72-a817-abe42e54b059-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181024_112309-scaled.jpg,,FALSE, +N1,59485,sortie-cf63159f-4e7c-4f72-a817-abe42e54b059,https://biolit.fr/sorties/sortie-cf63159f-4e7c-4f72-a817-abe42e54b059/,naisf,,10/24/2018 0:00,10.0000000,12.0000000,46.139469000000,-1.173333000000,,"Plage des Minimes, La Rochelle",42394,observation-cf63159f-4e7c-4f72-a817-abe42e54b059-9,https://biolit.fr/observations/observation-cf63159f-4e7c-4f72-a817-abe42e54b059-9/,Phymatolithon lenormandii,Algue encroûtante rouge de Lenormand,,https://biolit.fr/wp-content/uploads/2023/07/20181024_112855-scaled.jpg,,TRUE, +N1,59485,sortie-cf63159f-4e7c-4f72-a817-abe42e54b059,https://biolit.fr/sorties/sortie-cf63159f-4e7c-4f72-a817-abe42e54b059/,naisf,,10/24/2018 0:00,10.0000000,12.0000000,46.139469000000,-1.173333000000,,"Plage des Minimes, La Rochelle",42396,observation-cf63159f-4e7c-4f72-a817-abe42e54b059-10,https://biolit.fr/observations/observation-cf63159f-4e7c-4f72-a817-abe42e54b059-10/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181024_111347_HDR-scaled.jpg,,TRUE, +N1,59485,sortie-cf63159f-4e7c-4f72-a817-abe42e54b059,https://biolit.fr/sorties/sortie-cf63159f-4e7c-4f72-a817-abe42e54b059/,naisf,,10/24/2018 0:00,10.0000000,12.0000000,46.139469000000,-1.173333000000,,"Plage des Minimes, La Rochelle",42398,observation-cf63159f-4e7c-4f72-a817-abe42e54b059-11,https://biolit.fr/observations/observation-cf63159f-4e7c-4f72-a817-abe42e54b059-11/,Lanice conchilega,Lanice,,https://biolit.fr/wp-content/uploads/2023/07/20181024_110619-scaled.jpg,,TRUE, +N1,59486,sortie-4a8f8e08-32db-4c90-b326-aedf285c1f0c,https://biolit.fr/sorties/sortie-4a8f8e08-32db-4c90-b326-aedf285c1f0c/,Phil,,9/28/2018 0:00,14.0:45,14.0000000,48.03880300000,-4.8478110000,,Île de Sein - Finistère,42400,observation-4a8f8e08-32db-4c90-b326-aedf285c1f0c,https://biolit.fr/observations/observation-4a8f8e08-32db-4c90-b326-aedf285c1f0c/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/P1120252.JPG,,TRUE, +N1,59486,sortie-4a8f8e08-32db-4c90-b326-aedf285c1f0c,https://biolit.fr/sorties/sortie-4a8f8e08-32db-4c90-b326-aedf285c1f0c/,Phil,,9/28/2018 0:00,14.0:45,14.0000000,48.03880300000,-4.8478110000,,Île de Sein - Finistère,42402,observation-4a8f8e08-32db-4c90-b326-aedf285c1f0c-2,https://biolit.fr/observations/observation-4a8f8e08-32db-4c90-b326-aedf285c1f0c-2/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/P1120277.JPG,,TRUE, +N1,59486,sortie-4a8f8e08-32db-4c90-b326-aedf285c1f0c,https://biolit.fr/sorties/sortie-4a8f8e08-32db-4c90-b326-aedf285c1f0c/,Phil,,9/28/2018 0:00,14.0:45,14.0000000,48.03880300000,-4.8478110000,,Île de Sein - Finistère,42404,observation-4a8f8e08-32db-4c90-b326-aedf285c1f0c-3,https://biolit.fr/observations/observation-4a8f8e08-32db-4c90-b326-aedf285c1f0c-3/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/P1120265.JPG,,TRUE, +N1,59487,sortie-295438be-8065-4acd-905b-d6dc8878ec78,https://biolit.fr/sorties/sortie-295438be-8065-4acd-905b-d6dc8878ec78/,Phil,,7/22/2018 0:00,11.0000000,11.0:25,47.709018000000,-3.992423000000,,Fouesnant - Finistère,42406,observation-295438be-8065-4acd-905b-d6dc8878ec78,https://biolit.fr/observations/observation-295438be-8065-4acd-905b-d6dc8878ec78/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110911.JPG,,FALSE, +N1,59487,sortie-295438be-8065-4acd-905b-d6dc8878ec78,https://biolit.fr/sorties/sortie-295438be-8065-4acd-905b-d6dc8878ec78/,Phil,,7/22/2018 0:00,11.0000000,11.0:25,47.709018000000,-3.992423000000,,Fouesnant - Finistère,42408,observation-295438be-8065-4acd-905b-d6dc8878ec78-2,https://biolit.fr/observations/observation-295438be-8065-4acd-905b-d6dc8878ec78-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110912_0.JPG,,FALSE, +N1,59487,sortie-295438be-8065-4acd-905b-d6dc8878ec78,https://biolit.fr/sorties/sortie-295438be-8065-4acd-905b-d6dc8878ec78/,Phil,,7/22/2018 0:00,11.0000000,11.0:25,47.709018000000,-3.992423000000,,Fouesnant - Finistère,42410,observation-295438be-8065-4acd-905b-d6dc8878ec78-3,https://biolit.fr/observations/observation-295438be-8065-4acd-905b-d6dc8878ec78-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110910.JPG,,FALSE, +N1,59487,sortie-295438be-8065-4acd-905b-d6dc8878ec78,https://biolit.fr/sorties/sortie-295438be-8065-4acd-905b-d6dc8878ec78/,Phil,,7/22/2018 0:00,11.0000000,11.0:25,47.709018000000,-3.992423000000,,Fouesnant - Finistère,42412,observation-295438be-8065-4acd-905b-d6dc8878ec78-4,https://biolit.fr/observations/observation-295438be-8065-4acd-905b-d6dc8878ec78-4/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/P1110916.JPG,,TRUE, +N1,59487,sortie-295438be-8065-4acd-905b-d6dc8878ec78,https://biolit.fr/sorties/sortie-295438be-8065-4acd-905b-d6dc8878ec78/,Phil,,7/22/2018 0:00,11.0000000,11.0:25,47.709018000000,-3.992423000000,,Fouesnant - Finistère,42414,observation-295438be-8065-4acd-905b-d6dc8878ec78-5,https://biolit.fr/observations/observation-295438be-8065-4acd-905b-d6dc8878ec78-5/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/P1110920_0.JPG,,TRUE, +N1,59487,sortie-295438be-8065-4acd-905b-d6dc8878ec78,https://biolit.fr/sorties/sortie-295438be-8065-4acd-905b-d6dc8878ec78/,Phil,,7/22/2018 0:00,11.0000000,11.0:25,47.709018000000,-3.992423000000,,Fouesnant - Finistère,42416,observation-295438be-8065-4acd-905b-d6dc8878ec78-6,https://biolit.fr/observations/observation-295438be-8065-4acd-905b-d6dc8878ec78-6/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/P1110923.JPG,,TRUE, +N1,59488,sortie-ff20b61d-f696-49fc-94dd-3fb32db0096d,https://biolit.fr/sorties/sortie-ff20b61d-f696-49fc-94dd-3fb32db0096d/,Nina Colin,,10/11/2018,15.0000000,17.0000000,48.874262000000,-1.841943000000,,Grande île Chausey,42418,observation-ff20b61d-f696-49fc-94dd-3fb32db0096d,https://biolit.fr/observations/observation-ff20b61d-f696-49fc-94dd-3fb32db0096d/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20181010_151421-scaled.jpg,,TRUE, +N1,59488,sortie-ff20b61d-f696-49fc-94dd-3fb32db0096d,https://biolit.fr/sorties/sortie-ff20b61d-f696-49fc-94dd-3fb32db0096d/,Nina Colin,,10/11/2018,15.0000000,17.0000000,48.874262000000,-1.841943000000,,Grande île Chausey,42420,observation-ff20b61d-f696-49fc-94dd-3fb32db0096d-2,https://biolit.fr/observations/observation-ff20b61d-f696-49fc-94dd-3fb32db0096d-2/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181010_154644-scaled.jpg,,TRUE, +N1,59488,sortie-ff20b61d-f696-49fc-94dd-3fb32db0096d,https://biolit.fr/sorties/sortie-ff20b61d-f696-49fc-94dd-3fb32db0096d/,Nina Colin,,10/11/2018,15.0000000,17.0000000,48.874262000000,-1.841943000000,,Grande île Chausey,42422,observation-ff20b61d-f696-49fc-94dd-3fb32db0096d-3,https://biolit.fr/observations/observation-ff20b61d-f696-49fc-94dd-3fb32db0096d-3/,Patella pellucida,Helcion,,https://biolit.fr/wp-content/uploads/2023/07/20181010_154931.jpg,,TRUE, +N1,59489,sortie-5e7c3992-c4cd-4843-a143-26ff31f1e603,https://biolit.fr/sorties/sortie-5e7c3992-c4cd-4843-a143-26ff31f1e603/,Nina Colin,,10/08/2018,12.0000000,13.0000000,48.846787000000,-1.914513000000,,Large de Chausey,42424,observation-5e7c3992-c4cd-4843-a143-26ff31f1e603,https://biolit.fr/observations/observation-5e7c3992-c4cd-4843-a143-26ff31f1e603/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/20181008_121642-scaled.jpg,,TRUE, +N1,59490,sortie-6a0c642a-4784-4fbd-b918-b4a2219150ae,https://biolit.fr/sorties/sortie-6a0c642a-4784-4fbd-b918-b4a2219150ae/,Phil,,7/16/2018 0:00,12.0:55,13.000005,47.810014000000,-3.711954000000,,Moëlan-sur-Mer - Finistère,42426,observation-6a0c642a-4784-4fbd-b918-b4a2219150ae,https://biolit.fr/observations/observation-6a0c642a-4784-4fbd-b918-b4a2219150ae/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1110739.JPG,,TRUE, +N1,59490,sortie-6a0c642a-4784-4fbd-b918-b4a2219150ae,https://biolit.fr/sorties/sortie-6a0c642a-4784-4fbd-b918-b4a2219150ae/,Phil,,7/16/2018 0:00,12.0:55,13.000005,47.810014000000,-3.711954000000,,Moëlan-sur-Mer - Finistère,42428,observation-6a0c642a-4784-4fbd-b918-b4a2219150ae-2,https://biolit.fr/observations/observation-6a0c642a-4784-4fbd-b918-b4a2219150ae-2/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1110731_0.JPG,,TRUE, +N1,59490,sortie-6a0c642a-4784-4fbd-b918-b4a2219150ae,https://biolit.fr/sorties/sortie-6a0c642a-4784-4fbd-b918-b4a2219150ae/,Phil,,7/16/2018 0:00,12.0:55,13.000005,47.810014000000,-3.711954000000,,Moëlan-sur-Mer - Finistère,42430,observation-6a0c642a-4784-4fbd-b918-b4a2219150ae-3,https://biolit.fr/observations/observation-6a0c642a-4784-4fbd-b918-b4a2219150ae-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110741.JPG,,FALSE, +N1,59490,sortie-6a0c642a-4784-4fbd-b918-b4a2219150ae,https://biolit.fr/sorties/sortie-6a0c642a-4784-4fbd-b918-b4a2219150ae/,Phil,,7/16/2018 0:00,12.0:55,13.000005,47.810014000000,-3.711954000000,,Moëlan-sur-Mer - Finistère,42432,observation-6a0c642a-4784-4fbd-b918-b4a2219150ae-4,https://biolit.fr/observations/observation-6a0c642a-4784-4fbd-b918-b4a2219150ae-4/,Balanus crenatus,Balane crénelée,,https://biolit.fr/wp-content/uploads/2023/07/P1110744.JPG,,TRUE, +N1,59490,sortie-6a0c642a-4784-4fbd-b918-b4a2219150ae,https://biolit.fr/sorties/sortie-6a0c642a-4784-4fbd-b918-b4a2219150ae/,Phil,,7/16/2018 0:00,12.0:55,13.000005,47.810014000000,-3.711954000000,,Moëlan-sur-Mer - Finistère,42434,observation-6a0c642a-4784-4fbd-b918-b4a2219150ae-5,https://biolit.fr/observations/observation-6a0c642a-4784-4fbd-b918-b4a2219150ae-5/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1110745.JPG,,TRUE, +N1,59490,sortie-6a0c642a-4784-4fbd-b918-b4a2219150ae,https://biolit.fr/sorties/sortie-6a0c642a-4784-4fbd-b918-b4a2219150ae/,Phil,,7/16/2018 0:00,12.0:55,13.000005,47.810014000000,-3.711954000000,,Moëlan-sur-Mer - Finistère,42436,observation-6a0c642a-4784-4fbd-b918-b4a2219150ae-6,https://biolit.fr/observations/observation-6a0c642a-4784-4fbd-b918-b4a2219150ae-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110746.JPG,,FALSE, +N1,59490,sortie-6a0c642a-4784-4fbd-b918-b4a2219150ae,https://biolit.fr/sorties/sortie-6a0c642a-4784-4fbd-b918-b4a2219150ae/,Phil,,7/16/2018 0:00,12.0:55,13.000005,47.810014000000,-3.711954000000,,Moëlan-sur-Mer - Finistère,42438,observation-6a0c642a-4784-4fbd-b918-b4a2219150ae-7,https://biolit.fr/observations/observation-6a0c642a-4784-4fbd-b918-b4a2219150ae-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110748.JPG,,FALSE, +N1,59491,sortie-1935d840-b3b0-4809-8eaa-235cd248516b,https://biolit.fr/sorties/sortie-1935d840-b3b0-4809-8eaa-235cd248516b/,Phil,,9/16/2018 0:00,16.0000000,16.0000000,47.873339000000,-3.932287000000,,Concarneau - Finistère,42440,observation-1935d840-b3b0-4809-8eaa-235cd248516b,https://biolit.fr/observations/observation-1935d840-b3b0-4809-8eaa-235cd248516b/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20180916_164714_0.jpg,,TRUE, +N1,59491,sortie-1935d840-b3b0-4809-8eaa-235cd248516b,https://biolit.fr/sorties/sortie-1935d840-b3b0-4809-8eaa-235cd248516b/,Phil,,9/16/2018 0:00,16.0000000,16.0000000,47.873339000000,-3.932287000000,,Concarneau - Finistère,42442,observation-1935d840-b3b0-4809-8eaa-235cd248516b-2,https://biolit.fr/observations/observation-1935d840-b3b0-4809-8eaa-235cd248516b-2/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20180916_164743.jpg,,TRUE, +N1,59491,sortie-1935d840-b3b0-4809-8eaa-235cd248516b,https://biolit.fr/sorties/sortie-1935d840-b3b0-4809-8eaa-235cd248516b/,Phil,,9/16/2018 0:00,16.0000000,16.0000000,47.873339000000,-3.932287000000,,Concarneau - Finistère,42444,observation-1935d840-b3b0-4809-8eaa-235cd248516b-3,https://biolit.fr/observations/observation-1935d840-b3b0-4809-8eaa-235cd248516b-3/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20180916_164819.jpg,,TRUE, +N1,59491,sortie-1935d840-b3b0-4809-8eaa-235cd248516b,https://biolit.fr/sorties/sortie-1935d840-b3b0-4809-8eaa-235cd248516b/,Phil,,9/16/2018 0:00,16.0000000,16.0000000,47.873339000000,-3.932287000000,,Concarneau - Finistère,42446,observation-1935d840-b3b0-4809-8eaa-235cd248516b-4,https://biolit.fr/observations/observation-1935d840-b3b0-4809-8eaa-235cd248516b-4/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20180916_164826.jpg,,TRUE, +N1,59491,sortie-1935d840-b3b0-4809-8eaa-235cd248516b,https://biolit.fr/sorties/sortie-1935d840-b3b0-4809-8eaa-235cd248516b/,Phil,,9/16/2018 0:00,16.0000000,16.0000000,47.873339000000,-3.932287000000,,Concarneau - Finistère,42448,observation-1935d840-b3b0-4809-8eaa-235cd248516b-5,https://biolit.fr/observations/observation-1935d840-b3b0-4809-8eaa-235cd248516b-5/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20180916_164844.jpg,,TRUE, +N1,59492,sortie-acc7debe-2cef-4da4-8776-3ce0d228515b,https://biolit.fr/sorties/sortie-acc7debe-2cef-4da4-8776-3ce0d228515b/,Guillaume D,,10/09/2018,10.0000000,12.0000000,46.13954700000,-1.173687000000,,"La Rochelle, Plage des Minimes",42450,observation-acc7debe-2cef-4da4-8776-3ce0d228515b,https://biolit.fr/observations/observation-acc7debe-2cef-4da4-8776-3ce0d228515b/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/20181009_102337-scaled.jpg,,TRUE, +N1,59492,sortie-acc7debe-2cef-4da4-8776-3ce0d228515b,https://biolit.fr/sorties/sortie-acc7debe-2cef-4da4-8776-3ce0d228515b/,Guillaume D,,10/09/2018,10.0000000,12.0000000,46.13954700000,-1.173687000000,,"La Rochelle, Plage des Minimes",42452,observation-acc7debe-2cef-4da4-8776-3ce0d228515b-2,https://biolit.fr/observations/observation-acc7debe-2cef-4da4-8776-3ce0d228515b-2/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/20181009_102450_5mo.jpg,,TRUE, +N1,59492,sortie-acc7debe-2cef-4da4-8776-3ce0d228515b,https://biolit.fr/sorties/sortie-acc7debe-2cef-4da4-8776-3ce0d228515b/,Guillaume D,,10/09/2018,10.0000000,12.0000000,46.13954700000,-1.173687000000,,"La Rochelle, Plage des Minimes",42454,observation-acc7debe-2cef-4da4-8776-3ce0d228515b-3,https://biolit.fr/observations/observation-acc7debe-2cef-4da4-8776-3ce0d228515b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181009_102454-scaled.jpg,,FALSE, +N1,59492,sortie-acc7debe-2cef-4da4-8776-3ce0d228515b,https://biolit.fr/sorties/sortie-acc7debe-2cef-4da4-8776-3ce0d228515b/,Guillaume D,,10/09/2018,10.0000000,12.0000000,46.13954700000,-1.173687000000,,"La Rochelle, Plage des Minimes",42456,observation-acc7debe-2cef-4da4-8776-3ce0d228515b-4,https://biolit.fr/observations/observation-acc7debe-2cef-4da4-8776-3ce0d228515b-4/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20181009_104256-scaled.jpg,,TRUE, +N1,59492,sortie-acc7debe-2cef-4da4-8776-3ce0d228515b,https://biolit.fr/sorties/sortie-acc7debe-2cef-4da4-8776-3ce0d228515b/,Guillaume D,,10/09/2018,10.0000000,12.0000000,46.13954700000,-1.173687000000,,"La Rochelle, Plage des Minimes",42458,observation-acc7debe-2cef-4da4-8776-3ce0d228515b-5,https://biolit.fr/observations/observation-acc7debe-2cef-4da4-8776-3ce0d228515b-5/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20181009_104244-scaled.jpg,,TRUE, +N1,59492,sortie-acc7debe-2cef-4da4-8776-3ce0d228515b,https://biolit.fr/sorties/sortie-acc7debe-2cef-4da4-8776-3ce0d228515b/,Guillaume D,,10/09/2018,10.0000000,12.0000000,46.13954700000,-1.173687000000,,"La Rochelle, Plage des Minimes",42460,observation-acc7debe-2cef-4da4-8776-3ce0d228515b-6,https://biolit.fr/observations/observation-acc7debe-2cef-4da4-8776-3ce0d228515b-6/,Gaidropsarus mediterraneus,Motelle à trois barbillons,,https://biolit.fr/wp-content/uploads/2023/07/20181009_112711-scaled.jpg,,TRUE, +N1,59492,sortie-acc7debe-2cef-4da4-8776-3ce0d228515b,https://biolit.fr/sorties/sortie-acc7debe-2cef-4da4-8776-3ce0d228515b/,Guillaume D,,10/09/2018,10.0000000,12.0000000,46.13954700000,-1.173687000000,,"La Rochelle, Plage des Minimes",42462,observation-acc7debe-2cef-4da4-8776-3ce0d228515b-7,https://biolit.fr/observations/observation-acc7debe-2cef-4da4-8776-3ce0d228515b-7/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/20181009_112803-scaled.jpg,,TRUE, +N1,59493,sortie-7fe74170-7ea5-4087-83db-427b588cdd82,https://biolit.fr/sorties/sortie-7fe74170-7ea5-4087-83db-427b588cdd82/,Phil,,9/28/2018 0:00,11.0000000,11.0000000,48.038775000000,-4.855156000000,,Île de Sein - Finistère,42464,observation-7fe74170-7ea5-4087-83db-427b588cdd82,https://biolit.fr/observations/observation-7fe74170-7ea5-4087-83db-427b588cdd82/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1120235.JPG,,TRUE, +N1,59493,sortie-7fe74170-7ea5-4087-83db-427b588cdd82,https://biolit.fr/sorties/sortie-7fe74170-7ea5-4087-83db-427b588cdd82/,Phil,,9/28/2018 0:00,11.0000000,11.0000000,48.038775000000,-4.855156000000,,Île de Sein - Finistère,42466,observation-7fe74170-7ea5-4087-83db-427b588cdd82-2,https://biolit.fr/observations/observation-7fe74170-7ea5-4087-83db-427b588cdd82-2/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1120226.JPG,,TRUE, +N1,59493,sortie-7fe74170-7ea5-4087-83db-427b588cdd82,https://biolit.fr/sorties/sortie-7fe74170-7ea5-4087-83db-427b588cdd82/,Phil,,9/28/2018 0:00,11.0000000,11.0000000,48.038775000000,-4.855156000000,,Île de Sein - Finistère,42468,observation-7fe74170-7ea5-4087-83db-427b588cdd82-3,https://biolit.fr/observations/observation-7fe74170-7ea5-4087-83db-427b588cdd82-3/,Bifurcaria bifurcata,Bifurcaire,,https://biolit.fr/wp-content/uploads/2023/07/P1120234.JPG,,TRUE, +N1,59493,sortie-7fe74170-7ea5-4087-83db-427b588cdd82,https://biolit.fr/sorties/sortie-7fe74170-7ea5-4087-83db-427b588cdd82/,Phil,,9/28/2018 0:00,11.0000000,11.0000000,48.038775000000,-4.855156000000,,Île de Sein - Finistère,42470,observation-7fe74170-7ea5-4087-83db-427b588cdd82-4,https://biolit.fr/observations/observation-7fe74170-7ea5-4087-83db-427b588cdd82-4/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1120227.JPG,,TRUE, +N1,59494,sortie-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0,https://biolit.fr/sorties/sortie-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0/,Phil,,06/02/2018,12.0:25,12.0000000,48.168876000000,-4.297276000000,,Plomodiern - Finistère,42472,observation-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0,https://biolit.fr/observations/observation-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1110661.JPG,,TRUE, +N1,59494,sortie-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0,https://biolit.fr/sorties/sortie-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0/,Phil,,06/02/2018,12.0:25,12.0000000,48.168876000000,-4.297276000000,,Plomodiern - Finistère,42474,observation-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0-2,https://biolit.fr/observations/observation-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110663.JPG,,TRUE, +N1,59494,sortie-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0,https://biolit.fr/sorties/sortie-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0/,Phil,,06/02/2018,12.0:25,12.0000000,48.168876000000,-4.297276000000,,Plomodiern - Finistère,42476,observation-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0-3,https://biolit.fr/observations/observation-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110664.JPG,,TRUE, +N1,59494,sortie-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0,https://biolit.fr/sorties/sortie-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0/,Phil,,06/02/2018,12.0:25,12.0000000,48.168876000000,-4.297276000000,,Plomodiern - Finistère,42478,observation-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0-4,https://biolit.fr/observations/observation-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0-4/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110666.JPG,,TRUE, +N1,59494,sortie-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0,https://biolit.fr/sorties/sortie-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0/,Phil,,06/02/2018,12.0:25,12.0000000,48.168876000000,-4.297276000000,,Plomodiern - Finistère,42480,observation-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0-5,https://biolit.fr/observations/observation-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0-5/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/P1110665.JPG,,TRUE, +N1,59494,sortie-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0,https://biolit.fr/sorties/sortie-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0/,Phil,,06/02/2018,12.0:25,12.0000000,48.168876000000,-4.297276000000,,Plomodiern - Finistère,42482,observation-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0-6,https://biolit.fr/observations/observation-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0-6/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P1110668.JPG,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42484,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/Aigrette garzette.JPG,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42486,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-2,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-2/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/cancer pagurus.PNG,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42487,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-3,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus aenas-scaled.jpg,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42489,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-4,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-4/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/Ceramium et Fucus serratus.JPG,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42491,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-5,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-5/,Chondrus crispus,Goémon frisé,,https://biolit.fr/wp-content/uploads/2023/07/Chondrus crispus.JPG,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42493,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-6,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-6/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crepidula fornicata.PNG,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42494,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-7,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cyanea indet.JPG,,FALSE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42496,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-8,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-8/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/Fucus serratus-scaled.jpg,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42497,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-9,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-9/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/Goeland argente.JPG,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42499,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-10,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-10/,Homarus gammarus,Homard européen,,https://biolit.fr/wp-content/uploads/2023/07/Homarus gammarus.JPG,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42501,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-11,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-11/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina sp.PNG,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42502,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-12,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mouette rieuse.PNG,,FALSE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42503,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-13,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/mytilus edulis-scaled.jpg,,FALSE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42504,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-14,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-14/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber-scaled.jpg,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42505,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-15,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-15/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/Ostrea edulis.PNG,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42506,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-16,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-16/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/07/Patella vulgaris.JPG,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42508,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-17,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-17/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/pecten maximus.PNG,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42509,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-18,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/Raja undulata.JPG,,FALSE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42511,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-19,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes decussata.JPG,,FALSE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42513,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-20,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-20/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Sepia officinalis.PNG,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42514,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-21,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-21/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/2023/07/solen marginatus.PNG,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42515,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-22,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-22/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/Ulva lactuca.JPG,,TRUE, +N1,59496,sortie-d76aec0d-af91-4927-8894-34c76f68e581,https://biolit.fr/sorties/sortie-d76aec0d-af91-4927-8894-34c76f68e581/,Phil,,9/21/2018 0:00,11.0000000,11.0000000,47.79195300000,-4.286580000000,,Guilvinec - Finistère,42517,observation-d76aec0d-af91-4927-8894-34c76f68e581,https://biolit.fr/observations/observation-d76aec0d-af91-4927-8894-34c76f68e581/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180921_113733.jpg,,TRUE, +N1,59496,sortie-d76aec0d-af91-4927-8894-34c76f68e581,https://biolit.fr/sorties/sortie-d76aec0d-af91-4927-8894-34c76f68e581/,Phil,,9/21/2018 0:00,11.0000000,11.0000000,47.79195300000,-4.286580000000,,Guilvinec - Finistère,42519,observation-d76aec0d-af91-4927-8894-34c76f68e581-2,https://biolit.fr/observations/observation-d76aec0d-af91-4927-8894-34c76f68e581-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180921_113741.jpg,,TRUE, +N1,59496,sortie-d76aec0d-af91-4927-8894-34c76f68e581,https://biolit.fr/sorties/sortie-d76aec0d-af91-4927-8894-34c76f68e581/,Phil,,9/21/2018 0:00,11.0000000,11.0000000,47.79195300000,-4.286580000000,,Guilvinec - Finistère,42521,observation-d76aec0d-af91-4927-8894-34c76f68e581-3,https://biolit.fr/observations/observation-d76aec0d-af91-4927-8894-34c76f68e581-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180921_113946.jpg,,FALSE, +N1,59496,sortie-d76aec0d-af91-4927-8894-34c76f68e581,https://biolit.fr/sorties/sortie-d76aec0d-af91-4927-8894-34c76f68e581/,Phil,,9/21/2018 0:00,11.0000000,11.0000000,47.79195300000,-4.286580000000,,Guilvinec - Finistère,42523,observation-d76aec0d-af91-4927-8894-34c76f68e581-4,https://biolit.fr/observations/observation-d76aec0d-af91-4927-8894-34c76f68e581-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180921_114039.jpg,,FALSE, +N1,59497,sortie-09683541-750a-424e-a3cc-3063cb1710e6,https://biolit.fr/sorties/sortie-09683541-750a-424e-a3cc-3063cb1710e6/,Phil,,5/20/2018 0:00,16.0000000,16.0:15,47.800706000000,-4.180950000000,,Loctudy - Finistère,42525,observation-09683541-750a-424e-a3cc-3063cb1710e6,https://biolit.fr/observations/observation-09683541-750a-424e-a3cc-3063cb1710e6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110567.JPG,,FALSE, +N1,59497,sortie-09683541-750a-424e-a3cc-3063cb1710e6,https://biolit.fr/sorties/sortie-09683541-750a-424e-a3cc-3063cb1710e6/,Phil,,5/20/2018 0:00,16.0000000,16.0:15,47.800706000000,-4.180950000000,,Loctudy - Finistère,42527,observation-09683541-750a-424e-a3cc-3063cb1710e6-2,https://biolit.fr/observations/observation-09683541-750a-424e-a3cc-3063cb1710e6-2/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1110568.JPG,,TRUE, +N1,59497,sortie-09683541-750a-424e-a3cc-3063cb1710e6,https://biolit.fr/sorties/sortie-09683541-750a-424e-a3cc-3063cb1710e6/,Phil,,5/20/2018 0:00,16.0000000,16.0:15,47.800706000000,-4.180950000000,,Loctudy - Finistère,42529,observation-09683541-750a-424e-a3cc-3063cb1710e6-3,https://biolit.fr/observations/observation-09683541-750a-424e-a3cc-3063cb1710e6-3/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110570.JPG,,TRUE, +N1,59497,sortie-09683541-750a-424e-a3cc-3063cb1710e6,https://biolit.fr/sorties/sortie-09683541-750a-424e-a3cc-3063cb1710e6/,Phil,,5/20/2018 0:00,16.0000000,16.0:15,47.800706000000,-4.180950000000,,Loctudy - Finistère,42531,observation-09683541-750a-424e-a3cc-3063cb1710e6-4,https://biolit.fr/observations/observation-09683541-750a-424e-a3cc-3063cb1710e6-4/,Janua heterostropha,Spirorbe de Pagenstecher,,https://biolit.fr/wp-content/uploads/2023/07/P1110571.JPG,,TRUE, +N1,59498,sortie-ad8292c3-9abf-4db4-82b1-b27c6adabb7f,https://biolit.fr/sorties/sortie-ad8292c3-9abf-4db4-82b1-b27c6adabb7f/,Classes 6A 6B 6C,,10/01/2018,11.0:25,12.0:15,48.315646000000,-4.322459000000,,"Logonna Daoulas, MOULIN MER",42533,observation-ad8292c3-9abf-4db4-82b1-b27c6adabb7f,https://biolit.fr/observations/observation-ad8292c3-9abf-4db4-82b1-b27c6adabb7f/,Onchidella celtica,Limace celtique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0064_0-scaled.jpg,,TRUE, +N1,59498,sortie-ad8292c3-9abf-4db4-82b1-b27c6adabb7f,https://biolit.fr/sorties/sortie-ad8292c3-9abf-4db4-82b1-b27c6adabb7f/,Classes 6A 6B 6C,,10/01/2018,11.0:25,12.0:15,48.315646000000,-4.322459000000,,"Logonna Daoulas, MOULIN MER",42535,observation-ad8292c3-9abf-4db4-82b1-b27c6adabb7f-2,https://biolit.fr/observations/observation-ad8292c3-9abf-4db4-82b1-b27c6adabb7f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0037.jpg,,FALSE, +N1,59498,sortie-ad8292c3-9abf-4db4-82b1-b27c6adabb7f,https://biolit.fr/sorties/sortie-ad8292c3-9abf-4db4-82b1-b27c6adabb7f/,Classes 6A 6B 6C,,10/01/2018,11.0:25,12.0:15,48.315646000000,-4.322459000000,,"Logonna Daoulas, MOULIN MER",42537,observation-ad8292c3-9abf-4db4-82b1-b27c6adabb7f-3,https://biolit.fr/observations/observation-ad8292c3-9abf-4db4-82b1-b27c6adabb7f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0049 2.jpg,,FALSE, +N1,59498,sortie-ad8292c3-9abf-4db4-82b1-b27c6adabb7f,https://biolit.fr/sorties/sortie-ad8292c3-9abf-4db4-82b1-b27c6adabb7f/,Classes 6A 6B 6C,,10/01/2018,11.0:25,12.0:15,48.315646000000,-4.322459000000,,"Logonna Daoulas, MOULIN MER",42539,observation-ad8292c3-9abf-4db4-82b1-b27c6adabb7f-4,https://biolit.fr/observations/observation-ad8292c3-9abf-4db4-82b1-b27c6adabb7f-4/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0055_0.jpg,,TRUE, +N1,59498,sortie-ad8292c3-9abf-4db4-82b1-b27c6adabb7f,https://biolit.fr/sorties/sortie-ad8292c3-9abf-4db4-82b1-b27c6adabb7f/,Classes 6A 6B 6C,,10/01/2018,11.0:25,12.0:15,48.315646000000,-4.322459000000,,"Logonna Daoulas, MOULIN MER",42541,observation-ad8292c3-9abf-4db4-82b1-b27c6adabb7f-5,https://biolit.fr/observations/observation-ad8292c3-9abf-4db4-82b1-b27c6adabb7f-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0052 2-scaled.jpg,,FALSE, +N1,59498,sortie-ad8292c3-9abf-4db4-82b1-b27c6adabb7f,https://biolit.fr/sorties/sortie-ad8292c3-9abf-4db4-82b1-b27c6adabb7f/,Classes 6A 6B 6C,,10/01/2018,11.0:25,12.0:15,48.315646000000,-4.322459000000,,"Logonna Daoulas, MOULIN MER",42543,observation-ad8292c3-9abf-4db4-82b1-b27c6adabb7f-6,https://biolit.fr/observations/observation-ad8292c3-9abf-4db4-82b1-b27c6adabb7f-6/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0065.jpg,,TRUE, +N1,59499,sortie-73d50e1f-6e94-41c1-b67b-c0cf96d83a9e,https://biolit.fr/sorties/sortie-73d50e1f-6e94-41c1-b67b-c0cf96d83a9e/,Classes 6A 6B 6C,,10/01/2018,10.0:15,11.0000000,48.318265000000,-4.282722000000,,"Logonna Daoulas, MOULIN MER",42545,observation-73d50e1f-6e94-41c1-b67b-c0cf96d83a9e,https://biolit.fr/observations/observation-73d50e1f-6e94-41c1-b67b-c0cf96d83a9e/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0033.jpg,,TRUE, +N1,59499,sortie-73d50e1f-6e94-41c1-b67b-c0cf96d83a9e,https://biolit.fr/sorties/sortie-73d50e1f-6e94-41c1-b67b-c0cf96d83a9e/,Classes 6A 6B 6C,,10/01/2018,10.0:15,11.0000000,48.318265000000,-4.282722000000,,"Logonna Daoulas, MOULIN MER",42547,observation-73d50e1f-6e94-41c1-b67b-c0cf96d83a9e-2,https://biolit.fr/observations/observation-73d50e1f-6e94-41c1-b67b-c0cf96d83a9e-2/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0055.jpg,,TRUE, +N1,59499,sortie-73d50e1f-6e94-41c1-b67b-c0cf96d83a9e,https://biolit.fr/sorties/sortie-73d50e1f-6e94-41c1-b67b-c0cf96d83a9e/,Classes 6A 6B 6C,,10/01/2018,10.0:15,11.0000000,48.318265000000,-4.282722000000,,"Logonna Daoulas, MOULIN MER",42549,observation-73d50e1f-6e94-41c1-b67b-c0cf96d83a9e-3,https://biolit.fr/observations/observation-73d50e1f-6e94-41c1-b67b-c0cf96d83a9e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0075-scaled.jpg,,FALSE, +N1,59500,sortie-8143be75-13de-46fa-aaa0-248f30d1125a,https://biolit.fr/sorties/sortie-8143be75-13de-46fa-aaa0-248f30d1125a/,Classes 6A 6B 6C,,10/01/2018,11.0:25,12.0:15,48.317836000000,-4.282968000000,,moulin mer,42551,observation-8143be75-13de-46fa-aaa0-248f30d1125a,https://biolit.fr/observations/observation-8143be75-13de-46fa-aaa0-248f30d1125a/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0022-scaled.jpg,,TRUE, +N1,59500,sortie-8143be75-13de-46fa-aaa0-248f30d1125a,https://biolit.fr/sorties/sortie-8143be75-13de-46fa-aaa0-248f30d1125a/,Classes 6A 6B 6C,,10/01/2018,11.0:25,12.0:15,48.317836000000,-4.282968000000,,moulin mer,42553,observation-8143be75-13de-46fa-aaa0-248f30d1125a-2,https://biolit.fr/observations/observation-8143be75-13de-46fa-aaa0-248f30d1125a-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0032-scaled.jpg,,TRUE, +N1,59500,sortie-8143be75-13de-46fa-aaa0-248f30d1125a,https://biolit.fr/sorties/sortie-8143be75-13de-46fa-aaa0-248f30d1125a/,Classes 6A 6B 6C,,10/01/2018,11.0:25,12.0:15,48.317836000000,-4.282968000000,,moulin mer,42555,observation-8143be75-13de-46fa-aaa0-248f30d1125a-3,https://biolit.fr/observations/observation-8143be75-13de-46fa-aaa0-248f30d1125a-3/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0070.jpg,,TRUE, +N1,59500,sortie-8143be75-13de-46fa-aaa0-248f30d1125a,https://biolit.fr/sorties/sortie-8143be75-13de-46fa-aaa0-248f30d1125a/,Classes 6A 6B 6C,,10/01/2018,11.0:25,12.0:15,48.317836000000,-4.282968000000,,moulin mer,42557,observation-8143be75-13de-46fa-aaa0-248f30d1125a-4,https://biolit.fr/observations/observation-8143be75-13de-46fa-aaa0-248f30d1125a-4/,Zoarces viviparus,Blennie vivipare,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0076 2-scaled.jpg,,TRUE, +N1,59500,sortie-8143be75-13de-46fa-aaa0-248f30d1125a,https://biolit.fr/sorties/sortie-8143be75-13de-46fa-aaa0-248f30d1125a/,Classes 6A 6B 6C,,10/01/2018,11.0:25,12.0:15,48.317836000000,-4.282968000000,,moulin mer,42559,observation-8143be75-13de-46fa-aaa0-248f30d1125a-5,https://biolit.fr/observations/observation-8143be75-13de-46fa-aaa0-248f30d1125a-5/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0071.jpg,,TRUE, +N1,59501,sortie-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48,https://biolit.fr/sorties/sortie-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48/,Phil,,7/16/2018 0:00,12.0:55,13.0000000,47.810369000000,-3.7120850000,,Moëlan-sur-Mer - Finistère,42561,observation-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48,https://biolit.fr/observations/observation-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110736.JPG,,FALSE, +N1,59501,sortie-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48,https://biolit.fr/sorties/sortie-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48/,Phil,,7/16/2018 0:00,12.0:55,13.0000000,47.810369000000,-3.7120850000,,Moëlan-sur-Mer - Finistère,42563,observation-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48-2,https://biolit.fr/observations/observation-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110733_0.JPG,,FALSE, +N1,59501,sortie-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48,https://biolit.fr/sorties/sortie-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48/,Phil,,7/16/2018 0:00,12.0:55,13.0000000,47.810369000000,-3.7120850000,,Moëlan-sur-Mer - Finistère,42565,observation-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48-3,https://biolit.fr/observations/observation-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48-3/,Clavelina lepadiformis,Grande claveline,,https://biolit.fr/wp-content/uploads/2023/07/P1110725_0.JPG,,TRUE, +N1,59501,sortie-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48,https://biolit.fr/sorties/sortie-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48/,Phil,,7/16/2018 0:00,12.0:55,13.0000000,47.810369000000,-3.7120850000,,Moëlan-sur-Mer - Finistère,42567,observation-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48-4,https://biolit.fr/observations/observation-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48-4/,Clavelina lepadiformis,Grande claveline,,https://biolit.fr/wp-content/uploads/2023/07/P1110724.JPG,,TRUE, +N1,59501,sortie-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48,https://biolit.fr/sorties/sortie-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48/,Phil,,7/16/2018 0:00,12.0:55,13.0000000,47.810369000000,-3.7120850000,,Moëlan-sur-Mer - Finistère,42569,observation-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48-5,https://biolit.fr/observations/observation-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48-5/,Clavelina lepadiformis,Grande claveline,,https://biolit.fr/wp-content/uploads/2023/07/P1110722.JPG,,TRUE, +N1,59502,sortie-8d7dfb00-9107-4bf2-94cb-9a41424d6248,https://biolit.fr/sorties/sortie-8d7dfb00-9107-4bf2-94cb-9a41424d6248/,Phil,,9/16/2018 0:00,16.0:35,16.0:45,47.873787000000,-3.930088000000,,Concarneau - Finistère,42571,observation-8d7dfb00-9107-4bf2-94cb-9a41424d6248,https://biolit.fr/observations/observation-8d7dfb00-9107-4bf2-94cb-9a41424d6248/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180916_164127.jpg,,FALSE, +N1,59502,sortie-8d7dfb00-9107-4bf2-94cb-9a41424d6248,https://biolit.fr/sorties/sortie-8d7dfb00-9107-4bf2-94cb-9a41424d6248/,Phil,,9/16/2018 0:00,16.0:35,16.0:45,47.873787000000,-3.930088000000,,Concarneau - Finistère,42573,observation-8d7dfb00-9107-4bf2-94cb-9a41424d6248-2,https://biolit.fr/observations/observation-8d7dfb00-9107-4bf2-94cb-9a41424d6248-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180916_164059.jpg,,FALSE, +N1,59502,sortie-8d7dfb00-9107-4bf2-94cb-9a41424d6248,https://biolit.fr/sorties/sortie-8d7dfb00-9107-4bf2-94cb-9a41424d6248/,Phil,,9/16/2018 0:00,16.0:35,16.0:45,47.873787000000,-3.930088000000,,Concarneau - Finistère,42575,observation-8d7dfb00-9107-4bf2-94cb-9a41424d6248-3,https://biolit.fr/observations/observation-8d7dfb00-9107-4bf2-94cb-9a41424d6248-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180916_164020.jpg,,TRUE, +N1,59502,sortie-8d7dfb00-9107-4bf2-94cb-9a41424d6248,https://biolit.fr/sorties/sortie-8d7dfb00-9107-4bf2-94cb-9a41424d6248/,Phil,,9/16/2018 0:00,16.0:35,16.0:45,47.873787000000,-3.930088000000,,Concarneau - Finistère,42577,observation-8d7dfb00-9107-4bf2-94cb-9a41424d6248-4,https://biolit.fr/observations/observation-8d7dfb00-9107-4bf2-94cb-9a41424d6248-4/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20180916_164152.jpg,,TRUE, +N1,59502,sortie-8d7dfb00-9107-4bf2-94cb-9a41424d6248,https://biolit.fr/sorties/sortie-8d7dfb00-9107-4bf2-94cb-9a41424d6248/,Phil,,9/16/2018 0:00,16.0:35,16.0:45,47.873787000000,-3.930088000000,,Concarneau - Finistère,42579,observation-8d7dfb00-9107-4bf2-94cb-9a41424d6248-5,https://biolit.fr/observations/observation-8d7dfb00-9107-4bf2-94cb-9a41424d6248-5/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20180916_164613.jpg,,TRUE, +N1,59503,sortie-c27db5e2-e130-4d26-877e-8ec6ea181a3a,https://biolit.fr/sorties/sortie-c27db5e2-e130-4d26-877e-8ec6ea181a3a/,Environat,,9/26/2018 0:00,10.0000000,12.0000000,45.630225000000,-1.064602000000,,saint sordelin,42581,observation-c27db5e2-e130-4d26-877e-8ec6ea181a3a,https://biolit.fr/observations/observation-c27db5e2-e130-4d26-877e-8ec6ea181a3a/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSCN0083bd.JPG,,TRUE, +N1,59503,sortie-c27db5e2-e130-4d26-877e-8ec6ea181a3a,https://biolit.fr/sorties/sortie-c27db5e2-e130-4d26-877e-8ec6ea181a3a/,Environat,,9/26/2018 0:00,10.0000000,12.0000000,45.630225000000,-1.064602000000,,saint sordelin,42583,observation-c27db5e2-e130-4d26-877e-8ec6ea181a3a-2,https://biolit.fr/observations/observation-c27db5e2-e130-4d26-877e-8ec6ea181a3a-2/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0084bd.JPG,,TRUE, +N1,59503,sortie-c27db5e2-e130-4d26-877e-8ec6ea181a3a,https://biolit.fr/sorties/sortie-c27db5e2-e130-4d26-877e-8ec6ea181a3a/,Environat,,9/26/2018 0:00,10.0000000,12.0000000,45.630225000000,-1.064602000000,,saint sordelin,42585,observation-c27db5e2-e130-4d26-877e-8ec6ea181a3a-3,https://biolit.fr/observations/observation-c27db5e2-e130-4d26-877e-8ec6ea181a3a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0082bd.JPG,,FALSE, +N1,59503,sortie-c27db5e2-e130-4d26-877e-8ec6ea181a3a,https://biolit.fr/sorties/sortie-c27db5e2-e130-4d26-877e-8ec6ea181a3a/,Environat,,9/26/2018 0:00,10.0000000,12.0000000,45.630225000000,-1.064602000000,,saint sordelin,42587,observation-c27db5e2-e130-4d26-877e-8ec6ea181a3a-4,https://biolit.fr/observations/observation-c27db5e2-e130-4d26-877e-8ec6ea181a3a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0098bd-scaled.jpg,,FALSE, +N1,59504,sortie-c47a144d-970b-4cef-a605-ebc860d33021,https://biolit.fr/sorties/sortie-c47a144d-970b-4cef-a605-ebc860d33021/,Phil,,9/21/2018 0:00,11.0:25,11.0000000,47.791966000000,-4.286850000000,,Guilvinec - Finistère,42589,observation-c47a144d-970b-4cef-a605-ebc860d33021,https://biolit.fr/observations/observation-c47a144d-970b-4cef-a605-ebc860d33021/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20180921_113027.jpg,,TRUE, +N1,59504,sortie-c47a144d-970b-4cef-a605-ebc860d33021,https://biolit.fr/sorties/sortie-c47a144d-970b-4cef-a605-ebc860d33021/,Phil,,9/21/2018 0:00,11.0:25,11.0000000,47.791966000000,-4.286850000000,,Guilvinec - Finistère,42591,observation-c47a144d-970b-4cef-a605-ebc860d33021-2,https://biolit.fr/observations/observation-c47a144d-970b-4cef-a605-ebc860d33021-2/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20180921_113143.jpg,,TRUE, +N1,59505,sortie-236cada1-aa6a-453e-94cf-94da72df0abd,https://biolit.fr/sorties/sortie-236cada1-aa6a-453e-94cf-94da72df0abd/,Phil,,06/02/2018,12.0000000,12.0:15,48.168828000000,-4.296577000000,,Plomodiern - Finistère,42593,observation-236cada1-aa6a-453e-94cf-94da72df0abd,https://biolit.fr/observations/observation-236cada1-aa6a-453e-94cf-94da72df0abd/,Hymeniacidon perlevis,Eponge-miette de pain,,https://biolit.fr/wp-content/uploads/2023/07/P1110646.JPG,,TRUE, +N1,59505,sortie-236cada1-aa6a-453e-94cf-94da72df0abd,https://biolit.fr/sorties/sortie-236cada1-aa6a-453e-94cf-94da72df0abd/,Phil,,06/02/2018,12.0000000,12.0:15,48.168828000000,-4.296577000000,,Plomodiern - Finistère,42595,observation-236cada1-aa6a-453e-94cf-94da72df0abd-2,https://biolit.fr/observations/observation-236cada1-aa6a-453e-94cf-94da72df0abd-2/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/P1110650.JPG,,TRUE, +N1,59505,sortie-236cada1-aa6a-453e-94cf-94da72df0abd,https://biolit.fr/sorties/sortie-236cada1-aa6a-453e-94cf-94da72df0abd/,Phil,,06/02/2018,12.0000000,12.0:15,48.168828000000,-4.296577000000,,Plomodiern - Finistère,42599,observation-236cada1-aa6a-453e-94cf-94da72df0abd-4,https://biolit.fr/observations/observation-236cada1-aa6a-453e-94cf-94da72df0abd-4/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/P1110657.JPG,,TRUE, +N1,59506,sortie-d887bb7d-8e0e-42c6-a811-a9b9e8fd4576,https://biolit.fr/sorties/sortie-d887bb7d-8e0e-42c6-a811-a9b9e8fd4576/,Marine,,9/27/2018 0:00,15.0000000,16.0000000,43.093093000000,6.024504000000,,Plage de la garonne,42601,observation-d887bb7d-8e0e-42c6-a811-a9b9e8fd4576,https://biolit.fr/observations/observation-d887bb7d-8e0e-42c6-a811-a9b9e8fd4576/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/EED52646-C29B-4500-9C9F-53C8DB7FAF84-scaled.jpeg,,TRUE, +N1,59507,sortie-55b77f4f-7179-42e1-9621-06f7518802bd,https://biolit.fr/sorties/sortie-55b77f4f-7179-42e1-9621-06f7518802bd/,Phil,,7/22/2018 0:00,11.0:15,11.0000000,47.708795000000,-3.991921000000,,Fouesnant - Finistère,42603,observation-55b77f4f-7179-42e1-9621-06f7518802bd,https://biolit.fr/observations/observation-55b77f4f-7179-42e1-9621-06f7518802bd/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110905.JPG,,FALSE, +N1,59507,sortie-55b77f4f-7179-42e1-9621-06f7518802bd,https://biolit.fr/sorties/sortie-55b77f4f-7179-42e1-9621-06f7518802bd/,Phil,,7/22/2018 0:00,11.0:15,11.0000000,47.708795000000,-3.991921000000,,Fouesnant - Finistère,42605,observation-55b77f4f-7179-42e1-9621-06f7518802bd-2,https://biolit.fr/observations/observation-55b77f4f-7179-42e1-9621-06f7518802bd-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110903.JPG,,FALSE, +N1,59507,sortie-55b77f4f-7179-42e1-9621-06f7518802bd,https://biolit.fr/sorties/sortie-55b77f4f-7179-42e1-9621-06f7518802bd/,Phil,,7/22/2018 0:00,11.0:15,11.0000000,47.708795000000,-3.991921000000,,Fouesnant - Finistère,42607,observation-55b77f4f-7179-42e1-9621-06f7518802bd-3,https://biolit.fr/observations/observation-55b77f4f-7179-42e1-9621-06f7518802bd-3/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1110898.JPG,,TRUE, +N1,59507,sortie-55b77f4f-7179-42e1-9621-06f7518802bd,https://biolit.fr/sorties/sortie-55b77f4f-7179-42e1-9621-06f7518802bd/,Phil,,7/22/2018 0:00,11.0:15,11.0000000,47.708795000000,-3.991921000000,,Fouesnant - Finistère,42609,observation-55b77f4f-7179-42e1-9621-06f7518802bd-4,https://biolit.fr/observations/observation-55b77f4f-7179-42e1-9621-06f7518802bd-4/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1110900.JPG,,TRUE, +N1,59507,sortie-55b77f4f-7179-42e1-9621-06f7518802bd,https://biolit.fr/sorties/sortie-55b77f4f-7179-42e1-9621-06f7518802bd/,Phil,,7/22/2018 0:00,11.0:15,11.0000000,47.708795000000,-3.991921000000,,Fouesnant - Finistère,42611,observation-55b77f4f-7179-42e1-9621-06f7518802bd-5,https://biolit.fr/observations/observation-55b77f4f-7179-42e1-9621-06f7518802bd-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110904.JPG,,FALSE, +N1,59508,sortie-d437d589-c48b-46e4-a22e-5505f0e24734,https://biolit.fr/sorties/sortie-d437d589-c48b-46e4-a22e-5505f0e24734/,Phil,,7/16/2018 0:00,12.0000000,12.0:55,47.809671000000,-3.712271000000,,Moëlan-sur-Mer - Finistère,42613,observation-d437d589-c48b-46e4-a22e-5505f0e24734,https://biolit.fr/observations/observation-d437d589-c48b-46e4-a22e-5505f0e24734/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110716_0.JPG,,TRUE, +N1,59508,sortie-d437d589-c48b-46e4-a22e-5505f0e24734,https://biolit.fr/sorties/sortie-d437d589-c48b-46e4-a22e-5505f0e24734/,Phil,,7/16/2018 0:00,12.0000000,12.0:55,47.809671000000,-3.712271000000,,Moëlan-sur-Mer - Finistère,42615,observation-d437d589-c48b-46e4-a22e-5505f0e24734-2,https://biolit.fr/observations/observation-d437d589-c48b-46e4-a22e-5505f0e24734-2/,Pagurus bernhardus,Bernard-l'ermite commun,,https://biolit.fr/wp-content/uploads/2023/07/P1110717_0.JPG,,TRUE, +N1,59508,sortie-d437d589-c48b-46e4-a22e-5505f0e24734,https://biolit.fr/sorties/sortie-d437d589-c48b-46e4-a22e-5505f0e24734/,Phil,,7/16/2018 0:00,12.0000000,12.0:55,47.809671000000,-3.712271000000,,Moëlan-sur-Mer - Finistère,42617,observation-d437d589-c48b-46e4-a22e-5505f0e24734-3,https://biolit.fr/observations/observation-d437d589-c48b-46e4-a22e-5505f0e24734-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110718.JPG,,FALSE, +N1,59508,sortie-d437d589-c48b-46e4-a22e-5505f0e24734,https://biolit.fr/sorties/sortie-d437d589-c48b-46e4-a22e-5505f0e24734/,Phil,,7/16/2018 0:00,12.0000000,12.0:55,47.809671000000,-3.712271000000,,Moëlan-sur-Mer - Finistère,42619,observation-d437d589-c48b-46e4-a22e-5505f0e24734-4,https://biolit.fr/observations/observation-d437d589-c48b-46e4-a22e-5505f0e24734-4/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1110719_0.JPG,,TRUE, +N1,59508,sortie-d437d589-c48b-46e4-a22e-5505f0e24734,https://biolit.fr/sorties/sortie-d437d589-c48b-46e4-a22e-5505f0e24734/,Phil,,7/16/2018 0:00,12.0000000,12.0:55,47.809671000000,-3.712271000000,,Moëlan-sur-Mer - Finistère,42621,observation-d437d589-c48b-46e4-a22e-5505f0e24734-5,https://biolit.fr/observations/observation-d437d589-c48b-46e4-a22e-5505f0e24734-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110729.JPG,,FALSE, +N1,59508,sortie-d437d589-c48b-46e4-a22e-5505f0e24734,https://biolit.fr/sorties/sortie-d437d589-c48b-46e4-a22e-5505f0e24734/,Phil,,7/16/2018 0:00,12.0000000,12.0:55,47.809671000000,-3.712271000000,,Moëlan-sur-Mer - Finistère,42623,observation-d437d589-c48b-46e4-a22e-5505f0e24734-6,https://biolit.fr/observations/observation-d437d589-c48b-46e4-a22e-5505f0e24734-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110728_0.JPG,,FALSE, +N1,59509,sortie-f2ac3719-a625-49f3-a237-c3881327de11,https://biolit.fr/sorties/sortie-f2ac3719-a625-49f3-a237-c3881327de11/,Valentine W,,09/11/2018,8.0000000,11.0000000,50.717193000000,1.612441000000,,Boulogne-sur-Mer,42625,observation-f2ac3719-a625-49f3-a237-c3881327de11,https://biolit.fr/observations/observation-f2ac3719-a625-49f3-a237-c3881327de11/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/42447778_2484275341607249_7870940887507795968_n.jpg,,TRUE, +N1,59509,sortie-f2ac3719-a625-49f3-a237-c3881327de11,https://biolit.fr/sorties/sortie-f2ac3719-a625-49f3-a237-c3881327de11/,Valentine W,,09/11/2018,8.0000000,11.0000000,50.717193000000,1.612441000000,,Boulogne-sur-Mer,42627,observation-f2ac3719-a625-49f3-a237-c3881327de11-2,https://biolit.fr/observations/observation-f2ac3719-a625-49f3-a237-c3881327de11-2/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/42469893_250568928985984_783016660259831808_n.jpg,,TRUE, +N1,59509,sortie-f2ac3719-a625-49f3-a237-c3881327de11,https://biolit.fr/sorties/sortie-f2ac3719-a625-49f3-a237-c3881327de11/,Valentine W,,09/11/2018,8.0000000,11.0000000,50.717193000000,1.612441000000,,Boulogne-sur-Mer,42629,observation-f2ac3719-a625-49f3-a237-c3881327de11-3,https://biolit.fr/observations/observation-f2ac3719-a625-49f3-a237-c3881327de11-3/,Mya arenaria,Mye des sables,,https://biolit.fr/wp-content/uploads/2023/07/42478645_284783818794489_2501101692892741632_n.jpg,,TRUE, +N1,59509,sortie-f2ac3719-a625-49f3-a237-c3881327de11,https://biolit.fr/sorties/sortie-f2ac3719-a625-49f3-a237-c3881327de11/,Valentine W,,09/11/2018,8.0000000,11.0000000,50.717193000000,1.612441000000,,Boulogne-sur-Mer,42631,observation-f2ac3719-a625-49f3-a237-c3881327de11-4,https://biolit.fr/observations/observation-f2ac3719-a625-49f3-a237-c3881327de11-4/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/42498182_2742538999303887_6306831738106544128_n.jpg,,TRUE, +N1,59509,sortie-f2ac3719-a625-49f3-a237-c3881327de11,https://biolit.fr/sorties/sortie-f2ac3719-a625-49f3-a237-c3881327de11/,Valentine W,,09/11/2018,8.0000000,11.0000000,50.717193000000,1.612441000000,,Boulogne-sur-Mer,42633,observation-f2ac3719-a625-49f3-a237-c3881327de11-5,https://biolit.fr/observations/observation-f2ac3719-a625-49f3-a237-c3881327de11-5/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/42538750_440536283137130_3259386097511170048_n.jpg,,TRUE, +N1,59509,sortie-f2ac3719-a625-49f3-a237-c3881327de11,https://biolit.fr/sorties/sortie-f2ac3719-a625-49f3-a237-c3881327de11/,Valentine W,,09/11/2018,8.0000000,11.0000000,50.717193000000,1.612441000000,,Boulogne-sur-Mer,42635,observation-f2ac3719-a625-49f3-a237-c3881327de11-6,https://biolit.fr/observations/observation-f2ac3719-a625-49f3-a237-c3881327de11-6/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/42576566_298484197547910_216820789599535104_n.jpg,,TRUE, +N1,59509,sortie-f2ac3719-a625-49f3-a237-c3881327de11,https://biolit.fr/sorties/sortie-f2ac3719-a625-49f3-a237-c3881327de11/,Valentine W,,09/11/2018,8.0000000,11.0000000,50.717193000000,1.612441000000,,Boulogne-sur-Mer,42637,observation-f2ac3719-a625-49f3-a237-c3881327de11-7,https://biolit.fr/observations/observation-f2ac3719-a625-49f3-a237-c3881327de11-7/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/42653825_1486325184845024_2338399758965538816_n.jpg,,TRUE, +N1,59510,sortie-c21deb71-62bb-49b8-892e-684305447a5c,https://biolit.fr/sorties/sortie-c21deb71-62bb-49b8-892e-684305447a5c/,Phil,,8/24/2018 0:00,13.000005,13.0000000,48.031368000000,-4.844170000000,,Île de Sein - Finistère,42639,observation-c21deb71-62bb-49b8-892e-684305447a5c,https://biolit.fr/observations/observation-c21deb71-62bb-49b8-892e-684305447a5c/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120095.JPG,,FALSE, +N1,59510,sortie-c21deb71-62bb-49b8-892e-684305447a5c,https://biolit.fr/sorties/sortie-c21deb71-62bb-49b8-892e-684305447a5c/,Phil,,8/24/2018 0:00,13.000005,13.0000000,48.031368000000,-4.844170000000,,Île de Sein - Finistère,42641,observation-c21deb71-62bb-49b8-892e-684305447a5c-2,https://biolit.fr/observations/observation-c21deb71-62bb-49b8-892e-684305447a5c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120092_0.JPG,,FALSE, +N1,59510,sortie-c21deb71-62bb-49b8-892e-684305447a5c,https://biolit.fr/sorties/sortie-c21deb71-62bb-49b8-892e-684305447a5c/,Phil,,8/24/2018 0:00,13.000005,13.0000000,48.031368000000,-4.844170000000,,Île de Sein - Finistère,42643,observation-c21deb71-62bb-49b8-892e-684305447a5c-3,https://biolit.fr/observations/observation-c21deb71-62bb-49b8-892e-684305447a5c-3/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/P1120093.JPG,,TRUE, +N1,59510,sortie-c21deb71-62bb-49b8-892e-684305447a5c,https://biolit.fr/sorties/sortie-c21deb71-62bb-49b8-892e-684305447a5c/,Phil,,8/24/2018 0:00,13.000005,13.0000000,48.031368000000,-4.844170000000,,Île de Sein - Finistère,42645,observation-c21deb71-62bb-49b8-892e-684305447a5c-4,https://biolit.fr/observations/observation-c21deb71-62bb-49b8-892e-684305447a5c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120094.JPG,,FALSE, +N1,59510,sortie-c21deb71-62bb-49b8-892e-684305447a5c,https://biolit.fr/sorties/sortie-c21deb71-62bb-49b8-892e-684305447a5c/,Phil,,8/24/2018 0:00,13.000005,13.0000000,48.031368000000,-4.844170000000,,Île de Sein - Finistère,42647,observation-c21deb71-62bb-49b8-892e-684305447a5c-5,https://biolit.fr/observations/observation-c21deb71-62bb-49b8-892e-684305447a5c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120097.JPG,,FALSE, +N1,59510,sortie-c21deb71-62bb-49b8-892e-684305447a5c,https://biolit.fr/sorties/sortie-c21deb71-62bb-49b8-892e-684305447a5c/,Phil,,8/24/2018 0:00,13.000005,13.0000000,48.031368000000,-4.844170000000,,Île de Sein - Finistère,42649,observation-c21deb71-62bb-49b8-892e-684305447a5c-6,https://biolit.fr/observations/observation-c21deb71-62bb-49b8-892e-684305447a5c-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120101.JPG,,FALSE, +N1,59510,sortie-c21deb71-62bb-49b8-892e-684305447a5c,https://biolit.fr/sorties/sortie-c21deb71-62bb-49b8-892e-684305447a5c/,Phil,,8/24/2018 0:00,13.000005,13.0000000,48.031368000000,-4.844170000000,,Île de Sein - Finistère,42651,observation-c21deb71-62bb-49b8-892e-684305447a5c-7,https://biolit.fr/observations/observation-c21deb71-62bb-49b8-892e-684305447a5c-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120102.JPG,,FALSE, +N1,59510,sortie-c21deb71-62bb-49b8-892e-684305447a5c,https://biolit.fr/sorties/sortie-c21deb71-62bb-49b8-892e-684305447a5c/,Phil,,8/24/2018 0:00,13.000005,13.0000000,48.031368000000,-4.844170000000,,Île de Sein - Finistère,42653,observation-c21deb71-62bb-49b8-892e-684305447a5c-8,https://biolit.fr/observations/observation-c21deb71-62bb-49b8-892e-684305447a5c-8/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1120100.JPG,,TRUE, +N1,59511,sortie-e450e71b-eb65-49d1-8c12-c2b596b8b4a8,https://biolit.fr/sorties/sortie-e450e71b-eb65-49d1-8c12-c2b596b8b4a8/,Phil,,5/17/2018 0:00,12.0:25,12.0000000,47.894518000000,-3.964828000000,,La Forêt-Fouesnant - Finistère,42655,observation-e450e71b-eb65-49d1-8c12-c2b596b8b4a8,https://biolit.fr/observations/observation-e450e71b-eb65-49d1-8c12-c2b596b8b4a8/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1110357.JPG,,TRUE, +N1,59511,sortie-e450e71b-eb65-49d1-8c12-c2b596b8b4a8,https://biolit.fr/sorties/sortie-e450e71b-eb65-49d1-8c12-c2b596b8b4a8/,Phil,,5/17/2018 0:00,12.0:25,12.0000000,47.894518000000,-3.964828000000,,La Forêt-Fouesnant - Finistère,42657,observation-e450e71b-eb65-49d1-8c12-c2b596b8b4a8-2,https://biolit.fr/observations/observation-e450e71b-eb65-49d1-8c12-c2b596b8b4a8-2/,Mactra glauca,Mactre fauve,,https://biolit.fr/wp-content/uploads/2023/07/P1110356.JPG,,TRUE, +N1,59511,sortie-e450e71b-eb65-49d1-8c12-c2b596b8b4a8,https://biolit.fr/sorties/sortie-e450e71b-eb65-49d1-8c12-c2b596b8b4a8/,Phil,,5/17/2018 0:00,12.0:25,12.0000000,47.894518000000,-3.964828000000,,La Forêt-Fouesnant - Finistère,42659,observation-e450e71b-eb65-49d1-8c12-c2b596b8b4a8-3,https://biolit.fr/observations/observation-e450e71b-eb65-49d1-8c12-c2b596b8b4a8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110358.JPG,,FALSE, +N1,59511,sortie-e450e71b-eb65-49d1-8c12-c2b596b8b4a8,https://biolit.fr/sorties/sortie-e450e71b-eb65-49d1-8c12-c2b596b8b4a8/,Phil,,5/17/2018 0:00,12.0:25,12.0000000,47.894518000000,-3.964828000000,,La Forêt-Fouesnant - Finistère,42661,observation-e450e71b-eb65-49d1-8c12-c2b596b8b4a8-4,https://biolit.fr/observations/observation-e450e71b-eb65-49d1-8c12-c2b596b8b4a8-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110359.JPG,,FALSE, +N1,59512,sortie-ac14378a-87b6-45b0-a009-56f735b309ea,https://biolit.fr/sorties/sortie-ac14378a-87b6-45b0-a009-56f735b309ea/,Phil,,5/20/2018 0:00,15.0000000,16.0000000,47.798235000000,-4.177002000000,,Loctudy - Finistère,42663,observation-ac14378a-87b6-45b0-a009-56f735b309ea,https://biolit.fr/observations/observation-ac14378a-87b6-45b0-a009-56f735b309ea/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1110556.JPG,,TRUE, +N1,59512,sortie-ac14378a-87b6-45b0-a009-56f735b309ea,https://biolit.fr/sorties/sortie-ac14378a-87b6-45b0-a009-56f735b309ea/,Phil,,5/20/2018 0:00,15.0000000,16.0000000,47.798235000000,-4.177002000000,,Loctudy - Finistère,42665,observation-ac14378a-87b6-45b0-a009-56f735b309ea-2,https://biolit.fr/observations/observation-ac14378a-87b6-45b0-a009-56f735b309ea-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110557.JPG,,FALSE, +N1,59512,sortie-ac14378a-87b6-45b0-a009-56f735b309ea,https://biolit.fr/sorties/sortie-ac14378a-87b6-45b0-a009-56f735b309ea/,Phil,,5/20/2018 0:00,15.0000000,16.0000000,47.798235000000,-4.177002000000,,Loctudy - Finistère,42667,observation-ac14378a-87b6-45b0-a009-56f735b309ea-3,https://biolit.fr/observations/observation-ac14378a-87b6-45b0-a009-56f735b309ea-3/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1110558.JPG,,TRUE, +N1,59512,sortie-ac14378a-87b6-45b0-a009-56f735b309ea,https://biolit.fr/sorties/sortie-ac14378a-87b6-45b0-a009-56f735b309ea/,Phil,,5/20/2018 0:00,15.0000000,16.0000000,47.798235000000,-4.177002000000,,Loctudy - Finistère,42669,observation-ac14378a-87b6-45b0-a009-56f735b309ea-4,https://biolit.fr/observations/observation-ac14378a-87b6-45b0-a009-56f735b309ea-4/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/P1110555.JPG,,TRUE, +N1,59512,sortie-ac14378a-87b6-45b0-a009-56f735b309ea,https://biolit.fr/sorties/sortie-ac14378a-87b6-45b0-a009-56f735b309ea/,Phil,,5/20/2018 0:00,15.0000000,16.0000000,47.798235000000,-4.177002000000,,Loctudy - Finistère,42671,observation-ac14378a-87b6-45b0-a009-56f735b309ea-5,https://biolit.fr/observations/observation-ac14378a-87b6-45b0-a009-56f735b309ea-5/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/P1110565.JPG,,TRUE, +N1,59512,sortie-ac14378a-87b6-45b0-a009-56f735b309ea,https://biolit.fr/sorties/sortie-ac14378a-87b6-45b0-a009-56f735b309ea/,Phil,,5/20/2018 0:00,15.0000000,16.0000000,47.798235000000,-4.177002000000,,Loctudy - Finistère,42673,observation-ac14378a-87b6-45b0-a009-56f735b309ea-6,https://biolit.fr/observations/observation-ac14378a-87b6-45b0-a009-56f735b309ea-6/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1110560.JPG,,TRUE, +N1,59512,sortie-ac14378a-87b6-45b0-a009-56f735b309ea,https://biolit.fr/sorties/sortie-ac14378a-87b6-45b0-a009-56f735b309ea/,Phil,,5/20/2018 0:00,15.0000000,16.0000000,47.798235000000,-4.177002000000,,Loctudy - Finistère,42675,observation-ac14378a-87b6-45b0-a009-56f735b309ea-7,https://biolit.fr/observations/observation-ac14378a-87b6-45b0-a009-56f735b309ea-7/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/P1110561.JPG,,TRUE, +N1,59513,sortie-85cd95f8-1a2f-4020-961e-ae278907ba2a,https://biolit.fr/sorties/sortie-85cd95f8-1a2f-4020-961e-ae278907ba2a/,Phil,,7/22/2018 0:00,11.0:15,11.0000000,47.708080000000,-3.994419000000,,Fouesnant - Finistère,42677,observation-85cd95f8-1a2f-4020-961e-ae278907ba2a,https://biolit.fr/observations/observation-85cd95f8-1a2f-4020-961e-ae278907ba2a/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1110896.JPG,,TRUE, +N1,59513,sortie-85cd95f8-1a2f-4020-961e-ae278907ba2a,https://biolit.fr/sorties/sortie-85cd95f8-1a2f-4020-961e-ae278907ba2a/,Phil,,7/22/2018 0:00,11.0:15,11.0000000,47.708080000000,-3.994419000000,,Fouesnant - Finistère,42679,observation-85cd95f8-1a2f-4020-961e-ae278907ba2a-2,https://biolit.fr/observations/observation-85cd95f8-1a2f-4020-961e-ae278907ba2a-2/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1110894.JPG,,TRUE, +N1,59513,sortie-85cd95f8-1a2f-4020-961e-ae278907ba2a,https://biolit.fr/sorties/sortie-85cd95f8-1a2f-4020-961e-ae278907ba2a/,Phil,,7/22/2018 0:00,11.0:15,11.0000000,47.708080000000,-3.994419000000,,Fouesnant - Finistère,42681,observation-85cd95f8-1a2f-4020-961e-ae278907ba2a-3,https://biolit.fr/observations/observation-85cd95f8-1a2f-4020-961e-ae278907ba2a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110891.JPG,,FALSE, +N1,59513,sortie-85cd95f8-1a2f-4020-961e-ae278907ba2a,https://biolit.fr/sorties/sortie-85cd95f8-1a2f-4020-961e-ae278907ba2a/,Phil,,7/22/2018 0:00,11.0:15,11.0000000,47.708080000000,-3.994419000000,,Fouesnant - Finistère,42683,observation-85cd95f8-1a2f-4020-961e-ae278907ba2a-4,https://biolit.fr/observations/observation-85cd95f8-1a2f-4020-961e-ae278907ba2a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110892.JPG,,FALSE, +N1,59513,sortie-85cd95f8-1a2f-4020-961e-ae278907ba2a,https://biolit.fr/sorties/sortie-85cd95f8-1a2f-4020-961e-ae278907ba2a/,Phil,,7/22/2018 0:00,11.0:15,11.0000000,47.708080000000,-3.994419000000,,Fouesnant - Finistère,42685,observation-85cd95f8-1a2f-4020-961e-ae278907ba2a-5,https://biolit.fr/observations/observation-85cd95f8-1a2f-4020-961e-ae278907ba2a-5/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/P1110897.JPG,,TRUE, +N1,59514,sortie-61bb1ce9-bec7-47e9-99b1-99c24cea854a,https://biolit.fr/sorties/sortie-61bb1ce9-bec7-47e9-99b1-99c24cea854a/,Guillaume D,,09/02/2018,16.0000000,18.0000000,46.139611000000,-1.173309000000,,"La Rochelle, Plage des Minimes",42687,observation-61bb1ce9-bec7-47e9-99b1-99c24cea854a,https://biolit.fr/observations/observation-61bb1ce9-bec7-47e9-99b1-99c24cea854a/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20180902_162339_5mo.jpg,,TRUE, +N1,59514,sortie-61bb1ce9-bec7-47e9-99b1-99c24cea854a,https://biolit.fr/sorties/sortie-61bb1ce9-bec7-47e9-99b1-99c24cea854a/,Guillaume D,,09/02/2018,16.0000000,18.0000000,46.139611000000,-1.173309000000,,"La Rochelle, Plage des Minimes",42689,observation-61bb1ce9-bec7-47e9-99b1-99c24cea854a-2,https://biolit.fr/observations/observation-61bb1ce9-bec7-47e9-99b1-99c24cea854a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180902_162518-scaled.jpg,,FALSE, +N1,59514,sortie-61bb1ce9-bec7-47e9-99b1-99c24cea854a,https://biolit.fr/sorties/sortie-61bb1ce9-bec7-47e9-99b1-99c24cea854a/,Guillaume D,,09/02/2018,16.0000000,18.0000000,46.139611000000,-1.173309000000,,"La Rochelle, Plage des Minimes",42691,observation-61bb1ce9-bec7-47e9-99b1-99c24cea854a-3,https://biolit.fr/observations/observation-61bb1ce9-bec7-47e9-99b1-99c24cea854a-3/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20180902_163609_5mo-scaled.jpg,,TRUE, +N1,59514,sortie-61bb1ce9-bec7-47e9-99b1-99c24cea854a,https://biolit.fr/sorties/sortie-61bb1ce9-bec7-47e9-99b1-99c24cea854a/,Guillaume D,,09/02/2018,16.0000000,18.0000000,46.139611000000,-1.173309000000,,"La Rochelle, Plage des Minimes",42693,observation-61bb1ce9-bec7-47e9-99b1-99c24cea854a-4,https://biolit.fr/observations/observation-61bb1ce9-bec7-47e9-99b1-99c24cea854a-4/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180902_165037-scaled.jpg,,TRUE, +N1,59514,sortie-61bb1ce9-bec7-47e9-99b1-99c24cea854a,https://biolit.fr/sorties/sortie-61bb1ce9-bec7-47e9-99b1-99c24cea854a/,Guillaume D,,09/02/2018,16.0000000,18.0000000,46.139611000000,-1.173309000000,,"La Rochelle, Plage des Minimes",42695,observation-61bb1ce9-bec7-47e9-99b1-99c24cea854a-5,https://biolit.fr/observations/observation-61bb1ce9-bec7-47e9-99b1-99c24cea854a-5/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/20180902_165926-scaled.jpg,,TRUE, +N1,59514,sortie-61bb1ce9-bec7-47e9-99b1-99c24cea854a,https://biolit.fr/sorties/sortie-61bb1ce9-bec7-47e9-99b1-99c24cea854a/,Guillaume D,,09/02/2018,16.0000000,18.0000000,46.139611000000,-1.173309000000,,"La Rochelle, Plage des Minimes",42697,observation-61bb1ce9-bec7-47e9-99b1-99c24cea854a-6,https://biolit.fr/observations/observation-61bb1ce9-bec7-47e9-99b1-99c24cea854a-6/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/20180902_172930-scaled.jpg,,TRUE, +N1,59514,sortie-61bb1ce9-bec7-47e9-99b1-99c24cea854a,https://biolit.fr/sorties/sortie-61bb1ce9-bec7-47e9-99b1-99c24cea854a/,Guillaume D,,09/02/2018,16.0000000,18.0000000,46.139611000000,-1.173309000000,,"La Rochelle, Plage des Minimes",42699,observation-61bb1ce9-bec7-47e9-99b1-99c24cea854a-7,https://biolit.fr/observations/observation-61bb1ce9-bec7-47e9-99b1-99c24cea854a-7/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180902_174949_5mo.jpg,,TRUE, +N1,59515,sortie-3cbc6e3f-56ef-4df5-b900-00c63670ebfb,https://biolit.fr/sorties/sortie-3cbc6e3f-56ef-4df5-b900-00c63670ebfb/,Phil,,9/16/2018 0:00,16.0:35,16.0000000,47.873364000000,-3.932271000000,,Concarneau - Finistère,42701,observation-3cbc6e3f-56ef-4df5-b900-00c63670ebfb,https://biolit.fr/observations/observation-3cbc6e3f-56ef-4df5-b900-00c63670ebfb/,Aplidium pallidum,Flocon pédonculé blanc,,https://biolit.fr/wp-content/uploads/2023/07/20180916_163530.jpg,,TRUE, +N1,59515,sortie-3cbc6e3f-56ef-4df5-b900-00c63670ebfb,https://biolit.fr/sorties/sortie-3cbc6e3f-56ef-4df5-b900-00c63670ebfb/,Phil,,9/16/2018 0:00,16.0:35,16.0000000,47.873364000000,-3.932271000000,,Concarneau - Finistère,42703,observation-3cbc6e3f-56ef-4df5-b900-00c63670ebfb-2,https://biolit.fr/observations/observation-3cbc6e3f-56ef-4df5-b900-00c63670ebfb-2/,Aplidium pallidum,Flocon pédonculé blanc,,https://biolit.fr/wp-content/uploads/2023/07/20180916_163513.jpg,,TRUE, +N1,59515,sortie-3cbc6e3f-56ef-4df5-b900-00c63670ebfb,https://biolit.fr/sorties/sortie-3cbc6e3f-56ef-4df5-b900-00c63670ebfb/,Phil,,9/16/2018 0:00,16.0:35,16.0000000,47.873364000000,-3.932271000000,,Concarneau - Finistère,42705,observation-3cbc6e3f-56ef-4df5-b900-00c63670ebfb-3,https://biolit.fr/observations/observation-3cbc6e3f-56ef-4df5-b900-00c63670ebfb-3/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180916_163459.jpg,,TRUE, +N1,59515,sortie-3cbc6e3f-56ef-4df5-b900-00c63670ebfb,https://biolit.fr/sorties/sortie-3cbc6e3f-56ef-4df5-b900-00c63670ebfb/,Phil,,9/16/2018 0:00,16.0:35,16.0000000,47.873364000000,-3.932271000000,,Concarneau - Finistère,42707,observation-3cbc6e3f-56ef-4df5-b900-00c63670ebfb-4,https://biolit.fr/observations/observation-3cbc6e3f-56ef-4df5-b900-00c63670ebfb-4/,Aplidium pallidum,Flocon pédonculé blanc,,https://biolit.fr/wp-content/uploads/2023/07/20180916_163931.jpg,,TRUE, +N1,59516,sortie-224435a6-381f-44a2-9eea-dfa50f3067d3,https://biolit.fr/sorties/sortie-224435a6-381f-44a2-9eea-dfa50f3067d3/,Phil,,9/21/2018 0:00,11.0:25,11.0000000,47.792136000000,-4.286880000000,,Guilvinec - Finistère,42709,observation-224435a6-381f-44a2-9eea-dfa50f3067d3,https://biolit.fr/observations/observation-224435a6-381f-44a2-9eea-dfa50f3067d3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180921_112509.jpg,,FALSE, +N1,59516,sortie-224435a6-381f-44a2-9eea-dfa50f3067d3,https://biolit.fr/sorties/sortie-224435a6-381f-44a2-9eea-dfa50f3067d3/,Phil,,9/21/2018 0:00,11.0:25,11.0000000,47.792136000000,-4.286880000000,,Guilvinec - Finistère,42711,observation-224435a6-381f-44a2-9eea-dfa50f3067d3-2,https://biolit.fr/observations/observation-224435a6-381f-44a2-9eea-dfa50f3067d3-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180921_112715.jpg,,TRUE, +N1,59516,sortie-224435a6-381f-44a2-9eea-dfa50f3067d3,https://biolit.fr/sorties/sortie-224435a6-381f-44a2-9eea-dfa50f3067d3/,Phil,,9/21/2018 0:00,11.0:25,11.0000000,47.792136000000,-4.286880000000,,Guilvinec - Finistère,42713,observation-224435a6-381f-44a2-9eea-dfa50f3067d3-3,https://biolit.fr/observations/observation-224435a6-381f-44a2-9eea-dfa50f3067d3-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180921_112725.jpg,,TRUE, +N1,59516,sortie-224435a6-381f-44a2-9eea-dfa50f3067d3,https://biolit.fr/sorties/sortie-224435a6-381f-44a2-9eea-dfa50f3067d3/,Phil,,9/21/2018 0:00,11.0:25,11.0000000,47.792136000000,-4.286880000000,,Guilvinec - Finistère,42715,observation-224435a6-381f-44a2-9eea-dfa50f3067d3-4,https://biolit.fr/observations/observation-224435a6-381f-44a2-9eea-dfa50f3067d3-4/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20180921_112740.jpg,,TRUE, +N1,59517,sortie-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2,https://biolit.fr/sorties/sortie-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2/,Phil,,5/20/2018 0:00,15.0000000,15.0000000,47.799037000000,-4.176461000000,,Loctudy - Finistère,42717,observation-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2,https://biolit.fr/observations/observation-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110546.JPG,,FALSE, +N1,59517,sortie-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2,https://biolit.fr/sorties/sortie-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2/,Phil,,5/20/2018 0:00,15.0000000,15.0000000,47.799037000000,-4.176461000000,,Loctudy - Finistère,42719,observation-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2-2,https://biolit.fr/observations/observation-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110550.JPG,,FALSE, +N1,59517,sortie-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2,https://biolit.fr/sorties/sortie-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2/,Phil,,5/20/2018 0:00,15.0000000,15.0000000,47.799037000000,-4.176461000000,,Loctudy - Finistère,42721,observation-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2-3,https://biolit.fr/observations/observation-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110552.JPG,,FALSE, +N1,59517,sortie-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2,https://biolit.fr/sorties/sortie-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2/,Phil,,5/20/2018 0:00,15.0000000,15.0000000,47.799037000000,-4.176461000000,,Loctudy - Finistère,42723,observation-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2-4,https://biolit.fr/observations/observation-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110553.JPG,,FALSE, +N1,59517,sortie-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2,https://biolit.fr/sorties/sortie-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2/,Phil,,5/20/2018 0:00,15.0000000,15.0000000,47.799037000000,-4.176461000000,,Loctudy - Finistère,42725,observation-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2-5,https://biolit.fr/observations/observation-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110554.JPG,,FALSE, +N1,59518,sortie-b8724f57-2726-4b78-8bc2-2ff8b14e2413,https://biolit.fr/sorties/sortie-b8724f57-2726-4b78-8bc2-2ff8b14e2413/,Phil,,4/28/2018 0:00,11.0000000,11.0:55,47.893466000000,-3.965661000000,,La Forêt-Fouesnant - Finistère,42727,observation-b8724f57-2726-4b78-8bc2-2ff8b14e2413,https://biolit.fr/observations/observation-b8724f57-2726-4b78-8bc2-2ff8b14e2413/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110167.JPG,,FALSE, +N1,59518,sortie-b8724f57-2726-4b78-8bc2-2ff8b14e2413,https://biolit.fr/sorties/sortie-b8724f57-2726-4b78-8bc2-2ff8b14e2413/,Phil,,4/28/2018 0:00,11.0000000,11.0:55,47.893466000000,-3.965661000000,,La Forêt-Fouesnant - Finistère,42729,observation-b8724f57-2726-4b78-8bc2-2ff8b14e2413-2,https://biolit.fr/observations/observation-b8724f57-2726-4b78-8bc2-2ff8b14e2413-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110171.JPG,,FALSE, +N1,59519,sortie-d00bf74c-bb6f-4354-b2de-b1a64122237e,https://biolit.fr/sorties/sortie-d00bf74c-bb6f-4354-b2de-b1a64122237e/,Phil,,9/16/2018 0:00,16.0:25,16.0000000,47.873246000000,-3.932689000000,,Concarneau - Finistère,42731,observation-d00bf74c-bb6f-4354-b2de-b1a64122237e,https://biolit.fr/observations/observation-d00bf74c-bb6f-4354-b2de-b1a64122237e/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20180916_163105.jpg,,TRUE, +N1,59519,sortie-d00bf74c-bb6f-4354-b2de-b1a64122237e,https://biolit.fr/sorties/sortie-d00bf74c-bb6f-4354-b2de-b1a64122237e/,Phil,,9/16/2018 0:00,16.0:25,16.0000000,47.873246000000,-3.932689000000,,Concarneau - Finistère,42733,observation-d00bf74c-bb6f-4354-b2de-b1a64122237e-2,https://biolit.fr/observations/observation-d00bf74c-bb6f-4354-b2de-b1a64122237e-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180916_163200.jpg,,TRUE, +N1,59519,sortie-d00bf74c-bb6f-4354-b2de-b1a64122237e,https://biolit.fr/sorties/sortie-d00bf74c-bb6f-4354-b2de-b1a64122237e/,Phil,,9/16/2018 0:00,16.0:25,16.0000000,47.873246000000,-3.932689000000,,Concarneau - Finistère,42735,observation-d00bf74c-bb6f-4354-b2de-b1a64122237e-3,https://biolit.fr/observations/observation-d00bf74c-bb6f-4354-b2de-b1a64122237e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180916_163220.jpg,,FALSE, +N1,59519,sortie-d00bf74c-bb6f-4354-b2de-b1a64122237e,https://biolit.fr/sorties/sortie-d00bf74c-bb6f-4354-b2de-b1a64122237e/,Phil,,9/16/2018 0:00,16.0:25,16.0000000,47.873246000000,-3.932689000000,,Concarneau - Finistère,42737,observation-d00bf74c-bb6f-4354-b2de-b1a64122237e-4,https://biolit.fr/observations/observation-d00bf74c-bb6f-4354-b2de-b1a64122237e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180916_163224.jpg,,FALSE, +N1,59519,sortie-d00bf74c-bb6f-4354-b2de-b1a64122237e,https://biolit.fr/sorties/sortie-d00bf74c-bb6f-4354-b2de-b1a64122237e/,Phil,,9/16/2018 0:00,16.0:25,16.0000000,47.873246000000,-3.932689000000,,Concarneau - Finistère,42739,observation-d00bf74c-bb6f-4354-b2de-b1a64122237e-5,https://biolit.fr/observations/observation-d00bf74c-bb6f-4354-b2de-b1a64122237e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180916_163234.jpg,,FALSE, +N1,59519,sortie-d00bf74c-bb6f-4354-b2de-b1a64122237e,https://biolit.fr/sorties/sortie-d00bf74c-bb6f-4354-b2de-b1a64122237e/,Phil,,9/16/2018 0:00,16.0:25,16.0000000,47.873246000000,-3.932689000000,,Concarneau - Finistère,42741,observation-d00bf74c-bb6f-4354-b2de-b1a64122237e-6,https://biolit.fr/observations/observation-d00bf74c-bb6f-4354-b2de-b1a64122237e-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180916_163239.jpg,,FALSE, +N1,59520,sortie-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4,https://biolit.fr/sorties/sortie-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4/,Phil,,7/22/2018 0:00,11.0000000,11.0:15,47.708141000000,-3.993667000000,,Fouesnant - Finistère,42743,observation-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4,https://biolit.fr/observations/observation-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110883.JPG,,FALSE, +N1,59520,sortie-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4,https://biolit.fr/sorties/sortie-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4/,Phil,,7/22/2018 0:00,11.0000000,11.0:15,47.708141000000,-3.993667000000,,Fouesnant - Finistère,42745,observation-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4-2,https://biolit.fr/observations/observation-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110884.JPG,,FALSE, +N1,59520,sortie-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4,https://biolit.fr/sorties/sortie-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4/,Phil,,7/22/2018 0:00,11.0000000,11.0:15,47.708141000000,-3.993667000000,,Fouesnant - Finistère,42747,observation-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4-3,https://biolit.fr/observations/observation-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110885.JPG,,FALSE, +N1,59520,sortie-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4,https://biolit.fr/sorties/sortie-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4/,Phil,,7/22/2018 0:00,11.0000000,11.0:15,47.708141000000,-3.993667000000,,Fouesnant - Finistère,42749,observation-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4-4,https://biolit.fr/observations/observation-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110886.JPG,,FALSE, +N1,59520,sortie-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4,https://biolit.fr/sorties/sortie-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4/,Phil,,7/22/2018 0:00,11.0000000,11.0:15,47.708141000000,-3.993667000000,,Fouesnant - Finistère,42751,observation-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4-5,https://biolit.fr/observations/observation-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110887.JPG,,FALSE, +N1,59520,sortie-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4,https://biolit.fr/sorties/sortie-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4/,Phil,,7/22/2018 0:00,11.0000000,11.0:15,47.708141000000,-3.993667000000,,Fouesnant - Finistère,42753,observation-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4-6,https://biolit.fr/observations/observation-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110888.JPG,,FALSE, +N1,59521,sortie-17d71f0e-3202-4ec9-8f0a-f0966e4ff6a2,https://biolit.fr/sorties/sortie-17d71f0e-3202-4ec9-8f0a-f0966e4ff6a2/,Phil,,09/08/2018,12.0:15,12.0000000,47.869183000000,-3.911682000000,,Concarneau - Finistère,42755,observation-17d71f0e-3202-4ec9-8f0a-f0966e4ff6a2,https://biolit.fr/observations/observation-17d71f0e-3202-4ec9-8f0a-f0966e4ff6a2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180908_122004-scaled.jpg,,FALSE, +N1,59521,sortie-17d71f0e-3202-4ec9-8f0a-f0966e4ff6a2,https://biolit.fr/sorties/sortie-17d71f0e-3202-4ec9-8f0a-f0966e4ff6a2/,Phil,,09/08/2018,12.0:15,12.0000000,47.869183000000,-3.911682000000,,Concarneau - Finistère,42757,observation-17d71f0e-3202-4ec9-8f0a-f0966e4ff6a2-2,https://biolit.fr/observations/observation-17d71f0e-3202-4ec9-8f0a-f0966e4ff6a2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180908_121936.jpg,,FALSE, +N1,59521,sortie-17d71f0e-3202-4ec9-8f0a-f0966e4ff6a2,https://biolit.fr/sorties/sortie-17d71f0e-3202-4ec9-8f0a-f0966e4ff6a2/,Phil,,09/08/2018,12.0:15,12.0000000,47.869183000000,-3.911682000000,,Concarneau - Finistère,42759,observation-17d71f0e-3202-4ec9-8f0a-f0966e4ff6a2-3,https://biolit.fr/observations/observation-17d71f0e-3202-4ec9-8f0a-f0966e4ff6a2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180908_121813.jpg,,FALSE, +N1,59521,sortie-17d71f0e-3202-4ec9-8f0a-f0966e4ff6a2,https://biolit.fr/sorties/sortie-17d71f0e-3202-4ec9-8f0a-f0966e4ff6a2/,Phil,,09/08/2018,12.0:15,12.0000000,47.869183000000,-3.911682000000,,Concarneau - Finistère,42761,observation-17d71f0e-3202-4ec9-8f0a-f0966e4ff6a2-4,https://biolit.fr/observations/observation-17d71f0e-3202-4ec9-8f0a-f0966e4ff6a2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180908_121810.jpg,,FALSE, +N1,59522,sortie-b7a6aba6-9151-498a-a3e4-a1dd7f59b40a,https://biolit.fr/sorties/sortie-b7a6aba6-9151-498a-a3e4-a1dd7f59b40a/,Clémentine,,9/19/2018 0:00,10.0000000,10.0:35,43.2843420,5.3160610,,Plage Saint Esteve,42763,observation-b7a6aba6-9151-498a-a3e4-a1dd7f59b40a,https://biolit.fr/observations/observation-b7a6aba6-9151-498a-a3e4-a1dd7f59b40a/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180919_103936-scaled.jpg,,FALSE, +N1,59523,sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06,https://biolit.fr/sorties/sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06/,CarpeDiem,,9/15/2018 0:00,18.0000000,19.0000000,43.325728000000,5.054649000000,,Phare de la couronne,42765,observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06,https://biolit.fr/observations/observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Pince crabe verruqueux-scaled.jpg,,TRUE, +N1,59523,sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06,https://biolit.fr/sorties/sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06/,CarpeDiem,,9/15/2018 0:00,18.0000000,19.0000000,43.325728000000,5.054649000000,,Phare de la couronne,42767,observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-2,https://biolit.fr/observations/observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pince crabe verruqueux verso-scaled.jpg,,FALSE, +N1,59523,sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06,https://biolit.fr/sorties/sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06/,CarpeDiem,,9/15/2018 0:00,18.0000000,19.0000000,43.325728000000,5.054649000000,,Phare de la couronne,42769,observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-3,https://biolit.fr/observations/observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/pontes-scaled.jpg,,FALSE, +N1,59523,sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06,https://biolit.fr/sorties/sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06/,CarpeDiem,,9/15/2018 0:00,18.0000000,19.0000000,43.325728000000,5.054649000000,,Phare de la couronne,42771,observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-4,https://biolit.fr/observations/observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/coquille habitée pagure-rotated.jpg,,FALSE, +N1,59523,sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06,https://biolit.fr/sorties/sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06/,CarpeDiem,,9/15/2018 0:00,18.0000000,19.0000000,43.325728000000,5.054649000000,,Phare de la couronne,42773,observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-5,https://biolit.fr/observations/observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crabe 1Recto-scaled.jpg,,FALSE, +N1,59523,sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06,https://biolit.fr/sorties/sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06/,CarpeDiem,,9/15/2018 0:00,18.0000000,19.0000000,43.325728000000,5.054649000000,,Phare de la couronne,42775,observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-6,https://biolit.fr/observations/observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crabe 1verso-scaled.jpg,,FALSE, +N1,59523,sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06,https://biolit.fr/sorties/sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06/,CarpeDiem,,9/15/2018 0:00,18.0000000,19.0000000,43.325728000000,5.054649000000,,Phare de la couronne,42777,observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-7,https://biolit.fr/observations/observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crabe marbré recto-scaled.jpg,,FALSE, +N1,59523,sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06,https://biolit.fr/sorties/sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06/,CarpeDiem,,9/15/2018 0:00,18.0000000,19.0000000,43.325728000000,5.054649000000,,Phare de la couronne,42779,observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-8,https://biolit.fr/observations/observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crabe marbré verso-scaled.jpg,,FALSE, +N1,59523,sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06,https://biolit.fr/sorties/sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06/,CarpeDiem,,9/15/2018 0:00,18.0000000,19.0000000,43.325728000000,5.054649000000,,Phare de la couronne,42781,observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-9,https://biolit.fr/observations/observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-9/,Felimare villafranca,Doris de Villefranche,,https://biolit.fr/wp-content/uploads/2023/07/Doris-scaled.jpg,,TRUE, +N1,59523,sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06,https://biolit.fr/sorties/sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06/,CarpeDiem,,9/15/2018 0:00,18.0000000,19.0000000,43.325728000000,5.054649000000,,Phare de la couronne,42783,observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-10,https://biolit.fr/observations/observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-10/,Lithophaga lithophaga,Datte de mer,,https://biolit.fr/wp-content/uploads/2023/07/datte de mer recto-scaled.jpg,,TRUE, +N1,59523,sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06,https://biolit.fr/sorties/sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06/,CarpeDiem,,9/15/2018 0:00,18.0000000,19.0000000,43.325728000000,5.054649000000,,Phare de la couronne,42785,observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-11,https://biolit.fr/observations/observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-11/,Lithophaga lithophaga,Datte de mer,,https://biolit.fr/wp-content/uploads/2023/07/Datte de mer verso-scaled.jpg,,TRUE, +N1,59523,sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06,https://biolit.fr/sorties/sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06/,CarpeDiem,,9/15/2018 0:00,18.0000000,19.0000000,43.325728000000,5.054649000000,,Phare de la couronne,42787,observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-12,https://biolit.fr/observations/observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/caulerpe raisin-scaled.jpg,,FALSE, +N1,59523,sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06,https://biolit.fr/sorties/sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06/,CarpeDiem,,9/15/2018 0:00,18.0000000,19.0000000,43.325728000000,5.054649000000,,Phare de la couronne,42789,observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-13,https://biolit.fr/observations/observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/Moule coquille.jpg,,FALSE, +N1,59523,sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06,https://biolit.fr/sorties/sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06/,CarpeDiem,,9/15/2018 0:00,18.0000000,19.0000000,43.325728000000,5.054649000000,,Phare de la couronne,42791,observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-14,https://biolit.fr/observations/observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-14/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/petit coquillage.jpg,,TRUE, +N1,59525,sortie-c7802337-a7c7-434d-aa74-80071df25f9a,https://biolit.fr/sorties/sortie-c7802337-a7c7-434d-aa74-80071df25f9a/,Phil,,5/20/2018 0:00,15.0000000,15.0000000,47.7983620000,-4.176478000000,,Loctudy - Finistère,42795,observation-c7802337-a7c7-434d-aa74-80071df25f9a,https://biolit.fr/observations/observation-c7802337-a7c7-434d-aa74-80071df25f9a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110540.JPG,,FALSE, +N1,59525,sortie-c7802337-a7c7-434d-aa74-80071df25f9a,https://biolit.fr/sorties/sortie-c7802337-a7c7-434d-aa74-80071df25f9a/,Phil,,5/20/2018 0:00,15.0000000,15.0000000,47.7983620000,-4.176478000000,,Loctudy - Finistère,42797,observation-c7802337-a7c7-434d-aa74-80071df25f9a-2,https://biolit.fr/observations/observation-c7802337-a7c7-434d-aa74-80071df25f9a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110543.JPG,,FALSE, +N1,59525,sortie-c7802337-a7c7-434d-aa74-80071df25f9a,https://biolit.fr/sorties/sortie-c7802337-a7c7-434d-aa74-80071df25f9a/,Phil,,5/20/2018 0:00,15.0000000,15.0000000,47.7983620000,-4.176478000000,,Loctudy - Finistère,42799,observation-c7802337-a7c7-434d-aa74-80071df25f9a-3,https://biolit.fr/observations/observation-c7802337-a7c7-434d-aa74-80071df25f9a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110537.JPG,,FALSE, +N1,59525,sortie-c7802337-a7c7-434d-aa74-80071df25f9a,https://biolit.fr/sorties/sortie-c7802337-a7c7-434d-aa74-80071df25f9a/,Phil,,5/20/2018 0:00,15.0000000,15.0000000,47.7983620000,-4.176478000000,,Loctudy - Finistère,42801,observation-c7802337-a7c7-434d-aa74-80071df25f9a-4,https://biolit.fr/observations/observation-c7802337-a7c7-434d-aa74-80071df25f9a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110533.JPG,,FALSE, +N1,59525,sortie-c7802337-a7c7-434d-aa74-80071df25f9a,https://biolit.fr/sorties/sortie-c7802337-a7c7-434d-aa74-80071df25f9a/,Phil,,5/20/2018 0:00,15.0000000,15.0000000,47.7983620000,-4.176478000000,,Loctudy - Finistère,42803,observation-c7802337-a7c7-434d-aa74-80071df25f9a-5,https://biolit.fr/observations/observation-c7802337-a7c7-434d-aa74-80071df25f9a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110530.JPG,,FALSE, +N1,59525,sortie-c7802337-a7c7-434d-aa74-80071df25f9a,https://biolit.fr/sorties/sortie-c7802337-a7c7-434d-aa74-80071df25f9a/,Phil,,5/20/2018 0:00,15.0000000,15.0000000,47.7983620000,-4.176478000000,,Loctudy - Finistère,42805,observation-c7802337-a7c7-434d-aa74-80071df25f9a-6,https://biolit.fr/observations/observation-c7802337-a7c7-434d-aa74-80071df25f9a-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110529.JPG,,FALSE, +N1,59525,sortie-c7802337-a7c7-434d-aa74-80071df25f9a,https://biolit.fr/sorties/sortie-c7802337-a7c7-434d-aa74-80071df25f9a/,Phil,,5/20/2018 0:00,15.0000000,15.0000000,47.7983620000,-4.176478000000,,Loctudy - Finistère,42807,observation-c7802337-a7c7-434d-aa74-80071df25f9a-7,https://biolit.fr/observations/observation-c7802337-a7c7-434d-aa74-80071df25f9a-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110523.JPG,,FALSE, +N1,59525,sortie-c7802337-a7c7-434d-aa74-80071df25f9a,https://biolit.fr/sorties/sortie-c7802337-a7c7-434d-aa74-80071df25f9a/,Phil,,5/20/2018 0:00,15.0000000,15.0000000,47.7983620000,-4.176478000000,,Loctudy - Finistère,42809,observation-c7802337-a7c7-434d-aa74-80071df25f9a-8,https://biolit.fr/observations/observation-c7802337-a7c7-434d-aa74-80071df25f9a-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110522.JPG,,FALSE, +N1,59526,sortie-9c423c56-5d58-4f9c-8e06-3bb6539c1793,https://biolit.fr/sorties/sortie-9c423c56-5d58-4f9c-8e06-3bb6539c1793/,Phil,,9/16/2018 0:00,16.0000000,16.0000000,47.873489000000,-3.931005000000,,Concarneau - Finistère,42811,observation-9c423c56-5d58-4f9c-8e06-3bb6539c1793,https://biolit.fr/observations/observation-9c423c56-5d58-4f9c-8e06-3bb6539c1793/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180916_162605_2.jpg,,TRUE, +N1,59526,sortie-9c423c56-5d58-4f9c-8e06-3bb6539c1793,https://biolit.fr/sorties/sortie-9c423c56-5d58-4f9c-8e06-3bb6539c1793/,Phil,,9/16/2018 0:00,16.0000000,16.0000000,47.873489000000,-3.931005000000,,Concarneau - Finistère,42813,observation-9c423c56-5d58-4f9c-8e06-3bb6539c1793-2,https://biolit.fr/observations/observation-9c423c56-5d58-4f9c-8e06-3bb6539c1793-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180916_161944_1.jpg,,FALSE, +N1,59526,sortie-9c423c56-5d58-4f9c-8e06-3bb6539c1793,https://biolit.fr/sorties/sortie-9c423c56-5d58-4f9c-8e06-3bb6539c1793/,Phil,,9/16/2018 0:00,16.0000000,16.0000000,47.873489000000,-3.931005000000,,Concarneau - Finistère,42815,observation-9c423c56-5d58-4f9c-8e06-3bb6539c1793-3,https://biolit.fr/observations/observation-9c423c56-5d58-4f9c-8e06-3bb6539c1793-3/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20180916_162454_1.jpg,,TRUE, +N1,59526,sortie-9c423c56-5d58-4f9c-8e06-3bb6539c1793,https://biolit.fr/sorties/sortie-9c423c56-5d58-4f9c-8e06-3bb6539c1793/,Phil,,9/16/2018 0:00,16.0000000,16.0000000,47.873489000000,-3.931005000000,,Concarneau - Finistère,42817,observation-9c423c56-5d58-4f9c-8e06-3bb6539c1793-4,https://biolit.fr/observations/observation-9c423c56-5d58-4f9c-8e06-3bb6539c1793-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180916_162802_1.jpg,,FALSE, +N1,59526,sortie-9c423c56-5d58-4f9c-8e06-3bb6539c1793,https://biolit.fr/sorties/sortie-9c423c56-5d58-4f9c-8e06-3bb6539c1793/,Phil,,9/16/2018 0:00,16.0000000,16.0000000,47.873489000000,-3.931005000000,,Concarneau - Finistère,42819,observation-9c423c56-5d58-4f9c-8e06-3bb6539c1793-5,https://biolit.fr/observations/observation-9c423c56-5d58-4f9c-8e06-3bb6539c1793-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180916_162918_1.jpg,,FALSE, +N1,59526,sortie-9c423c56-5d58-4f9c-8e06-3bb6539c1793,https://biolit.fr/sorties/sortie-9c423c56-5d58-4f9c-8e06-3bb6539c1793/,Phil,,9/16/2018 0:00,16.0000000,16.0000000,47.873489000000,-3.931005000000,,Concarneau - Finistère,42821,observation-9c423c56-5d58-4f9c-8e06-3bb6539c1793-6,https://biolit.fr/observations/observation-9c423c56-5d58-4f9c-8e06-3bb6539c1793-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180916_163009_1.jpg,,FALSE, +N1,59527,sortie-aae419be-5bf8-42ab-9be9-973b1b325f9d,https://biolit.fr/sorties/sortie-aae419be-5bf8-42ab-9be9-973b1b325f9d/,Phil,,9/15/2018 0:00,15.0:55,16.0000000,48.006271000000,-4.556672000000,,Esquibien - Finistère,42823,observation-aae419be-5bf8-42ab-9be9-973b1b325f9d,https://biolit.fr/observations/observation-aae419be-5bf8-42ab-9be9-973b1b325f9d/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180915_155933.jpg,,FALSE, +N1,59528,sortie-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7,https://biolit.fr/sorties/sortie-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7/,Phil,,8/24/2018 0:00,13.0000000,13.000005,48.031694000000,-4.844292000000,,Île de Sein - Finistère,42825,observation-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7,https://biolit.fr/observations/observation-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120079.JPG,,FALSE, +N1,59528,sortie-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7,https://biolit.fr/sorties/sortie-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7/,Phil,,8/24/2018 0:00,13.0000000,13.000005,48.031694000000,-4.844292000000,,Île de Sein - Finistère,42827,observation-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7-2,https://biolit.fr/observations/observation-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120082_0.JPG,,FALSE, +N1,59528,sortie-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7,https://biolit.fr/sorties/sortie-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7/,Phil,,8/24/2018 0:00,13.0000000,13.000005,48.031694000000,-4.844292000000,,Île de Sein - Finistère,42829,observation-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7-3,https://biolit.fr/observations/observation-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120080.JPG,,FALSE, +N1,59528,sortie-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7,https://biolit.fr/sorties/sortie-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7/,Phil,,8/24/2018 0:00,13.0000000,13.000005,48.031694000000,-4.844292000000,,Île de Sein - Finistère,42831,observation-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7-4,https://biolit.fr/observations/observation-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120081.JPG,,FALSE, +N1,59528,sortie-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7,https://biolit.fr/sorties/sortie-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7/,Phil,,8/24/2018 0:00,13.0000000,13.000005,48.031694000000,-4.844292000000,,Île de Sein - Finistère,42833,observation-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7-5,https://biolit.fr/observations/observation-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120086.JPG,,FALSE, +N1,59528,sortie-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7,https://biolit.fr/sorties/sortie-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7/,Phil,,8/24/2018 0:00,13.0000000,13.000005,48.031694000000,-4.844292000000,,Île de Sein - Finistère,42835,observation-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7-6,https://biolit.fr/observations/observation-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120088.JPG,,FALSE, +N1,59528,sortie-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7,https://biolit.fr/sorties/sortie-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7/,Phil,,8/24/2018 0:00,13.0000000,13.000005,48.031694000000,-4.844292000000,,Île de Sein - Finistère,42837,observation-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7-7,https://biolit.fr/observations/observation-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120089.JPG,,FALSE, +N1,59529,sortie-f71f257b-a139-4339-85ab-d6ffbfb8e9b5,https://biolit.fr/sorties/sortie-f71f257b-a139-4339-85ab-d6ffbfb8e9b5/,Phil,,9/15/2018 0:00,11.0000000,12.0000000,47.837442000000,-4.176338000000,,Loctudy - Finistère,42839,observation-f71f257b-a139-4339-85ab-d6ffbfb8e9b5,https://biolit.fr/observations/observation-f71f257b-a139-4339-85ab-d6ffbfb8e9b5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120195-scaled.jpg,,FALSE, +N1,59529,sortie-f71f257b-a139-4339-85ab-d6ffbfb8e9b5,https://biolit.fr/sorties/sortie-f71f257b-a139-4339-85ab-d6ffbfb8e9b5/,Phil,,9/15/2018 0:00,11.0000000,12.0000000,47.837442000000,-4.176338000000,,Loctudy - Finistère,42841,observation-f71f257b-a139-4339-85ab-d6ffbfb8e9b5-2,https://biolit.fr/observations/observation-f71f257b-a139-4339-85ab-d6ffbfb8e9b5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P112019 -.jpg,,FALSE, +N1,59529,sortie-f71f257b-a139-4339-85ab-d6ffbfb8e9b5,https://biolit.fr/sorties/sortie-f71f257b-a139-4339-85ab-d6ffbfb8e9b5/,Phil,,9/15/2018 0:00,11.0000000,12.0000000,47.837442000000,-4.176338000000,,Loctudy - Finistère,42843,observation-f71f257b-a139-4339-85ab-d6ffbfb8e9b5-3,https://biolit.fr/observations/observation-f71f257b-a139-4339-85ab-d6ffbfb8e9b5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120196.JPG,,FALSE, +N1,59529,sortie-f71f257b-a139-4339-85ab-d6ffbfb8e9b5,https://biolit.fr/sorties/sortie-f71f257b-a139-4339-85ab-d6ffbfb8e9b5/,Phil,,9/15/2018 0:00,11.0000000,12.0000000,47.837442000000,-4.176338000000,,Loctudy - Finistère,42845,observation-f71f257b-a139-4339-85ab-d6ffbfb8e9b5-4,https://biolit.fr/observations/observation-f71f257b-a139-4339-85ab-d6ffbfb8e9b5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120199.JPG,,FALSE, +N1,59529,sortie-f71f257b-a139-4339-85ab-d6ffbfb8e9b5,https://biolit.fr/sorties/sortie-f71f257b-a139-4339-85ab-d6ffbfb8e9b5/,Phil,,9/15/2018 0:00,11.0000000,12.0000000,47.837442000000,-4.176338000000,,Loctudy - Finistère,42847,observation-f71f257b-a139-4339-85ab-d6ffbfb8e9b5-5,https://biolit.fr/observations/observation-f71f257b-a139-4339-85ab-d6ffbfb8e9b5-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120202.JPG,,FALSE, +N1,59529,sortie-f71f257b-a139-4339-85ab-d6ffbfb8e9b5,https://biolit.fr/sorties/sortie-f71f257b-a139-4339-85ab-d6ffbfb8e9b5/,Phil,,9/15/2018 0:00,11.0000000,12.0000000,47.837442000000,-4.176338000000,,Loctudy - Finistère,42849,observation-f71f257b-a139-4339-85ab-d6ffbfb8e9b5-6,https://biolit.fr/observations/observation-f71f257b-a139-4339-85ab-d6ffbfb8e9b5-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120204.JPG,,FALSE, +N1,59530,sortie-95298ece-250c-4e04-a312-9fba6191ec4a,https://biolit.fr/sorties/sortie-95298ece-250c-4e04-a312-9fba6191ec4a/,Treza13,,08/09/2018,7.0000000,14.0000000,43.176491000000,6.603024000000,,Les trois caps,42851,observation-95298ece-250c-4e04-a312-9fba6191ec4a,https://biolit.fr/observations/observation-95298ece-250c-4e04-a312-9fba6191ec4a/,Apogon imberbis,Apogon,,https://biolit.fr/wp-content/uploads/2023/07/20180809 Apogons (3).jpg,,TRUE, +N1,59531,sortie-406c0062-f69f-4712-bb06-ea50ffacd658,https://biolit.fr/sorties/sortie-406c0062-f69f-4712-bb06-ea50ffacd658/,Treza13,,08/08/2018,7.0000000,14.0000000,43.013419000000,6.389866000000,,Parc National de Port Cros,42853,observation-406c0062-f69f-4712-bb06-ea50ffacd658,https://biolit.fr/observations/observation-406c0062-f69f-4712-bb06-ea50ffacd658/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180808 Merle (1)_0.jpg,,FALSE, +N1,59531,sortie-406c0062-f69f-4712-bb06-ea50ffacd658,https://biolit.fr/sorties/sortie-406c0062-f69f-4712-bb06-ea50ffacd658/,Treza13,,08/08/2018,7.0000000,14.0000000,43.013419000000,6.389866000000,,Parc National de Port Cros,42855,observation-406c0062-f69f-4712-bb06-ea50ffacd658-2,https://biolit.fr/observations/observation-406c0062-f69f-4712-bb06-ea50ffacd658-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180808 Merle (2).jpg,,FALSE, +N1,59531,sortie-406c0062-f69f-4712-bb06-ea50ffacd658,https://biolit.fr/sorties/sortie-406c0062-f69f-4712-bb06-ea50ffacd658/,Treza13,,08/08/2018,7.0000000,14.0000000,43.013419000000,6.389866000000,,Parc National de Port Cros,42857,observation-406c0062-f69f-4712-bb06-ea50ffacd658-3,https://biolit.fr/observations/observation-406c0062-f69f-4712-bb06-ea50ffacd658-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180808 Merle (3).jpg,,FALSE, +N1,59532,sortie-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b,https://biolit.fr/sorties/sortie-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b/,Phil,,5/20/2018 0:00,15.0:25,15.0000000,47.798160000000,-4.177551000000,,Loctudy - Finistère,42859,observation-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b,https://biolit.fr/observations/observation-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110514.JPG,,FALSE, +N1,59532,sortie-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b,https://biolit.fr/sorties/sortie-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b/,Phil,,5/20/2018 0:00,15.0:25,15.0000000,47.798160000000,-4.177551000000,,Loctudy - Finistère,42861,observation-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b-2,https://biolit.fr/observations/observation-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110515.JPG,,FALSE, +N1,59532,sortie-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b,https://biolit.fr/sorties/sortie-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b/,Phil,,5/20/2018 0:00,15.0:25,15.0000000,47.798160000000,-4.177551000000,,Loctudy - Finistère,42863,observation-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b-3,https://biolit.fr/observations/observation-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b-3/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/P1110507.JPG,,TRUE, +N1,59532,sortie-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b,https://biolit.fr/sorties/sortie-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b/,Phil,,5/20/2018 0:00,15.0:25,15.0000000,47.798160000000,-4.177551000000,,Loctudy - Finistère,42865,observation-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b-4,https://biolit.fr/observations/observation-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110506.JPG,,FALSE, +N1,59532,sortie-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b,https://biolit.fr/sorties/sortie-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b/,Phil,,5/20/2018 0:00,15.0:25,15.0000000,47.798160000000,-4.177551000000,,Loctudy - Finistère,42867,observation-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b-5,https://biolit.fr/observations/observation-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110510.JPG,,FALSE, +N1,59532,sortie-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b,https://biolit.fr/sorties/sortie-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b/,Phil,,5/20/2018 0:00,15.0:25,15.0000000,47.798160000000,-4.177551000000,,Loctudy - Finistère,42869,observation-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b-6,https://biolit.fr/observations/observation-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110511.JPG,,FALSE, +N1,59533,sortie-f1e159e4-48f1-4067-90e3-b1c83d9ca906,https://biolit.fr/sorties/sortie-f1e159e4-48f1-4067-90e3-b1c83d9ca906/,Phil,,7/16/2018 0:00,12.0:45,12.0000000,47.809376000000,-3.712372000000,,Moëlan-sur-Mer Finistère,42871,observation-f1e159e4-48f1-4067-90e3-b1c83d9ca906,https://biolit.fr/observations/observation-f1e159e4-48f1-4067-90e3-b1c83d9ca906/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110710_0.JPG,,FALSE, +N1,59533,sortie-f1e159e4-48f1-4067-90e3-b1c83d9ca906,https://biolit.fr/sorties/sortie-f1e159e4-48f1-4067-90e3-b1c83d9ca906/,Phil,,7/16/2018 0:00,12.0:45,12.0000000,47.809376000000,-3.712372000000,,Moëlan-sur-Mer Finistère,42873,observation-f1e159e4-48f1-4067-90e3-b1c83d9ca906-2,https://biolit.fr/observations/observation-f1e159e4-48f1-4067-90e3-b1c83d9ca906-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110708_0.JPG,,FALSE, +N1,59533,sortie-f1e159e4-48f1-4067-90e3-b1c83d9ca906,https://biolit.fr/sorties/sortie-f1e159e4-48f1-4067-90e3-b1c83d9ca906/,Phil,,7/16/2018 0:00,12.0:45,12.0000000,47.809376000000,-3.712372000000,,Moëlan-sur-Mer Finistère,42875,observation-f1e159e4-48f1-4067-90e3-b1c83d9ca906-3,https://biolit.fr/observations/observation-f1e159e4-48f1-4067-90e3-b1c83d9ca906-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110709_0.JPG,,FALSE, +N1,59533,sortie-f1e159e4-48f1-4067-90e3-b1c83d9ca906,https://biolit.fr/sorties/sortie-f1e159e4-48f1-4067-90e3-b1c83d9ca906/,Phil,,7/16/2018 0:00,12.0:45,12.0000000,47.809376000000,-3.712372000000,,Moëlan-sur-Mer Finistère,42877,observation-f1e159e4-48f1-4067-90e3-b1c83d9ca906-4,https://biolit.fr/observations/observation-f1e159e4-48f1-4067-90e3-b1c83d9ca906-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110712_0.JPG,,FALSE, +N1,59533,sortie-f1e159e4-48f1-4067-90e3-b1c83d9ca906,https://biolit.fr/sorties/sortie-f1e159e4-48f1-4067-90e3-b1c83d9ca906/,Phil,,7/16/2018 0:00,12.0:45,12.0000000,47.809376000000,-3.712372000000,,Moëlan-sur-Mer Finistère,42879,observation-f1e159e4-48f1-4067-90e3-b1c83d9ca906-5,https://biolit.fr/observations/observation-f1e159e4-48f1-4067-90e3-b1c83d9ca906-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110713.JPG,,FALSE, +N1,59533,sortie-f1e159e4-48f1-4067-90e3-b1c83d9ca906,https://biolit.fr/sorties/sortie-f1e159e4-48f1-4067-90e3-b1c83d9ca906/,Phil,,7/16/2018 0:00,12.0:45,12.0000000,47.809376000000,-3.712372000000,,Moëlan-sur-Mer Finistère,42881,observation-f1e159e4-48f1-4067-90e3-b1c83d9ca906-6,https://biolit.fr/observations/observation-f1e159e4-48f1-4067-90e3-b1c83d9ca906-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110714_0.JPG,,FALSE, +N1,59534,sortie-1822cb9b-0831-4907-9d9d-b680d70c6722,https://biolit.fr/sorties/sortie-1822cb9b-0831-4907-9d9d-b680d70c6722/,Phil,,09/08/2018,12.0000000,12.0:15,47.869588000000,-3.911989000000,,Concarneau - Finistère,42883,observation-1822cb9b-0831-4907-9d9d-b680d70c6722,https://biolit.fr/observations/observation-1822cb9b-0831-4907-9d9d-b680d70c6722/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180908_121353.jpg,,FALSE, +N1,59534,sortie-1822cb9b-0831-4907-9d9d-b680d70c6722,https://biolit.fr/sorties/sortie-1822cb9b-0831-4907-9d9d-b680d70c6722/,Phil,,09/08/2018,12.0000000,12.0:15,47.869588000000,-3.911989000000,,Concarneau - Finistère,42885,observation-1822cb9b-0831-4907-9d9d-b680d70c6722-2,https://biolit.fr/observations/observation-1822cb9b-0831-4907-9d9d-b680d70c6722-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180908_121330.jpg,,FALSE, +N1,59535,sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0,https://biolit.fr/sorties/sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0/,Murielle,,9/15/2018 0:00,9.0:15,10.0000000,43.343000000000,5.364272000000,,Plage du Bain des Dames Marseille,42887,observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0,https://biolit.fr/observations/observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180915_093411-scaled.jpg,,FALSE, +N1,59535,sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0,https://biolit.fr/sorties/sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0/,Murielle,,9/15/2018 0:00,9.0:15,10.0000000,43.343000000000,5.364272000000,,Plage du Bain des Dames Marseille,42889,observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0-2,https://biolit.fr/observations/observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180915_093717-scaled.jpg,,FALSE, +N1,59535,sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0,https://biolit.fr/sorties/sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0/,Murielle,,9/15/2018 0:00,9.0:15,10.0000000,43.343000000000,5.364272000000,,Plage du Bain des Dames Marseille,42891,observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0-3,https://biolit.fr/observations/observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180915_093859-scaled.jpg,,FALSE, +N1,59535,sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0,https://biolit.fr/sorties/sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0/,Murielle,,9/15/2018 0:00,9.0:15,10.0000000,43.343000000000,5.364272000000,,Plage du Bain des Dames Marseille,42893,observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0-4,https://biolit.fr/observations/observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180915_094430-scaled.jpg,,FALSE, +N1,59535,sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0,https://biolit.fr/sorties/sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0/,Murielle,,9/15/2018 0:00,9.0:15,10.0000000,43.343000000000,5.364272000000,,Plage du Bain des Dames Marseille,42895,observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0-5,https://biolit.fr/observations/observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180915_094513-scaled.jpg,,FALSE, +N1,59535,sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0,https://biolit.fr/sorties/sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0/,Murielle,,9/15/2018 0:00,9.0:15,10.0000000,43.343000000000,5.364272000000,,Plage du Bain des Dames Marseille,42897,observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0-6,https://biolit.fr/observations/observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180915_100908-scaled.jpg,,FALSE, +N1,59535,sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0,https://biolit.fr/sorties/sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0/,Murielle,,9/15/2018 0:00,9.0:15,10.0000000,43.343000000000,5.364272000000,,Plage du Bain des Dames Marseille,42899,observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0-7,https://biolit.fr/observations/observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180915_100811-scaled.jpg,,FALSE, +N1,59535,sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0,https://biolit.fr/sorties/sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0/,Murielle,,9/15/2018 0:00,9.0:15,10.0000000,43.343000000000,5.364272000000,,Plage du Bain des Dames Marseille,42901,observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0-8,https://biolit.fr/observations/observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180915_093510-scaled.jpg,,FALSE, +N1,59535,sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0,https://biolit.fr/sorties/sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0/,Murielle,,9/15/2018 0:00,9.0:15,10.0000000,43.343000000000,5.364272000000,,Plage du Bain des Dames Marseille,42903,observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0-9,https://biolit.fr/observations/observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180915_093619-scaled.jpg,,FALSE, +N1,59536,sortie-56c2d91c-3a45-4f09-b669-8eeae18e0652,https://biolit.fr/sorties/sortie-56c2d91c-3a45-4f09-b669-8eeae18e0652/,Treza13,,8/24/2018 0:00,7.0000000,14.0000000,43.183782000000,6.593325000000,,Plage de Gigaro,42905,observation-56c2d91c-3a45-4f09-b669-8eeae18e0652,https://biolit.fr/observations/observation-56c2d91c-3a45-4f09-b669-8eeae18e0652/,Dactylopterus volitans,Grondin volant,,https://biolit.fr/wp-content/uploads/2023/07/20180824 Grondins Volants (1).jpg,,TRUE, +N1,59536,sortie-56c2d91c-3a45-4f09-b669-8eeae18e0652,https://biolit.fr/sorties/sortie-56c2d91c-3a45-4f09-b669-8eeae18e0652/,Treza13,,8/24/2018 0:00,7.0000000,14.0000000,43.183782000000,6.593325000000,,Plage de Gigaro,42907,observation-56c2d91c-3a45-4f09-b669-8eeae18e0652-2,https://biolit.fr/observations/observation-56c2d91c-3a45-4f09-b669-8eeae18e0652-2/,Dactylopterus volitans,Grondin volant,,https://biolit.fr/wp-content/uploads/2023/07/20180824 Grondins Volants (8).jpg,,TRUE, +N1,59536,sortie-56c2d91c-3a45-4f09-b669-8eeae18e0652,https://biolit.fr/sorties/sortie-56c2d91c-3a45-4f09-b669-8eeae18e0652/,Treza13,,8/24/2018 0:00,7.0000000,14.0000000,43.183782000000,6.593325000000,,Plage de Gigaro,42909,observation-56c2d91c-3a45-4f09-b669-8eeae18e0652-3,https://biolit.fr/observations/observation-56c2d91c-3a45-4f09-b669-8eeae18e0652-3/,Dactylopterus volitans,Grondin volant,,https://biolit.fr/wp-content/uploads/2023/07/20180824 Grondins Volants (10).jpg,,TRUE, +N1,59536,sortie-56c2d91c-3a45-4f09-b669-8eeae18e0652,https://biolit.fr/sorties/sortie-56c2d91c-3a45-4f09-b669-8eeae18e0652/,Treza13,,8/24/2018 0:00,7.0000000,14.0000000,43.183782000000,6.593325000000,,Plage de Gigaro,42911,observation-56c2d91c-3a45-4f09-b669-8eeae18e0652-4,https://biolit.fr/observations/observation-56c2d91c-3a45-4f09-b669-8eeae18e0652-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180824 Rason (4).jpg,,FALSE, +N1,59536,sortie-56c2d91c-3a45-4f09-b669-8eeae18e0652,https://biolit.fr/sorties/sortie-56c2d91c-3a45-4f09-b669-8eeae18e0652/,Treza13,,8/24/2018 0:00,7.0000000,14.0000000,43.183782000000,6.593325000000,,Plage de Gigaro,42913,observation-56c2d91c-3a45-4f09-b669-8eeae18e0652-5,https://biolit.fr/observations/observation-56c2d91c-3a45-4f09-b669-8eeae18e0652-5/,Sabella spallanzanii,Spirographe,,https://biolit.fr/wp-content/uploads/2023/07/20180824 Spirographe (9).jpg,,TRUE, +N1,59537,sortie-151c2c59-f00d-416c-b388-f1ccc75e4e59,https://biolit.fr/sorties/sortie-151c2c59-f00d-416c-b388-f1ccc75e4e59/,Treza13,,8/23/2018 0:00,7.0000000,14.0000000,43.183360000000,6.592703000000,,Plage de Gigaro,42915,observation-151c2c59-f00d-416c-b388-f1ccc75e4e59,https://biolit.fr/observations/observation-151c2c59-f00d-416c-b388-f1ccc75e4e59/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180823 Grande Cérianthe Noire (1).jpg,,FALSE, +N1,59537,sortie-151c2c59-f00d-416c-b388-f1ccc75e4e59,https://biolit.fr/sorties/sortie-151c2c59-f00d-416c-b388-f1ccc75e4e59/,Treza13,,8/23/2018 0:00,7.0000000,14.0000000,43.183360000000,6.592703000000,,Plage de Gigaro,42917,observation-151c2c59-f00d-416c-b388-f1ccc75e4e59-2,https://biolit.fr/observations/observation-151c2c59-f00d-416c-b388-f1ccc75e4e59-2/,Cerianthus membranaceus,Grand cérianthe,,https://biolit.fr/wp-content/uploads/2023/07/20180823 Grande Cérianthe Noire (10).jpg,,TRUE, +N1,59537,sortie-151c2c59-f00d-416c-b388-f1ccc75e4e59,https://biolit.fr/sorties/sortie-151c2c59-f00d-416c-b388-f1ccc75e4e59/,Treza13,,8/23/2018 0:00,7.0000000,14.0000000,43.183360000000,6.592703000000,,Plage de Gigaro,42919,observation-151c2c59-f00d-416c-b388-f1ccc75e4e59-3,https://biolit.fr/observations/observation-151c2c59-f00d-416c-b388-f1ccc75e4e59-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180823 Grande Cérianthe Noire (11).jpg,,FALSE, +N1,59537,sortie-151c2c59-f00d-416c-b388-f1ccc75e4e59,https://biolit.fr/sorties/sortie-151c2c59-f00d-416c-b388-f1ccc75e4e59/,Treza13,,8/23/2018 0:00,7.0000000,14.0000000,43.183360000000,6.592703000000,,Plage de Gigaro,42921,observation-151c2c59-f00d-416c-b388-f1ccc75e4e59-4,https://biolit.fr/observations/observation-151c2c59-f00d-416c-b388-f1ccc75e4e59-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180823 Grondins Volants (6).jpg,,FALSE, +N1,59537,sortie-151c2c59-f00d-416c-b388-f1ccc75e4e59,https://biolit.fr/sorties/sortie-151c2c59-f00d-416c-b388-f1ccc75e4e59/,Treza13,,8/23/2018 0:00,7.0000000,14.0000000,43.183360000000,6.592703000000,,Plage de Gigaro,42923,observation-151c2c59-f00d-416c-b388-f1ccc75e4e59-5,https://biolit.fr/observations/observation-151c2c59-f00d-416c-b388-f1ccc75e4e59-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180823 Grondins Volants (11).jpg,,FALSE, +N1,59538,sortie-cfb5b57e-acbc-4597-9f57-5ab998e5dfb0,https://biolit.fr/sorties/sortie-cfb5b57e-acbc-4597-9f57-5ab998e5dfb0/,Treza13,,8/18/2018 0:00,9.0000000,10.0000000,43.183516000000,6.594966000000,,Plage de Gigaro,42925,observation-cfb5b57e-acbc-4597-9f57-5ab998e5dfb0,https://biolit.fr/observations/observation-cfb5b57e-acbc-4597-9f57-5ab998e5dfb0/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180818 Raie Pastenague (1).jpg,,FALSE, +N1,59538,sortie-cfb5b57e-acbc-4597-9f57-5ab998e5dfb0,https://biolit.fr/sorties/sortie-cfb5b57e-acbc-4597-9f57-5ab998e5dfb0/,Treza13,,8/18/2018 0:00,9.0000000,10.0000000,43.183516000000,6.594966000000,,Plage de Gigaro,42927,observation-cfb5b57e-acbc-4597-9f57-5ab998e5dfb0-2,https://biolit.fr/observations/observation-cfb5b57e-acbc-4597-9f57-5ab998e5dfb0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180818 Raie Pastenague (2).jpg,,FALSE, +N1,59539,sortie-ec578044-73c5-48fd-abd2-c2814d3fd5a4,https://biolit.fr/sorties/sortie-ec578044-73c5-48fd-abd2-c2814d3fd5a4/,Treza13,,9/16/2018 0:00,10.0000000,14.0000000,43.013277000000,6.390024000000,,Parc National de Port Cros,42929,observation-ec578044-73c5-48fd-abd2-c2814d3fd5a4,https://biolit.fr/observations/observation-ec578044-73c5-48fd-abd2-c2814d3fd5a4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180808 Merle (1).jpg,,FALSE, +N1,59540,sortie-f8d165ab-a4f5-4f25-8770-2f838f9f24ba,https://biolit.fr/sorties/sortie-f8d165ab-a4f5-4f25-8770-2f838f9f24ba/,Treza13,,08/08/2018,11.0000000,14.0000000,42.989384000000,6.39683700000,,Parc National de Port Cros,42931,observation-f8d165ab-a4f5-4f25-8770-2f838f9f24ba,https://biolit.fr/observations/observation-f8d165ab-a4f5-4f25-8770-2f838f9f24ba/,Flabellina affinis,Flabelline mauve,,https://biolit.fr/wp-content/uploads/2023/07/20180808 Flabelline Mauve (1).jpg,,TRUE, +N1,59541,sortie-72947e94-5a3d-42f8-8fdd-e5661086cb29,https://biolit.fr/sorties/sortie-72947e94-5a3d-42f8-8fdd-e5661086cb29/,Treza13,,08/06/2018,7.0000000,14.0000000,43.185749000000,6.579937000000,,Plage de Sylvabelle,42933,observation-72947e94-5a3d-42f8-8fdd-e5661086cb29,https://biolit.fr/observations/observation-72947e94-5a3d-42f8-8fdd-e5661086cb29/,Sciaena umbra,Corb commun,,https://biolit.fr/wp-content/uploads/2023/07/20180806 Corb .jpg,,TRUE, +N1,59542,sortie-589e0d3c-89d8-4edf-9ce1-b25f89004fd8,https://biolit.fr/sorties/sortie-589e0d3c-89d8-4edf-9ce1-b25f89004fd8/,Les 4 Chats,,9/15/2018 0:00,9.0000000,11.0000000,43.239899000000,5.362366000000,,Plage du Bain des Dames 13008 Marseille,42935,observation-589e0d3c-89d8-4edf-9ce1-b25f89004fd8,https://biolit.fr/observations/observation-589e0d3c-89d8-4edf-9ce1-b25f89004fd8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2461-scaled.jpg,,FALSE, +N1,59542,sortie-589e0d3c-89d8-4edf-9ce1-b25f89004fd8,https://biolit.fr/sorties/sortie-589e0d3c-89d8-4edf-9ce1-b25f89004fd8/,Les 4 Chats,,9/15/2018 0:00,9.0000000,11.0000000,43.239899000000,5.362366000000,,Plage du Bain des Dames 13008 Marseille,42937,observation-589e0d3c-89d8-4edf-9ce1-b25f89004fd8-2,https://biolit.fr/observations/observation-589e0d3c-89d8-4edf-9ce1-b25f89004fd8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180915_100148104-scaled.jpg,,FALSE, +N1,59542,sortie-589e0d3c-89d8-4edf-9ce1-b25f89004fd8,https://biolit.fr/sorties/sortie-589e0d3c-89d8-4edf-9ce1-b25f89004fd8/,Les 4 Chats,,9/15/2018 0:00,9.0000000,11.0000000,43.239899000000,5.362366000000,,Plage du Bain des Dames 13008 Marseille,42939,observation-589e0d3c-89d8-4edf-9ce1-b25f89004fd8-3,https://biolit.fr/observations/observation-589e0d3c-89d8-4edf-9ce1-b25f89004fd8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180915_093604589-scaled.jpg,,FALSE, +N1,59542,sortie-589e0d3c-89d8-4edf-9ce1-b25f89004fd8,https://biolit.fr/sorties/sortie-589e0d3c-89d8-4edf-9ce1-b25f89004fd8/,Les 4 Chats,,9/15/2018 0:00,9.0000000,11.0000000,43.239899000000,5.362366000000,,Plage du Bain des Dames 13008 Marseille,42941,observation-589e0d3c-89d8-4edf-9ce1-b25f89004fd8-4,https://biolit.fr/observations/observation-589e0d3c-89d8-4edf-9ce1-b25f89004fd8-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180915_095226693-scaled.jpg,,FALSE, +N1,59542,sortie-589e0d3c-89d8-4edf-9ce1-b25f89004fd8,https://biolit.fr/sorties/sortie-589e0d3c-89d8-4edf-9ce1-b25f89004fd8/,Les 4 Chats,,9/15/2018 0:00,9.0000000,11.0000000,43.239899000000,5.362366000000,,Plage du Bain des Dames 13008 Marseille,42943,observation-589e0d3c-89d8-4edf-9ce1-b25f89004fd8-5,https://biolit.fr/observations/observation-589e0d3c-89d8-4edf-9ce1-b25f89004fd8-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20180916-WA0008.jpg,,FALSE, +N1,59542,sortie-589e0d3c-89d8-4edf-9ce1-b25f89004fd8,https://biolit.fr/sorties/sortie-589e0d3c-89d8-4edf-9ce1-b25f89004fd8/,Les 4 Chats,,9/15/2018 0:00,9.0000000,11.0000000,43.239899000000,5.362366000000,,Plage du Bain des Dames 13008 Marseille,42945,observation-589e0d3c-89d8-4edf-9ce1-b25f89004fd8-6,https://biolit.fr/observations/observation-589e0d3c-89d8-4edf-9ce1-b25f89004fd8-6/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20180916-WA0013.jpg,,TRUE, +N1,59543,sortie-7af7b67b-1a26-4796-ae73-b592a2b14d2b,https://biolit.fr/sorties/sortie-7af7b67b-1a26-4796-ae73-b592a2b14d2b/,Treza13,,09/09/2015,10.0000000,17.0000000,43.173173000000,6.605513000000,,Les trois caps,42947,observation-7af7b67b-1a26-4796-ae73-b592a2b14d2b,https://biolit.fr/observations/observation-7af7b67b-1a26-4796-ae73-b592a2b14d2b/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150909 Triptérygion Rouge .JPG,,FALSE, +N1,59544,sortie-31fb3119-10c0-4b5d-8c43-cc9f825f01f6,https://biolit.fr/sorties/sortie-31fb3119-10c0-4b5d-8c43-cc9f825f01f6/,Phil,,9/15/2018 0:00,11.0:25,11.0000000,47.83731100000,-4.176646000000,,Loctudy - Finistère,42949,observation-31fb3119-10c0-4b5d-8c43-cc9f825f01f6,https://biolit.fr/observations/observation-31fb3119-10c0-4b5d-8c43-cc9f825f01f6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120174.JPG,,FALSE, +N1,59544,sortie-31fb3119-10c0-4b5d-8c43-cc9f825f01f6,https://biolit.fr/sorties/sortie-31fb3119-10c0-4b5d-8c43-cc9f825f01f6/,Phil,,9/15/2018 0:00,11.0:25,11.0000000,47.83731100000,-4.176646000000,,Loctudy - Finistère,42951,observation-31fb3119-10c0-4b5d-8c43-cc9f825f01f6-2,https://biolit.fr/observations/observation-31fb3119-10c0-4b5d-8c43-cc9f825f01f6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120165.JPG,,FALSE, +N1,59544,sortie-31fb3119-10c0-4b5d-8c43-cc9f825f01f6,https://biolit.fr/sorties/sortie-31fb3119-10c0-4b5d-8c43-cc9f825f01f6/,Phil,,9/15/2018 0:00,11.0:25,11.0000000,47.83731100000,-4.176646000000,,Loctudy - Finistère,42953,observation-31fb3119-10c0-4b5d-8c43-cc9f825f01f6-3,https://biolit.fr/observations/observation-31fb3119-10c0-4b5d-8c43-cc9f825f01f6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120175.JPG,,FALSE, +N1,59544,sortie-31fb3119-10c0-4b5d-8c43-cc9f825f01f6,https://biolit.fr/sorties/sortie-31fb3119-10c0-4b5d-8c43-cc9f825f01f6/,Phil,,9/15/2018 0:00,11.0:25,11.0000000,47.83731100000,-4.176646000000,,Loctudy - Finistère,42955,observation-31fb3119-10c0-4b5d-8c43-cc9f825f01f6-4,https://biolit.fr/observations/observation-31fb3119-10c0-4b5d-8c43-cc9f825f01f6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120183.JPG,,FALSE, +N1,59544,sortie-31fb3119-10c0-4b5d-8c43-cc9f825f01f6,https://biolit.fr/sorties/sortie-31fb3119-10c0-4b5d-8c43-cc9f825f01f6/,Phil,,9/15/2018 0:00,11.0:25,11.0000000,47.83731100000,-4.176646000000,,Loctudy - Finistère,42957,observation-31fb3119-10c0-4b5d-8c43-cc9f825f01f6-5,https://biolit.fr/observations/observation-31fb3119-10c0-4b5d-8c43-cc9f825f01f6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120185.JPG,,FALSE, +N1,59545,sortie-a204c35a-c7aa-410e-9394-69656ecf5cea,https://biolit.fr/sorties/sortie-a204c35a-c7aa-410e-9394-69656ecf5cea/,Phil,,5/20/2018 0:00,14.0:55,15.0000000,47.797786000000,-4.176976000000,,Loctudy - Finistère,42959,observation-a204c35a-c7aa-410e-9394-69656ecf5cea,https://biolit.fr/observations/observation-a204c35a-c7aa-410e-9394-69656ecf5cea/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/P1110484_0.JPG,,TRUE, +N1,59545,sortie-a204c35a-c7aa-410e-9394-69656ecf5cea,https://biolit.fr/sorties/sortie-a204c35a-c7aa-410e-9394-69656ecf5cea/,Phil,,5/20/2018 0:00,14.0:55,15.0000000,47.797786000000,-4.176976000000,,Loctudy - Finistère,42961,observation-a204c35a-c7aa-410e-9394-69656ecf5cea-2,https://biolit.fr/observations/observation-a204c35a-c7aa-410e-9394-69656ecf5cea-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110480.JPG,,FALSE, +N1,59545,sortie-a204c35a-c7aa-410e-9394-69656ecf5cea,https://biolit.fr/sorties/sortie-a204c35a-c7aa-410e-9394-69656ecf5cea/,Phil,,5/20/2018 0:00,14.0:55,15.0000000,47.797786000000,-4.176976000000,,Loctudy - Finistère,42963,observation-a204c35a-c7aa-410e-9394-69656ecf5cea-3,https://biolit.fr/observations/observation-a204c35a-c7aa-410e-9394-69656ecf5cea-3/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1110492.JPG,,TRUE, +N1,59545,sortie-a204c35a-c7aa-410e-9394-69656ecf5cea,https://biolit.fr/sorties/sortie-a204c35a-c7aa-410e-9394-69656ecf5cea/,Phil,,5/20/2018 0:00,14.0:55,15.0000000,47.797786000000,-4.176976000000,,Loctudy - Finistère,42965,observation-a204c35a-c7aa-410e-9394-69656ecf5cea-4,https://biolit.fr/observations/observation-a204c35a-c7aa-410e-9394-69656ecf5cea-4/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1110488.JPG,,TRUE, +N1,59545,sortie-a204c35a-c7aa-410e-9394-69656ecf5cea,https://biolit.fr/sorties/sortie-a204c35a-c7aa-410e-9394-69656ecf5cea/,Phil,,5/20/2018 0:00,14.0:55,15.0000000,47.797786000000,-4.176976000000,,Loctudy - Finistère,42967,observation-a204c35a-c7aa-410e-9394-69656ecf5cea-5,https://biolit.fr/observations/observation-a204c35a-c7aa-410e-9394-69656ecf5cea-5/,Balanus crenatus,Balane crénelée,,https://biolit.fr/wp-content/uploads/2023/07/P1110497.JPG,,TRUE, +N1,59545,sortie-a204c35a-c7aa-410e-9394-69656ecf5cea,https://biolit.fr/sorties/sortie-a204c35a-c7aa-410e-9394-69656ecf5cea/,Phil,,5/20/2018 0:00,14.0:55,15.0000000,47.797786000000,-4.176976000000,,Loctudy - Finistère,42969,observation-a204c35a-c7aa-410e-9394-69656ecf5cea-6,https://biolit.fr/observations/observation-a204c35a-c7aa-410e-9394-69656ecf5cea-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110498.JPG,,FALSE, +N1,59546,sortie-3bb579d2-7698-464b-b8c1-27575dba722d,https://biolit.fr/sorties/sortie-3bb579d2-7698-464b-b8c1-27575dba722d/,Phil,,7/16/2018 0:00,12.0000000,12.0:35,47.80793700000,-3.713113000000,,Moêlan sur Mer - Finistère,42971,observation-3bb579d2-7698-464b-b8c1-27575dba722d,https://biolit.fr/observations/observation-3bb579d2-7698-464b-b8c1-27575dba722d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110704.JPG,,FALSE, +N1,59546,sortie-3bb579d2-7698-464b-b8c1-27575dba722d,https://biolit.fr/sorties/sortie-3bb579d2-7698-464b-b8c1-27575dba722d/,Phil,,7/16/2018 0:00,12.0000000,12.0:35,47.80793700000,-3.713113000000,,Moêlan sur Mer - Finistère,42973,observation-3bb579d2-7698-464b-b8c1-27575dba722d-2,https://biolit.fr/observations/observation-3bb579d2-7698-464b-b8c1-27575dba722d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110700_0.JPG,,FALSE, +N1,59546,sortie-3bb579d2-7698-464b-b8c1-27575dba722d,https://biolit.fr/sorties/sortie-3bb579d2-7698-464b-b8c1-27575dba722d/,Phil,,7/16/2018 0:00,12.0000000,12.0:35,47.80793700000,-3.713113000000,,Moêlan sur Mer - Finistère,42975,observation-3bb579d2-7698-464b-b8c1-27575dba722d-3,https://biolit.fr/observations/observation-3bb579d2-7698-464b-b8c1-27575dba722d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110699.JPG,,FALSE, +N1,59546,sortie-3bb579d2-7698-464b-b8c1-27575dba722d,https://biolit.fr/sorties/sortie-3bb579d2-7698-464b-b8c1-27575dba722d/,Phil,,7/16/2018 0:00,12.0000000,12.0:35,47.80793700000,-3.713113000000,,Moêlan sur Mer - Finistère,42977,observation-3bb579d2-7698-464b-b8c1-27575dba722d-4,https://biolit.fr/observations/observation-3bb579d2-7698-464b-b8c1-27575dba722d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110698_0.JPG,,FALSE, +N1,59546,sortie-3bb579d2-7698-464b-b8c1-27575dba722d,https://biolit.fr/sorties/sortie-3bb579d2-7698-464b-b8c1-27575dba722d/,Phil,,7/16/2018 0:00,12.0000000,12.0:35,47.80793700000,-3.713113000000,,Moêlan sur Mer - Finistère,42979,observation-3bb579d2-7698-464b-b8c1-27575dba722d-5,https://biolit.fr/observations/observation-3bb579d2-7698-464b-b8c1-27575dba722d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110697.JPG,,FALSE, +N1,59547,sortie-bf861478-8cea-4046-8666-b7fe3949dee6,https://biolit.fr/sorties/sortie-bf861478-8cea-4046-8666-b7fe3949dee6/,Nina Colin,,9/13/2018 0:00,9.0000000,11.0000000,48.642530000000,-2.072839000000,,Plage de Saint Enogat,42981,observation-bf861478-8cea-4046-8666-b7fe3949dee6,https://biolit.fr/observations/observation-bf861478-8cea-4046-8666-b7fe3949dee6/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_0539-scaled.jpg,,TRUE, +N1,59547,sortie-bf861478-8cea-4046-8666-b7fe3949dee6,https://biolit.fr/sorties/sortie-bf861478-8cea-4046-8666-b7fe3949dee6/,Nina Colin,,9/13/2018 0:00,9.0000000,11.0000000,48.642530000000,-2.072839000000,,Plage de Saint Enogat,42983,observation-bf861478-8cea-4046-8666-b7fe3949dee6-2,https://biolit.fr/observations/observation-bf861478-8cea-4046-8666-b7fe3949dee6-2/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0535-scaled.jpg,,TRUE, +N1,59547,sortie-bf861478-8cea-4046-8666-b7fe3949dee6,https://biolit.fr/sorties/sortie-bf861478-8cea-4046-8666-b7fe3949dee6/,Nina Colin,,9/13/2018 0:00,9.0000000,11.0000000,48.642530000000,-2.072839000000,,Plage de Saint Enogat,42985,observation-bf861478-8cea-4046-8666-b7fe3949dee6-3,https://biolit.fr/observations/observation-bf861478-8cea-4046-8666-b7fe3949dee6-3/,Aplidium elegans,Fraise de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0533-scaled.jpg,,TRUE, +N1,59547,sortie-bf861478-8cea-4046-8666-b7fe3949dee6,https://biolit.fr/sorties/sortie-bf861478-8cea-4046-8666-b7fe3949dee6/,Nina Colin,,9/13/2018 0:00,9.0000000,11.0000000,48.642530000000,-2.072839000000,,Plage de Saint Enogat,42987,observation-bf861478-8cea-4046-8666-b7fe3949dee6-4,https://biolit.fr/observations/observation-bf861478-8cea-4046-8666-b7fe3949dee6-4/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1390-scaled.jpg,,TRUE, +N1,59547,sortie-bf861478-8cea-4046-8666-b7fe3949dee6,https://biolit.fr/sorties/sortie-bf861478-8cea-4046-8666-b7fe3949dee6/,Nina Colin,,9/13/2018 0:00,9.0000000,11.0000000,48.642530000000,-2.072839000000,,Plage de Saint Enogat,42989,observation-bf861478-8cea-4046-8666-b7fe3949dee6-5,https://biolit.fr/observations/observation-bf861478-8cea-4046-8666-b7fe3949dee6-5/,Haliclona (Haliclona) simulans,Eponge tubes de fer,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1388-scaled.jpg,,TRUE, +N1,59547,sortie-bf861478-8cea-4046-8666-b7fe3949dee6,https://biolit.fr/sorties/sortie-bf861478-8cea-4046-8666-b7fe3949dee6/,Nina Colin,,9/13/2018 0:00,9.0000000,11.0000000,48.642530000000,-2.072839000000,,Plage de Saint Enogat,42991,observation-bf861478-8cea-4046-8666-b7fe3949dee6-6,https://biolit.fr/observations/observation-bf861478-8cea-4046-8666-b7fe3949dee6-6/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1385-scaled.jpg,,TRUE, +N1,59547,sortie-bf861478-8cea-4046-8666-b7fe3949dee6,https://biolit.fr/sorties/sortie-bf861478-8cea-4046-8666-b7fe3949dee6/,Nina Colin,,9/13/2018 0:00,9.0000000,11.0000000,48.642530000000,-2.072839000000,,Plage de Saint Enogat,42993,observation-bf861478-8cea-4046-8666-b7fe3949dee6-7,https://biolit.fr/observations/observation-bf861478-8cea-4046-8666-b7fe3949dee6-7/,Botrylloides diegensis,Botrylle de San Diego,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1378-scaled.jpg,,TRUE, +N1,59547,sortie-bf861478-8cea-4046-8666-b7fe3949dee6,https://biolit.fr/sorties/sortie-bf861478-8cea-4046-8666-b7fe3949dee6/,Nina Colin,,9/13/2018 0:00,9.0000000,11.0000000,48.642530000000,-2.072839000000,,Plage de Saint Enogat,42995,observation-bf861478-8cea-4046-8666-b7fe3949dee6-8,https://biolit.fr/observations/observation-bf861478-8cea-4046-8666-b7fe3949dee6-8/,Hymeniacidon perlevis,Eponge-miette de pain,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1386-scaled.jpg,,TRUE, +N1,59547,sortie-bf861478-8cea-4046-8666-b7fe3949dee6,https://biolit.fr/sorties/sortie-bf861478-8cea-4046-8666-b7fe3949dee6/,Nina Colin,,9/13/2018 0:00,9.0000000,11.0000000,48.642530000000,-2.072839000000,,Plage de Saint Enogat,42997,observation-bf861478-8cea-4046-8666-b7fe3949dee6-9,https://biolit.fr/observations/observation-bf861478-8cea-4046-8666-b7fe3949dee6-9/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1369-scaled.jpg,,TRUE, +N1,59547,sortie-bf861478-8cea-4046-8666-b7fe3949dee6,https://biolit.fr/sorties/sortie-bf861478-8cea-4046-8666-b7fe3949dee6/,Nina Colin,,9/13/2018 0:00,9.0000000,11.0000000,48.642530000000,-2.072839000000,,Plage de Saint Enogat,42999,observation-bf861478-8cea-4046-8666-b7fe3949dee6-10,https://biolit.fr/observations/observation-bf861478-8cea-4046-8666-b7fe3949dee6-10/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1356-scaled.jpg,,TRUE, +N1,59547,sortie-bf861478-8cea-4046-8666-b7fe3949dee6,https://biolit.fr/sorties/sortie-bf861478-8cea-4046-8666-b7fe3949dee6/,Nina Colin,,9/13/2018 0:00,9.0000000,11.0000000,48.642530000000,-2.072839000000,,Plage de Saint Enogat,43001,observation-bf861478-8cea-4046-8666-b7fe3949dee6-11,https://biolit.fr/observations/observation-bf861478-8cea-4046-8666-b7fe3949dee6-11/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1350-scaled.jpg,,TRUE, +N1,59547,sortie-bf861478-8cea-4046-8666-b7fe3949dee6,https://biolit.fr/sorties/sortie-bf861478-8cea-4046-8666-b7fe3949dee6/,Nina Colin,,9/13/2018 0:00,9.0000000,11.0000000,48.642530000000,-2.072839000000,,Plage de Saint Enogat,43003,observation-bf861478-8cea-4046-8666-b7fe3949dee6-12,https://biolit.fr/observations/observation-bf861478-8cea-4046-8666-b7fe3949dee6-12/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1341-scaled.jpg,,TRUE, +N1,59548,sortie-098645cc-ee5d-45e6-b450-386564404849,https://biolit.fr/sorties/sortie-098645cc-ee5d-45e6-b450-386564404849/,Phil,,8/24/2018 0:00,13.0000000,13.000005,48.032479000000,-4.848005000000,,Île-de-Sein - Finistère,43005,observation-098645cc-ee5d-45e6-b450-386564404849,https://biolit.fr/observations/observation-098645cc-ee5d-45e6-b450-386564404849/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120072_0.JPG,,FALSE, +N1,59548,sortie-098645cc-ee5d-45e6-b450-386564404849,https://biolit.fr/sorties/sortie-098645cc-ee5d-45e6-b450-386564404849/,Phil,,8/24/2018 0:00,13.0000000,13.000005,48.032479000000,-4.848005000000,,Île-de-Sein - Finistère,43007,observation-098645cc-ee5d-45e6-b450-386564404849-2,https://biolit.fr/observations/observation-098645cc-ee5d-45e6-b450-386564404849-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120074_0.JPG,,FALSE, +N1,59548,sortie-098645cc-ee5d-45e6-b450-386564404849,https://biolit.fr/sorties/sortie-098645cc-ee5d-45e6-b450-386564404849/,Phil,,8/24/2018 0:00,13.0000000,13.000005,48.032479000000,-4.848005000000,,Île-de-Sein - Finistère,43009,observation-098645cc-ee5d-45e6-b450-386564404849-3,https://biolit.fr/observations/observation-098645cc-ee5d-45e6-b450-386564404849-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120075.JPG,,FALSE, +N1,59548,sortie-098645cc-ee5d-45e6-b450-386564404849,https://biolit.fr/sorties/sortie-098645cc-ee5d-45e6-b450-386564404849/,Phil,,8/24/2018 0:00,13.0000000,13.000005,48.032479000000,-4.848005000000,,Île-de-Sein - Finistère,43011,observation-098645cc-ee5d-45e6-b450-386564404849-4,https://biolit.fr/observations/observation-098645cc-ee5d-45e6-b450-386564404849-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120076.JPG,,FALSE, +N1,59548,sortie-098645cc-ee5d-45e6-b450-386564404849,https://biolit.fr/sorties/sortie-098645cc-ee5d-45e6-b450-386564404849/,Phil,,8/24/2018 0:00,13.0000000,13.000005,48.032479000000,-4.848005000000,,Île-de-Sein - Finistère,43013,observation-098645cc-ee5d-45e6-b450-386564404849-5,https://biolit.fr/observations/observation-098645cc-ee5d-45e6-b450-386564404849-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120077.JPG,,FALSE, +N1,59548,sortie-098645cc-ee5d-45e6-b450-386564404849,https://biolit.fr/sorties/sortie-098645cc-ee5d-45e6-b450-386564404849/,Phil,,8/24/2018 0:00,13.0000000,13.000005,48.032479000000,-4.848005000000,,Île-de-Sein - Finistère,43015,observation-098645cc-ee5d-45e6-b450-386564404849-6,https://biolit.fr/observations/observation-098645cc-ee5d-45e6-b450-386564404849-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120078.JPG,,FALSE, +N1,59549,sortie-248ca4c0-c4e9-4e1f-a014-824f59762ec6,https://biolit.fr/sorties/sortie-248ca4c0-c4e9-4e1f-a014-824f59762ec6/,Phil,,09/08/2018,12.000005,12.0000000,47.869404000000,-3.912195000000,,Concarneau - Finistère,43017,observation-248ca4c0-c4e9-4e1f-a014-824f59762ec6,https://biolit.fr/observations/observation-248ca4c0-c4e9-4e1f-a014-824f59762ec6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180908_120424.jpg,,FALSE, +N1,59549,sortie-248ca4c0-c4e9-4e1f-a014-824f59762ec6,https://biolit.fr/sorties/sortie-248ca4c0-c4e9-4e1f-a014-824f59762ec6/,Phil,,09/08/2018,12.000005,12.0000000,47.869404000000,-3.912195000000,,Concarneau - Finistère,43019,observation-248ca4c0-c4e9-4e1f-a014-824f59762ec6-2,https://biolit.fr/observations/observation-248ca4c0-c4e9-4e1f-a014-824f59762ec6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180908_120527.jpg,,FALSE, +N1,59549,sortie-248ca4c0-c4e9-4e1f-a014-824f59762ec6,https://biolit.fr/sorties/sortie-248ca4c0-c4e9-4e1f-a014-824f59762ec6/,Phil,,09/08/2018,12.000005,12.0000000,47.869404000000,-3.912195000000,,Concarneau - Finistère,43021,observation-248ca4c0-c4e9-4e1f-a014-824f59762ec6-3,https://biolit.fr/observations/observation-248ca4c0-c4e9-4e1f-a014-824f59762ec6-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180908_120642.jpg,,TRUE, +N1,59549,sortie-248ca4c0-c4e9-4e1f-a014-824f59762ec6,https://biolit.fr/sorties/sortie-248ca4c0-c4e9-4e1f-a014-824f59762ec6/,Phil,,09/08/2018,12.000005,12.0000000,47.869404000000,-3.912195000000,,Concarneau - Finistère,43023,observation-248ca4c0-c4e9-4e1f-a014-824f59762ec6-4,https://biolit.fr/observations/observation-248ca4c0-c4e9-4e1f-a014-824f59762ec6-4/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/20180908_121030.jpg,,TRUE, +N1,59550,sortie-14cd024e-fdb3-422f-8ea4-b45cbc609192,https://biolit.fr/sorties/sortie-14cd024e-fdb3-422f-8ea4-b45cbc609192/,Nina Colin,,09/11/2018,10.0000000,12.0000000,48.635341000000,-2.141286000000,,Plage du Port Hue,43025,observation-14cd024e-fdb3-422f-8ea4-b45cbc609192,https://biolit.fr/observations/observation-14cd024e-fdb3-422f-8ea4-b45cbc609192/,,,,https://biolit.fr/wp-content/uploads/2023/07/anemone-scaled.jpg,,FALSE, +N1,59550,sortie-14cd024e-fdb3-422f-8ea4-b45cbc609192,https://biolit.fr/sorties/sortie-14cd024e-fdb3-422f-8ea4-b45cbc609192/,Nina Colin,,09/11/2018,10.0000000,12.0000000,48.635341000000,-2.141286000000,,Plage du Port Hue,43026,observation-14cd024e-fdb3-422f-8ea4-b45cbc609192-2,https://biolit.fr/observations/observation-14cd024e-fdb3-422f-8ea4-b45cbc609192-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/file-3-scaled.jpeg,,FALSE, +N1,59551,sortie-c51f55c0-336f-46b9-9c8d-32fd75cbbdcd,https://biolit.fr/sorties/sortie-c51f55c0-336f-46b9-9c8d-32fd75cbbdcd/,Phil,,7/16/2018 0:00,12.0:15,12.0:25,47.8087190000,-3.712224000000,,Moélan sur Mer - Finistère,43028,observation-c51f55c0-336f-46b9-9c8d-32fd75cbbdcd,https://biolit.fr/observations/observation-c51f55c0-336f-46b9-9c8d-32fd75cbbdcd/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110682.JPG,,FALSE, +N1,59551,sortie-c51f55c0-336f-46b9-9c8d-32fd75cbbdcd,https://biolit.fr/sorties/sortie-c51f55c0-336f-46b9-9c8d-32fd75cbbdcd/,Phil,,7/16/2018 0:00,12.0:15,12.0:25,47.8087190000,-3.712224000000,,Moélan sur Mer - Finistère,43030,observation-c51f55c0-336f-46b9-9c8d-32fd75cbbdcd-2,https://biolit.fr/observations/observation-c51f55c0-336f-46b9-9c8d-32fd75cbbdcd-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110683_0.JPG,,FALSE, +N1,59551,sortie-c51f55c0-336f-46b9-9c8d-32fd75cbbdcd,https://biolit.fr/sorties/sortie-c51f55c0-336f-46b9-9c8d-32fd75cbbdcd/,Phil,,7/16/2018 0:00,12.0:15,12.0:25,47.8087190000,-3.712224000000,,Moélan sur Mer - Finistère,43032,observation-c51f55c0-336f-46b9-9c8d-32fd75cbbdcd-3,https://biolit.fr/observations/observation-c51f55c0-336f-46b9-9c8d-32fd75cbbdcd-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110687.JPG,,FALSE, +N1,59551,sortie-c51f55c0-336f-46b9-9c8d-32fd75cbbdcd,https://biolit.fr/sorties/sortie-c51f55c0-336f-46b9-9c8d-32fd75cbbdcd/,Phil,,7/16/2018 0:00,12.0:15,12.0:25,47.8087190000,-3.712224000000,,Moélan sur Mer - Finistère,43034,observation-c51f55c0-336f-46b9-9c8d-32fd75cbbdcd-4,https://biolit.fr/observations/observation-c51f55c0-336f-46b9-9c8d-32fd75cbbdcd-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110694_0.JPG,,FALSE, +N1,59552,sortie-7521c793-1b5b-4133-8dbf-5dbe48f5c298,https://biolit.fr/sorties/sortie-7521c793-1b5b-4133-8dbf-5dbe48f5c298/,Phil,,7/22/2018 0:00,11.0000000,11.0000000,47.709081000000,-3.995148000000,,Fouesnant - Finistère,43036,observation-7521c793-1b5b-4133-8dbf-5dbe48f5c298,https://biolit.fr/observations/observation-7521c793-1b5b-4133-8dbf-5dbe48f5c298/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110878.JPG,,FALSE, +N1,59552,sortie-7521c793-1b5b-4133-8dbf-5dbe48f5c298,https://biolit.fr/sorties/sortie-7521c793-1b5b-4133-8dbf-5dbe48f5c298/,Phil,,7/22/2018 0:00,11.0000000,11.0000000,47.709081000000,-3.995148000000,,Fouesnant - Finistère,43038,observation-7521c793-1b5b-4133-8dbf-5dbe48f5c298-2,https://biolit.fr/observations/observation-7521c793-1b5b-4133-8dbf-5dbe48f5c298-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110879.JPG,,FALSE, +N1,59553,sortie-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b,https://biolit.fr/sorties/sortie-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b/,Phil,,5/20/2018 0:00,14.0:35,14.0000000,47.798082000000,-4.17883800000,,Loctudy - Finistère,43040,observation-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b,https://biolit.fr/observations/observation-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110473.JPG,,TRUE, +N1,59553,sortie-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b,https://biolit.fr/sorties/sortie-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b/,Phil,,5/20/2018 0:00,14.0:35,14.0000000,47.798082000000,-4.17883800000,,Loctudy - Finistère,43042,observation-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b-2,https://biolit.fr/observations/observation-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110474.JPG,,FALSE, +N1,59553,sortie-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b,https://biolit.fr/sorties/sortie-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b/,Phil,,5/20/2018 0:00,14.0:35,14.0000000,47.798082000000,-4.17883800000,,Loctudy - Finistère,43044,observation-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b-3,https://biolit.fr/observations/observation-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b-3/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1110475.JPG,,TRUE, +N1,59553,sortie-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b,https://biolit.fr/sorties/sortie-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b/,Phil,,5/20/2018 0:00,14.0:35,14.0000000,47.798082000000,-4.17883800000,,Loctudy - Finistère,43046,observation-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b-4,https://biolit.fr/observations/observation-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110476.JPG,,FALSE, +N1,59553,sortie-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b,https://biolit.fr/sorties/sortie-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b/,Phil,,5/20/2018 0:00,14.0:35,14.0000000,47.798082000000,-4.17883800000,,Loctudy - Finistère,43048,observation-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b-5,https://biolit.fr/observations/observation-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110477.JPG,,FALSE, +N1,59553,sortie-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b,https://biolit.fr/sorties/sortie-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b/,Phil,,5/20/2018 0:00,14.0:35,14.0000000,47.798082000000,-4.17883800000,,Loctudy - Finistère,43050,observation-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b-6,https://biolit.fr/observations/observation-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110478.JPG,,FALSE, +N1,59554,sortie-e55c97f3-c68c-4c92-b7d3-66d210f63027,https://biolit.fr/sorties/sortie-e55c97f3-c68c-4c92-b7d3-66d210f63027/,Phil,,09/09/2018,11.0:55,12.0000000,47.869568000000,-3.912172000000,,Concarneau - Finistère,43052,observation-e55c97f3-c68c-4c92-b7d3-66d210f63027,https://biolit.fr/observations/observation-e55c97f3-c68c-4c92-b7d3-66d210f63027/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180908_115837.jpg,,FALSE, +N1,59554,sortie-e55c97f3-c68c-4c92-b7d3-66d210f63027,https://biolit.fr/sorties/sortie-e55c97f3-c68c-4c92-b7d3-66d210f63027/,Phil,,09/09/2018,11.0:55,12.0000000,47.869568000000,-3.912172000000,,Concarneau - Finistère,43054,observation-e55c97f3-c68c-4c92-b7d3-66d210f63027-2,https://biolit.fr/observations/observation-e55c97f3-c68c-4c92-b7d3-66d210f63027-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180908_115842.jpg,,FALSE, +N1,59554,sortie-e55c97f3-c68c-4c92-b7d3-66d210f63027,https://biolit.fr/sorties/sortie-e55c97f3-c68c-4c92-b7d3-66d210f63027/,Phil,,09/09/2018,11.0:55,12.0000000,47.869568000000,-3.912172000000,,Concarneau - Finistère,43056,observation-e55c97f3-c68c-4c92-b7d3-66d210f63027-3,https://biolit.fr/observations/observation-e55c97f3-c68c-4c92-b7d3-66d210f63027-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180908_115902.jpg,,FALSE, +N1,59554,sortie-e55c97f3-c68c-4c92-b7d3-66d210f63027,https://biolit.fr/sorties/sortie-e55c97f3-c68c-4c92-b7d3-66d210f63027/,Phil,,09/09/2018,11.0:55,12.0000000,47.869568000000,-3.912172000000,,Concarneau - Finistère,43058,observation-e55c97f3-c68c-4c92-b7d3-66d210f63027-4,https://biolit.fr/observations/observation-e55c97f3-c68c-4c92-b7d3-66d210f63027-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180908_115943.jpg,,FALSE, +N1,59554,sortie-e55c97f3-c68c-4c92-b7d3-66d210f63027,https://biolit.fr/sorties/sortie-e55c97f3-c68c-4c92-b7d3-66d210f63027/,Phil,,09/09/2018,11.0:55,12.0000000,47.869568000000,-3.912172000000,,Concarneau - Finistère,43060,observation-e55c97f3-c68c-4c92-b7d3-66d210f63027-5,https://biolit.fr/observations/observation-e55c97f3-c68c-4c92-b7d3-66d210f63027-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180908_115959.jpg,,FALSE, +N1,59555,sortie-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f,https://biolit.fr/sorties/sortie-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f/,Phil,,8/24/2018 0:00,12.0:55,13.0000000,48.032984000000,-4.848777000000,,Île de Sein - Finistère,43062,observation-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f,https://biolit.fr/observations/observation-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/P1120067.JPG,,TRUE, +N1,59555,sortie-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f,https://biolit.fr/sorties/sortie-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f/,Phil,,8/24/2018 0:00,12.0:55,13.0000000,48.032984000000,-4.848777000000,,Île de Sein - Finistère,43064,observation-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f-2,https://biolit.fr/observations/observation-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120068.JPG,,FALSE, +N1,59555,sortie-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f,https://biolit.fr/sorties/sortie-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f/,Phil,,8/24/2018 0:00,12.0:55,13.0000000,48.032984000000,-4.848777000000,,Île de Sein - Finistère,43066,observation-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f-3,https://biolit.fr/observations/observation-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120065.JPG,,FALSE, +N1,59555,sortie-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f,https://biolit.fr/sorties/sortie-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f/,Phil,,8/24/2018 0:00,12.0:55,13.0000000,48.032984000000,-4.848777000000,,Île de Sein - Finistère,43068,observation-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f-4,https://biolit.fr/observations/observation-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1120069_0.JPG,,TRUE, +N1,59555,sortie-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f,https://biolit.fr/sorties/sortie-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f/,Phil,,8/24/2018 0:00,12.0:55,13.0000000,48.032984000000,-4.848777000000,,Île de Sein - Finistère,43070,observation-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f-5,https://biolit.fr/observations/observation-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f-5/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/P1120070_0.JPG,,TRUE, +N1,59555,sortie-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f,https://biolit.fr/sorties/sortie-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f/,Phil,,8/24/2018 0:00,12.0:55,13.0000000,48.032984000000,-4.848777000000,,Île de Sein - Finistère,43072,observation-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f-6,https://biolit.fr/observations/observation-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120071_0.JPG,,FALSE, +N1,59556,sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39,https://biolit.fr/sorties/sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39/,Guillaume D,,8/30/2018 0:00,13.0000000,15.0000000,46.110301000000,-1.139030000000,,"Angoulins, Pointe du Chay",43074,observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39,https://biolit.fr/observations/observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180830_134354-scaled.jpg,,TRUE, +N1,59556,sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39,https://biolit.fr/sorties/sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39/,Guillaume D,,8/30/2018 0:00,13.0000000,15.0000000,46.110301000000,-1.139030000000,,"Angoulins, Pointe du Chay",43076,observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39-2,https://biolit.fr/observations/observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180830_135544-scaled.jpg,,FALSE, +N1,59556,sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39,https://biolit.fr/sorties/sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39/,Guillaume D,,8/30/2018 0:00,13.0000000,15.0000000,46.110301000000,-1.139030000000,,"Angoulins, Pointe du Chay",43078,observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39-3,https://biolit.fr/observations/observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180830_142848-scaled.jpg,,TRUE, +N1,59556,sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39,https://biolit.fr/sorties/sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39/,Guillaume D,,8/30/2018 0:00,13.0000000,15.0000000,46.110301000000,-1.139030000000,,"Angoulins, Pointe du Chay",43080,observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39-4,https://biolit.fr/observations/observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39-4/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180830_142916-scaled.jpg,,TRUE, +N1,59556,sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39,https://biolit.fr/sorties/sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39/,Guillaume D,,8/30/2018 0:00,13.0000000,15.0000000,46.110301000000,-1.139030000000,,"Angoulins, Pointe du Chay",43082,observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39-5,https://biolit.fr/observations/observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39-5/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180830_143118_5mo.jpg,,TRUE, +N1,59556,sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39,https://biolit.fr/sorties/sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39/,Guillaume D,,8/30/2018 0:00,13.0000000,15.0000000,46.110301000000,-1.139030000000,,"Angoulins, Pointe du Chay",43084,observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39-6,https://biolit.fr/observations/observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39-6/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180830_143143-scaled.jpg,,TRUE, +N1,59556,sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39,https://biolit.fr/sorties/sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39/,Guillaume D,,8/30/2018 0:00,13.0000000,15.0000000,46.110301000000,-1.139030000000,,"Angoulins, Pointe du Chay",43086,observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39-7,https://biolit.fr/observations/observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180830_144916-scaled.jpg,,FALSE, +N1,59556,sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39,https://biolit.fr/sorties/sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39/,Guillaume D,,8/30/2018 0:00,13.0000000,15.0000000,46.110301000000,-1.139030000000,,"Angoulins, Pointe du Chay",43088,observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39-8,https://biolit.fr/observations/observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180830_145418-scaled.jpg,,FALSE, +N1,59556,sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39,https://biolit.fr/sorties/sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39/,Guillaume D,,8/30/2018 0:00,13.0000000,15.0000000,46.110301000000,-1.139030000000,,"Angoulins, Pointe du Chay",43090,observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39-9,https://biolit.fr/observations/observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180830_145745-scaled.jpg,,FALSE, +N1,59557,sortie-83b646b3-81f3-4445-b569-efa9ab2ebc57,https://biolit.fr/sorties/sortie-83b646b3-81f3-4445-b569-efa9ab2ebc57/,Environat,,09/01/2018,14.0000000,15.0000000,45.604166000000,-1.013148000000,,ile aux mouettes,43092,observation-83b646b3-81f3-4445-b569-efa9ab2ebc57,https://biolit.fr/observations/observation-83b646b3-81f3-4445-b569-efa9ab2ebc57/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0001_1.JPG,,FALSE, +N1,59558,sortie-81c02543-4b31-4964-8741-404f347b9a06,https://biolit.fr/sorties/sortie-81c02543-4b31-4964-8741-404f347b9a06/,Totom,,8/30/2018 0:00,15.0000000,17.0000000,47.276382000000,-2.49446600000,,"Batz sur mer (44740), plage valentin",43094,observation-81c02543-4b31-4964-8741-404f347b9a06,https://biolit.fr/observations/observation-81c02543-4b31-4964-8741-404f347b9a06/,Atelecyclus undecimdentatus,Grand crabe circulaire,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180830_170213-scaled.jpg,,TRUE, +N1,59558,sortie-81c02543-4b31-4964-8741-404f347b9a06,https://biolit.fr/sorties/sortie-81c02543-4b31-4964-8741-404f347b9a06/,Totom,,8/30/2018 0:00,15.0000000,17.0000000,47.276382000000,-2.49446600000,,"Batz sur mer (44740), plage valentin",43096,observation-81c02543-4b31-4964-8741-404f347b9a06-2,https://biolit.fr/observations/observation-81c02543-4b31-4964-8741-404f347b9a06-2/,Atelecyclus undecimdentatus,Grand crabe circulaire,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180830_170219-scaled.jpg,,TRUE, +N1,59558,sortie-81c02543-4b31-4964-8741-404f347b9a06,https://biolit.fr/sorties/sortie-81c02543-4b31-4964-8741-404f347b9a06/,Totom,,8/30/2018 0:00,15.0000000,17.0000000,47.276382000000,-2.49446600000,,"Batz sur mer (44740), plage valentin",43098,observation-81c02543-4b31-4964-8741-404f347b9a06-3,https://biolit.fr/observations/observation-81c02543-4b31-4964-8741-404f347b9a06-3/,Atelecyclus undecimdentatus,Grand crabe circulaire,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180830_170230-scaled.jpg,,TRUE, +N1,59558,sortie-81c02543-4b31-4964-8741-404f347b9a06,https://biolit.fr/sorties/sortie-81c02543-4b31-4964-8741-404f347b9a06/,Totom,,8/30/2018 0:00,15.0000000,17.0000000,47.276382000000,-2.49446600000,,"Batz sur mer (44740), plage valentin",43100,observation-81c02543-4b31-4964-8741-404f347b9a06-4,https://biolit.fr/observations/observation-81c02543-4b31-4964-8741-404f347b9a06-4/,Atelecyclus undecimdentatus,Grand crabe circulaire,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180830_170242_1-scaled.jpg,,TRUE, +N1,59559,sortie-22a8a38f-2d7c-40d0-adfb-e87d12017843,https://biolit.fr/sorties/sortie-22a8a38f-2d7c-40d0-adfb-e87d12017843/,Romuald VIALE - EXPENATURE,,8/30/2018 0:00,9.0000000,11.0000000,43.162680000000,5.614512000000,,La Piscine - Ile Verte,43102,observation-22a8a38f-2d7c-40d0-adfb-e87d12017843,https://biolit.fr/observations/observation-22a8a38f-2d7c-40d0-adfb-e87d12017843/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8292881.JPG,,FALSE, +N1,59559,sortie-22a8a38f-2d7c-40d0-adfb-e87d12017843,https://biolit.fr/sorties/sortie-22a8a38f-2d7c-40d0-adfb-e87d12017843/,Romuald VIALE - EXPENATURE,,8/30/2018 0:00,9.0000000,11.0000000,43.162680000000,5.614512000000,,La Piscine - Ile Verte,43104,observation-22a8a38f-2d7c-40d0-adfb-e87d12017843-2,https://biolit.fr/observations/observation-22a8a38f-2d7c-40d0-adfb-e87d12017843-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8292880.JPG,,FALSE, +N1,59559,sortie-22a8a38f-2d7c-40d0-adfb-e87d12017843,https://biolit.fr/sorties/sortie-22a8a38f-2d7c-40d0-adfb-e87d12017843/,Romuald VIALE - EXPENATURE,,8/30/2018 0:00,9.0000000,11.0000000,43.162680000000,5.614512000000,,La Piscine - Ile Verte,43106,observation-22a8a38f-2d7c-40d0-adfb-e87d12017843-3,https://biolit.fr/observations/observation-22a8a38f-2d7c-40d0-adfb-e87d12017843-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8292876.JPG,,FALSE, +N1,59559,sortie-22a8a38f-2d7c-40d0-adfb-e87d12017843,https://biolit.fr/sorties/sortie-22a8a38f-2d7c-40d0-adfb-e87d12017843/,Romuald VIALE - EXPENATURE,,8/30/2018 0:00,9.0000000,11.0000000,43.162680000000,5.614512000000,,La Piscine - Ile Verte,43108,observation-22a8a38f-2d7c-40d0-adfb-e87d12017843-4,https://biolit.fr/observations/observation-22a8a38f-2d7c-40d0-adfb-e87d12017843-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8292878.JPG,,FALSE, +N1,59560,sortie-720f63f2-4541-4e34-a626-c0b6efd06377,https://biolit.fr/sorties/sortie-720f63f2-4541-4e34-a626-c0b6efd06377/,Romuald VIALE - EXPENATURE,,8/30/2018 0:00,9.0000000,11.0000000,43.183363000000,5.620820000000,,Zone de mouillage Plages La Ciotat,43110,observation-720f63f2-4541-4e34-a626-c0b6efd06377,https://biolit.fr/observations/observation-720f63f2-4541-4e34-a626-c0b6efd06377/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8282850_0.JPG,,FALSE, +N1,59561,sortie-72b1e34b-3a37-415e-b950-498c7ddf3944,https://biolit.fr/sorties/sortie-72b1e34b-3a37-415e-b950-498c7ddf3944/,Romuald VIALE - EXPENATURE,,8/22/2018 0:00,11.0000000,11.0:25,43.159447000000,5.620423000000,,La Ciotat Calanque de Synerolles,43112,observation-72b1e34b-3a37-415e-b950-498c7ddf3944,https://biolit.fr/observations/observation-72b1e34b-3a37-415e-b950-498c7ddf3944/,,,,https://biolit.fr/wp-content/uploads/2023/07/KIMG0041.jpg,,FALSE, +N1,59562,sortie-4820779e-3e4f-45e2-9714-6285e9c7c140,https://biolit.fr/sorties/sortie-4820779e-3e4f-45e2-9714-6285e9c7c140/,Environat,,8/27/2018 0:00,11.0000000,12.0:25,45.630417000000,-1.064612000000,,plage de Saint Sordelin,43114,observation-4820779e-3e4f-45e2-9714-6285e9c7c140,https://biolit.fr/observations/observation-4820779e-3e4f-45e2-9714-6285e9c7c140/,,,,https://biolit.fr/wp-content/uploads/2023/07/27-08bd1.JPG,,FALSE, +N1,59562,sortie-4820779e-3e4f-45e2-9714-6285e9c7c140,https://biolit.fr/sorties/sortie-4820779e-3e4f-45e2-9714-6285e9c7c140/,Environat,,8/27/2018 0:00,11.0000000,12.0:25,45.630417000000,-1.064612000000,,plage de Saint Sordelin,43116,observation-4820779e-3e4f-45e2-9714-6285e9c7c140-2,https://biolit.fr/observations/observation-4820779e-3e4f-45e2-9714-6285e9c7c140-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/27-08bd2.JPG,,FALSE, +N1,59563,sortie-3af3c9d5-f0a3-4079-8835-a1ab48065f8b,https://biolit.fr/sorties/sortie-3af3c9d5-f0a3-4079-8835-a1ab48065f8b/,Nina Colin,,8/26/2018 0:00,14.0000000,16.0000000,48.641802000000,-2.07314500000,,Plage de Saint Enogat,43118,observation-3af3c9d5-f0a3-4079-8835-a1ab48065f8b,https://biolit.fr/observations/observation-3af3c9d5-f0a3-4079-8835-a1ab48065f8b/,Aplidium pallidum,Flocon pédonculé blanc,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0409-scaled.jpg,,TRUE, +N1,59563,sortie-3af3c9d5-f0a3-4079-8835-a1ab48065f8b,https://biolit.fr/sorties/sortie-3af3c9d5-f0a3-4079-8835-a1ab48065f8b/,Nina Colin,,8/26/2018 0:00,14.0000000,16.0000000,48.641802000000,-2.07314500000,,Plage de Saint Enogat,43120,observation-3af3c9d5-f0a3-4079-8835-a1ab48065f8b-2,https://biolit.fr/observations/observation-3af3c9d5-f0a3-4079-8835-a1ab48065f8b-2/,Hymeniacidon perlevis,Eponge-miette de pain,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0440-scaled.jpg,,TRUE, +N1,59563,sortie-3af3c9d5-f0a3-4079-8835-a1ab48065f8b,https://biolit.fr/sorties/sortie-3af3c9d5-f0a3-4079-8835-a1ab48065f8b/,Nina Colin,,8/26/2018 0:00,14.0000000,16.0000000,48.641802000000,-2.07314500000,,Plage de Saint Enogat,43122,observation-3af3c9d5-f0a3-4079-8835-a1ab48065f8b-3,https://biolit.fr/observations/observation-3af3c9d5-f0a3-4079-8835-a1ab48065f8b-3/,Aplidium punctum,Flocon pédonculé orange,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0422-scaled.jpg,,TRUE, +N1,59563,sortie-3af3c9d5-f0a3-4079-8835-a1ab48065f8b,https://biolit.fr/sorties/sortie-3af3c9d5-f0a3-4079-8835-a1ab48065f8b/,Nina Colin,,8/26/2018 0:00,14.0000000,16.0000000,48.641802000000,-2.07314500000,,Plage de Saint Enogat,43124,observation-3af3c9d5-f0a3-4079-8835-a1ab48065f8b-4,https://biolit.fr/observations/observation-3af3c9d5-f0a3-4079-8835-a1ab48065f8b-4/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0455-scaled.jpg,,TRUE, +N1,59563,sortie-3af3c9d5-f0a3-4079-8835-a1ab48065f8b,https://biolit.fr/sorties/sortie-3af3c9d5-f0a3-4079-8835-a1ab48065f8b/,Nina Colin,,8/26/2018 0:00,14.0000000,16.0000000,48.641802000000,-2.07314500000,,Plage de Saint Enogat,43126,observation-3af3c9d5-f0a3-4079-8835-a1ab48065f8b-5,https://biolit.fr/observations/observation-3af3c9d5-f0a3-4079-8835-a1ab48065f8b-5/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0452-scaled.jpg,,TRUE, +N1,59563,sortie-3af3c9d5-f0a3-4079-8835-a1ab48065f8b,https://biolit.fr/sorties/sortie-3af3c9d5-f0a3-4079-8835-a1ab48065f8b/,Nina Colin,,8/26/2018 0:00,14.0000000,16.0000000,48.641802000000,-2.07314500000,,Plage de Saint Enogat,43128,observation-3af3c9d5-f0a3-4079-8835-a1ab48065f8b-6,https://biolit.fr/observations/observation-3af3c9d5-f0a3-4079-8835-a1ab48065f8b-6/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0450-scaled.jpg,,TRUE, +N1,59564,sortie-1ee2214b-b4de-4068-a67e-9a65668646c3,https://biolit.fr/sorties/sortie-1ee2214b-b4de-4068-a67e-9a65668646c3/,Val',,8/25/2018 0:00,16.0000000,19.0000000,49.240773000000,-0.35960500000,,Saint Aubin sur mer,43130,observation-1ee2214b-b4de-4068-a67e-9a65668646c3,https://biolit.fr/observations/observation-1ee2214b-b4de-4068-a67e-9a65668646c3/,,,,https://biolit.fr/wp-content/uploads/2023/07/40043886_2071676163148178_8554410432163479552_n.jpg,,FALSE, +N1,59565,sortie-c3c68969-25d5-4e4e-83a2-4bf403440da1,https://biolit.fr/sorties/sortie-c3c68969-25d5-4e4e-83a2-4bf403440da1/,Val',,8/25/2018 0:00,16.0000000,19.0000000,49.240773000000,-0.35960500000,,Saint Aubin sur mer,43132,observation-c3c68969-25d5-4e4e-83a2-4bf403440da1,https://biolit.fr/observations/observation-c3c68969-25d5-4e4e-83a2-4bf403440da1/,,,,https://biolit.fr/wp-content/uploads/2023/07/40043886_2071676163148178_8554410432163479552_n.jpg,,FALSE, +N1,59566,sortie-38664f5d-17a1-48ce-b024-b51af2725e57,https://biolit.fr/sorties/sortie-38664f5d-17a1-48ce-b024-b51af2725e57/,Val',,8/25/2018 0:00,16.0000000,19.0000000,49.240773000000,-0.35960500000,,Saint Aubin sur mer,43133,observation-38664f5d-17a1-48ce-b024-b51af2725e57,https://biolit.fr/observations/observation-38664f5d-17a1-48ce-b024-b51af2725e57/,,,,https://biolit.fr/wp-content/uploads/2023/07/40043886_2071676163148178_8554410432163479552_n.jpg,,FALSE, +N1,59567,sortie-54173079-b54c-41cf-9d0b-6155248c5164,https://biolit.fr/sorties/sortie-54173079-b54c-41cf-9d0b-6155248c5164/,Environat,,8/25/2018 0:00,10.0000000,11.0000000,45.60412100000,-1.013195000000,,"ile aux mouettes,saint georges de didonne",43134,observation-54173079-b54c-41cf-9d0b-6155248c5164,https://biolit.fr/observations/observation-54173079-b54c-41cf-9d0b-6155248c5164/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0025bd.JPG,,FALSE, +N1,59567,sortie-54173079-b54c-41cf-9d0b-6155248c5164,https://biolit.fr/sorties/sortie-54173079-b54c-41cf-9d0b-6155248c5164/,Environat,,8/25/2018 0:00,10.0000000,11.0000000,45.60412100000,-1.013195000000,,"ile aux mouettes,saint georges de didonne",43136,observation-54173079-b54c-41cf-9d0b-6155248c5164-2,https://biolit.fr/observations/observation-54173079-b54c-41cf-9d0b-6155248c5164-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0022bd.JPG,,FALSE, +N1,59567,sortie-54173079-b54c-41cf-9d0b-6155248c5164,https://biolit.fr/sorties/sortie-54173079-b54c-41cf-9d0b-6155248c5164/,Environat,,8/25/2018 0:00,10.0000000,11.0000000,45.60412100000,-1.013195000000,,"ile aux mouettes,saint georges de didonne",43138,observation-54173079-b54c-41cf-9d0b-6155248c5164-3,https://biolit.fr/observations/observation-54173079-b54c-41cf-9d0b-6155248c5164-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0018bd.JPG,,FALSE, +N1,59567,sortie-54173079-b54c-41cf-9d0b-6155248c5164,https://biolit.fr/sorties/sortie-54173079-b54c-41cf-9d0b-6155248c5164/,Environat,,8/25/2018 0:00,10.0000000,11.0000000,45.60412100000,-1.013195000000,,"ile aux mouettes,saint georges de didonne",43140,observation-54173079-b54c-41cf-9d0b-6155248c5164-4,https://biolit.fr/observations/observation-54173079-b54c-41cf-9d0b-6155248c5164-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0011.JPG,,FALSE, +N1,59567,sortie-54173079-b54c-41cf-9d0b-6155248c5164,https://biolit.fr/sorties/sortie-54173079-b54c-41cf-9d0b-6155248c5164/,Environat,,8/25/2018 0:00,10.0000000,11.0000000,45.60412100000,-1.013195000000,,"ile aux mouettes,saint georges de didonne",43142,observation-54173079-b54c-41cf-9d0b-6155248c5164-5,https://biolit.fr/observations/observation-54173079-b54c-41cf-9d0b-6155248c5164-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0013.JPG,,FALSE, +N1,59567,sortie-54173079-b54c-41cf-9d0b-6155248c5164,https://biolit.fr/sorties/sortie-54173079-b54c-41cf-9d0b-6155248c5164/,Environat,,8/25/2018 0:00,10.0000000,11.0000000,45.60412100000,-1.013195000000,,"ile aux mouettes,saint georges de didonne",43144,observation-54173079-b54c-41cf-9d0b-6155248c5164-6,https://biolit.fr/observations/observation-54173079-b54c-41cf-9d0b-6155248c5164-6/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0014.JPG,,TRUE, +N1,59567,sortie-54173079-b54c-41cf-9d0b-6155248c5164,https://biolit.fr/sorties/sortie-54173079-b54c-41cf-9d0b-6155248c5164/,Environat,,8/25/2018 0:00,10.0000000,11.0000000,45.60412100000,-1.013195000000,,"ile aux mouettes,saint georges de didonne",43146,observation-54173079-b54c-41cf-9d0b-6155248c5164-7,https://biolit.fr/observations/observation-54173079-b54c-41cf-9d0b-6155248c5164-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0015.JPG,,FALSE, +N1,59568,sortie-06ce9f3c-4a88-40de-8c96-c1ca2051cd6c,https://biolit.fr/sorties/sortie-06ce9f3c-4a88-40de-8c96-c1ca2051cd6c/,club de la mer nice,,8/23/2018 0:00,14.0000000,17.0000000,43.690985000000,7.289632000000,,PORT DE NICE,43148,observation-06ce9f3c-4a88-40de-8c96-c1ca2051cd6c,https://biolit.fr/observations/observation-06ce9f3c-4a88-40de-8c96-c1ca2051cd6c/,,,,https://biolit.fr/wp-content/uploads/2023/07/MEDUSE OEUF AU PLAT.jpg,,FALSE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43150,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Lanice conchilega,Lanice,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0284-scaled.jpg,,TRUE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43152,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-2,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-2/,Saccharina latissima,Laminaire sucrée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0285-scaled.jpg,,TRUE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43154,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-3,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-3/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0302-scaled.jpg,,TRUE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43156,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-4,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0316-scaled.jpg,,FALSE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43158,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-5,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-5/,Pyura microcosmus,Petit microcosme,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0323-scaled.jpg,,TRUE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43160,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-6,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-6/,Opuntia ficus,Figuier de barbarie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0335-scaled.jpg,,TRUE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43161,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-7,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-7/,Hymeniacidon perlevis,Eponge-miette de pain,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0338-scaled.jpg,,TRUE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43163,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-8,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-8/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0349-scaled.jpg,,TRUE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43165,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-9,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-9/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0350-scaled.jpg,,TRUE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43167,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-10,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-10/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0359-scaled.jpg,,TRUE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43169,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-11,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-11/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0369-scaled.jpg,,TRUE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43171,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-12,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-12/,Trivia arctica,Grain de café rose,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0374-scaled.jpg,,TRUE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43173,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-13,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-13/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0382_0-scaled.jpg,,TRUE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43175,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-14,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-14/,Ciliata mustela,Motelle à 5 barbillons,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0383-scaled.jpg,,TRUE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43177,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-15,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-15/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0392_0-scaled.jpg,,TRUE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43179,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-16,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-16/,Ciliata mustela,Motelle à 5 barbillons,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0386_0-scaled.jpg,,TRUE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43181,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-17,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0326.JPG,,FALSE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43183,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-18,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0328-scaled.jpg,,FALSE, +N1,59570,sortie-763aa508-36cb-4f45-928e-d6e54668b949,https://biolit.fr/sorties/sortie-763aa508-36cb-4f45-928e-d6e54668b949/,CPIE Vallée de l'Orne,,7/16/2018 0:00,20.0000000,20.0000000,49.295565000000,-0.287920000000,,Colleville-Montgomery,43185,observation-763aa508-36cb-4f45-928e-d6e54668b949,https://biolit.fr/observations/observation-763aa508-36cb-4f45-928e-d6e54668b949/,,,,https://biolit.fr/wp-content/uploads/2023/07/Homard juvénile Colleville M BP compr-scaled.jpg,,FALSE, +N1,59571,sortie-2198fa5e-7205-4eb7-9355-bd7d05fa21d0,https://biolit.fr/sorties/sortie-2198fa5e-7205-4eb7-9355-bd7d05fa21d0/,CPIE Vallée de l'Orne,,7/17/2018 0:00,8.0000000,8.0:15,49.289286000000,-0.176474000000,,Merville-Franceville,43187,observation-2198fa5e-7205-4eb7-9355-bd7d05fa21d0,https://biolit.fr/observations/observation-2198fa5e-7205-4eb7-9355-bd7d05fa21d0/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/2023/07/Natice adulte et ponte BP compr-scaled.jpg,,TRUE, +N1,59572,sortie-1a998fd9-bf09-4fb9-b31b-7860f30b4876,https://biolit.fr/sorties/sortie-1a998fd9-bf09-4fb9-b31b-7860f30b4876/,CPIE Vallée de l'Orne,,08/10/2018,16.0000000,17.0000000,49.32161400000,-0.352502000000,,Luc-sur-Mer,43189,observation-1a998fd9-bf09-4fb9-b31b-7860f30b4876,https://biolit.fr/observations/observation-1a998fd9-bf09-4fb9-b31b-7860f30b4876/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Oeufs de Seiche estran Luc aout18 BP compr.jpg,,TRUE, +N1,59573,sortie-194f0e70-ae4d-4aa4-9337-8b8b55f18323,https://biolit.fr/sorties/sortie-194f0e70-ae4d-4aa4-9337-8b8b55f18323/,Fab8113,,08/12/2018,14.0000000,16.0000000,43.177043000000,5.370592000000,,Les Moyades,43191,observation-194f0e70-ae4d-4aa4-9337-8b8b55f18323,https://biolit.fr/observations/observation-194f0e70-ae4d-4aa4-9337-8b8b55f18323/,,,,https://biolit.fr/wp-content/uploads/2023/07/Banc de sars à tete noire-scaled.jpg,,FALSE, +N1,59573,sortie-194f0e70-ae4d-4aa4-9337-8b8b55f18323,https://biolit.fr/sorties/sortie-194f0e70-ae4d-4aa4-9337-8b8b55f18323/,Fab8113,,08/12/2018,14.0000000,16.0000000,43.177043000000,5.370592000000,,Les Moyades,43193,observation-194f0e70-ae4d-4aa4-9337-8b8b55f18323-2,https://biolit.fr/observations/observation-194f0e70-ae4d-4aa4-9337-8b8b55f18323-2/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/Padine queue de paon-scaled.jpg,,TRUE, +N1,59573,sortie-194f0e70-ae4d-4aa4-9337-8b8b55f18323,https://biolit.fr/sorties/sortie-194f0e70-ae4d-4aa4-9337-8b8b55f18323/,Fab8113,,08/12/2018,14.0000000,16.0000000,43.177043000000,5.370592000000,,Les Moyades,43195,observation-194f0e70-ae4d-4aa4-9337-8b8b55f18323-3,https://biolit.fr/observations/observation-194f0e70-ae4d-4aa4-9337-8b8b55f18323-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sar Commun-scaled.jpg,,FALSE, +N1,59573,sortie-194f0e70-ae4d-4aa4-9337-8b8b55f18323,https://biolit.fr/sorties/sortie-194f0e70-ae4d-4aa4-9337-8b8b55f18323/,Fab8113,,08/12/2018,14.0000000,16.0000000,43.177043000000,5.370592000000,,Les Moyades,43197,observation-194f0e70-ae4d-4aa4-9337-8b8b55f18323-4,https://biolit.fr/observations/observation-194f0e70-ae4d-4aa4-9337-8b8b55f18323-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mérou brun-scaled.jpg,,FALSE, +N1,59574,sortie-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf,https://biolit.fr/sorties/sortie-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf/,AMi42,,08/09/2018,8.0000000,10.0000000,46.140295000000,-1.17177700000,,"Plage des minimes, la Rochelle ",43199,observation-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf,https://biolit.fr/observations/observation-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180809_102756-scaled.jpg,,FALSE, +N1,59574,sortie-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf,https://biolit.fr/sorties/sortie-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf/,AMi42,,08/09/2018,8.0000000,10.0000000,46.140295000000,-1.17177700000,,"Plage des minimes, la Rochelle ",43201,observation-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf-2,https://biolit.fr/observations/observation-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180809_101534-scaled.jpg,,FALSE, +N1,59574,sortie-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf,https://biolit.fr/sorties/sortie-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf/,AMi42,,08/09/2018,8.0000000,10.0000000,46.140295000000,-1.17177700000,,"Plage des minimes, la Rochelle ",43203,observation-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf-3,https://biolit.fr/observations/observation-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf-3/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/20180809_100327-scaled.jpg,,TRUE, +N1,59574,sortie-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf,https://biolit.fr/sorties/sortie-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf/,AMi42,,08/09/2018,8.0000000,10.0000000,46.140295000000,-1.17177700000,,"Plage des minimes, la Rochelle ",43205,observation-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf-4,https://biolit.fr/observations/observation-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20180809_092627-scaled.jpg,,TRUE, +N1,59574,sortie-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf,https://biolit.fr/sorties/sortie-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf/,AMi42,,08/09/2018,8.0000000,10.0000000,46.140295000000,-1.17177700000,,"Plage des minimes, la Rochelle ",43207,observation-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf-5,https://biolit.fr/observations/observation-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf-5/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20180809_090038-scaled.jpg,,TRUE, +N1,59574,sortie-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf,https://biolit.fr/sorties/sortie-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf/,AMi42,,08/09/2018,8.0000000,10.0000000,46.140295000000,-1.17177700000,,"Plage des minimes, la Rochelle ",43209,observation-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf-6,https://biolit.fr/observations/observation-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf-6/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180809_093846_0-scaled.jpg,,TRUE, +N1,59574,sortie-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf,https://biolit.fr/sorties/sortie-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf/,AMi42,,08/09/2018,8.0000000,10.0000000,46.140295000000,-1.17177700000,,"Plage des minimes, la Rochelle ",43211,observation-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf-7,https://biolit.fr/observations/observation-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf-7/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180809_094702-scaled.jpg,,TRUE, +N1,59575,sortie-ad7ef54f-e4a3-420e-8355-5d0aa76d3615,https://biolit.fr/sorties/sortie-ad7ef54f-e4a3-420e-8355-5d0aa76d3615/,stephfran,,08/09/2018,8.0000000,10.0000000,46.179046000000,-1.185776000000,,"Plage des Minimes, La Rochelle",43213,observation-ad7ef54f-e4a3-420e-8355-5d0aa76d3615,https://biolit.fr/observations/observation-ad7ef54f-e4a3-420e-8355-5d0aa76d3615/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7928-scaled.jpg,,FALSE, +N1,59575,sortie-ad7ef54f-e4a3-420e-8355-5d0aa76d3615,https://biolit.fr/sorties/sortie-ad7ef54f-e4a3-420e-8355-5d0aa76d3615/,stephfran,,08/09/2018,8.0000000,10.0000000,46.179046000000,-1.185776000000,,"Plage des Minimes, La Rochelle",43215,observation-ad7ef54f-e4a3-420e-8355-5d0aa76d3615-2,https://biolit.fr/observations/observation-ad7ef54f-e4a3-420e-8355-5d0aa76d3615-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7950-scaled.jpg,,FALSE, +N1,59575,sortie-ad7ef54f-e4a3-420e-8355-5d0aa76d3615,https://biolit.fr/sorties/sortie-ad7ef54f-e4a3-420e-8355-5d0aa76d3615/,stephfran,,08/09/2018,8.0000000,10.0000000,46.179046000000,-1.185776000000,,"Plage des Minimes, La Rochelle",43217,observation-ad7ef54f-e4a3-420e-8355-5d0aa76d3615-3,https://biolit.fr/observations/observation-ad7ef54f-e4a3-420e-8355-5d0aa76d3615-3/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7929-scaled.jpg,,TRUE, +N1,59575,sortie-ad7ef54f-e4a3-420e-8355-5d0aa76d3615,https://biolit.fr/sorties/sortie-ad7ef54f-e4a3-420e-8355-5d0aa76d3615/,stephfran,,08/09/2018,8.0000000,10.0000000,46.179046000000,-1.185776000000,,"Plage des Minimes, La Rochelle",43219,observation-ad7ef54f-e4a3-420e-8355-5d0aa76d3615-4,https://biolit.fr/observations/observation-ad7ef54f-e4a3-420e-8355-5d0aa76d3615-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7931-scaled.jpg,,FALSE, +N1,59575,sortie-ad7ef54f-e4a3-420e-8355-5d0aa76d3615,https://biolit.fr/sorties/sortie-ad7ef54f-e4a3-420e-8355-5d0aa76d3615/,stephfran,,08/09/2018,8.0000000,10.0000000,46.179046000000,-1.185776000000,,"Plage des Minimes, La Rochelle",43221,observation-ad7ef54f-e4a3-420e-8355-5d0aa76d3615-5,https://biolit.fr/observations/observation-ad7ef54f-e4a3-420e-8355-5d0aa76d3615-5/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7938-scaled.jpg,,TRUE, +N1,59575,sortie-ad7ef54f-e4a3-420e-8355-5d0aa76d3615,https://biolit.fr/sorties/sortie-ad7ef54f-e4a3-420e-8355-5d0aa76d3615/,stephfran,,08/09/2018,8.0000000,10.0000000,46.179046000000,-1.185776000000,,"Plage des Minimes, La Rochelle",43223,observation-ad7ef54f-e4a3-420e-8355-5d0aa76d3615-6,https://biolit.fr/observations/observation-ad7ef54f-e4a3-420e-8355-5d0aa76d3615-6/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7941-scaled.jpg,,TRUE, +N1,59576,sortie-6833999f-e90a-41ec-a9a2-00998911cf51,https://biolit.fr/sorties/sortie-6833999f-e90a-41ec-a9a2-00998911cf51/,Guillaume D,,08/01/2018,13.0000000,15.0000000,46.110177000000,-1.138712000000,,"Angoulins, Pointe du Chay",43225,observation-6833999f-e90a-41ec-a9a2-00998911cf51,https://biolit.fr/observations/observation-6833999f-e90a-41ec-a9a2-00998911cf51/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180801_142513-scaled.jpg,,TRUE, +N1,59576,sortie-6833999f-e90a-41ec-a9a2-00998911cf51,https://biolit.fr/sorties/sortie-6833999f-e90a-41ec-a9a2-00998911cf51/,Guillaume D,,08/01/2018,13.0000000,15.0000000,46.110177000000,-1.138712000000,,"Angoulins, Pointe du Chay",43227,observation-6833999f-e90a-41ec-a9a2-00998911cf51-2,https://biolit.fr/observations/observation-6833999f-e90a-41ec-a9a2-00998911cf51-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180801_142536-scaled.jpg,,TRUE, +N1,59576,sortie-6833999f-e90a-41ec-a9a2-00998911cf51,https://biolit.fr/sorties/sortie-6833999f-e90a-41ec-a9a2-00998911cf51/,Guillaume D,,08/01/2018,13.0000000,15.0000000,46.110177000000,-1.138712000000,,"Angoulins, Pointe du Chay",43229,observation-6833999f-e90a-41ec-a9a2-00998911cf51-3,https://biolit.fr/observations/observation-6833999f-e90a-41ec-a9a2-00998911cf51-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180801_142638-scaled.jpg,,TRUE, +N1,59576,sortie-6833999f-e90a-41ec-a9a2-00998911cf51,https://biolit.fr/sorties/sortie-6833999f-e90a-41ec-a9a2-00998911cf51/,Guillaume D,,08/01/2018,13.0000000,15.0000000,46.110177000000,-1.138712000000,,"Angoulins, Pointe du Chay",43231,observation-6833999f-e90a-41ec-a9a2-00998911cf51-4,https://biolit.fr/observations/observation-6833999f-e90a-41ec-a9a2-00998911cf51-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180801_142715_5mo-scaled.jpg,,FALSE, +N1,59576,sortie-6833999f-e90a-41ec-a9a2-00998911cf51,https://biolit.fr/sorties/sortie-6833999f-e90a-41ec-a9a2-00998911cf51/,Guillaume D,,08/01/2018,13.0000000,15.0000000,46.110177000000,-1.138712000000,,"Angoulins, Pointe du Chay",43233,observation-6833999f-e90a-41ec-a9a2-00998911cf51-5,https://biolit.fr/observations/observation-6833999f-e90a-41ec-a9a2-00998911cf51-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180801_143610_5mo.jpg,,FALSE, +N1,59576,sortie-6833999f-e90a-41ec-a9a2-00998911cf51,https://biolit.fr/sorties/sortie-6833999f-e90a-41ec-a9a2-00998911cf51/,Guillaume D,,08/01/2018,13.0000000,15.0000000,46.110177000000,-1.138712000000,,"Angoulins, Pointe du Chay",43235,observation-6833999f-e90a-41ec-a9a2-00998911cf51-6,https://biolit.fr/observations/observation-6833999f-e90a-41ec-a9a2-00998911cf51-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180801_144551-scaled.jpg,,FALSE, +N1,59576,sortie-6833999f-e90a-41ec-a9a2-00998911cf51,https://biolit.fr/sorties/sortie-6833999f-e90a-41ec-a9a2-00998911cf51/,Guillaume D,,08/01/2018,13.0000000,15.0000000,46.110177000000,-1.138712000000,,"Angoulins, Pointe du Chay",43237,observation-6833999f-e90a-41ec-a9a2-00998911cf51-7,https://biolit.fr/observations/observation-6833999f-e90a-41ec-a9a2-00998911cf51-7/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180801_151218-scaled.jpg,,TRUE, +N1,59576,sortie-6833999f-e90a-41ec-a9a2-00998911cf51,https://biolit.fr/sorties/sortie-6833999f-e90a-41ec-a9a2-00998911cf51/,Guillaume D,,08/01/2018,13.0000000,15.0000000,46.110177000000,-1.138712000000,,"Angoulins, Pointe du Chay",43239,observation-6833999f-e90a-41ec-a9a2-00998911cf51-8,https://biolit.fr/observations/observation-6833999f-e90a-41ec-a9a2-00998911cf51-8/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180801_151202-scaled.jpg,,TRUE, +N1,59576,sortie-6833999f-e90a-41ec-a9a2-00998911cf51,https://biolit.fr/sorties/sortie-6833999f-e90a-41ec-a9a2-00998911cf51/,Guillaume D,,08/01/2018,13.0000000,15.0000000,46.110177000000,-1.138712000000,,"Angoulins, Pointe du Chay",43241,observation-6833999f-e90a-41ec-a9a2-00998911cf51-9,https://biolit.fr/observations/observation-6833999f-e90a-41ec-a9a2-00998911cf51-9/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180801_151745-scaled.jpg,,TRUE, +N1,59576,sortie-6833999f-e90a-41ec-a9a2-00998911cf51,https://biolit.fr/sorties/sortie-6833999f-e90a-41ec-a9a2-00998911cf51/,Guillaume D,,08/01/2018,13.0000000,15.0000000,46.110177000000,-1.138712000000,,"Angoulins, Pointe du Chay",43243,observation-6833999f-e90a-41ec-a9a2-00998911cf51-10,https://biolit.fr/observations/observation-6833999f-e90a-41ec-a9a2-00998911cf51-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180801_154548_5mo-scaled.jpg,,FALSE, +N1,59576,sortie-6833999f-e90a-41ec-a9a2-00998911cf51,https://biolit.fr/sorties/sortie-6833999f-e90a-41ec-a9a2-00998911cf51/,Guillaume D,,08/01/2018,13.0000000,15.0000000,46.110177000000,-1.138712000000,,"Angoulins, Pointe du Chay",43245,observation-6833999f-e90a-41ec-a9a2-00998911cf51-11,https://biolit.fr/observations/observation-6833999f-e90a-41ec-a9a2-00998911cf51-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180801_161610-scaled.jpg,,FALSE, +N1,59576,sortie-6833999f-e90a-41ec-a9a2-00998911cf51,https://biolit.fr/sorties/sortie-6833999f-e90a-41ec-a9a2-00998911cf51/,Guillaume D,,08/01/2018,13.0000000,15.0000000,46.110177000000,-1.138712000000,,"Angoulins, Pointe du Chay",43247,observation-6833999f-e90a-41ec-a9a2-00998911cf51-12,https://biolit.fr/observations/observation-6833999f-e90a-41ec-a9a2-00998911cf51-12/,Phymatolithon lenormandii,Algue encroûtante rouge de Lenormand,,https://biolit.fr/wp-content/uploads/2023/07/20180801_161732-scaled.jpg,,TRUE, +N1,59577,sortie-8283c90d-34c1-4f02-a94d-e392b5e38110,https://biolit.fr/sorties/sortie-8283c90d-34c1-4f02-a94d-e392b5e38110/,Socam,,08/06/2018,10.0000000,11.0000000,43.172626000000,5.39325600000,,"Marseille, Calanques",43249,observation-8283c90d-34c1-4f02-a94d-e392b5e38110,https://biolit.fr/observations/observation-8283c90d-34c1-4f02-a94d-e392b5e38110/,Pachymatisma johnstonia,Fesse d'éléphant,,https://biolit.fr/wp-content/uploads/2023/07/20180806_075856030_iOS.jpg,,TRUE, +N1,59577,sortie-8283c90d-34c1-4f02-a94d-e392b5e38110,https://biolit.fr/sorties/sortie-8283c90d-34c1-4f02-a94d-e392b5e38110/,Socam,,08/06/2018,10.0000000,11.0000000,43.172626000000,5.39325600000,,"Marseille, Calanques",43251,observation-8283c90d-34c1-4f02-a94d-e392b5e38110-2,https://biolit.fr/observations/observation-8283c90d-34c1-4f02-a94d-e392b5e38110-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180806_080140050_iOS.jpg,,FALSE, +N1,59577,sortie-8283c90d-34c1-4f02-a94d-e392b5e38110,https://biolit.fr/sorties/sortie-8283c90d-34c1-4f02-a94d-e392b5e38110/,Socam,,08/06/2018,10.0000000,11.0000000,43.172626000000,5.39325600000,,"Marseille, Calanques",43253,observation-8283c90d-34c1-4f02-a94d-e392b5e38110-3,https://biolit.fr/observations/observation-8283c90d-34c1-4f02-a94d-e392b5e38110-3/,Muraena helena,Murène commune,,https://biolit.fr/wp-content/uploads/2023/07/20180806_080642210_iOS.jpg,,TRUE, +N1,59577,sortie-8283c90d-34c1-4f02-a94d-e392b5e38110,https://biolit.fr/sorties/sortie-8283c90d-34c1-4f02-a94d-e392b5e38110/,Socam,,08/06/2018,10.0000000,11.0000000,43.172626000000,5.39325600000,,"Marseille, Calanques",43255,observation-8283c90d-34c1-4f02-a94d-e392b5e38110-4,https://biolit.fr/observations/observation-8283c90d-34c1-4f02-a94d-e392b5e38110-4/,Scorpaena scrofa,Chapon,,https://biolit.fr/wp-content/uploads/2023/07/20180806_080913690_iOS.jpg,,TRUE, +N1,59577,sortie-8283c90d-34c1-4f02-a94d-e392b5e38110,https://biolit.fr/sorties/sortie-8283c90d-34c1-4f02-a94d-e392b5e38110/,Socam,,08/06/2018,10.0000000,11.0000000,43.172626000000,5.39325600000,,"Marseille, Calanques",43257,observation-8283c90d-34c1-4f02-a94d-e392b5e38110-5,https://biolit.fr/observations/observation-8283c90d-34c1-4f02-a94d-e392b5e38110-5/,Felimida krohni,Doris de Krohn,,https://biolit.fr/wp-content/uploads/2023/07/20180806_081028750_iOS.jpg,,TRUE, +N1,59577,sortie-8283c90d-34c1-4f02-a94d-e392b5e38110,https://biolit.fr/sorties/sortie-8283c90d-34c1-4f02-a94d-e392b5e38110/,Socam,,08/06/2018,10.0000000,11.0000000,43.172626000000,5.39325600000,,"Marseille, Calanques",43259,observation-8283c90d-34c1-4f02-a94d-e392b5e38110-6,https://biolit.fr/observations/observation-8283c90d-34c1-4f02-a94d-e392b5e38110-6/,Peltodoris atromaculata,Doris dalmatienne,,https://biolit.fr/wp-content/uploads/2023/07/20180806_081736040_iOS.jpg,,TRUE, +N1,59577,sortie-8283c90d-34c1-4f02-a94d-e392b5e38110,https://biolit.fr/sorties/sortie-8283c90d-34c1-4f02-a94d-e392b5e38110/,Socam,,08/06/2018,10.0000000,11.0000000,43.172626000000,5.39325600000,,"Marseille, Calanques",43261,observation-8283c90d-34c1-4f02-a94d-e392b5e38110-7,https://biolit.fr/observations/observation-8283c90d-34c1-4f02-a94d-e392b5e38110-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180806_082035730_iOS.jpg,,FALSE, +N1,59577,sortie-8283c90d-34c1-4f02-a94d-e392b5e38110,https://biolit.fr/sorties/sortie-8283c90d-34c1-4f02-a94d-e392b5e38110/,Socam,,08/06/2018,10.0000000,11.0000000,43.172626000000,5.39325600000,,"Marseille, Calanques",43263,observation-8283c90d-34c1-4f02-a94d-e392b5e38110-8,https://biolit.fr/observations/observation-8283c90d-34c1-4f02-a94d-e392b5e38110-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180806_082946640_iOS.jpg,,FALSE, +N1,59577,sortie-8283c90d-34c1-4f02-a94d-e392b5e38110,https://biolit.fr/sorties/sortie-8283c90d-34c1-4f02-a94d-e392b5e38110/,Socam,,08/06/2018,10.0000000,11.0000000,43.172626000000,5.39325600000,,"Marseille, Calanques",43265,observation-8283c90d-34c1-4f02-a94d-e392b5e38110-9,https://biolit.fr/observations/observation-8283c90d-34c1-4f02-a94d-e392b5e38110-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180806_083701090_iOS.jpg,,FALSE, +N1,59577,sortie-8283c90d-34c1-4f02-a94d-e392b5e38110,https://biolit.fr/sorties/sortie-8283c90d-34c1-4f02-a94d-e392b5e38110/,Socam,,08/06/2018,10.0000000,11.0000000,43.172626000000,5.39325600000,,"Marseille, Calanques",43267,observation-8283c90d-34c1-4f02-a94d-e392b5e38110-10,https://biolit.fr/observations/observation-8283c90d-34c1-4f02-a94d-e392b5e38110-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180806_083134960_iOS.jpg,,FALSE, +N1,59577,sortie-8283c90d-34c1-4f02-a94d-e392b5e38110,https://biolit.fr/sorties/sortie-8283c90d-34c1-4f02-a94d-e392b5e38110/,Socam,,08/06/2018,10.0000000,11.0000000,43.172626000000,5.39325600000,,"Marseille, Calanques",43269,observation-8283c90d-34c1-4f02-a94d-e392b5e38110-11,https://biolit.fr/observations/observation-8283c90d-34c1-4f02-a94d-e392b5e38110-11/,Sphyraena viridensis,Bécune à bouche jaune,,https://biolit.fr/wp-content/uploads/2023/07/20180806_084417390_iOS.jpg,,TRUE, +N1,59577,sortie-8283c90d-34c1-4f02-a94d-e392b5e38110,https://biolit.fr/sorties/sortie-8283c90d-34c1-4f02-a94d-e392b5e38110/,Socam,,08/06/2018,10.0000000,11.0000000,43.172626000000,5.39325600000,,"Marseille, Calanques",43271,observation-8283c90d-34c1-4f02-a94d-e392b5e38110-12,https://biolit.fr/observations/observation-8283c90d-34c1-4f02-a94d-e392b5e38110-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180806_084910060_iOS.jpg,,FALSE, +N1,59577,sortie-8283c90d-34c1-4f02-a94d-e392b5e38110,https://biolit.fr/sorties/sortie-8283c90d-34c1-4f02-a94d-e392b5e38110/,Socam,,08/06/2018,10.0000000,11.0000000,43.172626000000,5.39325600000,,"Marseille, Calanques",43273,observation-8283c90d-34c1-4f02-a94d-e392b5e38110-13,https://biolit.fr/observations/observation-8283c90d-34c1-4f02-a94d-e392b5e38110-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180806_085228130_iOS.jpg,,FALSE, +N1,59577,sortie-8283c90d-34c1-4f02-a94d-e392b5e38110,https://biolit.fr/sorties/sortie-8283c90d-34c1-4f02-a94d-e392b5e38110/,Socam,,08/06/2018,10.0000000,11.0000000,43.172626000000,5.39325600000,,"Marseille, Calanques",43275,observation-8283c90d-34c1-4f02-a94d-e392b5e38110-14,https://biolit.fr/observations/observation-8283c90d-34c1-4f02-a94d-e392b5e38110-14/,Edmundsella pedata,Coryphelle mauve,,https://biolit.fr/wp-content/uploads/2023/07/20180806_085650840_iOS.jpg,,TRUE, +N1,59578,sortie-975b9b0d-a9bb-4eea-b3da-613990c1309c,https://biolit.fr/sorties/sortie-975b9b0d-a9bb-4eea-b3da-613990c1309c/,Club subaquatique Narbonnais,,08/06/2018,16.0000000,17.0000000,43.167907000000,3.182338000000,,Port de Narbonne-plage,43277,observation-975b9b0d-a9bb-4eea-b3da-613990c1309c,https://biolit.fr/observations/observation-975b9b0d-a9bb-4eea-b3da-613990c1309c/,,,,https://biolit.fr/wp-content/uploads/2023/07/syngnathe1.jpg,,FALSE, +N1,59578,sortie-975b9b0d-a9bb-4eea-b3da-613990c1309c,https://biolit.fr/sorties/sortie-975b9b0d-a9bb-4eea-b3da-613990c1309c/,Club subaquatique Narbonnais,,08/06/2018,16.0000000,17.0000000,43.167907000000,3.182338000000,,Port de Narbonne-plage,43279,observation-975b9b0d-a9bb-4eea-b3da-613990c1309c-2,https://biolit.fr/observations/observation-975b9b0d-a9bb-4eea-b3da-613990c1309c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/syngnathe2.JPG,,FALSE, +N1,59578,sortie-975b9b0d-a9bb-4eea-b3da-613990c1309c,https://biolit.fr/sorties/sortie-975b9b0d-a9bb-4eea-b3da-613990c1309c/,Club subaquatique Narbonnais,,08/06/2018,16.0000000,17.0000000,43.167907000000,3.182338000000,,Port de Narbonne-plage,43281,observation-975b9b0d-a9bb-4eea-b3da-613990c1309c-3,https://biolit.fr/observations/observation-975b9b0d-a9bb-4eea-b3da-613990c1309c-3/,Sciaena umbra,Corb commun,,https://biolit.fr/wp-content/uploads/2023/07/envoi4.JPG,,TRUE, +N1,59578,sortie-975b9b0d-a9bb-4eea-b3da-613990c1309c,https://biolit.fr/sorties/sortie-975b9b0d-a9bb-4eea-b3da-613990c1309c/,Club subaquatique Narbonnais,,08/06/2018,16.0000000,17.0000000,43.167907000000,3.182338000000,,Port de Narbonne-plage,43283,observation-975b9b0d-a9bb-4eea-b3da-613990c1309c-4,https://biolit.fr/observations/observation-975b9b0d-a9bb-4eea-b3da-613990c1309c-4/,Sciaena umbra,Corb commun,,https://biolit.fr/wp-content/uploads/2023/07/envoi6.JPG,,TRUE, +N1,59579,sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac,https://biolit.fr/sorties/sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac/,Socam,,7/30/2018 0:00,9.0:45,10.0:45,43.17664700000,5.370409000000,,"Marseille, Calanques",43285,observation-f5de6b2f-012f-4861-a99c-184d5cc267ac,https://biolit.fr/observations/observation-f5de6b2f-012f-4861-a99c-184d5cc267ac/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180730_081213210_iOS.jpg,,FALSE, +N1,59579,sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac,https://biolit.fr/sorties/sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac/,Socam,,7/30/2018 0:00,9.0:45,10.0:45,43.17664700000,5.370409000000,,"Marseille, Calanques",43287,observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-2,https://biolit.fr/observations/observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180730_081338080_iOS.jpg,,FALSE, +N1,59579,sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac,https://biolit.fr/sorties/sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac/,Socam,,7/30/2018 0:00,9.0:45,10.0:45,43.17664700000,5.370409000000,,"Marseille, Calanques",43289,observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-3,https://biolit.fr/observations/observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180730_081555390_iOS.jpg,,FALSE, +N1,59579,sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac,https://biolit.fr/sorties/sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac/,Socam,,7/30/2018 0:00,9.0:45,10.0:45,43.17664700000,5.370409000000,,"Marseille, Calanques",43291,observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-4,https://biolit.fr/observations/observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-4/,Peltodoris atromaculata,Doris dalmatienne,,https://biolit.fr/wp-content/uploads/2023/07/20180730_082245210_iOS.jpg,,TRUE, +N1,59579,sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac,https://biolit.fr/sorties/sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac/,Socam,,7/30/2018 0:00,9.0:45,10.0:45,43.17664700000,5.370409000000,,"Marseille, Calanques",43293,observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-5,https://biolit.fr/observations/observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180730_082554710_iOS.jpg,,FALSE, +N1,59579,sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac,https://biolit.fr/sorties/sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac/,Socam,,7/30/2018 0:00,9.0:45,10.0:45,43.17664700000,5.370409000000,,"Marseille, Calanques",43295,observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-6,https://biolit.fr/observations/observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180730_083604530_iOS.jpg,,FALSE, +N1,59579,sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac,https://biolit.fr/sorties/sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac/,Socam,,7/30/2018 0:00,9.0:45,10.0:45,43.17664700000,5.370409000000,,"Marseille, Calanques",43297,observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-7,https://biolit.fr/observations/observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180730_084100510_iOS-rotated.jpg,,FALSE, +N1,59579,sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac,https://biolit.fr/sorties/sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac/,Socam,,7/30/2018 0:00,9.0:45,10.0:45,43.17664700000,5.370409000000,,"Marseille, Calanques",43299,observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-8,https://biolit.fr/observations/observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-8/,Muraena helena,Murène commune,,https://biolit.fr/wp-content/uploads/2023/07/20180730_084407430_iOS.jpg,,TRUE, +N1,59579,sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac,https://biolit.fr/sorties/sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac/,Socam,,7/30/2018 0:00,9.0:45,10.0:45,43.17664700000,5.370409000000,,"Marseille, Calanques",43301,observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-9,https://biolit.fr/observations/observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180730_084528750_iOS.jpg,,FALSE, +N1,59579,sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac,https://biolit.fr/sorties/sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac/,Socam,,7/30/2018 0:00,9.0:45,10.0:45,43.17664700000,5.370409000000,,"Marseille, Calanques",43303,observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-10,https://biolit.fr/observations/observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180730_084617020_iOS.jpg,,FALSE, +N1,59579,sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac,https://biolit.fr/sorties/sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac/,Socam,,7/30/2018 0:00,9.0:45,10.0:45,43.17664700000,5.370409000000,,"Marseille, Calanques",43305,observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-11,https://biolit.fr/observations/observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180730_085056570_iOS.jpg,,FALSE, +N1,59579,sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac,https://biolit.fr/sorties/sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac/,Socam,,7/30/2018 0:00,9.0:45,10.0:45,43.17664700000,5.370409000000,,"Marseille, Calanques",43307,observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-12,https://biolit.fr/observations/observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180730_085259440_iOS.jpg,,FALSE, +N1,59579,sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac,https://biolit.fr/sorties/sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac/,Socam,,7/30/2018 0:00,9.0:45,10.0:45,43.17664700000,5.370409000000,,"Marseille, Calanques",43309,observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-13,https://biolit.fr/observations/observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180730_085439060_iOS.jpg,,FALSE, +N1,59579,sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac,https://biolit.fr/sorties/sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac/,Socam,,7/30/2018 0:00,9.0:45,10.0:45,43.17664700000,5.370409000000,,"Marseille, Calanques",43311,observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-14,https://biolit.fr/observations/observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180730_083214630_iOS.jpg,,FALSE, +N1,59580,sortie-d956177f-a197-489c-b456-df95c8b4ac73,https://biolit.fr/sorties/sortie-d956177f-a197-489c-b456-df95c8b4ac73/,Water Life Community,,5/27/2018 0:00,12.0000000,13.0000000,47.760221000000,-3.526628000000,,Plage de Guidel,43313,observation-d956177f-a197-489c-b456-df95c8b4ac73,https://biolit.fr/observations/observation-d956177f-a197-489c-b456-df95c8b4ac73/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_3329-scaled.jpg,,FALSE, +N1,59580,sortie-d956177f-a197-489c-b456-df95c8b4ac73,https://biolit.fr/sorties/sortie-d956177f-a197-489c-b456-df95c8b4ac73/,Water Life Community,,5/27/2018 0:00,12.0000000,13.0000000,47.760221000000,-3.526628000000,,Plage de Guidel,43315,observation-d956177f-a197-489c-b456-df95c8b4ac73-2,https://biolit.fr/observations/observation-d956177f-a197-489c-b456-df95c8b4ac73-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_3328-scaled.jpg,,FALSE, +N1,59581,sortie-61338518-eadd-4941-b088-8d250ab3e948,https://biolit.fr/sorties/sortie-61338518-eadd-4941-b088-8d250ab3e948/,Stéphane,,7/28/2018 0:00,11.0000000,13.0000000,46.139683000000,-1.172713000000,,"La Rochelle, Plage des Minimes",43317,observation-61338518-eadd-4941-b088-8d250ab3e948,https://biolit.fr/observations/observation-61338518-eadd-4941-b088-8d250ab3e948/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180728_114533-scaled.jpg,,FALSE, +N1,59581,sortie-61338518-eadd-4941-b088-8d250ab3e948,https://biolit.fr/sorties/sortie-61338518-eadd-4941-b088-8d250ab3e948/,Stéphane,,7/28/2018 0:00,11.0000000,13.0000000,46.139683000000,-1.172713000000,,"La Rochelle, Plage des Minimes",43319,observation-61338518-eadd-4941-b088-8d250ab3e948-2,https://biolit.fr/observations/observation-61338518-eadd-4941-b088-8d250ab3e948-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180728_114542-scaled.jpg,,TRUE, +N1,59581,sortie-61338518-eadd-4941-b088-8d250ab3e948,https://biolit.fr/sorties/sortie-61338518-eadd-4941-b088-8d250ab3e948/,Stéphane,,7/28/2018 0:00,11.0000000,13.0000000,46.139683000000,-1.172713000000,,"La Rochelle, Plage des Minimes",43321,observation-61338518-eadd-4941-b088-8d250ab3e948-3,https://biolit.fr/observations/observation-61338518-eadd-4941-b088-8d250ab3e948-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180728_114618-scaled.jpg,,TRUE, +N1,59581,sortie-61338518-eadd-4941-b088-8d250ab3e948,https://biolit.fr/sorties/sortie-61338518-eadd-4941-b088-8d250ab3e948/,Stéphane,,7/28/2018 0:00,11.0000000,13.0000000,46.139683000000,-1.172713000000,,"La Rochelle, Plage des Minimes",43323,observation-61338518-eadd-4941-b088-8d250ab3e948-4,https://biolit.fr/observations/observation-61338518-eadd-4941-b088-8d250ab3e948-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180728_120531-scaled.jpg,,FALSE, +N1,59581,sortie-61338518-eadd-4941-b088-8d250ab3e948,https://biolit.fr/sorties/sortie-61338518-eadd-4941-b088-8d250ab3e948/,Stéphane,,7/28/2018 0:00,11.0000000,13.0000000,46.139683000000,-1.172713000000,,"La Rochelle, Plage des Minimes",43325,observation-61338518-eadd-4941-b088-8d250ab3e948-5,https://biolit.fr/observations/observation-61338518-eadd-4941-b088-8d250ab3e948-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180728_121405-scaled.jpg,,FALSE, +N1,59581,sortie-61338518-eadd-4941-b088-8d250ab3e948,https://biolit.fr/sorties/sortie-61338518-eadd-4941-b088-8d250ab3e948/,Stéphane,,7/28/2018 0:00,11.0000000,13.0000000,46.139683000000,-1.172713000000,,"La Rochelle, Plage des Minimes",43327,observation-61338518-eadd-4941-b088-8d250ab3e948-6,https://biolit.fr/observations/observation-61338518-eadd-4941-b088-8d250ab3e948-6/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/20180728_121755-scaled.jpg,,TRUE, +N1,59582,sortie-181e34a4-0ab7-46e5-b5f4-5c0d70830f71,https://biolit.fr/sorties/sortie-181e34a4-0ab7-46e5-b5f4-5c0d70830f71/,Septentrion Environnement,,7/28/2018 0:00,14.0000000,15.0000000,43.279972000000,5.286176000000,,Le Tiboulen du Frioul,43329,observation-181e34a4-0ab7-46e5-b5f4-5c0d70830f71,https://biolit.fr/observations/observation-181e34a4-0ab7-46e5-b5f4-5c0d70830f71/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4054_0-scaled.jpg,,FALSE, +N1,59582,sortie-181e34a4-0ab7-46e5-b5f4-5c0d70830f71,https://biolit.fr/sorties/sortie-181e34a4-0ab7-46e5-b5f4-5c0d70830f71/,Septentrion Environnement,,7/28/2018 0:00,14.0000000,15.0000000,43.279972000000,5.286176000000,,Le Tiboulen du Frioul,43331,observation-181e34a4-0ab7-46e5-b5f4-5c0d70830f71-2,https://biolit.fr/observations/observation-181e34a4-0ab7-46e5-b5f4-5c0d70830f71-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4055-scaled.jpg,,FALSE, +N1,59582,sortie-181e34a4-0ab7-46e5-b5f4-5c0d70830f71,https://biolit.fr/sorties/sortie-181e34a4-0ab7-46e5-b5f4-5c0d70830f71/,Septentrion Environnement,,7/28/2018 0:00,14.0000000,15.0000000,43.279972000000,5.286176000000,,Le Tiboulen du Frioul,43333,observation-181e34a4-0ab7-46e5-b5f4-5c0d70830f71-3,https://biolit.fr/observations/observation-181e34a4-0ab7-46e5-b5f4-5c0d70830f71-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4065-scaled.jpg,,FALSE, +N1,59582,sortie-181e34a4-0ab7-46e5-b5f4-5c0d70830f71,https://biolit.fr/sorties/sortie-181e34a4-0ab7-46e5-b5f4-5c0d70830f71/,Septentrion Environnement,,7/28/2018 0:00,14.0000000,15.0000000,43.279972000000,5.286176000000,,Le Tiboulen du Frioul,43335,observation-181e34a4-0ab7-46e5-b5f4-5c0d70830f71-4,https://biolit.fr/observations/observation-181e34a4-0ab7-46e5-b5f4-5c0d70830f71-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4070_0-scaled.jpg,,FALSE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43337,observation-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/2023/07/poulpe.JPG,,TRUE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43339,observation-12ef40c1-0e58-48db-b440-3f386f0cca33-2,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/anémone solaire.JPG,,FALSE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43341,observation-12ef40c1-0e58-48db-b440-3f386f0cca33-3,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/anemone-scaled.jpg,,FALSE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43342,observation-12ef40c1-0e58-48db-b440-3f386f0cca33-4,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33-4/,Phallusia mammillata,Ascidie blanche,,https://biolit.fr/wp-content/uploads/2023/07/axinelle.JPG,,TRUE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43344,observation-12ef40c1-0e58-48db-b440-3f386f0cca33-5,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/blennie gros plan.jpg,,FALSE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43346,observation-12ef40c1-0e58-48db-b440-3f386f0cca33-6,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/bogue.JPG,,FALSE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43348,observation-12ef40c1-0e58-48db-b440-3f386f0cca33-7,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/congre.JPG,,FALSE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43350,observation-12ef40c1-0e58-48db-b440-3f386f0cca33-8,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/etrille.JPG,,FALSE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43352,observation-12ef40c1-0e58-48db-b440-3f386f0cca33-9,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/loup.JPG,,FALSE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43354,observation-12ef40c1-0e58-48db-b440-3f386f0cca33-10,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/macropodia 1.JPG,,FALSE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43356,observation-12ef40c1-0e58-48db-b440-3f386f0cca33-11,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/macropodia 2.JPG,,FALSE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43358,observation-12ef40c1-0e58-48db-b440-3f386f0cca33-12,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/macropodia 3.JPG,,FALSE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43360,observation-12ef40c1-0e58-48db-b440-3f386f0cca33-13,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/meduse-scaled.jpg,,FALSE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43361,observation-12ef40c1-0e58-48db-b440-3f386f0cca33-14,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33-14/,Phycis phycis,Mostelle de roche,,https://biolit.fr/wp-content/uploads/2023/07/mostelle.JPG,,TRUE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43363,observation-12ef40c1-0e58-48db-b440-3f386f0cca33-15,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33-15/,Sabella spallanzanii,Spirographe,,https://biolit.fr/wp-content/uploads/2023/07/Spirographe-scaled.jpg,,TRUE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43364,observation-12ef40c1-0e58-48db-b440-3f386f0cca33-16,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/rouget.JPG,,FALSE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43366,observation-12ef40c1-0e58-48db-b440-3f386f0cca33-17,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/Non identifié.PNG,,FALSE, +N1,59584,sortie-a587a606-b25b-498d-a810-6f2948b02b18,https://biolit.fr/sorties/sortie-a587a606-b25b-498d-a810-6f2948b02b18/,Guillaume D,,7/28/2018 0:00,11.0000000,13.0000000,46.139848000000,-1.172671000000,,"La Rochelle, Plage des Minimes",43367,observation-a587a606-b25b-498d-a810-6f2948b02b18,https://biolit.fr/observations/observation-a587a606-b25b-498d-a810-6f2948b02b18/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180728_113303-scaled.jpg,,TRUE, +N1,59584,sortie-a587a606-b25b-498d-a810-6f2948b02b18,https://biolit.fr/sorties/sortie-a587a606-b25b-498d-a810-6f2948b02b18/,Guillaume D,,7/28/2018 0:00,11.0000000,13.0000000,46.139848000000,-1.172671000000,,"La Rochelle, Plage des Minimes",43369,observation-a587a606-b25b-498d-a810-6f2948b02b18-2,https://biolit.fr/observations/observation-a587a606-b25b-498d-a810-6f2948b02b18-2/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20180728_115938-scaled.jpg,,TRUE, +N1,59584,sortie-a587a606-b25b-498d-a810-6f2948b02b18,https://biolit.fr/sorties/sortie-a587a606-b25b-498d-a810-6f2948b02b18/,Guillaume D,,7/28/2018 0:00,11.0000000,13.0000000,46.139848000000,-1.172671000000,,"La Rochelle, Plage des Minimes",43371,observation-a587a606-b25b-498d-a810-6f2948b02b18-3,https://biolit.fr/observations/observation-a587a606-b25b-498d-a810-6f2948b02b18-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20180728_120111_5mo-scaled.jpg,,TRUE, +N1,59584,sortie-a587a606-b25b-498d-a810-6f2948b02b18,https://biolit.fr/sorties/sortie-a587a606-b25b-498d-a810-6f2948b02b18/,Guillaume D,,7/28/2018 0:00,11.0000000,13.0000000,46.139848000000,-1.172671000000,,"La Rochelle, Plage des Minimes",43373,observation-a587a606-b25b-498d-a810-6f2948b02b18-4,https://biolit.fr/observations/observation-a587a606-b25b-498d-a810-6f2948b02b18-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180728_120123-scaled.jpg,,FALSE, +N1,59584,sortie-a587a606-b25b-498d-a810-6f2948b02b18,https://biolit.fr/sorties/sortie-a587a606-b25b-498d-a810-6f2948b02b18/,Guillaume D,,7/28/2018 0:00,11.0000000,13.0000000,46.139848000000,-1.172671000000,,"La Rochelle, Plage des Minimes",43375,observation-a587a606-b25b-498d-a810-6f2948b02b18-5,https://biolit.fr/observations/observation-a587a606-b25b-498d-a810-6f2948b02b18-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180728_120710-scaled.jpg,,FALSE, +N1,59584,sortie-a587a606-b25b-498d-a810-6f2948b02b18,https://biolit.fr/sorties/sortie-a587a606-b25b-498d-a810-6f2948b02b18/,Guillaume D,,7/28/2018 0:00,11.0000000,13.0000000,46.139848000000,-1.172671000000,,"La Rochelle, Plage des Minimes",43377,observation-a587a606-b25b-498d-a810-6f2948b02b18-6,https://biolit.fr/observations/observation-a587a606-b25b-498d-a810-6f2948b02b18-6/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180728_122459-scaled.jpg,,TRUE, +N1,59584,sortie-a587a606-b25b-498d-a810-6f2948b02b18,https://biolit.fr/sorties/sortie-a587a606-b25b-498d-a810-6f2948b02b18/,Guillaume D,,7/28/2018 0:00,11.0000000,13.0000000,46.139848000000,-1.172671000000,,"La Rochelle, Plage des Minimes",43379,observation-a587a606-b25b-498d-a810-6f2948b02b18-7,https://biolit.fr/observations/observation-a587a606-b25b-498d-a810-6f2948b02b18-7/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/20180728_124345-scaled.jpg,,TRUE, +N1,59585,sortie-10937bbe-f46f-488e-8f09-64e64b9979b1,https://biolit.fr/sorties/sortie-10937bbe-f46f-488e-8f09-64e64b9979b1/,LPO Occitanie (délégation Hérault),,7/26/2018 0:00,10.0000000,12.0000000,43.326788000000,3.544656000000,,"Marseillan, Maldormir",43381,observation-10937bbe-f46f-488e-8f09-64e64b9979b1,https://biolit.fr/observations/observation-10937bbe-f46f-488e-8f09-64e64b9979b1/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/2023/07/20180726_114329.jpg,,TRUE, +N1,59586,sortie-e4d6d3fd-817b-4a3b-81b8-fec83c2bcb88,https://biolit.fr/sorties/sortie-e4d6d3fd-817b-4a3b-81b8-fec83c2bcb88/,TRex58,,7/20/2018 0:00,17.0000000,17.0000000,47.967699000000,-4.431713000000,,Kerrest près Porzambréval,43383,observation-e4d6d3fd-817b-4a3b-81b8-fec83c2bcb88,https://biolit.fr/observations/observation-e4d6d3fd-817b-4a3b-81b8-fec83c2bcb88/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180720_172722-scaled.jpg,,FALSE, +N1,59587,sortie-19632b6a-bd9a-443e-99c0-5cdebfa6bd67,https://biolit.fr/sorties/sortie-19632b6a-bd9a-443e-99c0-5cdebfa6bd67/,PEP Le Hedraou,,7/18/2018 0:00,15.0000000,17.0000000,48.816268000000,-3.42622600000,,Pors ar goret,43385,observation-19632b6a-bd9a-443e-99c0-5cdebfa6bd67,https://biolit.fr/observations/observation-19632b6a-bd9a-443e-99c0-5cdebfa6bd67/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/P1050999-scaled.jpg,,TRUE, +N1,59587,sortie-19632b6a-bd9a-443e-99c0-5cdebfa6bd67,https://biolit.fr/sorties/sortie-19632b6a-bd9a-443e-99c0-5cdebfa6bd67/,PEP Le Hedraou,,7/18/2018 0:00,15.0000000,17.0000000,48.816268000000,-3.42622600000,,Pors ar goret,43387,observation-19632b6a-bd9a-443e-99c0-5cdebfa6bd67-2,https://biolit.fr/observations/observation-19632b6a-bd9a-443e-99c0-5cdebfa6bd67-2/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/P1060006_0-scaled.jpg,,TRUE, +N1,59588,sortie-5ea7f90c-72fd-40af-88ff-9d27f3f879af,https://biolit.fr/sorties/sortie-5ea7f90c-72fd-40af-88ff-9d27f3f879af/,maudcpie,,7/17/2018 0:00,15.0000000,17.0000000,43.286454000000,3.394233000000,,Plage de Sainte Genevieve à Vias (34450),43389,observation-5ea7f90c-72fd-40af-88ff-9d27f3f879af,https://biolit.fr/observations/observation-5ea7f90c-72fd-40af-88ff-9d27f3f879af/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180717_111355-rotated.jpg,,FALSE, +N1,59588,sortie-5ea7f90c-72fd-40af-88ff-9d27f3f879af,https://biolit.fr/sorties/sortie-5ea7f90c-72fd-40af-88ff-9d27f3f879af/,maudcpie,,7/17/2018 0:00,15.0000000,17.0000000,43.286454000000,3.394233000000,,Plage de Sainte Genevieve à Vias (34450),43391,observation-5ea7f90c-72fd-40af-88ff-9d27f3f879af-2,https://biolit.fr/observations/observation-5ea7f90c-72fd-40af-88ff-9d27f3f879af-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180717_111359-rotated.jpg,,FALSE, +N1,59589,sortie-99e09a64-c77e-4637-95ca-803ed9a524bb,https://biolit.fr/sorties/sortie-99e09a64-c77e-4637-95ca-803ed9a524bb/,Association Avril - Vigie des havres,,7/16/2018 0:00,15.0000000,16.0000000,48.968529000000,-1.562650000000,,Hauteville/mer,43393,observation-99e09a64-c77e-4637-95ca-803ed9a524bb,https://biolit.fr/observations/observation-99e09a64-c77e-4637-95ca-803ed9a524bb/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/20180716_144410-scaled.jpg,,TRUE, +N1,59589,sortie-99e09a64-c77e-4637-95ca-803ed9a524bb,https://biolit.fr/sorties/sortie-99e09a64-c77e-4637-95ca-803ed9a524bb/,Association Avril - Vigie des havres,,7/16/2018 0:00,15.0000000,16.0000000,48.968529000000,-1.562650000000,,Hauteville/mer,43395,observation-99e09a64-c77e-4637-95ca-803ed9a524bb-2,https://biolit.fr/observations/observation-99e09a64-c77e-4637-95ca-803ed9a524bb-2/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20180716_145331-scaled.jpg,,TRUE, +N1,59589,sortie-99e09a64-c77e-4637-95ca-803ed9a524bb,https://biolit.fr/sorties/sortie-99e09a64-c77e-4637-95ca-803ed9a524bb/,Association Avril - Vigie des havres,,7/16/2018 0:00,15.0000000,16.0000000,48.968529000000,-1.562650000000,,Hauteville/mer,43397,observation-99e09a64-c77e-4637-95ca-803ed9a524bb-3,https://biolit.fr/observations/observation-99e09a64-c77e-4637-95ca-803ed9a524bb-3/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/20180716_145511-scaled.jpg,,TRUE, +N1,59590,sortie-659972c7-3501-4174-bdb6-28aae831b651,https://biolit.fr/sorties/sortie-659972c7-3501-4174-bdb6-28aae831b651/,laurent,,07/08/2018,16.0000000,19.0000000,43.107718000000,5.954315000000,,yacht club de toulon,43399,observation-659972c7-3501-4174-bdb6-28aae831b651,https://biolit.fr/observations/observation-659972c7-3501-4174-bdb6-28aae831b651/,Creseis clava,Pteropode aiguille droite,,https://biolit.fr/wp-content/uploads/2023/07/GOPR3854-scaled.jpg,,TRUE, +N1,59591,sortie-2d981003-ef76-4345-936e-2a7be2801816,https://biolit.fr/sorties/sortie-2d981003-ef76-4345-936e-2a7be2801816/,Centre de Découverte Mer et Montagne,,07/10/2018,14.0000000,16.0000000,43.506082000000,6.950230000000,,Sentier sous-marin département 06,43401,observation-2d981003-ef76-4345-936e-2a7be2801816,https://biolit.fr/observations/observation-2d981003-ef76-4345-936e-2a7be2801816/,Dicentrarchus labrax,Bar commun loup,,https://biolit.fr/wp-content/uploads/2023/07/180710_PA_Biolit_DL (57)-scaled.jpg,,TRUE, +N1,59591,sortie-2d981003-ef76-4345-936e-2a7be2801816,https://biolit.fr/sorties/sortie-2d981003-ef76-4345-936e-2a7be2801816/,Centre de Découverte Mer et Montagne,,07/10/2018,14.0000000,16.0000000,43.506082000000,6.950230000000,,Sentier sous-marin département 06,43403,observation-2d981003-ef76-4345-936e-2a7be2801816-2,https://biolit.fr/observations/observation-2d981003-ef76-4345-936e-2a7be2801816-2/,Serranus scriba,Serran-écriture,,https://biolit.fr/wp-content/uploads/2023/07/180710_PA_Biolit_DL (73)-scaled.jpg,,TRUE, +N1,59591,sortie-2d981003-ef76-4345-936e-2a7be2801816,https://biolit.fr/sorties/sortie-2d981003-ef76-4345-936e-2a7be2801816/,Centre de Découverte Mer et Montagne,,07/10/2018,14.0000000,16.0000000,43.506082000000,6.950230000000,,Sentier sous-marin département 06,43405,observation-2d981003-ef76-4345-936e-2a7be2801816-3,https://biolit.fr/observations/observation-2d981003-ef76-4345-936e-2a7be2801816-3/,Serranus cabrilla,Serran-chèvre,,https://biolit.fr/wp-content/uploads/2023/07/180710_PA_Biolit_DL (85)-scaled.jpg,,TRUE, +N1,59591,sortie-2d981003-ef76-4345-936e-2a7be2801816,https://biolit.fr/sorties/sortie-2d981003-ef76-4345-936e-2a7be2801816/,Centre de Découverte Mer et Montagne,,07/10/2018,14.0000000,16.0000000,43.506082000000,6.950230000000,,Sentier sous-marin département 06,43407,observation-2d981003-ef76-4345-936e-2a7be2801816-4,https://biolit.fr/observations/observation-2d981003-ef76-4345-936e-2a7be2801816-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/180710_PA_Biolit_DL (150)-scaled.jpg,,FALSE, +N1,59591,sortie-2d981003-ef76-4345-936e-2a7be2801816,https://biolit.fr/sorties/sortie-2d981003-ef76-4345-936e-2a7be2801816/,Centre de Découverte Mer et Montagne,,07/10/2018,14.0000000,16.0000000,43.506082000000,6.950230000000,,Sentier sous-marin département 06,43409,observation-2d981003-ef76-4345-936e-2a7be2801816-5,https://biolit.fr/observations/observation-2d981003-ef76-4345-936e-2a7be2801816-5/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/2023/07/180710_PA_Biolit_DL (141)-scaled.jpg,,TRUE, +N1,59592,sortie-bbd5e7d5-31a2-427b-9ab5-04227e4e2732,https://biolit.fr/sorties/sortie-bbd5e7d5-31a2-427b-9ab5-04227e4e2732/,Association Avril - Vigie des havres,,07/09/2018,15.0000000,16.0000000,48.998707000000,-1.580997000000,,agon coutainville,43411,observation-bbd5e7d5-31a2-427b-9ab5-04227e4e2732,https://biolit.fr/observations/observation-bbd5e7d5-31a2-427b-9ab5-04227e4e2732/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0105[1]_0-scaled.jpg,,TRUE, +N1,59593,sortie-a5ba93f4-af62-4962-8ba6-86c733a16698,https://biolit.fr/sorties/sortie-a5ba93f4-af62-4962-8ba6-86c733a16698/,Guillaume D,,07/05/2018,15.0000000,17.0000000,46.139707000000,-1.172747000000,,"La Rochelle, Plage des Minimes",43413,observation-a5ba93f4-af62-4962-8ba6-86c733a16698,https://biolit.fr/observations/observation-a5ba93f4-af62-4962-8ba6-86c733a16698/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180705_155034-scaled.jpg,,TRUE, +N1,59593,sortie-a5ba93f4-af62-4962-8ba6-86c733a16698,https://biolit.fr/sorties/sortie-a5ba93f4-af62-4962-8ba6-86c733a16698/,Guillaume D,,07/05/2018,15.0000000,17.0000000,46.139707000000,-1.172747000000,,"La Rochelle, Plage des Minimes",43415,observation-a5ba93f4-af62-4962-8ba6-86c733a16698-2,https://biolit.fr/observations/observation-a5ba93f4-af62-4962-8ba6-86c733a16698-2/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/07/20180705_155111-scaled.jpg,,TRUE, +N1,59593,sortie-a5ba93f4-af62-4962-8ba6-86c733a16698,https://biolit.fr/sorties/sortie-a5ba93f4-af62-4962-8ba6-86c733a16698/,Guillaume D,,07/05/2018,15.0000000,17.0000000,46.139707000000,-1.172747000000,,"La Rochelle, Plage des Minimes",43417,observation-a5ba93f4-af62-4962-8ba6-86c733a16698-3,https://biolit.fr/observations/observation-a5ba93f4-af62-4962-8ba6-86c733a16698-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180705_155658-scaled.jpg,,FALSE, +N1,59593,sortie-a5ba93f4-af62-4962-8ba6-86c733a16698,https://biolit.fr/sorties/sortie-a5ba93f4-af62-4962-8ba6-86c733a16698/,Guillaume D,,07/05/2018,15.0000000,17.0000000,46.139707000000,-1.172747000000,,"La Rochelle, Plage des Minimes",43419,observation-a5ba93f4-af62-4962-8ba6-86c733a16698-4,https://biolit.fr/observations/observation-a5ba93f4-af62-4962-8ba6-86c733a16698-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180705_160358_5mo.jpg,,FALSE, +N1,59593,sortie-a5ba93f4-af62-4962-8ba6-86c733a16698,https://biolit.fr/sorties/sortie-a5ba93f4-af62-4962-8ba6-86c733a16698/,Guillaume D,,07/05/2018,15.0000000,17.0000000,46.139707000000,-1.172747000000,,"La Rochelle, Plage des Minimes",43421,observation-a5ba93f4-af62-4962-8ba6-86c733a16698-5,https://biolit.fr/observations/observation-a5ba93f4-af62-4962-8ba6-86c733a16698-5/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180705_160435_5mo.jpg,,TRUE, +N1,59593,sortie-a5ba93f4-af62-4962-8ba6-86c733a16698,https://biolit.fr/sorties/sortie-a5ba93f4-af62-4962-8ba6-86c733a16698/,Guillaume D,,07/05/2018,15.0000000,17.0000000,46.139707000000,-1.172747000000,,"La Rochelle, Plage des Minimes",43423,observation-a5ba93f4-af62-4962-8ba6-86c733a16698-6,https://biolit.fr/observations/observation-a5ba93f4-af62-4962-8ba6-86c733a16698-6/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/20180705_161044-scaled.jpg,,TRUE, +N1,59593,sortie-a5ba93f4-af62-4962-8ba6-86c733a16698,https://biolit.fr/sorties/sortie-a5ba93f4-af62-4962-8ba6-86c733a16698/,Guillaume D,,07/05/2018,15.0000000,17.0000000,46.139707000000,-1.172747000000,,"La Rochelle, Plage des Minimes",43427,observation-a5ba93f4-af62-4962-8ba6-86c733a16698-8,https://biolit.fr/observations/observation-a5ba93f4-af62-4962-8ba6-86c733a16698-8/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180705_161722-scaled.jpg,,TRUE, +N1,59593,sortie-a5ba93f4-af62-4962-8ba6-86c733a16698,https://biolit.fr/sorties/sortie-a5ba93f4-af62-4962-8ba6-86c733a16698/,Guillaume D,,07/05/2018,15.0000000,17.0000000,46.139707000000,-1.172747000000,,"La Rochelle, Plage des Minimes",43429,observation-a5ba93f4-af62-4962-8ba6-86c733a16698-9,https://biolit.fr/observations/observation-a5ba93f4-af62-4962-8ba6-86c733a16698-9/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180705_162249-scaled.jpg,,TRUE, +N1,59593,sortie-a5ba93f4-af62-4962-8ba6-86c733a16698,https://biolit.fr/sorties/sortie-a5ba93f4-af62-4962-8ba6-86c733a16698/,Guillaume D,,07/05/2018,15.0000000,17.0000000,46.139707000000,-1.172747000000,,"La Rochelle, Plage des Minimes",43431,observation-a5ba93f4-af62-4962-8ba6-86c733a16698-10,https://biolit.fr/observations/observation-a5ba93f4-af62-4962-8ba6-86c733a16698-10/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/20180705_162601-scaled.jpg,,TRUE, +N1,59594,sortie-01b318ed-ffca-4721-b5f4-4caba284a8a3,https://biolit.fr/sorties/sortie-01b318ed-ffca-4721-b5f4-4caba284a8a3/,Phil,,4/28/2018 0:00,11.0:45,11.0:55,47.894817000000,-3.966244000000,,La Forêt-Fouesnant - Finistère,43433,observation-01b318ed-ffca-4721-b5f4-4caba284a8a3,https://biolit.fr/observations/observation-01b318ed-ffca-4721-b5f4-4caba284a8a3/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/2023/07/P1110154.JPG,,TRUE, +N1,59594,sortie-01b318ed-ffca-4721-b5f4-4caba284a8a3,https://biolit.fr/sorties/sortie-01b318ed-ffca-4721-b5f4-4caba284a8a3/,Phil,,4/28/2018 0:00,11.0:45,11.0:55,47.894817000000,-3.966244000000,,La Forêt-Fouesnant - Finistère,43435,observation-01b318ed-ffca-4721-b5f4-4caba284a8a3-2,https://biolit.fr/observations/observation-01b318ed-ffca-4721-b5f4-4caba284a8a3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110150.JPG,,FALSE, +N1,59594,sortie-01b318ed-ffca-4721-b5f4-4caba284a8a3,https://biolit.fr/sorties/sortie-01b318ed-ffca-4721-b5f4-4caba284a8a3/,Phil,,4/28/2018 0:00,11.0:45,11.0:55,47.894817000000,-3.966244000000,,La Forêt-Fouesnant - Finistère,43437,observation-01b318ed-ffca-4721-b5f4-4caba284a8a3-3,https://biolit.fr/observations/observation-01b318ed-ffca-4721-b5f4-4caba284a8a3-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110160.JPG,,FALSE, +N1,59594,sortie-01b318ed-ffca-4721-b5f4-4caba284a8a3,https://biolit.fr/sorties/sortie-01b318ed-ffca-4721-b5f4-4caba284a8a3/,Phil,,4/28/2018 0:00,11.0:45,11.0:55,47.894817000000,-3.966244000000,,La Forêt-Fouesnant - Finistère,43439,observation-01b318ed-ffca-4721-b5f4-4caba284a8a3-4,https://biolit.fr/observations/observation-01b318ed-ffca-4721-b5f4-4caba284a8a3-4/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/2023/07/P1110166.JPG,,TRUE, +N1,59595,sortie-f5ec5d7f-f030-46e6-9364-b4b4f620e216,https://biolit.fr/sorties/sortie-f5ec5d7f-f030-46e6-9364-b4b4f620e216/,Phil,,5/20/2018 0:00,14.0:35,14.0:45,47.800333000000,-4.179608000000,,Loctudy - Finistère,43441,observation-f5ec5d7f-f030-46e6-9364-b4b4f620e216,https://biolit.fr/observations/observation-f5ec5d7f-f030-46e6-9364-b4b4f620e216/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/P1110472.JPG,,TRUE, +N1,59595,sortie-f5ec5d7f-f030-46e6-9364-b4b4f620e216,https://biolit.fr/sorties/sortie-f5ec5d7f-f030-46e6-9364-b4b4f620e216/,Phil,,5/20/2018 0:00,14.0:35,14.0:45,47.800333000000,-4.179608000000,,Loctudy - Finistère,43443,observation-f5ec5d7f-f030-46e6-9364-b4b4f620e216-2,https://biolit.fr/observations/observation-f5ec5d7f-f030-46e6-9364-b4b4f620e216-2/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/P1110470.JPG,,TRUE, +N1,59595,sortie-f5ec5d7f-f030-46e6-9364-b4b4f620e216,https://biolit.fr/sorties/sortie-f5ec5d7f-f030-46e6-9364-b4b4f620e216/,Phil,,5/20/2018 0:00,14.0:35,14.0:45,47.800333000000,-4.179608000000,,Loctudy - Finistère,43445,observation-f5ec5d7f-f030-46e6-9364-b4b4f620e216-3,https://biolit.fr/observations/observation-f5ec5d7f-f030-46e6-9364-b4b4f620e216-3/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/P1110469.JPG,,TRUE, +N1,59595,sortie-f5ec5d7f-f030-46e6-9364-b4b4f620e216,https://biolit.fr/sorties/sortie-f5ec5d7f-f030-46e6-9364-b4b4f620e216/,Phil,,5/20/2018 0:00,14.0:35,14.0:45,47.800333000000,-4.179608000000,,Loctudy - Finistère,43447,observation-f5ec5d7f-f030-46e6-9364-b4b4f620e216-4,https://biolit.fr/observations/observation-f5ec5d7f-f030-46e6-9364-b4b4f620e216-4/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1110463.JPG,,TRUE, +N1,59595,sortie-f5ec5d7f-f030-46e6-9364-b4b4f620e216,https://biolit.fr/sorties/sortie-f5ec5d7f-f030-46e6-9364-b4b4f620e216/,Phil,,5/20/2018 0:00,14.0:35,14.0:45,47.800333000000,-4.179608000000,,Loctudy - Finistère,43449,observation-f5ec5d7f-f030-46e6-9364-b4b4f620e216-5,https://biolit.fr/observations/observation-f5ec5d7f-f030-46e6-9364-b4b4f620e216-5/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1110465.JPG,,TRUE, +N1,59596,sortie-e85a60a4-ee96-4e0b-885a-43c9e2dfbe24,https://biolit.fr/sorties/sortie-e85a60a4-ee96-4e0b-885a-43c9e2dfbe24/,Septentrion Environnement,,07/01/2018,15.0000000,17.0000000,43.196987000000,5.361726000000,,La pierre de Briançon,43451,observation-e85a60a4-ee96-4e0b-885a-43c9e2dfbe24,https://biolit.fr/observations/observation-e85a60a4-ee96-4e0b-885a-43c9e2dfbe24/,Peyssonnelia squamaria,Peyssonnelia,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3976-scaled.jpg,,TRUE, +N1,59597,sortie-2672d453-b563-492d-85ca-d4e3912c3c99,https://biolit.fr/sorties/sortie-2672d453-b563-492d-85ca-d4e3912c3c99/,Fab8113,,6/24/2018 0:00,15.0000000,16.0000000,43.177235000000,5.370474000000,,Marseille,43453,observation-2672d453-b563-492d-85ca-d4e3912c3c99,https://biolit.fr/observations/observation-2672d453-b563-492d-85ca-d4e3912c3c99/,,,,https://biolit.fr/wp-content/uploads/2023/07/Anémone verte_0-scaled.jpg,,FALSE, +N1,59597,sortie-2672d453-b563-492d-85ca-d4e3912c3c99,https://biolit.fr/sorties/sortie-2672d453-b563-492d-85ca-d4e3912c3c99/,Fab8113,,6/24/2018 0:00,15.0000000,16.0000000,43.177235000000,5.370474000000,,Marseille,43455,observation-2672d453-b563-492d-85ca-d4e3912c3c99-2,https://biolit.fr/observations/observation-2672d453-b563-492d-85ca-d4e3912c3c99-2/,Chromis chromis,Castagnole,,https://biolit.fr/wp-content/uploads/2023/07/Castagnoles-scaled.jpg,,TRUE, +N1,59597,sortie-2672d453-b563-492d-85ca-d4e3912c3c99,https://biolit.fr/sorties/sortie-2672d453-b563-492d-85ca-d4e3912c3c99/,Fab8113,,6/24/2018 0:00,15.0000000,16.0000000,43.177235000000,5.370474000000,,Marseille,43457,observation-2672d453-b563-492d-85ca-d4e3912c3c99-3,https://biolit.fr/observations/observation-2672d453-b563-492d-85ca-d4e3912c3c99-3/,Symphodus tinca,Crénilabre-paon,,https://biolit.fr/wp-content/uploads/2023/07/Crénilabre paon (mâle)-scaled.jpg,,TRUE, +N1,59597,sortie-2672d453-b563-492d-85ca-d4e3912c3c99,https://biolit.fr/sorties/sortie-2672d453-b563-492d-85ca-d4e3912c3c99/,Fab8113,,6/24/2018 0:00,15.0000000,16.0000000,43.177235000000,5.370474000000,,Marseille,43459,observation-2672d453-b563-492d-85ca-d4e3912c3c99-4,https://biolit.fr/observations/observation-2672d453-b563-492d-85ca-d4e3912c3c99-4/,Echinaster (Echinaster) sepositus,Etoile de mer rouge,,https://biolit.fr/wp-content/uploads/2023/07/Etoile de Mer-scaled.jpg,,TRUE, +N1,59597,sortie-2672d453-b563-492d-85ca-d4e3912c3c99,https://biolit.fr/sorties/sortie-2672d453-b563-492d-85ca-d4e3912c3c99/,Fab8113,,6/24/2018 0:00,15.0000000,16.0000000,43.177235000000,5.370474000000,,Marseille,43461,observation-2672d453-b563-492d-85ca-d4e3912c3c99-5,https://biolit.fr/observations/observation-2672d453-b563-492d-85ca-d4e3912c3c99-5/,Paramuricea clavata,Gorgone pourpre,,https://biolit.fr/wp-content/uploads/2023/07/Gorgone rouge-scaled.jpg,,TRUE, +N1,59597,sortie-2672d453-b563-492d-85ca-d4e3912c3c99,https://biolit.fr/sorties/sortie-2672d453-b563-492d-85ca-d4e3912c3c99/,Fab8113,,6/24/2018 0:00,15.0000000,16.0000000,43.177235000000,5.370474000000,,Marseille,43463,observation-2672d453-b563-492d-85ca-d4e3912c3c99-6,https://biolit.fr/observations/observation-2672d453-b563-492d-85ca-d4e3912c3c99-6/,Paramuricea clavata,Gorgone pourpre,,https://biolit.fr/wp-content/uploads/2023/07/Gorgone rouge_2-scaled.jpg,,TRUE, +N1,59597,sortie-2672d453-b563-492d-85ca-d4e3912c3c99,https://biolit.fr/sorties/sortie-2672d453-b563-492d-85ca-d4e3912c3c99/,Fab8113,,6/24/2018 0:00,15.0000000,16.0000000,43.177235000000,5.370474000000,,Marseille,43465,observation-2672d453-b563-492d-85ca-d4e3912c3c99-7,https://biolit.fr/observations/observation-2672d453-b563-492d-85ca-d4e3912c3c99-7/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/Oursin noir-scaled.jpg,,TRUE, +N1,59597,sortie-2672d453-b563-492d-85ca-d4e3912c3c99,https://biolit.fr/sorties/sortie-2672d453-b563-492d-85ca-d4e3912c3c99/,Fab8113,,6/24/2018 0:00,15.0000000,16.0000000,43.177235000000,5.370474000000,,Marseille,43467,observation-2672d453-b563-492d-85ca-d4e3912c3c99-8,https://biolit.fr/observations/observation-2672d453-b563-492d-85ca-d4e3912c3c99-8/,Sphaerechinus granularis,Oursin granuleux,,https://biolit.fr/wp-content/uploads/2023/07/Oursin violet à pointes blanches-scaled.jpg,,TRUE, +N1,59597,sortie-2672d453-b563-492d-85ca-d4e3912c3c99,https://biolit.fr/sorties/sortie-2672d453-b563-492d-85ca-d4e3912c3c99/,Fab8113,,6/24/2018 0:00,15.0000000,16.0000000,43.177235000000,5.370474000000,,Marseille,43469,observation-2672d453-b563-492d-85ca-d4e3912c3c99-9,https://biolit.fr/observations/observation-2672d453-b563-492d-85ca-d4e3912c3c99-9/,Scorpaena porcus,Rascasse brune,,https://biolit.fr/wp-content/uploads/2023/07/Rascasse-scaled.jpg,,TRUE, +N1,59597,sortie-2672d453-b563-492d-85ca-d4e3912c3c99,https://biolit.fr/sorties/sortie-2672d453-b563-492d-85ca-d4e3912c3c99/,Fab8113,,6/24/2018 0:00,15.0000000,16.0000000,43.177235000000,5.370474000000,,Marseille,43471,observation-2672d453-b563-492d-85ca-d4e3912c3c99-10,https://biolit.fr/observations/observation-2672d453-b563-492d-85ca-d4e3912c3c99-10/,Diplodus sargus,Sar commun de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/Sar Commun-scaled.jpg,,TRUE, +N1,59597,sortie-2672d453-b563-492d-85ca-d4e3912c3c99,https://biolit.fr/sorties/sortie-2672d453-b563-492d-85ca-d4e3912c3c99/,Fab8113,,6/24/2018 0:00,15.0000000,16.0000000,43.177235000000,5.370474000000,,Marseille,43472,observation-2672d453-b563-492d-85ca-d4e3912c3c99-11,https://biolit.fr/observations/observation-2672d453-b563-492d-85ca-d4e3912c3c99-11/,Diplodus vulgaris,Sar à tête noire,,https://biolit.fr/wp-content/uploads/2023/07/Sars à tête noire et castagnoles-scaled.jpg,,TRUE, +N1,59598,sortie-fa9370ae-7b20-427f-a53b-ecd8e2e212d6,https://biolit.fr/sorties/sortie-fa9370ae-7b20-427f-a53b-ecd8e2e212d6/,Phil,,06/02/2018,12.0000000,12.0000000,48.168352000000,-4.298529000000,,Plomodiern - Finistère,43474,observation-fa9370ae-7b20-427f-a53b-ecd8e2e212d6,https://biolit.fr/observations/observation-fa9370ae-7b20-427f-a53b-ecd8e2e212d6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110635.JPG,,FALSE, +N1,59598,sortie-fa9370ae-7b20-427f-a53b-ecd8e2e212d6,https://biolit.fr/sorties/sortie-fa9370ae-7b20-427f-a53b-ecd8e2e212d6/,Phil,,06/02/2018,12.0000000,12.0000000,48.168352000000,-4.298529000000,,Plomodiern - Finistère,43476,observation-fa9370ae-7b20-427f-a53b-ecd8e2e212d6-2,https://biolit.fr/observations/observation-fa9370ae-7b20-427f-a53b-ecd8e2e212d6-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1110639.JPG,,TRUE, +N1,59598,sortie-fa9370ae-7b20-427f-a53b-ecd8e2e212d6,https://biolit.fr/sorties/sortie-fa9370ae-7b20-427f-a53b-ecd8e2e212d6/,Phil,,06/02/2018,12.0000000,12.0000000,48.168352000000,-4.298529000000,,Plomodiern - Finistère,43478,observation-fa9370ae-7b20-427f-a53b-ecd8e2e212d6-3,https://biolit.fr/observations/observation-fa9370ae-7b20-427f-a53b-ecd8e2e212d6-3/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1110640.JPG,,TRUE, +N1,59598,sortie-fa9370ae-7b20-427f-a53b-ecd8e2e212d6,https://biolit.fr/sorties/sortie-fa9370ae-7b20-427f-a53b-ecd8e2e212d6/,Phil,,06/02/2018,12.0000000,12.0000000,48.168352000000,-4.298529000000,,Plomodiern - Finistère,43480,observation-fa9370ae-7b20-427f-a53b-ecd8e2e212d6-4,https://biolit.fr/observations/observation-fa9370ae-7b20-427f-a53b-ecd8e2e212d6-4/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1110642.JPG,,TRUE, +N1,59598,sortie-fa9370ae-7b20-427f-a53b-ecd8e2e212d6,https://biolit.fr/sorties/sortie-fa9370ae-7b20-427f-a53b-ecd8e2e212d6/,Phil,,06/02/2018,12.0000000,12.0000000,48.168352000000,-4.298529000000,,Plomodiern - Finistère,43482,observation-fa9370ae-7b20-427f-a53b-ecd8e2e212d6-5,https://biolit.fr/observations/observation-fa9370ae-7b20-427f-a53b-ecd8e2e212d6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110645.JPG,,FALSE, +N1,59598,sortie-fa9370ae-7b20-427f-a53b-ecd8e2e212d6,https://biolit.fr/sorties/sortie-fa9370ae-7b20-427f-a53b-ecd8e2e212d6/,Phil,,06/02/2018,12.0000000,12.0000000,48.168352000000,-4.298529000000,,Plomodiern - Finistère,43484,observation-fa9370ae-7b20-427f-a53b-ecd8e2e212d6-6,https://biolit.fr/observations/observation-fa9370ae-7b20-427f-a53b-ecd8e2e212d6-6/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1110633.JPG,,TRUE, +N1,59598,sortie-fa9370ae-7b20-427f-a53b-ecd8e2e212d6,https://biolit.fr/sorties/sortie-fa9370ae-7b20-427f-a53b-ecd8e2e212d6/,Phil,,06/02/2018,12.0000000,12.0000000,48.168352000000,-4.298529000000,,Plomodiern - Finistère,43486,observation-fa9370ae-7b20-427f-a53b-ecd8e2e212d6-7,https://biolit.fr/observations/observation-fa9370ae-7b20-427f-a53b-ecd8e2e212d6-7/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1110636.JPG,,TRUE, +N1,59599,sortie-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b,https://biolit.fr/sorties/sortie-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b/,Phil,,5/17/2018 0:00,12.0000000,12.0:25,47.893175000000,-3.968068000000,,La Forêt-Fouesnant - Kerleven,43488,observation-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b,https://biolit.fr/observations/observation-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1110344.JPG,,TRUE, +N1,59599,sortie-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b,https://biolit.fr/sorties/sortie-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b/,Phil,,5/17/2018 0:00,12.0000000,12.0:25,47.893175000000,-3.968068000000,,La Forêt-Fouesnant - Kerleven,43490,observation-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b-2,https://biolit.fr/observations/observation-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110348.JPG,,FALSE, +N1,59599,sortie-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b,https://biolit.fr/sorties/sortie-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b/,Phil,,5/17/2018 0:00,12.0000000,12.0:25,47.893175000000,-3.968068000000,,La Forêt-Fouesnant - Kerleven,43492,observation-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b-3,https://biolit.fr/observations/observation-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110349.JPG,,FALSE, +N1,59599,sortie-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b,https://biolit.fr/sorties/sortie-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b/,Phil,,5/17/2018 0:00,12.0000000,12.0:25,47.893175000000,-3.968068000000,,La Forêt-Fouesnant - Kerleven,43494,observation-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b-4,https://biolit.fr/observations/observation-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110350.JPG,,FALSE, +N1,59599,sortie-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b,https://biolit.fr/sorties/sortie-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b/,Phil,,5/17/2018 0:00,12.0000000,12.0:25,47.893175000000,-3.968068000000,,La Forêt-Fouesnant - Kerleven,43496,observation-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b-5,https://biolit.fr/observations/observation-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110353.JPG,,FALSE, +N1,59600,sortie-cb659767-8c64-4fc3-aebc-675f10b2762c,https://biolit.fr/sorties/sortie-cb659767-8c64-4fc3-aebc-675f10b2762c/,Socam,,07/01/2018,9.0:35,10.0000000,43.19671000000,5.361538000000,,"Marseille, Calanques",43498,observation-cb659767-8c64-4fc3-aebc-675f10b2762c,https://biolit.fr/observations/observation-cb659767-8c64-4fc3-aebc-675f10b2762c/,Peltodoris atromaculata,Doris dalmatienne,,https://biolit.fr/wp-content/uploads/2023/07/DSC03351.JPG,,TRUE, +N1,59600,sortie-cb659767-8c64-4fc3-aebc-675f10b2762c,https://biolit.fr/sorties/sortie-cb659767-8c64-4fc3-aebc-675f10b2762c/,Socam,,07/01/2018,9.0:35,10.0000000,43.19671000000,5.361538000000,,"Marseille, Calanques",43500,observation-cb659767-8c64-4fc3-aebc-675f10b2762c-2,https://biolit.fr/observations/observation-cb659767-8c64-4fc3-aebc-675f10b2762c-2/,Palinurus elephas,Langouste rouge,,https://biolit.fr/wp-content/uploads/2023/07/DSC03356.JPG,,TRUE, +N1,59600,sortie-cb659767-8c64-4fc3-aebc-675f10b2762c,https://biolit.fr/sorties/sortie-cb659767-8c64-4fc3-aebc-675f10b2762c/,Socam,,07/01/2018,9.0:35,10.0000000,43.19671000000,5.361538000000,,"Marseille, Calanques",43502,observation-cb659767-8c64-4fc3-aebc-675f10b2762c-3,https://biolit.fr/observations/observation-cb659767-8c64-4fc3-aebc-675f10b2762c-3/,Felimare tricolor,Doris tricolore,,https://biolit.fr/wp-content/uploads/2023/07/DSC03358.JPG,,TRUE, +N1,59600,sortie-cb659767-8c64-4fc3-aebc-675f10b2762c,https://biolit.fr/sorties/sortie-cb659767-8c64-4fc3-aebc-675f10b2762c/,Socam,,07/01/2018,9.0:35,10.0000000,43.19671000000,5.361538000000,,"Marseille, Calanques",43504,observation-cb659767-8c64-4fc3-aebc-675f10b2762c-4,https://biolit.fr/observations/observation-cb659767-8c64-4fc3-aebc-675f10b2762c-4/,Cratena peregrina,Hervia,,https://biolit.fr/wp-content/uploads/2023/07/DSC03360.JPG,,TRUE, +N1,59600,sortie-cb659767-8c64-4fc3-aebc-675f10b2762c,https://biolit.fr/sorties/sortie-cb659767-8c64-4fc3-aebc-675f10b2762c/,Socam,,07/01/2018,9.0:35,10.0000000,43.19671000000,5.361538000000,,"Marseille, Calanques",43506,observation-cb659767-8c64-4fc3-aebc-675f10b2762c-5,https://biolit.fr/observations/observation-cb659767-8c64-4fc3-aebc-675f10b2762c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03361.JPG,,FALSE, +N1,59600,sortie-cb659767-8c64-4fc3-aebc-675f10b2762c,https://biolit.fr/sorties/sortie-cb659767-8c64-4fc3-aebc-675f10b2762c/,Socam,,07/01/2018,9.0:35,10.0000000,43.19671000000,5.361538000000,,"Marseille, Calanques",43508,observation-cb659767-8c64-4fc3-aebc-675f10b2762c-6,https://biolit.fr/observations/observation-cb659767-8c64-4fc3-aebc-675f10b2762c-6/,Serranus cabrilla,Serran-chèvre,,https://biolit.fr/wp-content/uploads/2023/07/DSC03363.JPG,,TRUE, +N1,59600,sortie-cb659767-8c64-4fc3-aebc-675f10b2762c,https://biolit.fr/sorties/sortie-cb659767-8c64-4fc3-aebc-675f10b2762c/,Socam,,07/01/2018,9.0:35,10.0000000,43.19671000000,5.361538000000,,"Marseille, Calanques",43510,observation-cb659767-8c64-4fc3-aebc-675f10b2762c-7,https://biolit.fr/observations/observation-cb659767-8c64-4fc3-aebc-675f10b2762c-7/,Leptogorgia sarmentosa,Gorgone orange,,https://biolit.fr/wp-content/uploads/2023/07/DSC03345-scaled.jpg,,TRUE, +N1,59601,sortie-bda08560-a6b0-4fab-8c7a-a104a307c1df,https://biolit.fr/sorties/sortie-bda08560-a6b0-4fab-8c7a-a104a307c1df/,Guillaume D,,6/27/2018 0:00,10.0000000,12.0000000,46.13967800000,-1.172799000000,,"La Rochelle, Plage des Minimes",43512,observation-bda08560-a6b0-4fab-8c7a-a104a307c1df,https://biolit.fr/observations/observation-bda08560-a6b0-4fab-8c7a-a104a307c1df/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20180627_111724-scaled.jpg,,TRUE, +N1,59601,sortie-bda08560-a6b0-4fab-8c7a-a104a307c1df,https://biolit.fr/sorties/sortie-bda08560-a6b0-4fab-8c7a-a104a307c1df/,Guillaume D,,6/27/2018 0:00,10.0000000,12.0000000,46.13967800000,-1.172799000000,,"La Rochelle, Plage des Minimes",43514,observation-bda08560-a6b0-4fab-8c7a-a104a307c1df-2,https://biolit.fr/observations/observation-bda08560-a6b0-4fab-8c7a-a104a307c1df-2/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180627_112426-scaled.jpg,,TRUE, +N1,59602,sortie-9f9043fa-c5d7-45c9-ab95-d685b2123f0f,https://biolit.fr/sorties/sortie-9f9043fa-c5d7-45c9-ab95-d685b2123f0f/,Guillaume D,,6/19/2018 0:00,14.0000000,15.0000000,46.105545000000,-1.135409000000,,"Angoulins, Plage de la Platère",43516,observation-9f9043fa-c5d7-45c9-ab95-d685b2123f0f,https://biolit.fr/observations/observation-9f9043fa-c5d7-45c9-ab95-d685b2123f0f/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8240_modif5Mo-scaled.jpg,,FALSE, +N1,59602,sortie-9f9043fa-c5d7-45c9-ab95-d685b2123f0f,https://biolit.fr/sorties/sortie-9f9043fa-c5d7-45c9-ab95-d685b2123f0f/,Guillaume D,,6/19/2018 0:00,14.0000000,15.0000000,46.105545000000,-1.135409000000,,"Angoulins, Plage de la Platère",43518,observation-9f9043fa-c5d7-45c9-ab95-d685b2123f0f-2,https://biolit.fr/observations/observation-9f9043fa-c5d7-45c9-ab95-d685b2123f0f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8244_modif5Mo.jpg,,FALSE, +N1,59603,sortie-95622ee7-2ee0-43df-89c5-5a333329b587,https://biolit.fr/sorties/sortie-95622ee7-2ee0-43df-89c5-5a333329b587/,Septentrion Environnement,,6/24/2018 0:00,10.0000000,10.0:45,43.177481000000,5.372610000000,,La Calanque de la Boulegeade,43520,observation-95622ee7-2ee0-43df-89c5-5a333329b587,https://biolit.fr/observations/observation-95622ee7-2ee0-43df-89c5-5a333329b587/,Epinephelus marginatus,Mérou brun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3764-scaled.jpg,,TRUE, +N1,59604,sortie-a3577fcd-89b8-4a5d-9636-a0741490590e,https://biolit.fr/sorties/sortie-a3577fcd-89b8-4a5d-9636-a0741490590e/,Phil,,5/27/2018 0:00,14.0:35,14.0000000,47.799475000000,-4.178632000000,,Loctudy - Finistère,43522,observation-a3577fcd-89b8-4a5d-9636-a0741490590e,https://biolit.fr/observations/observation-a3577fcd-89b8-4a5d-9636-a0741490590e/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180527_143939.jpg,,FALSE, +N1,59604,sortie-a3577fcd-89b8-4a5d-9636-a0741490590e,https://biolit.fr/sorties/sortie-a3577fcd-89b8-4a5d-9636-a0741490590e/,Phil,,5/27/2018 0:00,14.0:35,14.0000000,47.799475000000,-4.178632000000,,Loctudy - Finistère,43524,observation-a3577fcd-89b8-4a5d-9636-a0741490590e-2,https://biolit.fr/observations/observation-a3577fcd-89b8-4a5d-9636-a0741490590e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180527_143934.jpg,,FALSE, +N1,59604,sortie-a3577fcd-89b8-4a5d-9636-a0741490590e,https://biolit.fr/sorties/sortie-a3577fcd-89b8-4a5d-9636-a0741490590e/,Phil,,5/27/2018 0:00,14.0:35,14.0000000,47.799475000000,-4.178632000000,,Loctudy - Finistère,43526,observation-a3577fcd-89b8-4a5d-9636-a0741490590e-3,https://biolit.fr/observations/observation-a3577fcd-89b8-4a5d-9636-a0741490590e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180527_143930.jpg,,FALSE, +N1,59604,sortie-a3577fcd-89b8-4a5d-9636-a0741490590e,https://biolit.fr/sorties/sortie-a3577fcd-89b8-4a5d-9636-a0741490590e/,Phil,,5/27/2018 0:00,14.0:35,14.0000000,47.799475000000,-4.178632000000,,Loctudy - Finistère,43528,observation-a3577fcd-89b8-4a5d-9636-a0741490590e-4,https://biolit.fr/observations/observation-a3577fcd-89b8-4a5d-9636-a0741490590e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180527_143923.jpg,,FALSE, +N1,59604,sortie-a3577fcd-89b8-4a5d-9636-a0741490590e,https://biolit.fr/sorties/sortie-a3577fcd-89b8-4a5d-9636-a0741490590e/,Phil,,5/27/2018 0:00,14.0:35,14.0000000,47.799475000000,-4.178632000000,,Loctudy - Finistère,43530,observation-a3577fcd-89b8-4a5d-9636-a0741490590e-5,https://biolit.fr/observations/observation-a3577fcd-89b8-4a5d-9636-a0741490590e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180527_143837.jpg,,FALSE, +N1,59605,sortie-7981d909-db32-45ad-93bd-00be3c58c521,https://biolit.fr/sorties/sortie-7981d909-db32-45ad-93bd-00be3c58c521/,Phil,,5/18/2018 0:00,21.0000000,21.0:35,48.210309000000,-4.370078000000,,Telgruc sur Mer - Finistère,43532,observation-7981d909-db32-45ad-93bd-00be3c58c521,https://biolit.fr/observations/observation-7981d909-db32-45ad-93bd-00be3c58c521/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110404.JPG,,FALSE, +N1,59605,sortie-7981d909-db32-45ad-93bd-00be3c58c521,https://biolit.fr/sorties/sortie-7981d909-db32-45ad-93bd-00be3c58c521/,Phil,,5/18/2018 0:00,21.0000000,21.0:35,48.210309000000,-4.370078000000,,Telgruc sur Mer - Finistère,43534,observation-7981d909-db32-45ad-93bd-00be3c58c521-2,https://biolit.fr/observations/observation-7981d909-db32-45ad-93bd-00be3c58c521-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110405.JPG,,FALSE, +N1,59605,sortie-7981d909-db32-45ad-93bd-00be3c58c521,https://biolit.fr/sorties/sortie-7981d909-db32-45ad-93bd-00be3c58c521/,Phil,,5/18/2018 0:00,21.0000000,21.0:35,48.210309000000,-4.370078000000,,Telgruc sur Mer - Finistère,43536,observation-7981d909-db32-45ad-93bd-00be3c58c521-3,https://biolit.fr/observations/observation-7981d909-db32-45ad-93bd-00be3c58c521-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110406.JPG,,FALSE, +N1,59605,sortie-7981d909-db32-45ad-93bd-00be3c58c521,https://biolit.fr/sorties/sortie-7981d909-db32-45ad-93bd-00be3c58c521/,Phil,,5/18/2018 0:00,21.0000000,21.0:35,48.210309000000,-4.370078000000,,Telgruc sur Mer - Finistère,43538,observation-7981d909-db32-45ad-93bd-00be3c58c521-4,https://biolit.fr/observations/observation-7981d909-db32-45ad-93bd-00be3c58c521-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110407.JPG,,FALSE, +N1,59606,sortie-b430c9b6-9958-4217-ba0d-bb2b57e48710,https://biolit.fr/sorties/sortie-b430c9b6-9958-4217-ba0d-bb2b57e48710/,Phil,,06/02/2018,11.0000000,12.000005,48.168207000000,-4.298495000000,,Plomodiern - Finistère,43540,observation-b430c9b6-9958-4217-ba0d-bb2b57e48710,https://biolit.fr/observations/observation-b430c9b6-9958-4217-ba0d-bb2b57e48710/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1110615.JPG,,TRUE, +N1,59606,sortie-b430c9b6-9958-4217-ba0d-bb2b57e48710,https://biolit.fr/sorties/sortie-b430c9b6-9958-4217-ba0d-bb2b57e48710/,Phil,,06/02/2018,11.0000000,12.000005,48.168207000000,-4.298495000000,,Plomodiern - Finistère,43542,observation-b430c9b6-9958-4217-ba0d-bb2b57e48710-2,https://biolit.fr/observations/observation-b430c9b6-9958-4217-ba0d-bb2b57e48710-2/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/P1110619.JPG,,TRUE, +N1,59606,sortie-b430c9b6-9958-4217-ba0d-bb2b57e48710,https://biolit.fr/sorties/sortie-b430c9b6-9958-4217-ba0d-bb2b57e48710/,Phil,,06/02/2018,11.0000000,12.000005,48.168207000000,-4.298495000000,,Plomodiern - Finistère,43544,observation-b430c9b6-9958-4217-ba0d-bb2b57e48710-3,https://biolit.fr/observations/observation-b430c9b6-9958-4217-ba0d-bb2b57e48710-3/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/P1110623.JPG,,TRUE, +N1,59606,sortie-b430c9b6-9958-4217-ba0d-bb2b57e48710,https://biolit.fr/sorties/sortie-b430c9b6-9958-4217-ba0d-bb2b57e48710/,Phil,,06/02/2018,11.0000000,12.000005,48.168207000000,-4.298495000000,,Plomodiern - Finistère,43546,observation-b430c9b6-9958-4217-ba0d-bb2b57e48710-4,https://biolit.fr/observations/observation-b430c9b6-9958-4217-ba0d-bb2b57e48710-4/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/P1110624.JPG,,TRUE, +N1,59606,sortie-b430c9b6-9958-4217-ba0d-bb2b57e48710,https://biolit.fr/sorties/sortie-b430c9b6-9958-4217-ba0d-bb2b57e48710/,Phil,,06/02/2018,11.0000000,12.000005,48.168207000000,-4.298495000000,,Plomodiern - Finistère,43548,observation-b430c9b6-9958-4217-ba0d-bb2b57e48710-5,https://biolit.fr/observations/observation-b430c9b6-9958-4217-ba0d-bb2b57e48710-5/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/P1110628.JPG,,TRUE, +N1,59606,sortie-b430c9b6-9958-4217-ba0d-bb2b57e48710,https://biolit.fr/sorties/sortie-b430c9b6-9958-4217-ba0d-bb2b57e48710/,Phil,,06/02/2018,11.0000000,12.000005,48.168207000000,-4.298495000000,,Plomodiern - Finistère,43550,observation-b430c9b6-9958-4217-ba0d-bb2b57e48710-6,https://biolit.fr/observations/observation-b430c9b6-9958-4217-ba0d-bb2b57e48710-6/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1110630.JPG,,TRUE, +N1,59607,sortie-53b9b440-7aba-44c2-8654-d63bbc9716e0,https://biolit.fr/sorties/sortie-53b9b440-7aba-44c2-8654-d63bbc9716e0/,Phil,,05/01/2018,13.0:15,13.0:25,47.798933000000,-4.177130000000,,Loctudy - Finistère,43552,observation-53b9b440-7aba-44c2-8654-d63bbc9716e0,https://biolit.fr/observations/observation-53b9b440-7aba-44c2-8654-d63bbc9716e0/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_131400.jpg,,FALSE, +N1,59607,sortie-53b9b440-7aba-44c2-8654-d63bbc9716e0,https://biolit.fr/sorties/sortie-53b9b440-7aba-44c2-8654-d63bbc9716e0/,Phil,,05/01/2018,13.0:15,13.0:25,47.798933000000,-4.177130000000,,Loctudy - Finistère,43554,observation-53b9b440-7aba-44c2-8654-d63bbc9716e0-2,https://biolit.fr/observations/observation-53b9b440-7aba-44c2-8654-d63bbc9716e0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_131456.jpg,,FALSE, +N1,59607,sortie-53b9b440-7aba-44c2-8654-d63bbc9716e0,https://biolit.fr/sorties/sortie-53b9b440-7aba-44c2-8654-d63bbc9716e0/,Phil,,05/01/2018,13.0:15,13.0:25,47.798933000000,-4.177130000000,,Loctudy - Finistère,43556,observation-53b9b440-7aba-44c2-8654-d63bbc9716e0-3,https://biolit.fr/observations/observation-53b9b440-7aba-44c2-8654-d63bbc9716e0-3/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20180501_132242.jpg,,TRUE, +N1,59607,sortie-53b9b440-7aba-44c2-8654-d63bbc9716e0,https://biolit.fr/sorties/sortie-53b9b440-7aba-44c2-8654-d63bbc9716e0/,Phil,,05/01/2018,13.0:15,13.0:25,47.798933000000,-4.177130000000,,Loctudy - Finistère,43558,observation-53b9b440-7aba-44c2-8654-d63bbc9716e0-4,https://biolit.fr/observations/observation-53b9b440-7aba-44c2-8654-d63bbc9716e0-4/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/20180501_132757.jpg,,TRUE, +N1,59607,sortie-53b9b440-7aba-44c2-8654-d63bbc9716e0,https://biolit.fr/sorties/sortie-53b9b440-7aba-44c2-8654-d63bbc9716e0/,Phil,,05/01/2018,13.0:15,13.0:25,47.798933000000,-4.177130000000,,Loctudy - Finistère,43560,observation-53b9b440-7aba-44c2-8654-d63bbc9716e0-5,https://biolit.fr/observations/observation-53b9b440-7aba-44c2-8654-d63bbc9716e0-5/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180501_132707.jpg,,TRUE, +N1,59607,sortie-53b9b440-7aba-44c2-8654-d63bbc9716e0,https://biolit.fr/sorties/sortie-53b9b440-7aba-44c2-8654-d63bbc9716e0/,Phil,,05/01/2018,13.0:15,13.0:25,47.798933000000,-4.177130000000,,Loctudy - Finistère,43562,observation-53b9b440-7aba-44c2-8654-d63bbc9716e0-6,https://biolit.fr/observations/observation-53b9b440-7aba-44c2-8654-d63bbc9716e0-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_132722.jpg,,FALSE, +N1,59608,sortie-aa002b3b-bfe0-4208-b29a-e1c7b7453ccd,https://biolit.fr/sorties/sortie-aa002b3b-bfe0-4208-b29a-e1c7b7453ccd/,PEP Le Hedraou,,6/16/2018 0:00,14.0000000,16.0000000,48.815814000000,-3.427100000000,,Pors ar goret,43564,observation-aa002b3b-bfe0-4208-b29a-e1c7b7453ccd,https://biolit.fr/observations/observation-aa002b3b-bfe0-4208-b29a-e1c7b7453ccd/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2695_0-scaled.jpg,,FALSE, +N1,59609,sortie-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9,https://biolit.fr/sorties/sortie-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9/,Phil,,4/28/2018 0:00,11.0000000,11.0:45,47.895018000000,-3.97175500000,,La Forêt-Fouesnant - Finistère,43566,observation-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9,https://biolit.fr/observations/observation-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/P1110147.JPG,,TRUE, +N1,59609,sortie-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9,https://biolit.fr/sorties/sortie-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9/,Phil,,4/28/2018 0:00,11.0000000,11.0:45,47.895018000000,-3.97175500000,,La Forêt-Fouesnant - Finistère,43568,observation-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9-2,https://biolit.fr/observations/observation-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110146.JPG,,TRUE, +N1,59609,sortie-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9,https://biolit.fr/sorties/sortie-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9/,Phil,,4/28/2018 0:00,11.0000000,11.0:45,47.895018000000,-3.97175500000,,La Forêt-Fouesnant - Finistère,43570,observation-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9-3,"""https://biolit.fr/observations/observation-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9-3/""",Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/P1110145.JPG,,TRUE, +N1,59609,sortie-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9,https://biolit.fr/sorties/sortie-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9/,Phil,,4/28/2018 0:00,11.0000000,11.0:45,47.895018000000,-3.97175500000,,La Forêt-Fouesnant - Finistère,43572,observation-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9-4,https://biolit.fr/observations/observation-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9-4/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1110138.JPG,,TRUE, +N1,59609,sortie-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9,https://biolit.fr/sorties/sortie-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9/,Phil,,4/28/2018 0:00,11.0000000,11.0:45,47.895018000000,-3.97175500000,,La Forêt-Fouesnant - Finistère,43574,observation-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9-5,https://biolit.fr/observations/observation-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9-5/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1110139.JPG,,TRUE, +N1,59609,sortie-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9,https://biolit.fr/sorties/sortie-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9/,Phil,,4/28/2018 0:00,11.0000000,11.0:45,47.895018000000,-3.97175500000,,La Forêt-Fouesnant - Finistère,43576,observation-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9-6,https://biolit.fr/observations/observation-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110141.JPG,,FALSE, +N1,59610,sortie-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd,https://biolit.fr/sorties/sortie-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd/,Phil,,05/01/2018,14.000005,14.0:15,47.800732000000,-4.182066000000,,Loctudy - Finistère,43578,observation-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd,https://biolit.fr/observations/observation-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20180501_140703.jpg,,TRUE, +N1,59610,sortie-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd,https://biolit.fr/sorties/sortie-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd/,Phil,,05/01/2018,14.000005,14.0:15,47.800732000000,-4.182066000000,,Loctudy - Finistère,43580,observation-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd-2,https://biolit.fr/observations/observation-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd-2/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20180501_140652.jpg,,TRUE, +N1,59610,sortie-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd,https://biolit.fr/sorties/sortie-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd/,Phil,,05/01/2018,14.000005,14.0:15,47.800732000000,-4.182066000000,,Loctudy - Finistère,43582,observation-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd-3,https://biolit.fr/observations/observation-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_140607.jpg,,FALSE, +N1,59610,sortie-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd,https://biolit.fr/sorties/sortie-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd/,Phil,,05/01/2018,14.000005,14.0:15,47.800732000000,-4.182066000000,,Loctudy - Finistère,43584,observation-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd-4,https://biolit.fr/observations/observation-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180501_140805.jpg,,TRUE, +N1,59610,sortie-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd,https://biolit.fr/sorties/sortie-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd/,Phil,,05/01/2018,14.000005,14.0:15,47.800732000000,-4.182066000000,,Loctudy - Finistère,43586,observation-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd-5,https://biolit.fr/observations/observation-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd-5/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20180501_141310.jpg,,TRUE, +N1,59610,sortie-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd,https://biolit.fr/sorties/sortie-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd/,Phil,,05/01/2018,14.000005,14.0:15,47.800732000000,-4.182066000000,,Loctudy - Finistère,43588,observation-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd-6,https://biolit.fr/observations/observation-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_140911.jpg,,FALSE, +N1,59611,sortie-7f927f77-d2de-4642-9dbb-a77aeca61d87,https://biolit.fr/sorties/sortie-7f927f77-d2de-4642-9dbb-a77aeca61d87/,RBBBM,,6/17/2018 0:00,13.0000000,15.0000000,47.807076000000,-3.712838000000,,Moëlan anse du Gorgen,43590,observation-7f927f77-d2de-4642-9dbb-a77aeca61d87,https://biolit.fr/observations/observation-7f927f77-d2de-4642-9dbb-a77aeca61d87/,Doris verrucosa,Doris verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2429-scaled.jpg,,TRUE, +N1,59611,sortie-7f927f77-d2de-4642-9dbb-a77aeca61d87,https://biolit.fr/sorties/sortie-7f927f77-d2de-4642-9dbb-a77aeca61d87/,RBBBM,,6/17/2018 0:00,13.0000000,15.0000000,47.807076000000,-3.712838000000,,Moëlan anse du Gorgen,43592,observation-7f927f77-d2de-4642-9dbb-a77aeca61d87-2,https://biolit.fr/observations/observation-7f927f77-d2de-4642-9dbb-a77aeca61d87-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2424-scaled.jpg,,FALSE, +N1,59611,sortie-7f927f77-d2de-4642-9dbb-a77aeca61d87,https://biolit.fr/sorties/sortie-7f927f77-d2de-4642-9dbb-a77aeca61d87/,RBBBM,,6/17/2018 0:00,13.0000000,15.0000000,47.807076000000,-3.712838000000,,Moëlan anse du Gorgen,43594,observation-7f927f77-d2de-4642-9dbb-a77aeca61d87-3,https://biolit.fr/observations/observation-7f927f77-d2de-4642-9dbb-a77aeca61d87-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2369-scaled.jpg,,FALSE, +N1,59611,sortie-7f927f77-d2de-4642-9dbb-a77aeca61d87,https://biolit.fr/sorties/sortie-7f927f77-d2de-4642-9dbb-a77aeca61d87/,RBBBM,,6/17/2018 0:00,13.0000000,15.0000000,47.807076000000,-3.712838000000,,Moëlan anse du Gorgen,43596,observation-7f927f77-d2de-4642-9dbb-a77aeca61d87-4,https://biolit.fr/observations/observation-7f927f77-d2de-4642-9dbb-a77aeca61d87-4/,Prostheceraeus moseleyi,Planaire tachetée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2447-scaled.jpg,,TRUE, +N1,59611,sortie-7f927f77-d2de-4642-9dbb-a77aeca61d87,https://biolit.fr/sorties/sortie-7f927f77-d2de-4642-9dbb-a77aeca61d87/,RBBBM,,6/17/2018 0:00,13.0000000,15.0000000,47.807076000000,-3.712838000000,,Moëlan anse du Gorgen,43598,observation-7f927f77-d2de-4642-9dbb-a77aeca61d87-5,https://biolit.fr/observations/observation-7f927f77-d2de-4642-9dbb-a77aeca61d87-5/,Perophora japonica,Perophore japonaise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2391_1-scaled.jpg,,TRUE, +N1,59611,sortie-7f927f77-d2de-4642-9dbb-a77aeca61d87,https://biolit.fr/sorties/sortie-7f927f77-d2de-4642-9dbb-a77aeca61d87/,RBBBM,,6/17/2018 0:00,13.0000000,15.0000000,47.807076000000,-3.712838000000,,Moëlan anse du Gorgen,43600,observation-7f927f77-d2de-4642-9dbb-a77aeca61d87-6,https://biolit.fr/observations/observation-7f927f77-d2de-4642-9dbb-a77aeca61d87-6/,Prostheceraeus vittatus,Planaire blanche,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2385_0-scaled.jpg,,TRUE, +N1,59611,sortie-7f927f77-d2de-4642-9dbb-a77aeca61d87,https://biolit.fr/sorties/sortie-7f927f77-d2de-4642-9dbb-a77aeca61d87/,RBBBM,,6/17/2018 0:00,13.0000000,15.0000000,47.807076000000,-3.712838000000,,Moëlan anse du Gorgen,43602,observation-7f927f77-d2de-4642-9dbb-a77aeca61d87-7,https://biolit.fr/observations/observation-7f927f77-d2de-4642-9dbb-a77aeca61d87-7/,Tritia reticulata,Ponte de nasse réticulée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2463-scaled.jpg,,TRUE, +N1,59612,sortie-4567f907-426c-47dd-9ca0-46f5af7b12d5,https://biolit.fr/sorties/sortie-4567f907-426c-47dd-9ca0-46f5af7b12d5/,Phil,,05/01/2018,13.0000000,13.0:55,47.799434000000,-4.177538000000,,Loctudy - Finistère,43604,observation-4567f907-426c-47dd-9ca0-46f5af7b12d5,https://biolit.fr/observations/observation-4567f907-426c-47dd-9ca0-46f5af7b12d5/,Phymatolithon lenormandii,Algue encroûtante rouge de Lenormand,,https://biolit.fr/wp-content/uploads/2023/07/20180501_135143.jpg,,TRUE, +N1,59612,sortie-4567f907-426c-47dd-9ca0-46f5af7b12d5,https://biolit.fr/sorties/sortie-4567f907-426c-47dd-9ca0-46f5af7b12d5/,Phil,,05/01/2018,13.0000000,13.0:55,47.799434000000,-4.177538000000,,Loctudy - Finistère,43606,observation-4567f907-426c-47dd-9ca0-46f5af7b12d5-2,https://biolit.fr/observations/observation-4567f907-426c-47dd-9ca0-46f5af7b12d5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_135150.jpg,,FALSE, +N1,59612,sortie-4567f907-426c-47dd-9ca0-46f5af7b12d5,https://biolit.fr/sorties/sortie-4567f907-426c-47dd-9ca0-46f5af7b12d5/,Phil,,05/01/2018,13.0000000,13.0:55,47.799434000000,-4.177538000000,,Loctudy - Finistère,43608,observation-4567f907-426c-47dd-9ca0-46f5af7b12d5-3,https://biolit.fr/observations/observation-4567f907-426c-47dd-9ca0-46f5af7b12d5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_135153.jpg,,FALSE, +N1,59612,sortie-4567f907-426c-47dd-9ca0-46f5af7b12d5,https://biolit.fr/sorties/sortie-4567f907-426c-47dd-9ca0-46f5af7b12d5/,Phil,,05/01/2018,13.0000000,13.0:55,47.799434000000,-4.177538000000,,Loctudy - Finistère,43610,observation-4567f907-426c-47dd-9ca0-46f5af7b12d5-4,https://biolit.fr/observations/observation-4567f907-426c-47dd-9ca0-46f5af7b12d5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_135250.jpg,,FALSE, +N1,59612,sortie-4567f907-426c-47dd-9ca0-46f5af7b12d5,https://biolit.fr/sorties/sortie-4567f907-426c-47dd-9ca0-46f5af7b12d5/,Phil,,05/01/2018,13.0000000,13.0:55,47.799434000000,-4.177538000000,,Loctudy - Finistère,43612,observation-4567f907-426c-47dd-9ca0-46f5af7b12d5-5,https://biolit.fr/observations/observation-4567f907-426c-47dd-9ca0-46f5af7b12d5-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_135305.jpg,,FALSE, +N1,59612,sortie-4567f907-426c-47dd-9ca0-46f5af7b12d5,https://biolit.fr/sorties/sortie-4567f907-426c-47dd-9ca0-46f5af7b12d5/,Phil,,05/01/2018,13.0000000,13.0:55,47.799434000000,-4.177538000000,,Loctudy - Finistère,43614,observation-4567f907-426c-47dd-9ca0-46f5af7b12d5-6,https://biolit.fr/observations/observation-4567f907-426c-47dd-9ca0-46f5af7b12d5-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_135320.jpg,,FALSE, +N1,59613,sortie-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586,https://biolit.fr/sorties/sortie-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586/,Phil,,06/02/2018,11.0000000,11.0000000,48.167957000000,-4.299050000000,,Plomodiern - Finistère,43616,observation-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586,https://biolit.fr/observations/observation-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1110606.JPG,,TRUE, +N1,59613,sortie-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586,https://biolit.fr/sorties/sortie-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586/,Phil,,06/02/2018,11.0000000,11.0000000,48.167957000000,-4.299050000000,,Plomodiern - Finistère,43618,observation-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586-2,https://biolit.fr/observations/observation-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1110609.JPG,,TRUE, +N1,59613,sortie-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586,https://biolit.fr/sorties/sortie-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586/,Phil,,06/02/2018,11.0000000,11.0000000,48.167957000000,-4.299050000000,,Plomodiern - Finistère,43620,observation-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586-3,https://biolit.fr/observations/observation-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586-3/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1110610.JPG,,TRUE, +N1,59613,sortie-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586,https://biolit.fr/sorties/sortie-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586/,Phil,,06/02/2018,11.0000000,11.0000000,48.167957000000,-4.299050000000,,Plomodiern - Finistère,43622,observation-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586-4,https://biolit.fr/observations/observation-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586-4/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1110611.JPG,,TRUE, +N1,59613,sortie-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586,https://biolit.fr/sorties/sortie-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586/,Phil,,06/02/2018,11.0000000,11.0000000,48.167957000000,-4.299050000000,,Plomodiern - Finistère,43624,observation-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586-5,https://biolit.fr/observations/observation-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586-5/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1110613.JPG,,TRUE, +N1,59614,sortie-b07a111e-1616-4a4a-bd88-6661ded35efc,https://biolit.fr/sorties/sortie-b07a111e-1616-4a4a-bd88-6661ded35efc/,Phil,,4/28/2018 0:00,11.0:35,11.0000000,47.894605000000,-3.971459000000,,La Forêt-Fouesnant - Finistère,43626,observation-b07a111e-1616-4a4a-bd88-6661ded35efc,https://biolit.fr/observations/observation-b07a111e-1616-4a4a-bd88-6661ded35efc/,Pomatoschistus microps,Gobie tacheté,,https://biolit.fr/wp-content/uploads/2023/07/P1110132.JPG,,TRUE, +N1,59614,sortie-b07a111e-1616-4a4a-bd88-6661ded35efc,https://biolit.fr/sorties/sortie-b07a111e-1616-4a4a-bd88-6661ded35efc/,Phil,,4/28/2018 0:00,11.0:35,11.0000000,47.894605000000,-3.971459000000,,La Forêt-Fouesnant - Finistère,43628,observation-b07a111e-1616-4a4a-bd88-6661ded35efc-2,https://biolit.fr/observations/observation-b07a111e-1616-4a4a-bd88-6661ded35efc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110129.JPG,,FALSE, +N1,59614,sortie-b07a111e-1616-4a4a-bd88-6661ded35efc,https://biolit.fr/sorties/sortie-b07a111e-1616-4a4a-bd88-6661ded35efc/,Phil,,4/28/2018 0:00,11.0:35,11.0000000,47.894605000000,-3.971459000000,,La Forêt-Fouesnant - Finistère,43630,observation-b07a111e-1616-4a4a-bd88-6661ded35efc-3,https://biolit.fr/observations/observation-b07a111e-1616-4a4a-bd88-6661ded35efc-3/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/P1110125.JPG,,TRUE, +N1,59614,sortie-b07a111e-1616-4a4a-bd88-6661ded35efc,https://biolit.fr/sorties/sortie-b07a111e-1616-4a4a-bd88-6661ded35efc/,Phil,,4/28/2018 0:00,11.0:35,11.0000000,47.894605000000,-3.971459000000,,La Forêt-Fouesnant - Finistère,43632,observation-b07a111e-1616-4a4a-bd88-6661ded35efc-4,https://biolit.fr/observations/observation-b07a111e-1616-4a4a-bd88-6661ded35efc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110133.JPG,,FALSE, +N1,59614,sortie-b07a111e-1616-4a4a-bd88-6661ded35efc,https://biolit.fr/sorties/sortie-b07a111e-1616-4a4a-bd88-6661ded35efc/,Phil,,4/28/2018 0:00,11.0:35,11.0000000,47.894605000000,-3.971459000000,,La Forêt-Fouesnant - Finistère,43634,observation-b07a111e-1616-4a4a-bd88-6661ded35efc-5,https://biolit.fr/observations/observation-b07a111e-1616-4a4a-bd88-6661ded35efc-5/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/P1110136.JPG,,TRUE, +N1,59615,sortie-e13f9e8e-f936-4440-8909-ee54ca98b3bf,https://biolit.fr/sorties/sortie-e13f9e8e-f936-4440-8909-ee54ca98b3bf/,Phil,,5/20/2018 0:00,14.0000000,14.0000000,47.800884000000,-4.181180000000,,Loctudy - Finistère,43636,observation-e13f9e8e-f936-4440-8909-ee54ca98b3bf,https://biolit.fr/observations/observation-e13f9e8e-f936-4440-8909-ee54ca98b3bf/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110454.JPG,,TRUE, +N1,59615,sortie-e13f9e8e-f936-4440-8909-ee54ca98b3bf,https://biolit.fr/sorties/sortie-e13f9e8e-f936-4440-8909-ee54ca98b3bf/,Phil,,5/20/2018 0:00,14.0000000,14.0000000,47.800884000000,-4.181180000000,,Loctudy - Finistère,43638,observation-e13f9e8e-f936-4440-8909-ee54ca98b3bf-2,https://biolit.fr/observations/observation-e13f9e8e-f936-4440-8909-ee54ca98b3bf-2/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1110455.JPG,,TRUE, +N1,59615,sortie-e13f9e8e-f936-4440-8909-ee54ca98b3bf,https://biolit.fr/sorties/sortie-e13f9e8e-f936-4440-8909-ee54ca98b3bf/,Phil,,5/20/2018 0:00,14.0000000,14.0000000,47.800884000000,-4.181180000000,,Loctudy - Finistère,43640,observation-e13f9e8e-f936-4440-8909-ee54ca98b3bf-3,https://biolit.fr/observations/observation-e13f9e8e-f936-4440-8909-ee54ca98b3bf-3/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1110461.JPG,,TRUE, +N1,59615,sortie-e13f9e8e-f936-4440-8909-ee54ca98b3bf,https://biolit.fr/sorties/sortie-e13f9e8e-f936-4440-8909-ee54ca98b3bf/,Phil,,5/20/2018 0:00,14.0000000,14.0000000,47.800884000000,-4.181180000000,,Loctudy - Finistère,43642,observation-e13f9e8e-f936-4440-8909-ee54ca98b3bf-4,https://biolit.fr/observations/observation-e13f9e8e-f936-4440-8909-ee54ca98b3bf-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110462.JPG,,FALSE, +N1,59615,sortie-e13f9e8e-f936-4440-8909-ee54ca98b3bf,https://biolit.fr/sorties/sortie-e13f9e8e-f936-4440-8909-ee54ca98b3bf/,Phil,,5/20/2018 0:00,14.0000000,14.0000000,47.800884000000,-4.181180000000,,Loctudy - Finistère,43644,observation-e13f9e8e-f936-4440-8909-ee54ca98b3bf-5,https://biolit.fr/observations/observation-e13f9e8e-f936-4440-8909-ee54ca98b3bf-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110459.JPG,,FALSE, +N1,59615,sortie-e13f9e8e-f936-4440-8909-ee54ca98b3bf,https://biolit.fr/sorties/sortie-e13f9e8e-f936-4440-8909-ee54ca98b3bf/,Phil,,5/20/2018 0:00,14.0000000,14.0000000,47.800884000000,-4.181180000000,,Loctudy - Finistère,43646,observation-e13f9e8e-f936-4440-8909-ee54ca98b3bf-6,https://biolit.fr/observations/observation-e13f9e8e-f936-4440-8909-ee54ca98b3bf-6/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1110450.JPG,,TRUE, +N1,59615,sortie-e13f9e8e-f936-4440-8909-ee54ca98b3bf,https://biolit.fr/sorties/sortie-e13f9e8e-f936-4440-8909-ee54ca98b3bf/,Phil,,5/20/2018 0:00,14.0000000,14.0000000,47.800884000000,-4.181180000000,,Loctudy - Finistère,43648,observation-e13f9e8e-f936-4440-8909-ee54ca98b3bf-7,https://biolit.fr/observations/observation-e13f9e8e-f936-4440-8909-ee54ca98b3bf-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110453.JPG,,FALSE, +N1,59616,sortie-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0,https://biolit.fr/sorties/sortie-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0/,Phil,,05/05/2018,17.000005,17.0000000,48.578215000000,-4.624866000000,,Saint-Pabu - Finistère,43650,observation-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0,https://biolit.fr/observations/observation-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1110202.JPG,,TRUE, +N1,59616,sortie-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0,https://biolit.fr/sorties/sortie-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0/,Phil,,05/05/2018,17.000005,17.0000000,48.578215000000,-4.624866000000,,Saint-Pabu - Finistère,43652,observation-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0-2,https://biolit.fr/observations/observation-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0-2/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1110187.JPG,,TRUE, +N1,59616,sortie-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0,https://biolit.fr/sorties/sortie-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0/,Phil,,05/05/2018,17.000005,17.0000000,48.578215000000,-4.624866000000,,Saint-Pabu - Finistère,43654,observation-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0-3,https://biolit.fr/observations/observation-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0-3/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1110188.JPG,,TRUE, +N1,59616,sortie-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0,https://biolit.fr/sorties/sortie-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0/,Phil,,05/05/2018,17.000005,17.0000000,48.578215000000,-4.624866000000,,Saint-Pabu - Finistère,43656,observation-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0-4,https://biolit.fr/observations/observation-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0-4/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1110192.JPG,,TRUE, +N1,59616,sortie-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0,https://biolit.fr/sorties/sortie-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0/,Phil,,05/05/2018,17.000005,17.0000000,48.578215000000,-4.624866000000,,Saint-Pabu - Finistère,43658,observation-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0-5,https://biolit.fr/observations/observation-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0-5/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1110196.JPG,,TRUE, +N1,59616,sortie-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0,https://biolit.fr/sorties/sortie-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0/,Phil,,05/05/2018,17.000005,17.0000000,48.578215000000,-4.624866000000,,Saint-Pabu - Finistère,43660,observation-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0-6,https://biolit.fr/observations/observation-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110197.JPG,,FALSE, +N1,59617,sortie-73b187ec-a2d7-4cf8-b746-5498baf52a04,https://biolit.fr/sorties/sortie-73b187ec-a2d7-4cf8-b746-5498baf52a04/,RBBBM,,6/14/2018 0:00,11.0000000,12.0000000,47.806626000000,-3.716014000000,,Moëlan anse du Gorgen,43662,observation-73b187ec-a2d7-4cf8-b746-5498baf52a04,https://biolit.fr/observations/observation-73b187ec-a2d7-4cf8-b746-5498baf52a04/,Pruvotfolia pselliotes,Facéline de Pruvot-Fol,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2368-scaled.jpg,,TRUE, +N1,59617,sortie-73b187ec-a2d7-4cf8-b746-5498baf52a04,https://biolit.fr/sorties/sortie-73b187ec-a2d7-4cf8-b746-5498baf52a04/,RBBBM,,6/14/2018 0:00,11.0000000,12.0000000,47.806626000000,-3.716014000000,,Moëlan anse du Gorgen,43664,observation-73b187ec-a2d7-4cf8-b746-5498baf52a04-2,https://biolit.fr/observations/observation-73b187ec-a2d7-4cf8-b746-5498baf52a04-2/,Prostheceraeus vittatus,Planaire blanche,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2385-scaled.jpg,,TRUE, +N1,59617,sortie-73b187ec-a2d7-4cf8-b746-5498baf52a04,https://biolit.fr/sorties/sortie-73b187ec-a2d7-4cf8-b746-5498baf52a04/,RBBBM,,6/14/2018 0:00,11.0000000,12.0000000,47.806626000000,-3.716014000000,,Moëlan anse du Gorgen,43666,observation-73b187ec-a2d7-4cf8-b746-5498baf52a04-3,https://biolit.fr/observations/observation-73b187ec-a2d7-4cf8-b746-5498baf52a04-3/,Perophora japonica,Perophore japonaise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2391-scaled.jpg,,TRUE, +N1,59617,sortie-73b187ec-a2d7-4cf8-b746-5498baf52a04,https://biolit.fr/sorties/sortie-73b187ec-a2d7-4cf8-b746-5498baf52a04/,RBBBM,,6/14/2018 0:00,11.0000000,12.0000000,47.806626000000,-3.716014000000,,Moëlan anse du Gorgen,43668,observation-73b187ec-a2d7-4cf8-b746-5498baf52a04-4,https://biolit.fr/observations/observation-73b187ec-a2d7-4cf8-b746-5498baf52a04-4/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2374-scaled.jpg,,TRUE, +N1,59617,sortie-73b187ec-a2d7-4cf8-b746-5498baf52a04,https://biolit.fr/sorties/sortie-73b187ec-a2d7-4cf8-b746-5498baf52a04/,RBBBM,,6/14/2018 0:00,11.0000000,12.0000000,47.806626000000,-3.716014000000,,Moëlan anse du Gorgen,43670,observation-73b187ec-a2d7-4cf8-b746-5498baf52a04-5,https://biolit.fr/observations/observation-73b187ec-a2d7-4cf8-b746-5498baf52a04-5/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2360-scaled.jpg,,TRUE, +N1,59618,sortie-dc4afa37-ef35-4502-b75a-ef4d9cd6936f,https://biolit.fr/sorties/sortie-dc4afa37-ef35-4502-b75a-ef4d9cd6936f/,Guillaume D,,6/13/2018 0:00,11.0000000,11.0000000,46.113371000000,-1.124052000000,,"Aytré, Plage d'Aytré",43672,observation-dc4afa37-ef35-4502-b75a-ef4d9cd6936f,https://biolit.fr/observations/observation-dc4afa37-ef35-4502-b75a-ef4d9cd6936f/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8048_modif.jpg,,FALSE, +N1,59619,sortie-e108cbfd-0fdb-475d-b294-8f478757642c,https://biolit.fr/sorties/sortie-e108cbfd-0fdb-475d-b294-8f478757642c/,Guillaume D,,06/01/2018,12.0000000,12.0000000,46.110000000000,-1.138412000000,,"Angoulins, Pointe du Chay",43674,observation-e108cbfd-0fdb-475d-b294-8f478757642c,https://biolit.fr/observations/observation-e108cbfd-0fdb-475d-b294-8f478757642c/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180601_120849_modif.jpg,,FALSE, +N1,59620,sortie-af367cf0-341c-42ac-9874-7fc822bdcea8,https://biolit.fr/sorties/sortie-af367cf0-341c-42ac-9874-7fc822bdcea8/,Phil,,05/01/2018,13.0:15,13.0000000,47.797110000000,-4.177465000000,,Loctudy - Finistère,43676,observation-af367cf0-341c-42ac-9874-7fc822bdcea8,https://biolit.fr/observations/observation-af367cf0-341c-42ac-9874-7fc822bdcea8/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20180501_131856.jpg,,TRUE, +N1,59620,sortie-af367cf0-341c-42ac-9874-7fc822bdcea8,https://biolit.fr/sorties/sortie-af367cf0-341c-42ac-9874-7fc822bdcea8/,Phil,,05/01/2018,13.0:15,13.0000000,47.797110000000,-4.177465000000,,Loctudy - Finistère,43678,observation-af367cf0-341c-42ac-9874-7fc822bdcea8-2,https://biolit.fr/observations/observation-af367cf0-341c-42ac-9874-7fc822bdcea8-2/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20180501_131901.jpg,,TRUE, +N1,59620,sortie-af367cf0-341c-42ac-9874-7fc822bdcea8,https://biolit.fr/sorties/sortie-af367cf0-341c-42ac-9874-7fc822bdcea8/,Phil,,05/01/2018,13.0:15,13.0000000,47.797110000000,-4.177465000000,,Loctudy - Finistère,43680,observation-af367cf0-341c-42ac-9874-7fc822bdcea8-3,https://biolit.fr/observations/observation-af367cf0-341c-42ac-9874-7fc822bdcea8-3/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20180501_131907.jpg,,TRUE, +N1,59620,sortie-af367cf0-341c-42ac-9874-7fc822bdcea8,https://biolit.fr/sorties/sortie-af367cf0-341c-42ac-9874-7fc822bdcea8/,Phil,,05/01/2018,13.0:15,13.0000000,47.797110000000,-4.177465000000,,Loctudy - Finistère,43682,observation-af367cf0-341c-42ac-9874-7fc822bdcea8-4,https://biolit.fr/observations/observation-af367cf0-341c-42ac-9874-7fc822bdcea8-4/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20180501_131918.jpg,,TRUE, +N1,59620,sortie-af367cf0-341c-42ac-9874-7fc822bdcea8,https://biolit.fr/sorties/sortie-af367cf0-341c-42ac-9874-7fc822bdcea8/,Phil,,05/01/2018,13.0:15,13.0000000,47.797110000000,-4.177465000000,,Loctudy - Finistère,43684,observation-af367cf0-341c-42ac-9874-7fc822bdcea8-5,https://biolit.fr/observations/observation-af367cf0-341c-42ac-9874-7fc822bdcea8-5/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20180501_131924.jpg,,TRUE, +N1,59621,sortie-f3c378e1-cd65-40fa-bf37-1e67ff10729a,https://biolit.fr/sorties/sortie-f3c378e1-cd65-40fa-bf37-1e67ff10729a/,Phil,,4/18/2018 0:00,14.0000000,14.0:55,47.791520000000,-4.265871000000,,Léchiagat - Finistère,43686,observation-f3c378e1-cd65-40fa-bf37-1e67ff10729a,https://biolit.fr/observations/observation-f3c378e1-cd65-40fa-bf37-1e67ff10729a/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/P1100980.JPG,,TRUE, +N1,59621,sortie-f3c378e1-cd65-40fa-bf37-1e67ff10729a,https://biolit.fr/sorties/sortie-f3c378e1-cd65-40fa-bf37-1e67ff10729a/,Phil,,4/18/2018 0:00,14.0000000,14.0:55,47.791520000000,-4.265871000000,,Léchiagat - Finistère,43688,observation-f3c378e1-cd65-40fa-bf37-1e67ff10729a-2,https://biolit.fr/observations/observation-f3c378e1-cd65-40fa-bf37-1e67ff10729a-2/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/P1100987.JPG,,TRUE, +N1,59621,sortie-f3c378e1-cd65-40fa-bf37-1e67ff10729a,https://biolit.fr/sorties/sortie-f3c378e1-cd65-40fa-bf37-1e67ff10729a/,Phil,,4/18/2018 0:00,14.0000000,14.0:55,47.791520000000,-4.265871000000,,Léchiagat - Finistère,43690,observation-f3c378e1-cd65-40fa-bf37-1e67ff10729a-3,https://biolit.fr/observations/observation-f3c378e1-cd65-40fa-bf37-1e67ff10729a-3/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1100989.JPG,,TRUE, +N1,59621,sortie-f3c378e1-cd65-40fa-bf37-1e67ff10729a,https://biolit.fr/sorties/sortie-f3c378e1-cd65-40fa-bf37-1e67ff10729a/,Phil,,4/18/2018 0:00,14.0000000,14.0:55,47.791520000000,-4.265871000000,,Léchiagat - Finistère,43692,observation-f3c378e1-cd65-40fa-bf37-1e67ff10729a-4,https://biolit.fr/observations/observation-f3c378e1-cd65-40fa-bf37-1e67ff10729a-4/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/P1100991.JPG,,TRUE, +N1,59621,sortie-f3c378e1-cd65-40fa-bf37-1e67ff10729a,https://biolit.fr/sorties/sortie-f3c378e1-cd65-40fa-bf37-1e67ff10729a/,Phil,,4/18/2018 0:00,14.0000000,14.0:55,47.791520000000,-4.265871000000,,Léchiagat - Finistère,43694,observation-f3c378e1-cd65-40fa-bf37-1e67ff10729a-5,https://biolit.fr/observations/observation-f3c378e1-cd65-40fa-bf37-1e67ff10729a-5/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/P1110019.JPG,,TRUE, +N1,59621,sortie-f3c378e1-cd65-40fa-bf37-1e67ff10729a,https://biolit.fr/sorties/sortie-f3c378e1-cd65-40fa-bf37-1e67ff10729a/,Phil,,4/18/2018 0:00,14.0000000,14.0:55,47.791520000000,-4.265871000000,,Léchiagat - Finistère,43696,observation-f3c378e1-cd65-40fa-bf37-1e67ff10729a-6,https://biolit.fr/observations/observation-f3c378e1-cd65-40fa-bf37-1e67ff10729a-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110023.JPG,,FALSE, +N1,59622,sortie-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f,https://biolit.fr/sorties/sortie-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f/,Phil,,5/20/2018 0:00,14.0000000,14.0000000,47.800352000000,-4.181122000000,,Loctudy - Finistère,43698,observation-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f,https://biolit.fr/observations/observation-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f/,Mastocarpus stellatus,Gigartine,,https://biolit.fr/wp-content/uploads/2023/07/P1110438.JPG,,TRUE, +N1,59622,sortie-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f,https://biolit.fr/sorties/sortie-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f/,Phil,,5/20/2018 0:00,14.0000000,14.0000000,47.800352000000,-4.181122000000,,Loctudy - Finistère,43700,observation-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f-2,https://biolit.fr/observations/observation-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f-2/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110449.JPG,,TRUE, +N1,59622,sortie-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f,https://biolit.fr/sorties/sortie-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f/,Phil,,5/20/2018 0:00,14.0000000,14.0000000,47.800352000000,-4.181122000000,,Loctudy - Finistère,43702,observation-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f-3,https://biolit.fr/observations/observation-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f-3/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110443.JPG,,TRUE, +N1,59622,sortie-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f,https://biolit.fr/sorties/sortie-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f/,Phil,,5/20/2018 0:00,14.0000000,14.0000000,47.800352000000,-4.181122000000,,Loctudy - Finistère,43704,observation-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f-4,https://biolit.fr/observations/observation-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f-4/,Schizoporella unicornis,Schizoporella unicorne,,https://biolit.fr/wp-content/uploads/2023/07/P1110444.JPG,,TRUE, +N1,59622,sortie-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f,https://biolit.fr/sorties/sortie-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f/,Phil,,5/20/2018 0:00,14.0000000,14.0000000,47.800352000000,-4.181122000000,,Loctudy - Finistère,43706,observation-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f-5,https://biolit.fr/observations/observation-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f-5/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1110445.JPG,,TRUE, +N1,59622,sortie-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f,https://biolit.fr/sorties/sortie-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f/,Phil,,5/20/2018 0:00,14.0000000,14.0000000,47.800352000000,-4.181122000000,,Loctudy - Finistère,43708,observation-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f-6,https://biolit.fr/observations/observation-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f-6/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110446.JPG,,TRUE, +N1,59623,sortie-f6721495-00b2-4fdc-bc98-a5c6d8791869,https://biolit.fr/sorties/sortie-f6721495-00b2-4fdc-bc98-a5c6d8791869/,Phil,,06/02/2018,11.0000000,11.0:35,48.168711000000,-4.297808000000,,Plomodiern - Finistère,43710,observation-f6721495-00b2-4fdc-bc98-a5c6d8791869,https://biolit.fr/observations/observation-f6721495-00b2-4fdc-bc98-a5c6d8791869/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/P1110603.JPG,,TRUE, +N1,59623,sortie-f6721495-00b2-4fdc-bc98-a5c6d8791869,https://biolit.fr/sorties/sortie-f6721495-00b2-4fdc-bc98-a5c6d8791869/,Phil,,06/02/2018,11.0000000,11.0:35,48.168711000000,-4.297808000000,,Plomodiern - Finistère,43712,observation-f6721495-00b2-4fdc-bc98-a5c6d8791869-2,https://biolit.fr/observations/observation-f6721495-00b2-4fdc-bc98-a5c6d8791869-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1110602.JPG,,TRUE, +N1,59623,sortie-f6721495-00b2-4fdc-bc98-a5c6d8791869,https://biolit.fr/sorties/sortie-f6721495-00b2-4fdc-bc98-a5c6d8791869/,Phil,,06/02/2018,11.0000000,11.0:35,48.168711000000,-4.297808000000,,Plomodiern - Finistère,43714,observation-f6721495-00b2-4fdc-bc98-a5c6d8791869-3,https://biolit.fr/observations/observation-f6721495-00b2-4fdc-bc98-a5c6d8791869-3/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/P1110600.JPG,,TRUE, +N1,59623,sortie-f6721495-00b2-4fdc-bc98-a5c6d8791869,https://biolit.fr/sorties/sortie-f6721495-00b2-4fdc-bc98-a5c6d8791869/,Phil,,06/02/2018,11.0000000,11.0:35,48.168711000000,-4.297808000000,,Plomodiern - Finistère,43716,observation-f6721495-00b2-4fdc-bc98-a5c6d8791869-4,https://biolit.fr/observations/observation-f6721495-00b2-4fdc-bc98-a5c6d8791869-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1110596.JPG,,TRUE, +N1,59624,sortie-5bef6e63-ff34-4056-b189-8b2248dededf,https://biolit.fr/sorties/sortie-5bef6e63-ff34-4056-b189-8b2248dededf/,Phil,,5/20/2018 0:00,14.000005,14.0:15,47.800712000000,-4.180585000000,,Loctudy - Finistère,43718,observation-5bef6e63-ff34-4056-b189-8b2248dededf,https://biolit.fr/observations/observation-5bef6e63-ff34-4056-b189-8b2248dededf/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/P1110411.JPG,,TRUE, +N1,59624,sortie-5bef6e63-ff34-4056-b189-8b2248dededf,https://biolit.fr/sorties/sortie-5bef6e63-ff34-4056-b189-8b2248dededf/,Phil,,5/20/2018 0:00,14.000005,14.0:15,47.800712000000,-4.180585000000,,Loctudy - Finistère,43720,observation-5bef6e63-ff34-4056-b189-8b2248dededf-2,https://biolit.fr/observations/observation-5bef6e63-ff34-4056-b189-8b2248dededf-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110424.JPG,,FALSE, +N1,59624,sortie-5bef6e63-ff34-4056-b189-8b2248dededf,https://biolit.fr/sorties/sortie-5bef6e63-ff34-4056-b189-8b2248dededf/,Phil,,5/20/2018 0:00,14.000005,14.0:15,47.800712000000,-4.180585000000,,Loctudy - Finistère,43722,observation-5bef6e63-ff34-4056-b189-8b2248dededf-3,https://biolit.fr/observations/observation-5bef6e63-ff34-4056-b189-8b2248dededf-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110426.JPG,,FALSE, +N1,59624,sortie-5bef6e63-ff34-4056-b189-8b2248dededf,https://biolit.fr/sorties/sortie-5bef6e63-ff34-4056-b189-8b2248dededf/,Phil,,5/20/2018 0:00,14.000005,14.0:15,47.800712000000,-4.180585000000,,Loctudy - Finistère,43724,observation-5bef6e63-ff34-4056-b189-8b2248dededf-4,https://biolit.fr/observations/observation-5bef6e63-ff34-4056-b189-8b2248dededf-4/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/P1110427.JPG,,TRUE, +N1,59624,sortie-5bef6e63-ff34-4056-b189-8b2248dededf,https://biolit.fr/sorties/sortie-5bef6e63-ff34-4056-b189-8b2248dededf/,Phil,,5/20/2018 0:00,14.000005,14.0:15,47.800712000000,-4.180585000000,,Loctudy - Finistère,43726,observation-5bef6e63-ff34-4056-b189-8b2248dededf-5,https://biolit.fr/observations/observation-5bef6e63-ff34-4056-b189-8b2248dededf-5/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/P1110428.JPG,,TRUE, +N1,59624,sortie-5bef6e63-ff34-4056-b189-8b2248dededf,https://biolit.fr/sorties/sortie-5bef6e63-ff34-4056-b189-8b2248dededf/,Phil,,5/20/2018 0:00,14.000005,14.0:15,47.800712000000,-4.180585000000,,Loctudy - Finistère,43728,observation-5bef6e63-ff34-4056-b189-8b2248dededf-6,https://biolit.fr/observations/observation-5bef6e63-ff34-4056-b189-8b2248dededf-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110429.JPG,,FALSE, +N1,59624,sortie-5bef6e63-ff34-4056-b189-8b2248dededf,https://biolit.fr/sorties/sortie-5bef6e63-ff34-4056-b189-8b2248dededf/,Phil,,5/20/2018 0:00,14.000005,14.0:15,47.800712000000,-4.180585000000,,Loctudy - Finistère,43730,observation-5bef6e63-ff34-4056-b189-8b2248dededf-7,https://biolit.fr/observations/observation-5bef6e63-ff34-4056-b189-8b2248dededf-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110440.JPG,,FALSE, +N1,59625,sortie-0ed28926-cd18-42bf-97c3-9b336689f832,https://biolit.fr/sorties/sortie-0ed28926-cd18-42bf-97c3-9b336689f832/,Phil,,05/01/2018,13.0000000,13.0000000,47.799249000000,-4.177757000000,,Loctudy - Finistère,43732,observation-0ed28926-cd18-42bf-97c3-9b336689f832,https://biolit.fr/observations/observation-0ed28926-cd18-42bf-97c3-9b336689f832/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20180501_131042.jpg,,TRUE, +N1,59625,sortie-0ed28926-cd18-42bf-97c3-9b336689f832,https://biolit.fr/sorties/sortie-0ed28926-cd18-42bf-97c3-9b336689f832/,Phil,,05/01/2018,13.0000000,13.0000000,47.799249000000,-4.177757000000,,Loctudy - Finistère,43734,observation-0ed28926-cd18-42bf-97c3-9b336689f832-2,https://biolit.fr/observations/observation-0ed28926-cd18-42bf-97c3-9b336689f832-2/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20180501_131113.jpg,,TRUE, +N1,59625,sortie-0ed28926-cd18-42bf-97c3-9b336689f832,https://biolit.fr/sorties/sortie-0ed28926-cd18-42bf-97c3-9b336689f832/,Phil,,05/01/2018,13.0000000,13.0000000,47.799249000000,-4.177757000000,,Loctudy - Finistère,43736,observation-0ed28926-cd18-42bf-97c3-9b336689f832-3,https://biolit.fr/observations/observation-0ed28926-cd18-42bf-97c3-9b336689f832-3/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20180501_131207.jpg,,TRUE, +N1,59625,sortie-0ed28926-cd18-42bf-97c3-9b336689f832,https://biolit.fr/sorties/sortie-0ed28926-cd18-42bf-97c3-9b336689f832/,Phil,,05/01/2018,13.0000000,13.0000000,47.799249000000,-4.177757000000,,Loctudy - Finistère,43738,observation-0ed28926-cd18-42bf-97c3-9b336689f832-4,https://biolit.fr/observations/observation-0ed28926-cd18-42bf-97c3-9b336689f832-4/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20180501_131230.jpg,,TRUE, +N1,59625,sortie-0ed28926-cd18-42bf-97c3-9b336689f832,https://biolit.fr/sorties/sortie-0ed28926-cd18-42bf-97c3-9b336689f832/,Phil,,05/01/2018,13.0000000,13.0000000,47.799249000000,-4.177757000000,,Loctudy - Finistère,43740,observation-0ed28926-cd18-42bf-97c3-9b336689f832-5,https://biolit.fr/observations/observation-0ed28926-cd18-42bf-97c3-9b336689f832-5/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20180501_132210.jpg,,TRUE, +N1,59625,sortie-0ed28926-cd18-42bf-97c3-9b336689f832,https://biolit.fr/sorties/sortie-0ed28926-cd18-42bf-97c3-9b336689f832/,Phil,,05/01/2018,13.0000000,13.0000000,47.799249000000,-4.177757000000,,Loctudy - Finistère,43742,observation-0ed28926-cd18-42bf-97c3-9b336689f832-6,https://biolit.fr/observations/observation-0ed28926-cd18-42bf-97c3-9b336689f832-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_132255.jpg,,FALSE, +N1,59626,sortie-c801ec31-54b4-4803-8160-7accdf4b0009,https://biolit.fr/sorties/sortie-c801ec31-54b4-4803-8160-7accdf4b0009/,Phil,,5/17/2018 0:00,11.0:45,11.0:55,47.892469000000,-3.964305000000,,La Forêt-Fouesnant - Finistère,43744,observation-c801ec31-54b4-4803-8160-7accdf4b0009,https://biolit.fr/observations/observation-c801ec31-54b4-4803-8160-7accdf4b0009/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/2023/07/P1110270.JPG,,TRUE, +N1,59626,sortie-c801ec31-54b4-4803-8160-7accdf4b0009,https://biolit.fr/sorties/sortie-c801ec31-54b4-4803-8160-7accdf4b0009/,Phil,,5/17/2018 0:00,11.0:45,11.0:55,47.892469000000,-3.964305000000,,La Forêt-Fouesnant - Finistère,43746,observation-c801ec31-54b4-4803-8160-7accdf4b0009-2,https://biolit.fr/observations/observation-c801ec31-54b4-4803-8160-7accdf4b0009-2/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/2023/07/P1110272_0.JPG,,TRUE, +N1,59626,sortie-c801ec31-54b4-4803-8160-7accdf4b0009,https://biolit.fr/sorties/sortie-c801ec31-54b4-4803-8160-7accdf4b0009/,Phil,,5/17/2018 0:00,11.0:45,11.0:55,47.892469000000,-3.964305000000,,La Forêt-Fouesnant - Finistère,43748,observation-c801ec31-54b4-4803-8160-7accdf4b0009-3,https://biolit.fr/observations/observation-c801ec31-54b4-4803-8160-7accdf4b0009-3/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/2023/07/P1110273.JPG,,TRUE, +N1,59626,sortie-c801ec31-54b4-4803-8160-7accdf4b0009,https://biolit.fr/sorties/sortie-c801ec31-54b4-4803-8160-7accdf4b0009/,Phil,,5/17/2018 0:00,11.0:45,11.0:55,47.892469000000,-3.964305000000,,La Forêt-Fouesnant - Finistère,43750,observation-c801ec31-54b4-4803-8160-7accdf4b0009-4,https://biolit.fr/observations/observation-c801ec31-54b4-4803-8160-7accdf4b0009-4/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/2023/07/P1110277.JPG,,TRUE, +N1,59626,sortie-c801ec31-54b4-4803-8160-7accdf4b0009,https://biolit.fr/sorties/sortie-c801ec31-54b4-4803-8160-7accdf4b0009/,Phil,,5/17/2018 0:00,11.0:45,11.0:55,47.892469000000,-3.964305000000,,La Forêt-Fouesnant - Finistère,43752,observation-c801ec31-54b4-4803-8160-7accdf4b0009-5,https://biolit.fr/observations/observation-c801ec31-54b4-4803-8160-7accdf4b0009-5/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/2023/07/P1110281_0.JPG,,TRUE, +N1,59626,sortie-c801ec31-54b4-4803-8160-7accdf4b0009,https://biolit.fr/sorties/sortie-c801ec31-54b4-4803-8160-7accdf4b0009/,Phil,,5/17/2018 0:00,11.0:45,11.0:55,47.892469000000,-3.964305000000,,La Forêt-Fouesnant - Finistère,43754,observation-c801ec31-54b4-4803-8160-7accdf4b0009-6,https://biolit.fr/observations/observation-c801ec31-54b4-4803-8160-7accdf4b0009-6/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/2023/07/P1110283.JPG,,TRUE, +N1,59626,sortie-c801ec31-54b4-4803-8160-7accdf4b0009,https://biolit.fr/sorties/sortie-c801ec31-54b4-4803-8160-7accdf4b0009/,Phil,,5/17/2018 0:00,11.0:45,11.0:55,47.892469000000,-3.964305000000,,La Forêt-Fouesnant - Finistère,43756,observation-c801ec31-54b4-4803-8160-7accdf4b0009-7,https://biolit.fr/observations/observation-c801ec31-54b4-4803-8160-7accdf4b0009-7/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/2023/07/P1110290_0.JPG,,TRUE, +N1,59627,sortie-fae899f2-6bdf-4ce2-8c56-0723271abbec,https://biolit.fr/sorties/sortie-fae899f2-6bdf-4ce2-8c56-0723271abbec/,Phil,,05/01/2018,13.0000000,13.0000000,47.798599000000,-4.176508000000,,Loctudy - Finistère,43758,observation-fae899f2-6bdf-4ce2-8c56-0723271abbec,https://biolit.fr/observations/observation-fae899f2-6bdf-4ce2-8c56-0723271abbec/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_130954.jpg,,FALSE, +N1,59627,sortie-fae899f2-6bdf-4ce2-8c56-0723271abbec,https://biolit.fr/sorties/sortie-fae899f2-6bdf-4ce2-8c56-0723271abbec/,Phil,,05/01/2018,13.0000000,13.0000000,47.798599000000,-4.176508000000,,Loctudy - Finistère,43760,observation-fae899f2-6bdf-4ce2-8c56-0723271abbec-2,https://biolit.fr/observations/observation-fae899f2-6bdf-4ce2-8c56-0723271abbec-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_130934.jpg,,FALSE, +N1,59627,sortie-fae899f2-6bdf-4ce2-8c56-0723271abbec,https://biolit.fr/sorties/sortie-fae899f2-6bdf-4ce2-8c56-0723271abbec/,Phil,,05/01/2018,13.0000000,13.0000000,47.798599000000,-4.176508000000,,Loctudy - Finistère,43762,observation-fae899f2-6bdf-4ce2-8c56-0723271abbec-3,https://biolit.fr/observations/observation-fae899f2-6bdf-4ce2-8c56-0723271abbec-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_130035.jpg,,FALSE, +N1,59627,sortie-fae899f2-6bdf-4ce2-8c56-0723271abbec,https://biolit.fr/sorties/sortie-fae899f2-6bdf-4ce2-8c56-0723271abbec/,Phil,,05/01/2018,13.0000000,13.0000000,47.798599000000,-4.176508000000,,Loctudy - Finistère,43764,observation-fae899f2-6bdf-4ce2-8c56-0723271abbec-4,https://biolit.fr/observations/observation-fae899f2-6bdf-4ce2-8c56-0723271abbec-4/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20180501_130925.jpg,,TRUE, +N1,59629,sortie-fbe8b29e-a6b0-489e-b0ba-76d011cafe88,https://biolit.fr/sorties/sortie-fbe8b29e-a6b0-489e-b0ba-76d011cafe88/,Phil,,4/28/2018 0:00,11.0:25,11.0000000,47.895480000000,-3.96648000000,,La Forêt-Fouesnant - Finistère,43772,observation-fbe8b29e-a6b0-489e-b0ba-76d011cafe88,https://biolit.fr/observations/observation-fbe8b29e-a6b0-489e-b0ba-76d011cafe88/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110113.JPG,,FALSE, +N1,59629,sortie-fbe8b29e-a6b0-489e-b0ba-76d011cafe88,https://biolit.fr/sorties/sortie-fbe8b29e-a6b0-489e-b0ba-76d011cafe88/,Phil,,4/28/2018 0:00,11.0:25,11.0000000,47.895480000000,-3.96648000000,,La Forêt-Fouesnant - Finistère,43774,observation-fbe8b29e-a6b0-489e-b0ba-76d011cafe88-2,https://biolit.fr/observations/observation-fbe8b29e-a6b0-489e-b0ba-76d011cafe88-2/,Atelecyclus undecimdentatus,Grand crabe circulaire,,https://biolit.fr/wp-content/uploads/2023/07/P1110114.JPG,,TRUE, +N1,59629,sortie-fbe8b29e-a6b0-489e-b0ba-76d011cafe88,https://biolit.fr/sorties/sortie-fbe8b29e-a6b0-489e-b0ba-76d011cafe88/,Phil,,4/28/2018 0:00,11.0:25,11.0000000,47.895480000000,-3.96648000000,,La Forêt-Fouesnant - Finistère,43776,observation-fbe8b29e-a6b0-489e-b0ba-76d011cafe88-3,https://biolit.fr/observations/observation-fbe8b29e-a6b0-489e-b0ba-76d011cafe88-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110115.JPG,,FALSE, +N1,59629,sortie-fbe8b29e-a6b0-489e-b0ba-76d011cafe88,https://biolit.fr/sorties/sortie-fbe8b29e-a6b0-489e-b0ba-76d011cafe88/,Phil,,4/28/2018 0:00,11.0:25,11.0000000,47.895480000000,-3.96648000000,,La Forêt-Fouesnant - Finistère,43778,observation-fbe8b29e-a6b0-489e-b0ba-76d011cafe88-4,https://biolit.fr/observations/observation-fbe8b29e-a6b0-489e-b0ba-76d011cafe88-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110118.JPG,,FALSE, +N1,59630,sortie-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c,https://biolit.fr/sorties/sortie-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c/,Phil,,06/02/2018,11.0:25,11.0000000,48.168770000000,-4.296246000000,,Plomodiern - Finistère,43780,observation-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c,https://biolit.fr/observations/observation-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110587.JPG,,TRUE, +N1,59630,sortie-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c,https://biolit.fr/sorties/sortie-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c/,Phil,,06/02/2018,11.0:25,11.0000000,48.168770000000,-4.296246000000,,Plomodiern - Finistère,43782,observation-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c-2,https://biolit.fr/observations/observation-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110589.JPG,,FALSE, +N1,59630,sortie-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c,https://biolit.fr/sorties/sortie-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c/,Phil,,06/02/2018,11.0:25,11.0000000,48.168770000000,-4.296246000000,,Plomodiern - Finistère,43784,observation-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c-3,https://biolit.fr/observations/observation-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110590.JPG,,FALSE, +N1,59630,sortie-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c,https://biolit.fr/sorties/sortie-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c/,Phil,,06/02/2018,11.0:25,11.0000000,48.168770000000,-4.296246000000,,Plomodiern - Finistère,43786,observation-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c-4,https://biolit.fr/observations/observation-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110591.JPG,,FALSE, +N1,59630,sortie-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c,https://biolit.fr/sorties/sortie-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c/,Phil,,06/02/2018,11.0:25,11.0000000,48.168770000000,-4.296246000000,,Plomodiern - Finistère,43788,observation-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c-5,https://biolit.fr/observations/observation-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110595.JPG,,FALSE, +N1,59631,sortie-4f272551-cbd0-4bb7-8619-44e0c03b5a4f,https://biolit.fr/sorties/sortie-4f272551-cbd0-4bb7-8619-44e0c03b5a4f/,Phil,,05/01/2018,12.0000000,13.0000000,47.798069000000,-4.176633000000,,Loctudy - Finistère,43790,observation-4f272551-cbd0-4bb7-8619-44e0c03b5a4f,https://biolit.fr/observations/observation-4f272551-cbd0-4bb7-8619-44e0c03b5a4f/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_125818.jpg,,FALSE, +N1,59631,sortie-4f272551-cbd0-4bb7-8619-44e0c03b5a4f,https://biolit.fr/sorties/sortie-4f272551-cbd0-4bb7-8619-44e0c03b5a4f/,Phil,,05/01/2018,12.0000000,13.0000000,47.798069000000,-4.176633000000,,Loctudy - Finistère,43792,observation-4f272551-cbd0-4bb7-8619-44e0c03b5a4f-2,https://biolit.fr/observations/observation-4f272551-cbd0-4bb7-8619-44e0c03b5a4f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_125721.jpg,,FALSE, +N1,59631,sortie-4f272551-cbd0-4bb7-8619-44e0c03b5a4f,https://biolit.fr/sorties/sortie-4f272551-cbd0-4bb7-8619-44e0c03b5a4f/,Phil,,05/01/2018,12.0000000,13.0000000,47.798069000000,-4.176633000000,,Loctudy - Finistère,43794,observation-4f272551-cbd0-4bb7-8619-44e0c03b5a4f-3,https://biolit.fr/observations/observation-4f272551-cbd0-4bb7-8619-44e0c03b5a4f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_125914.jpg,,FALSE, +N1,59632,sortie-5bc1eaab-583b-4486-96a0-c2348c216f03,https://biolit.fr/sorties/sortie-5bc1eaab-583b-4486-96a0-c2348c216f03/,Phil,,06/02/2018,11.0:25,11.0:25,48.168384000000,-4.293474000000,,Plomodiern - Finistère,43796,observation-5bc1eaab-583b-4486-96a0-c2348c216f03,https://biolit.fr/observations/observation-5bc1eaab-583b-4486-96a0-c2348c216f03/,Macomangulus tenuis,Telline-papillon,,https://biolit.fr/wp-content/uploads/2023/07/P1110583.JPG,,TRUE, +N1,59633,sortie-ed88b7fb-d1a4-4567-9774-0b987571460c,https://biolit.fr/sorties/sortie-ed88b7fb-d1a4-4567-9774-0b987571460c/,Phil,,06/01/2018,12.0:45,12.0000000,47.799164000000,-4.177409000000,,Loctudy - Finistère,43798,observation-ed88b7fb-d1a4-4567-9774-0b987571460c,https://biolit.fr/observations/observation-ed88b7fb-d1a4-4567-9774-0b987571460c/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20180501_125624.jpg,,TRUE, +N1,59633,sortie-ed88b7fb-d1a4-4567-9774-0b987571460c,https://biolit.fr/sorties/sortie-ed88b7fb-d1a4-4567-9774-0b987571460c/,Phil,,06/01/2018,12.0:45,12.0000000,47.799164000000,-4.177409000000,,Loctudy - Finistère,43800,observation-ed88b7fb-d1a4-4567-9774-0b987571460c-2,https://biolit.fr/observations/observation-ed88b7fb-d1a4-4567-9774-0b987571460c-2/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20180501_125539.jpg,,TRUE, +N1,59633,sortie-ed88b7fb-d1a4-4567-9774-0b987571460c,https://biolit.fr/sorties/sortie-ed88b7fb-d1a4-4567-9774-0b987571460c/,Phil,,06/01/2018,12.0:45,12.0000000,47.799164000000,-4.177409000000,,Loctudy - Finistère,43802,observation-ed88b7fb-d1a4-4567-9774-0b987571460c-3,https://biolit.fr/observations/observation-ed88b7fb-d1a4-4567-9774-0b987571460c-3/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20180501_125619.jpg,,TRUE, +N1,59633,sortie-ed88b7fb-d1a4-4567-9774-0b987571460c,https://biolit.fr/sorties/sortie-ed88b7fb-d1a4-4567-9774-0b987571460c/,Phil,,06/01/2018,12.0:45,12.0000000,47.799164000000,-4.177409000000,,Loctudy - Finistère,43804,observation-ed88b7fb-d1a4-4567-9774-0b987571460c-4,https://biolit.fr/observations/observation-ed88b7fb-d1a4-4567-9774-0b987571460c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_125609.jpg,,FALSE, +N1,59634,sortie-1c76cfe0-c467-4253-bf30-a2c40a496d02,https://biolit.fr/sorties/sortie-1c76cfe0-c467-4253-bf30-a2c40a496d02/,Phil,,4/28/2018 0:00,11.0:25,11.0000000,47.893860000000,-3.966910000000,,La Forêt-Fouesnant - Finistère,43806,observation-1c76cfe0-c467-4253-bf30-a2c40a496d02,https://biolit.fr/observations/observation-1c76cfe0-c467-4253-bf30-a2c40a496d02/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/P1110102.JPG,,TRUE, +N1,59634,sortie-1c76cfe0-c467-4253-bf30-a2c40a496d02,https://biolit.fr/sorties/sortie-1c76cfe0-c467-4253-bf30-a2c40a496d02/,Phil,,4/28/2018 0:00,11.0:25,11.0000000,47.893860000000,-3.966910000000,,La Forêt-Fouesnant - Finistère,43808,observation-1c76cfe0-c467-4253-bf30-a2c40a496d02-2,https://biolit.fr/observations/observation-1c76cfe0-c467-4253-bf30-a2c40a496d02-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110105.JPG,,FALSE, +N1,59634,sortie-1c76cfe0-c467-4253-bf30-a2c40a496d02,https://biolit.fr/sorties/sortie-1c76cfe0-c467-4253-bf30-a2c40a496d02/,Phil,,4/28/2018 0:00,11.0:25,11.0000000,47.893860000000,-3.966910000000,,La Forêt-Fouesnant - Finistère,43810,observation-1c76cfe0-c467-4253-bf30-a2c40a496d02-3,https://biolit.fr/observations/observation-1c76cfe0-c467-4253-bf30-a2c40a496d02-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110108.JPG,,FALSE, +N1,59634,sortie-1c76cfe0-c467-4253-bf30-a2c40a496d02,https://biolit.fr/sorties/sortie-1c76cfe0-c467-4253-bf30-a2c40a496d02/,Phil,,4/28/2018 0:00,11.0:25,11.0000000,47.893860000000,-3.966910000000,,La Forêt-Fouesnant - Finistère,43812,observation-1c76cfe0-c467-4253-bf30-a2c40a496d02-4,https://biolit.fr/observations/observation-1c76cfe0-c467-4253-bf30-a2c40a496d02-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110109.JPG,,FALSE, +N1,59634,sortie-1c76cfe0-c467-4253-bf30-a2c40a496d02,https://biolit.fr/sorties/sortie-1c76cfe0-c467-4253-bf30-a2c40a496d02/,Phil,,4/28/2018 0:00,11.0:25,11.0000000,47.893860000000,-3.966910000000,,La Forêt-Fouesnant - Finistère,43814,observation-1c76cfe0-c467-4253-bf30-a2c40a496d02-5,https://biolit.fr/observations/observation-1c76cfe0-c467-4253-bf30-a2c40a496d02-5/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1110111.JPG,,TRUE, +N1,59635,sortie-f13adcf7-ecf0-449f-b893-6f9dba4ca94c,https://biolit.fr/sorties/sortie-f13adcf7-ecf0-449f-b893-6f9dba4ca94c/,Phil,,05/01/2018,12.0:35,12.0:45,47.798486000000,-4.176779000000,,Loctudy - Finistère,43816,observation-f13adcf7-ecf0-449f-b893-6f9dba4ca94c,https://biolit.fr/observations/observation-f13adcf7-ecf0-449f-b893-6f9dba4ca94c/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180501_123517(0).jpg,,TRUE, +N1,59635,sortie-f13adcf7-ecf0-449f-b893-6f9dba4ca94c,https://biolit.fr/sorties/sortie-f13adcf7-ecf0-449f-b893-6f9dba4ca94c/,Phil,,05/01/2018,12.0:35,12.0:45,47.798486000000,-4.176779000000,,Loctudy - Finistère,43818,observation-f13adcf7-ecf0-449f-b893-6f9dba4ca94c-2,https://biolit.fr/observations/observation-f13adcf7-ecf0-449f-b893-6f9dba4ca94c-2/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180501_123508.jpg,,TRUE, +N1,59635,sortie-f13adcf7-ecf0-449f-b893-6f9dba4ca94c,https://biolit.fr/sorties/sortie-f13adcf7-ecf0-449f-b893-6f9dba4ca94c/,Phil,,05/01/2018,12.0:35,12.0:45,47.798486000000,-4.176779000000,,Loctudy - Finistère,43820,observation-f13adcf7-ecf0-449f-b893-6f9dba4ca94c-3,https://biolit.fr/observations/observation-f13adcf7-ecf0-449f-b893-6f9dba4ca94c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_124542.jpg,,FALSE, +N1,59635,sortie-f13adcf7-ecf0-449f-b893-6f9dba4ca94c,https://biolit.fr/sorties/sortie-f13adcf7-ecf0-449f-b893-6f9dba4ca94c/,Phil,,05/01/2018,12.0:35,12.0:45,47.798486000000,-4.176779000000,,Loctudy - Finistère,43822,observation-f13adcf7-ecf0-449f-b893-6f9dba4ca94c-4,https://biolit.fr/observations/observation-f13adcf7-ecf0-449f-b893-6f9dba4ca94c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_124604.jpg,,FALSE, +N1,59637,sortie-d1ae9030-cf4b-4eb8-a064-519faf7466e9,https://biolit.fr/sorties/sortie-d1ae9030-cf4b-4eb8-a064-519faf7466e9/,Phil,,5/18/2018 0:00,22.0000000,22.0000000,48.21100000000,-4.370640000000,,Telgruc-sur-Mer - Finistère,43826,observation-d1ae9030-cf4b-4eb8-a064-519faf7466e9,https://biolit.fr/observations/observation-d1ae9030-cf4b-4eb8-a064-519faf7466e9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180518_221959.jpg,,FALSE, +N1,59637,sortie-d1ae9030-cf4b-4eb8-a064-519faf7466e9,https://biolit.fr/sorties/sortie-d1ae9030-cf4b-4eb8-a064-519faf7466e9/,Phil,,5/18/2018 0:00,22.0000000,22.0000000,48.21100000000,-4.370640000000,,Telgruc-sur-Mer - Finistère,43828,observation-d1ae9030-cf4b-4eb8-a064-519faf7466e9-2,https://biolit.fr/observations/observation-d1ae9030-cf4b-4eb8-a064-519faf7466e9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180518_222008.jpg,,FALSE, +N1,59637,sortie-d1ae9030-cf4b-4eb8-a064-519faf7466e9,https://biolit.fr/sorties/sortie-d1ae9030-cf4b-4eb8-a064-519faf7466e9/,Phil,,5/18/2018 0:00,22.0000000,22.0000000,48.21100000000,-4.370640000000,,Telgruc-sur-Mer - Finistère,43830,observation-d1ae9030-cf4b-4eb8-a064-519faf7466e9-3,https://biolit.fr/observations/observation-d1ae9030-cf4b-4eb8-a064-519faf7466e9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180518_223057.jpg,,FALSE, +N1,59637,sortie-d1ae9030-cf4b-4eb8-a064-519faf7466e9,https://biolit.fr/sorties/sortie-d1ae9030-cf4b-4eb8-a064-519faf7466e9/,Phil,,5/18/2018 0:00,22.0000000,22.0000000,48.21100000000,-4.370640000000,,Telgruc-sur-Mer - Finistère,43832,observation-d1ae9030-cf4b-4eb8-a064-519faf7466e9-4,https://biolit.fr/observations/observation-d1ae9030-cf4b-4eb8-a064-519faf7466e9-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180518_223515.jpg,,FALSE, +N1,59638,sortie-732d74f7-3ee0-47f3-9f84-917bf2f2e902,https://biolit.fr/sorties/sortie-732d74f7-3ee0-47f3-9f84-917bf2f2e902/,Water Life Community,,4/27/2018 0:00,11.0000000,12.0000000,44.537394000000,-1.255291000000,,La Salie Nord,43834,observation-732d74f7-3ee0-47f3-9f84-917bf2f2e902,https://biolit.fr/observations/observation-732d74f7-3ee0-47f3-9f84-917bf2f2e902/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/32105295_10212161823937747_1987473915538046976_n.jpg,,TRUE, +N1,59639,sortie-8baa8b9c-c710-43db-a4cb-d039b9d9be69,https://biolit.fr/sorties/sortie-8baa8b9c-c710-43db-a4cb-d039b9d9be69/,Phil,,5/17/2018 0:00,12.0:15,12.0000000,47.892762000000,-3.967661000000,,La Forêt-Fouesnant - Finistère,43836,observation-8baa8b9c-c710-43db-a4cb-d039b9d9be69,https://biolit.fr/observations/observation-8baa8b9c-c710-43db-a4cb-d039b9d9be69/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110334.JPG,,FALSE, +N1,59639,sortie-8baa8b9c-c710-43db-a4cb-d039b9d9be69,https://biolit.fr/sorties/sortie-8baa8b9c-c710-43db-a4cb-d039b9d9be69/,Phil,,5/17/2018 0:00,12.0:15,12.0000000,47.892762000000,-3.967661000000,,La Forêt-Fouesnant - Finistère,43838,observation-8baa8b9c-c710-43db-a4cb-d039b9d9be69-2,https://biolit.fr/observations/observation-8baa8b9c-c710-43db-a4cb-d039b9d9be69-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110328.JPG,,FALSE, +N1,59639,sortie-8baa8b9c-c710-43db-a4cb-d039b9d9be69,https://biolit.fr/sorties/sortie-8baa8b9c-c710-43db-a4cb-d039b9d9be69/,Phil,,5/17/2018 0:00,12.0:15,12.0000000,47.892762000000,-3.967661000000,,La Forêt-Fouesnant - Finistère,43840,observation-8baa8b9c-c710-43db-a4cb-d039b9d9be69-3,https://biolit.fr/observations/observation-8baa8b9c-c710-43db-a4cb-d039b9d9be69-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110329.JPG,,FALSE, +N1,59639,sortie-8baa8b9c-c710-43db-a4cb-d039b9d9be69,https://biolit.fr/sorties/sortie-8baa8b9c-c710-43db-a4cb-d039b9d9be69/,Phil,,5/17/2018 0:00,12.0:15,12.0000000,47.892762000000,-3.967661000000,,La Forêt-Fouesnant - Finistère,43842,observation-8baa8b9c-c710-43db-a4cb-d039b9d9be69-4,https://biolit.fr/observations/observation-8baa8b9c-c710-43db-a4cb-d039b9d9be69-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110340.JPG,,FALSE, +N1,59639,sortie-8baa8b9c-c710-43db-a4cb-d039b9d9be69,https://biolit.fr/sorties/sortie-8baa8b9c-c710-43db-a4cb-d039b9d9be69/,Phil,,5/17/2018 0:00,12.0:15,12.0000000,47.892762000000,-3.967661000000,,La Forêt-Fouesnant - Finistère,43844,observation-8baa8b9c-c710-43db-a4cb-d039b9d9be69-5,https://biolit.fr/observations/observation-8baa8b9c-c710-43db-a4cb-d039b9d9be69-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110336.JPG,,FALSE, +N1,59640,sortie-2d2067f7-1b1d-45fe-8564-d7dd31472769,https://biolit.fr/sorties/sortie-2d2067f7-1b1d-45fe-8564-d7dd31472769/,Phil,,4/28/2018 0:00,11.0:15,11.0:25,47.895590000000,-3.966141000000,,La Forêt-Fouesnant - Finistère,43846,observation-2d2067f7-1b1d-45fe-8564-d7dd31472769,https://biolit.fr/observations/observation-2d2067f7-1b1d-45fe-8564-d7dd31472769/,Lanice conchilega,Lanice,,https://biolit.fr/wp-content/uploads/2023/07/P1110100.JPG,,TRUE, +N1,59640,sortie-2d2067f7-1b1d-45fe-8564-d7dd31472769,https://biolit.fr/sorties/sortie-2d2067f7-1b1d-45fe-8564-d7dd31472769/,Phil,,4/28/2018 0:00,11.0:15,11.0:25,47.895590000000,-3.966141000000,,La Forêt-Fouesnant - Finistère,43848,observation-2d2067f7-1b1d-45fe-8564-d7dd31472769-2,https://biolit.fr/observations/observation-2d2067f7-1b1d-45fe-8564-d7dd31472769-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110099.JPG,,FALSE, +N1,59640,sortie-2d2067f7-1b1d-45fe-8564-d7dd31472769,https://biolit.fr/sorties/sortie-2d2067f7-1b1d-45fe-8564-d7dd31472769/,Phil,,4/28/2018 0:00,11.0:15,11.0:25,47.895590000000,-3.966141000000,,La Forêt-Fouesnant - Finistère,43850,observation-2d2067f7-1b1d-45fe-8564-d7dd31472769-3,https://biolit.fr/observations/observation-2d2067f7-1b1d-45fe-8564-d7dd31472769-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110098.JPG,,FALSE, +N1,59640,sortie-2d2067f7-1b1d-45fe-8564-d7dd31472769,https://biolit.fr/sorties/sortie-2d2067f7-1b1d-45fe-8564-d7dd31472769/,Phil,,4/28/2018 0:00,11.0:15,11.0:25,47.895590000000,-3.966141000000,,La Forêt-Fouesnant - Finistère,43852,observation-2d2067f7-1b1d-45fe-8564-d7dd31472769-4,https://biolit.fr/observations/observation-2d2067f7-1b1d-45fe-8564-d7dd31472769-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110093.JPG,,FALSE, +N1,59640,sortie-2d2067f7-1b1d-45fe-8564-d7dd31472769,https://biolit.fr/sorties/sortie-2d2067f7-1b1d-45fe-8564-d7dd31472769/,Phil,,4/28/2018 0:00,11.0:15,11.0:25,47.895590000000,-3.966141000000,,La Forêt-Fouesnant - Finistère,43854,observation-2d2067f7-1b1d-45fe-8564-d7dd31472769-5,https://biolit.fr/observations/observation-2d2067f7-1b1d-45fe-8564-d7dd31472769-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110090.JPG,,FALSE, +N1,59640,sortie-2d2067f7-1b1d-45fe-8564-d7dd31472769,https://biolit.fr/sorties/sortie-2d2067f7-1b1d-45fe-8564-d7dd31472769/,Phil,,4/28/2018 0:00,11.0:15,11.0:25,47.895590000000,-3.966141000000,,La Forêt-Fouesnant - Finistère,43856,observation-2d2067f7-1b1d-45fe-8564-d7dd31472769-6,https://biolit.fr/observations/observation-2d2067f7-1b1d-45fe-8564-d7dd31472769-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110089.JPG,,FALSE, +N1,59641,sortie-84500971-8812-4b62-aeff-11911dc0a2dc,https://biolit.fr/sorties/sortie-84500971-8812-4b62-aeff-11911dc0a2dc/,Océane Darrou,,5/13/2018 0:00,10.0000000,14.0000000,46.207664000000,-1.405065000000,,Plage de la chargé neuve,43858,observation-84500971-8812-4b62-aeff-11911dc0a2dc,https://biolit.fr/observations/observation-84500971-8812-4b62-aeff-11911dc0a2dc/,Euclymene lombricoides,Euclymène lombric,,https://biolit.fr/wp-content/uploads/2023/07/34035352_10217536726838599_8404873114164396032_n-scaled.jpg,,TRUE, +N1,59641,sortie-84500971-8812-4b62-aeff-11911dc0a2dc,https://biolit.fr/sorties/sortie-84500971-8812-4b62-aeff-11911dc0a2dc/,Océane Darrou,,5/13/2018 0:00,10.0000000,14.0000000,46.207664000000,-1.405065000000,,Plage de la chargé neuve,43860,observation-84500971-8812-4b62-aeff-11911dc0a2dc-2,https://biolit.fr/observations/observation-84500971-8812-4b62-aeff-11911dc0a2dc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/33780714_10217536726478590_7638933149384179712_n-scaled.jpg,,FALSE, +N1,59642,sortie-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff,https://biolit.fr/sorties/sortie-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff/,Phil,,05/01/2018,12.0:15,12.0000000,47.798393000000,-4.17690700000,,Loctudy - Finistère,43862,observation-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff,https://biolit.fr/observations/observation-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_122117.jpg,,FALSE, +N1,59642,sortie-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff,https://biolit.fr/sorties/sortie-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff/,Phil,,05/01/2018,12.0:15,12.0000000,47.798393000000,-4.17690700000,,Loctudy - Finistère,43864,observation-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff-2,https://biolit.fr/observations/observation-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff-2/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180501_121921.jpg,,TRUE, +N1,59642,sortie-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff,https://biolit.fr/sorties/sortie-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff/,Phil,,05/01/2018,12.0:15,12.0000000,47.798393000000,-4.17690700000,,Loctudy - Finistère,43866,observation-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff-3,https://biolit.fr/observations/observation-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_121926.jpg,,FALSE, +N1,59642,sortie-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff,https://biolit.fr/sorties/sortie-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff/,Phil,,05/01/2018,12.0:15,12.0000000,47.798393000000,-4.17690700000,,Loctudy - Finistère,43868,observation-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff-4,https://biolit.fr/observations/observation-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff-4/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/20180501_121853.jpg,,TRUE, +N1,59642,sortie-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff,https://biolit.fr/sorties/sortie-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff/,Phil,,05/01/2018,12.0:15,12.0000000,47.798393000000,-4.17690700000,,Loctudy - Finistère,43870,observation-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff-5,https://biolit.fr/observations/observation-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_121759.jpg,,FALSE, +N1,59643,sortie-3cf87610-da55-4d63-9af5-c1f0d631e26e,https://biolit.fr/sorties/sortie-3cf87610-da55-4d63-9af5-c1f0d631e26e/,Phil,,05/05/2018,17.000005,17.0:15,48.577819000000,-4.624866000000,,Saint-Pabu - Finistère,43872,observation-3cf87610-da55-4d63-9af5-c1f0d631e26e,https://biolit.fr/observations/observation-3cf87610-da55-4d63-9af5-c1f0d631e26e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110206.JPG,,FALSE, +N1,59643,sortie-3cf87610-da55-4d63-9af5-c1f0d631e26e,https://biolit.fr/sorties/sortie-3cf87610-da55-4d63-9af5-c1f0d631e26e/,Phil,,05/05/2018,17.000005,17.0:15,48.577819000000,-4.624866000000,,Saint-Pabu - Finistère,43874,observation-3cf87610-da55-4d63-9af5-c1f0d631e26e-2,https://biolit.fr/observations/observation-3cf87610-da55-4d63-9af5-c1f0d631e26e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110205.JPG,,FALSE, +N1,59643,sortie-3cf87610-da55-4d63-9af5-c1f0d631e26e,https://biolit.fr/sorties/sortie-3cf87610-da55-4d63-9af5-c1f0d631e26e/,Phil,,05/05/2018,17.000005,17.0:15,48.577819000000,-4.624866000000,,Saint-Pabu - Finistère,43876,observation-3cf87610-da55-4d63-9af5-c1f0d631e26e-3,https://biolit.fr/observations/observation-3cf87610-da55-4d63-9af5-c1f0d631e26e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110208.JPG,,FALSE, +N1,59643,sortie-3cf87610-da55-4d63-9af5-c1f0d631e26e,https://biolit.fr/sorties/sortie-3cf87610-da55-4d63-9af5-c1f0d631e26e/,Phil,,05/05/2018,17.000005,17.0:15,48.577819000000,-4.624866000000,,Saint-Pabu - Finistère,43878,observation-3cf87610-da55-4d63-9af5-c1f0d631e26e-4,https://biolit.fr/observations/observation-3cf87610-da55-4d63-9af5-c1f0d631e26e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110211.JPG,,FALSE, +N1,59643,sortie-3cf87610-da55-4d63-9af5-c1f0d631e26e,https://biolit.fr/sorties/sortie-3cf87610-da55-4d63-9af5-c1f0d631e26e/,Phil,,05/05/2018,17.000005,17.0:15,48.577819000000,-4.624866000000,,Saint-Pabu - Finistère,43880,observation-3cf87610-da55-4d63-9af5-c1f0d631e26e-5,https://biolit.fr/observations/observation-3cf87610-da55-4d63-9af5-c1f0d631e26e-5/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110212.JPG,,TRUE, +N1,59643,sortie-3cf87610-da55-4d63-9af5-c1f0d631e26e,https://biolit.fr/sorties/sortie-3cf87610-da55-4d63-9af5-c1f0d631e26e/,Phil,,05/05/2018,17.000005,17.0:15,48.577819000000,-4.624866000000,,Saint-Pabu - Finistère,43882,observation-3cf87610-da55-4d63-9af5-c1f0d631e26e-6,https://biolit.fr/observations/observation-3cf87610-da55-4d63-9af5-c1f0d631e26e-6/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110207.JPG,,TRUE, +N1,59644,sortie-4931f612-348e-48bd-82f4-c4b584885d40,https://biolit.fr/sorties/sortie-4931f612-348e-48bd-82f4-c4b584885d40/,Phil,,05/01/2018,12.0000000,12.0:25,47.797440000000,-4.177216000000,,Loctudy - Finistère,43884,observation-4931f612-348e-48bd-82f4-c4b584885d40,https://biolit.fr/observations/observation-4931f612-348e-48bd-82f4-c4b584885d40/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_122707.jpg,,FALSE, +N1,59644,sortie-4931f612-348e-48bd-82f4-c4b584885d40,https://biolit.fr/sorties/sortie-4931f612-348e-48bd-82f4-c4b584885d40/,Phil,,05/01/2018,12.0000000,12.0:25,47.797440000000,-4.177216000000,,Loctudy - Finistère,43886,observation-4931f612-348e-48bd-82f4-c4b584885d40-2,https://biolit.fr/observations/observation-4931f612-348e-48bd-82f4-c4b584885d40-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_122728.jpg,,FALSE, +N1,59644,sortie-4931f612-348e-48bd-82f4-c4b584885d40,https://biolit.fr/sorties/sortie-4931f612-348e-48bd-82f4-c4b584885d40/,Phil,,05/01/2018,12.0000000,12.0:25,47.797440000000,-4.177216000000,,Loctudy - Finistère,43888,observation-4931f612-348e-48bd-82f4-c4b584885d40-3,https://biolit.fr/observations/observation-4931f612-348e-48bd-82f4-c4b584885d40-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_122742.jpg,,FALSE, +N1,59644,sortie-4931f612-348e-48bd-82f4-c4b584885d40,https://biolit.fr/sorties/sortie-4931f612-348e-48bd-82f4-c4b584885d40/,Phil,,05/01/2018,12.0000000,12.0:25,47.797440000000,-4.177216000000,,Loctudy - Finistère,43890,observation-4931f612-348e-48bd-82f4-c4b584885d40-4,https://biolit.fr/observations/observation-4931f612-348e-48bd-82f4-c4b584885d40-4/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20180501_122808.jpg,,TRUE, +N1,59645,sortie-7e3592d2-2e2d-47cf-87fd-9078acae7dce,https://biolit.fr/sorties/sortie-7e3592d2-2e2d-47cf-87fd-9078acae7dce/,Olivier Gatti,,5/27/2018 0:00,19.0000000,21.0000000,43.214980000000,5.342868000000,,Anse de la Maronaise,43892,observation-7e3592d2-2e2d-47cf-87fd-9078acae7dce,https://biolit.fr/observations/observation-7e3592d2-2e2d-47cf-87fd-9078acae7dce/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180527_122344-scaled.jpg,,TRUE, +N1,59645,sortie-7e3592d2-2e2d-47cf-87fd-9078acae7dce,https://biolit.fr/sorties/sortie-7e3592d2-2e2d-47cf-87fd-9078acae7dce/,Olivier Gatti,,5/27/2018 0:00,19.0000000,21.0000000,43.214980000000,5.342868000000,,Anse de la Maronaise,43894,observation-7e3592d2-2e2d-47cf-87fd-9078acae7dce-2,https://biolit.fr/observations/observation-7e3592d2-2e2d-47cf-87fd-9078acae7dce-2/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180527_122319-scaled.jpg,,TRUE, +N1,59645,sortie-7e3592d2-2e2d-47cf-87fd-9078acae7dce,https://biolit.fr/sorties/sortie-7e3592d2-2e2d-47cf-87fd-9078acae7dce/,Olivier Gatti,,5/27/2018 0:00,19.0000000,21.0000000,43.214980000000,5.342868000000,,Anse de la Maronaise,43896,observation-7e3592d2-2e2d-47cf-87fd-9078acae7dce-3,https://biolit.fr/observations/observation-7e3592d2-2e2d-47cf-87fd-9078acae7dce-3/,Xantho poressa,Xanthe de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180527_113635-scaled.jpg,,TRUE, +N1,59645,sortie-7e3592d2-2e2d-47cf-87fd-9078acae7dce,https://biolit.fr/sorties/sortie-7e3592d2-2e2d-47cf-87fd-9078acae7dce/,Olivier Gatti,,5/27/2018 0:00,19.0000000,21.0000000,43.214980000000,5.342868000000,,Anse de la Maronaise,43898,observation-7e3592d2-2e2d-47cf-87fd-9078acae7dce-4,https://biolit.fr/observations/observation-7e3592d2-2e2d-47cf-87fd-9078acae7dce-4/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180527_112853-scaled.jpg,,TRUE, +N1,59646,sortie-dfac5d02-c966-42ef-bb91-ead971bbc562,https://biolit.fr/sorties/sortie-dfac5d02-c966-42ef-bb91-ead971bbc562/,Isabelle CRUZ,,5/27/2018 0:00,9.0000000,11.0000000,43.150940000000,5.364272000000,,Anse de la Maronaise Les Goudes Marseille,43900,observation-dfac5d02-c966-42ef-bb91-ead971bbc562,https://biolit.fr/observations/observation-dfac5d02-c966-42ef-bb91-ead971bbc562/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/20180527_094240[1]-scaled.jpg,,TRUE, +N1,59646,sortie-dfac5d02-c966-42ef-bb91-ead971bbc562,https://biolit.fr/sorties/sortie-dfac5d02-c966-42ef-bb91-ead971bbc562/,Isabelle CRUZ,,5/27/2018 0:00,9.0000000,11.0000000,43.150940000000,5.364272000000,,Anse de la Maronaise Les Goudes Marseille,43902,observation-dfac5d02-c966-42ef-bb91-ead971bbc562-2,https://biolit.fr/observations/observation-dfac5d02-c966-42ef-bb91-ead971bbc562-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180527_100351[1]-scaled.jpg,,FALSE, +N1,59646,sortie-dfac5d02-c966-42ef-bb91-ead971bbc562,https://biolit.fr/sorties/sortie-dfac5d02-c966-42ef-bb91-ead971bbc562/,Isabelle CRUZ,,5/27/2018 0:00,9.0000000,11.0000000,43.150940000000,5.364272000000,,Anse de la Maronaise Les Goudes Marseille,43904,observation-dfac5d02-c966-42ef-bb91-ead971bbc562-3,https://biolit.fr/observations/observation-dfac5d02-c966-42ef-bb91-ead971bbc562-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180527_101626[1]-scaled.jpg,,FALSE, +N1,59646,sortie-dfac5d02-c966-42ef-bb91-ead971bbc562,https://biolit.fr/sorties/sortie-dfac5d02-c966-42ef-bb91-ead971bbc562/,Isabelle CRUZ,,5/27/2018 0:00,9.0000000,11.0000000,43.150940000000,5.364272000000,,Anse de la Maronaise Les Goudes Marseille,43906,observation-dfac5d02-c966-42ef-bb91-ead971bbc562-4,https://biolit.fr/observations/observation-dfac5d02-c966-42ef-bb91-ead971bbc562-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180527_101938[1]-scaled.jpg,,FALSE, +N1,59647,sortie-8e09d093-cb47-4f04-bc36-bb0636bdc5f5,https://biolit.fr/sorties/sortie-8e09d093-cb47-4f04-bc36-bb0636bdc5f5/,Olivier Gatti,,5/27/2018 0:00,19.0000000,21.0000000,43.214808000000,5.342707000000,,Anse de la Maronaise,43908,observation-8e09d093-cb47-4f04-bc36-bb0636bdc5f5,https://biolit.fr/observations/observation-8e09d093-cb47-4f04-bc36-bb0636bdc5f5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180527_122621_0-scaled.jpg,,FALSE, +N1,59648,sortie-a516c592-5ea2-4982-ab4c-cc13cb097633,https://biolit.fr/sorties/sortie-a516c592-5ea2-4982-ab4c-cc13cb097633/,Olivier Gatti,,5/27/2018 0:00,9.0000000,12.0000000,43.2148240000,5.342761000000,,Anse de la Maronaise,43910,observation-a516c592-5ea2-4982-ab4c-cc13cb097633,https://biolit.fr/observations/observation-a516c592-5ea2-4982-ab4c-cc13cb097633/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180527_120017-scaled.jpg,,FALSE, +N1,59648,sortie-a516c592-5ea2-4982-ab4c-cc13cb097633,https://biolit.fr/sorties/sortie-a516c592-5ea2-4982-ab4c-cc13cb097633/,Olivier Gatti,,5/27/2018 0:00,9.0000000,12.0000000,43.2148240000,5.342761000000,,Anse de la Maronaise,43912,observation-a516c592-5ea2-4982-ab4c-cc13cb097633-2,https://biolit.fr/observations/observation-a516c592-5ea2-4982-ab4c-cc13cb097633-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180527_120250-scaled.jpg,,FALSE, +N1,59648,sortie-a516c592-5ea2-4982-ab4c-cc13cb097633,https://biolit.fr/sorties/sortie-a516c592-5ea2-4982-ab4c-cc13cb097633/,Olivier Gatti,,5/27/2018 0:00,9.0000000,12.0000000,43.2148240000,5.342761000000,,Anse de la Maronaise,43914,observation-a516c592-5ea2-4982-ab4c-cc13cb097633-3,https://biolit.fr/observations/observation-a516c592-5ea2-4982-ab4c-cc13cb097633-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180527_120252_0-scaled.jpg,,FALSE, +N1,59649,sortie-eaa9d2a9-c8d2-413b-8418-db5ef984d709,https://biolit.fr/sorties/sortie-eaa9d2a9-c8d2-413b-8418-db5ef984d709/,Phil,,4/18/2018 0:00,14.0000000,14.0:45,47.791203000000,-4.26226600000,,Tréffiagat - Finistère,43916,observation-eaa9d2a9-c8d2-413b-8418-db5ef984d709,https://biolit.fr/observations/observation-eaa9d2a9-c8d2-413b-8418-db5ef984d709/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100962.JPG,,FALSE, +N1,59649,sortie-eaa9d2a9-c8d2-413b-8418-db5ef984d709,https://biolit.fr/sorties/sortie-eaa9d2a9-c8d2-413b-8418-db5ef984d709/,Phil,,4/18/2018 0:00,14.0000000,14.0:45,47.791203000000,-4.26226600000,,Tréffiagat - Finistère,43918,observation-eaa9d2a9-c8d2-413b-8418-db5ef984d709-2,https://biolit.fr/observations/observation-eaa9d2a9-c8d2-413b-8418-db5ef984d709-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100963.JPG,,FALSE, +N1,59649,sortie-eaa9d2a9-c8d2-413b-8418-db5ef984d709,https://biolit.fr/sorties/sortie-eaa9d2a9-c8d2-413b-8418-db5ef984d709/,Phil,,4/18/2018 0:00,14.0000000,14.0:45,47.791203000000,-4.26226600000,,Tréffiagat - Finistère,43920,observation-eaa9d2a9-c8d2-413b-8418-db5ef984d709-3,https://biolit.fr/observations/observation-eaa9d2a9-c8d2-413b-8418-db5ef984d709-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100964-.JPG,,FALSE, +N1,59649,sortie-eaa9d2a9-c8d2-413b-8418-db5ef984d709,https://biolit.fr/sorties/sortie-eaa9d2a9-c8d2-413b-8418-db5ef984d709/,Phil,,4/18/2018 0:00,14.0000000,14.0:45,47.791203000000,-4.26226600000,,Tréffiagat - Finistère,43922,observation-eaa9d2a9-c8d2-413b-8418-db5ef984d709-4,https://biolit.fr/observations/observation-eaa9d2a9-c8d2-413b-8418-db5ef984d709-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100966.JPG,,FALSE, +N1,59649,sortie-eaa9d2a9-c8d2-413b-8418-db5ef984d709,https://biolit.fr/sorties/sortie-eaa9d2a9-c8d2-413b-8418-db5ef984d709/,Phil,,4/18/2018 0:00,14.0000000,14.0:45,47.791203000000,-4.26226600000,,Tréffiagat - Finistère,43924,observation-eaa9d2a9-c8d2-413b-8418-db5ef984d709-5,https://biolit.fr/observations/observation-eaa9d2a9-c8d2-413b-8418-db5ef984d709-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100968.JPG,,FALSE, +N1,59649,sortie-eaa9d2a9-c8d2-413b-8418-db5ef984d709,https://biolit.fr/sorties/sortie-eaa9d2a9-c8d2-413b-8418-db5ef984d709/,Phil,,4/18/2018 0:00,14.0000000,14.0:45,47.791203000000,-4.26226600000,,Tréffiagat - Finistère,43926,observation-eaa9d2a9-c8d2-413b-8418-db5ef984d709-6,https://biolit.fr/observations/observation-eaa9d2a9-c8d2-413b-8418-db5ef984d709-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100969.JPG,,FALSE, +N1,59650,sortie-c729c9c8-a3ff-4dce-bca8-12be654ef870,https://biolit.fr/sorties/sortie-c729c9c8-a3ff-4dce-bca8-12be654ef870/,Phil,,5/20/2018 0:00,14.000005,14.0000000,47.798903000000,-4.17689400000,,Loctudy - Finistère,43928,observation-c729c9c8-a3ff-4dce-bca8-12be654ef870,https://biolit.fr/observations/observation-c729c9c8-a3ff-4dce-bca8-12be654ef870/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110436.JPG,,FALSE, +N1,59650,sortie-c729c9c8-a3ff-4dce-bca8-12be654ef870,https://biolit.fr/sorties/sortie-c729c9c8-a3ff-4dce-bca8-12be654ef870/,Phil,,5/20/2018 0:00,14.000005,14.0000000,47.798903000000,-4.17689400000,,Loctudy - Finistère,43930,observation-c729c9c8-a3ff-4dce-bca8-12be654ef870-2,https://biolit.fr/observations/observation-c729c9c8-a3ff-4dce-bca8-12be654ef870-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110434.JPG,,FALSE, +N1,59650,sortie-c729c9c8-a3ff-4dce-bca8-12be654ef870,https://biolit.fr/sorties/sortie-c729c9c8-a3ff-4dce-bca8-12be654ef870/,Phil,,5/20/2018 0:00,14.000005,14.0000000,47.798903000000,-4.17689400000,,Loctudy - Finistère,43932,observation-c729c9c8-a3ff-4dce-bca8-12be654ef870-3,https://biolit.fr/observations/observation-c729c9c8-a3ff-4dce-bca8-12be654ef870-3/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/P1110433.JPG,,TRUE, +N1,59650,sortie-c729c9c8-a3ff-4dce-bca8-12be654ef870,https://biolit.fr/sorties/sortie-c729c9c8-a3ff-4dce-bca8-12be654ef870/,Phil,,5/20/2018 0:00,14.000005,14.0000000,47.798903000000,-4.17689400000,,Loctudy - Finistère,43934,observation-c729c9c8-a3ff-4dce-bca8-12be654ef870-4,https://biolit.fr/observations/observation-c729c9c8-a3ff-4dce-bca8-12be654ef870-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110432.JPG,,FALSE, +N1,59650,sortie-c729c9c8-a3ff-4dce-bca8-12be654ef870,https://biolit.fr/sorties/sortie-c729c9c8-a3ff-4dce-bca8-12be654ef870/,Phil,,5/20/2018 0:00,14.000005,14.0000000,47.798903000000,-4.17689400000,,Loctudy - Finistère,43936,observation-c729c9c8-a3ff-4dce-bca8-12be654ef870-5,https://biolit.fr/observations/observation-c729c9c8-a3ff-4dce-bca8-12be654ef870-5/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110430.JPG,,TRUE, +N1,59651,sortie-b8ec93ba-91d2-430c-ac17-beb7716a4715,https://biolit.fr/sorties/sortie-b8ec93ba-91d2-430c-ac17-beb7716a4715/,Phil,,4/28/2018 0:00,11.0000000,11.0:15,47.895673000000,-3.96678100000,,La Forêt-Fouesnant - Finistère,43938,observation-b8ec93ba-91d2-430c-ac17-beb7716a4715,https://biolit.fr/observations/observation-b8ec93ba-91d2-430c-ac17-beb7716a4715/,Lanice conchilega,Lanice,,https://biolit.fr/wp-content/uploads/2023/07/P1110059.JPG,,TRUE, +N1,59651,sortie-b8ec93ba-91d2-430c-ac17-beb7716a4715,https://biolit.fr/sorties/sortie-b8ec93ba-91d2-430c-ac17-beb7716a4715/,Phil,,4/28/2018 0:00,11.0000000,11.0:15,47.895673000000,-3.96678100000,,La Forêt-Fouesnant - Finistère,43940,observation-b8ec93ba-91d2-430c-ac17-beb7716a4715-2,https://biolit.fr/observations/observation-b8ec93ba-91d2-430c-ac17-beb7716a4715-2/,Lanice conchilega,Lanice,,https://biolit.fr/wp-content/uploads/2023/07/P1110060.JPG,,TRUE, +N1,59651,sortie-b8ec93ba-91d2-430c-ac17-beb7716a4715,https://biolit.fr/sorties/sortie-b8ec93ba-91d2-430c-ac17-beb7716a4715/,Phil,,4/28/2018 0:00,11.0000000,11.0:15,47.895673000000,-3.96678100000,,La Forêt-Fouesnant - Finistère,43942,observation-b8ec93ba-91d2-430c-ac17-beb7716a4715-3,https://biolit.fr/observations/observation-b8ec93ba-91d2-430c-ac17-beb7716a4715-3/,Lanice conchilega,Lanice,,https://biolit.fr/wp-content/uploads/2023/07/P1110063.JPG,,TRUE, +N1,59651,sortie-b8ec93ba-91d2-430c-ac17-beb7716a4715,https://biolit.fr/sorties/sortie-b8ec93ba-91d2-430c-ac17-beb7716a4715/,Phil,,4/28/2018 0:00,11.0000000,11.0:15,47.895673000000,-3.96678100000,,La Forêt-Fouesnant - Finistère,43944,observation-b8ec93ba-91d2-430c-ac17-beb7716a4715-4,https://biolit.fr/observations/observation-b8ec93ba-91d2-430c-ac17-beb7716a4715-4/,Lanice conchilega,Lanice,,https://biolit.fr/wp-content/uploads/2023/07/P1110065.JPG,,TRUE, +N1,59651,sortie-b8ec93ba-91d2-430c-ac17-beb7716a4715,https://biolit.fr/sorties/sortie-b8ec93ba-91d2-430c-ac17-beb7716a4715/,Phil,,4/28/2018 0:00,11.0000000,11.0:15,47.895673000000,-3.96678100000,,La Forêt-Fouesnant - Finistère,43946,observation-b8ec93ba-91d2-430c-ac17-beb7716a4715-5,https://biolit.fr/observations/observation-b8ec93ba-91d2-430c-ac17-beb7716a4715-5/,Lanice conchilega,Lanice,,https://biolit.fr/wp-content/uploads/2023/07/P1110076.JPG,,TRUE, +N1,59652,sortie-a5d6923c-5865-4463-b43c-0ef167fe94f1,https://biolit.fr/sorties/sortie-a5d6923c-5865-4463-b43c-0ef167fe94f1/,pamatelo,,5/26/2018 0:00,10.0000000,12.0000000,43.333938000000,5.197725000000,,Ensues la redonne ,43948,observation-a5d6923c-5865-4463-b43c-0ef167fe94f1,https://biolit.fr/observations/observation-a5d6923c-5865-4463-b43c-0ef167fe94f1/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20180526_105102-scaled.jpg,,TRUE, +N1,59652,sortie-a5d6923c-5865-4463-b43c-0ef167fe94f1,https://biolit.fr/sorties/sortie-a5d6923c-5865-4463-b43c-0ef167fe94f1/,pamatelo,,5/26/2018 0:00,10.0000000,12.0000000,43.333938000000,5.197725000000,,Ensues la redonne ,43950,observation-a5d6923c-5865-4463-b43c-0ef167fe94f1-2,https://biolit.fr/observations/observation-a5d6923c-5865-4463-b43c-0ef167fe94f1-2/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20180526_104928-scaled.jpg,,TRUE, +N1,59652,sortie-a5d6923c-5865-4463-b43c-0ef167fe94f1,https://biolit.fr/sorties/sortie-a5d6923c-5865-4463-b43c-0ef167fe94f1/,pamatelo,,5/26/2018 0:00,10.0000000,12.0000000,43.333938000000,5.197725000000,,Ensues la redonne ,43952,observation-a5d6923c-5865-4463-b43c-0ef167fe94f1-3,https://biolit.fr/observations/observation-a5d6923c-5865-4463-b43c-0ef167fe94f1-3/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20180526_105057 (2)-scaled.jpg,,TRUE, +N1,59653,sortie-392cd04b-59ca-4be5-9303-a45b1c2680a0,https://biolit.fr/sorties/sortie-392cd04b-59ca-4be5-9303-a45b1c2680a0/,Phil,,05/01/2018,12.0:15,12.0000000,47.796482000000,-4.183345000000,,Loctudy - Finistère,43954,observation-392cd04b-59ca-4be5-9303-a45b1c2680a0,https://biolit.fr/observations/observation-392cd04b-59ca-4be5-9303-a45b1c2680a0/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_121731.jpg,,FALSE, +N1,59653,sortie-392cd04b-59ca-4be5-9303-a45b1c2680a0,https://biolit.fr/sorties/sortie-392cd04b-59ca-4be5-9303-a45b1c2680a0/,Phil,,05/01/2018,12.0:15,12.0000000,47.796482000000,-4.183345000000,,Loctudy - Finistère,43956,observation-392cd04b-59ca-4be5-9303-a45b1c2680a0-2,https://biolit.fr/observations/observation-392cd04b-59ca-4be5-9303-a45b1c2680a0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_121716.jpg,,FALSE, +N1,59653,sortie-392cd04b-59ca-4be5-9303-a45b1c2680a0,https://biolit.fr/sorties/sortie-392cd04b-59ca-4be5-9303-a45b1c2680a0/,Phil,,05/01/2018,12.0:15,12.0000000,47.796482000000,-4.183345000000,,Loctudy - Finistère,43958,observation-392cd04b-59ca-4be5-9303-a45b1c2680a0-3,https://biolit.fr/observations/observation-392cd04b-59ca-4be5-9303-a45b1c2680a0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_121702.jpg,,FALSE, +N1,59653,sortie-392cd04b-59ca-4be5-9303-a45b1c2680a0,https://biolit.fr/sorties/sortie-392cd04b-59ca-4be5-9303-a45b1c2680a0/,Phil,,05/01/2018,12.0:15,12.0000000,47.796482000000,-4.183345000000,,Loctudy - Finistère,43960,observation-392cd04b-59ca-4be5-9303-a45b1c2680a0-4,https://biolit.fr/observations/observation-392cd04b-59ca-4be5-9303-a45b1c2680a0-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_121656.jpg,,FALSE, +N1,59653,sortie-392cd04b-59ca-4be5-9303-a45b1c2680a0,https://biolit.fr/sorties/sortie-392cd04b-59ca-4be5-9303-a45b1c2680a0/,Phil,,05/01/2018,12.0:15,12.0000000,47.796482000000,-4.183345000000,,Loctudy - Finistère,43962,observation-392cd04b-59ca-4be5-9303-a45b1c2680a0-5,https://biolit.fr/observations/observation-392cd04b-59ca-4be5-9303-a45b1c2680a0-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_121650.jpg,,FALSE, +N1,59653,sortie-392cd04b-59ca-4be5-9303-a45b1c2680a0,https://biolit.fr/sorties/sortie-392cd04b-59ca-4be5-9303-a45b1c2680a0/,Phil,,05/01/2018,12.0:15,12.0000000,47.796482000000,-4.183345000000,,Loctudy - Finistère,43964,observation-392cd04b-59ca-4be5-9303-a45b1c2680a0-6,https://biolit.fr/observations/observation-392cd04b-59ca-4be5-9303-a45b1c2680a0-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_121644.jpg,,FALSE, +N1,59653,sortie-392cd04b-59ca-4be5-9303-a45b1c2680a0,https://biolit.fr/sorties/sortie-392cd04b-59ca-4be5-9303-a45b1c2680a0/,Phil,,05/01/2018,12.0:15,12.0000000,47.796482000000,-4.183345000000,,Loctudy - Finistère,43966,observation-392cd04b-59ca-4be5-9303-a45b1c2680a0-7,https://biolit.fr/observations/observation-392cd04b-59ca-4be5-9303-a45b1c2680a0-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_121615.jpg,,FALSE, +N1,59653,sortie-392cd04b-59ca-4be5-9303-a45b1c2680a0,https://biolit.fr/sorties/sortie-392cd04b-59ca-4be5-9303-a45b1c2680a0/,Phil,,05/01/2018,12.0:15,12.0000000,47.796482000000,-4.183345000000,,Loctudy - Finistère,43968,observation-392cd04b-59ca-4be5-9303-a45b1c2680a0-8,https://biolit.fr/observations/observation-392cd04b-59ca-4be5-9303-a45b1c2680a0-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_121605.jpg,,FALSE, +N1,59654,sortie-e7dc409e-c4ba-480a-a46a-7d2404b42668,https://biolit.fr/sorties/sortie-e7dc409e-c4ba-480a-a46a-7d2404b42668/,Phil,,5/18/2018 0:00,22.0:25,22.0000000,48.210467000000,-4.370378000000,,Telgruc sur Mer - Finistère,43970,observation-e7dc409e-c4ba-480a-a46a-7d2404b42668,https://biolit.fr/observations/observation-e7dc409e-c4ba-480a-a46a-7d2404b42668/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180518_222702.jpg,,FALSE, +N1,59654,sortie-e7dc409e-c4ba-480a-a46a-7d2404b42668,https://biolit.fr/sorties/sortie-e7dc409e-c4ba-480a-a46a-7d2404b42668/,Phil,,5/18/2018 0:00,22.0:25,22.0000000,48.210467000000,-4.370378000000,,Telgruc sur Mer - Finistère,43972,observation-e7dc409e-c4ba-480a-a46a-7d2404b42668-2,https://biolit.fr/observations/observation-e7dc409e-c4ba-480a-a46a-7d2404b42668-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180518_222744.jpg,,FALSE, +N1,59654,sortie-e7dc409e-c4ba-480a-a46a-7d2404b42668,https://biolit.fr/sorties/sortie-e7dc409e-c4ba-480a-a46a-7d2404b42668/,Phil,,5/18/2018 0:00,22.0:25,22.0000000,48.210467000000,-4.370378000000,,Telgruc sur Mer - Finistère,43974,observation-e7dc409e-c4ba-480a-a46a-7d2404b42668-3,https://biolit.fr/observations/observation-e7dc409e-c4ba-480a-a46a-7d2404b42668-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180518_222726.jpg,,FALSE, +N1,59654,sortie-e7dc409e-c4ba-480a-a46a-7d2404b42668,https://biolit.fr/sorties/sortie-e7dc409e-c4ba-480a-a46a-7d2404b42668/,Phil,,5/18/2018 0:00,22.0:25,22.0000000,48.210467000000,-4.370378000000,,Telgruc sur Mer - Finistère,43976,observation-e7dc409e-c4ba-480a-a46a-7d2404b42668-4,https://biolit.fr/observations/observation-e7dc409e-c4ba-480a-a46a-7d2404b42668-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110389.JPG,,FALSE, +N1,59655,sortie-13239412-2595-4fea-a3cc-4b503e90f6b5,https://biolit.fr/sorties/sortie-13239412-2595-4fea-a3cc-4b503e90f6b5/,Phil,,5/17/2018 0:00,11.0000000,11.0:45,47.892060000000,-3.967223000000,,La Forêt-Fouesnant - Finistère,43978,observation-13239412-2595-4fea-a3cc-4b503e90f6b5,https://biolit.fr/observations/observation-13239412-2595-4fea-a3cc-4b503e90f6b5/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1110246.JPG,,TRUE, +N1,59655,sortie-13239412-2595-4fea-a3cc-4b503e90f6b5,https://biolit.fr/sorties/sortie-13239412-2595-4fea-a3cc-4b503e90f6b5/,Phil,,5/17/2018 0:00,11.0000000,11.0:45,47.892060000000,-3.967223000000,,La Forêt-Fouesnant - Finistère,43980,observation-13239412-2595-4fea-a3cc-4b503e90f6b5-2,https://biolit.fr/observations/observation-13239412-2595-4fea-a3cc-4b503e90f6b5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110245.JPG,,FALSE, +N1,59655,sortie-13239412-2595-4fea-a3cc-4b503e90f6b5,https://biolit.fr/sorties/sortie-13239412-2595-4fea-a3cc-4b503e90f6b5/,Phil,,5/17/2018 0:00,11.0000000,11.0:45,47.892060000000,-3.967223000000,,La Forêt-Fouesnant - Finistère,43982,observation-13239412-2595-4fea-a3cc-4b503e90f6b5-3,https://biolit.fr/observations/observation-13239412-2595-4fea-a3cc-4b503e90f6b5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110249.JPG,,FALSE, +N1,59655,sortie-13239412-2595-4fea-a3cc-4b503e90f6b5,https://biolit.fr/sorties/sortie-13239412-2595-4fea-a3cc-4b503e90f6b5/,Phil,,5/17/2018 0:00,11.0000000,11.0:45,47.892060000000,-3.967223000000,,La Forêt-Fouesnant - Finistère,43984,observation-13239412-2595-4fea-a3cc-4b503e90f6b5-4,https://biolit.fr/observations/observation-13239412-2595-4fea-a3cc-4b503e90f6b5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110252.JPG,,FALSE, +N1,59656,sortie-cd49f0c2-d14f-45ef-bb28-b192b1f0a610,https://biolit.fr/sorties/sortie-cd49f0c2-d14f-45ef-bb28-b192b1f0a610/,Phil,,05/01/2018,11.0000000,12.0000000,47.796698000000,-4.178881000000,,Loctudy - Finistère,43986,observation-cd49f0c2-d14f-45ef-bb28-b192b1f0a610,https://biolit.fr/observations/observation-cd49f0c2-d14f-45ef-bb28-b192b1f0a610/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_115322.jpg,,FALSE, +N1,59656,sortie-cd49f0c2-d14f-45ef-bb28-b192b1f0a610,https://biolit.fr/sorties/sortie-cd49f0c2-d14f-45ef-bb28-b192b1f0a610/,Phil,,05/01/2018,11.0000000,12.0000000,47.796698000000,-4.178881000000,,Loctudy - Finistère,43988,observation-cd49f0c2-d14f-45ef-bb28-b192b1f0a610-2,https://biolit.fr/observations/observation-cd49f0c2-d14f-45ef-bb28-b192b1f0a610-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_115325.jpg,,FALSE, +N1,59656,sortie-cd49f0c2-d14f-45ef-bb28-b192b1f0a610,https://biolit.fr/sorties/sortie-cd49f0c2-d14f-45ef-bb28-b192b1f0a610/,Phil,,05/01/2018,11.0000000,12.0000000,47.796698000000,-4.178881000000,,Loctudy - Finistère,43990,observation-cd49f0c2-d14f-45ef-bb28-b192b1f0a610-3,https://biolit.fr/observations/observation-cd49f0c2-d14f-45ef-bb28-b192b1f0a610-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_115911.jpg,,FALSE, +N1,59656,sortie-cd49f0c2-d14f-45ef-bb28-b192b1f0a610,https://biolit.fr/sorties/sortie-cd49f0c2-d14f-45ef-bb28-b192b1f0a610/,Phil,,05/01/2018,11.0000000,12.0000000,47.796698000000,-4.178881000000,,Loctudy - Finistère,43992,observation-cd49f0c2-d14f-45ef-bb28-b192b1f0a610-4,https://biolit.fr/observations/observation-cd49f0c2-d14f-45ef-bb28-b192b1f0a610-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_115918.jpg,,FALSE, +N1,59656,sortie-cd49f0c2-d14f-45ef-bb28-b192b1f0a610,https://biolit.fr/sorties/sortie-cd49f0c2-d14f-45ef-bb28-b192b1f0a610/,Phil,,05/01/2018,11.0000000,12.0000000,47.796698000000,-4.178881000000,,Loctudy - Finistère,43994,observation-cd49f0c2-d14f-45ef-bb28-b192b1f0a610-5,https://biolit.fr/observations/observation-cd49f0c2-d14f-45ef-bb28-b192b1f0a610-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_115932.jpg,,FALSE, +N1,59656,sortie-cd49f0c2-d14f-45ef-bb28-b192b1f0a610,https://biolit.fr/sorties/sortie-cd49f0c2-d14f-45ef-bb28-b192b1f0a610/,Phil,,05/01/2018,11.0000000,12.0000000,47.796698000000,-4.178881000000,,Loctudy - Finistère,43996,observation-cd49f0c2-d14f-45ef-bb28-b192b1f0a610-6,https://biolit.fr/observations/observation-cd49f0c2-d14f-45ef-bb28-b192b1f0a610-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_115531.jpg,,FALSE, +N1,59657,sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f,https://biolit.fr/sorties/sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f/,CarpeDiem,,5/21/2018 0:00,11.0000000,13.0000000,43.177116000000,6.603812000000,,petite plage de Jovat (la Croix Valmer),43998,observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f,https://biolit.fr/observations/observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f/,Elysia timida,Elysie timide,,https://biolit.fr/wp-content/uploads/2023/07/Elysie Pointillée-scaled.jpg,,TRUE, +N1,59657,sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f,https://biolit.fr/sorties/sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f/,CarpeDiem,,5/21/2018 0:00,11.0000000,13.0000000,43.177116000000,6.603812000000,,petite plage de Jovat (la Croix Valmer),44000,observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-2,https://biolit.fr/observations/observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anémone verte-scaled.jpg,,TRUE, +N1,59657,sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f,https://biolit.fr/sorties/sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f/,CarpeDiem,,5/21/2018 0:00,11.0000000,13.0000000,43.177116000000,6.603812000000,,petite plage de Jovat (la Croix Valmer),44002,observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-3,https://biolit.fr/observations/observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-3/,Stramonita haemastoma,Bouche de sang,,https://biolit.fr/wp-content/uploads/2023/07/Bouche de sang_0-scaled.jpg,,TRUE, +N1,59657,sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f,https://biolit.fr/sorties/sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f/,CarpeDiem,,5/21/2018 0:00,11.0000000,13.0000000,43.177116000000,6.603812000000,,petite plage de Jovat (la Croix Valmer),44004,observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-4,https://biolit.fr/observations/observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule toupie_0-scaled.jpg,,FALSE, +N1,59657,sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f,https://biolit.fr/sorties/sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f/,CarpeDiem,,5/21/2018 0:00,11.0000000,13.0000000,43.177116000000,6.603812000000,,petite plage de Jovat (la Croix Valmer),44006,observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-5,https://biolit.fr/observations/observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-5/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/Opercule d'Astrée rugueuse-scaled.jpg,,TRUE, +N1,59657,sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f,https://biolit.fr/sorties/sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f/,CarpeDiem,,5/21/2018 0:00,11.0000000,13.0000000,43.177116000000,6.603812000000,,petite plage de Jovat (la Croix Valmer),44008,observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-6,https://biolit.fr/observations/observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pagure-scaled.jpg,,FALSE, +N1,59657,sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f,https://biolit.fr/sorties/sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f/,CarpeDiem,,5/21/2018 0:00,11.0000000,13.0000000,43.177116000000,6.603812000000,,petite plage de Jovat (la Croix Valmer),44010,observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-7,https://biolit.fr/observations/observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Posidonie_2-scaled.jpg,,FALSE, +N1,59657,sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f,https://biolit.fr/sorties/sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f/,CarpeDiem,,5/21/2018 0:00,11.0000000,13.0000000,43.177116000000,6.603812000000,,petite plage de Jovat (la Croix Valmer),44012,observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-8,https://biolit.fr/observations/observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-8/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/Tomate de mer_0-scaled.jpg,,TRUE, +N1,59657,sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f,https://biolit.fr/sorties/sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f/,CarpeDiem,,5/21/2018 0:00,11.0000000,13.0000000,43.177116000000,6.603812000000,,petite plage de Jovat (la Croix Valmer),44014,observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-9,https://biolit.fr/observations/observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-9/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Velelle-scaled.jpg,,TRUE, +N1,59657,sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f,https://biolit.fr/sorties/sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f/,CarpeDiem,,5/21/2018 0:00,11.0000000,13.0000000,43.177116000000,6.603812000000,,petite plage de Jovat (la Croix Valmer),44015,observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-10,https://biolit.fr/observations/observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Criste marine_2-scaled.jpg,,FALSE, +N1,59657,sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f,https://biolit.fr/sorties/sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f/,CarpeDiem,,5/21/2018 0:00,11.0000000,13.0000000,43.177116000000,6.603812000000,,petite plage de Jovat (la Croix Valmer),44017,observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-11,https://biolit.fr/observations/observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/non déterminée-scaled.jpg,,FALSE, +N1,59657,sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f,https://biolit.fr/sorties/sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f/,CarpeDiem,,5/21/2018 0:00,11.0000000,13.0000000,43.177116000000,6.603812000000,,petite plage de Jovat (la Croix Valmer),44019,observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-12,https://biolit.fr/observations/observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/oeillets-scaled.jpg,,FALSE, +N1,59658,sortie-a92b2bf7-4643-4e36-80cf-0e27a0e1a70f,https://biolit.fr/sorties/sortie-a92b2bf7-4643-4e36-80cf-0e27a0e1a70f/,Phil,,05/05/2018,17.0:15,17.0000000,48.575950000000,-4.625810000000,,Saint-Pabu - Finistère,44021,observation-a92b2bf7-4643-4e36-80cf-0e27a0e1a70f,https://biolit.fr/observations/observation-a92b2bf7-4643-4e36-80cf-0e27a0e1a70f/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110223.JPG,,FALSE, +N1,59658,sortie-a92b2bf7-4643-4e36-80cf-0e27a0e1a70f,https://biolit.fr/sorties/sortie-a92b2bf7-4643-4e36-80cf-0e27a0e1a70f/,Phil,,05/05/2018,17.0:15,17.0000000,48.575950000000,-4.625810000000,,Saint-Pabu - Finistère,44023,observation-a92b2bf7-4643-4e36-80cf-0e27a0e1a70f-2,https://biolit.fr/observations/observation-a92b2bf7-4643-4e36-80cf-0e27a0e1a70f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110219.JPG,,FALSE, +N1,59658,sortie-a92b2bf7-4643-4e36-80cf-0e27a0e1a70f,https://biolit.fr/sorties/sortie-a92b2bf7-4643-4e36-80cf-0e27a0e1a70f/,Phil,,05/05/2018,17.0:15,17.0000000,48.575950000000,-4.625810000000,,Saint-Pabu - Finistère,44025,observation-a92b2bf7-4643-4e36-80cf-0e27a0e1a70f-3,https://biolit.fr/observations/observation-a92b2bf7-4643-4e36-80cf-0e27a0e1a70f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110218.JPG,,FALSE, +N1,59658,sortie-a92b2bf7-4643-4e36-80cf-0e27a0e1a70f,https://biolit.fr/sorties/sortie-a92b2bf7-4643-4e36-80cf-0e27a0e1a70f/,Phil,,05/05/2018,17.0:15,17.0000000,48.575950000000,-4.625810000000,,Saint-Pabu - Finistère,44027,observation-a92b2bf7-4643-4e36-80cf-0e27a0e1a70f-4,https://biolit.fr/observations/observation-a92b2bf7-4643-4e36-80cf-0e27a0e1a70f-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110214.JPG,,FALSE, +N1,59659,sortie-11ab5daf-2f45-4f3c-9b16-30f79f11bbce,https://biolit.fr/sorties/sortie-11ab5daf-2f45-4f3c-9b16-30f79f11bbce/,Fleur,,5/17/2018 0:00,12.0000000,12.0:15,43.086442000000,6.075916000000,,"Plage Peno, Carqueiranne",44029,observation-11ab5daf-2f45-4f3c-9b16-30f79f11bbce,https://biolit.fr/observations/observation-11ab5daf-2f45-4f3c-9b16-30f79f11bbce/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180515_124431-scaled.jpg,,FALSE, +N1,59659,sortie-11ab5daf-2f45-4f3c-9b16-30f79f11bbce,https://biolit.fr/sorties/sortie-11ab5daf-2f45-4f3c-9b16-30f79f11bbce/,Fleur,,5/17/2018 0:00,12.0000000,12.0:15,43.086442000000,6.075916000000,,"Plage Peno, Carqueiranne",44031,observation-11ab5daf-2f45-4f3c-9b16-30f79f11bbce-2,https://biolit.fr/observations/observation-11ab5daf-2f45-4f3c-9b16-30f79f11bbce-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180515_124440-scaled.jpg,,FALSE, +N1,59659,sortie-11ab5daf-2f45-4f3c-9b16-30f79f11bbce,https://biolit.fr/sorties/sortie-11ab5daf-2f45-4f3c-9b16-30f79f11bbce/,Fleur,,5/17/2018 0:00,12.0000000,12.0:15,43.086442000000,6.075916000000,,"Plage Peno, Carqueiranne",44033,observation-11ab5daf-2f45-4f3c-9b16-30f79f11bbce-3,https://biolit.fr/observations/observation-11ab5daf-2f45-4f3c-9b16-30f79f11bbce-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180515_124523-scaled.jpg,,FALSE, +N1,59660,sortie-07220393-d2f4-4f51-9fd7-9bd844376c97,https://biolit.fr/sorties/sortie-07220393-d2f4-4f51-9fd7-9bd844376c97/,Phil,,5/17/2018 0:00,11.0:35,11.0000000,47.895163000000,-3.967811000000,,La Forêt-Fouesnant - Finistère,44035,observation-07220393-d2f4-4f51-9fd7-9bd844376c97,https://biolit.fr/observations/observation-07220393-d2f4-4f51-9fd7-9bd844376c97/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110243.JPG,,FALSE, +N1,59660,sortie-07220393-d2f4-4f51-9fd7-9bd844376c97,https://biolit.fr/sorties/sortie-07220393-d2f4-4f51-9fd7-9bd844376c97/,Phil,,5/17/2018 0:00,11.0:35,11.0000000,47.895163000000,-3.967811000000,,La Forêt-Fouesnant - Finistère,44037,observation-07220393-d2f4-4f51-9fd7-9bd844376c97-2,https://biolit.fr/observations/observation-07220393-d2f4-4f51-9fd7-9bd844376c97-2/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1110255.JPG,,TRUE, +N1,59660,sortie-07220393-d2f4-4f51-9fd7-9bd844376c97,https://biolit.fr/sorties/sortie-07220393-d2f4-4f51-9fd7-9bd844376c97/,Phil,,5/17/2018 0:00,11.0:35,11.0000000,47.895163000000,-3.967811000000,,La Forêt-Fouesnant - Finistère,44039,observation-07220393-d2f4-4f51-9fd7-9bd844376c97-3,https://biolit.fr/observations/observation-07220393-d2f4-4f51-9fd7-9bd844376c97-3/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1110242.JPG,,TRUE, +N1,59661,sortie-93b45242-d4ff-4c60-8125-3a80a4e22f7b,https://biolit.fr/sorties/sortie-93b45242-d4ff-4c60-8125-3a80a4e22f7b/,Phil,,5/18/2018 0:00,20.0000000,20.0:45,48.210686000000,-4.370056000000,,Telgruc sur Mer - Finistère,44041,observation-93b45242-d4ff-4c60-8125-3a80a4e22f7b,https://biolit.fr/observations/observation-93b45242-d4ff-4c60-8125-3a80a4e22f7b/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110364.JPG,,FALSE, +N1,59661,sortie-93b45242-d4ff-4c60-8125-3a80a4e22f7b,https://biolit.fr/sorties/sortie-93b45242-d4ff-4c60-8125-3a80a4e22f7b/,Phil,,5/18/2018 0:00,20.0000000,20.0:45,48.210686000000,-4.370056000000,,Telgruc sur Mer - Finistère,44043,observation-93b45242-d4ff-4c60-8125-3a80a4e22f7b-2,https://biolit.fr/observations/observation-93b45242-d4ff-4c60-8125-3a80a4e22f7b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110365.JPG,,FALSE, +N1,59662,sortie-cd1cd659-d515-4e20-aa42-bd23b60d1fbd,https://biolit.fr/sorties/sortie-cd1cd659-d515-4e20-aa42-bd23b60d1fbd/,Phil,,5/16/2018 0:00,19.000005,19.000005,47.896692000000,-3.974510000000,,La Forêt-Fouesnant - Finistère,44045,observation-cd1cd659-d515-4e20-aa42-bd23b60d1fbd,https://biolit.fr/observations/observation-cd1cd659-d515-4e20-aa42-bd23b60d1fbd/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180516_190607.jpg,,FALSE, +N1,59662,sortie-cd1cd659-d515-4e20-aa42-bd23b60d1fbd,https://biolit.fr/sorties/sortie-cd1cd659-d515-4e20-aa42-bd23b60d1fbd/,Phil,,5/16/2018 0:00,19.000005,19.000005,47.896692000000,-3.974510000000,,La Forêt-Fouesnant - Finistère,44047,observation-cd1cd659-d515-4e20-aa42-bd23b60d1fbd-2,https://biolit.fr/observations/observation-cd1cd659-d515-4e20-aa42-bd23b60d1fbd-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180516_190615.jpg,,FALSE, +N1,59663,sortie-6b299817-4930-4af4-bb1f-606498993dbf,https://biolit.fr/sorties/sortie-6b299817-4930-4af4-bb1f-606498993dbf/,Phil,,05/01/2018,11.0:45,11.0000000,47.796698000000,-4.181542000000,,Loctudy - Finistère,44049,observation-6b299817-4930-4af4-bb1f-606498993dbf,https://biolit.fr/observations/observation-6b299817-4930-4af4-bb1f-606498993dbf/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20180501_114321.jpg,,TRUE, +N1,59663,sortie-6b299817-4930-4af4-bb1f-606498993dbf,https://biolit.fr/sorties/sortie-6b299817-4930-4af4-bb1f-606498993dbf/,Phil,,05/01/2018,11.0:45,11.0000000,47.796698000000,-4.181542000000,,Loctudy - Finistère,44051,observation-6b299817-4930-4af4-bb1f-606498993dbf-2,https://biolit.fr/observations/observation-6b299817-4930-4af4-bb1f-606498993dbf-2/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20180501_114311.jpg,,TRUE, +N1,59663,sortie-6b299817-4930-4af4-bb1f-606498993dbf,https://biolit.fr/sorties/sortie-6b299817-4930-4af4-bb1f-606498993dbf/,Phil,,05/01/2018,11.0:45,11.0000000,47.796698000000,-4.181542000000,,Loctudy - Finistère,44053,observation-6b299817-4930-4af4-bb1f-606498993dbf-3,https://biolit.fr/observations/observation-6b299817-4930-4af4-bb1f-606498993dbf-3/,Patella pellucida,Helcion,,https://biolit.fr/wp-content/uploads/2023/07/20180501_114929.jpg,,TRUE, +N1,59663,sortie-6b299817-4930-4af4-bb1f-606498993dbf,https://biolit.fr/sorties/sortie-6b299817-4930-4af4-bb1f-606498993dbf/,Phil,,05/01/2018,11.0:45,11.0000000,47.796698000000,-4.181542000000,,Loctudy - Finistère,44055,observation-6b299817-4930-4af4-bb1f-606498993dbf-4,https://biolit.fr/observations/observation-6b299817-4930-4af4-bb1f-606498993dbf-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_114917.jpg,,FALSE, +N1,59663,sortie-6b299817-4930-4af4-bb1f-606498993dbf,https://biolit.fr/sorties/sortie-6b299817-4930-4af4-bb1f-606498993dbf/,Phil,,05/01/2018,11.0:45,11.0000000,47.796698000000,-4.181542000000,,Loctudy - Finistère,44057,observation-6b299817-4930-4af4-bb1f-606498993dbf-5,https://biolit.fr/observations/observation-6b299817-4930-4af4-bb1f-606498993dbf-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_114944.jpg,,FALSE, +N1,59663,sortie-6b299817-4930-4af4-bb1f-606498993dbf,https://biolit.fr/sorties/sortie-6b299817-4930-4af4-bb1f-606498993dbf/,Phil,,05/01/2018,11.0:45,11.0000000,47.796698000000,-4.181542000000,,Loctudy - Finistère,44059,observation-6b299817-4930-4af4-bb1f-606498993dbf-6,https://biolit.fr/observations/observation-6b299817-4930-4af4-bb1f-606498993dbf-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_114956.jpg,,FALSE, +N1,59664,sortie-a484f540-85c5-4970-aebe-cea4d523aa66,https://biolit.fr/sorties/sortie-a484f540-85c5-4970-aebe-cea4d523aa66/,CarpeDiem,,5/20/2018 0:00,16.0000000,17.0000000,43.187858000000,6.645460000000,,Anse de l'Escalet,44061,observation-a484f540-85c5-4970-aebe-cea4d523aa66,https://biolit.fr/observations/observation-a484f540-85c5-4970-aebe-cea4d523aa66/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Aménome-scaled.jpg,,TRUE, +N1,59664,sortie-a484f540-85c5-4970-aebe-cea4d523aa66,https://biolit.fr/sorties/sortie-a484f540-85c5-4970-aebe-cea4d523aa66/,CarpeDiem,,5/20/2018 0:00,16.0000000,17.0000000,43.187858000000,6.645460000000,,Anse de l'Escalet,44063,observation-a484f540-85c5-4970-aebe-cea4d523aa66-2,https://biolit.fr/observations/observation-a484f540-85c5-4970-aebe-cea4d523aa66-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Balaie de mer-scaled.jpg,,FALSE, +N1,59664,sortie-a484f540-85c5-4970-aebe-cea4d523aa66,https://biolit.fr/sorties/sortie-a484f540-85c5-4970-aebe-cea4d523aa66/,CarpeDiem,,5/20/2018 0:00,16.0000000,17.0000000,43.187858000000,6.645460000000,,Anse de l'Escalet,44065,observation-a484f540-85c5-4970-aebe-cea4d523aa66-3,https://biolit.fr/observations/observation-a484f540-85c5-4970-aebe-cea4d523aa66-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Caulerpa racemosa_0-scaled.jpg,,FALSE, +N1,59664,sortie-a484f540-85c5-4970-aebe-cea4d523aa66,https://biolit.fr/sorties/sortie-a484f540-85c5-4970-aebe-cea4d523aa66/,CarpeDiem,,5/20/2018 0:00,16.0000000,17.0000000,43.187858000000,6.645460000000,,Anse de l'Escalet,44067,observation-a484f540-85c5-4970-aebe-cea4d523aa66-4,https://biolit.fr/observations/observation-a484f540-85c5-4970-aebe-cea4d523aa66-4/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/Cérite goumier-scaled.jpg,,TRUE, +N1,59664,sortie-a484f540-85c5-4970-aebe-cea4d523aa66,https://biolit.fr/sorties/sortie-a484f540-85c5-4970-aebe-cea4d523aa66/,CarpeDiem,,5/20/2018 0:00,16.0000000,17.0000000,43.187858000000,6.645460000000,,Anse de l'Escalet,44069,observation-a484f540-85c5-4970-aebe-cea4d523aa66-5,https://biolit.fr/observations/observation-a484f540-85c5-4970-aebe-cea4d523aa66-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/cerithe de mer rouge-scaled.jpg,,FALSE, +N1,59664,sortie-a484f540-85c5-4970-aebe-cea4d523aa66,https://biolit.fr/sorties/sortie-a484f540-85c5-4970-aebe-cea4d523aa66/,CarpeDiem,,5/20/2018 0:00,16.0000000,17.0000000,43.187858000000,6.645460000000,,Anse de l'Escalet,44071,observation-a484f540-85c5-4970-aebe-cea4d523aa66-6,https://biolit.fr/observations/observation-a484f540-85c5-4970-aebe-cea4d523aa66-6/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/padine_0-scaled.jpg,,TRUE, +N1,59664,sortie-a484f540-85c5-4970-aebe-cea4d523aa66,https://biolit.fr/sorties/sortie-a484f540-85c5-4970-aebe-cea4d523aa66/,CarpeDiem,,5/20/2018 0:00,16.0000000,17.0000000,43.187858000000,6.645460000000,,Anse de l'Escalet,44072,observation-a484f540-85c5-4970-aebe-cea4d523aa66-7,https://biolit.fr/observations/observation-a484f540-85c5-4970-aebe-cea4d523aa66-7/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Posidonie_1-scaled.jpg,,TRUE, +N1,59664,sortie-a484f540-85c5-4970-aebe-cea4d523aa66,https://biolit.fr/sorties/sortie-a484f540-85c5-4970-aebe-cea4d523aa66/,CarpeDiem,,5/20/2018 0:00,16.0000000,17.0000000,43.187858000000,6.645460000000,,Anse de l'Escalet,44074,observation-a484f540-85c5-4970-aebe-cea4d523aa66-8,https://biolit.fr/observations/observation-a484f540-85c5-4970-aebe-cea4d523aa66-8/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/Tomate de Mer-scaled.jpg,,TRUE, +N1,59664,sortie-a484f540-85c5-4970-aebe-cea4d523aa66,https://biolit.fr/sorties/sortie-a484f540-85c5-4970-aebe-cea4d523aa66/,CarpeDiem,,5/20/2018 0:00,16.0000000,17.0000000,43.187858000000,6.645460000000,,Anse de l'Escalet,44076,observation-a484f540-85c5-4970-aebe-cea4d523aa66-9,https://biolit.fr/observations/observation-a484f540-85c5-4970-aebe-cea4d523aa66-9/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/velella velella.PNG,,TRUE, +N1,59664,sortie-a484f540-85c5-4970-aebe-cea4d523aa66,https://biolit.fr/sorties/sortie-a484f540-85c5-4970-aebe-cea4d523aa66/,CarpeDiem,,5/20/2018 0:00,16.0000000,17.0000000,43.187858000000,6.645460000000,,Anse de l'Escalet,44077,observation-a484f540-85c5-4970-aebe-cea4d523aa66-10,https://biolit.fr/observations/observation-a484f540-85c5-4970-aebe-cea4d523aa66-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Criste marine_1-scaled.jpg,,FALSE, +N1,59664,sortie-a484f540-85c5-4970-aebe-cea4d523aa66,https://biolit.fr/sorties/sortie-a484f540-85c5-4970-aebe-cea4d523aa66/,CarpeDiem,,5/20/2018 0:00,16.0000000,17.0000000,43.187858000000,6.645460000000,,Anse de l'Escalet,44079,observation-a484f540-85c5-4970-aebe-cea4d523aa66-11,https://biolit.fr/observations/observation-a484f540-85c5-4970-aebe-cea4d523aa66-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Chardons Laiteux-scaled.jpg,,FALSE, +N1,59665,sortie-3cc427cd-a724-4dd0-b144-4d835c926bc9,https://biolit.fr/sorties/sortie-3cc427cd-a724-4dd0-b144-4d835c926bc9/,Phil,,5/17/2018 0:00,12.0000000,12.000005,47.892314000000,-3.966923000000,,La Forêt-Fouesnant - Finistère,44081,observation-3cc427cd-a724-4dd0-b144-4d835c926bc9,https://biolit.fr/observations/observation-3cc427cd-a724-4dd0-b144-4d835c926bc9/,Lutraria lutraria,Lutraire elliptique,,https://biolit.fr/wp-content/uploads/2023/07/P1110307.JPG,,TRUE, +N1,59665,sortie-3cc427cd-a724-4dd0-b144-4d835c926bc9,https://biolit.fr/sorties/sortie-3cc427cd-a724-4dd0-b144-4d835c926bc9/,Phil,,5/17/2018 0:00,12.0000000,12.000005,47.892314000000,-3.966923000000,,La Forêt-Fouesnant - Finistère,44083,observation-3cc427cd-a724-4dd0-b144-4d835c926bc9-2,https://biolit.fr/observations/observation-3cc427cd-a724-4dd0-b144-4d835c926bc9-2/,Lutraria lutraria,Lutraire elliptique,,https://biolit.fr/wp-content/uploads/2023/07/P1110304.JPG,,TRUE, +N1,59665,sortie-3cc427cd-a724-4dd0-b144-4d835c926bc9,https://biolit.fr/sorties/sortie-3cc427cd-a724-4dd0-b144-4d835c926bc9/,Phil,,5/17/2018 0:00,12.0000000,12.000005,47.892314000000,-3.966923000000,,La Forêt-Fouesnant - Finistère,44085,observation-3cc427cd-a724-4dd0-b144-4d835c926bc9-3,https://biolit.fr/observations/observation-3cc427cd-a724-4dd0-b144-4d835c926bc9-3/,Lutraria lutraria,Lutraire elliptique,,https://biolit.fr/wp-content/uploads/2023/07/P1110308.JPG,,TRUE, +N1,59665,sortie-3cc427cd-a724-4dd0-b144-4d835c926bc9,https://biolit.fr/sorties/sortie-3cc427cd-a724-4dd0-b144-4d835c926bc9/,Phil,,5/17/2018 0:00,12.0000000,12.000005,47.892314000000,-3.966923000000,,La Forêt-Fouesnant - Finistère,44087,observation-3cc427cd-a724-4dd0-b144-4d835c926bc9-4,https://biolit.fr/observations/observation-3cc427cd-a724-4dd0-b144-4d835c926bc9-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110312.JPG,,FALSE, +N1,59666,sortie-4d55f222-41ed-4f7b-9300-6f782d43524e,https://biolit.fr/sorties/sortie-4d55f222-41ed-4f7b-9300-6f782d43524e/,Phil,,05/01/2018,11.0:35,11.0000000,47.797730000000,-4.181800000000,,Locyudy - Finistère,44089,observation-4d55f222-41ed-4f7b-9300-6f782d43524e,https://biolit.fr/observations/observation-4d55f222-41ed-4f7b-9300-6f782d43524e/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_114202.jpg,,FALSE, +N1,59666,sortie-4d55f222-41ed-4f7b-9300-6f782d43524e,https://biolit.fr/sorties/sortie-4d55f222-41ed-4f7b-9300-6f782d43524e/,Phil,,05/01/2018,11.0:35,11.0000000,47.797730000000,-4.181800000000,,Locyudy - Finistère,44091,observation-4d55f222-41ed-4f7b-9300-6f782d43524e-2,https://biolit.fr/observations/observation-4d55f222-41ed-4f7b-9300-6f782d43524e-2/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/20180501_114206.jpg,,TRUE, +N1,59666,sortie-4d55f222-41ed-4f7b-9300-6f782d43524e,https://biolit.fr/sorties/sortie-4d55f222-41ed-4f7b-9300-6f782d43524e/,Phil,,05/01/2018,11.0:35,11.0000000,47.797730000000,-4.181800000000,,Locyudy - Finistère,44093,observation-4d55f222-41ed-4f7b-9300-6f782d43524e-3,https://biolit.fr/observations/observation-4d55f222-41ed-4f7b-9300-6f782d43524e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_114212.jpg,,FALSE, +N1,59666,sortie-4d55f222-41ed-4f7b-9300-6f782d43524e,https://biolit.fr/sorties/sortie-4d55f222-41ed-4f7b-9300-6f782d43524e/,Phil,,05/01/2018,11.0:35,11.0000000,47.797730000000,-4.181800000000,,Locyudy - Finistère,44095,observation-4d55f222-41ed-4f7b-9300-6f782d43524e-4,https://biolit.fr/observations/observation-4d55f222-41ed-4f7b-9300-6f782d43524e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_114159.jpg,,FALSE, +N1,59667,sortie-15717599-9d34-4b47-8902-41582319a699,https://biolit.fr/sorties/sortie-15717599-9d34-4b47-8902-41582319a699/,RBBBM,,5/17/2018 0:00,12.0000000,14.0000000,47.812233000000,-3.709233000000,,Moëlan anse du Gorgen,44097,observation-15717599-9d34-4b47-8902-41582319a699,https://biolit.fr/observations/observation-15717599-9d34-4b47-8902-41582319a699/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2141-scaled.jpg,,FALSE, +N1,59667,sortie-15717599-9d34-4b47-8902-41582319a699,https://biolit.fr/sorties/sortie-15717599-9d34-4b47-8902-41582319a699/,RBBBM,,5/17/2018 0:00,12.0000000,14.0000000,47.812233000000,-3.709233000000,,Moëlan anse du Gorgen,44099,observation-15717599-9d34-4b47-8902-41582319a699-2,https://biolit.fr/observations/observation-15717599-9d34-4b47-8902-41582319a699-2/,Clavelina lepadiformis,Grande claveline,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2153-scaled.jpg,,TRUE, +N1,59667,sortie-15717599-9d34-4b47-8902-41582319a699,https://biolit.fr/sorties/sortie-15717599-9d34-4b47-8902-41582319a699/,RBBBM,,5/17/2018 0:00,12.0000000,14.0000000,47.812233000000,-3.709233000000,,Moëlan anse du Gorgen,44101,observation-15717599-9d34-4b47-8902-41582319a699-3,https://biolit.fr/observations/observation-15717599-9d34-4b47-8902-41582319a699-3/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2170-scaled.jpg,,TRUE, +N1,59667,sortie-15717599-9d34-4b47-8902-41582319a699,https://biolit.fr/sorties/sortie-15717599-9d34-4b47-8902-41582319a699/,RBBBM,,5/17/2018 0:00,12.0000000,14.0000000,47.812233000000,-3.709233000000,,Moëlan anse du Gorgen,44103,observation-15717599-9d34-4b47-8902-41582319a699-4,https://biolit.fr/observations/observation-15717599-9d34-4b47-8902-41582319a699-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2172-scaled.jpg,,FALSE, +N1,59667,sortie-15717599-9d34-4b47-8902-41582319a699,https://biolit.fr/sorties/sortie-15717599-9d34-4b47-8902-41582319a699/,RBBBM,,5/17/2018 0:00,12.0000000,14.0000000,47.812233000000,-3.709233000000,,Moëlan anse du Gorgen,44105,observation-15717599-9d34-4b47-8902-41582319a699-5,https://biolit.fr/observations/observation-15717599-9d34-4b47-8902-41582319a699-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2134-scaled.jpg,,FALSE, +N1,59668,sortie-5813ebf6-67c5-40ea-9c6b-98ab4e6057b2,https://biolit.fr/sorties/sortie-5813ebf6-67c5-40ea-9c6b-98ab4e6057b2/,Noëlla M,,5/16/2018 0:00,14.0000000,15.0000000,43.235778000000,5.359927000000,,Plage de la bonne brise ,44107,observation-5813ebf6-67c5-40ea-9c6b-98ab4e6057b2,https://biolit.fr/observations/observation-5813ebf6-67c5-40ea-9c6b-98ab4e6057b2/,,,,https://biolit.fr/wp-content/uploads/2023/07/32750553_10215846599538933_3547220546397667328_n-scaled.jpg,,FALSE, +N1,59668,sortie-5813ebf6-67c5-40ea-9c6b-98ab4e6057b2,https://biolit.fr/sorties/sortie-5813ebf6-67c5-40ea-9c6b-98ab4e6057b2/,Noëlla M,,5/16/2018 0:00,14.0000000,15.0000000,43.235778000000,5.359927000000,,Plage de la bonne brise ,44109,observation-5813ebf6-67c5-40ea-9c6b-98ab4e6057b2-2,https://biolit.fr/observations/observation-5813ebf6-67c5-40ea-9c6b-98ab4e6057b2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/32831323_10215846599218925_5506543253412904960_n-scaled.jpg,,FALSE, +N1,59669,sortie-84ec1957-c930-4611-b7a4-3bba03eb17a9,https://biolit.fr/sorties/sortie-84ec1957-c930-4611-b7a4-3bba03eb17a9/,Phil,,05/07/2018,10.0000000,10.000005,48.783660000000,-3.043988000000,,Paimpol - Côtes-d'Armor,44111,observation-84ec1957-c930-4611-b7a4-3bba03eb17a9,https://biolit.fr/observations/observation-84ec1957-c930-4611-b7a4-3bba03eb17a9/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/20180507_100630.jpg,,TRUE, +N1,59669,sortie-84ec1957-c930-4611-b7a4-3bba03eb17a9,https://biolit.fr/sorties/sortie-84ec1957-c930-4611-b7a4-3bba03eb17a9/,Phil,,05/07/2018,10.0000000,10.000005,48.783660000000,-3.043988000000,,Paimpol - Côtes-d'Armor,44113,observation-84ec1957-c930-4611-b7a4-3bba03eb17a9-2,https://biolit.fr/observations/observation-84ec1957-c930-4611-b7a4-3bba03eb17a9-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20180507_100640.jpg,,TRUE, +N1,59669,sortie-84ec1957-c930-4611-b7a4-3bba03eb17a9,https://biolit.fr/sorties/sortie-84ec1957-c930-4611-b7a4-3bba03eb17a9/,Phil,,05/07/2018,10.0000000,10.000005,48.783660000000,-3.043988000000,,Paimpol - Côtes-d'Armor,44115,observation-84ec1957-c930-4611-b7a4-3bba03eb17a9-3,https://biolit.fr/observations/observation-84ec1957-c930-4611-b7a4-3bba03eb17a9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180507_100650.jpg,,FALSE, +N1,59670,sortie-61b4c948-c7ee-41e6-bada-f347a58d9bc1,https://biolit.fr/sorties/sortie-61b4c948-c7ee-41e6-bada-f347a58d9bc1/,Phil,,5/16/2018 0:00,19.0000000,19.000005,47.896821000000,-3.974763000000,,La Forêt-Fouesnant - Finistère,44117,observation-61b4c948-c7ee-41e6-bada-f347a58d9bc1,https://biolit.fr/observations/observation-61b4c948-c7ee-41e6-bada-f347a58d9bc1/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20180516_190404.jpg,,TRUE, +N1,59670,sortie-61b4c948-c7ee-41e6-bada-f347a58d9bc1,https://biolit.fr/sorties/sortie-61b4c948-c7ee-41e6-bada-f347a58d9bc1/,Phil,,5/16/2018 0:00,19.0000000,19.000005,47.896821000000,-3.974763000000,,La Forêt-Fouesnant - Finistère,44119,observation-61b4c948-c7ee-41e6-bada-f347a58d9bc1-2,https://biolit.fr/observations/observation-61b4c948-c7ee-41e6-bada-f347a58d9bc1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180516_190434.jpg,,FALSE, +N1,59670,sortie-61b4c948-c7ee-41e6-bada-f347a58d9bc1,https://biolit.fr/sorties/sortie-61b4c948-c7ee-41e6-bada-f347a58d9bc1/,Phil,,5/16/2018 0:00,19.0000000,19.000005,47.896821000000,-3.974763000000,,La Forêt-Fouesnant - Finistère,44121,observation-61b4c948-c7ee-41e6-bada-f347a58d9bc1-3,https://biolit.fr/observations/observation-61b4c948-c7ee-41e6-bada-f347a58d9bc1-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20180516_190412.jpg,,TRUE, +N1,59670,sortie-61b4c948-c7ee-41e6-bada-f347a58d9bc1,https://biolit.fr/sorties/sortie-61b4c948-c7ee-41e6-bada-f347a58d9bc1/,Phil,,5/16/2018 0:00,19.0000000,19.000005,47.896821000000,-3.974763000000,,La Forêt-Fouesnant - Finistère,44123,observation-61b4c948-c7ee-41e6-bada-f347a58d9bc1-4,https://biolit.fr/observations/observation-61b4c948-c7ee-41e6-bada-f347a58d9bc1-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180516_190459.jpg,,FALSE, +N1,59671,sortie-b83f063c-c613-49f1-960a-d60c197e16af,https://biolit.fr/sorties/sortie-b83f063c-c613-49f1-960a-d60c197e16af/,Phil,,05/05/2018,17.0000000,17.000005,48.577018000000,-4.625146000000,,Saint-Pabu - Finistère,44125,observation-b83f063c-c613-49f1-960a-d60c197e16af,https://biolit.fr/observations/observation-b83f063c-c613-49f1-960a-d60c197e16af/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1110183.JPG,,TRUE, +N1,59671,sortie-b83f063c-c613-49f1-960a-d60c197e16af,https://biolit.fr/sorties/sortie-b83f063c-c613-49f1-960a-d60c197e16af/,Phil,,05/05/2018,17.0000000,17.000005,48.577018000000,-4.625146000000,,Saint-Pabu - Finistère,44127,observation-b83f063c-c613-49f1-960a-d60c197e16af-2,https://biolit.fr/observations/observation-b83f063c-c613-49f1-960a-d60c197e16af-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110186.JPG,,FALSE, +N1,59671,sortie-b83f063c-c613-49f1-960a-d60c197e16af,https://biolit.fr/sorties/sortie-b83f063c-c613-49f1-960a-d60c197e16af/,Phil,,05/05/2018,17.0000000,17.000005,48.577018000000,-4.625146000000,,Saint-Pabu - Finistère,44129,observation-b83f063c-c613-49f1-960a-d60c197e16af-3,https://biolit.fr/observations/observation-b83f063c-c613-49f1-960a-d60c197e16af-3/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1110184.JPG,,TRUE, +N1,59671,sortie-b83f063c-c613-49f1-960a-d60c197e16af,https://biolit.fr/sorties/sortie-b83f063c-c613-49f1-960a-d60c197e16af/,Phil,,05/05/2018,17.0000000,17.000005,48.577018000000,-4.625146000000,,Saint-Pabu - Finistère,44131,observation-b83f063c-c613-49f1-960a-d60c197e16af-4,https://biolit.fr/observations/observation-b83f063c-c613-49f1-960a-d60c197e16af-4/,Schizoporella unicornis,Schizoporella unicorne,,https://biolit.fr/wp-content/uploads/2023/07/P1110185.JPG,,TRUE, +N1,59672,sortie-5705d428-e214-4cb3-8508-219df2be9813,https://biolit.fr/sorties/sortie-5705d428-e214-4cb3-8508-219df2be9813/,Kevin,,5/16/2018 0:00,14.0000000,15.0000000,43.240113000000,5.360688000000,,Plage de la Bonne Brise,44133,observation-5705d428-e214-4cb3-8508-219df2be9813,https://biolit.fr/observations/observation-5705d428-e214-4cb3-8508-219df2be9813/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3962_0-scaled.jpg,,FALSE, +N1,59673,sortie-48d473df-698e-4f44-b56f-bf37b68e3ef9,https://biolit.fr/sorties/sortie-48d473df-698e-4f44-b56f-bf37b68e3ef9/,Noëlla M,,3/19/2018 0:00,13.0000000,13.0000000,43.239924000000,5.362482000000,,Plage du bain des dames ,44135,observation-48d473df-698e-4f44-b56f-bf37b68e3ef9,https://biolit.fr/observations/observation-48d473df-698e-4f44-b56f-bf37b68e3ef9/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/29357177_10215410059785712_73631063896752128_n-scaled.jpg,,TRUE, +N1,59673,sortie-48d473df-698e-4f44-b56f-bf37b68e3ef9,https://biolit.fr/sorties/sortie-48d473df-698e-4f44-b56f-bf37b68e3ef9/,Noëlla M,,3/19/2018 0:00,13.0000000,13.0000000,43.239924000000,5.362482000000,,Plage du bain des dames ,44137,observation-48d473df-698e-4f44-b56f-bf37b68e3ef9-2,https://biolit.fr/observations/observation-48d473df-698e-4f44-b56f-bf37b68e3ef9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/29366165_10215410061305750_3364738604445204480_n-scaled.jpg,,FALSE, +N1,59674,sortie-f460b986-682c-423a-8c4f-06add23c3cbb,https://biolit.fr/sorties/sortie-f460b986-682c-423a-8c4f-06add23c3cbb/,Phil,,4/18/2018 0:00,14.0000000,14.0:35,47.789016000000,-4.264742000000,,Léchiagat - Finistère,44139,observation-f460b986-682c-423a-8c4f-06add23c3cbb,https://biolit.fr/observations/observation-f460b986-682c-423a-8c4f-06add23c3cbb/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100958.JPG,,FALSE, +N1,59674,sortie-f460b986-682c-423a-8c4f-06add23c3cbb,https://biolit.fr/sorties/sortie-f460b986-682c-423a-8c4f-06add23c3cbb/,Phil,,4/18/2018 0:00,14.0000000,14.0:35,47.789016000000,-4.264742000000,,Léchiagat - Finistère,44141,observation-f460b986-682c-423a-8c4f-06add23c3cbb-2,https://biolit.fr/observations/observation-f460b986-682c-423a-8c4f-06add23c3cbb-2/,Janua heterostropha,Spirorbe de Pagenstecher,,https://biolit.fr/wp-content/uploads/2023/07/P1100956.JPG,,TRUE, +N1,59674,sortie-f460b986-682c-423a-8c4f-06add23c3cbb,https://biolit.fr/sorties/sortie-f460b986-682c-423a-8c4f-06add23c3cbb/,Phil,,4/18/2018 0:00,14.0000000,14.0:35,47.789016000000,-4.264742000000,,Léchiagat - Finistère,44143,observation-f460b986-682c-423a-8c4f-06add23c3cbb-3,https://biolit.fr/observations/observation-f460b986-682c-423a-8c4f-06add23c3cbb-3/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1100960.JPG,,TRUE, +N1,59675,sortie-dde814cc-8c62-4b82-b082-38b22232eac6,https://biolit.fr/sorties/sortie-dde814cc-8c62-4b82-b082-38b22232eac6/,Phil,,05/01/2018,11.0000000,11.0000000,47.797197000000,-4.17868800000,,Loctudy - Finistère,44145,observation-dde814cc-8c62-4b82-b082-38b22232eac6,https://biolit.fr/observations/observation-dde814cc-8c62-4b82-b082-38b22232eac6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_114150.jpg,,FALSE, +N1,59675,sortie-dde814cc-8c62-4b82-b082-38b22232eac6,https://biolit.fr/sorties/sortie-dde814cc-8c62-4b82-b082-38b22232eac6/,Phil,,05/01/2018,11.0000000,11.0000000,47.797197000000,-4.17868800000,,Loctudy - Finistère,44147,observation-dde814cc-8c62-4b82-b082-38b22232eac6-2,https://biolit.fr/observations/observation-dde814cc-8c62-4b82-b082-38b22232eac6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112949.jpg,,FALSE, +N1,59675,sortie-dde814cc-8c62-4b82-b082-38b22232eac6,https://biolit.fr/sorties/sortie-dde814cc-8c62-4b82-b082-38b22232eac6/,Phil,,05/01/2018,11.0000000,11.0000000,47.797197000000,-4.17868800000,,Loctudy - Finistère,44149,observation-dde814cc-8c62-4b82-b082-38b22232eac6-3,https://biolit.fr/observations/observation-dde814cc-8c62-4b82-b082-38b22232eac6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112946.jpg,,FALSE, +N1,59675,sortie-dde814cc-8c62-4b82-b082-38b22232eac6,https://biolit.fr/sorties/sortie-dde814cc-8c62-4b82-b082-38b22232eac6/,Phil,,05/01/2018,11.0000000,11.0000000,47.797197000000,-4.17868800000,,Loctudy - Finistère,44151,observation-dde814cc-8c62-4b82-b082-38b22232eac6-4,https://biolit.fr/observations/observation-dde814cc-8c62-4b82-b082-38b22232eac6-4/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112936.jpg,,TRUE, +N1,59676,sortie-96b7cf41-fda8-4952-ba0e-b6b7811977cb,https://biolit.fr/sorties/sortie-96b7cf41-fda8-4952-ba0e-b6b7811977cb/,Phil,,05/06/2018,15.0000000,15.0000000,48.1694270000,-4.292019000000,,Plomodiern - Finistère,44153,observation-96b7cf41-fda8-4952-ba0e-b6b7811977cb,https://biolit.fr/observations/observation-96b7cf41-fda8-4952-ba0e-b6b7811977cb/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20180506_150204.jpg,,TRUE, +N1,59677,sortie-d03a6a33-65cc-408e-954f-6cf4f5f9a223,https://biolit.fr/sorties/sortie-d03a6a33-65cc-408e-954f-6cf4f5f9a223/,Phil,,5/13/2018 0:00,14.0000000,14.0:55,47.800382000000,-4.271899000000,,Tréffiagat - Finistère,44155,observation-d03a6a33-65cc-408e-954f-6cf4f5f9a223,https://biolit.fr/observations/observation-d03a6a33-65cc-408e-954f-6cf4f5f9a223/,Halimione portulacoides,Obione faux-pourpier,,https://biolit.fr/wp-content/uploads/2023/07/20180513_145218.jpg,,TRUE, +N1,59677,sortie-d03a6a33-65cc-408e-954f-6cf4f5f9a223,https://biolit.fr/sorties/sortie-d03a6a33-65cc-408e-954f-6cf4f5f9a223/,Phil,,5/13/2018 0:00,14.0000000,14.0:55,47.800382000000,-4.271899000000,,Tréffiagat - Finistère,44157,observation-d03a6a33-65cc-408e-954f-6cf4f5f9a223-2,https://biolit.fr/observations/observation-d03a6a33-65cc-408e-954f-6cf4f5f9a223-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180513_145326.jpg,,FALSE, +N1,59678,sortie-86e78f49-f24d-4256-bcc3-d2d884b02f69,https://biolit.fr/sorties/sortie-86e78f49-f24d-4256-bcc3-d2d884b02f69/,Phil,,05/01/2018,11.0:25,11.0000000,47.797258000000,-4.178922000000,,Loctudy - Finistère,44159,observation-86e78f49-f24d-4256-bcc3-d2d884b02f69,https://biolit.fr/observations/observation-86e78f49-f24d-4256-bcc3-d2d884b02f69/,Phymatolithon lenormandii,Algue encroûtante rouge de Lenormand,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112749.jpg,,TRUE, +N1,59678,sortie-86e78f49-f24d-4256-bcc3-d2d884b02f69,https://biolit.fr/sorties/sortie-86e78f49-f24d-4256-bcc3-d2d884b02f69/,Phil,,05/01/2018,11.0:25,11.0000000,47.797258000000,-4.178922000000,,Loctudy - Finistère,44161,observation-86e78f49-f24d-4256-bcc3-d2d884b02f69-2,https://biolit.fr/observations/observation-86e78f49-f24d-4256-bcc3-d2d884b02f69-2/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112850.jpg,,TRUE, +N1,59678,sortie-86e78f49-f24d-4256-bcc3-d2d884b02f69,https://biolit.fr/sorties/sortie-86e78f49-f24d-4256-bcc3-d2d884b02f69/,Phil,,05/01/2018,11.0:25,11.0000000,47.797258000000,-4.178922000000,,Loctudy - Finistère,44163,observation-86e78f49-f24d-4256-bcc3-d2d884b02f69-3,https://biolit.fr/observations/observation-86e78f49-f24d-4256-bcc3-d2d884b02f69-3/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112855.jpg,,TRUE, +N1,59678,sortie-86e78f49-f24d-4256-bcc3-d2d884b02f69,https://biolit.fr/sorties/sortie-86e78f49-f24d-4256-bcc3-d2d884b02f69/,Phil,,05/01/2018,11.0:25,11.0000000,47.797258000000,-4.178922000000,,Loctudy - Finistère,44165,observation-86e78f49-f24d-4256-bcc3-d2d884b02f69-4,https://biolit.fr/observations/observation-86e78f49-f24d-4256-bcc3-d2d884b02f69-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112912.jpg,,FALSE, +N1,59679,sortie-518480af-e2db-4dd5-922b-41982f53d0d9,https://biolit.fr/sorties/sortie-518480af-e2db-4dd5-922b-41982f53d0d9/,Phil,,05/05/2018,11.0:25,11.0000000,47.796549000000,-3.850774000000,,Trévignon - Finistère,44167,observation-518480af-e2db-4dd5-922b-41982f53d0d9,https://biolit.fr/observations/observation-518480af-e2db-4dd5-922b-41982f53d0d9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180505_112634.jpg,,FALSE, +N1,59679,sortie-518480af-e2db-4dd5-922b-41982f53d0d9,https://biolit.fr/sorties/sortie-518480af-e2db-4dd5-922b-41982f53d0d9/,Phil,,05/05/2018,11.0:25,11.0000000,47.796549000000,-3.850774000000,,Trévignon - Finistère,44169,observation-518480af-e2db-4dd5-922b-41982f53d0d9-2,https://biolit.fr/observations/observation-518480af-e2db-4dd5-922b-41982f53d0d9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180505_112640.jpg,,FALSE, +N1,59679,sortie-518480af-e2db-4dd5-922b-41982f53d0d9,https://biolit.fr/sorties/sortie-518480af-e2db-4dd5-922b-41982f53d0d9/,Phil,,05/05/2018,11.0:25,11.0000000,47.796549000000,-3.850774000000,,Trévignon - Finistère,44171,observation-518480af-e2db-4dd5-922b-41982f53d0d9-3,https://biolit.fr/observations/observation-518480af-e2db-4dd5-922b-41982f53d0d9-3/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/20180505_112804.jpg,,TRUE, +N1,59680,sortie-aa7952d1-e55b-44cb-a656-58c015cb593c,https://biolit.fr/sorties/sortie-aa7952d1-e55b-44cb-a656-58c015cb593c/,Phil,,05/05/2018,16.0:55,17.0000000,48.57656100000,-4.625289000000,,Saint-Pabu - Finistère,44173,observation-aa7952d1-e55b-44cb-a656-58c015cb593c,https://biolit.fr/observations/observation-aa7952d1-e55b-44cb-a656-58c015cb593c/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1110175.JPG,,TRUE, +N1,59680,sortie-aa7952d1-e55b-44cb-a656-58c015cb593c,https://biolit.fr/sorties/sortie-aa7952d1-e55b-44cb-a656-58c015cb593c/,Phil,,05/05/2018,16.0:55,17.0000000,48.57656100000,-4.625289000000,,Saint-Pabu - Finistère,44175,observation-aa7952d1-e55b-44cb-a656-58c015cb593c-2,https://biolit.fr/observations/observation-aa7952d1-e55b-44cb-a656-58c015cb593c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110176.JPG,,FALSE, +N1,59680,sortie-aa7952d1-e55b-44cb-a656-58c015cb593c,https://biolit.fr/sorties/sortie-aa7952d1-e55b-44cb-a656-58c015cb593c/,Phil,,05/05/2018,16.0:55,17.0000000,48.57656100000,-4.625289000000,,Saint-Pabu - Finistère,44177,observation-aa7952d1-e55b-44cb-a656-58c015cb593c-3,https://biolit.fr/observations/observation-aa7952d1-e55b-44cb-a656-58c015cb593c-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110177.JPG,,TRUE, +N1,59681,sortie-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e,https://biolit.fr/sorties/sortie-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e/,Phil,,05/01/2018,11.0000000,11.0:25,47.798607000000,-4.176478000000,,Loctudy - Finistère,44179,observation-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e,https://biolit.fr/observations/observation-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112357_0.jpg,,TRUE, +N1,59681,sortie-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e,https://biolit.fr/sorties/sortie-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e/,Phil,,05/01/2018,11.0000000,11.0:25,47.798607000000,-4.176478000000,,Loctudy - Finistère,44181,observation-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e-2,https://biolit.fr/observations/observation-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e-2/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112413_0.jpg,,TRUE, +N1,59681,sortie-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e,https://biolit.fr/sorties/sortie-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e/,Phil,,05/01/2018,11.0000000,11.0:25,47.798607000000,-4.176478000000,,Loctudy - Finistère,44183,observation-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e-3,https://biolit.fr/observations/observation-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e-3/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112420_0.jpg,,TRUE, +N1,59681,sortie-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e,https://biolit.fr/sorties/sortie-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e/,Phil,,05/01/2018,11.0000000,11.0:25,47.798607000000,-4.176478000000,,Loctudy - Finistère,44185,observation-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e-4,https://biolit.fr/observations/observation-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e-4/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112436.jpg,,TRUE, +N1,59681,sortie-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e,https://biolit.fr/sorties/sortie-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e/,Phil,,05/01/2018,11.0000000,11.0:25,47.798607000000,-4.176478000000,,Loctudy - Finistère,44187,observation-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e-5,https://biolit.fr/observations/observation-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e-5/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112440.jpg,,TRUE, +N1,59681,sortie-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e,https://biolit.fr/sorties/sortie-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e/,Phil,,05/01/2018,11.0000000,11.0:25,47.798607000000,-4.176478000000,,Loctudy - Finistère,44189,observation-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e-6,https://biolit.fr/observations/observation-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e-6/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112502.jpg,,TRUE, +N1,59682,sortie-277355eb-c6a7-4119-8cf2-2f259a240e3a,https://biolit.fr/sorties/sortie-277355eb-c6a7-4119-8cf2-2f259a240e3a/,Phil,,04/05/2018,9.0000000,9.0:55,48.01092200000,-4.543503000000,,Esquibien - Finistère,44191,observation-277355eb-c6a7-4119-8cf2-2f259a240e3a,https://biolit.fr/observations/observation-277355eb-c6a7-4119-8cf2-2f259a240e3a/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/P1100935.JPG,,TRUE, +N1,59682,sortie-277355eb-c6a7-4119-8cf2-2f259a240e3a,https://biolit.fr/sorties/sortie-277355eb-c6a7-4119-8cf2-2f259a240e3a/,Phil,,04/05/2018,9.0000000,9.0:55,48.01092200000,-4.543503000000,,Esquibien - Finistère,44193,observation-277355eb-c6a7-4119-8cf2-2f259a240e3a-2,https://biolit.fr/observations/observation-277355eb-c6a7-4119-8cf2-2f259a240e3a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100936.JPG,,FALSE, +N1,59682,sortie-277355eb-c6a7-4119-8cf2-2f259a240e3a,https://biolit.fr/sorties/sortie-277355eb-c6a7-4119-8cf2-2f259a240e3a/,Phil,,04/05/2018,9.0000000,9.0:55,48.01092200000,-4.543503000000,,Esquibien - Finistère,44195,observation-277355eb-c6a7-4119-8cf2-2f259a240e3a-3,https://biolit.fr/observations/observation-277355eb-c6a7-4119-8cf2-2f259a240e3a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100938.JPG,,FALSE, +N1,59683,sortie-e23b6971-a8af-455a-8db6-acabf8df9744,https://biolit.fr/sorties/sortie-e23b6971-a8af-455a-8db6-acabf8df9744/,Phil,,05/01/2018,11.0:15,11.0000000,47.798636000000,-4.177002000000,,Loctudy - Finistère,44197,observation-e23b6971-a8af-455a-8db6-acabf8df9744,https://biolit.fr/observations/observation-e23b6971-a8af-455a-8db6-acabf8df9744/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112026.jpg,,FALSE, +N1,59683,sortie-e23b6971-a8af-455a-8db6-acabf8df9744,https://biolit.fr/sorties/sortie-e23b6971-a8af-455a-8db6-acabf8df9744/,Phil,,05/01/2018,11.0:15,11.0000000,47.798636000000,-4.177002000000,,Loctudy - Finistère,44199,observation-e23b6971-a8af-455a-8db6-acabf8df9744-2,https://biolit.fr/observations/observation-e23b6971-a8af-455a-8db6-acabf8df9744-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112036.jpg,,FALSE, +N1,59683,sortie-e23b6971-a8af-455a-8db6-acabf8df9744,https://biolit.fr/sorties/sortie-e23b6971-a8af-455a-8db6-acabf8df9744/,Phil,,05/01/2018,11.0:15,11.0000000,47.798636000000,-4.177002000000,,Loctudy - Finistère,44201,observation-e23b6971-a8af-455a-8db6-acabf8df9744-3,https://biolit.fr/observations/observation-e23b6971-a8af-455a-8db6-acabf8df9744-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112058.jpg,,FALSE, +N1,59683,sortie-e23b6971-a8af-455a-8db6-acabf8df9744,https://biolit.fr/sorties/sortie-e23b6971-a8af-455a-8db6-acabf8df9744/,Phil,,05/01/2018,11.0:15,11.0000000,47.798636000000,-4.177002000000,,Loctudy - Finistère,44203,observation-e23b6971-a8af-455a-8db6-acabf8df9744-4,https://biolit.fr/observations/observation-e23b6971-a8af-455a-8db6-acabf8df9744-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112151.jpg,,FALSE, +N1,59684,sortie-f17996ff-0c35-44af-a547-084be7a512eb,https://biolit.fr/sorties/sortie-f17996ff-0c35-44af-a547-084be7a512eb/,Domaine du Rayol,,05/08/2018,10.0000000,10.0000000,43.153945000000,6.481702000000,,plage du figuier,44205,observation-f17996ff-0c35-44af-a547-084be7a512eb,https://biolit.fr/observations/observation-f17996ff-0c35-44af-a547-084be7a512eb/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180508_104310-scaled.jpg,,FALSE, +N1,59684,sortie-f17996ff-0c35-44af-a547-084be7a512eb,https://biolit.fr/sorties/sortie-f17996ff-0c35-44af-a547-084be7a512eb/,Domaine du Rayol,,05/08/2018,10.0000000,10.0000000,43.153945000000,6.481702000000,,plage du figuier,44207,observation-f17996ff-0c35-44af-a547-084be7a512eb-2,https://biolit.fr/observations/observation-f17996ff-0c35-44af-a547-084be7a512eb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180508_104304-scaled.jpg,,FALSE, +N1,59684,sortie-f17996ff-0c35-44af-a547-084be7a512eb,https://biolit.fr/sorties/sortie-f17996ff-0c35-44af-a547-084be7a512eb/,Domaine du Rayol,,05/08/2018,10.0000000,10.0000000,43.153945000000,6.481702000000,,plage du figuier,44209,observation-f17996ff-0c35-44af-a547-084be7a512eb-3,https://biolit.fr/observations/observation-f17996ff-0c35-44af-a547-084be7a512eb-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180508_104352-scaled.jpg,,FALSE, +N1,59685,sortie-d9ef52e2-7d93-4f32-8904-89a98350a738,https://biolit.fr/sorties/sortie-d9ef52e2-7d93-4f32-8904-89a98350a738/,Phil,,05/05/2018,11.0:25,11.0:25,47.796429000000,-3.85097500000,,Trévignon - Finistère,44211,observation-d9ef52e2-7d93-4f32-8904-89a98350a738,https://biolit.fr/observations/observation-d9ef52e2-7d93-4f32-8904-89a98350a738/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/20180505_112601.jpg,,TRUE, +N1,59685,sortie-d9ef52e2-7d93-4f32-8904-89a98350a738,https://biolit.fr/sorties/sortie-d9ef52e2-7d93-4f32-8904-89a98350a738/,Phil,,05/05/2018,11.0:25,11.0:25,47.796429000000,-3.85097500000,,Trévignon - Finistère,44213,observation-d9ef52e2-7d93-4f32-8904-89a98350a738-2,https://biolit.fr/observations/observation-d9ef52e2-7d93-4f32-8904-89a98350a738-2/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/20180505_112609.jpg,,TRUE, +N1,59685,sortie-d9ef52e2-7d93-4f32-8904-89a98350a738,https://biolit.fr/sorties/sortie-d9ef52e2-7d93-4f32-8904-89a98350a738/,Phil,,05/05/2018,11.0:25,11.0:25,47.796429000000,-3.85097500000,,Trévignon - Finistère,44215,observation-d9ef52e2-7d93-4f32-8904-89a98350a738-3,https://biolit.fr/observations/observation-d9ef52e2-7d93-4f32-8904-89a98350a738-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180505_112627.jpg,,FALSE, +N1,59686,sortie-44466f0b-a09d-47ab-97b7-563013d93bbc,https://biolit.fr/sorties/sortie-44466f0b-a09d-47ab-97b7-563013d93bbc/,Phil,,05/01/2018,11.0000000,11.0000000,47.799349000000,-4.178439000000,,Loctudy - Finistère,44217,observation-44466f0b-a09d-47ab-97b7-563013d93bbc,https://biolit.fr/observations/observation-44466f0b-a09d-47ab-97b7-563013d93bbc/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112050.jpg,,FALSE, +N1,59686,sortie-44466f0b-a09d-47ab-97b7-563013d93bbc,https://biolit.fr/sorties/sortie-44466f0b-a09d-47ab-97b7-563013d93bbc/,Phil,,05/01/2018,11.0000000,11.0000000,47.799349000000,-4.178439000000,,Loctudy - Finistère,44219,observation-44466f0b-a09d-47ab-97b7-563013d93bbc-2,https://biolit.fr/observations/observation-44466f0b-a09d-47ab-97b7-563013d93bbc-2/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112046.jpg,,TRUE, +N1,59686,sortie-44466f0b-a09d-47ab-97b7-563013d93bbc,https://biolit.fr/sorties/sortie-44466f0b-a09d-47ab-97b7-563013d93bbc/,Phil,,05/01/2018,11.0000000,11.0000000,47.799349000000,-4.178439000000,,Loctudy - Finistère,44221,observation-44466f0b-a09d-47ab-97b7-563013d93bbc-3,https://biolit.fr/observations/observation-44466f0b-a09d-47ab-97b7-563013d93bbc-3/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20180501_111216.jpg,,TRUE, +N1,59687,sortie-e5f7d979-7f17-429b-b203-1c4b905c5aec,https://biolit.fr/sorties/sortie-e5f7d979-7f17-429b-b203-1c4b905c5aec/,Marine,,05/05/2018,15.0000000,15.0:45,43.092947000000,6.024857000000,,Plage de la Garonne ,44223,observation-e5f7d979-7f17-429b-b203-1c4b905c5aec,https://biolit.fr/observations/observation-e5f7d979-7f17-429b-b203-1c4b905c5aec/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/0F855F4C-D54C-4C08-9A5A-7CBA21E92F90-scaled.jpeg,,TRUE, +N1,59688,sortie-3816a41e-2a48-434a-8968-40805fac4172,https://biolit.fr/sorties/sortie-3816a41e-2a48-434a-8968-40805fac4172/,Fleur,,4/19/2018 0:00,12.0000000,13.0000000,43.001889000000,6.207988000000,,"Plage de la Courtade, Porquerolles",44225,observation-3816a41e-2a48-434a-8968-40805fac4172,https://biolit.fr/observations/observation-3816a41e-2a48-434a-8968-40805fac4172/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0776-scaled.jpg,,FALSE, +N1,59688,sortie-3816a41e-2a48-434a-8968-40805fac4172,https://biolit.fr/sorties/sortie-3816a41e-2a48-434a-8968-40805fac4172/,Fleur,,4/19/2018 0:00,12.0000000,13.0000000,43.001889000000,6.207988000000,,"Plage de la Courtade, Porquerolles",44227,observation-3816a41e-2a48-434a-8968-40805fac4172-2,https://biolit.fr/observations/observation-3816a41e-2a48-434a-8968-40805fac4172-2/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_0778-scaled.jpg,,TRUE, +N1,59688,sortie-3816a41e-2a48-434a-8968-40805fac4172,https://biolit.fr/sorties/sortie-3816a41e-2a48-434a-8968-40805fac4172/,Fleur,,4/19/2018 0:00,12.0000000,13.0000000,43.001889000000,6.207988000000,,"Plage de la Courtade, Porquerolles",44229,observation-3816a41e-2a48-434a-8968-40805fac4172-3,https://biolit.fr/observations/observation-3816a41e-2a48-434a-8968-40805fac4172-3/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_0780-scaled.jpg,,TRUE, +N1,59689,sortie-034c1dac-af74-44d8-a7e1-3ae783aeccbf,https://biolit.fr/sorties/sortie-034c1dac-af74-44d8-a7e1-3ae783aeccbf/,Phil,,4/28/2018 0:00,11.000005,11.0000000,47.895548000000,-3.968234000000,,La Forêt- Fouesnant - Finistère,44231,observation-034c1dac-af74-44d8-a7e1-3ae783aeccbf,https://biolit.fr/observations/observation-034c1dac-af74-44d8-a7e1-3ae783aeccbf/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110047.JPG,,TRUE, +N1,59689,sortie-034c1dac-af74-44d8-a7e1-3ae783aeccbf,https://biolit.fr/sorties/sortie-034c1dac-af74-44d8-a7e1-3ae783aeccbf/,Phil,,4/28/2018 0:00,11.000005,11.0000000,47.895548000000,-3.968234000000,,La Forêt- Fouesnant - Finistère,44233,observation-034c1dac-af74-44d8-a7e1-3ae783aeccbf-2,https://biolit.fr/observations/observation-034c1dac-af74-44d8-a7e1-3ae783aeccbf-2/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110048.JPG,,TRUE, +N1,59689,sortie-034c1dac-af74-44d8-a7e1-3ae783aeccbf,https://biolit.fr/sorties/sortie-034c1dac-af74-44d8-a7e1-3ae783aeccbf/,Phil,,4/28/2018 0:00,11.000005,11.0000000,47.895548000000,-3.968234000000,,La Forêt- Fouesnant - Finistère,44235,observation-034c1dac-af74-44d8-a7e1-3ae783aeccbf-3,https://biolit.fr/observations/observation-034c1dac-af74-44d8-a7e1-3ae783aeccbf-3/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110054.JPG,,TRUE, +N1,59690,sortie-0c126969-021d-47d3-b0ae-1fe443449c66,https://biolit.fr/sorties/sortie-0c126969-021d-47d3-b0ae-1fe443449c66/,Phil,,05/01/2018,14.0000000,14.0:25,47.800491000000,-4.183451000000,,Loctudy - Finistère,44237,observation-0c126969-021d-47d3-b0ae-1fe443449c66,https://biolit.fr/observations/observation-0c126969-021d-47d3-b0ae-1fe443449c66/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_142037.jpg,,FALSE, +N1,59690,sortie-0c126969-021d-47d3-b0ae-1fe443449c66,https://biolit.fr/sorties/sortie-0c126969-021d-47d3-b0ae-1fe443449c66/,Phil,,05/01/2018,14.0000000,14.0:25,47.800491000000,-4.183451000000,,Loctudy - Finistère,44239,observation-0c126969-021d-47d3-b0ae-1fe443449c66-2,https://biolit.fr/observations/observation-0c126969-021d-47d3-b0ae-1fe443449c66-2/,Carpobrotus acinaciformis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/20180501_142111.jpg,,TRUE, +N1,59690,sortie-0c126969-021d-47d3-b0ae-1fe443449c66,https://biolit.fr/sorties/sortie-0c126969-021d-47d3-b0ae-1fe443449c66/,Phil,,05/01/2018,14.0000000,14.0:25,47.800491000000,-4.183451000000,,Loctudy - Finistère,44241,observation-0c126969-021d-47d3-b0ae-1fe443449c66-3,https://biolit.fr/observations/observation-0c126969-021d-47d3-b0ae-1fe443449c66-3/,Carpobrotus acinaciformis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/20180501_142058.jpg,,TRUE, +N1,59691,sortie-fb757103-caa6-49c6-aa83-c95eadbfd6fc,https://biolit.fr/sorties/sortie-fb757103-caa6-49c6-aa83-c95eadbfd6fc/,Phil,,05/01/2018,11.000005,11.0000000,47.800751000000,-4.181973000000,,Loctudy - Finistère,44243,observation-fb757103-caa6-49c6-aa83-c95eadbfd6fc,https://biolit.fr/observations/observation-fb757103-caa6-49c6-aa83-c95eadbfd6fc/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_110746.jpg,,FALSE, +N1,59691,sortie-fb757103-caa6-49c6-aa83-c95eadbfd6fc,https://biolit.fr/sorties/sortie-fb757103-caa6-49c6-aa83-c95eadbfd6fc/,Phil,,05/01/2018,11.000005,11.0000000,47.800751000000,-4.181973000000,,Loctudy - Finistère,44245,observation-fb757103-caa6-49c6-aa83-c95eadbfd6fc-2,https://biolit.fr/observations/observation-fb757103-caa6-49c6-aa83-c95eadbfd6fc-2/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20180501_110749.jpg,,TRUE, +N1,59691,sortie-fb757103-caa6-49c6-aa83-c95eadbfd6fc,https://biolit.fr/sorties/sortie-fb757103-caa6-49c6-aa83-c95eadbfd6fc/,Phil,,05/01/2018,11.000005,11.0000000,47.800751000000,-4.181973000000,,Loctudy - Finistère,44247,observation-fb757103-caa6-49c6-aa83-c95eadbfd6fc-3,https://biolit.fr/observations/observation-fb757103-caa6-49c6-aa83-c95eadbfd6fc-3/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/20180501_111211.jpg,,TRUE, +N1,59692,sortie-8b5a1f2b-222c-4d56-a421-d03d96a46f57,https://biolit.fr/sorties/sortie-8b5a1f2b-222c-4d56-a421-d03d96a46f57/,Phil,,4/28/2018 0:00,11.0000000,11.000005,47.895750000000,-3.968759000000,,La Forêt-Fouesnant - Finistère,44249,observation-8b5a1f2b-222c-4d56-a421-d03d96a46f57,https://biolit.fr/observations/observation-8b5a1f2b-222c-4d56-a421-d03d96a46f57/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110036.JPG,,FALSE, +N1,59692,sortie-8b5a1f2b-222c-4d56-a421-d03d96a46f57,https://biolit.fr/sorties/sortie-8b5a1f2b-222c-4d56-a421-d03d96a46f57/,Phil,,4/28/2018 0:00,11.0000000,11.000005,47.895750000000,-3.968759000000,,La Forêt-Fouesnant - Finistère,44251,observation-8b5a1f2b-222c-4d56-a421-d03d96a46f57-2,https://biolit.fr/observations/observation-8b5a1f2b-222c-4d56-a421-d03d96a46f57-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110037.JPG,,FALSE, +N1,59692,sortie-8b5a1f2b-222c-4d56-a421-d03d96a46f57,https://biolit.fr/sorties/sortie-8b5a1f2b-222c-4d56-a421-d03d96a46f57/,Phil,,4/28/2018 0:00,11.0000000,11.000005,47.895750000000,-3.968759000000,,La Forêt-Fouesnant - Finistère,44253,observation-8b5a1f2b-222c-4d56-a421-d03d96a46f57-3,https://biolit.fr/observations/observation-8b5a1f2b-222c-4d56-a421-d03d96a46f57-3/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1110040.JPG,,TRUE, +N1,59692,sortie-8b5a1f2b-222c-4d56-a421-d03d96a46f57,https://biolit.fr/sorties/sortie-8b5a1f2b-222c-4d56-a421-d03d96a46f57/,Phil,,4/28/2018 0:00,11.0000000,11.000005,47.895750000000,-3.968759000000,,La Forêt-Fouesnant - Finistère,44255,observation-8b5a1f2b-222c-4d56-a421-d03d96a46f57-4,https://biolit.fr/observations/observation-8b5a1f2b-222c-4d56-a421-d03d96a46f57-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110045.JPG,,FALSE, +N1,59693,sortie-6d24a318-a3c7-4ef2-a4a8-199b1d374692,https://biolit.fr/sorties/sortie-6d24a318-a3c7-4ef2-a4a8-199b1d374692/,Phil,,4/18/2018 0:00,14.0000000,14.0:35,47.788677000000,-4.267789000000,,Léchiagat - Finistère,44257,observation-6d24a318-a3c7-4ef2-a4a8-199b1d374692,https://biolit.fr/observations/observation-6d24a318-a3c7-4ef2-a4a8-199b1d374692/,Sycon ciliatum,Eponge petit œuf,,https://biolit.fr/wp-content/uploads/2023/07/P1100948.JPG,,TRUE, +N1,59693,sortie-6d24a318-a3c7-4ef2-a4a8-199b1d374692,https://biolit.fr/sorties/sortie-6d24a318-a3c7-4ef2-a4a8-199b1d374692/,Phil,,4/18/2018 0:00,14.0000000,14.0:35,47.788677000000,-4.267789000000,,Léchiagat - Finistère,44259,observation-6d24a318-a3c7-4ef2-a4a8-199b1d374692-2,https://biolit.fr/observations/observation-6d24a318-a3c7-4ef2-a4a8-199b1d374692-2/,Ciona intestinalis,Cione intestinale,,https://biolit.fr/wp-content/uploads/2023/07/P1100952.JPG,,TRUE, +N1,59693,sortie-6d24a318-a3c7-4ef2-a4a8-199b1d374692,https://biolit.fr/sorties/sortie-6d24a318-a3c7-4ef2-a4a8-199b1d374692/,Phil,,4/18/2018 0:00,14.0000000,14.0:35,47.788677000000,-4.267789000000,,Léchiagat - Finistère,44261,observation-6d24a318-a3c7-4ef2-a4a8-199b1d374692-3,https://biolit.fr/observations/observation-6d24a318-a3c7-4ef2-a4a8-199b1d374692-3/,Corella eumyota,Ascidie cartilagineuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1100955.JPG,,TRUE, +N1,59694,sortie-f941c8af-386e-4b06-b723-027eb38f33ae,https://biolit.fr/sorties/sortie-f941c8af-386e-4b06-b723-027eb38f33ae/,Phil,,05/01/2018,11.0000000,11.000005,47.801041000000,-4.182237000000,,Loctudy - Finistère,44263,observation-f941c8af-386e-4b06-b723-027eb38f33ae,https://biolit.fr/observations/observation-f941c8af-386e-4b06-b723-027eb38f33ae/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_110523.jpg,,FALSE, +N1,59694,sortie-f941c8af-386e-4b06-b723-027eb38f33ae,https://biolit.fr/sorties/sortie-f941c8af-386e-4b06-b723-027eb38f33ae/,Phil,,05/01/2018,11.0000000,11.000005,47.801041000000,-4.182237000000,,Loctudy - Finistère,44265,observation-f941c8af-386e-4b06-b723-027eb38f33ae-2,https://biolit.fr/observations/observation-f941c8af-386e-4b06-b723-027eb38f33ae-2/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/20180501_110520.jpg,,TRUE, +N1,59694,sortie-f941c8af-386e-4b06-b723-027eb38f33ae,https://biolit.fr/sorties/sortie-f941c8af-386e-4b06-b723-027eb38f33ae/,Phil,,05/01/2018,11.0000000,11.000005,47.801041000000,-4.182237000000,,Loctudy - Finistère,44267,observation-f941c8af-386e-4b06-b723-027eb38f33ae-3,https://biolit.fr/observations/observation-f941c8af-386e-4b06-b723-027eb38f33ae-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_110230.jpg,,FALSE, +N1,59695,sortie-7059bd9b-4e81-46f7-93ee-bf8d4657dfc3,https://biolit.fr/sorties/sortie-7059bd9b-4e81-46f7-93ee-bf8d4657dfc3/,Violaine J.,,4/28/2018 0:00,16.0000000,16.0000000,43.460304000000,3.819804000000,,"Plage St Eugène, Frontignan Plage",44269,observation-7059bd9b-4e81-46f7-93ee-bf8d4657dfc3,https://biolit.fr/observations/observation-7059bd9b-4e81-46f7-93ee-bf8d4657dfc3/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180428_170714[1]-scaled.jpg,,TRUE, +N1,59695,sortie-7059bd9b-4e81-46f7-93ee-bf8d4657dfc3,https://biolit.fr/sorties/sortie-7059bd9b-4e81-46f7-93ee-bf8d4657dfc3/,Violaine J.,,4/28/2018 0:00,16.0000000,16.0000000,43.460304000000,3.819804000000,,"Plage St Eugène, Frontignan Plage",44271,observation-7059bd9b-4e81-46f7-93ee-bf8d4657dfc3-2,https://biolit.fr/observations/observation-7059bd9b-4e81-46f7-93ee-bf8d4657dfc3-2/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180428_170745[1]-scaled.jpg,,TRUE, +N1,59696,sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5,https://biolit.fr/sorties/sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5/,Club subaquatique Narbonnais,,4/28/2018 0:00,11.0000000,11.0000000,43.172140000000,3.19212300000,,plage de Saint-Pierre la mer,44273,observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5,https://biolit.fr/observations/observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue dichtyot et juvenil.jpg,,FALSE, +N1,59696,sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5,https://biolit.fr/sorties/sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5/,Club subaquatique Narbonnais,,4/28/2018 0:00,11.0000000,11.0000000,43.172140000000,3.19212300000,,plage de Saint-Pierre la mer,44275,observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-2,https://biolit.fr/observations/observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-2/,Microcosmus sabatieri,Violet,,https://biolit.fr/wp-content/uploads/2023/07/anémone solaire.JPG,,TRUE, +N1,59696,sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5,https://biolit.fr/sorties/sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5/,Club subaquatique Narbonnais,,4/28/2018 0:00,11.0000000,11.0000000,43.172140000000,3.19212300000,,plage de Saint-Pierre la mer,44276,observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-3,https://biolit.fr/observations/observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/anémone_0.jpg,,FALSE, +N1,59696,sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5,https://biolit.fr/sorties/sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5/,Club subaquatique Narbonnais,,4/28/2018 0:00,11.0000000,11.0000000,43.172140000000,3.19212300000,,plage de Saint-Pierre la mer,44278,observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-4,https://biolit.fr/observations/observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/ascidie blanche.jpg,,FALSE, +N1,59696,sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5,https://biolit.fr/sorties/sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5/,Club subaquatique Narbonnais,,4/28/2018 0:00,11.0000000,11.0000000,43.172140000000,3.19212300000,,plage de Saint-Pierre la mer,44280,observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-5,https://biolit.fr/observations/observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/congre.JPG,,FALSE, +N1,59696,sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5,https://biolit.fr/sorties/sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5/,Club subaquatique Narbonnais,,4/28/2018 0:00,11.0000000,11.0000000,43.172140000000,3.19212300000,,plage de Saint-Pierre la mer,44281,observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-6,https://biolit.fr/observations/observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-6/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/face etrille_0.jpg,,TRUE, +N1,59696,sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5,https://biolit.fr/sorties/sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5/,Club subaquatique Narbonnais,,4/28/2018 0:00,11.0000000,11.0000000,43.172140000000,3.19212300000,,plage de Saint-Pierre la mer,44283,observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-7,https://biolit.fr/observations/observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-7/,Cratena peregrina,Hervia,,https://biolit.fr/wp-content/uploads/2023/07/moule et 3 juvenil.jpg,,TRUE, +N1,59696,sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5,https://biolit.fr/sorties/sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5/,Club subaquatique Narbonnais,,4/28/2018 0:00,11.0000000,11.0000000,43.172140000000,3.19212300000,,plage de Saint-Pierre la mer,44285,observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-8,https://biolit.fr/observations/observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-8/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/2023/07/poulpe.JPG,,TRUE, +N1,59696,sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5,https://biolit.fr/sorties/sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5/,Club subaquatique Narbonnais,,4/28/2018 0:00,11.0000000,11.0000000,43.172140000000,3.19212300000,,plage de Saint-Pierre la mer,44286,observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-9,https://biolit.fr/observations/observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-9/,Sabella spallanzanii,Spirographe,,https://biolit.fr/wp-content/uploads/2023/07/Spirographe-scaled.jpg,,TRUE, +N1,59696,sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5,https://biolit.fr/sorties/sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5/,Club subaquatique Narbonnais,,4/28/2018 0:00,11.0000000,11.0000000,43.172140000000,3.19212300000,,plage de Saint-Pierre la mer,44287,observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-10,https://biolit.fr/observations/observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-10/,Ulva spp.,Ulve rigide,,https://biolit.fr/wp-content/uploads/2023/07/Ulve.jpg,,TRUE, +N1,59696,sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5,https://biolit.fr/sorties/sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5/,Club subaquatique Narbonnais,,4/28/2018 0:00,11.0000000,11.0000000,43.172140000000,3.19212300000,,plage de Saint-Pierre la mer,44289,observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-11,https://biolit.fr/observations/observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/violet et orange.jpg,,FALSE, +N1,59697,sortie-4c2e7bfc-8dcc-4aa4-acc6-da6d7b4801ef,https://biolit.fr/sorties/sortie-4c2e7bfc-8dcc-4aa4-acc6-da6d7b4801ef/,Violaine J.,,4/27/2018 0:00,18.0000000,18.0:15,43.452569000000,3.811179000000,,"Plage St Eugène, Frontignan Plage",44291,observation-4c2e7bfc-8dcc-4aa4-acc6-da6d7b4801ef,https://biolit.fr/observations/observation-4c2e7bfc-8dcc-4aa4-acc6-da6d7b4801ef/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180427_184517-scaled.jpg,,FALSE, +N1,59698,sortie-88bb3ad3-ab61-40f6-9e41-c9527f3971e9,https://biolit.fr/sorties/sortie-88bb3ad3-ab61-40f6-9e41-c9527f3971e9/,Noëlla M,,03/07/2018,14.0000000,14.0000000,43.239957000000,5.362453000000,,Plage du bain des dames ,44293,observation-88bb3ad3-ab61-40f6-9e41-c9527f3971e9,https://biolit.fr/observations/observation-88bb3ad3-ab61-40f6-9e41-c9527f3971e9/,,,,https://biolit.fr/wp-content/uploads/2023/07/29389361_10215410064305825_5888786490829307904_n-scaled.jpg,,FALSE, +N1,59698,sortie-88bb3ad3-ab61-40f6-9e41-c9527f3971e9,https://biolit.fr/sorties/sortie-88bb3ad3-ab61-40f6-9e41-c9527f3971e9/,Noëlla M,,03/07/2018,14.0000000,14.0000000,43.239957000000,5.362453000000,,Plage du bain des dames ,44295,observation-88bb3ad3-ab61-40f6-9e41-c9527f3971e9-2,https://biolit.fr/observations/observation-88bb3ad3-ab61-40f6-9e41-c9527f3971e9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/29425174_10215410062145771_4823845802143121408_n-scaled.jpg,,FALSE, +N1,59698,sortie-88bb3ad3-ab61-40f6-9e41-c9527f3971e9,https://biolit.fr/sorties/sortie-88bb3ad3-ab61-40f6-9e41-c9527f3971e9/,Noëlla M,,03/07/2018,14.0000000,14.0000000,43.239957000000,5.362453000000,,Plage du bain des dames ,44297,observation-88bb3ad3-ab61-40f6-9e41-c9527f3971e9-3,https://biolit.fr/observations/observation-88bb3ad3-ab61-40f6-9e41-c9527f3971e9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/29365584_10215410063105795_5625467960081514496_n-scaled.jpg,,FALSE, +N1,59698,sortie-88bb3ad3-ab61-40f6-9e41-c9527f3971e9,https://biolit.fr/sorties/sortie-88bb3ad3-ab61-40f6-9e41-c9527f3971e9/,Noëlla M,,03/07/2018,14.0000000,14.0000000,43.239957000000,5.362453000000,,Plage du bain des dames ,44299,observation-88bb3ad3-ab61-40f6-9e41-c9527f3971e9-4,https://biolit.fr/observations/observation-88bb3ad3-ab61-40f6-9e41-c9527f3971e9-4/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/29433077_10215410065145846_9035234396067594240_n-scaled.jpg,,TRUE, +N1,59699,sortie-3fa56d57-463f-4a24-b0bb-9dfd4e15913c,https://biolit.fr/sorties/sortie-3fa56d57-463f-4a24-b0bb-9dfd4e15913c/,RBBBM,,4/20/2018 0:00,14.0000000,15.0000000,47.80664700000,-3.715456000000,,Moëlan anse du Gorgen,44301,observation-3fa56d57-463f-4a24-b0bb-9dfd4e15913c,https://biolit.fr/observations/observation-3fa56d57-463f-4a24-b0bb-9dfd4e15913c/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2008-scaled.jpg,,TRUE, +N1,59699,sortie-3fa56d57-463f-4a24-b0bb-9dfd4e15913c,https://biolit.fr/sorties/sortie-3fa56d57-463f-4a24-b0bb-9dfd4e15913c/,RBBBM,,4/20/2018 0:00,14.0000000,15.0000000,47.80664700000,-3.715456000000,,Moëlan anse du Gorgen,44303,observation-3fa56d57-463f-4a24-b0bb-9dfd4e15913c-2,https://biolit.fr/observations/observation-3fa56d57-463f-4a24-b0bb-9dfd4e15913c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2016-scaled.jpg,,FALSE, +N1,59699,sortie-3fa56d57-463f-4a24-b0bb-9dfd4e15913c,https://biolit.fr/sorties/sortie-3fa56d57-463f-4a24-b0bb-9dfd4e15913c/,RBBBM,,4/20/2018 0:00,14.0000000,15.0000000,47.80664700000,-3.715456000000,,Moëlan anse du Gorgen,44305,observation-3fa56d57-463f-4a24-b0bb-9dfd4e15913c-3,https://biolit.fr/observations/observation-3fa56d57-463f-4a24-b0bb-9dfd4e15913c-3/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2036-scaled.jpg,,TRUE, +N1,59699,sortie-3fa56d57-463f-4a24-b0bb-9dfd4e15913c,https://biolit.fr/sorties/sortie-3fa56d57-463f-4a24-b0bb-9dfd4e15913c/,RBBBM,,4/20/2018 0:00,14.0000000,15.0000000,47.80664700000,-3.715456000000,,Moëlan anse du Gorgen,44307,observation-3fa56d57-463f-4a24-b0bb-9dfd4e15913c-4,https://biolit.fr/observations/observation-3fa56d57-463f-4a24-b0bb-9dfd4e15913c-4/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2029-scaled.jpg,,TRUE, +N1,59699,sortie-3fa56d57-463f-4a24-b0bb-9dfd4e15913c,https://biolit.fr/sorties/sortie-3fa56d57-463f-4a24-b0bb-9dfd4e15913c/,RBBBM,,4/20/2018 0:00,14.0000000,15.0000000,47.80664700000,-3.715456000000,,Moëlan anse du Gorgen,44309,observation-3fa56d57-463f-4a24-b0bb-9dfd4e15913c-5,https://biolit.fr/observations/observation-3fa56d57-463f-4a24-b0bb-9dfd4e15913c-5/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2023-scaled.jpg,,TRUE, +N1,59700,sortie-cf086496-983c-4c66-988c-3ed4e0963b57,https://biolit.fr/sorties/sortie-cf086496-983c-4c66-988c-3ed4e0963b57/,sebgodard,,4/21/2018 0:00,10.000005,10.0:15,48.700285000000,-1.849545000000,,"Port Mer, Cancale",44311,observation-cf086496-983c-4c66-988c-3ed4e0963b57,https://biolit.fr/observations/observation-cf086496-983c-4c66-988c-3ed4e0963b57/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180424_153136.jpg,,FALSE, +N1,59700,sortie-cf086496-983c-4c66-988c-3ed4e0963b57,https://biolit.fr/sorties/sortie-cf086496-983c-4c66-988c-3ed4e0963b57/,sebgodard,,4/21/2018 0:00,10.000005,10.0:15,48.700285000000,-1.849545000000,,"Port Mer, Cancale",44313,observation-cf086496-983c-4c66-988c-3ed4e0963b57-2,https://biolit.fr/observations/observation-cf086496-983c-4c66-988c-3ed4e0963b57-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180424_153026.jpg,,FALSE, +N1,59700,sortie-cf086496-983c-4c66-988c-3ed4e0963b57,https://biolit.fr/sorties/sortie-cf086496-983c-4c66-988c-3ed4e0963b57/,sebgodard,,4/21/2018 0:00,10.000005,10.0:15,48.700285000000,-1.849545000000,,"Port Mer, Cancale",44315,observation-cf086496-983c-4c66-988c-3ed4e0963b57-3,https://biolit.fr/observations/observation-cf086496-983c-4c66-988c-3ed4e0963b57-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180424_153218.jpg,,FALSE, +N1,59701,sortie-2c27588f-d734-42b8-a695-a62c19d45449,https://biolit.fr/sorties/sortie-2c27588f-d734-42b8-a695-a62c19d45449/,sebgodard,,4/19/2018 0:00,18.0000000,18.0000000,48.700505000000,-1.849585000000,,"Port Mer, Cancale",44317,observation-2c27588f-d734-42b8-a695-a62c19d45449,https://biolit.fr/observations/observation-2c27588f-d734-42b8-a695-a62c19d45449/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180419_192045-scaled.jpg,,FALSE, +N1,59701,sortie-2c27588f-d734-42b8-a695-a62c19d45449,https://biolit.fr/sorties/sortie-2c27588f-d734-42b8-a695-a62c19d45449/,sebgodard,,4/19/2018 0:00,18.0000000,18.0000000,48.700505000000,-1.849585000000,,"Port Mer, Cancale",44319,observation-2c27588f-d734-42b8-a695-a62c19d45449-2,https://biolit.fr/observations/observation-2c27588f-d734-42b8-a695-a62c19d45449-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180419_191934-scaled.jpg,,FALSE, +N1,59701,sortie-2c27588f-d734-42b8-a695-a62c19d45449,https://biolit.fr/sorties/sortie-2c27588f-d734-42b8-a695-a62c19d45449/,sebgodard,,4/19/2018 0:00,18.0000000,18.0000000,48.700505000000,-1.849585000000,,"Port Mer, Cancale",44321,observation-2c27588f-d734-42b8-a695-a62c19d45449-3,https://biolit.fr/observations/observation-2c27588f-d734-42b8-a695-a62c19d45449-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180419_191921-scaled.jpg,,FALSE, +N1,59702,sortie-ac8459de-233e-45ab-b12b-ad71a6039bef,https://biolit.fr/sorties/sortie-ac8459de-233e-45ab-b12b-ad71a6039bef/,Eva,,4/18/2018 0:00,15.0000000,16.0000000,43.357539000000,5.289923000000,,plage Corbière,44323,observation-ac8459de-233e-45ab-b12b-ad71a6039bef,https://biolit.fr/observations/observation-ac8459de-233e-45ab-b12b-ad71a6039bef/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0142[1]-scaled.jpg,,FALSE, +N1,59702,sortie-ac8459de-233e-45ab-b12b-ad71a6039bef,https://biolit.fr/sorties/sortie-ac8459de-233e-45ab-b12b-ad71a6039bef/,Eva,,4/18/2018 0:00,15.0000000,16.0000000,43.357539000000,5.289923000000,,plage Corbière,44325,observation-ac8459de-233e-45ab-b12b-ad71a6039bef-2,https://biolit.fr/observations/observation-ac8459de-233e-45ab-b12b-ad71a6039bef-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0139[1]-scaled.jpg,,FALSE, +N1,59703,sortie-113b00ad-209b-41ea-a03b-16c8391317a0,https://biolit.fr/sorties/sortie-113b00ad-209b-41ea-a03b-16c8391317a0/,Phil,,9/22/2017 0:00,11.0000000,11.0:15,47.777555000000,-4.342561000000,,Penmarc'h - Finistère,44327,observation-113b00ad-209b-41ea-a03b-16c8391317a0,https://biolit.fr/observations/observation-113b00ad-209b-41ea-a03b-16c8391317a0/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080567.JPG,,TRUE, +N1,59703,sortie-113b00ad-209b-41ea-a03b-16c8391317a0,https://biolit.fr/sorties/sortie-113b00ad-209b-41ea-a03b-16c8391317a0/,Phil,,9/22/2017 0:00,11.0000000,11.0:15,47.777555000000,-4.342561000000,,Penmarc'h - Finistère,44329,observation-113b00ad-209b-41ea-a03b-16c8391317a0-2,https://biolit.fr/observations/observation-113b00ad-209b-41ea-a03b-16c8391317a0-2/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080605_0.JPG,,TRUE, +N1,59704,sortie-826d24c6-95c5-44f7-b04c-3c07a290a515,https://biolit.fr/sorties/sortie-826d24c6-95c5-44f7-b04c-3c07a290a515/,Phil,,4/18/2018 0:00,14.0000000,14.0000000,47.788144000000,-4.270463000000,,Léchiagat - Finistère,44331,observation-826d24c6-95c5-44f7-b04c-3c07a290a515,https://biolit.fr/observations/observation-826d24c6-95c5-44f7-b04c-3c07a290a515/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1100944.JPG,,TRUE, +N1,59704,sortie-826d24c6-95c5-44f7-b04c-3c07a290a515,https://biolit.fr/sorties/sortie-826d24c6-95c5-44f7-b04c-3c07a290a515/,Phil,,4/18/2018 0:00,14.0000000,14.0000000,47.788144000000,-4.270463000000,,Léchiagat - Finistère,44333,observation-826d24c6-95c5-44f7-b04c-3c07a290a515-2,https://biolit.fr/observations/observation-826d24c6-95c5-44f7-b04c-3c07a290a515-2/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1100945.JPG,,TRUE, +N1,59704,sortie-826d24c6-95c5-44f7-b04c-3c07a290a515,https://biolit.fr/sorties/sortie-826d24c6-95c5-44f7-b04c-3c07a290a515/,Phil,,4/18/2018 0:00,14.0000000,14.0000000,47.788144000000,-4.270463000000,,Léchiagat - Finistère,44335,observation-826d24c6-95c5-44f7-b04c-3c07a290a515-3,https://biolit.fr/observations/observation-826d24c6-95c5-44f7-b04c-3c07a290a515-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100946.JPG,,FALSE, +N1,59705,sortie-2eaa1756-b2fd-4558-b4d0-7a0ebb9423bb,https://biolit.fr/sorties/sortie-2eaa1756-b2fd-4558-b4d0-7a0ebb9423bb/,Phil,,4/18/2018 0:00,14.0:15,14.0:15,47.790380000000,-4.269956000000,,Léchiagat - Fnistère,44337,observation-2eaa1756-b2fd-4558-b4d0-7a0ebb9423bb,https://biolit.fr/observations/observation-2eaa1756-b2fd-4558-b4d0-7a0ebb9423bb/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100941.JPG,,FALSE, +N1,59706,sortie-fba3b2fd-cb84-4568-aabb-d842744afa57,https://biolit.fr/sorties/sortie-fba3b2fd-cb84-4568-aabb-d842744afa57/,Phil,,9/22/2017 0:00,11.0000000,11.0:15,47.777796000000,-4.341367000000,,Penmarc'h - Finistère,44339,observation-fba3b2fd-cb84-4568-aabb-d842744afa57,https://biolit.fr/observations/observation-fba3b2fd-cb84-4568-aabb-d842744afa57/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080584.JPG,,TRUE, +N1,59706,sortie-fba3b2fd-cb84-4568-aabb-d842744afa57,https://biolit.fr/sorties/sortie-fba3b2fd-cb84-4568-aabb-d842744afa57/,Phil,,9/22/2017 0:00,11.0000000,11.0:15,47.777796000000,-4.341367000000,,Penmarc'h - Finistère,44341,observation-fba3b2fd-cb84-4568-aabb-d842744afa57-2,https://biolit.fr/observations/observation-fba3b2fd-cb84-4568-aabb-d842744afa57-2/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080603.JPG,,TRUE, +N1,59707,sortie-adf1a351-26f0-4e31-94f2-abbf47f6bb01,https://biolit.fr/sorties/sortie-adf1a351-26f0-4e31-94f2-abbf47f6bb01/,Club subaquatique Narbonnais,,4/15/2018 0:00,11.0000000,12.0000000,43.168126000000,3.180391000000,,Narbonne plage,44343,observation-adf1a351-26f0-4e31-94f2-abbf47f6bb01,https://biolit.fr/observations/observation-adf1a351-26f0-4e31-94f2-abbf47f6bb01/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/velella_0.JPG,,TRUE, +N1,59707,sortie-adf1a351-26f0-4e31-94f2-abbf47f6bb01,https://biolit.fr/sorties/sortie-adf1a351-26f0-4e31-94f2-abbf47f6bb01/,Club subaquatique Narbonnais,,4/15/2018 0:00,11.0000000,12.0000000,43.168126000000,3.180391000000,,Narbonne plage,44345,observation-adf1a351-26f0-4e31-94f2-abbf47f6bb01-2,https://biolit.fr/observations/observation-adf1a351-26f0-4e31-94f2-abbf47f6bb01-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/velelle_0.JPG,,TRUE, +N1,59708,sortie-678f2ed2-156d-44d2-a073-b853863aa89e,https://biolit.fr/sorties/sortie-678f2ed2-156d-44d2-a073-b853863aa89e/,Phil,,04/05/2018,9.0000000,9.0000000,48.011166000000,-4.551893000000,,Esquibien - Finistère,44347,observation-678f2ed2-156d-44d2-a073-b853863aa89e,https://biolit.fr/observations/observation-678f2ed2-156d-44d2-a073-b853863aa89e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100932.JPG,,FALSE, +N1,59709,sortie-aec1fd2b-1b24-44af-b1e0-dab502f1b85d,https://biolit.fr/sorties/sortie-aec1fd2b-1b24-44af-b1e0-dab502f1b85d/,Phil,,04/05/2018,9.0:45,9.0000000,48.01117900000,-4.552011000000,,Esquibien - Finistère,44349,observation-aec1fd2b-1b24-44af-b1e0-dab502f1b85d,https://biolit.fr/observations/observation-aec1fd2b-1b24-44af-b1e0-dab502f1b85d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100931.JPG,,FALSE, +N1,59710,sortie-9e0c9a7e-b5fd-4123-9d80-379e4dba5c3f,https://biolit.fr/sorties/sortie-9e0c9a7e-b5fd-4123-9d80-379e4dba5c3f/,Phil,,04/05/2018,9.0:45,9.0000000,48.011285000000,-4.551395000000,,Esquibien - Finistère,44351,observation-9e0c9a7e-b5fd-4123-9d80-379e4dba5c3f,https://biolit.fr/observations/observation-9e0c9a7e-b5fd-4123-9d80-379e4dba5c3f/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1100930.JPG,,TRUE, +N1,59711,sortie-ebde2b2b-ade3-4956-8231-d98197236be4,https://biolit.fr/sorties/sortie-ebde2b2b-ade3-4956-8231-d98197236be4/,Phil,,04/05/2018,9.0:45,9.0000000,48.011080000000,-4.551968000000,,Esquibien - Finistère,44353,observation-ebde2b2b-ade3-4956-8231-d98197236be4,https://biolit.fr/observations/observation-ebde2b2b-ade3-4956-8231-d98197236be4/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1100928.JPG,,TRUE, +N1,59712,sortie-bb6c50ef-71a2-4252-b8f5-034a4d2a7db6,https://biolit.fr/sorties/sortie-bb6c50ef-71a2-4252-b8f5-034a4d2a7db6/,Phil,,04/05/2018,9.0:45,9.0000000,48.011232000000,-4.551953000000,,Esquibien - Finistère,44355,observation-bb6c50ef-71a2-4252-b8f5-034a4d2a7db6,https://biolit.fr/observations/observation-bb6c50ef-71a2-4252-b8f5-034a4d2a7db6/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1100923.JPG,,TRUE, +N1,59713,sortie-1a25cbbf-18a3-4a20-862e-ee8951635634,https://biolit.fr/sorties/sortie-1a25cbbf-18a3-4a20-862e-ee8951635634/,CPIE Cote Provencale Atelier Bleu,,4/14/2018 0:00,10.0:15,11.0:15,43.166128000000,5.605870000000,,"La Ciotat, Mugel",44357,observation-1a25cbbf-18a3-4a20-862e-ee8951635634,https://biolit.fr/observations/observation-1a25cbbf-18a3-4a20-862e-ee8951635634/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1441.JPG,,TRUE, +N1,59713,sortie-1a25cbbf-18a3-4a20-862e-ee8951635634,https://biolit.fr/sorties/sortie-1a25cbbf-18a3-4a20-862e-ee8951635634/,CPIE Cote Provencale Atelier Bleu,,4/14/2018 0:00,10.0:15,11.0:15,43.166128000000,5.605870000000,,"La Ciotat, Mugel",44359,observation-1a25cbbf-18a3-4a20-862e-ee8951635634-2,https://biolit.fr/observations/observation-1a25cbbf-18a3-4a20-862e-ee8951635634-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1445.JPG,,FALSE, +N1,59714,sortie-5a3b8cfe-40bf-4c16-a0a3-e55eb2b64bf4,https://biolit.fr/sorties/sortie-5a3b8cfe-40bf-4c16-a0a3-e55eb2b64bf4/,Clara de Gaillande,,4/14/2018 0:00,10.0000000,11.0000000,43.177734000000,5.630090000000,,Plage du grand Mugel,44361,observation-5a3b8cfe-40bf-4c16-a0a3-e55eb2b64bf4,https://biolit.fr/observations/observation-5a3b8cfe-40bf-4c16-a0a3-e55eb2b64bf4/,,,,https://biolit.fr/wp-content/uploads/2023/07/64594490-781E-4D0D-8671-E3B55940B126-scaled.jpeg,,FALSE, +N1,59714,sortie-5a3b8cfe-40bf-4c16-a0a3-e55eb2b64bf4,https://biolit.fr/sorties/sortie-5a3b8cfe-40bf-4c16-a0a3-e55eb2b64bf4/,Clara de Gaillande,,4/14/2018 0:00,10.0000000,11.0000000,43.177734000000,5.630090000000,,Plage du grand Mugel,44363,observation-5a3b8cfe-40bf-4c16-a0a3-e55eb2b64bf4-2,https://biolit.fr/observations/observation-5a3b8cfe-40bf-4c16-a0a3-e55eb2b64bf4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/17CC19FE-DFCC-4EDE-A2D7-12757AB6016A-scaled.jpeg,,FALSE, +N1,59715,sortie-6ea0a65b-4aaa-403a-b724-dab22d226de7,https://biolit.fr/sorties/sortie-6ea0a65b-4aaa-403a-b724-dab22d226de7/,Phil,,9/22/2017 0:00,11.0000000,11.0:15,47.77698900000,-4.340402000000,,Penmarc’h - Finistère,44365,observation-6ea0a65b-4aaa-403a-b724-dab22d226de7,https://biolit.fr/observations/observation-6ea0a65b-4aaa-403a-b724-dab22d226de7/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080612.JPG,,TRUE, +N1,59715,sortie-6ea0a65b-4aaa-403a-b724-dab22d226de7,https://biolit.fr/sorties/sortie-6ea0a65b-4aaa-403a-b724-dab22d226de7/,Phil,,9/22/2017 0:00,11.0000000,11.0:15,47.77698900000,-4.340402000000,,Penmarc’h - Finistère,44367,observation-6ea0a65b-4aaa-403a-b724-dab22d226de7-2,https://biolit.fr/observations/observation-6ea0a65b-4aaa-403a-b724-dab22d226de7-2/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080561.JPG,,TRUE, +N1,59716,sortie-caa66cb6-c89e-43ba-b627-ccea295817b2,https://biolit.fr/sorties/sortie-caa66cb6-c89e-43ba-b627-ccea295817b2/,Phil,,4/13/2018 0:00,11.0000000,11.0:15,47.778528000000,-4.341080000000,,Penmarc’h - Finistère,44369,observation-caa66cb6-c89e-43ba-b627-ccea295817b2,https://biolit.fr/observations/observation-caa66cb6-c89e-43ba-b627-ccea295817b2/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080613.JPG,,TRUE, +N1,59716,sortie-caa66cb6-c89e-43ba-b627-ccea295817b2,https://biolit.fr/sorties/sortie-caa66cb6-c89e-43ba-b627-ccea295817b2/,Phil,,4/13/2018 0:00,11.0000000,11.0:15,47.778528000000,-4.341080000000,,Penmarc’h - Finistère,44371,observation-caa66cb6-c89e-43ba-b627-ccea295817b2-2,https://biolit.fr/observations/observation-caa66cb6-c89e-43ba-b627-ccea295817b2-2/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080609.JPG,,TRUE, +N1,59717,sortie-7bea26b9-0841-40f1-9269-9921071d28b9,https://biolit.fr/sorties/sortie-7bea26b9-0841-40f1-9269-9921071d28b9/,Phil,,04/05/2018,9.0:45,9.0:45,48.010905000000,-4.552236000000,,Esquibien - Finistère,44373,observation-7bea26b9-0841-40f1-9269-9921071d28b9,https://biolit.fr/observations/observation-7bea26b9-0841-40f1-9269-9921071d28b9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100919.JPG,,FALSE, +N1,59718,sortie-7ddb4b71-f883-4780-a42f-e95a40339774,https://biolit.fr/sorties/sortie-7ddb4b71-f883-4780-a42f-e95a40339774/,Phil,,04/05/2018,9.0000000,9.0:45,48.01096900000,-4.552189000000,,Esquibien - Finistère,44375,observation-7ddb4b71-f883-4780-a42f-e95a40339774,https://biolit.fr/observations/observation-7ddb4b71-f883-4780-a42f-e95a40339774/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100915.JPG,,FALSE, +N1,59719,sortie-79aeb964-8c3a-4353-a2e1-55ae81b488ca,https://biolit.fr/sorties/sortie-79aeb964-8c3a-4353-a2e1-55ae81b488ca/,Phil,,04/05/2018,9.0000000,9.0:45,48.010823000000,-4.552344000000,,Esquibien - Finistère,44377,observation-79aeb964-8c3a-4353-a2e1-55ae81b488ca,https://biolit.fr/observations/observation-79aeb964-8c3a-4353-a2e1-55ae81b488ca/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100914.JPG,,FALSE, +N1,59720,sortie-8ec53ef3-f075-47df-bc42-ad2b55c3686d,https://biolit.fr/sorties/sortie-8ec53ef3-f075-47df-bc42-ad2b55c3686d/,Phil,,04/05/2018,9.0000000,9.0:45,48.010751000000,-4.552404000000,,Esquibien - Finistère,44379,observation-8ec53ef3-f075-47df-bc42-ad2b55c3686d,https://biolit.fr/observations/observation-8ec53ef3-f075-47df-bc42-ad2b55c3686d/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1100913.JPG,,TRUE, +N1,59721,sortie-f02903fe-9104-4764-b228-5fd4afad3fdb,https://biolit.fr/sorties/sortie-f02903fe-9104-4764-b228-5fd4afad3fdb/,Phil,,04/05/2018,9.0000000,9.0:45,48.010777000000,-4.552382000000,,Esquibien - Finistère,44381,observation-f02903fe-9104-4764-b228-5fd4afad3fdb,https://biolit.fr/observations/observation-f02903fe-9104-4764-b228-5fd4afad3fdb/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100911.JPG,,FALSE, +N1,59722,sortie-2a67bd5e-0dda-403d-ab56-2ce03113376e,https://biolit.fr/sorties/sortie-2a67bd5e-0dda-403d-ab56-2ce03113376e/,Phil,,04/05/2018,9.0000000,9.0:45,48.010777000000,-4.552468000000,,Esquibien - Finistère,44383,observation-2a67bd5e-0dda-403d-ab56-2ce03113376e,https://biolit.fr/observations/observation-2a67bd5e-0dda-403d-ab56-2ce03113376e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100909.JPG,,FALSE, +N1,59723,sortie-e4fbc4da-f698-4682-9dc8-922a15937571,https://biolit.fr/sorties/sortie-e4fbc4da-f698-4682-9dc8-922a15937571/,Phil,,04/05/2018,9.0000000,9.0:45,48.010587000000,-4.55232200000,,Esquibien - Finistère,44385,observation-e4fbc4da-f698-4682-9dc8-922a15937571,https://biolit.fr/observations/observation-e4fbc4da-f698-4682-9dc8-922a15937571/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100910.JPG,,FALSE, +N1,59724,sortie-86a3a300-27c5-4b4c-90b8-1a39d6fcd628,https://biolit.fr/sorties/sortie-86a3a300-27c5-4b4c-90b8-1a39d6fcd628/,Phil,,04/05/2018,9.0:35,9.0000000,48.010791000000,-4.552339000000,,Esquibien - Finistère,44387,observation-86a3a300-27c5-4b4c-90b8-1a39d6fcd628,https://biolit.fr/observations/observation-86a3a300-27c5-4b4c-90b8-1a39d6fcd628/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100907.JPG,,FALSE, +N1,59725,sortie-48d57038-0d99-4d05-bae4-10bc2bbde68a,https://biolit.fr/sorties/sortie-48d57038-0d99-4d05-bae4-10bc2bbde68a/,Phil,,04/05/2018,9.0:35,9.0000000,48.010885000000,-4.552296000000,,Esquibien - Finistère,44389,observation-48d57038-0d99-4d05-bae4-10bc2bbde68a,https://biolit.fr/observations/observation-48d57038-0d99-4d05-bae4-10bc2bbde68a/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/P1100905.JPG,,TRUE, +N1,59730,sortie-dd4f4c17-0747-4cb9-bb07-681a7d574b2e,https://biolit.fr/sorties/sortie-dd4f4c17-0747-4cb9-bb07-681a7d574b2e/,Phil,,03/03/2018,12.0000000,12.0:45,47.862831000000,-4.068441000000,,Fouesnant - Finistère,44398,observation-dd4f4c17-0747-4cb9-bb07-681a7d574b2e,https://biolit.fr/observations/observation-dd4f4c17-0747-4cb9-bb07-681a7d574b2e/,Verruca stroemia,Balane irrégulière,,https://biolit.fr/wp-content/uploads/2023/07/P1100739.JPG,,TRUE, +N1,59731,sortie-c2987ce3-e648-4ca6-922f-cfba305d5e45,https://biolit.fr/sorties/sortie-c2987ce3-e648-4ca6-922f-cfba305d5e45/,Phil,,03/03/2018,12.0000000,12.0:45,47.863135000000,-4.068662000000,,Fouesnant - Finistère,44400,observation-c2987ce3-e648-4ca6-922f-cfba305d5e45,https://biolit.fr/observations/observation-c2987ce3-e648-4ca6-922f-cfba305d5e45/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100740.JPG,,FALSE, +N1,59732,sortie-2b1c150b-b671-4323-bbf5-2e5167dddc22,https://biolit.fr/sorties/sortie-2b1c150b-b671-4323-bbf5-2e5167dddc22/,Phil,,03/03/2018,12.0000000,12.0:45,47.863195000000,-4.068383000000,,Fouesnant - Finistère,44402,observation-2b1c150b-b671-4323-bbf5-2e5167dddc22,https://biolit.fr/observations/observation-2b1c150b-b671-4323-bbf5-2e5167dddc22/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100741.JPG,,FALSE, +N1,59733,sortie-495d3190-26bc-4f5c-8750-2948e6436d14,https://biolit.fr/sorties/sortie-495d3190-26bc-4f5c-8750-2948e6436d14/,Phil,,03/03/2018,12.0000000,12.0:45,47.862703000000,-4.068259000000,,Fouesnant - Finistère,44404,observation-495d3190-26bc-4f5c-8750-2948e6436d14,https://biolit.fr/observations/observation-495d3190-26bc-4f5c-8750-2948e6436d14/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100737.JPG,,FALSE, +N1,59734,sortie-910b1a52-570f-47c4-8c86-09e059ceaf79,https://biolit.fr/sorties/sortie-910b1a52-570f-47c4-8c86-09e059ceaf79/,Phil,,03/03/2018,12.0000000,12.0:45,47.862559000000,-4.067610000000,,Fouesnant - Finistère,44406,observation-910b1a52-570f-47c4-8c86-09e059ceaf79,https://biolit.fr/observations/observation-910b1a52-570f-47c4-8c86-09e059ceaf79/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1100736.JPG,,TRUE, +N1,59735,sortie-26dcff74-a780-444b-9318-1627b60a866d,https://biolit.fr/sorties/sortie-26dcff74-a780-444b-9318-1627b60a866d/,Phil,,03/03/2018,12.0000000,12.0:45,47.862557000000,-4.067988000000,,Fouesnant - Finistère,44408,observation-26dcff74-a780-444b-9318-1627b60a866d,https://biolit.fr/observations/observation-26dcff74-a780-444b-9318-1627b60a866d/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1100735.JPG,,TRUE, +N1,59736,sortie-972b072b-76b1-4855-9575-deed43ce3afb,https://biolit.fr/sorties/sortie-972b072b-76b1-4855-9575-deed43ce3afb/,Phil,,03/03/2018,12.0:35,12.0000000,47.863014000000,-4.06681700000,,Fouesnant - Finistère,44410,observation-972b072b-76b1-4855-9575-deed43ce3afb,https://biolit.fr/observations/observation-972b072b-76b1-4855-9575-deed43ce3afb/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100733.JPG,,FALSE, +N1,59737,sortie-9bdf972a-40b7-42ae-bdae-56995a396098,https://biolit.fr/sorties/sortie-9bdf972a-40b7-42ae-bdae-56995a396098/,Phil,,03/03/2018,12.0:35,12.0000000,47.863048000000,-4.066842000000,,Fouesnant - Finistère,44412,observation-9bdf972a-40b7-42ae-bdae-56995a396098,https://biolit.fr/observations/observation-9bdf972a-40b7-42ae-bdae-56995a396098/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100732.JPG,,FALSE, +N1,59738,sortie-00a7a336-c19f-4027-9636-a44e55180222,https://biolit.fr/sorties/sortie-00a7a336-c19f-4027-9636-a44e55180222/,Phil,,03/03/2018,12.0:35,12.0000000,47.863052000000,-4.066872000000,,Fouesnant - Finistère,44414,observation-00a7a336-c19f-4027-9636-a44e55180222,https://biolit.fr/observations/observation-00a7a336-c19f-4027-9636-a44e55180222/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100731.JPG,,FALSE, +N1,59739,sortie-c816536e-b820-401a-89e3-837b44846793,https://biolit.fr/sorties/sortie-c816536e-b820-401a-89e3-837b44846793/,Phil,,9/19/2017 0:00,14.0000000,14.000005,48.060754000000,-4.67232100000,,Cléden-Cap-Sizun - Finistère,44416,observation-c816536e-b820-401a-89e3-837b44846793,https://biolit.fr/observations/observation-c816536e-b820-401a-89e3-837b44846793/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1080480.JPG,,TRUE, +N1,59740,sortie-2013fefb-f1a2-48d9-af64-7d06b98d2660,https://biolit.fr/sorties/sortie-2013fefb-f1a2-48d9-af64-7d06b98d2660/,CarpeDiem,,04/01/2018,15.0000000,16.0000000,43.164882000000,5.606076000000,,Anse du petit Mugel,44418,observation-2013fefb-f1a2-48d9-af64-7d06b98d2660,https://biolit.fr/observations/observation-2013fefb-f1a2-48d9-af64-7d06b98d2660/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/gelatineux-scaled.jpg,,TRUE, +N1,59740,sortie-2013fefb-f1a2-48d9-af64-7d06b98d2660,https://biolit.fr/sorties/sortie-2013fefb-f1a2-48d9-af64-7d06b98d2660/,CarpeDiem,,04/01/2018,15.0000000,16.0000000,43.164882000000,5.606076000000,,Anse du petit Mugel,44420,observation-2013fefb-f1a2-48d9-af64-7d06b98d2660-2,https://biolit.fr/observations/observation-2013fefb-f1a2-48d9-af64-7d06b98d2660-2/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/gelatineux 2-scaled.jpg,,TRUE, +N1,59740,sortie-2013fefb-f1a2-48d9-af64-7d06b98d2660,https://biolit.fr/sorties/sortie-2013fefb-f1a2-48d9-af64-7d06b98d2660/,CarpeDiem,,04/01/2018,15.0000000,16.0000000,43.164882000000,5.606076000000,,Anse du petit Mugel,44422,observation-2013fefb-f1a2-48d9-af64-7d06b98d2660-3,https://biolit.fr/observations/observation-2013fefb-f1a2-48d9-af64-7d06b98d2660-3/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/gelatineux 3-scaled.jpg,,TRUE, +N1,59740,sortie-2013fefb-f1a2-48d9-af64-7d06b98d2660,https://biolit.fr/sorties/sortie-2013fefb-f1a2-48d9-af64-7d06b98d2660/,CarpeDiem,,04/01/2018,15.0000000,16.0000000,43.164882000000,5.606076000000,,Anse du petit Mugel,44424,observation-2013fefb-f1a2-48d9-af64-7d06b98d2660-4,https://biolit.fr/observations/observation-2013fefb-f1a2-48d9-af64-7d06b98d2660-4/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Algue à crochets-scaled.jpg,,TRUE, +N1,59740,sortie-2013fefb-f1a2-48d9-af64-7d06b98d2660,https://biolit.fr/sorties/sortie-2013fefb-f1a2-48d9-af64-7d06b98d2660/,CarpeDiem,,04/01/2018,15.0000000,16.0000000,43.164882000000,5.606076000000,,Anse du petit Mugel,44426,observation-2013fefb-f1a2-48d9-af64-7d06b98d2660-5,https://biolit.fr/observations/observation-2013fefb-f1a2-48d9-af64-7d06b98d2660-5/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/beret basque_0-scaled.jpg,,TRUE, +N1,59740,sortie-2013fefb-f1a2-48d9-af64-7d06b98d2660,https://biolit.fr/sorties/sortie-2013fefb-f1a2-48d9-af64-7d06b98d2660/,CarpeDiem,,04/01/2018,15.0000000,16.0000000,43.164882000000,5.606076000000,,Anse du petit Mugel,44428,observation-2013fefb-f1a2-48d9-af64-7d06b98d2660-6,https://biolit.fr/observations/observation-2013fefb-f1a2-48d9-af64-7d06b98d2660-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Dictyote spatulée_Dictyota spiralis-scaled.jpg,,FALSE, +N1,59740,sortie-2013fefb-f1a2-48d9-af64-7d06b98d2660,https://biolit.fr/sorties/sortie-2013fefb-f1a2-48d9-af64-7d06b98d2660/,CarpeDiem,,04/01/2018,15.0000000,16.0000000,43.164882000000,5.606076000000,,Anse du petit Mugel,44430,observation-2013fefb-f1a2-48d9-af64-7d06b98d2660-7,https://biolit.fr/observations/observation-2013fefb-f1a2-48d9-af64-7d06b98d2660-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/eponge_1-scaled.jpg,,FALSE, +N1,59740,sortie-2013fefb-f1a2-48d9-af64-7d06b98d2660,https://biolit.fr/sorties/sortie-2013fefb-f1a2-48d9-af64-7d06b98d2660/,CarpeDiem,,04/01/2018,15.0000000,16.0000000,43.164882000000,5.606076000000,,Anse du petit Mugel,44432,observation-2013fefb-f1a2-48d9-af64-7d06b98d2660-8,https://biolit.fr/observations/observation-2013fefb-f1a2-48d9-af64-7d06b98d2660-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Posidonie_0-scaled.jpg,,FALSE, +N1,59741,sortie-d8e02ad5-a218-4b2d-9770-815993724069,https://biolit.fr/sorties/sortie-d8e02ad5-a218-4b2d-9770-815993724069/,Phil,,04/05/2018,9.0:25,9.0000000,48.011136000000,-4.550687000000,,Esquibien - Finistère,44434,observation-d8e02ad5-a218-4b2d-9770-815993724069,https://biolit.fr/observations/observation-d8e02ad5-a218-4b2d-9770-815993724069/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/P1100885.JPG,,TRUE, +N1,59742,sortie-2355551a-1b04-40d6-be3b-af27babc7d90,https://biolit.fr/sorties/sortie-2355551a-1b04-40d6-be3b-af27babc7d90/,Phil,,04/05/2018,9.0:25,9.0000000,48.011070000000,-4.550691000000,,Esquibien - Finistère,44436,observation-2355551a-1b04-40d6-be3b-af27babc7d90,https://biolit.fr/observations/observation-2355551a-1b04-40d6-be3b-af27babc7d90/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100884.JPG,,FALSE, +N1,59744,sortie-08671927-25f6-48b1-aa5a-016078afc544,https://biolit.fr/sorties/sortie-08671927-25f6-48b1-aa5a-016078afc544/,Phil,,04/10/2018,11.0000000,11.0:15,47.870687000000,-3.911519000000,,Concarneau - Finistère,44440,observation-08671927-25f6-48b1-aa5a-016078afc544,https://biolit.fr/observations/observation-08671927-25f6-48b1-aa5a-016078afc544/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180410_111121.jpg,,TRUE, +N1,59745,sortie-22f158ed-f858-4cb8-ad88-1a8f1421be4b,https://biolit.fr/sorties/sortie-22f158ed-f858-4cb8-ad88-1a8f1421be4b/,Phil,,04/10/2018,11.0000000,11.0000000,47.870768000000,-3.911602000000,,Concarneau - Finistère,44442,observation-22f158ed-f858-4cb8-ad88-1a8f1421be4b,https://biolit.fr/observations/observation-22f158ed-f858-4cb8-ad88-1a8f1421be4b/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/20180410_110913.jpg,,TRUE, +N1,59746,sortie-e7848508-b3a5-425b-aab5-d6a61baf2f28,https://biolit.fr/sorties/sortie-e7848508-b3a5-425b-aab5-d6a61baf2f28/,Phil,,04/10/2018,11.0000000,11.0000000,47.870764000000,-3.911598000000,,Concarneau - Finistère,44444,observation-e7848508-b3a5-425b-aab5-d6a61baf2f28,https://biolit.fr/observations/observation-e7848508-b3a5-425b-aab5-d6a61baf2f28/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/20180410_110921.jpg,,TRUE, +N1,59747,sortie-17db7a17-f05a-4cd7-a425-4ec84b2dbd70,https://biolit.fr/sorties/sortie-17db7a17-f05a-4cd7-a425-4ec84b2dbd70/,Phil,,04/10/2018,11.0000000,11.0:15,47.870659000000,-3.911539000000,,Concarneau - Finistère,44446,observation-17db7a17-f05a-4cd7-a425-4ec84b2dbd70,https://biolit.fr/observations/observation-17db7a17-f05a-4cd7-a425-4ec84b2dbd70/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180410_111158.jpg,,FALSE, +N1,59748,sortie-5ecb3804-569f-4514-8c26-c62aeb0d9a98,https://biolit.fr/sorties/sortie-5ecb3804-569f-4514-8c26-c62aeb0d9a98/,Phil,,04/10/2018,11.000005,11.0000000,47.87011800000,-3.911907000000,,Concarneau - Finistère,44448,observation-5ecb3804-569f-4514-8c26-c62aeb0d9a98,https://biolit.fr/observations/observation-5ecb3804-569f-4514-8c26-c62aeb0d9a98/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180410_110649.jpg,,TRUE, +N1,59749,sortie-ec6fc276-daa4-4cca-85c8-b71ced4530e4,https://biolit.fr/sorties/sortie-ec6fc276-daa4-4cca-85c8-b71ced4530e4/,Phil,,04/10/2018,11.000005,11.000005,47.870024000000,-3.911918000000,,Concarneau - Finistère,44450,observation-ec6fc276-daa4-4cca-85c8-b71ced4530e4,https://biolit.fr/observations/observation-ec6fc276-daa4-4cca-85c8-b71ced4530e4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180410_110451.jpg,,TRUE, +N1,59750,sortie-1a3ff0d4-a0da-4c7b-8011-47fb5013845f,https://biolit.fr/sorties/sortie-1a3ff0d4-a0da-4c7b-8011-47fb5013845f/,Phil,,04/10/2018,11.000005,11.000005,47.869801000000,-3.911950000000,,Concarneau - Finistère,44452,observation-1a3ff0d4-a0da-4c7b-8011-47fb5013845f,https://biolit.fr/observations/observation-1a3ff0d4-a0da-4c7b-8011-47fb5013845f/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180410_110408.jpg,,FALSE, +N1,59751,sortie-b7244658-5029-476f-8b4d-0944202d9802,https://biolit.fr/sorties/sortie-b7244658-5029-476f-8b4d-0944202d9802/,Phil,,04/10/2018,11.000005,11.000005,47.869884000000,-3.911972000000,,Concarneau - Finistère,44454,observation-b7244658-5029-476f-8b4d-0944202d9802,https://biolit.fr/observations/observation-b7244658-5029-476f-8b4d-0944202d9802/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180410_110347.jpg,,FALSE, +N1,59752,sortie-19665c59-c508-480a-99d9-49c5867b3765,https://biolit.fr/sorties/sortie-19665c59-c508-480a-99d9-49c5867b3765/,Phil,,04/10/2018,11.000005,11.000005,47.869995000000,-3.91188600000,,Concarneau - Finistère,44456,observation-19665c59-c508-480a-99d9-49c5867b3765,https://biolit.fr/observations/observation-19665c59-c508-480a-99d9-49c5867b3765/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180410_110343.jpg,,FALSE, +N1,59753,sortie-fd0942af-6fe1-4d22-b0db-a8906c80677a,https://biolit.fr/sorties/sortie-fd0942af-6fe1-4d22-b0db-a8906c80677a/,Phil,,04/10/2018,11.0000000,11.000005,47.870131000000,-3.91188600000,,Concarneau - Finistère,44458,observation-fd0942af-6fe1-4d22-b0db-a8906c80677a,https://biolit.fr/observations/observation-fd0942af-6fe1-4d22-b0db-a8906c80677a/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180410_110314.jpg,,FALSE, +N1,59754,sortie-12169e86-f69b-4a42-8c19-d45f619fc7f7,https://biolit.fr/sorties/sortie-12169e86-f69b-4a42-8c19-d45f619fc7f7/,Phil,,04/10/2018,11.0000000,11.000005,47.870000000000,-3.911900000000,,Concarneau - Finistère,44460,observation-12169e86-f69b-4a42-8c19-d45f619fc7f7,https://biolit.fr/observations/observation-12169e86-f69b-4a42-8c19-d45f619fc7f7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180410_110240.jpg,,FALSE, +N1,59755,sortie-4320a253-2478-4a71-99f8-bcabb80f145e,https://biolit.fr/sorties/sortie-4320a253-2478-4a71-99f8-bcabb80f145e/,Phil,,04/10/2018,11.0000000,11.000005,47.870121000000,-3.911843000000,,Concarneau - Finistère,44462,observation-4320a253-2478-4a71-99f8-bcabb80f145e,https://biolit.fr/observations/observation-4320a253-2478-4a71-99f8-bcabb80f145e/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180410_110233.jpg,,TRUE, +N1,59756,sortie-5770bb0f-3ffb-421e-9d87-4421dba01bbf,https://biolit.fr/sorties/sortie-5770bb0f-3ffb-421e-9d87-4421dba01bbf/,Phil,,04/05/2018,9.0:35,9.0000000,48.010465000000,-4.552352000000,,Esquibien - Finistère,44464,observation-5770bb0f-3ffb-421e-9d87-4421dba01bbf,https://biolit.fr/observations/observation-5770bb0f-3ffb-421e-9d87-4421dba01bbf/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100903.JPG,,FALSE, +N1,59757,sortie-19a7f138-cc7c-470f-ba8b-30154b421f7a,https://biolit.fr/sorties/sortie-19a7f138-cc7c-470f-ba8b-30154b421f7a/,Phil,,04/05/2018,9.0:35,9.0000000,48.010476000000,-4.552511000000,,Esquibien - Finistère,44466,observation-19a7f138-cc7c-470f-ba8b-30154b421f7a,https://biolit.fr/observations/observation-19a7f138-cc7c-470f-ba8b-30154b421f7a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100902.JPG,,FALSE, +N1,59758,sortie-0f08f0d3-415a-4b22-9506-e629f52c83f8,https://biolit.fr/sorties/sortie-0f08f0d3-415a-4b22-9506-e629f52c83f8/,Phil,,04/05/2018,9.0000000,9.0000000,48.010550000000,-4.552404000000,,Esquibien - Finistère,44468,observation-0f08f0d3-415a-4b22-9506-e629f52c83f8,https://biolit.fr/observations/observation-0f08f0d3-415a-4b22-9506-e629f52c83f8/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1100901.JPG,,TRUE, +N1,59759,sortie-685e3265-855c-487e-9393-a41c25d0c510,https://biolit.fr/sorties/sortie-685e3265-855c-487e-9393-a41c25d0c510/,Phil,,04/05/2018,9.0000000,9.0000000,48.010599000000,-4.552511000000,,Esquibien - Finistère,44470,observation-685e3265-855c-487e-9393-a41c25d0c510,https://biolit.fr/observations/observation-685e3265-855c-487e-9393-a41c25d0c510/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100899.JPG,,FALSE, +N1,59760,sortie-71eca2c4-b18f-4014-816d-ed588113abc5,https://biolit.fr/sorties/sortie-71eca2c4-b18f-4014-816d-ed588113abc5/,Phil,,04/05/2018,9.0000000,9.0:35,48.01064800000,-4.552425000000,,Esquibien - Finistère,44472,observation-71eca2c4-b18f-4014-816d-ed588113abc5,https://biolit.fr/observations/observation-71eca2c4-b18f-4014-816d-ed588113abc5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100895.JPG,,FALSE, +N1,59761,sortie-b55bf72d-d0a8-4bf3-a5d2-04e02487f587,https://biolit.fr/sorties/sortie-b55bf72d-d0a8-4bf3-a5d2-04e02487f587/,Phil,,04/05/2018,9.0000000,9.0:35,48.010738000000,-4.552532000000,,Esquibien - Finistère,44474,observation-b55bf72d-d0a8-4bf3-a5d2-04e02487f587,https://biolit.fr/observations/observation-b55bf72d-d0a8-4bf3-a5d2-04e02487f587/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100897.JPG,,FALSE, +N1,59762,sortie-cf92aab5-b60f-4ec4-8a69-7f2b6ad175ad,https://biolit.fr/sorties/sortie-cf92aab5-b60f-4ec4-8a69-7f2b6ad175ad/,Phil,,04/10/2018,11.0000000,11.000005,47.870157000000,-3.911845000000,,Concarneau - Finistère,44476,observation-cf92aab5-b60f-4ec4-8a69-7f2b6ad175ad,https://biolit.fr/observations/observation-cf92aab5-b60f-4ec4-8a69-7f2b6ad175ad/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180410_110203.jpg,,FALSE, +N1,59763,sortie-d44e353f-24d2-4ec4-bfd9-941e10a877f3,https://biolit.fr/sorties/sortie-d44e353f-24d2-4ec4-bfd9-941e10a877f3/,Phil,,04/10/2018,11.0000000,11.000005,47.87014900000,-3.911778000000,,Concarneau - Finistère,44478,observation-d44e353f-24d2-4ec4-bfd9-941e10a877f3,https://biolit.fr/observations/observation-d44e353f-24d2-4ec4-bfd9-941e10a877f3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180410_110151.jpg,,FALSE, +N1,59764,sortie-6298bb87-6bcf-4c6b-b45c-9a920fa0d074,https://biolit.fr/sorties/sortie-6298bb87-6bcf-4c6b-b45c-9a920fa0d074/,Phil,,04/10/2018,11.0000000,11.000005,47.870321000000,-3.9116090000,,Concarneau - Finistère,44480,observation-6298bb87-6bcf-4c6b-b45c-9a920fa0d074,https://biolit.fr/observations/observation-6298bb87-6bcf-4c6b-b45c-9a920fa0d074/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180410_110006.jpg,,FALSE, +N1,59765,sortie-3526a52a-42f4-4f01-8af8-930b868e0d02,https://biolit.fr/sorties/sortie-3526a52a-42f4-4f01-8af8-930b868e0d02/,Phil,,04/05/2018,9.0000000,9.0:35,48.01094900000,-4.552268000000,,Esquibien - Finistère,44482,observation-3526a52a-42f4-4f01-8af8-930b868e0d02,https://biolit.fr/observations/observation-3526a52a-42f4-4f01-8af8-930b868e0d02/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100890.JPG,,FALSE, +N1,59766,sortie-4566ae35-2b53-4a1c-9ffd-72ad96c019c3,https://biolit.fr/sorties/sortie-4566ae35-2b53-4a1c-9ffd-72ad96c019c3/,Phil,,04/05/2018,9.0000000,9.0:35,48.010907000000,-4.552290000000,,Esquibien - Finistère,44484,observation-4566ae35-2b53-4a1c-9ffd-72ad96c019c3,https://biolit.fr/observations/observation-4566ae35-2b53-4a1c-9ffd-72ad96c019c3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100889.JPG,,FALSE, +N1,59767,sortie-a9a78bbe-2204-4467-bf83-b1ad7e5782c9,https://biolit.fr/sorties/sortie-a9a78bbe-2204-4467-bf83-b1ad7e5782c9/,Phil,,04/05/2018,9.0000000,9.0:35,48.010953000000,-4.552236000000,,Esquibien - Finistère,44486,observation-a9a78bbe-2204-4467-bf83-b1ad7e5782c9,https://biolit.fr/observations/observation-a9a78bbe-2204-4467-bf83-b1ad7e5782c9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100892.JPG,,FALSE, +N1,59768,sortie-4bec8f3d-9159-4831-ba9e-c8741dc8b459,https://biolit.fr/sorties/sortie-4bec8f3d-9159-4831-ba9e-c8741dc8b459/,Phil,,04/05/2018,9.0000000,9.0:35,48.011193000000,-4.551975000000,,Esquibien - Finistère,44488,observation-4bec8f3d-9159-4831-ba9e-c8741dc8b459,https://biolit.fr/observations/observation-4bec8f3d-9159-4831-ba9e-c8741dc8b459/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100888.JPG,,FALSE, +N1,59769,sortie-f7c76759-4383-4fc0-8662-bf644d40f168,https://biolit.fr/sorties/sortie-f7c76759-4383-4fc0-8662-bf644d40f168/,Phil,,04/05/2018,9.0:25,9.0000000,48.01118200000,-4.550515000000,,Esquibien - Finistère,44490,observation-f7c76759-4383-4fc0-8662-bf644d40f168,https://biolit.fr/observations/observation-f7c76759-4383-4fc0-8662-bf644d40f168/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100883.JPG,,FALSE, +N1,59770,sortie-78a2c96f-b744-40d7-8357-16872ed551e0,https://biolit.fr/sorties/sortie-78a2c96f-b744-40d7-8357-16872ed551e0/,Phil,,04/05/2018,9.0:25,9.0000000,48.011089000000,-4.550043000000,,Esquibien - Finistère,44492,observation-78a2c96f-b744-40d7-8357-16872ed551e0,https://biolit.fr/observations/observation-78a2c96f-b744-40d7-8357-16872ed551e0/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100880.JPG,,FALSE, +N1,59771,sortie-a8805825-543b-458d-9933-0b400b67fb4c,https://biolit.fr/sorties/sortie-a8805825-543b-458d-9933-0b400b67fb4c/,Observe la nature,,03/03/2018,13.0:55,13.0:55,48.81551000000,-3.425874000000,,Pros ar goret Perros Guirec,44494,observation-a8805825-543b-458d-9933-0b400b67fb4c,https://biolit.fr/observations/observation-a8805825-543b-458d-9933-0b400b67fb4c/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3030459-scaled.jpg,,FALSE, +N1,59771,sortie-a8805825-543b-458d-9933-0b400b67fb4c,https://biolit.fr/sorties/sortie-a8805825-543b-458d-9933-0b400b67fb4c/,Observe la nature,,03/03/2018,13.0:55,13.0:55,48.81551000000,-3.425874000000,,Pros ar goret Perros Guirec,44496,observation-a8805825-543b-458d-9933-0b400b67fb4c-2,https://biolit.fr/observations/observation-a8805825-543b-458d-9933-0b400b67fb4c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3030465-scaled.jpg,,FALSE, +N1,59772,sortie-de692dd4-2064-40aa-896c-0446f95a3e65,https://biolit.fr/sorties/sortie-de692dd4-2064-40aa-896c-0446f95a3e65/,Phil,,3/31/2018 0:00,13.0:15,13.0:15,47.897038000000,-3.974720000000,,La Forêt-Fouesnant - Finistère,44498,observation-de692dd4-2064-40aa-896c-0446f95a3e65,https://biolit.fr/observations/observation-de692dd4-2064-40aa-896c-0446f95a3e65/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180331_131434.jpg,,FALSE, +N1,59773,sortie-7057a366-0e16-4b1a-8f2f-27a7e4e5b5ce,https://biolit.fr/sorties/sortie-7057a366-0e16-4b1a-8f2f-27a7e4e5b5ce/,Phil,,3/31/2018 0:00,13.0:15,13.0000000,47.896964000000,-3.974604000000,,La Forêt-Fouesnant - Finistère,44500,observation-7057a366-0e16-4b1a-8f2f-27a7e4e5b5ce,https://biolit.fr/observations/observation-7057a366-0e16-4b1a-8f2f-27a7e4e5b5ce/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180331_131608.jpg,,FALSE, +N1,59774,sortie-6ab6e5b0-b1f5-4c0a-a2bb-f378e55674ea,https://biolit.fr/sorties/sortie-6ab6e5b0-b1f5-4c0a-a2bb-f378e55674ea/,Phil,,3/31/2018 0:00,13.0000000,13.0:15,47.896578000000,-3.974463000000,,La Forêt-Fouesnant - Finistère,44502,observation-6ab6e5b0-b1f5-4c0a-a2bb-f378e55674ea,https://biolit.fr/observations/observation-6ab6e5b0-b1f5-4c0a-a2bb-f378e55674ea/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180331_131341.jpg,,FALSE, +N1,59775,sortie-5dee5333-4316-42be-9c0c-767eb7426ec1,https://biolit.fr/sorties/sortie-5dee5333-4316-42be-9c0c-767eb7426ec1/,Phil,,3/31/2018 0:00,13.0000000,13.0:15,47.896267000000,-3.974175000000,,La Forêt-Fouesnant - Finistère,44504,observation-5dee5333-4316-42be-9c0c-767eb7426ec1,https://biolit.fr/observations/observation-5dee5333-4316-42be-9c0c-767eb7426ec1/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180331_131324.jpg,,FALSE, +N1,59776,sortie-509e4474-c0d9-4f84-9272-a2ae0f510878,https://biolit.fr/sorties/sortie-509e4474-c0d9-4f84-9272-a2ae0f510878/,Phil,,3/31/2018 0:00,13.0000000,13.0:15,47.896367000000,-3.974441000000,,La Forêt-Fouesnant - Finistère,44506,observation-509e4474-c0d9-4f84-9272-a2ae0f510878,https://biolit.fr/observations/observation-509e4474-c0d9-4f84-9272-a2ae0f510878/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180331_131253.jpg,,FALSE, +N1,59777,sortie-75935f04-a54d-42cd-9f82-bdd8df6bd52c,https://biolit.fr/sorties/sortie-75935f04-a54d-42cd-9f82-bdd8df6bd52c/,Phil,,3/31/2018 0:00,13.0000000,13.0:15,47.896733000000,-3.974132000000,,La Forêt-Fouesnant - Finistère,44508,observation-75935f04-a54d-42cd-9f82-bdd8df6bd52c,https://biolit.fr/observations/observation-75935f04-a54d-42cd-9f82-bdd8df6bd52c/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180331_131223.jpg,,FALSE, +N1,59778,sortie-5481b32e-6fea-467a-b1f3-01817ad912ee,https://biolit.fr/sorties/sortie-5481b32e-6fea-467a-b1f3-01817ad912ee/,Phil,,3/31/2018 0:00,13.0000000,13.0:15,47.896835000000,-3.974441000000,,La Forêt-Fouesnant - Finistère,44510,observation-5481b32e-6fea-467a-b1f3-01817ad912ee,https://biolit.fr/observations/observation-5481b32e-6fea-467a-b1f3-01817ad912ee/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180331_131205.jpg,,FALSE, +N1,59779,sortie-0bcb7326-86ea-4ef4-af9d-150e4f2b06be,https://biolit.fr/sorties/sortie-0bcb7326-86ea-4ef4-af9d-150e4f2b06be/,Phil,,04/04/2018,17.0:15,17.0:15,48.216702000000,-4.375622000000,,Telgruc-sur-Mer - Finistère,44512,observation-0bcb7326-86ea-4ef4-af9d-150e4f2b06be,https://biolit.fr/observations/observation-0bcb7326-86ea-4ef4-af9d-150e4f2b06be/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100879.JPG,,FALSE, +N1,59780,sortie-046a2e04-3598-4380-b536-87e644028630,https://biolit.fr/sorties/sortie-046a2e04-3598-4380-b536-87e644028630/,Phil,,04/04/2018,17.000005,17.0000000,48.218308000000,-4.377598000000,,Telgruc-sur-Mer - Finistère,44514,observation-046a2e04-3598-4380-b536-87e644028630,https://biolit.fr/observations/observation-046a2e04-3598-4380-b536-87e644028630/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100877.JPG,,FALSE, +N1,59781,sortie-6862f823-9485-46ac-91a4-451cccf73f31,https://biolit.fr/sorties/sortie-6862f823-9485-46ac-91a4-451cccf73f31/,Phil,,04/04/2018,17.000005,17.0000000,48.218493000000,-4.377631000000,,Telgruc-sur-Mer - Finistère,44516,observation-6862f823-9485-46ac-91a4-451cccf73f31,https://biolit.fr/observations/observation-6862f823-9485-46ac-91a4-451cccf73f31/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100876.JPG,,FALSE, +N1,59782,sortie-e5b61ea0-288f-4a33-b1ae-bb1f555e6703,https://biolit.fr/sorties/sortie-e5b61ea0-288f-4a33-b1ae-bb1f555e6703/,Phil,,04/04/2018,17.000005,17.0000000,48.218668000000,-4.378266000000,,Telgruc-sur-Mer - Finistère,44518,observation-e5b61ea0-288f-4a33-b1ae-bb1f555e6703,https://biolit.fr/observations/observation-e5b61ea0-288f-4a33-b1ae-bb1f555e6703/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100871.JPG,,FALSE, +N1,59783,sortie-c99fe6fc-c4cc-428a-ba36-ee5c2f03042c,https://biolit.fr/sorties/sortie-c99fe6fc-c4cc-428a-ba36-ee5c2f03042c/,Phil,,04/04/2018,17.0000000,17.000005,48.218417000000,-4.380420000000,,Telgruc-sur-Mer - Finistère,44520,observation-c99fe6fc-c4cc-428a-ba36-ee5c2f03042c,https://biolit.fr/observations/observation-c99fe6fc-c4cc-428a-ba36-ee5c2f03042c/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100870.JPG,,FALSE, +N1,59784,sortie-629ecbef-3ca0-4bd4-bb42-bc8c9b7b14cb,https://biolit.fr/sorties/sortie-629ecbef-3ca0-4bd4-bb42-bc8c9b7b14cb/,Phil,,04/04/2018,17.0000000,17.000005,48.218839000000,-4.378940000000,,Telgruc sur Mer - Finistère,44522,observation-629ecbef-3ca0-4bd4-bb42-bc8c9b7b14cb,https://biolit.fr/observations/observation-629ecbef-3ca0-4bd4-bb42-bc8c9b7b14cb/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100861.JPG,,FALSE, +N1,59785,sortie-a5fa3baa-1282-419a-bc2a-66417712350e,https://biolit.fr/sorties/sortie-a5fa3baa-1282-419a-bc2a-66417712350e/,Phil,,04/04/2018,17.0000000,17.000005,48.218767000000,-4.378747000000,,Telgruc sur Mer - Finistère,44524,observation-a5fa3baa-1282-419a-bc2a-66417712350e,https://biolit.fr/observations/observation-a5fa3baa-1282-419a-bc2a-66417712350e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100865.JPG,,FALSE, +N1,59786,sortie-082f7456-6595-4378-905d-3c367c91e188,https://biolit.fr/sorties/sortie-082f7456-6595-4378-905d-3c367c91e188/,Phil,,04/04/2018,17.0000000,17.000005,48.218826000000,-4.378729000000,,Relgruc sur Mer - Finistère,44526,observation-082f7456-6595-4378-905d-3c367c91e188,https://biolit.fr/observations/observation-082f7456-6595-4378-905d-3c367c91e188/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100868.JPG,,FALSE, +N1,59787,sortie-ed0faacd-c9c8-460f-a2c4-b6ab7c3be90d,https://biolit.fr/sorties/sortie-ed0faacd-c9c8-460f-a2c4-b6ab7c3be90d/,Phil,,2/26/2018 0:00,12.0:15,12.0:15,48.110247000000,-4.28493400000,,Plonévez-Porzay - Finistère,44528,observation-ed0faacd-c9c8-460f-a2c4-b6ab7c3be90d,https://biolit.fr/observations/observation-ed0faacd-c9c8-460f-a2c4-b6ab7c3be90d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100543.JPG,,FALSE, +N1,59788,sortie-1f204b32-b772-48e9-92eb-5d14bbd7e667,https://biolit.fr/sorties/sortie-1f204b32-b772-48e9-92eb-5d14bbd7e667/,Phil,,2/26/2018 0:00,12.0:15,12.0:15,48.110516000000,-4.284934000000,,Plonévez-Porzay - Finistère,44530,observation-1f204b32-b772-48e9-92eb-5d14bbd7e667,https://biolit.fr/observations/observation-1f204b32-b772-48e9-92eb-5d14bbd7e667/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100544.JPG,,FALSE, +N1,59789,sortie-7fb18630-9ac2-4b5e-8bde-950fa4f113db,https://biolit.fr/sorties/sortie-7fb18630-9ac2-4b5e-8bde-950fa4f113db/,Phil,,2/26/2018 0:00,12.0:15,12.0:15,48.11043000000,-4.284676000000,,Plonévez-Porzay - Finistère,44532,observation-7fb18630-9ac2-4b5e-8bde-950fa4f113db,https://biolit.fr/observations/observation-7fb18630-9ac2-4b5e-8bde-950fa4f113db/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100545.JPG,,FALSE, +N1,59790,sortie-9d18ed2c-cc10-4db6-9b5e-c67d1e41c1e3,https://biolit.fr/sorties/sortie-9d18ed2c-cc10-4db6-9b5e-c67d1e41c1e3/,Phil,,2/26/2018 0:00,12.0:15,12.0000000,48.110436000000,-4.284805000000,,Plonévez-Porzay - Finistère,44534,observation-9d18ed2c-cc10-4db6-9b5e-c67d1e41c1e3,https://biolit.fr/observations/observation-9d18ed2c-cc10-4db6-9b5e-c67d1e41c1e3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100546.JPG,,FALSE, +N1,59791,sortie-6a30d90d-ce42-48b0-9039-15dc4d026c13,https://biolit.fr/sorties/sortie-6a30d90d-ce42-48b0-9039-15dc4d026c13/,Phil,,2/26/2018 0:00,12.0:15,12.0000000,48.11014100000,-4.284762000000,,Plonévez-Porzay - Finistère,44536,observation-6a30d90d-ce42-48b0-9039-15dc4d026c13,https://biolit.fr/observations/observation-6a30d90d-ce42-48b0-9039-15dc4d026c13/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100558.JPG,,FALSE, +N1,59792,sortie-2d3e0747-facb-4d0b-afed-70edf3835b2a,https://biolit.fr/sorties/sortie-2d3e0747-facb-4d0b-afed-70edf3835b2a/,Phil,,2/26/2018 0:00,12.0000000,12.0:25,48.11079500000,-4.284324000000,,Plonévez-Porzay - Finistère,44538,observation-2d3e0747-facb-4d0b-afed-70edf3835b2a,https://biolit.fr/observations/observation-2d3e0747-facb-4d0b-afed-70edf3835b2a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100567.JPG,,FALSE, +N1,59793,sortie-fee28d91-bfe4-4003-9f55-11dbcf86a0de,https://biolit.fr/sorties/sortie-fee28d91-bfe4-4003-9f55-11dbcf86a0de/,Phil,,2/26/2018 0:00,12.0000000,12.0:25,48.111425000000,-4.284024000000,,Plonévez-Porzay - Finistère,,,,,,,,,, +N1,59794,sortie-da081fd9-ecc9-48f9-a4fc-c0286850df7e,https://biolit.fr/sorties/sortie-da081fd9-ecc9-48f9-a4fc-c0286850df7e/,Phil,,04/04/2018,17.0000000,17.0000000,48.218516000000,-4.37879000000,,Telgruc sur Mer - Finistère,44542,observation-da081fd9-ecc9-48f9-a4fc-c0286850df7e,https://biolit.fr/observations/observation-da081fd9-ecc9-48f9-a4fc-c0286850df7e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100860.JPG,,FALSE, +N1,59795,sortie-fe4fa5f4-c361-49a1-8a0e-994f228e4534,https://biolit.fr/sorties/sortie-fe4fa5f4-c361-49a1-8a0e-994f228e4534/,Phil,,04/04/2018,17.0000000,17.0000000,48.218526000000,-4.378719000000,,Telgruc sur Mer - Finistère,44544,observation-fe4fa5f4-c361-49a1-8a0e-994f228e4534,https://biolit.fr/observations/observation-fe4fa5f4-c361-49a1-8a0e-994f228e4534/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100857.JPG,,FALSE, +N1,59796,sortie-bbeb127a-9269-4c2e-bf90-a144abfa78e9,https://biolit.fr/sorties/sortie-bbeb127a-9269-4c2e-bf90-a144abfa78e9/,Phil,,04/04/2018,16.0:55,17.0000000,48.218384000000,-4.382566000000,,Telgruc sur Mer - Finistère,44546,observation-bbeb127a-9269-4c2e-bf90-a144abfa78e9,https://biolit.fr/observations/observation-bbeb127a-9269-4c2e-bf90-a144abfa78e9/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1100854.JPG,,TRUE, +N1,59797,sortie-4d05671d-33af-4a59-a024-eb5227311b32,https://biolit.fr/sorties/sortie-4d05671d-33af-4a59-a024-eb5227311b32/,Phil,,04/04/2018,16.0:55,17.0000000,48.218370000000,-4.381098000000,,Telgruc sur Mer - Finistère,,,,,,,,,, +N1,59798,sortie-df4cd779-7410-4f7d-bee9-d43d43857c28,https://biolit.fr/sorties/sortie-df4cd779-7410-4f7d-bee9-d43d43857c28/,Phil,,04/04/2018,16.0:55,17.0000000,48.218427000000,-4.381365000000,,Telgruc sur Mer - Finistère,44550,observation-df4cd779-7410-4f7d-bee9-d43d43857c28,https://biolit.fr/observations/observation-df4cd779-7410-4f7d-bee9-d43d43857c28/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1100852.JPG,,TRUE, +N1,59799,sortie-6d652794-3b53-4177-8254-bec14fd6f79d,https://biolit.fr/sorties/sortie-6d652794-3b53-4177-8254-bec14fd6f79d/,Phil,,04/04/2018,16.0:55,17.0000000,48.218516000000,-4.380785000000,,Telgruc sur Mer - Finistère,44552,observation-6d652794-3b53-4177-8254-bec14fd6f79d,https://biolit.fr/observations/observation-6d652794-3b53-4177-8254-bec14fd6f79d/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1100850.JPG,,TRUE, +N1,59800,sortie-f50b0996-35d1-4227-9757-2d23d0f5379b,https://biolit.fr/sorties/sortie-f50b0996-35d1-4227-9757-2d23d0f5379b/,Phil,,04/04/2018,16.0000000,16.0:55,48.217318000000,-4.377665000000,,Telgruc sur Mer - Finistère,44554,observation-f50b0996-35d1-4227-9757-2d23d0f5379b,https://biolit.fr/observations/observation-f50b0996-35d1-4227-9757-2d23d0f5379b/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100847.JPG,,FALSE, +N1,59801,sortie-f2b125eb-2f88-499c-aac5-58e2a6fd6b4f,https://biolit.fr/sorties/sortie-f2b125eb-2f88-499c-aac5-58e2a6fd6b4f/,Phil,,04/04/2018,16.0000000,16.0:55,48.217267000000,-4.377365000000,,Telgruc sur Mer - Finistère,44556,observation-f2b125eb-2f88-499c-aac5-58e2a6fd6b4f,https://biolit.fr/observations/observation-f2b125eb-2f88-499c-aac5-58e2a6fd6b4f/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100843.JPG,,FALSE, +N1,59802,sortie-6deb4bf1-5024-4fb0-9f25-eb5fbb6e2e92,https://biolit.fr/sorties/sortie-6deb4bf1-5024-4fb0-9f25-eb5fbb6e2e92/,Phil,,04/04/2018,16.0000000,16.0:55,48.217699000000,-4.377399000000,,Telgruc sur Mer - Finistère,44558,observation-6deb4bf1-5024-4fb0-9f25-eb5fbb6e2e92,https://biolit.fr/observations/observation-6deb4bf1-5024-4fb0-9f25-eb5fbb6e2e92/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100841.JPG,,FALSE, +N1,59803,sortie-36700c1d-e017-4519-b5bd-35b833bd7acd,https://biolit.fr/sorties/sortie-36700c1d-e017-4519-b5bd-35b833bd7acd/,Phil,,04/04/2018,16.0000000,16.0000000,48.217969000000,-4.37782800000,,Telgruc sur Mer - Finistère,44560,observation-36700c1d-e017-4519-b5bd-35b833bd7acd,https://biolit.fr/observations/observation-36700c1d-e017-4519-b5bd-35b833bd7acd/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/P1100838.JPG,,TRUE, +N1,59804,sortie-696a603b-e02d-4a25-af26-9b463594f976,https://biolit.fr/sorties/sortie-696a603b-e02d-4a25-af26-9b463594f976/,Phil,,04/04/2018,16.0000000,16.0000000,48.217719000000,-4.377497000000,,Telgruc sur Mer - Finistère,44562,observation-696a603b-e02d-4a25-af26-9b463594f976,https://biolit.fr/observations/observation-696a603b-e02d-4a25-af26-9b463594f976/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/P1100837.JPG,,TRUE, +N1,59805,sortie-c13d02e9-666f-46b8-ab60-25bdd8df726a,https://biolit.fr/sorties/sortie-c13d02e9-666f-46b8-ab60-25bdd8df726a/,Phil,,03/08/2018,18.0:15,18.0:15,48.174771000000,-4.300023000000,,Plomodiern Finistère,44564,observation-c13d02e9-666f-46b8-ab60-25bdd8df726a,https://biolit.fr/observations/observation-c13d02e9-666f-46b8-ab60-25bdd8df726a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100744_0.JPG,,FALSE, +N1,59806,sortie-67b582e3-a3ae-40d5-92ae-d813aae6b6c5,https://biolit.fr/sorties/sortie-67b582e3-a3ae-40d5-92ae-d813aae6b6c5/,collège paul Eluard,,3/26/2018 0:00,14.0000000,15.0000000,49.315433000000,3.296752000000,,Outreau plage de Ningles ,44566,observation-67b582e3-a3ae-40d5-92ae-d813aae6b6c5,https://biolit.fr/observations/observation-67b582e3-a3ae-40d5-92ae-d813aae6b6c5/,,,,https://biolit.fr/wp-content/uploads/2023/07/svt.PNG,,FALSE, +N1,59807,sortie-231cc614-9f6b-4878-9bd9-e5d89e2cd166,https://biolit.fr/sorties/sortie-231cc614-9f6b-4878-9bd9-e5d89e2cd166/,pamatelo,,1/27/2018 0:00,16.0:15,16.0000000,43.33355800000,5.197185000000,,"Ensues la redonne , plage de la dugue",44568,observation-231cc614-9f6b-4878-9bd9-e5d89e2cd166,https://biolit.fr/observations/observation-231cc614-9f6b-4878-9bd9-e5d89e2cd166/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180127_162533-scaled.jpg,,FALSE, +N1,59808,sortie-f0625fea-73a4-43fd-ac4a-80868c2dc79f,https://biolit.fr/sorties/sortie-f0625fea-73a4-43fd-ac4a-80868c2dc79f/,ville de marseille marius thomas cm1,,3/26/2018 0:00,10.0000000,12.0000000,43.2804800000,5.352794000000,,ANSE DE LA FOSSE MONNAIE,44570,observation-f0625fea-73a4-43fd-ac4a-80868c2dc79f,https://biolit.fr/observations/observation-f0625fea-73a4-43fd-ac4a-80868c2dc79f/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/oursin_Paracentrotus lividus.JPG,,TRUE, +N1,59808,sortie-f0625fea-73a4-43fd-ac4a-80868c2dc79f,https://biolit.fr/sorties/sortie-f0625fea-73a4-43fd-ac4a-80868c2dc79f/,ville de marseille marius thomas cm1,,3/26/2018 0:00,10.0000000,12.0000000,43.2804800000,5.352794000000,,ANSE DE LA FOSSE MONNAIE,44572,observation-f0625fea-73a4-43fd-ac4a-80868c2dc79f-2,https://biolit.fr/observations/observation-f0625fea-73a4-43fd-ac4a-80868c2dc79f-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/oursin_Paracentrotus lividu 2.JPG,,TRUE, +N1,59809,sortie-f733ad97-bf75-4a9a-a956-1610e2bc2033,https://biolit.fr/sorties/sortie-f733ad97-bf75-4a9a-a956-1610e2bc2033/,ville de marseille marius thomas cm1,,3/26/2018 0:00,10.0000000,12.0000000,43.280457000000,5.35281400000,,anse de la fausse monnaie,44574,observation-f733ad97-bf75-4a9a-a956-1610e2bc2033,https://biolit.fr/observations/observation-f733ad97-bf75-4a9a-a956-1610e2bc2033/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/Spherocoque_Sphaerococcus cornopifilus.JPG,,TRUE, +N1,59810,sortie-5c3f40b4-cadd-419a-97d6-96bae41b9d40,https://biolit.fr/sorties/sortie-5c3f40b4-cadd-419a-97d6-96bae41b9d40/,ville de marseille marius thomas cm1,,3/26/2018 0:00,10.0000000,12.0000000,15.159416000000,-19.420884000000,,anse de la fausse monnaie,44576,observation-5c3f40b4-cadd-419a-97d6-96bae41b9d40,https://biolit.fr/observations/observation-5c3f40b4-cadd-419a-97d6-96bae41b9d40/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/Cerithe_cerithium vulgatum.JPG,,TRUE, +N1,59811,sortie-1c29e03f-1ffb-4016-a4a2-2230878a909f,https://biolit.fr/sorties/sortie-1c29e03f-1ffb-4016-a4a2-2230878a909f/,collège paul Eluard,,04/03/2018,14.0000000,16.0000000,50.692063000000,1.562897000000,,"outreau, plage de ningles",44578,observation-1c29e03f-1ffb-4016-a4a2-2230878a909f,https://biolit.fr/observations/observation-1c29e03f-1ffb-4016-a4a2-2230878a909f/,,,,https://biolit.fr/wp-content/uploads/2023/07/Litorine Fabalis-scaled.jpg,,FALSE, +N1,59812,sortie-114049f0-dd86-4caa-a045-6bcf3a491d88,https://biolit.fr/sorties/sortie-114049f0-dd86-4caa-a045-6bcf3a491d88/,collège paul Eluard,,3/27/2018 0:00,14.0000000,15.0000000,50.691936000000,1.56278400000,,"outreau, plage de ningles",44580,observation-114049f0-dd86-4caa-a045-6bcf3a491d88,https://biolit.fr/observations/observation-114049f0-dd86-4caa-a045-6bcf3a491d88/,,,,https://biolit.fr/wp-content/uploads/2023/07/moule_0-scaled.jpg,,FALSE, +N1,59813,sortie-dadb8dce-14aa-493f-9021-6956c063dd16,https://biolit.fr/sorties/sortie-dadb8dce-14aa-493f-9021-6956c063dd16/,ville de marseille marius thomas cm1,,3/26/2018 0:00,10.0000000,12.0000000,43.28037500000,5.352771000000,,anse de la fausse monnaie,44581,observation-dadb8dce-14aa-493f-9021-6956c063dd16,https://biolit.fr/observations/observation-dadb8dce-14aa-493f-9021-6956c063dd16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Blennie diabolo_Parablennius incognitus.JPG,,FALSE, +N1,59814,sortie-61094d0a-8e04-4df7-8a63-c58a1936c8cb,https://biolit.fr/sorties/sortie-61094d0a-8e04-4df7-8a63-c58a1936c8cb/,ville de marseille marius thomas cm1,,3/26/2018 0:00,10.0000000,12.0000000,43.280405000000,5.352766000000,,anse de la fausse monnaie,44583,observation-61094d0a-8e04-4df7-8a63-c58a1936c8cb,https://biolit.fr/observations/observation-61094d0a-8e04-4df7-8a63-c58a1936c8cb/,,,,https://biolit.fr/wp-content/uploads/2023/07/Laitue de mer_ ulva lactuca.JPG,,FALSE, +N1,59815,sortie-57812833-cbf1-4932-802d-6063a5a669d9,https://biolit.fr/sorties/sortie-57812833-cbf1-4932-802d-6063a5a669d9/,ville de marseille marius thomas cm1,,3/26/2018 0:00,10.0000000,12.0000000,43.280401000000,5.352804000000,,ANSE DE LA FOSSE MONNAIE,44585,observation-57812833-cbf1-4932-802d-6063a5a669d9,https://biolit.fr/observations/observation-57812833-cbf1-4932-802d-6063a5a669d9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Eponge de mer_0.JPG,,FALSE, +N1,59816,sortie-ba3876df-51f3-4dcc-97eb-3d2101a4d9dc,https://biolit.fr/sorties/sortie-ba3876df-51f3-4dcc-97eb-3d2101a4d9dc/,ville de marseille marius thomas cm1,,3/26/2018 0:00,10.0000000,12.0000000,43.280311000000,5.352784000000,,anse de la fause monnaie,44587,observation-ba3876df-51f3-4dcc-97eb-3d2101a4d9dc,https://biolit.fr/observations/observation-ba3876df-51f3-4dcc-97eb-3d2101a4d9dc/,Lithophaga lithophaga,Datte de mer,,https://biolit.fr/wp-content/uploads/2023/07/date de mer_Lithophaga lithophaga interieur.jpg,,TRUE, +N1,59816,sortie-ba3876df-51f3-4dcc-97eb-3d2101a4d9dc,https://biolit.fr/sorties/sortie-ba3876df-51f3-4dcc-97eb-3d2101a4d9dc/,ville de marseille marius thomas cm1,,3/26/2018 0:00,10.0000000,12.0000000,43.280311000000,5.352784000000,,anse de la fause monnaie,44589,observation-ba3876df-51f3-4dcc-97eb-3d2101a4d9dc-2,https://biolit.fr/observations/observation-ba3876df-51f3-4dcc-97eb-3d2101a4d9dc-2/,Lithophaga lithophaga,Datte de mer,,https://biolit.fr/wp-content/uploads/2023/07/date de mer_Lithophaga lithophaga.jpg,,TRUE, +N1,59817,sortie-04d9cb3e-a769-4e58-a442-88001df5f96a,https://biolit.fr/sorties/sortie-04d9cb3e-a769-4e58-a442-88001df5f96a/,ville de marseille marius thomas cm1,,3/26/2018 0:00,10.0000000,12.0000000,43.280391000000,5.352779000000,,Anse de la fausse monnaie,44591,observation-04d9cb3e-a769-4e58-a442-88001df5f96a,https://biolit.fr/observations/observation-04d9cb3e-a769-4e58-a442-88001df5f96a/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/Beret Basque_Codium bursa.JPG,,TRUE, +N1,59818,sortie-93fc2b5d-36a7-4c12-ab0c-b5b454fda2ee,https://biolit.fr/sorties/sortie-93fc2b5d-36a7-4c12-ab0c-b5b454fda2ee/,Phil,,03/03/2018,12.0:35,12.0000000,47.862879000000,-4.066400000000,,Fouesnant - Finistère,44593,observation-93fc2b5d-36a7-4c12-ab0c-b5b454fda2ee,https://biolit.fr/observations/observation-93fc2b5d-36a7-4c12-ab0c-b5b454fda2ee/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100730.JPG,,FALSE, +N1,59819,sortie-f9175ec0-5cc9-4566-bac2-ef3f4ff4a6b2,https://biolit.fr/sorties/sortie-f9175ec0-5cc9-4566-bac2-ef3f4ff4a6b2/,Phil,,03/03/2018,12.0:35,12.0000000,47.863011000000,-4.066400000000,,Fouesnant - Finistère,44595,observation-f9175ec0-5cc9-4566-bac2-ef3f4ff4a6b2,https://biolit.fr/observations/observation-f9175ec0-5cc9-4566-bac2-ef3f4ff4a6b2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100727.JPG,,FALSE, +N1,59820,sortie-541b170b-fbb4-47e4-81cf-47f81c5430ad,https://biolit.fr/sorties/sortie-541b170b-fbb4-47e4-81cf-47f81c5430ad/,Phil,,03/03/2018,12.0:35,12.0000000,47.86312700000,-4.065842000000,,Fouesnant - Finistère,44597,observation-541b170b-fbb4-47e4-81cf-47f81c5430ad,https://biolit.fr/observations/observation-541b170b-fbb4-47e4-81cf-47f81c5430ad/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100724.JPG,,FALSE, +N1,59821,sortie-ee0c5bba-b756-41b3-9875-080ef29107ac,https://biolit.fr/sorties/sortie-ee0c5bba-b756-41b3-9875-080ef29107ac/,Phil,,03/03/2018,12.0:35,12.0000000,47.863150000000,-4.066100000000,,Fouesnant - Finistère,44599,observation-ee0c5bba-b756-41b3-9875-080ef29107ac,https://biolit.fr/observations/observation-ee0c5bba-b756-41b3-9875-080ef29107ac/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100722.JPG,,FALSE, +N1,59822,sortie-98bc83b0-668e-46a3-9747-08444b885be9,https://biolit.fr/sorties/sortie-98bc83b0-668e-46a3-9747-08444b885be9/,Phil,,03/03/2018,12.0:35,12.0000000,47.863213000000,-4.066151000000,,Fouesnant - Finistère,44601,observation-98bc83b0-668e-46a3-9747-08444b885be9,https://biolit.fr/observations/observation-98bc83b0-668e-46a3-9747-08444b885be9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100721.JPG,,FALSE, +N1,59823,sortie-b2f0ac1e-5fdd-450a-bce8-a87d7d8a5dcb,https://biolit.fr/sorties/sortie-b2f0ac1e-5fdd-450a-bce8-a87d7d8a5dcb/,Phil,,03/03/2018,12.0:35,12.0000000,47.86340900000,-4.066314000000,,Fouesnant - Finistère,44603,observation-b2f0ac1e-5fdd-450a-bce8-a87d7d8a5dcb,https://biolit.fr/observations/observation-b2f0ac1e-5fdd-450a-bce8-a87d7d8a5dcb/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100720.JPG,,FALSE, +N1,59824,sortie-ec8ccfe2-3336-4db6-8274-cabba3d4e9a4,https://biolit.fr/sorties/sortie-ec8ccfe2-3336-4db6-8274-cabba3d4e9a4/,Phil,,03/03/2018,12.0:35,12.0000000,47.863250000000,-4.066143000000,,Fouesnant - Finistère,44605,observation-ec8ccfe2-3336-4db6-8274-cabba3d4e9a4,https://biolit.fr/observations/observation-ec8ccfe2-3336-4db6-8274-cabba3d4e9a4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100719.JPG,,FALSE, +N1,59825,sortie-342de731-e497-4899-a419-f1822d6129e4,https://biolit.fr/sorties/sortie-342de731-e497-4899-a419-f1822d6129e4/,Phil,,3/31/2018 0:00,13.0000000,13.0:15,47.897052000000,-3.974582000000,,La Forêt-Fouesnant - Finistère,44607,observation-342de731-e497-4899-a419-f1822d6129e4,https://biolit.fr/observations/observation-342de731-e497-4899-a419-f1822d6129e4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180331_131154.jpg,,FALSE, +N1,59826,sortie-61f287c1-331d-4fdc-9064-c65f83d14e41,https://biolit.fr/sorties/sortie-61f287c1-331d-4fdc-9064-c65f83d14e41/,Phil,,3/31/2018 0:00,13.0000000,13.0:15,47.897045000000,-3.974542000000,,La Forêt-Fouesnant - Finistère,44609,observation-61f287c1-331d-4fdc-9064-c65f83d14e41,https://biolit.fr/observations/observation-61f287c1-331d-4fdc-9064-c65f83d14e41/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180331_131122.jpg,,FALSE, +N1,59827,sortie-f8bbc90e-6571-4cf0-afdb-22a7cd39e706,https://biolit.fr/sorties/sortie-f8bbc90e-6571-4cf0-afdb-22a7cd39e706/,Phil,,3/31/2018 0:00,13.0000000,13.0:15,47.897036000000,-3.97453400000,,La Forêt-Fouesnant - Finistère,44611,observation-f8bbc90e-6571-4cf0-afdb-22a7cd39e706,https://biolit.fr/observations/observation-f8bbc90e-6571-4cf0-afdb-22a7cd39e706/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180331_131103.jpg,,FALSE, +N1,59828,sortie-d5c6c922-b55f-4dd5-ad1c-228e6d127d68,https://biolit.fr/sorties/sortie-d5c6c922-b55f-4dd5-ad1c-228e6d127d68/,collège paul Eluard,,3/26/2018 0:00,14.0:15,15.0000000,50.692086000000,1.563051000000,,"Outreau , plage de Ningles ",44613,observation-d5c6c922-b55f-4dd5-ad1c-228e6d127d68,https://biolit.fr/observations/observation-d5c6c922-b55f-4dd5-ad1c-228e6d127d68/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180326_145630-scaled.jpg,,FALSE, +N1,59829,sortie-008e9a3f-0d14-4811-a9dc-3acbc0338f40,https://biolit.fr/sorties/sortie-008e9a3f-0d14-4811-a9dc-3acbc0338f40/,Observe la nature,,04/01/2018,14.0000000,15.0000000,48.815369000000,-3.427215000000,,pors ar goret perros guirec,44615,observation-008e9a3f-0d14-4811-a9dc-3acbc0338f40,https://biolit.fr/observations/observation-008e9a3f-0d14-4811-a9dc-3acbc0338f40/,,,,https://biolit.fr/wp-content/uploads/2023/07/P4010587-scaled.jpg,,FALSE, +N1,59829,sortie-008e9a3f-0d14-4811-a9dc-3acbc0338f40,https://biolit.fr/sorties/sortie-008e9a3f-0d14-4811-a9dc-3acbc0338f40/,Observe la nature,,04/01/2018,14.0000000,15.0000000,48.815369000000,-3.427215000000,,pors ar goret perros guirec,44617,observation-008e9a3f-0d14-4811-a9dc-3acbc0338f40-2,https://biolit.fr/observations/observation-008e9a3f-0d14-4811-a9dc-3acbc0338f40-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P4010586-scaled.jpg,,FALSE, +N1,59830,sortie-f336b779-a114-459f-bc7f-0e331efe00c5,https://biolit.fr/sorties/sortie-f336b779-a114-459f-bc7f-0e331efe00c5/,Phil,,3/31/2018 0:00,13.0000000,13.0000000,47.897151000000,-3.974596000000,,La Forêt-Fouesnant - Finistère,44619,observation-f336b779-a114-459f-bc7f-0e331efe00c5,https://biolit.fr/observations/observation-f336b779-a114-459f-bc7f-0e331efe00c5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180331_131037.jpg,,FALSE, +N1,59831,sortie-2924fabc-8534-4248-bfa9-dff6e2afc018,https://biolit.fr/sorties/sortie-2924fabc-8534-4248-bfa9-dff6e2afc018/,Phil,,3/31/2018 0:00,13.0000000,13.0000000,47.897165000000,-3.974630000000,,La Forêt-Fouesnant - Finistère,44621,observation-2924fabc-8534-4248-bfa9-dff6e2afc018,https://biolit.fr/observations/observation-2924fabc-8534-4248-bfa9-dff6e2afc018/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180331_131033.jpg,,FALSE, +N1,59832,sortie-b59c80ab-716c-4fe1-9222-8df1e9dddbef,https://biolit.fr/sorties/sortie-b59c80ab-716c-4fe1-9222-8df1e9dddbef/,RBBBM,,3/30/2018 0:00,11.0:15,12.0:15,47.78847900000,-3.703740000000,,Trenez à Moëlan/mer,44623,observation-b59c80ab-716c-4fe1-9222-8df1e9dddbef,https://biolit.fr/observations/observation-b59c80ab-716c-4fe1-9222-8df1e9dddbef/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/ascidies Botrylle-scaled.jpg,,TRUE, +N1,59832,sortie-b59c80ab-716c-4fe1-9222-8df1e9dddbef,https://biolit.fr/sorties/sortie-b59c80ab-716c-4fe1-9222-8df1e9dddbef/,RBBBM,,3/30/2018 0:00,11.0:15,12.0:15,47.78847900000,-3.703740000000,,Trenez à Moëlan/mer,44625,observation-b59c80ab-716c-4fe1-9222-8df1e9dddbef-2,https://biolit.fr/observations/observation-b59c80ab-716c-4fe1-9222-8df1e9dddbef-2/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/ascidies_0-scaled.jpg,,TRUE, +N1,59832,sortie-b59c80ab-716c-4fe1-9222-8df1e9dddbef,https://biolit.fr/sorties/sortie-b59c80ab-716c-4fe1-9222-8df1e9dddbef/,RBBBM,,3/30/2018 0:00,11.0:15,12.0:15,47.78847900000,-3.703740000000,,Trenez à Moëlan/mer,44627,observation-b59c80ab-716c-4fe1-9222-8df1e9dddbef-3,https://biolit.fr/observations/observation-b59c80ab-716c-4fe1-9222-8df1e9dddbef-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/ascidies blanches-scaled.jpg,,TRUE, +N1,59832,sortie-b59c80ab-716c-4fe1-9222-8df1e9dddbef,https://biolit.fr/sorties/sortie-b59c80ab-716c-4fe1-9222-8df1e9dddbef/,RBBBM,,3/30/2018 0:00,11.0:15,12.0:15,47.78847900000,-3.703740000000,,Trenez à Moëlan/mer,44629,observation-b59c80ab-716c-4fe1-9222-8df1e9dddbef-4,https://biolit.fr/observations/observation-b59c80ab-716c-4fe1-9222-8df1e9dddbef-4/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/crabe_0-scaled.jpg,,TRUE, +N1,59832,sortie-b59c80ab-716c-4fe1-9222-8df1e9dddbef,https://biolit.fr/sorties/sortie-b59c80ab-716c-4fe1-9222-8df1e9dddbef/,RBBBM,,3/30/2018 0:00,11.0:15,12.0:15,47.78847900000,-3.703740000000,,Trenez à Moëlan/mer,44631,observation-b59c80ab-716c-4fe1-9222-8df1e9dddbef-5,https://biolit.fr/observations/observation-b59c80ab-716c-4fe1-9222-8df1e9dddbef-5/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/chiton-scaled.jpg,,TRUE, +N1,59833,sortie-ef655138-6bf4-44a1-97fb-168e5eb49543,https://biolit.fr/sorties/sortie-ef655138-6bf4-44a1-97fb-168e5eb49543/,Phil,,03/03/2018,12.0:35,12.0000000,47.862683000000,-4.06734400000,,Fouesnant - Finistère,44633,observation-ef655138-6bf4-44a1-97fb-168e5eb49543,https://biolit.fr/observations/observation-ef655138-6bf4-44a1-97fb-168e5eb49543/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100717.JPG,,FALSE, +N1,59834,sortie-6cdcbb72-0de5-4d4f-8f75-3065fbd1b0d2,https://biolit.fr/sorties/sortie-6cdcbb72-0de5-4d4f-8f75-3065fbd1b0d2/,Phil,,03/03/2018,12.0:35,12.0000000,47.862617000000,-4.068061000000,,Fouesnant - Finistère,44635,observation-6cdcbb72-0de5-4d4f-8f75-3065fbd1b0d2,https://biolit.fr/observations/observation-6cdcbb72-0de5-4d4f-8f75-3065fbd1b0d2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100703.JPG,,FALSE, +N1,59835,sortie-74558b26-9b46-4869-9f8c-e60050446634,https://biolit.fr/sorties/sortie-74558b26-9b46-4869-9f8c-e60050446634/,Phil,,03/03/2018,12.0:35,12.0000000,47.862522000000,-4.067559000000,,Fouesnant - Finistère,44637,observation-74558b26-9b46-4869-9f8c-e60050446634,https://biolit.fr/observations/observation-74558b26-9b46-4869-9f8c-e60050446634/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100701.JPG,,FALSE, +N1,59836,sortie-073ec1d9-2613-4f03-9991-c7a54532ab9c,https://biolit.fr/sorties/sortie-073ec1d9-2613-4f03-9991-c7a54532ab9c/,Phil,,03/03/2018,12.0000000,12.0:35,47.862257000000,-4.06704400000,,Fouesnant - Finistère,44639,observation-073ec1d9-2613-4f03-9991-c7a54532ab9c,https://biolit.fr/observations/observation-073ec1d9-2613-4f03-9991-c7a54532ab9c/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100700.JPG,,FALSE, +N1,59837,sortie-3715154c-7042-441b-84a5-f933fb4e471d,https://biolit.fr/sorties/sortie-3715154c-7042-441b-84a5-f933fb4e471d/,Phil,,03/03/2018,12.0000000,12.0:35,47.862288000000,-4.067138000000,,Fouesnant - Finistère,44641,observation-3715154c-7042-441b-84a5-f933fb4e471d,https://biolit.fr/observations/observation-3715154c-7042-441b-84a5-f933fb4e471d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100699.JPG,,FALSE, +N1,59838,sortie-d4529d26-7a30-4e94-8385-b5b580d6145b,https://biolit.fr/sorties/sortie-d4529d26-7a30-4e94-8385-b5b580d6145b/,Phil,,03/03/2018,12.0000000,12.0:35,47.862427000000,-4.067988000000,,Fouesnant - Finistère,44643,observation-d4529d26-7a30-4e94-8385-b5b580d6145b,https://biolit.fr/observations/observation-d4529d26-7a30-4e94-8385-b5b580d6145b/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100698.JPG,,FALSE, +N1,59839,sortie-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62,https://biolit.fr/sorties/sortie-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62/,CarpeDiem,,1/21/2018 0:00,11.0000000,12.0000000,43.329915000000,5.209624000000,,Calanque des Figuières,44645,observation-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62,https://biolit.fr/observations/observation-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/Codium-scaled.jpg,,TRUE, +N1,59839,sortie-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62,https://biolit.fr/sorties/sortie-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62/,CarpeDiem,,1/21/2018 0:00,11.0000000,12.0000000,43.329915000000,5.209624000000,,Calanque des Figuières,44647,observation-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62-2,https://biolit.fr/observations/observation-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algues verte-scaled.jpg,,FALSE, +N1,59839,sortie-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62,https://biolit.fr/sorties/sortie-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62/,CarpeDiem,,1/21/2018 0:00,11.0000000,12.0000000,43.329915000000,5.209624000000,,Calanque des Figuières,44649,observation-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62-3,https://biolit.fr/observations/observation-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algues ponpon.png,,FALSE, +N1,59839,sortie-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62,https://biolit.fr/sorties/sortie-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62/,CarpeDiem,,1/21/2018 0:00,11.0000000,12.0000000,43.329915000000,5.209624000000,,Calanque des Figuières,44651,observation-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62-4,https://biolit.fr/observations/observation-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/algues-scaled.jpg,,FALSE, +N1,59839,sortie-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62,https://biolit.fr/sorties/sortie-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62/,CarpeDiem,,1/21/2018 0:00,11.0000000,12.0000000,43.329915000000,5.209624000000,,Calanque des Figuières,44652,observation-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62-5,https://biolit.fr/observations/observation-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62-5/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Oursin-scaled.jpg,,TRUE, +N1,59839,sortie-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62,https://biolit.fr/sorties/sortie-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62/,CarpeDiem,,1/21/2018 0:00,11.0000000,12.0000000,43.329915000000,5.209624000000,,Calanque des Figuières,44654,observation-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62-6,https://biolit.fr/observations/observation-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle_1-scaled.jpg,,FALSE, +N1,59839,sortie-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62,https://biolit.fr/sorties/sortie-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62/,CarpeDiem,,1/21/2018 0:00,11.0000000,12.0000000,43.329915000000,5.209624000000,,Calanque des Figuières,44656,observation-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62-7,https://biolit.fr/observations/observation-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62-7/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/Gibbules-scaled.jpg,,TRUE, +N1,59839,sortie-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62,https://biolit.fr/sorties/sortie-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62/,CarpeDiem,,1/21/2018 0:00,11.0000000,12.0000000,43.329915000000,5.209624000000,,Calanque des Figuières,44657,observation-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62-8,https://biolit.fr/observations/observation-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Posidonie-scaled.jpg,,FALSE, +N1,59840,sortie-893e24c0-223e-4bc7-b6f4-7b9486b0ea19,https://biolit.fr/sorties/sortie-893e24c0-223e-4bc7-b6f4-7b9486b0ea19/,cigale33,,3/28/2018 0:00,10.0000000,11.0000000,43.379564000000,-1.756089000000,,hendaye,44659,observation-893e24c0-223e-4bc7-b6f4-7b9486b0ea19,https://biolit.fr/observations/observation-893e24c0-223e-4bc7-b6f4-7b9486b0ea19/,Scyliorhinus stellaris,Grande roussette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1166.JPG,,TRUE, +N1,59847,sortie-91eedc27-f42c-4432-a62e-25700edb0393,https://biolit.fr/sorties/sortie-91eedc27-f42c-4432-a62e-25700edb0393/,ville de marseille BOMPARD CM1 CM2,,03/12/2018,10.0000000,11.0000000,43.280318000000,5.352774000000,,Anse de la fausse monnaie,44673,observation-91eedc27-f42c-4432-a62e-25700edb0393,https://biolit.fr/observations/observation-91eedc27-f42c-4432-a62e-25700edb0393/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/Astré rugueuse Bolma rugosa.JPG,,TRUE, +N1,59848,sortie-3c573ec7-07b4-4b6e-aa03-8772ed8c4ca7,https://biolit.fr/sorties/sortie-3c573ec7-07b4-4b6e-aa03-8772ed8c4ca7/,ville de marseille BOMPARD CM1 CM2,,03/12/2018,10.0000000,11.0000000,43.280274000000,5.352900000000,,anse de la fausse monnaie,44675,observation-3c573ec7-07b4-4b6e-aa03-8772ed8c4ca7,https://biolit.fr/observations/observation-3c573ec7-07b4-4b6e-aa03-8772ed8c4ca7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Os 1_0-scaled.jpg,,FALSE, +N1,59849,sortie-d7451b28-0d20-4eb8-b7cb-df5d0c48415f,https://biolit.fr/sorties/sortie-d7451b28-0d20-4eb8-b7cb-df5d0c48415f/,ville de marseille BOMPARD CM1 CM2,,03/12/2018,10.0000000,11.0000000,43.280274000000,5.352900000000,,anse de la fausse monnaie,44677,observation-d7451b28-0d20-4eb8-b7cb-df5d0c48415f,https://biolit.fr/observations/observation-d7451b28-0d20-4eb8-b7cb-df5d0c48415f/,,,,https://biolit.fr/wp-content/uploads/2023/07/Os 1-scaled.jpg,,FALSE, +N1,59849,sortie-d7451b28-0d20-4eb8-b7cb-df5d0c48415f,https://biolit.fr/sorties/sortie-d7451b28-0d20-4eb8-b7cb-df5d0c48415f/,ville de marseille BOMPARD CM1 CM2,,03/12/2018,10.0000000,11.0000000,43.280274000000,5.352900000000,,anse de la fausse monnaie,44679,observation-d7451b28-0d20-4eb8-b7cb-df5d0c48415f-2,https://biolit.fr/observations/observation-d7451b28-0d20-4eb8-b7cb-df5d0c48415f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Os 2-scaled.jpg,,FALSE, +N1,59850,sortie-d0dcca3f-4a35-4d0d-8974-bf54cb0aa6a6,https://biolit.fr/sorties/sortie-d0dcca3f-4a35-4d0d-8974-bf54cb0aa6a6/,ville de marseille BOMPARD CM1 CM2,,03/12/2018,10.0000000,11.0000000,43.280418000000,5.352801000000,,Anse de la Fausse Monnaie,44681,observation-d0dcca3f-4a35-4d0d-8974-bf54cb0aa6a6,https://biolit.fr/observations/observation-d0dcca3f-4a35-4d0d-8974-bf54cb0aa6a6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cardites antiquatus vue externe.JPG,,FALSE, +N1,59850,sortie-d0dcca3f-4a35-4d0d-8974-bf54cb0aa6a6,https://biolit.fr/sorties/sortie-d0dcca3f-4a35-4d0d-8974-bf54cb0aa6a6/,ville de marseille BOMPARD CM1 CM2,,03/12/2018,10.0000000,11.0000000,43.280418000000,5.352801000000,,Anse de la Fausse Monnaie,44683,observation-d0dcca3f-4a35-4d0d-8974-bf54cb0aa6a6-2,https://biolit.fr/observations/observation-d0dcca3f-4a35-4d0d-8974-bf54cb0aa6a6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cardites antiquatus vue interne.JPG,,FALSE, +N1,59851,sortie-867ff9b9-e0e7-45f6-ad15-a639136b4bb4,https://biolit.fr/sorties/sortie-867ff9b9-e0e7-45f6-ad15-a639136b4bb4/,ville de marseille BOMPARD CM1 CM2,,03/12/2018,10.0000000,11.0000000,43.280416000000,5.352736000000,,Anse de la fausse monnaie,44685,observation-867ff9b9-e0e7-45f6-ad15-a639136b4bb4,https://biolit.fr/observations/observation-867ff9b9-e0e7-45f6-ad15-a639136b4bb4/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/POSIDONIE-Posidonia oceanica-scaled.jpg,,TRUE, +N1,59851,sortie-867ff9b9-e0e7-45f6-ad15-a639136b4bb4,https://biolit.fr/sorties/sortie-867ff9b9-e0e7-45f6-ad15-a639136b4bb4/,ville de marseille BOMPARD CM1 CM2,,03/12/2018,10.0000000,11.0000000,43.280416000000,5.352736000000,,Anse de la fausse monnaie,44686,observation-867ff9b9-e0e7-45f6-ad15-a639136b4bb4-2,https://biolit.fr/observations/observation-867ff9b9-e0e7-45f6-ad15-a639136b4bb4-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Test d'oursin Paracentrotus lividus.JPG,,TRUE, +N1,59852,sortie-4f3d3b57-6dee-41f2-b3be-9d982c4153ed,https://biolit.fr/sorties/sortie-4f3d3b57-6dee-41f2-b3be-9d982c4153ed/,ville de marseille BOMPARD CM1 CM2,,03/12/2018,10.0000000,11.0000000,43.280398000000,5.352786000000,,Anse de la fausse monnaie,44688,observation-4f3d3b57-6dee-41f2-b3be-9d982c4153ed,https://biolit.fr/observations/observation-4f3d3b57-6dee-41f2-b3be-9d982c4153ed/,,,,https://biolit.fr/wp-content/uploads/2023/07/OPHIURE-.Ophiothrix sp.JPG,,FALSE, +N1,59853,sortie-55278b09-c7f6-4263-a8c3-91604b8a5624,https://biolit.fr/sorties/sortie-55278b09-c7f6-4263-a8c3-91604b8a5624/,ville de marseille BOMPARD CM1 CM2,,03/12/2018,10.0000000,11.0000000,43.280482000000,5.352829000000,,anse de la fausse monnaie,44690,observation-55278b09-c7f6-4263-a8c3-91604b8a5624,https://biolit.fr/observations/observation-55278b09-c7f6-4263-a8c3-91604b8a5624/,,,,https://biolit.fr/wp-content/uploads/2023/07/COLUMBELLE RUSTIQUE-Columbella rustica vue ventral.JPG,,FALSE, +N1,59853,sortie-55278b09-c7f6-4263-a8c3-91604b8a5624,https://biolit.fr/sorties/sortie-55278b09-c7f6-4263-a8c3-91604b8a5624/,ville de marseille BOMPARD CM1 CM2,,03/12/2018,10.0000000,11.0000000,43.280482000000,5.352829000000,,anse de la fausse monnaie,44692,observation-55278b09-c7f6-4263-a8c3-91604b8a5624-2,https://biolit.fr/observations/observation-55278b09-c7f6-4263-a8c3-91604b8a5624-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/COLUMBELLE RUSTIQUE -Columbella rustica vue dorsale .JPG,,FALSE, +N1,59854,sortie-c0410d6e-e797-4ccc-aca5-753275f2531b,https://biolit.fr/sorties/sortie-c0410d6e-e797-4ccc-aca5-753275f2531b/,ville de marseille BOMPARD CM1 CM2,,03/12/2018,10.0000000,11.0000000,43.2799830,5.352555,,anse de la fosse monnaie,44694,observation-c0410d6e-e797-4ccc-aca5-753275f2531b,https://biolit.fr/observations/observation-c0410d6e-e797-4ccc-aca5-753275f2531b/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie rouge Halocynthia papillosa_0.JPG,,TRUE, +N1,59854,sortie-c0410d6e-e797-4ccc-aca5-753275f2531b,https://biolit.fr/sorties/sortie-c0410d6e-e797-4ccc-aca5-753275f2531b/,ville de marseille BOMPARD CM1 CM2,,03/12/2018,10.0000000,11.0000000,43.2799830,5.352555,,anse de la fosse monnaie,44696,observation-c0410d6e-e797-4ccc-aca5-753275f2531b-2,https://biolit.fr/observations/observation-c0410d6e-e797-4ccc-aca5-753275f2531b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algue bulle-Valonia aegagropyla_1-scaled.jpg,,FALSE, +N1,59855,sortie-12a8cab6-de57-448b-a8bf-7bd1a5fe8bf6,https://biolit.fr/sorties/sortie-12a8cab6-de57-448b-a8bf-7bd1a5fe8bf6/,ville de marseille BOMPARD CM1 CM2,,03/12/2018,10.0000000,11.0000000,43.280407000000,5.352740000000,,Anse de la fausse monnaie,44698,observation-12a8cab6-de57-448b-a8bf-7bd1a5fe8bf6,https://biolit.fr/observations/observation-12a8cab6-de57-448b-a8bf-7bd1a5fe8bf6/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/Bérêt basque Codium bursa-scaled.jpg,,TRUE, +N1,59855,sortie-12a8cab6-de57-448b-a8bf-7bd1a5fe8bf6,https://biolit.fr/sorties/sortie-12a8cab6-de57-448b-a8bf-7bd1a5fe8bf6/,ville de marseille BOMPARD CM1 CM2,,03/12/2018,10.0000000,11.0000000,43.280407000000,5.352740000000,,Anse de la fausse monnaie,44700,observation-12a8cab6-de57-448b-a8bf-7bd1a5fe8bf6-2,https://biolit.fr/observations/observation-12a8cab6-de57-448b-a8bf-7bd1a5fe8bf6-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/Bérêt basque Codium bursa2.JPG,,TRUE, +N1,59856,sortie-34127bf7-fee2-4991-a446-9504a484b094,https://biolit.fr/sorties/sortie-34127bf7-fee2-4991-a446-9504a484b094/,ville de marseille BOMPARD CM1 CM2,,03/12/2018,10.0000000,11.0000000,43.279729000000,5.352420000000,,anse de la fausse monnaie,44702,observation-34127bf7-fee2-4991-a446-9504a484b094,https://biolit.fr/observations/observation-34127bf7-fee2-4991-a446-9504a484b094/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/2023/07/ormeau méditerranée -Haliotis tuberculata lamellosa vue interne.JPG,,TRUE, +N1,59858,sortie-115ade1a-97f7-435b-9e52-899cc66a5bc9,https://biolit.fr/sorties/sortie-115ade1a-97f7-435b-9e52-899cc66a5bc9/,OBRIOT,,3/25/2018 0:00,13.0000000,14.0000000,43.072134000000,5.787799000000,,grand Gaou Le Brusc,44708,observation-115ade1a-97f7-435b-9e52-899cc66a5bc9,https://biolit.fr/observations/observation-115ade1a-97f7-435b-9e52-899cc66a5bc9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0086.JPG,,FALSE, +N1,59858,sortie-115ade1a-97f7-435b-9e52-899cc66a5bc9,https://biolit.fr/sorties/sortie-115ade1a-97f7-435b-9e52-899cc66a5bc9/,OBRIOT,,3/25/2018 0:00,13.0000000,14.0000000,43.072134000000,5.787799000000,,grand Gaou Le Brusc,44710,observation-115ade1a-97f7-435b-9e52-899cc66a5bc9-2,https://biolit.fr/observations/observation-115ade1a-97f7-435b-9e52-899cc66a5bc9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0087.JPG,,FALSE, +N1,59858,sortie-115ade1a-97f7-435b-9e52-899cc66a5bc9,https://biolit.fr/sorties/sortie-115ade1a-97f7-435b-9e52-899cc66a5bc9/,OBRIOT,,3/25/2018 0:00,13.0000000,14.0000000,43.072134000000,5.787799000000,,grand Gaou Le Brusc,44712,observation-115ade1a-97f7-435b-9e52-899cc66a5bc9-3,https://biolit.fr/observations/observation-115ade1a-97f7-435b-9e52-899cc66a5bc9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0088.JPG,,FALSE, +N1,59858,sortie-115ade1a-97f7-435b-9e52-899cc66a5bc9,https://biolit.fr/sorties/sortie-115ade1a-97f7-435b-9e52-899cc66a5bc9/,OBRIOT,,3/25/2018 0:00,13.0000000,14.0000000,43.072134000000,5.787799000000,,grand Gaou Le Brusc,44714,observation-115ade1a-97f7-435b-9e52-899cc66a5bc9-4,https://biolit.fr/observations/observation-115ade1a-97f7-435b-9e52-899cc66a5bc9-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0089.JPG,,FALSE, +N1,59858,sortie-115ade1a-97f7-435b-9e52-899cc66a5bc9,https://biolit.fr/sorties/sortie-115ade1a-97f7-435b-9e52-899cc66a5bc9/,OBRIOT,,3/25/2018 0:00,13.0000000,14.0000000,43.072134000000,5.787799000000,,grand Gaou Le Brusc,44716,observation-115ade1a-97f7-435b-9e52-899cc66a5bc9-5,https://biolit.fr/observations/observation-115ade1a-97f7-435b-9e52-899cc66a5bc9-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0092.JPG,,FALSE, +N1,59858,sortie-115ade1a-97f7-435b-9e52-899cc66a5bc9,https://biolit.fr/sorties/sortie-115ade1a-97f7-435b-9e52-899cc66a5bc9/,OBRIOT,,3/25/2018 0:00,13.0000000,14.0000000,43.072134000000,5.787799000000,,grand Gaou Le Brusc,44718,observation-115ade1a-97f7-435b-9e52-899cc66a5bc9-6,https://biolit.fr/observations/observation-115ade1a-97f7-435b-9e52-899cc66a5bc9-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0095.JPG,,FALSE, +N1,59858,sortie-115ade1a-97f7-435b-9e52-899cc66a5bc9,https://biolit.fr/sorties/sortie-115ade1a-97f7-435b-9e52-899cc66a5bc9/,OBRIOT,,3/25/2018 0:00,13.0000000,14.0000000,43.072134000000,5.787799000000,,grand Gaou Le Brusc,44720,observation-115ade1a-97f7-435b-9e52-899cc66a5bc9-7,https://biolit.fr/observations/observation-115ade1a-97f7-435b-9e52-899cc66a5bc9-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0096.JPG,,FALSE, +N1,59859,sortie-115991d7-9767-48d0-abed-1e3cc0dbd981,https://biolit.fr/sorties/sortie-115991d7-9767-48d0-abed-1e3cc0dbd981/,Phil,,03/03/2018,12.0000000,12.0000000,47.863210000000,-4.065078000000,,Fouesnant - Finistère,44722,observation-115991d7-9767-48d0-abed-1e3cc0dbd981,https://biolit.fr/observations/observation-115991d7-9767-48d0-abed-1e3cc0dbd981/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100697.JPG,,FALSE, +N1,59860,sortie-d623aaa0-9e80-42c3-afb0-e073a86bb092,https://biolit.fr/sorties/sortie-d623aaa0-9e80-42c3-afb0-e073a86bb092/,Phil,,03/03/2018,12.0000000,12.0000000,47.863141000000,-4.065229000000,,Fouesnant - Finistère,44724,observation-d623aaa0-9e80-42c3-afb0-e073a86bb092,https://biolit.fr/observations/observation-d623aaa0-9e80-42c3-afb0-e073a86bb092/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100695.JPG,,FALSE, +N1,59861,sortie-b2135c8a-c695-4b03-b5e3-a97c19004008,https://biolit.fr/sorties/sortie-b2135c8a-c695-4b03-b5e3-a97c19004008/,Phil,,03/03/2018,12.0:25,12.0000000,47.863519000000,-4.06539400000,,Fouesnant - Finistère,44726,observation-b2135c8a-c695-4b03-b5e3-a97c19004008,https://biolit.fr/observations/observation-b2135c8a-c695-4b03-b5e3-a97c19004008/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100694.JPG,,FALSE, +N1,59862,sortie-b2f30d23-827e-4ae6-a64d-f042a3bc5d75,https://biolit.fr/sorties/sortie-b2f30d23-827e-4ae6-a64d-f042a3bc5d75/,Phil,,03/03/2018,12.0:25,12.0000000,47.863676000000,-4.064928000000,,Fouesnant - Finistère,44728,observation-b2f30d23-827e-4ae6-a64d-f042a3bc5d75,https://biolit.fr/observations/observation-b2f30d23-827e-4ae6-a64d-f042a3bc5d75/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100693.JPG,,FALSE, +N1,59863,sortie-203110e8-f09d-456f-893c-64919adb1284,https://biolit.fr/sorties/sortie-203110e8-f09d-456f-893c-64919adb1284/,Phil,,03/03/2018,12.0:25,12.0000000,47.863092000000,-4.06562800000,,Fouesnant - Finistère,44730,observation-203110e8-f09d-456f-893c-64919adb1284,https://biolit.fr/observations/observation-203110e8-f09d-456f-893c-64919adb1284/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100692.JPG,,FALSE, +N1,59864,sortie-67eb463d-543a-4c9f-bf65-72816bfbe8ed,https://biolit.fr/sorties/sortie-67eb463d-543a-4c9f-bf65-72816bfbe8ed/,Phil,,03/03/2018,12.0:25,12.0000000,47.863512000000,-4.065186000000,,Fouesnant - Finistère,44732,observation-67eb463d-543a-4c9f-bf65-72816bfbe8ed,https://biolit.fr/observations/observation-67eb463d-543a-4c9f-bf65-72816bfbe8ed/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100690.JPG,,FALSE, +N1,59865,sortie-c73a396c-8f06-438d-9b22-7b6d0b1e7488,https://biolit.fr/sorties/sortie-c73a396c-8f06-438d-9b22-7b6d0b1e7488/,Phil,,03/03/2018,12.0:25,12.0000000,47.863362000000,-4.065336000000,,Fouesnant - Finistère,44734,observation-c73a396c-8f06-438d-9b22-7b6d0b1e7488,https://biolit.fr/observations/observation-c73a396c-8f06-438d-9b22-7b6d0b1e7488/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100689.JPG,,FALSE, +N1,59866,sortie-ee818dcb-2316-4182-a73d-2c5f9f192bc4,https://biolit.fr/sorties/sortie-ee818dcb-2316-4182-a73d-2c5f9f192bc4/,Phil,,03/03/2018,12.0:25,12.0000000,47.863428000000,-4.065357000000,,Fouesnant - Finistère,44736,observation-ee818dcb-2316-4182-a73d-2c5f9f192bc4,https://biolit.fr/observations/observation-ee818dcb-2316-4182-a73d-2c5f9f192bc4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100688.JPG,,FALSE, +N1,59867,sortie-7abacb38-5cde-437b-85d9-440734cd5802,https://biolit.fr/sorties/sortie-7abacb38-5cde-437b-85d9-440734cd5802/,Phil,,03/03/2018,12.0:25,12.0000000,47.863529000000,-4.065443000000,,Fouesnant - Finistère,44738,observation-7abacb38-5cde-437b-85d9-440734cd5802,https://biolit.fr/observations/observation-7abacb38-5cde-437b-85d9-440734cd5802/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100687.JPG,,FALSE, +N1,59868,sortie-8de340af-f258-44ed-8af1-83ea473eeaf1,https://biolit.fr/sorties/sortie-8de340af-f258-44ed-8af1-83ea473eeaf1/,Phil,,03/03/2018,12.0:25,12.0000000,47.863480000000,-4.065315000000,,Fouesnant - Finistère,44740,observation-8de340af-f258-44ed-8af1-83ea473eeaf1,https://biolit.fr/observations/observation-8de340af-f258-44ed-8af1-83ea473eeaf1/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100686.JPG,,FALSE, +N1,59869,sortie-7a455a79-70c8-4139-b920-cf625201bf9d,https://biolit.fr/sorties/sortie-7a455a79-70c8-4139-b920-cf625201bf9d/,Phil,,03/03/2018,12.0:25,12.0:25,47.863097000000,-4.065379000000,,Fouesnant - Finistère,44742,observation-7a455a79-70c8-4139-b920-cf625201bf9d,https://biolit.fr/observations/observation-7a455a79-70c8-4139-b920-cf625201bf9d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100684.JPG,,FALSE, +N1,59870,sortie-2a3adb8d-9b70-4c03-92d7-138c66953d38,https://biolit.fr/sorties/sortie-2a3adb8d-9b70-4c03-92d7-138c66953d38/,Phil,,03/03/2018,12.0:25,12.0:25,47.862985000000,-4.065593000000,,Fouesnant - Finistère,44744,observation-2a3adb8d-9b70-4c03-92d7-138c66953d38,https://biolit.fr/observations/observation-2a3adb8d-9b70-4c03-92d7-138c66953d38/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100682.JPG,,FALSE, +N1,59871,sortie-b92d846d-8ddd-4b0c-aac8-5c84c046b5f1,https://biolit.fr/sorties/sortie-b92d846d-8ddd-4b0c-aac8-5c84c046b5f1/,Phil,,03/03/2018,12.0:25,12.0:25,47.862996000000,-4.065587000000,,Fouesnant - Finistère,44746,observation-b92d846d-8ddd-4b0c-aac8-5c84c046b5f1,https://biolit.fr/observations/observation-b92d846d-8ddd-4b0c-aac8-5c84c046b5f1/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100680.JPG,,FALSE, +N1,59872,sortie-a81cdf24-3e83-452c-bb7b-6ae4cfe147e7,https://biolit.fr/sorties/sortie-a81cdf24-3e83-452c-bb7b-6ae4cfe147e7/,Phil,,03/03/2018,12.0:25,12.0:25,47.862890000000,-4.065722000000,,Fouesnant - Finistère,44748,observation-a81cdf24-3e83-452c-bb7b-6ae4cfe147e7,https://biolit.fr/observations/observation-a81cdf24-3e83-452c-bb7b-6ae4cfe147e7/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1100678.JPG,,TRUE, +N1,59873,sortie-7b4da8ae-ee86-4294-a6f2-13da08c1f539,https://biolit.fr/sorties/sortie-7b4da8ae-ee86-4294-a6f2-13da08c1f539/,Phil,,03/03/2018,12.0:25,12.0:25,47.863518000000,-4.065529000000,,Fouesnant - Finistère,44750,observation-7b4da8ae-ee86-4294-a6f2-13da08c1f539,https://biolit.fr/observations/observation-7b4da8ae-ee86-4294-a6f2-13da08c1f539/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/P1100676.JPG,,TRUE, +N1,59874,sortie-cff00597-d971-4ee0-b351-d1e0b90b43f8,https://biolit.fr/sorties/sortie-cff00597-d971-4ee0-b351-d1e0b90b43f8/,Phil,,03/03/2018,12.0000000,12.0:25,47.863503000000,-4.065744000000,,Fouesnant - Finistère,44752,observation-cff00597-d971-4ee0-b351-d1e0b90b43f8,https://biolit.fr/observations/observation-cff00597-d971-4ee0-b351-d1e0b90b43f8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100675.JPG,,FALSE, +N1,59875,sortie-1c5f4024-bfbc-4a00-a819-a5e2d5f2662d,https://biolit.fr/sorties/sortie-1c5f4024-bfbc-4a00-a819-a5e2d5f2662d/,Phil,,03/03/2018,12.0000000,12.0000000,47.863186000000,-4.066185000000,,Fouesnant - Finistère,44754,observation-1c5f4024-bfbc-4a00-a819-a5e2d5f2662d,https://biolit.fr/observations/observation-1c5f4024-bfbc-4a00-a819-a5e2d5f2662d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100671.JPG,,FALSE, +N1,59876,sortie-ce067550-e946-4721-87d1-8939a9a2e7ce,https://biolit.fr/sorties/sortie-ce067550-e946-4721-87d1-8939a9a2e7ce/,Phil,,03/03/2018,12.0000000,12.0000000,47.863054000000,-4.065872000000,,Fouesnant - Finistère,44756,observation-ce067550-e946-4721-87d1-8939a9a2e7ce,https://biolit.fr/observations/observation-ce067550-e946-4721-87d1-8939a9a2e7ce/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100670.JPG,,FALSE, +N1,59877,sortie-c54563a9-28c1-42c3-87c0-768ee1bc563f,https://biolit.fr/sorties/sortie-c54563a9-28c1-42c3-87c0-768ee1bc563f/,Phil,,03/03/2018,12.0000000,12.0000000,47.863160000000,-4.066038000000,,Fouesnant - Finistère,44758,observation-c54563a9-28c1-42c3-87c0-768ee1bc563f,https://biolit.fr/observations/observation-c54563a9-28c1-42c3-87c0-768ee1bc563f/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100662.JPG,,FALSE, +N1,59878,sortie-6610db00-7702-46b8-a5ea-f75b449bd466,https://biolit.fr/sorties/sortie-6610db00-7702-46b8-a5ea-f75b449bd466/,Phil,,03/03/2018,12.0:15,12.0000000,47.86319800000,-4.066308000000,,Fouesnant - Finistère,44760,observation-6610db00-7702-46b8-a5ea-f75b449bd466,https://biolit.fr/observations/observation-6610db00-7702-46b8-a5ea-f75b449bd466/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100661.JPG,,FALSE, +N1,59879,sortie-e9cbacd4-0820-455f-b929-66b54345329b,https://biolit.fr/sorties/sortie-e9cbacd4-0820-455f-b929-66b54345329b/,Phil,,03/03/2018,12.0:15,12.0000000,47.863187000000,-4.066516000000,,Fouesnant - Finistère,44762,observation-e9cbacd4-0820-455f-b929-66b54345329b,https://biolit.fr/observations/observation-e9cbacd4-0820-455f-b929-66b54345329b/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100660.JPG,,FALSE, +N1,59880,sortie-eb54b8f0-1344-4d98-9d03-a222c738c19f,https://biolit.fr/sorties/sortie-eb54b8f0-1344-4d98-9d03-a222c738c19f/,Phil,,03/03/2018,12.0:15,12.0000000,47.863241000000,-4.066452000000,,Fouesnant - Finistère,44764,observation-eb54b8f0-1344-4d98-9d03-a222c738c19f,https://biolit.fr/observations/observation-eb54b8f0-1344-4d98-9d03-a222c738c19f/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100659.JPG,,FALSE, +N1,59881,sortie-a46309bc-1ec0-42e1-940b-061a6e045be3,https://biolit.fr/sorties/sortie-a46309bc-1ec0-42e1-940b-061a6e045be3/,Phil,,03/03/2018,12.0:15,12.0:15,47.862709000000,-4.066881000000,,Fouesnant - Finistère,44766,observation-a46309bc-1ec0-42e1-940b-061a6e045be3,https://biolit.fr/observations/observation-a46309bc-1ec0-42e1-940b-061a6e045be3/,Scrobicularia plana,Scrobiculaire,,https://biolit.fr/wp-content/uploads/2023/07/P1100674.JPG,,TRUE, +N1,59882,sortie-218383c5-6df4-4fa3-9fb1-04cca6531447,https://biolit.fr/sorties/sortie-218383c5-6df4-4fa3-9fb1-04cca6531447/,Phil,,03/03/2018,12.0:15,12.0:15,47.862830000000,-4.066752000000,,Fouesnant - Finistère,44768,observation-218383c5-6df4-4fa3-9fb1-04cca6531447,https://biolit.fr/observations/observation-218383c5-6df4-4fa3-9fb1-04cca6531447/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1100658.JPG,,TRUE, +N1,59883,sortie-fe87608c-5aa7-4399-9e5c-7f09a2f253d1,https://biolit.fr/sorties/sortie-fe87608c-5aa7-4399-9e5c-7f09a2f253d1/,Phil,,03/03/2018,12.0:15,13.0:15,47.862851000000,-4.066628000000,,Fouesnant - Finistère,44770,observation-fe87608c-5aa7-4399-9e5c-7f09a2f253d1,https://biolit.fr/observations/observation-fe87608c-5aa7-4399-9e5c-7f09a2f253d1/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100657.JPG,,FALSE, +N1,59884,sortie-74a4783d-e0ae-442c-9caa-9ebb7c09d0bd,https://biolit.fr/sorties/sortie-74a4783d-e0ae-442c-9caa-9ebb7c09d0bd/,Phil,,03/08/2018,18.0000000,18.0000000,48.175621000000,-4.291770000000,,Plomodiern - Finistère,44772,observation-74a4783d-e0ae-442c-9caa-9ebb7c09d0bd,https://biolit.fr/observations/observation-74a4783d-e0ae-442c-9caa-9ebb7c09d0bd/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/P1100795.JPG,,TRUE, +N1,59884,sortie-74a4783d-e0ae-442c-9caa-9ebb7c09d0bd,https://biolit.fr/sorties/sortie-74a4783d-e0ae-442c-9caa-9ebb7c09d0bd/,Phil,,03/08/2018,18.0000000,18.0000000,48.175621000000,-4.291770000000,,Plomodiern - Finistère,44774,observation-74a4783d-e0ae-442c-9caa-9ebb7c09d0bd-2,https://biolit.fr/observations/observation-74a4783d-e0ae-442c-9caa-9ebb7c09d0bd-2/,Laevicardium crassum,Bucarde de Norvège,,https://biolit.fr/wp-content/uploads/2023/07/P1100796.JPG,,TRUE, +N1,59885,sortie-a9da75e2-f263-4db2-9ca1-d0d02b08434e,https://biolit.fr/sorties/sortie-a9da75e2-f263-4db2-9ca1-d0d02b08434e/,Phil,,3/15/2018 0:00,16.0:25,16.0:25,47.836042000000,-4.167517000000,,Loctudy Finistère,44776,observation-a9da75e2-f263-4db2-9ca1-d0d02b08434e,https://biolit.fr/observations/observation-a9da75e2-f263-4db2-9ca1-d0d02b08434e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100833.JPG,,FALSE, +N1,59885,sortie-a9da75e2-f263-4db2-9ca1-d0d02b08434e,https://biolit.fr/sorties/sortie-a9da75e2-f263-4db2-9ca1-d0d02b08434e/,Phil,,3/15/2018 0:00,16.0:25,16.0:25,47.836042000000,-4.167517000000,,Loctudy Finistère,44778,observation-a9da75e2-f263-4db2-9ca1-d0d02b08434e-2,https://biolit.fr/observations/observation-a9da75e2-f263-4db2-9ca1-d0d02b08434e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100834.JPG,,FALSE, +N1,59886,sortie-ca3bcc15-b97a-432c-aa37-c883e5367052,https://biolit.fr/sorties/sortie-ca3bcc15-b97a-432c-aa37-c883e5367052/,symon et joshua,,3/25/2018 0:00,14.0000000,14.0:15,43.070523000000,5.793818000000,,six fours 83,44780,observation-ca3bcc15-b97a-432c-aa37-c883e5367052,https://biolit.fr/observations/observation-ca3bcc15-b97a-432c-aa37-c883e5367052/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180325_121614-scaled.jpg,,TRUE, +N1,59886,sortie-ca3bcc15-b97a-432c-aa37-c883e5367052,https://biolit.fr/sorties/sortie-ca3bcc15-b97a-432c-aa37-c883e5367052/,symon et joshua,,3/25/2018 0:00,14.0000000,14.0:15,43.070523000000,5.793818000000,,six fours 83,44782,observation-ca3bcc15-b97a-432c-aa37-c883e5367052-2,https://biolit.fr/observations/observation-ca3bcc15-b97a-432c-aa37-c883e5367052-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180325_121628-scaled.jpg,,FALSE, +N1,59887,sortie-3aea5f44-f44e-4cbb-9058-b22ea4cfd119,https://biolit.fr/sorties/sortie-3aea5f44-f44e-4cbb-9058-b22ea4cfd119/,symon et joshua,,3/25/2018 0:00,11.0000000,12.0000000,43.070523000000,5.793818000000,,six fours 83,44784,observation-3aea5f44-f44e-4cbb-9058-b22ea4cfd119,https://biolit.fr/observations/observation-3aea5f44-f44e-4cbb-9058-b22ea4cfd119/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180325_121614-scaled.jpg,,TRUE, +N1,59887,sortie-3aea5f44-f44e-4cbb-9058-b22ea4cfd119,https://biolit.fr/sorties/sortie-3aea5f44-f44e-4cbb-9058-b22ea4cfd119/,symon et joshua,,3/25/2018 0:00,11.0000000,12.0000000,43.070523000000,5.793818000000,,six fours 83,44785,observation-3aea5f44-f44e-4cbb-9058-b22ea4cfd119-2,https://biolit.fr/observations/observation-3aea5f44-f44e-4cbb-9058-b22ea4cfd119-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180325_121628-scaled.jpg,,FALSE, +N1,59888,sortie-30f33b15-2234-4648-9c77-778f53a99170,https://biolit.fr/sorties/sortie-30f33b15-2234-4648-9c77-778f53a99170/,cigale33,,3/23/2018 0:00,21.0000000,23.0000000,43.374051000000,-1.783155000000,,Hendaye,44786,observation-30f33b15-2234-4648-9c77-778f53a99170,https://biolit.fr/observations/observation-30f33b15-2234-4648-9c77-778f53a99170/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_0763-scaled.jpg,,FALSE, +N1,59889,sortie-2cc1050e-9b07-4ac8-82f6-19af3dfe9133,https://biolit.fr/sorties/sortie-2cc1050e-9b07-4ac8-82f6-19af3dfe9133/,cm1 cm2 Louis Marin,,12/19/2017 0:00,9.0000000,11.0000000,43.166275000000,5.605887000000,,Plage du grand Mugel,44788,observation-2cc1050e-9b07-4ac8-82f6-19af3dfe9133,https://biolit.fr/observations/observation-2cc1050e-9b07-4ac8-82f6-19af3dfe9133/,,,,https://biolit.fr/wp-content/uploads/2023/07/15 Etoile de mer.jpg,,FALSE, +N1,59890,sortie-9a2677ce-88e2-4f51-badc-0dee967a0255,https://biolit.fr/sorties/sortie-9a2677ce-88e2-4f51-badc-0dee967a0255/,cm1 cm2 Louis Marin,,12/19/2017 0:00,9.0000000,11.0000000,43.1661380000,5.605867000000,,Plage du grand Mugel,44790,observation-9a2677ce-88e2-4f51-badc-0dee967a0255,https://biolit.fr/observations/observation-9a2677ce-88e2-4f51-badc-0dee967a0255/,Maja crispata,Petite araignée de mer,,https://biolit.fr/wp-content/uploads/2023/07/8 Maja Crispata ARAIGNEE DE MER (CARAPACE).jpg,,TRUE, +N1,59891,sortie-417207d6-049c-4f34-bad2-9b42a5c43fb0,https://biolit.fr/sorties/sortie-417207d6-049c-4f34-bad2-9b42a5c43fb0/,cm1 cm2 Louis Marin,,12/19/2017 0:00,9.0000000,11.0000000,43.166256000000,5.605881000000,,Plage du grand Mugel,44792,observation-417207d6-049c-4f34-bad2-9b42a5c43fb0,https://biolit.fr/observations/observation-417207d6-049c-4f34-bad2-9b42a5c43fb0/,,,,https://biolit.fr/wp-content/uploads/2023/07/13 Racines de posidonie-1547.jpg,,FALSE, +N1,59892,sortie-bcf6e718-ec78-489e-8ce6-872c952dd855,https://biolit.fr/sorties/sortie-bcf6e718-ec78-489e-8ce6-872c952dd855/,cm1 cm2 Louis Marin,,12/19/2017 0:00,9.0000000,11.0000000,43.164970000000,5.606016000000,,Plage Du grand Mugel,44794,observation-bcf6e718-ec78-489e-8ce6-872c952dd855,https://biolit.fr/observations/observation-bcf6e718-ec78-489e-8ce6-872c952dd855/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/12 sphaerococcus coronopifolius SPHEROCOQUE-3226.jpg,,TRUE, +N1,59893,sortie-cfb13659-87fc-455c-8785-2e8d886094e4,https://biolit.fr/sorties/sortie-cfb13659-87fc-455c-8785-2e8d886094e4/,cm1 cm2 Louis Marin,,3/19/2017 0:00,9.0000000,11.0000000,43.166452000000,5.606067000000,,Plage du grand Mugel,44796,observation-cfb13659-87fc-455c-8785-2e8d886094e4,https://biolit.fr/observations/observation-cfb13659-87fc-455c-8785-2e8d886094e4/,,,,https://biolit.fr/wp-content/uploads/2023/07/11 pelotes de posidonie.jpg,,FALSE, +N1,59894,sortie-03609f0a-f1b8-41f9-9f5e-32c105f4724c,https://biolit.fr/sorties/sortie-03609f0a-f1b8-41f9-9f5e-32c105f4724c/,cm1 cm2 Louis Marin,,12/19/2017 0:00,9.0000000,11.0000000,43.166460000000,5.605994000000,,Plage du grand Mugel,44798,observation-03609f0a-f1b8-41f9-9f5e-32c105f4724c,https://biolit.fr/observations/observation-03609f0a-f1b8-41f9-9f5e-32c105f4724c/,,,,https://biolit.fr/wp-content/uploads/2023/07/10 Eponge-5475.jpg,,FALSE, +N1,59895,sortie-3f9066e3-2f19-411b-9e50-b18204204bae,https://biolit.fr/sorties/sortie-3f9066e3-2f19-411b-9e50-b18204204bae/,cm1 cm2 Louis Marin,,12/19/2017 0:00,9.0000000,11.0000000,43.16625300000,5.605886000000,,Plage du grand Mugel,44800,observation-3f9066e3-2f19-411b-9e50-b18204204bae,https://biolit.fr/observations/observation-3f9066e3-2f19-411b-9e50-b18204204bae/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/9 gibbules-7274.jpg,,TRUE, +N1,59896,sortie-19e7af2c-cb5a-40b6-a489-0f6c1d786ce4,https://biolit.fr/sorties/sortie-19e7af2c-cb5a-40b6-a489-0f6c1d786ce4/,cm1 cm2 Louis Marin,,12/19/2017 0:00,9.0000000,11.0000000,43.166233000000,5.605888000000,,plage du grand mugel,44802,observation-19e7af2c-cb5a-40b6-a489-0f6c1d786ce4,https://biolit.fr/observations/observation-19e7af2c-cb5a-40b6-a489-0f6c1d786ce4/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/8 columbella rustica COLUMBELLE RUSTIQUE-7155.jpg,,TRUE, +N1,59897,sortie-c4dd6db2-1afb-48ca-8de9-6b2d9e4ce12f,https://biolit.fr/sorties/sortie-c4dd6db2-1afb-48ca-8de9-6b2d9e4ce12f/,cm1 cm2 Louis Marin,,12/19/2017 0:00,9.0000000,11.0000000,43.166217000000,5.605800000000,,Plage du grand Mugel,44804,observation-c4dd6db2-1afb-48ca-8de9-6b2d9e4ce12f,https://biolit.fr/observations/observation-c4dd6db2-1afb-48ca-8de9-6b2d9e4ce12f/,Vermetus triquetrus,Petit vermet,,https://biolit.fr/wp-content/uploads/2023/07/7 Monia ANOMIE PELURE D'OIGNON.jpg,,TRUE, +N1,59898,sortie-2abf7627-a382-461c-8dfe-5edda52539a1,https://biolit.fr/sorties/sortie-2abf7627-a382-461c-8dfe-5edda52539a1/,cm1 cm2 Louis Marin,,12/19/2017 0:00,9.0000000,11.0000000,43.166309000000,5.605927000000,,plage du grand mugel,44806,observation-2abf7627-a382-461c-8dfe-5edda52539a1,https://biolit.fr/observations/observation-2abf7627-a382-461c-8dfe-5edda52539a1/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/5 Patella Vulgata PATELLE COMMUNE-6060.jpg,,TRUE, +N1,59899,sortie-fb4ca079-d82c-40ba-86c3-307ad921bd41,https://biolit.fr/sorties/sortie-fb4ca079-d82c-40ba-86c3-307ad921bd41/,cm1 cm2 Louis Marin,,12/19/2017 0:00,9.0000000,11.0000000,43.166318000000,5.606351000000,,Plage du grand Mugel,44808,observation-fb4ca079-d82c-40ba-86c3-307ad921bd41,https://biolit.fr/observations/observation-fb4ca079-d82c-40ba-86c3-307ad921bd41/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/2023/07/4 Haliotis ORMEAU-2364.jpg,,TRUE, +N1,59900,sortie-0b548f1e-228e-44a2-8a84-44349bdd802d,https://biolit.fr/sorties/sortie-0b548f1e-228e-44a2-8a84-44349bdd802d/,cm1 cm2 Louis Marin,,12/19/2017 0:00,9.0000000,11.0000000,43.16630900000,5.605911000000,,plage du grand mugel,44810,observation-0b548f1e-228e-44a2-8a84-44349bdd802d,https://biolit.fr/observations/observation-0b548f1e-228e-44a2-8a84-44349bdd802d/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/2 Arca noae ARCHE DE NOE-8084.jpg,,TRUE, +N1,59901,sortie-51e58033-39ce-4186-89af-8e674e1f7db3,https://biolit.fr/sorties/sortie-51e58033-39ce-4186-89af-8e674e1f7db3/,cm1 cm2 Louis Marin,,12/19/2017 0:00,9.0000000,11.0000000,43.166269000000,5.60587500000,,Plage du grand Mugel,44812,observation-51e58033-39ce-4186-89af-8e674e1f7db3,https://biolit.fr/observations/observation-51e58033-39ce-4186-89af-8e674e1f7db3/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/3 Cerithium vulgatum CERITHE-9098.jpg,,TRUE, +N1,59902,sortie-9326a021-7b17-476e-85fe-d781aa87ba9c,https://biolit.fr/sorties/sortie-9326a021-7b17-476e-85fe-d781aa87ba9c/,cm1 cm2 Louis Marin,,12/19/2017 0:00,9.0000000,11.0000000,43.166268000000,5.605867000000,,Plage du grand Mugel,44814,observation-9326a021-7b17-476e-85fe-d781aa87ba9c,https://biolit.fr/observations/observation-9326a021-7b17-476e-85fe-d781aa87ba9c/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/6 codium bursa BERET BASQUE-7939.jpg,,TRUE, +N1,59903,sortie-d38bb6bc-6f3d-4e34-991b-52adfd8aa812,https://biolit.fr/sorties/sortie-d38bb6bc-6f3d-4e34-991b-52adfd8aa812/,Phil,,3/15/2018 0:00,16.0:25,16.0:25,47.835995000000,-4.167732000000,,Loctudy - Finistère,44816,observation-d38bb6bc-6f3d-4e34-991b-52adfd8aa812,https://biolit.fr/observations/observation-d38bb6bc-6f3d-4e34-991b-52adfd8aa812/,Electra pilosa,Ecorce pileuse,,https://biolit.fr/wp-content/uploads/2023/07/P1100830.JPG,,TRUE, +N1,59904,sortie-7835d3b1-c1f9-4dfe-81d1-0123ae541339,https://biolit.fr/sorties/sortie-7835d3b1-c1f9-4dfe-81d1-0123ae541339/,Phil,,03/03/2018,12.0:25,12.0:25,47.862942000000,-4.066486000000,,Fouesnant - Finistère,44818,observation-7835d3b1-c1f9-4dfe-81d1-0123ae541339,https://biolit.fr/observations/observation-7835d3b1-c1f9-4dfe-81d1-0123ae541339/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1100663.JPG,,TRUE, +N1,59905,sortie-1101e8fd-2443-467f-8ec4-d2e9cfb20492,https://biolit.fr/sorties/sortie-1101e8fd-2443-467f-8ec4-d2e9cfb20492/,Phil,,03/08/2018,18.0:35,18.0:45,48.174768000000,-4.292873000000,,Plomodiern - Finistère,44820,observation-1101e8fd-2443-467f-8ec4-d2e9cfb20492,https://biolit.fr/observations/observation-1101e8fd-2443-467f-8ec4-d2e9cfb20492/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/P1100768.JPG,,TRUE, +N1,59906,sortie-ddad082c-fd96-4619-9054-59a26313d9dc,https://biolit.fr/sorties/sortie-ddad082c-fd96-4619-9054-59a26313d9dc/,Phil,,03/08/2018,18.0:35,18.0:45,48.17491100000,-4.293216000000,,Plomodiern - Finistère,44822,observation-ddad082c-fd96-4619-9054-59a26313d9dc,https://biolit.fr/observations/observation-ddad082c-fd96-4619-9054-59a26313d9dc/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/P1100776.JPG,,TRUE, +N1,59907,sortie-dd9cf161-8784-4670-b2b3-5577384bcedb,https://biolit.fr/sorties/sortie-dd9cf161-8784-4670-b2b3-5577384bcedb/,Phil,,03/08/2018,18.0:35,18.0:45,48.175174000000,-4.293088000000,,Plomodiern - Finistère,44824,observation-dd9cf161-8784-4670-b2b3-5577384bcedb,https://biolit.fr/observations/observation-dd9cf161-8784-4670-b2b3-5577384bcedb/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/P1100784.JPG,,TRUE, +N1,59908,sortie-e78efa8a-7779-4f60-94b6-124055648951,https://biolit.fr/sorties/sortie-e78efa8a-7779-4f60-94b6-124055648951/,Phil,,03/08/2018,18.0:35,18.0:45,48.174803000000,-4.293680000000,,Plomodiern - Finistère,44826,observation-e78efa8a-7779-4f60-94b6-124055648951,https://biolit.fr/observations/observation-e78efa8a-7779-4f60-94b6-124055648951/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/P1100791.JPG,,TRUE, +N1,59909,sortie-8bfa9be3-4b1a-480c-99f2-4d2b5f157733,https://biolit.fr/sorties/sortie-8bfa9be3-4b1a-480c-99f2-4d2b5f157733/,Phil,,3/15/2018 0:00,16.0000000,16.0000000,47.835809000000,-4.168058000000,,Loctudy - Finistère,44828,observation-8bfa9be3-4b1a-480c-99f2-4d2b5f157733,https://biolit.fr/observations/observation-8bfa9be3-4b1a-480c-99f2-4d2b5f157733/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100827_0.JPG,,FALSE, +N1,59910,sortie-d76fc3da-5613-491b-9a2b-6365f1789e45,https://biolit.fr/sorties/sortie-d76fc3da-5613-491b-9a2b-6365f1789e45/,école Application Frédéric Mistral,,3/14/2018 0:00,14.0000000,15.0000000,43.118081000000,5.803125000000,,plage de la Gorguette,44830,observation-d76fc3da-5613-491b-9a2b-6365f1789e45,https://biolit.fr/observations/observation-d76fc3da-5613-491b-9a2b-6365f1789e45/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1613-scaled.jpg,,TRUE, +N1,59911,sortie-7171e5e1-16be-4809-8423-15c94aaca667,https://biolit.fr/sorties/sortie-7171e5e1-16be-4809-8423-15c94aaca667/,école Application Frédéric Mistral,,3/14/2018 0:00,14.0000000,14.0000000,43.115231000000,5.798361000000,,plage de gorguette,44832,observation-7171e5e1-16be-4809-8423-15c94aaca667,https://biolit.fr/observations/observation-7171e5e1-16be-4809-8423-15c94aaca667/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1663-scaled.jpg,,TRUE, +N1,59912,sortie-11e07bf7-578d-40b7-9a07-d138d1ad5dde,https://biolit.fr/sorties/sortie-11e07bf7-578d-40b7-9a07-d138d1ad5dde/,école Application Frédéric Mistral,,3/14/2018 0:00,14.0000000,14.0000000,43.121796000000,5.803809000000,,plage de la Gorguette,44834,observation-11e07bf7-578d-40b7-9a07-d138d1ad5dde,https://biolit.fr/observations/observation-11e07bf7-578d-40b7-9a07-d138d1ad5dde/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1603-scaled.jpg,,FALSE, +N1,59913,sortie-f070eb11-dbbd-4265-bbe7-47c91daac1c5,https://biolit.fr/sorties/sortie-f070eb11-dbbd-4265-bbe7-47c91daac1c5/,Arsène VASSAL,,3/18/2018 0:00,9.0000000,11.0000000,48.559240000000,-2.733038000000,,"Martin-Plage, PLERIN",44836,observation-f070eb11-dbbd-4265-bbe7-47c91daac1c5,https://biolit.fr/observations/observation-f070eb11-dbbd-4265-bbe7-47c91daac1c5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Chrysomèle russe (chrysolina rossia gypsophile) (1).jpg,,FALSE, +N1,59913,sortie-f070eb11-dbbd-4265-bbe7-47c91daac1c5,https://biolit.fr/sorties/sortie-f070eb11-dbbd-4265-bbe7-47c91daac1c5/,Arsène VASSAL,,3/18/2018 0:00,9.0000000,11.0000000,48.559240000000,-2.733038000000,,"Martin-Plage, PLERIN",44838,observation-f070eb11-dbbd-4265-bbe7-47c91daac1c5-2,https://biolit.fr/observations/observation-f070eb11-dbbd-4265-bbe7-47c91daac1c5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Chrysomèle russe (chrysolina rossia gypsophile) (3).jpg,,FALSE, +N1,59914,sortie-07c41d6c-87c4-4f69-8030-c8946b2cc543,https://biolit.fr/sorties/sortie-07c41d6c-87c4-4f69-8030-c8946b2cc543/,Phil,,2/26/2018 0:00,12.000005,12.0000000,48.112165000000,-4.284367000000,,Plonevez-Porzay - Finistère,44840,observation-07c41d6c-87c4-4f69-8030-c8946b2cc543,https://biolit.fr/observations/observation-07c41d6c-87c4-4f69-8030-c8946b2cc543/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100532.JPG,,FALSE, +N1,59914,sortie-07c41d6c-87c4-4f69-8030-c8946b2cc543,https://biolit.fr/sorties/sortie-07c41d6c-87c4-4f69-8030-c8946b2cc543/,Phil,,2/26/2018 0:00,12.000005,12.0000000,48.112165000000,-4.284367000000,,Plonevez-Porzay - Finistère,44842,observation-07c41d6c-87c4-4f69-8030-c8946b2cc543-2,https://biolit.fr/observations/observation-07c41d6c-87c4-4f69-8030-c8946b2cc543-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100531.JPG,,FALSE, +N1,59915,sortie-dfc9757b-e64f-4d0c-b6e6-888272976d04,https://biolit.fr/sorties/sortie-dfc9757b-e64f-4d0c-b6e6-888272976d04/,Phil,,2/26/2018 0:00,12.000005,12.0000000,48.112259000000,-4.284453000000,,Plonevez-Porzay - Finistère,44844,observation-dfc9757b-e64f-4d0c-b6e6-888272976d04,https://biolit.fr/observations/observation-dfc9757b-e64f-4d0c-b6e6-888272976d04/,Macomangulus tenuis,Telline-papillon,,https://biolit.fr/wp-content/uploads/2023/07/P1100533.JPG,,TRUE, +N1,59915,sortie-dfc9757b-e64f-4d0c-b6e6-888272976d04,https://biolit.fr/sorties/sortie-dfc9757b-e64f-4d0c-b6e6-888272976d04/,Phil,,2/26/2018 0:00,12.000005,12.0000000,48.112259000000,-4.284453000000,,Plonevez-Porzay - Finistère,44846,observation-dfc9757b-e64f-4d0c-b6e6-888272976d04-2,https://biolit.fr/observations/observation-dfc9757b-e64f-4d0c-b6e6-888272976d04-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100535.JPG,,FALSE, +N1,59916,sortie-aeac9b0f-ebd0-41c6-88ab-294c68013349,https://biolit.fr/sorties/sortie-aeac9b0f-ebd0-41c6-88ab-294c68013349/,Phil,,3/15/2018 0:00,16.0:25,16.0:25,47.835949000000,-4.168015000000,,Loctudy - Finistère,44848,observation-aeac9b0f-ebd0-41c6-88ab-294c68013349,https://biolit.fr/observations/observation-aeac9b0f-ebd0-41c6-88ab-294c68013349/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/P1100826_0.JPG,,TRUE, +N1,59917,sortie-6b5b532a-0a2d-43ad-8f31-845435278c0a,https://biolit.fr/sorties/sortie-6b5b532a-0a2d-43ad-8f31-845435278c0a/,Phil,,3/15/2018 0:00,16.0000000,16.0000000,47.835836000000,-4.168161000000,,Loctudy - Finistère,44850,observation-6b5b532a-0a2d-43ad-8f31-845435278c0a,https://biolit.fr/observations/observation-6b5b532a-0a2d-43ad-8f31-845435278c0a/,Laevicardium crassum,Bucarde de Norvège,,https://biolit.fr/wp-content/uploads/2023/07/P1100823.JPG,,TRUE, +N1,59917,sortie-6b5b532a-0a2d-43ad-8f31-845435278c0a,https://biolit.fr/sorties/sortie-6b5b532a-0a2d-43ad-8f31-845435278c0a/,Phil,,3/15/2018 0:00,16.0000000,16.0000000,47.835836000000,-4.168161000000,,Loctudy - Finistère,44852,observation-6b5b532a-0a2d-43ad-8f31-845435278c0a-2,https://biolit.fr/observations/observation-6b5b532a-0a2d-43ad-8f31-845435278c0a-2/,Laevicardium crassum,Bucarde de Norvège,,https://biolit.fr/wp-content/uploads/2023/07/P1100824.JPG,,TRUE, +N1,59918,sortie-e7d71c08-c3d3-4af7-bbc4-53dfe0e37b5b,https://biolit.fr/sorties/sortie-e7d71c08-c3d3-4af7-bbc4-53dfe0e37b5b/,Phil,,2/26/2018 0:00,12.0000000,12.0:15,48.112707000000,-4.28392500000,,Plonévez-Porzay - Finistère,44854,observation-e7d71c08-c3d3-4af7-bbc4-53dfe0e37b5b,https://biolit.fr/observations/observation-e7d71c08-c3d3-4af7-bbc4-53dfe0e37b5b/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1100539.JPG,,TRUE, +N1,59918,sortie-e7d71c08-c3d3-4af7-bbc4-53dfe0e37b5b,https://biolit.fr/sorties/sortie-e7d71c08-c3d3-4af7-bbc4-53dfe0e37b5b/,Phil,,2/26/2018 0:00,12.0000000,12.0:15,48.112707000000,-4.28392500000,,Plonévez-Porzay - Finistère,44856,observation-e7d71c08-c3d3-4af7-bbc4-53dfe0e37b5b-2,https://biolit.fr/observations/observation-e7d71c08-c3d3-4af7-bbc4-53dfe0e37b5b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100542.JPG,,FALSE, +N1,59919,sortie-54e25bca-7ff4-4e23-a536-c9588a72d07a,https://biolit.fr/sorties/sortie-54e25bca-7ff4-4e23-a536-c9588a72d07a/,Phil,,03/08/2018,18.0000000,18.0:35,48.173087000000,-4.292332000000,,Plomodiern - Finistère,44858,observation-54e25bca-7ff4-4e23-a536-c9588a72d07a,https://biolit.fr/observations/observation-54e25bca-7ff4-4e23-a536-c9588a72d07a/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/P1100766.JPG,,TRUE, +N1,59919,sortie-54e25bca-7ff4-4e23-a536-c9588a72d07a,https://biolit.fr/sorties/sortie-54e25bca-7ff4-4e23-a536-c9588a72d07a/,Phil,,03/08/2018,18.0000000,18.0:35,48.173087000000,-4.292332000000,,Plomodiern - Finistère,44860,observation-54e25bca-7ff4-4e23-a536-c9588a72d07a-2,https://biolit.fr/observations/observation-54e25bca-7ff4-4e23-a536-c9588a72d07a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100763.JPG,,FALSE, +N1,59920,sortie-4e50b7b5-e11f-4f03-bd98-8308c15d4789,https://biolit.fr/sorties/sortie-4e50b7b5-e11f-4f03-bd98-8308c15d4789/,Phil,,03/03/2018,12.0000000,12.0:15,47.863073000000,-4.066259000000,,Fouesnant - Finistère,44862,observation-4e50b7b5-e11f-4f03-bd98-8308c15d4789,https://biolit.fr/observations/observation-4e50b7b5-e11f-4f03-bd98-8308c15d4789/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1100653.JPG,,TRUE, +N1,59920,sortie-4e50b7b5-e11f-4f03-bd98-8308c15d4789,https://biolit.fr/sorties/sortie-4e50b7b5-e11f-4f03-bd98-8308c15d4789/,Phil,,03/03/2018,12.0000000,12.0:15,47.863073000000,-4.066259000000,,Fouesnant - Finistère,44864,observation-4e50b7b5-e11f-4f03-bd98-8308c15d4789-2,https://biolit.fr/observations/observation-4e50b7b5-e11f-4f03-bd98-8308c15d4789-2/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1100655.JPG,,TRUE, +N1,59922,sortie-34dba6ce-5720-4260-aa3a-dabe9c3b9860,https://biolit.fr/sorties/sortie-34dba6ce-5720-4260-aa3a-dabe9c3b9860/,CM1 la Garde,,12/19/2017 0:00,14.0000000,16.0000000,43.16494100000,5.605966000000,,Plage du petit Mugel,44868,observation-34dba6ce-5720-4260-aa3a-dabe9c3b9860,https://biolit.fr/observations/observation-34dba6ce-5720-4260-aa3a-dabe9c3b9860/,,,,https://biolit.fr/wp-content/uploads/2023/07/11 pelotes de posidonie.jpg,,FALSE, +N1,59923,sortie-18952c90-2a49-4fa5-99e6-002b460c5b9e,https://biolit.fr/sorties/sortie-18952c90-2a49-4fa5-99e6-002b460c5b9e/,CM1 la Garde,,12/19/2017 0:00,14.0000000,16.0000000,43.164918000000,5.606023000000,,Plage du petit Mugel,44869,observation-18952c90-2a49-4fa5-99e6-002b460c5b9e,https://biolit.fr/observations/observation-18952c90-2a49-4fa5-99e6-002b460c5b9e/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/10 Venus verrucosa PRAIRE COMMUNE-rotated.jpg,,TRUE, +N1,59924,sortie-e189b5ac-543b-49fa-8d76-8a7084843e13,https://biolit.fr/sorties/sortie-e189b5ac-543b-49fa-8d76-8a7084843e13/,CM1 la Garde,,12/19/2017 0:00,14.0000000,16.0000000,43.164938000000,5.606076000000,,La plage du petit mugel,44871,observation-e189b5ac-543b-49fa-8d76-8a7084843e13,https://biolit.fr/observations/observation-e189b5ac-543b-49fa-8d76-8a7084843e13/,,,,https://biolit.fr/wp-content/uploads/2023/07/9 Paracentrotus lividus OURSIN VIOLET.jpg,,FALSE, +N1,59925,sortie-adbb98f8-6cb0-4563-bf50-fdba318f3dac,https://biolit.fr/sorties/sortie-adbb98f8-6cb0-4563-bf50-fdba318f3dac/,CM1 la Garde,,12/19/2017 0:00,14.0000000,16.0000000,43.164924000000,5.606152000000,,Plage du petit Mugel,44873,observation-adbb98f8-6cb0-4563-bf50-fdba318f3dac,https://biolit.fr/observations/observation-adbb98f8-6cb0-4563-bf50-fdba318f3dac/,,,,https://biolit.fr/wp-content/uploads/2023/07/13 Algue rouge.jpg,,FALSE, +N1,59926,sortie-0b9db4f0-7835-4ba5-8e14-fd71c281f28c,https://biolit.fr/sorties/sortie-0b9db4f0-7835-4ba5-8e14-fd71c281f28c/,CM1 la Garde,,12/19/2017 0:00,14.0000000,16.0000000,43.164899000000,5.606019000000,,plage du petit Mugel,44875,observation-0b9db4f0-7835-4ba5-8e14-fd71c281f28c,https://biolit.fr/observations/observation-0b9db4f0-7835-4ba5-8e14-fd71c281f28c/,,,,https://biolit.fr/wp-content/uploads/2023/07/12 holothurie CONCOMBRE DE MER-rotated.jpg,,FALSE, +N1,59927,sortie-46b13f89-84be-47f3-8671-9d50a0b85905,https://biolit.fr/sorties/sortie-46b13f89-84be-47f3-8671-9d50a0b85905/,CM1 la Garde,,12/19/2017 0:00,14.0000000,16.0000000,43.164923000000,5.606064000000,,Plage du petit Mugel,44877,observation-46b13f89-84be-47f3-8671-9d50a0b85905,https://biolit.fr/observations/observation-46b13f89-84be-47f3-8671-9d50a0b85905/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/6 Paracentrotus lividus OURSIN VIOLET_0.jpg,,TRUE, +N1,59931,sortie-42ddf13f-3641-448b-ac17-e447f9ed776a,https://biolit.fr/sorties/sortie-42ddf13f-3641-448b-ac17-e447f9ed776a/,CM1 la Garde,,12/19/2017 0:00,14.0000000,16.0000000,43.118871000000,5.605972000000,,Plage du petit Mugel,44885,observation-42ddf13f-3641-448b-ac17-e447f9ed776a,https://biolit.fr/observations/observation-42ddf13f-3641-448b-ac17-e447f9ed776a/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/1 Codium bursa BERET BASQUE-rotated.jpg,,TRUE, +N1,59932,sortie-cbfd24ca-e2d1-4cac-8e8d-d2d17706d08a,https://biolit.fr/sorties/sortie-cbfd24ca-e2d1-4cac-8e8d-d2d17706d08a/,CM1 la Garde,,12/19/2017 0:00,14.0000000,16.0000000,43.164924000000,5.606036000000,,Plage du petit Mugel,44887,observation-cbfd24ca-e2d1-4cac-8e8d-d2d17706d08a,https://biolit.fr/observations/observation-cbfd24ca-e2d1-4cac-8e8d-d2d17706d08a/,,,,https://biolit.fr/wp-content/uploads/2023/07/5 Jania rubens JANIE ROUGE-rotated.jpg,,FALSE, +N1,59933,sortie-c30fe361-ffb3-489f-8ddb-58f04ba08dd7,https://biolit.fr/sorties/sortie-c30fe361-ffb3-489f-8ddb-58f04ba08dd7/,CM1 la Garde,,12/19/2017 0:00,14.0000000,16.0000000,43.164924000000,5.606036000000,,Plage du petit Mugel,44889,observation-c30fe361-ffb3-489f-8ddb-58f04ba08dd7,https://biolit.fr/observations/observation-c30fe361-ffb3-489f-8ddb-58f04ba08dd7/,,,,https://biolit.fr/wp-content/uploads/2023/07/5 Jania rubens JANIE ROUGE-rotated.jpg,,FALSE, +N1,59934,sortie-9971ad66-865f-48c8-96e3-f835a2ecb991,https://biolit.fr/sorties/sortie-9971ad66-865f-48c8-96e3-f835a2ecb991/,CM1 la Garde,,12/19/2017 0:00,14.0000000,16.0000000,43.164949000000,5.6060150000,,Plage du petit Mugel,44890,observation-9971ad66-865f-48c8-96e3-f835a2ecb991,https://biolit.fr/observations/observation-9971ad66-865f-48c8-96e3-f835a2ecb991/,,,,https://biolit.fr/wp-content/uploads/2023/07/4 Holothurie CONCOMBRE DE MER-rotated.jpg,,FALSE, +N1,59935,sortie-d0d9f502-0a80-4fd1-859a-137c59bd1a08,https://biolit.fr/sorties/sortie-d0d9f502-0a80-4fd1-859a-137c59bd1a08/,CM1 la Garde,,12/19/2017 0:00,14.0000000,16.0000000,43.118871000000,5.605972000000,,Plage du petit Mugel,44892,observation-d0d9f502-0a80-4fd1-859a-137c59bd1a08,https://biolit.fr/observations/observation-d0d9f502-0a80-4fd1-859a-137c59bd1a08/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/1 Codium bursa BERET BASQUE-rotated.jpg,,TRUE, +N1,59936,sortie-23c7654a-45cf-4a7e-a56c-b5f0074e100e,https://biolit.fr/sorties/sortie-23c7654a-45cf-4a7e-a56c-b5f0074e100e/,CM1 la Garde,,12/19/2017 0:00,14.0000000,16.0000000,43.164908000000,5.60610100000,,plage du petit Mugel,44893,observation-23c7654a-45cf-4a7e-a56c-b5f0074e100e,https://biolit.fr/observations/observation-23c7654a-45cf-4a7e-a56c-b5f0074e100e/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/3 arca noae ARCHE DE NOE.jpg,,TRUE, +N1,59937,sortie-13869615-37b4-4e82-8715-e8ba4223a26a,https://biolit.fr/sorties/sortie-13869615-37b4-4e82-8715-e8ba4223a26a/,CM1 la Garde,,12/19/2017 0:00,14.0000000,16.0000000,43.165027000000,5.605961000000,,Plage du petit Mugel,44895,observation-13869615-37b4-4e82-8715-e8ba4223a26a,https://biolit.fr/observations/observation-13869615-37b4-4e82-8715-e8ba4223a26a/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/7 patella vulgata PATELLES COMMUNES.jpg,,TRUE, +N1,59938,sortie-d53528ee-4de7-416d-bcd2-30fbe3bbfd14,https://biolit.fr/sorties/sortie-d53528ee-4de7-416d-bcd2-30fbe3bbfd14/,CM1 la Garde,,12/19/2017 0:00,14.0000000,16.0000000,43.164931000000,5.606026000000,,plage du petit mugel,44897,observation-d53528ee-4de7-416d-bcd2-30fbe3bbfd14,https://biolit.fr/observations/observation-d53528ee-4de7-416d-bcd2-30fbe3bbfd14/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/6 Paracentrotus lividus OURSIN VIOLET.jpg,,TRUE, +N1,59939,sortie-8d5493e8-ae76-4f77-a570-b078ce911623,https://biolit.fr/sorties/sortie-8d5493e8-ae76-4f77-a570-b078ce911623/,CM1 la Garde,,12/19/2017 0:00,14.0000000,16.0000000,43.164942000000,5.60602400000,,plage du petit Mugel ,44899,observation-8d5493e8-ae76-4f77-a570-b078ce911623,https://biolit.fr/observations/observation-8d5493e8-ae76-4f77-a570-b078ce911623/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/2 Codium Bursa BERET BASQUE-rotated.jpg,,TRUE, +N1,59940,sortie-de39c538-7c7f-490c-8670-123209fa7b5c,https://biolit.fr/sorties/sortie-de39c538-7c7f-490c-8670-123209fa7b5c/,Phil,,3/15/2018 0:00,16.0:15,16.0000000,47.835776000000,-4.169351000000,,Loctudy - Finistère,44901,observation-de39c538-7c7f-490c-8670-123209fa7b5c,https://biolit.fr/observations/observation-de39c538-7c7f-490c-8670-123209fa7b5c/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100816.JPG,,FALSE, +N1,59941,sortie-63c30cfb-8d3b-4f2a-8805-c1cac51c0862,https://biolit.fr/sorties/sortie-63c30cfb-8d3b-4f2a-8805-c1cac51c0862/,Phil,,3/15/2018 0:00,15.0000000,16.0000000,47.835067000000,-4.176684000000,,Loctudy - Finistère,44903,observation-63c30cfb-8d3b-4f2a-8805-c1cac51c0862,https://biolit.fr/observations/observation-63c30cfb-8d3b-4f2a-8805-c1cac51c0862/,Cygnus olor,Cygne tuberculé,,https://biolit.fr/wp-content/uploads/2023/07/P1100809.JPG,,TRUE, +N1,59941,sortie-63c30cfb-8d3b-4f2a-8805-c1cac51c0862,https://biolit.fr/sorties/sortie-63c30cfb-8d3b-4f2a-8805-c1cac51c0862/,Phil,,3/15/2018 0:00,15.0000000,16.0000000,47.835067000000,-4.176684000000,,Loctudy - Finistère,44905,observation-63c30cfb-8d3b-4f2a-8805-c1cac51c0862-2,https://biolit.fr/observations/observation-63c30cfb-8d3b-4f2a-8805-c1cac51c0862-2/,Cygnus olor,Cygne tuberculé,,https://biolit.fr/wp-content/uploads/2023/07/P1100801.JPG,,TRUE, +N1,59942,sortie-15bde762-dac0-42f0-ba8e-09444b3a0c81,https://biolit.fr/sorties/sortie-15bde762-dac0-42f0-ba8e-09444b3a0c81/,carmin89,,02/08/2018,12.0000000,12.0000000,43.064740000000,5.869910000000,,Plage du Jonquet,44907,observation-15bde762-dac0-42f0-ba8e-09444b3a0c81,https://biolit.fr/observations/observation-15bde762-dac0-42f0-ba8e-09444b3a0c81/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180208_121821-scaled.jpg,,TRUE, +N1,59942,sortie-15bde762-dac0-42f0-ba8e-09444b3a0c81,https://biolit.fr/sorties/sortie-15bde762-dac0-42f0-ba8e-09444b3a0c81/,carmin89,,02/08/2018,12.0000000,12.0000000,43.064740000000,5.869910000000,,Plage du Jonquet,44909,observation-15bde762-dac0-42f0-ba8e-09444b3a0c81-2,https://biolit.fr/observations/observation-15bde762-dac0-42f0-ba8e-09444b3a0c81-2/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180208_115647-scaled.jpg,,TRUE, +N1,59942,sortie-15bde762-dac0-42f0-ba8e-09444b3a0c81,https://biolit.fr/sorties/sortie-15bde762-dac0-42f0-ba8e-09444b3a0c81/,carmin89,,02/08/2018,12.0000000,12.0000000,43.064740000000,5.869910000000,,Plage du Jonquet,44911,observation-15bde762-dac0-42f0-ba8e-09444b3a0c81-3,https://biolit.fr/observations/observation-15bde762-dac0-42f0-ba8e-09444b3a0c81-3/,Electra posidoniae,Bryozoaire de la posidonie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180208_115707-scaled.jpg,,TRUE, +N1,59942,sortie-15bde762-dac0-42f0-ba8e-09444b3a0c81,https://biolit.fr/sorties/sortie-15bde762-dac0-42f0-ba8e-09444b3a0c81/,carmin89,,02/08/2018,12.0000000,12.0000000,43.064740000000,5.869910000000,,Plage du Jonquet,44913,observation-15bde762-dac0-42f0-ba8e-09444b3a0c81-4,https://biolit.fr/observations/observation-15bde762-dac0-42f0-ba8e-09444b3a0c81-4/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180208_120607-scaled.jpg,,TRUE, +N1,59942,sortie-15bde762-dac0-42f0-ba8e-09444b3a0c81,https://biolit.fr/sorties/sortie-15bde762-dac0-42f0-ba8e-09444b3a0c81/,carmin89,,02/08/2018,12.0000000,12.0000000,43.064740000000,5.869910000000,,Plage du Jonquet,44915,observation-15bde762-dac0-42f0-ba8e-09444b3a0c81-5,https://biolit.fr/observations/observation-15bde762-dac0-42f0-ba8e-09444b3a0c81-5/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180208_115716-scaled.jpg,,TRUE, +N1,59943,sortie-87823edd-1e17-4273-aacf-499adde3c2e6,https://biolit.fr/sorties/sortie-87823edd-1e17-4273-aacf-499adde3c2e6/,Morice,,03/06/2018,15.0000000,17.0000000,48.869947000000,-1.826526000000,,Chausey - Port Marie,44917,observation-87823edd-1e17-4273-aacf-499adde3c2e6,https://biolit.fr/observations/observation-87823edd-1e17-4273-aacf-499adde3c2e6/,Tethya citrina,Orange de mer de Manche Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20180305_165526-scaled.jpg,,TRUE, +N1,59943,sortie-87823edd-1e17-4273-aacf-499adde3c2e6,https://biolit.fr/sorties/sortie-87823edd-1e17-4273-aacf-499adde3c2e6/,Morice,,03/06/2018,15.0000000,17.0000000,48.869947000000,-1.826526000000,,Chausey - Port Marie,44919,observation-87823edd-1e17-4273-aacf-499adde3c2e6-2,https://biolit.fr/observations/observation-87823edd-1e17-4273-aacf-499adde3c2e6-2/,Polymastia penicillus,Eponge à languettes,,https://biolit.fr/wp-content/uploads/2023/07/20180305_165228-scaled.jpg,,TRUE, +N1,59944,sortie-f8d85a83-8576-465f-affc-6151c63a8156,https://biolit.fr/sorties/sortie-f8d85a83-8576-465f-affc-6151c63a8156/,Alanna,,2/15/2018 0:00,14.0000000,14.0000000,43.079596000000,6.124292000000,,Plage de l'Almanarre,44921,observation-f8d85a83-8576-465f-affc-6151c63a8156,https://biolit.fr/observations/observation-f8d85a83-8576-465f-affc-6151c63a8156/,,,,https://biolit.fr/wp-content/uploads/2023/05/007-scaled.jpg,,FALSE, +N1,59945,sortie-17f64c07-8b5f-4739-8003-7975eb61ea6d,https://biolit.fr/sorties/sortie-17f64c07-8b5f-4739-8003-7975eb61ea6d/,Alanna,,11/23/2017 0:00,13.0000000,14.0000000,43.071967000000,6.153099000000,,Plage des Pesquiers,44922,observation-17f64c07-8b5f-4739-8003-7975eb61ea6d,https://biolit.fr/observations/observation-17f64c07-8b5f-4739-8003-7975eb61ea6d/,,,,https://biolit.fr/wp-content/uploads/2023/07/39.jpg,,FALSE, +N1,59945,sortie-17f64c07-8b5f-4739-8003-7975eb61ea6d,https://biolit.fr/sorties/sortie-17f64c07-8b5f-4739-8003-7975eb61ea6d/,Alanna,,11/23/2017 0:00,13.0000000,14.0000000,43.071967000000,6.153099000000,,Plage des Pesquiers,44924,observation-17f64c07-8b5f-4739-8003-7975eb61ea6d-2,https://biolit.fr/observations/observation-17f64c07-8b5f-4739-8003-7975eb61ea6d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/56.jpg,,FALSE, +N1,59945,sortie-17f64c07-8b5f-4739-8003-7975eb61ea6d,https://biolit.fr/sorties/sortie-17f64c07-8b5f-4739-8003-7975eb61ea6d/,Alanna,,11/23/2017 0:00,13.0000000,14.0000000,43.071967000000,6.153099000000,,Plage des Pesquiers,44926,observation-17f64c07-8b5f-4739-8003-7975eb61ea6d-3,https://biolit.fr/observations/observation-17f64c07-8b5f-4739-8003-7975eb61ea6d-3/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/58.jpg,,TRUE, +N1,59945,sortie-17f64c07-8b5f-4739-8003-7975eb61ea6d,https://biolit.fr/sorties/sortie-17f64c07-8b5f-4739-8003-7975eb61ea6d/,Alanna,,11/23/2017 0:00,13.0000000,14.0000000,43.071967000000,6.153099000000,,Plage des Pesquiers,44928,observation-17f64c07-8b5f-4739-8003-7975eb61ea6d-4,https://biolit.fr/observations/observation-17f64c07-8b5f-4739-8003-7975eb61ea6d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/69.jpg,,FALSE, +N1,59946,sortie-834ea363-6ed8-4b80-b53f-095ee171aa9a,https://biolit.fr/sorties/sortie-834ea363-6ed8-4b80-b53f-095ee171aa9a/,Alexiaaaa,,11/23/2017 0:00,13.0000000,14.0000000,43.07196700000,6.153099000000,,Plage Des Pesquiers ,44930,observation-834ea363-6ed8-4b80-b53f-095ee171aa9a,https://biolit.fr/observations/observation-834ea363-6ed8-4b80-b53f-095ee171aa9a/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1664.JPG,,FALSE, +N1,59947,sortie-13441f64-79f7-425c-ab8e-3586dc9f2cdd,https://biolit.fr/sorties/sortie-13441f64-79f7-425c-ab8e-3586dc9f2cdd/,Ville de Marseille,,3/15/2018 0:00,10.0000000,10.0:45,43.245929000000,5.36918600000,,Base nautique de la Pointe Rouge,44932,observation-13441f64-79f7-425c-ab8e-3586dc9f2cdd,https://biolit.fr/observations/observation-13441f64-79f7-425c-ab8e-3586dc9f2cdd/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/P1070105_1-scaled.jpg,,TRUE, +N1,59947,sortie-13441f64-79f7-425c-ab8e-3586dc9f2cdd,https://biolit.fr/sorties/sortie-13441f64-79f7-425c-ab8e-3586dc9f2cdd/,Ville de Marseille,,3/15/2018 0:00,10.0000000,10.0:45,43.245929000000,5.36918600000,,Base nautique de la Pointe Rouge,44934,observation-13441f64-79f7-425c-ab8e-3586dc9f2cdd-2,https://biolit.fr/observations/observation-13441f64-79f7-425c-ab8e-3586dc9f2cdd-2/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/P1070106_0-scaled.jpg,,TRUE, +N1,59947,sortie-13441f64-79f7-425c-ab8e-3586dc9f2cdd,https://biolit.fr/sorties/sortie-13441f64-79f7-425c-ab8e-3586dc9f2cdd/,Ville de Marseille,,3/15/2018 0:00,10.0000000,10.0:45,43.245929000000,5.36918600000,,Base nautique de la Pointe Rouge,44936,observation-13441f64-79f7-425c-ab8e-3586dc9f2cdd-3,https://biolit.fr/observations/observation-13441f64-79f7-425c-ab8e-3586dc9f2cdd-3/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1070108_0-scaled.jpg,,TRUE, +N1,59947,sortie-13441f64-79f7-425c-ab8e-3586dc9f2cdd,https://biolit.fr/sorties/sortie-13441f64-79f7-425c-ab8e-3586dc9f2cdd/,Ville de Marseille,,3/15/2018 0:00,10.0000000,10.0:45,43.245929000000,5.36918600000,,Base nautique de la Pointe Rouge,44938,observation-13441f64-79f7-425c-ab8e-3586dc9f2cdd-4,https://biolit.fr/observations/observation-13441f64-79f7-425c-ab8e-3586dc9f2cdd-4/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/2023/07/P1070109_0-scaled.jpg,,TRUE, +N1,59947,sortie-13441f64-79f7-425c-ab8e-3586dc9f2cdd,https://biolit.fr/sorties/sortie-13441f64-79f7-425c-ab8e-3586dc9f2cdd/,Ville de Marseille,,3/15/2018 0:00,10.0000000,10.0:45,43.245929000000,5.36918600000,,Base nautique de la Pointe Rouge,44940,observation-13441f64-79f7-425c-ab8e-3586dc9f2cdd-5,https://biolit.fr/observations/observation-13441f64-79f7-425c-ab8e-3586dc9f2cdd-5/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/P1070110_1-scaled.jpg,,TRUE, +N1,59947,sortie-13441f64-79f7-425c-ab8e-3586dc9f2cdd,https://biolit.fr/sorties/sortie-13441f64-79f7-425c-ab8e-3586dc9f2cdd/,Ville de Marseille,,3/15/2018 0:00,10.0000000,10.0:45,43.245929000000,5.36918600000,,Base nautique de la Pointe Rouge,44942,observation-13441f64-79f7-425c-ab8e-3586dc9f2cdd-6,https://biolit.fr/observations/observation-13441f64-79f7-425c-ab8e-3586dc9f2cdd-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070111_1-scaled.jpg,,FALSE, +N1,59947,sortie-13441f64-79f7-425c-ab8e-3586dc9f2cdd,https://biolit.fr/sorties/sortie-13441f64-79f7-425c-ab8e-3586dc9f2cdd/,Ville de Marseille,,3/15/2018 0:00,10.0000000,10.0:45,43.245929000000,5.36918600000,,Base nautique de la Pointe Rouge,44944,observation-13441f64-79f7-425c-ab8e-3586dc9f2cdd-7,https://biolit.fr/observations/observation-13441f64-79f7-425c-ab8e-3586dc9f2cdd-7/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/P1070114_1-scaled.jpg,,TRUE, +N1,59948,sortie-d38bca45-0331-46c7-8d11-ce4f769a55e6,https://biolit.fr/sorties/sortie-d38bca45-0331-46c7-8d11-ce4f769a55e6/,cm1 cm2 Louis Marin,,3/13/2018 0:00,12.0000000,14.0000000,43.166308000000,5.605837000000,,calanquedu grandMugel,44946,observation-d38bca45-0331-46c7-8d11-ce4f769a55e6,https://biolit.fr/observations/observation-d38bca45-0331-46c7-8d11-ce4f769a55e6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crabes et restes de crabes.jpg,,FALSE, +N1,59949,sortie-1175313c-6526-4d57-add9-797a645fbad9,https://biolit.fr/sorties/sortie-1175313c-6526-4d57-add9-797a645fbad9/,Phil,,03/03/2018,12.000005,12.0000000,47.863124000000,-4.069061000000,,Fouesnant - Finistère,44948,observation-1175313c-6526-4d57-add9-797a645fbad9,https://biolit.fr/observations/observation-1175313c-6526-4d57-add9-797a645fbad9/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/P1100648.JPG,,TRUE, +N1,59949,sortie-1175313c-6526-4d57-add9-797a645fbad9,https://biolit.fr/sorties/sortie-1175313c-6526-4d57-add9-797a645fbad9/,Phil,,03/03/2018,12.000005,12.0000000,47.863124000000,-4.069061000000,,Fouesnant - Finistère,44950,observation-1175313c-6526-4d57-add9-797a645fbad9-2,https://biolit.fr/observations/observation-1175313c-6526-4d57-add9-797a645fbad9-2/,Halidrys siliquosa,Queue de poulain,,https://biolit.fr/wp-content/uploads/2023/07/P1100650.JPG,,TRUE, +N1,59949,sortie-1175313c-6526-4d57-add9-797a645fbad9,https://biolit.fr/sorties/sortie-1175313c-6526-4d57-add9-797a645fbad9/,Phil,,03/03/2018,12.000005,12.0000000,47.863124000000,-4.069061000000,,Fouesnant - Finistère,44952,observation-1175313c-6526-4d57-add9-797a645fbad9-3,https://biolit.fr/observations/observation-1175313c-6526-4d57-add9-797a645fbad9-3/,Halidrys siliquosa,Queue de poulain,,https://biolit.fr/wp-content/uploads/2023/07/P1100651.JPG,,TRUE, +N1,59950,sortie-726aa11e-1e03-425c-8237-589970dee6c7,https://biolit.fr/sorties/sortie-726aa11e-1e03-425c-8237-589970dee6c7/,Phil,,2/26/2018 0:00,11.0:55,11.0:55,48.108089000000,-4.284402000000,, Plonévez Porzay - Finistère,44954,observation-726aa11e-1e03-425c-8237-589970dee6c7,https://biolit.fr/observations/observation-726aa11e-1e03-425c-8237-589970dee6c7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100483.JPG,,FALSE, +N1,59951,sortie-f2549667-db26-4d8b-9505-948387934224,https://biolit.fr/sorties/sortie-f2549667-db26-4d8b-9505-948387934224/,Phil,,03/08/2018,18.0:25,18.0000000,48.17211900000,-4.29302300000,,Plomodiern - Finistère,44956,observation-f2549667-db26-4d8b-9505-948387934224,https://biolit.fr/observations/observation-f2549667-db26-4d8b-9505-948387934224/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1100753.JPG,,TRUE, +N1,59951,sortie-f2549667-db26-4d8b-9505-948387934224,https://biolit.fr/sorties/sortie-f2549667-db26-4d8b-9505-948387934224/,Phil,,03/08/2018,18.0:25,18.0000000,48.17211900000,-4.29302300000,,Plomodiern - Finistère,44958,observation-f2549667-db26-4d8b-9505-948387934224-2,https://biolit.fr/observations/observation-f2549667-db26-4d8b-9505-948387934224-2/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1100756.JPG,,TRUE, +N1,59952,sortie-cb1b8feb-d405-4da4-ab8b-6b477fcfea66,https://biolit.fr/sorties/sortie-cb1b8feb-d405-4da4-ab8b-6b477fcfea66/,nathalie,,03/10/2018,21.0000000,23.0000000,46.169756000000,-1.377438000000,,Plage des grenettes île de ré ,44960,observation-cb1b8feb-d405-4da4-ab8b-6b477fcfea66,https://biolit.fr/observations/observation-cb1b8feb-d405-4da4-ab8b-6b477fcfea66/,Eunicella verrucosa,Gorgone verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180310_132939-scaled.jpg,,TRUE, +N1,59952,sortie-cb1b8feb-d405-4da4-ab8b-6b477fcfea66,https://biolit.fr/sorties/sortie-cb1b8feb-d405-4da4-ab8b-6b477fcfea66/,nathalie,,03/10/2018,21.0000000,23.0000000,46.169756000000,-1.377438000000,,Plage des grenettes île de ré ,44962,observation-cb1b8feb-d405-4da4-ab8b-6b477fcfea66-2,https://biolit.fr/observations/observation-cb1b8feb-d405-4da4-ab8b-6b477fcfea66-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180310_123533-scaled.jpg,,FALSE, +N1,59952,sortie-cb1b8feb-d405-4da4-ab8b-6b477fcfea66,https://biolit.fr/sorties/sortie-cb1b8feb-d405-4da4-ab8b-6b477fcfea66/,nathalie,,03/10/2018,21.0000000,23.0000000,46.169756000000,-1.377438000000,,Plage des grenettes île de ré ,44964,observation-cb1b8feb-d405-4da4-ab8b-6b477fcfea66-3,https://biolit.fr/observations/observation-cb1b8feb-d405-4da4-ab8b-6b477fcfea66-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180310_132013-scaled.jpg,,FALSE, +N1,59952,sortie-cb1b8feb-d405-4da4-ab8b-6b477fcfea66,https://biolit.fr/sorties/sortie-cb1b8feb-d405-4da4-ab8b-6b477fcfea66/,nathalie,,03/10/2018,21.0000000,23.0000000,46.169756000000,-1.377438000000,,Plage des grenettes île de ré ,44966,observation-cb1b8feb-d405-4da4-ab8b-6b477fcfea66-4,https://biolit.fr/observations/observation-cb1b8feb-d405-4da4-ab8b-6b477fcfea66-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180310_131146-scaled.jpg,,FALSE, +N1,59952,sortie-cb1b8feb-d405-4da4-ab8b-6b477fcfea66,https://biolit.fr/sorties/sortie-cb1b8feb-d405-4da4-ab8b-6b477fcfea66/,nathalie,,03/10/2018,21.0000000,23.0000000,46.169756000000,-1.377438000000,,Plage des grenettes île de ré ,44968,observation-cb1b8feb-d405-4da4-ab8b-6b477fcfea66-5,https://biolit.fr/observations/observation-cb1b8feb-d405-4da4-ab8b-6b477fcfea66-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180310_131633-scaled.jpg,,FALSE, +N1,59953,sortie-68b48e2f-3380-431a-91bf-d6cf853e4f89,https://biolit.fr/sorties/sortie-68b48e2f-3380-431a-91bf-d6cf853e4f89/,Phil,,2/26/2018 0:00,11.0000000,11.0:55,48.108233000000,-4.284453000000,,Plonevez-Porzay - Finistère,44970,observation-68b48e2f-3380-431a-91bf-d6cf853e4f89,https://biolit.fr/observations/observation-68b48e2f-3380-431a-91bf-d6cf853e4f89/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/P1100480.JPG,,TRUE, +N1,59953,sortie-68b48e2f-3380-431a-91bf-d6cf853e4f89,https://biolit.fr/sorties/sortie-68b48e2f-3380-431a-91bf-d6cf853e4f89/,Phil,,2/26/2018 0:00,11.0000000,11.0:55,48.108233000000,-4.284453000000,,Plonevez-Porzay - Finistère,44972,observation-68b48e2f-3380-431a-91bf-d6cf853e4f89-2,https://biolit.fr/observations/observation-68b48e2f-3380-431a-91bf-d6cf853e4f89-2/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/P1100477.JPG,,TRUE, +N1,59953,sortie-68b48e2f-3380-431a-91bf-d6cf853e4f89,https://biolit.fr/sorties/sortie-68b48e2f-3380-431a-91bf-d6cf853e4f89/,Phil,,2/26/2018 0:00,11.0000000,11.0:55,48.108233000000,-4.284453000000,,Plonevez-Porzay - Finistère,44974,observation-68b48e2f-3380-431a-91bf-d6cf853e4f89-3,https://biolit.fr/observations/observation-68b48e2f-3380-431a-91bf-d6cf853e4f89-3/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/P1100471.JPG,,TRUE, +N1,59953,sortie-68b48e2f-3380-431a-91bf-d6cf853e4f89,https://biolit.fr/sorties/sortie-68b48e2f-3380-431a-91bf-d6cf853e4f89/,Phil,,2/26/2018 0:00,11.0000000,11.0:55,48.108233000000,-4.284453000000,,Plonevez-Porzay - Finistère,44976,observation-68b48e2f-3380-431a-91bf-d6cf853e4f89-4,https://biolit.fr/observations/observation-68b48e2f-3380-431a-91bf-d6cf853e4f89-4/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/P1100473.JPG,,TRUE, +N1,59954,sortie-7e86c5a6-dab5-4007-83e2-8eeccf5a7776,https://biolit.fr/sorties/sortie-7e86c5a6-dab5-4007-83e2-8eeccf5a7776/,Phil,,03/10/2018,15.0:25,15.0000000,47.837161000000,-4.351410000000,,Plomeur - Finistère,44978,observation-7e86c5a6-dab5-4007-83e2-8eeccf5a7776,https://biolit.fr/observations/observation-7e86c5a6-dab5-4007-83e2-8eeccf5a7776/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180310_152841.jpg,,FALSE, +N1,59955,sortie-a050f49d-d6c6-465d-884c-f9c528aeda5e,https://biolit.fr/sorties/sortie-a050f49d-d6c6-465d-884c-f9c528aeda5e/,Phil,,03/10/2018,15.0:25,15.0000000,47.83662900000,-4.352669000000,,Plomeur - Finistère,44980,observation-a050f49d-d6c6-465d-884c-f9c528aeda5e,https://biolit.fr/observations/observation-a050f49d-d6c6-465d-884c-f9c528aeda5e/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/20180310_152749.jpg,,TRUE, +N1,59956,sortie-6c9eba44-dfa3-481e-9f7b-35c5a383b523,https://biolit.fr/sorties/sortie-6c9eba44-dfa3-481e-9f7b-35c5a383b523/,Phil,,03/10/2018,15.0000000,15.0:25,47.836484000000,-4.353255000000,,Plomeur - Finistère,44982,observation-6c9eba44-dfa3-481e-9f7b-35c5a383b523,https://biolit.fr/observations/observation-6c9eba44-dfa3-481e-9f7b-35c5a383b523/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180310_152744.jpg,,FALSE, +N1,59957,sortie-4be6b2c2-0214-4d38-bde9-dcff99f62960,https://biolit.fr/sorties/sortie-4be6b2c2-0214-4d38-bde9-dcff99f62960/,Phil,,03/10/2018,15.0000000,15.0000000,47.837559000000,-4.353313000000,,Plomeur - Finistère,44984,observation-4be6b2c2-0214-4d38-bde9-dcff99f62960,https://biolit.fr/observations/observation-4be6b2c2-0214-4d38-bde9-dcff99f62960/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180310_151928.jpg,,FALSE, +N1,59958,sortie-a884b260-f6d2-450a-8f48-889dcdc76ba5,https://biolit.fr/sorties/sortie-a884b260-f6d2-450a-8f48-889dcdc76ba5/,Phil,,03/10/2018,15.0:15,15.0000000,47.837542000000,-4.352226000000,,Plomeur - Finistère,44986,observation-a884b260-f6d2-450a-8f48-889dcdc76ba5,https://biolit.fr/observations/observation-a884b260-f6d2-450a-8f48-889dcdc76ba5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180310_151847.jpg,,FALSE, +N1,59959,sortie-0c24b93f-47d0-4e88-9785-073315b809fe,https://biolit.fr/sorties/sortie-0c24b93f-47d0-4e88-9785-073315b809fe/,Phil,,03/10/2018,18.0000000,20.0000000,47.837506000000,-4.350873000000,,Plomeur - Finistère,44988,observation-0c24b93f-47d0-4e88-9785-073315b809fe,https://biolit.fr/observations/observation-0c24b93f-47d0-4e88-9785-073315b809fe/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/2023/07/20180310_151813.jpg,,TRUE, +N1,59960,sortie-5d0f7f87-3886-48da-bb31-718e520f2555,https://biolit.fr/sorties/sortie-5d0f7f87-3886-48da-bb31-718e520f2555/,Phil,,03/10/2018,15.0:15,15.0000000,47.837777000000,-4.349822000000,,Plomeur - Finistère,44990,observation-5d0f7f87-3886-48da-bb31-718e520f2555,https://biolit.fr/observations/observation-5d0f7f87-3886-48da-bb31-718e520f2555/,Donax vittatus,Donace des canards,,https://biolit.fr/wp-content/uploads/2023/07/20180310_151739.jpg,,TRUE, +N1,59961,sortie-12d57c3f-d593-4a33-9172-1a6dc670c434,https://biolit.fr/sorties/sortie-12d57c3f-d593-4a33-9172-1a6dc670c434/,Phil,,03/10/2018,15.0:15,15.0:15,47.83858700000,-4.349650000000,,Plomeur - Finistère,44992,observation-12d57c3f-d593-4a33-9172-1a6dc670c434,https://biolit.fr/observations/observation-12d57c3f-d593-4a33-9172-1a6dc670c434/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180310_151723.jpg,,FALSE, +N1,59962,sortie-bcfea2db-a920-4904-a965-ea8c444fe2b8,https://biolit.fr/sorties/sortie-bcfea2db-a920-4904-a965-ea8c444fe2b8/,Phil,,03/10/2018,15.0000000,15.0:15,47.837655000000,-4.348363000000,,Plomeur - Finistère,44994,observation-bcfea2db-a920-4904-a965-ea8c444fe2b8,https://biolit.fr/observations/observation-bcfea2db-a920-4904-a965-ea8c444fe2b8/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/20180310_151624.jpg,,TRUE, +N1,59963,sortie-732bba21-3dce-4f06-b19f-f0b50cf71999,https://biolit.fr/sorties/sortie-732bba21-3dce-4f06-b19f-f0b50cf71999/,Phil,,2/26/2018 0:00,11.0000000,11.0:45,48.109646000000,-4.284110000000,,Plonevez-Porzay - Finistère,44996,observation-732bba21-3dce-4f06-b19f-f0b50cf71999,https://biolit.fr/observations/observation-732bba21-3dce-4f06-b19f-f0b50cf71999/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100457.JPG,,FALSE, +N1,59963,sortie-732bba21-3dce-4f06-b19f-f0b50cf71999,https://biolit.fr/sorties/sortie-732bba21-3dce-4f06-b19f-f0b50cf71999/,Phil,,2/26/2018 0:00,11.0000000,11.0:45,48.109646000000,-4.284110000000,,Plonevez-Porzay - Finistère,44998,observation-732bba21-3dce-4f06-b19f-f0b50cf71999-2,https://biolit.fr/observations/observation-732bba21-3dce-4f06-b19f-f0b50cf71999-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100448.JPG,,FALSE, +N1,59963,sortie-732bba21-3dce-4f06-b19f-f0b50cf71999,https://biolit.fr/sorties/sortie-732bba21-3dce-4f06-b19f-f0b50cf71999/,Phil,,2/26/2018 0:00,11.0000000,11.0:45,48.109646000000,-4.284110000000,,Plonevez-Porzay - Finistère,45000,observation-732bba21-3dce-4f06-b19f-f0b50cf71999-3,https://biolit.fr/observations/observation-732bba21-3dce-4f06-b19f-f0b50cf71999-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100451.JPG,,FALSE, +N1,59964,sortie-f01c139e-f246-4f4f-99f4-780daa90fa0a,https://biolit.fr/sorties/sortie-f01c139e-f246-4f4f-99f4-780daa90fa0a/,Phil,,2/18/2017 0:00,17.0:45,17.0:55,47.893253000000,-3.969094000000,,La Forêt-Fouesnant - Finistère,45002,observation-f01c139e-f246-4f4f-99f4-780daa90fa0a,https://biolit.fr/observations/observation-f01c139e-f246-4f4f-99f4-780daa90fa0a/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1060042.JPG,,TRUE, +N1,59964,sortie-f01c139e-f246-4f4f-99f4-780daa90fa0a,https://biolit.fr/sorties/sortie-f01c139e-f246-4f4f-99f4-780daa90fa0a/,Phil,,2/18/2017 0:00,17.0:45,17.0:55,47.893253000000,-3.969094000000,,La Forêt-Fouesnant - Finistère,45004,observation-f01c139e-f246-4f4f-99f4-780daa90fa0a-2,https://biolit.fr/observations/observation-f01c139e-f246-4f4f-99f4-780daa90fa0a-2/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1060046.JPG,,TRUE, +N1,59964,sortie-f01c139e-f246-4f4f-99f4-780daa90fa0a,https://biolit.fr/sorties/sortie-f01c139e-f246-4f4f-99f4-780daa90fa0a/,Phil,,2/18/2017 0:00,17.0:45,17.0:55,47.893253000000,-3.969094000000,,La Forêt-Fouesnant - Finistère,45006,observation-f01c139e-f246-4f4f-99f4-780daa90fa0a-3,https://biolit.fr/observations/observation-f01c139e-f246-4f4f-99f4-780daa90fa0a-3/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1060044.JPG,,TRUE, +N1,59964,sortie-f01c139e-f246-4f4f-99f4-780daa90fa0a,https://biolit.fr/sorties/sortie-f01c139e-f246-4f4f-99f4-780daa90fa0a/,Phil,,2/18/2017 0:00,17.0:45,17.0:55,47.893253000000,-3.969094000000,,La Forêt-Fouesnant - Finistère,45008,observation-f01c139e-f246-4f4f-99f4-780daa90fa0a-4,https://biolit.fr/observations/observation-f01c139e-f246-4f4f-99f4-780daa90fa0a-4/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1060041.JPG,,TRUE, +N1,59964,sortie-f01c139e-f246-4f4f-99f4-780daa90fa0a,https://biolit.fr/sorties/sortie-f01c139e-f246-4f4f-99f4-780daa90fa0a/,Phil,,2/18/2017 0:00,17.0:45,17.0:55,47.893253000000,-3.969094000000,,La Forêt-Fouesnant - Finistère,45010,observation-f01c139e-f246-4f4f-99f4-780daa90fa0a-5,https://biolit.fr/observations/observation-f01c139e-f246-4f4f-99f4-780daa90fa0a-5/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1060039.JPG,,TRUE, +N1,59964,sortie-f01c139e-f246-4f4f-99f4-780daa90fa0a,https://biolit.fr/sorties/sortie-f01c139e-f246-4f4f-99f4-780daa90fa0a/,Phil,,2/18/2017 0:00,17.0:45,17.0:55,47.893253000000,-3.969094000000,,La Forêt-Fouesnant - Finistère,45012,observation-f01c139e-f246-4f4f-99f4-780daa90fa0a-6,https://biolit.fr/observations/observation-f01c139e-f246-4f4f-99f4-780daa90fa0a-6/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1060035.JPG,,TRUE, +N1,59965,sortie-a09e1d47-1330-44c0-8ec5-baf12a101f33,https://biolit.fr/sorties/sortie-a09e1d47-1330-44c0-8ec5-baf12a101f33/,Phil,,2/26/2018 0:00,11.0000000,11.0:35,48.111259000000,-4.283252000000,,Plonevez-Porzay - Finistère,45014,observation-a09e1d47-1330-44c0-8ec5-baf12a101f33,https://biolit.fr/observations/observation-a09e1d47-1330-44c0-8ec5-baf12a101f33/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1100421.JPG,,TRUE, +N1,59965,sortie-a09e1d47-1330-44c0-8ec5-baf12a101f33,https://biolit.fr/sorties/sortie-a09e1d47-1330-44c0-8ec5-baf12a101f33/,Phil,,2/26/2018 0:00,11.0000000,11.0:35,48.111259000000,-4.283252000000,,Plonevez-Porzay - Finistère,45016,observation-a09e1d47-1330-44c0-8ec5-baf12a101f33-2,https://biolit.fr/observations/observation-a09e1d47-1330-44c0-8ec5-baf12a101f33-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100423.JPG,,FALSE, +N1,59965,sortie-a09e1d47-1330-44c0-8ec5-baf12a101f33,https://biolit.fr/sorties/sortie-a09e1d47-1330-44c0-8ec5-baf12a101f33/,Phil,,2/26/2018 0:00,11.0000000,11.0:35,48.111259000000,-4.283252000000,,Plonevez-Porzay - Finistère,45018,observation-a09e1d47-1330-44c0-8ec5-baf12a101f33-3,https://biolit.fr/observations/observation-a09e1d47-1330-44c0-8ec5-baf12a101f33-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100430.JPG,,FALSE, +N1,59966,sortie-eb2e7154-6017-4d1e-8d4b-0e10bc5cac53,https://biolit.fr/sorties/sortie-eb2e7154-6017-4d1e-8d4b-0e10bc5cac53/,Phil,,03/08/2018,18.0000000,18.0:25,48.175863000000,-4.292847000000,,Plomodiern - Finistère,45020,observation-eb2e7154-6017-4d1e-8d4b-0e10bc5cac53,https://biolit.fr/observations/observation-eb2e7154-6017-4d1e-8d4b-0e10bc5cac53/,Calidris alba,Bécasseau sanderling,,https://biolit.fr/wp-content/uploads/2023/07/P1100744.JPG,,TRUE, +N1,59966,sortie-eb2e7154-6017-4d1e-8d4b-0e10bc5cac53,https://biolit.fr/sorties/sortie-eb2e7154-6017-4d1e-8d4b-0e10bc5cac53/,Phil,,03/08/2018,18.0000000,18.0:25,48.175863000000,-4.292847000000,,Plomodiern - Finistère,45022,observation-eb2e7154-6017-4d1e-8d4b-0e10bc5cac53-2,https://biolit.fr/observations/observation-eb2e7154-6017-4d1e-8d4b-0e10bc5cac53-2/,Calidris alba,Bécasseau sanderling,,https://biolit.fr/wp-content/uploads/2023/07/P1100745.JPG,,TRUE, +N1,59967,sortie-d0992434-8c39-41db-b9bf-6e8304f93292,https://biolit.fr/sorties/sortie-d0992434-8c39-41db-b9bf-6e8304f93292/,Phil,,03/03/2018,12.000005,12.0000000,47.862179000000,-4.065971000000,,Fouesnant - Finistère,45024,observation-d0992434-8c39-41db-b9bf-6e8304f93292,https://biolit.fr/observations/observation-d0992434-8c39-41db-b9bf-6e8304f93292/,Peringia ulvae,Hydrobie saumâtre,,https://biolit.fr/wp-content/uploads/2023/07/P1100639.JPG,,TRUE, +N1,59967,sortie-d0992434-8c39-41db-b9bf-6e8304f93292,https://biolit.fr/sorties/sortie-d0992434-8c39-41db-b9bf-6e8304f93292/,Phil,,03/03/2018,12.000005,12.0000000,47.862179000000,-4.065971000000,,Fouesnant - Finistère,45026,observation-d0992434-8c39-41db-b9bf-6e8304f93292-2,https://biolit.fr/observations/observation-d0992434-8c39-41db-b9bf-6e8304f93292-2/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1100642.JPG,,TRUE, +N1,59967,sortie-d0992434-8c39-41db-b9bf-6e8304f93292,https://biolit.fr/sorties/sortie-d0992434-8c39-41db-b9bf-6e8304f93292/,Phil,,03/03/2018,12.000005,12.0000000,47.862179000000,-4.065971000000,,Fouesnant - Finistère,45028,observation-d0992434-8c39-41db-b9bf-6e8304f93292-3,https://biolit.fr/observations/observation-d0992434-8c39-41db-b9bf-6e8304f93292-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1100643.JPG,,TRUE, +N1,59967,sortie-d0992434-8c39-41db-b9bf-6e8304f93292,https://biolit.fr/sorties/sortie-d0992434-8c39-41db-b9bf-6e8304f93292/,Phil,,03/03/2018,12.000005,12.0000000,47.862179000000,-4.065971000000,,Fouesnant - Finistère,45030,observation-d0992434-8c39-41db-b9bf-6e8304f93292-4,https://biolit.fr/observations/observation-d0992434-8c39-41db-b9bf-6e8304f93292-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100646.JPG,,FALSE, +N1,59968,sortie-997a7f27-e7f4-4283-9de3-9ec0d0a4386d,https://biolit.fr/sorties/sortie-997a7f27-e7f4-4283-9de3-9ec0d0a4386d/,Phil,,2/26/2018 0:00,11.0:45,11.0000000,48.108825000000,-4.284779000000,,Plonevez Porzay - Finistère,45032,observation-997a7f27-e7f4-4283-9de3-9ec0d0a4386d,https://biolit.fr/observations/observation-997a7f27-e7f4-4283-9de3-9ec0d0a4386d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100453.jpg,,FALSE, +N1,59968,sortie-997a7f27-e7f4-4283-9de3-9ec0d0a4386d,https://biolit.fr/sorties/sortie-997a7f27-e7f4-4283-9de3-9ec0d0a4386d/,Phil,,2/26/2018 0:00,11.0:45,11.0000000,48.108825000000,-4.284779000000,,Plonevez Porzay - Finistère,45034,observation-997a7f27-e7f4-4283-9de3-9ec0d0a4386d-2,https://biolit.fr/observations/observation-997a7f27-e7f4-4283-9de3-9ec0d0a4386d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100456.JPG,,FALSE, +N1,59968,sortie-997a7f27-e7f4-4283-9de3-9ec0d0a4386d,https://biolit.fr/sorties/sortie-997a7f27-e7f4-4283-9de3-9ec0d0a4386d/,Phil,,2/26/2018 0:00,11.0:45,11.0000000,48.108825000000,-4.284779000000,,Plonevez Porzay - Finistère,45036,observation-997a7f27-e7f4-4283-9de3-9ec0d0a4386d-3,https://biolit.fr/observations/observation-997a7f27-e7f4-4283-9de3-9ec0d0a4386d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100467.JPG,,FALSE, +N1,59969,sortie-e7b647dd-283b-4585-98f7-2c11c6acb7b9,https://biolit.fr/sorties/sortie-e7b647dd-283b-4585-98f7-2c11c6acb7b9/,Phil,,2/15/2018 0:00,13.0:15,13.0000000,47.791569000000,-4.25690100000,,Tréffiagat - Finistère,45038,observation-e7b647dd-283b-4585-98f7-2c11c6acb7b9,https://biolit.fr/observations/observation-e7b647dd-283b-4585-98f7-2c11c6acb7b9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180215_131827.jpg,,FALSE, +N1,59969,sortie-e7b647dd-283b-4585-98f7-2c11c6acb7b9,https://biolit.fr/sorties/sortie-e7b647dd-283b-4585-98f7-2c11c6acb7b9/,Phil,,2/15/2018 0:00,13.0:15,13.0000000,47.791569000000,-4.25690100000,,Tréffiagat - Finistère,45040,observation-e7b647dd-283b-4585-98f7-2c11c6acb7b9-2,https://biolit.fr/observations/observation-e7b647dd-283b-4585-98f7-2c11c6acb7b9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180215_131811.jpg,,FALSE, +N1,59970,sortie-f7ee2c72-3d11-4474-a6a1-2c5c460133c9,https://biolit.fr/sorties/sortie-f7ee2c72-3d11-4474-a6a1-2c5c460133c9/,Phil,,03/03/2018,12.0000000,12.000005,47.862363000000,-4.067074000000,,Fouesnant - Finistère,45042,observation-f7ee2c72-3d11-4474-a6a1-2c5c460133c9,https://biolit.fr/observations/observation-f7ee2c72-3d11-4474-a6a1-2c5c460133c9/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1100625.JPG,,TRUE, +N1,59970,sortie-f7ee2c72-3d11-4474-a6a1-2c5c460133c9,https://biolit.fr/sorties/sortie-f7ee2c72-3d11-4474-a6a1-2c5c460133c9/,Phil,,03/03/2018,12.0000000,12.000005,47.862363000000,-4.067074000000,,Fouesnant - Finistère,45044,observation-f7ee2c72-3d11-4474-a6a1-2c5c460133c9-2,https://biolit.fr/observations/observation-f7ee2c72-3d11-4474-a6a1-2c5c460133c9-2/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1100601.JPG,,TRUE, +N1,59970,sortie-f7ee2c72-3d11-4474-a6a1-2c5c460133c9,https://biolit.fr/sorties/sortie-f7ee2c72-3d11-4474-a6a1-2c5c460133c9/,Phil,,03/03/2018,12.0000000,12.000005,47.862363000000,-4.067074000000,,Fouesnant - Finistère,45046,observation-f7ee2c72-3d11-4474-a6a1-2c5c460133c9-3,https://biolit.fr/observations/observation-f7ee2c72-3d11-4474-a6a1-2c5c460133c9-3/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1100619.JPG,,TRUE, +N1,59970,sortie-f7ee2c72-3d11-4474-a6a1-2c5c460133c9,https://biolit.fr/sorties/sortie-f7ee2c72-3d11-4474-a6a1-2c5c460133c9/,Phil,,03/03/2018,12.0000000,12.000005,47.862363000000,-4.067074000000,,Fouesnant - Finistère,45048,observation-f7ee2c72-3d11-4474-a6a1-2c5c460133c9-4,https://biolit.fr/observations/observation-f7ee2c72-3d11-4474-a6a1-2c5c460133c9-4/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1100611.JPG,,TRUE, +N1,59971,sortie-87e4ca62-3326-403b-be62-3f7629a3c839,https://biolit.fr/sorties/sortie-87e4ca62-3326-403b-be62-3f7629a3c839/,Phil,,03/03/2018,11.0:55,12.0000000,47.862699000000,-4.067267000000,,Fouesnant Finistère,45050,observation-87e4ca62-3326-403b-be62-3f7629a3c839,https://biolit.fr/observations/observation-87e4ca62-3326-403b-be62-3f7629a3c839/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100605.JPG,,FALSE, +N1,59981,sortie-56888ab5-d631-4eb8-a566-22163d54f612,https://biolit.fr/sorties/sortie-56888ab5-d631-4eb8-a566-22163d54f612/,Phil,,2/26/2018 0:00,12.000005,12.0000000,48.111578000000,-4.284633000000,,Plonévez-Porzay - Finistère,45070,observation-56888ab5-d631-4eb8-a566-22163d54f612,https://biolit.fr/observations/observation-56888ab5-d631-4eb8-a566-22163d54f612/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/2023/07/P1100529.JPG,,TRUE, +N1,59981,sortie-56888ab5-d631-4eb8-a566-22163d54f612,https://biolit.fr/sorties/sortie-56888ab5-d631-4eb8-a566-22163d54f612/,Phil,,2/26/2018 0:00,12.000005,12.0000000,48.111578000000,-4.284633000000,,Plonévez-Porzay - Finistère,45072,observation-56888ab5-d631-4eb8-a566-22163d54f612-2,https://biolit.fr/observations/observation-56888ab5-d631-4eb8-a566-22163d54f612-2/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/2023/07/P1100528.JPG,,TRUE, +N1,59981,sortie-56888ab5-d631-4eb8-a566-22163d54f612,https://biolit.fr/sorties/sortie-56888ab5-d631-4eb8-a566-22163d54f612/,Phil,,2/26/2018 0:00,12.000005,12.0000000,48.111578000000,-4.284633000000,,Plonévez-Porzay - Finistère,45074,observation-56888ab5-d631-4eb8-a566-22163d54f612-3,https://biolit.fr/observations/observation-56888ab5-d631-4eb8-a566-22163d54f612-3/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1100525.JPG,,TRUE, +N1,59981,sortie-56888ab5-d631-4eb8-a566-22163d54f612,https://biolit.fr/sorties/sortie-56888ab5-d631-4eb8-a566-22163d54f612/,Phil,,2/26/2018 0:00,12.000005,12.0000000,48.111578000000,-4.284633000000,,Plonévez-Porzay - Finistère,45076,observation-56888ab5-d631-4eb8-a566-22163d54f612-4,https://biolit.fr/observations/observation-56888ab5-d631-4eb8-a566-22163d54f612-4/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1100526.JPG,,TRUE, +N1,59982,sortie-61a4b05c-fd95-4a8a-9e66-743ea35640c4,https://biolit.fr/sorties/sortie-61a4b05c-fd95-4a8a-9e66-743ea35640c4/,Phil,,03/03/2018,12.000005,12.0000000,47.86311900000,-4.071130000000,,Fouesnant - Finistère,45078,observation-61a4b05c-fd95-4a8a-9e66-743ea35640c4,https://biolit.fr/observations/observation-61a4b05c-fd95-4a8a-9e66-743ea35640c4/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1100628.JPG,,TRUE, +N1,59982,sortie-61a4b05c-fd95-4a8a-9e66-743ea35640c4,https://biolit.fr/sorties/sortie-61a4b05c-fd95-4a8a-9e66-743ea35640c4/,Phil,,03/03/2018,12.000005,12.0000000,47.86311900000,-4.071130000000,,Fouesnant - Finistère,45080,observation-61a4b05c-fd95-4a8a-9e66-743ea35640c4-2,https://biolit.fr/observations/observation-61a4b05c-fd95-4a8a-9e66-743ea35640c4-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1100624.JPG,,TRUE, +N1,59982,sortie-61a4b05c-fd95-4a8a-9e66-743ea35640c4,https://biolit.fr/sorties/sortie-61a4b05c-fd95-4a8a-9e66-743ea35640c4/,Phil,,03/03/2018,12.000005,12.0000000,47.86311900000,-4.071130000000,,Fouesnant - Finistère,45082,observation-61a4b05c-fd95-4a8a-9e66-743ea35640c4-3,https://biolit.fr/observations/observation-61a4b05c-fd95-4a8a-9e66-743ea35640c4-3/,Zostera noltei,Zostère naine,,https://biolit.fr/wp-content/uploads/2023/07/P1100629.JPG,,TRUE, +N1,59982,sortie-61a4b05c-fd95-4a8a-9e66-743ea35640c4,https://biolit.fr/sorties/sortie-61a4b05c-fd95-4a8a-9e66-743ea35640c4/,Phil,,03/03/2018,12.000005,12.0000000,47.86311900000,-4.071130000000,,Fouesnant - Finistère,45084,observation-61a4b05c-fd95-4a8a-9e66-743ea35640c4-4,https://biolit.fr/observations/observation-61a4b05c-fd95-4a8a-9e66-743ea35640c4-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1100630.JPG,,TRUE, +N1,59982,sortie-61a4b05c-fd95-4a8a-9e66-743ea35640c4,https://biolit.fr/sorties/sortie-61a4b05c-fd95-4a8a-9e66-743ea35640c4/,Phil,,03/03/2018,12.000005,12.0000000,47.86311900000,-4.071130000000,,Fouesnant - Finistère,45086,observation-61a4b05c-fd95-4a8a-9e66-743ea35640c4-5,https://biolit.fr/observations/observation-61a4b05c-fd95-4a8a-9e66-743ea35640c4-5/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1100635.JPG,,TRUE, +N1,59983,sortie-4c0e3a02-3e53-4b4a-bc31-bd1dcf588629,https://biolit.fr/sorties/sortie-4c0e3a02-3e53-4b4a-bc31-bd1dcf588629/,Phil,,2/15/2018 0:00,13.0:15,13.0000000,47.791726000000,-4.255322000000,,Treffiagat Finistère,45088,observation-4c0e3a02-3e53-4b4a-bc31-bd1dcf588629,https://biolit.fr/observations/observation-4c0e3a02-3e53-4b4a-bc31-bd1dcf588629/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/20180215_131554.jpg,,TRUE, +N1,59983,sortie-4c0e3a02-3e53-4b4a-bc31-bd1dcf588629,https://biolit.fr/sorties/sortie-4c0e3a02-3e53-4b4a-bc31-bd1dcf588629/,Phil,,2/15/2018 0:00,13.0:15,13.0000000,47.791726000000,-4.255322000000,,Treffiagat Finistère,45090,observation-4c0e3a02-3e53-4b4a-bc31-bd1dcf588629-2,https://biolit.fr/observations/observation-4c0e3a02-3e53-4b4a-bc31-bd1dcf588629-2/,Laminaria ochroleuca,Laminaire jaune,,https://biolit.fr/wp-content/uploads/2023/07/20180215_131558.jpg,,TRUE, +N1,59983,sortie-4c0e3a02-3e53-4b4a-bc31-bd1dcf588629,https://biolit.fr/sorties/sortie-4c0e3a02-3e53-4b4a-bc31-bd1dcf588629/,Phil,,2/15/2018 0:00,13.0:15,13.0000000,47.791726000000,-4.255322000000,,Treffiagat Finistère,45092,observation-4c0e3a02-3e53-4b4a-bc31-bd1dcf588629-3,https://biolit.fr/observations/observation-4c0e3a02-3e53-4b4a-bc31-bd1dcf588629-3/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/20180215_131727.jpg,,TRUE, +N1,59984,sortie-0011982d-086d-4675-acca-3dff0dfeee0b,https://biolit.fr/sorties/sortie-0011982d-086d-4675-acca-3dff0dfeee0b/,Phil,,03/03/2018,11.0000000,11.0:55,47.862673000000,-4.068224000000,,Fouesnant - Finistère,45094,observation-0011982d-086d-4675-acca-3dff0dfeee0b,https://biolit.fr/observations/observation-0011982d-086d-4675-acca-3dff0dfeee0b/,Tadorna tadorna,Tadorne de Belon,,https://biolit.fr/wp-content/uploads/2023/07/P1100577.JPG,,TRUE, +N1,59984,sortie-0011982d-086d-4675-acca-3dff0dfeee0b,https://biolit.fr/sorties/sortie-0011982d-086d-4675-acca-3dff0dfeee0b/,Phil,,03/03/2018,11.0000000,11.0:55,47.862673000000,-4.068224000000,,Fouesnant - Finistère,45096,observation-0011982d-086d-4675-acca-3dff0dfeee0b-2,https://biolit.fr/observations/observation-0011982d-086d-4675-acca-3dff0dfeee0b-2/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1100583.JPG,,TRUE, +N1,59984,sortie-0011982d-086d-4675-acca-3dff0dfeee0b,https://biolit.fr/sorties/sortie-0011982d-086d-4675-acca-3dff0dfeee0b/,Phil,,03/03/2018,11.0000000,11.0:55,47.862673000000,-4.068224000000,,Fouesnant - Finistère,45098,observation-0011982d-086d-4675-acca-3dff0dfeee0b-3,https://biolit.fr/observations/observation-0011982d-086d-4675-acca-3dff0dfeee0b-3/,Tadorna tadorna,Tadorne de Belon,,https://biolit.fr/wp-content/uploads/2023/07/P1100575.JPG,,TRUE, +N1,59985,sortie-438d7c88-2e22-409f-a231-8c91eed60689,https://biolit.fr/sorties/sortie-438d7c88-2e22-409f-a231-8c91eed60689/,Phil,,2/26/2018 0:00,12.000005,12.0000000,48.113357000000,-4.284569000000,,Plonévez-Porzay - Finistère,45100,observation-438d7c88-2e22-409f-a231-8c91eed60689,https://biolit.fr/observations/observation-438d7c88-2e22-409f-a231-8c91eed60689/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100515.JPG,,FALSE, +N1,59985,sortie-438d7c88-2e22-409f-a231-8c91eed60689,https://biolit.fr/sorties/sortie-438d7c88-2e22-409f-a231-8c91eed60689/,Phil,,2/26/2018 0:00,12.000005,12.0000000,48.113357000000,-4.284569000000,,Plonévez-Porzay - Finistère,45102,observation-438d7c88-2e22-409f-a231-8c91eed60689-2,https://biolit.fr/observations/observation-438d7c88-2e22-409f-a231-8c91eed60689-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100513.JPG,,FALSE, +N1,59985,sortie-438d7c88-2e22-409f-a231-8c91eed60689,https://biolit.fr/sorties/sortie-438d7c88-2e22-409f-a231-8c91eed60689/,Phil,,2/26/2018 0:00,12.000005,12.0000000,48.113357000000,-4.284569000000,,Plonévez-Porzay - Finistère,45104,observation-438d7c88-2e22-409f-a231-8c91eed60689-3,https://biolit.fr/observations/observation-438d7c88-2e22-409f-a231-8c91eed60689-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100512.JPG,,FALSE, +N1,59986,sortie-d6bb1409-bade-481b-a869-055f72ba70a5,https://biolit.fr/sorties/sortie-d6bb1409-bade-481b-a869-055f72ba70a5/,Observe la nature,,2/16/2018 0:00,0.0000000,0.0000000,48.815199000000,-3.426228000000,,Pors ar goret perros guirec,45106,observation-d6bb1409-bade-481b-a869-055f72ba70a5,https://biolit.fr/observations/observation-d6bb1409-bade-481b-a869-055f72ba70a5/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/limace perros 2.jpg,,TRUE, +N1,59987,sortie-22eb9650-6168-4fc6-b39d-8d47f22e3fe8,https://biolit.fr/sorties/sortie-22eb9650-6168-4fc6-b39d-8d47f22e3fe8/,Phil,,2/26/2018 0:00,12.0000000,12.000005,48.112239000000,-4.283582000000,,Plonévez-Porzay - Finistère,45108,observation-22eb9650-6168-4fc6-b39d-8d47f22e3fe8,https://biolit.fr/observations/observation-22eb9650-6168-4fc6-b39d-8d47f22e3fe8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100499.JPG,,FALSE, +N1,59987,sortie-22eb9650-6168-4fc6-b39d-8d47f22e3fe8,https://biolit.fr/sorties/sortie-22eb9650-6168-4fc6-b39d-8d47f22e3fe8/,Phil,,2/26/2018 0:00,12.0000000,12.000005,48.112239000000,-4.283582000000,,Plonévez-Porzay - Finistère,45110,observation-22eb9650-6168-4fc6-b39d-8d47f22e3fe8-2,https://biolit.fr/observations/observation-22eb9650-6168-4fc6-b39d-8d47f22e3fe8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100505.JPG,,FALSE, +N1,59987,sortie-22eb9650-6168-4fc6-b39d-8d47f22e3fe8,https://biolit.fr/sorties/sortie-22eb9650-6168-4fc6-b39d-8d47f22e3fe8/,Phil,,2/26/2018 0:00,12.0000000,12.000005,48.112239000000,-4.283582000000,,Plonévez-Porzay - Finistère,45112,observation-22eb9650-6168-4fc6-b39d-8d47f22e3fe8-3,https://biolit.fr/observations/observation-22eb9650-6168-4fc6-b39d-8d47f22e3fe8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100500.JPG,,FALSE, +N1,59988,sortie-535ea4e1-e959-4774-b5df-0fed587bfb66,https://biolit.fr/sorties/sortie-535ea4e1-e959-4774-b5df-0fed587bfb66/,Phil,,03/03/2018,12.0:35,12.0000000,47.862833000000,-4.067137000000,,Fouesnant - Finistère,45114,observation-535ea4e1-e959-4774-b5df-0fed587bfb66,https://biolit.fr/observations/observation-535ea4e1-e959-4774-b5df-0fed587bfb66/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100715.JPG,,FALSE, +N1,59989,sortie-a15192bc-9b3b-4054-b9c7-805aa3810ad1,https://biolit.fr/sorties/sortie-a15192bc-9b3b-4054-b9c7-805aa3810ad1/,Phil,,03/03/2018,11.0000000,11.0:55,47.863528000000,-4.069138000000,,Fouesnant - Finistère,45116,observation-a15192bc-9b3b-4054-b9c7-805aa3810ad1,https://biolit.fr/observations/observation-a15192bc-9b3b-4054-b9c7-805aa3810ad1/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100574.JPG,,FALSE, +N1,59989,sortie-a15192bc-9b3b-4054-b9c7-805aa3810ad1,https://biolit.fr/sorties/sortie-a15192bc-9b3b-4054-b9c7-805aa3810ad1/,Phil,,03/03/2018,11.0000000,11.0:55,47.863528000000,-4.069138000000,,Fouesnant - Finistère,45118,observation-a15192bc-9b3b-4054-b9c7-805aa3810ad1-2,https://biolit.fr/observations/observation-a15192bc-9b3b-4054-b9c7-805aa3810ad1-2/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/P1100581.JPG,,TRUE, +N1,59989,sortie-a15192bc-9b3b-4054-b9c7-805aa3810ad1,https://biolit.fr/sorties/sortie-a15192bc-9b3b-4054-b9c7-805aa3810ad1/,Phil,,03/03/2018,11.0000000,11.0:55,47.863528000000,-4.069138000000,,Fouesnant - Finistère,45120,observation-a15192bc-9b3b-4054-b9c7-805aa3810ad1-3,https://biolit.fr/observations/observation-a15192bc-9b3b-4054-b9c7-805aa3810ad1-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100585.JPG,,FALSE, +N1,59989,sortie-a15192bc-9b3b-4054-b9c7-805aa3810ad1,https://biolit.fr/sorties/sortie-a15192bc-9b3b-4054-b9c7-805aa3810ad1/,Phil,,03/03/2018,11.0000000,11.0:55,47.863528000000,-4.069138000000,,Fouesnant - Finistère,45122,observation-a15192bc-9b3b-4054-b9c7-805aa3810ad1-4,https://biolit.fr/observations/observation-a15192bc-9b3b-4054-b9c7-805aa3810ad1-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100586.JPG,,FALSE, +N1,59990,sortie-55404e66-def1-4ad4-8783-7785428eea93,https://biolit.fr/sorties/sortie-55404e66-def1-4ad4-8783-7785428eea93/,Phil,,2/26/2018 0:00,11.0:35,11.0000000,48.109442000000,-4.28393800000,,Plonévez Porzay - Finistère,45124,observation-55404e66-def1-4ad4-8783-7785428eea93,https://biolit.fr/observations/observation-55404e66-def1-4ad4-8783-7785428eea93/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100438.JPG,,FALSE, +N1,59990,sortie-55404e66-def1-4ad4-8783-7785428eea93,https://biolit.fr/sorties/sortie-55404e66-def1-4ad4-8783-7785428eea93/,Phil,,2/26/2018 0:00,11.0:35,11.0000000,48.109442000000,-4.28393800000,,Plonévez Porzay - Finistère,45126,observation-55404e66-def1-4ad4-8783-7785428eea93-2,https://biolit.fr/observations/observation-55404e66-def1-4ad4-8783-7785428eea93-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100436.JPG,,FALSE, +N1,59990,sortie-55404e66-def1-4ad4-8783-7785428eea93,https://biolit.fr/sorties/sortie-55404e66-def1-4ad4-8783-7785428eea93/,Phil,,2/26/2018 0:00,11.0:35,11.0000000,48.109442000000,-4.28393800000,,Plonévez Porzay - Finistère,45128,observation-55404e66-def1-4ad4-8783-7785428eea93-3,https://biolit.fr/observations/observation-55404e66-def1-4ad4-8783-7785428eea93-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100447.JPG,,FALSE, +N1,59991,sortie-6d4d04cb-ce73-477a-9b67-ee5d8c831e42,https://biolit.fr/sorties/sortie-6d4d04cb-ce73-477a-9b67-ee5d8c831e42/,Phil,,9/19/2017 0:00,14.0000000,14.0:15,48.060746000000,-4.672281000000,,Cléden-Cap-Sizun - Finistère,45130,observation-6d4d04cb-ce73-477a-9b67-ee5d8c831e42,https://biolit.fr/observations/observation-6d4d04cb-ce73-477a-9b67-ee5d8c831e42/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1080473.JPG,,TRUE, +N1,59991,sortie-6d4d04cb-ce73-477a-9b67-ee5d8c831e42,https://biolit.fr/sorties/sortie-6d4d04cb-ce73-477a-9b67-ee5d8c831e42/,Phil,,9/19/2017 0:00,14.0000000,14.0:15,48.060746000000,-4.672281000000,,Cléden-Cap-Sizun - Finistère,45132,observation-6d4d04cb-ce73-477a-9b67-ee5d8c831e42-2,https://biolit.fr/observations/observation-6d4d04cb-ce73-477a-9b67-ee5d8c831e42-2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1080467.JPG,,TRUE, +N1,59991,sortie-6d4d04cb-ce73-477a-9b67-ee5d8c831e42,https://biolit.fr/sorties/sortie-6d4d04cb-ce73-477a-9b67-ee5d8c831e42/,Phil,,9/19/2017 0:00,14.0000000,14.0:15,48.060746000000,-4.672281000000,,Cléden-Cap-Sizun - Finistère,45134,observation-6d4d04cb-ce73-477a-9b67-ee5d8c831e42-3,https://biolit.fr/observations/observation-6d4d04cb-ce73-477a-9b67-ee5d8c831e42-3/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1080461.JPG,,TRUE, +N1,59991,sortie-6d4d04cb-ce73-477a-9b67-ee5d8c831e42,https://biolit.fr/sorties/sortie-6d4d04cb-ce73-477a-9b67-ee5d8c831e42/,Phil,,9/19/2017 0:00,14.0000000,14.0:15,48.060746000000,-4.672281000000,,Cléden-Cap-Sizun - Finistère,45136,observation-6d4d04cb-ce73-477a-9b67-ee5d8c831e42-4,https://biolit.fr/observations/observation-6d4d04cb-ce73-477a-9b67-ee5d8c831e42-4/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1080514.JPG,,TRUE, +N1,59991,sortie-6d4d04cb-ce73-477a-9b67-ee5d8c831e42,https://biolit.fr/sorties/sortie-6d4d04cb-ce73-477a-9b67-ee5d8c831e42/,Phil,,9/19/2017 0:00,14.0000000,14.0:15,48.060746000000,-4.672281000000,,Cléden-Cap-Sizun - Finistère,45138,observation-6d4d04cb-ce73-477a-9b67-ee5d8c831e42-5,https://biolit.fr/observations/observation-6d4d04cb-ce73-477a-9b67-ee5d8c831e42-5/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1080511.JPG,,TRUE, +N1,59992,sortie-626ba539-f2d1-4708-aa1a-ec7268d66aff,https://biolit.fr/sorties/sortie-626ba539-f2d1-4708-aa1a-ec7268d66aff/,Phil,,01/06/2018,15.0000000,15.0:55,48.005030000000,-4.522642000000,,Plouhinec - Finistère,45140,observation-626ba539-f2d1-4708-aa1a-ec7268d66aff,https://biolit.fr/observations/observation-626ba539-f2d1-4708-aa1a-ec7268d66aff/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100007.JPG,,FALSE, +N1,59993,sortie-63bcbbbb-1a32-4456-a924-b034d3755280,https://biolit.fr/sorties/sortie-63bcbbbb-1a32-4456-a924-b034d3755280/,Phil,,2/15/2018 0:00,13.0000000,13.0:25,47.791357000000,-4.262768000000,,Tréffiagat - Finistère,45142,observation-63bcbbbb-1a32-4456-a924-b034d3755280,https://biolit.fr/observations/observation-63bcbbbb-1a32-4456-a924-b034d3755280/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180215_132027.jpg,,FALSE, +N1,59993,sortie-63bcbbbb-1a32-4456-a924-b034d3755280,https://biolit.fr/sorties/sortie-63bcbbbb-1a32-4456-a924-b034d3755280/,Phil,,2/15/2018 0:00,13.0000000,13.0:25,47.791357000000,-4.262768000000,,Tréffiagat - Finistère,45144,observation-63bcbbbb-1a32-4456-a924-b034d3755280-2,https://biolit.fr/observations/observation-63bcbbbb-1a32-4456-a924-b034d3755280-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180215_131907.jpg,,FALSE, +N1,59993,sortie-63bcbbbb-1a32-4456-a924-b034d3755280,https://biolit.fr/sorties/sortie-63bcbbbb-1a32-4456-a924-b034d3755280/,Phil,,2/15/2018 0:00,13.0000000,13.0:25,47.791357000000,-4.262768000000,,Tréffiagat - Finistère,45146,observation-63bcbbbb-1a32-4456-a924-b034d3755280-3,https://biolit.fr/observations/observation-63bcbbbb-1a32-4456-a924-b034d3755280-3/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20180215_132246.jpg,,TRUE, +N1,59994,sortie-cc60561a-374f-41cb-ad83-8e1f6d6dad31,https://biolit.fr/sorties/sortie-cc60561a-374f-41cb-ad83-8e1f6d6dad31/,Phil,,01/06/2018,15.0:45,15.0000000,48.004656000000,-4.523041000000,,Plouhinec - Finistère,45150,observation-cc60561a-374f-41cb-ad83-8e1f6d6dad31-2,https://biolit.fr/observations/observation-cc60561a-374f-41cb-ad83-8e1f6d6dad31-2/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1100001.JPG,,TRUE, +N1,59994,sortie-cc60561a-374f-41cb-ad83-8e1f6d6dad31,https://biolit.fr/sorties/sortie-cc60561a-374f-41cb-ad83-8e1f6d6dad31/,Phil,,01/06/2018,15.0:45,15.0000000,48.004656000000,-4.523041000000,,Plouhinec - Finistère,45152,observation-cc60561a-374f-41cb-ad83-8e1f6d6dad31-3,https://biolit.fr/observations/observation-cc60561a-374f-41cb-ad83-8e1f6d6dad31-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100004.JPG,,FALSE, +N1,59995,sortie-f9c1a14b-d4b7-4e72-ac09-2dbef1ee9058,https://biolit.fr/sorties/sortie-f9c1a14b-d4b7-4e72-ac09-2dbef1ee9058/,Phil,,2/26/2018 0:00,12.0000000,12.0:25,48.113982000000,-4.283024000000,,Plonevez - Porzay - Finistère,45154,observation-f9c1a14b-d4b7-4e72-ac09-2dbef1ee9058,https://biolit.fr/observations/observation-f9c1a14b-d4b7-4e72-ac09-2dbef1ee9058/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100565.JPG,,FALSE, +N1,59995,sortie-f9c1a14b-d4b7-4e72-ac09-2dbef1ee9058,https://biolit.fr/sorties/sortie-f9c1a14b-d4b7-4e72-ac09-2dbef1ee9058/,Phil,,2/26/2018 0:00,12.0000000,12.0:25,48.113982000000,-4.283024000000,,Plonevez - Porzay - Finistère,45156,observation-f9c1a14b-d4b7-4e72-ac09-2dbef1ee9058-2,https://biolit.fr/observations/observation-f9c1a14b-d4b7-4e72-ac09-2dbef1ee9058-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100559.JPG,,FALSE, +N1,59995,sortie-f9c1a14b-d4b7-4e72-ac09-2dbef1ee9058,https://biolit.fr/sorties/sortie-f9c1a14b-d4b7-4e72-ac09-2dbef1ee9058/,Phil,,2/26/2018 0:00,12.0000000,12.0:25,48.113982000000,-4.283024000000,,Plonevez - Porzay - Finistère,45158,observation-f9c1a14b-d4b7-4e72-ac09-2dbef1ee9058-3,https://biolit.fr/observations/observation-f9c1a14b-d4b7-4e72-ac09-2dbef1ee9058-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100564.JPG,,FALSE, +N1,59995,sortie-f9c1a14b-d4b7-4e72-ac09-2dbef1ee9058,https://biolit.fr/sorties/sortie-f9c1a14b-d4b7-4e72-ac09-2dbef1ee9058/,Phil,,2/26/2018 0:00,12.0000000,12.0:25,48.113982000000,-4.283024000000,,Plonevez - Porzay - Finistère,45160,observation-f9c1a14b-d4b7-4e72-ac09-2dbef1ee9058-4,https://biolit.fr/observations/observation-f9c1a14b-d4b7-4e72-ac09-2dbef1ee9058-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100566.JPG,,FALSE, +N1,59996,sortie-63baca33-64d4-410b-bfcf-14ed732a3f4c,https://biolit.fr/sorties/sortie-63baca33-64d4-410b-bfcf-14ed732a3f4c/,Phil,,01/06/2018,15.0000000,15.0000000,48.004544000000,-4.522202000000,,Plouhinec - Finistère,45162,observation-63baca33-64d4-410b-bfcf-14ed732a3f4c,https://biolit.fr/observations/observation-63baca33-64d4-410b-bfcf-14ed732a3f4c/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090997.JPG,,FALSE, +N1,59996,sortie-63baca33-64d4-410b-bfcf-14ed732a3f4c,https://biolit.fr/sorties/sortie-63baca33-64d4-410b-bfcf-14ed732a3f4c/,Phil,,01/06/2018,15.0000000,15.0000000,48.004544000000,-4.522202000000,,Plouhinec - Finistère,45164,observation-63baca33-64d4-410b-bfcf-14ed732a3f4c-2,https://biolit.fr/observations/observation-63baca33-64d4-410b-bfcf-14ed732a3f4c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090995.JPG,,FALSE, +N1,59996,sortie-63baca33-64d4-410b-bfcf-14ed732a3f4c,https://biolit.fr/sorties/sortie-63baca33-64d4-410b-bfcf-14ed732a3f4c/,Phil,,01/06/2018,15.0000000,15.0000000,48.004544000000,-4.522202000000,,Plouhinec - Finistère,45166,observation-63baca33-64d4-410b-bfcf-14ed732a3f4c-3,https://biolit.fr/observations/observation-63baca33-64d4-410b-bfcf-14ed732a3f4c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090994.JPG,,FALSE, +N1,59996,sortie-63baca33-64d4-410b-bfcf-14ed732a3f4c,https://biolit.fr/sorties/sortie-63baca33-64d4-410b-bfcf-14ed732a3f4c/,Phil,,01/06/2018,15.0000000,15.0000000,48.004544000000,-4.522202000000,,Plouhinec - Finistère,45168,observation-63baca33-64d4-410b-bfcf-14ed732a3f4c-4,https://biolit.fr/observations/observation-63baca33-64d4-410b-bfcf-14ed732a3f4c-4/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1090992 - .JPG,,TRUE, +N1,59997,sortie-5b65bf70-3dfe-43a1-ad5d-5a5de44d2cd5,https://biolit.fr/sorties/sortie-5b65bf70-3dfe-43a1-ad5d-5a5de44d2cd5/,Phil,,2/26/2018 0:00,11.0000000,11.0:25,48.114352000000,-4.281865000000,,Plonévez-Porzay - Finistère,45170,observation-5b65bf70-3dfe-43a1-ad5d-5a5de44d2cd5,https://biolit.fr/observations/observation-5b65bf70-3dfe-43a1-ad5d-5a5de44d2cd5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100405.JPG,,FALSE, +N1,59997,sortie-5b65bf70-3dfe-43a1-ad5d-5a5de44d2cd5,https://biolit.fr/sorties/sortie-5b65bf70-3dfe-43a1-ad5d-5a5de44d2cd5/,Phil,,2/26/2018 0:00,11.0000000,11.0:25,48.114352000000,-4.281865000000,,Plonévez-Porzay - Finistère,45172,observation-5b65bf70-3dfe-43a1-ad5d-5a5de44d2cd5-2,https://biolit.fr/observations/observation-5b65bf70-3dfe-43a1-ad5d-5a5de44d2cd5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100407.JPG,,FALSE, +N1,59997,sortie-5b65bf70-3dfe-43a1-ad5d-5a5de44d2cd5,https://biolit.fr/sorties/sortie-5b65bf70-3dfe-43a1-ad5d-5a5de44d2cd5/,Phil,,2/26/2018 0:00,11.0000000,11.0:25,48.114352000000,-4.281865000000,,Plonévez-Porzay - Finistère,45174,observation-5b65bf70-3dfe-43a1-ad5d-5a5de44d2cd5-3,https://biolit.fr/observations/observation-5b65bf70-3dfe-43a1-ad5d-5a5de44d2cd5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100410.JPG,,FALSE, +N1,59997,sortie-5b65bf70-3dfe-43a1-ad5d-5a5de44d2cd5,https://biolit.fr/sorties/sortie-5b65bf70-3dfe-43a1-ad5d-5a5de44d2cd5/,Phil,,2/26/2018 0:00,11.0000000,11.0:25,48.114352000000,-4.281865000000,,Plonévez-Porzay - Finistère,45176,observation-5b65bf70-3dfe-43a1-ad5d-5a5de44d2cd5-4,https://biolit.fr/observations/observation-5b65bf70-3dfe-43a1-ad5d-5a5de44d2cd5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100408.JPG,,FALSE, +N1,59998,sortie-3707f14f-033b-4db6-8ef3-61bd07565b61,https://biolit.fr/sorties/sortie-3707f14f-033b-4db6-8ef3-61bd07565b61/,école de l'Almanarre,,12/04/2017,11.0000000,13.0000000,43.006129000000,6.205413000000,,ile de porquerolles,45178,observation-3707f14f-033b-4db6-8ef3-61bd07565b61,https://biolit.fr/observations/observation-3707f14f-033b-4db6-8ef3-61bd07565b61/,,,,https://biolit.fr/wp-content/uploads/2023/07/P_20171204_124349-scaled.jpg,,FALSE, +N1,59999,sortie-f4dd8475-bd0a-4ec2-bbd2-8091c4ee6d95,https://biolit.fr/sorties/sortie-f4dd8475-bd0a-4ec2-bbd2-8091c4ee6d95/,école de l'Almanarre,,1/18/2018 0:00,9.0000000,10.0:25,43.048795000000,6.155288000000,,plage de l'Almanarre,45180,observation-f4dd8475-bd0a-4ec2-bbd2-8091c4ee6d95,https://biolit.fr/observations/observation-f4dd8475-bd0a-4ec2-bbd2-8091c4ee6d95/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0191.jpg,,TRUE, +N1,59999,sortie-f4dd8475-bd0a-4ec2-bbd2-8091c4ee6d95,https://biolit.fr/sorties/sortie-f4dd8475-bd0a-4ec2-bbd2-8091c4ee6d95/,école de l'Almanarre,,1/18/2018 0:00,9.0000000,10.0:25,43.048795000000,6.155288000000,,plage de l'Almanarre,45182,observation-f4dd8475-bd0a-4ec2-bbd2-8091c4ee6d95-2,https://biolit.fr/observations/observation-f4dd8475-bd0a-4ec2-bbd2-8091c4ee6d95-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1388.jpg,,FALSE, +N1,59999,sortie-f4dd8475-bd0a-4ec2-bbd2-8091c4ee6d95,https://biolit.fr/sorties/sortie-f4dd8475-bd0a-4ec2-bbd2-8091c4ee6d95/,école de l'Almanarre,,1/18/2018 0:00,9.0000000,10.0:25,43.048795000000,6.155288000000,,plage de l'Almanarre,45184,observation-f4dd8475-bd0a-4ec2-bbd2-8091c4ee6d95-3,https://biolit.fr/observations/observation-f4dd8475-bd0a-4ec2-bbd2-8091c4ee6d95-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2078.jpg,,FALSE, +N1,59999,sortie-f4dd8475-bd0a-4ec2-bbd2-8091c4ee6d95,https://biolit.fr/sorties/sortie-f4dd8475-bd0a-4ec2-bbd2-8091c4ee6d95/,école de l'Almanarre,,1/18/2018 0:00,9.0000000,10.0:25,43.048795000000,6.155288000000,,plage de l'Almanarre,45186,observation-f4dd8475-bd0a-4ec2-bbd2-8091c4ee6d95-4,https://biolit.fr/observations/observation-f4dd8475-bd0a-4ec2-bbd2-8091c4ee6d95-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7507.JPG,,FALSE, +N1,60013,sortie-f1411678-8d33-4ed1-a494-79de3d849a64,https://biolit.fr/sorties/sortie-f1411678-8d33-4ed1-a494-79de3d849a64/,Phil,,01/06/2018,15.0000000,15.0000000,48.00459300000,-4.520221000000,,Plouhinec - Finistère,45213,observation-f1411678-8d33-4ed1-a494-79de3d849a64,https://biolit.fr/observations/observation-f1411678-8d33-4ed1-a494-79de3d849a64/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1090989.JPG,,TRUE, +N1,60013,sortie-f1411678-8d33-4ed1-a494-79de3d849a64,https://biolit.fr/sorties/sortie-f1411678-8d33-4ed1-a494-79de3d849a64/,Phil,,01/06/2018,15.0000000,15.0000000,48.00459300000,-4.520221000000,,Plouhinec - Finistère,45215,observation-f1411678-8d33-4ed1-a494-79de3d849a64-2,https://biolit.fr/observations/observation-f1411678-8d33-4ed1-a494-79de3d849a64-2/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1090988.JPG,,TRUE, +N1,60013,sortie-f1411678-8d33-4ed1-a494-79de3d849a64,https://biolit.fr/sorties/sortie-f1411678-8d33-4ed1-a494-79de3d849a64/,Phil,,01/06/2018,15.0000000,15.0000000,48.00459300000,-4.520221000000,,Plouhinec - Finistère,45217,observation-f1411678-8d33-4ed1-a494-79de3d849a64-3,https://biolit.fr/observations/observation-f1411678-8d33-4ed1-a494-79de3d849a64-3/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1090987.JPG,,TRUE, +N1,60013,sortie-f1411678-8d33-4ed1-a494-79de3d849a64,https://biolit.fr/sorties/sortie-f1411678-8d33-4ed1-a494-79de3d849a64/,Phil,,01/06/2018,15.0000000,15.0000000,48.00459300000,-4.520221000000,,Plouhinec - Finistère,45219,observation-f1411678-8d33-4ed1-a494-79de3d849a64-4,https://biolit.fr/observations/observation-f1411678-8d33-4ed1-a494-79de3d849a64-4/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1090985.JPG,,TRUE, +N1,60013,sortie-f1411678-8d33-4ed1-a494-79de3d849a64,https://biolit.fr/sorties/sortie-f1411678-8d33-4ed1-a494-79de3d849a64/,Phil,,01/06/2018,15.0000000,15.0000000,48.00459300000,-4.520221000000,,Plouhinec - Finistère,45221,observation-f1411678-8d33-4ed1-a494-79de3d849a64-5,https://biolit.fr/observations/observation-f1411678-8d33-4ed1-a494-79de3d849a64-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1090990.JPG,,TRUE, +N1,60014,sortie-a2f63830-738b-488f-a4b7-e23e92320479,https://biolit.fr/sorties/sortie-a2f63830-738b-488f-a4b7-e23e92320479/,Ville de Marseille Lodi CM1,,1/29/2018 0:00,10.0000000,12.0000000,43.239859000000,5.362448000000,,bain des dames,45223,observation-a2f63830-738b-488f-a4b7-e23e92320479,https://biolit.fr/observations/observation-a2f63830-738b-488f-a4b7-e23e92320479/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/2023/07/Patelle ponctuee-Patella rustica vue externe .JPG,,TRUE, +N1,60014,sortie-a2f63830-738b-488f-a4b7-e23e92320479,https://biolit.fr/sorties/sortie-a2f63830-738b-488f-a4b7-e23e92320479/,Ville de Marseille Lodi CM1,,1/29/2018 0:00,10.0000000,12.0000000,43.239859000000,5.362448000000,,bain des dames,45225,observation-a2f63830-738b-488f-a4b7-e23e92320479-2,https://biolit.fr/observations/observation-a2f63830-738b-488f-a4b7-e23e92320479-2/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/2023/07/Patelle ponctuee-Patella rustica vue interne.JPG,,TRUE, +N1,60015,sortie-e2c131e3-b194-48d8-be69-e19a6d24c48d,https://biolit.fr/sorties/sortie-e2c131e3-b194-48d8-be69-e19a6d24c48d/,Ville de Marseille Lodi CM1,,1/29/2018 0:00,10.0000000,12.0000000,43.239957000000,5.362448000000,,bain des dames,45227,observation-e2c131e3-b194-48d8-be69-e19a6d24c48d,https://biolit.fr/observations/observation-e2c131e3-b194-48d8-be69-e19a6d24c48d/,,,,https://biolit.fr/wp-content/uploads/2023/07/Grand vermet-Thylacodes arenarius.JPG,,FALSE, +N1,60015,sortie-e2c131e3-b194-48d8-be69-e19a6d24c48d,https://biolit.fr/sorties/sortie-e2c131e3-b194-48d8-be69-e19a6d24c48d/,Ville de Marseille Lodi CM1,,1/29/2018 0:00,10.0000000,12.0000000,43.239957000000,5.362448000000,,bain des dames,45229,observation-e2c131e3-b194-48d8-be69-e19a6d24c48d-2,https://biolit.fr/observations/observation-e2c131e3-b194-48d8-be69-e19a6d24c48d-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/oursin- Paracentrotus lividus.JPG,,TRUE, +N1,60016,sortie-c9d39d0b-4f90-490a-b4dd-1a1e778d389f,https://biolit.fr/sorties/sortie-c9d39d0b-4f90-490a-b4dd-1a1e778d389f/,Ville de Marseille Lodi CM1,,1/29/2018 0:00,10.0000000,12.0000000,43.239734000000,5.362454000000,,plage des bain des dames,45231,observation-c9d39d0b-4f90-490a-b4dd-1a1e778d389f,https://biolit.fr/observations/observation-c9d39d0b-4f90-490a-b4dd-1a1e778d389f/,,,,https://biolit.fr/wp-content/uploads/2023/07/Petoncle- Mimachlamys varia vue interne.JPG,,FALSE, +N1,60017,sortie-1fe9e98f-edbc-41ca-814f-60a22676e7c4,https://biolit.fr/sorties/sortie-1fe9e98f-edbc-41ca-814f-60a22676e7c4/,Ville de Marseille Lodi CM1,,1/29/2018 0:00,10.0000000,12.0000000,43.239746000000,5.36245900000,,plage du bain des dames,45233,observation-1fe9e98f-edbc-41ca-814f-60a22676e7c4,https://biolit.fr/observations/observation-1fe9e98f-edbc-41ca-814f-60a22676e7c4/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/Columbelle rustique-columbella rustica dos.JPG,,TRUE, +N1,60017,sortie-1fe9e98f-edbc-41ca-814f-60a22676e7c4,https://biolit.fr/sorties/sortie-1fe9e98f-edbc-41ca-814f-60a22676e7c4/,Ville de Marseille Lodi CM1,,1/29/2018 0:00,10.0000000,12.0000000,43.239746000000,5.36245900000,,plage du bain des dames,45235,observation-1fe9e98f-edbc-41ca-814f-60a22676e7c4-2,https://biolit.fr/observations/observation-1fe9e98f-edbc-41ca-814f-60a22676e7c4-2/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/Columbelle rustique-columbella rustica ouverture.JPG,,TRUE, +N1,60018,sortie-ab4ade78-4bd6-469e-9e4e-c1c26ac81183,https://biolit.fr/sorties/sortie-ab4ade78-4bd6-469e-9e4e-c1c26ac81183/,Ville de Marseille Lodi CM1,,1/29/2018 0:00,10.0000000,12.0000000,43.239836000000,5.362454000000,,plage du bain des dames,45237,observation-ab4ade78-4bd6-469e-9e4e-c1c26ac81183,https://biolit.fr/observations/observation-ab4ade78-4bd6-469e-9e4e-c1c26ac81183/,Euthria cornea,Buccin veiné,,https://biolit.fr/wp-content/uploads/2023/07/Buccin veiné-Euthria cornea.JPG,,TRUE, +N1,60018,sortie-ab4ade78-4bd6-469e-9e4e-c1c26ac81183,https://biolit.fr/sorties/sortie-ab4ade78-4bd6-469e-9e4e-c1c26ac81183/,Ville de Marseille Lodi CM1,,1/29/2018 0:00,10.0000000,12.0000000,43.239836000000,5.362454000000,,plage du bain des dames,45239,observation-ab4ade78-4bd6-469e-9e4e-c1c26ac81183-2,https://biolit.fr/observations/observation-ab4ade78-4bd6-469e-9e4e-c1c26ac81183-2/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/Arche barbue- Barbatia barbata.JPG,,TRUE, +N1,60019,sortie-9e1e9b22-e161-47bb-b8ea-c15256392aa9,https://biolit.fr/sorties/sortie-9e1e9b22-e161-47bb-b8ea-c15256392aa9/,Ville de Marseille Lodi CM1,,1/29/2018 0:00,10.0000000,12.0000000,43.239773000000,5.362432000000,,plage du bain des dames,45241,observation-9e1e9b22-e161-47bb-b8ea-c15256392aa9,https://biolit.fr/observations/observation-9e1e9b22-e161-47bb-b8ea-c15256392aa9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Petit vermet-Vermetus triquetrus.JPG,,FALSE, +N1,60019,sortie-9e1e9b22-e161-47bb-b8ea-c15256392aa9,https://biolit.fr/sorties/sortie-9e1e9b22-e161-47bb-b8ea-c15256392aa9/,Ville de Marseille Lodi CM1,,1/29/2018 0:00,10.0000000,12.0000000,43.239773000000,5.362432000000,,plage du bain des dames,45243,observation-9e1e9b22-e161-47bb-b8ea-c15256392aa9-2,https://biolit.fr/observations/observation-9e1e9b22-e161-47bb-b8ea-c15256392aa9-2/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/POSIDONIE-Posidonia oceanica-scaled.jpg,,TRUE, +N1,60020,sortie-667da508-d034-48c6-9ecc-13dd0fe41369,https://biolit.fr/sorties/sortie-667da508-d034-48c6-9ecc-13dd0fe41369/,Ville de Marseille Lodi CM1,,1/29/2018 0:00,10.0000000,12.0000000,43.239839000000,5.362444000000,, plage du bain des dames@,45244,observation-667da508-d034-48c6-9ecc-13dd0fe41369,https://biolit.fr/observations/observation-667da508-d034-48c6-9ecc-13dd0fe41369/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cerithe goumier-Cerithium vulgatum.JPG,,FALSE, +N1,60020,sortie-667da508-d034-48c6-9ecc-13dd0fe41369,https://biolit.fr/sorties/sortie-667da508-d034-48c6-9ecc-13dd0fe41369/,Ville de Marseille Lodi CM1,,1/29/2018 0:00,10.0000000,12.0000000,43.239839000000,5.362444000000,, plage du bain des dames@,45246,observation-667da508-d034-48c6-9ecc-13dd0fe41369-2,https://biolit.fr/observations/observation-667da508-d034-48c6-9ecc-13dd0fe41369-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbula3.JPG,,FALSE, +N1,60021,sortie-ad67c0cb-cdff-404f-b3eb-e48b0fcaf670,https://biolit.fr/sorties/sortie-ad67c0cb-cdff-404f-b3eb-e48b0fcaf670/,Ville de Marseille Lodi CM1,,1/29/2018 0:00,10.0000000,11.0:55,43.239926000000,5.362414000000,,plage du bain des dames,45248,observation-ad67c0cb-cdff-404f-b3eb-e48b0fcaf670,https://biolit.fr/observations/observation-ad67c0cb-cdff-404f-b3eb-e48b0fcaf670/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Seiche commune-Sepia officinalis-scaled.jpg,,TRUE, +N1,60021,sortie-ad67c0cb-cdff-404f-b3eb-e48b0fcaf670,https://biolit.fr/sorties/sortie-ad67c0cb-cdff-404f-b3eb-e48b0fcaf670/,Ville de Marseille Lodi CM1,,1/29/2018 0:00,10.0000000,11.0:55,43.239926000000,5.362414000000,,plage du bain des dames,45250,observation-ad67c0cb-cdff-404f-b3eb-e48b0fcaf670-2,https://biolit.fr/observations/observation-ad67c0cb-cdff-404f-b3eb-e48b0fcaf670-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Praire commune-Venus verrucosa.JPG,,FALSE, +N1,60022,sortie-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd,https://biolit.fr/sorties/sortie-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd/,Phil,,1/14/2018 0:00,13.0:15,13.0000000,47.845571000000,-4.041712000000,,Mousterlin - Finistère,45252,observation-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd,https://biolit.fr/observations/observation-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100377.JPG,,FALSE, +N1,60022,sortie-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd,https://biolit.fr/sorties/sortie-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd/,Phil,,1/14/2018 0:00,13.0:15,13.0000000,47.845571000000,-4.041712000000,,Mousterlin - Finistère,45254,observation-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd-2,https://biolit.fr/observations/observation-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100380.JPG,,FALSE, +N1,60022,sortie-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd,https://biolit.fr/sorties/sortie-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd/,Phil,,1/14/2018 0:00,13.0:15,13.0000000,47.845571000000,-4.041712000000,,Mousterlin - Finistère,45256,observation-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd-3,https://biolit.fr/observations/observation-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100383.JPG,,FALSE, +N1,60022,sortie-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd,https://biolit.fr/sorties/sortie-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd/,Phil,,1/14/2018 0:00,13.0:15,13.0000000,47.845571000000,-4.041712000000,,Mousterlin - Finistère,45258,observation-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd-4,https://biolit.fr/observations/observation-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100390.JPG,,FALSE, +N1,60022,sortie-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd,https://biolit.fr/sorties/sortie-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd/,Phil,,1/14/2018 0:00,13.0:15,13.0000000,47.845571000000,-4.041712000000,,Mousterlin - Finistère,45260,observation-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd-5,https://biolit.fr/observations/observation-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100399.JPG,,FALSE, +N1,60022,sortie-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd,https://biolit.fr/sorties/sortie-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd/,Phil,,1/14/2018 0:00,13.0:15,13.0000000,47.845571000000,-4.041712000000,,Mousterlin - Finistère,45262,observation-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd-6,https://biolit.fr/observations/observation-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100402.JPG,,FALSE, +N1,60023,sortie-98189ed8-03c9-4b4d-8ce3-5bc0eca4379f,https://biolit.fr/sorties/sortie-98189ed8-03c9-4b4d-8ce3-5bc0eca4379f/,Phil,,01/06/2018,15.0000000,15.0:35,48.004456000000,-4.521312000000,,Plouhinec - Finistère,45264,observation-98189ed8-03c9-4b4d-8ce3-5bc0eca4379f,https://biolit.fr/observations/observation-98189ed8-03c9-4b4d-8ce3-5bc0eca4379f/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090982.JPG,,FALSE, +N1,60023,sortie-98189ed8-03c9-4b4d-8ce3-5bc0eca4379f,https://biolit.fr/sorties/sortie-98189ed8-03c9-4b4d-8ce3-5bc0eca4379f/,Phil,,01/06/2018,15.0000000,15.0:35,48.004456000000,-4.521312000000,,Plouhinec - Finistère,45266,observation-98189ed8-03c9-4b4d-8ce3-5bc0eca4379f-2,https://biolit.fr/observations/observation-98189ed8-03c9-4b4d-8ce3-5bc0eca4379f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090981.JPG,,FALSE, +N1,60023,sortie-98189ed8-03c9-4b4d-8ce3-5bc0eca4379f,https://biolit.fr/sorties/sortie-98189ed8-03c9-4b4d-8ce3-5bc0eca4379f/,Phil,,01/06/2018,15.0000000,15.0:35,48.004456000000,-4.521312000000,,Plouhinec - Finistère,45268,observation-98189ed8-03c9-4b4d-8ce3-5bc0eca4379f-3,https://biolit.fr/observations/observation-98189ed8-03c9-4b4d-8ce3-5bc0eca4379f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090980.JPG,,FALSE, +N1,60024,sortie-b17544d8-57d3-489f-91e1-9f775d772f26,https://biolit.fr/sorties/sortie-b17544d8-57d3-489f-91e1-9f775d772f26/,Ville de Marseille école François Moisson CM1C,,1/22/2018 0:00,10.0000000,11.0000000,43.280241000000,5.352808000000,,"anse de la fausse monnaie, Marseille 13",45270,observation-b17544d8-57d3-489f-91e1-9f775d772f26,https://biolit.fr/observations/observation-b17544d8-57d3-489f-91e1-9f775d772f26/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/Bérêt basque Codium bursa-scaled.jpg,,TRUE, +N1,60024,sortie-b17544d8-57d3-489f-91e1-9f775d772f26,https://biolit.fr/sorties/sortie-b17544d8-57d3-489f-91e1-9f775d772f26/,Ville de Marseille école François Moisson CM1C,,1/22/2018 0:00,10.0000000,11.0000000,43.280241000000,5.352808000000,,"anse de la fausse monnaie, Marseille 13",45271,observation-b17544d8-57d3-489f-91e1-9f775d772f26-2,https://biolit.fr/observations/observation-b17544d8-57d3-489f-91e1-9f775d772f26-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Chama gryphoides exterieur.JPG,,FALSE, +N1,60024,sortie-b17544d8-57d3-489f-91e1-9f775d772f26,https://biolit.fr/sorties/sortie-b17544d8-57d3-489f-91e1-9f775d772f26/,Ville de Marseille école François Moisson CM1C,,1/22/2018 0:00,10.0000000,11.0000000,43.280241000000,5.352808000000,,"anse de la fausse monnaie, Marseille 13",45273,observation-b17544d8-57d3-489f-91e1-9f775d772f26-3,https://biolit.fr/observations/observation-b17544d8-57d3-489f-91e1-9f775d772f26-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Chama gryphoides interieur.JPG,,FALSE, +N1,60024,sortie-b17544d8-57d3-489f-91e1-9f775d772f26,https://biolit.fr/sorties/sortie-b17544d8-57d3-489f-91e1-9f775d772f26/,Ville de Marseille école François Moisson CM1C,,1/22/2018 0:00,10.0000000,11.0000000,43.280241000000,5.352808000000,,"anse de la fausse monnaie, Marseille 13",45275,observation-b17544d8-57d3-489f-91e1-9f775d772f26-4,https://biolit.fr/observations/observation-b17544d8-57d3-489f-91e1-9f775d772f26-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Columbelle rustique_ columbella rustica_0.JPG,,FALSE, +N1,60024,sortie-b17544d8-57d3-489f-91e1-9f775d772f26,https://biolit.fr/sorties/sortie-b17544d8-57d3-489f-91e1-9f775d772f26/,Ville de Marseille école François Moisson CM1C,,1/22/2018 0:00,10.0000000,11.0000000,43.280241000000,5.352808000000,,"anse de la fausse monnaie, Marseille 13",45277,observation-b17544d8-57d3-489f-91e1-9f775d772f26-5,https://biolit.fr/observations/observation-b17544d8-57d3-489f-91e1-9f775d772f26-5/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Cormaillot_Ocenebra erinaceus desous.JPG,,TRUE, +N1,60024,sortie-b17544d8-57d3-489f-91e1-9f775d772f26,https://biolit.fr/sorties/sortie-b17544d8-57d3-489f-91e1-9f775d772f26/,Ville de Marseille école François Moisson CM1C,,1/22/2018 0:00,10.0000000,11.0000000,43.280241000000,5.352808000000,,"anse de la fausse monnaie, Marseille 13",45279,observation-b17544d8-57d3-489f-91e1-9f775d772f26-6,https://biolit.fr/observations/observation-b17544d8-57d3-489f-91e1-9f775d772f26-6/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Cormaillot_Ocenebra erinaceus dessus.JPG,,TRUE, +N1,60024,sortie-b17544d8-57d3-489f-91e1-9f775d772f26,https://biolit.fr/sorties/sortie-b17544d8-57d3-489f-91e1-9f775d772f26/,Ville de Marseille école François Moisson CM1C,,1/22/2018 0:00,10.0000000,11.0000000,43.280241000000,5.352808000000,,"anse de la fausse monnaie, Marseille 13",45281,observation-b17544d8-57d3-489f-91e1-9f775d772f26-7,https://biolit.fr/observations/observation-b17544d8-57d3-489f-91e1-9f775d772f26-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle-Patella sp dessous.JPG,,FALSE, +N1,60024,sortie-b17544d8-57d3-489f-91e1-9f775d772f26,https://biolit.fr/sorties/sortie-b17544d8-57d3-489f-91e1-9f775d772f26/,Ville de Marseille école François Moisson CM1C,,1/22/2018 0:00,10.0000000,11.0000000,43.280241000000,5.352808000000,,"anse de la fausse monnaie, Marseille 13",45283,observation-b17544d8-57d3-489f-91e1-9f775d772f26-8,https://biolit.fr/observations/observation-b17544d8-57d3-489f-91e1-9f775d772f26-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle-Patella sp dessus.JPG,,FALSE, +N1,60024,sortie-b17544d8-57d3-489f-91e1-9f775d772f26,https://biolit.fr/sorties/sortie-b17544d8-57d3-489f-91e1-9f775d772f26/,Ville de Marseille école François Moisson CM1C,,1/22/2018 0:00,10.0000000,11.0000000,43.280241000000,5.352808000000,,"anse de la fausse monnaie, Marseille 13",45285,observation-b17544d8-57d3-489f-91e1-9f775d772f26-9,https://biolit.fr/observations/observation-b17544d8-57d3-489f-91e1-9f775d772f26-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Spondyle pied d'ane-Spondylus gaederopus extérieur.JPG,,FALSE, +N1,60024,sortie-b17544d8-57d3-489f-91e1-9f775d772f26,https://biolit.fr/sorties/sortie-b17544d8-57d3-489f-91e1-9f775d772f26/,Ville de Marseille école François Moisson CM1C,,1/22/2018 0:00,10.0000000,11.0000000,43.280241000000,5.352808000000,,"anse de la fausse monnaie, Marseille 13",45287,observation-b17544d8-57d3-489f-91e1-9f775d772f26-10,https://biolit.fr/observations/observation-b17544d8-57d3-489f-91e1-9f775d772f26-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Spondyle pied d'ane-Spondylus gaederopus interieur.JPG,,FALSE, +N1,60025,sortie-c241d899-f1f5-4cac-977b-47c9ed13aab7,https://biolit.fr/sorties/sortie-c241d899-f1f5-4cac-977b-47c9ed13aab7/,Phil,,01/06/2018,16.0:15,16.0000000,48.004564000000,-4.520930000000,,Plouhinec - Finistère,45289,observation-c241d899-f1f5-4cac-977b-47c9ed13aab7,https://biolit.fr/observations/observation-c241d899-f1f5-4cac-977b-47c9ed13aab7/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1100013.JPG,,TRUE, +N1,60025,sortie-c241d899-f1f5-4cac-977b-47c9ed13aab7,https://biolit.fr/sorties/sortie-c241d899-f1f5-4cac-977b-47c9ed13aab7/,Phil,,01/06/2018,16.0:15,16.0000000,48.004564000000,-4.520930000000,,Plouhinec - Finistère,45291,observation-c241d899-f1f5-4cac-977b-47c9ed13aab7-2,https://biolit.fr/observations/observation-c241d899-f1f5-4cac-977b-47c9ed13aab7-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1100015.JPG,,TRUE, +N1,60025,sortie-c241d899-f1f5-4cac-977b-47c9ed13aab7,https://biolit.fr/sorties/sortie-c241d899-f1f5-4cac-977b-47c9ed13aab7/,Phil,,01/06/2018,16.0:15,16.0000000,48.004564000000,-4.520930000000,,Plouhinec - Finistère,45293,observation-c241d899-f1f5-4cac-977b-47c9ed13aab7-3,https://biolit.fr/observations/observation-c241d899-f1f5-4cac-977b-47c9ed13aab7-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1100018.JPG,,TRUE, +N1,60025,sortie-c241d899-f1f5-4cac-977b-47c9ed13aab7,https://biolit.fr/sorties/sortie-c241d899-f1f5-4cac-977b-47c9ed13aab7/,Phil,,01/06/2018,16.0:15,16.0000000,48.004564000000,-4.520930000000,,Plouhinec - Finistère,45295,observation-c241d899-f1f5-4cac-977b-47c9ed13aab7-4,https://biolit.fr/observations/observation-c241d899-f1f5-4cac-977b-47c9ed13aab7-4/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1100020.JPG,,TRUE, +N1,60026,sortie-de43e1d9-0a7f-4c1f-adcc-d103a5530f63,https://biolit.fr/sorties/sortie-de43e1d9-0a7f-4c1f-adcc-d103a5530f63/,Centre de Découverte Mer et Montagne,,02/07/2018,11.0000000,12.0000000,43.686341000000,7.33937300000,,plage des fossettes,45297,observation-de43e1d9-0a7f-4c1f-adcc-d103a5530f63,https://biolit.fr/observations/observation-de43e1d9-0a7f-4c1f-adcc-d103a5530f63/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/codiumboule_cdmm.JPG,,TRUE, +N1,60027,sortie-369e17f9-788c-4c6f-8b54-517bab77d4b4,https://biolit.fr/sorties/sortie-369e17f9-788c-4c6f-8b54-517bab77d4b4/,Phil,,1/14/2018 0:00,11.0:55,12.0000000,47.852150000000,-4.02677400000,,Mousterlin - Finistère,45299,observation-369e17f9-788c-4c6f-8b54-517bab77d4b4,https://biolit.fr/observations/observation-369e17f9-788c-4c6f-8b54-517bab77d4b4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100250.JPG,,FALSE, +N1,60027,sortie-369e17f9-788c-4c6f-8b54-517bab77d4b4,https://biolit.fr/sorties/sortie-369e17f9-788c-4c6f-8b54-517bab77d4b4/,Phil,,1/14/2018 0:00,11.0:55,12.0000000,47.852150000000,-4.02677400000,,Mousterlin - Finistère,45301,observation-369e17f9-788c-4c6f-8b54-517bab77d4b4-2,https://biolit.fr/observations/observation-369e17f9-788c-4c6f-8b54-517bab77d4b4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100249.JPG,,FALSE, +N1,60027,sortie-369e17f9-788c-4c6f-8b54-517bab77d4b4,https://biolit.fr/sorties/sortie-369e17f9-788c-4c6f-8b54-517bab77d4b4/,Phil,,1/14/2018 0:00,11.0:55,12.0000000,47.852150000000,-4.02677400000,,Mousterlin - Finistère,45303,observation-369e17f9-788c-4c6f-8b54-517bab77d4b4-3,https://biolit.fr/observations/observation-369e17f9-788c-4c6f-8b54-517bab77d4b4-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100254.JPG,,FALSE, +N1,60027,sortie-369e17f9-788c-4c6f-8b54-517bab77d4b4,https://biolit.fr/sorties/sortie-369e17f9-788c-4c6f-8b54-517bab77d4b4/,Phil,,1/14/2018 0:00,11.0:55,12.0000000,47.852150000000,-4.02677400000,,Mousterlin - Finistère,45305,observation-369e17f9-788c-4c6f-8b54-517bab77d4b4-4,https://biolit.fr/observations/observation-369e17f9-788c-4c6f-8b54-517bab77d4b4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100257.JPG,,FALSE, +N1,60027,sortie-369e17f9-788c-4c6f-8b54-517bab77d4b4,https://biolit.fr/sorties/sortie-369e17f9-788c-4c6f-8b54-517bab77d4b4/,Phil,,1/14/2018 0:00,11.0:55,12.0000000,47.852150000000,-4.02677400000,,Mousterlin - Finistère,45307,observation-369e17f9-788c-4c6f-8b54-517bab77d4b4-5,https://biolit.fr/observations/observation-369e17f9-788c-4c6f-8b54-517bab77d4b4-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100259.JPG,,FALSE, +N1,60027,sortie-369e17f9-788c-4c6f-8b54-517bab77d4b4,https://biolit.fr/sorties/sortie-369e17f9-788c-4c6f-8b54-517bab77d4b4/,Phil,,1/14/2018 0:00,11.0:55,12.0000000,47.852150000000,-4.02677400000,,Mousterlin - Finistère,45309,observation-369e17f9-788c-4c6f-8b54-517bab77d4b4-6,https://biolit.fr/observations/observation-369e17f9-788c-4c6f-8b54-517bab77d4b4-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100261.JPG,,FALSE, +N1,60027,sortie-369e17f9-788c-4c6f-8b54-517bab77d4b4,https://biolit.fr/sorties/sortie-369e17f9-788c-4c6f-8b54-517bab77d4b4/,Phil,,1/14/2018 0:00,11.0:55,12.0000000,47.852150000000,-4.02677400000,,Mousterlin - Finistère,45311,observation-369e17f9-788c-4c6f-8b54-517bab77d4b4-7,https://biolit.fr/observations/observation-369e17f9-788c-4c6f-8b54-517bab77d4b4-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100272.JPG,,FALSE, +N1,60028,sortie-2938d59f-10f1-4aeb-8e53-e81be82d6166,https://biolit.fr/sorties/sortie-2938d59f-10f1-4aeb-8e53-e81be82d6166/,Phil,,01/06/2018,16.0:35,16.0000000,48.005056000000,-4.511220000000,,Plouhinec - Finistère,45313,observation-2938d59f-10f1-4aeb-8e53-e81be82d6166,https://biolit.fr/observations/observation-2938d59f-10f1-4aeb-8e53-e81be82d6166/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100028.JPG,,FALSE, +N1,60028,sortie-2938d59f-10f1-4aeb-8e53-e81be82d6166,https://biolit.fr/sorties/sortie-2938d59f-10f1-4aeb-8e53-e81be82d6166/,Phil,,01/06/2018,16.0:35,16.0000000,48.005056000000,-4.511220000000,,Plouhinec - Finistère,45315,observation-2938d59f-10f1-4aeb-8e53-e81be82d6166-2,https://biolit.fr/observations/observation-2938d59f-10f1-4aeb-8e53-e81be82d6166-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100029.JPG,,FALSE, +N1,60029,sortie-109f7fcb-d4db-4ea7-b373-c668c9738e2c,https://biolit.fr/sorties/sortie-109f7fcb-d4db-4ea7-b373-c668c9738e2c/,Phil,,01/06/2018,16.0000000,16.0:25,48.003644000000,-4.508169000000,,Plouhinec - Finistère,45317,observation-109f7fcb-d4db-4ea7-b373-c668c9738e2c,https://biolit.fr/observations/observation-109f7fcb-d4db-4ea7-b373-c668c9738e2c/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100022.JPG,,FALSE, +N1,60029,sortie-109f7fcb-d4db-4ea7-b373-c668c9738e2c,https://biolit.fr/sorties/sortie-109f7fcb-d4db-4ea7-b373-c668c9738e2c/,Phil,,01/06/2018,16.0000000,16.0:25,48.003644000000,-4.508169000000,,Plouhinec - Finistère,45319,observation-109f7fcb-d4db-4ea7-b373-c668c9738e2c-2,https://biolit.fr/observations/observation-109f7fcb-d4db-4ea7-b373-c668c9738e2c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100024.JPG,,FALSE, +N1,60030,sortie-4e0c0fa8-cd51-4796-ad04-7764a9992ec0,https://biolit.fr/sorties/sortie-4e0c0fa8-cd51-4796-ad04-7764a9992ec0/,Raphaël,,1/31/2018 0:00,15.0000000,16.0:15,43.240848000000,5.362192000000,,bain des dames ,45321,observation-4e0c0fa8-cd51-4796-ad04-7764a9992ec0,https://biolit.fr/observations/observation-4e0c0fa8-cd51-4796-ad04-7764a9992ec0/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20180201_172746[1]-scaled.jpg,,TRUE, +N1,60031,sortie-df4c4c16-b5c2-41e8-a4ce-733a0039d899,https://biolit.fr/sorties/sortie-df4c4c16-b5c2-41e8-a4ce-733a0039d899/,Ville de Marseille école François Moisson CM1C,,1/22/2018 0:00,10.0000000,11.0000000,43.280249000000,5.352771000000,,Anse de la fausse monnaie,45323,observation-df4c4c16-b5c2-41e8-a4ce-733a0039d899,https://biolit.fr/observations/observation-df4c4c16-b5c2-41e8-a4ce-733a0039d899/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle-Patella sp dessus_0.JPG,,FALSE, +N1,60032,sortie-6b6369d5-7c08-441b-87ae-f301c0084631,https://biolit.fr/sorties/sortie-6b6369d5-7c08-441b-87ae-f301c0084631/,Corinne DUMAS,,02/01/2018,11.0000000,12.0000000,47.542670000000,-2.903798000000,,Arzon - Kercouedo,45325,observation-6b6369d5-7c08-441b-87ae-f301c0084631,https://biolit.fr/observations/observation-6b6369d5-7c08-441b-87ae-f301c0084631/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1063.JPG,,FALSE, +N1,60032,sortie-6b6369d5-7c08-441b-87ae-f301c0084631,https://biolit.fr/sorties/sortie-6b6369d5-7c08-441b-87ae-f301c0084631/,Corinne DUMAS,,02/01/2018,11.0000000,12.0000000,47.542670000000,-2.903798000000,,Arzon - Kercouedo,45327,observation-6b6369d5-7c08-441b-87ae-f301c0084631-2,https://biolit.fr/observations/observation-6b6369d5-7c08-441b-87ae-f301c0084631-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1064.JPG,,FALSE, +N1,60032,sortie-6b6369d5-7c08-441b-87ae-f301c0084631,https://biolit.fr/sorties/sortie-6b6369d5-7c08-441b-87ae-f301c0084631/,Corinne DUMAS,,02/01/2018,11.0000000,12.0000000,47.542670000000,-2.903798000000,,Arzon - Kercouedo,45329,observation-6b6369d5-7c08-441b-87ae-f301c0084631-3,https://biolit.fr/observations/observation-6b6369d5-7c08-441b-87ae-f301c0084631-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1066.JPG,,FALSE, +N1,60032,sortie-6b6369d5-7c08-441b-87ae-f301c0084631,https://biolit.fr/sorties/sortie-6b6369d5-7c08-441b-87ae-f301c0084631/,Corinne DUMAS,,02/01/2018,11.0000000,12.0000000,47.542670000000,-2.903798000000,,Arzon - Kercouedo,45331,observation-6b6369d5-7c08-441b-87ae-f301c0084631-4,https://biolit.fr/observations/observation-6b6369d5-7c08-441b-87ae-f301c0084631-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040068.JPG,,FALSE, +N1,60033,sortie-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5,https://biolit.fr/sorties/sortie-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5/,Phil,,1/14/2018 0:00,13.000005,13.0:15,47.846121000000,-4.042027000000,,Mousterlin - Finistère,45333,observation-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5,https://biolit.fr/observations/observation-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100358.JPG,,FALSE, +N1,60033,sortie-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5,https://biolit.fr/sorties/sortie-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5/,Phil,,1/14/2018 0:00,13.000005,13.0:15,47.846121000000,-4.042027000000,,Mousterlin - Finistère,45335,observation-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5-2,https://biolit.fr/observations/observation-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100356.JPG,,FALSE, +N1,60033,sortie-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5,https://biolit.fr/sorties/sortie-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5/,Phil,,1/14/2018 0:00,13.000005,13.0:15,47.846121000000,-4.042027000000,,Mousterlin - Finistère,45337,observation-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5-3,https://biolit.fr/observations/observation-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100354.JPG,,FALSE, +N1,60033,sortie-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5,https://biolit.fr/sorties/sortie-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5/,Phil,,1/14/2018 0:00,13.000005,13.0:15,47.846121000000,-4.042027000000,,Mousterlin - Finistère,45339,observation-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5-4,https://biolit.fr/observations/observation-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5-4/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1100362.JPG,,TRUE, +N1,60033,sortie-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5,https://biolit.fr/sorties/sortie-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5/,Phil,,1/14/2018 0:00,13.000005,13.0:15,47.846121000000,-4.042027000000,,Mousterlin - Finistère,45341,observation-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5-5,https://biolit.fr/observations/observation-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5-5/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1100366.JPG,,TRUE, +N1,60034,sortie-3141d773-e13d-4a03-9964-8e6e1aafc15b,https://biolit.fr/sorties/sortie-3141d773-e13d-4a03-9964-8e6e1aafc15b/,Natura 2000 - Embouchure de l'Argens,,1/31/2018 0:00,14.0000000,14.0000000,43.41348800000,6.797087000000,,Plage de la Péguière,45343,observation-3141d773-e13d-4a03-9964-8e6e1aafc15b,https://biolit.fr/observations/observation-3141d773-e13d-4a03-9964-8e6e1aafc15b/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/DSCN5652-scaled.jpg,,TRUE, +N1,60035,sortie-7531de46-d3e3-4ad9-8cad-5f076e471ea7,https://biolit.fr/sorties/sortie-7531de46-d3e3-4ad9-8cad-5f076e471ea7/,ADEE,,1/31/2018 0:00,14.0000000,14.0000000,43.413723000000,6.797351000000,,Plage de la Péguière,45345,observation-7531de46-d3e3-4ad9-8cad-5f076e471ea7,https://biolit.fr/observations/observation-7531de46-d3e3-4ad9-8cad-5f076e471ea7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180131_141125-scaled.jpg,,FALSE, +N1,60036,sortie-6a7ab905-deb9-416f-8904-23080af30802,https://biolit.fr/sorties/sortie-6a7ab905-deb9-416f-8904-23080af30802/,Natura 2000 CAVEM,,1/31/2018 0:00,14.0000000,14.0000000,43.413640000000,6.797434000000,,Plage de la Peguiere ,45347,observation-6a7ab905-deb9-416f-8904-23080af30802,https://biolit.fr/observations/observation-6a7ab905-deb9-416f-8904-23080af30802/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180131_141347-scaled.jpg,,FALSE, +N1,60036,sortie-6a7ab905-deb9-416f-8904-23080af30802,https://biolit.fr/sorties/sortie-6a7ab905-deb9-416f-8904-23080af30802/,Natura 2000 CAVEM,,1/31/2018 0:00,14.0000000,14.0000000,43.413640000000,6.797434000000,,Plage de la Peguiere ,45349,observation-6a7ab905-deb9-416f-8904-23080af30802-2,https://biolit.fr/observations/observation-6a7ab905-deb9-416f-8904-23080af30802-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180131_141637-scaled.jpg,,FALSE, +N1,60036,sortie-6a7ab905-deb9-416f-8904-23080af30802,https://biolit.fr/sorties/sortie-6a7ab905-deb9-416f-8904-23080af30802/,Natura 2000 CAVEM,,1/31/2018 0:00,14.0000000,14.0000000,43.413640000000,6.797434000000,,Plage de la Peguiere ,45351,observation-6a7ab905-deb9-416f-8904-23080af30802-3,https://biolit.fr/observations/observation-6a7ab905-deb9-416f-8904-23080af30802-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180131_141628-scaled.jpg,,FALSE, +N1,60036,sortie-6a7ab905-deb9-416f-8904-23080af30802,https://biolit.fr/sorties/sortie-6a7ab905-deb9-416f-8904-23080af30802/,Natura 2000 CAVEM,,1/31/2018 0:00,14.0000000,14.0000000,43.413640000000,6.797434000000,,Plage de la Peguiere ,45353,observation-6a7ab905-deb9-416f-8904-23080af30802-4,https://biolit.fr/observations/observation-6a7ab905-deb9-416f-8904-23080af30802-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180131_141628_0-scaled.jpg,,FALSE, +N1,60036,sortie-6a7ab905-deb9-416f-8904-23080af30802,https://biolit.fr/sorties/sortie-6a7ab905-deb9-416f-8904-23080af30802/,Natura 2000 CAVEM,,1/31/2018 0:00,14.0000000,14.0000000,43.413640000000,6.797434000000,,Plage de la Peguiere ,45355,observation-6a7ab905-deb9-416f-8904-23080af30802-5,https://biolit.fr/observations/observation-6a7ab905-deb9-416f-8904-23080af30802-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180131_141435-scaled.jpg,,FALSE, +N1,60037,sortie-19a5e700-9a13-466e-b737-20890ef83268,https://biolit.fr/sorties/sortie-19a5e700-9a13-466e-b737-20890ef83268/,Natura 2000 - Embouchure de l'Argens,,1/31/2018 0:00,14.0000000,14.0000000,43.413469000000,6.797310000000,,Plage de la Peguière,45357,observation-19a5e700-9a13-466e-b737-20890ef83268,https://biolit.fr/observations/observation-19a5e700-9a13-466e-b737-20890ef83268/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN5658-scaled.jpg,,FALSE, +N1,60038,sortie-0610336e-a3eb-4305-bb9c-02a3cde0a3a2,https://biolit.fr/sorties/sortie-0610336e-a3eb-4305-bb9c-02a3cde0a3a2/,Phil,,01/06/2018,15.0000000,15.0:35,48.004715000000,-4.523007000000,,Plouhinec - Finistère,45359,observation-0610336e-a3eb-4305-bb9c-02a3cde0a3a2,https://biolit.fr/observations/observation-0610336e-a3eb-4305-bb9c-02a3cde0a3a2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090966.JPG,,FALSE, +N1,60038,sortie-0610336e-a3eb-4305-bb9c-02a3cde0a3a2,https://biolit.fr/sorties/sortie-0610336e-a3eb-4305-bb9c-02a3cde0a3a2/,Phil,,01/06/2018,15.0000000,15.0:35,48.004715000000,-4.523007000000,,Plouhinec - Finistère,45361,observation-0610336e-a3eb-4305-bb9c-02a3cde0a3a2-2,https://biolit.fr/observations/observation-0610336e-a3eb-4305-bb9c-02a3cde0a3a2-2/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1090974.JPG,,TRUE, +N1,60038,sortie-0610336e-a3eb-4305-bb9c-02a3cde0a3a2,https://biolit.fr/sorties/sortie-0610336e-a3eb-4305-bb9c-02a3cde0a3a2/,Phil,,01/06/2018,15.0000000,15.0:35,48.004715000000,-4.523007000000,,Plouhinec - Finistère,45363,observation-0610336e-a3eb-4305-bb9c-02a3cde0a3a2-3,https://biolit.fr/observations/observation-0610336e-a3eb-4305-bb9c-02a3cde0a3a2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090976.JPG,,FALSE, +N1,60038,sortie-0610336e-a3eb-4305-bb9c-02a3cde0a3a2,https://biolit.fr/sorties/sortie-0610336e-a3eb-4305-bb9c-02a3cde0a3a2/,Phil,,01/06/2018,15.0000000,15.0:35,48.004715000000,-4.523007000000,,Plouhinec - Finistère,45365,observation-0610336e-a3eb-4305-bb9c-02a3cde0a3a2-4,https://biolit.fr/observations/observation-0610336e-a3eb-4305-bb9c-02a3cde0a3a2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090977.JPG,,FALSE, +N1,60038,sortie-0610336e-a3eb-4305-bb9c-02a3cde0a3a2,https://biolit.fr/sorties/sortie-0610336e-a3eb-4305-bb9c-02a3cde0a3a2/,Phil,,01/06/2018,15.0000000,15.0:35,48.004715000000,-4.523007000000,,Plouhinec - Finistère,45367,observation-0610336e-a3eb-4305-bb9c-02a3cde0a3a2-5,https://biolit.fr/observations/observation-0610336e-a3eb-4305-bb9c-02a3cde0a3a2-5/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1090979.JPG,,TRUE, +N1,60039,sortie-80adc9cb-0ad9-4df9-822f-47ce2be94973,https://biolit.fr/sorties/sortie-80adc9cb-0ad9-4df9-822f-47ce2be94973/,Raphaël,,1/31/2018 0:00,10.0000000,11.0:15,43.21508200000,5.342404000000,,Anse de la Maronaise Marseille,45369,observation-80adc9cb-0ad9-4df9-822f-47ce2be94973,https://biolit.fr/observations/observation-80adc9cb-0ad9-4df9-822f-47ce2be94973/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180130_105756[1]-scaled.jpg,,FALSE, +N1,60039,sortie-80adc9cb-0ad9-4df9-822f-47ce2be94973,https://biolit.fr/sorties/sortie-80adc9cb-0ad9-4df9-822f-47ce2be94973/,Raphaël,,1/31/2018 0:00,10.0000000,11.0:15,43.21508200000,5.342404000000,,Anse de la Maronaise Marseille,45371,observation-80adc9cb-0ad9-4df9-822f-47ce2be94973-2,https://biolit.fr/observations/observation-80adc9cb-0ad9-4df9-822f-47ce2be94973-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180130_105706[1]-scaled.jpg,,FALSE, +N1,60040,sortie-665390ff-8c2a-4743-80e7-702bbe83aeca,https://biolit.fr/sorties/sortie-665390ff-8c2a-4743-80e7-702bbe83aeca/,Raphaël,,1/31/2018 0:00,10.0000000,11.0:15,43.215189000000,5.342486000000,,Anse de la Maronaise,45373,observation-665390ff-8c2a-4743-80e7-702bbe83aeca,https://biolit.fr/observations/observation-665390ff-8c2a-4743-80e7-702bbe83aeca/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180130_110106-scaled.jpg,,FALSE, +N1,60040,sortie-665390ff-8c2a-4743-80e7-702bbe83aeca,https://biolit.fr/sorties/sortie-665390ff-8c2a-4743-80e7-702bbe83aeca/,Raphaël,,1/31/2018 0:00,10.0000000,11.0:15,43.215189000000,5.342486000000,,Anse de la Maronaise,45375,observation-665390ff-8c2a-4743-80e7-702bbe83aeca-2,https://biolit.fr/observations/observation-665390ff-8c2a-4743-80e7-702bbe83aeca-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180130_110102-scaled.jpg,,FALSE, +N1,60041,sortie-546ea191-24d2-4245-b2cb-b3d75d8c98df,https://biolit.fr/sorties/sortie-546ea191-24d2-4245-b2cb-b3d75d8c98df/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.266806000000,5.371182000000,,plage du ROUCAS BLANC,45377,observation-546ea191-24d2-4245-b2cb-b3d75d8c98df,https://biolit.fr/observations/observation-546ea191-24d2-4245-b2cb-b3d75d8c98df/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pagure des roches-Clibanarius erythropus.jpg,,FALSE, +N1,60041,sortie-546ea191-24d2-4245-b2cb-b3d75d8c98df,https://biolit.fr/sorties/sortie-546ea191-24d2-4245-b2cb-b3d75d8c98df/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.266806000000,5.371182000000,,plage du ROUCAS BLANC,45379,observation-546ea191-24d2-4245-b2cb-b3d75d8c98df-2,https://biolit.fr/observations/observation-546ea191-24d2-4245-b2cb-b3d75d8c98df-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/pince crabe.jpg,,FALSE, +N1,60042,sortie-c8ac5582-8701-437b-b732-9b846be80686,https://biolit.fr/sorties/sortie-c8ac5582-8701-437b-b732-9b846be80686/,Ville de Marseille Ecole Arenc Bachas CM2,,10/18/2017 0:00,10.0000000,12.0000000,43.266652000000,5.371300000000,,plage du Roucas Blanc,45381,observation-c8ac5582-8701-437b-b732-9b846be80686,https://biolit.fr/observations/observation-c8ac5582-8701-437b-b732-9b846be80686/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cerithe- Cerithium vulgatum-scaled.jpg,,FALSE, +N1,60042,sortie-c8ac5582-8701-437b-b732-9b846be80686,https://biolit.fr/sorties/sortie-c8ac5582-8701-437b-b732-9b846be80686/,Ville de Marseille Ecole Arenc Bachas CM2,,10/18/2017 0:00,10.0000000,12.0000000,43.266652000000,5.371300000000,,plage du Roucas Blanc,45383,observation-c8ac5582-8701-437b-b732-9b846be80686-2,https://biolit.fr/observations/observation-c8ac5582-8701-437b-b732-9b846be80686-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/ver marin.jpg,,FALSE, +N1,60043,sortie-ea787f63-1e8a-4534-9183-1b9f0d0c5d8e,https://biolit.fr/sorties/sortie-ea787f63-1e8a-4534-9183-1b9f0d0c5d8e/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.266657000000,5.371315000000,,plage du Roucas Blanc,45385,observation-ea787f63-1e8a-4534-9183-1b9f0d0c5d8e,https://biolit.fr/observations/observation-ea787f63-1e8a-4534-9183-1b9f0d0c5d8e/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Oursin pierre- Paracentrotus lividus.jpg,,TRUE, +N1,60043,sortie-ea787f63-1e8a-4534-9183-1b9f0d0c5d8e,https://biolit.fr/sorties/sortie-ea787f63-1e8a-4534-9183-1b9f0d0c5d8e/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.266657000000,5.371315000000,,plage du Roucas Blanc,45387,observation-ea787f63-1e8a-4534-9183-1b9f0d0c5d8e-2,https://biolit.fr/observations/observation-ea787f63-1e8a-4534-9183-1b9f0d0c5d8e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Dos crabe marbré-pachygrapsus marmoratus-scaled.jpg,,FALSE, +N1,60043,sortie-ea787f63-1e8a-4534-9183-1b9f0d0c5d8e,https://biolit.fr/sorties/sortie-ea787f63-1e8a-4534-9183-1b9f0d0c5d8e/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.266657000000,5.371315000000,,plage du Roucas Blanc,45389,observation-ea787f63-1e8a-4534-9183-1b9f0d0c5d8e-3,https://biolit.fr/observations/observation-ea787f63-1e8a-4534-9183-1b9f0d0c5d8e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ventre crabe marbré-Pachygrapsus marmoratus.-scaled.jpg,,FALSE, +N1,60044,sortie-990c081a-6dab-42d3-887b-76ebbc84f2a7,https://biolit.fr/sorties/sortie-990c081a-6dab-42d3-887b-76ebbc84f2a7/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.267629000000,5.370326000000,,base nautique du roucas blanc ,45391,observation-990c081a-6dab-42d3-887b-76ebbc84f2a7,https://biolit.fr/observations/observation-990c081a-6dab-42d3-887b-76ebbc84f2a7/,,,,https://biolit.fr/wp-content/uploads/2023/07/POSIDONIE-Posidonia oceanica-scaled.jpg,,FALSE, +N1,60044,sortie-990c081a-6dab-42d3-887b-76ebbc84f2a7,https://biolit.fr/sorties/sortie-990c081a-6dab-42d3-887b-76ebbc84f2a7/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.267629000000,5.370326000000,,base nautique du roucas blanc ,45392,observation-990c081a-6dab-42d3-887b-76ebbc84f2a7-2,https://biolit.fr/observations/observation-990c081a-6dab-42d3-887b-76ebbc84f2a7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/POSIDONIE-Posidonia oceanica-scaled.jpg,,FALSE, +N1,60045,sortie-8c793c8d-f960-4670-bdd4-b622e56f4498,https://biolit.fr/sorties/sortie-8c793c8d-f960-4670-bdd4-b622e56f4498/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.267694000000,5.370527000000,,base nautique du roucas blanc,45393,observation-8c793c8d-f960-4670-bdd4-b622e56f4498,https://biolit.fr/observations/observation-8c793c8d-f960-4670-bdd4-b622e56f4498/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crabe verruqueux- Eriphia verrucosa-scaled.jpg,,FALSE, +N1,60046,sortie-96137f39-0b67-43d6-aff4-73fff81e4191,https://biolit.fr/sorties/sortie-96137f39-0b67-43d6-aff4-73fff81e4191/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.266778000000,5.371321000000,,plage du Roucas Blanc,45395,observation-96137f39-0b67-43d6-aff4-73fff81e4191,https://biolit.fr/observations/observation-96137f39-0b67-43d6-aff4-73fff81e4191/,,,,https://biolit.fr/wp-content/uploads/2023/07/Dos Gibbule- Gibbula .jpg,,FALSE, +N1,60046,sortie-96137f39-0b67-43d6-aff4-73fff81e4191,https://biolit.fr/sorties/sortie-96137f39-0b67-43d6-aff4-73fff81e4191/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.266778000000,5.371321000000,,plage du Roucas Blanc,45397,observation-96137f39-0b67-43d6-aff4-73fff81e4191-2,https://biolit.fr/observations/observation-96137f39-0b67-43d6-aff4-73fff81e4191-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Profile Gibbule- Gibbula sp.jpg,,FALSE, +N1,60047,sortie-188bcfc7-2ba8-412a-8e68-722cc93788ea,https://biolit.fr/sorties/sortie-188bcfc7-2ba8-412a-8e68-722cc93788ea/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.266677000000,5.371313000000,,plage du Roucas Blanc,45399,observation-188bcfc7-2ba8-412a-8e68-722cc93788ea,https://biolit.fr/observations/observation-188bcfc7-2ba8-412a-8e68-722cc93788ea/,,,,https://biolit.fr/wp-content/uploads/2023/07/Grande Patelle _0.jpg,,FALSE, +N1,60047,sortie-188bcfc7-2ba8-412a-8e68-722cc93788ea,https://biolit.fr/sorties/sortie-188bcfc7-2ba8-412a-8e68-722cc93788ea/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.266677000000,5.371313000000,,plage du Roucas Blanc,45401,observation-188bcfc7-2ba8-412a-8e68-722cc93788ea-2,https://biolit.fr/observations/observation-188bcfc7-2ba8-412a-8e68-722cc93788ea-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/traces radula de la grande patelle.jpg,,FALSE, +N1,60048,sortie-aba544bc-b202-4982-b070-ae022a5b6189,https://biolit.fr/sorties/sortie-aba544bc-b202-4982-b070-ae022a5b6189/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.266636000000,5.371310000000,,Plage du Roucas Blanc,45403,observation-aba544bc-b202-4982-b070-ae022a5b6189,https://biolit.fr/observations/observation-aba544bc-b202-4982-b070-ae022a5b6189/,,,,https://biolit.fr/wp-content/uploads/2023/07/dessous Anomie pelure d'oignon-Anomia ephippium.jpg,,FALSE, +N1,60049,sortie-8a762546-9ed8-4a97-aee7-ab5ddd95b45a,https://biolit.fr/sorties/sortie-8a762546-9ed8-4a97-aee7-ab5ddd95b45a/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.26667100000,5.371270000000,,plage du Roucas Blanc,45405,observation-8a762546-9ed8-4a97-aee7-ab5ddd95b45a,https://biolit.fr/observations/observation-8a762546-9ed8-4a97-aee7-ab5ddd95b45a/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Astérie bossue-Asterina gibbosa.jpg,,TRUE, +N1,60049,sortie-8a762546-9ed8-4a97-aee7-ab5ddd95b45a,https://biolit.fr/sorties/sortie-8a762546-9ed8-4a97-aee7-ab5ddd95b45a/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.26667100000,5.371270000000,,plage du Roucas Blanc,45407,observation-8a762546-9ed8-4a97-aee7-ab5ddd95b45a-2,https://biolit.fr/observations/observation-8a762546-9ed8-4a97-aee7-ab5ddd95b45a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/plume-scaled.jpg,,FALSE, +N1,60050,sortie-cb8340f6-b2d0-4e59-a61d-f5dd9f4a9859,https://biolit.fr/sorties/sortie-cb8340f6-b2d0-4e59-a61d-f5dd9f4a9859/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.266727000000,5.371288000000,,plage du Roucas Blanc,45409,observation-cb8340f6-b2d0-4e59-a61d-f5dd9f4a9859,https://biolit.fr/observations/observation-cb8340f6-b2d0-4e59-a61d-f5dd9f4a9859/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/anemone de mer verte- anemonia viridis_1-scaled.jpg,,TRUE, +N1,60050,sortie-cb8340f6-b2d0-4e59-a61d-f5dd9f4a9859,https://biolit.fr/sorties/sortie-cb8340f6-b2d0-4e59-a61d-f5dd9f4a9859/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.266727000000,5.371288000000,,plage du Roucas Blanc,45411,observation-cb8340f6-b2d0-4e59-a61d-f5dd9f4a9859-2,https://biolit.fr/observations/observation-cb8340f6-b2d0-4e59-a61d-f5dd9f4a9859-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie Blanche-Phallusia mammillata_0-scaled.jpg,,FALSE, +N1,60051,sortie-64f09aa0-6273-4df3-b423-c5267494fcf1,https://biolit.fr/sorties/sortie-64f09aa0-6273-4df3-b423-c5267494fcf1/,Phil,,1/14/2018 0:00,13.0000000,13.000005,47.845523000000,-4.041640000000,,Mousterlin - Finistère,45413,observation-64f09aa0-6273-4df3-b423-c5267494fcf1,https://biolit.fr/observations/observation-64f09aa0-6273-4df3-b423-c5267494fcf1/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100346.JPG,,FALSE, +N1,60051,sortie-64f09aa0-6273-4df3-b423-c5267494fcf1,https://biolit.fr/sorties/sortie-64f09aa0-6273-4df3-b423-c5267494fcf1/,Phil,,1/14/2018 0:00,13.0000000,13.000005,47.845523000000,-4.041640000000,,Mousterlin - Finistère,45415,observation-64f09aa0-6273-4df3-b423-c5267494fcf1-2,https://biolit.fr/observations/observation-64f09aa0-6273-4df3-b423-c5267494fcf1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100345.JPG,,FALSE, +N1,60051,sortie-64f09aa0-6273-4df3-b423-c5267494fcf1,https://biolit.fr/sorties/sortie-64f09aa0-6273-4df3-b423-c5267494fcf1/,Phil,,1/14/2018 0:00,13.0000000,13.000005,47.845523000000,-4.041640000000,,Mousterlin - Finistère,45417,observation-64f09aa0-6273-4df3-b423-c5267494fcf1-3,https://biolit.fr/observations/observation-64f09aa0-6273-4df3-b423-c5267494fcf1-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100344.JPG,,FALSE, +N1,60051,sortie-64f09aa0-6273-4df3-b423-c5267494fcf1,https://biolit.fr/sorties/sortie-64f09aa0-6273-4df3-b423-c5267494fcf1/,Phil,,1/14/2018 0:00,13.0000000,13.000005,47.845523000000,-4.041640000000,,Mousterlin - Finistère,45419,observation-64f09aa0-6273-4df3-b423-c5267494fcf1-4,https://biolit.fr/observations/observation-64f09aa0-6273-4df3-b423-c5267494fcf1-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100350.JPG,,FALSE, +N1,60052,sortie-be0fc670-ae00-45e0-922d-8d4218d12dd8,https://biolit.fr/sorties/sortie-be0fc670-ae00-45e0-922d-8d4218d12dd8/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.280018000000,5.352481000000,,anse de la fausse monnaie,45421,observation-be0fc670-ae00-45e0-922d-8d4218d12dd8,https://biolit.fr/observations/observation-be0fc670-ae00-45e0-922d-8d4218d12dd8/,,,,https://biolit.fr/wp-content/uploads/2023/07/eponge-scaled.jpg,,FALSE, +N1,60052,sortie-be0fc670-ae00-45e0-922d-8d4218d12dd8,https://biolit.fr/sorties/sortie-be0fc670-ae00-45e0-922d-8d4218d12dd8/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.280018000000,5.352481000000,,anse de la fausse monnaie,45423,observation-be0fc670-ae00-45e0-922d-8d4218d12dd8-2,https://biolit.fr/observations/observation-be0fc670-ae00-45e0-922d-8d4218d12dd8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue rouge-scaled.jpg,,FALSE, +N1,60053,sortie-5ed78ecc-9209-456a-b391-b286861e3445,https://biolit.fr/sorties/sortie-5ed78ecc-9209-456a-b391-b286861e3445/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,16.0000000,43.280034000000,5.352531000000,,anse de la fausse monnaie,45425,observation-5ed78ecc-9209-456a-b391-b286861e3445,https://biolit.fr/observations/observation-5ed78ecc-9209-456a-b391-b286861e3445/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crabe marbré_Pachygrapsus marmoratus dos-scaled.jpg,,FALSE, +N1,60053,sortie-5ed78ecc-9209-456a-b391-b286861e3445,https://biolit.fr/sorties/sortie-5ed78ecc-9209-456a-b391-b286861e3445/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,16.0000000,43.280034000000,5.352531000000,,anse de la fausse monnaie,45427,observation-5ed78ecc-9209-456a-b391-b286861e3445-2,https://biolit.fr/observations/observation-5ed78ecc-9209-456a-b391-b286861e3445-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crabe marbré_Pachygrapsus marmoratus ventre-scaled.jpg,,FALSE, +N1,60054,sortie-b4df2c16-9ff7-4abb-a092-a3bd3eae3a69,https://biolit.fr/sorties/sortie-b4df2c16-9ff7-4abb-a092-a3bd3eae3a69/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.279938000000,5.352027000000,,anse de la fausse monnaie,45429,observation-b4df2c16-9ff7-4abb-a092-a3bd3eae3a69,https://biolit.fr/observations/observation-b4df2c16-9ff7-4abb-a092-a3bd3eae3a69/,,,,https://biolit.fr/wp-content/uploads/2023/07/Praire commune-Venus verrucosa exterieur-scaled.jpg,,FALSE, +N1,60054,sortie-b4df2c16-9ff7-4abb-a092-a3bd3eae3a69,https://biolit.fr/sorties/sortie-b4df2c16-9ff7-4abb-a092-a3bd3eae3a69/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.279938000000,5.352027000000,,anse de la fausse monnaie,45431,observation-b4df2c16-9ff7-4abb-a092-a3bd3eae3a69-2,https://biolit.fr/observations/observation-b4df2c16-9ff7-4abb-a092-a3bd3eae3a69-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Praire commune-Venus verrucosa interieur-scaled.jpg,,FALSE, +N1,60055,sortie-dffbd102-fce7-42e6-a90f-8f51b6da5742,https://biolit.fr/sorties/sortie-dffbd102-fce7-42e6-a90f-8f51b6da5742/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.279929000000,5.35238100000,,anse de la fausse monnaie,45433,observation-dffbd102-fce7-42e6-a90f-8f51b6da5742,https://biolit.fr/observations/observation-dffbd102-fce7-42e6-a90f-8f51b6da5742/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/ascidie rouge_halocynthia papillosa-scaled.jpg,,TRUE, +N1,60055,sortie-dffbd102-fce7-42e6-a90f-8f51b6da5742,https://biolit.fr/sorties/sortie-dffbd102-fce7-42e6-a90f-8f51b6da5742/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.279929000000,5.35238100000,,anse de la fausse monnaie,45435,observation-dffbd102-fce7-42e6-a90f-8f51b6da5742-2,https://biolit.fr/observations/observation-dffbd102-fce7-42e6-a90f-8f51b6da5742-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/moule mediterranéenne- mytilus galloprovincialis.JPG,,FALSE, +N1,60056,sortie-73e8b7bb-dc45-4d33-84df-ec24bc866a24,https://biolit.fr/sorties/sortie-73e8b7bb-dc45-4d33-84df-ec24bc866a24/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.280342000000,5.35276800000,,Anse de la fausse monnaie,45437,observation-73e8b7bb-dc45-4d33-84df-ec24bc866a24,https://biolit.fr/observations/observation-73e8b7bb-dc45-4d33-84df-ec24bc866a24/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/Columbelle rustique_ columbella rustica.JPG,,TRUE, +N1,60057,sortie-1eb3a01c-19da-4573-bdd1-fe6a07ae89b0,https://biolit.fr/sorties/sortie-1eb3a01c-19da-4573-bdd1-fe6a07ae89b0/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.279914000000,5.352461000000,,Anse de la fausse monnaie,45439,observation-1eb3a01c-19da-4573-bdd1-fe6a07ae89b0,https://biolit.fr/observations/observation-1eb3a01c-19da-4573-bdd1-fe6a07ae89b0/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/posidonie_posidonia oceanica-scaled.jpg,,TRUE, +N1,60058,sortie-8dd9a505-ee9e-4423-9264-7660729fb866,https://biolit.fr/sorties/sortie-8dd9a505-ee9e-4423-9264-7660729fb866/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.279907000000,5.352375000000,,anse de la fausse monnaie,45441,observation-8dd9a505-ee9e-4423-9264-7660729fb866,https://biolit.fr/observations/observation-8dd9a505-ee9e-4423-9264-7660729fb866/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cone de mediterranee-conus ventricosus ouverture-scaled.jpg,,FALSE, +N1,60058,sortie-8dd9a505-ee9e-4423-9264-7660729fb866,https://biolit.fr/sorties/sortie-8dd9a505-ee9e-4423-9264-7660729fb866/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.279907000000,5.352375000000,,anse de la fausse monnaie,45443,observation-8dd9a505-ee9e-4423-9264-7660729fb866-2,https://biolit.fr/observations/observation-8dd9a505-ee9e-4423-9264-7660729fb866-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cone de mediterranee-conus ventricosus-scaled.jpg,,FALSE, +N1,60059,sortie-66ace506-e0e2-49a9-9e5a-93c6ee4461d5,https://biolit.fr/sorties/sortie-66ace506-e0e2-49a9-9e5a-93c6ee4461d5/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.279945000000,5.352460000000,,anse de la fausse monnaie,45445,observation-66ace506-e0e2-49a9-9e5a-93c6ee4461d5,https://biolit.fr/observations/observation-66ace506-e0e2-49a9-9e5a-93c6ee4461d5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mue de crabe innconu dos.JPG,,FALSE, +N1,60059,sortie-66ace506-e0e2-49a9-9e5a-93c6ee4461d5,https://biolit.fr/sorties/sortie-66ace506-e0e2-49a9-9e5a-93c6ee4461d5/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.279945000000,5.352460000000,,anse de la fausse monnaie,45447,observation-66ace506-e0e2-49a9-9e5a-93c6ee4461d5-2,https://biolit.fr/observations/observation-66ace506-e0e2-49a9-9e5a-93c6ee4461d5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/mue de crabe innconu ventre-scaled.jpg,,FALSE, +N1,60060,sortie-e3451357-348a-4073-bf1b-427ae6b7841d,https://biolit.fr/sorties/sortie-e3451357-348a-4073-bf1b-427ae6b7841d/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.280366000000,5.352793000000,,anse de la fausse monnaie,45449,observation-e3451357-348a-4073-bf1b-427ae6b7841d,https://biolit.fr/observations/observation-e3451357-348a-4073-bf1b-427ae6b7841d/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/anémone solaire-Cereus pedunculatus 2-scaled.jpg,,TRUE, +N1,60060,sortie-e3451357-348a-4073-bf1b-427ae6b7841d,https://biolit.fr/sorties/sortie-e3451357-348a-4073-bf1b-427ae6b7841d/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.280366000000,5.352793000000,,anse de la fausse monnaie,45451,observation-e3451357-348a-4073-bf1b-427ae6b7841d-2,https://biolit.fr/observations/observation-e3451357-348a-4073-bf1b-427ae6b7841d-2/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/anémone solaire-Cereus pedunculatus 3.JPG,,TRUE, +N1,60061,sortie-a25b895b-8217-4377-ba0d-f87b67866234,https://biolit.fr/sorties/sortie-a25b895b-8217-4377-ba0d-f87b67866234/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.280352000000,5.352756000000,,Anse de la fausse monnaie,45455,observation-a25b895b-8217-4377-ba0d-f87b67866234-2,https://biolit.fr/observations/observation-a25b895b-8217-4377-ba0d-f87b67866234-2/,Stramonita haemastoma,Bouche de sang,,https://biolit.fr/wp-content/uploads/2023/07/Bouche de sang- Stramonita haemastoma ouverture -scaled.jpg,,TRUE, +N1,60062,sortie-a8080271-c5b7-4812-b1aa-3c2d2f7430c6,https://biolit.fr/sorties/sortie-a8080271-c5b7-4812-b1aa-3c2d2f7430c6/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.280376000000,5.352815000000,,anse de la fausse monnaie ,45457,observation-a8080271-c5b7-4812-b1aa-3c2d2f7430c6,https://biolit.fr/observations/observation-a8080271-c5b7-4812-b1aa-3c2d2f7430c6/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/Astrée rugueuse_Bolma rugosa dos -scaled.jpg,,TRUE, +N1,60062,sortie-a8080271-c5b7-4812-b1aa-3c2d2f7430c6,https://biolit.fr/sorties/sortie-a8080271-c5b7-4812-b1aa-3c2d2f7430c6/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.280376000000,5.352815000000,,anse de la fausse monnaie ,45459,observation-a8080271-c5b7-4812-b1aa-3c2d2f7430c6-2,https://biolit.fr/observations/observation-a8080271-c5b7-4812-b1aa-3c2d2f7430c6-2/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/Astrée rugueuse_Bolma rugosa ouverture-scaled.jpg,,TRUE, +N1,60063,sortie-c86cc78f-c20a-4cf3-bbe8-a4d486cbb197,https://biolit.fr/sorties/sortie-c86cc78f-c20a-4cf3-bbe8-a4d486cbb197/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.279947000000,5.352444000000,,Anse de la fausse monnaie,45461,observation-c86cc78f-c20a-4cf3-bbe8-a4d486cbb197,https://biolit.fr/observations/observation-c86cc78f-c20a-4cf3-bbe8-a4d486cbb197/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/anémone solaire-Cereus pedunculatus 1-scaled.jpg,,TRUE, +N1,60063,sortie-c86cc78f-c20a-4cf3-bbe8-a4d486cbb197,https://biolit.fr/sorties/sortie-c86cc78f-c20a-4cf3-bbe8-a4d486cbb197/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.279947000000,5.352444000000,,Anse de la fausse monnaie,45463,observation-c86cc78f-c20a-4cf3-bbe8-a4d486cbb197-2,https://biolit.fr/observations/observation-c86cc78f-c20a-4cf3-bbe8-a4d486cbb197-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Littorine bleue_Melarhaphe neritoides.JPG,,FALSE, +N1,60064,sortie-2b0b6f98-c84a-46d7-9380-41f3ddba0f88,https://biolit.fr/sorties/sortie-2b0b6f98-c84a-46d7-9380-41f3ddba0f88/,Phil,,01/06/2018,15.0:15,15.0000000,48.004602000000,-4.520769000000,,Plouhinec - Finistère,45465,observation-2b0b6f98-c84a-46d7-9380-41f3ddba0f88,https://biolit.fr/observations/observation-2b0b6f98-c84a-46d7-9380-41f3ddba0f88/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1090955.JPG,,TRUE, +N1,60064,sortie-2b0b6f98-c84a-46d7-9380-41f3ddba0f88,https://biolit.fr/sorties/sortie-2b0b6f98-c84a-46d7-9380-41f3ddba0f88/,Phil,,01/06/2018,15.0:15,15.0000000,48.004602000000,-4.520769000000,,Plouhinec - Finistère,45467,observation-2b0b6f98-c84a-46d7-9380-41f3ddba0f88-2,https://biolit.fr/observations/observation-2b0b6f98-c84a-46d7-9380-41f3ddba0f88-2/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1090959.JPG,,TRUE, +N1,60064,sortie-2b0b6f98-c84a-46d7-9380-41f3ddba0f88,https://biolit.fr/sorties/sortie-2b0b6f98-c84a-46d7-9380-41f3ddba0f88/,Phil,,01/06/2018,15.0:15,15.0000000,48.004602000000,-4.520769000000,,Plouhinec - Finistère,45469,observation-2b0b6f98-c84a-46d7-9380-41f3ddba0f88-3,https://biolit.fr/observations/observation-2b0b6f98-c84a-46d7-9380-41f3ddba0f88-3/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1090960.JPG,,TRUE, +N1,60064,sortie-2b0b6f98-c84a-46d7-9380-41f3ddba0f88,https://biolit.fr/sorties/sortie-2b0b6f98-c84a-46d7-9380-41f3ddba0f88/,Phil,,01/06/2018,15.0:15,15.0000000,48.004602000000,-4.520769000000,,Plouhinec - Finistère,45471,observation-2b0b6f98-c84a-46d7-9380-41f3ddba0f88-4,https://biolit.fr/observations/observation-2b0b6f98-c84a-46d7-9380-41f3ddba0f88-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090963.JPG,,FALSE, +N1,60064,sortie-2b0b6f98-c84a-46d7-9380-41f3ddba0f88,https://biolit.fr/sorties/sortie-2b0b6f98-c84a-46d7-9380-41f3ddba0f88/,Phil,,01/06/2018,15.0:15,15.0000000,48.004602000000,-4.520769000000,,Plouhinec - Finistère,45473,observation-2b0b6f98-c84a-46d7-9380-41f3ddba0f88-5,https://biolit.fr/observations/observation-2b0b6f98-c84a-46d7-9380-41f3ddba0f88-5/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1090965.JPG,,TRUE, +N1,60065,sortie-059d13c0-fe1e-4237-bfc6-1436e625c92e,https://biolit.fr/sorties/sortie-059d13c0-fe1e-4237-bfc6-1436e625c92e/,Phil,,1/14/2018 0:00,12.0:35,12.0000000,47.843840000000,-4.040012000000,,Mousterlin - Finistère,45475,observation-059d13c0-fe1e-4237-bfc6-1436e625c92e,https://biolit.fr/observations/observation-059d13c0-fe1e-4237-bfc6-1436e625c92e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100299.JPG,,FALSE, +N1,60065,sortie-059d13c0-fe1e-4237-bfc6-1436e625c92e,https://biolit.fr/sorties/sortie-059d13c0-fe1e-4237-bfc6-1436e625c92e/,Phil,,1/14/2018 0:00,12.0:35,12.0000000,47.843840000000,-4.040012000000,,Mousterlin - Finistère,45477,observation-059d13c0-fe1e-4237-bfc6-1436e625c92e-2,https://biolit.fr/observations/observation-059d13c0-fe1e-4237-bfc6-1436e625c92e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100297.JPG,,FALSE, +N1,60065,sortie-059d13c0-fe1e-4237-bfc6-1436e625c92e,https://biolit.fr/sorties/sortie-059d13c0-fe1e-4237-bfc6-1436e625c92e/,Phil,,1/14/2018 0:00,12.0:35,12.0000000,47.843840000000,-4.040012000000,,Mousterlin - Finistère,45479,observation-059d13c0-fe1e-4237-bfc6-1436e625c92e-3,https://biolit.fr/observations/observation-059d13c0-fe1e-4237-bfc6-1436e625c92e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100292.JPG,,FALSE, +N1,60065,sortie-059d13c0-fe1e-4237-bfc6-1436e625c92e,https://biolit.fr/sorties/sortie-059d13c0-fe1e-4237-bfc6-1436e625c92e/,Phil,,1/14/2018 0:00,12.0:35,12.0000000,47.843840000000,-4.040012000000,,Mousterlin - Finistère,45481,observation-059d13c0-fe1e-4237-bfc6-1436e625c92e-4,https://biolit.fr/observations/observation-059d13c0-fe1e-4237-bfc6-1436e625c92e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100290.JPG,,FALSE, +N1,60066,sortie-b3414a9e-02b9-4030-835c-c132c96fab66,https://biolit.fr/sorties/sortie-b3414a9e-02b9-4030-835c-c132c96fab66/,mortiereric,,1/28/2018 0:00,12.0000000,14.0000000,50.215254000000,1.551881000000,,Le Hourdel ,45483,observation-b3414a9e-02b9-4030-835c-c132c96fab66,https://biolit.fr/observations/observation-b3414a9e-02b9-4030-835c-c132c96fab66/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020116.JPG,,FALSE, +N1,60066,sortie-b3414a9e-02b9-4030-835c-c132c96fab66,https://biolit.fr/sorties/sortie-b3414a9e-02b9-4030-835c-c132c96fab66/,mortiereric,,1/28/2018 0:00,12.0000000,14.0000000,50.215254000000,1.551881000000,,Le Hourdel ,45485,observation-b3414a9e-02b9-4030-835c-c132c96fab66-2,https://biolit.fr/observations/observation-b3414a9e-02b9-4030-835c-c132c96fab66-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020115.JPG,,FALSE, +N1,60066,sortie-b3414a9e-02b9-4030-835c-c132c96fab66,https://biolit.fr/sorties/sortie-b3414a9e-02b9-4030-835c-c132c96fab66/,mortiereric,,1/28/2018 0:00,12.0000000,14.0000000,50.215254000000,1.551881000000,,Le Hourdel ,45487,observation-b3414a9e-02b9-4030-835c-c132c96fab66-3,https://biolit.fr/observations/observation-b3414a9e-02b9-4030-835c-c132c96fab66-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020114.JPG,,FALSE, +N1,60066,sortie-b3414a9e-02b9-4030-835c-c132c96fab66,https://biolit.fr/sorties/sortie-b3414a9e-02b9-4030-835c-c132c96fab66/,mortiereric,,1/28/2018 0:00,12.0000000,14.0000000,50.215254000000,1.551881000000,,Le Hourdel ,45489,observation-b3414a9e-02b9-4030-835c-c132c96fab66-4,https://biolit.fr/observations/observation-b3414a9e-02b9-4030-835c-c132c96fab66-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020113_0.JPG,,FALSE, +N1,60066,sortie-b3414a9e-02b9-4030-835c-c132c96fab66,https://biolit.fr/sorties/sortie-b3414a9e-02b9-4030-835c-c132c96fab66/,mortiereric,,1/28/2018 0:00,12.0000000,14.0000000,50.215254000000,1.551881000000,,Le Hourdel ,45491,observation-b3414a9e-02b9-4030-835c-c132c96fab66-5,https://biolit.fr/observations/observation-b3414a9e-02b9-4030-835c-c132c96fab66-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020112.JPG,,FALSE, +N1,60066,sortie-b3414a9e-02b9-4030-835c-c132c96fab66,https://biolit.fr/sorties/sortie-b3414a9e-02b9-4030-835c-c132c96fab66/,mortiereric,,1/28/2018 0:00,12.0000000,14.0000000,50.215254000000,1.551881000000,,Le Hourdel ,45493,observation-b3414a9e-02b9-4030-835c-c132c96fab66-6,https://biolit.fr/observations/observation-b3414a9e-02b9-4030-835c-c132c96fab66-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020111.JPG,,FALSE, +N1,60066,sortie-b3414a9e-02b9-4030-835c-c132c96fab66,https://biolit.fr/sorties/sortie-b3414a9e-02b9-4030-835c-c132c96fab66/,mortiereric,,1/28/2018 0:00,12.0000000,14.0000000,50.215254000000,1.551881000000,,Le Hourdel ,45495,observation-b3414a9e-02b9-4030-835c-c132c96fab66-7,https://biolit.fr/observations/observation-b3414a9e-02b9-4030-835c-c132c96fab66-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020108.JPG,,FALSE, +N1,60067,sortie-15ba923f-e8fc-47ac-9df8-fb2a664b00c6,https://biolit.fr/sorties/sortie-15ba923f-e8fc-47ac-9df8-fb2a664b00c6/,Phil,,1/17/2018 0:00,16.000005,16.0000000,48.206048000000,-4.331973000000,,Argol Finistère,45497,observation-15ba923f-e8fc-47ac-9df8-fb2a664b00c6,https://biolit.fr/observations/observation-15ba923f-e8fc-47ac-9df8-fb2a664b00c6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180117_161209.jpg,,FALSE, +N1,60067,sortie-15ba923f-e8fc-47ac-9df8-fb2a664b00c6,https://biolit.fr/sorties/sortie-15ba923f-e8fc-47ac-9df8-fb2a664b00c6/,Phil,,1/17/2018 0:00,16.000005,16.0000000,48.206048000000,-4.331973000000,,Argol Finistère,45499,observation-15ba923f-e8fc-47ac-9df8-fb2a664b00c6-2,https://biolit.fr/observations/observation-15ba923f-e8fc-47ac-9df8-fb2a664b00c6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180117_161242.jpg,,FALSE, +N1,60067,sortie-15ba923f-e8fc-47ac-9df8-fb2a664b00c6,https://biolit.fr/sorties/sortie-15ba923f-e8fc-47ac-9df8-fb2a664b00c6/,Phil,,1/17/2018 0:00,16.000005,16.0000000,48.206048000000,-4.331973000000,,Argol Finistère,45501,observation-15ba923f-e8fc-47ac-9df8-fb2a664b00c6-3,https://biolit.fr/observations/observation-15ba923f-e8fc-47ac-9df8-fb2a664b00c6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180117_161335.jpg,,FALSE, +N1,60067,sortie-15ba923f-e8fc-47ac-9df8-fb2a664b00c6,https://biolit.fr/sorties/sortie-15ba923f-e8fc-47ac-9df8-fb2a664b00c6/,Phil,,1/17/2018 0:00,16.000005,16.0000000,48.206048000000,-4.331973000000,,Argol Finistère,45503,observation-15ba923f-e8fc-47ac-9df8-fb2a664b00c6-4,https://biolit.fr/observations/observation-15ba923f-e8fc-47ac-9df8-fb2a664b00c6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180117_160553.jpg,,FALSE, +N1,60067,sortie-15ba923f-e8fc-47ac-9df8-fb2a664b00c6,https://biolit.fr/sorties/sortie-15ba923f-e8fc-47ac-9df8-fb2a664b00c6/,Phil,,1/17/2018 0:00,16.000005,16.0000000,48.206048000000,-4.331973000000,,Argol Finistère,45505,observation-15ba923f-e8fc-47ac-9df8-fb2a664b00c6-5,https://biolit.fr/observations/observation-15ba923f-e8fc-47ac-9df8-fb2a664b00c6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180117_160718.jpg,,FALSE, +N1,60068,sortie-5df35de7-d4e7-4e16-8a5f-6a927d2606ed,https://biolit.fr/sorties/sortie-5df35de7-d4e7-4e16-8a5f-6a927d2606ed/,Phil,,1/14/2018 0:00,11.0:55,12.0000000,47.852184000000,-4.025795000000,,Mousterlin - Finistère,45507,observation-5df35de7-d4e7-4e16-8a5f-6a927d2606ed,https://biolit.fr/observations/observation-5df35de7-d4e7-4e16-8a5f-6a927d2606ed/,Fulica atra,Foulque macroule,,https://biolit.fr/wp-content/uploads/2023/07/P1100271.JPG,,TRUE, +N1,60068,sortie-5df35de7-d4e7-4e16-8a5f-6a927d2606ed,https://biolit.fr/sorties/sortie-5df35de7-d4e7-4e16-8a5f-6a927d2606ed/,Phil,,1/14/2018 0:00,11.0:55,12.0000000,47.852184000000,-4.025795000000,,Mousterlin - Finistère,45509,observation-5df35de7-d4e7-4e16-8a5f-6a927d2606ed-2,https://biolit.fr/observations/observation-5df35de7-d4e7-4e16-8a5f-6a927d2606ed-2/,Fulica atra,Foulque macroule,,https://biolit.fr/wp-content/uploads/2023/07/P1100238.JPG,,TRUE, +N1,60068,sortie-5df35de7-d4e7-4e16-8a5f-6a927d2606ed,https://biolit.fr/sorties/sortie-5df35de7-d4e7-4e16-8a5f-6a927d2606ed/,Phil,,1/14/2018 0:00,11.0:55,12.0000000,47.852184000000,-4.025795000000,,Mousterlin - Finistère,45511,observation-5df35de7-d4e7-4e16-8a5f-6a927d2606ed-3,https://biolit.fr/observations/observation-5df35de7-d4e7-4e16-8a5f-6a927d2606ed-3/,Fulica atra,Foulque macroule,,https://biolit.fr/wp-content/uploads/2023/07/P1100245.JPG,,TRUE, +N1,60068,sortie-5df35de7-d4e7-4e16-8a5f-6a927d2606ed,https://biolit.fr/sorties/sortie-5df35de7-d4e7-4e16-8a5f-6a927d2606ed/,Phil,,1/14/2018 0:00,11.0:55,12.0000000,47.852184000000,-4.025795000000,,Mousterlin - Finistère,45513,observation-5df35de7-d4e7-4e16-8a5f-6a927d2606ed-4,https://biolit.fr/observations/observation-5df35de7-d4e7-4e16-8a5f-6a927d2606ed-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100243.JPG,,FALSE, +N1,60069,sortie-adb15326-2b5f-4d42-a006-81a5f203ae90,https://biolit.fr/sorties/sortie-adb15326-2b5f-4d42-a006-81a5f203ae90/,Phil,,1/17/2018 0:00,15.0:55,16.0000000,48.204054000000,-4.321062000000,,Argol - Finistère,45515,observation-adb15326-2b5f-4d42-a006-81a5f203ae90,https://biolit.fr/observations/observation-adb15326-2b5f-4d42-a006-81a5f203ae90/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180117_155521.jpg,,FALSE, +N1,60070,sortie-f9add30b-6efe-410a-b807-18f694d792aa,https://biolit.fr/sorties/sortie-f9add30b-6efe-410a-b807-18f694d792aa/,Association Avril - Vigie des havres,,1/22/2018 0:00,14.0000000,15.0000000,49.026722000000,-1.597600000000,,agon coutainville ,45517,observation-f9add30b-6efe-410a-b807-18f694d792aa,https://biolit.fr/observations/observation-f9add30b-6efe-410a-b807-18f694d792aa/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180122_144836.jpg,,FALSE, +N1,60070,sortie-f9add30b-6efe-410a-b807-18f694d792aa,https://biolit.fr/sorties/sortie-f9add30b-6efe-410a-b807-18f694d792aa/,Association Avril - Vigie des havres,,1/22/2018 0:00,14.0000000,15.0000000,49.026722000000,-1.597600000000,,agon coutainville ,45519,observation-f9add30b-6efe-410a-b807-18f694d792aa-2,https://biolit.fr/observations/observation-f9add30b-6efe-410a-b807-18f694d792aa-2/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/20180122_144933.jpg,,TRUE, +N1,60071,sortie-03742251-8c33-4e33-84d8-cc60d68ad9f4,https://biolit.fr/sorties/sortie-03742251-8c33-4e33-84d8-cc60d68ad9f4/,Phil,,01/06/2018,15.0:15,15.0:25,48.004600000000,-4.523135000000,,Plouhinec - Finistère,45521,observation-03742251-8c33-4e33-84d8-cc60d68ad9f4,https://biolit.fr/observations/observation-03742251-8c33-4e33-84d8-cc60d68ad9f4/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1090942.JPG,,TRUE, +N1,60071,sortie-03742251-8c33-4e33-84d8-cc60d68ad9f4,https://biolit.fr/sorties/sortie-03742251-8c33-4e33-84d8-cc60d68ad9f4/,Phil,,01/06/2018,15.0:15,15.0:25,48.004600000000,-4.523135000000,,Plouhinec - Finistère,45523,observation-03742251-8c33-4e33-84d8-cc60d68ad9f4-2,https://biolit.fr/observations/observation-03742251-8c33-4e33-84d8-cc60d68ad9f4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090951.JPG,,FALSE, +N1,60071,sortie-03742251-8c33-4e33-84d8-cc60d68ad9f4,https://biolit.fr/sorties/sortie-03742251-8c33-4e33-84d8-cc60d68ad9f4/,Phil,,01/06/2018,15.0:15,15.0:25,48.004600000000,-4.523135000000,,Plouhinec - Finistère,45525,observation-03742251-8c33-4e33-84d8-cc60d68ad9f4-3,https://biolit.fr/observations/observation-03742251-8c33-4e33-84d8-cc60d68ad9f4-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090946.JPG,,FALSE, +N1,60071,sortie-03742251-8c33-4e33-84d8-cc60d68ad9f4,https://biolit.fr/sorties/sortie-03742251-8c33-4e33-84d8-cc60d68ad9f4/,Phil,,01/06/2018,15.0:15,15.0:25,48.004600000000,-4.523135000000,,Plouhinec - Finistère,45527,observation-03742251-8c33-4e33-84d8-cc60d68ad9f4-4,https://biolit.fr/observations/observation-03742251-8c33-4e33-84d8-cc60d68ad9f4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090937.JPG,,FALSE, +N1,60071,sortie-03742251-8c33-4e33-84d8-cc60d68ad9f4,https://biolit.fr/sorties/sortie-03742251-8c33-4e33-84d8-cc60d68ad9f4/,Phil,,01/06/2018,15.0:15,15.0:25,48.004600000000,-4.523135000000,,Plouhinec - Finistère,45529,observation-03742251-8c33-4e33-84d8-cc60d68ad9f4-5,https://biolit.fr/observations/observation-03742251-8c33-4e33-84d8-cc60d68ad9f4-5/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1090949.JPG,,TRUE, +N1,60072,sortie-f266ed7e-1ca9-49c4-99dc-6ac08cc1b014,https://biolit.fr/sorties/sortie-f266ed7e-1ca9-49c4-99dc-6ac08cc1b014/,Phil,,1/17/2018 0:00,16.0:15,16.0000000,48.206465000000,-4.332598000000,,Teglruc sur Mer - Finistère,45531,observation-f266ed7e-1ca9-49c4-99dc-6ac08cc1b014,https://biolit.fr/observations/observation-f266ed7e-1ca9-49c4-99dc-6ac08cc1b014/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/20180117_161304.jpg,,TRUE, +N1,60072,sortie-f266ed7e-1ca9-49c4-99dc-6ac08cc1b014,https://biolit.fr/sorties/sortie-f266ed7e-1ca9-49c4-99dc-6ac08cc1b014/,Phil,,1/17/2018 0:00,16.0:15,16.0000000,48.206465000000,-4.332598000000,,Teglruc sur Mer - Finistère,45533,observation-f266ed7e-1ca9-49c4-99dc-6ac08cc1b014-2,https://biolit.fr/observations/observation-f266ed7e-1ca9-49c4-99dc-6ac08cc1b014-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180117_161416.jpg,,FALSE, +N1,60072,sortie-f266ed7e-1ca9-49c4-99dc-6ac08cc1b014,https://biolit.fr/sorties/sortie-f266ed7e-1ca9-49c4-99dc-6ac08cc1b014/,Phil,,1/17/2018 0:00,16.0:15,16.0000000,48.206465000000,-4.332598000000,,Teglruc sur Mer - Finistère,45535,observation-f266ed7e-1ca9-49c4-99dc-6ac08cc1b014-3,https://biolit.fr/observations/observation-f266ed7e-1ca9-49c4-99dc-6ac08cc1b014-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180117_161639.jpg,,FALSE, +N1,60072,sortie-f266ed7e-1ca9-49c4-99dc-6ac08cc1b014,https://biolit.fr/sorties/sortie-f266ed7e-1ca9-49c4-99dc-6ac08cc1b014/,Phil,,1/17/2018 0:00,16.0:15,16.0000000,48.206465000000,-4.332598000000,,Teglruc sur Mer - Finistère,45537,observation-f266ed7e-1ca9-49c4-99dc-6ac08cc1b014-4,https://biolit.fr/observations/observation-f266ed7e-1ca9-49c4-99dc-6ac08cc1b014-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180117_161532.jpg,,FALSE, +N1,60073,sortie-369ec732-45bb-482b-85b0-2a45015d95da,https://biolit.fr/sorties/sortie-369ec732-45bb-482b-85b0-2a45015d95da/,Association Avril - Vigie des havres,,1/18/2018 0:00,15.0000000,16.0000000,49.030082000000,-1.5987850000,,plage de coutainville,45539,observation-369ec732-45bb-482b-85b0-2a45015d95da,https://biolit.fr/observations/observation-369ec732-45bb-482b-85b0-2a45015d95da/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/20180118_154502-rotated.jpg,,TRUE, +N1,60073,sortie-369ec732-45bb-482b-85b0-2a45015d95da,https://biolit.fr/sorties/sortie-369ec732-45bb-482b-85b0-2a45015d95da/,Association Avril - Vigie des havres,,1/18/2018 0:00,15.0000000,16.0000000,49.030082000000,-1.5987850000,,plage de coutainville,45541,observation-369ec732-45bb-482b-85b0-2a45015d95da-2,https://biolit.fr/observations/observation-369ec732-45bb-482b-85b0-2a45015d95da-2/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/20180118_154420-rotated.jpg,,TRUE, +N1,60074,sortie-17a11541-a591-421f-a8b4-7975a48073aa,https://biolit.fr/sorties/sortie-17a11541-a591-421f-a8b4-7975a48073aa/,Phil,,1/14/2018 0:00,12.0000000,12.0:55,47.845766000000,-4.038443000000,,Mousterlin - Finistère,45543,observation-17a11541-a591-421f-a8b4-7975a48073aa,https://biolit.fr/observations/observation-17a11541-a591-421f-a8b4-7975a48073aa/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100321.JPG,,FALSE, +N1,60074,sortie-17a11541-a591-421f-a8b4-7975a48073aa,https://biolit.fr/sorties/sortie-17a11541-a591-421f-a8b4-7975a48073aa/,Phil,,1/14/2018 0:00,12.0000000,12.0:55,47.845766000000,-4.038443000000,,Mousterlin - Finistère,45545,observation-17a11541-a591-421f-a8b4-7975a48073aa-2,https://biolit.fr/observations/observation-17a11541-a591-421f-a8b4-7975a48073aa-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100309.JPG,,FALSE, +N1,60074,sortie-17a11541-a591-421f-a8b4-7975a48073aa,https://biolit.fr/sorties/sortie-17a11541-a591-421f-a8b4-7975a48073aa/,Phil,,1/14/2018 0:00,12.0000000,12.0:55,47.845766000000,-4.038443000000,,Mousterlin - Finistère,45547,observation-17a11541-a591-421f-a8b4-7975a48073aa-3,https://biolit.fr/observations/observation-17a11541-a591-421f-a8b4-7975a48073aa-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100320.JPG,,FALSE, +N1,60074,sortie-17a11541-a591-421f-a8b4-7975a48073aa,https://biolit.fr/sorties/sortie-17a11541-a591-421f-a8b4-7975a48073aa/,Phil,,1/14/2018 0:00,12.0000000,12.0:55,47.845766000000,-4.038443000000,,Mousterlin - Finistère,45549,observation-17a11541-a591-421f-a8b4-7975a48073aa-4,https://biolit.fr/observations/observation-17a11541-a591-421f-a8b4-7975a48073aa-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100325.JPG,,FALSE, +N1,60075,sortie-28981a4e-458b-427c-863e-b6896924b948,https://biolit.fr/sorties/sortie-28981a4e-458b-427c-863e-b6896924b948/,Phil,,1/17/2018 0:00,16.0000000,16.000005,48.20638700000,-4.332566000000,,Telgruc sur Mer - Finistère,45551,observation-28981a4e-458b-427c-863e-b6896924b948,https://biolit.fr/observations/observation-28981a4e-458b-427c-863e-b6896924b948/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180117_160216.jpg,,FALSE, +N1,60075,sortie-28981a4e-458b-427c-863e-b6896924b948,https://biolit.fr/sorties/sortie-28981a4e-458b-427c-863e-b6896924b948/,Phil,,1/17/2018 0:00,16.0000000,16.000005,48.20638700000,-4.332566000000,,Telgruc sur Mer - Finistère,45553,observation-28981a4e-458b-427c-863e-b6896924b948-2,https://biolit.fr/observations/observation-28981a4e-458b-427c-863e-b6896924b948-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180117_160235.jpg,,FALSE, +N1,60075,sortie-28981a4e-458b-427c-863e-b6896924b948,https://biolit.fr/sorties/sortie-28981a4e-458b-427c-863e-b6896924b948/,Phil,,1/17/2018 0:00,16.0000000,16.000005,48.20638700000,-4.332566000000,,Telgruc sur Mer - Finistère,45555,observation-28981a4e-458b-427c-863e-b6896924b948-3,https://biolit.fr/observations/observation-28981a4e-458b-427c-863e-b6896924b948-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180117_160255.jpg,,FALSE, +N1,60075,sortie-28981a4e-458b-427c-863e-b6896924b948,https://biolit.fr/sorties/sortie-28981a4e-458b-427c-863e-b6896924b948/,Phil,,1/17/2018 0:00,16.0000000,16.000005,48.20638700000,-4.332566000000,,Telgruc sur Mer - Finistère,45557,observation-28981a4e-458b-427c-863e-b6896924b948-4,https://biolit.fr/observations/observation-28981a4e-458b-427c-863e-b6896924b948-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180117_160406.jpg,,FALSE, +N1,60076,sortie-ffe69c02-b48b-4a48-aae2-8c20531df28b,https://biolit.fr/sorties/sortie-ffe69c02-b48b-4a48-aae2-8c20531df28b/,Phil,,1/14/2018 0:00,12.0:25,12.0000000,47.843894000000,-4.042891000000,,Mousterlin - Finistère,45559,observation-ffe69c02-b48b-4a48-aae2-8c20531df28b,https://biolit.fr/observations/observation-ffe69c02-b48b-4a48-aae2-8c20531df28b/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100287.JPG,,FALSE, +N1,60076,sortie-ffe69c02-b48b-4a48-aae2-8c20531df28b,https://biolit.fr/sorties/sortie-ffe69c02-b48b-4a48-aae2-8c20531df28b/,Phil,,1/14/2018 0:00,12.0:25,12.0000000,47.843894000000,-4.042891000000,,Mousterlin - Finistère,45561,observation-ffe69c02-b48b-4a48-aae2-8c20531df28b-2,https://biolit.fr/observations/observation-ffe69c02-b48b-4a48-aae2-8c20531df28b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100285.JPG,,FALSE, +N1,60076,sortie-ffe69c02-b48b-4a48-aae2-8c20531df28b,https://biolit.fr/sorties/sortie-ffe69c02-b48b-4a48-aae2-8c20531df28b/,Phil,,1/14/2018 0:00,12.0:25,12.0000000,47.843894000000,-4.042891000000,,Mousterlin - Finistère,45563,observation-ffe69c02-b48b-4a48-aae2-8c20531df28b-3,https://biolit.fr/observations/observation-ffe69c02-b48b-4a48-aae2-8c20531df28b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100278.JPG,,FALSE, +N1,60076,sortie-ffe69c02-b48b-4a48-aae2-8c20531df28b,https://biolit.fr/sorties/sortie-ffe69c02-b48b-4a48-aae2-8c20531df28b/,Phil,,1/14/2018 0:00,12.0:25,12.0000000,47.843894000000,-4.042891000000,,Mousterlin - Finistère,45565,observation-ffe69c02-b48b-4a48-aae2-8c20531df28b-4,https://biolit.fr/observations/observation-ffe69c02-b48b-4a48-aae2-8c20531df28b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100279.JPG,,FALSE, +N1,60076,sortie-ffe69c02-b48b-4a48-aae2-8c20531df28b,https://biolit.fr/sorties/sortie-ffe69c02-b48b-4a48-aae2-8c20531df28b/,Phil,,1/14/2018 0:00,12.0:25,12.0000000,47.843894000000,-4.042891000000,,Mousterlin - Finistère,45567,observation-ffe69c02-b48b-4a48-aae2-8c20531df28b-5,https://biolit.fr/observations/observation-ffe69c02-b48b-4a48-aae2-8c20531df28b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100284.JPG,,FALSE, +N1,60077,sortie-bc4e9907-0670-46f0-aaf6-e67b2c49719b,https://biolit.fr/sorties/sortie-bc4e9907-0670-46f0-aaf6-e67b2c49719b/,Phil,,01/06/2018,15.0000000,15.0000000,48.003189000000,-4.524779000000,,Plouhinec - Finistère,45569,observation-bc4e9907-0670-46f0-aaf6-e67b2c49719b,https://biolit.fr/observations/observation-bc4e9907-0670-46f0-aaf6-e67b2c49719b/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090926.JPG,,FALSE, +N1,60077,sortie-bc4e9907-0670-46f0-aaf6-e67b2c49719b,https://biolit.fr/sorties/sortie-bc4e9907-0670-46f0-aaf6-e67b2c49719b/,Phil,,01/06/2018,15.0000000,15.0000000,48.003189000000,-4.524779000000,,Plouhinec - Finistère,45571,observation-bc4e9907-0670-46f0-aaf6-e67b2c49719b-2,https://biolit.fr/observations/observation-bc4e9907-0670-46f0-aaf6-e67b2c49719b-2/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1090923.JPG,,TRUE, +N1,60077,sortie-bc4e9907-0670-46f0-aaf6-e67b2c49719b,https://biolit.fr/sorties/sortie-bc4e9907-0670-46f0-aaf6-e67b2c49719b/,Phil,,01/06/2018,15.0000000,15.0000000,48.003189000000,-4.524779000000,,Plouhinec - Finistère,45573,observation-bc4e9907-0670-46f0-aaf6-e67b2c49719b-3,https://biolit.fr/observations/observation-bc4e9907-0670-46f0-aaf6-e67b2c49719b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090931.JPG,,FALSE, +N1,60077,sortie-bc4e9907-0670-46f0-aaf6-e67b2c49719b,https://biolit.fr/sorties/sortie-bc4e9907-0670-46f0-aaf6-e67b2c49719b/,Phil,,01/06/2018,15.0000000,15.0000000,48.003189000000,-4.524779000000,,Plouhinec - Finistère,45575,observation-bc4e9907-0670-46f0-aaf6-e67b2c49719b-4,https://biolit.fr/observations/observation-bc4e9907-0670-46f0-aaf6-e67b2c49719b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090917.JPG,,FALSE, +N1,60077,sortie-bc4e9907-0670-46f0-aaf6-e67b2c49719b,https://biolit.fr/sorties/sortie-bc4e9907-0670-46f0-aaf6-e67b2c49719b/,Phil,,01/06/2018,15.0000000,15.0000000,48.003189000000,-4.524779000000,,Plouhinec - Finistère,45577,observation-bc4e9907-0670-46f0-aaf6-e67b2c49719b-5,https://biolit.fr/observations/observation-bc4e9907-0670-46f0-aaf6-e67b2c49719b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090933.JPG,,FALSE, +N1,60078,sortie-236e9674-ba4f-4f6b-9b84-e66ea87d50e1,https://biolit.fr/sorties/sortie-236e9674-ba4f-4f6b-9b84-e66ea87d50e1/,Phil,,1/17/2018 0:00,15.0000000,15.0:55,48.203630000000,-4.321799000000,,Argol - Finistère,45579,observation-236e9674-ba4f-4f6b-9b84-e66ea87d50e1,https://biolit.fr/observations/observation-236e9674-ba4f-4f6b-9b84-e66ea87d50e1/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180117_155258.jpg,,FALSE, +N1,60078,sortie-236e9674-ba4f-4f6b-9b84-e66ea87d50e1,https://biolit.fr/sorties/sortie-236e9674-ba4f-4f6b-9b84-e66ea87d50e1/,Phil,,1/17/2018 0:00,15.0000000,15.0:55,48.203630000000,-4.321799000000,,Argol - Finistère,45581,observation-236e9674-ba4f-4f6b-9b84-e66ea87d50e1-2,https://biolit.fr/observations/observation-236e9674-ba4f-4f6b-9b84-e66ea87d50e1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180117_155438.jpg,,FALSE, +N1,60078,sortie-236e9674-ba4f-4f6b-9b84-e66ea87d50e1,https://biolit.fr/sorties/sortie-236e9674-ba4f-4f6b-9b84-e66ea87d50e1/,Phil,,1/17/2018 0:00,15.0000000,15.0:55,48.203630000000,-4.321799000000,,Argol - Finistère,45583,observation-236e9674-ba4f-4f6b-9b84-e66ea87d50e1-3,https://biolit.fr/observations/observation-236e9674-ba4f-4f6b-9b84-e66ea87d50e1-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180117_155512.jpg,,FALSE, +N1,60079,sortie-bd4d8d58-3932-4868-acdc-35a67cfc1314,https://biolit.fr/sorties/sortie-bd4d8d58-3932-4868-acdc-35a67cfc1314/,Phil,,01/06/2018,16.0000000,16.0:45,48.004248000000,-4.508643000000,,Plouhinec - Finistère,45585,observation-bd4d8d58-3932-4868-acdc-35a67cfc1314,https://biolit.fr/observations/observation-bd4d8d58-3932-4868-acdc-35a67cfc1314/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image2_0.jpg,,FALSE, +N1,60079,sortie-bd4d8d58-3932-4868-acdc-35a67cfc1314,https://biolit.fr/sorties/sortie-bd4d8d58-3932-4868-acdc-35a67cfc1314/,Phil,,01/06/2018,16.0000000,16.0:45,48.004248000000,-4.508643000000,,Plouhinec - Finistère,45587,observation-bd4d8d58-3932-4868-acdc-35a67cfc1314-2,https://biolit.fr/observations/observation-bd4d8d58-3932-4868-acdc-35a67cfc1314-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180106_163929.jpg,,FALSE, +N1,60079,sortie-bd4d8d58-3932-4868-acdc-35a67cfc1314,https://biolit.fr/sorties/sortie-bd4d8d58-3932-4868-acdc-35a67cfc1314/,Phil,,01/06/2018,16.0000000,16.0:45,48.004248000000,-4.508643000000,,Plouhinec - Finistère,45589,observation-bd4d8d58-3932-4868-acdc-35a67cfc1314-3,https://biolit.fr/observations/observation-bd4d8d58-3932-4868-acdc-35a67cfc1314-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180106_164257.jpg,,FALSE, +N1,60080,sortie-721888d7-cf46-4a6a-90ae-63afb6df5eb3,https://biolit.fr/sorties/sortie-721888d7-cf46-4a6a-90ae-63afb6df5eb3/,Phil,,01/06/2018,14.0:45,15.0000000,48.004926000000,-4.522792000000,,Plouhinec - Finistère,45591,observation-721888d7-cf46-4a6a-90ae-63afb6df5eb3,https://biolit.fr/observations/observation-721888d7-cf46-4a6a-90ae-63afb6df5eb3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090912.JPG,,FALSE, +N1,60080,sortie-721888d7-cf46-4a6a-90ae-63afb6df5eb3,https://biolit.fr/sorties/sortie-721888d7-cf46-4a6a-90ae-63afb6df5eb3/,Phil,,01/06/2018,14.0:45,15.0000000,48.004926000000,-4.522792000000,,Plouhinec - Finistère,45593,observation-721888d7-cf46-4a6a-90ae-63afb6df5eb3-2,https://biolit.fr/observations/observation-721888d7-cf46-4a6a-90ae-63afb6df5eb3-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1090909.JPG,,TRUE, +N1,60080,sortie-721888d7-cf46-4a6a-90ae-63afb6df5eb3,https://biolit.fr/sorties/sortie-721888d7-cf46-4a6a-90ae-63afb6df5eb3/,Phil,,01/06/2018,14.0:45,15.0000000,48.004926000000,-4.522792000000,,Plouhinec - Finistère,45595,observation-721888d7-cf46-4a6a-90ae-63afb6df5eb3-3,https://biolit.fr/observations/observation-721888d7-cf46-4a6a-90ae-63afb6df5eb3-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1090907.JPG,,TRUE, +N1,60080,sortie-721888d7-cf46-4a6a-90ae-63afb6df5eb3,https://biolit.fr/sorties/sortie-721888d7-cf46-4a6a-90ae-63afb6df5eb3/,Phil,,01/06/2018,14.0:45,15.0000000,48.004926000000,-4.522792000000,,Plouhinec - Finistère,45597,observation-721888d7-cf46-4a6a-90ae-63afb6df5eb3-4,https://biolit.fr/observations/observation-721888d7-cf46-4a6a-90ae-63afb6df5eb3-4/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1090903.JPG,,TRUE, +N1,60080,sortie-721888d7-cf46-4a6a-90ae-63afb6df5eb3,https://biolit.fr/sorties/sortie-721888d7-cf46-4a6a-90ae-63afb6df5eb3/,Phil,,01/06/2018,14.0:45,15.0000000,48.004926000000,-4.522792000000,,Plouhinec - Finistère,45599,observation-721888d7-cf46-4a6a-90ae-63afb6df5eb3-5,https://biolit.fr/observations/observation-721888d7-cf46-4a6a-90ae-63afb6df5eb3-5/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1090901.JPG,,TRUE, +N1,60081,sortie-94b08e3d-4734-44ef-a4a9-a511c6e9c8d0,https://biolit.fr/sorties/sortie-94b08e3d-4734-44ef-a4a9-a511c6e9c8d0/,Phil,,12/16/2017 0:00,13.0:15,13.0000000,47.896215000000,-3.967804000000,,La Forêt-Fouesnant - Finistère,45601,observation-94b08e3d-4734-44ef-a4a9-a511c6e9c8d0,https://biolit.fr/observations/observation-94b08e3d-4734-44ef-a4a9-a511c6e9c8d0/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171216_131756.jpg,,FALSE, +N1,60081,sortie-94b08e3d-4734-44ef-a4a9-a511c6e9c8d0,https://biolit.fr/sorties/sortie-94b08e3d-4734-44ef-a4a9-a511c6e9c8d0/,Phil,,12/16/2017 0:00,13.0:15,13.0000000,47.896215000000,-3.967804000000,,La Forêt-Fouesnant - Finistère,45603,observation-94b08e3d-4734-44ef-a4a9-a511c6e9c8d0-2,https://biolit.fr/observations/observation-94b08e3d-4734-44ef-a4a9-a511c6e9c8d0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171216_131738.jpg,,FALSE, +N1,60081,sortie-94b08e3d-4734-44ef-a4a9-a511c6e9c8d0,https://biolit.fr/sorties/sortie-94b08e3d-4734-44ef-a4a9-a511c6e9c8d0/,Phil,,12/16/2017 0:00,13.0:15,13.0000000,47.896215000000,-3.967804000000,,La Forêt-Fouesnant - Finistère,45605,observation-94b08e3d-4734-44ef-a4a9-a511c6e9c8d0-3,https://biolit.fr/observations/observation-94b08e3d-4734-44ef-a4a9-a511c6e9c8d0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171216_131848.jpg,,FALSE, +N1,60082,sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9,https://biolit.fr/sorties/sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9/,Phil,,01/08/2018,11.0000000,16.0000000,47.797531000000,-4.213690000000,,Lesconil - Finistère,45607,observation-7cb6d507-4234-46ca-ba01-a6c724b921f9,https://biolit.fr/observations/observation-7cb6d507-4234-46ca-ba01-a6c724b921f9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image2.png,,FALSE, +N1,60082,sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9,https://biolit.fr/sorties/sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9/,Phil,,01/08/2018,11.0000000,16.0000000,47.797531000000,-4.213690000000,,Lesconil - Finistère,45608,observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-2,https://biolit.fr/observations/observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100169.JPG,,FALSE, +N1,60082,sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9,https://biolit.fr/sorties/sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9/,Phil,,01/08/2018,11.0000000,16.0000000,47.797531000000,-4.213690000000,,Lesconil - Finistère,45610,observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-3,https://biolit.fr/observations/observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100099.JPG,,FALSE, +N1,60082,sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9,https://biolit.fr/sorties/sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9/,Phil,,01/08/2018,11.0000000,16.0000000,47.797531000000,-4.213690000000,,Lesconil - Finistère,45612,observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-4,https://biolit.fr/observations/observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100077.JPG,,FALSE, +N1,60082,sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9,https://biolit.fr/sorties/sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9/,Phil,,01/08/2018,11.0000000,16.0000000,47.797531000000,-4.213690000000,,Lesconil - Finistère,45614,observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-5,https://biolit.fr/observations/observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100167_0.JPG,,FALSE, +N1,60082,sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9,https://biolit.fr/sorties/sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9/,Phil,,01/08/2018,11.0000000,16.0000000,47.797531000000,-4.213690000000,,Lesconil - Finistère,45616,observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-6,https://biolit.fr/observations/observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100093.JPG,,FALSE, +N1,60082,sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9,https://biolit.fr/sorties/sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9/,Phil,,01/08/2018,11.0000000,16.0000000,47.797531000000,-4.213690000000,,Lesconil - Finistère,45618,observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-7,https://biolit.fr/observations/observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100114.JPG,,FALSE, +N1,60082,sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9,https://biolit.fr/sorties/sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9/,Phil,,01/08/2018,11.0000000,16.0000000,47.797531000000,-4.213690000000,,Lesconil - Finistère,45620,observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-8,https://biolit.fr/observations/observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100161.JPG,,FALSE, +N1,60082,sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9,https://biolit.fr/sorties/sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9/,Phil,,01/08/2018,11.0000000,16.0000000,47.797531000000,-4.213690000000,,Lesconil - Finistère,45622,observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-9,https://biolit.fr/observations/observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180108_111815.jpg,,FALSE, +N1,60082,sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9,https://biolit.fr/sorties/sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9/,Phil,,01/08/2018,11.0000000,16.0000000,47.797531000000,-4.213690000000,,Lesconil - Finistère,45624,observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-10,https://biolit.fr/observations/observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100062_0.JPG,,FALSE, +N1,60082,sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9,https://biolit.fr/sorties/sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9/,Phil,,01/08/2018,11.0000000,16.0000000,47.797531000000,-4.213690000000,,Lesconil - Finistère,45626,observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-11,https://biolit.fr/observations/observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100027.jpg,,FALSE, +N1,60083,sortie-a41ade66-c8c0-4f35-8e83-09c47c3db528,https://biolit.fr/sorties/sortie-a41ade66-c8c0-4f35-8e83-09c47c3db528/,Phil,,01/01/2018,0.0000000,0.0000000,47.77301500000,-4.33996200000,,Penmarc'h - Finistère,45628,observation-a41ade66-c8c0-4f35-8e83-09c47c3db528,https://biolit.fr/observations/observation-a41ade66-c8c0-4f35-8e83-09c47c3db528/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080585BA-.JPG,,FALSE, +N1,60084,sortie-8a11aa95-0085-4467-9784-a5852de38de1,https://biolit.fr/sorties/sortie-8a11aa95-0085-4467-9784-a5852de38de1/,Phil,,9/22/2017 0:00,11.0000000,11.0:35,47.777391000000,-4.342732000000,,Penmarc'h - Finistère,45630,observation-8a11aa95-0085-4467-9784-a5852de38de1,https://biolit.fr/observations/observation-8a11aa95-0085-4467-9784-a5852de38de1/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080705.JPG,,TRUE, +N1,60084,sortie-8a11aa95-0085-4467-9784-a5852de38de1,https://biolit.fr/sorties/sortie-8a11aa95-0085-4467-9784-a5852de38de1/,Phil,,9/22/2017 0:00,11.0000000,11.0:35,47.777391000000,-4.342732000000,,Penmarc'h - Finistère,45632,observation-8a11aa95-0085-4467-9784-a5852de38de1-2,https://biolit.fr/observations/observation-8a11aa95-0085-4467-9784-a5852de38de1-2/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080716.JPG,,TRUE, +N1,60084,sortie-8a11aa95-0085-4467-9784-a5852de38de1,https://biolit.fr/sorties/sortie-8a11aa95-0085-4467-9784-a5852de38de1/,Phil,,9/22/2017 0:00,11.0000000,11.0:35,47.777391000000,-4.342732000000,,Penmarc'h - Finistère,45634,observation-8a11aa95-0085-4467-9784-a5852de38de1-3,https://biolit.fr/observations/observation-8a11aa95-0085-4467-9784-a5852de38de1-3/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080718(1).JPG,,TRUE, +N1,60084,sortie-8a11aa95-0085-4467-9784-a5852de38de1,https://biolit.fr/sorties/sortie-8a11aa95-0085-4467-9784-a5852de38de1/,Phil,,9/22/2017 0:00,11.0000000,11.0:35,47.777391000000,-4.342732000000,,Penmarc'h - Finistère,45636,observation-8a11aa95-0085-4467-9784-a5852de38de1-4,https://biolit.fr/observations/observation-8a11aa95-0085-4467-9784-a5852de38de1-4/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080720(1).JPG,,TRUE, +N1,60084,sortie-8a11aa95-0085-4467-9784-a5852de38de1,https://biolit.fr/sorties/sortie-8a11aa95-0085-4467-9784-a5852de38de1/,Phil,,9/22/2017 0:00,11.0000000,11.0:35,47.777391000000,-4.342732000000,,Penmarc'h - Finistère,45638,observation-8a11aa95-0085-4467-9784-a5852de38de1-5,https://biolit.fr/observations/observation-8a11aa95-0085-4467-9784-a5852de38de1-5/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080722(1).JPG,,TRUE, +N1,60085,sortie-610c75d8-c4b9-4223-bf21-16f230b9d0bf,https://biolit.fr/sorties/sortie-610c75d8-c4b9-4223-bf21-16f230b9d0bf/,ChristineSG,,12/30/2017 0:00,15.0000000,17.0000000,44.921450000000,-1.214822000000,,"Le Porge, carrefour de la Cantine Nord",45640,observation-610c75d8-c4b9-4223-bf21-16f230b9d0bf,https://biolit.fr/observations/observation-610c75d8-c4b9-4223-bf21-16f230b9d0bf/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_4881-scaled.jpg,,TRUE, +N1,60085,sortie-610c75d8-c4b9-4223-bf21-16f230b9d0bf,https://biolit.fr/sorties/sortie-610c75d8-c4b9-4223-bf21-16f230b9d0bf/,ChristineSG,,12/30/2017 0:00,15.0000000,17.0000000,44.921450000000,-1.214822000000,,"Le Porge, carrefour de la Cantine Nord",45642,observation-610c75d8-c4b9-4223-bf21-16f230b9d0bf-2,https://biolit.fr/observations/observation-610c75d8-c4b9-4223-bf21-16f230b9d0bf-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_4882-scaled.jpg,,TRUE, +N1,60086,sortie-577fe19c-971c-4026-b032-924454245df4,https://biolit.fr/sorties/sortie-577fe19c-971c-4026-b032-924454245df4/,Phil,,12/25/2017 0:00,0.0000000,0.000005,47.688419000000,-4.316331000000,,Bretagne - France,45644,observation-577fe19c-971c-4026-b032-924454245df4,https://biolit.fr/observations/observation-577fe19c-971c-4026-b032-924454245df4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080605.JPG,,FALSE, +N1,60087,sortie-a2575848-d5eb-475d-af9b-cb8ea562275f,https://biolit.fr/sorties/sortie-a2575848-d5eb-475d-af9b-cb8ea562275f/,Phil,,9/22/2017 0:00,11.0000000,11.0:25,47.777312000000,-4.339341000000,,Penmarc'h - Finistère,45646,observation-a2575848-d5eb-475d-af9b-cb8ea562275f,https://biolit.fr/observations/observation-a2575848-d5eb-475d-af9b-cb8ea562275f/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080643.JPG,,TRUE, +N1,60087,sortie-a2575848-d5eb-475d-af9b-cb8ea562275f,https://biolit.fr/sorties/sortie-a2575848-d5eb-475d-af9b-cb8ea562275f/,Phil,,9/22/2017 0:00,11.0000000,11.0:25,47.777312000000,-4.339341000000,,Penmarc'h - Finistère,45648,observation-a2575848-d5eb-475d-af9b-cb8ea562275f-2,https://biolit.fr/observations/observation-a2575848-d5eb-475d-af9b-cb8ea562275f-2/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080644.JPG,,TRUE, +N1,60087,sortie-a2575848-d5eb-475d-af9b-cb8ea562275f,https://biolit.fr/sorties/sortie-a2575848-d5eb-475d-af9b-cb8ea562275f/,Phil,,9/22/2017 0:00,11.0000000,11.0:25,47.777312000000,-4.339341000000,,Penmarc'h - Finistère,45650,observation-a2575848-d5eb-475d-af9b-cb8ea562275f-3,https://biolit.fr/observations/observation-a2575848-d5eb-475d-af9b-cb8ea562275f-3/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080645.JPG,,TRUE, +N1,60087,sortie-a2575848-d5eb-475d-af9b-cb8ea562275f,https://biolit.fr/sorties/sortie-a2575848-d5eb-475d-af9b-cb8ea562275f/,Phil,,9/22/2017 0:00,11.0000000,11.0:25,47.777312000000,-4.339341000000,,Penmarc'h - Finistère,45652,observation-a2575848-d5eb-475d-af9b-cb8ea562275f-4,https://biolit.fr/observations/observation-a2575848-d5eb-475d-af9b-cb8ea562275f-4/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080646.JPG,,TRUE, +N1,60087,sortie-a2575848-d5eb-475d-af9b-cb8ea562275f,https://biolit.fr/sorties/sortie-a2575848-d5eb-475d-af9b-cb8ea562275f/,Phil,,9/22/2017 0:00,11.0000000,11.0:25,47.777312000000,-4.339341000000,,Penmarc'h - Finistère,45654,observation-a2575848-d5eb-475d-af9b-cb8ea562275f-5,https://biolit.fr/observations/observation-a2575848-d5eb-475d-af9b-cb8ea562275f-5/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080649.JPG,,TRUE, +N1,60088,sortie-f7462542-97e0-4b25-9ef7-632b1f383abe,https://biolit.fr/sorties/sortie-f7462542-97e0-4b25-9ef7-632b1f383abe/,Phil,,12/03/2017,13.0000000,13.0:45,47.854341000000,-3.975059000000,,Fouesnant - Finistère,45656,observation-f7462542-97e0-4b25-9ef7-632b1f383abe,https://biolit.fr/observations/observation-f7462542-97e0-4b25-9ef7-632b1f383abe/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090632.JPG,,FALSE, +N1,60088,sortie-f7462542-97e0-4b25-9ef7-632b1f383abe,https://biolit.fr/sorties/sortie-f7462542-97e0-4b25-9ef7-632b1f383abe/,Phil,,12/03/2017,13.0000000,13.0:45,47.854341000000,-3.975059000000,,Fouesnant - Finistère,45658,observation-f7462542-97e0-4b25-9ef7-632b1f383abe-2,https://biolit.fr/observations/observation-f7462542-97e0-4b25-9ef7-632b1f383abe-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090631.JPG,,FALSE, +N1,60088,sortie-f7462542-97e0-4b25-9ef7-632b1f383abe,https://biolit.fr/sorties/sortie-f7462542-97e0-4b25-9ef7-632b1f383abe/,Phil,,12/03/2017,13.0000000,13.0:45,47.854341000000,-3.975059000000,,Fouesnant - Finistère,45660,observation-f7462542-97e0-4b25-9ef7-632b1f383abe-3,https://biolit.fr/observations/observation-f7462542-97e0-4b25-9ef7-632b1f383abe-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090633.JPG,,FALSE, +N1,60088,sortie-f7462542-97e0-4b25-9ef7-632b1f383abe,https://biolit.fr/sorties/sortie-f7462542-97e0-4b25-9ef7-632b1f383abe/,Phil,,12/03/2017,13.0000000,13.0:45,47.854341000000,-3.975059000000,,Fouesnant - Finistère,45662,observation-f7462542-97e0-4b25-9ef7-632b1f383abe-4,https://biolit.fr/observations/observation-f7462542-97e0-4b25-9ef7-632b1f383abe-4/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1090636.JPG,,TRUE, +N1,60089,sortie-cca88567-8069-47f3-af23-f479ccec67e5,https://biolit.fr/sorties/sortie-cca88567-8069-47f3-af23-f479ccec67e5/,Phil,,12/11/2017,13.0000000,13.000005,47.792563000000,-4.294111000000,,Le Guilvinec - Finistère,45664,observation-cca88567-8069-47f3-af23-f479ccec67e5,https://biolit.fr/observations/observation-cca88567-8069-47f3-af23-f479ccec67e5/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1090767.JPG,,TRUE, +N1,60089,sortie-cca88567-8069-47f3-af23-f479ccec67e5,https://biolit.fr/sorties/sortie-cca88567-8069-47f3-af23-f479ccec67e5/,Phil,,12/11/2017,13.0000000,13.000005,47.792563000000,-4.294111000000,,Le Guilvinec - Finistère,45666,observation-cca88567-8069-47f3-af23-f479ccec67e5-2,https://biolit.fr/observations/observation-cca88567-8069-47f3-af23-f479ccec67e5-2/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1090766.JPG,,TRUE, +N1,60089,sortie-cca88567-8069-47f3-af23-f479ccec67e5,https://biolit.fr/sorties/sortie-cca88567-8069-47f3-af23-f479ccec67e5/,Phil,,12/11/2017,13.0000000,13.000005,47.792563000000,-4.294111000000,,Le Guilvinec - Finistère,45668,observation-cca88567-8069-47f3-af23-f479ccec67e5-3,https://biolit.fr/observations/observation-cca88567-8069-47f3-af23-f479ccec67e5-3/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1090769.JPG,,TRUE, +N1,60089,sortie-cca88567-8069-47f3-af23-f479ccec67e5,https://biolit.fr/sorties/sortie-cca88567-8069-47f3-af23-f479ccec67e5/,Phil,,12/11/2017,13.0000000,13.000005,47.792563000000,-4.294111000000,,Le Guilvinec - Finistère,45670,observation-cca88567-8069-47f3-af23-f479ccec67e5-4,https://biolit.fr/observations/observation-cca88567-8069-47f3-af23-f479ccec67e5-4/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/P1090777.JPG,,TRUE, +N1,60089,sortie-cca88567-8069-47f3-af23-f479ccec67e5,https://biolit.fr/sorties/sortie-cca88567-8069-47f3-af23-f479ccec67e5/,Phil,,12/11/2017,13.0000000,13.000005,47.792563000000,-4.294111000000,,Le Guilvinec - Finistère,45672,observation-cca88567-8069-47f3-af23-f479ccec67e5-5,https://biolit.fr/observations/observation-cca88567-8069-47f3-af23-f479ccec67e5-5/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/P1090779.JPG,,TRUE, +N1,60090,sortie-7c966b69-2387-45fc-ae0e-4d02282a3478,https://biolit.fr/sorties/sortie-7c966b69-2387-45fc-ae0e-4d02282a3478/,Phil,,11/06/2017,12.0000000,12.0000000,48.004674000000,-4.520897000000,,Plouhinec - Finistère,45674,observation-7c966b69-2387-45fc-ae0e-4d02282a3478,https://biolit.fr/observations/observation-7c966b69-2387-45fc-ae0e-4d02282a3478/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_124240.jpg,,FALSE, +N1,60090,sortie-7c966b69-2387-45fc-ae0e-4d02282a3478,https://biolit.fr/sorties/sortie-7c966b69-2387-45fc-ae0e-4d02282a3478/,Phil,,11/06/2017,12.0000000,12.0000000,48.004674000000,-4.520897000000,,Plouhinec - Finistère,45676,observation-7c966b69-2387-45fc-ae0e-4d02282a3478-2,https://biolit.fr/observations/observation-7c966b69-2387-45fc-ae0e-4d02282a3478-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_124149.jpg,,FALSE, +N1,60090,sortie-7c966b69-2387-45fc-ae0e-4d02282a3478,https://biolit.fr/sorties/sortie-7c966b69-2387-45fc-ae0e-4d02282a3478/,Phil,,11/06/2017,12.0000000,12.0000000,48.004674000000,-4.520897000000,,Plouhinec - Finistère,45678,observation-7c966b69-2387-45fc-ae0e-4d02282a3478-3,https://biolit.fr/observations/observation-7c966b69-2387-45fc-ae0e-4d02282a3478-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_124155.jpg,,FALSE, +N1,60090,sortie-7c966b69-2387-45fc-ae0e-4d02282a3478,https://biolit.fr/sorties/sortie-7c966b69-2387-45fc-ae0e-4d02282a3478/,Phil,,11/06/2017,12.0000000,12.0000000,48.004674000000,-4.520897000000,,Plouhinec - Finistère,45680,observation-7c966b69-2387-45fc-ae0e-4d02282a3478-4,https://biolit.fr/observations/observation-7c966b69-2387-45fc-ae0e-4d02282a3478-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_124218.jpg,,FALSE, +N1,60090,sortie-7c966b69-2387-45fc-ae0e-4d02282a3478,https://biolit.fr/sorties/sortie-7c966b69-2387-45fc-ae0e-4d02282a3478/,Phil,,11/06/2017,12.0000000,12.0000000,48.004674000000,-4.520897000000,,Plouhinec - Finistère,45682,observation-7c966b69-2387-45fc-ae0e-4d02282a3478-5,https://biolit.fr/observations/observation-7c966b69-2387-45fc-ae0e-4d02282a3478-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_124226.jpg,,FALSE, +N1,60091,sortie-e2d4a0d9-e667-4d05-99c5-a5693bb92457,https://biolit.fr/sorties/sortie-e2d4a0d9-e667-4d05-99c5-a5693bb92457/,Phil,,12/16/2017 0:00,13.0:15,13.0000000,47.896187000000,-3.96854500000,,La Forêt-Fouesnant - Finistère,45684,observation-e2d4a0d9-e667-4d05-99c5-a5693bb92457,https://biolit.fr/observations/observation-e2d4a0d9-e667-4d05-99c5-a5693bb92457/,Solecurtus strigilatus,Solécurte rose,,https://biolit.fr/wp-content/uploads/2023/07/20171216_131704.jpg,,TRUE, +N1,60091,sortie-e2d4a0d9-e667-4d05-99c5-a5693bb92457,https://biolit.fr/sorties/sortie-e2d4a0d9-e667-4d05-99c5-a5693bb92457/,Phil,,12/16/2017 0:00,13.0:15,13.0000000,47.896187000000,-3.96854500000,,La Forêt-Fouesnant - Finistère,45686,observation-e2d4a0d9-e667-4d05-99c5-a5693bb92457-2,https://biolit.fr/observations/observation-e2d4a0d9-e667-4d05-99c5-a5693bb92457-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171216_131517.jpg,,FALSE, +N1,60091,sortie-e2d4a0d9-e667-4d05-99c5-a5693bb92457,https://biolit.fr/sorties/sortie-e2d4a0d9-e667-4d05-99c5-a5693bb92457/,Phil,,12/16/2017 0:00,13.0:15,13.0000000,47.896187000000,-3.96854500000,,La Forêt-Fouesnant - Finistère,45688,observation-e2d4a0d9-e667-4d05-99c5-a5693bb92457-3,https://biolit.fr/observations/observation-e2d4a0d9-e667-4d05-99c5-a5693bb92457-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171216_131621.jpg,,FALSE, +N1,60091,sortie-e2d4a0d9-e667-4d05-99c5-a5693bb92457,https://biolit.fr/sorties/sortie-e2d4a0d9-e667-4d05-99c5-a5693bb92457/,Phil,,12/16/2017 0:00,13.0:15,13.0000000,47.896187000000,-3.96854500000,,La Forêt-Fouesnant - Finistère,45690,observation-e2d4a0d9-e667-4d05-99c5-a5693bb92457-4,https://biolit.fr/observations/observation-e2d4a0d9-e667-4d05-99c5-a5693bb92457-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171216_131454.jpg,,FALSE, +N1,60092,sortie-e0e7d602-4d77-4337-86c7-998386f3fdb3,https://biolit.fr/sorties/sortie-e0e7d602-4d77-4337-86c7-998386f3fdb3/,Phil,,12/11/2017,12.0000000,13.0000000,47.79248400000,-4.293843000000,,Guilvinec - Finistère,45692,observation-e0e7d602-4d77-4337-86c7-998386f3fdb3,https://biolit.fr/observations/observation-e0e7d602-4d77-4337-86c7-998386f3fdb3/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1090738.JPG,,TRUE, +N1,60092,sortie-e0e7d602-4d77-4337-86c7-998386f3fdb3,https://biolit.fr/sorties/sortie-e0e7d602-4d77-4337-86c7-998386f3fdb3/,Phil,,12/11/2017,12.0000000,13.0000000,47.79248400000,-4.293843000000,,Guilvinec - Finistère,45694,observation-e0e7d602-4d77-4337-86c7-998386f3fdb3-2,https://biolit.fr/observations/observation-e0e7d602-4d77-4337-86c7-998386f3fdb3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090736_0.JPG,,FALSE, +N1,60092,sortie-e0e7d602-4d77-4337-86c7-998386f3fdb3,https://biolit.fr/sorties/sortie-e0e7d602-4d77-4337-86c7-998386f3fdb3/,Phil,,12/11/2017,12.0000000,13.0000000,47.79248400000,-4.293843000000,,Guilvinec - Finistère,45696,observation-e0e7d602-4d77-4337-86c7-998386f3fdb3-3,https://biolit.fr/observations/observation-e0e7d602-4d77-4337-86c7-998386f3fdb3-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090730.JPG,,FALSE, +N1,60092,sortie-e0e7d602-4d77-4337-86c7-998386f3fdb3,https://biolit.fr/sorties/sortie-e0e7d602-4d77-4337-86c7-998386f3fdb3/,Phil,,12/11/2017,12.0000000,13.0000000,47.79248400000,-4.293843000000,,Guilvinec - Finistère,45698,observation-e0e7d602-4d77-4337-86c7-998386f3fdb3-4,https://biolit.fr/observations/observation-e0e7d602-4d77-4337-86c7-998386f3fdb3-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090728.JPG,,FALSE, +N1,60093,sortie-fb0797f9-47f5-46f6-969b-e127b5a88465,https://biolit.fr/sorties/sortie-fb0797f9-47f5-46f6-969b-e127b5a88465/,Phil,,12/18/2017 0:00,9.0000000,9.0:45,47.83519700000,-4.176512000000,,Loctudy - Finistère,45700,observation-fb0797f9-47f5-46f6-969b-e127b5a88465,https://biolit.fr/observations/observation-fb0797f9-47f5-46f6-969b-e127b5a88465/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/P1090840.JPG,,TRUE, +N1,60093,sortie-fb0797f9-47f5-46f6-969b-e127b5a88465,https://biolit.fr/sorties/sortie-fb0797f9-47f5-46f6-969b-e127b5a88465/,Phil,,12/18/2017 0:00,9.0000000,9.0:45,47.83519700000,-4.176512000000,,Loctudy - Finistère,45702,observation-fb0797f9-47f5-46f6-969b-e127b5a88465-2,https://biolit.fr/observations/observation-fb0797f9-47f5-46f6-969b-e127b5a88465-2/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/P1090837.JPG,,TRUE, +N1,60093,sortie-fb0797f9-47f5-46f6-969b-e127b5a88465,https://biolit.fr/sorties/sortie-fb0797f9-47f5-46f6-969b-e127b5a88465/,Phil,,12/18/2017 0:00,9.0000000,9.0:45,47.83519700000,-4.176512000000,,Loctudy - Finistère,45704,observation-fb0797f9-47f5-46f6-969b-e127b5a88465-3,https://biolit.fr/observations/observation-fb0797f9-47f5-46f6-969b-e127b5a88465-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090836.JPG,,FALSE, +N1,60093,sortie-fb0797f9-47f5-46f6-969b-e127b5a88465,https://biolit.fr/sorties/sortie-fb0797f9-47f5-46f6-969b-e127b5a88465/,Phil,,12/18/2017 0:00,9.0000000,9.0:45,47.83519700000,-4.176512000000,,Loctudy - Finistère,45706,observation-fb0797f9-47f5-46f6-969b-e127b5a88465-4,https://biolit.fr/observations/observation-fb0797f9-47f5-46f6-969b-e127b5a88465-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090852.JPG,,FALSE, +N1,60094,sortie-23db08a7-7903-4651-8e00-f066e7bd5ff2,https://biolit.fr/sorties/sortie-23db08a7-7903-4651-8e00-f066e7bd5ff2/,AIEJE,,12/12/2017,15.0000000,17.0000000,43.334822000000,5.175016000000,,plage du rouet ,45708,observation-23db08a7-7903-4651-8e00-f066e7bd5ff2,https://biolit.fr/observations/observation-23db08a7-7903-4651-8e00-f066e7bd5ff2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5689-scaled.jpg,,FALSE, +N1,60094,sortie-23db08a7-7903-4651-8e00-f066e7bd5ff2,https://biolit.fr/sorties/sortie-23db08a7-7903-4651-8e00-f066e7bd5ff2/,AIEJE,,12/12/2017,15.0000000,17.0000000,43.334822000000,5.175016000000,,plage du rouet ,45710,observation-23db08a7-7903-4651-8e00-f066e7bd5ff2-2,https://biolit.fr/observations/observation-23db08a7-7903-4651-8e00-f066e7bd5ff2-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5691_0-scaled.jpg,,TRUE, +N1,60094,sortie-23db08a7-7903-4651-8e00-f066e7bd5ff2,https://biolit.fr/sorties/sortie-23db08a7-7903-4651-8e00-f066e7bd5ff2/,AIEJE,,12/12/2017,15.0000000,17.0000000,43.334822000000,5.175016000000,,plage du rouet ,45712,observation-23db08a7-7903-4651-8e00-f066e7bd5ff2-3,https://biolit.fr/observations/observation-23db08a7-7903-4651-8e00-f066e7bd5ff2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5692-scaled.jpg,,FALSE, +N1,60094,sortie-23db08a7-7903-4651-8e00-f066e7bd5ff2,https://biolit.fr/sorties/sortie-23db08a7-7903-4651-8e00-f066e7bd5ff2/,AIEJE,,12/12/2017,15.0000000,17.0000000,43.334822000000,5.175016000000,,plage du rouet ,45714,observation-23db08a7-7903-4651-8e00-f066e7bd5ff2-4,https://biolit.fr/observations/observation-23db08a7-7903-4651-8e00-f066e7bd5ff2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5693-scaled.jpg,,FALSE, +N1,60094,sortie-23db08a7-7903-4651-8e00-f066e7bd5ff2,https://biolit.fr/sorties/sortie-23db08a7-7903-4651-8e00-f066e7bd5ff2/,AIEJE,,12/12/2017,15.0000000,17.0000000,43.334822000000,5.175016000000,,plage du rouet ,45716,observation-23db08a7-7903-4651-8e00-f066e7bd5ff2-5,https://biolit.fr/observations/observation-23db08a7-7903-4651-8e00-f066e7bd5ff2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5694-scaled.jpg,,FALSE, +N1,60094,sortie-23db08a7-7903-4651-8e00-f066e7bd5ff2,https://biolit.fr/sorties/sortie-23db08a7-7903-4651-8e00-f066e7bd5ff2/,AIEJE,,12/12/2017,15.0000000,17.0000000,43.334822000000,5.175016000000,,plage du rouet ,45718,observation-23db08a7-7903-4651-8e00-f066e7bd5ff2-6,https://biolit.fr/observations/observation-23db08a7-7903-4651-8e00-f066e7bd5ff2-6/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5695_0-scaled.jpg,,TRUE, +N1,60094,sortie-23db08a7-7903-4651-8e00-f066e7bd5ff2,https://biolit.fr/sorties/sortie-23db08a7-7903-4651-8e00-f066e7bd5ff2/,AIEJE,,12/12/2017,15.0000000,17.0000000,43.334822000000,5.175016000000,,plage du rouet ,45720,observation-23db08a7-7903-4651-8e00-f066e7bd5ff2-7,https://biolit.fr/observations/observation-23db08a7-7903-4651-8e00-f066e7bd5ff2-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5696-scaled.jpg,,FALSE, +N1,60094,sortie-23db08a7-7903-4651-8e00-f066e7bd5ff2,https://biolit.fr/sorties/sortie-23db08a7-7903-4651-8e00-f066e7bd5ff2/,AIEJE,,12/12/2017,15.0000000,17.0000000,43.334822000000,5.175016000000,,plage du rouet ,45722,observation-23db08a7-7903-4651-8e00-f066e7bd5ff2-8,https://biolit.fr/observations/observation-23db08a7-7903-4651-8e00-f066e7bd5ff2-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5698_0-scaled.jpg,,FALSE, +N1,60095,sortie-c6b33a52-fd7a-4def-a65b-ca97d396562a,https://biolit.fr/sorties/sortie-c6b33a52-fd7a-4def-a65b-ca97d396562a/,RIEM,,12/19/2017 0:00,17.0000000,19.0000000,47.49316600000,-2.682955000000,,PENVINS 56370,45724,observation-c6b33a52-fd7a-4def-a65b-ca97d396562a,https://biolit.fr/observations/observation-c6b33a52-fd7a-4def-a65b-ca97d396562a/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/P1040176.JPG,,TRUE, +N1,60095,sortie-c6b33a52-fd7a-4def-a65b-ca97d396562a,https://biolit.fr/sorties/sortie-c6b33a52-fd7a-4def-a65b-ca97d396562a/,RIEM,,12/19/2017 0:00,17.0000000,19.0000000,47.49316600000,-2.682955000000,,PENVINS 56370,45726,observation-c6b33a52-fd7a-4def-a65b-ca97d396562a-2,https://biolit.fr/observations/observation-c6b33a52-fd7a-4def-a65b-ca97d396562a-2/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P1040177.JPG,,TRUE, +N1,60095,sortie-c6b33a52-fd7a-4def-a65b-ca97d396562a,https://biolit.fr/sorties/sortie-c6b33a52-fd7a-4def-a65b-ca97d396562a/,RIEM,,12/19/2017 0:00,17.0000000,19.0000000,47.49316600000,-2.682955000000,,PENVINS 56370,45728,observation-c6b33a52-fd7a-4def-a65b-ca97d396562a-3,https://biolit.fr/observations/observation-c6b33a52-fd7a-4def-a65b-ca97d396562a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040178.JPG,,FALSE, +N1,60095,sortie-c6b33a52-fd7a-4def-a65b-ca97d396562a,https://biolit.fr/sorties/sortie-c6b33a52-fd7a-4def-a65b-ca97d396562a/,RIEM,,12/19/2017 0:00,17.0000000,19.0000000,47.49316600000,-2.682955000000,,PENVINS 56370,45730,observation-c6b33a52-fd7a-4def-a65b-ca97d396562a-4,https://biolit.fr/observations/observation-c6b33a52-fd7a-4def-a65b-ca97d396562a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040179_0.JPG,,FALSE, +N1,60096,sortie-f74eb4b2-408d-4d11-a44a-bca02ff98e11,https://biolit.fr/sorties/sortie-f74eb4b2-408d-4d11-a44a-bca02ff98e11/,RIEM,,8/22/2017 0:00,11.0000000,11.0000000,47.493862000000,-2.682955000000,,PENVINS 53370 SARZEAU,45732,observation-f74eb4b2-408d-4d11-a44a-bca02ff98e11,https://biolit.fr/observations/observation-f74eb4b2-408d-4d11-a44a-bca02ff98e11/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040116_0.JPG,,FALSE, +N1,60096,sortie-f74eb4b2-408d-4d11-a44a-bca02ff98e11,https://biolit.fr/sorties/sortie-f74eb4b2-408d-4d11-a44a-bca02ff98e11/,RIEM,,8/22/2017 0:00,11.0000000,11.0000000,47.493862000000,-2.682955000000,,PENVINS 53370 SARZEAU,45734,observation-f74eb4b2-408d-4d11-a44a-bca02ff98e11-2,https://biolit.fr/observations/observation-f74eb4b2-408d-4d11-a44a-bca02ff98e11-2/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/P1040118_0.JPG,,TRUE, +N1,60096,sortie-f74eb4b2-408d-4d11-a44a-bca02ff98e11,https://biolit.fr/sorties/sortie-f74eb4b2-408d-4d11-a44a-bca02ff98e11/,RIEM,,8/22/2017 0:00,11.0000000,11.0000000,47.493862000000,-2.682955000000,,PENVINS 53370 SARZEAU,45736,observation-f74eb4b2-408d-4d11-a44a-bca02ff98e11-3,https://biolit.fr/observations/observation-f74eb4b2-408d-4d11-a44a-bca02ff98e11-3/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040120_0.JPG,,TRUE, +N1,60096,sortie-f74eb4b2-408d-4d11-a44a-bca02ff98e11,https://biolit.fr/sorties/sortie-f74eb4b2-408d-4d11-a44a-bca02ff98e11/,RIEM,,8/22/2017 0:00,11.0000000,11.0000000,47.493862000000,-2.682955000000,,PENVINS 53370 SARZEAU,45738,observation-f74eb4b2-408d-4d11-a44a-bca02ff98e11-4,https://biolit.fr/observations/observation-f74eb4b2-408d-4d11-a44a-bca02ff98e11-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040121_0.JPG,,FALSE, +N1,60096,sortie-f74eb4b2-408d-4d11-a44a-bca02ff98e11,https://biolit.fr/sorties/sortie-f74eb4b2-408d-4d11-a44a-bca02ff98e11/,RIEM,,8/22/2017 0:00,11.0000000,11.0000000,47.493862000000,-2.682955000000,,PENVINS 53370 SARZEAU,45740,observation-f74eb4b2-408d-4d11-a44a-bca02ff98e11-5,https://biolit.fr/observations/observation-f74eb4b2-408d-4d11-a44a-bca02ff98e11-5/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/P1040122_0.JPG,,TRUE, +N1,60096,sortie-f74eb4b2-408d-4d11-a44a-bca02ff98e11,https://biolit.fr/sorties/sortie-f74eb4b2-408d-4d11-a44a-bca02ff98e11/,RIEM,,8/22/2017 0:00,11.0000000,11.0000000,47.493862000000,-2.682955000000,,PENVINS 53370 SARZEAU,45742,observation-f74eb4b2-408d-4d11-a44a-bca02ff98e11-6,https://biolit.fr/observations/observation-f74eb4b2-408d-4d11-a44a-bca02ff98e11-6/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/P1040124.JPG,,TRUE, +N1,60097,sortie-f011cf2d-b068-4bee-8b27-87682750810d,https://biolit.fr/sorties/sortie-f011cf2d-b068-4bee-8b27-87682750810d/,Phil,,12/03/2017,13.0:25,13.0000000,47.852544000000,-3.975214000000,,Fouesnant - Finistère,45744,observation-f011cf2d-b068-4bee-8b27-87682750810d,https://biolit.fr/observations/observation-f011cf2d-b068-4bee-8b27-87682750810d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090606.JPG,,FALSE, +N1,60097,sortie-f011cf2d-b068-4bee-8b27-87682750810d,https://biolit.fr/sorties/sortie-f011cf2d-b068-4bee-8b27-87682750810d/,Phil,,12/03/2017,13.0:25,13.0000000,47.852544000000,-3.975214000000,,Fouesnant - Finistère,45746,observation-f011cf2d-b068-4bee-8b27-87682750810d-2,https://biolit.fr/observations/observation-f011cf2d-b068-4bee-8b27-87682750810d-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1090608.JPG,,TRUE, +N1,60097,sortie-f011cf2d-b068-4bee-8b27-87682750810d,https://biolit.fr/sorties/sortie-f011cf2d-b068-4bee-8b27-87682750810d/,Phil,,12/03/2017,13.0:25,13.0000000,47.852544000000,-3.975214000000,,Fouesnant - Finistère,45748,observation-f011cf2d-b068-4bee-8b27-87682750810d-3,https://biolit.fr/observations/observation-f011cf2d-b068-4bee-8b27-87682750810d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090609.JPG,,FALSE, +N1,60097,sortie-f011cf2d-b068-4bee-8b27-87682750810d,https://biolit.fr/sorties/sortie-f011cf2d-b068-4bee-8b27-87682750810d/,Phil,,12/03/2017,13.0:25,13.0000000,47.852544000000,-3.975214000000,,Fouesnant - Finistère,45750,observation-f011cf2d-b068-4bee-8b27-87682750810d-4,https://biolit.fr/observations/observation-f011cf2d-b068-4bee-8b27-87682750810d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090599.JPG,,FALSE, +N1,60097,sortie-f011cf2d-b068-4bee-8b27-87682750810d,https://biolit.fr/sorties/sortie-f011cf2d-b068-4bee-8b27-87682750810d/,Phil,,12/03/2017,13.0:25,13.0000000,47.852544000000,-3.975214000000,,Fouesnant - Finistère,45752,observation-f011cf2d-b068-4bee-8b27-87682750810d-5,https://biolit.fr/observations/observation-f011cf2d-b068-4bee-8b27-87682750810d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090597.JPG,,FALSE, +N1,60097,sortie-f011cf2d-b068-4bee-8b27-87682750810d,https://biolit.fr/sorties/sortie-f011cf2d-b068-4bee-8b27-87682750810d/,Phil,,12/03/2017,13.0:25,13.0000000,47.852544000000,-3.975214000000,,Fouesnant - Finistère,45754,observation-f011cf2d-b068-4bee-8b27-87682750810d-6,https://biolit.fr/observations/observation-f011cf2d-b068-4bee-8b27-87682750810d-6/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/P1090600.JPG,,TRUE, +N1,60098,sortie-a5653af9-831c-40a3-a2ab-ec9883138aa9,https://biolit.fr/sorties/sortie-a5653af9-831c-40a3-a2ab-ec9883138aa9/,Phil,,12/11/2017,13.000005,13.0000000,47.792516000000,-4.293253000000,,Le Guilvinec - Finistère,45756,observation-a5653af9-831c-40a3-a2ab-ec9883138aa9,https://biolit.fr/observations/observation-a5653af9-831c-40a3-a2ab-ec9883138aa9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090793.JPG,,FALSE, +N1,60098,sortie-a5653af9-831c-40a3-a2ab-ec9883138aa9,https://biolit.fr/sorties/sortie-a5653af9-831c-40a3-a2ab-ec9883138aa9/,Phil,,12/11/2017,13.000005,13.0000000,47.792516000000,-4.293253000000,,Le Guilvinec - Finistère,45758,observation-a5653af9-831c-40a3-a2ab-ec9883138aa9-2,https://biolit.fr/observations/observation-a5653af9-831c-40a3-a2ab-ec9883138aa9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090796.JPG,,FALSE, +N1,60098,sortie-a5653af9-831c-40a3-a2ab-ec9883138aa9,https://biolit.fr/sorties/sortie-a5653af9-831c-40a3-a2ab-ec9883138aa9/,Phil,,12/11/2017,13.000005,13.0000000,47.792516000000,-4.293253000000,,Le Guilvinec - Finistère,45760,observation-a5653af9-831c-40a3-a2ab-ec9883138aa9-3,https://biolit.fr/observations/observation-a5653af9-831c-40a3-a2ab-ec9883138aa9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090801.JPG,,FALSE, +N1,60099,sortie-b9ece56c-1b03-45bd-85a3-c22941ebe4fb,https://biolit.fr/sorties/sortie-b9ece56c-1b03-45bd-85a3-c22941ebe4fb/,Phil,,12/18/2017 0:00,10.0:55,11.0000000,47.8674500000,-4.22021100000,,Pont-L'Abbé - Finistère,45762,observation-b9ece56c-1b03-45bd-85a3-c22941ebe4fb,https://biolit.fr/observations/observation-b9ece56c-1b03-45bd-85a3-c22941ebe4fb/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090864.JPG,,FALSE, +N1,60099,sortie-b9ece56c-1b03-45bd-85a3-c22941ebe4fb,https://biolit.fr/sorties/sortie-b9ece56c-1b03-45bd-85a3-c22941ebe4fb/,Phil,,12/18/2017 0:00,10.0:55,11.0000000,47.8674500000,-4.22021100000,,Pont-L'Abbé - Finistère,45764,observation-b9ece56c-1b03-45bd-85a3-c22941ebe4fb-2,https://biolit.fr/observations/observation-b9ece56c-1b03-45bd-85a3-c22941ebe4fb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090874.JPG,,FALSE, +N1,60099,sortie-b9ece56c-1b03-45bd-85a3-c22941ebe4fb,https://biolit.fr/sorties/sortie-b9ece56c-1b03-45bd-85a3-c22941ebe4fb/,Phil,,12/18/2017 0:00,10.0:55,11.0000000,47.8674500000,-4.22021100000,,Pont-L'Abbé - Finistère,45766,observation-b9ece56c-1b03-45bd-85a3-c22941ebe4fb-3,https://biolit.fr/observations/observation-b9ece56c-1b03-45bd-85a3-c22941ebe4fb-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090879.JPG,,FALSE, +N1,60099,sortie-b9ece56c-1b03-45bd-85a3-c22941ebe4fb,https://biolit.fr/sorties/sortie-b9ece56c-1b03-45bd-85a3-c22941ebe4fb/,Phil,,12/18/2017 0:00,10.0:55,11.0000000,47.8674500000,-4.22021100000,,Pont-L'Abbé - Finistère,45768,observation-b9ece56c-1b03-45bd-85a3-c22941ebe4fb-4,https://biolit.fr/observations/observation-b9ece56c-1b03-45bd-85a3-c22941ebe4fb-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090893.JPG,,FALSE, +N1,60100,sortie-0ce00152-b2cb-4ddf-9875-9c20b7a6e6d0,https://biolit.fr/sorties/sortie-0ce00152-b2cb-4ddf-9875-9c20b7a6e6d0/,ville de marseille les Camoins cm1,,12/04/2017,10.0:15,12.0:15,43.279694000000,5.352516000000,,Anse de la fausse monaie,45770,observation-0ce00152-b2cb-4ddf-9875-9c20b7a6e6d0,https://biolit.fr/observations/observation-0ce00152-b2cb-4ddf-9875-9c20b7a6e6d0/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle ponctuée - Patella rustica interieur-scaled.jpg,,FALSE, +N1,60101,sortie-2c9ebd22-e1a8-41ac-9a1b-9eca020dffe1,https://biolit.fr/sorties/sortie-2c9ebd22-e1a8-41ac-9a1b-9eca020dffe1/,ville de marseille les Camoins cm1,,12/04/2017,10.0:15,12.0:15,43.280035000000,5.352213000000,,anse de fausse monnaie,45772,observation-2c9ebd22-e1a8-41ac-9a1b-9eca020dffe1,https://biolit.fr/observations/observation-2c9ebd22-e1a8-41ac-9a1b-9eca020dffe1/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/Littorine bleue - Melarhaphe neritoides-scaled.jpg,,TRUE, +N1,60102,sortie-ce2b40e5-bcc2-4543-9389-5e8432b287cb,https://biolit.fr/sorties/sortie-ce2b40e5-bcc2-4543-9389-5e8432b287cb/,ville de marseille les Camoins cm1,,12/04/2017,10.0:15,12.0:15,43.27977800000,5.352479000000,,Anse de la fausse monnaie,45774,observation-ce2b40e5-bcc2-4543-9389-5e8432b287cb,https://biolit.fr/observations/observation-ce2b40e5-bcc2-4543-9389-5e8432b287cb/,,,,https://biolit.fr/wp-content/uploads/2023/07/PEYSSONNELIA-Peyssonnelia squamaria.JPG,,FALSE, +N1,60103,sortie-828c60eb-2ebd-46f3-9e27-b80042078172,https://biolit.fr/sorties/sortie-828c60eb-2ebd-46f3-9e27-b80042078172/,ville de marseille les Camoins cm1,,12/04/2017,10.0:15,12.0:15,43.280016000000,5.352412000000,,anse de la fausse monnaie,45775,observation-828c60eb-2ebd-46f3-9e27-b80042078172,https://biolit.fr/observations/observation-828c60eb-2ebd-46f3-9e27-b80042078172/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Oursin-scaled.jpg,,TRUE, +N1,60104,sortie-b698cc59-fbc9-4157-a48d-92691d8f1212,https://biolit.fr/sorties/sortie-b698cc59-fbc9-4157-a48d-92691d8f1212/,ville de marseille les Camoins cm1,,12/04/2017,10.0:15,12.0:15,43.279945000000,5.352294000000,,l'anse de la fausse monnaie,45776,observation-b698cc59-fbc9-4157-a48d-92691d8f1212,https://biolit.fr/observations/observation-b698cc59-fbc9-4157-a48d-92691d8f1212/,,,,https://biolit.fr/wp-content/uploads/2023/07/POSIDONIE-Posidonia oceanica-scaled.jpg,,FALSE, +N1,60105,sortie-0d331951-b1ff-4de1-86fa-203fc8d066ae,https://biolit.fr/sorties/sortie-0d331951-b1ff-4de1-86fa-203fc8d066ae/,ville de marseille les Camoins cm1,,12/04/2017,10.0:15,12.0:15,43.280231000000,5.352809000000,,ANSE DE LA FAUSSE MONNAIE,45777,observation-0d331951-b1ff-4de1-86fa-203fc8d066ae,https://biolit.fr/observations/observation-0d331951-b1ff-4de1-86fa-203fc8d066ae/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/Tomate de mer - Actinia equina-scaled.jpg,,TRUE, +N1,60106,sortie-d526eb08-789b-40fe-ab53-3c00e0926295,https://biolit.fr/sorties/sortie-d526eb08-789b-40fe-ab53-3c00e0926295/,ville de marseille les Camoins cm1,,12/04/2017,10.0:15,15.0000000,43.279988000000,5.351969000000,,anse de la fausse monnaie,45779,observation-d526eb08-789b-40fe-ab53-3c00e0926295,https://biolit.fr/observations/observation-d526eb08-789b-40fe-ab53-3c00e0926295/,,,,https://biolit.fr/wp-content/uploads/2023/07/oursin interieur-scaled.jpg,,FALSE, +N1,60107,sortie-1511d0dd-cee5-49ef-9429-d8e6adc08fc3,https://biolit.fr/sorties/sortie-1511d0dd-cee5-49ef-9429-d8e6adc08fc3/,ville de marseille les Camoins cm1,,12/04/2017,10.0:15,12.0:15,43.280025000000,5.352539000000,,anse de la fausse monnaie,45781,observation-1511d0dd-cee5-49ef-9429-d8e6adc08fc3,https://biolit.fr/observations/observation-1511d0dd-cee5-49ef-9429-d8e6adc08fc3/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/Sphérocoque - Sphaerococcus coronopifolius-scaled.jpg,,TRUE, +N1,60108,sortie-3956342d-2664-47e3-9159-5358d4633c18,https://biolit.fr/sorties/sortie-3956342d-2664-47e3-9159-5358d4633c18/,ville de marseille les Camoins cm1,,12/04/2017,10.0:15,12.0:15,43.27976800000,5.352390000000,,Anse de la fausse monaie,45783,observation-3956342d-2664-47e3-9159-5358d4633c18,https://biolit.fr/observations/observation-3956342d-2664-47e3-9159-5358d4633c18/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/Bérêt basque Codium bursa-scaled.jpg,,TRUE, +N1,60109,sortie-4cb8b820-ab6b-4f93-b355-141186139767,https://biolit.fr/sorties/sortie-4cb8b820-ab6b-4f93-b355-141186139767/,ville de marseille les Camoins cm1,,12/04/2017,10.0:15,15.0000000,43.279943000000,5.352030000000,,Anse de la fausse monaie,45784,observation-4cb8b820-ab6b-4f93-b355-141186139767,https://biolit.fr/observations/observation-4cb8b820-ab6b-4f93-b355-141186139767/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/2023/07/Patelle ponctuée - Patella rustica exterieur-scaled.jpg,,TRUE, +N1,60110,sortie-aeed2020-e3a6-44f9-95c4-919374e67333,https://biolit.fr/sorties/sortie-aeed2020-e3a6-44f9-95c4-919374e67333/,ville de marseille les Camoins cm1,,12/04/2017,10.0:15,12.0:15,43.279883000000,5.352299000000,,anse de la fausse monaie,45786,observation-aeed2020-e3a6-44f9-95c4-919374e67333,https://biolit.fr/observations/observation-aeed2020-e3a6-44f9-95c4-919374e67333/,,,,https://biolit.fr/wp-content/uploads/2023/07/pierre avec des trous avec une bivalve-scaled.jpg,,FALSE, +N1,60111,sortie-4e5cfb5c-2930-494d-80a1-047621d36569,https://biolit.fr/sorties/sortie-4e5cfb5c-2930-494d-80a1-047621d36569/,Phil,,12/03/2017,13.0000000,13.0:45,47.852579000000,-3.977458000000,,Fouesnant - Finistère,45788,observation-4e5cfb5c-2930-494d-80a1-047621d36569,https://biolit.fr/observations/observation-4e5cfb5c-2930-494d-80a1-047621d36569/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090630.JPG,,FALSE, +N1,60111,sortie-4e5cfb5c-2930-494d-80a1-047621d36569,https://biolit.fr/sorties/sortie-4e5cfb5c-2930-494d-80a1-047621d36569/,Phil,,12/03/2017,13.0000000,13.0:45,47.852579000000,-3.977458000000,,Fouesnant - Finistère,45790,observation-4e5cfb5c-2930-494d-80a1-047621d36569-2,https://biolit.fr/observations/observation-4e5cfb5c-2930-494d-80a1-047621d36569-2/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/P1090626.JPG,,TRUE, +N1,60111,sortie-4e5cfb5c-2930-494d-80a1-047621d36569,https://biolit.fr/sorties/sortie-4e5cfb5c-2930-494d-80a1-047621d36569/,Phil,,12/03/2017,13.0000000,13.0:45,47.852579000000,-3.977458000000,,Fouesnant - Finistère,45792,observation-4e5cfb5c-2930-494d-80a1-047621d36569-3,https://biolit.fr/observations/observation-4e5cfb5c-2930-494d-80a1-047621d36569-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090625.JPG,,FALSE, +N1,60111,sortie-4e5cfb5c-2930-494d-80a1-047621d36569,https://biolit.fr/sorties/sortie-4e5cfb5c-2930-494d-80a1-047621d36569/,Phil,,12/03/2017,13.0000000,13.0:45,47.852579000000,-3.977458000000,,Fouesnant - Finistère,45794,observation-4e5cfb5c-2930-494d-80a1-047621d36569-4,https://biolit.fr/observations/observation-4e5cfb5c-2930-494d-80a1-047621d36569-4/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/P1090624.JPG,,TRUE, +N1,60111,sortie-4e5cfb5c-2930-494d-80a1-047621d36569,https://biolit.fr/sorties/sortie-4e5cfb5c-2930-494d-80a1-047621d36569/,Phil,,12/03/2017,13.0000000,13.0:45,47.852579000000,-3.977458000000,,Fouesnant - Finistère,45796,observation-4e5cfb5c-2930-494d-80a1-047621d36569-5,https://biolit.fr/observations/observation-4e5cfb5c-2930-494d-80a1-047621d36569-5/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1090619.JPG,,TRUE, +N1,60111,sortie-4e5cfb5c-2930-494d-80a1-047621d36569,https://biolit.fr/sorties/sortie-4e5cfb5c-2930-494d-80a1-047621d36569/,Phil,,12/03/2017,13.0000000,13.0:45,47.852579000000,-3.977458000000,,Fouesnant - Finistère,45798,observation-4e5cfb5c-2930-494d-80a1-047621d36569-6,https://biolit.fr/observations/observation-4e5cfb5c-2930-494d-80a1-047621d36569-6/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1090616.JPG,,TRUE, +N1,60112,sortie-0599684f-698a-4590-88b3-8c63a9c2a8fb,https://biolit.fr/sorties/sortie-0599684f-698a-4590-88b3-8c63a9c2a8fb/,Phil,,12/18/2017 0:00,9.0:35,9.0000000,47.83326600000,-4.174946000000,,Loctudy - Finistère,45800,observation-0599684f-698a-4590-88b3-8c63a9c2a8fb,https://biolit.fr/observations/observation-0599684f-698a-4590-88b3-8c63a9c2a8fb/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090829.JPG,,FALSE, +N1,60112,sortie-0599684f-698a-4590-88b3-8c63a9c2a8fb,https://biolit.fr/sorties/sortie-0599684f-698a-4590-88b3-8c63a9c2a8fb/,Phil,,12/18/2017 0:00,9.0:35,9.0000000,47.83326600000,-4.174946000000,,Loctudy - Finistère,45802,observation-0599684f-698a-4590-88b3-8c63a9c2a8fb-2,https://biolit.fr/observations/observation-0599684f-698a-4590-88b3-8c63a9c2a8fb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090830.JPG,,FALSE, +N1,60112,sortie-0599684f-698a-4590-88b3-8c63a9c2a8fb,https://biolit.fr/sorties/sortie-0599684f-698a-4590-88b3-8c63a9c2a8fb/,Phil,,12/18/2017 0:00,9.0:35,9.0000000,47.83326600000,-4.174946000000,,Loctudy - Finistère,45804,observation-0599684f-698a-4590-88b3-8c63a9c2a8fb-3,https://biolit.fr/observations/observation-0599684f-698a-4590-88b3-8c63a9c2a8fb-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090831.JPG,,FALSE, +N1,60112,sortie-0599684f-698a-4590-88b3-8c63a9c2a8fb,https://biolit.fr/sorties/sortie-0599684f-698a-4590-88b3-8c63a9c2a8fb/,Phil,,12/18/2017 0:00,9.0:35,9.0000000,47.83326600000,-4.174946000000,,Loctudy - Finistère,45806,observation-0599684f-698a-4590-88b3-8c63a9c2a8fb-4,https://biolit.fr/observations/observation-0599684f-698a-4590-88b3-8c63a9c2a8fb-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090832.JPG,,FALSE, +N1,60113,sortie-4ecace94-177a-47a9-8c34-95f4d1f0ef41,https://biolit.fr/sorties/sortie-4ecace94-177a-47a9-8c34-95f4d1f0ef41/,Phil,,12/16/2017 0:00,13.0000000,13.0:15,47.89597100000,-3.969703000000,,La Forêt-Fouesnant - Finistère,45808,observation-4ecace94-177a-47a9-8c34-95f4d1f0ef41,https://biolit.fr/observations/observation-4ecace94-177a-47a9-8c34-95f4d1f0ef41/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20171216_131157.jpg,,TRUE, +N1,60113,sortie-4ecace94-177a-47a9-8c34-95f4d1f0ef41,https://biolit.fr/sorties/sortie-4ecace94-177a-47a9-8c34-95f4d1f0ef41/,Phil,,12/16/2017 0:00,13.0000000,13.0:15,47.89597100000,-3.969703000000,,La Forêt-Fouesnant - Finistère,45810,observation-4ecace94-177a-47a9-8c34-95f4d1f0ef41-2,https://biolit.fr/observations/observation-4ecace94-177a-47a9-8c34-95f4d1f0ef41-2/,Ensis siliqua,Couteau-silique,,https://biolit.fr/wp-content/uploads/2023/07/20171216_131145.jpg,,TRUE, +N1,60113,sortie-4ecace94-177a-47a9-8c34-95f4d1f0ef41,https://biolit.fr/sorties/sortie-4ecace94-177a-47a9-8c34-95f4d1f0ef41/,Phil,,12/16/2017 0:00,13.0000000,13.0:15,47.89597100000,-3.969703000000,,La Forêt-Fouesnant - Finistère,45812,observation-4ecace94-177a-47a9-8c34-95f4d1f0ef41-3,https://biolit.fr/observations/observation-4ecace94-177a-47a9-8c34-95f4d1f0ef41-3/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20171216_131254.jpg,,TRUE, +N1,60113,sortie-4ecace94-177a-47a9-8c34-95f4d1f0ef41,https://biolit.fr/sorties/sortie-4ecace94-177a-47a9-8c34-95f4d1f0ef41/,Phil,,12/16/2017 0:00,13.0000000,13.0:15,47.89597100000,-3.969703000000,,La Forêt-Fouesnant - Finistère,45814,observation-4ecace94-177a-47a9-8c34-95f4d1f0ef41-4,https://biolit.fr/observations/observation-4ecace94-177a-47a9-8c34-95f4d1f0ef41-4/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20171216_131305.jpg,,TRUE, +N1,60113,sortie-4ecace94-177a-47a9-8c34-95f4d1f0ef41,https://biolit.fr/sorties/sortie-4ecace94-177a-47a9-8c34-95f4d1f0ef41/,Phil,,12/16/2017 0:00,13.0000000,13.0:15,47.89597100000,-3.969703000000,,La Forêt-Fouesnant - Finistère,45816,observation-4ecace94-177a-47a9-8c34-95f4d1f0ef41-5,https://biolit.fr/observations/observation-4ecace94-177a-47a9-8c34-95f4d1f0ef41-5/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/20171216_131403.jpg,,TRUE, +N1,60114,sortie-73baac83-82e7-4940-8f3c-5059edf9e434,https://biolit.fr/sorties/sortie-73baac83-82e7-4940-8f3c-5059edf9e434/,Phil,,12/11/2017,12.0:45,12.0000000,47.792291000000,-4.293736000000,,Le Gulvinec - Finistère,45818,observation-73baac83-82e7-4940-8f3c-5059edf9e434,https://biolit.fr/observations/observation-73baac83-82e7-4940-8f3c-5059edf9e434/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1090722.JPG,,TRUE, +N1,60114,sortie-73baac83-82e7-4940-8f3c-5059edf9e434,https://biolit.fr/sorties/sortie-73baac83-82e7-4940-8f3c-5059edf9e434/,Phil,,12/11/2017,12.0:45,12.0000000,47.792291000000,-4.293736000000,,Le Gulvinec - Finistère,45820,observation-73baac83-82e7-4940-8f3c-5059edf9e434-2,https://biolit.fr/observations/observation-73baac83-82e7-4940-8f3c-5059edf9e434-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1090724_0.JPG,,TRUE, +N1,60114,sortie-73baac83-82e7-4940-8f3c-5059edf9e434,https://biolit.fr/sorties/sortie-73baac83-82e7-4940-8f3c-5059edf9e434/,Phil,,12/11/2017,12.0:45,12.0000000,47.792291000000,-4.293736000000,,Le Gulvinec - Finistère,45822,observation-73baac83-82e7-4940-8f3c-5059edf9e434-3,https://biolit.fr/observations/observation-73baac83-82e7-4940-8f3c-5059edf9e434-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1090725_0.JPG,,TRUE, +N1,60114,sortie-73baac83-82e7-4940-8f3c-5059edf9e434,https://biolit.fr/sorties/sortie-73baac83-82e7-4940-8f3c-5059edf9e434/,Phil,,12/11/2017,12.0:45,12.0000000,47.792291000000,-4.293736000000,,Le Gulvinec - Finistère,45824,observation-73baac83-82e7-4940-8f3c-5059edf9e434-4,https://biolit.fr/observations/observation-73baac83-82e7-4940-8f3c-5059edf9e434-4/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1090726.JPG,,TRUE, +N1,60114,sortie-73baac83-82e7-4940-8f3c-5059edf9e434,https://biolit.fr/sorties/sortie-73baac83-82e7-4940-8f3c-5059edf9e434/,Phil,,12/11/2017,12.0:45,12.0000000,47.792291000000,-4.293736000000,,Le Gulvinec - Finistère,45826,observation-73baac83-82e7-4940-8f3c-5059edf9e434-5,https://biolit.fr/observations/observation-73baac83-82e7-4940-8f3c-5059edf9e434-5/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1090727.JPG,,TRUE, +N1,60115,sortie-663a2bc7-000a-4e0b-95b6-df221d2be341,https://biolit.fr/sorties/sortie-663a2bc7-000a-4e0b-95b6-df221d2be341/,Phil,,12/17/2017 0:00,14.0000000,14.000005,47.833171000000,-4.175014000000,,Loctudy - Finistère,45828,observation-663a2bc7-000a-4e0b-95b6-df221d2be341,https://biolit.fr/observations/observation-663a2bc7-000a-4e0b-95b6-df221d2be341/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090821.JPG,,FALSE, +N1,60115,sortie-663a2bc7-000a-4e0b-95b6-df221d2be341,https://biolit.fr/sorties/sortie-663a2bc7-000a-4e0b-95b6-df221d2be341/,Phil,,12/17/2017 0:00,14.0000000,14.000005,47.833171000000,-4.175014000000,,Loctudy - Finistère,45830,observation-663a2bc7-000a-4e0b-95b6-df221d2be341-2,https://biolit.fr/observations/observation-663a2bc7-000a-4e0b-95b6-df221d2be341-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090822.JPG,,FALSE, +N1,60115,sortie-663a2bc7-000a-4e0b-95b6-df221d2be341,https://biolit.fr/sorties/sortie-663a2bc7-000a-4e0b-95b6-df221d2be341/,Phil,,12/17/2017 0:00,14.0000000,14.000005,47.833171000000,-4.175014000000,,Loctudy - Finistère,45832,observation-663a2bc7-000a-4e0b-95b6-df221d2be341-3,https://biolit.fr/observations/observation-663a2bc7-000a-4e0b-95b6-df221d2be341-3/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1090823.JPG,,TRUE, +N1,60116,sortie-476291a9-54f9-495f-921c-d77f7386168f,https://biolit.fr/sorties/sortie-476291a9-54f9-495f-921c-d77f7386168f/,Phil,,12/17/2017 0:00,13.0000000,13.0:55,47.835891000000,-4.17637300000,,Loctudy - Finistère,45834,observation-476291a9-54f9-495f-921c-d77f7386168f,https://biolit.fr/observations/observation-476291a9-54f9-495f-921c-d77f7386168f/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1090818.JPG,,TRUE, +N1,60116,sortie-476291a9-54f9-495f-921c-d77f7386168f,https://biolit.fr/sorties/sortie-476291a9-54f9-495f-921c-d77f7386168f/,Phil,,12/17/2017 0:00,13.0000000,13.0:55,47.835891000000,-4.17637300000,,Loctudy - Finistère,45836,observation-476291a9-54f9-495f-921c-d77f7386168f-2,https://biolit.fr/observations/observation-476291a9-54f9-495f-921c-d77f7386168f-2/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1090815.JPG,,TRUE, +N1,60117,sortie-e1888375-3742-48e9-bb03-602f4227b5bf,https://biolit.fr/sorties/sortie-e1888375-3742-48e9-bb03-602f4227b5bf/,Phil,,12/03/2017,13.0000000,13.0:25,47.85239800000,-3.977353000000,,Fouesnant - Finistère,45838,observation-e1888375-3742-48e9-bb03-602f4227b5bf,https://biolit.fr/observations/observation-e1888375-3742-48e9-bb03-602f4227b5bf/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090596.JPG,,FALSE, +N1,60117,sortie-e1888375-3742-48e9-bb03-602f4227b5bf,https://biolit.fr/sorties/sortie-e1888375-3742-48e9-bb03-602f4227b5bf/,Phil,,12/03/2017,13.0000000,13.0:25,47.85239800000,-3.977353000000,,Fouesnant - Finistère,45840,observation-e1888375-3742-48e9-bb03-602f4227b5bf-2,https://biolit.fr/observations/observation-e1888375-3742-48e9-bb03-602f4227b5bf-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1090583.JPG,,TRUE, +N1,60117,sortie-e1888375-3742-48e9-bb03-602f4227b5bf,https://biolit.fr/sorties/sortie-e1888375-3742-48e9-bb03-602f4227b5bf/,Phil,,12/03/2017,13.0000000,13.0:25,47.85239800000,-3.977353000000,,Fouesnant - Finistère,45842,observation-e1888375-3742-48e9-bb03-602f4227b5bf-3,https://biolit.fr/observations/observation-e1888375-3742-48e9-bb03-602f4227b5bf-3/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1090585.JPG,,TRUE, +N1,60117,sortie-e1888375-3742-48e9-bb03-602f4227b5bf,https://biolit.fr/sorties/sortie-e1888375-3742-48e9-bb03-602f4227b5bf/,Phil,,12/03/2017,13.0000000,13.0:25,47.85239800000,-3.977353000000,,Fouesnant - Finistère,45844,observation-e1888375-3742-48e9-bb03-602f4227b5bf-4,https://biolit.fr/observations/observation-e1888375-3742-48e9-bb03-602f4227b5bf-4/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/P1090587.JPG,,TRUE, +N1,60117,sortie-e1888375-3742-48e9-bb03-602f4227b5bf,https://biolit.fr/sorties/sortie-e1888375-3742-48e9-bb03-602f4227b5bf/,Phil,,12/03/2017,13.0000000,13.0:25,47.85239800000,-3.977353000000,,Fouesnant - Finistère,45846,observation-e1888375-3742-48e9-bb03-602f4227b5bf-5,https://biolit.fr/observations/observation-e1888375-3742-48e9-bb03-602f4227b5bf-5/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1090588.JPG,,TRUE, +N1,60117,sortie-e1888375-3742-48e9-bb03-602f4227b5bf,https://biolit.fr/sorties/sortie-e1888375-3742-48e9-bb03-602f4227b5bf/,Phil,,12/03/2017,13.0000000,13.0:25,47.85239800000,-3.977353000000,,Fouesnant - Finistère,45848,observation-e1888375-3742-48e9-bb03-602f4227b5bf-6,https://biolit.fr/observations/observation-e1888375-3742-48e9-bb03-602f4227b5bf-6/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/P1090590.JPG,,TRUE, +N1,60118,sortie-8c5b49e6-22b0-4959-a6cf-d3d3a55eac3e,https://biolit.fr/sorties/sortie-8c5b49e6-22b0-4959-a6cf-d3d3a55eac3e/,Phil,,12/16/2017 0:00,13.0000000,13.0:15,47.895914000000,-3.969184000000,,La Forêt-Fouesnant - Finistère,45850,observation-8c5b49e6-22b0-4959-a6cf-d3d3a55eac3e,https://biolit.fr/observations/observation-8c5b49e6-22b0-4959-a6cf-d3d3a55eac3e/,Obelia geniculata,Obélie géniculée,,https://biolit.fr/wp-content/uploads/2023/07/20171216_131051.jpg,,TRUE, +N1,60118,sortie-8c5b49e6-22b0-4959-a6cf-d3d3a55eac3e,https://biolit.fr/sorties/sortie-8c5b49e6-22b0-4959-a6cf-d3d3a55eac3e/,Phil,,12/16/2017 0:00,13.0000000,13.0:15,47.895914000000,-3.969184000000,,La Forêt-Fouesnant - Finistère,45852,observation-8c5b49e6-22b0-4959-a6cf-d3d3a55eac3e-2,https://biolit.fr/observations/observation-8c5b49e6-22b0-4959-a6cf-d3d3a55eac3e-2/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/20171216_131057.jpg,,TRUE, +N1,60118,sortie-8c5b49e6-22b0-4959-a6cf-d3d3a55eac3e,https://biolit.fr/sorties/sortie-8c5b49e6-22b0-4959-a6cf-d3d3a55eac3e/,Phil,,12/16/2017 0:00,13.0000000,13.0:15,47.895914000000,-3.969184000000,,La Forêt-Fouesnant - Finistère,45854,observation-8c5b49e6-22b0-4959-a6cf-d3d3a55eac3e-3,https://biolit.fr/observations/observation-8c5b49e6-22b0-4959-a6cf-d3d3a55eac3e-3/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/20171216_131031.jpg,,TRUE, +N1,60118,sortie-8c5b49e6-22b0-4959-a6cf-d3d3a55eac3e,https://biolit.fr/sorties/sortie-8c5b49e6-22b0-4959-a6cf-d3d3a55eac3e/,Phil,,12/16/2017 0:00,13.0000000,13.0:15,47.895914000000,-3.969184000000,,La Forêt-Fouesnant - Finistère,45856,observation-8c5b49e6-22b0-4959-a6cf-d3d3a55eac3e-4,https://biolit.fr/observations/observation-8c5b49e6-22b0-4959-a6cf-d3d3a55eac3e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171216_131013.jpg,,FALSE, +N1,60119,sortie-3868946f-1113-45f6-94a8-73cf5bdccaab,https://biolit.fr/sorties/sortie-3868946f-1113-45f6-94a8-73cf5bdccaab/,cigale33,,12/05/2017,12.0000000,12.0000000,43.378833000000,-1.757955000000,,Hendaye,45858,observation-3868946f-1113-45f6-94a8-73cf5bdccaab,https://biolit.fr/observations/observation-3868946f-1113-45f6-94a8-73cf5bdccaab/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_8121.JPG,,FALSE, +N1,60119,sortie-3868946f-1113-45f6-94a8-73cf5bdccaab,https://biolit.fr/sorties/sortie-3868946f-1113-45f6-94a8-73cf5bdccaab/,cigale33,,12/05/2017,12.0000000,12.0000000,43.378833000000,-1.757955000000,,Hendaye,45860,observation-3868946f-1113-45f6-94a8-73cf5bdccaab-2,https://biolit.fr/observations/observation-3868946f-1113-45f6-94a8-73cf5bdccaab-2/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/_MG_8138.JPG,,TRUE, +N1,60119,sortie-3868946f-1113-45f6-94a8-73cf5bdccaab,https://biolit.fr/sorties/sortie-3868946f-1113-45f6-94a8-73cf5bdccaab/,cigale33,,12/05/2017,12.0000000,12.0000000,43.378833000000,-1.757955000000,,Hendaye,45862,observation-3868946f-1113-45f6-94a8-73cf5bdccaab-3,https://biolit.fr/observations/observation-3868946f-1113-45f6-94a8-73cf5bdccaab-3/,Felimare cantabrica,Doris cantabrique,,https://biolit.fr/wp-content/uploads/2023/07/_MG_8157.JPG,,TRUE, +N1,60120,sortie-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0,https://biolit.fr/sorties/sortie-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0/,Phil,,12/03/2017,13.0000000,14.0000000,47.854276000000,-3.979125000000,,Fouesnant - Finistère,45864,observation-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0,https://biolit.fr/observations/observation-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090659.JPG,,FALSE, +N1,60120,sortie-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0,https://biolit.fr/sorties/sortie-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0/,Phil,,12/03/2017,13.0000000,14.0000000,47.854276000000,-3.979125000000,,Fouesnant - Finistère,45866,observation-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0-2,https://biolit.fr/observations/observation-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0-2/,Membranipora membranacea,Membranipore,,https://biolit.fr/wp-content/uploads/2023/07/P1090654.JPG,,TRUE, +N1,60120,sortie-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0,https://biolit.fr/sorties/sortie-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0/,Phil,,12/03/2017,13.0000000,14.0000000,47.854276000000,-3.979125000000,,Fouesnant - Finistère,45868,observation-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0-3,https://biolit.fr/observations/observation-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090657.JPG,,FALSE, +N1,60120,sortie-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0,https://biolit.fr/sorties/sortie-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0/,Phil,,12/03/2017,13.0000000,14.0000000,47.854276000000,-3.979125000000,,Fouesnant - Finistère,45870,observation-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0-4,https://biolit.fr/observations/observation-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090652.JPG,,FALSE, +N1,60120,sortie-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0,https://biolit.fr/sorties/sortie-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0/,Phil,,12/03/2017,13.0000000,14.0000000,47.854276000000,-3.979125000000,,Fouesnant - Finistère,45872,observation-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0-5,https://biolit.fr/observations/observation-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0-5/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/P1090667_0.JPG,,TRUE, +N1,60121,sortie-8e06adc6-6a83-4040-9454-4aa89a5de4f5,https://biolit.fr/sorties/sortie-8e06adc6-6a83-4040-9454-4aa89a5de4f5/,nathalie,,12/14/2017 0:00,15.0000000,16.0000000,46.123196000000,-1.125801000000,,Plage d'Aytré ,45874,observation-8e06adc6-6a83-4040-9454-4aa89a5de4f5,https://biolit.fr/observations/observation-8e06adc6-6a83-4040-9454-4aa89a5de4f5/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171214_203221-scaled.jpg,,TRUE, +N1,60122,sortie-33a07486-98aa-423d-810f-4a455f97813a,https://biolit.fr/sorties/sortie-33a07486-98aa-423d-810f-4a455f97813a/,Phil,,12/11/2017,12.0:45,12.0000000,47.791996000000,-4.292558000000,,Le Guilvinec - Finistère,45876,observation-33a07486-98aa-423d-810f-4a455f97813a,https://biolit.fr/observations/observation-33a07486-98aa-423d-810f-4a455f97813a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090710.JPG,,FALSE, +N1,60122,sortie-33a07486-98aa-423d-810f-4a455f97813a,https://biolit.fr/sorties/sortie-33a07486-98aa-423d-810f-4a455f97813a/,Phil,,12/11/2017,12.0:45,12.0000000,47.791996000000,-4.292558000000,,Le Guilvinec - Finistère,45878,observation-33a07486-98aa-423d-810f-4a455f97813a-2,https://biolit.fr/observations/observation-33a07486-98aa-423d-810f-4a455f97813a-2/,Xanthoria parietina,Xanthorie,,https://biolit.fr/wp-content/uploads/2023/07/P1090714.JPG,,TRUE, +N1,60123,sortie-89730bf2-a76d-4eb1-95f8-4fbc35daf42b,https://biolit.fr/sorties/sortie-89730bf2-a76d-4eb1-95f8-4fbc35daf42b/,Observe la nature,,12/14/2017 0:00,15.0000000,16.0000000,43.393758000000,3.669438000000,,Plage de sete,45880,observation-89730bf2-a76d-4eb1-95f8-4fbc35daf42b,https://biolit.fr/observations/observation-89730bf2-a76d-4eb1-95f8-4fbc35daf42b/,Naticarius hebraeus,Natice hébraïque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171214_152747-scaled.jpg,,TRUE, +N1,60123,sortie-89730bf2-a76d-4eb1-95f8-4fbc35daf42b,https://biolit.fr/sorties/sortie-89730bf2-a76d-4eb1-95f8-4fbc35daf42b/,Observe la nature,,12/14/2017 0:00,15.0000000,16.0000000,43.393758000000,3.669438000000,,Plage de sete,45882,observation-89730bf2-a76d-4eb1-95f8-4fbc35daf42b-2,https://biolit.fr/observations/observation-89730bf2-a76d-4eb1-95f8-4fbc35daf42b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171214_161922-scaled.jpg,,FALSE, +N1,60123,sortie-89730bf2-a76d-4eb1-95f8-4fbc35daf42b,https://biolit.fr/sorties/sortie-89730bf2-a76d-4eb1-95f8-4fbc35daf42b/,Observe la nature,,12/14/2017 0:00,15.0000000,16.0000000,43.393758000000,3.669438000000,,Plage de sete,45884,observation-89730bf2-a76d-4eb1-95f8-4fbc35daf42b-3,https://biolit.fr/observations/observation-89730bf2-a76d-4eb1-95f8-4fbc35daf42b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171214_154122-scaled.jpg,,FALSE, +N1,60123,sortie-89730bf2-a76d-4eb1-95f8-4fbc35daf42b,https://biolit.fr/sorties/sortie-89730bf2-a76d-4eb1-95f8-4fbc35daf42b/,Observe la nature,,12/14/2017 0:00,15.0000000,16.0000000,43.393758000000,3.669438000000,,Plage de sete,45886,observation-89730bf2-a76d-4eb1-95f8-4fbc35daf42b-4,https://biolit.fr/observations/observation-89730bf2-a76d-4eb1-95f8-4fbc35daf42b-4/,Astropecten spinulosus,Petite étoile-peigne,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171214_151229-scaled.jpg,,TRUE, +N1,60123,sortie-89730bf2-a76d-4eb1-95f8-4fbc35daf42b,https://biolit.fr/sorties/sortie-89730bf2-a76d-4eb1-95f8-4fbc35daf42b/,Observe la nature,,12/14/2017 0:00,15.0000000,16.0000000,43.393758000000,3.669438000000,,Plage de sete,45888,observation-89730bf2-a76d-4eb1-95f8-4fbc35daf42b-5,https://biolit.fr/observations/observation-89730bf2-a76d-4eb1-95f8-4fbc35daf42b-5/,Naticarius hebraeus,Natice hébraïque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171214_155213-scaled.jpg,,TRUE, +N1,60123,sortie-89730bf2-a76d-4eb1-95f8-4fbc35daf42b,https://biolit.fr/sorties/sortie-89730bf2-a76d-4eb1-95f8-4fbc35daf42b/,Observe la nature,,12/14/2017 0:00,15.0000000,16.0000000,43.393758000000,3.669438000000,,Plage de sete,45890,observation-89730bf2-a76d-4eb1-95f8-4fbc35daf42b-6,https://biolit.fr/observations/observation-89730bf2-a76d-4eb1-95f8-4fbc35daf42b-6/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171214_154545-scaled.jpg,,TRUE, +N1,60124,sortie-37e4a1da-e65f-49f3-bff1-fecef3c86c82,https://biolit.fr/sorties/sortie-37e4a1da-e65f-49f3-bff1-fecef3c86c82/,Ville de Marseille Saint Gabriel CM2,,11/20/2017 0:00,10.0000000,12.0000000,43.279946000000,5.352508000000,,Ans de la fausse monnaie,45892,observation-37e4a1da-e65f-49f3-bff1-fecef3c86c82,https://biolit.fr/observations/observation-37e4a1da-e65f-49f3-bff1-fecef3c86c82/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle bleue_Patella caerulea vue dessus_0-scaled.jpg,,FALSE, +N1,60125,sortie-ebfcc7c6-b376-4e45-898b-557ddb9deab4,https://biolit.fr/sorties/sortie-ebfcc7c6-b376-4e45-898b-557ddb9deab4/,Ville de Marseille Saint Gabriel CM2,,11/20/2017 0:00,10.0000000,12.0000000,43.279974000000,5.35244400000,,Anse de la fausse monnaie,45894,observation-ebfcc7c6-b376-4e45-898b-557ddb9deab4,https://biolit.fr/observations/observation-ebfcc7c6-b376-4e45-898b-557ddb9deab4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Posidonie_Posidonia oceanica_0-scaled.jpg,,FALSE, +N1,60126,sortie-187e6df5-1b84-4f79-8f20-9a83f50faf92,https://biolit.fr/sorties/sortie-187e6df5-1b84-4f79-8f20-9a83f50faf92/,Ville de Marseille Saint Gabriel CM2,,11/20/2017 0:00,10.0000000,12.0000000,43.279954000000,5.352463000000,,Anse de la fausse monnaie,45896,observation-187e6df5-1b84-4f79-8f20-9a83f50faf92,https://biolit.fr/observations/observation-187e6df5-1b84-4f79-8f20-9a83f50faf92/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/Patelle bleue_Patella caerulea vue dessous-scaled.jpg,,TRUE, +N1,60127,sortie-8b6b3b2a-c03b-4852-ba0b-f2bffd3d2714,https://biolit.fr/sorties/sortie-8b6b3b2a-c03b-4852-ba0b-f2bffd3d2714/,Ville de Marseille Saint Gabriel CM2,,11/20/2017 0:00,10.0000000,12.0000000,43.27994600000,5.352484000000,,Anse de la Fausse monnaie,45898,observation-8b6b3b2a-c03b-4852-ba0b-f2bffd3d2714,https://biolit.fr/observations/observation-8b6b3b2a-c03b-4852-ba0b-f2bffd3d2714/,,,,https://biolit.fr/wp-content/uploads/2023/07/Moule mediterraneenneMytilus galloprovincialis vue dessous_0-scaled.jpg,,FALSE, +N1,60128,sortie-ff83221d-1b54-4a83-9de8-976ba3b53c0e,https://biolit.fr/sorties/sortie-ff83221d-1b54-4a83-9de8-976ba3b53c0e/,Ville de Marseille Saint Gabriel CM2,,11/20/2017 0:00,10.0000000,12.0000000,43.280346000000,5.35274200000,,ANSE DE LA FOSSE MONAIE,45900,observation-ff83221d-1b54-4a83-9de8-976ba3b53c0e,https://biolit.fr/observations/observation-ff83221d-1b54-4a83-9de8-976ba3b53c0e/,,,,https://biolit.fr/wp-content/uploads/2023/07/Moule mediterraneenneMytilus galloprovincialis vue dessus-scaled.jpg,,FALSE, +N1,60129,sortie-c77a4d5f-dfc9-4b0e-ab5f-9b24baaffde2,https://biolit.fr/sorties/sortie-c77a4d5f-dfc9-4b0e-ab5f-9b24baaffde2/,Ville de Marseille Saint Gabriel CM2,,11/20/2017 0:00,10.0000000,12.0000000,43.280123000000,5.352473000000,,anse de la fausse de la monnaie,45902,observation-c77a4d5f-dfc9-4b0e-ab5f-9b24baaffde2,https://biolit.fr/observations/observation-c77a4d5f-dfc9-4b0e-ab5f-9b24baaffde2/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Praire commune_Venus verrucosa vue dessous-scaled.jpg,,TRUE, +N1,60130,sortie-552e8136-1502-4ffc-a45d-a49977843836,https://biolit.fr/sorties/sortie-552e8136-1502-4ffc-a45d-a49977843836/,Ville de Marseille Saint Gabriel CM2,,11/20/2017 0:00,10.0000000,12.0000000,43.279792000000,5.352463000000,,ance de la fausse monaie,45904,observation-552e8136-1502-4ffc-a45d-a49977843836,https://biolit.fr/observations/observation-552e8136-1502-4ffc-a45d-a49977843836/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Praire commune_Venus verrucosa vue dessus-scaled.jpg,,TRUE, +N1,60131,sortie-725a20c7-bdf9-40d2-b8a4-2e257ca4ddd4,https://biolit.fr/sorties/sortie-725a20c7-bdf9-40d2-b8a4-2e257ca4ddd4/,Phil,,12/03/2017,13.0:55,14.0000000,47.854392000000,-3.979313000000,,Fouesnant - Finistère,45906,observation-725a20c7-bdf9-40d2-b8a4-2e257ca4ddd4,https://biolit.fr/observations/observation-725a20c7-bdf9-40d2-b8a4-2e257ca4ddd4/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1090662_0.JPG,,TRUE, +N1,60131,sortie-725a20c7-bdf9-40d2-b8a4-2e257ca4ddd4,https://biolit.fr/sorties/sortie-725a20c7-bdf9-40d2-b8a4-2e257ca4ddd4/,Phil,,12/03/2017,13.0:55,14.0000000,47.854392000000,-3.979313000000,,Fouesnant - Finistère,45908,observation-725a20c7-bdf9-40d2-b8a4-2e257ca4ddd4-2,https://biolit.fr/observations/observation-725a20c7-bdf9-40d2-b8a4-2e257ca4ddd4-2/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1090663_0.JPG,,TRUE, +N1,60131,sortie-725a20c7-bdf9-40d2-b8a4-2e257ca4ddd4,https://biolit.fr/sorties/sortie-725a20c7-bdf9-40d2-b8a4-2e257ca4ddd4/,Phil,,12/03/2017,13.0:55,14.0000000,47.854392000000,-3.979313000000,,Fouesnant - Finistère,45910,observation-725a20c7-bdf9-40d2-b8a4-2e257ca4ddd4-3,https://biolit.fr/observations/observation-725a20c7-bdf9-40d2-b8a4-2e257ca4ddd4-3/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1090661_0.JPG,,TRUE, +N1,60132,sortie-47165e19-3f4b-472a-a21d-14d82f4a414b,https://biolit.fr/sorties/sortie-47165e19-3f4b-472a-a21d-14d82f4a414b/,Phil,,12/11/2017,12.0000000,12.0:45,47.792378000000,-4.292985000000,,Le Guilvinec - Finistère,45912,observation-47165e19-3f4b-472a-a21d-14d82f4a414b,https://biolit.fr/observations/observation-47165e19-3f4b-472a-a21d-14d82f4a414b/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/2023/07/P1090670.JPG,,TRUE, +N1,60132,sortie-47165e19-3f4b-472a-a21d-14d82f4a414b,https://biolit.fr/sorties/sortie-47165e19-3f4b-472a-a21d-14d82f4a414b/,Phil,,12/11/2017,12.0000000,12.0:45,47.792378000000,-4.292985000000,,Le Guilvinec - Finistère,45914,observation-47165e19-3f4b-472a-a21d-14d82f4a414b-2,https://biolit.fr/observations/observation-47165e19-3f4b-472a-a21d-14d82f4a414b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090672.JPG,,FALSE, +N1,60133,sortie-30d24843-4fa7-4714-98af-3fb7d44f59b1,https://biolit.fr/sorties/sortie-30d24843-4fa7-4714-98af-3fb7d44f59b1/,Phil,,12/03/2017,13.0000000,13.0:15,47.852049000000,-3.976497000000,,Fouesnant - Finistère,45916,observation-30d24843-4fa7-4714-98af-3fb7d44f59b1,https://biolit.fr/observations/observation-30d24843-4fa7-4714-98af-3fb7d44f59b1/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/P1090560.JPG,,TRUE, +N1,60133,sortie-30d24843-4fa7-4714-98af-3fb7d44f59b1,https://biolit.fr/sorties/sortie-30d24843-4fa7-4714-98af-3fb7d44f59b1/,Phil,,12/03/2017,13.0000000,13.0:15,47.852049000000,-3.976497000000,,Fouesnant - Finistère,45918,observation-30d24843-4fa7-4714-98af-3fb7d44f59b1-2,https://biolit.fr/observations/observation-30d24843-4fa7-4714-98af-3fb7d44f59b1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090562.JPG,,FALSE, +N1,60133,sortie-30d24843-4fa7-4714-98af-3fb7d44f59b1,https://biolit.fr/sorties/sortie-30d24843-4fa7-4714-98af-3fb7d44f59b1/,Phil,,12/03/2017,13.0000000,13.0:15,47.852049000000,-3.976497000000,,Fouesnant - Finistère,45920,observation-30d24843-4fa7-4714-98af-3fb7d44f59b1-3,https://biolit.fr/observations/observation-30d24843-4fa7-4714-98af-3fb7d44f59b1-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090567.JPG,,FALSE, +N1,60133,sortie-30d24843-4fa7-4714-98af-3fb7d44f59b1,https://biolit.fr/sorties/sortie-30d24843-4fa7-4714-98af-3fb7d44f59b1/,Phil,,12/03/2017,13.0000000,13.0:15,47.852049000000,-3.976497000000,,Fouesnant - Finistère,45922,observation-30d24843-4fa7-4714-98af-3fb7d44f59b1-4,https://biolit.fr/observations/observation-30d24843-4fa7-4714-98af-3fb7d44f59b1-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090568.JPG,,FALSE, +N1,60133,sortie-30d24843-4fa7-4714-98af-3fb7d44f59b1,https://biolit.fr/sorties/sortie-30d24843-4fa7-4714-98af-3fb7d44f59b1/,Phil,,12/03/2017,13.0000000,13.0:15,47.852049000000,-3.976497000000,,Fouesnant - Finistère,45924,observation-30d24843-4fa7-4714-98af-3fb7d44f59b1-5,https://biolit.fr/observations/observation-30d24843-4fa7-4714-98af-3fb7d44f59b1-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090570.JPG,,FALSE, +N1,60133,sortie-30d24843-4fa7-4714-98af-3fb7d44f59b1,https://biolit.fr/sorties/sortie-30d24843-4fa7-4714-98af-3fb7d44f59b1/,Phil,,12/03/2017,13.0000000,13.0:15,47.852049000000,-3.976497000000,,Fouesnant - Finistère,45926,observation-30d24843-4fa7-4714-98af-3fb7d44f59b1-6,https://biolit.fr/observations/observation-30d24843-4fa7-4714-98af-3fb7d44f59b1-6/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/P1090573.JPG,,TRUE, +N1,60134,sortie-ef5615ed-28e4-441d-b010-129b12366a58,https://biolit.fr/sorties/sortie-ef5615ed-28e4-441d-b010-129b12366a58/,CPIE Littoral Basque,,05/10/2017,10.0000000,12.0000000,43.381330000000,-1.733099000000,,Haiçabia,45928,observation-ef5615ed-28e4-441d-b010-129b12366a58,https://biolit.fr/observations/observation-ef5615ed-28e4-441d-b010-129b12366a58/,,,,https://biolit.fr/wp-content/uploads/2023/07/File387-scaled.jpg,,FALSE, +N1,60134,sortie-ef5615ed-28e4-441d-b010-129b12366a58,https://biolit.fr/sorties/sortie-ef5615ed-28e4-441d-b010-129b12366a58/,CPIE Littoral Basque,,05/10/2017,10.0000000,12.0000000,43.381330000000,-1.733099000000,,Haiçabia,45930,observation-ef5615ed-28e4-441d-b010-129b12366a58-2,https://biolit.fr/observations/observation-ef5615ed-28e4-441d-b010-129b12366a58-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/File386-scaled.jpg,,FALSE, +N1,60134,sortie-ef5615ed-28e4-441d-b010-129b12366a58,https://biolit.fr/sorties/sortie-ef5615ed-28e4-441d-b010-129b12366a58/,CPIE Littoral Basque,,05/10/2017,10.0000000,12.0000000,43.381330000000,-1.733099000000,,Haiçabia,45932,observation-ef5615ed-28e4-441d-b010-129b12366a58-3,https://biolit.fr/observations/observation-ef5615ed-28e4-441d-b010-129b12366a58-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/File393-scaled.jpg,,FALSE, +N1,60134,sortie-ef5615ed-28e4-441d-b010-129b12366a58,https://biolit.fr/sorties/sortie-ef5615ed-28e4-441d-b010-129b12366a58/,CPIE Littoral Basque,,05/10/2017,10.0000000,12.0000000,43.381330000000,-1.733099000000,,Haiçabia,45934,observation-ef5615ed-28e4-441d-b010-129b12366a58-4,https://biolit.fr/observations/observation-ef5615ed-28e4-441d-b010-129b12366a58-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/File394-scaled.jpg,,FALSE, +N1,60134,sortie-ef5615ed-28e4-441d-b010-129b12366a58,https://biolit.fr/sorties/sortie-ef5615ed-28e4-441d-b010-129b12366a58/,CPIE Littoral Basque,,05/10/2017,10.0000000,12.0000000,43.381330000000,-1.733099000000,,Haiçabia,45936,observation-ef5615ed-28e4-441d-b010-129b12366a58-5,https://biolit.fr/observations/observation-ef5615ed-28e4-441d-b010-129b12366a58-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/File402-scaled.jpg,,FALSE, +N1,60135,sortie-2e1d7485-dee2-40f5-914d-22b39e2dbbef,https://biolit.fr/sorties/sortie-2e1d7485-dee2-40f5-914d-22b39e2dbbef/,CPIE Littoral Basque,,4/26/2017 0:00,10.0000000,12.0000000,43.381108000000,-1.73296500000,,Haiçabia,45938,observation-2e1d7485-dee2-40f5-914d-22b39e2dbbef,https://biolit.fr/observations/observation-2e1d7485-dee2-40f5-914d-22b39e2dbbef/,,,,https://biolit.fr/wp-content/uploads/2023/07/CPIELB_Crique_Haizabia_26avril2017_3-scaled.jpg,,FALSE, +N1,60135,sortie-2e1d7485-dee2-40f5-914d-22b39e2dbbef,https://biolit.fr/sorties/sortie-2e1d7485-dee2-40f5-914d-22b39e2dbbef/,CPIE Littoral Basque,,4/26/2017 0:00,10.0000000,12.0000000,43.381108000000,-1.73296500000,,Haiçabia,45940,observation-2e1d7485-dee2-40f5-914d-22b39e2dbbef-2,https://biolit.fr/observations/observation-2e1d7485-dee2-40f5-914d-22b39e2dbbef-2/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P4260544-scaled.jpg,,TRUE, +N1,60135,sortie-2e1d7485-dee2-40f5-914d-22b39e2dbbef,https://biolit.fr/sorties/sortie-2e1d7485-dee2-40f5-914d-22b39e2dbbef/,CPIE Littoral Basque,,4/26/2017 0:00,10.0000000,12.0000000,43.381108000000,-1.73296500000,,Haiçabia,45942,observation-2e1d7485-dee2-40f5-914d-22b39e2dbbef-3,https://biolit.fr/observations/observation-2e1d7485-dee2-40f5-914d-22b39e2dbbef-3/,Ophioderma longicaudum,Ophiure lisse,,https://biolit.fr/wp-content/uploads/2023/07/P4260552-scaled.jpg,,TRUE, +N1,60135,sortie-2e1d7485-dee2-40f5-914d-22b39e2dbbef,https://biolit.fr/sorties/sortie-2e1d7485-dee2-40f5-914d-22b39e2dbbef/,CPIE Littoral Basque,,4/26/2017 0:00,10.0000000,12.0000000,43.381108000000,-1.73296500000,,Haiçabia,45944,observation-2e1d7485-dee2-40f5-914d-22b39e2dbbef-4,https://biolit.fr/observations/observation-2e1d7485-dee2-40f5-914d-22b39e2dbbef-4/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/P4260554-scaled.jpg,,TRUE, +N1,60135,sortie-2e1d7485-dee2-40f5-914d-22b39e2dbbef,https://biolit.fr/sorties/sortie-2e1d7485-dee2-40f5-914d-22b39e2dbbef/,CPIE Littoral Basque,,4/26/2017 0:00,10.0000000,12.0000000,43.381108000000,-1.73296500000,,Haiçabia,45946,observation-2e1d7485-dee2-40f5-914d-22b39e2dbbef-5,https://biolit.fr/observations/observation-2e1d7485-dee2-40f5-914d-22b39e2dbbef-5/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P4260553-scaled.jpg,,TRUE, +N1,60135,sortie-2e1d7485-dee2-40f5-914d-22b39e2dbbef,https://biolit.fr/sorties/sortie-2e1d7485-dee2-40f5-914d-22b39e2dbbef/,CPIE Littoral Basque,,4/26/2017 0:00,10.0000000,12.0000000,43.381108000000,-1.73296500000,,Haiçabia,45948,observation-2e1d7485-dee2-40f5-914d-22b39e2dbbef-6,https://biolit.fr/observations/observation-2e1d7485-dee2-40f5-914d-22b39e2dbbef-6/,Lepadogaster lepadogaster,Porte-écuelle de Gouan,,https://biolit.fr/wp-content/uploads/2023/07/P4260555-scaled.jpg,,TRUE, +N1,60135,sortie-2e1d7485-dee2-40f5-914d-22b39e2dbbef,https://biolit.fr/sorties/sortie-2e1d7485-dee2-40f5-914d-22b39e2dbbef/,CPIE Littoral Basque,,4/26/2017 0:00,10.0000000,12.0000000,43.381108000000,-1.73296500000,,Haiçabia,45950,observation-2e1d7485-dee2-40f5-914d-22b39e2dbbef-7,https://biolit.fr/observations/observation-2e1d7485-dee2-40f5-914d-22b39e2dbbef-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P4260561-scaled.jpg,,FALSE, +N1,60135,sortie-2e1d7485-dee2-40f5-914d-22b39e2dbbef,https://biolit.fr/sorties/sortie-2e1d7485-dee2-40f5-914d-22b39e2dbbef/,CPIE Littoral Basque,,4/26/2017 0:00,10.0000000,12.0000000,43.381108000000,-1.73296500000,,Haiçabia,45952,observation-2e1d7485-dee2-40f5-914d-22b39e2dbbef-8,https://biolit.fr/observations/observation-2e1d7485-dee2-40f5-914d-22b39e2dbbef-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P4260564-scaled.jpg,,FALSE, +N1,60136,sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee,https://biolit.fr/sorties/sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee/,CPIE Littoral Basque,,3/29/2017 0:00,14.0000000,15.0000000,43.381003000000,-1.732939000000,,Haiçabia,45954,observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee,https://biolit.fr/observations/observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee/,,,,https://biolit.fr/wp-content/uploads/2023/07/File218-scaled.jpg,,FALSE, +N1,60136,sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee,https://biolit.fr/sorties/sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee/,CPIE Littoral Basque,,3/29/2017 0:00,14.0000000,15.0000000,43.381003000000,-1.732939000000,,Haiçabia,45956,observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-2,https://biolit.fr/observations/observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-2/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/File236-scaled.jpg,,TRUE, +N1,60136,sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee,https://biolit.fr/sorties/sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee/,CPIE Littoral Basque,,3/29/2017 0:00,14.0000000,15.0000000,43.381003000000,-1.732939000000,,Haiçabia,45958,observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-3,https://biolit.fr/observations/observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-3/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/File279-scaled.jpg,,TRUE, +N1,60136,sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee,https://biolit.fr/sorties/sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee/,CPIE Littoral Basque,,3/29/2017 0:00,14.0000000,15.0000000,43.381003000000,-1.732939000000,,Haiçabia,45960,observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-4,https://biolit.fr/observations/observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-4/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/2023/07/File285-scaled.jpg,,TRUE, +N1,60136,sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee,https://biolit.fr/sorties/sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee/,CPIE Littoral Basque,,3/29/2017 0:00,14.0000000,15.0000000,43.381003000000,-1.732939000000,,Haiçabia,45962,observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-5,https://biolit.fr/observations/observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-5/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/File294-scaled.jpg,,TRUE, +N1,60136,sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee,https://biolit.fr/sorties/sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee/,CPIE Littoral Basque,,3/29/2017 0:00,14.0000000,15.0000000,43.381003000000,-1.732939000000,,Haiçabia,45964,observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-6,https://biolit.fr/observations/observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3290513.JPG,,FALSE, +N1,60136,sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee,https://biolit.fr/sorties/sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee/,CPIE Littoral Basque,,3/29/2017 0:00,14.0000000,15.0000000,43.381003000000,-1.732939000000,,Haiçabia,45966,observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-7,https://biolit.fr/observations/observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3290472.JPG,,FALSE, +N1,60136,sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee,https://biolit.fr/sorties/sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee/,CPIE Littoral Basque,,3/29/2017 0:00,14.0000000,15.0000000,43.381003000000,-1.732939000000,,Haiçabia,45968,observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-8,https://biolit.fr/observations/observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-8/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P3290495-scaled.jpg,,TRUE, +N1,60136,sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee,https://biolit.fr/sorties/sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee/,CPIE Littoral Basque,,3/29/2017 0:00,14.0000000,15.0000000,43.381003000000,-1.732939000000,,Haiçabia,45970,observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-9,https://biolit.fr/observations/observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-9/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/P3290455.JPG,,TRUE, +N1,60136,sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee,https://biolit.fr/sorties/sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee/,CPIE Littoral Basque,,3/29/2017 0:00,14.0000000,15.0000000,43.381003000000,-1.732939000000,,Haiçabia,45972,observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-10,https://biolit.fr/observations/observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3290482.JPG,,FALSE, +N1,60136,sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee,https://biolit.fr/sorties/sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee/,CPIE Littoral Basque,,3/29/2017 0:00,14.0000000,15.0000000,43.381003000000,-1.732939000000,,Haiçabia,45974,observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-11,https://biolit.fr/observations/observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3290430-scaled.jpg,,FALSE, +N1,60137,sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0,https://biolit.fr/sorties/sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0/,CPIE Littoral Basque,,03/01/2017,14.0000000,15.0000000,43.381026000000,-1.732949000000,,Haiçabia,45976,observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0,https://biolit.fr/observations/observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0/,Coryphoblennius galerita,Blennie coiffée,,https://biolit.fr/wp-content/uploads/2023/07/2017 03 01 Haizabia (35)-scaled.jpg,,TRUE, +N1,60137,sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0,https://biolit.fr/sorties/sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0/,CPIE Littoral Basque,,03/01/2017,14.0000000,15.0000000,43.381026000000,-1.732949000000,,Haiçabia,45978,observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-2,https://biolit.fr/observations/observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/2017 03 01 Haizabia (33)-scaled.jpg,,FALSE, +N1,60137,sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0,https://biolit.fr/sorties/sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0/,CPIE Littoral Basque,,03/01/2017,14.0000000,15.0000000,43.381026000000,-1.732949000000,,Haiçabia,45980,observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-3,https://biolit.fr/observations/observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/2017 03 01 Haizabia (27)-scaled.jpg,,FALSE, +N1,60137,sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0,https://biolit.fr/sorties/sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0/,CPIE Littoral Basque,,03/01/2017,14.0000000,15.0000000,43.381026000000,-1.732949000000,,Haiçabia,45982,observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-4,https://biolit.fr/observations/observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-4/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0612.JPG,,TRUE, +N1,60137,sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0,https://biolit.fr/sorties/sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0/,CPIE Littoral Basque,,03/01/2017,14.0000000,15.0000000,43.381026000000,-1.732949000000,,Haiçabia,45984,observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-5,https://biolit.fr/observations/observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0639.JPG,,FALSE, +N1,60137,sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0,https://biolit.fr/sorties/sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0/,CPIE Littoral Basque,,03/01/2017,14.0000000,15.0000000,43.381026000000,-1.732949000000,,Haiçabia,45986,observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-6,https://biolit.fr/observations/observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0641_0-scaled.jpg,,FALSE, +N1,60137,sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0,https://biolit.fr/sorties/sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0/,CPIE Littoral Basque,,03/01/2017,14.0000000,15.0000000,43.381026000000,-1.732949000000,,Haiçabia,45988,observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-7,https://biolit.fr/observations/observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0656.JPG,,FALSE, +N1,60137,sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0,https://biolit.fr/sorties/sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0/,CPIE Littoral Basque,,03/01/2017,14.0000000,15.0000000,43.381026000000,-1.732949000000,,Haiçabia,45990,observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-8,https://biolit.fr/observations/observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-8/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0667.JPG,,TRUE, +N1,60137,sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0,https://biolit.fr/sorties/sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0/,CPIE Littoral Basque,,03/01/2017,14.0000000,15.0000000,43.381026000000,-1.732949000000,,Haiçabia,45992,observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-9,https://biolit.fr/observations/observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-9/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P3010409-scaled.jpg,,TRUE, +N1,60137,sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0,https://biolit.fr/sorties/sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0/,CPIE Littoral Basque,,03/01/2017,14.0000000,15.0000000,43.381026000000,-1.732949000000,,Haiçabia,45994,observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-10,https://biolit.fr/observations/observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3010415-scaled.jpg,,FALSE, +N1,60138,sortie-bb501e6d-8940-4c46-aeb4-5b489e67183e,https://biolit.fr/sorties/sortie-bb501e6d-8940-4c46-aeb4-5b489e67183e/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.239895000000,5.362427000000,,Plage du bain des dames,45996,observation-bb501e6d-8940-4c46-aeb4-5b489e67183e,https://biolit.fr/observations/observation-bb501e6d-8940-4c46-aeb4-5b489e67183e/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/Cerithe goumier-Cerithium vulgatum.JPG,,TRUE, +N1,60139,sortie-d4f0fa83-3549-4a3a-9346-1f93a3e64a78,https://biolit.fr/sorties/sortie-d4f0fa83-3549-4a3a-9346-1f93a3e64a78/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.239856000000,5.362427000000,,Plage du bain des dames,45997,observation-d4f0fa83-3549-4a3a-9346-1f93a3e64a78,https://biolit.fr/observations/observation-d4f0fa83-3549-4a3a-9346-1f93a3e64a78/,Limaria hians,Lime bâillante,,https://biolit.fr/wp-content/uploads/2023/07/Lime Baillante-Limaria hians interieur.jpg,,TRUE, +N1,60140,sortie-5e0df574-ffea-4d1b-8c3a-eba126ed7739,https://biolit.fr/sorties/sortie-5e0df574-ffea-4d1b-8c3a-eba126ed7739/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.24001400000,5.362482000000,,plage de bain des dames,46001,observation-5e0df574-ffea-4d1b-8c3a-eba126ed7739-2,https://biolit.fr/observations/observation-5e0df574-ffea-4d1b-8c3a-eba126ed7739-2/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/2023/07/Oreil de Neptune- Haliotis tuberculata lamellosa interieur_0-scaled.jpg,,TRUE, +N1,60141,sortie-8d21ae01-d400-4240-b350-69e32817f4f0,https://biolit.fr/sorties/sortie-8d21ae01-d400-4240-b350-69e32817f4f0/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.239881000000,5.36246000000,,Plage du Bain des Dames,46003,observation-8d21ae01-d400-4240-b350-69e32817f4f0,https://biolit.fr/observations/observation-8d21ae01-d400-4240-b350-69e32817f4f0/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Cormaillot perceur-Ocenebra erinaceus extérieur-rotated.jpg,,TRUE, +N1,60141,sortie-8d21ae01-d400-4240-b350-69e32817f4f0,https://biolit.fr/sorties/sortie-8d21ae01-d400-4240-b350-69e32817f4f0/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.239881000000,5.36246000000,,Plage du Bain des Dames,46005,observation-8d21ae01-d400-4240-b350-69e32817f4f0-2,https://biolit.fr/observations/observation-8d21ae01-d400-4240-b350-69e32817f4f0-2/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Cormaillot perceur-Ocenebra erinaceus interieur-rotated.jpg,,TRUE, +N1,60142,sortie-77875e76-5644-477e-a20b-c0b35118ca27,https://biolit.fr/sorties/sortie-77875e76-5644-477e-a20b-c0b35118ca27/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.239971000000,5.362495000000,,plage du bain des dames,46007,observation-77875e76-5644-477e-a20b-c0b35118ca27,https://biolit.fr/observations/observation-77875e76-5644-477e-a20b-c0b35118ca27/,Limaria hians,Lime bâillante,,https://biolit.fr/wp-content/uploads/2023/07/Lime Baillante-Limaria hians exterieur.jpg,,TRUE, +N1,60143,sortie-48fe6b32-f022-4cd7-a839-344c27f409f2,https://biolit.fr/sorties/sortie-48fe6b32-f022-4cd7-a839-344c27f409f2/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.239967000000,5.362461000000,,PLAGE DU BAIN DES DAMES,46009,observation-48fe6b32-f022-4cd7-a839-344c27f409f2,https://biolit.fr/observations/observation-48fe6b32-f022-4cd7-a839-344c27f409f2/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/araignée de mer- Maja sp-scaled.jpg,,TRUE, +N1,60144,sortie-bfb31f18-5b99-4a51-9ea8-2b51e39920a2,https://biolit.fr/sorties/sortie-bfb31f18-5b99-4a51-9ea8-2b51e39920a2/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.23981700000,5.362499000000,,plage du bain des dames,46011,observation-bfb31f18-5b99-4a51-9ea8-2b51e39920a2,https://biolit.fr/observations/observation-bfb31f18-5b99-4a51-9ea8-2b51e39920a2/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Praire comune- venus verrucosa exterieur-scaled.jpg,,TRUE, +N1,60144,sortie-bfb31f18-5b99-4a51-9ea8-2b51e39920a2,https://biolit.fr/sorties/sortie-bfb31f18-5b99-4a51-9ea8-2b51e39920a2/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.23981700000,5.362499000000,,plage du bain des dames,46013,observation-bfb31f18-5b99-4a51-9ea8-2b51e39920a2-2,https://biolit.fr/observations/observation-bfb31f18-5b99-4a51-9ea8-2b51e39920a2-2/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Praire comune- venus verrucosa interieur-scaled.jpg,,TRUE, +N1,60145,sortie-3f45036e-efc1-4d8c-99e2-d2a9af6fe77e,https://biolit.fr/sorties/sortie-3f45036e-efc1-4d8c-99e2-d2a9af6fe77e/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.239865000000,5.36246800000,,Plage du bain des dames,46015,observation-3f45036e-efc1-4d8c-99e2-d2a9af6fe77e,https://biolit.fr/observations/observation-3f45036e-efc1-4d8c-99e2-d2a9af6fe77e/,,,,https://biolit.fr/wp-content/uploads/2023/07/étoile de mer peigne- Astropecten sp-scaled.jpg,,FALSE, +N1,60145,sortie-3f45036e-efc1-4d8c-99e2-d2a9af6fe77e,https://biolit.fr/sorties/sortie-3f45036e-efc1-4d8c-99e2-d2a9af6fe77e/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.239865000000,5.36246800000,,Plage du bain des dames,46017,observation-3f45036e-efc1-4d8c-99e2-d2a9af6fe77e-2,https://biolit.fr/observations/observation-3f45036e-efc1-4d8c-99e2-d2a9af6fe77e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Irus irus-rotated.jpg,,FALSE, +N1,60146,sortie-fec55449-614a-4ebf-b19c-6d382a55e15e,https://biolit.fr/sorties/sortie-fec55449-614a-4ebf-b19c-6d382a55e15e/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.239918000000,5.362457000000,,Plage du bain des dames ,46019,observation-fec55449-614a-4ebf-b19c-6d382a55e15e,https://biolit.fr/observations/observation-fec55449-614a-4ebf-b19c-6d382a55e15e/,,,,,,FALSE, +N1,60146,sortie-fec55449-614a-4ebf-b19c-6d382a55e15e,https://biolit.fr/sorties/sortie-fec55449-614a-4ebf-b19c-6d382a55e15e/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.239918000000,5.362457000000,,Plage du bain des dames ,46020,observation-fec55449-614a-4ebf-b19c-6d382a55e15e-2,https://biolit.fr/observations/observation-fec55449-614a-4ebf-b19c-6d382a55e15e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge de mer-Spongia sp-scaled.jpg,,FALSE, +N1,60147,sortie-56b456f7-8f82-4ba5-b07d-a5c051bf9189,https://biolit.fr/sorties/sortie-56b456f7-8f82-4ba5-b07d-a5c051bf9189/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.239956000000,5.362491000000,,la plage du bain des dames,46022,observation-56b456f7-8f82-4ba5-b07d-a5c051bf9189,https://biolit.fr/observations/observation-56b456f7-8f82-4ba5-b07d-a5c051bf9189/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/Lima ecailleuse- Lima lima extérieur-scaled.jpg,,TRUE, +N1,60147,sortie-56b456f7-8f82-4ba5-b07d-a5c051bf9189,https://biolit.fr/sorties/sortie-56b456f7-8f82-4ba5-b07d-a5c051bf9189/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.239956000000,5.362491000000,,la plage du bain des dames,46024,observation-56b456f7-8f82-4ba5-b07d-a5c051bf9189-2,https://biolit.fr/observations/observation-56b456f7-8f82-4ba5-b07d-a5c051bf9189-2/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/Lima ecailleuse- Lima lima intérieur-scaled.jpg,,TRUE, +N1,60148,sortie-52e7fbed-3d80-4c04-a817-64e8ebf58fdb,https://biolit.fr/sorties/sortie-52e7fbed-3d80-4c04-a817-64e8ebf58fdb/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.239956000000,5.362491000000,,la plage du bain des dames,46026,observation-52e7fbed-3d80-4c04-a817-64e8ebf58fdb,https://biolit.fr/observations/observation-52e7fbed-3d80-4c04-a817-64e8ebf58fdb/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/Lima ecailleuse- Lima lima extérieur-scaled.jpg,,TRUE, +N1,60148,sortie-52e7fbed-3d80-4c04-a817-64e8ebf58fdb,https://biolit.fr/sorties/sortie-52e7fbed-3d80-4c04-a817-64e8ebf58fdb/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.239956000000,5.362491000000,,la plage du bain des dames,46027,observation-52e7fbed-3d80-4c04-a817-64e8ebf58fdb-2,https://biolit.fr/observations/observation-52e7fbed-3d80-4c04-a817-64e8ebf58fdb-2/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/Lima ecailleuse- Lima lima intérieur-scaled.jpg,,TRUE, +N1,60149,sortie-53acb0ab-cd4e-49a7-a5e2-6d5662fdecae,https://biolit.fr/sorties/sortie-53acb0ab-cd4e-49a7-a5e2-6d5662fdecae/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.23991400000,5.362478000000,,plage bain des dames,46028,observation-53acb0ab-cd4e-49a7-a5e2-6d5662fdecae,https://biolit.fr/observations/observation-53acb0ab-cd4e-49a7-a5e2-6d5662fdecae/,,,,https://biolit.fr/wp-content/uploads/2023/07/troque-calliostoma sp-scaled.jpg,,FALSE, +N1,60149,sortie-53acb0ab-cd4e-49a7-a5e2-6d5662fdecae,https://biolit.fr/sorties/sortie-53acb0ab-cd4e-49a7-a5e2-6d5662fdecae/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.23991400000,5.362478000000,,plage bain des dames,46030,observation-53acb0ab-cd4e-49a7-a5e2-6d5662fdecae-2,https://biolit.fr/observations/observation-53acb0ab-cd4e-49a7-a5e2-6d5662fdecae-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/troque-calliostoma sp.ouverture-scaled.jpg,,FALSE, +N1,60150,sortie-15545ae5-2199-46e2-b298-9505ba1f99fa,https://biolit.fr/sorties/sortie-15545ae5-2199-46e2-b298-9505ba1f99fa/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.239694000000,5.36246200000,,la plage du bain des dames,46032,observation-15545ae5-2199-46e2-b298-9505ba1f99fa,https://biolit.fr/observations/observation-15545ae5-2199-46e2-b298-9505ba1f99fa/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/Arche de Noé-Arca noae extérieur-scaled.jpg,,TRUE, +N1,60151,sortie-3c0519e9-105e-48af-b62d-97dc4171ae3a,https://biolit.fr/sorties/sortie-3c0519e9-105e-48af-b62d-97dc4171ae3a/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.239905000000,5.362451000000,,Plage du bain des dames,46034,observation-3c0519e9-105e-48af-b62d-97dc4171ae3a,https://biolit.fr/observations/observation-3c0519e9-105e-48af-b62d-97dc4171ae3a/,,,,https://biolit.fr/wp-content/uploads/2023/07/PEYSSONNELIA-Peyssonnelia squamaria.JPG,,FALSE, +N1,60152,sortie-bb1bcfd3-3696-43a6-bab7-d103d0e70c5d,https://biolit.fr/sorties/sortie-bb1bcfd3-3696-43a6-bab7-d103d0e70c5d/,Phil,,12/03/2017,13.0:15,13.0000000,47.852534000000,-3.977145000000,,Fouesnant - Finistère,46035,observation-bb1bcfd3-3696-43a6-bab7-d103d0e70c5d,https://biolit.fr/observations/observation-bb1bcfd3-3696-43a6-bab7-d103d0e70c5d/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/P1090575.JPG,,TRUE, +N1,60152,sortie-bb1bcfd3-3696-43a6-bab7-d103d0e70c5d,https://biolit.fr/sorties/sortie-bb1bcfd3-3696-43a6-bab7-d103d0e70c5d/,Phil,,12/03/2017,13.0:15,13.0000000,47.852534000000,-3.977145000000,,Fouesnant - Finistère,46037,observation-bb1bcfd3-3696-43a6-bab7-d103d0e70c5d-2,https://biolit.fr/observations/observation-bb1bcfd3-3696-43a6-bab7-d103d0e70c5d-2/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/P1090576.JPG,,TRUE, +N1,60152,sortie-bb1bcfd3-3696-43a6-bab7-d103d0e70c5d,https://biolit.fr/sorties/sortie-bb1bcfd3-3696-43a6-bab7-d103d0e70c5d/,Phil,,12/03/2017,13.0:15,13.0000000,47.852534000000,-3.977145000000,,Fouesnant - Finistère,46039,observation-bb1bcfd3-3696-43a6-bab7-d103d0e70c5d-3,https://biolit.fr/observations/observation-bb1bcfd3-3696-43a6-bab7-d103d0e70c5d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090580.JPG,,FALSE, +N1,60152,sortie-bb1bcfd3-3696-43a6-bab7-d103d0e70c5d,https://biolit.fr/sorties/sortie-bb1bcfd3-3696-43a6-bab7-d103d0e70c5d/,Phil,,12/03/2017,13.0:15,13.0000000,47.852534000000,-3.977145000000,,Fouesnant - Finistère,46041,observation-bb1bcfd3-3696-43a6-bab7-d103d0e70c5d-4,https://biolit.fr/observations/observation-bb1bcfd3-3696-43a6-bab7-d103d0e70c5d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090578.JPG,,FALSE, +N1,60153,sortie-a88892f1-b08a-425e-9853-b0b57a5fa032,https://biolit.fr/sorties/sortie-a88892f1-b08a-425e-9853-b0b57a5fa032/,Phil,,12/11/2017,12.0000000,12.000005,47.792156000000,-4.293008000000,,Le Guilvinec - Finistère,46043,observation-a88892f1-b08a-425e-9853-b0b57a5fa032,https://biolit.fr/observations/observation-a88892f1-b08a-425e-9853-b0b57a5fa032/,Tringa totanus,Chevalier gambette,,https://biolit.fr/wp-content/uploads/2023/07/P1090784.JPG,,TRUE, +N1,60153,sortie-a88892f1-b08a-425e-9853-b0b57a5fa032,https://biolit.fr/sorties/sortie-a88892f1-b08a-425e-9853-b0b57a5fa032/,Phil,,12/11/2017,12.0000000,12.000005,47.792156000000,-4.293008000000,,Le Guilvinec - Finistère,46045,observation-a88892f1-b08a-425e-9853-b0b57a5fa032-2,https://biolit.fr/observations/observation-a88892f1-b08a-425e-9853-b0b57a5fa032-2/,Tringa totanus,Chevalier gambette,,https://biolit.fr/wp-content/uploads/2023/07/P1090787.JPG,,TRUE, +N1,60153,sortie-a88892f1-b08a-425e-9853-b0b57a5fa032,https://biolit.fr/sorties/sortie-a88892f1-b08a-425e-9853-b0b57a5fa032/,Phil,,12/11/2017,12.0000000,12.000005,47.792156000000,-4.293008000000,,Le Guilvinec - Finistère,46047,observation-a88892f1-b08a-425e-9853-b0b57a5fa032-3,https://biolit.fr/observations/observation-a88892f1-b08a-425e-9853-b0b57a5fa032-3/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/P1090804.JPG,,TRUE, +N1,60154,sortie-f6fcc134-9f7b-4489-994b-7b7ae5c315fc,https://biolit.fr/sorties/sortie-f6fcc134-9f7b-4489-994b-7b7ae5c315fc/,Phil,,12/03/2017,13.0000000,13.0:15,47.854066000000,-3.978458000000,,Fouesnant - Finistère,46049,observation-f6fcc134-9f7b-4489-994b-7b7ae5c315fc,https://biolit.fr/observations/observation-f6fcc134-9f7b-4489-994b-7b7ae5c315fc/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/P1090644_0.JPG,,TRUE, +N1,60154,sortie-f6fcc134-9f7b-4489-994b-7b7ae5c315fc,https://biolit.fr/sorties/sortie-f6fcc134-9f7b-4489-994b-7b7ae5c315fc/,Phil,,12/03/2017,13.0000000,13.0:15,47.854066000000,-3.978458000000,,Fouesnant - Finistère,46051,observation-f6fcc134-9f7b-4489-994b-7b7ae5c315fc-2,https://biolit.fr/observations/observation-f6fcc134-9f7b-4489-994b-7b7ae5c315fc-2/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/P1090646.JPG,,TRUE, +N1,60154,sortie-f6fcc134-9f7b-4489-994b-7b7ae5c315fc,https://biolit.fr/sorties/sortie-f6fcc134-9f7b-4489-994b-7b7ae5c315fc/,Phil,,12/03/2017,13.0000000,13.0:15,47.854066000000,-3.978458000000,,Fouesnant - Finistère,46053,observation-f6fcc134-9f7b-4489-994b-7b7ae5c315fc-3,https://biolit.fr/observations/observation-f6fcc134-9f7b-4489-994b-7b7ae5c315fc-3/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/P1090647.JPG,,TRUE, +N1,60155,sortie-5e4e6489-561c-47f9-bf34-61ba37e3af49,https://biolit.fr/sorties/sortie-5e4e6489-561c-47f9-bf34-61ba37e3af49/,Fleur,,12/09/2017,12.0000000,12.0000000,43.284548000000,5.31437800000,,"Ile de Ratonneau, Archipel du Frioul",46055,observation-5e4e6489-561c-47f9-bf34-61ba37e3af49,https://biolit.fr/observations/observation-5e4e6489-561c-47f9-bf34-61ba37e3af49/,Larus michahellis,Goéland leucophée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9621-scaled.jpg,,TRUE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46057,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9589-scaled.jpg,,FALSE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46059,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-2,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-2/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9593-scaled.jpg,,TRUE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46061,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-3,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9595-scaled.jpg,,FALSE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46063,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-4,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-4/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9596-scaled.jpg,,TRUE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46065,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-5,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-5/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9597-scaled.jpg,,TRUE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46067,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-6,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-6/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9600-scaled.jpg,,TRUE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46069,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-7,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-7/,Phymatolithon lenormandii,Algue encroûtante rouge de Lenormand,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9602-scaled.jpg,,TRUE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46071,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-8,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9604-scaled.jpg,,FALSE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46073,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-9,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-9/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9605-scaled.jpg,,TRUE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46075,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-10,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-10/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9606-scaled.jpg,,TRUE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46077,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-11,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9608-scaled.jpg,,FALSE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46079,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-12,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9609-scaled.jpg,,FALSE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46081,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-13,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-13/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9610-scaled.jpg,,TRUE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46083,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-14,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-14/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9611-scaled.jpg,,TRUE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46085,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-15,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9612-scaled.jpg,,FALSE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46087,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-16,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9613-scaled.jpg,,FALSE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46089,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-17,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9614-scaled.jpg,,FALSE, +N1,60157,sortie-bb23f865-1b7f-49cd-8757-0fbfdb5878f8,https://biolit.fr/sorties/sortie-bb23f865-1b7f-49cd-8757-0fbfdb5878f8/,Observe la nature,,11/30/2017 0:00,14.0000000,15.0000000,43.135283000000,5.756604000000,,Port de Plaisance de Bandol,46091,observation-bb23f865-1b7f-49cd-8757-0fbfdb5878f8,https://biolit.fr/observations/observation-bb23f865-1b7f-49cd-8757-0fbfdb5878f8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171130_100733.jpg,,FALSE, +N1,60158,sortie-f54e0e83-5f74-4bea-9e1a-6e951994f0bf,https://biolit.fr/sorties/sortie-f54e0e83-5f74-4bea-9e1a-6e951994f0bf/,Phil,,12/03/2017,12.0000000,12.0:55,47.853693000000,-3.978332000000,,Fouesnant - Finistère ,46093,observation-f54e0e83-5f74-4bea-9e1a-6e951994f0bf,https://biolit.fr/observations/observation-f54e0e83-5f74-4bea-9e1a-6e951994f0bf/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1090524.JPG,,TRUE, +N1,60158,sortie-f54e0e83-5f74-4bea-9e1a-6e951994f0bf,https://biolit.fr/sorties/sortie-f54e0e83-5f74-4bea-9e1a-6e951994f0bf/,Phil,,12/03/2017,12.0000000,12.0:55,47.853693000000,-3.978332000000,,Fouesnant - Finistère ,46095,observation-f54e0e83-5f74-4bea-9e1a-6e951994f0bf-2,https://biolit.fr/observations/observation-f54e0e83-5f74-4bea-9e1a-6e951994f0bf-2/,Calidris alba,Bécasseau sanderling,,https://biolit.fr/wp-content/uploads/2023/07/P1090499.JPG,,TRUE, +N1,60158,sortie-f54e0e83-5f74-4bea-9e1a-6e951994f0bf,https://biolit.fr/sorties/sortie-f54e0e83-5f74-4bea-9e1a-6e951994f0bf/,Phil,,12/03/2017,12.0000000,12.0:55,47.853693000000,-3.978332000000,,Fouesnant - Finistère ,46097,observation-f54e0e83-5f74-4bea-9e1a-6e951994f0bf-3,https://biolit.fr/observations/observation-f54e0e83-5f74-4bea-9e1a-6e951994f0bf-3/,Calidris alba,Bécasseau sanderling,,https://biolit.fr/wp-content/uploads/2023/07/P1090511.JPG,,TRUE, +N1,60158,sortie-f54e0e83-5f74-4bea-9e1a-6e951994f0bf,https://biolit.fr/sorties/sortie-f54e0e83-5f74-4bea-9e1a-6e951994f0bf/,Phil,,12/03/2017,12.0000000,12.0:55,47.853693000000,-3.978332000000,,Fouesnant - Finistère ,46099,observation-f54e0e83-5f74-4bea-9e1a-6e951994f0bf-4,https://biolit.fr/observations/observation-f54e0e83-5f74-4bea-9e1a-6e951994f0bf-4/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1090504.JPG,,TRUE, +N1,60158,sortie-f54e0e83-5f74-4bea-9e1a-6e951994f0bf,https://biolit.fr/sorties/sortie-f54e0e83-5f74-4bea-9e1a-6e951994f0bf/,Phil,,12/03/2017,12.0000000,12.0:55,47.853693000000,-3.978332000000,,Fouesnant - Finistère ,46101,observation-f54e0e83-5f74-4bea-9e1a-6e951994f0bf-5,https://biolit.fr/observations/observation-f54e0e83-5f74-4bea-9e1a-6e951994f0bf-5/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1090491.JPG,,TRUE, +N1,60158,sortie-f54e0e83-5f74-4bea-9e1a-6e951994f0bf,https://biolit.fr/sorties/sortie-f54e0e83-5f74-4bea-9e1a-6e951994f0bf/,Phil,,12/03/2017,12.0000000,12.0:55,47.853693000000,-3.978332000000,,Fouesnant - Finistère ,46103,observation-f54e0e83-5f74-4bea-9e1a-6e951994f0bf-6,https://biolit.fr/observations/observation-f54e0e83-5f74-4bea-9e1a-6e951994f0bf-6/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1090508.JPG,,TRUE, +N1,60159,sortie-7141530c-d891-4312-ab79-5e4524770960,https://biolit.fr/sorties/sortie-7141530c-d891-4312-ab79-5e4524770960/,Phil,,11/04/2017,18.0000000,18.0:25,47.803840000000,-4.375056000000,,Penmarc'h - Finistère,46105,observation-7141530c-d891-4312-ab79-5e4524770960,https://biolit.fr/observations/observation-7141530c-d891-4312-ab79-5e4524770960/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090344.JPG,,FALSE, +N1,60159,sortie-7141530c-d891-4312-ab79-5e4524770960,https://biolit.fr/sorties/sortie-7141530c-d891-4312-ab79-5e4524770960/,Phil,,11/04/2017,18.0000000,18.0:25,47.803840000000,-4.375056000000,,Penmarc'h - Finistère,46107,observation-7141530c-d891-4312-ab79-5e4524770960-2,https://biolit.fr/observations/observation-7141530c-d891-4312-ab79-5e4524770960-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090336.JPG,,FALSE, +N1,60159,sortie-7141530c-d891-4312-ab79-5e4524770960,https://biolit.fr/sorties/sortie-7141530c-d891-4312-ab79-5e4524770960/,Phil,,11/04/2017,18.0000000,18.0:25,47.803840000000,-4.375056000000,,Penmarc'h - Finistère,46109,observation-7141530c-d891-4312-ab79-5e4524770960-3,https://biolit.fr/observations/observation-7141530c-d891-4312-ab79-5e4524770960-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090334.JPG,,FALSE, +N1,60159,sortie-7141530c-d891-4312-ab79-5e4524770960,https://biolit.fr/sorties/sortie-7141530c-d891-4312-ab79-5e4524770960/,Phil,,11/04/2017,18.0000000,18.0:25,47.803840000000,-4.375056000000,,Penmarc'h - Finistère,46111,observation-7141530c-d891-4312-ab79-5e4524770960-4,https://biolit.fr/observations/observation-7141530c-d891-4312-ab79-5e4524770960-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090352.JPG,,FALSE, +N1,60159,sortie-7141530c-d891-4312-ab79-5e4524770960,https://biolit.fr/sorties/sortie-7141530c-d891-4312-ab79-5e4524770960/,Phil,,11/04/2017,18.0000000,18.0:25,47.803840000000,-4.375056000000,,Penmarc'h - Finistère,46113,observation-7141530c-d891-4312-ab79-5e4524770960-5,https://biolit.fr/observations/observation-7141530c-d891-4312-ab79-5e4524770960-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090357.JPG,,FALSE, +N1,60159,sortie-7141530c-d891-4312-ab79-5e4524770960,https://biolit.fr/sorties/sortie-7141530c-d891-4312-ab79-5e4524770960/,Phil,,11/04/2017,18.0000000,18.0:25,47.803840000000,-4.375056000000,,Penmarc'h - Finistère,46115,observation-7141530c-d891-4312-ab79-5e4524770960-6,https://biolit.fr/observations/observation-7141530c-d891-4312-ab79-5e4524770960-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090331.JPG,,FALSE, +N1,60160,sortie-cdeb4747-3c14-4234-beb5-1acc5c26c7cc,https://biolit.fr/sorties/sortie-cdeb4747-3c14-4234-beb5-1acc5c26c7cc/,Phil,,11/05/2017,13.0000000,13.0:15,47.796150000000,-4.180212000000,,Loctudy - Finistère,46117,observation-cdeb4747-3c14-4234-beb5-1acc5c26c7cc,https://biolit.fr/observations/observation-cdeb4747-3c14-4234-beb5-1acc5c26c7cc/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/P1090428.JPG,,TRUE, +N1,60160,sortie-cdeb4747-3c14-4234-beb5-1acc5c26c7cc,https://biolit.fr/sorties/sortie-cdeb4747-3c14-4234-beb5-1acc5c26c7cc/,Phil,,11/05/2017,13.0000000,13.0:15,47.796150000000,-4.180212000000,,Loctudy - Finistère,46119,observation-cdeb4747-3c14-4234-beb5-1acc5c26c7cc-2,https://biolit.fr/observations/observation-cdeb4747-3c14-4234-beb5-1acc5c26c7cc-2/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/P1090429.JPG,,TRUE, +N1,60160,sortie-cdeb4747-3c14-4234-beb5-1acc5c26c7cc,https://biolit.fr/sorties/sortie-cdeb4747-3c14-4234-beb5-1acc5c26c7cc/,Phil,,11/05/2017,13.0000000,13.0:15,47.796150000000,-4.180212000000,,Loctudy - Finistère,46121,observation-cdeb4747-3c14-4234-beb5-1acc5c26c7cc-3,https://biolit.fr/observations/observation-cdeb4747-3c14-4234-beb5-1acc5c26c7cc-3/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/P1090430.JPG,,TRUE, +N1,60160,sortie-cdeb4747-3c14-4234-beb5-1acc5c26c7cc,https://biolit.fr/sorties/sortie-cdeb4747-3c14-4234-beb5-1acc5c26c7cc/,Phil,,11/05/2017,13.0000000,13.0:15,47.796150000000,-4.180212000000,,Loctudy - Finistère,46123,observation-cdeb4747-3c14-4234-beb5-1acc5c26c7cc-4,https://biolit.fr/observations/observation-cdeb4747-3c14-4234-beb5-1acc5c26c7cc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090432.JPG,,FALSE, +N1,60161,sortie-a89adc0c-7f84-4086-ad2f-58ae4b8fff89,https://biolit.fr/sorties/sortie-a89adc0c-7f84-4086-ad2f-58ae4b8fff89/,Phil,,12/03/2017,12.0000000,12.0:55,47.852289000000,-3.977353000000,,Fouesnant - Finistère,46125,observation-a89adc0c-7f84-4086-ad2f-58ae4b8fff89,https://biolit.fr/observations/observation-a89adc0c-7f84-4086-ad2f-58ae4b8fff89/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090542.JPG,,FALSE, +N1,60161,sortie-a89adc0c-7f84-4086-ad2f-58ae4b8fff89,https://biolit.fr/sorties/sortie-a89adc0c-7f84-4086-ad2f-58ae4b8fff89/,Phil,,12/03/2017,12.0000000,12.0:55,47.852289000000,-3.977353000000,,Fouesnant - Finistère,46127,observation-a89adc0c-7f84-4086-ad2f-58ae4b8fff89-2,https://biolit.fr/observations/observation-a89adc0c-7f84-4086-ad2f-58ae4b8fff89-2/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1090537.JPG,,TRUE, +N1,60161,sortie-a89adc0c-7f84-4086-ad2f-58ae4b8fff89,https://biolit.fr/sorties/sortie-a89adc0c-7f84-4086-ad2f-58ae4b8fff89/,Phil,,12/03/2017,12.0000000,12.0:55,47.852289000000,-3.977353000000,,Fouesnant - Finistère,46129,observation-a89adc0c-7f84-4086-ad2f-58ae4b8fff89-3,https://biolit.fr/observations/observation-a89adc0c-7f84-4086-ad2f-58ae4b8fff89-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090546.JPG,,FALSE, +N1,60161,sortie-a89adc0c-7f84-4086-ad2f-58ae4b8fff89,https://biolit.fr/sorties/sortie-a89adc0c-7f84-4086-ad2f-58ae4b8fff89/,Phil,,12/03/2017,12.0000000,12.0:55,47.852289000000,-3.977353000000,,Fouesnant - Finistère,46131,observation-a89adc0c-7f84-4086-ad2f-58ae4b8fff89-4,https://biolit.fr/observations/observation-a89adc0c-7f84-4086-ad2f-58ae4b8fff89-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1090531.JPG,,TRUE, +N1,60162,sortie-b5bcdb03-6f83-4b33-92a4-b05cb0d52819,https://biolit.fr/sorties/sortie-b5bcdb03-6f83-4b33-92a4-b05cb0d52819/,Phil,,12/02/2017,16.0000000,16.0:25,48.092631000000,-4.297180000000,,Douarnenez - Finistère,46133,observation-b5bcdb03-6f83-4b33-92a4-b05cb0d52819,https://biolit.fr/observations/observation-b5bcdb03-6f83-4b33-92a4-b05cb0d52819/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20171202_162758.jpg,,TRUE, +N1,60162,sortie-b5bcdb03-6f83-4b33-92a4-b05cb0d52819,https://biolit.fr/sorties/sortie-b5bcdb03-6f83-4b33-92a4-b05cb0d52819/,Phil,,12/02/2017,16.0000000,16.0:25,48.092631000000,-4.297180000000,,Douarnenez - Finistère,46135,observation-b5bcdb03-6f83-4b33-92a4-b05cb0d52819-2,https://biolit.fr/observations/observation-b5bcdb03-6f83-4b33-92a4-b05cb0d52819-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171202_162629.jpg,,FALSE, +N1,60162,sortie-b5bcdb03-6f83-4b33-92a4-b05cb0d52819,https://biolit.fr/sorties/sortie-b5bcdb03-6f83-4b33-92a4-b05cb0d52819/,Phil,,12/02/2017,16.0000000,16.0:25,48.092631000000,-4.297180000000,,Douarnenez - Finistère,46137,observation-b5bcdb03-6f83-4b33-92a4-b05cb0d52819-3,https://biolit.fr/observations/observation-b5bcdb03-6f83-4b33-92a4-b05cb0d52819-3/,Lutraria lutraria,Lutraire elliptique,,https://biolit.fr/wp-content/uploads/2023/07/20171202_162504.jpg,,TRUE, +N1,60162,sortie-b5bcdb03-6f83-4b33-92a4-b05cb0d52819,https://biolit.fr/sorties/sortie-b5bcdb03-6f83-4b33-92a4-b05cb0d52819/,Phil,,12/02/2017,16.0000000,16.0:25,48.092631000000,-4.297180000000,,Douarnenez - Finistère,46139,observation-b5bcdb03-6f83-4b33-92a4-b05cb0d52819-4,https://biolit.fr/observations/observation-b5bcdb03-6f83-4b33-92a4-b05cb0d52819-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171202_162600.jpg,,FALSE, +N1,60162,sortie-b5bcdb03-6f83-4b33-92a4-b05cb0d52819,https://biolit.fr/sorties/sortie-b5bcdb03-6f83-4b33-92a4-b05cb0d52819/,Phil,,12/02/2017,16.0000000,16.0:25,48.092631000000,-4.297180000000,,Douarnenez - Finistère,46141,observation-b5bcdb03-6f83-4b33-92a4-b05cb0d52819-5,https://biolit.fr/observations/observation-b5bcdb03-6f83-4b33-92a4-b05cb0d52819-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171202_162303.jpg,,FALSE, +N1,60163,sortie-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf,https://biolit.fr/sorties/sortie-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf/,Phil,,11/05/2017,13.0000000,13.0000000,47.796499000000,-4.183430000000,,Loctudy - Finistère,46143,observation-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf,https://biolit.fr/observations/observation-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1090459.JPG,,TRUE, +N1,60163,sortie-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf,https://biolit.fr/sorties/sortie-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf/,Phil,,11/05/2017,13.0000000,13.0000000,47.796499000000,-4.183430000000,,Loctudy - Finistère,46145,observation-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf-2,https://biolit.fr/observations/observation-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf-2/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1090468.JPG,,TRUE, +N1,60163,sortie-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf,https://biolit.fr/sorties/sortie-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf/,Phil,,11/05/2017,13.0000000,13.0000000,47.796499000000,-4.183430000000,,Loctudy - Finistère,46147,observation-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf-3,https://biolit.fr/observations/observation-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf-3/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/P1090458.JPG,,TRUE, +N1,60163,sortie-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf,https://biolit.fr/sorties/sortie-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf/,Phil,,11/05/2017,13.0000000,13.0000000,47.796499000000,-4.183430000000,,Loctudy - Finistère,46149,observation-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf-4,https://biolit.fr/observations/observation-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf-4/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/P1090453.JPG,,TRUE, +N1,60163,sortie-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf,https://biolit.fr/sorties/sortie-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf/,Phil,,11/05/2017,13.0000000,13.0000000,47.796499000000,-4.183430000000,,Loctudy - Finistère,46151,observation-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf-5,https://biolit.fr/observations/observation-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf-5/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1090457.JPG,,TRUE, +N1,60164,sortie-c329a8c9-7c38-45c1-aa5f-719c1a6e534a,https://biolit.fr/sorties/sortie-c329a8c9-7c38-45c1-aa5f-719c1a6e534a/,Phil,,12/03/2017,13.000005,13.0000000,47.852636000000,-3.977395000000,,Fouesnant - Finistère,46153,observation-c329a8c9-7c38-45c1-aa5f-719c1a6e534a,https://biolit.fr/observations/observation-c329a8c9-7c38-45c1-aa5f-719c1a6e534a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090548.JPG,,FALSE, +N1,60164,sortie-c329a8c9-7c38-45c1-aa5f-719c1a6e534a,https://biolit.fr/sorties/sortie-c329a8c9-7c38-45c1-aa5f-719c1a6e534a/,Phil,,12/03/2017,13.000005,13.0000000,47.852636000000,-3.977395000000,,Fouesnant - Finistère,46155,observation-c329a8c9-7c38-45c1-aa5f-719c1a6e534a-2,https://biolit.fr/observations/observation-c329a8c9-7c38-45c1-aa5f-719c1a6e534a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090549.JPG,,FALSE, +N1,60164,sortie-c329a8c9-7c38-45c1-aa5f-719c1a6e534a,https://biolit.fr/sorties/sortie-c329a8c9-7c38-45c1-aa5f-719c1a6e534a/,Phil,,12/03/2017,13.000005,13.0000000,47.852636000000,-3.977395000000,,Fouesnant - Finistère,46157,observation-c329a8c9-7c38-45c1-aa5f-719c1a6e534a-3,https://biolit.fr/observations/observation-c329a8c9-7c38-45c1-aa5f-719c1a6e534a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090552.JPG,,FALSE, +N1,60164,sortie-c329a8c9-7c38-45c1-aa5f-719c1a6e534a,https://biolit.fr/sorties/sortie-c329a8c9-7c38-45c1-aa5f-719c1a6e534a/,Phil,,12/03/2017,13.000005,13.0000000,47.852636000000,-3.977395000000,,Fouesnant - Finistère,46159,observation-c329a8c9-7c38-45c1-aa5f-719c1a6e534a-4,https://biolit.fr/observations/observation-c329a8c9-7c38-45c1-aa5f-719c1a6e534a-4/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1090555.JPG,,TRUE, +N1,60165,sortie-6db7f258-89d6-45ce-8522-97005a14e790,https://biolit.fr/sorties/sortie-6db7f258-89d6-45ce-8522-97005a14e790/,Phil,,11/06/2017,12.000005,12.0:15,48.002663000000,-4.521912000000,,Plouhinec - Finistère,46161,observation-6db7f258-89d6-45ce-8522-97005a14e790,https://biolit.fr/observations/observation-6db7f258-89d6-45ce-8522-97005a14e790/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_120810.jpg,,FALSE, +N1,60165,sortie-6db7f258-89d6-45ce-8522-97005a14e790,https://biolit.fr/sorties/sortie-6db7f258-89d6-45ce-8522-97005a14e790/,Phil,,11/06/2017,12.000005,12.0:15,48.002663000000,-4.521912000000,,Plouhinec - Finistère,46163,observation-6db7f258-89d6-45ce-8522-97005a14e790-2,https://biolit.fr/observations/observation-6db7f258-89d6-45ce-8522-97005a14e790-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_120825.jpg,,FALSE, +N1,60165,sortie-6db7f258-89d6-45ce-8522-97005a14e790,https://biolit.fr/sorties/sortie-6db7f258-89d6-45ce-8522-97005a14e790/,Phil,,11/06/2017,12.000005,12.0:15,48.002663000000,-4.521912000000,,Plouhinec - Finistère,46165,observation-6db7f258-89d6-45ce-8522-97005a14e790-3,https://biolit.fr/observations/observation-6db7f258-89d6-45ce-8522-97005a14e790-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_120836.jpg,,FALSE, +N1,60165,sortie-6db7f258-89d6-45ce-8522-97005a14e790,https://biolit.fr/sorties/sortie-6db7f258-89d6-45ce-8522-97005a14e790/,Phil,,11/06/2017,12.000005,12.0:15,48.002663000000,-4.521912000000,,Plouhinec - Finistère,46167,observation-6db7f258-89d6-45ce-8522-97005a14e790-4,https://biolit.fr/observations/observation-6db7f258-89d6-45ce-8522-97005a14e790-4/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20171106_121124.jpg,,TRUE, +N1,60165,sortie-6db7f258-89d6-45ce-8522-97005a14e790,https://biolit.fr/sorties/sortie-6db7f258-89d6-45ce-8522-97005a14e790/,Phil,,11/06/2017,12.000005,12.0:15,48.002663000000,-4.521912000000,,Plouhinec - Finistère,46169,observation-6db7f258-89d6-45ce-8522-97005a14e790-5,https://biolit.fr/observations/observation-6db7f258-89d6-45ce-8522-97005a14e790-5/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20171106_121136.jpg,,TRUE, +N1,60166,sortie-e15cf1c9-e305-4022-965e-03110e7687cd,https://biolit.fr/sorties/sortie-e15cf1c9-e305-4022-965e-03110e7687cd/,Phil,,12/01/2017,12.0:55,13.0000000,47.868516000000,-3.911657000000,,Concarneau - Finistère,46171,observation-e15cf1c9-e305-4022-965e-03110e7687cd,https://biolit.fr/observations/observation-e15cf1c9-e305-4022-965e-03110e7687cd/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171201_125926.jpg,,FALSE, +N1,60166,sortie-e15cf1c9-e305-4022-965e-03110e7687cd,https://biolit.fr/sorties/sortie-e15cf1c9-e305-4022-965e-03110e7687cd/,Phil,,12/01/2017,12.0:55,13.0000000,47.868516000000,-3.911657000000,,Concarneau - Finistère,46173,observation-e15cf1c9-e305-4022-965e-03110e7687cd-2,https://biolit.fr/observations/observation-e15cf1c9-e305-4022-965e-03110e7687cd-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20171201_125743.jpg,,TRUE, +N1,60166,sortie-e15cf1c9-e305-4022-965e-03110e7687cd,https://biolit.fr/sorties/sortie-e15cf1c9-e305-4022-965e-03110e7687cd/,Phil,,12/01/2017,12.0:55,13.0000000,47.868516000000,-3.911657000000,,Concarneau - Finistère,46175,observation-e15cf1c9-e305-4022-965e-03110e7687cd-3,https://biolit.fr/observations/observation-e15cf1c9-e305-4022-965e-03110e7687cd-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171201_125650.jpg,,FALSE, +N1,60167,sortie-d4e9c9ac-495b-4e5f-a104-68c9fb995e31,https://biolit.fr/sorties/sortie-d4e9c9ac-495b-4e5f-a104-68c9fb995e31/,Phil,,11/27/2017 0:00,15.0000000,15.0:35,48.219428000000,-4.391805000000,,Telgruc sur Mer - Finistère,46177,observation-d4e9c9ac-495b-4e5f-a104-68c9fb995e31,https://biolit.fr/observations/observation-d4e9c9ac-495b-4e5f-a104-68c9fb995e31/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171127_153523.jpg,,FALSE, +N1,60167,sortie-d4e9c9ac-495b-4e5f-a104-68c9fb995e31,https://biolit.fr/sorties/sortie-d4e9c9ac-495b-4e5f-a104-68c9fb995e31/,Phil,,11/27/2017 0:00,15.0000000,15.0:35,48.219428000000,-4.391805000000,,Telgruc sur Mer - Finistère,46179,observation-d4e9c9ac-495b-4e5f-a104-68c9fb995e31-2,https://biolit.fr/observations/observation-d4e9c9ac-495b-4e5f-a104-68c9fb995e31-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171127_153236.jpg,,FALSE, +N1,60167,sortie-d4e9c9ac-495b-4e5f-a104-68c9fb995e31,https://biolit.fr/sorties/sortie-d4e9c9ac-495b-4e5f-a104-68c9fb995e31/,Phil,,11/27/2017 0:00,15.0000000,15.0:35,48.219428000000,-4.391805000000,,Telgruc sur Mer - Finistère,46181,observation-d4e9c9ac-495b-4e5f-a104-68c9fb995e31-3,https://biolit.fr/observations/observation-d4e9c9ac-495b-4e5f-a104-68c9fb995e31-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171127_153306.jpg,,FALSE, +N1,60168,sortie-86a294cb-cea0-4243-af65-537405fc5ad1,https://biolit.fr/sorties/sortie-86a294cb-cea0-4243-af65-537405fc5ad1/,Phil,,12/03/2017,12.0:45,12.0000000,47.853640000000,-3.978418000000,,Fouesnant - Finistère,46183,observation-86a294cb-cea0-4243-af65-537405fc5ad1,https://biolit.fr/observations/observation-86a294cb-cea0-4243-af65-537405fc5ad1/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090489.JPG,,FALSE, +N1,60168,sortie-86a294cb-cea0-4243-af65-537405fc5ad1,https://biolit.fr/sorties/sortie-86a294cb-cea0-4243-af65-537405fc5ad1/,Phil,,12/03/2017,12.0:45,12.0000000,47.853640000000,-3.978418000000,,Fouesnant - Finistère,46185,observation-86a294cb-cea0-4243-af65-537405fc5ad1-2,https://biolit.fr/observations/observation-86a294cb-cea0-4243-af65-537405fc5ad1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090486.JPG,,FALSE, +N1,60169,sortie-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888,https://biolit.fr/sorties/sortie-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888/,Phil,,11/05/2017,13.0:15,13.0000000,47.796519000000,-4.178881000000,,Loctudy - Finistère,46187,observation-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888,https://biolit.fr/observations/observation-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090448.JPG,,FALSE, +N1,60169,sortie-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888,https://biolit.fr/sorties/sortie-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888/,Phil,,11/05/2017,13.0:15,13.0000000,47.796519000000,-4.178881000000,,Loctudy - Finistère,46189,observation-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888-2,https://biolit.fr/observations/observation-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090447.JPG,,FALSE, +N1,60169,sortie-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888,https://biolit.fr/sorties/sortie-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888/,Phil,,11/05/2017,13.0:15,13.0000000,47.796519000000,-4.178881000000,,Loctudy - Finistère,46191,observation-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888-3,https://biolit.fr/observations/observation-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090446.JPG,,FALSE, +N1,60169,sortie-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888,https://biolit.fr/sorties/sortie-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888/,Phil,,11/05/2017,13.0:15,13.0000000,47.796519000000,-4.178881000000,,Loctudy - Finistère,46193,observation-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888-4,https://biolit.fr/observations/observation-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888-4/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1090444.JPG,,TRUE, +N1,60169,sortie-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888,https://biolit.fr/sorties/sortie-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888/,Phil,,11/05/2017,13.0:15,13.0000000,47.796519000000,-4.178881000000,,Loctudy - Finistère,46195,observation-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888-5,https://biolit.fr/observations/observation-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1090443.JPG,,TRUE, +N1,60170,sortie-32dad0a5-ef55-4513-8b1d-9ed4f44ff9d5,https://biolit.fr/sorties/sortie-32dad0a5-ef55-4513-8b1d-9ed4f44ff9d5/,Phil,,12/02/2017,16.0000000,16.0:35,48.092221000000,-4.296944000000,,Douarnenez - Finistère,46197,observation-32dad0a5-ef55-4513-8b1d-9ed4f44ff9d5,https://biolit.fr/observations/observation-32dad0a5-ef55-4513-8b1d-9ed4f44ff9d5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171202_163323.jpg,,FALSE, +N1,60170,sortie-32dad0a5-ef55-4513-8b1d-9ed4f44ff9d5,https://biolit.fr/sorties/sortie-32dad0a5-ef55-4513-8b1d-9ed4f44ff9d5/,Phil,,12/02/2017,16.0000000,16.0:35,48.092221000000,-4.296944000000,,Douarnenez - Finistère,46199,observation-32dad0a5-ef55-4513-8b1d-9ed4f44ff9d5-2,https://biolit.fr/observations/observation-32dad0a5-ef55-4513-8b1d-9ed4f44ff9d5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171202_162915.jpg,,FALSE, +N1,60170,sortie-32dad0a5-ef55-4513-8b1d-9ed4f44ff9d5,https://biolit.fr/sorties/sortie-32dad0a5-ef55-4513-8b1d-9ed4f44ff9d5/,Phil,,12/02/2017,16.0000000,16.0:35,48.092221000000,-4.296944000000,,Douarnenez - Finistère,46201,observation-32dad0a5-ef55-4513-8b1d-9ed4f44ff9d5-3,https://biolit.fr/observations/observation-32dad0a5-ef55-4513-8b1d-9ed4f44ff9d5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171202_163020.jpg,,FALSE, +N1,60171,sortie-0c7f540b-49af-4df9-aa06-9959fa5ae10c,https://biolit.fr/sorties/sortie-0c7f540b-49af-4df9-aa06-9959fa5ae10c/,nathalie,,12/03/2017,15.0000000,15.0000000,46.244994000000,-1.562153000000,,Phare des baleines ,46203,observation-0c7f540b-49af-4df9-aa06-9959fa5ae10c,https://biolit.fr/observations/observation-0c7f540b-49af-4df9-aa06-9959fa5ae10c/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171203_151830-scaled.jpg,,FALSE, +N1,60172,sortie-52573e1b-5202-41c4-9eaa-e057669f199a,https://biolit.fr/sorties/sortie-52573e1b-5202-41c4-9eaa-e057669f199a/,Phil,,11/06/2017,11.0:45,12.0000000,48.004360000000,-4.520560000000,,Plouhinec - Finistère,46205,observation-52573e1b-5202-41c4-9eaa-e057669f199a,https://biolit.fr/observations/observation-52573e1b-5202-41c4-9eaa-e057669f199a/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_115503.jpg,,FALSE, +N1,60172,sortie-52573e1b-5202-41c4-9eaa-e057669f199a,https://biolit.fr/sorties/sortie-52573e1b-5202-41c4-9eaa-e057669f199a/,Phil,,11/06/2017,11.0:45,12.0000000,48.004360000000,-4.520560000000,,Plouhinec - Finistère,46207,observation-52573e1b-5202-41c4-9eaa-e057669f199a-2,https://biolit.fr/observations/observation-52573e1b-5202-41c4-9eaa-e057669f199a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_115513(0).jpg,,FALSE, +N1,60172,sortie-52573e1b-5202-41c4-9eaa-e057669f199a,https://biolit.fr/sorties/sortie-52573e1b-5202-41c4-9eaa-e057669f199a/,Phil,,11/06/2017,11.0:45,12.0000000,48.004360000000,-4.520560000000,,Plouhinec - Finistère,46209,observation-52573e1b-5202-41c4-9eaa-e057669f199a-3,https://biolit.fr/observations/observation-52573e1b-5202-41c4-9eaa-e057669f199a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_114650.jpg,,FALSE, +N1,60172,sortie-52573e1b-5202-41c4-9eaa-e057669f199a,https://biolit.fr/sorties/sortie-52573e1b-5202-41c4-9eaa-e057669f199a/,Phil,,11/06/2017,11.0:45,12.0000000,48.004360000000,-4.520560000000,,Plouhinec - Finistère,46211,observation-52573e1b-5202-41c4-9eaa-e057669f199a-4,https://biolit.fr/observations/observation-52573e1b-5202-41c4-9eaa-e057669f199a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_120038.jpg,,FALSE, +N1,60173,sortie-3a96fd7d-e7c7-4bc1-8f0b-5939c4b9eaa4,https://biolit.fr/sorties/sortie-3a96fd7d-e7c7-4bc1-8f0b-5939c4b9eaa4/,Phil,,12/01/2017,13.0000000,13.0000000,47.870058000000,-3.91150200000,,Concarneau - Finistère,46213,observation-3a96fd7d-e7c7-4bc1-8f0b-5939c4b9eaa4,https://biolit.fr/observations/observation-3a96fd7d-e7c7-4bc1-8f0b-5939c4b9eaa4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171201_131015.jpg,,FALSE, +N1,60173,sortie-3a96fd7d-e7c7-4bc1-8f0b-5939c4b9eaa4,https://biolit.fr/sorties/sortie-3a96fd7d-e7c7-4bc1-8f0b-5939c4b9eaa4/,Phil,,12/01/2017,13.0000000,13.0000000,47.870058000000,-3.91150200000,,Concarneau - Finistère,46215,observation-3a96fd7d-e7c7-4bc1-8f0b-5939c4b9eaa4-2,https://biolit.fr/observations/observation-3a96fd7d-e7c7-4bc1-8f0b-5939c4b9eaa4-2/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/20171201_131132.jpg,,TRUE, +N1,60174,sortie-a49816fe-8f19-48ca-966e-5c0e1179c78b,https://biolit.fr/sorties/sortie-a49816fe-8f19-48ca-966e-5c0e1179c78b/,Phil,,12/01/2017,17.0000000,17.0:15,47.795470000000,-4.275563000000,,Léchiagat - Finistère,46217,observation-a49816fe-8f19-48ca-966e-5c0e1179c78b,https://biolit.fr/observations/observation-a49816fe-8f19-48ca-966e-5c0e1179c78b/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171201_171459.jpg,,FALSE, +N1,60174,sortie-a49816fe-8f19-48ca-966e-5c0e1179c78b,https://biolit.fr/sorties/sortie-a49816fe-8f19-48ca-966e-5c0e1179c78b/,Phil,,12/01/2017,17.0000000,17.0:15,47.795470000000,-4.275563000000,,Léchiagat - Finistère,46219,observation-a49816fe-8f19-48ca-966e-5c0e1179c78b-2,https://biolit.fr/observations/observation-a49816fe-8f19-48ca-966e-5c0e1179c78b-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20171201_171325.jpg,,TRUE, +N1,60174,sortie-a49816fe-8f19-48ca-966e-5c0e1179c78b,https://biolit.fr/sorties/sortie-a49816fe-8f19-48ca-966e-5c0e1179c78b/,Phil,,12/01/2017,17.0000000,17.0:15,47.795470000000,-4.275563000000,,Léchiagat - Finistère,46221,observation-a49816fe-8f19-48ca-966e-5c0e1179c78b-3,https://biolit.fr/observations/observation-a49816fe-8f19-48ca-966e-5c0e1179c78b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171201_171314.jpg,,FALSE, +N1,60174,sortie-a49816fe-8f19-48ca-966e-5c0e1179c78b,https://biolit.fr/sorties/sortie-a49816fe-8f19-48ca-966e-5c0e1179c78b/,Phil,,12/01/2017,17.0000000,17.0:15,47.795470000000,-4.275563000000,,Léchiagat - Finistère,46223,observation-a49816fe-8f19-48ca-966e-5c0e1179c78b-4,https://biolit.fr/observations/observation-a49816fe-8f19-48ca-966e-5c0e1179c78b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171201_171240.jpg,,FALSE, +N1,60175,sortie-f1a4bc0b-5b9f-4911-95f8-9133433488fe,https://biolit.fr/sorties/sortie-f1a4bc0b-5b9f-4911-95f8-9133433488fe/,Phil,,11/27/2017 0:00,15.0:45,15.0000000,48.219746000000,-4.392405000000,,Telgruc sur Mer - Finistère,46225,observation-f1a4bc0b-5b9f-4911-95f8-9133433488fe,https://biolit.fr/observations/observation-f1a4bc0b-5b9f-4911-95f8-9133433488fe/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20171127_154545.jpg,,TRUE, +N1,60175,sortie-f1a4bc0b-5b9f-4911-95f8-9133433488fe,https://biolit.fr/sorties/sortie-f1a4bc0b-5b9f-4911-95f8-9133433488fe/,Phil,,11/27/2017 0:00,15.0:45,15.0000000,48.219746000000,-4.392405000000,,Telgruc sur Mer - Finistère,46227,observation-f1a4bc0b-5b9f-4911-95f8-9133433488fe-2,https://biolit.fr/observations/observation-f1a4bc0b-5b9f-4911-95f8-9133433488fe-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20171127_154633.jpg,,TRUE, +N1,60175,sortie-f1a4bc0b-5b9f-4911-95f8-9133433488fe,https://biolit.fr/sorties/sortie-f1a4bc0b-5b9f-4911-95f8-9133433488fe/,Phil,,11/27/2017 0:00,15.0:45,15.0000000,48.219746000000,-4.392405000000,,Telgruc sur Mer - Finistère,46229,observation-f1a4bc0b-5b9f-4911-95f8-9133433488fe-3,https://biolit.fr/observations/observation-f1a4bc0b-5b9f-4911-95f8-9133433488fe-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20171127_154805.jpg,,TRUE, +N1,60175,sortie-f1a4bc0b-5b9f-4911-95f8-9133433488fe,https://biolit.fr/sorties/sortie-f1a4bc0b-5b9f-4911-95f8-9133433488fe/,Phil,,11/27/2017 0:00,15.0:45,15.0000000,48.219746000000,-4.392405000000,,Telgruc sur Mer - Finistère,46231,observation-f1a4bc0b-5b9f-4911-95f8-9133433488fe-4,https://biolit.fr/observations/observation-f1a4bc0b-5b9f-4911-95f8-9133433488fe-4/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20171127_154859.jpg,,TRUE, +N1,60176,sortie-62bbf8b7-6101-4dd1-a76e-d855862a2c2d,https://biolit.fr/sorties/sortie-62bbf8b7-6101-4dd1-a76e-d855862a2c2d/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,43.279802000000,5.352180000000,,Anse de la Fausse Monaie ,46233,observation-62bbf8b7-6101-4dd1-a76e-d855862a2c2d,https://biolit.fr/observations/observation-62bbf8b7-6101-4dd1-a76e-d855862a2c2d/,,,,,,FALSE, +N1,60176,sortie-62bbf8b7-6101-4dd1-a76e-d855862a2c2d,https://biolit.fr/sorties/sortie-62bbf8b7-6101-4dd1-a76e-d855862a2c2d/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,43.279802000000,5.352180000000,,Anse de la Fausse Monaie ,46234,observation-62bbf8b7-6101-4dd1-a76e-d855862a2c2d-2,https://biolit.fr/observations/observation-62bbf8b7-6101-4dd1-a76e-d855862a2c2d-2/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/Spherocoque_sphaerococcus cornopifolius _0.jpg,,TRUE, +N1,60177,sortie-d57eab0e-a112-445f-8920-ca7f64e71061,https://biolit.fr/sorties/sortie-d57eab0e-a112-445f-8920-ca7f64e71061/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,43.279721000000,5.352570000000,,anse de la fausse monnaie,46236,observation-d57eab0e-a112-445f-8920-ca7f64e71061,https://biolit.fr/observations/observation-d57eab0e-a112-445f-8920-ca7f64e71061/,,,,,,FALSE, +N1,60178,sortie-1a0bdb2e-7fc8-4bfb-8ff6-317d154ba3ea,https://biolit.fr/sorties/sortie-1a0bdb2e-7fc8-4bfb-8ff6-317d154ba3ea/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,43.279893000000,5.352554000000,,anse de la fausse monnaie,46237,observation-1a0bdb2e-7fc8-4bfb-8ff6-317d154ba3ea,https://biolit.fr/observations/observation-1a0bdb2e-7fc8-4bfb-8ff6-317d154ba3ea/,,,,,,FALSE, +N1,60179,sortie-574659d3-fa9c-4bf2-9743-8d551796c5ce,https://biolit.fr/sorties/sortie-574659d3-fa9c-4bf2-9743-8d551796c5ce/,ville de marseille saint julien 1 CM1,,11/30/2017 0:00,10.0000000,12.0000000,43.279984000000,5.352672000000,,anse de la fausse monnaie,46238,observation-574659d3-fa9c-4bf2-9743-8d551796c5ce,https://biolit.fr/observations/observation-574659d3-fa9c-4bf2-9743-8d551796c5ce/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/oursin comestible_ Arbacia lixula.JPG,,TRUE, +N1,60180,sortie-7d7e9cf6-c6e3-473a-9b0f-3c7e13a0fa31,https://biolit.fr/sorties/sortie-7d7e9cf6-c6e3-473a-9b0f-3c7e13a0fa31/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,43.280558000000,5.351122000000,,Anse de la fausse monnaie,46240,observation-7d7e9cf6-c6e3-473a-9b0f-3c7e13a0fa31,https://biolit.fr/observations/observation-7d7e9cf6-c6e3-473a-9b0f-3c7e13a0fa31/,,,,https://biolit.fr/wp-content/uploads/2023/07/La posidonie_ Posidonia oceanica_tige_ feuilles-scaled.jpg,,FALSE, +N1,60180,sortie-7d7e9cf6-c6e3-473a-9b0f-3c7e13a0fa31,https://biolit.fr/sorties/sortie-7d7e9cf6-c6e3-473a-9b0f-3c7e13a0fa31/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,43.280558000000,5.351122000000,,Anse de la fausse monnaie,46242,observation-7d7e9cf6-c6e3-473a-9b0f-3c7e13a0fa31-2,https://biolit.fr/observations/observation-7d7e9cf6-c6e3-473a-9b0f-3c7e13a0fa31-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Plage banquette posidonie-scaled.jpg,,FALSE, +N1,60181,sortie-37c12c10-70a2-43bb-85ef-9cdbb1e0fba6,https://biolit.fr/sorties/sortie-37c12c10-70a2-43bb-85ef-9cdbb1e0fba6/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,43.279867000000,5.352353000000,,anse de la fausse monnaie,46244,observation-37c12c10-70a2-43bb-85ef-9cdbb1e0fba6,https://biolit.fr/observations/observation-37c12c10-70a2-43bb-85ef-9cdbb1e0fba6/,,,,,,FALSE, +N1,60182,sortie-e537550e-13cb-430a-84e5-7616d4cf4423,https://biolit.fr/sorties/sortie-e537550e-13cb-430a-84e5-7616d4cf4423/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,43.279966000000,5.352315000000,,Anse de la fausse monnaie,46245,observation-e537550e-13cb-430a-84e5-7616d4cf4423,https://biolit.fr/observations/observation-e537550e-13cb-430a-84e5-7616d4cf4423/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle bleu _ patella caerulea_ dessous.jpg,,FALSE, +N1,60183,sortie-c66c619b-90f2-44a4-bb1c-921ac4972f6f,https://biolit.fr/sorties/sortie-c66c619b-90f2-44a4-bb1c-921ac4972f6f/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,43.280036000000,5.352415000000,,anse de la fausse monnaie,46247,observation-c66c619b-90f2-44a4-bb1c-921ac4972f6f,https://biolit.fr/observations/observation-c66c619b-90f2-44a4-bb1c-921ac4972f6f/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/tomate de mer_Actinia equina.jpg,,TRUE, +N1,60183,sortie-c66c619b-90f2-44a4-bb1c-921ac4972f6f,https://biolit.fr/sorties/sortie-c66c619b-90f2-44a4-bb1c-921ac4972f6f/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,43.280036000000,5.352415000000,,anse de la fausse monnaie,46249,observation-c66c619b-90f2-44a4-bb1c-921ac4972f6f-2,https://biolit.fr/observations/observation-c66c619b-90f2-44a4-bb1c-921ac4972f6f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/La posidonie_ Posidonia oceanica_tige-scaled.jpg,,FALSE, +N1,60184,sortie-23d44537-3bd6-477a-99e5-1d42c3800e95,https://biolit.fr/sorties/sortie-23d44537-3bd6-477a-99e5-1d42c3800e95/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,43.279938000000,5.352312000000,,anse de la fausse monnaie,46251,observation-23d44537-3bd6-477a-99e5-1d42c3800e95,https://biolit.fr/observations/observation-23d44537-3bd6-477a-99e5-1d42c3800e95/,,,,https://biolit.fr/wp-content/uploads/2023/07/Phorcus turbinatus dessus-scaled.jpg,,FALSE, +N1,60184,sortie-23d44537-3bd6-477a-99e5-1d42c3800e95,https://biolit.fr/sorties/sortie-23d44537-3bd6-477a-99e5-1d42c3800e95/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,43.279938000000,5.352312000000,,anse de la fausse monnaie,46253,observation-23d44537-3bd6-477a-99e5-1d42c3800e95-2,https://biolit.fr/observations/observation-23d44537-3bd6-477a-99e5-1d42c3800e95-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Phorcus turbinatus dessous-scaled.jpg,,FALSE, +N1,60185,sortie-efc09e8b-2e4a-405d-921f-a1ee80193c83,https://biolit.fr/sorties/sortie-efc09e8b-2e4a-405d-921f-a1ee80193c83/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,43.27993200000,5.352306000000,,anse de la fausse monnaie,46255,observation-efc09e8b-2e4a-405d-921f-a1ee80193c83,https://biolit.fr/observations/observation-efc09e8b-2e4a-405d-921f-a1ee80193c83/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule Steromphala varia_desous_0.jpg,,FALSE, +N1,60185,sortie-efc09e8b-2e4a-405d-921f-a1ee80193c83,https://biolit.fr/sorties/sortie-efc09e8b-2e4a-405d-921f-a1ee80193c83/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,43.27993200000,5.352306000000,,anse de la fausse monnaie,46257,observation-efc09e8b-2e4a-405d-921f-a1ee80193c83-2,https://biolit.fr/observations/observation-efc09e8b-2e4a-405d-921f-a1ee80193c83-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule Steromphala varia_dessus.jpg,,FALSE, +N1,60186,sortie-e9e9dcd0-dff7-49ce-9397-2939bfff22d2,https://biolit.fr/sorties/sortie-e9e9dcd0-dff7-49ce-9397-2939bfff22d2/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,46.501523000000,0.977601000000,,anse de la fausse monnaie,46260,observation-e9e9dcd0-dff7-49ce-9397-2939bfff22d2-2,https://biolit.fr/observations/observation-e9e9dcd0-dff7-49ce-9397-2939bfff22d2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/chiton_vert Chiton olivaceus.jpg,,FALSE, +N1,60187,sortie-41d589bb-5bd6-4bcd-bb8b-b6caa833b08b,https://biolit.fr/sorties/sortie-41d589bb-5bd6-4bcd-bb8b-b6caa833b08b/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,43.280396000000,5.35279500000,,Anse de la fausse monnaie,46262,observation-41d589bb-5bd6-4bcd-bb8b-b6caa833b08b,https://biolit.fr/observations/observation-41d589bb-5bd6-4bcd-bb8b-b6caa833b08b/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule de pennant_Gibbula pennanti dessous.JPG,,FALSE, +N1,60187,sortie-41d589bb-5bd6-4bcd-bb8b-b6caa833b08b,https://biolit.fr/sorties/sortie-41d589bb-5bd6-4bcd-bb8b-b6caa833b08b/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,43.280396000000,5.35279500000,,Anse de la fausse monnaie,46264,observation-41d589bb-5bd6-4bcd-bb8b-b6caa833b08b-2,https://biolit.fr/observations/observation-41d589bb-5bd6-4bcd-bb8b-b6caa833b08b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule de pennant_Gibbula pennanti dessus.JPG,,FALSE, +N1,60188,sortie-60c1a50b-34c3-4bf4-9199-9374eeeb9a03,https://biolit.fr/sorties/sortie-60c1a50b-34c3-4bf4-9199-9374eeeb9a03/,Phil,,6/18/2017 0:00,16.0000000,16.0:25,47.719894000000,-3.957726000000,,Fouesnant - Finistère,46266,observation-60c1a50b-34c3-4bf4-9199-9374eeeb9a03,https://biolit.fr/observations/observation-60c1a50b-34c3-4bf4-9199-9374eeeb9a03/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070674.JPG,,FALSE, +N1,60188,sortie-60c1a50b-34c3-4bf4-9199-9374eeeb9a03,https://biolit.fr/sorties/sortie-60c1a50b-34c3-4bf4-9199-9374eeeb9a03/,Phil,,6/18/2017 0:00,16.0000000,16.0:25,47.719894000000,-3.957726000000,,Fouesnant - Finistère,46268,observation-60c1a50b-34c3-4bf4-9199-9374eeeb9a03-2,https://biolit.fr/observations/observation-60c1a50b-34c3-4bf4-9199-9374eeeb9a03-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070675.JPG,,FALSE, +N1,60188,sortie-60c1a50b-34c3-4bf4-9199-9374eeeb9a03,https://biolit.fr/sorties/sortie-60c1a50b-34c3-4bf4-9199-9374eeeb9a03/,Phil,,6/18/2017 0:00,16.0000000,16.0:25,47.719894000000,-3.957726000000,,Fouesnant - Finistère,46270,observation-60c1a50b-34c3-4bf4-9199-9374eeeb9a03-3,https://biolit.fr/observations/observation-60c1a50b-34c3-4bf4-9199-9374eeeb9a03-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070676.JPG,,FALSE, +N1,60189,sortie-499d7f37-1a62-4d45-b75c-c4eef23907a0,https://biolit.fr/sorties/sortie-499d7f37-1a62-4d45-b75c-c4eef23907a0/,Phil,,11/06/2017,12.0:15,13.0000000,48.004565000000,-4.523243000000,,Plouhinec - Finistère,46272,observation-499d7f37-1a62-4d45-b75c-c4eef23907a0,https://biolit.fr/observations/observation-499d7f37-1a62-4d45-b75c-c4eef23907a0/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_121629.jpg,,FALSE, +N1,60189,sortie-499d7f37-1a62-4d45-b75c-c4eef23907a0,https://biolit.fr/sorties/sortie-499d7f37-1a62-4d45-b75c-c4eef23907a0/,Phil,,11/06/2017,12.0:15,13.0000000,48.004565000000,-4.523243000000,,Plouhinec - Finistère,46274,observation-499d7f37-1a62-4d45-b75c-c4eef23907a0-2,https://biolit.fr/observations/observation-499d7f37-1a62-4d45-b75c-c4eef23907a0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_123850.jpg,,FALSE, +N1,60189,sortie-499d7f37-1a62-4d45-b75c-c4eef23907a0,https://biolit.fr/sorties/sortie-499d7f37-1a62-4d45-b75c-c4eef23907a0/,Phil,,11/06/2017,12.0:15,13.0000000,48.004565000000,-4.523243000000,,Plouhinec - Finistère,46276,observation-499d7f37-1a62-4d45-b75c-c4eef23907a0-3,https://biolit.fr/observations/observation-499d7f37-1a62-4d45-b75c-c4eef23907a0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_123902.jpg,,FALSE, +N1,60189,sortie-499d7f37-1a62-4d45-b75c-c4eef23907a0,https://biolit.fr/sorties/sortie-499d7f37-1a62-4d45-b75c-c4eef23907a0/,Phil,,11/06/2017,12.0:15,13.0000000,48.004565000000,-4.523243000000,,Plouhinec - Finistère,46278,observation-499d7f37-1a62-4d45-b75c-c4eef23907a0-4,https://biolit.fr/observations/observation-499d7f37-1a62-4d45-b75c-c4eef23907a0-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_124204.jpg,,FALSE, +N1,60190,sortie-68f8da0b-2d42-458a-928d-00871a5f4f5a,https://biolit.fr/sorties/sortie-68f8da0b-2d42-458a-928d-00871a5f4f5a/,Phil,,11/27/2017 0:00,15.0:35,15.0:45,48.218694000000,-4.392623000000,,Telgruc sur Mer - Finistère,46280,observation-68f8da0b-2d42-458a-928d-00871a5f4f5a,https://biolit.fr/observations/observation-68f8da0b-2d42-458a-928d-00871a5f4f5a/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/20171127_154320.jpg,,TRUE, +N1,60190,sortie-68f8da0b-2d42-458a-928d-00871a5f4f5a,https://biolit.fr/sorties/sortie-68f8da0b-2d42-458a-928d-00871a5f4f5a/,Phil,,11/27/2017 0:00,15.0:35,15.0:45,48.218694000000,-4.392623000000,,Telgruc sur Mer - Finistère,46282,observation-68f8da0b-2d42-458a-928d-00871a5f4f5a-2,https://biolit.fr/observations/observation-68f8da0b-2d42-458a-928d-00871a5f4f5a-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20171127_154023.jpg,,TRUE, +N1,60190,sortie-68f8da0b-2d42-458a-928d-00871a5f4f5a,https://biolit.fr/sorties/sortie-68f8da0b-2d42-458a-928d-00871a5f4f5a/,Phil,,11/27/2017 0:00,15.0:35,15.0:45,48.218694000000,-4.392623000000,,Telgruc sur Mer - Finistère,46284,observation-68f8da0b-2d42-458a-928d-00871a5f4f5a-3,https://biolit.fr/observations/observation-68f8da0b-2d42-458a-928d-00871a5f4f5a-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20171127_154011.jpg,,TRUE, +N1,60190,sortie-68f8da0b-2d42-458a-928d-00871a5f4f5a,https://biolit.fr/sorties/sortie-68f8da0b-2d42-458a-928d-00871a5f4f5a/,Phil,,11/27/2017 0:00,15.0:35,15.0:45,48.218694000000,-4.392623000000,,Telgruc sur Mer - Finistère,46286,observation-68f8da0b-2d42-458a-928d-00871a5f4f5a-4,https://biolit.fr/observations/observation-68f8da0b-2d42-458a-928d-00871a5f4f5a-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20171127_154003.jpg,,TRUE, +N1,60190,sortie-68f8da0b-2d42-458a-928d-00871a5f4f5a,https://biolit.fr/sorties/sortie-68f8da0b-2d42-458a-928d-00871a5f4f5a/,Phil,,11/27/2017 0:00,15.0:35,15.0:45,48.218694000000,-4.392623000000,,Telgruc sur Mer - Finistère,46288,observation-68f8da0b-2d42-458a-928d-00871a5f4f5a-5,https://biolit.fr/observations/observation-68f8da0b-2d42-458a-928d-00871a5f4f5a-5/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20171127_154310.jpg,,TRUE, +N1,60190,sortie-68f8da0b-2d42-458a-928d-00871a5f4f5a,https://biolit.fr/sorties/sortie-68f8da0b-2d42-458a-928d-00871a5f4f5a/,Phil,,11/27/2017 0:00,15.0:35,15.0:45,48.218694000000,-4.392623000000,,Telgruc sur Mer - Finistère,46290,observation-68f8da0b-2d42-458a-928d-00871a5f4f5a-6,https://biolit.fr/observations/observation-68f8da0b-2d42-458a-928d-00871a5f4f5a-6/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20171127_153858.jpg,,TRUE, +N1,60191,sortie-79a46f58-8b62-4f92-b1c8-f830852fc553,https://biolit.fr/sorties/sortie-79a46f58-8b62-4f92-b1c8-f830852fc553/,Phil,,11/05/2017,13.000005,13.0:15,47.797054000000,-4.177388000000,,Loctudy - Finistère,46292,observation-79a46f58-8b62-4f92-b1c8-f830852fc553,https://biolit.fr/observations/observation-79a46f58-8b62-4f92-b1c8-f830852fc553/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090422.JPG,,FALSE, +N1,60191,sortie-79a46f58-8b62-4f92-b1c8-f830852fc553,https://biolit.fr/sorties/sortie-79a46f58-8b62-4f92-b1c8-f830852fc553/,Phil,,11/05/2017,13.000005,13.0:15,47.797054000000,-4.177388000000,,Loctudy - Finistère,46294,observation-79a46f58-8b62-4f92-b1c8-f830852fc553-2,https://biolit.fr/observations/observation-79a46f58-8b62-4f92-b1c8-f830852fc553-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090423.JPG,,FALSE, +N1,60191,sortie-79a46f58-8b62-4f92-b1c8-f830852fc553,https://biolit.fr/sorties/sortie-79a46f58-8b62-4f92-b1c8-f830852fc553/,Phil,,11/05/2017,13.000005,13.0:15,47.797054000000,-4.177388000000,,Loctudy - Finistère,46296,observation-79a46f58-8b62-4f92-b1c8-f830852fc553-3,https://biolit.fr/observations/observation-79a46f58-8b62-4f92-b1c8-f830852fc553-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090424.JPG,,FALSE, +N1,60191,sortie-79a46f58-8b62-4f92-b1c8-f830852fc553,https://biolit.fr/sorties/sortie-79a46f58-8b62-4f92-b1c8-f830852fc553/,Phil,,11/05/2017,13.000005,13.0:15,47.797054000000,-4.177388000000,,Loctudy - Finistère,46298,observation-79a46f58-8b62-4f92-b1c8-f830852fc553-4,https://biolit.fr/observations/observation-79a46f58-8b62-4f92-b1c8-f830852fc553-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090427.JPG,,FALSE, +N1,60192,sortie-03b0e676-46a8-4db8-9d33-17daa466e067,https://biolit.fr/sorties/sortie-03b0e676-46a8-4db8-9d33-17daa466e067/,Phil,,11/06/2017,11.0:45,11.0000000,48.004189000000,-4.521144000000,,Plouhinec - Finistère,46300,observation-03b0e676-46a8-4db8-9d33-17daa466e067,https://biolit.fr/observations/observation-03b0e676-46a8-4db8-9d33-17daa466e067/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_114646.jpg,,FALSE, +N1,60192,sortie-03b0e676-46a8-4db8-9d33-17daa466e067,https://biolit.fr/sorties/sortie-03b0e676-46a8-4db8-9d33-17daa466e067/,Phil,,11/06/2017,11.0:45,11.0000000,48.004189000000,-4.521144000000,,Plouhinec - Finistère,46302,observation-03b0e676-46a8-4db8-9d33-17daa466e067-2,https://biolit.fr/observations/observation-03b0e676-46a8-4db8-9d33-17daa466e067-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_114720.jpg,,FALSE, +N1,60192,sortie-03b0e676-46a8-4db8-9d33-17daa466e067,https://biolit.fr/sorties/sortie-03b0e676-46a8-4db8-9d33-17daa466e067/,Phil,,11/06/2017,11.0:45,11.0000000,48.004189000000,-4.521144000000,,Plouhinec - Finistère,46304,observation-03b0e676-46a8-4db8-9d33-17daa466e067-3,https://biolit.fr/observations/observation-03b0e676-46a8-4db8-9d33-17daa466e067-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_114646_0.jpg,,FALSE, +N1,60192,sortie-03b0e676-46a8-4db8-9d33-17daa466e067,https://biolit.fr/sorties/sortie-03b0e676-46a8-4db8-9d33-17daa466e067/,Phil,,11/06/2017,11.0:45,11.0000000,48.004189000000,-4.521144000000,,Plouhinec - Finistère,46306,observation-03b0e676-46a8-4db8-9d33-17daa466e067-4,https://biolit.fr/observations/observation-03b0e676-46a8-4db8-9d33-17daa466e067-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_114641.jpg,,FALSE, +N1,60193,sortie-77b16bd9-fbcc-4077-8371-0a78ef620d3a,https://biolit.fr/sorties/sortie-77b16bd9-fbcc-4077-8371-0a78ef620d3a/,Phil,,3/23/2017 0:00,13.0000000,14.000005,47.946738000000,-4.409667000000,,Pouldreuzic - Finistère,46308,observation-77b16bd9-fbcc-4077-8371-0a78ef620d3a,https://biolit.fr/observations/observation-77b16bd9-fbcc-4077-8371-0a78ef620d3a/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170323_135247.jpg,,FALSE, +N1,60193,sortie-77b16bd9-fbcc-4077-8371-0a78ef620d3a,https://biolit.fr/sorties/sortie-77b16bd9-fbcc-4077-8371-0a78ef620d3a/,Phil,,3/23/2017 0:00,13.0000000,14.000005,47.946738000000,-4.409667000000,,Pouldreuzic - Finistère,46310,observation-77b16bd9-fbcc-4077-8371-0a78ef620d3a-2,https://biolit.fr/observations/observation-77b16bd9-fbcc-4077-8371-0a78ef620d3a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170323_140017.jpg,,FALSE, +N1,60194,sortie-0bc69ef8-7561-49a4-8c76-df6a16cf9792,https://biolit.fr/sorties/sortie-0bc69ef8-7561-49a4-8c76-df6a16cf9792/,NatsuDragnir,,11/23/2017 0:00,10.0000000,12.0000000,43.417362000000,5.1720250000,,étang de berre,46312,observation-0bc69ef8-7561-49a4-8c76-df6a16cf9792,https://biolit.fr/observations/observation-0bc69ef8-7561-49a4-8c76-df6a16cf9792/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_113810[1]-scaled.jpg,,FALSE, +N1,60194,sortie-0bc69ef8-7561-49a4-8c76-df6a16cf9792,https://biolit.fr/sorties/sortie-0bc69ef8-7561-49a4-8c76-df6a16cf9792/,NatsuDragnir,,11/23/2017 0:00,10.0000000,12.0000000,43.417362000000,5.1720250000,,étang de berre,46314,observation-0bc69ef8-7561-49a4-8c76-df6a16cf9792-2,https://biolit.fr/observations/observation-0bc69ef8-7561-49a4-8c76-df6a16cf9792-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_105429[1]-scaled.jpg,,FALSE, +N1,60194,sortie-0bc69ef8-7561-49a4-8c76-df6a16cf9792,https://biolit.fr/sorties/sortie-0bc69ef8-7561-49a4-8c76-df6a16cf9792/,NatsuDragnir,,11/23/2017 0:00,10.0000000,12.0000000,43.417362000000,5.1720250000,,étang de berre,46316,observation-0bc69ef8-7561-49a4-8c76-df6a16cf9792-3,https://biolit.fr/observations/observation-0bc69ef8-7561-49a4-8c76-df6a16cf9792-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_105441[1]-scaled.jpg,,FALSE, +N1,60194,sortie-0bc69ef8-7561-49a4-8c76-df6a16cf9792,https://biolit.fr/sorties/sortie-0bc69ef8-7561-49a4-8c76-df6a16cf9792/,NatsuDragnir,,11/23/2017 0:00,10.0000000,12.0000000,43.417362000000,5.1720250000,,étang de berre,46318,observation-0bc69ef8-7561-49a4-8c76-df6a16cf9792-4,https://biolit.fr/observations/observation-0bc69ef8-7561-49a4-8c76-df6a16cf9792-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_110156[1]-scaled.jpg,,FALSE, +N1,60195,sortie-3c6f9c70-f6b8-4e0e-8708-43fd3bbaf102,https://biolit.fr/sorties/sortie-3c6f9c70-f6b8-4e0e-8708-43fd3bbaf102/,NatsuDragnir,,11/23/2017 0:00,13.0000000,17.0000000,43.3313930000,5.071124000000,,anse de sainte croix,46320,observation-3c6f9c70-f6b8-4e0e-8708-43fd3bbaf102,https://biolit.fr/observations/observation-3c6f9c70-f6b8-4e0e-8708-43fd3bbaf102/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_144005[1]-scaled.jpg,,FALSE, +N1,60195,sortie-3c6f9c70-f6b8-4e0e-8708-43fd3bbaf102,https://biolit.fr/sorties/sortie-3c6f9c70-f6b8-4e0e-8708-43fd3bbaf102/,NatsuDragnir,,11/23/2017 0:00,13.0000000,17.0000000,43.3313930000,5.071124000000,,anse de sainte croix,46322,observation-3c6f9c70-f6b8-4e0e-8708-43fd3bbaf102-2,https://biolit.fr/observations/observation-3c6f9c70-f6b8-4e0e-8708-43fd3bbaf102-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_144053[1]-scaled.jpg,,FALSE, +N1,60196,sortie-264f5562-2c3f-420b-b06e-42344f27fe96,https://biolit.fr/sorties/sortie-264f5562-2c3f-420b-b06e-42344f27fe96/,NatsuDragnir,,11/23/2017 0:00,9.0000000,12.0000000,43.425196000000,5.180651000000,,étang de berre,46324,observation-264f5562-2c3f-420b-b06e-42344f27fe96,https://biolit.fr/observations/observation-264f5562-2c3f-420b-b06e-42344f27fe96/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/20171123_101407[1]-scaled.jpg,,TRUE, +N1,60196,sortie-264f5562-2c3f-420b-b06e-42344f27fe96,https://biolit.fr/sorties/sortie-264f5562-2c3f-420b-b06e-42344f27fe96/,NatsuDragnir,,11/23/2017 0:00,9.0000000,12.0000000,43.425196000000,5.180651000000,,étang de berre,46326,observation-264f5562-2c3f-420b-b06e-42344f27fe96-2,https://biolit.fr/observations/observation-264f5562-2c3f-420b-b06e-42344f27fe96-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_123019[1]-scaled.jpg,,FALSE, +N1,60196,sortie-264f5562-2c3f-420b-b06e-42344f27fe96,https://biolit.fr/sorties/sortie-264f5562-2c3f-420b-b06e-42344f27fe96/,NatsuDragnir,,11/23/2017 0:00,9.0000000,12.0000000,43.425196000000,5.180651000000,,étang de berre,46328,observation-264f5562-2c3f-420b-b06e-42344f27fe96-3,https://biolit.fr/observations/observation-264f5562-2c3f-420b-b06e-42344f27fe96-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_120350[1]-scaled.jpg,,FALSE, +N1,60196,sortie-264f5562-2c3f-420b-b06e-42344f27fe96,https://biolit.fr/sorties/sortie-264f5562-2c3f-420b-b06e-42344f27fe96/,NatsuDragnir,,11/23/2017 0:00,9.0000000,12.0000000,43.425196000000,5.180651000000,,étang de berre,46330,observation-264f5562-2c3f-420b-b06e-42344f27fe96-4,https://biolit.fr/observations/observation-264f5562-2c3f-420b-b06e-42344f27fe96-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_122334[1]_0-scaled.jpg,,FALSE, +N1,60196,sortie-264f5562-2c3f-420b-b06e-42344f27fe96,https://biolit.fr/sorties/sortie-264f5562-2c3f-420b-b06e-42344f27fe96/,NatsuDragnir,,11/23/2017 0:00,9.0000000,12.0000000,43.425196000000,5.180651000000,,étang de berre,46332,observation-264f5562-2c3f-420b-b06e-42344f27fe96-5,https://biolit.fr/observations/observation-264f5562-2c3f-420b-b06e-42344f27fe96-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_122341[1]-scaled.jpg,,FALSE, +N1,60196,sortie-264f5562-2c3f-420b-b06e-42344f27fe96,https://biolit.fr/sorties/sortie-264f5562-2c3f-420b-b06e-42344f27fe96/,NatsuDragnir,,11/23/2017 0:00,9.0000000,12.0000000,43.425196000000,5.180651000000,,étang de berre,46334,observation-264f5562-2c3f-420b-b06e-42344f27fe96-6,https://biolit.fr/observations/observation-264f5562-2c3f-420b-b06e-42344f27fe96-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_121152[1]-scaled.jpg,,FALSE, +N1,60196,sortie-264f5562-2c3f-420b-b06e-42344f27fe96,https://biolit.fr/sorties/sortie-264f5562-2c3f-420b-b06e-42344f27fe96/,NatsuDragnir,,11/23/2017 0:00,9.0000000,12.0000000,43.425196000000,5.180651000000,,étang de berre,46336,observation-264f5562-2c3f-420b-b06e-42344f27fe96-7,https://biolit.fr/observations/observation-264f5562-2c3f-420b-b06e-42344f27fe96-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_123232[1]-scaled.jpg,,FALSE, +N1,60197,sortie-afbbcf25-2f91-485c-a24f-a936ce219afa,https://biolit.fr/sorties/sortie-afbbcf25-2f91-485c-a24f-a936ce219afa/,sedeck,,11/24/2017 0:00,11.0:25,13.0000000,43.423737000000,5.17908200000,,Etang de Berre,46338,observation-afbbcf25-2f91-485c-a24f-a936ce219afa,https://biolit.fr/observations/observation-afbbcf25-2f91-485c-a24f-a936ce219afa/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0152[1]-scaled.jpg,,FALSE, +N1,60198,sortie-0df0b5db-8f16-4199-abef-b6a507fc9e0e,https://biolit.fr/sorties/sortie-0df0b5db-8f16-4199-abef-b6a507fc9e0e/,pintballeur2000,,11/23/2017 0:00,13.0000000,17.0000000,43.331272000000,5.071418000000,,la cote bleu ,46340,observation-0df0b5db-8f16-4199-abef-b6a507fc9e0e,https://biolit.fr/observations/observation-0df0b5db-8f16-4199-abef-b6a507fc9e0e/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171123_224852_921[1].jpg,,FALSE, +N1,60198,sortie-0df0b5db-8f16-4199-abef-b6a507fc9e0e,https://biolit.fr/sorties/sortie-0df0b5db-8f16-4199-abef-b6a507fc9e0e/,pintballeur2000,,11/23/2017 0:00,13.0000000,17.0000000,43.331272000000,5.071418000000,,la cote bleu ,46342,observation-0df0b5db-8f16-4199-abef-b6a507fc9e0e-2,https://biolit.fr/observations/observation-0df0b5db-8f16-4199-abef-b6a507fc9e0e-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/20171123_155018[1]-scaled.jpg,,TRUE, +N1,60198,sortie-0df0b5db-8f16-4199-abef-b6a507fc9e0e,https://biolit.fr/sorties/sortie-0df0b5db-8f16-4199-abef-b6a507fc9e0e/,pintballeur2000,,11/23/2017 0:00,13.0000000,17.0000000,43.331272000000,5.071418000000,,la cote bleu ,46344,observation-0df0b5db-8f16-4199-abef-b6a507fc9e0e-3,https://biolit.fr/observations/observation-0df0b5db-8f16-4199-abef-b6a507fc9e0e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_160021[1]-scaled.jpg,,FALSE, +N1,60198,sortie-0df0b5db-8f16-4199-abef-b6a507fc9e0e,https://biolit.fr/sorties/sortie-0df0b5db-8f16-4199-abef-b6a507fc9e0e/,pintballeur2000,,11/23/2017 0:00,13.0000000,17.0000000,43.331272000000,5.071418000000,,la cote bleu ,46346,observation-0df0b5db-8f16-4199-abef-b6a507fc9e0e-4,https://biolit.fr/observations/observation-0df0b5db-8f16-4199-abef-b6a507fc9e0e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_155557[1]-scaled.jpg,,FALSE, +N1,60198,sortie-0df0b5db-8f16-4199-abef-b6a507fc9e0e,https://biolit.fr/sorties/sortie-0df0b5db-8f16-4199-abef-b6a507fc9e0e/,pintballeur2000,,11/23/2017 0:00,13.0000000,17.0000000,43.331272000000,5.071418000000,,la cote bleu ,46348,observation-0df0b5db-8f16-4199-abef-b6a507fc9e0e-5,https://biolit.fr/observations/observation-0df0b5db-8f16-4199-abef-b6a507fc9e0e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_152353[1]-scaled.jpg,,FALSE, +N1,60199,sortie-f1ed536f-9ed8-460a-8afe-ec289627cec0,https://biolit.fr/sorties/sortie-f1ed536f-9ed8-460a-8afe-ec289627cec0/,Salomé et Clotilde,,11/23/2017 0:00,14.0000000,15.0:45,43.332052000000,5.066397000000,,Plage de sainte croix,46350,observation-f1ed536f-9ed8-460a-8afe-ec289627cec0,https://biolit.fr/observations/observation-f1ed536f-9ed8-460a-8afe-ec289627cec0/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0163[1].JPG,,FALSE, +N1,60199,sortie-f1ed536f-9ed8-460a-8afe-ec289627cec0,https://biolit.fr/sorties/sortie-f1ed536f-9ed8-460a-8afe-ec289627cec0/,Salomé et Clotilde,,11/23/2017 0:00,14.0000000,15.0:45,43.332052000000,5.066397000000,,Plage de sainte croix,46352,observation-f1ed536f-9ed8-460a-8afe-ec289627cec0-2,https://biolit.fr/observations/observation-f1ed536f-9ed8-460a-8afe-ec289627cec0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0164[1].JPG,,FALSE, +N1,60200,sortie-ed5c5629-a80a-46ae-bcf7-5c0c6a2d6985,https://biolit.fr/sorties/sortie-ed5c5629-a80a-46ae-bcf7-5c0c6a2d6985/,quentin13710,,11/24/2017 0:00,11.0000000,13.0000000,43.32894400000,5.078325000000,,port des tamaris,46354,observation-ed5c5629-a80a-46ae-bcf7-5c0c6a2d6985,https://biolit.fr/observations/observation-ed5c5629-a80a-46ae-bcf7-5c0c6a2d6985/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1682[1].PNG,,FALSE, +N1,60201,sortie-8aaf2beb-acf2-4d2a-ac5a-063162701653,https://biolit.fr/sorties/sortie-8aaf2beb-acf2-4d2a-ac5a-063162701653/,enzo13,,11/24/2017 0:00,11.0000000,13.0000000,43.33148600000,5.071241000000,,Sausset-les-Pins,46356,observation-8aaf2beb-acf2-4d2a-ac5a-063162701653,https://biolit.fr/observations/observation-8aaf2beb-acf2-4d2a-ac5a-063162701653/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_153451.jpg,,FALSE, +N1,60202,sortie-ed39dc18-42b6-45f3-accb-64388666c1c3,https://biolit.fr/sorties/sortie-ed39dc18-42b6-45f3-accb-64388666c1c3/,Flav_Gly1323,,11/24/2017 0:00,10.0000000,12.0000000,43.422966000000,5.177794000000,,plage du Jai,46358,observation-ed39dc18-42b6-45f3-accb-64388666c1c3,https://biolit.fr/observations/observation-ed39dc18-42b6-45f3-accb-64388666c1c3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171124_112042_901[1].jpg,,FALSE, +N1,60203,sortie-a4a8e6e7-8ba7-47bd-b2a7-7efddb49efa0,https://biolit.fr/sorties/sortie-a4a8e6e7-8ba7-47bd-b2a7-7efddb49efa0/,sedeck,,11/24/2017 0:00,11.0000000,13.0000000,43.423633000000,5.179007000000,,Etang de Berre,46360,observation-a4a8e6e7-8ba7-47bd-b2a7-7efddb49efa0,https://biolit.fr/observations/observation-a4a8e6e7-8ba7-47bd-b2a7-7efddb49efa0/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0110[1]-scaled.jpg,,FALSE, +N1,60204,sortie-1a1d7483-9af5-428c-b268-876ebb26f64a,https://biolit.fr/sorties/sortie-1a1d7483-9af5-428c-b268-876ebb26f64a/,pintballeur2000,,11/23/2017 0:00,9.0000000,12.0000000,43.419645000000,5.173557000000,,lido du jai,46362,observation-1a1d7483-9af5-428c-b268-876ebb26f64a,https://biolit.fr/observations/observation-1a1d7483-9af5-428c-b268-876ebb26f64a/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_100404[1]-scaled.jpg,,FALSE, +N1,60204,sortie-1a1d7483-9af5-428c-b268-876ebb26f64a,https://biolit.fr/sorties/sortie-1a1d7483-9af5-428c-b268-876ebb26f64a/,pintballeur2000,,11/23/2017 0:00,9.0000000,12.0000000,43.419645000000,5.173557000000,,lido du jai,46364,observation-1a1d7483-9af5-428c-b268-876ebb26f64a-2,https://biolit.fr/observations/observation-1a1d7483-9af5-428c-b268-876ebb26f64a-2/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/20171123_101409[1]-scaled.jpg,,TRUE, +N1,60204,sortie-1a1d7483-9af5-428c-b268-876ebb26f64a,https://biolit.fr/sorties/sortie-1a1d7483-9af5-428c-b268-876ebb26f64a/,pintballeur2000,,11/23/2017 0:00,9.0000000,12.0000000,43.419645000000,5.173557000000,,lido du jai,46366,observation-1a1d7483-9af5-428c-b268-876ebb26f64a-3,https://biolit.fr/observations/observation-1a1d7483-9af5-428c-b268-876ebb26f64a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_101903[1]-scaled.jpg,,FALSE, +N1,60204,sortie-1a1d7483-9af5-428c-b268-876ebb26f64a,https://biolit.fr/sorties/sortie-1a1d7483-9af5-428c-b268-876ebb26f64a/,pintballeur2000,,11/23/2017 0:00,9.0000000,12.0000000,43.419645000000,5.173557000000,,lido du jai,46368,observation-1a1d7483-9af5-428c-b268-876ebb26f64a-4,https://biolit.fr/observations/observation-1a1d7483-9af5-428c-b268-876ebb26f64a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_121200[1]-scaled.jpg,,FALSE, +N1,60204,sortie-1a1d7483-9af5-428c-b268-876ebb26f64a,https://biolit.fr/sorties/sortie-1a1d7483-9af5-428c-b268-876ebb26f64a/,pintballeur2000,,11/23/2017 0:00,9.0000000,12.0000000,43.419645000000,5.173557000000,,lido du jai,46370,observation-1a1d7483-9af5-428c-b268-876ebb26f64a-5,https://biolit.fr/observations/observation-1a1d7483-9af5-428c-b268-876ebb26f64a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_122334[1]-scaled.jpg,,FALSE, +N1,60204,sortie-1a1d7483-9af5-428c-b268-876ebb26f64a,https://biolit.fr/sorties/sortie-1a1d7483-9af5-428c-b268-876ebb26f64a/,pintballeur2000,,11/23/2017 0:00,9.0000000,12.0000000,43.419645000000,5.173557000000,,lido du jai,46372,observation-1a1d7483-9af5-428c-b268-876ebb26f64a-6,https://biolit.fr/observations/observation-1a1d7483-9af5-428c-b268-876ebb26f64a-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_123024[1]-scaled.jpg,,FALSE, +N1,60205,sortie-e6f77033-5b92-4a9d-b27f-442d9353dc5d,https://biolit.fr/sorties/sortie-e6f77033-5b92-4a9d-b27f-442d9353dc5d/,quentin13710,,11/23/2017 0:00,10.0000000,12.0000000,43.423680000000,5.178859000000,,etang de berre,46374,observation-e6f77033-5b92-4a9d-b27f-442d9353dc5d,https://biolit.fr/observations/observation-e6f77033-5b92-4a9d-b27f-442d9353dc5d/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0046[1]-scaled.jpg,,FALSE, +N1,60206,sortie-d320ed62-481a-4875-a9b9-9fb7f476ceee,https://biolit.fr/sorties/sortie-d320ed62-481a-4875-a9b9-9fb7f476ceee/,sedeck,,11/24/2017 0:00,11.0000000,13.0000000,63.982705000000,-107.14752900000,,Etang de Berre,46376,observation-d320ed62-481a-4875-a9b9-9fb7f476ceee,https://biolit.fr/observations/observation-d320ed62-481a-4875-a9b9-9fb7f476ceee/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0112[1]-scaled.jpg,,FALSE, +N1,60207,sortie-5ddd437f-4faa-4c77-b370-977947f2763e,https://biolit.fr/sorties/sortie-5ddd437f-4faa-4c77-b370-977947f2763e/,dorine,,11/23/2017 0:00,9.0000000,12.0:25,43.404025000000,5.143859000000,,lido du jaï,46378,observation-5ddd437f-4faa-4c77-b370-977947f2763e,https://biolit.fr/observations/observation-5ddd437f-4faa-4c77-b370-977947f2763e/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_120344[1]-scaled.jpg,,FALSE, +N1,60207,sortie-5ddd437f-4faa-4c77-b370-977947f2763e,https://biolit.fr/sorties/sortie-5ddd437f-4faa-4c77-b370-977947f2763e/,dorine,,11/23/2017 0:00,9.0000000,12.0:25,43.404025000000,5.143859000000,,lido du jaï,46380,observation-5ddd437f-4faa-4c77-b370-977947f2763e-2,https://biolit.fr/observations/observation-5ddd437f-4faa-4c77-b370-977947f2763e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_120434[1]-scaled.jpg,,FALSE, +N1,60207,sortie-5ddd437f-4faa-4c77-b370-977947f2763e,https://biolit.fr/sorties/sortie-5ddd437f-4faa-4c77-b370-977947f2763e/,dorine,,11/23/2017 0:00,9.0000000,12.0:25,43.404025000000,5.143859000000,,lido du jaï,46382,observation-5ddd437f-4faa-4c77-b370-977947f2763e-3,https://biolit.fr/observations/observation-5ddd437f-4faa-4c77-b370-977947f2763e-3/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/20171123_120605[1]-scaled.jpg,,TRUE, +N1,60207,sortie-5ddd437f-4faa-4c77-b370-977947f2763e,https://biolit.fr/sorties/sortie-5ddd437f-4faa-4c77-b370-977947f2763e/,dorine,,11/23/2017 0:00,9.0000000,12.0:25,43.404025000000,5.143859000000,,lido du jaï,46384,observation-5ddd437f-4faa-4c77-b370-977947f2763e-4,https://biolit.fr/observations/observation-5ddd437f-4faa-4c77-b370-977947f2763e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_120754[1]-scaled.jpg,,FALSE, +N1,60207,sortie-5ddd437f-4faa-4c77-b370-977947f2763e,https://biolit.fr/sorties/sortie-5ddd437f-4faa-4c77-b370-977947f2763e/,dorine,,11/23/2017 0:00,9.0000000,12.0:25,43.404025000000,5.143859000000,,lido du jaï,46386,observation-5ddd437f-4faa-4c77-b370-977947f2763e-5,https://biolit.fr/observations/observation-5ddd437f-4faa-4c77-b370-977947f2763e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_122353[1]-scaled.jpg,,FALSE, +N1,60207,sortie-5ddd437f-4faa-4c77-b370-977947f2763e,https://biolit.fr/sorties/sortie-5ddd437f-4faa-4c77-b370-977947f2763e/,dorine,,11/23/2017 0:00,9.0000000,12.0:25,43.404025000000,5.143859000000,,lido du jaï,46388,observation-5ddd437f-4faa-4c77-b370-977947f2763e-6,https://biolit.fr/observations/observation-5ddd437f-4faa-4c77-b370-977947f2763e-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_131725[1]-scaled.jpg,,FALSE, +N1,60207,sortie-5ddd437f-4faa-4c77-b370-977947f2763e,https://biolit.fr/sorties/sortie-5ddd437f-4faa-4c77-b370-977947f2763e/,dorine,,11/23/2017 0:00,9.0000000,12.0:25,43.404025000000,5.143859000000,,lido du jaï,46390,observation-5ddd437f-4faa-4c77-b370-977947f2763e-7,https://biolit.fr/observations/observation-5ddd437f-4faa-4c77-b370-977947f2763e-7/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/20171123_121642[1]-scaled.jpg,,TRUE, +N1,60208,sortie-822f8a6e-36b2-496f-8748-692ed33789d9,https://biolit.fr/sorties/sortie-822f8a6e-36b2-496f-8748-692ed33789d9/,sedeck,,11/23/2017 0:00,14.0000000,16.0000000,43.331566000000,5.071213000000,,Cote Bleue,46392,observation-822f8a6e-36b2-496f-8748-692ed33789d9,https://biolit.fr/observations/observation-822f8a6e-36b2-496f-8748-692ed33789d9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0143[1]_0-scaled.jpg,,FALSE, +N1,60209,sortie-e6ed9a5e-3df8-49ed-8ca0-8911615e98c2,https://biolit.fr/sorties/sortie-e6ed9a5e-3df8-49ed-8ca0-8911615e98c2/,enzo13,,11/23/2017 0:00,10.0000000,11.0:45,43.423023000000,5.178536000000,,L'Étang de Berre,46394,observation-e6ed9a5e-3df8-49ed-8ca0-8911615e98c2,https://biolit.fr/observations/observation-e6ed9a5e-3df8-49ed-8ca0-8911615e98c2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_120725-scaled.jpg,,FALSE, +N1,60210,sortie-649892e7-7d31-406a-a5a6-0510ded7b46a,https://biolit.fr/sorties/sortie-649892e7-7d31-406a-a5a6-0510ded7b46a/,AIEJE,,11/23/2017 0:00,10.0:15,16.0000000,43.415828000000,5.173385000000,,étang de berre ,46396,observation-649892e7-7d31-406a-a5a6-0510ded7b46a,https://biolit.fr/observations/observation-649892e7-7d31-406a-a5a6-0510ded7b46a/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171123_120637-scaled.jpg,,FALSE, +N1,60210,sortie-649892e7-7d31-406a-a5a6-0510ded7b46a,https://biolit.fr/sorties/sortie-649892e7-7d31-406a-a5a6-0510ded7b46a/,AIEJE,,11/23/2017 0:00,10.0:15,16.0000000,43.415828000000,5.173385000000,,étang de berre ,46398,observation-649892e7-7d31-406a-a5a6-0510ded7b46a-2,https://biolit.fr/observations/observation-649892e7-7d31-406a-a5a6-0510ded7b46a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171123_121927-scaled.jpg,,FALSE, +N1,60211,sortie-fd03bc72-0375-4985-85b0-4104b6227473,https://biolit.fr/sorties/sortie-fd03bc72-0375-4985-85b0-4104b6227473/,baptistemanon,,11/23/2017 0:00,11.0000000,12.0000000,43.422329000000,5.176947000000,,etang de berre,46400,observation-fd03bc72-0375-4985-85b0-4104b6227473,https://biolit.fr/observations/observation-fd03bc72-0375-4985-85b0-4104b6227473/,,,,https://biolit.fr/wp-content/uploads/2023/07/amangement 1.PNG,,FALSE, +N1,60211,sortie-fd03bc72-0375-4985-85b0-4104b6227473,https://biolit.fr/sorties/sortie-fd03bc72-0375-4985-85b0-4104b6227473/,baptistemanon,,11/23/2017 0:00,11.0000000,12.0000000,43.422329000000,5.176947000000,,etang de berre,46402,observation-fd03bc72-0375-4985-85b0-4104b6227473-2,https://biolit.fr/observations/observation-fd03bc72-0375-4985-85b0-4104b6227473-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/amenagement 2.PNG,,FALSE, +N1,60211,sortie-fd03bc72-0375-4985-85b0-4104b6227473,https://biolit.fr/sorties/sortie-fd03bc72-0375-4985-85b0-4104b6227473/,baptistemanon,,11/23/2017 0:00,11.0000000,12.0000000,43.422329000000,5.176947000000,,etang de berre,46404,observation-fd03bc72-0375-4985-85b0-4104b6227473-3,https://biolit.fr/observations/observation-fd03bc72-0375-4985-85b0-4104b6227473-3/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/amenagement 3.PNG,,TRUE, +N1,60211,sortie-fd03bc72-0375-4985-85b0-4104b6227473,https://biolit.fr/sorties/sortie-fd03bc72-0375-4985-85b0-4104b6227473/,baptistemanon,,11/23/2017 0:00,11.0000000,12.0000000,43.422329000000,5.176947000000,,etang de berre,46406,observation-fd03bc72-0375-4985-85b0-4104b6227473-4,https://biolit.fr/observations/observation-fd03bc72-0375-4985-85b0-4104b6227473-4/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/amenagement4.PNG,,TRUE, +N1,60211,sortie-fd03bc72-0375-4985-85b0-4104b6227473,https://biolit.fr/sorties/sortie-fd03bc72-0375-4985-85b0-4104b6227473/,baptistemanon,,11/23/2017 0:00,11.0000000,12.0000000,43.422329000000,5.176947000000,,etang de berre,46408,observation-fd03bc72-0375-4985-85b0-4104b6227473-5,https://biolit.fr/observations/observation-fd03bc72-0375-4985-85b0-4104b6227473-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/amenagement 5.PNG,,FALSE, +N1,60211,sortie-fd03bc72-0375-4985-85b0-4104b6227473,https://biolit.fr/sorties/sortie-fd03bc72-0375-4985-85b0-4104b6227473/,baptistemanon,,11/23/2017 0:00,11.0000000,12.0000000,43.422329000000,5.176947000000,,etang de berre,46410,observation-fd03bc72-0375-4985-85b0-4104b6227473-6,https://biolit.fr/observations/observation-fd03bc72-0375-4985-85b0-4104b6227473-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/amenagement 8.PNG,,FALSE, +N1,60211,sortie-fd03bc72-0375-4985-85b0-4104b6227473,https://biolit.fr/sorties/sortie-fd03bc72-0375-4985-85b0-4104b6227473/,baptistemanon,,11/23/2017 0:00,11.0000000,12.0000000,43.422329000000,5.176947000000,,etang de berre,46412,observation-fd03bc72-0375-4985-85b0-4104b6227473-7,https://biolit.fr/observations/observation-fd03bc72-0375-4985-85b0-4104b6227473-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/amenagement9.PNG,,FALSE, +N1,60211,sortie-fd03bc72-0375-4985-85b0-4104b6227473,https://biolit.fr/sorties/sortie-fd03bc72-0375-4985-85b0-4104b6227473/,baptistemanon,,11/23/2017 0:00,11.0000000,12.0000000,43.422329000000,5.176947000000,,etang de berre,46414,observation-fd03bc72-0375-4985-85b0-4104b6227473-8,https://biolit.fr/observations/observation-fd03bc72-0375-4985-85b0-4104b6227473-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/amenagement 6.PNG,,FALSE, +N1,60211,sortie-fd03bc72-0375-4985-85b0-4104b6227473,https://biolit.fr/sorties/sortie-fd03bc72-0375-4985-85b0-4104b6227473/,baptistemanon,,11/23/2017 0:00,11.0000000,12.0000000,43.422329000000,5.176947000000,,etang de berre,46416,observation-fd03bc72-0375-4985-85b0-4104b6227473-9,https://biolit.fr/observations/observation-fd03bc72-0375-4985-85b0-4104b6227473-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/amenagement 7.PNG,,FALSE, +N1,60211,sortie-fd03bc72-0375-4985-85b0-4104b6227473,https://biolit.fr/sorties/sortie-fd03bc72-0375-4985-85b0-4104b6227473/,baptistemanon,,11/23/2017 0:00,11.0000000,12.0000000,43.422329000000,5.176947000000,,etang de berre,46418,observation-fd03bc72-0375-4985-85b0-4104b6227473-10,https://biolit.fr/observations/observation-fd03bc72-0375-4985-85b0-4104b6227473-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/amenagement 9.PNG,,FALSE, +N1,60211,sortie-fd03bc72-0375-4985-85b0-4104b6227473,https://biolit.fr/sorties/sortie-fd03bc72-0375-4985-85b0-4104b6227473/,baptistemanon,,11/23/2017 0:00,11.0000000,12.0000000,43.422329000000,5.176947000000,,etang de berre,46420,observation-fd03bc72-0375-4985-85b0-4104b6227473-11,https://biolit.fr/observations/observation-fd03bc72-0375-4985-85b0-4104b6227473-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/amenagement 10.PNG,,FALSE, +N1,60212,sortie-1113d5d1-0a8c-45b4-94c6-e082508b93f8,https://biolit.fr/sorties/sortie-1113d5d1-0a8c-45b4-94c6-e082508b93f8/,sedeck,,11/24/2017 0:00,10.0000000,12.0000000,43.423435000000,5.178959000000,,Etang de Berre,46422,observation-1113d5d1-0a8c-45b4-94c6-e082508b93f8,https://biolit.fr/observations/observation-1113d5d1-0a8c-45b4-94c6-e082508b93f8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0123[1]_0-scaled.jpg,,FALSE, +N1,60213,sortie-fccbd605-c0e7-4eb0-96c5-e785f456918b,https://biolit.fr/sorties/sortie-fccbd605-c0e7-4eb0-96c5-e785f456918b/,Alexis13390,,11/23/2017 0:00,8.0:45,17.0000000,43.425114000000,5.181100000000,,Jaï,46424,observation-fccbd605-c0e7-4eb0-96c5-e785f456918b,https://biolit.fr/observations/observation-fccbd605-c0e7-4eb0-96c5-e785f456918b/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_155612[1]-scaled.jpg,,FALSE, +N1,60213,sortie-fccbd605-c0e7-4eb0-96c5-e785f456918b,https://biolit.fr/sorties/sortie-fccbd605-c0e7-4eb0-96c5-e785f456918b/,Alexis13390,,11/23/2017 0:00,8.0:45,17.0000000,43.425114000000,5.181100000000,,Jaï,46426,observation-fccbd605-c0e7-4eb0-96c5-e785f456918b-2,https://biolit.fr/observations/observation-fccbd605-c0e7-4eb0-96c5-e785f456918b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_160143[1]-scaled.jpg,,FALSE, +N1,60213,sortie-fccbd605-c0e7-4eb0-96c5-e785f456918b,https://biolit.fr/sorties/sortie-fccbd605-c0e7-4eb0-96c5-e785f456918b/,Alexis13390,,11/23/2017 0:00,8.0:45,17.0000000,43.425114000000,5.181100000000,,Jaï,46428,observation-fccbd605-c0e7-4eb0-96c5-e785f456918b-3,https://biolit.fr/observations/observation-fccbd605-c0e7-4eb0-96c5-e785f456918b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_123454[1]-scaled.jpg,,FALSE, +N1,60214,sortie-cb5fd276-2ab4-4c95-ac06-f09a359c6b78,https://biolit.fr/sorties/sortie-cb5fd276-2ab4-4c95-ac06-f09a359c6b78/,Salomé et Clotilde,,11/23/2017 0:00,9.0000000,12.0000000,43.411011000000,5.162399000000,,étang de berre,46430,observation-cb5fd276-2ab4-4c95-ac06-f09a359c6b78,https://biolit.fr/observations/observation-cb5fd276-2ab4-4c95-ac06-f09a359c6b78/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0143[1]-scaled.jpg,,FALSE, +N1,60214,sortie-cb5fd276-2ab4-4c95-ac06-f09a359c6b78,https://biolit.fr/sorties/sortie-cb5fd276-2ab4-4c95-ac06-f09a359c6b78/,Salomé et Clotilde,,11/23/2017 0:00,9.0000000,12.0000000,43.411011000000,5.162399000000,,étang de berre,46432,observation-cb5fd276-2ab4-4c95-ac06-f09a359c6b78-2,https://biolit.fr/observations/observation-cb5fd276-2ab4-4c95-ac06-f09a359c6b78-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0140[1]-scaled.jpg,,FALSE, +N1,60214,sortie-cb5fd276-2ab4-4c95-ac06-f09a359c6b78,https://biolit.fr/sorties/sortie-cb5fd276-2ab4-4c95-ac06-f09a359c6b78/,Salomé et Clotilde,,11/23/2017 0:00,9.0000000,12.0000000,43.411011000000,5.162399000000,,étang de berre,46434,observation-cb5fd276-2ab4-4c95-ac06-f09a359c6b78-3,https://biolit.fr/observations/observation-cb5fd276-2ab4-4c95-ac06-f09a359c6b78-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0141[1]-scaled.jpg,,FALSE, +N1,60214,sortie-cb5fd276-2ab4-4c95-ac06-f09a359c6b78,https://biolit.fr/sorties/sortie-cb5fd276-2ab4-4c95-ac06-f09a359c6b78/,Salomé et Clotilde,,11/23/2017 0:00,9.0000000,12.0000000,43.411011000000,5.162399000000,,étang de berre,46436,observation-cb5fd276-2ab4-4c95-ac06-f09a359c6b78-4,https://biolit.fr/observations/observation-cb5fd276-2ab4-4c95-ac06-f09a359c6b78-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0144[1]-scaled.jpg,,FALSE, +N1,60214,sortie-cb5fd276-2ab4-4c95-ac06-f09a359c6b78,https://biolit.fr/sorties/sortie-cb5fd276-2ab4-4c95-ac06-f09a359c6b78/,Salomé et Clotilde,,11/23/2017 0:00,9.0000000,12.0000000,43.411011000000,5.162399000000,,étang de berre,46438,observation-cb5fd276-2ab4-4c95-ac06-f09a359c6b78-5,https://biolit.fr/observations/observation-cb5fd276-2ab4-4c95-ac06-f09a359c6b78-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0145[1]-scaled.jpg,,FALSE, +N1,60214,sortie-cb5fd276-2ab4-4c95-ac06-f09a359c6b78,https://biolit.fr/sorties/sortie-cb5fd276-2ab4-4c95-ac06-f09a359c6b78/,Salomé et Clotilde,,11/23/2017 0:00,9.0000000,12.0000000,43.411011000000,5.162399000000,,étang de berre,46440,observation-cb5fd276-2ab4-4c95-ac06-f09a359c6b78-6,https://biolit.fr/observations/observation-cb5fd276-2ab4-4c95-ac06-f09a359c6b78-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0146[1]-scaled.jpg,,FALSE, +N1,60214,sortie-cb5fd276-2ab4-4c95-ac06-f09a359c6b78,https://biolit.fr/sorties/sortie-cb5fd276-2ab4-4c95-ac06-f09a359c6b78/,Salomé et Clotilde,,11/23/2017 0:00,9.0000000,12.0000000,43.411011000000,5.162399000000,,étang de berre,46442,observation-cb5fd276-2ab4-4c95-ac06-f09a359c6b78-7,https://biolit.fr/observations/observation-cb5fd276-2ab4-4c95-ac06-f09a359c6b78-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0150[1]-scaled.jpg,,FALSE, +N1,60215,sortie-c26a5bdb-dbea-4234-bb88-effbfc046b43,https://biolit.fr/sorties/sortie-c26a5bdb-dbea-4234-bb88-effbfc046b43/,sedeck,,11/24/2017 0:00,10.0000000,12.0000000,43.426622,5.182204,,Etang de Berre,46444,observation-c26a5bdb-dbea-4234-bb88-effbfc046b43,https://biolit.fr/observations/observation-c26a5bdb-dbea-4234-bb88-effbfc046b43/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0119[1]-scaled.jpg,,FALSE, +N1,60215,sortie-c26a5bdb-dbea-4234-bb88-effbfc046b43,https://biolit.fr/sorties/sortie-c26a5bdb-dbea-4234-bb88-effbfc046b43/,sedeck,,11/24/2017 0:00,10.0000000,12.0000000,43.426622,5.182204,,Etang de Berre,46446,observation-c26a5bdb-dbea-4234-bb88-effbfc046b43-2,https://biolit.fr/observations/observation-c26a5bdb-dbea-4234-bb88-effbfc046b43-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0123[1]-scaled.jpg,,FALSE, +N1,60216,sortie-8c0447ba-feac-4797-a2a1-1578678c45f3,https://biolit.fr/sorties/sortie-8c0447ba-feac-4797-a2a1-1578678c45f3/,Phil,,9/22/2017 0:00,11.0:35,11.0:45,47.774628000000,-4.333377000000,,Penmarc'h - Finistère,46448,observation-8c0447ba-feac-4797-a2a1-1578678c45f3,https://biolit.fr/observations/observation-8c0447ba-feac-4797-a2a1-1578678c45f3/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080735.JPG,,TRUE, +N1,60216,sortie-8c0447ba-feac-4797-a2a1-1578678c45f3,https://biolit.fr/sorties/sortie-8c0447ba-feac-4797-a2a1-1578678c45f3/,Phil,,9/22/2017 0:00,11.0:35,11.0:45,47.774628000000,-4.333377000000,,Penmarc'h - Finistère,46450,observation-8c0447ba-feac-4797-a2a1-1578678c45f3-2,https://biolit.fr/observations/observation-8c0447ba-feac-4797-a2a1-1578678c45f3-2/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080743.JPG,,TRUE, +N1,60216,sortie-8c0447ba-feac-4797-a2a1-1578678c45f3,https://biolit.fr/sorties/sortie-8c0447ba-feac-4797-a2a1-1578678c45f3/,Phil,,9/22/2017 0:00,11.0:35,11.0:45,47.774628000000,-4.333377000000,,Penmarc'h - Finistère,46452,observation-8c0447ba-feac-4797-a2a1-1578678c45f3-3,https://biolit.fr/observations/observation-8c0447ba-feac-4797-a2a1-1578678c45f3-3/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080752.JPG,,TRUE, +N1,60216,sortie-8c0447ba-feac-4797-a2a1-1578678c45f3,https://biolit.fr/sorties/sortie-8c0447ba-feac-4797-a2a1-1578678c45f3/,Phil,,9/22/2017 0:00,11.0:35,11.0:45,47.774628000000,-4.333377000000,,Penmarc'h - Finistère,46454,observation-8c0447ba-feac-4797-a2a1-1578678c45f3-4,https://biolit.fr/observations/observation-8c0447ba-feac-4797-a2a1-1578678c45f3-4/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080753.JPG,,TRUE, +N1,60216,sortie-8c0447ba-feac-4797-a2a1-1578678c45f3,https://biolit.fr/sorties/sortie-8c0447ba-feac-4797-a2a1-1578678c45f3/,Phil,,9/22/2017 0:00,11.0:35,11.0:45,47.774628000000,-4.333377000000,,Penmarc'h - Finistère,46456,observation-8c0447ba-feac-4797-a2a1-1578678c45f3-5,https://biolit.fr/observations/observation-8c0447ba-feac-4797-a2a1-1578678c45f3-5/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080757.JPG,,TRUE, +N1,60216,sortie-8c0447ba-feac-4797-a2a1-1578678c45f3,https://biolit.fr/sorties/sortie-8c0447ba-feac-4797-a2a1-1578678c45f3/,Phil,,9/22/2017 0:00,11.0:35,11.0:45,47.774628000000,-4.333377000000,,Penmarc'h - Finistère,46458,observation-8c0447ba-feac-4797-a2a1-1578678c45f3-6,https://biolit.fr/observations/observation-8c0447ba-feac-4797-a2a1-1578678c45f3-6/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080789.JPG,,TRUE, +N1,60216,sortie-8c0447ba-feac-4797-a2a1-1578678c45f3,https://biolit.fr/sorties/sortie-8c0447ba-feac-4797-a2a1-1578678c45f3/,Phil,,9/22/2017 0:00,11.0:35,11.0:45,47.774628000000,-4.333377000000,,Penmarc'h - Finistère,46460,observation-8c0447ba-feac-4797-a2a1-1578678c45f3-7,https://biolit.fr/observations/observation-8c0447ba-feac-4797-a2a1-1578678c45f3-7/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080797.JPG,,TRUE, +N1,60216,sortie-8c0447ba-feac-4797-a2a1-1578678c45f3,https://biolit.fr/sorties/sortie-8c0447ba-feac-4797-a2a1-1578678c45f3/,Phil,,9/22/2017 0:00,11.0:35,11.0:45,47.774628000000,-4.333377000000,,Penmarc'h - Finistère,46462,observation-8c0447ba-feac-4797-a2a1-1578678c45f3-8,https://biolit.fr/observations/observation-8c0447ba-feac-4797-a2a1-1578678c45f3-8/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080798.JPG,,TRUE, +N1,60217,sortie-20869cf4-ebf5-4856-aa83-e1830c8111bd,https://biolit.fr/sorties/sortie-20869cf4-ebf5-4856-aa83-e1830c8111bd/,Phil,,11/04/2017,18.000005,18.0:15,47.803819000000,-4.374992000000,,Penmarc'h - Finistère,46464,observation-20869cf4-ebf5-4856-aa83-e1830c8111bd,https://biolit.fr/observations/observation-20869cf4-ebf5-4856-aa83-e1830c8111bd/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090316.JPG,,FALSE, +N1,60217,sortie-20869cf4-ebf5-4856-aa83-e1830c8111bd,https://biolit.fr/sorties/sortie-20869cf4-ebf5-4856-aa83-e1830c8111bd/,Phil,,11/04/2017,18.000005,18.0:15,47.803819000000,-4.374992000000,,Penmarc'h - Finistère,46466,observation-20869cf4-ebf5-4856-aa83-e1830c8111bd-2,https://biolit.fr/observations/observation-20869cf4-ebf5-4856-aa83-e1830c8111bd-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090286.JPG,,FALSE, +N1,60217,sortie-20869cf4-ebf5-4856-aa83-e1830c8111bd,https://biolit.fr/sorties/sortie-20869cf4-ebf5-4856-aa83-e1830c8111bd/,Phil,,11/04/2017,18.000005,18.0:15,47.803819000000,-4.374992000000,,Penmarc'h - Finistère,46468,observation-20869cf4-ebf5-4856-aa83-e1830c8111bd-3,https://biolit.fr/observations/observation-20869cf4-ebf5-4856-aa83-e1830c8111bd-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090296.JPG,,FALSE, +N1,60217,sortie-20869cf4-ebf5-4856-aa83-e1830c8111bd,https://biolit.fr/sorties/sortie-20869cf4-ebf5-4856-aa83-e1830c8111bd/,Phil,,11/04/2017,18.000005,18.0:15,47.803819000000,-4.374992000000,,Penmarc'h - Finistère,46470,observation-20869cf4-ebf5-4856-aa83-e1830c8111bd-4,https://biolit.fr/observations/observation-20869cf4-ebf5-4856-aa83-e1830c8111bd-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090312.JPG,,FALSE, +N1,60217,sortie-20869cf4-ebf5-4856-aa83-e1830c8111bd,https://biolit.fr/sorties/sortie-20869cf4-ebf5-4856-aa83-e1830c8111bd/,Phil,,11/04/2017,18.000005,18.0:15,47.803819000000,-4.374992000000,,Penmarc'h - Finistère,46472,observation-20869cf4-ebf5-4856-aa83-e1830c8111bd-5,https://biolit.fr/observations/observation-20869cf4-ebf5-4856-aa83-e1830c8111bd-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090314.JPG,,FALSE, +N1,60217,sortie-20869cf4-ebf5-4856-aa83-e1830c8111bd,https://biolit.fr/sorties/sortie-20869cf4-ebf5-4856-aa83-e1830c8111bd/,Phil,,11/04/2017,18.000005,18.0:15,47.803819000000,-4.374992000000,,Penmarc'h - Finistère,46474,observation-20869cf4-ebf5-4856-aa83-e1830c8111bd-6,https://biolit.fr/observations/observation-20869cf4-ebf5-4856-aa83-e1830c8111bd-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090320.JPG,,FALSE, +N1,60217,sortie-20869cf4-ebf5-4856-aa83-e1830c8111bd,https://biolit.fr/sorties/sortie-20869cf4-ebf5-4856-aa83-e1830c8111bd/,Phil,,11/04/2017,18.000005,18.0:15,47.803819000000,-4.374992000000,,Penmarc'h - Finistère,46476,observation-20869cf4-ebf5-4856-aa83-e1830c8111bd-7,https://biolit.fr/observations/observation-20869cf4-ebf5-4856-aa83-e1830c8111bd-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090326.JPG,,FALSE, +N1,60217,sortie-20869cf4-ebf5-4856-aa83-e1830c8111bd,https://biolit.fr/sorties/sortie-20869cf4-ebf5-4856-aa83-e1830c8111bd/,Phil,,11/04/2017,18.000005,18.0:15,47.803819000000,-4.374992000000,,Penmarc'h - Finistère,46478,observation-20869cf4-ebf5-4856-aa83-e1830c8111bd-8,https://biolit.fr/observations/observation-20869cf4-ebf5-4856-aa83-e1830c8111bd-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090323.JPG,,FALSE, +N1,60218,sortie-25201bdc-7ecf-4653-8d10-a45d0f57aa23,https://biolit.fr/sorties/sortie-25201bdc-7ecf-4653-8d10-a45d0f57aa23/,Phil,,11/11/2017,16.0:55,17.0000000,47.80050200000,-4.183497000000,,Loctudy - Finistère,46480,observation-25201bdc-7ecf-4653-8d10-a45d0f57aa23,https://biolit.fr/observations/observation-25201bdc-7ecf-4653-8d10-a45d0f57aa23/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090483.JPG,,FALSE, +N1,60218,sortie-25201bdc-7ecf-4653-8d10-a45d0f57aa23,https://biolit.fr/sorties/sortie-25201bdc-7ecf-4653-8d10-a45d0f57aa23/,Phil,,11/11/2017,16.0:55,17.0000000,47.80050200000,-4.183497000000,,Loctudy - Finistère,46482,observation-25201bdc-7ecf-4653-8d10-a45d0f57aa23-2,https://biolit.fr/observations/observation-25201bdc-7ecf-4653-8d10-a45d0f57aa23-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090481.JPG,,FALSE, +N1,60218,sortie-25201bdc-7ecf-4653-8d10-a45d0f57aa23,https://biolit.fr/sorties/sortie-25201bdc-7ecf-4653-8d10-a45d0f57aa23/,Phil,,11/11/2017,16.0:55,17.0000000,47.80050200000,-4.183497000000,,Loctudy - Finistère,46484,observation-25201bdc-7ecf-4653-8d10-a45d0f57aa23-3,https://biolit.fr/observations/observation-25201bdc-7ecf-4653-8d10-a45d0f57aa23-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090480.JPG,,FALSE, +N1,60218,sortie-25201bdc-7ecf-4653-8d10-a45d0f57aa23,https://biolit.fr/sorties/sortie-25201bdc-7ecf-4653-8d10-a45d0f57aa23/,Phil,,11/11/2017,16.0:55,17.0000000,47.80050200000,-4.183497000000,,Loctudy - Finistère,46486,observation-25201bdc-7ecf-4653-8d10-a45d0f57aa23-4,https://biolit.fr/observations/observation-25201bdc-7ecf-4653-8d10-a45d0f57aa23-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090479.JPG,,FALSE, +N1,60218,sortie-25201bdc-7ecf-4653-8d10-a45d0f57aa23,https://biolit.fr/sorties/sortie-25201bdc-7ecf-4653-8d10-a45d0f57aa23/,Phil,,11/11/2017,16.0:55,17.0000000,47.80050200000,-4.183497000000,,Loctudy - Finistère,46488,observation-25201bdc-7ecf-4653-8d10-a45d0f57aa23-5,https://biolit.fr/observations/observation-25201bdc-7ecf-4653-8d10-a45d0f57aa23-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090478.JPG,,FALSE, +N1,60219,sortie-dca38b70-e633-453e-afe8-130ad321efaa,https://biolit.fr/sorties/sortie-dca38b70-e633-453e-afe8-130ad321efaa/,Phil,,11/19/2017 0:00,12.0000000,12.0000000,47.892844000000,-3.967978000000,,La Forêt-Fouesnant - Finistère,46490,observation-dca38b70-e633-453e-afe8-130ad321efaa,https://biolit.fr/observations/observation-dca38b70-e633-453e-afe8-130ad321efaa/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171119_120747.jpg,,FALSE, +N1,60219,sortie-dca38b70-e633-453e-afe8-130ad321efaa,https://biolit.fr/sorties/sortie-dca38b70-e633-453e-afe8-130ad321efaa/,Phil,,11/19/2017 0:00,12.0000000,12.0000000,47.892844000000,-3.967978000000,,La Forêt-Fouesnant - Finistère,46492,observation-dca38b70-e633-453e-afe8-130ad321efaa-2,https://biolit.fr/observations/observation-dca38b70-e633-453e-afe8-130ad321efaa-2/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20171119_120909.jpg,,TRUE, +N1,60219,sortie-dca38b70-e633-453e-afe8-130ad321efaa,https://biolit.fr/sorties/sortie-dca38b70-e633-453e-afe8-130ad321efaa/,Phil,,11/19/2017 0:00,12.0000000,12.0000000,47.892844000000,-3.967978000000,,La Forêt-Fouesnant - Finistère,46494,observation-dca38b70-e633-453e-afe8-130ad321efaa-3,https://biolit.fr/observations/observation-dca38b70-e633-453e-afe8-130ad321efaa-3/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20171119_121027.jpg,,TRUE, +N1,60219,sortie-dca38b70-e633-453e-afe8-130ad321efaa,https://biolit.fr/sorties/sortie-dca38b70-e633-453e-afe8-130ad321efaa/,Phil,,11/19/2017 0:00,12.0000000,12.0000000,47.892844000000,-3.967978000000,,La Forêt-Fouesnant - Finistère,46496,observation-dca38b70-e633-453e-afe8-130ad321efaa-4,https://biolit.fr/observations/observation-dca38b70-e633-453e-afe8-130ad321efaa-4/,Laevicardium crassum,Bucarde de Norvège,,https://biolit.fr/wp-content/uploads/2023/07/20171119_120617.jpg,,TRUE, +N1,60220,sortie-12b46a2c-e596-4c1b-b476-e0e1fed78446,https://biolit.fr/sorties/sortie-12b46a2c-e596-4c1b-b476-e0e1fed78446/,Phil,,11/06/2017,12.0000000,12.000005,48.003779000000,-4.521466000000,,Plouhinec - Finistère,46498,observation-12b46a2c-e596-4c1b-b476-e0e1fed78446,https://biolit.fr/observations/observation-12b46a2c-e596-4c1b-b476-e0e1fed78446/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_120457.jpg,,FALSE, +N1,60220,sortie-12b46a2c-e596-4c1b-b476-e0e1fed78446,https://biolit.fr/sorties/sortie-12b46a2c-e596-4c1b-b476-e0e1fed78446/,Phil,,11/06/2017,12.0000000,12.000005,48.003779000000,-4.521466000000,,Plouhinec - Finistère,46500,observation-12b46a2c-e596-4c1b-b476-e0e1fed78446-2,https://biolit.fr/observations/observation-12b46a2c-e596-4c1b-b476-e0e1fed78446-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_120435.jpg,,FALSE, +N1,60220,sortie-12b46a2c-e596-4c1b-b476-e0e1fed78446,https://biolit.fr/sorties/sortie-12b46a2c-e596-4c1b-b476-e0e1fed78446/,Phil,,11/06/2017,12.0000000,12.000005,48.003779000000,-4.521466000000,,Plouhinec - Finistère,46502,observation-12b46a2c-e596-4c1b-b476-e0e1fed78446-3,https://biolit.fr/observations/observation-12b46a2c-e596-4c1b-b476-e0e1fed78446-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_120401.jpg,,FALSE, +N1,60220,sortie-12b46a2c-e596-4c1b-b476-e0e1fed78446,https://biolit.fr/sorties/sortie-12b46a2c-e596-4c1b-b476-e0e1fed78446/,Phil,,11/06/2017,12.0000000,12.000005,48.003779000000,-4.521466000000,,Plouhinec - Finistère,46504,observation-12b46a2c-e596-4c1b-b476-e0e1fed78446-4,https://biolit.fr/observations/observation-12b46a2c-e596-4c1b-b476-e0e1fed78446-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_120502.jpg,,FALSE, +N1,60220,sortie-12b46a2c-e596-4c1b-b476-e0e1fed78446,https://biolit.fr/sorties/sortie-12b46a2c-e596-4c1b-b476-e0e1fed78446/,Phil,,11/06/2017,12.0000000,12.000005,48.003779000000,-4.521466000000,,Plouhinec - Finistère,46506,observation-12b46a2c-e596-4c1b-b476-e0e1fed78446-5,https://biolit.fr/observations/observation-12b46a2c-e596-4c1b-b476-e0e1fed78446-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_120517.jpg,,FALSE, +N1,60221,sortie-dfa758ec-d75e-4131-873b-a94945dfb925,https://biolit.fr/sorties/sortie-dfa758ec-d75e-4131-873b-a94945dfb925/,Phil,,11/05/2017,13.0:15,13.0000000,47.799729000000,-4.178654000000,,Loctudy - Finistère,46508,observation-dfa758ec-d75e-4131-873b-a94945dfb925,https://biolit.fr/observations/observation-dfa758ec-d75e-4131-873b-a94945dfb925/,Eupolymnia nebulosa,Polymnie nébuleuse,,https://biolit.fr/wp-content/uploads/2023/07/P1090440.JPG,,TRUE, +N1,60221,sortie-dfa758ec-d75e-4131-873b-a94945dfb925,https://biolit.fr/sorties/sortie-dfa758ec-d75e-4131-873b-a94945dfb925/,Phil,,11/05/2017,13.0:15,13.0000000,47.799729000000,-4.178654000000,,Loctudy - Finistère,46510,observation-dfa758ec-d75e-4131-873b-a94945dfb925-2,https://biolit.fr/observations/observation-dfa758ec-d75e-4131-873b-a94945dfb925-2/,Eupolymnia nebulosa,Polymnie nébuleuse,,https://biolit.fr/wp-content/uploads/2023/07/P1090439.JPG,,TRUE, +N1,60221,sortie-dfa758ec-d75e-4131-873b-a94945dfb925,https://biolit.fr/sorties/sortie-dfa758ec-d75e-4131-873b-a94945dfb925/,Phil,,11/05/2017,13.0:15,13.0000000,47.799729000000,-4.178654000000,,Loctudy - Finistère,46512,observation-dfa758ec-d75e-4131-873b-a94945dfb925-3,https://biolit.fr/observations/observation-dfa758ec-d75e-4131-873b-a94945dfb925-3/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1090434.JPG,,TRUE, +N1,60221,sortie-dfa758ec-d75e-4131-873b-a94945dfb925,https://biolit.fr/sorties/sortie-dfa758ec-d75e-4131-873b-a94945dfb925/,Phil,,11/05/2017,13.0:15,13.0000000,47.799729000000,-4.178654000000,,Loctudy - Finistère,46514,observation-dfa758ec-d75e-4131-873b-a94945dfb925-4,https://biolit.fr/observations/observation-dfa758ec-d75e-4131-873b-a94945dfb925-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090437.JPG,,FALSE, +N1,60221,sortie-dfa758ec-d75e-4131-873b-a94945dfb925,https://biolit.fr/sorties/sortie-dfa758ec-d75e-4131-873b-a94945dfb925/,Phil,,11/05/2017,13.0:15,13.0000000,47.799729000000,-4.178654000000,,Loctudy - Finistère,46516,observation-dfa758ec-d75e-4131-873b-a94945dfb925-5,https://biolit.fr/observations/observation-dfa758ec-d75e-4131-873b-a94945dfb925-5/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/P1090436.JPG,,TRUE, +N1,60222,sortie-598aa368-3c50-429e-8cdb-ada5b95e0d81,https://biolit.fr/sorties/sortie-598aa368-3c50-429e-8cdb-ada5b95e0d81/,Phil,,11/21/2017 0:00,17.0000000,17.0:35,48.210131000000,-4.369253000000,,Telgruc sur Mer - Finistère,46518,observation-598aa368-3c50-429e-8cdb-ada5b95e0d81,https://biolit.fr/observations/observation-598aa368-3c50-429e-8cdb-ada5b95e0d81/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20171121_171818.jpg,,TRUE, +N1,60222,sortie-598aa368-3c50-429e-8cdb-ada5b95e0d81,https://biolit.fr/sorties/sortie-598aa368-3c50-429e-8cdb-ada5b95e0d81/,Phil,,11/21/2017 0:00,17.0000000,17.0:35,48.210131000000,-4.369253000000,,Telgruc sur Mer - Finistère,46520,observation-598aa368-3c50-429e-8cdb-ada5b95e0d81-2,https://biolit.fr/observations/observation-598aa368-3c50-429e-8cdb-ada5b95e0d81-2/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/20171121_172659.jpg,,TRUE, +N1,60222,sortie-598aa368-3c50-429e-8cdb-ada5b95e0d81,https://biolit.fr/sorties/sortie-598aa368-3c50-429e-8cdb-ada5b95e0d81/,Phil,,11/21/2017 0:00,17.0000000,17.0:35,48.210131000000,-4.369253000000,,Telgruc sur Mer - Finistère,46522,observation-598aa368-3c50-429e-8cdb-ada5b95e0d81-3,https://biolit.fr/observations/observation-598aa368-3c50-429e-8cdb-ada5b95e0d81-3/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20171121_172558.jpg,,TRUE, +N1,60222,sortie-598aa368-3c50-429e-8cdb-ada5b95e0d81,https://biolit.fr/sorties/sortie-598aa368-3c50-429e-8cdb-ada5b95e0d81/,Phil,,11/21/2017 0:00,17.0000000,17.0:35,48.210131000000,-4.369253000000,,Telgruc sur Mer - Finistère,46524,observation-598aa368-3c50-429e-8cdb-ada5b95e0d81-4,https://biolit.fr/observations/observation-598aa368-3c50-429e-8cdb-ada5b95e0d81-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171121_173050.jpg,,FALSE, +N1,60222,sortie-598aa368-3c50-429e-8cdb-ada5b95e0d81,https://biolit.fr/sorties/sortie-598aa368-3c50-429e-8cdb-ada5b95e0d81/,Phil,,11/21/2017 0:00,17.0000000,17.0:35,48.210131000000,-4.369253000000,,Telgruc sur Mer - Finistère,46526,observation-598aa368-3c50-429e-8cdb-ada5b95e0d81-5,https://biolit.fr/observations/observation-598aa368-3c50-429e-8cdb-ada5b95e0d81-5/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20171121_173400.jpg,,TRUE, +N1,60222,sortie-598aa368-3c50-429e-8cdb-ada5b95e0d81,https://biolit.fr/sorties/sortie-598aa368-3c50-429e-8cdb-ada5b95e0d81/,Phil,,11/21/2017 0:00,17.0000000,17.0:35,48.210131000000,-4.369253000000,,Telgruc sur Mer - Finistère,46528,observation-598aa368-3c50-429e-8cdb-ada5b95e0d81-6,https://biolit.fr/observations/observation-598aa368-3c50-429e-8cdb-ada5b95e0d81-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171121_173303.jpg,,FALSE, +N1,60223,sortie-f2a8f6cd-9804-482d-b03a-c7a68a88ebad,https://biolit.fr/sorties/sortie-f2a8f6cd-9804-482d-b03a-c7a68a88ebad/,Phil,,11/19/2017 0:00,11.0:55,12.000005,47.895068000000,-3.969592000000,,La Forêt-Fouesnant - Finistère,46530,observation-f2a8f6cd-9804-482d-b03a-c7a68a88ebad,https://biolit.fr/observations/observation-f2a8f6cd-9804-482d-b03a-c7a68a88ebad/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171119_120319.jpg,,FALSE, +N1,60223,sortie-f2a8f6cd-9804-482d-b03a-c7a68a88ebad,https://biolit.fr/sorties/sortie-f2a8f6cd-9804-482d-b03a-c7a68a88ebad/,Phil,,11/19/2017 0:00,11.0:55,12.000005,47.895068000000,-3.969592000000,,La Forêt-Fouesnant - Finistère,46532,observation-f2a8f6cd-9804-482d-b03a-c7a68a88ebad-2,https://biolit.fr/observations/observation-f2a8f6cd-9804-482d-b03a-c7a68a88ebad-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171119_120148.jpg,,FALSE, +N1,60223,sortie-f2a8f6cd-9804-482d-b03a-c7a68a88ebad,https://biolit.fr/sorties/sortie-f2a8f6cd-9804-482d-b03a-c7a68a88ebad/,Phil,,11/19/2017 0:00,11.0:55,12.000005,47.895068000000,-3.969592000000,,La Forêt-Fouesnant - Finistère,46534,observation-f2a8f6cd-9804-482d-b03a-c7a68a88ebad-3,https://biolit.fr/observations/observation-f2a8f6cd-9804-482d-b03a-c7a68a88ebad-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171119_115338.jpg,,FALSE, +N1,60223,sortie-f2a8f6cd-9804-482d-b03a-c7a68a88ebad,https://biolit.fr/sorties/sortie-f2a8f6cd-9804-482d-b03a-c7a68a88ebad/,Phil,,11/19/2017 0:00,11.0:55,12.000005,47.895068000000,-3.969592000000,,La Forêt-Fouesnant - Finistère,46536,observation-f2a8f6cd-9804-482d-b03a-c7a68a88ebad-4,https://biolit.fr/observations/observation-f2a8f6cd-9804-482d-b03a-c7a68a88ebad-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171119_115441.jpg,,FALSE, +N1,60223,sortie-f2a8f6cd-9804-482d-b03a-c7a68a88ebad,https://biolit.fr/sorties/sortie-f2a8f6cd-9804-482d-b03a-c7a68a88ebad/,Phil,,11/19/2017 0:00,11.0:55,12.000005,47.895068000000,-3.969592000000,,La Forêt-Fouesnant - Finistère,46538,observation-f2a8f6cd-9804-482d-b03a-c7a68a88ebad-5,https://biolit.fr/observations/observation-f2a8f6cd-9804-482d-b03a-c7a68a88ebad-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171119_115714.jpg,,FALSE, +N1,60223,sortie-f2a8f6cd-9804-482d-b03a-c7a68a88ebad,https://biolit.fr/sorties/sortie-f2a8f6cd-9804-482d-b03a-c7a68a88ebad/,Phil,,11/19/2017 0:00,11.0:55,12.000005,47.895068000000,-3.969592000000,,La Forêt-Fouesnant - Finistère,46540,observation-f2a8f6cd-9804-482d-b03a-c7a68a88ebad-6,https://biolit.fr/observations/observation-f2a8f6cd-9804-482d-b03a-c7a68a88ebad-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171119_115837.jpg,,FALSE, +N1,60223,sortie-f2a8f6cd-9804-482d-b03a-c7a68a88ebad,https://biolit.fr/sorties/sortie-f2a8f6cd-9804-482d-b03a-c7a68a88ebad/,Phil,,11/19/2017 0:00,11.0:55,12.000005,47.895068000000,-3.969592000000,,La Forêt-Fouesnant - Finistère,46542,observation-f2a8f6cd-9804-482d-b03a-c7a68a88ebad-7,https://biolit.fr/observations/observation-f2a8f6cd-9804-482d-b03a-c7a68a88ebad-7/,Halidrys siliquosa,Queue de poulain,,https://biolit.fr/wp-content/uploads/2023/07/20171119_115958.jpg,,TRUE, +N1,60224,sortie-f4c0709e-6468-41d8-a98b-3213fd04d6ca,https://biolit.fr/sorties/sortie-f4c0709e-6468-41d8-a98b-3213fd04d6ca/,Phil,,11/06/2017,12.0:55,13.0:15,48.004474000000,-4.520522000000,,Plouhinec - Finistère,46544,observation-f4c0709e-6468-41d8-a98b-3213fd04d6ca,https://biolit.fr/observations/observation-f4c0709e-6468-41d8-a98b-3213fd04d6ca/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20171106_130110.jpg,,TRUE, +N1,60224,sortie-f4c0709e-6468-41d8-a98b-3213fd04d6ca,https://biolit.fr/sorties/sortie-f4c0709e-6468-41d8-a98b-3213fd04d6ca/,Phil,,11/06/2017,12.0:55,13.0:15,48.004474000000,-4.520522000000,,Plouhinec - Finistère,46546,observation-f4c0709e-6468-41d8-a98b-3213fd04d6ca-2,https://biolit.fr/observations/observation-f4c0709e-6468-41d8-a98b-3213fd04d6ca-2/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20171106_131344.jpg,,TRUE, +N1,60224,sortie-f4c0709e-6468-41d8-a98b-3213fd04d6ca,https://biolit.fr/sorties/sortie-f4c0709e-6468-41d8-a98b-3213fd04d6ca/,Phil,,11/06/2017,12.0:55,13.0:15,48.004474000000,-4.520522000000,,Plouhinec - Finistère,46548,observation-f4c0709e-6468-41d8-a98b-3213fd04d6ca-3,https://biolit.fr/observations/observation-f4c0709e-6468-41d8-a98b-3213fd04d6ca-3/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20171106_131355.jpg,,TRUE, +N1,60224,sortie-f4c0709e-6468-41d8-a98b-3213fd04d6ca,https://biolit.fr/sorties/sortie-f4c0709e-6468-41d8-a98b-3213fd04d6ca/,Phil,,11/06/2017,12.0:55,13.0:15,48.004474000000,-4.520522000000,,Plouhinec - Finistère,46550,observation-f4c0709e-6468-41d8-a98b-3213fd04d6ca-4,https://biolit.fr/observations/observation-f4c0709e-6468-41d8-a98b-3213fd04d6ca-4/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20171106_131407.jpg,,TRUE, +N1,60224,sortie-f4c0709e-6468-41d8-a98b-3213fd04d6ca,https://biolit.fr/sorties/sortie-f4c0709e-6468-41d8-a98b-3213fd04d6ca/,Phil,,11/06/2017,12.0:55,13.0:15,48.004474000000,-4.520522000000,,Plouhinec - Finistère,46552,observation-f4c0709e-6468-41d8-a98b-3213fd04d6ca-5,https://biolit.fr/observations/observation-f4c0709e-6468-41d8-a98b-3213fd04d6ca-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_125434.jpg,,FALSE, +N1,60225,sortie-aa2b5367-7a11-474c-b651-75b746abf066,https://biolit.fr/sorties/sortie-aa2b5367-7a11-474c-b651-75b746abf066/,Phil,,11/04/2017,18.0000000,18.0:25,47.803417000000,-4.374766000000,,Penmarc'h - Finistère,46554,observation-aa2b5367-7a11-474c-b651-75b746abf066,https://biolit.fr/observations/observation-aa2b5367-7a11-474c-b651-75b746abf066/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090294.JPG,,FALSE, +N1,60225,sortie-aa2b5367-7a11-474c-b651-75b746abf066,https://biolit.fr/sorties/sortie-aa2b5367-7a11-474c-b651-75b746abf066/,Phil,,11/04/2017,18.0000000,18.0:25,47.803417000000,-4.374766000000,,Penmarc'h - Finistère,46556,observation-aa2b5367-7a11-474c-b651-75b746abf066-2,https://biolit.fr/observations/observation-aa2b5367-7a11-474c-b651-75b746abf066-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090345.JPG,,FALSE, +N1,60225,sortie-aa2b5367-7a11-474c-b651-75b746abf066,https://biolit.fr/sorties/sortie-aa2b5367-7a11-474c-b651-75b746abf066/,Phil,,11/04/2017,18.0000000,18.0:25,47.803417000000,-4.374766000000,,Penmarc'h - Finistère,46558,observation-aa2b5367-7a11-474c-b651-75b746abf066-3,https://biolit.fr/observations/observation-aa2b5367-7a11-474c-b651-75b746abf066-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090347.JPG,,FALSE, +N1,60225,sortie-aa2b5367-7a11-474c-b651-75b746abf066,https://biolit.fr/sorties/sortie-aa2b5367-7a11-474c-b651-75b746abf066/,Phil,,11/04/2017,18.0000000,18.0:25,47.803417000000,-4.374766000000,,Penmarc'h - Finistère,46560,observation-aa2b5367-7a11-474c-b651-75b746abf066-4,https://biolit.fr/observations/observation-aa2b5367-7a11-474c-b651-75b746abf066-4/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/P1090300.JPG,,TRUE, +N1,60225,sortie-aa2b5367-7a11-474c-b651-75b746abf066,https://biolit.fr/sorties/sortie-aa2b5367-7a11-474c-b651-75b746abf066/,Phil,,11/04/2017,18.0000000,18.0:25,47.803417000000,-4.374766000000,,Penmarc'h - Finistère,46562,observation-aa2b5367-7a11-474c-b651-75b746abf066-5,https://biolit.fr/observations/observation-aa2b5367-7a11-474c-b651-75b746abf066-5/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1090263.JPG,,TRUE, +N1,60225,sortie-aa2b5367-7a11-474c-b651-75b746abf066,https://biolit.fr/sorties/sortie-aa2b5367-7a11-474c-b651-75b746abf066/,Phil,,11/04/2017,18.0000000,18.0:25,47.803417000000,-4.374766000000,,Penmarc'h - Finistère,46564,observation-aa2b5367-7a11-474c-b651-75b746abf066-6,https://biolit.fr/observations/observation-aa2b5367-7a11-474c-b651-75b746abf066-6/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1090291.JPG,,TRUE, +N1,60225,sortie-aa2b5367-7a11-474c-b651-75b746abf066,https://biolit.fr/sorties/sortie-aa2b5367-7a11-474c-b651-75b746abf066/,Phil,,11/04/2017,18.0000000,18.0:25,47.803417000000,-4.374766000000,,Penmarc'h - Finistère,46566,observation-aa2b5367-7a11-474c-b651-75b746abf066-7,https://biolit.fr/observations/observation-aa2b5367-7a11-474c-b651-75b746abf066-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090290.JPG,,FALSE, +N1,60226,sortie-b4e94e20-ace0-4b56-a91a-4beec92e06f9,https://biolit.fr/sorties/sortie-b4e94e20-ace0-4b56-a91a-4beec92e06f9/,Phil,,11/05/2017,13.0000000,13.000005,47.797944000000,-4.17908500000,,Loctudy - Finistère,46568,observation-b4e94e20-ace0-4b56-a91a-4beec92e06f9,https://biolit.fr/observations/observation-b4e94e20-ace0-4b56-a91a-4beec92e06f9/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/P1090406.JPG,,TRUE, +N1,60226,sortie-b4e94e20-ace0-4b56-a91a-4beec92e06f9,https://biolit.fr/sorties/sortie-b4e94e20-ace0-4b56-a91a-4beec92e06f9/,Phil,,11/05/2017,13.0000000,13.000005,47.797944000000,-4.17908500000,,Loctudy - Finistère,46570,observation-b4e94e20-ace0-4b56-a91a-4beec92e06f9-2,https://biolit.fr/observations/observation-b4e94e20-ace0-4b56-a91a-4beec92e06f9-2/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1090408.JPG,,TRUE, +N1,60226,sortie-b4e94e20-ace0-4b56-a91a-4beec92e06f9,https://biolit.fr/sorties/sortie-b4e94e20-ace0-4b56-a91a-4beec92e06f9/,Phil,,11/05/2017,13.0000000,13.000005,47.797944000000,-4.17908500000,,Loctudy - Finistère,46572,observation-b4e94e20-ace0-4b56-a91a-4beec92e06f9-3,https://biolit.fr/observations/observation-b4e94e20-ace0-4b56-a91a-4beec92e06f9-3/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/P1090415.JPG,,TRUE, +N1,60226,sortie-b4e94e20-ace0-4b56-a91a-4beec92e06f9,https://biolit.fr/sorties/sortie-b4e94e20-ace0-4b56-a91a-4beec92e06f9/,Phil,,11/05/2017,13.0000000,13.000005,47.797944000000,-4.17908500000,,Loctudy - Finistère,46574,observation-b4e94e20-ace0-4b56-a91a-4beec92e06f9-4,https://biolit.fr/observations/observation-b4e94e20-ace0-4b56-a91a-4beec92e06f9-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090419.JPG,,FALSE, +N1,60226,sortie-b4e94e20-ace0-4b56-a91a-4beec92e06f9,https://biolit.fr/sorties/sortie-b4e94e20-ace0-4b56-a91a-4beec92e06f9/,Phil,,11/05/2017,13.0000000,13.000005,47.797944000000,-4.17908500000,,Loctudy - Finistère,46576,observation-b4e94e20-ace0-4b56-a91a-4beec92e06f9-5,https://biolit.fr/observations/observation-b4e94e20-ace0-4b56-a91a-4beec92e06f9-5/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/P1090421.JPG,,TRUE, +N1,60227,sortie-53f67c4f-91f1-4c50-8b9b-d6be492f92ab,https://biolit.fr/sorties/sortie-53f67c4f-91f1-4c50-8b9b-d6be492f92ab/,Phil,,11/06/2017,11.0000000,11.0:25,48.004187000000,-4.521874000000,,Plouhinec - Finistère,46578,observation-53f67c4f-91f1-4c50-8b9b-d6be492f92ab,https://biolit.fr/observations/observation-53f67c4f-91f1-4c50-8b9b-d6be492f92ab/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20171106_112355.jpg,,TRUE, +N1,60227,sortie-53f67c4f-91f1-4c50-8b9b-d6be492f92ab,https://biolit.fr/sorties/sortie-53f67c4f-91f1-4c50-8b9b-d6be492f92ab/,Phil,,11/06/2017,11.0000000,11.0:25,48.004187000000,-4.521874000000,,Plouhinec - Finistère,46580,observation-53f67c4f-91f1-4c50-8b9b-d6be492f92ab-2,https://biolit.fr/observations/observation-53f67c4f-91f1-4c50-8b9b-d6be492f92ab-2/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20171106_112341.jpg,,TRUE, +N1,60227,sortie-53f67c4f-91f1-4c50-8b9b-d6be492f92ab,https://biolit.fr/sorties/sortie-53f67c4f-91f1-4c50-8b9b-d6be492f92ab/,Phil,,11/06/2017,11.0000000,11.0:25,48.004187000000,-4.521874000000,,Plouhinec - Finistère,46582,observation-53f67c4f-91f1-4c50-8b9b-d6be492f92ab-3,https://biolit.fr/observations/observation-53f67c4f-91f1-4c50-8b9b-d6be492f92ab-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_112344(0).jpg,,FALSE, +N1,60227,sortie-53f67c4f-91f1-4c50-8b9b-d6be492f92ab,https://biolit.fr/sorties/sortie-53f67c4f-91f1-4c50-8b9b-d6be492f92ab/,Phil,,11/06/2017,11.0000000,11.0:25,48.004187000000,-4.521874000000,,Plouhinec - Finistère,46584,observation-53f67c4f-91f1-4c50-8b9b-d6be492f92ab-4,https://biolit.fr/observations/observation-53f67c4f-91f1-4c50-8b9b-d6be492f92ab-4/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20171106_112306.jpg,,TRUE, +N1,60227,sortie-53f67c4f-91f1-4c50-8b9b-d6be492f92ab,https://biolit.fr/sorties/sortie-53f67c4f-91f1-4c50-8b9b-d6be492f92ab/,Phil,,11/06/2017,11.0000000,11.0:25,48.004187000000,-4.521874000000,,Plouhinec - Finistère,46586,observation-53f67c4f-91f1-4c50-8b9b-d6be492f92ab-5,https://biolit.fr/observations/observation-53f67c4f-91f1-4c50-8b9b-d6be492f92ab-5/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20171106_112315.jpg,,TRUE, +N1,60228,sortie-12c9e6cc-fcc2-4380-a176-5a3da801d7a5,https://biolit.fr/sorties/sortie-12c9e6cc-fcc2-4380-a176-5a3da801d7a5/,Peace01,,11/10/2017,15.0000000,18.0000000,43.232203000000,5.350623000000,,Plage de la verrerie ,46588,observation-12c9e6cc-fcc2-4380-a176-5a3da801d7a5,https://biolit.fr/observations/observation-12c9e6cc-fcc2-4380-a176-5a3da801d7a5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171102_153118-scaled.jpg,,FALSE, +N1,60228,sortie-12c9e6cc-fcc2-4380-a176-5a3da801d7a5,https://biolit.fr/sorties/sortie-12c9e6cc-fcc2-4380-a176-5a3da801d7a5/,Peace01,,11/10/2017,15.0000000,18.0000000,43.232203000000,5.350623000000,,Plage de la verrerie ,46590,observation-12c9e6cc-fcc2-4380-a176-5a3da801d7a5-2,https://biolit.fr/observations/observation-12c9e6cc-fcc2-4380-a176-5a3da801d7a5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171102_160839-scaled.jpg,,FALSE, +N1,60228,sortie-12c9e6cc-fcc2-4380-a176-5a3da801d7a5,https://biolit.fr/sorties/sortie-12c9e6cc-fcc2-4380-a176-5a3da801d7a5/,Peace01,,11/10/2017,15.0000000,18.0000000,43.232203000000,5.350623000000,,Plage de la verrerie ,46592,observation-12c9e6cc-fcc2-4380-a176-5a3da801d7a5-3,https://biolit.fr/observations/observation-12c9e6cc-fcc2-4380-a176-5a3da801d7a5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171102_155908-scaled.jpg,,FALSE, +N1,60228,sortie-12c9e6cc-fcc2-4380-a176-5a3da801d7a5,https://biolit.fr/sorties/sortie-12c9e6cc-fcc2-4380-a176-5a3da801d7a5/,Peace01,,11/10/2017,15.0000000,18.0000000,43.232203000000,5.350623000000,,Plage de la verrerie ,46594,observation-12c9e6cc-fcc2-4380-a176-5a3da801d7a5-4,https://biolit.fr/observations/observation-12c9e6cc-fcc2-4380-a176-5a3da801d7a5-4/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/Snapchat-885932994.jpg,,TRUE, +N1,60228,sortie-12c9e6cc-fcc2-4380-a176-5a3da801d7a5,https://biolit.fr/sorties/sortie-12c9e6cc-fcc2-4380-a176-5a3da801d7a5/,Peace01,,11/10/2017,15.0000000,18.0000000,43.232203000000,5.350623000000,,Plage de la verrerie ,46596,observation-12c9e6cc-fcc2-4380-a176-5a3da801d7a5-5,https://biolit.fr/observations/observation-12c9e6cc-fcc2-4380-a176-5a3da801d7a5-5/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/Snapchat-1257325298.jpg,,TRUE, +N1,60229,sortie-65d0d7d8-cc47-4004-975c-3eb8a14514f8,https://biolit.fr/sorties/sortie-65d0d7d8-cc47-4004-975c-3eb8a14514f8/,Phil,,11/05/2017,13.0000000,13.0000000,47.79708600000,-4.177360000000,,Loctudy - Finistère,46598,observation-65d0d7d8-cc47-4004-975c-3eb8a14514f8,https://biolit.fr/observations/observation-65d0d7d8-cc47-4004-975c-3eb8a14514f8/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1090461.JPG,,TRUE, +N1,60229,sortie-65d0d7d8-cc47-4004-975c-3eb8a14514f8,https://biolit.fr/sorties/sortie-65d0d7d8-cc47-4004-975c-3eb8a14514f8/,Phil,,11/05/2017,13.0000000,13.0000000,47.79708600000,-4.177360000000,,Loctudy - Finistère,46600,observation-65d0d7d8-cc47-4004-975c-3eb8a14514f8-2,https://biolit.fr/observations/observation-65d0d7d8-cc47-4004-975c-3eb8a14514f8-2/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1090465.JPG,,TRUE, +N1,60229,sortie-65d0d7d8-cc47-4004-975c-3eb8a14514f8,https://biolit.fr/sorties/sortie-65d0d7d8-cc47-4004-975c-3eb8a14514f8/,Phil,,11/05/2017,13.0000000,13.0000000,47.79708600000,-4.177360000000,,Loctudy - Finistère,46602,observation-65d0d7d8-cc47-4004-975c-3eb8a14514f8-3,https://biolit.fr/observations/observation-65d0d7d8-cc47-4004-975c-3eb8a14514f8-3/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1090467.JPG,,TRUE, +N1,60230,sortie-106a4857-d255-4267-9f05-891a66cf92e2,https://biolit.fr/sorties/sortie-106a4857-d255-4267-9f05-891a66cf92e2/,Nicolas,,11/08/2017,14.0000000,16.0000000,46.147520000000,-1.211388000000,,Chef de baie,46604,observation-106a4857-d255-4267-9f05-891a66cf92e2,https://biolit.fr/observations/observation-106a4857-d255-4267-9f05-891a66cf92e2/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171108_143225-scaled.jpg,,TRUE, +N1,60230,sortie-106a4857-d255-4267-9f05-891a66cf92e2,https://biolit.fr/sorties/sortie-106a4857-d255-4267-9f05-891a66cf92e2/,Nicolas,,11/08/2017,14.0000000,16.0000000,46.147520000000,-1.211388000000,,Chef de baie,46606,observation-106a4857-d255-4267-9f05-891a66cf92e2-2,https://biolit.fr/observations/observation-106a4857-d255-4267-9f05-891a66cf92e2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171108_142122-scaled.jpg,,FALSE, +N1,60230,sortie-106a4857-d255-4267-9f05-891a66cf92e2,https://biolit.fr/sorties/sortie-106a4857-d255-4267-9f05-891a66cf92e2/,Nicolas,,11/08/2017,14.0000000,16.0000000,46.147520000000,-1.211388000000,,Chef de baie,46608,observation-106a4857-d255-4267-9f05-891a66cf92e2-3,https://biolit.fr/observations/observation-106a4857-d255-4267-9f05-891a66cf92e2-3/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171108_143956-scaled.jpg,,TRUE, +N1,60230,sortie-106a4857-d255-4267-9f05-891a66cf92e2,https://biolit.fr/sorties/sortie-106a4857-d255-4267-9f05-891a66cf92e2/,Nicolas,,11/08/2017,14.0000000,16.0000000,46.147520000000,-1.211388000000,,Chef de baie,46610,observation-106a4857-d255-4267-9f05-891a66cf92e2-4,https://biolit.fr/observations/observation-106a4857-d255-4267-9f05-891a66cf92e2-4/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171108_142924-scaled.jpg,,TRUE, +N1,60231,sortie-17b67a5c-10ea-4ad0-b317-fc98251aa63a,https://biolit.fr/sorties/sortie-17b67a5c-10ea-4ad0-b317-fc98251aa63a/,Nicolas,,11/08/2017,14.0000000,16.0000000,46.146628000000,-1.209103000000,,Chef de baie,46612,observation-17b67a5c-10ea-4ad0-b317-fc98251aa63a,https://biolit.fr/observations/observation-17b67a5c-10ea-4ad0-b317-fc98251aa63a/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171108_142736-scaled.jpg,,TRUE, +N1,60232,sortie-671d5203-7a43-4adf-b023-72d69d6414a1,https://biolit.fr/sorties/sortie-671d5203-7a43-4adf-b023-72d69d6414a1/,Nicolas,,11/08/2017,14.0000000,15.0000000,46.126027000000,-1.127199000000,,Plage d'Aytré,46614,observation-671d5203-7a43-4adf-b023-72d69d6414a1,https://biolit.fr/observations/observation-671d5203-7a43-4adf-b023-72d69d6414a1/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171004_100212_0-scaled.jpg,,TRUE, +N1,60232,sortie-671d5203-7a43-4adf-b023-72d69d6414a1,https://biolit.fr/sorties/sortie-671d5203-7a43-4adf-b023-72d69d6414a1/,Nicolas,,11/08/2017,14.0000000,15.0000000,46.126027000000,-1.127199000000,,Plage d'Aytré,46616,observation-671d5203-7a43-4adf-b023-72d69d6414a1-2,https://biolit.fr/observations/observation-671d5203-7a43-4adf-b023-72d69d6414a1-2/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171004_104641_0-scaled.jpg,,TRUE, +N1,60233,sortie-e7fa8231-bf12-4d36-ac50-2d5aedc494ab,https://biolit.fr/sorties/sortie-e7fa8231-bf12-4d36-ac50-2d5aedc494ab/,Phil,,11/06/2017,11.0:25,11.0:35,48.004770000000,-4.520601000000,,Plouhinec - Finistère,46618,observation-e7fa8231-bf12-4d36-ac50-2d5aedc494ab,https://biolit.fr/observations/observation-e7fa8231-bf12-4d36-ac50-2d5aedc494ab/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_112448.jpg,,FALSE, +N1,60233,sortie-e7fa8231-bf12-4d36-ac50-2d5aedc494ab,https://biolit.fr/sorties/sortie-e7fa8231-bf12-4d36-ac50-2d5aedc494ab/,Phil,,11/06/2017,11.0:25,11.0:35,48.004770000000,-4.520601000000,,Plouhinec - Finistère,46620,observation-e7fa8231-bf12-4d36-ac50-2d5aedc494ab-2,https://biolit.fr/observations/observation-e7fa8231-bf12-4d36-ac50-2d5aedc494ab-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_112501.jpg,,FALSE, +N1,60233,sortie-e7fa8231-bf12-4d36-ac50-2d5aedc494ab,https://biolit.fr/sorties/sortie-e7fa8231-bf12-4d36-ac50-2d5aedc494ab/,Phil,,11/06/2017,11.0:25,11.0:35,48.004770000000,-4.520601000000,,Plouhinec - Finistère,46622,observation-e7fa8231-bf12-4d36-ac50-2d5aedc494ab-3,https://biolit.fr/observations/observation-e7fa8231-bf12-4d36-ac50-2d5aedc494ab-3/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20171106_112701.jpg,,TRUE, +N1,60233,sortie-e7fa8231-bf12-4d36-ac50-2d5aedc494ab,https://biolit.fr/sorties/sortie-e7fa8231-bf12-4d36-ac50-2d5aedc494ab/,Phil,,11/06/2017,11.0:25,11.0:35,48.004770000000,-4.520601000000,,Plouhinec - Finistère,46624,observation-e7fa8231-bf12-4d36-ac50-2d5aedc494ab-4,https://biolit.fr/observations/observation-e7fa8231-bf12-4d36-ac50-2d5aedc494ab-4/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20171106_113717.jpg,,TRUE, +N1,60234,sortie-f918289e-0f0c-4383-a30a-e0a51019b419,https://biolit.fr/sorties/sortie-f918289e-0f0c-4383-a30a-e0a51019b419/,Observe la nature,,11/06/2017,15.0000000,16.0000000,43.39678300000,3.696496000000,,Port de Séte au Môle,46626,observation-f918289e-0f0c-4383-a30a-e0a51019b419,https://biolit.fr/observations/observation-f918289e-0f0c-4383-a30a-e0a51019b419/,Pinna nobilis,Grande nacre,,https://biolit.fr/wp-content/uploads/2023/07/DSC06939-scaled.jpg,,TRUE, +N1,60235,sortie-0c46febc-1540-4725-94df-1b660eaea6dc,https://biolit.fr/sorties/sortie-0c46febc-1540-4725-94df-1b660eaea6dc/,Observe la nature,,11/06/2017,14.000005,15.000005,43.396783000000,3.69632500000,,Port de Séte ,46628,observation-0c46febc-1540-4725-94df-1b660eaea6dc,https://biolit.fr/observations/observation-0c46febc-1540-4725-94df-1b660eaea6dc/,Pagurus prideaux,Gonfaron,,https://biolit.fr/wp-content/uploads/2023/07/pagure copie-scaled.jpg,,TRUE, +N1,60236,sortie-2b56da02-28d2-42c5-a60c-f0fafad80c07,https://biolit.fr/sorties/sortie-2b56da02-28d2-42c5-a60c-f0fafad80c07/,Phil,,11/04/2017,16.0:15,17.0:15,47.829488000000,-4.360802000000,,Penmarc'h - Finistère,46630,observation-2b56da02-28d2-42c5-a60c-f0fafad80c07,https://biolit.fr/observations/observation-2b56da02-28d2-42c5-a60c-f0fafad80c07/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/P1080873.JPG,,TRUE, +N1,60236,sortie-2b56da02-28d2-42c5-a60c-f0fafad80c07,https://biolit.fr/sorties/sortie-2b56da02-28d2-42c5-a60c-f0fafad80c07/,Phil,,11/04/2017,16.0:15,17.0:15,47.829488000000,-4.360802000000,,Penmarc'h - Finistère,46632,observation-2b56da02-28d2-42c5-a60c-f0fafad80c07-2,https://biolit.fr/observations/observation-2b56da02-28d2-42c5-a60c-f0fafad80c07-2/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/P1090050.JPG,,TRUE, +N1,60236,sortie-2b56da02-28d2-42c5-a60c-f0fafad80c07,https://biolit.fr/sorties/sortie-2b56da02-28d2-42c5-a60c-f0fafad80c07/,Phil,,11/04/2017,16.0:15,17.0:15,47.829488000000,-4.360802000000,,Penmarc'h - Finistère,46634,observation-2b56da02-28d2-42c5-a60c-f0fafad80c07-3,https://biolit.fr/observations/observation-2b56da02-28d2-42c5-a60c-f0fafad80c07-3/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/P1090093.JPG,,TRUE, +N1,60236,sortie-2b56da02-28d2-42c5-a60c-f0fafad80c07,https://biolit.fr/sorties/sortie-2b56da02-28d2-42c5-a60c-f0fafad80c07/,Phil,,11/04/2017,16.0:15,17.0:15,47.829488000000,-4.360802000000,,Penmarc'h - Finistère,46636,observation-2b56da02-28d2-42c5-a60c-f0fafad80c07-4,https://biolit.fr/observations/observation-2b56da02-28d2-42c5-a60c-f0fafad80c07-4/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/P1090126.JPG,,TRUE, +N1,60236,sortie-2b56da02-28d2-42c5-a60c-f0fafad80c07,https://biolit.fr/sorties/sortie-2b56da02-28d2-42c5-a60c-f0fafad80c07/,Phil,,11/04/2017,16.0:15,17.0:15,47.829488000000,-4.360802000000,,Penmarc'h - Finistère,46638,observation-2b56da02-28d2-42c5-a60c-f0fafad80c07-5,https://biolit.fr/observations/observation-2b56da02-28d2-42c5-a60c-f0fafad80c07-5/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/P1090167.JPG,,TRUE, +N1,60236,sortie-2b56da02-28d2-42c5-a60c-f0fafad80c07,https://biolit.fr/sorties/sortie-2b56da02-28d2-42c5-a60c-f0fafad80c07/,Phil,,11/04/2017,16.0:15,17.0:15,47.829488000000,-4.360802000000,,Penmarc'h - Finistère,46640,observation-2b56da02-28d2-42c5-a60c-f0fafad80c07-6,https://biolit.fr/observations/observation-2b56da02-28d2-42c5-a60c-f0fafad80c07-6/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/P1090189.JPG,,TRUE, +N1,60236,sortie-2b56da02-28d2-42c5-a60c-f0fafad80c07,https://biolit.fr/sorties/sortie-2b56da02-28d2-42c5-a60c-f0fafad80c07/,Phil,,11/04/2017,16.0:15,17.0:15,47.829488000000,-4.360802000000,,Penmarc'h - Finistère,46642,observation-2b56da02-28d2-42c5-a60c-f0fafad80c07-7,https://biolit.fr/observations/observation-2b56da02-28d2-42c5-a60c-f0fafad80c07-7/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/P1090192.JPG,,TRUE, +N1,60237,sortie-28a9a09e-6eb3-47bf-86ca-394277174660,https://biolit.fr/sorties/sortie-28a9a09e-6eb3-47bf-86ca-394277174660/,Noëlla M,,11/03/2017,13.0000000,13.0:15,43.284262000000,6.595036000000,,Plage de Grimaud ,46644,observation-28a9a09e-6eb3-47bf-86ca-394277174660,https://biolit.fr/observations/observation-28a9a09e-6eb3-47bf-86ca-394277174660/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171103_132158-min-scaled.jpg,,TRUE, +N1,60237,sortie-28a9a09e-6eb3-47bf-86ca-394277174660,https://biolit.fr/sorties/sortie-28a9a09e-6eb3-47bf-86ca-394277174660/,Noëlla M,,11/03/2017,13.0000000,13.0:15,43.284262000000,6.595036000000,,Plage de Grimaud ,46646,observation-28a9a09e-6eb3-47bf-86ca-394277174660-2,https://biolit.fr/observations/observation-28a9a09e-6eb3-47bf-86ca-394277174660-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171103_132216-min-scaled.jpg,,FALSE, +N1,60237,sortie-28a9a09e-6eb3-47bf-86ca-394277174660,https://biolit.fr/sorties/sortie-28a9a09e-6eb3-47bf-86ca-394277174660/,Noëlla M,,11/03/2017,13.0000000,13.0:15,43.284262000000,6.595036000000,,Plage de Grimaud ,46648,observation-28a9a09e-6eb3-47bf-86ca-394277174660-3,https://biolit.fr/observations/observation-28a9a09e-6eb3-47bf-86ca-394277174660-3/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171103_132248-min-scaled.jpg,,TRUE, +N1,60237,sortie-28a9a09e-6eb3-47bf-86ca-394277174660,https://biolit.fr/sorties/sortie-28a9a09e-6eb3-47bf-86ca-394277174660/,Noëlla M,,11/03/2017,13.0000000,13.0:15,43.284262000000,6.595036000000,,Plage de Grimaud ,46650,observation-28a9a09e-6eb3-47bf-86ca-394277174660-4,https://biolit.fr/observations/observation-28a9a09e-6eb3-47bf-86ca-394277174660-4/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171103_132258-min-scaled.jpg,,TRUE, +N1,60237,sortie-28a9a09e-6eb3-47bf-86ca-394277174660,https://biolit.fr/sorties/sortie-28a9a09e-6eb3-47bf-86ca-394277174660/,Noëlla M,,11/03/2017,13.0000000,13.0:15,43.284262000000,6.595036000000,,Plage de Grimaud ,46652,observation-28a9a09e-6eb3-47bf-86ca-394277174660-5,https://biolit.fr/observations/observation-28a9a09e-6eb3-47bf-86ca-394277174660-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171103_132328-min-scaled.jpg,,FALSE, +N1,60238,sortie-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f,https://biolit.fr/sorties/sortie-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f/,Phil,,11/05/2017,12.0:55,13.0000000,47.796987000000,-4.17760300000,,Loctudy - Finistère,46654,observation-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f,https://biolit.fr/observations/observation-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/P1090404.JPG,,TRUE, +N1,60238,sortie-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f,https://biolit.fr/sorties/sortie-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f/,Phil,,11/05/2017,12.0:55,13.0000000,47.796987000000,-4.17760300000,,Loctudy - Finistère,46656,observation-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f-2,https://biolit.fr/observations/observation-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f-2/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/P1090386.JPG,,TRUE, +N1,60238,sortie-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f,https://biolit.fr/sorties/sortie-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f/,Phil,,11/05/2017,12.0:55,13.0000000,47.796987000000,-4.17760300000,,Loctudy - Finistère,46658,observation-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f-3,https://biolit.fr/observations/observation-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f-3/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/P1090394.JPG,,TRUE, +N1,60238,sortie-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f,https://biolit.fr/sorties/sortie-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f/,Phil,,11/05/2017,12.0:55,13.0000000,47.796987000000,-4.17760300000,,Loctudy - Finistère,46660,observation-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f-4,https://biolit.fr/observations/observation-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f-4/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/P1090397.JPG,,TRUE, +N1,60238,sortie-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f,https://biolit.fr/sorties/sortie-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f/,Phil,,11/05/2017,12.0:55,13.0000000,47.796987000000,-4.17760300000,,Loctudy - Finistère,46662,observation-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f-5,https://biolit.fr/observations/observation-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f-5/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/P1090398.JPG,,TRUE, +N1,60238,sortie-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f,https://biolit.fr/sorties/sortie-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f/,Phil,,11/05/2017,12.0:55,13.0000000,47.796987000000,-4.17760300000,,Loctudy - Finistère,46664,observation-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f-6,https://biolit.fr/observations/observation-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f-6/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/P1090401.JPG,,TRUE, +N1,60239,sortie-4f708f54-9d3b-4827-b0d5-69e633d472c4,https://biolit.fr/sorties/sortie-4f708f54-9d3b-4827-b0d5-69e633d472c4/,LucileA,,11/06/2017,14.0:15,17.0000000,48.62258200000,-2.205565000000,,Ilôts de la Colombière,46666,observation-4f708f54-9d3b-4827-b0d5-69e633d472c4,https://biolit.fr/observations/observation-4f708f54-9d3b-4827-b0d5-69e633d472c4/,Tethya citrina,Orange de mer de Manche Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7843-scaled.jpg,,TRUE, +N1,60240,sortie-eeb9de60-aa1b-48f6-b65d-6c523ffcdd5d,https://biolit.fr/sorties/sortie-eeb9de60-aa1b-48f6-b65d-6c523ffcdd5d/,LucileA,,11/07/2017,9.0000000,11.0000000,47.484829000000,-3.099170000000,,Plage du Porigo,46668,observation-eeb9de60-aa1b-48f6-b65d-6c523ffcdd5d,https://biolit.fr/observations/observation-eeb9de60-aa1b-48f6-b65d-6c523ffcdd5d/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7810-scaled.jpg,,FALSE, +N1,60240,sortie-eeb9de60-aa1b-48f6-b65d-6c523ffcdd5d,https://biolit.fr/sorties/sortie-eeb9de60-aa1b-48f6-b65d-6c523ffcdd5d/,LucileA,,11/07/2017,9.0000000,11.0000000,47.484829000000,-3.099170000000,,Plage du Porigo,46670,observation-eeb9de60-aa1b-48f6-b65d-6c523ffcdd5d-2,https://biolit.fr/observations/observation-eeb9de60-aa1b-48f6-b65d-6c523ffcdd5d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7816-scaled.jpg,,FALSE, +N1,60240,sortie-eeb9de60-aa1b-48f6-b65d-6c523ffcdd5d,https://biolit.fr/sorties/sortie-eeb9de60-aa1b-48f6-b65d-6c523ffcdd5d/,LucileA,,11/07/2017,9.0000000,11.0000000,47.484829000000,-3.099170000000,,Plage du Porigo,46672,observation-eeb9de60-aa1b-48f6-b65d-6c523ffcdd5d-3,https://biolit.fr/observations/observation-eeb9de60-aa1b-48f6-b65d-6c523ffcdd5d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7817-scaled.jpg,,FALSE, +N1,60241,sortie-3dd84d2a-b9a9-4b48-bcfd-e6788f2f1d21,https://biolit.fr/sorties/sortie-3dd84d2a-b9a9-4b48-bcfd-e6788f2f1d21/,EMMAB,,10/26/2017 0:00,15.0000000,17.0000000,43.330092000000,5.210348000000,,petit mejean,46674,observation-3dd84d2a-b9a9-4b48-bcfd-e6788f2f1d21,https://biolit.fr/observations/observation-3dd84d2a-b9a9-4b48-bcfd-e6788f2f1d21/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171102_003.jpg,,FALSE, +N1,60241,sortie-3dd84d2a-b9a9-4b48-bcfd-e6788f2f1d21,https://biolit.fr/sorties/sortie-3dd84d2a-b9a9-4b48-bcfd-e6788f2f1d21/,EMMAB,,10/26/2017 0:00,15.0000000,17.0000000,43.330092000000,5.210348000000,,petit mejean,46676,observation-3dd84d2a-b9a9-4b48-bcfd-e6788f2f1d21-2,https://biolit.fr/observations/observation-3dd84d2a-b9a9-4b48-bcfd-e6788f2f1d21-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171102_006.jpg,,FALSE, +N1,60242,sortie-04973621-d4a5-4d5b-8a46-2e4152f05c5f,https://biolit.fr/sorties/sortie-04973621-d4a5-4d5b-8a46-2e4152f05c5f/,Phil,,11/06/2017,11.0:25,11.0000000,48.003923000000,-4.521477000000,,Plouhinec - Finistère,46678,observation-04973621-d4a5-4d5b-8a46-2e4152f05c5f,https://biolit.fr/observations/observation-04973621-d4a5-4d5b-8a46-2e4152f05c5f/,Gaidropsarus mediterraneus,Motelle à trois barbillons,,https://biolit.fr/wp-content/uploads/2023/07/20171106_112649.jpg,,TRUE, +N1,60242,sortie-04973621-d4a5-4d5b-8a46-2e4152f05c5f,https://biolit.fr/sorties/sortie-04973621-d4a5-4d5b-8a46-2e4152f05c5f/,Phil,,11/06/2017,11.0:25,11.0000000,48.003923000000,-4.521477000000,,Plouhinec - Finistère,46680,observation-04973621-d4a5-4d5b-8a46-2e4152f05c5f-2,https://biolit.fr/observations/observation-04973621-d4a5-4d5b-8a46-2e4152f05c5f-2/,Gaidropsarus mediterraneus,Motelle à trois barbillons,,https://biolit.fr/wp-content/uploads/2023/07/20171106_112757(0).jpg,,TRUE, +N1,60242,sortie-04973621-d4a5-4d5b-8a46-2e4152f05c5f,https://biolit.fr/sorties/sortie-04973621-d4a5-4d5b-8a46-2e4152f05c5f/,Phil,,11/06/2017,11.0:25,11.0000000,48.003923000000,-4.521477000000,,Plouhinec - Finistère,46682,observation-04973621-d4a5-4d5b-8a46-2e4152f05c5f-3,https://biolit.fr/observations/observation-04973621-d4a5-4d5b-8a46-2e4152f05c5f-3/,Gaidropsarus mediterraneus,Motelle à trois barbillons,,https://biolit.fr/wp-content/uploads/2023/07/20171106_112747.jpg,,TRUE, +N1,60242,sortie-04973621-d4a5-4d5b-8a46-2e4152f05c5f,https://biolit.fr/sorties/sortie-04973621-d4a5-4d5b-8a46-2e4152f05c5f/,Phil,,11/06/2017,11.0:25,11.0000000,48.003923000000,-4.521477000000,,Plouhinec - Finistère,46684,observation-04973621-d4a5-4d5b-8a46-2e4152f05c5f-4,https://biolit.fr/observations/observation-04973621-d4a5-4d5b-8a46-2e4152f05c5f-4/,Gaidropsarus mediterraneus,Motelle à trois barbillons,,https://biolit.fr/wp-content/uploads/2023/07/20171106_112739.jpg,,TRUE, +N1,60243,sortie-68916992-964e-41df-8110-64ee6b0d42dd,https://biolit.fr/sorties/sortie-68916992-964e-41df-8110-64ee6b0d42dd/,Phil,,11/04/2017,18.0000000,18.000005,47.803445000000,-4.374820000000,,Penmarc'h - Finistère,46686,observation-68916992-964e-41df-8110-64ee6b0d42dd,https://biolit.fr/observations/observation-68916992-964e-41df-8110-64ee6b0d42dd/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090280.JPG,,FALSE, +N1,60243,sortie-68916992-964e-41df-8110-64ee6b0d42dd,https://biolit.fr/sorties/sortie-68916992-964e-41df-8110-64ee6b0d42dd/,Phil,,11/04/2017,18.0000000,18.000005,47.803445000000,-4.374820000000,,Penmarc'h - Finistère,46688,observation-68916992-964e-41df-8110-64ee6b0d42dd-2,https://biolit.fr/observations/observation-68916992-964e-41df-8110-64ee6b0d42dd-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090283.JPG,,FALSE, +N1,60243,sortie-68916992-964e-41df-8110-64ee6b0d42dd,https://biolit.fr/sorties/sortie-68916992-964e-41df-8110-64ee6b0d42dd/,Phil,,11/04/2017,18.0000000,18.000005,47.803445000000,-4.374820000000,,Penmarc'h - Finistère,46690,observation-68916992-964e-41df-8110-64ee6b0d42dd-3,https://biolit.fr/observations/observation-68916992-964e-41df-8110-64ee6b0d42dd-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090277.JPG,,FALSE, +N1,60243,sortie-68916992-964e-41df-8110-64ee6b0d42dd,https://biolit.fr/sorties/sortie-68916992-964e-41df-8110-64ee6b0d42dd/,Phil,,11/04/2017,18.0000000,18.000005,47.803445000000,-4.374820000000,,Penmarc'h - Finistère,46692,observation-68916992-964e-41df-8110-64ee6b0d42dd-4,https://biolit.fr/observations/observation-68916992-964e-41df-8110-64ee6b0d42dd-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090272.JPG,,FALSE, +N1,60243,sortie-68916992-964e-41df-8110-64ee6b0d42dd,https://biolit.fr/sorties/sortie-68916992-964e-41df-8110-64ee6b0d42dd/,Phil,,11/04/2017,18.0000000,18.000005,47.803445000000,-4.374820000000,,Penmarc'h - Finistère,46694,observation-68916992-964e-41df-8110-64ee6b0d42dd-5,https://biolit.fr/observations/observation-68916992-964e-41df-8110-64ee6b0d42dd-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090269.JPG,,FALSE, +N1,60244,sortie-4b7acf82-90d1-4e06-890a-97497d346039,https://biolit.fr/sorties/sortie-4b7acf82-90d1-4e06-890a-97497d346039/,Millie,,10/20/2017 0:00,12.0000000,15.0000000,43.272962000000,5.362237000000,,plage des prophètes,46696,observation-4b7acf82-90d1-4e06-890a-97497d346039,https://biolit.fr/observations/observation-4b7acf82-90d1-4e06-890a-97497d346039/,,,,https://biolit.fr/wp-content/uploads/2023/07/1109-scaled.jpg,,FALSE, +N1,60244,sortie-4b7acf82-90d1-4e06-890a-97497d346039,https://biolit.fr/sorties/sortie-4b7acf82-90d1-4e06-890a-97497d346039/,Millie,,10/20/2017 0:00,12.0000000,15.0000000,43.272962000000,5.362237000000,,plage des prophètes,46698,observation-4b7acf82-90d1-4e06-890a-97497d346039-2,https://biolit.fr/observations/observation-4b7acf82-90d1-4e06-890a-97497d346039-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/1114-scaled.jpg,,FALSE, +N1,60244,sortie-4b7acf82-90d1-4e06-890a-97497d346039,https://biolit.fr/sorties/sortie-4b7acf82-90d1-4e06-890a-97497d346039/,Millie,,10/20/2017 0:00,12.0000000,15.0000000,43.272962000000,5.362237000000,,plage des prophètes,46700,observation-4b7acf82-90d1-4e06-890a-97497d346039-3,https://biolit.fr/observations/observation-4b7acf82-90d1-4e06-890a-97497d346039-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/1115-scaled.jpg,,FALSE, +N1,60244,sortie-4b7acf82-90d1-4e06-890a-97497d346039,https://biolit.fr/sorties/sortie-4b7acf82-90d1-4e06-890a-97497d346039/,Millie,,10/20/2017 0:00,12.0000000,15.0000000,43.272962000000,5.362237000000,,plage des prophètes,46702,observation-4b7acf82-90d1-4e06-890a-97497d346039-4,https://biolit.fr/observations/observation-4b7acf82-90d1-4e06-890a-97497d346039-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/1120-scaled.jpg,,FALSE, +N1,60244,sortie-4b7acf82-90d1-4e06-890a-97497d346039,https://biolit.fr/sorties/sortie-4b7acf82-90d1-4e06-890a-97497d346039/,Millie,,10/20/2017 0:00,12.0000000,15.0000000,43.272962000000,5.362237000000,,plage des prophètes,46704,observation-4b7acf82-90d1-4e06-890a-97497d346039-5,https://biolit.fr/observations/observation-4b7acf82-90d1-4e06-890a-97497d346039-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/1126-scaled.jpg,,FALSE, +N1,60244,sortie-4b7acf82-90d1-4e06-890a-97497d346039,https://biolit.fr/sorties/sortie-4b7acf82-90d1-4e06-890a-97497d346039/,Millie,,10/20/2017 0:00,12.0000000,15.0000000,43.272962000000,5.362237000000,,plage des prophètes,46706,observation-4b7acf82-90d1-4e06-890a-97497d346039-6,https://biolit.fr/observations/observation-4b7acf82-90d1-4e06-890a-97497d346039-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/1119-scaled.jpg,,FALSE, +N1,60245,sortie-f5b04d1b-5344-43f8-807c-02472d3f7f05,https://biolit.fr/sorties/sortie-f5b04d1b-5344-43f8-807c-02472d3f7f05/,Phil,,11/04/2017,17.0000000,17.0000000,47.829404000000,-4.362733000000,,Penmarc'h - Finistère,46708,observation-f5b04d1b-5344-43f8-807c-02472d3f7f05,https://biolit.fr/observations/observation-f5b04d1b-5344-43f8-807c-02472d3f7f05/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090221.JPG,,FALSE, +N1,60245,sortie-f5b04d1b-5344-43f8-807c-02472d3f7f05,https://biolit.fr/sorties/sortie-f5b04d1b-5344-43f8-807c-02472d3f7f05/,Phil,,11/04/2017,17.0000000,17.0000000,47.829404000000,-4.362733000000,,Penmarc'h - Finistère,46710,observation-f5b04d1b-5344-43f8-807c-02472d3f7f05-2,https://biolit.fr/observations/observation-f5b04d1b-5344-43f8-807c-02472d3f7f05-2/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1090220.JPG,,TRUE, +N1,60245,sortie-f5b04d1b-5344-43f8-807c-02472d3f7f05,https://biolit.fr/sorties/sortie-f5b04d1b-5344-43f8-807c-02472d3f7f05/,Phil,,11/04/2017,17.0000000,17.0000000,47.829404000000,-4.362733000000,,Penmarc'h - Finistère,46712,observation-f5b04d1b-5344-43f8-807c-02472d3f7f05-3,https://biolit.fr/observations/observation-f5b04d1b-5344-43f8-807c-02472d3f7f05-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090223.JPG,,FALSE, +N1,60245,sortie-f5b04d1b-5344-43f8-807c-02472d3f7f05,https://biolit.fr/sorties/sortie-f5b04d1b-5344-43f8-807c-02472d3f7f05/,Phil,,11/04/2017,17.0000000,17.0000000,47.829404000000,-4.362733000000,,Penmarc'h - Finistère,46714,observation-f5b04d1b-5344-43f8-807c-02472d3f7f05-4,https://biolit.fr/observations/observation-f5b04d1b-5344-43f8-807c-02472d3f7f05-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090217.JPG,,FALSE, +N1,60246,sortie-8426651c-2782-4861-8ab3-4ec420ce9026,https://biolit.fr/sorties/sortie-8426651c-2782-4861-8ab3-4ec420ce9026/,Phil,,11/04/2017,17.0:55,18.0000000,47.804216000000,-4.374809000000,,Penmarc'h - Finistère,46716,observation-8426651c-2782-4861-8ab3-4ec420ce9026,https://biolit.fr/observations/observation-8426651c-2782-4861-8ab3-4ec420ce9026/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/P1090252.JPG,,TRUE, +N1,60246,sortie-8426651c-2782-4861-8ab3-4ec420ce9026,https://biolit.fr/sorties/sortie-8426651c-2782-4861-8ab3-4ec420ce9026/,Phil,,11/04/2017,17.0:55,18.0000000,47.804216000000,-4.374809000000,,Penmarc'h - Finistère,46718,observation-8426651c-2782-4861-8ab3-4ec420ce9026-2,https://biolit.fr/observations/observation-8426651c-2782-4861-8ab3-4ec420ce9026-2/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/P1090257.JPG,,TRUE, +N1,60246,sortie-8426651c-2782-4861-8ab3-4ec420ce9026,https://biolit.fr/sorties/sortie-8426651c-2782-4861-8ab3-4ec420ce9026/,Phil,,11/04/2017,17.0:55,18.0000000,47.804216000000,-4.374809000000,,Penmarc'h - Finistère,46720,observation-8426651c-2782-4861-8ab3-4ec420ce9026-3,https://biolit.fr/observations/observation-8426651c-2782-4861-8ab3-4ec420ce9026-3/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/P1090259.JPG,,TRUE, +N1,60247,sortie-288f6cdd-6f17-4080-9226-526d6c8d7335,https://biolit.fr/sorties/sortie-288f6cdd-6f17-4080-9226-526d6c8d7335/,Millie,,10/20/2017 0:00,11.0000000,17.0000000,43.294261000000,5.359605000000,,plage prado,46722,observation-288f6cdd-6f17-4080-9226-526d6c8d7335,https://biolit.fr/observations/observation-288f6cdd-6f17-4080-9226-526d6c8d7335/,Suaeda vera,Soude ligneuse,,https://biolit.fr/wp-content/uploads/2023/07/22833263_1772953242747371_1361430704_o.jpg,,TRUE, +N1,60247,sortie-288f6cdd-6f17-4080-9226-526d6c8d7335,https://biolit.fr/sorties/sortie-288f6cdd-6f17-4080-9226-526d6c8d7335/,Millie,,10/20/2017 0:00,11.0000000,17.0000000,43.294261000000,5.359605000000,,plage prado,46724,observation-288f6cdd-6f17-4080-9226-526d6c8d7335-2,https://biolit.fr/observations/observation-288f6cdd-6f17-4080-9226-526d6c8d7335-2/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/22833722_1772953186080710_743799054_o.jpg,,TRUE, +N1,60247,sortie-288f6cdd-6f17-4080-9226-526d6c8d7335,https://biolit.fr/sorties/sortie-288f6cdd-6f17-4080-9226-526d6c8d7335/,Millie,,10/20/2017 0:00,11.0000000,17.0000000,43.294261000000,5.359605000000,,plage prado,46726,observation-288f6cdd-6f17-4080-9226-526d6c8d7335-3,https://biolit.fr/observations/observation-288f6cdd-6f17-4080-9226-526d6c8d7335-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/22850391_1772953132747382_951611749_o.jpg,,FALSE, +N1,60247,sortie-288f6cdd-6f17-4080-9226-526d6c8d7335,https://biolit.fr/sorties/sortie-288f6cdd-6f17-4080-9226-526d6c8d7335/,Millie,,10/20/2017 0:00,11.0000000,17.0000000,43.294261000000,5.359605000000,,plage prado,46728,observation-288f6cdd-6f17-4080-9226-526d6c8d7335-4,https://biolit.fr/observations/observation-288f6cdd-6f17-4080-9226-526d6c8d7335-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/22850500_1772953219414040_1829766786_o.jpg,,FALSE, +N1,60247,sortie-288f6cdd-6f17-4080-9226-526d6c8d7335,https://biolit.fr/sorties/sortie-288f6cdd-6f17-4080-9226-526d6c8d7335/,Millie,,10/20/2017 0:00,11.0000000,17.0000000,43.294261000000,5.359605000000,,plage prado,46730,observation-288f6cdd-6f17-4080-9226-526d6c8d7335-5,https://biolit.fr/observations/observation-288f6cdd-6f17-4080-9226-526d6c8d7335-5/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/22882280_1772953139414048_1510390754_o.jpg,,TRUE, +N1,60247,sortie-288f6cdd-6f17-4080-9226-526d6c8d7335,https://biolit.fr/sorties/sortie-288f6cdd-6f17-4080-9226-526d6c8d7335/,Millie,,10/20/2017 0:00,11.0000000,17.0000000,43.294261000000,5.359605000000,,plage prado,46732,observation-288f6cdd-6f17-4080-9226-526d6c8d7335-6,https://biolit.fr/observations/observation-288f6cdd-6f17-4080-9226-526d6c8d7335-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/22851401_1773308076045221_1881981251_o.jpg,,FALSE, +N1,60247,sortie-288f6cdd-6f17-4080-9226-526d6c8d7335,https://biolit.fr/sorties/sortie-288f6cdd-6f17-4080-9226-526d6c8d7335/,Millie,,10/20/2017 0:00,11.0000000,17.0000000,43.294261000000,5.359605000000,,plage prado,46734,observation-288f6cdd-6f17-4080-9226-526d6c8d7335-7,https://biolit.fr/observations/observation-288f6cdd-6f17-4080-9226-526d6c8d7335-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/22879414_1773308069378555_1894295156_o.jpg,,FALSE, +N1,60247,sortie-288f6cdd-6f17-4080-9226-526d6c8d7335,https://biolit.fr/sorties/sortie-288f6cdd-6f17-4080-9226-526d6c8d7335/,Millie,,10/20/2017 0:00,11.0000000,17.0000000,43.294261000000,5.359605000000,,plage prado,46736,observation-288f6cdd-6f17-4080-9226-526d6c8d7335-8,https://biolit.fr/observations/observation-288f6cdd-6f17-4080-9226-526d6c8d7335-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/22851599_1773308066045222_1948772721_o.jpg,,FALSE, +N1,60247,sortie-288f6cdd-6f17-4080-9226-526d6c8d7335,https://biolit.fr/sorties/sortie-288f6cdd-6f17-4080-9226-526d6c8d7335/,Millie,,10/20/2017 0:00,11.0000000,17.0000000,43.294261000000,5.359605000000,,plage prado,46738,observation-288f6cdd-6f17-4080-9226-526d6c8d7335-9,https://biolit.fr/observations/observation-288f6cdd-6f17-4080-9226-526d6c8d7335-9/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/22879019_1772953232747372_1460037333_o.jpg,,TRUE, +N1,60248,sortie-a7aabd0a-467b-4b6a-b795-2d4ac6c86204,https://biolit.fr/sorties/sortie-a7aabd0a-467b-4b6a-b795-2d4ac6c86204/,Millie,,10/13/2017 0:00,11.0000000,15.0000000,43.211837000000,5.454373000000,,plage de sugitton,46740,observation-a7aabd0a-467b-4b6a-b795-2d4ac6c86204,https://biolit.fr/observations/observation-a7aabd0a-467b-4b6a-b795-2d4ac6c86204/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/2023/07/22833408_10208078913690141_764458931_o.jpg,,TRUE, +N1,60249,sortie-50ee383e-4602-46fb-a841-a42466c69c31,https://biolit.fr/sorties/sortie-50ee383e-4602-46fb-a841-a42466c69c31/,Phil,,11/06/2017,11.0:15,11.0000000,48.004980000000,-4.520830000000,,Plouhinec - Finistère,46742,observation-50ee383e-4602-46fb-a841-a42466c69c31,https://biolit.fr/observations/observation-50ee383e-4602-46fb-a841-a42466c69c31/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_111927.jpg,,FALSE, +N1,60249,sortie-50ee383e-4602-46fb-a841-a42466c69c31,https://biolit.fr/sorties/sortie-50ee383e-4602-46fb-a841-a42466c69c31/,Phil,,11/06/2017,11.0:15,11.0000000,48.004980000000,-4.520830000000,,Plouhinec - Finistère,46744,observation-50ee383e-4602-46fb-a841-a42466c69c31-2,https://biolit.fr/observations/observation-50ee383e-4602-46fb-a841-a42466c69c31-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_111923.jpg,,FALSE, +N1,60249,sortie-50ee383e-4602-46fb-a841-a42466c69c31,https://biolit.fr/sorties/sortie-50ee383e-4602-46fb-a841-a42466c69c31/,Phil,,11/06/2017,11.0:15,11.0000000,48.004980000000,-4.520830000000,,Plouhinec - Finistère,46746,observation-50ee383e-4602-46fb-a841-a42466c69c31-3,https://biolit.fr/observations/observation-50ee383e-4602-46fb-a841-a42466c69c31-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_111930.jpg,,FALSE, +N1,60249,sortie-50ee383e-4602-46fb-a841-a42466c69c31,https://biolit.fr/sorties/sortie-50ee383e-4602-46fb-a841-a42466c69c31/,Phil,,11/06/2017,11.0:15,11.0000000,48.004980000000,-4.520830000000,,Plouhinec - Finistère,46748,observation-50ee383e-4602-46fb-a841-a42466c69c31-4,https://biolit.fr/observations/observation-50ee383e-4602-46fb-a841-a42466c69c31-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_111939.jpg,,FALSE, +N1,60249,sortie-50ee383e-4602-46fb-a841-a42466c69c31,https://biolit.fr/sorties/sortie-50ee383e-4602-46fb-a841-a42466c69c31/,Phil,,11/06/2017,11.0:15,11.0000000,48.004980000000,-4.520830000000,,Plouhinec - Finistère,46750,observation-50ee383e-4602-46fb-a841-a42466c69c31-5,https://biolit.fr/observations/observation-50ee383e-4602-46fb-a841-a42466c69c31-5/,Aplysilla rosea,Aplysille rose,,https://biolit.fr/wp-content/uploads/2023/07/20171106_111934.jpg,,TRUE, +N1,60249,sortie-50ee383e-4602-46fb-a841-a42466c69c31,https://biolit.fr/sorties/sortie-50ee383e-4602-46fb-a841-a42466c69c31/,Phil,,11/06/2017,11.0:15,11.0000000,48.004980000000,-4.520830000000,,Plouhinec - Finistère,46752,observation-50ee383e-4602-46fb-a841-a42466c69c31-6,https://biolit.fr/observations/observation-50ee383e-4602-46fb-a841-a42466c69c31-6/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20171106_111941.jpg,,TRUE, +N1,60250,sortie-586cbc37-50af-4631-b4b3-543ef04fbc28,https://biolit.fr/sorties/sortie-586cbc37-50af-4631-b4b3-543ef04fbc28/,Phil,,11/05/2017,12.0000000,12.0:55,47.797379000000,-4.17702700000,,Loctudy - Finistère,46754,observation-586cbc37-50af-4631-b4b3-543ef04fbc28,https://biolit.fr/observations/observation-586cbc37-50af-4631-b4b3-543ef04fbc28/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/P1090377.JPG,,TRUE, +N1,60250,sortie-586cbc37-50af-4631-b4b3-543ef04fbc28,https://biolit.fr/sorties/sortie-586cbc37-50af-4631-b4b3-543ef04fbc28/,Phil,,11/05/2017,12.0000000,12.0:55,47.797379000000,-4.17702700000,,Loctudy - Finistère,46756,observation-586cbc37-50af-4631-b4b3-543ef04fbc28-2,https://biolit.fr/observations/observation-586cbc37-50af-4631-b4b3-543ef04fbc28-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090374.JPG,,FALSE, +N1,60250,sortie-586cbc37-50af-4631-b4b3-543ef04fbc28,https://biolit.fr/sorties/sortie-586cbc37-50af-4631-b4b3-543ef04fbc28/,Phil,,11/05/2017,12.0000000,12.0:55,47.797379000000,-4.17702700000,,Loctudy - Finistère,46758,observation-586cbc37-50af-4631-b4b3-543ef04fbc28-3,https://biolit.fr/observations/observation-586cbc37-50af-4631-b4b3-543ef04fbc28-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090373.JPG,,FALSE, +N1,60250,sortie-586cbc37-50af-4631-b4b3-543ef04fbc28,https://biolit.fr/sorties/sortie-586cbc37-50af-4631-b4b3-543ef04fbc28/,Phil,,11/05/2017,12.0000000,12.0:55,47.797379000000,-4.17702700000,,Loctudy - Finistère,46760,observation-586cbc37-50af-4631-b4b3-543ef04fbc28-4,https://biolit.fr/observations/observation-586cbc37-50af-4631-b4b3-543ef04fbc28-4/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1090384.JPG,,TRUE, +N1,60250,sortie-586cbc37-50af-4631-b4b3-543ef04fbc28,https://biolit.fr/sorties/sortie-586cbc37-50af-4631-b4b3-543ef04fbc28/,Phil,,11/05/2017,12.0000000,12.0:55,47.797379000000,-4.17702700000,,Loctudy - Finistère,46762,observation-586cbc37-50af-4631-b4b3-543ef04fbc28-5,https://biolit.fr/observations/observation-586cbc37-50af-4631-b4b3-543ef04fbc28-5/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/P1090382.JPG,,TRUE, +N1,60251,sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08,https://biolit.fr/sorties/sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08/,Millie,,10/26/2017 0:00,12.0000000,15.0000000,43.357687000000,5.289994000000,,plage du fortin ,46764,observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08,https://biolit.fr/observations/observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08/,,,,https://biolit.fr/wp-content/uploads/2023/07/FILE0096-scaled.jpg,,FALSE, +N1,60251,sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08,https://biolit.fr/sorties/sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08/,Millie,,10/26/2017 0:00,12.0000000,15.0000000,43.357687000000,5.289994000000,,plage du fortin ,46766,observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-2,https://biolit.fr/observations/observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-2/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/22833495_10208078543520887_895375065_o.jpg,,TRUE, +N1,60251,sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08,https://biolit.fr/sorties/sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08/,Millie,,10/26/2017 0:00,12.0000000,15.0000000,43.357687000000,5.289994000000,,plage du fortin ,46768,observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-3,https://biolit.fr/observations/observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-3/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/22833626_10208078543440885_103589108_o.jpg,,TRUE, +N1,60251,sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08,https://biolit.fr/sorties/sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08/,Millie,,10/26/2017 0:00,12.0000000,15.0000000,43.357687000000,5.289994000000,,plage du fortin ,46770,observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-4,https://biolit.fr/observations/observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/22851439_1772951859414176_1624568917_o.jpg,,FALSE, +N1,60251,sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08,https://biolit.fr/sorties/sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08/,Millie,,10/26/2017 0:00,12.0000000,15.0000000,43.357687000000,5.289994000000,,plage du fortin ,46772,observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-5,https://biolit.fr/observations/observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-5/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/FILE0081-scaled.jpg,,TRUE, +N1,60251,sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08,https://biolit.fr/sorties/sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08/,Millie,,10/26/2017 0:00,12.0000000,15.0000000,43.357687000000,5.289994000000,,plage du fortin ,46774,observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-6,https://biolit.fr/observations/observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-6/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/FILE0082-scaled.jpg,,TRUE, +N1,60251,sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08,https://biolit.fr/sorties/sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08/,Millie,,10/26/2017 0:00,12.0000000,15.0000000,43.357687000000,5.289994000000,,plage du fortin ,46776,observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-7,https://biolit.fr/observations/observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/22833248_1772951802747515_1538975087_o.jpg,,FALSE, +N1,60251,sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08,https://biolit.fr/sorties/sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08/,Millie,,10/26/2017 0:00,12.0000000,15.0000000,43.357687000000,5.289994000000,,plage du fortin ,46778,observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-8,https://biolit.fr/observations/observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/22833468_1772951942747501_542240410_o.jpg,,FALSE, +N1,60251,sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08,https://biolit.fr/sorties/sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08/,Millie,,10/26/2017 0:00,12.0000000,15.0000000,43.357687000000,5.289994000000,,plage du fortin ,46780,observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-9,https://biolit.fr/observations/observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/22833694_1772951776080851_301548782_o.jpg,,FALSE, +N1,60251,sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08,https://biolit.fr/sorties/sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08/,Millie,,10/26/2017 0:00,12.0000000,15.0000000,43.357687000000,5.289994000000,,plage du fortin ,46782,observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-10,https://biolit.fr/observations/observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/22879210_1772951706080858_917434013_o.jpg,,FALSE, +N1,60252,sortie-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d,https://biolit.fr/sorties/sortie-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d/,Phil,,11/05/2017,12.0000000,12.0000000,47.799112000000,-4.177710000000,,Loctudy - Finistère,46784,observation-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d,https://biolit.fr/observations/observation-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/P1090367.JPG,,TRUE, +N1,60252,sortie-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d,https://biolit.fr/sorties/sortie-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d/,Phil,,11/05/2017,12.0000000,12.0000000,47.799112000000,-4.177710000000,,Loctudy - Finistère,46786,observation-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d-2,https://biolit.fr/observations/observation-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090363.JPG,,FALSE, +N1,60252,sortie-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d,https://biolit.fr/sorties/sortie-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d/,Phil,,11/05/2017,12.0000000,12.0000000,47.799112000000,-4.177710000000,,Loctudy - Finistère,46788,observation-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d-3,https://biolit.fr/observations/observation-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090362.JPG,,FALSE, +N1,60252,sortie-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d,https://biolit.fr/sorties/sortie-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d/,Phil,,11/05/2017,12.0000000,12.0000000,47.799112000000,-4.177710000000,,Loctudy - Finistère,46790,observation-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d-4,https://biolit.fr/observations/observation-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d-4/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1090361.JPG,,TRUE, +N1,60252,sortie-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d,https://biolit.fr/sorties/sortie-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d/,Phil,,11/05/2017,12.0000000,12.0000000,47.799112000000,-4.177710000000,,Loctudy - Finistère,46792,observation-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d-5,https://biolit.fr/observations/observation-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090359.JPG,,FALSE, +N1,60252,sortie-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d,https://biolit.fr/sorties/sortie-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d/,Phil,,11/05/2017,12.0000000,12.0000000,47.799112000000,-4.177710000000,,Loctudy - Finistère,46794,observation-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d-6,https://biolit.fr/observations/observation-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090368.JPG,,FALSE, +N1,60252,sortie-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d,https://biolit.fr/sorties/sortie-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d/,Phil,,11/05/2017,12.0000000,12.0000000,47.799112000000,-4.177710000000,,Loctudy - Finistère,46796,observation-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d-7,https://biolit.fr/observations/observation-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d-7/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1090369.JPG,,TRUE, +N1,60253,sortie-521dfe51-9d0e-491a-a98b-fcb449632b46,https://biolit.fr/sorties/sortie-521dfe51-9d0e-491a-a98b-fcb449632b46/,Phil,,11/04/2017,15.0:55,16.0000000,47.826209000000,-4.358077000000,,Penmarc'h - Finistère,46798,observation-521dfe51-9d0e-491a-a98b-fcb449632b46,https://biolit.fr/observations/observation-521dfe51-9d0e-491a-a98b-fcb449632b46/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/P1080856.JPG,,TRUE, +N1,60253,sortie-521dfe51-9d0e-491a-a98b-fcb449632b46,https://biolit.fr/sorties/sortie-521dfe51-9d0e-491a-a98b-fcb449632b46/,Phil,,11/04/2017,15.0:55,16.0000000,47.826209000000,-4.358077000000,,Penmarc'h - Finistère,46800,observation-521dfe51-9d0e-491a-a98b-fcb449632b46-2,https://biolit.fr/observations/observation-521dfe51-9d0e-491a-a98b-fcb449632b46-2/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1080860.JPG,,TRUE, +N1,60253,sortie-521dfe51-9d0e-491a-a98b-fcb449632b46,https://biolit.fr/sorties/sortie-521dfe51-9d0e-491a-a98b-fcb449632b46/,Phil,,11/04/2017,15.0:55,16.0000000,47.826209000000,-4.358077000000,,Penmarc'h - Finistère,46802,observation-521dfe51-9d0e-491a-a98b-fcb449632b46-3,https://biolit.fr/observations/observation-521dfe51-9d0e-491a-a98b-fcb449632b46-3/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1080852.JPG,,TRUE, +N1,60253,sortie-521dfe51-9d0e-491a-a98b-fcb449632b46,https://biolit.fr/sorties/sortie-521dfe51-9d0e-491a-a98b-fcb449632b46/,Phil,,11/04/2017,15.0:55,16.0000000,47.826209000000,-4.358077000000,,Penmarc'h - Finistère,46804,observation-521dfe51-9d0e-491a-a98b-fcb449632b46-4,https://biolit.fr/observations/observation-521dfe51-9d0e-491a-a98b-fcb449632b46-4/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1080857.JPG,,TRUE, +N1,60254,sortie-248073a9-ed19-4371-bb28-1b43cd422ee6,https://biolit.fr/sorties/sortie-248073a9-ed19-4371-bb28-1b43cd422ee6/,CarpeDiem,,8/26/2017 0:00,17.0000000,19.0000000,42.921483000000,9.470113000000,,Anse de Catarelle (Meria),46806,observation-248073a9-ed19-4371-bb28-1b43cd422ee6,https://biolit.fr/observations/observation-248073a9-ed19-4371-bb28-1b43cd422ee6/,Stramonita haemastoma,Bouche de sang,,https://biolit.fr/wp-content/uploads/2023/07/Bouche de sang (2)-scaled.jpg,,TRUE, +N1,60254,sortie-248073a9-ed19-4371-bb28-1b43cd422ee6,https://biolit.fr/sorties/sortie-248073a9-ed19-4371-bb28-1b43cd422ee6/,CarpeDiem,,8/26/2017 0:00,17.0000000,19.0000000,42.921483000000,9.470113000000,,Anse de Catarelle (Meria),46810,observation-248073a9-ed19-4371-bb28-1b43cd422ee6-3,https://biolit.fr/observations/observation-248073a9-ed19-4371-bb28-1b43cd422ee6-3/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/coquillage-scaled.jpg,,TRUE, +N1,60254,sortie-248073a9-ed19-4371-bb28-1b43cd422ee6,https://biolit.fr/sorties/sortie-248073a9-ed19-4371-bb28-1b43cd422ee6/,CarpeDiem,,8/26/2017 0:00,17.0000000,19.0000000,42.921483000000,9.470113000000,,Anse de Catarelle (Meria),46811,observation-248073a9-ed19-4371-bb28-1b43cd422ee6-4,https://biolit.fr/observations/observation-248073a9-ed19-4371-bb28-1b43cd422ee6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabe 2-scaled.jpg,,FALSE, +N1,60254,sortie-248073a9-ed19-4371-bb28-1b43cd422ee6,https://biolit.fr/sorties/sortie-248073a9-ed19-4371-bb28-1b43cd422ee6/,CarpeDiem,,8/26/2017 0:00,17.0000000,19.0000000,42.921483000000,9.470113000000,,Anse de Catarelle (Meria),46813,observation-248073a9-ed19-4371-bb28-1b43cd422ee6-5,https://biolit.fr/observations/observation-248073a9-ed19-4371-bb28-1b43cd422ee6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/crage-scaled.jpg,,FALSE, +N1,60254,sortie-248073a9-ed19-4371-bb28-1b43cd422ee6,https://biolit.fr/sorties/sortie-248073a9-ed19-4371-bb28-1b43cd422ee6/,CarpeDiem,,8/26/2017 0:00,17.0000000,19.0000000,42.921483000000,9.470113000000,,Anse de Catarelle (Meria),46815,observation-248073a9-ed19-4371-bb28-1b43cd422ee6-6,https://biolit.fr/observations/observation-248073a9-ed19-4371-bb28-1b43cd422ee6-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Criste marine-scaled.jpg,,FALSE, +N1,60254,sortie-248073a9-ed19-4371-bb28-1b43cd422ee6,https://biolit.fr/sorties/sortie-248073a9-ed19-4371-bb28-1b43cd422ee6/,CarpeDiem,,8/26/2017 0:00,17.0000000,19.0000000,42.921483000000,9.470113000000,,Anse de Catarelle (Meria),46816,observation-248073a9-ed19-4371-bb28-1b43cd422ee6-7,https://biolit.fr/observations/observation-248073a9-ed19-4371-bb28-1b43cd422ee6-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/etoile de mer_0-scaled.jpg,,FALSE, +N1,60254,sortie-248073a9-ed19-4371-bb28-1b43cd422ee6,https://biolit.fr/sorties/sortie-248073a9-ed19-4371-bb28-1b43cd422ee6/,CarpeDiem,,8/26/2017 0:00,17.0000000,19.0000000,42.921483000000,9.470113000000,,Anse de Catarelle (Meria),46818,observation-248073a9-ed19-4371-bb28-1b43cd422ee6-8,https://biolit.fr/observations/observation-248073a9-ed19-4371-bb28-1b43cd422ee6-8/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/gibbules toupies-scaled.jpg,,TRUE, +N1,60254,sortie-248073a9-ed19-4371-bb28-1b43cd422ee6,https://biolit.fr/sorties/sortie-248073a9-ed19-4371-bb28-1b43cd422ee6/,CarpeDiem,,8/26/2017 0:00,17.0000000,19.0000000,42.921483000000,9.470113000000,,Anse de Catarelle (Meria),46820,observation-248073a9-ed19-4371-bb28-1b43cd422ee6-9,https://biolit.fr/observations/observation-248073a9-ed19-4371-bb28-1b43cd422ee6-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/crottes-scaled.jpg,,FALSE, +N1,60254,sortie-248073a9-ed19-4371-bb28-1b43cd422ee6,https://biolit.fr/sorties/sortie-248073a9-ed19-4371-bb28-1b43cd422ee6/,CarpeDiem,,8/26/2017 0:00,17.0000000,19.0000000,42.921483000000,9.470113000000,,Anse de Catarelle (Meria),46822,observation-248073a9-ed19-4371-bb28-1b43cd422ee6-10,https://biolit.fr/observations/observation-248073a9-ed19-4371-bb28-1b43cd422ee6-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/padina-scaled.jpg,,FALSE, +N1,60254,sortie-248073a9-ed19-4371-bb28-1b43cd422ee6,https://biolit.fr/sorties/sortie-248073a9-ed19-4371-bb28-1b43cd422ee6/,CarpeDiem,,8/26/2017 0:00,17.0000000,19.0000000,42.921483000000,9.470113000000,,Anse de Catarelle (Meria),46824,observation-248073a9-ed19-4371-bb28-1b43cd422ee6-11,https://biolit.fr/observations/observation-248073a9-ed19-4371-bb28-1b43cd422ee6-11/,Muraena helena,Murène commune,,https://biolit.fr/wp-content/uploads/2023/07/Murene-scaled.jpg,,TRUE, +N1,60254,sortie-248073a9-ed19-4371-bb28-1b43cd422ee6,https://biolit.fr/sorties/sortie-248073a9-ed19-4371-bb28-1b43cd422ee6/,CarpeDiem,,8/26/2017 0:00,17.0000000,19.0000000,42.921483000000,9.470113000000,,Anse de Catarelle (Meria),46826,observation-248073a9-ed19-4371-bb28-1b43cd422ee6-12,https://biolit.fr/observations/observation-248073a9-ed19-4371-bb28-1b43cd422ee6-12/,Jacobaea maritima,Cinéraire maritime,,https://biolit.fr/wp-content/uploads/2023/07/plante-scaled.jpg,,TRUE, +N1,60254,sortie-248073a9-ed19-4371-bb28-1b43cd422ee6,https://biolit.fr/sorties/sortie-248073a9-ed19-4371-bb28-1b43cd422ee6/,CarpeDiem,,8/26/2017 0:00,17.0000000,19.0000000,42.921483000000,9.470113000000,,Anse de Catarelle (Meria),46827,observation-248073a9-ed19-4371-bb28-1b43cd422ee6-13,https://biolit.fr/observations/observation-248073a9-ed19-4371-bb28-1b43cd422ee6-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/Posidonie_1-scaled.jpg,,FALSE, +N1,60254,sortie-248073a9-ed19-4371-bb28-1b43cd422ee6,https://biolit.fr/sorties/sortie-248073a9-ed19-4371-bb28-1b43cd422ee6/,CarpeDiem,,8/26/2017 0:00,17.0000000,19.0000000,42.921483000000,9.470113000000,,Anse de Catarelle (Meria),46828,observation-248073a9-ed19-4371-bb28-1b43cd422ee6-14,https://biolit.fr/observations/observation-248073a9-ed19-4371-bb28-1b43cd422ee6-14/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/Tomate de Mer-scaled.jpg,,TRUE, +N1,60255,sortie-63a7270c-838c-4587-bb47-91a98a41fbe3,https://biolit.fr/sorties/sortie-63a7270c-838c-4587-bb47-91a98a41fbe3/,CarpeDiem,,8/20/2017 0:00,17.0:45,19.0000000,42.924219000000,9.361703000000,,Plage Alisu,46829,observation-63a7270c-838c-4587-bb47-91a98a41fbe3,https://biolit.fr/observations/observation-63a7270c-838c-4587-bb47-91a98a41fbe3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algue_0-scaled.jpg,,FALSE, +N1,60255,sortie-63a7270c-838c-4587-bb47-91a98a41fbe3,https://biolit.fr/sorties/sortie-63a7270c-838c-4587-bb47-91a98a41fbe3/,CarpeDiem,,8/20/2017 0:00,17.0:45,19.0000000,42.924219000000,9.361703000000,,Plage Alisu,46831,observation-63a7270c-838c-4587-bb47-91a98a41fbe3-2,https://biolit.fr/observations/observation-63a7270c-838c-4587-bb47-91a98a41fbe3-2/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Blanc de seiche-scaled.jpg,,TRUE, +N1,60255,sortie-63a7270c-838c-4587-bb47-91a98a41fbe3,https://biolit.fr/sorties/sortie-63a7270c-838c-4587-bb47-91a98a41fbe3/,CarpeDiem,,8/20/2017 0:00,17.0:45,19.0000000,42.924219000000,9.361703000000,,Plage Alisu,46833,observation-63a7270c-838c-4587-bb47-91a98a41fbe3-3,https://biolit.fr/observations/observation-63a7270c-838c-4587-bb47-91a98a41fbe3-3/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/Codium bursa-scaled.jpg,,TRUE, +N1,60255,sortie-63a7270c-838c-4587-bb47-91a98a41fbe3,https://biolit.fr/sorties/sortie-63a7270c-838c-4587-bb47-91a98a41fbe3/,CarpeDiem,,8/20/2017 0:00,17.0:45,19.0000000,42.924219000000,9.361703000000,,Plage Alisu,46835,observation-63a7270c-838c-4587-bb47-91a98a41fbe3-4,https://biolit.fr/observations/observation-63a7270c-838c-4587-bb47-91a98a41fbe3-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/ponte de bouche de sang-scaled.jpg,,FALSE, +N1,60255,sortie-63a7270c-838c-4587-bb47-91a98a41fbe3,https://biolit.fr/sorties/sortie-63a7270c-838c-4587-bb47-91a98a41fbe3/,CarpeDiem,,8/20/2017 0:00,17.0:45,19.0000000,42.924219000000,9.361703000000,,Plage Alisu,46837,observation-63a7270c-838c-4587-bb47-91a98a41fbe3-5,https://biolit.fr/observations/observation-63a7270c-838c-4587-bb47-91a98a41fbe3-5/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/pontes de murex-scaled.jpg,,TRUE, +N1,60255,sortie-63a7270c-838c-4587-bb47-91a98a41fbe3,https://biolit.fr/sorties/sortie-63a7270c-838c-4587-bb47-91a98a41fbe3/,CarpeDiem,,8/20/2017 0:00,17.0:45,19.0000000,42.924219000000,9.361703000000,,Plage Alisu,46839,observation-63a7270c-838c-4587-bb47-91a98a41fbe3-6,https://biolit.fr/observations/observation-63a7270c-838c-4587-bb47-91a98a41fbe3-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Posidonie_0-scaled.jpg,,FALSE, +N1,60255,sortie-63a7270c-838c-4587-bb47-91a98a41fbe3,https://biolit.fr/sorties/sortie-63a7270c-838c-4587-bb47-91a98a41fbe3/,CarpeDiem,,8/20/2017 0:00,17.0:45,19.0000000,42.924219000000,9.361703000000,,Plage Alisu,46840,observation-63a7270c-838c-4587-bb47-91a98a41fbe3-7,https://biolit.fr/observations/observation-63a7270c-838c-4587-bb47-91a98a41fbe3-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/tellines-scaled.jpg,,FALSE, +N1,60255,sortie-63a7270c-838c-4587-bb47-91a98a41fbe3,https://biolit.fr/sorties/sortie-63a7270c-838c-4587-bb47-91a98a41fbe3/,CarpeDiem,,8/20/2017 0:00,17.0:45,19.0000000,42.924219000000,9.361703000000,,Plage Alisu,46842,observation-63a7270c-838c-4587-bb47-91a98a41fbe3-8,https://biolit.fr/observations/observation-63a7270c-838c-4587-bb47-91a98a41fbe3-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170820_201029-scaled.jpg,,FALSE, +N1,60256,sortie-83f34c57-d2c5-46b3-be30-4924d43951b8,https://biolit.fr/sorties/sortie-83f34c57-d2c5-46b3-be30-4924d43951b8/,CarpeDiem,,8/21/2017 0:00,17.0000000,18.0000000,42.96346600000,9.346744000000,,"Centuri, criques ",46844,observation-83f34c57-d2c5-46b3-be30-4924d43951b8,https://biolit.fr/observations/observation-83f34c57-d2c5-46b3-be30-4924d43951b8/,Tarantinaea lignaria,Fasciolaire de Tarente,,https://biolit.fr/wp-content/uploads/2023/07/Fasciolaire de Tarente-scaled.jpg,,TRUE, +N1,60256,sortie-83f34c57-d2c5-46b3-be30-4924d43951b8,https://biolit.fr/sorties/sortie-83f34c57-d2c5-46b3-be30-4924d43951b8/,CarpeDiem,,8/21/2017 0:00,17.0000000,18.0000000,42.96346600000,9.346744000000,,"Centuri, criques ",46846,observation-83f34c57-d2c5-46b3-be30-4924d43951b8-2,https://biolit.fr/observations/observation-83f34c57-d2c5-46b3-be30-4924d43951b8-2/,Tarantinaea lignaria,Fasciolaire de Tarente,,https://biolit.fr/wp-content/uploads/2023/07/Fasciolaire de Tarente 2-scaled.jpg,,TRUE, +N1,60256,sortie-83f34c57-d2c5-46b3-be30-4924d43951b8,https://biolit.fr/sorties/sortie-83f34c57-d2c5-46b3-be30-4924d43951b8/,CarpeDiem,,8/21/2017 0:00,17.0000000,18.0000000,42.96346600000,9.346744000000,,"Centuri, criques ",46848,observation-83f34c57-d2c5-46b3-be30-4924d43951b8-3,https://biolit.fr/observations/observation-83f34c57-d2c5-46b3-be30-4924d43951b8-3/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/Pagure des rochers-scaled.jpg,,TRUE, +N1,60256,sortie-83f34c57-d2c5-46b3-be30-4924d43951b8,https://biolit.fr/sorties/sortie-83f34c57-d2c5-46b3-be30-4924d43951b8/,CarpeDiem,,8/21/2017 0:00,17.0000000,18.0000000,42.96346600000,9.346744000000,,"Centuri, criques ",46850,observation-83f34c57-d2c5-46b3-be30-4924d43951b8-4,https://biolit.fr/observations/observation-83f34c57-d2c5-46b3-be30-4924d43951b8-4/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/2023/07/Etoile de Mer-scaled.jpg,,TRUE, +N1,60256,sortie-83f34c57-d2c5-46b3-be30-4924d43951b8,https://biolit.fr/sorties/sortie-83f34c57-d2c5-46b3-be30-4924d43951b8/,CarpeDiem,,8/21/2017 0:00,17.0000000,18.0000000,42.96346600000,9.346744000000,,"Centuri, criques ",46851,observation-83f34c57-d2c5-46b3-be30-4924d43951b8-5,https://biolit.fr/observations/observation-83f34c57-d2c5-46b3-be30-4924d43951b8-5/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/Patelle 2-scaled.jpg,,TRUE, +N1,60256,sortie-83f34c57-d2c5-46b3-be30-4924d43951b8,https://biolit.fr/sorties/sortie-83f34c57-d2c5-46b3-be30-4924d43951b8/,CarpeDiem,,8/21/2017 0:00,17.0000000,18.0000000,42.96346600000,9.346744000000,,"Centuri, criques ",46853,observation-83f34c57-d2c5-46b3-be30-4924d43951b8-6,https://biolit.fr/observations/observation-83f34c57-d2c5-46b3-be30-4924d43951b8-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle_0-scaled.jpg,,FALSE, +N1,60257,sortie-18a2ba7d-d923-4a9d-9ebe-418dcd374cb1,https://biolit.fr/sorties/sortie-18a2ba7d-d923-4a9d-9ebe-418dcd374cb1/,Phil,,10/26/2017 0:00,15.0000000,15.0:55,48.096552000000,-4.335557000000,,Douarnenez - Finistère,46855,observation-18a2ba7d-d923-4a9d-9ebe-418dcd374cb1,https://biolit.fr/observations/observation-18a2ba7d-d923-4a9d-9ebe-418dcd374cb1/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171026_155231.jpg,,FALSE, +N1,60257,sortie-18a2ba7d-d923-4a9d-9ebe-418dcd374cb1,https://biolit.fr/sorties/sortie-18a2ba7d-d923-4a9d-9ebe-418dcd374cb1/,Phil,,10/26/2017 0:00,15.0000000,15.0:55,48.096552000000,-4.335557000000,,Douarnenez - Finistère,46857,observation-18a2ba7d-d923-4a9d-9ebe-418dcd374cb1-2,https://biolit.fr/observations/observation-18a2ba7d-d923-4a9d-9ebe-418dcd374cb1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171026_155301.jpg,,FALSE, +N1,60257,sortie-18a2ba7d-d923-4a9d-9ebe-418dcd374cb1,https://biolit.fr/sorties/sortie-18a2ba7d-d923-4a9d-9ebe-418dcd374cb1/,Phil,,10/26/2017 0:00,15.0000000,15.0:55,48.096552000000,-4.335557000000,,Douarnenez - Finistère,46859,observation-18a2ba7d-d923-4a9d-9ebe-418dcd374cb1-3,https://biolit.fr/observations/observation-18a2ba7d-d923-4a9d-9ebe-418dcd374cb1-3/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/20171026_155413.jpg,,TRUE, +N1,60258,sortie-87d6d08b-1554-42d0-bdf0-11934ef9193a,https://biolit.fr/sorties/sortie-87d6d08b-1554-42d0-bdf0-11934ef9193a/,Phil,,11/02/2017,18.000005,18.0:15,47.869432000000,-3.924911000000,,Concarneau - Finistère,46861,observation-87d6d08b-1554-42d0-bdf0-11934ef9193a,https://biolit.fr/observations/observation-87d6d08b-1554-42d0-bdf0-11934ef9193a/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171102_180716.jpg,,FALSE, +N1,60258,sortie-87d6d08b-1554-42d0-bdf0-11934ef9193a,https://biolit.fr/sorties/sortie-87d6d08b-1554-42d0-bdf0-11934ef9193a/,Phil,,11/02/2017,18.000005,18.0:15,47.869432000000,-3.924911000000,,Concarneau - Finistère,46863,observation-87d6d08b-1554-42d0-bdf0-11934ef9193a-2,https://biolit.fr/observations/observation-87d6d08b-1554-42d0-bdf0-11934ef9193a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171102_181544.jpg,,FALSE, +N1,60258,sortie-87d6d08b-1554-42d0-bdf0-11934ef9193a,https://biolit.fr/sorties/sortie-87d6d08b-1554-42d0-bdf0-11934ef9193a/,Phil,,11/02/2017,18.000005,18.0:15,47.869432000000,-3.924911000000,,Concarneau - Finistère,46865,observation-87d6d08b-1554-42d0-bdf0-11934ef9193a-3,https://biolit.fr/observations/observation-87d6d08b-1554-42d0-bdf0-11934ef9193a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171102_180844.jpg,,FALSE, +N1,60259,sortie-b84c5e61-b8f2-49c9-9c6c-054492b22141,https://biolit.fr/sorties/sortie-b84c5e61-b8f2-49c9-9c6c-054492b22141/,Phil,,4/14/2017 0:00,11.0000000,11.0:15,48.83598600000,-3.002955000000,,Île-de-Bréhat - Côtes-d'Armor,46867,observation-b84c5e61-b8f2-49c9-9c6c-054492b22141,https://biolit.fr/observations/observation-b84c5e61-b8f2-49c9-9c6c-054492b22141/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1060945.JPG,,TRUE, +N1,60260,sortie-75ab11d4-723e-4c37-b49f-75ff0d625e5f,https://biolit.fr/sorties/sortie-75ab11d4-723e-4c37-b49f-75ff0d625e5f/,Peace01,,10/27/2017 0:00,13.0000000,16.0000000,43.357605000000,5.290206000000,,Plage Fortin,46869,observation-75ab11d4-723e-4c37-b49f-75ff0d625e5f,https://biolit.fr/observations/observation-75ab11d4-723e-4c37-b49f-75ff0d625e5f/,,,,https://biolit.fr/wp-content/uploads/2023/07/Snapchat-912037502 (1).jpg,,FALSE, +N1,60260,sortie-75ab11d4-723e-4c37-b49f-75ff0d625e5f,https://biolit.fr/sorties/sortie-75ab11d4-723e-4c37-b49f-75ff0d625e5f/,Peace01,,10/27/2017 0:00,13.0000000,16.0000000,43.357605000000,5.290206000000,,Plage Fortin,46871,observation-75ab11d4-723e-4c37-b49f-75ff0d625e5f-2,https://biolit.fr/observations/observation-75ab11d4-723e-4c37-b49f-75ff0d625e5f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Snapchat-297359115 (1).jpg,,FALSE, +N1,60260,sortie-75ab11d4-723e-4c37-b49f-75ff0d625e5f,https://biolit.fr/sorties/sortie-75ab11d4-723e-4c37-b49f-75ff0d625e5f/,Peace01,,10/27/2017 0:00,13.0000000,16.0000000,43.357605000000,5.290206000000,,Plage Fortin,46873,observation-75ab11d4-723e-4c37-b49f-75ff0d625e5f-3,https://biolit.fr/observations/observation-75ab11d4-723e-4c37-b49f-75ff0d625e5f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Snapchat-827536502 (1).jpg,,FALSE, +N1,60260,sortie-75ab11d4-723e-4c37-b49f-75ff0d625e5f,https://biolit.fr/sorties/sortie-75ab11d4-723e-4c37-b49f-75ff0d625e5f/,Peace01,,10/27/2017 0:00,13.0000000,16.0000000,43.357605000000,5.290206000000,,Plage Fortin,46875,observation-75ab11d4-723e-4c37-b49f-75ff0d625e5f-4,https://biolit.fr/observations/observation-75ab11d4-723e-4c37-b49f-75ff0d625e5f-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Snapchat-1010542227 (1).jpg,,FALSE, +N1,60260,sortie-75ab11d4-723e-4c37-b49f-75ff0d625e5f,https://biolit.fr/sorties/sortie-75ab11d4-723e-4c37-b49f-75ff0d625e5f/,Peace01,,10/27/2017 0:00,13.0000000,16.0000000,43.357605000000,5.290206000000,,Plage Fortin,46877,observation-75ab11d4-723e-4c37-b49f-75ff0d625e5f-5,https://biolit.fr/observations/observation-75ab11d4-723e-4c37-b49f-75ff0d625e5f-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Snapchat-1959110434 (1).jpg,,FALSE, +N1,60260,sortie-75ab11d4-723e-4c37-b49f-75ff0d625e5f,https://biolit.fr/sorties/sortie-75ab11d4-723e-4c37-b49f-75ff0d625e5f/,Peace01,,10/27/2017 0:00,13.0000000,16.0000000,43.357605000000,5.290206000000,,Plage Fortin,46879,observation-75ab11d4-723e-4c37-b49f-75ff0d625e5f-6,https://biolit.fr/observations/observation-75ab11d4-723e-4c37-b49f-75ff0d625e5f-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Snapchat-1679568829 (1).jpg,,FALSE, +N1,60261,sortie-50bf7e9f-d7e3-4446-995e-3d1ad7df6d76,https://biolit.fr/sorties/sortie-50bf7e9f-d7e3-4446-995e-3d1ad7df6d76/,Kevin,,10/31/2017 0:00,13.0000000,14.0000000,43.239965000000,5.362457000000,,Plage du Bain des dames,46881,observation-50bf7e9f-d7e3-4446-995e-3d1ad7df6d76,https://biolit.fr/observations/observation-50bf7e9f-d7e3-4446-995e-3d1ad7df6d76/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3163-scaled.jpg,,TRUE, +N1,60261,sortie-50bf7e9f-d7e3-4446-995e-3d1ad7df6d76,https://biolit.fr/sorties/sortie-50bf7e9f-d7e3-4446-995e-3d1ad7df6d76/,Kevin,,10/31/2017 0:00,13.0000000,14.0000000,43.239965000000,5.362457000000,,Plage du Bain des dames,46883,observation-50bf7e9f-d7e3-4446-995e-3d1ad7df6d76-2,https://biolit.fr/observations/observation-50bf7e9f-d7e3-4446-995e-3d1ad7df6d76-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3164-scaled.jpg,,FALSE, +N1,60261,sortie-50bf7e9f-d7e3-4446-995e-3d1ad7df6d76,https://biolit.fr/sorties/sortie-50bf7e9f-d7e3-4446-995e-3d1ad7df6d76/,Kevin,,10/31/2017 0:00,13.0000000,14.0000000,43.239965000000,5.362457000000,,Plage du Bain des dames,46885,observation-50bf7e9f-d7e3-4446-995e-3d1ad7df6d76-3,https://biolit.fr/observations/observation-50bf7e9f-d7e3-4446-995e-3d1ad7df6d76-3/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3165-scaled.jpg,,TRUE, +N1,60261,sortie-50bf7e9f-d7e3-4446-995e-3d1ad7df6d76,https://biolit.fr/sorties/sortie-50bf7e9f-d7e3-4446-995e-3d1ad7df6d76/,Kevin,,10/31/2017 0:00,13.0000000,14.0000000,43.239965000000,5.362457000000,,Plage du Bain des dames,46887,observation-50bf7e9f-d7e3-4446-995e-3d1ad7df6d76-4,https://biolit.fr/observations/observation-50bf7e9f-d7e3-4446-995e-3d1ad7df6d76-4/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3142-scaled.jpg,,TRUE, +N1,60262,sortie-872a3cbe-8532-4b02-a463-6ac7b0db3b3e,https://biolit.fr/sorties/sortie-872a3cbe-8532-4b02-a463-6ac7b0db3b3e/,Phil,,10/26/2017 0:00,15.0:45,15.0000000,48.096330000000,-4.33554600000,,Douarnenez - Finistère,46889,observation-872a3cbe-8532-4b02-a463-6ac7b0db3b3e,https://biolit.fr/observations/observation-872a3cbe-8532-4b02-a463-6ac7b0db3b3e/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/20171026_154806.jpg,,TRUE, +N1,60262,sortie-872a3cbe-8532-4b02-a463-6ac7b0db3b3e,https://biolit.fr/sorties/sortie-872a3cbe-8532-4b02-a463-6ac7b0db3b3e/,Phil,,10/26/2017 0:00,15.0:45,15.0000000,48.096330000000,-4.33554600000,,Douarnenez - Finistère,46891,observation-872a3cbe-8532-4b02-a463-6ac7b0db3b3e-2,https://biolit.fr/observations/observation-872a3cbe-8532-4b02-a463-6ac7b0db3b3e-2/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20171026_154918.jpg,,TRUE, +N1,60262,sortie-872a3cbe-8532-4b02-a463-6ac7b0db3b3e,https://biolit.fr/sorties/sortie-872a3cbe-8532-4b02-a463-6ac7b0db3b3e/,Phil,,10/26/2017 0:00,15.0:45,15.0000000,48.096330000000,-4.33554600000,,Douarnenez - Finistère,46893,observation-872a3cbe-8532-4b02-a463-6ac7b0db3b3e-3,https://biolit.fr/observations/observation-872a3cbe-8532-4b02-a463-6ac7b0db3b3e-3/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/20171026_155043.jpg,,TRUE, +N1,60262,sortie-872a3cbe-8532-4b02-a463-6ac7b0db3b3e,https://biolit.fr/sorties/sortie-872a3cbe-8532-4b02-a463-6ac7b0db3b3e/,Phil,,10/26/2017 0:00,15.0:45,15.0000000,48.096330000000,-4.33554600000,,Douarnenez - Finistère,46895,observation-872a3cbe-8532-4b02-a463-6ac7b0db3b3e-4,https://biolit.fr/observations/observation-872a3cbe-8532-4b02-a463-6ac7b0db3b3e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171026_154731.jpg,,FALSE, +N1,60263,sortie-6dc15fa4-c675-447d-bfa1-052035d047aa,https://biolit.fr/sorties/sortie-6dc15fa4-c675-447d-bfa1-052035d047aa/,Dodode,,10/27/2017 0:00,12.0000000,15.0000000,43.272873000000,5.362336000000,,Plage du Prophète,46897,observation-6dc15fa4-c675-447d-bfa1-052035d047aa,https://biolit.fr/observations/observation-6dc15fa4-c675-447d-bfa1-052035d047aa/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171027_13_47_07_Pro.jpg,,FALSE, +N1,60263,sortie-6dc15fa4-c675-447d-bfa1-052035d047aa,https://biolit.fr/sorties/sortie-6dc15fa4-c675-447d-bfa1-052035d047aa/,Dodode,,10/27/2017 0:00,12.0000000,15.0000000,43.272873000000,5.362336000000,,Plage du Prophète,46899,observation-6dc15fa4-c675-447d-bfa1-052035d047aa-2,https://biolit.fr/observations/observation-6dc15fa4-c675-447d-bfa1-052035d047aa-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171027_13_45_25_Pro.jpg,,FALSE, +N1,60263,sortie-6dc15fa4-c675-447d-bfa1-052035d047aa,https://biolit.fr/sorties/sortie-6dc15fa4-c675-447d-bfa1-052035d047aa/,Dodode,,10/27/2017 0:00,12.0000000,15.0000000,43.272873000000,5.362336000000,,Plage du Prophète,46901,observation-6dc15fa4-c675-447d-bfa1-052035d047aa-3,https://biolit.fr/observations/observation-6dc15fa4-c675-447d-bfa1-052035d047aa-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171027_13_44_57_Pro.jpg,,FALSE, +N1,60263,sortie-6dc15fa4-c675-447d-bfa1-052035d047aa,https://biolit.fr/sorties/sortie-6dc15fa4-c675-447d-bfa1-052035d047aa/,Dodode,,10/27/2017 0:00,12.0000000,15.0000000,43.272873000000,5.362336000000,,Plage du Prophète,46903,observation-6dc15fa4-c675-447d-bfa1-052035d047aa-4,https://biolit.fr/observations/observation-6dc15fa4-c675-447d-bfa1-052035d047aa-4/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171027_13_43_51_Pro.jpg,,TRUE, +N1,60263,sortie-6dc15fa4-c675-447d-bfa1-052035d047aa,https://biolit.fr/sorties/sortie-6dc15fa4-c675-447d-bfa1-052035d047aa/,Dodode,,10/27/2017 0:00,12.0000000,15.0000000,43.272873000000,5.362336000000,,Plage du Prophète,46905,observation-6dc15fa4-c675-447d-bfa1-052035d047aa-5,https://biolit.fr/observations/observation-6dc15fa4-c675-447d-bfa1-052035d047aa-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171027_13_42_08_Pro-rotated.jpg,,FALSE, +N1,60263,sortie-6dc15fa4-c675-447d-bfa1-052035d047aa,https://biolit.fr/sorties/sortie-6dc15fa4-c675-447d-bfa1-052035d047aa/,Dodode,,10/27/2017 0:00,12.0000000,15.0000000,43.272873000000,5.362336000000,,Plage du Prophète,46907,observation-6dc15fa4-c675-447d-bfa1-052035d047aa-6,https://biolit.fr/observations/observation-6dc15fa4-c675-447d-bfa1-052035d047aa-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171027_13_40_55_Pro.jpg,,FALSE, +N1,60263,sortie-6dc15fa4-c675-447d-bfa1-052035d047aa,https://biolit.fr/sorties/sortie-6dc15fa4-c675-447d-bfa1-052035d047aa/,Dodode,,10/27/2017 0:00,12.0000000,15.0000000,43.272873000000,5.362336000000,,Plage du Prophète,46909,observation-6dc15fa4-c675-447d-bfa1-052035d047aa-7,https://biolit.fr/observations/observation-6dc15fa4-c675-447d-bfa1-052035d047aa-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171027_13_39_51_Pro-rotated.jpg,,FALSE, +N1,60263,sortie-6dc15fa4-c675-447d-bfa1-052035d047aa,https://biolit.fr/sorties/sortie-6dc15fa4-c675-447d-bfa1-052035d047aa/,Dodode,,10/27/2017 0:00,12.0000000,15.0000000,43.272873000000,5.362336000000,,Plage du Prophète,46911,observation-6dc15fa4-c675-447d-bfa1-052035d047aa-8,https://biolit.fr/observations/observation-6dc15fa4-c675-447d-bfa1-052035d047aa-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171027_13_37_28_Pro.jpg,,FALSE, +N1,60263,sortie-6dc15fa4-c675-447d-bfa1-052035d047aa,https://biolit.fr/sorties/sortie-6dc15fa4-c675-447d-bfa1-052035d047aa/,Dodode,,10/27/2017 0:00,12.0000000,15.0000000,43.272873000000,5.362336000000,,Plage du Prophète,46913,observation-6dc15fa4-c675-447d-bfa1-052035d047aa-9,https://biolit.fr/observations/observation-6dc15fa4-c675-447d-bfa1-052035d047aa-9/,Caulerpa cylindracea,Caulerpe cylindracée,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/WP_20171027_13_36_30_Pro.jpg,,TRUE, +N1,60263,sortie-6dc15fa4-c675-447d-bfa1-052035d047aa,https://biolit.fr/sorties/sortie-6dc15fa4-c675-447d-bfa1-052035d047aa/,Dodode,,10/27/2017 0:00,12.0000000,15.0000000,43.272873000000,5.362336000000,,Plage du Prophète,46915,observation-6dc15fa4-c675-447d-bfa1-052035d047aa-10,https://biolit.fr/observations/observation-6dc15fa4-c675-447d-bfa1-052035d047aa-10/,Ulva spp.,Ulve rigide,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171027_13_34_33_Pro.jpg,,TRUE, +N1,60263,sortie-6dc15fa4-c675-447d-bfa1-052035d047aa,https://biolit.fr/sorties/sortie-6dc15fa4-c675-447d-bfa1-052035d047aa/,Dodode,,10/27/2017 0:00,12.0000000,15.0000000,43.272873000000,5.362336000000,,Plage du Prophète,46917,observation-6dc15fa4-c675-447d-bfa1-052035d047aa-11,https://biolit.fr/observations/observation-6dc15fa4-c675-447d-bfa1-052035d047aa-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171027_13_34_20_Pro.jpg,,FALSE, +N1,60263,sortie-6dc15fa4-c675-447d-bfa1-052035d047aa,https://biolit.fr/sorties/sortie-6dc15fa4-c675-447d-bfa1-052035d047aa/,Dodode,,10/27/2017 0:00,12.0000000,15.0000000,43.272873000000,5.362336000000,,Plage du Prophète,46919,observation-6dc15fa4-c675-447d-bfa1-052035d047aa-12,https://biolit.fr/observations/observation-6dc15fa4-c675-447d-bfa1-052035d047aa-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171027_13_33_42_Pro.jpg,,FALSE, +N1,60263,sortie-6dc15fa4-c675-447d-bfa1-052035d047aa,https://biolit.fr/sorties/sortie-6dc15fa4-c675-447d-bfa1-052035d047aa/,Dodode,,10/27/2017 0:00,12.0000000,15.0000000,43.272873000000,5.362336000000,,Plage du Prophète,46921,observation-6dc15fa4-c675-447d-bfa1-052035d047aa-13,https://biolit.fr/observations/observation-6dc15fa4-c675-447d-bfa1-052035d047aa-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171027_13_32_16_Pro-rotated.jpg,,FALSE, +N1,60263,sortie-6dc15fa4-c675-447d-bfa1-052035d047aa,https://biolit.fr/sorties/sortie-6dc15fa4-c675-447d-bfa1-052035d047aa/,Dodode,,10/27/2017 0:00,12.0000000,15.0000000,43.272873000000,5.362336000000,,Plage du Prophète,46923,observation-6dc15fa4-c675-447d-bfa1-052035d047aa-14,https://biolit.fr/observations/observation-6dc15fa4-c675-447d-bfa1-052035d047aa-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171027_13_30_48_Pro.jpg,,FALSE, +N1,60263,sortie-6dc15fa4-c675-447d-bfa1-052035d047aa,https://biolit.fr/sorties/sortie-6dc15fa4-c675-447d-bfa1-052035d047aa/,Dodode,,10/27/2017 0:00,12.0000000,15.0000000,43.272873000000,5.362336000000,,Plage du Prophète,46925,observation-6dc15fa4-c675-447d-bfa1-052035d047aa-15,https://biolit.fr/observations/observation-6dc15fa4-c675-447d-bfa1-052035d047aa-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171027_13_29_56_Pro-rotated.jpg,,FALSE, +N1,60264,sortie-25ef581d-bc53-4628-9556-266c9f45e8f9,https://biolit.fr/sorties/sortie-25ef581d-bc53-4628-9556-266c9f45e8f9/,Phil,,9/19/2017 0:00,13.0000000,13.0:55,48.060656000000,-4.672107000000,,Cleden Cap-Sizun - Finistère,46927,observation-25ef581d-bc53-4628-9556-266c9f45e8f9,https://biolit.fr/observations/observation-25ef581d-bc53-4628-9556-266c9f45e8f9/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1080430.JPG,,TRUE, +N1,60264,sortie-25ef581d-bc53-4628-9556-266c9f45e8f9,https://biolit.fr/sorties/sortie-25ef581d-bc53-4628-9556-266c9f45e8f9/,Phil,,9/19/2017 0:00,13.0000000,13.0:55,48.060656000000,-4.672107000000,,Cleden Cap-Sizun - Finistère,46929,observation-25ef581d-bc53-4628-9556-266c9f45e8f9-2,https://biolit.fr/observations/observation-25ef581d-bc53-4628-9556-266c9f45e8f9-2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1080438.JPG,,TRUE, +N1,60264,sortie-25ef581d-bc53-4628-9556-266c9f45e8f9,https://biolit.fr/sorties/sortie-25ef581d-bc53-4628-9556-266c9f45e8f9/,Phil,,9/19/2017 0:00,13.0000000,13.0:55,48.060656000000,-4.672107000000,,Cleden Cap-Sizun - Finistère,46931,observation-25ef581d-bc53-4628-9556-266c9f45e8f9-3,https://biolit.fr/observations/observation-25ef581d-bc53-4628-9556-266c9f45e8f9-3/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1080417.JPG,,TRUE, +N1,60264,sortie-25ef581d-bc53-4628-9556-266c9f45e8f9,https://biolit.fr/sorties/sortie-25ef581d-bc53-4628-9556-266c9f45e8f9/,Phil,,9/19/2017 0:00,13.0000000,13.0:55,48.060656000000,-4.672107000000,,Cleden Cap-Sizun - Finistère,46933,observation-25ef581d-bc53-4628-9556-266c9f45e8f9-4,https://biolit.fr/observations/observation-25ef581d-bc53-4628-9556-266c9f45e8f9-4/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1080436.JPG,,TRUE, +N1,60264,sortie-25ef581d-bc53-4628-9556-266c9f45e8f9,https://biolit.fr/sorties/sortie-25ef581d-bc53-4628-9556-266c9f45e8f9/,Phil,,9/19/2017 0:00,13.0000000,13.0:55,48.060656000000,-4.672107000000,,Cleden Cap-Sizun - Finistère,46935,observation-25ef581d-bc53-4628-9556-266c9f45e8f9-5,https://biolit.fr/observations/observation-25ef581d-bc53-4628-9556-266c9f45e8f9-5/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1080437.JPG,,TRUE, +N1,60264,sortie-25ef581d-bc53-4628-9556-266c9f45e8f9,https://biolit.fr/sorties/sortie-25ef581d-bc53-4628-9556-266c9f45e8f9/,Phil,,9/19/2017 0:00,13.0000000,13.0:55,48.060656000000,-4.672107000000,,Cleden Cap-Sizun - Finistère,46937,observation-25ef581d-bc53-4628-9556-266c9f45e8f9-6,https://biolit.fr/observations/observation-25ef581d-bc53-4628-9556-266c9f45e8f9-6/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1080440.JPG,,TRUE, +N1,60264,sortie-25ef581d-bc53-4628-9556-266c9f45e8f9,https://biolit.fr/sorties/sortie-25ef581d-bc53-4628-9556-266c9f45e8f9/,Phil,,9/19/2017 0:00,13.0000000,13.0:55,48.060656000000,-4.672107000000,,Cleden Cap-Sizun - Finistère,46939,observation-25ef581d-bc53-4628-9556-266c9f45e8f9-7,https://biolit.fr/observations/observation-25ef581d-bc53-4628-9556-266c9f45e8f9-7/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1080442.JPG,,TRUE, +N1,60265,sortie-d4058ad8-362b-4a1d-bacb-89de17c00b8d,https://biolit.fr/sorties/sortie-d4058ad8-362b-4a1d-bacb-89de17c00b8d/,Phil,,10/26/2017 0:00,15.0000000,15.0:55,48.096478000000,-4.335495000000,,Douarnenez - Finistère,46941,observation-d4058ad8-362b-4a1d-bacb-89de17c00b8d,https://biolit.fr/observations/observation-d4058ad8-362b-4a1d-bacb-89de17c00b8d/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20171026_155438.jpg,,TRUE, +N1,60265,sortie-d4058ad8-362b-4a1d-bacb-89de17c00b8d,https://biolit.fr/sorties/sortie-d4058ad8-362b-4a1d-bacb-89de17c00b8d/,Phil,,10/26/2017 0:00,15.0000000,15.0:55,48.096478000000,-4.335495000000,,Douarnenez - Finistère,46943,observation-d4058ad8-362b-4a1d-bacb-89de17c00b8d-2,https://biolit.fr/observations/observation-d4058ad8-362b-4a1d-bacb-89de17c00b8d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171026_155510.jpg,,FALSE, +N1,60265,sortie-d4058ad8-362b-4a1d-bacb-89de17c00b8d,https://biolit.fr/sorties/sortie-d4058ad8-362b-4a1d-bacb-89de17c00b8d/,Phil,,10/26/2017 0:00,15.0000000,15.0:55,48.096478000000,-4.335495000000,,Douarnenez - Finistère,46945,observation-d4058ad8-362b-4a1d-bacb-89de17c00b8d-3,https://biolit.fr/observations/observation-d4058ad8-362b-4a1d-bacb-89de17c00b8d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171026_155554.jpg,,FALSE, +N1,60266,sortie-86359fdc-097b-4d9b-85d0-2d47751819e0,https://biolit.fr/sorties/sortie-86359fdc-097b-4d9b-85d0-2d47751819e0/,Phil,,6/18/2017 0:00,12.0000000,12.0:15,47.708827000000,-3.995095000000,,Fouesnant - Finistère,46947,observation-86359fdc-097b-4d9b-85d0-2d47751819e0,https://biolit.fr/observations/observation-86359fdc-097b-4d9b-85d0-2d47751819e0/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070558.JPG,,FALSE, +N1,60266,sortie-86359fdc-097b-4d9b-85d0-2d47751819e0,https://biolit.fr/sorties/sortie-86359fdc-097b-4d9b-85d0-2d47751819e0/,Phil,,6/18/2017 0:00,12.0000000,12.0:15,47.708827000000,-3.995095000000,,Fouesnant - Finistère,46949,observation-86359fdc-097b-4d9b-85d0-2d47751819e0-2,https://biolit.fr/observations/observation-86359fdc-097b-4d9b-85d0-2d47751819e0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070537.JPG,,FALSE, +N1,60266,sortie-86359fdc-097b-4d9b-85d0-2d47751819e0,https://biolit.fr/sorties/sortie-86359fdc-097b-4d9b-85d0-2d47751819e0/,Phil,,6/18/2017 0:00,12.0000000,12.0:15,47.708827000000,-3.995095000000,,Fouesnant - Finistère,46951,observation-86359fdc-097b-4d9b-85d0-2d47751819e0-3,https://biolit.fr/observations/observation-86359fdc-097b-4d9b-85d0-2d47751819e0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070559.JPG,,FALSE, +N1,60267,sortie-1c1f3f1f-5688-4745-9e04-6dc5e381f979,https://biolit.fr/sorties/sortie-1c1f3f1f-5688-4745-9e04-6dc5e381f979/,Phil,,10/26/2017 0:00,15.0:55,16.000005,48.097220000000,-4.335257000000,,Douarnenez - Finistère,46953,observation-1c1f3f1f-5688-4745-9e04-6dc5e381f979,https://biolit.fr/observations/observation-1c1f3f1f-5688-4745-9e04-6dc5e381f979/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20171026_155644.jpg,,TRUE, +N1,60267,sortie-1c1f3f1f-5688-4745-9e04-6dc5e381f979,https://biolit.fr/sorties/sortie-1c1f3f1f-5688-4745-9e04-6dc5e381f979/,Phil,,10/26/2017 0:00,15.0:55,16.000005,48.097220000000,-4.335257000000,,Douarnenez - Finistère,46955,observation-1c1f3f1f-5688-4745-9e04-6dc5e381f979-2,https://biolit.fr/observations/observation-1c1f3f1f-5688-4745-9e04-6dc5e381f979-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171026_155919.jpg,,FALSE, +N1,60268,sortie-1048ba6f-774d-4415-a704-5d6258f839b7,https://biolit.fr/sorties/sortie-1048ba6f-774d-4415-a704-5d6258f839b7/,EMMAB,,10/26/2017 0:00,11.0000000,15.0000000,43.357541000000,5.290466000000,,Plage de l'estaue,46957,observation-1048ba6f-774d-4415-a704-5d6258f839b7,https://biolit.fr/observations/observation-1048ba6f-774d-4415-a704-5d6258f839b7/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/FILE0106-scaled.jpg,,TRUE, +N1,60268,sortie-1048ba6f-774d-4415-a704-5d6258f839b7,https://biolit.fr/sorties/sortie-1048ba6f-774d-4415-a704-5d6258f839b7/,EMMAB,,10/26/2017 0:00,11.0000000,15.0000000,43.357541000000,5.290466000000,,Plage de l'estaue,46959,observation-1048ba6f-774d-4415-a704-5d6258f839b7-2,https://biolit.fr/observations/observation-1048ba6f-774d-4415-a704-5d6258f839b7-2/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/FILE0099-scaled.jpg,,TRUE, +N1,60268,sortie-1048ba6f-774d-4415-a704-5d6258f839b7,https://biolit.fr/sorties/sortie-1048ba6f-774d-4415-a704-5d6258f839b7/,EMMAB,,10/26/2017 0:00,11.0000000,15.0000000,43.357541000000,5.290466000000,,Plage de l'estaue,46961,observation-1048ba6f-774d-4415-a704-5d6258f839b7-3,https://biolit.fr/observations/observation-1048ba6f-774d-4415-a704-5d6258f839b7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/FILE0097-scaled.jpg,,FALSE, +N1,60268,sortie-1048ba6f-774d-4415-a704-5d6258f839b7,https://biolit.fr/sorties/sortie-1048ba6f-774d-4415-a704-5d6258f839b7/,EMMAB,,10/26/2017 0:00,11.0000000,15.0000000,43.357541000000,5.290466000000,,Plage de l'estaue,46963,observation-1048ba6f-774d-4415-a704-5d6258f839b7-4,https://biolit.fr/observations/observation-1048ba6f-774d-4415-a704-5d6258f839b7-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/FILE0081-scaled.jpg,,TRUE, +N1,60268,sortie-1048ba6f-774d-4415-a704-5d6258f839b7,https://biolit.fr/sorties/sortie-1048ba6f-774d-4415-a704-5d6258f839b7/,EMMAB,,10/26/2017 0:00,11.0000000,15.0000000,43.357541000000,5.290466000000,,Plage de l'estaue,46964,observation-1048ba6f-774d-4415-a704-5d6258f839b7-5,https://biolit.fr/observations/observation-1048ba6f-774d-4415-a704-5d6258f839b7-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/FILE0059-scaled.jpg,,FALSE, +N1,60268,sortie-1048ba6f-774d-4415-a704-5d6258f839b7,https://biolit.fr/sorties/sortie-1048ba6f-774d-4415-a704-5d6258f839b7/,EMMAB,,10/26/2017 0:00,11.0000000,15.0000000,43.357541000000,5.290466000000,,Plage de l'estaue,46966,observation-1048ba6f-774d-4415-a704-5d6258f839b7-6,https://biolit.fr/observations/observation-1048ba6f-774d-4415-a704-5d6258f839b7-6/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/FILE0049-scaled.jpg,,TRUE, +N1,60268,sortie-1048ba6f-774d-4415-a704-5d6258f839b7,https://biolit.fr/sorties/sortie-1048ba6f-774d-4415-a704-5d6258f839b7/,EMMAB,,10/26/2017 0:00,11.0000000,15.0000000,43.357541000000,5.290466000000,,Plage de l'estaue,46968,observation-1048ba6f-774d-4415-a704-5d6258f839b7-7,https://biolit.fr/observations/observation-1048ba6f-774d-4415-a704-5d6258f839b7-7/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/FILE0047-scaled.jpg,,TRUE, +N1,60268,sortie-1048ba6f-774d-4415-a704-5d6258f839b7,https://biolit.fr/sorties/sortie-1048ba6f-774d-4415-a704-5d6258f839b7/,EMMAB,,10/26/2017 0:00,11.0000000,15.0000000,43.357541000000,5.290466000000,,Plage de l'estaue,46970,observation-1048ba6f-774d-4415-a704-5d6258f839b7-8,https://biolit.fr/observations/observation-1048ba6f-774d-4415-a704-5d6258f839b7-8/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/FILE0038-scaled.jpg,,TRUE, +N1,60268,sortie-1048ba6f-774d-4415-a704-5d6258f839b7,https://biolit.fr/sorties/sortie-1048ba6f-774d-4415-a704-5d6258f839b7/,EMMAB,,10/26/2017 0:00,11.0000000,15.0000000,43.357541000000,5.290466000000,,Plage de l'estaue,46972,observation-1048ba6f-774d-4415-a704-5d6258f839b7-9,https://biolit.fr/observations/observation-1048ba6f-774d-4415-a704-5d6258f839b7-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/FILE0035-scaled.jpg,,FALSE, +N1,60268,sortie-1048ba6f-774d-4415-a704-5d6258f839b7,https://biolit.fr/sorties/sortie-1048ba6f-774d-4415-a704-5d6258f839b7/,EMMAB,,10/26/2017 0:00,11.0000000,15.0000000,43.357541000000,5.290466000000,,Plage de l'estaue,46974,observation-1048ba6f-774d-4415-a704-5d6258f839b7-10,https://biolit.fr/observations/observation-1048ba6f-774d-4415-a704-5d6258f839b7-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/FILE0019-scaled.jpg,,FALSE, +N1,60268,sortie-1048ba6f-774d-4415-a704-5d6258f839b7,https://biolit.fr/sorties/sortie-1048ba6f-774d-4415-a704-5d6258f839b7/,EMMAB,,10/26/2017 0:00,11.0000000,15.0000000,43.357541000000,5.290466000000,,Plage de l'estaue,46976,observation-1048ba6f-774d-4415-a704-5d6258f839b7-11,https://biolit.fr/observations/observation-1048ba6f-774d-4415-a704-5d6258f839b7-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/FILE0010-scaled.jpg,,FALSE, +N1,60268,sortie-1048ba6f-774d-4415-a704-5d6258f839b7,https://biolit.fr/sorties/sortie-1048ba6f-774d-4415-a704-5d6258f839b7/,EMMAB,,10/26/2017 0:00,11.0000000,15.0000000,43.357541000000,5.290466000000,,Plage de l'estaue,46978,observation-1048ba6f-774d-4415-a704-5d6258f839b7-12,https://biolit.fr/observations/observation-1048ba6f-774d-4415-a704-5d6258f839b7-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/FILE0004-scaled.jpg,,FALSE, +N1,60269,sortie-5ff59285-765f-4f6d-adfe-add09dc99c46,https://biolit.fr/sorties/sortie-5ff59285-765f-4f6d-adfe-add09dc99c46/,Phil,,10/26/2017 0:00,15.0:45,15.0000000,48.096993000000,-4.335544000000,,Douarnenez - Finistère,46980,observation-5ff59285-765f-4f6d-adfe-add09dc99c46,https://biolit.fr/observations/observation-5ff59285-765f-4f6d-adfe-add09dc99c46/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20171026_154647.jpg,,TRUE, +N1,60269,sortie-5ff59285-765f-4f6d-adfe-add09dc99c46,https://biolit.fr/sorties/sortie-5ff59285-765f-4f6d-adfe-add09dc99c46/,Phil,,10/26/2017 0:00,15.0:45,15.0000000,48.096993000000,-4.335544000000,,Douarnenez - Finistère,46982,observation-5ff59285-765f-4f6d-adfe-add09dc99c46-2,https://biolit.fr/observations/observation-5ff59285-765f-4f6d-adfe-add09dc99c46-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20171026_154553.jpg,,TRUE, +N1,60269,sortie-5ff59285-765f-4f6d-adfe-add09dc99c46,https://biolit.fr/sorties/sortie-5ff59285-765f-4f6d-adfe-add09dc99c46/,Phil,,10/26/2017 0:00,15.0:45,15.0000000,48.096993000000,-4.335544000000,,Douarnenez - Finistère,46984,observation-5ff59285-765f-4f6d-adfe-add09dc99c46-3,https://biolit.fr/observations/observation-5ff59285-765f-4f6d-adfe-add09dc99c46-3/,Lutraria lutraria,Lutraire elliptique,,https://biolit.fr/wp-content/uploads/2023/07/20171026_154534.jpg,,TRUE, +N1,60270,sortie-10ba0b6f-8677-443d-9495-0139d4512775,https://biolit.fr/sorties/sortie-10ba0b6f-8677-443d-9495-0139d4512775/,Peace01,,10/13/2017 0:00,11.0000000,16.0000000,43.211872000000,5.454081000000,,Calanques de sugiton,46986,observation-10ba0b6f-8677-443d-9495-0139d4512775,https://biolit.fr/observations/observation-10ba0b6f-8677-443d-9495-0139d4512775/,,,,https://biolit.fr/wp-content/uploads/2023/07/bioli 2-scaled.jpg,,FALSE, +N1,60271,sortie-e9beffff-3516-4969-bb81-058e3097cdda,https://biolit.fr/sorties/sortie-e9beffff-3516-4969-bb81-058e3097cdda/,melany,,10/13/2017 0:00,11.0000000,15.0000000,43.211869000000,5.454171000000,,plage de sugiton,46988,observation-e9beffff-3516-4969-bb81-058e3097cdda,https://biolit.fr/observations/observation-e9beffff-3516-4969-bb81-058e3097cdda/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171013_125540-scaled.jpg,,FALSE, +N1,60271,sortie-e9beffff-3516-4969-bb81-058e3097cdda,https://biolit.fr/sorties/sortie-e9beffff-3516-4969-bb81-058e3097cdda/,melany,,10/13/2017 0:00,11.0000000,15.0000000,43.211869000000,5.454171000000,,plage de sugiton,46990,observation-e9beffff-3516-4969-bb81-058e3097cdda-2,https://biolit.fr/observations/observation-e9beffff-3516-4969-bb81-058e3097cdda-2/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/20171013_131215-scaled.jpg,,TRUE, +N1,60271,sortie-e9beffff-3516-4969-bb81-058e3097cdda,https://biolit.fr/sorties/sortie-e9beffff-3516-4969-bb81-058e3097cdda/,melany,,10/13/2017 0:00,11.0000000,15.0000000,43.211869000000,5.454171000000,,plage de sugiton,46992,observation-e9beffff-3516-4969-bb81-058e3097cdda-3,https://biolit.fr/observations/observation-e9beffff-3516-4969-bb81-058e3097cdda-3/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/20171013_131224-scaled.jpg,,TRUE, +N1,60271,sortie-e9beffff-3516-4969-bb81-058e3097cdda,https://biolit.fr/sorties/sortie-e9beffff-3516-4969-bb81-058e3097cdda/,melany,,10/13/2017 0:00,11.0000000,15.0000000,43.211869000000,5.454171000000,,plage de sugiton,46994,observation-e9beffff-3516-4969-bb81-058e3097cdda-4,https://biolit.fr/observations/observation-e9beffff-3516-4969-bb81-058e3097cdda-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171013_143710-scaled.jpg,,FALSE, +N1,60272,sortie-0036759b-55ec-4433-96fb-9bf822e4d4c4,https://biolit.fr/sorties/sortie-0036759b-55ec-4433-96fb-9bf822e4d4c4/,Peace01,,10/12/2017,14.0000000,17.0000000,43.253047000000,5.372375000000,, Plage de Bonneveine,46996,observation-0036759b-55ec-4433-96fb-9bf822e4d4c4,https://biolit.fr/observations/observation-0036759b-55ec-4433-96fb-9bf822e4d4c4/,,,,https://biolit.fr/wp-content/uploads/2023/07/thumbnail_IMG_20171012_155510.jpg,,FALSE, +N1,60273,sortie-f7c765b5-791a-4bc3-b8f8-d12570ad98e7,https://biolit.fr/sorties/sortie-f7c765b5-791a-4bc3-b8f8-d12570ad98e7/,melany,,10/26/2017 0:00,15.0000000,17.0000000,43.357478000000,5.290241000000,,plage de la batterie,46998,observation-f7c765b5-791a-4bc3-b8f8-d12570ad98e7,https://biolit.fr/observations/observation-f7c765b5-791a-4bc3-b8f8-d12570ad98e7/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/2023/07/20171026_135907-scaled.jpg,,TRUE, +N1,60273,sortie-f7c765b5-791a-4bc3-b8f8-d12570ad98e7,https://biolit.fr/sorties/sortie-f7c765b5-791a-4bc3-b8f8-d12570ad98e7/,melany,,10/26/2017 0:00,15.0000000,17.0000000,43.357478000000,5.290241000000,,plage de la batterie,47000,observation-f7c765b5-791a-4bc3-b8f8-d12570ad98e7-2,https://biolit.fr/observations/observation-f7c765b5-791a-4bc3-b8f8-d12570ad98e7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171026_125234-scaled.jpg,,FALSE, +N1,60273,sortie-f7c765b5-791a-4bc3-b8f8-d12570ad98e7,https://biolit.fr/sorties/sortie-f7c765b5-791a-4bc3-b8f8-d12570ad98e7/,melany,,10/26/2017 0:00,15.0000000,17.0000000,43.357478000000,5.290241000000,,plage de la batterie,47002,observation-f7c765b5-791a-4bc3-b8f8-d12570ad98e7-3,https://biolit.fr/observations/observation-f7c765b5-791a-4bc3-b8f8-d12570ad98e7-3/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/20171026_133250-scaled.jpg,,TRUE, +N1,60273,sortie-f7c765b5-791a-4bc3-b8f8-d12570ad98e7,https://biolit.fr/sorties/sortie-f7c765b5-791a-4bc3-b8f8-d12570ad98e7/,melany,,10/26/2017 0:00,15.0000000,17.0000000,43.357478000000,5.290241000000,,plage de la batterie,47004,observation-f7c765b5-791a-4bc3-b8f8-d12570ad98e7-4,https://biolit.fr/observations/observation-f7c765b5-791a-4bc3-b8f8-d12570ad98e7-4/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/20171026_133302-scaled.jpg,,TRUE, +N1,60273,sortie-f7c765b5-791a-4bc3-b8f8-d12570ad98e7,https://biolit.fr/sorties/sortie-f7c765b5-791a-4bc3-b8f8-d12570ad98e7/,melany,,10/26/2017 0:00,15.0000000,17.0000000,43.357478000000,5.290241000000,,plage de la batterie,47006,observation-f7c765b5-791a-4bc3-b8f8-d12570ad98e7-5,https://biolit.fr/observations/observation-f7c765b5-791a-4bc3-b8f8-d12570ad98e7-5/,Ulva sp. groupe intestinalis,Ulves tubuleuses du groupe intestinalis,,https://biolit.fr/wp-content/uploads/2023/07/20171026_134824-scaled.jpg,,TRUE, +N1,60273,sortie-f7c765b5-791a-4bc3-b8f8-d12570ad98e7,https://biolit.fr/sorties/sortie-f7c765b5-791a-4bc3-b8f8-d12570ad98e7/,melany,,10/26/2017 0:00,15.0000000,17.0000000,43.357478000000,5.290241000000,,plage de la batterie,47008,observation-f7c765b5-791a-4bc3-b8f8-d12570ad98e7-6,https://biolit.fr/observations/observation-f7c765b5-791a-4bc3-b8f8-d12570ad98e7-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171026_125025-scaled.jpg,,FALSE, +N1,60273,sortie-f7c765b5-791a-4bc3-b8f8-d12570ad98e7,https://biolit.fr/sorties/sortie-f7c765b5-791a-4bc3-b8f8-d12570ad98e7/,melany,,10/26/2017 0:00,15.0000000,17.0000000,43.357478000000,5.290241000000,,plage de la batterie,47010,observation-f7c765b5-791a-4bc3-b8f8-d12570ad98e7-7,https://biolit.fr/observations/observation-f7c765b5-791a-4bc3-b8f8-d12570ad98e7-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171026_125013-scaled.jpg,,FALSE, +N1,60274,sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24,https://biolit.fr/sorties/sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24/,Dodode,,10/19/2017 0:00,11.0000000,17.0000000,43.290657000000,5.355367000000,,Anse des Catalans,47012,observation-f54e5cd7-3337-4e48-b793-dfded0f95c24,https://biolit.fr/observations/observation-f54e5cd7-3337-4e48-b793-dfded0f95c24/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171019_10_46_23_Pro-rotated.jpg,,FALSE, +N1,60274,sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24,https://biolit.fr/sorties/sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24/,Dodode,,10/19/2017 0:00,11.0000000,17.0000000,43.290657000000,5.355367000000,,Anse des Catalans,47014,observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-2,https://biolit.fr/observations/observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171019_10_43_42_Pro-rotated.jpg,,FALSE, +N1,60274,sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24,https://biolit.fr/sorties/sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24/,Dodode,,10/19/2017 0:00,11.0000000,17.0000000,43.290657000000,5.355367000000,,Anse des Catalans,47016,observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-3,https://biolit.fr/observations/observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171019_10_41_03_Pro.jpg,,FALSE, +N1,60274,sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24,https://biolit.fr/sorties/sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24/,Dodode,,10/19/2017 0:00,11.0000000,17.0000000,43.290657000000,5.355367000000,,Anse des Catalans,47018,observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-4,https://biolit.fr/observations/observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171019_10_40_09_Pro.jpg,,FALSE, +N1,60274,sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24,https://biolit.fr/sorties/sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24/,Dodode,,10/19/2017 0:00,11.0000000,17.0000000,43.290657000000,5.355367000000,,Anse des Catalans,47020,observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-5,https://biolit.fr/observations/observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-5/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171019_10_38_24_Pro.jpg,,TRUE, +N1,60274,sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24,https://biolit.fr/sorties/sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24/,Dodode,,10/19/2017 0:00,11.0000000,17.0000000,43.290657000000,5.355367000000,,Anse des Catalans,47022,observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-6,https://biolit.fr/observations/observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-6/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171019_10_38_13_Pro.jpg,,TRUE, +N1,60274,sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24,https://biolit.fr/sorties/sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24/,Dodode,,10/19/2017 0:00,11.0000000,17.0000000,43.290657000000,5.355367000000,,Anse des Catalans,47024,observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-7,https://biolit.fr/observations/observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-7/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171019_10_38_06_Pro.jpg,,TRUE, +N1,60274,sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24,https://biolit.fr/sorties/sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24/,Dodode,,10/19/2017 0:00,11.0000000,17.0000000,43.290657000000,5.355367000000,,Anse des Catalans,47026,observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-8,https://biolit.fr/observations/observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-8/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171019_10_37_30_Pro.jpg,,TRUE, +N1,60274,sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24,https://biolit.fr/sorties/sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24/,Dodode,,10/19/2017 0:00,11.0000000,17.0000000,43.290657000000,5.355367000000,,Anse des Catalans,47028,observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-9,https://biolit.fr/observations/observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-9/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171019_10_37_27_Pro.jpg,,TRUE, +N1,60274,sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24,https://biolit.fr/sorties/sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24/,Dodode,,10/19/2017 0:00,11.0000000,17.0000000,43.290657000000,5.355367000000,,Anse des Catalans,47030,observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-10,https://biolit.fr/observations/observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171019_10_36_14_Pro.jpg,,FALSE, +N1,60275,sortie-c98a59df-b116-48a3-814b-8a9dfd000e0f,https://biolit.fr/sorties/sortie-c98a59df-b116-48a3-814b-8a9dfd000e0f/,LucileA,,10/18/2017 0:00,15.0000000,17.0000000,48.640444000000,-2.072903000000,,Saint Enogat,47032,observation-c98a59df-b116-48a3-814b-8a9dfd000e0f,https://biolit.fr/observations/observation-c98a59df-b116-48a3-814b-8a9dfd000e0f/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7465_0-scaled.jpg,,TRUE, +N1,60276,sortie-cdef8f01-f8d8-4b75-b404-cda959229ed2,https://biolit.fr/sorties/sortie-cdef8f01-f8d8-4b75-b404-cda959229ed2/,Phil,,9/19/2017 0:00,13.000005,13.0:25,48.049292000000,-4.706188000000,,Cléden-Cap-Sizun - Finistère,47034,observation-cdef8f01-f8d8-4b75-b404-cda959229ed2,https://biolit.fr/observations/observation-cdef8f01-f8d8-4b75-b404-cda959229ed2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080370.JPG,,FALSE, +N1,60276,sortie-cdef8f01-f8d8-4b75-b404-cda959229ed2,https://biolit.fr/sorties/sortie-cdef8f01-f8d8-4b75-b404-cda959229ed2/,Phil,,9/19/2017 0:00,13.000005,13.0:25,48.049292000000,-4.706188000000,,Cléden-Cap-Sizun - Finistère,47036,observation-cdef8f01-f8d8-4b75-b404-cda959229ed2-2,https://biolit.fr/observations/observation-cdef8f01-f8d8-4b75-b404-cda959229ed2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080375.JPG,,FALSE, +N1,60276,sortie-cdef8f01-f8d8-4b75-b404-cda959229ed2,https://biolit.fr/sorties/sortie-cdef8f01-f8d8-4b75-b404-cda959229ed2/,Phil,,9/19/2017 0:00,13.000005,13.0:25,48.049292000000,-4.706188000000,,Cléden-Cap-Sizun - Finistère,47038,observation-cdef8f01-f8d8-4b75-b404-cda959229ed2-3,https://biolit.fr/observations/observation-cdef8f01-f8d8-4b75-b404-cda959229ed2-3/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1080377.JPG,,TRUE, +N1,60276,sortie-cdef8f01-f8d8-4b75-b404-cda959229ed2,https://biolit.fr/sorties/sortie-cdef8f01-f8d8-4b75-b404-cda959229ed2/,Phil,,9/19/2017 0:00,13.000005,13.0:25,48.049292000000,-4.706188000000,,Cléden-Cap-Sizun - Finistère,47040,observation-cdef8f01-f8d8-4b75-b404-cda959229ed2-4,https://biolit.fr/observations/observation-cdef8f01-f8d8-4b75-b404-cda959229ed2-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080378.JPG,,TRUE, +N1,60276,sortie-cdef8f01-f8d8-4b75-b404-cda959229ed2,https://biolit.fr/sorties/sortie-cdef8f01-f8d8-4b75-b404-cda959229ed2/,Phil,,9/19/2017 0:00,13.000005,13.0:25,48.049292000000,-4.706188000000,,Cléden-Cap-Sizun - Finistère,47044,observation-cdef8f01-f8d8-4b75-b404-cda959229ed2-6,https://biolit.fr/observations/observation-cdef8f01-f8d8-4b75-b404-cda959229ed2-6/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1080362.JPG,,TRUE, +N1,60277,sortie-db948830-70d7-4217-be1a-583759c37e29,https://biolit.fr/sorties/sortie-db948830-70d7-4217-be1a-583759c37e29/,Nicolas,,10/19/2017 0:00,11.0000000,13.0000000,46.110231000000,-1.139891000000,,Pointe du Chay,47046,observation-db948830-70d7-4217-be1a-583759c37e29,https://biolit.fr/observations/observation-db948830-70d7-4217-be1a-583759c37e29/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171017_115119-scaled.jpg,,TRUE, +N1,60277,sortie-db948830-70d7-4217-be1a-583759c37e29,https://biolit.fr/sorties/sortie-db948830-70d7-4217-be1a-583759c37e29/,Nicolas,,10/19/2017 0:00,11.0000000,13.0000000,46.110231000000,-1.139891000000,,Pointe du Chay,47048,observation-db948830-70d7-4217-be1a-583759c37e29-2,https://biolit.fr/observations/observation-db948830-70d7-4217-be1a-583759c37e29-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171017_111300.jpg,,FALSE, +N1,60278,sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7,https://biolit.fr/sorties/sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7/,Sophie Etienne,,10/22/2017 0:00,18.0000000,20.0000000,43.158727000000,5.617291000000,,ile verte,47050,observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7,https://biolit.fr/observations/observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171022_103705A.png,,FALSE, +N1,60278,sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7,https://biolit.fr/sorties/sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7/,Sophie Etienne,,10/22/2017 0:00,18.0000000,20.0000000,43.158727000000,5.617291000000,,ile verte,47052,observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-2,https://biolit.fr/observations/observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-2/,Sparus aurata,Dorade (daurade) royale,,https://biolit.fr/wp-content/uploads/2023/07/20171022_104036A.png,,TRUE, +N1,60278,sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7,https://biolit.fr/sorties/sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7/,Sophie Etienne,,10/22/2017 0:00,18.0000000,20.0000000,43.158727000000,5.617291000000,,ile verte,47054,observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-3,https://biolit.fr/observations/observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-3/,Caulerpa cylindracea,Caulerpe cylindracée,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20171022_104120A.png,,TRUE, +N1,60278,sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7,https://biolit.fr/sorties/sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7/,Sophie Etienne,,10/22/2017 0:00,18.0000000,20.0000000,43.158727000000,5.617291000000,,ile verte,47056,observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-4,https://biolit.fr/observations/observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-4/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/20171022_104544A.png,,TRUE, +N1,60278,sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7,https://biolit.fr/sorties/sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7/,Sophie Etienne,,10/22/2017 0:00,18.0000000,20.0000000,43.158727000000,5.617291000000,,ile verte,47058,observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-5,https://biolit.fr/observations/observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-5/,Echinaster (Echinaster) sepositus,Etoile de mer rouge,,https://biolit.fr/wp-content/uploads/2023/07/20171022_110252A.png,,TRUE, +N1,60278,sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7,https://biolit.fr/sorties/sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7/,Sophie Etienne,,10/22/2017 0:00,18.0000000,20.0000000,43.158727000000,5.617291000000,,ile verte,47060,observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-6,https://biolit.fr/observations/observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-6/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20171022_110325A.png,,TRUE, +N1,60278,sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7,https://biolit.fr/sorties/sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7/,Sophie Etienne,,10/22/2017 0:00,18.0000000,20.0000000,43.158727000000,5.617291000000,,ile verte,47062,observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-7,https://biolit.fr/observations/observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-7/,Apogon imberbis,Apogon,,https://biolit.fr/wp-content/uploads/2023/07/barbierhirondelle.png,,TRUE, +N1,60278,sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7,https://biolit.fr/sorties/sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7/,Sophie Etienne,,10/22/2017 0:00,18.0000000,20.0000000,43.158727000000,5.617291000000,,ile verte,47064,observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-8,https://biolit.fr/observations/observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/epongelephantseoct.png,,FALSE, +N1,60278,sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7,https://biolit.fr/sorties/sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7/,Sophie Etienne,,10/22/2017 0:00,18.0000000,20.0000000,43.158727000000,5.617291000000,,ile verte,47066,observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-9,https://biolit.fr/observations/observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/langoustese.png,,FALSE, +N1,60278,sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7,https://biolit.fr/sorties/sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7/,Sophie Etienne,,10/22/2017 0:00,18.0000000,20.0000000,43.158727000000,5.617291000000,,ile verte,47068,observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-10,https://biolit.fr/observations/observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-10/,Pinna nobilis,Grande nacre,,https://biolit.fr/wp-content/uploads/2023/07/nacre2.png,,TRUE, +N1,60278,sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7,https://biolit.fr/sorties/sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7/,Sophie Etienne,,10/22/2017 0:00,18.0000000,20.0000000,43.158727000000,5.617291000000,,ile verte,47070,observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-11,https://biolit.fr/observations/observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-11/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/2023/07/poulpese.png,,TRUE, +N1,60278,sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7,https://biolit.fr/sorties/sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7/,Sophie Etienne,,10/22/2017 0:00,18.0000000,20.0000000,43.158727000000,5.617291000000,,ile verte,47072,observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-12,https://biolit.fr/observations/observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-12/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/2023/07/saupes.png,,TRUE, +N1,60278,sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7,https://biolit.fr/sorties/sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7/,Sophie Etienne,,10/22/2017 0:00,18.0000000,20.0000000,43.158727000000,5.617291000000,,ile verte,47074,observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-13,https://biolit.fr/observations/observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-13/,Diplodus vulgaris,Sar à tête noire,,https://biolit.fr/wp-content/uploads/2023/07/sarsatetenoirese.png,,TRUE, +N1,60279,sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7,https://biolit.fr/sorties/sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7/,Fleur,,10/20/2017 0:00,15.0000000,15.0000000,43.214655000000,5.342663000000,,Anse de la Maronaise,47076,observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7,https://biolit.fr/observations/observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_9464.jpeg,,TRUE, +N1,60279,sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7,https://biolit.fr/sorties/sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7/,Fleur,,10/20/2017 0:00,15.0000000,15.0000000,43.214655000000,5.342663000000,,Anse de la Maronaise,47077,observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7-2,https://biolit.fr/observations/observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9465.jpeg,,FALSE, +N1,60279,sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7,https://biolit.fr/sorties/sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7/,Fleur,,10/20/2017 0:00,15.0000000,15.0000000,43.214655000000,5.342663000000,,Anse de la Maronaise,47078,observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7-3,https://biolit.fr/observations/observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7-3/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9466-scaled.jpg,,TRUE, +N1,60279,sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7,https://biolit.fr/sorties/sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7/,Fleur,,10/20/2017 0:00,15.0000000,15.0000000,43.214655000000,5.342663000000,,Anse de la Maronaise,47080,observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7-4,https://biolit.fr/observations/observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7-4/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_9467.jpeg,,TRUE, +N1,60279,sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7,https://biolit.fr/sorties/sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7/,Fleur,,10/20/2017 0:00,15.0000000,15.0000000,43.214655000000,5.342663000000,,Anse de la Maronaise,47081,observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7-5,https://biolit.fr/observations/observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7-5/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9470-scaled.jpg,,TRUE, +N1,60279,sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7,https://biolit.fr/sorties/sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7/,Fleur,,10/20/2017 0:00,15.0000000,15.0000000,43.214655000000,5.342663000000,,Anse de la Maronaise,47083,observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7-6,https://biolit.fr/observations/observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9472-scaled.jpg,,FALSE, +N1,60279,sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7,https://biolit.fr/sorties/sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7/,Fleur,,10/20/2017 0:00,15.0000000,15.0000000,43.214655000000,5.342663000000,,Anse de la Maronaise,47085,observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7-7,https://biolit.fr/observations/observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9475-scaled.jpg,,FALSE, +N1,60279,sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7,https://biolit.fr/sorties/sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7/,Fleur,,10/20/2017 0:00,15.0000000,15.0000000,43.214655000000,5.342663000000,,Anse de la Maronaise,47087,observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7-8,https://biolit.fr/observations/observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9476-scaled.jpg,,FALSE, +N1,60279,sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7,https://biolit.fr/sorties/sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7/,Fleur,,10/20/2017 0:00,15.0000000,15.0000000,43.214655000000,5.342663000000,,Anse de la Maronaise,47089,observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7-9,https://biolit.fr/observations/observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7-9/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9479-scaled.jpg,,TRUE, +N1,60280,sortie-c2b5443b-9f99-4a74-9098-f457351e56f5,https://biolit.fr/sorties/sortie-c2b5443b-9f99-4a74-9098-f457351e56f5/,Phil,,6/18/2017 0:00,15.0000000,15.0:35,47.72048200000,-3.956067000000,,Fouesnant - Finistère,47091,observation-c2b5443b-9f99-4a74-9098-f457351e56f5,https://biolit.fr/observations/observation-c2b5443b-9f99-4a74-9098-f457351e56f5/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1070603.JPG,,TRUE, +N1,60280,sortie-c2b5443b-9f99-4a74-9098-f457351e56f5,https://biolit.fr/sorties/sortie-c2b5443b-9f99-4a74-9098-f457351e56f5/,Phil,,6/18/2017 0:00,15.0000000,15.0:35,47.72048200000,-3.956067000000,,Fouesnant - Finistère,47093,observation-c2b5443b-9f99-4a74-9098-f457351e56f5-2,https://biolit.fr/observations/observation-c2b5443b-9f99-4a74-9098-f457351e56f5-2/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1070620.JPG,,TRUE, +N1,60280,sortie-c2b5443b-9f99-4a74-9098-f457351e56f5,https://biolit.fr/sorties/sortie-c2b5443b-9f99-4a74-9098-f457351e56f5/,Phil,,6/18/2017 0:00,15.0000000,15.0:35,47.72048200000,-3.956067000000,,Fouesnant - Finistère,47095,observation-c2b5443b-9f99-4a74-9098-f457351e56f5-3,https://biolit.fr/observations/observation-c2b5443b-9f99-4a74-9098-f457351e56f5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070621.JPG,,FALSE, +N1,60280,sortie-c2b5443b-9f99-4a74-9098-f457351e56f5,https://biolit.fr/sorties/sortie-c2b5443b-9f99-4a74-9098-f457351e56f5/,Phil,,6/18/2017 0:00,15.0000000,15.0:35,47.72048200000,-3.956067000000,,Fouesnant - Finistère,47097,observation-c2b5443b-9f99-4a74-9098-f457351e56f5-4,https://biolit.fr/observations/observation-c2b5443b-9f99-4a74-9098-f457351e56f5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070622.JPG,,FALSE, +N1,60280,sortie-c2b5443b-9f99-4a74-9098-f457351e56f5,https://biolit.fr/sorties/sortie-c2b5443b-9f99-4a74-9098-f457351e56f5/,Phil,,6/18/2017 0:00,15.0000000,15.0:35,47.72048200000,-3.956067000000,,Fouesnant - Finistère,47099,observation-c2b5443b-9f99-4a74-9098-f457351e56f5-5,https://biolit.fr/observations/observation-c2b5443b-9f99-4a74-9098-f457351e56f5-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070623.JPG,,FALSE, +N1,60280,sortie-c2b5443b-9f99-4a74-9098-f457351e56f5,https://biolit.fr/sorties/sortie-c2b5443b-9f99-4a74-9098-f457351e56f5/,Phil,,6/18/2017 0:00,15.0000000,15.0:35,47.72048200000,-3.956067000000,,Fouesnant - Finistère,47101,observation-c2b5443b-9f99-4a74-9098-f457351e56f5-6,https://biolit.fr/observations/observation-c2b5443b-9f99-4a74-9098-f457351e56f5-6/,Solanum dulcamara,Morelle douce amère,,https://biolit.fr/wp-content/uploads/2023/07/P1070624.JPG,,TRUE, +N1,60280,sortie-c2b5443b-9f99-4a74-9098-f457351e56f5,https://biolit.fr/sorties/sortie-c2b5443b-9f99-4a74-9098-f457351e56f5/,Phil,,6/18/2017 0:00,15.0000000,15.0:35,47.72048200000,-3.956067000000,,Fouesnant - Finistère,47103,observation-c2b5443b-9f99-4a74-9098-f457351e56f5-7,https://biolit.fr/observations/observation-c2b5443b-9f99-4a74-9098-f457351e56f5-7/,Solanum dulcamara,Morelle douce amère,,https://biolit.fr/wp-content/uploads/2023/07/P1070653.JPG,,TRUE, +N1,60281,sortie-bafa3b94-ccc0-4ecf-8924-148a9d7faa52,https://biolit.fr/sorties/sortie-bafa3b94-ccc0-4ecf-8924-148a9d7faa52/,Observe la nature,,10/17/2017 0:00,10.0000000,11.0000000,43.396534000000,3.699200000000,,Port de Séte au Môle,47105,observation-bafa3b94-ccc0-4ecf-8924-148a9d7faa52,https://biolit.fr/observations/observation-bafa3b94-ccc0-4ecf-8924-148a9d7faa52/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC05230-scaled.jpg,,FALSE, +N1,60281,sortie-bafa3b94-ccc0-4ecf-8924-148a9d7faa52,https://biolit.fr/sorties/sortie-bafa3b94-ccc0-4ecf-8924-148a9d7faa52/,Observe la nature,,10/17/2017 0:00,10.0000000,11.0000000,43.396534000000,3.699200000000,,Port de Séte au Môle,47107,observation-bafa3b94-ccc0-4ecf-8924-148a9d7faa52-2,https://biolit.fr/observations/observation-bafa3b94-ccc0-4ecf-8924-148a9d7faa52-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC05206.JPG,,FALSE, +N1,60282,sortie-a46e5b30-9f4d-4671-8014-071cc4614b1c,https://biolit.fr/sorties/sortie-a46e5b30-9f4d-4671-8014-071cc4614b1c/,Observe la nature,,10/18/2017 0:00,15.0000000,16.0000000,43.236362000000,5.359879000000,,Plage de la bonne Brise MARSEILLE,47109,observation-a46e5b30-9f4d-4671-8014-071cc4614b1c,https://biolit.fr/observations/observation-a46e5b30-9f4d-4671-8014-071cc4614b1c/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171018_154730-scaled.jpg,,TRUE, +N1,60282,sortie-a46e5b30-9f4d-4671-8014-071cc4614b1c,https://biolit.fr/sorties/sortie-a46e5b30-9f4d-4671-8014-071cc4614b1c/,Observe la nature,,10/18/2017 0:00,15.0000000,16.0000000,43.236362000000,5.359879000000,,Plage de la bonne Brise MARSEILLE,47111,observation-a46e5b30-9f4d-4671-8014-071cc4614b1c-2,https://biolit.fr/observations/observation-a46e5b30-9f4d-4671-8014-071cc4614b1c-2/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171018_153927-scaled.jpg,,TRUE, +N1,60282,sortie-a46e5b30-9f4d-4671-8014-071cc4614b1c,https://biolit.fr/sorties/sortie-a46e5b30-9f4d-4671-8014-071cc4614b1c/,Observe la nature,,10/18/2017 0:00,15.0000000,16.0000000,43.236362000000,5.359879000000,,Plage de la bonne Brise MARSEILLE,47113,observation-a46e5b30-9f4d-4671-8014-071cc4614b1c-3,https://biolit.fr/observations/observation-a46e5b30-9f4d-4671-8014-071cc4614b1c-3/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171018_153753-scaled.jpg,,TRUE, +N1,60282,sortie-a46e5b30-9f4d-4671-8014-071cc4614b1c,https://biolit.fr/sorties/sortie-a46e5b30-9f4d-4671-8014-071cc4614b1c/,Observe la nature,,10/18/2017 0:00,15.0000000,16.0000000,43.236362000000,5.359879000000,,Plage de la bonne Brise MARSEILLE,47115,observation-a46e5b30-9f4d-4671-8014-071cc4614b1c-4,https://biolit.fr/observations/observation-a46e5b30-9f4d-4671-8014-071cc4614b1c-4/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171018_153741-scaled.jpg,,TRUE, +N1,60282,sortie-a46e5b30-9f4d-4671-8014-071cc4614b1c,https://biolit.fr/sorties/sortie-a46e5b30-9f4d-4671-8014-071cc4614b1c/,Observe la nature,,10/18/2017 0:00,15.0000000,16.0000000,43.236362000000,5.359879000000,,Plage de la bonne Brise MARSEILLE,47117,observation-a46e5b30-9f4d-4671-8014-071cc4614b1c-5,https://biolit.fr/observations/observation-a46e5b30-9f4d-4671-8014-071cc4614b1c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171018_153419-scaled.jpg,,FALSE, +N1,60283,sortie-20ea0a8b-bfab-45f3-b232-82074601c040,https://biolit.fr/sorties/sortie-20ea0a8b-bfab-45f3-b232-82074601c040/,Observe la nature,,10/16/2017 0:00,12.0000000,14.0000000,43.277048000000,5.305478000000,,iles du Frioul,47119,observation-20ea0a8b-bfab-45f3-b232-82074601c040,https://biolit.fr/observations/observation-20ea0a8b-bfab-45f3-b232-82074601c040/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/DSC06004-scaled.jpg,,TRUE, +N1,60283,sortie-20ea0a8b-bfab-45f3-b232-82074601c040,https://biolit.fr/sorties/sortie-20ea0a8b-bfab-45f3-b232-82074601c040/,Observe la nature,,10/16/2017 0:00,12.0000000,14.0000000,43.277048000000,5.305478000000,,iles du Frioul,47121,observation-20ea0a8b-bfab-45f3-b232-82074601c040-2,https://biolit.fr/observations/observation-20ea0a8b-bfab-45f3-b232-82074601c040-2/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/DSC05914-scaled.jpg,,TRUE, +N1,60284,sortie-c8d36cc4-4a02-43df-921f-7eb45e88e97f,https://biolit.fr/sorties/sortie-c8d36cc4-4a02-43df-921f-7eb45e88e97f/,LucileA,,10/19/2017 0:00,16.0:45,18.0:45,48.640339000000,-2.071638000000,,Estran de Saint Enogat,47123,observation-c8d36cc4-4a02-43df-921f-7eb45e88e97f,https://biolit.fr/observations/observation-c8d36cc4-4a02-43df-921f-7eb45e88e97f/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7465-scaled.jpg,,TRUE, +N1,60285,sortie-728e2e84-73e6-4b00-b5f8-4db99df5cd33,https://biolit.fr/sorties/sortie-728e2e84-73e6-4b00-b5f8-4db99df5cd33/,ChristineSG,,8/15/2017 0:00,18.0000000,19.0000000,44.201423000000,-1.299241000000,,Dune sud Mimizan Plage,47125,observation-728e2e84-73e6-4b00-b5f8-4db99df5cd33,https://biolit.fr/observations/observation-728e2e84-73e6-4b00-b5f8-4db99df5cd33/,,,,https://biolit.fr/wp-content/uploads/2023/07/lis matthiole-scaled.jpg,,FALSE, +N1,60286,sortie-0583c90d-c91f-4fd2-bab2-75713bafa238,https://biolit.fr/sorties/sortie-0583c90d-c91f-4fd2-bab2-75713bafa238/,Noëlla M,,10/14/2017 0:00,18.0:45,19.0000000,43.238190000000,5.361798000000,,anse des sablettes,47127,observation-0583c90d-c91f-4fd2-bab2-75713bafa238,https://biolit.fr/observations/observation-0583c90d-c91f-4fd2-bab2-75713bafa238/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171014_191546-min-scaled.jpg,,FALSE, +N1,60287,sortie-7941b961-29b8-48c5-9190-ea768e7beb0c,https://biolit.fr/sorties/sortie-7941b961-29b8-48c5-9190-ea768e7beb0c/,ville de marseille chartreux cm1,,10/09/2017,10.0000000,12.0000000,43.279939000000,5.353502000000,,Anse de la fausse monnaie ,47129,observation-7941b961-29b8-48c5-9190-ea768e7beb0c,https://biolit.fr/observations/observation-7941b961-29b8-48c5-9190-ea768e7beb0c/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pattele bleue Patella caerulea3-scaled.jpg,,FALSE, +N1,60288,sortie-225f4ba8-1f28-4f5f-b71f-fb442d85e825,https://biolit.fr/sorties/sortie-225f4ba8-1f28-4f5f-b71f-fb442d85e825/,ville de marseille chartreux cm1,,10/09/2017,10.0:15,12.0000000,43.279934000000,5.353431000000,,Anse de la fausse monnaie ,47131,observation-225f4ba8-1f28-4f5f-b71f-fb442d85e825,https://biolit.fr/observations/observation-225f4ba8-1f28-4f5f-b71f-fb442d85e825/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/Bucarde tuberculée Acanthocardia tuberculata_0-scaled.jpg,,TRUE, +N1,60289,sortie-f1d758a1-1e37-4a13-a006-702c43994be8,https://biolit.fr/sorties/sortie-f1d758a1-1e37-4a13-a006-702c43994be8/,Nicolas,,8/24/2017 0:00,13.0000000,15.0000000,46.108405000000,-1.144102000000,,Pointe du Chay,47133,observation-f1d758a1-1e37-4a13-a006-702c43994be8,https://biolit.fr/observations/observation-f1d758a1-1e37-4a13-a006-702c43994be8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170824_135252_0-scaled.jpg,,FALSE, +N1,60290,sortie-1fdfad9a-0c73-4c71-bcec-d79f760aae6b,https://biolit.fr/sorties/sortie-1fdfad9a-0c73-4c71-bcec-d79f760aae6b/,Nicolas,,10/04/2017,10.0000000,12.0000000,46.126012000000,-1.127199000000,,Plage d'Aytré,47135,observation-1fdfad9a-0c73-4c71-bcec-d79f760aae6b,https://biolit.fr/observations/observation-1fdfad9a-0c73-4c71-bcec-d79f760aae6b/,Calliblepharis ciliata,Algue ciliée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170927_145750-scaled.jpg,,TRUE, +N1,60290,sortie-1fdfad9a-0c73-4c71-bcec-d79f760aae6b,https://biolit.fr/sorties/sortie-1fdfad9a-0c73-4c71-bcec-d79f760aae6b/,Nicolas,,10/04/2017,10.0000000,12.0000000,46.126012000000,-1.127199000000,,Plage d'Aytré,47137,observation-1fdfad9a-0c73-4c71-bcec-d79f760aae6b-2,https://biolit.fr/observations/observation-1fdfad9a-0c73-4c71-bcec-d79f760aae6b-2/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171004_104641-scaled.jpg,,TRUE, +N1,60290,sortie-1fdfad9a-0c73-4c71-bcec-d79f760aae6b,https://biolit.fr/sorties/sortie-1fdfad9a-0c73-4c71-bcec-d79f760aae6b/,Nicolas,,10/04/2017,10.0000000,12.0000000,46.126012000000,-1.127199000000,,Plage d'Aytré,47139,observation-1fdfad9a-0c73-4c71-bcec-d79f760aae6b-3,https://biolit.fr/observations/observation-1fdfad9a-0c73-4c71-bcec-d79f760aae6b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171004_100212-scaled.jpg,,FALSE, +N1,60291,sortie-9b39792c-dbd9-46bf-8c32-512f5ede964f,https://biolit.fr/sorties/sortie-9b39792c-dbd9-46bf-8c32-512f5ede964f/,Nicolas,,10/12/2017,10.0000000,12.0000000,46.136919000000,-1.178006000000,,Plage des Minimes,47141,observation-9b39792c-dbd9-46bf-8c32-512f5ede964f,https://biolit.fr/observations/observation-9b39792c-dbd9-46bf-8c32-512f5ede964f/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171007_112610-scaled.jpg,,FALSE, +N1,60292,sortie-503ebddf-e895-4d17-9927-dccfa950e9c6,https://biolit.fr/sorties/sortie-503ebddf-e895-4d17-9927-dccfa950e9c6/,Marine,,10/12/2017,10.0000000,10.0:45,43.292789000000,5.367341000000,,Vieux port,47143,observation-503ebddf-e895-4d17-9927-dccfa950e9c6,https://biolit.fr/observations/observation-503ebddf-e895-4d17-9927-dccfa950e9c6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3202-scaled.jpg,,FALSE, +N1,60293,sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14,https://biolit.fr/sorties/sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14/,Ville de Marseille,,10/11/2017,9.0000000,11.0000000,43.2397460000,5.362266000000,,Plage du Bain des Dames,47145,observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14,https://biolit.fr/observations/observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algue rouge Peyssonelia-scaled.jpg,,FALSE, +N1,60293,sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14,https://biolit.fr/sorties/sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14/,Ville de Marseille,,10/11/2017,9.0000000,11.0000000,43.2397460000,5.362266000000,,Plage du Bain des Dames,47147,observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-2,https://biolit.fr/observations/observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue rouge Sphérocoque-scaled.jpg,,FALSE, +N1,60293,sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14,https://biolit.fr/sorties/sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14/,Ville de Marseille,,10/11/2017,9.0000000,11.0000000,43.2397460000,5.362266000000,,Plage du Bain des Dames,47149,observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-3,https://biolit.fr/observations/observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-3/,Ulva spp.,Ulve rigide,,https://biolit.fr/wp-content/uploads/2023/07/Algue verte Ulve (2)-scaled.jpg,,TRUE, +N1,60293,sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14,https://biolit.fr/sorties/sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14/,Ville de Marseille,,10/11/2017,9.0000000,11.0000000,43.2397460000,5.362266000000,,Plage du Bain des Dames,47151,observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-4,https://biolit.fr/observations/observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-4/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/Codium bursa-scaled.jpg,,TRUE, +N1,60293,sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14,https://biolit.fr/sorties/sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14/,Ville de Marseille,,10/11/2017,9.0000000,11.0000000,43.2397460000,5.362266000000,,Plage du Bain des Dames,47152,observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-5,https://biolit.fr/observations/observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-5/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/Bolinus brandaris ponte murex-scaled.jpg,,TRUE, +N1,60293,sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14,https://biolit.fr/sorties/sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14/,Ville de Marseille,,10/11/2017,9.0000000,11.0000000,43.2397460000,5.362266000000,,Plage du Bain des Dames,47154,observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-6,https://biolit.fr/observations/observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-6/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/Cérithe-scaled.jpg,,TRUE, +N1,60293,sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14,https://biolit.fr/sorties/sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14/,Ville de Marseille,,10/11/2017,9.0000000,11.0000000,43.2397460000,5.362266000000,,Plage du Bain des Dames,47156,observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-7,https://biolit.fr/observations/observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/cormaillot perceur_0-scaled.jpg,,FALSE, +N1,60293,sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14,https://biolit.fr/sorties/sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14/,Ville de Marseille,,10/11/2017,9.0000000,11.0000000,43.2397460000,5.362266000000,,Plage du Bain des Dames,47158,observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-8,https://biolit.fr/observations/observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge de toilette-scaled.jpg,,FALSE, +N1,60293,sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14,https://biolit.fr/sorties/sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14/,Ville de Marseille,,10/11/2017,9.0000000,11.0000000,43.2397460000,5.362266000000,,Plage du Bain des Dames,47160,observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-9,https://biolit.fr/observations/observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-9/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Eriphie ou crabe verruqueux-scaled.jpg,,TRUE, +N1,60293,sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14,https://biolit.fr/sorties/sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14/,Ville de Marseille,,10/11/2017,9.0000000,11.0000000,43.2397460000,5.362266000000,,Plage du Bain des Dames,47162,observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-10,https://biolit.fr/observations/observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/plume goéland-scaled.jpg,,FALSE, +N1,60293,sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14,https://biolit.fr/sorties/sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14/,Ville de Marseille,,10/11/2017,9.0000000,11.0000000,43.2397460000,5.362266000000,,Plage du Bain des Dames,47164,observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-11,https://biolit.fr/observations/observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-11/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Rhizome Posidonie-scaled.jpg,,TRUE, +N1,60294,sortie-2d0ad07c-5c19-46ab-89ab-29a2dc53c2d4,https://biolit.fr/sorties/sortie-2d0ad07c-5c19-46ab-89ab-29a2dc53c2d4/,Phil,,9/22/2017 0:00,11.0:25,11.0000000,47.776907000000,-4.341282000000,,Penmarc'h - Finistère,47166,observation-2d0ad07c-5c19-46ab-89ab-29a2dc53c2d4,https://biolit.fr/observations/observation-2d0ad07c-5c19-46ab-89ab-29a2dc53c2d4/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080690.JPG,,TRUE, +N1,60294,sortie-2d0ad07c-5c19-46ab-89ab-29a2dc53c2d4,https://biolit.fr/sorties/sortie-2d0ad07c-5c19-46ab-89ab-29a2dc53c2d4/,Phil,,9/22/2017 0:00,11.0:25,11.0000000,47.776907000000,-4.341282000000,,Penmarc'h - Finistère,47168,observation-2d0ad07c-5c19-46ab-89ab-29a2dc53c2d4-2,https://biolit.fr/observations/observation-2d0ad07c-5c19-46ab-89ab-29a2dc53c2d4-2/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080692.JPG,,TRUE, +N1,60294,sortie-2d0ad07c-5c19-46ab-89ab-29a2dc53c2d4,https://biolit.fr/sorties/sortie-2d0ad07c-5c19-46ab-89ab-29a2dc53c2d4/,Phil,,9/22/2017 0:00,11.0:25,11.0000000,47.776907000000,-4.341282000000,,Penmarc'h - Finistère,47170,observation-2d0ad07c-5c19-46ab-89ab-29a2dc53c2d4-3,https://biolit.fr/observations/observation-2d0ad07c-5c19-46ab-89ab-29a2dc53c2d4-3/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080693.JPG,,TRUE, +N1,60294,sortie-2d0ad07c-5c19-46ab-89ab-29a2dc53c2d4,https://biolit.fr/sorties/sortie-2d0ad07c-5c19-46ab-89ab-29a2dc53c2d4/,Phil,,9/22/2017 0:00,11.0:25,11.0000000,47.776907000000,-4.341282000000,,Penmarc'h - Finistère,47172,observation-2d0ad07c-5c19-46ab-89ab-29a2dc53c2d4-4,https://biolit.fr/observations/observation-2d0ad07c-5c19-46ab-89ab-29a2dc53c2d4-4/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080698.JPG,,TRUE, +N1,60295,sortie-53a64a31-fc32-4e0c-a9a8-a4d498d1c36f,https://biolit.fr/sorties/sortie-53a64a31-fc32-4e0c-a9a8-a4d498d1c36f/,Phil,,6/18/2017 0:00,16.0:15,16.0000000,47.720424000000,-3.956131000000,,Fouesnant - Finistère,47174,observation-53a64a31-fc32-4e0c-a9a8-a4d498d1c36f,https://biolit.fr/observations/observation-53a64a31-fc32-4e0c-a9a8-a4d498d1c36f/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070670.JPG,,FALSE, +N1,60295,sortie-53a64a31-fc32-4e0c-a9a8-a4d498d1c36f,https://biolit.fr/sorties/sortie-53a64a31-fc32-4e0c-a9a8-a4d498d1c36f/,Phil,,6/18/2017 0:00,16.0:15,16.0000000,47.720424000000,-3.956131000000,,Fouesnant - Finistère,47176,observation-53a64a31-fc32-4e0c-a9a8-a4d498d1c36f-2,https://biolit.fr/observations/observation-53a64a31-fc32-4e0c-a9a8-a4d498d1c36f-2/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/P1070678.JPG,,TRUE, +N1,60295,sortie-53a64a31-fc32-4e0c-a9a8-a4d498d1c36f,https://biolit.fr/sorties/sortie-53a64a31-fc32-4e0c-a9a8-a4d498d1c36f/,Phil,,6/18/2017 0:00,16.0:15,16.0000000,47.720424000000,-3.956131000000,,Fouesnant - Finistère,47178,observation-53a64a31-fc32-4e0c-a9a8-a4d498d1c36f-3,https://biolit.fr/observations/observation-53a64a31-fc32-4e0c-a9a8-a4d498d1c36f-3/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/P1070679.JPG,,TRUE, +N1,60296,sortie-b7f8259c-1e82-4f04-9d94-0719b873e482,https://biolit.fr/sorties/sortie-b7f8259c-1e82-4f04-9d94-0719b873e482/,Phil,,4/14/2017 0:00,16.0000000,16.0:25,48.848734000000,-3.013399000000,,Île-de-Bréhat - Côtes-d'Armor,47180,observation-b7f8259c-1e82-4f04-9d94-0719b873e482,https://biolit.fr/observations/observation-b7f8259c-1e82-4f04-9d94-0719b873e482/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070089.JPG,,TRUE, +N1,60296,sortie-b7f8259c-1e82-4f04-9d94-0719b873e482,https://biolit.fr/sorties/sortie-b7f8259c-1e82-4f04-9d94-0719b873e482/,Phil,,4/14/2017 0:00,16.0000000,16.0:25,48.848734000000,-3.013399000000,,Île-de-Bréhat - Côtes-d'Armor,47184,observation-b7f8259c-1e82-4f04-9d94-0719b873e482-3,https://biolit.fr/observations/observation-b7f8259c-1e82-4f04-9d94-0719b873e482-3/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1070077.JPG,,TRUE, +N1,60296,sortie-b7f8259c-1e82-4f04-9d94-0719b873e482,https://biolit.fr/sorties/sortie-b7f8259c-1e82-4f04-9d94-0719b873e482/,Phil,,4/14/2017 0:00,16.0000000,16.0:25,48.848734000000,-3.013399000000,,Île-de-Bréhat - Côtes-d'Armor,47186,observation-b7f8259c-1e82-4f04-9d94-0719b873e482-4,https://biolit.fr/observations/observation-b7f8259c-1e82-4f04-9d94-0719b873e482-4/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/P1070098.JPG,,TRUE, +N1,60296,sortie-b7f8259c-1e82-4f04-9d94-0719b873e482,https://biolit.fr/sorties/sortie-b7f8259c-1e82-4f04-9d94-0719b873e482/,Phil,,4/14/2017 0:00,16.0000000,16.0:25,48.848734000000,-3.013399000000,,Île-de-Bréhat - Côtes-d'Armor,47188,observation-b7f8259c-1e82-4f04-9d94-0719b873e482-5,https://biolit.fr/observations/observation-b7f8259c-1e82-4f04-9d94-0719b873e482-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070074.JPG,,FALSE, +N1,60297,sortie-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e,https://biolit.fr/sorties/sortie-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e/,Ville de Marseille,,6/16/2017 0:00,8.0000000,8.0:45,43.244774000000,5.371597000000,,Plage de sable de la Pointe Rouge,47190,observation-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e,https://biolit.fr/observations/observation-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 3_9-scaled.jpg,,FALSE, +N1,60297,sortie-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e,https://biolit.fr/sorties/sortie-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e/,Ville de Marseille,,6/16/2017 0:00,8.0000000,8.0:45,43.244774000000,5.371597000000,,Plage de sable de la Pointe Rouge,47192,observation-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e-2,https://biolit.fr/observations/observation-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/photo 6_1-scaled.jpg,,TRUE, +N1,60297,sortie-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e,https://biolit.fr/sorties/sortie-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e/,Ville de Marseille,,6/16/2017 0:00,8.0000000,8.0:45,43.244774000000,5.371597000000,,Plage de sable de la Pointe Rouge,47194,observation-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e-3,https://biolit.fr/observations/observation-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e-3/,Janthina janthina,Janthine commune,,https://biolit.fr/wp-content/uploads/2023/07/photo 5_2-scaled.jpg,,TRUE, +N1,60297,sortie-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e,https://biolit.fr/sorties/sortie-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e/,Ville de Marseille,,6/16/2017 0:00,8.0000000,8.0:45,43.244774000000,5.371597000000,,Plage de sable de la Pointe Rouge,47196,observation-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e-4,https://biolit.fr/observations/observation-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Photo 9.jpg,,FALSE, +N1,60297,sortie-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e,https://biolit.fr/sorties/sortie-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e/,Ville de Marseille,,6/16/2017 0:00,8.0000000,8.0:45,43.244774000000,5.371597000000,,Plage de sable de la Pointe Rouge,47197,observation-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e-5,https://biolit.fr/observations/observation-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Photo 8.jpg,,FALSE, +N1,60297,sortie-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e,https://biolit.fr/sorties/sortie-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e/,Ville de Marseille,,6/16/2017 0:00,8.0000000,8.0:45,43.244774000000,5.371597000000,,Plage de sable de la Pointe Rouge,47198,observation-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e-6,https://biolit.fr/observations/observation-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Photo 11.jpg,,FALSE, +N1,60297,sortie-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e,https://biolit.fr/sorties/sortie-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e/,Ville de Marseille,,6/16/2017 0:00,8.0000000,8.0:45,43.244774000000,5.371597000000,,Plage de sable de la Pointe Rouge,47199,observation-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e-7,https://biolit.fr/observations/observation-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e-7/,Janthina janthina,Janthine commune,,https://biolit.fr/wp-content/uploads/2023/07/photo 12-scaled.jpg,,TRUE, +N1,60298,sortie-9226f40f-5642-4733-8ae2-009b01bb6fec,https://biolit.fr/sorties/sortie-9226f40f-5642-4733-8ae2-009b01bb6fec/,Phil,,6/18/2017 0:00,15.0000000,15.0:45,47.720890000000,-3.958734000000,,Fouesnant - Finistère,47201,observation-9226f40f-5642-4733-8ae2-009b01bb6fec,https://biolit.fr/observations/observation-9226f40f-5642-4733-8ae2-009b01bb6fec/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070657.JPG,,FALSE, +N1,60298,sortie-9226f40f-5642-4733-8ae2-009b01bb6fec,https://biolit.fr/sorties/sortie-9226f40f-5642-4733-8ae2-009b01bb6fec/,Phil,,6/18/2017 0:00,15.0000000,15.0:45,47.720890000000,-3.958734000000,,Fouesnant - Finistère,47203,observation-9226f40f-5642-4733-8ae2-009b01bb6fec-2,https://biolit.fr/observations/observation-9226f40f-5642-4733-8ae2-009b01bb6fec-2/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1070616.JPG,,TRUE, +N1,60298,sortie-9226f40f-5642-4733-8ae2-009b01bb6fec,https://biolit.fr/sorties/sortie-9226f40f-5642-4733-8ae2-009b01bb6fec/,Phil,,6/18/2017 0:00,15.0000000,15.0:45,47.720890000000,-3.958734000000,,Fouesnant - Finistère,47205,observation-9226f40f-5642-4733-8ae2-009b01bb6fec-3,https://biolit.fr/observations/observation-9226f40f-5642-4733-8ae2-009b01bb6fec-3/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1070656.JPG,,TRUE, +N1,60298,sortie-9226f40f-5642-4733-8ae2-009b01bb6fec,https://biolit.fr/sorties/sortie-9226f40f-5642-4733-8ae2-009b01bb6fec/,Phil,,6/18/2017 0:00,15.0000000,15.0:45,47.720890000000,-3.958734000000,,Fouesnant - Finistère,47207,observation-9226f40f-5642-4733-8ae2-009b01bb6fec-4,https://biolit.fr/observations/observation-9226f40f-5642-4733-8ae2-009b01bb6fec-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070654.JPG,,FALSE, +N1,60299,sortie-5066e3f6-de92-4255-b498-309344a2e169,https://biolit.fr/sorties/sortie-5066e3f6-de92-4255-b498-309344a2e169/,Phil,,9/22/2017 0:00,11.0:35,11.0000000,47.777595000000,-4.337888000000,,Penmarc'h - Finistère,47209,observation-5066e3f6-de92-4255-b498-309344a2e169,https://biolit.fr/observations/observation-5066e3f6-de92-4255-b498-309344a2e169/,Phalacrocorax aristotelis,Cormoran huppé,,https://biolit.fr/wp-content/uploads/2023/07/P1080750.JPG,,TRUE, +N1,60299,sortie-5066e3f6-de92-4255-b498-309344a2e169,https://biolit.fr/sorties/sortie-5066e3f6-de92-4255-b498-309344a2e169/,Phil,,9/22/2017 0:00,11.0:35,11.0000000,47.777595000000,-4.337888000000,,Penmarc'h - Finistère,47211,observation-5066e3f6-de92-4255-b498-309344a2e169-2,https://biolit.fr/observations/observation-5066e3f6-de92-4255-b498-309344a2e169-2/,Phalacrocorax aristotelis,Cormoran huppé,,https://biolit.fr/wp-content/uploads/2023/07/P1080751.JPG,,TRUE, +N1,60300,sortie-4f5ca30b-90fa-4758-98d3-436c46efe752,https://biolit.fr/sorties/sortie-4f5ca30b-90fa-4758-98d3-436c46efe752/,Phil,,9/19/2017 0:00,12.0:55,13.0000000,48.049705000000,-4.707972000000,,Cléden-Cap-Sizun - Finistère,47213,observation-4f5ca30b-90fa-4758-98d3-436c46efe752,https://biolit.fr/observations/observation-4f5ca30b-90fa-4758-98d3-436c46efe752/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1080345.JPG,,TRUE, +N1,60300,sortie-4f5ca30b-90fa-4758-98d3-436c46efe752,https://biolit.fr/sorties/sortie-4f5ca30b-90fa-4758-98d3-436c46efe752/,Phil,,9/19/2017 0:00,12.0:55,13.0000000,48.049705000000,-4.707972000000,,Cléden-Cap-Sizun - Finistère,47215,observation-4f5ca30b-90fa-4758-98d3-436c46efe752-2,https://biolit.fr/observations/observation-4f5ca30b-90fa-4758-98d3-436c46efe752-2/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1080344.JPG,,TRUE, +N1,60300,sortie-4f5ca30b-90fa-4758-98d3-436c46efe752,https://biolit.fr/sorties/sortie-4f5ca30b-90fa-4758-98d3-436c46efe752/,Phil,,9/19/2017 0:00,12.0:55,13.0000000,48.049705000000,-4.707972000000,,Cléden-Cap-Sizun - Finistère,47217,observation-4f5ca30b-90fa-4758-98d3-436c46efe752-3,https://biolit.fr/observations/observation-4f5ca30b-90fa-4758-98d3-436c46efe752-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080359.JPG,,FALSE, +N1,60300,sortie-4f5ca30b-90fa-4758-98d3-436c46efe752,https://biolit.fr/sorties/sortie-4f5ca30b-90fa-4758-98d3-436c46efe752/,Phil,,9/19/2017 0:00,12.0:55,13.0000000,48.049705000000,-4.707972000000,,Cléden-Cap-Sizun - Finistère,47219,observation-4f5ca30b-90fa-4758-98d3-436c46efe752-4,https://biolit.fr/observations/observation-4f5ca30b-90fa-4758-98d3-436c46efe752-4/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1080349.JPG,,TRUE, +N1,60300,sortie-4f5ca30b-90fa-4758-98d3-436c46efe752,https://biolit.fr/sorties/sortie-4f5ca30b-90fa-4758-98d3-436c46efe752/,Phil,,9/19/2017 0:00,12.0:55,13.0000000,48.049705000000,-4.707972000000,,Cléden-Cap-Sizun - Finistère,47221,observation-4f5ca30b-90fa-4758-98d3-436c46efe752-5,https://biolit.fr/observations/observation-4f5ca30b-90fa-4758-98d3-436c46efe752-5/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1080355.JPG,,TRUE, +N1,60301,sortie-9ec35e19-34df-45e1-9773-b2b8bc162430,https://biolit.fr/sorties/sortie-9ec35e19-34df-45e1-9773-b2b8bc162430/,Phil,,4/14/2017 0:00,12.0000000,12.0:55,48.848926000000,-3.013094000000,,Île-de-Bréhat - Côtes-d'Armor ,47223,observation-9ec35e19-34df-45e1-9773-b2b8bc162430,https://biolit.fr/observations/observation-9ec35e19-34df-45e1-9773-b2b8bc162430/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1070058.JPG,,TRUE, +N1,60301,sortie-9ec35e19-34df-45e1-9773-b2b8bc162430,https://biolit.fr/sorties/sortie-9ec35e19-34df-45e1-9773-b2b8bc162430/,Phil,,4/14/2017 0:00,12.0000000,12.0:55,48.848926000000,-3.013094000000,,Île-de-Bréhat - Côtes-d'Armor ,47225,observation-9ec35e19-34df-45e1-9773-b2b8bc162430-2,https://biolit.fr/observations/observation-9ec35e19-34df-45e1-9773-b2b8bc162430-2/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1070053.JPG,,TRUE, +N1,60301,sortie-9ec35e19-34df-45e1-9773-b2b8bc162430,https://biolit.fr/sorties/sortie-9ec35e19-34df-45e1-9773-b2b8bc162430/,Phil,,4/14/2017 0:00,12.0000000,12.0:55,48.848926000000,-3.013094000000,,Île-de-Bréhat - Côtes-d'Armor ,47227,observation-9ec35e19-34df-45e1-9773-b2b8bc162430-3,https://biolit.fr/observations/observation-9ec35e19-34df-45e1-9773-b2b8bc162430-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1070063.JPG,,TRUE, +N1,60302,sortie-4dbf06bb-639a-4d44-b886-bd0a06a3f554,https://biolit.fr/sorties/sortie-4dbf06bb-639a-4d44-b886-bd0a06a3f554/,Ville de Marseille,,6/16/2017 0:00,8.0000000,8.0:45,43.244614000000,5.37158100000,,Plage de sable de la Pointe Rouge,47229,observation-4dbf06bb-639a-4d44-b886-bd0a06a3f554,https://biolit.fr/observations/observation-4dbf06bb-639a-4d44-b886-bd0a06a3f554/,Janthina janthina,Janthine commune,,https://biolit.fr/wp-content/uploads/2023/07/photo 6_0-scaled.jpg,,TRUE, +N1,60303,sortie-f7663323-6234-45fa-b9dc-3c01db53010b,https://biolit.fr/sorties/sortie-f7663323-6234-45fa-b9dc-3c01db53010b/,Phil,,6/18/2017 0:00,14.0:25,14.0000000,47.720895000000,-3.956819000000,,Fouesnant - Finistère,47231,observation-f7663323-6234-45fa-b9dc-3c01db53010b,https://biolit.fr/observations/observation-f7663323-6234-45fa-b9dc-3c01db53010b/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070575.JPG,,FALSE, +N1,60303,sortie-f7663323-6234-45fa-b9dc-3c01db53010b,https://biolit.fr/sorties/sortie-f7663323-6234-45fa-b9dc-3c01db53010b/,Phil,,6/18/2017 0:00,14.0:25,14.0000000,47.720895000000,-3.956819000000,,Fouesnant - Finistère,47233,observation-f7663323-6234-45fa-b9dc-3c01db53010b-2,https://biolit.fr/observations/observation-f7663323-6234-45fa-b9dc-3c01db53010b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070572.JPG,,FALSE, +N1,60303,sortie-f7663323-6234-45fa-b9dc-3c01db53010b,https://biolit.fr/sorties/sortie-f7663323-6234-45fa-b9dc-3c01db53010b/,Phil,,6/18/2017 0:00,14.0:25,14.0000000,47.720895000000,-3.956819000000,,Fouesnant - Finistère,47235,observation-f7663323-6234-45fa-b9dc-3c01db53010b-3,https://biolit.fr/observations/observation-f7663323-6234-45fa-b9dc-3c01db53010b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070571.JPG,,FALSE, +N1,60304,sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62,https://biolit.fr/sorties/sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62/,carmin89,,9/26/2017 0:00,12.0000000,13.0000000,43.072002000000,5.879593000000,,La Verne,47237,observation-cc734eae-1299-46f3-894e-3c4c2ac51f62,https://biolit.fr/observations/observation-cc734eae-1299-46f3-894e-3c4c2ac51f62/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170926_121710-scaled.jpg,,TRUE, +N1,60304,sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62,https://biolit.fr/sorties/sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62/,carmin89,,9/26/2017 0:00,12.0000000,13.0000000,43.072002000000,5.879593000000,,La Verne,47239,observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-2,https://biolit.fr/observations/observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170926_121744-scaled.jpg,,FALSE, +N1,60304,sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62,https://biolit.fr/sorties/sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62/,carmin89,,9/26/2017 0:00,12.0000000,13.0000000,43.072002000000,5.879593000000,,La Verne,47241,observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-3,https://biolit.fr/observations/observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-3/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170926_121843-scaled.jpg,,TRUE, +N1,60304,sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62,https://biolit.fr/sorties/sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62/,carmin89,,9/26/2017 0:00,12.0000000,13.0000000,43.072002000000,5.879593000000,,La Verne,47243,observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-4,https://biolit.fr/observations/observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-4/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170926_122104-scaled.jpg,,TRUE, +N1,60304,sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62,https://biolit.fr/sorties/sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62/,carmin89,,9/26/2017 0:00,12.0000000,13.0000000,43.072002000000,5.879593000000,,La Verne,47245,observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-5,https://biolit.fr/observations/observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-5/,Diodora graeca,Fissurelle,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170926_122117-scaled.jpg,,TRUE, +N1,60304,sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62,https://biolit.fr/sorties/sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62/,carmin89,,9/26/2017 0:00,12.0000000,13.0000000,43.072002000000,5.879593000000,,La Verne,47247,observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-6,https://biolit.fr/observations/observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-6/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170926_122135-scaled.jpg,,TRUE, +N1,60304,sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62,https://biolit.fr/sorties/sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62/,carmin89,,9/26/2017 0:00,12.0000000,13.0000000,43.072002000000,5.879593000000,,La Verne,47249,observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-7,https://biolit.fr/observations/observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170926_122605-scaled.jpg,,FALSE, +N1,60304,sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62,https://biolit.fr/sorties/sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62/,carmin89,,9/26/2017 0:00,12.0000000,13.0000000,43.072002000000,5.879593000000,,La Verne,47251,observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-8,https://biolit.fr/observations/observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170926_123109-scaled.jpg,,FALSE, +N1,60304,sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62,https://biolit.fr/sorties/sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62/,carmin89,,9/26/2017 0:00,12.0000000,13.0000000,43.072002000000,5.879593000000,,La Verne,47253,observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-9,https://biolit.fr/observations/observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170926_123159-scaled.jpg,,FALSE, +N1,60304,sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62,https://biolit.fr/sorties/sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62/,carmin89,,9/26/2017 0:00,12.0000000,13.0000000,43.072002000000,5.879593000000,,La Verne,47255,observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-10,https://biolit.fr/observations/observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170926_124158-scaled.jpg,,FALSE, +N1,60304,sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62,https://biolit.fr/sorties/sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62/,carmin89,,9/26/2017 0:00,12.0000000,13.0000000,43.072002000000,5.879593000000,,La Verne,47257,observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-11,https://biolit.fr/observations/observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-11/,Cardita calyculata,Cardite petit calice,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170926_125716-scaled.jpg,,TRUE, +N1,60305,sortie-10ccf351-9b45-4b2b-a6d0-ffdcf525e653,https://biolit.fr/sorties/sortie-10ccf351-9b45-4b2b-a6d0-ffdcf525e653/,carmin89,,9/22/2017 0:00,15.0000000,16.0000000,43.078322000000,6.125119000000,,Almanarre,47259,observation-10ccf351-9b45-4b2b-a6d0-ffdcf525e653,https://biolit.fr/observations/observation-10ccf351-9b45-4b2b-a6d0-ffdcf525e653/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170922_150209-scaled.jpg,,FALSE, +N1,60305,sortie-10ccf351-9b45-4b2b-a6d0-ffdcf525e653,https://biolit.fr/sorties/sortie-10ccf351-9b45-4b2b-a6d0-ffdcf525e653/,carmin89,,9/22/2017 0:00,15.0000000,16.0000000,43.078322000000,6.125119000000,,Almanarre,47261,observation-10ccf351-9b45-4b2b-a6d0-ffdcf525e653-2,https://biolit.fr/observations/observation-10ccf351-9b45-4b2b-a6d0-ffdcf525e653-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170922_150215-scaled.jpg,,FALSE, +N1,60305,sortie-10ccf351-9b45-4b2b-a6d0-ffdcf525e653,https://biolit.fr/sorties/sortie-10ccf351-9b45-4b2b-a6d0-ffdcf525e653/,carmin89,,9/22/2017 0:00,15.0000000,16.0000000,43.078322000000,6.125119000000,,Almanarre,47263,observation-10ccf351-9b45-4b2b-a6d0-ffdcf525e653-3,https://biolit.fr/observations/observation-10ccf351-9b45-4b2b-a6d0-ffdcf525e653-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170922_150440-scaled.jpg,,FALSE, +N1,60305,sortie-10ccf351-9b45-4b2b-a6d0-ffdcf525e653,https://biolit.fr/sorties/sortie-10ccf351-9b45-4b2b-a6d0-ffdcf525e653/,carmin89,,9/22/2017 0:00,15.0000000,16.0000000,43.078322000000,6.125119000000,,Almanarre,47265,observation-10ccf351-9b45-4b2b-a6d0-ffdcf525e653-4,https://biolit.fr/observations/observation-10ccf351-9b45-4b2b-a6d0-ffdcf525e653-4/,Modiolus barbatus,Modiole barbue,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170922_153246-scaled.jpg,,TRUE, +N1,60305,sortie-10ccf351-9b45-4b2b-a6d0-ffdcf525e653,https://biolit.fr/sorties/sortie-10ccf351-9b45-4b2b-a6d0-ffdcf525e653/,carmin89,,9/22/2017 0:00,15.0000000,16.0000000,43.078322000000,6.125119000000,,Almanarre,47267,observation-10ccf351-9b45-4b2b-a6d0-ffdcf525e653-5,https://biolit.fr/observations/observation-10ccf351-9b45-4b2b-a6d0-ffdcf525e653-5/,Euspira catena,Natice porte-chaîne,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170922_154055-scaled.jpg,,TRUE, +N1,60306,sortie-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e,https://biolit.fr/sorties/sortie-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e/,Phil,,9/19/2017 0:00,12.0000000,12.0:35,48.051513000000,-4.711396000000,,Cléden-Cap-Sizun - Finistère,47269,observation-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e,https://biolit.fr/observations/observation-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080279.JPG,,FALSE, +N1,60306,sortie-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e,https://biolit.fr/sorties/sortie-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e/,Phil,,9/19/2017 0:00,12.0000000,12.0:35,48.051513000000,-4.711396000000,,Cléden-Cap-Sizun - Finistère,47271,observation-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e-2,https://biolit.fr/observations/observation-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080277.JPG,,FALSE, +N1,60306,sortie-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e,https://biolit.fr/sorties/sortie-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e/,Phil,,9/19/2017 0:00,12.0000000,12.0:35,48.051513000000,-4.711396000000,,Cléden-Cap-Sizun - Finistère,47273,observation-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e-3,https://biolit.fr/observations/observation-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080295.JPG,,FALSE, +N1,60306,sortie-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e,https://biolit.fr/sorties/sortie-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e/,Phil,,9/19/2017 0:00,12.0000000,12.0:35,48.051513000000,-4.711396000000,,Cléden-Cap-Sizun - Finistère,47275,observation-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e-4,https://biolit.fr/observations/observation-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080282.JPG,,FALSE, +N1,60306,sortie-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e,https://biolit.fr/sorties/sortie-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e/,Phil,,9/19/2017 0:00,12.0000000,12.0:35,48.051513000000,-4.711396000000,,Cléden-Cap-Sizun - Finistère,47277,observation-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e-5,https://biolit.fr/observations/observation-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080296.JPG,,FALSE, +N1,60307,sortie-bae9af1c-9a84-43bf-be14-02188b148340,https://biolit.fr/sorties/sortie-bae9af1c-9a84-43bf-be14-02188b148340/,Phil,,9/18/2017 0:00,12.0000000,12.0:55,47.791334000000,-4.269978000000,,Léchiagat - Finistère,47279,observation-bae9af1c-9a84-43bf-be14-02188b148340,https://biolit.fr/observations/observation-bae9af1c-9a84-43bf-be14-02188b148340/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080230.JPG,,FALSE, +N1,60307,sortie-bae9af1c-9a84-43bf-be14-02188b148340,https://biolit.fr/sorties/sortie-bae9af1c-9a84-43bf-be14-02188b148340/,Phil,,9/18/2017 0:00,12.0000000,12.0:55,47.791334000000,-4.269978000000,,Léchiagat - Finistère,47281,observation-bae9af1c-9a84-43bf-be14-02188b148340-2,https://biolit.fr/observations/observation-bae9af1c-9a84-43bf-be14-02188b148340-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080232.JPG,,FALSE, +N1,60307,sortie-bae9af1c-9a84-43bf-be14-02188b148340,https://biolit.fr/sorties/sortie-bae9af1c-9a84-43bf-be14-02188b148340/,Phil,,9/18/2017 0:00,12.0000000,12.0:55,47.791334000000,-4.269978000000,,Léchiagat - Finistère,47283,observation-bae9af1c-9a84-43bf-be14-02188b148340-3,https://biolit.fr/observations/observation-bae9af1c-9a84-43bf-be14-02188b148340-3/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/P1080228.JPG,,TRUE, +N1,60307,sortie-bae9af1c-9a84-43bf-be14-02188b148340,https://biolit.fr/sorties/sortie-bae9af1c-9a84-43bf-be14-02188b148340/,Phil,,9/18/2017 0:00,12.0000000,12.0:55,47.791334000000,-4.269978000000,,Léchiagat - Finistère,47285,observation-bae9af1c-9a84-43bf-be14-02188b148340-4,https://biolit.fr/observations/observation-bae9af1c-9a84-43bf-be14-02188b148340-4/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/P1080226.JPG,,TRUE, +N1,60307,sortie-bae9af1c-9a84-43bf-be14-02188b148340,https://biolit.fr/sorties/sortie-bae9af1c-9a84-43bf-be14-02188b148340/,Phil,,9/18/2017 0:00,12.0000000,12.0:55,47.791334000000,-4.269978000000,,Léchiagat - Finistère,47287,observation-bae9af1c-9a84-43bf-be14-02188b148340-5,https://biolit.fr/observations/observation-bae9af1c-9a84-43bf-be14-02188b148340-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080224.JPG,,FALSE, +N1,60307,sortie-bae9af1c-9a84-43bf-be14-02188b148340,https://biolit.fr/sorties/sortie-bae9af1c-9a84-43bf-be14-02188b148340/,Phil,,9/18/2017 0:00,12.0000000,12.0:55,47.791334000000,-4.269978000000,,Léchiagat - Finistère,47289,observation-bae9af1c-9a84-43bf-be14-02188b148340-6,https://biolit.fr/observations/observation-bae9af1c-9a84-43bf-be14-02188b148340-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080221.JPG,,FALSE, +N1,60307,sortie-bae9af1c-9a84-43bf-be14-02188b148340,https://biolit.fr/sorties/sortie-bae9af1c-9a84-43bf-be14-02188b148340/,Phil,,9/18/2017 0:00,12.0000000,12.0:55,47.791334000000,-4.269978000000,,Léchiagat - Finistère,47291,observation-bae9af1c-9a84-43bf-be14-02188b148340-7,https://biolit.fr/observations/observation-bae9af1c-9a84-43bf-be14-02188b148340-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080220.JPG,,FALSE, +N1,60308,sortie-4e810862-68b7-41ca-976d-92120ca7a866,https://biolit.fr/sorties/sortie-4e810862-68b7-41ca-976d-92120ca7a866/,Phil,,9/22/2017 0:00,11.0000000,11.0:25,47.777137000000,-4.336295000000,,Penmarc'h - Finistère,47293,observation-4e810862-68b7-41ca-976d-92120ca7a866,https://biolit.fr/observations/observation-4e810862-68b7-41ca-976d-92120ca7a866/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/P1080622.JPG,,TRUE, +N1,60309,sortie-2a191aee-f33e-4c98-9355-d905ef1053d0,https://biolit.fr/sorties/sortie-2a191aee-f33e-4c98-9355-d905ef1053d0/,Phil,,9/19/2017 0:00,12.0:25,12.0:45,48.051483000000,-4.711343000000,,Cléden-Cap-Sizun - Finistère,47295,observation-2a191aee-f33e-4c98-9355-d905ef1053d0,https://biolit.fr/observations/observation-2a191aee-f33e-4c98-9355-d905ef1053d0/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1080323.JPG,,TRUE, +N1,60309,sortie-2a191aee-f33e-4c98-9355-d905ef1053d0,https://biolit.fr/sorties/sortie-2a191aee-f33e-4c98-9355-d905ef1053d0/,Phil,,9/19/2017 0:00,12.0:25,12.0:45,48.051483000000,-4.711343000000,,Cléden-Cap-Sizun - Finistère,47297,observation-2a191aee-f33e-4c98-9355-d905ef1053d0-2,https://biolit.fr/observations/observation-2a191aee-f33e-4c98-9355-d905ef1053d0-2/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1080328.JPG,,TRUE, +N1,60309,sortie-2a191aee-f33e-4c98-9355-d905ef1053d0,https://biolit.fr/sorties/sortie-2a191aee-f33e-4c98-9355-d905ef1053d0/,Phil,,9/19/2017 0:00,12.0:25,12.0:45,48.051483000000,-4.711343000000,,Cléden-Cap-Sizun - Finistère,47299,observation-2a191aee-f33e-4c98-9355-d905ef1053d0-3,https://biolit.fr/observations/observation-2a191aee-f33e-4c98-9355-d905ef1053d0-3/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1080324.JPG,,TRUE, +N1,60309,sortie-2a191aee-f33e-4c98-9355-d905ef1053d0,https://biolit.fr/sorties/sortie-2a191aee-f33e-4c98-9355-d905ef1053d0/,Phil,,9/19/2017 0:00,12.0:25,12.0:45,48.051483000000,-4.711343000000,,Cléden-Cap-Sizun - Finistère,47301,observation-2a191aee-f33e-4c98-9355-d905ef1053d0-4,https://biolit.fr/observations/observation-2a191aee-f33e-4c98-9355-d905ef1053d0-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080319.JPG,,FALSE, +N1,60310,sortie-30241a31-11ec-43c6-b4c8-efa78a557bef,https://biolit.fr/sorties/sortie-30241a31-11ec-43c6-b4c8-efa78a557bef/,Phil,,4/14/2017 0:00,12.0000000,12.0:35,48.849731000000,-3.013898000000,,Île-de-Bréhat - Côtes-d'Armor,47303,observation-30241a31-11ec-43c6-b4c8-efa78a557bef,https://biolit.fr/observations/observation-30241a31-11ec-43c6-b4c8-efa78a557bef/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070011.JPG,,TRUE, +N1,60310,sortie-30241a31-11ec-43c6-b4c8-efa78a557bef,https://biolit.fr/sorties/sortie-30241a31-11ec-43c6-b4c8-efa78a557bef/,Phil,,4/14/2017 0:00,12.0000000,12.0:35,48.849731000000,-3.013898000000,,Île-de-Bréhat - Côtes-d'Armor,47305,observation-30241a31-11ec-43c6-b4c8-efa78a557bef-2,https://biolit.fr/observations/observation-30241a31-11ec-43c6-b4c8-efa78a557bef-2/,Catenella caespitosa,Caténelle en touffe,,https://biolit.fr/wp-content/uploads/2023/07/P1070010.JPG,,TRUE, +N1,60310,sortie-30241a31-11ec-43c6-b4c8-efa78a557bef,https://biolit.fr/sorties/sortie-30241a31-11ec-43c6-b4c8-efa78a557bef/,Phil,,4/14/2017 0:00,12.0000000,12.0:35,48.849731000000,-3.013898000000,,Île-de-Bréhat - Côtes-d'Armor,47307,observation-30241a31-11ec-43c6-b4c8-efa78a557bef-3,https://biolit.fr/observations/observation-30241a31-11ec-43c6-b4c8-efa78a557bef-3/,Anurida maritima,Collembole marin,,https://biolit.fr/wp-content/uploads/2023/07/P1070016.JPG,,TRUE, +N1,60310,sortie-30241a31-11ec-43c6-b4c8-efa78a557bef,https://biolit.fr/sorties/sortie-30241a31-11ec-43c6-b4c8-efa78a557bef/,Phil,,4/14/2017 0:00,12.0000000,12.0:35,48.849731000000,-3.013898000000,,Île-de-Bréhat - Côtes-d'Armor,47309,observation-30241a31-11ec-43c6-b4c8-efa78a557bef-4,https://biolit.fr/observations/observation-30241a31-11ec-43c6-b4c8-efa78a557bef-4/,Anurida maritima,Collembole marin,,https://biolit.fr/wp-content/uploads/2023/07/P1070017.JPG,,TRUE, +N1,60310,sortie-30241a31-11ec-43c6-b4c8-efa78a557bef,https://biolit.fr/sorties/sortie-30241a31-11ec-43c6-b4c8-efa78a557bef/,Phil,,4/14/2017 0:00,12.0000000,12.0:35,48.849731000000,-3.013898000000,,Île-de-Bréhat - Côtes-d'Armor,47311,observation-30241a31-11ec-43c6-b4c8-efa78a557bef-5,https://biolit.fr/observations/observation-30241a31-11ec-43c6-b4c8-efa78a557bef-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070007.JPG,,TRUE, +N1,60310,sortie-30241a31-11ec-43c6-b4c8-efa78a557bef,https://biolit.fr/sorties/sortie-30241a31-11ec-43c6-b4c8-efa78a557bef/,Phil,,4/14/2017 0:00,12.0000000,12.0:35,48.849731000000,-3.013898000000,,Île-de-Bréhat - Côtes-d'Armor,47313,observation-30241a31-11ec-43c6-b4c8-efa78a557bef-6,https://biolit.fr/observations/observation-30241a31-11ec-43c6-b4c8-efa78a557bef-6/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070004.JPG,,TRUE, +N1,60310,sortie-30241a31-11ec-43c6-b4c8-efa78a557bef,https://biolit.fr/sorties/sortie-30241a31-11ec-43c6-b4c8-efa78a557bef/,Phil,,4/14/2017 0:00,12.0000000,12.0:35,48.849731000000,-3.013898000000,,Île-de-Bréhat - Côtes-d'Armor,47315,observation-30241a31-11ec-43c6-b4c8-efa78a557bef-7,https://biolit.fr/observations/observation-30241a31-11ec-43c6-b4c8-efa78a557bef-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070012.JPG,,FALSE, +N1,60311,sortie-278db14e-c641-484c-8daf-44ef9d231d2b,https://biolit.fr/sorties/sortie-278db14e-c641-484c-8daf-44ef9d231d2b/,Gary W,,9/21/2017 0:00,10.0000000,13.0000000,43.214790000000,5.342875000000,,Anse de la Maronaise,47317,observation-278db14e-c641-484c-8daf-44ef9d231d2b,https://biolit.fr/observations/observation-278db14e-c641-484c-8daf-44ef9d231d2b/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4650-scaled.jpg,,FALSE, +N1,60311,sortie-278db14e-c641-484c-8daf-44ef9d231d2b,https://biolit.fr/sorties/sortie-278db14e-c641-484c-8daf-44ef9d231d2b/,Gary W,,9/21/2017 0:00,10.0000000,13.0000000,43.214790000000,5.342875000000,,Anse de la Maronaise,47319,observation-278db14e-c641-484c-8daf-44ef9d231d2b-2,https://biolit.fr/observations/observation-278db14e-c641-484c-8daf-44ef9d231d2b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4648-scaled.jpg,,FALSE, +N1,60311,sortie-278db14e-c641-484c-8daf-44ef9d231d2b,https://biolit.fr/sorties/sortie-278db14e-c641-484c-8daf-44ef9d231d2b/,Gary W,,9/21/2017 0:00,10.0000000,13.0000000,43.214790000000,5.342875000000,,Anse de la Maronaise,47321,observation-278db14e-c641-484c-8daf-44ef9d231d2b-3,https://biolit.fr/observations/observation-278db14e-c641-484c-8daf-44ef9d231d2b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4649-scaled.jpg,,FALSE, +N1,60311,sortie-278db14e-c641-484c-8daf-44ef9d231d2b,https://biolit.fr/sorties/sortie-278db14e-c641-484c-8daf-44ef9d231d2b/,Gary W,,9/21/2017 0:00,10.0000000,13.0000000,43.214790000000,5.342875000000,,Anse de la Maronaise,47323,observation-278db14e-c641-484c-8daf-44ef9d231d2b-4,https://biolit.fr/observations/observation-278db14e-c641-484c-8daf-44ef9d231d2b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4653-scaled.jpg,,FALSE, +N1,60311,sortie-278db14e-c641-484c-8daf-44ef9d231d2b,https://biolit.fr/sorties/sortie-278db14e-c641-484c-8daf-44ef9d231d2b/,Gary W,,9/21/2017 0:00,10.0000000,13.0000000,43.214790000000,5.342875000000,,Anse de la Maronaise,47325,observation-278db14e-c641-484c-8daf-44ef9d231d2b-5,https://biolit.fr/observations/observation-278db14e-c641-484c-8daf-44ef9d231d2b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4656-scaled.jpg,,FALSE, +N1,60311,sortie-278db14e-c641-484c-8daf-44ef9d231d2b,https://biolit.fr/sorties/sortie-278db14e-c641-484c-8daf-44ef9d231d2b/,Gary W,,9/21/2017 0:00,10.0000000,13.0000000,43.214790000000,5.342875000000,,Anse de la Maronaise,47327,observation-278db14e-c641-484c-8daf-44ef9d231d2b-6,https://biolit.fr/observations/observation-278db14e-c641-484c-8daf-44ef9d231d2b-6/,Jacobaea maritima,Cinéraire maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4660-scaled.jpg,,TRUE, +N1,60311,sortie-278db14e-c641-484c-8daf-44ef9d231d2b,https://biolit.fr/sorties/sortie-278db14e-c641-484c-8daf-44ef9d231d2b/,Gary W,,9/21/2017 0:00,10.0000000,13.0000000,43.214790000000,5.342875000000,,Anse de la Maronaise,47329,observation-278db14e-c641-484c-8daf-44ef9d231d2b-7,https://biolit.fr/observations/observation-278db14e-c641-484c-8daf-44ef9d231d2b-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4662-scaled.jpg,,FALSE, +N1,60311,sortie-278db14e-c641-484c-8daf-44ef9d231d2b,https://biolit.fr/sorties/sortie-278db14e-c641-484c-8daf-44ef9d231d2b/,Gary W,,9/21/2017 0:00,10.0000000,13.0000000,43.214790000000,5.342875000000,,Anse de la Maronaise,47331,observation-278db14e-c641-484c-8daf-44ef9d231d2b-8,https://biolit.fr/observations/observation-278db14e-c641-484c-8daf-44ef9d231d2b-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4663-scaled.jpg,,FALSE, +N1,60311,sortie-278db14e-c641-484c-8daf-44ef9d231d2b,https://biolit.fr/sorties/sortie-278db14e-c641-484c-8daf-44ef9d231d2b/,Gary W,,9/21/2017 0:00,10.0000000,13.0000000,43.214790000000,5.342875000000,,Anse de la Maronaise,47333,observation-278db14e-c641-484c-8daf-44ef9d231d2b-9,https://biolit.fr/observations/observation-278db14e-c641-484c-8daf-44ef9d231d2b-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4664.jpg,,FALSE, +N1,60311,sortie-278db14e-c641-484c-8daf-44ef9d231d2b,https://biolit.fr/sorties/sortie-278db14e-c641-484c-8daf-44ef9d231d2b/,Gary W,,9/21/2017 0:00,10.0000000,13.0000000,43.214790000000,5.342875000000,,Anse de la Maronaise,47335,observation-278db14e-c641-484c-8daf-44ef9d231d2b-10,https://biolit.fr/observations/observation-278db14e-c641-484c-8daf-44ef9d231d2b-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4665-scaled.jpg,,FALSE, +N1,60311,sortie-278db14e-c641-484c-8daf-44ef9d231d2b,https://biolit.fr/sorties/sortie-278db14e-c641-484c-8daf-44ef9d231d2b/,Gary W,,9/21/2017 0:00,10.0000000,13.0000000,43.214790000000,5.342875000000,,Anse de la Maronaise,47337,observation-278db14e-c641-484c-8daf-44ef9d231d2b-11,https://biolit.fr/observations/observation-278db14e-c641-484c-8daf-44ef9d231d2b-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4666.jpg,,FALSE, +N1,60311,sortie-278db14e-c641-484c-8daf-44ef9d231d2b,https://biolit.fr/sorties/sortie-278db14e-c641-484c-8daf-44ef9d231d2b/,Gary W,,9/21/2017 0:00,10.0000000,13.0000000,43.214790000000,5.342875000000,,Anse de la Maronaise,47339,observation-278db14e-c641-484c-8daf-44ef9d231d2b-12,https://biolit.fr/observations/observation-278db14e-c641-484c-8daf-44ef9d231d2b-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4669-scaled.jpg,,FALSE, +N1,60312,sortie-1ec4d2d6-79c2-41bc-a4b6-9a355041eed4,https://biolit.fr/sorties/sortie-1ec4d2d6-79c2-41bc-a4b6-9a355041eed4/,Fleur,,9/17/2017 0:00,10.0000000,12.0:15,43.283998000000,5.316363000000,,"Plage St Estève (Ile de Ratonneau, Archipel du Frioul)",47341,observation-1ec4d2d6-79c2-41bc-a4b6-9a355041eed4,https://biolit.fr/observations/observation-1ec4d2d6-79c2-41bc-a4b6-9a355041eed4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9396-scaled.jpg,,FALSE, +N1,60313,sortie-017b63ef-eaef-4f62-91c2-d85450091a68,https://biolit.fr/sorties/sortie-017b63ef-eaef-4f62-91c2-d85450091a68/,Phil,,9/19/2017 0:00,12.0000000,13.000005,48.049393000000,-4.707435000000,,Cléden-Cap-Sizun - Finistère,47343,observation-017b63ef-eaef-4f62-91c2-d85450091a68,https://biolit.fr/observations/observation-017b63ef-eaef-4f62-91c2-d85450091a68/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080330.JPG,,FALSE, +N1,60313,sortie-017b63ef-eaef-4f62-91c2-d85450091a68,https://biolit.fr/sorties/sortie-017b63ef-eaef-4f62-91c2-d85450091a68/,Phil,,9/19/2017 0:00,12.0000000,13.000005,48.049393000000,-4.707435000000,,Cléden-Cap-Sizun - Finistère,47345,observation-017b63ef-eaef-4f62-91c2-d85450091a68-2,https://biolit.fr/observations/observation-017b63ef-eaef-4f62-91c2-d85450091a68-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080335.JPG,,FALSE, +N1,60313,sortie-017b63ef-eaef-4f62-91c2-d85450091a68,https://biolit.fr/sorties/sortie-017b63ef-eaef-4f62-91c2-d85450091a68/,Phil,,9/19/2017 0:00,12.0000000,13.000005,48.049393000000,-4.707435000000,,Cléden-Cap-Sizun - Finistère,47347,observation-017b63ef-eaef-4f62-91c2-d85450091a68-3,https://biolit.fr/observations/observation-017b63ef-eaef-4f62-91c2-d85450091a68-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080336.JPG,,FALSE, +N1,60313,sortie-017b63ef-eaef-4f62-91c2-d85450091a68,https://biolit.fr/sorties/sortie-017b63ef-eaef-4f62-91c2-d85450091a68/,Phil,,9/19/2017 0:00,12.0000000,13.000005,48.049393000000,-4.707435000000,,Cléden-Cap-Sizun - Finistère,47349,observation-017b63ef-eaef-4f62-91c2-d85450091a68-4,https://biolit.fr/observations/observation-017b63ef-eaef-4f62-91c2-d85450091a68-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080337.JPG,,FALSE, +N1,60314,sortie-8b5266ec-6cc8-49e6-8376-cf662f196c04,https://biolit.fr/sorties/sortie-8b5266ec-6cc8-49e6-8376-cf662f196c04/,Kevin,,9/17/2017 0:00,10.0000000,15.0000000,43.284206000000,5.315718000000,,Plage de Saint-Estève au Frioul,47351,observation-8b5266ec-6cc8-49e6-8376-cf662f196c04,https://biolit.fr/observations/observation-8b5266ec-6cc8-49e6-8376-cf662f196c04/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2880-scaled.jpg,,FALSE, +N1,60314,sortie-8b5266ec-6cc8-49e6-8376-cf662f196c04,https://biolit.fr/sorties/sortie-8b5266ec-6cc8-49e6-8376-cf662f196c04/,Kevin,,9/17/2017 0:00,10.0000000,15.0000000,43.284206000000,5.315718000000,,Plage de Saint-Estève au Frioul,47353,observation-8b5266ec-6cc8-49e6-8376-cf662f196c04-2,https://biolit.fr/observations/observation-8b5266ec-6cc8-49e6-8376-cf662f196c04-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2882-scaled.jpg,,FALSE, +N1,60314,sortie-8b5266ec-6cc8-49e6-8376-cf662f196c04,https://biolit.fr/sorties/sortie-8b5266ec-6cc8-49e6-8376-cf662f196c04/,Kevin,,9/17/2017 0:00,10.0000000,15.0000000,43.284206000000,5.315718000000,,Plage de Saint-Estève au Frioul,47355,observation-8b5266ec-6cc8-49e6-8376-cf662f196c04-3,https://biolit.fr/observations/observation-8b5266ec-6cc8-49e6-8376-cf662f196c04-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2883-scaled.jpg,,FALSE, +N1,60314,sortie-8b5266ec-6cc8-49e6-8376-cf662f196c04,https://biolit.fr/sorties/sortie-8b5266ec-6cc8-49e6-8376-cf662f196c04/,Kevin,,9/17/2017 0:00,10.0000000,15.0000000,43.284206000000,5.315718000000,,Plage de Saint-Estève au Frioul,47357,observation-8b5266ec-6cc8-49e6-8376-cf662f196c04-4,https://biolit.fr/observations/observation-8b5266ec-6cc8-49e6-8376-cf662f196c04-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2884-scaled.jpg,,FALSE, +N1,60314,sortie-8b5266ec-6cc8-49e6-8376-cf662f196c04,https://biolit.fr/sorties/sortie-8b5266ec-6cc8-49e6-8376-cf662f196c04/,Kevin,,9/17/2017 0:00,10.0000000,15.0000000,43.284206000000,5.315718000000,,Plage de Saint-Estève au Frioul,47359,observation-8b5266ec-6cc8-49e6-8376-cf662f196c04-5,https://biolit.fr/observations/observation-8b5266ec-6cc8-49e6-8376-cf662f196c04-5/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2885-scaled.jpg,,TRUE, +N1,60314,sortie-8b5266ec-6cc8-49e6-8376-cf662f196c04,https://biolit.fr/sorties/sortie-8b5266ec-6cc8-49e6-8376-cf662f196c04/,Kevin,,9/17/2017 0:00,10.0000000,15.0000000,43.284206000000,5.315718000000,,Plage de Saint-Estève au Frioul,47361,observation-8b5266ec-6cc8-49e6-8376-cf662f196c04-6,https://biolit.fr/observations/observation-8b5266ec-6cc8-49e6-8376-cf662f196c04-6/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2886-scaled.jpg,,TRUE, +N1,60314,sortie-8b5266ec-6cc8-49e6-8376-cf662f196c04,https://biolit.fr/sorties/sortie-8b5266ec-6cc8-49e6-8376-cf662f196c04/,Kevin,,9/17/2017 0:00,10.0000000,15.0000000,43.284206000000,5.315718000000,,Plage de Saint-Estève au Frioul,47363,observation-8b5266ec-6cc8-49e6-8376-cf662f196c04-7,https://biolit.fr/observations/observation-8b5266ec-6cc8-49e6-8376-cf662f196c04-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3008-scaled.jpg,,FALSE, +N1,60315,sortie-dd9f3368-0b78-4174-bc2f-2c4aa75b5dbb,https://biolit.fr/sorties/sortie-dd9f3368-0b78-4174-bc2f-2c4aa75b5dbb/,Noëlla M,,9/21/2017 0:00,11.0000000,12.0000000,43.214943000000,5.342933000000,,Anse de la Maronaise ,47365,observation-dd9f3368-0b78-4174-bc2f-2c4aa75b5dbb,https://biolit.fr/observations/observation-dd9f3368-0b78-4174-bc2f-2c4aa75b5dbb/,,,,https://biolit.fr/wp-content/uploads/2023/07/HUGO 462-scaled.jpg,,FALSE, +N1,60315,sortie-dd9f3368-0b78-4174-bc2f-2c4aa75b5dbb,https://biolit.fr/sorties/sortie-dd9f3368-0b78-4174-bc2f-2c4aa75b5dbb/,Noëlla M,,9/21/2017 0:00,11.0000000,12.0000000,43.214943000000,5.342933000000,,Anse de la Maronaise ,47367,observation-dd9f3368-0b78-4174-bc2f-2c4aa75b5dbb-2,https://biolit.fr/observations/observation-dd9f3368-0b78-4174-bc2f-2c4aa75b5dbb-2/,Lithophyllum byssoides,Algue calcaire des trottoirs,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3204-scaled.jpg,,TRUE, +N1,60315,sortie-dd9f3368-0b78-4174-bc2f-2c4aa75b5dbb,https://biolit.fr/sorties/sortie-dd9f3368-0b78-4174-bc2f-2c4aa75b5dbb/,Noëlla M,,9/21/2017 0:00,11.0000000,12.0000000,43.214943000000,5.342933000000,,Anse de la Maronaise ,47369,observation-dd9f3368-0b78-4174-bc2f-2c4aa75b5dbb-3,https://biolit.fr/observations/observation-dd9f3368-0b78-4174-bc2f-2c4aa75b5dbb-3/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0499-scaled.jpg,,TRUE, +N1,60316,sortie-45b3d41b-acc2-4ba0-9a5f-579ba466386b,https://biolit.fr/sorties/sortie-45b3d41b-acc2-4ba0-9a5f-579ba466386b/,Phil,,9/19/2017 0:00,12.0000000,12.0000000,48.049937000000,-4.708545000000,,Cléden-Cap-Sizun - Finistère,47371,observation-45b3d41b-acc2-4ba0-9a5f-579ba466386b,https://biolit.fr/observations/observation-45b3d41b-acc2-4ba0-9a5f-579ba466386b/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/P1080265.JPG,,TRUE, +N1,60316,sortie-45b3d41b-acc2-4ba0-9a5f-579ba466386b,https://biolit.fr/sorties/sortie-45b3d41b-acc2-4ba0-9a5f-579ba466386b/,Phil,,9/19/2017 0:00,12.0000000,12.0000000,48.049937000000,-4.708545000000,,Cléden-Cap-Sizun - Finistère,47373,observation-45b3d41b-acc2-4ba0-9a5f-579ba466386b-2,https://biolit.fr/observations/observation-45b3d41b-acc2-4ba0-9a5f-579ba466386b-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/P1080267.JPG,,TRUE, +N1,60316,sortie-45b3d41b-acc2-4ba0-9a5f-579ba466386b,https://biolit.fr/sorties/sortie-45b3d41b-acc2-4ba0-9a5f-579ba466386b/,Phil,,9/19/2017 0:00,12.0000000,12.0000000,48.049937000000,-4.708545000000,,Cléden-Cap-Sizun - Finistère,47375,observation-45b3d41b-acc2-4ba0-9a5f-579ba466386b-3,https://biolit.fr/observations/observation-45b3d41b-acc2-4ba0-9a5f-579ba466386b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080274.JPG,,FALSE, +N1,60316,sortie-45b3d41b-acc2-4ba0-9a5f-579ba466386b,https://biolit.fr/sorties/sortie-45b3d41b-acc2-4ba0-9a5f-579ba466386b/,Phil,,9/19/2017 0:00,12.0000000,12.0000000,48.049937000000,-4.708545000000,,Cléden-Cap-Sizun - Finistère,47377,observation-45b3d41b-acc2-4ba0-9a5f-579ba466386b-4,https://biolit.fr/observations/observation-45b3d41b-acc2-4ba0-9a5f-579ba466386b-4/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/P1080276.JPG,,TRUE, +N1,60317,sortie-7d0c37f7-a48f-4c47-92e4-ea129cc4b9d3,https://biolit.fr/sorties/sortie-7d0c37f7-a48f-4c47-92e4-ea129cc4b9d3/,Phil,,9/22/2017 0:00,11.0:55,12.0000000,47.79126500000,-4.284183000000,,Le Guilvinec - Finistère,47379,observation-7d0c37f7-a48f-4c47-92e4-ea129cc4b9d3,https://biolit.fr/observations/observation-7d0c37f7-a48f-4c47-92e4-ea129cc4b9d3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080840.JPG,,FALSE, +N1,60317,sortie-7d0c37f7-a48f-4c47-92e4-ea129cc4b9d3,https://biolit.fr/sorties/sortie-7d0c37f7-a48f-4c47-92e4-ea129cc4b9d3/,Phil,,9/22/2017 0:00,11.0:55,12.0000000,47.79126500000,-4.284183000000,,Le Guilvinec - Finistère,47381,observation-7d0c37f7-a48f-4c47-92e4-ea129cc4b9d3-2,https://biolit.fr/observations/observation-7d0c37f7-a48f-4c47-92e4-ea129cc4b9d3-2/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/P1080843_0.JPG,,TRUE, +N1,60317,sortie-7d0c37f7-a48f-4c47-92e4-ea129cc4b9d3,https://biolit.fr/sorties/sortie-7d0c37f7-a48f-4c47-92e4-ea129cc4b9d3/,Phil,,9/22/2017 0:00,11.0:55,12.0000000,47.79126500000,-4.284183000000,,Le Guilvinec - Finistère,47383,observation-7d0c37f7-a48f-4c47-92e4-ea129cc4b9d3-3,https://biolit.fr/observations/observation-7d0c37f7-a48f-4c47-92e4-ea129cc4b9d3-3/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/P1080847.JPG,,TRUE, +N1,60318,sortie-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c,https://biolit.fr/sorties/sortie-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c/,Phil,,9/19/2017 0:00,12.0:25,12.0000000,48.050318000000,-4.709747000000,,Cléden-Cap-Sizun - Finistère,47385,observation-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c,https://biolit.fr/observations/observation-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080307.JPG,,FALSE, +N1,60318,sortie-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c,https://biolit.fr/sorties/sortie-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c/,Phil,,9/19/2017 0:00,12.0:25,12.0000000,48.050318000000,-4.709747000000,,Cléden-Cap-Sizun - Finistère,47387,observation-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c-2,https://biolit.fr/observations/observation-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c-2/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/P1080308.JPG,,TRUE, +N1,60318,sortie-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c,https://biolit.fr/sorties/sortie-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c/,Phil,,9/19/2017 0:00,12.0:25,12.0000000,48.050318000000,-4.709747000000,,Cléden-Cap-Sizun - Finistère,47389,observation-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c-3,https://biolit.fr/observations/observation-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080315.JPG,,FALSE, +N1,60318,sortie-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c,https://biolit.fr/sorties/sortie-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c/,Phil,,9/19/2017 0:00,12.0:25,12.0000000,48.050318000000,-4.709747000000,,Cléden-Cap-Sizun - Finistère,47391,observation-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c-4,https://biolit.fr/observations/observation-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080316.JPG,,FALSE, +N1,60318,sortie-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c,https://biolit.fr/sorties/sortie-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c/,Phil,,9/19/2017 0:00,12.0:25,12.0000000,48.050318000000,-4.709747000000,,Cléden-Cap-Sizun - Finistère,47393,observation-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c-5,https://biolit.fr/observations/observation-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c-5/,Saccharina latissima,Laminaire sucrée,,https://biolit.fr/wp-content/uploads/2023/07/P1080303.JPG,,TRUE, +N1,60319,sortie-204a26f6-e37a-4780-8461-31834720708f,https://biolit.fr/sorties/sortie-204a26f6-e37a-4780-8461-31834720708f/,Phil,,4/14/2017 0:00,16.0000000,16.0000000,48.838659000000,-3.012459000000,,Île-de-Bréhat - Côtes-d'Armor,47395,observation-204a26f6-e37a-4780-8461-31834720708f,https://biolit.fr/observations/observation-204a26f6-e37a-4780-8461-31834720708f/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/P1070104.JPG,,TRUE, +N1,60319,sortie-204a26f6-e37a-4780-8461-31834720708f,https://biolit.fr/sorties/sortie-204a26f6-e37a-4780-8461-31834720708f/,Phil,,4/14/2017 0:00,16.0000000,16.0000000,48.838659000000,-3.012459000000,,Île-de-Bréhat - Côtes-d'Armor,47397,observation-204a26f6-e37a-4780-8461-31834720708f-2,https://biolit.fr/observations/observation-204a26f6-e37a-4780-8461-31834720708f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070105.JPG,,FALSE, +N1,60319,sortie-204a26f6-e37a-4780-8461-31834720708f,https://biolit.fr/sorties/sortie-204a26f6-e37a-4780-8461-31834720708f/,Phil,,4/14/2017 0:00,16.0000000,16.0000000,48.838659000000,-3.012459000000,,Île-de-Bréhat - Côtes-d'Armor,47399,observation-204a26f6-e37a-4780-8461-31834720708f-3,https://biolit.fr/observations/observation-204a26f6-e37a-4780-8461-31834720708f-3/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/P1070110.JPG,,TRUE, +N1,60319,sortie-204a26f6-e37a-4780-8461-31834720708f,https://biolit.fr/sorties/sortie-204a26f6-e37a-4780-8461-31834720708f/,Phil,,4/14/2017 0:00,16.0000000,16.0000000,48.838659000000,-3.012459000000,,Île-de-Bréhat - Côtes-d'Armor,47401,observation-204a26f6-e37a-4780-8461-31834720708f-4,https://biolit.fr/observations/observation-204a26f6-e37a-4780-8461-31834720708f-4/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/P1070114.JPG,,TRUE, +N1,60319,sortie-204a26f6-e37a-4780-8461-31834720708f,https://biolit.fr/sorties/sortie-204a26f6-e37a-4780-8461-31834720708f/,Phil,,4/14/2017 0:00,16.0000000,16.0000000,48.838659000000,-3.012459000000,,Île-de-Bréhat - Côtes-d'Armor,47403,observation-204a26f6-e37a-4780-8461-31834720708f-5,https://biolit.fr/observations/observation-204a26f6-e37a-4780-8461-31834720708f-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070118.JPG,,FALSE, +N1,60320,sortie-43b2c6fc-5250-4498-aee6-dcf63aedb158,https://biolit.fr/sorties/sortie-43b2c6fc-5250-4498-aee6-dcf63aedb158/,ChristineSG,,9/23/2017 0:00,11.0000000,17.0000000,44.921921000000,-1.213684000000,,Le Porge,47405,observation-43b2c6fc-5250-4498-aee6-dcf63aedb158,https://biolit.fr/observations/observation-43b2c6fc-5250-4498-aee6-dcf63aedb158/,Calidris alba,Bécasseau sanderling,,https://biolit.fr/wp-content/uploads/2023/07/DSCN07271-ConvertImage-scaled.jpg,,TRUE, +N1,60321,sortie-74db0ecb-c902-447c-a776-c7ad17354fa2,https://biolit.fr/sorties/sortie-74db0ecb-c902-447c-a776-c7ad17354fa2/,Marine,,9/23/2017 0:00,18.0000000,18.0:45,43.090003000000,6.022862000000,,Plage de la garonne,47407,observation-74db0ecb-c902-447c-a776-c7ad17354fa2,https://biolit.fr/observations/observation-74db0ecb-c902-447c-a776-c7ad17354fa2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3147_0-scaled.jpg,,FALSE, +N1,60322,sortie-b2153463-c96e-4748-aa6a-361e7482263d,https://biolit.fr/sorties/sortie-b2153463-c96e-4748-aa6a-361e7482263d/,Marine,,9/23/2017 0:00,18.0:25,18.0000000,43.088991000000,6.026735000000,,Plage de la garonne,47409,observation-b2153463-c96e-4748-aa6a-361e7482263d,https://biolit.fr/observations/observation-b2153463-c96e-4748-aa6a-361e7482263d/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3143_0-scaled.jpg,,FALSE, +N1,60323,sortie-13053675-02aa-441b-9ced-d3c47a463ff0,https://biolit.fr/sorties/sortie-13053675-02aa-441b-9ced-d3c47a463ff0/,Phil,,9/18/2017 0:00,12.0:45,12.0000000,47.791126000000,-4.269248000000,,Léchiagat - Finistère,47411,observation-13053675-02aa-441b-9ced-d3c47a463ff0,https://biolit.fr/observations/observation-13053675-02aa-441b-9ced-d3c47a463ff0/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080210.jpg,,FALSE, +N1,60323,sortie-13053675-02aa-441b-9ced-d3c47a463ff0,https://biolit.fr/sorties/sortie-13053675-02aa-441b-9ced-d3c47a463ff0/,Phil,,9/18/2017 0:00,12.0:45,12.0000000,47.791126000000,-4.269248000000,,Léchiagat - Finistère,47413,observation-13053675-02aa-441b-9ced-d3c47a463ff0-2,https://biolit.fr/observations/observation-13053675-02aa-441b-9ced-d3c47a463ff0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080212.JPG,,FALSE, +N1,60323,sortie-13053675-02aa-441b-9ced-d3c47a463ff0,https://biolit.fr/sorties/sortie-13053675-02aa-441b-9ced-d3c47a463ff0/,Phil,,9/18/2017 0:00,12.0:45,12.0000000,47.791126000000,-4.269248000000,,Léchiagat - Finistère,47415,observation-13053675-02aa-441b-9ced-d3c47a463ff0-3,https://biolit.fr/observations/observation-13053675-02aa-441b-9ced-d3c47a463ff0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080215.JPG,,FALSE, +N1,60323,sortie-13053675-02aa-441b-9ced-d3c47a463ff0,https://biolit.fr/sorties/sortie-13053675-02aa-441b-9ced-d3c47a463ff0/,Phil,,9/18/2017 0:00,12.0:45,12.0000000,47.791126000000,-4.269248000000,,Léchiagat - Finistère,47417,observation-13053675-02aa-441b-9ced-d3c47a463ff0-4,https://biolit.fr/observations/observation-13053675-02aa-441b-9ced-d3c47a463ff0-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080216.JPG,,FALSE, +N1,60323,sortie-13053675-02aa-441b-9ced-d3c47a463ff0,https://biolit.fr/sorties/sortie-13053675-02aa-441b-9ced-d3c47a463ff0/,Phil,,9/18/2017 0:00,12.0:45,12.0000000,47.791126000000,-4.269248000000,,Léchiagat - Finistère,47419,observation-13053675-02aa-441b-9ced-d3c47a463ff0-5,https://biolit.fr/observations/observation-13053675-02aa-441b-9ced-d3c47a463ff0-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080218.JPG,,FALSE, +N1,60324,sortie-f182c978-8615-4097-9ceb-e8eb571fc07d,https://biolit.fr/sorties/sortie-f182c978-8615-4097-9ceb-e8eb571fc07d/,CarpeDiem,,8/13/2017 0:00,17.0000000,18.0000000,42.963058000000,9.347586000000,,"Centuri, petite crique",47421,observation-f182c978-8615-4097-9ceb-e8eb571fc07d,https://biolit.fr/observations/observation-f182c978-8615-4097-9ceb-e8eb571fc07d/,,,,https://biolit.fr/wp-content/uploads/2023/07/anemone-scaled.jpg,,FALSE, +N1,60324,sortie-f182c978-8615-4097-9ceb-e8eb571fc07d,https://biolit.fr/sorties/sortie-f182c978-8615-4097-9ceb-e8eb571fc07d/,CarpeDiem,,8/13/2017 0:00,17.0000000,18.0000000,42.963058000000,9.347586000000,,"Centuri, petite crique",47422,observation-f182c978-8615-4097-9ceb-e8eb571fc07d-2,https://biolit.fr/observations/observation-f182c978-8615-4097-9ceb-e8eb571fc07d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Caulerpa racemosa-scaled.jpg,,FALSE, +N1,60324,sortie-f182c978-8615-4097-9ceb-e8eb571fc07d,https://biolit.fr/sorties/sortie-f182c978-8615-4097-9ceb-e8eb571fc07d/,CarpeDiem,,8/13/2017 0:00,17.0000000,18.0000000,42.963058000000,9.347586000000,,"Centuri, petite crique",47424,observation-f182c978-8615-4097-9ceb-e8eb571fc07d-3,https://biolit.fr/observations/observation-f182c978-8615-4097-9ceb-e8eb571fc07d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crevette-scaled.jpg,,FALSE, +N1,60324,sortie-f182c978-8615-4097-9ceb-e8eb571fc07d,https://biolit.fr/sorties/sortie-f182c978-8615-4097-9ceb-e8eb571fc07d/,CarpeDiem,,8/13/2017 0:00,17.0000000,18.0000000,42.963058000000,9.347586000000,,"Centuri, petite crique",47426,observation-f182c978-8615-4097-9ceb-e8eb571fc07d-4,https://biolit.fr/observations/observation-f182c978-8615-4097-9ceb-e8eb571fc07d-4/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/Gobbie-scaled.jpg,,TRUE, +N1,60324,sortie-f182c978-8615-4097-9ceb-e8eb571fc07d,https://biolit.fr/sorties/sortie-f182c978-8615-4097-9ceb-e8eb571fc07d/,CarpeDiem,,8/13/2017 0:00,17.0000000,18.0000000,42.963058000000,9.347586000000,,"Centuri, petite crique",47428,observation-f182c978-8615-4097-9ceb-e8eb571fc07d-5,https://biolit.fr/observations/observation-f182c978-8615-4097-9ceb-e8eb571fc07d-5/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/patelle.jpg,,TRUE, +N1,60324,sortie-f182c978-8615-4097-9ceb-e8eb571fc07d,https://biolit.fr/sorties/sortie-f182c978-8615-4097-9ceb-e8eb571fc07d/,CarpeDiem,,8/13/2017 0:00,17.0000000,18.0000000,42.963058000000,9.347586000000,,"Centuri, petite crique",47429,observation-f182c978-8615-4097-9ceb-e8eb571fc07d-6,https://biolit.fr/observations/observation-f182c978-8615-4097-9ceb-e8eb571fc07d-6/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/2023/07/poulpe.JPG,,TRUE, +N1,60325,sortie-8b73367b-086f-4ad2-9753-bad057262f06,https://biolit.fr/sorties/sortie-8b73367b-086f-4ad2-9753-bad057262f06/,CarpeDiem,,8/15/2017 0:00,17.0000000,19.0000000,42.963127000000,9.347482000000,,"Centuri, petites criques",47430,observation-8b73367b-086f-4ad2-9753-bad057262f06,https://biolit.fr/observations/observation-8b73367b-086f-4ad2-9753-bad057262f06/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/05/algue-scaled.jpg,,TRUE, +N1,60325,sortie-8b73367b-086f-4ad2-9753-bad057262f06,https://biolit.fr/sorties/sortie-8b73367b-086f-4ad2-9753-bad057262f06/,CarpeDiem,,8/15/2017 0:00,17.0000000,19.0000000,42.963127000000,9.347482000000,,"Centuri, petites criques",47431,observation-8b73367b-086f-4ad2-9753-bad057262f06-2,https://biolit.fr/observations/observation-8b73367b-086f-4ad2-9753-bad057262f06-2/,Aidablennius sphynx,Blennie sphinx,,https://biolit.fr/wp-content/uploads/2023/07/Blennie_0-scaled.jpg,,TRUE, +N1,60325,sortie-8b73367b-086f-4ad2-9753-bad057262f06,https://biolit.fr/sorties/sortie-8b73367b-086f-4ad2-9753-bad057262f06/,CarpeDiem,,8/15/2017 0:00,17.0000000,19.0000000,42.963127000000,9.347482000000,,"Centuri, petites criques",47433,observation-8b73367b-086f-4ad2-9753-bad057262f06-3,https://biolit.fr/observations/observation-8b73367b-086f-4ad2-9753-bad057262f06-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabe 2-scaled.jpg,,FALSE, +N1,60325,sortie-8b73367b-086f-4ad2-9753-bad057262f06,https://biolit.fr/sorties/sortie-8b73367b-086f-4ad2-9753-bad057262f06/,CarpeDiem,,8/15/2017 0:00,17.0000000,19.0000000,42.963127000000,9.347482000000,,"Centuri, petites criques",47434,observation-8b73367b-086f-4ad2-9753-bad057262f06-4,https://biolit.fr/observations/observation-8b73367b-086f-4ad2-9753-bad057262f06-4/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/crabe-scaled.jpg,,TRUE, +N1,60325,sortie-8b73367b-086f-4ad2-9753-bad057262f06,https://biolit.fr/sorties/sortie-8b73367b-086f-4ad2-9753-bad057262f06/,CarpeDiem,,8/15/2017 0:00,17.0000000,19.0000000,42.963127000000,9.347482000000,,"Centuri, petites criques",47435,observation-8b73367b-086f-4ad2-9753-bad057262f06-5,https://biolit.fr/observations/observation-8b73367b-086f-4ad2-9753-bad057262f06-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Dent de cochon-scaled.jpg,,FALSE, +N1,60325,sortie-8b73367b-086f-4ad2-9753-bad057262f06,https://biolit.fr/sorties/sortie-8b73367b-086f-4ad2-9753-bad057262f06/,CarpeDiem,,8/15/2017 0:00,17.0000000,19.0000000,42.963127000000,9.347482000000,,"Centuri, petites criques",47437,observation-8b73367b-086f-4ad2-9753-bad057262f06-6,https://biolit.fr/observations/observation-8b73367b-086f-4ad2-9753-bad057262f06-6/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule toupie-scaled.jpg,,TRUE, +N1,60325,sortie-8b73367b-086f-4ad2-9753-bad057262f06,https://biolit.fr/sorties/sortie-8b73367b-086f-4ad2-9753-bad057262f06/,CarpeDiem,,8/15/2017 0:00,17.0000000,19.0000000,42.963127000000,9.347482000000,,"Centuri, petites criques",47439,observation-8b73367b-086f-4ad2-9753-bad057262f06-7,https://biolit.fr/observations/observation-8b73367b-086f-4ad2-9753-bad057262f06-7/,Ophioderma longicaudum,Ophiure lisse,,https://biolit.fr/wp-content/uploads/2023/07/Ophiure noire-scaled.jpg,,TRUE, +N1,60325,sortie-8b73367b-086f-4ad2-9753-bad057262f06,https://biolit.fr/sorties/sortie-8b73367b-086f-4ad2-9753-bad057262f06/,CarpeDiem,,8/15/2017 0:00,17.0000000,19.0000000,42.963127000000,9.347482000000,,"Centuri, petites criques",47441,observation-8b73367b-086f-4ad2-9753-bad057262f06-8,https://biolit.fr/observations/observation-8b73367b-086f-4ad2-9753-bad057262f06-8/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/oursin_1-scaled.jpg,,TRUE, +N1,60325,sortie-8b73367b-086f-4ad2-9753-bad057262f06,https://biolit.fr/sorties/sortie-8b73367b-086f-4ad2-9753-bad057262f06/,CarpeDiem,,8/15/2017 0:00,17.0000000,19.0000000,42.963127000000,9.347482000000,,"Centuri, petites criques",47443,observation-8b73367b-086f-4ad2-9753-bad057262f06-9,https://biolit.fr/observations/observation-8b73367b-086f-4ad2-9753-bad057262f06-9/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/oursin_2-scaled.jpg,,TRUE, +N1,60325,sortie-8b73367b-086f-4ad2-9753-bad057262f06,https://biolit.fr/sorties/sortie-8b73367b-086f-4ad2-9753-bad057262f06/,CarpeDiem,,8/15/2017 0:00,17.0000000,19.0000000,42.963127000000,9.347482000000,,"Centuri, petites criques",47445,observation-8b73367b-086f-4ad2-9753-bad057262f06-10,https://biolit.fr/observations/observation-8b73367b-086f-4ad2-9753-bad057262f06-10/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/Rocher Facié-scaled.jpg,,TRUE, +N1,60325,sortie-8b73367b-086f-4ad2-9753-bad057262f06,https://biolit.fr/sorties/sortie-8b73367b-086f-4ad2-9753-bad057262f06/,CarpeDiem,,8/15/2017 0:00,17.0000000,19.0000000,42.963127000000,9.347482000000,,"Centuri, petites criques",47447,observation-8b73367b-086f-4ad2-9753-bad057262f06-11,https://biolit.fr/observations/observation-8b73367b-086f-4ad2-9753-bad057262f06-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Rocher facié_2-scaled.jpg,,FALSE, +N1,60325,sortie-8b73367b-086f-4ad2-9753-bad057262f06,https://biolit.fr/sorties/sortie-8b73367b-086f-4ad2-9753-bad057262f06/,CarpeDiem,,8/15/2017 0:00,17.0000000,19.0000000,42.963127000000,9.347482000000,,"Centuri, petites criques",47449,observation-8b73367b-086f-4ad2-9753-bad057262f06-12,https://biolit.fr/observations/observation-8b73367b-086f-4ad2-9753-bad057262f06-12/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/velella velella.PNG,,TRUE, +N1,60326,sortie-f0f1adb8-7571-4967-918e-42ae4b003827,https://biolit.fr/sorties/sortie-f0f1adb8-7571-4967-918e-42ae4b003827/,CarpeDiem,,8/13/2017 0:00,10.0000000,11.0000000,42.963413000000,9.346843000000,,"Centuri, petite plage de galets",47450,observation-f0f1adb8-7571-4967-918e-42ae4b003827,https://biolit.fr/observations/observation-f0f1adb8-7571-4967-918e-42ae4b003827/,,,,https://biolit.fr/wp-content/uploads/2023/07/eponge_0-scaled.jpg,,FALSE, +N1,60326,sortie-f0f1adb8-7571-4967-918e-42ae4b003827,https://biolit.fr/sorties/sortie-f0f1adb8-7571-4967-918e-42ae4b003827/,CarpeDiem,,8/13/2017 0:00,10.0000000,11.0000000,42.963413000000,9.346843000000,,"Centuri, petite plage de galets",47452,observation-f0f1adb8-7571-4967-918e-42ae4b003827-2,https://biolit.fr/observations/observation-f0f1adb8-7571-4967-918e-42ae4b003827-2/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Os de seiche.JPG,,TRUE, +N1,60326,sortie-f0f1adb8-7571-4967-918e-42ae4b003827,https://biolit.fr/sorties/sortie-f0f1adb8-7571-4967-918e-42ae4b003827/,CarpeDiem,,8/13/2017 0:00,10.0000000,11.0000000,42.963413000000,9.346843000000,,"Centuri, petite plage de galets",47453,observation-f0f1adb8-7571-4967-918e-42ae4b003827-3,https://biolit.fr/observations/observation-f0f1adb8-7571-4967-918e-42ae4b003827-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle nurserie-scaled.jpg,,FALSE, +N1,60326,sortie-f0f1adb8-7571-4967-918e-42ae4b003827,https://biolit.fr/sorties/sortie-f0f1adb8-7571-4967-918e-42ae4b003827/,CarpeDiem,,8/13/2017 0:00,10.0000000,11.0000000,42.963413000000,9.346843000000,,"Centuri, petite plage de galets",47455,observation-f0f1adb8-7571-4967-918e-42ae4b003827-4,https://biolit.fr/observations/observation-f0f1adb8-7571-4967-918e-42ae4b003827-4/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/Tomate de Mer-scaled.jpg,,TRUE, +N1,60328,sortie-ed7d65c8-201f-4a04-b603-eeb94d6ab7e6,https://biolit.fr/sorties/sortie-ed7d65c8-201f-4a04-b603-eeb94d6ab7e6/,CarpeDiem,,08/12/2017,11.0000000,11.0000000,42.963483000000,9.346014000000,,"Centuri, rochers face ilot capense",47462,observation-ed7d65c8-201f-4a04-b603-eeb94d6ab7e6,https://biolit.fr/observations/observation-ed7d65c8-201f-4a04-b603-eeb94d6ab7e6/,,,,https://biolit.fr/wp-content/uploads/2023/07/meduse-scaled.jpg,,FALSE, +N1,60328,sortie-ed7d65c8-201f-4a04-b603-eeb94d6ab7e6,https://biolit.fr/sorties/sortie-ed7d65c8-201f-4a04-b603-eeb94d6ab7e6/,CarpeDiem,,08/12/2017,11.0000000,11.0000000,42.963483000000,9.346014000000,,"Centuri, rochers face ilot capense",47463,observation-ed7d65c8-201f-4a04-b603-eeb94d6ab7e6-2,https://biolit.fr/observations/observation-ed7d65c8-201f-4a04-b603-eeb94d6ab7e6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algue_0-scaled.jpg,,FALSE, +N1,60329,sortie-4835ed0d-94d2-4f58-9feb-a0dbe937efe5,https://biolit.fr/sorties/sortie-4835ed0d-94d2-4f58-9feb-a0dbe937efe5/,Phil,,9/18/2017 0:00,12.0:25,12.0000000,47.787342000000,-4.27027000000,,Léchiagat - Finistère,47464,observation-4835ed0d-94d2-4f58-9feb-a0dbe937efe5,https://biolit.fr/observations/observation-4835ed0d-94d2-4f58-9feb-a0dbe937efe5/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1080172_1.JPG,,TRUE, +N1,60329,sortie-4835ed0d-94d2-4f58-9feb-a0dbe937efe5,https://biolit.fr/sorties/sortie-4835ed0d-94d2-4f58-9feb-a0dbe937efe5/,Phil,,9/18/2017 0:00,12.0:25,12.0000000,47.787342000000,-4.27027000000,,Léchiagat - Finistère,47466,observation-4835ed0d-94d2-4f58-9feb-a0dbe937efe5-2,https://biolit.fr/observations/observation-4835ed0d-94d2-4f58-9feb-a0dbe937efe5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080170_0.JPG,,FALSE, +N1,60329,sortie-4835ed0d-94d2-4f58-9feb-a0dbe937efe5,https://biolit.fr/sorties/sortie-4835ed0d-94d2-4f58-9feb-a0dbe937efe5/,Phil,,9/18/2017 0:00,12.0:25,12.0000000,47.787342000000,-4.27027000000,,Léchiagat - Finistère,47468,observation-4835ed0d-94d2-4f58-9feb-a0dbe937efe5-3,https://biolit.fr/observations/observation-4835ed0d-94d2-4f58-9feb-a0dbe937efe5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080168.JPG,,FALSE, +N1,60330,sortie-7f3bf924-e5f4-412b-b367-f1e112a98360,https://biolit.fr/sorties/sortie-7f3bf924-e5f4-412b-b367-f1e112a98360/,SYLVIE CACCIA,,9/21/2017 0:00,10.0000000,12.0000000,43.214965000000,5.343147000000,,Anse de la Maronaise,47470,observation-7f3bf924-e5f4-412b-b367-f1e112a98360,https://biolit.fr/observations/observation-7f3bf924-e5f4-412b-b367-f1e112a98360/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0710_0-scaled.jpg,,FALSE, +N1,60330,sortie-7f3bf924-e5f4-412b-b367-f1e112a98360,https://biolit.fr/sorties/sortie-7f3bf924-e5f4-412b-b367-f1e112a98360/,SYLVIE CACCIA,,9/21/2017 0:00,10.0000000,12.0000000,43.214965000000,5.343147000000,,Anse de la Maronaise,47472,observation-7f3bf924-e5f4-412b-b367-f1e112a98360-2,https://biolit.fr/observations/observation-7f3bf924-e5f4-412b-b367-f1e112a98360-2/,Lithophyllum byssoides,Algue calcaire des trottoirs,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0712-scaled.jpg,,TRUE, +N1,60330,sortie-7f3bf924-e5f4-412b-b367-f1e112a98360,https://biolit.fr/sorties/sortie-7f3bf924-e5f4-412b-b367-f1e112a98360/,SYLVIE CACCIA,,9/21/2017 0:00,10.0000000,12.0000000,43.214965000000,5.343147000000,,Anse de la Maronaise,47474,observation-7f3bf924-e5f4-412b-b367-f1e112a98360-3,https://biolit.fr/observations/observation-7f3bf924-e5f4-412b-b367-f1e112a98360-3/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0711-scaled.jpg,,TRUE, +N1,60330,sortie-7f3bf924-e5f4-412b-b367-f1e112a98360,https://biolit.fr/sorties/sortie-7f3bf924-e5f4-412b-b367-f1e112a98360/,SYLVIE CACCIA,,9/21/2017 0:00,10.0000000,12.0000000,43.214965000000,5.343147000000,,Anse de la Maronaise,47476,observation-7f3bf924-e5f4-412b-b367-f1e112a98360-4,https://biolit.fr/observations/observation-7f3bf924-e5f4-412b-b367-f1e112a98360-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0691-scaled.jpg,,FALSE, +N1,60330,sortie-7f3bf924-e5f4-412b-b367-f1e112a98360,https://biolit.fr/sorties/sortie-7f3bf924-e5f4-412b-b367-f1e112a98360/,SYLVIE CACCIA,,9/21/2017 0:00,10.0000000,12.0000000,43.214965000000,5.343147000000,,Anse de la Maronaise,47478,observation-7f3bf924-e5f4-412b-b367-f1e112a98360-5,https://biolit.fr/observations/observation-7f3bf924-e5f4-412b-b367-f1e112a98360-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0690-scaled.jpg,,FALSE, +N1,60330,sortie-7f3bf924-e5f4-412b-b367-f1e112a98360,https://biolit.fr/sorties/sortie-7f3bf924-e5f4-412b-b367-f1e112a98360/,SYLVIE CACCIA,,9/21/2017 0:00,10.0000000,12.0000000,43.214965000000,5.343147000000,,Anse de la Maronaise,47480,observation-7f3bf924-e5f4-412b-b367-f1e112a98360-6,https://biolit.fr/observations/observation-7f3bf924-e5f4-412b-b367-f1e112a98360-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0677-scaled.jpg,,FALSE, +N1,60330,sortie-7f3bf924-e5f4-412b-b367-f1e112a98360,https://biolit.fr/sorties/sortie-7f3bf924-e5f4-412b-b367-f1e112a98360/,SYLVIE CACCIA,,9/21/2017 0:00,10.0000000,12.0000000,43.214965000000,5.343147000000,,Anse de la Maronaise,47482,observation-7f3bf924-e5f4-412b-b367-f1e112a98360-7,https://biolit.fr/observations/observation-7f3bf924-e5f4-412b-b367-f1e112a98360-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0679-scaled.jpg,,FALSE, +N1,60330,sortie-7f3bf924-e5f4-412b-b367-f1e112a98360,https://biolit.fr/sorties/sortie-7f3bf924-e5f4-412b-b367-f1e112a98360/,SYLVIE CACCIA,,9/21/2017 0:00,10.0000000,12.0000000,43.214965000000,5.343147000000,,Anse de la Maronaise,47484,observation-7f3bf924-e5f4-412b-b367-f1e112a98360-8,https://biolit.fr/observations/observation-7f3bf924-e5f4-412b-b367-f1e112a98360-8/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0725-scaled.jpg,,TRUE, +N1,60331,sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed,https://biolit.fr/sorties/sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed/,Gisèle,,9/21/2017 0:00,10.0000000,14.0000000,43.214979000000,5.342962000000,,Anse de la Maronaise,47486,observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed,https://biolit.fr/observations/observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2925-scaled.jpg,,FALSE, +N1,60331,sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed,https://biolit.fr/sorties/sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed/,Gisèle,,9/21/2017 0:00,10.0000000,14.0000000,43.214979000000,5.342962000000,,Anse de la Maronaise,47488,observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-2,https://biolit.fr/observations/observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2924-scaled.jpg,,FALSE, +N1,60331,sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed,https://biolit.fr/sorties/sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed/,Gisèle,,9/21/2017 0:00,10.0000000,14.0000000,43.214979000000,5.342962000000,,Anse de la Maronaise,47490,observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-3,https://biolit.fr/observations/observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2926-scaled.jpg,,FALSE, +N1,60331,sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed,https://biolit.fr/sorties/sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed/,Gisèle,,9/21/2017 0:00,10.0000000,14.0000000,43.214979000000,5.342962000000,,Anse de la Maronaise,47492,observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-4,https://biolit.fr/observations/observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-4/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2928-scaled.jpg,,TRUE, +N1,60331,sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed,https://biolit.fr/sorties/sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed/,Gisèle,,9/21/2017 0:00,10.0000000,14.0000000,43.214979000000,5.342962000000,,Anse de la Maronaise,47494,observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-5,https://biolit.fr/observations/observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-5/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2935-scaled.jpg,,TRUE, +N1,60331,sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed,https://biolit.fr/sorties/sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed/,Gisèle,,9/21/2017 0:00,10.0000000,14.0000000,43.214979000000,5.342962000000,,Anse de la Maronaise,47496,observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-6,https://biolit.fr/observations/observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2937-scaled.jpg,,FALSE, +N1,60331,sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed,https://biolit.fr/sorties/sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed/,Gisèle,,9/21/2017 0:00,10.0000000,14.0000000,43.214979000000,5.342962000000,,Anse de la Maronaise,47498,observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-7,https://biolit.fr/observations/observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-7/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2940-scaled.jpg,,TRUE, +N1,60331,sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed,https://biolit.fr/sorties/sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed/,Gisèle,,9/21/2017 0:00,10.0000000,14.0000000,43.214979000000,5.342962000000,,Anse de la Maronaise,47500,observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-8,https://biolit.fr/observations/observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-8/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2946-scaled.jpg,,TRUE, +N1,60331,sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed,https://biolit.fr/sorties/sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed/,Gisèle,,9/21/2017 0:00,10.0000000,14.0000000,43.214979000000,5.342962000000,,Anse de la Maronaise,47502,observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-9,https://biolit.fr/observations/observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2953-scaled.jpg,,FALSE, +N1,60331,sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed,https://biolit.fr/sorties/sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed/,Gisèle,,9/21/2017 0:00,10.0000000,14.0000000,43.214979000000,5.342962000000,,Anse de la Maronaise,47504,observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-10,https://biolit.fr/observations/observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2954-scaled.jpg,,FALSE, +N1,60331,sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed,https://biolit.fr/sorties/sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed/,Gisèle,,9/21/2017 0:00,10.0000000,14.0000000,43.214979000000,5.342962000000,,Anse de la Maronaise,47506,observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-11,https://biolit.fr/observations/observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2955-scaled.jpg,,FALSE, +N1,60331,sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed,https://biolit.fr/sorties/sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed/,Gisèle,,9/21/2017 0:00,10.0000000,14.0000000,43.214979000000,5.342962000000,,Anse de la Maronaise,47508,observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-12,https://biolit.fr/observations/observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2958-scaled.jpg,,FALSE, +N1,60331,sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed,https://biolit.fr/sorties/sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed/,Gisèle,,9/21/2017 0:00,10.0000000,14.0000000,43.214979000000,5.342962000000,,Anse de la Maronaise,47510,observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-13,https://biolit.fr/observations/observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2965_1-scaled.jpg,,FALSE, +N1,60331,sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed,https://biolit.fr/sorties/sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed/,Gisèle,,9/21/2017 0:00,10.0000000,14.0000000,43.214979000000,5.342962000000,,Anse de la Maronaise,47512,observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-14,https://biolit.fr/observations/observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2972-scaled.jpg,,FALSE, +N1,60331,sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed,https://biolit.fr/sorties/sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed/,Gisèle,,9/21/2017 0:00,10.0000000,14.0000000,43.214979000000,5.342962000000,,Anse de la Maronaise,47513,observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-15,https://biolit.fr/observations/observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2973-scaled.jpg,,FALSE, +N1,60332,sortie-e656e6f5-1422-4252-8860-97ea458fc627,https://biolit.fr/sorties/sortie-e656e6f5-1422-4252-8860-97ea458fc627/,Vincent Courtade,,9/21/2017 0:00,10.0000000,12.0000000,43.214996000000,5.342922000000,,Anse de la maronnaise,47515,observation-e656e6f5-1422-4252-8860-97ea458fc627,https://biolit.fr/observations/observation-e656e6f5-1422-4252-8860-97ea458fc627/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0013[1]-rotated.jpg,,FALSE, +N1,60332,sortie-e656e6f5-1422-4252-8860-97ea458fc627,https://biolit.fr/sorties/sortie-e656e6f5-1422-4252-8860-97ea458fc627/,Vincent Courtade,,9/21/2017 0:00,10.0000000,12.0000000,43.214996000000,5.342922000000,,Anse de la maronnaise,47517,observation-e656e6f5-1422-4252-8860-97ea458fc627-2,https://biolit.fr/observations/observation-e656e6f5-1422-4252-8860-97ea458fc627-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0014[1]-rotated.jpg,,FALSE, +N1,60332,sortie-e656e6f5-1422-4252-8860-97ea458fc627,https://biolit.fr/sorties/sortie-e656e6f5-1422-4252-8860-97ea458fc627/,Vincent Courtade,,9/21/2017 0:00,10.0000000,12.0000000,43.214996000000,5.342922000000,,Anse de la maronnaise,47519,observation-e656e6f5-1422-4252-8860-97ea458fc627-3,https://biolit.fr/observations/observation-e656e6f5-1422-4252-8860-97ea458fc627-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0015[1]-rotated.jpg,,FALSE, +N1,60332,sortie-e656e6f5-1422-4252-8860-97ea458fc627,https://biolit.fr/sorties/sortie-e656e6f5-1422-4252-8860-97ea458fc627/,Vincent Courtade,,9/21/2017 0:00,10.0000000,12.0000000,43.214996000000,5.342922000000,,Anse de la maronnaise,47521,observation-e656e6f5-1422-4252-8860-97ea458fc627-4,https://biolit.fr/observations/observation-e656e6f5-1422-4252-8860-97ea458fc627-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0036[1]-scaled.jpg,,FALSE, +N1,60332,sortie-e656e6f5-1422-4252-8860-97ea458fc627,https://biolit.fr/sorties/sortie-e656e6f5-1422-4252-8860-97ea458fc627/,Vincent Courtade,,9/21/2017 0:00,10.0000000,12.0000000,43.214996000000,5.342922000000,,Anse de la maronnaise,47523,observation-e656e6f5-1422-4252-8860-97ea458fc627-5,https://biolit.fr/observations/observation-e656e6f5-1422-4252-8860-97ea458fc627-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0027[1]-scaled.jpg,,FALSE, +N1,60333,sortie-bd78a1e9-34fe-40ef-9170-fd8ef741d863,https://biolit.fr/sorties/sortie-bd78a1e9-34fe-40ef-9170-fd8ef741d863/,dominique lafourcade,,9/21/2017 0:00,14.0000000,16.0000000,43.214771000000,5.342863000000,,anse de la maronaise,47525,observation-bd78a1e9-34fe-40ef-9170-fd8ef741d863,https://biolit.fr/observations/observation-bd78a1e9-34fe-40ef-9170-fd8ef741d863/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1472[1]-scaled.jpg,,FALSE, +N1,60333,sortie-bd78a1e9-34fe-40ef-9170-fd8ef741d863,https://biolit.fr/sorties/sortie-bd78a1e9-34fe-40ef-9170-fd8ef741d863/,dominique lafourcade,,9/21/2017 0:00,14.0000000,16.0000000,43.214771000000,5.342863000000,,anse de la maronaise,47527,observation-bd78a1e9-34fe-40ef-9170-fd8ef741d863-2,https://biolit.fr/observations/observation-bd78a1e9-34fe-40ef-9170-fd8ef741d863-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1470[1]-scaled.jpg,,FALSE, +N1,60333,sortie-bd78a1e9-34fe-40ef-9170-fd8ef741d863,https://biolit.fr/sorties/sortie-bd78a1e9-34fe-40ef-9170-fd8ef741d863/,dominique lafourcade,,9/21/2017 0:00,14.0000000,16.0000000,43.214771000000,5.342863000000,,anse de la maronaise,47529,observation-bd78a1e9-34fe-40ef-9170-fd8ef741d863-3,https://biolit.fr/observations/observation-bd78a1e9-34fe-40ef-9170-fd8ef741d863-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1461[1]-scaled.jpg,,FALSE, +N1,60334,sortie-5ef12fc9-407a-48e2-a4d4-cf1823ea9617,https://biolit.fr/sorties/sortie-5ef12fc9-407a-48e2-a4d4-cf1823ea9617/,dominique lafourcade,,9/21/2017 0:00,11.0000000,12.0000000,43.214730000000,5.343051000000,,anse de la Maronaise,47531,observation-5ef12fc9-407a-48e2-a4d4-cf1823ea9617,https://biolit.fr/observations/observation-5ef12fc9-407a-48e2-a4d4-cf1823ea9617/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0473[1]-scaled.jpg,,FALSE, +N1,60334,sortie-5ef12fc9-407a-48e2-a4d4-cf1823ea9617,https://biolit.fr/sorties/sortie-5ef12fc9-407a-48e2-a4d4-cf1823ea9617/,dominique lafourcade,,9/21/2017 0:00,11.0000000,12.0000000,43.214730000000,5.343051000000,,anse de la Maronaise,47533,observation-5ef12fc9-407a-48e2-a4d4-cf1823ea9617-2,https://biolit.fr/observations/observation-5ef12fc9-407a-48e2-a4d4-cf1823ea9617-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0472[1]-scaled.jpg,,FALSE, +N1,60334,sortie-5ef12fc9-407a-48e2-a4d4-cf1823ea9617,https://biolit.fr/sorties/sortie-5ef12fc9-407a-48e2-a4d4-cf1823ea9617/,dominique lafourcade,,9/21/2017 0:00,11.0000000,12.0000000,43.214730000000,5.343051000000,,anse de la Maronaise,47535,observation-5ef12fc9-407a-48e2-a4d4-cf1823ea9617-3,https://biolit.fr/observations/observation-5ef12fc9-407a-48e2-a4d4-cf1823ea9617-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0474[1]-scaled.jpg,,FALSE, +N1,60334,sortie-5ef12fc9-407a-48e2-a4d4-cf1823ea9617,https://biolit.fr/sorties/sortie-5ef12fc9-407a-48e2-a4d4-cf1823ea9617/,dominique lafourcade,,9/21/2017 0:00,11.0000000,12.0000000,43.214730000000,5.343051000000,,anse de la Maronaise,47537,observation-5ef12fc9-407a-48e2-a4d4-cf1823ea9617-4,https://biolit.fr/observations/observation-5ef12fc9-407a-48e2-a4d4-cf1823ea9617-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0484[1]-scaled.jpg,,FALSE, +N1,60334,sortie-5ef12fc9-407a-48e2-a4d4-cf1823ea9617,https://biolit.fr/sorties/sortie-5ef12fc9-407a-48e2-a4d4-cf1823ea9617/,dominique lafourcade,,9/21/2017 0:00,11.0000000,12.0000000,43.214730000000,5.343051000000,,anse de la Maronaise,47539,observation-5ef12fc9-407a-48e2-a4d4-cf1823ea9617-5,https://biolit.fr/observations/observation-5ef12fc9-407a-48e2-a4d4-cf1823ea9617-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0490[1]-scaled.jpg,,FALSE, +N1,60335,sortie-85a2b83b-9358-4112-860f-5b46b2966f29,https://biolit.fr/sorties/sortie-85a2b83b-9358-4112-860f-5b46b2966f29/,Phil,,09/02/2017,13.0:15,13.0000000,48.09205600000,-4.298349000000,,Douarnenez - Finistère,47541,observation-85a2b83b-9358-4112-860f-5b46b2966f29,https://biolit.fr/observations/observation-85a2b83b-9358-4112-860f-5b46b2966f29/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1080075.JPG,,TRUE, +N1,60335,sortie-85a2b83b-9358-4112-860f-5b46b2966f29,https://biolit.fr/sorties/sortie-85a2b83b-9358-4112-860f-5b46b2966f29/,Phil,,09/02/2017,13.0:15,13.0000000,48.09205600000,-4.298349000000,,Douarnenez - Finistère,47543,observation-85a2b83b-9358-4112-860f-5b46b2966f29-2,https://biolit.fr/observations/observation-85a2b83b-9358-4112-860f-5b46b2966f29-2/,Macomangulus tenuis,Telline-papillon,,https://biolit.fr/wp-content/uploads/2023/07/P1080077.JPG,,TRUE, +N1,60335,sortie-85a2b83b-9358-4112-860f-5b46b2966f29,https://biolit.fr/sorties/sortie-85a2b83b-9358-4112-860f-5b46b2966f29/,Phil,,09/02/2017,13.0:15,13.0000000,48.09205600000,-4.298349000000,,Douarnenez - Finistère,47545,observation-85a2b83b-9358-4112-860f-5b46b2966f29-3,https://biolit.fr/observations/observation-85a2b83b-9358-4112-860f-5b46b2966f29-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1080080.JPG,,TRUE, +N1,60335,sortie-85a2b83b-9358-4112-860f-5b46b2966f29,https://biolit.fr/sorties/sortie-85a2b83b-9358-4112-860f-5b46b2966f29/,Phil,,09/02/2017,13.0:15,13.0000000,48.09205600000,-4.298349000000,,Douarnenez - Finistère,47547,observation-85a2b83b-9358-4112-860f-5b46b2966f29-4,https://biolit.fr/observations/observation-85a2b83b-9358-4112-860f-5b46b2966f29-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080082.JPG,,FALSE, +N1,60335,sortie-85a2b83b-9358-4112-860f-5b46b2966f29,https://biolit.fr/sorties/sortie-85a2b83b-9358-4112-860f-5b46b2966f29/,Phil,,09/02/2017,13.0:15,13.0000000,48.09205600000,-4.298349000000,,Douarnenez - Finistère,47549,observation-85a2b83b-9358-4112-860f-5b46b2966f29-5,https://biolit.fr/observations/observation-85a2b83b-9358-4112-860f-5b46b2966f29-5/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/P1080083.JPG,,TRUE, +N1,60336,sortie-db94d384-6012-4a45-8519-7500de45bcb4,https://biolit.fr/sorties/sortie-db94d384-6012-4a45-8519-7500de45bcb4/,Phil,,9/18/2017 0:00,12.0000000,12.0:25,47.788422000000,-4.268798000000,,Léchiagat - Finistère,47551,observation-db94d384-6012-4a45-8519-7500de45bcb4,https://biolit.fr/observations/observation-db94d384-6012-4a45-8519-7500de45bcb4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080159.JPG,,FALSE, +N1,60336,sortie-db94d384-6012-4a45-8519-7500de45bcb4,https://biolit.fr/sorties/sortie-db94d384-6012-4a45-8519-7500de45bcb4/,Phil,,9/18/2017 0:00,12.0000000,12.0:25,47.788422000000,-4.268798000000,,Léchiagat - Finistère,47553,observation-db94d384-6012-4a45-8519-7500de45bcb4-2,https://biolit.fr/observations/observation-db94d384-6012-4a45-8519-7500de45bcb4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080153.JPG,,FALSE, +N1,60336,sortie-db94d384-6012-4a45-8519-7500de45bcb4,https://biolit.fr/sorties/sortie-db94d384-6012-4a45-8519-7500de45bcb4/,Phil,,9/18/2017 0:00,12.0000000,12.0:25,47.788422000000,-4.268798000000,,Léchiagat - Finistère,47555,observation-db94d384-6012-4a45-8519-7500de45bcb4-3,https://biolit.fr/observations/observation-db94d384-6012-4a45-8519-7500de45bcb4-3/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/P1080160.JPG,,TRUE, +N1,60336,sortie-db94d384-6012-4a45-8519-7500de45bcb4,https://biolit.fr/sorties/sortie-db94d384-6012-4a45-8519-7500de45bcb4/,Phil,,9/18/2017 0:00,12.0000000,12.0:25,47.788422000000,-4.268798000000,,Léchiagat - Finistère,47557,observation-db94d384-6012-4a45-8519-7500de45bcb4-4,https://biolit.fr/observations/observation-db94d384-6012-4a45-8519-7500de45bcb4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080155.JPG,,FALSE, +N1,60336,sortie-db94d384-6012-4a45-8519-7500de45bcb4,https://biolit.fr/sorties/sortie-db94d384-6012-4a45-8519-7500de45bcb4/,Phil,,9/18/2017 0:00,12.0000000,12.0:25,47.788422000000,-4.268798000000,,Léchiagat - Finistère,47559,observation-db94d384-6012-4a45-8519-7500de45bcb4-5,https://biolit.fr/observations/observation-db94d384-6012-4a45-8519-7500de45bcb4-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080164.JPG,,FALSE, +N1,60337,sortie-cc120eca-5ae2-445c-b4fd-b4804db1fcda,https://biolit.fr/sorties/sortie-cc120eca-5ae2-445c-b4fd-b4804db1fcda/,Céline,,9/21/2017 0:00,10.0000000,12.0000000,43.225318000000,5.352800000000,,Anse de la maronnaise,47561,observation-cc120eca-5ae2-445c-b4fd-b4804db1fcda,https://biolit.fr/observations/observation-cc120eca-5ae2-445c-b4fd-b4804db1fcda/,,,,https://biolit.fr/wp-content/uploads/2023/07/image_99-scaled.jpg,,FALSE, +N1,60338,sortie-e1cde345-8fa5-4b12-8489-208ce3cf0cb4,https://biolit.fr/sorties/sortie-e1cde345-8fa5-4b12-8489-208ce3cf0cb4/,Céline,,9/21/2017 0:00,10.0000000,12.0000000,43.225318000000,5.352800000000,,Anse de la maronnaise,47563,observation-e1cde345-8fa5-4b12-8489-208ce3cf0cb4,https://biolit.fr/observations/observation-e1cde345-8fa5-4b12-8489-208ce3cf0cb4/,,,,https://biolit.fr/wp-content/uploads/2023/07/image_99-scaled.jpg,,FALSE, +N1,60339,sortie-9f3de4ff-2b42-4216-9415-eefed4bd93a6,https://biolit.fr/sorties/sortie-9f3de4ff-2b42-4216-9415-eefed4bd93a6/,Phil,,9/18/2017 0:00,12.0000000,12.0:35,47.787634000000,-4.270248000000,,Léchiagat - Finistère,47564,observation-9f3de4ff-2b42-4216-9415-eefed4bd93a6,https://biolit.fr/observations/observation-9f3de4ff-2b42-4216-9415-eefed4bd93a6/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080177.JPG,,TRUE, +N1,60339,sortie-9f3de4ff-2b42-4216-9415-eefed4bd93a6,https://biolit.fr/sorties/sortie-9f3de4ff-2b42-4216-9415-eefed4bd93a6/,Phil,,9/18/2017 0:00,12.0000000,12.0:35,47.787634000000,-4.270248000000,,Léchiagat - Finistère,47566,observation-9f3de4ff-2b42-4216-9415-eefed4bd93a6-2,https://biolit.fr/observations/observation-9f3de4ff-2b42-4216-9415-eefed4bd93a6-2/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1080174.JPG,,TRUE, +N1,60340,sortie-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9,https://biolit.fr/sorties/sortie-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9/,Phil,,9/18/2017 0:00,12.0000000,12.0:45,47.790689000000,-4.268375000000,,Léchiagat - Finistère,47568,observation-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9,https://biolit.fr/observations/observation-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080188.JPG,,FALSE, +N1,60340,sortie-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9,https://biolit.fr/sorties/sortie-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9/,Phil,,9/18/2017 0:00,12.0000000,12.0:45,47.790689000000,-4.268375000000,,Léchiagat - Finistère,47570,observation-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9-2,https://biolit.fr/observations/observation-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080205.JPG,,FALSE, +N1,60340,sortie-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9,https://biolit.fr/sorties/sortie-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9/,Phil,,9/18/2017 0:00,12.0000000,12.0:45,47.790689000000,-4.268375000000,,Léchiagat - Finistère,47572,observation-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9-3,https://biolit.fr/observations/observation-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080208.JPG,,FALSE, +N1,60340,sortie-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9,https://biolit.fr/sorties/sortie-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9/,Phil,,9/18/2017 0:00,12.0000000,12.0:45,47.790689000000,-4.268375000000,,Léchiagat - Finistère,47574,observation-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9-4,https://biolit.fr/observations/observation-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080190.JPG,,FALSE, +N1,60340,sortie-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9,https://biolit.fr/sorties/sortie-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9/,Phil,,9/18/2017 0:00,12.0000000,12.0:45,47.790689000000,-4.268375000000,,Léchiagat - Finistère,47576,observation-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9-5,https://biolit.fr/observations/observation-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080199.JPG,,FALSE, +N1,60341,sortie-054435fc-acaf-4c7e-a4df-878dbbc87762,https://biolit.fr/sorties/sortie-054435fc-acaf-4c7e-a4df-878dbbc87762/,Phil,,9/19/2017 0:00,13.0:55,14.0000000,48.06061400000,-4.671779000000,, Cléden-Cap-Sizun - Finistère,47578,observation-054435fc-acaf-4c7e-a4df-878dbbc87762,https://biolit.fr/observations/observation-054435fc-acaf-4c7e-a4df-878dbbc87762/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/P1080509.JPG,,TRUE, +N1,60341,sortie-054435fc-acaf-4c7e-a4df-878dbbc87762,https://biolit.fr/sorties/sortie-054435fc-acaf-4c7e-a4df-878dbbc87762/,Phil,,9/19/2017 0:00,13.0:55,14.0000000,48.06061400000,-4.671779000000,, Cléden-Cap-Sizun - Finistère,47580,observation-054435fc-acaf-4c7e-a4df-878dbbc87762-2,https://biolit.fr/observations/observation-054435fc-acaf-4c7e-a4df-878dbbc87762-2/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/P1080404.JPG,,TRUE, +N1,60342,sortie-5fc3659d-5049-4f44-b6f5-0d86132a416b,https://biolit.fr/sorties/sortie-5fc3659d-5049-4f44-b6f5-0d86132a416b/,Phil,,09/02/2017,13.000005,13.0000000,48.093318000000,-4.298061000000,,Douarnenez - Finistère,47584,observation-5fc3659d-5049-4f44-b6f5-0d86132a416b,https://biolit.fr/observations/observation-5fc3659d-5049-4f44-b6f5-0d86132a416b/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080066_1.JPG,,FALSE, +N1,60342,sortie-5fc3659d-5049-4f44-b6f5-0d86132a416b,https://biolit.fr/sorties/sortie-5fc3659d-5049-4f44-b6f5-0d86132a416b/,Phil,,09/02/2017,13.000005,13.0000000,48.093318000000,-4.298061000000,,Douarnenez - Finistère,47586,observation-5fc3659d-5049-4f44-b6f5-0d86132a416b-2,https://biolit.fr/observations/observation-5fc3659d-5049-4f44-b6f5-0d86132a416b-2/,Pharus legumen,Couteau-gousse,,https://biolit.fr/wp-content/uploads/2023/07/P1080067_0.JPG,,TRUE, +N1,60342,sortie-5fc3659d-5049-4f44-b6f5-0d86132a416b,https://biolit.fr/sorties/sortie-5fc3659d-5049-4f44-b6f5-0d86132a416b/,Phil,,09/02/2017,13.000005,13.0000000,48.093318000000,-4.298061000000,,Douarnenez - Finistère,47588,observation-5fc3659d-5049-4f44-b6f5-0d86132a416b-3,https://biolit.fr/observations/observation-5fc3659d-5049-4f44-b6f5-0d86132a416b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080068_0.JPG,,FALSE, +N1,60342,sortie-5fc3659d-5049-4f44-b6f5-0d86132a416b,https://biolit.fr/sorties/sortie-5fc3659d-5049-4f44-b6f5-0d86132a416b/,Phil,,09/02/2017,13.000005,13.0000000,48.093318000000,-4.298061000000,,Douarnenez - Finistère,47590,observation-5fc3659d-5049-4f44-b6f5-0d86132a416b-4,https://biolit.fr/observations/observation-5fc3659d-5049-4f44-b6f5-0d86132a416b-4/,Pharus legumen,Couteau-gousse,,https://biolit.fr/wp-content/uploads/2023/07/P1080071.JPG,,TRUE, +N1,60343,sortie-dd528ab0-b054-43b9-8a7f-2a0e50613b28,https://biolit.fr/sorties/sortie-dd528ab0-b054-43b9-8a7f-2a0e50613b28/,Phil,,09/02/2017,13.0000000,13.0:45,48.105758000000,-4.285394000000,,Kerlaz - Finistère,47592,observation-dd528ab0-b054-43b9-8a7f-2a0e50613b28,https://biolit.fr/observations/observation-dd528ab0-b054-43b9-8a7f-2a0e50613b28/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080107.JPG,,FALSE, +N1,60343,sortie-dd528ab0-b054-43b9-8a7f-2a0e50613b28,https://biolit.fr/sorties/sortie-dd528ab0-b054-43b9-8a7f-2a0e50613b28/,Phil,,09/02/2017,13.0000000,13.0:45,48.105758000000,-4.285394000000,,Kerlaz - Finistère,47594,observation-dd528ab0-b054-43b9-8a7f-2a0e50613b28-2,https://biolit.fr/observations/observation-dd528ab0-b054-43b9-8a7f-2a0e50613b28-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080112.JPG,,FALSE, +N1,60344,sortie-43b772a6-0ede-42ce-9b15-e581e5897260,https://biolit.fr/sorties/sortie-43b772a6-0ede-42ce-9b15-e581e5897260/,Nicolas,,8/24/2017 0:00,11.0000000,13.0000000,46.053202000000,-1.090606000000,,Les boucholeurs,47596,observation-43b772a6-0ede-42ce-9b15-e581e5897260,https://biolit.fr/observations/observation-43b772a6-0ede-42ce-9b15-e581e5897260/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170824_135252-scaled.jpg,,TRUE, +N1,60345,sortie-c26a3b9a-8ed6-4dea-9549-e9a86079087e,https://biolit.fr/sorties/sortie-c26a3b9a-8ed6-4dea-9549-e9a86079087e/,Phil,,9/19/2017 0:00,13.0:45,13.0000000,48.060501000000,-4.671661000000,,Cléden-Cap-Sizun - Finistère,47598,observation-c26a3b9a-8ed6-4dea-9549-e9a86079087e,https://biolit.fr/observations/observation-c26a3b9a-8ed6-4dea-9549-e9a86079087e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080392.JPG,,FALSE, +N1,60345,sortie-c26a3b9a-8ed6-4dea-9549-e9a86079087e,https://biolit.fr/sorties/sortie-c26a3b9a-8ed6-4dea-9549-e9a86079087e/,Phil,,9/19/2017 0:00,13.0:45,13.0000000,48.060501000000,-4.671661000000,,Cléden-Cap-Sizun - Finistère,47600,observation-c26a3b9a-8ed6-4dea-9549-e9a86079087e-2,https://biolit.fr/observations/observation-c26a3b9a-8ed6-4dea-9549-e9a86079087e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080393.JPG,,FALSE, +N1,60346,sortie-0ed3481a-b5e1-4cf7-b96f-bfafcee46fc8,https://biolit.fr/sorties/sortie-0ed3481a-b5e1-4cf7-b96f-bfafcee46fc8/,Phil,,9/19/2017 0:00,12.0000000,12.0000000,48.049702000000,-4.708124000000,,Cléden-Cap-Sizun - Finistère,47602,observation-0ed3481a-b5e1-4cf7-b96f-bfafcee46fc8,https://biolit.fr/observations/observation-0ed3481a-b5e1-4cf7-b96f-bfafcee46fc8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080257.JPG,,FALSE, +N1,60346,sortie-0ed3481a-b5e1-4cf7-b96f-bfafcee46fc8,https://biolit.fr/sorties/sortie-0ed3481a-b5e1-4cf7-b96f-bfafcee46fc8/,Phil,,9/19/2017 0:00,12.0000000,12.0000000,48.049702000000,-4.708124000000,,Cléden-Cap-Sizun - Finistère,47604,observation-0ed3481a-b5e1-4cf7-b96f-bfafcee46fc8-2,https://biolit.fr/observations/observation-0ed3481a-b5e1-4cf7-b96f-bfafcee46fc8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080258.JPG,,FALSE, +N1,60346,sortie-0ed3481a-b5e1-4cf7-b96f-bfafcee46fc8,https://biolit.fr/sorties/sortie-0ed3481a-b5e1-4cf7-b96f-bfafcee46fc8/,Phil,,9/19/2017 0:00,12.0000000,12.0000000,48.049702000000,-4.708124000000,,Cléden-Cap-Sizun - Finistère,47606,observation-0ed3481a-b5e1-4cf7-b96f-bfafcee46fc8-3,https://biolit.fr/observations/observation-0ed3481a-b5e1-4cf7-b96f-bfafcee46fc8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080259.JPG,,FALSE, +N1,60346,sortie-0ed3481a-b5e1-4cf7-b96f-bfafcee46fc8,https://biolit.fr/sorties/sortie-0ed3481a-b5e1-4cf7-b96f-bfafcee46fc8/,Phil,,9/19/2017 0:00,12.0000000,12.0000000,48.049702000000,-4.708124000000,,Cléden-Cap-Sizun - Finistère,47608,observation-0ed3481a-b5e1-4cf7-b96f-bfafcee46fc8-4,https://biolit.fr/observations/observation-0ed3481a-b5e1-4cf7-b96f-bfafcee46fc8-4/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1080260.JPG,,TRUE, +N1,60347,sortie-701e7645-8f9a-4f40-a803-5582f5b17ebb,https://biolit.fr/sorties/sortie-701e7645-8f9a-4f40-a803-5582f5b17ebb/,Phil,,9/18/2017 0:00,12.0000000,12.0000000,47.788478000000,-4.270398000000,,Léchiagat - Finistère,47610,observation-701e7645-8f9a-4f40-a803-5582f5b17ebb,https://biolit.fr/observations/observation-701e7645-8f9a-4f40-a803-5582f5b17ebb/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080142.JPG,,FALSE, +N1,60347,sortie-701e7645-8f9a-4f40-a803-5582f5b17ebb,https://biolit.fr/sorties/sortie-701e7645-8f9a-4f40-a803-5582f5b17ebb/,Phil,,9/18/2017 0:00,12.0000000,12.0000000,47.788478000000,-4.270398000000,,Léchiagat - Finistère,47612,observation-701e7645-8f9a-4f40-a803-5582f5b17ebb-2,https://biolit.fr/observations/observation-701e7645-8f9a-4f40-a803-5582f5b17ebb-2/,Calyptraea chinensis,Chapeau chinois,,https://biolit.fr/wp-content/uploads/2023/07/P1080143.JPG,,TRUE, +N1,60347,sortie-701e7645-8f9a-4f40-a803-5582f5b17ebb,https://biolit.fr/sorties/sortie-701e7645-8f9a-4f40-a803-5582f5b17ebb/,Phil,,9/18/2017 0:00,12.0000000,12.0000000,47.788478000000,-4.270398000000,,Léchiagat - Finistère,47614,observation-701e7645-8f9a-4f40-a803-5582f5b17ebb-3,https://biolit.fr/observations/observation-701e7645-8f9a-4f40-a803-5582f5b17ebb-3/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1080131.JPG,,TRUE, +N1,60347,sortie-701e7645-8f9a-4f40-a803-5582f5b17ebb,https://biolit.fr/sorties/sortie-701e7645-8f9a-4f40-a803-5582f5b17ebb/,Phil,,9/18/2017 0:00,12.0000000,12.0000000,47.788478000000,-4.270398000000,,Léchiagat - Finistère,47616,observation-701e7645-8f9a-4f40-a803-5582f5b17ebb-4,https://biolit.fr/observations/observation-701e7645-8f9a-4f40-a803-5582f5b17ebb-4/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/P1080146.JPG,,TRUE, +N1,60348,sortie-c62bcdef-180d-4920-a733-3dc8231a85c6,https://biolit.fr/sorties/sortie-c62bcdef-180d-4920-a733-3dc8231a85c6/,Phil,,09/10/2017,11.0000000,11.0000000,47.869119000000,-3.927085000000,,Concarneau - Finistère,47618,observation-c62bcdef-180d-4920-a733-3dc8231a85c6,https://biolit.fr/observations/observation-c62bcdef-180d-4920-a733-3dc8231a85c6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170910_113332.jpg,,FALSE, +N1,60348,sortie-c62bcdef-180d-4920-a733-3dc8231a85c6,https://biolit.fr/sorties/sortie-c62bcdef-180d-4920-a733-3dc8231a85c6/,Phil,,09/10/2017,11.0000000,11.0000000,47.869119000000,-3.927085000000,,Concarneau - Finistère,47620,observation-c62bcdef-180d-4920-a733-3dc8231a85c6-2,https://biolit.fr/observations/observation-c62bcdef-180d-4920-a733-3dc8231a85c6-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170910_113212.jpg,,TRUE, +N1,60348,sortie-c62bcdef-180d-4920-a733-3dc8231a85c6,https://biolit.fr/sorties/sortie-c62bcdef-180d-4920-a733-3dc8231a85c6/,Phil,,09/10/2017,11.0000000,11.0000000,47.869119000000,-3.927085000000,,Concarneau - Finistère,47622,observation-c62bcdef-180d-4920-a733-3dc8231a85c6-3,https://biolit.fr/observations/observation-c62bcdef-180d-4920-a733-3dc8231a85c6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170910_112739.jpg,,FALSE, +N1,60348,sortie-c62bcdef-180d-4920-a733-3dc8231a85c6,https://biolit.fr/sorties/sortie-c62bcdef-180d-4920-a733-3dc8231a85c6/,Phil,,09/10/2017,11.0000000,11.0000000,47.869119000000,-3.927085000000,,Concarneau - Finistère,47624,observation-c62bcdef-180d-4920-a733-3dc8231a85c6-4,https://biolit.fr/observations/observation-c62bcdef-180d-4920-a733-3dc8231a85c6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170910_112733.jpg,,FALSE, +N1,60348,sortie-c62bcdef-180d-4920-a733-3dc8231a85c6,https://biolit.fr/sorties/sortie-c62bcdef-180d-4920-a733-3dc8231a85c6/,Phil,,09/10/2017,11.0000000,11.0000000,47.869119000000,-3.927085000000,,Concarneau - Finistère,47626,observation-c62bcdef-180d-4920-a733-3dc8231a85c6-5,https://biolit.fr/observations/observation-c62bcdef-180d-4920-a733-3dc8231a85c6-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170910_112030.jpg,,TRUE, +N1,60349,sortie-587f275e-eaeb-423c-ac87-d64d8f74ab1c,https://biolit.fr/sorties/sortie-587f275e-eaeb-423c-ac87-d64d8f74ab1c/,Phil,,9/18/2017 0:00,13.0000000,13.0000000,47.799957000000,-4.271685000000,,Le Guilvinec - Finistère,47628,observation-587f275e-eaeb-423c-ac87-d64d8f74ab1c,https://biolit.fr/observations/observation-587f275e-eaeb-423c-ac87-d64d8f74ab1c/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1080248.JPG,,TRUE, +N1,60349,sortie-587f275e-eaeb-423c-ac87-d64d8f74ab1c,https://biolit.fr/sorties/sortie-587f275e-eaeb-423c-ac87-d64d8f74ab1c/,Phil,,9/18/2017 0:00,13.0000000,13.0000000,47.799957000000,-4.271685000000,,Le Guilvinec - Finistère,47630,observation-587f275e-eaeb-423c-ac87-d64d8f74ab1c-2,https://biolit.fr/observations/observation-587f275e-eaeb-423c-ac87-d64d8f74ab1c-2/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/P1080236.JPG,,TRUE, +N1,60349,sortie-587f275e-eaeb-423c-ac87-d64d8f74ab1c,https://biolit.fr/sorties/sortie-587f275e-eaeb-423c-ac87-d64d8f74ab1c/,Phil,,9/18/2017 0:00,13.0000000,13.0000000,47.799957000000,-4.271685000000,,Le Guilvinec - Finistère,47632,observation-587f275e-eaeb-423c-ac87-d64d8f74ab1c-3,https://biolit.fr/observations/observation-587f275e-eaeb-423c-ac87-d64d8f74ab1c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080244.JPG,,FALSE, +N1,60349,sortie-587f275e-eaeb-423c-ac87-d64d8f74ab1c,https://biolit.fr/sorties/sortie-587f275e-eaeb-423c-ac87-d64d8f74ab1c/,Phil,,9/18/2017 0:00,13.0000000,13.0000000,47.799957000000,-4.271685000000,,Le Guilvinec - Finistère,47634,observation-587f275e-eaeb-423c-ac87-d64d8f74ab1c-4,https://biolit.fr/observations/observation-587f275e-eaeb-423c-ac87-d64d8f74ab1c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080245.JPG,,FALSE, +N1,60350,sortie-f7f7742c-5072-48ee-808f-376e7971c6e2,https://biolit.fr/sorties/sortie-f7f7742c-5072-48ee-808f-376e7971c6e2/,Phil,,09/02/2017,12.0000000,13.0000000,48.093626000000,-4.298716000000,,Douarnernez - Finistère,47636,observation-f7f7742c-5072-48ee-808f-376e7971c6e2,https://biolit.fr/observations/observation-f7f7742c-5072-48ee-808f-376e7971c6e2/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1080041.JPG,,TRUE, +N1,60350,sortie-f7f7742c-5072-48ee-808f-376e7971c6e2,https://biolit.fr/sorties/sortie-f7f7742c-5072-48ee-808f-376e7971c6e2/,Phil,,09/02/2017,12.0000000,13.0000000,48.093626000000,-4.298716000000,,Douarnernez - Finistère,47638,observation-f7f7742c-5072-48ee-808f-376e7971c6e2-2,https://biolit.fr/observations/observation-f7f7742c-5072-48ee-808f-376e7971c6e2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080055.JPG,,FALSE, +N1,60350,sortie-f7f7742c-5072-48ee-808f-376e7971c6e2,https://biolit.fr/sorties/sortie-f7f7742c-5072-48ee-808f-376e7971c6e2/,Phil,,09/02/2017,12.0000000,13.0000000,48.093626000000,-4.298716000000,,Douarnernez - Finistère,47640,observation-f7f7742c-5072-48ee-808f-376e7971c6e2-3,https://biolit.fr/observations/observation-f7f7742c-5072-48ee-808f-376e7971c6e2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080046.JPG,,FALSE, +N1,60351,sortie-dc2c0875-0275-45e0-b0f1-7316541e3de1,https://biolit.fr/sorties/sortie-dc2c0875-0275-45e0-b0f1-7316541e3de1/,Phil,,9/18/2017 0:00,12.000005,12.0000000,47.788196000000,-4.270495000000,,Léchiagat - Finistère,47642,observation-dc2c0875-0275-45e0-b0f1-7316541e3de1,https://biolit.fr/observations/observation-dc2c0875-0275-45e0-b0f1-7316541e3de1/,Saccharina latissima,Laminaire sucrée,,https://biolit.fr/wp-content/uploads/2023/07/P1080120.JPG,,TRUE, +N1,60351,sortie-dc2c0875-0275-45e0-b0f1-7316541e3de1,https://biolit.fr/sorties/sortie-dc2c0875-0275-45e0-b0f1-7316541e3de1/,Phil,,9/18/2017 0:00,12.000005,12.0000000,47.788196000000,-4.270495000000,,Léchiagat - Finistère,47644,observation-dc2c0875-0275-45e0-b0f1-7316541e3de1-2,https://biolit.fr/observations/observation-dc2c0875-0275-45e0-b0f1-7316541e3de1-2/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1080124.JPG,,TRUE, +N1,60351,sortie-dc2c0875-0275-45e0-b0f1-7316541e3de1,https://biolit.fr/sorties/sortie-dc2c0875-0275-45e0-b0f1-7316541e3de1/,Phil,,9/18/2017 0:00,12.000005,12.0000000,47.788196000000,-4.270495000000,,Léchiagat - Finistère,47646,observation-dc2c0875-0275-45e0-b0f1-7316541e3de1-3,https://biolit.fr/observations/observation-dc2c0875-0275-45e0-b0f1-7316541e3de1-3/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1080126.JPG,,TRUE, +N1,60351,sortie-dc2c0875-0275-45e0-b0f1-7316541e3de1,https://biolit.fr/sorties/sortie-dc2c0875-0275-45e0-b0f1-7316541e3de1/,Phil,,9/18/2017 0:00,12.000005,12.0000000,47.788196000000,-4.270495000000,,Léchiagat - Finistère,47648,observation-dc2c0875-0275-45e0-b0f1-7316541e3de1-4,https://biolit.fr/observations/observation-dc2c0875-0275-45e0-b0f1-7316541e3de1-4/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/P1080128.JPG,,TRUE, +N1,60352,sortie-06e0b4c7-f7b8-4736-abbb-f417de63ccd1,https://biolit.fr/sorties/sortie-06e0b4c7-f7b8-4736-abbb-f417de63ccd1/,Léa M,,9/17/2017 0:00,13.0000000,15.0000000,43.217162000000,5.364272000000,,Iles du Frioul,47650,observation-06e0b4c7-f7b8-4736-abbb-f417de63ccd1,https://biolit.fr/observations/observation-06e0b4c7-f7b8-4736-abbb-f417de63ccd1/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1084-rotated.jpg,,FALSE, +N1,60353,sortie-0f2a48e4-1408-4f3d-af17-fb6ce72323ba,https://biolit.fr/sorties/sortie-0f2a48e4-1408-4f3d-af17-fb6ce72323ba/,Phil,,5/24/2016 0:00,11.0000000,12.0000000,47.793379000000,-3.843635000000,,Trévignon - Finistère,47652,observation-0f2a48e4-1408-4f3d-af17-fb6ce72323ba,https://biolit.fr/observations/observation-0f2a48e4-1408-4f3d-af17-fb6ce72323ba/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/P1020891.JPG,,TRUE, +N1,60353,sortie-0f2a48e4-1408-4f3d-af17-fb6ce72323ba,https://biolit.fr/sorties/sortie-0f2a48e4-1408-4f3d-af17-fb6ce72323ba/,Phil,,5/24/2016 0:00,11.0000000,12.0000000,47.793379000000,-3.843635000000,,Trévignon - Finistère,47654,observation-0f2a48e4-1408-4f3d-af17-fb6ce72323ba-2,https://biolit.fr/observations/observation-0f2a48e4-1408-4f3d-af17-fb6ce72323ba-2/,Ramalina siliquosa,Ramaline des rochers,,https://biolit.fr/wp-content/uploads/2023/07/P1020897.JPG,,TRUE, +N1,60353,sortie-0f2a48e4-1408-4f3d-af17-fb6ce72323ba,https://biolit.fr/sorties/sortie-0f2a48e4-1408-4f3d-af17-fb6ce72323ba/,Phil,,5/24/2016 0:00,11.0000000,12.0000000,47.793379000000,-3.843635000000,,Trévignon - Finistère,47656,observation-0f2a48e4-1408-4f3d-af17-fb6ce72323ba-3,https://biolit.fr/observations/observation-0f2a48e4-1408-4f3d-af17-fb6ce72323ba-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020899.JPG,,FALSE, +N1,60353,sortie-0f2a48e4-1408-4f3d-af17-fb6ce72323ba,https://biolit.fr/sorties/sortie-0f2a48e4-1408-4f3d-af17-fb6ce72323ba/,Phil,,5/24/2016 0:00,11.0000000,12.0000000,47.793379000000,-3.843635000000,,Trévignon - Finistère,47658,observation-0f2a48e4-1408-4f3d-af17-fb6ce72323ba-4,https://biolit.fr/observations/observation-0f2a48e4-1408-4f3d-af17-fb6ce72323ba-4/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1020832.JPG,,TRUE, +N1,60354,sortie-7c2f411f-d557-4549-ade9-7d4869d1c037,https://biolit.fr/sorties/sortie-7c2f411f-d557-4549-ade9-7d4869d1c037/,Phil,,09/10/2017,11.0000000,11.0000000,47.86948500000,-3.926668000000,,Concarneau - Finistère,47660,observation-7c2f411f-d557-4549-ade9-7d4869d1c037,https://biolit.fr/observations/observation-7c2f411f-d557-4549-ade9-7d4869d1c037/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/20170910_111521.jpg,,TRUE, +N1,60354,sortie-7c2f411f-d557-4549-ade9-7d4869d1c037,https://biolit.fr/sorties/sortie-7c2f411f-d557-4549-ade9-7d4869d1c037/,Phil,,09/10/2017,11.0000000,11.0000000,47.86948500000,-3.926668000000,,Concarneau - Finistère,47662,observation-7c2f411f-d557-4549-ade9-7d4869d1c037-2,https://biolit.fr/observations/observation-7c2f411f-d557-4549-ade9-7d4869d1c037-2/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20170910_111540.jpg,,TRUE, +N1,60354,sortie-7c2f411f-d557-4549-ade9-7d4869d1c037,https://biolit.fr/sorties/sortie-7c2f411f-d557-4549-ade9-7d4869d1c037/,Phil,,09/10/2017,11.0000000,11.0000000,47.86948500000,-3.926668000000,,Concarneau - Finistère,47664,observation-7c2f411f-d557-4549-ade9-7d4869d1c037-3,https://biolit.fr/observations/observation-7c2f411f-d557-4549-ade9-7d4869d1c037-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170910_111738.jpg,,FALSE, +N1,60355,sortie-26cbb40f-f5a9-4ca1-af45-68a385b08771,https://biolit.fr/sorties/sortie-26cbb40f-f5a9-4ca1-af45-68a385b08771/,cgomeshuiban,,07/06/2017,19.0:15,19.0:45,43.554747000000,7.142932000000,,Plage du Cap Gros,47666,observation-26cbb40f-f5a9-4ca1-af45-68a385b08771,https://biolit.fr/observations/observation-26cbb40f-f5a9-4ca1-af45-68a385b08771/,,,,https://biolit.fr/wp-content/uploads/2023/07/2017-07-06_19-17-58_p7060186_cut.jpg,,FALSE, +N1,60355,sortie-26cbb40f-f5a9-4ca1-af45-68a385b08771,https://biolit.fr/sorties/sortie-26cbb40f-f5a9-4ca1-af45-68a385b08771/,cgomeshuiban,,07/06/2017,19.0:15,19.0:45,43.554747000000,7.142932000000,,Plage du Cap Gros,47668,observation-26cbb40f-f5a9-4ca1-af45-68a385b08771-2,https://biolit.fr/observations/observation-26cbb40f-f5a9-4ca1-af45-68a385b08771-2/,Diplodus vulgaris,Sar à tête noire,,https://biolit.fr/wp-content/uploads/2023/07/2017-07-06_19-35-44_p7060250_cut.jpg,,TRUE, +N1,60355,sortie-26cbb40f-f5a9-4ca1-af45-68a385b08771,https://biolit.fr/sorties/sortie-26cbb40f-f5a9-4ca1-af45-68a385b08771/,cgomeshuiban,,07/06/2017,19.0:15,19.0:45,43.554747000000,7.142932000000,,Plage du Cap Gros,47670,observation-26cbb40f-f5a9-4ca1-af45-68a385b08771-3,https://biolit.fr/observations/observation-26cbb40f-f5a9-4ca1-af45-68a385b08771-3/,Coris julis,Girelle commune,,https://biolit.fr/wp-content/uploads/2023/07/2017-07-06_19-36-43_p7060264_cut.jpg,,TRUE, +N1,60355,sortie-26cbb40f-f5a9-4ca1-af45-68a385b08771,https://biolit.fr/sorties/sortie-26cbb40f-f5a9-4ca1-af45-68a385b08771/,cgomeshuiban,,07/06/2017,19.0:15,19.0:45,43.554747000000,7.142932000000,,Plage du Cap Gros,47672,observation-26cbb40f-f5a9-4ca1-af45-68a385b08771-4,https://biolit.fr/observations/observation-26cbb40f-f5a9-4ca1-af45-68a385b08771-4/,Diplodus puntazzo,Sar à museau pointu,,https://biolit.fr/wp-content/uploads/2023/07/2017-07-06_19-37-31_p7060274_cut.jpg,,TRUE, +N1,60356,sortie-8e458f40-1c19-4dfe-851d-191e8086c82f,https://biolit.fr/sorties/sortie-8e458f40-1c19-4dfe-851d-191e8086c82f/,cgomeshuiban,,09/08/2016,19.0:35,19.0:55,43.554704000000,7.14295500000,,Plage du Cap Gros,47674,observation-8e458f40-1c19-4dfe-851d-191e8086c82f,https://biolit.fr/observations/observation-8e458f40-1c19-4dfe-851d-191e8086c82f/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/2016-09-08_19-51-30-p9081288.jpg,,TRUE, +N1,60357,sortie-3ec834a6-5c83-47cc-b45a-f58a372614ec,https://biolit.fr/sorties/sortie-3ec834a6-5c83-47cc-b45a-f58a372614ec/,CarpeDiem,,08/10/2017,8.0000000,8.0000000,42.963237000000,9.346108000000,,pointe rocheuse face ilot Capense,47676,observation-3ec834a6-5c83-47cc-b45a-f58a372614ec,https://biolit.fr/observations/observation-3ec834a6-5c83-47cc-b45a-f58a372614ec/,,,,https://biolit.fr/wp-content/uploads/2023/07/Anadyomène-scaled.jpg,,FALSE, +N1,60357,sortie-3ec834a6-5c83-47cc-b45a-f58a372614ec,https://biolit.fr/sorties/sortie-3ec834a6-5c83-47cc-b45a-f58a372614ec/,CarpeDiem,,08/10/2017,8.0000000,8.0000000,42.963237000000,9.346108000000,,pointe rocheuse face ilot Capense,47678,observation-3ec834a6-5c83-47cc-b45a-f58a372614ec-2,https://biolit.fr/observations/observation-3ec834a6-5c83-47cc-b45a-f58a372614ec-2/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/2023/07/Blennie-scaled.jpg,,TRUE, +N1,60357,sortie-3ec834a6-5c83-47cc-b45a-f58a372614ec,https://biolit.fr/sorties/sortie-3ec834a6-5c83-47cc-b45a-f58a372614ec/,CarpeDiem,,08/10/2017,8.0000000,8.0000000,42.963237000000,9.346108000000,,pointe rocheuse face ilot Capense,47680,observation-3ec834a6-5c83-47cc-b45a-f58a372614ec-3,https://biolit.fr/observations/observation-3ec834a6-5c83-47cc-b45a-f58a372614ec-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabe marbre-scaled.jpg,,FALSE, +N1,60357,sortie-3ec834a6-5c83-47cc-b45a-f58a372614ec,https://biolit.fr/sorties/sortie-3ec834a6-5c83-47cc-b45a-f58a372614ec/,CarpeDiem,,08/10/2017,8.0000000,8.0000000,42.963237000000,9.346108000000,,pointe rocheuse face ilot Capense,47681,observation-3ec834a6-5c83-47cc-b45a-f58a372614ec-4,https://biolit.fr/observations/observation-3ec834a6-5c83-47cc-b45a-f58a372614ec-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cystoseire-scaled.jpg,,FALSE, +N1,60357,sortie-3ec834a6-5c83-47cc-b45a-f58a372614ec,https://biolit.fr/sorties/sortie-3ec834a6-5c83-47cc-b45a-f58a372614ec/,CarpeDiem,,08/10/2017,8.0000000,8.0000000,42.963237000000,9.346108000000,,pointe rocheuse face ilot Capense,47683,observation-3ec834a6-5c83-47cc-b45a-f58a372614ec-5,https://biolit.fr/observations/observation-3ec834a6-5c83-47cc-b45a-f58a372614ec-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule toupie-scaled.jpg,,FALSE, +N1,60357,sortie-3ec834a6-5c83-47cc-b45a-f58a372614ec,https://biolit.fr/sorties/sortie-3ec834a6-5c83-47cc-b45a-f58a372614ec/,CarpeDiem,,08/10/2017,8.0000000,8.0000000,42.963237000000,9.346108000000,,pointe rocheuse face ilot Capense,47684,observation-3ec834a6-5c83-47cc-b45a-f58a372614ec-6,https://biolit.fr/observations/observation-3ec834a6-5c83-47cc-b45a-f58a372614ec-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/padina-scaled.jpg,,FALSE, +N1,60357,sortie-3ec834a6-5c83-47cc-b45a-f58a372614ec,https://biolit.fr/sorties/sortie-3ec834a6-5c83-47cc-b45a-f58a372614ec/,CarpeDiem,,08/10/2017,8.0000000,8.0000000,42.963237000000,9.346108000000,,pointe rocheuse face ilot Capense,47685,observation-3ec834a6-5c83-47cc-b45a-f58a372614ec-7,https://biolit.fr/observations/observation-3ec834a6-5c83-47cc-b45a-f58a372614ec-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Posidonia-scaled.jpg,,FALSE, +N1,60358,sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25,https://biolit.fr/sorties/sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25/,CarpeDiem,,08/09/2017,8.0000000,9.0000000,42.962883000000,9.34906900000,,plage du pont près de Mute,47687,observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25,https://biolit.fr/observations/observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25/,,,,https://biolit.fr/wp-content/uploads/2023/07/eponges-scaled.jpg,,FALSE, +N1,60358,sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25,https://biolit.fr/sorties/sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25/,CarpeDiem,,08/09/2017,8.0000000,9.0000000,42.962883000000,9.34906900000,,plage du pont près de Mute,47689,observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25-2,https://biolit.fr/observations/observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Criste marine_0-scaled.jpg,,FALSE, +N1,60358,sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25,https://biolit.fr/sorties/sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25/,CarpeDiem,,08/09/2017,8.0000000,9.0000000,42.962883000000,9.34906900000,,plage du pont près de Mute,47691,observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25-3,https://biolit.fr/observations/observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Os...-scaled.jpg,,FALSE, +N1,60358,sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25,https://biolit.fr/sorties/sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25/,CarpeDiem,,08/09/2017,8.0000000,9.0000000,42.962883000000,9.34906900000,,plage du pont près de Mute,47693,observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25-4,https://biolit.fr/observations/observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Imortelles-scaled.jpg,,FALSE, +N1,60358,sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25,https://biolit.fr/sorties/sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25/,CarpeDiem,,08/09/2017,8.0000000,9.0000000,42.962883000000,9.34906900000,,plage du pont près de Mute,47695,observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25-5,https://biolit.fr/observations/observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Plante grasse-scaled.jpg,,FALSE, +N1,60358,sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25,https://biolit.fr/sorties/sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25/,CarpeDiem,,08/09/2017,8.0000000,9.0000000,42.962883000000,9.34906900000,,plage du pont près de Mute,47697,observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25-6,https://biolit.fr/observations/observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Plante petites fleurs parme-scaled.jpg,,FALSE, +N1,60358,sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25,https://biolit.fr/sorties/sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25/,CarpeDiem,,08/09/2017,8.0000000,9.0000000,42.962883000000,9.34906900000,,plage du pont près de Mute,47699,observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25-7,https://biolit.fr/observations/observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Plantes grasse_2-scaled.jpg,,FALSE, +N1,60358,sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25,https://biolit.fr/sorties/sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25/,CarpeDiem,,08/09/2017,8.0000000,9.0000000,42.962883000000,9.34906900000,,plage du pont près de Mute,47701,observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25-8,https://biolit.fr/observations/observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/pontes-scaled.jpg,,FALSE, +N1,60358,sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25,https://biolit.fr/sorties/sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25/,CarpeDiem,,08/09/2017,8.0000000,9.0000000,42.962883000000,9.34906900000,,plage du pont près de Mute,47702,observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25-9,https://biolit.fr/observations/observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Posidonia oceanica-scaled.jpg,,FALSE, +N1,60359,sortie-6bd8768d-7de6-42ec-b12b-1d9fc5d1435e,https://biolit.fr/sorties/sortie-6bd8768d-7de6-42ec-b12b-1d9fc5d1435e/,Phil,,09/02/2017,13.0000000,13.0000000,48.092020000000,-4.296839000000,,Douarnenez - Finistère,47704,observation-6bd8768d-7de6-42ec-b12b-1d9fc5d1435e,https://biolit.fr/observations/observation-6bd8768d-7de6-42ec-b12b-1d9fc5d1435e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080088.JPG,,FALSE, +N1,60359,sortie-6bd8768d-7de6-42ec-b12b-1d9fc5d1435e,https://biolit.fr/sorties/sortie-6bd8768d-7de6-42ec-b12b-1d9fc5d1435e/,Phil,,09/02/2017,13.0000000,13.0000000,48.092020000000,-4.296839000000,,Douarnenez - Finistère,47706,observation-6bd8768d-7de6-42ec-b12b-1d9fc5d1435e-2,https://biolit.fr/observations/observation-6bd8768d-7de6-42ec-b12b-1d9fc5d1435e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080102.JPG,,FALSE, +N1,60359,sortie-6bd8768d-7de6-42ec-b12b-1d9fc5d1435e,https://biolit.fr/sorties/sortie-6bd8768d-7de6-42ec-b12b-1d9fc5d1435e/,Phil,,09/02/2017,13.0000000,13.0000000,48.092020000000,-4.296839000000,,Douarnenez - Finistère,47708,observation-6bd8768d-7de6-42ec-b12b-1d9fc5d1435e-3,https://biolit.fr/observations/observation-6bd8768d-7de6-42ec-b12b-1d9fc5d1435e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080097.JPG,,FALSE, +N1,60359,sortie-6bd8768d-7de6-42ec-b12b-1d9fc5d1435e,https://biolit.fr/sorties/sortie-6bd8768d-7de6-42ec-b12b-1d9fc5d1435e/,Phil,,09/02/2017,13.0000000,13.0000000,48.092020000000,-4.296839000000,,Douarnenez - Finistère,47710,observation-6bd8768d-7de6-42ec-b12b-1d9fc5d1435e-4,https://biolit.fr/observations/observation-6bd8768d-7de6-42ec-b12b-1d9fc5d1435e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080091.JPG,,FALSE, +N1,60360,sortie-6bf67325-8667-4bf8-8e1c-bd0bb5a5e83c,https://biolit.fr/sorties/sortie-6bf67325-8667-4bf8-8e1c-bd0bb5a5e83c/,Gali83,,8/29/2017 0:00,10.0:15,11.0000000,43.089676000000,6.023136000000,,Baie de la Garonne,47712,observation-6bf67325-8667-4bf8-8e1c-bd0bb5a5e83c,https://biolit.fr/observations/observation-6bf67325-8667-4bf8-8e1c-bd0bb5a5e83c/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/2023/07/P8295067.JPG,,TRUE, +N1,60361,sortie-6d6b507b-260c-4032-85a8-759954da778c,https://biolit.fr/sorties/sortie-6d6b507b-260c-4032-85a8-759954da778c/,Phil,,09/02/2017,12.0000000,12.0:55,48.093757000000,-4.299078000000,,Douarnenez - Finistère,47714,observation-6d6b507b-260c-4032-85a8-759954da778c,https://biolit.fr/observations/observation-6d6b507b-260c-4032-85a8-759954da778c/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P1080036.JPG,,TRUE, +N1,60361,sortie-6d6b507b-260c-4032-85a8-759954da778c,https://biolit.fr/sorties/sortie-6d6b507b-260c-4032-85a8-759954da778c/,Phil,,09/02/2017,12.0000000,12.0:55,48.093757000000,-4.299078000000,,Douarnenez - Finistère,47716,observation-6d6b507b-260c-4032-85a8-759954da778c-2,https://biolit.fr/observations/observation-6d6b507b-260c-4032-85a8-759954da778c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080037.JPG,,FALSE, +N1,60361,sortie-6d6b507b-260c-4032-85a8-759954da778c,https://biolit.fr/sorties/sortie-6d6b507b-260c-4032-85a8-759954da778c/,Phil,,09/02/2017,12.0000000,12.0:55,48.093757000000,-4.299078000000,,Douarnenez - Finistère,47718,observation-6d6b507b-260c-4032-85a8-759954da778c-3,https://biolit.fr/observations/observation-6d6b507b-260c-4032-85a8-759954da778c-3/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P1080039.JPG,,TRUE, +N1,60361,sortie-6d6b507b-260c-4032-85a8-759954da778c,https://biolit.fr/sorties/sortie-6d6b507b-260c-4032-85a8-759954da778c/,Phil,,09/02/2017,12.0000000,12.0:55,48.093757000000,-4.299078000000,,Douarnenez - Finistère,47720,observation-6d6b507b-260c-4032-85a8-759954da778c-4,https://biolit.fr/observations/observation-6d6b507b-260c-4032-85a8-759954da778c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080034.JPG,,FALSE, +N1,60362,sortie-03decf1e-ea76-44d2-af7a-b851e2a8cf39,https://biolit.fr/sorties/sortie-03decf1e-ea76-44d2-af7a-b851e2a8cf39/,Phil,,4/14/2017 0:00,16.0:55,17.0000000,48.838414000000,-3.01117400000,,Île-de-Bréhat - Côtes-d'Armor,47722,observation-03decf1e-ea76-44d2-af7a-b851e2a8cf39,https://biolit.fr/observations/observation-03decf1e-ea76-44d2-af7a-b851e2a8cf39/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070125.JPG,,FALSE, +N1,60362,sortie-03decf1e-ea76-44d2-af7a-b851e2a8cf39,https://biolit.fr/sorties/sortie-03decf1e-ea76-44d2-af7a-b851e2a8cf39/,Phil,,4/14/2017 0:00,16.0:55,17.0000000,48.838414000000,-3.01117400000,,Île-de-Bréhat - Côtes-d'Armor,47724,observation-03decf1e-ea76-44d2-af7a-b851e2a8cf39-2,https://biolit.fr/observations/observation-03decf1e-ea76-44d2-af7a-b851e2a8cf39-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070124.JPG,,FALSE, +N1,60362,sortie-03decf1e-ea76-44d2-af7a-b851e2a8cf39,https://biolit.fr/sorties/sortie-03decf1e-ea76-44d2-af7a-b851e2a8cf39/,Phil,,4/14/2017 0:00,16.0:55,17.0000000,48.838414000000,-3.01117400000,,Île-de-Bréhat - Côtes-d'Armor,47726,observation-03decf1e-ea76-44d2-af7a-b851e2a8cf39-3,https://biolit.fr/observations/observation-03decf1e-ea76-44d2-af7a-b851e2a8cf39-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070121.JPG,,FALSE, +N1,60363,sortie-5a55b152-f90a-424e-b73d-cdbe1d803b9e,https://biolit.fr/sorties/sortie-5a55b152-f90a-424e-b73d-cdbe1d803b9e/,Gali83,,09/04/2017,9.0000000,11.0000000,43.106300000000,5.971889000000,,Anse Méjean Toulon,47728,observation-5a55b152-f90a-424e-b73d-cdbe1d803b9e,https://biolit.fr/observations/observation-5a55b152-f90a-424e-b73d-cdbe1d803b9e/,Cestum veneris,Ceinture de Vénus,,https://biolit.fr/wp-content/uploads/2023/07/P9045096.JPG,,TRUE, +N1,60363,sortie-5a55b152-f90a-424e-b73d-cdbe1d803b9e,https://biolit.fr/sorties/sortie-5a55b152-f90a-424e-b73d-cdbe1d803b9e/,Gali83,,09/04/2017,9.0000000,11.0000000,43.106300000000,5.971889000000,,Anse Méjean Toulon,47730,observation-5a55b152-f90a-424e-b73d-cdbe1d803b9e-2,https://biolit.fr/observations/observation-5a55b152-f90a-424e-b73d-cdbe1d803b9e-2/,Cestum veneris,Ceinture de Vénus,,https://biolit.fr/wp-content/uploads/2023/07/P9045097.JPG,,TRUE, +N1,60363,sortie-5a55b152-f90a-424e-b73d-cdbe1d803b9e,https://biolit.fr/sorties/sortie-5a55b152-f90a-424e-b73d-cdbe1d803b9e/,Gali83,,09/04/2017,9.0000000,11.0000000,43.106300000000,5.971889000000,,Anse Méjean Toulon,47732,observation-5a55b152-f90a-424e-b73d-cdbe1d803b9e-3,https://biolit.fr/observations/observation-5a55b152-f90a-424e-b73d-cdbe1d803b9e-3/,Cestum veneris,Ceinture de Vénus,,https://biolit.fr/wp-content/uploads/2023/07/P9045102.JPG,,TRUE, +N1,60364,sortie-13b0fd4a-c397-432b-bd24-be67723c09ad,https://biolit.fr/sorties/sortie-13b0fd4a-c397-432b-bd24-be67723c09ad/,Phil,,09/02/2017,12.0000000,12.0:45,48.093797000000,-4.299200000000,,Douarnenez - Finistère,47734,observation-13b0fd4a-c397-432b-bd24-be67723c09ad,https://biolit.fr/observations/observation-13b0fd4a-c397-432b-bd24-be67723c09ad/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1080024.JPG,,TRUE, +N1,60364,sortie-13b0fd4a-c397-432b-bd24-be67723c09ad,https://biolit.fr/sorties/sortie-13b0fd4a-c397-432b-bd24-be67723c09ad/,Phil,,09/02/2017,12.0000000,12.0:45,48.093797000000,-4.299200000000,,Douarnenez - Finistère,47736,observation-13b0fd4a-c397-432b-bd24-be67723c09ad-2,https://biolit.fr/observations/observation-13b0fd4a-c397-432b-bd24-be67723c09ad-2/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1080018.JPG,,TRUE, +N1,60364,sortie-13b0fd4a-c397-432b-bd24-be67723c09ad,https://biolit.fr/sorties/sortie-13b0fd4a-c397-432b-bd24-be67723c09ad/,Phil,,09/02/2017,12.0000000,12.0:45,48.093797000000,-4.299200000000,,Douarnenez - Finistère,47738,observation-13b0fd4a-c397-432b-bd24-be67723c09ad-3,https://biolit.fr/observations/observation-13b0fd4a-c397-432b-bd24-be67723c09ad-3/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1080020.JPG,,TRUE, +N1,60364,sortie-13b0fd4a-c397-432b-bd24-be67723c09ad,https://biolit.fr/sorties/sortie-13b0fd4a-c397-432b-bd24-be67723c09ad/,Phil,,09/02/2017,12.0000000,12.0:45,48.093797000000,-4.299200000000,,Douarnenez - Finistère,47740,observation-13b0fd4a-c397-432b-bd24-be67723c09ad-4,https://biolit.fr/observations/observation-13b0fd4a-c397-432b-bd24-be67723c09ad-4/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/P1080010.JPG,,TRUE, +N1,60365,sortie-88d3649f-65c9-462b-af91-4e05eafc0fe3,https://biolit.fr/sorties/sortie-88d3649f-65c9-462b-af91-4e05eafc0fe3/,Phil,,09/03/2017,18.0000000,18.0000000,48.382894000000,-4.402773000000,,Plougastel-Daoulas - Finistère,47742,observation-88d3649f-65c9-462b-af91-4e05eafc0fe3,https://biolit.fr/observations/observation-88d3649f-65c9-462b-af91-4e05eafc0fe3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170903_180928.jpg,,FALSE, +N1,60365,sortie-88d3649f-65c9-462b-af91-4e05eafc0fe3,https://biolit.fr/sorties/sortie-88d3649f-65c9-462b-af91-4e05eafc0fe3/,Phil,,09/03/2017,18.0000000,18.0000000,48.382894000000,-4.402773000000,,Plougastel-Daoulas - Finistère,47744,observation-88d3649f-65c9-462b-af91-4e05eafc0fe3-2,https://biolit.fr/observations/observation-88d3649f-65c9-462b-af91-4e05eafc0fe3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170903_180920.jpg,,FALSE, +N1,60366,sortie-eeb7bb2e-cafa-447f-a177-bd7ebd3c3c70,https://biolit.fr/sorties/sortie-eeb7bb2e-cafa-447f-a177-bd7ebd3c3c70/,Phil,,09/10/2017,11.000005,11.0000000,47.869007000000,-3.927257000000,,Concarneau - Finistère,47746,observation-eeb7bb2e-cafa-447f-a177-bd7ebd3c3c70,https://biolit.fr/observations/observation-eeb7bb2e-cafa-447f-a177-bd7ebd3c3c70/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/20170910_110627.jpg,,TRUE, +N1,60366,sortie-eeb7bb2e-cafa-447f-a177-bd7ebd3c3c70,https://biolit.fr/sorties/sortie-eeb7bb2e-cafa-447f-a177-bd7ebd3c3c70/,Phil,,09/10/2017,11.000005,11.0000000,47.869007000000,-3.927257000000,,Concarneau - Finistère,47748,observation-eeb7bb2e-cafa-447f-a177-bd7ebd3c3c70-2,https://biolit.fr/observations/observation-eeb7bb2e-cafa-447f-a177-bd7ebd3c3c70-2/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/20170910_110953.jpg,,TRUE, +N1,60366,sortie-eeb7bb2e-cafa-447f-a177-bd7ebd3c3c70,https://biolit.fr/sorties/sortie-eeb7bb2e-cafa-447f-a177-bd7ebd3c3c70/,Phil,,09/10/2017,11.000005,11.0000000,47.869007000000,-3.927257000000,,Concarneau - Finistère,47750,observation-eeb7bb2e-cafa-447f-a177-bd7ebd3c3c70-3,https://biolit.fr/observations/observation-eeb7bb2e-cafa-447f-a177-bd7ebd3c3c70-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170910_110705.jpg,,FALSE, +N1,60367,sortie-de808b05-87d0-4c80-95ce-1514bed9559b,https://biolit.fr/sorties/sortie-de808b05-87d0-4c80-95ce-1514bed9559b/,Phil,,09/02/2017,13.0:45,13.0000000,48.105078000000,-4.285595000000,,Kerlaz - Finistère,47752,observation-de808b05-87d0-4c80-95ce-1514bed9559b,https://biolit.fr/observations/observation-de808b05-87d0-4c80-95ce-1514bed9559b/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080116.JPG,,FALSE, +N1,60367,sortie-de808b05-87d0-4c80-95ce-1514bed9559b,https://biolit.fr/sorties/sortie-de808b05-87d0-4c80-95ce-1514bed9559b/,Phil,,09/02/2017,13.0:45,13.0000000,48.105078000000,-4.285595000000,,Kerlaz - Finistère,47754,observation-de808b05-87d0-4c80-95ce-1514bed9559b-2,https://biolit.fr/observations/observation-de808b05-87d0-4c80-95ce-1514bed9559b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080115.JPG,,FALSE, +N1,60367,sortie-de808b05-87d0-4c80-95ce-1514bed9559b,https://biolit.fr/sorties/sortie-de808b05-87d0-4c80-95ce-1514bed9559b/,Phil,,09/02/2017,13.0:45,13.0000000,48.105078000000,-4.285595000000,,Kerlaz - Finistère,47756,observation-de808b05-87d0-4c80-95ce-1514bed9559b-3,https://biolit.fr/observations/observation-de808b05-87d0-4c80-95ce-1514bed9559b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080117.JPG,,FALSE, +N1,60367,sortie-de808b05-87d0-4c80-95ce-1514bed9559b,https://biolit.fr/sorties/sortie-de808b05-87d0-4c80-95ce-1514bed9559b/,Phil,,09/02/2017,13.0:45,13.0000000,48.105078000000,-4.285595000000,,Kerlaz - Finistère,47758,observation-de808b05-87d0-4c80-95ce-1514bed9559b-4,https://biolit.fr/observations/observation-de808b05-87d0-4c80-95ce-1514bed9559b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080118.JPG,,FALSE, +N1,60367,sortie-de808b05-87d0-4c80-95ce-1514bed9559b,https://biolit.fr/sorties/sortie-de808b05-87d0-4c80-95ce-1514bed9559b/,Phil,,09/02/2017,13.0:45,13.0000000,48.105078000000,-4.285595000000,,Kerlaz - Finistère,47760,observation-de808b05-87d0-4c80-95ce-1514bed9559b-5,https://biolit.fr/observations/observation-de808b05-87d0-4c80-95ce-1514bed9559b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080114.JPG,,FALSE, +N1,60368,sortie-67a1e424-6b56-4c6e-be88-2e473d4ddf27,https://biolit.fr/sorties/sortie-67a1e424-6b56-4c6e-be88-2e473d4ddf27/,Phil,,09/02/2017,12.0:35,12.0000000,48.092460000000,-4.296972000000,,Douarnenez - Finistère,47762,observation-67a1e424-6b56-4c6e-be88-2e473d4ddf27,https://biolit.fr/observations/observation-67a1e424-6b56-4c6e-be88-2e473d4ddf27/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070998.JPG,,FALSE, +N1,60368,sortie-67a1e424-6b56-4c6e-be88-2e473d4ddf27,https://biolit.fr/sorties/sortie-67a1e424-6b56-4c6e-be88-2e473d4ddf27/,Phil,,09/02/2017,12.0:35,12.0000000,48.092460000000,-4.296972000000,,Douarnenez - Finistère,47764,observation-67a1e424-6b56-4c6e-be88-2e473d4ddf27-2,https://biolit.fr/observations/observation-67a1e424-6b56-4c6e-be88-2e473d4ddf27-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070995.JPG,,FALSE, +N1,60369,sortie-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d,https://biolit.fr/sorties/sortie-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d/,Phil,,8/20/2017 0:00,10.0000000,11.0000000,47.895328000000,-3.967656000000,,La Forêt-Fouesnant - Finistère,47766,observation-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d,https://biolit.fr/observations/observation-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d/,Atelecyclus undecimdentatus,Grand crabe circulaire,,https://biolit.fr/wp-content/uploads/2023/07/20170820_110300.jpg,,TRUE, +N1,60369,sortie-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d,https://biolit.fr/sorties/sortie-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d/,Phil,,8/20/2017 0:00,10.0000000,11.0000000,47.895328000000,-3.967656000000,,La Forêt-Fouesnant - Finistère,47768,observation-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d-2,https://biolit.fr/observations/observation-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d-2/,Atelecyclus undecimdentatus,Grand crabe circulaire,,https://biolit.fr/wp-content/uploads/2023/07/20170820_110319.jpg,,TRUE, +N1,60369,sortie-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d,https://biolit.fr/sorties/sortie-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d/,Phil,,8/20/2017 0:00,10.0000000,11.0000000,47.895328000000,-3.967656000000,,La Forêt-Fouesnant - Finistère,47770,observation-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d-3,https://biolit.fr/observations/observation-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170820_105922.jpg,,FALSE, +N1,60369,sortie-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d,https://biolit.fr/sorties/sortie-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d/,Phil,,8/20/2017 0:00,10.0000000,11.0000000,47.895328000000,-3.967656000000,,La Forêt-Fouesnant - Finistère,47772,observation-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d-4,https://biolit.fr/observations/observation-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170820_110003.jpg,,FALSE, +N1,60369,sortie-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d,https://biolit.fr/sorties/sortie-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d/,Phil,,8/20/2017 0:00,10.0000000,11.0000000,47.895328000000,-3.967656000000,,La Forêt-Fouesnant - Finistère,47774,observation-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d-5,https://biolit.fr/observations/observation-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d-5/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/20170820_110218.jpg,,TRUE, +N1,60370,sortie-f1cfa09e-7cf0-4319-8d66-b27fd791fbbd,https://biolit.fr/sorties/sortie-f1cfa09e-7cf0-4319-8d66-b27fd791fbbd/,Phil,,09/07/2017,16.0000000,18.0000000,48.383242000000,-4.401335000000,,Plougastel-Daoulas - Finistère,47776,observation-f1cfa09e-7cf0-4319-8d66-b27fd791fbbd,https://biolit.fr/observations/observation-f1cfa09e-7cf0-4319-8d66-b27fd791fbbd/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170903_180639_0.jpg,,FALSE, +N1,60370,sortie-f1cfa09e-7cf0-4319-8d66-b27fd791fbbd,https://biolit.fr/sorties/sortie-f1cfa09e-7cf0-4319-8d66-b27fd791fbbd/,Phil,,09/07/2017,16.0000000,18.0000000,48.383242000000,-4.401335000000,,Plougastel-Daoulas - Finistère,47778,observation-f1cfa09e-7cf0-4319-8d66-b27fd791fbbd-2,https://biolit.fr/observations/observation-f1cfa09e-7cf0-4319-8d66-b27fd791fbbd-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170903_180734(0)_0.jpg,,FALSE, +N1,60370,sortie-f1cfa09e-7cf0-4319-8d66-b27fd791fbbd,https://biolit.fr/sorties/sortie-f1cfa09e-7cf0-4319-8d66-b27fd791fbbd/,Phil,,09/07/2017,16.0000000,18.0000000,48.383242000000,-4.401335000000,,Plougastel-Daoulas - Finistère,47780,observation-f1cfa09e-7cf0-4319-8d66-b27fd791fbbd-3,https://biolit.fr/observations/observation-f1cfa09e-7cf0-4319-8d66-b27fd791fbbd-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170903_180214.jpg,,FALSE, +N1,60371,sortie-b426676a-da0c-4942-8941-83fec9ef9247,https://biolit.fr/sorties/sortie-b426676a-da0c-4942-8941-83fec9ef9247/,Phil,,8/25/2017 0:00,12.0000000,12.0:55,47.872822000000,-3.909333000000,,Concarneau - Finistère,47782,observation-b426676a-da0c-4942-8941-83fec9ef9247,https://biolit.fr/observations/observation-b426676a-da0c-4942-8941-83fec9ef9247/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170825_125100.jpg,,FALSE, +N1,60372,sortie-b75dac7b-d9c8-46f3-bb5f-beacfa1d4a66,https://biolit.fr/sorties/sortie-b75dac7b-d9c8-46f3-bb5f-beacfa1d4a66/,Phil,,09/03/2017,18.0:25,18.0000000,48.37589100000,-4.411659000000,,Plougastel-Daoulas - Finistère,47784,observation-b75dac7b-d9c8-46f3-bb5f-beacfa1d4a66,https://biolit.fr/observations/observation-b75dac7b-d9c8-46f3-bb5f-beacfa1d4a66/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170903_182353.jpg,,FALSE, +N1,60372,sortie-b75dac7b-d9c8-46f3-bb5f-beacfa1d4a66,https://biolit.fr/sorties/sortie-b75dac7b-d9c8-46f3-bb5f-beacfa1d4a66/,Phil,,09/03/2017,18.0:25,18.0000000,48.37589100000,-4.411659000000,,Plougastel-Daoulas - Finistère,47786,observation-b75dac7b-d9c8-46f3-bb5f-beacfa1d4a66-2,https://biolit.fr/observations/observation-b75dac7b-d9c8-46f3-bb5f-beacfa1d4a66-2/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20170903_182721.jpg,,TRUE, +N1,60372,sortie-b75dac7b-d9c8-46f3-bb5f-beacfa1d4a66,https://biolit.fr/sorties/sortie-b75dac7b-d9c8-46f3-bb5f-beacfa1d4a66/,Phil,,09/03/2017,18.0:25,18.0000000,48.37589100000,-4.411659000000,,Plougastel-Daoulas - Finistère,47788,observation-b75dac7b-d9c8-46f3-bb5f-beacfa1d4a66-3,https://biolit.fr/observations/observation-b75dac7b-d9c8-46f3-bb5f-beacfa1d4a66-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170903_182551.jpg,,FALSE, +N1,60373,sortie-9bc98424-0049-4ffc-9582-f11cd72927a3,https://biolit.fr/sorties/sortie-9bc98424-0049-4ffc-9582-f11cd72927a3/,Phil,,8/20/2017 0:00,10.0:55,11.0000000,47.894755000000,-3.971287000000,,La Forêt-Fouesnant - Finistère,47790,observation-9bc98424-0049-4ffc-9582-f11cd72927a3,https://biolit.fr/observations/observation-9bc98424-0049-4ffc-9582-f11cd72927a3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170820_105719.jpg,,FALSE, +N1,60373,sortie-9bc98424-0049-4ffc-9582-f11cd72927a3,https://biolit.fr/sorties/sortie-9bc98424-0049-4ffc-9582-f11cd72927a3/,Phil,,8/20/2017 0:00,10.0:55,11.0000000,47.894755000000,-3.971287000000,,La Forêt-Fouesnant - Finistère,47792,observation-9bc98424-0049-4ffc-9582-f11cd72927a3-2,https://biolit.fr/observations/observation-9bc98424-0049-4ffc-9582-f11cd72927a3-2/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/20170820_105353.jpg,,TRUE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47794,observation-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de/,,,,https://biolit.fr/wp-content/uploads/2023/07/epave du ponton-bigue samsonne 1.png,,FALSE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47796,observation-5111f133-f2ac-4dfe-acee-fd58847756de-2,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/epave pontonbuguesamsonne2.png,,FALSE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47798,observation-5111f133-f2ac-4dfe-acee-fd58847756de-3,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/epavepontonbiguesamson5soet.png,,FALSE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47800,observation-5111f133-f2ac-4dfe-acee-fd58847756de-4,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/epavepontonbiguesamson3.pngsoet_0.png,,FALSE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47802,observation-5111f133-f2ac-4dfe-acee-fd58847756de-5,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de-5/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/2023/07/2soet0170906_095207A.png,,TRUE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47804,observation-5111f133-f2ac-4dfe-acee-fd58847756de-6,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de-6/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/2soetpatelles.png,,TRUE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47806,observation-5111f133-f2ac-4dfe-acee-fd58847756de-7,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170906_094209A.png,,FALSE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47808,observation-5111f133-f2ac-4dfe-acee-fd58847756de-8,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170906_094822A.png,,FALSE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47810,observation-5111f133-f2ac-4dfe-acee-fd58847756de-9,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170906_095200A.png,,FALSE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47812,observation-5111f133-f2ac-4dfe-acee-fd58847756de-10,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/digue.png,,FALSE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47814,observation-5111f133-f2ac-4dfe-acee-fd58847756de-11,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/lepave.png,,FALSE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47816,observation-5111f133-f2ac-4dfe-acee-fd58847756de-12,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/ophuresoet.png,,FALSE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47818,observation-5111f133-f2ac-4dfe-acee-fd58847756de-13,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de-13/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/oursin de corbieres.png,,TRUE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47820,observation-5111f133-f2ac-4dfe-acee-fd58847756de-14,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de-14/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/soet anémone0170905_132604A.png,,TRUE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47822,observation-5111f133-f2ac-4dfe-acee-fd58847756de-15,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/soetanemone.png,,FALSE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47824,observation-5111f133-f2ac-4dfe-acee-fd58847756de-16,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/soetanemonessuite.png,,FALSE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47826,observation-5111f133-f2ac-4dfe-acee-fd58847756de-17,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/soetavoir.png,,FALSE, +N1,60375,sortie-4cb9e29d-5151-42f1-9acf-155bf9fa1cd6,https://biolit.fr/sorties/sortie-4cb9e29d-5151-42f1-9acf-155bf9fa1cd6/,Phil,,09/03/2017,17.0:55,18.0000000,48.382883000000,-4.402580000000,,Plougastel Daoulas - Finistère,47828,observation-4cb9e29d-5151-42f1-9acf-155bf9fa1cd6,https://biolit.fr/observations/observation-4cb9e29d-5151-42f1-9acf-155bf9fa1cd6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170903_175954.jpg,,FALSE, +N1,60375,sortie-4cb9e29d-5151-42f1-9acf-155bf9fa1cd6,https://biolit.fr/sorties/sortie-4cb9e29d-5151-42f1-9acf-155bf9fa1cd6/,Phil,,09/03/2017,17.0:55,18.0000000,48.382883000000,-4.402580000000,,Plougastel Daoulas - Finistère,47830,observation-4cb9e29d-5151-42f1-9acf-155bf9fa1cd6-2,https://biolit.fr/observations/observation-4cb9e29d-5151-42f1-9acf-155bf9fa1cd6-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170903_175850.jpg,,TRUE, +N1,60375,sortie-4cb9e29d-5151-42f1-9acf-155bf9fa1cd6,https://biolit.fr/sorties/sortie-4cb9e29d-5151-42f1-9acf-155bf9fa1cd6/,Phil,,09/03/2017,17.0:55,18.0000000,48.382883000000,-4.402580000000,,Plougastel Daoulas - Finistère,47832,observation-4cb9e29d-5151-42f1-9acf-155bf9fa1cd6-3,https://biolit.fr/observations/observation-4cb9e29d-5151-42f1-9acf-155bf9fa1cd6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170903_180048.jpg,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47834,observation-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325/,Tripterygion delaisi,Triptérygion jaune,,https://biolit.fr/wp-content/uploads/2023/07/uranoscope.png,,TRUE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47836,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-2,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/surfacemuletssoet.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47838,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-3,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/sophie eti corbières.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47840,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-4,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/soetsurface de lo.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47842,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-5,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/soetsaupe.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47844,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-6,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/soetsablecorbieres.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47846,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-7,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-7/,Chromis chromis,Castagnole,,https://biolit.fr/wp-content/uploads/2023/07/soetdivcastagnolesetloups.png,,TRUE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47848,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-8,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/soetcorbieres.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47850,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-9,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/soet.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47852,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-10,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/snif.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47854,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-11,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-11/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/2023/07/saupessoetcorb.png,,TRUE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47856,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-12,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-12/,Serranus scriba,Serran-écriture,,https://biolit.fr/wp-content/uploads/2023/07/sartamboursoet.png,,TRUE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47858,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-13,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/poissons corbièressoet.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47862,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-15,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-15/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/oursinsoet.png,,TRUE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47864,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-16,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/muletssoet.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47866,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-17,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/loupssoetcorbieres.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47868,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-18,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/loupsoet.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47870,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-19,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/lepadogastersoet.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47872,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-20,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-20/,Tripterygion tripteronotum,Triptérygion rouge,,https://biolit.fr/wp-content/uploads/2023/07/lepadogasterfemellesoetcorbieres.png,,TRUE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47874,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-21,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/girelle so et.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47876,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-22,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/etoilemerrougesoet.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47878,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-23,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/etoilecastagnolesloup.png,",""false""",, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47880,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-24,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/épongeencroutantes.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47882,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-25,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/corbieressoet.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47884,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-26,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-26/,Chromis chromis,Castagnole,,https://biolit.fr/wp-content/uploads/2023/07/castagnolesoet.png,,TRUE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47886,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-27,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-27/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/anemone-scaled.jpg,,TRUE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47887,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-28,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/anemone jaunesoet.png,,TRUE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47889,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-29,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/anemone charnuesoet.png,,TRUE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47891,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-30,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/alguessoet.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47893,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Tripterygion delaisi,Triptérygion jaune,,https://biolit.fr/wp-content/uploads/2023/07/uranoscope.png,,TRUE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47894,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-2,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/surfacemuletssoet.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47895,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-3,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/sophie eti corbières.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47896,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-4,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/soetsurface de lo.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47897,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-5,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/soetsaupe.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47898,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-6,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/soetsablecorbieres.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47899,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-7,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-7/,Chromis chromis,Castagnole,,https://biolit.fr/wp-content/uploads/2023/07/soetdivcastagnolesetloups.png,,TRUE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47900,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-8,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/soetcorbieres.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47901,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-9,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/soet.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47902,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-10,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/snif.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47903,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-11,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-11/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/2023/07/saupessoetcorb.png,,TRUE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47904,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-12,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-12/,Serranus scriba,Serran-écriture,,https://biolit.fr/wp-content/uploads/2023/07/sartamboursoet.png,,TRUE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47905,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-13,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/poissons corbièressoet.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47906,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-14,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-14/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/padine soet.png,,TRUE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47907,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-15,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-15/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/oursinsoet.png,,TRUE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47908,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-16,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/muletssoet.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47909,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-17,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/loupssoetcorbieres.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47910,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-18,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/loupsoet.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47911,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-19,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/lepadogastersoet.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47912,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-20,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-20/,Tripterygion tripteronotum,Triptérygion rouge,,https://biolit.fr/wp-content/uploads/2023/07/lepadogasterfemellesoetcorbieres.png,,TRUE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47913,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-21,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/girelle so et.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47914,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-22,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/etoilemerrougesoet.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47915,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-23,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/etoilecastagnolesloup.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47916,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-24,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/épongeencroutantes.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47917,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-25,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/corbieressoet.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47918,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-26,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-26/,Chromis chromis,Castagnole,,https://biolit.fr/wp-content/uploads/2023/07/castagnolesoet.png,,TRUE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47919,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-27,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-27/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/anemone-scaled.jpg,,TRUE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47920,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-28,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/anemone jaunesoet.png,,TRUE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47921,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-29,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/anemone charnuesoet.png,,TRUE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47922,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-30,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/alguessoet.png,,FALSE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47923,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/2023/07/20160412_072926A.png,,TRUE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47925,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-2,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160412_072907A.png,,FALSE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47927,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-3,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160318_080928A.png,,FALSE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47929,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-4,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160412_072820A_0.png,,FALSE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47931,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-5,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160318_080523A.png,,FALSE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47933,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-6,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-6/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/20160318_080429A.png,,TRUE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47935,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-7,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160318_075658A.png,,FALSE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47937,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-8,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160318_074600A.png,,FALSE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47939,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-9,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160318_073616A.png,,FALSE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47941,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-10,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160315_071627A.png,,FALSE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47943,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-11,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160315_071549A.png,,FALSE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47945,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-12,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160315_071524A.png,,FALSE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47947,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-13,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160315_071503A.png,,FALSE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47949,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-14,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160315_071433A.png,,FALSE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47951,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-15,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160315_071102A.png,,FALSE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47953,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-16,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160315_070720A.png,,FALSE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47955,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-17,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160315_070532A.png,,FALSE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47957,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-18,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-18/,Coris julis,Girelle commune,,https://biolit.fr/wp-content/uploads/2023/07/20160315_071056A.png,,TRUE, +N1,60379,sortie-60130a62-387b-424b-b949-22fe72282d13,https://biolit.fr/sorties/sortie-60130a62-387b-424b-b949-22fe72282d13/,yvesguidat,,8/24/2017 0:00,9.0000000,13.0000000,43.106981000000,5.981512000000,,plage Magaud,47959,observation-60130a62-387b-424b-b949-22fe72282d13,https://biolit.fr/observations/observation-60130a62-387b-424b-b949-22fe72282d13/,,,,https://biolit.fr/wp-content/uploads/2023/07/163.jpg,,FALSE, +N1,60379,sortie-60130a62-387b-424b-b949-22fe72282d13,https://biolit.fr/sorties/sortie-60130a62-387b-424b-b949-22fe72282d13/,yvesguidat,,8/24/2017 0:00,9.0000000,13.0000000,43.106981000000,5.981512000000,,plage Magaud,47961,observation-60130a62-387b-424b-b949-22fe72282d13-2,https://biolit.fr/observations/observation-60130a62-387b-424b-b949-22fe72282d13-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/171.jpg,,FALSE, +N1,60379,sortie-60130a62-387b-424b-b949-22fe72282d13,https://biolit.fr/sorties/sortie-60130a62-387b-424b-b949-22fe72282d13/,yvesguidat,,8/24/2017 0:00,9.0000000,13.0000000,43.106981000000,5.981512000000,,plage Magaud,47963,observation-60130a62-387b-424b-b949-22fe72282d13-3,https://biolit.fr/observations/observation-60130a62-387b-424b-b949-22fe72282d13-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/167.jpg,,FALSE, +N1,60379,sortie-60130a62-387b-424b-b949-22fe72282d13,https://biolit.fr/sorties/sortie-60130a62-387b-424b-b949-22fe72282d13/,yvesguidat,,8/24/2017 0:00,9.0000000,13.0000000,43.106981000000,5.981512000000,,plage Magaud,47965,observation-60130a62-387b-424b-b949-22fe72282d13-4,https://biolit.fr/observations/observation-60130a62-387b-424b-b949-22fe72282d13-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/169.jpg,,FALSE, +N1,60380,sortie-2dd09945-b9b4-4fa5-a5e6-988b93c7d84e,https://biolit.fr/sorties/sortie-2dd09945-b9b4-4fa5-a5e6-988b93c7d84e/,RIEM,,8/22/2017 0:00,11.0000000,12.0000000,47.491861000000,-2.681346000000,,PENVINS,47967,observation-2dd09945-b9b4-4fa5-a5e6-988b93c7d84e,https://biolit.fr/observations/observation-2dd09945-b9b4-4fa5-a5e6-988b93c7d84e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040125_0.JPG,,FALSE, +N1,60380,sortie-2dd09945-b9b4-4fa5-a5e6-988b93c7d84e,https://biolit.fr/sorties/sortie-2dd09945-b9b4-4fa5-a5e6-988b93c7d84e/,RIEM,,8/22/2017 0:00,11.0000000,12.0000000,47.491861000000,-2.681346000000,,PENVINS,47969,observation-2dd09945-b9b4-4fa5-a5e6-988b93c7d84e-2,https://biolit.fr/observations/observation-2dd09945-b9b4-4fa5-a5e6-988b93c7d84e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040116.JPG,,FALSE, +N1,60381,sortie-a3863959-c894-46da-80ff-675904b85dad,https://biolit.fr/sorties/sortie-a3863959-c894-46da-80ff-675904b85dad/,Phil,,4/14/2017 0:00,17.000005,17.0000000,48.837751000000,-3.00594000000,,Île-de-Bréhat - Côtes-d'Armor,47971,observation-a3863959-c894-46da-80ff-675904b85dad,https://biolit.fr/observations/observation-a3863959-c894-46da-80ff-675904b85dad/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1070133.JPG,,TRUE, +N1,60381,sortie-a3863959-c894-46da-80ff-675904b85dad,https://biolit.fr/sorties/sortie-a3863959-c894-46da-80ff-675904b85dad/,Phil,,4/14/2017 0:00,17.000005,17.0000000,48.837751000000,-3.00594000000,,Île-de-Bréhat - Côtes-d'Armor,47973,observation-a3863959-c894-46da-80ff-675904b85dad-2,https://biolit.fr/observations/observation-a3863959-c894-46da-80ff-675904b85dad-2/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1070132.JPG,,TRUE, +N1,60381,sortie-a3863959-c894-46da-80ff-675904b85dad,https://biolit.fr/sorties/sortie-a3863959-c894-46da-80ff-675904b85dad/,Phil,,4/14/2017 0:00,17.000005,17.0000000,48.837751000000,-3.00594000000,,Île-de-Bréhat - Côtes-d'Armor,47975,observation-a3863959-c894-46da-80ff-675904b85dad-3,https://biolit.fr/observations/observation-a3863959-c894-46da-80ff-675904b85dad-3/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1070130.JPG,,TRUE, +N1,60381,sortie-a3863959-c894-46da-80ff-675904b85dad,https://biolit.fr/sorties/sortie-a3863959-c894-46da-80ff-675904b85dad/,Phil,,4/14/2017 0:00,17.000005,17.0000000,48.837751000000,-3.00594000000,,Île-de-Bréhat - Côtes-d'Armor,47977,observation-a3863959-c894-46da-80ff-675904b85dad-4,https://biolit.fr/observations/observation-a3863959-c894-46da-80ff-675904b85dad-4/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1070135.JPG,,TRUE, +N1,60382,sortie-1febdfd1-4f93-4f29-bb8c-123f16cee7bd,https://biolit.fr/sorties/sortie-1febdfd1-4f93-4f29-bb8c-123f16cee7bd/,Phil,,8/20/2017 0:00,10.0:45,10.0:55,47.89582600000,-3.969126000000,,La Forêt-Fouesnant - Finistère,47979,observation-1febdfd1-4f93-4f29-bb8c-123f16cee7bd,https://biolit.fr/observations/observation-1febdfd1-4f93-4f29-bb8c-123f16cee7bd/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170820_105143.jpg,,FALSE, +N1,60382,sortie-1febdfd1-4f93-4f29-bb8c-123f16cee7bd,https://biolit.fr/sorties/sortie-1febdfd1-4f93-4f29-bb8c-123f16cee7bd/,Phil,,8/20/2017 0:00,10.0:45,10.0:55,47.89582600000,-3.969126000000,,La Forêt-Fouesnant - Finistère,47981,observation-1febdfd1-4f93-4f29-bb8c-123f16cee7bd-2,https://biolit.fr/observations/observation-1febdfd1-4f93-4f29-bb8c-123f16cee7bd-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170820_104900.jpg,,FALSE, +N1,60382,sortie-1febdfd1-4f93-4f29-bb8c-123f16cee7bd,https://biolit.fr/sorties/sortie-1febdfd1-4f93-4f29-bb8c-123f16cee7bd/,Phil,,8/20/2017 0:00,10.0:45,10.0:55,47.89582600000,-3.969126000000,,La Forêt-Fouesnant - Finistère,47983,observation-1febdfd1-4f93-4f29-bb8c-123f16cee7bd-3,https://biolit.fr/observations/observation-1febdfd1-4f93-4f29-bb8c-123f16cee7bd-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170820_105228.jpg,,FALSE, +N1,60382,sortie-1febdfd1-4f93-4f29-bb8c-123f16cee7bd,https://biolit.fr/sorties/sortie-1febdfd1-4f93-4f29-bb8c-123f16cee7bd/,Phil,,8/20/2017 0:00,10.0:45,10.0:55,47.89582600000,-3.969126000000,,La Forêt-Fouesnant - Finistère,47985,observation-1febdfd1-4f93-4f29-bb8c-123f16cee7bd-4,https://biolit.fr/observations/observation-1febdfd1-4f93-4f29-bb8c-123f16cee7bd-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170820_105307.jpg,,FALSE, +N1,60383,sortie-2790f0c9-91ab-4b60-b971-773988338bc5,https://biolit.fr/sorties/sortie-2790f0c9-91ab-4b60-b971-773988338bc5/,azelie,,7/30/2017 0:00,17.0:25,17.0:35,48.94716600000,-1.565011000000,,Lingreville,47987,observation-2790f0c9-91ab-4b60-b971-773988338bc5,https://biolit.fr/observations/observation-2790f0c9-91ab-4b60-b971-773988338bc5/,Arenicola marina,Arénicole,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4379_0-scaled.jpg,,TRUE, +N1,60383,sortie-2790f0c9-91ab-4b60-b971-773988338bc5,https://biolit.fr/sorties/sortie-2790f0c9-91ab-4b60-b971-773988338bc5/,azelie,,7/30/2017 0:00,17.0:25,17.0:35,48.94716600000,-1.565011000000,,Lingreville,47989,observation-2790f0c9-91ab-4b60-b971-773988338bc5-2,https://biolit.fr/observations/observation-2790f0c9-91ab-4b60-b971-773988338bc5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4381-scaled.jpg,,FALSE, +N1,60383,sortie-2790f0c9-91ab-4b60-b971-773988338bc5,https://biolit.fr/sorties/sortie-2790f0c9-91ab-4b60-b971-773988338bc5/,azelie,,7/30/2017 0:00,17.0:25,17.0:35,48.94716600000,-1.565011000000,,Lingreville,47991,observation-2790f0c9-91ab-4b60-b971-773988338bc5-3,https://biolit.fr/observations/observation-2790f0c9-91ab-4b60-b971-773988338bc5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4384-scaled.jpg,,FALSE, +N1,60383,sortie-2790f0c9-91ab-4b60-b971-773988338bc5,https://biolit.fr/sorties/sortie-2790f0c9-91ab-4b60-b971-773988338bc5/,azelie,,7/30/2017 0:00,17.0:25,17.0:35,48.94716600000,-1.565011000000,,Lingreville,47993,observation-2790f0c9-91ab-4b60-b971-773988338bc5-4,https://biolit.fr/observations/observation-2790f0c9-91ab-4b60-b971-773988338bc5-4/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4388-scaled.jpg,,TRUE, +N1,60383,sortie-2790f0c9-91ab-4b60-b971-773988338bc5,https://biolit.fr/sorties/sortie-2790f0c9-91ab-4b60-b971-773988338bc5/,azelie,,7/30/2017 0:00,17.0:25,17.0:35,48.94716600000,-1.565011000000,,Lingreville,47995,observation-2790f0c9-91ab-4b60-b971-773988338bc5-5,https://biolit.fr/observations/observation-2790f0c9-91ab-4b60-b971-773988338bc5-5/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4393-scaled.jpg,,TRUE, +N1,60383,sortie-2790f0c9-91ab-4b60-b971-773988338bc5,https://biolit.fr/sorties/sortie-2790f0c9-91ab-4b60-b971-773988338bc5/,azelie,,7/30/2017 0:00,17.0:25,17.0:35,48.94716600000,-1.565011000000,,Lingreville,47997,observation-2790f0c9-91ab-4b60-b971-773988338bc5-6,https://biolit.fr/observations/observation-2790f0c9-91ab-4b60-b971-773988338bc5-6/,Diogenes pugilator,Diogène d'Europe,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4397-scaled.jpg,,TRUE, +N1,60383,sortie-2790f0c9-91ab-4b60-b971-773988338bc5,https://biolit.fr/sorties/sortie-2790f0c9-91ab-4b60-b971-773988338bc5/,azelie,,7/30/2017 0:00,17.0:25,17.0:35,48.94716600000,-1.565011000000,,Lingreville,47999,observation-2790f0c9-91ab-4b60-b971-773988338bc5-7,https://biolit.fr/observations/observation-2790f0c9-91ab-4b60-b971-773988338bc5-7/,Diogenes pugilator,Diogène d'Europe,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4398-scaled.jpg,,TRUE, +N1,60383,sortie-2790f0c9-91ab-4b60-b971-773988338bc5,https://biolit.fr/sorties/sortie-2790f0c9-91ab-4b60-b971-773988338bc5/,azelie,,7/30/2017 0:00,17.0:25,17.0:35,48.94716600000,-1.565011000000,,Lingreville,48001,observation-2790f0c9-91ab-4b60-b971-773988338bc5-8,https://biolit.fr/observations/observation-2790f0c9-91ab-4b60-b971-773988338bc5-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4382-scaled.jpg,,FALSE, +N1,60384,sortie-30724488-ec30-48bf-b5bb-3e1896c5b44a,https://biolit.fr/sorties/sortie-30724488-ec30-48bf-b5bb-3e1896c5b44a/,azelie,,7/30/2017 0:00,17.0000000,17.0:25,48.958664000000,-1.562135000000,,Plage de Lingreville,48003,observation-30724488-ec30-48bf-b5bb-3e1896c5b44a,https://biolit.fr/observations/observation-30724488-ec30-48bf-b5bb-3e1896c5b44a/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4372-scaled.jpg,,FALSE, +N1,60384,sortie-30724488-ec30-48bf-b5bb-3e1896c5b44a,https://biolit.fr/sorties/sortie-30724488-ec30-48bf-b5bb-3e1896c5b44a/,azelie,,7/30/2017 0:00,17.0000000,17.0:25,48.958664000000,-1.562135000000,,Plage de Lingreville,48005,observation-30724488-ec30-48bf-b5bb-3e1896c5b44a-2,https://biolit.fr/observations/observation-30724488-ec30-48bf-b5bb-3e1896c5b44a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4374_0-scaled.jpg,,FALSE, +N1,60384,sortie-30724488-ec30-48bf-b5bb-3e1896c5b44a,https://biolit.fr/sorties/sortie-30724488-ec30-48bf-b5bb-3e1896c5b44a/,azelie,,7/30/2017 0:00,17.0000000,17.0:25,48.958664000000,-1.562135000000,,Plage de Lingreville,48007,observation-30724488-ec30-48bf-b5bb-3e1896c5b44a-3,https://biolit.fr/observations/observation-30724488-ec30-48bf-b5bb-3e1896c5b44a-3/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_4377-scaled.jpg,,TRUE, +N1,60384,sortie-30724488-ec30-48bf-b5bb-3e1896c5b44a,https://biolit.fr/sorties/sortie-30724488-ec30-48bf-b5bb-3e1896c5b44a/,azelie,,7/30/2017 0:00,17.0000000,17.0:25,48.958664000000,-1.562135000000,,Plage de Lingreville,48009,observation-30724488-ec30-48bf-b5bb-3e1896c5b44a-4,https://biolit.fr/observations/observation-30724488-ec30-48bf-b5bb-3e1896c5b44a-4/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4378-scaled.jpg,,TRUE, +N1,60385,sortie-bd6f77a0-43c2-46de-af87-bcf56eb0d288,https://biolit.fr/sorties/sortie-bd6f77a0-43c2-46de-af87-bcf56eb0d288/,Observe la nature,,8/20/2017 0:00,15.0000000,15.0000000,43.396284000000,3.69632500000,,Port de Séte,48011,observation-bd6f77a0-43c2-46de-af87-bcf56eb0d288,https://biolit.fr/observations/observation-bd6f77a0-43c2-46de-af87-bcf56eb0d288/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/2023/07/DSC04155_0-scaled.jpg,,TRUE, +N1,60385,sortie-bd6f77a0-43c2-46de-af87-bcf56eb0d288,https://biolit.fr/sorties/sortie-bd6f77a0-43c2-46de-af87-bcf56eb0d288/,Observe la nature,,8/20/2017 0:00,15.0000000,15.0000000,43.396284000000,3.69632500000,,Port de Séte,48013,observation-bd6f77a0-43c2-46de-af87-bcf56eb0d288-2,https://biolit.fr/observations/observation-bd6f77a0-43c2-46de-af87-bcf56eb0d288-2/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/2023/07/DSC04168-scaled.jpg,,TRUE, +N1,60386,sortie-e0063c0a-8759-4a55-ae5c-da066db3fa96,https://biolit.fr/sorties/sortie-e0063c0a-8759-4a55-ae5c-da066db3fa96/,Phil,,4/14/2017 0:00,17.0:25,17.0000000,48.836827000000,-3.007338000000,,Île-de-Bréhat - Côtes-d'Armor ,48015,observation-e0063c0a-8759-4a55-ae5c-da066db3fa96,https://biolit.fr/observations/observation-e0063c0a-8759-4a55-ae5c-da066db3fa96/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070138.JPG,,FALSE, +N1,60386,sortie-e0063c0a-8759-4a55-ae5c-da066db3fa96,https://biolit.fr/sorties/sortie-e0063c0a-8759-4a55-ae5c-da066db3fa96/,Phil,,4/14/2017 0:00,17.0:25,17.0000000,48.836827000000,-3.007338000000,,Île-de-Bréhat - Côtes-d'Armor ,48017,observation-e0063c0a-8759-4a55-ae5c-da066db3fa96-2,https://biolit.fr/observations/observation-e0063c0a-8759-4a55-ae5c-da066db3fa96-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070136.JPG,,TRUE, +N1,60387,sortie-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/sorties/sortie-3f3346cc-3681-4d11-9345-69750230fbda/,Etienne Pauly,,8/16/2017 0:00,17.0000000,17.0:45,47.245558000000,-2.321849000000,,"Plage de Bonne Source, Sainte Marguerite de Pornichet",48019,observation-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/observations/observation-3f3346cc-3681-4d11-9345-69750230fbda/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algue brune 2-scaled.jpg,,FALSE, +N1,60387,sortie-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/sorties/sortie-3f3346cc-3681-4d11-9345-69750230fbda/,Etienne Pauly,,8/16/2017 0:00,17.0000000,17.0:45,47.245558000000,-2.321849000000,,"Plage de Bonne Source, Sainte Marguerite de Pornichet",48021,observation-3f3346cc-3681-4d11-9345-69750230fbda-2,https://biolit.fr/observations/observation-3f3346cc-3681-4d11-9345-69750230fbda-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algue brune et bigorneau-scaled.jpg,,FALSE, +N1,60387,sortie-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/sorties/sortie-3f3346cc-3681-4d11-9345-69750230fbda/,Etienne Pauly,,8/16/2017 0:00,17.0000000,17.0:45,47.245558000000,-2.321849000000,,"Plage de Bonne Source, Sainte Marguerite de Pornichet",48023,observation-3f3346cc-3681-4d11-9345-69750230fbda-3,https://biolit.fr/observations/observation-3f3346cc-3681-4d11-9345-69750230fbda-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/Algue brune.png,,FALSE, +N1,60387,sortie-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/sorties/sortie-3f3346cc-3681-4d11-9345-69750230fbda/,Etienne Pauly,,8/16/2017 0:00,17.0000000,17.0:45,47.245558000000,-2.321849000000,,"Plage de Bonne Source, Sainte Marguerite de Pornichet",48024,observation-3f3346cc-3681-4d11-9345-69750230fbda-4,https://biolit.fr/observations/observation-3f3346cc-3681-4d11-9345-69750230fbda-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Animal de mer fixé à un support-scaled.jpg,,FALSE, +N1,60387,sortie-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/sorties/sortie-3f3346cc-3681-4d11-9345-69750230fbda/,Etienne Pauly,,8/16/2017 0:00,17.0000000,17.0:45,47.245558000000,-2.321849000000,,"Plage de Bonne Source, Sainte Marguerite de Pornichet",48026,observation-3f3346cc-3681-4d11-9345-69750230fbda-5,https://biolit.fr/observations/observation-3f3346cc-3681-4d11-9345-69750230fbda-5/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/Laminaire 2-scaled.jpg,,TRUE, +N1,60387,sortie-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/sorties/sortie-3f3346cc-3681-4d11-9345-69750230fbda/,Etienne Pauly,,8/16/2017 0:00,17.0000000,17.0:45,47.245558000000,-2.321849000000,,"Plage de Bonne Source, Sainte Marguerite de Pornichet",48028,observation-3f3346cc-3681-4d11-9345-69750230fbda-6,https://biolit.fr/observations/observation-3f3346cc-3681-4d11-9345-69750230fbda-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Laminaire-scaled.jpg,,FALSE, +N1,60387,sortie-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/sorties/sortie-3f3346cc-3681-4d11-9345-69750230fbda/,Etienne Pauly,,8/16/2017 0:00,17.0000000,17.0:45,47.245558000000,-2.321849000000,,"Plage de Bonne Source, Sainte Marguerite de Pornichet",48030,observation-3f3346cc-3681-4d11-9345-69750230fbda-7,https://biolit.fr/observations/observation-3f3346cc-3681-4d11-9345-69750230fbda-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Moules et bigorneaux-scaled.jpg,,FALSE, +N1,60387,sortie-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/sorties/sortie-3f3346cc-3681-4d11-9345-69750230fbda/,Etienne Pauly,,8/16/2017 0:00,17.0000000,17.0:45,47.245558000000,-2.321849000000,,"Plage de Bonne Source, Sainte Marguerite de Pornichet",48032,observation-3f3346cc-3681-4d11-9345-69750230fbda-8,https://biolit.fr/observations/observation-3f3346cc-3681-4d11-9345-69750230fbda-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patella-scaled.jpg,,FALSE, +N1,60387,sortie-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/sorties/sortie-3f3346cc-3681-4d11-9345-69750230fbda/,Etienne Pauly,,8/16/2017 0:00,17.0000000,17.0:45,47.245558000000,-2.321849000000,,"Plage de Bonne Source, Sainte Marguerite de Pornichet",48034,observation-3f3346cc-3681-4d11-9345-69750230fbda-9,https://biolit.fr/observations/observation-3f3346cc-3681-4d11-9345-69750230fbda-9/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Sorte de petite anémone de mer-scaled.jpg,,TRUE, +N1,60387,sortie-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/sorties/sortie-3f3346cc-3681-4d11-9345-69750230fbda/,Etienne Pauly,,8/16/2017 0:00,17.0000000,17.0:45,47.245558000000,-2.321849000000,,"Plage de Bonne Source, Sainte Marguerite de Pornichet",48036,observation-3f3346cc-3681-4d11-9345-69750230fbda-10,https://biolit.fr/observations/observation-3f3346cc-3681-4d11-9345-69750230fbda-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algues vertes 2-scaled.jpg,,FALSE, +N1,60387,sortie-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/sorties/sortie-3f3346cc-3681-4d11-9345-69750230fbda/,Etienne Pauly,,8/16/2017 0:00,17.0000000,17.0:45,47.245558000000,-2.321849000000,,"Plage de Bonne Source, Sainte Marguerite de Pornichet",48038,observation-3f3346cc-3681-4d11-9345-69750230fbda-11,https://biolit.fr/observations/observation-3f3346cc-3681-4d11-9345-69750230fbda-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algues vertes-scaled.jpg,,FALSE, +N1,60387,sortie-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/sorties/sortie-3f3346cc-3681-4d11-9345-69750230fbda/,Etienne Pauly,,8/16/2017 0:00,17.0000000,17.0:45,47.245558000000,-2.321849000000,,"Plage de Bonne Source, Sainte Marguerite de Pornichet",48040,observation-3f3346cc-3681-4d11-9345-69750230fbda-12,https://biolit.fr/observations/observation-3f3346cc-3681-4d11-9345-69750230fbda-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algues brunes 3-scaled.jpg,,FALSE, +N1,60387,sortie-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/sorties/sortie-3f3346cc-3681-4d11-9345-69750230fbda/,Etienne Pauly,,8/16/2017 0:00,17.0000000,17.0:45,47.245558000000,-2.321849000000,,"Plage de Bonne Source, Sainte Marguerite de Pornichet",48042,observation-3f3346cc-3681-4d11-9345-69750230fbda-13,https://biolit.fr/observations/observation-3f3346cc-3681-4d11-9345-69750230fbda-13/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/Apercu global des algues vertes-scaled.jpg,,TRUE, +N1,60387,sortie-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/sorties/sortie-3f3346cc-3681-4d11-9345-69750230fbda/,Etienne Pauly,,8/16/2017 0:00,17.0000000,17.0:45,47.245558000000,-2.321849000000,,"Plage de Bonne Source, Sainte Marguerite de Pornichet",48044,observation-3f3346cc-3681-4d11-9345-69750230fbda-14,https://biolit.fr/observations/observation-3f3346cc-3681-4d11-9345-69750230fbda-14/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Bigorneaux-scaled.jpg,,TRUE, +N1,60387,sortie-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/sorties/sortie-3f3346cc-3681-4d11-9345-69750230fbda/,Etienne Pauly,,8/16/2017 0:00,17.0000000,17.0:45,47.245558000000,-2.321849000000,,"Plage de Bonne Source, Sainte Marguerite de Pornichet",48046,observation-3f3346cc-3681-4d11-9345-69750230fbda-15,https://biolit.fr/observations/observation-3f3346cc-3681-4d11-9345-69750230fbda-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lignes de petites moules-scaled.jpg,,FALSE, +N1,60387,sortie-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/sorties/sortie-3f3346cc-3681-4d11-9345-69750230fbda/,Etienne Pauly,,8/16/2017 0:00,17.0000000,17.0:45,47.245558000000,-2.321849000000,,"Plage de Bonne Source, Sainte Marguerite de Pornichet",48048,observation-3f3346cc-3681-4d11-9345-69750230fbda-16,https://biolit.fr/observations/observation-3f3346cc-3681-4d11-9345-69750230fbda-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Moules et bigorneaux 2-scaled.jpg,,FALSE, +N1,60388,sortie-3c387959-c71b-492e-a956-2af0dfd1fa3b,https://biolit.fr/sorties/sortie-3c387959-c71b-492e-a956-2af0dfd1fa3b/,Sophie Etienne,,8/16/2017 0:00,19.0000000,21.0000000,43.20759900000,5.33790100000,,"Marseille, Les Pharillons",48050,observation-3c387959-c71b-492e-a956-2af0dfd1fa3b,https://biolit.fr/observations/observation-3c387959-c71b-492e-a956-2af0dfd1fa3b/,Paramuricea clavata,Gorgone pourpre,,https://biolit.fr/wp-content/uploads/2023/07/sefarillongogonerouge.png,,TRUE, +N1,60388,sortie-3c387959-c71b-492e-a956-2af0dfd1fa3b,https://biolit.fr/sorties/sortie-3c387959-c71b-492e-a956-2af0dfd1fa3b/,Sophie Etienne,,8/16/2017 0:00,19.0000000,21.0000000,43.20759900000,5.33790100000,,"Marseille, Les Pharillons",48052,observation-3c387959-c71b-492e-a956-2af0dfd1fa3b-2,https://biolit.fr/observations/observation-3c387959-c71b-492e-a956-2af0dfd1fa3b-2/,Chromis chromis,Castagnole,,https://biolit.fr/wp-content/uploads/2023/07/castagnolessurparoiesefarillon.png,,TRUE, +N1,60388,sortie-3c387959-c71b-492e-a956-2af0dfd1fa3b,https://biolit.fr/sorties/sortie-3c387959-c71b-492e-a956-2af0dfd1fa3b/,Sophie Etienne,,8/16/2017 0:00,19.0000000,21.0000000,43.20759900000,5.33790100000,,"Marseille, Les Pharillons",48054,observation-3c387959-c71b-492e-a956-2af0dfd1fa3b-3,https://biolit.fr/observations/observation-3c387959-c71b-492e-a956-2af0dfd1fa3b-3/,Paramuricea clavata,Gorgone pourpre,,https://biolit.fr/wp-content/uploads/2023/07/seépongeelephan.png,,TRUE, +N1,60388,sortie-3c387959-c71b-492e-a956-2af0dfd1fa3b,https://biolit.fr/sorties/sortie-3c387959-c71b-492e-a956-2af0dfd1fa3b/,Sophie Etienne,,8/16/2017 0:00,19.0000000,21.0000000,43.20759900000,5.33790100000,,"Marseille, Les Pharillons",48056,observation-3c387959-c71b-492e-a956-2af0dfd1fa3b-4,https://biolit.fr/observations/observation-3c387959-c71b-492e-a956-2af0dfd1fa3b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/bbgrandenacre.png,,FALSE, +N1,60389,sortie-4a178e49-c3ff-4368-b049-bb8e798e4fd8,https://biolit.fr/sorties/sortie-4a178e49-c3ff-4368-b049-bb8e798e4fd8/,Septentrion Environnement,,6/25/2017 0:00,10.0000000,11.0000000,43.207828000000,5.338455000000,,Les Pharillons,48058,observation-4a178e49-c3ff-4368-b049-bb8e798e4fd8,https://biolit.fr/observations/observation-4a178e49-c3ff-4368-b049-bb8e798e4fd8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8764-2-scaled.jpg,,FALSE, +N1,60390,sortie-e1aa4dbf-321d-4566-908e-651ac208b352,https://biolit.fr/sorties/sortie-e1aa4dbf-321d-4566-908e-651ac208b352/,Phil,,4/14/2017 0:00,17.0000000,17.0:35,48.836265000000,-3.008253000000,,Île-de-Bréhat - Côtes-d'Armor,48060,observation-e1aa4dbf-321d-4566-908e-651ac208b352,https://biolit.fr/observations/observation-e1aa4dbf-321d-4566-908e-651ac208b352/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070142.JPG,,TRUE, +N1,60390,sortie-e1aa4dbf-321d-4566-908e-651ac208b352,https://biolit.fr/sorties/sortie-e1aa4dbf-321d-4566-908e-651ac208b352/,Phil,,4/14/2017 0:00,17.0000000,17.0:35,48.836265000000,-3.008253000000,,Île-de-Bréhat - Côtes-d'Armor,48062,observation-e1aa4dbf-321d-4566-908e-651ac208b352-2,https://biolit.fr/observations/observation-e1aa4dbf-321d-4566-908e-651ac208b352-2/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1070143.JPG,,TRUE, +N1,60390,sortie-e1aa4dbf-321d-4566-908e-651ac208b352,https://biolit.fr/sorties/sortie-e1aa4dbf-321d-4566-908e-651ac208b352/,Phil,,4/14/2017 0:00,17.0000000,17.0:35,48.836265000000,-3.008253000000,,Île-de-Bréhat - Côtes-d'Armor,48064,observation-e1aa4dbf-321d-4566-908e-651ac208b352-3,https://biolit.fr/observations/observation-e1aa4dbf-321d-4566-908e-651ac208b352-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070146.JPG,,FALSE, +N1,60391,sortie-3131b0fd-0070-4186-9131-7d82ccbb89ca,https://biolit.fr/sorties/sortie-3131b0fd-0070-4186-9131-7d82ccbb89ca/,azelie,,08/06/2017,12.000005,12.0000000,48.950717000000,-1.56262900000,,Plage de Lingreville,48066,observation-3131b0fd-0070-4186-9131-7d82ccbb89ca,https://biolit.fr/observations/observation-3131b0fd-0070-4186-9131-7d82ccbb89ca/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4479-scaled.jpg,,TRUE, +N1,60391,sortie-3131b0fd-0070-4186-9131-7d82ccbb89ca,https://biolit.fr/sorties/sortie-3131b0fd-0070-4186-9131-7d82ccbb89ca/,azelie,,08/06/2017,12.000005,12.0000000,48.950717000000,-1.56262900000,,Plage de Lingreville,48068,observation-3131b0fd-0070-4186-9131-7d82ccbb89ca-2,https://biolit.fr/observations/observation-3131b0fd-0070-4186-9131-7d82ccbb89ca-2/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4490-scaled.jpg,,TRUE, +N1,60391,sortie-3131b0fd-0070-4186-9131-7d82ccbb89ca,https://biolit.fr/sorties/sortie-3131b0fd-0070-4186-9131-7d82ccbb89ca/,azelie,,08/06/2017,12.000005,12.0000000,48.950717000000,-1.56262900000,,Plage de Lingreville,48070,observation-3131b0fd-0070-4186-9131-7d82ccbb89ca-3,https://biolit.fr/observations/observation-3131b0fd-0070-4186-9131-7d82ccbb89ca-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4480-scaled.jpg,,FALSE, +N1,60391,sortie-3131b0fd-0070-4186-9131-7d82ccbb89ca,https://biolit.fr/sorties/sortie-3131b0fd-0070-4186-9131-7d82ccbb89ca/,azelie,,08/06/2017,12.000005,12.0000000,48.950717000000,-1.56262900000,,Plage de Lingreville,48072,observation-3131b0fd-0070-4186-9131-7d82ccbb89ca-4,https://biolit.fr/observations/observation-3131b0fd-0070-4186-9131-7d82ccbb89ca-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4482.jpg,,FALSE, +N1,60391,sortie-3131b0fd-0070-4186-9131-7d82ccbb89ca,https://biolit.fr/sorties/sortie-3131b0fd-0070-4186-9131-7d82ccbb89ca/,azelie,,08/06/2017,12.000005,12.0000000,48.950717000000,-1.56262900000,,Plage de Lingreville,48074,observation-3131b0fd-0070-4186-9131-7d82ccbb89ca-5,https://biolit.fr/observations/observation-3131b0fd-0070-4186-9131-7d82ccbb89ca-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4478-scaled.jpg,,FALSE, +N1,60391,sortie-3131b0fd-0070-4186-9131-7d82ccbb89ca,https://biolit.fr/sorties/sortie-3131b0fd-0070-4186-9131-7d82ccbb89ca/,azelie,,08/06/2017,12.000005,12.0000000,48.950717000000,-1.56262900000,,Plage de Lingreville,48076,observation-3131b0fd-0070-4186-9131-7d82ccbb89ca-6,https://biolit.fr/observations/observation-3131b0fd-0070-4186-9131-7d82ccbb89ca-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4486-scaled.jpg,,FALSE, +N1,60392,sortie-3e8cf924-8671-42e8-97a6-0f3a5f03389e,https://biolit.fr/sorties/sortie-3e8cf924-8671-42e8-97a6-0f3a5f03389e/,RIEM,,08/10/2017,11.0:45,12.0:45,47.474373000000,-2.721665000000,,"Plage de Kercouedo, Arzon",48078,observation-3e8cf924-8671-42e8-97a6-0f3a5f03389e,https://biolit.fr/observations/observation-3e8cf924-8671-42e8-97a6-0f3a5f03389e/,Thunnus thynnus,Thon rouge,,https://biolit.fr/wp-content/uploads/2023/07/P1020231_0.JPG,,TRUE, +N1,60392,sortie-3e8cf924-8671-42e8-97a6-0f3a5f03389e,https://biolit.fr/sorties/sortie-3e8cf924-8671-42e8-97a6-0f3a5f03389e/,RIEM,,08/10/2017,11.0:45,12.0:45,47.474373000000,-2.721665000000,,"Plage de Kercouedo, Arzon",48080,observation-3e8cf924-8671-42e8-97a6-0f3a5f03389e-2,https://biolit.fr/observations/observation-3e8cf924-8671-42e8-97a6-0f3a5f03389e-2/,Thunnus thynnus,Thon rouge,,https://biolit.fr/wp-content/uploads/2023/07/P1020232.JPG,,TRUE, +N1,60392,sortie-3e8cf924-8671-42e8-97a6-0f3a5f03389e,https://biolit.fr/sorties/sortie-3e8cf924-8671-42e8-97a6-0f3a5f03389e/,RIEM,,08/10/2017,11.0:45,12.0:45,47.474373000000,-2.721665000000,,"Plage de Kercouedo, Arzon",48082,observation-3e8cf924-8671-42e8-97a6-0f3a5f03389e-3,https://biolit.fr/observations/observation-3e8cf924-8671-42e8-97a6-0f3a5f03389e-3/,Thunnus thynnus,Thon rouge,,https://biolit.fr/wp-content/uploads/2023/07/P1020233.JPG,,TRUE, +N1,60392,sortie-3e8cf924-8671-42e8-97a6-0f3a5f03389e,https://biolit.fr/sorties/sortie-3e8cf924-8671-42e8-97a6-0f3a5f03389e/,RIEM,,08/10/2017,11.0:45,12.0:45,47.474373000000,-2.721665000000,,"Plage de Kercouedo, Arzon",48084,observation-3e8cf924-8671-42e8-97a6-0f3a5f03389e-4,https://biolit.fr/observations/observation-3e8cf924-8671-42e8-97a6-0f3a5f03389e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030070.JPG,,FALSE, +N1,60392,sortie-3e8cf924-8671-42e8-97a6-0f3a5f03389e,https://biolit.fr/sorties/sortie-3e8cf924-8671-42e8-97a6-0f3a5f03389e/,RIEM,,08/10/2017,11.0:45,12.0:45,47.474373000000,-2.721665000000,,"Plage de Kercouedo, Arzon",48086,observation-3e8cf924-8671-42e8-97a6-0f3a5f03389e-5,https://biolit.fr/observations/observation-3e8cf924-8671-42e8-97a6-0f3a5f03389e-5/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/P1030071.JPG,,TRUE, +N1,60393,sortie-54523b18-a289-438c-862d-0504907bc2ac,https://biolit.fr/sorties/sortie-54523b18-a289-438c-862d-0504907bc2ac/,Phil,,08/05/2017,13.0000000,13.0:55,47.835038000000,-4.176703000000,,Loctudy - Finistère,48088,observation-54523b18-a289-438c-862d-0504907bc2ac,https://biolit.fr/observations/observation-54523b18-a289-438c-862d-0504907bc2ac/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1070745.JPG,,TRUE, +N1,60393,sortie-54523b18-a289-438c-862d-0504907bc2ac,https://biolit.fr/sorties/sortie-54523b18-a289-438c-862d-0504907bc2ac/,Phil,,08/05/2017,13.0000000,13.0:55,47.835038000000,-4.176703000000,,Loctudy - Finistère,48090,observation-54523b18-a289-438c-862d-0504907bc2ac-2,https://biolit.fr/observations/observation-54523b18-a289-438c-862d-0504907bc2ac-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070738.JPG,,FALSE, +N1,60393,sortie-54523b18-a289-438c-862d-0504907bc2ac,https://biolit.fr/sorties/sortie-54523b18-a289-438c-862d-0504907bc2ac/,Phil,,08/05/2017,13.0000000,13.0:55,47.835038000000,-4.176703000000,,Loctudy - Finistère,48092,observation-54523b18-a289-438c-862d-0504907bc2ac-3,https://biolit.fr/observations/observation-54523b18-a289-438c-862d-0504907bc2ac-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070734.JPG,,FALSE, +N1,60393,sortie-54523b18-a289-438c-862d-0504907bc2ac,https://biolit.fr/sorties/sortie-54523b18-a289-438c-862d-0504907bc2ac/,Phil,,08/05/2017,13.0000000,13.0:55,47.835038000000,-4.176703000000,,Loctudy - Finistère,48094,observation-54523b18-a289-438c-862d-0504907bc2ac-4,https://biolit.fr/observations/observation-54523b18-a289-438c-862d-0504907bc2ac-4/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/P1070728.JPG,,TRUE, +N1,60394,sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568,https://biolit.fr/sorties/sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568/,Ilse,,8/14/2017 0:00,9.0000000,10.0000000,49.373291000000,-0.142075000000,,HERMANVILLE,48096,observation-c4221d48-7de1-4933-9ab2-33d10ec1e568,https://biolit.fr/observations/observation-c4221d48-7de1-4933-9ab2-33d10ec1e568/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/P8140161-scaled.jpg,,TRUE, +N1,60394,sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568,https://biolit.fr/sorties/sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568/,Ilse,,8/14/2017 0:00,9.0000000,10.0000000,49.373291000000,-0.142075000000,,HERMANVILLE,48098,observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-2,https://biolit.fr/observations/observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-2/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P8140163-scaled.jpg,,TRUE, +N1,60394,sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568,https://biolit.fr/sorties/sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568/,Ilse,,8/14/2017 0:00,9.0000000,10.0000000,49.373291000000,-0.142075000000,,HERMANVILLE,48100,observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-3,https://biolit.fr/observations/observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8140164-scaled.jpg,,FALSE, +N1,60394,sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568,https://biolit.fr/sorties/sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568/,Ilse,,8/14/2017 0:00,9.0000000,10.0000000,49.373291000000,-0.142075000000,,HERMANVILLE,48102,observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-4,https://biolit.fr/observations/observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8140165-scaled.jpg,,FALSE, +N1,60394,sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568,https://biolit.fr/sorties/sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568/,Ilse,,8/14/2017 0:00,9.0000000,10.0000000,49.373291000000,-0.142075000000,,HERMANVILLE,48104,observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-5,https://biolit.fr/observations/observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-5/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/P8140166-scaled.jpg,,TRUE, +N1,60394,sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568,https://biolit.fr/sorties/sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568/,Ilse,,8/14/2017 0:00,9.0000000,10.0000000,49.373291000000,-0.142075000000,,HERMANVILLE,48106,observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-6,https://biolit.fr/observations/observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8140167-scaled.jpg,,FALSE, +N1,60394,sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568,https://biolit.fr/sorties/sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568/,Ilse,,8/14/2017 0:00,9.0000000,10.0000000,49.373291000000,-0.142075000000,,HERMANVILLE,48108,observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-7,https://biolit.fr/observations/observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-7/,Saccharina latissima,Laminaire sucrée,,https://biolit.fr/wp-content/uploads/2023/07/P8140177-scaled.jpg,,TRUE, +N1,60394,sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568,https://biolit.fr/sorties/sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568/,Ilse,,8/14/2017 0:00,9.0000000,10.0000000,49.373291000000,-0.142075000000,,HERMANVILLE,48110,observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-8,https://biolit.fr/observations/observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8140178-scaled.jpg,,FALSE, +N1,60394,sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568,https://biolit.fr/sorties/sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568/,Ilse,,8/14/2017 0:00,9.0000000,10.0000000,49.373291000000,-0.142075000000,,HERMANVILLE,48112,observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-9,https://biolit.fr/observations/observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-9/,Saccharina latissima,Laminaire sucrée,,https://biolit.fr/wp-content/uploads/2023/07/P8140181-scaled.jpg,,TRUE, +N1,60394,sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568,https://biolit.fr/sorties/sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568/,Ilse,,8/14/2017 0:00,9.0000000,10.0000000,49.373291000000,-0.142075000000,,HERMANVILLE,48114,observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-10,https://biolit.fr/observations/observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8140183-scaled.jpg,,FALSE, +N1,60394,sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568,https://biolit.fr/sorties/sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568/,Ilse,,8/14/2017 0:00,9.0000000,10.0000000,49.373291000000,-0.142075000000,,HERMANVILLE,48116,observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-11,https://biolit.fr/observations/observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8140185-scaled.jpg,,FALSE, +N1,60394,sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568,https://biolit.fr/sorties/sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568/,Ilse,,8/14/2017 0:00,9.0000000,10.0000000,49.373291000000,-0.142075000000,,HERMANVILLE,48118,observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-12,https://biolit.fr/observations/observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8140186-scaled.jpg,,FALSE, +N1,60394,sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568,https://biolit.fr/sorties/sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568/,Ilse,,8/14/2017 0:00,9.0000000,10.0000000,49.373291000000,-0.142075000000,,HERMANVILLE,48120,observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-13,https://biolit.fr/observations/observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8140189-scaled.jpg,,FALSE, +N1,60394,sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568,https://biolit.fr/sorties/sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568/,Ilse,,8/14/2017 0:00,9.0000000,10.0000000,49.373291000000,-0.142075000000,,HERMANVILLE,48122,observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-14,https://biolit.fr/observations/observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-14/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/P8140191-scaled.jpg,,TRUE, +N1,60394,sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568,https://biolit.fr/sorties/sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568/,Ilse,,8/14/2017 0:00,9.0000000,10.0000000,49.373291000000,-0.142075000000,,HERMANVILLE,48124,observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-15,https://biolit.fr/observations/observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-15/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P8140202-scaled.jpg,,TRUE, +N1,60395,sortie-17faafee-036f-4b52-8f83-39a9da9cb6ce,https://biolit.fr/sorties/sortie-17faafee-036f-4b52-8f83-39a9da9cb6ce/,Phil,,7/30/2017 0:00,16.0000000,16.0:35,48.181725000000,-4.29466700000,,Saint-Nic - Finistère,48126,observation-17faafee-036f-4b52-8f83-39a9da9cb6ce,https://biolit.fr/observations/observation-17faafee-036f-4b52-8f83-39a9da9cb6ce/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170730_163105.jpg,,FALSE, +N1,60395,sortie-17faafee-036f-4b52-8f83-39a9da9cb6ce,https://biolit.fr/sorties/sortie-17faafee-036f-4b52-8f83-39a9da9cb6ce/,Phil,,7/30/2017 0:00,16.0000000,16.0:35,48.181725000000,-4.29466700000,,Saint-Nic - Finistère,48128,observation-17faafee-036f-4b52-8f83-39a9da9cb6ce-2,https://biolit.fr/observations/observation-17faafee-036f-4b52-8f83-39a9da9cb6ce-2/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/20170730_162901.jpg,,TRUE, +N1,60395,sortie-17faafee-036f-4b52-8f83-39a9da9cb6ce,https://biolit.fr/sorties/sortie-17faafee-036f-4b52-8f83-39a9da9cb6ce/,Phil,,7/30/2017 0:00,16.0000000,16.0:35,48.181725000000,-4.29466700000,,Saint-Nic - Finistère,48130,observation-17faafee-036f-4b52-8f83-39a9da9cb6ce-3,https://biolit.fr/observations/observation-17faafee-036f-4b52-8f83-39a9da9cb6ce-3/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/20170730_162848.jpg,,TRUE, +N1,60395,sortie-17faafee-036f-4b52-8f83-39a9da9cb6ce,https://biolit.fr/sorties/sortie-17faafee-036f-4b52-8f83-39a9da9cb6ce/,Phil,,7/30/2017 0:00,16.0000000,16.0:35,48.181725000000,-4.29466700000,,Saint-Nic - Finistère,48132,observation-17faafee-036f-4b52-8f83-39a9da9cb6ce-4,https://biolit.fr/observations/observation-17faafee-036f-4b52-8f83-39a9da9cb6ce-4/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/20170730_162821.jpg,,TRUE, +N1,60395,sortie-17faafee-036f-4b52-8f83-39a9da9cb6ce,https://biolit.fr/sorties/sortie-17faafee-036f-4b52-8f83-39a9da9cb6ce/,Phil,,7/30/2017 0:00,16.0000000,16.0:35,48.181725000000,-4.29466700000,,Saint-Nic - Finistère,48134,observation-17faafee-036f-4b52-8f83-39a9da9cb6ce-5,https://biolit.fr/observations/observation-17faafee-036f-4b52-8f83-39a9da9cb6ce-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170730_163024.jpg,,FALSE, +N1,60395,sortie-17faafee-036f-4b52-8f83-39a9da9cb6ce,https://biolit.fr/sorties/sortie-17faafee-036f-4b52-8f83-39a9da9cb6ce/,Phil,,7/30/2017 0:00,16.0000000,16.0:35,48.181725000000,-4.29466700000,,Saint-Nic - Finistère,48136,observation-17faafee-036f-4b52-8f83-39a9da9cb6ce-6,https://biolit.fr/observations/observation-17faafee-036f-4b52-8f83-39a9da9cb6ce-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170730_163007.jpg,,FALSE, +N1,60396,sortie-7e38abf3-c28d-4b2d-9b87-bddc7ae1d406,https://biolit.fr/sorties/sortie-7e38abf3-c28d-4b2d-9b87-bddc7ae1d406/,azelie,,08/10/2017,18.0000000,18.000005,49.096828000000,-1.610641000000,,Plage de Gouville-sur-mer,48138,observation-7e38abf3-c28d-4b2d-9b87-bddc7ae1d406,https://biolit.fr/observations/observation-7e38abf3-c28d-4b2d-9b87-bddc7ae1d406/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4609-scaled.jpg,,TRUE, +N1,60396,sortie-7e38abf3-c28d-4b2d-9b87-bddc7ae1d406,https://biolit.fr/sorties/sortie-7e38abf3-c28d-4b2d-9b87-bddc7ae1d406/,azelie,,08/10/2017,18.0000000,18.000005,49.096828000000,-1.610641000000,,Plage de Gouville-sur-mer,48140,observation-7e38abf3-c28d-4b2d-9b87-bddc7ae1d406-2,https://biolit.fr/observations/observation-7e38abf3-c28d-4b2d-9b87-bddc7ae1d406-2/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4606-scaled.jpg,,TRUE, +N1,60396,sortie-7e38abf3-c28d-4b2d-9b87-bddc7ae1d406,https://biolit.fr/sorties/sortie-7e38abf3-c28d-4b2d-9b87-bddc7ae1d406/,azelie,,08/10/2017,18.0000000,18.000005,49.096828000000,-1.610641000000,,Plage de Gouville-sur-mer,48142,observation-7e38abf3-c28d-4b2d-9b87-bddc7ae1d406-3,https://biolit.fr/observations/observation-7e38abf3-c28d-4b2d-9b87-bddc7ae1d406-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4603-scaled.jpg,,TRUE, +N1,60397,sortie-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e,https://biolit.fr/sorties/sortie-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e/,azelie,,08/10/2017,17.0000000,17.0:45,49.096006000000,-1.610506000000,,Plage de Gouville-sur-mer,48144,observation-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e,https://biolit.fr/observations/observation-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4592-scaled.jpg,,TRUE, +N1,60397,sortie-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e,https://biolit.fr/sorties/sortie-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e/,azelie,,08/10/2017,17.0000000,17.0:45,49.096006000000,-1.610506000000,,Plage de Gouville-sur-mer,48146,observation-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e-2,https://biolit.fr/observations/observation-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4593-scaled.jpg,,FALSE, +N1,60397,sortie-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e,https://biolit.fr/sorties/sortie-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e/,azelie,,08/10/2017,17.0000000,17.0:45,49.096006000000,-1.610506000000,,Plage de Gouville-sur-mer,48148,observation-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e-3,https://biolit.fr/observations/observation-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e-3/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_4596-scaled.jpg,,TRUE, +N1,60397,sortie-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e,https://biolit.fr/sorties/sortie-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e/,azelie,,08/10/2017,17.0000000,17.0:45,49.096006000000,-1.610506000000,,Plage de Gouville-sur-mer,48150,observation-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e-4,https://biolit.fr/observations/observation-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4597-scaled.jpg,,FALSE, +N1,60397,sortie-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e,https://biolit.fr/sorties/sortie-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e/,azelie,,08/10/2017,17.0000000,17.0:45,49.096006000000,-1.610506000000,,Plage de Gouville-sur-mer,48152,observation-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e-5,https://biolit.fr/observations/observation-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4590-scaled.jpg,,FALSE, +N1,60397,sortie-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e,https://biolit.fr/sorties/sortie-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e/,azelie,,08/10/2017,17.0000000,17.0:45,49.096006000000,-1.610506000000,,Plage de Gouville-sur-mer,48154,observation-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e-6,https://biolit.fr/observations/observation-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e-6/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_4600-scaled.jpg,,TRUE, +N1,60398,sortie-37daee51-1eb8-45cf-a4a1-470d529c445d,https://biolit.fr/sorties/sortie-37daee51-1eb8-45cf-a4a1-470d529c445d/,CPIE Vallée de l'Orne,,08/08/2017,17.0000000,19.0000000,49.321090000000,-0.350598000000,,"Luc-sur-Mer, plage du Petit Enfer",48156,observation-37daee51-1eb8-45cf-a4a1-470d529c445d,https://biolit.fr/observations/observation-37daee51-1eb8-45cf-a4a1-470d529c445d/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Ascidies botrylles Luc aout17 EP_0.jpg,,TRUE, +N1,60399,sortie-9ce878c6-f83a-469f-a4aa-3e013f68c369,https://biolit.fr/sorties/sortie-9ce878c6-f83a-469f-a4aa-3e013f68c369/,Phil,,08/05/2017,13.0:25,13.0000000,47.834920000000,-4.176877000000,,Loctudy - Finistère,48158,observation-9ce878c6-f83a-469f-a4aa-3e013f68c369,https://biolit.fr/observations/observation-9ce878c6-f83a-469f-a4aa-3e013f68c369/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070716.JPG,,FALSE, +N1,60399,sortie-9ce878c6-f83a-469f-a4aa-3e013f68c369,https://biolit.fr/sorties/sortie-9ce878c6-f83a-469f-a4aa-3e013f68c369/,Phil,,08/05/2017,13.0:25,13.0000000,47.834920000000,-4.176877000000,,Loctudy - Finistère,48160,observation-9ce878c6-f83a-469f-a4aa-3e013f68c369-2,https://biolit.fr/observations/observation-9ce878c6-f83a-469f-a4aa-3e013f68c369-2/,Larus fuscus,Goéland brun,,https://biolit.fr/wp-content/uploads/2023/07/P1070715.JPG,,TRUE, +N1,60399,sortie-9ce878c6-f83a-469f-a4aa-3e013f68c369,https://biolit.fr/sorties/sortie-9ce878c6-f83a-469f-a4aa-3e013f68c369/,Phil,,08/05/2017,13.0:25,13.0000000,47.834920000000,-4.176877000000,,Loctudy - Finistère,48162,observation-9ce878c6-f83a-469f-a4aa-3e013f68c369-3,https://biolit.fr/observations/observation-9ce878c6-f83a-469f-a4aa-3e013f68c369-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070711.JPG,,FALSE, +N1,60399,sortie-9ce878c6-f83a-469f-a4aa-3e013f68c369,https://biolit.fr/sorties/sortie-9ce878c6-f83a-469f-a4aa-3e013f68c369/,Phil,,08/05/2017,13.0:25,13.0000000,47.834920000000,-4.176877000000,,Loctudy - Finistère,48164,observation-9ce878c6-f83a-469f-a4aa-3e013f68c369-4,https://biolit.fr/observations/observation-9ce878c6-f83a-469f-a4aa-3e013f68c369-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070706.JPG,,FALSE, +N1,60399,sortie-9ce878c6-f83a-469f-a4aa-3e013f68c369,https://biolit.fr/sorties/sortie-9ce878c6-f83a-469f-a4aa-3e013f68c369/,Phil,,08/05/2017,13.0:25,13.0000000,47.834920000000,-4.176877000000,,Loctudy - Finistère,48166,observation-9ce878c6-f83a-469f-a4aa-3e013f68c369-5,https://biolit.fr/observations/observation-9ce878c6-f83a-469f-a4aa-3e013f68c369-5/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/P1070705.JPG,,TRUE, +N1,60400,sortie-7ec1f88d-1971-48cb-8ffa-e1eb46d32ab0,https://biolit.fr/sorties/sortie-7ec1f88d-1971-48cb-8ffa-e1eb46d32ab0/,CarpeDiem,,08/05/2017,19.0000000,20.0000000,43.325571000000,5.054890000000,,phare de la Couronne,48168,observation-7ec1f88d-1971-48cb-8ffa-e1eb46d32ab0,https://biolit.fr/observations/observation-7ec1f88d-1971-48cb-8ffa-e1eb46d32ab0/,,,,https://biolit.fr/wp-content/uploads/2023/07/Criste marine_Crithmum maritimum-scaled.jpg,,FALSE, +N1,60400,sortie-7ec1f88d-1971-48cb-8ffa-e1eb46d32ab0,https://biolit.fr/sorties/sortie-7ec1f88d-1971-48cb-8ffa-e1eb46d32ab0/,CarpeDiem,,08/05/2017,19.0000000,20.0000000,43.325571000000,5.054890000000,,phare de la Couronne,48170,observation-7ec1f88d-1971-48cb-8ffa-e1eb46d32ab0-2,https://biolit.fr/observations/observation-7ec1f88d-1971-48cb-8ffa-e1eb46d32ab0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Balai de mer_Halopteris scoparia-scaled.jpg,,FALSE, +N1,60400,sortie-7ec1f88d-1971-48cb-8ffa-e1eb46d32ab0,https://biolit.fr/sorties/sortie-7ec1f88d-1971-48cb-8ffa-e1eb46d32ab0/,CarpeDiem,,08/05/2017,19.0000000,20.0000000,43.325571000000,5.054890000000,,phare de la Couronne,48172,observation-7ec1f88d-1971-48cb-8ffa-e1eb46d32ab0-3,https://biolit.fr/observations/observation-7ec1f88d-1971-48cb-8ffa-e1eb46d32ab0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ulva compressa-scaled.jpg,,FALSE, +N1,60400,sortie-7ec1f88d-1971-48cb-8ffa-e1eb46d32ab0,https://biolit.fr/sorties/sortie-7ec1f88d-1971-48cb-8ffa-e1eb46d32ab0/,CarpeDiem,,08/05/2017,19.0000000,20.0000000,43.325571000000,5.054890000000,,phare de la Couronne,48174,observation-7ec1f88d-1971-48cb-8ffa-e1eb46d32ab0-4,https://biolit.fr/observations/observation-7ec1f88d-1971-48cb-8ffa-e1eb46d32ab0-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Esquinade_Maja squinado-scaled.jpg,,FALSE, +N1,60401,sortie-d87b8c60-bb8c-448a-ac5a-2ec3b32ec3e5,https://biolit.fr/sorties/sortie-d87b8c60-bb8c-448a-ac5a-2ec3b32ec3e5/,Nicolas,,7/26/2017 0:00,9.0000000,11.0000000,46.109318000000,-1.146157000000,,Pointe du Chay,48176,observation-d87b8c60-bb8c-448a-ac5a-2ec3b32ec3e5,https://biolit.fr/observations/observation-d87b8c60-bb8c-448a-ac5a-2ec3b32ec3e5/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170726_122109-scaled.jpg,,TRUE, +N1,60402,sortie-a7db571c-38d7-4877-adce-f783271aeb8f,https://biolit.fr/sorties/sortie-a7db571c-38d7-4877-adce-f783271aeb8f/,E.C.O.L.E de la mer,,7/27/2017 0:00,14.0000000,15.0000000,46.137537000000,-1.154585000000,,plage du roux,48178,observation-a7db571c-38d7-4877-adce-f783271aeb8f,https://biolit.fr/observations/observation-a7db571c-38d7-4877-adce-f783271aeb8f/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0257[1]-scaled.jpg,,TRUE, +N1,60403,sortie-8e8e4160-e838-4a19-9ed8-41e686caea31,https://biolit.fr/sorties/sortie-8e8e4160-e838-4a19-9ed8-41e686caea31/,LucileA,,08/01/2017,13.0000000,15.0000000,48.680023000000,-2.310751000000,,Cap Fréhel,48180,observation-8e8e4160-e838-4a19-9ed8-41e686caea31,https://biolit.fr/observations/observation-8e8e4160-e838-4a19-9ed8-41e686caea31/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6803-scaled.jpg,,TRUE, +N1,60403,sortie-8e8e4160-e838-4a19-9ed8-41e686caea31,https://biolit.fr/sorties/sortie-8e8e4160-e838-4a19-9ed8-41e686caea31/,LucileA,,08/01/2017,13.0000000,15.0000000,48.680023000000,-2.310751000000,,Cap Fréhel,48182,observation-8e8e4160-e838-4a19-9ed8-41e686caea31-2,https://biolit.fr/observations/observation-8e8e4160-e838-4a19-9ed8-41e686caea31-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6802-scaled.jpg,,TRUE, +N1,60404,sortie-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9,https://biolit.fr/sorties/sortie-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9/,Phil,,06/08/2017,12.0:55,13.000005,47.89329800000,-4.131095000000,,Gouesnarc'h - Finistère,48184,observation-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9,https://biolit.fr/observations/observation-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070476.JPG,,FALSE, +N1,60404,sortie-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9,https://biolit.fr/sorties/sortie-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9/,Phil,,06/08/2017,12.0:55,13.000005,47.89329800000,-4.131095000000,,Gouesnarc'h - Finistère,48186,observation-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9-2,https://biolit.fr/observations/observation-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070477.JPG,,FALSE, +N1,60404,sortie-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9,https://biolit.fr/sorties/sortie-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9/,Phil,,06/08/2017,12.0:55,13.000005,47.89329800000,-4.131095000000,,Gouesnarc'h - Finistère,48188,observation-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9-3,https://biolit.fr/observations/observation-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070478.JPG,,FALSE, +N1,60404,sortie-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9,https://biolit.fr/sorties/sortie-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9/,Phil,,06/08/2017,12.0:55,13.000005,47.89329800000,-4.131095000000,,Gouesnarc'h - Finistère,48190,observation-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9-4,https://biolit.fr/observations/observation-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9-4/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1070479.JPG,,TRUE, +N1,60404,sortie-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9,https://biolit.fr/sorties/sortie-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9/,Phil,,06/08/2017,12.0:55,13.000005,47.89329800000,-4.131095000000,,Gouesnarc'h - Finistère,48192,observation-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9-5,https://biolit.fr/observations/observation-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070485.JPG,,FALSE, +N1,60404,sortie-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9,https://biolit.fr/sorties/sortie-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9/,Phil,,06/08/2017,12.0:55,13.000005,47.89329800000,-4.131095000000,,Gouesnarc'h - Finistère,48194,observation-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9-6,https://biolit.fr/observations/observation-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070487.JPG,,FALSE, +N1,60404,sortie-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9,https://biolit.fr/sorties/sortie-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9/,Phil,,06/08/2017,12.0:55,13.000005,47.89329800000,-4.131095000000,,Gouesnarc'h - Finistère,48196,observation-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9-7,https://biolit.fr/observations/observation-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9-7/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1070490.JPG,,TRUE, +N1,60405,sortie-c4e2941f-6cea-42fd-b93a-62d737137215,https://biolit.fr/sorties/sortie-c4e2941f-6cea-42fd-b93a-62d737137215/,Phil,,7/30/2017 0:00,16.0:25,16.0000000,48.182137000000,-4.295010000000,,Saint-Nic - Finistère,48198,observation-c4e2941f-6cea-42fd-b93a-62d737137215,https://biolit.fr/observations/observation-c4e2941f-6cea-42fd-b93a-62d737137215/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/20170730_162500.jpg,,TRUE, +N1,60405,sortie-c4e2941f-6cea-42fd-b93a-62d737137215,https://biolit.fr/sorties/sortie-c4e2941f-6cea-42fd-b93a-62d737137215/,Phil,,7/30/2017 0:00,16.0:25,16.0000000,48.182137000000,-4.295010000000,,Saint-Nic - Finistère,48200,observation-c4e2941f-6cea-42fd-b93a-62d737137215-2,https://biolit.fr/observations/observation-c4e2941f-6cea-42fd-b93a-62d737137215-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170730_162515.jpg,,FALSE, +N1,60405,sortie-c4e2941f-6cea-42fd-b93a-62d737137215,https://biolit.fr/sorties/sortie-c4e2941f-6cea-42fd-b93a-62d737137215/,Phil,,7/30/2017 0:00,16.0:25,16.0000000,48.182137000000,-4.295010000000,,Saint-Nic - Finistère,48202,observation-c4e2941f-6cea-42fd-b93a-62d737137215-3,https://biolit.fr/observations/observation-c4e2941f-6cea-42fd-b93a-62d737137215-3/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/20170730_162649.jpg,,TRUE, +N1,60406,sortie-341fae63-a08e-482b-b007-ea172978d0b6,https://biolit.fr/sorties/sortie-341fae63-a08e-482b-b007-ea172978d0b6/,Phil,,6/18/2017 0:00,12.0:15,12.0000000,47.708793000000,-3.994268000000,,Fouesnant - Finistère,48204,observation-341fae63-a08e-482b-b007-ea172978d0b6,https://biolit.fr/observations/observation-341fae63-a08e-482b-b007-ea172978d0b6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070561.JPG,,FALSE, +N1,60407,sortie-df5a75b1-e4f3-466f-8cb5-8109983f2a46,https://biolit.fr/sorties/sortie-df5a75b1-e4f3-466f-8cb5-8109983f2a46/,Phil,,4/14/2017 0:00,12.0000000,12.0000000,48.848383000000,-3.013367000000,,Île-de-Bréhat - Côtes-d'Armor,48206,observation-df5a75b1-e4f3-466f-8cb5-8109983f2a46,https://biolit.fr/observations/observation-df5a75b1-e4f3-466f-8cb5-8109983f2a46/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060989.JPG,,FALSE, +N1,60407,sortie-df5a75b1-e4f3-466f-8cb5-8109983f2a46,https://biolit.fr/sorties/sortie-df5a75b1-e4f3-466f-8cb5-8109983f2a46/,Phil,,4/14/2017 0:00,12.0000000,12.0000000,48.848383000000,-3.013367000000,,Île-de-Bréhat - Côtes-d'Armor,48208,observation-df5a75b1-e4f3-466f-8cb5-8109983f2a46-2,https://biolit.fr/observations/observation-df5a75b1-e4f3-466f-8cb5-8109983f2a46-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1060988.JPG,,TRUE, +N1,60407,sortie-df5a75b1-e4f3-466f-8cb5-8109983f2a46,https://biolit.fr/sorties/sortie-df5a75b1-e4f3-466f-8cb5-8109983f2a46/,Phil,,4/14/2017 0:00,12.0000000,12.0000000,48.848383000000,-3.013367000000,,Île-de-Bréhat - Côtes-d'Armor,48210,observation-df5a75b1-e4f3-466f-8cb5-8109983f2a46-3,https://biolit.fr/observations/observation-df5a75b1-e4f3-466f-8cb5-8109983f2a46-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060994.JPG,,TRUE, +N1,60407,sortie-df5a75b1-e4f3-466f-8cb5-8109983f2a46,https://biolit.fr/sorties/sortie-df5a75b1-e4f3-466f-8cb5-8109983f2a46/,Phil,,4/14/2017 0:00,12.0000000,12.0000000,48.848383000000,-3.013367000000,,Île-de-Bréhat - Côtes-d'Armor,48212,observation-df5a75b1-e4f3-466f-8cb5-8109983f2a46-4,https://biolit.fr/observations/observation-df5a75b1-e4f3-466f-8cb5-8109983f2a46-4/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060995.JPG,,TRUE, +N1,60407,sortie-df5a75b1-e4f3-466f-8cb5-8109983f2a46,https://biolit.fr/sorties/sortie-df5a75b1-e4f3-466f-8cb5-8109983f2a46/,Phil,,4/14/2017 0:00,12.0000000,12.0000000,48.848383000000,-3.013367000000,,Île-de-Bréhat - Côtes-d'Armor,48214,observation-df5a75b1-e4f3-466f-8cb5-8109983f2a46-5,https://biolit.fr/observations/observation-df5a75b1-e4f3-466f-8cb5-8109983f2a46-5/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1070001.JPG,,TRUE, +N1,60408,sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2,https://biolit.fr/sorties/sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2/,carmin89,,7/21/2017 0:00,10.0000000,11.0000000,43.106869000000,5.980031000000,,Anse Magaud,48216,observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2,https://biolit.fr/observations/observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2/,,,,https://biolit.fr/wp-content/uploads/2023/07/acétabulaire.JPG,,FALSE, +N1,60408,sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2,https://biolit.fr/sorties/sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2/,carmin89,,7/21/2017 0:00,10.0000000,11.0000000,43.106869000000,5.980031000000,,Anse Magaud,48217,observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-2,https://biolit.fr/observations/observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-2/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/Arche_de_noe.jpg,,TRUE, +N1,60408,sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2,https://biolit.fr/sorties/sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2/,carmin89,,7/21/2017 0:00,10.0000000,11.0000000,43.106869000000,5.980031000000,,Anse Magaud,48219,observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-3,https://biolit.fr/observations/observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-3/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/codium en boule-scaled.jpg,,TRUE, +N1,60408,sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2,https://biolit.fr/sorties/sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2/,carmin89,,7/21/2017 0:00,10.0000000,11.0000000,43.106869000000,5.980031000000,,Anse Magaud,48220,observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-4,https://biolit.fr/observations/observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Criste marine-scaled.jpg,,FALSE, +N1,60408,sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2,https://biolit.fr/sorties/sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2/,carmin89,,7/21/2017 0:00,10.0000000,11.0000000,43.106869000000,5.980031000000,,Anse Magaud,48221,observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-5,https://biolit.fr/observations/observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-5/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule.jpg,,TRUE, +N1,60408,sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2,https://biolit.fr/sorties/sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2/,carmin89,,7/21/2017 0:00,10.0000000,11.0000000,43.106869000000,5.980031000000,,Anse Magaud,48223,observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-6,https://biolit.fr/observations/observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-6/,Pinna nobilis,Grande nacre,,https://biolit.fr/wp-content/uploads/2023/07/Grande_nacre.jpg,,TRUE, +N1,60408,sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2,https://biolit.fr/sorties/sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2/,carmin89,,7/21/2017 0:00,10.0000000,11.0000000,43.106869000000,5.980031000000,,Anse Magaud,48225,observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-7,https://biolit.fr/observations/observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Liagore.jpg,,FALSE, +N1,60408,sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2,https://biolit.fr/sorties/sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2/,carmin89,,7/21/2017 0:00,10.0000000,11.0000000,43.106869000000,5.980031000000,,Anse Magaud,48227,observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-8,https://biolit.fr/observations/observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Padine (2).jpg,,FALSE, +N1,60408,sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2,https://biolit.fr/sorties/sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2/,carmin89,,7/21/2017 0:00,10.0000000,11.0000000,43.106869000000,5.980031000000,,Anse Magaud,48229,observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-9,https://biolit.fr/observations/observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/padine.JPG,,FALSE, +N1,60408,sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2,https://biolit.fr/sorties/sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2/,carmin89,,7/21/2017 0:00,10.0000000,11.0000000,43.106869000000,5.980031000000,,Anse Magaud,48230,observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-10,https://biolit.fr/observations/observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pelote-posidonie.jpg,,FALSE, +N1,60409,sortie-c09fbfa0-4a29-4979-9e07-243d5a6690e1,https://biolit.fr/sorties/sortie-c09fbfa0-4a29-4979-9e07-243d5a6690e1/,Nicolas,,7/26/2017 0:00,8.0000000,10.0000000,46.053219000000,-1.090324000000,,Les boucholeurs,48232,observation-c09fbfa0-4a29-4979-9e07-243d5a6690e1,https://biolit.fr/observations/observation-c09fbfa0-4a29-4979-9e07-243d5a6690e1/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170725_110554-scaled.jpg,,TRUE, +N1,60409,sortie-c09fbfa0-4a29-4979-9e07-243d5a6690e1,https://biolit.fr/sorties/sortie-c09fbfa0-4a29-4979-9e07-243d5a6690e1/,Nicolas,,7/26/2017 0:00,8.0000000,10.0000000,46.053219000000,-1.090324000000,,Les boucholeurs,48234,observation-c09fbfa0-4a29-4979-9e07-243d5a6690e1-2,https://biolit.fr/observations/observation-c09fbfa0-4a29-4979-9e07-243d5a6690e1-2/,Idotea balthica,Idotée de la Baltique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170725_141131-scaled.jpg,,TRUE, +N1,60409,sortie-c09fbfa0-4a29-4979-9e07-243d5a6690e1,https://biolit.fr/sorties/sortie-c09fbfa0-4a29-4979-9e07-243d5a6690e1/,Nicolas,,7/26/2017 0:00,8.0000000,10.0000000,46.053219000000,-1.090324000000,,Les boucholeurs,48236,observation-c09fbfa0-4a29-4979-9e07-243d5a6690e1-3,https://biolit.fr/observations/observation-c09fbfa0-4a29-4979-9e07-243d5a6690e1-3/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170725_122002-scaled.jpg,,TRUE, +N1,60409,sortie-c09fbfa0-4a29-4979-9e07-243d5a6690e1,https://biolit.fr/sorties/sortie-c09fbfa0-4a29-4979-9e07-243d5a6690e1/,Nicolas,,7/26/2017 0:00,8.0000000,10.0000000,46.053219000000,-1.090324000000,,Les boucholeurs,48238,observation-c09fbfa0-4a29-4979-9e07-243d5a6690e1-4,https://biolit.fr/observations/observation-c09fbfa0-4a29-4979-9e07-243d5a6690e1-4/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170725_122012-scaled.jpg,,TRUE, +N1,60410,sortie-78800f72-539b-4d96-9d16-416c4520ab28,https://biolit.fr/sorties/sortie-78800f72-539b-4d96-9d16-416c4520ab28/,Phil,,6/18/2017 0:00,12.000005,12.0000000,47.709223000000,-3.994622000000,,Fouesnant - Finistère,48240,observation-78800f72-539b-4d96-9d16-416c4520ab28,https://biolit.fr/observations/observation-78800f72-539b-4d96-9d16-416c4520ab28/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1070550_0.JPG,,TRUE, +N1,60410,sortie-78800f72-539b-4d96-9d16-416c4520ab28,https://biolit.fr/sorties/sortie-78800f72-539b-4d96-9d16-416c4520ab28/,Phil,,6/18/2017 0:00,12.000005,12.0000000,47.709223000000,-3.994622000000,,Fouesnant - Finistère,48242,observation-78800f72-539b-4d96-9d16-416c4520ab28-2,https://biolit.fr/observations/observation-78800f72-539b-4d96-9d16-416c4520ab28-2/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1070547_0.JPG,,TRUE, +N1,60410,sortie-78800f72-539b-4d96-9d16-416c4520ab28,https://biolit.fr/sorties/sortie-78800f72-539b-4d96-9d16-416c4520ab28/,Phil,,6/18/2017 0:00,12.000005,12.0000000,47.709223000000,-3.994622000000,,Fouesnant - Finistère,48244,observation-78800f72-539b-4d96-9d16-416c4520ab28-3,https://biolit.fr/observations/observation-78800f72-539b-4d96-9d16-416c4520ab28-3/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1070546_0.JPG,,TRUE, +N1,60410,sortie-78800f72-539b-4d96-9d16-416c4520ab28,https://biolit.fr/sorties/sortie-78800f72-539b-4d96-9d16-416c4520ab28/,Phil,,6/18/2017 0:00,12.000005,12.0000000,47.709223000000,-3.994622000000,,Fouesnant - Finistère,48246,observation-78800f72-539b-4d96-9d16-416c4520ab28-4,https://biolit.fr/observations/observation-78800f72-539b-4d96-9d16-416c4520ab28-4/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1070545_0.JPG,,TRUE, +N1,60410,sortie-78800f72-539b-4d96-9d16-416c4520ab28,https://biolit.fr/sorties/sortie-78800f72-539b-4d96-9d16-416c4520ab28/,Phil,,6/18/2017 0:00,12.000005,12.0000000,47.709223000000,-3.994622000000,,Fouesnant - Finistère,48248,observation-78800f72-539b-4d96-9d16-416c4520ab28-5,https://biolit.fr/observations/observation-78800f72-539b-4d96-9d16-416c4520ab28-5/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1070542.JPG,,TRUE, +N1,60410,sortie-78800f72-539b-4d96-9d16-416c4520ab28,https://biolit.fr/sorties/sortie-78800f72-539b-4d96-9d16-416c4520ab28/,Phil,,6/18/2017 0:00,12.000005,12.0000000,47.709223000000,-3.994622000000,,Fouesnant - Finistère,48250,observation-78800f72-539b-4d96-9d16-416c4520ab28-6,https://biolit.fr/observations/observation-78800f72-539b-4d96-9d16-416c4520ab28-6/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1070540.JPG,,TRUE, +N1,60411,sortie-ebafa79c-8786-4415-8b14-720814f1a00b,https://biolit.fr/sorties/sortie-ebafa79c-8786-4415-8b14-720814f1a00b/,Nicolas,,7/24/2017 0:00,15.0000000,17.0000000,46.20294900000,-1.207923000000,,Pointe du plomb,48252,observation-ebafa79c-8786-4415-8b14-720814f1a00b,https://biolit.fr/observations/observation-ebafa79c-8786-4415-8b14-720814f1a00b/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170724_113321-scaled.jpg,,TRUE, +N1,60412,sortie-f3781c19-b666-4d8b-96d4-d1c15428c848,https://biolit.fr/sorties/sortie-f3781c19-b666-4d8b-96d4-d1c15428c848/,Agnèspms,,7/24/2017 0:00,14.0000000,16.0000000,42.790959000000,9.344156000000,,Nonza plage de la Marine,48254,observation-f3781c19-b666-4d8b-96d4-d1c15428c848,https://biolit.fr/observations/observation-f3781c19-b666-4d8b-96d4-d1c15428c848/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_8252-scaled.jpg,,TRUE, +N1,60412,sortie-f3781c19-b666-4d8b-96d4-d1c15428c848,https://biolit.fr/sorties/sortie-f3781c19-b666-4d8b-96d4-d1c15428c848/,Agnèspms,,7/24/2017 0:00,14.0000000,16.0000000,42.790959000000,9.344156000000,,Nonza plage de la Marine,48256,observation-f3781c19-b666-4d8b-96d4-d1c15428c848-2,https://biolit.fr/observations/observation-f3781c19-b666-4d8b-96d4-d1c15428c848-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_8253-scaled.jpg,,TRUE, +N1,60413,sortie-b3cfe4ea-e598-4ad9-aed9-0a59df492e51,https://biolit.fr/sorties/sortie-b3cfe4ea-e598-4ad9-aed9-0a59df492e51/,Phil,,06/08/2017,12.0000000,13.0000000,47.893949000000,-4.131383000000,,Gouesnarc'h - Finistère,48258,observation-b3cfe4ea-e598-4ad9-aed9-0a59df492e51,https://biolit.fr/observations/observation-b3cfe4ea-e598-4ad9-aed9-0a59df492e51/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070472.JPG,,FALSE, +N1,60413,sortie-b3cfe4ea-e598-4ad9-aed9-0a59df492e51,https://biolit.fr/sorties/sortie-b3cfe4ea-e598-4ad9-aed9-0a59df492e51/,Phil,,06/08/2017,12.0000000,13.0000000,47.893949000000,-4.131383000000,,Gouesnarc'h - Finistère,48260,observation-b3cfe4ea-e598-4ad9-aed9-0a59df492e51-2,https://biolit.fr/observations/observation-b3cfe4ea-e598-4ad9-aed9-0a59df492e51-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070471.JPG,,FALSE, +N1,60413,sortie-b3cfe4ea-e598-4ad9-aed9-0a59df492e51,https://biolit.fr/sorties/sortie-b3cfe4ea-e598-4ad9-aed9-0a59df492e51/,Phil,,06/08/2017,12.0000000,13.0000000,47.893949000000,-4.131383000000,,Gouesnarc'h - Finistère,48262,observation-b3cfe4ea-e598-4ad9-aed9-0a59df492e51-3,https://biolit.fr/observations/observation-b3cfe4ea-e598-4ad9-aed9-0a59df492e51-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1070473.JPG,,TRUE, +N1,60413,sortie-b3cfe4ea-e598-4ad9-aed9-0a59df492e51,https://biolit.fr/sorties/sortie-b3cfe4ea-e598-4ad9-aed9-0a59df492e51/,Phil,,06/08/2017,12.0000000,13.0000000,47.893949000000,-4.131383000000,,Gouesnarc'h - Finistère,48264,observation-b3cfe4ea-e598-4ad9-aed9-0a59df492e51-4,https://biolit.fr/observations/observation-b3cfe4ea-e598-4ad9-aed9-0a59df492e51-4/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070475.JPG,,TRUE, +N1,60414,sortie-0894708a-b854-417c-851c-a9211b38ef35,https://biolit.fr/sorties/sortie-0894708a-b854-417c-851c-a9211b38ef35/,ViolaineJ,,07/05/2017,17.0:15,18.0000000,43.452419000000,3.811584000000,,"Plage Saint Eugène, Frontignan",48266,observation-0894708a-b854-417c-851c-a9211b38ef35,https://biolit.fr/observations/observation-0894708a-b854-417c-851c-a9211b38ef35/,,,,https://biolit.fr/wp-content/uploads/2023/07/CAM02550.jpg,,FALSE, +N1,60414,sortie-0894708a-b854-417c-851c-a9211b38ef35,https://biolit.fr/sorties/sortie-0894708a-b854-417c-851c-a9211b38ef35/,ViolaineJ,,07/05/2017,17.0:15,18.0000000,43.452419000000,3.811584000000,,"Plage Saint Eugène, Frontignan",48268,observation-0894708a-b854-417c-851c-a9211b38ef35-2,https://biolit.fr/observations/observation-0894708a-b854-417c-851c-a9211b38ef35-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/CAM02555.jpg,,FALSE, +N1,60414,sortie-0894708a-b854-417c-851c-a9211b38ef35,https://biolit.fr/sorties/sortie-0894708a-b854-417c-851c-a9211b38ef35/,ViolaineJ,,07/05/2017,17.0:15,18.0000000,43.452419000000,3.811584000000,,"Plage Saint Eugène, Frontignan",48270,observation-0894708a-b854-417c-851c-a9211b38ef35-3,https://biolit.fr/observations/observation-0894708a-b854-417c-851c-a9211b38ef35-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/CAM02556.jpg,,FALSE, +N1,60415,sortie-deb0988b-bcd1-429a-8097-a6350603f1c4,https://biolit.fr/sorties/sortie-deb0988b-bcd1-429a-8097-a6350603f1c4/,Phil,,4/14/2017 0:00,12.0:15,12.0000000,48.847536000000,-3.012404000000,,Île-de-Bréhat - Côtes-d'Armor,48272,observation-deb0988b-bcd1-429a-8097-a6350603f1c4,https://biolit.fr/observations/observation-deb0988b-bcd1-429a-8097-a6350603f1c4/,Tadorna tadorna,Tadorne de Belon,,https://biolit.fr/wp-content/uploads/2023/07/P1060982.JPG,,TRUE, +N1,60415,sortie-deb0988b-bcd1-429a-8097-a6350603f1c4,https://biolit.fr/sorties/sortie-deb0988b-bcd1-429a-8097-a6350603f1c4/,Phil,,4/14/2017 0:00,12.0:15,12.0000000,48.847536000000,-3.012404000000,,Île-de-Bréhat - Côtes-d'Armor,48274,observation-deb0988b-bcd1-429a-8097-a6350603f1c4-2,https://biolit.fr/observations/observation-deb0988b-bcd1-429a-8097-a6350603f1c4-2/,Tadorna tadorna,Tadorne de Belon,,https://biolit.fr/wp-content/uploads/2023/07/P1060975.JPG,,TRUE, +N1,60415,sortie-deb0988b-bcd1-429a-8097-a6350603f1c4,https://biolit.fr/sorties/sortie-deb0988b-bcd1-429a-8097-a6350603f1c4/,Phil,,4/14/2017 0:00,12.0:15,12.0000000,48.847536000000,-3.012404000000,,Île-de-Bréhat - Côtes-d'Armor,48276,observation-deb0988b-bcd1-429a-8097-a6350603f1c4-3,https://biolit.fr/observations/observation-deb0988b-bcd1-429a-8097-a6350603f1c4-3/,Tadorna tadorna,Tadorne de Belon,,https://biolit.fr/wp-content/uploads/2023/07/P1060971.JPG,,TRUE, +N1,60415,sortie-deb0988b-bcd1-429a-8097-a6350603f1c4,https://biolit.fr/sorties/sortie-deb0988b-bcd1-429a-8097-a6350603f1c4/,Phil,,4/14/2017 0:00,12.0:15,12.0000000,48.847536000000,-3.012404000000,,Île-de-Bréhat - Côtes-d'Armor,48278,observation-deb0988b-bcd1-429a-8097-a6350603f1c4-4,https://biolit.fr/observations/observation-deb0988b-bcd1-429a-8097-a6350603f1c4-4/,Tadorna tadorna,Tadorne de Belon,,https://biolit.fr/wp-content/uploads/2023/07/P1060983.JPG,,TRUE, +N1,60416,sortie-145a5dbf-e739-4e03-a692-ec5fabc10cbf,https://biolit.fr/sorties/sortie-145a5dbf-e739-4e03-a692-ec5fabc10cbf/,Phil,,06/08/2017,12.0:35,12.0:45,47.894329000000,-4.131469000000,,Gouesnarc'h - Finistère,48280,observation-145a5dbf-e739-4e03-a692-ec5fabc10cbf,https://biolit.fr/observations/observation-145a5dbf-e739-4e03-a692-ec5fabc10cbf/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070465_2.JPG,,FALSE, +N1,60416,sortie-145a5dbf-e739-4e03-a692-ec5fabc10cbf,https://biolit.fr/sorties/sortie-145a5dbf-e739-4e03-a692-ec5fabc10cbf/,Phil,,06/08/2017,12.0:35,12.0:45,47.894329000000,-4.131469000000,,Gouesnarc'h - Finistère,48282,observation-145a5dbf-e739-4e03-a692-ec5fabc10cbf-2,https://biolit.fr/observations/observation-145a5dbf-e739-4e03-a692-ec5fabc10cbf-2/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1070463.JPG,,TRUE, +N1,60416,sortie-145a5dbf-e739-4e03-a692-ec5fabc10cbf,https://biolit.fr/sorties/sortie-145a5dbf-e739-4e03-a692-ec5fabc10cbf/,Phil,,06/08/2017,12.0:35,12.0:45,47.894329000000,-4.131469000000,,Gouesnarc'h - Finistère,48284,observation-145a5dbf-e739-4e03-a692-ec5fabc10cbf-3,https://biolit.fr/observations/observation-145a5dbf-e739-4e03-a692-ec5fabc10cbf-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070466.JPG,,FALSE, +N1,60416,sortie-145a5dbf-e739-4e03-a692-ec5fabc10cbf,https://biolit.fr/sorties/sortie-145a5dbf-e739-4e03-a692-ec5fabc10cbf/,Phil,,06/08/2017,12.0:35,12.0:45,47.894329000000,-4.131469000000,,Gouesnarc'h - Finistère,48286,observation-145a5dbf-e739-4e03-a692-ec5fabc10cbf-4,https://biolit.fr/observations/observation-145a5dbf-e739-4e03-a692-ec5fabc10cbf-4/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1070460.JPG,,TRUE, +N1,60416,sortie-145a5dbf-e739-4e03-a692-ec5fabc10cbf,https://biolit.fr/sorties/sortie-145a5dbf-e739-4e03-a692-ec5fabc10cbf/,Phil,,06/08/2017,12.0:35,12.0:45,47.894329000000,-4.131469000000,,Gouesnarc'h - Finistère,48288,observation-145a5dbf-e739-4e03-a692-ec5fabc10cbf-5,https://biolit.fr/observations/observation-145a5dbf-e739-4e03-a692-ec5fabc10cbf-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070459.JPG,,FALSE, +N1,60417,sortie-9b1e0551-7d3d-41e6-b63b-436771b8e4d8,https://biolit.fr/sorties/sortie-9b1e0551-7d3d-41e6-b63b-436771b8e4d8/,Phil,,6/18/2017 0:00,12.000005,12.0000000,47.708726000000,-3.995442000000,,Fouesnant - Finistère,48290,observation-9b1e0551-7d3d-41e6-b63b-436771b8e4d8,https://biolit.fr/observations/observation-9b1e0551-7d3d-41e6-b63b-436771b8e4d8/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1070529.JPG,,TRUE, +N1,60417,sortie-9b1e0551-7d3d-41e6-b63b-436771b8e4d8,https://biolit.fr/sorties/sortie-9b1e0551-7d3d-41e6-b63b-436771b8e4d8/,Phil,,6/18/2017 0:00,12.000005,12.0000000,47.708726000000,-3.995442000000,,Fouesnant - Finistère,48292,observation-9b1e0551-7d3d-41e6-b63b-436771b8e4d8-2,https://biolit.fr/observations/observation-9b1e0551-7d3d-41e6-b63b-436771b8e4d8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070528.JPG,,FALSE, +N1,60417,sortie-9b1e0551-7d3d-41e6-b63b-436771b8e4d8,https://biolit.fr/sorties/sortie-9b1e0551-7d3d-41e6-b63b-436771b8e4d8/,Phil,,6/18/2017 0:00,12.000005,12.0000000,47.708726000000,-3.995442000000,,Fouesnant - Finistère,48294,observation-9b1e0551-7d3d-41e6-b63b-436771b8e4d8-3,https://biolit.fr/observations/observation-9b1e0551-7d3d-41e6-b63b-436771b8e4d8-3/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1070531.JPG,,TRUE, +N1,60417,sortie-9b1e0551-7d3d-41e6-b63b-436771b8e4d8,https://biolit.fr/sorties/sortie-9b1e0551-7d3d-41e6-b63b-436771b8e4d8/,Phil,,6/18/2017 0:00,12.000005,12.0000000,47.708726000000,-3.995442000000,,Fouesnant - Finistère,48296,observation-9b1e0551-7d3d-41e6-b63b-436771b8e4d8-4,https://biolit.fr/observations/observation-9b1e0551-7d3d-41e6-b63b-436771b8e4d8-4/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1070533.JPG,,TRUE, +N1,60417,sortie-9b1e0551-7d3d-41e6-b63b-436771b8e4d8,https://biolit.fr/sorties/sortie-9b1e0551-7d3d-41e6-b63b-436771b8e4d8/,Phil,,6/18/2017 0:00,12.000005,12.0000000,47.708726000000,-3.995442000000,,Fouesnant - Finistère,48298,observation-9b1e0551-7d3d-41e6-b63b-436771b8e4d8-5,https://biolit.fr/observations/observation-9b1e0551-7d3d-41e6-b63b-436771b8e4d8-5/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1070534.JPG,,TRUE, +N1,60418,sortie-45677ee8-dee7-4ecc-8269-6f318904a822,https://biolit.fr/sorties/sortie-45677ee8-dee7-4ecc-8269-6f318904a822/,Marine,,7/13/2017 0:00,14.0000000,16.0000000,46.137739000000,-1.158742000000,,Plage de Roux,48300,observation-45677ee8-dee7-4ecc-8269-6f318904a822,https://biolit.fr/observations/observation-45677ee8-dee7-4ecc-8269-6f318904a822/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_2823-rotated.jpg,,TRUE, +N1,60418,sortie-45677ee8-dee7-4ecc-8269-6f318904a822,https://biolit.fr/sorties/sortie-45677ee8-dee7-4ecc-8269-6f318904a822/,Marine,,7/13/2017 0:00,14.0000000,16.0000000,46.137739000000,-1.158742000000,,Plage de Roux,48302,observation-45677ee8-dee7-4ecc-8269-6f318904a822-2,https://biolit.fr/observations/observation-45677ee8-dee7-4ecc-8269-6f318904a822-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2826-rotated.jpg,,FALSE, +N1,60418,sortie-45677ee8-dee7-4ecc-8269-6f318904a822,https://biolit.fr/sorties/sortie-45677ee8-dee7-4ecc-8269-6f318904a822/,Marine,,7/13/2017 0:00,14.0000000,16.0000000,46.137739000000,-1.158742000000,,Plage de Roux,48304,observation-45677ee8-dee7-4ecc-8269-6f318904a822-3,https://biolit.fr/observations/observation-45677ee8-dee7-4ecc-8269-6f318904a822-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2827-rotated.jpg,,FALSE, +N1,60418,sortie-45677ee8-dee7-4ecc-8269-6f318904a822,https://biolit.fr/sorties/sortie-45677ee8-dee7-4ecc-8269-6f318904a822/,Marine,,7/13/2017 0:00,14.0000000,16.0000000,46.137739000000,-1.158742000000,,Plage de Roux,48306,observation-45677ee8-dee7-4ecc-8269-6f318904a822-4,https://biolit.fr/observations/observation-45677ee8-dee7-4ecc-8269-6f318904a822-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2833-rotated.jpg,,FALSE, +N1,60418,sortie-45677ee8-dee7-4ecc-8269-6f318904a822,https://biolit.fr/sorties/sortie-45677ee8-dee7-4ecc-8269-6f318904a822/,Marine,,7/13/2017 0:00,14.0000000,16.0000000,46.137739000000,-1.158742000000,,Plage de Roux,48308,observation-45677ee8-dee7-4ecc-8269-6f318904a822-5,https://biolit.fr/observations/observation-45677ee8-dee7-4ecc-8269-6f318904a822-5/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2835-rotated.jpg,,TRUE, +N1,60418,sortie-45677ee8-dee7-4ecc-8269-6f318904a822,https://biolit.fr/sorties/sortie-45677ee8-dee7-4ecc-8269-6f318904a822/,Marine,,7/13/2017 0:00,14.0000000,16.0000000,46.137739000000,-1.158742000000,,Plage de Roux,48310,observation-45677ee8-dee7-4ecc-8269-6f318904a822-6,https://biolit.fr/observations/observation-45677ee8-dee7-4ecc-8269-6f318904a822-6/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2834-rotated.jpg,,TRUE, +N1,60418,sortie-45677ee8-dee7-4ecc-8269-6f318904a822,https://biolit.fr/sorties/sortie-45677ee8-dee7-4ecc-8269-6f318904a822/,Marine,,7/13/2017 0:00,14.0000000,16.0000000,46.137739000000,-1.158742000000,,Plage de Roux,48312,observation-45677ee8-dee7-4ecc-8269-6f318904a822-7,https://biolit.fr/observations/observation-45677ee8-dee7-4ecc-8269-6f318904a822-7/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2843-rotated.jpg,,TRUE, +N1,60418,sortie-45677ee8-dee7-4ecc-8269-6f318904a822,https://biolit.fr/sorties/sortie-45677ee8-dee7-4ecc-8269-6f318904a822/,Marine,,7/13/2017 0:00,14.0000000,16.0000000,46.137739000000,-1.158742000000,,Plage de Roux,48314,observation-45677ee8-dee7-4ecc-8269-6f318904a822-8,https://biolit.fr/observations/observation-45677ee8-dee7-4ecc-8269-6f318904a822-8/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2844-rotated.jpg,,TRUE, +N1,60419,sortie-23053278-1bc2-472e-9592-224c4d5ab8bc,https://biolit.fr/sorties/sortie-23053278-1bc2-472e-9592-224c4d5ab8bc/,LucileA,,7/13/2017 0:00,14.0000000,15.0000000,46.13629100000,-1.153895000000,,Plage du Roux,48316,observation-23053278-1bc2-472e-9592-224c4d5ab8bc,https://biolit.fr/observations/observation-23053278-1bc2-472e-9592-224c4d5ab8bc/,Aphrodita aculeata,Aphrodite,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6723-scaled.jpg,,TRUE, +N1,60419,sortie-23053278-1bc2-472e-9592-224c4d5ab8bc,https://biolit.fr/sorties/sortie-23053278-1bc2-472e-9592-224c4d5ab8bc/,LucileA,,7/13/2017 0:00,14.0000000,15.0000000,46.13629100000,-1.153895000000,,Plage du Roux,48318,observation-23053278-1bc2-472e-9592-224c4d5ab8bc-2,https://biolit.fr/observations/observation-23053278-1bc2-472e-9592-224c4d5ab8bc-2/,Aphrodita aculeata,Aphrodite,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0501-scaled.jpg,,TRUE, +N1,60419,sortie-23053278-1bc2-472e-9592-224c4d5ab8bc,https://biolit.fr/sorties/sortie-23053278-1bc2-472e-9592-224c4d5ab8bc/,LucileA,,7/13/2017 0:00,14.0000000,15.0000000,46.13629100000,-1.153895000000,,Plage du Roux,48320,observation-23053278-1bc2-472e-9592-224c4d5ab8bc-3,https://biolit.fr/observations/observation-23053278-1bc2-472e-9592-224c4d5ab8bc-3/,Aphrodita aculeata,Aphrodite,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0502-scaled.jpg,,TRUE, +N1,60419,sortie-23053278-1bc2-472e-9592-224c4d5ab8bc,https://biolit.fr/sorties/sortie-23053278-1bc2-472e-9592-224c4d5ab8bc/,LucileA,,7/13/2017 0:00,14.0000000,15.0000000,46.13629100000,-1.153895000000,,Plage du Roux,48322,observation-23053278-1bc2-472e-9592-224c4d5ab8bc-4,https://biolit.fr/observations/observation-23053278-1bc2-472e-9592-224c4d5ab8bc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0508-scaled.jpg,,FALSE, +N1,60419,sortie-23053278-1bc2-472e-9592-224c4d5ab8bc,https://biolit.fr/sorties/sortie-23053278-1bc2-472e-9592-224c4d5ab8bc/,LucileA,,7/13/2017 0:00,14.0000000,15.0000000,46.13629100000,-1.153895000000,,Plage du Roux,48324,observation-23053278-1bc2-472e-9592-224c4d5ab8bc-5,https://biolit.fr/observations/observation-23053278-1bc2-472e-9592-224c4d5ab8bc-5/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0497-scaled.jpg,,TRUE, +N1,60419,sortie-23053278-1bc2-472e-9592-224c4d5ab8bc,https://biolit.fr/sorties/sortie-23053278-1bc2-472e-9592-224c4d5ab8bc/,LucileA,,7/13/2017 0:00,14.0000000,15.0000000,46.13629100000,-1.153895000000,,Plage du Roux,48326,observation-23053278-1bc2-472e-9592-224c4d5ab8bc-6,https://biolit.fr/observations/observation-23053278-1bc2-472e-9592-224c4d5ab8bc-6/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0498-scaled.jpg,,TRUE, +N1,60419,sortie-23053278-1bc2-472e-9592-224c4d5ab8bc,https://biolit.fr/sorties/sortie-23053278-1bc2-472e-9592-224c4d5ab8bc/,LucileA,,7/13/2017 0:00,14.0000000,15.0000000,46.13629100000,-1.153895000000,,Plage du Roux,48328,observation-23053278-1bc2-472e-9592-224c4d5ab8bc-7,https://biolit.fr/observations/observation-23053278-1bc2-472e-9592-224c4d5ab8bc-7/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_0509-scaled.jpg,,TRUE, +N1,60419,sortie-23053278-1bc2-472e-9592-224c4d5ab8bc,https://biolit.fr/sorties/sortie-23053278-1bc2-472e-9592-224c4d5ab8bc/,LucileA,,7/13/2017 0:00,14.0000000,15.0000000,46.13629100000,-1.153895000000,,Plage du Roux,48330,observation-23053278-1bc2-472e-9592-224c4d5ab8bc-8,https://biolit.fr/observations/observation-23053278-1bc2-472e-9592-224c4d5ab8bc-8/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0513-scaled.jpg,,TRUE, +N1,60419,sortie-23053278-1bc2-472e-9592-224c4d5ab8bc,https://biolit.fr/sorties/sortie-23053278-1bc2-472e-9592-224c4d5ab8bc/,LucileA,,7/13/2017 0:00,14.0000000,15.0000000,46.13629100000,-1.153895000000,,Plage du Roux,48332,observation-23053278-1bc2-472e-9592-224c4d5ab8bc-9,https://biolit.fr/observations/observation-23053278-1bc2-472e-9592-224c4d5ab8bc-9/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0516-scaled.jpg,,TRUE, +N1,60420,sortie-98bce18c-ba5e-4a80-95e7-381c0b5cba8f,https://biolit.fr/sorties/sortie-98bce18c-ba5e-4a80-95e7-381c0b5cba8f/,Phil,,07/08/2017,10.0:25,10.0000000,47.882179000000,-3.933614000000,,Concarneau - Finistère,48334,observation-98bce18c-ba5e-4a80-95e7-381c0b5cba8f,https://biolit.fr/observations/observation-98bce18c-ba5e-4a80-95e7-381c0b5cba8f/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20170708_102610.jpg,,TRUE, +N1,60420,sortie-98bce18c-ba5e-4a80-95e7-381c0b5cba8f,https://biolit.fr/sorties/sortie-98bce18c-ba5e-4a80-95e7-381c0b5cba8f/,Phil,,07/08/2017,10.0:25,10.0000000,47.882179000000,-3.933614000000,,Concarneau - Finistère,48336,observation-98bce18c-ba5e-4a80-95e7-381c0b5cba8f-2,https://biolit.fr/observations/observation-98bce18c-ba5e-4a80-95e7-381c0b5cba8f-2/,Phymatolithon calcareum,Maërl,,https://biolit.fr/wp-content/uploads/2023/07/20170708_102521.jpg,,TRUE, +N1,60420,sortie-98bce18c-ba5e-4a80-95e7-381c0b5cba8f,https://biolit.fr/sorties/sortie-98bce18c-ba5e-4a80-95e7-381c0b5cba8f/,Phil,,07/08/2017,10.0:25,10.0000000,47.882179000000,-3.933614000000,,Concarneau - Finistère,48338,observation-98bce18c-ba5e-4a80-95e7-381c0b5cba8f-3,https://biolit.fr/observations/observation-98bce18c-ba5e-4a80-95e7-381c0b5cba8f-3/,Lutraria lutraria,Lutraire elliptique,,https://biolit.fr/wp-content/uploads/2023/07/20170708_102548.jpg,,TRUE, +N1,60420,sortie-98bce18c-ba5e-4a80-95e7-381c0b5cba8f,https://biolit.fr/sorties/sortie-98bce18c-ba5e-4a80-95e7-381c0b5cba8f/,Phil,,07/08/2017,10.0:25,10.0000000,47.882179000000,-3.933614000000,,Concarneau - Finistère,48340,observation-98bce18c-ba5e-4a80-95e7-381c0b5cba8f-4,https://biolit.fr/observations/observation-98bce18c-ba5e-4a80-95e7-381c0b5cba8f-4/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/20170708_102656.jpg,,TRUE, +N1,60421,sortie-79179335-32dc-493f-8f2e-c7d459779292,https://biolit.fr/sorties/sortie-79179335-32dc-493f-8f2e-c7d459779292/,NVanzu,,07/12/2017,10.0000000,10.0:15,43.214790000000,5.342952000000,,Anse de la maronaise,48342,observation-79179335-32dc-493f-8f2e-c7d459779292,https://biolit.fr/observations/observation-79179335-32dc-493f-8f2e-c7d459779292/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0742-scaled.jpg,,FALSE, +N1,60421,sortie-79179335-32dc-493f-8f2e-c7d459779292,https://biolit.fr/sorties/sortie-79179335-32dc-493f-8f2e-c7d459779292/,NVanzu,,07/12/2017,10.0000000,10.0:15,43.214790000000,5.342952000000,,Anse de la maronaise,48344,observation-79179335-32dc-493f-8f2e-c7d459779292-2,https://biolit.fr/observations/observation-79179335-32dc-493f-8f2e-c7d459779292-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0749-scaled.jpg,,FALSE, +N1,60421,sortie-79179335-32dc-493f-8f2e-c7d459779292,https://biolit.fr/sorties/sortie-79179335-32dc-493f-8f2e-c7d459779292/,NVanzu,,07/12/2017,10.0000000,10.0:15,43.214790000000,5.342952000000,,Anse de la maronaise,48346,observation-79179335-32dc-493f-8f2e-c7d459779292-3,https://biolit.fr/observations/observation-79179335-32dc-493f-8f2e-c7d459779292-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0751-scaled.jpg,,FALSE, +N1,60421,sortie-79179335-32dc-493f-8f2e-c7d459779292,https://biolit.fr/sorties/sortie-79179335-32dc-493f-8f2e-c7d459779292/,NVanzu,,07/12/2017,10.0000000,10.0:15,43.214790000000,5.342952000000,,Anse de la maronaise,48348,observation-79179335-32dc-493f-8f2e-c7d459779292-4,https://biolit.fr/observations/observation-79179335-32dc-493f-8f2e-c7d459779292-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0752-scaled.jpg,,FALSE, +N1,60421,sortie-79179335-32dc-493f-8f2e-c7d459779292,https://biolit.fr/sorties/sortie-79179335-32dc-493f-8f2e-c7d459779292/,NVanzu,,07/12/2017,10.0000000,10.0:15,43.214790000000,5.342952000000,,Anse de la maronaise,48350,observation-79179335-32dc-493f-8f2e-c7d459779292-5,https://biolit.fr/observations/observation-79179335-32dc-493f-8f2e-c7d459779292-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0755-scaled.jpg,,FALSE, +N1,60422,sortie-9115c828-8bde-4534-85cd-77784bdaafa2,https://biolit.fr/sorties/sortie-9115c828-8bde-4534-85cd-77784bdaafa2/,Mathias,,07/12/2017,11.0000000,13.0000000,43.214805000000,5.3429380000,,Anse de la maronaise,48352,observation-9115c828-8bde-4534-85cd-77784bdaafa2,https://biolit.fr/observations/observation-9115c828-8bde-4534-85cd-77784bdaafa2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0165-scaled.jpg,,FALSE, +N1,60422,sortie-9115c828-8bde-4534-85cd-77784bdaafa2,https://biolit.fr/sorties/sortie-9115c828-8bde-4534-85cd-77784bdaafa2/,Mathias,,07/12/2017,11.0000000,13.0000000,43.214805000000,5.3429380000,,Anse de la maronaise,48354,observation-9115c828-8bde-4534-85cd-77784bdaafa2-2,https://biolit.fr/observations/observation-9115c828-8bde-4534-85cd-77784bdaafa2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0166_1-scaled.jpg,,FALSE, +N1,60422,sortie-9115c828-8bde-4534-85cd-77784bdaafa2,https://biolit.fr/sorties/sortie-9115c828-8bde-4534-85cd-77784bdaafa2/,Mathias,,07/12/2017,11.0000000,13.0000000,43.214805000000,5.3429380000,,Anse de la maronaise,48356,observation-9115c828-8bde-4534-85cd-77784bdaafa2-3,https://biolit.fr/observations/observation-9115c828-8bde-4534-85cd-77784bdaafa2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0169_0-scaled.jpg,,FALSE, +N1,60422,sortie-9115c828-8bde-4534-85cd-77784bdaafa2,https://biolit.fr/sorties/sortie-9115c828-8bde-4534-85cd-77784bdaafa2/,Mathias,,07/12/2017,11.0000000,13.0000000,43.214805000000,5.3429380000,,Anse de la maronaise,48358,observation-9115c828-8bde-4534-85cd-77784bdaafa2-4,https://biolit.fr/observations/observation-9115c828-8bde-4534-85cd-77784bdaafa2-4/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0171-scaled.jpg,,TRUE, +N1,60422,sortie-9115c828-8bde-4534-85cd-77784bdaafa2,https://biolit.fr/sorties/sortie-9115c828-8bde-4534-85cd-77784bdaafa2/,Mathias,,07/12/2017,11.0000000,13.0000000,43.214805000000,5.3429380000,,Anse de la maronaise,48360,observation-9115c828-8bde-4534-85cd-77784bdaafa2-5,https://biolit.fr/observations/observation-9115c828-8bde-4534-85cd-77784bdaafa2-5/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0175-scaled.jpg,,TRUE, +N1,60422,sortie-9115c828-8bde-4534-85cd-77784bdaafa2,https://biolit.fr/sorties/sortie-9115c828-8bde-4534-85cd-77784bdaafa2/,Mathias,,07/12/2017,11.0000000,13.0000000,43.214805000000,5.3429380000,,Anse de la maronaise,48362,observation-9115c828-8bde-4534-85cd-77784bdaafa2-6,https://biolit.fr/observations/observation-9115c828-8bde-4534-85cd-77784bdaafa2-6/,Vermetus triquetrus,Petit vermet,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0177_1-scaled.jpg,,TRUE, +N1,60422,sortie-9115c828-8bde-4534-85cd-77784bdaafa2,https://biolit.fr/sorties/sortie-9115c828-8bde-4534-85cd-77784bdaafa2/,Mathias,,07/12/2017,11.0000000,13.0000000,43.214805000000,5.3429380000,,Anse de la maronaise,48364,observation-9115c828-8bde-4534-85cd-77784bdaafa2-7,https://biolit.fr/observations/observation-9115c828-8bde-4534-85cd-77784bdaafa2-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0173_0-scaled.jpg,,FALSE, +N1,60422,sortie-9115c828-8bde-4534-85cd-77784bdaafa2,https://biolit.fr/sorties/sortie-9115c828-8bde-4534-85cd-77784bdaafa2/,Mathias,,07/12/2017,11.0000000,13.0000000,43.214805000000,5.3429380000,,Anse de la maronaise,48366,observation-9115c828-8bde-4534-85cd-77784bdaafa2-8,https://biolit.fr/observations/observation-9115c828-8bde-4534-85cd-77784bdaafa2-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0174_0-scaled.jpg,,FALSE, +N1,60422,sortie-9115c828-8bde-4534-85cd-77784bdaafa2,https://biolit.fr/sorties/sortie-9115c828-8bde-4534-85cd-77784bdaafa2/,Mathias,,07/12/2017,11.0000000,13.0000000,43.214805000000,5.3429380000,,Anse de la maronaise,48368,observation-9115c828-8bde-4534-85cd-77784bdaafa2-9,https://biolit.fr/observations/observation-9115c828-8bde-4534-85cd-77784bdaafa2-9/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0179_0-scaled.jpg,,TRUE, +N1,60423,sortie-d8ed7c08-8602-43b3-ac95-7458fe2fb05d,https://biolit.fr/sorties/sortie-d8ed7c08-8602-43b3-ac95-7458fe2fb05d/,Phil,,06/08/2017,12.0000000,12.0:25,47.893976000000,-4.130900000000,,Gouesnarc'h - Finistère,48370,observation-d8ed7c08-8602-43b3-ac95-7458fe2fb05d,https://biolit.fr/observations/observation-d8ed7c08-8602-43b3-ac95-7458fe2fb05d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070448.JPG,,FALSE, +N1,60423,sortie-d8ed7c08-8602-43b3-ac95-7458fe2fb05d,https://biolit.fr/sorties/sortie-d8ed7c08-8602-43b3-ac95-7458fe2fb05d/,Phil,,06/08/2017,12.0000000,12.0:25,47.893976000000,-4.130900000000,,Gouesnarc'h - Finistère,48372,observation-d8ed7c08-8602-43b3-ac95-7458fe2fb05d-2,https://biolit.fr/observations/observation-d8ed7c08-8602-43b3-ac95-7458fe2fb05d-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1070452.JPG,,TRUE, +N1,60423,sortie-d8ed7c08-8602-43b3-ac95-7458fe2fb05d,https://biolit.fr/sorties/sortie-d8ed7c08-8602-43b3-ac95-7458fe2fb05d/,Phil,,06/08/2017,12.0000000,12.0:25,47.893976000000,-4.130900000000,,Gouesnarc'h - Finistère,48374,observation-d8ed7c08-8602-43b3-ac95-7458fe2fb05d-3,https://biolit.fr/observations/observation-d8ed7c08-8602-43b3-ac95-7458fe2fb05d-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070453.JPG,,TRUE, +N1,60423,sortie-d8ed7c08-8602-43b3-ac95-7458fe2fb05d,https://biolit.fr/sorties/sortie-d8ed7c08-8602-43b3-ac95-7458fe2fb05d/,Phil,,06/08/2017,12.0000000,12.0:25,47.893976000000,-4.130900000000,,Gouesnarc'h - Finistère,48376,observation-d8ed7c08-8602-43b3-ac95-7458fe2fb05d-4,https://biolit.fr/observations/observation-d8ed7c08-8602-43b3-ac95-7458fe2fb05d-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1070446.JPG,,TRUE, +N1,60423,sortie-d8ed7c08-8602-43b3-ac95-7458fe2fb05d,https://biolit.fr/sorties/sortie-d8ed7c08-8602-43b3-ac95-7458fe2fb05d/,Phil,,06/08/2017,12.0000000,12.0:25,47.893976000000,-4.130900000000,,Gouesnarc'h - Finistère,48378,observation-d8ed7c08-8602-43b3-ac95-7458fe2fb05d-5,https://biolit.fr/observations/observation-d8ed7c08-8602-43b3-ac95-7458fe2fb05d-5/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/P1070456.JPG,,TRUE, +N1,60423,sortie-d8ed7c08-8602-43b3-ac95-7458fe2fb05d,https://biolit.fr/sorties/sortie-d8ed7c08-8602-43b3-ac95-7458fe2fb05d/,Phil,,06/08/2017,12.0000000,12.0:25,47.893976000000,-4.130900000000,,Gouesnarc'h - Finistère,48380,observation-d8ed7c08-8602-43b3-ac95-7458fe2fb05d-6,https://biolit.fr/observations/observation-d8ed7c08-8602-43b3-ac95-7458fe2fb05d-6/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1070457.JPG,,TRUE, +N1,60424,sortie-600d6b3b-c905-4fad-b8f3-00899791b2d6,https://biolit.fr/sorties/sortie-600d6b3b-c905-4fad-b8f3-00899791b2d6/,Phil,,6/18/2017 0:00,12.0000000,12.000005,47.709407000000,-3.99317600000,,Fouesnant - Finistère,48382,observation-600d6b3b-c905-4fad-b8f3-00899791b2d6,https://biolit.fr/observations/observation-600d6b3b-c905-4fad-b8f3-00899791b2d6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070522.JPG,,FALSE, +N1,60425,sortie-757598b8-4d92-415b-b63a-fad23e846346,https://biolit.fr/sorties/sortie-757598b8-4d92-415b-b63a-fad23e846346/,Phil,,07/08/2017,10.0000000,10.0:25,47.881942000000,-3.934524000000,,Concarneau - Finistère,48384,observation-757598b8-4d92-415b-b63a-fad23e846346,https://biolit.fr/observations/observation-757598b8-4d92-415b-b63a-fad23e846346/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170708_102511.jpg,,FALSE, +N1,60425,sortie-757598b8-4d92-415b-b63a-fad23e846346,https://biolit.fr/sorties/sortie-757598b8-4d92-415b-b63a-fad23e846346/,Phil,,07/08/2017,10.0000000,10.0:25,47.881942000000,-3.934524000000,,Concarneau - Finistère,48386,observation-757598b8-4d92-415b-b63a-fad23e846346-2,https://biolit.fr/observations/observation-757598b8-4d92-415b-b63a-fad23e846346-2/,Lutraria lutraria,Lutraire elliptique,,https://biolit.fr/wp-content/uploads/2023/07/20170708_102257.jpg,,TRUE, +N1,60425,sortie-757598b8-4d92-415b-b63a-fad23e846346,https://biolit.fr/sorties/sortie-757598b8-4d92-415b-b63a-fad23e846346/,Phil,,07/08/2017,10.0000000,10.0:25,47.881942000000,-3.934524000000,,Concarneau - Finistère,48388,observation-757598b8-4d92-415b-b63a-fad23e846346-3,https://biolit.fr/observations/observation-757598b8-4d92-415b-b63a-fad23e846346-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170708_102425.jpg,,FALSE, +N1,60426,sortie-e7cd51af-41cc-4b5a-8039-0212e7284049,https://biolit.fr/sorties/sortie-e7cd51af-41cc-4b5a-8039-0212e7284049/,Phil,,3/27/2017 0:00,11.0000000,11.0000000,47.853440000000,-3.912787000000,,Concarneau - Finistère,48390,observation-e7cd51af-41cc-4b5a-8039-0212e7284049,https://biolit.fr/observations/observation-e7cd51af-41cc-4b5a-8039-0212e7284049/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060875.JPG,,FALSE, +N1,60426,sortie-e7cd51af-41cc-4b5a-8039-0212e7284049,https://biolit.fr/sorties/sortie-e7cd51af-41cc-4b5a-8039-0212e7284049/,Phil,,3/27/2017 0:00,11.0000000,11.0000000,47.853440000000,-3.912787000000,,Concarneau - Finistère,48392,observation-e7cd51af-41cc-4b5a-8039-0212e7284049-2,https://biolit.fr/observations/observation-e7cd51af-41cc-4b5a-8039-0212e7284049-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060874.JPG,,FALSE, +N1,60426,sortie-e7cd51af-41cc-4b5a-8039-0212e7284049,https://biolit.fr/sorties/sortie-e7cd51af-41cc-4b5a-8039-0212e7284049/,Phil,,3/27/2017 0:00,11.0000000,11.0000000,47.853440000000,-3.912787000000,,Concarneau - Finistère,48394,observation-e7cd51af-41cc-4b5a-8039-0212e7284049-3,https://biolit.fr/observations/observation-e7cd51af-41cc-4b5a-8039-0212e7284049-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060880.JPG,,FALSE, +N1,60426,sortie-e7cd51af-41cc-4b5a-8039-0212e7284049,https://biolit.fr/sorties/sortie-e7cd51af-41cc-4b5a-8039-0212e7284049/,Phil,,3/27/2017 0:00,11.0000000,11.0000000,47.853440000000,-3.912787000000,,Concarneau - Finistère,48396,observation-e7cd51af-41cc-4b5a-8039-0212e7284049-4,https://biolit.fr/observations/observation-e7cd51af-41cc-4b5a-8039-0212e7284049-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060882.JPG,,FALSE, +N1,60427,sortie-9f02344e-7cfe-4332-995b-f2f4cfb92df3,https://biolit.fr/sorties/sortie-9f02344e-7cfe-4332-995b-f2f4cfb92df3/,Phil,,4/14/2017 0:00,12.0000000,12.0:25,48.847610000000,-3.011691000000,,Île-de-Bréhat - Côtes-d'Armor,48398,observation-9f02344e-7cfe-4332-995b-f2f4cfb92df3,https://biolit.fr/observations/observation-9f02344e-7cfe-4332-995b-f2f4cfb92df3/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060965.JPG,,TRUE, +N1,60427,sortie-9f02344e-7cfe-4332-995b-f2f4cfb92df3,https://biolit.fr/sorties/sortie-9f02344e-7cfe-4332-995b-f2f4cfb92df3/,Phil,,4/14/2017 0:00,12.0000000,12.0:25,48.847610000000,-3.011691000000,,Île-de-Bréhat - Côtes-d'Armor,48400,observation-9f02344e-7cfe-4332-995b-f2f4cfb92df3-2,https://biolit.fr/observations/observation-9f02344e-7cfe-4332-995b-f2f4cfb92df3-2/,Littorina compressa,Littorine à lignes noires,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060967.JPG,,TRUE, +N1,60427,sortie-9f02344e-7cfe-4332-995b-f2f4cfb92df3,https://biolit.fr/sorties/sortie-9f02344e-7cfe-4332-995b-f2f4cfb92df3/,Phil,,4/14/2017 0:00,12.0000000,12.0:25,48.847610000000,-3.011691000000,,Île-de-Bréhat - Côtes-d'Armor,48402,observation-9f02344e-7cfe-4332-995b-f2f4cfb92df3-3,https://biolit.fr/observations/observation-9f02344e-7cfe-4332-995b-f2f4cfb92df3-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060976.JPG,,TRUE, +N1,60427,sortie-9f02344e-7cfe-4332-995b-f2f4cfb92df3,https://biolit.fr/sorties/sortie-9f02344e-7cfe-4332-995b-f2f4cfb92df3/,Phil,,4/14/2017 0:00,12.0000000,12.0:25,48.847610000000,-3.011691000000,,Île-de-Bréhat - Côtes-d'Armor,48404,observation-9f02344e-7cfe-4332-995b-f2f4cfb92df3-4,https://biolit.fr/observations/observation-9f02344e-7cfe-4332-995b-f2f4cfb92df3-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060977.JPG,,TRUE, +N1,60427,sortie-9f02344e-7cfe-4332-995b-f2f4cfb92df3,https://biolit.fr/sorties/sortie-9f02344e-7cfe-4332-995b-f2f4cfb92df3/,Phil,,4/14/2017 0:00,12.0000000,12.0:25,48.847610000000,-3.011691000000,,Île-de-Bréhat - Côtes-d'Armor,48406,observation-9f02344e-7cfe-4332-995b-f2f4cfb92df3-5,https://biolit.fr/observations/observation-9f02344e-7cfe-4332-995b-f2f4cfb92df3-5/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060985.JPG,,TRUE, +N1,60427,sortie-9f02344e-7cfe-4332-995b-f2f4cfb92df3,https://biolit.fr/sorties/sortie-9f02344e-7cfe-4332-995b-f2f4cfb92df3/,Phil,,4/14/2017 0:00,12.0000000,12.0:25,48.847610000000,-3.011691000000,,Île-de-Bréhat - Côtes-d'Armor,48408,observation-9f02344e-7cfe-4332-995b-f2f4cfb92df3-6,https://biolit.fr/observations/observation-9f02344e-7cfe-4332-995b-f2f4cfb92df3-6/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060986.JPG,,TRUE, +N1,60428,sortie-80278856-6396-4532-8e71-68c1acec7896,https://biolit.fr/sorties/sortie-80278856-6396-4532-8e71-68c1acec7896/,Phil,,06/02/2017,17.0000000,17.0:45,47.791090000000,-4.277881000000,,Léchiagat - Finistère,48410,observation-80278856-6396-4532-8e71-68c1acec7896,https://biolit.fr/observations/observation-80278856-6396-4532-8e71-68c1acec7896/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170602_174522.jpg,,TRUE, +N1,60428,sortie-80278856-6396-4532-8e71-68c1acec7896,https://biolit.fr/sorties/sortie-80278856-6396-4532-8e71-68c1acec7896/,Phil,,06/02/2017,17.0000000,17.0:45,47.791090000000,-4.277881000000,,Léchiagat - Finistère,48412,observation-80278856-6396-4532-8e71-68c1acec7896-2,https://biolit.fr/observations/observation-80278856-6396-4532-8e71-68c1acec7896-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170602_173851.jpg,,FALSE, +N1,60428,sortie-80278856-6396-4532-8e71-68c1acec7896,https://biolit.fr/sorties/sortie-80278856-6396-4532-8e71-68c1acec7896/,Phil,,06/02/2017,17.0000000,17.0:45,47.791090000000,-4.277881000000,,Léchiagat - Finistère,48414,observation-80278856-6396-4532-8e71-68c1acec7896-3,https://biolit.fr/observations/observation-80278856-6396-4532-8e71-68c1acec7896-3/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170602_174503.jpg,,TRUE, +N1,60429,sortie-d897ed65-445e-49d2-a68f-3601373c5b7b,https://biolit.fr/sorties/sortie-d897ed65-445e-49d2-a68f-3601373c5b7b/,LucileA,,07/04/2017,14.0000000,16.0000000,48.641075000000,-2.072227000000,,Plage de St Enogat,48416,observation-d897ed65-445e-49d2-a68f-3601373c5b7b,https://biolit.fr/observations/observation-d897ed65-445e-49d2-a68f-3601373c5b7b/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6660.JPG,,TRUE, +N1,60430,sortie-ed5ffb5b-1fa5-4bfc-9477-881ec9c4ac6d,https://biolit.fr/sorties/sortie-ed5ffb5b-1fa5-4bfc-9477-881ec9c4ac6d/,Septentrion Environnement,,06/10/2017,14.0000000,15.0000000,43.210347000000,5.332530000000,,Grotte à Corail Ile Maire Marseille,48418,observation-ed5ffb5b-1fa5-4bfc-9477-881ec9c4ac6d,https://biolit.fr/observations/observation-ed5ffb5b-1fa5-4bfc-9477-881ec9c4ac6d/,Crambe crambe,Eponge encroûtante orange-rouge,,https://biolit.fr/wp-content/uploads/2023/07/Bio-1080-min-scaled.jpg,,TRUE, +N1,60431,sortie-979619ae-31b7-41e0-ac49-760a9057a1b1,https://biolit.fr/sorties/sortie-979619ae-31b7-41e0-ac49-760a9057a1b1/,Phil,,6/18/2017 0:00,15.0000000,15.0000000,47.719978000000,-3.958412000000,,Fouesnant - Finistère,48420,observation-979619ae-31b7-41e0-ac49-760a9057a1b1,https://biolit.fr/observations/observation-979619ae-31b7-41e0-ac49-760a9057a1b1/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070638.JPG,,FALSE, +N1,60431,sortie-979619ae-31b7-41e0-ac49-760a9057a1b1,https://biolit.fr/sorties/sortie-979619ae-31b7-41e0-ac49-760a9057a1b1/,Phil,,6/18/2017 0:00,15.0000000,15.0000000,47.719978000000,-3.958412000000,,Fouesnant - Finistère,48422,observation-979619ae-31b7-41e0-ac49-760a9057a1b1-2,https://biolit.fr/observations/observation-979619ae-31b7-41e0-ac49-760a9057a1b1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070646.JPG,,FALSE, +N1,60431,sortie-979619ae-31b7-41e0-ac49-760a9057a1b1,https://biolit.fr/sorties/sortie-979619ae-31b7-41e0-ac49-760a9057a1b1/,Phil,,6/18/2017 0:00,15.0000000,15.0000000,47.719978000000,-3.958412000000,,Fouesnant - Finistère,48424,observation-979619ae-31b7-41e0-ac49-760a9057a1b1-3,https://biolit.fr/observations/observation-979619ae-31b7-41e0-ac49-760a9057a1b1-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070648.JPG,,FALSE, +N1,60431,sortie-979619ae-31b7-41e0-ac49-760a9057a1b1,https://biolit.fr/sorties/sortie-979619ae-31b7-41e0-ac49-760a9057a1b1/,Phil,,6/18/2017 0:00,15.0000000,15.0000000,47.719978000000,-3.958412000000,,Fouesnant - Finistère,48426,observation-979619ae-31b7-41e0-ac49-760a9057a1b1-4,https://biolit.fr/observations/observation-979619ae-31b7-41e0-ac49-760a9057a1b1-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070651.JPG,,FALSE, +N1,60432,sortie-35a0efde-2c97-4601-b3b9-11475be50c2d,https://biolit.fr/sorties/sortie-35a0efde-2c97-4601-b3b9-11475be50c2d/,Phil,,3/27/2017 0:00,11.0000000,11.0:45,47.854640000000,-3.913117000000,,Concarneau - Finistère,48428,observation-35a0efde-2c97-4601-b3b9-11475be50c2d,https://biolit.fr/observations/observation-35a0efde-2c97-4601-b3b9-11475be50c2d/,Membranipora membranacea,Membranipore,,https://biolit.fr/wp-content/uploads/2023/07/P1060883.JPG,,TRUE, +N1,60432,sortie-35a0efde-2c97-4601-b3b9-11475be50c2d,https://biolit.fr/sorties/sortie-35a0efde-2c97-4601-b3b9-11475be50c2d/,Phil,,3/27/2017 0:00,11.0000000,11.0:45,47.854640000000,-3.913117000000,,Concarneau - Finistère,48430,observation-35a0efde-2c97-4601-b3b9-11475be50c2d-2,https://biolit.fr/observations/observation-35a0efde-2c97-4601-b3b9-11475be50c2d-2/,Membranipora membranacea,Membranipore,,https://biolit.fr/wp-content/uploads/2023/07/P1060884.JPG,,TRUE, +N1,60432,sortie-35a0efde-2c97-4601-b3b9-11475be50c2d,https://biolit.fr/sorties/sortie-35a0efde-2c97-4601-b3b9-11475be50c2d/,Phil,,3/27/2017 0:00,11.0000000,11.0:45,47.854640000000,-3.913117000000,,Concarneau - Finistère,48432,observation-35a0efde-2c97-4601-b3b9-11475be50c2d-3,https://biolit.fr/observations/observation-35a0efde-2c97-4601-b3b9-11475be50c2d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060885.JPG,,FALSE, +N1,60432,sortie-35a0efde-2c97-4601-b3b9-11475be50c2d,https://biolit.fr/sorties/sortie-35a0efde-2c97-4601-b3b9-11475be50c2d/,Phil,,3/27/2017 0:00,11.0000000,11.0:45,47.854640000000,-3.913117000000,,Concarneau - Finistère,48434,observation-35a0efde-2c97-4601-b3b9-11475be50c2d-4,https://biolit.fr/observations/observation-35a0efde-2c97-4601-b3b9-11475be50c2d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060887.JPG,,FALSE, +N1,60433,sortie-a9bfe21a-83d3-4b49-b1c6-9cdc3e062afd,https://biolit.fr/sorties/sortie-a9bfe21a-83d3-4b49-b1c6-9cdc3e062afd/,Phil,,06/08/2017,12.000005,12.0000000,47.897628000000,-4.133563000000,,Gouesnarc'h - Finistère,48436,observation-a9bfe21a-83d3-4b49-b1c6-9cdc3e062afd,https://biolit.fr/observations/observation-a9bfe21a-83d3-4b49-b1c6-9cdc3e062afd/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070436.JPG,,FALSE, +N1,60433,sortie-a9bfe21a-83d3-4b49-b1c6-9cdc3e062afd,https://biolit.fr/sorties/sortie-a9bfe21a-83d3-4b49-b1c6-9cdc3e062afd/,Phil,,06/08/2017,12.000005,12.0000000,47.897628000000,-4.133563000000,,Gouesnarc'h - Finistère,48438,observation-a9bfe21a-83d3-4b49-b1c6-9cdc3e062afd-2,https://biolit.fr/observations/observation-a9bfe21a-83d3-4b49-b1c6-9cdc3e062afd-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070434.JPG,,FALSE, +N1,60433,sortie-a9bfe21a-83d3-4b49-b1c6-9cdc3e062afd,https://biolit.fr/sorties/sortie-a9bfe21a-83d3-4b49-b1c6-9cdc3e062afd/,Phil,,06/08/2017,12.000005,12.0000000,47.897628000000,-4.133563000000,,Gouesnarc'h - Finistère,48440,observation-a9bfe21a-83d3-4b49-b1c6-9cdc3e062afd-3,https://biolit.fr/observations/observation-a9bfe21a-83d3-4b49-b1c6-9cdc3e062afd-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070433.JPG,,FALSE, +N1,60434,sortie-d2bb6261-7f39-4c66-9c53-be8e662aafd0,https://biolit.fr/sorties/sortie-d2bb6261-7f39-4c66-9c53-be8e662aafd0/,Phil,,3/27/2017 0:00,11.0:25,11.0:35,47.852412000000,-3.91435100000,,Concarneau - Finistère,48442,observation-d2bb6261-7f39-4c66-9c53-be8e662aafd0,https://biolit.fr/observations/observation-d2bb6261-7f39-4c66-9c53-be8e662aafd0/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060859.JPG,,FALSE, +N1,60434,sortie-d2bb6261-7f39-4c66-9c53-be8e662aafd0,https://biolit.fr/sorties/sortie-d2bb6261-7f39-4c66-9c53-be8e662aafd0/,Phil,,3/27/2017 0:00,11.0:25,11.0:35,47.852412000000,-3.91435100000,,Concarneau - Finistère,48444,observation-d2bb6261-7f39-4c66-9c53-be8e662aafd0-2,https://biolit.fr/observations/observation-d2bb6261-7f39-4c66-9c53-be8e662aafd0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060864.JPG,,FALSE, +N1,60434,sortie-d2bb6261-7f39-4c66-9c53-be8e662aafd0,https://biolit.fr/sorties/sortie-d2bb6261-7f39-4c66-9c53-be8e662aafd0/,Phil,,3/27/2017 0:00,11.0:25,11.0:35,47.852412000000,-3.91435100000,,Concarneau - Finistère,48446,observation-d2bb6261-7f39-4c66-9c53-be8e662aafd0-3,https://biolit.fr/observations/observation-d2bb6261-7f39-4c66-9c53-be8e662aafd0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060866.JPG,,FALSE, +N1,60434,sortie-d2bb6261-7f39-4c66-9c53-be8e662aafd0,https://biolit.fr/sorties/sortie-d2bb6261-7f39-4c66-9c53-be8e662aafd0/,Phil,,3/27/2017 0:00,11.0:25,11.0:35,47.852412000000,-3.91435100000,,Concarneau - Finistère,48448,observation-d2bb6261-7f39-4c66-9c53-be8e662aafd0-4,https://biolit.fr/observations/observation-d2bb6261-7f39-4c66-9c53-be8e662aafd0-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060871.JPG,,FALSE, +N1,60435,sortie-837906f5-f934-4afc-a6bf-c3ba70c7f408,https://biolit.fr/sorties/sortie-837906f5-f934-4afc-a6bf-c3ba70c7f408/,Phil,,06/08/2017,11.0000000,12.000005,47.893989000000,-4.131640000000,,Gouesnarc'h - Finistère,48450,observation-837906f5-f934-4afc-a6bf-c3ba70c7f408,https://biolit.fr/observations/observation-837906f5-f934-4afc-a6bf-c3ba70c7f408/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070431.JPG,,FALSE, +N1,60435,sortie-837906f5-f934-4afc-a6bf-c3ba70c7f408,https://biolit.fr/sorties/sortie-837906f5-f934-4afc-a6bf-c3ba70c7f408/,Phil,,06/08/2017,11.0000000,12.000005,47.893989000000,-4.131640000000,,Gouesnarc'h - Finistère,48452,observation-837906f5-f934-4afc-a6bf-c3ba70c7f408-2,https://biolit.fr/observations/observation-837906f5-f934-4afc-a6bf-c3ba70c7f408-2/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1070438.JPG,,TRUE, +N1,60435,sortie-837906f5-f934-4afc-a6bf-c3ba70c7f408,https://biolit.fr/sorties/sortie-837906f5-f934-4afc-a6bf-c3ba70c7f408/,Phil,,06/08/2017,11.0000000,12.000005,47.893989000000,-4.131640000000,,Gouesnarc'h - Finistère,48454,observation-837906f5-f934-4afc-a6bf-c3ba70c7f408-3,https://biolit.fr/observations/observation-837906f5-f934-4afc-a6bf-c3ba70c7f408-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070439.JPG,,FALSE, +N1,60436,sortie-4af293ab-1057-4266-9868-ebd4fb7b05e2,https://biolit.fr/sorties/sortie-4af293ab-1057-4266-9868-ebd4fb7b05e2/,AIEJE,,6/30/2017 0:00,11.0000000,12.0000000,43.333941000000,5.197772000000,,ensues la redonne,48456,observation-4af293ab-1057-4266-9868-ebd4fb7b05e2,https://biolit.fr/observations/observation-4af293ab-1057-4266-9868-ebd4fb7b05e2/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4880-scaled.jpg,,TRUE, +N1,60437,sortie-34d8b16e-c7e0-46d9-bf10-7dbb092ef1d2,https://biolit.fr/sorties/sortie-34d8b16e-c7e0-46d9-bf10-7dbb092ef1d2/,Phil,,6/18/2017 0:00,14.0000000,14.0:25,47.720969000000,-3.956506000000,,Fouesnant - Finistère,48458,observation-34d8b16e-c7e0-46d9-bf10-7dbb092ef1d2,https://biolit.fr/observations/observation-34d8b16e-c7e0-46d9-bf10-7dbb092ef1d2/,Callista chione,Vernis,,https://biolit.fr/wp-content/uploads/2023/07/P1070566.jpg,,TRUE, +N1,60437,sortie-34d8b16e-c7e0-46d9-bf10-7dbb092ef1d2,https://biolit.fr/sorties/sortie-34d8b16e-c7e0-46d9-bf10-7dbb092ef1d2/,Phil,,6/18/2017 0:00,14.0000000,14.0:25,47.720969000000,-3.956506000000,,Fouesnant - Finistère,48460,observation-34d8b16e-c7e0-46d9-bf10-7dbb092ef1d2-2,https://biolit.fr/observations/observation-34d8b16e-c7e0-46d9-bf10-7dbb092ef1d2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070569.JPG,,FALSE, +N1,60438,sortie-df2558b2-bb27-4ab8-9946-8371f2bb9d80,https://biolit.fr/sorties/sortie-df2558b2-bb27-4ab8-9946-8371f2bb9d80/,Phil,,05/06/2017,12.0000000,15.0000000,47.894050000000,-3.966373000000,,La Forêt-Fouesnant - Finistère,48462,observation-df2558b2-bb27-4ab8-9946-8371f2bb9d80,https://biolit.fr/observations/observation-df2558b2-bb27-4ab8-9946-8371f2bb9d80/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_125637.jpg,,FALSE, +N1,60438,sortie-df2558b2-bb27-4ab8-9946-8371f2bb9d80,https://biolit.fr/sorties/sortie-df2558b2-bb27-4ab8-9946-8371f2bb9d80/,Phil,,05/06/2017,12.0000000,15.0000000,47.894050000000,-3.966373000000,,La Forêt-Fouesnant - Finistère,48464,observation-df2558b2-bb27-4ab8-9946-8371f2bb9d80-2,https://biolit.fr/observations/observation-df2558b2-bb27-4ab8-9946-8371f2bb9d80-2/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/20170506_125656.jpg,,TRUE, +N1,60438,sortie-df2558b2-bb27-4ab8-9946-8371f2bb9d80,https://biolit.fr/sorties/sortie-df2558b2-bb27-4ab8-9946-8371f2bb9d80/,Phil,,05/06/2017,12.0000000,15.0000000,47.894050000000,-3.966373000000,,La Forêt-Fouesnant - Finistère,48466,observation-df2558b2-bb27-4ab8-9946-8371f2bb9d80-3,https://biolit.fr/observations/observation-df2558b2-bb27-4ab8-9946-8371f2bb9d80-3/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/20170506_125705.jpg,,TRUE, +N1,60438,sortie-df2558b2-bb27-4ab8-9946-8371f2bb9d80,https://biolit.fr/sorties/sortie-df2558b2-bb27-4ab8-9946-8371f2bb9d80/,Phil,,05/06/2017,12.0000000,15.0000000,47.894050000000,-3.966373000000,,La Forêt-Fouesnant - Finistère,48468,observation-df2558b2-bb27-4ab8-9946-8371f2bb9d80-4,https://biolit.fr/observations/observation-df2558b2-bb27-4ab8-9946-8371f2bb9d80-4/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/20170506_125723.jpg,,TRUE, +N1,60439,sortie-3b12d1e4-4a91-400e-a8b3-9d566deb2efb,https://biolit.fr/sorties/sortie-3b12d1e4-4a91-400e-a8b3-9d566deb2efb/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236006000000,5.360070000000,,plage de la bonne brise ,48470,observation-3b12d1e4-4a91-400e-a8b3-9d566deb2efb,https://biolit.fr/observations/observation-3b12d1e4-4a91-400e-a8b3-9d566deb2efb/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6290465-scaled.jpg,,FALSE, +N1,60439,sortie-3b12d1e4-4a91-400e-a8b3-9d566deb2efb,https://biolit.fr/sorties/sortie-3b12d1e4-4a91-400e-a8b3-9d566deb2efb/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236006000000,5.360070000000,,plage de la bonne brise ,48472,observation-3b12d1e4-4a91-400e-a8b3-9d566deb2efb-2,https://biolit.fr/observations/observation-3b12d1e4-4a91-400e-a8b3-9d566deb2efb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6290464-scaled.jpg,,FALSE, +N1,60439,sortie-3b12d1e4-4a91-400e-a8b3-9d566deb2efb,https://biolit.fr/sorties/sortie-3b12d1e4-4a91-400e-a8b3-9d566deb2efb/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236006000000,5.360070000000,,plage de la bonne brise ,48474,observation-3b12d1e4-4a91-400e-a8b3-9d566deb2efb-3,https://biolit.fr/observations/observation-3b12d1e4-4a91-400e-a8b3-9d566deb2efb-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6290455-scaled.jpg,,FALSE, +N1,60439,sortie-3b12d1e4-4a91-400e-a8b3-9d566deb2efb,https://biolit.fr/sorties/sortie-3b12d1e4-4a91-400e-a8b3-9d566deb2efb/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236006000000,5.360070000000,,plage de la bonne brise ,48476,observation-3b12d1e4-4a91-400e-a8b3-9d566deb2efb-4,https://biolit.fr/observations/observation-3b12d1e4-4a91-400e-a8b3-9d566deb2efb-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6290454-scaled.jpg,,FALSE, +N1,60440,sortie-0b3be758-8b25-4e48-a6f5-21602bebaf05,https://biolit.fr/sorties/sortie-0b3be758-8b25-4e48-a6f5-21602bebaf05/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236049000000,5.360070000000,,plage de la bonne brise ,48478,observation-0b3be758-8b25-4e48-a6f5-21602bebaf05,https://biolit.fr/observations/observation-0b3be758-8b25-4e48-a6f5-21602bebaf05/,Halopteris scoparia,Algue balai,,https://biolit.fr/wp-content/uploads/2023/07/P6290453-scaled.jpg,,TRUE, +N1,60440,sortie-0b3be758-8b25-4e48-a6f5-21602bebaf05,https://biolit.fr/sorties/sortie-0b3be758-8b25-4e48-a6f5-21602bebaf05/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236049000000,5.360070000000,,plage de la bonne brise ,48480,observation-0b3be758-8b25-4e48-a6f5-21602bebaf05-2,https://biolit.fr/observations/observation-0b3be758-8b25-4e48-a6f5-21602bebaf05-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6290452-scaled.jpg,,FALSE, +N1,60440,sortie-0b3be758-8b25-4e48-a6f5-21602bebaf05,https://biolit.fr/sorties/sortie-0b3be758-8b25-4e48-a6f5-21602bebaf05/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236049000000,5.360070000000,,plage de la bonne brise ,48482,observation-0b3be758-8b25-4e48-a6f5-21602bebaf05-3,https://biolit.fr/observations/observation-0b3be758-8b25-4e48-a6f5-21602bebaf05-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6290449-scaled.jpg,,FALSE, +N1,60440,sortie-0b3be758-8b25-4e48-a6f5-21602bebaf05,https://biolit.fr/sorties/sortie-0b3be758-8b25-4e48-a6f5-21602bebaf05/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236049000000,5.360070000000,,plage de la bonne brise ,48484,observation-0b3be758-8b25-4e48-a6f5-21602bebaf05-4,https://biolit.fr/observations/observation-0b3be758-8b25-4e48-a6f5-21602bebaf05-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6290447-scaled.jpg,,FALSE, +N1,60440,sortie-0b3be758-8b25-4e48-a6f5-21602bebaf05,https://biolit.fr/sorties/sortie-0b3be758-8b25-4e48-a6f5-21602bebaf05/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236049000000,5.360070000000,,plage de la bonne brise ,48486,observation-0b3be758-8b25-4e48-a6f5-21602bebaf05-5,https://biolit.fr/observations/observation-0b3be758-8b25-4e48-a6f5-21602bebaf05-5/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/P6290444-scaled.jpg,,TRUE, +N1,60441,sortie-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4,https://biolit.fr/sorties/sortie-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236142000000,5.360008000000,,plage de la bonne brise ,48488,observation-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4,https://biolit.fr/observations/observation-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6290466-scaled.jpg,,FALSE, +N1,60441,sortie-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4,https://biolit.fr/sorties/sortie-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236142000000,5.360008000000,,plage de la bonne brise ,48490,observation-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4-2,https://biolit.fr/observations/observation-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6290463-scaled.jpg,,FALSE, +N1,60441,sortie-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4,https://biolit.fr/sorties/sortie-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236142000000,5.360008000000,,plage de la bonne brise ,48492,observation-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4-3,https://biolit.fr/observations/observation-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6290461-scaled.jpg,,FALSE, +N1,60441,sortie-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4,https://biolit.fr/sorties/sortie-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236142000000,5.360008000000,,plage de la bonne brise ,48494,observation-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4-4,https://biolit.fr/observations/observation-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6290459-scaled.jpg,,FALSE, +N1,60441,sortie-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4,https://biolit.fr/sorties/sortie-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236142000000,5.360008000000,,plage de la bonne brise ,48496,observation-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4-5,https://biolit.fr/observations/observation-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4-5/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/P6290456-scaled.jpg,,TRUE, +N1,60442,sortie-35ac1ac9-0548-4399-afd6-f85defd11917,https://biolit.fr/sorties/sortie-35ac1ac9-0548-4399-afd6-f85defd11917/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236092000000,5.360003000000,,plage de la bonne brise ,48498,observation-35ac1ac9-0548-4399-afd6-f85defd11917,https://biolit.fr/observations/observation-35ac1ac9-0548-4399-afd6-f85defd11917/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6290467-scaled.jpg,,FALSE, +N1,60442,sortie-35ac1ac9-0548-4399-afd6-f85defd11917,https://biolit.fr/sorties/sortie-35ac1ac9-0548-4399-afd6-f85defd11917/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236092000000,5.360003000000,,plage de la bonne brise ,48500,observation-35ac1ac9-0548-4399-afd6-f85defd11917-2,https://biolit.fr/observations/observation-35ac1ac9-0548-4399-afd6-f85defd11917-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6290445-scaled.jpg,,FALSE, +N1,60442,sortie-35ac1ac9-0548-4399-afd6-f85defd11917,https://biolit.fr/sorties/sortie-35ac1ac9-0548-4399-afd6-f85defd11917/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236092000000,5.360003000000,,plage de la bonne brise ,48502,observation-35ac1ac9-0548-4399-afd6-f85defd11917-3,https://biolit.fr/observations/observation-35ac1ac9-0548-4399-afd6-f85defd11917-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6290443-scaled.jpg,,FALSE, +N1,60443,sortie-d517bc8f-c3ae-4e32-9a4f-7a62c47ed628,https://biolit.fr/sorties/sortie-d517bc8f-c3ae-4e32-9a4f-7a62c47ed628/,NVanzu,,6/29/2017 0:00,10.0000000,11.0000000,43.233158000000,5.356243000000,,Plage de la bonne brise,48504,observation-d517bc8f-c3ae-4e32-9a4f-7a62c47ed628,https://biolit.fr/observations/observation-d517bc8f-c3ae-4e32-9a4f-7a62c47ed628/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0109-scaled.jpg,,FALSE, +N1,60443,sortie-d517bc8f-c3ae-4e32-9a4f-7a62c47ed628,https://biolit.fr/sorties/sortie-d517bc8f-c3ae-4e32-9a4f-7a62c47ed628/,NVanzu,,6/29/2017 0:00,10.0000000,11.0000000,43.233158000000,5.356243000000,,Plage de la bonne brise,48506,observation-d517bc8f-c3ae-4e32-9a4f-7a62c47ed628-2,https://biolit.fr/observations/observation-d517bc8f-c3ae-4e32-9a4f-7a62c47ed628-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0111-scaled.jpg,,FALSE, +N1,60443,sortie-d517bc8f-c3ae-4e32-9a4f-7a62c47ed628,https://biolit.fr/sorties/sortie-d517bc8f-c3ae-4e32-9a4f-7a62c47ed628/,NVanzu,,6/29/2017 0:00,10.0000000,11.0000000,43.233158000000,5.356243000000,,Plage de la bonne brise,48508,observation-d517bc8f-c3ae-4e32-9a4f-7a62c47ed628-3,https://biolit.fr/observations/observation-d517bc8f-c3ae-4e32-9a4f-7a62c47ed628-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0113-scaled.jpg,,FALSE, +N1,60443,sortie-d517bc8f-c3ae-4e32-9a4f-7a62c47ed628,https://biolit.fr/sorties/sortie-d517bc8f-c3ae-4e32-9a4f-7a62c47ed628/,NVanzu,,6/29/2017 0:00,10.0000000,11.0000000,43.233158000000,5.356243000000,,Plage de la bonne brise,48510,observation-d517bc8f-c3ae-4e32-9a4f-7a62c47ed628-4,https://biolit.fr/observations/observation-d517bc8f-c3ae-4e32-9a4f-7a62c47ed628-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0115-scaled.jpg,,FALSE, +N1,60444,sortie-9e177043-99d0-49cf-babd-19447950de54,https://biolit.fr/sorties/sortie-9e177043-99d0-49cf-babd-19447950de54/,Phil,,06/08/2017,11.0:45,12.0000000,47.894685000000,-4.131760000000,,Gouesnarc'h - Finistère,48512,observation-9e177043-99d0-49cf-babd-19447950de54,https://biolit.fr/observations/observation-9e177043-99d0-49cf-babd-19447950de54/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070427.jpg,,FALSE, +N1,60444,sortie-9e177043-99d0-49cf-babd-19447950de54,https://biolit.fr/sorties/sortie-9e177043-99d0-49cf-babd-19447950de54/,Phil,,06/08/2017,11.0:45,12.0000000,47.894685000000,-4.131760000000,,Gouesnarc'h - Finistère,48514,observation-9e177043-99d0-49cf-babd-19447950de54-2,https://biolit.fr/observations/observation-9e177043-99d0-49cf-babd-19447950de54-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070429.JPG,,FALSE, +N1,60445,sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5,https://biolit.fr/sorties/sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5/,azelie,,6/26/2017 0:00,20.0:35,21.0000000,50.326284000000,1.5466520000,,Quend-Plage,48516,observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5,https://biolit.fr/observations/observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_4320-scaled.jpg,,TRUE, +N1,60445,sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5,https://biolit.fr/sorties/sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5/,azelie,,6/26/2017 0:00,20.0:35,21.0000000,50.326284000000,1.5466520000,,Quend-Plage,48518,observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-2,https://biolit.fr/observations/observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4311-scaled.jpg,,FALSE, +N1,60445,sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5,https://biolit.fr/sorties/sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5/,azelie,,6/26/2017 0:00,20.0:35,21.0000000,50.326284000000,1.5466520000,,Quend-Plage,48520,observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-3,https://biolit.fr/observations/observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4319-scaled.jpg,,FALSE, +N1,60445,sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5,https://biolit.fr/sorties/sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5/,azelie,,6/26/2017 0:00,20.0:35,21.0000000,50.326284000000,1.5466520000,,Quend-Plage,48522,observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-4,https://biolit.fr/observations/observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-4/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_4315-scaled.jpg,,TRUE, +N1,60445,sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5,https://biolit.fr/sorties/sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5/,azelie,,6/26/2017 0:00,20.0:35,21.0000000,50.326284000000,1.5466520000,,Quend-Plage,48524,observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-5,https://biolit.fr/observations/observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-5/,Euspira catena,Natice porte-chaîne,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4306-scaled.jpg,,TRUE, +N1,60445,sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5,https://biolit.fr/sorties/sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5/,azelie,,6/26/2017 0:00,20.0:35,21.0000000,50.326284000000,1.5466520000,,Quend-Plage,48526,observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-6,https://biolit.fr/observations/observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-6/,Donax vittatus,Donace des canards,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4295_0-scaled.jpg,,TRUE, +N1,60445,sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5,https://biolit.fr/sorties/sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5/,azelie,,6/26/2017 0:00,20.0:35,21.0000000,50.326284000000,1.5466520000,,Quend-Plage,48528,observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-7,https://biolit.fr/observations/observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4297-scaled.jpg,,FALSE, +N1,60445,sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5,https://biolit.fr/sorties/sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5/,azelie,,6/26/2017 0:00,20.0:35,21.0000000,50.326284000000,1.5466520000,,Quend-Plage,48530,observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-8,https://biolit.fr/observations/observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4301-scaled.jpg,,FALSE, +N1,60445,sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5,https://biolit.fr/sorties/sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5/,azelie,,6/26/2017 0:00,20.0:35,21.0000000,50.326284000000,1.5466520000,,Quend-Plage,48532,observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-9,https://biolit.fr/observations/observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4313-scaled.jpg,,FALSE, +N1,60445,sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5,https://biolit.fr/sorties/sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5/,azelie,,6/26/2017 0:00,20.0:35,21.0000000,50.326284000000,1.5466520000,,Quend-Plage,48534,observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-10,https://biolit.fr/observations/observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-10/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4317-scaled.jpg,,TRUE, +N1,60446,sortie-9a3af524-b18f-447b-9cd1-4319f40a24eb,https://biolit.fr/sorties/sortie-9a3af524-b18f-447b-9cd1-4319f40a24eb/,azelie,,6/26/2017 0:00,16.0:45,16.0000000,50.732135000000,1.592357000000,,Boulogne-sur-mer,48536,observation-9a3af524-b18f-447b-9cd1-4319f40a24eb,https://biolit.fr/observations/observation-9a3af524-b18f-447b-9cd1-4319f40a24eb/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4293-scaled.jpg,,FALSE, +N1,60446,sortie-9a3af524-b18f-447b-9cd1-4319f40a24eb,https://biolit.fr/sorties/sortie-9a3af524-b18f-447b-9cd1-4319f40a24eb/,azelie,,6/26/2017 0:00,16.0:45,16.0000000,50.732135000000,1.592357000000,,Boulogne-sur-mer,48538,observation-9a3af524-b18f-447b-9cd1-4319f40a24eb-2,https://biolit.fr/observations/observation-9a3af524-b18f-447b-9cd1-4319f40a24eb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4291-scaled.jpg,,FALSE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48540,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1421-scaled.jpg,,TRUE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48542,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-2,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-2/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1424-scaled.jpg,,TRUE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48544,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-3,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-3/,Diodora graeca,Fissurelle,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1427-scaled.jpg,,TRUE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48546,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-4,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1429-scaled.jpg,,FALSE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48548,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-5,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-5/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_1430-scaled.jpg,,TRUE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48550,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-6,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-6/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1433-scaled.jpg,,TRUE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48552,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-7,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-7/,Macoma balthica,Telline de la Baltique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1434-scaled.jpg,,TRUE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48554,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-8,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-8/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1438-scaled.jpg,,TRUE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48556,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-9,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1439-scaled.jpg,,FALSE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48558,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-10,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-10/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1440-scaled.jpg,,TRUE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48560,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-11,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1442-scaled.jpg,,FALSE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48562,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-12,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-12/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1446_1-scaled.jpg,,TRUE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48564,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-13,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1448-scaled.jpg,,FALSE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48566,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-14,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1451-scaled.jpg,,FALSE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48568,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-15,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1457_0-scaled.jpg,,FALSE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48570,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-16,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-16/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1460.jpg,,FALSE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48571,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-17,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-17/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1461.jpg,,FALSE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48572,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-18,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-18/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1465-scaled.jpg,,TRUE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48574,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-19,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-19/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1466.jpg,,FALSE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48575,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-20,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1470.jpg,,FALSE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48576,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-21,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1472-scaled.jpg,,FALSE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48578,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-22,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1473-scaled.jpg,,FALSE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48580,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-23,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1474-scaled.jpg,,FALSE, +N1,60448,sortie-27359be0-6130-437f-8416-bcd8a2d4ac00,https://biolit.fr/sorties/sortie-27359be0-6130-437f-8416-bcd8a2d4ac00/,Phil,,06/04/2017,20.0:35,20.0000000,47.985811000000,-4.463220000000,,Plozevet - Finistère,48582,observation-27359be0-6130-437f-8416-bcd8a2d4ac00,https://biolit.fr/observations/observation-27359be0-6130-437f-8416-bcd8a2d4ac00/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170604_203559.jpg,,FALSE, +N1,60448,sortie-27359be0-6130-437f-8416-bcd8a2d4ac00,https://biolit.fr/sorties/sortie-27359be0-6130-437f-8416-bcd8a2d4ac00/,Phil,,06/04/2017,20.0:35,20.0000000,47.985811000000,-4.463220000000,,Plozevet - Finistère,48584,observation-27359be0-6130-437f-8416-bcd8a2d4ac00-2,https://biolit.fr/observations/observation-27359be0-6130-437f-8416-bcd8a2d4ac00-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170604_203644.jpg,,FALSE, +N1,60449,sortie-38200e02-1571-4a5a-8c28-fca371d067a2,https://biolit.fr/sorties/sortie-38200e02-1571-4a5a-8c28-fca371d067a2/,Phil,,6/18/2017 0:00,12.0000000,12.000005,47.708687000000,-3.995893000000,,Fouesnant - Finistère,48586,observation-38200e02-1571-4a5a-8c28-fca371d067a2,https://biolit.fr/observations/observation-38200e02-1571-4a5a-8c28-fca371d067a2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070519.JPG,,FALSE, +N1,60449,sortie-38200e02-1571-4a5a-8c28-fca371d067a2,https://biolit.fr/sorties/sortie-38200e02-1571-4a5a-8c28-fca371d067a2/,Phil,,6/18/2017 0:00,12.0000000,12.000005,47.708687000000,-3.995893000000,,Fouesnant - Finistère,48588,observation-38200e02-1571-4a5a-8c28-fca371d067a2-2,https://biolit.fr/observations/observation-38200e02-1571-4a5a-8c28-fca371d067a2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070520.JPG,,FALSE, +N1,60450,sortie-64f73e7a-4f55-49aa-84ff-628d8b60796b,https://biolit.fr/sorties/sortie-64f73e7a-4f55-49aa-84ff-628d8b60796b/,Phil,,05/06/2017,13.0000000,13.000005,47.896358000000,-3.96849100000,,La Forêt-Fouesnant - Finistère,48590,observation-64f73e7a-4f55-49aa-84ff-628d8b60796b,https://biolit.fr/observations/observation-64f73e7a-4f55-49aa-84ff-628d8b60796b/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_130123.jpg,,FALSE, +N1,60450,sortie-64f73e7a-4f55-49aa-84ff-628d8b60796b,https://biolit.fr/sorties/sortie-64f73e7a-4f55-49aa-84ff-628d8b60796b/,Phil,,05/06/2017,13.0000000,13.000005,47.896358000000,-3.96849100000,,La Forêt-Fouesnant - Finistère,48592,observation-64f73e7a-4f55-49aa-84ff-628d8b60796b-2,https://biolit.fr/observations/observation-64f73e7a-4f55-49aa-84ff-628d8b60796b-2/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/20170506_125905.jpg,,TRUE, +N1,60450,sortie-64f73e7a-4f55-49aa-84ff-628d8b60796b,https://biolit.fr/sorties/sortie-64f73e7a-4f55-49aa-84ff-628d8b60796b/,Phil,,05/06/2017,13.0000000,13.000005,47.896358000000,-3.96849100000,,La Forêt-Fouesnant - Finistère,48594,observation-64f73e7a-4f55-49aa-84ff-628d8b60796b-3,https://biolit.fr/observations/observation-64f73e7a-4f55-49aa-84ff-628d8b60796b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_130101.jpg,,FALSE, +N1,60451,sortie-ae768733-2727-480e-bb27-3d88bdfba883,https://biolit.fr/sorties/sortie-ae768733-2727-480e-bb27-3d88bdfba883/,Phil,,6/18/2017 0:00,10.0000000,10.0:45,47.849778000000,-3.956095000000,,Fouesnant - Finistère,48596,observation-ae768733-2727-480e-bb27-3d88bdfba883,https://biolit.fr/observations/observation-ae768733-2727-480e-bb27-3d88bdfba883/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070521_1.JPG,,FALSE, +N1,60452,sortie-17357c4d-c718-4322-9d94-c262e7fb8099,https://biolit.fr/sorties/sortie-17357c4d-c718-4322-9d94-c262e7fb8099/,Phil,,6/18/2017 0:00,11.0:15,11.0000000,47.725076000000,-3.994518000000,,Fouesnant - Finistère,48598,observation-17357c4d-c718-4322-9d94-c262e7fb8099,https://biolit.fr/observations/observation-17357c4d-c718-4322-9d94-c262e7fb8099/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070510.JPG,,FALSE, +N1,60453,sortie-d34b0174-5807-4c60-8421-1850845c57ac,https://biolit.fr/sorties/sortie-d34b0174-5807-4c60-8421-1850845c57ac/,AIEJE,,6/22/2017 0:00,14.0000000,15.0000000,43.330922000000,5.204327000000,,ensues la redonne,48600,observation-d34b0174-5807-4c60-8421-1850845c57ac,https://biolit.fr/observations/observation-d34b0174-5807-4c60-8421-1850845c57ac/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170622_131249-scaled.jpg,,FALSE, +N1,60453,sortie-d34b0174-5807-4c60-8421-1850845c57ac,https://biolit.fr/sorties/sortie-d34b0174-5807-4c60-8421-1850845c57ac/,AIEJE,,6/22/2017 0:00,14.0000000,15.0000000,43.330922000000,5.204327000000,,ensues la redonne,48602,observation-d34b0174-5807-4c60-8421-1850845c57ac-2,https://biolit.fr/observations/observation-d34b0174-5807-4c60-8421-1850845c57ac-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sans titre.png,,FALSE, +N1,60453,sortie-d34b0174-5807-4c60-8421-1850845c57ac,https://biolit.fr/sorties/sortie-d34b0174-5807-4c60-8421-1850845c57ac/,AIEJE,,6/22/2017 0:00,14.0000000,15.0000000,43.330922000000,5.204327000000,,ensues la redonne,48604,observation-d34b0174-5807-4c60-8421-1850845c57ac-3,https://biolit.fr/observations/observation-d34b0174-5807-4c60-8421-1850845c57ac-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sans titr.png,,FALSE, +N1,60454,sortie-a7eaa1b6-4205-4cc9-8a1c-64aed946e2de,https://biolit.fr/sorties/sortie-a7eaa1b6-4205-4cc9-8a1c-64aed946e2de/,Phil,,6/18/2017 0:00,16.0000000,16.0:15,47.72050100000,-3.957097000000,,Fouesnant - Finistère,48606,observation-a7eaa1b6-4205-4cc9-8a1c-64aed946e2de,https://biolit.fr/observations/observation-a7eaa1b6-4205-4cc9-8a1c-64aed946e2de/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070659.JPG,,FALSE, +N1,60454,sortie-a7eaa1b6-4205-4cc9-8a1c-64aed946e2de,https://biolit.fr/sorties/sortie-a7eaa1b6-4205-4cc9-8a1c-64aed946e2de/,Phil,,6/18/2017 0:00,16.0000000,16.0:15,47.72050100000,-3.957097000000,,Fouesnant - Finistère,48608,observation-a7eaa1b6-4205-4cc9-8a1c-64aed946e2de-2,https://biolit.fr/observations/observation-a7eaa1b6-4205-4cc9-8a1c-64aed946e2de-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070663.JPG,,FALSE, +N1,60454,sortie-a7eaa1b6-4205-4cc9-8a1c-64aed946e2de,https://biolit.fr/sorties/sortie-a7eaa1b6-4205-4cc9-8a1c-64aed946e2de/,Phil,,6/18/2017 0:00,16.0000000,16.0:15,47.72050100000,-3.957097000000,,Fouesnant - Finistère,48610,observation-a7eaa1b6-4205-4cc9-8a1c-64aed946e2de-3,https://biolit.fr/observations/observation-a7eaa1b6-4205-4cc9-8a1c-64aed946e2de-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070668.JPG,,FALSE, +N1,60455,sortie-918d99e9-8874-4ac6-8e8b-158d2557ce9a,https://biolit.fr/sorties/sortie-918d99e9-8874-4ac6-8e8b-158d2557ce9a/,Marion,,3/26/2017 0:00,11.0000000,12.0000000,43.071461000000,6.153191000000,,"Plage des Pesquiers, 83400",48612,observation-918d99e9-8874-4ac6-8e8b-158d2557ce9a,https://biolit.fr/observations/observation-918d99e9-8874-4ac6-8e8b-158d2557ce9a/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6807-scaled.jpg,,FALSE, +N1,60455,sortie-918d99e9-8874-4ac6-8e8b-158d2557ce9a,https://biolit.fr/sorties/sortie-918d99e9-8874-4ac6-8e8b-158d2557ce9a/,Marion,,3/26/2017 0:00,11.0000000,12.0000000,43.071461000000,6.153191000000,,"Plage des Pesquiers, 83400",48614,observation-918d99e9-8874-4ac6-8e8b-158d2557ce9a-2,https://biolit.fr/observations/observation-918d99e9-8874-4ac6-8e8b-158d2557ce9a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6808-scaled.jpg,,FALSE, +N1,60455,sortie-918d99e9-8874-4ac6-8e8b-158d2557ce9a,https://biolit.fr/sorties/sortie-918d99e9-8874-4ac6-8e8b-158d2557ce9a/,Marion,,3/26/2017 0:00,11.0000000,12.0000000,43.071461000000,6.153191000000,,"Plage des Pesquiers, 83400",48616,observation-918d99e9-8874-4ac6-8e8b-158d2557ce9a-3,https://biolit.fr/observations/observation-918d99e9-8874-4ac6-8e8b-158d2557ce9a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6812-scaled.jpg,,FALSE, +N1,60456,sortie-7d70b78e-51b0-45f6-a40d-5ce5130dee1e,https://biolit.fr/sorties/sortie-7d70b78e-51b0-45f6-a40d-5ce5130dee1e/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236111000000,5.360110000000,,plage de la Bonne Brise,48618,observation-7d70b78e-51b0-45f6-a40d-5ce5130dee1e,https://biolit.fr/observations/observation-7d70b78e-51b0-45f6-a40d-5ce5130dee1e/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/2023/07/P6210412-scaled.jpg,,TRUE, +N1,60456,sortie-7d70b78e-51b0-45f6-a40d-5ce5130dee1e,https://biolit.fr/sorties/sortie-7d70b78e-51b0-45f6-a40d-5ce5130dee1e/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236111000000,5.360110000000,,plage de la Bonne Brise,48620,observation-7d70b78e-51b0-45f6-a40d-5ce5130dee1e-2,https://biolit.fr/observations/observation-7d70b78e-51b0-45f6-a40d-5ce5130dee1e-2/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/2023/07/P6210415-scaled.jpg,,TRUE, +N1,60456,sortie-7d70b78e-51b0-45f6-a40d-5ce5130dee1e,https://biolit.fr/sorties/sortie-7d70b78e-51b0-45f6-a40d-5ce5130dee1e/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236111000000,5.360110000000,,plage de la Bonne Brise,48622,observation-7d70b78e-51b0-45f6-a40d-5ce5130dee1e-3,https://biolit.fr/observations/observation-7d70b78e-51b0-45f6-a40d-5ce5130dee1e-3/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/2023/07/P6210416-scaled.jpg,,TRUE, +N1,60456,sortie-7d70b78e-51b0-45f6-a40d-5ce5130dee1e,https://biolit.fr/sorties/sortie-7d70b78e-51b0-45f6-a40d-5ce5130dee1e/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236111000000,5.360110000000,,plage de la Bonne Brise,48624,observation-7d70b78e-51b0-45f6-a40d-5ce5130dee1e-4,https://biolit.fr/observations/observation-7d70b78e-51b0-45f6-a40d-5ce5130dee1e-4/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/2023/07/P6210420-scaled.jpg,,TRUE, +N1,60456,sortie-7d70b78e-51b0-45f6-a40d-5ce5130dee1e,https://biolit.fr/sorties/sortie-7d70b78e-51b0-45f6-a40d-5ce5130dee1e/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236111000000,5.360110000000,,plage de la Bonne Brise,48626,observation-7d70b78e-51b0-45f6-a40d-5ce5130dee1e-5,https://biolit.fr/observations/observation-7d70b78e-51b0-45f6-a40d-5ce5130dee1e-5/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/2023/07/P6210423-scaled.jpg,,TRUE, +N1,60457,sortie-585e4518-7e0b-4a93-9cf2-28114caecbf4,https://biolit.fr/sorties/sortie-585e4518-7e0b-4a93-9cf2-28114caecbf4/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.2360530000,5.360056000000,,plage de la Bonne Brise,48628,observation-585e4518-7e0b-4a93-9cf2-28114caecbf4,https://biolit.fr/observations/observation-585e4518-7e0b-4a93-9cf2-28114caecbf4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210428-scaled.jpg,,FALSE, +N1,60458,sortie-88b1e88d-cd8f-441e-ad6e-d072947bf092,https://biolit.fr/sorties/sortie-88b1e88d-cd8f-441e-ad6e-d072947bf092/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236002000000,5.36012000000,,plage de la Bonne Brise,48630,observation-88b1e88d-cd8f-441e-ad6e-d072947bf092,https://biolit.fr/observations/observation-88b1e88d-cd8f-441e-ad6e-d072947bf092/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210388-scaled.jpg,,FALSE, +N1,60459,sortie-e964d84d-3298-4924-ad78-6ffa4b372486,https://biolit.fr/sorties/sortie-e964d84d-3298-4924-ad78-6ffa4b372486/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235979000000,5.360056000000,,plage de la Bonne Brise,48632,observation-e964d84d-3298-4924-ad78-6ffa4b372486,https://biolit.fr/observations/observation-e964d84d-3298-4924-ad78-6ffa4b372486/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210366-scaled.jpg,,FALSE, +N1,60459,sortie-e964d84d-3298-4924-ad78-6ffa4b372486,https://biolit.fr/sorties/sortie-e964d84d-3298-4924-ad78-6ffa4b372486/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235979000000,5.360056000000,,plage de la Bonne Brise,48634,observation-e964d84d-3298-4924-ad78-6ffa4b372486-2,https://biolit.fr/observations/observation-e964d84d-3298-4924-ad78-6ffa4b372486-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210367-scaled.jpg,,FALSE, +N1,60460,sortie-5e2f55f8-4ba8-4bc0-9865-4fcd1ce6b6bb,https://biolit.fr/sorties/sortie-5e2f55f8-4ba8-4bc0-9865-4fcd1ce6b6bb/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236057000000,5.36006700000,,plage de la Bonne Brise,48636,observation-5e2f55f8-4ba8-4bc0-9865-4fcd1ce6b6bb,https://biolit.fr/observations/observation-5e2f55f8-4ba8-4bc0-9865-4fcd1ce6b6bb/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210358-scaled.jpg,,FALSE, +N1,60460,sortie-5e2f55f8-4ba8-4bc0-9865-4fcd1ce6b6bb,https://biolit.fr/sorties/sortie-5e2f55f8-4ba8-4bc0-9865-4fcd1ce6b6bb/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236057000000,5.36006700000,,plage de la Bonne Brise,48638,observation-5e2f55f8-4ba8-4bc0-9865-4fcd1ce6b6bb-2,https://biolit.fr/observations/observation-5e2f55f8-4ba8-4bc0-9865-4fcd1ce6b6bb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210359-scaled.jpg,,FALSE, +N1,60461,sortie-45f174ff-9dd9-45af-9f74-3b8d4f98fce4,https://biolit.fr/sorties/sortie-45f174ff-9dd9-45af-9f74-3b8d4f98fce4/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235783000000,5.360051000000,,plage de la Bonne Brise,48640,observation-45f174ff-9dd9-45af-9f74-3b8d4f98fce4,https://biolit.fr/observations/observation-45f174ff-9dd9-45af-9f74-3b8d4f98fce4/,Coris julis,Girelle commune,,https://biolit.fr/wp-content/uploads/2023/07/P6210344-scaled.jpg,,TRUE, +N1,60461,sortie-45f174ff-9dd9-45af-9f74-3b8d4f98fce4,https://biolit.fr/sorties/sortie-45f174ff-9dd9-45af-9f74-3b8d4f98fce4/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235783000000,5.360051000000,,plage de la Bonne Brise,48642,observation-45f174ff-9dd9-45af-9f74-3b8d4f98fce4-2,https://biolit.fr/observations/observation-45f174ff-9dd9-45af-9f74-3b8d4f98fce4-2/,Coris julis,Girelle commune,,https://biolit.fr/wp-content/uploads/2023/07/P6210346-scaled.jpg,,TRUE, +N1,60462,sortie-4894d588-042d-44f1-b8db-ec4cdedb6704,https://biolit.fr/sorties/sortie-4894d588-042d-44f1-b8db-ec4cdedb6704/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236018000000,5.36006700000,,plage de la Bonne Brise,48644,observation-4894d588-042d-44f1-b8db-ec4cdedb6704,https://biolit.fr/observations/observation-4894d588-042d-44f1-b8db-ec4cdedb6704/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210338-scaled.jpg,,FALSE, +N1,60463,sortie-14c6d063-e0ce-4392-a237-83a64bf4ba2e,https://biolit.fr/sorties/sortie-14c6d063-e0ce-4392-a237-83a64bf4ba2e/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235994000000,5.360110000000,,plage de la Bonne Brise,48646,observation-14c6d063-e0ce-4392-a237-83a64bf4ba2e,https://biolit.fr/observations/observation-14c6d063-e0ce-4392-a237-83a64bf4ba2e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210323-scaled.jpg,,FALSE, +N1,60463,sortie-14c6d063-e0ce-4392-a237-83a64bf4ba2e,https://biolit.fr/sorties/sortie-14c6d063-e0ce-4392-a237-83a64bf4ba2e/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235994000000,5.360110000000,,plage de la Bonne Brise,48648,observation-14c6d063-e0ce-4392-a237-83a64bf4ba2e-2,https://biolit.fr/observations/observation-14c6d063-e0ce-4392-a237-83a64bf4ba2e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210325-scaled.jpg,,FALSE, +N1,60463,sortie-14c6d063-e0ce-4392-a237-83a64bf4ba2e,https://biolit.fr/sorties/sortie-14c6d063-e0ce-4392-a237-83a64bf4ba2e/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235994000000,5.360110000000,,plage de la Bonne Brise,48650,observation-14c6d063-e0ce-4392-a237-83a64bf4ba2e-3,https://biolit.fr/observations/observation-14c6d063-e0ce-4392-a237-83a64bf4ba2e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210327-scaled.jpg,,FALSE, +N1,60464,sortie-c0252b27-0562-43b7-8f26-4c7a8ecf49fa,https://biolit.fr/sorties/sortie-c0252b27-0562-43b7-8f26-4c7a8ecf49fa/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236092000000,5.360008000000,,plage de la Bonne Brise,48652,observation-c0252b27-0562-43b7-8f26-4c7a8ecf49fa,https://biolit.fr/observations/observation-c0252b27-0562-43b7-8f26-4c7a8ecf49fa/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210307-scaled.jpg,,FALSE, +N1,60464,sortie-c0252b27-0562-43b7-8f26-4c7a8ecf49fa,https://biolit.fr/sorties/sortie-c0252b27-0562-43b7-8f26-4c7a8ecf49fa/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236092000000,5.360008000000,,plage de la Bonne Brise,48654,observation-c0252b27-0562-43b7-8f26-4c7a8ecf49fa-2,https://biolit.fr/observations/observation-c0252b27-0562-43b7-8f26-4c7a8ecf49fa-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210311-scaled.jpg,,FALSE, +N1,60464,sortie-c0252b27-0562-43b7-8f26-4c7a8ecf49fa,https://biolit.fr/sorties/sortie-c0252b27-0562-43b7-8f26-4c7a8ecf49fa/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236092000000,5.360008000000,,plage de la Bonne Brise,48656,observation-c0252b27-0562-43b7-8f26-4c7a8ecf49fa-3,https://biolit.fr/observations/observation-c0252b27-0562-43b7-8f26-4c7a8ecf49fa-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210308_0-scaled.jpg,,FALSE, +N1,60464,sortie-c0252b27-0562-43b7-8f26-4c7a8ecf49fa,https://biolit.fr/sorties/sortie-c0252b27-0562-43b7-8f26-4c7a8ecf49fa/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236092000000,5.360008000000,,plage de la Bonne Brise,48658,observation-c0252b27-0562-43b7-8f26-4c7a8ecf49fa-4,https://biolit.fr/observations/observation-c0252b27-0562-43b7-8f26-4c7a8ecf49fa-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210309-scaled.jpg,,FALSE, +N1,60464,sortie-c0252b27-0562-43b7-8f26-4c7a8ecf49fa,https://biolit.fr/sorties/sortie-c0252b27-0562-43b7-8f26-4c7a8ecf49fa/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236092000000,5.360008000000,,plage de la Bonne Brise,48660,observation-c0252b27-0562-43b7-8f26-4c7a8ecf49fa-5,https://biolit.fr/observations/observation-c0252b27-0562-43b7-8f26-4c7a8ecf49fa-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210310-scaled.jpg,,FALSE, +N1,60465,sortie-b263c48d-58fd-493b-ae8b-3f813cfdb8d1,https://biolit.fr/sorties/sortie-b263c48d-58fd-493b-ae8b-3f813cfdb8d1/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236025000000,5.360099000000,,plage de la Bonne Brise,48662,observation-b263c48d-58fd-493b-ae8b-3f813cfdb8d1,https://biolit.fr/observations/observation-b263c48d-58fd-493b-ae8b-3f813cfdb8d1/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/P6210320-scaled.jpg,,TRUE, +N1,60466,sortie-fbe26415-c5e2-4ee8-be71-739adca1fd38,https://biolit.fr/sorties/sortie-fbe26415-c5e2-4ee8-be71-739adca1fd38/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236025000000,5.360034000000,,plage de la Bonne Brise,48666,observation-fbe26415-c5e2-4ee8-be71-739adca1fd38,https://biolit.fr/observations/observation-fbe26415-c5e2-4ee8-be71-739adca1fd38/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P6210317-scaled.jpg,,TRUE, +N1,60467,sortie-2697d358-2783-41d0-8515-105bfcb255dc,https://biolit.fr/sorties/sortie-2697d358-2783-41d0-8515-105bfcb255dc/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236016000000,5.36006700000,,plage de la Bonne Brise,48668,observation-2697d358-2783-41d0-8515-105bfcb255dc,https://biolit.fr/observations/observation-2697d358-2783-41d0-8515-105bfcb255dc/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210304-scaled.jpg,,FALSE, +N1,60468,sortie-d4bcadfe-bcac-401b-9de7-40a7f9603461,https://biolit.fr/sorties/sortie-d4bcadfe-bcac-401b-9de7-40a7f9603461/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235981000000,5.360026000000,,plage de la Bonne Brise,48670,observation-d4bcadfe-bcac-401b-9de7-40a7f9603461,https://biolit.fr/observations/observation-d4bcadfe-bcac-401b-9de7-40a7f9603461/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210288-scaled.jpg,,FALSE, +N1,60468,sortie-d4bcadfe-bcac-401b-9de7-40a7f9603461,https://biolit.fr/sorties/sortie-d4bcadfe-bcac-401b-9de7-40a7f9603461/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235981000000,5.360026000000,,plage de la Bonne Brise,48672,observation-d4bcadfe-bcac-401b-9de7-40a7f9603461-2,https://biolit.fr/observations/observation-d4bcadfe-bcac-401b-9de7-40a7f9603461-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210290-scaled.jpg,,FALSE, +N1,60468,sortie-d4bcadfe-bcac-401b-9de7-40a7f9603461,https://biolit.fr/sorties/sortie-d4bcadfe-bcac-401b-9de7-40a7f9603461/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235981000000,5.360026000000,,plage de la Bonne Brise,48674,observation-d4bcadfe-bcac-401b-9de7-40a7f9603461-3,https://biolit.fr/observations/observation-d4bcadfe-bcac-401b-9de7-40a7f9603461-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210293-scaled.jpg,,FALSE, +N1,60468,sortie-d4bcadfe-bcac-401b-9de7-40a7f9603461,https://biolit.fr/sorties/sortie-d4bcadfe-bcac-401b-9de7-40a7f9603461/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235981000000,5.360026000000,,plage de la Bonne Brise,48676,observation-d4bcadfe-bcac-401b-9de7-40a7f9603461-4,https://biolit.fr/observations/observation-d4bcadfe-bcac-401b-9de7-40a7f9603461-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210294-scaled.jpg,,FALSE, +N1,60468,sortie-d4bcadfe-bcac-401b-9de7-40a7f9603461,https://biolit.fr/sorties/sortie-d4bcadfe-bcac-401b-9de7-40a7f9603461/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235981000000,5.360026000000,,plage de la Bonne Brise,48678,observation-d4bcadfe-bcac-401b-9de7-40a7f9603461-5,https://biolit.fr/observations/observation-d4bcadfe-bcac-401b-9de7-40a7f9603461-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210296-scaled.jpg,,FALSE, +N1,60469,sortie-2e8ff135-5ae6-4502-9506-bba35cc49123,https://biolit.fr/sorties/sortie-2e8ff135-5ae6-4502-9506-bba35cc49123/,ludovic,,6/22/2017 0:00,14.0000000,15.0000000,43.236025000000,5.360110000000,,plage de la Bonne Brise,48680,observation-2e8ff135-5ae6-4502-9506-bba35cc49123,https://biolit.fr/observations/observation-2e8ff135-5ae6-4502-9506-bba35cc49123/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210300-scaled.jpg,,FALSE, +N1,60470,sortie-db64df0e-6445-49b8-8728-5b5553e9e032,https://biolit.fr/sorties/sortie-db64df0e-6445-49b8-8728-5b5553e9e032/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235893000000,5.360072000000,,plage de la Bonne Brise,48682,observation-db64df0e-6445-49b8-8728-5b5553e9e032,https://biolit.fr/observations/observation-db64df0e-6445-49b8-8728-5b5553e9e032/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210297-scaled.jpg,,TRUE, +N1,60470,sortie-db64df0e-6445-49b8-8728-5b5553e9e032,https://biolit.fr/sorties/sortie-db64df0e-6445-49b8-8728-5b5553e9e032/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235893000000,5.360072000000,,plage de la Bonne Brise,48684,observation-db64df0e-6445-49b8-8728-5b5553e9e032-2,https://biolit.fr/observations/observation-db64df0e-6445-49b8-8728-5b5553e9e032-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210298-scaled.jpg,,TRUE, +N1,60471,sortie-528ac6cd-8552-4825-b598-0d8b253e31f7,https://biolit.fr/sorties/sortie-528ac6cd-8552-4825-b598-0d8b253e31f7/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236041000000,5.360013000000,,plage de la Bonne Brise,48686,observation-528ac6cd-8552-4825-b598-0d8b253e31f7,https://biolit.fr/observations/observation-528ac6cd-8552-4825-b598-0d8b253e31f7/,Diplodus puntazzo,Sar à museau pointu,,https://biolit.fr/wp-content/uploads/2023/07/P6210281-scaled.jpg,,TRUE, +N1,60471,sortie-528ac6cd-8552-4825-b598-0d8b253e31f7,https://biolit.fr/sorties/sortie-528ac6cd-8552-4825-b598-0d8b253e31f7/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236041000000,5.360013000000,,plage de la Bonne Brise,48688,observation-528ac6cd-8552-4825-b598-0d8b253e31f7-2,https://biolit.fr/observations/observation-528ac6cd-8552-4825-b598-0d8b253e31f7-2/,Diplodus puntazzo,Sar à museau pointu,,https://biolit.fr/wp-content/uploads/2023/07/P6210283-scaled.jpg,,TRUE, +N1,60472,sortie-8114130f-9665-4cf7-81ff-6a97fe6c94d5,https://biolit.fr/sorties/sortie-8114130f-9665-4cf7-81ff-6a97fe6c94d5/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236018000000,5.360056000000,,plage de la Bonne Brise,48690,observation-8114130f-9665-4cf7-81ff-6a97fe6c94d5,https://biolit.fr/observations/observation-8114130f-9665-4cf7-81ff-6a97fe6c94d5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210278-scaled.jpg,,FALSE, +N1,60472,sortie-8114130f-9665-4cf7-81ff-6a97fe6c94d5,https://biolit.fr/sorties/sortie-8114130f-9665-4cf7-81ff-6a97fe6c94d5/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236018000000,5.360056000000,,plage de la Bonne Brise,48692,observation-8114130f-9665-4cf7-81ff-6a97fe6c94d5-2,https://biolit.fr/observations/observation-8114130f-9665-4cf7-81ff-6a97fe6c94d5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210279-scaled.jpg,,FALSE, +N1,60473,sortie-0ed7ff45-a9b6-461b-be6b-c1127e50a554,https://biolit.fr/sorties/sortie-0ed7ff45-a9b6-461b-be6b-c1127e50a554/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236178000000,5.360013000000,,plage de la Bonne Brise,48694,observation-0ed7ff45-a9b6-461b-be6b-c1127e50a554,https://biolit.fr/observations/observation-0ed7ff45-a9b6-461b-be6b-c1127e50a554/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/P6210277-scaled.jpg,,TRUE, +N1,60473,sortie-0ed7ff45-a9b6-461b-be6b-c1127e50a554,https://biolit.fr/sorties/sortie-0ed7ff45-a9b6-461b-be6b-c1127e50a554/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236178000000,5.360013000000,,plage de la Bonne Brise,48696,observation-0ed7ff45-a9b6-461b-be6b-c1127e50a554-2,https://biolit.fr/observations/observation-0ed7ff45-a9b6-461b-be6b-c1127e50a554-2/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/P6210313-scaled.jpg,,TRUE, +N1,60474,sortie-66b9aab1-2dd3-42fb-b408-fc8410053948,https://biolit.fr/sorties/sortie-66b9aab1-2dd3-42fb-b408-fc8410053948/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236057000000,5.36006700000,,plage de la Bonne Brise,48698,observation-66b9aab1-2dd3-42fb-b408-fc8410053948,https://biolit.fr/observations/observation-66b9aab1-2dd3-42fb-b408-fc8410053948/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210265-scaled.jpg,,FALSE, +N1,60474,sortie-66b9aab1-2dd3-42fb-b408-fc8410053948,https://biolit.fr/sorties/sortie-66b9aab1-2dd3-42fb-b408-fc8410053948/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236057000000,5.36006700000,,plage de la Bonne Brise,48700,observation-66b9aab1-2dd3-42fb-b408-fc8410053948-2,https://biolit.fr/observations/observation-66b9aab1-2dd3-42fb-b408-fc8410053948-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210273-scaled.jpg,,FALSE, +N1,60474,sortie-66b9aab1-2dd3-42fb-b408-fc8410053948,https://biolit.fr/sorties/sortie-66b9aab1-2dd3-42fb-b408-fc8410053948/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236057000000,5.36006700000,,plage de la Bonne Brise,48702,observation-66b9aab1-2dd3-42fb-b408-fc8410053948-3,https://biolit.fr/observations/observation-66b9aab1-2dd3-42fb-b408-fc8410053948-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210274-scaled.jpg,,FALSE, +N1,60475,sortie-8507b3f9-f7aa-484e-a1b3-b2f354856e5d,https://biolit.fr/sorties/sortie-8507b3f9-f7aa-484e-a1b3-b2f354856e5d/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236057000000,5.360077000000,,plage de la Bonne Brise,48704,observation-8507b3f9-f7aa-484e-a1b3-b2f354856e5d,https://biolit.fr/observations/observation-8507b3f9-f7aa-484e-a1b3-b2f354856e5d/,Halopteris scoparia,Algue balai,,https://biolit.fr/wp-content/uploads/2023/07/P6210255-scaled.jpg,,TRUE, +N1,60475,sortie-8507b3f9-f7aa-484e-a1b3-b2f354856e5d,https://biolit.fr/sorties/sortie-8507b3f9-f7aa-484e-a1b3-b2f354856e5d/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236057000000,5.360077000000,,plage de la Bonne Brise,48706,observation-8507b3f9-f7aa-484e-a1b3-b2f354856e5d-2,https://biolit.fr/observations/observation-8507b3f9-f7aa-484e-a1b3-b2f354856e5d-2/,Halopteris scoparia,Algue balai,,https://biolit.fr/wp-content/uploads/2023/07/P6210254-scaled.jpg,,TRUE, +N1,60475,sortie-8507b3f9-f7aa-484e-a1b3-b2f354856e5d,https://biolit.fr/sorties/sortie-8507b3f9-f7aa-484e-a1b3-b2f354856e5d/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236057000000,5.360077000000,,plage de la Bonne Brise,48708,observation-8507b3f9-f7aa-484e-a1b3-b2f354856e5d-3,https://biolit.fr/observations/observation-8507b3f9-f7aa-484e-a1b3-b2f354856e5d-3/,Halopteris scoparia,Algue balai,,https://biolit.fr/wp-content/uploads/2023/07/P6210256-scaled.jpg,,TRUE, +N1,60476,sortie-a33e081a-9bec-4c92-80b4-d0c35e882493,https://biolit.fr/sorties/sortie-a33e081a-9bec-4c92-80b4-d0c35e882493/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235846000000,5.360045000000,,plage de la Bonne Brise,48710,observation-a33e081a-9bec-4c92-80b4-d0c35e882493,https://biolit.fr/observations/observation-a33e081a-9bec-4c92-80b4-d0c35e882493/,Symphodus roissali,Crénilabre à cinq taches,,https://biolit.fr/wp-content/uploads/2023/07/P6210257-scaled.jpg,,TRUE, +N1,60477,sortie-df13ca2d-b471-499e-85bf-9b66d0ffba8a,https://biolit.fr/sorties/sortie-df13ca2d-b471-499e-85bf-9b66d0ffba8a/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236057000000,5.360045000000,,plage de la Bonne Brise,48712,observation-df13ca2d-b471-499e-85bf-9b66d0ffba8a,https://biolit.fr/observations/observation-df13ca2d-b471-499e-85bf-9b66d0ffba8a/,Diplodus sargus,Sar commun de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/P6210251-scaled.jpg,,TRUE, +N1,60477,sortie-df13ca2d-b471-499e-85bf-9b66d0ffba8a,https://biolit.fr/sorties/sortie-df13ca2d-b471-499e-85bf-9b66d0ffba8a/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236057000000,5.360045000000,,plage de la Bonne Brise,48714,observation-df13ca2d-b471-499e-85bf-9b66d0ffba8a-2,https://biolit.fr/observations/observation-df13ca2d-b471-499e-85bf-9b66d0ffba8a-2/,Diplodus sargus,Sar commun de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/P6210252-scaled.jpg,,TRUE, +N1,60477,sortie-df13ca2d-b471-499e-85bf-9b66d0ffba8a,https://biolit.fr/sorties/sortie-df13ca2d-b471-499e-85bf-9b66d0ffba8a/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236057000000,5.360045000000,,plage de la Bonne Brise,48716,observation-df13ca2d-b471-499e-85bf-9b66d0ffba8a-3,https://biolit.fr/observations/observation-df13ca2d-b471-499e-85bf-9b66d0ffba8a-3/,Coris julis,Girelle commune,,https://biolit.fr/wp-content/uploads/2023/07/P6210334-scaled.jpg,,TRUE, +N1,60478,sortie-0d3fac6b-6fee-45ce-8d0f-e576d345028d,https://biolit.fr/sorties/sortie-0d3fac6b-6fee-45ce-8d0f-e576d345028d/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236088000000,5.360026000000,,plage de la Bonne Brise,48718,observation-0d3fac6b-6fee-45ce-8d0f-e576d345028d,https://biolit.fr/observations/observation-0d3fac6b-6fee-45ce-8d0f-e576d345028d/,Diplodus vulgaris,Sar à tête noire,,https://biolit.fr/wp-content/uploads/2023/07/P6210247-scaled.jpg,,TRUE, +N1,60478,sortie-0d3fac6b-6fee-45ce-8d0f-e576d345028d,https://biolit.fr/sorties/sortie-0d3fac6b-6fee-45ce-8d0f-e576d345028d/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236088000000,5.360026000000,,plage de la Bonne Brise,48720,observation-0d3fac6b-6fee-45ce-8d0f-e576d345028d-2,https://biolit.fr/observations/observation-0d3fac6b-6fee-45ce-8d0f-e576d345028d-2/,Diplodus vulgaris,Sar à tête noire,,https://biolit.fr/wp-content/uploads/2023/07/P6210248-scaled.jpg,,TRUE, +N1,60478,sortie-0d3fac6b-6fee-45ce-8d0f-e576d345028d,https://biolit.fr/sorties/sortie-0d3fac6b-6fee-45ce-8d0f-e576d345028d/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236088000000,5.360026000000,,plage de la Bonne Brise,48722,observation-0d3fac6b-6fee-45ce-8d0f-e576d345028d-3,https://biolit.fr/observations/observation-0d3fac6b-6fee-45ce-8d0f-e576d345028d-3/,Diplodus vulgaris,Sar à tête noire,,https://biolit.fr/wp-content/uploads/2023/07/P6210261-scaled.jpg,,TRUE, +N1,60478,sortie-0d3fac6b-6fee-45ce-8d0f-e576d345028d,https://biolit.fr/sorties/sortie-0d3fac6b-6fee-45ce-8d0f-e576d345028d/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236088000000,5.360026000000,,plage de la Bonne Brise,48724,observation-0d3fac6b-6fee-45ce-8d0f-e576d345028d-4,https://biolit.fr/observations/observation-0d3fac6b-6fee-45ce-8d0f-e576d345028d-4/,Diplodus vulgaris,Sar à tête noire,,https://biolit.fr/wp-content/uploads/2023/07/P6210287-scaled.jpg,,TRUE, +N1,60479,sortie-817439fd-da8e-44bf-8ff9-9ca4bc60adf2,https://biolit.fr/sorties/sortie-817439fd-da8e-44bf-8ff9-9ca4bc60adf2/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236041000000,5.360008000000,,plage de la Bonne Brise,48726,observation-817439fd-da8e-44bf-8ff9-9ca4bc60adf2,https://biolit.fr/observations/observation-817439fd-da8e-44bf-8ff9-9ca4bc60adf2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210237-scaled.jpg,,FALSE, +N1,60479,sortie-817439fd-da8e-44bf-8ff9-9ca4bc60adf2,https://biolit.fr/sorties/sortie-817439fd-da8e-44bf-8ff9-9ca4bc60adf2/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236041000000,5.360008000000,,plage de la Bonne Brise,48728,observation-817439fd-da8e-44bf-8ff9-9ca4bc60adf2-2,https://biolit.fr/observations/observation-817439fd-da8e-44bf-8ff9-9ca4bc60adf2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210242-scaled.jpg,,FALSE, +N1,60479,sortie-817439fd-da8e-44bf-8ff9-9ca4bc60adf2,https://biolit.fr/sorties/sortie-817439fd-da8e-44bf-8ff9-9ca4bc60adf2/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236041000000,5.360008000000,,plage de la Bonne Brise,48730,observation-817439fd-da8e-44bf-8ff9-9ca4bc60adf2-3,https://biolit.fr/observations/observation-817439fd-da8e-44bf-8ff9-9ca4bc60adf2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210243-scaled.jpg,,FALSE, +N1,60480,sortie-9d4420b9-dd21-40ab-98ab-cd4881a893bf,https://biolit.fr/sorties/sortie-9d4420b9-dd21-40ab-98ab-cd4881a893bf/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235865000000,5.360040000000,,plage de la Bonne Brise,48732,observation-9d4420b9-dd21-40ab-98ab-cd4881a893bf,https://biolit.fr/observations/observation-9d4420b9-dd21-40ab-98ab-cd4881a893bf/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210235-scaled.jpg,,FALSE, +N1,60480,sortie-9d4420b9-dd21-40ab-98ab-cd4881a893bf,https://biolit.fr/sorties/sortie-9d4420b9-dd21-40ab-98ab-cd4881a893bf/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235865000000,5.360040000000,,plage de la Bonne Brise,48734,observation-9d4420b9-dd21-40ab-98ab-cd4881a893bf-2,https://biolit.fr/observations/observation-9d4420b9-dd21-40ab-98ab-cd4881a893bf-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210239-scaled.jpg,,FALSE, +N1,60480,sortie-9d4420b9-dd21-40ab-98ab-cd4881a893bf,https://biolit.fr/sorties/sortie-9d4420b9-dd21-40ab-98ab-cd4881a893bf/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235865000000,5.360040000000,,plage de la Bonne Brise,48736,observation-9d4420b9-dd21-40ab-98ab-cd4881a893bf-3,https://biolit.fr/observations/observation-9d4420b9-dd21-40ab-98ab-cd4881a893bf-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210240-scaled.jpg,,FALSE, +N1,60480,sortie-9d4420b9-dd21-40ab-98ab-cd4881a893bf,https://biolit.fr/sorties/sortie-9d4420b9-dd21-40ab-98ab-cd4881a893bf/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235865000000,5.360040000000,,plage de la Bonne Brise,48738,observation-9d4420b9-dd21-40ab-98ab-cd4881a893bf-4,https://biolit.fr/observations/observation-9d4420b9-dd21-40ab-98ab-cd4881a893bf-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210241-scaled.jpg,,FALSE, +N1,60481,sortie-5e9dba93-2279-476b-8395-2f0636a211a1,https://biolit.fr/sorties/sortie-5e9dba93-2279-476b-8395-2f0636a211a1/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236158000000,5.359997000000,,plage de la Bonne Brise,48740,observation-5e9dba93-2279-476b-8395-2f0636a211a1,https://biolit.fr/observations/observation-5e9dba93-2279-476b-8395-2f0636a211a1/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210230-scaled.jpg,,FALSE, +N1,60481,sortie-5e9dba93-2279-476b-8395-2f0636a211a1,https://biolit.fr/sorties/sortie-5e9dba93-2279-476b-8395-2f0636a211a1/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236158000000,5.359997000000,,plage de la Bonne Brise,48742,observation-5e9dba93-2279-476b-8395-2f0636a211a1-2,https://biolit.fr/observations/observation-5e9dba93-2279-476b-8395-2f0636a211a1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210231-scaled.jpg,,FALSE, +N1,60481,sortie-5e9dba93-2279-476b-8395-2f0636a211a1,https://biolit.fr/sorties/sortie-5e9dba93-2279-476b-8395-2f0636a211a1/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236158000000,5.359997000000,,plage de la Bonne Brise,48744,observation-5e9dba93-2279-476b-8395-2f0636a211a1-3,https://biolit.fr/observations/observation-5e9dba93-2279-476b-8395-2f0636a211a1-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210233-scaled.jpg,,FALSE, +N1,60482,sortie-88c1b3f3-64e2-4888-b502-1b219c7c47c9,https://biolit.fr/sorties/sortie-88c1b3f3-64e2-4888-b502-1b219c7c47c9/,Phil,,06/04/2017,20.0:25,20.0000000,47.985532000000,-4.463099000000,,Plozevet - Finistère,48746,observation-88c1b3f3-64e2-4888-b502-1b219c7c47c9,https://biolit.fr/observations/observation-88c1b3f3-64e2-4888-b502-1b219c7c47c9/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/20170604_202901.jpg,,TRUE, +N1,60482,sortie-88c1b3f3-64e2-4888-b502-1b219c7c47c9,https://biolit.fr/sorties/sortie-88c1b3f3-64e2-4888-b502-1b219c7c47c9/,Phil,,06/04/2017,20.0:25,20.0000000,47.985532000000,-4.463099000000,,Plozevet - Finistère,48748,observation-88c1b3f3-64e2-4888-b502-1b219c7c47c9-2,https://biolit.fr/observations/observation-88c1b3f3-64e2-4888-b502-1b219c7c47c9-2/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/20170604_203016.jpg,,TRUE, +N1,60482,sortie-88c1b3f3-64e2-4888-b502-1b219c7c47c9,https://biolit.fr/sorties/sortie-88c1b3f3-64e2-4888-b502-1b219c7c47c9/,Phil,,06/04/2017,20.0:25,20.0000000,47.985532000000,-4.463099000000,,Plozevet - Finistère,48750,observation-88c1b3f3-64e2-4888-b502-1b219c7c47c9-3,https://biolit.fr/observations/observation-88c1b3f3-64e2-4888-b502-1b219c7c47c9-3/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/20170604_203029.jpg,,TRUE, +N1,60482,sortie-88c1b3f3-64e2-4888-b502-1b219c7c47c9,https://biolit.fr/sorties/sortie-88c1b3f3-64e2-4888-b502-1b219c7c47c9/,Phil,,06/04/2017,20.0:25,20.0000000,47.985532000000,-4.463099000000,,Plozevet - Finistère,48752,observation-88c1b3f3-64e2-4888-b502-1b219c7c47c9-4,https://biolit.fr/observations/observation-88c1b3f3-64e2-4888-b502-1b219c7c47c9-4/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/20170604_203330.jpg,,TRUE, +N1,60483,sortie-1c0f3637-eb67-4104-a525-7e6335b9fe81,https://biolit.fr/sorties/sortie-1c0f3637-eb67-4104-a525-7e6335b9fe81/,Phil,,06/08/2017,11.0000000,12.000005,47.894702000000,-4.131799000000,,Gouesnarch - Finistère,48754,observation-1c0f3637-eb67-4104-a525-7e6335b9fe81,https://biolit.fr/observations/observation-1c0f3637-eb67-4104-a525-7e6335b9fe81/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1070415.JPG,,TRUE, +N1,60483,sortie-1c0f3637-eb67-4104-a525-7e6335b9fe81,https://biolit.fr/sorties/sortie-1c0f3637-eb67-4104-a525-7e6335b9fe81/,Phil,,06/08/2017,11.0000000,12.000005,47.894702000000,-4.131799000000,,Gouesnarch - Finistère,48756,observation-1c0f3637-eb67-4104-a525-7e6335b9fe81-2,https://biolit.fr/observations/observation-1c0f3637-eb67-4104-a525-7e6335b9fe81-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070417.JPG,,FALSE, +N1,60483,sortie-1c0f3637-eb67-4104-a525-7e6335b9fe81,https://biolit.fr/sorties/sortie-1c0f3637-eb67-4104-a525-7e6335b9fe81/,Phil,,06/08/2017,11.0000000,12.000005,47.894702000000,-4.131799000000,,Gouesnarch - Finistère,48758,observation-1c0f3637-eb67-4104-a525-7e6335b9fe81-3,https://biolit.fr/observations/observation-1c0f3637-eb67-4104-a525-7e6335b9fe81-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070410.JPG,,FALSE, +N1,60483,sortie-1c0f3637-eb67-4104-a525-7e6335b9fe81,https://biolit.fr/sorties/sortie-1c0f3637-eb67-4104-a525-7e6335b9fe81/,Phil,,06/08/2017,11.0000000,12.000005,47.894702000000,-4.131799000000,,Gouesnarch - Finistère,48760,observation-1c0f3637-eb67-4104-a525-7e6335b9fe81-4,https://biolit.fr/observations/observation-1c0f3637-eb67-4104-a525-7e6335b9fe81-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070423.JPG,,FALSE, +N1,60483,sortie-1c0f3637-eb67-4104-a525-7e6335b9fe81,https://biolit.fr/sorties/sortie-1c0f3637-eb67-4104-a525-7e6335b9fe81/,Phil,,06/08/2017,11.0000000,12.000005,47.894702000000,-4.131799000000,,Gouesnarch - Finistère,48762,observation-1c0f3637-eb67-4104-a525-7e6335b9fe81-5,https://biolit.fr/observations/observation-1c0f3637-eb67-4104-a525-7e6335b9fe81-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070425.JPG,,FALSE, +N1,60483,sortie-1c0f3637-eb67-4104-a525-7e6335b9fe81,https://biolit.fr/sorties/sortie-1c0f3637-eb67-4104-a525-7e6335b9fe81/,Phil,,06/08/2017,11.0000000,12.000005,47.894702000000,-4.131799000000,,Gouesnarch - Finistère,48764,observation-1c0f3637-eb67-4104-a525-7e6335b9fe81-6,https://biolit.fr/observations/observation-1c0f3637-eb67-4104-a525-7e6335b9fe81-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070432.JPG,,FALSE, +N1,60484,sortie-269a0a34-14e9-491c-809f-b371e6a86b4d,https://biolit.fr/sorties/sortie-269a0a34-14e9-491c-809f-b371e6a86b4d/,Septentrion Environnement,,06/10/2017,14.0000000,15.0:15,43.210333000000,5.33266100000,,Grotte à Corail Ile Maire Marseille,48766,observation-269a0a34-14e9-491c-809f-b371e6a86b4d,https://biolit.fr/observations/observation-269a0a34-14e9-491c-809f-b371e6a86b4d/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20170610_POLARIS_H.-Menella-ConvertImage-scaled.jpg,,TRUE, +N1,60485,sortie-d7489d40-747f-4b25-ab94-8815c65b0179,https://biolit.fr/sorties/sortie-d7489d40-747f-4b25-ab94-8815c65b0179/,Phil,,05/06/2017,12.0000000,13.0000000,47.895330000000,-3.968948000000,,La Forêt-Fouesnant - Finistère,48768,observation-d7489d40-747f-4b25-ab94-8815c65b0179,https://biolit.fr/observations/observation-d7489d40-747f-4b25-ab94-8815c65b0179/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_125608.jpg,,FALSE, +N1,60485,sortie-d7489d40-747f-4b25-ab94-8815c65b0179,https://biolit.fr/sorties/sortie-d7489d40-747f-4b25-ab94-8815c65b0179/,Phil,,05/06/2017,12.0000000,13.0000000,47.895330000000,-3.968948000000,,La Forêt-Fouesnant - Finistère,48770,observation-d7489d40-747f-4b25-ab94-8815c65b0179-2,https://biolit.fr/observations/observation-d7489d40-747f-4b25-ab94-8815c65b0179-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_125532.jpg,,FALSE, +N1,60485,sortie-d7489d40-747f-4b25-ab94-8815c65b0179,https://biolit.fr/sorties/sortie-d7489d40-747f-4b25-ab94-8815c65b0179/,Phil,,05/06/2017,12.0000000,13.0000000,47.895330000000,-3.968948000000,,La Forêt-Fouesnant - Finistère,48772,observation-d7489d40-747f-4b25-ab94-8815c65b0179-3,https://biolit.fr/observations/observation-d7489d40-747f-4b25-ab94-8815c65b0179-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_125524.jpg,,FALSE, +N1,60485,sortie-d7489d40-747f-4b25-ab94-8815c65b0179,https://biolit.fr/sorties/sortie-d7489d40-747f-4b25-ab94-8815c65b0179/,Phil,,05/06/2017,12.0000000,13.0000000,47.895330000000,-3.968948000000,,La Forêt-Fouesnant - Finistère,48774,observation-d7489d40-747f-4b25-ab94-8815c65b0179-4,https://biolit.fr/observations/observation-d7489d40-747f-4b25-ab94-8815c65b0179-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_125508.jpg,,FALSE, +N1,60485,sortie-d7489d40-747f-4b25-ab94-8815c65b0179,https://biolit.fr/sorties/sortie-d7489d40-747f-4b25-ab94-8815c65b0179/,Phil,,05/06/2017,12.0000000,13.0000000,47.895330000000,-3.968948000000,,La Forêt-Fouesnant - Finistère,48776,observation-d7489d40-747f-4b25-ab94-8815c65b0179-5,https://biolit.fr/observations/observation-d7489d40-747f-4b25-ab94-8815c65b0179-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_125136.jpg,,FALSE, +N1,60485,sortie-d7489d40-747f-4b25-ab94-8815c65b0179,https://biolit.fr/sorties/sortie-d7489d40-747f-4b25-ab94-8815c65b0179/,Phil,,05/06/2017,12.0000000,13.0000000,47.895330000000,-3.968948000000,,La Forêt-Fouesnant - Finistère,48778,observation-d7489d40-747f-4b25-ab94-8815c65b0179-6,https://biolit.fr/observations/observation-d7489d40-747f-4b25-ab94-8815c65b0179-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_125559.jpg,,FALSE, +N1,60486,sortie-c8611f3f-676b-4532-9d10-fd5cb3628539,https://biolit.fr/sorties/sortie-c8611f3f-676b-4532-9d10-fd5cb3628539/,Phil,,06/02/2017,17.0:35,17.0000000,47.792230000000,-4.278554000000,,Léchiagat - Finistère,48780,observation-c8611f3f-676b-4532-9d10-fd5cb3628539,https://biolit.fr/observations/observation-c8611f3f-676b-4532-9d10-fd5cb3628539/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170602_173329.jpg,,FALSE, +N1,60486,sortie-c8611f3f-676b-4532-9d10-fd5cb3628539,https://biolit.fr/sorties/sortie-c8611f3f-676b-4532-9d10-fd5cb3628539/,Phil,,06/02/2017,17.0:35,17.0000000,47.792230000000,-4.278554000000,,Léchiagat - Finistère,48782,observation-c8611f3f-676b-4532-9d10-fd5cb3628539-2,https://biolit.fr/observations/observation-c8611f3f-676b-4532-9d10-fd5cb3628539-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170602_174946.jpg,,FALSE, +N1,60486,sortie-c8611f3f-676b-4532-9d10-fd5cb3628539,https://biolit.fr/sorties/sortie-c8611f3f-676b-4532-9d10-fd5cb3628539/,Phil,,06/02/2017,17.0:35,17.0000000,47.792230000000,-4.278554000000,,Léchiagat - Finistère,48784,observation-c8611f3f-676b-4532-9d10-fd5cb3628539-3,https://biolit.fr/observations/observation-c8611f3f-676b-4532-9d10-fd5cb3628539-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170602_175023.jpg,,FALSE, +N1,60487,sortie-93244f18-b0cf-4363-8207-c5baca02f907,https://biolit.fr/sorties/sortie-93244f18-b0cf-4363-8207-c5baca02f907/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215160000000,5.342552000000,,Anse de la Maronaise ,48786,observation-93244f18-b0cf-4363-8207-c5baca02f907,https://biolit.fr/observations/observation-93244f18-b0cf-4363-8207-c5baca02f907/,Ligia italica,Ligie italienne,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0162-scaled.jpg,,TRUE, +N1,60487,sortie-93244f18-b0cf-4363-8207-c5baca02f907,https://biolit.fr/sorties/sortie-93244f18-b0cf-4363-8207-c5baca02f907/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215160000000,5.342552000000,,Anse de la Maronaise ,48788,observation-93244f18-b0cf-4363-8207-c5baca02f907-2,https://biolit.fr/observations/observation-93244f18-b0cf-4363-8207-c5baca02f907-2/,Ligia italica,Ligie italienne,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0170_0-scaled.jpg,,TRUE, +N1,60488,sortie-772fc9dd-cff1-41ad-8708-1c1fbbb6e627,https://biolit.fr/sorties/sortie-772fc9dd-cff1-41ad-8708-1c1fbbb6e627/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215250000000,5.342541000000,,Anse de la Maronaise ,48790,observation-772fc9dd-cff1-41ad-8708-1c1fbbb6e627,https://biolit.fr/observations/observation-772fc9dd-cff1-41ad-8708-1c1fbbb6e627/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0141-scaled.jpg,,TRUE, +N1,60488,sortie-772fc9dd-cff1-41ad-8708-1c1fbbb6e627,https://biolit.fr/sorties/sortie-772fc9dd-cff1-41ad-8708-1c1fbbb6e627/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215250000000,5.342541000000,,Anse de la Maronaise ,48792,observation-772fc9dd-cff1-41ad-8708-1c1fbbb6e627-2,https://biolit.fr/observations/observation-772fc9dd-cff1-41ad-8708-1c1fbbb6e627-2/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0157_0-scaled.jpg,,TRUE, +N1,60489,sortie-ae54f3c7-ec84-40db-8218-87b521ff6f3c,https://biolit.fr/sorties/sortie-ae54f3c7-ec84-40db-8218-87b521ff6f3c/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215250000000,5.342541000000,,Anse de la Maronaise ,48794,observation-ae54f3c7-ec84-40db-8218-87b521ff6f3c,https://biolit.fr/observations/observation-ae54f3c7-ec84-40db-8218-87b521ff6f3c/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0141-scaled.jpg,,TRUE, +N1,60489,sortie-ae54f3c7-ec84-40db-8218-87b521ff6f3c,https://biolit.fr/sorties/sortie-ae54f3c7-ec84-40db-8218-87b521ff6f3c/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215250000000,5.342541000000,,Anse de la Maronaise ,48795,observation-ae54f3c7-ec84-40db-8218-87b521ff6f3c-2,https://biolit.fr/observations/observation-ae54f3c7-ec84-40db-8218-87b521ff6f3c-2/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0157_0-scaled.jpg,,TRUE, +N1,60490,sortie-a5f49048-47d2-4ba3-a218-df02df7720cc,https://biolit.fr/sorties/sortie-a5f49048-47d2-4ba3-a218-df02df7720cc/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215352000000,5.342783000000,,Anse de la Maronaise ,48796,observation-a5f49048-47d2-4ba3-a218-df02df7720cc,https://biolit.fr/observations/observation-a5f49048-47d2-4ba3-a218-df02df7720cc/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0128_0-scaled.jpg,,FALSE, +N1,60490,sortie-a5f49048-47d2-4ba3-a218-df02df7720cc,https://biolit.fr/sorties/sortie-a5f49048-47d2-4ba3-a218-df02df7720cc/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215352000000,5.342783000000,,Anse de la Maronaise ,48798,observation-a5f49048-47d2-4ba3-a218-df02df7720cc-2,https://biolit.fr/observations/observation-a5f49048-47d2-4ba3-a218-df02df7720cc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0130-scaled.jpg,,FALSE, +N1,60490,sortie-a5f49048-47d2-4ba3-a218-df02df7720cc,https://biolit.fr/sorties/sortie-a5f49048-47d2-4ba3-a218-df02df7720cc/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215352000000,5.342783000000,,Anse de la Maronaise ,48800,observation-a5f49048-47d2-4ba3-a218-df02df7720cc-3,https://biolit.fr/observations/observation-a5f49048-47d2-4ba3-a218-df02df7720cc-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0132_0-scaled.jpg,,FALSE, +N1,60490,sortie-a5f49048-47d2-4ba3-a218-df02df7720cc,https://biolit.fr/sorties/sortie-a5f49048-47d2-4ba3-a218-df02df7720cc/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215352000000,5.342783000000,,Anse de la Maronaise ,48802,observation-a5f49048-47d2-4ba3-a218-df02df7720cc-4,https://biolit.fr/observations/observation-a5f49048-47d2-4ba3-a218-df02df7720cc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0137_2-scaled.jpg,,FALSE, +N1,60491,sortie-e3f6ada8-a130-45dd-a005-9ff48289c5f2,https://biolit.fr/sorties/sortie-e3f6ada8-a130-45dd-a005-9ff48289c5f2/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215430000000,5.34253000000,,Anse de la Maronaise ,48804,observation-e3f6ada8-a130-45dd-a005-9ff48289c5f2,https://biolit.fr/observations/observation-e3f6ada8-a130-45dd-a005-9ff48289c5f2/,Colpomenia sinuosa,Colpoménia sinueux,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0081-scaled.jpg,,TRUE, +N1,60491,sortie-e3f6ada8-a130-45dd-a005-9ff48289c5f2,https://biolit.fr/sorties/sortie-e3f6ada8-a130-45dd-a005-9ff48289c5f2/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215430000000,5.34253000000,,Anse de la Maronaise ,48805,observation-e3f6ada8-a130-45dd-a005-9ff48289c5f2-2,https://biolit.fr/observations/observation-e3f6ada8-a130-45dd-a005-9ff48289c5f2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0093-scaled.jpg,,FALSE, +N1,60491,sortie-e3f6ada8-a130-45dd-a005-9ff48289c5f2,https://biolit.fr/sorties/sortie-e3f6ada8-a130-45dd-a005-9ff48289c5f2/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215430000000,5.34253000000,,Anse de la Maronaise ,48807,observation-e3f6ada8-a130-45dd-a005-9ff48289c5f2-3,https://biolit.fr/observations/observation-e3f6ada8-a130-45dd-a005-9ff48289c5f2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0088-scaled.jpg,,FALSE, +N1,60491,sortie-e3f6ada8-a130-45dd-a005-9ff48289c5f2,https://biolit.fr/sorties/sortie-e3f6ada8-a130-45dd-a005-9ff48289c5f2/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215430000000,5.34253000000,,Anse de la Maronaise ,48809,observation-e3f6ada8-a130-45dd-a005-9ff48289c5f2-4,https://biolit.fr/observations/observation-e3f6ada8-a130-45dd-a005-9ff48289c5f2-4/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0095-scaled.jpg,,TRUE, +N1,60492,sortie-164fcfd2-5628-44db-8d73-80a43ca4394d,https://biolit.fr/sorties/sortie-164fcfd2-5628-44db-8d73-80a43ca4394d/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215170000000,5.342501000000,,Anse de la Maronaise ,48811,observation-164fcfd2-5628-44db-8d73-80a43ca4394d,https://biolit.fr/observations/observation-164fcfd2-5628-44db-8d73-80a43ca4394d/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0112-scaled.jpg,,FALSE, +N1,60492,sortie-164fcfd2-5628-44db-8d73-80a43ca4394d,https://biolit.fr/sorties/sortie-164fcfd2-5628-44db-8d73-80a43ca4394d/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215170000000,5.342501000000,,Anse de la Maronaise ,48813,observation-164fcfd2-5628-44db-8d73-80a43ca4394d-2,https://biolit.fr/observations/observation-164fcfd2-5628-44db-8d73-80a43ca4394d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0118-scaled.jpg,,FALSE, +N1,60492,sortie-164fcfd2-5628-44db-8d73-80a43ca4394d,https://biolit.fr/sorties/sortie-164fcfd2-5628-44db-8d73-80a43ca4394d/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215170000000,5.342501000000,,Anse de la Maronaise ,48815,observation-164fcfd2-5628-44db-8d73-80a43ca4394d-3,https://biolit.fr/observations/observation-164fcfd2-5628-44db-8d73-80a43ca4394d-3/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0125_0-scaled.jpg,,TRUE, +N1,60493,sortie-e040898d-b06a-468e-99cf-567c89171d9f,https://biolit.fr/sorties/sortie-e040898d-b06a-468e-99cf-567c89171d9f/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215205000000,5.342469000000,,Anse de la Maronaise ,48817,observation-e040898d-b06a-468e-99cf-567c89171d9f,https://biolit.fr/observations/observation-e040898d-b06a-468e-99cf-567c89171d9f/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0049_0-scaled.jpg,,FALSE, +N1,60493,sortie-e040898d-b06a-468e-99cf-567c89171d9f,https://biolit.fr/sorties/sortie-e040898d-b06a-468e-99cf-567c89171d9f/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215205000000,5.342469000000,,Anse de la Maronaise ,48819,observation-e040898d-b06a-468e-99cf-567c89171d9f-2,https://biolit.fr/observations/observation-e040898d-b06a-468e-99cf-567c89171d9f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0067-scaled.jpg,,FALSE, +N1,60493,sortie-e040898d-b06a-468e-99cf-567c89171d9f,https://biolit.fr/sorties/sortie-e040898d-b06a-468e-99cf-567c89171d9f/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215205000000,5.342469000000,,Anse de la Maronaise ,48821,observation-e040898d-b06a-468e-99cf-567c89171d9f-3,https://biolit.fr/observations/observation-e040898d-b06a-468e-99cf-567c89171d9f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0068-scaled.jpg,,FALSE, +N1,60494,sortie-9488dbc7-29de-4598-b348-7d91a1d26239,https://biolit.fr/sorties/sortie-9488dbc7-29de-4598-b348-7d91a1d26239/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215226000000,5.342482000000,,Anse de la Maronaise ,48823,observation-9488dbc7-29de-4598-b348-7d91a1d26239,https://biolit.fr/observations/observation-9488dbc7-29de-4598-b348-7d91a1d26239/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0071_0-scaled.jpg,,FALSE, +N1,60494,sortie-9488dbc7-29de-4598-b348-7d91a1d26239,https://biolit.fr/sorties/sortie-9488dbc7-29de-4598-b348-7d91a1d26239/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215226000000,5.342482000000,,Anse de la Maronaise ,48825,observation-9488dbc7-29de-4598-b348-7d91a1d26239-2,https://biolit.fr/observations/observation-9488dbc7-29de-4598-b348-7d91a1d26239-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0072_1-scaled.jpg,,FALSE, +N1,60494,sortie-9488dbc7-29de-4598-b348-7d91a1d26239,https://biolit.fr/sorties/sortie-9488dbc7-29de-4598-b348-7d91a1d26239/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215226000000,5.342482000000,,Anse de la Maronaise ,48827,observation-9488dbc7-29de-4598-b348-7d91a1d26239-3,https://biolit.fr/observations/observation-9488dbc7-29de-4598-b348-7d91a1d26239-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0074_0-scaled.jpg,,FALSE, +N1,60494,sortie-9488dbc7-29de-4598-b348-7d91a1d26239,https://biolit.fr/sorties/sortie-9488dbc7-29de-4598-b348-7d91a1d26239/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215226000000,5.342482000000,,Anse de la Maronaise ,48829,observation-9488dbc7-29de-4598-b348-7d91a1d26239-4,https://biolit.fr/observations/observation-9488dbc7-29de-4598-b348-7d91a1d26239-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0076-scaled.jpg,,FALSE, +N1,60494,sortie-9488dbc7-29de-4598-b348-7d91a1d26239,https://biolit.fr/sorties/sortie-9488dbc7-29de-4598-b348-7d91a1d26239/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215226000000,5.342482000000,,Anse de la Maronaise ,48831,observation-9488dbc7-29de-4598-b348-7d91a1d26239-5,https://biolit.fr/observations/observation-9488dbc7-29de-4598-b348-7d91a1d26239-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0076_0-scaled.jpg,,FALSE, +N1,60495,sortie-bff364dc-0718-4b8c-873b-b8f51e1118c2,https://biolit.fr/sorties/sortie-bff364dc-0718-4b8c-873b-b8f51e1118c2/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215178000000,5.342500000000,,Anse de la Maronaise ,48833,observation-bff364dc-0718-4b8c-873b-b8f51e1118c2,https://biolit.fr/observations/observation-bff364dc-0718-4b8c-873b-b8f51e1118c2/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0030_0-scaled.jpg,,TRUE, +N1,60495,sortie-bff364dc-0718-4b8c-873b-b8f51e1118c2,https://biolit.fr/sorties/sortie-bff364dc-0718-4b8c-873b-b8f51e1118c2/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215178000000,5.342500000000,,Anse de la Maronaise ,48835,observation-bff364dc-0718-4b8c-873b-b8f51e1118c2-2,https://biolit.fr/observations/observation-bff364dc-0718-4b8c-873b-b8f51e1118c2-2/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0032_0-scaled.jpg,,TRUE, +N1,60495,sortie-bff364dc-0718-4b8c-873b-b8f51e1118c2,https://biolit.fr/sorties/sortie-bff364dc-0718-4b8c-873b-b8f51e1118c2/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215178000000,5.342500000000,,Anse de la Maronaise ,48837,observation-bff364dc-0718-4b8c-873b-b8f51e1118c2-3,https://biolit.fr/observations/observation-bff364dc-0718-4b8c-873b-b8f51e1118c2-3/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0035_1-scaled.jpg,,TRUE, +N1,60495,sortie-bff364dc-0718-4b8c-873b-b8f51e1118c2,https://biolit.fr/sorties/sortie-bff364dc-0718-4b8c-873b-b8f51e1118c2/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215178000000,5.342500000000,,Anse de la Maronaise ,48839,observation-bff364dc-0718-4b8c-873b-b8f51e1118c2-4,https://biolit.fr/observations/observation-bff364dc-0718-4b8c-873b-b8f51e1118c2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0042_5-scaled.jpg,,FALSE, +N1,60496,sortie-90535855-504a-4572-96be-fcc22314fa41,https://biolit.fr/sorties/sortie-90535855-504a-4572-96be-fcc22314fa41/,AIEJE,,06/12/2017,14.0:45,16.0:45,43.330929000000,5.203962000000,,ensues la redonne,48841,observation-90535855-504a-4572-96be-fcc22314fa41,https://biolit.fr/observations/observation-90535855-504a-4572-96be-fcc22314fa41/,Notospermus geniculatus,Ver rubané à anneaux blancs,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4827-scaled.jpg,,TRUE, +N1,60496,sortie-90535855-504a-4572-96be-fcc22314fa41,https://biolit.fr/sorties/sortie-90535855-504a-4572-96be-fcc22314fa41/,AIEJE,,06/12/2017,14.0:45,16.0:45,43.330929000000,5.203962000000,,ensues la redonne,48843,observation-90535855-504a-4572-96be-fcc22314fa41-2,https://biolit.fr/observations/observation-90535855-504a-4572-96be-fcc22314fa41-2/,Notospermus geniculatus,Ver rubané à anneaux blancs,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4826-scaled.jpg,,TRUE, +N1,60497,sortie-fbc3f186-5948-4910-aa01-058fb951305c,https://biolit.fr/sorties/sortie-fbc3f186-5948-4910-aa01-058fb951305c/,Phil,,06/04/2017,20.0:25,20.0000000,47.985497000000,-4.463224000000,,Plozevet - Finistère,48845,observation-fbc3f186-5948-4910-aa01-058fb951305c,https://biolit.fr/observations/observation-fbc3f186-5948-4910-aa01-058fb951305c/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170604_202647.jpg,,FALSE, +N1,60497,sortie-fbc3f186-5948-4910-aa01-058fb951305c,https://biolit.fr/sorties/sortie-fbc3f186-5948-4910-aa01-058fb951305c/,Phil,,06/04/2017,20.0:25,20.0000000,47.985497000000,-4.463224000000,,Plozevet - Finistère,48847,observation-fbc3f186-5948-4910-aa01-058fb951305c-2,https://biolit.fr/observations/observation-fbc3f186-5948-4910-aa01-058fb951305c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170604_202626.jpg,,FALSE, +N1,60497,sortie-fbc3f186-5948-4910-aa01-058fb951305c,https://biolit.fr/sorties/sortie-fbc3f186-5948-4910-aa01-058fb951305c/,Phil,,06/04/2017,20.0:25,20.0000000,47.985497000000,-4.463224000000,,Plozevet - Finistère,48849,observation-fbc3f186-5948-4910-aa01-058fb951305c-3,https://biolit.fr/observations/observation-fbc3f186-5948-4910-aa01-058fb951305c-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170604_202739.jpg,,TRUE, +N1,60498,sortie-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7,https://biolit.fr/sorties/sortie-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7/,Phil,,4/15/2017 0:00,17.0000000,17.0:25,48.210883000000,-4.369601000000,,Telgruc sur Mer - Finistère,48851,observation-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7,https://biolit.fr/observations/observation-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7/,Liocarcinus holsatus,Etrille d'eau froide,,https://biolit.fr/wp-content/uploads/2023/07/P1070334.JPG,,TRUE, +N1,60498,sortie-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7,https://biolit.fr/sorties/sortie-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7/,Phil,,4/15/2017 0:00,17.0000000,17.0:25,48.210883000000,-4.369601000000,,Telgruc sur Mer - Finistère,48853,observation-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7-2,https://biolit.fr/observations/observation-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7-2/,Liocarcinus holsatus,Etrille d'eau froide,,https://biolit.fr/wp-content/uploads/2023/07/P1070336.JPG,,TRUE, +N1,60498,sortie-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7,https://biolit.fr/sorties/sortie-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7/,Phil,,4/15/2017 0:00,17.0000000,17.0:25,48.210883000000,-4.369601000000,,Telgruc sur Mer - Finistère,48855,observation-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7-3,https://biolit.fr/observations/observation-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070345.JPG,,FALSE, +N1,60498,sortie-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7,https://biolit.fr/sorties/sortie-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7/,Phil,,4/15/2017 0:00,17.0000000,17.0:25,48.210883000000,-4.369601000000,,Telgruc sur Mer - Finistère,48857,observation-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7-4,https://biolit.fr/observations/observation-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7-4/,Dynamena pumila,Petite dynamène,,https://biolit.fr/wp-content/uploads/2023/07/P1070338.JPG,,TRUE, +N1,60498,sortie-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7,https://biolit.fr/sorties/sortie-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7/,Phil,,4/15/2017 0:00,17.0000000,17.0:25,48.210883000000,-4.369601000000,,Telgruc sur Mer - Finistère,48859,observation-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7-5,https://biolit.fr/observations/observation-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7-5/,Electra pilosa,Ecorce pileuse,,https://biolit.fr/wp-content/uploads/2023/07/P1070343.JPG,,TRUE, +N1,60499,sortie-b74f9825-886c-4ee9-b586-1ca80c198fe0,https://biolit.fr/sorties/sortie-b74f9825-886c-4ee9-b586-1ca80c198fe0/,Phil,,06/08/2017,11.0:35,11.0000000,47.893546000000,-4.129945000000,,Gouesnarch - Finistère,48861,observation-b74f9825-886c-4ee9-b586-1ca80c198fe0,https://biolit.fr/observations/observation-b74f9825-886c-4ee9-b586-1ca80c198fe0/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070403.JPG,,FALSE, +N1,60499,sortie-b74f9825-886c-4ee9-b586-1ca80c198fe0,https://biolit.fr/sorties/sortie-b74f9825-886c-4ee9-b586-1ca80c198fe0/,Phil,,06/08/2017,11.0:35,11.0000000,47.893546000000,-4.129945000000,,Gouesnarch - Finistère,48863,observation-b74f9825-886c-4ee9-b586-1ca80c198fe0-2,https://biolit.fr/observations/observation-b74f9825-886c-4ee9-b586-1ca80c198fe0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070399.JPG,,FALSE, +N1,60499,sortie-b74f9825-886c-4ee9-b586-1ca80c198fe0,https://biolit.fr/sorties/sortie-b74f9825-886c-4ee9-b586-1ca80c198fe0/,Phil,,06/08/2017,11.0:35,11.0000000,47.893546000000,-4.129945000000,,Gouesnarch - Finistère,48865,observation-b74f9825-886c-4ee9-b586-1ca80c198fe0-3,https://biolit.fr/observations/observation-b74f9825-886c-4ee9-b586-1ca80c198fe0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070398.JPG,,FALSE, +N1,60499,sortie-b74f9825-886c-4ee9-b586-1ca80c198fe0,https://biolit.fr/sorties/sortie-b74f9825-886c-4ee9-b586-1ca80c198fe0/,Phil,,06/08/2017,11.0:35,11.0000000,47.893546000000,-4.129945000000,,Gouesnarch - Finistère,48867,observation-b74f9825-886c-4ee9-b586-1ca80c198fe0-4,https://biolit.fr/observations/observation-b74f9825-886c-4ee9-b586-1ca80c198fe0-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070397.JPG,,FALSE, +N1,60499,sortie-b74f9825-886c-4ee9-b586-1ca80c198fe0,https://biolit.fr/sorties/sortie-b74f9825-886c-4ee9-b586-1ca80c198fe0/,Phil,,06/08/2017,11.0:35,11.0000000,47.893546000000,-4.129945000000,,Gouesnarch - Finistère,48869,observation-b74f9825-886c-4ee9-b586-1ca80c198fe0-5,https://biolit.fr/observations/observation-b74f9825-886c-4ee9-b586-1ca80c198fe0-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070396.JPG,,FALSE, +N1,60499,sortie-b74f9825-886c-4ee9-b586-1ca80c198fe0,https://biolit.fr/sorties/sortie-b74f9825-886c-4ee9-b586-1ca80c198fe0/,Phil,,06/08/2017,11.0:35,11.0000000,47.893546000000,-4.129945000000,,Gouesnarch - Finistère,48871,observation-b74f9825-886c-4ee9-b586-1ca80c198fe0-6,https://biolit.fr/observations/observation-b74f9825-886c-4ee9-b586-1ca80c198fe0-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070391.JPG,,FALSE, +N1,60500,sortie-0028bb9e-ad3f-41ab-95d2-274bd9d2fe4b,https://biolit.fr/sorties/sortie-0028bb9e-ad3f-41ab-95d2-274bd9d2fe4b/,agoutroue,,06/04/2017,16.0000000,17.0000000,48.099044000000,-4.464675000000,,"Pointe du Millier, Beuzec-Cap Sizun",48873,observation-0028bb9e-ad3f-41ab-95d2-274bd9d2fe4b,https://biolit.fr/observations/observation-0028bb9e-ad3f-41ab-95d2-274bd9d2fe4b/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3186-scaled.jpg,,TRUE, +N1,60500,sortie-0028bb9e-ad3f-41ab-95d2-274bd9d2fe4b,https://biolit.fr/sorties/sortie-0028bb9e-ad3f-41ab-95d2-274bd9d2fe4b/,agoutroue,,06/04/2017,16.0000000,17.0000000,48.099044000000,-4.464675000000,,"Pointe du Millier, Beuzec-Cap Sizun",48875,observation-0028bb9e-ad3f-41ab-95d2-274bd9d2fe4b-2,https://biolit.fr/observations/observation-0028bb9e-ad3f-41ab-95d2-274bd9d2fe4b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3189-scaled.jpg,,FALSE, +N1,60501,sortie-2b516729-128e-47bd-b175-f15936a72259,https://biolit.fr/sorties/sortie-2b516729-128e-47bd-b175-f15936a72259/,ludovic,,06/07/2017,10.0000000,12.0000000,43.236043000000,5.360086000000,,plage de la bonne brise ,48877,observation-2b516729-128e-47bd-b175-f15936a72259,https://biolit.fr/observations/observation-2b516729-128e-47bd-b175-f15936a72259/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0984_0-scaled.jpg,,TRUE, +N1,60501,sortie-2b516729-128e-47bd-b175-f15936a72259,https://biolit.fr/sorties/sortie-2b516729-128e-47bd-b175-f15936a72259/,ludovic,,06/07/2017,10.0000000,12.0000000,43.236043000000,5.360086000000,,plage de la bonne brise ,48879,observation-2b516729-128e-47bd-b175-f15936a72259-2,https://biolit.fr/observations/observation-2b516729-128e-47bd-b175-f15936a72259-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0985-scaled.jpg,,FALSE, +N1,60501,sortie-2b516729-128e-47bd-b175-f15936a72259,https://biolit.fr/sorties/sortie-2b516729-128e-47bd-b175-f15936a72259/,ludovic,,06/07/2017,10.0000000,12.0000000,43.236043000000,5.360086000000,,plage de la bonne brise ,48881,observation-2b516729-128e-47bd-b175-f15936a72259-3,https://biolit.fr/observations/observation-2b516729-128e-47bd-b175-f15936a72259-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0986_0-scaled.jpg,,FALSE, +N1,60501,sortie-2b516729-128e-47bd-b175-f15936a72259,https://biolit.fr/sorties/sortie-2b516729-128e-47bd-b175-f15936a72259/,ludovic,,06/07/2017,10.0000000,12.0000000,43.236043000000,5.360086000000,,plage de la bonne brise ,48883,observation-2b516729-128e-47bd-b175-f15936a72259-4,https://biolit.fr/observations/observation-2b516729-128e-47bd-b175-f15936a72259-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0987_1-scaled.jpg,,FALSE, +N1,60501,sortie-2b516729-128e-47bd-b175-f15936a72259,https://biolit.fr/sorties/sortie-2b516729-128e-47bd-b175-f15936a72259/,ludovic,,06/07/2017,10.0000000,12.0000000,43.236043000000,5.360086000000,,plage de la bonne brise ,48885,observation-2b516729-128e-47bd-b175-f15936a72259-5,https://biolit.fr/observations/observation-2b516729-128e-47bd-b175-f15936a72259-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0999-scaled.jpg,,FALSE, +N1,60502,sortie-75ceaf06-783c-45b9-bcdd-a4b45dba3f63,https://biolit.fr/sorties/sortie-75ceaf06-783c-45b9-bcdd-a4b45dba3f63/,ludovic,,06/07/2017,9.0:55,11.0:55,43.235936000000,5.36004400000,,plage de la bonne brise ,48887,observation-75ceaf06-783c-45b9-bcdd-a4b45dba3f63,https://biolit.fr/observations/observation-75ceaf06-783c-45b9-bcdd-a4b45dba3f63/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0975_0-scaled.jpg,,FALSE, +N1,60502,sortie-75ceaf06-783c-45b9-bcdd-a4b45dba3f63,https://biolit.fr/sorties/sortie-75ceaf06-783c-45b9-bcdd-a4b45dba3f63/,ludovic,,06/07/2017,9.0:55,11.0:55,43.235936000000,5.36004400000,,plage de la bonne brise ,48889,observation-75ceaf06-783c-45b9-bcdd-a4b45dba3f63-2,https://biolit.fr/observations/observation-75ceaf06-783c-45b9-bcdd-a4b45dba3f63-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0978_5-scaled.jpg,,FALSE, +N1,60502,sortie-75ceaf06-783c-45b9-bcdd-a4b45dba3f63,https://biolit.fr/sorties/sortie-75ceaf06-783c-45b9-bcdd-a4b45dba3f63/,ludovic,,06/07/2017,9.0:55,11.0:55,43.235936000000,5.36004400000,,plage de la bonne brise ,48891,observation-75ceaf06-783c-45b9-bcdd-a4b45dba3f63-3,https://biolit.fr/observations/observation-75ceaf06-783c-45b9-bcdd-a4b45dba3f63-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0980_1-scaled.jpg,,FALSE, +N1,60502,sortie-75ceaf06-783c-45b9-bcdd-a4b45dba3f63,https://biolit.fr/sorties/sortie-75ceaf06-783c-45b9-bcdd-a4b45dba3f63/,ludovic,,06/07/2017,9.0:55,11.0:55,43.235936000000,5.36004400000,,plage de la bonne brise ,48893,observation-75ceaf06-783c-45b9-bcdd-a4b45dba3f63-4,https://biolit.fr/observations/observation-75ceaf06-783c-45b9-bcdd-a4b45dba3f63-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0983-scaled.jpg,,FALSE, +N1,60502,sortie-75ceaf06-783c-45b9-bcdd-a4b45dba3f63,https://biolit.fr/sorties/sortie-75ceaf06-783c-45b9-bcdd-a4b45dba3f63/,ludovic,,06/07/2017,9.0:55,11.0:55,43.235936000000,5.36004400000,,plage de la bonne brise ,48895,observation-75ceaf06-783c-45b9-bcdd-a4b45dba3f63-5,https://biolit.fr/observations/observation-75ceaf06-783c-45b9-bcdd-a4b45dba3f63-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0982-scaled.jpg,,FALSE, +N1,60503,sortie-37ca3081-2cc1-434a-8c7b-e2acb6afd984,https://biolit.fr/sorties/sortie-37ca3081-2cc1-434a-8c7b-e2acb6afd984/,ludovic,,06/07/2017,10.0000000,12.0000000,43.235858000000,5.360082000000,,plage de la bonne brise ,48897,observation-37ca3081-2cc1-434a-8c7b-e2acb6afd984,https://biolit.fr/observations/observation-37ca3081-2cc1-434a-8c7b-e2acb6afd984/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0968-scaled.jpg,,FALSE, +N1,60503,sortie-37ca3081-2cc1-434a-8c7b-e2acb6afd984,https://biolit.fr/sorties/sortie-37ca3081-2cc1-434a-8c7b-e2acb6afd984/,ludovic,,06/07/2017,10.0000000,12.0000000,43.235858000000,5.360082000000,,plage de la bonne brise ,48899,observation-37ca3081-2cc1-434a-8c7b-e2acb6afd984-2,https://biolit.fr/observations/observation-37ca3081-2cc1-434a-8c7b-e2acb6afd984-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0969_0-scaled.jpg,,FALSE, +N1,60503,sortie-37ca3081-2cc1-434a-8c7b-e2acb6afd984,https://biolit.fr/sorties/sortie-37ca3081-2cc1-434a-8c7b-e2acb6afd984/,ludovic,,06/07/2017,10.0000000,12.0000000,43.235858000000,5.360082000000,,plage de la bonne brise ,48901,observation-37ca3081-2cc1-434a-8c7b-e2acb6afd984-3,https://biolit.fr/observations/observation-37ca3081-2cc1-434a-8c7b-e2acb6afd984-3/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_0971-scaled.jpg,,TRUE, +N1,60503,sortie-37ca3081-2cc1-434a-8c7b-e2acb6afd984,https://biolit.fr/sorties/sortie-37ca3081-2cc1-434a-8c7b-e2acb6afd984/,ludovic,,06/07/2017,10.0000000,12.0000000,43.235858000000,5.360082000000,,plage de la bonne brise ,48903,observation-37ca3081-2cc1-434a-8c7b-e2acb6afd984-4,https://biolit.fr/observations/observation-37ca3081-2cc1-434a-8c7b-e2acb6afd984-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0972_0-scaled.jpg,,FALSE, +N1,60503,sortie-37ca3081-2cc1-434a-8c7b-e2acb6afd984,https://biolit.fr/sorties/sortie-37ca3081-2cc1-434a-8c7b-e2acb6afd984/,ludovic,,06/07/2017,10.0000000,12.0000000,43.235858000000,5.360082000000,,plage de la bonne brise ,48905,observation-37ca3081-2cc1-434a-8c7b-e2acb6afd984-5,https://biolit.fr/observations/observation-37ca3081-2cc1-434a-8c7b-e2acb6afd984-5/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0974_0-scaled.jpg,,TRUE, +N1,60504,sortie-e34cae1d-ae79-4d47-944d-75dd8a719b12,https://biolit.fr/sorties/sortie-e34cae1d-ae79-4d47-944d-75dd8a719b12/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.255268000000,5.374438000000,,plage de Borely,48907,observation-e34cae1d-ae79-4d47-944d-75dd8a719b12,https://biolit.fr/observations/observation-e34cae1d-ae79-4d47-944d-75dd8a719b12/,Nemalion lubricum,Némalion de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0222_0-scaled.jpg,,TRUE, +N1,60505,sortie-0ad866f7-daf2-4d11-9b4e-6691317c5d1a,https://biolit.fr/sorties/sortie-0ad866f7-daf2-4d11-9b4e-6691317c5d1a/,Phil,,06/04/2017,20.0000000,20.0:25,47.985426000000,-4.463355000000,,Plozevet - Finistère,48909,observation-0ad866f7-daf2-4d11-9b4e-6691317c5d1a,https://biolit.fr/observations/observation-0ad866f7-daf2-4d11-9b4e-6691317c5d1a/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170604_201841.jpg,,TRUE, +N1,60505,sortie-0ad866f7-daf2-4d11-9b4e-6691317c5d1a,https://biolit.fr/sorties/sortie-0ad866f7-daf2-4d11-9b4e-6691317c5d1a/,Phil,,06/04/2017,20.0000000,20.0:25,47.985426000000,-4.463355000000,,Plozevet - Finistère,48911,observation-0ad866f7-daf2-4d11-9b4e-6691317c5d1a-2,https://biolit.fr/observations/observation-0ad866f7-daf2-4d11-9b4e-6691317c5d1a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170604_201902.jpg,,FALSE, +N1,60505,sortie-0ad866f7-daf2-4d11-9b4e-6691317c5d1a,https://biolit.fr/sorties/sortie-0ad866f7-daf2-4d11-9b4e-6691317c5d1a/,Phil,,06/04/2017,20.0000000,20.0:25,47.985426000000,-4.463355000000,,Plozevet - Finistère,48913,observation-0ad866f7-daf2-4d11-9b4e-6691317c5d1a-3,https://biolit.fr/observations/observation-0ad866f7-daf2-4d11-9b4e-6691317c5d1a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170604_202127.jpg,,FALSE, +N1,60506,sortie-6138a00d-5d0c-46e4-be64-eacc092f02bf,https://biolit.fr/sorties/sortie-6138a00d-5d0c-46e4-be64-eacc092f02bf/,Marine,,06/09/2017,12.0:25,14.0:25,43.253649000000,5.374357000000,,Marseille,48915,observation-6138a00d-5d0c-46e4-be64-eacc092f02bf,https://biolit.fr/observations/observation-6138a00d-5d0c-46e4-be64-eacc092f02bf/,,,,https://biolit.fr/wp-content/uploads/2023/07/2017_04_05_TAMPON_10_ANS_0.png,,FALSE, +N1,60507,sortie-f580ca8e-d9ba-490c-bc51-c850a0e4add8,https://biolit.fr/sorties/sortie-f580ca8e-d9ba-490c-bc51-c850a0e4add8/,Phil,,06/02/2017,17.0:35,17.0000000,47.791523000000,-4.278663000000,,Léchiagat - Finistère,48917,observation-f580ca8e-d9ba-490c-bc51-c850a0e4add8,https://biolit.fr/observations/observation-f580ca8e-d9ba-490c-bc51-c850a0e4add8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170602_174135.jpg,,FALSE, +N1,60507,sortie-f580ca8e-d9ba-490c-bc51-c850a0e4add8,https://biolit.fr/sorties/sortie-f580ca8e-d9ba-490c-bc51-c850a0e4add8/,Phil,,06/02/2017,17.0:35,17.0000000,47.791523000000,-4.278663000000,,Léchiagat - Finistère,48919,observation-f580ca8e-d9ba-490c-bc51-c850a0e4add8-2,https://biolit.fr/observations/observation-f580ca8e-d9ba-490c-bc51-c850a0e4add8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170602_174047.jpg,,FALSE, +N1,60507,sortie-f580ca8e-d9ba-490c-bc51-c850a0e4add8,https://biolit.fr/sorties/sortie-f580ca8e-d9ba-490c-bc51-c850a0e4add8/,Phil,,06/02/2017,17.0:35,17.0000000,47.791523000000,-4.278663000000,,Léchiagat - Finistère,48921,observation-f580ca8e-d9ba-490c-bc51-c850a0e4add8-3,https://biolit.fr/observations/observation-f580ca8e-d9ba-490c-bc51-c850a0e4add8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170602_173706.jpg,,FALSE, +N1,60508,sortie-02e7a88d-b81a-4627-8439-9525f35da35e,https://biolit.fr/sorties/sortie-02e7a88d-b81a-4627-8439-9525f35da35e/,Ville de Marseille Cabot les Pins CM1,,11/28/2016 0:00,10.0000000,12.0000000,43.28048400000,5.35023600000,,Marseille anse de maldormé,48923,observation-02e7a88d-b81a-4627-8439-9525f35da35e,https://biolit.fr/observations/observation-02e7a88d-b81a-4627-8439-9525f35da35e/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algue verte- Enteromorpha sp_.JPG,,FALSE, +N1,60508,sortie-02e7a88d-b81a-4627-8439-9525f35da35e,https://biolit.fr/sorties/sortie-02e7a88d-b81a-4627-8439-9525f35da35e/,Ville de Marseille Cabot les Pins CM1,,11/28/2016 0:00,10.0000000,12.0000000,43.28048400000,5.35023600000,,Marseille anse de maldormé,48925,observation-02e7a88d-b81a-4627-8439-9525f35da35e-2,https://biolit.fr/observations/observation-02e7a88d-b81a-4627-8439-9525f35da35e-2/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/Arche de noe-arca noae 2.JPG,,TRUE, +N1,60508,sortie-02e7a88d-b81a-4627-8439-9525f35da35e,https://biolit.fr/sorties/sortie-02e7a88d-b81a-4627-8439-9525f35da35e/,Ville de Marseille Cabot les Pins CM1,,11/28/2016 0:00,10.0000000,12.0000000,43.28048400000,5.35023600000,,Marseille anse de maldormé,48927,observation-02e7a88d-b81a-4627-8439-9525f35da35e-3,https://biolit.fr/observations/observation-02e7a88d-b81a-4627-8439-9525f35da35e-3/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/2023/07/DSC09973-scaled.jpg,,TRUE, +N1,60508,sortie-02e7a88d-b81a-4627-8439-9525f35da35e,https://biolit.fr/sorties/sortie-02e7a88d-b81a-4627-8439-9525f35da35e/,Ville de Marseille Cabot les Pins CM1,,11/28/2016 0:00,10.0000000,12.0000000,43.28048400000,5.35023600000,,Marseille anse de maldormé,48929,observation-02e7a88d-b81a-4627-8439-9525f35da35e-4,https://biolit.fr/observations/observation-02e7a88d-b81a-4627-8439-9525f35da35e-4/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/feuille de posidonie-Posidonia oceanica.JPG,,TRUE, +N1,60508,sortie-02e7a88d-b81a-4627-8439-9525f35da35e,https://biolit.fr/sorties/sortie-02e7a88d-b81a-4627-8439-9525f35da35e/,Ville de Marseille Cabot les Pins CM1,,11/28/2016 0:00,10.0000000,12.0000000,43.28048400000,5.35023600000,,Marseille anse de maldormé,48931,observation-02e7a88d-b81a-4627-8439-9525f35da35e-5,https://biolit.fr/observations/observation-02e7a88d-b81a-4627-8439-9525f35da35e-5/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule toupie-Phorcus turbinatus1.JPG,,TRUE, +N1,60508,sortie-02e7a88d-b81a-4627-8439-9525f35da35e,https://biolit.fr/sorties/sortie-02e7a88d-b81a-4627-8439-9525f35da35e/,Ville de Marseille Cabot les Pins CM1,,11/28/2016 0:00,10.0000000,12.0000000,43.28048400000,5.35023600000,,Marseille anse de maldormé,48933,observation-02e7a88d-b81a-4627-8439-9525f35da35e-6,https://biolit.fr/observations/observation-02e7a88d-b81a-4627-8439-9525f35da35e-6/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/Littorine bleue-Melarahphe neritoides.JPG,,TRUE, +N1,60508,sortie-02e7a88d-b81a-4627-8439-9525f35da35e,https://biolit.fr/sorties/sortie-02e7a88d-b81a-4627-8439-9525f35da35e/,Ville de Marseille Cabot les Pins CM1,,11/28/2016 0:00,10.0000000,12.0000000,43.28048400000,5.35023600000,,Marseille anse de maldormé,48935,observation-02e7a88d-b81a-4627-8439-9525f35da35e-7,https://biolit.fr/observations/observation-02e7a88d-b81a-4627-8439-9525f35da35e-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle bleue-Patella caerulea.JPG,,FALSE, +N1,60509,sortie-456e8851-bf7a-458d-91c6-e447ce2b4b88,https://biolit.fr/sorties/sortie-456e8851-bf7a-458d-91c6-e447ce2b4b88/,ludovic,,06/07/2017,10.0000000,12.0000000,43.236010000000,5.360039000000,,plage de la bonne brise ,48937,observation-456e8851-bf7a-458d-91c6-e447ce2b4b88,https://biolit.fr/observations/observation-456e8851-bf7a-458d-91c6-e447ce2b4b88/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_0988_1-scaled.jpg,,TRUE, +N1,60509,sortie-456e8851-bf7a-458d-91c6-e447ce2b4b88,https://biolit.fr/sorties/sortie-456e8851-bf7a-458d-91c6-e447ce2b4b88/,ludovic,,06/07/2017,10.0000000,12.0000000,43.236010000000,5.360039000000,,plage de la bonne brise ,48939,observation-456e8851-bf7a-458d-91c6-e447ce2b4b88-2,https://biolit.fr/observations/observation-456e8851-bf7a-458d-91c6-e447ce2b4b88-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0970_0-scaled.jpg,,FALSE, +N1,60509,sortie-456e8851-bf7a-458d-91c6-e447ce2b4b88,https://biolit.fr/sorties/sortie-456e8851-bf7a-458d-91c6-e447ce2b4b88/,ludovic,,06/07/2017,10.0000000,12.0000000,43.236010000000,5.360039000000,,plage de la bonne brise ,48941,observation-456e8851-bf7a-458d-91c6-e447ce2b4b88-3,https://biolit.fr/observations/observation-456e8851-bf7a-458d-91c6-e447ce2b4b88-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0967-scaled.jpg,,FALSE, +N1,60510,sortie-48a39deb-c12f-42b1-9791-3a7b27e902d9,https://biolit.fr/sorties/sortie-48a39deb-c12f-42b1-9791-3a7b27e902d9/,NVanzu,,06/07/2017,10.0000000,12.0000000,43.233138000000,5.355968000000,,Plage de la bonne brise,48943,observation-48a39deb-c12f-42b1-9791-3a7b27e902d9,https://biolit.fr/observations/observation-48a39deb-c12f-42b1-9791-3a7b27e902d9/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/DSC_0164_0-scaled.jpg,,TRUE, +N1,60510,sortie-48a39deb-c12f-42b1-9791-3a7b27e902d9,https://biolit.fr/sorties/sortie-48a39deb-c12f-42b1-9791-3a7b27e902d9/,NVanzu,,06/07/2017,10.0000000,12.0000000,43.233138000000,5.355968000000,,Plage de la bonne brise,48945,observation-48a39deb-c12f-42b1-9791-3a7b27e902d9-2,https://biolit.fr/observations/observation-48a39deb-c12f-42b1-9791-3a7b27e902d9-2/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0166_0-scaled.jpg,,TRUE, +N1,60510,sortie-48a39deb-c12f-42b1-9791-3a7b27e902d9,https://biolit.fr/sorties/sortie-48a39deb-c12f-42b1-9791-3a7b27e902d9/,NVanzu,,06/07/2017,10.0000000,12.0000000,43.233138000000,5.355968000000,,Plage de la bonne brise,48947,observation-48a39deb-c12f-42b1-9791-3a7b27e902d9-3,https://biolit.fr/observations/observation-48a39deb-c12f-42b1-9791-3a7b27e902d9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0170-scaled.jpg,,FALSE, +N1,60511,sortie-a519e1ff-471c-42f9-aa35-ac5bc192d6af,https://biolit.fr/sorties/sortie-a519e1ff-471c-42f9-aa35-ac5bc192d6af/,RIEM,,5/25/2017 0:00,18.0:15,18.0000000,51.071682000000,2.48341900000,,plage de Malo les bains ,48949,observation-a519e1ff-471c-42f9-aa35-ac5bc192d6af,https://biolit.fr/observations/observation-a519e1ff-471c-42f9-aa35-ac5bc192d6af/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170525_2.jpg,,FALSE, +N1,60511,sortie-a519e1ff-471c-42f9-aa35-ac5bc192d6af,https://biolit.fr/sorties/sortie-a519e1ff-471c-42f9-aa35-ac5bc192d6af/,RIEM,,5/25/2017 0:00,18.0:15,18.0000000,51.071682000000,2.48341900000,,plage de Malo les bains ,48951,observation-a519e1ff-471c-42f9-aa35-ac5bc192d6af-2,https://biolit.fr/observations/observation-a519e1ff-471c-42f9-aa35-ac5bc192d6af-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170525_3.jpg,,FALSE, +N1,60511,sortie-a519e1ff-471c-42f9-aa35-ac5bc192d6af,https://biolit.fr/sorties/sortie-a519e1ff-471c-42f9-aa35-ac5bc192d6af/,RIEM,,5/25/2017 0:00,18.0:15,18.0000000,51.071682000000,2.48341900000,,plage de Malo les bains ,48953,observation-a519e1ff-471c-42f9-aa35-ac5bc192d6af-3,https://biolit.fr/observations/observation-a519e1ff-471c-42f9-aa35-ac5bc192d6af-3/,Crangon crangon,Crevette grise européenne,,https://biolit.fr/wp-content/uploads/2023/07/20170525_4.jpg,,TRUE, +N1,60511,sortie-a519e1ff-471c-42f9-aa35-ac5bc192d6af,https://biolit.fr/sorties/sortie-a519e1ff-471c-42f9-aa35-ac5bc192d6af/,RIEM,,5/25/2017 0:00,18.0:15,18.0000000,51.071682000000,2.48341900000,,plage de Malo les bains ,48955,observation-a519e1ff-471c-42f9-aa35-ac5bc192d6af-4,https://biolit.fr/observations/observation-a519e1ff-471c-42f9-aa35-ac5bc192d6af-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20170525_5.jpg,,TRUE, +N1,60511,sortie-a519e1ff-471c-42f9-aa35-ac5bc192d6af,https://biolit.fr/sorties/sortie-a519e1ff-471c-42f9-aa35-ac5bc192d6af/,RIEM,,5/25/2017 0:00,18.0:15,18.0000000,51.071682000000,2.48341900000,,plage de Malo les bains ,48957,observation-a519e1ff-471c-42f9-aa35-ac5bc192d6af-5,https://biolit.fr/observations/observation-a519e1ff-471c-42f9-aa35-ac5bc192d6af-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170525_6.jpg,,FALSE, +N1,60511,sortie-a519e1ff-471c-42f9-aa35-ac5bc192d6af,https://biolit.fr/sorties/sortie-a519e1ff-471c-42f9-aa35-ac5bc192d6af/,RIEM,,5/25/2017 0:00,18.0:15,18.0000000,51.071682000000,2.48341900000,,plage de Malo les bains ,48959,observation-a519e1ff-471c-42f9-aa35-ac5bc192d6af-6,https://biolit.fr/observations/observation-a519e1ff-471c-42f9-aa35-ac5bc192d6af-6/,Diogenes pugilator,Diogène d'Europe,,https://biolit.fr/wp-content/uploads/2023/07/20170525_7.jpg,,TRUE, +N1,60511,sortie-a519e1ff-471c-42f9-aa35-ac5bc192d6af,https://biolit.fr/sorties/sortie-a519e1ff-471c-42f9-aa35-ac5bc192d6af/,RIEM,,5/25/2017 0:00,18.0:15,18.0000000,51.071682000000,2.48341900000,,plage de Malo les bains ,48961,observation-a519e1ff-471c-42f9-aa35-ac5bc192d6af-7,https://biolit.fr/observations/observation-a519e1ff-471c-42f9-aa35-ac5bc192d6af-7/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20170525_8.jpg,,TRUE, +N1,60512,sortie-0a445b5a-c50f-4e8d-ada8-29c7047391ee,https://biolit.fr/sorties/sortie-0a445b5a-c50f-4e8d-ada8-29c7047391ee/,Phil,,05/06/2017,12.0000000,12.0000000,47.893250000000,-3.96506400000,,La Forêt- Fouesnant - Finistère,48963,observation-0a445b5a-c50f-4e8d-ada8-29c7047391ee,https://biolit.fr/observations/observation-0a445b5a-c50f-4e8d-ada8-29c7047391ee/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_124759.jpg,,FALSE, +N1,60512,sortie-0a445b5a-c50f-4e8d-ada8-29c7047391ee,https://biolit.fr/sorties/sortie-0a445b5a-c50f-4e8d-ada8-29c7047391ee/,Phil,,05/06/2017,12.0000000,12.0000000,47.893250000000,-3.96506400000,,La Forêt- Fouesnant - Finistère,48965,observation-0a445b5a-c50f-4e8d-ada8-29c7047391ee-2,https://biolit.fr/observations/observation-0a445b5a-c50f-4e8d-ada8-29c7047391ee-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_124812.jpg,,FALSE, +N1,60512,sortie-0a445b5a-c50f-4e8d-ada8-29c7047391ee,https://biolit.fr/sorties/sortie-0a445b5a-c50f-4e8d-ada8-29c7047391ee/,Phil,,05/06/2017,12.0000000,12.0000000,47.893250000000,-3.96506400000,,La Forêt- Fouesnant - Finistère,48967,observation-0a445b5a-c50f-4e8d-ada8-29c7047391ee-3,https://biolit.fr/observations/observation-0a445b5a-c50f-4e8d-ada8-29c7047391ee-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_124448.jpg,,FALSE, +N1,60512,sortie-0a445b5a-c50f-4e8d-ada8-29c7047391ee,https://biolit.fr/sorties/sortie-0a445b5a-c50f-4e8d-ada8-29c7047391ee/,Phil,,05/06/2017,12.0000000,12.0000000,47.893250000000,-3.96506400000,,La Forêt- Fouesnant - Finistère,48969,observation-0a445b5a-c50f-4e8d-ada8-29c7047391ee-4,https://biolit.fr/observations/observation-0a445b5a-c50f-4e8d-ada8-29c7047391ee-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_125004.jpg,,FALSE, +N1,60513,sortie-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3,https://biolit.fr/sorties/sortie-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3/,Phil,,4/15/2017 0:00,13.0000000,13.0000000,47.794778000000,-4.372601000000,,Penmarc'h - Finistère,48971,observation-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3,https://biolit.fr/observations/observation-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1070238.JPG,,TRUE, +N1,60513,sortie-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3,https://biolit.fr/sorties/sortie-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3/,Phil,,4/15/2017 0:00,13.0000000,13.0000000,47.794778000000,-4.372601000000,,Penmarc'h - Finistère,48973,observation-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3-2,https://biolit.fr/observations/observation-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070243.JPG,,FALSE, +N1,60513,sortie-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3,https://biolit.fr/sorties/sortie-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3/,Phil,,4/15/2017 0:00,13.0000000,13.0000000,47.794778000000,-4.372601000000,,Penmarc'h - Finistère,48975,observation-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3-3,https://biolit.fr/observations/observation-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3-3/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/P1070236.JPG,,TRUE, +N1,60513,sortie-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3,https://biolit.fr/sorties/sortie-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3/,Phil,,4/15/2017 0:00,13.0000000,13.0000000,47.794778000000,-4.372601000000,,Penmarc'h - Finistère,48977,observation-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3-4,https://biolit.fr/observations/observation-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3-4/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/P1070237.JPG,,TRUE, +N1,60513,sortie-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3,https://biolit.fr/sorties/sortie-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3/,Phil,,4/15/2017 0:00,13.0000000,13.0000000,47.794778000000,-4.372601000000,,Penmarc'h - Finistère,48979,observation-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3-5,https://biolit.fr/observations/observation-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070213_1.JPG,,FALSE, +N1,60514,sortie-102ca143-3c52-443a-8bf8-930f77f4070e,https://biolit.fr/sorties/sortie-102ca143-3c52-443a-8bf8-930f77f4070e/,Nane,,5/28/2017 0:00,14.0000000,16.0000000,43.273181000000,5.35328600000,,calanque de pousterlo,48981,observation-102ca143-3c52-443a-8bf8-930f77f4070e,https://biolit.fr/observations/observation-102ca143-3c52-443a-8bf8-930f77f4070e/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170528_210209-scaled.jpg,,FALSE, +N1,60514,sortie-102ca143-3c52-443a-8bf8-930f77f4070e,https://biolit.fr/sorties/sortie-102ca143-3c52-443a-8bf8-930f77f4070e/,Nane,,5/28/2017 0:00,14.0000000,16.0000000,43.273181000000,5.35328600000,,calanque de pousterlo,48983,observation-102ca143-3c52-443a-8bf8-930f77f4070e-2,https://biolit.fr/observations/observation-102ca143-3c52-443a-8bf8-930f77f4070e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170528_210105-scaled.jpg,,FALSE, +N1,60514,sortie-102ca143-3c52-443a-8bf8-930f77f4070e,https://biolit.fr/sorties/sortie-102ca143-3c52-443a-8bf8-930f77f4070e/,Nane,,5/28/2017 0:00,14.0000000,16.0000000,43.273181000000,5.35328600000,,calanque de pousterlo,48985,observation-102ca143-3c52-443a-8bf8-930f77f4070e-3,https://biolit.fr/observations/observation-102ca143-3c52-443a-8bf8-930f77f4070e-3/,Colpomenia sinuosa,Colpoménia sinueux,,https://biolit.fr/wp-content/uploads/2023/07/20170528_210041-scaled.jpg,,TRUE, +N1,60514,sortie-102ca143-3c52-443a-8bf8-930f77f4070e,https://biolit.fr/sorties/sortie-102ca143-3c52-443a-8bf8-930f77f4070e/,Nane,,5/28/2017 0:00,14.0000000,16.0000000,43.273181000000,5.35328600000,,calanque de pousterlo,48987,observation-102ca143-3c52-443a-8bf8-930f77f4070e-4,https://biolit.fr/observations/observation-102ca143-3c52-443a-8bf8-930f77f4070e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170528_210028-scaled.jpg,,FALSE, +N1,60514,sortie-102ca143-3c52-443a-8bf8-930f77f4070e,https://biolit.fr/sorties/sortie-102ca143-3c52-443a-8bf8-930f77f4070e/,Nane,,5/28/2017 0:00,14.0000000,16.0000000,43.273181000000,5.35328600000,,calanque de pousterlo,48989,observation-102ca143-3c52-443a-8bf8-930f77f4070e-5,https://biolit.fr/observations/observation-102ca143-3c52-443a-8bf8-930f77f4070e-5/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20170528_205429-scaled.jpg,,TRUE, +N1,60514,sortie-102ca143-3c52-443a-8bf8-930f77f4070e,https://biolit.fr/sorties/sortie-102ca143-3c52-443a-8bf8-930f77f4070e/,Nane,,5/28/2017 0:00,14.0000000,16.0000000,43.273181000000,5.35328600000,,calanque de pousterlo,48991,observation-102ca143-3c52-443a-8bf8-930f77f4070e-6,https://biolit.fr/observations/observation-102ca143-3c52-443a-8bf8-930f77f4070e-6/,Tripterygion delaisi,Triptérygion jaune,,https://biolit.fr/wp-content/uploads/2023/07/20170528_205340-scaled.jpg,,TRUE, +N1,60514,sortie-102ca143-3c52-443a-8bf8-930f77f4070e,https://biolit.fr/sorties/sortie-102ca143-3c52-443a-8bf8-930f77f4070e/,Nane,,5/28/2017 0:00,14.0000000,16.0000000,43.273181000000,5.35328600000,,calanque de pousterlo,48993,observation-102ca143-3c52-443a-8bf8-930f77f4070e-7,https://biolit.fr/observations/observation-102ca143-3c52-443a-8bf8-930f77f4070e-7/,Lipophrys trigloides,Blennie trigloïde,,https://biolit.fr/wp-content/uploads/2023/07/20170528_205252-scaled.jpg,,TRUE, +N1,60515,sortie-6f7207b0-f663-404c-ac81-e6a67b66b3ff,https://biolit.fr/sorties/sortie-6f7207b0-f663-404c-ac81-e6a67b66b3ff/,Phil,,5/29/2017 0:00,16.0:55,17.0000000,47.797037000000,-4.19232100000,,Loctudy - Finistère,48995,observation-6f7207b0-f663-404c-ac81-e6a67b66b3ff,https://biolit.fr/observations/observation-6f7207b0-f663-404c-ac81-e6a67b66b3ff/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20170529_165713.jpg,,TRUE, +N1,60515,sortie-6f7207b0-f663-404c-ac81-e6a67b66b3ff,https://biolit.fr/sorties/sortie-6f7207b0-f663-404c-ac81-e6a67b66b3ff/,Phil,,5/29/2017 0:00,16.0:55,17.0000000,47.797037000000,-4.19232100000,,Loctudy - Finistère,48997,observation-6f7207b0-f663-404c-ac81-e6a67b66b3ff-2,https://biolit.fr/observations/observation-6f7207b0-f663-404c-ac81-e6a67b66b3ff-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170529_165641.jpg,,FALSE, +N1,60516,sortie-c93be916-9f37-45eb-9ee0-a199047dc346,https://biolit.fr/sorties/sortie-c93be916-9f37-45eb-9ee0-a199047dc346/,Phil,,11/02/2016,13.0000000,14.0:15,47.798578000000,-4.178281000000,,Loctudy -Finistère,49001,observation-c93be916-9f37-45eb-9ee0-a199047dc346-2,https://biolit.fr/observations/observation-c93be916-9f37-45eb-9ee0-a199047dc346-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20161102_135035.jpg,,TRUE, +N1,60516,sortie-c93be916-9f37-45eb-9ee0-a199047dc346,https://biolit.fr/sorties/sortie-c93be916-9f37-45eb-9ee0-a199047dc346/,Phil,,11/02/2016,13.0000000,14.0:15,47.798578000000,-4.178281000000,,Loctudy -Finistère,49003,observation-c93be916-9f37-45eb-9ee0-a199047dc346-3,https://biolit.fr/observations/observation-c93be916-9f37-45eb-9ee0-a199047dc346-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161102_141533.jpg,,FALSE, +N1,60517,sortie-db171218-f567-4bff-be06-0a5a52432cd1,https://biolit.fr/sorties/sortie-db171218-f567-4bff-be06-0a5a52432cd1/,cigale33,,5/29/2017 0:00,15.0000000,16.0000000,43.377046000000,-1.761247000000,,hendaye plage,49005,observation-db171218-f567-4bff-be06-0a5a52432cd1,https://biolit.fr/observations/observation-db171218-f567-4bff-be06-0a5a52432cd1/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/_MG_0724.JPG,,TRUE, +N1,60517,sortie-db171218-f567-4bff-be06-0a5a52432cd1,https://biolit.fr/sorties/sortie-db171218-f567-4bff-be06-0a5a52432cd1/,cigale33,,5/29/2017 0:00,15.0000000,16.0000000,43.377046000000,-1.761247000000,,hendaye plage,49007,observation-db171218-f567-4bff-be06-0a5a52432cd1-2,https://biolit.fr/observations/observation-db171218-f567-4bff-be06-0a5a52432cd1-2/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/_MG_0736.JPG,,TRUE, +N1,60517,sortie-db171218-f567-4bff-be06-0a5a52432cd1,https://biolit.fr/sorties/sortie-db171218-f567-4bff-be06-0a5a52432cd1/,cigale33,,5/29/2017 0:00,15.0000000,16.0000000,43.377046000000,-1.761247000000,,hendaye plage,49009,observation-db171218-f567-4bff-be06-0a5a52432cd1-3,https://biolit.fr/observations/observation-db171218-f567-4bff-be06-0a5a52432cd1-3/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/_MG_0738.JPG,,TRUE, +N1,60517,sortie-db171218-f567-4bff-be06-0a5a52432cd1,https://biolit.fr/sorties/sortie-db171218-f567-4bff-be06-0a5a52432cd1/,cigale33,,5/29/2017 0:00,15.0000000,16.0000000,43.377046000000,-1.761247000000,,hendaye plage,49011,observation-db171218-f567-4bff-be06-0a5a52432cd1-4,https://biolit.fr/observations/observation-db171218-f567-4bff-be06-0a5a52432cd1-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_0739.JPG,,FALSE, +N1,60517,sortie-db171218-f567-4bff-be06-0a5a52432cd1,https://biolit.fr/sorties/sortie-db171218-f567-4bff-be06-0a5a52432cd1/,cigale33,,5/29/2017 0:00,15.0000000,16.0000000,43.377046000000,-1.761247000000,,hendaye plage,49013,observation-db171218-f567-4bff-be06-0a5a52432cd1-5,https://biolit.fr/observations/observation-db171218-f567-4bff-be06-0a5a52432cd1-5/,Ensis siliqua,Couteau-silique,,https://biolit.fr/wp-content/uploads/2023/07/_MG_0740.JPG,,TRUE, +N1,60518,sortie-05dcc488-37d8-4d6e-9b08-d263aa55c87d,https://biolit.fr/sorties/sortie-05dcc488-37d8-4d6e-9b08-d263aa55c87d/,Marine,,5/28/2017 0:00,14.0000000,15.0000000,43.076763000000,6.126363000000,,Plage de l'Almanare,49015,observation-05dcc488-37d8-4d6e-9b08-d263aa55c87d,https://biolit.fr/observations/observation-05dcc488-37d8-4d6e-9b08-d263aa55c87d/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2430-scaled.jpg,,FALSE, +N1,60518,sortie-05dcc488-37d8-4d6e-9b08-d263aa55c87d,https://biolit.fr/sorties/sortie-05dcc488-37d8-4d6e-9b08-d263aa55c87d/,Marine,,5/28/2017 0:00,14.0000000,15.0000000,43.076763000000,6.126363000000,,Plage de l'Almanare,49017,observation-05dcc488-37d8-4d6e-9b08-d263aa55c87d-2,https://biolit.fr/observations/observation-05dcc488-37d8-4d6e-9b08-d263aa55c87d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2432-rotated.jpg,,FALSE, +N1,60518,sortie-05dcc488-37d8-4d6e-9b08-d263aa55c87d,https://biolit.fr/sorties/sortie-05dcc488-37d8-4d6e-9b08-d263aa55c87d/,Marine,,5/28/2017 0:00,14.0000000,15.0000000,43.076763000000,6.126363000000,,Plage de l'Almanare,49019,observation-05dcc488-37d8-4d6e-9b08-d263aa55c87d-3,https://biolit.fr/observations/observation-05dcc488-37d8-4d6e-9b08-d263aa55c87d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2427-rotated.jpg,,FALSE, +N1,60518,sortie-05dcc488-37d8-4d6e-9b08-d263aa55c87d,https://biolit.fr/sorties/sortie-05dcc488-37d8-4d6e-9b08-d263aa55c87d/,Marine,,5/28/2017 0:00,14.0000000,15.0000000,43.076763000000,6.126363000000,,Plage de l'Almanare,49021,observation-05dcc488-37d8-4d6e-9b08-d263aa55c87d-4,https://biolit.fr/observations/observation-05dcc488-37d8-4d6e-9b08-d263aa55c87d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2423-rotated.jpg,,FALSE, +N1,60518,sortie-05dcc488-37d8-4d6e-9b08-d263aa55c87d,https://biolit.fr/sorties/sortie-05dcc488-37d8-4d6e-9b08-d263aa55c87d/,Marine,,5/28/2017 0:00,14.0000000,15.0000000,43.076763000000,6.126363000000,,Plage de l'Almanare,49023,observation-05dcc488-37d8-4d6e-9b08-d263aa55c87d-5,https://biolit.fr/observations/observation-05dcc488-37d8-4d6e-9b08-d263aa55c87d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2422-rotated.jpg,,FALSE, +N1,60518,sortie-05dcc488-37d8-4d6e-9b08-d263aa55c87d,https://biolit.fr/sorties/sortie-05dcc488-37d8-4d6e-9b08-d263aa55c87d/,Marine,,5/28/2017 0:00,14.0000000,15.0000000,43.076763000000,6.126363000000,,Plage de l'Almanare,49025,observation-05dcc488-37d8-4d6e-9b08-d263aa55c87d-6,https://biolit.fr/observations/observation-05dcc488-37d8-4d6e-9b08-d263aa55c87d-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2420-rotated.jpg,,FALSE, +N1,60519,sortie-226dfe24-2163-43fa-865a-fc34d12cc1ca,https://biolit.fr/sorties/sortie-226dfe24-2163-43fa-865a-fc34d12cc1ca/,ludovic,,4/26/2017 0:00,11.0000000,13.0000000,43.154368000000,6.481924000000,,plage Domaine du Rayol (le Figuier),49027,observation-226dfe24-2163-43fa-865a-fc34d12cc1ca,https://biolit.fr/observations/observation-226dfe24-2163-43fa-865a-fc34d12cc1ca/,,,,https://biolit.fr/wp-content/uploads/2023/07/coraline-scaled.jpg,,FALSE, +N1,60519,sortie-226dfe24-2163-43fa-865a-fc34d12cc1ca,https://biolit.fr/sorties/sortie-226dfe24-2163-43fa-865a-fc34d12cc1ca/,ludovic,,4/26/2017 0:00,11.0000000,13.0000000,43.154368000000,6.481924000000,,plage Domaine du Rayol (le Figuier),49029,observation-226dfe24-2163-43fa-865a-fc34d12cc1ca-2,https://biolit.fr/observations/observation-226dfe24-2163-43fa-865a-fc34d12cc1ca-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/balane-scaled.jpg,,TRUE, +N1,60519,sortie-226dfe24-2163-43fa-865a-fc34d12cc1ca,https://biolit.fr/sorties/sortie-226dfe24-2163-43fa-865a-fc34d12cc1ca/,ludovic,,4/26/2017 0:00,11.0000000,13.0000000,43.154368000000,6.481924000000,,plage Domaine du Rayol (le Figuier),49031,observation-226dfe24-2163-43fa-865a-fc34d12cc1ca-3,https://biolit.fr/observations/observation-226dfe24-2163-43fa-865a-fc34d12cc1ca-3/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/crabe retourné-scaled.jpg,,TRUE, +N1,60519,sortie-226dfe24-2163-43fa-865a-fc34d12cc1ca,https://biolit.fr/sorties/sortie-226dfe24-2163-43fa-865a-fc34d12cc1ca/,ludovic,,4/26/2017 0:00,11.0000000,13.0000000,43.154368000000,6.481924000000,,plage Domaine du Rayol (le Figuier),49033,observation-226dfe24-2163-43fa-865a-fc34d12cc1ca-4,https://biolit.fr/observations/observation-226dfe24-2163-43fa-865a-fc34d12cc1ca-4/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/crabe-scaled.jpg,,TRUE, +N1,60519,sortie-226dfe24-2163-43fa-865a-fc34d12cc1ca,https://biolit.fr/sorties/sortie-226dfe24-2163-43fa-865a-fc34d12cc1ca/,ludovic,,4/26/2017 0:00,11.0000000,13.0000000,43.154368000000,6.481924000000,,plage Domaine du Rayol (le Figuier),49034,observation-226dfe24-2163-43fa-865a-fc34d12cc1ca-5,https://biolit.fr/observations/observation-226dfe24-2163-43fa-865a-fc34d12cc1ca-5/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/gibule-scaled.jpg,,TRUE, +N1,60520,sortie-72545d4d-a2d9-4adf-864b-5507b2120350,https://biolit.fr/sorties/sortie-72545d4d-a2d9-4adf-864b-5507b2120350/,ludovic,,4/26/2017 0:00,11.0000000,13.0000000,43.15437400000,6.481926000000,,plage Domaine du Rayol (le Figuier),49036,observation-72545d4d-a2d9-4adf-864b-5507b2120350,https://biolit.fr/observations/observation-72545d4d-a2d9-4adf-864b-5507b2120350/,,,,https://biolit.fr/wp-content/uploads/2023/07/mouche-scaled.jpg,,FALSE, +N1,60520,sortie-72545d4d-a2d9-4adf-864b-5507b2120350,https://biolit.fr/sorties/sortie-72545d4d-a2d9-4adf-864b-5507b2120350/,ludovic,,4/26/2017 0:00,11.0000000,13.0000000,43.15437400000,6.481926000000,,plage Domaine du Rayol (le Figuier),49038,observation-72545d4d-a2d9-4adf-864b-5507b2120350-2,https://biolit.fr/observations/observation-72545d4d-a2d9-4adf-864b-5507b2120350-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/patella sp-scaled.jpg,,TRUE, +N1,60520,sortie-72545d4d-a2d9-4adf-864b-5507b2120350,https://biolit.fr/sorties/sortie-72545d4d-a2d9-4adf-864b-5507b2120350/,ludovic,,4/26/2017 0:00,11.0000000,13.0000000,43.15437400000,6.481926000000,,plage Domaine du Rayol (le Figuier),49040,observation-72545d4d-a2d9-4adf-864b-5507b2120350-3,https://biolit.fr/observations/observation-72545d4d-a2d9-4adf-864b-5507b2120350-3/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/Patelle_0-scaled.jpg,,TRUE, +N1,60520,sortie-72545d4d-a2d9-4adf-864b-5507b2120350,https://biolit.fr/sorties/sortie-72545d4d-a2d9-4adf-864b-5507b2120350/,ludovic,,4/26/2017 0:00,11.0000000,13.0000000,43.15437400000,6.481926000000,,plage Domaine du Rayol (le Figuier),49041,observation-72545d4d-a2d9-4adf-864b-5507b2120350-4,https://biolit.fr/observations/observation-72545d4d-a2d9-4adf-864b-5507b2120350-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Posidonie-scaled.jpg,,FALSE, +N1,60520,sortie-72545d4d-a2d9-4adf-864b-5507b2120350,https://biolit.fr/sorties/sortie-72545d4d-a2d9-4adf-864b-5507b2120350/,ludovic,,4/26/2017 0:00,11.0000000,13.0000000,43.15437400000,6.481926000000,,plage Domaine du Rayol (le Figuier),49042,observation-72545d4d-a2d9-4adf-864b-5507b2120350-5,https://biolit.fr/observations/observation-72545d4d-a2d9-4adf-864b-5507b2120350-5/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/2023/07/talytre-scaled.jpg,,TRUE, +N1,60520,sortie-72545d4d-a2d9-4adf-864b-5507b2120350,https://biolit.fr/sorties/sortie-72545d4d-a2d9-4adf-864b-5507b2120350/,ludovic,,4/26/2017 0:00,11.0000000,13.0000000,43.15437400000,6.481926000000,,plage Domaine du Rayol (le Figuier),49044,observation-72545d4d-a2d9-4adf-864b-5507b2120350-6,https://biolit.fr/observations/observation-72545d4d-a2d9-4adf-864b-5507b2120350-6/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/Tomate de Mer-scaled.jpg,,TRUE, +N1,60521,sortie-a005f1c6-c1de-4213-8789-96569c2f466f,https://biolit.fr/sorties/sortie-a005f1c6-c1de-4213-8789-96569c2f466f/,Phil,,3/23/2017 0:00,13.0:45,13.0000000,47.946850000000,-4.40981400000,,Pouldreuzic - Finistère,49045,observation-a005f1c6-c1de-4213-8789-96569c2f466f,https://biolit.fr/observations/observation-a005f1c6-c1de-4213-8789-96569c2f466f/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20170323_134840.jpg,,TRUE, +N1,60521,sortie-a005f1c6-c1de-4213-8789-96569c2f466f,https://biolit.fr/sorties/sortie-a005f1c6-c1de-4213-8789-96569c2f466f/,Phil,,3/23/2017 0:00,13.0:45,13.0000000,47.946850000000,-4.40981400000,,Pouldreuzic - Finistère,49047,observation-a005f1c6-c1de-4213-8789-96569c2f466f-2,https://biolit.fr/observations/observation-a005f1c6-c1de-4213-8789-96569c2f466f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170323_134850.jpg,,FALSE, +N1,60521,sortie-a005f1c6-c1de-4213-8789-96569c2f466f,https://biolit.fr/sorties/sortie-a005f1c6-c1de-4213-8789-96569c2f466f/,Phil,,3/23/2017 0:00,13.0:45,13.0000000,47.946850000000,-4.40981400000,,Pouldreuzic - Finistère,49049,observation-a005f1c6-c1de-4213-8789-96569c2f466f-3,https://biolit.fr/observations/observation-a005f1c6-c1de-4213-8789-96569c2f466f-3/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20170323_134714.jpg,,TRUE, +N1,60522,sortie-b62ff36c-4826-452b-87dc-bfdb32fe993b,https://biolit.fr/sorties/sortie-b62ff36c-4826-452b-87dc-bfdb32fe993b/,Phil,,4/14/2017 0:00,11.000005,11.000005,48.853138000000,-2.992538000000,,Île-de-Bréhat - Côtes-d'Armor,49051,observation-b62ff36c-4826-452b-87dc-bfdb32fe993b,https://biolit.fr/observations/observation-b62ff36c-4826-452b-87dc-bfdb32fe993b/,Tadorna tadorna,Tadorne de Belon,,https://biolit.fr/wp-content/uploads/2023/07/P1060937.JPG,,TRUE, +N1,60522,sortie-b62ff36c-4826-452b-87dc-bfdb32fe993b,https://biolit.fr/sorties/sortie-b62ff36c-4826-452b-87dc-bfdb32fe993b/,Phil,,4/14/2017 0:00,11.000005,11.000005,48.853138000000,-2.992538000000,,Île-de-Bréhat - Côtes-d'Armor,49053,observation-b62ff36c-4826-452b-87dc-bfdb32fe993b-2,https://biolit.fr/observations/observation-b62ff36c-4826-452b-87dc-bfdb32fe993b-2/,Tadorna tadorna,Tadorne de Belon,,https://biolit.fr/wp-content/uploads/2023/07/P1060935.JPG,,TRUE, +N1,60523,sortie-de17f21b-593d-4acd-b472-c6f44e8222d8,https://biolit.fr/sorties/sortie-de17f21b-593d-4acd-b472-c6f44e8222d8/,Phil,,4/15/2017 0:00,17.000005,17.0000000,48.207792000000,-4.373717000000,,Telgruc sur Mer - Finistère,49055,observation-de17f21b-593d-4acd-b472-c6f44e8222d8,https://biolit.fr/observations/observation-de17f21b-593d-4acd-b472-c6f44e8222d8/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1070330.JPG,,TRUE, +N1,60523,sortie-de17f21b-593d-4acd-b472-c6f44e8222d8,https://biolit.fr/sorties/sortie-de17f21b-593d-4acd-b472-c6f44e8222d8/,Phil,,4/15/2017 0:00,17.000005,17.0000000,48.207792000000,-4.373717000000,,Telgruc sur Mer - Finistère,49057,observation-de17f21b-593d-4acd-b472-c6f44e8222d8-2,https://biolit.fr/observations/observation-de17f21b-593d-4acd-b472-c6f44e8222d8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070332.JPG,,FALSE, +N1,60523,sortie-de17f21b-593d-4acd-b472-c6f44e8222d8,https://biolit.fr/sorties/sortie-de17f21b-593d-4acd-b472-c6f44e8222d8/,Phil,,4/15/2017 0:00,17.000005,17.0000000,48.207792000000,-4.373717000000,,Telgruc sur Mer - Finistère,49059,observation-de17f21b-593d-4acd-b472-c6f44e8222d8-3,https://biolit.fr/observations/observation-de17f21b-593d-4acd-b472-c6f44e8222d8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070332 (2).JPG,,FALSE, +N1,60524,sortie-6c6392ba-4e14-42ee-8b8d-18b815fc53f2,https://biolit.fr/sorties/sortie-6c6392ba-4e14-42ee-8b8d-18b815fc53f2/,Phil,,3/27/2017 0:00,11.0000000,11.0000000,47.853406000000,-3.912710000000,,Concarneau - Finistère,49061,observation-6c6392ba-4e14-42ee-8b8d-18b815fc53f2,https://biolit.fr/observations/observation-6c6392ba-4e14-42ee-8b8d-18b815fc53f2/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1060850.JPG,,TRUE, +N1,60524,sortie-6c6392ba-4e14-42ee-8b8d-18b815fc53f2,https://biolit.fr/sorties/sortie-6c6392ba-4e14-42ee-8b8d-18b815fc53f2/,Phil,,3/27/2017 0:00,11.0000000,11.0000000,47.853406000000,-3.912710000000,,Concarneau - Finistère,49063,observation-6c6392ba-4e14-42ee-8b8d-18b815fc53f2-2,https://biolit.fr/observations/observation-6c6392ba-4e14-42ee-8b8d-18b815fc53f2-2/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/P1060845.JPG,,TRUE, +N1,60524,sortie-6c6392ba-4e14-42ee-8b8d-18b815fc53f2,https://biolit.fr/sorties/sortie-6c6392ba-4e14-42ee-8b8d-18b815fc53f2/,Phil,,3/27/2017 0:00,11.0000000,11.0000000,47.853406000000,-3.912710000000,,Concarneau - Finistère,49065,observation-6c6392ba-4e14-42ee-8b8d-18b815fc53f2-3,https://biolit.fr/observations/observation-6c6392ba-4e14-42ee-8b8d-18b815fc53f2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060841.JPG,,FALSE, +N1,60524,sortie-6c6392ba-4e14-42ee-8b8d-18b815fc53f2,https://biolit.fr/sorties/sortie-6c6392ba-4e14-42ee-8b8d-18b815fc53f2/,Phil,,3/27/2017 0:00,11.0000000,11.0000000,47.853406000000,-3.912710000000,,Concarneau - Finistère,49067,observation-6c6392ba-4e14-42ee-8b8d-18b815fc53f2-4,https://biolit.fr/observations/observation-6c6392ba-4e14-42ee-8b8d-18b815fc53f2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060853.JPG,,FALSE, +N1,60524,sortie-6c6392ba-4e14-42ee-8b8d-18b815fc53f2,https://biolit.fr/sorties/sortie-6c6392ba-4e14-42ee-8b8d-18b815fc53f2/,Phil,,3/27/2017 0:00,11.0000000,11.0000000,47.853406000000,-3.912710000000,,Concarneau - Finistère,49069,observation-6c6392ba-4e14-42ee-8b8d-18b815fc53f2-5,https://biolit.fr/observations/observation-6c6392ba-4e14-42ee-8b8d-18b815fc53f2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060856.JPG,,FALSE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49071,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1317-scaled.jpg,,FALSE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49073,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-2,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_1322-scaled.jpg,,TRUE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49075,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-3,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-3/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_1323-scaled.jpg,,TRUE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49077,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-4,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-4/,Chaetomorpha aerea,Crinière dressée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1324-scaled.jpg,,TRUE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49079,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-5,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1325-scaled.jpg,,FALSE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49081,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-6,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-6/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_1332-scaled.jpg,,TRUE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49083,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-7,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1336-scaled.jpg,,FALSE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49085,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-8,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-8/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_1333-scaled.jpg,,TRUE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49087,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-9,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1338-scaled.jpg,,FALSE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49089,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-10,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1339-scaled.jpg,,FALSE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49091,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-11,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-11/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_1341_0-scaled.jpg,,TRUE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49093,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-12,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1345_0-scaled.jpg,,FALSE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49095,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-13,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1344_0-scaled.jpg,,FALSE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49097,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-14,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1346_0-scaled.jpg,,FALSE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49099,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-15,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-15/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_1347_0-scaled.jpg,,TRUE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49101,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-16,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1349-scaled.jpg,,FALSE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49102,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-17,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1350_0-scaled.jpg,,FALSE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49104,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-18,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-18/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1352_0-scaled.jpg,,TRUE, +N1,60526,sortie-86c15aaa-bcdd-4076-b767-8cc5b799a9c2,https://biolit.fr/sorties/sortie-86c15aaa-bcdd-4076-b767-8cc5b799a9c2/,AIEJE,,5/19/2017 0:00,15.0000000,17.0000000,43.33395700000,5.197804000000,,calanque de la redonne,49106,observation-86c15aaa-bcdd-4076-b767-8cc5b799a9c2,https://biolit.fr/observations/observation-86c15aaa-bcdd-4076-b767-8cc5b799a9c2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_4729_0-scaled.jpg,,TRUE, +N1,60526,sortie-86c15aaa-bcdd-4076-b767-8cc5b799a9c2,https://biolit.fr/sorties/sortie-86c15aaa-bcdd-4076-b767-8cc5b799a9c2/,AIEJE,,5/19/2017 0:00,15.0000000,17.0000000,43.33395700000,5.197804000000,,calanque de la redonne,49108,observation-86c15aaa-bcdd-4076-b767-8cc5b799a9c2-2,https://biolit.fr/observations/observation-86c15aaa-bcdd-4076-b767-8cc5b799a9c2-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_4726_0-scaled.jpg,,TRUE, +N1,60527,sortie-b6c5043d-7f99-48d6-a370-323f35ee36bb,https://biolit.fr/sorties/sortie-b6c5043d-7f99-48d6-a370-323f35ee36bb/,Phil,,3/23/2017 0:00,13.0000000,13.0:45,47.947884000000,-4.41133800000,,Pouldreuzic - Finistère,49110,observation-b6c5043d-7f99-48d6-a370-323f35ee36bb,https://biolit.fr/observations/observation-b6c5043d-7f99-48d6-a370-323f35ee36bb/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170323_133927.jpg,,FALSE, +N1,60527,sortie-b6c5043d-7f99-48d6-a370-323f35ee36bb,https://biolit.fr/sorties/sortie-b6c5043d-7f99-48d6-a370-323f35ee36bb/,Phil,,3/23/2017 0:00,13.0000000,13.0:45,47.947884000000,-4.41133800000,,Pouldreuzic - Finistère,49112,observation-b6c5043d-7f99-48d6-a370-323f35ee36bb-2,https://biolit.fr/observations/observation-b6c5043d-7f99-48d6-a370-323f35ee36bb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170323_133935.jpg,,FALSE, +N1,60527,sortie-b6c5043d-7f99-48d6-a370-323f35ee36bb,https://biolit.fr/sorties/sortie-b6c5043d-7f99-48d6-a370-323f35ee36bb/,Phil,,3/23/2017 0:00,13.0000000,13.0:45,47.947884000000,-4.41133800000,,Pouldreuzic - Finistère,49114,observation-b6c5043d-7f99-48d6-a370-323f35ee36bb-3,https://biolit.fr/observations/observation-b6c5043d-7f99-48d6-a370-323f35ee36bb-3/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/20170323_134025.jpg,,TRUE, +N1,60528,sortie-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6,https://biolit.fr/sorties/sortie-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6/,SidonieG,,05/10/2017,14.0000000,16.0000000,43.214808000000,5.342906000000,,L'anse de la Maronnaise,49116,observation-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6,https://biolit.fr/observations/observation-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5586-scaled.jpg,,FALSE, +N1,60528,sortie-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6,https://biolit.fr/sorties/sortie-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6/,SidonieG,,05/10/2017,14.0000000,16.0000000,43.214808000000,5.342906000000,,L'anse de la Maronnaise,49118,observation-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6-2,https://biolit.fr/observations/observation-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5595-scaled.jpg,,FALSE, +N1,60528,sortie-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6,https://biolit.fr/sorties/sortie-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6/,SidonieG,,05/10/2017,14.0000000,16.0000000,43.214808000000,5.342906000000,,L'anse de la Maronnaise,49120,observation-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6-3,https://biolit.fr/observations/observation-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5593-scaled.jpg,,FALSE, +N1,60528,sortie-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6,https://biolit.fr/sorties/sortie-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6/,SidonieG,,05/10/2017,14.0000000,16.0000000,43.214808000000,5.342906000000,,L'anse de la Maronnaise,49122,observation-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6-4,https://biolit.fr/observations/observation-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6-4/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5612-scaled.jpg,,TRUE, +N1,60528,sortie-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6,https://biolit.fr/sorties/sortie-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6/,SidonieG,,05/10/2017,14.0000000,16.0000000,43.214808000000,5.342906000000,,L'anse de la Maronnaise,49124,observation-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6-5,https://biolit.fr/observations/observation-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5572-scaled.jpg,,FALSE, +N1,60528,sortie-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6,https://biolit.fr/sorties/sortie-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6/,SidonieG,,05/10/2017,14.0000000,16.0000000,43.214808000000,5.342906000000,,L'anse de la Maronnaise,49125,observation-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6-6,https://biolit.fr/observations/observation-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6-6/,Stramonita haemastoma,Bouche de sang,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5609-scaled.jpg,,TRUE, +N1,60528,sortie-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6,https://biolit.fr/sorties/sortie-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6/,SidonieG,,05/10/2017,14.0000000,16.0000000,43.214808000000,5.342906000000,,L'anse de la Maronnaise,49127,observation-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6-7,https://biolit.fr/observations/observation-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6-7/,Ligia italica,Ligie italienne,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5603-scaled.jpg,,TRUE, +N1,60529,sortie-dad5850a-21f4-4975-8ce2-5819278702e7,https://biolit.fr/sorties/sortie-dad5850a-21f4-4975-8ce2-5819278702e7/,Phil,,05/06/2017,12.0:35,12.0000000,47.893894000000,-3.966137000000,,La Forêt Fouesnant - Finistère,49129,observation-dad5850a-21f4-4975-8ce2-5819278702e7,https://biolit.fr/observations/observation-dad5850a-21f4-4975-8ce2-5819278702e7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_123438.jpg,,FALSE, +N1,60529,sortie-dad5850a-21f4-4975-8ce2-5819278702e7,https://biolit.fr/sorties/sortie-dad5850a-21f4-4975-8ce2-5819278702e7/,Phil,,05/06/2017,12.0:35,12.0000000,47.893894000000,-3.966137000000,,La Forêt Fouesnant - Finistère,49131,observation-dad5850a-21f4-4975-8ce2-5819278702e7-2,https://biolit.fr/observations/observation-dad5850a-21f4-4975-8ce2-5819278702e7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_123633.jpg,,FALSE, +N1,60529,sortie-dad5850a-21f4-4975-8ce2-5819278702e7,https://biolit.fr/sorties/sortie-dad5850a-21f4-4975-8ce2-5819278702e7/,Phil,,05/06/2017,12.0:35,12.0000000,47.893894000000,-3.966137000000,,La Forêt Fouesnant - Finistère,49133,observation-dad5850a-21f4-4975-8ce2-5819278702e7-3,https://biolit.fr/observations/observation-dad5850a-21f4-4975-8ce2-5819278702e7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_123703.jpg,,FALSE, +N1,60529,sortie-dad5850a-21f4-4975-8ce2-5819278702e7,https://biolit.fr/sorties/sortie-dad5850a-21f4-4975-8ce2-5819278702e7/,Phil,,05/06/2017,12.0:35,12.0000000,47.893894000000,-3.966137000000,,La Forêt Fouesnant - Finistère,49135,observation-dad5850a-21f4-4975-8ce2-5819278702e7-4,https://biolit.fr/observations/observation-dad5850a-21f4-4975-8ce2-5819278702e7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_123601.jpg,,FALSE, +N1,60530,sortie-05bd0c23-dda4-4140-a317-592c1726ba21,https://biolit.fr/sorties/sortie-05bd0c23-dda4-4140-a317-592c1726ba21/,heloise.alie,,05/10/2017,14.0000000,16.0000000,43.211774000000,5.353200000000,,plage de la Maronaise ,49137,observation-05bd0c23-dda4-4140-a317-592c1726ba21,https://biolit.fr/observations/observation-05bd0c23-dda4-4140-a317-592c1726ba21/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3086-scaled.jpg,,FALSE, +N1,60530,sortie-05bd0c23-dda4-4140-a317-592c1726ba21,https://biolit.fr/sorties/sortie-05bd0c23-dda4-4140-a317-592c1726ba21/,heloise.alie,,05/10/2017,14.0000000,16.0000000,43.211774000000,5.353200000000,,plage de la Maronaise ,49139,observation-05bd0c23-dda4-4140-a317-592c1726ba21-2,https://biolit.fr/observations/observation-05bd0c23-dda4-4140-a317-592c1726ba21-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3091_0-scaled.jpg,,FALSE, +N1,60530,sortie-05bd0c23-dda4-4140-a317-592c1726ba21,https://biolit.fr/sorties/sortie-05bd0c23-dda4-4140-a317-592c1726ba21/,heloise.alie,,05/10/2017,14.0000000,16.0000000,43.211774000000,5.353200000000,,plage de la Maronaise ,49141,observation-05bd0c23-dda4-4140-a317-592c1726ba21-3,https://biolit.fr/observations/observation-05bd0c23-dda4-4140-a317-592c1726ba21-3/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3102-scaled.jpg,,TRUE, +N1,60530,sortie-05bd0c23-dda4-4140-a317-592c1726ba21,https://biolit.fr/sorties/sortie-05bd0c23-dda4-4140-a317-592c1726ba21/,heloise.alie,,05/10/2017,14.0000000,16.0000000,43.211774000000,5.353200000000,,plage de la Maronaise ,49143,observation-05bd0c23-dda4-4140-a317-592c1726ba21-4,https://biolit.fr/observations/observation-05bd0c23-dda4-4140-a317-592c1726ba21-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3082-scaled.jpg,,FALSE, +N1,60530,sortie-05bd0c23-dda4-4140-a317-592c1726ba21,https://biolit.fr/sorties/sortie-05bd0c23-dda4-4140-a317-592c1726ba21/,heloise.alie,,05/10/2017,14.0000000,16.0000000,43.211774000000,5.353200000000,,plage de la Maronaise ,49145,observation-05bd0c23-dda4-4140-a317-592c1726ba21-5,https://biolit.fr/observations/observation-05bd0c23-dda4-4140-a317-592c1726ba21-5/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3087_0-scaled.jpg,,TRUE, +N1,60530,sortie-05bd0c23-dda4-4140-a317-592c1726ba21,https://biolit.fr/sorties/sortie-05bd0c23-dda4-4140-a317-592c1726ba21/,heloise.alie,,05/10/2017,14.0000000,16.0000000,43.211774000000,5.353200000000,,plage de la Maronaise ,49147,observation-05bd0c23-dda4-4140-a317-592c1726ba21-6,https://biolit.fr/observations/observation-05bd0c23-dda4-4140-a317-592c1726ba21-6/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3083-scaled.jpg,,TRUE, +N1,60531,sortie-689340f0-6d28-4a05-889e-feb498803a23,https://biolit.fr/sorties/sortie-689340f0-6d28-4a05-889e-feb498803a23/,Phil,,3/27/2017 0:00,11.0000000,11.0000000,47.856263000000,-3.920432000000,,Concarneau - Finistère,49149,observation-689340f0-6d28-4a05-889e-feb498803a23,https://biolit.fr/observations/observation-689340f0-6d28-4a05-889e-feb498803a23/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1060840.JPG,,TRUE, +N1,60531,sortie-689340f0-6d28-4a05-889e-feb498803a23,https://biolit.fr/sorties/sortie-689340f0-6d28-4a05-889e-feb498803a23/,Phil,,3/27/2017 0:00,11.0000000,11.0000000,47.856263000000,-3.920432000000,,Concarneau - Finistère,49151,observation-689340f0-6d28-4a05-889e-feb498803a23-2,https://biolit.fr/observations/observation-689340f0-6d28-4a05-889e-feb498803a23-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1060838.JPG,,TRUE, +N1,60531,sortie-689340f0-6d28-4a05-889e-feb498803a23,https://biolit.fr/sorties/sortie-689340f0-6d28-4a05-889e-feb498803a23/,Phil,,3/27/2017 0:00,11.0000000,11.0000000,47.856263000000,-3.920432000000,,Concarneau - Finistère,49153,observation-689340f0-6d28-4a05-889e-feb498803a23-3,https://biolit.fr/observations/observation-689340f0-6d28-4a05-889e-feb498803a23-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060833.JPG,,TRUE, +N1,60531,sortie-689340f0-6d28-4a05-889e-feb498803a23,https://biolit.fr/sorties/sortie-689340f0-6d28-4a05-889e-feb498803a23/,Phil,,3/27/2017 0:00,11.0000000,11.0000000,47.856263000000,-3.920432000000,,Concarneau - Finistère,49155,observation-689340f0-6d28-4a05-889e-feb498803a23-4,https://biolit.fr/observations/observation-689340f0-6d28-4a05-889e-feb498803a23-4/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/P1060830.JPG,,TRUE, +N1,60534,sortie-51e80c58-7df4-4d15-b7b2-f03190a8c6ad,https://biolit.fr/sorties/sortie-51e80c58-7df4-4d15-b7b2-f03190a8c6ad/,RIEM,,05/10/2017,10.0000000,12.0:15,47.600924000000,-2.747414000000,,ILE DE BOËD 56860 SÉNÉ,49165,observation-51e80c58-7df4-4d15-b7b2-f03190a8c6ad,https://biolit.fr/observations/observation-51e80c58-7df4-4d15-b7b2-f03190a8c6ad/,,,,https://biolit.fr/wp-content/uploads/2023/07/Boëd 29.jpg,,FALSE, +N1,60535,sortie-e068da92-1112-40e1-8cba-77b4a83c13e7,https://biolit.fr/sorties/sortie-e068da92-1112-40e1-8cba-77b4a83c13e7/,Phil,,05/06/2017,12.0:35,12.0:45,47.894219000000,-3.964807000000,,La Forêt-Fouesnant - Finistère,49167,observation-e068da92-1112-40e1-8cba-77b4a83c13e7,https://biolit.fr/observations/observation-e068da92-1112-40e1-8cba-77b4a83c13e7/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20170506_124335.jpg,,TRUE, +N1,60535,sortie-e068da92-1112-40e1-8cba-77b4a83c13e7,https://biolit.fr/sorties/sortie-e068da92-1112-40e1-8cba-77b4a83c13e7/,Phil,,05/06/2017,12.0:35,12.0:45,47.894219000000,-3.964807000000,,La Forêt-Fouesnant - Finistère,49169,observation-e068da92-1112-40e1-8cba-77b4a83c13e7-2,https://biolit.fr/observations/observation-e068da92-1112-40e1-8cba-77b4a83c13e7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_123354.jpg,,FALSE, +N1,60535,sortie-e068da92-1112-40e1-8cba-77b4a83c13e7,https://biolit.fr/sorties/sortie-e068da92-1112-40e1-8cba-77b4a83c13e7/,Phil,,05/06/2017,12.0:35,12.0:45,47.894219000000,-3.964807000000,,La Forêt-Fouesnant - Finistère,49171,observation-e068da92-1112-40e1-8cba-77b4a83c13e7-3,https://biolit.fr/observations/observation-e068da92-1112-40e1-8cba-77b4a83c13e7-3/,Laevicardium crassum,Bucarde de Norvège,,https://biolit.fr/wp-content/uploads/2023/07/20170506_124058.jpg,,TRUE, +N1,60536,sortie-d6ac4b05-996d-46c2-806d-873e836dc55a,https://biolit.fr/sorties/sortie-d6ac4b05-996d-46c2-806d-873e836dc55a/,PEP44 La Marjolaine,,05/09/2017,11.0000000,12.0000000,47.351268000000,-2.517566000000,,La Turballe,49173,observation-d6ac4b05-996d-46c2-806d-873e836dc55a,https://biolit.fr/observations/observation-d6ac4b05-996d-46c2-806d-873e836dc55a/,Clavelina lepadiformis,Grande claveline,,https://biolit.fr/wp-content/uploads/2023/07/vu à proximité - clavelines-scaled.jpg,,TRUE, +N1,60537,sortie-1cb8284f-466c-44b8-99d2-5a4973ec0918,https://biolit.fr/sorties/sortie-1cb8284f-466c-44b8-99d2-5a4973ec0918/,PEP44 La Marjolaine,,05/08/2017,10.0:45,11.0000000,47.35121600000,-2.517565000000,,La Turballe,49175,observation-1cb8284f-466c-44b8-99d2-5a4973ec0918,https://biolit.fr/observations/observation-1cb8284f-466c-44b8-99d2-5a4973ec0918/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/DSC04917.JPG,,TRUE, +N1,60538,sortie-2e0266be-669c-48a4-bc4e-3ad5be09e6ee,https://biolit.fr/sorties/sortie-2e0266be-669c-48a4-bc4e-3ad5be09e6ee/,Phil,,3/27/2017 0:00,11.0:15,11.0000000,47.855891000000,-3.921389000000,,Concarneau - Finistère,49177,observation-2e0266be-669c-48a4-bc4e-3ad5be09e6ee,https://biolit.fr/observations/observation-2e0266be-669c-48a4-bc4e-3ad5be09e6ee/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060823.JPG,,TRUE, +N1,60538,sortie-2e0266be-669c-48a4-bc4e-3ad5be09e6ee,https://biolit.fr/sorties/sortie-2e0266be-669c-48a4-bc4e-3ad5be09e6ee/,Phil,,3/27/2017 0:00,11.0:15,11.0000000,47.855891000000,-3.921389000000,,Concarneau - Finistère,49179,observation-2e0266be-669c-48a4-bc4e-3ad5be09e6ee-2,https://biolit.fr/observations/observation-2e0266be-669c-48a4-bc4e-3ad5be09e6ee-2/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/P1060817.JPG,,TRUE, +N1,60538,sortie-2e0266be-669c-48a4-bc4e-3ad5be09e6ee,https://biolit.fr/sorties/sortie-2e0266be-669c-48a4-bc4e-3ad5be09e6ee/,Phil,,3/27/2017 0:00,11.0:15,11.0000000,47.855891000000,-3.921389000000,,Concarneau - Finistère,49181,observation-2e0266be-669c-48a4-bc4e-3ad5be09e6ee-3,https://biolit.fr/observations/observation-2e0266be-669c-48a4-bc4e-3ad5be09e6ee-3/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/P1060818_0.JPG,,TRUE, +N1,60538,sortie-2e0266be-669c-48a4-bc4e-3ad5be09e6ee,https://biolit.fr/sorties/sortie-2e0266be-669c-48a4-bc4e-3ad5be09e6ee/,Phil,,3/27/2017 0:00,11.0:15,11.0000000,47.855891000000,-3.921389000000,,Concarneau - Finistère,49183,observation-2e0266be-669c-48a4-bc4e-3ad5be09e6ee-4,https://biolit.fr/observations/observation-2e0266be-669c-48a4-bc4e-3ad5be09e6ee-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060825.JPG,,FALSE, +N1,60538,sortie-2e0266be-669c-48a4-bc4e-3ad5be09e6ee,https://biolit.fr/sorties/sortie-2e0266be-669c-48a4-bc4e-3ad5be09e6ee/,Phil,,3/27/2017 0:00,11.0:15,11.0000000,47.855891000000,-3.921389000000,,Concarneau - Finistère,49185,observation-2e0266be-669c-48a4-bc4e-3ad5be09e6ee-5,https://biolit.fr/observations/observation-2e0266be-669c-48a4-bc4e-3ad5be09e6ee-5/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1060826.JPG,,TRUE, +N1,60538,sortie-2e0266be-669c-48a4-bc4e-3ad5be09e6ee,https://biolit.fr/sorties/sortie-2e0266be-669c-48a4-bc4e-3ad5be09e6ee/,Phil,,3/27/2017 0:00,11.0:15,11.0000000,47.855891000000,-3.921389000000,,Concarneau - Finistère,49187,observation-2e0266be-669c-48a4-bc4e-3ad5be09e6ee-6,https://biolit.fr/observations/observation-2e0266be-669c-48a4-bc4e-3ad5be09e6ee-6/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1060827.JPG,,TRUE, +N1,60539,sortie-201c0fa7-7af3-4b71-81ce-b264db5077dc,https://biolit.fr/sorties/sortie-201c0fa7-7af3-4b71-81ce-b264db5077dc/,Phil,,4/28/2017 0:00,13.0000000,13.000005,47.872860000000,-3.909211000000,,Concarneau - Finistère,49189,observation-201c0fa7-7af3-4b71-81ce-b264db5077dc,https://biolit.fr/observations/observation-201c0fa7-7af3-4b71-81ce-b264db5077dc/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170428_130057.jpg,,FALSE, +N1,60539,sortie-201c0fa7-7af3-4b71-81ce-b264db5077dc,https://biolit.fr/sorties/sortie-201c0fa7-7af3-4b71-81ce-b264db5077dc/,Phil,,4/28/2017 0:00,13.0000000,13.000005,47.872860000000,-3.909211000000,,Concarneau - Finistère,49191,observation-201c0fa7-7af3-4b71-81ce-b264db5077dc-2,https://biolit.fr/observations/observation-201c0fa7-7af3-4b71-81ce-b264db5077dc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170428_130004.jpg,,FALSE, +N1,60539,sortie-201c0fa7-7af3-4b71-81ce-b264db5077dc,https://biolit.fr/sorties/sortie-201c0fa7-7af3-4b71-81ce-b264db5077dc/,Phil,,4/28/2017 0:00,13.0000000,13.000005,47.872860000000,-3.909211000000,,Concarneau - Finistère,49193,observation-201c0fa7-7af3-4b71-81ce-b264db5077dc-3,https://biolit.fr/observations/observation-201c0fa7-7af3-4b71-81ce-b264db5077dc-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170428_130149.jpg,,FALSE, +N1,60540,sortie-c520f4f9-3a13-4b07-8849-ca7e1be04433,https://biolit.fr/sorties/sortie-c520f4f9-3a13-4b07-8849-ca7e1be04433/,Phil,,4/18/2017 0:00,10.0:25,10.0000000,47.797781000000,-4.210973000000,,Lesconil - Finistère,49195,observation-c520f4f9-3a13-4b07-8849-ca7e1be04433,https://biolit.fr/observations/observation-c520f4f9-3a13-4b07-8849-ca7e1be04433/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170418_102753.jpg,,TRUE, +N1,60540,sortie-c520f4f9-3a13-4b07-8849-ca7e1be04433,https://biolit.fr/sorties/sortie-c520f4f9-3a13-4b07-8849-ca7e1be04433/,Phil,,4/18/2017 0:00,10.0:25,10.0000000,47.797781000000,-4.210973000000,,Lesconil - Finistère,49197,observation-c520f4f9-3a13-4b07-8849-ca7e1be04433-2,https://biolit.fr/observations/observation-c520f4f9-3a13-4b07-8849-ca7e1be04433-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170418_102826.jpg,,FALSE, +N1,60540,sortie-c520f4f9-3a13-4b07-8849-ca7e1be04433,https://biolit.fr/sorties/sortie-c520f4f9-3a13-4b07-8849-ca7e1be04433/,Phil,,4/18/2017 0:00,10.0:25,10.0000000,47.797781000000,-4.210973000000,,Lesconil - Finistère,49199,observation-c520f4f9-3a13-4b07-8849-ca7e1be04433-3,https://biolit.fr/observations/observation-c520f4f9-3a13-4b07-8849-ca7e1be04433-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170418_102651.jpg,,FALSE, +N1,60540,sortie-c520f4f9-3a13-4b07-8849-ca7e1be04433,https://biolit.fr/sorties/sortie-c520f4f9-3a13-4b07-8849-ca7e1be04433/,Phil,,4/18/2017 0:00,10.0:25,10.0000000,47.797781000000,-4.210973000000,,Lesconil - Finistère,49201,observation-c520f4f9-3a13-4b07-8849-ca7e1be04433-4,https://biolit.fr/observations/observation-c520f4f9-3a13-4b07-8849-ca7e1be04433-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170418_103055.jpg,,FALSE, +N1,60542,sortie-8df2c315-d0a6-4416-8671-bc85f857f50e,https://biolit.fr/sorties/sortie-8df2c315-d0a6-4416-8671-bc85f857f50e/,RIEM,,4/26/2017 0:00,12.0000000,12.0:15,47.541859000000,-2.90761700000,,Plage du Fogeo (Arzon),49207,observation-8df2c315-d0a6-4416-8671-bc85f857f50e,https://biolit.fr/observations/observation-8df2c315-d0a6-4416-8671-bc85f857f50e/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020306.JPG,,TRUE, +N1,60542,sortie-8df2c315-d0a6-4416-8671-bc85f857f50e,https://biolit.fr/sorties/sortie-8df2c315-d0a6-4416-8671-bc85f857f50e/,RIEM,,4/26/2017 0:00,12.0000000,12.0:15,47.541859000000,-2.90761700000,,Plage du Fogeo (Arzon),49209,observation-8df2c315-d0a6-4416-8671-bc85f857f50e-2,https://biolit.fr/observations/observation-8df2c315-d0a6-4416-8671-bc85f857f50e-2/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/P1020316_0.JPG,,TRUE, +N1,60542,sortie-8df2c315-d0a6-4416-8671-bc85f857f50e,https://biolit.fr/sorties/sortie-8df2c315-d0a6-4416-8671-bc85f857f50e/,RIEM,,4/26/2017 0:00,12.0000000,12.0:15,47.541859000000,-2.90761700000,,Plage du Fogeo (Arzon),49211,observation-8df2c315-d0a6-4416-8671-bc85f857f50e-3,https://biolit.fr/observations/observation-8df2c315-d0a6-4416-8671-bc85f857f50e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020317.JPG,,FALSE, +N1,60542,sortie-8df2c315-d0a6-4416-8671-bc85f857f50e,https://biolit.fr/sorties/sortie-8df2c315-d0a6-4416-8671-bc85f857f50e/,RIEM,,4/26/2017 0:00,12.0000000,12.0:15,47.541859000000,-2.90761700000,,Plage du Fogeo (Arzon),49213,observation-8df2c315-d0a6-4416-8671-bc85f857f50e-4,https://biolit.fr/observations/observation-8df2c315-d0a6-4416-8671-bc85f857f50e-4/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/P1020321_0.JPG,,TRUE, +N1,60542,sortie-8df2c315-d0a6-4416-8671-bc85f857f50e,https://biolit.fr/sorties/sortie-8df2c315-d0a6-4416-8671-bc85f857f50e/,RIEM,,4/26/2017 0:00,12.0000000,12.0:15,47.541859000000,-2.90761700000,,Plage du Fogeo (Arzon),49215,observation-8df2c315-d0a6-4416-8671-bc85f857f50e-5,https://biolit.fr/observations/observation-8df2c315-d0a6-4416-8671-bc85f857f50e-5/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/P1020330.JPG,,TRUE, +N1,60543,sortie-878cf316-75fb-4748-817f-2f0a3d24aa9e,https://biolit.fr/sorties/sortie-878cf316-75fb-4748-817f-2f0a3d24aa9e/,Phil,,4/15/2017 0:00,13.0000000,13.0:45,47.796737000000,-4.373193000000,,Penmarc'h - Finistère,49217,observation-878cf316-75fb-4748-817f-2f0a3d24aa9e,https://biolit.fr/observations/observation-878cf316-75fb-4748-817f-2f0a3d24aa9e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070230.JPG,,FALSE, +N1,60543,sortie-878cf316-75fb-4748-817f-2f0a3d24aa9e,https://biolit.fr/sorties/sortie-878cf316-75fb-4748-817f-2f0a3d24aa9e/,Phil,,4/15/2017 0:00,13.0000000,13.0:45,47.796737000000,-4.373193000000,,Penmarc'h - Finistère,49219,observation-878cf316-75fb-4748-817f-2f0a3d24aa9e-2,https://biolit.fr/observations/observation-878cf316-75fb-4748-817f-2f0a3d24aa9e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070228.JPG,,FALSE, +N1,60543,sortie-878cf316-75fb-4748-817f-2f0a3d24aa9e,https://biolit.fr/sorties/sortie-878cf316-75fb-4748-817f-2f0a3d24aa9e/,Phil,,4/15/2017 0:00,13.0000000,13.0:45,47.796737000000,-4.373193000000,,Penmarc'h - Finistère,49221,observation-878cf316-75fb-4748-817f-2f0a3d24aa9e-3,https://biolit.fr/observations/observation-878cf316-75fb-4748-817f-2f0a3d24aa9e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070234.JPG,,FALSE, +N1,60543,sortie-878cf316-75fb-4748-817f-2f0a3d24aa9e,https://biolit.fr/sorties/sortie-878cf316-75fb-4748-817f-2f0a3d24aa9e/,Phil,,4/15/2017 0:00,13.0000000,13.0:45,47.796737000000,-4.373193000000,,Penmarc'h - Finistère,49223,observation-878cf316-75fb-4748-817f-2f0a3d24aa9e-4,https://biolit.fr/observations/observation-878cf316-75fb-4748-817f-2f0a3d24aa9e-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070219.JPG,,TRUE, +N1,60543,sortie-878cf316-75fb-4748-817f-2f0a3d24aa9e,https://biolit.fr/sorties/sortie-878cf316-75fb-4748-817f-2f0a3d24aa9e/,Phil,,4/15/2017 0:00,13.0000000,13.0:45,47.796737000000,-4.373193000000,,Penmarc'h - Finistère,49225,observation-878cf316-75fb-4748-817f-2f0a3d24aa9e-5,https://biolit.fr/observations/observation-878cf316-75fb-4748-817f-2f0a3d24aa9e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070221.JPG,,FALSE, +N1,60544,sortie-005935ca-4aa5-41d0-8b4d-a2bfa4d01776,https://biolit.fr/sorties/sortie-005935ca-4aa5-41d0-8b4d-a2bfa4d01776/,Phil,,4/14/2017 0:00,11.0000000,11.000005,48.866759000000,-2.98556000000,,Île-de-Bréhat - Côtes-d'Armor ,49227,observation-005935ca-4aa5-41d0-8b4d-a2bfa4d01776,https://biolit.fr/observations/observation-005935ca-4aa5-41d0-8b4d-a2bfa4d01776/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1060926.JPG,,TRUE, +N1,60544,sortie-005935ca-4aa5-41d0-8b4d-a2bfa4d01776,https://biolit.fr/sorties/sortie-005935ca-4aa5-41d0-8b4d-a2bfa4d01776/,Phil,,4/14/2017 0:00,11.0000000,11.000005,48.866759000000,-2.98556000000,,Île-de-Bréhat - Côtes-d'Armor ,49229,observation-005935ca-4aa5-41d0-8b4d-a2bfa4d01776-2,https://biolit.fr/observations/observation-005935ca-4aa5-41d0-8b4d-a2bfa4d01776-2/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1060925.JPG,,TRUE, +N1,60545,sortie-10d12469-c2b5-4ebd-beb9-f3139a3bbbca,https://biolit.fr/sorties/sortie-10d12469-c2b5-4ebd-beb9-f3139a3bbbca/,Phil,,4/15/2017 0:00,14.0000000,14.0:15,47.799441000000,-4.375099000000,,Penmarc'h - Finistère,49231,observation-10d12469-c2b5-4ebd-beb9-f3139a3bbbca,https://biolit.fr/observations/observation-10d12469-c2b5-4ebd-beb9-f3139a3bbbca/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070265.JPG,,FALSE, +N1,60545,sortie-10d12469-c2b5-4ebd-beb9-f3139a3bbbca,https://biolit.fr/sorties/sortie-10d12469-c2b5-4ebd-beb9-f3139a3bbbca/,Phil,,4/15/2017 0:00,14.0000000,14.0:15,47.799441000000,-4.375099000000,,Penmarc'h - Finistère,49233,observation-10d12469-c2b5-4ebd-beb9-f3139a3bbbca-2,https://biolit.fr/observations/observation-10d12469-c2b5-4ebd-beb9-f3139a3bbbca-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070278.JPG,,FALSE, +N1,60545,sortie-10d12469-c2b5-4ebd-beb9-f3139a3bbbca,https://biolit.fr/sorties/sortie-10d12469-c2b5-4ebd-beb9-f3139a3bbbca/,Phil,,4/15/2017 0:00,14.0000000,14.0:15,47.799441000000,-4.375099000000,,Penmarc'h - Finistère,49235,observation-10d12469-c2b5-4ebd-beb9-f3139a3bbbca-3,https://biolit.fr/observations/observation-10d12469-c2b5-4ebd-beb9-f3139a3bbbca-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070280.JPG,,FALSE, +N1,60546,sortie-7e947664-7cf5-48a8-baa3-4cabfb3ea0a0,https://biolit.fr/sorties/sortie-7e947664-7cf5-48a8-baa3-4cabfb3ea0a0/,Phil,,4/16/2017 0:00,12.0:25,12.0000000,47.895261000000,-3.974355000000,,La Forêt-Fouesnant - Finistère,49237,observation-7e947664-7cf5-48a8-baa3-4cabfb3ea0a0,https://biolit.fr/observations/observation-7e947664-7cf5-48a8-baa3-4cabfb3ea0a0/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170416_122800.jpg,,FALSE, +N1,60546,sortie-7e947664-7cf5-48a8-baa3-4cabfb3ea0a0,https://biolit.fr/sorties/sortie-7e947664-7cf5-48a8-baa3-4cabfb3ea0a0/,Phil,,4/16/2017 0:00,12.0:25,12.0000000,47.895261000000,-3.974355000000,,La Forêt-Fouesnant - Finistère,49239,observation-7e947664-7cf5-48a8-baa3-4cabfb3ea0a0-2,https://biolit.fr/observations/observation-7e947664-7cf5-48a8-baa3-4cabfb3ea0a0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170416_122811.jpg,,FALSE, +N1,60546,sortie-7e947664-7cf5-48a8-baa3-4cabfb3ea0a0,https://biolit.fr/sorties/sortie-7e947664-7cf5-48a8-baa3-4cabfb3ea0a0/,Phil,,4/16/2017 0:00,12.0:25,12.0000000,47.895261000000,-3.974355000000,,La Forêt-Fouesnant - Finistère,49241,observation-7e947664-7cf5-48a8-baa3-4cabfb3ea0a0-3,https://biolit.fr/observations/observation-7e947664-7cf5-48a8-baa3-4cabfb3ea0a0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170416_122856.jpg,,FALSE, +N1,60546,sortie-7e947664-7cf5-48a8-baa3-4cabfb3ea0a0,https://biolit.fr/sorties/sortie-7e947664-7cf5-48a8-baa3-4cabfb3ea0a0/,Phil,,4/16/2017 0:00,12.0:25,12.0000000,47.895261000000,-3.974355000000,,La Forêt-Fouesnant - Finistère,49243,observation-7e947664-7cf5-48a8-baa3-4cabfb3ea0a0-4,https://biolit.fr/observations/observation-7e947664-7cf5-48a8-baa3-4cabfb3ea0a0-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20170416_123049.jpg,,TRUE, +N1,60547,sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02,https://biolit.fr/sorties/sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02/,RIEM,,4/27/2017 0:00,12.0000000,13.0000000,51.05302100000,2.40895000000,,Plage de Malo les Bains ,49245,observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02,https://biolit.fr/observations/observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170427_1.jpg,,FALSE, +N1,60547,sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02,https://biolit.fr/sorties/sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02/,RIEM,,4/27/2017 0:00,12.0000000,13.0000000,51.05302100000,2.40895000000,,Plage de Malo les Bains ,49247,observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-2,https://biolit.fr/observations/observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-2/,Donax variegatus,Flion aplati,,https://biolit.fr/wp-content/uploads/2023/07/20170427_2.jpg,,TRUE, +N1,60547,sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02,https://biolit.fr/sorties/sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02/,RIEM,,4/27/2017 0:00,12.0000000,13.0000000,51.05302100000,2.40895000000,,Plage de Malo les Bains ,49249,observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-3,https://biolit.fr/observations/observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170427_3.jpg,,FALSE, +N1,60547,sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02,https://biolit.fr/sorties/sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02/,RIEM,,4/27/2017 0:00,12.0000000,13.0000000,51.05302100000,2.40895000000,,Plage de Malo les Bains ,49251,observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-4,https://biolit.fr/observations/observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170427_4.jpg,,FALSE, +N1,60547,sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02,https://biolit.fr/sorties/sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02/,RIEM,,4/27/2017 0:00,12.0000000,13.0000000,51.05302100000,2.40895000000,,Plage de Malo les Bains ,49253,observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-5,https://biolit.fr/observations/observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170427_5.jpg,,FALSE, +N1,60547,sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02,https://biolit.fr/sorties/sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02/,RIEM,,4/27/2017 0:00,12.0000000,13.0000000,51.05302100000,2.40895000000,,Plage de Malo les Bains ,49255,observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-6,https://biolit.fr/observations/observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-6/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20170427_6.jpg,,TRUE, +N1,60547,sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02,https://biolit.fr/sorties/sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02/,RIEM,,4/27/2017 0:00,12.0000000,13.0000000,51.05302100000,2.40895000000,,Plage de Malo les Bains ,49257,observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-7,https://biolit.fr/observations/observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-7/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20170427_7.jpg,,TRUE, +N1,60547,sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02,https://biolit.fr/sorties/sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02/,RIEM,,4/27/2017 0:00,12.0000000,13.0000000,51.05302100000,2.40895000000,,Plage de Malo les Bains ,49259,observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-8,https://biolit.fr/observations/observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-8/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/20170427_8.jpg,,TRUE, +N1,60547,sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02,https://biolit.fr/sorties/sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02/,RIEM,,4/27/2017 0:00,12.0000000,13.0000000,51.05302100000,2.40895000000,,Plage de Malo les Bains ,49261,observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-9,https://biolit.fr/observations/observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-9/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/20170427_9.jpg,,TRUE, +N1,60547,sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02,https://biolit.fr/sorties/sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02/,RIEM,,4/27/2017 0:00,12.0000000,13.0000000,51.05302100000,2.40895000000,,Plage de Malo les Bains ,49263,observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-10,https://biolit.fr/observations/observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-10/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/20170427_10.jpg,,TRUE, +N1,60547,sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02,https://biolit.fr/sorties/sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02/,RIEM,,4/27/2017 0:00,12.0000000,13.0000000,51.05302100000,2.40895000000,,Plage de Malo les Bains ,49265,observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-11,https://biolit.fr/observations/observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-11/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20170427_11.jpg,,TRUE, +N1,60548,sortie-67cd6b7e-6818-4a6e-83d0-bd94f9d23547,https://biolit.fr/sorties/sortie-67cd6b7e-6818-4a6e-83d0-bd94f9d23547/,Phil,,4/18/2017 0:00,10.0:15,10.0:25,47.798016000000,-4.211317000000,,Lesconil - Finistère,49267,observation-67cd6b7e-6818-4a6e-83d0-bd94f9d23547,https://biolit.fr/observations/observation-67cd6b7e-6818-4a6e-83d0-bd94f9d23547/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/20170418_102134.jpg,,TRUE, +N1,60548,sortie-67cd6b7e-6818-4a6e-83d0-bd94f9d23547,https://biolit.fr/sorties/sortie-67cd6b7e-6818-4a6e-83d0-bd94f9d23547/,Phil,,4/18/2017 0:00,10.0:15,10.0:25,47.798016000000,-4.211317000000,,Lesconil - Finistère,49269,observation-67cd6b7e-6818-4a6e-83d0-bd94f9d23547-2,https://biolit.fr/observations/observation-67cd6b7e-6818-4a6e-83d0-bd94f9d23547-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170418_101804.jpg,,TRUE, +N1,60548,sortie-67cd6b7e-6818-4a6e-83d0-bd94f9d23547,https://biolit.fr/sorties/sortie-67cd6b7e-6818-4a6e-83d0-bd94f9d23547/,Phil,,4/18/2017 0:00,10.0:15,10.0:25,47.798016000000,-4.211317000000,,Lesconil - Finistère,49271,observation-67cd6b7e-6818-4a6e-83d0-bd94f9d23547-3,https://biolit.fr/observations/observation-67cd6b7e-6818-4a6e-83d0-bd94f9d23547-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170418_102421.jpg,,FALSE, +N1,60549,sortie-83d0900d-6671-4ff6-b22b-081ea14a5ede,https://biolit.fr/sorties/sortie-83d0900d-6671-4ff6-b22b-081ea14a5ede/,Phil,,4/14/2017 0:00,12.0:45,12.0:55,48.847553000000,-3.012140000000,,Île-de-Bréhat - Côtes-d'Armor,49273,observation-83d0900d-6671-4ff6-b22b-081ea14a5ede,https://biolit.fr/observations/observation-83d0900d-6671-4ff6-b22b-081ea14a5ede/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070048.JPG,,FALSE, +N1,60549,sortie-83d0900d-6671-4ff6-b22b-081ea14a5ede,https://biolit.fr/sorties/sortie-83d0900d-6671-4ff6-b22b-081ea14a5ede/,Phil,,4/14/2017 0:00,12.0:45,12.0:55,48.847553000000,-3.012140000000,,Île-de-Bréhat - Côtes-d'Armor,49275,observation-83d0900d-6671-4ff6-b22b-081ea14a5ede-2,https://biolit.fr/observations/observation-83d0900d-6671-4ff6-b22b-081ea14a5ede-2/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/P1070040.JPG,,TRUE, +N1,60549,sortie-83d0900d-6671-4ff6-b22b-081ea14a5ede,https://biolit.fr/sorties/sortie-83d0900d-6671-4ff6-b22b-081ea14a5ede/,Phil,,4/14/2017 0:00,12.0:45,12.0:55,48.847553000000,-3.012140000000,,Île-de-Bréhat - Côtes-d'Armor,49277,observation-83d0900d-6671-4ff6-b22b-081ea14a5ede-3,https://biolit.fr/observations/observation-83d0900d-6671-4ff6-b22b-081ea14a5ede-3/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1070047.JPG,,TRUE, +N1,60549,sortie-83d0900d-6671-4ff6-b22b-081ea14a5ede,https://biolit.fr/sorties/sortie-83d0900d-6671-4ff6-b22b-081ea14a5ede/,Phil,,4/14/2017 0:00,12.0:45,12.0:55,48.847553000000,-3.012140000000,,Île-de-Bréhat - Côtes-d'Armor,49279,observation-83d0900d-6671-4ff6-b22b-081ea14a5ede-4,https://biolit.fr/observations/observation-83d0900d-6671-4ff6-b22b-081ea14a5ede-4/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1070051.JPG,,TRUE, +N1,60549,sortie-83d0900d-6671-4ff6-b22b-081ea14a5ede,https://biolit.fr/sorties/sortie-83d0900d-6671-4ff6-b22b-081ea14a5ede/,Phil,,4/14/2017 0:00,12.0:45,12.0:55,48.847553000000,-3.012140000000,,Île-de-Bréhat - Côtes-d'Armor,49281,observation-83d0900d-6671-4ff6-b22b-081ea14a5ede-5,https://biolit.fr/observations/observation-83d0900d-6671-4ff6-b22b-081ea14a5ede-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070037.JPG,,TRUE, +N1,60550,sortie-7b280848-689d-4606-9524-eb30e673e449,https://biolit.fr/sorties/sortie-7b280848-689d-4606-9524-eb30e673e449/,Phil,,4/15/2017 0:00,13.0000000,13.0:35,47.796861000000,-4.372861000000,,Penmarc'h - Finistère,49283,observation-7b280848-689d-4606-9524-eb30e673e449,https://biolit.fr/observations/observation-7b280848-689d-4606-9524-eb30e673e449/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070209_10.JPG,,TRUE, +N1,60550,sortie-7b280848-689d-4606-9524-eb30e673e449,https://biolit.fr/sorties/sortie-7b280848-689d-4606-9524-eb30e673e449/,Phil,,4/15/2017 0:00,13.0000000,13.0:35,47.796861000000,-4.372861000000,,Penmarc'h - Finistère,49285,observation-7b280848-689d-4606-9524-eb30e673e449-2,https://biolit.fr/observations/observation-7b280848-689d-4606-9524-eb30e673e449-2/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1070210_1.JPG,,TRUE, +N1,60550,sortie-7b280848-689d-4606-9524-eb30e673e449,https://biolit.fr/sorties/sortie-7b280848-689d-4606-9524-eb30e673e449/,Phil,,4/15/2017 0:00,13.0000000,13.0:35,47.796861000000,-4.372861000000,,Penmarc'h - Finistère,49287,observation-7b280848-689d-4606-9524-eb30e673e449-3,https://biolit.fr/observations/observation-7b280848-689d-4606-9524-eb30e673e449-3/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/P1070212_2.JPG,,TRUE, +N1,60550,sortie-7b280848-689d-4606-9524-eb30e673e449,https://biolit.fr/sorties/sortie-7b280848-689d-4606-9524-eb30e673e449/,Phil,,4/15/2017 0:00,13.0000000,13.0:35,47.796861000000,-4.372861000000,,Penmarc'h - Finistère,49289,observation-7b280848-689d-4606-9524-eb30e673e449-4,https://biolit.fr/observations/observation-7b280848-689d-4606-9524-eb30e673e449-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070213_0.JPG,,FALSE, +N1,60550,sortie-7b280848-689d-4606-9524-eb30e673e449,https://biolit.fr/sorties/sortie-7b280848-689d-4606-9524-eb30e673e449/,Phil,,4/15/2017 0:00,13.0000000,13.0:35,47.796861000000,-4.372861000000,,Penmarc'h - Finistère,49291,observation-7b280848-689d-4606-9524-eb30e673e449-5,https://biolit.fr/observations/observation-7b280848-689d-4606-9524-eb30e673e449-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070214_0.JPG,,FALSE, +N1,60550,sortie-7b280848-689d-4606-9524-eb30e673e449,https://biolit.fr/sorties/sortie-7b280848-689d-4606-9524-eb30e673e449/,Phil,,4/15/2017 0:00,13.0000000,13.0:35,47.796861000000,-4.372861000000,,Penmarc'h - Finistère,49293,observation-7b280848-689d-4606-9524-eb30e673e449-6,https://biolit.fr/observations/observation-7b280848-689d-4606-9524-eb30e673e449-6/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070216_1.JPG,,TRUE, +N1,60551,sortie-7ba1a641-a236-4b73-968d-7e38b9595148,https://biolit.fr/sorties/sortie-7ba1a641-a236-4b73-968d-7e38b9595148/,louise,,4/14/2017 0:00,16.0000000,16.0:45,48.653721000000,-2.023969000000,,saint malo,49295,observation-7ba1a641-a236-4b73-968d-7e38b9595148,https://biolit.fr/observations/observation-7ba1a641-a236-4b73-968d-7e38b9595148/,Solieria chordalis,Cordes de Solier,,https://biolit.fr/wp-content/uploads/2023/07/18015846_10211396615102884_798805456_o.jpg,,TRUE, +N1,60551,sortie-7ba1a641-a236-4b73-968d-7e38b9595148,https://biolit.fr/sorties/sortie-7ba1a641-a236-4b73-968d-7e38b9595148/,louise,,4/14/2017 0:00,16.0000000,16.0:45,48.653721000000,-2.023969000000,,saint malo,49297,observation-7ba1a641-a236-4b73-968d-7e38b9595148-2,https://biolit.fr/observations/observation-7ba1a641-a236-4b73-968d-7e38b9595148-2/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/18053423_10211396613142835_1933148204_o.jpg,,TRUE, +N1,60551,sortie-7ba1a641-a236-4b73-968d-7e38b9595148,https://biolit.fr/sorties/sortie-7ba1a641-a236-4b73-968d-7e38b9595148/,louise,,4/14/2017 0:00,16.0000000,16.0:45,48.653721000000,-2.023969000000,,saint malo,49299,observation-7ba1a641-a236-4b73-968d-7e38b9595148-3,https://biolit.fr/observations/observation-7ba1a641-a236-4b73-968d-7e38b9595148-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/18049836_10211396612382816_1622129342_o.jpg,,TRUE, +N1,60551,sortie-7ba1a641-a236-4b73-968d-7e38b9595148,https://biolit.fr/sorties/sortie-7ba1a641-a236-4b73-968d-7e38b9595148/,louise,,4/14/2017 0:00,16.0000000,16.0:45,48.653721000000,-2.023969000000,,saint malo,49301,observation-7ba1a641-a236-4b73-968d-7e38b9595148-4,https://biolit.fr/observations/observation-7ba1a641-a236-4b73-968d-7e38b9595148-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/18052414_10211396615502894_1470952342_o.jpg,,TRUE, +N1,60551,sortie-7ba1a641-a236-4b73-968d-7e38b9595148,https://biolit.fr/sorties/sortie-7ba1a641-a236-4b73-968d-7e38b9595148/,louise,,4/14/2017 0:00,16.0000000,16.0:45,48.653721000000,-2.023969000000,,saint malo,49303,observation-7ba1a641-a236-4b73-968d-7e38b9595148-5,https://biolit.fr/observations/observation-7ba1a641-a236-4b73-968d-7e38b9595148-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/18042754_10211396613582846_538751543_o.jpg,,TRUE, +N1,60551,sortie-7ba1a641-a236-4b73-968d-7e38b9595148,https://biolit.fr/sorties/sortie-7ba1a641-a236-4b73-968d-7e38b9595148/,louise,,4/14/2017 0:00,16.0000000,16.0:45,48.653721000000,-2.023969000000,,saint malo,49305,observation-7ba1a641-a236-4b73-968d-7e38b9595148-6,https://biolit.fr/observations/observation-7ba1a641-a236-4b73-968d-7e38b9595148-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/18052257_10211396613382841_1260184484_o.jpg,,FALSE, +N1,60551,sortie-7ba1a641-a236-4b73-968d-7e38b9595148,https://biolit.fr/sorties/sortie-7ba1a641-a236-4b73-968d-7e38b9595148/,louise,,4/14/2017 0:00,16.0000000,16.0:45,48.653721000000,-2.023969000000,,saint malo,49307,observation-7ba1a641-a236-4b73-968d-7e38b9595148-7,https://biolit.fr/observations/observation-7ba1a641-a236-4b73-968d-7e38b9595148-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Numérisation_20170422.jpg,,FALSE, +N1,60551,sortie-7ba1a641-a236-4b73-968d-7e38b9595148,https://biolit.fr/sorties/sortie-7ba1a641-a236-4b73-968d-7e38b9595148/,louise,,4/14/2017 0:00,16.0000000,16.0:45,48.653721000000,-2.023969000000,,saint malo,49309,observation-7ba1a641-a236-4b73-968d-7e38b9595148-8,https://biolit.fr/observations/observation-7ba1a641-a236-4b73-968d-7e38b9595148-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Numérisation_20170422 (2).jpg,,FALSE, +N1,60552,sortie-e0415090-fcd5-4cbe-8fbe-adb109801ae5,https://biolit.fr/sorties/sortie-e0415090-fcd5-4cbe-8fbe-adb109801ae5/,Phil,,4/15/2017 0:00,17.0000000,17.0:15,48.207832000000,-4.374447000000,,Telgruc sur Mer - Finistère,49311,observation-e0415090-fcd5-4cbe-8fbe-adb109801ae5,https://biolit.fr/observations/observation-e0415090-fcd5-4cbe-8fbe-adb109801ae5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070320.JPG,,FALSE, +N1,60552,sortie-e0415090-fcd5-4cbe-8fbe-adb109801ae5,https://biolit.fr/sorties/sortie-e0415090-fcd5-4cbe-8fbe-adb109801ae5/,Phil,,4/15/2017 0:00,17.0000000,17.0:15,48.207832000000,-4.374447000000,,Telgruc sur Mer - Finistère,49313,observation-e0415090-fcd5-4cbe-8fbe-adb109801ae5-2,https://biolit.fr/observations/observation-e0415090-fcd5-4cbe-8fbe-adb109801ae5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070322.JPG,,FALSE, +N1,60552,sortie-e0415090-fcd5-4cbe-8fbe-adb109801ae5,https://biolit.fr/sorties/sortie-e0415090-fcd5-4cbe-8fbe-adb109801ae5/,Phil,,4/15/2017 0:00,17.0000000,17.0:15,48.207832000000,-4.374447000000,,Telgruc sur Mer - Finistère,49315,observation-e0415090-fcd5-4cbe-8fbe-adb109801ae5-3,https://biolit.fr/observations/observation-e0415090-fcd5-4cbe-8fbe-adb109801ae5-3/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1070326.JPG,,TRUE, +N1,60552,sortie-e0415090-fcd5-4cbe-8fbe-adb109801ae5,https://biolit.fr/sorties/sortie-e0415090-fcd5-4cbe-8fbe-adb109801ae5/,Phil,,4/15/2017 0:00,17.0000000,17.0:15,48.207832000000,-4.374447000000,,Telgruc sur Mer - Finistère,49317,observation-e0415090-fcd5-4cbe-8fbe-adb109801ae5-4,https://biolit.fr/observations/observation-e0415090-fcd5-4cbe-8fbe-adb109801ae5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070310.JPG,,FALSE, +N1,60552,sortie-e0415090-fcd5-4cbe-8fbe-adb109801ae5,https://biolit.fr/sorties/sortie-e0415090-fcd5-4cbe-8fbe-adb109801ae5/,Phil,,4/15/2017 0:00,17.0000000,17.0:15,48.207832000000,-4.374447000000,,Telgruc sur Mer - Finistère,49319,observation-e0415090-fcd5-4cbe-8fbe-adb109801ae5-5,https://biolit.fr/observations/observation-e0415090-fcd5-4cbe-8fbe-adb109801ae5-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070311.JPG,,FALSE, +N1,60553,sortie-8f6cacd9-1905-4002-9876-2021dcbdd648,https://biolit.fr/sorties/sortie-8f6cacd9-1905-4002-9876-2021dcbdd648/,Phil,,4/16/2017 0:00,12.0000000,12.0:25,47.896207000000,-3.975162000000,,La Forêt-Fouesnant - Finistère,49321,observation-8f6cacd9-1905-4002-9876-2021dcbdd648,https://biolit.fr/observations/observation-8f6cacd9-1905-4002-9876-2021dcbdd648/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170416_122236.jpg,,FALSE, +N1,60553,sortie-8f6cacd9-1905-4002-9876-2021dcbdd648,https://biolit.fr/sorties/sortie-8f6cacd9-1905-4002-9876-2021dcbdd648/,Phil,,4/16/2017 0:00,12.0000000,12.0:25,47.896207000000,-3.975162000000,,La Forêt-Fouesnant - Finistère,49323,observation-8f6cacd9-1905-4002-9876-2021dcbdd648-2,https://biolit.fr/observations/observation-8f6cacd9-1905-4002-9876-2021dcbdd648-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170416_122309.jpg,,FALSE, +N1,60553,sortie-8f6cacd9-1905-4002-9876-2021dcbdd648,https://biolit.fr/sorties/sortie-8f6cacd9-1905-4002-9876-2021dcbdd648/,Phil,,4/16/2017 0:00,12.0000000,12.0:25,47.896207000000,-3.975162000000,,La Forêt-Fouesnant - Finistère,49325,observation-8f6cacd9-1905-4002-9876-2021dcbdd648-3,https://biolit.fr/observations/observation-8f6cacd9-1905-4002-9876-2021dcbdd648-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170416_122323.jpg,,FALSE, +N1,60554,sortie-e1ee037a-c8b4-462c-9cce-bb45bbcbd608,https://biolit.fr/sorties/sortie-e1ee037a-c8b4-462c-9cce-bb45bbcbd608/,Phil,,4/18/2017 0:00,10.0000000,10.0:35,47.797889000000,-4.211778000000,,Lesconil - Finistère,49327,observation-e1ee037a-c8b4-462c-9cce-bb45bbcbd608,https://biolit.fr/observations/observation-e1ee037a-c8b4-462c-9cce-bb45bbcbd608/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/20170418_103626.jpg,,TRUE, +N1,60554,sortie-e1ee037a-c8b4-462c-9cce-bb45bbcbd608,https://biolit.fr/sorties/sortie-e1ee037a-c8b4-462c-9cce-bb45bbcbd608/,Phil,,4/18/2017 0:00,10.0000000,10.0:35,47.797889000000,-4.211778000000,,Lesconil - Finistère,49329,observation-e1ee037a-c8b4-462c-9cce-bb45bbcbd608-2,https://biolit.fr/observations/observation-e1ee037a-c8b4-462c-9cce-bb45bbcbd608-2/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/20170418_103542.jpg,,TRUE, +N1,60554,sortie-e1ee037a-c8b4-462c-9cce-bb45bbcbd608,https://biolit.fr/sorties/sortie-e1ee037a-c8b4-462c-9cce-bb45bbcbd608/,Phil,,4/18/2017 0:00,10.0000000,10.0:35,47.797889000000,-4.211778000000,,Lesconil - Finistère,49331,observation-e1ee037a-c8b4-462c-9cce-bb45bbcbd608-3,https://biolit.fr/observations/observation-e1ee037a-c8b4-462c-9cce-bb45bbcbd608-3/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/20170418_103310.jpg,,TRUE, +N1,60554,sortie-e1ee037a-c8b4-462c-9cce-bb45bbcbd608,https://biolit.fr/sorties/sortie-e1ee037a-c8b4-462c-9cce-bb45bbcbd608/,Phil,,4/18/2017 0:00,10.0000000,10.0:35,47.797889000000,-4.211778000000,,Lesconil - Finistère,49333,observation-e1ee037a-c8b4-462c-9cce-bb45bbcbd608-4,https://biolit.fr/observations/observation-e1ee037a-c8b4-462c-9cce-bb45bbcbd608-4/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/20170418_103347.jpg,,TRUE, +N1,60555,sortie-b55bfee1-bed8-4afa-8b44-7b85258b31d4,https://biolit.fr/sorties/sortie-b55bfee1-bed8-4afa-8b44-7b85258b31d4/,Phil,,3/13/2017 0:00,13.0000000,14.000005,47.857463000000,-3.918857000000,,Concarneau - Finistère,49335,observation-b55bfee1-bed8-4afa-8b44-7b85258b31d4,https://biolit.fr/observations/observation-b55bfee1-bed8-4afa-8b44-7b85258b31d4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060691.JPG,,FALSE, +N1,60555,sortie-b55bfee1-bed8-4afa-8b44-7b85258b31d4,https://biolit.fr/sorties/sortie-b55bfee1-bed8-4afa-8b44-7b85258b31d4/,Phil,,3/13/2017 0:00,13.0000000,14.000005,47.857463000000,-3.918857000000,,Concarneau - Finistère,49337,observation-b55bfee1-bed8-4afa-8b44-7b85258b31d4-2,https://biolit.fr/observations/observation-b55bfee1-bed8-4afa-8b44-7b85258b31d4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060692_0.JPG,,FALSE, +N1,60556,sortie-57693e4f-df8e-4b99-922c-eee96a614c8a,https://biolit.fr/sorties/sortie-57693e4f-df8e-4b99-922c-eee96a614c8a/,agoutroue,,4/15/2017 0:00,11.0000000,12.0000000,43.274048000000,5.304191000000,,Ile de Pomègue (archipel du Frioul),49339,observation-57693e4f-df8e-4b99-922c-eee96a614c8a,https://biolit.fr/observations/observation-57693e4f-df8e-4b99-922c-eee96a614c8a/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2882[1]-scaled.jpg,,FALSE, +N1,60556,sortie-57693e4f-df8e-4b99-922c-eee96a614c8a,https://biolit.fr/sorties/sortie-57693e4f-df8e-4b99-922c-eee96a614c8a/,agoutroue,,4/15/2017 0:00,11.0000000,12.0000000,43.274048000000,5.304191000000,,Ile de Pomègue (archipel du Frioul),49341,observation-57693e4f-df8e-4b99-922c-eee96a614c8a-2,https://biolit.fr/observations/observation-57693e4f-df8e-4b99-922c-eee96a614c8a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2884[1]-scaled.jpg,,FALSE, +N1,60556,sortie-57693e4f-df8e-4b99-922c-eee96a614c8a,https://biolit.fr/sorties/sortie-57693e4f-df8e-4b99-922c-eee96a614c8a/,agoutroue,,4/15/2017 0:00,11.0000000,12.0000000,43.274048000000,5.304191000000,,Ile de Pomègue (archipel du Frioul),49343,observation-57693e4f-df8e-4b99-922c-eee96a614c8a-3,https://biolit.fr/observations/observation-57693e4f-df8e-4b99-922c-eee96a614c8a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2887[1]-scaled.jpg,,FALSE, +N1,60556,sortie-57693e4f-df8e-4b99-922c-eee96a614c8a,https://biolit.fr/sorties/sortie-57693e4f-df8e-4b99-922c-eee96a614c8a/,agoutroue,,4/15/2017 0:00,11.0000000,12.0000000,43.274048000000,5.304191000000,,Ile de Pomègue (archipel du Frioul),49345,observation-57693e4f-df8e-4b99-922c-eee96a614c8a-4,https://biolit.fr/observations/observation-57693e4f-df8e-4b99-922c-eee96a614c8a-4/,Euphorbia pithyusa,Euphorbe des Baléares,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2888[1]-scaled.jpg,,TRUE, +N1,60556,sortie-57693e4f-df8e-4b99-922c-eee96a614c8a,https://biolit.fr/sorties/sortie-57693e4f-df8e-4b99-922c-eee96a614c8a/,agoutroue,,4/15/2017 0:00,11.0000000,12.0000000,43.274048000000,5.304191000000,,Ile de Pomègue (archipel du Frioul),49347,observation-57693e4f-df8e-4b99-922c-eee96a614c8a-5,https://biolit.fr/observations/observation-57693e4f-df8e-4b99-922c-eee96a614c8a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2897[1]-scaled.jpg,,FALSE, +N1,60556,sortie-57693e4f-df8e-4b99-922c-eee96a614c8a,https://biolit.fr/sorties/sortie-57693e4f-df8e-4b99-922c-eee96a614c8a/,agoutroue,,4/15/2017 0:00,11.0000000,12.0000000,43.274048000000,5.304191000000,,Ile de Pomègue (archipel du Frioul),49349,observation-57693e4f-df8e-4b99-922c-eee96a614c8a-6,https://biolit.fr/observations/observation-57693e4f-df8e-4b99-922c-eee96a614c8a-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2898[1]-scaled.jpg,,FALSE, +N1,60557,sortie-47e750f4-585b-4f10-8163-62052cd5b3e5,https://biolit.fr/sorties/sortie-47e750f4-585b-4f10-8163-62052cd5b3e5/,Phil,,4/14/2017 0:00,10.0:45,11.0000000,48.865276000000,-2.997456000000,,Île-de-Bréhat - Côtes-d'Armor,49351,observation-47e750f4-585b-4f10-8163-62052cd5b3e5,https://biolit.fr/observations/observation-47e750f4-585b-4f10-8163-62052cd5b3e5/,Phalacrocorax aristotelis,Cormoran huppé,,https://biolit.fr/wp-content/uploads/2023/07/P1060913.JPG,,TRUE, +N1,60557,sortie-47e750f4-585b-4f10-8163-62052cd5b3e5,https://biolit.fr/sorties/sortie-47e750f4-585b-4f10-8163-62052cd5b3e5/,Phil,,4/14/2017 0:00,10.0:45,11.0000000,48.865276000000,-2.997456000000,,Île-de-Bréhat - Côtes-d'Armor,49353,observation-47e750f4-585b-4f10-8163-62052cd5b3e5-2,https://biolit.fr/observations/observation-47e750f4-585b-4f10-8163-62052cd5b3e5-2/,Phalacrocorax aristotelis,Cormoran huppé,,https://biolit.fr/wp-content/uploads/2023/07/P1060906.JPG,,TRUE, +N1,60557,sortie-47e750f4-585b-4f10-8163-62052cd5b3e5,https://biolit.fr/sorties/sortie-47e750f4-585b-4f10-8163-62052cd5b3e5/,Phil,,4/14/2017 0:00,10.0:45,11.0000000,48.865276000000,-2.997456000000,,Île-de-Bréhat - Côtes-d'Armor,49355,observation-47e750f4-585b-4f10-8163-62052cd5b3e5-3,https://biolit.fr/observations/observation-47e750f4-585b-4f10-8163-62052cd5b3e5-3/,Phalacrocorax aristotelis,Cormoran huppé,,https://biolit.fr/wp-content/uploads/2023/07/P1060907.JPG,,TRUE, +N1,60557,sortie-47e750f4-585b-4f10-8163-62052cd5b3e5,https://biolit.fr/sorties/sortie-47e750f4-585b-4f10-8163-62052cd5b3e5/,Phil,,4/14/2017 0:00,10.0:45,11.0000000,48.865276000000,-2.997456000000,,Île-de-Bréhat - Côtes-d'Armor,49357,observation-47e750f4-585b-4f10-8163-62052cd5b3e5-4,https://biolit.fr/observations/observation-47e750f4-585b-4f10-8163-62052cd5b3e5-4/,Phalacrocorax aristotelis,Cormoran huppé,,https://biolit.fr/wp-content/uploads/2023/07/P1060910.JPG,,TRUE, +N1,60557,sortie-47e750f4-585b-4f10-8163-62052cd5b3e5,https://biolit.fr/sorties/sortie-47e750f4-585b-4f10-8163-62052cd5b3e5/,Phil,,4/14/2017 0:00,10.0:45,11.0000000,48.865276000000,-2.997456000000,,Île-de-Bréhat - Côtes-d'Armor,49359,observation-47e750f4-585b-4f10-8163-62052cd5b3e5-5,https://biolit.fr/observations/observation-47e750f4-585b-4f10-8163-62052cd5b3e5-5/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/P1060897.JPG,,TRUE, +N1,60558,sortie-4be67d00-c636-429b-9c3b-aa6f86b1f4e7,https://biolit.fr/sorties/sortie-4be67d00-c636-429b-9c3b-aa6f86b1f4e7/,Phil,,4/15/2017 0:00,14.000005,14.0000000,47.799378000000,-4.373794000000,,Penmarc'h - Finistère,49361,observation-4be67d00-c636-429b-9c3b-aa6f86b1f4e7,https://biolit.fr/observations/observation-4be67d00-c636-429b-9c3b-aa6f86b1f4e7/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/P1070271.JPG,,TRUE, +N1,60558,sortie-4be67d00-c636-429b-9c3b-aa6f86b1f4e7,https://biolit.fr/sorties/sortie-4be67d00-c636-429b-9c3b-aa6f86b1f4e7/,Phil,,4/15/2017 0:00,14.000005,14.0000000,47.799378000000,-4.373794000000,,Penmarc'h - Finistère,49363,observation-4be67d00-c636-429b-9c3b-aa6f86b1f4e7-2,https://biolit.fr/observations/observation-4be67d00-c636-429b-9c3b-aa6f86b1f4e7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070270.JPG,,FALSE, +N1,60558,sortie-4be67d00-c636-429b-9c3b-aa6f86b1f4e7,https://biolit.fr/sorties/sortie-4be67d00-c636-429b-9c3b-aa6f86b1f4e7/,Phil,,4/15/2017 0:00,14.000005,14.0000000,47.799378000000,-4.373794000000,,Penmarc'h - Finistère,49365,observation-4be67d00-c636-429b-9c3b-aa6f86b1f4e7-3,https://biolit.fr/observations/observation-4be67d00-c636-429b-9c3b-aa6f86b1f4e7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070267.JPG,,FALSE, +N1,60558,sortie-4be67d00-c636-429b-9c3b-aa6f86b1f4e7,https://biolit.fr/sorties/sortie-4be67d00-c636-429b-9c3b-aa6f86b1f4e7/,Phil,,4/15/2017 0:00,14.000005,14.0000000,47.799378000000,-4.373794000000,,Penmarc'h - Finistère,49367,observation-4be67d00-c636-429b-9c3b-aa6f86b1f4e7-4,https://biolit.fr/observations/observation-4be67d00-c636-429b-9c3b-aa6f86b1f4e7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070276.JPG,,FALSE, +N1,60559,sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b,https://biolit.fr/sorties/sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b/,azelie,,4/13/2017 0:00,16.0:55,17.0:25,49.707607000000,0.20014000000,,Étretat,49369,observation-7297a360-4164-4cb2-a9c3-b2e08d79672b,https://biolit.fr/observations/observation-7297a360-4164-4cb2-a9c3-b2e08d79672b/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4066.jpg,,TRUE, +N1,60559,sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b,https://biolit.fr/sorties/sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b/,azelie,,4/13/2017 0:00,16.0:55,17.0:25,49.707607000000,0.20014000000,,Étretat,49371,observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-2,https://biolit.fr/observations/observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4068-scaled.jpg,,FALSE, +N1,60559,sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b,https://biolit.fr/sorties/sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b/,azelie,,4/13/2017 0:00,16.0:55,17.0:25,49.707607000000,0.20014000000,,Étretat,49373,observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-3,https://biolit.fr/observations/observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-3/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4070.jpg,,TRUE, +N1,60559,sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b,https://biolit.fr/sorties/sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b/,azelie,,4/13/2017 0:00,16.0:55,17.0:25,49.707607000000,0.20014000000,,Étretat,49375,observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-4,https://biolit.fr/observations/observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4073-scaled.jpg,,FALSE, +N1,60559,sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b,https://biolit.fr/sorties/sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b/,azelie,,4/13/2017 0:00,16.0:55,17.0:25,49.707607000000,0.20014000000,,Étretat,49377,observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-5,https://biolit.fr/observations/observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-5/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4079-scaled.jpg,,TRUE, +N1,60559,sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b,https://biolit.fr/sorties/sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b/,azelie,,4/13/2017 0:00,16.0:55,17.0:25,49.707607000000,0.20014000000,,Étretat,49379,observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-6,https://biolit.fr/observations/observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-6/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4083-scaled.jpg,,TRUE, +N1,60559,sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b,https://biolit.fr/sorties/sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b/,azelie,,4/13/2017 0:00,16.0:55,17.0:25,49.707607000000,0.20014000000,,Étretat,49381,observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-7,https://biolit.fr/observations/observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-7/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4084-scaled.jpg,,TRUE, +N1,60559,sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b,https://biolit.fr/sorties/sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b/,azelie,,4/13/2017 0:00,16.0:55,17.0:25,49.707607000000,0.20014000000,,Étretat,49383,observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-8,https://biolit.fr/observations/observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-8/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_4088-scaled.jpg,,TRUE, +N1,60559,sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b,https://biolit.fr/sorties/sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b/,azelie,,4/13/2017 0:00,16.0:55,17.0:25,49.707607000000,0.20014000000,,Étretat,49385,observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-9,https://biolit.fr/observations/observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4090-scaled.jpg,,FALSE, +N1,60559,sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b,https://biolit.fr/sorties/sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b/,azelie,,4/13/2017 0:00,16.0:55,17.0:25,49.707607000000,0.20014000000,,Étretat,49387,observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-10,https://biolit.fr/observations/observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4096-rotated.jpg,,FALSE, +N1,60559,sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b,https://biolit.fr/sorties/sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b/,azelie,,4/13/2017 0:00,16.0:55,17.0:25,49.707607000000,0.20014000000,,Étretat,49389,observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-11,https://biolit.fr/observations/observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4094-rotated.jpg,,FALSE, +N1,60559,sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b,https://biolit.fr/sorties/sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b/,azelie,,4/13/2017 0:00,16.0:55,17.0:25,49.707607000000,0.20014000000,,Étretat,49391,observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-12,https://biolit.fr/observations/observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2127-scaled.jpg,,FALSE, +N1,60559,sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b,https://biolit.fr/sorties/sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b/,azelie,,4/13/2017 0:00,16.0:55,17.0:25,49.707607000000,0.20014000000,,Étretat,49393,observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-13,https://biolit.fr/observations/observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2125-scaled.jpg,,FALSE, +N1,60560,sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a,https://biolit.fr/sorties/sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.254824000000,5.374085000000,,plage de Borely,49395,observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a,https://biolit.fr/observations/observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0032.jpg,,FALSE, +N1,60560,sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a,https://biolit.fr/sorties/sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.254824000000,5.374085000000,,plage de Borely,49396,observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-2,https://biolit.fr/observations/observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0033_0.JPG,,FALSE, +N1,60560,sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a,https://biolit.fr/sorties/sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.254824000000,5.374085000000,,plage de Borely,49398,observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-3,https://biolit.fr/observations/observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0034.JPG,,FALSE, +N1,60560,sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a,https://biolit.fr/sorties/sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.254824000000,5.374085000000,,plage de Borely,49400,observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-4,https://biolit.fr/observations/observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0035_0-rotated.jpg,,FALSE, +N1,60560,sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a,https://biolit.fr/sorties/sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.254824000000,5.374085000000,,plage de Borely,49402,observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-5,https://biolit.fr/observations/observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0048_0.JPG,,FALSE, +N1,60560,sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a,https://biolit.fr/sorties/sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.254824000000,5.374085000000,,plage de Borely,49404,observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-6,https://biolit.fr/observations/observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0050_1.JPG,,FALSE, +N1,60560,sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a,https://biolit.fr/sorties/sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.254824000000,5.374085000000,,plage de Borely,49406,observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-7,https://biolit.fr/observations/observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-7/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/DSC_0053a.jpg,,TRUE, +N1,60560,sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a,https://biolit.fr/sorties/sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.254824000000,5.374085000000,,plage de Borely,49408,observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-8,https://biolit.fr/observations/observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0053b.jpg,,FALSE, +N1,60560,sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a,https://biolit.fr/sorties/sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.254824000000,5.374085000000,,plage de Borely,49410,observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-9,https://biolit.fr/observations/observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0054_0.JPG,,FALSE, +N1,60560,sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a,https://biolit.fr/sorties/sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.254824000000,5.374085000000,,plage de Borely,49412,observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-10,https://biolit.fr/observations/observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0061_1.JPG,,FALSE, +N1,60560,sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a,https://biolit.fr/sorties/sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.254824000000,5.374085000000,,plage de Borely,49414,observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-11,https://biolit.fr/observations/observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0062_0.JPG,,FALSE, +N1,60560,sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a,https://biolit.fr/sorties/sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.254824000000,5.374085000000,,plage de Borely,49416,observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-12,https://biolit.fr/observations/observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-12/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0065_0.JPG,,TRUE, +N1,60561,sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405,https://biolit.fr/sorties/sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405/,Mathias,,4/19/2017 0:00,14.0000000,15.0000000,43.253559000000,5.374143000000,,Plage de Borély,49418,observation-f97aef90-3718-4fc8-bcbf-ba6255c14405,https://biolit.fr/observations/observation-f97aef90-3718-4fc8-bcbf-ba6255c14405/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0210_0-scaled.jpg,,TRUE, +N1,60561,sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405,https://biolit.fr/sorties/sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405/,Mathias,,4/19/2017 0:00,14.0000000,15.0000000,43.253559000000,5.374143000000,,Plage de Borély,49420,observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-2,https://biolit.fr/observations/observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0216-scaled.jpg,,FALSE, +N1,60561,sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405,https://biolit.fr/sorties/sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405/,Mathias,,4/19/2017 0:00,14.0000000,15.0000000,43.253559000000,5.374143000000,,Plage de Borély,49422,observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-3,https://biolit.fr/observations/observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-3/,Nemalion elminthoides,Némalion vermiforme,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0222-scaled.jpg,,TRUE, +N1,60561,sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405,https://biolit.fr/sorties/sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405/,Mathias,,4/19/2017 0:00,14.0000000,15.0000000,43.253559000000,5.374143000000,,Plage de Borély,49424,observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-4,https://biolit.fr/observations/observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0226-scaled.jpg,,FALSE, +N1,60561,sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405,https://biolit.fr/sorties/sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405/,Mathias,,4/19/2017 0:00,14.0000000,15.0000000,43.253559000000,5.374143000000,,Plage de Borély,49426,observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-5,https://biolit.fr/observations/observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0227-scaled.jpg,,FALSE, +N1,60561,sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405,https://biolit.fr/sorties/sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405/,Mathias,,4/19/2017 0:00,14.0000000,15.0000000,43.253559000000,5.374143000000,,Plage de Borély,49428,observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-6,https://biolit.fr/observations/observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0228-scaled.jpg,,FALSE, +N1,60561,sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405,https://biolit.fr/sorties/sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405/,Mathias,,4/19/2017 0:00,14.0000000,15.0000000,43.253559000000,5.374143000000,,Plage de Borély,49430,observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-7,https://biolit.fr/observations/observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0230-scaled.jpg,,FALSE, +N1,60561,sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405,https://biolit.fr/sorties/sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405/,Mathias,,4/19/2017 0:00,14.0000000,15.0000000,43.253559000000,5.374143000000,,Plage de Borély,49432,observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-8,https://biolit.fr/observations/observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-8/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0232-scaled.jpg,,TRUE, +N1,60561,sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405,https://biolit.fr/sorties/sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405/,Mathias,,4/19/2017 0:00,14.0000000,15.0000000,43.253559000000,5.374143000000,,Plage de Borély,49434,observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-9,https://biolit.fr/observations/observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-9/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0234-scaled.jpg,,TRUE, +N1,60561,sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405,https://biolit.fr/sorties/sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405/,Mathias,,4/19/2017 0:00,14.0000000,15.0000000,43.253559000000,5.374143000000,,Plage de Borély,49436,observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-10,https://biolit.fr/observations/observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-10/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0235-scaled.jpg,,TRUE, +N1,60562,sortie-8a20187f-3b22-468a-981f-8c57aec9dd6d,https://biolit.fr/sorties/sortie-8a20187f-3b22-468a-981f-8c57aec9dd6d/,RIEM,,4/15/2017 0:00,14.0000000,15.0000000,47.542525000000,-2.90290700000,,Plage de Kercouedo commune d'Arzon ,49438,observation-8a20187f-3b22-468a-981f-8c57aec9dd6d,https://biolit.fr/observations/observation-8a20187f-3b22-468a-981f-8c57aec9dd6d/,,,,https://biolit.fr/wp-content/uploads/2023/07/2_1.jpg,,FALSE, +N1,60562,sortie-8a20187f-3b22-468a-981f-8c57aec9dd6d,https://biolit.fr/sorties/sortie-8a20187f-3b22-468a-981f-8c57aec9dd6d/,RIEM,,4/15/2017 0:00,14.0000000,15.0000000,47.542525000000,-2.90290700000,,Plage de Kercouedo commune d'Arzon ,49440,observation-8a20187f-3b22-468a-981f-8c57aec9dd6d-2,https://biolit.fr/observations/observation-8a20187f-3b22-468a-981f-8c57aec9dd6d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/3_1.jpg,,FALSE, +N1,60562,sortie-8a20187f-3b22-468a-981f-8c57aec9dd6d,https://biolit.fr/sorties/sortie-8a20187f-3b22-468a-981f-8c57aec9dd6d/,RIEM,,4/15/2017 0:00,14.0000000,15.0000000,47.542525000000,-2.90290700000,,Plage de Kercouedo commune d'Arzon ,49442,observation-8a20187f-3b22-468a-981f-8c57aec9dd6d-3,https://biolit.fr/observations/observation-8a20187f-3b22-468a-981f-8c57aec9dd6d-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/4_1.jpg,,TRUE, +N1,60562,sortie-8a20187f-3b22-468a-981f-8c57aec9dd6d,https://biolit.fr/sorties/sortie-8a20187f-3b22-468a-981f-8c57aec9dd6d/,RIEM,,4/15/2017 0:00,14.0000000,15.0000000,47.542525000000,-2.90290700000,,Plage de Kercouedo commune d'Arzon ,49444,observation-8a20187f-3b22-468a-981f-8c57aec9dd6d-4,https://biolit.fr/observations/observation-8a20187f-3b22-468a-981f-8c57aec9dd6d-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/5_0-scaled.jpg,,TRUE, +N1,60563,sortie-9b6f050b-8fca-42b9-9d26-e58934c499a3,https://biolit.fr/sorties/sortie-9b6f050b-8fca-42b9-9d26-e58934c499a3/,RIEM,,4/15/2017 0:00,10.0000000,11.0000000,47.5377050000,-2.887297000000,,PLAGE DU FOGEO (Arzon),49445,observation-9b6f050b-8fca-42b9-9d26-e58934c499a3,https://biolit.fr/observations/observation-9b6f050b-8fca-42b9-9d26-e58934c499a3/,,,,https://biolit.fr/wp-content/uploads/2023/07/meduse-scaled.jpg,,FALSE, +N1,60564,sortie-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098,https://biolit.fr/sorties/sortie-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098/,Phil,,4/15/2017 0:00,13.0:25,13.0000000,47.795099000000,-4.37318500000,,Penmarc'h - Finistère,49446,observation-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098,https://biolit.fr/observations/observation-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070207.JPG,,TRUE, +N1,60564,sortie-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098,https://biolit.fr/sorties/sortie-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098/,Phil,,4/15/2017 0:00,13.0:25,13.0000000,47.795099000000,-4.37318500000,,Penmarc'h - Finistère,49448,observation-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098-2,https://biolit.fr/observations/observation-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098-2/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070204.JPG,,TRUE, +N1,60564,sortie-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098,https://biolit.fr/sorties/sortie-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098/,Phil,,4/15/2017 0:00,13.0:25,13.0000000,47.795099000000,-4.37318500000,,Penmarc'h - Finistère,49450,observation-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098-3,https://biolit.fr/observations/observation-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070197.JPG,,FALSE, +N1,60564,sortie-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098,https://biolit.fr/sorties/sortie-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098/,Phil,,4/15/2017 0:00,13.0:25,13.0000000,47.795099000000,-4.37318500000,,Penmarc'h - Finistère,49452,observation-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098-4,https://biolit.fr/observations/observation-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098-4/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070199.JPG,,TRUE, +N1,60564,sortie-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098,https://biolit.fr/sorties/sortie-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098/,Phil,,4/15/2017 0:00,13.0:25,13.0000000,47.795099000000,-4.37318500000,,Penmarc'h - Finistère,49454,observation-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098-5,https://biolit.fr/observations/observation-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070202.JPG,,FALSE, +N1,60564,sortie-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098,https://biolit.fr/sorties/sortie-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098/,Phil,,4/15/2017 0:00,13.0:25,13.0000000,47.795099000000,-4.37318500000,,Penmarc'h - Finistère,49456,observation-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098-6,https://biolit.fr/observations/observation-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098-6/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070201.JPG,,TRUE, +N1,60565,sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b,https://biolit.fr/sorties/sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b/,azelie,,04/09/2017,16.0000000,16.0000000,49.737904000000,0.290220000000,,Vattetot-sur-mer,49458,observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b,https://biolit.fr/observations/observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2072-scaled.jpg,,FALSE, +N1,60565,sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b,https://biolit.fr/sorties/sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b/,azelie,,04/09/2017,16.0000000,16.0000000,49.737904000000,0.290220000000,,Vattetot-sur-mer,49460,observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-2,https://biolit.fr/observations/observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3989-scaled.jpg,,FALSE, +N1,60565,sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b,https://biolit.fr/sorties/sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b/,azelie,,04/09/2017,16.0000000,16.0000000,49.737904000000,0.290220000000,,Vattetot-sur-mer,49462,observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-3,https://biolit.fr/observations/observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3993-scaled.jpg,,FALSE, +N1,60565,sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b,https://biolit.fr/sorties/sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b/,azelie,,04/09/2017,16.0000000,16.0000000,49.737904000000,0.290220000000,,Vattetot-sur-mer,49464,observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-4,https://biolit.fr/observations/observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3997-scaled.jpg,,FALSE, +N1,60565,sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b,https://biolit.fr/sorties/sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b/,azelie,,04/09/2017,16.0000000,16.0000000,49.737904000000,0.290220000000,,Vattetot-sur-mer,49466,observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-5,https://biolit.fr/observations/observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3999-scaled.jpg,,FALSE, +N1,60565,sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b,https://biolit.fr/sorties/sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b/,azelie,,04/09/2017,16.0000000,16.0000000,49.737904000000,0.290220000000,,Vattetot-sur-mer,49468,observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-6,https://biolit.fr/observations/observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-6/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4002-scaled.jpg,,TRUE, +N1,60565,sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b,https://biolit.fr/sorties/sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b/,azelie,,04/09/2017,16.0000000,16.0000000,49.737904000000,0.290220000000,,Vattetot-sur-mer,49470,observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-7,https://biolit.fr/observations/observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4005-scaled.jpg,,FALSE, +N1,60565,sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b,https://biolit.fr/sorties/sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b/,azelie,,04/09/2017,16.0000000,16.0000000,49.737904000000,0.290220000000,,Vattetot-sur-mer,49472,observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-8,https://biolit.fr/observations/observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4007-scaled.jpg,,FALSE, +N1,60565,sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b,https://biolit.fr/sorties/sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b/,azelie,,04/09/2017,16.0000000,16.0000000,49.737904000000,0.290220000000,,Vattetot-sur-mer,49474,observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-9,https://biolit.fr/observations/observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4008-scaled.jpg,,FALSE, +N1,60565,sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b,https://biolit.fr/sorties/sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b/,azelie,,04/09/2017,16.0000000,16.0000000,49.737904000000,0.290220000000,,Vattetot-sur-mer,49476,observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-10,https://biolit.fr/observations/observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4016-scaled.jpg,,FALSE, +N1,60565,sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b,https://biolit.fr/sorties/sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b/,azelie,,04/09/2017,16.0000000,16.0000000,49.737904000000,0.290220000000,,Vattetot-sur-mer,49478,observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-11,https://biolit.fr/observations/observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4017-scaled.jpg,,FALSE, +N1,60565,sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b,https://biolit.fr/sorties/sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b/,azelie,,04/09/2017,16.0000000,16.0000000,49.737904000000,0.290220000000,,Vattetot-sur-mer,49480,observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-12,https://biolit.fr/observations/observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4018-scaled.jpg,,FALSE, +N1,60565,sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b,https://biolit.fr/sorties/sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b/,azelie,,04/09/2017,16.0000000,16.0000000,49.737904000000,0.290220000000,,Vattetot-sur-mer,49482,observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-13,https://biolit.fr/observations/observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2081-scaled.jpg,,FALSE, +N1,60566,sortie-963e4e70-54fa-4bce-8543-05d825c6d377,https://biolit.fr/sorties/sortie-963e4e70-54fa-4bce-8543-05d825c6d377/,Phil,,4/15/2017 0:00,10.0:35,10.0000000,47.83507800000,-4.176180000000,,Loctudy - Finistère,49484,observation-963e4e70-54fa-4bce-8543-05d825c6d377,https://biolit.fr/observations/observation-963e4e70-54fa-4bce-8543-05d825c6d377/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1070153.JPG,,TRUE, +N1,60566,sortie-963e4e70-54fa-4bce-8543-05d825c6d377,https://biolit.fr/sorties/sortie-963e4e70-54fa-4bce-8543-05d825c6d377/,Phil,,4/15/2017 0:00,10.0:35,10.0000000,47.83507800000,-4.176180000000,,Loctudy - Finistère,49486,observation-963e4e70-54fa-4bce-8543-05d825c6d377-2,https://biolit.fr/observations/observation-963e4e70-54fa-4bce-8543-05d825c6d377-2/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/P1070156.JPG,,TRUE, +N1,60566,sortie-963e4e70-54fa-4bce-8543-05d825c6d377,https://biolit.fr/sorties/sortie-963e4e70-54fa-4bce-8543-05d825c6d377/,Phil,,4/15/2017 0:00,10.0:35,10.0000000,47.83507800000,-4.176180000000,,Loctudy - Finistère,49488,observation-963e4e70-54fa-4bce-8543-05d825c6d377-3,https://biolit.fr/observations/observation-963e4e70-54fa-4bce-8543-05d825c6d377-3/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/P1070159.JPG,,TRUE, +N1,60566,sortie-963e4e70-54fa-4bce-8543-05d825c6d377,https://biolit.fr/sorties/sortie-963e4e70-54fa-4bce-8543-05d825c6d377/,Phil,,4/15/2017 0:00,10.0:35,10.0000000,47.83507800000,-4.176180000000,,Loctudy - Finistère,49490,observation-963e4e70-54fa-4bce-8543-05d825c6d377-4,https://biolit.fr/observations/observation-963e4e70-54fa-4bce-8543-05d825c6d377-4/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/P1070160.JPG,,TRUE, +N1,60566,sortie-963e4e70-54fa-4bce-8543-05d825c6d377,https://biolit.fr/sorties/sortie-963e4e70-54fa-4bce-8543-05d825c6d377/,Phil,,4/15/2017 0:00,10.0:35,10.0000000,47.83507800000,-4.176180000000,,Loctudy - Finistère,49492,observation-963e4e70-54fa-4bce-8543-05d825c6d377-5,https://biolit.fr/observations/observation-963e4e70-54fa-4bce-8543-05d825c6d377-5/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/P1070161.JPG,,TRUE, +N1,60566,sortie-963e4e70-54fa-4bce-8543-05d825c6d377,https://biolit.fr/sorties/sortie-963e4e70-54fa-4bce-8543-05d825c6d377/,Phil,,4/15/2017 0:00,10.0:35,10.0000000,47.83507800000,-4.176180000000,,Loctudy - Finistère,49494,observation-963e4e70-54fa-4bce-8543-05d825c6d377-6,https://biolit.fr/observations/observation-963e4e70-54fa-4bce-8543-05d825c6d377-6/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/P1070166.JPG,,TRUE, +N1,60567,sortie-a9280127-2e83-4768-a261-db58e0972a1d,https://biolit.fr/sorties/sortie-a9280127-2e83-4768-a261-db58e0972a1d/,Phil,,4/15/2017 0:00,16.0:55,17.0000000,48.208022000000,-4.373039000000,,Telgruc sur Mer - Finistère,49498,observation-a9280127-2e83-4768-a261-db58e0972a1d-2,https://biolit.fr/observations/observation-a9280127-2e83-4768-a261-db58e0972a1d-2/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/P1070297.JPG,,TRUE, +N1,60567,sortie-a9280127-2e83-4768-a261-db58e0972a1d,https://biolit.fr/sorties/sortie-a9280127-2e83-4768-a261-db58e0972a1d/,Phil,,4/15/2017 0:00,16.0:55,17.0000000,48.208022000000,-4.373039000000,,Telgruc sur Mer - Finistère,49502,observation-a9280127-2e83-4768-a261-db58e0972a1d-4,https://biolit.fr/observations/observation-a9280127-2e83-4768-a261-db58e0972a1d-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070302.JPG,,TRUE, +N1,60567,sortie-a9280127-2e83-4768-a261-db58e0972a1d,https://biolit.fr/sorties/sortie-a9280127-2e83-4768-a261-db58e0972a1d/,Phil,,4/15/2017 0:00,16.0:55,17.0000000,48.208022000000,-4.373039000000,,Telgruc sur Mer - Finistère,49504,observation-a9280127-2e83-4768-a261-db58e0972a1d-5,https://biolit.fr/observations/observation-a9280127-2e83-4768-a261-db58e0972a1d-5/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070307.JPG,,TRUE, +N1,60568,sortie-d1604b1a-0c22-433e-a6f6-574951aa9b02,https://biolit.fr/sorties/sortie-d1604b1a-0c22-433e-a6f6-574951aa9b02/,RIEM,,04/06/2017,14.0000000,14.0000000,51.050435000000,2.393383000000,,Plage de Malo les bains ,49506,observation-d1604b1a-0c22-433e-a6f6-574951aa9b02,https://biolit.fr/observations/observation-d1604b1a-0c22-433e-a6f6-574951aa9b02/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170406_2_0.jpg,,FALSE, +N1,60568,sortie-d1604b1a-0c22-433e-a6f6-574951aa9b02,https://biolit.fr/sorties/sortie-d1604b1a-0c22-433e-a6f6-574951aa9b02/,RIEM,,04/06/2017,14.0000000,14.0000000,51.050435000000,2.393383000000,,Plage de Malo les bains ,49508,observation-d1604b1a-0c22-433e-a6f6-574951aa9b02-2,https://biolit.fr/observations/observation-d1604b1a-0c22-433e-a6f6-574951aa9b02-2/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/BUCCINS.jpg,,TRUE, +N1,60568,sortie-d1604b1a-0c22-433e-a6f6-574951aa9b02,https://biolit.fr/sorties/sortie-d1604b1a-0c22-433e-a6f6-574951aa9b02/,RIEM,,04/06/2017,14.0000000,14.0000000,51.050435000000,2.393383000000,,Plage de Malo les bains ,49510,observation-d1604b1a-0c22-433e-a6f6-574951aa9b02-3,https://biolit.fr/observations/observation-d1604b1a-0c22-433e-a6f6-574951aa9b02-3/,Ensis magnus,Couteau arqué,,https://biolit.fr/wp-content/uploads/2023/07/20170406_3_0.jpg,,TRUE, +N1,60568,sortie-d1604b1a-0c22-433e-a6f6-574951aa9b02,https://biolit.fr/sorties/sortie-d1604b1a-0c22-433e-a6f6-574951aa9b02/,RIEM,,04/06/2017,14.0000000,14.0000000,51.050435000000,2.393383000000,,Plage de Malo les bains ,49512,observation-d1604b1a-0c22-433e-a6f6-574951aa9b02-4,https://biolit.fr/observations/observation-d1604b1a-0c22-433e-a6f6-574951aa9b02-4/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/2023/07/20170406_4_0.jpg,,TRUE, +N1,60568,sortie-d1604b1a-0c22-433e-a6f6-574951aa9b02,https://biolit.fr/sorties/sortie-d1604b1a-0c22-433e-a6f6-574951aa9b02/,RIEM,,04/06/2017,14.0000000,14.0000000,51.050435000000,2.393383000000,,Plage de Malo les bains ,49514,observation-d1604b1a-0c22-433e-a6f6-574951aa9b02-5,https://biolit.fr/observations/observation-d1604b1a-0c22-433e-a6f6-574951aa9b02-5/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/20170406_5_0.jpg,,TRUE, +N1,60568,sortie-d1604b1a-0c22-433e-a6f6-574951aa9b02,https://biolit.fr/sorties/sortie-d1604b1a-0c22-433e-a6f6-574951aa9b02/,RIEM,,04/06/2017,14.0000000,14.0000000,51.050435000000,2.393383000000,,Plage de Malo les bains ,49516,observation-d1604b1a-0c22-433e-a6f6-574951aa9b02-6,https://biolit.fr/observations/observation-d1604b1a-0c22-433e-a6f6-574951aa9b02-6/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20170406_6_0.jpg,,TRUE, +N1,60568,sortie-d1604b1a-0c22-433e-a6f6-574951aa9b02,https://biolit.fr/sorties/sortie-d1604b1a-0c22-433e-a6f6-574951aa9b02/,RIEM,,04/06/2017,14.0000000,14.0000000,51.050435000000,2.393383000000,,Plage de Malo les bains ,49518,observation-d1604b1a-0c22-433e-a6f6-574951aa9b02-7,https://biolit.fr/observations/observation-d1604b1a-0c22-433e-a6f6-574951aa9b02-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170406_7_0.jpg,,FALSE, +N1,60569,sortie-8bd6ab6c-6769-4acd-ae59-6b83a08711d9,https://biolit.fr/sorties/sortie-8bd6ab6c-6769-4acd-ae59-6b83a08711d9/,Phil,,4/13/2017 0:00,13.0000000,13.0:55,47.857269000000,-3.920419000000,,Concarneau - Finistère,49520,observation-8bd6ab6c-6769-4acd-ae59-6b83a08711d9,https://biolit.fr/observations/observation-8bd6ab6c-6769-4acd-ae59-6b83a08711d9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060690.JPG,,FALSE, +N1,60569,sortie-8bd6ab6c-6769-4acd-ae59-6b83a08711d9,https://biolit.fr/sorties/sortie-8bd6ab6c-6769-4acd-ae59-6b83a08711d9/,Phil,,4/13/2017 0:00,13.0000000,13.0:55,47.857269000000,-3.920419000000,,Concarneau - Finistère,49522,observation-8bd6ab6c-6769-4acd-ae59-6b83a08711d9-2,https://biolit.fr/observations/observation-8bd6ab6c-6769-4acd-ae59-6b83a08711d9-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1060685.JPG,,TRUE, +N1,60569,sortie-8bd6ab6c-6769-4acd-ae59-6b83a08711d9,https://biolit.fr/sorties/sortie-8bd6ab6c-6769-4acd-ae59-6b83a08711d9/,Phil,,4/13/2017 0:00,13.0000000,13.0:55,47.857269000000,-3.920419000000,,Concarneau - Finistère,49524,observation-8bd6ab6c-6769-4acd-ae59-6b83a08711d9-3,https://biolit.fr/observations/observation-8bd6ab6c-6769-4acd-ae59-6b83a08711d9-3/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1060687.JPG,,TRUE, +N1,60569,sortie-8bd6ab6c-6769-4acd-ae59-6b83a08711d9,https://biolit.fr/sorties/sortie-8bd6ab6c-6769-4acd-ae59-6b83a08711d9/,Phil,,4/13/2017 0:00,13.0000000,13.0:55,47.857269000000,-3.920419000000,,Concarneau - Finistère,49526,observation-8bd6ab6c-6769-4acd-ae59-6b83a08711d9-4,https://biolit.fr/observations/observation-8bd6ab6c-6769-4acd-ae59-6b83a08711d9-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060677.JPG,,FALSE, +N1,60570,sortie-1fcf645e-fc95-4f86-a63d-05291d380ac8,https://biolit.fr/sorties/sortie-1fcf645e-fc95-4f86-a63d-05291d380ac8/,Phil,,4/15/2017 0:00,13.0000000,13.0000000,47.797146000000,-4.372932000000,,Penmarc'h - Finistère,49528,observation-1fcf645e-fc95-4f86-a63d-05291d380ac8,https://biolit.fr/observations/observation-1fcf645e-fc95-4f86-a63d-05291d380ac8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070185.JPG,,FALSE, +N1,60570,sortie-1fcf645e-fc95-4f86-a63d-05291d380ac8,https://biolit.fr/sorties/sortie-1fcf645e-fc95-4f86-a63d-05291d380ac8/,Phil,,4/15/2017 0:00,13.0000000,13.0000000,47.797146000000,-4.372932000000,,Penmarc'h - Finistère,49530,observation-1fcf645e-fc95-4f86-a63d-05291d380ac8-2,https://biolit.fr/observations/observation-1fcf645e-fc95-4f86-a63d-05291d380ac8-2/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070195.JPG,,TRUE, +N1,60570,sortie-1fcf645e-fc95-4f86-a63d-05291d380ac8,https://biolit.fr/sorties/sortie-1fcf645e-fc95-4f86-a63d-05291d380ac8/,Phil,,4/15/2017 0:00,13.0000000,13.0000000,47.797146000000,-4.372932000000,,Penmarc'h - Finistère,49532,observation-1fcf645e-fc95-4f86-a63d-05291d380ac8-3,https://biolit.fr/observations/observation-1fcf645e-fc95-4f86-a63d-05291d380ac8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070189.JPG,,FALSE, +N1,60570,sortie-1fcf645e-fc95-4f86-a63d-05291d380ac8,https://biolit.fr/sorties/sortie-1fcf645e-fc95-4f86-a63d-05291d380ac8/,Phil,,4/15/2017 0:00,13.0000000,13.0000000,47.797146000000,-4.372932000000,,Penmarc'h - Finistère,49534,observation-1fcf645e-fc95-4f86-a63d-05291d380ac8-4,https://biolit.fr/observations/observation-1fcf645e-fc95-4f86-a63d-05291d380ac8-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070190.JPG,,FALSE, +N1,60570,sortie-1fcf645e-fc95-4f86-a63d-05291d380ac8,https://biolit.fr/sorties/sortie-1fcf645e-fc95-4f86-a63d-05291d380ac8/,Phil,,4/15/2017 0:00,13.0000000,13.0000000,47.797146000000,-4.372932000000,,Penmarc'h - Finistère,49536,observation-1fcf645e-fc95-4f86-a63d-05291d380ac8-5,https://biolit.fr/observations/observation-1fcf645e-fc95-4f86-a63d-05291d380ac8-5/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070192.JPG,,TRUE, +N1,60571,sortie-56fe9fa9-56ba-4a11-9146-82c97cb7e9d4,https://biolit.fr/sorties/sortie-56fe9fa9-56ba-4a11-9146-82c97cb7e9d4/,Phil,,4/16/2017 0:00,12.0000000,12.000005,47.896558000000,-3.97420600000,,La Forêt-Fouesnant - Finistère,49538,observation-56fe9fa9-56ba-4a11-9146-82c97cb7e9d4,https://biolit.fr/observations/observation-56fe9fa9-56ba-4a11-9146-82c97cb7e9d4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170416_122110.jpg,,FALSE, +N1,60571,sortie-56fe9fa9-56ba-4a11-9146-82c97cb7e9d4,https://biolit.fr/sorties/sortie-56fe9fa9-56ba-4a11-9146-82c97cb7e9d4/,Phil,,4/16/2017 0:00,12.0000000,12.000005,47.896558000000,-3.97420600000,,La Forêt-Fouesnant - Finistère,49540,observation-56fe9fa9-56ba-4a11-9146-82c97cb7e9d4-2,https://biolit.fr/observations/observation-56fe9fa9-56ba-4a11-9146-82c97cb7e9d4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170416_122127.jpg,,FALSE, +N1,60572,sortie-a7c61234-f44c-4ea1-9d02-ccda09d400fa,https://biolit.fr/sorties/sortie-a7c61234-f44c-4ea1-9d02-ccda09d400fa/,azelie,,04/10/2017,17.0000000,17.0000000,49.85299900000,0.596033000000,,Veulettes-sur-mer,49542,observation-a7c61234-f44c-4ea1-9d02-ccda09d400fa,https://biolit.fr/observations/observation-a7c61234-f44c-4ea1-9d02-ccda09d400fa/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4024_0-scaled.jpg,,FALSE, +N1,60572,sortie-a7c61234-f44c-4ea1-9d02-ccda09d400fa,https://biolit.fr/sorties/sortie-a7c61234-f44c-4ea1-9d02-ccda09d400fa/,azelie,,04/10/2017,17.0000000,17.0000000,49.85299900000,0.596033000000,,Veulettes-sur-mer,49544,observation-a7c61234-f44c-4ea1-9d02-ccda09d400fa-2,https://biolit.fr/observations/observation-a7c61234-f44c-4ea1-9d02-ccda09d400fa-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4027-scaled.jpg,,FALSE, +N1,60572,sortie-a7c61234-f44c-4ea1-9d02-ccda09d400fa,https://biolit.fr/sorties/sortie-a7c61234-f44c-4ea1-9d02-ccda09d400fa/,azelie,,04/10/2017,17.0000000,17.0000000,49.85299900000,0.596033000000,,Veulettes-sur-mer,49546,observation-a7c61234-f44c-4ea1-9d02-ccda09d400fa-3,https://biolit.fr/observations/observation-a7c61234-f44c-4ea1-9d02-ccda09d400fa-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4028-scaled.jpg,,FALSE, +N1,60572,sortie-a7c61234-f44c-4ea1-9d02-ccda09d400fa,https://biolit.fr/sorties/sortie-a7c61234-f44c-4ea1-9d02-ccda09d400fa/,azelie,,04/10/2017,17.0000000,17.0000000,49.85299900000,0.596033000000,,Veulettes-sur-mer,49548,observation-a7c61234-f44c-4ea1-9d02-ccda09d400fa-4,https://biolit.fr/observations/observation-a7c61234-f44c-4ea1-9d02-ccda09d400fa-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_4031-rotated.jpg,,TRUE, +N1,60572,sortie-a7c61234-f44c-4ea1-9d02-ccda09d400fa,https://biolit.fr/sorties/sortie-a7c61234-f44c-4ea1-9d02-ccda09d400fa/,azelie,,04/10/2017,17.0000000,17.0000000,49.85299900000,0.596033000000,,Veulettes-sur-mer,49550,observation-a7c61234-f44c-4ea1-9d02-ccda09d400fa-5,https://biolit.fr/observations/observation-a7c61234-f44c-4ea1-9d02-ccda09d400fa-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4033-rotated.jpg,,FALSE, +N1,60573,sortie-e58d5292-4c35-42f2-b374-33bcd80bd827,https://biolit.fr/sorties/sortie-e58d5292-4c35-42f2-b374-33bcd80bd827/,azelie,,04/12/2017,15.0000000,15.0:45,50.188823000000,1.631989000000,,Saint-Valéry-sur-Somme,49552,observation-e58d5292-4c35-42f2-b374-33bcd80bd827,https://biolit.fr/observations/observation-e58d5292-4c35-42f2-b374-33bcd80bd827/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4053-scaled.jpg,,FALSE, +N1,60573,sortie-e58d5292-4c35-42f2-b374-33bcd80bd827,https://biolit.fr/sorties/sortie-e58d5292-4c35-42f2-b374-33bcd80bd827/,azelie,,04/12/2017,15.0000000,15.0:45,50.188823000000,1.631989000000,,Saint-Valéry-sur-Somme,49554,observation-e58d5292-4c35-42f2-b374-33bcd80bd827-2,https://biolit.fr/observations/observation-e58d5292-4c35-42f2-b374-33bcd80bd827-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4054-scaled.jpg,,FALSE, +N1,60574,sortie-d04ba03e-453f-4b71-94ad-84bcbf8d07e9,https://biolit.fr/sorties/sortie-d04ba03e-453f-4b71-94ad-84bcbf8d07e9/,azelie,,04/09/2017,10.0:45,11.0000000,49.73998400000,0.309102000000,,Yport,49556,observation-d04ba03e-453f-4b71-94ad-84bcbf8d07e9,https://biolit.fr/observations/observation-d04ba03e-453f-4b71-94ad-84bcbf8d07e9/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2066-scaled.jpg,,TRUE, +N1,60575,sortie-fd76c297-1476-4383-bff4-e4c2ab901596,https://biolit.fr/sorties/sortie-fd76c297-1476-4383-bff4-e4c2ab901596/,Phil,,3/13/2017 0:00,14.0000000,14.0:25,47.85766500000,-3.904897000000,,Concarneau - Finistère,49558,observation-fd76c297-1476-4383-bff4-e4c2ab901596,https://biolit.fr/observations/observation-fd76c297-1476-4383-bff4-e4c2ab901596/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060750.JPG,,FALSE, +N1,60575,sortie-fd76c297-1476-4383-bff4-e4c2ab901596,https://biolit.fr/sorties/sortie-fd76c297-1476-4383-bff4-e4c2ab901596/,Phil,,3/13/2017 0:00,14.0000000,14.0:25,47.85766500000,-3.904897000000,,Concarneau - Finistère,49560,observation-fd76c297-1476-4383-bff4-e4c2ab901596-2,https://biolit.fr/observations/observation-fd76c297-1476-4383-bff4-e4c2ab901596-2/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1060745.JPG,,TRUE, +N1,60575,sortie-fd76c297-1476-4383-bff4-e4c2ab901596,https://biolit.fr/sorties/sortie-fd76c297-1476-4383-bff4-e4c2ab901596/,Phil,,3/13/2017 0:00,14.0000000,14.0:25,47.85766500000,-3.904897000000,,Concarneau - Finistère,49562,observation-fd76c297-1476-4383-bff4-e4c2ab901596-3,https://biolit.fr/observations/observation-fd76c297-1476-4383-bff4-e4c2ab901596-3/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1060743.JPG,,TRUE, +N1,60575,sortie-fd76c297-1476-4383-bff4-e4c2ab901596,https://biolit.fr/sorties/sortie-fd76c297-1476-4383-bff4-e4c2ab901596/,Phil,,3/13/2017 0:00,14.0000000,14.0:25,47.85766500000,-3.904897000000,,Concarneau - Finistère,49564,observation-fd76c297-1476-4383-bff4-e4c2ab901596-4,https://biolit.fr/observations/observation-fd76c297-1476-4383-bff4-e4c2ab901596-4/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1060739.JPG,,TRUE, +N1,60576,sortie-a985cacf-902e-4d67-adc5-0ce022e5bec5,https://biolit.fr/sorties/sortie-a985cacf-902e-4d67-adc5-0ce022e5bec5/,Phil,,3/13/2017 0:00,13.0:35,13.0000000,47.855937000000,-3.921561000000,,Concarneau - Finistère,49566,observation-a985cacf-902e-4d67-adc5-0ce022e5bec5,https://biolit.fr/observations/observation-a985cacf-902e-4d67-adc5-0ce022e5bec5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060675.JPG,,FALSE, +N1,60576,sortie-a985cacf-902e-4d67-adc5-0ce022e5bec5,https://biolit.fr/sorties/sortie-a985cacf-902e-4d67-adc5-0ce022e5bec5/,Phil,,3/13/2017 0:00,13.0:35,13.0000000,47.855937000000,-3.921561000000,,Concarneau - Finistère,49568,observation-a985cacf-902e-4d67-adc5-0ce022e5bec5-2,https://biolit.fr/observations/observation-a985cacf-902e-4d67-adc5-0ce022e5bec5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060673.JPG,,FALSE, +N1,60576,sortie-a985cacf-902e-4d67-adc5-0ce022e5bec5,https://biolit.fr/sorties/sortie-a985cacf-902e-4d67-adc5-0ce022e5bec5/,Phil,,3/13/2017 0:00,13.0:35,13.0000000,47.855937000000,-3.921561000000,,Concarneau - Finistère,49570,observation-a985cacf-902e-4d67-adc5-0ce022e5bec5-3,https://biolit.fr/observations/observation-a985cacf-902e-4d67-adc5-0ce022e5bec5-3/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/P1060670.JPG,,TRUE, +N1,60576,sortie-a985cacf-902e-4d67-adc5-0ce022e5bec5,https://biolit.fr/sorties/sortie-a985cacf-902e-4d67-adc5-0ce022e5bec5/,Phil,,3/13/2017 0:00,13.0:35,13.0000000,47.855937000000,-3.921561000000,,Concarneau - Finistère,49572,observation-a985cacf-902e-4d67-adc5-0ce022e5bec5-4,https://biolit.fr/observations/observation-a985cacf-902e-4d67-adc5-0ce022e5bec5-4/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/P1060669.JPG,,TRUE, +N1,60577,sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10,https://biolit.fr/sorties/sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214928000000,5.342761000000,,Anse de la maronaise,49574,observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10,https://biolit.fr/observations/observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/P4120226-scaled.jpg,,TRUE, +N1,60577,sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10,https://biolit.fr/sorties/sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214928000000,5.342761000000,,Anse de la maronaise,49576,observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-2,https://biolit.fr/observations/observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-2/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/P4120228-scaled.jpg,,TRUE, +N1,60577,sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10,https://biolit.fr/sorties/sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214928000000,5.342761000000,,Anse de la maronaise,49578,observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-3,https://biolit.fr/observations/observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-3/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/P4120229-scaled.jpg,,TRUE, +N1,60577,sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10,https://biolit.fr/sorties/sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214928000000,5.342761000000,,Anse de la maronaise,49580,observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-4,https://biolit.fr/observations/observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-4/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/P4120230-scaled.jpg,,TRUE, +N1,60577,sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10,https://biolit.fr/sorties/sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214928000000,5.342761000000,,Anse de la maronaise,49582,observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-5,https://biolit.fr/observations/observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-5/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/P4120232-scaled.jpg,,TRUE, +N1,60577,sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10,https://biolit.fr/sorties/sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214928000000,5.342761000000,,Anse de la maronaise,49584,observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-6,https://biolit.fr/observations/observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-6/,Xantho poressa,Xanthe de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/P4120233-scaled.jpg,,TRUE, +N1,60577,sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10,https://biolit.fr/sorties/sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214928000000,5.342761000000,,Anse de la maronaise,49586,observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-7,https://biolit.fr/observations/observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-7/,Xantho poressa,Xanthe de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/P4120234-scaled.jpg,,TRUE, +N1,60577,sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10,https://biolit.fr/sorties/sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214928000000,5.342761000000,,Anse de la maronaise,49588,observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-8,https://biolit.fr/observations/observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-8/,Ulva spp.,Ulve rigide,,https://biolit.fr/wp-content/uploads/2023/07/P4120235-scaled.jpg,,TRUE, +N1,60577,sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10,https://biolit.fr/sorties/sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214928000000,5.342761000000,,Anse de la maronaise,49590,observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-9,https://biolit.fr/observations/observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P4120236-scaled.jpg,,FALSE, +N1,60577,sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10,https://biolit.fr/sorties/sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214928000000,5.342761000000,,Anse de la maronaise,49592,observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-10,https://biolit.fr/observations/observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-10/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/P4120238-scaled.jpg,,TRUE, +N1,60577,sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10,https://biolit.fr/sorties/sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214928000000,5.342761000000,,Anse de la maronaise,49594,observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-11,https://biolit.fr/observations/observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-11/,Ligia italica,Ligie italienne,,https://biolit.fr/wp-content/uploads/2023/07/P4120241-scaled.jpg,,TRUE, +N1,60577,sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10,https://biolit.fr/sorties/sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214928000000,5.342761000000,,Anse de la maronaise,49596,observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-12,https://biolit.fr/observations/observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-12/,Ligia italica,Ligie italienne,,https://biolit.fr/wp-content/uploads/2023/07/P4120242-scaled.jpg,,TRUE, +N1,60577,sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10,https://biolit.fr/sorties/sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214928000000,5.342761000000,,Anse de la maronaise,49598,observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-13,https://biolit.fr/observations/observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-13/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/P4120244-scaled.jpg,,TRUE, +N1,60577,sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10,https://biolit.fr/sorties/sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214928000000,5.342761000000,,Anse de la maronaise,49600,observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-14,https://biolit.fr/observations/observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-14/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/P4120245-scaled.jpg,,TRUE, +N1,60577,sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10,https://biolit.fr/sorties/sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214928000000,5.342761000000,,Anse de la maronaise,49602,observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-15,https://biolit.fr/observations/observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-15/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/P4120247-scaled.jpg,,TRUE, +N1,60578,sortie-3d619949-d389-4016-9ab2-5e6558ae43f2,https://biolit.fr/sorties/sortie-3d619949-d389-4016-9ab2-5e6558ae43f2/,ludovic,,04/12/2017,15.0000000,16.0000000,43.21482200000,5.342955000000,,Anse de la Maronaise,49606,observation-3d619949-d389-4016-9ab2-5e6558ae43f2,https://biolit.fr/observations/observation-3d619949-d389-4016-9ab2-5e6558ae43f2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0184-scaled.jpg,,FALSE, +N1,60578,sortie-3d619949-d389-4016-9ab2-5e6558ae43f2,https://biolit.fr/sorties/sortie-3d619949-d389-4016-9ab2-5e6558ae43f2/,ludovic,,04/12/2017,15.0000000,16.0000000,43.21482200000,5.342955000000,,Anse de la Maronaise,49608,observation-3d619949-d389-4016-9ab2-5e6558ae43f2-2,https://biolit.fr/observations/observation-3d619949-d389-4016-9ab2-5e6558ae43f2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0185-scaled.jpg,,FALSE, +N1,60578,sortie-3d619949-d389-4016-9ab2-5e6558ae43f2,https://biolit.fr/sorties/sortie-3d619949-d389-4016-9ab2-5e6558ae43f2/,ludovic,,04/12/2017,15.0000000,16.0000000,43.21482200000,5.342955000000,,Anse de la Maronaise,49610,observation-3d619949-d389-4016-9ab2-5e6558ae43f2-3,https://biolit.fr/observations/observation-3d619949-d389-4016-9ab2-5e6558ae43f2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0187-scaled.jpg,,FALSE, +N1,60578,sortie-3d619949-d389-4016-9ab2-5e6558ae43f2,https://biolit.fr/sorties/sortie-3d619949-d389-4016-9ab2-5e6558ae43f2/,ludovic,,04/12/2017,15.0000000,16.0000000,43.21482200000,5.342955000000,,Anse de la Maronaise,49612,observation-3d619949-d389-4016-9ab2-5e6558ae43f2-4,https://biolit.fr/observations/observation-3d619949-d389-4016-9ab2-5e6558ae43f2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0188-scaled.jpg,,FALSE, +N1,60578,sortie-3d619949-d389-4016-9ab2-5e6558ae43f2,https://biolit.fr/sorties/sortie-3d619949-d389-4016-9ab2-5e6558ae43f2/,ludovic,,04/12/2017,15.0000000,16.0000000,43.21482200000,5.342955000000,,Anse de la Maronaise,49614,observation-3d619949-d389-4016-9ab2-5e6558ae43f2-5,https://biolit.fr/observations/observation-3d619949-d389-4016-9ab2-5e6558ae43f2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0190-scaled.jpg,,FALSE, +N1,60579,sortie-b66edf50-090f-49e9-8784-3809d523bf6a,https://biolit.fr/sorties/sortie-b66edf50-090f-49e9-8784-3809d523bf6a/,ludovic,,04/12/2017,15.0000000,16.0000000,43.214936000000,5.342896000000,,Anse de la Maronaise,49616,observation-b66edf50-090f-49e9-8784-3809d523bf6a,https://biolit.fr/observations/observation-b66edf50-090f-49e9-8784-3809d523bf6a/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0191-scaled.jpg,,FALSE, +N1,60579,sortie-b66edf50-090f-49e9-8784-3809d523bf6a,https://biolit.fr/sorties/sortie-b66edf50-090f-49e9-8784-3809d523bf6a/,ludovic,,04/12/2017,15.0000000,16.0000000,43.214936000000,5.342896000000,,Anse de la Maronaise,49618,observation-b66edf50-090f-49e9-8784-3809d523bf6a-2,https://biolit.fr/observations/observation-b66edf50-090f-49e9-8784-3809d523bf6a-2/,Talochlamys multistriata,Pétoncle strié,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0192_0-scaled.jpg,,TRUE, +N1,60579,sortie-b66edf50-090f-49e9-8784-3809d523bf6a,https://biolit.fr/sorties/sortie-b66edf50-090f-49e9-8784-3809d523bf6a/,ludovic,,04/12/2017,15.0000000,16.0000000,43.214936000000,5.342896000000,,Anse de la Maronaise,49620,observation-b66edf50-090f-49e9-8784-3809d523bf6a-3,https://biolit.fr/observations/observation-b66edf50-090f-49e9-8784-3809d523bf6a-3/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0195_0-scaled.jpg,,TRUE, +N1,60579,sortie-b66edf50-090f-49e9-8784-3809d523bf6a,https://biolit.fr/sorties/sortie-b66edf50-090f-49e9-8784-3809d523bf6a/,ludovic,,04/12/2017,15.0000000,16.0000000,43.214936000000,5.342896000000,,Anse de la Maronaise,49622,observation-b66edf50-090f-49e9-8784-3809d523bf6a-4,https://biolit.fr/observations/observation-b66edf50-090f-49e9-8784-3809d523bf6a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0197_0-scaled.jpg,,FALSE, +N1,60580,sortie-81d48bab-c5e1-4e84-9686-fc93e8219a2f,https://biolit.fr/sorties/sortie-81d48bab-c5e1-4e84-9686-fc93e8219a2f/,ludovic,,04/12/2017,15.0000000,16.0000000,43.214860000000,5.342998000000,,Anse de la Maronaise,49624,observation-81d48bab-c5e1-4e84-9686-fc93e8219a2f,https://biolit.fr/observations/observation-81d48bab-c5e1-4e84-9686-fc93e8219a2f/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0198_0-scaled.jpg,,FALSE, +N1,60580,sortie-81d48bab-c5e1-4e84-9686-fc93e8219a2f,https://biolit.fr/sorties/sortie-81d48bab-c5e1-4e84-9686-fc93e8219a2f/,ludovic,,04/12/2017,15.0000000,16.0000000,43.214860000000,5.342998000000,,Anse de la Maronaise,49626,observation-81d48bab-c5e1-4e84-9686-fc93e8219a2f-2,https://biolit.fr/observations/observation-81d48bab-c5e1-4e84-9686-fc93e8219a2f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0199_0-scaled.jpg,,FALSE, +N1,60580,sortie-81d48bab-c5e1-4e84-9686-fc93e8219a2f,https://biolit.fr/sorties/sortie-81d48bab-c5e1-4e84-9686-fc93e8219a2f/,ludovic,,04/12/2017,15.0000000,16.0000000,43.214860000000,5.342998000000,,Anse de la Maronaise,49628,observation-81d48bab-c5e1-4e84-9686-fc93e8219a2f-3,https://biolit.fr/observations/observation-81d48bab-c5e1-4e84-9686-fc93e8219a2f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0201_0-scaled.jpg,,FALSE, +N1,60581,sortie-13591051-5f7f-4382-8ee0-44cdc79adbbc,https://biolit.fr/sorties/sortie-13591051-5f7f-4382-8ee0-44cdc79adbbc/,ludovic,,04/12/2017,15.0000000,16.0000000,43.214852000000,5.342977000000,,Anse de la Maronaise,49630,observation-13591051-5f7f-4382-8ee0-44cdc79adbbc,https://biolit.fr/observations/observation-13591051-5f7f-4382-8ee0-44cdc79adbbc/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0201_1-scaled.jpg,,FALSE, +N1,60581,sortie-13591051-5f7f-4382-8ee0-44cdc79adbbc,https://biolit.fr/sorties/sortie-13591051-5f7f-4382-8ee0-44cdc79adbbc/,ludovic,,04/12/2017,15.0000000,16.0000000,43.214852000000,5.342977000000,,Anse de la Maronaise,49632,observation-13591051-5f7f-4382-8ee0-44cdc79adbbc-2,https://biolit.fr/observations/observation-13591051-5f7f-4382-8ee0-44cdc79adbbc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0202_0-scaled.jpg,,FALSE, +N1,60581,sortie-13591051-5f7f-4382-8ee0-44cdc79adbbc,https://biolit.fr/sorties/sortie-13591051-5f7f-4382-8ee0-44cdc79adbbc/,ludovic,,04/12/2017,15.0000000,16.0000000,43.214852000000,5.342977000000,,Anse de la Maronaise,49634,observation-13591051-5f7f-4382-8ee0-44cdc79adbbc-3,https://biolit.fr/observations/observation-13591051-5f7f-4382-8ee0-44cdc79adbbc-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0206_0-scaled.jpg,,FALSE, +N1,60582,sortie-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8,https://biolit.fr/sorties/sortie-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8/,Phil,,3/27/2017 0:00,10.0:55,11.000005,47.856554000000,-3.919771000000,,Concarneau - Finistère,49636,observation-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8,https://biolit.fr/observations/observation-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060781.JPG,,FALSE, +N1,60582,sortie-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8,https://biolit.fr/sorties/sortie-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8/,Phil,,3/27/2017 0:00,10.0:55,11.000005,47.856554000000,-3.919771000000,,Concarneau - Finistère,49638,observation-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8-2,https://biolit.fr/observations/observation-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060783.JPG,,FALSE, +N1,60582,sortie-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8,https://biolit.fr/sorties/sortie-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8/,Phil,,3/27/2017 0:00,10.0:55,11.000005,47.856554000000,-3.919771000000,,Concarneau - Finistère,49640,observation-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8-3,https://biolit.fr/observations/observation-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060795.JPG,,FALSE, +N1,60582,sortie-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8,https://biolit.fr/sorties/sortie-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8/,Phil,,3/27/2017 0:00,10.0:55,11.000005,47.856554000000,-3.919771000000,,Concarneau - Finistère,49642,observation-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8-4,https://biolit.fr/observations/observation-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060792.JPG,,FALSE, +N1,60582,sortie-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8,https://biolit.fr/sorties/sortie-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8/,Phil,,3/27/2017 0:00,10.0:55,11.000005,47.856554000000,-3.919771000000,,Concarneau - Finistère,49644,observation-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8-5,https://biolit.fr/observations/observation-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060787.JPG,,FALSE, +N1,60582,sortie-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8,https://biolit.fr/sorties/sortie-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8/,Phil,,3/27/2017 0:00,10.0:55,11.000005,47.856554000000,-3.919771000000,,Concarneau - Finistère,49646,observation-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8-6,https://biolit.fr/observations/observation-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8-6/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060786.JPG,,TRUE, +N1,60583,sortie-54ade537-8d3c-4e3d-9b3c-8747e7dbdcaa,https://biolit.fr/sorties/sortie-54ade537-8d3c-4e3d-9b3c-8747e7dbdcaa/,Phil,,3/13/2017 0:00,13.0:35,13.0000000,47.85681800000,-3.919501000000,,Concarneau - Finistère,49648,observation-54ade537-8d3c-4e3d-9b3c-8747e7dbdcaa,https://biolit.fr/observations/observation-54ade537-8d3c-4e3d-9b3c-8747e7dbdcaa/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060666.JPG,,FALSE, +N1,60583,sortie-54ade537-8d3c-4e3d-9b3c-8747e7dbdcaa,https://biolit.fr/sorties/sortie-54ade537-8d3c-4e3d-9b3c-8747e7dbdcaa/,Phil,,3/13/2017 0:00,13.0:35,13.0000000,47.85681800000,-3.919501000000,,Concarneau - Finistère,49650,observation-54ade537-8d3c-4e3d-9b3c-8747e7dbdcaa-2,https://biolit.fr/observations/observation-54ade537-8d3c-4e3d-9b3c-8747e7dbdcaa-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060660.JPG,,FALSE, +N1,60583,sortie-54ade537-8d3c-4e3d-9b3c-8747e7dbdcaa,https://biolit.fr/sorties/sortie-54ade537-8d3c-4e3d-9b3c-8747e7dbdcaa/,Phil,,3/13/2017 0:00,13.0:35,13.0000000,47.85681800000,-3.919501000000,,Concarneau - Finistère,49652,observation-54ade537-8d3c-4e3d-9b3c-8747e7dbdcaa-3,https://biolit.fr/observations/observation-54ade537-8d3c-4e3d-9b3c-8747e7dbdcaa-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060662.JPG,,FALSE, +N1,60583,sortie-54ade537-8d3c-4e3d-9b3c-8747e7dbdcaa,https://biolit.fr/sorties/sortie-54ade537-8d3c-4e3d-9b3c-8747e7dbdcaa/,Phil,,3/13/2017 0:00,13.0:35,13.0000000,47.85681800000,-3.919501000000,,Concarneau - Finistère,49654,observation-54ade537-8d3c-4e3d-9b3c-8747e7dbdcaa-4,https://biolit.fr/observations/observation-54ade537-8d3c-4e3d-9b3c-8747e7dbdcaa-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060657_0.JPG,,FALSE, +N1,60584,sortie-0a4406a9-8280-4e51-bd40-f9894d1777ba,https://biolit.fr/sorties/sortie-0a4406a9-8280-4e51-bd40-f9894d1777ba/,Phil,,03/06/2017,17.0:55,18.0000000,47.844455000000,-4.042007000000,,Mousterlin - Finistère,49656,observation-0a4406a9-8280-4e51-bd40-f9894d1777ba,https://biolit.fr/observations/observation-0a4406a9-8280-4e51-bd40-f9894d1777ba/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060591.JPG,,FALSE, +N1,60584,sortie-0a4406a9-8280-4e51-bd40-f9894d1777ba,https://biolit.fr/sorties/sortie-0a4406a9-8280-4e51-bd40-f9894d1777ba/,Phil,,03/06/2017,17.0:55,18.0000000,47.844455000000,-4.042007000000,,Mousterlin - Finistère,49658,observation-0a4406a9-8280-4e51-bd40-f9894d1777ba-2,https://biolit.fr/observations/observation-0a4406a9-8280-4e51-bd40-f9894d1777ba-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060596.JPG,,FALSE, +N1,60584,sortie-0a4406a9-8280-4e51-bd40-f9894d1777ba,https://biolit.fr/sorties/sortie-0a4406a9-8280-4e51-bd40-f9894d1777ba/,Phil,,03/06/2017,17.0:55,18.0000000,47.844455000000,-4.042007000000,,Mousterlin - Finistère,49660,observation-0a4406a9-8280-4e51-bd40-f9894d1777ba-3,https://biolit.fr/observations/observation-0a4406a9-8280-4e51-bd40-f9894d1777ba-3/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1060598.JPG,,TRUE, +N1,60585,sortie-8af73351-ed5f-43ab-8f8a-5513182bcbd2,https://biolit.fr/sorties/sortie-8af73351-ed5f-43ab-8f8a-5513182bcbd2/,ludovic,,04/05/2017,15.0000000,16.0000000,43.232432000000,5.353707000000,,Madrague de Montredon,49662,observation-8af73351-ed5f-43ab-8f8a-5513182bcbd2,https://biolit.fr/observations/observation-8af73351-ed5f-43ab-8f8a-5513182bcbd2/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1236-scaled.jpg,,TRUE, +N1,60585,sortie-8af73351-ed5f-43ab-8f8a-5513182bcbd2,https://biolit.fr/sorties/sortie-8af73351-ed5f-43ab-8f8a-5513182bcbd2/,ludovic,,04/05/2017,15.0000000,16.0000000,43.232432000000,5.353707000000,,Madrague de Montredon,49664,observation-8af73351-ed5f-43ab-8f8a-5513182bcbd2-2,https://biolit.fr/observations/observation-8af73351-ed5f-43ab-8f8a-5513182bcbd2-2/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1237-scaled.jpg,,TRUE, +N1,60585,sortie-8af73351-ed5f-43ab-8f8a-5513182bcbd2,https://biolit.fr/sorties/sortie-8af73351-ed5f-43ab-8f8a-5513182bcbd2/,ludovic,,04/05/2017,15.0000000,16.0000000,43.232432000000,5.353707000000,,Madrague de Montredon,49666,observation-8af73351-ed5f-43ab-8f8a-5513182bcbd2-3,https://biolit.fr/observations/observation-8af73351-ed5f-43ab-8f8a-5513182bcbd2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1238-scaled.jpg,,FALSE, +N1,60585,sortie-8af73351-ed5f-43ab-8f8a-5513182bcbd2,https://biolit.fr/sorties/sortie-8af73351-ed5f-43ab-8f8a-5513182bcbd2/,ludovic,,04/05/2017,15.0000000,16.0000000,43.232432000000,5.353707000000,,Madrague de Montredon,49668,observation-8af73351-ed5f-43ab-8f8a-5513182bcbd2-4,https://biolit.fr/observations/observation-8af73351-ed5f-43ab-8f8a-5513182bcbd2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1239-scaled.jpg,,FALSE, +N1,60585,sortie-8af73351-ed5f-43ab-8f8a-5513182bcbd2,https://biolit.fr/sorties/sortie-8af73351-ed5f-43ab-8f8a-5513182bcbd2/,ludovic,,04/05/2017,15.0000000,16.0000000,43.232432000000,5.353707000000,,Madrague de Montredon,49670,observation-8af73351-ed5f-43ab-8f8a-5513182bcbd2-5,https://biolit.fr/observations/observation-8af73351-ed5f-43ab-8f8a-5513182bcbd2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1240-scaled.jpg,,FALSE, +N1,60585,sortie-8af73351-ed5f-43ab-8f8a-5513182bcbd2,https://biolit.fr/sorties/sortie-8af73351-ed5f-43ab-8f8a-5513182bcbd2/,ludovic,,04/05/2017,15.0000000,16.0000000,43.232432000000,5.353707000000,,Madrague de Montredon,49672,observation-8af73351-ed5f-43ab-8f8a-5513182bcbd2-6,https://biolit.fr/observations/observation-8af73351-ed5f-43ab-8f8a-5513182bcbd2-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1241-scaled.jpg,,FALSE, +N1,60585,sortie-8af73351-ed5f-43ab-8f8a-5513182bcbd2,https://biolit.fr/sorties/sortie-8af73351-ed5f-43ab-8f8a-5513182bcbd2/,ludovic,,04/05/2017,15.0000000,16.0000000,43.232432000000,5.353707000000,,Madrague de Montredon,49674,observation-8af73351-ed5f-43ab-8f8a-5513182bcbd2-7,https://biolit.fr/observations/observation-8af73351-ed5f-43ab-8f8a-5513182bcbd2-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1242-scaled.jpg,,FALSE, +N1,60586,sortie-4d98d929-5b9b-415c-b78d-5a68f52e92da,https://biolit.fr/sorties/sortie-4d98d929-5b9b-415c-b78d-5a68f52e92da/,ludovic,,04/05/2017,11.0000000,12.0000000,43.357617000000,5.29021200000,,plages de Corbière,49676,observation-4d98d929-5b9b-415c-b78d-5a68f52e92da,https://biolit.fr/observations/observation-4d98d929-5b9b-415c-b78d-5a68f52e92da/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1192-scaled.jpg,,FALSE, +N1,60586,sortie-4d98d929-5b9b-415c-b78d-5a68f52e92da,https://biolit.fr/sorties/sortie-4d98d929-5b9b-415c-b78d-5a68f52e92da/,ludovic,,04/05/2017,11.0000000,12.0000000,43.357617000000,5.29021200000,,plages de Corbière,49678,observation-4d98d929-5b9b-415c-b78d-5a68f52e92da-2,https://biolit.fr/observations/observation-4d98d929-5b9b-415c-b78d-5a68f52e92da-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1193-scaled.jpg,,FALSE, +N1,60587,sortie-c1a5f7ef-ac1d-4360-9568-a091d1997a7a,https://biolit.fr/sorties/sortie-c1a5f7ef-ac1d-4360-9568-a091d1997a7a/,Phil,,3/23/2017 0:00,13.0:45,13.0000000,47.947043000000,-4.410847000000,,Pouldreuzic - Finistère,49680,observation-c1a5f7ef-ac1d-4360-9568-a091d1997a7a,https://biolit.fr/observations/observation-c1a5f7ef-ac1d-4360-9568-a091d1997a7a/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170323_134436.jpg,,FALSE, +N1,60587,sortie-c1a5f7ef-ac1d-4360-9568-a091d1997a7a,https://biolit.fr/sorties/sortie-c1a5f7ef-ac1d-4360-9568-a091d1997a7a/,Phil,,3/23/2017 0:00,13.0:45,13.0000000,47.947043000000,-4.410847000000,,Pouldreuzic - Finistère,49682,observation-c1a5f7ef-ac1d-4360-9568-a091d1997a7a-2,https://biolit.fr/observations/observation-c1a5f7ef-ac1d-4360-9568-a091d1997a7a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170323_134602.jpg,,FALSE, +N1,60588,sortie-e3631a93-e412-4e72-8006-375d14823037,https://biolit.fr/sorties/sortie-e3631a93-e412-4e72-8006-375d14823037/,Phil,,2/21/2017 0:00,17.0000000,17.0:15,48.092324000000,-4.297040000000,,Douarnenez - Finistère,49684,observation-e3631a93-e412-4e72-8006-375d14823037,https://biolit.fr/observations/observation-e3631a93-e412-4e72-8006-375d14823037/,Lutraria lutraria,Lutraire elliptique,,https://biolit.fr/wp-content/uploads/2023/07/P1060196.JPG,,TRUE, +N1,60588,sortie-e3631a93-e412-4e72-8006-375d14823037,https://biolit.fr/sorties/sortie-e3631a93-e412-4e72-8006-375d14823037/,Phil,,2/21/2017 0:00,17.0000000,17.0:15,48.092324000000,-4.297040000000,,Douarnenez - Finistère,49686,observation-e3631a93-e412-4e72-8006-375d14823037-2,https://biolit.fr/observations/observation-e3631a93-e412-4e72-8006-375d14823037-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060194.JPG,,FALSE, +N1,60589,sortie-c6ecaa5d-7ac7-4a68-a2c4-32aaab5404c2,https://biolit.fr/sorties/sortie-c6ecaa5d-7ac7-4a68-a2c4-32aaab5404c2/,Phil,,3/27/2017 0:00,10.0:55,11.0000000,47.853408000000,-3.91352300000,,Concarneau - Finistère,49688,observation-c6ecaa5d-7ac7-4a68-a2c4-32aaab5404c2,https://biolit.fr/observations/observation-c6ecaa5d-7ac7-4a68-a2c4-32aaab5404c2/,Idotea balthica,Idotée de la Baltique,,https://biolit.fr/wp-content/uploads/2023/07/P1060772.JPG,,TRUE, +N1,60589,sortie-c6ecaa5d-7ac7-4a68-a2c4-32aaab5404c2,https://biolit.fr/sorties/sortie-c6ecaa5d-7ac7-4a68-a2c4-32aaab5404c2/,Phil,,3/27/2017 0:00,10.0:55,11.0000000,47.853408000000,-3.91352300000,,Concarneau - Finistère,49690,observation-c6ecaa5d-7ac7-4a68-a2c4-32aaab5404c2-2,https://biolit.fr/observations/observation-c6ecaa5d-7ac7-4a68-a2c4-32aaab5404c2-2/,Idotea balthica,Idotée de la Baltique,,https://biolit.fr/wp-content/uploads/2023/07/P1060779.JPG,,TRUE, +N1,60589,sortie-c6ecaa5d-7ac7-4a68-a2c4-32aaab5404c2,https://biolit.fr/sorties/sortie-c6ecaa5d-7ac7-4a68-a2c4-32aaab5404c2/,Phil,,3/27/2017 0:00,10.0:55,11.0000000,47.853408000000,-3.91352300000,,Concarneau - Finistère,49692,observation-c6ecaa5d-7ac7-4a68-a2c4-32aaab5404c2-3,https://biolit.fr/observations/observation-c6ecaa5d-7ac7-4a68-a2c4-32aaab5404c2-3/,Idotea balthica,Idotée de la Baltique,,https://biolit.fr/wp-content/uploads/2023/07/P1060767.JPG,,TRUE, +N1,60589,sortie-c6ecaa5d-7ac7-4a68-a2c4-32aaab5404c2,https://biolit.fr/sorties/sortie-c6ecaa5d-7ac7-4a68-a2c4-32aaab5404c2/,Phil,,3/27/2017 0:00,10.0:55,11.0000000,47.853408000000,-3.91352300000,,Concarneau - Finistère,49694,observation-c6ecaa5d-7ac7-4a68-a2c4-32aaab5404c2-4,https://biolit.fr/observations/observation-c6ecaa5d-7ac7-4a68-a2c4-32aaab5404c2-4/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1060766.JPG,,TRUE, +N1,60590,sortie-7bda593f-2533-49c0-b65b-8de3ab541866,https://biolit.fr/sorties/sortie-7bda593f-2533-49c0-b65b-8de3ab541866/,Phil,,03/06/2017,17.0000000,17.0:55,47.842352000000,-4.044900000000,,Mousterlin - Finistère,49696,observation-7bda593f-2533-49c0-b65b-8de3ab541866,https://biolit.fr/observations/observation-7bda593f-2533-49c0-b65b-8de3ab541866/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1060583.JPG,,TRUE, +N1,60590,sortie-7bda593f-2533-49c0-b65b-8de3ab541866,https://biolit.fr/sorties/sortie-7bda593f-2533-49c0-b65b-8de3ab541866/,Phil,,03/06/2017,17.0000000,17.0:55,47.842352000000,-4.044900000000,,Mousterlin - Finistère,49698,observation-7bda593f-2533-49c0-b65b-8de3ab541866-2,https://biolit.fr/observations/observation-7bda593f-2533-49c0-b65b-8de3ab541866-2/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/P1060589.JPG,,TRUE, +N1,60591,sortie-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6,https://biolit.fr/sorties/sortie-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6/,Phil,,3/21/2017 0:00,12.0000000,12.0:15,43.405089000000,4.977075000000,,Port-de-Bouc Bouches-du-Rhône,49700,observation-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6,https://biolit.fr/observations/observation-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161127_141918.jpg,,FALSE, +N1,60591,sortie-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6,https://biolit.fr/sorties/sortie-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6/,Phil,,3/21/2017 0:00,12.0000000,12.0:15,43.405089000000,4.977075000000,,Port-de-Bouc Bouches-du-Rhône,49702,observation-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6-2,https://biolit.fr/observations/observation-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161127_142120.jpg,,FALSE, +N1,60591,sortie-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6,https://biolit.fr/sorties/sortie-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6/,Phil,,3/21/2017 0:00,12.0000000,12.0:15,43.405089000000,4.977075000000,,Port-de-Bouc Bouches-du-Rhône,49704,observation-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6-3,https://biolit.fr/observations/observation-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6-3/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/20161127_141930.jpg,,TRUE, +N1,60591,sortie-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6,https://biolit.fr/sorties/sortie-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6/,Phil,,3/21/2017 0:00,12.0000000,12.0:15,43.405089000000,4.977075000000,,Port-de-Bouc Bouches-du-Rhône,49706,observation-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6-4,https://biolit.fr/observations/observation-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161127_140750.jpg,,FALSE, +N1,60591,sortie-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6,https://biolit.fr/sorties/sortie-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6/,Phil,,3/21/2017 0:00,12.0000000,12.0:15,43.405089000000,4.977075000000,,Port-de-Bouc Bouches-du-Rhône,49708,observation-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6-5,https://biolit.fr/observations/observation-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6-5/,Euspira catena,Natice porte-chaîne,,https://biolit.fr/wp-content/uploads/2023/07/20161127_140616.jpg,,TRUE, +N1,60591,sortie-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6,https://biolit.fr/sorties/sortie-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6/,Phil,,3/21/2017 0:00,12.0000000,12.0:15,43.405089000000,4.977075000000,,Port-de-Bouc Bouches-du-Rhône,49710,observation-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6-6,https://biolit.fr/observations/observation-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161127_140548.jpg,,FALSE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49712,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_7760-scaled.jpg,,FALSE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49714,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-2,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_7762-scaled.jpg,,FALSE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49716,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-3,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_7764-scaled.jpg,,FALSE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49718,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-4,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_7765-scaled.jpg,,FALSE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49720,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-5,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_7767-scaled.jpg,,FALSE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49722,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-6,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_7768-scaled.jpg,,FALSE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49724,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-7,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-7/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/100_7769-scaled.jpg,,TRUE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49726,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-8,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_7770-scaled.jpg,,FALSE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49728,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-9,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_7771-scaled.jpg,,FALSE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49730,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-10,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_7772-scaled.jpg,,FALSE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49732,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-11,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_7774-scaled.jpg,,FALSE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49734,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-12,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-12/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/100_7777-scaled.jpg,,TRUE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49736,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-13,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_7778-scaled.jpg,,FALSE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49738,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-14,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_7779-scaled.jpg,,FALSE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49740,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-15,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_7782-scaled.jpg,,FALSE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49742,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-16,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_7783-scaled.jpg,,FALSE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49744,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-17,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-17/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/100_7785-scaled.jpg,,TRUE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49746,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-18,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-18/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/100_7786-scaled.jpg,,TRUE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49748,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-19,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_7789-scaled.jpg,,FALSE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49750,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-20,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_7793-scaled.jpg,,FALSE, +N1,60593,sortie-f0bc119a-90e3-4924-9fed-b0c489b85bfa,https://biolit.fr/sorties/sortie-f0bc119a-90e3-4924-9fed-b0c489b85bfa/,Marine,,04/05/2017,15.0000000,15.0:45,43.231769000000,5.355462000000,,Madrague montredon,49752,observation-f0bc119a-90e3-4924-9fed-b0c489b85bfa,https://biolit.fr/observations/observation-f0bc119a-90e3-4924-9fed-b0c489b85bfa/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2261-scaled.jpg,,FALSE, +N1,60594,sortie-c846a3c8-b212-40f3-8849-176c361719e5,https://biolit.fr/sorties/sortie-c846a3c8-b212-40f3-8849-176c361719e5/,RIEM,,04/02/2017,12.0:15,12.0:45,51.075784000000,2.476241000000,,PLAGE DUNE DEWULF,49754,observation-c846a3c8-b212-40f3-8849-176c361719e5,https://biolit.fr/observations/observation-c846a3c8-b212-40f3-8849-176c361719e5/,,,,https://biolit.fr/wp-content/uploads/2023/07/02-04-2017-dune-dewulf-12h45_web.jpg,,FALSE, +N1,60595,sortie-51b96286-2ae8-49ed-b532-ddbf94f975b4,https://biolit.fr/sorties/sortie-51b96286-2ae8-49ed-b532-ddbf94f975b4/,Ecole Eydoux CM2,,3/13/2017 0:00,10.0000000,12.0000000,43.279899000000,5.352283000000,,Marseille 13007 anse de maldormé,49756,observation-51b96286-2ae8-49ed-b532-ddbf94f975b4,https://biolit.fr/observations/observation-51b96286-2ae8-49ed-b532-ddbf94f975b4/,,,,https://biolit.fr/wp-content/uploads/2023/07/chiton olivaceus.JPG,,FALSE, +N1,60595,sortie-51b96286-2ae8-49ed-b532-ddbf94f975b4,https://biolit.fr/sorties/sortie-51b96286-2ae8-49ed-b532-ddbf94f975b4/,Ecole Eydoux CM2,,3/13/2017 0:00,10.0000000,12.0000000,43.279899000000,5.352283000000,,Marseille 13007 anse de maldormé,49758,observation-51b96286-2ae8-49ed-b532-ddbf94f975b4-2,https://biolit.fr/observations/observation-51b96286-2ae8-49ed-b532-ddbf94f975b4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/gibbula varia-scaled.jpg,,FALSE, +N1,60595,sortie-51b96286-2ae8-49ed-b532-ddbf94f975b4,https://biolit.fr/sorties/sortie-51b96286-2ae8-49ed-b532-ddbf94f975b4/,Ecole Eydoux CM2,,3/13/2017 0:00,10.0000000,12.0000000,43.279899000000,5.352283000000,,Marseille 13007 anse de maldormé,49760,observation-51b96286-2ae8-49ed-b532-ddbf94f975b4-3,https://biolit.fr/observations/observation-51b96286-2ae8-49ed-b532-ddbf94f975b4-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/pachygrapsus marmoratus ou crabe marbré.JPG,,FALSE, +N1,60595,sortie-51b96286-2ae8-49ed-b532-ddbf94f975b4,https://biolit.fr/sorties/sortie-51b96286-2ae8-49ed-b532-ddbf94f975b4/,Ecole Eydoux CM2,,3/13/2017 0:00,10.0000000,12.0000000,43.279899000000,5.352283000000,,Marseille 13007 anse de maldormé,49762,observation-51b96286-2ae8-49ed-b532-ddbf94f975b4-4,https://biolit.fr/observations/observation-51b96286-2ae8-49ed-b532-ddbf94f975b4-4/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/patella caerulea.JPG,,TRUE, +N1,60596,sortie-442f3a71-1155-4cc5-a355-c855be93d52c,https://biolit.fr/sorties/sortie-442f3a71-1155-4cc5-a355-c855be93d52c/,collège paul Eluard,,03/09/2017,14.0000000,15.0000000,50.691506000000,1.562863000000,,"Le Portel, Cap d'Alprech",49764,observation-442f3a71-1155-4cc5-a355-c855be93d52c,https://biolit.fr/observations/observation-442f3a71-1155-4cc5-a355-c855be93d52c/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/photo especes SG -scaled.jpg,,TRUE, +N1,60596,sortie-442f3a71-1155-4cc5-a355-c855be93d52c,https://biolit.fr/sorties/sortie-442f3a71-1155-4cc5-a355-c855be93d52c/,collège paul Eluard,,03/09/2017,14.0000000,15.0000000,50.691506000000,1.562863000000,,"Le Portel, Cap d'Alprech",49766,observation-442f3a71-1155-4cc5-a355-c855be93d52c-2,https://biolit.fr/observations/observation-442f3a71-1155-4cc5-a355-c855be93d52c-2/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/photo escpece Lilou-scaled.jpg,,TRUE, +N1,60597,sortie-d5ae3663-02d5-4444-b331-54401913042c,https://biolit.fr/sorties/sortie-d5ae3663-02d5-4444-b331-54401913042c/,collège paul Eluard,,03/09/2017,14.0000000,15.0000000,50.692043000000,1.562590000000,,"le portel,cap d'alpresch",49768,observation-d5ae3663-02d5-4444-b331-54401913042c,https://biolit.fr/observations/observation-d5ae3663-02d5-4444-b331-54401913042c/,,,,https://biolit.fr/wp-content/uploads/2023/07/ANIMAL NOAH -scaled.jpg,,FALSE, +N1,60598,sortie-7a634ada-e23c-4557-abc6-ec2cb19d10d7,https://biolit.fr/sorties/sortie-7a634ada-e23c-4557-abc6-ec2cb19d10d7/,collège paul Eluard,,03/09/2017,14.0000000,15.0000000,50.691993000000,1.562670000000,,"le portel , cap d alprech",49770,observation-7a634ada-e23c-4557-abc6-ec2cb19d10d7,https://biolit.fr/observations/observation-7a634ada-e23c-4557-abc6-ec2cb19d10d7/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/bigorneautheo-scaled.jpg,,TRUE, +N1,60598,sortie-7a634ada-e23c-4557-abc6-ec2cb19d10d7,https://biolit.fr/sorties/sortie-7a634ada-e23c-4557-abc6-ec2cb19d10d7/,collège paul Eluard,,03/09/2017,14.0000000,15.0000000,50.691993000000,1.562670000000,,"le portel , cap d alprech",49772,observation-7a634ada-e23c-4557-abc6-ec2cb19d10d7-2,https://biolit.fr/observations/observation-7a634ada-e23c-4557-abc6-ec2cb19d10d7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0192dorian-scaled.jpg,,FALSE, +N1,60598,sortie-7a634ada-e23c-4557-abc6-ec2cb19d10d7,https://biolit.fr/sorties/sortie-7a634ada-e23c-4557-abc6-ec2cb19d10d7/,collège paul Eluard,,03/09/2017,14.0000000,15.0000000,50.691993000000,1.562670000000,,"le portel , cap d alprech",49774,observation-7a634ada-e23c-4557-abc6-ec2cb19d10d7-3,https://biolit.fr/observations/observation-7a634ada-e23c-4557-abc6-ec2cb19d10d7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo alguedylan-scaled.jpg,,FALSE, +N1,60599,sortie-224cd23e-305a-4305-bbdc-a64cfe4ed22d,https://biolit.fr/sorties/sortie-224cd23e-305a-4305-bbdc-a64cfe4ed22d/,Phil,,03/06/2017,17.0:15,17.0:25,47.839146000000,-4.042282000000,,Mousterlin - Finistère,49776,observation-224cd23e-305a-4305-bbdc-a64cfe4ed22d,https://biolit.fr/observations/observation-224cd23e-305a-4305-bbdc-a64cfe4ed22d/,Balanus crenatus,Balane crénelée,,https://biolit.fr/wp-content/uploads/2023/07/P1060489.JPG,,TRUE, +N1,60599,sortie-224cd23e-305a-4305-bbdc-a64cfe4ed22d,https://biolit.fr/sorties/sortie-224cd23e-305a-4305-bbdc-a64cfe4ed22d/,Phil,,03/06/2017,17.0:15,17.0:25,47.839146000000,-4.042282000000,,Mousterlin - Finistère,49778,observation-224cd23e-305a-4305-bbdc-a64cfe4ed22d-2,https://biolit.fr/observations/observation-224cd23e-305a-4305-bbdc-a64cfe4ed22d-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1060493.JPG,,TRUE, +N1,60599,sortie-224cd23e-305a-4305-bbdc-a64cfe4ed22d,https://biolit.fr/sorties/sortie-224cd23e-305a-4305-bbdc-a64cfe4ed22d/,Phil,,03/06/2017,17.0:15,17.0:25,47.839146000000,-4.042282000000,,Mousterlin - Finistère,49780,observation-224cd23e-305a-4305-bbdc-a64cfe4ed22d-3,https://biolit.fr/observations/observation-224cd23e-305a-4305-bbdc-a64cfe4ed22d-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060494.JPG,,TRUE, +N1,60599,sortie-224cd23e-305a-4305-bbdc-a64cfe4ed22d,https://biolit.fr/sorties/sortie-224cd23e-305a-4305-bbdc-a64cfe4ed22d/,Phil,,03/06/2017,17.0:15,17.0:25,47.839146000000,-4.042282000000,,Mousterlin - Finistère,49782,observation-224cd23e-305a-4305-bbdc-a64cfe4ed22d-4,https://biolit.fr/observations/observation-224cd23e-305a-4305-bbdc-a64cfe4ed22d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060516.JPG,,FALSE, +N1,60600,sortie-261568dc-70e2-497e-ba92-000bba7e36e6,https://biolit.fr/sorties/sortie-261568dc-70e2-497e-ba92-000bba7e36e6/,Observe la nature,,03/08/2017,10.0000000,16.0000000,48.835598000000,-3.508861000000,,Trégastel,49784,observation-261568dc-70e2-497e-ba92-000bba7e36e6,https://biolit.fr/observations/observation-261568dc-70e2-497e-ba92-000bba7e36e6/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170308_133546[1]-scaled.jpg,,TRUE, +N1,60600,sortie-261568dc-70e2-497e-ba92-000bba7e36e6,https://biolit.fr/sorties/sortie-261568dc-70e2-497e-ba92-000bba7e36e6/,Observe la nature,,03/08/2017,10.0000000,16.0000000,48.835598000000,-3.508861000000,,Trégastel,49786,observation-261568dc-70e2-497e-ba92-000bba7e36e6-2,https://biolit.fr/observations/observation-261568dc-70e2-497e-ba92-000bba7e36e6-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170308_134915[1]-scaled.jpg,,TRUE, +N1,60600,sortie-261568dc-70e2-497e-ba92-000bba7e36e6,https://biolit.fr/sorties/sortie-261568dc-70e2-497e-ba92-000bba7e36e6/,Observe la nature,,03/08/2017,10.0000000,16.0000000,48.835598000000,-3.508861000000,,Trégastel,49788,observation-261568dc-70e2-497e-ba92-000bba7e36e6-3,https://biolit.fr/observations/observation-261568dc-70e2-497e-ba92-000bba7e36e6-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170308_151851[1]-scaled.jpg,,TRUE, +N1,60601,sortie-5c5c951c-0b01-4649-924c-d0065cc9d180,https://biolit.fr/sorties/sortie-5c5c951c-0b01-4649-924c-d0065cc9d180/,Observe la nature,,3/30/2017 0:00,15.0000000,16.0000000,48.814691000000,-3.428095000000,,Plage de pors ar goret. Perros Guirec,49790,observation-5c5c951c-0b01-4649-924c-d0065cc9d180,https://biolit.fr/observations/observation-5c5c951c-0b01-4649-924c-d0065cc9d180/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170329_151121[1]-scaled.jpg,,FALSE, +N1,60601,sortie-5c5c951c-0b01-4649-924c-d0065cc9d180,https://biolit.fr/sorties/sortie-5c5c951c-0b01-4649-924c-d0065cc9d180/,Observe la nature,,3/30/2017 0:00,15.0000000,16.0000000,48.814691000000,-3.428095000000,,Plage de pors ar goret. Perros Guirec,49792,observation-5c5c951c-0b01-4649-924c-d0065cc9d180-2,https://biolit.fr/observations/observation-5c5c951c-0b01-4649-924c-d0065cc9d180-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170401_160028[1]-scaled.jpg,,FALSE, +N1,60601,sortie-5c5c951c-0b01-4649-924c-d0065cc9d180,https://biolit.fr/sorties/sortie-5c5c951c-0b01-4649-924c-d0065cc9d180/,Observe la nature,,3/30/2017 0:00,15.0000000,16.0000000,48.814691000000,-3.428095000000,,Plage de pors ar goret. Perros Guirec,49794,observation-5c5c951c-0b01-4649-924c-d0065cc9d180-3,https://biolit.fr/observations/observation-5c5c951c-0b01-4649-924c-d0065cc9d180-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170329_151509[1]-scaled.jpg,,FALSE, +N1,60601,sortie-5c5c951c-0b01-4649-924c-d0065cc9d180,https://biolit.fr/sorties/sortie-5c5c951c-0b01-4649-924c-d0065cc9d180/,Observe la nature,,3/30/2017 0:00,15.0000000,16.0000000,48.814691000000,-3.428095000000,,Plage de pors ar goret. Perros Guirec,49796,observation-5c5c951c-0b01-4649-924c-d0065cc9d180-4,https://biolit.fr/observations/observation-5c5c951c-0b01-4649-924c-d0065cc9d180-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170310_114847[1]-scaled.jpg,,FALSE, +N1,60601,sortie-5c5c951c-0b01-4649-924c-d0065cc9d180,https://biolit.fr/sorties/sortie-5c5c951c-0b01-4649-924c-d0065cc9d180/,Observe la nature,,3/30/2017 0:00,15.0000000,16.0000000,48.814691000000,-3.428095000000,,Plage de pors ar goret. Perros Guirec,49798,observation-5c5c951c-0b01-4649-924c-d0065cc9d180-5,https://biolit.fr/observations/observation-5c5c951c-0b01-4649-924c-d0065cc9d180-5/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170310_114908[1]-scaled.jpg,,TRUE, +N1,60601,sortie-5c5c951c-0b01-4649-924c-d0065cc9d180,https://biolit.fr/sorties/sortie-5c5c951c-0b01-4649-924c-d0065cc9d180/,Observe la nature,,3/30/2017 0:00,15.0000000,16.0000000,48.814691000000,-3.428095000000,,Plage de pors ar goret. Perros Guirec,49800,observation-5c5c951c-0b01-4649-924c-d0065cc9d180-6,https://biolit.fr/observations/observation-5c5c951c-0b01-4649-924c-d0065cc9d180-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170310_115007[1]-scaled.jpg,,FALSE, +N1,60601,sortie-5c5c951c-0b01-4649-924c-d0065cc9d180,https://biolit.fr/sorties/sortie-5c5c951c-0b01-4649-924c-d0065cc9d180/,Observe la nature,,3/30/2017 0:00,15.0000000,16.0000000,48.814691000000,-3.428095000000,,Plage de pors ar goret. Perros Guirec,49802,observation-5c5c951c-0b01-4649-924c-d0065cc9d180-7,https://biolit.fr/observations/observation-5c5c951c-0b01-4649-924c-d0065cc9d180-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170310_115220[1]-scaled.jpg,,FALSE, +N1,60602,sortie-de6f7ba3-86c1-49e3-ba5b-9480b365cc96,https://biolit.fr/sorties/sortie-de6f7ba3-86c1-49e3-ba5b-9480b365cc96/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202448000000,5.49808000000,,Calanque d'En Vau ,49804,observation-de6f7ba3-86c1-49e3-ba5b-9480b365cc96,https://biolit.fr/observations/observation-de6f7ba3-86c1-49e3-ba5b-9480b365cc96/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0373-scaled.jpg,,TRUE, +N1,60602,sortie-de6f7ba3-86c1-49e3-ba5b-9480b365cc96,https://biolit.fr/sorties/sortie-de6f7ba3-86c1-49e3-ba5b-9480b365cc96/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202448000000,5.49808000000,,Calanque d'En Vau ,49806,observation-de6f7ba3-86c1-49e3-ba5b-9480b365cc96-2,https://biolit.fr/observations/observation-de6f7ba3-86c1-49e3-ba5b-9480b365cc96-2/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0374-scaled.jpg,,TRUE, +N1,60602,sortie-de6f7ba3-86c1-49e3-ba5b-9480b365cc96,https://biolit.fr/sorties/sortie-de6f7ba3-86c1-49e3-ba5b-9480b365cc96/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202448000000,5.49808000000,,Calanque d'En Vau ,49808,observation-de6f7ba3-86c1-49e3-ba5b-9480b365cc96-3,https://biolit.fr/observations/observation-de6f7ba3-86c1-49e3-ba5b-9480b365cc96-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0375-scaled.jpg,,FALSE, +N1,60602,sortie-de6f7ba3-86c1-49e3-ba5b-9480b365cc96,https://biolit.fr/sorties/sortie-de6f7ba3-86c1-49e3-ba5b-9480b365cc96/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202448000000,5.49808000000,,Calanque d'En Vau ,49810,observation-de6f7ba3-86c1-49e3-ba5b-9480b365cc96-4,https://biolit.fr/observations/observation-de6f7ba3-86c1-49e3-ba5b-9480b365cc96-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0376-scaled.jpg,,FALSE, +N1,60602,sortie-de6f7ba3-86c1-49e3-ba5b-9480b365cc96,https://biolit.fr/sorties/sortie-de6f7ba3-86c1-49e3-ba5b-9480b365cc96/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202448000000,5.49808000000,,Calanque d'En Vau ,49812,observation-de6f7ba3-86c1-49e3-ba5b-9480b365cc96-5,https://biolit.fr/observations/observation-de6f7ba3-86c1-49e3-ba5b-9480b365cc96-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0377-scaled.jpg,,FALSE, +N1,60602,sortie-de6f7ba3-86c1-49e3-ba5b-9480b365cc96,https://biolit.fr/sorties/sortie-de6f7ba3-86c1-49e3-ba5b-9480b365cc96/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202448000000,5.49808000000,,Calanque d'En Vau ,49814,observation-de6f7ba3-86c1-49e3-ba5b-9480b365cc96-6,https://biolit.fr/observations/observation-de6f7ba3-86c1-49e3-ba5b-9480b365cc96-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0378-scaled.jpg,,FALSE, +N1,60603,sortie-34070850-ad0a-433e-932d-f6630c5b3658,https://biolit.fr/sorties/sortie-34070850-ad0a-433e-932d-f6630c5b3658/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202470000000,5.498102000000,,Calanque d'En Vau ,49816,observation-34070850-ad0a-433e-932d-f6630c5b3658,https://biolit.fr/observations/observation-34070850-ad0a-433e-932d-f6630c5b3658/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0363-scaled.jpg,,FALSE, +N1,60603,sortie-34070850-ad0a-433e-932d-f6630c5b3658,https://biolit.fr/sorties/sortie-34070850-ad0a-433e-932d-f6630c5b3658/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202470000000,5.498102000000,,Calanque d'En Vau ,49818,observation-34070850-ad0a-433e-932d-f6630c5b3658-2,https://biolit.fr/observations/observation-34070850-ad0a-433e-932d-f6630c5b3658-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0366-scaled.jpg,,FALSE, +N1,60603,sortie-34070850-ad0a-433e-932d-f6630c5b3658,https://biolit.fr/sorties/sortie-34070850-ad0a-433e-932d-f6630c5b3658/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202470000000,5.498102000000,,Calanque d'En Vau ,49820,observation-34070850-ad0a-433e-932d-f6630c5b3658-3,https://biolit.fr/observations/observation-34070850-ad0a-433e-932d-f6630c5b3658-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0368-scaled.jpg,,FALSE, +N1,60603,sortie-34070850-ad0a-433e-932d-f6630c5b3658,https://biolit.fr/sorties/sortie-34070850-ad0a-433e-932d-f6630c5b3658/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202470000000,5.498102000000,,Calanque d'En Vau ,49822,observation-34070850-ad0a-433e-932d-f6630c5b3658-4,https://biolit.fr/observations/observation-34070850-ad0a-433e-932d-f6630c5b3658-4/,Pilumnus hirtellus,Pilumne hirsute,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0370-scaled.jpg,,TRUE, +N1,60603,sortie-34070850-ad0a-433e-932d-f6630c5b3658,https://biolit.fr/sorties/sortie-34070850-ad0a-433e-932d-f6630c5b3658/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202470000000,5.498102000000,,Calanque d'En Vau ,49824,observation-34070850-ad0a-433e-932d-f6630c5b3658-5,https://biolit.fr/observations/observation-34070850-ad0a-433e-932d-f6630c5b3658-5/,Pilumnus hirtellus,Pilumne hirsute,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0371-scaled.jpg,,TRUE, +N1,60603,sortie-34070850-ad0a-433e-932d-f6630c5b3658,https://biolit.fr/sorties/sortie-34070850-ad0a-433e-932d-f6630c5b3658/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202470000000,5.498102000000,,Calanque d'En Vau ,49826,observation-34070850-ad0a-433e-932d-f6630c5b3658-6,https://biolit.fr/observations/observation-34070850-ad0a-433e-932d-f6630c5b3658-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0369-scaled.jpg,,FALSE, +N1,60604,sortie-e7ebf8bd-677a-41af-a849-5d54ad15120c,https://biolit.fr/sorties/sortie-e7ebf8bd-677a-41af-a849-5d54ad15120c/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202434000000,5.498091000000,,Calanque d'En Vau ,49828,observation-e7ebf8bd-677a-41af-a849-5d54ad15120c,https://biolit.fr/observations/observation-e7ebf8bd-677a-41af-a849-5d54ad15120c/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0359-scaled.jpg,,FALSE, +N1,60604,sortie-e7ebf8bd-677a-41af-a849-5d54ad15120c,https://biolit.fr/sorties/sortie-e7ebf8bd-677a-41af-a849-5d54ad15120c/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202434000000,5.498091000000,,Calanque d'En Vau ,49829,observation-e7ebf8bd-677a-41af-a849-5d54ad15120c-2,https://biolit.fr/observations/observation-e7ebf8bd-677a-41af-a849-5d54ad15120c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0360-scaled.jpg,,FALSE, +N1,60604,sortie-e7ebf8bd-677a-41af-a849-5d54ad15120c,https://biolit.fr/sorties/sortie-e7ebf8bd-677a-41af-a849-5d54ad15120c/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202434000000,5.498091000000,,Calanque d'En Vau ,49831,observation-e7ebf8bd-677a-41af-a849-5d54ad15120c-3,https://biolit.fr/observations/observation-e7ebf8bd-677a-41af-a849-5d54ad15120c-3/,Epitonium clathrus,Scalaire,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0361-scaled.jpg,,TRUE, +N1,60604,sortie-e7ebf8bd-677a-41af-a849-5d54ad15120c,https://biolit.fr/sorties/sortie-e7ebf8bd-677a-41af-a849-5d54ad15120c/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202434000000,5.498091000000,,Calanque d'En Vau ,49832,observation-e7ebf8bd-677a-41af-a849-5d54ad15120c-4,https://biolit.fr/observations/observation-e7ebf8bd-677a-41af-a849-5d54ad15120c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0364-scaled.jpg,,FALSE, +N1,60604,sortie-e7ebf8bd-677a-41af-a849-5d54ad15120c,https://biolit.fr/sorties/sortie-e7ebf8bd-677a-41af-a849-5d54ad15120c/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202434000000,5.498091000000,,Calanque d'En Vau ,49834,observation-e7ebf8bd-677a-41af-a849-5d54ad15120c-5,https://biolit.fr/observations/observation-e7ebf8bd-677a-41af-a849-5d54ad15120c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0365-scaled.jpg,,FALSE, +N1,60604,sortie-e7ebf8bd-677a-41af-a849-5d54ad15120c,https://biolit.fr/sorties/sortie-e7ebf8bd-677a-41af-a849-5d54ad15120c/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202434000000,5.498091000000,,Calanque d'En Vau ,49836,observation-e7ebf8bd-677a-41af-a849-5d54ad15120c-6,https://biolit.fr/observations/observation-e7ebf8bd-677a-41af-a849-5d54ad15120c-6/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0362-scaled.jpg,,TRUE, +N1,60605,sortie-050aa391-bc32-42de-806d-de4c45c73bd2,https://biolit.fr/sorties/sortie-050aa391-bc32-42de-806d-de4c45c73bd2/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202446000000,5.498145000000,,Calanque d'En Vau ,49838,observation-050aa391-bc32-42de-806d-de4c45c73bd2,https://biolit.fr/observations/observation-050aa391-bc32-42de-806d-de4c45c73bd2/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0353-scaled.jpg,,TRUE, +N1,60605,sortie-050aa391-bc32-42de-806d-de4c45c73bd2,https://biolit.fr/sorties/sortie-050aa391-bc32-42de-806d-de4c45c73bd2/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202446000000,5.498145000000,,Calanque d'En Vau ,49840,observation-050aa391-bc32-42de-806d-de4c45c73bd2-2,https://biolit.fr/observations/observation-050aa391-bc32-42de-806d-de4c45c73bd2-2/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0354-scaled.jpg,,TRUE, +N1,60605,sortie-050aa391-bc32-42de-806d-de4c45c73bd2,https://biolit.fr/sorties/sortie-050aa391-bc32-42de-806d-de4c45c73bd2/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202446000000,5.498145000000,,Calanque d'En Vau ,49842,observation-050aa391-bc32-42de-806d-de4c45c73bd2-3,https://biolit.fr/observations/observation-050aa391-bc32-42de-806d-de4c45c73bd2-3/,Euthria cornea,Buccin veiné,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0355-scaled.jpg,,TRUE, +N1,60605,sortie-050aa391-bc32-42de-806d-de4c45c73bd2,https://biolit.fr/sorties/sortie-050aa391-bc32-42de-806d-de4c45c73bd2/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202446000000,5.498145000000,,Calanque d'En Vau ,49844,observation-050aa391-bc32-42de-806d-de4c45c73bd2-4,https://biolit.fr/observations/observation-050aa391-bc32-42de-806d-de4c45c73bd2-4/,Euthria cornea,Buccin veiné,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0356-scaled.jpg,,TRUE, +N1,60605,sortie-050aa391-bc32-42de-806d-de4c45c73bd2,https://biolit.fr/sorties/sortie-050aa391-bc32-42de-806d-de4c45c73bd2/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202446000000,5.498145000000,,Calanque d'En Vau ,49845,observation-050aa391-bc32-42de-806d-de4c45c73bd2-5,https://biolit.fr/observations/observation-050aa391-bc32-42de-806d-de4c45c73bd2-5/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0357-scaled.jpg,,TRUE, +N1,60605,sortie-050aa391-bc32-42de-806d-de4c45c73bd2,https://biolit.fr/sorties/sortie-050aa391-bc32-42de-806d-de4c45c73bd2/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202446000000,5.498145000000,,Calanque d'En Vau ,49847,observation-050aa391-bc32-42de-806d-de4c45c73bd2-6,https://biolit.fr/observations/observation-050aa391-bc32-42de-806d-de4c45c73bd2-6/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0358-scaled.jpg,,TRUE, +N1,60606,sortie-e3d5afe5-47d5-4efd-8331-c8f079ed0f19,https://biolit.fr/sorties/sortie-e3d5afe5-47d5-4efd-8331-c8f079ed0f19/,ludovic,,3/31/2002 0:00,12.0000000,13.0000000,43.202434000000,5.498134000000,,Calanque d'En Vau,49849,observation-e3d5afe5-47d5-4efd-8331-c8f079ed0f19,https://biolit.fr/observations/observation-e3d5afe5-47d5-4efd-8331-c8f079ed0f19/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_0345-scaled.jpg,,TRUE, +N1,60606,sortie-e3d5afe5-47d5-4efd-8331-c8f079ed0f19,https://biolit.fr/sorties/sortie-e3d5afe5-47d5-4efd-8331-c8f079ed0f19/,ludovic,,3/31/2002 0:00,12.0000000,13.0000000,43.202434000000,5.498134000000,,Calanque d'En Vau,49851,observation-e3d5afe5-47d5-4efd-8331-c8f079ed0f19-2,https://biolit.fr/observations/observation-e3d5afe5-47d5-4efd-8331-c8f079ed0f19-2/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_0346-scaled.jpg,,TRUE, +N1,60606,sortie-e3d5afe5-47d5-4efd-8331-c8f079ed0f19,https://biolit.fr/sorties/sortie-e3d5afe5-47d5-4efd-8331-c8f079ed0f19/,ludovic,,3/31/2002 0:00,12.0000000,13.0000000,43.202434000000,5.498134000000,,Calanque d'En Vau,49853,observation-e3d5afe5-47d5-4efd-8331-c8f079ed0f19-3,https://biolit.fr/observations/observation-e3d5afe5-47d5-4efd-8331-c8f079ed0f19-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0350-scaled.jpg,,TRUE,non-identifiable +N1,60606,sortie-e3d5afe5-47d5-4efd-8331-c8f079ed0f19,https://biolit.fr/sorties/sortie-e3d5afe5-47d5-4efd-8331-c8f079ed0f19/,ludovic,,3/31/2002 0:00,12.0000000,13.0000000,43.202434000000,5.498134000000,,Calanque d'En Vau,49855,observation-e3d5afe5-47d5-4efd-8331-c8f079ed0f19-4,https://biolit.fr/observations/observation-e3d5afe5-47d5-4efd-8331-c8f079ed0f19-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0351-scaled.jpg,,FALSE, +N1,60606,sortie-e3d5afe5-47d5-4efd-8331-c8f079ed0f19,https://biolit.fr/sorties/sortie-e3d5afe5-47d5-4efd-8331-c8f079ed0f19/,ludovic,,3/31/2002 0:00,12.0000000,13.0000000,43.202434000000,5.498134000000,,Calanque d'En Vau,49857,observation-e3d5afe5-47d5-4efd-8331-c8f079ed0f19-5,https://biolit.fr/observations/observation-e3d5afe5-47d5-4efd-8331-c8f079ed0f19-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0352-scaled.jpg,,FALSE, +N1,60607,sortie-a1615687-2980-47a6-84ce-34f5c89df49c,https://biolit.fr/sorties/sortie-a1615687-2980-47a6-84ce-34f5c89df49c/,claudine laden,,04/02/2017,10.0000000,12.0000000,51.051187000000,2.432296000000,,plage de leffrinckoucke,49859,observation-a1615687-2980-47a6-84ce-34f5c89df49c,https://biolit.fr/observations/observation-a1615687-2980-47a6-84ce-34f5c89df49c/,,,,https://biolit.fr/wp-content/uploads/2023/07/leffrinckouke 2017 04 02 1.jpg,,FALSE, +N1,60607,sortie-a1615687-2980-47a6-84ce-34f5c89df49c,https://biolit.fr/sorties/sortie-a1615687-2980-47a6-84ce-34f5c89df49c/,claudine laden,,04/02/2017,10.0000000,12.0000000,51.051187000000,2.432296000000,,plage de leffrinckoucke,49861,observation-a1615687-2980-47a6-84ce-34f5c89df49c-2,https://biolit.fr/observations/observation-a1615687-2980-47a6-84ce-34f5c89df49c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/leffrinckouke 2017 04 02 2.jpg,,FALSE, +N1,60608,sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b,https://biolit.fr/sorties/sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b/,cigale33,,04/02/2017,21.0000000,23.0000000,43.378735000000,-1.757153000000,,hendaye plage,49863,observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b,https://biolit.fr/observations/observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_6698.JPG,,FALSE, +N1,60608,sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b,https://biolit.fr/sorties/sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b/,cigale33,,04/02/2017,21.0000000,23.0000000,43.378735000000,-1.757153000000,,hendaye plage,49865,observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-2,https://biolit.fr/observations/observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_6700.JPG,,FALSE, +N1,60608,sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b,https://biolit.fr/sorties/sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b/,cigale33,,04/02/2017,21.0000000,23.0000000,43.378735000000,-1.757153000000,,hendaye plage,49867,observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-3,https://biolit.fr/observations/observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_6702.JPG,,FALSE, +N1,60608,sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b,https://biolit.fr/sorties/sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b/,cigale33,,04/02/2017,21.0000000,23.0000000,43.378735000000,-1.757153000000,,hendaye plage,49869,observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-4,https://biolit.fr/observations/observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_6706.JPG,,FALSE, +N1,60608,sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b,https://biolit.fr/sorties/sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b/,cigale33,,04/02/2017,21.0000000,23.0000000,43.378735000000,-1.757153000000,,hendaye plage,49871,observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-5,https://biolit.fr/observations/observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-5/,Chondria coerulescens,Chondria bleue,,https://biolit.fr/wp-content/uploads/2023/07/_MG_6711.JPG,,TRUE, +N1,60608,sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b,https://biolit.fr/sorties/sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b/,cigale33,,04/02/2017,21.0000000,23.0000000,43.378735000000,-1.757153000000,,hendaye plage,49873,observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-6,https://biolit.fr/observations/observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-6/,Euspira catena,Natice porte-chaîne,,https://biolit.fr/wp-content/uploads/2023/07/_MG_6713.JPG,,TRUE, +N1,60608,sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b,https://biolit.fr/sorties/sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b/,cigale33,,04/02/2017,21.0000000,23.0000000,43.378735000000,-1.757153000000,,hendaye plage,49875,observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-7,https://biolit.fr/observations/observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-7/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/_MG_6716.JPG,,TRUE, +N1,60608,sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b,https://biolit.fr/sorties/sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b/,cigale33,,04/02/2017,21.0000000,23.0000000,43.378735000000,-1.757153000000,,hendaye plage,49877,observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-8,https://biolit.fr/observations/observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-8/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/_MG_6722.JPG,,TRUE, +N1,60608,sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b,https://biolit.fr/sorties/sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b/,cigale33,,04/02/2017,21.0000000,23.0000000,43.378735000000,-1.757153000000,,hendaye plage,49879,observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-9,https://biolit.fr/observations/observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-9/,Chondria coerulescens,Chondria bleue,,https://biolit.fr/wp-content/uploads/2023/07/_MG_6717.JPG,,TRUE, +N1,60608,sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b,https://biolit.fr/sorties/sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b/,cigale33,,04/02/2017,21.0000000,23.0000000,43.378735000000,-1.757153000000,,hendaye plage,49881,observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-10,https://biolit.fr/observations/observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-10/,Chondria coerulescens,Chondria bleue,,https://biolit.fr/wp-content/uploads/2023/07/_MG_6721.JPG,,TRUE, +N1,60609,sortie-5feee213-44a1-452b-8c75-0ae06f62db06,https://biolit.fr/sorties/sortie-5feee213-44a1-452b-8c75-0ae06f62db06/,Phil,,3/23/2017 0:00,13.0:35,13.0:45,47.947187000000,-4.411019000000,,Pouldreuzic - Finistère,49883,observation-5feee213-44a1-452b-8c75-0ae06f62db06,https://biolit.fr/observations/observation-5feee213-44a1-452b-8c75-0ae06f62db06/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20170323_134406.jpg,,TRUE, +N1,60609,sortie-5feee213-44a1-452b-8c75-0ae06f62db06,https://biolit.fr/sorties/sortie-5feee213-44a1-452b-8c75-0ae06f62db06/,Phil,,3/23/2017 0:00,13.0:35,13.0:45,47.947187000000,-4.411019000000,,Pouldreuzic - Finistère,49885,observation-5feee213-44a1-452b-8c75-0ae06f62db06-2,https://biolit.fr/observations/observation-5feee213-44a1-452b-8c75-0ae06f62db06-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170323_134315.jpg,,FALSE, +N1,60610,sortie-d0d7ea6a-a85b-4dcf-8489-39e6800c1197,https://biolit.fr/sorties/sortie-d0d7ea6a-a85b-4dcf-8489-39e6800c1197/,Phil,,3/13/2017 0:00,13.0000000,13.0000000,47.856616000000,-3.919887000000,,Concarneau - Finistère,49887,observation-d0d7ea6a-a85b-4dcf-8489-39e6800c1197,https://biolit.fr/observations/observation-d0d7ea6a-a85b-4dcf-8489-39e6800c1197/,Balanus crenatus,Balane crénelée,,https://biolit.fr/wp-content/uploads/2023/07/P1060649.JPG,,TRUE, +N1,60610,sortie-d0d7ea6a-a85b-4dcf-8489-39e6800c1197,https://biolit.fr/sorties/sortie-d0d7ea6a-a85b-4dcf-8489-39e6800c1197/,Phil,,3/13/2017 0:00,13.0000000,13.0000000,47.856616000000,-3.919887000000,,Concarneau - Finistère,49889,observation-d0d7ea6a-a85b-4dcf-8489-39e6800c1197-2,https://biolit.fr/observations/observation-d0d7ea6a-a85b-4dcf-8489-39e6800c1197-2/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1060643.JPG,,TRUE, +N1,60610,sortie-d0d7ea6a-a85b-4dcf-8489-39e6800c1197,https://biolit.fr/sorties/sortie-d0d7ea6a-a85b-4dcf-8489-39e6800c1197/,Phil,,3/13/2017 0:00,13.0000000,13.0000000,47.856616000000,-3.919887000000,,Concarneau - Finistère,49891,observation-d0d7ea6a-a85b-4dcf-8489-39e6800c1197-3,https://biolit.fr/observations/observation-d0d7ea6a-a85b-4dcf-8489-39e6800c1197-3/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1060646_0.JPG,,TRUE, +N1,60610,sortie-d0d7ea6a-a85b-4dcf-8489-39e6800c1197,https://biolit.fr/sorties/sortie-d0d7ea6a-a85b-4dcf-8489-39e6800c1197/,Phil,,3/13/2017 0:00,13.0000000,13.0000000,47.856616000000,-3.919887000000,,Concarneau - Finistère,49893,observation-d0d7ea6a-a85b-4dcf-8489-39e6800c1197-4,https://biolit.fr/observations/observation-d0d7ea6a-a85b-4dcf-8489-39e6800c1197-4/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1060647.JPG,,TRUE, +N1,60610,sortie-d0d7ea6a-a85b-4dcf-8489-39e6800c1197,https://biolit.fr/sorties/sortie-d0d7ea6a-a85b-4dcf-8489-39e6800c1197/,Phil,,3/13/2017 0:00,13.0000000,13.0000000,47.856616000000,-3.919887000000,,Concarneau - Finistère,49895,observation-d0d7ea6a-a85b-4dcf-8489-39e6800c1197-5,https://biolit.fr/observations/observation-d0d7ea6a-a85b-4dcf-8489-39e6800c1197-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060650.JPG,,FALSE, +N1,60611,sortie-daee7a15-e38d-4d73-b6a7-3b141d5af73e,https://biolit.fr/sorties/sortie-daee7a15-e38d-4d73-b6a7-3b141d5af73e/,Romuald VIALE - EXPENATURE,,3/30/2017 0:00,18.0000000,20.0000000,43.158453000000,5.607731000000,,Baie de La Ciotat,49897,observation-daee7a15-e38d-4d73-b6a7-3b141d5af73e,https://biolit.fr/observations/observation-daee7a15-e38d-4d73-b6a7-3b141d5af73e/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/capture 2.jpeg,,TRUE, +N1,60611,sortie-daee7a15-e38d-4d73-b6a7-3b141d5af73e,https://biolit.fr/sorties/sortie-daee7a15-e38d-4d73-b6a7-3b141d5af73e/,Romuald VIALE - EXPENATURE,,3/30/2017 0:00,18.0000000,20.0000000,43.158453000000,5.607731000000,,Baie de La Ciotat,49899,observation-daee7a15-e38d-4d73-b6a7-3b141d5af73e-2,https://biolit.fr/observations/observation-daee7a15-e38d-4d73-b6a7-3b141d5af73e-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/capture.jpeg,,TRUE, +N1,60612,sortie-21d7e642-d9e3-4845-8a83-6e8e13d47cac,https://biolit.fr/sorties/sortie-21d7e642-d9e3-4845-8a83-6e8e13d47cac/,Phil,,3/27/2017 0:00,10.0000000,11.0000000,47.853810000000,-3.915450000000,,Concarneau - Finistère,49901,observation-21d7e642-d9e3-4845-8a83-6e8e13d47cac,https://biolit.fr/observations/observation-21d7e642-d9e3-4845-8a83-6e8e13d47cac/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060756.JPG,,FALSE, +N1,60612,sortie-21d7e642-d9e3-4845-8a83-6e8e13d47cac,https://biolit.fr/sorties/sortie-21d7e642-d9e3-4845-8a83-6e8e13d47cac/,Phil,,3/27/2017 0:00,10.0000000,11.0000000,47.853810000000,-3.915450000000,,Concarneau - Finistère,49903,observation-21d7e642-d9e3-4845-8a83-6e8e13d47cac-2,https://biolit.fr/observations/observation-21d7e642-d9e3-4845-8a83-6e8e13d47cac-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/P1060762.JPG,,TRUE, +N1,60613,sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265,https://biolit.fr/sorties/sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265/,ludovic,,3/29/2017 0:00,14.0000000,15.0000000,43.239866000000,5.362361000000,,le bain des dames ,49905,observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265,https://biolit.fr/observations/observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/DSC_0274-scaled.jpg,,TRUE, +N1,60613,sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265,https://biolit.fr/sorties/sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265/,ludovic,,3/29/2017 0:00,14.0000000,15.0000000,43.239866000000,5.362361000000,,le bain des dames ,49907,observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-2,https://biolit.fr/observations/observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0275-scaled.jpg,,FALSE, +N1,60613,sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265,https://biolit.fr/sorties/sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265/,ludovic,,3/29/2017 0:00,14.0000000,15.0000000,43.239866000000,5.362361000000,,le bain des dames ,49909,observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-3,https://biolit.fr/observations/observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-3/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0276-scaled.jpg,,TRUE, +N1,60613,sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265,https://biolit.fr/sorties/sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265/,ludovic,,3/29/2017 0:00,14.0000000,15.0000000,43.239866000000,5.362361000000,,le bain des dames ,49911,observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-4,https://biolit.fr/observations/observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-4/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0277-scaled.jpg,,TRUE, +N1,60613,sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265,https://biolit.fr/sorties/sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265/,ludovic,,3/29/2017 0:00,14.0000000,15.0000000,43.239866000000,5.362361000000,,le bain des dames ,49913,observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-5,https://biolit.fr/observations/observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0278-scaled.jpg,,FALSE, +N1,60613,sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265,https://biolit.fr/sorties/sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265/,ludovic,,3/29/2017 0:00,14.0000000,15.0000000,43.239866000000,5.362361000000,,le bain des dames ,49915,observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-6,https://biolit.fr/observations/observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0279-scaled.jpg,,FALSE, +N1,60613,sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265,https://biolit.fr/sorties/sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265/,ludovic,,3/29/2017 0:00,14.0000000,15.0000000,43.239866000000,5.362361000000,,le bain des dames ,49917,observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-7,https://biolit.fr/observations/observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0280-scaled.jpg,,FALSE, +N1,60613,sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265,https://biolit.fr/sorties/sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265/,ludovic,,3/29/2017 0:00,14.0000000,15.0000000,43.239866000000,5.362361000000,,le bain des dames ,49919,observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-8,https://biolit.fr/observations/observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-8/,Sertularella mediterranea,Sertularelle de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0281-scaled.jpg,,TRUE, +N1,60613,sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265,https://biolit.fr/sorties/sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265/,ludovic,,3/29/2017 0:00,14.0000000,15.0000000,43.239866000000,5.362361000000,,le bain des dames ,49921,observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-9,https://biolit.fr/observations/observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0283-scaled.jpg,,FALSE, +N1,60613,sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265,https://biolit.fr/sorties/sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265/,ludovic,,3/29/2017 0:00,14.0000000,15.0000000,43.239866000000,5.362361000000,,le bain des dames ,49923,observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-10,https://biolit.fr/observations/observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-10/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0286-scaled.jpg,,TRUE, +N1,60614,sortie-09ddf978-ab18-4ffe-a3b6-f362f62d1658,https://biolit.fr/sorties/sortie-09ddf978-ab18-4ffe-a3b6-f362f62d1658/,Phil,,03/02/2017,15.000005,15.0000000,47.970574000000,-4.44787500000,,Plozevet - Finistère,49925,observation-09ddf978-ab18-4ffe-a3b6-f362f62d1658,https://biolit.fr/observations/observation-09ddf978-ab18-4ffe-a3b6-f362f62d1658/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060314_1.JPG,,FALSE, +N1,60614,sortie-09ddf978-ab18-4ffe-a3b6-f362f62d1658,https://biolit.fr/sorties/sortie-09ddf978-ab18-4ffe-a3b6-f362f62d1658/,Phil,,03/02/2017,15.000005,15.0000000,47.970574000000,-4.44787500000,,Plozevet - Finistère,49927,observation-09ddf978-ab18-4ffe-a3b6-f362f62d1658-2,https://biolit.fr/observations/observation-09ddf978-ab18-4ffe-a3b6-f362f62d1658-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060460.JPG,,FALSE, +N1,60614,sortie-09ddf978-ab18-4ffe-a3b6-f362f62d1658,https://biolit.fr/sorties/sortie-09ddf978-ab18-4ffe-a3b6-f362f62d1658/,Phil,,03/02/2017,15.000005,15.0000000,47.970574000000,-4.44787500000,,Plozevet - Finistère,49929,observation-09ddf978-ab18-4ffe-a3b6-f362f62d1658-3,https://biolit.fr/observations/observation-09ddf978-ab18-4ffe-a3b6-f362f62d1658-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060464.JPG,,FALSE, +N1,60614,sortie-09ddf978-ab18-4ffe-a3b6-f362f62d1658,https://biolit.fr/sorties/sortie-09ddf978-ab18-4ffe-a3b6-f362f62d1658/,Phil,,03/02/2017,15.000005,15.0000000,47.970574000000,-4.44787500000,,Plozevet - Finistère,49931,observation-09ddf978-ab18-4ffe-a3b6-f362f62d1658-4,https://biolit.fr/observations/observation-09ddf978-ab18-4ffe-a3b6-f362f62d1658-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060466.JPG,,FALSE, +N1,60614,sortie-09ddf978-ab18-4ffe-a3b6-f362f62d1658,https://biolit.fr/sorties/sortie-09ddf978-ab18-4ffe-a3b6-f362f62d1658/,Phil,,03/02/2017,15.000005,15.0000000,47.970574000000,-4.44787500000,,Plozevet - Finistère,49933,observation-09ddf978-ab18-4ffe-a3b6-f362f62d1658-5,https://biolit.fr/observations/observation-09ddf978-ab18-4ffe-a3b6-f362f62d1658-5/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1060446.JPG,,TRUE, +N1,60615,sortie-0fa4abac-3ff7-44df-9801-8e4d43f84983,https://biolit.fr/sorties/sortie-0fa4abac-3ff7-44df-9801-8e4d43f84983/,Phil,,3/23/2017 0:00,13.0000000,13.0:35,47.950523000000,-4.415345000000,,Pouldreuzic - Finistère,49935,observation-0fa4abac-3ff7-44df-9801-8e4d43f84983,https://biolit.fr/observations/observation-0fa4abac-3ff7-44df-9801-8e4d43f84983/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20170323_133429.jpg,,TRUE, +N1,60615,sortie-0fa4abac-3ff7-44df-9801-8e4d43f84983,https://biolit.fr/sorties/sortie-0fa4abac-3ff7-44df-9801-8e4d43f84983/,Phil,,3/23/2017 0:00,13.0000000,13.0:35,47.950523000000,-4.415345000000,,Pouldreuzic - Finistère,49937,observation-0fa4abac-3ff7-44df-9801-8e4d43f84983-2,https://biolit.fr/observations/observation-0fa4abac-3ff7-44df-9801-8e4d43f84983-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20170323_133441.jpg,,TRUE, +N1,60615,sortie-0fa4abac-3ff7-44df-9801-8e4d43f84983,https://biolit.fr/sorties/sortie-0fa4abac-3ff7-44df-9801-8e4d43f84983/,Phil,,3/23/2017 0:00,13.0000000,13.0:35,47.950523000000,-4.415345000000,,Pouldreuzic - Finistère,49939,observation-0fa4abac-3ff7-44df-9801-8e4d43f84983-3,https://biolit.fr/observations/observation-0fa4abac-3ff7-44df-9801-8e4d43f84983-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20170323_133639.jpg,,TRUE, +N1,60615,sortie-0fa4abac-3ff7-44df-9801-8e4d43f84983,https://biolit.fr/sorties/sortie-0fa4abac-3ff7-44df-9801-8e4d43f84983/,Phil,,3/23/2017 0:00,13.0000000,13.0:35,47.950523000000,-4.415345000000,,Pouldreuzic - Finistère,49941,observation-0fa4abac-3ff7-44df-9801-8e4d43f84983-4,https://biolit.fr/observations/observation-0fa4abac-3ff7-44df-9801-8e4d43f84983-4/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20170323_133217.jpg,,TRUE, +N1,60616,sortie-f9ffbea2-d670-499f-a58a-723a310fb24f,https://biolit.fr/sorties/sortie-f9ffbea2-d670-499f-a58a-723a310fb24f/,Phil,,3/13/2017 0:00,13.0:15,13.0000000,47.857503000000,-3.91890000000,,Concarneau - Finistère,49943,observation-f9ffbea2-d670-499f-a58a-723a310fb24f,https://biolit.fr/observations/observation-f9ffbea2-d670-499f-a58a-723a310fb24f/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060631.jpg,,FALSE, +N1,60616,sortie-f9ffbea2-d670-499f-a58a-723a310fb24f,https://biolit.fr/sorties/sortie-f9ffbea2-d670-499f-a58a-723a310fb24f/,Phil,,3/13/2017 0:00,13.0:15,13.0000000,47.857503000000,-3.91890000000,,Concarneau - Finistère,49945,observation-f9ffbea2-d670-499f-a58a-723a310fb24f-2,https://biolit.fr/observations/observation-f9ffbea2-d670-499f-a58a-723a310fb24f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060629_0.JPG,,FALSE, +N1,60616,sortie-f9ffbea2-d670-499f-a58a-723a310fb24f,https://biolit.fr/sorties/sortie-f9ffbea2-d670-499f-a58a-723a310fb24f/,Phil,,3/13/2017 0:00,13.0:15,13.0000000,47.857503000000,-3.91890000000,,Concarneau - Finistère,49947,observation-f9ffbea2-d670-499f-a58a-723a310fb24f-3,https://biolit.fr/observations/observation-f9ffbea2-d670-499f-a58a-723a310fb24f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060634.JPG,,FALSE, +N1,60617,sortie-022d9591-1278-4c0b-8fa0-45d9c18627db,https://biolit.fr/sorties/sortie-022d9591-1278-4c0b-8fa0-45d9c18627db/,collège paul Eluard,,03/06/2017,14.0000000,15.0000000,50.707526000000,1.576392000000,,commune de le portel ,49949,observation-022d9591-1278-4c0b-8fa0-45d9c18627db,https://biolit.fr/observations/observation-022d9591-1278-4c0b-8fa0-45d9c18627db/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/07/jeanne-scaled.jpg,,TRUE, +N1,60617,sortie-022d9591-1278-4c0b-8fa0-45d9c18627db,https://biolit.fr/sorties/sortie-022d9591-1278-4c0b-8fa0-45d9c18627db/,collège paul Eluard,,03/06/2017,14.0000000,15.0000000,50.707526000000,1.576392000000,,commune de le portel ,49951,observation-022d9591-1278-4c0b-8fa0-45d9c18627db-2,https://biolit.fr/observations/observation-022d9591-1278-4c0b-8fa0-45d9c18627db-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/lea b.jpeg_0-scaled.jpg,,FALSE, +N1,60618,sortie-068dba4e-c059-4d5a-849a-618fb831362f,https://biolit.fr/sorties/sortie-068dba4e-c059-4d5a-849a-618fb831362f/,Phil,,3/23/2017 0:00,14.000005,14.0000000,47.979647000000,-4.44959100000,,Plozevet - Finistère,49953,observation-068dba4e-c059-4d5a-849a-618fb831362f,https://biolit.fr/observations/observation-068dba4e-c059-4d5a-849a-618fb831362f/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170323_140835.jpg,,FALSE, +N1,60619,sortie-fddfa1ff-4cf6-40aa-ad0d-c2b6c4f01459,https://biolit.fr/sorties/sortie-fddfa1ff-4cf6-40aa-ad0d-c2b6c4f01459/,Phil,,03/02/2017,14.0000000,15.0000000,47.970597000000,-4.445815000000,,Plozevet - Finistère,49955,observation-fddfa1ff-4cf6-40aa-ad0d-c2b6c4f01459,https://biolit.fr/observations/observation-fddfa1ff-4cf6-40aa-ad0d-c2b6c4f01459/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1060432.JPG,,TRUE, +N1,60619,sortie-fddfa1ff-4cf6-40aa-ad0d-c2b6c4f01459,https://biolit.fr/sorties/sortie-fddfa1ff-4cf6-40aa-ad0d-c2b6c4f01459/,Phil,,03/02/2017,14.0000000,15.0000000,47.970597000000,-4.445815000000,,Plozevet - Finistère,49957,observation-fddfa1ff-4cf6-40aa-ad0d-c2b6c4f01459-2,https://biolit.fr/observations/observation-fddfa1ff-4cf6-40aa-ad0d-c2b6c4f01459-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060427.JPG,,FALSE, +N1,60619,sortie-fddfa1ff-4cf6-40aa-ad0d-c2b6c4f01459,https://biolit.fr/sorties/sortie-fddfa1ff-4cf6-40aa-ad0d-c2b6c4f01459/,Phil,,03/02/2017,14.0000000,15.0000000,47.970597000000,-4.445815000000,,Plozevet - Finistère,49959,observation-fddfa1ff-4cf6-40aa-ad0d-c2b6c4f01459-3,https://biolit.fr/observations/observation-fddfa1ff-4cf6-40aa-ad0d-c2b6c4f01459-3/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/P1060421.JPG,,TRUE, +N1,60620,sortie-3a388275-76e8-46bc-8e54-8234d9e5683f,https://biolit.fr/sorties/sortie-3a388275-76e8-46bc-8e54-8234d9e5683f/,collège paul Eluard,,03/06/2017,14.0000000,15.0000000,50.54647600000,1.611326000000,,Wimereux,49961,observation-3a388275-76e8-46bc-8e54-8234d9e5683f,https://biolit.fr/observations/observation-3a388275-76e8-46bc-8e54-8234d9e5683f/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/vue de près-scaled.jpg,,TRUE, +N1,60621,sortie-e683b16b-1f86-442c-89ab-0eb181626e28,https://biolit.fr/sorties/sortie-e683b16b-1f86-442c-89ab-0eb181626e28/,Phil,,3/23/2017 0:00,14.0000000,14.0:15,47.978963000000,-4.45293900000,,Plozevet - Finistère,49963,observation-e683b16b-1f86-442c-89ab-0eb181626e28,https://biolit.fr/observations/observation-e683b16b-1f86-442c-89ab-0eb181626e28/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20170323_140955.jpg,,TRUE, +N1,60621,sortie-e683b16b-1f86-442c-89ab-0eb181626e28,https://biolit.fr/sorties/sortie-e683b16b-1f86-442c-89ab-0eb181626e28/,Phil,,3/23/2017 0:00,14.0000000,14.0:15,47.978963000000,-4.45293900000,,Plozevet - Finistère,49965,observation-e683b16b-1f86-442c-89ab-0eb181626e28-2,https://biolit.fr/observations/observation-e683b16b-1f86-442c-89ab-0eb181626e28-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170323_141021.jpg,,FALSE, +N1,60622,sortie-f15f61f4-3375-4b20-aedc-2c24e845e431,https://biolit.fr/sorties/sortie-f15f61f4-3375-4b20-aedc-2c24e845e431/,Phil,,3/13/2017 0:00,13.000005,13.0:15,47.856162000000,-3.920368000000,,Concarneau - Finistère,49967,observation-f15f61f4-3375-4b20-aedc-2c24e845e431,https://biolit.fr/observations/observation-f15f61f4-3375-4b20-aedc-2c24e845e431/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060623_0.JPG,,FALSE, +N1,60622,sortie-f15f61f4-3375-4b20-aedc-2c24e845e431,https://biolit.fr/sorties/sortie-f15f61f4-3375-4b20-aedc-2c24e845e431/,Phil,,3/13/2017 0:00,13.000005,13.0:15,47.856162000000,-3.920368000000,,Concarneau - Finistère,49969,observation-f15f61f4-3375-4b20-aedc-2c24e845e431-2,https://biolit.fr/observations/observation-f15f61f4-3375-4b20-aedc-2c24e845e431-2/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1060618.JPG,,TRUE, +N1,60622,sortie-f15f61f4-3375-4b20-aedc-2c24e845e431,https://biolit.fr/sorties/sortie-f15f61f4-3375-4b20-aedc-2c24e845e431/,Phil,,3/13/2017 0:00,13.000005,13.0:15,47.856162000000,-3.920368000000,,Concarneau - Finistère,49971,observation-f15f61f4-3375-4b20-aedc-2c24e845e431-3,https://biolit.fr/observations/observation-f15f61f4-3375-4b20-aedc-2c24e845e431-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060621.JPG,,FALSE, +N1,60622,sortie-f15f61f4-3375-4b20-aedc-2c24e845e431,https://biolit.fr/sorties/sortie-f15f61f4-3375-4b20-aedc-2c24e845e431/,Phil,,3/13/2017 0:00,13.000005,13.0:15,47.856162000000,-3.920368000000,,Concarneau - Finistère,49973,observation-f15f61f4-3375-4b20-aedc-2c24e845e431-4,https://biolit.fr/observations/observation-f15f61f4-3375-4b20-aedc-2c24e845e431-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1060617_0.JPG,,TRUE, +N1,60623,sortie-130e5915-7001-4e26-bf56-c8d994aafc13,https://biolit.fr/sorties/sortie-130e5915-7001-4e26-bf56-c8d994aafc13/,Phil,,2/25/2017 0:00,12.0:15,12.0000000,47.795418000000,-4.276291000000,,Léchiagat - Finistère,49975,observation-130e5915-7001-4e26-bf56-c8d994aafc13,https://biolit.fr/observations/observation-130e5915-7001-4e26-bf56-c8d994aafc13/,Echinus esculentus,Oursin globuleux,,https://biolit.fr/wp-content/uploads/2023/07/20170225_121933.jpg,,TRUE, +N1,60623,sortie-130e5915-7001-4e26-bf56-c8d994aafc13,https://biolit.fr/sorties/sortie-130e5915-7001-4e26-bf56-c8d994aafc13/,Phil,,2/25/2017 0:00,12.0:15,12.0000000,47.795418000000,-4.276291000000,,Léchiagat - Finistère,49977,observation-130e5915-7001-4e26-bf56-c8d994aafc13-2,https://biolit.fr/observations/observation-130e5915-7001-4e26-bf56-c8d994aafc13-2/,Echinus esculentus,Oursin globuleux,,https://biolit.fr/wp-content/uploads/2023/07/20170225_121903.jpg,,TRUE, +N1,60623,sortie-130e5915-7001-4e26-bf56-c8d994aafc13,https://biolit.fr/sorties/sortie-130e5915-7001-4e26-bf56-c8d994aafc13/,Phil,,2/25/2017 0:00,12.0:15,12.0000000,47.795418000000,-4.276291000000,,Léchiagat - Finistère,49979,observation-130e5915-7001-4e26-bf56-c8d994aafc13-3,https://biolit.fr/observations/observation-130e5915-7001-4e26-bf56-c8d994aafc13-3/,Echinus esculentus,Oursin globuleux,,https://biolit.fr/wp-content/uploads/2023/07/20170225_121916.jpg,,TRUE, +N1,60623,sortie-130e5915-7001-4e26-bf56-c8d994aafc13,https://biolit.fr/sorties/sortie-130e5915-7001-4e26-bf56-c8d994aafc13/,Phil,,2/25/2017 0:00,12.0:15,12.0000000,47.795418000000,-4.276291000000,,Léchiagat - Finistère,49981,observation-130e5915-7001-4e26-bf56-c8d994aafc13-4,https://biolit.fr/observations/observation-130e5915-7001-4e26-bf56-c8d994aafc13-4/,Echinus esculentus,Oursin globuleux,,https://biolit.fr/wp-content/uploads/2023/07/20170225_122045.jpg,,TRUE, +N1,60624,sortie-5bb31272-1e90-4626-9860-eb043fdd5089,https://biolit.fr/sorties/sortie-5bb31272-1e90-4626-9860-eb043fdd5089/,Phil,,03/06/2017,17.0000000,17.0000000,47.839363000000,-4.042183000000,,Mousterlin - Finistère,49983,observation-5bb31272-1e90-4626-9860-eb043fdd5089,https://biolit.fr/observations/observation-5bb31272-1e90-4626-9860-eb043fdd5089/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1060543.jpg,,TRUE, +N1,60624,sortie-5bb31272-1e90-4626-9860-eb043fdd5089,https://biolit.fr/sorties/sortie-5bb31272-1e90-4626-9860-eb043fdd5089/,Phil,,03/06/2017,17.0000000,17.0000000,47.839363000000,-4.042183000000,,Mousterlin - Finistère,49985,observation-5bb31272-1e90-4626-9860-eb043fdd5089-2,https://biolit.fr/observations/observation-5bb31272-1e90-4626-9860-eb043fdd5089-2/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1060542.JPG,,TRUE, +N1,60624,sortie-5bb31272-1e90-4626-9860-eb043fdd5089,https://biolit.fr/sorties/sortie-5bb31272-1e90-4626-9860-eb043fdd5089/,Phil,,03/06/2017,17.0000000,17.0000000,47.839363000000,-4.042183000000,,Mousterlin - Finistère,49987,observation-5bb31272-1e90-4626-9860-eb043fdd5089-3,https://biolit.fr/observations/observation-5bb31272-1e90-4626-9860-eb043fdd5089-3/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1060541.JPG,,TRUE, +N1,60625,sortie-cad0c605-9e6f-4861-b710-dfd1b7808440,https://biolit.fr/sorties/sortie-cad0c605-9e6f-4861-b710-dfd1b7808440/,Phil,,2/21/2017 0:00,16.0:55,17.000005,48.094194000000,-4.299519000000,,Douarnenez - Finistère,49989,observation-cad0c605-9e6f-4861-b710-dfd1b7808440,https://biolit.fr/observations/observation-cad0c605-9e6f-4861-b710-dfd1b7808440/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060184.JPG,,FALSE, +N1,60625,sortie-cad0c605-9e6f-4861-b710-dfd1b7808440,https://biolit.fr/sorties/sortie-cad0c605-9e6f-4861-b710-dfd1b7808440/,Phil,,2/21/2017 0:00,16.0:55,17.000005,48.094194000000,-4.299519000000,,Douarnenez - Finistère,49991,observation-cad0c605-9e6f-4861-b710-dfd1b7808440-2,https://biolit.fr/observations/observation-cad0c605-9e6f-4861-b710-dfd1b7808440-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060186.JPG,,FALSE, +N1,60625,sortie-cad0c605-9e6f-4861-b710-dfd1b7808440,https://biolit.fr/sorties/sortie-cad0c605-9e6f-4861-b710-dfd1b7808440/,Phil,,2/21/2017 0:00,16.0:55,17.000005,48.094194000000,-4.299519000000,,Douarnenez - Finistère,49993,observation-cad0c605-9e6f-4861-b710-dfd1b7808440-3,https://biolit.fr/observations/observation-cad0c605-9e6f-4861-b710-dfd1b7808440-3/,"""Sabellaria alveolata""",Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P1060190.JPG,,TRUE, +N1,60626,sortie-4f2da967-d035-4515-835e-e77a51ac497f,https://biolit.fr/sorties/sortie-4f2da967-d035-4515-835e-e77a51ac497f/,Phil,,03/02/2017,14.0:25,14.0000000,47.969539000000,-4.445514000000,,Plozévet - Finistère,49995,observation-4f2da967-d035-4515-835e-e77a51ac497f,https://biolit.fr/observations/observation-4f2da967-d035-4515-835e-e77a51ac497f/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1060325.JPG,,TRUE, +N1,60626,sortie-4f2da967-d035-4515-835e-e77a51ac497f,https://biolit.fr/sorties/sortie-4f2da967-d035-4515-835e-e77a51ac497f/,Phil,,03/02/2017,14.0:25,14.0000000,47.969539000000,-4.445514000000,,Plozévet - Finistère,49997,observation-4f2da967-d035-4515-835e-e77a51ac497f-2,https://biolit.fr/observations/observation-4f2da967-d035-4515-835e-e77a51ac497f-2/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1060317_0.JPG,,TRUE, +N1,60626,sortie-4f2da967-d035-4515-835e-e77a51ac497f,https://biolit.fr/sorties/sortie-4f2da967-d035-4515-835e-e77a51ac497f/,Phil,,03/02/2017,14.0:25,14.0000000,47.969539000000,-4.445514000000,,Plozévet - Finistère,49999,observation-4f2da967-d035-4515-835e-e77a51ac497f-3,https://biolit.fr/observations/observation-4f2da967-d035-4515-835e-e77a51ac497f-3/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1060314_0.JPG,,TRUE, +N1,60626,sortie-4f2da967-d035-4515-835e-e77a51ac497f,https://biolit.fr/sorties/sortie-4f2da967-d035-4515-835e-e77a51ac497f/,Phil,,03/02/2017,14.0:25,14.0000000,47.969539000000,-4.445514000000,,Plozévet - Finistère,50001,observation-4f2da967-d035-4515-835e-e77a51ac497f-4,https://biolit.fr/observations/observation-4f2da967-d035-4515-835e-e77a51ac497f-4/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1060315.jpg,,TRUE, +N1,60627,sortie-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24,https://biolit.fr/sorties/sortie-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24/,Phil,,3/13/2017 0:00,13.0000000,13.0:15,47.857855000000,-3.918814000000,,Concarneau - Finistère,50003,observation-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24,https://biolit.fr/observations/observation-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/P1060615_0.JPG,,TRUE, +N1,60627,sortie-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24,https://biolit.fr/sorties/sortie-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24/,Phil,,3/13/2017 0:00,13.0000000,13.0:15,47.857855000000,-3.918814000000,,Concarneau - Finistère,50005,observation-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24-2,https://biolit.fr/observations/observation-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060614_0.JPG,,FALSE, +N1,60627,sortie-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24,https://biolit.fr/sorties/sortie-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24/,Phil,,3/13/2017 0:00,13.0000000,13.0:15,47.857855000000,-3.918814000000,,Concarneau - Finistère,50007,observation-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24-3,https://biolit.fr/observations/observation-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24-3/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/P1060608.JPG,,TRUE, +N1,60627,sortie-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24,https://biolit.fr/sorties/sortie-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24/,Phil,,3/13/2017 0:00,13.0000000,13.0:15,47.857855000000,-3.918814000000,,Concarneau - Finistère,50009,observation-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24-4,https://biolit.fr/observations/observation-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24-4/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060605.JPG,,TRUE, +N1,60627,sortie-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24,https://biolit.fr/sorties/sortie-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24/,Phil,,3/13/2017 0:00,13.0000000,13.0:15,47.857855000000,-3.918814000000,,Concarneau - Finistère,50011,observation-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24-5,https://biolit.fr/observations/observation-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060601.JPG,,TRUE, +N1,60628,sortie-9ab8b355-a905-4866-88ef-604a73c08fe5,https://biolit.fr/sorties/sortie-9ab8b355-a905-4866-88ef-604a73c08fe5/,ludovic,,3/22/2017 0:00,14.0000000,15.0000000,43.236075000000,5.360016000000,,plage de la bonne brise,50013,observation-9ab8b355-a905-4866-88ef-604a73c08fe5,https://biolit.fr/observations/observation-9ab8b355-a905-4866-88ef-604a73c08fe5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0062-scaled.jpg,,FALSE, +N1,60628,sortie-9ab8b355-a905-4866-88ef-604a73c08fe5,https://biolit.fr/sorties/sortie-9ab8b355-a905-4866-88ef-604a73c08fe5/,ludovic,,3/22/2017 0:00,14.0000000,15.0000000,43.236075000000,5.360016000000,,plage de la bonne brise,50015,observation-9ab8b355-a905-4866-88ef-604a73c08fe5-2,https://biolit.fr/observations/observation-9ab8b355-a905-4866-88ef-604a73c08fe5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0064-scaled.jpg,,FALSE, +N1,60628,sortie-9ab8b355-a905-4866-88ef-604a73c08fe5,https://biolit.fr/sorties/sortie-9ab8b355-a905-4866-88ef-604a73c08fe5/,ludovic,,3/22/2017 0:00,14.0000000,15.0000000,43.236075000000,5.360016000000,,plage de la bonne brise,50016,observation-9ab8b355-a905-4866-88ef-604a73c08fe5-3,https://biolit.fr/observations/observation-9ab8b355-a905-4866-88ef-604a73c08fe5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0069_0-scaled.jpg,,FALSE, +N1,60628,sortie-9ab8b355-a905-4866-88ef-604a73c08fe5,https://biolit.fr/sorties/sortie-9ab8b355-a905-4866-88ef-604a73c08fe5/,ludovic,,3/22/2017 0:00,14.0000000,15.0000000,43.236075000000,5.360016000000,,plage de la bonne brise,50018,observation-9ab8b355-a905-4866-88ef-604a73c08fe5-4,https://biolit.fr/observations/observation-9ab8b355-a905-4866-88ef-604a73c08fe5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0070-scaled.jpg,,FALSE, +N1,60628,sortie-9ab8b355-a905-4866-88ef-604a73c08fe5,https://biolit.fr/sorties/sortie-9ab8b355-a905-4866-88ef-604a73c08fe5/,ludovic,,3/22/2017 0:00,14.0000000,15.0000000,43.236075000000,5.360016000000,,plage de la bonne brise,50020,observation-9ab8b355-a905-4866-88ef-604a73c08fe5-5,https://biolit.fr/observations/observation-9ab8b355-a905-4866-88ef-604a73c08fe5-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0074-scaled.jpg,,FALSE, +N1,60628,sortie-9ab8b355-a905-4866-88ef-604a73c08fe5,https://biolit.fr/sorties/sortie-9ab8b355-a905-4866-88ef-604a73c08fe5/,ludovic,,3/22/2017 0:00,14.0000000,15.0000000,43.236075000000,5.360016000000,,plage de la bonne brise,50022,observation-9ab8b355-a905-4866-88ef-604a73c08fe5-6,https://biolit.fr/observations/observation-9ab8b355-a905-4866-88ef-604a73c08fe5-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0075-scaled.jpg,,FALSE, +N1,60629,sortie-f1c35519-7329-4698-8231-a029d3fb43ea,https://biolit.fr/sorties/sortie-f1c35519-7329-4698-8231-a029d3fb43ea/,ludovic,,3/22/2017 0:00,14.0000000,16.0000000,43.236038000000,5.36006300000,,plage de la bonne brise,50024,observation-f1c35519-7329-4698-8231-a029d3fb43ea,https://biolit.fr/observations/observation-f1c35519-7329-4698-8231-a029d3fb43ea/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0065-scaled.jpg,,FALSE, +N1,60629,sortie-f1c35519-7329-4698-8231-a029d3fb43ea,https://biolit.fr/sorties/sortie-f1c35519-7329-4698-8231-a029d3fb43ea/,ludovic,,3/22/2017 0:00,14.0000000,16.0000000,43.236038000000,5.36006300000,,plage de la bonne brise,50026,observation-f1c35519-7329-4698-8231-a029d3fb43ea-2,https://biolit.fr/observations/observation-f1c35519-7329-4698-8231-a029d3fb43ea-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0066-scaled.jpg,,FALSE, +N1,60629,sortie-f1c35519-7329-4698-8231-a029d3fb43ea,https://biolit.fr/sorties/sortie-f1c35519-7329-4698-8231-a029d3fb43ea/,ludovic,,3/22/2017 0:00,14.0000000,16.0000000,43.236038000000,5.36006300000,,plage de la bonne brise,50028,observation-f1c35519-7329-4698-8231-a029d3fb43ea-3,https://biolit.fr/observations/observation-f1c35519-7329-4698-8231-a029d3fb43ea-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0071-scaled.jpg,,FALSE, +N1,60629,sortie-f1c35519-7329-4698-8231-a029d3fb43ea,https://biolit.fr/sorties/sortie-f1c35519-7329-4698-8231-a029d3fb43ea/,ludovic,,3/22/2017 0:00,14.0000000,16.0000000,43.236038000000,5.36006300000,,plage de la bonne brise,50030,observation-f1c35519-7329-4698-8231-a029d3fb43ea-4,https://biolit.fr/observations/observation-f1c35519-7329-4698-8231-a029d3fb43ea-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0072_0-scaled.jpg,,FALSE, +N1,60629,sortie-f1c35519-7329-4698-8231-a029d3fb43ea,https://biolit.fr/sorties/sortie-f1c35519-7329-4698-8231-a029d3fb43ea/,ludovic,,3/22/2017 0:00,14.0000000,16.0000000,43.236038000000,5.36006300000,,plage de la bonne brise,50032,observation-f1c35519-7329-4698-8231-a029d3fb43ea-5,https://biolit.fr/observations/observation-f1c35519-7329-4698-8231-a029d3fb43ea-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0073-scaled.jpg,,FALSE, +N1,60629,sortie-f1c35519-7329-4698-8231-a029d3fb43ea,https://biolit.fr/sorties/sortie-f1c35519-7329-4698-8231-a029d3fb43ea/,ludovic,,3/22/2017 0:00,14.0000000,16.0000000,43.236038000000,5.36006300000,,plage de la bonne brise,50034,observation-f1c35519-7329-4698-8231-a029d3fb43ea-6,https://biolit.fr/observations/observation-f1c35519-7329-4698-8231-a029d3fb43ea-6/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0077-scaled.jpg,,TRUE, +N1,60629,sortie-f1c35519-7329-4698-8231-a029d3fb43ea,https://biolit.fr/sorties/sortie-f1c35519-7329-4698-8231-a029d3fb43ea/,ludovic,,3/22/2017 0:00,14.0000000,16.0000000,43.236038000000,5.36006300000,,plage de la bonne brise,50036,observation-f1c35519-7329-4698-8231-a029d3fb43ea-7,https://biolit.fr/observations/observation-f1c35519-7329-4698-8231-a029d3fb43ea-7/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0078-scaled.jpg,,TRUE, +N1,60630,sortie-044eaa75-9a31-41b0-9bd9-35a9d59ce73f,https://biolit.fr/sorties/sortie-044eaa75-9a31-41b0-9bd9-35a9d59ce73f/,ludovic,,3/22/2017 0:00,15.0000000,16.0000000,43.236042000000,5.360041000000,,plage de la bonne brise,50038,observation-044eaa75-9a31-41b0-9bd9-35a9d59ce73f,https://biolit.fr/observations/observation-044eaa75-9a31-41b0-9bd9-35a9d59ce73f/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0054-scaled.jpg,,TRUE, +N1,60630,sortie-044eaa75-9a31-41b0-9bd9-35a9d59ce73f,https://biolit.fr/sorties/sortie-044eaa75-9a31-41b0-9bd9-35a9d59ce73f/,ludovic,,3/22/2017 0:00,15.0000000,16.0000000,43.236042000000,5.360041000000,,plage de la bonne brise,50040,observation-044eaa75-9a31-41b0-9bd9-35a9d59ce73f-2,https://biolit.fr/observations/observation-044eaa75-9a31-41b0-9bd9-35a9d59ce73f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0055-scaled.jpg,,FALSE, +N1,60630,sortie-044eaa75-9a31-41b0-9bd9-35a9d59ce73f,https://biolit.fr/sorties/sortie-044eaa75-9a31-41b0-9bd9-35a9d59ce73f/,ludovic,,3/22/2017 0:00,15.0000000,16.0000000,43.236042000000,5.360041000000,,plage de la bonne brise,50042,observation-044eaa75-9a31-41b0-9bd9-35a9d59ce73f-3,https://biolit.fr/observations/observation-044eaa75-9a31-41b0-9bd9-35a9d59ce73f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0056-scaled.jpg,,FALSE, +N1,60630,sortie-044eaa75-9a31-41b0-9bd9-35a9d59ce73f,https://biolit.fr/sorties/sortie-044eaa75-9a31-41b0-9bd9-35a9d59ce73f/,ludovic,,3/22/2017 0:00,15.0000000,16.0000000,43.236042000000,5.360041000000,,plage de la bonne brise,50044,observation-044eaa75-9a31-41b0-9bd9-35a9d59ce73f-4,https://biolit.fr/observations/observation-044eaa75-9a31-41b0-9bd9-35a9d59ce73f-4/,Cardita calyculata,Cardite petit calice,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0058-scaled.jpg,,TRUE, +N1,60630,sortie-044eaa75-9a31-41b0-9bd9-35a9d59ce73f,https://biolit.fr/sorties/sortie-044eaa75-9a31-41b0-9bd9-35a9d59ce73f/,ludovic,,3/22/2017 0:00,15.0000000,16.0000000,43.236042000000,5.360041000000,,plage de la bonne brise,50046,observation-044eaa75-9a31-41b0-9bd9-35a9d59ce73f-5,https://biolit.fr/observations/observation-044eaa75-9a31-41b0-9bd9-35a9d59ce73f-5/,Cardita calyculata,Cardite petit calice,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0060-scaled.jpg,,TRUE, +N1,60630,sortie-044eaa75-9a31-41b0-9bd9-35a9d59ce73f,https://biolit.fr/sorties/sortie-044eaa75-9a31-41b0-9bd9-35a9d59ce73f/,ludovic,,3/22/2017 0:00,15.0000000,16.0000000,43.236042000000,5.360041000000,,plage de la bonne brise,50048,observation-044eaa75-9a31-41b0-9bd9-35a9d59ce73f-6,https://biolit.fr/observations/observation-044eaa75-9a31-41b0-9bd9-35a9d59ce73f-6/,Cardita calyculata,Cardite petit calice,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0061-scaled.jpg,,TRUE, +N1,60631,sortie-a0144353-3f71-4334-a1dc-f0f603f47288,https://biolit.fr/sorties/sortie-a0144353-3f71-4334-a1dc-f0f603f47288/,ludovic,,3/22/2017 0:00,14.0000000,15.0000000,43.236041000000,5.360043000000,,plage de la bonne brise,50050,observation-a0144353-3f71-4334-a1dc-f0f603f47288,https://biolit.fr/observations/observation-a0144353-3f71-4334-a1dc-f0f603f47288/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0043_0-scaled.jpg,,TRUE, +N1,60631,sortie-a0144353-3f71-4334-a1dc-f0f603f47288,https://biolit.fr/sorties/sortie-a0144353-3f71-4334-a1dc-f0f603f47288/,ludovic,,3/22/2017 0:00,14.0000000,15.0000000,43.236041000000,5.360043000000,,plage de la bonne brise,50052,observation-a0144353-3f71-4334-a1dc-f0f603f47288-2,https://biolit.fr/observations/observation-a0144353-3f71-4334-a1dc-f0f603f47288-2/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0044_0-scaled.jpg,,TRUE, +N1,60631,sortie-a0144353-3f71-4334-a1dc-f0f603f47288,https://biolit.fr/sorties/sortie-a0144353-3f71-4334-a1dc-f0f603f47288/,ludovic,,3/22/2017 0:00,14.0000000,15.0000000,43.236041000000,5.360043000000,,plage de la bonne brise,50054,observation-a0144353-3f71-4334-a1dc-f0f603f47288-3,https://biolit.fr/observations/observation-a0144353-3f71-4334-a1dc-f0f603f47288-3/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0045-scaled.jpg,,TRUE, +N1,60631,sortie-a0144353-3f71-4334-a1dc-f0f603f47288,https://biolit.fr/sorties/sortie-a0144353-3f71-4334-a1dc-f0f603f47288/,ludovic,,3/22/2017 0:00,14.0000000,15.0000000,43.236041000000,5.360043000000,,plage de la bonne brise,50056,observation-a0144353-3f71-4334-a1dc-f0f603f47288-4,https://biolit.fr/observations/observation-a0144353-3f71-4334-a1dc-f0f603f47288-4/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0046_0-scaled.jpg,,TRUE, +N1,60631,sortie-a0144353-3f71-4334-a1dc-f0f603f47288,https://biolit.fr/sorties/sortie-a0144353-3f71-4334-a1dc-f0f603f47288/,ludovic,,3/22/2017 0:00,14.0000000,15.0000000,43.236041000000,5.360043000000,,plage de la bonne brise,50058,observation-a0144353-3f71-4334-a1dc-f0f603f47288-5,https://biolit.fr/observations/observation-a0144353-3f71-4334-a1dc-f0f603f47288-5/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC_0047_0-scaled.jpg,,TRUE, +N1,60631,sortie-a0144353-3f71-4334-a1dc-f0f603f47288,https://biolit.fr/sorties/sortie-a0144353-3f71-4334-a1dc-f0f603f47288/,ludovic,,3/22/2017 0:00,14.0000000,15.0000000,43.236041000000,5.360043000000,,plage de la bonne brise,50060,observation-a0144353-3f71-4334-a1dc-f0f603f47288-6,https://biolit.fr/observations/observation-a0144353-3f71-4334-a1dc-f0f603f47288-6/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC_0048-scaled.jpg,,TRUE, +N1,60631,sortie-a0144353-3f71-4334-a1dc-f0f603f47288,https://biolit.fr/sorties/sortie-a0144353-3f71-4334-a1dc-f0f603f47288/,ludovic,,3/22/2017 0:00,14.0000000,15.0000000,43.236041000000,5.360043000000,,plage de la bonne brise,50062,observation-a0144353-3f71-4334-a1dc-f0f603f47288-7,https://biolit.fr/observations/observation-a0144353-3f71-4334-a1dc-f0f603f47288-7/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0049-scaled.jpg,,TRUE, +N1,60631,sortie-a0144353-3f71-4334-a1dc-f0f603f47288,https://biolit.fr/sorties/sortie-a0144353-3f71-4334-a1dc-f0f603f47288/,ludovic,,3/22/2017 0:00,14.0000000,15.0000000,43.236041000000,5.360043000000,,plage de la bonne brise,50064,observation-a0144353-3f71-4334-a1dc-f0f603f47288-8,https://biolit.fr/observations/observation-a0144353-3f71-4334-a1dc-f0f603f47288-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0050_0-scaled.jpg,,FALSE, +N1,60632,sortie-6d26234b-d2f2-40b5-92b8-229b3a391af1,https://biolit.fr/sorties/sortie-6d26234b-d2f2-40b5-92b8-229b3a391af1/,NVanzu,,3/22/2017 0:00,14.0000000,14.0000000,43.233146000000,5.356258000000,,Plage de la bonne brise,50066,observation-6d26234b-d2f2-40b5-92b8-229b3a391af1,https://biolit.fr/observations/observation-6d26234b-d2f2-40b5-92b8-229b3a391af1/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3220172-scaled.jpg,,FALSE, +N1,60632,sortie-6d26234b-d2f2-40b5-92b8-229b3a391af1,https://biolit.fr/sorties/sortie-6d26234b-d2f2-40b5-92b8-229b3a391af1/,NVanzu,,3/22/2017 0:00,14.0000000,14.0000000,43.233146000000,5.356258000000,,Plage de la bonne brise,50068,observation-6d26234b-d2f2-40b5-92b8-229b3a391af1-2,https://biolit.fr/observations/observation-6d26234b-d2f2-40b5-92b8-229b3a391af1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3220173-scaled.jpg,,FALSE, +N1,60632,sortie-6d26234b-d2f2-40b5-92b8-229b3a391af1,https://biolit.fr/sorties/sortie-6d26234b-d2f2-40b5-92b8-229b3a391af1/,NVanzu,,3/22/2017 0:00,14.0000000,14.0000000,43.233146000000,5.356258000000,,Plage de la bonne brise,50070,observation-6d26234b-d2f2-40b5-92b8-229b3a391af1-3,https://biolit.fr/observations/observation-6d26234b-d2f2-40b5-92b8-229b3a391af1-3/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/P3220176-scaled.jpg,,TRUE, +N1,60632,sortie-6d26234b-d2f2-40b5-92b8-229b3a391af1,https://biolit.fr/sorties/sortie-6d26234b-d2f2-40b5-92b8-229b3a391af1/,NVanzu,,3/22/2017 0:00,14.0000000,14.0000000,43.233146000000,5.356258000000,,Plage de la bonne brise,50072,observation-6d26234b-d2f2-40b5-92b8-229b3a391af1-4,https://biolit.fr/observations/observation-6d26234b-d2f2-40b5-92b8-229b3a391af1-4/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/P3220177-scaled.jpg,,TRUE, +N1,60632,sortie-6d26234b-d2f2-40b5-92b8-229b3a391af1,https://biolit.fr/sorties/sortie-6d26234b-d2f2-40b5-92b8-229b3a391af1/,NVanzu,,3/22/2017 0:00,14.0000000,14.0000000,43.233146000000,5.356258000000,,Plage de la bonne brise,50074,observation-6d26234b-d2f2-40b5-92b8-229b3a391af1-5,https://biolit.fr/observations/observation-6d26234b-d2f2-40b5-92b8-229b3a391af1-5/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/P3220178-scaled.jpg,,TRUE, +N1,60632,sortie-6d26234b-d2f2-40b5-92b8-229b3a391af1,https://biolit.fr/sorties/sortie-6d26234b-d2f2-40b5-92b8-229b3a391af1/,NVanzu,,3/22/2017 0:00,14.0000000,14.0000000,43.233146000000,5.356258000000,,Plage de la bonne brise,50076,observation-6d26234b-d2f2-40b5-92b8-229b3a391af1-6,https://biolit.fr/observations/observation-6d26234b-d2f2-40b5-92b8-229b3a391af1-6/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/P3220179-scaled.jpg,,TRUE, +N1,60632,sortie-6d26234b-d2f2-40b5-92b8-229b3a391af1,https://biolit.fr/sorties/sortie-6d26234b-d2f2-40b5-92b8-229b3a391af1/,NVanzu,,3/22/2017 0:00,14.0000000,14.0000000,43.233146000000,5.356258000000,,Plage de la bonne brise,50078,observation-6d26234b-d2f2-40b5-92b8-229b3a391af1-7,https://biolit.fr/observations/observation-6d26234b-d2f2-40b5-92b8-229b3a391af1-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3220180-scaled.jpg,,FALSE, +N1,60632,sortie-6d26234b-d2f2-40b5-92b8-229b3a391af1,https://biolit.fr/sorties/sortie-6d26234b-d2f2-40b5-92b8-229b3a391af1/,NVanzu,,3/22/2017 0:00,14.0000000,14.0000000,43.233146000000,5.356258000000,,Plage de la bonne brise,50080,observation-6d26234b-d2f2-40b5-92b8-229b3a391af1-8,https://biolit.fr/observations/observation-6d26234b-d2f2-40b5-92b8-229b3a391af1-8/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/P3220182-scaled.jpg,,TRUE, +N1,60633,sortie-daf13fcd-3a2e-49bb-a547-27988412c005,https://biolit.fr/sorties/sortie-daf13fcd-3a2e-49bb-a547-27988412c005/,NVanzu,,3/22/2017 0:00,14.0000000,14.0000000,43.233201000000,5.356312000000,,Plage de la bonne brise,50082,observation-daf13fcd-3a2e-49bb-a547-27988412c005,https://biolit.fr/observations/observation-daf13fcd-3a2e-49bb-a547-27988412c005/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P3220158-scaled.jpg,,TRUE, +N1,60633,sortie-daf13fcd-3a2e-49bb-a547-27988412c005,https://biolit.fr/sorties/sortie-daf13fcd-3a2e-49bb-a547-27988412c005/,NVanzu,,3/22/2017 0:00,14.0000000,14.0000000,43.233201000000,5.356312000000,,Plage de la bonne brise,50084,observation-daf13fcd-3a2e-49bb-a547-27988412c005-2,https://biolit.fr/observations/observation-daf13fcd-3a2e-49bb-a547-27988412c005-2/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/P3220161-scaled.jpg,,TRUE, +N1,60633,sortie-daf13fcd-3a2e-49bb-a547-27988412c005,https://biolit.fr/sorties/sortie-daf13fcd-3a2e-49bb-a547-27988412c005/,NVanzu,,3/22/2017 0:00,14.0000000,14.0000000,43.233201000000,5.356312000000,,Plage de la bonne brise,50086,observation-daf13fcd-3a2e-49bb-a547-27988412c005-3,https://biolit.fr/observations/observation-daf13fcd-3a2e-49bb-a547-27988412c005-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3220162-scaled.jpg,,FALSE, +N1,60633,sortie-daf13fcd-3a2e-49bb-a547-27988412c005,https://biolit.fr/sorties/sortie-daf13fcd-3a2e-49bb-a547-27988412c005/,NVanzu,,3/22/2017 0:00,14.0000000,14.0000000,43.233201000000,5.356312000000,,Plage de la bonne brise,50088,observation-daf13fcd-3a2e-49bb-a547-27988412c005-4,https://biolit.fr/observations/observation-daf13fcd-3a2e-49bb-a547-27988412c005-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3220163-scaled.jpg,,FALSE, +N1,60633,sortie-daf13fcd-3a2e-49bb-a547-27988412c005,https://biolit.fr/sorties/sortie-daf13fcd-3a2e-49bb-a547-27988412c005/,NVanzu,,3/22/2017 0:00,14.0000000,14.0000000,43.233201000000,5.356312000000,,Plage de la bonne brise,50090,observation-daf13fcd-3a2e-49bb-a547-27988412c005-5,https://biolit.fr/observations/observation-daf13fcd-3a2e-49bb-a547-27988412c005-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3220165-scaled.jpg,,FALSE, +N1,60633,sortie-daf13fcd-3a2e-49bb-a547-27988412c005,https://biolit.fr/sorties/sortie-daf13fcd-3a2e-49bb-a547-27988412c005/,NVanzu,,3/22/2017 0:00,14.0000000,14.0000000,43.233201000000,5.356312000000,,Plage de la bonne brise,50092,observation-daf13fcd-3a2e-49bb-a547-27988412c005-6,https://biolit.fr/observations/observation-daf13fcd-3a2e-49bb-a547-27988412c005-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3220170-scaled.jpg,,FALSE, +N1,60633,sortie-daf13fcd-3a2e-49bb-a547-27988412c005,https://biolit.fr/sorties/sortie-daf13fcd-3a2e-49bb-a547-27988412c005/,NVanzu,,3/22/2017 0:00,14.0000000,14.0000000,43.233201000000,5.356312000000,,Plage de la bonne brise,50094,observation-daf13fcd-3a2e-49bb-a547-27988412c005-7,https://biolit.fr/observations/observation-daf13fcd-3a2e-49bb-a547-27988412c005-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3220171-scaled.jpg,,FALSE, +N1,60634,sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38,https://biolit.fr/sorties/sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38/,CPIE Iles de Lérins et Pays d'Azur,,03/09/2017,11.0000000,13.0000000,43.523520000000,7.032370000000,,Ile Sainte Marguerite,50096,observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38,https://biolit.fr/observations/observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38/,Callistoctopus macropus,Poulpe tacheté,,https://biolit.fr/wp-content/uploads/2023/07/20170309_112843-scaled.jpg,,TRUE, +N1,60634,sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38,https://biolit.fr/sorties/sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38/,CPIE Iles de Lérins et Pays d'Azur,,03/09/2017,11.0000000,13.0000000,43.523520000000,7.032370000000,,Ile Sainte Marguerite,50098,observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-2,https://biolit.fr/observations/observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-2/,Callistoctopus macropus,Poulpe tacheté,,https://biolit.fr/wp-content/uploads/2023/07/20170309_112846-scaled.jpg,,TRUE, +N1,60634,sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38,https://biolit.fr/sorties/sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38/,CPIE Iles de Lérins et Pays d'Azur,,03/09/2017,11.0000000,13.0000000,43.523520000000,7.032370000000,,Ile Sainte Marguerite,50100,observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-3,https://biolit.fr/observations/observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-3/,Callistoctopus macropus,Poulpe tacheté,,https://biolit.fr/wp-content/uploads/2023/07/20170309_112848-scaled.jpg,,TRUE, +N1,60634,sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38,https://biolit.fr/sorties/sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38/,CPIE Iles de Lérins et Pays d'Azur,,03/09/2017,11.0000000,13.0000000,43.523520000000,7.032370000000,,Ile Sainte Marguerite,50102,observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-4,https://biolit.fr/observations/observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-4/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/20170309_114548-scaled.jpg,,TRUE, +N1,60634,sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38,https://biolit.fr/sorties/sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38/,CPIE Iles de Lérins et Pays d'Azur,,03/09/2017,11.0000000,13.0000000,43.523520000000,7.032370000000,,Ile Sainte Marguerite,50104,observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-5,https://biolit.fr/observations/observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-5/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/2023/07/20170309_114700-scaled.jpg,,TRUE, +N1,60634,sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38,https://biolit.fr/sorties/sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38/,CPIE Iles de Lérins et Pays d'Azur,,03/09/2017,11.0000000,13.0000000,43.523520000000,7.032370000000,,Ile Sainte Marguerite,50106,observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-6,https://biolit.fr/observations/observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-6/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/20170309_114811-scaled.jpg,,TRUE, +N1,60634,sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38,https://biolit.fr/sorties/sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38/,CPIE Iles de Lérins et Pays d'Azur,,03/09/2017,11.0000000,13.0000000,43.523520000000,7.032370000000,,Ile Sainte Marguerite,50108,observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-7,https://biolit.fr/observations/observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-7/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/20170309_114822-scaled.jpg,,TRUE, +N1,60634,sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38,https://biolit.fr/sorties/sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38/,CPIE Iles de Lérins et Pays d'Azur,,03/09/2017,11.0000000,13.0000000,43.523520000000,7.032370000000,,Ile Sainte Marguerite,50110,observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-8,https://biolit.fr/observations/observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-8/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/DSCN1017.JPG,,TRUE, +N1,60634,sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38,https://biolit.fr/sorties/sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38/,CPIE Iles de Lérins et Pays d'Azur,,03/09/2017,11.0000000,13.0000000,43.523520000000,7.032370000000,,Ile Sainte Marguerite,50112,observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-9,https://biolit.fr/observations/observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN1029.JPG,,FALSE, +N1,60634,sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38,https://biolit.fr/sorties/sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38/,CPIE Iles de Lérins et Pays d'Azur,,03/09/2017,11.0000000,13.0000000,43.523520000000,7.032370000000,,Ile Sainte Marguerite,50114,observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-10,https://biolit.fr/observations/observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-10/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/DSCN1040.JPG,,TRUE, +N1,60635,sortie-7543ef6d-6966-451e-9bb9-929282c7597a,https://biolit.fr/sorties/sortie-7543ef6d-6966-451e-9bb9-929282c7597a/,Audrey,,3/15/2017 0:00,14.0000000,15.0000000,47.838959000000,-4.346708000000,,Plage de la Torche,50116,observation-7543ef6d-6966-451e-9bb9-929282c7597a,https://biolit.fr/observations/observation-7543ef6d-6966-451e-9bb9-929282c7597a/,,,,https://biolit.fr/wp-content/uploads/2023/07/Obs_Esp_Inconnue.jpg,,FALSE, +N1,60636,sortie-b392e94d-8032-4b20-abcb-34bb16ec8298,https://biolit.fr/sorties/sortie-b392e94d-8032-4b20-abcb-34bb16ec8298/,Audrey,,3/15/2017 0:00,14.0000000,15.0000000,47.838408000000,-4.348672000000,,Plage de la Torche,50118,observation-b392e94d-8032-4b20-abcb-34bb16ec8298,https://biolit.fr/observations/observation-b392e94d-8032-4b20-abcb-34bb16ec8298/,,,,https://biolit.fr/wp-content/uploads/2023/07/Obs_Moules1.jpg,,FALSE, +N1,60636,sortie-b392e94d-8032-4b20-abcb-34bb16ec8298,https://biolit.fr/sorties/sortie-b392e94d-8032-4b20-abcb-34bb16ec8298/,Audrey,,3/15/2017 0:00,14.0000000,15.0000000,47.838408000000,-4.348672000000,,Plage de la Torche,50120,observation-b392e94d-8032-4b20-abcb-34bb16ec8298-2,https://biolit.fr/observations/observation-b392e94d-8032-4b20-abcb-34bb16ec8298-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Obs_Moules2.jpg,,FALSE, +N1,60636,sortie-b392e94d-8032-4b20-abcb-34bb16ec8298,https://biolit.fr/sorties/sortie-b392e94d-8032-4b20-abcb-34bb16ec8298/,Audrey,,3/15/2017 0:00,14.0000000,15.0000000,47.838408000000,-4.348672000000,,Plage de la Torche,50122,observation-b392e94d-8032-4b20-abcb-34bb16ec8298-3,https://biolit.fr/observations/observation-b392e94d-8032-4b20-abcb-34bb16ec8298-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Obs_Moules3.jpg,,FALSE, +N1,60636,sortie-b392e94d-8032-4b20-abcb-34bb16ec8298,https://biolit.fr/sorties/sortie-b392e94d-8032-4b20-abcb-34bb16ec8298/,Audrey,,3/15/2017 0:00,14.0000000,15.0000000,47.838408000000,-4.348672000000,,Plage de la Torche,50124,observation-b392e94d-8032-4b20-abcb-34bb16ec8298-4,https://biolit.fr/observations/observation-b392e94d-8032-4b20-abcb-34bb16ec8298-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Obs_Moules4.jpg,,TRUE, +N1,60637,sortie-7663b43b-1b32-4e1b-b2a2-66b464ae07d1,https://biolit.fr/sorties/sortie-7663b43b-1b32-4e1b-b2a2-66b464ae07d1/,collège paul Eluard,,03/06/2017,14.0000000,15.0000000,50.707164000000,1.576710000000,,commune de le portel plage de ningles ,50126,observation-7663b43b-1b32-4e1b-b2a2-66b464ae07d1,https://biolit.fr/observations/observation-7663b43b-1b32-4e1b-b2a2-66b464ae07d1/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/jeanne-scaled.jpg,,TRUE, +N1,60637,sortie-7663b43b-1b32-4e1b-b2a2-66b464ae07d1,https://biolit.fr/sorties/sortie-7663b43b-1b32-4e1b-b2a2-66b464ae07d1/,collège paul Eluard,,03/06/2017,14.0000000,15.0000000,50.707164000000,1.576710000000,,commune de le portel plage de ningles ,50127,observation-7663b43b-1b32-4e1b-b2a2-66b464ae07d1-2,https://biolit.fr/observations/observation-7663b43b-1b32-4e1b-b2a2-66b464ae07d1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Clara-scaled.jpg,,FALSE, +N1,60638,sortie-11b5ed87-0e4e-42a9-a72e-ca3c85699ae1,https://biolit.fr/sorties/sortie-11b5ed87-0e4e-42a9-a72e-ca3c85699ae1/,collège paul Eluard,,03/06/2017,14.0000000,20.0000000,50.691,1.562,,Commune du Portel ,50129,observation-11b5ed87-0e4e-42a9-a72e-ca3c85699ae1,https://biolit.fr/observations/observation-11b5ed87-0e4e-42a9-a72e-ca3c85699ae1/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/BigorNanou-scaled.jpg,,TRUE, +N1,60638,sortie-11b5ed87-0e4e-42a9-a72e-ca3c85699ae1,https://biolit.fr/sorties/sortie-11b5ed87-0e4e-42a9-a72e-ca3c85699ae1/,collège paul Eluard,,03/06/2017,14.0000000,20.0000000,50.691,1.562,,Commune du Portel ,50131,observation-11b5ed87-0e4e-42a9-a72e-ca3c85699ae1-2,https://biolit.fr/observations/observation-11b5ed87-0e4e-42a9-a72e-ca3c85699ae1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/PatelleLaly-scaled.jpg,,FALSE, +N1,60639,sortie-72952314-cca1-41e1-b04a-7d1a4750b13a,https://biolit.fr/sorties/sortie-72952314-cca1-41e1-b04a-7d1a4750b13a/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209596000000,5.372547000000,,plage Calanque de Marseilleveyre,50133,observation-72952314-cca1-41e1-b04a-7d1a4750b13a,https://biolit.fr/observations/observation-72952314-cca1-41e1-b04a-7d1a4750b13a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110723.JPG,,FALSE, +N1,60639,sortie-72952314-cca1-41e1-b04a-7d1a4750b13a,https://biolit.fr/sorties/sortie-72952314-cca1-41e1-b04a-7d1a4750b13a/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209596000000,5.372547000000,,plage Calanque de Marseilleveyre,50135,observation-72952314-cca1-41e1-b04a-7d1a4750b13a-2,https://biolit.fr/observations/observation-72952314-cca1-41e1-b04a-7d1a4750b13a-2/,Striarca lactea,Striarca laiteuse,,https://biolit.fr/wp-content/uploads/2023/07/P1110725.JPG,,TRUE, +N1,60639,sortie-72952314-cca1-41e1-b04a-7d1a4750b13a,https://biolit.fr/sorties/sortie-72952314-cca1-41e1-b04a-7d1a4750b13a/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209596000000,5.372547000000,,plage Calanque de Marseilleveyre,50137,observation-72952314-cca1-41e1-b04a-7d1a4750b13a-3,https://biolit.fr/observations/observation-72952314-cca1-41e1-b04a-7d1a4750b13a-3/,Striarca lactea,Striarca laiteuse,,https://biolit.fr/wp-content/uploads/2023/07/P1110727.JPG,,TRUE, +N1,60639,sortie-72952314-cca1-41e1-b04a-7d1a4750b13a,https://biolit.fr/sorties/sortie-72952314-cca1-41e1-b04a-7d1a4750b13a/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209596000000,5.372547000000,,plage Calanque de Marseilleveyre,50139,observation-72952314-cca1-41e1-b04a-7d1a4750b13a-4,https://biolit.fr/observations/observation-72952314-cca1-41e1-b04a-7d1a4750b13a-4/,Cardita calyculata,Cardite petit calice,,https://biolit.fr/wp-content/uploads/2023/07/P1110728.JPG,,TRUE, +N1,60639,sortie-72952314-cca1-41e1-b04a-7d1a4750b13a,https://biolit.fr/sorties/sortie-72952314-cca1-41e1-b04a-7d1a4750b13a/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209596000000,5.372547000000,,plage Calanque de Marseilleveyre,50141,observation-72952314-cca1-41e1-b04a-7d1a4750b13a-5,https://biolit.fr/observations/observation-72952314-cca1-41e1-b04a-7d1a4750b13a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110730.JPG,,FALSE, +N1,60639,sortie-72952314-cca1-41e1-b04a-7d1a4750b13a,https://biolit.fr/sorties/sortie-72952314-cca1-41e1-b04a-7d1a4750b13a/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209596000000,5.372547000000,,plage Calanque de Marseilleveyre,50143,observation-72952314-cca1-41e1-b04a-7d1a4750b13a-6,https://biolit.fr/observations/observation-72952314-cca1-41e1-b04a-7d1a4750b13a-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110731.JPG,,FALSE, +N1,60639,sortie-72952314-cca1-41e1-b04a-7d1a4750b13a,https://biolit.fr/sorties/sortie-72952314-cca1-41e1-b04a-7d1a4750b13a/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209596000000,5.372547000000,,plage Calanque de Marseilleveyre,50145,observation-72952314-cca1-41e1-b04a-7d1a4750b13a-7,https://biolit.fr/observations/observation-72952314-cca1-41e1-b04a-7d1a4750b13a-7/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/P1110733.JPG,,TRUE, +N1,60639,sortie-72952314-cca1-41e1-b04a-7d1a4750b13a,https://biolit.fr/sorties/sortie-72952314-cca1-41e1-b04a-7d1a4750b13a/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209596000000,5.372547000000,,plage Calanque de Marseilleveyre,50147,observation-72952314-cca1-41e1-b04a-7d1a4750b13a-8,https://biolit.fr/observations/observation-72952314-cca1-41e1-b04a-7d1a4750b13a-8/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/P1110734.JPG,,TRUE, +N1,60640,sortie-3462feab-c059-4e60-a37a-b770064c7bfa,https://biolit.fr/sorties/sortie-3462feab-c059-4e60-a37a-b770064c7bfa/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209633000000,5.372547000000,,plage Calanque de Marseilleveyre,50149,observation-3462feab-c059-4e60-a37a-b770064c7bfa,https://biolit.fr/observations/observation-3462feab-c059-4e60-a37a-b770064c7bfa/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110711.JPG,,FALSE, +N1,60640,sortie-3462feab-c059-4e60-a37a-b770064c7bfa,https://biolit.fr/sorties/sortie-3462feab-c059-4e60-a37a-b770064c7bfa/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209633000000,5.372547000000,,plage Calanque de Marseilleveyre,50151,observation-3462feab-c059-4e60-a37a-b770064c7bfa-2,https://biolit.fr/observations/observation-3462feab-c059-4e60-a37a-b770064c7bfa-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110712.JPG,,FALSE, +N1,60640,sortie-3462feab-c059-4e60-a37a-b770064c7bfa,https://biolit.fr/sorties/sortie-3462feab-c059-4e60-a37a-b770064c7bfa/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209633000000,5.372547000000,,plage Calanque de Marseilleveyre,50153,observation-3462feab-c059-4e60-a37a-b770064c7bfa-3,https://biolit.fr/observations/observation-3462feab-c059-4e60-a37a-b770064c7bfa-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110714.JPG,,FALSE, +N1,60640,sortie-3462feab-c059-4e60-a37a-b770064c7bfa,https://biolit.fr/sorties/sortie-3462feab-c059-4e60-a37a-b770064c7bfa/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209633000000,5.372547000000,,plage Calanque de Marseilleveyre,50155,observation-3462feab-c059-4e60-a37a-b770064c7bfa-4,https://biolit.fr/observations/observation-3462feab-c059-4e60-a37a-b770064c7bfa-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110716.JPG,,FALSE, +N1,60640,sortie-3462feab-c059-4e60-a37a-b770064c7bfa,https://biolit.fr/sorties/sortie-3462feab-c059-4e60-a37a-b770064c7bfa/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209633000000,5.372547000000,,plage Calanque de Marseilleveyre,50157,observation-3462feab-c059-4e60-a37a-b770064c7bfa-5,https://biolit.fr/observations/observation-3462feab-c059-4e60-a37a-b770064c7bfa-5/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/P1110717.JPG,,TRUE, +N1,60640,sortie-3462feab-c059-4e60-a37a-b770064c7bfa,https://biolit.fr/sorties/sortie-3462feab-c059-4e60-a37a-b770064c7bfa/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209633000000,5.372547000000,,plage Calanque de Marseilleveyre,50159,observation-3462feab-c059-4e60-a37a-b770064c7bfa-6,https://biolit.fr/observations/observation-3462feab-c059-4e60-a37a-b770064c7bfa-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110719.JPG,,FALSE, +N1,60640,sortie-3462feab-c059-4e60-a37a-b770064c7bfa,https://biolit.fr/sorties/sortie-3462feab-c059-4e60-a37a-b770064c7bfa/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209633000000,5.372547000000,,plage Calanque de Marseilleveyre,50161,observation-3462feab-c059-4e60-a37a-b770064c7bfa-7,https://biolit.fr/observations/observation-3462feab-c059-4e60-a37a-b770064c7bfa-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110720.JPG,,FALSE, +N1,60640,sortie-3462feab-c059-4e60-a37a-b770064c7bfa,https://biolit.fr/sorties/sortie-3462feab-c059-4e60-a37a-b770064c7bfa/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209633000000,5.372547000000,,plage Calanque de Marseilleveyre,50163,observation-3462feab-c059-4e60-a37a-b770064c7bfa-8,https://biolit.fr/observations/observation-3462feab-c059-4e60-a37a-b770064c7bfa-8/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/P1110721.JPG,,TRUE, +N1,60641,sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d,https://biolit.fr/sorties/sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209587000000,5.372585000000,,plage Calanque de Marseilleveyre,50165,observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d,https://biolit.fr/observations/observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/2023/07/P1110688.JPG,,TRUE, +N1,60641,sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d,https://biolit.fr/sorties/sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209587000000,5.372585000000,,plage Calanque de Marseilleveyre,50167,observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d-2,https://biolit.fr/observations/observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110700.JPG,,FALSE, +N1,60641,sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d,https://biolit.fr/sorties/sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209587000000,5.372585000000,,plage Calanque de Marseilleveyre,50169,observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d-3,https://biolit.fr/observations/observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110702.JPG,,FALSE, +N1,60641,sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d,https://biolit.fr/sorties/sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209587000000,5.372585000000,,plage Calanque de Marseilleveyre,50171,observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d-4,https://biolit.fr/observations/observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d-4/,Diodora graeca,Fissurelle,,https://biolit.fr/wp-content/uploads/2023/07/P1110705_0.JPG,,TRUE, +N1,60641,sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d,https://biolit.fr/sorties/sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209587000000,5.372585000000,,plage Calanque de Marseilleveyre,50173,observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d-5,https://biolit.fr/observations/observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d-5/,Diodora graeca,Fissurelle,,https://biolit.fr/wp-content/uploads/2023/07/P1110706.JPG,,TRUE, +N1,60641,sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d,https://biolit.fr/sorties/sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209587000000,5.372585000000,,plage Calanque de Marseilleveyre,50175,observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d-6,https://biolit.fr/observations/observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110707_0.JPG,,FALSE, +N1,60641,sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d,https://biolit.fr/sorties/sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209587000000,5.372585000000,,plage Calanque de Marseilleveyre,50177,observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d-7,https://biolit.fr/observations/observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110708.JPG,,FALSE, +N1,60641,sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d,https://biolit.fr/sorties/sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209587000000,5.372585000000,,plage Calanque de Marseilleveyre,50179,observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d-8,https://biolit.fr/observations/observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110709.JPG,,FALSE, +N1,60641,sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d,https://biolit.fr/sorties/sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209587000000,5.372585000000,,plage Calanque de Marseilleveyre,50181,observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d-9,https://biolit.fr/observations/observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110710.JPG,,FALSE, +N1,60642,sortie-df4449c5-ccd3-4046-9e13-8988ce082797,https://biolit.fr/sorties/sortie-df4449c5-ccd3-4046-9e13-8988ce082797/,Phil,,3/13/2017 0:00,14.0000000,14.0000000,47.856390000000,-3.919832000000,,Concarneau - Finistère,50183,observation-df4449c5-ccd3-4046-9e13-8988ce082797,https://biolit.fr/observations/observation-df4449c5-ccd3-4046-9e13-8988ce082797/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060723.JPG,,FALSE, +N1,60642,sortie-df4449c5-ccd3-4046-9e13-8988ce082797,https://biolit.fr/sorties/sortie-df4449c5-ccd3-4046-9e13-8988ce082797/,Phil,,3/13/2017 0:00,14.0000000,14.0000000,47.856390000000,-3.919832000000,,Concarneau - Finistère,50185,observation-df4449c5-ccd3-4046-9e13-8988ce082797-2,https://biolit.fr/observations/observation-df4449c5-ccd3-4046-9e13-8988ce082797-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060724.JPG,,FALSE, +N1,60642,sortie-df4449c5-ccd3-4046-9e13-8988ce082797,https://biolit.fr/sorties/sortie-df4449c5-ccd3-4046-9e13-8988ce082797/,Phil,,3/13/2017 0:00,14.0000000,14.0000000,47.856390000000,-3.919832000000,,Concarneau - Finistère,50187,observation-df4449c5-ccd3-4046-9e13-8988ce082797-3,https://biolit.fr/observations/observation-df4449c5-ccd3-4046-9e13-8988ce082797-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060697_0.JPG,,FALSE, +N1,60642,sortie-df4449c5-ccd3-4046-9e13-8988ce082797,https://biolit.fr/sorties/sortie-df4449c5-ccd3-4046-9e13-8988ce082797/,Phil,,3/13/2017 0:00,14.0000000,14.0000000,47.856390000000,-3.919832000000,,Concarneau - Finistère,50189,observation-df4449c5-ccd3-4046-9e13-8988ce082797-4,https://biolit.fr/observations/observation-df4449c5-ccd3-4046-9e13-8988ce082797-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060705.JPG,,FALSE, +N1,60642,sortie-df4449c5-ccd3-4046-9e13-8988ce082797,https://biolit.fr/sorties/sortie-df4449c5-ccd3-4046-9e13-8988ce082797/,Phil,,3/13/2017 0:00,14.0000000,14.0000000,47.856390000000,-3.919832000000,,Concarneau - Finistère,50191,observation-df4449c5-ccd3-4046-9e13-8988ce082797-5,https://biolit.fr/observations/observation-df4449c5-ccd3-4046-9e13-8988ce082797-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060726.JPG,,FALSE, +N1,60642,sortie-df4449c5-ccd3-4046-9e13-8988ce082797,https://biolit.fr/sorties/sortie-df4449c5-ccd3-4046-9e13-8988ce082797/,Phil,,3/13/2017 0:00,14.0000000,14.0000000,47.856390000000,-3.919832000000,,Concarneau - Finistère,50193,observation-df4449c5-ccd3-4046-9e13-8988ce082797-6,https://biolit.fr/observations/observation-df4449c5-ccd3-4046-9e13-8988ce082797-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060717.JPG,,FALSE, +N1,60643,sortie-211d638b-2568-4bd2-9d5c-5f28996b3ebc,https://biolit.fr/sorties/sortie-211d638b-2568-4bd2-9d5c-5f28996b3ebc/,Phil,,2/18/2017 0:00,14.0000000,15.0000000,47.80044000000,-4.374790000000,,Penmarc'h - Finistère,50195,observation-211d638b-2568-4bd2-9d5c-5f28996b3ebc,https://biolit.fr/observations/observation-211d638b-2568-4bd2-9d5c-5f28996b3ebc/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060003.JPG,,FALSE, +N1,60643,sortie-211d638b-2568-4bd2-9d5c-5f28996b3ebc,https://biolit.fr/sorties/sortie-211d638b-2568-4bd2-9d5c-5f28996b3ebc/,Phil,,2/18/2017 0:00,14.0000000,15.0000000,47.80044000000,-4.374790000000,,Penmarc'h - Finistère,50197,observation-211d638b-2568-4bd2-9d5c-5f28996b3ebc-2,https://biolit.fr/observations/observation-211d638b-2568-4bd2-9d5c-5f28996b3ebc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060004.JPG,,FALSE, +N1,60643,sortie-211d638b-2568-4bd2-9d5c-5f28996b3ebc,https://biolit.fr/sorties/sortie-211d638b-2568-4bd2-9d5c-5f28996b3ebc/,Phil,,2/18/2017 0:00,14.0000000,15.0000000,47.80044000000,-4.374790000000,,Penmarc'h - Finistère,50199,observation-211d638b-2568-4bd2-9d5c-5f28996b3ebc-3,https://biolit.fr/observations/observation-211d638b-2568-4bd2-9d5c-5f28996b3ebc-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060001.JPG,,FALSE, +N1,60643,sortie-211d638b-2568-4bd2-9d5c-5f28996b3ebc,https://biolit.fr/sorties/sortie-211d638b-2568-4bd2-9d5c-5f28996b3ebc/,Phil,,2/18/2017 0:00,14.0000000,15.0000000,47.80044000000,-4.374790000000,,Penmarc'h - Finistère,50201,observation-211d638b-2568-4bd2-9d5c-5f28996b3ebc-4,https://biolit.fr/observations/observation-211d638b-2568-4bd2-9d5c-5f28996b3ebc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060008.JPG,,FALSE, +N1,60644,sortie-ffaa9973-b670-4d3a-a641-f82a00b78096,https://biolit.fr/sorties/sortie-ffaa9973-b670-4d3a-a641-f82a00b78096/,cigale33,,03/11/2017,21.0000000,23.0000000,43.378714000000,-1.757293000000,,Hendaye,50203,observation-ffaa9973-b670-4d3a-a641-f82a00b78096,https://biolit.fr/observations/observation-ffaa9973-b670-4d3a-a641-f82a00b78096/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_5731.JPG,,FALSE, +N1,60644,sortie-ffaa9973-b670-4d3a-a641-f82a00b78096,https://biolit.fr/sorties/sortie-ffaa9973-b670-4d3a-a641-f82a00b78096/,cigale33,,03/11/2017,21.0000000,23.0000000,43.378714000000,-1.757293000000,,Hendaye,50205,observation-ffaa9973-b670-4d3a-a641-f82a00b78096-2,https://biolit.fr/observations/observation-ffaa9973-b670-4d3a-a641-f82a00b78096-2/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/_MG_5732.JPG,,TRUE, +N1,60644,sortie-ffaa9973-b670-4d3a-a641-f82a00b78096,https://biolit.fr/sorties/sortie-ffaa9973-b670-4d3a-a641-f82a00b78096/,cigale33,,03/11/2017,21.0000000,23.0000000,43.378714000000,-1.757293000000,,Hendaye,50207,observation-ffaa9973-b670-4d3a-a641-f82a00b78096-3,https://biolit.fr/observations/observation-ffaa9973-b670-4d3a-a641-f82a00b78096-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5680.JPG,,FALSE, +N1,60644,sortie-ffaa9973-b670-4d3a-a641-f82a00b78096,https://biolit.fr/sorties/sortie-ffaa9973-b670-4d3a-a641-f82a00b78096/,cigale33,,03/11/2017,21.0000000,23.0000000,43.378714000000,-1.757293000000,,Hendaye,50209,observation-ffaa9973-b670-4d3a-a641-f82a00b78096-4,https://biolit.fr/observations/observation-ffaa9973-b670-4d3a-a641-f82a00b78096-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5691.JPG,,FALSE, +N1,60644,sortie-ffaa9973-b670-4d3a-a641-f82a00b78096,https://biolit.fr/sorties/sortie-ffaa9973-b670-4d3a-a641-f82a00b78096/,cigale33,,03/11/2017,21.0000000,23.0000000,43.378714000000,-1.757293000000,,Hendaye,50211,observation-ffaa9973-b670-4d3a-a641-f82a00b78096-5,https://biolit.fr/observations/observation-ffaa9973-b670-4d3a-a641-f82a00b78096-5/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5695.JPG,,TRUE, +N1,60644,sortie-ffaa9973-b670-4d3a-a641-f82a00b78096,https://biolit.fr/sorties/sortie-ffaa9973-b670-4d3a-a641-f82a00b78096/,cigale33,,03/11/2017,21.0000000,23.0000000,43.378714000000,-1.757293000000,,Hendaye,50213,observation-ffaa9973-b670-4d3a-a641-f82a00b78096-6,https://biolit.fr/observations/observation-ffaa9973-b670-4d3a-a641-f82a00b78096-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5698.JPG,,FALSE, +N1,60644,sortie-ffaa9973-b670-4d3a-a641-f82a00b78096,https://biolit.fr/sorties/sortie-ffaa9973-b670-4d3a-a641-f82a00b78096/,cigale33,,03/11/2017,21.0000000,23.0000000,43.378714000000,-1.757293000000,,Hendaye,50215,observation-ffaa9973-b670-4d3a-a641-f82a00b78096-7,https://biolit.fr/observations/observation-ffaa9973-b670-4d3a-a641-f82a00b78096-7/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5714.JPG,,TRUE, +N1,60645,sortie-871726cf-98a4-49de-bbad-eedb582969dc,https://biolit.fr/sorties/sortie-871726cf-98a4-49de-bbad-eedb582969dc/,Jacques-Martial,,03/11/2017,11.0:55,12.0000000,48.6741830,-1.9753480,,Dinard plage de l'écluse ,50217,observation-871726cf-98a4-49de-bbad-eedb582969dc,https://biolit.fr/observations/observation-871726cf-98a4-49de-bbad-eedb582969dc/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170311_115945-scaled.jpg,,FALSE, +N1,60646,sortie-5eee48de-580c-4898-bc66-386a8e7725a8,https://biolit.fr/sorties/sortie-5eee48de-580c-4898-bc66-386a8e7725a8/,Phil,,03/02/2017,14.0000000,14.0:45,47.966979000000,-4.455900000000,,Plozevet - Finistère,50223,observation-5eee48de-580c-4898-bc66-386a8e7725a8-3,https://biolit.fr/observations/observation-5eee48de-580c-4898-bc66-386a8e7725a8-3/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/P1060406.JPG,,TRUE, +N1,60647,sortie-5670fd6c-948b-4070-891e-1841e4c8f2ff,https://biolit.fr/sorties/sortie-5670fd6c-948b-4070-891e-1841e4c8f2ff/,Phil,,03/06/2017,17.0:45,17.0:55,47.837009000000,-4.036960000000,,Mousterlin - Finistère,50225,observation-5670fd6c-948b-4070-891e-1841e4c8f2ff,https://biolit.fr/observations/observation-5670fd6c-948b-4070-891e-1841e4c8f2ff/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1060568.JPG,,TRUE, +N1,60647,sortie-5670fd6c-948b-4070-891e-1841e4c8f2ff,https://biolit.fr/sorties/sortie-5670fd6c-948b-4070-891e-1841e4c8f2ff/,Phil,,03/06/2017,17.0:45,17.0:55,47.837009000000,-4.036960000000,,Mousterlin - Finistère,50227,observation-5670fd6c-948b-4070-891e-1841e4c8f2ff-2,https://biolit.fr/observations/observation-5670fd6c-948b-4070-891e-1841e4c8f2ff-2/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1060570.jpg,,TRUE, +N1,60647,sortie-5670fd6c-948b-4070-891e-1841e4c8f2ff,https://biolit.fr/sorties/sortie-5670fd6c-948b-4070-891e-1841e4c8f2ff/,Phil,,03/06/2017,17.0:45,17.0:55,47.837009000000,-4.036960000000,,Mousterlin - Finistère,50229,observation-5670fd6c-948b-4070-891e-1841e4c8f2ff-3,https://biolit.fr/observations/observation-5670fd6c-948b-4070-891e-1841e4c8f2ff-3/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1060571.JPG,,TRUE, +N1,60647,sortie-5670fd6c-948b-4070-891e-1841e4c8f2ff,https://biolit.fr/sorties/sortie-5670fd6c-948b-4070-891e-1841e4c8f2ff/,Phil,,03/06/2017,17.0:45,17.0:55,47.837009000000,-4.036960000000,,Mousterlin - Finistère,50231,observation-5670fd6c-948b-4070-891e-1841e4c8f2ff-4,https://biolit.fr/observations/observation-5670fd6c-948b-4070-891e-1841e4c8f2ff-4/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1060575.JPG,,TRUE, +N1,60647,sortie-5670fd6c-948b-4070-891e-1841e4c8f2ff,https://biolit.fr/sorties/sortie-5670fd6c-948b-4070-891e-1841e4c8f2ff/,Phil,,03/06/2017,17.0:45,17.0:55,47.837009000000,-4.036960000000,,Mousterlin - Finistère,50233,observation-5670fd6c-948b-4070-891e-1841e4c8f2ff-5,https://biolit.fr/observations/observation-5670fd6c-948b-4070-891e-1841e4c8f2ff-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060566.JPG,,FALSE, +N1,60648,sortie-6101d10d-5e1d-4e85-988f-b08563315e5f,https://biolit.fr/sorties/sortie-6101d10d-5e1d-4e85-988f-b08563315e5f/,Phil,,2/21/2017 0:00,17.0000000,17.0:15,48.092694000000,-4.297738000000,,Douarnenez - Finistère,50235,observation-6101d10d-5e1d-4e85-988f-b08563315e5f,https://biolit.fr/observations/observation-6101d10d-5e1d-4e85-988f-b08563315e5f/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060199.JPG,,FALSE, +N1,60648,sortie-6101d10d-5e1d-4e85-988f-b08563315e5f,https://biolit.fr/sorties/sortie-6101d10d-5e1d-4e85-988f-b08563315e5f/,Phil,,2/21/2017 0:00,17.0000000,17.0:15,48.092694000000,-4.297738000000,,Douarnenez - Finistère,50237,observation-6101d10d-5e1d-4e85-988f-b08563315e5f-2,https://biolit.fr/observations/observation-6101d10d-5e1d-4e85-988f-b08563315e5f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060201.JPG,,FALSE, +N1,60649,sortie-37e2633e-39d6-46d6-a0ea-4460929e54b4,https://biolit.fr/sorties/sortie-37e2633e-39d6-46d6-a0ea-4460929e54b4/,Phil,,03/02/2017,14.0000000,14.0000000,47.97051400000,-4.444772000000,,Plozevet - Finistère,50239,observation-37e2633e-39d6-46d6-a0ea-4460929e54b4,https://biolit.fr/observations/observation-37e2633e-39d6-46d6-a0ea-4460929e54b4/,Bifurcaria bifurcata,Bifurcaire,,https://biolit.fr/wp-content/uploads/2023/07/P1060330.JPG,,TRUE, +N1,60649,sortie-37e2633e-39d6-46d6-a0ea-4460929e54b4,https://biolit.fr/sorties/sortie-37e2633e-39d6-46d6-a0ea-4460929e54b4/,Phil,,03/02/2017,14.0000000,14.0000000,47.97051400000,-4.444772000000,,Plozevet - Finistère,50241,observation-37e2633e-39d6-46d6-a0ea-4460929e54b4-2,https://biolit.fr/observations/observation-37e2633e-39d6-46d6-a0ea-4460929e54b4-2/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/P1060329.JPG,,TRUE, +N1,60650,sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b,https://biolit.fr/sorties/sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236025000000,5.360056000000,,plage de la bonne brise,50243,observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b,https://biolit.fr/observations/observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1060-scaled.jpg,,TRUE, +N1,60650,sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b,https://biolit.fr/sorties/sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236025000000,5.360056000000,,plage de la bonne brise,50245,observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-2,https://biolit.fr/observations/observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1061-scaled.jpg,,FALSE, +N1,60650,sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b,https://biolit.fr/sorties/sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236025000000,5.360056000000,,plage de la bonne brise,50247,observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-3,https://biolit.fr/observations/observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1062-scaled.jpg,,FALSE, +N1,60650,sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b,https://biolit.fr/sorties/sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236025000000,5.360056000000,,plage de la bonne brise,50249,observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-4,https://biolit.fr/observations/observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-4/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1067-scaled.jpg,,TRUE, +N1,60650,sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b,https://biolit.fr/sorties/sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236025000000,5.360056000000,,plage de la bonne brise,50251,observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-5,https://biolit.fr/observations/observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-5/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1069-scaled.jpg,,TRUE, +N1,60650,sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b,https://biolit.fr/sorties/sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236025000000,5.360056000000,,plage de la bonne brise,50253,observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-6,https://biolit.fr/observations/observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-6/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1070-scaled.jpg,,TRUE, +N1,60650,sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b,https://biolit.fr/sorties/sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236025000000,5.360056000000,,plage de la bonne brise,50255,observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-7,https://biolit.fr/observations/observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1072-scaled.jpg,,FALSE, +N1,60650,sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b,https://biolit.fr/sorties/sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236025000000,5.360056000000,,plage de la bonne brise,50257,observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-8,https://biolit.fr/observations/observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1074-scaled.jpg,,FALSE, +N1,60650,sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b,https://biolit.fr/sorties/sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236025000000,5.360056000000,,plage de la bonne brise,50259,observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-9,https://biolit.fr/observations/observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1076-scaled.jpg,,FALSE, +N1,60650,sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b,https://biolit.fr/sorties/sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236025000000,5.360056000000,,plage de la bonne brise,50261,observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-10,https://biolit.fr/observations/observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1077-scaled.jpg,,FALSE, +N1,60650,sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b,https://biolit.fr/sorties/sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236025000000,5.360056000000,,plage de la bonne brise,50263,observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-11,https://biolit.fr/observations/observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-11/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1079-scaled.jpg,,TRUE, +N1,60650,sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b,https://biolit.fr/sorties/sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236025000000,5.360056000000,,plage de la bonne brise,50265,observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-12,https://biolit.fr/observations/observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1084-scaled.jpg,,FALSE, +N1,60650,sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b,https://biolit.fr/sorties/sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236025000000,5.360056000000,,plage de la bonne brise,50267,observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-13,https://biolit.fr/observations/observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1086-scaled.jpg,,FALSE, +N1,60651,sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c,https://biolit.fr/sorties/sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236053000000,5.360043000000,,plage de la bonne brise,50269,observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c,https://biolit.fr/observations/observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1022-scaled.jpg,,TRUE, +N1,60651,sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c,https://biolit.fr/sorties/sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236053000000,5.360043000000,,plage de la bonne brise,50271,observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-2,https://biolit.fr/observations/observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1023-scaled.jpg,,FALSE, +N1,60651,sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c,https://biolit.fr/sorties/sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236053000000,5.360043000000,,plage de la bonne brise,50273,observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-3,https://biolit.fr/observations/observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1024-scaled.jpg,,FALSE, +N1,60651,sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c,https://biolit.fr/sorties/sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236053000000,5.360043000000,,plage de la bonne brise,50275,observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-4,https://biolit.fr/observations/observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-4/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1026-scaled.jpg,,TRUE, +N1,60651,sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c,https://biolit.fr/sorties/sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236053000000,5.360043000000,,plage de la bonne brise,50277,observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-5,https://biolit.fr/observations/observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-5/,Halopteris scoparia,Algue balai,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1027-scaled.jpg,,TRUE, +N1,60651,sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c,https://biolit.fr/sorties/sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236053000000,5.360043000000,,plage de la bonne brise,50279,observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-6,https://biolit.fr/observations/observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-6/,Halopteris scoparia,Algue balai,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1032-scaled.jpg,,TRUE, +N1,60651,sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c,https://biolit.fr/sorties/sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236053000000,5.360043000000,,plage de la bonne brise,50281,observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-7,https://biolit.fr/observations/observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1033-scaled.jpg,,FALSE, +N1,60651,sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c,https://biolit.fr/sorties/sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236053000000,5.360043000000,,plage de la bonne brise,50283,observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-8,https://biolit.fr/observations/observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-8/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1036-scaled.jpg,,TRUE, +N1,60651,sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c,https://biolit.fr/sorties/sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236053000000,5.360043000000,,plage de la bonne brise,50285,observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-9,https://biolit.fr/observations/observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1035-scaled.jpg,,FALSE, +N1,60651,sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c,https://biolit.fr/sorties/sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236053000000,5.360043000000,,plage de la bonne brise,50287,observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-10,https://biolit.fr/observations/observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-10/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1037-scaled.jpg,,TRUE, +N1,60651,sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c,https://biolit.fr/sorties/sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236053000000,5.360043000000,,plage de la bonne brise,50289,observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-11,https://biolit.fr/observations/observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1058-scaled.jpg,,FALSE, +N1,60652,sortie-f439e7da-32c8-4199-b42d-0364f32bee76,https://biolit.fr/sorties/sortie-f439e7da-32c8-4199-b42d-0364f32bee76/,Phil,,03/06/2017,17.0000000,17.0000000,47.84090400000,-4.037973000000,,Mousterlin - Finistère,50291,observation-f439e7da-32c8-4199-b42d-0364f32bee76,https://biolit.fr/observations/observation-f439e7da-32c8-4199-b42d-0364f32bee76/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060558.JPG,,FALSE, +N1,60652,sortie-f439e7da-32c8-4199-b42d-0364f32bee76,https://biolit.fr/sorties/sortie-f439e7da-32c8-4199-b42d-0364f32bee76/,Phil,,03/06/2017,17.0000000,17.0000000,47.84090400000,-4.037973000000,,Mousterlin - Finistère,50293,observation-f439e7da-32c8-4199-b42d-0364f32bee76-2,https://biolit.fr/observations/observation-f439e7da-32c8-4199-b42d-0364f32bee76-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060553.jpg,,FALSE, +N1,60652,sortie-f439e7da-32c8-4199-b42d-0364f32bee76,https://biolit.fr/sorties/sortie-f439e7da-32c8-4199-b42d-0364f32bee76/,Phil,,03/06/2017,17.0000000,17.0000000,47.84090400000,-4.037973000000,,Mousterlin - Finistère,50295,observation-f439e7da-32c8-4199-b42d-0364f32bee76-3,https://biolit.fr/observations/observation-f439e7da-32c8-4199-b42d-0364f32bee76-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060551.JPG,,FALSE, +N1,60652,sortie-f439e7da-32c8-4199-b42d-0364f32bee76,https://biolit.fr/sorties/sortie-f439e7da-32c8-4199-b42d-0364f32bee76/,Phil,,03/06/2017,17.0000000,17.0000000,47.84090400000,-4.037973000000,,Mousterlin - Finistère,50297,observation-f439e7da-32c8-4199-b42d-0364f32bee76-4,https://biolit.fr/observations/observation-f439e7da-32c8-4199-b42d-0364f32bee76-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060564.JPG,,FALSE, +N1,60653,sortie-49198149-0ab9-4e47-aabf-ca2ce3d892ce,https://biolit.fr/sorties/sortie-49198149-0ab9-4e47-aabf-ca2ce3d892ce/,Phil,,03/02/2017,15.0000000,15.000005,47.969764000000,-4.442665000000,,Plozevet - Finistère,50299,observation-49198149-0ab9-4e47-aabf-ca2ce3d892ce,https://biolit.fr/observations/observation-49198149-0ab9-4e47-aabf-ca2ce3d892ce/,Gaidropsarus mediterraneus,Motelle à trois barbillons,,https://biolit.fr/wp-content/uploads/2023/07/P1060440.JPG,,TRUE, +N1,60653,sortie-49198149-0ab9-4e47-aabf-ca2ce3d892ce,https://biolit.fr/sorties/sortie-49198149-0ab9-4e47-aabf-ca2ce3d892ce/,Phil,,03/02/2017,15.0000000,15.000005,47.969764000000,-4.442665000000,,Plozevet - Finistère,50301,observation-49198149-0ab9-4e47-aabf-ca2ce3d892ce-2,https://biolit.fr/observations/observation-49198149-0ab9-4e47-aabf-ca2ce3d892ce-2/,Gaidropsarus mediterraneus,Motelle à trois barbillons,,https://biolit.fr/wp-content/uploads/2023/07/P1060436.jpg,,TRUE, +N1,60653,sortie-49198149-0ab9-4e47-aabf-ca2ce3d892ce,https://biolit.fr/sorties/sortie-49198149-0ab9-4e47-aabf-ca2ce3d892ce/,Phil,,03/02/2017,15.0000000,15.000005,47.969764000000,-4.442665000000,,Plozevet - Finistère,50303,observation-49198149-0ab9-4e47-aabf-ca2ce3d892ce-3,https://biolit.fr/observations/observation-49198149-0ab9-4e47-aabf-ca2ce3d892ce-3/,Gaidropsarus mediterraneus,Motelle à trois barbillons,,https://biolit.fr/wp-content/uploads/2023/07/P1060437.JPG,,TRUE, +N1,60653,sortie-49198149-0ab9-4e47-aabf-ca2ce3d892ce,https://biolit.fr/sorties/sortie-49198149-0ab9-4e47-aabf-ca2ce3d892ce/,Phil,,03/02/2017,15.0000000,15.000005,47.969764000000,-4.442665000000,,Plozevet - Finistère,50305,observation-49198149-0ab9-4e47-aabf-ca2ce3d892ce-4,https://biolit.fr/observations/observation-49198149-0ab9-4e47-aabf-ca2ce3d892ce-4/,Gaidropsarus mediterraneus,Motelle à trois barbillons,,https://biolit.fr/wp-content/uploads/2023/07/P1060439.JPG,,TRUE, +N1,60654,sortie-c7f608c4-a424-40eb-b0a3-640e635650a3,https://biolit.fr/sorties/sortie-c7f608c4-a424-40eb-b0a3-640e635650a3/,Phil,,2/18/2017 0:00,14.0:55,15.0000000,47.800377000000,-4.382463000000,,Penmarc'h - Finistère,50307,observation-c7f608c4-a424-40eb-b0a3-640e635650a3,https://biolit.fr/observations/observation-c7f608c4-a424-40eb-b0a3-640e635650a3/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/2023/07/P1050998.JPG,,TRUE, +N1,60654,sortie-c7f608c4-a424-40eb-b0a3-640e635650a3,https://biolit.fr/sorties/sortie-c7f608c4-a424-40eb-b0a3-640e635650a3/,Phil,,2/18/2017 0:00,14.0:55,15.0000000,47.800377000000,-4.382463000000,,Penmarc'h - Finistère,50309,observation-c7f608c4-a424-40eb-b0a3-640e635650a3-2,https://biolit.fr/observations/observation-c7f608c4-a424-40eb-b0a3-640e635650a3-2/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/2023/07/P1050985.JPG,,TRUE, +N1,60654,sortie-c7f608c4-a424-40eb-b0a3-640e635650a3,https://biolit.fr/sorties/sortie-c7f608c4-a424-40eb-b0a3-640e635650a3/,Phil,,2/18/2017 0:00,14.0:55,15.0000000,47.800377000000,-4.382463000000,,Penmarc'h - Finistère,50311,observation-c7f608c4-a424-40eb-b0a3-640e635650a3-3,https://biolit.fr/observations/observation-c7f608c4-a424-40eb-b0a3-640e635650a3-3/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/2023/07/P1050991.JPG,,TRUE, +N1,60654,sortie-c7f608c4-a424-40eb-b0a3-640e635650a3,https://biolit.fr/sorties/sortie-c7f608c4-a424-40eb-b0a3-640e635650a3/,Phil,,2/18/2017 0:00,14.0:55,15.0000000,47.800377000000,-4.382463000000,,Penmarc'h - Finistère,50313,observation-c7f608c4-a424-40eb-b0a3-640e635650a3-4,https://biolit.fr/observations/observation-c7f608c4-a424-40eb-b0a3-640e635650a3-4/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/2023/07/P1050996.jpg,,TRUE, +N1,60655,sortie-3ca91d31-4971-49bc-9e24-60db47236703,https://biolit.fr/sorties/sortie-3ca91d31-4971-49bc-9e24-60db47236703/,Phil,,03/06/2017,17.0000000,17.0000000,47.841172000000,-4.04016200000,,Mousterlin - Finistère,50315,observation-3ca91d31-4971-49bc-9e24-60db47236703,https://biolit.fr/observations/observation-3ca91d31-4971-49bc-9e24-60db47236703/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/P1060524.jpg,,TRUE, +N1,60655,sortie-3ca91d31-4971-49bc-9e24-60db47236703,https://biolit.fr/sorties/sortie-3ca91d31-4971-49bc-9e24-60db47236703/,Phil,,03/06/2017,17.0000000,17.0000000,47.841172000000,-4.04016200000,,Mousterlin - Finistère,50317,observation-3ca91d31-4971-49bc-9e24-60db47236703-2,https://biolit.fr/observations/observation-3ca91d31-4971-49bc-9e24-60db47236703-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060525.JPG,,FALSE, +N1,60655,sortie-3ca91d31-4971-49bc-9e24-60db47236703,https://biolit.fr/sorties/sortie-3ca91d31-4971-49bc-9e24-60db47236703/,Phil,,03/06/2017,17.0000000,17.0000000,47.841172000000,-4.04016200000,,Mousterlin - Finistère,50319,observation-3ca91d31-4971-49bc-9e24-60db47236703-3,https://biolit.fr/observations/observation-3ca91d31-4971-49bc-9e24-60db47236703-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060521.JPG,,TRUE, +N1,60655,sortie-3ca91d31-4971-49bc-9e24-60db47236703,https://biolit.fr/sorties/sortie-3ca91d31-4971-49bc-9e24-60db47236703/,Phil,,03/06/2017,17.0000000,17.0000000,47.841172000000,-4.04016200000,,Mousterlin - Finistère,50321,observation-3ca91d31-4971-49bc-9e24-60db47236703-4,https://biolit.fr/observations/observation-3ca91d31-4971-49bc-9e24-60db47236703-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060527.JPG,,FALSE, +N1,60655,sortie-3ca91d31-4971-49bc-9e24-60db47236703,https://biolit.fr/sorties/sortie-3ca91d31-4971-49bc-9e24-60db47236703/,Phil,,03/06/2017,17.0000000,17.0000000,47.841172000000,-4.04016200000,,Mousterlin - Finistère,50323,observation-3ca91d31-4971-49bc-9e24-60db47236703-5,https://biolit.fr/observations/observation-3ca91d31-4971-49bc-9e24-60db47236703-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060531.JPG,,FALSE, +N1,60655,sortie-3ca91d31-4971-49bc-9e24-60db47236703,https://biolit.fr/sorties/sortie-3ca91d31-4971-49bc-9e24-60db47236703/,Phil,,03/06/2017,17.0000000,17.0000000,47.841172000000,-4.04016200000,,Mousterlin - Finistère,50325,observation-3ca91d31-4971-49bc-9e24-60db47236703-6,https://biolit.fr/observations/observation-3ca91d31-4971-49bc-9e24-60db47236703-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060533.JPG,,FALSE, +N1,60656,sortie-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89,https://biolit.fr/sorties/sortie-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89/,Phil,,2/18/2017 0:00,14.0:45,14.0:55,47.800310000000,-4.379502000000,,Penmarc'h - Finistère,50327,observation-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89,https://biolit.fr/observations/observation-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89/,Vertebrata lanosa,Pompon des ascophylles,,https://biolit.fr/wp-content/uploads/2023/07/P1050922_6.jpg,,TRUE, +N1,60656,sortie-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89,https://biolit.fr/sorties/sortie-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89/,Phil,,2/18/2017 0:00,14.0:45,14.0:55,47.800310000000,-4.379502000000,,Penmarc'h - Finistère,50329,observation-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89-2,https://biolit.fr/observations/observation-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050966_1.jpg,,FALSE, +N1,60656,sortie-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89,https://biolit.fr/sorties/sortie-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89/,Phil,,2/18/2017 0:00,14.0:45,14.0:55,47.800310000000,-4.379502000000,,Penmarc'h - Finistère,50331,observation-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89-3,https://biolit.fr/observations/observation-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050963_1.JPG,,FALSE, +N1,60656,sortie-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89,https://biolit.fr/sorties/sortie-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89/,Phil,,2/18/2017 0:00,14.0:45,14.0:55,47.800310000000,-4.379502000000,,Penmarc'h - Finistère,50333,observation-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89-4,https://biolit.fr/observations/observation-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89-4/,Anurida maritima,Collembole marin,,https://biolit.fr/wp-content/uploads/2023/07/P1050974_2.JPG,,TRUE, +N1,60656,sortie-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89,https://biolit.fr/sorties/sortie-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89/,Phil,,2/18/2017 0:00,14.0:45,14.0:55,47.800310000000,-4.379502000000,,Penmarc'h - Finistère,50335,observation-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89-5,https://biolit.fr/observations/observation-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050971_0.JPG,,TRUE, +N1,60657,sortie-a6452fd4-4305-47f2-9c6a-8cb32dd94c49,https://biolit.fr/sorties/sortie-a6452fd4-4305-47f2-9c6a-8cb32dd94c49/,Phil,,03/02/2017,14.0000000,14.0000000,47.970527000000,-4.445669000000,,Plozevet - Finistère,50337,observation-a6452fd4-4305-47f2-9c6a-8cb32dd94c49,https://biolit.fr/observations/observation-a6452fd4-4305-47f2-9c6a-8cb32dd94c49/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060293.JPG,,FALSE, +N1,60657,sortie-a6452fd4-4305-47f2-9c6a-8cb32dd94c49,https://biolit.fr/sorties/sortie-a6452fd4-4305-47f2-9c6a-8cb32dd94c49/,Phil,,03/02/2017,14.0000000,14.0000000,47.970527000000,-4.445669000000,,Plozevet - Finistère,50339,observation-a6452fd4-4305-47f2-9c6a-8cb32dd94c49-2,https://biolit.fr/observations/observation-a6452fd4-4305-47f2-9c6a-8cb32dd94c49-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060294.JPG,,FALSE, +N1,60657,sortie-a6452fd4-4305-47f2-9c6a-8cb32dd94c49,https://biolit.fr/sorties/sortie-a6452fd4-4305-47f2-9c6a-8cb32dd94c49/,Phil,,03/02/2017,14.0000000,14.0000000,47.970527000000,-4.445669000000,,Plozevet - Finistère,50341,observation-a6452fd4-4305-47f2-9c6a-8cb32dd94c49-3,https://biolit.fr/observations/observation-a6452fd4-4305-47f2-9c6a-8cb32dd94c49-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060298.JPG,,FALSE, +N1,60657,sortie-a6452fd4-4305-47f2-9c6a-8cb32dd94c49,https://biolit.fr/sorties/sortie-a6452fd4-4305-47f2-9c6a-8cb32dd94c49/,Phil,,03/02/2017,14.0000000,14.0000000,47.970527000000,-4.445669000000,,Plozevet - Finistère,50343,observation-a6452fd4-4305-47f2-9c6a-8cb32dd94c49-4,https://biolit.fr/observations/observation-a6452fd4-4305-47f2-9c6a-8cb32dd94c49-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060302.JPG,,FALSE, +N1,60658,sortie-ab47895c-ccda-47d4-99fa-612f89236f45,https://biolit.fr/sorties/sortie-ab47895c-ccda-47d4-99fa-612f89236f45/,Phil,,2/21/2017 0:00,16.0000000,17.0000000,48.094241000000,-4.299366000000,,Douarnenez - Finistère,50345,observation-ab47895c-ccda-47d4-99fa-612f89236f45,https://biolit.fr/observations/observation-ab47895c-ccda-47d4-99fa-612f89236f45/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060167.JPG,,FALSE, +N1,60658,sortie-ab47895c-ccda-47d4-99fa-612f89236f45,https://biolit.fr/sorties/sortie-ab47895c-ccda-47d4-99fa-612f89236f45/,Phil,,2/21/2017 0:00,16.0000000,17.0000000,48.094241000000,-4.299366000000,,Douarnenez - Finistère,50347,observation-ab47895c-ccda-47d4-99fa-612f89236f45-2,https://biolit.fr/observations/observation-ab47895c-ccda-47d4-99fa-612f89236f45-2/,Anurida maritima,Collembole marin,,https://biolit.fr/wp-content/uploads/2023/07/P1060162.JPG,,TRUE, +N1,60658,sortie-ab47895c-ccda-47d4-99fa-612f89236f45,https://biolit.fr/sorties/sortie-ab47895c-ccda-47d4-99fa-612f89236f45/,Phil,,2/21/2017 0:00,16.0000000,17.0000000,48.094241000000,-4.299366000000,,Douarnenez - Finistère,50349,observation-ab47895c-ccda-47d4-99fa-612f89236f45-3,https://biolit.fr/observations/observation-ab47895c-ccda-47d4-99fa-612f89236f45-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060169.JPG,,FALSE, +N1,60658,sortie-ab47895c-ccda-47d4-99fa-612f89236f45,https://biolit.fr/sorties/sortie-ab47895c-ccda-47d4-99fa-612f89236f45/,Phil,,2/21/2017 0:00,16.0000000,17.0000000,48.094241000000,-4.299366000000,,Douarnenez - Finistère,50351,observation-ab47895c-ccda-47d4-99fa-612f89236f45-4,https://biolit.fr/observations/observation-ab47895c-ccda-47d4-99fa-612f89236f45-4/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/P1060175.JPG,,TRUE, +N1,60659,sortie-9d3ceeac-875d-4092-82e8-011790a8b508,https://biolit.fr/sorties/sortie-9d3ceeac-875d-4092-82e8-011790a8b508/,Phil,,03/06/2017,8.0000000,10.0000000,47.969154000000,-4.445611000000,,Plozevet - Finistère,50353,observation-9d3ceeac-875d-4092-82e8-011790a8b508,https://biolit.fr/observations/observation-9d3ceeac-875d-4092-82e8-011790a8b508/,Phalacrocorax aristotelis,Cormoran huppé,,https://biolit.fr/wp-content/uploads/2023/07/P1060305_0.JPG,,TRUE, +N1,60659,sortie-9d3ceeac-875d-4092-82e8-011790a8b508,https://biolit.fr/sorties/sortie-9d3ceeac-875d-4092-82e8-011790a8b508/,Phil,,03/06/2017,8.0000000,10.0000000,47.969154000000,-4.445611000000,,Plozevet - Finistère,50355,observation-9d3ceeac-875d-4092-82e8-011790a8b508-2,https://biolit.fr/observations/observation-9d3ceeac-875d-4092-82e8-011790a8b508-2/,Phalacrocorax aristotelis,Cormoran huppé,,https://biolit.fr/wp-content/uploads/2023/07/P1060308.JPG,,TRUE, +N1,60659,sortie-9d3ceeac-875d-4092-82e8-011790a8b508,https://biolit.fr/sorties/sortie-9d3ceeac-875d-4092-82e8-011790a8b508/,Phil,,03/06/2017,8.0000000,10.0000000,47.969154000000,-4.445611000000,,Plozevet - Finistère,50357,observation-9d3ceeac-875d-4092-82e8-011790a8b508-3,https://biolit.fr/observations/observation-9d3ceeac-875d-4092-82e8-011790a8b508-3/,Phalacrocorax aristotelis,Cormoran huppé,,https://biolit.fr/wp-content/uploads/2023/07/P1060311_0.JPG,,TRUE, +N1,60660,sortie-1888ed42-95ce-4d9b-81de-47bbe3228b2c,https://biolit.fr/sorties/sortie-1888ed42-95ce-4d9b-81de-47bbe3228b2c/,Phil,,03/05/2017,20.0000000,22.0000000,47.97221000000,-4.439890000000,,Plozevet - Finistère,50359,observation-1888ed42-95ce-4d9b-81de-47bbe3228b2c,https://biolit.fr/observations/observation-1888ed42-95ce-4d9b-81de-47bbe3228b2c/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060477_6.JPG,,FALSE, +N1,60660,sortie-1888ed42-95ce-4d9b-81de-47bbe3228b2c,https://biolit.fr/sorties/sortie-1888ed42-95ce-4d9b-81de-47bbe3228b2c/,Phil,,03/05/2017,20.0000000,22.0000000,47.97221000000,-4.439890000000,,Plozevet - Finistère,50361,observation-1888ed42-95ce-4d9b-81de-47bbe3228b2c-2,https://biolit.fr/observations/observation-1888ed42-95ce-4d9b-81de-47bbe3228b2c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060479.JPG,,FALSE, +N1,60660,sortie-1888ed42-95ce-4d9b-81de-47bbe3228b2c,https://biolit.fr/sorties/sortie-1888ed42-95ce-4d9b-81de-47bbe3228b2c/,Phil,,03/05/2017,20.0000000,22.0000000,47.97221000000,-4.439890000000,,Plozevet - Finistère,50363,observation-1888ed42-95ce-4d9b-81de-47bbe3228b2c-3,https://biolit.fr/observations/observation-1888ed42-95ce-4d9b-81de-47bbe3228b2c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060480_0.JPG,,FALSE, +N1,60660,sortie-1888ed42-95ce-4d9b-81de-47bbe3228b2c,https://biolit.fr/sorties/sortie-1888ed42-95ce-4d9b-81de-47bbe3228b2c/,Phil,,03/05/2017,20.0000000,22.0000000,47.97221000000,-4.439890000000,,Plozevet - Finistère,50365,observation-1888ed42-95ce-4d9b-81de-47bbe3228b2c-4,https://biolit.fr/observations/observation-1888ed42-95ce-4d9b-81de-47bbe3228b2c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060481.JPG,,FALSE, +N1,60660,sortie-1888ed42-95ce-4d9b-81de-47bbe3228b2c,https://biolit.fr/sorties/sortie-1888ed42-95ce-4d9b-81de-47bbe3228b2c/,Phil,,03/05/2017,20.0000000,22.0000000,47.97221000000,-4.439890000000,,Plozevet - Finistère,50367,observation-1888ed42-95ce-4d9b-81de-47bbe3228b2c-5,https://biolit.fr/observations/observation-1888ed42-95ce-4d9b-81de-47bbe3228b2c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060483.JPG,,FALSE, +N1,60661,sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82,https://biolit.fr/sorties/sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82/,Phil,,2/18/2017 0:00,14.0:15,14.0:25,47.798768000000,-4.380137000000,,Penmarc'h - Finistère,50369,observation-c38502ce-49a6-4da3-865a-f77c95d7dd82,https://biolit.fr/observations/observation-c38502ce-49a6-4da3-865a-f77c95d7dd82/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050897_3.JPG,,FALSE, +N1,60661,sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82,https://biolit.fr/sorties/sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82/,Phil,,2/18/2017 0:00,14.0:15,14.0:25,47.798768000000,-4.380137000000,,Penmarc'h - Finistère,50371,observation-c38502ce-49a6-4da3-865a-f77c95d7dd82-2,https://biolit.fr/observations/observation-c38502ce-49a6-4da3-865a-f77c95d7dd82-2/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/P1050898_0.JPG,,TRUE, +N1,60661,sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82,https://biolit.fr/sorties/sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82/,Phil,,2/18/2017 0:00,14.0:15,14.0:25,47.798768000000,-4.380137000000,,Penmarc'h - Finistère,50373,observation-c38502ce-49a6-4da3-865a-f77c95d7dd82-3,https://biolit.fr/observations/observation-c38502ce-49a6-4da3-865a-f77c95d7dd82-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050908.JPG,,TRUE, +N1,60661,sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82,https://biolit.fr/sorties/sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82/,Phil,,2/18/2017 0:00,14.0:15,14.0:25,47.798768000000,-4.380137000000,,Penmarc'h - Finistère,50375,observation-c38502ce-49a6-4da3-865a-f77c95d7dd82-4,https://biolit.fr/observations/observation-c38502ce-49a6-4da3-865a-f77c95d7dd82-4/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1050909.JPG,,TRUE, +N1,60661,sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82,https://biolit.fr/sorties/sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82/,Phil,,2/18/2017 0:00,14.0:15,14.0:25,47.798768000000,-4.380137000000,,Penmarc'h - Finistère,50377,observation-c38502ce-49a6-4da3-865a-f77c95d7dd82-5,https://biolit.fr/observations/observation-c38502ce-49a6-4da3-865a-f77c95d7dd82-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050927..JPG,,FALSE, +N1,60661,sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82,https://biolit.fr/sorties/sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82/,Phil,,2/18/2017 0:00,14.0:15,14.0:25,47.798768000000,-4.380137000000,,Penmarc'h - Finistère,50379,observation-c38502ce-49a6-4da3-865a-f77c95d7dd82-6,https://biolit.fr/observations/observation-c38502ce-49a6-4da3-865a-f77c95d7dd82-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050926.JPG,,FALSE, +N1,60661,sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82,https://biolit.fr/sorties/sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82/,Phil,,2/18/2017 0:00,14.0:15,14.0:25,47.798768000000,-4.380137000000,,Penmarc'h - Finistère,50381,observation-c38502ce-49a6-4da3-865a-f77c95d7dd82-7,https://biolit.fr/observations/observation-c38502ce-49a6-4da3-865a-f77c95d7dd82-7/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050914.JPG,,TRUE, +N1,60661,sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82,https://biolit.fr/sorties/sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82/,Phil,,2/18/2017 0:00,14.0:15,14.0:25,47.798768000000,-4.380137000000,,Penmarc'h - Finistère,50383,observation-c38502ce-49a6-4da3-865a-f77c95d7dd82-8,https://biolit.fr/observations/observation-c38502ce-49a6-4da3-865a-f77c95d7dd82-8/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050916.JPG,,TRUE, +N1,60661,sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82,https://biolit.fr/sorties/sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82/,Phil,,2/18/2017 0:00,14.0:15,14.0:25,47.798768000000,-4.380137000000,,Penmarc'h - Finistère,50385,observation-c38502ce-49a6-4da3-865a-f77c95d7dd82-9,https://biolit.fr/observations/observation-c38502ce-49a6-4da3-865a-f77c95d7dd82-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050925_0.JPG,,FALSE, +N1,60662,sortie-20bc4216-5fbb-45c3-ba2b-595d34a0b830,https://biolit.fr/sorties/sortie-20bc4216-5fbb-45c3-ba2b-595d34a0b830/,Phil,,03/05/2017,12.0000000,14.0000000,48.087291000000,-4.488101000000,,Beuzec Cap Sizun - Finistère,50387,observation-20bc4216-5fbb-45c3-ba2b-595d34a0b830,https://biolit.fr/observations/observation-20bc4216-5fbb-45c3-ba2b-595d34a0b830/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060247_2.JPG,,FALSE, +N1,60662,sortie-20bc4216-5fbb-45c3-ba2b-595d34a0b830,https://biolit.fr/sorties/sortie-20bc4216-5fbb-45c3-ba2b-595d34a0b830/,Phil,,03/05/2017,12.0000000,14.0000000,48.087291000000,-4.488101000000,,Beuzec Cap Sizun - Finistère,50389,observation-20bc4216-5fbb-45c3-ba2b-595d34a0b830-2,https://biolit.fr/observations/observation-20bc4216-5fbb-45c3-ba2b-595d34a0b830-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060249_0.JPG,,FALSE, +N1,60663,sortie-bd187dc6-4a6e-47d6-b656-a8e26457365c,https://biolit.fr/sorties/sortie-bd187dc6-4a6e-47d6-b656-a8e26457365c/,Phil,,03/02/2017,14.0:15,14.0000000,47.96908900000,-4.44393900000,,Plozevet - Finistère,50391,observation-bd187dc6-4a6e-47d6-b656-a8e26457365c,https://biolit.fr/observations/observation-bd187dc6-4a6e-47d6-b656-a8e26457365c/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060284.JPG,,FALSE, +N1,60663,sortie-bd187dc6-4a6e-47d6-b656-a8e26457365c,https://biolit.fr/sorties/sortie-bd187dc6-4a6e-47d6-b656-a8e26457365c/,Phil,,03/02/2017,14.0:15,14.0000000,47.96908900000,-4.44393900000,,Plozevet - Finistère,50393,observation-bd187dc6-4a6e-47d6-b656-a8e26457365c-2,https://biolit.fr/observations/observation-bd187dc6-4a6e-47d6-b656-a8e26457365c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060290.JPG,,FALSE, +N1,60663,sortie-bd187dc6-4a6e-47d6-b656-a8e26457365c,https://biolit.fr/sorties/sortie-bd187dc6-4a6e-47d6-b656-a8e26457365c/,Phil,,03/02/2017,14.0:15,14.0000000,47.96908900000,-4.44393900000,,Plozevet - Finistère,50395,observation-bd187dc6-4a6e-47d6-b656-a8e26457365c-3,https://biolit.fr/observations/observation-bd187dc6-4a6e-47d6-b656-a8e26457365c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060291.JPG,,FALSE, +N1,60663,sortie-bd187dc6-4a6e-47d6-b656-a8e26457365c,https://biolit.fr/sorties/sortie-bd187dc6-4a6e-47d6-b656-a8e26457365c/,Phil,,03/02/2017,14.0:15,14.0000000,47.96908900000,-4.44393900000,,Plozevet - Finistère,50397,observation-bd187dc6-4a6e-47d6-b656-a8e26457365c-4,https://biolit.fr/observations/observation-bd187dc6-4a6e-47d6-b656-a8e26457365c-4/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/P1060282.JPG,,TRUE, +N1,60664,sortie-20afe722-299e-48f0-ae71-82a41e450a0d,https://biolit.fr/sorties/sortie-20afe722-299e-48f0-ae71-82a41e450a0d/,Phil,,2/25/2017 0:00,12.0000000,12.0000000,47.795237000000,-4.276437000000,,Le Guilvinec - Finistère,50399,observation-20afe722-299e-48f0-ae71-82a41e450a0d,https://biolit.fr/observations/observation-20afe722-299e-48f0-ae71-82a41e450a0d/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170225_121701.jpg,,FALSE, +N1,60664,sortie-20afe722-299e-48f0-ae71-82a41e450a0d,https://biolit.fr/sorties/sortie-20afe722-299e-48f0-ae71-82a41e450a0d/,Phil,,2/25/2017 0:00,12.0000000,12.0000000,47.795237000000,-4.276437000000,,Le Guilvinec - Finistère,50401,observation-20afe722-299e-48f0-ae71-82a41e450a0d-2,https://biolit.fr/observations/observation-20afe722-299e-48f0-ae71-82a41e450a0d-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170225_121650.jpg,,TRUE, +N1,60664,sortie-20afe722-299e-48f0-ae71-82a41e450a0d,https://biolit.fr/sorties/sortie-20afe722-299e-48f0-ae71-82a41e450a0d/,Phil,,2/25/2017 0:00,12.0000000,12.0000000,47.795237000000,-4.276437000000,,Le Guilvinec - Finistère,50403,observation-20afe722-299e-48f0-ae71-82a41e450a0d-3,https://biolit.fr/observations/observation-20afe722-299e-48f0-ae71-82a41e450a0d-3/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20170225_121337.jpg,,TRUE, +N1,60664,sortie-20afe722-299e-48f0-ae71-82a41e450a0d,https://biolit.fr/sorties/sortie-20afe722-299e-48f0-ae71-82a41e450a0d/,Phil,,2/25/2017 0:00,12.0000000,12.0000000,47.795237000000,-4.276437000000,,Le Guilvinec - Finistère,50405,observation-20afe722-299e-48f0-ae71-82a41e450a0d-4,https://biolit.fr/observations/observation-20afe722-299e-48f0-ae71-82a41e450a0d-4/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20170225_121347.jpg,,TRUE, +N1,60665,sortie-5d8e21c5-c3d4-4726-b9cb-67b60ba6f113,https://biolit.fr/sorties/sortie-5d8e21c5-c3d4-4726-b9cb-67b60ba6f113/,Phil,,2/21/2017 0:00,16.0000000,16.0000000,48.093474000000,-4.29843500000,,Douarnenez - Finistère,50407,observation-5d8e21c5-c3d4-4726-b9cb-67b60ba6f113,https://biolit.fr/observations/observation-5d8e21c5-c3d4-4726-b9cb-67b60ba6f113/,Lutraria lutraria,Lutraire elliptique,,https://biolit.fr/wp-content/uploads/2023/07/P1060143.JPG,,TRUE, +N1,60665,sortie-5d8e21c5-c3d4-4726-b9cb-67b60ba6f113,https://biolit.fr/sorties/sortie-5d8e21c5-c3d4-4726-b9cb-67b60ba6f113/,Phil,,2/21/2017 0:00,16.0000000,16.0000000,48.093474000000,-4.29843500000,,Douarnenez - Finistère,50409,observation-5d8e21c5-c3d4-4726-b9cb-67b60ba6f113-2,https://biolit.fr/observations/observation-5d8e21c5-c3d4-4726-b9cb-67b60ba6f113-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060147.JPG,,TRUE, +N1,60665,sortie-5d8e21c5-c3d4-4726-b9cb-67b60ba6f113,https://biolit.fr/sorties/sortie-5d8e21c5-c3d4-4726-b9cb-67b60ba6f113/,Phil,,2/21/2017 0:00,16.0000000,16.0000000,48.093474000000,-4.29843500000,,Douarnenez - Finistère,50411,observation-5d8e21c5-c3d4-4726-b9cb-67b60ba6f113-3,https://biolit.fr/observations/observation-5d8e21c5-c3d4-4726-b9cb-67b60ba6f113-3/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1060151.JPG,,TRUE, +N1,60665,sortie-5d8e21c5-c3d4-4726-b9cb-67b60ba6f113,https://biolit.fr/sorties/sortie-5d8e21c5-c3d4-4726-b9cb-67b60ba6f113/,Phil,,2/21/2017 0:00,16.0000000,16.0000000,48.093474000000,-4.29843500000,,Douarnenez - Finistère,50413,observation-5d8e21c5-c3d4-4726-b9cb-67b60ba6f113-4,https://biolit.fr/observations/observation-5d8e21c5-c3d4-4726-b9cb-67b60ba6f113-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060153.JPG,,TRUE, +N1,60666,sortie-299e5f07-d7da-416c-85d1-4c5f49cc815e,https://biolit.fr/sorties/sortie-299e5f07-d7da-416c-85d1-4c5f49cc815e/,Phil,,03/02/2017,14.0000000,14.0:15,47.970010000000,-4.443935000000,,Plozevet - Finistère,50415,observation-299e5f07-d7da-416c-85d1-4c5f49cc815e,https://biolit.fr/observations/observation-299e5f07-d7da-416c-85d1-4c5f49cc815e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060270_1.JPG,,FALSE, +N1,60666,sortie-299e5f07-d7da-416c-85d1-4c5f49cc815e,https://biolit.fr/sorties/sortie-299e5f07-d7da-416c-85d1-4c5f49cc815e/,Phil,,03/02/2017,14.0000000,14.0:15,47.970010000000,-4.443935000000,,Plozevet - Finistère,50417,observation-299e5f07-d7da-416c-85d1-4c5f49cc815e-2,https://biolit.fr/observations/observation-299e5f07-d7da-416c-85d1-4c5f49cc815e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060269.JPG,,FALSE, +N1,60666,sortie-299e5f07-d7da-416c-85d1-4c5f49cc815e,https://biolit.fr/sorties/sortie-299e5f07-d7da-416c-85d1-4c5f49cc815e/,Phil,,03/02/2017,14.0000000,14.0:15,47.970010000000,-4.443935000000,,Plozevet - Finistère,50419,observation-299e5f07-d7da-416c-85d1-4c5f49cc815e-3,https://biolit.fr/observations/observation-299e5f07-d7da-416c-85d1-4c5f49cc815e-3/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1060271.JPG,,TRUE, +N1,60666,sortie-299e5f07-d7da-416c-85d1-4c5f49cc815e,https://biolit.fr/sorties/sortie-299e5f07-d7da-416c-85d1-4c5f49cc815e/,Phil,,03/02/2017,14.0000000,14.0:15,47.970010000000,-4.443935000000,,Plozevet - Finistère,50421,observation-299e5f07-d7da-416c-85d1-4c5f49cc815e-4,https://biolit.fr/observations/observation-299e5f07-d7da-416c-85d1-4c5f49cc815e-4/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/P1060274.JPG,,TRUE, +N1,60667,sortie-c539f1c9-de05-4236-aef1-007cf18ae067,https://biolit.fr/sorties/sortie-c539f1c9-de05-4236-aef1-007cf18ae067/,ludovic,,03/02/2017,15.0000000,16.0000000,43.236104000000,5.360045000000,,plage de la bonne brise,50423,observation-c539f1c9-de05-4236-aef1-007cf18ae067,https://biolit.fr/observations/observation-c539f1c9-de05-4236-aef1-007cf18ae067/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0998-scaled.jpg,,FALSE, +N1,60667,sortie-c539f1c9-de05-4236-aef1-007cf18ae067,https://biolit.fr/sorties/sortie-c539f1c9-de05-4236-aef1-007cf18ae067/,ludovic,,03/02/2017,15.0000000,16.0000000,43.236104000000,5.360045000000,,plage de la bonne brise,50425,observation-c539f1c9-de05-4236-aef1-007cf18ae067-2,https://biolit.fr/observations/observation-c539f1c9-de05-4236-aef1-007cf18ae067-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1001_0-scaled.jpg,,FALSE, +N1,60667,sortie-c539f1c9-de05-4236-aef1-007cf18ae067,https://biolit.fr/sorties/sortie-c539f1c9-de05-4236-aef1-007cf18ae067/,ludovic,,03/02/2017,15.0000000,16.0000000,43.236104000000,5.360045000000,,plage de la bonne brise,50427,observation-c539f1c9-de05-4236-aef1-007cf18ae067-3,https://biolit.fr/observations/observation-c539f1c9-de05-4236-aef1-007cf18ae067-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1004-scaled.jpg,,FALSE, +N1,60667,sortie-c539f1c9-de05-4236-aef1-007cf18ae067,https://biolit.fr/sorties/sortie-c539f1c9-de05-4236-aef1-007cf18ae067/,ludovic,,03/02/2017,15.0000000,16.0000000,43.236104000000,5.360045000000,,plage de la bonne brise,50429,observation-c539f1c9-de05-4236-aef1-007cf18ae067-4,https://biolit.fr/observations/observation-c539f1c9-de05-4236-aef1-007cf18ae067-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1005-scaled.jpg,,FALSE, +N1,60667,sortie-c539f1c9-de05-4236-aef1-007cf18ae067,https://biolit.fr/sorties/sortie-c539f1c9-de05-4236-aef1-007cf18ae067/,ludovic,,03/02/2017,15.0000000,16.0000000,43.236104000000,5.360045000000,,plage de la bonne brise,50431,observation-c539f1c9-de05-4236-aef1-007cf18ae067-5,https://biolit.fr/observations/observation-c539f1c9-de05-4236-aef1-007cf18ae067-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1011-scaled.jpg,,FALSE, +N1,60667,sortie-c539f1c9-de05-4236-aef1-007cf18ae067,https://biolit.fr/sorties/sortie-c539f1c9-de05-4236-aef1-007cf18ae067/,ludovic,,03/02/2017,15.0000000,16.0000000,43.236104000000,5.360045000000,,plage de la bonne brise,50433,observation-c539f1c9-de05-4236-aef1-007cf18ae067-6,https://biolit.fr/observations/observation-c539f1c9-de05-4236-aef1-007cf18ae067-6/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1015-scaled.jpg,,TRUE, +N1,60667,sortie-c539f1c9-de05-4236-aef1-007cf18ae067,https://biolit.fr/sorties/sortie-c539f1c9-de05-4236-aef1-007cf18ae067/,ludovic,,03/02/2017,15.0000000,16.0000000,43.236104000000,5.360045000000,,plage de la bonne brise,50435,observation-c539f1c9-de05-4236-aef1-007cf18ae067-7,https://biolit.fr/observations/observation-c539f1c9-de05-4236-aef1-007cf18ae067-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1016-scaled.jpg,,FALSE, +N1,60667,sortie-c539f1c9-de05-4236-aef1-007cf18ae067,https://biolit.fr/sorties/sortie-c539f1c9-de05-4236-aef1-007cf18ae067/,ludovic,,03/02/2017,15.0000000,16.0000000,43.236104000000,5.360045000000,,plage de la bonne brise,50437,observation-c539f1c9-de05-4236-aef1-007cf18ae067-8,https://biolit.fr/observations/observation-c539f1c9-de05-4236-aef1-007cf18ae067-8/,Electra posidoniae,Bryozoaire de la posidonie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1017-scaled.jpg,,TRUE, +N1,60668,sortie-f0b02a35-1eea-4198-ad7f-d06c04c69d7e,https://biolit.fr/sorties/sortie-f0b02a35-1eea-4198-ad7f-d06c04c69d7e/,NVanzu,,03/02/2017,14.0000000,16.0000000,43.233149000000,5.356194000000,,Plage de la bonne brise,50439,observation-f0b02a35-1eea-4198-ad7f-d06c04c69d7e,https://biolit.fr/observations/observation-f0b02a35-1eea-4198-ad7f-d06c04c69d7e/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0193-scaled.jpg,,FALSE, +N1,60668,sortie-f0b02a35-1eea-4198-ad7f-d06c04c69d7e,https://biolit.fr/sorties/sortie-f0b02a35-1eea-4198-ad7f-d06c04c69d7e/,NVanzu,,03/02/2017,14.0000000,16.0000000,43.233149000000,5.356194000000,,Plage de la bonne brise,50441,observation-f0b02a35-1eea-4198-ad7f-d06c04c69d7e-2,https://biolit.fr/observations/observation-f0b02a35-1eea-4198-ad7f-d06c04c69d7e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0194_1-scaled.jpg,,FALSE, +N1,60668,sortie-f0b02a35-1eea-4198-ad7f-d06c04c69d7e,https://biolit.fr/sorties/sortie-f0b02a35-1eea-4198-ad7f-d06c04c69d7e/,NVanzu,,03/02/2017,14.0000000,16.0000000,43.233149000000,5.356194000000,,Plage de la bonne brise,50443,observation-f0b02a35-1eea-4198-ad7f-d06c04c69d7e-3,https://biolit.fr/observations/observation-f0b02a35-1eea-4198-ad7f-d06c04c69d7e-3/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0195-scaled.jpg,,TRUE, +N1,60668,sortie-f0b02a35-1eea-4198-ad7f-d06c04c69d7e,https://biolit.fr/sorties/sortie-f0b02a35-1eea-4198-ad7f-d06c04c69d7e/,NVanzu,,03/02/2017,14.0000000,16.0000000,43.233149000000,5.356194000000,,Plage de la bonne brise,50445,observation-f0b02a35-1eea-4198-ad7f-d06c04c69d7e-4,https://biolit.fr/observations/observation-f0b02a35-1eea-4198-ad7f-d06c04c69d7e-4/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0196-scaled.jpg,,TRUE, +N1,60668,sortie-f0b02a35-1eea-4198-ad7f-d06c04c69d7e,https://biolit.fr/sorties/sortie-f0b02a35-1eea-4198-ad7f-d06c04c69d7e/,NVanzu,,03/02/2017,14.0000000,16.0000000,43.233149000000,5.356194000000,,Plage de la bonne brise,50447,observation-f0b02a35-1eea-4198-ad7f-d06c04c69d7e-5,https://biolit.fr/observations/observation-f0b02a35-1eea-4198-ad7f-d06c04c69d7e-5/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0197-scaled.jpg,,TRUE, +N1,60668,sortie-f0b02a35-1eea-4198-ad7f-d06c04c69d7e,https://biolit.fr/sorties/sortie-f0b02a35-1eea-4198-ad7f-d06c04c69d7e/,NVanzu,,03/02/2017,14.0000000,16.0000000,43.233149000000,5.356194000000,,Plage de la bonne brise,50449,observation-f0b02a35-1eea-4198-ad7f-d06c04c69d7e-6,https://biolit.fr/observations/observation-f0b02a35-1eea-4198-ad7f-d06c04c69d7e-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0200-scaled.jpg,,FALSE, +N1,60668,sortie-f0b02a35-1eea-4198-ad7f-d06c04c69d7e,https://biolit.fr/sorties/sortie-f0b02a35-1eea-4198-ad7f-d06c04c69d7e/,NVanzu,,03/02/2017,14.0000000,16.0000000,43.233149000000,5.356194000000,,Plage de la bonne brise,50451,observation-f0b02a35-1eea-4198-ad7f-d06c04c69d7e-7,https://biolit.fr/observations/observation-f0b02a35-1eea-4198-ad7f-d06c04c69d7e-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0201-scaled.jpg,,FALSE, +N1,60668,sortie-f0b02a35-1eea-4198-ad7f-d06c04c69d7e,https://biolit.fr/sorties/sortie-f0b02a35-1eea-4198-ad7f-d06c04c69d7e/,NVanzu,,03/02/2017,14.0000000,16.0000000,43.233149000000,5.356194000000,,Plage de la bonne brise,50453,observation-f0b02a35-1eea-4198-ad7f-d06c04c69d7e-8,https://biolit.fr/observations/observation-f0b02a35-1eea-4198-ad7f-d06c04c69d7e-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0202-scaled.jpg,,FALSE, +N1,60669,sortie-31096135-3725-4291-a945-f1ff45543ee5,https://biolit.fr/sorties/sortie-31096135-3725-4291-a945-f1ff45543ee5/,ludovic,,03/02/2017,15.0000000,16.0000000,43.236057000000,5.360024000000,,plage de la bonne brise,50455,observation-31096135-3725-4291-a945-f1ff45543ee5,https://biolit.fr/observations/observation-31096135-3725-4291-a945-f1ff45543ee5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0980_0-scaled.jpg,,FALSE, +N1,60669,sortie-31096135-3725-4291-a945-f1ff45543ee5,https://biolit.fr/sorties/sortie-31096135-3725-4291-a945-f1ff45543ee5/,ludovic,,03/02/2017,15.0000000,16.0000000,43.236057000000,5.360024000000,,plage de la bonne brise,50457,observation-31096135-3725-4291-a945-f1ff45543ee5-2,https://biolit.fr/observations/observation-31096135-3725-4291-a945-f1ff45543ee5-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0981_0-scaled.jpg,,TRUE, +N1,60669,sortie-31096135-3725-4291-a945-f1ff45543ee5,https://biolit.fr/sorties/sortie-31096135-3725-4291-a945-f1ff45543ee5/,ludovic,,03/02/2017,15.0000000,16.0000000,43.236057000000,5.360024000000,,plage de la bonne brise,50459,observation-31096135-3725-4291-a945-f1ff45543ee5-3,https://biolit.fr/observations/observation-31096135-3725-4291-a945-f1ff45543ee5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0984-scaled.jpg,,FALSE, +N1,60669,sortie-31096135-3725-4291-a945-f1ff45543ee5,https://biolit.fr/sorties/sortie-31096135-3725-4291-a945-f1ff45543ee5/,ludovic,,03/02/2017,15.0000000,16.0000000,43.236057000000,5.360024000000,,plage de la bonne brise,50461,observation-31096135-3725-4291-a945-f1ff45543ee5-4,https://biolit.fr/observations/observation-31096135-3725-4291-a945-f1ff45543ee5-4/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0987_0-scaled.jpg,,TRUE, +N1,60669,sortie-31096135-3725-4291-a945-f1ff45543ee5,https://biolit.fr/sorties/sortie-31096135-3725-4291-a945-f1ff45543ee5/,ludovic,,03/02/2017,15.0000000,16.0000000,43.236057000000,5.360024000000,,plage de la bonne brise,50463,observation-31096135-3725-4291-a945-f1ff45543ee5-5,https://biolit.fr/observations/observation-31096135-3725-4291-a945-f1ff45543ee5-5/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0988_0-scaled.jpg,,TRUE, +N1,60669,sortie-31096135-3725-4291-a945-f1ff45543ee5,https://biolit.fr/sorties/sortie-31096135-3725-4291-a945-f1ff45543ee5/,ludovic,,03/02/2017,15.0000000,16.0000000,43.236057000000,5.360024000000,,plage de la bonne brise,50465,observation-31096135-3725-4291-a945-f1ff45543ee5-6,https://biolit.fr/observations/observation-31096135-3725-4291-a945-f1ff45543ee5-6/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0994_0-scaled.jpg,,TRUE, +N1,60669,sortie-31096135-3725-4291-a945-f1ff45543ee5,https://biolit.fr/sorties/sortie-31096135-3725-4291-a945-f1ff45543ee5/,ludovic,,03/02/2017,15.0000000,16.0000000,43.236057000000,5.360024000000,,plage de la bonne brise,50467,observation-31096135-3725-4291-a945-f1ff45543ee5-7,https://biolit.fr/observations/observation-31096135-3725-4291-a945-f1ff45543ee5-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0995-scaled.jpg,,FALSE, +N1,60669,sortie-31096135-3725-4291-a945-f1ff45543ee5,https://biolit.fr/sorties/sortie-31096135-3725-4291-a945-f1ff45543ee5/,ludovic,,03/02/2017,15.0000000,16.0000000,43.236057000000,5.360024000000,,plage de la bonne brise,50469,observation-31096135-3725-4291-a945-f1ff45543ee5-8,https://biolit.fr/observations/observation-31096135-3725-4291-a945-f1ff45543ee5-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0997_0-scaled.jpg,,FALSE, +N1,60670,sortie-243599b8-7c58-4351-97bf-22e771832d59,https://biolit.fr/sorties/sortie-243599b8-7c58-4351-97bf-22e771832d59/,tridimeg,,2/24/2017 0:00,10.0000000,11.0000000,47.35017700000,-2.518558000000,,Plage de la Bastille,50471,observation-243599b8-7c58-4351-97bf-22e771832d59,https://biolit.fr/observations/observation-243599b8-7c58-4351-97bf-22e771832d59/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0230.jpg,,TRUE, +N1,60670,sortie-243599b8-7c58-4351-97bf-22e771832d59,https://biolit.fr/sorties/sortie-243599b8-7c58-4351-97bf-22e771832d59/,tridimeg,,2/24/2017 0:00,10.0000000,11.0000000,47.35017700000,-2.518558000000,,Plage de la Bastille,50473,observation-243599b8-7c58-4351-97bf-22e771832d59-2,https://biolit.fr/observations/observation-243599b8-7c58-4351-97bf-22e771832d59-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0232.jpg,,FALSE, +N1,60670,sortie-243599b8-7c58-4351-97bf-22e771832d59,https://biolit.fr/sorties/sortie-243599b8-7c58-4351-97bf-22e771832d59/,tridimeg,,2/24/2017 0:00,10.0000000,11.0000000,47.35017700000,-2.518558000000,,Plage de la Bastille,50475,observation-243599b8-7c58-4351-97bf-22e771832d59-3,https://biolit.fr/observations/observation-243599b8-7c58-4351-97bf-22e771832d59-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_0235.jpg,,TRUE, +N1,60670,sortie-243599b8-7c58-4351-97bf-22e771832d59,https://biolit.fr/sorties/sortie-243599b8-7c58-4351-97bf-22e771832d59/,tridimeg,,2/24/2017 0:00,10.0000000,11.0000000,47.35017700000,-2.518558000000,,Plage de la Bastille,50477,observation-243599b8-7c58-4351-97bf-22e771832d59-4,https://biolit.fr/observations/observation-243599b8-7c58-4351-97bf-22e771832d59-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0240.jpg,,FALSE, +N1,60670,sortie-243599b8-7c58-4351-97bf-22e771832d59,https://biolit.fr/sorties/sortie-243599b8-7c58-4351-97bf-22e771832d59/,tridimeg,,2/24/2017 0:00,10.0000000,11.0000000,47.35017700000,-2.518558000000,,Plage de la Bastille,50479,observation-243599b8-7c58-4351-97bf-22e771832d59-5,https://biolit.fr/observations/observation-243599b8-7c58-4351-97bf-22e771832d59-5/,Bifurcaria bifurcata,Bifurcaire,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0244.jpg,,TRUE, +N1,60671,sortie-96473ed8-2379-423a-95fb-68502b30c260,https://biolit.fr/sorties/sortie-96473ed8-2379-423a-95fb-68502b30c260/,Phil,,2/25/2017 0:00,12.0000000,12.0:15,47.795314000000,-4.276570000000,,Léchiagat - Finistère,50481,observation-96473ed8-2379-423a-95fb-68502b30c260,https://biolit.fr/observations/observation-96473ed8-2379-423a-95fb-68502b30c260/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170225_121121.jpg,,FALSE, +N1,60671,sortie-96473ed8-2379-423a-95fb-68502b30c260,https://biolit.fr/sorties/sortie-96473ed8-2379-423a-95fb-68502b30c260/,Phil,,2/25/2017 0:00,12.0000000,12.0:15,47.795314000000,-4.276570000000,,Léchiagat - Finistère,50483,observation-96473ed8-2379-423a-95fb-68502b30c260-2,https://biolit.fr/observations/observation-96473ed8-2379-423a-95fb-68502b30c260-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170225_121257.jpg,,FALSE, +N1,60672,sortie-4ee7641c-3924-4ee3-80a5-b9348953e57c,https://biolit.fr/sorties/sortie-4ee7641c-3924-4ee3-80a5-b9348953e57c/,Phil,,2/18/2017 0:00,14.0000000,14.0:35,47.80049900000,-4.382472000000,,Penmarc'h - Finistère,50485,observation-4ee7641c-3924-4ee3-80a5-b9348953e57c,https://biolit.fr/observations/observation-4ee7641c-3924-4ee3-80a5-b9348953e57c/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050931.JPG,,TRUE, +N1,60672,sortie-4ee7641c-3924-4ee3-80a5-b9348953e57c,https://biolit.fr/sorties/sortie-4ee7641c-3924-4ee3-80a5-b9348953e57c/,Phil,,2/18/2017 0:00,14.0000000,14.0:35,47.80049900000,-4.382472000000,,Penmarc'h - Finistère,50487,observation-4ee7641c-3924-4ee3-80a5-b9348953e57c-2,https://biolit.fr/observations/observation-4ee7641c-3924-4ee3-80a5-b9348953e57c-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050932.JPG,,TRUE, +N1,60673,sortie-b51cc4cc-7d86-44f0-b0d2-dffa8133caec,https://biolit.fr/sorties/sortie-b51cc4cc-7d86-44f0-b0d2-dffa8133caec/,Phil,,2/21/2017 0:00,16.0000000,16.0:35,48.094027000000,-4.2996110000,,Douarnenez - Finistère,50489,observation-b51cc4cc-7d86-44f0-b0d2-dffa8133caec,https://biolit.fr/observations/observation-b51cc4cc-7d86-44f0-b0d2-dffa8133caec/,Scomber scombrus,Maquereau commun,,https://biolit.fr/wp-content/uploads/2023/07/P1060125.JPG,,TRUE, +N1,60673,sortie-b51cc4cc-7d86-44f0-b0d2-dffa8133caec,https://biolit.fr/sorties/sortie-b51cc4cc-7d86-44f0-b0d2-dffa8133caec/,Phil,,2/21/2017 0:00,16.0000000,16.0:35,48.094027000000,-4.2996110000,,Douarnenez - Finistère,50491,observation-b51cc4cc-7d86-44f0-b0d2-dffa8133caec-2,https://biolit.fr/observations/observation-b51cc4cc-7d86-44f0-b0d2-dffa8133caec-2/,Scomber scombrus,Maquereau commun,,https://biolit.fr/wp-content/uploads/2023/07/P1060123.JPG,,TRUE, +N1,60673,sortie-b51cc4cc-7d86-44f0-b0d2-dffa8133caec,https://biolit.fr/sorties/sortie-b51cc4cc-7d86-44f0-b0d2-dffa8133caec/,Phil,,2/21/2017 0:00,16.0000000,16.0:35,48.094027000000,-4.2996110000,,Douarnenez - Finistère,50493,observation-b51cc4cc-7d86-44f0-b0d2-dffa8133caec-3,https://biolit.fr/observations/observation-b51cc4cc-7d86-44f0-b0d2-dffa8133caec-3/,Scomber scombrus,Maquereau commun,,https://biolit.fr/wp-content/uploads/2023/07/P1060131.JPG,,TRUE, +N1,60673,sortie-b51cc4cc-7d86-44f0-b0d2-dffa8133caec,https://biolit.fr/sorties/sortie-b51cc4cc-7d86-44f0-b0d2-dffa8133caec/,Phil,,2/21/2017 0:00,16.0000000,16.0:35,48.094027000000,-4.2996110000,,Douarnenez - Finistère,50495,observation-b51cc4cc-7d86-44f0-b0d2-dffa8133caec-4,https://biolit.fr/observations/observation-b51cc4cc-7d86-44f0-b0d2-dffa8133caec-4/,Scomber scombrus,Maquereau commun,,https://biolit.fr/wp-content/uploads/2023/07/P1060137.JPG,,TRUE, +N1,60674,sortie-8efd0569-f96e-488f-9898-a78ff738feea,https://biolit.fr/sorties/sortie-8efd0569-f96e-488f-9898-a78ff738feea/,Phil,,2/23/2017 0:00,15.0000000,15.0:25,48.08715700000,-4.487941000000,,Beuzec-Cap-Sizun - Finistère,50497,observation-8efd0569-f96e-488f-9898-a78ff738feea,https://biolit.fr/observations/observation-8efd0569-f96e-488f-9898-a78ff738feea/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060222.JPG,,FALSE, +N1,60674,sortie-8efd0569-f96e-488f-9898-a78ff738feea,https://biolit.fr/sorties/sortie-8efd0569-f96e-488f-9898-a78ff738feea/,Phil,,2/23/2017 0:00,15.0000000,15.0:25,48.08715700000,-4.487941000000,,Beuzec-Cap-Sizun - Finistère,50499,observation-8efd0569-f96e-488f-9898-a78ff738feea-2,https://biolit.fr/observations/observation-8efd0569-f96e-488f-9898-a78ff738feea-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060240.JPG,,FALSE, +N1,60675,sortie-5ea0fa59-89b6-4479-b2cc-d19db70100c3,https://biolit.fr/sorties/sortie-5ea0fa59-89b6-4479-b2cc-d19db70100c3/,Phil,,2/18/2017 0:00,14.0000000,14.0000000,47.80072600000,-4.378622000000,,Penmarc'h - Finistère,50501,observation-5ea0fa59-89b6-4479-b2cc-d19db70100c3,https://biolit.fr/observations/observation-5ea0fa59-89b6-4479-b2cc-d19db70100c3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050882.JPG,,FALSE, +N1,60675,sortie-5ea0fa59-89b6-4479-b2cc-d19db70100c3,https://biolit.fr/sorties/sortie-5ea0fa59-89b6-4479-b2cc-d19db70100c3/,Phil,,2/18/2017 0:00,14.0000000,14.0000000,47.80072600000,-4.378622000000,,Penmarc'h - Finistère,50503,observation-5ea0fa59-89b6-4479-b2cc-d19db70100c3-2,https://biolit.fr/observations/observation-5ea0fa59-89b6-4479-b2cc-d19db70100c3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050892.JPG,,FALSE, +N1,60675,sortie-5ea0fa59-89b6-4479-b2cc-d19db70100c3,https://biolit.fr/sorties/sortie-5ea0fa59-89b6-4479-b2cc-d19db70100c3/,Phil,,2/18/2017 0:00,14.0000000,14.0000000,47.80072600000,-4.378622000000,,Penmarc'h - Finistère,50505,observation-5ea0fa59-89b6-4479-b2cc-d19db70100c3-3,https://biolit.fr/observations/observation-5ea0fa59-89b6-4479-b2cc-d19db70100c3-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050887.JPG,,FALSE, +N1,60675,sortie-5ea0fa59-89b6-4479-b2cc-d19db70100c3,https://biolit.fr/sorties/sortie-5ea0fa59-89b6-4479-b2cc-d19db70100c3/,Phil,,2/18/2017 0:00,14.0000000,14.0000000,47.80072600000,-4.378622000000,,Penmarc'h - Finistère,50507,observation-5ea0fa59-89b6-4479-b2cc-d19db70100c3-4,https://biolit.fr/observations/observation-5ea0fa59-89b6-4479-b2cc-d19db70100c3-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050889.JPG,,FALSE, +N1,60675,sortie-5ea0fa59-89b6-4479-b2cc-d19db70100c3,https://biolit.fr/sorties/sortie-5ea0fa59-89b6-4479-b2cc-d19db70100c3/,Phil,,2/18/2017 0:00,14.0000000,14.0000000,47.80072600000,-4.378622000000,,Penmarc'h - Finistère,50509,observation-5ea0fa59-89b6-4479-b2cc-d19db70100c3-5,https://biolit.fr/observations/observation-5ea0fa59-89b6-4479-b2cc-d19db70100c3-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050880.JPG,,FALSE, +N1,60675,sortie-5ea0fa59-89b6-4479-b2cc-d19db70100c3,https://biolit.fr/sorties/sortie-5ea0fa59-89b6-4479-b2cc-d19db70100c3/,Phil,,2/18/2017 0:00,14.0000000,14.0000000,47.80072600000,-4.378622000000,,Penmarc'h - Finistère,50511,observation-5ea0fa59-89b6-4479-b2cc-d19db70100c3-6,https://biolit.fr/observations/observation-5ea0fa59-89b6-4479-b2cc-d19db70100c3-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050881.JPG,,FALSE, +N1,60676,sortie-d7d0fc71-860f-4fae-8735-a6ab1a009faa,https://biolit.fr/sorties/sortie-d7d0fc71-860f-4fae-8735-a6ab1a009faa/,Phil,,2/25/2017 0:00,12.000005,12.0000000,47.795438000000,-4.276218000000,,Léchiagat - Finistère,50513,observation-d7d0fc71-860f-4fae-8735-a6ab1a009faa,https://biolit.fr/observations/observation-d7d0fc71-860f-4fae-8735-a6ab1a009faa/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20170225_120807.jpg,,TRUE, +N1,60676,sortie-d7d0fc71-860f-4fae-8735-a6ab1a009faa,https://biolit.fr/sorties/sortie-d7d0fc71-860f-4fae-8735-a6ab1a009faa/,Phil,,2/25/2017 0:00,12.000005,12.0000000,47.795438000000,-4.276218000000,,Léchiagat - Finistère,50515,observation-d7d0fc71-860f-4fae-8735-a6ab1a009faa-2,https://biolit.fr/observations/observation-d7d0fc71-860f-4fae-8735-a6ab1a009faa-2/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170225_120850.jpg,,TRUE, +N1,60676,sortie-d7d0fc71-860f-4fae-8735-a6ab1a009faa,https://biolit.fr/sorties/sortie-d7d0fc71-860f-4fae-8735-a6ab1a009faa/,Phil,,2/25/2017 0:00,12.000005,12.0000000,47.795438000000,-4.276218000000,,Léchiagat - Finistère,50517,observation-d7d0fc71-860f-4fae-8735-a6ab1a009faa-3,https://biolit.fr/observations/observation-d7d0fc71-860f-4fae-8735-a6ab1a009faa-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170225_120925.jpg,,FALSE, +N1,60677,sortie-9f9d1307-a0ce-4651-ac4d-c83289376644,https://biolit.fr/sorties/sortie-9f9d1307-a0ce-4651-ac4d-c83289376644/,Phil,,2/18/2017 0:00,18.000005,18.0000000,47.892159000000,-3.961266000000,,La Forêt-Fouesnant - Finistère,50519,observation-9f9d1307-a0ce-4651-ac4d-c83289376644,https://biolit.fr/observations/observation-9f9d1307-a0ce-4651-ac4d-c83289376644/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1060066.JPG,,TRUE, +N1,60677,sortie-9f9d1307-a0ce-4651-ac4d-c83289376644,https://biolit.fr/sorties/sortie-9f9d1307-a0ce-4651-ac4d-c83289376644/,Phil,,2/18/2017 0:00,18.000005,18.0000000,47.892159000000,-3.961266000000,,La Forêt-Fouesnant - Finistère,50521,observation-9f9d1307-a0ce-4651-ac4d-c83289376644-2,https://biolit.fr/observations/observation-9f9d1307-a0ce-4651-ac4d-c83289376644-2/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1060067.JPG,,TRUE, +N1,60677,sortie-9f9d1307-a0ce-4651-ac4d-c83289376644,https://biolit.fr/sorties/sortie-9f9d1307-a0ce-4651-ac4d-c83289376644/,Phil,,2/18/2017 0:00,18.000005,18.0000000,47.892159000000,-3.961266000000,,La Forêt-Fouesnant - Finistère,50523,observation-9f9d1307-a0ce-4651-ac4d-c83289376644-3,https://biolit.fr/observations/observation-9f9d1307-a0ce-4651-ac4d-c83289376644-3/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1060069.JPG,,TRUE, +N1,60678,sortie-c1db81e1-4beb-4b9e-aa20-28a569b17d63,https://biolit.fr/sorties/sortie-c1db81e1-4beb-4b9e-aa20-28a569b17d63/,Phil,,2/23/2017 0:00,15.0:15,15.0000000,48.086509000000,-4.486781000000,,Beuzec-Cap-Sizun - Finistère,50525,observation-c1db81e1-4beb-4b9e-aa20-28a569b17d63,https://biolit.fr/observations/observation-c1db81e1-4beb-4b9e-aa20-28a569b17d63/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060221.JPG,,FALSE, +N1,60678,sortie-c1db81e1-4beb-4b9e-aa20-28a569b17d63,https://biolit.fr/sorties/sortie-c1db81e1-4beb-4b9e-aa20-28a569b17d63/,Phil,,2/23/2017 0:00,15.0:15,15.0000000,48.086509000000,-4.486781000000,,Beuzec-Cap-Sizun - Finistère,50527,observation-c1db81e1-4beb-4b9e-aa20-28a569b17d63-2,https://biolit.fr/observations/observation-c1db81e1-4beb-4b9e-aa20-28a569b17d63-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060248.JPG,,FALSE, +N1,60678,sortie-c1db81e1-4beb-4b9e-aa20-28a569b17d63,https://biolit.fr/sorties/sortie-c1db81e1-4beb-4b9e-aa20-28a569b17d63/,Phil,,2/23/2017 0:00,15.0:15,15.0000000,48.086509000000,-4.486781000000,,Beuzec-Cap-Sizun - Finistère,50529,observation-c1db81e1-4beb-4b9e-aa20-28a569b17d63-3,https://biolit.fr/observations/observation-c1db81e1-4beb-4b9e-aa20-28a569b17d63-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060220.JPG,,FALSE, +N1,60679,sortie-9176ce62-fd2c-4e87-9c3b-0a875f9e6692,https://biolit.fr/sorties/sortie-9176ce62-fd2c-4e87-9c3b-0a875f9e6692/,azelie,,2/25/2017 0:00,16.0000000,16.0000000,49.294651000000,-0.115481000000,,Plage de Cabourg ,50531,observation-9176ce62-fd2c-4e87-9c3b-0a875f9e6692,https://biolit.fr/observations/observation-9176ce62-fd2c-4e87-9c3b-0a875f9e6692/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3857-scaled.jpg,,TRUE, +N1,60679,sortie-9176ce62-fd2c-4e87-9c3b-0a875f9e6692,https://biolit.fr/sorties/sortie-9176ce62-fd2c-4e87-9c3b-0a875f9e6692/,azelie,,2/25/2017 0:00,16.0000000,16.0000000,49.294651000000,-0.115481000000,,Plage de Cabourg ,50533,observation-9176ce62-fd2c-4e87-9c3b-0a875f9e6692-2,https://biolit.fr/observations/observation-9176ce62-fd2c-4e87-9c3b-0a875f9e6692-2/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3860-scaled.jpg,,TRUE, +N1,60679,sortie-9176ce62-fd2c-4e87-9c3b-0a875f9e6692,https://biolit.fr/sorties/sortie-9176ce62-fd2c-4e87-9c3b-0a875f9e6692/,azelie,,2/25/2017 0:00,16.0000000,16.0000000,49.294651000000,-0.115481000000,,Plage de Cabourg ,50535,observation-9176ce62-fd2c-4e87-9c3b-0a875f9e6692-3,https://biolit.fr/observations/observation-9176ce62-fd2c-4e87-9c3b-0a875f9e6692-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3863-scaled.jpg,,FALSE, +N1,60679,sortie-9176ce62-fd2c-4e87-9c3b-0a875f9e6692,https://biolit.fr/sorties/sortie-9176ce62-fd2c-4e87-9c3b-0a875f9e6692/,azelie,,2/25/2017 0:00,16.0000000,16.0000000,49.294651000000,-0.115481000000,,Plage de Cabourg ,50537,observation-9176ce62-fd2c-4e87-9c3b-0a875f9e6692-4,https://biolit.fr/observations/observation-9176ce62-fd2c-4e87-9c3b-0a875f9e6692-4/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3864-scaled.jpg,,TRUE, +N1,60679,sortie-9176ce62-fd2c-4e87-9c3b-0a875f9e6692,https://biolit.fr/sorties/sortie-9176ce62-fd2c-4e87-9c3b-0a875f9e6692/,azelie,,2/25/2017 0:00,16.0000000,16.0000000,49.294651000000,-0.115481000000,,Plage de Cabourg ,50539,observation-9176ce62-fd2c-4e87-9c3b-0a875f9e6692-5,https://biolit.fr/observations/observation-9176ce62-fd2c-4e87-9c3b-0a875f9e6692-5/,Euspira catena,Natice porte-chaîne,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3866-scaled.jpg,,TRUE, +N1,60680,sortie-604b69d6-7bf2-4a20-bcd2-54983e9f510e,https://biolit.fr/sorties/sortie-604b69d6-7bf2-4a20-bcd2-54983e9f510e/,Phil,,2/25/2017 0:00,12.0000000,12.000005,47.795686000000,-4.275353000000,,Léchiagat - Finistère,50541,observation-604b69d6-7bf2-4a20-bcd2-54983e9f510e,https://biolit.fr/observations/observation-604b69d6-7bf2-4a20-bcd2-54983e9f510e/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170225_120548.jpg,,TRUE, +N1,60680,sortie-604b69d6-7bf2-4a20-bcd2-54983e9f510e,https://biolit.fr/sorties/sortie-604b69d6-7bf2-4a20-bcd2-54983e9f510e/,Phil,,2/25/2017 0:00,12.0000000,12.000005,47.795686000000,-4.275353000000,,Léchiagat - Finistère,50543,observation-604b69d6-7bf2-4a20-bcd2-54983e9f510e-2,https://biolit.fr/observations/observation-604b69d6-7bf2-4a20-bcd2-54983e9f510e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170225_120649.jpg,,FALSE, +N1,60680,sortie-604b69d6-7bf2-4a20-bcd2-54983e9f510e,https://biolit.fr/sorties/sortie-604b69d6-7bf2-4a20-bcd2-54983e9f510e/,Phil,,2/25/2017 0:00,12.0000000,12.000005,47.795686000000,-4.275353000000,,Léchiagat - Finistère,50545,observation-604b69d6-7bf2-4a20-bcd2-54983e9f510e-3,https://biolit.fr/observations/observation-604b69d6-7bf2-4a20-bcd2-54983e9f510e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170225_120525.jpg,,FALSE, +N1,60681,sortie-654d0d9a-6616-4fe5-8760-49ce5958cd24,https://biolit.fr/sorties/sortie-654d0d9a-6616-4fe5-8760-49ce5958cd24/,Phil,,2/18/2017 0:00,17.0:55,18.0000000,47.890784000000,-3.963446000000,,La Forêt-Fouesnant - Finistère,50547,observation-654d0d9a-6616-4fe5-8760-49ce5958cd24,https://biolit.fr/observations/observation-654d0d9a-6616-4fe5-8760-49ce5958cd24/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060058.JPG,,FALSE, +N1,60681,sortie-654d0d9a-6616-4fe5-8760-49ce5958cd24,https://biolit.fr/sorties/sortie-654d0d9a-6616-4fe5-8760-49ce5958cd24/,Phil,,2/18/2017 0:00,17.0:55,18.0000000,47.890784000000,-3.963446000000,,La Forêt-Fouesnant - Finistère,50549,observation-654d0d9a-6616-4fe5-8760-49ce5958cd24-2,https://biolit.fr/observations/observation-654d0d9a-6616-4fe5-8760-49ce5958cd24-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060059.JPG,,FALSE, +N1,60681,sortie-654d0d9a-6616-4fe5-8760-49ce5958cd24,https://biolit.fr/sorties/sortie-654d0d9a-6616-4fe5-8760-49ce5958cd24/,Phil,,2/18/2017 0:00,17.0:55,18.0000000,47.890784000000,-3.963446000000,,La Forêt-Fouesnant - Finistère,50551,observation-654d0d9a-6616-4fe5-8760-49ce5958cd24-3,https://biolit.fr/observations/observation-654d0d9a-6616-4fe5-8760-49ce5958cd24-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060063.JPG,,FALSE, +N1,60682,sortie-cdf8ad2e-2ec2-4dd4-8cf7-13a0926481f2,https://biolit.fr/sorties/sortie-cdf8ad2e-2ec2-4dd4-8cf7-13a0926481f2/,Phil,,2/23/2017 0:00,15.000005,15.0000000,48.086586000000,-4.485846000000,,Beuzec-Cap-Sizun - Finistère,50553,observation-cdf8ad2e-2ec2-4dd4-8cf7-13a0926481f2,https://biolit.fr/observations/observation-cdf8ad2e-2ec2-4dd4-8cf7-13a0926481f2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060207.JPG,,FALSE, +N1,60682,sortie-cdf8ad2e-2ec2-4dd4-8cf7-13a0926481f2,https://biolit.fr/sorties/sortie-cdf8ad2e-2ec2-4dd4-8cf7-13a0926481f2/,Phil,,2/23/2017 0:00,15.000005,15.0000000,48.086586000000,-4.485846000000,,Beuzec-Cap-Sizun - Finistère,50555,observation-cdf8ad2e-2ec2-4dd4-8cf7-13a0926481f2-2,https://biolit.fr/observations/observation-cdf8ad2e-2ec2-4dd4-8cf7-13a0926481f2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060210.JPG,,FALSE, +N1,60682,sortie-cdf8ad2e-2ec2-4dd4-8cf7-13a0926481f2,https://biolit.fr/sorties/sortie-cdf8ad2e-2ec2-4dd4-8cf7-13a0926481f2/,Phil,,2/23/2017 0:00,15.000005,15.0000000,48.086586000000,-4.485846000000,,Beuzec-Cap-Sizun - Finistère,50557,observation-cdf8ad2e-2ec2-4dd4-8cf7-13a0926481f2-3,https://biolit.fr/observations/observation-cdf8ad2e-2ec2-4dd4-8cf7-13a0926481f2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060212.JPG,,FALSE, +N1,60682,sortie-cdf8ad2e-2ec2-4dd4-8cf7-13a0926481f2,https://biolit.fr/sorties/sortie-cdf8ad2e-2ec2-4dd4-8cf7-13a0926481f2/,Phil,,2/23/2017 0:00,15.000005,15.0000000,48.086586000000,-4.485846000000,,Beuzec-Cap-Sizun - Finistère,50559,observation-cdf8ad2e-2ec2-4dd4-8cf7-13a0926481f2-4,https://biolit.fr/observations/observation-cdf8ad2e-2ec2-4dd4-8cf7-13a0926481f2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060213.JPG,,FALSE, +N1,60683,sortie-55f6181a-fcc4-4d90-b3cb-11c5bb91ae87,https://biolit.fr/sorties/sortie-55f6181a-fcc4-4d90-b3cb-11c5bb91ae87/,Phil,,2/18/2017 0:00,17.0000000,18.0000000,47.89343300000,-3.968096000000,,La Forêt-Fouesnant - Finistère,50561,observation-55f6181a-fcc4-4d90-b3cb-11c5bb91ae87,https://biolit.fr/observations/observation-55f6181a-fcc4-4d90-b3cb-11c5bb91ae87/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060047.JPG,,FALSE, +N1,60683,sortie-55f6181a-fcc4-4d90-b3cb-11c5bb91ae87,https://biolit.fr/sorties/sortie-55f6181a-fcc4-4d90-b3cb-11c5bb91ae87/,Phil,,2/18/2017 0:00,17.0000000,18.0000000,47.89343300000,-3.968096000000,,La Forêt-Fouesnant - Finistère,50563,observation-55f6181a-fcc4-4d90-b3cb-11c5bb91ae87-2,https://biolit.fr/observations/observation-55f6181a-fcc4-4d90-b3cb-11c5bb91ae87-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060053.JPG,,FALSE, +N1,60683,sortie-55f6181a-fcc4-4d90-b3cb-11c5bb91ae87,https://biolit.fr/sorties/sortie-55f6181a-fcc4-4d90-b3cb-11c5bb91ae87/,Phil,,2/18/2017 0:00,17.0000000,18.0000000,47.89343300000,-3.968096000000,,La Forêt-Fouesnant - Finistère,50565,observation-55f6181a-fcc4-4d90-b3cb-11c5bb91ae87-3,https://biolit.fr/observations/observation-55f6181a-fcc4-4d90-b3cb-11c5bb91ae87-3/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1060056.JPG,,TRUE, +N1,60684,sortie-671065cf-df96-4a49-a456-ac2d3fa0d881,https://biolit.fr/sorties/sortie-671065cf-df96-4a49-a456-ac2d3fa0d881/,Phil,,2/21/2017 0:00,16.0:15,16.0:25,48.093448000000,-4.298409000000,,Douarnenez - Finistère,50567,observation-671065cf-df96-4a49-a456-ac2d3fa0d881,https://biolit.fr/observations/observation-671065cf-df96-4a49-a456-ac2d3fa0d881/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1060113.JPG,,TRUE, +N1,60684,sortie-671065cf-df96-4a49-a456-ac2d3fa0d881,https://biolit.fr/sorties/sortie-671065cf-df96-4a49-a456-ac2d3fa0d881/,Phil,,2/21/2017 0:00,16.0:15,16.0:25,48.093448000000,-4.298409000000,,Douarnenez - Finistère,50569,observation-671065cf-df96-4a49-a456-ac2d3fa0d881-2,https://biolit.fr/observations/observation-671065cf-df96-4a49-a456-ac2d3fa0d881-2/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1060115.JPG,,TRUE, +N1,60684,sortie-671065cf-df96-4a49-a456-ac2d3fa0d881,https://biolit.fr/sorties/sortie-671065cf-df96-4a49-a456-ac2d3fa0d881/,Phil,,2/21/2017 0:00,16.0:15,16.0:25,48.093448000000,-4.298409000000,,Douarnenez - Finistère,50571,observation-671065cf-df96-4a49-a456-ac2d3fa0d881-3,https://biolit.fr/observations/observation-671065cf-df96-4a49-a456-ac2d3fa0d881-3/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060110.JPG,,TRUE, +N1,60684,sortie-671065cf-df96-4a49-a456-ac2d3fa0d881,https://biolit.fr/sorties/sortie-671065cf-df96-4a49-a456-ac2d3fa0d881/,Phil,,2/21/2017 0:00,16.0:15,16.0:25,48.093448000000,-4.298409000000,,Douarnenez - Finistère,50573,observation-671065cf-df96-4a49-a456-ac2d3fa0d881-4,https://biolit.fr/observations/observation-671065cf-df96-4a49-a456-ac2d3fa0d881-4/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P1060111.JPG,,TRUE, +N1,60684,sortie-671065cf-df96-4a49-a456-ac2d3fa0d881,https://biolit.fr/sorties/sortie-671065cf-df96-4a49-a456-ac2d3fa0d881/,Phil,,2/21/2017 0:00,16.0:15,16.0:25,48.093448000000,-4.298409000000,,Douarnenez - Finistère,50575,observation-671065cf-df96-4a49-a456-ac2d3fa0d881-5,https://biolit.fr/observations/observation-671065cf-df96-4a49-a456-ac2d3fa0d881-5/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P1060104.JPG,,TRUE, +N1,60684,sortie-671065cf-df96-4a49-a456-ac2d3fa0d881,https://biolit.fr/sorties/sortie-671065cf-df96-4a49-a456-ac2d3fa0d881/,Phil,,2/21/2017 0:00,16.0:15,16.0:25,48.093448000000,-4.298409000000,,Douarnenez - Finistère,50577,observation-671065cf-df96-4a49-a456-ac2d3fa0d881-6,https://biolit.fr/observations/observation-671065cf-df96-4a49-a456-ac2d3fa0d881-6/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P1060102.JPG,,TRUE, +N1,60684,sortie-671065cf-df96-4a49-a456-ac2d3fa0d881,https://biolit.fr/sorties/sortie-671065cf-df96-4a49-a456-ac2d3fa0d881/,Phil,,2/21/2017 0:00,16.0:15,16.0:25,48.093448000000,-4.298409000000,,Douarnenez - Finistère,50579,observation-671065cf-df96-4a49-a456-ac2d3fa0d881-7,https://biolit.fr/observations/observation-671065cf-df96-4a49-a456-ac2d3fa0d881-7/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1060098.JPG,,TRUE, +N1,60684,sortie-671065cf-df96-4a49-a456-ac2d3fa0d881,https://biolit.fr/sorties/sortie-671065cf-df96-4a49-a456-ac2d3fa0d881/,Phil,,2/21/2017 0:00,16.0:15,16.0:25,48.093448000000,-4.298409000000,,Douarnenez - Finistère,50581,observation-671065cf-df96-4a49-a456-ac2d3fa0d881-8,https://biolit.fr/observations/observation-671065cf-df96-4a49-a456-ac2d3fa0d881-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060101.JPG,,FALSE, +N1,60685,sortie-a9a5edaf-7d7c-4e8d-ae79-17ecca4e6f41,https://biolit.fr/sorties/sortie-a9a5edaf-7d7c-4e8d-ae79-17ecca4e6f41/,Phil,,2/18/2017 0:00,17.0000000,17.0:35,47.891210000000,-3.966450000000,,La Forêt-Fouesnant - Finistère,50583,observation-a9a5edaf-7d7c-4e8d-ae79-17ecca4e6f41,https://biolit.fr/observations/observation-a9a5edaf-7d7c-4e8d-ae79-17ecca4e6f41/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170218_173401.jpg,,FALSE, +N1,60685,sortie-a9a5edaf-7d7c-4e8d-ae79-17ecca4e6f41,https://biolit.fr/sorties/sortie-a9a5edaf-7d7c-4e8d-ae79-17ecca4e6f41/,Phil,,2/18/2017 0:00,17.0000000,17.0:35,47.891210000000,-3.966450000000,,La Forêt-Fouesnant - Finistère,50585,observation-a9a5edaf-7d7c-4e8d-ae79-17ecca4e6f41-2,https://biolit.fr/observations/observation-a9a5edaf-7d7c-4e8d-ae79-17ecca4e6f41-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170218_173415.jpg,,FALSE, +N1,60685,sortie-a9a5edaf-7d7c-4e8d-ae79-17ecca4e6f41,https://biolit.fr/sorties/sortie-a9a5edaf-7d7c-4e8d-ae79-17ecca4e6f41/,Phil,,2/18/2017 0:00,17.0000000,17.0:35,47.891210000000,-3.966450000000,,La Forêt-Fouesnant - Finistère,50587,observation-a9a5edaf-7d7c-4e8d-ae79-17ecca4e6f41-3,https://biolit.fr/observations/observation-a9a5edaf-7d7c-4e8d-ae79-17ecca4e6f41-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170218_173502.jpg,,FALSE, +N1,60686,sortie-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9,https://biolit.fr/sorties/sortie-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9/,Phil,,2/18/2017 0:00,13.0:55,14.000005,47.79999400000,-4.377622000000,,Penmarc'h - Finistère,50589,observation-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9,https://biolit.fr/observations/observation-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1050870.JPG,,TRUE, +N1,60686,sortie-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9,https://biolit.fr/sorties/sortie-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9/,Phil,,2/18/2017 0:00,13.0:55,14.000005,47.79999400000,-4.377622000000,,Penmarc'h - Finistère,50591,observation-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9-2,https://biolit.fr/observations/observation-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9-2/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1050871.JPG,,TRUE, +N1,60686,sortie-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9,https://biolit.fr/sorties/sortie-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9/,Phil,,2/18/2017 0:00,13.0:55,14.000005,47.79999400000,-4.377622000000,,Penmarc'h - Finistère,50593,observation-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9-3,https://biolit.fr/observations/observation-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050873.JPG,,FALSE, +N1,60686,sortie-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9,https://biolit.fr/sorties/sortie-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9/,Phil,,2/18/2017 0:00,13.0:55,14.000005,47.79999400000,-4.377622000000,,Penmarc'h - Finistère,50595,observation-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9-4,https://biolit.fr/observations/observation-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9-4/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1050874.JPG,,TRUE, +N1,60686,sortie-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9,https://biolit.fr/sorties/sortie-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9/,Phil,,2/18/2017 0:00,13.0:55,14.000005,47.79999400000,-4.377622000000,,Penmarc'h - Finistère,50597,observation-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9-5,https://biolit.fr/observations/observation-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1050876.JPG,,TRUE, +N1,60687,sortie-e3b62d7d-94ed-4faf-8159-e04ac36b7ff0,https://biolit.fr/sorties/sortie-e3b62d7d-94ed-4faf-8159-e04ac36b7ff0/,Phil,,2/21/2017 0:00,16.0000000,16.0:15,48.093110000000,-4.299916000000,,Douarnenez - Finistère,50599,observation-e3b62d7d-94ed-4faf-8159-e04ac36b7ff0,https://biolit.fr/observations/observation-e3b62d7d-94ed-4faf-8159-e04ac36b7ff0/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060096.JPG,,FALSE, +N1,60687,sortie-e3b62d7d-94ed-4faf-8159-e04ac36b7ff0,https://biolit.fr/sorties/sortie-e3b62d7d-94ed-4faf-8159-e04ac36b7ff0/,Phil,,2/21/2017 0:00,16.0000000,16.0:15,48.093110000000,-4.299916000000,,Douarnenez - Finistère,50601,observation-e3b62d7d-94ed-4faf-8159-e04ac36b7ff0-2,https://biolit.fr/observations/observation-e3b62d7d-94ed-4faf-8159-e04ac36b7ff0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060091.JPG,,FALSE, +N1,60687,sortie-e3b62d7d-94ed-4faf-8159-e04ac36b7ff0,https://biolit.fr/sorties/sortie-e3b62d7d-94ed-4faf-8159-e04ac36b7ff0/,Phil,,2/21/2017 0:00,16.0000000,16.0:15,48.093110000000,-4.299916000000,,Douarnenez - Finistère,50603,observation-e3b62d7d-94ed-4faf-8159-e04ac36b7ff0-3,https://biolit.fr/observations/observation-e3b62d7d-94ed-4faf-8159-e04ac36b7ff0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060094.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50605,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4280.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50607,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-2,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4281.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50609,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-3,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-3/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4282.JPG,,TRUE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50611,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-4,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4284.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50613,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-5,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4285.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50615,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-6,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4286.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50617,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-7,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4287.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50619,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-8,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4288.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50621,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-9,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4289.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50623,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-10,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4292.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50625,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-11,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-11/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4296.JPG,,TRUE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50627,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-12,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-12/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4301.JPG,,TRUE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50629,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-13,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4316.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50631,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-14,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4245.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50633,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-15,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4239.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50635,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-16,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4246.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50637,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-17,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4248.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50639,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-18,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4250.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50641,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-19,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4258.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50643,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-20,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-20/,Bolinus brandaris,Murex épineux,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4266.JPG,,TRUE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50645,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-21,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4276.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50647,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-22,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-22/,Pecten jacobaeus,Coquille Saint-Jacques de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4310.JPG,,TRUE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50649,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-23,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-23/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4312.JPG,,TRUE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50651,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-24,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4201.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50653,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-25,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN3823.JPG,,FALSE, +N1,60689,sortie-dbce3190-9006-455c-8137-792055de2188,https://biolit.fr/sorties/sortie-dbce3190-9006-455c-8137-792055de2188/,Phil,,2/18/2017 0:00,13.0:45,13.0:55,47.800373000000,-4.379491000000,,Penmarc'h - Finistère,50655,observation-dbce3190-9006-455c-8137-792055de2188,https://biolit.fr/observations/observation-dbce3190-9006-455c-8137-792055de2188/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1050853.JPG,,TRUE, +N1,60689,sortie-dbce3190-9006-455c-8137-792055de2188,https://biolit.fr/sorties/sortie-dbce3190-9006-455c-8137-792055de2188/,Phil,,2/18/2017 0:00,13.0:45,13.0:55,47.800373000000,-4.379491000000,,Penmarc'h - Finistère,50657,observation-dbce3190-9006-455c-8137-792055de2188-2,https://biolit.fr/observations/observation-dbce3190-9006-455c-8137-792055de2188-2/,Phyllodoce maculata,Phyllodoce tacheté,,https://biolit.fr/wp-content/uploads/2023/07/P1050850.JPG,,TRUE, +N1,60689,sortie-dbce3190-9006-455c-8137-792055de2188,https://biolit.fr/sorties/sortie-dbce3190-9006-455c-8137-792055de2188/,Phil,,2/18/2017 0:00,13.0:45,13.0:55,47.800373000000,-4.379491000000,,Penmarc'h - Finistère,50659,observation-dbce3190-9006-455c-8137-792055de2188-3,https://biolit.fr/observations/observation-dbce3190-9006-455c-8137-792055de2188-3/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/P1050855.JPG,,TRUE, +N1,60690,sortie-0857a6ce-55ad-45c5-a40c-8b81e540b18e,https://biolit.fr/sorties/sortie-0857a6ce-55ad-45c5-a40c-8b81e540b18e/,Phil,,2/21/2017 0:00,16.000005,16.0000000,48.092555000000,-4.296920000000,,Douarnenez - Finistère,50661,observation-0857a6ce-55ad-45c5-a40c-8b81e540b18e,https://biolit.fr/observations/observation-0857a6ce-55ad-45c5-a40c-8b81e540b18e/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/P1060087.JPG,,TRUE, +N1,60690,sortie-0857a6ce-55ad-45c5-a40c-8b81e540b18e,https://biolit.fr/sorties/sortie-0857a6ce-55ad-45c5-a40c-8b81e540b18e/,Phil,,2/21/2017 0:00,16.000005,16.0000000,48.092555000000,-4.296920000000,,Douarnenez - Finistère,50663,observation-0857a6ce-55ad-45c5-a40c-8b81e540b18e-2,https://biolit.fr/observations/observation-0857a6ce-55ad-45c5-a40c-8b81e540b18e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060075.JPG,,FALSE, +N1,60690,sortie-0857a6ce-55ad-45c5-a40c-8b81e540b18e,https://biolit.fr/sorties/sortie-0857a6ce-55ad-45c5-a40c-8b81e540b18e/,Phil,,2/21/2017 0:00,16.000005,16.0000000,48.092555000000,-4.296920000000,,Douarnenez - Finistère,50665,observation-0857a6ce-55ad-45c5-a40c-8b81e540b18e-3,https://biolit.fr/observations/observation-0857a6ce-55ad-45c5-a40c-8b81e540b18e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060071.JPG,,FALSE, +N1,60691,sortie-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931,https://biolit.fr/sorties/sortie-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931/,Phil,,2/18/2017 0:00,13.000005,13.0000000,47.833289000000,-4.17503400000,,Loctudy - Finistère,50667,observation-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931,https://biolit.fr/observations/observation-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050827.JPG,,FALSE, +N1,60691,sortie-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931,https://biolit.fr/sorties/sortie-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931/,Phil,,2/18/2017 0:00,13.000005,13.0000000,47.833289000000,-4.17503400000,,Loctudy - Finistère,50669,observation-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931-2,https://biolit.fr/observations/observation-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050819_0.JPG,,FALSE, +N1,60691,sortie-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931,https://biolit.fr/sorties/sortie-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931/,Phil,,2/18/2017 0:00,13.000005,13.0000000,47.833289000000,-4.17503400000,,Loctudy - Finistère,50671,observation-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931-3,https://biolit.fr/observations/observation-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050814.JPG,,FALSE, +N1,60691,sortie-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931,https://biolit.fr/sorties/sortie-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931/,Phil,,2/18/2017 0:00,13.000005,13.0000000,47.833289000000,-4.17503400000,,Loctudy - Finistère,50673,observation-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931-4,https://biolit.fr/observations/observation-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050809.JPG,,FALSE, +N1,60691,sortie-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931,https://biolit.fr/sorties/sortie-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931/,Phil,,2/18/2017 0:00,13.000005,13.0000000,47.833289000000,-4.17503400000,,Loctudy - Finistère,50675,observation-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931-5,https://biolit.fr/observations/observation-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050802.JPG,,FALSE, +N1,60691,sortie-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931,https://biolit.fr/sorties/sortie-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931/,Phil,,2/18/2017 0:00,13.000005,13.0000000,47.833289000000,-4.17503400000,,Loctudy - Finistère,50677,observation-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931-6,https://biolit.fr/observations/observation-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050806.JPG,,FALSE, +N1,60692,sortie-45e3e449-dec8-4447-ad98-90a99dbdf7ef,https://biolit.fr/sorties/sortie-45e3e449-dec8-4447-ad98-90a99dbdf7ef/,Phil,,2/18/2017 0:00,13.0:55,14.000005,47.800077000000,-4.383030000000,,Penmarc'h - Finistère,50679,observation-45e3e449-dec8-4447-ad98-90a99dbdf7ef,https://biolit.fr/observations/observation-45e3e449-dec8-4447-ad98-90a99dbdf7ef/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1050868.JPG,,TRUE, +N1,60692,sortie-45e3e449-dec8-4447-ad98-90a99dbdf7ef,https://biolit.fr/sorties/sortie-45e3e449-dec8-4447-ad98-90a99dbdf7ef/,Phil,,2/18/2017 0:00,13.0:55,14.000005,47.800077000000,-4.383030000000,,Penmarc'h - Finistère,50681,observation-45e3e449-dec8-4447-ad98-90a99dbdf7ef-2,https://biolit.fr/observations/observation-45e3e449-dec8-4447-ad98-90a99dbdf7ef-2/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1050867.JPG,,TRUE, +N1,60692,sortie-45e3e449-dec8-4447-ad98-90a99dbdf7ef,https://biolit.fr/sorties/sortie-45e3e449-dec8-4447-ad98-90a99dbdf7ef/,Phil,,2/18/2017 0:00,13.0:55,14.000005,47.800077000000,-4.383030000000,,Penmarc'h - Finistère,50683,observation-45e3e449-dec8-4447-ad98-90a99dbdf7ef-3,https://biolit.fr/observations/observation-45e3e449-dec8-4447-ad98-90a99dbdf7ef-3/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/P1050861.JPG,,TRUE, +N1,60692,sortie-45e3e449-dec8-4447-ad98-90a99dbdf7ef,https://biolit.fr/sorties/sortie-45e3e449-dec8-4447-ad98-90a99dbdf7ef/,Phil,,2/18/2017 0:00,13.0:55,14.000005,47.800077000000,-4.383030000000,,Penmarc'h - Finistère,50685,observation-45e3e449-dec8-4447-ad98-90a99dbdf7ef-4,https://biolit.fr/observations/observation-45e3e449-dec8-4447-ad98-90a99dbdf7ef-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1050844.JPG,,TRUE, +N1,60693,sortie-c05758cb-bd7b-400c-992a-3419520830db,https://biolit.fr/sorties/sortie-c05758cb-bd7b-400c-992a-3419520830db/,Phil,,2/18/2017 0:00,17.0:35,17.0000000,47.892598000000,-3.965764000000,,La Forêt-Fouesnant - Finistère,50687,observation-c05758cb-bd7b-400c-992a-3419520830db,https://biolit.fr/observations/observation-c05758cb-bd7b-400c-992a-3419520830db/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20170218_173629.jpg,,TRUE, +N1,60693,sortie-c05758cb-bd7b-400c-992a-3419520830db,https://biolit.fr/sorties/sortie-c05758cb-bd7b-400c-992a-3419520830db/,Phil,,2/18/2017 0:00,17.0:35,17.0000000,47.892598000000,-3.965764000000,,La Forêt-Fouesnant - Finistère,50689,observation-c05758cb-bd7b-400c-992a-3419520830db-2,https://biolit.fr/observations/observation-c05758cb-bd7b-400c-992a-3419520830db-2/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20170218_173623.jpg,,TRUE, +N1,60694,sortie-7bcdcb5f-cb82-47e9-8814-a0cf37d4a89e,https://biolit.fr/sorties/sortie-7bcdcb5f-cb82-47e9-8814-a0cf37d4a89e/,Phil,,2/18/2017 0:00,17.0000000,17.0:15,47.897366000000,-3.975482000000,,La Forêt-Fouesnant - Finistère,50691,observation-7bcdcb5f-cb82-47e9-8814-a0cf37d4a89e,https://biolit.fr/observations/observation-7bcdcb5f-cb82-47e9-8814-a0cf37d4a89e/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20170218_171410.jpg,,TRUE, +N1,60694,sortie-7bcdcb5f-cb82-47e9-8814-a0cf37d4a89e,https://biolit.fr/sorties/sortie-7bcdcb5f-cb82-47e9-8814-a0cf37d4a89e/,Phil,,2/18/2017 0:00,17.0000000,17.0:15,47.897366000000,-3.975482000000,,La Forêt-Fouesnant - Finistère,50693,observation-7bcdcb5f-cb82-47e9-8814-a0cf37d4a89e-2,https://biolit.fr/observations/observation-7bcdcb5f-cb82-47e9-8814-a0cf37d4a89e-2/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/20170218_171251.jpg,,TRUE, +N1,60694,sortie-7bcdcb5f-cb82-47e9-8814-a0cf37d4a89e,https://biolit.fr/sorties/sortie-7bcdcb5f-cb82-47e9-8814-a0cf37d4a89e/,Phil,,2/18/2017 0:00,17.0000000,17.0:15,47.897366000000,-3.975482000000,,La Forêt-Fouesnant - Finistère,50695,observation-7bcdcb5f-cb82-47e9-8814-a0cf37d4a89e-3,https://biolit.fr/observations/observation-7bcdcb5f-cb82-47e9-8814-a0cf37d4a89e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170218_171421.jpg,,FALSE, +N1,60695,sortie-139adfc2-af64-404e-ad67-bbf347b1656e,https://biolit.fr/sorties/sortie-139adfc2-af64-404e-ad67-bbf347b1656e/,Phil,,2/18/2017 0:00,17.0:45,17.0000000,47.892907000000,-3.967858000000,,La Forêt-Fouesnant - Finistère,50697,observation-139adfc2-af64-404e-ad67-bbf347b1656e,https://biolit.fr/observations/observation-139adfc2-af64-404e-ad67-bbf347b1656e/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1060020.JPG,,TRUE, +N1,60695,sortie-139adfc2-af64-404e-ad67-bbf347b1656e,https://biolit.fr/sorties/sortie-139adfc2-af64-404e-ad67-bbf347b1656e/,Phil,,2/18/2017 0:00,17.0:45,17.0000000,47.892907000000,-3.967858000000,,La Forêt-Fouesnant - Finistère,50699,observation-139adfc2-af64-404e-ad67-bbf347b1656e-2,https://biolit.fr/observations/observation-139adfc2-af64-404e-ad67-bbf347b1656e-2/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1060021.JPG,,TRUE, +N1,60695,sortie-139adfc2-af64-404e-ad67-bbf347b1656e,https://biolit.fr/sorties/sortie-139adfc2-af64-404e-ad67-bbf347b1656e/,Phil,,2/18/2017 0:00,17.0:45,17.0000000,47.892907000000,-3.967858000000,,La Forêt-Fouesnant - Finistère,50701,observation-139adfc2-af64-404e-ad67-bbf347b1656e-3,https://biolit.fr/observations/observation-139adfc2-af64-404e-ad67-bbf347b1656e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060026.JPG,,FALSE, +N1,60695,sortie-139adfc2-af64-404e-ad67-bbf347b1656e,https://biolit.fr/sorties/sortie-139adfc2-af64-404e-ad67-bbf347b1656e/,Phil,,2/18/2017 0:00,17.0:45,17.0000000,47.892907000000,-3.967858000000,,La Forêt-Fouesnant - Finistère,50703,observation-139adfc2-af64-404e-ad67-bbf347b1656e-4,https://biolit.fr/observations/observation-139adfc2-af64-404e-ad67-bbf347b1656e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060025.JPG,,FALSE, +N1,60695,sortie-139adfc2-af64-404e-ad67-bbf347b1656e,https://biolit.fr/sorties/sortie-139adfc2-af64-404e-ad67-bbf347b1656e/,Phil,,2/18/2017 0:00,17.0:45,17.0000000,47.892907000000,-3.967858000000,,La Forêt-Fouesnant - Finistère,50705,observation-139adfc2-af64-404e-ad67-bbf347b1656e-5,https://biolit.fr/observations/observation-139adfc2-af64-404e-ad67-bbf347b1656e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060027.JPG,,FALSE, +N1,60695,sortie-139adfc2-af64-404e-ad67-bbf347b1656e,https://biolit.fr/sorties/sortie-139adfc2-af64-404e-ad67-bbf347b1656e/,Phil,,2/18/2017 0:00,17.0:45,17.0000000,47.892907000000,-3.967858000000,,La Forêt-Fouesnant - Finistère,50707,observation-139adfc2-af64-404e-ad67-bbf347b1656e-6,https://biolit.fr/observations/observation-139adfc2-af64-404e-ad67-bbf347b1656e-6/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1060029.JPG,,TRUE, +N1,60696,sortie-c27f91c5-7aa1-425e-8b40-774cde707efe,https://biolit.fr/sorties/sortie-c27f91c5-7aa1-425e-8b40-774cde707efe/,Phil,,1/28/2017 0:00,13.0000000,13.0:35,48.69514400000,-4.086270000000,,Sibiril - Finistère,50709,observation-c27f91c5-7aa1-425e-8b40-774cde707efe,https://biolit.fr/observations/observation-c27f91c5-7aa1-425e-8b40-774cde707efe/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170128_132203.jpg,,FALSE, +N1,60696,sortie-c27f91c5-7aa1-425e-8b40-774cde707efe,https://biolit.fr/sorties/sortie-c27f91c5-7aa1-425e-8b40-774cde707efe/,Phil,,1/28/2017 0:00,13.0000000,13.0:35,48.69514400000,-4.086270000000,,Sibiril - Finistère,50711,observation-c27f91c5-7aa1-425e-8b40-774cde707efe-2,https://biolit.fr/observations/observation-c27f91c5-7aa1-425e-8b40-774cde707efe-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170128_132230.jpg,,FALSE, +N1,60696,sortie-c27f91c5-7aa1-425e-8b40-774cde707efe,https://biolit.fr/sorties/sortie-c27f91c5-7aa1-425e-8b40-774cde707efe/,Phil,,1/28/2017 0:00,13.0000000,13.0:35,48.69514400000,-4.086270000000,,Sibiril - Finistère,50713,observation-c27f91c5-7aa1-425e-8b40-774cde707efe-3,https://biolit.fr/observations/observation-c27f91c5-7aa1-425e-8b40-774cde707efe-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170128_132258.jpg,,FALSE, +N1,60696,sortie-c27f91c5-7aa1-425e-8b40-774cde707efe,https://biolit.fr/sorties/sortie-c27f91c5-7aa1-425e-8b40-774cde707efe/,Phil,,1/28/2017 0:00,13.0000000,13.0:35,48.69514400000,-4.086270000000,,Sibiril - Finistère,50715,observation-c27f91c5-7aa1-425e-8b40-774cde707efe-4,https://biolit.fr/observations/observation-c27f91c5-7aa1-425e-8b40-774cde707efe-4/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20170128_132333.jpg,,TRUE, +N1,60696,sortie-c27f91c5-7aa1-425e-8b40-774cde707efe,https://biolit.fr/sorties/sortie-c27f91c5-7aa1-425e-8b40-774cde707efe/,Phil,,1/28/2017 0:00,13.0000000,13.0:35,48.69514400000,-4.086270000000,,Sibiril - Finistère,50717,observation-c27f91c5-7aa1-425e-8b40-774cde707efe-5,https://biolit.fr/observations/observation-c27f91c5-7aa1-425e-8b40-774cde707efe-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170128_132546.jpg,,FALSE, +N1,60696,sortie-c27f91c5-7aa1-425e-8b40-774cde707efe,https://biolit.fr/sorties/sortie-c27f91c5-7aa1-425e-8b40-774cde707efe/,Phil,,1/28/2017 0:00,13.0000000,13.0:35,48.69514400000,-4.086270000000,,Sibiril - Finistère,50719,observation-c27f91c5-7aa1-425e-8b40-774cde707efe-6,https://biolit.fr/observations/observation-c27f91c5-7aa1-425e-8b40-774cde707efe-6/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20170128_132842.jpg,,TRUE, +N1,60696,sortie-c27f91c5-7aa1-425e-8b40-774cde707efe,https://biolit.fr/sorties/sortie-c27f91c5-7aa1-425e-8b40-774cde707efe/,Phil,,1/28/2017 0:00,13.0000000,13.0:35,48.69514400000,-4.086270000000,,Sibiril - Finistère,50721,observation-c27f91c5-7aa1-425e-8b40-774cde707efe-7,https://biolit.fr/observations/observation-c27f91c5-7aa1-425e-8b40-774cde707efe-7/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170128_133613.jpg,,TRUE, +N1,60697,sortie-82535109-d1a1-477e-a811-98314aea3d6e,https://biolit.fr/sorties/sortie-82535109-d1a1-477e-a811-98314aea3d6e/,Phil,,2/18/2017 0:00,17.0000000,17.0:45,47.895309000000,-3.968768000000,,La Forêt-Fouesnant - Finistère,50723,observation-82535109-d1a1-477e-a811-98314aea3d6e,https://biolit.fr/observations/observation-82535109-d1a1-477e-a811-98314aea3d6e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060015.JPG,,FALSE, +N1,60697,sortie-82535109-d1a1-477e-a811-98314aea3d6e,https://biolit.fr/sorties/sortie-82535109-d1a1-477e-a811-98314aea3d6e/,Phil,,2/18/2017 0:00,17.0000000,17.0:45,47.895309000000,-3.968768000000,,La Forêt-Fouesnant - Finistère,50725,observation-82535109-d1a1-477e-a811-98314aea3d6e-2,https://biolit.fr/observations/observation-82535109-d1a1-477e-a811-98314aea3d6e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060018.JPG,,FALSE, +N1,60698,sortie-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff,https://biolit.fr/sorties/sortie-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff/,Phil,,2/18/2017 0:00,15.0000000,15.000005,47.799735000000,-4.373910000000,,Penmarc'h - Finistère,50727,observation-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff,https://biolit.fr/observations/observation-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060005.JPG,,FALSE, +N1,60698,sortie-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff,https://biolit.fr/sorties/sortie-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff/,Phil,,2/18/2017 0:00,15.0000000,15.000005,47.799735000000,-4.373910000000,,Penmarc'h - Finistère,50729,observation-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff-2,https://biolit.fr/observations/observation-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff-2/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1060006.JPG,,TRUE, +N1,60698,sortie-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff,https://biolit.fr/sorties/sortie-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff/,Phil,,2/18/2017 0:00,15.0000000,15.000005,47.799735000000,-4.373910000000,,Penmarc'h - Finistère,50731,observation-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff-3,https://biolit.fr/observations/observation-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060010.JPG,,FALSE, +N1,60698,sortie-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff,https://biolit.fr/sorties/sortie-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff/,Phil,,2/18/2017 0:00,15.0000000,15.000005,47.799735000000,-4.373910000000,,Penmarc'h - Finistère,50733,observation-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff-4,https://biolit.fr/observations/observation-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060011.JPG,,FALSE, +N1,60698,sortie-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff,https://biolit.fr/sorties/sortie-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff/,Phil,,2/18/2017 0:00,15.0000000,15.000005,47.799735000000,-4.373910000000,,Penmarc'h - Finistère,50735,observation-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff-5,https://biolit.fr/observations/observation-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060012.JPG,,FALSE, +N1,60699,sortie-65e8d2e6-5223-4050-a2b0-c75c0a9df963,https://biolit.fr/sorties/sortie-65e8d2e6-5223-4050-a2b0-c75c0a9df963/,Phil,,2/18/2017 0:00,13.0000000,13.0:45,47.799888000000,-4.374537000000,,Penmarc'h - Finistère,50737,observation-65e8d2e6-5223-4050-a2b0-c75c0a9df963,https://biolit.fr/observations/observation-65e8d2e6-5223-4050-a2b0-c75c0a9df963/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050835.JPG,,FALSE, +N1,60699,sortie-65e8d2e6-5223-4050-a2b0-c75c0a9df963,https://biolit.fr/sorties/sortie-65e8d2e6-5223-4050-a2b0-c75c0a9df963/,Phil,,2/18/2017 0:00,13.0000000,13.0:45,47.799888000000,-4.374537000000,,Penmarc'h - Finistère,50739,observation-65e8d2e6-5223-4050-a2b0-c75c0a9df963-2,https://biolit.fr/observations/observation-65e8d2e6-5223-4050-a2b0-c75c0a9df963-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050838.JPG,,FALSE, +N1,60699,sortie-65e8d2e6-5223-4050-a2b0-c75c0a9df963,https://biolit.fr/sorties/sortie-65e8d2e6-5223-4050-a2b0-c75c0a9df963/,Phil,,2/18/2017 0:00,13.0000000,13.0:45,47.799888000000,-4.374537000000,,Penmarc'h - Finistère,50741,observation-65e8d2e6-5223-4050-a2b0-c75c0a9df963-3,https://biolit.fr/observations/observation-65e8d2e6-5223-4050-a2b0-c75c0a9df963-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050841.JPG,,TRUE, +N1,60700,sortie-ec283415-99e8-45d0-baf4-f8aac152eb01,https://biolit.fr/sorties/sortie-ec283415-99e8-45d0-baf4-f8aac152eb01/,Phil,,1/28/2017 0:00,13.0:15,13.0000000,48.692413000000,-4.085283000000,,Sibiril - Finistère,50743,observation-ec283415-99e8-45d0-baf4-f8aac152eb01,https://biolit.fr/observations/observation-ec283415-99e8-45d0-baf4-f8aac152eb01/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20170128_131422.jpg,,TRUE, +N1,60700,sortie-ec283415-99e8-45d0-baf4-f8aac152eb01,https://biolit.fr/sorties/sortie-ec283415-99e8-45d0-baf4-f8aac152eb01/,Phil,,1/28/2017 0:00,13.0:15,13.0000000,48.692413000000,-4.085283000000,,Sibiril - Finistère,50745,observation-ec283415-99e8-45d0-baf4-f8aac152eb01-2,https://biolit.fr/observations/observation-ec283415-99e8-45d0-baf4-f8aac152eb01-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20170128_131249.jpg,,TRUE, +N1,60700,sortie-ec283415-99e8-45d0-baf4-f8aac152eb01,https://biolit.fr/sorties/sortie-ec283415-99e8-45d0-baf4-f8aac152eb01/,Phil,,1/28/2017 0:00,13.0:15,13.0000000,48.692413000000,-4.085283000000,,Sibiril - Finistère,50747,observation-ec283415-99e8-45d0-baf4-f8aac152eb01-3,https://biolit.fr/observations/observation-ec283415-99e8-45d0-baf4-f8aac152eb01-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170128_131657.jpg,,FALSE, +N1,60700,sortie-ec283415-99e8-45d0-baf4-f8aac152eb01,https://biolit.fr/sorties/sortie-ec283415-99e8-45d0-baf4-f8aac152eb01/,Phil,,1/28/2017 0:00,13.0:15,13.0000000,48.692413000000,-4.085283000000,,Sibiril - Finistère,50749,observation-ec283415-99e8-45d0-baf4-f8aac152eb01-4,https://biolit.fr/observations/observation-ec283415-99e8-45d0-baf4-f8aac152eb01-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170128_132033.jpg,,TRUE, +N1,60701,sortie-f09c6746-c930-4a30-87a0-db17011cbb5c,https://biolit.fr/sorties/sortie-f09c6746-c930-4a30-87a0-db17011cbb5c/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214941000000,5.343061000000,,anse de la maronaise,50751,observation-f09c6746-c930-4a30-87a0-db17011cbb5c,https://biolit.fr/observations/observation-f09c6746-c930-4a30-87a0-db17011cbb5c/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1001-scaled.jpg,,TRUE, +N1,60701,sortie-f09c6746-c930-4a30-87a0-db17011cbb5c,https://biolit.fr/sorties/sortie-f09c6746-c930-4a30-87a0-db17011cbb5c/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214941000000,5.343061000000,,anse de la maronaise,50753,observation-f09c6746-c930-4a30-87a0-db17011cbb5c-2,https://biolit.fr/observations/observation-f09c6746-c930-4a30-87a0-db17011cbb5c-2/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1002-scaled.jpg,,TRUE, +N1,60701,sortie-f09c6746-c930-4a30-87a0-db17011cbb5c,https://biolit.fr/sorties/sortie-f09c6746-c930-4a30-87a0-db17011cbb5c/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214941000000,5.343061000000,,anse de la maronaise,50755,observation-f09c6746-c930-4a30-87a0-db17011cbb5c-3,https://biolit.fr/observations/observation-f09c6746-c930-4a30-87a0-db17011cbb5c-3/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1006-scaled.jpg,,TRUE, +N1,60701,sortie-f09c6746-c930-4a30-87a0-db17011cbb5c,https://biolit.fr/sorties/sortie-f09c6746-c930-4a30-87a0-db17011cbb5c/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214941000000,5.343061000000,,anse de la maronaise,50757,observation-f09c6746-c930-4a30-87a0-db17011cbb5c-4,https://biolit.fr/observations/observation-f09c6746-c930-4a30-87a0-db17011cbb5c-4/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1007-scaled.jpg,,TRUE, +N1,60701,sortie-f09c6746-c930-4a30-87a0-db17011cbb5c,https://biolit.fr/sorties/sortie-f09c6746-c930-4a30-87a0-db17011cbb5c/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214941000000,5.343061000000,,anse de la maronaise,50759,observation-f09c6746-c930-4a30-87a0-db17011cbb5c-5,https://biolit.fr/observations/observation-f09c6746-c930-4a30-87a0-db17011cbb5c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1008-scaled.jpg,,FALSE, +N1,60701,sortie-f09c6746-c930-4a30-87a0-db17011cbb5c,https://biolit.fr/sorties/sortie-f09c6746-c930-4a30-87a0-db17011cbb5c/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214941000000,5.343061000000,,anse de la maronaise,50761,observation-f09c6746-c930-4a30-87a0-db17011cbb5c-6,https://biolit.fr/observations/observation-f09c6746-c930-4a30-87a0-db17011cbb5c-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1009-scaled.jpg,,FALSE, +N1,60701,sortie-f09c6746-c930-4a30-87a0-db17011cbb5c,https://biolit.fr/sorties/sortie-f09c6746-c930-4a30-87a0-db17011cbb5c/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214941000000,5.343061000000,,anse de la maronaise,50763,observation-f09c6746-c930-4a30-87a0-db17011cbb5c-7,https://biolit.fr/observations/observation-f09c6746-c930-4a30-87a0-db17011cbb5c-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1010-scaled.jpg,,FALSE, +N1,60701,sortie-f09c6746-c930-4a30-87a0-db17011cbb5c,https://biolit.fr/sorties/sortie-f09c6746-c930-4a30-87a0-db17011cbb5c/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214941000000,5.343061000000,,anse de la maronaise,50765,observation-f09c6746-c930-4a30-87a0-db17011cbb5c-8,https://biolit.fr/observations/observation-f09c6746-c930-4a30-87a0-db17011cbb5c-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1012-scaled.jpg,,FALSE, +N1,60702,sortie-8183f00c-371d-4931-a980-e50397e68f25,https://biolit.fr/sorties/sortie-8183f00c-371d-4931-a980-e50397e68f25/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.21466700000,5.343094000000,,ande de la Maronaise,50767,observation-8183f00c-371d-4931-a980-e50397e68f25,https://biolit.fr/observations/observation-8183f00c-371d-4931-a980-e50397e68f25/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0969-scaled.jpg,,FALSE, +N1,60702,sortie-8183f00c-371d-4931-a980-e50397e68f25,https://biolit.fr/sorties/sortie-8183f00c-371d-4931-a980-e50397e68f25/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.21466700000,5.343094000000,,ande de la Maronaise,50769,observation-8183f00c-371d-4931-a980-e50397e68f25-2,https://biolit.fr/observations/observation-8183f00c-371d-4931-a980-e50397e68f25-2/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0970-scaled.jpg,,TRUE, +N1,60702,sortie-8183f00c-371d-4931-a980-e50397e68f25,https://biolit.fr/sorties/sortie-8183f00c-371d-4931-a980-e50397e68f25/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.21466700000,5.343094000000,,ande de la Maronaise,50771,observation-8183f00c-371d-4931-a980-e50397e68f25-3,https://biolit.fr/observations/observation-8183f00c-371d-4931-a980-e50397e68f25-3/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0972-scaled.jpg,,TRUE, +N1,60702,sortie-8183f00c-371d-4931-a980-e50397e68f25,https://biolit.fr/sorties/sortie-8183f00c-371d-4931-a980-e50397e68f25/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.21466700000,5.343094000000,,ande de la Maronaise,50773,observation-8183f00c-371d-4931-a980-e50397e68f25-4,https://biolit.fr/observations/observation-8183f00c-371d-4931-a980-e50397e68f25-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0973-scaled.jpg,,FALSE, +N1,60702,sortie-8183f00c-371d-4931-a980-e50397e68f25,https://biolit.fr/sorties/sortie-8183f00c-371d-4931-a980-e50397e68f25/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.21466700000,5.343094000000,,ande de la Maronaise,50775,observation-8183f00c-371d-4931-a980-e50397e68f25-5,https://biolit.fr/observations/observation-8183f00c-371d-4931-a980-e50397e68f25-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0974-scaled.jpg,,FALSE, +N1,60702,sortie-8183f00c-371d-4931-a980-e50397e68f25,https://biolit.fr/sorties/sortie-8183f00c-371d-4931-a980-e50397e68f25/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.21466700000,5.343094000000,,ande de la Maronaise,50777,observation-8183f00c-371d-4931-a980-e50397e68f25-6,https://biolit.fr/observations/observation-8183f00c-371d-4931-a980-e50397e68f25-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0975-scaled.jpg,,FALSE, +N1,60702,sortie-8183f00c-371d-4931-a980-e50397e68f25,https://biolit.fr/sorties/sortie-8183f00c-371d-4931-a980-e50397e68f25/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.21466700000,5.343094000000,,ande de la Maronaise,50779,observation-8183f00c-371d-4931-a980-e50397e68f25-7,https://biolit.fr/observations/observation-8183f00c-371d-4931-a980-e50397e68f25-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0977-scaled.jpg,,FALSE, +N1,60702,sortie-8183f00c-371d-4931-a980-e50397e68f25,https://biolit.fr/sorties/sortie-8183f00c-371d-4931-a980-e50397e68f25/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.21466700000,5.343094000000,,ande de la Maronaise,50781,observation-8183f00c-371d-4931-a980-e50397e68f25-8,https://biolit.fr/observations/observation-8183f00c-371d-4931-a980-e50397e68f25-8/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0978-scaled.jpg,,TRUE, +N1,60702,sortie-8183f00c-371d-4931-a980-e50397e68f25,https://biolit.fr/sorties/sortie-8183f00c-371d-4931-a980-e50397e68f25/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.21466700000,5.343094000000,,ande de la Maronaise,50783,observation-8183f00c-371d-4931-a980-e50397e68f25-9,https://biolit.fr/observations/observation-8183f00c-371d-4931-a980-e50397e68f25-9/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0979-scaled.jpg,,TRUE, +N1,60703,sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233,https://biolit.fr/sorties/sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215240000000,5.342783000000,,Anse de la maronaise,50785,observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233,https://biolit.fr/observations/observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0140-scaled.jpg,,FALSE, +N1,60703,sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233,https://biolit.fr/sorties/sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215240000000,5.342783000000,,Anse de la maronaise,50787,observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-2,https://biolit.fr/observations/observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-2/,Xantho poressa,Xanthe de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0142-scaled.jpg,,TRUE, +N1,60703,sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233,https://biolit.fr/sorties/sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215240000000,5.342783000000,,Anse de la maronaise,50789,observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-3,https://biolit.fr/observations/observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-3/,Xantho poressa,Xanthe de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0143-scaled.jpg,,TRUE, +N1,60703,sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233,https://biolit.fr/sorties/sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215240000000,5.342783000000,,Anse de la maronaise,50791,observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-4,https://biolit.fr/observations/observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-4/,Xantho poressa,Xanthe de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0144-scaled.jpg,,TRUE, +N1,60703,sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233,https://biolit.fr/sorties/sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215240000000,5.342783000000,,Anse de la maronaise,50793,observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-5,https://biolit.fr/observations/observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-5/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0145_0-scaled.jpg,,TRUE, +N1,60703,sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233,https://biolit.fr/sorties/sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215240000000,5.342783000000,,Anse de la maronaise,50795,observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-6,https://biolit.fr/observations/observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-6/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0146-scaled.jpg,,TRUE, +N1,60703,sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233,https://biolit.fr/sorties/sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215240000000,5.342783000000,,Anse de la maronaise,50797,observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-7,https://biolit.fr/observations/observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-7/,Stramonita haemastoma,Bouche de sang,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0149-scaled.jpg,,TRUE, +N1,60703,sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233,https://biolit.fr/sorties/sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215240000000,5.342783000000,,Anse de la maronaise,50799,observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-8,https://biolit.fr/observations/observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-8/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC_0152_0-scaled.jpg,,TRUE, +N1,60703,sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233,https://biolit.fr/sorties/sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215240000000,5.342783000000,,Anse de la maronaise,50801,observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-9,https://biolit.fr/observations/observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-9/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0154-scaled.jpg,,TRUE, +N1,60703,sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233,https://biolit.fr/sorties/sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215240000000,5.342783000000,,Anse de la maronaise,50803,observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-10,https://biolit.fr/observations/observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0155_0-scaled.jpg,,FALSE, +N1,60703,sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233,https://biolit.fr/sorties/sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215240000000,5.342783000000,,Anse de la maronaise,50805,observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-11,https://biolit.fr/observations/observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0156-scaled.jpg,,FALSE, +N1,60703,sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233,https://biolit.fr/sorties/sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215240000000,5.342783000000,,Anse de la maronaise,50807,observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-12,https://biolit.fr/observations/observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0157-scaled.jpg,,FALSE, +N1,60703,sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233,https://biolit.fr/sorties/sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215240000000,5.342783000000,,Anse de la maronaise,50809,observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-13,https://biolit.fr/observations/observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-13/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0158-scaled.jpg,,TRUE, +N1,60703,sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233,https://biolit.fr/sorties/sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215240000000,5.342783000000,,Anse de la maronaise,50811,observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-14,https://biolit.fr/observations/observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0159-scaled.jpg,,FALSE, +N1,60704,sortie-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63,https://biolit.fr/sorties/sortie-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215047000000,5.342922000000,,Anse de la maronaise,50813,observation-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63,https://biolit.fr/observations/observation-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0133_0-scaled.jpg,,FALSE, +N1,60704,sortie-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63,https://biolit.fr/sorties/sortie-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215047000000,5.342922000000,,Anse de la maronaise,50815,observation-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63-2,https://biolit.fr/observations/observation-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63-2/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0134-scaled.jpg,,TRUE, +N1,60704,sortie-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63,https://biolit.fr/sorties/sortie-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215047000000,5.342922000000,,Anse de la maronaise,50817,observation-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63-3,https://biolit.fr/observations/observation-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0132-scaled.jpg,,FALSE, +N1,60704,sortie-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63,https://biolit.fr/sorties/sortie-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215047000000,5.342922000000,,Anse de la maronaise,50819,observation-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63-4,https://biolit.fr/observations/observation-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0136-scaled.jpg,,FALSE, +N1,60704,sortie-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63,https://biolit.fr/sorties/sortie-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215047000000,5.342922000000,,Anse de la maronaise,50821,observation-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63-5,https://biolit.fr/observations/observation-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0137_0-scaled.jpg,,FALSE, +N1,60704,sortie-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63,https://biolit.fr/sorties/sortie-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215047000000,5.342922000000,,Anse de la maronaise,50823,observation-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63-6,https://biolit.fr/observations/observation-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0138-scaled.jpg,,FALSE, +N1,60704,sortie-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63,https://biolit.fr/sorties/sortie-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215047000000,5.342922000000,,Anse de la maronaise,50825,observation-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63-7,https://biolit.fr/observations/observation-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0139-scaled.jpg,,FALSE, +N1,60705,sortie-51fc0dd6-14c7-452a-b502-f6977fac8d58,https://biolit.fr/sorties/sortie-51fc0dd6-14c7-452a-b502-f6977fac8d58/,Marine,,2/14/2017 0:00,15.0000000,15.0:45,43.290747000000,5.355493000000,,Plage des Catalans,50827,observation-51fc0dd6-14c7-452a-b502-f6977fac8d58,https://biolit.fr/observations/observation-51fc0dd6-14c7-452a-b502-f6977fac8d58/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2184-rotated.jpg,,TRUE, +N1,60705,sortie-51fc0dd6-14c7-452a-b502-f6977fac8d58,https://biolit.fr/sorties/sortie-51fc0dd6-14c7-452a-b502-f6977fac8d58/,Marine,,2/14/2017 0:00,15.0000000,15.0:45,43.290747000000,5.355493000000,,Plage des Catalans,50829,observation-51fc0dd6-14c7-452a-b502-f6977fac8d58-2,https://biolit.fr/observations/observation-51fc0dd6-14c7-452a-b502-f6977fac8d58-2/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2185-rotated.jpg,,TRUE, +N1,60705,sortie-51fc0dd6-14c7-452a-b502-f6977fac8d58,https://biolit.fr/sorties/sortie-51fc0dd6-14c7-452a-b502-f6977fac8d58/,Marine,,2/14/2017 0:00,15.0000000,15.0:45,43.290747000000,5.355493000000,,Plage des Catalans,50831,observation-51fc0dd6-14c7-452a-b502-f6977fac8d58-3,https://biolit.fr/observations/observation-51fc0dd6-14c7-452a-b502-f6977fac8d58-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2187.JPG,,FALSE, +N1,60706,sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa,https://biolit.fr/sorties/sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa/,Écoute ta planète,,2/13/2017 0:00,14.0000000,16.0000000,43.400636000000,5.138170000000,,plage du jai chateauneuf les martigues,50833,observation-ceae76e0-f003-4a73-b86e-ada93891d2aa,https://biolit.fr/observations/observation-ceae76e0-f003-4a73-b86e-ada93891d2aa/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170213_155021-scaled.jpg,,FALSE, +N1,60706,sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa,https://biolit.fr/sorties/sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa/,Écoute ta planète,,2/13/2017 0:00,14.0000000,16.0000000,43.400636000000,5.138170000000,,plage du jai chateauneuf les martigues,50835,observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-2,https://biolit.fr/observations/observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170213_155034-scaled.jpg,,FALSE, +N1,60706,sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa,https://biolit.fr/sorties/sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa/,Écoute ta planète,,2/13/2017 0:00,14.0000000,16.0000000,43.400636000000,5.138170000000,,plage du jai chateauneuf les martigues,50837,observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-3,https://biolit.fr/observations/observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170213_155116-scaled.jpg,,FALSE, +N1,60706,sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa,https://biolit.fr/sorties/sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa/,Écoute ta planète,,2/13/2017 0:00,14.0000000,16.0000000,43.400636000000,5.138170000000,,plage du jai chateauneuf les martigues,50839,observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-4,https://biolit.fr/observations/observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170213_155138-scaled.jpg,,FALSE, +N1,60706,sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa,https://biolit.fr/sorties/sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa/,Écoute ta planète,,2/13/2017 0:00,14.0000000,16.0000000,43.400636000000,5.138170000000,,plage du jai chateauneuf les martigues,50841,observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-5,https://biolit.fr/observations/observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170213_155154-scaled.jpg,,FALSE, +N1,60706,sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa,https://biolit.fr/sorties/sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa/,Écoute ta planète,,2/13/2017 0:00,14.0000000,16.0000000,43.400636000000,5.138170000000,,plage du jai chateauneuf les martigues,50843,observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-6,https://biolit.fr/observations/observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170213_155238-scaled.jpg,,FALSE, +N1,60706,sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa,https://biolit.fr/sorties/sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa/,Écoute ta planète,,2/13/2017 0:00,14.0000000,16.0000000,43.400636000000,5.138170000000,,plage du jai chateauneuf les martigues,50845,observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-7,https://biolit.fr/observations/observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170213_155355-scaled.jpg,,FALSE, +N1,60706,sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa,https://biolit.fr/sorties/sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa/,Écoute ta planète,,2/13/2017 0:00,14.0000000,16.0000000,43.400636000000,5.138170000000,,plage du jai chateauneuf les martigues,50847,observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-8,https://biolit.fr/observations/observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-8/,Cygnus olor,Cygne tuberculé,,https://biolit.fr/wp-content/uploads/2023/07/P2130014-scaled.jpg,,TRUE, +N1,60706,sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa,https://biolit.fr/sorties/sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa/,Écoute ta planète,,2/13/2017 0:00,14.0000000,16.0000000,43.400636000000,5.138170000000,,plage du jai chateauneuf les martigues,50849,observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-9,https://biolit.fr/observations/observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-9/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/P2130018-scaled.jpg,,TRUE, +N1,60706,sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa,https://biolit.fr/sorties/sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa/,Écoute ta planète,,2/13/2017 0:00,14.0000000,16.0000000,43.400636000000,5.138170000000,,plage du jai chateauneuf les martigues,50851,observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-10,https://biolit.fr/observations/observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/P2130020-scaled.jpg,,FALSE, +N1,60706,sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa,https://biolit.fr/sorties/sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa/,Écoute ta planète,,2/13/2017 0:00,14.0000000,16.0000000,43.400636000000,5.138170000000,,plage du jai chateauneuf les martigues,50853,observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-11,https://biolit.fr/observations/observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/P2130023-scaled.jpg,,FALSE, +N1,60706,sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa,https://biolit.fr/sorties/sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa/,Écoute ta planète,,2/13/2017 0:00,14.0000000,16.0000000,43.400636000000,5.138170000000,,plage du jai chateauneuf les martigues,50855,observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-12,https://biolit.fr/observations/observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/P2130025-scaled.jpg,,FALSE, +N1,60706,sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa,https://biolit.fr/sorties/sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa/,Écoute ta planète,,2/13/2017 0:00,14.0000000,16.0000000,43.400636000000,5.138170000000,,plage du jai chateauneuf les martigues,50857,observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-13,https://biolit.fr/observations/observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/P2130027-scaled.jpg,,FALSE, +N1,60706,sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa,https://biolit.fr/sorties/sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa/,Écoute ta planète,,2/13/2017 0:00,14.0000000,16.0000000,43.400636000000,5.138170000000,,plage du jai chateauneuf les martigues,50859,observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-14,https://biolit.fr/observations/observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-14/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/P2130032-scaled.jpg,,TRUE, +N1,60706,sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa,https://biolit.fr/sorties/sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa/,Écoute ta planète,,2/13/2017 0:00,14.0000000,16.0000000,43.400636000000,5.138170000000,,plage du jai chateauneuf les martigues,50861,observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-15,https://biolit.fr/observations/observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-15/,Tritia mutabilis,Noisette de mer,,https://biolit.fr/wp-content/uploads/2023/07/P2130036-scaled.jpg,,TRUE, +N1,60707,sortie-2670e1e2-b40a-440e-8ea8-a2eaeca40788,https://biolit.fr/sorties/sortie-2670e1e2-b40a-440e-8ea8-a2eaeca40788/,Phil,,1/28/2017 0:00,13.0000000,13.0:45,48.692827000000,-4.08570400000,,Sibiril - Finistère,50863,observation-2670e1e2-b40a-440e-8ea8-a2eaeca40788,https://biolit.fr/observations/observation-2670e1e2-b40a-440e-8ea8-a2eaeca40788/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170128_134121.jpg,,FALSE, +N1,60707,sortie-2670e1e2-b40a-440e-8ea8-a2eaeca40788,https://biolit.fr/sorties/sortie-2670e1e2-b40a-440e-8ea8-a2eaeca40788/,Phil,,1/28/2017 0:00,13.0000000,13.0:45,48.692827000000,-4.08570400000,,Sibiril - Finistère,50865,observation-2670e1e2-b40a-440e-8ea8-a2eaeca40788-2,https://biolit.fr/observations/observation-2670e1e2-b40a-440e-8ea8-a2eaeca40788-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170128_134528.jpg,,FALSE, +N1,60708,sortie-20e20a31-891c-4e08-8dc3-16ae78d6b4fb,https://biolit.fr/sorties/sortie-20e20a31-891c-4e08-8dc3-16ae78d6b4fb/,Phil,,1/13/2017 0:00,12.0000000,13.000005,47.796473000000,-4.177221000000,,Loctudy - Finistère,50867,observation-20e20a31-891c-4e08-8dc3-16ae78d6b4fb,https://biolit.fr/observations/observation-20e20a31-891c-4e08-8dc3-16ae78d6b4fb/,Aplysilla rosea,Aplysille rose,,https://biolit.fr/wp-content/uploads/2023/07/P1050700.JPG,,TRUE, +N1,60708,sortie-20e20a31-891c-4e08-8dc3-16ae78d6b4fb,https://biolit.fr/sorties/sortie-20e20a31-891c-4e08-8dc3-16ae78d6b4fb/,Phil,,1/13/2017 0:00,12.0000000,13.000005,47.796473000000,-4.177221000000,,Loctudy - Finistère,50869,observation-20e20a31-891c-4e08-8dc3-16ae78d6b4fb-2,https://biolit.fr/observations/observation-20e20a31-891c-4e08-8dc3-16ae78d6b4fb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050701.JPG,,FALSE, +N1,60708,sortie-20e20a31-891c-4e08-8dc3-16ae78d6b4fb,https://biolit.fr/sorties/sortie-20e20a31-891c-4e08-8dc3-16ae78d6b4fb/,Phil,,1/13/2017 0:00,12.0000000,13.000005,47.796473000000,-4.177221000000,,Loctudy - Finistère,50871,observation-20e20a31-891c-4e08-8dc3-16ae78d6b4fb-3,https://biolit.fr/observations/observation-20e20a31-891c-4e08-8dc3-16ae78d6b4fb-3/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1050702.JPG,,TRUE, +N1,60708,sortie-20e20a31-891c-4e08-8dc3-16ae78d6b4fb,https://biolit.fr/sorties/sortie-20e20a31-891c-4e08-8dc3-16ae78d6b4fb/,Phil,,1/13/2017 0:00,12.0000000,13.000005,47.796473000000,-4.177221000000,,Loctudy - Finistère,50873,observation-20e20a31-891c-4e08-8dc3-16ae78d6b4fb-4,https://biolit.fr/observations/observation-20e20a31-891c-4e08-8dc3-16ae78d6b4fb-4/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1050699.JPG,,TRUE, +N1,60708,sortie-20e20a31-891c-4e08-8dc3-16ae78d6b4fb,https://biolit.fr/sorties/sortie-20e20a31-891c-4e08-8dc3-16ae78d6b4fb/,Phil,,1/13/2017 0:00,12.0000000,13.000005,47.796473000000,-4.177221000000,,Loctudy - Finistère,50875,observation-20e20a31-891c-4e08-8dc3-16ae78d6b4fb-5,https://biolit.fr/observations/observation-20e20a31-891c-4e08-8dc3-16ae78d6b4fb-5/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1050712.JPG,,TRUE, +N1,60709,sortie-0fc43a0f-4786-4e6f-b0c3-5f559edf8e49,https://biolit.fr/sorties/sortie-0fc43a0f-4786-4e6f-b0c3-5f559edf8e49/,E.I.COLLIN JOSEPH,,02/11/2017,11.0000000,12.0000000,47.618675000000,-3.186315000000,,ERDEVEN ré poulbé,50877,observation-0fc43a0f-4786-4e6f-b0c3-5f559edf8e49,https://biolit.fr/observations/observation-0fc43a0f-4786-4e6f-b0c3-5f559edf8e49/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/DSCF0023.JPG,,TRUE, +N1,60709,sortie-0fc43a0f-4786-4e6f-b0c3-5f559edf8e49,https://biolit.fr/sorties/sortie-0fc43a0f-4786-4e6f-b0c3-5f559edf8e49/,E.I.COLLIN JOSEPH,,02/11/2017,11.0000000,12.0000000,47.618675000000,-3.186315000000,,ERDEVEN ré poulbé,50879,observation-0fc43a0f-4786-4e6f-b0c3-5f559edf8e49-2,https://biolit.fr/observations/observation-0fc43a0f-4786-4e6f-b0c3-5f559edf8e49-2/,Ficopomatus enigmaticus,Cascail,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/DSCF0015.JPG,,TRUE, +N1,60709,sortie-0fc43a0f-4786-4e6f-b0c3-5f559edf8e49,https://biolit.fr/sorties/sortie-0fc43a0f-4786-4e6f-b0c3-5f559edf8e49/,E.I.COLLIN JOSEPH,,02/11/2017,11.0000000,12.0000000,47.618675000000,-3.186315000000,,ERDEVEN ré poulbé,50881,observation-0fc43a0f-4786-4e6f-b0c3-5f559edf8e49-3,https://biolit.fr/observations/observation-0fc43a0f-4786-4e6f-b0c3-5f559edf8e49-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF0021.JPG,,FALSE, +N1,60710,sortie-9c206e5f-6bc0-41dd-80f9-fa9ec2e1aa0b,https://biolit.fr/sorties/sortie-9c206e5f-6bc0-41dd-80f9-fa9ec2e1aa0b/,AIEJE,,02/08/2017,11.0000000,12.0000000,43.342095000000,5.260954000000,,le rove,50883,observation-9c206e5f-6bc0-41dd-80f9-fa9ec2e1aa0b,https://biolit.fr/observations/observation-9c206e5f-6bc0-41dd-80f9-fa9ec2e1aa0b/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4380-scaled.jpg,,FALSE, +N1,60711,sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815,https://biolit.fr/sorties/sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236025000000,5.360061000000,,plage de la bonne brise,50885,observation-07441338-cb8d-4b12-b6b3-f60c33cf3815,https://biolit.fr/observations/observation-07441338-cb8d-4b12-b6b3-f60c33cf3815/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0935-scaled.jpg,,FALSE, +N1,60711,sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815,https://biolit.fr/sorties/sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236025000000,5.360061000000,,plage de la bonne brise,50887,observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-2,https://biolit.fr/observations/observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0936-scaled.jpg,,FALSE, +N1,60711,sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815,https://biolit.fr/sorties/sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236025000000,5.360061000000,,plage de la bonne brise,50889,observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-3,https://biolit.fr/observations/observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0937-scaled.jpg,,FALSE, +N1,60711,sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815,https://biolit.fr/sorties/sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236025000000,5.360061000000,,plage de la bonne brise,50891,observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-4,https://biolit.fr/observations/observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0938-scaled.jpg,,FALSE, +N1,60711,sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815,https://biolit.fr/sorties/sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236025000000,5.360061000000,,plage de la bonne brise,50893,observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-5,https://biolit.fr/observations/observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0939-scaled.jpg,,FALSE, +N1,60711,sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815,https://biolit.fr/sorties/sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236025000000,5.360061000000,,plage de la bonne brise,50895,observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-6,https://biolit.fr/observations/observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0940-scaled.jpg,,FALSE, +N1,60711,sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815,https://biolit.fr/sorties/sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236025000000,5.360061000000,,plage de la bonne brise,50897,observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-7,https://biolit.fr/observations/observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-7/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0941-scaled.jpg,,TRUE, +N1,60711,sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815,https://biolit.fr/sorties/sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236025000000,5.360061000000,,plage de la bonne brise,50899,observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-8,https://biolit.fr/observations/observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-8/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0943-scaled.jpg,,TRUE, +N1,60711,sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815,https://biolit.fr/sorties/sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236025000000,5.360061000000,,plage de la bonne brise,50901,observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-9,https://biolit.fr/observations/observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-9/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0944-scaled.jpg,,TRUE, +N1,60711,sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815,https://biolit.fr/sorties/sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236025000000,5.360061000000,,plage de la bonne brise,50903,observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-10,https://biolit.fr/observations/observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-10/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0945-scaled.jpg,,TRUE, +N1,60711,sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815,https://biolit.fr/sorties/sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236025000000,5.360061000000,,plage de la bonne brise,50905,observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-11,https://biolit.fr/observations/observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-11/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0946-scaled.jpg,,TRUE, +N1,60711,sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815,https://biolit.fr/sorties/sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236025000000,5.360061000000,,plage de la bonne brise,50907,observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-12,https://biolit.fr/observations/observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-12/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0948-scaled.jpg,,TRUE, +N1,60711,sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815,https://biolit.fr/sorties/sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236025000000,5.360061000000,,plage de la bonne brise,50909,observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-13,https://biolit.fr/observations/observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-13/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0949-scaled.jpg,,TRUE, +N1,60711,sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815,https://biolit.fr/sorties/sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236025000000,5.360061000000,,plage de la bonne brise,50911,observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-14,https://biolit.fr/observations/observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-14/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0950-scaled.jpg,,TRUE, +N1,60712,sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333,https://biolit.fr/sorties/sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236057000000,5.360056000000,,plage de la bonne brise,50913,observation-9a3deddb-cffe-4ba6-bb77-d820deffa333,https://biolit.fr/observations/observation-9a3deddb-cffe-4ba6-bb77-d820deffa333/,Flabellia petiolata,Udotée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0921-scaled.jpg,,TRUE, +N1,60712,sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333,https://biolit.fr/sorties/sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236057000000,5.360056000000,,plage de la bonne brise,50915,observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-2,https://biolit.fr/observations/observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0922-scaled.jpg,,FALSE, +N1,60712,sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333,https://biolit.fr/sorties/sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236057000000,5.360056000000,,plage de la bonne brise,50917,observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-3,https://biolit.fr/observations/observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0924-scaled.jpg,,FALSE, +N1,60712,sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333,https://biolit.fr/sorties/sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236057000000,5.360056000000,,plage de la bonne brise,50919,observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-4,https://biolit.fr/observations/observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0926-scaled.jpg,,FALSE, +N1,60712,sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333,https://biolit.fr/sorties/sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236057000000,5.360056000000,,plage de la bonne brise,50921,observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-5,https://biolit.fr/observations/observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0927-scaled.jpg,,FALSE, +N1,60712,sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333,https://biolit.fr/sorties/sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236057000000,5.360056000000,,plage de la bonne brise,50923,observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-6,https://biolit.fr/observations/observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0928-scaled.jpg,,FALSE, +N1,60712,sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333,https://biolit.fr/sorties/sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236057000000,5.360056000000,,plage de la bonne brise,50925,observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-7,https://biolit.fr/observations/observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0929-scaled.jpg,,FALSE, +N1,60712,sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333,https://biolit.fr/sorties/sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236057000000,5.360056000000,,plage de la bonne brise,50927,observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-8,https://biolit.fr/observations/observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0931-scaled.jpg,,FALSE, +N1,60712,sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333,https://biolit.fr/sorties/sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236057000000,5.360056000000,,plage de la bonne brise,50929,observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-9,https://biolit.fr/observations/observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0932-scaled.jpg,,FALSE, +N1,60712,sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333,https://biolit.fr/sorties/sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236057000000,5.360056000000,,plage de la bonne brise,50931,observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-10,https://biolit.fr/observations/observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0933-scaled.jpg,,FALSE, +N1,60713,sortie-74a9edb8-24ca-4776-9775-3b42de09a4eb,https://biolit.fr/sorties/sortie-74a9edb8-24ca-4776-9775-3b42de09a4eb/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236041000000,5.360077000000,,plage de la bonne brise,50933,observation-74a9edb8-24ca-4776-9775-3b42de09a4eb,https://biolit.fr/observations/observation-74a9edb8-24ca-4776-9775-3b42de09a4eb/,Striarca lactea,Striarca laiteuse,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0906-scaled.jpg,,TRUE, +N1,60713,sortie-74a9edb8-24ca-4776-9775-3b42de09a4eb,https://biolit.fr/sorties/sortie-74a9edb8-24ca-4776-9775-3b42de09a4eb/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236041000000,5.360077000000,,plage de la bonne brise,50935,observation-74a9edb8-24ca-4776-9775-3b42de09a4eb-2,https://biolit.fr/observations/observation-74a9edb8-24ca-4776-9775-3b42de09a4eb-2/,Striarca lactea,Striarca laiteuse,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0907-scaled.jpg,,TRUE, +N1,60713,sortie-74a9edb8-24ca-4776-9775-3b42de09a4eb,https://biolit.fr/sorties/sortie-74a9edb8-24ca-4776-9775-3b42de09a4eb/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236041000000,5.360077000000,,plage de la bonne brise,50937,observation-74a9edb8-24ca-4776-9775-3b42de09a4eb-3,https://biolit.fr/observations/observation-74a9edb8-24ca-4776-9775-3b42de09a4eb-3/,Striarca lactea,Striarca laiteuse,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0909-scaled.jpg,,TRUE, +N1,60713,sortie-74a9edb8-24ca-4776-9775-3b42de09a4eb,https://biolit.fr/sorties/sortie-74a9edb8-24ca-4776-9775-3b42de09a4eb/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236041000000,5.360077000000,,plage de la bonne brise,50939,observation-74a9edb8-24ca-4776-9775-3b42de09a4eb-4,https://biolit.fr/observations/observation-74a9edb8-24ca-4776-9775-3b42de09a4eb-4/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0910-scaled.jpg,,TRUE, +N1,60713,sortie-74a9edb8-24ca-4776-9775-3b42de09a4eb,https://biolit.fr/sorties/sortie-74a9edb8-24ca-4776-9775-3b42de09a4eb/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236041000000,5.360077000000,,plage de la bonne brise,50941,observation-74a9edb8-24ca-4776-9775-3b42de09a4eb-5,https://biolit.fr/observations/observation-74a9edb8-24ca-4776-9775-3b42de09a4eb-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0912-scaled.jpg,,FALSE, +N1,60713,sortie-74a9edb8-24ca-4776-9775-3b42de09a4eb,https://biolit.fr/sorties/sortie-74a9edb8-24ca-4776-9775-3b42de09a4eb/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236041000000,5.360077000000,,plage de la bonne brise,50943,observation-74a9edb8-24ca-4776-9775-3b42de09a4eb-6,https://biolit.fr/observations/observation-74a9edb8-24ca-4776-9775-3b42de09a4eb-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0914-scaled.jpg,,FALSE, +N1,60713,sortie-74a9edb8-24ca-4776-9775-3b42de09a4eb,https://biolit.fr/sorties/sortie-74a9edb8-24ca-4776-9775-3b42de09a4eb/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236041000000,5.360077000000,,plage de la bonne brise,50945,observation-74a9edb8-24ca-4776-9775-3b42de09a4eb-7,https://biolit.fr/observations/observation-74a9edb8-24ca-4776-9775-3b42de09a4eb-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0915-scaled.jpg,,FALSE, +N1,60713,sortie-74a9edb8-24ca-4776-9775-3b42de09a4eb,https://biolit.fr/sorties/sortie-74a9edb8-24ca-4776-9775-3b42de09a4eb/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236041000000,5.360077000000,,plage de la bonne brise,50947,observation-74a9edb8-24ca-4776-9775-3b42de09a4eb-8,https://biolit.fr/observations/observation-74a9edb8-24ca-4776-9775-3b42de09a4eb-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0916-scaled.jpg,,FALSE, +N1,60714,sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8,https://biolit.fr/sorties/sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8/,ludovic,,02/09/2017,15.0000000,16.0000000,43.235865000000,5.360000000000,,plage de la bonne brise,50949,observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8,https://biolit.fr/observations/observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0889-scaled.jpg,,FALSE, +N1,60714,sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8,https://biolit.fr/sorties/sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8/,ludovic,,02/09/2017,15.0000000,16.0000000,43.235865000000,5.360000000000,,plage de la bonne brise,50951,observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-2,https://biolit.fr/observations/observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-2/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0891-scaled.jpg,,TRUE, +N1,60714,sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8,https://biolit.fr/sorties/sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8/,ludovic,,02/09/2017,15.0000000,16.0000000,43.235865000000,5.360000000000,,plage de la bonne brise,50953,observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-3,https://biolit.fr/observations/observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-3/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0891_0-scaled.jpg,,TRUE, +N1,60714,sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8,https://biolit.fr/sorties/sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8/,ludovic,,02/09/2017,15.0000000,16.0000000,43.235865000000,5.360000000000,,plage de la bonne brise,50955,observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-4,https://biolit.fr/observations/observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-4/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0892-scaled.jpg,,TRUE, +N1,60714,sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8,https://biolit.fr/sorties/sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8/,ludovic,,02/09/2017,15.0000000,16.0000000,43.235865000000,5.360000000000,,plage de la bonne brise,50957,observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-5,https://biolit.fr/observations/observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0894-scaled.jpg,,FALSE, +N1,60714,sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8,https://biolit.fr/sorties/sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8/,ludovic,,02/09/2017,15.0000000,16.0000000,43.235865000000,5.360000000000,,plage de la bonne brise,50959,observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-6,https://biolit.fr/observations/observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0895-scaled.jpg,,FALSE, +N1,60714,sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8,https://biolit.fr/sorties/sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8/,ludovic,,02/09/2017,15.0000000,16.0000000,43.235865000000,5.360000000000,,plage de la bonne brise,50961,observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-7,https://biolit.fr/observations/observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0897-scaled.jpg,,FALSE, +N1,60714,sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8,https://biolit.fr/sorties/sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8/,ludovic,,02/09/2017,15.0000000,16.0000000,43.235865000000,5.360000000000,,plage de la bonne brise,50963,observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-8,https://biolit.fr/observations/observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0899-scaled.jpg,,FALSE, +N1,60714,sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8,https://biolit.fr/sorties/sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8/,ludovic,,02/09/2017,15.0000000,16.0000000,43.235865000000,5.360000000000,,plage de la bonne brise,50965,observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-9,https://biolit.fr/observations/observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0901-scaled.jpg,,FALSE, +N1,60714,sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8,https://biolit.fr/sorties/sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8/,ludovic,,02/09/2017,15.0000000,16.0000000,43.235865000000,5.360000000000,,plage de la bonne brise,50967,observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-10,https://biolit.fr/observations/observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0903-scaled.jpg,,FALSE, +N1,60714,sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8,https://biolit.fr/sorties/sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8/,ludovic,,02/09/2017,15.0000000,16.0000000,43.235865000000,5.360000000000,,plage de la bonne brise,50969,observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-11,https://biolit.fr/observations/observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0904_0-scaled.jpg,,FALSE, +N1,60715,sortie-f2a0ba52-740b-48bb-a9a3-117099db2728,https://biolit.fr/sorties/sortie-f2a0ba52-740b-48bb-a9a3-117099db2728/,NVanzu,,02/09/2017,15.0000000,16.0:25,43.236070000000,5.359992000000,,Plage de la bonne brise,50971,observation-f2a0ba52-740b-48bb-a9a3-117099db2728,https://biolit.fr/observations/observation-f2a0ba52-740b-48bb-a9a3-117099db2728/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0125-scaled.jpg,,FALSE, +N1,60715,sortie-f2a0ba52-740b-48bb-a9a3-117099db2728,https://biolit.fr/sorties/sortie-f2a0ba52-740b-48bb-a9a3-117099db2728/,NVanzu,,02/09/2017,15.0000000,16.0:25,43.236070000000,5.359992000000,,Plage de la bonne brise,50973,observation-f2a0ba52-740b-48bb-a9a3-117099db2728-2,https://biolit.fr/observations/observation-f2a0ba52-740b-48bb-a9a3-117099db2728-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0126-scaled.jpg,,FALSE, +N1,60715,sortie-f2a0ba52-740b-48bb-a9a3-117099db2728,https://biolit.fr/sorties/sortie-f2a0ba52-740b-48bb-a9a3-117099db2728/,NVanzu,,02/09/2017,15.0000000,16.0:25,43.236070000000,5.359992000000,,Plage de la bonne brise,50975,observation-f2a0ba52-740b-48bb-a9a3-117099db2728-3,https://biolit.fr/observations/observation-f2a0ba52-740b-48bb-a9a3-117099db2728-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0128-scaled.jpg,,FALSE, +N1,60715,sortie-f2a0ba52-740b-48bb-a9a3-117099db2728,https://biolit.fr/sorties/sortie-f2a0ba52-740b-48bb-a9a3-117099db2728/,NVanzu,,02/09/2017,15.0000000,16.0:25,43.236070000000,5.359992000000,,Plage de la bonne brise,50977,observation-f2a0ba52-740b-48bb-a9a3-117099db2728-4,https://biolit.fr/observations/observation-f2a0ba52-740b-48bb-a9a3-117099db2728-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0131-scaled.jpg,,FALSE, +N1,60715,sortie-f2a0ba52-740b-48bb-a9a3-117099db2728,https://biolit.fr/sorties/sortie-f2a0ba52-740b-48bb-a9a3-117099db2728/,NVanzu,,02/09/2017,15.0000000,16.0:25,43.236070000000,5.359992000000,,Plage de la bonne brise,50979,observation-f2a0ba52-740b-48bb-a9a3-117099db2728-5,https://biolit.fr/observations/observation-f2a0ba52-740b-48bb-a9a3-117099db2728-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0135_0-scaled.jpg,,FALSE, +N1,60715,sortie-f2a0ba52-740b-48bb-a9a3-117099db2728,https://biolit.fr/sorties/sortie-f2a0ba52-740b-48bb-a9a3-117099db2728/,NVanzu,,02/09/2017,15.0000000,16.0:25,43.236070000000,5.359992000000,,Plage de la bonne brise,50981,observation-f2a0ba52-740b-48bb-a9a3-117099db2728-6,https://biolit.fr/observations/observation-f2a0ba52-740b-48bb-a9a3-117099db2728-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0133-scaled.jpg,,FALSE, +N1,60716,sortie-3d00cecb-63c2-45f5-b84a-d0af1059d7b4,https://biolit.fr/sorties/sortie-3d00cecb-63c2-45f5-b84a-d0af1059d7b4/,NVanzu,,02/09/2017,15.0000000,16.0000000,43.235985000000,5.360013000000,,Plage de la bonne brise,50983,observation-3d00cecb-63c2-45f5-b84a-d0af1059d7b4,https://biolit.fr/observations/observation-3d00cecb-63c2-45f5-b84a-d0af1059d7b4/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0120-scaled.jpg,,TRUE, +N1,60716,sortie-3d00cecb-63c2-45f5-b84a-d0af1059d7b4,https://biolit.fr/sorties/sortie-3d00cecb-63c2-45f5-b84a-d0af1059d7b4/,NVanzu,,02/09/2017,15.0000000,16.0000000,43.235985000000,5.360013000000,,Plage de la bonne brise,50985,observation-3d00cecb-63c2-45f5-b84a-d0af1059d7b4-2,https://biolit.fr/observations/observation-3d00cecb-63c2-45f5-b84a-d0af1059d7b4-2/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0121-scaled.jpg,,TRUE, +N1,60716,sortie-3d00cecb-63c2-45f5-b84a-d0af1059d7b4,https://biolit.fr/sorties/sortie-3d00cecb-63c2-45f5-b84a-d0af1059d7b4/,NVanzu,,02/09/2017,15.0000000,16.0000000,43.235985000000,5.360013000000,,Plage de la bonne brise,50987,observation-3d00cecb-63c2-45f5-b84a-d0af1059d7b4-3,https://biolit.fr/observations/observation-3d00cecb-63c2-45f5-b84a-d0af1059d7b4-3/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0122-scaled.jpg,,TRUE, +N1,60716,sortie-3d00cecb-63c2-45f5-b84a-d0af1059d7b4,https://biolit.fr/sorties/sortie-3d00cecb-63c2-45f5-b84a-d0af1059d7b4/,NVanzu,,02/09/2017,15.0000000,16.0000000,43.235985000000,5.360013000000,,Plage de la bonne brise,50989,observation-3d00cecb-63c2-45f5-b84a-d0af1059d7b4-4,https://biolit.fr/observations/observation-3d00cecb-63c2-45f5-b84a-d0af1059d7b4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0123-scaled.jpg,,FALSE, +N1,60716,sortie-3d00cecb-63c2-45f5-b84a-d0af1059d7b4,https://biolit.fr/sorties/sortie-3d00cecb-63c2-45f5-b84a-d0af1059d7b4/,NVanzu,,02/09/2017,15.0000000,16.0000000,43.235985000000,5.360013000000,,Plage de la bonne brise,50991,observation-3d00cecb-63c2-45f5-b84a-d0af1059d7b4-5,https://biolit.fr/observations/observation-3d00cecb-63c2-45f5-b84a-d0af1059d7b4-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0124-scaled.jpg,,FALSE, +N1,60717,sortie-caad926f-18ee-46ea-b5c2-08fb58331b98,https://biolit.fr/sorties/sortie-caad926f-18ee-46ea-b5c2-08fb58331b98/,Phil,,1/28/2017 0:00,13.000005,13.0:15,48.694793000000,-4.085283000000,,Sibiril - Finistère,50993,observation-caad926f-18ee-46ea-b5c2-08fb58331b98,https://biolit.fr/observations/observation-caad926f-18ee-46ea-b5c2-08fb58331b98/,Phymatolithon lenormandii,Algue encroûtante rouge de Lenormand,,https://biolit.fr/wp-content/uploads/2023/07/20170128_130414.jpg,,TRUE, +N1,60717,sortie-caad926f-18ee-46ea-b5c2-08fb58331b98,https://biolit.fr/sorties/sortie-caad926f-18ee-46ea-b5c2-08fb58331b98/,Phil,,1/28/2017 0:00,13.000005,13.0:15,48.694793000000,-4.085283000000,,Sibiril - Finistère,50995,observation-caad926f-18ee-46ea-b5c2-08fb58331b98-2,https://biolit.fr/observations/observation-caad926f-18ee-46ea-b5c2-08fb58331b98-2/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/07/20170128_130958.jpg,,TRUE, +N1,60717,sortie-caad926f-18ee-46ea-b5c2-08fb58331b98,https://biolit.fr/sorties/sortie-caad926f-18ee-46ea-b5c2-08fb58331b98/,Phil,,1/28/2017 0:00,13.000005,13.0:15,48.694793000000,-4.085283000000,,Sibiril - Finistère,50997,observation-caad926f-18ee-46ea-b5c2-08fb58331b98-3,https://biolit.fr/observations/observation-caad926f-18ee-46ea-b5c2-08fb58331b98-3/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/07/20170128_130826.jpg,,TRUE, +N1,60717,sortie-caad926f-18ee-46ea-b5c2-08fb58331b98,https://biolit.fr/sorties/sortie-caad926f-18ee-46ea-b5c2-08fb58331b98/,Phil,,1/28/2017 0:00,13.000005,13.0:15,48.694793000000,-4.085283000000,,Sibiril - Finistère,50999,observation-caad926f-18ee-46ea-b5c2-08fb58331b98-4,https://biolit.fr/observations/observation-caad926f-18ee-46ea-b5c2-08fb58331b98-4/,Janua heterostropha,Spirorbe de Pagenstecher,,https://biolit.fr/wp-content/uploads/2023/07/20170128_131240.jpg,,TRUE, +N1,60717,sortie-caad926f-18ee-46ea-b5c2-08fb58331b98,https://biolit.fr/sorties/sortie-caad926f-18ee-46ea-b5c2-08fb58331b98/,Phil,,1/28/2017 0:00,13.000005,13.0:15,48.694793000000,-4.085283000000,,Sibiril - Finistère,51001,observation-caad926f-18ee-46ea-b5c2-08fb58331b98-5,https://biolit.fr/observations/observation-caad926f-18ee-46ea-b5c2-08fb58331b98-5/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170128_130512.jpg,,TRUE, +N1,60718,sortie-2612f2b9-43b0-4b1d-948f-99644dc7d027,https://biolit.fr/sorties/sortie-2612f2b9-43b0-4b1d-948f-99644dc7d027/,Phil,,1/13/2017 0:00,12.0:55,13.0000000,47.57289000000,-4.323746000000,,Le Guilvinec - Finistère,51003,observation-2612f2b9-43b0-4b1d-948f-99644dc7d027,https://biolit.fr/observations/observation-2612f2b9-43b0-4b1d-948f-99644dc7d027/,Nephrops norvegicus,Langoustine,,https://biolit.fr/wp-content/uploads/2023/07/P1050722.JPG,,TRUE, +N1,60718,sortie-2612f2b9-43b0-4b1d-948f-99644dc7d027,https://biolit.fr/sorties/sortie-2612f2b9-43b0-4b1d-948f-99644dc7d027/,Phil,,1/13/2017 0:00,12.0:55,13.0000000,47.57289000000,-4.323746000000,,Le Guilvinec - Finistère,51005,observation-2612f2b9-43b0-4b1d-948f-99644dc7d027-2,https://biolit.fr/observations/observation-2612f2b9-43b0-4b1d-948f-99644dc7d027-2/,Nephrops norvegicus,Langoustine,,https://biolit.fr/wp-content/uploads/2023/07/P1050719.JPG,,TRUE, +N1,60718,sortie-2612f2b9-43b0-4b1d-948f-99644dc7d027,https://biolit.fr/sorties/sortie-2612f2b9-43b0-4b1d-948f-99644dc7d027/,Phil,,1/13/2017 0:00,12.0:55,13.0000000,47.57289000000,-4.323746000000,,Le Guilvinec - Finistère,51007,observation-2612f2b9-43b0-4b1d-948f-99644dc7d027-3,https://biolit.fr/observations/observation-2612f2b9-43b0-4b1d-948f-99644dc7d027-3/,Nephrops norvegicus,Langoustine,,https://biolit.fr/wp-content/uploads/2023/07/P1050715.JPG,,TRUE, +N1,60719,sortie-faef66d5-cb37-4455-a55d-755beaa66c31,https://biolit.fr/sorties/sortie-faef66d5-cb37-4455-a55d-755beaa66c31/,SofiaManuel,,02/07/2017,17.0000000,19.0000000,43.333438000000,5.197152000000,,la redonne,51009,observation-faef66d5-cb37-4455-a55d-755beaa66c31,https://biolit.fr/observations/observation-faef66d5-cb37-4455-a55d-755beaa66c31/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4233-scaled.jpg,,FALSE, +N1,60720,sortie-f47db6a3-f4e0-4443-b34b-59530fce2be2,https://biolit.fr/sorties/sortie-f47db6a3-f4e0-4443-b34b-59530fce2be2/,yanis bennadji,,1/24/2017 0:00,14.0000000,17.0000000,43.333718000000,5.197755000000,,Calanque de la Redonne,51011,observation-f47db6a3-f4e0-4443-b34b-59530fce2be2,https://biolit.fr/observations/observation-f47db6a3-f4e0-4443-b34b-59530fce2be2/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/photo 2_8-scaled.jpg,,TRUE, +N1,60720,sortie-f47db6a3-f4e0-4443-b34b-59530fce2be2,https://biolit.fr/sorties/sortie-f47db6a3-f4e0-4443-b34b-59530fce2be2/,yanis bennadji,,1/24/2017 0:00,14.0000000,17.0000000,43.333718000000,5.197755000000,,Calanque de la Redonne,51013,observation-f47db6a3-f4e0-4443-b34b-59530fce2be2-2,https://biolit.fr/observations/observation-f47db6a3-f4e0-4443-b34b-59530fce2be2-2/,Xantho poressa,Xanthe de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/photo 5_1-scaled.jpg,,TRUE, +N1,60720,sortie-f47db6a3-f4e0-4443-b34b-59530fce2be2,https://biolit.fr/sorties/sortie-f47db6a3-f4e0-4443-b34b-59530fce2be2/,yanis bennadji,,1/24/2017 0:00,14.0000000,17.0000000,43.333718000000,5.197755000000,,Calanque de la Redonne,51015,observation-f47db6a3-f4e0-4443-b34b-59530fce2be2-3,https://biolit.fr/observations/observation-f47db6a3-f4e0-4443-b34b-59530fce2be2-3/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_4250-scaled.jpg,,TRUE, +N1,60720,sortie-f47db6a3-f4e0-4443-b34b-59530fce2be2,https://biolit.fr/sorties/sortie-f47db6a3-f4e0-4443-b34b-59530fce2be2/,yanis bennadji,,1/24/2017 0:00,14.0000000,17.0000000,43.333718000000,5.197755000000,,Calanque de la Redonne,51017,observation-f47db6a3-f4e0-4443-b34b-59530fce2be2-4,https://biolit.fr/observations/observation-f47db6a3-f4e0-4443-b34b-59530fce2be2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4279-scaled.jpg,,FALSE, +N1,60720,sortie-f47db6a3-f4e0-4443-b34b-59530fce2be2,https://biolit.fr/sorties/sortie-f47db6a3-f4e0-4443-b34b-59530fce2be2/,yanis bennadji,,1/24/2017 0:00,14.0000000,17.0000000,43.333718000000,5.197755000000,,Calanque de la Redonne,51019,observation-f47db6a3-f4e0-4443-b34b-59530fce2be2-5,https://biolit.fr/observations/observation-f47db6a3-f4e0-4443-b34b-59530fce2be2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4289-scaled.jpg,,FALSE, +N1,60720,sortie-f47db6a3-f4e0-4443-b34b-59530fce2be2,https://biolit.fr/sorties/sortie-f47db6a3-f4e0-4443-b34b-59530fce2be2/,yanis bennadji,,1/24/2017 0:00,14.0000000,17.0000000,43.333718000000,5.197755000000,,Calanque de la Redonne,51021,observation-f47db6a3-f4e0-4443-b34b-59530fce2be2-6,https://biolit.fr/observations/observation-f47db6a3-f4e0-4443-b34b-59530fce2be2-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 3_8-scaled.jpg,,FALSE, +N1,60720,sortie-f47db6a3-f4e0-4443-b34b-59530fce2be2,https://biolit.fr/sorties/sortie-f47db6a3-f4e0-4443-b34b-59530fce2be2/,yanis bennadji,,1/24/2017 0:00,14.0000000,17.0000000,43.333718000000,5.197755000000,,Calanque de la Redonne,51023,observation-f47db6a3-f4e0-4443-b34b-59530fce2be2-7,https://biolit.fr/observations/observation-f47db6a3-f4e0-4443-b34b-59530fce2be2-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 4_8-scaled.jpg,,FALSE, +N1,60721,sortie-101cdf0a-7f61-4c36-a6ef-eecd2da70b40,https://biolit.fr/sorties/sortie-101cdf0a-7f61-4c36-a6ef-eecd2da70b40/,kenza,,1/24/2017 0:00,13.0000000,17.0000000,43.333714000000,5.197719000000,, la redonne,51025,observation-101cdf0a-7f61-4c36-a6ef-eecd2da70b40,https://biolit.fr/observations/observation-101cdf0a-7f61-4c36-a6ef-eecd2da70b40/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 1_10-scaled.jpg,,FALSE, +N1,60721,sortie-101cdf0a-7f61-4c36-a6ef-eecd2da70b40,https://biolit.fr/sorties/sortie-101cdf0a-7f61-4c36-a6ef-eecd2da70b40/,kenza,,1/24/2017 0:00,13.0000000,17.0000000,43.333714000000,5.197719000000,, la redonne,51027,observation-101cdf0a-7f61-4c36-a6ef-eecd2da70b40-2,https://biolit.fr/observations/observation-101cdf0a-7f61-4c36-a6ef-eecd2da70b40-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0386.JPG,,FALSE, +N1,60721,sortie-101cdf0a-7f61-4c36-a6ef-eecd2da70b40,https://biolit.fr/sorties/sortie-101cdf0a-7f61-4c36-a6ef-eecd2da70b40/,kenza,,1/24/2017 0:00,13.0000000,17.0000000,43.333714000000,5.197719000000,, la redonne,51029,observation-101cdf0a-7f61-4c36-a6ef-eecd2da70b40-3,https://biolit.fr/observations/observation-101cdf0a-7f61-4c36-a6ef-eecd2da70b40-3/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4251-scaled.jpg,,TRUE, +N1,60721,sortie-101cdf0a-7f61-4c36-a6ef-eecd2da70b40,https://biolit.fr/sorties/sortie-101cdf0a-7f61-4c36-a6ef-eecd2da70b40/,kenza,,1/24/2017 0:00,13.0000000,17.0000000,43.333714000000,5.197719000000,, la redonne,51031,observation-101cdf0a-7f61-4c36-a6ef-eecd2da70b40-4,https://biolit.fr/observations/observation-101cdf0a-7f61-4c36-a6ef-eecd2da70b40-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4259-scaled.jpg,,FALSE, +N1,60721,sortie-101cdf0a-7f61-4c36-a6ef-eecd2da70b40,https://biolit.fr/sorties/sortie-101cdf0a-7f61-4c36-a6ef-eecd2da70b40/,kenza,,1/24/2017 0:00,13.0000000,17.0000000,43.333714000000,5.197719000000,, la redonne,51033,observation-101cdf0a-7f61-4c36-a6ef-eecd2da70b40-5,https://biolit.fr/observations/observation-101cdf0a-7f61-4c36-a6ef-eecd2da70b40-5/,Euspira catena,Natice porte-chaîne,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4276-scaled.jpg,,TRUE, +N1,60721,sortie-101cdf0a-7f61-4c36-a6ef-eecd2da70b40,https://biolit.fr/sorties/sortie-101cdf0a-7f61-4c36-a6ef-eecd2da70b40/,kenza,,1/24/2017 0:00,13.0000000,17.0000000,43.333714000000,5.197719000000,, la redonne,51035,observation-101cdf0a-7f61-4c36-a6ef-eecd2da70b40-6,https://biolit.fr/observations/observation-101cdf0a-7f61-4c36-a6ef-eecd2da70b40-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 2_6-scaled.jpg,,FALSE, +N1,60721,sortie-101cdf0a-7f61-4c36-a6ef-eecd2da70b40,https://biolit.fr/sorties/sortie-101cdf0a-7f61-4c36-a6ef-eecd2da70b40/,kenza,,1/24/2017 0:00,13.0000000,17.0000000,43.333714000000,5.197719000000,, la redonne,51037,observation-101cdf0a-7f61-4c36-a6ef-eecd2da70b40-7,https://biolit.fr/observations/observation-101cdf0a-7f61-4c36-a6ef-eecd2da70b40-7/,Pinna nobilis,Grande nacre,,https://biolit.fr/wp-content/uploads/2023/07/photo 3_7-scaled.jpg,,TRUE, +N1,60721,sortie-101cdf0a-7f61-4c36-a6ef-eecd2da70b40,https://biolit.fr/sorties/sortie-101cdf0a-7f61-4c36-a6ef-eecd2da70b40/,kenza,,1/24/2017 0:00,13.0000000,17.0000000,43.333714000000,5.197719000000,, la redonne,51039,observation-101cdf0a-7f61-4c36-a6ef-eecd2da70b40-8,https://biolit.fr/observations/observation-101cdf0a-7f61-4c36-a6ef-eecd2da70b40-8/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/photo 4_7-scaled.jpg,,TRUE, +N1,60722,sortie-bdff20f2-3649-4257-9134-18350951d730,https://biolit.fr/sorties/sortie-bdff20f2-3649-4257-9134-18350951d730/,mimidutieks,,1/24/2017 0:00,13.0000000,17.0000000,43.333591000000,5.197717000000,,la redonne,51041,observation-bdff20f2-3649-4257-9134-18350951d730,https://biolit.fr/observations/observation-bdff20f2-3649-4257-9134-18350951d730/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4232-scaled.jpg,,FALSE, +N1,60722,sortie-bdff20f2-3649-4257-9134-18350951d730,https://biolit.fr/sorties/sortie-bdff20f2-3649-4257-9134-18350951d730/,mimidutieks,,1/24/2017 0:00,13.0000000,17.0000000,43.333591000000,5.197717000000,,la redonne,51043,observation-bdff20f2-3649-4257-9134-18350951d730-2,https://biolit.fr/observations/observation-bdff20f2-3649-4257-9134-18350951d730-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 4_3-scaled.jpg,,FALSE, +N1,60722,sortie-bdff20f2-3649-4257-9134-18350951d730,https://biolit.fr/sorties/sortie-bdff20f2-3649-4257-9134-18350951d730/,mimidutieks,,1/24/2017 0:00,13.0000000,17.0000000,43.333591000000,5.197717000000,,la redonne,51045,observation-bdff20f2-3649-4257-9134-18350951d730-3,https://biolit.fr/observations/observation-bdff20f2-3649-4257-9134-18350951d730-3/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/photo 1_9-scaled.jpg,,TRUE, +N1,60722,sortie-bdff20f2-3649-4257-9134-18350951d730,https://biolit.fr/sorties/sortie-bdff20f2-3649-4257-9134-18350951d730/,mimidutieks,,1/24/2017 0:00,13.0000000,17.0000000,43.333591000000,5.197717000000,,la redonne,51047,observation-bdff20f2-3649-4257-9134-18350951d730-4,https://biolit.fr/observations/observation-bdff20f2-3649-4257-9134-18350951d730-4/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4295-scaled.jpg,,TRUE, +N1,60722,sortie-bdff20f2-3649-4257-9134-18350951d730,https://biolit.fr/sorties/sortie-bdff20f2-3649-4257-9134-18350951d730/,mimidutieks,,1/24/2017 0:00,13.0000000,17.0000000,43.333591000000,5.197717000000,,la redonne,51049,observation-bdff20f2-3649-4257-9134-18350951d730-5,https://biolit.fr/observations/observation-bdff20f2-3649-4257-9134-18350951d730-5/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4269-scaled.jpg,,TRUE, +N1,60723,sortie-d05cb2f9-0932-4af5-b813-15595527f033,https://biolit.fr/sorties/sortie-d05cb2f9-0932-4af5-b813-15595527f033/,sofia loubna hanane,,02/07/2017,16.0000000,18.0000000,43.33344600000,5.197200000000,,La Redonne,51051,observation-d05cb2f9-0932-4af5-b813-15595527f033,https://biolit.fr/observations/observation-d05cb2f9-0932-4af5-b813-15595527f033/,,,,https://biolit.fr/wp-content/uploads/2023/07/Photo 6.jpg,,FALSE, +N1,60723,sortie-d05cb2f9-0932-4af5-b813-15595527f033,https://biolit.fr/sorties/sortie-d05cb2f9-0932-4af5-b813-15595527f033/,sofia loubna hanane,,02/07/2017,16.0000000,18.0000000,43.33344600000,5.197200000000,,La Redonne,51052,observation-d05cb2f9-0932-4af5-b813-15595527f033-2,https://biolit.fr/observations/observation-d05cb2f9-0932-4af5-b813-15595527f033-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/photo 5_0.JPG,,TRUE, +N1,60723,sortie-d05cb2f9-0932-4af5-b813-15595527f033,https://biolit.fr/sorties/sortie-d05cb2f9-0932-4af5-b813-15595527f033/,sofia loubna hanane,,02/07/2017,16.0000000,18.0000000,43.33344600000,5.197200000000,,La Redonne,51054,observation-d05cb2f9-0932-4af5-b813-15595527f033-3,https://biolit.fr/observations/observation-d05cb2f9-0932-4af5-b813-15595527f033-3/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/photo 3_4-scaled.jpg,,TRUE, +N1,60723,sortie-d05cb2f9-0932-4af5-b813-15595527f033,https://biolit.fr/sorties/sortie-d05cb2f9-0932-4af5-b813-15595527f033/,sofia loubna hanane,,02/07/2017,16.0000000,18.0000000,43.33344600000,5.197200000000,,La Redonne,51056,observation-d05cb2f9-0932-4af5-b813-15595527f033-4,https://biolit.fr/observations/observation-d05cb2f9-0932-4af5-b813-15595527f033-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 2_4-scaled.jpg,,FALSE, +N1,60723,sortie-d05cb2f9-0932-4af5-b813-15595527f033,https://biolit.fr/sorties/sortie-d05cb2f9-0932-4af5-b813-15595527f033/,sofia loubna hanane,,02/07/2017,16.0000000,18.0000000,43.33344600000,5.197200000000,,La Redonne,51058,observation-d05cb2f9-0932-4af5-b813-15595527f033-5,https://biolit.fr/observations/observation-d05cb2f9-0932-4af5-b813-15595527f033-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 1_8-scaled.jpg,,FALSE, +N1,60723,sortie-d05cb2f9-0932-4af5-b813-15595527f033,https://biolit.fr/sorties/sortie-d05cb2f9-0932-4af5-b813-15595527f033/,sofia loubna hanane,,02/07/2017,16.0000000,18.0000000,43.33344600000,5.197200000000,,La Redonne,51060,observation-d05cb2f9-0932-4af5-b813-15595527f033-6,https://biolit.fr/observations/observation-d05cb2f9-0932-4af5-b813-15595527f033-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4257-scaled.jpg,,FALSE, +N1,60723,sortie-d05cb2f9-0932-4af5-b813-15595527f033,https://biolit.fr/sorties/sortie-d05cb2f9-0932-4af5-b813-15595527f033/,sofia loubna hanane,,02/07/2017,16.0000000,18.0000000,43.33344600000,5.197200000000,,La Redonne,51062,observation-d05cb2f9-0932-4af5-b813-15595527f033-7,https://biolit.fr/observations/observation-d05cb2f9-0932-4af5-b813-15595527f033-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0382.JPG,,FALSE, +N1,60724,sortie-a94b41a9-c539-468d-b2f4-f16aadc0ae62,https://biolit.fr/sorties/sortie-a94b41a9-c539-468d-b2f4-f16aadc0ae62/,SofiaManuel,,02/07/2017,16.0:25,18.0:25,43.333395000000,5.197181000000,,la redonne ,51064,observation-a94b41a9-c539-468d-b2f4-f16aadc0ae62,https://biolit.fr/observations/observation-a94b41a9-c539-468d-b2f4-f16aadc0ae62/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4270-scaled.jpg,,TRUE, +N1,60724,sortie-a94b41a9-c539-468d-b2f4-f16aadc0ae62,https://biolit.fr/sorties/sortie-a94b41a9-c539-468d-b2f4-f16aadc0ae62/,SofiaManuel,,02/07/2017,16.0:25,18.0:25,43.333395000000,5.197181000000,,la redonne ,51066,observation-a94b41a9-c539-468d-b2f4-f16aadc0ae62-2,https://biolit.fr/observations/observation-a94b41a9-c539-468d-b2f4-f16aadc0ae62-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/photo 1_7-rotated.jpg,,TRUE, +N1,60724,sortie-a94b41a9-c539-468d-b2f4-f16aadc0ae62,https://biolit.fr/sorties/sortie-a94b41a9-c539-468d-b2f4-f16aadc0ae62/,SofiaManuel,,02/07/2017,16.0:25,18.0:25,43.333395000000,5.197181000000,,la redonne ,51068,observation-a94b41a9-c539-468d-b2f4-f16aadc0ae62-3,https://biolit.fr/observations/observation-a94b41a9-c539-468d-b2f4-f16aadc0ae62-3/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/photo 2-scaled.jpg,,TRUE, +N1,60724,sortie-a94b41a9-c539-468d-b2f4-f16aadc0ae62,https://biolit.fr/sorties/sortie-a94b41a9-c539-468d-b2f4-f16aadc0ae62/,SofiaManuel,,02/07/2017,16.0:25,18.0:25,43.333395000000,5.197181000000,,la redonne ,51070,observation-a94b41a9-c539-468d-b2f4-f16aadc0ae62-4,https://biolit.fr/observations/observation-a94b41a9-c539-468d-b2f4-f16aadc0ae62-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 3_3-scaled.jpg,,FALSE, +N1,60724,sortie-a94b41a9-c539-468d-b2f4-f16aadc0ae62,https://biolit.fr/sorties/sortie-a94b41a9-c539-468d-b2f4-f16aadc0ae62/,SofiaManuel,,02/07/2017,16.0:25,18.0:25,43.333395000000,5.197181000000,,la redonne ,51072,observation-a94b41a9-c539-468d-b2f4-f16aadc0ae62-5,https://biolit.fr/observations/observation-a94b41a9-c539-468d-b2f4-f16aadc0ae62-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 5-scaled.jpg,,FALSE, +N1,60724,sortie-a94b41a9-c539-468d-b2f4-f16aadc0ae62,https://biolit.fr/sorties/sortie-a94b41a9-c539-468d-b2f4-f16aadc0ae62/,SofiaManuel,,02/07/2017,16.0:25,18.0:25,43.333395000000,5.197181000000,,la redonne ,51074,observation-a94b41a9-c539-468d-b2f4-f16aadc0ae62-6,https://biolit.fr/observations/observation-a94b41a9-c539-468d-b2f4-f16aadc0ae62-6/,Ulva sp. groupe intestinalis,Ulves tubuleuses du groupe intestinalis,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4248_4-scaled.jpg,,TRUE, +N1,60725,sortie-a64758cb-cb21-447a-b513-96af7d29c39e,https://biolit.fr/sorties/sortie-a64758cb-cb21-447a-b513-96af7d29c39e/,Phil,,1/28/2017 0:00,13.0000000,13.0:15,48.694464000000,-4.085026000000,,Sibiril - Finistère,51076,observation-a64758cb-cb21-447a-b513-96af7d29c39e,https://biolit.fr/observations/observation-a64758cb-cb21-447a-b513-96af7d29c39e/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170128_130336_0.jpg,,FALSE, +N1,60725,sortie-a64758cb-cb21-447a-b513-96af7d29c39e,https://biolit.fr/sorties/sortie-a64758cb-cb21-447a-b513-96af7d29c39e/,Phil,,1/28/2017 0:00,13.0000000,13.0:15,48.694464000000,-4.085026000000,,Sibiril - Finistère,51078,observation-a64758cb-cb21-447a-b513-96af7d29c39e-2,https://biolit.fr/observations/observation-a64758cb-cb21-447a-b513-96af7d29c39e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170128_130146_0.jpg,,FALSE, +N1,60725,sortie-a64758cb-cb21-447a-b513-96af7d29c39e,https://biolit.fr/sorties/sortie-a64758cb-cb21-447a-b513-96af7d29c39e/,Phil,,1/28/2017 0:00,13.0000000,13.0:15,48.694464000000,-4.085026000000,,Sibiril - Finistère,51080,observation-a64758cb-cb21-447a-b513-96af7d29c39e-3,https://biolit.fr/observations/observation-a64758cb-cb21-447a-b513-96af7d29c39e-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170128_125725.jpg,,TRUE, +N1,60725,sortie-a64758cb-cb21-447a-b513-96af7d29c39e,https://biolit.fr/sorties/sortie-a64758cb-cb21-447a-b513-96af7d29c39e/,Phil,,1/28/2017 0:00,13.0000000,13.0:15,48.694464000000,-4.085026000000,,Sibiril - Finistère,51082,observation-a64758cb-cb21-447a-b513-96af7d29c39e-4,https://biolit.fr/observations/observation-a64758cb-cb21-447a-b513-96af7d29c39e-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170128_125838.jpg,,TRUE, +N1,60725,sortie-a64758cb-cb21-447a-b513-96af7d29c39e,https://biolit.fr/sorties/sortie-a64758cb-cb21-447a-b513-96af7d29c39e/,Phil,,1/28/2017 0:00,13.0000000,13.0:15,48.694464000000,-4.085026000000,,Sibiril - Finistère,51084,observation-a64758cb-cb21-447a-b513-96af7d29c39e-5,https://biolit.fr/observations/observation-a64758cb-cb21-447a-b513-96af7d29c39e-5/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/20170128_125849.jpg,,TRUE, +N1,60725,sortie-a64758cb-cb21-447a-b513-96af7d29c39e,https://biolit.fr/sorties/sortie-a64758cb-cb21-447a-b513-96af7d29c39e/,Phil,,1/28/2017 0:00,13.0000000,13.0:15,48.694464000000,-4.085026000000,,Sibiril - Finistère,51086,observation-a64758cb-cb21-447a-b513-96af7d29c39e-6,https://biolit.fr/observations/observation-a64758cb-cb21-447a-b513-96af7d29c39e-6/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/20170128_125927.jpg,,TRUE, +N1,60726,sortie-04534428-56c9-437b-a91e-e0513a3385c3,https://biolit.fr/sorties/sortie-04534428-56c9-437b-a91e-e0513a3385c3/,pablo escobar,,02/06/2017,16.0000000,18.0000000,43.333734000000,5.19774300000,,plage des pébraires ,51088,observation-04534428-56c9-437b-a91e-e0513a3385c3,https://biolit.fr/observations/observation-04534428-56c9-437b-a91e-e0513a3385c3/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/photo 1_1-scaled.jpg,,TRUE, +N1,60726,sortie-04534428-56c9-437b-a91e-e0513a3385c3,https://biolit.fr/sorties/sortie-04534428-56c9-437b-a91e-e0513a3385c3/,pablo escobar,,02/06/2017,16.0000000,18.0000000,43.333734000000,5.19774300000,,plage des pébraires ,51090,observation-04534428-56c9-437b-a91e-e0513a3385c3-2,https://biolit.fr/observations/observation-04534428-56c9-437b-a91e-e0513a3385c3-2/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/photo 2_3-scaled.jpg,,TRUE, +N1,60726,sortie-04534428-56c9-437b-a91e-e0513a3385c3,https://biolit.fr/sorties/sortie-04534428-56c9-437b-a91e-e0513a3385c3/,pablo escobar,,02/06/2017,16.0000000,18.0000000,43.333734000000,5.19774300000,,plage des pébraires ,51092,observation-04534428-56c9-437b-a91e-e0513a3385c3-3,https://biolit.fr/observations/observation-04534428-56c9-437b-a91e-e0513a3385c3-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 3_2-scaled.jpg,,FALSE, +N1,60726,sortie-04534428-56c9-437b-a91e-e0513a3385c3,https://biolit.fr/sorties/sortie-04534428-56c9-437b-a91e-e0513a3385c3/,pablo escobar,,02/06/2017,16.0000000,18.0000000,43.333734000000,5.19774300000,,plage des pébraires ,51094,observation-04534428-56c9-437b-a91e-e0513a3385c3-4,https://biolit.fr/observations/observation-04534428-56c9-437b-a91e-e0513a3385c3-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 4_2-scaled.jpg,,FALSE, +N1,60727,sortie-57009285-4281-4956-9a15-62157ec05a2b,https://biolit.fr/sorties/sortie-57009285-4281-4956-9a15-62157ec05a2b/,Joaronchin,,02/06/2017,16.0000000,18.0000000,43.345630000000,5.186431000000,,ensuès-la-redonne,51096,observation-57009285-4281-4956-9a15-62157ec05a2b,https://biolit.fr/observations/observation-57009285-4281-4956-9a15-62157ec05a2b/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 2_5-scaled.jpg,,FALSE, +N1,60728,sortie-e8789bd1-4f5f-4670-b513-26af17db490a,https://biolit.fr/sorties/sortie-e8789bd1-4f5f-4670-b513-26af17db490a/,azerty123,,02/06/2017,16.0000000,18.0000000,43.333979000000,5.197739000000,,plage de pébraïres,51098,observation-e8789bd1-4f5f-4670-b513-26af17db490a,https://biolit.fr/observations/observation-e8789bd1-4f5f-4670-b513-26af17db490a/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/photo 1_4-scaled.jpg,,TRUE, +N1,60728,sortie-e8789bd1-4f5f-4670-b513-26af17db490a,https://biolit.fr/sorties/sortie-e8789bd1-4f5f-4670-b513-26af17db490a/,azerty123,,02/06/2017,16.0000000,18.0000000,43.333979000000,5.197739000000,,plage de pébraïres,51100,observation-e8789bd1-4f5f-4670-b513-26af17db490a-2,https://biolit.fr/observations/observation-e8789bd1-4f5f-4670-b513-26af17db490a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 3_6-scaled.jpg,,FALSE, +N1,60729,sortie-c047eada-5e52-4437-a8d8-1a60bf1c36d7,https://biolit.fr/sorties/sortie-c047eada-5e52-4437-a8d8-1a60bf1c36d7/,dana,,1/23/2017 0:00,14.0000000,17.0000000,43.341465000000,5.263888000000,,la plage des pébraires,51102,observation-c047eada-5e52-4437-a8d8-1a60bf1c36d7,https://biolit.fr/observations/observation-c047eada-5e52-4437-a8d8-1a60bf1c36d7/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/photo 1_3-scaled.jpg,,TRUE, +N1,60729,sortie-c047eada-5e52-4437-a8d8-1a60bf1c36d7,https://biolit.fr/sorties/sortie-c047eada-5e52-4437-a8d8-1a60bf1c36d7/,dana,,1/23/2017 0:00,14.0000000,17.0000000,43.341465000000,5.263888000000,,la plage des pébraires,51104,observation-c047eada-5e52-4437-a8d8-1a60bf1c36d7-2,https://biolit.fr/observations/observation-c047eada-5e52-4437-a8d8-1a60bf1c36d7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 3_5-scaled.jpg,,FALSE, +N1,60729,sortie-c047eada-5e52-4437-a8d8-1a60bf1c36d7,https://biolit.fr/sorties/sortie-c047eada-5e52-4437-a8d8-1a60bf1c36d7/,dana,,1/23/2017 0:00,14.0000000,17.0000000,43.341465000000,5.263888000000,,la plage des pébraires,51106,observation-c047eada-5e52-4437-a8d8-1a60bf1c36d7-3,https://biolit.fr/observations/observation-c047eada-5e52-4437-a8d8-1a60bf1c36d7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 4_4-scaled.jpg,,FALSE, +N1,60730,sortie-4210bfcd-1b75-4193-b709-c4964340819b,https://biolit.fr/sorties/sortie-4210bfcd-1b75-4193-b709-c4964340819b/,tino travers bradesi,,1/23/2017 0:00,13.0000000,17.0000000,43.333238000000,5.199743000000,,plage des pébraires,51108,observation-4210bfcd-1b75-4193-b709-c4964340819b,https://biolit.fr/observations/observation-4210bfcd-1b75-4193-b709-c4964340819b/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/photo 2_2-scaled.jpg,,TRUE, +N1,60730,sortie-4210bfcd-1b75-4193-b709-c4964340819b,https://biolit.fr/sorties/sortie-4210bfcd-1b75-4193-b709-c4964340819b/,tino travers bradesi,,1/23/2017 0:00,13.0000000,17.0000000,43.333238000000,5.199743000000,,plage des pébraires,51110,observation-4210bfcd-1b75-4193-b709-c4964340819b-2,https://biolit.fr/observations/observation-4210bfcd-1b75-4193-b709-c4964340819b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 3_0-scaled.jpg,,FALSE, +N1,60731,sortie-53f870f6-fc7c-4ae1-a7ae-2e5c68fd7fe0,https://biolit.fr/sorties/sortie-53f870f6-fc7c-4ae1-a7ae-2e5c68fd7fe0/,Linda,,1/23/2017 0:00,13.0000000,17.0000000,43.360109000000,5.220077000000,,la redonne,51112,observation-53f870f6-fc7c-4ae1-a7ae-2e5c68fd7fe0,https://biolit.fr/observations/observation-53f870f6-fc7c-4ae1-a7ae-2e5c68fd7fe0/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 4_0-scaled.jpg,,FALSE, +N1,60731,sortie-53f870f6-fc7c-4ae1-a7ae-2e5c68fd7fe0,https://biolit.fr/sorties/sortie-53f870f6-fc7c-4ae1-a7ae-2e5c68fd7fe0/,Linda,,1/23/2017 0:00,13.0000000,17.0000000,43.360109000000,5.220077000000,,la redonne,51114,observation-53f870f6-fc7c-4ae1-a7ae-2e5c68fd7fe0-2,https://biolit.fr/observations/observation-53f870f6-fc7c-4ae1-a7ae-2e5c68fd7fe0-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Photo 3.jpg,,TRUE, +N1,60731,sortie-53f870f6-fc7c-4ae1-a7ae-2e5c68fd7fe0,https://biolit.fr/sorties/sortie-53f870f6-fc7c-4ae1-a7ae-2e5c68fd7fe0/,Linda,,1/23/2017 0:00,13.0000000,17.0000000,43.360109000000,5.220077000000,,la redonne,51115,observation-53f870f6-fc7c-4ae1-a7ae-2e5c68fd7fe0-3,https://biolit.fr/observations/observation-53f870f6-fc7c-4ae1-a7ae-2e5c68fd7fe0-3/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/photo 1-scaled.jpg,,TRUE, +N1,60732,sortie-bc89f131-ef9e-41a5-883d-a5ecc77b336f,https://biolit.fr/sorties/sortie-bc89f131-ef9e-41a5-883d-a5ecc77b336f/,Phil,,1/13/2017 0:00,13.0000000,13.0000000,47.802185000000,-4.181498000000,,Loctudy - Finistère,51117,observation-bc89f131-ef9e-41a5-883d-a5ecc77b336f,https://biolit.fr/observations/observation-bc89f131-ef9e-41a5-883d-a5ecc77b336f/,Homarus gammarus,Homard européen,,https://biolit.fr/wp-content/uploads/2023/07/P1050739.JPG,,TRUE, +N1,60732,sortie-bc89f131-ef9e-41a5-883d-a5ecc77b336f,https://biolit.fr/sorties/sortie-bc89f131-ef9e-41a5-883d-a5ecc77b336f/,Phil,,1/13/2017 0:00,13.0000000,13.0000000,47.802185000000,-4.181498000000,,Loctudy - Finistère,51119,observation-bc89f131-ef9e-41a5-883d-a5ecc77b336f-2,https://biolit.fr/observations/observation-bc89f131-ef9e-41a5-883d-a5ecc77b336f-2/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1050757.JPG,,TRUE, +N1,60733,sortie-3d349138-9bfd-4e71-b5fb-e16c39b86626,https://biolit.fr/sorties/sortie-3d349138-9bfd-4e71-b5fb-e16c39b86626/,Katia Bérard,,02/03/2017,18.0000000,20.0000000,50.227083000000,1.610639000000,,CROTOY,51121,observation-3d349138-9bfd-4e71-b5fb-e16c39b86626,https://biolit.fr/observations/observation-3d349138-9bfd-4e71-b5fb-e16c39b86626/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/IMGP5210_0.JPG,,TRUE, +N1,60734,sortie-db43bfcf-cef9-4448-9bf6-5bdc80b76716,https://biolit.fr/sorties/sortie-db43bfcf-cef9-4448-9bf6-5bdc80b76716/,Phil,,1/13/2017 0:00,16.0:35,16.0000000,47.801027000000,-4.180557000000,,Loctudy - Finistère,51123,observation-db43bfcf-cef9-4448-9bf6-5bdc80b76716,https://biolit.fr/observations/observation-db43bfcf-cef9-4448-9bf6-5bdc80b76716/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050728.JPG,,FALSE, +N1,60734,sortie-db43bfcf-cef9-4448-9bf6-5bdc80b76716,https://biolit.fr/sorties/sortie-db43bfcf-cef9-4448-9bf6-5bdc80b76716/,Phil,,1/13/2017 0:00,16.0:35,16.0000000,47.801027000000,-4.180557000000,,Loctudy - Finistère,51125,observation-db43bfcf-cef9-4448-9bf6-5bdc80b76716-2,https://biolit.fr/observations/observation-db43bfcf-cef9-4448-9bf6-5bdc80b76716-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050731.JPG,,FALSE, +N1,60735,sortie-f6349972-7bfd-4037-9347-dc3a56a86f6d,https://biolit.fr/sorties/sortie-f6349972-7bfd-4037-9347-dc3a56a86f6d/,Phil,,1/28/2017 0:00,12.0:45,13.0000000,48.694122000000,-4.085335000000,,Sibiril - Finistère,51127,observation-f6349972-7bfd-4037-9347-dc3a56a86f6d,https://biolit.fr/observations/observation-f6349972-7bfd-4037-9347-dc3a56a86f6d/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170128_124521.jpg,,TRUE, +N1,60735,sortie-f6349972-7bfd-4037-9347-dc3a56a86f6d,https://biolit.fr/sorties/sortie-f6349972-7bfd-4037-9347-dc3a56a86f6d/,Phil,,1/28/2017 0:00,12.0:45,13.0000000,48.694122000000,-4.085335000000,,Sibiril - Finistère,51129,observation-f6349972-7bfd-4037-9347-dc3a56a86f6d-2,https://biolit.fr/observations/observation-f6349972-7bfd-4037-9347-dc3a56a86f6d-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/20170128_124330_0.jpg,,TRUE, +N1,60735,sortie-f6349972-7bfd-4037-9347-dc3a56a86f6d,https://biolit.fr/sorties/sortie-f6349972-7bfd-4037-9347-dc3a56a86f6d/,Phil,,1/28/2017 0:00,12.0:45,13.0000000,48.694122000000,-4.085335000000,,Sibiril - Finistère,51131,observation-f6349972-7bfd-4037-9347-dc3a56a86f6d-3,https://biolit.fr/observations/observation-f6349972-7bfd-4037-9347-dc3a56a86f6d-3/,Phymatolithon lenormandii,Algue encroûtante rouge de Lenormand,,https://biolit.fr/wp-content/uploads/2023/07/20170128_124611_0.jpg,,TRUE, +N1,60735,sortie-f6349972-7bfd-4037-9347-dc3a56a86f6d,https://biolit.fr/sorties/sortie-f6349972-7bfd-4037-9347-dc3a56a86f6d/,Phil,,1/28/2017 0:00,12.0:45,13.0000000,48.694122000000,-4.085335000000,,Sibiril - Finistère,51133,observation-f6349972-7bfd-4037-9347-dc3a56a86f6d-4,https://biolit.fr/observations/observation-f6349972-7bfd-4037-9347-dc3a56a86f6d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170128_124908_0.jpg,,FALSE, +N1,60736,sortie-6809772f-360e-4d90-b3e5-7862797d7557,https://biolit.fr/sorties/sortie-6809772f-360e-4d90-b3e5-7862797d7557/,Phil,,1/18/2017 0:00,16.0000000,16.0000000,47.792519000000,-4.286848000000,,Le Guilvinec - Finistère,51135,observation-6809772f-360e-4d90-b3e5-7862797d7557,https://biolit.fr/observations/observation-6809772f-360e-4d90-b3e5-7862797d7557/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20170118_174126.jpg,,TRUE, +N1,60736,sortie-6809772f-360e-4d90-b3e5-7862797d7557,https://biolit.fr/sorties/sortie-6809772f-360e-4d90-b3e5-7862797d7557/,Phil,,1/18/2017 0:00,16.0000000,16.0000000,47.792519000000,-4.286848000000,,Le Guilvinec - Finistère,51137,observation-6809772f-360e-4d90-b3e5-7862797d7557-2,https://biolit.fr/observations/observation-6809772f-360e-4d90-b3e5-7862797d7557-2/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20170118_174203.jpg,,TRUE, +N1,60736,sortie-6809772f-360e-4d90-b3e5-7862797d7557,https://biolit.fr/sorties/sortie-6809772f-360e-4d90-b3e5-7862797d7557/,Phil,,1/18/2017 0:00,16.0000000,16.0000000,47.792519000000,-4.286848000000,,Le Guilvinec - Finistère,51139,observation-6809772f-360e-4d90-b3e5-7862797d7557-3,https://biolit.fr/observations/observation-6809772f-360e-4d90-b3e5-7862797d7557-3/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20170118_174107.jpg,,TRUE, +N1,60736,sortie-6809772f-360e-4d90-b3e5-7862797d7557,https://biolit.fr/sorties/sortie-6809772f-360e-4d90-b3e5-7862797d7557/,Phil,,1/18/2017 0:00,16.0000000,16.0000000,47.792519000000,-4.286848000000,,Le Guilvinec - Finistère,51141,observation-6809772f-360e-4d90-b3e5-7862797d7557-4,https://biolit.fr/observations/observation-6809772f-360e-4d90-b3e5-7862797d7557-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170118_174026.jpg,,FALSE, +N1,60737,sortie-6a760dde-92d9-422c-8192-ffd19ec100b5,https://biolit.fr/sorties/sortie-6a760dde-92d9-422c-8192-ffd19ec100b5/,ludovic,,02/02/2017,14.0000000,16.0000000,43.235764000000,5.36003700000,,plage de la bonne brise,51143,observation-6a760dde-92d9-422c-8192-ffd19ec100b5,https://biolit.fr/observations/observation-6a760dde-92d9-422c-8192-ffd19ec100b5/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0858-scaled.jpg,,TRUE, +N1,60737,sortie-6a760dde-92d9-422c-8192-ffd19ec100b5,https://biolit.fr/sorties/sortie-6a760dde-92d9-422c-8192-ffd19ec100b5/,ludovic,,02/02/2017,14.0000000,16.0000000,43.235764000000,5.36003700000,,plage de la bonne brise,51145,observation-6a760dde-92d9-422c-8192-ffd19ec100b5-2,https://biolit.fr/observations/observation-6a760dde-92d9-422c-8192-ffd19ec100b5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0860-scaled.jpg,,FALSE, +N1,60737,sortie-6a760dde-92d9-422c-8192-ffd19ec100b5,https://biolit.fr/sorties/sortie-6a760dde-92d9-422c-8192-ffd19ec100b5/,ludovic,,02/02/2017,14.0000000,16.0000000,43.235764000000,5.36003700000,,plage de la bonne brise,51147,observation-6a760dde-92d9-422c-8192-ffd19ec100b5-3,https://biolit.fr/observations/observation-6a760dde-92d9-422c-8192-ffd19ec100b5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0861-scaled.jpg,,FALSE, +N1,60737,sortie-6a760dde-92d9-422c-8192-ffd19ec100b5,https://biolit.fr/sorties/sortie-6a760dde-92d9-422c-8192-ffd19ec100b5/,ludovic,,02/02/2017,14.0000000,16.0000000,43.235764000000,5.36003700000,,plage de la bonne brise,51149,observation-6a760dde-92d9-422c-8192-ffd19ec100b5-4,https://biolit.fr/observations/observation-6a760dde-92d9-422c-8192-ffd19ec100b5-4/,Ligia italica,Ligie italienne,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0865-scaled.jpg,,TRUE, +N1,60737,sortie-6a760dde-92d9-422c-8192-ffd19ec100b5,https://biolit.fr/sorties/sortie-6a760dde-92d9-422c-8192-ffd19ec100b5/,ludovic,,02/02/2017,14.0000000,16.0000000,43.235764000000,5.36003700000,,plage de la bonne brise,51151,observation-6a760dde-92d9-422c-8192-ffd19ec100b5-5,https://biolit.fr/observations/observation-6a760dde-92d9-422c-8192-ffd19ec100b5-5/,Ligia italica,Ligie italienne,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0868-scaled.jpg,,TRUE, +N1,60737,sortie-6a760dde-92d9-422c-8192-ffd19ec100b5,https://biolit.fr/sorties/sortie-6a760dde-92d9-422c-8192-ffd19ec100b5/,ludovic,,02/02/2017,14.0000000,16.0000000,43.235764000000,5.36003700000,,plage de la bonne brise,51153,observation-6a760dde-92d9-422c-8192-ffd19ec100b5-6,https://biolit.fr/observations/observation-6a760dde-92d9-422c-8192-ffd19ec100b5-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0869-scaled.jpg,,FALSE, +N1,60737,sortie-6a760dde-92d9-422c-8192-ffd19ec100b5,https://biolit.fr/sorties/sortie-6a760dde-92d9-422c-8192-ffd19ec100b5/,ludovic,,02/02/2017,14.0000000,16.0000000,43.235764000000,5.36003700000,,plage de la bonne brise,51155,observation-6a760dde-92d9-422c-8192-ffd19ec100b5-7,https://biolit.fr/observations/observation-6a760dde-92d9-422c-8192-ffd19ec100b5-7/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0872-scaled.jpg,,TRUE, +N1,60737,sortie-6a760dde-92d9-422c-8192-ffd19ec100b5,https://biolit.fr/sorties/sortie-6a760dde-92d9-422c-8192-ffd19ec100b5/,ludovic,,02/02/2017,14.0000000,16.0000000,43.235764000000,5.36003700000,,plage de la bonne brise,51157,observation-6a760dde-92d9-422c-8192-ffd19ec100b5-8,https://biolit.fr/observations/observation-6a760dde-92d9-422c-8192-ffd19ec100b5-8/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0875-scaled.jpg,,TRUE, +N1,60737,sortie-6a760dde-92d9-422c-8192-ffd19ec100b5,https://biolit.fr/sorties/sortie-6a760dde-92d9-422c-8192-ffd19ec100b5/,ludovic,,02/02/2017,14.0000000,16.0000000,43.235764000000,5.36003700000,,plage de la bonne brise,51159,observation-6a760dde-92d9-422c-8192-ffd19ec100b5-9,https://biolit.fr/observations/observation-6a760dde-92d9-422c-8192-ffd19ec100b5-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0879-scaled.jpg,,FALSE, +N1,60737,sortie-6a760dde-92d9-422c-8192-ffd19ec100b5,https://biolit.fr/sorties/sortie-6a760dde-92d9-422c-8192-ffd19ec100b5/,ludovic,,02/02/2017,14.0000000,16.0000000,43.235764000000,5.36003700000,,plage de la bonne brise,51161,observation-6a760dde-92d9-422c-8192-ffd19ec100b5-10,https://biolit.fr/observations/observation-6a760dde-92d9-422c-8192-ffd19ec100b5-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0882-scaled.jpg,,FALSE, +N1,60737,sortie-6a760dde-92d9-422c-8192-ffd19ec100b5,https://biolit.fr/sorties/sortie-6a760dde-92d9-422c-8192-ffd19ec100b5/,ludovic,,02/02/2017,14.0000000,16.0000000,43.235764000000,5.36003700000,,plage de la bonne brise,51163,observation-6a760dde-92d9-422c-8192-ffd19ec100b5-11,https://biolit.fr/observations/observation-6a760dde-92d9-422c-8192-ffd19ec100b5-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0883-scaled.jpg,,FALSE, +N1,60738,sortie-bd7845da-489f-4641-ad7e-bc84ffa64507,https://biolit.fr/sorties/sortie-bd7845da-489f-4641-ad7e-bc84ffa64507/,NVanzu,,02/02/2017,14.0000000,16.0000000,43.236121000000,5.35995800000,,Plage de la bonne brise,51165,observation-bd7845da-489f-4641-ad7e-bc84ffa64507,https://biolit.fr/observations/observation-bd7845da-489f-4641-ad7e-bc84ffa64507/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0064_0-scaled.jpg,,TRUE, +N1,60738,sortie-bd7845da-489f-4641-ad7e-bc84ffa64507,https://biolit.fr/sorties/sortie-bd7845da-489f-4641-ad7e-bc84ffa64507/,NVanzu,,02/02/2017,14.0000000,16.0000000,43.236121000000,5.35995800000,,Plage de la bonne brise,51167,observation-bd7845da-489f-4641-ad7e-bc84ffa64507-2,https://biolit.fr/observations/observation-bd7845da-489f-4641-ad7e-bc84ffa64507-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0065-scaled.jpg,,FALSE, +N1,60738,sortie-bd7845da-489f-4641-ad7e-bc84ffa64507,https://biolit.fr/sorties/sortie-bd7845da-489f-4641-ad7e-bc84ffa64507/,NVanzu,,02/02/2017,14.0000000,16.0000000,43.236121000000,5.35995800000,,Plage de la bonne brise,51168,observation-bd7845da-489f-4641-ad7e-bc84ffa64507-3,https://biolit.fr/observations/observation-bd7845da-489f-4641-ad7e-bc84ffa64507-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0066-scaled.jpg,,FALSE, +N1,60738,sortie-bd7845da-489f-4641-ad7e-bc84ffa64507,https://biolit.fr/sorties/sortie-bd7845da-489f-4641-ad7e-bc84ffa64507/,NVanzu,,02/02/2017,14.0000000,16.0000000,43.236121000000,5.35995800000,,Plage de la bonne brise,51169,observation-bd7845da-489f-4641-ad7e-bc84ffa64507-4,https://biolit.fr/observations/observation-bd7845da-489f-4641-ad7e-bc84ffa64507-4/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0069-scaled.jpg,,TRUE, +N1,60738,sortie-bd7845da-489f-4641-ad7e-bc84ffa64507,https://biolit.fr/sorties/sortie-bd7845da-489f-4641-ad7e-bc84ffa64507/,NVanzu,,02/02/2017,14.0000000,16.0000000,43.236121000000,5.35995800000,,Plage de la bonne brise,51170,observation-bd7845da-489f-4641-ad7e-bc84ffa64507-5,https://biolit.fr/observations/observation-bd7845da-489f-4641-ad7e-bc84ffa64507-5/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0073-scaled.jpg,,TRUE, +N1,60738,sortie-bd7845da-489f-4641-ad7e-bc84ffa64507,https://biolit.fr/sorties/sortie-bd7845da-489f-4641-ad7e-bc84ffa64507/,NVanzu,,02/02/2017,14.0000000,16.0000000,43.236121000000,5.35995800000,,Plage de la bonne brise,51171,observation-bd7845da-489f-4641-ad7e-bc84ffa64507-6,https://biolit.fr/observations/observation-bd7845da-489f-4641-ad7e-bc84ffa64507-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0075-scaled.jpg,,FALSE, +N1,60738,sortie-bd7845da-489f-4641-ad7e-bc84ffa64507,https://biolit.fr/sorties/sortie-bd7845da-489f-4641-ad7e-bc84ffa64507/,NVanzu,,02/02/2017,14.0000000,16.0000000,43.236121000000,5.35995800000,,Plage de la bonne brise,51172,observation-bd7845da-489f-4641-ad7e-bc84ffa64507-7,https://biolit.fr/observations/observation-bd7845da-489f-4641-ad7e-bc84ffa64507-7/,Phymatolithon lenormandii,Algue encroûtante rouge de Lenormand,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0077-scaled.jpg,,TRUE, +N1,60738,sortie-bd7845da-489f-4641-ad7e-bc84ffa64507,https://biolit.fr/sorties/sortie-bd7845da-489f-4641-ad7e-bc84ffa64507/,NVanzu,,02/02/2017,14.0000000,16.0000000,43.236121000000,5.35995800000,,Plage de la bonne brise,51173,observation-bd7845da-489f-4641-ad7e-bc84ffa64507-8,https://biolit.fr/observations/observation-bd7845da-489f-4641-ad7e-bc84ffa64507-8/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0081_0-scaled.jpg,,TRUE, +N1,60738,sortie-bd7845da-489f-4641-ad7e-bc84ffa64507,https://biolit.fr/sorties/sortie-bd7845da-489f-4641-ad7e-bc84ffa64507/,NVanzu,,02/02/2017,14.0000000,16.0000000,43.236121000000,5.35995800000,,Plage de la bonne brise,51175,observation-bd7845da-489f-4641-ad7e-bc84ffa64507-9,https://biolit.fr/observations/observation-bd7845da-489f-4641-ad7e-bc84ffa64507-9/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0082-scaled.jpg,,TRUE, +N1,60738,sortie-bd7845da-489f-4641-ad7e-bc84ffa64507,https://biolit.fr/sorties/sortie-bd7845da-489f-4641-ad7e-bc84ffa64507/,NVanzu,,02/02/2017,14.0000000,16.0000000,43.236121000000,5.35995800000,,Plage de la bonne brise,51177,observation-bd7845da-489f-4641-ad7e-bc84ffa64507-10,https://biolit.fr/observations/observation-bd7845da-489f-4641-ad7e-bc84ffa64507-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0083-scaled.jpg,,FALSE, +N1,60738,sortie-bd7845da-489f-4641-ad7e-bc84ffa64507,https://biolit.fr/sorties/sortie-bd7845da-489f-4641-ad7e-bc84ffa64507/,NVanzu,,02/02/2017,14.0000000,16.0000000,43.236121000000,5.35995800000,,Plage de la bonne brise,51179,observation-bd7845da-489f-4641-ad7e-bc84ffa64507-11,https://biolit.fr/observations/observation-bd7845da-489f-4641-ad7e-bc84ffa64507-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0084-scaled.jpg,,FALSE, +N1,60739,sortie-882d069b-bf97-42a7-955f-dc1443ab0f65,https://biolit.fr/sorties/sortie-882d069b-bf97-42a7-955f-dc1443ab0f65/,ludovic,,02/02/2017,14.0000000,16.0000000,43.236166000000,5.359994000000,,plage de la bonne brise,51181,observation-882d069b-bf97-42a7-955f-dc1443ab0f65,https://biolit.fr/observations/observation-882d069b-bf97-42a7-955f-dc1443ab0f65/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0840-scaled.jpg,,FALSE, +N1,60739,sortie-882d069b-bf97-42a7-955f-dc1443ab0f65,https://biolit.fr/sorties/sortie-882d069b-bf97-42a7-955f-dc1443ab0f65/,ludovic,,02/02/2017,14.0000000,16.0000000,43.236166000000,5.359994000000,,plage de la bonne brise,51183,observation-882d069b-bf97-42a7-955f-dc1443ab0f65-2,https://biolit.fr/observations/observation-882d069b-bf97-42a7-955f-dc1443ab0f65-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0842-scaled.jpg,,FALSE, +N1,60739,sortie-882d069b-bf97-42a7-955f-dc1443ab0f65,https://biolit.fr/sorties/sortie-882d069b-bf97-42a7-955f-dc1443ab0f65/,ludovic,,02/02/2017,14.0000000,16.0000000,43.236166000000,5.359994000000,,plage de la bonne brise,51185,observation-882d069b-bf97-42a7-955f-dc1443ab0f65-3,https://biolit.fr/observations/observation-882d069b-bf97-42a7-955f-dc1443ab0f65-3/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0844-scaled.jpg,,TRUE, +N1,60739,sortie-882d069b-bf97-42a7-955f-dc1443ab0f65,https://biolit.fr/sorties/sortie-882d069b-bf97-42a7-955f-dc1443ab0f65/,ludovic,,02/02/2017,14.0000000,16.0000000,43.236166000000,5.359994000000,,plage de la bonne brise,51187,observation-882d069b-bf97-42a7-955f-dc1443ab0f65-4,https://biolit.fr/observations/observation-882d069b-bf97-42a7-955f-dc1443ab0f65-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0847-scaled.jpg,,FALSE, +N1,60739,sortie-882d069b-bf97-42a7-955f-dc1443ab0f65,https://biolit.fr/sorties/sortie-882d069b-bf97-42a7-955f-dc1443ab0f65/,ludovic,,02/02/2017,14.0000000,16.0000000,43.236166000000,5.359994000000,,plage de la bonne brise,51189,observation-882d069b-bf97-42a7-955f-dc1443ab0f65-5,https://biolit.fr/observations/observation-882d069b-bf97-42a7-955f-dc1443ab0f65-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0849-scaled.jpg,,FALSE, +N1,60739,sortie-882d069b-bf97-42a7-955f-dc1443ab0f65,https://biolit.fr/sorties/sortie-882d069b-bf97-42a7-955f-dc1443ab0f65/,ludovic,,02/02/2017,14.0000000,16.0000000,43.236166000000,5.359994000000,,plage de la bonne brise,51191,observation-882d069b-bf97-42a7-955f-dc1443ab0f65-6,https://biolit.fr/observations/observation-882d069b-bf97-42a7-955f-dc1443ab0f65-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0850-scaled.jpg,,FALSE, +N1,60739,sortie-882d069b-bf97-42a7-955f-dc1443ab0f65,https://biolit.fr/sorties/sortie-882d069b-bf97-42a7-955f-dc1443ab0f65/,ludovic,,02/02/2017,14.0000000,16.0000000,43.236166000000,5.359994000000,,plage de la bonne brise,51193,observation-882d069b-bf97-42a7-955f-dc1443ab0f65-7,https://biolit.fr/observations/observation-882d069b-bf97-42a7-955f-dc1443ab0f65-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0853-scaled.jpg,,FALSE, +N1,60739,sortie-882d069b-bf97-42a7-955f-dc1443ab0f65,https://biolit.fr/sorties/sortie-882d069b-bf97-42a7-955f-dc1443ab0f65/,ludovic,,02/02/2017,14.0000000,16.0000000,43.236166000000,5.359994000000,,plage de la bonne brise,51195,observation-882d069b-bf97-42a7-955f-dc1443ab0f65-8,https://biolit.fr/observations/observation-882d069b-bf97-42a7-955f-dc1443ab0f65-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0854-scaled.jpg,,FALSE, +N1,60739,sortie-882d069b-bf97-42a7-955f-dc1443ab0f65,https://biolit.fr/sorties/sortie-882d069b-bf97-42a7-955f-dc1443ab0f65/,ludovic,,02/02/2017,14.0000000,16.0000000,43.236166000000,5.359994000000,,plage de la bonne brise,51197,observation-882d069b-bf97-42a7-955f-dc1443ab0f65-9,https://biolit.fr/observations/observation-882d069b-bf97-42a7-955f-dc1443ab0f65-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0855-scaled.jpg,,FALSE, +N1,60739,sortie-882d069b-bf97-42a7-955f-dc1443ab0f65,https://biolit.fr/sorties/sortie-882d069b-bf97-42a7-955f-dc1443ab0f65/,ludovic,,02/02/2017,14.0000000,16.0000000,43.236166000000,5.359994000000,,plage de la bonne brise,51199,observation-882d069b-bf97-42a7-955f-dc1443ab0f65-10,https://biolit.fr/observations/observation-882d069b-bf97-42a7-955f-dc1443ab0f65-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0856-scaled.jpg,,FALSE, +N1,60739,sortie-882d069b-bf97-42a7-955f-dc1443ab0f65,https://biolit.fr/sorties/sortie-882d069b-bf97-42a7-955f-dc1443ab0f65/,ludovic,,02/02/2017,14.0000000,16.0000000,43.236166000000,5.359994000000,,plage de la bonne brise,51201,observation-882d069b-bf97-42a7-955f-dc1443ab0f65-11,https://biolit.fr/observations/observation-882d069b-bf97-42a7-955f-dc1443ab0f65-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0857-scaled.jpg,,FALSE, +N1,60740,sortie-0673fb2c-0ead-4b00-bbd5-41b83504ae1c,https://biolit.fr/sorties/sortie-0673fb2c-0ead-4b00-bbd5-41b83504ae1c/,Bertin Pauline,,1/16/2017 0:00,9.0000000,11.0000000,43.273082000000,5.362167000000,,"Marseille, plage du prophete",51203,observation-0673fb2c-0ead-4b00-bbd5-41b83504ae1c,https://biolit.fr/observations/observation-0673fb2c-0ead-4b00-bbd5-41b83504ae1c/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0830_2-scaled.jpg,,FALSE, +N1,60741,sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e,https://biolit.fr/sorties/sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e/,IAHMANE,,1/16/2017 0:00,8.0000000,12.0000000,43.273216000000,5.362271000000,,Marseille,51205,observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e,https://biolit.fr/observations/observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170116_090528-scaled.jpg,,FALSE, +N1,60741,sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e,https://biolit.fr/sorties/sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e/,IAHMANE,,1/16/2017 0:00,8.0000000,12.0000000,43.273216000000,5.362271000000,,Marseille,51207,observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-2,https://biolit.fr/observations/observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170116_090402-scaled.jpg,,FALSE, +N1,60741,sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e,https://biolit.fr/sorties/sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e/,IAHMANE,,1/16/2017 0:00,8.0000000,12.0000000,43.273216000000,5.362271000000,,Marseille,51209,observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-3,https://biolit.fr/observations/observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170116_094429-scaled.jpg,,FALSE, +N1,60741,sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e,https://biolit.fr/sorties/sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e/,IAHMANE,,1/16/2017 0:00,8.0000000,12.0000000,43.273216000000,5.362271000000,,Marseille,51211,observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-4,https://biolit.fr/observations/observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170116_091232-scaled.jpg,,FALSE, +N1,60741,sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e,https://biolit.fr/sorties/sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e/,IAHMANE,,1/16/2017 0:00,8.0000000,12.0000000,43.273216000000,5.362271000000,,Marseille,51213,observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-5,https://biolit.fr/observations/observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170116_094445-scaled.jpg,,FALSE, +N1,60741,sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e,https://biolit.fr/sorties/sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e/,IAHMANE,,1/16/2017 0:00,8.0000000,12.0000000,43.273216000000,5.362271000000,,Marseille,51215,observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-6,https://biolit.fr/observations/observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170116_094438-scaled.jpg,,FALSE, +N1,60741,sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e,https://biolit.fr/sorties/sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e/,IAHMANE,,1/16/2017 0:00,8.0000000,12.0000000,43.273216000000,5.362271000000,,Marseille,51217,observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-7,https://biolit.fr/observations/observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170116_090246-scaled.jpg,,FALSE, +N1,60741,sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e,https://biolit.fr/sorties/sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e/,IAHMANE,,1/16/2017 0:00,8.0000000,12.0000000,43.273216000000,5.362271000000,,Marseille,51219,observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-8,https://biolit.fr/observations/observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170116_090647-scaled.jpg,,FALSE, +N1,60741,sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e,https://biolit.fr/sorties/sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e/,IAHMANE,,1/16/2017 0:00,8.0000000,12.0000000,43.273216000000,5.362271000000,,Marseille,51221,observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-9,https://biolit.fr/observations/observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170116_092221-scaled.jpg,,FALSE, +N1,60741,sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e,https://biolit.fr/sorties/sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e/,IAHMANE,,1/16/2017 0:00,8.0000000,12.0000000,43.273216000000,5.362271000000,,Marseille,51223,observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-10,https://biolit.fr/observations/observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-10/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4173[1].JPG,,TRUE, +N1,60741,sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e,https://biolit.fr/sorties/sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e/,IAHMANE,,1/16/2017 0:00,8.0000000,12.0000000,43.273216000000,5.362271000000,,Marseille,51225,observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-11,https://biolit.fr/observations/observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4165[1]-rotated.jpg,,FALSE, +N1,60741,sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e,https://biolit.fr/sorties/sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e/,IAHMANE,,1/16/2017 0:00,8.0000000,12.0000000,43.273216000000,5.362271000000,,Marseille,51227,observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-12,https://biolit.fr/observations/observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4162[1]-rotated.jpg,,FALSE, +N1,60741,sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e,https://biolit.fr/sorties/sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e/,IAHMANE,,1/16/2017 0:00,8.0000000,12.0000000,43.273216000000,5.362271000000,,Marseille,51229,observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-13,https://biolit.fr/observations/observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4169[1]-rotated.jpg,,FALSE, +N1,60741,sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e,https://biolit.fr/sorties/sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e/,IAHMANE,,1/16/2017 0:00,8.0000000,12.0000000,43.273216000000,5.362271000000,,Marseille,51231,observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-14,https://biolit.fr/observations/observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-14/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4174[1].JPG,,TRUE, +N1,60741,sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e,https://biolit.fr/sorties/sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e/,IAHMANE,,1/16/2017 0:00,8.0000000,12.0000000,43.273216000000,5.362271000000,,Marseille,51233,observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-15,https://biolit.fr/observations/observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-15/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4161[1].JPG,,TRUE, +N1,60742,sortie-4d94938e-a602-4802-b8a7-ab3a550a8e03,https://biolit.fr/sorties/sortie-4d94938e-a602-4802-b8a7-ab3a550a8e03/,Bertin Pauline,,1/16/2017 0:00,8.0000000,12.0000000,43.272927000000,5.362175000000,,"Marseille, plage du prophete",51235,observation-4d94938e-a602-4802-b8a7-ab3a550a8e03,https://biolit.fr/observations/observation-4d94938e-a602-4802-b8a7-ab3a550a8e03/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0807_0-scaled.jpg,,FALSE, +N1,60743,sortie-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b,https://biolit.fr/sorties/sortie-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b/,M R JC,,1/16/2017 0:00,8.0000000,12.0000000,43.273170000000,5.362273000000,,La plage du Prophète,51237,observation-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b,https://biolit.fr/observations/observation-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0813-scaled.jpg,,FALSE, +N1,60743,sortie-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b,https://biolit.fr/sorties/sortie-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b/,M R JC,,1/16/2017 0:00,8.0000000,12.0000000,43.273170000000,5.362273000000,,La plage du Prophète,51239,observation-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b-2,https://biolit.fr/observations/observation-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0833-scaled.jpg,,FALSE, +N1,60743,sortie-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b,https://biolit.fr/sorties/sortie-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b/,M R JC,,1/16/2017 0:00,8.0000000,12.0000000,43.273170000000,5.362273000000,,La plage du Prophète,51241,observation-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b-3,https://biolit.fr/observations/observation-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1654[1]-scaled.jpg,,FALSE, +N1,60743,sortie-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b,https://biolit.fr/sorties/sortie-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b/,M R JC,,1/16/2017 0:00,8.0000000,12.0000000,43.273170000000,5.362273000000,,La plage du Prophète,51243,observation-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b-4,https://biolit.fr/observations/observation-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b-4/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1656[1]-scaled.jpg,,TRUE, +N1,60743,sortie-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b,https://biolit.fr/sorties/sortie-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b/,M R JC,,1/16/2017 0:00,8.0000000,12.0000000,43.273170000000,5.362273000000,,La plage du Prophète,51245,observation-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b-5,https://biolit.fr/observations/observation-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1658[1]-scaled.jpg,,FALSE, +N1,60743,sortie-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b,https://biolit.fr/sorties/sortie-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b/,M R JC,,1/16/2017 0:00,8.0000000,12.0000000,43.273170000000,5.362273000000,,La plage du Prophète,51247,observation-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b-6,https://biolit.fr/observations/observation-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1659[1]-scaled.jpg,,FALSE, +N1,60744,sortie-d9110d77-a7b0-49b8-99b7-12840f54c816,https://biolit.fr/sorties/sortie-d9110d77-a7b0-49b8-99b7-12840f54c816/,souaada,,1/16/2017 0:00,9.0000000,12.0000000,43.272987000000,5.362021000000,,plage du prophète,51249,observation-d9110d77-a7b0-49b8-99b7-12840f54c816,https://biolit.fr/observations/observation-d9110d77-a7b0-49b8-99b7-12840f54c816/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1899-scaled.jpg,,FALSE, +N1,60744,sortie-d9110d77-a7b0-49b8-99b7-12840f54c816,https://biolit.fr/sorties/sortie-d9110d77-a7b0-49b8-99b7-12840f54c816/,souaada,,1/16/2017 0:00,9.0000000,12.0000000,43.272987000000,5.362021000000,,plage du prophète,51251,observation-d9110d77-a7b0-49b8-99b7-12840f54c816-2,https://biolit.fr/observations/observation-d9110d77-a7b0-49b8-99b7-12840f54c816-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1908-scaled.jpg,,TRUE, +N1,60744,sortie-d9110d77-a7b0-49b8-99b7-12840f54c816,https://biolit.fr/sorties/sortie-d9110d77-a7b0-49b8-99b7-12840f54c816/,souaada,,1/16/2017 0:00,9.0000000,12.0000000,43.272987000000,5.362021000000,,plage du prophète,51253,observation-d9110d77-a7b0-49b8-99b7-12840f54c816-3,https://biolit.fr/observations/observation-d9110d77-a7b0-49b8-99b7-12840f54c816-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1913-scaled.jpg,,FALSE, +N1,60745,sortie-53208aed-9155-459b-92f2-baab44224ec1,https://biolit.fr/sorties/sortie-53208aed-9155-459b-92f2-baab44224ec1/,Sabrinice13,,1/16/2017 0:00,8.0000000,11.0:45,43.273083000000,5.362148000000,,Plage du Prophète (Marseille),51255,observation-53208aed-9155-459b-92f2-baab44224ec1,https://biolit.fr/observations/observation-53208aed-9155-459b-92f2-baab44224ec1/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1897-scaled.jpg,,TRUE, +N1,60745,sortie-53208aed-9155-459b-92f2-baab44224ec1,https://biolit.fr/sorties/sortie-53208aed-9155-459b-92f2-baab44224ec1/,Sabrinice13,,1/16/2017 0:00,8.0000000,11.0:45,43.273083000000,5.362148000000,,Plage du Prophète (Marseille),51257,observation-53208aed-9155-459b-92f2-baab44224ec1-2,https://biolit.fr/observations/observation-53208aed-9155-459b-92f2-baab44224ec1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1901-scaled.jpg,,FALSE, +N1,60746,sortie-c3fef71c-70d1-4e73-a683-95e7dfd97c2f,https://biolit.fr/sorties/sortie-c3fef71c-70d1-4e73-a683-95e7dfd97c2f/,Coline Mathilde Alicia,,1/16/2017 0:00,9.000005,11.000005,43.273169000000,5.36229800000,,plage du prophete,51259,observation-c3fef71c-70d1-4e73-a683-95e7dfd97c2f,https://biolit.fr/observations/observation-c3fef71c-70d1-4e73-a683-95e7dfd97c2f/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6657_0-rotated.jpg,,FALSE, +N1,60747,sortie-5b03c2ab-700d-41ce-ae36-3a9a6f2a4cc9,https://biolit.fr/sorties/sortie-5b03c2ab-700d-41ce-ae36-3a9a6f2a4cc9/,Lucie Roger,,1/16/2017 0:00,8.0000000,10.0000000,43.295042000000,5.364272000000,,"Plage du Prophète, Marseille ",51261,observation-5b03c2ab-700d-41ce-ae36-3a9a6f2a4cc9,https://biolit.fr/observations/observation-5b03c2ab-700d-41ce-ae36-3a9a6f2a4cc9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0013_0-scaled.jpg,,FALSE, +N1,60747,sortie-5b03c2ab-700d-41ce-ae36-3a9a6f2a4cc9,https://biolit.fr/sorties/sortie-5b03c2ab-700d-41ce-ae36-3a9a6f2a4cc9/,Lucie Roger,,1/16/2017 0:00,8.0000000,10.0000000,43.295042000000,5.364272000000,,"Plage du Prophète, Marseille ",51263,observation-5b03c2ab-700d-41ce-ae36-3a9a6f2a4cc9-2,https://biolit.fr/observations/observation-5b03c2ab-700d-41ce-ae36-3a9a6f2a4cc9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5616-scaled.jpg,,FALSE, +N1,60747,sortie-5b03c2ab-700d-41ce-ae36-3a9a6f2a4cc9,https://biolit.fr/sorties/sortie-5b03c2ab-700d-41ce-ae36-3a9a6f2a4cc9/,Lucie Roger,,1/16/2017 0:00,8.0000000,10.0000000,43.295042000000,5.364272000000,,"Plage du Prophète, Marseille ",51265,observation-5b03c2ab-700d-41ce-ae36-3a9a6f2a4cc9-3,https://biolit.fr/observations/observation-5b03c2ab-700d-41ce-ae36-3a9a6f2a4cc9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0483-scaled.jpg,,FALSE, +N1,60748,sortie-1ac05e67-9f85-410f-83db-9da0666f3e44,https://biolit.fr/sorties/sortie-1ac05e67-9f85-410f-83db-9da0666f3e44/,Bertin Pauline,,1/31/2017 0:00,8.0000000,10.0000000,43.273013000000,5.36222100000,,"Marseille, plage du prophete",51267,observation-1ac05e67-9f85-410f-83db-9da0666f3e44,https://biolit.fr/observations/observation-1ac05e67-9f85-410f-83db-9da0666f3e44/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0807-scaled.jpg,,FALSE, +N1,60748,sortie-1ac05e67-9f85-410f-83db-9da0666f3e44,https://biolit.fr/sorties/sortie-1ac05e67-9f85-410f-83db-9da0666f3e44/,Bertin Pauline,,1/31/2017 0:00,8.0000000,10.0000000,43.273013000000,5.36222100000,,"Marseille, plage du prophete",51269,observation-1ac05e67-9f85-410f-83db-9da0666f3e44-2,https://biolit.fr/observations/observation-1ac05e67-9f85-410f-83db-9da0666f3e44-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0800_2-scaled.jpg,,FALSE, +N1,60749,sortie-d974d999-22fb-414f-93df-2ba053c3fc51,https://biolit.fr/sorties/sortie-d974d999-22fb-414f-93df-2ba053c3fc51/,souaada,,1/16/2017 0:00,9.0000000,10.0000000,43.294705000000,5.383195000000,,plage du prophete,51271,observation-d974d999-22fb-414f-93df-2ba053c3fc51,https://biolit.fr/observations/observation-d974d999-22fb-414f-93df-2ba053c3fc51/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0020-scaled.jpg,,FALSE, +N1,60749,sortie-d974d999-22fb-414f-93df-2ba053c3fc51,https://biolit.fr/sorties/sortie-d974d999-22fb-414f-93df-2ba053c3fc51/,souaada,,1/16/2017 0:00,9.0000000,10.0000000,43.294705000000,5.383195000000,,plage du prophete,51273,observation-d974d999-22fb-414f-93df-2ba053c3fc51-2,https://biolit.fr/observations/observation-d974d999-22fb-414f-93df-2ba053c3fc51-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0021-scaled.jpg,,FALSE, +N1,60751,sortie-67c177ed-8963-4dc0-a3f0-55ecdcc63e9f,https://biolit.fr/sorties/sortie-67c177ed-8963-4dc0-a3f0-55ecdcc63e9f/,Coraliesc,,1/16/2017 0:00,9.0:55,10.0000000,43.273120000000,5.362273000000,,Plage du Prophete,51282,observation-67c177ed-8963-4dc0-a3f0-55ecdcc63e9f,https://biolit.fr/observations/observation-67c177ed-8963-4dc0-a3f0-55ecdcc63e9f/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0806-scaled.jpg,,FALSE, +N1,60752,sortie-462ba581-2d32-49e3-bb1f-1329058ea778,https://biolit.fr/sorties/sortie-462ba581-2d32-49e3-bb1f-1329058ea778/,moufi,,1/16/2017 0:00,8.0000000,12.0000000,43.273001000000,5.362120000000,,Plage du Prophete,51284,observation-462ba581-2d32-49e3-bb1f-1329058ea778,https://biolit.fr/observations/observation-462ba581-2d32-49e3-bb1f-1329058ea778/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0824-scaled.jpg,,FALSE, +N1,60753,sortie-9cb4d3b6-c96d-488d-9e0e-b7abb41718cc,https://biolit.fr/sorties/sortie-9cb4d3b6-c96d-488d-9e0e-b7abb41718cc/,Yass'Air,,1/16/2017 0:00,9.0000000,11.0000000,43.272822000000,5.362260000000,,"Plage du prophete,marseille",51286,observation-9cb4d3b6-c96d-488d-9e0e-b7abb41718cc,https://biolit.fr/observations/observation-9cb4d3b6-c96d-488d-9e0e-b7abb41718cc/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0018-scaled.jpg,,FALSE, +N1,60753,sortie-9cb4d3b6-c96d-488d-9e0e-b7abb41718cc,https://biolit.fr/sorties/sortie-9cb4d3b6-c96d-488d-9e0e-b7abb41718cc/,Yass'Air,,1/16/2017 0:00,9.0000000,11.0000000,43.272822000000,5.362260000000,,"Plage du prophete,marseille",51288,observation-9cb4d3b6-c96d-488d-9e0e-b7abb41718cc-2,https://biolit.fr/observations/observation-9cb4d3b6-c96d-488d-9e0e-b7abb41718cc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0019-scaled.jpg,,FALSE, +N1,60754,sortie-9f35d185-74cd-479d-a434-fc0a8a541f82,https://biolit.fr/sorties/sortie-9f35d185-74cd-479d-a434-fc0a8a541f82/,Phil,,1/13/2017 0:00,12.0000000,12.0:45,47.796235000000,-4.179362000000,,Loctudy - Finistère,51290,observation-9f35d185-74cd-479d-a434-fc0a8a541f82,https://biolit.fr/observations/observation-9f35d185-74cd-479d-a434-fc0a8a541f82/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050692.JPG,,FALSE, +N1,60754,sortie-9f35d185-74cd-479d-a434-fc0a8a541f82,https://biolit.fr/sorties/sortie-9f35d185-74cd-479d-a434-fc0a8a541f82/,Phil,,1/13/2017 0:00,12.0000000,12.0:45,47.796235000000,-4.179362000000,,Loctudy - Finistère,51292,observation-9f35d185-74cd-479d-a434-fc0a8a541f82-2,https://biolit.fr/observations/observation-9f35d185-74cd-479d-a434-fc0a8a541f82-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050687.JPG,,FALSE, +N1,60754,sortie-9f35d185-74cd-479d-a434-fc0a8a541f82,https://biolit.fr/sorties/sortie-9f35d185-74cd-479d-a434-fc0a8a541f82/,Phil,,1/13/2017 0:00,12.0000000,12.0:45,47.796235000000,-4.179362000000,,Loctudy - Finistère,51294,observation-9f35d185-74cd-479d-a434-fc0a8a541f82-3,https://biolit.fr/observations/observation-9f35d185-74cd-479d-a434-fc0a8a541f82-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050690.JPG,,FALSE, +N1,60755,sortie-e7b5e9af-fa25-41a2-a548-e4b2495ee6a0,https://biolit.fr/sorties/sortie-e7b5e9af-fa25-41a2-a548-e4b2495ee6a0/,Phil,,1/28/2017 0:00,12.0:25,12.0:35,48.694419000000,-4.0855270000,,Sibiril - Finistère,51296,observation-e7b5e9af-fa25-41a2-a548-e4b2495ee6a0,https://biolit.fr/observations/observation-e7b5e9af-fa25-41a2-a548-e4b2495ee6a0/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170128_123231.jpg,,FALSE, +N1,60755,sortie-e7b5e9af-fa25-41a2-a548-e4b2495ee6a0,https://biolit.fr/sorties/sortie-e7b5e9af-fa25-41a2-a548-e4b2495ee6a0/,Phil,,1/28/2017 0:00,12.0:25,12.0:35,48.694419000000,-4.0855270000,,Sibiril - Finistère,51298,observation-e7b5e9af-fa25-41a2-a548-e4b2495ee6a0-2,https://biolit.fr/observations/observation-e7b5e9af-fa25-41a2-a548-e4b2495ee6a0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170128_123444.jpg,,FALSE, +N1,60755,sortie-e7b5e9af-fa25-41a2-a548-e4b2495ee6a0,https://biolit.fr/sorties/sortie-e7b5e9af-fa25-41a2-a548-e4b2495ee6a0/,Phil,,1/28/2017 0:00,12.0:25,12.0:35,48.694419000000,-4.0855270000,,Sibiril - Finistère,51300,observation-e7b5e9af-fa25-41a2-a548-e4b2495ee6a0-3,https://biolit.fr/observations/observation-e7b5e9af-fa25-41a2-a548-e4b2495ee6a0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170128_122547.jpg,,FALSE, +N1,60755,sortie-e7b5e9af-fa25-41a2-a548-e4b2495ee6a0,https://biolit.fr/sorties/sortie-e7b5e9af-fa25-41a2-a548-e4b2495ee6a0/,Phil,,1/28/2017 0:00,12.0:25,12.0:35,48.694419000000,-4.0855270000,,Sibiril - Finistère,51302,observation-e7b5e9af-fa25-41a2-a548-e4b2495ee6a0-4,https://biolit.fr/observations/observation-e7b5e9af-fa25-41a2-a548-e4b2495ee6a0-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170128_123609.jpg,,TRUE, +N1,60756,sortie-43855bf1-18cc-400c-a3d2-ca9bf7b620b2,https://biolit.fr/sorties/sortie-43855bf1-18cc-400c-a3d2-ca9bf7b620b2/,Phil,,1/13/2017 0:00,12.0000000,12.0:45,47.797059000000,-4.177079000000,,Loctudy - Finistère,51304,observation-43855bf1-18cc-400c-a3d2-ca9bf7b620b2,https://biolit.fr/observations/observation-43855bf1-18cc-400c-a3d2-ca9bf7b620b2/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050675.JPG,,TRUE, +N1,60756,sortie-43855bf1-18cc-400c-a3d2-ca9bf7b620b2,https://biolit.fr/sorties/sortie-43855bf1-18cc-400c-a3d2-ca9bf7b620b2/,Phil,,1/13/2017 0:00,12.0000000,12.0:45,47.797059000000,-4.177079000000,,Loctudy - Finistère,51306,observation-43855bf1-18cc-400c-a3d2-ca9bf7b620b2-2,https://biolit.fr/observations/observation-43855bf1-18cc-400c-a3d2-ca9bf7b620b2-2/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1050679.JPG,,TRUE, +N1,60756,sortie-43855bf1-18cc-400c-a3d2-ca9bf7b620b2,https://biolit.fr/sorties/sortie-43855bf1-18cc-400c-a3d2-ca9bf7b620b2/,Phil,,1/13/2017 0:00,12.0000000,12.0:45,47.797059000000,-4.177079000000,,Loctudy - Finistère,51308,observation-43855bf1-18cc-400c-a3d2-ca9bf7b620b2-3,https://biolit.fr/observations/observation-43855bf1-18cc-400c-a3d2-ca9bf7b620b2-3/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/P1050681.JPG,,TRUE, +N1,60756,sortie-43855bf1-18cc-400c-a3d2-ca9bf7b620b2,https://biolit.fr/sorties/sortie-43855bf1-18cc-400c-a3d2-ca9bf7b620b2/,Phil,,1/13/2017 0:00,12.0000000,12.0:45,47.797059000000,-4.177079000000,,Loctudy - Finistère,51310,observation-43855bf1-18cc-400c-a3d2-ca9bf7b620b2-4,https://biolit.fr/observations/observation-43855bf1-18cc-400c-a3d2-ca9bf7b620b2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050683.JPG,,FALSE, +N1,60756,sortie-43855bf1-18cc-400c-a3d2-ca9bf7b620b2,https://biolit.fr/sorties/sortie-43855bf1-18cc-400c-a3d2-ca9bf7b620b2/,Phil,,1/13/2017 0:00,12.0000000,12.0:45,47.797059000000,-4.177079000000,,Loctudy - Finistère,51312,observation-43855bf1-18cc-400c-a3d2-ca9bf7b620b2-5,https://biolit.fr/observations/observation-43855bf1-18cc-400c-a3d2-ca9bf7b620b2-5/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1050684.JPG,,TRUE, +N1,60757,sortie-75346654-82bb-459c-b7de-a1ae56c4e38f,https://biolit.fr/sorties/sortie-75346654-82bb-459c-b7de-a1ae56c4e38f/,CPIE Iles de Lérins et Pays d'Azur,,08/04/2016,11.0000000,15.0000000,43.518079000000,7.068653000000,,Pointe de la Convention : Côte nord Ile Sainte-Marguerite,51314,observation-75346654-82bb-459c-b7de-a1ae56c4e38f,https://biolit.fr/observations/observation-75346654-82bb-459c-b7de-a1ae56c4e38f/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0703.JPG,,FALSE, +N1,60757,sortie-75346654-82bb-459c-b7de-a1ae56c4e38f,https://biolit.fr/sorties/sortie-75346654-82bb-459c-b7de-a1ae56c4e38f/,CPIE Iles de Lérins et Pays d'Azur,,08/04/2016,11.0000000,15.0000000,43.518079000000,7.068653000000,,Pointe de la Convention : Côte nord Ile Sainte-Marguerite,51316,observation-75346654-82bb-459c-b7de-a1ae56c4e38f-2,https://biolit.fr/observations/observation-75346654-82bb-459c-b7de-a1ae56c4e38f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0706.JPG,,FALSE, +N1,60757,sortie-75346654-82bb-459c-b7de-a1ae56c4e38f,https://biolit.fr/sorties/sortie-75346654-82bb-459c-b7de-a1ae56c4e38f/,CPIE Iles de Lérins et Pays d'Azur,,08/04/2016,11.0000000,15.0000000,43.518079000000,7.068653000000,,Pointe de la Convention : Côte nord Ile Sainte-Marguerite,51318,observation-75346654-82bb-459c-b7de-a1ae56c4e38f-3,https://biolit.fr/observations/observation-75346654-82bb-459c-b7de-a1ae56c4e38f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0708.JPG,,FALSE, +N1,60757,sortie-75346654-82bb-459c-b7de-a1ae56c4e38f,https://biolit.fr/sorties/sortie-75346654-82bb-459c-b7de-a1ae56c4e38f/,CPIE Iles de Lérins et Pays d'Azur,,08/04/2016,11.0000000,15.0000000,43.518079000000,7.068653000000,,Pointe de la Convention : Côte nord Ile Sainte-Marguerite,51320,observation-75346654-82bb-459c-b7de-a1ae56c4e38f-4,https://biolit.fr/observations/observation-75346654-82bb-459c-b7de-a1ae56c4e38f-4/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0713.JPG,,TRUE, +N1,60757,sortie-75346654-82bb-459c-b7de-a1ae56c4e38f,https://biolit.fr/sorties/sortie-75346654-82bb-459c-b7de-a1ae56c4e38f/,CPIE Iles de Lérins et Pays d'Azur,,08/04/2016,11.0000000,15.0000000,43.518079000000,7.068653000000,,Pointe de la Convention : Côte nord Ile Sainte-Marguerite,51322,observation-75346654-82bb-459c-b7de-a1ae56c4e38f-5,https://biolit.fr/observations/observation-75346654-82bb-459c-b7de-a1ae56c4e38f-5/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0711.JPG,,TRUE, +N1,60757,sortie-75346654-82bb-459c-b7de-a1ae56c4e38f,https://biolit.fr/sorties/sortie-75346654-82bb-459c-b7de-a1ae56c4e38f/,CPIE Iles de Lérins et Pays d'Azur,,08/04/2016,11.0000000,15.0000000,43.518079000000,7.068653000000,,Pointe de la Convention : Côte nord Ile Sainte-Marguerite,51324,observation-75346654-82bb-459c-b7de-a1ae56c4e38f-6,https://biolit.fr/observations/observation-75346654-82bb-459c-b7de-a1ae56c4e38f-6/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0716.JPG,,TRUE, +N1,60757,sortie-75346654-82bb-459c-b7de-a1ae56c4e38f,https://biolit.fr/sorties/sortie-75346654-82bb-459c-b7de-a1ae56c4e38f/,CPIE Iles de Lérins et Pays d'Azur,,08/04/2016,11.0000000,15.0000000,43.518079000000,7.068653000000,,Pointe de la Convention : Côte nord Ile Sainte-Marguerite,51326,observation-75346654-82bb-459c-b7de-a1ae56c4e38f-7,https://biolit.fr/observations/observation-75346654-82bb-459c-b7de-a1ae56c4e38f-7/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0717.JPG,,TRUE, +N1,60757,sortie-75346654-82bb-459c-b7de-a1ae56c4e38f,https://biolit.fr/sorties/sortie-75346654-82bb-459c-b7de-a1ae56c4e38f/,CPIE Iles de Lérins et Pays d'Azur,,08/04/2016,11.0000000,15.0000000,43.518079000000,7.068653000000,,Pointe de la Convention : Côte nord Ile Sainte-Marguerite,51328,observation-75346654-82bb-459c-b7de-a1ae56c4e38f-8,https://biolit.fr/observations/observation-75346654-82bb-459c-b7de-a1ae56c4e38f-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0719.JPG,,FALSE, +N1,60757,sortie-75346654-82bb-459c-b7de-a1ae56c4e38f,https://biolit.fr/sorties/sortie-75346654-82bb-459c-b7de-a1ae56c4e38f/,CPIE Iles de Lérins et Pays d'Azur,,08/04/2016,11.0000000,15.0000000,43.518079000000,7.068653000000,,Pointe de la Convention : Côte nord Ile Sainte-Marguerite,51330,observation-75346654-82bb-459c-b7de-a1ae56c4e38f-9,https://biolit.fr/observations/observation-75346654-82bb-459c-b7de-a1ae56c4e38f-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0721.JPG,,FALSE, +N1,60757,sortie-75346654-82bb-459c-b7de-a1ae56c4e38f,https://biolit.fr/sorties/sortie-75346654-82bb-459c-b7de-a1ae56c4e38f/,CPIE Iles de Lérins et Pays d'Azur,,08/04/2016,11.0000000,15.0000000,43.518079000000,7.068653000000,,Pointe de la Convention : Côte nord Ile Sainte-Marguerite,51332,observation-75346654-82bb-459c-b7de-a1ae56c4e38f-10,https://biolit.fr/observations/observation-75346654-82bb-459c-b7de-a1ae56c4e38f-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0720.JPG,,FALSE, +N1,60758,sortie-9dd9c382-44e3-4f91-bf86-f40ea2e48eac,https://biolit.fr/sorties/sortie-9dd9c382-44e3-4f91-bf86-f40ea2e48eac/,CPIE Iles de Lérins et Pays d'Azur,,08/09/2016,11.0000000,15.0000000,43.521219000000,7.032091000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",51334,observation-9dd9c382-44e3-4f91-bf86-f40ea2e48eac,https://biolit.fr/observations/observation-9dd9c382-44e3-4f91-bf86-f40ea2e48eac/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0730.JPG,,TRUE, +N1,60758,sortie-9dd9c382-44e3-4f91-bf86-f40ea2e48eac,https://biolit.fr/sorties/sortie-9dd9c382-44e3-4f91-bf86-f40ea2e48eac/,CPIE Iles de Lérins et Pays d'Azur,,08/09/2016,11.0000000,15.0000000,43.521219000000,7.032091000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",51336,observation-9dd9c382-44e3-4f91-bf86-f40ea2e48eac-2,https://biolit.fr/observations/observation-9dd9c382-44e3-4f91-bf86-f40ea2e48eac-2/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0729.JPG,,TRUE, +N1,60758,sortie-9dd9c382-44e3-4f91-bf86-f40ea2e48eac,https://biolit.fr/sorties/sortie-9dd9c382-44e3-4f91-bf86-f40ea2e48eac/,CPIE Iles de Lérins et Pays d'Azur,,08/09/2016,11.0000000,15.0000000,43.521219000000,7.032091000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",51338,observation-9dd9c382-44e3-4f91-bf86-f40ea2e48eac-3,https://biolit.fr/observations/observation-9dd9c382-44e3-4f91-bf86-f40ea2e48eac-3/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0733.JPG,,TRUE, +N1,60758,sortie-9dd9c382-44e3-4f91-bf86-f40ea2e48eac,https://biolit.fr/sorties/sortie-9dd9c382-44e3-4f91-bf86-f40ea2e48eac/,CPIE Iles de Lérins et Pays d'Azur,,08/09/2016,11.0000000,15.0000000,43.521219000000,7.032091000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",51340,observation-9dd9c382-44e3-4f91-bf86-f40ea2e48eac-4,https://biolit.fr/observations/observation-9dd9c382-44e3-4f91-bf86-f40ea2e48eac-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0737.JPG,,FALSE, +N1,60758,sortie-9dd9c382-44e3-4f91-bf86-f40ea2e48eac,https://biolit.fr/sorties/sortie-9dd9c382-44e3-4f91-bf86-f40ea2e48eac/,CPIE Iles de Lérins et Pays d'Azur,,08/09/2016,11.0000000,15.0000000,43.521219000000,7.032091000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",51342,observation-9dd9c382-44e3-4f91-bf86-f40ea2e48eac-5,https://biolit.fr/observations/observation-9dd9c382-44e3-4f91-bf86-f40ea2e48eac-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0746.JPG,,FALSE, +N1,60759,sortie-413e06e5-2ace-42ce-a1d5-42e9e3c708de,https://biolit.fr/sorties/sortie-413e06e5-2ace-42ce-a1d5-42e9e3c708de/,CPIE Iles de Lérins et Pays d'Azur,,08/11/2016,11.0000000,15.0000000,43.521246000000,7.032006000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",51344,observation-413e06e5-2ace-42ce-a1d5-42e9e3c708de,https://biolit.fr/observations/observation-413e06e5-2ace-42ce-a1d5-42e9e3c708de/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0763.JPG,,TRUE, +N1,60759,sortie-413e06e5-2ace-42ce-a1d5-42e9e3c708de,https://biolit.fr/sorties/sortie-413e06e5-2ace-42ce-a1d5-42e9e3c708de/,CPIE Iles de Lérins et Pays d'Azur,,08/11/2016,11.0000000,15.0000000,43.521246000000,7.032006000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",51346,observation-413e06e5-2ace-42ce-a1d5-42e9e3c708de-2,https://biolit.fr/observations/observation-413e06e5-2ace-42ce-a1d5-42e9e3c708de-2/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0765.JPG,,TRUE, +N1,60759,sortie-413e06e5-2ace-42ce-a1d5-42e9e3c708de,https://biolit.fr/sorties/sortie-413e06e5-2ace-42ce-a1d5-42e9e3c708de/,CPIE Iles de Lérins et Pays d'Azur,,08/11/2016,11.0000000,15.0000000,43.521246000000,7.032006000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",51348,observation-413e06e5-2ace-42ce-a1d5-42e9e3c708de-3,https://biolit.fr/observations/observation-413e06e5-2ace-42ce-a1d5-42e9e3c708de-3/,Stramonita haemastoma,Bouche de sang,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0766.JPG,,TRUE, +N1,60759,sortie-413e06e5-2ace-42ce-a1d5-42e9e3c708de,https://biolit.fr/sorties/sortie-413e06e5-2ace-42ce-a1d5-42e9e3c708de/,CPIE Iles de Lérins et Pays d'Azur,,08/11/2016,11.0000000,15.0000000,43.521246000000,7.032006000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",51350,observation-413e06e5-2ace-42ce-a1d5-42e9e3c708de-4,https://biolit.fr/observations/observation-413e06e5-2ace-42ce-a1d5-42e9e3c708de-4/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0767.JPG,,TRUE, +N1,60759,sortie-413e06e5-2ace-42ce-a1d5-42e9e3c708de,https://biolit.fr/sorties/sortie-413e06e5-2ace-42ce-a1d5-42e9e3c708de/,CPIE Iles de Lérins et Pays d'Azur,,08/11/2016,11.0000000,15.0000000,43.521246000000,7.032006000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",51352,observation-413e06e5-2ace-42ce-a1d5-42e9e3c708de-5,https://biolit.fr/observations/observation-413e06e5-2ace-42ce-a1d5-42e9e3c708de-5/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0761.JPG,,TRUE, +N1,60759,sortie-413e06e5-2ace-42ce-a1d5-42e9e3c708de,https://biolit.fr/sorties/sortie-413e06e5-2ace-42ce-a1d5-42e9e3c708de/,CPIE Iles de Lérins et Pays d'Azur,,08/11/2016,11.0000000,15.0000000,43.521246000000,7.032006000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",51354,observation-413e06e5-2ace-42ce-a1d5-42e9e3c708de-6,https://biolit.fr/observations/observation-413e06e5-2ace-42ce-a1d5-42e9e3c708de-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0759.JPG,,FALSE, +N1,60760,sortie-edc766b9-c7a4-4d9e-a241-edd3fda382f6,https://biolit.fr/sorties/sortie-edc766b9-c7a4-4d9e-a241-edd3fda382f6/,Phil,,1/18/2017 0:00,17.0:45,17.0000000,47.792242000000,-4.288431000000,,Le Guivinec - Finistère,51356,observation-edc766b9-c7a4-4d9e-a241-edd3fda382f6,https://biolit.fr/observations/observation-edc766b9-c7a4-4d9e-a241-edd3fda382f6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170118_174511.jpg,,FALSE, +N1,60761,sortie-3a8890a3-8a38-4766-b1ea-4089397fc8ad,https://biolit.fr/sorties/sortie-3a8890a3-8a38-4766-b1ea-4089397fc8ad/,Phil,,1/13/2017 0:00,12.0:35,12.0:45,47.797708000000,-4.177130000000,,Loctudy - Finistère,51358,observation-3a8890a3-8a38-4766-b1ea-4089397fc8ad,https://biolit.fr/observations/observation-3a8890a3-8a38-4766-b1ea-4089397fc8ad/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050666.JPG,,FALSE, +N1,60761,sortie-3a8890a3-8a38-4766-b1ea-4089397fc8ad,https://biolit.fr/sorties/sortie-3a8890a3-8a38-4766-b1ea-4089397fc8ad/,Phil,,1/13/2017 0:00,12.0:35,12.0:45,47.797708000000,-4.177130000000,,Loctudy - Finistère,51360,observation-3a8890a3-8a38-4766-b1ea-4089397fc8ad-2,https://biolit.fr/observations/observation-3a8890a3-8a38-4766-b1ea-4089397fc8ad-2/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1050668.JPG,,TRUE, +N1,60761,sortie-3a8890a3-8a38-4766-b1ea-4089397fc8ad,https://biolit.fr/sorties/sortie-3a8890a3-8a38-4766-b1ea-4089397fc8ad/,Phil,,1/13/2017 0:00,12.0:35,12.0:45,47.797708000000,-4.177130000000,,Loctudy - Finistère,51362,observation-3a8890a3-8a38-4766-b1ea-4089397fc8ad-3,https://biolit.fr/observations/observation-3a8890a3-8a38-4766-b1ea-4089397fc8ad-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050669.JPG,,FALSE, +N1,60761,sortie-3a8890a3-8a38-4766-b1ea-4089397fc8ad,https://biolit.fr/sorties/sortie-3a8890a3-8a38-4766-b1ea-4089397fc8ad/,Phil,,1/13/2017 0:00,12.0:35,12.0:45,47.797708000000,-4.177130000000,,Loctudy - Finistère,51364,observation-3a8890a3-8a38-4766-b1ea-4089397fc8ad-4,https://biolit.fr/observations/observation-3a8890a3-8a38-4766-b1ea-4089397fc8ad-4/,Tritia incrassata,Nasse épaisse,,https://biolit.fr/wp-content/uploads/2023/07/P1050671.JPG,,TRUE, +N1,60761,sortie-3a8890a3-8a38-4766-b1ea-4089397fc8ad,https://biolit.fr/sorties/sortie-3a8890a3-8a38-4766-b1ea-4089397fc8ad/,Phil,,1/13/2017 0:00,12.0:35,12.0:45,47.797708000000,-4.177130000000,,Loctudy - Finistère,51366,observation-3a8890a3-8a38-4766-b1ea-4089397fc8ad-5,https://biolit.fr/observations/observation-3a8890a3-8a38-4766-b1ea-4089397fc8ad-5/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050659.JPG,,TRUE, +N1,60761,sortie-3a8890a3-8a38-4766-b1ea-4089397fc8ad,https://biolit.fr/sorties/sortie-3a8890a3-8a38-4766-b1ea-4089397fc8ad/,Phil,,1/13/2017 0:00,12.0:35,12.0:45,47.797708000000,-4.177130000000,,Loctudy - Finistère,51368,observation-3a8890a3-8a38-4766-b1ea-4089397fc8ad-6,https://biolit.fr/observations/observation-3a8890a3-8a38-4766-b1ea-4089397fc8ad-6/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/P1050665.JPG,,TRUE, +N1,60762,sortie-0fe1051f-a53c-4381-8daa-00f727382425,https://biolit.fr/sorties/sortie-0fe1051f-a53c-4381-8daa-00f727382425/,Phil,,1/18/2017 0:00,17.0:35,17.0000000,47.792711000000,-4.286930000000,,Le Guivinec - Finistère,51370,observation-0fe1051f-a53c-4381-8daa-00f727382425,https://biolit.fr/observations/observation-0fe1051f-a53c-4381-8daa-00f727382425/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170118_173854.jpg,,FALSE, +N1,60762,sortie-0fe1051f-a53c-4381-8daa-00f727382425,https://biolit.fr/sorties/sortie-0fe1051f-a53c-4381-8daa-00f727382425/,Phil,,1/18/2017 0:00,17.0:35,17.0000000,47.792711000000,-4.286930000000,,Le Guivinec - Finistère,51372,observation-0fe1051f-a53c-4381-8daa-00f727382425-2,https://biolit.fr/observations/observation-0fe1051f-a53c-4381-8daa-00f727382425-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170118_173740.jpg,,FALSE, +N1,60763,sortie-61e41933-97bd-4dba-bb88-9bb5a3af2bfd,https://biolit.fr/sorties/sortie-61e41933-97bd-4dba-bb88-9bb5a3af2bfd/,Phil,,1/13/2017 0:00,13.0:15,13.0000000,47.801747000000,-4.182453000000,,Loctudy - Finistère,51374,observation-61e41933-97bd-4dba-bb88-9bb5a3af2bfd,https://biolit.fr/observations/observation-61e41933-97bd-4dba-bb88-9bb5a3af2bfd/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050744.JPG,,FALSE, +N1,60763,sortie-61e41933-97bd-4dba-bb88-9bb5a3af2bfd,https://biolit.fr/sorties/sortie-61e41933-97bd-4dba-bb88-9bb5a3af2bfd/,Phil,,1/13/2017 0:00,13.0:15,13.0000000,47.801747000000,-4.182453000000,,Loctudy - Finistère,51376,observation-61e41933-97bd-4dba-bb88-9bb5a3af2bfd-2,https://biolit.fr/observations/observation-61e41933-97bd-4dba-bb88-9bb5a3af2bfd-2/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/P1050745.JPG,,TRUE, +N1,60763,sortie-61e41933-97bd-4dba-bb88-9bb5a3af2bfd,https://biolit.fr/sorties/sortie-61e41933-97bd-4dba-bb88-9bb5a3af2bfd/,Phil,,1/13/2017 0:00,13.0:15,13.0000000,47.801747000000,-4.182453000000,,Loctudy - Finistère,51378,observation-61e41933-97bd-4dba-bb88-9bb5a3af2bfd-3,https://biolit.fr/observations/observation-61e41933-97bd-4dba-bb88-9bb5a3af2bfd-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050748.JPG,,FALSE, +N1,60763,sortie-61e41933-97bd-4dba-bb88-9bb5a3af2bfd,https://biolit.fr/sorties/sortie-61e41933-97bd-4dba-bb88-9bb5a3af2bfd/,Phil,,1/13/2017 0:00,13.0:15,13.0000000,47.801747000000,-4.182453000000,,Loctudy - Finistère,51380,observation-61e41933-97bd-4dba-bb88-9bb5a3af2bfd-4,https://biolit.fr/observations/observation-61e41933-97bd-4dba-bb88-9bb5a3af2bfd-4/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1050750.JPG,,TRUE, +N1,60763,sortie-61e41933-97bd-4dba-bb88-9bb5a3af2bfd,https://biolit.fr/sorties/sortie-61e41933-97bd-4dba-bb88-9bb5a3af2bfd/,Phil,,1/13/2017 0:00,13.0:15,13.0000000,47.801747000000,-4.182453000000,,Loctudy - Finistère,51382,observation-61e41933-97bd-4dba-bb88-9bb5a3af2bfd-5,https://biolit.fr/observations/observation-61e41933-97bd-4dba-bb88-9bb5a3af2bfd-5/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1050754.JPG,,TRUE, +N1,60764,sortie-6e224773-d7cb-417b-af4e-c1d71db610a1,https://biolit.fr/sorties/sortie-6e224773-d7cb-417b-af4e-c1d71db610a1/,LéoB,,1/21/2017 0:00,14.0000000,14.0000000,43.416866000000,6.744237000000,,Plage Base nature saint raphaël,51384,observation-6e224773-d7cb-417b-af4e-c1d71db610a1,https://biolit.fr/observations/observation-6e224773-d7cb-417b-af4e-c1d71db610a1/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_4730-scaled.jpg,,TRUE, +N1,60764,sortie-6e224773-d7cb-417b-af4e-c1d71db610a1,https://biolit.fr/sorties/sortie-6e224773-d7cb-417b-af4e-c1d71db610a1/,LéoB,,1/21/2017 0:00,14.0000000,14.0000000,43.416866000000,6.744237000000,,Plage Base nature saint raphaël,51386,observation-6e224773-d7cb-417b-af4e-c1d71db610a1-2,https://biolit.fr/observations/observation-6e224773-d7cb-417b-af4e-c1d71db610a1-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_4729-scaled.jpg,,TRUE, +N1,60764,sortie-6e224773-d7cb-417b-af4e-c1d71db610a1,https://biolit.fr/sorties/sortie-6e224773-d7cb-417b-af4e-c1d71db610a1/,LéoB,,1/21/2017 0:00,14.0000000,14.0000000,43.416866000000,6.744237000000,,Plage Base nature saint raphaël,51388,observation-6e224773-d7cb-417b-af4e-c1d71db610a1-3,https://biolit.fr/observations/observation-6e224773-d7cb-417b-af4e-c1d71db610a1-3/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4728-scaled.jpg,,TRUE, +N1,60764,sortie-6e224773-d7cb-417b-af4e-c1d71db610a1,https://biolit.fr/sorties/sortie-6e224773-d7cb-417b-af4e-c1d71db610a1/,LéoB,,1/21/2017 0:00,14.0000000,14.0000000,43.416866000000,6.744237000000,,Plage Base nature saint raphaël,51390,observation-6e224773-d7cb-417b-af4e-c1d71db610a1-4,https://biolit.fr/observations/observation-6e224773-d7cb-417b-af4e-c1d71db610a1-4/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4727-scaled.jpg,,TRUE, +N1,60764,sortie-6e224773-d7cb-417b-af4e-c1d71db610a1,https://biolit.fr/sorties/sortie-6e224773-d7cb-417b-af4e-c1d71db610a1/,LéoB,,1/21/2017 0:00,14.0000000,14.0000000,43.416866000000,6.744237000000,,Plage Base nature saint raphaël,51392,observation-6e224773-d7cb-417b-af4e-c1d71db610a1-5,https://biolit.fr/observations/observation-6e224773-d7cb-417b-af4e-c1d71db610a1-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4726-scaled.jpg,,FALSE, +N1,60764,sortie-6e224773-d7cb-417b-af4e-c1d71db610a1,https://biolit.fr/sorties/sortie-6e224773-d7cb-417b-af4e-c1d71db610a1/,LéoB,,1/21/2017 0:00,14.0000000,14.0000000,43.416866000000,6.744237000000,,Plage Base nature saint raphaël,51394,observation-6e224773-d7cb-417b-af4e-c1d71db610a1-6,https://biolit.fr/observations/observation-6e224773-d7cb-417b-af4e-c1d71db610a1-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4725-scaled.jpg,,FALSE, +N1,60764,sortie-6e224773-d7cb-417b-af4e-c1d71db610a1,https://biolit.fr/sorties/sortie-6e224773-d7cb-417b-af4e-c1d71db610a1/,LéoB,,1/21/2017 0:00,14.0000000,14.0000000,43.416866000000,6.744237000000,,Plage Base nature saint raphaël,51396,observation-6e224773-d7cb-417b-af4e-c1d71db610a1-7,https://biolit.fr/observations/observation-6e224773-d7cb-417b-af4e-c1d71db610a1-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4722-scaled.jpg,,FALSE, +N1,60764,sortie-6e224773-d7cb-417b-af4e-c1d71db610a1,https://biolit.fr/sorties/sortie-6e224773-d7cb-417b-af4e-c1d71db610a1/,LéoB,,1/21/2017 0:00,14.0000000,14.0000000,43.416866000000,6.744237000000,,Plage Base nature saint raphaël,51398,observation-6e224773-d7cb-417b-af4e-c1d71db610a1-8,https://biolit.fr/observations/observation-6e224773-d7cb-417b-af4e-c1d71db610a1-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4721-scaled.jpg,,FALSE, +N1,60764,sortie-6e224773-d7cb-417b-af4e-c1d71db610a1,https://biolit.fr/sorties/sortie-6e224773-d7cb-417b-af4e-c1d71db610a1/,LéoB,,1/21/2017 0:00,14.0000000,14.0000000,43.416866000000,6.744237000000,,Plage Base nature saint raphaël,51400,observation-6e224773-d7cb-417b-af4e-c1d71db610a1-9,https://biolit.fr/observations/observation-6e224773-d7cb-417b-af4e-c1d71db610a1-9/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4720-scaled.jpg,,TRUE, +N1,60764,sortie-6e224773-d7cb-417b-af4e-c1d71db610a1,https://biolit.fr/sorties/sortie-6e224773-d7cb-417b-af4e-c1d71db610a1/,LéoB,,1/21/2017 0:00,14.0000000,14.0000000,43.416866000000,6.744237000000,,Plage Base nature saint raphaël,51402,observation-6e224773-d7cb-417b-af4e-c1d71db610a1-10,https://biolit.fr/observations/observation-6e224773-d7cb-417b-af4e-c1d71db610a1-10/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4719-scaled.jpg,,TRUE, +N1,60765,sortie-9c79eb87-3291-4c1d-a4d4-106da5257a25,https://biolit.fr/sorties/sortie-9c79eb87-3291-4c1d-a4d4-106da5257a25/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.521293000000,7.032134000000,,"Pointe du Batéguier, île Sainte Marguerite",51404,observation-9c79eb87-3291-4c1d-a4d4-106da5257a25,https://biolit.fr/observations/observation-9c79eb87-3291-4c1d-a4d4-106da5257a25/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4286.JPG,,FALSE, +N1,60765,sortie-9c79eb87-3291-4c1d-a4d4-106da5257a25,https://biolit.fr/sorties/sortie-9c79eb87-3291-4c1d-a4d4-106da5257a25/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.521293000000,7.032134000000,,"Pointe du Batéguier, île Sainte Marguerite",51405,observation-9c79eb87-3291-4c1d-a4d4-106da5257a25-2,https://biolit.fr/observations/observation-9c79eb87-3291-4c1d-a4d4-106da5257a25-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4281.JPG,,FALSE, +N1,60765,sortie-9c79eb87-3291-4c1d-a4d4-106da5257a25,https://biolit.fr/sorties/sortie-9c79eb87-3291-4c1d-a4d4-106da5257a25/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.521293000000,7.032134000000,,"Pointe du Batéguier, île Sainte Marguerite",51406,observation-9c79eb87-3291-4c1d-a4d4-106da5257a25-3,https://biolit.fr/observations/observation-9c79eb87-3291-4c1d-a4d4-106da5257a25-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4252-scaled.jpg,,FALSE, +N1,60765,sortie-9c79eb87-3291-4c1d-a4d4-106da5257a25,https://biolit.fr/sorties/sortie-9c79eb87-3291-4c1d-a4d4-106da5257a25/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.521293000000,7.032134000000,,"Pointe du Batéguier, île Sainte Marguerite",51408,observation-9c79eb87-3291-4c1d-a4d4-106da5257a25-4,https://biolit.fr/observations/observation-9c79eb87-3291-4c1d-a4d4-106da5257a25-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4242-scaled.jpg,,FALSE, +N1,60766,sortie-64e2919a-6def-4c33-887e-4dc895ffaea7,https://biolit.fr/sorties/sortie-64e2919a-6def-4c33-887e-4dc895ffaea7/,Phil,,1/13/2017 0:00,13.0000000,13.0000000,47.802790000000,-4.212294000000,,Lesconil -Finistère,51410,observation-64e2919a-6def-4c33-887e-4dc895ffaea7,https://biolit.fr/observations/observation-64e2919a-6def-4c33-887e-4dc895ffaea7/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/P1050766.JPG,,TRUE, +N1,60766,sortie-64e2919a-6def-4c33-887e-4dc895ffaea7,https://biolit.fr/sorties/sortie-64e2919a-6def-4c33-887e-4dc895ffaea7/,Phil,,1/13/2017 0:00,13.0000000,13.0000000,47.802790000000,-4.212294000000,,Lesconil -Finistère,51412,observation-64e2919a-6def-4c33-887e-4dc895ffaea7-2,https://biolit.fr/observations/observation-64e2919a-6def-4c33-887e-4dc895ffaea7-2/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/P1050778.JPG,,TRUE, +N1,60766,sortie-64e2919a-6def-4c33-887e-4dc895ffaea7,https://biolit.fr/sorties/sortie-64e2919a-6def-4c33-887e-4dc895ffaea7/,Phil,,1/13/2017 0:00,13.0000000,13.0000000,47.802790000000,-4.212294000000,,Lesconil -Finistère,51414,observation-64e2919a-6def-4c33-887e-4dc895ffaea7-3,https://biolit.fr/observations/observation-64e2919a-6def-4c33-887e-4dc895ffaea7-3/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/P1050779.JPG,,TRUE, +N1,60766,sortie-64e2919a-6def-4c33-887e-4dc895ffaea7,https://biolit.fr/sorties/sortie-64e2919a-6def-4c33-887e-4dc895ffaea7/,Phil,,1/13/2017 0:00,13.0000000,13.0000000,47.802790000000,-4.212294000000,,Lesconil -Finistère,51416,observation-64e2919a-6def-4c33-887e-4dc895ffaea7-4,https://biolit.fr/observations/observation-64e2919a-6def-4c33-887e-4dc895ffaea7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050783.JPG,,FALSE, +N1,60766,sortie-64e2919a-6def-4c33-887e-4dc895ffaea7,https://biolit.fr/sorties/sortie-64e2919a-6def-4c33-887e-4dc895ffaea7/,Phil,,1/13/2017 0:00,13.0000000,13.0000000,47.802790000000,-4.212294000000,,Lesconil -Finistère,51418,observation-64e2919a-6def-4c33-887e-4dc895ffaea7-5,https://biolit.fr/observations/observation-64e2919a-6def-4c33-887e-4dc895ffaea7-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050784.JPG,,FALSE, +N1,60766,sortie-64e2919a-6def-4c33-887e-4dc895ffaea7,https://biolit.fr/sorties/sortie-64e2919a-6def-4c33-887e-4dc895ffaea7/,Phil,,1/13/2017 0:00,13.0000000,13.0000000,47.802790000000,-4.212294000000,,Lesconil -Finistère,51420,observation-64e2919a-6def-4c33-887e-4dc895ffaea7-6,https://biolit.fr/observations/observation-64e2919a-6def-4c33-887e-4dc895ffaea7-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050785.JPG,,FALSE, +N1,60767,sortie-b0a6068d-cc83-4a0e-8434-e8140078293a,https://biolit.fr/sorties/sortie-b0a6068d-cc83-4a0e-8434-e8140078293a/,Phil,,1/13/2017 0:00,12.0:25,12.0000000,47.79614500000,-4.179611000000,,Loctudy - Finistère,51422,observation-b0a6068d-cc83-4a0e-8434-e8140078293a,https://biolit.fr/observations/observation-b0a6068d-cc83-4a0e-8434-e8140078293a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050641.JPG,,FALSE, +N1,60767,sortie-b0a6068d-cc83-4a0e-8434-e8140078293a,https://biolit.fr/sorties/sortie-b0a6068d-cc83-4a0e-8434-e8140078293a/,Phil,,1/13/2017 0:00,12.0:25,12.0000000,47.79614500000,-4.179611000000,,Loctudy - Finistère,51424,observation-b0a6068d-cc83-4a0e-8434-e8140078293a-2,https://biolit.fr/observations/observation-b0a6068d-cc83-4a0e-8434-e8140078293a-2/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/P1050648.JPG,,TRUE, +N1,60767,sortie-b0a6068d-cc83-4a0e-8434-e8140078293a,https://biolit.fr/sorties/sortie-b0a6068d-cc83-4a0e-8434-e8140078293a/,Phil,,1/13/2017 0:00,12.0:25,12.0000000,47.79614500000,-4.179611000000,,Loctudy - Finistère,51426,observation-b0a6068d-cc83-4a0e-8434-e8140078293a-3,https://biolit.fr/observations/observation-b0a6068d-cc83-4a0e-8434-e8140078293a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050639.JPG,,FALSE, +N1,60767,sortie-b0a6068d-cc83-4a0e-8434-e8140078293a,https://biolit.fr/sorties/sortie-b0a6068d-cc83-4a0e-8434-e8140078293a/,Phil,,1/13/2017 0:00,12.0:25,12.0000000,47.79614500000,-4.179611000000,,Loctudy - Finistère,51428,observation-b0a6068d-cc83-4a0e-8434-e8140078293a-4,https://biolit.fr/observations/observation-b0a6068d-cc83-4a0e-8434-e8140078293a-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050633.JPG,,TRUE, +N1,60768,sortie-40542dc9-1fd8-4083-a921-23e7128722ca,https://biolit.fr/sorties/sortie-40542dc9-1fd8-4083-a921-23e7128722ca/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236201000000,5.360016000000,,plage de la bonne brise,51430,observation-40542dc9-1fd8-4083-a921-23e7128722ca,https://biolit.fr/observations/observation-40542dc9-1fd8-4083-a921-23e7128722ca/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0019_1-scaled.jpg,,FALSE, +N1,60768,sortie-40542dc9-1fd8-4083-a921-23e7128722ca,https://biolit.fr/sorties/sortie-40542dc9-1fd8-4083-a921-23e7128722ca/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236201000000,5.360016000000,,plage de la bonne brise,51432,observation-40542dc9-1fd8-4083-a921-23e7128722ca-2,https://biolit.fr/observations/observation-40542dc9-1fd8-4083-a921-23e7128722ca-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0021_0-scaled.jpg,,FALSE, +N1,60768,sortie-40542dc9-1fd8-4083-a921-23e7128722ca,https://biolit.fr/sorties/sortie-40542dc9-1fd8-4083-a921-23e7128722ca/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236201000000,5.360016000000,,plage de la bonne brise,51434,observation-40542dc9-1fd8-4083-a921-23e7128722ca-3,https://biolit.fr/observations/observation-40542dc9-1fd8-4083-a921-23e7128722ca-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0024_0-scaled.jpg,,FALSE, +N1,60768,sortie-40542dc9-1fd8-4083-a921-23e7128722ca,https://biolit.fr/sorties/sortie-40542dc9-1fd8-4083-a921-23e7128722ca/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236201000000,5.360016000000,,plage de la bonne brise,51436,observation-40542dc9-1fd8-4083-a921-23e7128722ca-4,https://biolit.fr/observations/observation-40542dc9-1fd8-4083-a921-23e7128722ca-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0025_0-scaled.jpg,,FALSE, +N1,60768,sortie-40542dc9-1fd8-4083-a921-23e7128722ca,https://biolit.fr/sorties/sortie-40542dc9-1fd8-4083-a921-23e7128722ca/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236201000000,5.360016000000,,plage de la bonne brise,51438,observation-40542dc9-1fd8-4083-a921-23e7128722ca-5,https://biolit.fr/observations/observation-40542dc9-1fd8-4083-a921-23e7128722ca-5/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0027-scaled.jpg,,TRUE, +N1,60768,sortie-40542dc9-1fd8-4083-a921-23e7128722ca,https://biolit.fr/sorties/sortie-40542dc9-1fd8-4083-a921-23e7128722ca/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236201000000,5.360016000000,,plage de la bonne brise,51440,observation-40542dc9-1fd8-4083-a921-23e7128722ca-6,https://biolit.fr/observations/observation-40542dc9-1fd8-4083-a921-23e7128722ca-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0030-scaled.jpg,,FALSE, +N1,60768,sortie-40542dc9-1fd8-4083-a921-23e7128722ca,https://biolit.fr/sorties/sortie-40542dc9-1fd8-4083-a921-23e7128722ca/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236201000000,5.360016000000,,plage de la bonne brise,51442,observation-40542dc9-1fd8-4083-a921-23e7128722ca-7,https://biolit.fr/observations/observation-40542dc9-1fd8-4083-a921-23e7128722ca-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0031-scaled.jpg,,FALSE, +N1,60768,sortie-40542dc9-1fd8-4083-a921-23e7128722ca,https://biolit.fr/sorties/sortie-40542dc9-1fd8-4083-a921-23e7128722ca/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236201000000,5.360016000000,,plage de la bonne brise,51444,observation-40542dc9-1fd8-4083-a921-23e7128722ca-8,https://biolit.fr/observations/observation-40542dc9-1fd8-4083-a921-23e7128722ca-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0033-scaled.jpg,,FALSE, +N1,60768,sortie-40542dc9-1fd8-4083-a921-23e7128722ca,https://biolit.fr/sorties/sortie-40542dc9-1fd8-4083-a921-23e7128722ca/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236201000000,5.360016000000,,plage de la bonne brise,51446,observation-40542dc9-1fd8-4083-a921-23e7128722ca-9,https://biolit.fr/observations/observation-40542dc9-1fd8-4083-a921-23e7128722ca-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0035.jpg,,FALSE, +N1,60768,sortie-40542dc9-1fd8-4083-a921-23e7128722ca,https://biolit.fr/sorties/sortie-40542dc9-1fd8-4083-a921-23e7128722ca/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236201000000,5.360016000000,,plage de la bonne brise,51447,observation-40542dc9-1fd8-4083-a921-23e7128722ca-10,https://biolit.fr/observations/observation-40542dc9-1fd8-4083-a921-23e7128722ca-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0040.jpg,,FALSE, +N1,60768,sortie-40542dc9-1fd8-4083-a921-23e7128722ca,https://biolit.fr/sorties/sortie-40542dc9-1fd8-4083-a921-23e7128722ca/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236201000000,5.360016000000,,plage de la bonne brise,51448,observation-40542dc9-1fd8-4083-a921-23e7128722ca-11,https://biolit.fr/observations/observation-40542dc9-1fd8-4083-a921-23e7128722ca-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0042-scaled.jpg,,FALSE, +N1,60768,sortie-40542dc9-1fd8-4083-a921-23e7128722ca,https://biolit.fr/sorties/sortie-40542dc9-1fd8-4083-a921-23e7128722ca/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236201000000,5.360016000000,,plage de la bonne brise,51450,observation-40542dc9-1fd8-4083-a921-23e7128722ca-12,https://biolit.fr/observations/observation-40542dc9-1fd8-4083-a921-23e7128722ca-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0043-scaled.jpg,,FALSE, +N1,60768,sortie-40542dc9-1fd8-4083-a921-23e7128722ca,https://biolit.fr/sorties/sortie-40542dc9-1fd8-4083-a921-23e7128722ca/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236201000000,5.360016000000,,plage de la bonne brise,51452,observation-40542dc9-1fd8-4083-a921-23e7128722ca-13,https://biolit.fr/observations/observation-40542dc9-1fd8-4083-a921-23e7128722ca-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0044-scaled.jpg,,FALSE, +N1,60768,sortie-40542dc9-1fd8-4083-a921-23e7128722ca,https://biolit.fr/sorties/sortie-40542dc9-1fd8-4083-a921-23e7128722ca/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236201000000,5.360016000000,,plage de la bonne brise,51454,observation-40542dc9-1fd8-4083-a921-23e7128722ca-14,https://biolit.fr/observations/observation-40542dc9-1fd8-4083-a921-23e7128722ca-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0046-scaled.jpg,,FALSE, +N1,60768,sortie-40542dc9-1fd8-4083-a921-23e7128722ca,https://biolit.fr/sorties/sortie-40542dc9-1fd8-4083-a921-23e7128722ca/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236201000000,5.360016000000,,plage de la bonne brise,51456,observation-40542dc9-1fd8-4083-a921-23e7128722ca-15,https://biolit.fr/observations/observation-40542dc9-1fd8-4083-a921-23e7128722ca-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0050-scaled.jpg,,FALSE, +N1,60769,sortie-de852166-a81f-43bb-9aa7-0921c320499d,https://biolit.fr/sorties/sortie-de852166-a81f-43bb-9aa7-0921c320499d/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236018000000,5.360026000000,,plage de la bonne brise,51458,observation-de852166-a81f-43bb-9aa7-0921c320499d,https://biolit.fr/observations/observation-de852166-a81f-43bb-9aa7-0921c320499d/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0003-scaled.jpg,,FALSE, +N1,60769,sortie-de852166-a81f-43bb-9aa7-0921c320499d,https://biolit.fr/sorties/sortie-de852166-a81f-43bb-9aa7-0921c320499d/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236018000000,5.360026000000,,plage de la bonne brise,51460,observation-de852166-a81f-43bb-9aa7-0921c320499d-2,https://biolit.fr/observations/observation-de852166-a81f-43bb-9aa7-0921c320499d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0004-scaled.jpg,,FALSE, +N1,60769,sortie-de852166-a81f-43bb-9aa7-0921c320499d,https://biolit.fr/sorties/sortie-de852166-a81f-43bb-9aa7-0921c320499d/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236018000000,5.360026000000,,plage de la bonne brise,51462,observation-de852166-a81f-43bb-9aa7-0921c320499d-3,https://biolit.fr/observations/observation-de852166-a81f-43bb-9aa7-0921c320499d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0006-scaled.jpg,,FALSE, +N1,60769,sortie-de852166-a81f-43bb-9aa7-0921c320499d,https://biolit.fr/sorties/sortie-de852166-a81f-43bb-9aa7-0921c320499d/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236018000000,5.360026000000,,plage de la bonne brise,51464,observation-de852166-a81f-43bb-9aa7-0921c320499d-4,https://biolit.fr/observations/observation-de852166-a81f-43bb-9aa7-0921c320499d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0009-scaled.jpg,,FALSE, +N1,60769,sortie-de852166-a81f-43bb-9aa7-0921c320499d,https://biolit.fr/sorties/sortie-de852166-a81f-43bb-9aa7-0921c320499d/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236018000000,5.360026000000,,plage de la bonne brise,51465,observation-de852166-a81f-43bb-9aa7-0921c320499d-5,https://biolit.fr/observations/observation-de852166-a81f-43bb-9aa7-0921c320499d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0007.jpg,,FALSE, +N1,60769,sortie-de852166-a81f-43bb-9aa7-0921c320499d,https://biolit.fr/sorties/sortie-de852166-a81f-43bb-9aa7-0921c320499d/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236018000000,5.360026000000,,plage de la bonne brise,51466,observation-de852166-a81f-43bb-9aa7-0921c320499d-6,https://biolit.fr/observations/observation-de852166-a81f-43bb-9aa7-0921c320499d-6/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0010-scaled.jpg,,TRUE, +N1,60769,sortie-de852166-a81f-43bb-9aa7-0921c320499d,https://biolit.fr/sorties/sortie-de852166-a81f-43bb-9aa7-0921c320499d/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236018000000,5.360026000000,,plage de la bonne brise,51468,observation-de852166-a81f-43bb-9aa7-0921c320499d-7,https://biolit.fr/observations/observation-de852166-a81f-43bb-9aa7-0921c320499d-7/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0014_0-scaled.jpg,,TRUE, +N1,60769,sortie-de852166-a81f-43bb-9aa7-0921c320499d,https://biolit.fr/sorties/sortie-de852166-a81f-43bb-9aa7-0921c320499d/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236018000000,5.360026000000,,plage de la bonne brise,51470,observation-de852166-a81f-43bb-9aa7-0921c320499d-8,https://biolit.fr/observations/observation-de852166-a81f-43bb-9aa7-0921c320499d-8/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0016-scaled.jpg,,TRUE, +N1,60770,sortie-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c,https://biolit.fr/sorties/sortie-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c/,NVanzu,,1/19/2017 0:00,14.0000000,15.0000000,43.233338000000,5.356334000000,,Plage de la bonne brise,51472,observation-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c,https://biolit.fr/observations/observation-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/P1190094-scaled.jpg,,TRUE, +N1,60770,sortie-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c,https://biolit.fr/sorties/sortie-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c/,NVanzu,,1/19/2017 0:00,14.0000000,15.0000000,43.233338000000,5.356334000000,,Plage de la bonne brise,51474,observation-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c-2,https://biolit.fr/observations/observation-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1190095-scaled.jpg,,FALSE, +N1,60770,sortie-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c,https://biolit.fr/sorties/sortie-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c/,NVanzu,,1/19/2017 0:00,14.0000000,15.0000000,43.233338000000,5.356334000000,,Plage de la bonne brise,51476,observation-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c-3,https://biolit.fr/observations/observation-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c-3/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/P1190096-scaled.jpg,,TRUE, +N1,60770,sortie-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c,https://biolit.fr/sorties/sortie-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c/,NVanzu,,1/19/2017 0:00,14.0000000,15.0000000,43.233338000000,5.356334000000,,Plage de la bonne brise,51478,observation-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c-4,https://biolit.fr/observations/observation-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c-4/,Halopteris scoparia,Algue balai,,https://biolit.fr/wp-content/uploads/2023/07/P1190098-scaled.jpg,,TRUE, +N1,60770,sortie-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c,https://biolit.fr/sorties/sortie-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c/,NVanzu,,1/19/2017 0:00,14.0000000,15.0000000,43.233338000000,5.356334000000,,Plage de la bonne brise,51480,observation-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c-5,https://biolit.fr/observations/observation-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1190099-scaled.jpg,,FALSE, +N1,60770,sortie-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c,https://biolit.fr/sorties/sortie-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c/,NVanzu,,1/19/2017 0:00,14.0000000,15.0000000,43.233338000000,5.356334000000,,Plage de la bonne brise,51482,observation-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c-6,https://biolit.fr/observations/observation-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c-6/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/P1190100-scaled.jpg,,TRUE, +N1,60770,sortie-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c,https://biolit.fr/sorties/sortie-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c/,NVanzu,,1/19/2017 0:00,14.0000000,15.0000000,43.233338000000,5.356334000000,,Plage de la bonne brise,51484,observation-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c-7,https://biolit.fr/observations/observation-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1190102-scaled.jpg,,FALSE, +N1,60771,sortie-3c3fb9d4-f8fa-4c2e-8ab7-d0a27833687d,https://biolit.fr/sorties/sortie-3c3fb9d4-f8fa-4c2e-8ab7-d0a27833687d/,Phil,,1/13/2017 0:00,12.0:15,12.0000000,47.796391000000,-4.179122000000,,Loctudy - Finistère,51486,observation-3c3fb9d4-f8fa-4c2e-8ab7-d0a27833687d,https://biolit.fr/observations/observation-3c3fb9d4-f8fa-4c2e-8ab7-d0a27833687d/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050611.JPG,,TRUE, +N1,60771,sortie-3c3fb9d4-f8fa-4c2e-8ab7-d0a27833687d,https://biolit.fr/sorties/sortie-3c3fb9d4-f8fa-4c2e-8ab7-d0a27833687d/,Phil,,1/13/2017 0:00,12.0:15,12.0000000,47.796391000000,-4.179122000000,,Loctudy - Finistère,51488,observation-3c3fb9d4-f8fa-4c2e-8ab7-d0a27833687d-2,https://biolit.fr/observations/observation-3c3fb9d4-f8fa-4c2e-8ab7-d0a27833687d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050620.JPG,,FALSE, +N1,60772,sortie-c03526c9-cab9-4ede-896b-1a19f999a695,https://biolit.fr/sorties/sortie-c03526c9-cab9-4ede-896b-1a19f999a695/,Phil,,12/13/2016 0:00,12.0:35,12.0000000,48.106613000000,-4.415104000000,,Poullan sur Mer - Finistère,51490,observation-c03526c9-cab9-4ede-896b-1a19f999a695,https://biolit.fr/observations/observation-c03526c9-cab9-4ede-896b-1a19f999a695/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050198.JPG,,FALSE, +N1,60772,sortie-c03526c9-cab9-4ede-896b-1a19f999a695,https://biolit.fr/sorties/sortie-c03526c9-cab9-4ede-896b-1a19f999a695/,Phil,,12/13/2016 0:00,12.0:35,12.0000000,48.106613000000,-4.415104000000,,Poullan sur Mer - Finistère,51492,observation-c03526c9-cab9-4ede-896b-1a19f999a695-2,https://biolit.fr/observations/observation-c03526c9-cab9-4ede-896b-1a19f999a695-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050199.JPG,,FALSE, +N1,60773,sortie-7cc1c7d1-eca0-40ce-96ab-035eb8f09eec,https://biolit.fr/sorties/sortie-7cc1c7d1-eca0-40ce-96ab-035eb8f09eec/,Phil,,1/13/2017 0:00,12.0000000,12.0:15,47.797440000000,-4.177989000000,,Loctudy - Finistère,51494,observation-7cc1c7d1-eca0-40ce-96ab-035eb8f09eec,https://biolit.fr/observations/observation-7cc1c7d1-eca0-40ce-96ab-035eb8f09eec/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/P1050600.JPG,,TRUE, +N1,60773,sortie-7cc1c7d1-eca0-40ce-96ab-035eb8f09eec,https://biolit.fr/sorties/sortie-7cc1c7d1-eca0-40ce-96ab-035eb8f09eec/,Phil,,1/13/2017 0:00,12.0000000,12.0:15,47.797440000000,-4.177989000000,,Loctudy - Finistère,51496,observation-7cc1c7d1-eca0-40ce-96ab-035eb8f09eec-2,https://biolit.fr/observations/observation-7cc1c7d1-eca0-40ce-96ab-035eb8f09eec-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050607.JPG,,FALSE, +N1,60773,sortie-7cc1c7d1-eca0-40ce-96ab-035eb8f09eec,https://biolit.fr/sorties/sortie-7cc1c7d1-eca0-40ce-96ab-035eb8f09eec/,Phil,,1/13/2017 0:00,12.0000000,12.0:15,47.797440000000,-4.177989000000,,Loctudy - Finistère,51498,observation-7cc1c7d1-eca0-40ce-96ab-035eb8f09eec-3,https://biolit.fr/observations/observation-7cc1c7d1-eca0-40ce-96ab-035eb8f09eec-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050605.JPG,,FALSE, +N1,60774,sortie-ee1d59c3-8597-4627-8d94-406797ed2168,https://biolit.fr/sorties/sortie-ee1d59c3-8597-4627-8d94-406797ed2168/,Phil,,1/13/2017 0:00,12.0000000,12.0000000,47.797731000000,-4.178075000000,,Loctudy - Finistère,51500,observation-ee1d59c3-8597-4627-8d94-406797ed2168,https://biolit.fr/observations/observation-ee1d59c3-8597-4627-8d94-406797ed2168/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050594.JPG,,FALSE, +N1,60774,sortie-ee1d59c3-8597-4627-8d94-406797ed2168,https://biolit.fr/sorties/sortie-ee1d59c3-8597-4627-8d94-406797ed2168/,Phil,,1/13/2017 0:00,12.0000000,12.0000000,47.797731000000,-4.178075000000,,Loctudy - Finistère,51502,observation-ee1d59c3-8597-4627-8d94-406797ed2168-2,https://biolit.fr/observations/observation-ee1d59c3-8597-4627-8d94-406797ed2168-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050593.JPG,,FALSE, +N1,60774,sortie-ee1d59c3-8597-4627-8d94-406797ed2168,https://biolit.fr/sorties/sortie-ee1d59c3-8597-4627-8d94-406797ed2168/,Phil,,1/13/2017 0:00,12.0000000,12.0000000,47.797731000000,-4.178075000000,,Loctudy - Finistère,51504,observation-ee1d59c3-8597-4627-8d94-406797ed2168-3,https://biolit.fr/observations/observation-ee1d59c3-8597-4627-8d94-406797ed2168-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050591.JPG,,FALSE, +N1,60775,sortie-69340416-48ce-4b3a-acee-09e720e5cf4a,https://biolit.fr/sorties/sortie-69340416-48ce-4b3a-acee-09e720e5cf4a/,Phil,,12/18/2016 0:00,16.0:25,16.0000000,47.939714000000,-4.403757000000,,Pouldreuzic - Finistère,51506,observation-69340416-48ce-4b3a-acee-09e720e5cf4a,https://biolit.fr/observations/observation-69340416-48ce-4b3a-acee-09e720e5cf4a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050543.JPG,,FALSE, +N1,60776,sortie-dcf475d8-402a-4a3f-b477-eeef6ec92d1e,https://biolit.fr/sorties/sortie-dcf475d8-402a-4a3f-b477-eeef6ec92d1e/,Phil,,01/11/2017,14.0:25,14.0:35,47.835895000000,-4.166938000000,,Loctudy - Finistère,51508,observation-dcf475d8-402a-4a3f-b477-eeef6ec92d1e,https://biolit.fr/observations/observation-dcf475d8-402a-4a3f-b477-eeef6ec92d1e/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20170111_143340.jpg,,TRUE, +N1,60776,sortie-dcf475d8-402a-4a3f-b477-eeef6ec92d1e,https://biolit.fr/sorties/sortie-dcf475d8-402a-4a3f-b477-eeef6ec92d1e/,Phil,,01/11/2017,14.0:25,14.0:35,47.835895000000,-4.166938000000,,Loctudy - Finistère,51510,observation-dcf475d8-402a-4a3f-b477-eeef6ec92d1e-2,https://biolit.fr/observations/observation-dcf475d8-402a-4a3f-b477-eeef6ec92d1e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170111_142332.jpg,,FALSE, +N1,60776,sortie-dcf475d8-402a-4a3f-b477-eeef6ec92d1e,https://biolit.fr/sorties/sortie-dcf475d8-402a-4a3f-b477-eeef6ec92d1e/,Phil,,01/11/2017,14.0:25,14.0:35,47.835895000000,-4.166938000000,,Loctudy - Finistère,51512,observation-dcf475d8-402a-4a3f-b477-eeef6ec92d1e-3,https://biolit.fr/observations/observation-dcf475d8-402a-4a3f-b477-eeef6ec92d1e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170111_142710.jpg,,FALSE, +N1,60776,sortie-dcf475d8-402a-4a3f-b477-eeef6ec92d1e,https://biolit.fr/sorties/sortie-dcf475d8-402a-4a3f-b477-eeef6ec92d1e/,Phil,,01/11/2017,14.0:25,14.0:35,47.835895000000,-4.166938000000,,Loctudy - Finistère,51514,observation-dcf475d8-402a-4a3f-b477-eeef6ec92d1e-4,https://biolit.fr/observations/observation-dcf475d8-402a-4a3f-b477-eeef6ec92d1e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170111_142737.jpg,,FALSE, +N1,60776,sortie-dcf475d8-402a-4a3f-b477-eeef6ec92d1e,https://biolit.fr/sorties/sortie-dcf475d8-402a-4a3f-b477-eeef6ec92d1e/,Phil,,01/11/2017,14.0:25,14.0:35,47.835895000000,-4.166938000000,,Loctudy - Finistère,51516,observation-dcf475d8-402a-4a3f-b477-eeef6ec92d1e-5,https://biolit.fr/observations/observation-dcf475d8-402a-4a3f-b477-eeef6ec92d1e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170111_143120.jpg,,FALSE, +N1,60776,sortie-dcf475d8-402a-4a3f-b477-eeef6ec92d1e,https://biolit.fr/sorties/sortie-dcf475d8-402a-4a3f-b477-eeef6ec92d1e/,Phil,,01/11/2017,14.0:25,14.0:35,47.835895000000,-4.166938000000,,Loctudy - Finistère,51518,observation-dcf475d8-402a-4a3f-b477-eeef6ec92d1e-6,https://biolit.fr/observations/observation-dcf475d8-402a-4a3f-b477-eeef6ec92d1e-6/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20170111_143159.jpg,,TRUE, +N1,60777,sortie-0f280249-af25-4373-a9e9-b8dfc78048f7,https://biolit.fr/sorties/sortie-0f280249-af25-4373-a9e9-b8dfc78048f7/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253579000000,5.374304000000,,plage Borely,51520,observation-0f280249-af25-4373-a9e9-b8dfc78048f7,https://biolit.fr/observations/observation-0f280249-af25-4373-a9e9-b8dfc78048f7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0720-scaled.jpg,,FALSE, +N1,60777,sortie-0f280249-af25-4373-a9e9-b8dfc78048f7,https://biolit.fr/sorties/sortie-0f280249-af25-4373-a9e9-b8dfc78048f7/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253579000000,5.374304000000,,plage Borely,51522,observation-0f280249-af25-4373-a9e9-b8dfc78048f7-2,https://biolit.fr/observations/observation-0f280249-af25-4373-a9e9-b8dfc78048f7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0721-scaled.jpg,,FALSE, +N1,60777,sortie-0f280249-af25-4373-a9e9-b8dfc78048f7,https://biolit.fr/sorties/sortie-0f280249-af25-4373-a9e9-b8dfc78048f7/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253579000000,5.374304000000,,plage Borely,51524,observation-0f280249-af25-4373-a9e9-b8dfc78048f7-3,https://biolit.fr/observations/observation-0f280249-af25-4373-a9e9-b8dfc78048f7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0727-scaled.jpg,,FALSE, +N1,60777,sortie-0f280249-af25-4373-a9e9-b8dfc78048f7,https://biolit.fr/sorties/sortie-0f280249-af25-4373-a9e9-b8dfc78048f7/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253579000000,5.374304000000,,plage Borely,51526,observation-0f280249-af25-4373-a9e9-b8dfc78048f7-4,https://biolit.fr/observations/observation-0f280249-af25-4373-a9e9-b8dfc78048f7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0728-scaled.jpg,,FALSE, +N1,60777,sortie-0f280249-af25-4373-a9e9-b8dfc78048f7,https://biolit.fr/sorties/sortie-0f280249-af25-4373-a9e9-b8dfc78048f7/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253579000000,5.374304000000,,plage Borely,51528,observation-0f280249-af25-4373-a9e9-b8dfc78048f7-5,https://biolit.fr/observations/observation-0f280249-af25-4373-a9e9-b8dfc78048f7-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0729-scaled.jpg,,FALSE, +N1,60777,sortie-0f280249-af25-4373-a9e9-b8dfc78048f7,https://biolit.fr/sorties/sortie-0f280249-af25-4373-a9e9-b8dfc78048f7/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253579000000,5.374304000000,,plage Borely,51530,observation-0f280249-af25-4373-a9e9-b8dfc78048f7-6,https://biolit.fr/observations/observation-0f280249-af25-4373-a9e9-b8dfc78048f7-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0730-scaled.jpg,,FALSE, +N1,60778,sortie-a9022b65-a71b-4125-b78e-356ff98af9dc,https://biolit.fr/sorties/sortie-a9022b65-a71b-4125-b78e-356ff98af9dc/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253704000000,5.374422000000,,plage Borely,51532,observation-a9022b65-a71b-4125-b78e-356ff98af9dc,https://biolit.fr/observations/observation-a9022b65-a71b-4125-b78e-356ff98af9dc/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0702-scaled.jpg,,FALSE, +N1,60778,sortie-a9022b65-a71b-4125-b78e-356ff98af9dc,https://biolit.fr/sorties/sortie-a9022b65-a71b-4125-b78e-356ff98af9dc/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253704000000,5.374422000000,,plage Borely,51534,observation-a9022b65-a71b-4125-b78e-356ff98af9dc-2,https://biolit.fr/observations/observation-a9022b65-a71b-4125-b78e-356ff98af9dc-2/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0715-scaled.jpg,,TRUE, +N1,60778,sortie-a9022b65-a71b-4125-b78e-356ff98af9dc,https://biolit.fr/sorties/sortie-a9022b65-a71b-4125-b78e-356ff98af9dc/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253704000000,5.374422000000,,plage Borely,51536,observation-a9022b65-a71b-4125-b78e-356ff98af9dc-3,https://biolit.fr/observations/observation-a9022b65-a71b-4125-b78e-356ff98af9dc-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0718-scaled.jpg,,FALSE, +N1,60778,sortie-a9022b65-a71b-4125-b78e-356ff98af9dc,https://biolit.fr/sorties/sortie-a9022b65-a71b-4125-b78e-356ff98af9dc/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253704000000,5.374422000000,,plage Borely,51538,observation-a9022b65-a71b-4125-b78e-356ff98af9dc-4,https://biolit.fr/observations/observation-a9022b65-a71b-4125-b78e-356ff98af9dc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0716-scaled.jpg,,FALSE, +N1,60778,sortie-a9022b65-a71b-4125-b78e-356ff98af9dc,https://biolit.fr/sorties/sortie-a9022b65-a71b-4125-b78e-356ff98af9dc/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253704000000,5.374422000000,,plage Borely,51540,observation-a9022b65-a71b-4125-b78e-356ff98af9dc-5,https://biolit.fr/observations/observation-a9022b65-a71b-4125-b78e-356ff98af9dc-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0717-scaled.jpg,,FALSE, +N1,60778,sortie-a9022b65-a71b-4125-b78e-356ff98af9dc,https://biolit.fr/sorties/sortie-a9022b65-a71b-4125-b78e-356ff98af9dc/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253704000000,5.374422000000,,plage Borely,51542,observation-a9022b65-a71b-4125-b78e-356ff98af9dc-6,https://biolit.fr/observations/observation-a9022b65-a71b-4125-b78e-356ff98af9dc-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0719-scaled.jpg,,FALSE, +N1,60779,sortie-0be73cba-ad80-44d1-92f7-7478cbdd8754,https://biolit.fr/sorties/sortie-0be73cba-ad80-44d1-92f7-7478cbdd8754/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253625000000,5.374433000000,,plage Borely,51544,observation-0be73cba-ad80-44d1-92f7-7478cbdd8754,https://biolit.fr/observations/observation-0be73cba-ad80-44d1-92f7-7478cbdd8754/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0673-scaled.jpg,,FALSE, +N1,60779,sortie-0be73cba-ad80-44d1-92f7-7478cbdd8754,https://biolit.fr/sorties/sortie-0be73cba-ad80-44d1-92f7-7478cbdd8754/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253625000000,5.374433000000,,plage Borely,51546,observation-0be73cba-ad80-44d1-92f7-7478cbdd8754-2,https://biolit.fr/observations/observation-0be73cba-ad80-44d1-92f7-7478cbdd8754-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0675-scaled.jpg,,FALSE, +N1,60779,sortie-0be73cba-ad80-44d1-92f7-7478cbdd8754,https://biolit.fr/sorties/sortie-0be73cba-ad80-44d1-92f7-7478cbdd8754/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253625000000,5.374433000000,,plage Borely,51548,observation-0be73cba-ad80-44d1-92f7-7478cbdd8754-3,https://biolit.fr/observations/observation-0be73cba-ad80-44d1-92f7-7478cbdd8754-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0677-scaled.jpg,,FALSE, +N1,60779,sortie-0be73cba-ad80-44d1-92f7-7478cbdd8754,https://biolit.fr/sorties/sortie-0be73cba-ad80-44d1-92f7-7478cbdd8754/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253625000000,5.374433000000,,plage Borely,51550,observation-0be73cba-ad80-44d1-92f7-7478cbdd8754-4,https://biolit.fr/observations/observation-0be73cba-ad80-44d1-92f7-7478cbdd8754-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0680-scaled.jpg,,FALSE, +N1,60779,sortie-0be73cba-ad80-44d1-92f7-7478cbdd8754,https://biolit.fr/sorties/sortie-0be73cba-ad80-44d1-92f7-7478cbdd8754/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253625000000,5.374433000000,,plage Borely,51552,observation-0be73cba-ad80-44d1-92f7-7478cbdd8754-5,https://biolit.fr/observations/observation-0be73cba-ad80-44d1-92f7-7478cbdd8754-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0684-scaled.jpg,,FALSE, +N1,60779,sortie-0be73cba-ad80-44d1-92f7-7478cbdd8754,https://biolit.fr/sorties/sortie-0be73cba-ad80-44d1-92f7-7478cbdd8754/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253625000000,5.374433000000,,plage Borely,51554,observation-0be73cba-ad80-44d1-92f7-7478cbdd8754-6,https://biolit.fr/observations/observation-0be73cba-ad80-44d1-92f7-7478cbdd8754-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0687-scaled.jpg,,FALSE, +N1,60780,sortie-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3,https://biolit.fr/sorties/sortie-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253610000000,5.374529000000,,plage Borely,51556,observation-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3,https://biolit.fr/observations/observation-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0654-scaled.jpg,,FALSE, +N1,60780,sortie-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3,https://biolit.fr/sorties/sortie-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253610000000,5.374529000000,,plage Borely,51558,observation-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3-2,https://biolit.fr/observations/observation-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0655-scaled.jpg,,FALSE, +N1,60780,sortie-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3,https://biolit.fr/sorties/sortie-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253610000000,5.374529000000,,plage Borely,51560,observation-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3-3,https://biolit.fr/observations/observation-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0659-scaled.jpg,,FALSE, +N1,60780,sortie-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3,https://biolit.fr/sorties/sortie-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253610000000,5.374529000000,,plage Borely,51562,observation-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3-4,https://biolit.fr/observations/observation-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0662-scaled.jpg,,FALSE, +N1,60780,sortie-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3,https://biolit.fr/sorties/sortie-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253610000000,5.374529000000,,plage Borely,51564,observation-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3-5,https://biolit.fr/observations/observation-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0661-scaled.jpg,,FALSE, +N1,60781,sortie-9ebd3acb-6d26-475b-b551-5d896a3b4b87,https://biolit.fr/sorties/sortie-9ebd3acb-6d26-475b-b551-5d896a3b4b87/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253516000000,5.374379000000,,plage Borely,51566,observation-9ebd3acb-6d26-475b-b551-5d896a3b4b87,https://biolit.fr/observations/observation-9ebd3acb-6d26-475b-b551-5d896a3b4b87/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0648-scaled.jpg,,FALSE, +N1,60781,sortie-9ebd3acb-6d26-475b-b551-5d896a3b4b87,https://biolit.fr/sorties/sortie-9ebd3acb-6d26-475b-b551-5d896a3b4b87/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253516000000,5.374379000000,,plage Borely,51568,observation-9ebd3acb-6d26-475b-b551-5d896a3b4b87-2,https://biolit.fr/observations/observation-9ebd3acb-6d26-475b-b551-5d896a3b4b87-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0650-scaled.jpg,,FALSE, +N1,60781,sortie-9ebd3acb-6d26-475b-b551-5d896a3b4b87,https://biolit.fr/sorties/sortie-9ebd3acb-6d26-475b-b551-5d896a3b4b87/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253516000000,5.374379000000,,plage Borely,51570,observation-9ebd3acb-6d26-475b-b551-5d896a3b4b87-3,https://biolit.fr/observations/observation-9ebd3acb-6d26-475b-b551-5d896a3b4b87-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0651-scaled.jpg,,FALSE, +N1,60781,sortie-9ebd3acb-6d26-475b-b551-5d896a3b4b87,https://biolit.fr/sorties/sortie-9ebd3acb-6d26-475b-b551-5d896a3b4b87/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253516000000,5.374379000000,,plage Borely,51572,observation-9ebd3acb-6d26-475b-b551-5d896a3b4b87-4,https://biolit.fr/observations/observation-9ebd3acb-6d26-475b-b551-5d896a3b4b87-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0652-scaled.jpg,,FALSE, +N1,60781,sortie-9ebd3acb-6d26-475b-b551-5d896a3b4b87,https://biolit.fr/sorties/sortie-9ebd3acb-6d26-475b-b551-5d896a3b4b87/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253516000000,5.374379000000,,plage Borely,51574,observation-9ebd3acb-6d26-475b-b551-5d896a3b4b87-5,https://biolit.fr/observations/observation-9ebd3acb-6d26-475b-b551-5d896a3b4b87-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0653-scaled.jpg,,FALSE, +N1,60782,sortie-ebacf119-a24a-4535-9284-cafd30b260ab,https://biolit.fr/sorties/sortie-ebacf119-a24a-4535-9284-cafd30b260ab/,NVanzu,,01/12/2017,14.0000000,16.0000000,43.253363000000,5.374189000000,,Plage borély,51576,observation-ebacf119-a24a-4535-9284-cafd30b260ab,https://biolit.fr/observations/observation-ebacf119-a24a-4535-9284-cafd30b260ab/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120069-scaled.jpg,,FALSE, +N1,60782,sortie-ebacf119-a24a-4535-9284-cafd30b260ab,https://biolit.fr/sorties/sortie-ebacf119-a24a-4535-9284-cafd30b260ab/,NVanzu,,01/12/2017,14.0000000,16.0000000,43.253363000000,5.374189000000,,Plage borély,51578,observation-ebacf119-a24a-4535-9284-cafd30b260ab-2,https://biolit.fr/observations/observation-ebacf119-a24a-4535-9284-cafd30b260ab-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120070-scaled.jpg,,FALSE, +N1,60782,sortie-ebacf119-a24a-4535-9284-cafd30b260ab,https://biolit.fr/sorties/sortie-ebacf119-a24a-4535-9284-cafd30b260ab/,NVanzu,,01/12/2017,14.0000000,16.0000000,43.253363000000,5.374189000000,,Plage borély,51580,observation-ebacf119-a24a-4535-9284-cafd30b260ab-3,https://biolit.fr/observations/observation-ebacf119-a24a-4535-9284-cafd30b260ab-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120071-scaled.jpg,,FALSE, +N1,60782,sortie-ebacf119-a24a-4535-9284-cafd30b260ab,https://biolit.fr/sorties/sortie-ebacf119-a24a-4535-9284-cafd30b260ab/,NVanzu,,01/12/2017,14.0000000,16.0000000,43.253363000000,5.374189000000,,Plage borély,51582,observation-ebacf119-a24a-4535-9284-cafd30b260ab-4,https://biolit.fr/observations/observation-ebacf119-a24a-4535-9284-cafd30b260ab-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120072-scaled.jpg,,FALSE, +N1,60782,sortie-ebacf119-a24a-4535-9284-cafd30b260ab,https://biolit.fr/sorties/sortie-ebacf119-a24a-4535-9284-cafd30b260ab/,NVanzu,,01/12/2017,14.0000000,16.0000000,43.253363000000,5.374189000000,,Plage borély,51584,observation-ebacf119-a24a-4535-9284-cafd30b260ab-5,https://biolit.fr/observations/observation-ebacf119-a24a-4535-9284-cafd30b260ab-5/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/P1120073-scaled.jpg,,TRUE, +N1,60782,sortie-ebacf119-a24a-4535-9284-cafd30b260ab,https://biolit.fr/sorties/sortie-ebacf119-a24a-4535-9284-cafd30b260ab/,NVanzu,,01/12/2017,14.0000000,16.0000000,43.253363000000,5.374189000000,,Plage borély,51586,observation-ebacf119-a24a-4535-9284-cafd30b260ab-6,https://biolit.fr/observations/observation-ebacf119-a24a-4535-9284-cafd30b260ab-6/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/P1120074-scaled.jpg,,TRUE, +N1,60782,sortie-ebacf119-a24a-4535-9284-cafd30b260ab,https://biolit.fr/sorties/sortie-ebacf119-a24a-4535-9284-cafd30b260ab/,NVanzu,,01/12/2017,14.0000000,16.0000000,43.253363000000,5.374189000000,,Plage borély,51588,observation-ebacf119-a24a-4535-9284-cafd30b260ab-7,https://biolit.fr/observations/observation-ebacf119-a24a-4535-9284-cafd30b260ab-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120092-scaled.jpg,,FALSE, +N1,60782,sortie-ebacf119-a24a-4535-9284-cafd30b260ab,https://biolit.fr/sorties/sortie-ebacf119-a24a-4535-9284-cafd30b260ab/,NVanzu,,01/12/2017,14.0000000,16.0000000,43.253363000000,5.374189000000,,Plage borély,51590,observation-ebacf119-a24a-4535-9284-cafd30b260ab-8,https://biolit.fr/observations/observation-ebacf119-a24a-4535-9284-cafd30b260ab-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120082-scaled.jpg,,FALSE, +N1,60783,sortie-5a3f970b-23e5-4683-95cb-a6286d2aa008,https://biolit.fr/sorties/sortie-5a3f970b-23e5-4683-95cb-a6286d2aa008/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253516000000,5.37455100000,,plage Borely,51592,observation-5a3f970b-23e5-4683-95cb-a6286d2aa008,https://biolit.fr/observations/observation-5a3f970b-23e5-4683-95cb-a6286d2aa008/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0642-scaled.jpg,,FALSE, +N1,60783,sortie-5a3f970b-23e5-4683-95cb-a6286d2aa008,https://biolit.fr/sorties/sortie-5a3f970b-23e5-4683-95cb-a6286d2aa008/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253516000000,5.37455100000,,plage Borely,51594,observation-5a3f970b-23e5-4683-95cb-a6286d2aa008-2,https://biolit.fr/observations/observation-5a3f970b-23e5-4683-95cb-a6286d2aa008-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0643-scaled.jpg,,FALSE, +N1,60783,sortie-5a3f970b-23e5-4683-95cb-a6286d2aa008,https://biolit.fr/sorties/sortie-5a3f970b-23e5-4683-95cb-a6286d2aa008/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253516000000,5.37455100000,,plage Borely,51596,observation-5a3f970b-23e5-4683-95cb-a6286d2aa008-3,https://biolit.fr/observations/observation-5a3f970b-23e5-4683-95cb-a6286d2aa008-3/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0645-scaled.jpg,,TRUE, +N1,60783,sortie-5a3f970b-23e5-4683-95cb-a6286d2aa008,https://biolit.fr/sorties/sortie-5a3f970b-23e5-4683-95cb-a6286d2aa008/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253516000000,5.37455100000,,plage Borely,51598,observation-5a3f970b-23e5-4683-95cb-a6286d2aa008-4,https://biolit.fr/observations/observation-5a3f970b-23e5-4683-95cb-a6286d2aa008-4/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0646-scaled.jpg,,TRUE, +N1,60784,sortie-04d2e072-b822-4160-b5b3-58aedb4b6059,https://biolit.fr/sorties/sortie-04d2e072-b822-4160-b5b3-58aedb4b6059/,ludovic,,01/12/2017,16.0000000,18.0000000,43.253547000000,5.374465000000,,plage Borely,51600,observation-04d2e072-b822-4160-b5b3-58aedb4b6059,https://biolit.fr/observations/observation-04d2e072-b822-4160-b5b3-58aedb4b6059/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0631-scaled.jpg,,FALSE, +N1,60784,sortie-04d2e072-b822-4160-b5b3-58aedb4b6059,https://biolit.fr/sorties/sortie-04d2e072-b822-4160-b5b3-58aedb4b6059/,ludovic,,01/12/2017,16.0000000,18.0000000,43.253547000000,5.374465000000,,plage Borely,51602,observation-04d2e072-b822-4160-b5b3-58aedb4b6059-2,https://biolit.fr/observations/observation-04d2e072-b822-4160-b5b3-58aedb4b6059-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0633-scaled.jpg,,FALSE, +N1,60784,sortie-04d2e072-b822-4160-b5b3-58aedb4b6059,https://biolit.fr/sorties/sortie-04d2e072-b822-4160-b5b3-58aedb4b6059/,ludovic,,01/12/2017,16.0000000,18.0000000,43.253547000000,5.374465000000,,plage Borely,51604,observation-04d2e072-b822-4160-b5b3-58aedb4b6059-3,https://biolit.fr/observations/observation-04d2e072-b822-4160-b5b3-58aedb4b6059-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0634-scaled.jpg,,FALSE, +N1,60784,sortie-04d2e072-b822-4160-b5b3-58aedb4b6059,https://biolit.fr/sorties/sortie-04d2e072-b822-4160-b5b3-58aedb4b6059/,ludovic,,01/12/2017,16.0000000,18.0000000,43.253547000000,5.374465000000,,plage Borely,51606,observation-04d2e072-b822-4160-b5b3-58aedb4b6059-4,https://biolit.fr/observations/observation-04d2e072-b822-4160-b5b3-58aedb4b6059-4/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0640-scaled.jpg,,TRUE, +N1,60784,sortie-04d2e072-b822-4160-b5b3-58aedb4b6059,https://biolit.fr/sorties/sortie-04d2e072-b822-4160-b5b3-58aedb4b6059/,ludovic,,01/12/2017,16.0000000,18.0000000,43.253547000000,5.374465000000,,plage Borely,51608,observation-04d2e072-b822-4160-b5b3-58aedb4b6059-5,https://biolit.fr/observations/observation-04d2e072-b822-4160-b5b3-58aedb4b6059-5/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0641-scaled.jpg,,TRUE, +N1,60785,sortie-8d2902ef-171c-4ffc-b090-28025100c1ff,https://biolit.fr/sorties/sortie-8d2902ef-171c-4ffc-b090-28025100c1ff/,Phil,,01/04/2017,16.0000000,16.0:45,48.096847000000,-4.33608000000,,Douarnenez - Finistère,51610,observation-8d2902ef-171c-4ffc-b090-28025100c1ff,https://biolit.fr/observations/observation-8d2902ef-171c-4ffc-b090-28025100c1ff/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170104_164438.jpg,,FALSE, +N1,60785,sortie-8d2902ef-171c-4ffc-b090-28025100c1ff,https://biolit.fr/sorties/sortie-8d2902ef-171c-4ffc-b090-28025100c1ff/,Phil,,01/04/2017,16.0000000,16.0:45,48.096847000000,-4.33608000000,,Douarnenez - Finistère,51612,observation-8d2902ef-171c-4ffc-b090-28025100c1ff-2,https://biolit.fr/observations/observation-8d2902ef-171c-4ffc-b090-28025100c1ff-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170104_163916.jpg,,FALSE, +N1,60785,sortie-8d2902ef-171c-4ffc-b090-28025100c1ff,https://biolit.fr/sorties/sortie-8d2902ef-171c-4ffc-b090-28025100c1ff/,Phil,,01/04/2017,16.0000000,16.0:45,48.096847000000,-4.33608000000,,Douarnenez - Finistère,51614,observation-8d2902ef-171c-4ffc-b090-28025100c1ff-3,https://biolit.fr/observations/observation-8d2902ef-171c-4ffc-b090-28025100c1ff-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170104_164137.jpg,,FALSE, +N1,60785,sortie-8d2902ef-171c-4ffc-b090-28025100c1ff,https://biolit.fr/sorties/sortie-8d2902ef-171c-4ffc-b090-28025100c1ff/,Phil,,01/04/2017,16.0000000,16.0:45,48.096847000000,-4.33608000000,,Douarnenez - Finistère,51616,observation-8d2902ef-171c-4ffc-b090-28025100c1ff-4,https://biolit.fr/observations/observation-8d2902ef-171c-4ffc-b090-28025100c1ff-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170104_164005.jpg,,FALSE, +N1,60785,sortie-8d2902ef-171c-4ffc-b090-28025100c1ff,https://biolit.fr/sorties/sortie-8d2902ef-171c-4ffc-b090-28025100c1ff/,Phil,,01/04/2017,16.0000000,16.0:45,48.096847000000,-4.33608000000,,Douarnenez - Finistère,51618,observation-8d2902ef-171c-4ffc-b090-28025100c1ff-5,https://biolit.fr/observations/observation-8d2902ef-171c-4ffc-b090-28025100c1ff-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170104_164024.jpg,,FALSE, +N1,60786,sortie-7615fc43-5261-482c-bbfc-5d4fc61a7f20,https://biolit.fr/sorties/sortie-7615fc43-5261-482c-bbfc-5d4fc61a7f20/,Ville de Marseille Leverrier CE2 CM1,,10/17/2016 0:00,9.0000000,11.0000000,43.273181000000,5.408218000000,,Anse de la Fausse Monnaie Marseille,51620,observation-7615fc43-5261-482c-bbfc-5d4fc61a7f20,https://biolit.fr/observations/observation-7615fc43-5261-482c-bbfc-5d4fc61a7f20/,Larus michahellis,Goéland leucophée,,https://biolit.fr/wp-content/uploads/2023/07/Goéland leucophée_Larus michahellis.JPG,,TRUE, +N1,60786,sortie-7615fc43-5261-482c-bbfc-5d4fc61a7f20,https://biolit.fr/sorties/sortie-7615fc43-5261-482c-bbfc-5d4fc61a7f20/,Ville de Marseille Leverrier CE2 CM1,,10/17/2016 0:00,9.0000000,11.0000000,43.273181000000,5.408218000000,,Anse de la Fausse Monnaie Marseille,51622,observation-7615fc43-5261-482c-bbfc-5d4fc61a7f20-2,https://biolit.fr/observations/observation-7615fc43-5261-482c-bbfc-5d4fc61a7f20-2/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Crabe marbre_Pachygrapsus marmoratus.JPG,,TRUE, +N1,60786,sortie-7615fc43-5261-482c-bbfc-5d4fc61a7f20,https://biolit.fr/sorties/sortie-7615fc43-5261-482c-bbfc-5d4fc61a7f20/,Ville de Marseille Leverrier CE2 CM1,,10/17/2016 0:00,9.0000000,11.0000000,43.273181000000,5.408218000000,,Anse de la Fausse Monnaie Marseille,51624,observation-7615fc43-5261-482c-bbfc-5d4fc61a7f20-3,https://biolit.fr/observations/observation-7615fc43-5261-482c-bbfc-5d4fc61a7f20-3/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/os de seiche_0.jpg,,TRUE, +N1,60786,sortie-7615fc43-5261-482c-bbfc-5d4fc61a7f20,https://biolit.fr/sorties/sortie-7615fc43-5261-482c-bbfc-5d4fc61a7f20/,Ville de Marseille Leverrier CE2 CM1,,10/17/2016 0:00,9.0000000,11.0000000,43.273181000000,5.408218000000,,Anse de la Fausse Monnaie Marseille,51625,observation-7615fc43-5261-482c-bbfc-5d4fc61a7f20-4,https://biolit.fr/observations/observation-7615fc43-5261-482c-bbfc-5d4fc61a7f20-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/posidonie_posidonia oceanica-scaled.jpg,,FALSE, +N1,60786,sortie-7615fc43-5261-482c-bbfc-5d4fc61a7f20,https://biolit.fr/sorties/sortie-7615fc43-5261-482c-bbfc-5d4fc61a7f20/,Ville de Marseille Leverrier CE2 CM1,,10/17/2016 0:00,9.0000000,11.0000000,43.273181000000,5.408218000000,,Anse de la Fausse Monnaie Marseille,51626,observation-7615fc43-5261-482c-bbfc-5d4fc61a7f20-5,https://biolit.fr/observations/observation-7615fc43-5261-482c-bbfc-5d4fc61a7f20-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Rascasse_Scorpaena porcus.jpeg,,FALSE, +N1,60786,sortie-7615fc43-5261-482c-bbfc-5d4fc61a7f20,https://biolit.fr/sorties/sortie-7615fc43-5261-482c-bbfc-5d4fc61a7f20/,Ville de Marseille Leverrier CE2 CM1,,10/17/2016 0:00,9.0000000,11.0000000,43.273181000000,5.408218000000,,Anse de la Fausse Monnaie Marseille,51628,observation-7615fc43-5261-482c-bbfc-5d4fc61a7f20-6,https://biolit.fr/observations/observation-7615fc43-5261-482c-bbfc-5d4fc61a7f20-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Jusquiame-Hyoscyamus sp.JPG,,FALSE, +N1,60787,sortie-e8e68319-237c-4e07-b244-9b32f89b582e,https://biolit.fr/sorties/sortie-e8e68319-237c-4e07-b244-9b32f89b582e/,Audrey,,12/27/2016 0:00,14.0000000,15.0000000,49.568541000000,-1.843596000000,,Plage de Siouville-Hague,51630,observation-e8e68319-237c-4e07-b244-9b32f89b582e,https://biolit.fr/observations/observation-e8e68319-237c-4e07-b244-9b32f89b582e/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161227_Siouville (16)-scaled.jpg,,FALSE, +N1,60788,sortie-154e2f94-2e80-4e86-ac54-7fef07c6f9fa,https://biolit.fr/sorties/sortie-154e2f94-2e80-4e86-ac54-7fef07c6f9fa/,Phil,,12/18/2016 0:00,16.0000000,16.0:15,47.939257000000,-4.406118000000,,Pouldreuzic - Finistère,51632,observation-154e2f94-2e80-4e86-ac54-7fef07c6f9fa,https://biolit.fr/observations/observation-154e2f94-2e80-4e86-ac54-7fef07c6f9fa/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050509.JPG,,FALSE, +N1,60788,sortie-154e2f94-2e80-4e86-ac54-7fef07c6f9fa,https://biolit.fr/sorties/sortie-154e2f94-2e80-4e86-ac54-7fef07c6f9fa/,Phil,,12/18/2016 0:00,16.0000000,16.0:15,47.939257000000,-4.406118000000,,Pouldreuzic - Finistère,51634,observation-154e2f94-2e80-4e86-ac54-7fef07c6f9fa-2,https://biolit.fr/observations/observation-154e2f94-2e80-4e86-ac54-7fef07c6f9fa-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050524.JPG,,FALSE, +N1,60789,sortie-901c3dce-2766-4cb7-89da-9717cd4266c5,https://biolit.fr/sorties/sortie-901c3dce-2766-4cb7-89da-9717cd4266c5/,thomas,,12/13/2016 0:00,16.0000000,18.0000000,43.333796000000,5.197723000000,,ensues-la-redonne,51636,observation-901c3dce-2766-4cb7-89da-9717cd4266c5,https://biolit.fr/observations/observation-901c3dce-2766-4cb7-89da-9717cd4266c5/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/pic1-scaled.jpg,,TRUE, +N1,60790,sortie-7b0ad649-0753-40b7-9783-7af135ad75ac,https://biolit.fr/sorties/sortie-7b0ad649-0753-40b7-9783-7af135ad75ac/,XxLouisxX,,12/13/2016 0:00,14.0000000,17.0000000,43.333719000000,5.197714000000,,la plage des pébraÏres,51638,observation-7b0ad649-0753-40b7-9783-7af135ad75ac,https://biolit.fr/observations/observation-7b0ad649-0753-40b7-9783-7af135ad75ac/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/Pic1_7-scaled.jpg,,TRUE, +N1,60790,sortie-7b0ad649-0753-40b7-9783-7af135ad75ac,https://biolit.fr/sorties/sortie-7b0ad649-0753-40b7-9783-7af135ad75ac/,XxLouisxX,,12/13/2016 0:00,14.0000000,17.0000000,43.333719000000,5.197714000000,,la plage des pébraÏres,51640,observation-7b0ad649-0753-40b7-9783-7af135ad75ac-2,https://biolit.fr/observations/observation-7b0ad649-0753-40b7-9783-7af135ad75ac-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic2_9-scaled.jpg,,FALSE, +N1,60790,sortie-7b0ad649-0753-40b7-9783-7af135ad75ac,https://biolit.fr/sorties/sortie-7b0ad649-0753-40b7-9783-7af135ad75ac/,XxLouisxX,,12/13/2016 0:00,14.0000000,17.0000000,43.333719000000,5.197714000000,,la plage des pébraÏres,51642,observation-7b0ad649-0753-40b7-9783-7af135ad75ac-3,https://biolit.fr/observations/observation-7b0ad649-0753-40b7-9783-7af135ad75ac-3/,Ulva spp.,Ulve rigide,,https://biolit.fr/wp-content/uploads/2023/07/Pic3_7-scaled.jpg,,TRUE, +N1,60791,sortie-7c9788df-5879-465d-b099-69f20d21cc23,https://biolit.fr/sorties/sortie-7c9788df-5879-465d-b099-69f20d21cc23/,romisseu,,12/13/2016 0:00,14.0000000,17.0000000,43.333412000000,5.197173000000,,plage des pébraires,51644,observation-7c9788df-5879-465d-b099-69f20d21cc23,https://biolit.fr/observations/observation-7c9788df-5879-465d-b099-69f20d21cc23/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic1_8-scaled.jpg,,FALSE, +N1,60792,sortie-63c2d700-814c-436a-bad2-0fdedb64c0e7,https://biolit.fr/sorties/sortie-63c2d700-814c-436a-bad2-0fdedb64c0e7/,ambre.mohammedi,,01/10/2017,16.0000000,18.0000000,43.333578000000,5.197707000000,,la plage des prebaires ,51646,observation-63c2d700-814c-436a-bad2-0fdedb64c0e7,https://biolit.fr/observations/observation-63c2d700-814c-436a-bad2-0fdedb64c0e7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic2_7-scaled.jpg,,FALSE, +N1,60792,sortie-63c2d700-814c-436a-bad2-0fdedb64c0e7,https://biolit.fr/sorties/sortie-63c2d700-814c-436a-bad2-0fdedb64c0e7/,ambre.mohammedi,,01/10/2017,16.0000000,18.0000000,43.333578000000,5.197707000000,,la plage des prebaires ,51648,observation-63c2d700-814c-436a-bad2-0fdedb64c0e7-2,https://biolit.fr/observations/observation-63c2d700-814c-436a-bad2-0fdedb64c0e7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/picv-scaled.jpg,,FALSE, +N1,60793,sortie-4edbbb17-7cc5-4266-958e-253af1674e7d,https://biolit.fr/sorties/sortie-4edbbb17-7cc5-4266-958e-253af1674e7d/,marielina1,,01/10/2017,16.0000000,18.0000000,43.331241000000,5.202959000000,,calanque des anthénors,51650,observation-4edbbb17-7cc5-4266-958e-253af1674e7d,https://biolit.fr/observations/observation-4edbbb17-7cc5-4266-958e-253af1674e7d/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic1_4-scaled.jpg,,FALSE, +N1,60793,sortie-4edbbb17-7cc5-4266-958e-253af1674e7d,https://biolit.fr/sorties/sortie-4edbbb17-7cc5-4266-958e-253af1674e7d/,marielina1,,01/10/2017,16.0000000,18.0000000,43.331241000000,5.202959000000,,calanque des anthénors,51652,observation-4edbbb17-7cc5-4266-958e-253af1674e7d-2,https://biolit.fr/observations/observation-4edbbb17-7cc5-4266-958e-253af1674e7d-2/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/Pic2_2-scaled.jpg,,TRUE, +N1,60793,sortie-4edbbb17-7cc5-4266-958e-253af1674e7d,https://biolit.fr/sorties/sortie-4edbbb17-7cc5-4266-958e-253af1674e7d/,marielina1,,01/10/2017,16.0000000,18.0000000,43.331241000000,5.202959000000,,calanque des anthénors,51654,observation-4edbbb17-7cc5-4266-958e-253af1674e7d-3,https://biolit.fr/observations/observation-4edbbb17-7cc5-4266-958e-253af1674e7d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic3_2-scaled.jpg,,FALSE, +N1,60794,sortie-cc1307e1-62fe-4948-bf42-cad4b5fdebe8,https://biolit.fr/sorties/sortie-cc1307e1-62fe-4948-bf42-cad4b5fdebe8/,mmokhtari,,12/13/2016 0:00,13.0000000,17.0000000,43.330977000000,5.202970000000,,ENSUES LA REDONNE,51656,observation-cc1307e1-62fe-4948-bf42-cad4b5fdebe8,https://biolit.fr/observations/observation-cc1307e1-62fe-4948-bf42-cad4b5fdebe8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic1_3-scaled.jpg,,FALSE, +N1,60794,sortie-cc1307e1-62fe-4948-bf42-cad4b5fdebe8,https://biolit.fr/sorties/sortie-cc1307e1-62fe-4948-bf42-cad4b5fdebe8/,mmokhtari,,12/13/2016 0:00,13.0000000,17.0000000,43.330977000000,5.202970000000,,ENSUES LA REDONNE,51658,observation-cc1307e1-62fe-4948-bf42-cad4b5fdebe8-2,https://biolit.fr/observations/observation-cc1307e1-62fe-4948-bf42-cad4b5fdebe8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic2_5-scaled.jpg,,FALSE, +N1,60794,sortie-cc1307e1-62fe-4948-bf42-cad4b5fdebe8,https://biolit.fr/sorties/sortie-cc1307e1-62fe-4948-bf42-cad4b5fdebe8/,mmokhtari,,12/13/2016 0:00,13.0000000,17.0000000,43.330977000000,5.202970000000,,ENSUES LA REDONNE,51660,observation-cc1307e1-62fe-4948-bf42-cad4b5fdebe8-3,https://biolit.fr/observations/observation-cc1307e1-62fe-4948-bf42-cad4b5fdebe8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic3_5-scaled.jpg,,FALSE, +N1,60795,sortie-f6ea67c5-7de8-4c45-be5a-bc13e66dd47a,https://biolit.fr/sorties/sortie-f6ea67c5-7de8-4c45-be5a-bc13e66dd47a/,Phil,,11/29/2016 0:00,14.0:35,15.0000000,47.816950000000,-4.165921000000,,Loctudy - Finistère,51662,observation-f6ea67c5-7de8-4c45-be5a-bc13e66dd47a,https://biolit.fr/observations/observation-f6ea67c5-7de8-4c45-be5a-bc13e66dd47a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050185.JPG,,FALSE, +N1,60795,sortie-f6ea67c5-7de8-4c45-be5a-bc13e66dd47a,https://biolit.fr/sorties/sortie-f6ea67c5-7de8-4c45-be5a-bc13e66dd47a/,Phil,,11/29/2016 0:00,14.0:35,15.0000000,47.816950000000,-4.165921000000,,Loctudy - Finistère,51664,observation-f6ea67c5-7de8-4c45-be5a-bc13e66dd47a-2,https://biolit.fr/observations/observation-f6ea67c5-7de8-4c45-be5a-bc13e66dd47a-2/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/P1050138.JPG,,TRUE, +N1,60795,sortie-f6ea67c5-7de8-4c45-be5a-bc13e66dd47a,https://biolit.fr/sorties/sortie-f6ea67c5-7de8-4c45-be5a-bc13e66dd47a/,Phil,,11/29/2016 0:00,14.0:35,15.0000000,47.816950000000,-4.165921000000,,Loctudy - Finistère,51666,observation-f6ea67c5-7de8-4c45-be5a-bc13e66dd47a-3,https://biolit.fr/observations/observation-f6ea67c5-7de8-4c45-be5a-bc13e66dd47a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050140.JPG,,FALSE, +N1,60796,sortie-87eecbb4-70d6-43ce-83c5-c3f5911cd7fb,https://biolit.fr/sorties/sortie-87eecbb4-70d6-43ce-83c5-c3f5911cd7fb/,Phil,,12/13/2016 0:00,13.0000000,13.0:25,48.106866000000,-4.415192000000,,Poullan sur Mer - Finistère,51668,observation-87eecbb4-70d6-43ce-83c5-c3f5911cd7fb,https://biolit.fr/observations/observation-87eecbb4-70d6-43ce-83c5-c3f5911cd7fb/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050272.JPG,,TRUE, +N1,60796,sortie-87eecbb4-70d6-43ce-83c5-c3f5911cd7fb,https://biolit.fr/sorties/sortie-87eecbb4-70d6-43ce-83c5-c3f5911cd7fb/,Phil,,12/13/2016 0:00,13.0000000,13.0:25,48.106866000000,-4.415192000000,,Poullan sur Mer - Finistère,51670,observation-87eecbb4-70d6-43ce-83c5-c3f5911cd7fb-2,https://biolit.fr/observations/observation-87eecbb4-70d6-43ce-83c5-c3f5911cd7fb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050300.JPG,,FALSE, +N1,60796,sortie-87eecbb4-70d6-43ce-83c5-c3f5911cd7fb,https://biolit.fr/sorties/sortie-87eecbb4-70d6-43ce-83c5-c3f5911cd7fb/,Phil,,12/13/2016 0:00,13.0000000,13.0:25,48.106866000000,-4.415192000000,,Poullan sur Mer - Finistère,51672,observation-87eecbb4-70d6-43ce-83c5-c3f5911cd7fb-3,https://biolit.fr/observations/observation-87eecbb4-70d6-43ce-83c5-c3f5911cd7fb-3/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/P1050301.JPG,,TRUE, +N1,60797,sortie-4363a992-fecf-43c1-9a5b-23206cbfd231,https://biolit.fr/sorties/sortie-4363a992-fecf-43c1-9a5b-23206cbfd231/,Phil,,12/18/2016 0:00,17.0000000,17.0:15,47.923980000000,-4.38523300000,,Plovan- Finistère,51674,observation-4363a992-fecf-43c1-9a5b-23206cbfd231,https://biolit.fr/observations/observation-4363a992-fecf-43c1-9a5b-23206cbfd231/,Cygnus olor,Cygne tuberculé,,https://biolit.fr/wp-content/uploads/2023/07/P1050577.JPG,,TRUE, +N1,60797,sortie-4363a992-fecf-43c1-9a5b-23206cbfd231,https://biolit.fr/sorties/sortie-4363a992-fecf-43c1-9a5b-23206cbfd231/,Phil,,12/18/2016 0:00,17.0000000,17.0:15,47.923980000000,-4.38523300000,,Plovan- Finistère,51676,observation-4363a992-fecf-43c1-9a5b-23206cbfd231-2,https://biolit.fr/observations/observation-4363a992-fecf-43c1-9a5b-23206cbfd231-2/,Cygnus olor,Cygne tuberculé,,https://biolit.fr/wp-content/uploads/2023/07/P1050570.JPG,,TRUE, +N1,60797,sortie-4363a992-fecf-43c1-9a5b-23206cbfd231,https://biolit.fr/sorties/sortie-4363a992-fecf-43c1-9a5b-23206cbfd231/,Phil,,12/18/2016 0:00,17.0000000,17.0:15,47.923980000000,-4.38523300000,,Plovan- Finistère,51678,observation-4363a992-fecf-43c1-9a5b-23206cbfd231-3,https://biolit.fr/observations/observation-4363a992-fecf-43c1-9a5b-23206cbfd231-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050567.JPG,,FALSE, +N1,60797,sortie-4363a992-fecf-43c1-9a5b-23206cbfd231,https://biolit.fr/sorties/sortie-4363a992-fecf-43c1-9a5b-23206cbfd231/,Phil,,12/18/2016 0:00,17.0000000,17.0:15,47.923980000000,-4.38523300000,,Plovan- Finistère,51680,observation-4363a992-fecf-43c1-9a5b-23206cbfd231-4,https://biolit.fr/observations/observation-4363a992-fecf-43c1-9a5b-23206cbfd231-4/,Cygnus olor,Cygne tuberculé,,https://biolit.fr/wp-content/uploads/2023/07/P1050563.JPG,,TRUE, +N1,60798,sortie-aefa3040-bdfe-4174-8ca5-a38a8536b87e,https://biolit.fr/sorties/sortie-aefa3040-bdfe-4174-8ca5-a38a8536b87e/,Phil,,12/18/2016 0:00,15.0000000,15.0:35,47.941112000000,-4.408856000000,,Pouldreuzic - Finistère,51682,observation-aefa3040-bdfe-4174-8ca5-a38a8536b87e,https://biolit.fr/observations/observation-aefa3040-bdfe-4174-8ca5-a38a8536b87e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050458.JPG,,FALSE, +N1,60798,sortie-aefa3040-bdfe-4174-8ca5-a38a8536b87e,https://biolit.fr/sorties/sortie-aefa3040-bdfe-4174-8ca5-a38a8536b87e/,Phil,,12/18/2016 0:00,15.0000000,15.0:35,47.941112000000,-4.408856000000,,Pouldreuzic - Finistère,51684,observation-aefa3040-bdfe-4174-8ca5-a38a8536b87e-2,https://biolit.fr/observations/observation-aefa3040-bdfe-4174-8ca5-a38a8536b87e-2/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/P1050459.JPG,,TRUE, +N1,60798,sortie-aefa3040-bdfe-4174-8ca5-a38a8536b87e,https://biolit.fr/sorties/sortie-aefa3040-bdfe-4174-8ca5-a38a8536b87e/,Phil,,12/18/2016 0:00,15.0000000,15.0:35,47.941112000000,-4.408856000000,,Pouldreuzic - Finistère,51686,observation-aefa3040-bdfe-4174-8ca5-a38a8536b87e-3,https://biolit.fr/observations/observation-aefa3040-bdfe-4174-8ca5-a38a8536b87e-3/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1050454.JPG,,TRUE, +N1,60799,sortie-b2482ed2-f472-45d3-b822-530570974ad4,https://biolit.fr/sorties/sortie-b2482ed2-f472-45d3-b822-530570974ad4/,elams,,12/12/2016,14.0000000,16.0000000,43.33377700000,5.197731000000,,plage des pébraires ,51688,observation-b2482ed2-f472-45d3-b822-530570974ad4,https://biolit.fr/observations/observation-b2482ed2-f472-45d3-b822-530570974ad4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic1_5-scaled.jpg,,FALSE, +N1,60799,sortie-b2482ed2-f472-45d3-b822-530570974ad4,https://biolit.fr/sorties/sortie-b2482ed2-f472-45d3-b822-530570974ad4/,elams,,12/12/2016,14.0000000,16.0000000,43.33377700000,5.197731000000,,plage des pébraires ,51690,observation-b2482ed2-f472-45d3-b822-530570974ad4-2,https://biolit.fr/observations/observation-b2482ed2-f472-45d3-b822-530570974ad4-2/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/Pic2_3-scaled.jpg,,TRUE, +N1,60799,sortie-b2482ed2-f472-45d3-b822-530570974ad4,https://biolit.fr/sorties/sortie-b2482ed2-f472-45d3-b822-530570974ad4/,elams,,12/12/2016,14.0000000,16.0000000,43.33377700000,5.197731000000,,plage des pébraires ,51692,observation-b2482ed2-f472-45d3-b822-530570974ad4-3,https://biolit.fr/observations/observation-b2482ed2-f472-45d3-b822-530570974ad4-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic3_3-scaled.jpg,,FALSE, +N1,60800,sortie-3188a4a9-e127-44cc-8af6-d7f41bb55ff6,https://biolit.fr/sorties/sortie-3188a4a9-e127-44cc-8af6-d7f41bb55ff6/,gaby1851,,12/12/2016,14.0000000,16.0000000,43.333754000000,5.197722000000,,Calanque de La Redonne,51694,observation-3188a4a9-e127-44cc-8af6-d7f41bb55ff6,https://biolit.fr/observations/observation-3188a4a9-e127-44cc-8af6-d7f41bb55ff6/,Ulva spp.,Ulve rigide,,https://biolit.fr/wp-content/uploads/2023/07/Pic1_6-scaled.jpg,,TRUE, +N1,60800,sortie-3188a4a9-e127-44cc-8af6-d7f41bb55ff6,https://biolit.fr/sorties/sortie-3188a4a9-e127-44cc-8af6-d7f41bb55ff6/,gaby1851,,12/12/2016,14.0000000,16.0000000,43.333754000000,5.197722000000,,Calanque de La Redonne,51696,observation-3188a4a9-e127-44cc-8af6-d7f41bb55ff6-2,https://biolit.fr/observations/observation-3188a4a9-e127-44cc-8af6-d7f41bb55ff6-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Pic2_4-scaled.jpg,,TRUE, +N1,60800,sortie-3188a4a9-e127-44cc-8af6-d7f41bb55ff6,https://biolit.fr/sorties/sortie-3188a4a9-e127-44cc-8af6-d7f41bb55ff6/,gaby1851,,12/12/2016,14.0000000,16.0000000,43.333754000000,5.197722000000,,Calanque de La Redonne,51698,observation-3188a4a9-e127-44cc-8af6-d7f41bb55ff6-3,https://biolit.fr/observations/observation-3188a4a9-e127-44cc-8af6-d7f41bb55ff6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic3_4-scaled.jpg,,FALSE, +N1,60801,sortie-da78c109-0d30-49c9-b69e-0a36231f373d,https://biolit.fr/sorties/sortie-da78c109-0d30-49c9-b69e-0a36231f373d/,LS,,12/12/2016,14.0000000,17.0000000,43.333749000000,5.19772200000,,Calanque de La Redonne,51700,observation-da78c109-0d30-49c9-b69e-0a36231f373d,https://biolit.fr/observations/observation-da78c109-0d30-49c9-b69e-0a36231f373d/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic1_2-scaled.jpg,,FALSE, +N1,60802,sortie-89fcd657-3cd0-417d-89c3-8e960fcab45b,https://biolit.fr/sorties/sortie-89fcd657-3cd0-417d-89c3-8e960fcab45b/,imanazzi,,12/12/2016,13.0000000,17.0000000,43.333722000000,5.197911000000,,calanque de la redonne,51702,observation-89fcd657-3cd0-417d-89c3-8e960fcab45b,https://biolit.fr/observations/observation-89fcd657-3cd0-417d-89c3-8e960fcab45b/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/pic1-scaled.jpg,,TRUE, +N1,60802,sortie-89fcd657-3cd0-417d-89c3-8e960fcab45b,https://biolit.fr/sorties/sortie-89fcd657-3cd0-417d-89c3-8e960fcab45b/,imanazzi,,12/12/2016,13.0000000,17.0000000,43.333722000000,5.197911000000,,calanque de la redonne,51703,observation-89fcd657-3cd0-417d-89c3-8e960fcab45b-2,https://biolit.fr/observations/observation-89fcd657-3cd0-417d-89c3-8e960fcab45b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic3-scaled.jpg,,FALSE, +N1,60802,sortie-89fcd657-3cd0-417d-89c3-8e960fcab45b,https://biolit.fr/sorties/sortie-89fcd657-3cd0-417d-89c3-8e960fcab45b/,imanazzi,,12/12/2016,13.0000000,17.0000000,43.333722000000,5.197911000000,,calanque de la redonne,51705,observation-89fcd657-3cd0-417d-89c3-8e960fcab45b-3,https://biolit.fr/observations/observation-89fcd657-3cd0-417d-89c3-8e960fcab45b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic2-scaled.jpg,,FALSE, +N1,60803,sortie-7955b779-2285-411d-877d-ee696402603c,https://biolit.fr/sorties/sortie-7955b779-2285-411d-877d-ee696402603c/,eliesfernandez,,12/12/2016,14.0000000,17.0000000,43.333739000000,5.19773100000,,plage des prébaires,51707,observation-7955b779-2285-411d-877d-ee696402603c,https://biolit.fr/observations/observation-7955b779-2285-411d-877d-ee696402603c/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Pic1_0-scaled.jpg,,TRUE, +N1,60803,sortie-7955b779-2285-411d-877d-ee696402603c,https://biolit.fr/sorties/sortie-7955b779-2285-411d-877d-ee696402603c/,eliesfernandez,,12/12/2016,14.0000000,17.0000000,43.333739000000,5.19773100000,,plage des prébaires,51709,observation-7955b779-2285-411d-877d-ee696402603c-2,https://biolit.fr/observations/observation-7955b779-2285-411d-877d-ee696402603c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic2_0-scaled.jpg,,FALSE, +N1,60803,sortie-7955b779-2285-411d-877d-ee696402603c,https://biolit.fr/sorties/sortie-7955b779-2285-411d-877d-ee696402603c/,eliesfernandez,,12/12/2016,14.0000000,17.0000000,43.333739000000,5.19773100000,,plage des prébaires,51711,observation-7955b779-2285-411d-877d-ee696402603c-3,https://biolit.fr/observations/observation-7955b779-2285-411d-877d-ee696402603c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic3_0-scaled.jpg,,FALSE, +N1,60804,sortie-86b286e2-28e3-458c-bcd8-724bb74779b4,https://biolit.fr/sorties/sortie-86b286e2-28e3-458c-bcd8-724bb74779b4/,Anaïs13,,12/12/2016,14.0000000,16.0000000,43.333697000000,5.1976540000,,"Plage des Pébraires, Calanques de la Redonne",51713,observation-86b286e2-28e3-458c-bcd8-724bb74779b4,https://biolit.fr/observations/observation-86b286e2-28e3-458c-bcd8-724bb74779b4/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/Pic1_1-scaled.jpg,,TRUE, +N1,60804,sortie-86b286e2-28e3-458c-bcd8-724bb74779b4,https://biolit.fr/sorties/sortie-86b286e2-28e3-458c-bcd8-724bb74779b4/,Anaïs13,,12/12/2016,14.0000000,16.0000000,43.333697000000,5.1976540000,,"Plage des Pébraires, Calanques de la Redonne",51715,observation-86b286e2-28e3-458c-bcd8-724bb74779b4-2,https://biolit.fr/observations/observation-86b286e2-28e3-458c-bcd8-724bb74779b4-2/,Vermetus triquetrus,Petit vermet,,https://biolit.fr/wp-content/uploads/2023/07/Pic3_1-scaled.jpg,,TRUE, +N1,60804,sortie-86b286e2-28e3-458c-bcd8-724bb74779b4,https://biolit.fr/sorties/sortie-86b286e2-28e3-458c-bcd8-724bb74779b4/,Anaïs13,,12/12/2016,14.0000000,16.0000000,43.333697000000,5.1976540000,,"Plage des Pébraires, Calanques de la Redonne",51717,observation-86b286e2-28e3-458c-bcd8-724bb74779b4-3,https://biolit.fr/observations/observation-86b286e2-28e3-458c-bcd8-724bb74779b4-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic2_1-scaled.jpg,,FALSE, +N1,60805,sortie-bf8b536c-3acf-467c-a486-24560100558e,https://biolit.fr/sorties/sortie-bf8b536c-3acf-467c-a486-24560100558e/,ville de Marseille Milan CM2,,11/07/2016,9.0000000,12.0000000,43.3078340000,5.347061000000,,"Pont de la Fausse Monnaie, Marseille",51719,observation-bf8b536c-3acf-467c-a486-24560100558e,https://biolit.fr/observations/observation-bf8b536c-3acf-467c-a486-24560100558e/,,,,https://biolit.fr/wp-content/uploads/2023/07/aegagropile pelote posidonie Posidonia oceanica .JPG,,FALSE, +N1,60805,sortie-bf8b536c-3acf-467c-a486-24560100558e,https://biolit.fr/sorties/sortie-bf8b536c-3acf-467c-a486-24560100558e/,ville de Marseille Milan CM2,,11/07/2016,9.0000000,12.0000000,43.3078340000,5.347061000000,,"Pont de la Fausse Monnaie, Marseille",51721,observation-bf8b536c-3acf-467c-a486-24560100558e-2,https://biolit.fr/observations/observation-bf8b536c-3acf-467c-a486-24560100558e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algue brune Pterocladiella capillacea.JPG,,FALSE, +N1,60805,sortie-bf8b536c-3acf-467c-a486-24560100558e,https://biolit.fr/sorties/sortie-bf8b536c-3acf-467c-a486-24560100558e/,ville de Marseille Milan CM2,,11/07/2016,9.0000000,12.0000000,43.3078340000,5.347061000000,,"Pont de la Fausse Monnaie, Marseille",51723,observation-bf8b536c-3acf-467c-a486-24560100558e-3,https://biolit.fr/observations/observation-bf8b536c-3acf-467c-a486-24560100558e-3/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/Algue feutrée Codium bursa.JPG,,TRUE, +N1,60805,sortie-bf8b536c-3acf-467c-a486-24560100558e,https://biolit.fr/sorties/sortie-bf8b536c-3acf-467c-a486-24560100558e/,ville de Marseille Milan CM2,,11/07/2016,9.0000000,12.0000000,43.3078340000,5.347061000000,,"Pont de la Fausse Monnaie, Marseille",51725,observation-bf8b536c-3acf-467c-a486-24560100558e-4,https://biolit.fr/observations/observation-bf8b536c-3acf-467c-a486-24560100558e-4/,Caulerpa cylindracea,Caulerpe cylindracée,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Caulerpe raisin Caulerpa racemosa.JPG,,TRUE, +N1,60805,sortie-bf8b536c-3acf-467c-a486-24560100558e,https://biolit.fr/sorties/sortie-bf8b536c-3acf-467c-a486-24560100558e/,ville de Marseille Milan CM2,,11/07/2016,9.0000000,12.0000000,43.3078340000,5.347061000000,,"Pont de la Fausse Monnaie, Marseille",51727,observation-bf8b536c-3acf-467c-a486-24560100558e-5,https://biolit.fr/observations/observation-bf8b536c-3acf-467c-a486-24560100558e-5/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule toupie Monodonta turbinata.JPG,,TRUE, +N1,60805,sortie-bf8b536c-3acf-467c-a486-24560100558e,https://biolit.fr/sorties/sortie-bf8b536c-3acf-467c-a486-24560100558e/,ville de Marseille Milan CM2,,11/07/2016,9.0000000,12.0000000,43.3078340000,5.347061000000,,"Pont de la Fausse Monnaie, Marseille",51729,observation-bf8b536c-3acf-467c-a486-24560100558e-6,https://biolit.fr/observations/observation-bf8b536c-3acf-467c-a486-24560100558e-6/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/Littorine bleue Littoina neritoides.JPG,,TRUE, +N1,60805,sortie-bf8b536c-3acf-467c-a486-24560100558e,https://biolit.fr/sorties/sortie-bf8b536c-3acf-467c-a486-24560100558e/,ville de Marseille Milan CM2,,11/07/2016,9.0000000,12.0000000,43.3078340000,5.347061000000,,"Pont de la Fausse Monnaie, Marseille",51731,observation-bf8b536c-3acf-467c-a486-24560100558e-7,https://biolit.fr/observations/observation-bf8b536c-3acf-467c-a486-24560100558e-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/POSIDONIE-Posidonia oceanica-scaled.jpg,,FALSE, +N1,60805,sortie-bf8b536c-3acf-467c-a486-24560100558e,https://biolit.fr/sorties/sortie-bf8b536c-3acf-467c-a486-24560100558e/,ville de Marseille Milan CM2,,11/07/2016,9.0000000,12.0000000,43.3078340000,5.347061000000,,"Pont de la Fausse Monnaie, Marseille",51732,observation-bf8b536c-3acf-467c-a486-24560100558e-8,https://biolit.fr/observations/observation-bf8b536c-3acf-467c-a486-24560100558e-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sebdénie Sebdenia spp..JPG,,FALSE, +N1,60806,sortie-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8,https://biolit.fr/sorties/sortie-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8/,Phil,,12/13/2016 0:00,13.0:45,13.0000000,48.106580000000,-4.415307000000,,Poullan sur Mer - Finistère,51734,observation-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8,https://biolit.fr/observations/observation-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050337.JPG,,FALSE, +N1,60806,sortie-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8,https://biolit.fr/sorties/sortie-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8/,Phil,,12/13/2016 0:00,13.0:45,13.0000000,48.106580000000,-4.415307000000,,Poullan sur Mer - Finistère,51736,observation-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8-2,https://biolit.fr/observations/observation-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050336.JPG,,FALSE, +N1,60806,sortie-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8,https://biolit.fr/sorties/sortie-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8/,Phil,,12/13/2016 0:00,13.0:45,13.0000000,48.106580000000,-4.415307000000,,Poullan sur Mer - Finistère,51738,observation-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8-3,https://biolit.fr/observations/observation-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050327.JPG,,FALSE, +N1,60806,sortie-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8,https://biolit.fr/sorties/sortie-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8/,Phil,,12/13/2016 0:00,13.0:45,13.0000000,48.106580000000,-4.415307000000,,Poullan sur Mer - Finistère,51740,observation-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8-4,https://biolit.fr/observations/observation-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050330.JPG,,FALSE, +N1,60806,sortie-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8,https://biolit.fr/sorties/sortie-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8/,Phil,,12/13/2016 0:00,13.0:45,13.0000000,48.106580000000,-4.415307000000,,Poullan sur Mer - Finistère,51742,observation-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8-5,https://biolit.fr/observations/observation-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050341.JPG,,FALSE, +N1,60807,sortie-957ea627-eb1c-4ac0-9dc2-07d540ed75b0,https://biolit.fr/sorties/sortie-957ea627-eb1c-4ac0-9dc2-07d540ed75b0/,Phil,,01/04/2017,16.0:35,16.0000000,48.097018000000,-4.33556300000,,Douarnenez - Finistère,51744,observation-957ea627-eb1c-4ac0-9dc2-07d540ed75b0,https://biolit.fr/observations/observation-957ea627-eb1c-4ac0-9dc2-07d540ed75b0/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170104_163441.jpg,,FALSE, +N1,60807,sortie-957ea627-eb1c-4ac0-9dc2-07d540ed75b0,https://biolit.fr/sorties/sortie-957ea627-eb1c-4ac0-9dc2-07d540ed75b0/,Phil,,01/04/2017,16.0:35,16.0000000,48.097018000000,-4.33556300000,,Douarnenez - Finistère,51746,observation-957ea627-eb1c-4ac0-9dc2-07d540ed75b0-2,https://biolit.fr/observations/observation-957ea627-eb1c-4ac0-9dc2-07d540ed75b0-2/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/20170104_163542.jpg,,TRUE, +N1,60807,sortie-957ea627-eb1c-4ac0-9dc2-07d540ed75b0,https://biolit.fr/sorties/sortie-957ea627-eb1c-4ac0-9dc2-07d540ed75b0/,Phil,,01/04/2017,16.0:35,16.0000000,48.097018000000,-4.33556300000,,Douarnenez - Finistère,51748,observation-957ea627-eb1c-4ac0-9dc2-07d540ed75b0-3,https://biolit.fr/observations/observation-957ea627-eb1c-4ac0-9dc2-07d540ed75b0-3/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170104_163730.jpg,,TRUE, +N1,60807,sortie-957ea627-eb1c-4ac0-9dc2-07d540ed75b0,https://biolit.fr/sorties/sortie-957ea627-eb1c-4ac0-9dc2-07d540ed75b0/,Phil,,01/04/2017,16.0:35,16.0000000,48.097018000000,-4.33556300000,,Douarnenez - Finistère,51750,observation-957ea627-eb1c-4ac0-9dc2-07d540ed75b0-4,https://biolit.fr/observations/observation-957ea627-eb1c-4ac0-9dc2-07d540ed75b0-4/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20170104_163843.jpg,,TRUE, +N1,60808,sortie-9b12b8d7-b1fb-48f6-bccf-40e8f0144289,https://biolit.fr/sorties/sortie-9b12b8d7-b1fb-48f6-bccf-40e8f0144289/,Phil,,12/18/2016 0:00,15.0:45,15.0000000,47.94149200000,-4.411942000000,,Pouldreuzic - Finistère,51752,observation-9b12b8d7-b1fb-48f6-bccf-40e8f0144289,https://biolit.fr/observations/observation-9b12b8d7-b1fb-48f6-bccf-40e8f0144289/,Gilvossius tyrrhenus,Callianasse matchotte,,https://biolit.fr/wp-content/uploads/2023/07/P1050504_1.JPG,,TRUE, +N1,60808,sortie-9b12b8d7-b1fb-48f6-bccf-40e8f0144289,https://biolit.fr/sorties/sortie-9b12b8d7-b1fb-48f6-bccf-40e8f0144289/,Phil,,12/18/2016 0:00,15.0:45,15.0000000,47.94149200000,-4.411942000000,,Pouldreuzic - Finistère,51754,observation-9b12b8d7-b1fb-48f6-bccf-40e8f0144289-2,https://biolit.fr/observations/observation-9b12b8d7-b1fb-48f6-bccf-40e8f0144289-2/,Gilvossius tyrrhenus,Callianasse matchotte,,https://biolit.fr/wp-content/uploads/2023/07/P1050492_0.JPG,,TRUE, +N1,60808,sortie-9b12b8d7-b1fb-48f6-bccf-40e8f0144289,https://biolit.fr/sorties/sortie-9b12b8d7-b1fb-48f6-bccf-40e8f0144289/,Phil,,12/18/2016 0:00,15.0:45,15.0000000,47.94149200000,-4.411942000000,,Pouldreuzic - Finistère,51756,observation-9b12b8d7-b1fb-48f6-bccf-40e8f0144289-3,https://biolit.fr/observations/observation-9b12b8d7-b1fb-48f6-bccf-40e8f0144289-3/,Gilvossius tyrrhenus,Callianasse matchotte,,https://biolit.fr/wp-content/uploads/2023/07/P1050496_0.JPG,,TRUE, +N1,60808,sortie-9b12b8d7-b1fb-48f6-bccf-40e8f0144289,https://biolit.fr/sorties/sortie-9b12b8d7-b1fb-48f6-bccf-40e8f0144289/,Phil,,12/18/2016 0:00,15.0:45,15.0000000,47.94149200000,-4.411942000000,,Pouldreuzic - Finistère,51758,observation-9b12b8d7-b1fb-48f6-bccf-40e8f0144289-4,https://biolit.fr/observations/observation-9b12b8d7-b1fb-48f6-bccf-40e8f0144289-4/,Gilvossius tyrrhenus,Callianasse matchotte,,https://biolit.fr/wp-content/uploads/2023/07/P1050497.JPG,,TRUE, +N1,60808,sortie-9b12b8d7-b1fb-48f6-bccf-40e8f0144289,https://biolit.fr/sorties/sortie-9b12b8d7-b1fb-48f6-bccf-40e8f0144289/,Phil,,12/18/2016 0:00,15.0:45,15.0000000,47.94149200000,-4.411942000000,,Pouldreuzic - Finistère,51760,observation-9b12b8d7-b1fb-48f6-bccf-40e8f0144289-5,https://biolit.fr/observations/observation-9b12b8d7-b1fb-48f6-bccf-40e8f0144289-5/,Gilvossius tyrrhenus,Callianasse matchotte,,https://biolit.fr/wp-content/uploads/2023/07/P1050501.JPG,,TRUE, +N1,60809,sortie-1d650453-b34a-471d-9faf-3a114463fb1d,https://biolit.fr/sorties/sortie-1d650453-b34a-471d-9faf-3a114463fb1d/,Phil,,12/13/2016 0:00,13.0000000,13.0000000,48.10655000000,-4.414936000000,,Poullan sur Mer - Finistère,51762,observation-1d650453-b34a-471d-9faf-3a114463fb1d,https://biolit.fr/observations/observation-1d650453-b34a-471d-9faf-3a114463fb1d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050311.JPG,,FALSE, +N1,60809,sortie-1d650453-b34a-471d-9faf-3a114463fb1d,https://biolit.fr/sorties/sortie-1d650453-b34a-471d-9faf-3a114463fb1d/,Phil,,12/13/2016 0:00,13.0000000,13.0000000,48.10655000000,-4.414936000000,,Poullan sur Mer - Finistère,51764,observation-1d650453-b34a-471d-9faf-3a114463fb1d-2,https://biolit.fr/observations/observation-1d650453-b34a-471d-9faf-3a114463fb1d-2/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1050315.JPG,,TRUE, +N1,60809,sortie-1d650453-b34a-471d-9faf-3a114463fb1d,https://biolit.fr/sorties/sortie-1d650453-b34a-471d-9faf-3a114463fb1d/,Phil,,12/13/2016 0:00,13.0000000,13.0000000,48.10655000000,-4.414936000000,,Poullan sur Mer - Finistère,51766,observation-1d650453-b34a-471d-9faf-3a114463fb1d-3,https://biolit.fr/observations/observation-1d650453-b34a-471d-9faf-3a114463fb1d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050316.JPG,,FALSE, +N1,60809,sortie-1d650453-b34a-471d-9faf-3a114463fb1d,https://biolit.fr/sorties/sortie-1d650453-b34a-471d-9faf-3a114463fb1d/,Phil,,12/13/2016 0:00,13.0000000,13.0000000,48.10655000000,-4.414936000000,,Poullan sur Mer - Finistère,51768,observation-1d650453-b34a-471d-9faf-3a114463fb1d-4,https://biolit.fr/observations/observation-1d650453-b34a-471d-9faf-3a114463fb1d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050319.JPG,,FALSE, +N1,60810,sortie-6e773139-a567-4714-9088-f67c53921b54,https://biolit.fr/sorties/sortie-6e773139-a567-4714-9088-f67c53921b54/,Phil,,12/18/2016 0:00,15.0000000,15.0000000,47.940587000000,-4.408180000000,,Pouldreuzic - Finistère,51770,observation-6e773139-a567-4714-9088-f67c53921b54,https://biolit.fr/observations/observation-6e773139-a567-4714-9088-f67c53921b54/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050429.JPG,,FALSE, +N1,60810,sortie-6e773139-a567-4714-9088-f67c53921b54,https://biolit.fr/sorties/sortie-6e773139-a567-4714-9088-f67c53921b54/,Phil,,12/18/2016 0:00,15.0000000,15.0000000,47.940587000000,-4.408180000000,,Pouldreuzic - Finistère,51772,observation-6e773139-a567-4714-9088-f67c53921b54-2,https://biolit.fr/observations/observation-6e773139-a567-4714-9088-f67c53921b54-2/,Rostanga rubra,Doris rouge,,https://biolit.fr/wp-content/uploads/2023/07/P1050433.JPG,,TRUE, +N1,60810,sortie-6e773139-a567-4714-9088-f67c53921b54,https://biolit.fr/sorties/sortie-6e773139-a567-4714-9088-f67c53921b54/,Phil,,12/18/2016 0:00,15.0000000,15.0000000,47.940587000000,-4.408180000000,,Pouldreuzic - Finistère,51774,observation-6e773139-a567-4714-9088-f67c53921b54-3,https://biolit.fr/observations/observation-6e773139-a567-4714-9088-f67c53921b54-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1050439.JPG,,TRUE, +N1,60810,sortie-6e773139-a567-4714-9088-f67c53921b54,https://biolit.fr/sorties/sortie-6e773139-a567-4714-9088-f67c53921b54/,Phil,,12/18/2016 0:00,15.0000000,15.0000000,47.940587000000,-4.408180000000,,Pouldreuzic - Finistère,51776,observation-6e773139-a567-4714-9088-f67c53921b54-4,https://biolit.fr/observations/observation-6e773139-a567-4714-9088-f67c53921b54-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050443.JPG,,TRUE, +N1,60811,sortie-e2f518f4-4c34-4350-96c1-9f22547dc68c,https://biolit.fr/sorties/sortie-e2f518f4-4c34-4350-96c1-9f22547dc68c/,Phil,,12/13/2016 0:00,13.0000000,13.0:15,48.106653000000,-4.415208000000,,Poullan sur Mer - Finistère,51778,observation-e2f518f4-4c34-4350-96c1-9f22547dc68c,https://biolit.fr/observations/observation-e2f518f4-4c34-4350-96c1-9f22547dc68c/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050249.JPG,,FALSE, +N1,60811,sortie-e2f518f4-4c34-4350-96c1-9f22547dc68c,https://biolit.fr/sorties/sortie-e2f518f4-4c34-4350-96c1-9f22547dc68c/,Phil,,12/13/2016 0:00,13.0000000,13.0:15,48.106653000000,-4.415208000000,,Poullan sur Mer - Finistère,51780,observation-e2f518f4-4c34-4350-96c1-9f22547dc68c-2,https://biolit.fr/observations/observation-e2f518f4-4c34-4350-96c1-9f22547dc68c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050250.JPG,,FALSE, +N1,60811,sortie-e2f518f4-4c34-4350-96c1-9f22547dc68c,https://biolit.fr/sorties/sortie-e2f518f4-4c34-4350-96c1-9f22547dc68c/,Phil,,12/13/2016 0:00,13.0000000,13.0:15,48.106653000000,-4.415208000000,,Poullan sur Mer - Finistère,51782,observation-e2f518f4-4c34-4350-96c1-9f22547dc68c-3,https://biolit.fr/observations/observation-e2f518f4-4c34-4350-96c1-9f22547dc68c-3/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/P1050253.JPG,,TRUE, +N1,60811,sortie-e2f518f4-4c34-4350-96c1-9f22547dc68c,https://biolit.fr/sorties/sortie-e2f518f4-4c34-4350-96c1-9f22547dc68c/,Phil,,12/13/2016 0:00,13.0000000,13.0:15,48.106653000000,-4.415208000000,,Poullan sur Mer - Finistère,51784,observation-e2f518f4-4c34-4350-96c1-9f22547dc68c-4,https://biolit.fr/observations/observation-e2f518f4-4c34-4350-96c1-9f22547dc68c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050256.JPG,,FALSE, +N1,60812,sortie-120e33d5-20da-49ab-9276-63e6c656fa3b,https://biolit.fr/sorties/sortie-120e33d5-20da-49ab-9276-63e6c656fa3b/,Phil,,11/26/2016 0:00,17.0000000,17.0000000,43.213071000000,5.536193000000,,Cassis - Bouches-du-Rhône,51786,observation-120e33d5-20da-49ab-9276-63e6c656fa3b,https://biolit.fr/observations/observation-120e33d5-20da-49ab-9276-63e6c656fa3b/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20161127_135239.jpg,,TRUE, +N1,60812,sortie-120e33d5-20da-49ab-9276-63e6c656fa3b,https://biolit.fr/sorties/sortie-120e33d5-20da-49ab-9276-63e6c656fa3b/,Phil,,11/26/2016 0:00,17.0000000,17.0000000,43.213071000000,5.536193000000,,Cassis - Bouches-du-Rhône,51788,observation-120e33d5-20da-49ab-9276-63e6c656fa3b-2,https://biolit.fr/observations/observation-120e33d5-20da-49ab-9276-63e6c656fa3b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161127_135255.jpg,,FALSE, +N1,60813,sortie-139ae7fc-3996-460c-8daf-11bab1f7c907,https://biolit.fr/sorties/sortie-139ae7fc-3996-460c-8daf-11bab1f7c907/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236057000000,5.360099000000,,plage de la bonne brise ,51790,observation-139ae7fc-3996-460c-8daf-11bab1f7c907,https://biolit.fr/observations/observation-139ae7fc-3996-460c-8daf-11bab1f7c907/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0437-scaled.jpg,,FALSE, +N1,60813,sortie-139ae7fc-3996-460c-8daf-11bab1f7c907,https://biolit.fr/sorties/sortie-139ae7fc-3996-460c-8daf-11bab1f7c907/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236057000000,5.360099000000,,plage de la bonne brise ,51792,observation-139ae7fc-3996-460c-8daf-11bab1f7c907-2,https://biolit.fr/observations/observation-139ae7fc-3996-460c-8daf-11bab1f7c907-2/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0441_0-scaled.jpg,,TRUE, +N1,60813,sortie-139ae7fc-3996-460c-8daf-11bab1f7c907,https://biolit.fr/sorties/sortie-139ae7fc-3996-460c-8daf-11bab1f7c907/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236057000000,5.360099000000,,plage de la bonne brise ,51794,observation-139ae7fc-3996-460c-8daf-11bab1f7c907-3,https://biolit.fr/observations/observation-139ae7fc-3996-460c-8daf-11bab1f7c907-3/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0442_0-scaled.jpg,,TRUE, +N1,60813,sortie-139ae7fc-3996-460c-8daf-11bab1f7c907,https://biolit.fr/sorties/sortie-139ae7fc-3996-460c-8daf-11bab1f7c907/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236057000000,5.360099000000,,plage de la bonne brise ,51796,observation-139ae7fc-3996-460c-8daf-11bab1f7c907-4,https://biolit.fr/observations/observation-139ae7fc-3996-460c-8daf-11bab1f7c907-4/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0445-scaled.jpg,,TRUE, +N1,60813,sortie-139ae7fc-3996-460c-8daf-11bab1f7c907,https://biolit.fr/sorties/sortie-139ae7fc-3996-460c-8daf-11bab1f7c907/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236057000000,5.360099000000,,plage de la bonne brise ,51798,observation-139ae7fc-3996-460c-8daf-11bab1f7c907-5,https://biolit.fr/observations/observation-139ae7fc-3996-460c-8daf-11bab1f7c907-5/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0447-scaled.jpg,,TRUE, +N1,60813,sortie-139ae7fc-3996-460c-8daf-11bab1f7c907,https://biolit.fr/sorties/sortie-139ae7fc-3996-460c-8daf-11bab1f7c907/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236057000000,5.360099000000,,plage de la bonne brise ,51800,observation-139ae7fc-3996-460c-8daf-11bab1f7c907-6,https://biolit.fr/observations/observation-139ae7fc-3996-460c-8daf-11bab1f7c907-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0457.jpg,,FALSE, +N1,60813,sortie-139ae7fc-3996-460c-8daf-11bab1f7c907,https://biolit.fr/sorties/sortie-139ae7fc-3996-460c-8daf-11bab1f7c907/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236057000000,5.360099000000,,plage de la bonne brise ,51802,observation-139ae7fc-3996-460c-8daf-11bab1f7c907-7,https://biolit.fr/observations/observation-139ae7fc-3996-460c-8daf-11bab1f7c907-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0464-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51804,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,Xantho poressa,Xanthe de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0365-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51805,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-2,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-2/,Xantho poressa,Xanthe de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0366-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51806,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-3,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0367-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51808,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-4,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-4/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0368-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51809,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-5,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0369-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51810,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-6,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-6/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0371-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51811,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-7,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0373-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51812,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-8,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0375-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51813,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-9,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-9/,Bittium latreillii,Cérithe de Latreille,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0378-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51814,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-10,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-10/,Bittium latreillii,Cérithe de Latreille,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0380-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51816,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-11,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-11/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0381-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51818,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-12,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-12/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0382-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51820,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-13,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0383-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51822,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-14,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0384-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51824,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-15,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0386-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51826,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-16,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0392-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51828,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-17,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0394-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51830,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-18,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0398-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51832,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-19,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0399-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51834,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-20,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0400-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51836,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-21,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0401-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51838,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-22,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-22/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0403-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51840,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-23,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-23/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0406-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51842,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-24,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-24/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0410-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51844,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-25,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-25/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0411_0.JPG,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51845,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-26,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0414-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51847,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-27,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0416_0-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51849,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-28,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0419_0-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51851,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-29,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-29/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0421_0-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51853,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-30,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-30/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0422-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51855,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-31,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0423_0-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51857,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-32,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0424-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51859,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-33,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-33/,Tritia incrassata,Nasse épaisse,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0425-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51861,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-34,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-34/,Tritia incrassata,Nasse épaisse,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0426_0-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51863,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-35,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-35/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0431_0-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51865,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-36,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-36/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0432_0-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51867,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-37,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0433_0-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51869,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-38,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-38/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0435_0-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51871,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-39,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-39/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0436-scaled.jpg,,TRUE, +N1,60815,sortie-0758e05b-5a9f-48e2-ba6b-bd97d042ece4,https://biolit.fr/sorties/sortie-0758e05b-5a9f-48e2-ba6b-bd97d042ece4/,Phil,,12/18/2016 0:00,14.000005,14.0:15,47.940012000000,-4.414422000000,,Pouldreuzic - Finistère,51873,observation-0758e05b-5a9f-48e2-ba6b-bd97d042ece4,https://biolit.fr/observations/observation-0758e05b-5a9f-48e2-ba6b-bd97d042ece4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050403.JPG,,FALSE, +N1,60815,sortie-0758e05b-5a9f-48e2-ba6b-bd97d042ece4,https://biolit.fr/sorties/sortie-0758e05b-5a9f-48e2-ba6b-bd97d042ece4/,Phil,,12/18/2016 0:00,14.000005,14.0:15,47.940012000000,-4.414422000000,,Pouldreuzic - Finistère,51875,observation-0758e05b-5a9f-48e2-ba6b-bd97d042ece4-2,https://biolit.fr/observations/observation-0758e05b-5a9f-48e2-ba6b-bd97d042ece4-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050407.JPG,,TRUE, +N1,60815,sortie-0758e05b-5a9f-48e2-ba6b-bd97d042ece4,https://biolit.fr/sorties/sortie-0758e05b-5a9f-48e2-ba6b-bd97d042ece4/,Phil,,12/18/2016 0:00,14.000005,14.0:15,47.940012000000,-4.414422000000,,Pouldreuzic - Finistère,51877,observation-0758e05b-5a9f-48e2-ba6b-bd97d042ece4-3,https://biolit.fr/observations/observation-0758e05b-5a9f-48e2-ba6b-bd97d042ece4-3/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050414.JPG,,TRUE, +N1,60815,sortie-0758e05b-5a9f-48e2-ba6b-bd97d042ece4,https://biolit.fr/sorties/sortie-0758e05b-5a9f-48e2-ba6b-bd97d042ece4/,Phil,,12/18/2016 0:00,14.000005,14.0:15,47.940012000000,-4.414422000000,,Pouldreuzic - Finistère,51879,observation-0758e05b-5a9f-48e2-ba6b-bd97d042ece4-4,https://biolit.fr/observations/observation-0758e05b-5a9f-48e2-ba6b-bd97d042ece4-4/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050416.JPG,,TRUE, +N1,60815,sortie-0758e05b-5a9f-48e2-ba6b-bd97d042ece4,https://biolit.fr/sorties/sortie-0758e05b-5a9f-48e2-ba6b-bd97d042ece4/,Phil,,12/18/2016 0:00,14.000005,14.0:15,47.940012000000,-4.414422000000,,Pouldreuzic - Finistère,51881,observation-0758e05b-5a9f-48e2-ba6b-bd97d042ece4-5,https://biolit.fr/observations/observation-0758e05b-5a9f-48e2-ba6b-bd97d042ece4-5/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/P1050422.JPG,,TRUE, +N1,60816,sortie-7c5a3c45-51c5-49cb-b330-8c1af1d791d3,https://biolit.fr/sorties/sortie-7c5a3c45-51c5-49cb-b330-8c1af1d791d3/,Phil,,12/18/2016 0:00,14.0:15,14.0000000,47.923897000000,-4.385049000000,,Plovan- Finistère,51883,observation-7c5a3c45-51c5-49cb-b330-8c1af1d791d3,https://biolit.fr/observations/observation-7c5a3c45-51c5-49cb-b330-8c1af1d791d3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050578.JPG,,FALSE, +N1,60817,sortie-df89dedc-0d78-49fa-a787-66533215f374,https://biolit.fr/sorties/sortie-df89dedc-0d78-49fa-a787-66533215f374/,Phil,,12/13/2016 0:00,13.000005,13.0000000,48.106825000000,-4.41504500000,,Poullan sur Mer - Finistère,51885,observation-df89dedc-0d78-49fa-a787-66533215f374,https://biolit.fr/observations/observation-df89dedc-0d78-49fa-a787-66533215f374/,Ramalina siliquosa,Ramaline des rochers,,https://biolit.fr/wp-content/uploads/2023/07/P1050248.JPG,,TRUE, +N1,60817,sortie-df89dedc-0d78-49fa-a787-66533215f374,https://biolit.fr/sorties/sortie-df89dedc-0d78-49fa-a787-66533215f374/,Phil,,12/13/2016 0:00,13.000005,13.0000000,48.106825000000,-4.41504500000,,Poullan sur Mer - Finistère,51887,observation-df89dedc-0d78-49fa-a787-66533215f374-2,https://biolit.fr/observations/observation-df89dedc-0d78-49fa-a787-66533215f374-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050243.JPG,,FALSE, +N1,60818,sortie-e950e6ce-b128-4af7-854c-56418a16d9e6,https://biolit.fr/sorties/sortie-e950e6ce-b128-4af7-854c-56418a16d9e6/,Phil,,11/27/2016 0:00,13.0:55,14.000005,43.405196000000,4.977139000000,,Port-de-Bouc - Bouches-du-Rhône,51889,observation-e950e6ce-b128-4af7-854c-56418a16d9e6,https://biolit.fr/observations/observation-e950e6ce-b128-4af7-854c-56418a16d9e6/,Lobularia maritima,Alysson maritime,,https://biolit.fr/wp-content/uploads/2023/07/20161127_140149.jpg,,TRUE, +N1,60818,sortie-e950e6ce-b128-4af7-854c-56418a16d9e6,https://biolit.fr/sorties/sortie-e950e6ce-b128-4af7-854c-56418a16d9e6/,Phil,,11/27/2016 0:00,13.0:55,14.000005,43.405196000000,4.977139000000,,Port-de-Bouc - Bouches-du-Rhône,51891,observation-e950e6ce-b128-4af7-854c-56418a16d9e6-2,https://biolit.fr/observations/observation-e950e6ce-b128-4af7-854c-56418a16d9e6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161127_140116.jpg,,FALSE, +N1,60818,sortie-e950e6ce-b128-4af7-854c-56418a16d9e6,https://biolit.fr/sorties/sortie-e950e6ce-b128-4af7-854c-56418a16d9e6/,Phil,,11/27/2016 0:00,13.0:55,14.000005,43.405196000000,4.977139000000,,Port-de-Bouc - Bouches-du-Rhône,51893,observation-e950e6ce-b128-4af7-854c-56418a16d9e6-3,https://biolit.fr/observations/observation-e950e6ce-b128-4af7-854c-56418a16d9e6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161127_135451.jpg,,FALSE, +N1,60818,sortie-e950e6ce-b128-4af7-854c-56418a16d9e6,https://biolit.fr/sorties/sortie-e950e6ce-b128-4af7-854c-56418a16d9e6/,Phil,,11/27/2016 0:00,13.0:55,14.000005,43.405196000000,4.977139000000,,Port-de-Bouc - Bouches-du-Rhône,51895,observation-e950e6ce-b128-4af7-854c-56418a16d9e6-4,https://biolit.fr/observations/observation-e950e6ce-b128-4af7-854c-56418a16d9e6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161127_135712.jpg,,FALSE, +N1,60818,sortie-e950e6ce-b128-4af7-854c-56418a16d9e6,https://biolit.fr/sorties/sortie-e950e6ce-b128-4af7-854c-56418a16d9e6/,Phil,,11/27/2016 0:00,13.0:55,14.000005,43.405196000000,4.977139000000,,Port-de-Bouc - Bouches-du-Rhône,51897,observation-e950e6ce-b128-4af7-854c-56418a16d9e6-5,https://biolit.fr/observations/observation-e950e6ce-b128-4af7-854c-56418a16d9e6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161127_135857.jpg,,FALSE, +N1,60818,sortie-e950e6ce-b128-4af7-854c-56418a16d9e6,https://biolit.fr/sorties/sortie-e950e6ce-b128-4af7-854c-56418a16d9e6/,Phil,,11/27/2016 0:00,13.0:55,14.000005,43.405196000000,4.977139000000,,Port-de-Bouc - Bouches-du-Rhône,51899,observation-e950e6ce-b128-4af7-854c-56418a16d9e6-6,https://biolit.fr/observations/observation-e950e6ce-b128-4af7-854c-56418a16d9e6-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161127_140039.jpg,,FALSE, +N1,60819,sortie-b7d5c498-b62f-474e-a1ec-cc1d44a592c0,https://biolit.fr/sorties/sortie-b7d5c498-b62f-474e-a1ec-cc1d44a592c0/,Phil,,12/13/2016 0:00,13.0000000,13.000005,48.106838000000,-4.415966000000,,Poullan sur Mer - Finistère,51901,observation-b7d5c498-b62f-474e-a1ec-cc1d44a592c0,https://biolit.fr/observations/observation-b7d5c498-b62f-474e-a1ec-cc1d44a592c0/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/P1050239.JPG,,TRUE, +N1,60819,sortie-b7d5c498-b62f-474e-a1ec-cc1d44a592c0,https://biolit.fr/sorties/sortie-b7d5c498-b62f-474e-a1ec-cc1d44a592c0/,Phil,,12/13/2016 0:00,13.0000000,13.000005,48.106838000000,-4.415966000000,,Poullan sur Mer - Finistère,51903,observation-b7d5c498-b62f-474e-a1ec-cc1d44a592c0-2,https://biolit.fr/observations/observation-b7d5c498-b62f-474e-a1ec-cc1d44a592c0-2/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/P1050241.JPG,,TRUE, +N1,60820,sortie-aa1533e6-6f61-4225-b308-a3657883ce55,https://biolit.fr/sorties/sortie-aa1533e6-6f61-4225-b308-a3657883ce55/,Phil,,12/18/2016 0:00,15.0:55,16.000005,47.924995000000,-4.387109000000,,Plovan- Finistère,51905,observation-aa1533e6-6f61-4225-b308-a3657883ce55,https://biolit.fr/observations/observation-aa1533e6-6f61-4225-b308-a3657883ce55/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050559.JPG,,FALSE, +N1,60820,sortie-aa1533e6-6f61-4225-b308-a3657883ce55,https://biolit.fr/sorties/sortie-aa1533e6-6f61-4225-b308-a3657883ce55/,Phil,,12/18/2016 0:00,15.0:55,16.000005,47.924995000000,-4.387109000000,,Plovan- Finistère,51907,observation-aa1533e6-6f61-4225-b308-a3657883ce55-2,https://biolit.fr/observations/observation-aa1533e6-6f61-4225-b308-a3657883ce55-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050556.JPG,,FALSE, +N1,60820,sortie-aa1533e6-6f61-4225-b308-a3657883ce55,https://biolit.fr/sorties/sortie-aa1533e6-6f61-4225-b308-a3657883ce55/,Phil,,12/18/2016 0:00,15.0:55,16.000005,47.924995000000,-4.387109000000,,Plovan- Finistère,51909,observation-aa1533e6-6f61-4225-b308-a3657883ce55-3,https://biolit.fr/observations/observation-aa1533e6-6f61-4225-b308-a3657883ce55-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050558.JPG,,FALSE, +N1,60820,sortie-aa1533e6-6f61-4225-b308-a3657883ce55,https://biolit.fr/sorties/sortie-aa1533e6-6f61-4225-b308-a3657883ce55/,Phil,,12/18/2016 0:00,15.0:55,16.000005,47.924995000000,-4.387109000000,,Plovan- Finistère,51911,observation-aa1533e6-6f61-4225-b308-a3657883ce55-4,https://biolit.fr/observations/observation-aa1533e6-6f61-4225-b308-a3657883ce55-4/,Calidris alba,Bécasseau sanderling,,https://biolit.fr/wp-content/uploads/2023/07/P1050552.JPG,,TRUE, +N1,60821,sortie-21bdd1eb-d557-4c41-87da-86d7aa847bf9,https://biolit.fr/sorties/sortie-21bdd1eb-d557-4c41-87da-86d7aa847bf9/,Phil,,12/18/2016 0:00,13.0000000,14.0000000,47.940098000000,-4.414819000000,,Pouldreuzic - Finistère,51913,observation-21bdd1eb-d557-4c41-87da-86d7aa847bf9,https://biolit.fr/observations/observation-21bdd1eb-d557-4c41-87da-86d7aa847bf9/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1050386.JPG,,TRUE, +N1,60821,sortie-21bdd1eb-d557-4c41-87da-86d7aa847bf9,https://biolit.fr/sorties/sortie-21bdd1eb-d557-4c41-87da-86d7aa847bf9/,Phil,,12/18/2016 0:00,13.0000000,14.0000000,47.940098000000,-4.414819000000,,Pouldreuzic - Finistère,51915,observation-21bdd1eb-d557-4c41-87da-86d7aa847bf9-2,https://biolit.fr/observations/observation-21bdd1eb-d557-4c41-87da-86d7aa847bf9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050387.JPG,,FALSE, +N1,60821,sortie-21bdd1eb-d557-4c41-87da-86d7aa847bf9,https://biolit.fr/sorties/sortie-21bdd1eb-d557-4c41-87da-86d7aa847bf9/,Phil,,12/18/2016 0:00,13.0000000,14.0000000,47.940098000000,-4.414819000000,,Pouldreuzic - Finistère,51917,observation-21bdd1eb-d557-4c41-87da-86d7aa847bf9-3,https://biolit.fr/observations/observation-21bdd1eb-d557-4c41-87da-86d7aa847bf9-3/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1050388.JPG,,TRUE, +N1,60821,sortie-21bdd1eb-d557-4c41-87da-86d7aa847bf9,https://biolit.fr/sorties/sortie-21bdd1eb-d557-4c41-87da-86d7aa847bf9/,Phil,,12/18/2016 0:00,13.0000000,14.0000000,47.940098000000,-4.414819000000,,Pouldreuzic - Finistère,51919,observation-21bdd1eb-d557-4c41-87da-86d7aa847bf9-4,https://biolit.fr/observations/observation-21bdd1eb-d557-4c41-87da-86d7aa847bf9-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050391.JPG,,FALSE, +N1,60821,sortie-21bdd1eb-d557-4c41-87da-86d7aa847bf9,https://biolit.fr/sorties/sortie-21bdd1eb-d557-4c41-87da-86d7aa847bf9/,Phil,,12/18/2016 0:00,13.0000000,14.0000000,47.940098000000,-4.414819000000,,Pouldreuzic - Finistère,51921,observation-21bdd1eb-d557-4c41-87da-86d7aa847bf9-5,https://biolit.fr/observations/observation-21bdd1eb-d557-4c41-87da-86d7aa847bf9-5/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1050392.JPG,,TRUE, +N1,60821,sortie-21bdd1eb-d557-4c41-87da-86d7aa847bf9,https://biolit.fr/sorties/sortie-21bdd1eb-d557-4c41-87da-86d7aa847bf9/,Phil,,12/18/2016 0:00,13.0000000,14.0000000,47.940098000000,-4.414819000000,,Pouldreuzic - Finistère,51923,observation-21bdd1eb-d557-4c41-87da-86d7aa847bf9-6,https://biolit.fr/observations/observation-21bdd1eb-d557-4c41-87da-86d7aa847bf9-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050381.JPG,,FALSE, +N1,60822,sortie-b2fb705f-5758-4ab2-bb22-2da6ade68bb6,https://biolit.fr/sorties/sortie-b2fb705f-5758-4ab2-bb22-2da6ade68bb6/,Phil,,12/13/2016 0:00,12.0:45,13.0000000,48.106692000000,-4.415100000000,,Poullan sur Mer - Finistère,51925,observation-b2fb705f-5758-4ab2-bb22-2da6ade68bb6,https://biolit.fr/observations/observation-b2fb705f-5758-4ab2-bb22-2da6ade68bb6/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1050210.JPG,,TRUE, +N1,60822,sortie-b2fb705f-5758-4ab2-bb22-2da6ade68bb6,https://biolit.fr/sorties/sortie-b2fb705f-5758-4ab2-bb22-2da6ade68bb6/,Phil,,12/13/2016 0:00,12.0:45,13.0000000,48.106692000000,-4.415100000000,,Poullan sur Mer - Finistère,51927,observation-b2fb705f-5758-4ab2-bb22-2da6ade68bb6-2,https://biolit.fr/observations/observation-b2fb705f-5758-4ab2-bb22-2da6ade68bb6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050211.JPG,,FALSE, +N1,60822,sortie-b2fb705f-5758-4ab2-bb22-2da6ade68bb6,https://biolit.fr/sorties/sortie-b2fb705f-5758-4ab2-bb22-2da6ade68bb6/,Phil,,12/13/2016 0:00,12.0:45,13.0000000,48.106692000000,-4.415100000000,,Poullan sur Mer - Finistère,51929,observation-b2fb705f-5758-4ab2-bb22-2da6ade68bb6-3,https://biolit.fr/observations/observation-b2fb705f-5758-4ab2-bb22-2da6ade68bb6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050215.JPG,,FALSE, +N1,60822,sortie-b2fb705f-5758-4ab2-bb22-2da6ade68bb6,https://biolit.fr/sorties/sortie-b2fb705f-5758-4ab2-bb22-2da6ade68bb6/,Phil,,12/13/2016 0:00,12.0:45,13.0000000,48.106692000000,-4.415100000000,,Poullan sur Mer - Finistère,51931,observation-b2fb705f-5758-4ab2-bb22-2da6ade68bb6-4,https://biolit.fr/observations/observation-b2fb705f-5758-4ab2-bb22-2da6ade68bb6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050224.JPG,,FALSE, +N1,60822,sortie-b2fb705f-5758-4ab2-bb22-2da6ade68bb6,https://biolit.fr/sorties/sortie-b2fb705f-5758-4ab2-bb22-2da6ade68bb6/,Phil,,12/13/2016 0:00,12.0:45,13.0000000,48.106692000000,-4.415100000000,,Poullan sur Mer - Finistère,51933,observation-b2fb705f-5758-4ab2-bb22-2da6ade68bb6-5,https://biolit.fr/observations/observation-b2fb705f-5758-4ab2-bb22-2da6ade68bb6-5/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050227.JPG,,TRUE, +N1,60822,sortie-b2fb705f-5758-4ab2-bb22-2da6ade68bb6,https://biolit.fr/sorties/sortie-b2fb705f-5758-4ab2-bb22-2da6ade68bb6/,Phil,,12/13/2016 0:00,12.0:45,13.0000000,48.106692000000,-4.415100000000,,Poullan sur Mer - Finistère,51935,observation-b2fb705f-5758-4ab2-bb22-2da6ade68bb6-6,https://biolit.fr/observations/observation-b2fb705f-5758-4ab2-bb22-2da6ade68bb6-6/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050234.JPG,,TRUE, +N1,60823,sortie-a9e4e5b1-b3f5-42bf-a9ce-06c015df401f,https://biolit.fr/sorties/sortie-a9e4e5b1-b3f5-42bf-a9ce-06c015df401f/,Phil,,11/29/2016 0:00,14.0:55,15.0000000,47.815667000000,-4.163818000000,,Loctudy - Finistère,51937,observation-a9e4e5b1-b3f5-42bf-a9ce-06c015df401f,https://biolit.fr/observations/observation-a9e4e5b1-b3f5-42bf-a9ce-06c015df401f/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050179.JPG,,FALSE, +N1,60824,sortie-18f59139-129a-4fda-a68c-7abe3eb5984b,https://biolit.fr/sorties/sortie-18f59139-129a-4fda-a68c-7abe3eb5984b/,Phil,,12/18/2016 0:00,13.0000000,13.0:45,47.940018000000,-4.408094000000,,Pouldreuzic - Finistère,51939,observation-18f59139-129a-4fda-a68c-7abe3eb5984b,https://biolit.fr/observations/observation-18f59139-129a-4fda-a68c-7abe3eb5984b/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/P1050368.JPG,,TRUE, +N1,60824,sortie-18f59139-129a-4fda-a68c-7abe3eb5984b,https://biolit.fr/sorties/sortie-18f59139-129a-4fda-a68c-7abe3eb5984b/,Phil,,12/18/2016 0:00,13.0000000,13.0:45,47.940018000000,-4.408094000000,,Pouldreuzic - Finistère,51941,observation-18f59139-129a-4fda-a68c-7abe3eb5984b-2,https://biolit.fr/observations/observation-18f59139-129a-4fda-a68c-7abe3eb5984b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050363.JPG,,FALSE, +N1,60824,sortie-18f59139-129a-4fda-a68c-7abe3eb5984b,https://biolit.fr/sorties/sortie-18f59139-129a-4fda-a68c-7abe3eb5984b/,Phil,,12/18/2016 0:00,13.0000000,13.0:45,47.940018000000,-4.408094000000,,Pouldreuzic - Finistère,51943,observation-18f59139-129a-4fda-a68c-7abe3eb5984b-3,https://biolit.fr/observations/observation-18f59139-129a-4fda-a68c-7abe3eb5984b-3/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1050355.JPG,,TRUE, +N1,60824,sortie-18f59139-129a-4fda-a68c-7abe3eb5984b,https://biolit.fr/sorties/sortie-18f59139-129a-4fda-a68c-7abe3eb5984b/,Phil,,12/18/2016 0:00,13.0000000,13.0:45,47.940018000000,-4.408094000000,,Pouldreuzic - Finistère,51945,observation-18f59139-129a-4fda-a68c-7abe3eb5984b-4,https://biolit.fr/observations/observation-18f59139-129a-4fda-a68c-7abe3eb5984b-4/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/P1050344.JPG,,TRUE, +N1,60825,sortie-ccfc6610-75d4-47d7-9459-68d59d1b8e95,https://biolit.fr/sorties/sortie-ccfc6610-75d4-47d7-9459-68d59d1b8e95/,Marine,,11/28/2016 0:00,11.0000000,12.0000000,43.280437000000,5.352835000000,,Anse de la Fausse Monnaie,51947,observation-ccfc6610-75d4-47d7-9459-68d59d1b8e95,https://biolit.fr/observations/observation-ccfc6610-75d4-47d7-9459-68d59d1b8e95/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2030-scaled.jpg,,FALSE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51949,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c/,Halopteris scoparia,Algue balai,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0416-scaled.jpg,,TRUE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51951,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-2,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0417-scaled.jpg,,TRUE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51953,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-3,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-3/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0444-scaled.jpg,,TRUE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51955,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-4,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0443-scaled.jpg,,FALSE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51957,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-5,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0442-scaled.jpg,,FALSE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51959,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-6,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0441-scaled.jpg,,FALSE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51961,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-7,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0438-scaled.jpg,,FALSE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51963,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-8,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0435-scaled.jpg,,FALSE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51965,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-9,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0433-scaled.jpg,,FALSE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51967,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-10,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-10/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0432-scaled.jpg,,TRUE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51969,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-11,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-11/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0431-scaled.jpg,,TRUE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51971,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-12,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-12/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0430-scaled.jpg,,TRUE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51973,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-13,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-13/,Ulva spp.,Ulve rigide,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0429-scaled.jpg,,TRUE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51975,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-14,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-14/,Ulva spp.,Ulve rigide,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0426-scaled.jpg,,TRUE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51977,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-15,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0428-scaled.jpg,,FALSE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51979,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-16,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0427-scaled.jpg,,FALSE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51981,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-17,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-17/,Flabellia petiolata,Udotée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0423-scaled.jpg,,TRUE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51983,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-18,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0421-scaled.jpg,,FALSE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51985,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-19,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0418-scaled.jpg,,FALSE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51987,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-20,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-20/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0419-scaled.jpg,,TRUE, +N1,60827,sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77,https://biolit.fr/sorties/sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77/,FannyC,,12/15/2016 0:00,14.0:15,15.0000000,43.239930000000,5.362465000000,,Bain des dames,51989,observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77,https://biolit.fr/observations/observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/15536861_10211600844159995_2010779871_o_2.jpg,,TRUE, +N1,60827,sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77,https://biolit.fr/sorties/sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77/,FannyC,,12/15/2016 0:00,14.0:15,15.0000000,43.239930000000,5.362465000000,,Bain des dames,51991,observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-2,https://biolit.fr/observations/observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/15537070_10211600849800136_1770966268_o.jpg,,TRUE, +N1,60827,sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77,https://biolit.fr/sorties/sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77/,FannyC,,12/15/2016 0:00,14.0:15,15.0000000,43.239930000000,5.362465000000,,Bain des dames,51993,observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-3,https://biolit.fr/observations/observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-3/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/15540298_10211600842399951_1935391336_o.jpg,,TRUE, +N1,60827,sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77,https://biolit.fr/sorties/sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77/,FannyC,,12/15/2016 0:00,14.0:15,15.0000000,43.239930000000,5.362465000000,,Bain des dames,51995,observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-4,https://biolit.fr/observations/observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-4/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/15540554_10211600849760135_976733479_o.jpg,,TRUE, +N1,60827,sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77,https://biolit.fr/sorties/sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77/,FannyC,,12/15/2016 0:00,14.0:15,15.0000000,43.239930000000,5.362465000000,,Bain des dames,51997,observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-5,https://biolit.fr/observations/observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/15555431_10211600849720134_1334732016_o.jpg,,FALSE, +N1,60827,sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77,https://biolit.fr/sorties/sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77/,FannyC,,12/15/2016 0:00,14.0:15,15.0000000,43.239930000000,5.362465000000,,Bain des dames,51999,observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-6,https://biolit.fr/observations/observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/15540339_10211600842839962_2129510213_o.jpg,,FALSE, +N1,60827,sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77,https://biolit.fr/sorties/sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77/,FannyC,,12/15/2016 0:00,14.0:15,15.0000000,43.239930000000,5.362465000000,,Bain des dames,52001,observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-7,https://biolit.fr/observations/observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-7/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/15555140_10211600850480153_230943522_o.jpg,,TRUE, +N1,60827,sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77,https://biolit.fr/sorties/sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77/,FannyC,,12/15/2016 0:00,14.0:15,15.0000000,43.239930000000,5.362465000000,,Bain des dames,52003,observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-8,https://biolit.fr/observations/observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/15555342_10211600850640157_400107468_o.jpg,,FALSE, +N1,60827,sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77,https://biolit.fr/sorties/sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77/,FannyC,,12/15/2016 0:00,14.0:15,15.0000000,43.239930000000,5.362465000000,,Bain des dames,52005,observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-9,https://biolit.fr/observations/observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/15515616_10211600849680133_1276436995_o.jpg,,FALSE, +N1,60827,sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77,https://biolit.fr/sorties/sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77/,FannyC,,12/15/2016 0:00,14.0:15,15.0000000,43.239930000000,5.362465000000,,Bain des dames,52007,observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-10,https://biolit.fr/observations/observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/15595798_10211600850080143_1455901975_o.jpg,,FALSE, +N1,60827,sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77,https://biolit.fr/sorties/sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77/,FannyC,,12/15/2016 0:00,14.0:15,15.0000000,43.239930000000,5.362465000000,,Bain des dames,52009,observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-11,https://biolit.fr/observations/observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/15595755_10211600850320149_1011012516_o.jpg,,FALSE, +N1,60827,sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77,https://biolit.fr/sorties/sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77/,FannyC,,12/15/2016 0:00,14.0:15,15.0000000,43.239930000000,5.362465000000,,Bain des dames,52011,observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-12,https://biolit.fr/observations/observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/15595744_10211600845120019_450321608_o.jpg,,FALSE, +N1,60827,sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77,https://biolit.fr/sorties/sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77/,FannyC,,12/15/2016 0:00,14.0:15,15.0000000,43.239930000000,5.362465000000,,Bain des dames,52013,observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-13,https://biolit.fr/observations/observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-13/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/15595713_10211600850560155_1923467579_o.jpg,,TRUE, +N1,60828,sortie-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7,https://biolit.fr/sorties/sortie-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7/,Phil,,11/29/2016 0:00,14.0000000,14.0:55,47.815213000000,-4.16382700000,,Loctudy - Finistère,52015,observation-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7,https://biolit.fr/observations/observation-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050134.JPG,,FALSE, +N1,60828,sortie-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7,https://biolit.fr/sorties/sortie-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7/,Phil,,11/29/2016 0:00,14.0000000,14.0:55,47.815213000000,-4.16382700000,,Loctudy - Finistère,52017,observation-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7-2,https://biolit.fr/observations/observation-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050156.JPG,,FALSE, +N1,60828,sortie-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7,https://biolit.fr/sorties/sortie-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7/,Phil,,11/29/2016 0:00,14.0000000,14.0:55,47.815213000000,-4.16382700000,,Loctudy - Finistère,52019,observation-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7-3,https://biolit.fr/observations/observation-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050168.JPG,,FALSE, +N1,60828,sortie-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7,https://biolit.fr/sorties/sortie-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7/,Phil,,11/29/2016 0:00,14.0000000,14.0:55,47.815213000000,-4.16382700000,,Loctudy - Finistère,52021,observation-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7-4,https://biolit.fr/observations/observation-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7-4/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/P1050176.JPG,,TRUE, +N1,60828,sortie-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7,https://biolit.fr/sorties/sortie-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7/,Phil,,11/29/2016 0:00,14.0000000,14.0:55,47.815213000000,-4.16382700000,,Loctudy - Finistère,52023,observation-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7-5,https://biolit.fr/observations/observation-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050178.JPG,,FALSE, +N1,60829,sortie-8c9f07b0-9bc1-4b89-b40b-e839b9958da4,https://biolit.fr/sorties/sortie-8c9f07b0-9bc1-4b89-b40b-e839b9958da4/,Phil,,11/02/2016,15.0:15,15.0000000,47.79563200000,-4.363031000000,,Penmarc'h - Finistère,52025,observation-8c9f07b0-9bc1-4b89-b40b-e839b9958da4,https://biolit.fr/observations/observation-8c9f07b0-9bc1-4b89-b40b-e839b9958da4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040796.JPG,,FALSE, +N1,60830,sortie-2e37b6e3-f501-42e1-b8ff-720bc1ecd44e,https://biolit.fr/sorties/sortie-2e37b6e3-f501-42e1-b8ff-720bc1ecd44e/,Phil,,12/13/2016 0:00,13.0:15,13.0:25,48.106780000000,-4.415157000000,,Poullan sur Mer - Finistère,52027,observation-2e37b6e3-f501-42e1-b8ff-720bc1ecd44e,https://biolit.fr/observations/observation-2e37b6e3-f501-42e1-b8ff-720bc1ecd44e/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1050278.JPG,,TRUE, +N1,60830,sortie-2e37b6e3-f501-42e1-b8ff-720bc1ecd44e,https://biolit.fr/sorties/sortie-2e37b6e3-f501-42e1-b8ff-720bc1ecd44e/,Phil,,12/13/2016 0:00,13.0:15,13.0:25,48.106780000000,-4.415157000000,,Poullan sur Mer - Finistère,52029,observation-2e37b6e3-f501-42e1-b8ff-720bc1ecd44e-2,https://biolit.fr/observations/observation-2e37b6e3-f501-42e1-b8ff-720bc1ecd44e-2/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1050290.JPG,,TRUE, +N1,60830,sortie-2e37b6e3-f501-42e1-b8ff-720bc1ecd44e,https://biolit.fr/sorties/sortie-2e37b6e3-f501-42e1-b8ff-720bc1ecd44e/,Phil,,12/13/2016 0:00,13.0:15,13.0:25,48.106780000000,-4.415157000000,,Poullan sur Mer - Finistère,52031,observation-2e37b6e3-f501-42e1-b8ff-720bc1ecd44e-3,https://biolit.fr/observations/observation-2e37b6e3-f501-42e1-b8ff-720bc1ecd44e-3/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1050275.JPG,,TRUE, +N1,60830,sortie-2e37b6e3-f501-42e1-b8ff-720bc1ecd44e,https://biolit.fr/sorties/sortie-2e37b6e3-f501-42e1-b8ff-720bc1ecd44e/,Phil,,12/13/2016 0:00,13.0:15,13.0:25,48.106780000000,-4.415157000000,,Poullan sur Mer - Finistère,52033,observation-2e37b6e3-f501-42e1-b8ff-720bc1ecd44e-4,https://biolit.fr/observations/observation-2e37b6e3-f501-42e1-b8ff-720bc1ecd44e-4/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1050292.JPG,,TRUE, +N1,60831,sortie-41d142c7-630a-4753-a085-eaa11a802652,https://biolit.fr/sorties/sortie-41d142c7-630a-4753-a085-eaa11a802652/,Phil,,11/29/2016 0:00,14.0000000,14.0000000,47.810265000000,-4.159441000000,,Loctudy - Finistère,52035,observation-41d142c7-630a-4753-a085-eaa11a802652,https://biolit.fr/observations/observation-41d142c7-630a-4753-a085-eaa11a802652/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1050153.JPG,,TRUE, +N1,60831,sortie-41d142c7-630a-4753-a085-eaa11a802652,https://biolit.fr/sorties/sortie-41d142c7-630a-4753-a085-eaa11a802652/,Phil,,11/29/2016 0:00,14.0000000,14.0000000,47.810265000000,-4.159441000000,,Loctudy - Finistère,52037,observation-41d142c7-630a-4753-a085-eaa11a802652-2,https://biolit.fr/observations/observation-41d142c7-630a-4753-a085-eaa11a802652-2/,Janua heterostropha,Spirorbe de Pagenstecher,,https://biolit.fr/wp-content/uploads/2023/07/P1050126.JPG,,TRUE, +N1,60831,sortie-41d142c7-630a-4753-a085-eaa11a802652,https://biolit.fr/sorties/sortie-41d142c7-630a-4753-a085-eaa11a802652/,Phil,,11/29/2016 0:00,14.0000000,14.0000000,47.810265000000,-4.159441000000,,Loctudy - Finistère,52039,observation-41d142c7-630a-4753-a085-eaa11a802652-3,https://biolit.fr/observations/observation-41d142c7-630a-4753-a085-eaa11a802652-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050145.JPG,,FALSE, +N1,60831,sortie-41d142c7-630a-4753-a085-eaa11a802652,https://biolit.fr/sorties/sortie-41d142c7-630a-4753-a085-eaa11a802652/,Phil,,11/29/2016 0:00,14.0000000,14.0000000,47.810265000000,-4.159441000000,,Loctudy - Finistère,52041,observation-41d142c7-630a-4753-a085-eaa11a802652-4,https://biolit.fr/observations/observation-41d142c7-630a-4753-a085-eaa11a802652-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050160.JPG,,FALSE, +N1,60832,sortie-0e2c5470-8b6a-4d38-a644-407ea087d6f3,https://biolit.fr/sorties/sortie-0e2c5470-8b6a-4d38-a644-407ea087d6f3/,Phil,,11/02/2016,15.0:15,15.0000000,47.796269000000,-4.361986000000,,Penmarc'h - Finistère,52043,observation-0e2c5470-8b6a-4d38-a644-407ea087d6f3,https://biolit.fr/observations/observation-0e2c5470-8b6a-4d38-a644-407ea087d6f3/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/P1040789.JPG,,TRUE, +N1,60832,sortie-0e2c5470-8b6a-4d38-a644-407ea087d6f3,https://biolit.fr/sorties/sortie-0e2c5470-8b6a-4d38-a644-407ea087d6f3/,Phil,,11/02/2016,15.0:15,15.0000000,47.796269000000,-4.361986000000,,Penmarc'h - Finistère,52045,observation-0e2c5470-8b6a-4d38-a644-407ea087d6f3-2,https://biolit.fr/observations/observation-0e2c5470-8b6a-4d38-a644-407ea087d6f3-2/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1040792_0.JPG,,TRUE, +N1,60832,sortie-0e2c5470-8b6a-4d38-a644-407ea087d6f3,https://biolit.fr/sorties/sortie-0e2c5470-8b6a-4d38-a644-407ea087d6f3/,Phil,,11/02/2016,15.0:15,15.0000000,47.796269000000,-4.361986000000,,Penmarc'h - Finistère,52047,observation-0e2c5470-8b6a-4d38-a644-407ea087d6f3-3,https://biolit.fr/observations/observation-0e2c5470-8b6a-4d38-a644-407ea087d6f3-3/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/P1040795.JPG,,TRUE, +N1,60833,sortie-46aa51d6-a027-4aeb-9d17-5b8c396d55fb,https://biolit.fr/sorties/sortie-46aa51d6-a027-4aeb-9d17-5b8c396d55fb/,Phil,,11/29/2016 0:00,14.0000000,14.0000000,47.80945700000,-4.159423000000,,Loctudy - Finistère,52049,observation-46aa51d6-a027-4aeb-9d17-5b8c396d55fb,https://biolit.fr/observations/observation-46aa51d6-a027-4aeb-9d17-5b8c396d55fb/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050083_0.JPG,,FALSE, +N1,60833,sortie-46aa51d6-a027-4aeb-9d17-5b8c396d55fb,https://biolit.fr/sorties/sortie-46aa51d6-a027-4aeb-9d17-5b8c396d55fb/,Phil,,11/29/2016 0:00,14.0000000,14.0000000,47.80945700000,-4.159423000000,,Loctudy - Finistère,52051,observation-46aa51d6-a027-4aeb-9d17-5b8c396d55fb-2,https://biolit.fr/observations/observation-46aa51d6-a027-4aeb-9d17-5b8c396d55fb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050088_0.JPG,,FALSE, +N1,60833,sortie-46aa51d6-a027-4aeb-9d17-5b8c396d55fb,https://biolit.fr/sorties/sortie-46aa51d6-a027-4aeb-9d17-5b8c396d55fb/,Phil,,11/29/2016 0:00,14.0000000,14.0000000,47.80945700000,-4.159423000000,,Loctudy - Finistère,52053,observation-46aa51d6-a027-4aeb-9d17-5b8c396d55fb-3,https://biolit.fr/observations/observation-46aa51d6-a027-4aeb-9d17-5b8c396d55fb-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050103.JPG,,FALSE, +N1,60833,sortie-46aa51d6-a027-4aeb-9d17-5b8c396d55fb,https://biolit.fr/sorties/sortie-46aa51d6-a027-4aeb-9d17-5b8c396d55fb/,Phil,,11/29/2016 0:00,14.0000000,14.0000000,47.80945700000,-4.159423000000,,Loctudy - Finistère,52055,observation-46aa51d6-a027-4aeb-9d17-5b8c396d55fb-4,https://biolit.fr/observations/observation-46aa51d6-a027-4aeb-9d17-5b8c396d55fb-4/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/P1050107.JPG,,TRUE, +N1,60833,sortie-46aa51d6-a027-4aeb-9d17-5b8c396d55fb,https://biolit.fr/sorties/sortie-46aa51d6-a027-4aeb-9d17-5b8c396d55fb/,Phil,,11/29/2016 0:00,14.0000000,14.0000000,47.80945700000,-4.159423000000,,Loctudy - Finistère,52057,observation-46aa51d6-a027-4aeb-9d17-5b8c396d55fb-5,https://biolit.fr/observations/observation-46aa51d6-a027-4aeb-9d17-5b8c396d55fb-5/,Halidrys siliquosa,Queue de poulain,,https://biolit.fr/wp-content/uploads/2023/07/P1050108.JPG,,TRUE, +N1,60833,sortie-46aa51d6-a027-4aeb-9d17-5b8c396d55fb,https://biolit.fr/sorties/sortie-46aa51d6-a027-4aeb-9d17-5b8c396d55fb/,Phil,,11/29/2016 0:00,14.0000000,14.0000000,47.80945700000,-4.159423000000,,Loctudy - Finistère,52059,observation-46aa51d6-a027-4aeb-9d17-5b8c396d55fb-6,https://biolit.fr/observations/observation-46aa51d6-a027-4aeb-9d17-5b8c396d55fb-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050112.JPG,,FALSE, +N1,60833,sortie-46aa51d6-a027-4aeb-9d17-5b8c396d55fb,https://biolit.fr/sorties/sortie-46aa51d6-a027-4aeb-9d17-5b8c396d55fb/,Phil,,11/29/2016 0:00,14.0000000,14.0000000,47.80945700000,-4.159423000000,,Loctudy - Finistère,52061,observation-46aa51d6-a027-4aeb-9d17-5b8c396d55fb-7,https://biolit.fr/observations/observation-46aa51d6-a027-4aeb-9d17-5b8c396d55fb-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050118.JPG,,FALSE, +N1,60834,sortie-8499f13f-1887-45f8-a281-2585ab019a08,https://biolit.fr/sorties/sortie-8499f13f-1887-45f8-a281-2585ab019a08/,Centre de Découverte Mer et Montagne,,12/05/2016,15.0000000,15.0000000,43.692755000000,7.289541000000,,"Port de la Tour rouge, Nice",52063,observation-8499f13f-1887-45f8-a281-2585ab019a08,https://biolit.fr/observations/observation-8499f13f-1887-45f8-a281-2585ab019a08/,Podiceps nigricollis,Grèbe à cou noir,,https://biolit.fr/wp-content/uploads/2023/07/CDMM_Grebe à cou noir-scaled.jpg,,TRUE, +N1,60835,sortie-3726c82f-8ff2-44cd-8274-c63dda51c653,https://biolit.fr/sorties/sortie-3726c82f-8ff2-44cd-8274-c63dda51c653/,Phil,,11/29/2016 0:00,14.0000000,14.0000000,47.811847000000,-4.165350000000,,Loctudy - Finistère,52065,observation-3726c82f-8ff2-44cd-8274-c63dda51c653,https://biolit.fr/observations/observation-3726c82f-8ff2-44cd-8274-c63dda51c653/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1050076.JPG,,TRUE, +N1,60835,sortie-3726c82f-8ff2-44cd-8274-c63dda51c653,https://biolit.fr/sorties/sortie-3726c82f-8ff2-44cd-8274-c63dda51c653/,Phil,,11/29/2016 0:00,14.0000000,14.0000000,47.811847000000,-4.165350000000,,Loctudy - Finistère,52067,observation-3726c82f-8ff2-44cd-8274-c63dda51c653-2,https://biolit.fr/observations/observation-3726c82f-8ff2-44cd-8274-c63dda51c653-2/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1050080.JPG,,TRUE, +N1,60835,sortie-3726c82f-8ff2-44cd-8274-c63dda51c653,https://biolit.fr/sorties/sortie-3726c82f-8ff2-44cd-8274-c63dda51c653/,Phil,,11/29/2016 0:00,14.0000000,14.0000000,47.811847000000,-4.165350000000,,Loctudy - Finistère,52069,observation-3726c82f-8ff2-44cd-8274-c63dda51c653-3,https://biolit.fr/observations/observation-3726c82f-8ff2-44cd-8274-c63dda51c653-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050073.JPG,,FALSE, +N1,60835,sortie-3726c82f-8ff2-44cd-8274-c63dda51c653,https://biolit.fr/sorties/sortie-3726c82f-8ff2-44cd-8274-c63dda51c653/,Phil,,11/29/2016 0:00,14.0000000,14.0000000,47.811847000000,-4.165350000000,,Loctudy - Finistère,52071,observation-3726c82f-8ff2-44cd-8274-c63dda51c653-4,https://biolit.fr/observations/observation-3726c82f-8ff2-44cd-8274-c63dda51c653-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050071.JPG,,FALSE, +N1,60836,sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92,https://biolit.fr/sorties/sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92/,ville de Marseille école La Feuilleraie cm1A,,10/03/2016,10.0000000,12.0000000,43.329149000000,5.364272000000,,"Marseille, au pont de la Fausse monnaie",52073,observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92,https://biolit.fr/observations/observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92/,,,,https://biolit.fr/wp-content/uploads/2023/07/anémone verte Anemonia viridis.jpg,,FALSE, +N1,60836,sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92,https://biolit.fr/sorties/sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92/,ville de Marseille école La Feuilleraie cm1A,,10/03/2016,10.0000000,12.0000000,43.329149000000,5.364272000000,,"Marseille, au pont de la Fausse monnaie",52075,observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92-2,https://biolit.fr/observations/observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/actinie rouge Actinia schmidti.jpg,,FALSE, +N1,60836,sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92,https://biolit.fr/sorties/sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92/,ville de Marseille école La Feuilleraie cm1A,,10/03/2016,10.0000000,12.0000000,43.329149000000,5.364272000000,,"Marseille, au pont de la Fausse monnaie",52077,observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92-3,https://biolit.fr/observations/observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92-3/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/Arche de noe-arca noae 2.JPG,,TRUE, +N1,60836,sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92,https://biolit.fr/sorties/sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92/,ville de Marseille école La Feuilleraie cm1A,,10/03/2016,10.0000000,12.0000000,43.329149000000,5.364272000000,,"Marseille, au pont de la Fausse monnaie",52078,observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92-4,https://biolit.fr/observations/observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92-4/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/arche de Noé Arca noae.jpg,,TRUE, +N1,60836,sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92,https://biolit.fr/sorties/sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92/,ville de Marseille école La Feuilleraie cm1A,,10/03/2016,10.0000000,12.0000000,43.329149000000,5.364272000000,,"Marseille, au pont de la Fausse monnaie",52080,observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92-5,https://biolit.fr/observations/observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Caulerpe raisin Caulerpa racemoza.jpg,,FALSE, +N1,60836,sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92,https://biolit.fr/sorties/sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92/,ville de Marseille école La Feuilleraie cm1A,,10/03/2016,10.0000000,12.0000000,43.329149000000,5.364272000000,,"Marseille, au pont de la Fausse monnaie",52082,observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92-6,https://biolit.fr/observations/observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/cystoseire Cystoseira spp..jpg,,FALSE, +N1,60836,sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92,https://biolit.fr/sorties/sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92/,ville de Marseille école La Feuilleraie cm1A,,10/03/2016,10.0000000,12.0000000,43.329149000000,5.364272000000,,"Marseille, au pont de la Fausse monnaie",52084,observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92-7,https://biolit.fr/observations/observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92-7/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/oursin noir Arbacia lixula-scaled.jpg,,TRUE, +N1,60836,sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92,https://biolit.fr/sorties/sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92/,ville de Marseille école La Feuilleraie cm1A,,10/03/2016,10.0000000,12.0000000,43.329149000000,5.364272000000,,"Marseille, au pont de la Fausse monnaie",52086,observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92-8,https://biolit.fr/observations/observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/perce pierre_cr.jpg,,FALSE, +N1,60836,sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92,https://biolit.fr/sorties/sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92/,ville de Marseille école La Feuilleraie cm1A,,10/03/2016,10.0000000,12.0000000,43.329149000000,5.364272000000,,"Marseille, au pont de la Fausse monnaie",52088,observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92-9,https://biolit.fr/observations/observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92-9/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/pince crabe verruquex Eriphia verrucosa (2)_cr.jpg,,TRUE, +N1,60837,sortie-418c9162-31aa-493b-a411-4535292b6bd8,https://biolit.fr/sorties/sortie-418c9162-31aa-493b-a411-4535292b6bd8/,ADEE,,12/01/2016,9.0000000,12.0000000,43.413471000000,6.795903000000,,Plage la Péguière,52090,observation-418c9162-31aa-493b-a411-4535292b6bd8,https://biolit.fr/observations/observation-418c9162-31aa-493b-a411-4535292b6bd8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20161201_104757-scaled.jpg,,FALSE, +N1,60838,sortie-2a5f14a4-29ce-402e-950e-23b5f0237a07,https://biolit.fr/sorties/sortie-2a5f14a4-29ce-402e-950e-23b5f0237a07/,Phil,,11/02/2016,15.000005,15.0000000,47.791506000000,-4.368396000000,,Penmarc'h - Finistère,52092,observation-2a5f14a4-29ce-402e-950e-23b5f0237a07,https://biolit.fr/observations/observation-2a5f14a4-29ce-402e-950e-23b5f0237a07/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/P1040778.JPG,,TRUE, +N1,60838,sortie-2a5f14a4-29ce-402e-950e-23b5f0237a07,https://biolit.fr/sorties/sortie-2a5f14a4-29ce-402e-950e-23b5f0237a07/,Phil,,11/02/2016,15.000005,15.0000000,47.791506000000,-4.368396000000,,Penmarc'h - Finistère,52094,observation-2a5f14a4-29ce-402e-950e-23b5f0237a07-2,https://biolit.fr/observations/observation-2a5f14a4-29ce-402e-950e-23b5f0237a07-2/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/P1040779.JPG,,TRUE, +N1,60838,sortie-2a5f14a4-29ce-402e-950e-23b5f0237a07,https://biolit.fr/sorties/sortie-2a5f14a4-29ce-402e-950e-23b5f0237a07/,Phil,,11/02/2016,15.000005,15.0000000,47.791506000000,-4.368396000000,,Penmarc'h - Finistère,52096,observation-2a5f14a4-29ce-402e-950e-23b5f0237a07-3,https://biolit.fr/observations/observation-2a5f14a4-29ce-402e-950e-23b5f0237a07-3/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/P1040778 - Copie (1).JPG,,TRUE, +N1,60838,sortie-2a5f14a4-29ce-402e-950e-23b5f0237a07,https://biolit.fr/sorties/sortie-2a5f14a4-29ce-402e-950e-23b5f0237a07/,Phil,,11/02/2016,15.000005,15.0000000,47.791506000000,-4.368396000000,,Penmarc'h - Finistère,52098,observation-2a5f14a4-29ce-402e-950e-23b5f0237a07-4,https://biolit.fr/observations/observation-2a5f14a4-29ce-402e-950e-23b5f0237a07-4/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/P1040781.JPG,,TRUE, +N1,60838,sortie-2a5f14a4-29ce-402e-950e-23b5f0237a07,https://biolit.fr/sorties/sortie-2a5f14a4-29ce-402e-950e-23b5f0237a07/,Phil,,11/02/2016,15.000005,15.0000000,47.791506000000,-4.368396000000,,Penmarc'h - Finistère,52100,observation-2a5f14a4-29ce-402e-950e-23b5f0237a07-5,https://biolit.fr/observations/observation-2a5f14a4-29ce-402e-950e-23b5f0237a07-5/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/P1040788_0.JPG,,TRUE, +N1,60838,sortie-2a5f14a4-29ce-402e-950e-23b5f0237a07,https://biolit.fr/sorties/sortie-2a5f14a4-29ce-402e-950e-23b5f0237a07/,Phil,,11/02/2016,15.000005,15.0000000,47.791506000000,-4.368396000000,,Penmarc'h - Finistère,52102,observation-2a5f14a4-29ce-402e-950e-23b5f0237a07-6,https://biolit.fr/observations/observation-2a5f14a4-29ce-402e-950e-23b5f0237a07-6/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/P1040783.JPG,,TRUE, +N1,60839,sortie-cefd99a1-3db7-43d2-bf6c-687f98d05dcc,https://biolit.fr/sorties/sortie-cefd99a1-3db7-43d2-bf6c-687f98d05dcc/,Phil,,11/29/2016 0:00,15.0:15,15.0000000,47.833745000000,-4.176362000000,,Loctudy - Finistère,52104,observation-cefd99a1-3db7-43d2-bf6c-687f98d05dcc,https://biolit.fr/observations/observation-cefd99a1-3db7-43d2-bf6c-687f98d05dcc/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050196.JPG,,FALSE, +N1,60839,sortie-cefd99a1-3db7-43d2-bf6c-687f98d05dcc,https://biolit.fr/sorties/sortie-cefd99a1-3db7-43d2-bf6c-687f98d05dcc/,Phil,,11/29/2016 0:00,15.0:15,15.0000000,47.833745000000,-4.176362000000,,Loctudy - Finistère,52106,observation-cefd99a1-3db7-43d2-bf6c-687f98d05dcc-2,https://biolit.fr/observations/observation-cefd99a1-3db7-43d2-bf6c-687f98d05dcc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050192.JPG,,FALSE, +N1,60840,sortie-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3,https://biolit.fr/sorties/sortie-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3/,Phil,,11/29/2016 0:00,14.0000000,14.000005,47.815370000000,-4.163162000000,,Loctudy - Finistère,52108,observation-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3,https://biolit.fr/observations/observation-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050044.JPG,,FALSE, +N1,60840,sortie-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3,https://biolit.fr/sorties/sortie-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3/,Phil,,11/29/2016 0:00,14.0000000,14.000005,47.815370000000,-4.163162000000,,Loctudy - Finistère,52110,observation-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3-2,https://biolit.fr/observations/observation-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050047.JPG,,FALSE, +N1,60840,sortie-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3,https://biolit.fr/sorties/sortie-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3/,Phil,,11/29/2016 0:00,14.0000000,14.000005,47.815370000000,-4.163162000000,,Loctudy - Finistère,52112,observation-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3-3,https://biolit.fr/observations/observation-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3-3/,Electra pilosa,Ecorce pileuse,,https://biolit.fr/wp-content/uploads/2023/07/P1050051.JPG,,TRUE, +N1,60840,sortie-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3,https://biolit.fr/sorties/sortie-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3/,Phil,,11/29/2016 0:00,14.0000000,14.000005,47.815370000000,-4.163162000000,,Loctudy - Finistère,52114,observation-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3-4,https://biolit.fr/observations/observation-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3-4/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/P1050062.JPG,,TRUE, +N1,60840,sortie-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3,https://biolit.fr/sorties/sortie-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3/,Phil,,11/29/2016 0:00,14.0000000,14.000005,47.815370000000,-4.163162000000,,Loctudy - Finistère,52116,observation-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3-5,https://biolit.fr/observations/observation-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3-5/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1050063.JPG,,TRUE, +N1,60841,sortie-0c63efed-0c40-419e-856e-13bdb7718c66,https://biolit.fr/sorties/sortie-0c63efed-0c40-419e-856e-13bdb7718c66/,Phil,,11/27/2016 0:00,16.0:35,16.0000000,43.403460000000,5.045117000000,,Martigues - Bouches-du-Rhône,52118,observation-0c63efed-0c40-419e-856e-13bdb7718c66,https://biolit.fr/observations/observation-0c63efed-0c40-419e-856e-13bdb7718c66/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20161127_163836.jpg,,TRUE, +N1,60842,sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/sorties/sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,ville de Marseille Leverrier CM2B,,10/10/2016,10.0000000,12.0000000,43.279980000000,5.352520000000,,"Anse de la Fausse Monnaie, Marseille 13007",52120,observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/observations/observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/Collumbelle rustique Columbella rustica 2.jpg,,TRUE, +N1,60842,sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/sorties/sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,ville de Marseille Leverrier CM2B,,10/10/2016,10.0000000,12.0000000,43.279980000000,5.352520000000,,"Anse de la Fausse Monnaie, Marseille 13007",52122,observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-2,"""https://biolit.fr/observations/observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-2/""",Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Anemone solaire Cereus pedunculatus.jpg,,TRUE, +N1,60842,sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/sorties/sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,ville de Marseille Leverrier CM2B,,10/10/2016,10.0000000,12.0000000,43.279980000000,5.352520000000,,"Anse de la Fausse Monnaie, Marseille 13007",52124,observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-3,https://biolit.fr/observations/observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-3/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/Collumbelle rustique Columbella rustica.jpg,,TRUE, +N1,60842,sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/sorties/sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,ville de Marseille Leverrier CM2B,,10/10/2016,10.0000000,12.0000000,43.279980000000,5.352520000000,,"Anse de la Fausse Monnaie, Marseille 13007",52126,observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-4,https://biolit.fr/observations/observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-4/,Phalacrocorax aristotelis,Cormoran huppé,,https://biolit.fr/wp-content/uploads/2023/07/Cormoran huppe Phalacrocorax aristoteli.jpg,,TRUE, +N1,60842,sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/sorties/sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,ville de Marseille Leverrier CM2B,,10/10/2016,10.0000000,12.0000000,43.279980000000,5.352520000000,,"Anse de la Fausse Monnaie, Marseille 13007",52128,observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-5,https://biolit.fr/observations/observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabe marbre Pchygrapsus marmoratus dos.jpg,,FALSE, +N1,60842,sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/sorties/sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,ville de Marseille Leverrier CM2B,,10/10/2016,10.0000000,12.0000000,43.279980000000,5.352520000000,,"Anse de la Fausse Monnaie, Marseille 13007",52130,observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-6,https://biolit.fr/observations/observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabe marbre Pchygrapsus marmoratus ventre.jpg,,FALSE, +N1,60842,sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/sorties/sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,ville de Marseille Leverrier CM2B,,10/10/2016,10.0000000,12.0000000,43.279980000000,5.352520000000,,"Anse de la Fausse Monnaie, Marseille 13007",52132,observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-7,https://biolit.fr/observations/observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crabe verruqueux- Eriphia verrucosa-scaled.jpg,,FALSE, +N1,60842,sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/sorties/sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,ville de Marseille Leverrier CM2B,,10/10/2016,10.0000000,12.0000000,43.279980000000,5.352520000000,,"Anse de la Fausse Monnaie, Marseille 13007",52133,observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-8,https://biolit.fr/observations/observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/eponge-scaled.jpg,,FALSE, +N1,60842,sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/sorties/sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,ville de Marseille Leverrier CM2B,,10/10/2016,10.0000000,12.0000000,43.279980000000,5.352520000000,,"Anse de la Fausse Monnaie, Marseille 13007",52134,observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-9,https://biolit.fr/observations/observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Laitue de mer Ulva rigida.jpg,,FALSE, +N1,60842,sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/sorties/sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,ville de Marseille Leverrier CM2B,,10/10/2016,10.0000000,12.0000000,43.279980000000,5.352520000000,,"Anse de la Fausse Monnaie, Marseille 13007",52136,observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-10,https://biolit.fr/observations/observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-10/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/littorines -scaled.jpg,,TRUE, +N1,60842,sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/sorties/sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,ville de Marseille Leverrier CM2B,,10/10/2016,10.0000000,12.0000000,43.279980000000,5.352520000000,,"Anse de la Fausse Monnaie, Marseille 13007",52138,observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-11,https://biolit.fr/observations/observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-11/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/littorines bleu Littorina neritoides.jpg,,TRUE, +N1,60842,sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/sorties/sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,ville de Marseille Leverrier CM2B,,10/10/2016,10.0000000,12.0000000,43.279980000000,5.352520000000,,"Anse de la Fausse Monnaie, Marseille 13007",52140,observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-12,https://biolit.fr/observations/observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-12/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/Patelle de Mediterranee Patella caerulea 2.jpg,,TRUE, +N1,60842,sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/sorties/sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,ville de Marseille Leverrier CM2B,,10/10/2016,10.0000000,12.0000000,43.279980000000,5.352520000000,,"Anse de la Fausse Monnaie, Marseille 13007",52142,observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-13,https://biolit.fr/observations/observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-13/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/Patelle de Mediterranee Patella caerulea.jpg,,TRUE, +N1,60842,sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/sorties/sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,ville de Marseille Leverrier CM2B,,10/10/2016,10.0000000,12.0000000,43.279980000000,5.352520000000,,"Anse de la Fausse Monnaie, Marseille 13007",52144,observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-14,https://biolit.fr/observations/observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-14/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Petoncle noir Mimachlamys varia 2.jpg,,TRUE, +N1,60842,sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/sorties/sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,ville de Marseille Leverrier CM2B,,10/10/2016,10.0000000,12.0000000,43.279980000000,5.352520000000,,"Anse de la Fausse Monnaie, Marseille 13007",52146,observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-15,https://biolit.fr/observations/observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/POSIDONIE-Posidonia oceanica-scaled.jpg,,FALSE, +N1,60842,sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/sorties/sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,ville de Marseille Leverrier CM2B,,10/10/2016,10.0000000,12.0000000,43.279980000000,5.352520000000,,"Anse de la Fausse Monnaie, Marseille 13007",52147,observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-16,https://biolit.fr/observations/observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/tomates de mer Actinia schmidti.jpg,,FALSE, +N1,60843,sortie-a68a2121-f0c0-487f-b0fa-5bdb8ef91efe,https://biolit.fr/sorties/sortie-a68a2121-f0c0-487f-b0fa-5bdb8ef91efe/,Phil,,11/27/2016 0:00,14.0:15,14.0000000,43.404631000000,4.976896000000,,Port-de-Bouc - Bouches-du-Rhône,52149,observation-a68a2121-f0c0-487f-b0fa-5bdb8ef91efe,https://biolit.fr/observations/observation-a68a2121-f0c0-487f-b0fa-5bdb8ef91efe/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161127_141351.jpg,,FALSE, +N1,60843,sortie-a68a2121-f0c0-487f-b0fa-5bdb8ef91efe,https://biolit.fr/sorties/sortie-a68a2121-f0c0-487f-b0fa-5bdb8ef91efe/,Phil,,11/27/2016 0:00,14.0:15,14.0000000,43.404631000000,4.976896000000,,Port-de-Bouc - Bouches-du-Rhône,52151,observation-a68a2121-f0c0-487f-b0fa-5bdb8ef91efe-2,https://biolit.fr/observations/observation-a68a2121-f0c0-487f-b0fa-5bdb8ef91efe-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161127_141502.jpg,,FALSE, +N1,60843,sortie-a68a2121-f0c0-487f-b0fa-5bdb8ef91efe,https://biolit.fr/sorties/sortie-a68a2121-f0c0-487f-b0fa-5bdb8ef91efe/,Phil,,11/27/2016 0:00,14.0:15,14.0000000,43.404631000000,4.976896000000,,Port-de-Bouc - Bouches-du-Rhône,52153,observation-a68a2121-f0c0-487f-b0fa-5bdb8ef91efe-3,https://biolit.fr/observations/observation-a68a2121-f0c0-487f-b0fa-5bdb8ef91efe-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161127_141708.jpg,,FALSE, +N1,60844,sortie-c1913c2b-b6d6-4c92-b780-4c6a693e4b9e,https://biolit.fr/sorties/sortie-c1913c2b-b6d6-4c92-b780-4c6a693e4b9e/,Phil,,11/29/2016 0:00,13.0000000,13.0:35,47.833759000000,-4.174781000000,,Loctudy - Finistère,52155,observation-c1913c2b-b6d6-4c92-b780-4c6a693e4b9e,https://biolit.fr/observations/observation-c1913c2b-b6d6-4c92-b780-4c6a693e4b9e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050025.JPG,,FALSE, +N1,60844,sortie-c1913c2b-b6d6-4c92-b780-4c6a693e4b9e,https://biolit.fr/sorties/sortie-c1913c2b-b6d6-4c92-b780-4c6a693e4b9e/,Phil,,11/29/2016 0:00,13.0000000,13.0:35,47.833759000000,-4.174781000000,,Loctudy - Finistère,52157,observation-c1913c2b-b6d6-4c92-b780-4c6a693e4b9e-2,https://biolit.fr/observations/observation-c1913c2b-b6d6-4c92-b780-4c6a693e4b9e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050032.JPG,,FALSE, +N1,60844,sortie-c1913c2b-b6d6-4c92-b780-4c6a693e4b9e,https://biolit.fr/sorties/sortie-c1913c2b-b6d6-4c92-b780-4c6a693e4b9e/,Phil,,11/29/2016 0:00,13.0000000,13.0:35,47.833759000000,-4.174781000000,,Loctudy - Finistère,52159,observation-c1913c2b-b6d6-4c92-b780-4c6a693e4b9e-3,https://biolit.fr/observations/observation-c1913c2b-b6d6-4c92-b780-4c6a693e4b9e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050033.JPG,,FALSE, +N1,60844,sortie-c1913c2b-b6d6-4c92-b780-4c6a693e4b9e,https://biolit.fr/sorties/sortie-c1913c2b-b6d6-4c92-b780-4c6a693e4b9e/,Phil,,11/29/2016 0:00,13.0000000,13.0:35,47.833759000000,-4.174781000000,,Loctudy - Finistère,52161,observation-c1913c2b-b6d6-4c92-b780-4c6a693e4b9e-4,https://biolit.fr/observations/observation-c1913c2b-b6d6-4c92-b780-4c6a693e4b9e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050034.JPG,,FALSE, +N1,60845,sortie-0f23aa38-ddd5-4e4a-ac20-059e403f12aa,https://biolit.fr/sorties/sortie-0f23aa38-ddd5-4e4a-ac20-059e403f12aa/,Phil,,11/02/2016,15.0000000,15.000005,47.792529000000,-4.359598000000,,Penmarc'h - Finistère,52163,observation-0f23aa38-ddd5-4e4a-ac20-059e403f12aa,https://biolit.fr/observations/observation-0f23aa38-ddd5-4e4a-ac20-059e403f12aa/,Anurida maritima,Collembole marin,,https://biolit.fr/wp-content/uploads/2023/07/P1040763.JPG,,TRUE, +N1,60845,sortie-0f23aa38-ddd5-4e4a-ac20-059e403f12aa,https://biolit.fr/sorties/sortie-0f23aa38-ddd5-4e4a-ac20-059e403f12aa/,Phil,,11/02/2016,15.0000000,15.000005,47.792529000000,-4.359598000000,,Penmarc'h - Finistère,52165,observation-0f23aa38-ddd5-4e4a-ac20-059e403f12aa-2,https://biolit.fr/observations/observation-0f23aa38-ddd5-4e4a-ac20-059e403f12aa-2/,Anurida maritima,Collembole marin,,https://biolit.fr/wp-content/uploads/2023/07/P1040765.JPG,,TRUE, +N1,60845,sortie-0f23aa38-ddd5-4e4a-ac20-059e403f12aa,https://biolit.fr/sorties/sortie-0f23aa38-ddd5-4e4a-ac20-059e403f12aa/,Phil,,11/02/2016,15.0000000,15.000005,47.792529000000,-4.359598000000,,Penmarc'h - Finistère,52167,observation-0f23aa38-ddd5-4e4a-ac20-059e403f12aa-3,https://biolit.fr/observations/observation-0f23aa38-ddd5-4e4a-ac20-059e403f12aa-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040775.JPG,,FALSE, +N1,60846,sortie-48d7e435-8b9d-48f7-9489-8247bab37832,https://biolit.fr/sorties/sortie-48d7e435-8b9d-48f7-9489-8247bab37832/,Florence Borzillo,,11/08/2016,15.0000000,16.0000000,43.214399000000,5.42359500000,,"calanque sugiton, parc Luminy",52169,observation-48d7e435-8b9d-48f7-9489-8247bab37832,https://biolit.fr/observations/observation-48d7e435-8b9d-48f7-9489-8247bab37832/,,,,https://biolit.fr/wp-content/uploads/2023/07/arbousier_0-rotated.jpg,,FALSE, +N1,60847,sortie-c949cc6e-3264-4806-95a3-877901a46e9d,https://biolit.fr/sorties/sortie-c949cc6e-3264-4806-95a3-877901a46e9d/,Phil,,11/04/2016,13.0000000,13.0000000,47.872302000000,-3.932775000000,,Concarneau - Finistère,52171,observation-c949cc6e-3264-4806-95a3-877901a46e9d,https://biolit.fr/observations/observation-c949cc6e-3264-4806-95a3-877901a46e9d/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1040906.JPG,,TRUE, +N1,60847,sortie-c949cc6e-3264-4806-95a3-877901a46e9d,https://biolit.fr/sorties/sortie-c949cc6e-3264-4806-95a3-877901a46e9d/,Phil,,11/04/2016,13.0000000,13.0000000,47.872302000000,-3.932775000000,,Concarneau - Finistère,52173,observation-c949cc6e-3264-4806-95a3-877901a46e9d-2,https://biolit.fr/observations/observation-c949cc6e-3264-4806-95a3-877901a46e9d-2/,Doris verrucosa,Doris verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/P1040915.JPG,,TRUE, +N1,60847,sortie-c949cc6e-3264-4806-95a3-877901a46e9d,https://biolit.fr/sorties/sortie-c949cc6e-3264-4806-95a3-877901a46e9d/,Phil,,11/04/2016,13.0000000,13.0000000,47.872302000000,-3.932775000000,,Concarneau - Finistère,52175,observation-c949cc6e-3264-4806-95a3-877901a46e9d-3,https://biolit.fr/observations/observation-c949cc6e-3264-4806-95a3-877901a46e9d-3/,Doris verrucosa,Doris verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/P1040907.JPG,,TRUE, +N1,60847,sortie-c949cc6e-3264-4806-95a3-877901a46e9d,https://biolit.fr/sorties/sortie-c949cc6e-3264-4806-95a3-877901a46e9d/,Phil,,11/04/2016,13.0000000,13.0000000,47.872302000000,-3.932775000000,,Concarneau - Finistère,52177,observation-c949cc6e-3264-4806-95a3-877901a46e9d-4,https://biolit.fr/observations/observation-c949cc6e-3264-4806-95a3-877901a46e9d-4/,Doris verrucosa,Doris verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/P1040917.JPG,,TRUE, +N1,60847,sortie-c949cc6e-3264-4806-95a3-877901a46e9d,https://biolit.fr/sorties/sortie-c949cc6e-3264-4806-95a3-877901a46e9d/,Phil,,11/04/2016,13.0000000,13.0000000,47.872302000000,-3.932775000000,,Concarneau - Finistère,52179,observation-c949cc6e-3264-4806-95a3-877901a46e9d-5,https://biolit.fr/observations/observation-c949cc6e-3264-4806-95a3-877901a46e9d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040933.JPG,,FALSE, +N1,60847,sortie-c949cc6e-3264-4806-95a3-877901a46e9d,https://biolit.fr/sorties/sortie-c949cc6e-3264-4806-95a3-877901a46e9d/,Phil,,11/04/2016,13.0000000,13.0000000,47.872302000000,-3.932775000000,,Concarneau - Finistère,52181,observation-c949cc6e-3264-4806-95a3-877901a46e9d-6,https://biolit.fr/observations/observation-c949cc6e-3264-4806-95a3-877901a46e9d-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040931.JPG,,FALSE, +N1,60848,sortie-bce751ce-2c7a-467b-ba91-28532a38f0ef,https://biolit.fr/sorties/sortie-bce751ce-2c7a-467b-ba91-28532a38f0ef/,Phil,,11/02/2016,14.0:55,15.0000000,47.790850000000,-4.360216000000,,Penmarc'h - Finistère,52183,observation-bce751ce-2c7a-467b-ba91-28532a38f0ef,https://biolit.fr/observations/observation-bce751ce-2c7a-467b-ba91-28532a38f0ef/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040758.JPG,,FALSE, +N1,60848,sortie-bce751ce-2c7a-467b-ba91-28532a38f0ef,https://biolit.fr/sorties/sortie-bce751ce-2c7a-467b-ba91-28532a38f0ef/,Phil,,11/02/2016,14.0:55,15.0000000,47.790850000000,-4.360216000000,,Penmarc'h - Finistère,52185,observation-bce751ce-2c7a-467b-ba91-28532a38f0ef-2,https://biolit.fr/observations/observation-bce751ce-2c7a-467b-ba91-28532a38f0ef-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040750.JPG,,FALSE, +N1,60848,sortie-bce751ce-2c7a-467b-ba91-28532a38f0ef,https://biolit.fr/sorties/sortie-bce751ce-2c7a-467b-ba91-28532a38f0ef/,Phil,,11/02/2016,14.0:55,15.0000000,47.790850000000,-4.360216000000,,Penmarc'h - Finistère,52187,observation-bce751ce-2c7a-467b-ba91-28532a38f0ef-3,https://biolit.fr/observations/observation-bce751ce-2c7a-467b-ba91-28532a38f0ef-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040751.JPG,,FALSE, +N1,60848,sortie-bce751ce-2c7a-467b-ba91-28532a38f0ef,https://biolit.fr/sorties/sortie-bce751ce-2c7a-467b-ba91-28532a38f0ef/,Phil,,11/02/2016,14.0:55,15.0000000,47.790850000000,-4.360216000000,,Penmarc'h - Finistère,52189,observation-bce751ce-2c7a-467b-ba91-28532a38f0ef-4,https://biolit.fr/observations/observation-bce751ce-2c7a-467b-ba91-28532a38f0ef-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040760.JPG,,FALSE, +N1,60849,sortie-59daed55-9929-48c8-864f-eaa3714ab0fc,https://biolit.fr/sorties/sortie-59daed55-9929-48c8-864f-eaa3714ab0fc/,Phil,,11/04/2016,13.0:25,13.0:35,47.872595000000,-3.932034000000,,Concarneau - Finistère,52191,observation-59daed55-9929-48c8-864f-eaa3714ab0fc,https://biolit.fr/observations/observation-59daed55-9929-48c8-864f-eaa3714ab0fc/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040894.JPG,,FALSE, +N1,60849,sortie-59daed55-9929-48c8-864f-eaa3714ab0fc,https://biolit.fr/sorties/sortie-59daed55-9929-48c8-864f-eaa3714ab0fc/,Phil,,11/04/2016,13.0:25,13.0:35,47.872595000000,-3.932034000000,,Concarneau - Finistère,52193,observation-59daed55-9929-48c8-864f-eaa3714ab0fc-2,https://biolit.fr/observations/observation-59daed55-9929-48c8-864f-eaa3714ab0fc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040897.JPG,,FALSE, +N1,60849,sortie-59daed55-9929-48c8-864f-eaa3714ab0fc,https://biolit.fr/sorties/sortie-59daed55-9929-48c8-864f-eaa3714ab0fc/,Phil,,11/04/2016,13.0:25,13.0:35,47.872595000000,-3.932034000000,,Concarneau - Finistère,52195,observation-59daed55-9929-48c8-864f-eaa3714ab0fc-3,https://biolit.fr/observations/observation-59daed55-9929-48c8-864f-eaa3714ab0fc-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040902.JPG,,FALSE, +N1,60849,sortie-59daed55-9929-48c8-864f-eaa3714ab0fc,https://biolit.fr/sorties/sortie-59daed55-9929-48c8-864f-eaa3714ab0fc/,Phil,,11/04/2016,13.0:25,13.0:35,47.872595000000,-3.932034000000,,Concarneau - Finistère,52197,observation-59daed55-9929-48c8-864f-eaa3714ab0fc-4,https://biolit.fr/observations/observation-59daed55-9929-48c8-864f-eaa3714ab0fc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040893.JPG,,FALSE, +N1,60850,sortie-2092beba-0e6a-4053-9089-194d9641eacc,https://biolit.fr/sorties/sortie-2092beba-0e6a-4053-9089-194d9641eacc/,Phil,,11/02/2016,14.0000000,14.0:45,47.792267000000,-4.366035000000,,Penmarc'h - Finistère,52199,observation-2092beba-0e6a-4053-9089-194d9641eacc,https://biolit.fr/observations/observation-2092beba-0e6a-4053-9089-194d9641eacc/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040729.JPG,,TRUE, +N1,60850,sortie-2092beba-0e6a-4053-9089-194d9641eacc,https://biolit.fr/sorties/sortie-2092beba-0e6a-4053-9089-194d9641eacc/,Phil,,11/02/2016,14.0000000,14.0:45,47.792267000000,-4.366035000000,,Penmarc'h - Finistère,52201,observation-2092beba-0e6a-4053-9089-194d9641eacc-2,https://biolit.fr/observations/observation-2092beba-0e6a-4053-9089-194d9641eacc-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040746.JPG,,TRUE, +N1,60850,sortie-2092beba-0e6a-4053-9089-194d9641eacc,https://biolit.fr/sorties/sortie-2092beba-0e6a-4053-9089-194d9641eacc/,Phil,,11/02/2016,14.0000000,14.0:45,47.792267000000,-4.366035000000,,Penmarc'h - Finistère,52203,observation-2092beba-0e6a-4053-9089-194d9641eacc-3,https://biolit.fr/observations/observation-2092beba-0e6a-4053-9089-194d9641eacc-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040738.JPG,,TRUE, +N1,60850,sortie-2092beba-0e6a-4053-9089-194d9641eacc,https://biolit.fr/sorties/sortie-2092beba-0e6a-4053-9089-194d9641eacc/,Phil,,11/02/2016,14.0000000,14.0:45,47.792267000000,-4.366035000000,,Penmarc'h - Finistère,52205,observation-2092beba-0e6a-4053-9089-194d9641eacc-4,https://biolit.fr/observations/observation-2092beba-0e6a-4053-9089-194d9641eacc-4/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20161102_134131.jpg,,TRUE, +N1,60850,sortie-2092beba-0e6a-4053-9089-194d9641eacc,https://biolit.fr/sorties/sortie-2092beba-0e6a-4053-9089-194d9641eacc/,Phil,,11/02/2016,14.0000000,14.0:45,47.792267000000,-4.366035000000,,Penmarc'h - Finistère,52207,observation-2092beba-0e6a-4053-9089-194d9641eacc-5,https://biolit.fr/observations/observation-2092beba-0e6a-4053-9089-194d9641eacc-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040726.JPG,,FALSE, +N1,60851,sortie-e5d9b605-c881-4282-b07b-9b85f1df9ab8,https://biolit.fr/sorties/sortie-e5d9b605-c881-4282-b07b-9b85f1df9ab8/,Phil,,11/04/2016,13.0:15,13.0000000,47.873450000000,-3.933547000000,,Concarneau - Finistère,52209,observation-e5d9b605-c881-4282-b07b-9b85f1df9ab8,https://biolit.fr/observations/observation-e5d9b605-c881-4282-b07b-9b85f1df9ab8/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1040890.JPG,,TRUE, +N1,60851,sortie-e5d9b605-c881-4282-b07b-9b85f1df9ab8,https://biolit.fr/sorties/sortie-e5d9b605-c881-4282-b07b-9b85f1df9ab8/,Phil,,11/04/2016,13.0:15,13.0000000,47.873450000000,-3.933547000000,,Concarneau - Finistère,52211,observation-e5d9b605-c881-4282-b07b-9b85f1df9ab8-2,https://biolit.fr/observations/observation-e5d9b605-c881-4282-b07b-9b85f1df9ab8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040888.JPG,,FALSE, +N1,60851,sortie-e5d9b605-c881-4282-b07b-9b85f1df9ab8,https://biolit.fr/sorties/sortie-e5d9b605-c881-4282-b07b-9b85f1df9ab8/,Phil,,11/04/2016,13.0:15,13.0000000,47.873450000000,-3.933547000000,,Concarneau - Finistère,52213,observation-e5d9b605-c881-4282-b07b-9b85f1df9ab8-3,https://biolit.fr/observations/observation-e5d9b605-c881-4282-b07b-9b85f1df9ab8-3/,Phymatolithon calcareum,Maërl,,https://biolit.fr/wp-content/uploads/2023/07/P1040886.JPG,,TRUE, +N1,60851,sortie-e5d9b605-c881-4282-b07b-9b85f1df9ab8,https://biolit.fr/sorties/sortie-e5d9b605-c881-4282-b07b-9b85f1df9ab8/,Phil,,11/04/2016,13.0:15,13.0000000,47.873450000000,-3.933547000000,,Concarneau - Finistère,52215,observation-e5d9b605-c881-4282-b07b-9b85f1df9ab8-4,https://biolit.fr/observations/observation-e5d9b605-c881-4282-b07b-9b85f1df9ab8-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040882.JPG,,FALSE, +N1,60851,sortie-e5d9b605-c881-4282-b07b-9b85f1df9ab8,https://biolit.fr/sorties/sortie-e5d9b605-c881-4282-b07b-9b85f1df9ab8/,Phil,,11/04/2016,13.0:15,13.0000000,47.873450000000,-3.933547000000,,Concarneau - Finistère,52217,observation-e5d9b605-c881-4282-b07b-9b85f1df9ab8-5,https://biolit.fr/observations/observation-e5d9b605-c881-4282-b07b-9b85f1df9ab8-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040880.JPG,,FALSE, +N1,60852,sortie-e8ca5205-cf3b-4386-88e4-af50dd721683,https://biolit.fr/sorties/sortie-e8ca5205-cf3b-4386-88e4-af50dd721683/,Phil,,11/02/2016,14.0:25,14.0000000,47.792512000000,-4.361229000000,,Penmarc'h - Finistère,52219,observation-e8ca5205-cf3b-4386-88e4-af50dd721683,https://biolit.fr/observations/observation-e8ca5205-cf3b-4386-88e4-af50dd721683/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040725.JPG,,TRUE, +N1,60852,sortie-e8ca5205-cf3b-4386-88e4-af50dd721683,https://biolit.fr/sorties/sortie-e8ca5205-cf3b-4386-88e4-af50dd721683/,Phil,,11/02/2016,14.0:25,14.0000000,47.792512000000,-4.361229000000,,Penmarc'h - Finistère,52221,observation-e8ca5205-cf3b-4386-88e4-af50dd721683-2,https://biolit.fr/observations/observation-e8ca5205-cf3b-4386-88e4-af50dd721683-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040708.JPG,,FALSE, +N1,60852,sortie-e8ca5205-cf3b-4386-88e4-af50dd721683,https://biolit.fr/sorties/sortie-e8ca5205-cf3b-4386-88e4-af50dd721683/,Phil,,11/02/2016,14.0:25,14.0000000,47.792512000000,-4.361229000000,,Penmarc'h - Finistère,52223,observation-e8ca5205-cf3b-4386-88e4-af50dd721683-3,https://biolit.fr/observations/observation-e8ca5205-cf3b-4386-88e4-af50dd721683-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040707.JPG,,FALSE, +N1,60852,sortie-e8ca5205-cf3b-4386-88e4-af50dd721683,https://biolit.fr/sorties/sortie-e8ca5205-cf3b-4386-88e4-af50dd721683/,Phil,,11/02/2016,14.0:25,14.0000000,47.792512000000,-4.361229000000,,Penmarc'h - Finistère,52225,observation-e8ca5205-cf3b-4386-88e4-af50dd721683-4,https://biolit.fr/observations/observation-e8ca5205-cf3b-4386-88e4-af50dd721683-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040709.JPG,,FALSE, +N1,60852,sortie-e8ca5205-cf3b-4386-88e4-af50dd721683,https://biolit.fr/sorties/sortie-e8ca5205-cf3b-4386-88e4-af50dd721683/,Phil,,11/02/2016,14.0:25,14.0000000,47.792512000000,-4.361229000000,,Penmarc'h - Finistère,52227,observation-e8ca5205-cf3b-4386-88e4-af50dd721683-5,https://biolit.fr/observations/observation-e8ca5205-cf3b-4386-88e4-af50dd721683-5/,Ericaria selaginoides,Cystoseire bleue,,https://biolit.fr/wp-content/uploads/2023/07/P1040712.JPG,,TRUE, +N1,60852,sortie-e8ca5205-cf3b-4386-88e4-af50dd721683,https://biolit.fr/sorties/sortie-e8ca5205-cf3b-4386-88e4-af50dd721683/,Phil,,11/02/2016,14.0:25,14.0000000,47.792512000000,-4.361229000000,,Penmarc'h - Finistère,52229,observation-e8ca5205-cf3b-4386-88e4-af50dd721683-6,https://biolit.fr/observations/observation-e8ca5205-cf3b-4386-88e4-af50dd721683-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040722.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52231,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2622.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52233,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-2,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2623.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52235,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-3,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2624.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52237,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-4,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2625.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52239,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-5,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2626.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52241,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-6,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2627.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52243,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-7,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2628.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52245,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-8,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2629.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52247,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-9,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2630.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52249,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-10,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2631.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52251,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-11,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2632.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52253,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-12,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2633.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52255,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-13,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2634.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52257,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-14,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2635.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52259,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-15,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2638.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52261,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-16,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2639.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52263,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-17,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2641.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52265,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-18,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2642.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52267,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-19,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2643.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52269,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-20,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2646.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52271,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-21,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2647.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52273,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-22,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2650.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52275,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-23,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2651.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52277,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-24,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-24/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2652.JPG,,TRUE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52279,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-25,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2653.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52281,observation-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2546.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52283,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-2,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2547.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52285,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-3,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2548.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52287,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-4,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2552.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52289,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-5,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2553.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52291,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-6,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2561.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52293,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-7,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2562.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52295,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-8,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2563.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52297,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-9,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-9/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2567.JPG,,TRUE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52299,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-10,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2569.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52301,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-11,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-11/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/DSCF2570.JPG,,TRUE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52303,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-12,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2575.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52305,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-13,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2576.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52307,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-14,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2577.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52309,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-15,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-15/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2579.JPG,,TRUE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52311,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-16,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2581.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52313,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-17,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2582.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52315,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-18,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2583.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52317,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-19,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2584.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52319,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-20,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2585.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52321,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-21,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2586.JPG,,FALSE, +N1,60855,sortie-823e3150-a6d8-4108-a2d5-25cff7e13627,https://biolit.fr/sorties/sortie-823e3150-a6d8-4108-a2d5-25cff7e13627/,Phil,,11/02/2016,14.0:25,14.0:35,47.790748000000,-4.364104000000,,Penmarc'h - Finistère,52323,observation-823e3150-a6d8-4108-a2d5-25cff7e13627,https://biolit.fr/observations/observation-823e3150-a6d8-4108-a2d5-25cff7e13627/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/P1040705.JPG,,TRUE, +N1,60855,sortie-823e3150-a6d8-4108-a2d5-25cff7e13627,https://biolit.fr/sorties/sortie-823e3150-a6d8-4108-a2d5-25cff7e13627/,Phil,,11/02/2016,14.0:25,14.0:35,47.790748000000,-4.364104000000,,Penmarc'h - Finistère,52325,observation-823e3150-a6d8-4108-a2d5-25cff7e13627-2,https://biolit.fr/observations/observation-823e3150-a6d8-4108-a2d5-25cff7e13627-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040700.JPG,,FALSE, +N1,60855,sortie-823e3150-a6d8-4108-a2d5-25cff7e13627,https://biolit.fr/sorties/sortie-823e3150-a6d8-4108-a2d5-25cff7e13627/,Phil,,11/02/2016,14.0:25,14.0:35,47.790748000000,-4.364104000000,,Penmarc'h - Finistère,52327,observation-823e3150-a6d8-4108-a2d5-25cff7e13627-3,https://biolit.fr/observations/observation-823e3150-a6d8-4108-a2d5-25cff7e13627-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040701.JPG,,FALSE, +N1,60855,sortie-823e3150-a6d8-4108-a2d5-25cff7e13627,https://biolit.fr/sorties/sortie-823e3150-a6d8-4108-a2d5-25cff7e13627/,Phil,,11/02/2016,14.0:25,14.0:35,47.790748000000,-4.364104000000,,Penmarc'h - Finistère,52329,observation-823e3150-a6d8-4108-a2d5-25cff7e13627-4,https://biolit.fr/observations/observation-823e3150-a6d8-4108-a2d5-25cff7e13627-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040703.JPG,,FALSE, +N1,60856,sortie-e5ca3612-3c03-41e9-a60a-af0542695e5f,https://biolit.fr/sorties/sortie-e5ca3612-3c03-41e9-a60a-af0542695e5f/,Phil,,11/02/2016,15.0:25,15.0000000,47.799354000000,-4.184126000000,,Loctudy - Finistère,52331,observation-e5ca3612-3c03-41e9-a60a-af0542695e5f,https://biolit.fr/observations/observation-e5ca3612-3c03-41e9-a60a-af0542695e5f/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161102_153355.jpg,,FALSE, +N1,60857,sortie-c3c5344f-deb3-4c38-9220-46689e35de7d,https://biolit.fr/sorties/sortie-c3c5344f-deb3-4c38-9220-46689e35de7d/,Phil,,11/04/2016,13.0000000,13.0000000,47.873034000000,-3.933652000000,,Concarneau - Finistère,52333,observation-c3c5344f-deb3-4c38-9220-46689e35de7d,https://biolit.fr/observations/observation-c3c5344f-deb3-4c38-9220-46689e35de7d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040864.JPG,,FALSE, +N1,60857,sortie-c3c5344f-deb3-4c38-9220-46689e35de7d,https://biolit.fr/sorties/sortie-c3c5344f-deb3-4c38-9220-46689e35de7d/,Phil,,11/04/2016,13.0000000,13.0000000,47.873034000000,-3.933652000000,,Concarneau - Finistère,52335,observation-c3c5344f-deb3-4c38-9220-46689e35de7d-2,https://biolit.fr/observations/observation-c3c5344f-deb3-4c38-9220-46689e35de7d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040869.JPG,,FALSE, +N1,60857,sortie-c3c5344f-deb3-4c38-9220-46689e35de7d,https://biolit.fr/sorties/sortie-c3c5344f-deb3-4c38-9220-46689e35de7d/,Phil,,11/04/2016,13.0000000,13.0000000,47.873034000000,-3.933652000000,,Concarneau - Finistère,52337,observation-c3c5344f-deb3-4c38-9220-46689e35de7d-3,https://biolit.fr/observations/observation-c3c5344f-deb3-4c38-9220-46689e35de7d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040879.JPG,,FALSE, +N1,60857,sortie-c3c5344f-deb3-4c38-9220-46689e35de7d,https://biolit.fr/sorties/sortie-c3c5344f-deb3-4c38-9220-46689e35de7d/,Phil,,11/04/2016,13.0000000,13.0000000,47.873034000000,-3.933652000000,,Concarneau - Finistère,52339,observation-c3c5344f-deb3-4c38-9220-46689e35de7d-4,https://biolit.fr/observations/observation-c3c5344f-deb3-4c38-9220-46689e35de7d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040857.JPG,,FALSE, +N1,60857,sortie-c3c5344f-deb3-4c38-9220-46689e35de7d,https://biolit.fr/sorties/sortie-c3c5344f-deb3-4c38-9220-46689e35de7d/,Phil,,11/04/2016,13.0000000,13.0000000,47.873034000000,-3.933652000000,,Concarneau - Finistère,52341,observation-c3c5344f-deb3-4c38-9220-46689e35de7d-5,https://biolit.fr/observations/observation-c3c5344f-deb3-4c38-9220-46689e35de7d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040862.JPG,,FALSE, +N1,60857,sortie-c3c5344f-deb3-4c38-9220-46689e35de7d,https://biolit.fr/sorties/sortie-c3c5344f-deb3-4c38-9220-46689e35de7d/,Phil,,11/04/2016,13.0000000,13.0000000,47.873034000000,-3.933652000000,,Concarneau - Finistère,52343,observation-c3c5344f-deb3-4c38-9220-46689e35de7d-6,https://biolit.fr/observations/observation-c3c5344f-deb3-4c38-9220-46689e35de7d-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040861.JPG,,FALSE, +N1,60858,sortie-3e3313ab-8da7-46b1-b8fc-35e058b0173c,https://biolit.fr/sorties/sortie-3e3313ab-8da7-46b1-b8fc-35e058b0173c/,Phil,,11/02/2016,15.0:35,15.0000000,47.800439000000,-4.183345000000,,Loctudy - Finistère,52345,observation-3e3313ab-8da7-46b1-b8fc-35e058b0173c,https://biolit.fr/observations/observation-3e3313ab-8da7-46b1-b8fc-35e058b0173c/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161102_153551.jpg,,FALSE, +N1,60858,sortie-3e3313ab-8da7-46b1-b8fc-35e058b0173c,https://biolit.fr/sorties/sortie-3e3313ab-8da7-46b1-b8fc-35e058b0173c/,Phil,,11/02/2016,15.0:35,15.0000000,47.800439000000,-4.183345000000,,Loctudy - Finistère,52347,observation-3e3313ab-8da7-46b1-b8fc-35e058b0173c-2,https://biolit.fr/observations/observation-3e3313ab-8da7-46b1-b8fc-35e058b0173c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161102_153655.jpg,,FALSE, +N1,60859,sortie-71da2471-69c1-45d2-b894-538552bbd7c9,https://biolit.fr/sorties/sortie-71da2471-69c1-45d2-b894-538552bbd7c9/,Phil,,11/02/2016,14.0000000,14.0000000,47.791705000000,-4.360748000000,,Penmarc'h - Finistère,52349,observation-71da2471-69c1-45d2-b894-538552bbd7c9,https://biolit.fr/observations/observation-71da2471-69c1-45d2-b894-538552bbd7c9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040689.JPG,,FALSE, +N1,60859,sortie-71da2471-69c1-45d2-b894-538552bbd7c9,https://biolit.fr/sorties/sortie-71da2471-69c1-45d2-b894-538552bbd7c9/,Phil,,11/02/2016,14.0000000,14.0000000,47.791705000000,-4.360748000000,,Penmarc'h - Finistère,52351,observation-71da2471-69c1-45d2-b894-538552bbd7c9-2,https://biolit.fr/observations/observation-71da2471-69c1-45d2-b894-538552bbd7c9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040690.JPG,,FALSE, +N1,60860,sortie-2060735f-53c6-4809-a582-41d8326f8504,https://biolit.fr/sorties/sortie-2060735f-53c6-4809-a582-41d8326f8504/,Phil,,11/04/2016,13.0000000,13.0000000,47.872680000000,-3.93308400000,,Concarneau - Finistère,52353,observation-2060735f-53c6-4809-a582-41d8326f8504,https://biolit.fr/observations/observation-2060735f-53c6-4809-a582-41d8326f8504/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040819.JPG,,FALSE, +N1,60860,sortie-2060735f-53c6-4809-a582-41d8326f8504,https://biolit.fr/sorties/sortie-2060735f-53c6-4809-a582-41d8326f8504/,Phil,,11/04/2016,13.0000000,13.0000000,47.872680000000,-3.93308400000,,Concarneau - Finistère,52355,observation-2060735f-53c6-4809-a582-41d8326f8504-2,https://biolit.fr/observations/observation-2060735f-53c6-4809-a582-41d8326f8504-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040823.JPG,,FALSE, +N1,60860,sortie-2060735f-53c6-4809-a582-41d8326f8504,https://biolit.fr/sorties/sortie-2060735f-53c6-4809-a582-41d8326f8504/,Phil,,11/04/2016,13.0000000,13.0000000,47.872680000000,-3.93308400000,,Concarneau - Finistère,52357,observation-2060735f-53c6-4809-a582-41d8326f8504-3,https://biolit.fr/observations/observation-2060735f-53c6-4809-a582-41d8326f8504-3/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1040824.JPG,,TRUE, +N1,60860,sortie-2060735f-53c6-4809-a582-41d8326f8504,https://biolit.fr/sorties/sortie-2060735f-53c6-4809-a582-41d8326f8504/,Phil,,11/04/2016,13.0000000,13.0000000,47.872680000000,-3.93308400000,,Concarneau - Finistère,52359,observation-2060735f-53c6-4809-a582-41d8326f8504-4,https://biolit.fr/observations/observation-2060735f-53c6-4809-a582-41d8326f8504-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040835.JPG,,FALSE, +N1,60860,sortie-2060735f-53c6-4809-a582-41d8326f8504,https://biolit.fr/sorties/sortie-2060735f-53c6-4809-a582-41d8326f8504/,Phil,,11/04/2016,13.0000000,13.0000000,47.872680000000,-3.93308400000,,Concarneau - Finistère,52361,observation-2060735f-53c6-4809-a582-41d8326f8504-5,https://biolit.fr/observations/observation-2060735f-53c6-4809-a582-41d8326f8504-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040825.JPG,,FALSE, +N1,60860,sortie-2060735f-53c6-4809-a582-41d8326f8504,https://biolit.fr/sorties/sortie-2060735f-53c6-4809-a582-41d8326f8504/,Phil,,11/04/2016,13.0000000,13.0000000,47.872680000000,-3.93308400000,,Concarneau - Finistère,52363,observation-2060735f-53c6-4809-a582-41d8326f8504-6,https://biolit.fr/observations/observation-2060735f-53c6-4809-a582-41d8326f8504-6/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1040849.JPG,,TRUE, +N1,60861,sortie-7e39b8f5-9526-41db-88a9-21e81e2e5ce4,https://biolit.fr/sorties/sortie-7e39b8f5-9526-41db-88a9-21e81e2e5ce4/,Phil,,11/02/2016,14.0:15,14.0:25,47.792522000000,-4.364576000000,,Penmarc'h - Finistère,52365,observation-7e39b8f5-9526-41db-88a9-21e81e2e5ce4,https://biolit.fr/observations/observation-7e39b8f5-9526-41db-88a9-21e81e2e5ce4/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1040675.JPG,,TRUE, +N1,60861,sortie-7e39b8f5-9526-41db-88a9-21e81e2e5ce4,https://biolit.fr/sorties/sortie-7e39b8f5-9526-41db-88a9-21e81e2e5ce4/,Phil,,11/02/2016,14.0:15,14.0:25,47.792522000000,-4.364576000000,,Penmarc'h - Finistère,52367,observation-7e39b8f5-9526-41db-88a9-21e81e2e5ce4-2,https://biolit.fr/observations/observation-7e39b8f5-9526-41db-88a9-21e81e2e5ce4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040678.JPG,,FALSE, +N1,60861,sortie-7e39b8f5-9526-41db-88a9-21e81e2e5ce4,https://biolit.fr/sorties/sortie-7e39b8f5-9526-41db-88a9-21e81e2e5ce4/,Phil,,11/02/2016,14.0:15,14.0:25,47.792522000000,-4.364576000000,,Penmarc'h - Finistère,52369,observation-7e39b8f5-9526-41db-88a9-21e81e2e5ce4-3,https://biolit.fr/observations/observation-7e39b8f5-9526-41db-88a9-21e81e2e5ce4-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040680.JPG,,FALSE, +N1,60861,sortie-7e39b8f5-9526-41db-88a9-21e81e2e5ce4,https://biolit.fr/sorties/sortie-7e39b8f5-9526-41db-88a9-21e81e2e5ce4/,Phil,,11/02/2016,14.0:15,14.0:25,47.792522000000,-4.364576000000,,Penmarc'h - Finistère,52371,observation-7e39b8f5-9526-41db-88a9-21e81e2e5ce4-4,https://biolit.fr/observations/observation-7e39b8f5-9526-41db-88a9-21e81e2e5ce4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040682.JPG,,FALSE, +N1,60861,sortie-7e39b8f5-9526-41db-88a9-21e81e2e5ce4,https://biolit.fr/sorties/sortie-7e39b8f5-9526-41db-88a9-21e81e2e5ce4/,Phil,,11/02/2016,14.0:15,14.0:25,47.792522000000,-4.364576000000,,Penmarc'h - Finistère,52373,observation-7e39b8f5-9526-41db-88a9-21e81e2e5ce4-5,https://biolit.fr/observations/observation-7e39b8f5-9526-41db-88a9-21e81e2e5ce4-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040685.JPG,,FALSE, +N1,60862,sortie-575dde76-3cc8-4002-b947-ef45cff1d7e7,https://biolit.fr/sorties/sortie-575dde76-3cc8-4002-b947-ef45cff1d7e7/,Phil,,11/04/2016,12.0000000,12.0:55,47.873317000000,-3.933328000000,,Concarneau - Finistère,52375,observation-575dde76-3cc8-4002-b947-ef45cff1d7e7,https://biolit.fr/observations/observation-575dde76-3cc8-4002-b947-ef45cff1d7e7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040802.JPG,,FALSE, +N1,60862,sortie-575dde76-3cc8-4002-b947-ef45cff1d7e7,https://biolit.fr/sorties/sortie-575dde76-3cc8-4002-b947-ef45cff1d7e7/,Phil,,11/04/2016,12.0000000,12.0:55,47.873317000000,-3.933328000000,,Concarneau - Finistère,52377,observation-575dde76-3cc8-4002-b947-ef45cff1d7e7-2,https://biolit.fr/observations/observation-575dde76-3cc8-4002-b947-ef45cff1d7e7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040801.JPG,,FALSE, +N1,60862,sortie-575dde76-3cc8-4002-b947-ef45cff1d7e7,https://biolit.fr/sorties/sortie-575dde76-3cc8-4002-b947-ef45cff1d7e7/,Phil,,11/04/2016,12.0000000,12.0:55,47.873317000000,-3.933328000000,,Concarneau - Finistère,52379,observation-575dde76-3cc8-4002-b947-ef45cff1d7e7-3,https://biolit.fr/observations/observation-575dde76-3cc8-4002-b947-ef45cff1d7e7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040810.JPG,,FALSE, +N1,60862,sortie-575dde76-3cc8-4002-b947-ef45cff1d7e7,https://biolit.fr/sorties/sortie-575dde76-3cc8-4002-b947-ef45cff1d7e7/,Phil,,11/04/2016,12.0000000,12.0:55,47.873317000000,-3.933328000000,,Concarneau - Finistère,52381,observation-575dde76-3cc8-4002-b947-ef45cff1d7e7-4,https://biolit.fr/observations/observation-575dde76-3cc8-4002-b947-ef45cff1d7e7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040812.JPG,,FALSE, +N1,60862,sortie-575dde76-3cc8-4002-b947-ef45cff1d7e7,https://biolit.fr/sorties/sortie-575dde76-3cc8-4002-b947-ef45cff1d7e7/,Phil,,11/04/2016,12.0000000,12.0:55,47.873317000000,-3.933328000000,,Concarneau - Finistère,52383,observation-575dde76-3cc8-4002-b947-ef45cff1d7e7-5,https://biolit.fr/observations/observation-575dde76-3cc8-4002-b947-ef45cff1d7e7-5/,Zeus faber,Saint-pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1040818.JPG,,TRUE, +N1,60863,sortie-a4dacb7e-7d19-4045-bbb8-506ca255b1d2,https://biolit.fr/sorties/sortie-a4dacb7e-7d19-4045-bbb8-506ca255b1d2/,Phil,,10/20/2016 0:00,16.0:15,16.0000000,48.120162000000,-4.283484000000,,Plonevez Porzay - Finistère,52385,observation-a4dacb7e-7d19-4045-bbb8-506ca255b1d2,https://biolit.fr/observations/observation-a4dacb7e-7d19-4045-bbb8-506ca255b1d2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040616.JPG,,FALSE, +N1,60864,sortie-f1feaa63-2dfc-449a-aacf-a68686cec7a9,https://biolit.fr/sorties/sortie-f1feaa63-2dfc-449a-aacf-a68686cec7a9/,Phil,,11/02/2016,14.0000000,14.0000000,47.792454000000,-4.364795000000,,Penmarc'h - Finistère,52387,observation-f1feaa63-2dfc-449a-aacf-a68686cec7a9,https://biolit.fr/observations/observation-f1feaa63-2dfc-449a-aacf-a68686cec7a9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040674.JPG,,FALSE, +N1,60864,sortie-f1feaa63-2dfc-449a-aacf-a68686cec7a9,https://biolit.fr/sorties/sortie-f1feaa63-2dfc-449a-aacf-a68686cec7a9/,Phil,,11/02/2016,14.0000000,14.0000000,47.792454000000,-4.364795000000,,Penmarc'h - Finistère,52389,observation-f1feaa63-2dfc-449a-aacf-a68686cec7a9-2,https://biolit.fr/observations/observation-f1feaa63-2dfc-449a-aacf-a68686cec7a9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040670.JPG,,FALSE, +N1,60864,sortie-f1feaa63-2dfc-449a-aacf-a68686cec7a9,https://biolit.fr/sorties/sortie-f1feaa63-2dfc-449a-aacf-a68686cec7a9/,Phil,,11/02/2016,14.0000000,14.0000000,47.792454000000,-4.364795000000,,Penmarc'h - Finistère,52391,observation-f1feaa63-2dfc-449a-aacf-a68686cec7a9-3,https://biolit.fr/observations/observation-f1feaa63-2dfc-449a-aacf-a68686cec7a9-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040671.JPG,,TRUE, +N1,60864,sortie-f1feaa63-2dfc-449a-aacf-a68686cec7a9,https://biolit.fr/sorties/sortie-f1feaa63-2dfc-449a-aacf-a68686cec7a9/,Phil,,11/02/2016,14.0000000,14.0000000,47.792454000000,-4.364795000000,,Penmarc'h - Finistère,52393,observation-f1feaa63-2dfc-449a-aacf-a68686cec7a9-4,https://biolit.fr/observations/observation-f1feaa63-2dfc-449a-aacf-a68686cec7a9-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040672.JPG,,FALSE, +N1,60864,sortie-f1feaa63-2dfc-449a-aacf-a68686cec7a9,https://biolit.fr/sorties/sortie-f1feaa63-2dfc-449a-aacf-a68686cec7a9/,Phil,,11/02/2016,14.0000000,14.0000000,47.792454000000,-4.364795000000,,Penmarc'h - Finistère,52395,observation-f1feaa63-2dfc-449a-aacf-a68686cec7a9-5,https://biolit.fr/observations/observation-f1feaa63-2dfc-449a-aacf-a68686cec7a9-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040669.JPG,,FALSE, +N1,60864,sortie-f1feaa63-2dfc-449a-aacf-a68686cec7a9,https://biolit.fr/sorties/sortie-f1feaa63-2dfc-449a-aacf-a68686cec7a9/,Phil,,11/02/2016,14.0000000,14.0000000,47.792454000000,-4.364795000000,,Penmarc'h - Finistère,52397,observation-f1feaa63-2dfc-449a-aacf-a68686cec7a9-6,https://biolit.fr/observations/observation-f1feaa63-2dfc-449a-aacf-a68686cec7a9-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040673.JPG,,FALSE, +N1,60865,sortie-bb1985e5-1e30-41f9-abd0-1f49ba9dd93a,https://biolit.fr/sorties/sortie-bb1985e5-1e30-41f9-abd0-1f49ba9dd93a/,Phil,,10/29/2016 0:00,13.0:15,13.0000000,47.796255000000,-3.83010800000,,Trévignon - Finistère,52399,observation-bb1985e5-1e30-41f9-abd0-1f49ba9dd93a,https://biolit.fr/observations/observation-bb1985e5-1e30-41f9-abd0-1f49ba9dd93a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040637.JPG,,FALSE, +N1,60866,sortie-143dc341-fa35-4404-86dc-2eed21ec0580,https://biolit.fr/sorties/sortie-143dc341-fa35-4404-86dc-2eed21ec0580/,Phil,,11/02/2016,15.0:25,15.0000000,47.802080000000,-4.181069000000,,Loctudy - Finistère,52401,observation-143dc341-fa35-4404-86dc-2eed21ec0580,https://biolit.fr/observations/observation-143dc341-fa35-4404-86dc-2eed21ec0580/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20161102_153036.jpg,,TRUE, +N1,60866,sortie-143dc341-fa35-4404-86dc-2eed21ec0580,https://biolit.fr/sorties/sortie-143dc341-fa35-4404-86dc-2eed21ec0580/,Phil,,11/02/2016,15.0:25,15.0000000,47.802080000000,-4.181069000000,,Loctudy - Finistère,52403,observation-143dc341-fa35-4404-86dc-2eed21ec0580-2,https://biolit.fr/observations/observation-143dc341-fa35-4404-86dc-2eed21ec0580-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20161102_152645.jpg,,TRUE, +N1,60867,sortie-7ec2d202-6c75-45f0-92b7-351c96ac372a,https://biolit.fr/sorties/sortie-7ec2d202-6c75-45f0-92b7-351c96ac372a/,Phil,,11/02/2016,14.0000000,14.0000000,47.793484000000,-4.362005000000,,Penmarc'h - Finistère,52405,observation-7ec2d202-6c75-45f0-92b7-351c96ac372a,https://biolit.fr/observations/observation-7ec2d202-6c75-45f0-92b7-351c96ac372a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040666.JPG,,FALSE, +N1,60867,sortie-7ec2d202-6c75-45f0-92b7-351c96ac372a,https://biolit.fr/sorties/sortie-7ec2d202-6c75-45f0-92b7-351c96ac372a/,Phil,,11/02/2016,14.0000000,14.0000000,47.793484000000,-4.362005000000,,Penmarc'h - Finistère,52407,observation-7ec2d202-6c75-45f0-92b7-351c96ac372a-2,https://biolit.fr/observations/observation-7ec2d202-6c75-45f0-92b7-351c96ac372a-2/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1040665.JPG,,TRUE, +N1,60867,sortie-7ec2d202-6c75-45f0-92b7-351c96ac372a,https://biolit.fr/sorties/sortie-7ec2d202-6c75-45f0-92b7-351c96ac372a/,Phil,,11/02/2016,14.0000000,14.0000000,47.793484000000,-4.362005000000,,Penmarc'h - Finistère,52409,observation-7ec2d202-6c75-45f0-92b7-351c96ac372a-3,https://biolit.fr/observations/observation-7ec2d202-6c75-45f0-92b7-351c96ac372a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040663.JPG,,FALSE, +N1,60867,sortie-7ec2d202-6c75-45f0-92b7-351c96ac372a,https://biolit.fr/sorties/sortie-7ec2d202-6c75-45f0-92b7-351c96ac372a/,Phil,,11/02/2016,14.0000000,14.0000000,47.793484000000,-4.362005000000,,Penmarc'h - Finistère,52411,observation-7ec2d202-6c75-45f0-92b7-351c96ac372a-4,https://biolit.fr/observations/observation-7ec2d202-6c75-45f0-92b7-351c96ac372a-4/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040662.JPG,,TRUE, +N1,60868,sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e,https://biolit.fr/sorties/sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e/,Phil,,10/29/2016 0:00,13.0:15,13.0:25,47.796532000000,-3.830379000000,,Trévignon - Finistère,52413,observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e,https://biolit.fr/observations/observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1040643.JPG,,TRUE, +N1,60868,sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e,https://biolit.fr/sorties/sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e/,Phil,,10/29/2016 0:00,13.0:15,13.0:25,47.796532000000,-3.830379000000,,Trévignon - Finistère,52415,observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e-2,https://biolit.fr/observations/observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040640.JPG,,FALSE, +N1,60868,sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e,https://biolit.fr/sorties/sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e/,Phil,,10/29/2016 0:00,13.0:15,13.0:25,47.796532000000,-3.830379000000,,Trévignon - Finistère,52417,observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e-3,https://biolit.fr/observations/observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e-3/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/P1040654.JPG,,TRUE, +N1,60868,sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e,https://biolit.fr/sorties/sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e/,Phil,,10/29/2016 0:00,13.0:15,13.0:25,47.796532000000,-3.830379000000,,Trévignon - Finistère,52419,observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e-4,https://biolit.fr/observations/observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040657.JPG,,FALSE, +N1,60868,sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e,https://biolit.fr/sorties/sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e/,Phil,,10/29/2016 0:00,13.0:15,13.0:25,47.796532000000,-3.830379000000,,Trévignon - Finistère,52421,observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e-5,https://biolit.fr/observations/observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040658.JPG,,FALSE, +N1,60868,sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e,https://biolit.fr/sorties/sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e/,Phil,,10/29/2016 0:00,13.0:15,13.0:25,47.796532000000,-3.830379000000,,Trévignon - Finistère,52423,observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e-6,https://biolit.fr/observations/observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040659.JPG,,FALSE, +N1,60868,sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e,https://biolit.fr/sorties/sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e/,Phil,,10/29/2016 0:00,13.0:15,13.0:25,47.796532000000,-3.830379000000,,Trévignon - Finistère,52425,observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e-7,https://biolit.fr/observations/observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040647.JPG,,FALSE, +N1,60868,sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e,https://biolit.fr/sorties/sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e/,Phil,,10/29/2016 0:00,13.0:15,13.0:25,47.796532000000,-3.830379000000,,Trévignon - Finistère,52427,observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e-8,https://biolit.fr/observations/observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040642.JPG,,FALSE, +N1,60868,sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e,https://biolit.fr/sorties/sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e/,Phil,,10/29/2016 0:00,13.0:15,13.0:25,47.796532000000,-3.830379000000,,Trévignon - Finistère,52429,observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e-9,https://biolit.fr/observations/observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040645.JPG,,FALSE, +N1,60869,sortie-6f53f4d9-349f-4b74-b544-f2334675ac59,https://biolit.fr/sorties/sortie-6f53f4d9-349f-4b74-b544-f2334675ac59/,azelie,,10/30/2016 0:00,13.0000000,13.0000000,49.336566000000,0.021194000000,,Plage de Blonville-sur-mer,52431,observation-6f53f4d9-349f-4b74-b544-f2334675ac59,https://biolit.fr/observations/observation-6f53f4d9-349f-4b74-b544-f2334675ac59/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3735-scaled.jpg,,FALSE, +N1,60869,sortie-6f53f4d9-349f-4b74-b544-f2334675ac59,https://biolit.fr/sorties/sortie-6f53f4d9-349f-4b74-b544-f2334675ac59/,azelie,,10/30/2016 0:00,13.0000000,13.0000000,49.336566000000,0.021194000000,,Plage de Blonville-sur-mer,52433,observation-6f53f4d9-349f-4b74-b544-f2334675ac59-2,https://biolit.fr/observations/observation-6f53f4d9-349f-4b74-b544-f2334675ac59-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3746.jpg,,FALSE, +N1,60869,sortie-6f53f4d9-349f-4b74-b544-f2334675ac59,https://biolit.fr/sorties/sortie-6f53f4d9-349f-4b74-b544-f2334675ac59/,azelie,,10/30/2016 0:00,13.0000000,13.0000000,49.336566000000,0.021194000000,,Plage de Blonville-sur-mer,52435,observation-6f53f4d9-349f-4b74-b544-f2334675ac59-3,https://biolit.fr/observations/observation-6f53f4d9-349f-4b74-b544-f2334675ac59-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3747-scaled.jpg,,FALSE, +N1,60869,sortie-6f53f4d9-349f-4b74-b544-f2334675ac59,https://biolit.fr/sorties/sortie-6f53f4d9-349f-4b74-b544-f2334675ac59/,azelie,,10/30/2016 0:00,13.0000000,13.0000000,49.336566000000,0.021194000000,,Plage de Blonville-sur-mer,52437,observation-6f53f4d9-349f-4b74-b544-f2334675ac59-4,https://biolit.fr/observations/observation-6f53f4d9-349f-4b74-b544-f2334675ac59-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3748-scaled.jpg,,FALSE, +N1,60869,sortie-6f53f4d9-349f-4b74-b544-f2334675ac59,https://biolit.fr/sorties/sortie-6f53f4d9-349f-4b74-b544-f2334675ac59/,azelie,,10/30/2016 0:00,13.0000000,13.0000000,49.336566000000,0.021194000000,,Plage de Blonville-sur-mer,52439,observation-6f53f4d9-349f-4b74-b544-f2334675ac59-5,https://biolit.fr/observations/observation-6f53f4d9-349f-4b74-b544-f2334675ac59-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3749-scaled.jpg,,FALSE, +N1,60869,sortie-6f53f4d9-349f-4b74-b544-f2334675ac59,https://biolit.fr/sorties/sortie-6f53f4d9-349f-4b74-b544-f2334675ac59/,azelie,,10/30/2016 0:00,13.0000000,13.0000000,49.336566000000,0.021194000000,,Plage de Blonville-sur-mer,52441,observation-6f53f4d9-349f-4b74-b544-f2334675ac59-6,https://biolit.fr/observations/observation-6f53f4d9-349f-4b74-b544-f2334675ac59-6/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_3753-scaled.jpg,,TRUE, +N1,60869,sortie-6f53f4d9-349f-4b74-b544-f2334675ac59,https://biolit.fr/sorties/sortie-6f53f4d9-349f-4b74-b544-f2334675ac59/,azelie,,10/30/2016 0:00,13.0000000,13.0000000,49.336566000000,0.021194000000,,Plage de Blonville-sur-mer,52443,observation-6f53f4d9-349f-4b74-b544-f2334675ac59-7,https://biolit.fr/observations/observation-6f53f4d9-349f-4b74-b544-f2334675ac59-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3755-scaled.jpg,,FALSE, +N1,60869,sortie-6f53f4d9-349f-4b74-b544-f2334675ac59,https://biolit.fr/sorties/sortie-6f53f4d9-349f-4b74-b544-f2334675ac59/,azelie,,10/30/2016 0:00,13.0000000,13.0000000,49.336566000000,0.021194000000,,Plage de Blonville-sur-mer,52445,observation-6f53f4d9-349f-4b74-b544-f2334675ac59-8,https://biolit.fr/observations/observation-6f53f4d9-349f-4b74-b544-f2334675ac59-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3756-scaled.jpg,,FALSE, +N1,60869,sortie-6f53f4d9-349f-4b74-b544-f2334675ac59,https://biolit.fr/sorties/sortie-6f53f4d9-349f-4b74-b544-f2334675ac59/,azelie,,10/30/2016 0:00,13.0000000,13.0000000,49.336566000000,0.021194000000,,Plage de Blonville-sur-mer,52447,observation-6f53f4d9-349f-4b74-b544-f2334675ac59-9,https://biolit.fr/observations/observation-6f53f4d9-349f-4b74-b544-f2334675ac59-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3760-rotated.jpg,,FALSE, +N1,60869,sortie-6f53f4d9-349f-4b74-b544-f2334675ac59,https://biolit.fr/sorties/sortie-6f53f4d9-349f-4b74-b544-f2334675ac59/,azelie,,10/30/2016 0:00,13.0000000,13.0000000,49.336566000000,0.021194000000,,Plage de Blonville-sur-mer,52449,observation-6f53f4d9-349f-4b74-b544-f2334675ac59-10,https://biolit.fr/observations/observation-6f53f4d9-349f-4b74-b544-f2334675ac59-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3758.JPG,,FALSE, +N1,60870,sortie-a0c59237-8aaa-45d5-8fdd-ec155095e808,https://biolit.fr/sorties/sortie-a0c59237-8aaa-45d5-8fdd-ec155095e808/,Earthforce FS,,10/28/2016 0:00,15.0000000,17.0000000,16.208682000000,-61.424234000000,,Le Gosier,52451,observation-a0c59237-8aaa-45d5-8fdd-ec155095e808,https://biolit.fr/observations/observation-a0c59237-8aaa-45d5-8fdd-ec155095e808/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5367.JPG,,FALSE, +N1,60870,sortie-a0c59237-8aaa-45d5-8fdd-ec155095e808,https://biolit.fr/sorties/sortie-a0c59237-8aaa-45d5-8fdd-ec155095e808/,Earthforce FS,,10/28/2016 0:00,15.0000000,17.0000000,16.208682000000,-61.424234000000,,Le Gosier,52453,observation-a0c59237-8aaa-45d5-8fdd-ec155095e808-2,https://biolit.fr/observations/observation-a0c59237-8aaa-45d5-8fdd-ec155095e808-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5365.jpg,,FALSE, +N1,60870,sortie-a0c59237-8aaa-45d5-8fdd-ec155095e808,https://biolit.fr/sorties/sortie-a0c59237-8aaa-45d5-8fdd-ec155095e808/,Earthforce FS,,10/28/2016 0:00,15.0000000,17.0000000,16.208682000000,-61.424234000000,,Le Gosier,52455,observation-a0c59237-8aaa-45d5-8fdd-ec155095e808-3,https://biolit.fr/observations/observation-a0c59237-8aaa-45d5-8fdd-ec155095e808-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5372_0.JPG,,FALSE, +N1,60870,sortie-a0c59237-8aaa-45d5-8fdd-ec155095e808,https://biolit.fr/sorties/sortie-a0c59237-8aaa-45d5-8fdd-ec155095e808/,Earthforce FS,,10/28/2016 0:00,15.0000000,17.0000000,16.208682000000,-61.424234000000,,Le Gosier,52457,observation-a0c59237-8aaa-45d5-8fdd-ec155095e808-4,https://biolit.fr/observations/observation-a0c59237-8aaa-45d5-8fdd-ec155095e808-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5371_0.JPG,,FALSE, +N1,60870,sortie-a0c59237-8aaa-45d5-8fdd-ec155095e808,https://biolit.fr/sorties/sortie-a0c59237-8aaa-45d5-8fdd-ec155095e808/,Earthforce FS,,10/28/2016 0:00,15.0000000,17.0000000,16.208682000000,-61.424234000000,,Le Gosier,52459,observation-a0c59237-8aaa-45d5-8fdd-ec155095e808-5,https://biolit.fr/observations/observation-a0c59237-8aaa-45d5-8fdd-ec155095e808-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5374_0.JPG,,FALSE, +N1,60872,sortie-f7b4637d-858f-48a0-9b38-307997979083,https://biolit.fr/sorties/sortie-f7b4637d-858f-48a0-9b38-307997979083/,azelie,,10/30/2016 0:00,13.0000000,13.0:15,49.3361150000,0.021046000000,,Plage de Blonville-sur-mer,52475,observation-f7b4637d-858f-48a0-9b38-307997979083,https://biolit.fr/observations/observation-f7b4637d-858f-48a0-9b38-307997979083/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3728-scaled.jpg,,FALSE, +N1,60872,sortie-f7b4637d-858f-48a0-9b38-307997979083,https://biolit.fr/sorties/sortie-f7b4637d-858f-48a0-9b38-307997979083/,azelie,,10/30/2016 0:00,13.0000000,13.0:15,49.3361150000,0.021046000000,,Plage de Blonville-sur-mer,52477,observation-f7b4637d-858f-48a0-9b38-307997979083-2,https://biolit.fr/observations/observation-f7b4637d-858f-48a0-9b38-307997979083-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3729-scaled.jpg,,FALSE, +N1,60872,sortie-f7b4637d-858f-48a0-9b38-307997979083,https://biolit.fr/sorties/sortie-f7b4637d-858f-48a0-9b38-307997979083/,azelie,,10/30/2016 0:00,13.0000000,13.0:15,49.3361150000,0.021046000000,,Plage de Blonville-sur-mer,52479,observation-f7b4637d-858f-48a0-9b38-307997979083-3,https://biolit.fr/observations/observation-f7b4637d-858f-48a0-9b38-307997979083-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3731-scaled.jpg,,FALSE, +N1,60872,sortie-f7b4637d-858f-48a0-9b38-307997979083,https://biolit.fr/sorties/sortie-f7b4637d-858f-48a0-9b38-307997979083/,azelie,,10/30/2016 0:00,13.0000000,13.0:15,49.3361150000,0.021046000000,,Plage de Blonville-sur-mer,52481,observation-f7b4637d-858f-48a0-9b38-307997979083-4,https://biolit.fr/observations/observation-f7b4637d-858f-48a0-9b38-307997979083-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3732-scaled.jpg,,FALSE, +N1,60872,sortie-f7b4637d-858f-48a0-9b38-307997979083,https://biolit.fr/sorties/sortie-f7b4637d-858f-48a0-9b38-307997979083/,azelie,,10/30/2016 0:00,13.0000000,13.0:15,49.3361150000,0.021046000000,,Plage de Blonville-sur-mer,52483,observation-f7b4637d-858f-48a0-9b38-307997979083-5,https://biolit.fr/observations/observation-f7b4637d-858f-48a0-9b38-307997979083-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3733-scaled.jpg,,FALSE, +N1,60872,sortie-f7b4637d-858f-48a0-9b38-307997979083,https://biolit.fr/sorties/sortie-f7b4637d-858f-48a0-9b38-307997979083/,azelie,,10/30/2016 0:00,13.0000000,13.0:15,49.3361150000,0.021046000000,,Plage de Blonville-sur-mer,52485,observation-f7b4637d-858f-48a0-9b38-307997979083-6,https://biolit.fr/observations/observation-f7b4637d-858f-48a0-9b38-307997979083-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3726-scaled.jpg,,FALSE, +N1,60872,sortie-f7b4637d-858f-48a0-9b38-307997979083,https://biolit.fr/sorties/sortie-f7b4637d-858f-48a0-9b38-307997979083/,azelie,,10/30/2016 0:00,13.0000000,13.0:15,49.3361150000,0.021046000000,,Plage de Blonville-sur-mer,52487,observation-f7b4637d-858f-48a0-9b38-307997979083-7,https://biolit.fr/observations/observation-f7b4637d-858f-48a0-9b38-307997979083-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3725-scaled.jpg,,FALSE, +N1,60873,sortie-0594a7b6-b1e5-4624-8e23-fd5d7bcdee25,https://biolit.fr/sorties/sortie-0594a7b6-b1e5-4624-8e23-fd5d7bcdee25/,Phil,,10/20/2016 0:00,16.0000000,16.0:15,48.120275000000,-4.283606000000,,Plonevez Porzay - Finistère,52489,observation-0594a7b6-b1e5-4624-8e23-fd5d7bcdee25,https://biolit.fr/observations/observation-0594a7b6-b1e5-4624-8e23-fd5d7bcdee25/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040601.JPG,,FALSE, +N1,60873,sortie-0594a7b6-b1e5-4624-8e23-fd5d7bcdee25,https://biolit.fr/sorties/sortie-0594a7b6-b1e5-4624-8e23-fd5d7bcdee25/,Phil,,10/20/2016 0:00,16.0000000,16.0:15,48.120275000000,-4.283606000000,,Plonevez Porzay - Finistère,52491,observation-0594a7b6-b1e5-4624-8e23-fd5d7bcdee25-2,https://biolit.fr/observations/observation-0594a7b6-b1e5-4624-8e23-fd5d7bcdee25-2/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/P1040607.JPG,,TRUE, +N1,60873,sortie-0594a7b6-b1e5-4624-8e23-fd5d7bcdee25,https://biolit.fr/sorties/sortie-0594a7b6-b1e5-4624-8e23-fd5d7bcdee25/,Phil,,10/20/2016 0:00,16.0000000,16.0:15,48.120275000000,-4.283606000000,,Plonevez Porzay - Finistère,52493,observation-0594a7b6-b1e5-4624-8e23-fd5d7bcdee25-3,https://biolit.fr/observations/observation-0594a7b6-b1e5-4624-8e23-fd5d7bcdee25-3/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1040611.JPG,,TRUE, +N1,60873,sortie-0594a7b6-b1e5-4624-8e23-fd5d7bcdee25,https://biolit.fr/sorties/sortie-0594a7b6-b1e5-4624-8e23-fd5d7bcdee25/,Phil,,10/20/2016 0:00,16.0000000,16.0:15,48.120275000000,-4.283606000000,,Plonevez Porzay - Finistère,52495,observation-0594a7b6-b1e5-4624-8e23-fd5d7bcdee25-4,https://biolit.fr/observations/observation-0594a7b6-b1e5-4624-8e23-fd5d7bcdee25-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1040614.JPG,,TRUE, +N1,60874,sortie-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d,https://biolit.fr/sorties/sortie-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d/,azelie,,10/30/2016 0:00,13.0000000,14.0000000,49.339831000000,0.027363000000,,Blonville-sur-mer,52497,observation-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d,https://biolit.fr/observations/observation-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3766.JPG,,TRUE, +N1,60874,sortie-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d,https://biolit.fr/sorties/sortie-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d/,azelie,,10/30/2016 0:00,13.0000000,14.0000000,49.339831000000,0.027363000000,,Blonville-sur-mer,52499,observation-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d-2,https://biolit.fr/observations/observation-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d-2/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3767.JPG,,TRUE, +N1,60874,sortie-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d,https://biolit.fr/sorties/sortie-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d/,azelie,,10/30/2016 0:00,13.0000000,14.0000000,49.339831000000,0.027363000000,,Blonville-sur-mer,52501,observation-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d-3,https://biolit.fr/observations/observation-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3770.JPG,,FALSE, +N1,60874,sortie-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d,https://biolit.fr/sorties/sortie-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d/,azelie,,10/30/2016 0:00,13.0000000,14.0000000,49.339831000000,0.027363000000,,Blonville-sur-mer,52503,observation-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d-4,https://biolit.fr/observations/observation-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3771.JPG,,FALSE, +N1,60874,sortie-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d,https://biolit.fr/sorties/sortie-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d/,azelie,,10/30/2016 0:00,13.0000000,14.0000000,49.339831000000,0.027363000000,,Blonville-sur-mer,52505,observation-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d-5,https://biolit.fr/observations/observation-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d-5/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3774.JPG,,TRUE, +N1,60874,sortie-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d,https://biolit.fr/sorties/sortie-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d/,azelie,,10/30/2016 0:00,13.0000000,14.0000000,49.339831000000,0.027363000000,,Blonville-sur-mer,52507,observation-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d-6,https://biolit.fr/observations/observation-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3775-rotated.jpg,,FALSE, +N1,60874,sortie-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d,https://biolit.fr/sorties/sortie-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d/,azelie,,10/30/2016 0:00,13.0000000,14.0000000,49.339831000000,0.027363000000,,Blonville-sur-mer,52509,observation-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d-7,https://biolit.fr/observations/observation-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3776-rotated.jpg,,FALSE, +N1,60875,sortie-394ff457-653b-4aba-b6dd-c696626b2a8e,https://biolit.fr/sorties/sortie-394ff457-653b-4aba-b6dd-c696626b2a8e/,azelie,,10/30/2016 0:00,14.0:25,14.0000000,49.339454000000,0.025947000000,,Blonville-sur-mer,52511,observation-394ff457-653b-4aba-b6dd-c696626b2a8e,https://biolit.fr/observations/observation-394ff457-653b-4aba-b6dd-c696626b2a8e/,Symsagittifera roscoffensis,Ver plat de Roscoff,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3783.JPG,,TRUE, +N1,60875,sortie-394ff457-653b-4aba-b6dd-c696626b2a8e,https://biolit.fr/sorties/sortie-394ff457-653b-4aba-b6dd-c696626b2a8e/,azelie,,10/30/2016 0:00,14.0:25,14.0000000,49.339454000000,0.025947000000,,Blonville-sur-mer,52513,observation-394ff457-653b-4aba-b6dd-c696626b2a8e-2,https://biolit.fr/observations/observation-394ff457-653b-4aba-b6dd-c696626b2a8e-2/,Symsagittifera roscoffensis,Ver plat de Roscoff,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3785-rotated.jpg,,TRUE, +N1,60875,sortie-394ff457-653b-4aba-b6dd-c696626b2a8e,https://biolit.fr/sorties/sortie-394ff457-653b-4aba-b6dd-c696626b2a8e/,azelie,,10/30/2016 0:00,14.0:25,14.0000000,49.339454000000,0.025947000000,,Blonville-sur-mer,52515,observation-394ff457-653b-4aba-b6dd-c696626b2a8e-3,https://biolit.fr/observations/observation-394ff457-653b-4aba-b6dd-c696626b2a8e-3/,Symsagittifera roscoffensis,Ver plat de Roscoff,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3786-rotated.jpg,,TRUE, +N1,60876,sortie-76fce443-fa46-413b-b80a-fd4d00f1a4f5,https://biolit.fr/sorties/sortie-76fce443-fa46-413b-b80a-fd4d00f1a4f5/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.802300000000,-4.381412000000,,Penmarc'h - Finistère,52517,observation-76fce443-fa46-413b-b80a-fd4d00f1a4f5,https://biolit.fr/observations/observation-76fce443-fa46-413b-b80a-fd4d00f1a4f5/,Lepadogaster purpurea,Porte-écuelle de Cornouailles,,https://biolit.fr/wp-content/uploads/2023/07/P1030959.JPG,,TRUE, +N1,60876,sortie-76fce443-fa46-413b-b80a-fd4d00f1a4f5,https://biolit.fr/sorties/sortie-76fce443-fa46-413b-b80a-fd4d00f1a4f5/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.802300000000,-4.381412000000,,Penmarc'h - Finistère,52519,observation-76fce443-fa46-413b-b80a-fd4d00f1a4f5-2,https://biolit.fr/observations/observation-76fce443-fa46-413b-b80a-fd4d00f1a4f5-2/,Lepadogaster purpurea,Porte-écuelle de Cornouailles,,https://biolit.fr/wp-content/uploads/2023/07/P1030960.JPG,,TRUE, +N1,60876,sortie-76fce443-fa46-413b-b80a-fd4d00f1a4f5,https://biolit.fr/sorties/sortie-76fce443-fa46-413b-b80a-fd4d00f1a4f5/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.802300000000,-4.381412000000,,Penmarc'h - Finistère,52521,observation-76fce443-fa46-413b-b80a-fd4d00f1a4f5-3,https://biolit.fr/observations/observation-76fce443-fa46-413b-b80a-fd4d00f1a4f5-3/,Lepadogaster purpurea,Porte-écuelle de Cornouailles,,https://biolit.fr/wp-content/uploads/2023/07/P1030963.JPG,,TRUE, +N1,60876,sortie-76fce443-fa46-413b-b80a-fd4d00f1a4f5,https://biolit.fr/sorties/sortie-76fce443-fa46-413b-b80a-fd4d00f1a4f5/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.802300000000,-4.381412000000,,Penmarc'h - Finistère,52523,observation-76fce443-fa46-413b-b80a-fd4d00f1a4f5-4,https://biolit.fr/observations/observation-76fce443-fa46-413b-b80a-fd4d00f1a4f5-4/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/P1030972.JPG,,TRUE, +N1,60876,sortie-76fce443-fa46-413b-b80a-fd4d00f1a4f5,https://biolit.fr/sorties/sortie-76fce443-fa46-413b-b80a-fd4d00f1a4f5/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.802300000000,-4.381412000000,,Penmarc'h - Finistère,52525,observation-76fce443-fa46-413b-b80a-fd4d00f1a4f5-5,https://biolit.fr/observations/observation-76fce443-fa46-413b-b80a-fd4d00f1a4f5-5/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/P1030976.JPG,,TRUE, +N1,60877,sortie-d7a891a8-c6a8-4160-b6b3-3737f9adef9a,https://biolit.fr/sorties/sortie-d7a891a8-c6a8-4160-b6b3-3737f9adef9a/,Phil,,10/20/2016 0:00,15.0000000,16.0000000,48.120067000000,-4.283620000000,,Plonevez Porzay - Finistère,52527,observation-d7a891a8-c6a8-4160-b6b3-3737f9adef9a,https://biolit.fr/observations/observation-d7a891a8-c6a8-4160-b6b3-3737f9adef9a/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1040577.JPG,,TRUE, +N1,60877,sortie-d7a891a8-c6a8-4160-b6b3-3737f9adef9a,https://biolit.fr/sorties/sortie-d7a891a8-c6a8-4160-b6b3-3737f9adef9a/,Phil,,10/20/2016 0:00,15.0000000,16.0000000,48.120067000000,-4.283620000000,,Plonevez Porzay - Finistère,52529,observation-d7a891a8-c6a8-4160-b6b3-3737f9adef9a-2,https://biolit.fr/observations/observation-d7a891a8-c6a8-4160-b6b3-3737f9adef9a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040591.JPG,,FALSE, +N1,60877,sortie-d7a891a8-c6a8-4160-b6b3-3737f9adef9a,https://biolit.fr/sorties/sortie-d7a891a8-c6a8-4160-b6b3-3737f9adef9a/,Phil,,10/20/2016 0:00,15.0000000,16.0000000,48.120067000000,-4.283620000000,,Plonevez Porzay - Finistère,52531,observation-d7a891a8-c6a8-4160-b6b3-3737f9adef9a-3,https://biolit.fr/observations/observation-d7a891a8-c6a8-4160-b6b3-3737f9adef9a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040593.JPG,,FALSE, +N1,60877,sortie-d7a891a8-c6a8-4160-b6b3-3737f9adef9a,https://biolit.fr/sorties/sortie-d7a891a8-c6a8-4160-b6b3-3737f9adef9a/,Phil,,10/20/2016 0:00,15.0000000,16.0000000,48.120067000000,-4.283620000000,,Plonevez Porzay - Finistère,52533,observation-d7a891a8-c6a8-4160-b6b3-3737f9adef9a-4,https://biolit.fr/observations/observation-d7a891a8-c6a8-4160-b6b3-3737f9adef9a-4/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040600.JPG,,TRUE, +N1,60878,sortie-d6285d05-e2af-406b-b75c-643d665c155d,https://biolit.fr/sorties/sortie-d6285d05-e2af-406b-b75c-643d665c155d/,Phil,,10/29/2016 0:00,12.0000000,12.0:35,47.796770000000,-3.836977000000,,Trévignon - Finistère,52535,observation-d6285d05-e2af-406b-b75c-643d665c155d,https://biolit.fr/observations/observation-d6285d05-e2af-406b-b75c-643d665c155d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040629.JPG,,FALSE, +N1,60878,sortie-d6285d05-e2af-406b-b75c-643d665c155d,https://biolit.fr/sorties/sortie-d6285d05-e2af-406b-b75c-643d665c155d/,Phil,,10/29/2016 0:00,12.0000000,12.0:35,47.796770000000,-3.836977000000,,Trévignon - Finistère,52537,observation-d6285d05-e2af-406b-b75c-643d665c155d-2,https://biolit.fr/observations/observation-d6285d05-e2af-406b-b75c-643d665c155d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040627.JPG,,FALSE, +N1,60878,sortie-d6285d05-e2af-406b-b75c-643d665c155d,https://biolit.fr/sorties/sortie-d6285d05-e2af-406b-b75c-643d665c155d/,Phil,,10/29/2016 0:00,12.0000000,12.0:35,47.796770000000,-3.836977000000,,Trévignon - Finistère,52539,observation-d6285d05-e2af-406b-b75c-643d665c155d-3,https://biolit.fr/observations/observation-d6285d05-e2af-406b-b75c-643d665c155d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040624.JPG,,FALSE, +N1,60878,sortie-d6285d05-e2af-406b-b75c-643d665c155d,https://biolit.fr/sorties/sortie-d6285d05-e2af-406b-b75c-643d665c155d/,Phil,,10/29/2016 0:00,12.0000000,12.0:35,47.796770000000,-3.836977000000,,Trévignon - Finistère,52541,observation-d6285d05-e2af-406b-b75c-643d665c155d-4,https://biolit.fr/observations/observation-d6285d05-e2af-406b-b75c-643d665c155d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040625.JPG,,FALSE, +N1,60879,sortie-fdcd0fc6-9b37-47fe-87e0-f222c11958c2,https://biolit.fr/sorties/sortie-fdcd0fc6-9b37-47fe-87e0-f222c11958c2/,Phil,,10/28/2016 0:00,16.0000000,16.0000000,47.799512000000,-4.375614000000,,Penmarc'h - Finistère,52543,observation-fdcd0fc6-9b37-47fe-87e0-f222c11958c2,https://biolit.fr/observations/observation-fdcd0fc6-9b37-47fe-87e0-f222c11958c2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161028_162613.jpg,,FALSE, +N1,60879,sortie-fdcd0fc6-9b37-47fe-87e0-f222c11958c2,https://biolit.fr/sorties/sortie-fdcd0fc6-9b37-47fe-87e0-f222c11958c2/,Phil,,10/28/2016 0:00,16.0000000,16.0000000,47.799512000000,-4.375614000000,,Penmarc'h - Finistère,52545,observation-fdcd0fc6-9b37-47fe-87e0-f222c11958c2-2,https://biolit.fr/observations/observation-fdcd0fc6-9b37-47fe-87e0-f222c11958c2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161028_162950.jpg,,FALSE, +N1,60879,sortie-fdcd0fc6-9b37-47fe-87e0-f222c11958c2,https://biolit.fr/sorties/sortie-fdcd0fc6-9b37-47fe-87e0-f222c11958c2/,Phil,,10/28/2016 0:00,16.0000000,16.0000000,47.799512000000,-4.375614000000,,Penmarc'h - Finistère,52547,observation-fdcd0fc6-9b37-47fe-87e0-f222c11958c2-3,https://biolit.fr/observations/observation-fdcd0fc6-9b37-47fe-87e0-f222c11958c2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161028_163145.jpg,,FALSE, +N1,60880,sortie-64b4e283-9959-452c-b11b-4198182191e7,https://biolit.fr/sorties/sortie-64b4e283-9959-452c-b11b-4198182191e7/,Chantal,,10/26/2016 0:00,14.0000000,16.0000000,43.238066000000,5.361676000000,,Plage bonne brise Marseille,52549,observation-64b4e283-9959-452c-b11b-4198182191e7,https://biolit.fr/observations/observation-64b4e283-9959-452c-b11b-4198182191e7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161026_143648-rotated.jpg,,FALSE, +N1,60880,sortie-64b4e283-9959-452c-b11b-4198182191e7,https://biolit.fr/sorties/sortie-64b4e283-9959-452c-b11b-4198182191e7/,Chantal,,10/26/2016 0:00,14.0000000,16.0000000,43.238066000000,5.361676000000,,Plage bonne brise Marseille,52551,observation-64b4e283-9959-452c-b11b-4198182191e7-2,https://biolit.fr/observations/observation-64b4e283-9959-452c-b11b-4198182191e7-2/,Engraulis encrasicolus,Anchois commun,,https://biolit.fr/wp-content/uploads/2023/07/20161026_150309_0.jpg,,TRUE, +N1,60880,sortie-64b4e283-9959-452c-b11b-4198182191e7,https://biolit.fr/sorties/sortie-64b4e283-9959-452c-b11b-4198182191e7/,Chantal,,10/26/2016 0:00,14.0000000,16.0000000,43.238066000000,5.361676000000,,Plage bonne brise Marseille,52553,observation-64b4e283-9959-452c-b11b-4198182191e7-3,https://biolit.fr/observations/observation-64b4e283-9959-452c-b11b-4198182191e7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161026_145803_0-rotated.jpg,,FALSE, +N1,60880,sortie-64b4e283-9959-452c-b11b-4198182191e7,https://biolit.fr/sorties/sortie-64b4e283-9959-452c-b11b-4198182191e7/,Chantal,,10/26/2016 0:00,14.0000000,16.0000000,43.238066000000,5.361676000000,,Plage bonne brise Marseille,52555,observation-64b4e283-9959-452c-b11b-4198182191e7-4,https://biolit.fr/observations/observation-64b4e283-9959-452c-b11b-4198182191e7-4/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/20161026_145113_0.jpg,,TRUE, +N1,60880,sortie-64b4e283-9959-452c-b11b-4198182191e7,https://biolit.fr/sorties/sortie-64b4e283-9959-452c-b11b-4198182191e7/,Chantal,,10/26/2016 0:00,14.0000000,16.0000000,43.238066000000,5.361676000000,,Plage bonne brise Marseille,52557,observation-64b4e283-9959-452c-b11b-4198182191e7-5,https://biolit.fr/observations/observation-64b4e283-9959-452c-b11b-4198182191e7-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161026_145812_0.jpg,,FALSE, +N1,60881,sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c,https://biolit.fr/sorties/sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c/,bealafourcade,,10/28/2016 0:00,11.0:15,12.0000000,44.642092000000,-1.094444000000,,"port de Meyran ouest, 33470 Gujan-Mestr",52559,observation-df4bcf7b-5aa1-4a05-884a-0f455859641c,https://biolit.fr/observations/observation-df4bcf7b-5aa1-4a05-884a-0f455859641c/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ajonc-scaled.jpg,,FALSE, +N1,60881,sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c,https://biolit.fr/sorties/sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c/,bealafourcade,,10/28/2016 0:00,11.0:15,12.0000000,44.642092000000,-1.094444000000,,"port de Meyran ouest, 33470 Gujan-Mestr",52561,observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-2,https://biolit.fr/observations/observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Baccharis herbe de la pampa-scaled.jpg,,FALSE, +N1,60881,sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c,https://biolit.fr/sorties/sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c/,bealafourcade,,10/28/2016 0:00,11.0:15,12.0000000,44.642092000000,-1.094444000000,,"port de Meyran ouest, 33470 Gujan-Mestr",52563,observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-3,https://biolit.fr/observations/observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Bruyère des marais-scaled.jpg,,FALSE, +N1,60881,sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c,https://biolit.fr/sorties/sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c/,bealafourcade,,10/28/2016 0:00,11.0:15,12.0000000,44.642092000000,-1.094444000000,,"port de Meyran ouest, 33470 Gujan-Mestr",52565,observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-4,https://biolit.fr/observations/observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0942-scaled.jpg,,FALSE, +N1,60881,sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c,https://biolit.fr/sorties/sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c/,bealafourcade,,10/28/2016 0:00,11.0:15,12.0000000,44.642092000000,-1.094444000000,,"port de Meyran ouest, 33470 Gujan-Mestr",52567,observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-5,https://biolit.fr/observations/observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0943-scaled.jpg,,FALSE, +N1,60881,sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c,https://biolit.fr/sorties/sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c/,bealafourcade,,10/28/2016 0:00,11.0:15,12.0000000,44.642092000000,-1.094444000000,,"port de Meyran ouest, 33470 Gujan-Mestr",52569,observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-6,https://biolit.fr/observations/observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0944-scaled.jpg,,FALSE, +N1,60881,sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c,https://biolit.fr/sorties/sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c/,bealafourcade,,10/28/2016 0:00,11.0:15,12.0000000,44.642092000000,-1.094444000000,,"port de Meyran ouest, 33470 Gujan-Mestr",52571,observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-7,https://biolit.fr/observations/observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Massette-scaled.jpg,,FALSE, +N1,60881,sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c,https://biolit.fr/sorties/sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c/,bealafourcade,,10/28/2016 0:00,11.0:15,12.0000000,44.642092000000,-1.094444000000,,"port de Meyran ouest, 33470 Gujan-Mestr",52573,observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-8,https://biolit.fr/observations/observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/non identifiee (2)-scaled.jpg,,FALSE, +N1,60881,sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c,https://biolit.fr/sorties/sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c/,bealafourcade,,10/28/2016 0:00,11.0:15,12.0000000,44.642092000000,-1.094444000000,,"port de Meyran ouest, 33470 Gujan-Mestr",52575,observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-9,https://biolit.fr/observations/observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Salicorne-scaled.jpg,,FALSE, +N1,60881,sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c,https://biolit.fr/sorties/sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c/,bealafourcade,,10/28/2016 0:00,11.0:15,12.0000000,44.642092000000,-1.094444000000,,"port de Meyran ouest, 33470 Gujan-Mestr",52577,observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-10,https://biolit.fr/observations/observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Tamaris (2)-scaled.jpg,,FALSE, +N1,60881,sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c,https://biolit.fr/sorties/sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c/,bealafourcade,,10/28/2016 0:00,11.0:15,12.0000000,44.642092000000,-1.094444000000,,"port de Meyran ouest, 33470 Gujan-Mestr",52579,observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-11,https://biolit.fr/observations/observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Traces de ragondin-scaled.jpg,,FALSE, +N1,60882,sortie-8288f14d-bd5b-4e11-83ee-0c7d9cb0353d,https://biolit.fr/sorties/sortie-8288f14d-bd5b-4e11-83ee-0c7d9cb0353d/,Phil,,10/17/2016 0:00,11.0:35,11.0000000,47.789013000000,-4.277252000000,,Léchiagat - Finistère,52581,observation-8288f14d-bd5b-4e11-83ee-0c7d9cb0353d,https://biolit.fr/observations/observation-8288f14d-bd5b-4e11-83ee-0c7d9cb0353d/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161017_113751.jpg,,FALSE, +N1,60882,sortie-8288f14d-bd5b-4e11-83ee-0c7d9cb0353d,https://biolit.fr/sorties/sortie-8288f14d-bd5b-4e11-83ee-0c7d9cb0353d/,Phil,,10/17/2016 0:00,11.0:35,11.0000000,47.789013000000,-4.277252000000,,Léchiagat - Finistère,52583,observation-8288f14d-bd5b-4e11-83ee-0c7d9cb0353d-2,https://biolit.fr/observations/observation-8288f14d-bd5b-4e11-83ee-0c7d9cb0353d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161017_113914.jpg,,FALSE, +N1,60883,sortie-8f225a6d-e09c-4536-9775-857ceeb088d9,https://biolit.fr/sorties/sortie-8f225a6d-e09c-4536-9775-857ceeb088d9/,Phil,,10/20/2016 0:00,15.0000000,15.0:35,48.120124000000,-4.283516000000,,Plonevez Porzay - Finistère,52585,observation-8f225a6d-e09c-4536-9775-857ceeb088d9,https://biolit.fr/observations/observation-8f225a6d-e09c-4536-9775-857ceeb088d9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040564.JPG,,FALSE, +N1,60883,sortie-8f225a6d-e09c-4536-9775-857ceeb088d9,https://biolit.fr/sorties/sortie-8f225a6d-e09c-4536-9775-857ceeb088d9/,Phil,,10/20/2016 0:00,15.0000000,15.0:35,48.120124000000,-4.283516000000,,Plonevez Porzay - Finistère,52587,observation-8f225a6d-e09c-4536-9775-857ceeb088d9-2,https://biolit.fr/observations/observation-8f225a6d-e09c-4536-9775-857ceeb088d9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040561.JPG,,FALSE, +N1,60883,sortie-8f225a6d-e09c-4536-9775-857ceeb088d9,https://biolit.fr/sorties/sortie-8f225a6d-e09c-4536-9775-857ceeb088d9/,Phil,,10/20/2016 0:00,15.0000000,15.0:35,48.120124000000,-4.283516000000,,Plonevez Porzay - Finistère,52589,observation-8f225a6d-e09c-4536-9775-857ceeb088d9-3,https://biolit.fr/observations/observation-8f225a6d-e09c-4536-9775-857ceeb088d9-3/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1040559.JPG,,TRUE, +N1,60883,sortie-8f225a6d-e09c-4536-9775-857ceeb088d9,https://biolit.fr/sorties/sortie-8f225a6d-e09c-4536-9775-857ceeb088d9/,Phil,,10/20/2016 0:00,15.0000000,15.0:35,48.120124000000,-4.283516000000,,Plonevez Porzay - Finistère,52591,observation-8f225a6d-e09c-4536-9775-857ceeb088d9-4,https://biolit.fr/observations/observation-8f225a6d-e09c-4536-9775-857ceeb088d9-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040545.JPG,,FALSE, +N1,60883,sortie-8f225a6d-e09c-4536-9775-857ceeb088d9,https://biolit.fr/sorties/sortie-8f225a6d-e09c-4536-9775-857ceeb088d9/,Phil,,10/20/2016 0:00,15.0000000,15.0:35,48.120124000000,-4.283516000000,,Plonevez Porzay - Finistère,52593,observation-8f225a6d-e09c-4536-9775-857ceeb088d9-5,https://biolit.fr/observations/observation-8f225a6d-e09c-4536-9775-857ceeb088d9-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040547.JPG,,FALSE, +N1,60883,sortie-8f225a6d-e09c-4536-9775-857ceeb088d9,https://biolit.fr/sorties/sortie-8f225a6d-e09c-4536-9775-857ceeb088d9/,Phil,,10/20/2016 0:00,15.0000000,15.0:35,48.120124000000,-4.283516000000,,Plonevez Porzay - Finistère,52595,observation-8f225a6d-e09c-4536-9775-857ceeb088d9-6,https://biolit.fr/observations/observation-8f225a6d-e09c-4536-9775-857ceeb088d9-6/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040543.JPG,,TRUE, +N1,60883,sortie-8f225a6d-e09c-4536-9775-857ceeb088d9,https://biolit.fr/sorties/sortie-8f225a6d-e09c-4536-9775-857ceeb088d9/,Phil,,10/20/2016 0:00,15.0000000,15.0:35,48.120124000000,-4.283516000000,,Plonevez Porzay - Finistère,52597,observation-8f225a6d-e09c-4536-9775-857ceeb088d9-7,https://biolit.fr/observations/observation-8f225a6d-e09c-4536-9775-857ceeb088d9-7/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040554.JPG,,TRUE, +N1,60883,sortie-8f225a6d-e09c-4536-9775-857ceeb088d9,https://biolit.fr/sorties/sortie-8f225a6d-e09c-4536-9775-857ceeb088d9/,Phil,,10/20/2016 0:00,15.0000000,15.0:35,48.120124000000,-4.283516000000,,Plonevez Porzay - Finistère,52599,observation-8f225a6d-e09c-4536-9775-857ceeb088d9-8,https://biolit.fr/observations/observation-8f225a6d-e09c-4536-9775-857ceeb088d9-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040552.JPG,,FALSE, +N1,60884,sortie-5cb4baa4-4f94-4748-ae29-dc724a2e80f2,https://biolit.fr/sorties/sortie-5cb4baa4-4f94-4748-ae29-dc724a2e80f2/,Phil,,10/20/2016 0:00,16.0000000,16.0:25,48.120171000000,-4.283114000000,,Plonevez Porzay - Finistère,52601,observation-5cb4baa4-4f94-4748-ae29-dc724a2e80f2,https://biolit.fr/observations/observation-5cb4baa4-4f94-4748-ae29-dc724a2e80f2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040620.JPG,,FALSE, +N1,60884,sortie-5cb4baa4-4f94-4748-ae29-dc724a2e80f2,https://biolit.fr/sorties/sortie-5cb4baa4-4f94-4748-ae29-dc724a2e80f2/,Phil,,10/20/2016 0:00,16.0000000,16.0:25,48.120171000000,-4.283114000000,,Plonevez Porzay - Finistère,52603,observation-5cb4baa4-4f94-4748-ae29-dc724a2e80f2-2,https://biolit.fr/observations/observation-5cb4baa4-4f94-4748-ae29-dc724a2e80f2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040618.JPG,,FALSE, +N1,60885,sortie-fe0347ce-b2f5-4a59-8a78-8c094dff3499,https://biolit.fr/sorties/sortie-fe0347ce-b2f5-4a59-8a78-8c094dff3499/,Phil,,9/24/2016 0:00,17.0000000,18.0000000,47.793211000000,-4.223608000000,,Lesconil -Finistère,52605,observation-fe0347ce-b2f5-4a59-8a78-8c094dff3499,https://biolit.fr/observations/observation-fe0347ce-b2f5-4a59-8a78-8c094dff3499/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040169.JPG,,FALSE, +N1,60885,sortie-fe0347ce-b2f5-4a59-8a78-8c094dff3499,https://biolit.fr/sorties/sortie-fe0347ce-b2f5-4a59-8a78-8c094dff3499/,Phil,,9/24/2016 0:00,17.0000000,18.0000000,47.793211000000,-4.223608000000,,Lesconil -Finistère,52607,observation-fe0347ce-b2f5-4a59-8a78-8c094dff3499-2,https://biolit.fr/observations/observation-fe0347ce-b2f5-4a59-8a78-8c094dff3499-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040167.JPG,,FALSE, +N1,60885,sortie-fe0347ce-b2f5-4a59-8a78-8c094dff3499,https://biolit.fr/sorties/sortie-fe0347ce-b2f5-4a59-8a78-8c094dff3499/,Phil,,9/24/2016 0:00,17.0000000,18.0000000,47.793211000000,-4.223608000000,,Lesconil -Finistère,52609,observation-fe0347ce-b2f5-4a59-8a78-8c094dff3499-3,https://biolit.fr/observations/observation-fe0347ce-b2f5-4a59-8a78-8c094dff3499-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040168.JPG,,FALSE, +N1,60885,sortie-fe0347ce-b2f5-4a59-8a78-8c094dff3499,https://biolit.fr/sorties/sortie-fe0347ce-b2f5-4a59-8a78-8c094dff3499/,Phil,,9/24/2016 0:00,17.0000000,18.0000000,47.793211000000,-4.223608000000,,Lesconil -Finistère,52611,observation-fe0347ce-b2f5-4a59-8a78-8c094dff3499-4,https://biolit.fr/observations/observation-fe0347ce-b2f5-4a59-8a78-8c094dff3499-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040165.JPG,,FALSE, +N1,60885,sortie-fe0347ce-b2f5-4a59-8a78-8c094dff3499,https://biolit.fr/sorties/sortie-fe0347ce-b2f5-4a59-8a78-8c094dff3499/,Phil,,9/24/2016 0:00,17.0000000,18.0000000,47.793211000000,-4.223608000000,,Lesconil -Finistère,52613,observation-fe0347ce-b2f5-4a59-8a78-8c094dff3499-5,https://biolit.fr/observations/observation-fe0347ce-b2f5-4a59-8a78-8c094dff3499-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040164.JPG,,FALSE, +N1,60885,sortie-fe0347ce-b2f5-4a59-8a78-8c094dff3499,https://biolit.fr/sorties/sortie-fe0347ce-b2f5-4a59-8a78-8c094dff3499/,Phil,,9/24/2016 0:00,17.0000000,18.0000000,47.793211000000,-4.223608000000,,Lesconil -Finistère,52615,observation-fe0347ce-b2f5-4a59-8a78-8c094dff3499-6,https://biolit.fr/observations/observation-fe0347ce-b2f5-4a59-8a78-8c094dff3499-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040171.JPG,,FALSE, +N1,60886,sortie-c8926c4f-512e-41ee-a8e7-2cad71ad7afa,https://biolit.fr/sorties/sortie-c8926c4f-512e-41ee-a8e7-2cad71ad7afa/,Céline,,10/26/2016 0:00,14.0:15,15.0000000,43.236002000000,5.359959000000,,Plage de la bonne brise,52617,observation-c8926c4f-512e-41ee-a8e7-2cad71ad7afa,https://biolit.fr/observations/observation-c8926c4f-512e-41ee-a8e7-2cad71ad7afa/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2072-scaled.jpg,,FALSE, +N1,60886,sortie-c8926c4f-512e-41ee-a8e7-2cad71ad7afa,https://biolit.fr/sorties/sortie-c8926c4f-512e-41ee-a8e7-2cad71ad7afa/,Céline,,10/26/2016 0:00,14.0:15,15.0000000,43.236002000000,5.359959000000,,Plage de la bonne brise,52619,observation-c8926c4f-512e-41ee-a8e7-2cad71ad7afa-2,https://biolit.fr/observations/observation-c8926c4f-512e-41ee-a8e7-2cad71ad7afa-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2076-scaled.jpg,,FALSE, +N1,60886,sortie-c8926c4f-512e-41ee-a8e7-2cad71ad7afa,https://biolit.fr/sorties/sortie-c8926c4f-512e-41ee-a8e7-2cad71ad7afa/,Céline,,10/26/2016 0:00,14.0:15,15.0000000,43.236002000000,5.359959000000,,Plage de la bonne brise,52621,observation-c8926c4f-512e-41ee-a8e7-2cad71ad7afa-3,https://biolit.fr/observations/observation-c8926c4f-512e-41ee-a8e7-2cad71ad7afa-3/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2077-scaled.jpg,,TRUE, +N1,60886,sortie-c8926c4f-512e-41ee-a8e7-2cad71ad7afa,https://biolit.fr/sorties/sortie-c8926c4f-512e-41ee-a8e7-2cad71ad7afa/,Céline,,10/26/2016 0:00,14.0:15,15.0000000,43.236002000000,5.359959000000,,Plage de la bonne brise,52623,observation-c8926c4f-512e-41ee-a8e7-2cad71ad7afa-4,https://biolit.fr/observations/observation-c8926c4f-512e-41ee-a8e7-2cad71ad7afa-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2074-scaled.jpg,,FALSE, +N1,60886,sortie-c8926c4f-512e-41ee-a8e7-2cad71ad7afa,https://biolit.fr/sorties/sortie-c8926c4f-512e-41ee-a8e7-2cad71ad7afa/,Céline,,10/26/2016 0:00,14.0:15,15.0000000,43.236002000000,5.359959000000,,Plage de la bonne brise,52625,observation-c8926c4f-512e-41ee-a8e7-2cad71ad7afa-5,https://biolit.fr/observations/observation-c8926c4f-512e-41ee-a8e7-2cad71ad7afa-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2148-scaled.jpg,,FALSE, +N1,60887,sortie-6a1db6a3-69f3-4607-a9f8-01e7f498e4a9,https://biolit.fr/sorties/sortie-6a1db6a3-69f3-4607-a9f8-01e7f498e4a9/,Marine,,10/26/2016 0:00,10.0000000,12.0000000,43.2145,5.2117,,Plage de la bonne brise,52627,observation-6a1db6a3-69f3-4607-a9f8-01e7f498e4a9,https://biolit.fr/observations/observation-6a1db6a3-69f3-4607-a9f8-01e7f498e4a9/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1962-scaled.jpg,,TRUE, +N1,60889,sortie-c331014f-eb08-4727-ad9e-fcfab556e8fc,https://biolit.fr/sorties/sortie-c331014f-eb08-4727-ad9e-fcfab556e8fc/,Emmanuelle,,10/26/2016 0:00,5.0000000,10.0000000,43.1358,5.2117,,Plage de la bonne brise,52671,observation-c331014f-eb08-4727-ad9e-fcfab556e8fc,https://biolit.fr/observations/observation-c331014f-eb08-4727-ad9e-fcfab556e8fc/,,,,https://biolit.fr/wp-content/uploads/2023/07/14774834343821496982932-rotated.jpg,,FALSE, +N1,60890,sortie-975dbb4b-ac57-4b2c-ab67-e8c32f340e45,https://biolit.fr/sorties/sortie-975dbb4b-ac57-4b2c-ab67-e8c32f340e45/,Phil,,10/25/2016 0:00,15.0000000,16.000005,47.895290000000,-3.96618000000,,La Forêt-Fouesnant - Finistère,52673,observation-975dbb4b-ac57-4b2c-ab67-e8c32f340e45,https://biolit.fr/observations/observation-975dbb4b-ac57-4b2c-ab67-e8c32f340e45/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161025_160451.jpg,,FALSE, +N1,60890,sortie-975dbb4b-ac57-4b2c-ab67-e8c32f340e45,https://biolit.fr/sorties/sortie-975dbb4b-ac57-4b2c-ab67-e8c32f340e45/,Phil,,10/25/2016 0:00,15.0000000,16.000005,47.895290000000,-3.96618000000,,La Forêt-Fouesnant - Finistère,52675,observation-975dbb4b-ac57-4b2c-ab67-e8c32f340e45-2,https://biolit.fr/observations/observation-975dbb4b-ac57-4b2c-ab67-e8c32f340e45-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161025_160112.jpg,,FALSE, +N1,60890,sortie-975dbb4b-ac57-4b2c-ab67-e8c32f340e45,https://biolit.fr/sorties/sortie-975dbb4b-ac57-4b2c-ab67-e8c32f340e45/,Phil,,10/25/2016 0:00,15.0000000,16.000005,47.895290000000,-3.96618000000,,La Forêt-Fouesnant - Finistère,52677,observation-975dbb4b-ac57-4b2c-ab67-e8c32f340e45-3,https://biolit.fr/observations/observation-975dbb4b-ac57-4b2c-ab67-e8c32f340e45-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161025_160000.jpg,,FALSE, +N1,60890,sortie-975dbb4b-ac57-4b2c-ab67-e8c32f340e45,https://biolit.fr/sorties/sortie-975dbb4b-ac57-4b2c-ab67-e8c32f340e45/,Phil,,10/25/2016 0:00,15.0000000,16.000005,47.895290000000,-3.96618000000,,La Forêt-Fouesnant - Finistère,52679,observation-975dbb4b-ac57-4b2c-ab67-e8c32f340e45-4,https://biolit.fr/observations/observation-975dbb4b-ac57-4b2c-ab67-e8c32f340e45-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161025_155541.jpg,,FALSE, +N1,60891,sortie-597c71ed-ea5e-4e9f-b96e-e05d6d04aff4,https://biolit.fr/sorties/sortie-597c71ed-ea5e-4e9f-b96e-e05d6d04aff4/,Marine,,9/26/2016 0:00,10.0000000,10.0000000,43.1358,5.2171,,Jj,52681,observation-597c71ed-ea5e-4e9f-b96e-e05d6d04aff4,https://biolit.fr/observations/observation-597c71ed-ea5e-4e9f-b96e-e05d6d04aff4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1903_1-scaled.jpg,,FALSE, +N1,60892,sortie-7732c920-58b3-4051-a304-599391b134b5,https://biolit.fr/sorties/sortie-7732c920-58b3-4051-a304-599391b134b5/,Phil,,10/01/2016,12.0000000,12.0000000,47.86879600000,-3.911782000000,,Concarneau - Finistère,52683,observation-7732c920-58b3-4051-a304-599391b134b5,https://biolit.fr/observations/observation-7732c920-58b3-4051-a304-599391b134b5/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/P1040271.JPG,,TRUE, +N1,60892,sortie-7732c920-58b3-4051-a304-599391b134b5,https://biolit.fr/sorties/sortie-7732c920-58b3-4051-a304-599391b134b5/,Phil,,10/01/2016,12.0000000,12.0000000,47.86879600000,-3.911782000000,,Concarneau - Finistère,52685,observation-7732c920-58b3-4051-a304-599391b134b5-2,https://biolit.fr/observations/observation-7732c920-58b3-4051-a304-599391b134b5-2/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/P1040266.JPG,,TRUE, +N1,60892,sortie-7732c920-58b3-4051-a304-599391b134b5,https://biolit.fr/sorties/sortie-7732c920-58b3-4051-a304-599391b134b5/,Phil,,10/01/2016,12.0000000,12.0000000,47.86879600000,-3.911782000000,,Concarneau - Finistère,52687,observation-7732c920-58b3-4051-a304-599391b134b5-3,https://biolit.fr/observations/observation-7732c920-58b3-4051-a304-599391b134b5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040277.JPG,,FALSE, +N1,60893,sortie-809351de-0d84-4581-bdde-52ff6f4be286,https://biolit.fr/sorties/sortie-809351de-0d84-4581-bdde-52ff6f4be286/,Phil,,10/25/2016 0:00,15.0000000,15.0:55,47.893926000000,-3.970090000000,,La Forêt-Fouesnant - Finistère,52689,observation-809351de-0d84-4581-bdde-52ff6f4be286,https://biolit.fr/observations/observation-809351de-0d84-4581-bdde-52ff6f4be286/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/20161025_155201.jpg,,TRUE, +N1,60893,sortie-809351de-0d84-4581-bdde-52ff6f4be286,https://biolit.fr/sorties/sortie-809351de-0d84-4581-bdde-52ff6f4be286/,Phil,,10/25/2016 0:00,15.0000000,15.0:55,47.893926000000,-3.970090000000,,La Forêt-Fouesnant - Finistère,52691,observation-809351de-0d84-4581-bdde-52ff6f4be286-2,https://biolit.fr/observations/observation-809351de-0d84-4581-bdde-52ff6f4be286-2/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/20161025_155327.jpg,,TRUE, +N1,60893,sortie-809351de-0d84-4581-bdde-52ff6f4be286,https://biolit.fr/sorties/sortie-809351de-0d84-4581-bdde-52ff6f4be286/,Phil,,10/25/2016 0:00,15.0000000,15.0:55,47.893926000000,-3.970090000000,,La Forêt-Fouesnant - Finistère,52693,observation-809351de-0d84-4581-bdde-52ff6f4be286-3,https://biolit.fr/observations/observation-809351de-0d84-4581-bdde-52ff6f4be286-3/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/20161025_155234.jpg,,TRUE, +N1,60894,sortie-95de4631-27fa-476a-a927-cb63bcc483ea,https://biolit.fr/sorties/sortie-95de4631-27fa-476a-a927-cb63bcc483ea/,Ville de Marseille,,10/24/2016 0:00,14.0000000,16.0000000,43.266318000000,5.371160000000,,Base nautique du Roucas Blanc,52695,observation-95de4631-27fa-476a-a927-cb63bcc483ea,https://biolit.fr/observations/observation-95de4631-27fa-476a-a927-cb63bcc483ea/,Styela plicata,Ascidie plissée,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1110290.JPG,,TRUE, +N1,60894,sortie-95de4631-27fa-476a-a927-cb63bcc483ea,https://biolit.fr/sorties/sortie-95de4631-27fa-476a-a927-cb63bcc483ea/,Ville de Marseille,,10/24/2016 0:00,14.0000000,16.0000000,43.266318000000,5.371160000000,,Base nautique du Roucas Blanc,52697,observation-95de4631-27fa-476a-a927-cb63bcc483ea-2,https://biolit.fr/observations/observation-95de4631-27fa-476a-a927-cb63bcc483ea-2/,Sabella spallanzanii,Spirographe,,https://biolit.fr/wp-content/uploads/2023/07/P1110305.JPG,,TRUE, +N1,60894,sortie-95de4631-27fa-476a-a927-cb63bcc483ea,https://biolit.fr/sorties/sortie-95de4631-27fa-476a-a927-cb63bcc483ea/,Ville de Marseille,,10/24/2016 0:00,14.0000000,16.0000000,43.266318000000,5.371160000000,,Base nautique du Roucas Blanc,52699,observation-95de4631-27fa-476a-a927-cb63bcc483ea-3,https://biolit.fr/observations/observation-95de4631-27fa-476a-a927-cb63bcc483ea-3/,Cratena peregrina,Hervia,,https://biolit.fr/wp-content/uploads/2023/07/P1110293.JPG,,TRUE, +N1,60894,sortie-95de4631-27fa-476a-a927-cb63bcc483ea,https://biolit.fr/sorties/sortie-95de4631-27fa-476a-a927-cb63bcc483ea/,Ville de Marseille,,10/24/2016 0:00,14.0000000,16.0000000,43.266318000000,5.371160000000,,Base nautique du Roucas Blanc,52701,observation-95de4631-27fa-476a-a927-cb63bcc483ea-4,https://biolit.fr/observations/observation-95de4631-27fa-476a-a927-cb63bcc483ea-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110272.JPG,,FALSE, +N1,60894,sortie-95de4631-27fa-476a-a927-cb63bcc483ea,https://biolit.fr/sorties/sortie-95de4631-27fa-476a-a927-cb63bcc483ea/,Ville de Marseille,,10/24/2016 0:00,14.0000000,16.0000000,43.266318000000,5.371160000000,,Base nautique du Roucas Blanc,52703,observation-95de4631-27fa-476a-a927-cb63bcc483ea-5,https://biolit.fr/observations/observation-95de4631-27fa-476a-a927-cb63bcc483ea-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110298.JPG,,FALSE, +N1,60894,sortie-95de4631-27fa-476a-a927-cb63bcc483ea,https://biolit.fr/sorties/sortie-95de4631-27fa-476a-a927-cb63bcc483ea/,Ville de Marseille,,10/24/2016 0:00,14.0000000,16.0000000,43.266318000000,5.371160000000,,Base nautique du Roucas Blanc,52705,observation-95de4631-27fa-476a-a927-cb63bcc483ea-6,https://biolit.fr/observations/observation-95de4631-27fa-476a-a927-cb63bcc483ea-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110297.JPG,,FALSE, +N1,60894,sortie-95de4631-27fa-476a-a927-cb63bcc483ea,https://biolit.fr/sorties/sortie-95de4631-27fa-476a-a927-cb63bcc483ea/,Ville de Marseille,,10/24/2016 0:00,14.0000000,16.0000000,43.266318000000,5.371160000000,,Base nautique du Roucas Blanc,52707,observation-95de4631-27fa-476a-a927-cb63bcc483ea-7,https://biolit.fr/observations/observation-95de4631-27fa-476a-a927-cb63bcc483ea-7/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1110280.JPG,,TRUE, +N1,60894,sortie-95de4631-27fa-476a-a927-cb63bcc483ea,https://biolit.fr/sorties/sortie-95de4631-27fa-476a-a927-cb63bcc483ea/,Ville de Marseille,,10/24/2016 0:00,14.0000000,16.0000000,43.266318000000,5.371160000000,,Base nautique du Roucas Blanc,52711,observation-95de4631-27fa-476a-a927-cb63bcc483ea-9,https://biolit.fr/observations/observation-95de4631-27fa-476a-a927-cb63bcc483ea-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110287.JPG,,FALSE, +N1,60895,sortie-87cdcc09-d7c3-4a63-8107-faf4addedfc4,https://biolit.fr/sorties/sortie-87cdcc09-d7c3-4a63-8107-faf4addedfc4/,Phil,,10/17/2016 0:00,11.0000000,11.0000000,47.788598000000,-4.277642000000,,Léchiagat - Finistère,52713,observation-87cdcc09-d7c3-4a63-8107-faf4addedfc4,https://biolit.fr/observations/observation-87cdcc09-d7c3-4a63-8107-faf4addedfc4/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20161017_113832.jpg,,TRUE, +N1,60895,sortie-87cdcc09-d7c3-4a63-8107-faf4addedfc4,https://biolit.fr/sorties/sortie-87cdcc09-d7c3-4a63-8107-faf4addedfc4/,Phil,,10/17/2016 0:00,11.0000000,11.0000000,47.788598000000,-4.277642000000,,Léchiagat - Finistère,52715,observation-87cdcc09-d7c3-4a63-8107-faf4addedfc4-2,https://biolit.fr/observations/observation-87cdcc09-d7c3-4a63-8107-faf4addedfc4-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20161017_114919.jpg,,TRUE, +N1,60895,sortie-87cdcc09-d7c3-4a63-8107-faf4addedfc4,https://biolit.fr/sorties/sortie-87cdcc09-d7c3-4a63-8107-faf4addedfc4/,Phil,,10/17/2016 0:00,11.0000000,11.0000000,47.788598000000,-4.277642000000,,Léchiagat - Finistère,52717,observation-87cdcc09-d7c3-4a63-8107-faf4addedfc4-3,https://biolit.fr/observations/observation-87cdcc09-d7c3-4a63-8107-faf4addedfc4-3/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20161017_114412.jpg,,TRUE, +N1,60895,sortie-87cdcc09-d7c3-4a63-8107-faf4addedfc4,https://biolit.fr/sorties/sortie-87cdcc09-d7c3-4a63-8107-faf4addedfc4/,Phil,,10/17/2016 0:00,11.0000000,11.0000000,47.788598000000,-4.277642000000,,Léchiagat - Finistère,52719,observation-87cdcc09-d7c3-4a63-8107-faf4addedfc4-4,https://biolit.fr/observations/observation-87cdcc09-d7c3-4a63-8107-faf4addedfc4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040500_0.JPG,,FALSE, +N1,60896,sortie-e83c4d6a-9f3e-4381-97cf-1eafaccca0d3,https://biolit.fr/sorties/sortie-e83c4d6a-9f3e-4381-97cf-1eafaccca0d3/,Phil,,10/16/2016 0:00,12.0000000,12.0:45,47.795085000000,-4.361692000000,,Penmarc'h - Finistère,52721,observation-e83c4d6a-9f3e-4381-97cf-1eafaccca0d3,https://biolit.fr/observations/observation-e83c4d6a-9f3e-4381-97cf-1eafaccca0d3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040449.JPG,,FALSE, +N1,60896,sortie-e83c4d6a-9f3e-4381-97cf-1eafaccca0d3,https://biolit.fr/sorties/sortie-e83c4d6a-9f3e-4381-97cf-1eafaccca0d3/,Phil,,10/16/2016 0:00,12.0000000,12.0:45,47.795085000000,-4.361692000000,,Penmarc'h - Finistère,52723,observation-e83c4d6a-9f3e-4381-97cf-1eafaccca0d3-2,https://biolit.fr/observations/observation-e83c4d6a-9f3e-4381-97cf-1eafaccca0d3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040459.JPG,,FALSE, +N1,60896,sortie-e83c4d6a-9f3e-4381-97cf-1eafaccca0d3,https://biolit.fr/sorties/sortie-e83c4d6a-9f3e-4381-97cf-1eafaccca0d3/,Phil,,10/16/2016 0:00,12.0000000,12.0:45,47.795085000000,-4.361692000000,,Penmarc'h - Finistère,52725,observation-e83c4d6a-9f3e-4381-97cf-1eafaccca0d3-3,https://biolit.fr/observations/observation-e83c4d6a-9f3e-4381-97cf-1eafaccca0d3-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040447.JPG,,FALSE, +N1,60896,sortie-e83c4d6a-9f3e-4381-97cf-1eafaccca0d3,https://biolit.fr/sorties/sortie-e83c4d6a-9f3e-4381-97cf-1eafaccca0d3/,Phil,,10/16/2016 0:00,12.0000000,12.0:45,47.795085000000,-4.361692000000,,Penmarc'h - Finistère,52727,observation-e83c4d6a-9f3e-4381-97cf-1eafaccca0d3-4,https://biolit.fr/observations/observation-e83c4d6a-9f3e-4381-97cf-1eafaccca0d3-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040453.JPG,,FALSE, +N1,60897,sortie-f9cf1472-4ab3-454e-8821-7fce96a26989,https://biolit.fr/sorties/sortie-f9cf1472-4ab3-454e-8821-7fce96a26989/,Phil,,10/22/2016 0:00,12.0:25,12.0000000,47.798734000000,-4.271359000000,,Treffiagat - Finistère,52729,observation-f9cf1472-4ab3-454e-8821-7fce96a26989,https://biolit.fr/observations/observation-f9cf1472-4ab3-454e-8821-7fce96a26989/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161022_122559.jpg,,FALSE, +N1,60897,sortie-f9cf1472-4ab3-454e-8821-7fce96a26989,https://biolit.fr/sorties/sortie-f9cf1472-4ab3-454e-8821-7fce96a26989/,Phil,,10/22/2016 0:00,12.0:25,12.0000000,47.798734000000,-4.271359000000,,Treffiagat - Finistère,52731,observation-f9cf1472-4ab3-454e-8821-7fce96a26989-2,https://biolit.fr/observations/observation-f9cf1472-4ab3-454e-8821-7fce96a26989-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161022_122815.jpg,,FALSE, +N1,60897,sortie-f9cf1472-4ab3-454e-8821-7fce96a26989,https://biolit.fr/sorties/sortie-f9cf1472-4ab3-454e-8821-7fce96a26989/,Phil,,10/22/2016 0:00,12.0:25,12.0000000,47.798734000000,-4.271359000000,,Treffiagat - Finistère,52733,observation-f9cf1472-4ab3-454e-8821-7fce96a26989-3,https://biolit.fr/observations/observation-f9cf1472-4ab3-454e-8821-7fce96a26989-3/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20161022_122915.jpg,,TRUE, +N1,60897,sortie-f9cf1472-4ab3-454e-8821-7fce96a26989,https://biolit.fr/sorties/sortie-f9cf1472-4ab3-454e-8821-7fce96a26989/,Phil,,10/22/2016 0:00,12.0:25,12.0000000,47.798734000000,-4.271359000000,,Treffiagat - Finistère,52735,observation-f9cf1472-4ab3-454e-8821-7fce96a26989-4,https://biolit.fr/observations/observation-f9cf1472-4ab3-454e-8821-7fce96a26989-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161022_122944.jpg,,FALSE, +N1,60898,sortie-a3d8a08a-92ab-4866-897e-7a83cfd078d4,https://biolit.fr/sorties/sortie-a3d8a08a-92ab-4866-897e-7a83cfd078d4/,Phil,,10/16/2016 0:00,12.0:45,12.0000000,47.791982000000,-4.359907000000,,Penmarc'h - Finistère,52737,observation-a3d8a08a-92ab-4866-897e-7a83cfd078d4,https://biolit.fr/observations/observation-a3d8a08a-92ab-4866-897e-7a83cfd078d4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040461.JPG,,FALSE, +N1,60898,sortie-a3d8a08a-92ab-4866-897e-7a83cfd078d4,https://biolit.fr/sorties/sortie-a3d8a08a-92ab-4866-897e-7a83cfd078d4/,Phil,,10/16/2016 0:00,12.0:45,12.0000000,47.791982000000,-4.359907000000,,Penmarc'h - Finistère,52739,observation-a3d8a08a-92ab-4866-897e-7a83cfd078d4-2,https://biolit.fr/observations/observation-a3d8a08a-92ab-4866-897e-7a83cfd078d4-2/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040462.JPG,,TRUE, +N1,60899,sortie-845f98cb-707b-4ccc-b8ba-9dff78783b28,https://biolit.fr/sorties/sortie-845f98cb-707b-4ccc-b8ba-9dff78783b28/,E.C.O.L.E de la mer,,10/19/2016 0:00,14.0000000,16.0000000,46.141273,-1.171316,,Plage des Minimes - La Rochelle,52741,observation-845f98cb-707b-4ccc-b8ba-9dff78783b28,https://biolit.fr/observations/observation-845f98cb-707b-4ccc-b8ba-9dff78783b28/,,,,https://biolit.fr/wp-content/uploads/2023/07/dscn8426-scaled.jpg,,FALSE, +N1,60899,sortie-845f98cb-707b-4ccc-b8ba-9dff78783b28,https://biolit.fr/sorties/sortie-845f98cb-707b-4ccc-b8ba-9dff78783b28/,E.C.O.L.E de la mer,,10/19/2016 0:00,14.0000000,16.0000000,46.141273,-1.171316,,Plage des Minimes - La Rochelle,52743,observation-845f98cb-707b-4ccc-b8ba-9dff78783b28-2,https://biolit.fr/observations/observation-845f98cb-707b-4ccc-b8ba-9dff78783b28-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/dscn8433.jpg,,FALSE, +N1,60899,sortie-845f98cb-707b-4ccc-b8ba-9dff78783b28,https://biolit.fr/sorties/sortie-845f98cb-707b-4ccc-b8ba-9dff78783b28/,E.C.O.L.E de la mer,,10/19/2016 0:00,14.0000000,16.0000000,46.141273,-1.171316,,Plage des Minimes - La Rochelle,52745,observation-845f98cb-707b-4ccc-b8ba-9dff78783b28-3,https://biolit.fr/observations/observation-845f98cb-707b-4ccc-b8ba-9dff78783b28-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/dscn8435-scaled.jpg,,FALSE, +N1,60899,sortie-845f98cb-707b-4ccc-b8ba-9dff78783b28,https://biolit.fr/sorties/sortie-845f98cb-707b-4ccc-b8ba-9dff78783b28/,E.C.O.L.E de la mer,,10/19/2016 0:00,14.0000000,16.0000000,46.141273,-1.171316,,Plage des Minimes - La Rochelle,52747,observation-845f98cb-707b-4ccc-b8ba-9dff78783b28-4,https://biolit.fr/observations/observation-845f98cb-707b-4ccc-b8ba-9dff78783b28-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/dscn8430-scaled.jpg,,FALSE, +N1,60899,sortie-845f98cb-707b-4ccc-b8ba-9dff78783b28,https://biolit.fr/sorties/sortie-845f98cb-707b-4ccc-b8ba-9dff78783b28/,E.C.O.L.E de la mer,,10/19/2016 0:00,14.0000000,16.0000000,46.141273,-1.171316,,Plage des Minimes - La Rochelle,52749,observation-845f98cb-707b-4ccc-b8ba-9dff78783b28-5,https://biolit.fr/observations/observation-845f98cb-707b-4ccc-b8ba-9dff78783b28-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/dscn8439-scaled.jpg,,FALSE, +N1,60899,sortie-845f98cb-707b-4ccc-b8ba-9dff78783b28,https://biolit.fr/sorties/sortie-845f98cb-707b-4ccc-b8ba-9dff78783b28/,E.C.O.L.E de la mer,,10/19/2016 0:00,14.0000000,16.0000000,46.141273,-1.171316,,Plage des Minimes - La Rochelle,52751,observation-845f98cb-707b-4ccc-b8ba-9dff78783b28-6,https://biolit.fr/observations/observation-845f98cb-707b-4ccc-b8ba-9dff78783b28-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/dscn8443-scaled.jpg,,FALSE, +N1,60899,sortie-845f98cb-707b-4ccc-b8ba-9dff78783b28,https://biolit.fr/sorties/sortie-845f98cb-707b-4ccc-b8ba-9dff78783b28/,E.C.O.L.E de la mer,,10/19/2016 0:00,14.0000000,16.0000000,46.141273,-1.171316,,Plage des Minimes - La Rochelle,52753,observation-845f98cb-707b-4ccc-b8ba-9dff78783b28-7,https://biolit.fr/observations/observation-845f98cb-707b-4ccc-b8ba-9dff78783b28-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/dscn8442-scaled.jpg,,FALSE, +N1,60900,sortie-626ede37-e837-4c50-8782-6d8595e82f31,https://biolit.fr/sorties/sortie-626ede37-e837-4c50-8782-6d8595e82f31/,Phil,,10/17/2016 0:00,11.0000000,11.0:55,47.789644000000,-4.277696000000,,Léchiagat - Finistère,52755,observation-626ede37-e837-4c50-8782-6d8595e82f31,https://biolit.fr/observations/observation-626ede37-e837-4c50-8782-6d8595e82f31/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161017_115312.jpg,,FALSE, +N1,60900,sortie-626ede37-e837-4c50-8782-6d8595e82f31,https://biolit.fr/sorties/sortie-626ede37-e837-4c50-8782-6d8595e82f31/,Phil,,10/17/2016 0:00,11.0000000,11.0:55,47.789644000000,-4.277696000000,,Léchiagat - Finistère,52757,observation-626ede37-e837-4c50-8782-6d8595e82f31-2,https://biolit.fr/observations/observation-626ede37-e837-4c50-8782-6d8595e82f31-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161017_115353.jpg,,FALSE, +N1,60900,sortie-626ede37-e837-4c50-8782-6d8595e82f31,https://biolit.fr/sorties/sortie-626ede37-e837-4c50-8782-6d8595e82f31/,Phil,,10/17/2016 0:00,11.0000000,11.0:55,47.789644000000,-4.277696000000,,Léchiagat - Finistère,52759,observation-626ede37-e837-4c50-8782-6d8595e82f31-3,https://biolit.fr/observations/observation-626ede37-e837-4c50-8782-6d8595e82f31-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161017_115400.jpg,,FALSE, +N1,60900,sortie-626ede37-e837-4c50-8782-6d8595e82f31,https://biolit.fr/sorties/sortie-626ede37-e837-4c50-8782-6d8595e82f31/,Phil,,10/17/2016 0:00,11.0000000,11.0:55,47.789644000000,-4.277696000000,,Léchiagat - Finistère,52761,observation-626ede37-e837-4c50-8782-6d8595e82f31-4,https://biolit.fr/observations/observation-626ede37-e837-4c50-8782-6d8595e82f31-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040497.JPG,,FALSE, +N1,60900,sortie-626ede37-e837-4c50-8782-6d8595e82f31,https://biolit.fr/sorties/sortie-626ede37-e837-4c50-8782-6d8595e82f31/,Phil,,10/17/2016 0:00,11.0000000,11.0:55,47.789644000000,-4.277696000000,,Léchiagat - Finistère,52763,observation-626ede37-e837-4c50-8782-6d8595e82f31-5,https://biolit.fr/observations/observation-626ede37-e837-4c50-8782-6d8595e82f31-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040499_0.JPG,,FALSE, +N1,60900,sortie-626ede37-e837-4c50-8782-6d8595e82f31,https://biolit.fr/sorties/sortie-626ede37-e837-4c50-8782-6d8595e82f31/,Phil,,10/17/2016 0:00,11.0000000,11.0:55,47.789644000000,-4.277696000000,,Léchiagat - Finistère,52765,observation-626ede37-e837-4c50-8782-6d8595e82f31-6,https://biolit.fr/observations/observation-626ede37-e837-4c50-8782-6d8595e82f31-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040501.JPG,,FALSE, +N1,60901,sortie-5b9fa435-e56d-45e7-a0db-2b4798565750,https://biolit.fr/sorties/sortie-5b9fa435-e56d-45e7-a0db-2b4798565750/,Phil,,10/16/2016 0:00,11.0:45,12.0000000,47.787626000000,-4.360881000000,,Penmarc'h - Finistère,52767,observation-5b9fa435-e56d-45e7-a0db-2b4798565750,https://biolit.fr/observations/observation-5b9fa435-e56d-45e7-a0db-2b4798565750/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040414.JPG,,FALSE, +N1,60901,sortie-5b9fa435-e56d-45e7-a0db-2b4798565750,https://biolit.fr/sorties/sortie-5b9fa435-e56d-45e7-a0db-2b4798565750/,Phil,,10/16/2016 0:00,11.0:45,12.0000000,47.787626000000,-4.360881000000,,Penmarc'h - Finistère,52769,observation-5b9fa435-e56d-45e7-a0db-2b4798565750-2,https://biolit.fr/observations/observation-5b9fa435-e56d-45e7-a0db-2b4798565750-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040420.JPG,,FALSE, +N1,60901,sortie-5b9fa435-e56d-45e7-a0db-2b4798565750,https://biolit.fr/sorties/sortie-5b9fa435-e56d-45e7-a0db-2b4798565750/,Phil,,10/16/2016 0:00,11.0:45,12.0000000,47.787626000000,-4.360881000000,,Penmarc'h - Finistère,52771,observation-5b9fa435-e56d-45e7-a0db-2b4798565750-3,https://biolit.fr/observations/observation-5b9fa435-e56d-45e7-a0db-2b4798565750-3/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1040441.JPG,,TRUE, +N1,60901,sortie-5b9fa435-e56d-45e7-a0db-2b4798565750,https://biolit.fr/sorties/sortie-5b9fa435-e56d-45e7-a0db-2b4798565750/,Phil,,10/16/2016 0:00,11.0:45,12.0000000,47.787626000000,-4.360881000000,,Penmarc'h - Finistère,52773,observation-5b9fa435-e56d-45e7-a0db-2b4798565750-4,https://biolit.fr/observations/observation-5b9fa435-e56d-45e7-a0db-2b4798565750-4/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/P1040409.JPG,,TRUE, +N1,60901,sortie-5b9fa435-e56d-45e7-a0db-2b4798565750,https://biolit.fr/sorties/sortie-5b9fa435-e56d-45e7-a0db-2b4798565750/,Phil,,10/16/2016 0:00,11.0:45,12.0000000,47.787626000000,-4.360881000000,,Penmarc'h - Finistère,52775,observation-5b9fa435-e56d-45e7-a0db-2b4798565750-5,https://biolit.fr/observations/observation-5b9fa435-e56d-45e7-a0db-2b4798565750-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040404.JPG,,FALSE, +N1,60901,sortie-5b9fa435-e56d-45e7-a0db-2b4798565750,https://biolit.fr/sorties/sortie-5b9fa435-e56d-45e7-a0db-2b4798565750/,Phil,,10/16/2016 0:00,11.0:45,12.0000000,47.787626000000,-4.360881000000,,Penmarc'h - Finistère,52777,observation-5b9fa435-e56d-45e7-a0db-2b4798565750-6,https://biolit.fr/observations/observation-5b9fa435-e56d-45e7-a0db-2b4798565750-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040402.JPG,,FALSE, +N1,60902,sortie-a0d8ff55-e84d-4edd-ad62-aa82aeeb693a,https://biolit.fr/sorties/sortie-a0d8ff55-e84d-4edd-ad62-aa82aeeb693a/,Phil,,10/20/2016 0:00,15.0:25,15.0:35,48.120351000000,-4.283766000000,,Plonevez Porzay - Finistère,52779,observation-a0d8ff55-e84d-4edd-ad62-aa82aeeb693a,https://biolit.fr/observations/observation-a0d8ff55-e84d-4edd-ad62-aa82aeeb693a/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1040538.JPG,,TRUE, +N1,60902,sortie-a0d8ff55-e84d-4edd-ad62-aa82aeeb693a,https://biolit.fr/sorties/sortie-a0d8ff55-e84d-4edd-ad62-aa82aeeb693a/,Phil,,10/20/2016 0:00,15.0:25,15.0:35,48.120351000000,-4.283766000000,,Plonevez Porzay - Finistère,52781,observation-a0d8ff55-e84d-4edd-ad62-aa82aeeb693a-2,https://biolit.fr/observations/observation-a0d8ff55-e84d-4edd-ad62-aa82aeeb693a-2/,Amphipholis squamata,Ophiure écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/P1040539.JPG,,TRUE, +N1,60902,sortie-a0d8ff55-e84d-4edd-ad62-aa82aeeb693a,https://biolit.fr/sorties/sortie-a0d8ff55-e84d-4edd-ad62-aa82aeeb693a/,Phil,,10/20/2016 0:00,15.0:25,15.0:35,48.120351000000,-4.283766000000,,Plonevez Porzay - Finistère,52783,observation-a0d8ff55-e84d-4edd-ad62-aa82aeeb693a-3,https://biolit.fr/observations/observation-a0d8ff55-e84d-4edd-ad62-aa82aeeb693a-3/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1040542.JPG,,TRUE, +N1,60902,sortie-a0d8ff55-e84d-4edd-ad62-aa82aeeb693a,https://biolit.fr/sorties/sortie-a0d8ff55-e84d-4edd-ad62-aa82aeeb693a/,Phil,,10/20/2016 0:00,15.0:25,15.0:35,48.120351000000,-4.283766000000,,Plonevez Porzay - Finistère,52785,observation-a0d8ff55-e84d-4edd-ad62-aa82aeeb693a-4,https://biolit.fr/observations/observation-a0d8ff55-e84d-4edd-ad62-aa82aeeb693a-4/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1040595.JPG,,TRUE, +N1,60903,sortie-b320a454-57c9-4ed2-9bec-f2e017c0cc5a,https://biolit.fr/sorties/sortie-b320a454-57c9-4ed2-9bec-f2e017c0cc5a/,Phil,,10/01/2016,12.0000000,12.0000000,47.869485000000,-3.912354000000,,Concarneau - Finistère,52787,observation-b320a454-57c9-4ed2-9bec-f2e017c0cc5a,https://biolit.fr/observations/observation-b320a454-57c9-4ed2-9bec-f2e017c0cc5a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040239.JPG,,FALSE, +N1,60903,sortie-b320a454-57c9-4ed2-9bec-f2e017c0cc5a,https://biolit.fr/sorties/sortie-b320a454-57c9-4ed2-9bec-f2e017c0cc5a/,Phil,,10/01/2016,12.0000000,12.0000000,47.869485000000,-3.912354000000,,Concarneau - Finistère,52789,observation-b320a454-57c9-4ed2-9bec-f2e017c0cc5a-2,https://biolit.fr/observations/observation-b320a454-57c9-4ed2-9bec-f2e017c0cc5a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040236.JPG,,FALSE, +N1,60903,sortie-b320a454-57c9-4ed2-9bec-f2e017c0cc5a,https://biolit.fr/sorties/sortie-b320a454-57c9-4ed2-9bec-f2e017c0cc5a/,Phil,,10/01/2016,12.0000000,12.0000000,47.869485000000,-3.912354000000,,Concarneau - Finistère,52791,observation-b320a454-57c9-4ed2-9bec-f2e017c0cc5a-3,https://biolit.fr/observations/observation-b320a454-57c9-4ed2-9bec-f2e017c0cc5a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040257-scaled.jpg,,FALSE, +N1,60903,sortie-b320a454-57c9-4ed2-9bec-f2e017c0cc5a,https://biolit.fr/sorties/sortie-b320a454-57c9-4ed2-9bec-f2e017c0cc5a/,Phil,,10/01/2016,12.0000000,12.0000000,47.869485000000,-3.912354000000,,Concarneau - Finistère,52793,observation-b320a454-57c9-4ed2-9bec-f2e017c0cc5a-4,https://biolit.fr/observations/observation-b320a454-57c9-4ed2-9bec-f2e017c0cc5a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040262.JPG,,FALSE, +N1,60903,sortie-b320a454-57c9-4ed2-9bec-f2e017c0cc5a,https://biolit.fr/sorties/sortie-b320a454-57c9-4ed2-9bec-f2e017c0cc5a/,Phil,,10/01/2016,12.0000000,12.0000000,47.869485000000,-3.912354000000,,Concarneau - Finistère,52795,observation-b320a454-57c9-4ed2-9bec-f2e017c0cc5a-5,https://biolit.fr/observations/observation-b320a454-57c9-4ed2-9bec-f2e017c0cc5a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040242.JPG,,FALSE, +N1,60904,sortie-e687277c-d943-465a-8004-103770c26c27,https://biolit.fr/sorties/sortie-e687277c-d943-465a-8004-103770c26c27/,Phil,,10/16/2016 0:00,11.0:35,11.0:55,47.788083000000,-4.36540900000,,Penmarc'h - Finistère,52797,observation-e687277c-d943-465a-8004-103770c26c27,https://biolit.fr/observations/observation-e687277c-d943-465a-8004-103770c26c27/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040396.JPG,,FALSE, +N1,60904,sortie-e687277c-d943-465a-8004-103770c26c27,https://biolit.fr/sorties/sortie-e687277c-d943-465a-8004-103770c26c27/,Phil,,10/16/2016 0:00,11.0:35,11.0:55,47.788083000000,-4.36540900000,,Penmarc'h - Finistère,52799,observation-e687277c-d943-465a-8004-103770c26c27-2,https://biolit.fr/observations/observation-e687277c-d943-465a-8004-103770c26c27-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040357.JPG,,FALSE, +N1,60904,sortie-e687277c-d943-465a-8004-103770c26c27,https://biolit.fr/sorties/sortie-e687277c-d943-465a-8004-103770c26c27/,Phil,,10/16/2016 0:00,11.0:35,11.0:55,47.788083000000,-4.36540900000,,Penmarc'h - Finistère,52801,observation-e687277c-d943-465a-8004-103770c26c27-3,https://biolit.fr/observations/observation-e687277c-d943-465a-8004-103770c26c27-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040388.JPG,,FALSE, +N1,60904,sortie-e687277c-d943-465a-8004-103770c26c27,https://biolit.fr/sorties/sortie-e687277c-d943-465a-8004-103770c26c27/,Phil,,10/16/2016 0:00,11.0:35,11.0:55,47.788083000000,-4.36540900000,,Penmarc'h - Finistère,52803,observation-e687277c-d943-465a-8004-103770c26c27-4,https://biolit.fr/observations/observation-e687277c-d943-465a-8004-103770c26c27-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040384.JPG,,FALSE, +N1,60904,sortie-e687277c-d943-465a-8004-103770c26c27,https://biolit.fr/sorties/sortie-e687277c-d943-465a-8004-103770c26c27/,Phil,,10/16/2016 0:00,11.0:35,11.0:55,47.788083000000,-4.36540900000,,Penmarc'h - Finistère,52805,observation-e687277c-d943-465a-8004-103770c26c27-5,https://biolit.fr/observations/observation-e687277c-d943-465a-8004-103770c26c27-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040400.JPG,,FALSE, +N1,60905,sortie-5b981d86-82a4-4bab-9f59-50e03acbf505,https://biolit.fr/sorties/sortie-5b981d86-82a4-4bab-9f59-50e03acbf505/,Phil,,10/17/2016 0:00,11.0000000,11.0000000,47.788704000000,-4.279604000000,,Treffiagat - Finistère,52807,observation-5b981d86-82a4-4bab-9f59-50e03acbf505,https://biolit.fr/observations/observation-5b981d86-82a4-4bab-9f59-50e03acbf505/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040488.JPG,,FALSE, +N1,60905,sortie-5b981d86-82a4-4bab-9f59-50e03acbf505,https://biolit.fr/sorties/sortie-5b981d86-82a4-4bab-9f59-50e03acbf505/,Phil,,10/17/2016 0:00,11.0000000,11.0000000,47.788704000000,-4.279604000000,,Treffiagat - Finistère,52809,observation-5b981d86-82a4-4bab-9f59-50e03acbf505-2,https://biolit.fr/observations/observation-5b981d86-82a4-4bab-9f59-50e03acbf505-2/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/P1040487.JPG,,TRUE, +N1,60905,sortie-5b981d86-82a4-4bab-9f59-50e03acbf505,https://biolit.fr/sorties/sortie-5b981d86-82a4-4bab-9f59-50e03acbf505/,Phil,,10/17/2016 0:00,11.0000000,11.0000000,47.788704000000,-4.279604000000,,Treffiagat - Finistère,52811,observation-5b981d86-82a4-4bab-9f59-50e03acbf505-3,https://biolit.fr/observations/observation-5b981d86-82a4-4bab-9f59-50e03acbf505-3/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/P1040495_0.JPG,,TRUE, +N1,60906,sortie-3d240bab-52f7-4665-950b-abb1bf5bad1d,https://biolit.fr/sorties/sortie-3d240bab-52f7-4665-950b-abb1bf5bad1d/,Phil,,10/16/2016 0:00,12.0:15,12.0:25,47.78785000000,-4.362134000000,,Penmarc'h - Finistère,52813,observation-3d240bab-52f7-4665-950b-abb1bf5bad1d,https://biolit.fr/observations/observation-3d240bab-52f7-4665-950b-abb1bf5bad1d/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/20161016_121759.jpg,,TRUE, +N1,60906,sortie-3d240bab-52f7-4665-950b-abb1bf5bad1d,https://biolit.fr/sorties/sortie-3d240bab-52f7-4665-950b-abb1bf5bad1d/,Phil,,10/16/2016 0:00,12.0:15,12.0:25,47.78785000000,-4.362134000000,,Penmarc'h - Finistère,52815,observation-3d240bab-52f7-4665-950b-abb1bf5bad1d-2,https://biolit.fr/observations/observation-3d240bab-52f7-4665-950b-abb1bf5bad1d-2/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/20161016_121846.jpg,,TRUE, +N1,60906,sortie-3d240bab-52f7-4665-950b-abb1bf5bad1d,https://biolit.fr/sorties/sortie-3d240bab-52f7-4665-950b-abb1bf5bad1d/,Phil,,10/16/2016 0:00,12.0:15,12.0:25,47.78785000000,-4.362134000000,,Penmarc'h - Finistère,52817,observation-3d240bab-52f7-4665-950b-abb1bf5bad1d-3,https://biolit.fr/observations/observation-3d240bab-52f7-4665-950b-abb1bf5bad1d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161016_122330.jpg,,FALSE, +N1,60906,sortie-3d240bab-52f7-4665-950b-abb1bf5bad1d,https://biolit.fr/sorties/sortie-3d240bab-52f7-4665-950b-abb1bf5bad1d/,Phil,,10/16/2016 0:00,12.0:15,12.0:25,47.78785000000,-4.362134000000,,Penmarc'h - Finistère,52819,observation-3d240bab-52f7-4665-950b-abb1bf5bad1d-4,https://biolit.fr/observations/observation-3d240bab-52f7-4665-950b-abb1bf5bad1d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161016_122301.jpg,,FALSE, +N1,60907,sortie-3c1bf0f6-86f2-4893-b6bb-d0f430bfb50f,https://biolit.fr/sorties/sortie-3c1bf0f6-86f2-4893-b6bb-d0f430bfb50f/,Phil,,10/17/2016 0:00,12.0:25,12.0000000,47.836077000000,-4.17208800000,,Loctudy - Finistère,52821,observation-3c1bf0f6-86f2-4893-b6bb-d0f430bfb50f,https://biolit.fr/observations/observation-3c1bf0f6-86f2-4893-b6bb-d0f430bfb50f/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/P1040515.JPG,,TRUE, +N1,60908,sortie-d9202fc0-79de-4df9-a536-97c5472e42ea,https://biolit.fr/sorties/sortie-d9202fc0-79de-4df9-a536-97c5472e42ea/,Phil,,10/16/2016 0:00,12.0000000,12.0:15,47.791162000000,-4.359179000000,,Penmarc'h - Finistère,52823,observation-d9202fc0-79de-4df9-a536-97c5472e42ea,https://biolit.fr/observations/observation-d9202fc0-79de-4df9-a536-97c5472e42ea/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1040335.JPG,,TRUE, +N1,60908,sortie-d9202fc0-79de-4df9-a536-97c5472e42ea,https://biolit.fr/sorties/sortie-d9202fc0-79de-4df9-a536-97c5472e42ea/,Phil,,10/16/2016 0:00,12.0000000,12.0:15,47.791162000000,-4.359179000000,,Penmarc'h - Finistère,52825,observation-d9202fc0-79de-4df9-a536-97c5472e42ea-2,https://biolit.fr/observations/observation-d9202fc0-79de-4df9-a536-97c5472e42ea-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161016_121257.jpg,,FALSE, +N1,60908,sortie-d9202fc0-79de-4df9-a536-97c5472e42ea,https://biolit.fr/sorties/sortie-d9202fc0-79de-4df9-a536-97c5472e42ea/,Phil,,10/16/2016 0:00,12.0000000,12.0:15,47.791162000000,-4.359179000000,,Penmarc'h - Finistère,52827,observation-d9202fc0-79de-4df9-a536-97c5472e42ea-3,https://biolit.fr/observations/observation-d9202fc0-79de-4df9-a536-97c5472e42ea-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161016_121459.jpg,,FALSE, +N1,60908,sortie-d9202fc0-79de-4df9-a536-97c5472e42ea,https://biolit.fr/sorties/sortie-d9202fc0-79de-4df9-a536-97c5472e42ea/,Phil,,10/16/2016 0:00,12.0000000,12.0:15,47.791162000000,-4.359179000000,,Penmarc'h - Finistère,52829,observation-d9202fc0-79de-4df9-a536-97c5472e42ea-4,https://biolit.fr/observations/observation-d9202fc0-79de-4df9-a536-97c5472e42ea-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161016_121322.jpg,,FALSE, +N1,60909,sortie-ff7b4e68-4280-4292-81cf-d6d4f4643d48,https://biolit.fr/sorties/sortie-ff7b4e68-4280-4292-81cf-d6d4f4643d48/,Phil,,9/18/2016 0:00,14.000005,14.0000000,48.096034000000,-4.46592900000,,Beuzec Cap Sizun - Finistère,52831,observation-ff7b4e68-4280-4292-81cf-d6d4f4643d48,https://biolit.fr/observations/observation-ff7b4e68-4280-4292-81cf-d6d4f4643d48/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1030630.JPG,,TRUE, +N1,60909,sortie-ff7b4e68-4280-4292-81cf-d6d4f4643d48,https://biolit.fr/sorties/sortie-ff7b4e68-4280-4292-81cf-d6d4f4643d48/,Phil,,9/18/2016 0:00,14.000005,14.0000000,48.096034000000,-4.46592900000,,Beuzec Cap Sizun - Finistère,52833,observation-ff7b4e68-4280-4292-81cf-d6d4f4643d48-2,https://biolit.fr/observations/observation-ff7b4e68-4280-4292-81cf-d6d4f4643d48-2/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1030629.JPG,,TRUE, +N1,60909,sortie-ff7b4e68-4280-4292-81cf-d6d4f4643d48,https://biolit.fr/sorties/sortie-ff7b4e68-4280-4292-81cf-d6d4f4643d48/,Phil,,9/18/2016 0:00,14.000005,14.0000000,48.096034000000,-4.46592900000,,Beuzec Cap Sizun - Finistère,52835,observation-ff7b4e68-4280-4292-81cf-d6d4f4643d48-3,https://biolit.fr/observations/observation-ff7b4e68-4280-4292-81cf-d6d4f4643d48-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030634.JPG,,FALSE, +N1,60909,sortie-ff7b4e68-4280-4292-81cf-d6d4f4643d48,https://biolit.fr/sorties/sortie-ff7b4e68-4280-4292-81cf-d6d4f4643d48/,Phil,,9/18/2016 0:00,14.000005,14.0000000,48.096034000000,-4.46592900000,,Beuzec Cap Sizun - Finistère,52837,observation-ff7b4e68-4280-4292-81cf-d6d4f4643d48-4,https://biolit.fr/observations/observation-ff7b4e68-4280-4292-81cf-d6d4f4643d48-4/,Convolvulus soldanella,Liseron des dunes,,https://biolit.fr/wp-content/uploads/2023/07/P1030623.JPG,,TRUE, +N1,60909,sortie-ff7b4e68-4280-4292-81cf-d6d4f4643d48,https://biolit.fr/sorties/sortie-ff7b4e68-4280-4292-81cf-d6d4f4643d48/,Phil,,9/18/2016 0:00,14.000005,14.0000000,48.096034000000,-4.46592900000,,Beuzec Cap Sizun - Finistère,52839,observation-ff7b4e68-4280-4292-81cf-d6d4f4643d48-5,https://biolit.fr/observations/observation-ff7b4e68-4280-4292-81cf-d6d4f4643d48-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030627.JPG,,FALSE, +N1,60910,sortie-c8c89d9c-528c-460a-a01f-a814447d7301,https://biolit.fr/sorties/sortie-c8c89d9c-528c-460a-a01f-a814447d7301/,Phil,,9/24/2016 0:00,17.0000000,17.0:45,47.792028000000,-4.218394000000,,Loctudy - Finistère,52841,observation-c8c89d9c-528c-460a-a01f-a814447d7301,https://biolit.fr/observations/observation-c8c89d9c-528c-460a-a01f-a814447d7301/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/P1040142.JPG,,TRUE, +N1,60910,sortie-c8c89d9c-528c-460a-a01f-a814447d7301,https://biolit.fr/sorties/sortie-c8c89d9c-528c-460a-a01f-a814447d7301/,Phil,,9/24/2016 0:00,17.0000000,17.0:45,47.792028000000,-4.218394000000,,Loctudy - Finistère,52843,observation-c8c89d9c-528c-460a-a01f-a814447d7301-2,https://biolit.fr/observations/observation-c8c89d9c-528c-460a-a01f-a814447d7301-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1040163.JPG,,TRUE, +N1,60910,sortie-c8c89d9c-528c-460a-a01f-a814447d7301,https://biolit.fr/sorties/sortie-c8c89d9c-528c-460a-a01f-a814447d7301/,Phil,,9/24/2016 0:00,17.0000000,17.0:45,47.792028000000,-4.218394000000,,Loctudy - Finistère,52845,observation-c8c89d9c-528c-460a-a01f-a814447d7301-3,https://biolit.fr/observations/observation-c8c89d9c-528c-460a-a01f-a814447d7301-3/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1040148.JPG,,TRUE, +N1,60911,sortie-99408d09-d803-46f8-a839-7407cf0530aa,https://biolit.fr/sorties/sortie-99408d09-d803-46f8-a839-7407cf0530aa/,Phil,,10/01/2016,12.0:25,12.0:45,47.867678000000,-3.911731000000,,Concarneau - Finistère,52847,observation-99408d09-d803-46f8-a839-7407cf0530aa,https://biolit.fr/observations/observation-99408d09-d803-46f8-a839-7407cf0530aa/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1040287.JPG,,TRUE, +N1,60911,sortie-99408d09-d803-46f8-a839-7407cf0530aa,https://biolit.fr/sorties/sortie-99408d09-d803-46f8-a839-7407cf0530aa/,Phil,,10/01/2016,12.0:25,12.0:45,47.867678000000,-3.911731000000,,Concarneau - Finistère,52849,observation-99408d09-d803-46f8-a839-7407cf0530aa-2,https://biolit.fr/observations/observation-99408d09-d803-46f8-a839-7407cf0530aa-2/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1040285.JPG,,TRUE, +N1,60911,sortie-99408d09-d803-46f8-a839-7407cf0530aa,https://biolit.fr/sorties/sortie-99408d09-d803-46f8-a839-7407cf0530aa/,Phil,,10/01/2016,12.0:25,12.0:45,47.867678000000,-3.911731000000,,Concarneau - Finistère,52851,observation-99408d09-d803-46f8-a839-7407cf0530aa-3,https://biolit.fr/observations/observation-99408d09-d803-46f8-a839-7407cf0530aa-3/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/P1040259.JPG,,TRUE, +N1,60912,sortie-dda0603e-740f-4c21-8df7-ffe54be8f96a,https://biolit.fr/sorties/sortie-dda0603e-740f-4c21-8df7-ffe54be8f96a/,Phil,,10/16/2016 0:00,11.000005,11.0000000,47.788992000000,-4.357800000000,,Penmarc'h - Finistère,52853,observation-dda0603e-740f-4c21-8df7-ffe54be8f96a,https://biolit.fr/observations/observation-dda0603e-740f-4c21-8df7-ffe54be8f96a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040327.JPG,,FALSE, +N1,60912,sortie-dda0603e-740f-4c21-8df7-ffe54be8f96a,https://biolit.fr/sorties/sortie-dda0603e-740f-4c21-8df7-ffe54be8f96a/,Phil,,10/16/2016 0:00,11.000005,11.0000000,47.788992000000,-4.357800000000,,Penmarc'h - Finistère,52855,observation-dda0603e-740f-4c21-8df7-ffe54be8f96a-2,https://biolit.fr/observations/observation-dda0603e-740f-4c21-8df7-ffe54be8f96a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161016_110824.jpg,,FALSE, +N1,60912,sortie-dda0603e-740f-4c21-8df7-ffe54be8f96a,https://biolit.fr/sorties/sortie-dda0603e-740f-4c21-8df7-ffe54be8f96a/,Phil,,10/16/2016 0:00,11.000005,11.0000000,47.788992000000,-4.357800000000,,Penmarc'h - Finistère,52857,observation-dda0603e-740f-4c21-8df7-ffe54be8f96a-3,https://biolit.fr/observations/observation-dda0603e-740f-4c21-8df7-ffe54be8f96a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161016_110851.jpg,,FALSE, +N1,60912,sortie-dda0603e-740f-4c21-8df7-ffe54be8f96a,https://biolit.fr/sorties/sortie-dda0603e-740f-4c21-8df7-ffe54be8f96a/,Phil,,10/16/2016 0:00,11.000005,11.0000000,47.788992000000,-4.357800000000,,Penmarc'h - Finistère,52859,observation-dda0603e-740f-4c21-8df7-ffe54be8f96a-4,https://biolit.fr/observations/observation-dda0603e-740f-4c21-8df7-ffe54be8f96a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161016_111124.jpg,,FALSE, +N1,60913,sortie-fd213d84-934d-4f19-a2f2-a95a75250db7,https://biolit.fr/sorties/sortie-fd213d84-934d-4f19-a2f2-a95a75250db7/,Earthforce FS,,10/16/2016 0:00,9.0000000,12.0000000,16.305212000000,-61.266864000000,,L'Anse à l'Eau,52861,observation-fd213d84-934d-4f19-a2f2-a95a75250db7,https://biolit.fr/observations/observation-fd213d84-934d-4f19-a2f2-a95a75250db7/,Chelonia mydas,Tortue verte,,https://biolit.fr/wp-content/uploads/2023/07/14702344_10208890111708119_4583261379694374537_n.jpg,,TRUE, +N1,60913,sortie-fd213d84-934d-4f19-a2f2-a95a75250db7,https://biolit.fr/sorties/sortie-fd213d84-934d-4f19-a2f2-a95a75250db7/,Earthforce FS,,10/16/2016 0:00,9.0000000,12.0000000,16.305212000000,-61.266864000000,,L'Anse à l'Eau,52863,observation-fd213d84-934d-4f19-a2f2-a95a75250db7-2,https://biolit.fr/observations/observation-fd213d84-934d-4f19-a2f2-a95a75250db7-2/,Chelonia mydas,Tortue verte,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5359-scaled.jpg,,TRUE, +N1,60913,sortie-fd213d84-934d-4f19-a2f2-a95a75250db7,https://biolit.fr/sorties/sortie-fd213d84-934d-4f19-a2f2-a95a75250db7/,Earthforce FS,,10/16/2016 0:00,9.0000000,12.0000000,16.305212000000,-61.266864000000,,L'Anse à l'Eau,52865,observation-fd213d84-934d-4f19-a2f2-a95a75250db7-3,https://biolit.fr/observations/observation-fd213d84-934d-4f19-a2f2-a95a75250db7-3/,Chelonia mydas,Tortue verte,,https://biolit.fr/wp-content/uploads/2023/07/14716292_1310840542314101_7371327033874477227_n.jpg,,TRUE, +N1,60914,sortie-53563015-217a-4007-a5d1-9bfed01c944e,https://biolit.fr/sorties/sortie-53563015-217a-4007-a5d1-9bfed01c944e/,Marine,,9/17/2016 0:00,9.0000000,11.0000000,43.236272000000,5.359874000000,,Plage de la bonne brise,52867,observation-53563015-217a-4007-a5d1-9bfed01c944e,https://biolit.fr/observations/observation-53563015-217a-4007-a5d1-9bfed01c944e/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1729_0.JPG,,FALSE, +N1,60914,sortie-53563015-217a-4007-a5d1-9bfed01c944e,https://biolit.fr/sorties/sortie-53563015-217a-4007-a5d1-9bfed01c944e/,Marine,,9/17/2016 0:00,9.0000000,11.0000000,43.236272000000,5.359874000000,,Plage de la bonne brise,52869,observation-53563015-217a-4007-a5d1-9bfed01c944e-2,https://biolit.fr/observations/observation-53563015-217a-4007-a5d1-9bfed01c944e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1730.JPG,,FALSE, +N1,60914,sortie-53563015-217a-4007-a5d1-9bfed01c944e,https://biolit.fr/sorties/sortie-53563015-217a-4007-a5d1-9bfed01c944e/,Marine,,9/17/2016 0:00,9.0000000,11.0000000,43.236272000000,5.359874000000,,Plage de la bonne brise,52871,observation-53563015-217a-4007-a5d1-9bfed01c944e-3,https://biolit.fr/observations/observation-53563015-217a-4007-a5d1-9bfed01c944e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1732-rotated.jpg,,FALSE, +N1,60915,sortie-2955146e-69ab-49e8-82d7-2484bb1e1f89,https://biolit.fr/sorties/sortie-2955146e-69ab-49e8-82d7-2484bb1e1f89/,Marine,,09/11/2016,9.0000000,9.0000000,43.090417000000,6.024321000000,,Plage du Pradet,52873,observation-2955146e-69ab-49e8-82d7-2484bb1e1f89,https://biolit.fr/observations/observation-2955146e-69ab-49e8-82d7-2484bb1e1f89/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1707-scaled.jpg,,TRUE, +N1,60916,sortie-9e0862dc-6e49-4221-a0fb-945181e86192,https://biolit.fr/sorties/sortie-9e0862dc-6e49-4221-a0fb-945181e86192/,Phil,,10/06/2016,11.0000000,11.0:25,47.793084000000,-4.286736000000,,Le Guivinec - Finistère,52874,observation-9e0862dc-6e49-4221-a0fb-945181e86192,https://biolit.fr/observations/observation-9e0862dc-6e49-4221-a0fb-945181e86192/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161006_112349.jpg,,FALSE, +N1,60916,sortie-9e0862dc-6e49-4221-a0fb-945181e86192,https://biolit.fr/sorties/sortie-9e0862dc-6e49-4221-a0fb-945181e86192/,Phil,,10/06/2016,11.0000000,11.0:25,47.793084000000,-4.286736000000,,Le Guivinec - Finistère,52876,observation-9e0862dc-6e49-4221-a0fb-945181e86192-2,https://biolit.fr/observations/observation-9e0862dc-6e49-4221-a0fb-945181e86192-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161006_112620.jpg,,FALSE, +N1,60917,sortie-26bdf0c4-5a4c-4ec5-9406-9006fb251ceb,https://biolit.fr/sorties/sortie-26bdf0c4-5a4c-4ec5-9406-9006fb251ceb/,Phil,,9/18/2016 0:00,13.0000000,13.0:55,48.095924000000,-4.467921000000,,Beuzec Cap Sizun - Finistère,52878,observation-26bdf0c4-5a4c-4ec5-9406-9006fb251ceb,https://biolit.fr/observations/observation-26bdf0c4-5a4c-4ec5-9406-9006fb251ceb/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1030606.JPG,,TRUE, +N1,60917,sortie-26bdf0c4-5a4c-4ec5-9406-9006fb251ceb,https://biolit.fr/sorties/sortie-26bdf0c4-5a4c-4ec5-9406-9006fb251ceb/,Phil,,9/18/2016 0:00,13.0000000,13.0:55,48.095924000000,-4.467921000000,,Beuzec Cap Sizun - Finistère,52880,observation-26bdf0c4-5a4c-4ec5-9406-9006fb251ceb-2,https://biolit.fr/observations/observation-26bdf0c4-5a4c-4ec5-9406-9006fb251ceb-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1030613.JPG,,TRUE, +N1,60917,sortie-26bdf0c4-5a4c-4ec5-9406-9006fb251ceb,https://biolit.fr/sorties/sortie-26bdf0c4-5a4c-4ec5-9406-9006fb251ceb/,Phil,,9/18/2016 0:00,13.0000000,13.0:55,48.095924000000,-4.467921000000,,Beuzec Cap Sizun - Finistère,52882,observation-26bdf0c4-5a4c-4ec5-9406-9006fb251ceb-3,https://biolit.fr/observations/observation-26bdf0c4-5a4c-4ec5-9406-9006fb251ceb-3/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1030609.JPG,,TRUE, +N1,60917,sortie-26bdf0c4-5a4c-4ec5-9406-9006fb251ceb,https://biolit.fr/sorties/sortie-26bdf0c4-5a4c-4ec5-9406-9006fb251ceb/,Phil,,9/18/2016 0:00,13.0000000,13.0:55,48.095924000000,-4.467921000000,,Beuzec Cap Sizun - Finistère,52884,observation-26bdf0c4-5a4c-4ec5-9406-9006fb251ceb-4,https://biolit.fr/observations/observation-26bdf0c4-5a4c-4ec5-9406-9006fb251ceb-4/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1030619.JPG,,TRUE, +N1,60918,sortie-6181229b-610d-4a43-bfdb-2b73d58de8e6,https://biolit.fr/sorties/sortie-6181229b-610d-4a43-bfdb-2b73d58de8e6/,Phil,,9/22/2016 0:00,17.0:55,18.0000000,47.862804000000,-4.073505000000,,Bénodet - Finistère,52886,observation-6181229b-610d-4a43-bfdb-2b73d58de8e6,https://biolit.fr/observations/observation-6181229b-610d-4a43-bfdb-2b73d58de8e6/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/P1040083.JPG,,TRUE, +N1,60918,sortie-6181229b-610d-4a43-bfdb-2b73d58de8e6,https://biolit.fr/sorties/sortie-6181229b-610d-4a43-bfdb-2b73d58de8e6/,Phil,,9/22/2016 0:00,17.0:55,18.0000000,47.862804000000,-4.073505000000,,Bénodet - Finistère,52888,observation-6181229b-610d-4a43-bfdb-2b73d58de8e6-2,https://biolit.fr/observations/observation-6181229b-610d-4a43-bfdb-2b73d58de8e6-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040079.JPG,,TRUE, +N1,60918,sortie-6181229b-610d-4a43-bfdb-2b73d58de8e6,https://biolit.fr/sorties/sortie-6181229b-610d-4a43-bfdb-2b73d58de8e6/,Phil,,9/22/2016 0:00,17.0:55,18.0000000,47.862804000000,-4.073505000000,,Bénodet - Finistère,52890,observation-6181229b-610d-4a43-bfdb-2b73d58de8e6-3,https://biolit.fr/observations/observation-6181229b-610d-4a43-bfdb-2b73d58de8e6-3/,Zostera noltei,Zostère naine,,https://biolit.fr/wp-content/uploads/2023/07/P1040073.JPG,,TRUE, +N1,60918,sortie-6181229b-610d-4a43-bfdb-2b73d58de8e6,https://biolit.fr/sorties/sortie-6181229b-610d-4a43-bfdb-2b73d58de8e6/,Phil,,9/22/2016 0:00,17.0:55,18.0000000,47.862804000000,-4.073505000000,,Bénodet - Finistère,52892,observation-6181229b-610d-4a43-bfdb-2b73d58de8e6-4,https://biolit.fr/observations/observation-6181229b-610d-4a43-bfdb-2b73d58de8e6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040071.JPG,,FALSE, +N1,60918,sortie-6181229b-610d-4a43-bfdb-2b73d58de8e6,https://biolit.fr/sorties/sortie-6181229b-610d-4a43-bfdb-2b73d58de8e6/,Phil,,9/22/2016 0:00,17.0:55,18.0000000,47.862804000000,-4.073505000000,,Bénodet - Finistère,52894,observation-6181229b-610d-4a43-bfdb-2b73d58de8e6-5,https://biolit.fr/observations/observation-6181229b-610d-4a43-bfdb-2b73d58de8e6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040070.JPG,,FALSE, +N1,60918,sortie-6181229b-610d-4a43-bfdb-2b73d58de8e6,https://biolit.fr/sorties/sortie-6181229b-610d-4a43-bfdb-2b73d58de8e6/,Phil,,9/22/2016 0:00,17.0:55,18.0000000,47.862804000000,-4.073505000000,,Bénodet - Finistère,52896,observation-6181229b-610d-4a43-bfdb-2b73d58de8e6-6,https://biolit.fr/observations/observation-6181229b-610d-4a43-bfdb-2b73d58de8e6-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040066.JPG,,FALSE, +N1,60919,sortie-74662a3c-5e1a-4dee-810a-494c10f5cd6d,https://biolit.fr/sorties/sortie-74662a3c-5e1a-4dee-810a-494c10f5cd6d/,Phil,,10/08/2016,11.0000000,11.0:15,47.835678000000,-4.16920800000,,Loctudy - Finistère,52898,observation-74662a3c-5e1a-4dee-810a-494c10f5cd6d,https://biolit.fr/observations/observation-74662a3c-5e1a-4dee-810a-494c10f5cd6d/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161008_163434.jpg,,FALSE, +N1,60920,sortie-0e686220-88e5-4412-a9d3-4eaef6da6558,https://biolit.fr/sorties/sortie-0e686220-88e5-4412-a9d3-4eaef6da6558/,Phil,,9/20/2016 0:00,14.0:25,14.0:35,47.800722000000,-4.382613000000,,Penmarc'h - Finistère,52900,observation-0e686220-88e5-4412-a9d3-4eaef6da6558,https://biolit.fr/observations/observation-0e686220-88e5-4412-a9d3-4eaef6da6558/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030953.JPG,,FALSE, +N1,60920,sortie-0e686220-88e5-4412-a9d3-4eaef6da6558,https://biolit.fr/sorties/sortie-0e686220-88e5-4412-a9d3-4eaef6da6558/,Phil,,9/20/2016 0:00,14.0:25,14.0:35,47.800722000000,-4.382613000000,,Penmarc'h - Finistère,52902,observation-0e686220-88e5-4412-a9d3-4eaef6da6558-2,https://biolit.fr/observations/observation-0e686220-88e5-4412-a9d3-4eaef6da6558-2/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/P1030934.JPG,,TRUE, +N1,60920,sortie-0e686220-88e5-4412-a9d3-4eaef6da6558,https://biolit.fr/sorties/sortie-0e686220-88e5-4412-a9d3-4eaef6da6558/,Phil,,9/20/2016 0:00,14.0:25,14.0:35,47.800722000000,-4.382613000000,,Penmarc'h - Finistère,52904,observation-0e686220-88e5-4412-a9d3-4eaef6da6558-3,https://biolit.fr/observations/observation-0e686220-88e5-4412-a9d3-4eaef6da6558-3/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/P1030940.JPG,,TRUE, +N1,60920,sortie-0e686220-88e5-4412-a9d3-4eaef6da6558,https://biolit.fr/sorties/sortie-0e686220-88e5-4412-a9d3-4eaef6da6558/,Phil,,9/20/2016 0:00,14.0:25,14.0:35,47.800722000000,-4.382613000000,,Penmarc'h - Finistère,52906,observation-0e686220-88e5-4412-a9d3-4eaef6da6558-4,https://biolit.fr/observations/observation-0e686220-88e5-4412-a9d3-4eaef6da6558-4/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/P1030947.JPG,,TRUE, +N1,60921,sortie-04384781-94ef-4f59-9a09-93bc351c3108,https://biolit.fr/sorties/sortie-04384781-94ef-4f59-9a09-93bc351c3108/,Phil,,9/22/2016 0:00,18.0000000,18.0:15,47.862367000000,-4.072378000000,,Bénodet - Finistère,52908,observation-04384781-94ef-4f59-9a09-93bc351c3108,https://biolit.fr/observations/observation-04384781-94ef-4f59-9a09-93bc351c3108/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040090.JPG,,FALSE, +N1,60921,sortie-04384781-94ef-4f59-9a09-93bc351c3108,https://biolit.fr/sorties/sortie-04384781-94ef-4f59-9a09-93bc351c3108/,Phil,,9/22/2016 0:00,18.0000000,18.0:15,47.862367000000,-4.072378000000,,Bénodet - Finistère,52910,observation-04384781-94ef-4f59-9a09-93bc351c3108-2,https://biolit.fr/observations/observation-04384781-94ef-4f59-9a09-93bc351c3108-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040091.JPG,,FALSE, +N1,60921,sortie-04384781-94ef-4f59-9a09-93bc351c3108,https://biolit.fr/sorties/sortie-04384781-94ef-4f59-9a09-93bc351c3108/,Phil,,9/22/2016 0:00,18.0000000,18.0:15,47.862367000000,-4.072378000000,,Bénodet - Finistère,52912,observation-04384781-94ef-4f59-9a09-93bc351c3108-3,https://biolit.fr/observations/observation-04384781-94ef-4f59-9a09-93bc351c3108-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040086.JPG,,FALSE, +N1,60921,sortie-04384781-94ef-4f59-9a09-93bc351c3108,https://biolit.fr/sorties/sortie-04384781-94ef-4f59-9a09-93bc351c3108/,Phil,,9/22/2016 0:00,18.0000000,18.0:15,47.862367000000,-4.072378000000,,Bénodet - Finistère,52914,observation-04384781-94ef-4f59-9a09-93bc351c3108-4,https://biolit.fr/observations/observation-04384781-94ef-4f59-9a09-93bc351c3108-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040085.JPG,,FALSE, +N1,60922,sortie-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8,https://biolit.fr/sorties/sortie-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.805859000000,-4.377494000000,,Penmarc'h - Finistère,52916,observation-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8,https://biolit.fr/observations/observation-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030896.JPG,,FALSE, +N1,60922,sortie-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8,https://biolit.fr/sorties/sortie-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.805859000000,-4.377494000000,,Penmarc'h - Finistère,52918,observation-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8-2,https://biolit.fr/observations/observation-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030901.JPG,,FALSE, +N1,60922,sortie-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8,https://biolit.fr/sorties/sortie-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.805859000000,-4.377494000000,,Penmarc'h - Finistère,52920,observation-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8-3,https://biolit.fr/observations/observation-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030921.JPG,,FALSE, +N1,60922,sortie-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8,https://biolit.fr/sorties/sortie-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.805859000000,-4.377494000000,,Penmarc'h - Finistère,52922,observation-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8-4,https://biolit.fr/observations/observation-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030925.JPG,,FALSE, +N1,60922,sortie-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8,https://biolit.fr/sorties/sortie-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.805859000000,-4.377494000000,,Penmarc'h - Finistère,52924,observation-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8-5,https://biolit.fr/observations/observation-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8-5/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1030902.JPG,,TRUE, +N1,60922,sortie-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8,https://biolit.fr/sorties/sortie-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.805859000000,-4.377494000000,,Penmarc'h - Finistère,52926,observation-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8-6,https://biolit.fr/observations/observation-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8-6/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1030903.JPG,,TRUE, +N1,60922,sortie-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8,https://biolit.fr/sorties/sortie-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.805859000000,-4.377494000000,,Penmarc'h - Finistère,52928,observation-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8-7,https://biolit.fr/observations/observation-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8-7/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1030914.JPG,,TRUE, +N1,60923,sortie-8de270fa-0a4d-4d76-938a-d8d33797155c,https://biolit.fr/sorties/sortie-8de270fa-0a4d-4d76-938a-d8d33797155c/,Phil,,10/01/2016,11.0:55,12.000005,47.868050000000,-3.911757000000,,Concarneau - Finistère,52930,observation-8de270fa-0a4d-4d76-938a-d8d33797155c,https://biolit.fr/observations/observation-8de270fa-0a4d-4d76-938a-d8d33797155c/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/P1040220.JPG,,TRUE, +N1,60923,sortie-8de270fa-0a4d-4d76-938a-d8d33797155c,https://biolit.fr/sorties/sortie-8de270fa-0a4d-4d76-938a-d8d33797155c/,Phil,,10/01/2016,11.0:55,12.000005,47.868050000000,-3.911757000000,,Concarneau - Finistère,52932,observation-8de270fa-0a4d-4d76-938a-d8d33797155c-2,https://biolit.fr/observations/observation-8de270fa-0a4d-4d76-938a-d8d33797155c-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040226.JPG,,TRUE, +N1,60923,sortie-8de270fa-0a4d-4d76-938a-d8d33797155c,https://biolit.fr/sorties/sortie-8de270fa-0a4d-4d76-938a-d8d33797155c/,Phil,,10/01/2016,11.0:55,12.000005,47.868050000000,-3.911757000000,,Concarneau - Finistère,52934,observation-8de270fa-0a4d-4d76-938a-d8d33797155c-3,https://biolit.fr/observations/observation-8de270fa-0a4d-4d76-938a-d8d33797155c-3/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1040229.JPG,,TRUE, +N1,60924,sortie-cad9cb1d-2950-4f7c-8605-348d94a7378e,https://biolit.fr/sorties/sortie-cad9cb1d-2950-4f7c-8605-348d94a7378e/,Phil,,9/23/2016 0:00,14.0000000,14.0:55,47.889863000000,-3.976394000000,,Fouesnant - Finistère,52936,observation-cad9cb1d-2950-4f7c-8605-348d94a7378e,https://biolit.fr/observations/observation-cad9cb1d-2950-4f7c-8605-348d94a7378e/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20160923_145136.jpg,,TRUE, +N1,60925,sortie-3a6e8b9b-cc27-4076-b573-457a41085ea4,https://biolit.fr/sorties/sortie-3a6e8b9b-cc27-4076-b573-457a41085ea4/,GG le BG,,10/03/2016,9.0000000,12.0000000,43.045677000000,6.150186000000,,La Capte,52938,observation-3a6e8b9b-cc27-4076-b573-457a41085ea4,https://biolit.fr/observations/observation-3a6e8b9b-cc27-4076-b573-457a41085ea4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161003_100652[1]-scaled.jpg,,FALSE, +N1,60925,sortie-3a6e8b9b-cc27-4076-b573-457a41085ea4,https://biolit.fr/sorties/sortie-3a6e8b9b-cc27-4076-b573-457a41085ea4/,GG le BG,,10/03/2016,9.0000000,12.0000000,43.045677000000,6.150186000000,,La Capte,52940,observation-3a6e8b9b-cc27-4076-b573-457a41085ea4-2,https://biolit.fr/observations/observation-3a6e8b9b-cc27-4076-b573-457a41085ea4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161003_100908[1]-scaled.jpg,,FALSE, +N1,60927,sortie-4fc41b73-f2b8-4e34-ae4b-303e02bdfdc1,https://biolit.fr/sorties/sortie-4fc41b73-f2b8-4e34-ae4b-303e02bdfdc1/,cam_16,,10/03/2016,9.0000000,11.0000000,43.042296000000,6.150754000000,,Plage de la Badine,52944,observation-4fc41b73-f2b8-4e34-ae4b-303e02bdfdc1,https://biolit.fr/observations/observation-4fc41b73-f2b8-4e34-ae4b-303e02bdfdc1/,,,,https://biolit.fr/wp-content/uploads/2023/07/1475491210108.jpg,,FALSE, +N1,60928,sortie-81d46e5e-1041-4b4d-b160-b7098000d795,https://biolit.fr/sorties/sortie-81d46e5e-1041-4b4d-b160-b7098000d795/,Phil,,9/18/2016 0:00,12.0:25,12.0000000,48.099052000000,-4.46699800000,,Beuzec Cap Sizun - Finistère,52946,observation-81d46e5e-1041-4b4d-b160-b7098000d795,https://biolit.fr/observations/observation-81d46e5e-1041-4b4d-b160-b7098000d795/,Dicentrarchus labrax,Bar commun loup,,https://biolit.fr/wp-content/uploads/2023/07/P1030507.JPG,,TRUE, +N1,60928,sortie-81d46e5e-1041-4b4d-b160-b7098000d795,https://biolit.fr/sorties/sortie-81d46e5e-1041-4b4d-b160-b7098000d795/,Phil,,9/18/2016 0:00,12.0:25,12.0000000,48.099052000000,-4.46699800000,,Beuzec Cap Sizun - Finistère,52948,observation-81d46e5e-1041-4b4d-b160-b7098000d795-2,https://biolit.fr/observations/observation-81d46e5e-1041-4b4d-b160-b7098000d795-2/,Dicentrarchus labrax,Bar commun loup,,https://biolit.fr/wp-content/uploads/2023/07/P1030509.JPG,,TRUE, +N1,60928,sortie-81d46e5e-1041-4b4d-b160-b7098000d795,https://biolit.fr/sorties/sortie-81d46e5e-1041-4b4d-b160-b7098000d795/,Phil,,9/18/2016 0:00,12.0:25,12.0000000,48.099052000000,-4.46699800000,,Beuzec Cap Sizun - Finistère,52950,observation-81d46e5e-1041-4b4d-b160-b7098000d795-3,https://biolit.fr/observations/observation-81d46e5e-1041-4b4d-b160-b7098000d795-3/,Dicentrarchus labrax,Bar commun loup,,https://biolit.fr/wp-content/uploads/2023/07/P1030517.JPG,,TRUE, +N1,60928,sortie-81d46e5e-1041-4b4d-b160-b7098000d795,https://biolit.fr/sorties/sortie-81d46e5e-1041-4b4d-b160-b7098000d795/,Phil,,9/18/2016 0:00,12.0:25,12.0000000,48.099052000000,-4.46699800000,,Beuzec Cap Sizun - Finistère,52952,observation-81d46e5e-1041-4b4d-b160-b7098000d795-4,https://biolit.fr/observations/observation-81d46e5e-1041-4b4d-b160-b7098000d795-4/,Dicentrarchus labrax,Bar commun loup,,https://biolit.fr/wp-content/uploads/2023/07/P1030522.JPG,,TRUE, +N1,60928,sortie-81d46e5e-1041-4b4d-b160-b7098000d795,https://biolit.fr/sorties/sortie-81d46e5e-1041-4b4d-b160-b7098000d795/,Phil,,9/18/2016 0:00,12.0:25,12.0000000,48.099052000000,-4.46699800000,,Beuzec Cap Sizun - Finistère,52954,observation-81d46e5e-1041-4b4d-b160-b7098000d795-5,https://biolit.fr/observations/observation-81d46e5e-1041-4b4d-b160-b7098000d795-5/,Dicentrarchus labrax,Bar commun loup,,https://biolit.fr/wp-content/uploads/2023/07/P1030525.JPG,,TRUE, +N1,60929,sortie-8fdc036e-645c-4164-b58c-3046042670e3,https://biolit.fr/sorties/sortie-8fdc036e-645c-4164-b58c-3046042670e3/,Phil,,10/01/2016,11.0000000,11.0:55,47.869686000000,-3.912285000000,,Concarneau - Finistère,52956,observation-8fdc036e-645c-4164-b58c-3046042670e3,https://biolit.fr/observations/observation-8fdc036e-645c-4164-b58c-3046042670e3/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/P1040201.JPG,,TRUE, +N1,60929,sortie-8fdc036e-645c-4164-b58c-3046042670e3,https://biolit.fr/sorties/sortie-8fdc036e-645c-4164-b58c-3046042670e3/,Phil,,10/01/2016,11.0000000,11.0:55,47.869686000000,-3.912285000000,,Concarneau - Finistère,52958,observation-8fdc036e-645c-4164-b58c-3046042670e3-2,https://biolit.fr/observations/observation-8fdc036e-645c-4164-b58c-3046042670e3-2/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/P1040203.JPG,,TRUE, +N1,60929,sortie-8fdc036e-645c-4164-b58c-3046042670e3,https://biolit.fr/sorties/sortie-8fdc036e-645c-4164-b58c-3046042670e3/,Phil,,10/01/2016,11.0000000,11.0:55,47.869686000000,-3.912285000000,,Concarneau - Finistère,52960,observation-8fdc036e-645c-4164-b58c-3046042670e3-3,https://biolit.fr/observations/observation-8fdc036e-645c-4164-b58c-3046042670e3-3/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/P1040208.JPG,,TRUE, +N1,60929,sortie-8fdc036e-645c-4164-b58c-3046042670e3,https://biolit.fr/sorties/sortie-8fdc036e-645c-4164-b58c-3046042670e3/,Phil,,10/01/2016,11.0000000,11.0:55,47.869686000000,-3.912285000000,,Concarneau - Finistère,52962,observation-8fdc036e-645c-4164-b58c-3046042670e3-4,https://biolit.fr/observations/observation-8fdc036e-645c-4164-b58c-3046042670e3-4/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/P1040211.JPG,,TRUE, +N1,60930,sortie-5bba3517-d22a-400b-ae22-afe4fd509c5b,https://biolit.fr/sorties/sortie-5bba3517-d22a-400b-ae22-afe4fd509c5b/,Phil,,10/03/2016,14.000005,14.0:15,47.805470000000,-4.380601000000,,Penmarc'h - Finistère,52964,observation-5bba3517-d22a-400b-ae22-afe4fd509c5b,https://biolit.fr/observations/observation-5bba3517-d22a-400b-ae22-afe4fd509c5b/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030852.JPG,,FALSE, +N1,60930,sortie-5bba3517-d22a-400b-ae22-afe4fd509c5b,https://biolit.fr/sorties/sortie-5bba3517-d22a-400b-ae22-afe4fd509c5b/,Phil,,10/03/2016,14.000005,14.0:15,47.805470000000,-4.380601000000,,Penmarc'h - Finistère,52966,observation-5bba3517-d22a-400b-ae22-afe4fd509c5b-2,https://biolit.fr/observations/observation-5bba3517-d22a-400b-ae22-afe4fd509c5b-2/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/P1030857.JPG,,TRUE, +N1,60930,sortie-5bba3517-d22a-400b-ae22-afe4fd509c5b,https://biolit.fr/sorties/sortie-5bba3517-d22a-400b-ae22-afe4fd509c5b/,Phil,,10/03/2016,14.000005,14.0:15,47.805470000000,-4.380601000000,,Penmarc'h - Finistère,52968,observation-5bba3517-d22a-400b-ae22-afe4fd509c5b-3,https://biolit.fr/observations/observation-5bba3517-d22a-400b-ae22-afe4fd509c5b-3/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/P1030862.JPG,,TRUE, +N1,60930,sortie-5bba3517-d22a-400b-ae22-afe4fd509c5b,https://biolit.fr/sorties/sortie-5bba3517-d22a-400b-ae22-afe4fd509c5b/,Phil,,10/03/2016,14.000005,14.0:15,47.805470000000,-4.380601000000,,Penmarc'h - Finistère,52970,observation-5bba3517-d22a-400b-ae22-afe4fd509c5b-4,https://biolit.fr/observations/observation-5bba3517-d22a-400b-ae22-afe4fd509c5b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030869.JPG,,FALSE, +N1,60930,sortie-5bba3517-d22a-400b-ae22-afe4fd509c5b,https://biolit.fr/sorties/sortie-5bba3517-d22a-400b-ae22-afe4fd509c5b/,Phil,,10/03/2016,14.000005,14.0:15,47.805470000000,-4.380601000000,,Penmarc'h - Finistère,52972,observation-5bba3517-d22a-400b-ae22-afe4fd509c5b-5,https://biolit.fr/observations/observation-5bba3517-d22a-400b-ae22-afe4fd509c5b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030880.JPG,,FALSE, +N1,60930,sortie-5bba3517-d22a-400b-ae22-afe4fd509c5b,https://biolit.fr/sorties/sortie-5bba3517-d22a-400b-ae22-afe4fd509c5b/,Phil,,10/03/2016,14.000005,14.0:15,47.805470000000,-4.380601000000,,Penmarc'h - Finistère,52974,observation-5bba3517-d22a-400b-ae22-afe4fd509c5b-6,https://biolit.fr/observations/observation-5bba3517-d22a-400b-ae22-afe4fd509c5b-6/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1030866.JPG,,TRUE, +N1,60931,sortie-5b897178-1964-4226-a933-f0cbee59b8b1,https://biolit.fr/sorties/sortie-5b897178-1964-4226-a933-f0cbee59b8b1/,Phil,,9/23/2016 0:00,14.0000000,14.0:45,47.888081000000,-3.972707000000,,Fouesnant - Finistère,52976,observation-5b897178-1964-4226-a933-f0cbee59b8b1,https://biolit.fr/observations/observation-5b897178-1964-4226-a933-f0cbee59b8b1/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/20160923_144545.jpg,,TRUE, +N1,60931,sortie-5b897178-1964-4226-a933-f0cbee59b8b1,https://biolit.fr/sorties/sortie-5b897178-1964-4226-a933-f0cbee59b8b1/,Phil,,9/23/2016 0:00,14.0000000,14.0:45,47.888081000000,-3.972707000000,,Fouesnant - Finistère,52978,observation-5b897178-1964-4226-a933-f0cbee59b8b1-2,https://biolit.fr/observations/observation-5b897178-1964-4226-a933-f0cbee59b8b1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160923_144531.jpg,,FALSE, +N1,60932,sortie-d36c8866-48e1-4f38-a77d-b3d610b7c038,https://biolit.fr/sorties/sortie-d36c8866-48e1-4f38-a77d-b3d610b7c038/,Phil,,9/22/2016 0:00,17.0000000,17.0000000,47.863106000000,-4.073786000000,,Bénodet - Finistère,52980,observation-d36c8866-48e1-4f38-a77d-b3d610b7c038,https://biolit.fr/observations/observation-d36c8866-48e1-4f38-a77d-b3d610b7c038/,Arenicola marina,Arénicole,,https://biolit.fr/wp-content/uploads/2023/07/P1040037.JPG,,TRUE, +N1,60932,sortie-d36c8866-48e1-4f38-a77d-b3d610b7c038,https://biolit.fr/sorties/sortie-d36c8866-48e1-4f38-a77d-b3d610b7c038/,Phil,,9/22/2016 0:00,17.0000000,17.0000000,47.863106000000,-4.073786000000,,Bénodet - Finistère,52982,observation-d36c8866-48e1-4f38-a77d-b3d610b7c038-2,https://biolit.fr/observations/observation-d36c8866-48e1-4f38-a77d-b3d610b7c038-2/,Arenicola marina,Arénicole,,https://biolit.fr/wp-content/uploads/2023/07/P1040035.JPG,,TRUE, +N1,60932,sortie-d36c8866-48e1-4f38-a77d-b3d610b7c038,https://biolit.fr/sorties/sortie-d36c8866-48e1-4f38-a77d-b3d610b7c038/,Phil,,9/22/2016 0:00,17.0000000,17.0000000,47.863106000000,-4.073786000000,,Bénodet - Finistère,52984,observation-d36c8866-48e1-4f38-a77d-b3d610b7c038-3,https://biolit.fr/observations/observation-d36c8866-48e1-4f38-a77d-b3d610b7c038-3/,Arenicola marina,Arénicole,,https://biolit.fr/wp-content/uploads/2023/07/P1040039.JPG,,TRUE, +N1,60932,sortie-d36c8866-48e1-4f38-a77d-b3d610b7c038,https://biolit.fr/sorties/sortie-d36c8866-48e1-4f38-a77d-b3d610b7c038/,Phil,,9/22/2016 0:00,17.0000000,17.0000000,47.863106000000,-4.073786000000,,Bénodet - Finistère,52986,observation-d36c8866-48e1-4f38-a77d-b3d610b7c038-4,https://biolit.fr/observations/observation-d36c8866-48e1-4f38-a77d-b3d610b7c038-4/,Arenicola marina,Arénicole,,https://biolit.fr/wp-content/uploads/2023/07/P1040043.JPG,,TRUE, +N1,60933,sortie-bdf59f5e-2c51-4d1b-bce9-75099139d7de,https://biolit.fr/sorties/sortie-bdf59f5e-2c51-4d1b-bce9-75099139d7de/,Phil,,9/23/2016 0:00,14.0000000,14.0:45,47.889129000000,-3.973737000000,,Fouesnant - Finistère,52988,observation-bdf59f5e-2c51-4d1b-bce9-75099139d7de,https://biolit.fr/observations/observation-bdf59f5e-2c51-4d1b-bce9-75099139d7de/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20160923_144213.jpg,,TRUE, +N1,60933,sortie-bdf59f5e-2c51-4d1b-bce9-75099139d7de,https://biolit.fr/sorties/sortie-bdf59f5e-2c51-4d1b-bce9-75099139d7de/,Phil,,9/23/2016 0:00,14.0000000,14.0:45,47.889129000000,-3.973737000000,,Fouesnant - Finistère,52990,observation-bdf59f5e-2c51-4d1b-bce9-75099139d7de-2,https://biolit.fr/observations/observation-bdf59f5e-2c51-4d1b-bce9-75099139d7de-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160923_144205.jpg,,FALSE, +N1,60933,sortie-bdf59f5e-2c51-4d1b-bce9-75099139d7de,https://biolit.fr/sorties/sortie-bdf59f5e-2c51-4d1b-bce9-75099139d7de/,Phil,,9/23/2016 0:00,14.0000000,14.0:45,47.889129000000,-3.973737000000,,Fouesnant - Finistère,52992,observation-bdf59f5e-2c51-4d1b-bce9-75099139d7de-3,https://biolit.fr/observations/observation-bdf59f5e-2c51-4d1b-bce9-75099139d7de-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160923_144431.jpg,,FALSE, +N1,60934,sortie-0e6d134b-0359-4cab-a34b-78a1147e4885,https://biolit.fr/sorties/sortie-0e6d134b-0359-4cab-a34b-78a1147e4885/,Phil,,9/18/2016 0:00,12.0:55,13.0:15,48.095884000000,-4.468817000000,,Beuzec Cap Sizun - Finistère,52994,observation-0e6d134b-0359-4cab-a34b-78a1147e4885,https://biolit.fr/observations/observation-0e6d134b-0359-4cab-a34b-78a1147e4885/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1030583.JPG,,TRUE, +N1,60934,sortie-0e6d134b-0359-4cab-a34b-78a1147e4885,https://biolit.fr/sorties/sortie-0e6d134b-0359-4cab-a34b-78a1147e4885/,Phil,,9/18/2016 0:00,12.0:55,13.0:15,48.095884000000,-4.468817000000,,Beuzec Cap Sizun - Finistère,52996,observation-0e6d134b-0359-4cab-a34b-78a1147e4885-2,https://biolit.fr/observations/observation-0e6d134b-0359-4cab-a34b-78a1147e4885-2/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1030580.JPG,,TRUE, +N1,60934,sortie-0e6d134b-0359-4cab-a34b-78a1147e4885,https://biolit.fr/sorties/sortie-0e6d134b-0359-4cab-a34b-78a1147e4885/,Phil,,9/18/2016 0:00,12.0:55,13.0:15,48.095884000000,-4.468817000000,,Beuzec Cap Sizun - Finistère,52998,observation-0e6d134b-0359-4cab-a34b-78a1147e4885-3,https://biolit.fr/observations/observation-0e6d134b-0359-4cab-a34b-78a1147e4885-3/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/P1030572.JPG,,TRUE, +N1,60934,sortie-0e6d134b-0359-4cab-a34b-78a1147e4885,https://biolit.fr/sorties/sortie-0e6d134b-0359-4cab-a34b-78a1147e4885/,Phil,,9/18/2016 0:00,12.0:55,13.0:15,48.095884000000,-4.468817000000,,Beuzec Cap Sizun - Finistère,53000,observation-0e6d134b-0359-4cab-a34b-78a1147e4885-4,https://biolit.fr/observations/observation-0e6d134b-0359-4cab-a34b-78a1147e4885-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030585.JPG,,FALSE, +N1,60934,sortie-0e6d134b-0359-4cab-a34b-78a1147e4885,https://biolit.fr/sorties/sortie-0e6d134b-0359-4cab-a34b-78a1147e4885/,Phil,,9/18/2016 0:00,12.0:55,13.0:15,48.095884000000,-4.468817000000,,Beuzec Cap Sizun - Finistère,53002,observation-0e6d134b-0359-4cab-a34b-78a1147e4885-5,https://biolit.fr/observations/observation-0e6d134b-0359-4cab-a34b-78a1147e4885-5/,Bifurcaria bifurcata,Bifurcaire,,https://biolit.fr/wp-content/uploads/2023/07/P1030571.JPG,,TRUE, +N1,60935,sortie-9e70b99b-c8f2-4de5-a3aa-894b5a114641,https://biolit.fr/sorties/sortie-9e70b99b-c8f2-4de5-a3aa-894b5a114641/,Phil,,9/22/2016 0:00,17.0:55,18.0000000,47.862338000000,-4.074498000000,,Bénodet - Finistère,53004,observation-9e70b99b-c8f2-4de5-a3aa-894b5a114641,https://biolit.fr/observations/observation-9e70b99b-c8f2-4de5-a3aa-894b5a114641/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040053.JPG,,FALSE, +N1,60935,sortie-9e70b99b-c8f2-4de5-a3aa-894b5a114641,https://biolit.fr/sorties/sortie-9e70b99b-c8f2-4de5-a3aa-894b5a114641/,Phil,,9/22/2016 0:00,17.0:55,18.0000000,47.862338000000,-4.074498000000,,Bénodet - Finistère,53006,observation-9e70b99b-c8f2-4de5-a3aa-894b5a114641-2,https://biolit.fr/observations/observation-9e70b99b-c8f2-4de5-a3aa-894b5a114641-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040058.JPG,,FALSE, +N1,60935,sortie-9e70b99b-c8f2-4de5-a3aa-894b5a114641,https://biolit.fr/sorties/sortie-9e70b99b-c8f2-4de5-a3aa-894b5a114641/,Phil,,9/22/2016 0:00,17.0:55,18.0000000,47.862338000000,-4.074498000000,,Bénodet - Finistère,53008,observation-9e70b99b-c8f2-4de5-a3aa-894b5a114641-3,https://biolit.fr/observations/observation-9e70b99b-c8f2-4de5-a3aa-894b5a114641-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040060.JPG,,FALSE, +N1,60935,sortie-9e70b99b-c8f2-4de5-a3aa-894b5a114641,https://biolit.fr/sorties/sortie-9e70b99b-c8f2-4de5-a3aa-894b5a114641/,Phil,,9/22/2016 0:00,17.0:55,18.0000000,47.862338000000,-4.074498000000,,Bénodet - Finistère,53010,observation-9e70b99b-c8f2-4de5-a3aa-894b5a114641-4,https://biolit.fr/observations/observation-9e70b99b-c8f2-4de5-a3aa-894b5a114641-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040063.JPG,,FALSE, +N1,60935,sortie-9e70b99b-c8f2-4de5-a3aa-894b5a114641,https://biolit.fr/sorties/sortie-9e70b99b-c8f2-4de5-a3aa-894b5a114641/,Phil,,9/22/2016 0:00,17.0:55,18.0000000,47.862338000000,-4.074498000000,,Bénodet - Finistère,53012,observation-9e70b99b-c8f2-4de5-a3aa-894b5a114641-5,https://biolit.fr/observations/observation-9e70b99b-c8f2-4de5-a3aa-894b5a114641-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040064.JPG,,FALSE, +N1,60936,sortie-12c6177f-a7ae-4569-92be-ada59ee2e129,https://biolit.fr/sorties/sortie-12c6177f-a7ae-4569-92be-ada59ee2e129/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.804003000000,-4.381098000000,,Penmarc'h - Finistère,53014,observation-12c6177f-a7ae-4569-92be-ada59ee2e129,https://biolit.fr/observations/observation-12c6177f-a7ae-4569-92be-ada59ee2e129/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/P1030832.JPG,,TRUE, +N1,60936,sortie-12c6177f-a7ae-4569-92be-ada59ee2e129,https://biolit.fr/sorties/sortie-12c6177f-a7ae-4569-92be-ada59ee2e129/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.804003000000,-4.381098000000,,Penmarc'h - Finistère,53016,observation-12c6177f-a7ae-4569-92be-ada59ee2e129-2,https://biolit.fr/observations/observation-12c6177f-a7ae-4569-92be-ada59ee2e129-2/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/P1030823.JPG,,TRUE, +N1,60936,sortie-12c6177f-a7ae-4569-92be-ada59ee2e129,https://biolit.fr/sorties/sortie-12c6177f-a7ae-4569-92be-ada59ee2e129/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.804003000000,-4.381098000000,,Penmarc'h - Finistère,53018,observation-12c6177f-a7ae-4569-92be-ada59ee2e129-3,https://biolit.fr/observations/observation-12c6177f-a7ae-4569-92be-ada59ee2e129-3/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/P1030818.JPG,,TRUE, +N1,60936,sortie-12c6177f-a7ae-4569-92be-ada59ee2e129,https://biolit.fr/sorties/sortie-12c6177f-a7ae-4569-92be-ada59ee2e129/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.804003000000,-4.381098000000,,Penmarc'h - Finistère,53020,observation-12c6177f-a7ae-4569-92be-ada59ee2e129-4,https://biolit.fr/observations/observation-12c6177f-a7ae-4569-92be-ada59ee2e129-4/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/P1030837.JPG,,TRUE, +N1,60936,sortie-12c6177f-a7ae-4569-92be-ada59ee2e129,https://biolit.fr/sorties/sortie-12c6177f-a7ae-4569-92be-ada59ee2e129/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.804003000000,-4.381098000000,,Penmarc'h - Finistère,53022,observation-12c6177f-a7ae-4569-92be-ada59ee2e129-5,https://biolit.fr/observations/observation-12c6177f-a7ae-4569-92be-ada59ee2e129-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030850.JPG,,FALSE, +N1,60937,sortie-1467a484-611f-40d7-b334-7094e4580fcd,https://biolit.fr/sorties/sortie-1467a484-611f-40d7-b334-7094e4580fcd/,Phil,,9/28/2016 0:00,12.0:15,12.0000000,48.012121000000,-4.540789000000,,Audierne - Finistère,53024,observation-1467a484-611f-40d7-b334-7094e4580fcd,https://biolit.fr/observations/observation-1467a484-611f-40d7-b334-7094e4580fcd/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1040188.JPG,,TRUE, +N1,60937,sortie-1467a484-611f-40d7-b334-7094e4580fcd,https://biolit.fr/sorties/sortie-1467a484-611f-40d7-b334-7094e4580fcd/,Phil,,9/28/2016 0:00,12.0:15,12.0000000,48.012121000000,-4.540789000000,,Audierne - Finistère,53026,observation-1467a484-611f-40d7-b334-7094e4580fcd-2,https://biolit.fr/observations/observation-1467a484-611f-40d7-b334-7094e4580fcd-2/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040190.JPG,,TRUE, +N1,60937,sortie-1467a484-611f-40d7-b334-7094e4580fcd,https://biolit.fr/sorties/sortie-1467a484-611f-40d7-b334-7094e4580fcd/,Phil,,9/28/2016 0:00,12.0:15,12.0000000,48.012121000000,-4.540789000000,,Audierne - Finistère,53028,observation-1467a484-611f-40d7-b334-7094e4580fcd-3,https://biolit.fr/observations/observation-1467a484-611f-40d7-b334-7094e4580fcd-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040185.JPG,,TRUE, +N1,60937,sortie-1467a484-611f-40d7-b334-7094e4580fcd,https://biolit.fr/sorties/sortie-1467a484-611f-40d7-b334-7094e4580fcd/,Phil,,9/28/2016 0:00,12.0:15,12.0000000,48.012121000000,-4.540789000000,,Audierne - Finistère,53030,observation-1467a484-611f-40d7-b334-7094e4580fcd-4,https://biolit.fr/observations/observation-1467a484-611f-40d7-b334-7094e4580fcd-4/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/P1040182.JPG,,TRUE, +N1,60937,sortie-1467a484-611f-40d7-b334-7094e4580fcd,https://biolit.fr/sorties/sortie-1467a484-611f-40d7-b334-7094e4580fcd/,Phil,,9/28/2016 0:00,12.0:15,12.0000000,48.012121000000,-4.540789000000,,Audierne - Finistère,53032,observation-1467a484-611f-40d7-b334-7094e4580fcd-5,https://biolit.fr/observations/observation-1467a484-611f-40d7-b334-7094e4580fcd-5/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040181.JPG,,TRUE, +N1,60937,sortie-1467a484-611f-40d7-b334-7094e4580fcd,https://biolit.fr/sorties/sortie-1467a484-611f-40d7-b334-7094e4580fcd/,Phil,,9/28/2016 0:00,12.0:15,12.0000000,48.012121000000,-4.540789000000,,Audierne - Finistère,53034,observation-1467a484-611f-40d7-b334-7094e4580fcd-6,https://biolit.fr/observations/observation-1467a484-611f-40d7-b334-7094e4580fcd-6/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040179.JPG,,TRUE, +N1,60938,sortie-fa110f50-74a7-43f9-b03d-695af2e3bf19,https://biolit.fr/sorties/sortie-fa110f50-74a7-43f9-b03d-695af2e3bf19/,Phil,,9/24/2016 0:00,17.0:15,17.0000000,47.791935000000,-4.220769000000,,Lesconil -Finistère,53036,observation-fa110f50-74a7-43f9-b03d-695af2e3bf19,https://biolit.fr/observations/observation-fa110f50-74a7-43f9-b03d-695af2e3bf19/,Coryphoblennius galerita,Blennie coiffée,,https://biolit.fr/wp-content/uploads/2023/07/P1040125.JPG,,TRUE, +N1,60938,sortie-fa110f50-74a7-43f9-b03d-695af2e3bf19,https://biolit.fr/sorties/sortie-fa110f50-74a7-43f9-b03d-695af2e3bf19/,Phil,,9/24/2016 0:00,17.0:15,17.0000000,47.791935000000,-4.220769000000,,Lesconil -Finistère,53038,observation-fa110f50-74a7-43f9-b03d-695af2e3bf19-2,https://biolit.fr/observations/observation-fa110f50-74a7-43f9-b03d-695af2e3bf19-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040132.JPG,,FALSE, +N1,60938,sortie-fa110f50-74a7-43f9-b03d-695af2e3bf19,https://biolit.fr/sorties/sortie-fa110f50-74a7-43f9-b03d-695af2e3bf19/,Phil,,9/24/2016 0:00,17.0:15,17.0000000,47.791935000000,-4.220769000000,,Lesconil -Finistère,53040,observation-fa110f50-74a7-43f9-b03d-695af2e3bf19-3,https://biolit.fr/observations/observation-fa110f50-74a7-43f9-b03d-695af2e3bf19-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040134.JPG,,FALSE, +N1,60938,sortie-fa110f50-74a7-43f9-b03d-695af2e3bf19,https://biolit.fr/sorties/sortie-fa110f50-74a7-43f9-b03d-695af2e3bf19/,Phil,,9/24/2016 0:00,17.0:15,17.0000000,47.791935000000,-4.220769000000,,Lesconil -Finistère,53042,observation-fa110f50-74a7-43f9-b03d-695af2e3bf19-4,https://biolit.fr/observations/observation-fa110f50-74a7-43f9-b03d-695af2e3bf19-4/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1040130.JPG,,TRUE, +N1,60938,sortie-fa110f50-74a7-43f9-b03d-695af2e3bf19,https://biolit.fr/sorties/sortie-fa110f50-74a7-43f9-b03d-695af2e3bf19/,Phil,,9/24/2016 0:00,17.0:15,17.0000000,47.791935000000,-4.220769000000,,Lesconil -Finistère,53044,observation-fa110f50-74a7-43f9-b03d-695af2e3bf19-5,https://biolit.fr/observations/observation-fa110f50-74a7-43f9-b03d-695af2e3bf19-5/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1040150.JPG,,TRUE, +N1,60939,sortie-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4,https://biolit.fr/sorties/sortie-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4/,Phil,,9/23/2016 0:00,14.0000000,14.0000000,47.888044000000,-3.972905000000,,Fouesnant - Finistère,53046,observation-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4,https://biolit.fr/observations/observation-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4/,Amphipholis squamata,Ophiure écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/20160923_143952.jpg,,TRUE, +N1,60939,sortie-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4,https://biolit.fr/sorties/sortie-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4/,Phil,,9/23/2016 0:00,14.0000000,14.0000000,47.888044000000,-3.972905000000,,Fouesnant - Finistère,53048,observation-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4-2,https://biolit.fr/observations/observation-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4-2/,Amphipholis squamata,Ophiure écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/20160923_143859.jpg,,TRUE, +N1,60939,sortie-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4,https://biolit.fr/sorties/sortie-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4/,Phil,,9/23/2016 0:00,14.0000000,14.0000000,47.888044000000,-3.972905000000,,Fouesnant - Finistère,53050,observation-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4-3,https://biolit.fr/observations/observation-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4-3/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/20160923_143801.jpg,,TRUE, +N1,60939,sortie-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4,https://biolit.fr/sorties/sortie-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4/,Phil,,9/23/2016 0:00,14.0000000,14.0000000,47.888044000000,-3.972905000000,,Fouesnant - Finistère,53052,observation-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4-4,https://biolit.fr/observations/observation-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160923_143515.jpg,,TRUE, +N1,60939,sortie-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4,https://biolit.fr/sorties/sortie-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4/,Phil,,9/23/2016 0:00,14.0000000,14.0000000,47.888044000000,-3.972905000000,,Fouesnant - Finistère,53054,observation-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4-5,https://biolit.fr/observations/observation-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4-5/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/20160923_143301.jpg,,TRUE, +N1,60940,sortie-add73e70-595b-4491-a7b6-536ce575a4c9,https://biolit.fr/sorties/sortie-add73e70-595b-4491-a7b6-536ce575a4c9/,Phil,,9/22/2016 0:00,17.0000000,17.0000000,47.862503000000,-4.071194000000,,Bénodet - Finistère,53056,observation-add73e70-595b-4491-a7b6-536ce575a4c9,https://biolit.fr/observations/observation-add73e70-595b-4491-a7b6-536ce575a4c9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040031.JPG,,FALSE, +N1,60940,sortie-add73e70-595b-4491-a7b6-536ce575a4c9,https://biolit.fr/sorties/sortie-add73e70-595b-4491-a7b6-536ce575a4c9/,Phil,,9/22/2016 0:00,17.0000000,17.0000000,47.862503000000,-4.071194000000,,Bénodet - Finistère,53058,observation-add73e70-595b-4491-a7b6-536ce575a4c9-2,https://biolit.fr/observations/observation-add73e70-595b-4491-a7b6-536ce575a4c9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040027.JPG,,FALSE, +N1,60940,sortie-add73e70-595b-4491-a7b6-536ce575a4c9,https://biolit.fr/sorties/sortie-add73e70-595b-4491-a7b6-536ce575a4c9/,Phil,,9/22/2016 0:00,17.0000000,17.0000000,47.862503000000,-4.071194000000,,Bénodet - Finistère,53060,observation-add73e70-595b-4491-a7b6-536ce575a4c9-3,https://biolit.fr/observations/observation-add73e70-595b-4491-a7b6-536ce575a4c9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040030.JPG,,FALSE, +N1,60941,sortie-909ba761-4916-4c7c-bb28-23a8f53fa922,https://biolit.fr/sorties/sortie-909ba761-4916-4c7c-bb28-23a8f53fa922/,Phil,,9/23/2016 0:00,14.0:15,14.0000000,47.888355000000,-3.972725000000,,Fouesnant - Finistère,53062,observation-909ba761-4916-4c7c-bb28-23a8f53fa922,https://biolit.fr/observations/observation-909ba761-4916-4c7c-bb28-23a8f53fa922/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160923_141745.jpg,,FALSE, +N1,60941,sortie-909ba761-4916-4c7c-bb28-23a8f53fa922,https://biolit.fr/sorties/sortie-909ba761-4916-4c7c-bb28-23a8f53fa922/,Phil,,9/23/2016 0:00,14.0:15,14.0000000,47.888355000000,-3.972725000000,,Fouesnant - Finistère,53064,observation-909ba761-4916-4c7c-bb28-23a8f53fa922-2,https://biolit.fr/observations/observation-909ba761-4916-4c7c-bb28-23a8f53fa922-2/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/20160923_143029.jpg,,TRUE, +N1,60941,sortie-909ba761-4916-4c7c-bb28-23a8f53fa922,https://biolit.fr/sorties/sortie-909ba761-4916-4c7c-bb28-23a8f53fa922/,Phil,,9/23/2016 0:00,14.0:15,14.0000000,47.888355000000,-3.972725000000,,Fouesnant - Finistère,53066,observation-909ba761-4916-4c7c-bb28-23a8f53fa922-3,https://biolit.fr/observations/observation-909ba761-4916-4c7c-bb28-23a8f53fa922-3/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20160923_142757.jpg,,TRUE, +N1,60941,sortie-909ba761-4916-4c7c-bb28-23a8f53fa922,https://biolit.fr/sorties/sortie-909ba761-4916-4c7c-bb28-23a8f53fa922/,Phil,,9/23/2016 0:00,14.0:15,14.0000000,47.888355000000,-3.972725000000,,Fouesnant - Finistère,53068,observation-909ba761-4916-4c7c-bb28-23a8f53fa922-4,https://biolit.fr/observations/observation-909ba761-4916-4c7c-bb28-23a8f53fa922-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160923_142627.jpg,,FALSE, +N1,60942,sortie-9e233c68-b08e-41f0-a608-9af0540193d0,https://biolit.fr/sorties/sortie-9e233c68-b08e-41f0-a608-9af0540193d0/,Phil,,9/20/2016 0:00,13.0:55,14.0000000,47.803426000000,-4.381751000000,,Penmarc'h - Finistère,53070,observation-9e233c68-b08e-41f0-a608-9af0540193d0,https://biolit.fr/observations/observation-9e233c68-b08e-41f0-a608-9af0540193d0/,Lepadogaster purpurea,Porte-écuelle de Cornouailles,,https://biolit.fr/wp-content/uploads/2023/07/P1030813.JPG,,TRUE, +N1,60942,sortie-9e233c68-b08e-41f0-a608-9af0540193d0,https://biolit.fr/sorties/sortie-9e233c68-b08e-41f0-a608-9af0540193d0/,Phil,,9/20/2016 0:00,13.0:55,14.0000000,47.803426000000,-4.381751000000,,Penmarc'h - Finistère,53072,observation-9e233c68-b08e-41f0-a608-9af0540193d0-2,https://biolit.fr/observations/observation-9e233c68-b08e-41f0-a608-9af0540193d0-2/,Lepadogaster purpurea,Porte-écuelle de Cornouailles,,https://biolit.fr/wp-content/uploads/2023/07/P1030800.JPG,,TRUE, +N1,60942,sortie-9e233c68-b08e-41f0-a608-9af0540193d0,https://biolit.fr/sorties/sortie-9e233c68-b08e-41f0-a608-9af0540193d0/,Phil,,9/20/2016 0:00,13.0:55,14.0000000,47.803426000000,-4.381751000000,,Penmarc'h - Finistère,53074,observation-9e233c68-b08e-41f0-a608-9af0540193d0-3,https://biolit.fr/observations/observation-9e233c68-b08e-41f0-a608-9af0540193d0-3/,Lepadogaster purpurea,Porte-écuelle de Cornouailles,,https://biolit.fr/wp-content/uploads/2023/07/P1030803.JPG,,TRUE, +N1,60942,sortie-9e233c68-b08e-41f0-a608-9af0540193d0,https://biolit.fr/sorties/sortie-9e233c68-b08e-41f0-a608-9af0540193d0/,Phil,,9/20/2016 0:00,13.0:55,14.0000000,47.803426000000,-4.381751000000,,Penmarc'h - Finistère,53076,observation-9e233c68-b08e-41f0-a608-9af0540193d0-4,https://biolit.fr/observations/observation-9e233c68-b08e-41f0-a608-9af0540193d0-4/,Lepadogaster purpurea,Porte-écuelle de Cornouailles,,https://biolit.fr/wp-content/uploads/2023/07/P1030805.JPG,,TRUE, +N1,60943,sortie-4129749e-ddf9-402c-bbe2-3d1069e03a95,https://biolit.fr/sorties/sortie-4129749e-ddf9-402c-bbe2-3d1069e03a95/,Phil,,9/20/2016 0:00,14.0:55,15.0000000,47.818978000000,-4.380596000000,,Saint-Guénolé - Finistère,53078,observation-4129749e-ddf9-402c-bbe2-3d1069e03a95,https://biolit.fr/observations/observation-4129749e-ddf9-402c-bbe2-3d1069e03a95/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030982.JPG,,FALSE, +N1,60944,sortie-e20f4922-be2f-47ee-b20a-422e30bc0943,https://biolit.fr/sorties/sortie-e20f4922-be2f-47ee-b20a-422e30bc0943/,Phil,,9/18/2016 0:00,12.0000000,12.0000000,48.095876000000,-4.467710000000,,Beuzec Cap Sizun - Finistère,53080,observation-e20f4922-be2f-47ee-b20a-422e30bc0943,https://biolit.fr/observations/observation-e20f4922-be2f-47ee-b20a-422e30bc0943/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030555.JPG,,FALSE, +N1,60944,sortie-e20f4922-be2f-47ee-b20a-422e30bc0943,https://biolit.fr/sorties/sortie-e20f4922-be2f-47ee-b20a-422e30bc0943/,Phil,,9/18/2016 0:00,12.0000000,12.0000000,48.095876000000,-4.467710000000,,Beuzec Cap Sizun - Finistère,53082,observation-e20f4922-be2f-47ee-b20a-422e30bc0943-2,https://biolit.fr/observations/observation-e20f4922-be2f-47ee-b20a-422e30bc0943-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030562.JPG,,FALSE, +N1,60944,sortie-e20f4922-be2f-47ee-b20a-422e30bc0943,https://biolit.fr/sorties/sortie-e20f4922-be2f-47ee-b20a-422e30bc0943/,Phil,,9/18/2016 0:00,12.0000000,12.0000000,48.095876000000,-4.467710000000,,Beuzec Cap Sizun - Finistère,53084,observation-e20f4922-be2f-47ee-b20a-422e30bc0943-3,https://biolit.fr/observations/observation-e20f4922-be2f-47ee-b20a-422e30bc0943-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1030550.JPG,,TRUE, +N1,60944,sortie-e20f4922-be2f-47ee-b20a-422e30bc0943,https://biolit.fr/sorties/sortie-e20f4922-be2f-47ee-b20a-422e30bc0943/,Phil,,9/18/2016 0:00,12.0000000,12.0000000,48.095876000000,-4.467710000000,,Beuzec Cap Sizun - Finistère,53086,observation-e20f4922-be2f-47ee-b20a-422e30bc0943-4,https://biolit.fr/observations/observation-e20f4922-be2f-47ee-b20a-422e30bc0943-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1030565.JPG,,TRUE, +N1,60944,sortie-e20f4922-be2f-47ee-b20a-422e30bc0943,https://biolit.fr/sorties/sortie-e20f4922-be2f-47ee-b20a-422e30bc0943/,Phil,,9/18/2016 0:00,12.0000000,12.0000000,48.095876000000,-4.467710000000,,Beuzec Cap Sizun - Finistère,53088,observation-e20f4922-be2f-47ee-b20a-422e30bc0943-5,https://biolit.fr/observations/observation-e20f4922-be2f-47ee-b20a-422e30bc0943-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030566.JPG,,FALSE, +N1,60945,sortie-b70224ef-d6d4-4296-a70a-73f7df99ad12,https://biolit.fr/sorties/sortie-b70224ef-d6d4-4296-a70a-73f7df99ad12/,Phil,,9/20/2016 0:00,14.0000000,14.0:55,47.802774000000,-4.374599000000,,Penmarc'h - Finistère,53090,observation-b70224ef-d6d4-4296-a70a-73f7df99ad12,https://biolit.fr/observations/observation-b70224ef-d6d4-4296-a70a-73f7df99ad12/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030980.JPG,,FALSE, +N1,60948,sortie-3e0568f4-aa2c-49f2-acee-617dae7c04dd,https://biolit.fr/sorties/sortie-3e0568f4-aa2c-49f2-acee-617dae7c04dd/,Phil,,9/22/2016 0:00,17.0000000,17.0:55,47.863196000000,-4.07415900000,,Bénodet - Finistère,53096,observation-3e0568f4-aa2c-49f2-acee-617dae7c04dd,https://biolit.fr/observations/observation-3e0568f4-aa2c-49f2-acee-617dae7c04dd/,Mya arenaria,Mye des sables,,https://biolit.fr/wp-content/uploads/2023/07/P1040050.JPG,,TRUE, +N1,60948,sortie-3e0568f4-aa2c-49f2-acee-617dae7c04dd,https://biolit.fr/sorties/sortie-3e0568f4-aa2c-49f2-acee-617dae7c04dd/,Phil,,9/22/2016 0:00,17.0000000,17.0:55,47.863196000000,-4.07415900000,,Bénodet - Finistère,53098,observation-3e0568f4-aa2c-49f2-acee-617dae7c04dd-2,https://biolit.fr/observations/observation-3e0568f4-aa2c-49f2-acee-617dae7c04dd-2/,Mya arenaria,Mye des sables,,https://biolit.fr/wp-content/uploads/2023/07/P1040046.JPG,,TRUE, +N1,60949,sortie-ed163405-486d-4356-b73b-bab28debde6b,https://biolit.fr/sorties/sortie-ed163405-486d-4356-b73b-bab28debde6b/,ecole publique CAVALIERE,,9/22/2016 0:00,9.0000000,12.0000000,43.130899000000,6.326949000000,,Cavalière LE LAVANDOU,53100,observation-ed163405-486d-4356-b73b-bab28debde6b,https://biolit.fr/observations/observation-ed163405-486d-4356-b73b-bab28debde6b/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060478-scaled.jpg,,FALSE, +N1,60949,sortie-ed163405-486d-4356-b73b-bab28debde6b,https://biolit.fr/sorties/sortie-ed163405-486d-4356-b73b-bab28debde6b/,ecole publique CAVALIERE,,9/22/2016 0:00,9.0000000,12.0000000,43.130899000000,6.326949000000,,Cavalière LE LAVANDOU,53102,observation-ed163405-486d-4356-b73b-bab28debde6b-2,https://biolit.fr/observations/observation-ed163405-486d-4356-b73b-bab28debde6b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P9180034-scaled.jpg,,FALSE, +N1,60949,sortie-ed163405-486d-4356-b73b-bab28debde6b,https://biolit.fr/sorties/sortie-ed163405-486d-4356-b73b-bab28debde6b/,ecole publique CAVALIERE,,9/22/2016 0:00,9.0000000,12.0000000,43.130899000000,6.326949000000,,Cavalière LE LAVANDOU,53104,observation-ed163405-486d-4356-b73b-bab28debde6b-3,https://biolit.fr/observations/observation-ed163405-486d-4356-b73b-bab28debde6b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P9180037-scaled.jpg,,FALSE, +N1,60949,sortie-ed163405-486d-4356-b73b-bab28debde6b,https://biolit.fr/sorties/sortie-ed163405-486d-4356-b73b-bab28debde6b/,ecole publique CAVALIERE,,9/22/2016 0:00,9.0000000,12.0000000,43.130899000000,6.326949000000,,Cavalière LE LAVANDOU,53106,observation-ed163405-486d-4356-b73b-bab28debde6b-4,https://biolit.fr/observations/observation-ed163405-486d-4356-b73b-bab28debde6b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P9180039-scaled.jpg,,FALSE, +N1,60949,sortie-ed163405-486d-4356-b73b-bab28debde6b,https://biolit.fr/sorties/sortie-ed163405-486d-4356-b73b-bab28debde6b/,ecole publique CAVALIERE,,9/22/2016 0:00,9.0000000,12.0000000,43.130899000000,6.326949000000,,Cavalière LE LAVANDOU,53108,observation-ed163405-486d-4356-b73b-bab28debde6b-5,https://biolit.fr/observations/observation-ed163405-486d-4356-b73b-bab28debde6b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060488-scaled.jpg,,FALSE, +N1,60950,sortie-4350787d-abd1-4b0d-a021-67ba54290910,https://biolit.fr/sorties/sortie-4350787d-abd1-4b0d-a021-67ba54290910/,Phil,,9/20/2016 0:00,13.0:45,13.0000000,47.803341000000,-4.381841000000,,Penmarc'h - Finistère,53110,observation-4350787d-abd1-4b0d-a021-67ba54290910,https://biolit.fr/observations/observation-4350787d-abd1-4b0d-a021-67ba54290910/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/P1030793.JPG,,TRUE, +N1,60950,sortie-4350787d-abd1-4b0d-a021-67ba54290910,https://biolit.fr/sorties/sortie-4350787d-abd1-4b0d-a021-67ba54290910/,Phil,,9/20/2016 0:00,13.0:45,13.0000000,47.803341000000,-4.381841000000,,Penmarc'h - Finistère,53112,observation-4350787d-abd1-4b0d-a021-67ba54290910-2,https://biolit.fr/observations/observation-4350787d-abd1-4b0d-a021-67ba54290910-2/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/P1030781.JPG,,TRUE, +N1,60950,sortie-4350787d-abd1-4b0d-a021-67ba54290910,https://biolit.fr/sorties/sortie-4350787d-abd1-4b0d-a021-67ba54290910/,Phil,,9/20/2016 0:00,13.0:45,13.0000000,47.803341000000,-4.381841000000,,Penmarc'h - Finistère,53114,observation-4350787d-abd1-4b0d-a021-67ba54290910-3,https://biolit.fr/observations/observation-4350787d-abd1-4b0d-a021-67ba54290910-3/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/P1030779.JPG,,TRUE, +N1,60951,sortie-e5481712-9747-4d7d-b387-be1e12038232,https://biolit.fr/sorties/sortie-e5481712-9747-4d7d-b387-be1e12038232/,Phil,,9/24/2016 0:00,17.0000000,17.0000000,47.791891000000,-4.219462000000,,Lesconil -Finistère,53116,observation-e5481712-9747-4d7d-b387-be1e12038232,https://biolit.fr/observations/observation-e5481712-9747-4d7d-b387-be1e12038232/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/P1040117.JPG,,TRUE, +N1,60951,sortie-e5481712-9747-4d7d-b387-be1e12038232,https://biolit.fr/sorties/sortie-e5481712-9747-4d7d-b387-be1e12038232/,Phil,,9/24/2016 0:00,17.0000000,17.0000000,47.791891000000,-4.219462000000,,Lesconil -Finistère,53118,observation-e5481712-9747-4d7d-b387-be1e12038232-2,https://biolit.fr/observations/observation-e5481712-9747-4d7d-b387-be1e12038232-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040112.JPG,,FALSE, +N1,60951,sortie-e5481712-9747-4d7d-b387-be1e12038232,https://biolit.fr/sorties/sortie-e5481712-9747-4d7d-b387-be1e12038232/,Phil,,9/24/2016 0:00,17.0000000,17.0000000,47.791891000000,-4.219462000000,,Lesconil -Finistère,53120,observation-e5481712-9747-4d7d-b387-be1e12038232-3,https://biolit.fr/observations/observation-e5481712-9747-4d7d-b387-be1e12038232-3/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/P1040111.JPG,,TRUE, +N1,60952,sortie-e19e7a81-ccf4-44ef-8440-b2675a146137,https://biolit.fr/sorties/sortie-e19e7a81-ccf4-44ef-8440-b2675a146137/,Phil,,9/20/2016 0:00,13.0000000,13.0:45,47.802579000000,-4.382716000000,,Penmarc'h - Finistère,53122,observation-e19e7a81-ccf4-44ef-8440-b2675a146137,https://biolit.fr/observations/observation-e19e7a81-ccf4-44ef-8440-b2675a146137/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/P1030754-scaled.jpg,,TRUE, +N1,60952,sortie-e19e7a81-ccf4-44ef-8440-b2675a146137,https://biolit.fr/sorties/sortie-e19e7a81-ccf4-44ef-8440-b2675a146137/,Phil,,9/20/2016 0:00,13.0000000,13.0:45,47.802579000000,-4.382716000000,,Penmarc'h - Finistère,53124,observation-e19e7a81-ccf4-44ef-8440-b2675a146137-2,https://biolit.fr/observations/observation-e19e7a81-ccf4-44ef-8440-b2675a146137-2/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/P1030750.JPG,,TRUE, +N1,60952,sortie-e19e7a81-ccf4-44ef-8440-b2675a146137,https://biolit.fr/sorties/sortie-e19e7a81-ccf4-44ef-8440-b2675a146137/,Phil,,9/20/2016 0:00,13.0000000,13.0:45,47.802579000000,-4.382716000000,,Penmarc'h - Finistère,53126,observation-e19e7a81-ccf4-44ef-8440-b2675a146137-3,https://biolit.fr/observations/observation-e19e7a81-ccf4-44ef-8440-b2675a146137-3/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/P1030764.JPG,,TRUE, +N1,60952,sortie-e19e7a81-ccf4-44ef-8440-b2675a146137,https://biolit.fr/sorties/sortie-e19e7a81-ccf4-44ef-8440-b2675a146137/,Phil,,9/20/2016 0:00,13.0000000,13.0:45,47.802579000000,-4.382716000000,,Penmarc'h - Finistère,53128,observation-e19e7a81-ccf4-44ef-8440-b2675a146137-4,https://biolit.fr/observations/observation-e19e7a81-ccf4-44ef-8440-b2675a146137-4/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/P1030738.JPG,,TRUE, +N1,60952,sortie-e19e7a81-ccf4-44ef-8440-b2675a146137,https://biolit.fr/sorties/sortie-e19e7a81-ccf4-44ef-8440-b2675a146137/,Phil,,9/20/2016 0:00,13.0000000,13.0:45,47.802579000000,-4.382716000000,,Penmarc'h - Finistère,53130,observation-e19e7a81-ccf4-44ef-8440-b2675a146137-5,https://biolit.fr/observations/observation-e19e7a81-ccf4-44ef-8440-b2675a146137-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1030742.JPG,,TRUE, +N1,60953,sortie-2e7e2e00-7795-45ce-8417-dd2ab49a3bab,https://biolit.fr/sorties/sortie-2e7e2e00-7795-45ce-8417-dd2ab49a3bab/,Phil,,9/23/2016 0:00,14.0000000,14.0:15,47.888228000000,-3.972879000000,,Fouesnant - Finistère,53132,observation-2e7e2e00-7795-45ce-8417-dd2ab49a3bab,https://biolit.fr/observations/observation-2e7e2e00-7795-45ce-8417-dd2ab49a3bab/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160923_142203.jpg,,FALSE, +N1,60953,sortie-2e7e2e00-7795-45ce-8417-dd2ab49a3bab,https://biolit.fr/sorties/sortie-2e7e2e00-7795-45ce-8417-dd2ab49a3bab/,Phil,,9/23/2016 0:00,14.0000000,14.0:15,47.888228000000,-3.972879000000,,Fouesnant - Finistère,53134,observation-2e7e2e00-7795-45ce-8417-dd2ab49a3bab-2,https://biolit.fr/observations/observation-2e7e2e00-7795-45ce-8417-dd2ab49a3bab-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160923_141549.jpg,,FALSE, +N1,60953,sortie-2e7e2e00-7795-45ce-8417-dd2ab49a3bab,https://biolit.fr/sorties/sortie-2e7e2e00-7795-45ce-8417-dd2ab49a3bab/,Phil,,9/23/2016 0:00,14.0000000,14.0:15,47.888228000000,-3.972879000000,,Fouesnant - Finistère,53136,observation-2e7e2e00-7795-45ce-8417-dd2ab49a3bab-3,https://biolit.fr/observations/observation-2e7e2e00-7795-45ce-8417-dd2ab49a3bab-3/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/20160923_141420.jpg,,TRUE, +N1,60953,sortie-2e7e2e00-7795-45ce-8417-dd2ab49a3bab,https://biolit.fr/sorties/sortie-2e7e2e00-7795-45ce-8417-dd2ab49a3bab/,Phil,,9/23/2016 0:00,14.0000000,14.0:15,47.888228000000,-3.972879000000,,Fouesnant - Finistère,53138,observation-2e7e2e00-7795-45ce-8417-dd2ab49a3bab-4,https://biolit.fr/observations/observation-2e7e2e00-7795-45ce-8417-dd2ab49a3bab-4/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/20160923_141111.jpg,,TRUE, +N1,60954,sortie-943c55be-7aec-47b7-8e23-61ef72fb529d,https://biolit.fr/sorties/sortie-943c55be-7aec-47b7-8e23-61ef72fb529d/,Phil,,9/20/2016 0:00,13.0:35,13.0:45,47.804407000000,-4.381536000000,,Penmarc'h - Finistère,53140,observation-943c55be-7aec-47b7-8e23-61ef72fb529d,https://biolit.fr/observations/observation-943c55be-7aec-47b7-8e23-61ef72fb529d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030725.JPG,,FALSE, +N1,60954,sortie-943c55be-7aec-47b7-8e23-61ef72fb529d,https://biolit.fr/sorties/sortie-943c55be-7aec-47b7-8e23-61ef72fb529d/,Phil,,9/20/2016 0:00,13.0:35,13.0:45,47.804407000000,-4.381536000000,,Penmarc'h - Finistère,53142,observation-943c55be-7aec-47b7-8e23-61ef72fb529d-2,https://biolit.fr/observations/observation-943c55be-7aec-47b7-8e23-61ef72fb529d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030722.JPG,,FALSE, +N1,60954,sortie-943c55be-7aec-47b7-8e23-61ef72fb529d,https://biolit.fr/sorties/sortie-943c55be-7aec-47b7-8e23-61ef72fb529d/,Phil,,9/20/2016 0:00,13.0:35,13.0:45,47.804407000000,-4.381536000000,,Penmarc'h - Finistère,53144,observation-943c55be-7aec-47b7-8e23-61ef72fb529d-3,https://biolit.fr/observations/observation-943c55be-7aec-47b7-8e23-61ef72fb529d-3/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1030731.JPG,,TRUE, +N1,60954,sortie-943c55be-7aec-47b7-8e23-61ef72fb529d,https://biolit.fr/sorties/sortie-943c55be-7aec-47b7-8e23-61ef72fb529d/,Phil,,9/20/2016 0:00,13.0:35,13.0:45,47.804407000000,-4.381536000000,,Penmarc'h - Finistère,53146,observation-943c55be-7aec-47b7-8e23-61ef72fb529d-4,https://biolit.fr/observations/observation-943c55be-7aec-47b7-8e23-61ef72fb529d-4/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1030770.JPG,,TRUE, +N1,60954,sortie-943c55be-7aec-47b7-8e23-61ef72fb529d,https://biolit.fr/sorties/sortie-943c55be-7aec-47b7-8e23-61ef72fb529d/,Phil,,9/20/2016 0:00,13.0:35,13.0:45,47.804407000000,-4.381536000000,,Penmarc'h - Finistère,53148,observation-943c55be-7aec-47b7-8e23-61ef72fb529d-5,https://biolit.fr/observations/observation-943c55be-7aec-47b7-8e23-61ef72fb529d-5/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1030733.JPG,,TRUE, +N1,60955,sortie-5fd73152-c94d-4194-845d-9dd30d03578c,https://biolit.fr/sorties/sortie-5fd73152-c94d-4194-845d-9dd30d03578c/,Phil,,9/22/2016 0:00,17.0000000,17.0:35,47.862963000000,-4.072084000000,,Bénodet - Finistère,53150,observation-5fd73152-c94d-4194-845d-9dd30d03578c,https://biolit.fr/observations/observation-5fd73152-c94d-4194-845d-9dd30d03578c/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040014.JPG,,FALSE, +N1,60955,sortie-5fd73152-c94d-4194-845d-9dd30d03578c,https://biolit.fr/sorties/sortie-5fd73152-c94d-4194-845d-9dd30d03578c/,Phil,,9/22/2016 0:00,17.0000000,17.0:35,47.862963000000,-4.072084000000,,Bénodet - Finistère,53152,observation-5fd73152-c94d-4194-845d-9dd30d03578c-2,https://biolit.fr/observations/observation-5fd73152-c94d-4194-845d-9dd30d03578c-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1040020.JPG,,TRUE, +N1,60955,sortie-5fd73152-c94d-4194-845d-9dd30d03578c,https://biolit.fr/sorties/sortie-5fd73152-c94d-4194-845d-9dd30d03578c/,Phil,,9/22/2016 0:00,17.0000000,17.0:35,47.862963000000,-4.072084000000,,Bénodet - Finistère,53154,observation-5fd73152-c94d-4194-845d-9dd30d03578c-3,https://biolit.fr/observations/observation-5fd73152-c94d-4194-845d-9dd30d03578c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040025.JPG,,FALSE, +N1,60956,sortie-a293decc-b281-4d2a-a75d-6e73c81a7369,https://biolit.fr/sorties/sortie-a293decc-b281-4d2a-a75d-6e73c81a7369/,Phil,,9/23/2016 0:00,15.0:35,15.0000000,47.89579800000,-3.969052000000,,La Forêt-Fouesnant - Finistère,53156,observation-a293decc-b281-4d2a-a75d-6e73c81a7369,https://biolit.fr/observations/observation-a293decc-b281-4d2a-a75d-6e73c81a7369/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160923_154042.jpg,,FALSE, +N1,60956,sortie-a293decc-b281-4d2a-a75d-6e73c81a7369,https://biolit.fr/sorties/sortie-a293decc-b281-4d2a-a75d-6e73c81a7369/,Phil,,9/23/2016 0:00,15.0:35,15.0000000,47.89579800000,-3.969052000000,,La Forêt-Fouesnant - Finistère,53158,observation-a293decc-b281-4d2a-a75d-6e73c81a7369-2,https://biolit.fr/observations/observation-a293decc-b281-4d2a-a75d-6e73c81a7369-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160923_153732.jpg,,FALSE, +N1,60957,sortie-304b6699-fa22-442f-aceb-732791e8d468,https://biolit.fr/sorties/sortie-304b6699-fa22-442f-aceb-732791e8d468/,Phil,,9/23/2016 0:00,14.0000000,14.0000000,47.889101000000,-3.972720000000,,Fouesnant - Finistère,53160,observation-304b6699-fa22-442f-aceb-732791e8d468,https://biolit.fr/observations/observation-304b6699-fa22-442f-aceb-732791e8d468/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160923_140633.jpg,,FALSE, +N1,60957,sortie-304b6699-fa22-442f-aceb-732791e8d468,https://biolit.fr/sorties/sortie-304b6699-fa22-442f-aceb-732791e8d468/,Phil,,9/23/2016 0:00,14.0000000,14.0000000,47.889101000000,-3.972720000000,,Fouesnant - Finistère,53162,observation-304b6699-fa22-442f-aceb-732791e8d468-2,https://biolit.fr/observations/observation-304b6699-fa22-442f-aceb-732791e8d468-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160923_140942.jpg,,FALSE, +N1,60957,sortie-304b6699-fa22-442f-aceb-732791e8d468,https://biolit.fr/sorties/sortie-304b6699-fa22-442f-aceb-732791e8d468/,Phil,,9/23/2016 0:00,14.0000000,14.0000000,47.889101000000,-3.972720000000,,Fouesnant - Finistère,53164,observation-304b6699-fa22-442f-aceb-732791e8d468-3,https://biolit.fr/observations/observation-304b6699-fa22-442f-aceb-732791e8d468-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160923_140837.jpg,,FALSE, +N1,60958,sortie-1d5031b4-4073-4178-bbc0-4b1f4b120b29,https://biolit.fr/sorties/sortie-1d5031b4-4073-4178-bbc0-4b1f4b120b29/,Phil,,9/18/2016 0:00,12.0000000,12.0000000,48.099765000000,-4.46650000000,,Beuzec Cap Sizun - Finistère,53166,observation-1d5031b4-4073-4178-bbc0-4b1f4b120b29,https://biolit.fr/observations/observation-1d5031b4-4073-4178-bbc0-4b1f4b120b29/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/P1030501-scaled.jpg,,TRUE, +N1,60958,sortie-1d5031b4-4073-4178-bbc0-4b1f4b120b29,https://biolit.fr/sorties/sortie-1d5031b4-4073-4178-bbc0-4b1f4b120b29/,Phil,,9/18/2016 0:00,12.0000000,12.0000000,48.099765000000,-4.46650000000,,Beuzec Cap Sizun - Finistère,53168,observation-1d5031b4-4073-4178-bbc0-4b1f4b120b29-2,https://biolit.fr/observations/observation-1d5031b4-4073-4178-bbc0-4b1f4b120b29-2/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/P1030505-scaled.jpg,,TRUE, +N1,60958,sortie-1d5031b4-4073-4178-bbc0-4b1f4b120b29,https://biolit.fr/sorties/sortie-1d5031b4-4073-4178-bbc0-4b1f4b120b29/,Phil,,9/18/2016 0:00,12.0000000,12.0000000,48.099765000000,-4.46650000000,,Beuzec Cap Sizun - Finistère,53170,observation-1d5031b4-4073-4178-bbc0-4b1f4b120b29-3,https://biolit.fr/observations/observation-1d5031b4-4073-4178-bbc0-4b1f4b120b29-3/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/P1030544.JPG,,TRUE, +N1,60959,sortie-748156d6-16e2-47c4-9242-d46fa1ab6ff9,https://biolit.fr/sorties/sortie-748156d6-16e2-47c4-9242-d46fa1ab6ff9/,Phil,,9/22/2016 0:00,17.0:25,17.0000000,47.863716000000,-4.075372000000,,Bénodet - Finistère,53172,observation-748156d6-16e2-47c4-9242-d46fa1ab6ff9,https://biolit.fr/observations/observation-748156d6-16e2-47c4-9242-d46fa1ab6ff9/,Arenicola marina,Arénicole,,https://biolit.fr/wp-content/uploads/2023/07/P1040004.JPG,,TRUE, +N1,60959,sortie-748156d6-16e2-47c4-9242-d46fa1ab6ff9,https://biolit.fr/sorties/sortie-748156d6-16e2-47c4-9242-d46fa1ab6ff9/,Phil,,9/22/2016 0:00,17.0:25,17.0000000,47.863716000000,-4.075372000000,,Bénodet - Finistère,53174,observation-748156d6-16e2-47c4-9242-d46fa1ab6ff9-2,https://biolit.fr/observations/observation-748156d6-16e2-47c4-9242-d46fa1ab6ff9-2/,Arenicola marina,Arénicole,,https://biolit.fr/wp-content/uploads/2023/07/P1040008.JPG,,TRUE, +N1,60959,sortie-748156d6-16e2-47c4-9242-d46fa1ab6ff9,https://biolit.fr/sorties/sortie-748156d6-16e2-47c4-9242-d46fa1ab6ff9/,Phil,,9/22/2016 0:00,17.0:25,17.0000000,47.863716000000,-4.075372000000,,Bénodet - Finistère,53176,observation-748156d6-16e2-47c4-9242-d46fa1ab6ff9-3,https://biolit.fr/observations/observation-748156d6-16e2-47c4-9242-d46fa1ab6ff9-3/,Arenicola marina,Arénicole,,https://biolit.fr/wp-content/uploads/2023/07/P1040011.JPG,,TRUE, +N1,60960,sortie-a7edc2f8-1380-4656-8c91-c1b39b113dec,https://biolit.fr/sorties/sortie-a7edc2f8-1380-4656-8c91-c1b39b113dec/,Phil,,9/20/2016 0:00,13.0000000,13.0000000,47.803705000000,-4.381527000000,,Penmarc'h - Finistère,53178,observation-a7edc2f8-1380-4656-8c91-c1b39b113dec,https://biolit.fr/observations/observation-a7edc2f8-1380-4656-8c91-c1b39b113dec/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1030693.JPG,,TRUE, +N1,60960,sortie-a7edc2f8-1380-4656-8c91-c1b39b113dec,https://biolit.fr/sorties/sortie-a7edc2f8-1380-4656-8c91-c1b39b113dec/,Phil,,9/20/2016 0:00,13.0000000,13.0000000,47.803705000000,-4.381527000000,,Penmarc'h - Finistère,53180,observation-a7edc2f8-1380-4656-8c91-c1b39b113dec-2,https://biolit.fr/observations/observation-a7edc2f8-1380-4656-8c91-c1b39b113dec-2/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1030699.JPG,,TRUE, +N1,60960,sortie-a7edc2f8-1380-4656-8c91-c1b39b113dec,https://biolit.fr/sorties/sortie-a7edc2f8-1380-4656-8c91-c1b39b113dec/,Phil,,9/20/2016 0:00,13.0000000,13.0000000,47.803705000000,-4.381527000000,,Penmarc'h - Finistère,53182,observation-a7edc2f8-1380-4656-8c91-c1b39b113dec-3,https://biolit.fr/observations/observation-a7edc2f8-1380-4656-8c91-c1b39b113dec-3/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1030713.JPG,,TRUE, +N1,60961,sortie-f8b5dca7-8876-424e-9212-ded559d28f3d,https://biolit.fr/sorties/sortie-f8b5dca7-8876-424e-9212-ded559d28f3d/,Phil,,9/18/2016 0:00,12.0:35,12.0000000,48.099436000000,-4.466856000000,,Beuzec Cap Sizun - Finistère,53184,observation-f8b5dca7-8876-424e-9212-ded559d28f3d,https://biolit.fr/observations/observation-f8b5dca7-8876-424e-9212-ded559d28f3d/,Coryphoblennius galerita,Blennie coiffée,,https://biolit.fr/wp-content/uploads/2023/07/P1030532.JPG,,TRUE, +N1,60961,sortie-f8b5dca7-8876-424e-9212-ded559d28f3d,https://biolit.fr/sorties/sortie-f8b5dca7-8876-424e-9212-ded559d28f3d/,Phil,,9/18/2016 0:00,12.0:35,12.0000000,48.099436000000,-4.466856000000,,Beuzec Cap Sizun - Finistère,53186,observation-f8b5dca7-8876-424e-9212-ded559d28f3d-2,https://biolit.fr/observations/observation-f8b5dca7-8876-424e-9212-ded559d28f3d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030498.JPG,,FALSE, +N1,60961,sortie-f8b5dca7-8876-424e-9212-ded559d28f3d,https://biolit.fr/sorties/sortie-f8b5dca7-8876-424e-9212-ded559d28f3d/,Phil,,9/18/2016 0:00,12.0:35,12.0000000,48.099436000000,-4.466856000000,,Beuzec Cap Sizun - Finistère,53188,observation-f8b5dca7-8876-424e-9212-ded559d28f3d-3,https://biolit.fr/observations/observation-f8b5dca7-8876-424e-9212-ded559d28f3d-3/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/P1030543.JPG,,TRUE, +N1,60962,sortie-a64cc954-fe51-4c57-9855-bba85c6ada56,https://biolit.fr/sorties/sortie-a64cc954-fe51-4c57-9855-bba85c6ada56/,Phil,,9/20/2016 0:00,13.0000000,13.0:25,47.800593000000,-4.382755000000,,Penmarc'h - Finistère,53190,observation-a64cc954-fe51-4c57-9855-bba85c6ada56,https://biolit.fr/observations/observation-a64cc954-fe51-4c57-9855-bba85c6ada56/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/P1030679.JPG,,TRUE, +N1,60962,sortie-a64cc954-fe51-4c57-9855-bba85c6ada56,https://biolit.fr/sorties/sortie-a64cc954-fe51-4c57-9855-bba85c6ada56/,Phil,,9/20/2016 0:00,13.0000000,13.0:25,47.800593000000,-4.382755000000,,Penmarc'h - Finistère,53192,observation-a64cc954-fe51-4c57-9855-bba85c6ada56-2,https://biolit.fr/observations/observation-a64cc954-fe51-4c57-9855-bba85c6ada56-2/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/P1030685.JPG,,TRUE, +N1,60962,sortie-a64cc954-fe51-4c57-9855-bba85c6ada56,https://biolit.fr/sorties/sortie-a64cc954-fe51-4c57-9855-bba85c6ada56/,Phil,,9/20/2016 0:00,13.0000000,13.0:25,47.800593000000,-4.382755000000,,Penmarc'h - Finistère,53194,observation-a64cc954-fe51-4c57-9855-bba85c6ada56-3,https://biolit.fr/observations/observation-a64cc954-fe51-4c57-9855-bba85c6ada56-3/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/P1030678.JPG,,TRUE, +N1,60962,sortie-a64cc954-fe51-4c57-9855-bba85c6ada56,https://biolit.fr/sorties/sortie-a64cc954-fe51-4c57-9855-bba85c6ada56/,Phil,,9/20/2016 0:00,13.0000000,13.0:25,47.800593000000,-4.382755000000,,Penmarc'h - Finistère,53196,observation-a64cc954-fe51-4c57-9855-bba85c6ada56-4,https://biolit.fr/observations/observation-a64cc954-fe51-4c57-9855-bba85c6ada56-4/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/P1030675.JPG,,TRUE, +N1,60963,sortie-a90197e3-989f-434a-8cec-943825d5509c,https://biolit.fr/sorties/sortie-a90197e3-989f-434a-8cec-943825d5509c/,Phil,,9/20/2016 0:00,13.000005,13.0:15,47.80042700000,-4.378232000000,,Penmarc'h - Finistère,53198,observation-a90197e3-989f-434a-8cec-943825d5509c,https://biolit.fr/observations/observation-a90197e3-989f-434a-8cec-943825d5509c/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030653.JPG,,FALSE, +N1,60963,sortie-a90197e3-989f-434a-8cec-943825d5509c,https://biolit.fr/sorties/sortie-a90197e3-989f-434a-8cec-943825d5509c/,Phil,,9/20/2016 0:00,13.000005,13.0:15,47.80042700000,-4.378232000000,,Penmarc'h - Finistère,53200,observation-a90197e3-989f-434a-8cec-943825d5509c-2,https://biolit.fr/observations/observation-a90197e3-989f-434a-8cec-943825d5509c-2/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1030650.JPG,,TRUE, +N1,60963,sortie-a90197e3-989f-434a-8cec-943825d5509c,https://biolit.fr/sorties/sortie-a90197e3-989f-434a-8cec-943825d5509c/,Phil,,9/20/2016 0:00,13.000005,13.0:15,47.80042700000,-4.378232000000,,Penmarc'h - Finistère,53202,observation-a90197e3-989f-434a-8cec-943825d5509c-3,https://biolit.fr/observations/observation-a90197e3-989f-434a-8cec-943825d5509c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030648.JPG,,FALSE, +N1,60963,sortie-a90197e3-989f-434a-8cec-943825d5509c,https://biolit.fr/sorties/sortie-a90197e3-989f-434a-8cec-943825d5509c/,Phil,,9/20/2016 0:00,13.000005,13.0:15,47.80042700000,-4.378232000000,,Penmarc'h - Finistère,53204,observation-a90197e3-989f-434a-8cec-943825d5509c-4,https://biolit.fr/observations/observation-a90197e3-989f-434a-8cec-943825d5509c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030644.JPG,,FALSE, +N1,60964,sortie-6cb093c4-ecdc-422b-9e84-1bde1e5b1bba,https://biolit.fr/sorties/sortie-6cb093c4-ecdc-422b-9e84-1bde1e5b1bba/,Phil,,9/18/2016 0:00,12.0:15,12.0000000,48.098968000,-4.466843000000,,Beuzec Cap Sizun - Finistère,53206,observation-6cb093c4-ecdc-422b-9e84-1bde1e5b1bba,https://biolit.fr/observations/observation-6cb093c4-ecdc-422b-9e84-1bde1e5b1bba/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030496.JPG,,FALSE, +N1,60964,sortie-6cb093c4-ecdc-422b-9e84-1bde1e5b1bba,https://biolit.fr/sorties/sortie-6cb093c4-ecdc-422b-9e84-1bde1e5b1bba/,Phil,,9/18/2016 0:00,12.0:15,12.0000000,48.098968000,-4.466843000000,,Beuzec Cap Sizun - Finistère,53208,observation-6cb093c4-ecdc-422b-9e84-1bde1e5b1bba-2,https://biolit.fr/observations/observation-6cb093c4-ecdc-422b-9e84-1bde1e5b1bba-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030491.JPG,,FALSE, +N1,60964,sortie-6cb093c4-ecdc-422b-9e84-1bde1e5b1bba,https://biolit.fr/sorties/sortie-6cb093c4-ecdc-422b-9e84-1bde1e5b1bba/,Phil,,9/18/2016 0:00,12.0:15,12.0000000,48.098968000,-4.466843000000,,Beuzec Cap Sizun - Finistère,53210,observation-6cb093c4-ecdc-422b-9e84-1bde1e5b1bba-3,https://biolit.fr/observations/observation-6cb093c4-ecdc-422b-9e84-1bde1e5b1bba-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030486.JPG,,FALSE, +N1,60965,sortie-bfe7ec8e-c566-4e44-94a4-175b8c5bc7ea,https://biolit.fr/sorties/sortie-bfe7ec8e-c566-4e44-94a4-175b8c5bc7ea/,Phil,,9/18/2016 0:00,12.0000000,12.0000000,48.099055000000,-4.466830000000,,Beuzec Cap Sizun - Finistère,53212,observation-bfe7ec8e-c566-4e44-94a4-175b8c5bc7ea,https://biolit.fr/observations/observation-bfe7ec8e-c566-4e44-94a4-175b8c5bc7ea/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/P1030470.JPG,,TRUE, +N1,60965,sortie-bfe7ec8e-c566-4e44-94a4-175b8c5bc7ea,https://biolit.fr/sorties/sortie-bfe7ec8e-c566-4e44-94a4-175b8c5bc7ea/,Phil,,9/18/2016 0:00,12.0000000,12.0000000,48.099055000000,-4.466830000000,,Beuzec Cap Sizun - Finistère,53214,observation-bfe7ec8e-c566-4e44-94a4-175b8c5bc7ea-2,https://biolit.fr/observations/observation-bfe7ec8e-c566-4e44-94a4-175b8c5bc7ea-2/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/P1030472.JPG,,TRUE, +N1,60965,sortie-bfe7ec8e-c566-4e44-94a4-175b8c5bc7ea,https://biolit.fr/sorties/sortie-bfe7ec8e-c566-4e44-94a4-175b8c5bc7ea/,Phil,,9/18/2016 0:00,12.0000000,12.0000000,48.099055000000,-4.466830000000,,Beuzec Cap Sizun - Finistère,53216,observation-bfe7ec8e-c566-4e44-94a4-175b8c5bc7ea-3,https://biolit.fr/observations/observation-bfe7ec8e-c566-4e44-94a4-175b8c5bc7ea-3/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/P1030474.JPG,,TRUE, +N1,60965,sortie-bfe7ec8e-c566-4e44-94a4-175b8c5bc7ea,https://biolit.fr/sorties/sortie-bfe7ec8e-c566-4e44-94a4-175b8c5bc7ea/,Phil,,9/18/2016 0:00,12.0000000,12.0000000,48.099055000000,-4.466830000000,,Beuzec Cap Sizun - Finistère,53218,observation-bfe7ec8e-c566-4e44-94a4-175b8c5bc7ea-4,https://biolit.fr/observations/observation-bfe7ec8e-c566-4e44-94a4-175b8c5bc7ea-4/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/P1030476.JPG,,TRUE, +N1,60966,sortie-1fdf982d-f9f2-4338-95bd-6e503bff2988,https://biolit.fr/sorties/sortie-1fdf982d-f9f2-4338-95bd-6e503bff2988/,Phil,,9/20/2016 0:00,15.000005,15.0000000,47.815947000000,-4.381846000000,,Saint-Guénolé - Finistère,53220,observation-1fdf982d-f9f2-4338-95bd-6e503bff2988,https://biolit.fr/observations/observation-1fdf982d-f9f2-4338-95bd-6e503bff2988/,Phocoena phocoena,Marsouin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1030999.JPG,,TRUE, +N1,60966,sortie-1fdf982d-f9f2-4338-95bd-6e503bff2988,https://biolit.fr/sorties/sortie-1fdf982d-f9f2-4338-95bd-6e503bff2988/,Phil,,9/20/2016 0:00,15.000005,15.0000000,47.815947000000,-4.381846000000,,Saint-Guénolé - Finistère,53222,observation-1fdf982d-f9f2-4338-95bd-6e503bff2988-2,https://biolit.fr/observations/observation-1fdf982d-f9f2-4338-95bd-6e503bff2988-2/,Phocoena phocoena,Marsouin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1030995.JPG,,TRUE, +N1,60966,sortie-1fdf982d-f9f2-4338-95bd-6e503bff2988,https://biolit.fr/sorties/sortie-1fdf982d-f9f2-4338-95bd-6e503bff2988/,Phil,,9/20/2016 0:00,15.000005,15.0000000,47.815947000000,-4.381846000000,,Saint-Guénolé - Finistère,53224,observation-1fdf982d-f9f2-4338-95bd-6e503bff2988-3,https://biolit.fr/observations/observation-1fdf982d-f9f2-4338-95bd-6e503bff2988-3/,Phocoena phocoena,Marsouin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1030997.JPG,,TRUE, +N1,60967,sortie-78422e6a-38cb-4f92-af71-dcb0aecf2bad,https://biolit.fr/sorties/sortie-78422e6a-38cb-4f92-af71-dcb0aecf2bad/,Phil,,9/18/2016 0:00,12.000005,12.0000000,48.09850000000,-4.467281000000,,Beuzec Cap Sizun - Finistère,53226,observation-78422e6a-38cb-4f92-af71-dcb0aecf2bad,https://biolit.fr/observations/observation-78422e6a-38cb-4f92-af71-dcb0aecf2bad/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030447.JPG,,FALSE, +N1,60967,sortie-78422e6a-38cb-4f92-af71-dcb0aecf2bad,https://biolit.fr/sorties/sortie-78422e6a-38cb-4f92-af71-dcb0aecf2bad/,Phil,,9/18/2016 0:00,12.000005,12.0000000,48.09850000000,-4.467281000000,,Beuzec Cap Sizun - Finistère,53228,observation-78422e6a-38cb-4f92-af71-dcb0aecf2bad-2,https://biolit.fr/observations/observation-78422e6a-38cb-4f92-af71-dcb0aecf2bad-2/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1030461.JPG,,TRUE, +N1,60967,sortie-78422e6a-38cb-4f92-af71-dcb0aecf2bad,https://biolit.fr/sorties/sortie-78422e6a-38cb-4f92-af71-dcb0aecf2bad/,Phil,,9/18/2016 0:00,12.000005,12.0000000,48.09850000000,-4.467281000000,,Beuzec Cap Sizun - Finistère,53230,observation-78422e6a-38cb-4f92-af71-dcb0aecf2bad-3,https://biolit.fr/observations/observation-78422e6a-38cb-4f92-af71-dcb0aecf2bad-3/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/P1030454.JPG,,TRUE, +N1,60968,sortie-1d581d6d-700d-4aa2-a797-140ac9d98b2a,https://biolit.fr/sorties/sortie-1d581d6d-700d-4aa2-a797-140ac9d98b2a/,Phil,,9/15/2016 0:00,11.0000000,12.0:15,47.792799000000,-4.290045000000,,Le Guivinec - Finistère,53232,observation-1d581d6d-700d-4aa2-a797-140ac9d98b2a,https://biolit.fr/observations/observation-1d581d6d-700d-4aa2-a797-140ac9d98b2a/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20160915_121212.jpg,,TRUE, +N1,60968,sortie-1d581d6d-700d-4aa2-a797-140ac9d98b2a,https://biolit.fr/sorties/sortie-1d581d6d-700d-4aa2-a797-140ac9d98b2a/,Phil,,9/15/2016 0:00,11.0000000,12.0:15,47.792799000000,-4.290045000000,,Le Guivinec - Finistère,53234,observation-1d581d6d-700d-4aa2-a797-140ac9d98b2a-2,https://biolit.fr/observations/observation-1d581d6d-700d-4aa2-a797-140ac9d98b2a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160915_121019.jpg,,FALSE, +N1,60968,sortie-1d581d6d-700d-4aa2-a797-140ac9d98b2a,https://biolit.fr/sorties/sortie-1d581d6d-700d-4aa2-a797-140ac9d98b2a/,Phil,,9/15/2016 0:00,11.0000000,12.0:15,47.792799000000,-4.290045000000,,Le Guivinec - Finistère,53236,observation-1d581d6d-700d-4aa2-a797-140ac9d98b2a-3,https://biolit.fr/observations/observation-1d581d6d-700d-4aa2-a797-140ac9d98b2a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160915_113749.jpg,,FALSE, +N1,60968,sortie-1d581d6d-700d-4aa2-a797-140ac9d98b2a,https://biolit.fr/sorties/sortie-1d581d6d-700d-4aa2-a797-140ac9d98b2a/,Phil,,9/15/2016 0:00,11.0000000,12.0:15,47.792799000000,-4.290045000000,,Le Guivinec - Finistère,53238,observation-1d581d6d-700d-4aa2-a797-140ac9d98b2a-4,https://biolit.fr/observations/observation-1d581d6d-700d-4aa2-a797-140ac9d98b2a-4/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/20160915_121334.jpg,,TRUE, +N1,60968,sortie-1d581d6d-700d-4aa2-a797-140ac9d98b2a,https://biolit.fr/sorties/sortie-1d581d6d-700d-4aa2-a797-140ac9d98b2a/,Phil,,9/15/2016 0:00,11.0000000,12.0:15,47.792799000000,-4.290045000000,,Le Guivinec - Finistère,53240,observation-1d581d6d-700d-4aa2-a797-140ac9d98b2a-5,https://biolit.fr/observations/observation-1d581d6d-700d-4aa2-a797-140ac9d98b2a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160915_121411.jpg,,FALSE, +N1,60968,sortie-1d581d6d-700d-4aa2-a797-140ac9d98b2a,https://biolit.fr/sorties/sortie-1d581d6d-700d-4aa2-a797-140ac9d98b2a/,Phil,,9/15/2016 0:00,11.0000000,12.0:15,47.792799000000,-4.290045000000,,Le Guivinec - Finistère,53242,observation-1d581d6d-700d-4aa2-a797-140ac9d98b2a-6,https://biolit.fr/observations/observation-1d581d6d-700d-4aa2-a797-140ac9d98b2a-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160915_121418.jpg,,FALSE, +N1,60969,sortie-c94fb907-0822-4971-ab24-923b9ea2fefe,https://biolit.fr/sorties/sortie-c94fb907-0822-4971-ab24-923b9ea2fefe/,Phil,,9/18/2016 0:00,11.0000000,12.0000000,48.09628900000,-4.46972700000,,Beuzec Cap Sizun - Finistère,53244,observation-c94fb907-0822-4971-ab24-923b9ea2fefe,https://biolit.fr/observations/observation-c94fb907-0822-4971-ab24-923b9ea2fefe/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1030436.JPG,,TRUE, +N1,60969,sortie-c94fb907-0822-4971-ab24-923b9ea2fefe,https://biolit.fr/sorties/sortie-c94fb907-0822-4971-ab24-923b9ea2fefe/,Phil,,9/18/2016 0:00,11.0000000,12.0000000,48.09628900000,-4.46972700000,,Beuzec Cap Sizun - Finistère,53246,observation-c94fb907-0822-4971-ab24-923b9ea2fefe-2,https://biolit.fr/observations/observation-c94fb907-0822-4971-ab24-923b9ea2fefe-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030440.JPG,,FALSE, +N1,60969,sortie-c94fb907-0822-4971-ab24-923b9ea2fefe,https://biolit.fr/sorties/sortie-c94fb907-0822-4971-ab24-923b9ea2fefe/,Phil,,9/18/2016 0:00,11.0000000,12.0000000,48.09628900000,-4.46972700000,,Beuzec Cap Sizun - Finistère,53248,observation-c94fb907-0822-4971-ab24-923b9ea2fefe-3,https://biolit.fr/observations/observation-c94fb907-0822-4971-ab24-923b9ea2fefe-3/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/P1030441.JPG,,TRUE, +N1,60969,sortie-c94fb907-0822-4971-ab24-923b9ea2fefe,https://biolit.fr/sorties/sortie-c94fb907-0822-4971-ab24-923b9ea2fefe/,Phil,,9/18/2016 0:00,11.0000000,12.0000000,48.09628900000,-4.46972700000,,Beuzec Cap Sizun - Finistère,53250,observation-c94fb907-0822-4971-ab24-923b9ea2fefe-4,https://biolit.fr/observations/observation-c94fb907-0822-4971-ab24-923b9ea2fefe-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030444.JPG,,FALSE, +N1,60970,sortie-5dc2a34a-9b35-4456-b768-6487415a2732,https://biolit.fr/sorties/sortie-5dc2a34a-9b35-4456-b768-6487415a2732/,Phil,,9/15/2016 0:00,12.0000000,12.000005,47.790893000000,-4.292358000000,,Le Guivinec - Finistère,53252,observation-5dc2a34a-9b35-4456-b768-6487415a2732,https://biolit.fr/observations/observation-5dc2a34a-9b35-4456-b768-6487415a2732/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20160915_120206.jpg,,TRUE, +N1,60970,sortie-5dc2a34a-9b35-4456-b768-6487415a2732,https://biolit.fr/sorties/sortie-5dc2a34a-9b35-4456-b768-6487415a2732/,Phil,,9/15/2016 0:00,12.0000000,12.000005,47.790893000000,-4.292358000000,,Le Guivinec - Finistère,53254,observation-5dc2a34a-9b35-4456-b768-6487415a2732-2,https://biolit.fr/observations/observation-5dc2a34a-9b35-4456-b768-6487415a2732-2/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20160915_120219.jpg,,TRUE, +N1,60970,sortie-5dc2a34a-9b35-4456-b768-6487415a2732,https://biolit.fr/sorties/sortie-5dc2a34a-9b35-4456-b768-6487415a2732/,Phil,,9/15/2016 0:00,12.0000000,12.000005,47.790893000000,-4.292358000000,,Le Guivinec - Finistère,53256,observation-5dc2a34a-9b35-4456-b768-6487415a2732-3,https://biolit.fr/observations/observation-5dc2a34a-9b35-4456-b768-6487415a2732-3/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20160915_120126.jpg,,TRUE, +N1,60970,sortie-5dc2a34a-9b35-4456-b768-6487415a2732,https://biolit.fr/sorties/sortie-5dc2a34a-9b35-4456-b768-6487415a2732/,Phil,,9/15/2016 0:00,12.0000000,12.000005,47.790893000000,-4.292358000000,,Le Guivinec - Finistère,53258,observation-5dc2a34a-9b35-4456-b768-6487415a2732-4,https://biolit.fr/observations/observation-5dc2a34a-9b35-4456-b768-6487415a2732-4/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20160915_120047.jpg,,TRUE, +N1,60970,sortie-5dc2a34a-9b35-4456-b768-6487415a2732,https://biolit.fr/sorties/sortie-5dc2a34a-9b35-4456-b768-6487415a2732/,Phil,,9/15/2016 0:00,12.0000000,12.000005,47.790893000000,-4.292358000000,,Le Guivinec - Finistère,53260,observation-5dc2a34a-9b35-4456-b768-6487415a2732-5,https://biolit.fr/observations/observation-5dc2a34a-9b35-4456-b768-6487415a2732-5/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20160915_120022.jpg,,TRUE, +N1,60971,sortie-3a6e26ca-b722-4a6a-8a09-47155f7f18ae,https://biolit.fr/sorties/sortie-3a6e26ca-b722-4a6a-8a09-47155f7f18ae/,Phil,,9/15/2016 0:00,11.0000000,12.0000000,47.791424000000,-4.296354000000,,Le Guivinec - Finistère,53262,observation-3a6e26ca-b722-4a6a-8a09-47155f7f18ae,https://biolit.fr/observations/observation-3a6e26ca-b722-4a6a-8a09-47155f7f18ae/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160915_114721.jpg,,FALSE, +N1,60971,sortie-3a6e26ca-b722-4a6a-8a09-47155f7f18ae,https://biolit.fr/sorties/sortie-3a6e26ca-b722-4a6a-8a09-47155f7f18ae/,Phil,,9/15/2016 0:00,11.0000000,12.0000000,47.791424000000,-4.296354000000,,Le Guivinec - Finistère,53264,observation-3a6e26ca-b722-4a6a-8a09-47155f7f18ae-2,https://biolit.fr/observations/observation-3a6e26ca-b722-4a6a-8a09-47155f7f18ae-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160915_115800.jpg,,FALSE, +N1,60971,sortie-3a6e26ca-b722-4a6a-8a09-47155f7f18ae,https://biolit.fr/sorties/sortie-3a6e26ca-b722-4a6a-8a09-47155f7f18ae/,Phil,,9/15/2016 0:00,11.0000000,12.0000000,47.791424000000,-4.296354000000,,Le Guivinec - Finistère,53266,observation-3a6e26ca-b722-4a6a-8a09-47155f7f18ae-3,https://biolit.fr/observations/observation-3a6e26ca-b722-4a6a-8a09-47155f7f18ae-3/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/20160915_115244.jpg,,TRUE, +N1,60972,sortie-277cdcc2-7bc9-4ceb-8bb4-e9c48e385ef7,https://biolit.fr/sorties/sortie-277cdcc2-7bc9-4ceb-8bb4-e9c48e385ef7/,sylvie logette,,9/17/2016 0:00,9.0:15,11.0:15,43.236124000000,5.359809000000,,"Marseille, Plage Bonne Brise",53268,observation-277cdcc2-7bc9-4ceb-8bb4-e9c48e385ef7,https://biolit.fr/observations/observation-277cdcc2-7bc9-4ceb-8bb4-e9c48e385ef7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1781.JPG,,FALSE, +N1,60973,sortie-34f222b8-0bc8-49ae-b5f8-6df958004f30,https://biolit.fr/sorties/sortie-34f222b8-0bc8-49ae-b5f8-6df958004f30/,Phil,,9/18/2016 0:00,11.0000000,12.0000000,48.096514000000,-4.472871000000,,Beuzec Cap Sizun - Finistère,53270,observation-34f222b8-0bc8-49ae-b5f8-6df958004f30,https://biolit.fr/observations/observation-34f222b8-0bc8-49ae-b5f8-6df958004f30/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030421.JPG,,FALSE, +N1,60973,sortie-34f222b8-0bc8-49ae-b5f8-6df958004f30,https://biolit.fr/sorties/sortie-34f222b8-0bc8-49ae-b5f8-6df958004f30/,Phil,,9/18/2016 0:00,11.0000000,12.0000000,48.096514000000,-4.472871000000,,Beuzec Cap Sizun - Finistère,53272,observation-34f222b8-0bc8-49ae-b5f8-6df958004f30-2,https://biolit.fr/observations/observation-34f222b8-0bc8-49ae-b5f8-6df958004f30-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030432.JPG,,FALSE, +N1,60973,sortie-34f222b8-0bc8-49ae-b5f8-6df958004f30,https://biolit.fr/sorties/sortie-34f222b8-0bc8-49ae-b5f8-6df958004f30/,Phil,,9/18/2016 0:00,11.0000000,12.0000000,48.096514000000,-4.472871000000,,Beuzec Cap Sizun - Finistère,53274,observation-34f222b8-0bc8-49ae-b5f8-6df958004f30-3,https://biolit.fr/observations/observation-34f222b8-0bc8-49ae-b5f8-6df958004f30-3/,Codium tomentosum,Codium tomenteux,,https://biolit.fr/wp-content/uploads/2023/07/P1030416.JPG,,TRUE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53276,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSCF2374.JPG,,TRUE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53278,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-2,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2376.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53280,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-3,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2377.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53282,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-4,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-4/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2378.JPG,,TRUE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53284,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-5,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2380.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53286,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-6,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-6/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2383.JPG,,TRUE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53288,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-7,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-7/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2386.JPG,,TRUE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53290,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-8,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2389.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53292,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-9,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2390.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53294,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-10,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2391.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53296,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-11,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-11/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2392.JPG,,TRUE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53298,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-12,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-12/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2394.JPG,,TRUE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53300,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-13,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-13/,Lithophyllum byssoides,Algue calcaire des trottoirs,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2395.JPG,,TRUE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53302,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-14,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2400.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53304,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-15,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2402.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53306,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-16,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-16/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSCF2404.JPG,,TRUE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53308,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-17,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2406.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53310,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-18,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2407.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53312,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-19,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-19/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2408.JPG,,TRUE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53314,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-20,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2412.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53316,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-21,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2417.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53318,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-22,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2419.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53320,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-23,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2424.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53322,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-24,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2428.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53324,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-25,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2434.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53326,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-26,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2437.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53328,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-27,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2438.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53330,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-28,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-28/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSCF2446.JPG,,TRUE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53332,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-29,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-29/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSCF2447.JPG,,TRUE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53334,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-30,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2448.JPG,,FALSE, +N1,60975,sortie-16c3851b-43ac-4671-b519-554444ff3fb2,https://biolit.fr/sorties/sortie-16c3851b-43ac-4671-b519-554444ff3fb2/,Phil,,9/14/2016 0:00,11.0:45,11.0:55,47.868122000000,-3.925597000000,,Concarneau - Finistère,53336,observation-16c3851b-43ac-4671-b519-554444ff3fb2,https://biolit.fr/observations/observation-16c3851b-43ac-4671-b519-554444ff3fb2/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/20160914_115529.jpg,,TRUE, +N1,60975,sortie-16c3851b-43ac-4671-b519-554444ff3fb2,https://biolit.fr/sorties/sortie-16c3851b-43ac-4671-b519-554444ff3fb2/,Phil,,9/14/2016 0:00,11.0:45,11.0:55,47.868122000000,-3.925597000000,,Concarneau - Finistère,53338,observation-16c3851b-43ac-4671-b519-554444ff3fb2-2,https://biolit.fr/observations/observation-16c3851b-43ac-4671-b519-554444ff3fb2-2/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/20160914_115604.jpg,,TRUE, +N1,60976,sortie-f354d429-e2f7-49df-bb7b-d3b380b280e1,https://biolit.fr/sorties/sortie-f354d429-e2f7-49df-bb7b-d3b380b280e1/,Phil,,9/15/2016 0:00,11.0000000,11.0:55,47.790723000000,-4.293796000000,,Le Guivinec - Finistère,53340,observation-f354d429-e2f7-49df-bb7b-d3b380b280e1,https://biolit.fr/observations/observation-f354d429-e2f7-49df-bb7b-d3b380b280e1/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160915_120315.jpg,,FALSE, +N1,60977,sortie-657cd5ff-7eab-4ccf-8199-d95a8a2ab0a0,https://biolit.fr/sorties/sortie-657cd5ff-7eab-4ccf-8199-d95a8a2ab0a0/,Phil,,9/14/2016 0:00,11.0:45,11.0:55,47.867779000000,-3.925265000000,,Concarneau - Finistère,53342,observation-657cd5ff-7eab-4ccf-8199-d95a8a2ab0a0,https://biolit.fr/observations/observation-657cd5ff-7eab-4ccf-8199-d95a8a2ab0a0/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160914_115149.jpg,,TRUE, +N1,60977,sortie-657cd5ff-7eab-4ccf-8199-d95a8a2ab0a0,https://biolit.fr/sorties/sortie-657cd5ff-7eab-4ccf-8199-d95a8a2ab0a0/,Phil,,9/14/2016 0:00,11.0:45,11.0:55,47.867779000000,-3.925265000000,,Concarneau - Finistère,53344,observation-657cd5ff-7eab-4ccf-8199-d95a8a2ab0a0-2,https://biolit.fr/observations/observation-657cd5ff-7eab-4ccf-8199-d95a8a2ab0a0-2/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/20160914_114742.jpg,,TRUE, +N1,60977,sortie-657cd5ff-7eab-4ccf-8199-d95a8a2ab0a0,https://biolit.fr/sorties/sortie-657cd5ff-7eab-4ccf-8199-d95a8a2ab0a0/,Phil,,9/14/2016 0:00,11.0:45,11.0:55,47.867779000000,-3.925265000000,,Concarneau - Finistère,53346,observation-657cd5ff-7eab-4ccf-8199-d95a8a2ab0a0-3,https://biolit.fr/observations/observation-657cd5ff-7eab-4ccf-8199-d95a8a2ab0a0-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160914_115424.jpg,,TRUE, +N1,60978,sortie-72c4f3bb-de70-496b-8dae-543800525751,https://biolit.fr/sorties/sortie-72c4f3bb-de70-496b-8dae-543800525751/,Karine Raoult,,9/17/2016 0:00,9.0000000,11.0:15,43.235868000000,5.360134000000,,Plage de la bonne brise,53348,observation-72c4f3bb-de70-496b-8dae-543800525751,https://biolit.fr/observations/observation-72c4f3bb-de70-496b-8dae-543800525751/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_9757-scaled.jpg,,TRUE, +N1,60978,sortie-72c4f3bb-de70-496b-8dae-543800525751,https://biolit.fr/sorties/sortie-72c4f3bb-de70-496b-8dae-543800525751/,Karine Raoult,,9/17/2016 0:00,9.0000000,11.0:15,43.235868000000,5.360134000000,,Plage de la bonne brise,53350,observation-72c4f3bb-de70-496b-8dae-543800525751-2,https://biolit.fr/observations/observation-72c4f3bb-de70-496b-8dae-543800525751-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9754-scaled.jpg,,FALSE, +N1,60978,sortie-72c4f3bb-de70-496b-8dae-543800525751,https://biolit.fr/sorties/sortie-72c4f3bb-de70-496b-8dae-543800525751/,Karine Raoult,,9/17/2016 0:00,9.0000000,11.0:15,43.235868000000,5.360134000000,,Plage de la bonne brise,53352,observation-72c4f3bb-de70-496b-8dae-543800525751-3,https://biolit.fr/observations/observation-72c4f3bb-de70-496b-8dae-543800525751-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9724-scaled.jpg,,FALSE, +N1,60978,sortie-72c4f3bb-de70-496b-8dae-543800525751,https://biolit.fr/sorties/sortie-72c4f3bb-de70-496b-8dae-543800525751/,Karine Raoult,,9/17/2016 0:00,9.0000000,11.0:15,43.235868000000,5.360134000000,,Plage de la bonne brise,53354,observation-72c4f3bb-de70-496b-8dae-543800525751-4,https://biolit.fr/observations/observation-72c4f3bb-de70-496b-8dae-543800525751-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9753-scaled.jpg,,FALSE, +N1,60978,sortie-72c4f3bb-de70-496b-8dae-543800525751,https://biolit.fr/sorties/sortie-72c4f3bb-de70-496b-8dae-543800525751/,Karine Raoult,,9/17/2016 0:00,9.0000000,11.0:15,43.235868000000,5.360134000000,,Plage de la bonne brise,53356,observation-72c4f3bb-de70-496b-8dae-543800525751-5,https://biolit.fr/observations/observation-72c4f3bb-de70-496b-8dae-543800525751-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9719.JPG,,FALSE, +N1,60978,sortie-72c4f3bb-de70-496b-8dae-543800525751,https://biolit.fr/sorties/sortie-72c4f3bb-de70-496b-8dae-543800525751/,Karine Raoult,,9/17/2016 0:00,9.0000000,11.0:15,43.235868000000,5.360134000000,,Plage de la bonne brise,53358,observation-72c4f3bb-de70-496b-8dae-543800525751-6,https://biolit.fr/observations/observation-72c4f3bb-de70-496b-8dae-543800525751-6/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/DSC06256.JPG,,TRUE, +N1,60978,sortie-72c4f3bb-de70-496b-8dae-543800525751,https://biolit.fr/sorties/sortie-72c4f3bb-de70-496b-8dae-543800525751/,Karine Raoult,,9/17/2016 0:00,9.0000000,11.0:15,43.235868000000,5.360134000000,,Plage de la bonne brise,53360,observation-72c4f3bb-de70-496b-8dae-543800525751-7,https://biolit.fr/observations/observation-72c4f3bb-de70-496b-8dae-543800525751-7/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9699.JPG,,TRUE, +N1,60978,sortie-72c4f3bb-de70-496b-8dae-543800525751,https://biolit.fr/sorties/sortie-72c4f3bb-de70-496b-8dae-543800525751/,Karine Raoult,,9/17/2016 0:00,9.0000000,11.0:15,43.235868000000,5.360134000000,,Plage de la bonne brise,53362,observation-72c4f3bb-de70-496b-8dae-543800525751-8,https://biolit.fr/observations/observation-72c4f3bb-de70-496b-8dae-543800525751-8/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/DSC06281.JPG,,TRUE, +N1,60978,sortie-72c4f3bb-de70-496b-8dae-543800525751,https://biolit.fr/sorties/sortie-72c4f3bb-de70-496b-8dae-543800525751/,Karine Raoult,,9/17/2016 0:00,9.0000000,11.0:15,43.235868000000,5.360134000000,,Plage de la bonne brise,53364,observation-72c4f3bb-de70-496b-8dae-543800525751-9,https://biolit.fr/observations/observation-72c4f3bb-de70-496b-8dae-543800525751-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC06283.JPG,,FALSE, +N1,60979,sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee,https://biolit.fr/sorties/sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee/,sylvie logette,,9/17/2016 0:00,9.0000000,11.0:15,43.23597500000,5.359840000000,,"Marseille, plage de bonne brise",53366,observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee,https://biolit.fr/observations/observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1764-scaled.jpg,,TRUE, +N1,60979,sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee,https://biolit.fr/sorties/sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee/,sylvie logette,,9/17/2016 0:00,9.0000000,11.0:15,43.23597500000,5.359840000000,,"Marseille, plage de bonne brise",53368,observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-2,https://biolit.fr/observations/observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-2/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1765-scaled.jpg,,TRUE, +N1,60979,sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee,https://biolit.fr/sorties/sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee/,sylvie logette,,9/17/2016 0:00,9.0000000,11.0:15,43.23597500000,5.359840000000,,"Marseille, plage de bonne brise",53370,observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-3,https://biolit.fr/observations/observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1766-scaled.jpg,,FALSE, +N1,60979,sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee,https://biolit.fr/sorties/sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee/,sylvie logette,,9/17/2016 0:00,9.0000000,11.0:15,43.23597500000,5.359840000000,,"Marseille, plage de bonne brise",53372,observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-4,https://biolit.fr/observations/observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1767-scaled.jpg,,FALSE, +N1,60979,sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee,https://biolit.fr/sorties/sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee/,sylvie logette,,9/17/2016 0:00,9.0000000,11.0:15,43.23597500000,5.359840000000,,"Marseille, plage de bonne brise",53374,observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-5,https://biolit.fr/observations/observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-5/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1768-scaled.jpg,,TRUE, +N1,60979,sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee,https://biolit.fr/sorties/sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee/,sylvie logette,,9/17/2016 0:00,9.0000000,11.0:15,43.23597500000,5.359840000000,,"Marseille, plage de bonne brise",53376,observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-6,https://biolit.fr/observations/observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1773-scaled.jpg,,FALSE, +N1,60979,sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee,https://biolit.fr/sorties/sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee/,sylvie logette,,9/17/2016 0:00,9.0000000,11.0:15,43.23597500000,5.359840000000,,"Marseille, plage de bonne brise",53378,observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-7,https://biolit.fr/observations/observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1776-scaled.jpg,,FALSE, +N1,60979,sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee,https://biolit.fr/sorties/sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee/,sylvie logette,,9/17/2016 0:00,9.0000000,11.0:15,43.23597500000,5.359840000000,,"Marseille, plage de bonne brise",53380,observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-8,https://biolit.fr/observations/observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-8/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1777-scaled.jpg,,TRUE, +N1,60979,sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee,https://biolit.fr/sorties/sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee/,sylvie logette,,9/17/2016 0:00,9.0000000,11.0:15,43.23597500000,5.359840000000,,"Marseille, plage de bonne brise",53382,observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-9,https://biolit.fr/observations/observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-9/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1787-scaled.jpg,,TRUE, +N1,60979,sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee,https://biolit.fr/sorties/sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee/,sylvie logette,,9/17/2016 0:00,9.0000000,11.0:15,43.23597500000,5.359840000000,,"Marseille, plage de bonne brise",53384,observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-10,https://biolit.fr/observations/observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1788_0-scaled.jpg,,FALSE, +N1,60980,sortie-25088bb7-5b76-4e29-8e27-b2719a9cf280,https://biolit.fr/sorties/sortie-25088bb7-5b76-4e29-8e27-b2719a9cf280/,Khedim,,9/17/2016 0:00,9.0000000,12.0000000,43.256354000000,5.362462000000,,Plage de la brise ,53386,observation-25088bb7-5b76-4e29-8e27-b2719a9cf280,https://biolit.fr/observations/observation-25088bb7-5b76-4e29-8e27-b2719a9cf280/,,,,https://biolit.fr/wp-content/uploads/2023/07/image_74-scaled.jpeg,,FALSE, +N1,60981,sortie-8c2ed26e-9dd5-4b4e-99ba-4945dad3a210,https://biolit.fr/sorties/sortie-8c2ed26e-9dd5-4b4e-99ba-4945dad3a210/,Phil,,9/15/2016 0:00,11.0000000,11.0:45,47.791076000000,-4.294294000000,,Le Guivinec - Finistère,53388,observation-8c2ed26e-9dd5-4b4e-99ba-4945dad3a210,https://biolit.fr/observations/observation-8c2ed26e-9dd5-4b4e-99ba-4945dad3a210/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160915_114646.jpg,,FALSE, +N1,60981,sortie-8c2ed26e-9dd5-4b4e-99ba-4945dad3a210,https://biolit.fr/sorties/sortie-8c2ed26e-9dd5-4b4e-99ba-4945dad3a210/,Phil,,9/15/2016 0:00,11.0000000,11.0:45,47.791076000000,-4.294294000000,,Le Guivinec - Finistère,53390,observation-8c2ed26e-9dd5-4b4e-99ba-4945dad3a210-2,https://biolit.fr/observations/observation-8c2ed26e-9dd5-4b4e-99ba-4945dad3a210-2/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/20160915_114346.jpg,,TRUE, +N1,60981,sortie-8c2ed26e-9dd5-4b4e-99ba-4945dad3a210,https://biolit.fr/sorties/sortie-8c2ed26e-9dd5-4b4e-99ba-4945dad3a210/,Phil,,9/15/2016 0:00,11.0000000,11.0:45,47.791076000000,-4.294294000000,,Le Guivinec - Finistère,53392,observation-8c2ed26e-9dd5-4b4e-99ba-4945dad3a210-3,https://biolit.fr/observations/observation-8c2ed26e-9dd5-4b4e-99ba-4945dad3a210-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160915_114428.jpg,,FALSE, +N1,60982,sortie-8cda6048-3e20-446d-b177-be0e62bb341c,https://biolit.fr/sorties/sortie-8cda6048-3e20-446d-b177-be0e62bb341c/,Phil,,9/14/2016 0:00,11.0:35,11.0:45,47.86771300000,-3.926263000000,,Concarneau - Finistère,53394,observation-8cda6048-3e20-446d-b177-be0e62bb341c,https://biolit.fr/observations/observation-8cda6048-3e20-446d-b177-be0e62bb341c/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20160914_114439.jpg,,TRUE, +N1,60982,sortie-8cda6048-3e20-446d-b177-be0e62bb341c,https://biolit.fr/sorties/sortie-8cda6048-3e20-446d-b177-be0e62bb341c/,Phil,,9/14/2016 0:00,11.0:35,11.0:45,47.86771300000,-3.926263000000,,Concarneau - Finistère,53396,observation-8cda6048-3e20-446d-b177-be0e62bb341c-2,https://biolit.fr/observations/observation-8cda6048-3e20-446d-b177-be0e62bb341c-2/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/20160914_113948.jpg,,TRUE, +N1,60982,sortie-8cda6048-3e20-446d-b177-be0e62bb341c,https://biolit.fr/sorties/sortie-8cda6048-3e20-446d-b177-be0e62bb341c/,Phil,,9/14/2016 0:00,11.0:35,11.0:45,47.86771300000,-3.926263000000,,Concarneau - Finistère,53398,observation-8cda6048-3e20-446d-b177-be0e62bb341c-3,https://biolit.fr/observations/observation-8cda6048-3e20-446d-b177-be0e62bb341c-3/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20160914_114222.jpg,,TRUE, +N1,60982,sortie-8cda6048-3e20-446d-b177-be0e62bb341c,https://biolit.fr/sorties/sortie-8cda6048-3e20-446d-b177-be0e62bb341c/,Phil,,9/14/2016 0:00,11.0:35,11.0:45,47.86771300000,-3.926263000000,,Concarneau - Finistère,53400,observation-8cda6048-3e20-446d-b177-be0e62bb341c-4,https://biolit.fr/observations/observation-8cda6048-3e20-446d-b177-be0e62bb341c-4/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20160914_114211.jpg,,TRUE, +N1,60983,sortie-04caf0fb-d65f-4c51-9a9c-221c88bd4da9,https://biolit.fr/sorties/sortie-04caf0fb-d65f-4c51-9a9c-221c88bd4da9/,Phil,,9/15/2016 0:00,11.0000000,11.0:45,47.791298000000,-4.293210000000,,Le Guivinec - Finistère,53402,observation-04caf0fb-d65f-4c51-9a9c-221c88bd4da9,https://biolit.fr/observations/observation-04caf0fb-d65f-4c51-9a9c-221c88bd4da9/,Coryphoblennius galerita,Blennie coiffée,,https://biolit.fr/wp-content/uploads/2023/07/20160915_113927.jpg,,TRUE, +N1,60983,sortie-04caf0fb-d65f-4c51-9a9c-221c88bd4da9,https://biolit.fr/sorties/sortie-04caf0fb-d65f-4c51-9a9c-221c88bd4da9/,Phil,,9/15/2016 0:00,11.0000000,11.0:45,47.791298000000,-4.293210000000,,Le Guivinec - Finistère,53404,observation-04caf0fb-d65f-4c51-9a9c-221c88bd4da9-2,https://biolit.fr/observations/observation-04caf0fb-d65f-4c51-9a9c-221c88bd4da9-2/,Coryphoblennius galerita,Blennie coiffée,,https://biolit.fr/wp-content/uploads/2023/07/20160915_114001.jpg,,TRUE, +N1,60983,sortie-04caf0fb-d65f-4c51-9a9c-221c88bd4da9,https://biolit.fr/sorties/sortie-04caf0fb-d65f-4c51-9a9c-221c88bd4da9/,Phil,,9/15/2016 0:00,11.0000000,11.0:45,47.791298000000,-4.293210000000,,Le Guivinec - Finistère,53406,observation-04caf0fb-d65f-4c51-9a9c-221c88bd4da9-3,https://biolit.fr/observations/observation-04caf0fb-d65f-4c51-9a9c-221c88bd4da9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160915_114151.jpg,,FALSE, +N1,60984,sortie-669019d3-c921-41f9-9321-82e3daad9f40,https://biolit.fr/sorties/sortie-669019d3-c921-41f9-9321-82e3daad9f40/,Earthforce FS,,8/14/2016 0:00,16.0000000,16.0:45,43.557315000000,4.050044000000,,Plage du Grand Travers,53408,observation-669019d3-c921-41f9-9321-82e3daad9f40,https://biolit.fr/observations/observation-669019d3-c921-41f9-9321-82e3daad9f40/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5115-scaled.jpg,,FALSE, +N1,60985,sortie-54200493-b41b-406e-ac84-3fdd8ac200f1,https://biolit.fr/sorties/sortie-54200493-b41b-406e-ac84-3fdd8ac200f1/,Earthforce FS,,08/05/2016,14.0000000,15.0000000,43.549999000000,4.000509000000,,Carnon Plage ,53410,observation-54200493-b41b-406e-ac84-3fdd8ac200f1,https://biolit.fr/observations/observation-54200493-b41b-406e-ac84-3fdd8ac200f1/,,,,https://biolit.fr/wp-content/uploads/2023/07/13920799_1239174222759644_1839288431609180635_n.jpg,,FALSE, +N1,60985,sortie-54200493-b41b-406e-ac84-3fdd8ac200f1,https://biolit.fr/sorties/sortie-54200493-b41b-406e-ac84-3fdd8ac200f1/,Earthforce FS,,08/05/2016,14.0000000,15.0000000,43.549999000000,4.000509000000,,Carnon Plage ,53412,observation-54200493-b41b-406e-ac84-3fdd8ac200f1-2,https://biolit.fr/observations/observation-54200493-b41b-406e-ac84-3fdd8ac200f1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/13872659_1239173889426344_715232143834212630_n.jpg,,FALSE, +N1,60986,sortie-40f403ff-3a65-44e0-84a2-a18d47f82b04,https://biolit.fr/sorties/sortie-40f403ff-3a65-44e0-84a2-a18d47f82b04/,Phil,,9/14/2016 0:00,11.0:25,11.0:35,47.867904000000,-3.92536800000,,Concarneau - Finistère,53414,observation-40f403ff-3a65-44e0-84a2-a18d47f82b04,https://biolit.fr/observations/observation-40f403ff-3a65-44e0-84a2-a18d47f82b04/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20160914_112928.jpg,,TRUE, +N1,60986,sortie-40f403ff-3a65-44e0-84a2-a18d47f82b04,https://biolit.fr/sorties/sortie-40f403ff-3a65-44e0-84a2-a18d47f82b04/,Phil,,9/14/2016 0:00,11.0:25,11.0:35,47.867904000000,-3.92536800000,,Concarneau - Finistère,53416,observation-40f403ff-3a65-44e0-84a2-a18d47f82b04-2,https://biolit.fr/observations/observation-40f403ff-3a65-44e0-84a2-a18d47f82b04-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160914_113547.jpg,,FALSE, +N1,60986,sortie-40f403ff-3a65-44e0-84a2-a18d47f82b04,https://biolit.fr/sorties/sortie-40f403ff-3a65-44e0-84a2-a18d47f82b04/,Phil,,9/14/2016 0:00,11.0:25,11.0:35,47.867904000000,-3.92536800000,,Concarneau - Finistère,53418,observation-40f403ff-3a65-44e0-84a2-a18d47f82b04-3,https://biolit.fr/observations/observation-40f403ff-3a65-44e0-84a2-a18d47f82b04-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160914_113022.jpg,,FALSE, +N1,60987,sortie-a36d867f-512a-49c1-b659-efa38c1ba471,https://biolit.fr/sorties/sortie-a36d867f-512a-49c1-b659-efa38c1ba471/,Phil,,9/14/2016 0:00,11.0000000,11.0:25,47.868080000000,-3.926333000000,,Concarneau - Finistère,53420,observation-a36d867f-512a-49c1-b659-efa38c1ba471,https://biolit.fr/observations/observation-a36d867f-512a-49c1-b659-efa38c1ba471/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160914_112438.jpg,,FALSE, +N1,60987,sortie-a36d867f-512a-49c1-b659-efa38c1ba471,https://biolit.fr/sorties/sortie-a36d867f-512a-49c1-b659-efa38c1ba471/,Phil,,9/14/2016 0:00,11.0000000,11.0:25,47.868080000000,-3.926333000000,,Concarneau - Finistère,53422,observation-a36d867f-512a-49c1-b659-efa38c1ba471-2,https://biolit.fr/observations/observation-a36d867f-512a-49c1-b659-efa38c1ba471-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160914_112817.jpg,,FALSE, +N1,60987,sortie-a36d867f-512a-49c1-b659-efa38c1ba471,https://biolit.fr/sorties/sortie-a36d867f-512a-49c1-b659-efa38c1ba471/,Phil,,9/14/2016 0:00,11.0000000,11.0:25,47.868080000000,-3.926333000000,,Concarneau - Finistère,53424,observation-a36d867f-512a-49c1-b659-efa38c1ba471-3,https://biolit.fr/observations/observation-a36d867f-512a-49c1-b659-efa38c1ba471-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160914_111905(0).jpg,,FALSE, +N1,60988,sortie-498f3fa9-203d-41b7-b8eb-f89ab8491de0,https://biolit.fr/sorties/sortie-498f3fa9-203d-41b7-b8eb-f89ab8491de0/,Phil,,8/20/2016 0:00,10.0:55,11.0000000,47.877207000000,-3.932206000000,,Concarneau - Finistère,53426,observation-498f3fa9-203d-41b7-b8eb-f89ab8491de0,https://biolit.fr/observations/observation-498f3fa9-203d-41b7-b8eb-f89ab8491de0/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_110027.jpg,,FALSE, +N1,60988,sortie-498f3fa9-203d-41b7-b8eb-f89ab8491de0,https://biolit.fr/sorties/sortie-498f3fa9-203d-41b7-b8eb-f89ab8491de0/,Phil,,8/20/2016 0:00,10.0:55,11.0000000,47.877207000000,-3.932206000000,,Concarneau - Finistère,53428,observation-498f3fa9-203d-41b7-b8eb-f89ab8491de0-2,https://biolit.fr/observations/observation-498f3fa9-203d-41b7-b8eb-f89ab8491de0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_110038.jpg,,FALSE, +N1,60989,sortie-983170f5-0a73-4cd8-a135-7e65a40a87ee,https://biolit.fr/sorties/sortie-983170f5-0a73-4cd8-a135-7e65a40a87ee/,Phil,,9/14/2016 0:00,11.0000000,11.0:15,47.868762000000,-3.925835000000,,Concarneau - Finistère,53430,observation-983170f5-0a73-4cd8-a135-7e65a40a87ee,https://biolit.fr/observations/observation-983170f5-0a73-4cd8-a135-7e65a40a87ee/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160914_110845.jpg,,TRUE, +N1,60989,sortie-983170f5-0a73-4cd8-a135-7e65a40a87ee,https://biolit.fr/sorties/sortie-983170f5-0a73-4cd8-a135-7e65a40a87ee/,Phil,,9/14/2016 0:00,11.0000000,11.0:15,47.868762000000,-3.925835000000,,Concarneau - Finistère,53432,observation-983170f5-0a73-4cd8-a135-7e65a40a87ee-2,https://biolit.fr/observations/observation-983170f5-0a73-4cd8-a135-7e65a40a87ee-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160914_111832.jpg,,FALSE, +N1,60990,sortie-aaf4336e-4f18-4fa0-b47d-302410829f95,https://biolit.fr/sorties/sortie-aaf4336e-4f18-4fa0-b47d-302410829f95/,cigale33,,9/14/2016 0:00,10.0:15,11.0:45,44.656192000000,-1.19638900000,,"Arcachon,",53434,observation-aaf4336e-4f18-4fa0-b47d-302410829f95,https://biolit.fr/observations/observation-aaf4336e-4f18-4fa0-b47d-302410829f95/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7628.JPG,,TRUE, +N1,60990,sortie-aaf4336e-4f18-4fa0-b47d-302410829f95,https://biolit.fr/sorties/sortie-aaf4336e-4f18-4fa0-b47d-302410829f95/,cigale33,,9/14/2016 0:00,10.0:15,11.0:45,44.656192000000,-1.19638900000,,"Arcachon,",53436,observation-aaf4336e-4f18-4fa0-b47d-302410829f95-2,https://biolit.fr/observations/observation-aaf4336e-4f18-4fa0-b47d-302410829f95-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_7676.JPG,,FALSE, +N1,60990,sortie-aaf4336e-4f18-4fa0-b47d-302410829f95,https://biolit.fr/sorties/sortie-aaf4336e-4f18-4fa0-b47d-302410829f95/,cigale33,,9/14/2016 0:00,10.0:15,11.0:45,44.656192000000,-1.19638900000,,"Arcachon,",53438,observation-aaf4336e-4f18-4fa0-b47d-302410829f95-3,https://biolit.fr/observations/observation-aaf4336e-4f18-4fa0-b47d-302410829f95-3/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7620.JPG,,TRUE, +N1,60990,sortie-aaf4336e-4f18-4fa0-b47d-302410829f95,https://biolit.fr/sorties/sortie-aaf4336e-4f18-4fa0-b47d-302410829f95/,cigale33,,9/14/2016 0:00,10.0:15,11.0:45,44.656192000000,-1.19638900000,,"Arcachon,",53440,observation-aaf4336e-4f18-4fa0-b47d-302410829f95-4,https://biolit.fr/observations/observation-aaf4336e-4f18-4fa0-b47d-302410829f95-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7623.JPG,,FALSE, +N1,60990,sortie-aaf4336e-4f18-4fa0-b47d-302410829f95,https://biolit.fr/sorties/sortie-aaf4336e-4f18-4fa0-b47d-302410829f95/,cigale33,,9/14/2016 0:00,10.0:15,11.0:45,44.656192000000,-1.19638900000,,"Arcachon,",53442,observation-aaf4336e-4f18-4fa0-b47d-302410829f95-5,https://biolit.fr/observations/observation-aaf4336e-4f18-4fa0-b47d-302410829f95-5/,Atelecyclus undecimdentatus,Grand crabe circulaire,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7625.JPG,,TRUE, +N1,60990,sortie-aaf4336e-4f18-4fa0-b47d-302410829f95,https://biolit.fr/sorties/sortie-aaf4336e-4f18-4fa0-b47d-302410829f95/,cigale33,,9/14/2016 0:00,10.0:15,11.0:45,44.656192000000,-1.19638900000,,"Arcachon,",53444,observation-aaf4336e-4f18-4fa0-b47d-302410829f95-6,https://biolit.fr/observations/observation-aaf4336e-4f18-4fa0-b47d-302410829f95-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7640.JPG,,FALSE, +N1,60990,sortie-aaf4336e-4f18-4fa0-b47d-302410829f95,https://biolit.fr/sorties/sortie-aaf4336e-4f18-4fa0-b47d-302410829f95/,cigale33,,9/14/2016 0:00,10.0:15,11.0:45,44.656192000000,-1.19638900000,,"Arcachon,",53446,observation-aaf4336e-4f18-4fa0-b47d-302410829f95-7,https://biolit.fr/observations/observation-aaf4336e-4f18-4fa0-b47d-302410829f95-7/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7647.JPG,,TRUE, +N1,60990,sortie-aaf4336e-4f18-4fa0-b47d-302410829f95,https://biolit.fr/sorties/sortie-aaf4336e-4f18-4fa0-b47d-302410829f95/,cigale33,,9/14/2016 0:00,10.0:15,11.0:45,44.656192000000,-1.19638900000,,"Arcachon,",53448,observation-aaf4336e-4f18-4fa0-b47d-302410829f95-8,https://biolit.fr/observations/observation-aaf4336e-4f18-4fa0-b47d-302410829f95-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7637.JPG,,FALSE, +N1,60992,sortie-0e64efe7-3b57-4f34-8e73-19b3aa98ea83,https://biolit.fr/sorties/sortie-0e64efe7-3b57-4f34-8e73-19b3aa98ea83/,pascal benalloul,,09/09/2016,15.0000000,17.0000000,43.42545800000,5.181232000000,,Plage du jaï marignane,53452,observation-0e64efe7-3b57-4f34-8e73-19b3aa98ea83,https://biolit.fr/observations/observation-0e64efe7-3b57-4f34-8e73-19b3aa98ea83/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20160522_155949-scaled.jpg,,FALSE, +N1,60992,sortie-0e64efe7-3b57-4f34-8e73-19b3aa98ea83,https://biolit.fr/sorties/sortie-0e64efe7-3b57-4f34-8e73-19b3aa98ea83/,pascal benalloul,,09/09/2016,15.0000000,17.0000000,43.42545800000,5.181232000000,,Plage du jaï marignane,53454,observation-0e64efe7-3b57-4f34-8e73-19b3aa98ea83-2,https://biolit.fr/observations/observation-0e64efe7-3b57-4f34-8e73-19b3aa98ea83-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20160522_160034-scaled.jpg,,FALSE, +N1,60992,sortie-0e64efe7-3b57-4f34-8e73-19b3aa98ea83,https://biolit.fr/sorties/sortie-0e64efe7-3b57-4f34-8e73-19b3aa98ea83/,pascal benalloul,,09/09/2016,15.0000000,17.0000000,43.42545800000,5.181232000000,,Plage du jaï marignane,53456,observation-0e64efe7-3b57-4f34-8e73-19b3aa98ea83-3,https://biolit.fr/observations/observation-0e64efe7-3b57-4f34-8e73-19b3aa98ea83-3/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20160522_160233-scaled.jpg,,TRUE, +N1,60992,sortie-0e64efe7-3b57-4f34-8e73-19b3aa98ea83,https://biolit.fr/sorties/sortie-0e64efe7-3b57-4f34-8e73-19b3aa98ea83/,pascal benalloul,,09/09/2016,15.0000000,17.0000000,43.42545800000,5.181232000000,,Plage du jaï marignane,53458,observation-0e64efe7-3b57-4f34-8e73-19b3aa98ea83-4,https://biolit.fr/observations/observation-0e64efe7-3b57-4f34-8e73-19b3aa98ea83-4/,Arcuatula senhousia,Moule asiatique,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20160522_160255-scaled.jpg,,TRUE, +N1,60993,sortie-13af7337-4efe-4a59-b9a0-67f25f66169b,https://biolit.fr/sorties/sortie-13af7337-4efe-4a59-b9a0-67f25f66169b/,MarieSol,,09/08/2016,18.0000000,21.0000000,35.917240000000,0.888259000000,,Frontignan plage,53460,observation-13af7337-4efe-4a59-b9a0-67f25f66169b,https://biolit.fr/observations/observation-13af7337-4efe-4a59-b9a0-67f25f66169b/,,,,https://biolit.fr/wp-content/uploads/2023/07/image_72-scaled.jpeg,,FALSE, +N1,60996,sortie-2befda92-0bbe-425c-b1ca-58893a39ee4a,https://biolit.fr/sorties/sortie-2befda92-0bbe-425c-b1ca-58893a39ee4a/,Phil,,8/20/2016 0:00,10.0000000,10.0:55,47.876966000000,-3.931736000000,,Concarneau - Finistère,53466,observation-2befda92-0bbe-425c-b1ca-58893a39ee4a,https://biolit.fr/observations/observation-2befda92-0bbe-425c-b1ca-58893a39ee4a/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160820_105241.jpg,,TRUE, +N1,60996,sortie-2befda92-0bbe-425c-b1ca-58893a39ee4a,https://biolit.fr/sorties/sortie-2befda92-0bbe-425c-b1ca-58893a39ee4a/,Phil,,8/20/2016 0:00,10.0000000,10.0:55,47.876966000000,-3.931736000000,,Concarneau - Finistère,53468,observation-2befda92-0bbe-425c-b1ca-58893a39ee4a-2,https://biolit.fr/observations/observation-2befda92-0bbe-425c-b1ca-58893a39ee4a-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160820_105421.jpg,,TRUE, +N1,60996,sortie-2befda92-0bbe-425c-b1ca-58893a39ee4a,https://biolit.fr/sorties/sortie-2befda92-0bbe-425c-b1ca-58893a39ee4a/,Phil,,8/20/2016 0:00,10.0000000,10.0:55,47.876966000000,-3.931736000000,,Concarneau - Finistère,53470,observation-2befda92-0bbe-425c-b1ca-58893a39ee4a-3,https://biolit.fr/observations/observation-2befda92-0bbe-425c-b1ca-58893a39ee4a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_105419.jpg,,FALSE, +N1,60996,sortie-2befda92-0bbe-425c-b1ca-58893a39ee4a,https://biolit.fr/sorties/sortie-2befda92-0bbe-425c-b1ca-58893a39ee4a/,Phil,,8/20/2016 0:00,10.0000000,10.0:55,47.876966000000,-3.931736000000,,Concarneau - Finistère,53472,observation-2befda92-0bbe-425c-b1ca-58893a39ee4a-4,https://biolit.fr/observations/observation-2befda92-0bbe-425c-b1ca-58893a39ee4a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_105419a.jpg,,FALSE, +N1,60996,sortie-2befda92-0bbe-425c-b1ca-58893a39ee4a,https://biolit.fr/sorties/sortie-2befda92-0bbe-425c-b1ca-58893a39ee4a/,Phil,,8/20/2016 0:00,10.0000000,10.0:55,47.876966000000,-3.931736000000,,Concarneau - Finistère,53474,observation-2befda92-0bbe-425c-b1ca-58893a39ee4a-5,https://biolit.fr/observations/observation-2befda92-0bbe-425c-b1ca-58893a39ee4a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_105250.jpg,,FALSE, +N1,60997,sortie-06ff54d0-441a-4591-ba01-99c59a0ffd31,https://biolit.fr/sorties/sortie-06ff54d0-441a-4591-ba01-99c59a0ffd31/,Phil,,09/02/2016,14.0:45,14.0000000,47.872574000000,-3.911535000000,,Concarneau - Finistère,53476,observation-06ff54d0-441a-4591-ba01-99c59a0ffd31,https://biolit.fr/observations/observation-06ff54d0-441a-4591-ba01-99c59a0ffd31/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160902_144650.jpg,,FALSE, +N1,60999,sortie-7f8ffb6e-df0c-45bd-b1cc-c943d39cbdba,https://biolit.fr/sorties/sortie-7f8ffb6e-df0c-45bd-b1cc-c943d39cbdba/,Phil,,8/20/2016 0:00,11.0000000,11.000005,47.876823000000,-3.932936000000,,Concarneau - Finistère,53490,observation-7f8ffb6e-df0c-45bd-b1cc-c943d39cbdba,https://biolit.fr/observations/observation-7f8ffb6e-df0c-45bd-b1cc-c943d39cbdba/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_110050.jpg,,FALSE, +N1,60999,sortie-7f8ffb6e-df0c-45bd-b1cc-c943d39cbdba,https://biolit.fr/sorties/sortie-7f8ffb6e-df0c-45bd-b1cc-c943d39cbdba/,Phil,,8/20/2016 0:00,11.0000000,11.000005,47.876823000000,-3.932936000000,,Concarneau - Finistère,53492,observation-7f8ffb6e-df0c-45bd-b1cc-c943d39cbdba-2,https://biolit.fr/observations/observation-7f8ffb6e-df0c-45bd-b1cc-c943d39cbdba-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_105742.jpg,,FALSE, +N1,61000,sortie-16a9821a-900c-4cfd-b0b3-fba66a112846,https://biolit.fr/sorties/sortie-16a9821a-900c-4cfd-b0b3-fba66a112846/,Phil,,8/31/2016 0:00,13.0:15,13.0000000,47.873007000000,-3.910021000000,,Concarneau - Finistère,53494,observation-16a9821a-900c-4cfd-b0b3-fba66a112846,https://biolit.fr/observations/observation-16a9821a-900c-4cfd-b0b3-fba66a112846/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160831_131755.jpg,,FALSE, +N1,61000,sortie-16a9821a-900c-4cfd-b0b3-fba66a112846,https://biolit.fr/sorties/sortie-16a9821a-900c-4cfd-b0b3-fba66a112846/,Phil,,8/31/2016 0:00,13.0:15,13.0000000,47.873007000000,-3.910021000000,,Concarneau - Finistère,53496,observation-16a9821a-900c-4cfd-b0b3-fba66a112846-2,https://biolit.fr/observations/observation-16a9821a-900c-4cfd-b0b3-fba66a112846-2/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/20160831_131603.jpg,,TRUE, +N1,61001,sortie-bd9d3cff-f726-45d1-8c23-37a72829e6e7,https://biolit.fr/sorties/sortie-bd9d3cff-f726-45d1-8c23-37a72829e6e7/,Phil,,8/20/2016 0:00,10.0:45,10.0000000,47.877239000000,-3.93254900000,,Concarneau - Finistère,53498,observation-bd9d3cff-f726-45d1-8c23-37a72829e6e7,https://biolit.fr/observations/observation-bd9d3cff-f726-45d1-8c23-37a72829e6e7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_104747.jpg,,FALSE, +N1,61001,sortie-bd9d3cff-f726-45d1-8c23-37a72829e6e7,https://biolit.fr/sorties/sortie-bd9d3cff-f726-45d1-8c23-37a72829e6e7/,Phil,,8/20/2016 0:00,10.0:45,10.0000000,47.877239000000,-3.93254900000,,Concarneau - Finistère,53500,observation-bd9d3cff-f726-45d1-8c23-37a72829e6e7-2,https://biolit.fr/observations/observation-bd9d3cff-f726-45d1-8c23-37a72829e6e7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_104339.jpg,,FALSE, +N1,61002,sortie-1547dbd8-c9b4-4a26-867a-ca566067c876,https://biolit.fr/sorties/sortie-1547dbd8-c9b4-4a26-867a-ca566067c876/,Ecole de la mer,,08/01/2016,9.0000000,10.0000000,16.2154250000,-61.536946000000,,Ilet cochon,53502,observation-1547dbd8-c9b4-4a26-867a-ca566067c876,https://biolit.fr/observations/observation-1547dbd8-c9b4-4a26-867a-ca566067c876/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN1149-001.JPG,,FALSE, +N1,61003,sortie-68965a7e-b112-4327-afac-6d50b9dd647c,https://biolit.fr/sorties/sortie-68965a7e-b112-4327-afac-6d50b9dd647c/,Phil,,8/20/2016 0:00,11.000005,11.0000000,47.876955000000,-3.932702000000,,Concarneau - Finistère,53504,observation-68965a7e-b112-4327-afac-6d50b9dd647c,https://biolit.fr/observations/observation-68965a7e-b112-4327-afac-6d50b9dd647c/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_110801.jpg,,FALSE, +N1,61003,sortie-68965a7e-b112-4327-afac-6d50b9dd647c,https://biolit.fr/sorties/sortie-68965a7e-b112-4327-afac-6d50b9dd647c/,Phil,,8/20/2016 0:00,11.000005,11.0000000,47.876955000000,-3.932702000000,,Concarneau - Finistère,53506,observation-68965a7e-b112-4327-afac-6d50b9dd647c-2,https://biolit.fr/observations/observation-68965a7e-b112-4327-afac-6d50b9dd647c-2/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20160820_110752.jpg,,TRUE, +N1,61003,sortie-68965a7e-b112-4327-afac-6d50b9dd647c,https://biolit.fr/sorties/sortie-68965a7e-b112-4327-afac-6d50b9dd647c/,Phil,,8/20/2016 0:00,11.000005,11.0000000,47.876955000000,-3.932702000000,,Concarneau - Finistère,53508,observation-68965a7e-b112-4327-afac-6d50b9dd647c-3,https://biolit.fr/observations/observation-68965a7e-b112-4327-afac-6d50b9dd647c-3/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20160820_110751.jpg,,TRUE, +N1,61003,sortie-68965a7e-b112-4327-afac-6d50b9dd647c,https://biolit.fr/sorties/sortie-68965a7e-b112-4327-afac-6d50b9dd647c/,Phil,,8/20/2016 0:00,11.000005,11.0000000,47.876955000000,-3.932702000000,,Concarneau - Finistère,53510,observation-68965a7e-b112-4327-afac-6d50b9dd647c-4,https://biolit.fr/observations/observation-68965a7e-b112-4327-afac-6d50b9dd647c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_110740.jpg,,FALSE, +N1,61003,sortie-68965a7e-b112-4327-afac-6d50b9dd647c,https://biolit.fr/sorties/sortie-68965a7e-b112-4327-afac-6d50b9dd647c/,Phil,,8/20/2016 0:00,11.000005,11.0000000,47.876955000000,-3.932702000000,,Concarneau - Finistère,53512,observation-68965a7e-b112-4327-afac-6d50b9dd647c-5,https://biolit.fr/observations/observation-68965a7e-b112-4327-afac-6d50b9dd647c-5/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20160820_110714.jpg,,TRUE, +N1,61004,sortie-074d3dc1-e28b-4a98-b679-85a331adfe92,https://biolit.fr/sorties/sortie-074d3dc1-e28b-4a98-b679-85a331adfe92/,Ecole de la mer,,8/18/2016 0:00,9.0000000,10.0000000,45.279634000000,-4.237392000000,,Ilet cochon,53514,observation-074d3dc1-e28b-4a98-b679-85a331adfe92,https://biolit.fr/observations/observation-074d3dc1-e28b-4a98-b679-85a331adfe92/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0723-001.JPG,,FALSE, +N1,61005,sortie-ad567b89-093e-484f-93ee-8f74e65f02e8,https://biolit.fr/sorties/sortie-ad567b89-093e-484f-93ee-8f74e65f02e8/,Phil,,8/20/2016 0:00,11.0:15,11.0000000,47.87596100000,-3.930693000000,,Concarneau - Finistère,53516,observation-ad567b89-093e-484f-93ee-8f74e65f02e8,https://biolit.fr/observations/observation-ad567b89-093e-484f-93ee-8f74e65f02e8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_111832.jpg,,FALSE, +N1,61006,sortie-34b631ab-8e92-4ebe-93f0-6b14e647d008,https://biolit.fr/sorties/sortie-34b631ab-8e92-4ebe-93f0-6b14e647d008/,Ecole de la mer,,8/29/2016 0:00,15.0000000,17.0000000,16.215497000000,-61.537702000000,,ilet cochon ,53518,observation-34b631ab-8e92-4ebe-93f0-6b14e647d008,https://biolit.fr/observations/observation-34b631ab-8e92-4ebe-93f0-6b14e647d008/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0715-001.JPG,,FALSE, +N1,61007,sortie-6c99c3f8-78e2-4c0c-9b08-9a788531c7f6,https://biolit.fr/sorties/sortie-6c99c3f8-78e2-4c0c-9b08-9a788531c7f6/,Ecole de la mer,,8/18/2016 0:00,9.0000000,11.0000000,16.215559000000,-61.537059000000,,Ilet cochon ,53520,observation-6c99c3f8-78e2-4c0c-9b08-9a788531c7f6,https://biolit.fr/observations/observation-6c99c3f8-78e2-4c0c-9b08-9a788531c7f6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0730-001.JPG,,FALSE, +N1,61008,sortie-d44648aa-528d-4288-9251-6fdb87e554f2,https://biolit.fr/sorties/sortie-d44648aa-528d-4288-9251-6fdb87e554f2/,Nils,,8/28/2016 0:00,16.0000000,17.0000000,43.165973000000,5.605872000000,,Plage du Mugel,53522,observation-d44648aa-528d-4288-9251-6fdb87e554f2,https://biolit.fr/observations/observation-d44648aa-528d-4288-9251-6fdb87e554f2/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/20160828_155409.jpg,,TRUE, +N1,61008,sortie-d44648aa-528d-4288-9251-6fdb87e554f2,https://biolit.fr/sorties/sortie-d44648aa-528d-4288-9251-6fdb87e554f2/,Nils,,8/28/2016 0:00,16.0000000,17.0000000,43.165973000000,5.605872000000,,Plage du Mugel,53524,observation-d44648aa-528d-4288-9251-6fdb87e554f2-2,https://biolit.fr/observations/observation-d44648aa-528d-4288-9251-6fdb87e554f2-2/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/20160828_155433.jpg,,TRUE, +N1,61008,sortie-d44648aa-528d-4288-9251-6fdb87e554f2,https://biolit.fr/sorties/sortie-d44648aa-528d-4288-9251-6fdb87e554f2/,Nils,,8/28/2016 0:00,16.0000000,17.0000000,43.165973000000,5.605872000000,,Plage du Mugel,53526,observation-d44648aa-528d-4288-9251-6fdb87e554f2-3,https://biolit.fr/observations/observation-d44648aa-528d-4288-9251-6fdb87e554f2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160828_173615-rotated.jpg,,FALSE, +N1,61008,sortie-d44648aa-528d-4288-9251-6fdb87e554f2,https://biolit.fr/sorties/sortie-d44648aa-528d-4288-9251-6fdb87e554f2/,Nils,,8/28/2016 0:00,16.0000000,17.0000000,43.165973000000,5.605872000000,,Plage du Mugel,53528,observation-d44648aa-528d-4288-9251-6fdb87e554f2-4,https://biolit.fr/observations/observation-d44648aa-528d-4288-9251-6fdb87e554f2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160828_173745-rotated.jpg,,FALSE, +N1,61008,sortie-d44648aa-528d-4288-9251-6fdb87e554f2,https://biolit.fr/sorties/sortie-d44648aa-528d-4288-9251-6fdb87e554f2/,Nils,,8/28/2016 0:00,16.0000000,17.0000000,43.165973000000,5.605872000000,,Plage du Mugel,53530,observation-d44648aa-528d-4288-9251-6fdb87e554f2-5,https://biolit.fr/observations/observation-d44648aa-528d-4288-9251-6fdb87e554f2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160828_173955-rotated.jpg,,FALSE, +N1,61009,sortie-0b00a376-7158-4395-a8fe-a7bfae7aa7ea,https://biolit.fr/sorties/sortie-0b00a376-7158-4395-a8fe-a7bfae7aa7ea/,Nils,,8/27/2016 0:00,11.0000000,11.0000000,43.282079000000,5.305814000000,,Plage du Frioul,53532,observation-0b00a376-7158-4395-a8fe-a7bfae7aa7ea,https://biolit.fr/observations/observation-0b00a376-7158-4395-a8fe-a7bfae7aa7ea/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/2023/07/P1070181-scaled.jpeg,,TRUE, +N1,61009,sortie-0b00a376-7158-4395-a8fe-a7bfae7aa7ea,https://biolit.fr/sorties/sortie-0b00a376-7158-4395-a8fe-a7bfae7aa7ea/,Nils,,8/27/2016 0:00,11.0000000,11.0000000,43.282079000000,5.305814000000,,Plage du Frioul,53534,observation-0b00a376-7158-4395-a8fe-a7bfae7aa7ea-2,https://biolit.fr/observations/observation-0b00a376-7158-4395-a8fe-a7bfae7aa7ea-2/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/2023/07/P1070182-scaled.jpeg,,TRUE, +N1,61010,sortie-adc284d0-5ca8-4ea7-b46c-43e07547cf57,https://biolit.fr/sorties/sortie-adc284d0-5ca8-4ea7-b46c-43e07547cf57/,Phil,,8/20/2016 0:00,10.0000000,10.0:45,47.876551000000,-3.931409000000,,Concarneau - Finistère,53536,observation-adc284d0-5ca8-4ea7-b46c-43e07547cf57,https://biolit.fr/observations/observation-adc284d0-5ca8-4ea7-b46c-43e07547cf57/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_104113-scaled.jpg,,FALSE, +N1,61010,sortie-adc284d0-5ca8-4ea7-b46c-43e07547cf57,https://biolit.fr/sorties/sortie-adc284d0-5ca8-4ea7-b46c-43e07547cf57/,Phil,,8/20/2016 0:00,10.0000000,10.0:45,47.876551000000,-3.931409000000,,Concarneau - Finistère,53538,observation-adc284d0-5ca8-4ea7-b46c-43e07547cf57-2,https://biolit.fr/observations/observation-adc284d0-5ca8-4ea7-b46c-43e07547cf57-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_104137.jpg,,FALSE, +N1,61010,sortie-adc284d0-5ca8-4ea7-b46c-43e07547cf57,https://biolit.fr/sorties/sortie-adc284d0-5ca8-4ea7-b46c-43e07547cf57/,Phil,,8/20/2016 0:00,10.0000000,10.0:45,47.876551000000,-3.931409000000,,Concarneau - Finistère,53540,observation-adc284d0-5ca8-4ea7-b46c-43e07547cf57-3,https://biolit.fr/observations/observation-adc284d0-5ca8-4ea7-b46c-43e07547cf57-3/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/20160820_104012.jpg,,TRUE, +N1,61010,sortie-adc284d0-5ca8-4ea7-b46c-43e07547cf57,https://biolit.fr/sorties/sortie-adc284d0-5ca8-4ea7-b46c-43e07547cf57/,Phil,,8/20/2016 0:00,10.0000000,10.0:45,47.876551000000,-3.931409000000,,Concarneau - Finistère,53542,observation-adc284d0-5ca8-4ea7-b46c-43e07547cf57-4,https://biolit.fr/observations/observation-adc284d0-5ca8-4ea7-b46c-43e07547cf57-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160820_104130.jpg,,TRUE, +N1,61011,sortie-aa8f9c98-5f23-4dfe-9fdb-c6f621c4e1e8,https://biolit.fr/sorties/sortie-aa8f9c98-5f23-4dfe-9fdb-c6f621c4e1e8/,Phil,,8/20/2016 0:00,10.0000000,10.0:35,47.876502000000,-3.931315000000,,Concarneau - Finistère,53544,observation-aa8f9c98-5f23-4dfe-9fdb-c6f621c4e1e8,https://biolit.fr/observations/observation-aa8f9c98-5f23-4dfe-9fdb-c6f621c4e1e8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_103500.jpg,,FALSE, +N1,61011,sortie-aa8f9c98-5f23-4dfe-9fdb-c6f621c4e1e8,https://biolit.fr/sorties/sortie-aa8f9c98-5f23-4dfe-9fdb-c6f621c4e1e8/,Phil,,8/20/2016 0:00,10.0000000,10.0:35,47.876502000000,-3.931315000000,,Concarneau - Finistère,53546,observation-aa8f9c98-5f23-4dfe-9fdb-c6f621c4e1e8-2,https://biolit.fr/observations/observation-aa8f9c98-5f23-4dfe-9fdb-c6f621c4e1e8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_103558.jpg,,FALSE, +N1,61011,sortie-aa8f9c98-5f23-4dfe-9fdb-c6f621c4e1e8,https://biolit.fr/sorties/sortie-aa8f9c98-5f23-4dfe-9fdb-c6f621c4e1e8/,Phil,,8/20/2016 0:00,10.0000000,10.0:35,47.876502000000,-3.931315000000,,Concarneau - Finistère,53548,observation-aa8f9c98-5f23-4dfe-9fdb-c6f621c4e1e8-3,https://biolit.fr/observations/observation-aa8f9c98-5f23-4dfe-9fdb-c6f621c4e1e8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_103652.jpg,,FALSE, +N1,61012,sortie-15911e65-e691-4d55-b674-fba64bb384b2,https://biolit.fr/sorties/sortie-15911e65-e691-4d55-b674-fba64bb384b2/,Nils,,8/15/2016 0:00,16.0000000,16.0000000,43.188071000000,5.647363000000,,Plage d'Arène Cros,53550,observation-15911e65-e691-4d55-b674-fba64bb384b2,https://biolit.fr/observations/observation-15911e65-e691-4d55-b674-fba64bb384b2/,Ophioderma longicaudum,Ophiure lisse,,https://biolit.fr/wp-content/uploads/2023/07/20160814_163141-rotated.jpg,,TRUE, +N1,61012,sortie-15911e65-e691-4d55-b674-fba64bb384b2,https://biolit.fr/sorties/sortie-15911e65-e691-4d55-b674-fba64bb384b2/,Nils,,8/15/2016 0:00,16.0000000,16.0000000,43.188071000000,5.647363000000,,Plage d'Arène Cros,53552,observation-15911e65-e691-4d55-b674-fba64bb384b2-2,https://biolit.fr/observations/observation-15911e65-e691-4d55-b674-fba64bb384b2-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/20160814_165117.jpg,,TRUE, +N1,61013,sortie-cabc6eb2-8d3e-4763-801b-1f13456a1543,https://biolit.fr/sorties/sortie-cabc6eb2-8d3e-4763-801b-1f13456a1543/,cigale33,,08/10/2016,17.0000000,17.0:45,44.65643100000,-1.197119000000,,"Arcachon,",53554,observation-cabc6eb2-8d3e-4763-801b-1f13456a1543,https://biolit.fr/observations/observation-cabc6eb2-8d3e-4763-801b-1f13456a1543/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090746.JPG,,FALSE, +N1,61013,sortie-cabc6eb2-8d3e-4763-801b-1f13456a1543,https://biolit.fr/sorties/sortie-cabc6eb2-8d3e-4763-801b-1f13456a1543/,cigale33,,08/10/2016,17.0000000,17.0:45,44.65643100000,-1.197119000000,,"Arcachon,",53556,observation-cabc6eb2-8d3e-4763-801b-1f13456a1543-2,https://biolit.fr/observations/observation-cabc6eb2-8d3e-4763-801b-1f13456a1543-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1090745.JPG,,TRUE, +N1,61013,sortie-cabc6eb2-8d3e-4763-801b-1f13456a1543,https://biolit.fr/sorties/sortie-cabc6eb2-8d3e-4763-801b-1f13456a1543/,cigale33,,08/10/2016,17.0000000,17.0:45,44.65643100000,-1.197119000000,,"Arcachon,",53558,observation-cabc6eb2-8d3e-4763-801b-1f13456a1543-3,https://biolit.fr/observations/observation-cabc6eb2-8d3e-4763-801b-1f13456a1543-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090739.JPG,,FALSE, +N1,61013,sortie-cabc6eb2-8d3e-4763-801b-1f13456a1543,https://biolit.fr/sorties/sortie-cabc6eb2-8d3e-4763-801b-1f13456a1543/,cigale33,,08/10/2016,17.0000000,17.0:45,44.65643100000,-1.197119000000,,"Arcachon,",53560,observation-cabc6eb2-8d3e-4763-801b-1f13456a1543-4,https://biolit.fr/observations/observation-cabc6eb2-8d3e-4763-801b-1f13456a1543-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090744.JPG,,FALSE, +N1,61014,sortie-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8,https://biolit.fr/sorties/sortie-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8/,Jérémie,,7/30/2016 0:00,22.0000000,22.0000000,48.518544000000,-4.764908000000,,Porspoder,53562,observation-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8,https://biolit.fr/observations/observation-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5123-scaled.jpg,,FALSE, +N1,61014,sortie-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8,https://biolit.fr/sorties/sortie-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8/,Jérémie,,7/30/2016 0:00,22.0000000,22.0000000,48.518544000000,-4.764908000000,,Porspoder,53564,observation-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8-2,https://biolit.fr/observations/observation-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5124-scaled.jpg,,FALSE, +N1,61014,sortie-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8,https://biolit.fr/sorties/sortie-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8/,Jérémie,,7/30/2016 0:00,22.0000000,22.0000000,48.518544000000,-4.764908000000,,Porspoder,53566,observation-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8-3,https://biolit.fr/observations/observation-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5125-scaled.jpg,,FALSE, +N1,61014,sortie-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8,https://biolit.fr/sorties/sortie-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8/,Jérémie,,7/30/2016 0:00,22.0000000,22.0000000,48.518544000000,-4.764908000000,,Porspoder,53568,observation-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8-4,https://biolit.fr/observations/observation-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5126-scaled.jpg,,FALSE, +N1,61014,sortie-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8,https://biolit.fr/sorties/sortie-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8/,Jérémie,,7/30/2016 0:00,22.0000000,22.0000000,48.518544000000,-4.764908000000,,Porspoder,53570,observation-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8-5,https://biolit.fr/observations/observation-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8-5/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_5127-scaled.jpg,,TRUE, +N1,61014,sortie-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8,https://biolit.fr/sorties/sortie-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8/,Jérémie,,7/30/2016 0:00,22.0000000,22.0000000,48.518544000000,-4.764908000000,,Porspoder,53572,observation-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8-6,https://biolit.fr/observations/observation-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8-6/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_5128-scaled.jpg,,TRUE, +N1,61014,sortie-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8,https://biolit.fr/sorties/sortie-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8/,Jérémie,,7/30/2016 0:00,22.0000000,22.0000000,48.518544000000,-4.764908000000,,Porspoder,53574,observation-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8-7,https://biolit.fr/observations/observation-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8-7/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_5129-scaled.jpg,,TRUE, +N1,61014,sortie-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8,https://biolit.fr/sorties/sortie-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8/,Jérémie,,7/30/2016 0:00,22.0000000,22.0000000,48.518544000000,-4.764908000000,,Porspoder,53576,observation-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8-8,https://biolit.fr/observations/observation-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8-8/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_5130-scaled.jpg,,TRUE, +N1,61015,sortie-f50f9dbb-1852-4ae9-9640-32a2091a6d4c,https://biolit.fr/sorties/sortie-f50f9dbb-1852-4ae9-9640-32a2091a6d4c/,Nils,,7/30/2016 0:00,11.0000000,11.0000000,43.185185000000,5.621617000000,,"plage lumière, la ciotat",53578,observation-f50f9dbb-1852-4ae9-9640-32a2091a6d4c,https://biolit.fr/observations/observation-f50f9dbb-1852-4ae9-9640-32a2091a6d4c/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/2023/07/20160730_110405.jpg,,TRUE, +N1,61016,sortie-f86215bb-93f0-4003-bc18-65e871816a70,https://biolit.fr/sorties/sortie-f86215bb-93f0-4003-bc18-65e871816a70/,azelie,,07/11/2016,15.0:45,18.0:45,51.852824000000,-9.672578000000,,Kenmare Bay,53580,observation-f86215bb-93f0-4003-bc18-65e871816a70,https://biolit.fr/observations/observation-f86215bb-93f0-4003-bc18-65e871816a70/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_3905.JPG,,FALSE, +N1,61016,sortie-f86215bb-93f0-4003-bc18-65e871816a70,https://biolit.fr/sorties/sortie-f86215bb-93f0-4003-bc18-65e871816a70/,azelie,,07/11/2016,15.0:45,18.0:45,51.852824000000,-9.672578000000,,Kenmare Bay,53582,observation-f86215bb-93f0-4003-bc18-65e871816a70-2,https://biolit.fr/observations/observation-f86215bb-93f0-4003-bc18-65e871816a70-2/,Phoca vitulina,Phoque commun,,https://biolit.fr/wp-content/uploads/2023/07/100_3922-scaled.jpg,,TRUE, +N1,61016,sortie-f86215bb-93f0-4003-bc18-65e871816a70,https://biolit.fr/sorties/sortie-f86215bb-93f0-4003-bc18-65e871816a70/,azelie,,07/11/2016,15.0:45,18.0:45,51.852824000000,-9.672578000000,,Kenmare Bay,53584,observation-f86215bb-93f0-4003-bc18-65e871816a70-3,https://biolit.fr/observations/observation-f86215bb-93f0-4003-bc18-65e871816a70-3/,Phoca vitulina,Phoque commun,,https://biolit.fr/wp-content/uploads/2023/07/100_3937-scaled.jpg,,TRUE, +N1,61016,sortie-f86215bb-93f0-4003-bc18-65e871816a70,https://biolit.fr/sorties/sortie-f86215bb-93f0-4003-bc18-65e871816a70/,azelie,,07/11/2016,15.0:45,18.0:45,51.852824000000,-9.672578000000,,Kenmare Bay,53586,observation-f86215bb-93f0-4003-bc18-65e871816a70-4,https://biolit.fr/observations/observation-f86215bb-93f0-4003-bc18-65e871816a70-4/,Phoca vitulina,Phoque commun,,https://biolit.fr/wp-content/uploads/2023/07/100_3939.JPG,,TRUE, +N1,61016,sortie-f86215bb-93f0-4003-bc18-65e871816a70,https://biolit.fr/sorties/sortie-f86215bb-93f0-4003-bc18-65e871816a70/,azelie,,07/11/2016,15.0:45,18.0:45,51.852824000000,-9.672578000000,,Kenmare Bay,53588,observation-f86215bb-93f0-4003-bc18-65e871816a70-5,https://biolit.fr/observations/observation-f86215bb-93f0-4003-bc18-65e871816a70-5/,Phoca vitulina,Phoque commun,,https://biolit.fr/wp-content/uploads/2023/07/100_3940-scaled.jpg,,TRUE, +N1,61016,sortie-f86215bb-93f0-4003-bc18-65e871816a70,https://biolit.fr/sorties/sortie-f86215bb-93f0-4003-bc18-65e871816a70/,azelie,,07/11/2016,15.0:45,18.0:45,51.852824000000,-9.672578000000,,Kenmare Bay,53590,observation-f86215bb-93f0-4003-bc18-65e871816a70-6,https://biolit.fr/observations/observation-f86215bb-93f0-4003-bc18-65e871816a70-6/,Phoca vitulina,Phoque commun,,https://biolit.fr/wp-content/uploads/2023/07/100_3954-scaled.jpg,,TRUE, +N1,61016,sortie-f86215bb-93f0-4003-bc18-65e871816a70,https://biolit.fr/sorties/sortie-f86215bb-93f0-4003-bc18-65e871816a70/,azelie,,07/11/2016,15.0:45,18.0:45,51.852824000000,-9.672578000000,,Kenmare Bay,53592,observation-f86215bb-93f0-4003-bc18-65e871816a70-7,https://biolit.fr/observations/observation-f86215bb-93f0-4003-bc18-65e871816a70-7/,Phoca vitulina,Phoque commun,,https://biolit.fr/wp-content/uploads/2023/07/100_3932-scaled.jpg,,TRUE, +N1,61017,sortie-e6f83722-af0a-4302-9106-3ec1895ff8ea,https://biolit.fr/sorties/sortie-e6f83722-af0a-4302-9106-3ec1895ff8ea/,azelie,,07/05/2016,12.0000000,12.0000000,52.935473000000,-9.354489000000,,Lahinch beach,53594,observation-e6f83722-af0a-4302-9106-3ec1895ff8ea,https://biolit.fr/observations/observation-e6f83722-af0a-4302-9106-3ec1895ff8ea/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3179.jpg,,FALSE, +N1,61017,sortie-e6f83722-af0a-4302-9106-3ec1895ff8ea,https://biolit.fr/sorties/sortie-e6f83722-af0a-4302-9106-3ec1895ff8ea/,azelie,,07/05/2016,12.0000000,12.0000000,52.935473000000,-9.354489000000,,Lahinch beach,53596,observation-e6f83722-af0a-4302-9106-3ec1895ff8ea-2,https://biolit.fr/observations/observation-e6f83722-af0a-4302-9106-3ec1895ff8ea-2/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3183-scaled.jpg,,TRUE, +N1,61017,sortie-e6f83722-af0a-4302-9106-3ec1895ff8ea,https://biolit.fr/sorties/sortie-e6f83722-af0a-4302-9106-3ec1895ff8ea/,azelie,,07/05/2016,12.0000000,12.0000000,52.935473000000,-9.354489000000,,Lahinch beach,53598,observation-e6f83722-af0a-4302-9106-3ec1895ff8ea-3,https://biolit.fr/observations/observation-e6f83722-af0a-4302-9106-3ec1895ff8ea-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3180-scaled.jpg,,FALSE, +N1,61017,sortie-e6f83722-af0a-4302-9106-3ec1895ff8ea,https://biolit.fr/sorties/sortie-e6f83722-af0a-4302-9106-3ec1895ff8ea/,azelie,,07/05/2016,12.0000000,12.0000000,52.935473000000,-9.354489000000,,Lahinch beach,53600,observation-e6f83722-af0a-4302-9106-3ec1895ff8ea-4,https://biolit.fr/observations/observation-e6f83722-af0a-4302-9106-3ec1895ff8ea-4/,Donax vittatus,Donace des canards,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3196-scaled.jpg,,TRUE, +N1,61017,sortie-e6f83722-af0a-4302-9106-3ec1895ff8ea,https://biolit.fr/sorties/sortie-e6f83722-af0a-4302-9106-3ec1895ff8ea/,azelie,,07/05/2016,12.0000000,12.0000000,52.935473000000,-9.354489000000,,Lahinch beach,53602,observation-e6f83722-af0a-4302-9106-3ec1895ff8ea-5,https://biolit.fr/observations/observation-e6f83722-af0a-4302-9106-3ec1895ff8ea-5/,Donax vittatus,Donace des canards,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3195-scaled.jpg,,TRUE, +N1,61017,sortie-e6f83722-af0a-4302-9106-3ec1895ff8ea,https://biolit.fr/sorties/sortie-e6f83722-af0a-4302-9106-3ec1895ff8ea/,azelie,,07/05/2016,12.0000000,12.0000000,52.935473000000,-9.354489000000,,Lahinch beach,53604,observation-e6f83722-af0a-4302-9106-3ec1895ff8ea-6,https://biolit.fr/observations/observation-e6f83722-af0a-4302-9106-3ec1895ff8ea-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3202-scaled.jpg,,FALSE, +N1,61017,sortie-e6f83722-af0a-4302-9106-3ec1895ff8ea,https://biolit.fr/sorties/sortie-e6f83722-af0a-4302-9106-3ec1895ff8ea/,azelie,,07/05/2016,12.0000000,12.0000000,52.935473000000,-9.354489000000,,Lahinch beach,53605,observation-e6f83722-af0a-4302-9106-3ec1895ff8ea-7,https://biolit.fr/observations/observation-e6f83722-af0a-4302-9106-3ec1895ff8ea-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3189-scaled.jpg,,FALSE, +N1,61017,sortie-e6f83722-af0a-4302-9106-3ec1895ff8ea,https://biolit.fr/sorties/sortie-e6f83722-af0a-4302-9106-3ec1895ff8ea/,azelie,,07/05/2016,12.0000000,12.0000000,52.935473000000,-9.354489000000,,Lahinch beach,53606,observation-e6f83722-af0a-4302-9106-3ec1895ff8ea-8,https://biolit.fr/observations/observation-e6f83722-af0a-4302-9106-3ec1895ff8ea-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3191-scaled.jpg,,FALSE, +N1,61018,sortie-8c592ee3-136b-4633-8e72-5ef4a367df7a,https://biolit.fr/sorties/sortie-8c592ee3-136b-4633-8e72-5ef4a367df7a/,corinne vasseur,,8/19/2015 0:00,8.0000000,9.0000000,50.257974000000,1.582540000000,,Saint Quentin en tourmont,53607,observation-8c592ee3-136b-4633-8e72-5ef4a367df7a,https://biolit.fr/observations/observation-8c592ee3-136b-4633-8e72-5ef4a367df7a/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1377.JPG,,FALSE, +N1,61018,sortie-8c592ee3-136b-4633-8e72-5ef4a367df7a,https://biolit.fr/sorties/sortie-8c592ee3-136b-4633-8e72-5ef4a367df7a/,corinne vasseur,,8/19/2015 0:00,8.0000000,9.0000000,50.257974000000,1.582540000000,,Saint Quentin en tourmont,53609,observation-8c592ee3-136b-4633-8e72-5ef4a367df7a-2,https://biolit.fr/observations/observation-8c592ee3-136b-4633-8e72-5ef4a367df7a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1376.JPG,,FALSE, +N1,61019,sortie-6eb58645-fd55-4b02-8429-7b2c299b8777,https://biolit.fr/sorties/sortie-6eb58645-fd55-4b02-8429-7b2c299b8777/,corinne vasseur,,4/15/2015 0:00,19.0:45,20.0000000,50.595223000000,1.577701000000,,Plage du mont Saint Frieux Dannes,53611,observation-6eb58645-fd55-4b02-8429-7b2c299b8777,https://biolit.fr/observations/observation-6eb58645-fd55-4b02-8429-7b2c299b8777/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0392-scaled.jpg,,FALSE, +N1,61019,sortie-6eb58645-fd55-4b02-8429-7b2c299b8777,https://biolit.fr/sorties/sortie-6eb58645-fd55-4b02-8429-7b2c299b8777/,corinne vasseur,,4/15/2015 0:00,19.0:45,20.0000000,50.595223000000,1.577701000000,,Plage du mont Saint Frieux Dannes,53613,observation-6eb58645-fd55-4b02-8429-7b2c299b8777-2,https://biolit.fr/observations/observation-6eb58645-fd55-4b02-8429-7b2c299b8777-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0393-scaled.jpg,,FALSE, +N1,61020,sortie-b3633e8d-2cd4-4b56-adb5-e6812a287474,https://biolit.fr/sorties/sortie-b3633e8d-2cd4-4b56-adb5-e6812a287474/,Marine,,07/07/2016,12.0000000,16.0000000,48.639739000000,-2.077535000000,,Plage de la roche pelée ,53615,observation-b3633e8d-2cd4-4b56-adb5-e6812a287474,https://biolit.fr/observations/observation-b3633e8d-2cd4-4b56-adb5-e6812a287474/,,,,https://biolit.fr/wp-content/uploads/2023/07/image_55-scaled.jpeg,,FALSE, +N1,61021,sortie-f001a86c-8f77-4593-9921-92c4c2f53bba,https://biolit.fr/sorties/sortie-f001a86c-8f77-4593-9921-92c4c2f53bba/,Marine,,07/05/2016,18.0000000,20.0000000,48.638633000000,-2.069038000000,,Plage de Saint Enogat,53617,observation-f001a86c-8f77-4593-9921-92c4c2f53bba,https://biolit.fr/observations/observation-f001a86c-8f77-4593-9921-92c4c2f53bba/,,,,https://biolit.fr/wp-content/uploads/2023/07/image_53-scaled.jpeg,,FALSE, +N1,61022,sortie-c5008ec1-fa66-4159-b67b-870c14aaa906,https://biolit.fr/sorties/sortie-c5008ec1-fa66-4159-b67b-870c14aaa906/,Marine,,07/05/2016,9.0000000,10.0000000,48.638981000000,-2.067804000000,,Plage Saint Enognat,53619,observation-c5008ec1-fa66-4159-b67b-870c14aaa906,https://biolit.fr/observations/observation-c5008ec1-fa66-4159-b67b-870c14aaa906/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/image_51-scaled.jpeg,,TRUE, +N1,61023,sortie-e17e97cc-d7f8-4d42-ae02-8b353f0ac91d,https://biolit.fr/sorties/sortie-e17e97cc-d7f8-4d42-ae02-8b353f0ac91d/,herve laurent,,7/27/2016 0:00,21.0000000,23.0000000,48.397395000000,-4.966202000000,,molene,53621,observation-e17e97cc-d7f8-4d42-ae02-8b353f0ac91d,https://biolit.fr/observations/observation-e17e97cc-d7f8-4d42-ae02-8b353f0ac91d/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_4776-scaled.jpg,,FALSE, +N1,61023,sortie-e17e97cc-d7f8-4d42-ae02-8b353f0ac91d,https://biolit.fr/sorties/sortie-e17e97cc-d7f8-4d42-ae02-8b353f0ac91d/,herve laurent,,7/27/2016 0:00,21.0000000,23.0000000,48.397395000000,-4.966202000000,,molene,53623,observation-e17e97cc-d7f8-4d42-ae02-8b353f0ac91d-2,https://biolit.fr/observations/observation-e17e97cc-d7f8-4d42-ae02-8b353f0ac91d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_4774-scaled.jpg,,FALSE, +N1,61023,sortie-e17e97cc-d7f8-4d42-ae02-8b353f0ac91d,https://biolit.fr/sorties/sortie-e17e97cc-d7f8-4d42-ae02-8b353f0ac91d/,herve laurent,,7/27/2016 0:00,21.0000000,23.0000000,48.397395000000,-4.966202000000,,molene,53625,observation-e17e97cc-d7f8-4d42-ae02-8b353f0ac91d-3,https://biolit.fr/observations/observation-e17e97cc-d7f8-4d42-ae02-8b353f0ac91d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_4772-scaled.jpg,,FALSE, +N1,61023,sortie-e17e97cc-d7f8-4d42-ae02-8b353f0ac91d,https://biolit.fr/sorties/sortie-e17e97cc-d7f8-4d42-ae02-8b353f0ac91d/,herve laurent,,7/27/2016 0:00,21.0000000,23.0000000,48.397395000000,-4.966202000000,,molene,53627,observation-e17e97cc-d7f8-4d42-ae02-8b353f0ac91d-4,https://biolit.fr/observations/observation-e17e97cc-d7f8-4d42-ae02-8b353f0ac91d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_4771_1-scaled.jpg,,FALSE, +N1,61024,sortie-93d7ac58-6d77-4c87-9c02-a445b4226860,https://biolit.fr/sorties/sortie-93d7ac58-6d77-4c87-9c02-a445b4226860/,azelie,,07/05/2016,11.0000000,11.0:45,52.934800000000,-9.352429000000,,Lahinch beach,53629,observation-93d7ac58-6d77-4c87-9c02-a445b4226860,https://biolit.fr/observations/observation-93d7ac58-6d77-4c87-9c02-a445b4226860/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3138-scaled.jpg,,FALSE, +N1,61024,sortie-93d7ac58-6d77-4c87-9c02-a445b4226860,https://biolit.fr/sorties/sortie-93d7ac58-6d77-4c87-9c02-a445b4226860/,azelie,,07/05/2016,11.0000000,11.0:45,52.934800000000,-9.352429000000,,Lahinch beach,53631,observation-93d7ac58-6d77-4c87-9c02-a445b4226860-2,https://biolit.fr/observations/observation-93d7ac58-6d77-4c87-9c02-a445b4226860-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3139-scaled.jpg,,FALSE, +N1,61024,sortie-93d7ac58-6d77-4c87-9c02-a445b4226860,https://biolit.fr/sorties/sortie-93d7ac58-6d77-4c87-9c02-a445b4226860/,azelie,,07/05/2016,11.0000000,11.0:45,52.934800000000,-9.352429000000,,Lahinch beach,53633,observation-93d7ac58-6d77-4c87-9c02-a445b4226860-3,https://biolit.fr/observations/observation-93d7ac58-6d77-4c87-9c02-a445b4226860-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3143.JPG,,FALSE, +N1,61024,sortie-93d7ac58-6d77-4c87-9c02-a445b4226860,https://biolit.fr/sorties/sortie-93d7ac58-6d77-4c87-9c02-a445b4226860/,azelie,,07/05/2016,11.0000000,11.0:45,52.934800000000,-9.352429000000,,Lahinch beach,53634,observation-93d7ac58-6d77-4c87-9c02-a445b4226860-4,https://biolit.fr/observations/observation-93d7ac58-6d77-4c87-9c02-a445b4226860-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3146.JPG,,FALSE, +N1,61024,sortie-93d7ac58-6d77-4c87-9c02-a445b4226860,https://biolit.fr/sorties/sortie-93d7ac58-6d77-4c87-9c02-a445b4226860/,azelie,,07/05/2016,11.0000000,11.0:45,52.934800000000,-9.352429000000,,Lahinch beach,53635,observation-93d7ac58-6d77-4c87-9c02-a445b4226860-5,https://biolit.fr/observations/observation-93d7ac58-6d77-4c87-9c02-a445b4226860-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3147-scaled.jpg,,FALSE, +N1,61024,sortie-93d7ac58-6d77-4c87-9c02-a445b4226860,https://biolit.fr/sorties/sortie-93d7ac58-6d77-4c87-9c02-a445b4226860/,azelie,,07/05/2016,11.0000000,11.0:45,52.934800000000,-9.352429000000,,Lahinch beach,53636,observation-93d7ac58-6d77-4c87-9c02-a445b4226860-6,https://biolit.fr/observations/observation-93d7ac58-6d77-4c87-9c02-a445b4226860-6/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3152.JPG,,TRUE, +N1,61024,sortie-93d7ac58-6d77-4c87-9c02-a445b4226860,https://biolit.fr/sorties/sortie-93d7ac58-6d77-4c87-9c02-a445b4226860/,azelie,,07/05/2016,11.0000000,11.0:45,52.934800000000,-9.352429000000,,Lahinch beach,53637,observation-93d7ac58-6d77-4c87-9c02-a445b4226860-7,https://biolit.fr/observations/observation-93d7ac58-6d77-4c87-9c02-a445b4226860-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3153.JPG,,FALSE, +N1,61024,sortie-93d7ac58-6d77-4c87-9c02-a445b4226860,https://biolit.fr/sorties/sortie-93d7ac58-6d77-4c87-9c02-a445b4226860/,azelie,,07/05/2016,11.0000000,11.0:45,52.934800000000,-9.352429000000,,Lahinch beach,53638,observation-93d7ac58-6d77-4c87-9c02-a445b4226860-8,https://biolit.fr/observations/observation-93d7ac58-6d77-4c87-9c02-a445b4226860-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3160.JPG,,FALSE, +N1,61024,sortie-93d7ac58-6d77-4c87-9c02-a445b4226860,https://biolit.fr/sorties/sortie-93d7ac58-6d77-4c87-9c02-a445b4226860/,azelie,,07/05/2016,11.0000000,11.0:45,52.934800000000,-9.352429000000,,Lahinch beach,53639,observation-93d7ac58-6d77-4c87-9c02-a445b4226860-9,https://biolit.fr/observations/observation-93d7ac58-6d77-4c87-9c02-a445b4226860-9/,Saccharina latissima,Laminaire sucrée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3165-scaled.jpg,,TRUE, +N1,61024,sortie-93d7ac58-6d77-4c87-9c02-a445b4226860,https://biolit.fr/sorties/sortie-93d7ac58-6d77-4c87-9c02-a445b4226860/,azelie,,07/05/2016,11.0000000,11.0:45,52.934800000000,-9.352429000000,,Lahinch beach,53640,observation-93d7ac58-6d77-4c87-9c02-a445b4226860-10,https://biolit.fr/observations/observation-93d7ac58-6d77-4c87-9c02-a445b4226860-10/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_3167.JPG,,TRUE, +N1,61024,sortie-93d7ac58-6d77-4c87-9c02-a445b4226860,https://biolit.fr/sorties/sortie-93d7ac58-6d77-4c87-9c02-a445b4226860/,azelie,,07/05/2016,11.0000000,11.0:45,52.934800000000,-9.352429000000,,Lahinch beach,53641,observation-93d7ac58-6d77-4c87-9c02-a445b4226860-11,https://biolit.fr/observations/observation-93d7ac58-6d77-4c87-9c02-a445b4226860-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3172.JPG,,FALSE, +N1,61024,sortie-93d7ac58-6d77-4c87-9c02-a445b4226860,https://biolit.fr/sorties/sortie-93d7ac58-6d77-4c87-9c02-a445b4226860/,azelie,,07/05/2016,11.0000000,11.0:45,52.934800000000,-9.352429000000,,Lahinch beach,53642,observation-93d7ac58-6d77-4c87-9c02-a445b4226860-12,https://biolit.fr/observations/observation-93d7ac58-6d77-4c87-9c02-a445b4226860-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3174-scaled.jpg,,FALSE, +N1,61024,sortie-93d7ac58-6d77-4c87-9c02-a445b4226860,https://biolit.fr/sorties/sortie-93d7ac58-6d77-4c87-9c02-a445b4226860/,azelie,,07/05/2016,11.0000000,11.0:45,52.934800000000,-9.352429000000,,Lahinch beach,53643,observation-93d7ac58-6d77-4c87-9c02-a445b4226860-13,https://biolit.fr/observations/observation-93d7ac58-6d77-4c87-9c02-a445b4226860-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3175.JPG,,FALSE, +N1,61024,sortie-93d7ac58-6d77-4c87-9c02-a445b4226860,https://biolit.fr/sorties/sortie-93d7ac58-6d77-4c87-9c02-a445b4226860/,azelie,,07/05/2016,11.0000000,11.0:45,52.934800000000,-9.352429000000,,Lahinch beach,53644,observation-93d7ac58-6d77-4c87-9c02-a445b4226860-14,https://biolit.fr/observations/observation-93d7ac58-6d77-4c87-9c02-a445b4226860-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3176.JPG,,FALSE, +N1,61025,sortie-694cc896-adc1-4777-a828-70185db8e2ac,https://biolit.fr/sorties/sortie-694cc896-adc1-4777-a828-70185db8e2ac/,azelie,,07/11/2016,13.0000000,13.0:55,51.873363000000,-9.59125300000,,Kenmare pier,53645,observation-694cc896-adc1-4777-a828-70185db8e2ac,https://biolit.fr/observations/observation-694cc896-adc1-4777-a828-70185db8e2ac/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3460-scaled.jpg,,TRUE, +N1,61025,sortie-694cc896-adc1-4777-a828-70185db8e2ac,https://biolit.fr/sorties/sortie-694cc896-adc1-4777-a828-70185db8e2ac/,azelie,,07/11/2016,13.0000000,13.0:55,51.873363000000,-9.59125300000,,Kenmare pier,53647,observation-694cc896-adc1-4777-a828-70185db8e2ac-2,https://biolit.fr/observations/observation-694cc896-adc1-4777-a828-70185db8e2ac-2/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3462-scaled.jpg,,TRUE, +N1,61025,sortie-694cc896-adc1-4777-a828-70185db8e2ac,https://biolit.fr/sorties/sortie-694cc896-adc1-4777-a828-70185db8e2ac/,azelie,,07/11/2016,13.0000000,13.0:55,51.873363000000,-9.59125300000,,Kenmare pier,53649,observation-694cc896-adc1-4777-a828-70185db8e2ac-3,https://biolit.fr/observations/observation-694cc896-adc1-4777-a828-70185db8e2ac-3/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3464-scaled.jpg,,TRUE, +N1,61025,sortie-694cc896-adc1-4777-a828-70185db8e2ac,https://biolit.fr/sorties/sortie-694cc896-adc1-4777-a828-70185db8e2ac/,azelie,,07/11/2016,13.0000000,13.0:55,51.873363000000,-9.59125300000,,Kenmare pier,53651,observation-694cc896-adc1-4777-a828-70185db8e2ac-4,https://biolit.fr/observations/observation-694cc896-adc1-4777-a828-70185db8e2ac-4/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3465-scaled.jpg,,TRUE, +N1,61025,sortie-694cc896-adc1-4777-a828-70185db8e2ac,https://biolit.fr/sorties/sortie-694cc896-adc1-4777-a828-70185db8e2ac/,azelie,,07/11/2016,13.0000000,13.0:55,51.873363000000,-9.59125300000,,Kenmare pier,53653,observation-694cc896-adc1-4777-a828-70185db8e2ac-5,https://biolit.fr/observations/observation-694cc896-adc1-4777-a828-70185db8e2ac-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3466-scaled.jpg,,FALSE, +N1,61025,sortie-694cc896-adc1-4777-a828-70185db8e2ac,https://biolit.fr/sorties/sortie-694cc896-adc1-4777-a828-70185db8e2ac/,azelie,,07/11/2016,13.0000000,13.0:55,51.873363000000,-9.59125300000,,Kenmare pier,53655,observation-694cc896-adc1-4777-a828-70185db8e2ac-6,https://biolit.fr/observations/observation-694cc896-adc1-4777-a828-70185db8e2ac-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3470-scaled.jpg,,FALSE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53657,observation-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9440_0.JPG,,FALSE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53659,observation-559b3998-6392-40f0-ae00-f5499b41741e-2,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e-2/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9442_0.JPG,,TRUE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53661,observation-559b3998-6392-40f0-ae00-f5499b41741e-3,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9445_0.JPG,,FALSE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53663,observation-559b3998-6392-40f0-ae00-f5499b41741e-4,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e-4/,Aporrhais pespelecani,Pied de pélican commun,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9532_0.JPG,,TRUE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53665,observation-559b3998-6392-40f0-ae00-f5499b41741e-5,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e-5/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9535_0.JPG,,TRUE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53667,observation-559b3998-6392-40f0-ae00-f5499b41741e-6,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e-6/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9381_0.JPG,,TRUE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53669,observation-559b3998-6392-40f0-ae00-f5499b41741e-7,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e-7/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9382.JPG,,TRUE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53671,observation-559b3998-6392-40f0-ae00-f5499b41741e-8,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e-8/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9384_0.JPG,,TRUE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53673,observation-559b3998-6392-40f0-ae00-f5499b41741e-9,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9510_0.JPG,,FALSE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53675,observation-559b3998-6392-40f0-ae00-f5499b41741e-10,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9430_0.JPG,,FALSE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53677,observation-559b3998-6392-40f0-ae00-f5499b41741e-11,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9444_0.JPG,,FALSE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53679,observation-559b3998-6392-40f0-ae00-f5499b41741e-12,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e-12/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9528_0.JPG,,TRUE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53681,observation-559b3998-6392-40f0-ae00-f5499b41741e-13,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9518_0.JPG,,FALSE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53683,observation-559b3998-6392-40f0-ae00-f5499b41741e-14,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9514_0.JPG,,FALSE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53685,observation-559b3998-6392-40f0-ae00-f5499b41741e-15,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9451_0.JPG,,FALSE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53687,observation-559b3998-6392-40f0-ae00-f5499b41741e-16,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e-16/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9431_1.JPG,,TRUE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53689,observation-559b3998-6392-40f0-ae00-f5499b41741e-17,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e-17/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9436_0.JPG,,TRUE, +N1,61027,sortie-fed8d906-f924-4526-998e-96efce7d48d1,https://biolit.fr/sorties/sortie-fed8d906-f924-4526-998e-96efce7d48d1/,cigale33,,7/19/2016 0:00,9.0000000,11.0000000,44.653429000000,-1.197194000000,,"Arcachon,",53691,observation-fed8d906-f924-4526-998e-96efce7d48d1,https://biolit.fr/observations/observation-fed8d906-f924-4526-998e-96efce7d48d1/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0587.JPG,,FALSE, +N1,61027,sortie-fed8d906-f924-4526-998e-96efce7d48d1,https://biolit.fr/sorties/sortie-fed8d906-f924-4526-998e-96efce7d48d1/,cigale33,,7/19/2016 0:00,9.0000000,11.0000000,44.653429000000,-1.197194000000,,"Arcachon,",53693,observation-fed8d906-f924-4526-998e-96efce7d48d1-2,https://biolit.fr/observations/observation-fed8d906-f924-4526-998e-96efce7d48d1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0590.JPG,,FALSE, +N1,61027,sortie-fed8d906-f924-4526-998e-96efce7d48d1,https://biolit.fr/sorties/sortie-fed8d906-f924-4526-998e-96efce7d48d1/,cigale33,,7/19/2016 0:00,9.0000000,11.0000000,44.653429000000,-1.197194000000,,"Arcachon,",53695,observation-fed8d906-f924-4526-998e-96efce7d48d1-3,https://biolit.fr/observations/observation-fed8d906-f924-4526-998e-96efce7d48d1-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0592.JPG,,FALSE, +N1,61027,sortie-fed8d906-f924-4526-998e-96efce7d48d1,https://biolit.fr/sorties/sortie-fed8d906-f924-4526-998e-96efce7d48d1/,cigale33,,7/19/2016 0:00,9.0000000,11.0000000,44.653429000000,-1.197194000000,,"Arcachon,",53697,observation-fed8d906-f924-4526-998e-96efce7d48d1-4,https://biolit.fr/observations/observation-fed8d906-f924-4526-998e-96efce7d48d1-4/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0588.JPG,,TRUE, +N1,61027,sortie-fed8d906-f924-4526-998e-96efce7d48d1,https://biolit.fr/sorties/sortie-fed8d906-f924-4526-998e-96efce7d48d1/,cigale33,,7/19/2016 0:00,9.0000000,11.0000000,44.653429000000,-1.197194000000,,"Arcachon,",53699,observation-fed8d906-f924-4526-998e-96efce7d48d1-5,https://biolit.fr/observations/observation-fed8d906-f924-4526-998e-96efce7d48d1-5/,Antalis vulgaris,Dentale,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0589.JPG,,TRUE, +N1,61028,sortie-0b4bf9ad-c659-4f27-a2dc-dfcd0ab618c5,https://biolit.fr/sorties/sortie-0b4bf9ad-c659-4f27-a2dc-dfcd0ab618c5/,Marine,,07/05/2016,9.0000000,11.0000000,50.829664000000,1.58983600000,,Plage du Noirda,53701,observation-0b4bf9ad-c659-4f27-a2dc-dfcd0ab618c5,https://biolit.fr/observations/observation-0b4bf9ad-c659-4f27-a2dc-dfcd0ab618c5/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1479-scaled.jpg,,TRUE, +N1,61029,sortie-d9c6f308-4057-4bea-bf24-bdf06bf70306,https://biolit.fr/sorties/sortie-d9c6f308-4057-4bea-bf24-bdf06bf70306/,Marine,,7/13/2016 0:00,10.0000000,12.0000000,43.154019000000,6.481817000000,,Plage du Domaine du Rayol,53703,observation-d9c6f308-4057-4bea-bf24-bdf06bf70306,https://biolit.fr/observations/observation-d9c6f308-4057-4bea-bf24-bdf06bf70306/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1540-scaled.jpg,,FALSE, +N1,61029,sortie-d9c6f308-4057-4bea-bf24-bdf06bf70306,https://biolit.fr/sorties/sortie-d9c6f308-4057-4bea-bf24-bdf06bf70306/,Marine,,7/13/2016 0:00,10.0000000,12.0000000,43.154019000000,6.481817000000,,Plage du Domaine du Rayol,53705,observation-d9c6f308-4057-4bea-bf24-bdf06bf70306-2,https://biolit.fr/observations/observation-d9c6f308-4057-4bea-bf24-bdf06bf70306-2/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1541-scaled.jpg,,TRUE, +N1,61029,sortie-d9c6f308-4057-4bea-bf24-bdf06bf70306,https://biolit.fr/sorties/sortie-d9c6f308-4057-4bea-bf24-bdf06bf70306/,Marine,,7/13/2016 0:00,10.0000000,12.0000000,43.154019000000,6.481817000000,,Plage du Domaine du Rayol,53707,observation-d9c6f308-4057-4bea-bf24-bdf06bf70306-3,https://biolit.fr/observations/observation-d9c6f308-4057-4bea-bf24-bdf06bf70306-3/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1543-scaled.jpg,,TRUE, +N1,61029,sortie-d9c6f308-4057-4bea-bf24-bdf06bf70306,https://biolit.fr/sorties/sortie-d9c6f308-4057-4bea-bf24-bdf06bf70306/,Marine,,7/13/2016 0:00,10.0000000,12.0000000,43.154019000000,6.481817000000,,Plage du Domaine du Rayol,53709,observation-d9c6f308-4057-4bea-bf24-bdf06bf70306-4,https://biolit.fr/observations/observation-d9c6f308-4057-4bea-bf24-bdf06bf70306-4/,Stramonita haemastoma,Bouche de sang,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1544-scaled.jpg,,TRUE, +N1,61029,sortie-d9c6f308-4057-4bea-bf24-bdf06bf70306,https://biolit.fr/sorties/sortie-d9c6f308-4057-4bea-bf24-bdf06bf70306/,Marine,,7/13/2016 0:00,10.0000000,12.0000000,43.154019000000,6.481817000000,,Plage du Domaine du Rayol,53711,observation-d9c6f308-4057-4bea-bf24-bdf06bf70306-5,https://biolit.fr/observations/observation-d9c6f308-4057-4bea-bf24-bdf06bf70306-5/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1545-scaled.jpg,,TRUE, +N1,61029,sortie-d9c6f308-4057-4bea-bf24-bdf06bf70306,https://biolit.fr/sorties/sortie-d9c6f308-4057-4bea-bf24-bdf06bf70306/,Marine,,7/13/2016 0:00,10.0000000,12.0000000,43.154019000000,6.481817000000,,Plage du Domaine du Rayol,53713,observation-d9c6f308-4057-4bea-bf24-bdf06bf70306-6,https://biolit.fr/observations/observation-d9c6f308-4057-4bea-bf24-bdf06bf70306-6/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1546-scaled.jpg,,TRUE, +N1,61029,sortie-d9c6f308-4057-4bea-bf24-bdf06bf70306,https://biolit.fr/sorties/sortie-d9c6f308-4057-4bea-bf24-bdf06bf70306/,Marine,,7/13/2016 0:00,10.0000000,12.0000000,43.154019000000,6.481817000000,,Plage du Domaine du Rayol,53715,observation-d9c6f308-4057-4bea-bf24-bdf06bf70306-7,https://biolit.fr/observations/observation-d9c6f308-4057-4bea-bf24-bdf06bf70306-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1547-scaled.jpg,,FALSE, +N1,61030,sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5,https://biolit.fr/sorties/sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5/,cigale33,,7/18/2016 0:00,17.0000000,19.0000000,44.650242000000,-1.19772500000,,"Arcachon, ",53717,observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5,https://biolit.fr/observations/observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090661.JPG,,FALSE, +N1,61030,sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5,https://biolit.fr/sorties/sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5/,cigale33,,7/18/2016 0:00,17.0000000,19.0000000,44.650242000000,-1.19772500000,,"Arcachon, ",53719,observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5-2,https://biolit.fr/observations/observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090667.JPG,,FALSE, +N1,61030,sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5,https://biolit.fr/sorties/sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5/,cigale33,,7/18/2016 0:00,17.0000000,19.0000000,44.650242000000,-1.19772500000,,"Arcachon, ",53721,observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5-3,https://biolit.fr/observations/observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5-3/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1090663.JPG,,TRUE, +N1,61030,sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5,https://biolit.fr/sorties/sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5/,cigale33,,7/18/2016 0:00,17.0000000,19.0000000,44.650242000000,-1.19772500000,,"Arcachon, ",53723,observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5-4,https://biolit.fr/observations/observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5-4/,Lanice conchilega,Lanice,,https://biolit.fr/wp-content/uploads/2023/07/P1090673.JPG,,TRUE, +N1,61030,sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5,https://biolit.fr/sorties/sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5/,cigale33,,7/18/2016 0:00,17.0000000,19.0000000,44.650242000000,-1.19772500000,,"Arcachon, ",53725,observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5-5,https://biolit.fr/observations/observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090671.JPG,,FALSE, +N1,61030,sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5,https://biolit.fr/sorties/sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5/,cigale33,,7/18/2016 0:00,17.0000000,19.0000000,44.650242000000,-1.19772500000,,"Arcachon, ",53727,observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5-6,https://biolit.fr/observations/observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5-6/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/P1090679.JPG,,TRUE, +N1,61030,sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5,https://biolit.fr/sorties/sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5/,cigale33,,7/18/2016 0:00,17.0000000,19.0000000,44.650242000000,-1.19772500000,,"Arcachon, ",53729,observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5-7,https://biolit.fr/observations/observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5-7/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/P1090677.JPG,,TRUE, +N1,61030,sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5,https://biolit.fr/sorties/sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5/,cigale33,,7/18/2016 0:00,17.0000000,19.0000000,44.650242000000,-1.19772500000,,"Arcachon, ",53731,observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5-8,https://biolit.fr/observations/observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5-8/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1090680.JPG,,TRUE, +N1,61030,sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5,https://biolit.fr/sorties/sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5/,cigale33,,7/18/2016 0:00,17.0000000,19.0000000,44.650242000000,-1.19772500000,,"Arcachon, ",53733,observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5-9,https://biolit.fr/observations/observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5-9/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1090686.JPG,,TRUE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53735,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3494.jpg,,FALSE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53737,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-2,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3495.jpg,,FALSE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53739,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-3,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-3/,Patella pellucida,Helcion,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3496.jpg,,TRUE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53741,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-4,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-4/,Patella pellucida,Helcion,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3497.jpg,,TRUE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53743,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-5,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-5/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3498.jpg,,TRUE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53745,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-6,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-6/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_3500.jpg,,TRUE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53747,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-7,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3502.jpg,,FALSE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53749,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-8,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-8/,Donax vittatus,Donace des canards,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3507-scaled.jpg,,TRUE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53751,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-9,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3506-scaled.jpg,,FALSE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53753,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-10,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-10/,Macomangulus tenuis,Telline-papillon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3504-scaled.jpg,,TRUE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53755,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-11,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3508-scaled.jpg,,FALSE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53757,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-12,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-12/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3509-scaled.jpg,,TRUE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53759,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-13,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-13/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_3510-scaled.jpg,,TRUE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53761,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-14,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3511-scaled.jpg,,FALSE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53763,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-15,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3512-scaled.jpg,,FALSE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53765,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-16,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-16/,Trivia arctica,Grain de café rose,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3513-scaled.jpg,,TRUE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53767,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-17,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3514-scaled.jpg,,FALSE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53769,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-18,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-18/,Patella pellucida,Helcion,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3515-scaled.jpg,,TRUE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53771,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-19,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3516.jpg,,FALSE, +N1,61032,sortie-7c10df96-6b21-47ec-9342-36ca76a428cd,https://biolit.fr/sorties/sortie-7c10df96-6b21-47ec-9342-36ca76a428cd/,azelie,,07/07/2016,12.0:45,14.0:45,52.603958000000,-9.560826000000,,Shannon,53773,observation-7c10df96-6b21-47ec-9342-36ca76a428cd,https://biolit.fr/observations/observation-7c10df96-6b21-47ec-9342-36ca76a428cd/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3298.jpg,,TRUE, +N1,61032,sortie-7c10df96-6b21-47ec-9342-36ca76a428cd,https://biolit.fr/sorties/sortie-7c10df96-6b21-47ec-9342-36ca76a428cd/,azelie,,07/07/2016,12.0:45,14.0:45,52.603958000000,-9.560826000000,,Shannon,53775,observation-7c10df96-6b21-47ec-9342-36ca76a428cd-2,https://biolit.fr/observations/observation-7c10df96-6b21-47ec-9342-36ca76a428cd-2/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3295.jpg,,TRUE, +N1,61032,sortie-7c10df96-6b21-47ec-9342-36ca76a428cd,https://biolit.fr/sorties/sortie-7c10df96-6b21-47ec-9342-36ca76a428cd/,azelie,,07/07/2016,12.0:45,14.0:45,52.603958000000,-9.560826000000,,Shannon,53777,observation-7c10df96-6b21-47ec-9342-36ca76a428cd-3,https://biolit.fr/observations/observation-7c10df96-6b21-47ec-9342-36ca76a428cd-3/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3315.jpg,,TRUE, +N1,61032,sortie-7c10df96-6b21-47ec-9342-36ca76a428cd,https://biolit.fr/sorties/sortie-7c10df96-6b21-47ec-9342-36ca76a428cd/,azelie,,07/07/2016,12.0:45,14.0:45,52.603958000000,-9.560826000000,,Shannon,53779,observation-7c10df96-6b21-47ec-9342-36ca76a428cd-4,https://biolit.fr/observations/observation-7c10df96-6b21-47ec-9342-36ca76a428cd-4/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3361-scaled.jpg,,TRUE, +N1,61032,sortie-7c10df96-6b21-47ec-9342-36ca76a428cd,https://biolit.fr/sorties/sortie-7c10df96-6b21-47ec-9342-36ca76a428cd/,azelie,,07/07/2016,12.0:45,14.0:45,52.603958000000,-9.560826000000,,Shannon,53781,observation-7c10df96-6b21-47ec-9342-36ca76a428cd-5,https://biolit.fr/observations/observation-7c10df96-6b21-47ec-9342-36ca76a428cd-5/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3312-scaled.jpg,,TRUE, +N1,61033,sortie-8d5bbe61-a138-4bbd-b9be-7b372e2f4dae,https://biolit.fr/sorties/sortie-8d5bbe61-a138-4bbd-b9be-7b372e2f4dae/,azelie,,7/14/2016 0:00,17.0000000,17.0000000,51.631470000000,-10.05795700000,,Allihies strand,53783,observation-8d5bbe61-a138-4bbd-b9be-7b372e2f4dae,https://biolit.fr/observations/observation-8d5bbe61-a138-4bbd-b9be-7b372e2f4dae/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_3566-scaled.jpg,,TRUE, +N1,61034,sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a,https://biolit.fr/sorties/sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a/,Earthforce FS,,6/26/2016 0:00,11.0000000,16.0000000,16.174790000000,-61.110823000000,,Petite Terre Guadeloupe,53785,observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a,https://biolit.fr/observations/observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a/,Aetobatus narinari,Raie léopard,,https://biolit.fr/wp-content/uploads/2023/07/13510754_1233006933399741_8403715400514500031_n.jpg,,TRUE, +N1,61034,sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a,https://biolit.fr/sorties/sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a/,Earthforce FS,,6/26/2016 0:00,11.0000000,16.0000000,16.174790000000,-61.110823000000,,Petite Terre Guadeloupe,53787,observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a-2,https://biolit.fr/observations/observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a-2/,Dasyatis americana,Pastenague américaine,,https://biolit.fr/wp-content/uploads/2023/07/13439048_1233032496730518_5084894505906659642_n.jpg,,TRUE, +N1,61034,sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a,https://biolit.fr/sorties/sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a/,Earthforce FS,,6/26/2016 0:00,11.0000000,16.0000000,16.174790000000,-61.110823000000,,Petite Terre Guadeloupe,53789,observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a-3,https://biolit.fr/observations/observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a-3/,Chelonia mydas,Tortue verte,,https://biolit.fr/wp-content/uploads/2023/07/13537528_1233411710025930_9126236353857862497_n.jpg,,TRUE, +N1,61034,sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a,https://biolit.fr/sorties/sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a/,Earthforce FS,,6/26/2016 0:00,11.0000000,16.0000000,16.174790000000,-61.110823000000,,Petite Terre Guadeloupe,53791,observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a-4,https://biolit.fr/observations/observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a-4/,Chelonia mydas,Tortue verte,,https://biolit.fr/wp-content/uploads/2023/07/13507177_1233033343397100_1785243646696473690_n.jpg,,TRUE, +N1,61034,sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a,https://biolit.fr/sorties/sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a/,Earthforce FS,,6/26/2016 0:00,11.0000000,16.0000000,16.174790000000,-61.110823000000,,Petite Terre Guadeloupe,53793,observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a-5,https://biolit.fr/observations/observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a-5/,Chelonia mydas,Tortue verte,,https://biolit.fr/wp-content/uploads/2023/07/13532977_1233407506693017_536539331473884756_n.jpg,,TRUE, +N1,61034,sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a,https://biolit.fr/sorties/sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a/,Earthforce FS,,6/26/2016 0:00,11.0000000,16.0000000,16.174790000000,-61.110823000000,,Petite Terre Guadeloupe,53795,observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a-6,https://biolit.fr/observations/observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a-6/,Tripneustes ventricosus,Oursin blanc,,https://biolit.fr/wp-content/uploads/2023/07/13512067_1233010910066010_7199065831972113885_n.jpg,,TRUE, +N1,61034,sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a,https://biolit.fr/sorties/sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a/,Earthforce FS,,6/26/2016 0:00,11.0000000,16.0000000,16.174790000000,-61.110823000000,,Petite Terre Guadeloupe,53797,observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a-7,https://biolit.fr/observations/observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Q3Wq2EHPCKSqOo8R0x4RL-uSkpI.jpg,,FALSE, +N1,61034,sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a,https://biolit.fr/sorties/sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a/,Earthforce FS,,6/26/2016 0:00,11.0000000,16.0000000,16.174790000000,-61.110823000000,,Petite Terre Guadeloupe,53799,observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a-8,https://biolit.fr/observations/observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/iles-de-la-petite-terre-guadeloupe-109.jpg,,FALSE, +N1,61034,sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a,https://biolit.fr/sorties/sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a/,Earthforce FS,,6/26/2016 0:00,11.0000000,16.0000000,16.174790000000,-61.110823000000,,Petite Terre Guadeloupe,53801,observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a-9,https://biolit.fr/observations/observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/13567205_1233434363356998_5390221078369320651_n.jpg,,FALSE, +N1,61035,sortie-422fe018-2abe-4a65-973d-7b778b088128,https://biolit.fr/sorties/sortie-422fe018-2abe-4a65-973d-7b778b088128/,Earthforce FS,,6/30/2016 0:00,9.0000000,19.0000000,42.632268000000,3.380553000000,,Cannet en Roussillon,53803,observation-422fe018-2abe-4a65-973d-7b778b088128,https://biolit.fr/observations/observation-422fe018-2abe-4a65-973d-7b778b088128/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/1907482_10206676614454763_5877711392353291861_n.jpg,,TRUE, +N1,61035,sortie-422fe018-2abe-4a65-973d-7b778b088128,https://biolit.fr/sorties/sortie-422fe018-2abe-4a65-973d-7b778b088128/,Earthforce FS,,6/30/2016 0:00,9.0000000,19.0000000,42.632268000000,3.380553000000,,Cannet en Roussillon,53805,observation-422fe018-2abe-4a65-973d-7b778b088128-2,https://biolit.fr/observations/observation-422fe018-2abe-4a65-973d-7b778b088128-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/13567080_10209433823223259_3662766950048304592_n.jpg,,FALSE, +N1,61035,sortie-422fe018-2abe-4a65-973d-7b778b088128,https://biolit.fr/sorties/sortie-422fe018-2abe-4a65-973d-7b778b088128/,Earthforce FS,,6/30/2016 0:00,9.0000000,19.0000000,42.632268000000,3.380553000000,,Cannet en Roussillon,53807,observation-422fe018-2abe-4a65-973d-7b778b088128-3,https://biolit.fr/observations/observation-422fe018-2abe-4a65-973d-7b778b088128-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/13592645_1346299995384271_8595610723270610447_n.jpg,,FALSE, +N1,61035,sortie-422fe018-2abe-4a65-973d-7b778b088128,https://biolit.fr/sorties/sortie-422fe018-2abe-4a65-973d-7b778b088128/,Earthforce FS,,6/30/2016 0:00,9.0000000,19.0000000,42.632268000000,3.380553000000,,Cannet en Roussillon,53809,observation-422fe018-2abe-4a65-973d-7b778b088128-4,https://biolit.fr/observations/observation-422fe018-2abe-4a65-973d-7b778b088128-4/,Delphinus delphis,Dauphin commun,,https://biolit.fr/wp-content/uploads/2023/07/13512208_1346391412041796_5566799174038681505_n.jpg,,TRUE, +N1,61035,sortie-422fe018-2abe-4a65-973d-7b778b088128,https://biolit.fr/sorties/sortie-422fe018-2abe-4a65-973d-7b778b088128/,Earthforce FS,,6/30/2016 0:00,9.0000000,19.0000000,42.632268000000,3.380553000000,,Cannet en Roussillon,53811,observation-422fe018-2abe-4a65-973d-7b778b088128-5,https://biolit.fr/observations/observation-422fe018-2abe-4a65-973d-7b778b088128-5/,Delphinus delphis,Dauphin commun,,https://biolit.fr/wp-content/uploads/2023/07/11400968_10206676620414912_29491217189837876_n.jpg,,TRUE, +N1,61035,sortie-422fe018-2abe-4a65-973d-7b778b088128,https://biolit.fr/sorties/sortie-422fe018-2abe-4a65-973d-7b778b088128/,Earthforce FS,,6/30/2016 0:00,9.0000000,19.0000000,42.632268000000,3.380553000000,,Cannet en Roussillon,53813,observation-422fe018-2abe-4a65-973d-7b778b088128-6,https://biolit.fr/observations/observation-422fe018-2abe-4a65-973d-7b778b088128-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/13537673_10209433837743622_3689881763160780571_n.jpg,,FALSE, +N1,61035,sortie-422fe018-2abe-4a65-973d-7b778b088128,https://biolit.fr/sorties/sortie-422fe018-2abe-4a65-973d-7b778b088128/,Earthforce FS,,6/30/2016 0:00,9.0000000,19.0000000,42.632268000000,3.380553000000,,Cannet en Roussillon,53815,observation-422fe018-2abe-4a65-973d-7b778b088128-7,https://biolit.fr/observations/observation-422fe018-2abe-4a65-973d-7b778b088128-7/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/13417447_1332385980109006_8037549546652510366_n.jpg,,TRUE, +N1,61035,sortie-422fe018-2abe-4a65-973d-7b778b088128,https://biolit.fr/sorties/sortie-422fe018-2abe-4a65-973d-7b778b088128/,Earthforce FS,,6/30/2016 0:00,9.0000000,19.0000000,42.632268000000,3.380553000000,,Cannet en Roussillon,53817,observation-422fe018-2abe-4a65-973d-7b778b088128-8,https://biolit.fr/observations/observation-422fe018-2abe-4a65-973d-7b778b088128-8/,Mola mola,Poisson-lune,,https://biolit.fr/wp-content/uploads/2023/07/10626622_933943993286542_660641323345149825_n.jpg,,TRUE, +N1,61035,sortie-422fe018-2abe-4a65-973d-7b778b088128,https://biolit.fr/sorties/sortie-422fe018-2abe-4a65-973d-7b778b088128/,Earthforce FS,,6/30/2016 0:00,9.0000000,19.0000000,42.632268000000,3.380553000000,,Cannet en Roussillon,53819,observation-422fe018-2abe-4a65-973d-7b778b088128-9,https://biolit.fr/observations/observation-422fe018-2abe-4a65-973d-7b778b088128-9/,Delphinus delphis,Dauphin commun,,https://biolit.fr/wp-content/uploads/2023/07/11393118_10206676621534940_1187428319481079157_n.jpg,,TRUE, +N1,61035,sortie-422fe018-2abe-4a65-973d-7b778b088128,https://biolit.fr/sorties/sortie-422fe018-2abe-4a65-973d-7b778b088128/,Earthforce FS,,6/30/2016 0:00,9.0000000,19.0000000,42.632268000000,3.380553000000,,Cannet en Roussillon,53821,observation-422fe018-2abe-4a65-973d-7b778b088128-10,https://biolit.fr/observations/observation-422fe018-2abe-4a65-973d-7b778b088128-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/11179943_1078097052204568_828664586874006825_n.jpg,,FALSE, +N1,61035,sortie-422fe018-2abe-4a65-973d-7b778b088128,https://biolit.fr/sorties/sortie-422fe018-2abe-4a65-973d-7b778b088128/,Earthforce FS,,6/30/2016 0:00,9.0000000,19.0000000,42.632268000000,3.380553000000,,Cannet en Roussillon,53823,observation-422fe018-2abe-4a65-973d-7b778b088128-11,https://biolit.fr/observations/observation-422fe018-2abe-4a65-973d-7b778b088128-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/13528961_10209433837223609_7115880932066712731_n.jpg,,FALSE, +N1,61036,sortie-75c71044-7904-4091-837b-dabc14a04ea1,https://biolit.fr/sorties/sortie-75c71044-7904-4091-837b-dabc14a04ea1/,Marine,,06/05/2016,14.0000000,16.0000000,43.094884000000,6.023553000000,,Plage de la Garonne,53825,observation-75c71044-7904-4091-837b-dabc14a04ea1,https://biolit.fr/observations/observation-75c71044-7904-4091-837b-dabc14a04ea1/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/image_24-scaled.jpeg,,TRUE, +N1,61036,sortie-75c71044-7904-4091-837b-dabc14a04ea1,https://biolit.fr/sorties/sortie-75c71044-7904-4091-837b-dabc14a04ea1/,Marine,,06/05/2016,14.0000000,16.0000000,43.094884000000,6.023553000000,,Plage de la Garonne,53827,observation-75c71044-7904-4091-837b-dabc14a04ea1-2,https://biolit.fr/observations/observation-75c71044-7904-4091-837b-dabc14a04ea1-2/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/image_25-scaled.jpeg,,TRUE, +N1,61037,sortie-65187c42-3ac4-47ea-8913-d08625c0f58b,https://biolit.fr/sorties/sortie-65187c42-3ac4-47ea-8913-d08625c0f58b/,Écoute ta planète,,6/14/2016 0:00,14.0000000,14.0:45,43.548548000000,5.02929900000,,Saint-Chamas,53829,observation-65187c42-3ac4-47ea-8913-d08625c0f58b,https://biolit.fr/observations/observation-65187c42-3ac4-47ea-8913-d08625c0f58b/,,,,https://biolit.fr/wp-content/uploads/2023/07/meduse - Saint-Chamas - 14-06-16 - college Edouard Manet Marseille-scaled.jpg,,FALSE, +N1,61038,sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03,https://biolit.fr/sorties/sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03/,Phil,,5/21/2016 0:00,12.0000000,12.0:25,47.868671000000,-3.928908000000,,Concarneau - Finistère,53831,observation-7d16a68c-25ef-4e92-964c-63f39cc16e03,https://biolit.fr/observations/observation-7d16a68c-25ef-4e92-964c-63f39cc16e03/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/20160521_120800.jpg,,TRUE, +N1,61038,sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03,https://biolit.fr/sorties/sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03/,Phil,,5/21/2016 0:00,12.0000000,12.0:25,47.868671000000,-3.928908000000,,Concarneau - Finistère,53833,observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-2,https://biolit.fr/observations/observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-2/,Phymatolithon lenormandii,Algue encroûtante rouge de Lenormand,,https://biolit.fr/wp-content/uploads/2023/07/20160521_120828.jpg,,TRUE, +N1,61038,sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03,https://biolit.fr/sorties/sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03/,Phil,,5/21/2016 0:00,12.0000000,12.0:25,47.868671000000,-3.928908000000,,Concarneau - Finistère,53835,observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-3,https://biolit.fr/observations/observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160521_120848.jpg,,FALSE, +N1,61038,sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03,https://biolit.fr/sorties/sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03/,Phil,,5/21/2016 0:00,12.0000000,12.0:25,47.868671000000,-3.928908000000,,Concarneau - Finistère,53837,observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-4,https://biolit.fr/observations/observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-4/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20160521_121047.jpg,,TRUE, +N1,61038,sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03,https://biolit.fr/sorties/sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03/,Phil,,5/21/2016 0:00,12.0000000,12.0:25,47.868671000000,-3.928908000000,,Concarneau - Finistère,53839,observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-5,https://biolit.fr/observations/observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-5/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20160521_121104.jpg,,TRUE, +N1,61038,sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03,https://biolit.fr/sorties/sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03/,Phil,,5/21/2016 0:00,12.0000000,12.0:25,47.868671000000,-3.928908000000,,Concarneau - Finistère,53841,observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-6,https://biolit.fr/observations/observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-6/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20160521_121107.jpg,,TRUE, +N1,61038,sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03,https://biolit.fr/sorties/sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03/,Phil,,5/21/2016 0:00,12.0000000,12.0:25,47.868671000000,-3.928908000000,,Concarneau - Finistère,53843,observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-7,https://biolit.fr/observations/observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-7/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20160521_121116.jpg,,TRUE, +N1,61038,sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03,https://biolit.fr/sorties/sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03/,Phil,,5/21/2016 0:00,12.0000000,12.0:25,47.868671000000,-3.928908000000,,Concarneau - Finistère,53845,observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-8,https://biolit.fr/observations/observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-8/,Schizoporella unicornis,Schizoporella unicorne,,https://biolit.fr/wp-content/uploads/2023/07/20160521_121242.jpg,,TRUE, +N1,61038,sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03,https://biolit.fr/sorties/sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03/,Phil,,5/21/2016 0:00,12.0000000,12.0:25,47.868671000000,-3.928908000000,,Concarneau - Finistère,53847,observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-9,https://biolit.fr/observations/observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-9/,Schizoporella unicornis,Schizoporella unicorne,,https://biolit.fr/wp-content/uploads/2023/07/20160521_121306.jpg,,TRUE, +N1,61038,sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03,https://biolit.fr/sorties/sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03/,Phil,,5/21/2016 0:00,12.0000000,12.0:25,47.868671000000,-3.928908000000,,Concarneau - Finistère,53849,observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-10,https://biolit.fr/observations/observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-10/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20160521_121332.jpg,,TRUE, +N1,61039,sortie-f58173f8-2c1f-4573-807a-139b0a5cfc9a,https://biolit.fr/sorties/sortie-f58173f8-2c1f-4573-807a-139b0a5cfc9a/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,13.0000000,15.0000000,43.518089000000,7.068695000000,,Pointe de la Convention : Côte nord Ile Sainte-Marguerite,53851,observation-f58173f8-2c1f-4573-807a-139b0a5cfc9a,https://biolit.fr/observations/observation-f58173f8-2c1f-4573-807a-139b0a5cfc9a/,Echinaster (Echinaster) sepositus,Etoile de mer rouge,,https://biolit.fr/wp-content/uploads/2023/07/20160428_152258-rotated.jpg,,TRUE, +N1,61039,sortie-f58173f8-2c1f-4573-807a-139b0a5cfc9a,https://biolit.fr/sorties/sortie-f58173f8-2c1f-4573-807a-139b0a5cfc9a/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,13.0000000,15.0000000,43.518089000000,7.068695000000,,Pointe de la Convention : Côte nord Ile Sainte-Marguerite,53853,observation-f58173f8-2c1f-4573-807a-139b0a5cfc9a-2,https://biolit.fr/observations/observation-f58173f8-2c1f-4573-807a-139b0a5cfc9a-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/20160428_152345-rotated.jpg,,TRUE, +N1,61039,sortie-f58173f8-2c1f-4573-807a-139b0a5cfc9a,https://biolit.fr/sorties/sortie-f58173f8-2c1f-4573-807a-139b0a5cfc9a/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,13.0000000,15.0000000,43.518089000000,7.068695000000,,Pointe de la Convention : Côte nord Ile Sainte-Marguerite,53855,observation-f58173f8-2c1f-4573-807a-139b0a5cfc9a-3,https://biolit.fr/observations/observation-f58173f8-2c1f-4573-807a-139b0a5cfc9a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160428_152413-rotated.jpg,,FALSE, +N1,61039,sortie-f58173f8-2c1f-4573-807a-139b0a5cfc9a,https://biolit.fr/sorties/sortie-f58173f8-2c1f-4573-807a-139b0a5cfc9a/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,13.0000000,15.0000000,43.518089000000,7.068695000000,,Pointe de la Convention : Côte nord Ile Sainte-Marguerite,53857,observation-f58173f8-2c1f-4573-807a-139b0a5cfc9a-4,https://biolit.fr/observations/observation-f58173f8-2c1f-4573-807a-139b0a5cfc9a-4/,Ulva spp.,Ulve rigide,,https://biolit.fr/wp-content/uploads/2023/07/20160428_152435-rotated.jpg,,TRUE, +N1,61039,sortie-f58173f8-2c1f-4573-807a-139b0a5cfc9a,https://biolit.fr/sorties/sortie-f58173f8-2c1f-4573-807a-139b0a5cfc9a/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,13.0000000,15.0000000,43.518089000000,7.068695000000,,Pointe de la Convention : Côte nord Ile Sainte-Marguerite,53859,observation-f58173f8-2c1f-4573-807a-139b0a5cfc9a-5,https://biolit.fr/observations/observation-f58173f8-2c1f-4573-807a-139b0a5cfc9a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160428_152233.jpg,,FALSE, +N1,61039,sortie-f58173f8-2c1f-4573-807a-139b0a5cfc9a,https://biolit.fr/sorties/sortie-f58173f8-2c1f-4573-807a-139b0a5cfc9a/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,13.0000000,15.0000000,43.518089000000,7.068695000000,,Pointe de la Convention : Côte nord Ile Sainte-Marguerite,53861,observation-f58173f8-2c1f-4573-807a-139b0a5cfc9a-6,https://biolit.fr/observations/observation-f58173f8-2c1f-4573-807a-139b0a5cfc9a-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160428_152320-rotated.jpg,,FALSE, +N1,61040,sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2,https://biolit.fr/sorties/sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.52111700000,7.031845000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53863,observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2,https://biolit.fr/observations/observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4224-scaled.jpg,,TRUE, +N1,61040,sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2,https://biolit.fr/sorties/sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.52111700000,7.031845000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53865,observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-2,https://biolit.fr/observations/observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4238-scaled.jpg,,FALSE, +N1,61040,sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2,https://biolit.fr/sorties/sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.52111700000,7.031845000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53867,observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-3,https://biolit.fr/observations/observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4245.JPG,,FALSE, +N1,61040,sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2,https://biolit.fr/sorties/sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.52111700000,7.031845000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53868,observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-4,https://biolit.fr/observations/observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-4/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4256-scaled.jpg,,TRUE, +N1,61040,sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2,https://biolit.fr/sorties/sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.52111700000,7.031845000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53870,observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-5,https://biolit.fr/observations/observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-5/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4261-scaled.jpg,,TRUE, +N1,61040,sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2,https://biolit.fr/sorties/sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.52111700000,7.031845000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53872,observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-6,https://biolit.fr/observations/observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-6/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSCF4262-scaled.jpg,,TRUE, +N1,61040,sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2,https://biolit.fr/sorties/sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.52111700000,7.031845000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53874,observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-7,https://biolit.fr/observations/observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4269-scaled.jpg,,FALSE, +N1,61040,sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2,https://biolit.fr/sorties/sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.52111700000,7.031845000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53876,observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-8,https://biolit.fr/observations/observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4274-scaled.jpg,,FALSE, +N1,61040,sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2,https://biolit.fr/sorties/sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.52111700000,7.031845000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53878,observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-9,https://biolit.fr/observations/observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-9/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4275-scaled.jpg,,TRUE, +N1,61040,sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2,https://biolit.fr/sorties/sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.52111700000,7.031845000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53880,observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-10,https://biolit.fr/observations/observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-10/,Halimeda tuna,Monnaie de Poséidon,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4282.JPG,,TRUE, +N1,61040,sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2,https://biolit.fr/sorties/sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.52111700000,7.031845000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53881,observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-11,https://biolit.fr/observations/observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4278-scaled.jpg,,FALSE, +N1,61040,sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2,https://biolit.fr/sorties/sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.52111700000,7.031845000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53883,observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-12,https://biolit.fr/observations/observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4243-scaled.jpg,,FALSE, +N1,61040,sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2,https://biolit.fr/sorties/sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.52111700000,7.031845000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53885,observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-13,https://biolit.fr/observations/observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4244-scaled.jpg,,FALSE, +N1,61040,sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2,https://biolit.fr/sorties/sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.52111700000,7.031845000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53887,observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-14,https://biolit.fr/observations/observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4264-scaled.jpg,,FALSE, +N1,61040,sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2,https://biolit.fr/sorties/sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.52111700000,7.031845000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53889,observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-15,https://biolit.fr/observations/observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4250.JPG,,FALSE, +N1,61041,sortie-81791854-155c-409b-ad04-f15a86f9b74c,https://biolit.fr/sorties/sortie-81791854-155c-409b-ad04-f15a86f9b74c/,CPIE Iles de Lérins et Pays d'Azur,,6/13/2016 0:00,11.0000000,12.0000000,43.521106000000,7.031873000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53890,observation-81791854-155c-409b-ad04-f15a86f9b74c,https://biolit.fr/observations/observation-81791854-155c-409b-ad04-f15a86f9b74c/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0363.JPG,,TRUE, +N1,61041,sortie-81791854-155c-409b-ad04-f15a86f9b74c,https://biolit.fr/sorties/sortie-81791854-155c-409b-ad04-f15a86f9b74c/,CPIE Iles de Lérins et Pays d'Azur,,6/13/2016 0:00,11.0000000,12.0000000,43.521106000000,7.031873000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53892,observation-81791854-155c-409b-ad04-f15a86f9b74c-2,https://biolit.fr/observations/observation-81791854-155c-409b-ad04-f15a86f9b74c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0365.JPG,,FALSE, +N1,61041,sortie-81791854-155c-409b-ad04-f15a86f9b74c,https://biolit.fr/sorties/sortie-81791854-155c-409b-ad04-f15a86f9b74c/,CPIE Iles de Lérins et Pays d'Azur,,6/13/2016 0:00,11.0000000,12.0000000,43.521106000000,7.031873000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53894,observation-81791854-155c-409b-ad04-f15a86f9b74c-3,https://biolit.fr/observations/observation-81791854-155c-409b-ad04-f15a86f9b74c-3/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0366.JPG,,TRUE, +N1,61041,sortie-81791854-155c-409b-ad04-f15a86f9b74c,https://biolit.fr/sorties/sortie-81791854-155c-409b-ad04-f15a86f9b74c/,CPIE Iles de Lérins et Pays d'Azur,,6/13/2016 0:00,11.0000000,12.0000000,43.521106000000,7.031873000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53896,observation-81791854-155c-409b-ad04-f15a86f9b74c-4,https://biolit.fr/observations/observation-81791854-155c-409b-ad04-f15a86f9b74c-4/,Stramonita haemastoma,Bouche de sang,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0369.JPG,,TRUE, +N1,61041,sortie-81791854-155c-409b-ad04-f15a86f9b74c,https://biolit.fr/sorties/sortie-81791854-155c-409b-ad04-f15a86f9b74c/,CPIE Iles de Lérins et Pays d'Azur,,6/13/2016 0:00,11.0000000,12.0000000,43.521106000000,7.031873000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53898,observation-81791854-155c-409b-ad04-f15a86f9b74c-5,https://biolit.fr/observations/observation-81791854-155c-409b-ad04-f15a86f9b74c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0370.JPG,,FALSE, +N1,61042,sortie-d0206e7f-6322-46a0-8d42-881b88ee5a52,https://biolit.fr/sorties/sortie-d0206e7f-6322-46a0-8d42-881b88ee5a52/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2016,10.0000000,12.0000000,43.521106000000,7.031873000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53900,observation-d0206e7f-6322-46a0-8d42-881b88ee5a52,https://biolit.fr/observations/observation-d0206e7f-6322-46a0-8d42-881b88ee5a52/,Stramonita haemastoma,Bouche de sang,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0360.JPG,,TRUE, +N1,61042,sortie-d0206e7f-6322-46a0-8d42-881b88ee5a52,https://biolit.fr/sorties/sortie-d0206e7f-6322-46a0-8d42-881b88ee5a52/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2016,10.0000000,12.0000000,43.521106000000,7.031873000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53902,observation-d0206e7f-6322-46a0-8d42-881b88ee5a52-2,https://biolit.fr/observations/observation-d0206e7f-6322-46a0-8d42-881b88ee5a52-2/,Luria lurida,Porcelaine livide,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0361.JPG,,TRUE, +N1,61042,sortie-d0206e7f-6322-46a0-8d42-881b88ee5a52,https://biolit.fr/sorties/sortie-d0206e7f-6322-46a0-8d42-881b88ee5a52/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2016,10.0000000,12.0000000,43.521106000000,7.031873000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53904,observation-d0206e7f-6322-46a0-8d42-881b88ee5a52-3,https://biolit.fr/observations/observation-d0206e7f-6322-46a0-8d42-881b88ee5a52-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0357_0.JPG,,FALSE, +N1,61042,sortie-d0206e7f-6322-46a0-8d42-881b88ee5a52,https://biolit.fr/sorties/sortie-d0206e7f-6322-46a0-8d42-881b88ee5a52/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2016,10.0000000,12.0000000,43.521106000000,7.031873000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53906,observation-d0206e7f-6322-46a0-8d42-881b88ee5a52-4,https://biolit.fr/observations/observation-d0206e7f-6322-46a0-8d42-881b88ee5a52-4/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0359_0.JPG,,TRUE, +N1,61042,sortie-d0206e7f-6322-46a0-8d42-881b88ee5a52,https://biolit.fr/sorties/sortie-d0206e7f-6322-46a0-8d42-881b88ee5a52/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2016,10.0000000,12.0000000,43.521106000000,7.031873000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53908,observation-d0206e7f-6322-46a0-8d42-881b88ee5a52-5,https://biolit.fr/observations/observation-d0206e7f-6322-46a0-8d42-881b88ee5a52-5/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0356_0.JPG,,TRUE, +N1,61042,sortie-d0206e7f-6322-46a0-8d42-881b88ee5a52,https://biolit.fr/sorties/sortie-d0206e7f-6322-46a0-8d42-881b88ee5a52/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2016,10.0000000,12.0000000,43.521106000000,7.031873000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53910,observation-d0206e7f-6322-46a0-8d42-881b88ee5a52-6,https://biolit.fr/observations/observation-d0206e7f-6322-46a0-8d42-881b88ee5a52-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0353_0.JPG,,FALSE, +N1,61042,sortie-d0206e7f-6322-46a0-8d42-881b88ee5a52,https://biolit.fr/sorties/sortie-d0206e7f-6322-46a0-8d42-881b88ee5a52/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2016,10.0000000,12.0000000,43.521106000000,7.031873000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53912,observation-d0206e7f-6322-46a0-8d42-881b88ee5a52-7,https://biolit.fr/observations/observation-d0206e7f-6322-46a0-8d42-881b88ee5a52-7/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0362.JPG,,TRUE, +N1,61043,sortie-a2770b33-4b83-4290-b5bf-7f117d402a20,https://biolit.fr/sorties/sortie-a2770b33-4b83-4290-b5bf-7f117d402a20/,Phil,,5/21/2016 0:00,12.0:15,12.0000000,47.868925000000,-3.928801000000,,Concarneau - Finistère,53914,observation-a2770b33-4b83-4290-b5bf-7f117d402a20,https://biolit.fr/observations/observation-a2770b33-4b83-4290-b5bf-7f117d402a20/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20160521_121617_001.jpg,,TRUE, +N1,61043,sortie-a2770b33-4b83-4290-b5bf-7f117d402a20,https://biolit.fr/sorties/sortie-a2770b33-4b83-4290-b5bf-7f117d402a20/,Phil,,5/21/2016 0:00,12.0:15,12.0000000,47.868925000000,-3.928801000000,,Concarneau - Finistère,53916,observation-a2770b33-4b83-4290-b5bf-7f117d402a20-2,https://biolit.fr/observations/observation-a2770b33-4b83-4290-b5bf-7f117d402a20-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160521_121425.jpg,,TRUE, +N1,61043,sortie-a2770b33-4b83-4290-b5bf-7f117d402a20,https://biolit.fr/sorties/sortie-a2770b33-4b83-4290-b5bf-7f117d402a20/,Phil,,5/21/2016 0:00,12.0:15,12.0000000,47.868925000000,-3.928801000000,,Concarneau - Finistère,53918,observation-a2770b33-4b83-4290-b5bf-7f117d402a20-3,https://biolit.fr/observations/observation-a2770b33-4b83-4290-b5bf-7f117d402a20-3/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/20160521_121913.jpg,,TRUE, +N1,61043,sortie-a2770b33-4b83-4290-b5bf-7f117d402a20,https://biolit.fr/sorties/sortie-a2770b33-4b83-4290-b5bf-7f117d402a20/,Phil,,5/21/2016 0:00,12.0:15,12.0000000,47.868925000000,-3.928801000000,,Concarneau - Finistère,53920,observation-a2770b33-4b83-4290-b5bf-7f117d402a20-4,https://biolit.fr/observations/observation-a2770b33-4b83-4290-b5bf-7f117d402a20-4/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160521_122114.jpg,,TRUE, +N1,61043,sortie-a2770b33-4b83-4290-b5bf-7f117d402a20,https://biolit.fr/sorties/sortie-a2770b33-4b83-4290-b5bf-7f117d402a20/,Phil,,5/21/2016 0:00,12.0:15,12.0000000,47.868925000000,-3.928801000000,,Concarneau - Finistère,53922,observation-a2770b33-4b83-4290-b5bf-7f117d402a20-5,https://biolit.fr/observations/observation-a2770b33-4b83-4290-b5bf-7f117d402a20-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160521_122552.jpg,,FALSE, +N1,61043,sortie-a2770b33-4b83-4290-b5bf-7f117d402a20,https://biolit.fr/sorties/sortie-a2770b33-4b83-4290-b5bf-7f117d402a20/,Phil,,5/21/2016 0:00,12.0:15,12.0000000,47.868925000000,-3.928801000000,,Concarneau - Finistère,53924,observation-a2770b33-4b83-4290-b5bf-7f117d402a20-6,https://biolit.fr/observations/observation-a2770b33-4b83-4290-b5bf-7f117d402a20-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160521_122609.jpg,,FALSE, +N1,61044,sortie-dc1238f3-63bb-4d1a-9796-ce8431f486f3,https://biolit.fr/sorties/sortie-dc1238f3-63bb-4d1a-9796-ce8431f486f3/,Phil,,5/21/2016 0:00,11.0000000,12.000005,47.87243400000,-3.932845000000,,Concarneau - Finistère,53926,observation-dc1238f3-63bb-4d1a-9796-ce8431f486f3,https://biolit.fr/observations/observation-dc1238f3-63bb-4d1a-9796-ce8431f486f3/,Verruca stroemia,Balane irrégulière,,https://biolit.fr/wp-content/uploads/2023/07/20160521_114823.jpg,,TRUE, +N1,61044,sortie-dc1238f3-63bb-4d1a-9796-ce8431f486f3,https://biolit.fr/sorties/sortie-dc1238f3-63bb-4d1a-9796-ce8431f486f3/,Phil,,5/21/2016 0:00,11.0000000,12.000005,47.87243400000,-3.932845000000,,Concarneau - Finistère,53928,observation-dc1238f3-63bb-4d1a-9796-ce8431f486f3-2,https://biolit.fr/observations/observation-dc1238f3-63bb-4d1a-9796-ce8431f486f3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160521_114848.jpg,,FALSE, +N1,61044,sortie-dc1238f3-63bb-4d1a-9796-ce8431f486f3,https://biolit.fr/sorties/sortie-dc1238f3-63bb-4d1a-9796-ce8431f486f3/,Phil,,5/21/2016 0:00,11.0000000,12.000005,47.87243400000,-3.932845000000,,Concarneau - Finistère,53930,observation-dc1238f3-63bb-4d1a-9796-ce8431f486f3-3,https://biolit.fr/observations/observation-dc1238f3-63bb-4d1a-9796-ce8431f486f3-3/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20160521_115006_001.jpg,,TRUE, +N1,61044,sortie-dc1238f3-63bb-4d1a-9796-ce8431f486f3,https://biolit.fr/sorties/sortie-dc1238f3-63bb-4d1a-9796-ce8431f486f3/,Phil,,5/21/2016 0:00,11.0000000,12.000005,47.87243400000,-3.932845000000,,Concarneau - Finistère,53932,observation-dc1238f3-63bb-4d1a-9796-ce8431f486f3-4,https://biolit.fr/observations/observation-dc1238f3-63bb-4d1a-9796-ce8431f486f3-4/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20160521_120234.jpg,,TRUE, +N1,61044,sortie-dc1238f3-63bb-4d1a-9796-ce8431f486f3,https://biolit.fr/sorties/sortie-dc1238f3-63bb-4d1a-9796-ce8431f486f3/,Phil,,5/21/2016 0:00,11.0000000,12.000005,47.87243400000,-3.932845000000,,Concarneau - Finistère,53934,observation-dc1238f3-63bb-4d1a-9796-ce8431f486f3-5,https://biolit.fr/observations/observation-dc1238f3-63bb-4d1a-9796-ce8431f486f3-5/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/20160521_120309.jpg,,TRUE, +N1,61044,sortie-dc1238f3-63bb-4d1a-9796-ce8431f486f3,https://biolit.fr/sorties/sortie-dc1238f3-63bb-4d1a-9796-ce8431f486f3/,Phil,,5/21/2016 0:00,11.0000000,12.000005,47.87243400000,-3.932845000000,,Concarneau - Finistère,53936,observation-dc1238f3-63bb-4d1a-9796-ce8431f486f3-6,https://biolit.fr/observations/observation-dc1238f3-63bb-4d1a-9796-ce8431f486f3-6/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20160521_120436.jpg,,TRUE, +N1,61045,sortie-cee980b4-f7a2-43a4-85d2-080408456411,https://biolit.fr/sorties/sortie-cee980b4-f7a2-43a4-85d2-080408456411/,Phil,,5/24/2016 0:00,11.0000000,11.0:45,47.793446000000,-3.843286000000,,Trévignon - Finistère,53938,observation-cee980b4-f7a2-43a4-85d2-080408456411,https://biolit.fr/observations/observation-cee980b4-f7a2-43a4-85d2-080408456411/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020888.JPG,,FALSE, +N1,61045,sortie-cee980b4-f7a2-43a4-85d2-080408456411,https://biolit.fr/sorties/sortie-cee980b4-f7a2-43a4-85d2-080408456411/,Phil,,5/24/2016 0:00,11.0000000,11.0:45,47.793446000000,-3.843286000000,,Trévignon - Finistère,53940,observation-cee980b4-f7a2-43a4-85d2-080408456411-2,https://biolit.fr/observations/observation-cee980b4-f7a2-43a4-85d2-080408456411-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020889.JPG,,TRUE, +N1,61046,sortie-fc97562a-c13f-4db5-89a2-fad4d85f9ffa,https://biolit.fr/sorties/sortie-fc97562a-c13f-4db5-89a2-fad4d85f9ffa/,Phil,,5/27/2016 0:00,15.000005,15.0000000,47.858194000000,-3.917808000000,,Concarneau - Finistère,53942,observation-fc97562a-c13f-4db5-89a2-fad4d85f9ffa,https://biolit.fr/observations/observation-fc97562a-c13f-4db5-89a2-fad4d85f9ffa/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160527_114532.jpg,,FALSE, +N1,61046,sortie-fc97562a-c13f-4db5-89a2-fad4d85f9ffa,https://biolit.fr/sorties/sortie-fc97562a-c13f-4db5-89a2-fad4d85f9ffa/,Phil,,5/27/2016 0:00,15.000005,15.0000000,47.858194000000,-3.917808000000,,Concarneau - Finistère,53944,observation-fc97562a-c13f-4db5-89a2-fad4d85f9ffa-2,https://biolit.fr/observations/observation-fc97562a-c13f-4db5-89a2-fad4d85f9ffa-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/P1020936.JPG,,TRUE, +N1,61046,sortie-fc97562a-c13f-4db5-89a2-fad4d85f9ffa,https://biolit.fr/sorties/sortie-fc97562a-c13f-4db5-89a2-fad4d85f9ffa/,Phil,,5/27/2016 0:00,15.000005,15.0000000,47.858194000000,-3.917808000000,,Concarneau - Finistère,53946,observation-fc97562a-c13f-4db5-89a2-fad4d85f9ffa-3,https://biolit.fr/observations/observation-fc97562a-c13f-4db5-89a2-fad4d85f9ffa-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020967.JPG,,TRUE, +N1,61046,sortie-fc97562a-c13f-4db5-89a2-fad4d85f9ffa,https://biolit.fr/sorties/sortie-fc97562a-c13f-4db5-89a2-fad4d85f9ffa/,Phil,,5/27/2016 0:00,15.000005,15.0000000,47.858194000000,-3.917808000000,,Concarneau - Finistère,53948,observation-fc97562a-c13f-4db5-89a2-fad4d85f9ffa-4,https://biolit.fr/observations/observation-fc97562a-c13f-4db5-89a2-fad4d85f9ffa-4/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1020969.JPG,,TRUE, +N1,61047,sortie-495657cb-1690-4b79-867d-5f586e5f296b,https://biolit.fr/sorties/sortie-495657cb-1690-4b79-867d-5f586e5f296b/,Phil,,5/24/2016 0:00,11.0000000,11.0000000,47.792046000000,-3.846446000000,,Trévignon - Finistère,53950,observation-495657cb-1690-4b79-867d-5f586e5f296b,https://biolit.fr/observations/observation-495657cb-1690-4b79-867d-5f586e5f296b/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/P1020859.JPG,,TRUE, +N1,61047,sortie-495657cb-1690-4b79-867d-5f586e5f296b,https://biolit.fr/sorties/sortie-495657cb-1690-4b79-867d-5f586e5f296b/,Phil,,5/24/2016 0:00,11.0000000,11.0000000,47.792046000000,-3.846446000000,,Trévignon - Finistère,53952,observation-495657cb-1690-4b79-867d-5f586e5f296b-2,https://biolit.fr/observations/observation-495657cb-1690-4b79-867d-5f586e5f296b-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1020861_0.JPG,,TRUE, +N1,61048,sortie-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04,https://biolit.fr/sorties/sortie-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04/,Phil,,5/28/2016 0:00,14.0000000,14.0000000,47.853388000000,-3.913474000000,,Concarneau - Finistère,53954,observation-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04,https://biolit.fr/observations/observation-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1030075.JPG,,TRUE, +N1,61048,sortie-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04,https://biolit.fr/sorties/sortie-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04/,Phil,,5/28/2016 0:00,14.0000000,14.0000000,47.853388000000,-3.913474000000,,Concarneau - Finistère,53956,observation-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04-2,https://biolit.fr/observations/observation-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04-2/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/P1030075 - Copie.JPG,,TRUE, +N1,61048,sortie-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04,https://biolit.fr/sorties/sortie-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04/,Phil,,5/28/2016 0:00,14.0000000,14.0000000,47.853388000000,-3.913474000000,,Concarneau - Finistère,53958,observation-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04-3,https://biolit.fr/observations/observation-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04-3/,Coryphoblennius galerita,Blennie coiffée,,https://biolit.fr/wp-content/uploads/2023/07/P1030050.JPG,,TRUE, +N1,61048,sortie-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04,https://biolit.fr/sorties/sortie-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04/,Phil,,5/28/2016 0:00,14.0000000,14.0000000,47.853388000000,-3.913474000000,,Concarneau - Finistère,53960,observation-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04-4,https://biolit.fr/observations/observation-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030067.JPG,,FALSE, +N1,61048,sortie-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04,https://biolit.fr/sorties/sortie-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04/,Phil,,5/28/2016 0:00,14.0000000,14.0000000,47.853388000000,-3.913474000000,,Concarneau - Finistère,53962,observation-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04-5,https://biolit.fr/observations/observation-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030078.JPG,,FALSE, +N1,61049,sortie-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a,https://biolit.fr/sorties/sortie-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a/,Phil,,5/21/2016 0:00,11.0000000,11.0000000,47.873577000000,-3.932161000000,,Concarneau - Finistère,53964,observation-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a,https://biolit.fr/observations/observation-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160521_114641.jpg,,FALSE, +N1,61049,sortie-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a,https://biolit.fr/sorties/sortie-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a/,Phil,,5/21/2016 0:00,11.0000000,11.0000000,47.873577000000,-3.932161000000,,Concarneau - Finistère,53966,observation-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a-2,https://biolit.fr/observations/observation-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a-2/,Schizoporella unicornis,Schizoporella unicorne,,https://biolit.fr/wp-content/uploads/2023/07/20160521_114353.jpg,,TRUE, +N1,61049,sortie-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a,https://biolit.fr/sorties/sortie-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a/,Phil,,5/21/2016 0:00,11.0000000,11.0000000,47.873577000000,-3.932161000000,,Concarneau - Finistère,53968,observation-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a-3,https://biolit.fr/observations/observation-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160521_114535.jpg,,FALSE, +N1,61049,sortie-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a,https://biolit.fr/sorties/sortie-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a/,Phil,,5/21/2016 0:00,11.0000000,11.0000000,47.873577000000,-3.932161000000,,Concarneau - Finistère,53970,observation-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a-4,https://biolit.fr/observations/observation-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a-4/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20160521_114249.jpg,,TRUE, +N1,61049,sortie-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a,https://biolit.fr/sorties/sortie-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a/,Phil,,5/21/2016 0:00,11.0000000,11.0000000,47.873577000000,-3.932161000000,,Concarneau - Finistère,53972,observation-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a-5,https://biolit.fr/observations/observation-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a-5/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20160521_114739.jpg,,TRUE, +N1,61049,sortie-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a,https://biolit.fr/sorties/sortie-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a/,Phil,,5/21/2016 0:00,11.0000000,11.0000000,47.873577000000,-3.932161000000,,Concarneau - Finistère,53974,observation-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a-6,https://biolit.fr/observations/observation-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a-6/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20160521_114140(0).jpg,,TRUE, +N1,61050,sortie-157f8609-a79f-4f3b-8a86-43be7e729447,https://biolit.fr/sorties/sortie-157f8609-a79f-4f3b-8a86-43be7e729447/,Ville de Marseille Ecole National CM1A,,05/02/2016,10.0000000,12.0000000,43.267794000000,5.370354000000,,Marseille 13008,53976,observation-157f8609-a79f-4f3b-8a86-43be7e729447,https://biolit.fr/observations/observation-157f8609-a79f-4f3b-8a86-43be7e729447/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/Algue nom non connu-scaled.jpg,,TRUE, +N1,61050,sortie-157f8609-a79f-4f3b-8a86-43be7e729447,https://biolit.fr/sorties/sortie-157f8609-a79f-4f3b-8a86-43be7e729447/,Ville de Marseille Ecole National CM1A,,05/02/2016,10.0000000,12.0000000,43.267794000000,5.370354000000,,Marseille 13008,53978,observation-157f8609-a79f-4f3b-8a86-43be7e729447-2,https://biolit.fr/observations/observation-157f8609-a79f-4f3b-8a86-43be7e729447-2/,Clavelina lepadiformis,Grande claveline,,https://biolit.fr/wp-content/uploads/2023/07/grande clavelin Clavelina lepadiformis-scaled.jpg,,TRUE, +N1,61050,sortie-157f8609-a79f-4f3b-8a86-43be7e729447,https://biolit.fr/sorties/sortie-157f8609-a79f-4f3b-8a86-43be7e729447/,Ville de Marseille Ecole National CM1A,,05/02/2016,10.0000000,12.0000000,43.267794000000,5.370354000000,,Marseille 13008,53980,observation-157f8609-a79f-4f3b-8a86-43be7e729447-3,https://biolit.fr/observations/observation-157f8609-a79f-4f3b-8a86-43be7e729447-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule commune Phorcus turbinatus1-scaled.jpg,,FALSE, +N1,61050,sortie-157f8609-a79f-4f3b-8a86-43be7e729447,https://biolit.fr/sorties/sortie-157f8609-a79f-4f3b-8a86-43be7e729447/,Ville de Marseille Ecole National CM1A,,05/02/2016,10.0000000,12.0000000,43.267794000000,5.370354000000,,Marseille 13008,53982,observation-157f8609-a79f-4f3b-8a86-43be7e729447-4,https://biolit.fr/observations/observation-157f8609-a79f-4f3b-8a86-43be7e729447-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule commune Phorcus turbinatus2-scaled.jpg,,FALSE, +N1,61050,sortie-157f8609-a79f-4f3b-8a86-43be7e729447,https://biolit.fr/sorties/sortie-157f8609-a79f-4f3b-8a86-43be7e729447/,Ville de Marseille Ecole National CM1A,,05/02/2016,10.0000000,12.0000000,43.267794000000,5.370354000000,,Marseille 13008,53984,observation-157f8609-a79f-4f3b-8a86-43be7e729447-5,https://biolit.fr/observations/observation-157f8609-a79f-4f3b-8a86-43be7e729447-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle commune ou chapeau chinois patella vulgata-scaled.jpg,,FALSE, +N1,61051,sortie-30d192e4-e8a4-40be-8727-f5e38c56145b,https://biolit.fr/sorties/sortie-30d192e4-e8a4-40be-8727-f5e38c56145b/,Phil,,5/27/2016 0:00,11.0:55,12.0000000,47.857025000000,-3.919224000000,,Concarneau - Finistère,53986,observation-30d192e4-e8a4-40be-8727-f5e38c56145b,https://biolit.fr/observations/observation-30d192e4-e8a4-40be-8727-f5e38c56145b/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20160527_115404.jpg,,TRUE, +N1,61051,sortie-30d192e4-e8a4-40be-8727-f5e38c56145b,https://biolit.fr/sorties/sortie-30d192e4-e8a4-40be-8727-f5e38c56145b/,Phil,,5/27/2016 0:00,11.0:55,12.0000000,47.857025000000,-3.919224000000,,Concarneau - Finistère,53988,observation-30d192e4-e8a4-40be-8727-f5e38c56145b-2,https://biolit.fr/observations/observation-30d192e4-e8a4-40be-8727-f5e38c56145b-2/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1020976.JPG,,TRUE, +N1,61051,sortie-30d192e4-e8a4-40be-8727-f5e38c56145b,https://biolit.fr/sorties/sortie-30d192e4-e8a4-40be-8727-f5e38c56145b/,Phil,,5/27/2016 0:00,11.0:55,12.0000000,47.857025000000,-3.919224000000,,Concarneau - Finistère,53990,observation-30d192e4-e8a4-40be-8727-f5e38c56145b-3,https://biolit.fr/observations/observation-30d192e4-e8a4-40be-8727-f5e38c56145b-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020991.JPG,,TRUE, +N1,61052,sortie-ca854fb4-8322-42bb-88b2-8d934d101c2c,https://biolit.fr/sorties/sortie-ca854fb4-8322-42bb-88b2-8d934d101c2c/,Phil,,5/24/2016 0:00,11.0:35,11.0000000,47.792121000000,-3.846532000000,,Trévignon - Finistère,53992,observation-ca854fb4-8322-42bb-88b2-8d934d101c2c,https://biolit.fr/observations/observation-ca854fb4-8322-42bb-88b2-8d934d101c2c/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020882.JPG,,FALSE, +N1,61052,sortie-ca854fb4-8322-42bb-88b2-8d934d101c2c,https://biolit.fr/sorties/sortie-ca854fb4-8322-42bb-88b2-8d934d101c2c/,Phil,,5/24/2016 0:00,11.0:35,11.0000000,47.792121000000,-3.846532000000,,Trévignon - Finistère,53994,observation-ca854fb4-8322-42bb-88b2-8d934d101c2c-2,https://biolit.fr/observations/observation-ca854fb4-8322-42bb-88b2-8d934d101c2c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020876.JPG,,FALSE, +N1,61053,sortie-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2,https://biolit.fr/sorties/sortie-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2/,Phil,,5/21/2016 0:00,11.0:25,11.0000000,47.872750000000,-3.931790000000,,Concarneau - Finistère,53996,observation-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2,https://biolit.fr/observations/observation-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/20160521_113515.jpg,,TRUE, +N1,61053,sortie-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2,https://biolit.fr/sorties/sortie-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2/,Phil,,5/21/2016 0:00,11.0:25,11.0000000,47.872750000000,-3.931790000000,,Concarneau - Finistère,53998,observation-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2-2,https://biolit.fr/observations/observation-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160521_113905.jpg,,FALSE, +N1,61053,sortie-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2,https://biolit.fr/sorties/sortie-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2/,Phil,,5/21/2016 0:00,11.0:25,11.0000000,47.872750000000,-3.931790000000,,Concarneau - Finistère,54000,observation-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2-3,https://biolit.fr/observations/observation-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20160521_113228.jpg,,TRUE, +N1,61053,sortie-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2,https://biolit.fr/sorties/sortie-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2/,Phil,,5/21/2016 0:00,11.0:25,11.0000000,47.872750000000,-3.931790000000,,Concarneau - Finistère,54002,observation-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2-4,https://biolit.fr/observations/observation-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2-4/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20160521_113022.jpg,,TRUE, +N1,61053,sortie-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2,https://biolit.fr/sorties/sortie-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2/,Phil,,5/21/2016 0:00,11.0:25,11.0000000,47.872750000000,-3.931790000000,,Concarneau - Finistère,54004,observation-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2-5,https://biolit.fr/observations/observation-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160521_112822.jpg,,TRUE, +N1,61053,sortie-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2,https://biolit.fr/sorties/sortie-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2/,Phil,,5/21/2016 0:00,11.0:25,11.0000000,47.872750000000,-3.931790000000,,Concarneau - Finistère,54006,observation-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2-6,https://biolit.fr/observations/observation-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2-6/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160521_112428.jpg,,TRUE, +N1,61054,sortie-5c3fd18f-a588-4264-8453-81ff556bdbdc,https://biolit.fr/sorties/sortie-5c3fd18f-a588-4264-8453-81ff556bdbdc/,Phil,,5/28/2016 0:00,14.0000000,14.000005,47.853637000000,-3.913173000000,,Concarneau - Finistère,54008,observation-5c3fd18f-a588-4264-8453-81ff556bdbdc,https://biolit.fr/observations/observation-5c3fd18f-a588-4264-8453-81ff556bdbdc/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/P1030061.JPG,,TRUE, +N1,61054,sortie-5c3fd18f-a588-4264-8453-81ff556bdbdc,https://biolit.fr/sorties/sortie-5c3fd18f-a588-4264-8453-81ff556bdbdc/,Phil,,5/28/2016 0:00,14.0000000,14.000005,47.853637000000,-3.913173000000,,Concarneau - Finistère,54010,observation-5c3fd18f-a588-4264-8453-81ff556bdbdc-2,https://biolit.fr/observations/observation-5c3fd18f-a588-4264-8453-81ff556bdbdc-2/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/P1030063.JPG,,TRUE, +N1,61055,sortie-1c3ba259-5ede-42b3-a52e-a9f47ef08a2b,https://biolit.fr/sorties/sortie-1c3ba259-5ede-42b3-a52e-a9f47ef08a2b/,Phil,,5/28/2016 0:00,13.0:45,14.0000000,47.853382000000,-3.913141000000,,Concarneau - Finistère,54012,observation-1c3ba259-5ede-42b3-a52e-a9f47ef08a2b,https://biolit.fr/observations/observation-1c3ba259-5ede-42b3-a52e-a9f47ef08a2b/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/P1030057.JPG,,TRUE, +N1,61055,sortie-1c3ba259-5ede-42b3-a52e-a9f47ef08a2b,https://biolit.fr/sorties/sortie-1c3ba259-5ede-42b3-a52e-a9f47ef08a2b/,Phil,,5/28/2016 0:00,13.0:45,14.0000000,47.853382000000,-3.913141000000,,Concarneau - Finistère,54014,observation-1c3ba259-5ede-42b3-a52e-a9f47ef08a2b-2,https://biolit.fr/observations/observation-1c3ba259-5ede-42b3-a52e-a9f47ef08a2b-2/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/P1030032.JPG,,TRUE, +N1,61055,sortie-1c3ba259-5ede-42b3-a52e-a9f47ef08a2b,https://biolit.fr/sorties/sortie-1c3ba259-5ede-42b3-a52e-a9f47ef08a2b/,Phil,,5/28/2016 0:00,13.0:45,14.0000000,47.853382000000,-3.913141000000,,Concarneau - Finistère,54016,observation-1c3ba259-5ede-42b3-a52e-a9f47ef08a2b-3,https://biolit.fr/observations/observation-1c3ba259-5ede-42b3-a52e-a9f47ef08a2b-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1030025.JPG,,TRUE, +N1,61056,sortie-f4c965c8-c020-47aa-ac28-218b3a6f24e7,https://biolit.fr/sorties/sortie-f4c965c8-c020-47aa-ac28-218b3a6f24e7/,Phil,,5/20/2016 0:00,16.0:55,17.0000000,47.894644000000,-3.952051000000,,La Forêt-Fouesnant - Finistère,54018,observation-f4c965c8-c020-47aa-ac28-218b3a6f24e7,https://biolit.fr/observations/observation-f4c965c8-c020-47aa-ac28-218b3a6f24e7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160525_165843.jpg,,FALSE, +N1,61057,sortie-46d27d31-0fe1-494f-afc0-3aaaf1d25644,https://biolit.fr/sorties/sortie-46d27d31-0fe1-494f-afc0-3aaaf1d25644/,Phil,,5/27/2016 0:00,11.0:15,11.0000000,47.857426000000,-3.91751800000,,Concarneau - Finistère,54020,observation-46d27d31-0fe1-494f-afc0-3aaaf1d25644,https://biolit.fr/observations/observation-46d27d31-0fe1-494f-afc0-3aaaf1d25644/,Leucoraja naevus,Raie fleurie,,https://biolit.fr/wp-content/uploads/2023/07/P1020915.JPG,,TRUE, +N1,61058,sortie-5529951b-7a6b-4619-8bb7-fdc5c691c91c,https://biolit.fr/sorties/sortie-5529951b-7a6b-4619-8bb7-fdc5c691c91c/,Phil,,5/23/2016 0:00,12.0:25,12.0000000,47.790319000000,-4.270128000000,,Treffiagat - Finistère,54024,observation-5529951b-7a6b-4619-8bb7-fdc5c691c91c,https://biolit.fr/observations/observation-5529951b-7a6b-4619-8bb7-fdc5c691c91c/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160523_122750.jpg,,TRUE, +N1,61058,sortie-5529951b-7a6b-4619-8bb7-fdc5c691c91c,https://biolit.fr/sorties/sortie-5529951b-7a6b-4619-8bb7-fdc5c691c91c/,Phil,,5/23/2016 0:00,12.0:25,12.0000000,47.790319000000,-4.270128000000,,Treffiagat - Finistère,54026,observation-5529951b-7a6b-4619-8bb7-fdc5c691c91c-2,https://biolit.fr/observations/observation-5529951b-7a6b-4619-8bb7-fdc5c691c91c-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160523_122934.jpg,,TRUE, +N1,61058,sortie-5529951b-7a6b-4619-8bb7-fdc5c691c91c,https://biolit.fr/sorties/sortie-5529951b-7a6b-4619-8bb7-fdc5c691c91c/,Phil,,5/23/2016 0:00,12.0:25,12.0000000,47.790319000000,-4.270128000000,,Treffiagat - Finistère,54028,observation-5529951b-7a6b-4619-8bb7-fdc5c691c91c-3,https://biolit.fr/observations/observation-5529951b-7a6b-4619-8bb7-fdc5c691c91c-3/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20160523_123003.jpg,,TRUE, +N1,61059,sortie-c9dbcdae-513e-4148-80fd-8a21465757c1,https://biolit.fr/sorties/sortie-c9dbcdae-513e-4148-80fd-8a21465757c1/,jroger,,5/21/2016 0:00,11.0000000,13.0000000,43.214849000000,5.34295300000,,Anse de la Maronnaise,54030,observation-c9dbcdae-513e-4148-80fd-8a21465757c1,https://biolit.fr/observations/observation-c9dbcdae-513e-4148-80fd-8a21465757c1/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1775-scaled.jpg,,FALSE, +N1,61059,sortie-c9dbcdae-513e-4148-80fd-8a21465757c1,https://biolit.fr/sorties/sortie-c9dbcdae-513e-4148-80fd-8a21465757c1/,jroger,,5/21/2016 0:00,11.0000000,13.0000000,43.214849000000,5.34295300000,,Anse de la Maronnaise,54032,observation-c9dbcdae-513e-4148-80fd-8a21465757c1-2,https://biolit.fr/observations/observation-c9dbcdae-513e-4148-80fd-8a21465757c1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1782-scaled.jpg,,FALSE, +N1,61059,sortie-c9dbcdae-513e-4148-80fd-8a21465757c1,https://biolit.fr/sorties/sortie-c9dbcdae-513e-4148-80fd-8a21465757c1/,jroger,,5/21/2016 0:00,11.0000000,13.0000000,43.214849000000,5.34295300000,,Anse de la Maronnaise,54034,observation-c9dbcdae-513e-4148-80fd-8a21465757c1-3,https://biolit.fr/observations/observation-c9dbcdae-513e-4148-80fd-8a21465757c1-3/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1786-scaled.jpg,,TRUE, +N1,61059,sortie-c9dbcdae-513e-4148-80fd-8a21465757c1,https://biolit.fr/sorties/sortie-c9dbcdae-513e-4148-80fd-8a21465757c1/,jroger,,5/21/2016 0:00,11.0000000,13.0000000,43.214849000000,5.34295300000,,Anse de la Maronnaise,54036,observation-c9dbcdae-513e-4148-80fd-8a21465757c1-4,https://biolit.fr/observations/observation-c9dbcdae-513e-4148-80fd-8a21465757c1-4/,Nemalion elminthoides,Némalion vermiforme,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1788-scaled.jpg,,TRUE, +N1,61059,sortie-c9dbcdae-513e-4148-80fd-8a21465757c1,https://biolit.fr/sorties/sortie-c9dbcdae-513e-4148-80fd-8a21465757c1/,jroger,,5/21/2016 0:00,11.0000000,13.0000000,43.214849000000,5.34295300000,,Anse de la Maronnaise,54038,observation-c9dbcdae-513e-4148-80fd-8a21465757c1-5,https://biolit.fr/observations/observation-c9dbcdae-513e-4148-80fd-8a21465757c1-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1798-scaled.jpg,,FALSE, +N1,61059,sortie-c9dbcdae-513e-4148-80fd-8a21465757c1,https://biolit.fr/sorties/sortie-c9dbcdae-513e-4148-80fd-8a21465757c1/,jroger,,5/21/2016 0:00,11.0000000,13.0000000,43.214849000000,5.34295300000,,Anse de la Maronnaise,54040,observation-c9dbcdae-513e-4148-80fd-8a21465757c1-6,https://biolit.fr/observations/observation-c9dbcdae-513e-4148-80fd-8a21465757c1-6/,Xantho poressa,Xanthe de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1800-scaled.jpg,,TRUE, +N1,61059,sortie-c9dbcdae-513e-4148-80fd-8a21465757c1,https://biolit.fr/sorties/sortie-c9dbcdae-513e-4148-80fd-8a21465757c1/,jroger,,5/21/2016 0:00,11.0000000,13.0000000,43.214849000000,5.34295300000,,Anse de la Maronnaise,54042,observation-c9dbcdae-513e-4148-80fd-8a21465757c1-7,https://biolit.fr/observations/observation-c9dbcdae-513e-4148-80fd-8a21465757c1-7/,Xantho poressa,Xanthe de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1804-scaled.jpg,,TRUE, +N1,61059,sortie-c9dbcdae-513e-4148-80fd-8a21465757c1,https://biolit.fr/sorties/sortie-c9dbcdae-513e-4148-80fd-8a21465757c1/,jroger,,5/21/2016 0:00,11.0000000,13.0000000,43.214849000000,5.34295300000,,Anse de la Maronnaise,54044,observation-c9dbcdae-513e-4148-80fd-8a21465757c1-8,https://biolit.fr/observations/observation-c9dbcdae-513e-4148-80fd-8a21465757c1-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1805-scaled.jpg,,FALSE, +N1,61060,sortie-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf,https://biolit.fr/sorties/sortie-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf/,Phil,,5/21/2016 0:00,11.0000000,12.000005,47.873494000000,-3.930915000000,,Concarneau - Finistère,54046,observation-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf,https://biolit.fr/observations/observation-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf/,Pholis gunnellus,Gonnelle,,https://biolit.fr/wp-content/uploads/2023/07/20160521_110609.jpg,,TRUE, +N1,61060,sortie-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf,https://biolit.fr/sorties/sortie-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf/,Phil,,5/21/2016 0:00,11.0000000,12.000005,47.873494000000,-3.930915000000,,Concarneau - Finistère,54048,observation-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf-2,https://biolit.fr/observations/observation-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160521_110615.jpg,,FALSE, +N1,61060,sortie-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf,https://biolit.fr/sorties/sortie-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf/,Phil,,5/21/2016 0:00,11.0000000,12.000005,47.873494000000,-3.930915000000,,Concarneau - Finistère,54050,observation-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf-3,https://biolit.fr/observations/observation-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160521_110927.jpg,,FALSE, +N1,61060,sortie-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf,https://biolit.fr/sorties/sortie-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf/,Phil,,5/21/2016 0:00,11.0000000,12.000005,47.873494000000,-3.930915000000,,Concarneau - Finistère,54052,observation-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf-4,https://biolit.fr/observations/observation-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf-4/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20160521_111153.jpg,,TRUE, +N1,61060,sortie-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf,https://biolit.fr/sorties/sortie-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf/,Phil,,5/21/2016 0:00,11.0000000,12.000005,47.873494000000,-3.930915000000,,Concarneau - Finistère,54054,observation-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf-5,https://biolit.fr/observations/observation-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf-5/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/20160521_111329.jpg,,TRUE, +N1,61061,sortie-3b5e3db4-2aa8-42ad-92e1-dba767c4ab82,https://biolit.fr/sorties/sortie-3b5e3db4-2aa8-42ad-92e1-dba767c4ab82/,Phil,,5/23/2016 0:00,12.0000000,12.0000000,47.789361000000,-4.272739000000,,Treffiagat - Finistère,54056,observation-3b5e3db4-2aa8-42ad-92e1-dba767c4ab82,https://biolit.fr/observations/observation-3b5e3db4-2aa8-42ad-92e1-dba767c4ab82/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20160523_120626.jpg,,TRUE, +N1,61061,sortie-3b5e3db4-2aa8-42ad-92e1-dba767c4ab82,https://biolit.fr/sorties/sortie-3b5e3db4-2aa8-42ad-92e1-dba767c4ab82/,Phil,,5/23/2016 0:00,12.0000000,12.0000000,47.789361000000,-4.272739000000,,Treffiagat - Finistère,54058,observation-3b5e3db4-2aa8-42ad-92e1-dba767c4ab82-2,https://biolit.fr/observations/observation-3b5e3db4-2aa8-42ad-92e1-dba767c4ab82-2/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/20160523_120526.jpg,,TRUE, +N1,61061,sortie-3b5e3db4-2aa8-42ad-92e1-dba767c4ab82,https://biolit.fr/sorties/sortie-3b5e3db4-2aa8-42ad-92e1-dba767c4ab82/,Phil,,5/23/2016 0:00,12.0000000,12.0000000,47.789361000000,-4.272739000000,,Treffiagat - Finistère,54060,observation-3b5e3db4-2aa8-42ad-92e1-dba767c4ab82-3,https://biolit.fr/observations/observation-3b5e3db4-2aa8-42ad-92e1-dba767c4ab82-3/,Saccharina latissima,Laminaire sucrée,,https://biolit.fr/wp-content/uploads/2023/07/20160523_120227.jpg,,TRUE, +N1,61062,sortie-3d03d354-d201-45fc-b0ea-1dfb01e65039,https://biolit.fr/sorties/sortie-3d03d354-d201-45fc-b0ea-1dfb01e65039/,dav,,5/21/2016 0:00,14.0000000,15.0000000,43.214964000000,5.342379000000,,Anse de la Maronaise,54062,observation-3d03d354-d201-45fc-b0ea-1dfb01e65039,https://biolit.fr/observations/observation-3d03d354-d201-45fc-b0ea-1dfb01e65039/,Oblada melanura,Oblade,,https://biolit.fr/wp-content/uploads/2023/07/GOPR6391.JPG,,TRUE, +N1,61062,sortie-3d03d354-d201-45fc-b0ea-1dfb01e65039,https://biolit.fr/sorties/sortie-3d03d354-d201-45fc-b0ea-1dfb01e65039/,dav,,5/21/2016 0:00,14.0000000,15.0000000,43.214964000000,5.342379000000,,Anse de la Maronaise,54064,observation-3d03d354-d201-45fc-b0ea-1dfb01e65039-2,https://biolit.fr/observations/observation-3d03d354-d201-45fc-b0ea-1dfb01e65039-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/GOPR6382.JPG,,FALSE, +N1,61063,sortie-def9fa6f-b526-4739-9247-8833635db9d2,https://biolit.fr/sorties/sortie-def9fa6f-b526-4739-9247-8833635db9d2/,AIEJE,,5/30/2016 0:00,12.0000000,12.0000000,43.333100000000,5.199833000000,,"port de la redonne, ensues la redonne",54066,observation-def9fa6f-b526-4739-9247-8833635db9d2,https://biolit.fr/observations/observation-def9fa6f-b526-4739-9247-8833635db9d2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3091-rotated.jpg,,FALSE, +N1,61064,sortie-11c0b33a-30ea-49ab-a55c-9008c226b7e2,https://biolit.fr/sorties/sortie-11c0b33a-30ea-49ab-a55c-9008c226b7e2/,AIEJE,,5/30/2016 0:00,10.0000000,11.0000000,43.333925000000,5.197793000000,,"plage des pebraire, ensues la redonne",54068,observation-11c0b33a-30ea-49ab-a55c-9008c226b7e2,https://biolit.fr/observations/observation-11c0b33a-30ea-49ab-a55c-9008c226b7e2/,Mola mola,Poisson-lune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3087.JPG,,TRUE, +N1,61065,sortie-969d797d-eaa6-460f-98bd-9aeb749d704d,https://biolit.fr/sorties/sortie-969d797d-eaa6-460f-98bd-9aeb749d704d/,Phil,,5/23/2016 0:00,11.0:45,12.0:25,47.787835000000,-4.270763000000,,Treffiagat - Finistère,54070,observation-969d797d-eaa6-460f-98bd-9aeb749d704d,https://biolit.fr/observations/observation-969d797d-eaa6-460f-98bd-9aeb749d704d/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20160523_122105.jpg,,TRUE, +N1,61065,sortie-969d797d-eaa6-460f-98bd-9aeb749d704d,https://biolit.fr/sorties/sortie-969d797d-eaa6-460f-98bd-9aeb749d704d/,Phil,,5/23/2016 0:00,11.0:45,12.0:25,47.787835000000,-4.270763000000,,Treffiagat - Finistère,54072,observation-969d797d-eaa6-460f-98bd-9aeb749d704d-2,https://biolit.fr/observations/observation-969d797d-eaa6-460f-98bd-9aeb749d704d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160523_121853.jpg,,FALSE, +N1,61065,sortie-969d797d-eaa6-460f-98bd-9aeb749d704d,https://biolit.fr/sorties/sortie-969d797d-eaa6-460f-98bd-9aeb749d704d/,Phil,,5/23/2016 0:00,11.0:45,12.0:25,47.787835000000,-4.270763000000,,Treffiagat - Finistère,54074,observation-969d797d-eaa6-460f-98bd-9aeb749d704d-3,https://biolit.fr/observations/observation-969d797d-eaa6-460f-98bd-9aeb749d704d-3/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160523_121703.jpg,,TRUE, +N1,61065,sortie-969d797d-eaa6-460f-98bd-9aeb749d704d,https://biolit.fr/sorties/sortie-969d797d-eaa6-460f-98bd-9aeb749d704d/,Phil,,5/23/2016 0:00,11.0:45,12.0:25,47.787835000000,-4.270763000000,,Treffiagat - Finistère,54076,observation-969d797d-eaa6-460f-98bd-9aeb749d704d-4,https://biolit.fr/observations/observation-969d797d-eaa6-460f-98bd-9aeb749d704d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160523_122533.jpg,,FALSE, +N1,61065,sortie-969d797d-eaa6-460f-98bd-9aeb749d704d,https://biolit.fr/sorties/sortie-969d797d-eaa6-460f-98bd-9aeb749d704d/,Phil,,5/23/2016 0:00,11.0:45,12.0:25,47.787835000000,-4.270763000000,,Treffiagat - Finistère,54078,observation-969d797d-eaa6-460f-98bd-9aeb749d704d-5,https://biolit.fr/observations/observation-969d797d-eaa6-460f-98bd-9aeb749d704d-5/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/20160523_122509.jpg,,TRUE, +N1,61065,sortie-969d797d-eaa6-460f-98bd-9aeb749d704d,https://biolit.fr/sorties/sortie-969d797d-eaa6-460f-98bd-9aeb749d704d/,Phil,,5/23/2016 0:00,11.0:45,12.0:25,47.787835000000,-4.270763000000,,Treffiagat - Finistère,54080,observation-969d797d-eaa6-460f-98bd-9aeb749d704d-6,https://biolit.fr/observations/observation-969d797d-eaa6-460f-98bd-9aeb749d704d-6/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20160523_122143.jpg,,TRUE, +N1,61065,sortie-969d797d-eaa6-460f-98bd-9aeb749d704d,https://biolit.fr/sorties/sortie-969d797d-eaa6-460f-98bd-9aeb749d704d/,Phil,,5/23/2016 0:00,11.0:45,12.0:25,47.787835000000,-4.270763000000,,Treffiagat - Finistère,54082,observation-969d797d-eaa6-460f-98bd-9aeb749d704d-7,https://biolit.fr/observations/observation-969d797d-eaa6-460f-98bd-9aeb749d704d-7/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20160523_122136.jpg,,TRUE, +N1,61065,sortie-969d797d-eaa6-460f-98bd-9aeb749d704d,https://biolit.fr/sorties/sortie-969d797d-eaa6-460f-98bd-9aeb749d704d/,Phil,,5/23/2016 0:00,11.0:45,12.0:25,47.787835000000,-4.270763000000,,Treffiagat - Finistère,54084,observation-969d797d-eaa6-460f-98bd-9aeb749d704d-8,https://biolit.fr/observations/observation-969d797d-eaa6-460f-98bd-9aeb749d704d-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160523_122556.jpg,,FALSE, +N1,61066,sortie-7f9dc519-cdc4-499a-b7d7-661fc2fdf763,https://biolit.fr/sorties/sortie-7f9dc519-cdc4-499a-b7d7-661fc2fdf763/,Ville de Marseille Ecole National CM1A,,05/02/2016,10.0000000,12.0000000,43.267757000000,5.370384000000,,MARSEILLE 13008,54086,observation-7f9dc519-cdc4-499a-b7d7-661fc2fdf763,https://biolit.fr/observations/observation-7f9dc519-cdc4-499a-b7d7-661fc2fdf763/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabe vert Carcinus maenas-scaled.jpg,,FALSE, +N1,61066,sortie-7f9dc519-cdc4-499a-b7d7-661fc2fdf763,https://biolit.fr/sorties/sortie-7f9dc519-cdc4-499a-b7d7-661fc2fdf763/,Ville de Marseille Ecole National CM1A,,05/02/2016,10.0000000,12.0000000,43.267757000000,5.370384000000,,MARSEILLE 13008,54088,observation-7f9dc519-cdc4-499a-b7d7-661fc2fdf763-2,https://biolit.fr/observations/observation-7f9dc519-cdc4-499a-b7d7-661fc2fdf763-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/concombre de mer Holothurie tubuleuse ventre-scaled.jpg,,FALSE, +N1,61066,sortie-7f9dc519-cdc4-499a-b7d7-661fc2fdf763,https://biolit.fr/sorties/sortie-7f9dc519-cdc4-499a-b7d7-661fc2fdf763/,Ville de Marseille Ecole National CM1A,,05/02/2016,10.0000000,12.0000000,43.267757000000,5.370384000000,,MARSEILLE 13008,54090,observation-7f9dc519-cdc4-499a-b7d7-661fc2fdf763-3,https://biolit.fr/observations/observation-7f9dc519-cdc4-499a-b7d7-661fc2fdf763-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/concombre de mer Holothurie tubuleuse dos-scaled.jpg,,FALSE, +N1,61066,sortie-7f9dc519-cdc4-499a-b7d7-661fc2fdf763,https://biolit.fr/sorties/sortie-7f9dc519-cdc4-499a-b7d7-661fc2fdf763/,Ville de Marseille Ecole National CM1A,,05/02/2016,10.0000000,12.0000000,43.267757000000,5.370384000000,,MARSEILLE 13008,54092,observation-7f9dc519-cdc4-499a-b7d7-661fc2fdf763-4,https://biolit.fr/observations/observation-7f9dc519-cdc4-499a-b7d7-661fc2fdf763-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mulet a grosse tête Mugil cephalus-scaled.jpg,,FALSE, +N1,61066,sortie-7f9dc519-cdc4-499a-b7d7-661fc2fdf763,https://biolit.fr/sorties/sortie-7f9dc519-cdc4-499a-b7d7-661fc2fdf763/,Ville de Marseille Ecole National CM1A,,05/02/2016,10.0000000,12.0000000,43.267757000000,5.370384000000,,MARSEILLE 13008,54094,observation-7f9dc519-cdc4-499a-b7d7-661fc2fdf763-5,https://biolit.fr/observations/observation-7f9dc519-cdc4-499a-b7d7-661fc2fdf763-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Palourde commune Venerupis decussata1-scaled.jpg,,FALSE, +N1,61066,sortie-7f9dc519-cdc4-499a-b7d7-661fc2fdf763,https://biolit.fr/sorties/sortie-7f9dc519-cdc4-499a-b7d7-661fc2fdf763/,Ville de Marseille Ecole National CM1A,,05/02/2016,10.0000000,12.0000000,43.267757000000,5.370384000000,,MARSEILLE 13008,54096,observation-7f9dc519-cdc4-499a-b7d7-661fc2fdf763-6,https://biolit.fr/observations/observation-7f9dc519-cdc4-499a-b7d7-661fc2fdf763-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Palourde commune Venerupis decussata2-scaled.jpg,,FALSE, +N1,61067,sortie-0c239fc4-cace-4902-b0cd-82e7a0069629,https://biolit.fr/sorties/sortie-0c239fc4-cace-4902-b0cd-82e7a0069629/,Phil,,5/27/2016 0:00,11.0:25,11.0000000,47.857249000000,-3.917518000000,,Concarneau - Finistère,54098,observation-0c239fc4-cace-4902-b0cd-82e7a0069629,https://biolit.fr/observations/observation-0c239fc4-cace-4902-b0cd-82e7a0069629/,Phalacrocorax aristotelis,Cormoran huppé,,https://biolit.fr/wp-content/uploads/2023/07/P1020940.JPG,,TRUE, +N1,61068,sortie-347146f5-188f-4bc8-bc2b-e6307041c15f,https://biolit.fr/sorties/sortie-347146f5-188f-4bc8-bc2b-e6307041c15f/,Phil,,5/25/2016 0:00,17.000005,17.0000000,47.894188000000,-3.953312000000,,La Forêt-Fouesnant - Finistère,54100,observation-347146f5-188f-4bc8-bc2b-e6307041c15f,https://biolit.fr/observations/observation-347146f5-188f-4bc8-bc2b-e6307041c15f/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/20160525_171925.jpg,,TRUE, +N1,61068,sortie-347146f5-188f-4bc8-bc2b-e6307041c15f,https://biolit.fr/sorties/sortie-347146f5-188f-4bc8-bc2b-e6307041c15f/,Phil,,5/25/2016 0:00,17.000005,17.0000000,47.894188000000,-3.953312000000,,La Forêt-Fouesnant - Finistère,54102,observation-347146f5-188f-4bc8-bc2b-e6307041c15f-2,https://biolit.fr/observations/observation-347146f5-188f-4bc8-bc2b-e6307041c15f-2/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20160525_171812.jpg,,TRUE, +N1,61068,sortie-347146f5-188f-4bc8-bc2b-e6307041c15f,https://biolit.fr/sorties/sortie-347146f5-188f-4bc8-bc2b-e6307041c15f/,Phil,,5/25/2016 0:00,17.000005,17.0000000,47.894188000000,-3.953312000000,,La Forêt-Fouesnant - Finistère,54104,observation-347146f5-188f-4bc8-bc2b-e6307041c15f-3,https://biolit.fr/observations/observation-347146f5-188f-4bc8-bc2b-e6307041c15f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160525_172127.jpg,,FALSE, +N1,61069,sortie-b770b953-f590-42ae-b6c2-cbc5c091d413,https://biolit.fr/sorties/sortie-b770b953-f590-42ae-b6c2-cbc5c091d413/,dav,,5/21/2016 0:00,10.0000000,15.0000000,43.21483900000,5.34290800000,,Anse de la Maronaise,54106,observation-b770b953-f590-42ae-b6c2-cbc5c091d413,https://biolit.fr/observations/observation-b770b953-f590-42ae-b6c2-cbc5c091d413/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9553-scaled.jpg,,TRUE, +N1,61069,sortie-b770b953-f590-42ae-b6c2-cbc5c091d413,https://biolit.fr/sorties/sortie-b770b953-f590-42ae-b6c2-cbc5c091d413/,dav,,5/21/2016 0:00,10.0000000,15.0000000,43.21483900000,5.34290800000,,Anse de la Maronaise,54108,observation-b770b953-f590-42ae-b6c2-cbc5c091d413-2,https://biolit.fr/observations/observation-b770b953-f590-42ae-b6c2-cbc5c091d413-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9554-scaled.jpg,,TRUE, +N1,61070,sortie-485229fd-3d1d-481e-8b16-50de3deeabeb,https://biolit.fr/sorties/sortie-485229fd-3d1d-481e-8b16-50de3deeabeb/,Jérémie,,5/21/2016 0:00,14.0000000,16.0000000,43.214973000000,5.342943000000,,Anse de la Maronaise,54110,observation-485229fd-3d1d-481e-8b16-50de3deeabeb,https://biolit.fr/observations/observation-485229fd-3d1d-481e-8b16-50de3deeabeb/,,,,https://biolit.fr/wp-content/uploads/2023/07/P5210050-scaled.jpg,,FALSE, +N1,61070,sortie-485229fd-3d1d-481e-8b16-50de3deeabeb,https://biolit.fr/sorties/sortie-485229fd-3d1d-481e-8b16-50de3deeabeb/,Jérémie,,5/21/2016 0:00,14.0000000,16.0000000,43.214973000000,5.342943000000,,Anse de la Maronaise,54112,observation-485229fd-3d1d-481e-8b16-50de3deeabeb-2,https://biolit.fr/observations/observation-485229fd-3d1d-481e-8b16-50de3deeabeb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P5210065-scaled.jpg,,FALSE, +N1,61070,sortie-485229fd-3d1d-481e-8b16-50de3deeabeb,https://biolit.fr/sorties/sortie-485229fd-3d1d-481e-8b16-50de3deeabeb/,Jérémie,,5/21/2016 0:00,14.0000000,16.0000000,43.214973000000,5.342943000000,,Anse de la Maronaise,54114,observation-485229fd-3d1d-481e-8b16-50de3deeabeb-3,https://biolit.fr/observations/observation-485229fd-3d1d-481e-8b16-50de3deeabeb-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P5210071-scaled.jpg,,FALSE, +N1,61070,sortie-485229fd-3d1d-481e-8b16-50de3deeabeb,https://biolit.fr/sorties/sortie-485229fd-3d1d-481e-8b16-50de3deeabeb/,Jérémie,,5/21/2016 0:00,14.0000000,16.0000000,43.214973000000,5.342943000000,,Anse de la Maronaise,54116,observation-485229fd-3d1d-481e-8b16-50de3deeabeb-4,https://biolit.fr/observations/observation-485229fd-3d1d-481e-8b16-50de3deeabeb-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P5210074-scaled.jpg,,FALSE, +N1,61070,sortie-485229fd-3d1d-481e-8b16-50de3deeabeb,https://biolit.fr/sorties/sortie-485229fd-3d1d-481e-8b16-50de3deeabeb/,Jérémie,,5/21/2016 0:00,14.0000000,16.0000000,43.214973000000,5.342943000000,,Anse de la Maronaise,54118,observation-485229fd-3d1d-481e-8b16-50de3deeabeb-5,https://biolit.fr/observations/observation-485229fd-3d1d-481e-8b16-50de3deeabeb-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P5210079-scaled.jpg,,FALSE, +N1,61071,sortie-dac1daea-2ede-4ea5-9439-33f0bff27cae,https://biolit.fr/sorties/sortie-dac1daea-2ede-4ea5-9439-33f0bff27cae/,Phil,,5/27/2016 0:00,11.0:45,11.0000000,47.856936000000,-3.918988000000,,Concarneau - Finistère,54120,observation-dac1daea-2ede-4ea5-9439-33f0bff27cae,https://biolit.fr/observations/observation-dac1daea-2ede-4ea5-9439-33f0bff27cae/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160527_114417.jpg,,FALSE, +N1,61071,sortie-dac1daea-2ede-4ea5-9439-33f0bff27cae,https://biolit.fr/sorties/sortie-dac1daea-2ede-4ea5-9439-33f0bff27cae/,Phil,,5/27/2016 0:00,11.0:45,11.0000000,47.856936000000,-3.918988000000,,Concarneau - Finistère,54122,observation-dac1daea-2ede-4ea5-9439-33f0bff27cae-2,https://biolit.fr/observations/observation-dac1daea-2ede-4ea5-9439-33f0bff27cae-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020951.JPG,,FALSE, +N1,61071,sortie-dac1daea-2ede-4ea5-9439-33f0bff27cae,https://biolit.fr/sorties/sortie-dac1daea-2ede-4ea5-9439-33f0bff27cae/,Phil,,5/27/2016 0:00,11.0:45,11.0000000,47.856936000000,-3.918988000000,,Concarneau - Finistère,54124,observation-dac1daea-2ede-4ea5-9439-33f0bff27cae-3,https://biolit.fr/observations/observation-dac1daea-2ede-4ea5-9439-33f0bff27cae-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020952.JPG,,FALSE, +N1,61071,sortie-dac1daea-2ede-4ea5-9439-33f0bff27cae,https://biolit.fr/sorties/sortie-dac1daea-2ede-4ea5-9439-33f0bff27cae/,Phil,,5/27/2016 0:00,11.0:45,11.0000000,47.856936000000,-3.918988000000,,Concarneau - Finistère,54126,observation-dac1daea-2ede-4ea5-9439-33f0bff27cae-4,https://biolit.fr/observations/observation-dac1daea-2ede-4ea5-9439-33f0bff27cae-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020955.JPG,,FALSE, +N1,61072,sortie-ea445d04-9d0d-43ed-b18b-3622ae466541,https://biolit.fr/sorties/sortie-ea445d04-9d0d-43ed-b18b-3622ae466541/,Phil,,5/27/2016 0:00,11.0000000,11.0:15,47.859343000000,-3.913731000000,,Concarneau - Finistère,54128,observation-ea445d04-9d0d-43ed-b18b-3622ae466541,https://biolit.fr/observations/observation-ea445d04-9d0d-43ed-b18b-3622ae466541/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1020900.JPG,,TRUE, +N1,61073,sortie-911a0a8b-b7d4-4413-811a-be006d271820,https://biolit.fr/sorties/sortie-911a0a8b-b7d4-4413-811a-be006d271820/,Phil,,5/23/2016 0:00,12.000005,12.0:15,47.790055000000,-4.271008000000,,Treffiagat - Finistère,54130,observation-911a0a8b-b7d4-4413-811a-be006d271820,https://biolit.fr/observations/observation-911a0a8b-b7d4-4413-811a-be006d271820/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/20160523_121141.jpg,,TRUE, +N1,61073,sortie-911a0a8b-b7d4-4413-811a-be006d271820,https://biolit.fr/sorties/sortie-911a0a8b-b7d4-4413-811a-be006d271820/,Phil,,5/23/2016 0:00,12.000005,12.0:15,47.790055000000,-4.271008000000,,Treffiagat - Finistère,54132,observation-911a0a8b-b7d4-4413-811a-be006d271820-2,https://biolit.fr/observations/observation-911a0a8b-b7d4-4413-811a-be006d271820-2/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/20160523_121210.jpg,,TRUE, +N1,61073,sortie-911a0a8b-b7d4-4413-811a-be006d271820,https://biolit.fr/sorties/sortie-911a0a8b-b7d4-4413-811a-be006d271820/,Phil,,5/23/2016 0:00,12.000005,12.0:15,47.790055000000,-4.271008000000,,Treffiagat - Finistère,54134,observation-911a0a8b-b7d4-4413-811a-be006d271820-3,https://biolit.fr/observations/observation-911a0a8b-b7d4-4413-811a-be006d271820-3/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/20160523_121436.jpg,,TRUE, +N1,61073,sortie-911a0a8b-b7d4-4413-811a-be006d271820,https://biolit.fr/sorties/sortie-911a0a8b-b7d4-4413-811a-be006d271820/,Phil,,5/23/2016 0:00,12.000005,12.0:15,47.790055000000,-4.271008000000,,Treffiagat - Finistère,54136,observation-911a0a8b-b7d4-4413-811a-be006d271820-4,https://biolit.fr/observations/observation-911a0a8b-b7d4-4413-811a-be006d271820-4/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/20160523_121514.jpg,,TRUE, +N1,61073,sortie-911a0a8b-b7d4-4413-811a-be006d271820,https://biolit.fr/sorties/sortie-911a0a8b-b7d4-4413-811a-be006d271820/,Phil,,5/23/2016 0:00,12.000005,12.0:15,47.790055000000,-4.271008000000,,Treffiagat - Finistère,54138,observation-911a0a8b-b7d4-4413-811a-be006d271820-5,https://biolit.fr/observations/observation-911a0a8b-b7d4-4413-811a-be006d271820-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160523_120740.jpg,,FALSE, +N1,61074,sortie-0a0719d7-1889-46c0-af14-5e4ed7f870ac,https://biolit.fr/sorties/sortie-0a0719d7-1889-46c0-af14-5e4ed7f870ac/,Phil,,5/21/2016 0:00,10.0:45,11.0000000,47.873264000000,-3.932042000000,,Concarneau - Finistère,54140,observation-0a0719d7-1889-46c0-af14-5e4ed7f870ac,https://biolit.fr/observations/observation-0a0719d7-1889-46c0-af14-5e4ed7f870ac/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20160521_110520.jpg,,TRUE, +N1,61074,sortie-0a0719d7-1889-46c0-af14-5e4ed7f870ac,https://biolit.fr/sorties/sortie-0a0719d7-1889-46c0-af14-5e4ed7f870ac/,Phil,,5/21/2016 0:00,10.0:45,11.0000000,47.873264000000,-3.932042000000,,Concarneau - Finistère,54142,observation-0a0719d7-1889-46c0-af14-5e4ed7f870ac-2,https://biolit.fr/observations/observation-0a0719d7-1889-46c0-af14-5e4ed7f870ac-2/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20160521_110428.jpg,,TRUE, +N1,61074,sortie-0a0719d7-1889-46c0-af14-5e4ed7f870ac,https://biolit.fr/sorties/sortie-0a0719d7-1889-46c0-af14-5e4ed7f870ac/,Phil,,5/21/2016 0:00,10.0:45,11.0000000,47.873264000000,-3.932042000000,,Concarneau - Finistère,54144,observation-0a0719d7-1889-46c0-af14-5e4ed7f870ac-3,https://biolit.fr/observations/observation-0a0719d7-1889-46c0-af14-5e4ed7f870ac-3/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160521_111041.jpg,,TRUE, +N1,61074,sortie-0a0719d7-1889-46c0-af14-5e4ed7f870ac,https://biolit.fr/sorties/sortie-0a0719d7-1889-46c0-af14-5e4ed7f870ac/,Phil,,5/21/2016 0:00,10.0:45,11.0000000,47.873264000000,-3.932042000000,,Concarneau - Finistère,54146,observation-0a0719d7-1889-46c0-af14-5e4ed7f870ac-4,https://biolit.fr/observations/observation-0a0719d7-1889-46c0-af14-5e4ed7f870ac-4/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160521_111124.jpg,,TRUE, +N1,61075,sortie-06a1a00f-e82b-4dd2-b0bc-6435bc30bcce,https://biolit.fr/sorties/sortie-06a1a00f-e82b-4dd2-b0bc-6435bc30bcce/,Marine,,5/21/2016 0:00,9.0000000,15.0000000,43.214961000000,5.343019000000,,Anse de la Maronaise,54148,observation-06a1a00f-e82b-4dd2-b0bc-6435bc30bcce,https://biolit.fr/observations/observation-06a1a00f-e82b-4dd2-b0bc-6435bc30bcce/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0204-scaled.jpg,,FALSE, +N1,61076,sortie-675c38df-3084-4491-a4c6-e34dd659c0cc,https://biolit.fr/sorties/sortie-675c38df-3084-4491-a4c6-e34dd659c0cc/,Marine,,5/21/2016 0:00,9.0000000,15.0000000,43.214981000000,5.342986000000,,Anse de la Maronaise,54150,observation-675c38df-3084-4491-a4c6-e34dd659c0cc,https://biolit.fr/observations/observation-675c38df-3084-4491-a4c6-e34dd659c0cc/,Nemalion elminthoides,Némalion vermiforme,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0097-scaled.jpg,,TRUE, +N1,61077,sortie-937c5df4-823b-4e05-b46f-ccb66eff4e62,https://biolit.fr/sorties/sortie-937c5df4-823b-4e05-b46f-ccb66eff4e62/,Marine,,5/21/2016 0:00,9.0000000,15.0000000,43.21500500000,5.34293300000,,Anse de la Maronaise,54152,observation-937c5df4-823b-4e05-b46f-ccb66eff4e62,https://biolit.fr/observations/observation-937c5df4-823b-4e05-b46f-ccb66eff4e62/,Parablennius incognitus,Blennie diabolo,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0103_0-scaled.jpg,,TRUE, +N1,61078,sortie-71de0374-8aa8-4473-9ff8-47482e6ffc8f,https://biolit.fr/sorties/sortie-71de0374-8aa8-4473-9ff8-47482e6ffc8f/,Marine,,5/21/2016 0:00,9.0000000,15.0000000,43.214926000000,5.342976000000,,Anse de la Maronaise,54154,observation-71de0374-8aa8-4473-9ff8-47482e6ffc8f,https://biolit.fr/observations/observation-71de0374-8aa8-4473-9ff8-47482e6ffc8f/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0189-scaled.jpg,,FALSE, +N1,61079,sortie-a8c9103c-c204-435f-8f04-580e85fdf732,https://biolit.fr/sorties/sortie-a8c9103c-c204-435f-8f04-580e85fdf732/,Marine,,5/21/2016 0:00,9.0000000,15.0000000,43.215035000000,5.343019000000,,Anse de la Maronaise,54156,observation-a8c9103c-c204-435f-8f04-580e85fdf732,https://biolit.fr/observations/observation-a8c9103c-c204-435f-8f04-580e85fdf732/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0101-scaled.jpg,,TRUE, +N1,61080,sortie-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc,https://biolit.fr/sorties/sortie-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc/,Phil,,5/25/2016 0:00,16.0:45,17.0000000,47.893881000000,-3.952877000000,,La Forêt-Fouesnant - Finistère,54158,observation-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc,https://biolit.fr/observations/observation-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/20160525_164918.jpg,,TRUE, +N1,61080,sortie-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc,https://biolit.fr/sorties/sortie-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc/,Phil,,5/25/2016 0:00,16.0:45,17.0000000,47.893881000000,-3.952877000000,,La Forêt-Fouesnant - Finistère,54160,observation-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc-2,https://biolit.fr/observations/observation-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc-2/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/20160525_164841.jpg,,TRUE, +N1,61080,sortie-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc,https://biolit.fr/sorties/sortie-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc/,Phil,,5/25/2016 0:00,16.0:45,17.0000000,47.893881000000,-3.952877000000,,La Forêt-Fouesnant - Finistère,54162,observation-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc-3,https://biolit.fr/observations/observation-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc-3/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/20160525_164722.jpg,,TRUE, +N1,61080,sortie-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc,https://biolit.fr/sorties/sortie-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc/,Phil,,5/25/2016 0:00,16.0:45,17.0000000,47.893881000000,-3.952877000000,,La Forêt-Fouesnant - Finistère,54164,observation-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc-4,https://biolit.fr/observations/observation-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc-4/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/20160525_164356.jpg,,TRUE, +N1,61080,sortie-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc,https://biolit.fr/sorties/sortie-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc/,Phil,,5/25/2016 0:00,16.0:45,17.0000000,47.893881000000,-3.952877000000,,La Forêt-Fouesnant - Finistère,54166,observation-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc-5,https://biolit.fr/observations/observation-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc-5/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20160525_164306.jpg,,TRUE, +N1,61080,sortie-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc,https://biolit.fr/sorties/sortie-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc/,Phil,,5/25/2016 0:00,16.0:45,17.0000000,47.893881000000,-3.952877000000,,La Forêt-Fouesnant - Finistère,54168,observation-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc-6,https://biolit.fr/observations/observation-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc-6/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/20160525_170542.jpg,,TRUE, +N1,61081,sortie-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811,https://biolit.fr/sorties/sortie-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811/,Phil,,5/23/2016 0:00,11.0000000,12.0000000,47.789731000000,-4.273250000000,,Treffiagat - Finistère,54170,observation-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811,https://biolit.fr/observations/observation-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20160523_115555.jpg,,TRUE, +N1,61081,sortie-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811,https://biolit.fr/sorties/sortie-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811/,Phil,,5/23/2016 0:00,11.0000000,12.0000000,47.789731000000,-4.273250000000,,Treffiagat - Finistère,54172,observation-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811-2,https://biolit.fr/observations/observation-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160523_115610.jpg,,FALSE, +N1,61081,sortie-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811,https://biolit.fr/sorties/sortie-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811/,Phil,,5/23/2016 0:00,11.0000000,12.0000000,47.789731000000,-4.273250000000,,Treffiagat - Finistère,54174,observation-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811-3,https://biolit.fr/observations/observation-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811-3/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20160523_115701.jpg,,TRUE, +N1,61081,sortie-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811,https://biolit.fr/sorties/sortie-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811/,Phil,,5/23/2016 0:00,11.0000000,12.0000000,47.789731000000,-4.273250000000,,Treffiagat - Finistère,54176,observation-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811-4,https://biolit.fr/observations/observation-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160523_115717.jpg,,FALSE, +N1,61081,sortie-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811,https://biolit.fr/sorties/sortie-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811/,Phil,,5/23/2016 0:00,11.0000000,12.0000000,47.789731000000,-4.273250000000,,Treffiagat - Finistère,54178,observation-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811-5,https://biolit.fr/observations/observation-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160523_115803.jpg,,FALSE, +N1,61082,sortie-570b6d7c-ac95-4a2d-a0fa-ca41f58bae11,https://biolit.fr/sorties/sortie-570b6d7c-ac95-4a2d-a0fa-ca41f58bae11/,Phil,,5/25/2016 0:00,16.0:35,16.0000000,47.894794000000,-3.9521440000,,La Forêt-Fouesnant - Finistère,54180,observation-570b6d7c-ac95-4a2d-a0fa-ca41f58bae11,https://biolit.fr/observations/observation-570b6d7c-ac95-4a2d-a0fa-ca41f58bae11/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/20160525_163913.jpg,,TRUE, +N1,61082,sortie-570b6d7c-ac95-4a2d-a0fa-ca41f58bae11,https://biolit.fr/sorties/sortie-570b6d7c-ac95-4a2d-a0fa-ca41f58bae11/,Phil,,5/25/2016 0:00,16.0:35,16.0000000,47.894794000000,-3.9521440000,,La Forêt-Fouesnant - Finistère,54182,observation-570b6d7c-ac95-4a2d-a0fa-ca41f58bae11-2,https://biolit.fr/observations/observation-570b6d7c-ac95-4a2d-a0fa-ca41f58bae11-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160525_163947.jpg,,FALSE, +N1,61083,sortie-feee3053-3cd6-4cbb-8577-52b7bc065125,https://biolit.fr/sorties/sortie-feee3053-3cd6-4cbb-8577-52b7bc065125/,Soso,,5/21/2016 0:00,9.0000000,11.0:15,43.215037000000,5.342678000000,,pointe de la roche pelée ,54184,observation-feee3053-3cd6-4cbb-8577-52b7bc065125,https://biolit.fr/observations/observation-feee3053-3cd6-4cbb-8577-52b7bc065125/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2691-scaled.jpg,,TRUE, +N1,61083,sortie-feee3053-3cd6-4cbb-8577-52b7bc065125,https://biolit.fr/sorties/sortie-feee3053-3cd6-4cbb-8577-52b7bc065125/,Soso,,5/21/2016 0:00,9.0000000,11.0:15,43.215037000000,5.342678000000,,pointe de la roche pelée ,54186,observation-feee3053-3cd6-4cbb-8577-52b7bc065125-2,https://biolit.fr/observations/observation-feee3053-3cd6-4cbb-8577-52b7bc065125-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2692-scaled.jpg,,FALSE, +N1,61083,sortie-feee3053-3cd6-4cbb-8577-52b7bc065125,https://biolit.fr/sorties/sortie-feee3053-3cd6-4cbb-8577-52b7bc065125/,Soso,,5/21/2016 0:00,9.0000000,11.0:15,43.215037000000,5.342678000000,,pointe de la roche pelée ,54188,observation-feee3053-3cd6-4cbb-8577-52b7bc065125-3,https://biolit.fr/observations/observation-feee3053-3cd6-4cbb-8577-52b7bc065125-3/,Stramonita haemastoma,Bouche de sang,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2695-scaled.jpg,,TRUE, +N1,61083,sortie-feee3053-3cd6-4cbb-8577-52b7bc065125,https://biolit.fr/sorties/sortie-feee3053-3cd6-4cbb-8577-52b7bc065125/,Soso,,5/21/2016 0:00,9.0000000,11.0:15,43.215037000000,5.342678000000,,pointe de la roche pelée ,54190,observation-feee3053-3cd6-4cbb-8577-52b7bc065125-4,https://biolit.fr/observations/observation-feee3053-3cd6-4cbb-8577-52b7bc065125-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2696-scaled.jpg,,FALSE, +N1,61083,sortie-feee3053-3cd6-4cbb-8577-52b7bc065125,https://biolit.fr/sorties/sortie-feee3053-3cd6-4cbb-8577-52b7bc065125/,Soso,,5/21/2016 0:00,9.0000000,11.0:15,43.215037000000,5.342678000000,,pointe de la roche pelée ,54192,observation-feee3053-3cd6-4cbb-8577-52b7bc065125-5,https://biolit.fr/observations/observation-feee3053-3cd6-4cbb-8577-52b7bc065125-5/,Maja crispata,Petite araignée de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2697-scaled.jpg,,TRUE, +N1,61083,sortie-feee3053-3cd6-4cbb-8577-52b7bc065125,https://biolit.fr/sorties/sortie-feee3053-3cd6-4cbb-8577-52b7bc065125/,Soso,,5/21/2016 0:00,9.0000000,11.0:15,43.215037000000,5.342678000000,,pointe de la roche pelée ,54194,observation-feee3053-3cd6-4cbb-8577-52b7bc065125-6,https://biolit.fr/observations/observation-feee3053-3cd6-4cbb-8577-52b7bc065125-6/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2699-scaled.jpg,,TRUE, +N1,61083,sortie-feee3053-3cd6-4cbb-8577-52b7bc065125,https://biolit.fr/sorties/sortie-feee3053-3cd6-4cbb-8577-52b7bc065125/,Soso,,5/21/2016 0:00,9.0000000,11.0:15,43.215037000000,5.342678000000,,pointe de la roche pelée ,54196,observation-feee3053-3cd6-4cbb-8577-52b7bc065125-7,https://biolit.fr/observations/observation-feee3053-3cd6-4cbb-8577-52b7bc065125-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2700-scaled.jpg,,FALSE, +N1,61083,sortie-feee3053-3cd6-4cbb-8577-52b7bc065125,https://biolit.fr/sorties/sortie-feee3053-3cd6-4cbb-8577-52b7bc065125/,Soso,,5/21/2016 0:00,9.0000000,11.0:15,43.215037000000,5.342678000000,,pointe de la roche pelée ,54198,observation-feee3053-3cd6-4cbb-8577-52b7bc065125-8,https://biolit.fr/observations/observation-feee3053-3cd6-4cbb-8577-52b7bc065125-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Eponge de mer-scaled.jpg,,FALSE, +N1,61084,sortie-f71765fe-77c2-4761-92ee-d366311bfd17,https://biolit.fr/sorties/sortie-f71765fe-77c2-4761-92ee-d366311bfd17/,Phil,,5/21/2016 0:00,11.0000000,12.0000000,47.872418000000,-3.932268000000,,Concarneau - Finistère,54200,observation-f71765fe-77c2-4761-92ee-d366311bfd17,https://biolit.fr/observations/observation-f71765fe-77c2-4761-92ee-d366311bfd17/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20160521_120149.jpg,,TRUE, +N1,61084,sortie-f71765fe-77c2-4761-92ee-d366311bfd17,https://biolit.fr/sorties/sortie-f71765fe-77c2-4761-92ee-d366311bfd17/,Phil,,5/21/2016 0:00,11.0000000,12.0000000,47.872418000000,-3.932268000000,,Concarneau - Finistère,54202,observation-f71765fe-77c2-4761-92ee-d366311bfd17-2,https://biolit.fr/observations/observation-f71765fe-77c2-4761-92ee-d366311bfd17-2/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20160521_120203.jpg,,TRUE, +N1,61084,sortie-f71765fe-77c2-4761-92ee-d366311bfd17,https://biolit.fr/sorties/sortie-f71765fe-77c2-4761-92ee-d366311bfd17/,Phil,,5/21/2016 0:00,11.0000000,12.0000000,47.872418000000,-3.932268000000,,Concarneau - Finistère,54204,observation-f71765fe-77c2-4761-92ee-d366311bfd17-3,https://biolit.fr/observations/observation-f71765fe-77c2-4761-92ee-d366311bfd17-3/,Schizoporella unicornis,Schizoporella unicorne,,https://biolit.fr/wp-content/uploads/2023/07/20160521_120033.jpg,,TRUE, +N1,61084,sortie-f71765fe-77c2-4761-92ee-d366311bfd17,https://biolit.fr/sorties/sortie-f71765fe-77c2-4761-92ee-d366311bfd17/,Phil,,5/21/2016 0:00,11.0000000,12.0000000,47.872418000000,-3.932268000000,,Concarneau - Finistère,54206,observation-f71765fe-77c2-4761-92ee-d366311bfd17-4,https://biolit.fr/observations/observation-f71765fe-77c2-4761-92ee-d366311bfd17-4/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20160521_115855.jpg,,TRUE, +N1,61084,sortie-f71765fe-77c2-4761-92ee-d366311bfd17,https://biolit.fr/sorties/sortie-f71765fe-77c2-4761-92ee-d366311bfd17/,Phil,,5/21/2016 0:00,11.0000000,12.0000000,47.872418000000,-3.932268000000,,Concarneau - Finistère,54208,observation-f71765fe-77c2-4761-92ee-d366311bfd17-5,https://biolit.fr/observations/observation-f71765fe-77c2-4761-92ee-d366311bfd17-5/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20160521_115702.jpg,,TRUE, +N1,61085,sortie-173ff8ab-e1fa-4cdf-86bc-efee031937c6,https://biolit.fr/sorties/sortie-173ff8ab-e1fa-4cdf-86bc-efee031937c6/,louis dubernet,,5/21/2016 0:00,15.0000000,17.0000000,43.215058000000,5.342514000000,,ANSE DE LA MARONAISE,54210,observation-173ff8ab-e1fa-4cdf-86bc-efee031937c6,https://biolit.fr/observations/observation-173ff8ab-e1fa-4cdf-86bc-efee031937c6/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20160521_153722-scaled.jpg,,TRUE, +N1,61085,sortie-173ff8ab-e1fa-4cdf-86bc-efee031937c6,https://biolit.fr/sorties/sortie-173ff8ab-e1fa-4cdf-86bc-efee031937c6/,louis dubernet,,5/21/2016 0:00,15.0000000,17.0000000,43.215058000000,5.342514000000,,ANSE DE LA MARONAISE,54212,observation-173ff8ab-e1fa-4cdf-86bc-efee031937c6-2,https://biolit.fr/observations/observation-173ff8ab-e1fa-4cdf-86bc-efee031937c6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20160521_152917-scaled.jpg,,FALSE, +N1,61085,sortie-173ff8ab-e1fa-4cdf-86bc-efee031937c6,https://biolit.fr/sorties/sortie-173ff8ab-e1fa-4cdf-86bc-efee031937c6/,louis dubernet,,5/21/2016 0:00,15.0000000,17.0000000,43.215058000000,5.342514000000,,ANSE DE LA MARONAISE,54214,observation-173ff8ab-e1fa-4cdf-86bc-efee031937c6-3,https://biolit.fr/observations/observation-173ff8ab-e1fa-4cdf-86bc-efee031937c6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20160521_152005-scaled.jpg,,FALSE, +N1,61086,sortie-731b5fce-f154-4791-a0ae-93c6da24e241,https://biolit.fr/sorties/sortie-731b5fce-f154-4791-a0ae-93c6da24e241/,AIEJE,,5/21/2016 0:00,11.0000000,12.0000000,43.214879000000,5.342901000000,,Calanque de la maronaise,54216,observation-731b5fce-f154-4791-a0ae-93c6da24e241,https://biolit.fr/observations/observation-731b5fce-f154-4791-a0ae-93c6da24e241/,Felimare villafranca,Doris de Villefranche,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3030-rotated.jpg,,TRUE, +N1,61087,sortie-5869ddb4-11d1-4003-888b-8b702aaa92f8,https://biolit.fr/sorties/sortie-5869ddb4-11d1-4003-888b-8b702aaa92f8/,AIEJE,,5/20/2016 0:00,15.0000000,17.0000000,43.330979000000,5.204246000000,,Calanque des anthenors,54218,observation-5869ddb4-11d1-4003-888b-8b702aaa92f8,https://biolit.fr/observations/observation-5869ddb4-11d1-4003-888b-8b702aaa92f8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3020-rotated.jpg,,FALSE, +N1,61088,sortie-ba07a1c2-3d5d-4b46-83c4-54ed48b7fe52,https://biolit.fr/sorties/sortie-ba07a1c2-3d5d-4b46-83c4-54ed48b7fe52/,Phil,,5/21/2016 0:00,12.0000000,12.0:35,47.869865000000,-3.926966000000,,Concarneau - Finistère,54220,observation-ba07a1c2-3d5d-4b46-83c4-54ed48b7fe52,https://biolit.fr/observations/observation-ba07a1c2-3d5d-4b46-83c4-54ed48b7fe52/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160521_123102.jpg,,FALSE, +N1,61088,sortie-ba07a1c2-3d5d-4b46-83c4-54ed48b7fe52,https://biolit.fr/sorties/sortie-ba07a1c2-3d5d-4b46-83c4-54ed48b7fe52/,Phil,,5/21/2016 0:00,12.0000000,12.0:35,47.869865000000,-3.926966000000,,Concarneau - Finistère,54222,observation-ba07a1c2-3d5d-4b46-83c4-54ed48b7fe52-2,https://biolit.fr/observations/observation-ba07a1c2-3d5d-4b46-83c4-54ed48b7fe52-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160521_122957.jpg,,FALSE, +N1,61089,sortie-0c1ec610-f84c-409d-aeb4-c1be64616126,https://biolit.fr/sorties/sortie-0c1ec610-f84c-409d-aeb4-c1be64616126/,Phil,,5/23/2016 0:00,11.0:45,11.0:55,47.788699000000,-4.270257000000,,Treffiagat - Finistère,54224,observation-0c1ec610-f84c-409d-aeb4-c1be64616126,https://biolit.fr/observations/observation-0c1ec610-f84c-409d-aeb4-c1be64616126/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160523_115510.jpg,,FALSE, +N1,61089,sortie-0c1ec610-f84c-409d-aeb4-c1be64616126,https://biolit.fr/sorties/sortie-0c1ec610-f84c-409d-aeb4-c1be64616126/,Phil,,5/23/2016 0:00,11.0:45,11.0:55,47.788699000000,-4.270257000000,,Treffiagat - Finistère,54226,observation-0c1ec610-f84c-409d-aeb4-c1be64616126-2,https://biolit.fr/observations/observation-0c1ec610-f84c-409d-aeb4-c1be64616126-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160523_114816.jpg,,FALSE, +N1,61089,sortie-0c1ec610-f84c-409d-aeb4-c1be64616126,https://biolit.fr/sorties/sortie-0c1ec610-f84c-409d-aeb4-c1be64616126/,Phil,,5/23/2016 0:00,11.0:45,11.0:55,47.788699000000,-4.270257000000,,Treffiagat - Finistère,54228,observation-0c1ec610-f84c-409d-aeb4-c1be64616126-3,https://biolit.fr/observations/observation-0c1ec610-f84c-409d-aeb4-c1be64616126-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160523_114920.jpg,,FALSE, +N1,61089,sortie-0c1ec610-f84c-409d-aeb4-c1be64616126,https://biolit.fr/sorties/sortie-0c1ec610-f84c-409d-aeb4-c1be64616126/,Phil,,5/23/2016 0:00,11.0:45,11.0:55,47.788699000000,-4.270257000000,,Treffiagat - Finistère,54230,observation-0c1ec610-f84c-409d-aeb4-c1be64616126-4,https://biolit.fr/observations/observation-0c1ec610-f84c-409d-aeb4-c1be64616126-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160523_115002.jpg,,FALSE, +N1,61089,sortie-0c1ec610-f84c-409d-aeb4-c1be64616126,https://biolit.fr/sorties/sortie-0c1ec610-f84c-409d-aeb4-c1be64616126/,Phil,,5/23/2016 0:00,11.0:45,11.0:55,47.788699000000,-4.270257000000,,Treffiagat - Finistère,54232,observation-0c1ec610-f84c-409d-aeb4-c1be64616126-5,https://biolit.fr/observations/observation-0c1ec610-f84c-409d-aeb4-c1be64616126-5/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/20160523_115309.jpg,,TRUE, +N1,61090,sortie-ab9f3e96-bf46-4b45-8f5b-7ee29aeb9bcf,https://biolit.fr/sorties/sortie-ab9f3e96-bf46-4b45-8f5b-7ee29aeb9bcf/,Phil,,05/08/2016,12.0:35,12.0:45,48.168525000000,-4.298753000000,,Plomodiern - Finistère,54234,observation-ab9f3e96-bf46-4b45-8f5b-7ee29aeb9bcf,https://biolit.fr/observations/observation-ab9f3e96-bf46-4b45-8f5b-7ee29aeb9bcf/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020707.JPG,,FALSE, +N1,61090,sortie-ab9f3e96-bf46-4b45-8f5b-7ee29aeb9bcf,https://biolit.fr/sorties/sortie-ab9f3e96-bf46-4b45-8f5b-7ee29aeb9bcf/,Phil,,05/08/2016,12.0:35,12.0:45,48.168525000000,-4.298753000000,,Plomodiern - Finistère,54236,observation-ab9f3e96-bf46-4b45-8f5b-7ee29aeb9bcf-2,https://biolit.fr/observations/observation-ab9f3e96-bf46-4b45-8f5b-7ee29aeb9bcf-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020710.JPG,,FALSE, +N1,61090,sortie-ab9f3e96-bf46-4b45-8f5b-7ee29aeb9bcf,https://biolit.fr/sorties/sortie-ab9f3e96-bf46-4b45-8f5b-7ee29aeb9bcf/,Phil,,05/08/2016,12.0:35,12.0:45,48.168525000000,-4.298753000000,,Plomodiern - Finistère,54238,observation-ab9f3e96-bf46-4b45-8f5b-7ee29aeb9bcf-3,https://biolit.fr/observations/observation-ab9f3e96-bf46-4b45-8f5b-7ee29aeb9bcf-3/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020712.JPG,,TRUE, +N1,61090,sortie-ab9f3e96-bf46-4b45-8f5b-7ee29aeb9bcf,https://biolit.fr/sorties/sortie-ab9f3e96-bf46-4b45-8f5b-7ee29aeb9bcf/,Phil,,05/08/2016,12.0:35,12.0:45,48.168525000000,-4.298753000000,,Plomodiern - Finistère,54240,observation-ab9f3e96-bf46-4b45-8f5b-7ee29aeb9bcf-4,https://biolit.fr/observations/observation-ab9f3e96-bf46-4b45-8f5b-7ee29aeb9bcf-4/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/P1020730.JPG,,TRUE, +N1,61091,sortie-cf61de59-6cd7-4b43-bde7-2b839ac5eb93,https://biolit.fr/sorties/sortie-cf61de59-6cd7-4b43-bde7-2b839ac5eb93/,Phil,,5/21/2016 0:00,10.0:55,11.0000000,47.873209000000,-3.931756000000,,Concarneau - Finistère,54242,observation-cf61de59-6cd7-4b43-bde7-2b839ac5eb93,https://biolit.fr/observations/observation-cf61de59-6cd7-4b43-bde7-2b839ac5eb93/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160521_110053.jpg,,FALSE, +N1,61091,sortie-cf61de59-6cd7-4b43-bde7-2b839ac5eb93,https://biolit.fr/sorties/sortie-cf61de59-6cd7-4b43-bde7-2b839ac5eb93/,Phil,,5/21/2016 0:00,10.0:55,11.0000000,47.873209000000,-3.931756000000,,Concarneau - Finistère,54244,observation-cf61de59-6cd7-4b43-bde7-2b839ac5eb93-2,https://biolit.fr/observations/observation-cf61de59-6cd7-4b43-bde7-2b839ac5eb93-2/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/20160521_105706.jpg,,TRUE, +N1,61092,sortie-72271d5f-6f8d-42fc-8564-fed8d5609529,https://biolit.fr/sorties/sortie-72271d5f-6f8d-42fc-8564-fed8d5609529/,Céline,,5/21/2016 0:00,14.0:15,15.0000000,43.214965000000,5.343051000000,,Anse de la Maronaise Marseille,54246,observation-72271d5f-6f8d-42fc-8564-fed8d5609529,https://biolit.fr/observations/observation-72271d5f-6f8d-42fc-8564-fed8d5609529/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/DSCN9117bis-scaled.jpg,,TRUE, +N1,61092,sortie-72271d5f-6f8d-42fc-8564-fed8d5609529,https://biolit.fr/sorties/sortie-72271d5f-6f8d-42fc-8564-fed8d5609529/,Céline,,5/21/2016 0:00,14.0:15,15.0000000,43.214965000000,5.343051000000,,Anse de la Maronaise Marseille,54248,observation-72271d5f-6f8d-42fc-8564-fed8d5609529-2,https://biolit.fr/observations/observation-72271d5f-6f8d-42fc-8564-fed8d5609529-2/,Leathesia marina,Léathésie difforme,,https://biolit.fr/wp-content/uploads/2023/07/DSCN9119-scaled.jpg,,TRUE, +N1,61092,sortie-72271d5f-6f8d-42fc-8564-fed8d5609529,https://biolit.fr/sorties/sortie-72271d5f-6f8d-42fc-8564-fed8d5609529/,Céline,,5/21/2016 0:00,14.0:15,15.0000000,43.214965000000,5.343051000000,,Anse de la Maronaise Marseille,54250,observation-72271d5f-6f8d-42fc-8564-fed8d5609529-3,https://biolit.fr/observations/observation-72271d5f-6f8d-42fc-8564-fed8d5609529-3/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSCN9140bis.jpg,,TRUE, +N1,61092,sortie-72271d5f-6f8d-42fc-8564-fed8d5609529,https://biolit.fr/sorties/sortie-72271d5f-6f8d-42fc-8564-fed8d5609529/,Céline,,5/21/2016 0:00,14.0:15,15.0000000,43.214965000000,5.343051000000,,Anse de la Maronaise Marseille,54252,observation-72271d5f-6f8d-42fc-8564-fed8d5609529-4,https://biolit.fr/observations/observation-72271d5f-6f8d-42fc-8564-fed8d5609529-4/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/DSCN9125bis.jpg,,TRUE, +N1,61092,sortie-72271d5f-6f8d-42fc-8564-fed8d5609529,https://biolit.fr/sorties/sortie-72271d5f-6f8d-42fc-8564-fed8d5609529/,Céline,,5/21/2016 0:00,14.0:15,15.0000000,43.214965000000,5.343051000000,,Anse de la Maronaise Marseille,54254,observation-72271d5f-6f8d-42fc-8564-fed8d5609529-5,https://biolit.fr/observations/observation-72271d5f-6f8d-42fc-8564-fed8d5609529-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN9155bis.jpg,,FALSE, +N1,61093,sortie-17aa281c-6c0e-49f3-bfee-c35969ef92ff,https://biolit.fr/sorties/sortie-17aa281c-6c0e-49f3-bfee-c35969ef92ff/,Phil,,5/21/2016 0:00,10.0:45,10.0:55,47.873790000000,-3.930116000000,,Concarneau - Finistère,54256,observation-17aa281c-6c0e-49f3-bfee-c35969ef92ff,https://biolit.fr/observations/observation-17aa281c-6c0e-49f3-bfee-c35969ef92ff/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/20160521_105256.jpg,,TRUE, +N1,61093,sortie-17aa281c-6c0e-49f3-bfee-c35969ef92ff,https://biolit.fr/sorties/sortie-17aa281c-6c0e-49f3-bfee-c35969ef92ff/,Phil,,5/21/2016 0:00,10.0:45,10.0:55,47.873790000000,-3.930116000000,,Concarneau - Finistère,54258,observation-17aa281c-6c0e-49f3-bfee-c35969ef92ff-2,https://biolit.fr/observations/observation-17aa281c-6c0e-49f3-bfee-c35969ef92ff-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160521_105607.jpg,,TRUE, +N1,61093,sortie-17aa281c-6c0e-49f3-bfee-c35969ef92ff,https://biolit.fr/sorties/sortie-17aa281c-6c0e-49f3-bfee-c35969ef92ff/,Phil,,5/21/2016 0:00,10.0:45,10.0:55,47.873790000000,-3.930116000000,,Concarneau - Finistère,54260,observation-17aa281c-6c0e-49f3-bfee-c35969ef92ff-3,https://biolit.fr/observations/observation-17aa281c-6c0e-49f3-bfee-c35969ef92ff-3/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/20160521_104715.jpg,,TRUE, +N1,61093,sortie-17aa281c-6c0e-49f3-bfee-c35969ef92ff,https://biolit.fr/sorties/sortie-17aa281c-6c0e-49f3-bfee-c35969ef92ff/,Phil,,5/21/2016 0:00,10.0:45,10.0:55,47.873790000000,-3.930116000000,,Concarneau - Finistère,54262,observation-17aa281c-6c0e-49f3-bfee-c35969ef92ff-4,https://biolit.fr/observations/observation-17aa281c-6c0e-49f3-bfee-c35969ef92ff-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160521_104627.jpg,,FALSE, +N1,61093,sortie-17aa281c-6c0e-49f3-bfee-c35969ef92ff,https://biolit.fr/sorties/sortie-17aa281c-6c0e-49f3-bfee-c35969ef92ff/,Phil,,5/21/2016 0:00,10.0:45,10.0:55,47.873790000000,-3.930116000000,,Concarneau - Finistère,54264,observation-17aa281c-6c0e-49f3-bfee-c35969ef92ff-5,https://biolit.fr/observations/observation-17aa281c-6c0e-49f3-bfee-c35969ef92ff-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160521_104617.jpg,,FALSE, +N1,61093,sortie-17aa281c-6c0e-49f3-bfee-c35969ef92ff,https://biolit.fr/sorties/sortie-17aa281c-6c0e-49f3-bfee-c35969ef92ff/,Phil,,5/21/2016 0:00,10.0:45,10.0:55,47.873790000000,-3.930116000000,,Concarneau - Finistère,54266,observation-17aa281c-6c0e-49f3-bfee-c35969ef92ff-6,https://biolit.fr/observations/observation-17aa281c-6c0e-49f3-bfee-c35969ef92ff-6/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/20160521_105126.jpg,,TRUE, +N1,61094,sortie-fd61f28d-f5c6-4050-9fc6-352bacef94e0,https://biolit.fr/sorties/sortie-fd61f28d-f5c6-4050-9fc6-352bacef94e0/,Phil,,05/08/2016,14.0:35,14.0000000,48.16877100000,-4.297851000000,,Plomodiern - Finistère,54268,observation-fd61f28d-f5c6-4050-9fc6-352bacef94e0,https://biolit.fr/observations/observation-fd61f28d-f5c6-4050-9fc6-352bacef94e0/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160508_143410.jpg,,FALSE, +N1,61094,sortie-fd61f28d-f5c6-4050-9fc6-352bacef94e0,https://biolit.fr/sorties/sortie-fd61f28d-f5c6-4050-9fc6-352bacef94e0/,Phil,,05/08/2016,14.0:35,14.0000000,48.16877100000,-4.297851000000,,Plomodiern - Finistère,54270,observation-fd61f28d-f5c6-4050-9fc6-352bacef94e0-2,https://biolit.fr/observations/observation-fd61f28d-f5c6-4050-9fc6-352bacef94e0-2/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/20160508_143432.jpg,,TRUE, +N1,61094,sortie-fd61f28d-f5c6-4050-9fc6-352bacef94e0,https://biolit.fr/sorties/sortie-fd61f28d-f5c6-4050-9fc6-352bacef94e0/,Phil,,05/08/2016,14.0:35,14.0000000,48.16877100000,-4.297851000000,,Plomodiern - Finistère,54272,observation-fd61f28d-f5c6-4050-9fc6-352bacef94e0-3,https://biolit.fr/observations/observation-fd61f28d-f5c6-4050-9fc6-352bacef94e0-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20160508_143445.jpg,,TRUE, +N1,61094,sortie-fd61f28d-f5c6-4050-9fc6-352bacef94e0,https://biolit.fr/sorties/sortie-fd61f28d-f5c6-4050-9fc6-352bacef94e0/,Phil,,05/08/2016,14.0:35,14.0000000,48.16877100000,-4.297851000000,,Plomodiern - Finistère,54274,observation-fd61f28d-f5c6-4050-9fc6-352bacef94e0-4,https://biolit.fr/observations/observation-fd61f28d-f5c6-4050-9fc6-352bacef94e0-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20160508_143530.jpg,,TRUE, +N1,61094,sortie-fd61f28d-f5c6-4050-9fc6-352bacef94e0,https://biolit.fr/sorties/sortie-fd61f28d-f5c6-4050-9fc6-352bacef94e0/,Phil,,05/08/2016,14.0:35,14.0000000,48.16877100000,-4.297851000000,,Plomodiern - Finistère,54276,observation-fd61f28d-f5c6-4050-9fc6-352bacef94e0-5,https://biolit.fr/observations/observation-fd61f28d-f5c6-4050-9fc6-352bacef94e0-5/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20160508_143626.jpg,,TRUE, +N1,61095,sortie-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf,https://biolit.fr/sorties/sortie-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf/,Phil,,05/08/2016,12.0000000,13.0000000,48.1674830000,-4.299997000000,,Plomodiern - Finistère,54278,observation-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf,https://biolit.fr/observations/observation-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020752.JPG,,FALSE, +N1,61095,sortie-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf,https://biolit.fr/sorties/sortie-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf/,Phil,,05/08/2016,12.0000000,13.0000000,48.1674830000,-4.299997000000,,Plomodiern - Finistère,54280,observation-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf-2,https://biolit.fr/observations/observation-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1020736.JPG,,TRUE, +N1,61095,sortie-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf,https://biolit.fr/sorties/sortie-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf/,Phil,,05/08/2016,12.0000000,13.0000000,48.1674830000,-4.299997000000,,Plomodiern - Finistère,54282,observation-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf-3,https://biolit.fr/observations/observation-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf-3/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1020738.JPG,,TRUE, +N1,61095,sortie-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf,https://biolit.fr/sorties/sortie-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf/,Phil,,05/08/2016,12.0000000,13.0000000,48.1674830000,-4.299997000000,,Plomodiern - Finistère,54284,observation-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf-4,https://biolit.fr/observations/observation-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf-4/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/20160508_135959-scaled.jpg,,TRUE, +N1,61095,sortie-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf,https://biolit.fr/sorties/sortie-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf/,Phil,,05/08/2016,12.0000000,13.0000000,48.1674830000,-4.299997000000,,Plomodiern - Finistère,54286,observation-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf-5,https://biolit.fr/observations/observation-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf-5/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/P1020735.JPG,,TRUE, +N1,61096,sortie-d5b9745d-edee-4505-b0c7-17fa977c478d,https://biolit.fr/sorties/sortie-d5b9745d-edee-4505-b0c7-17fa977c478d/,Marine,,5/17/2016 0:00,12.0:15,14.0:15,43.214891000000,5.342954000000,,Plage de la Maronaise,54288,observation-d5b9745d-edee-4505-b0c7-17fa977c478d,https://biolit.fr/observations/observation-d5b9745d-edee-4505-b0c7-17fa977c478d/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1365-rotated.jpg,,FALSE, +N1,61096,sortie-d5b9745d-edee-4505-b0c7-17fa977c478d,https://biolit.fr/sorties/sortie-d5b9745d-edee-4505-b0c7-17fa977c478d/,Marine,,5/17/2016 0:00,12.0:15,14.0:15,43.214891000000,5.342954000000,,Plage de la Maronaise,54289,observation-d5b9745d-edee-4505-b0c7-17fa977c478d-2,https://biolit.fr/observations/observation-d5b9745d-edee-4505-b0c7-17fa977c478d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1368-scaled.jpg,,FALSE, +N1,61097,sortie-d7873ce2-f6be-4276-8d36-887a2063852c,https://biolit.fr/sorties/sortie-d7873ce2-f6be-4276-8d36-887a2063852c/,Phil,,05/08/2016,14.0000000,14.0000000,48.168568000000,-4.298881000000,,Plomodiern - Finistère,54291,observation-d7873ce2-f6be-4276-8d36-887a2063852c,https://biolit.fr/observations/observation-d7873ce2-f6be-4276-8d36-887a2063852c/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160508_142817.jpg,,FALSE, +N1,61097,sortie-d7873ce2-f6be-4276-8d36-887a2063852c,https://biolit.fr/sorties/sortie-d7873ce2-f6be-4276-8d36-887a2063852c/,Phil,,05/08/2016,14.0000000,14.0000000,48.168568000000,-4.298881000000,,Plomodiern - Finistère,54293,observation-d7873ce2-f6be-4276-8d36-887a2063852c-2,https://biolit.fr/observations/observation-d7873ce2-f6be-4276-8d36-887a2063852c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160508_142940.jpg,,FALSE, +N1,61097,sortie-d7873ce2-f6be-4276-8d36-887a2063852c,https://biolit.fr/sorties/sortie-d7873ce2-f6be-4276-8d36-887a2063852c/,Phil,,05/08/2016,14.0000000,14.0000000,48.168568000000,-4.298881000000,,Plomodiern - Finistère,54295,observation-d7873ce2-f6be-4276-8d36-887a2063852c-3,https://biolit.fr/observations/observation-d7873ce2-f6be-4276-8d36-887a2063852c-3/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1020803.JPG,,TRUE, +N1,61098,sortie-5aa27c17-d545-4323-9c8a-07e801702750,https://biolit.fr/sorties/sortie-5aa27c17-d545-4323-9c8a-07e801702750/,Phil,,05/08/2016,13.0000000,13.0:15,48.168370000000,-4.298431000000,,Plomodiern - Finistère,54297,observation-5aa27c17-d545-4323-9c8a-07e801702750,https://biolit.fr/observations/observation-5aa27c17-d545-4323-9c8a-07e801702750/,Cilysta elegans,Sagartie élégante,,https://biolit.fr/wp-content/uploads/2023/07/20160508_141314.jpg,,TRUE, +N1,61099,sortie-d80b3732-f57a-4234-95e6-29060850d462,https://biolit.fr/sorties/sortie-d80b3732-f57a-4234-95e6-29060850d462/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.094787000000,6.023577000000,,Plage de la Garonne,54301,observation-d80b3732-f57a-4234-95e6-29060850d462,https://biolit.fr/observations/observation-d80b3732-f57a-4234-95e6-29060850d462/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1357-scaled.jpg,,FALSE, +N1,61099,sortie-d80b3732-f57a-4234-95e6-29060850d462,https://biolit.fr/sorties/sortie-d80b3732-f57a-4234-95e6-29060850d462/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.094787000000,6.023577000000,,Plage de la Garonne,54303,observation-d80b3732-f57a-4234-95e6-29060850d462-2,https://biolit.fr/observations/observation-d80b3732-f57a-4234-95e6-29060850d462-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1358-scaled.jpg,,FALSE, +N1,61100,sortie-9952b236-dae9-4172-a437-fc7e71b86989,https://biolit.fr/sorties/sortie-9952b236-dae9-4172-a437-fc7e71b86989/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.094790000000,6.023527000000,,Plage de la Garonne,54305,observation-9952b236-dae9-4172-a437-fc7e71b86989,https://biolit.fr/observations/observation-9952b236-dae9-4172-a437-fc7e71b86989/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1355-scaled.jpg,,FALSE, +N1,61100,sortie-9952b236-dae9-4172-a437-fc7e71b86989,https://biolit.fr/sorties/sortie-9952b236-dae9-4172-a437-fc7e71b86989/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.094790000000,6.023527000000,,Plage de la Garonne,54307,observation-9952b236-dae9-4172-a437-fc7e71b86989-2,https://biolit.fr/observations/observation-9952b236-dae9-4172-a437-fc7e71b86989-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1356-scaled.jpg,,FALSE, +N1,61101,sortie-ea68fd84-f41f-4659-8b88-ee4069d11af8,https://biolit.fr/sorties/sortie-ea68fd84-f41f-4659-8b88-ee4069d11af8/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.094589000000,6.023463000000,,Plage de la Garonne,54309,observation-ea68fd84-f41f-4659-8b88-ee4069d11af8,https://biolit.fr/observations/observation-ea68fd84-f41f-4659-8b88-ee4069d11af8/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1351-scaled.jpg,,TRUE, +N1,61101,sortie-ea68fd84-f41f-4659-8b88-ee4069d11af8,https://biolit.fr/sorties/sortie-ea68fd84-f41f-4659-8b88-ee4069d11af8/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.094589000000,6.023463000000,,Plage de la Garonne,54311,observation-ea68fd84-f41f-4659-8b88-ee4069d11af8-2,https://biolit.fr/observations/observation-ea68fd84-f41f-4659-8b88-ee4069d11af8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1352-scaled.jpg,,FALSE, +N1,61102,sortie-30b8f885-7d3d-4310-aed5-f1a6a91531b5,https://biolit.fr/sorties/sortie-30b8f885-7d3d-4310-aed5-f1a6a91531b5/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.094848000000,6.023538000000,,Plage de la Garonne,54313,observation-30b8f885-7d3d-4310-aed5-f1a6a91531b5,https://biolit.fr/observations/observation-30b8f885-7d3d-4310-aed5-f1a6a91531b5/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1350-scaled.jpg,,TRUE, +N1,61103,sortie-af67fa0a-001f-429d-9a2c-b7efcacb7b55,https://biolit.fr/sorties/sortie-af67fa0a-001f-429d-9a2c-b7efcacb7b55/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.09481600000,6.023559000000,,Plage de la Garonne,54315,observation-af67fa0a-001f-429d-9a2c-b7efcacb7b55,https://biolit.fr/observations/observation-af67fa0a-001f-429d-9a2c-b7efcacb7b55/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1354-scaled.jpg,,FALSE, +N1,61103,sortie-af67fa0a-001f-429d-9a2c-b7efcacb7b55,https://biolit.fr/sorties/sortie-af67fa0a-001f-429d-9a2c-b7efcacb7b55/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.09481600000,6.023559000000,,Plage de la Garonne,54317,observation-af67fa0a-001f-429d-9a2c-b7efcacb7b55-2,https://biolit.fr/observations/observation-af67fa0a-001f-429d-9a2c-b7efcacb7b55-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1353-scaled.jpg,,FALSE, +N1,61104,sortie-4b8a566f-0b76-42ca-9e17-958eed0ddc8d,https://biolit.fr/sorties/sortie-4b8a566f-0b76-42ca-9e17-958eed0ddc8d/,Phil,,05/08/2016,12.0000000,12.0000000,48.16841900000,-4.298774000000,,Plomodiern - Finistère,54319,observation-4b8a566f-0b76-42ca-9e17-958eed0ddc8d,https://biolit.fr/observations/observation-4b8a566f-0b76-42ca-9e17-958eed0ddc8d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020701.JPG,,FALSE, +N1,61104,sortie-4b8a566f-0b76-42ca-9e17-958eed0ddc8d,https://biolit.fr/sorties/sortie-4b8a566f-0b76-42ca-9e17-958eed0ddc8d/,Phil,,05/08/2016,12.0000000,12.0000000,48.16841900000,-4.298774000000,,Plomodiern - Finistère,54321,observation-4b8a566f-0b76-42ca-9e17-958eed0ddc8d-2,https://biolit.fr/observations/observation-4b8a566f-0b76-42ca-9e17-958eed0ddc8d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020700.JPG,,FALSE, +N1,61104,sortie-4b8a566f-0b76-42ca-9e17-958eed0ddc8d,https://biolit.fr/sorties/sortie-4b8a566f-0b76-42ca-9e17-958eed0ddc8d/,Phil,,05/08/2016,12.0000000,12.0000000,48.16841900000,-4.298774000000,,Plomodiern - Finistère,54323,observation-4b8a566f-0b76-42ca-9e17-958eed0ddc8d-3,https://biolit.fr/observations/observation-4b8a566f-0b76-42ca-9e17-958eed0ddc8d-3/,Himanthalia elongata,Himanthale,",""https://biolit.fr/wp-content/uploads/2023/07/P1020723.JPG""",,TRUE,, +N1,61104,sortie-4b8a566f-0b76-42ca-9e17-958eed0ddc8d,https://biolit.fr/sorties/sortie-4b8a566f-0b76-42ca-9e17-958eed0ddc8d/,Phil,,05/08/2016,12.0000000,12.0000000,48.16841900000,-4.298774000000,,Plomodiern - Finistère,54325,observation-4b8a566f-0b76-42ca-9e17-958eed0ddc8d-4,https://biolit.fr/observations/observation-4b8a566f-0b76-42ca-9e17-958eed0ddc8d-4/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/P1020696.JPG,,TRUE, +N1,61104,sortie-4b8a566f-0b76-42ca-9e17-958eed0ddc8d,https://biolit.fr/sorties/sortie-4b8a566f-0b76-42ca-9e17-958eed0ddc8d/,Phil,,05/08/2016,12.0000000,12.0000000,48.16841900000,-4.298774000000,,Plomodiern - Finistère,54327,observation-4b8a566f-0b76-42ca-9e17-958eed0ddc8d-5,https://biolit.fr/observations/observation-4b8a566f-0b76-42ca-9e17-958eed0ddc8d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020702.JPG,,FALSE, +N1,61104,sortie-4b8a566f-0b76-42ca-9e17-958eed0ddc8d,https://biolit.fr/sorties/sortie-4b8a566f-0b76-42ca-9e17-958eed0ddc8d/,Phil,,05/08/2016,12.0000000,12.0000000,48.16841900000,-4.298774000000,,Plomodiern - Finistère,54329,observation-4b8a566f-0b76-42ca-9e17-958eed0ddc8d-6,https://biolit.fr/observations/observation-4b8a566f-0b76-42ca-9e17-958eed0ddc8d-6/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/P1020705.JPG,,TRUE, +N1,61105,sortie-45881d9b-2e2a-439a-a9fc-284e32174002,https://biolit.fr/sorties/sortie-45881d9b-2e2a-439a-a9fc-284e32174002/,aventure aquatique,,07/07/2015,10.0000000,11.0000000,43.693056000000,7.308788000000,,"rochambeau, villefranche sur mer",54331,observation-45881d9b-2e2a-439a-a9fc-284e32174002,https://biolit.fr/observations/observation-45881d9b-2e2a-439a-a9fc-284e32174002/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMGP1029-scaled.jpg,,TRUE, +N1,61105,sortie-45881d9b-2e2a-439a-a9fc-284e32174002,https://biolit.fr/sorties/sortie-45881d9b-2e2a-439a-a9fc-284e32174002/,aventure aquatique,,07/07/2015,10.0000000,11.0000000,43.693056000000,7.308788000000,,"rochambeau, villefranche sur mer",54333,observation-45881d9b-2e2a-439a-a9fc-284e32174002-2,https://biolit.fr/observations/observation-45881d9b-2e2a-439a-a9fc-284e32174002-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP1030-scaled.jpg,,FALSE, +N1,61105,sortie-45881d9b-2e2a-439a-a9fc-284e32174002,https://biolit.fr/sorties/sortie-45881d9b-2e2a-439a-a9fc-284e32174002/,aventure aquatique,,07/07/2015,10.0000000,11.0000000,43.693056000000,7.308788000000,,"rochambeau, villefranche sur mer",54335,observation-45881d9b-2e2a-439a-a9fc-284e32174002-3,https://biolit.fr/observations/observation-45881d9b-2e2a-439a-a9fc-284e32174002-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP1055-scaled.jpg,,FALSE, +N1,61105,sortie-45881d9b-2e2a-439a-a9fc-284e32174002,https://biolit.fr/sorties/sortie-45881d9b-2e2a-439a-a9fc-284e32174002/,aventure aquatique,,07/07/2015,10.0000000,11.0000000,43.693056000000,7.308788000000,,"rochambeau, villefranche sur mer",54337,observation-45881d9b-2e2a-439a-a9fc-284e32174002-4,https://biolit.fr/observations/observation-45881d9b-2e2a-439a-a9fc-284e32174002-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP1056-scaled.jpg,,FALSE, +N1,61105,sortie-45881d9b-2e2a-439a-a9fc-284e32174002,https://biolit.fr/sorties/sortie-45881d9b-2e2a-439a-a9fc-284e32174002/,aventure aquatique,,07/07/2015,10.0000000,11.0000000,43.693056000000,7.308788000000,,"rochambeau, villefranche sur mer",54339,observation-45881d9b-2e2a-439a-a9fc-284e32174002-5,https://biolit.fr/observations/observation-45881d9b-2e2a-439a-a9fc-284e32174002-5/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/IMGP1052-scaled.jpg,,TRUE, +N1,61105,sortie-45881d9b-2e2a-439a-a9fc-284e32174002,https://biolit.fr/sorties/sortie-45881d9b-2e2a-439a-a9fc-284e32174002/,aventure aquatique,,07/07/2015,10.0000000,11.0000000,43.693056000000,7.308788000000,,"rochambeau, villefranche sur mer",54341,observation-45881d9b-2e2a-439a-a9fc-284e32174002-6,https://biolit.fr/observations/observation-45881d9b-2e2a-439a-a9fc-284e32174002-6/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/IMGP1079-scaled.jpg,,TRUE, +N1,61105,sortie-45881d9b-2e2a-439a-a9fc-284e32174002,https://biolit.fr/sorties/sortie-45881d9b-2e2a-439a-a9fc-284e32174002/,aventure aquatique,,07/07/2015,10.0000000,11.0000000,43.693056000000,7.308788000000,,"rochambeau, villefranche sur mer",54343,observation-45881d9b-2e2a-439a-a9fc-284e32174002-7,https://biolit.fr/observations/observation-45881d9b-2e2a-439a-a9fc-284e32174002-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP1054-scaled.jpg,,FALSE, +N1,61105,sortie-45881d9b-2e2a-439a-a9fc-284e32174002,https://biolit.fr/sorties/sortie-45881d9b-2e2a-439a-a9fc-284e32174002/,aventure aquatique,,07/07/2015,10.0000000,11.0000000,43.693056000000,7.308788000000,,"rochambeau, villefranche sur mer",54345,observation-45881d9b-2e2a-439a-a9fc-284e32174002-8,https://biolit.fr/observations/observation-45881d9b-2e2a-439a-a9fc-284e32174002-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP1033-scaled.jpg,,FALSE, +N1,61105,sortie-45881d9b-2e2a-439a-a9fc-284e32174002,https://biolit.fr/sorties/sortie-45881d9b-2e2a-439a-a9fc-284e32174002/,aventure aquatique,,07/07/2015,10.0000000,11.0000000,43.693056000000,7.308788000000,,"rochambeau, villefranche sur mer",54347,observation-45881d9b-2e2a-439a-a9fc-284e32174002-9,https://biolit.fr/observations/observation-45881d9b-2e2a-439a-a9fc-284e32174002-9/,Chromis chromis,Castagnole,,https://biolit.fr/wp-content/uploads/2023/07/IMGP1091-scaled.jpg,,TRUE, +N1,61105,sortie-45881d9b-2e2a-439a-a9fc-284e32174002,https://biolit.fr/sorties/sortie-45881d9b-2e2a-439a-a9fc-284e32174002/,aventure aquatique,,07/07/2015,10.0000000,11.0000000,43.693056000000,7.308788000000,,"rochambeau, villefranche sur mer",54349,observation-45881d9b-2e2a-439a-a9fc-284e32174002-10,https://biolit.fr/observations/observation-45881d9b-2e2a-439a-a9fc-284e32174002-10/,Echinaster (Echinaster) sepositus,Etoile de mer rouge,,https://biolit.fr/wp-content/uploads/2023/07/IMGP1093-scaled.jpg,,TRUE, +N1,61105,sortie-45881d9b-2e2a-439a-a9fc-284e32174002,https://biolit.fr/sorties/sortie-45881d9b-2e2a-439a-a9fc-284e32174002/,aventure aquatique,,07/07/2015,10.0000000,11.0000000,43.693056000000,7.308788000000,,"rochambeau, villefranche sur mer",54351,observation-45881d9b-2e2a-439a-a9fc-284e32174002-11,https://biolit.fr/observations/observation-45881d9b-2e2a-439a-a9fc-284e32174002-11/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/2023/07/IMGP1095-scaled.jpg,,TRUE, +N1,61105,sortie-45881d9b-2e2a-439a-a9fc-284e32174002,https://biolit.fr/sorties/sortie-45881d9b-2e2a-439a-a9fc-284e32174002/,aventure aquatique,,07/07/2015,10.0000000,11.0000000,43.693056000000,7.308788000000,,"rochambeau, villefranche sur mer",54353,observation-45881d9b-2e2a-439a-a9fc-284e32174002-12,https://biolit.fr/observations/observation-45881d9b-2e2a-439a-a9fc-284e32174002-12/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMGP1094-scaled.jpg,,TRUE, +N1,61106,sortie-3c828506-833a-4a78-a62b-a5f3ddc9e17c,https://biolit.fr/sorties/sortie-3c828506-833a-4a78-a62b-a5f3ddc9e17c/,aventure aquatique,,07/03/2015,10.0000000,11.0000000,43.69307200000,7.30885200000,,"rochambeau, villefranche sur mer",54355,observation-3c828506-833a-4a78-a62b-a5f3ddc9e17c,https://biolit.fr/observations/observation-3c828506-833a-4a78-a62b-a5f3ddc9e17c/,Acetabularia acetabulum,Acétabulaire,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0969-scaled.jpg,,TRUE, +N1,61106,sortie-3c828506-833a-4a78-a62b-a5f3ddc9e17c,https://biolit.fr/sorties/sortie-3c828506-833a-4a78-a62b-a5f3ddc9e17c/,aventure aquatique,,07/03/2015,10.0000000,11.0000000,43.69307200000,7.30885200000,,"rochambeau, villefranche sur mer",54357,observation-3c828506-833a-4a78-a62b-a5f3ddc9e17c-2,https://biolit.fr/observations/observation-3c828506-833a-4a78-a62b-a5f3ddc9e17c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0968-scaled.jpg,,FALSE, +N1,61106,sortie-3c828506-833a-4a78-a62b-a5f3ddc9e17c,https://biolit.fr/sorties/sortie-3c828506-833a-4a78-a62b-a5f3ddc9e17c/,aventure aquatique,,07/03/2015,10.0000000,11.0000000,43.69307200000,7.30885200000,,"rochambeau, villefranche sur mer",54359,observation-3c828506-833a-4a78-a62b-a5f3ddc9e17c-3,https://biolit.fr/observations/observation-3c828506-833a-4a78-a62b-a5f3ddc9e17c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0963-scaled.jpg,,FALSE, +N1,61107,sortie-9791894e-b158-4eff-b64a-643a6859edff,https://biolit.fr/sorties/sortie-9791894e-b158-4eff-b64a-643a6859edff/,aventure aquatique,,05/11/2015,14.0000000,15.0:15,43.689953000000,7.293510000000,,coco beach,54361,observation-9791894e-b158-4eff-b64a-643a6859edff,https://biolit.fr/observations/observation-9791894e-b158-4eff-b64a-643a6859edff/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0809-scaled.jpg,,TRUE,non-identifiable +N1,61107,sortie-9791894e-b158-4eff-b64a-643a6859edff,https://biolit.fr/sorties/sortie-9791894e-b158-4eff-b64a-643a6859edff/,aventure aquatique,,05/11/2015,14.0000000,15.0:15,43.689953000000,7.293510000000,,coco beach,54363,observation-9791894e-b158-4eff-b64a-643a6859edff-2,https://biolit.fr/observations/observation-9791894e-b158-4eff-b64a-643a6859edff-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0808-scaled.jpg,,TRUE, +N1,61107,sortie-9791894e-b158-4eff-b64a-643a6859edff,https://biolit.fr/sorties/sortie-9791894e-b158-4eff-b64a-643a6859edff/,aventure aquatique,,05/11/2015,14.0000000,15.0:15,43.689953000000,7.293510000000,,coco beach,54365,observation-9791894e-b158-4eff-b64a-643a6859edff-3,https://biolit.fr/observations/observation-9791894e-b158-4eff-b64a-643a6859edff-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0810-scaled.jpg,,TRUE,non-identifiable +N1,61107,sortie-9791894e-b158-4eff-b64a-643a6859edff,https://biolit.fr/sorties/sortie-9791894e-b158-4eff-b64a-643a6859edff/,aventure aquatique,,05/11/2015,14.0000000,15.0:15,43.689953000000,7.293510000000,,coco beach,54367,observation-9791894e-b158-4eff-b64a-643a6859edff-4,https://biolit.fr/observations/observation-9791894e-b158-4eff-b64a-643a6859edff-4/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0814_0-scaled.jpg,,TRUE, +N1,61108,sortie-cfba2690-1b0d-4c7c-8a03-d5aea50e756e,https://biolit.fr/sorties/sortie-cfba2690-1b0d-4c7c-8a03-d5aea50e756e/,aventure aquatique,,05/11/2015,14.0000000,15.0000000,43.689596000000,7.294304000000,,coco beach,54369,observation-cfba2690-1b0d-4c7c-8a03-d5aea50e756e,https://biolit.fr/observations/observation-cfba2690-1b0d-4c7c-8a03-d5aea50e756e/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0814-scaled.jpg,,TRUE, +N1,61109,sortie-d2da4efa-0747-45a9-8afa-ba55f0d6ed2c,https://biolit.fr/sorties/sortie-d2da4efa-0747-45a9-8afa-ba55f0d6ed2c/,aventure aquatique,,05/11/2016,19.0000000,21.0000000,43.689340000000,7.294283000000,,coco beach,54371,observation-d2da4efa-0747-45a9-8afa-ba55f0d6ed2c,https://biolit.fr/observations/observation-d2da4efa-0747-45a9-8afa-ba55f0d6ed2c/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0812-scaled.jpg,,TRUE, +N1,61110,sortie-d35f20e5-ce44-4582-9432-eef969216b7e,https://biolit.fr/sorties/sortie-d35f20e5-ce44-4582-9432-eef969216b7e/,Phil,,05/08/2016,12.0000000,12.0:45,48.167720000000,-4.299246000000,,Plomodiern - Finistère,54373,observation-d35f20e5-ce44-4582-9432-eef969216b7e,https://biolit.fr/observations/observation-d35f20e5-ce44-4582-9432-eef969216b7e/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/20160508_134351.jpg,,TRUE, +N1,61110,sortie-d35f20e5-ce44-4582-9432-eef969216b7e,https://biolit.fr/sorties/sortie-d35f20e5-ce44-4582-9432-eef969216b7e/,Phil,,05/08/2016,12.0000000,12.0:45,48.167720000000,-4.299246000000,,Plomodiern - Finistère,54375,observation-d35f20e5-ce44-4582-9432-eef969216b7e-2,https://biolit.fr/observations/observation-d35f20e5-ce44-4582-9432-eef969216b7e-2/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/P1020718.JPG,,TRUE, +N1,61110,sortie-d35f20e5-ce44-4582-9432-eef969216b7e,https://biolit.fr/sorties/sortie-d35f20e5-ce44-4582-9432-eef969216b7e/,Phil,,05/08/2016,12.0000000,12.0:45,48.167720000000,-4.299246000000,,Plomodiern - Finistère,54377,observation-d35f20e5-ce44-4582-9432-eef969216b7e-3,https://biolit.fr/observations/observation-d35f20e5-ce44-4582-9432-eef969216b7e-3/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/P1020715.JPG,,TRUE, +N1,61110,sortie-d35f20e5-ce44-4582-9432-eef969216b7e,https://biolit.fr/sorties/sortie-d35f20e5-ce44-4582-9432-eef969216b7e/,Phil,,05/08/2016,12.0000000,12.0:45,48.167720000000,-4.299246000000,,Plomodiern - Finistère,54379,observation-d35f20e5-ce44-4582-9432-eef969216b7e-4,https://biolit.fr/observations/observation-d35f20e5-ce44-4582-9432-eef969216b7e-4/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/20160508_134221.jpg,,TRUE, +N1,61111,sortie-f3c977fe-f18c-4483-8ca0-1b08b17a6bab,https://biolit.fr/sorties/sortie-f3c977fe-f18c-4483-8ca0-1b08b17a6bab/,Phil,,05/08/2016,13.0:25,13.0000000,48.167669000000,-4.299482000000,,Plomodiern - Finistère,54381,observation-f3c977fe-f18c-4483-8ca0-1b08b17a6bab,https://biolit.fr/observations/observation-f3c977fe-f18c-4483-8ca0-1b08b17a6bab/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20160508_132945.jpg,,TRUE, +N1,61111,sortie-f3c977fe-f18c-4483-8ca0-1b08b17a6bab,https://biolit.fr/sorties/sortie-f3c977fe-f18c-4483-8ca0-1b08b17a6bab/,Phil,,05/08/2016,13.0:25,13.0000000,48.167669000000,-4.299482000000,,Plomodiern - Finistère,54383,observation-f3c977fe-f18c-4483-8ca0-1b08b17a6bab-2,https://biolit.fr/observations/observation-f3c977fe-f18c-4483-8ca0-1b08b17a6bab-2/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20160508_133034.jpg,,TRUE, +N1,61111,sortie-f3c977fe-f18c-4483-8ca0-1b08b17a6bab,https://biolit.fr/sorties/sortie-f3c977fe-f18c-4483-8ca0-1b08b17a6bab/,Phil,,05/08/2016,13.0:25,13.0000000,48.167669000000,-4.299482000000,,Plomodiern - Finistère,54385,observation-f3c977fe-f18c-4483-8ca0-1b08b17a6bab-3,https://biolit.fr/observations/observation-f3c977fe-f18c-4483-8ca0-1b08b17a6bab-3/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20160508_133112.jpg,,TRUE, +N1,61112,sortie-bb3ca192-cd15-469a-a791-2b2853f31fac,https://biolit.fr/sorties/sortie-bb3ca192-cd15-469a-a791-2b2853f31fac/,Earthforce FS,,05/10/2016,14.0000000,17.0000000,9.799256000000,99.979989000000,,Ko Ma Koh Phangan Thaïlande,54387,observation-bb3ca192-cd15-469a-a791-2b2853f31fac,https://biolit.fr/observations/observation-bb3ca192-cd15-469a-a791-2b2853f31fac/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC00950_0-scaled.jpg,,FALSE, +N1,61112,sortie-bb3ca192-cd15-469a-a791-2b2853f31fac,https://biolit.fr/sorties/sortie-bb3ca192-cd15-469a-a791-2b2853f31fac/,Earthforce FS,,05/10/2016,14.0000000,17.0000000,9.799256000000,99.979989000000,,Ko Ma Koh Phangan Thaïlande,54389,observation-bb3ca192-cd15-469a-a791-2b2853f31fac-2,https://biolit.fr/observations/observation-bb3ca192-cd15-469a-a791-2b2853f31fac-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC00953_0-scaled.jpg,,FALSE, +N1,61112,sortie-bb3ca192-cd15-469a-a791-2b2853f31fac,https://biolit.fr/sorties/sortie-bb3ca192-cd15-469a-a791-2b2853f31fac/,Earthforce FS,,05/10/2016,14.0000000,17.0000000,9.799256000000,99.979989000000,,Ko Ma Koh Phangan Thaïlande,54391,observation-bb3ca192-cd15-469a-a791-2b2853f31fac-3,https://biolit.fr/observations/observation-bb3ca192-cd15-469a-a791-2b2853f31fac-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC00954_0-scaled.jpg,,FALSE, +N1,61112,sortie-bb3ca192-cd15-469a-a791-2b2853f31fac,https://biolit.fr/sorties/sortie-bb3ca192-cd15-469a-a791-2b2853f31fac/,Earthforce FS,,05/10/2016,14.0000000,17.0000000,9.799256000000,99.979989000000,,Ko Ma Koh Phangan Thaïlande,54393,observation-bb3ca192-cd15-469a-a791-2b2853f31fac-4,https://biolit.fr/observations/observation-bb3ca192-cd15-469a-a791-2b2853f31fac-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC00956_0-scaled.jpg,,FALSE, +N1,61112,sortie-bb3ca192-cd15-469a-a791-2b2853f31fac,https://biolit.fr/sorties/sortie-bb3ca192-cd15-469a-a791-2b2853f31fac/,Earthforce FS,,05/10/2016,14.0000000,17.0000000,9.799256000000,99.979989000000,,Ko Ma Koh Phangan Thaïlande,54395,observation-bb3ca192-cd15-469a-a791-2b2853f31fac-5,https://biolit.fr/observations/observation-bb3ca192-cd15-469a-a791-2b2853f31fac-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC00972_0-scaled.jpg,,FALSE, +N1,61112,sortie-bb3ca192-cd15-469a-a791-2b2853f31fac,https://biolit.fr/sorties/sortie-bb3ca192-cd15-469a-a791-2b2853f31fac/,Earthforce FS,,05/10/2016,14.0000000,17.0000000,9.799256000000,99.979989000000,,Ko Ma Koh Phangan Thaïlande,54397,observation-bb3ca192-cd15-469a-a791-2b2853f31fac-6,https://biolit.fr/observations/observation-bb3ca192-cd15-469a-a791-2b2853f31fac-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC00979_0-scaled.jpg,,FALSE, +N1,61112,sortie-bb3ca192-cd15-469a-a791-2b2853f31fac,https://biolit.fr/sorties/sortie-bb3ca192-cd15-469a-a791-2b2853f31fac/,Earthforce FS,,05/10/2016,14.0000000,17.0000000,9.799256000000,99.979989000000,,Ko Ma Koh Phangan Thaïlande,54399,observation-bb3ca192-cd15-469a-a791-2b2853f31fac-7,https://biolit.fr/observations/observation-bb3ca192-cd15-469a-a791-2b2853f31fac-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC00981_0-scaled.jpg,,FALSE, +N1,61112,sortie-bb3ca192-cd15-469a-a791-2b2853f31fac,https://biolit.fr/sorties/sortie-bb3ca192-cd15-469a-a791-2b2853f31fac/,Earthforce FS,,05/10/2016,14.0000000,17.0000000,9.799256000000,99.979989000000,,Ko Ma Koh Phangan Thaïlande,54401,observation-bb3ca192-cd15-469a-a791-2b2853f31fac-8,https://biolit.fr/observations/observation-bb3ca192-cd15-469a-a791-2b2853f31fac-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC00983_0-scaled.jpg,,FALSE, +N1,61112,sortie-bb3ca192-cd15-469a-a791-2b2853f31fac,https://biolit.fr/sorties/sortie-bb3ca192-cd15-469a-a791-2b2853f31fac/,Earthforce FS,,05/10/2016,14.0000000,17.0000000,9.799256000000,99.979989000000,,Ko Ma Koh Phangan Thaïlande,54403,observation-bb3ca192-cd15-469a-a791-2b2853f31fac-9,https://biolit.fr/observations/observation-bb3ca192-cd15-469a-a791-2b2853f31fac-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC00984_0-scaled.jpg,,FALSE, +N1,61112,sortie-bb3ca192-cd15-469a-a791-2b2853f31fac,https://biolit.fr/sorties/sortie-bb3ca192-cd15-469a-a791-2b2853f31fac/,Earthforce FS,,05/10/2016,14.0000000,17.0000000,9.799256000000,99.979989000000,,Ko Ma Koh Phangan Thaïlande,54405,observation-bb3ca192-cd15-469a-a791-2b2853f31fac-10,https://biolit.fr/observations/observation-bb3ca192-cd15-469a-a791-2b2853f31fac-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC00985_0-scaled.jpg,,FALSE, +N1,61112,sortie-bb3ca192-cd15-469a-a791-2b2853f31fac,https://biolit.fr/sorties/sortie-bb3ca192-cd15-469a-a791-2b2853f31fac/,Earthforce FS,,05/10/2016,14.0000000,17.0000000,9.799256000000,99.979989000000,,Ko Ma Koh Phangan Thaïlande,54407,observation-bb3ca192-cd15-469a-a791-2b2853f31fac-11,https://biolit.fr/observations/observation-bb3ca192-cd15-469a-a791-2b2853f31fac-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC00988_0-scaled.jpg,,FALSE, +N1,61112,sortie-bb3ca192-cd15-469a-a791-2b2853f31fac,https://biolit.fr/sorties/sortie-bb3ca192-cd15-469a-a791-2b2853f31fac/,Earthforce FS,,05/10/2016,14.0000000,17.0000000,9.799256000000,99.979989000000,,Ko Ma Koh Phangan Thaïlande,54409,observation-bb3ca192-cd15-469a-a791-2b2853f31fac-12,https://biolit.fr/observations/observation-bb3ca192-cd15-469a-a791-2b2853f31fac-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC00993_0-scaled.jpg,,FALSE, +N1,61112,sortie-bb3ca192-cd15-469a-a791-2b2853f31fac,https://biolit.fr/sorties/sortie-bb3ca192-cd15-469a-a791-2b2853f31fac/,Earthforce FS,,05/10/2016,14.0000000,17.0000000,9.799256000000,99.979989000000,,Ko Ma Koh Phangan Thaïlande,54411,observation-bb3ca192-cd15-469a-a791-2b2853f31fac-13,https://biolit.fr/observations/observation-bb3ca192-cd15-469a-a791-2b2853f31fac-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC01039-scaled.jpg,,FALSE, +N1,61113,sortie-7db0eeec-d7bb-4c26-b9fa-86824ddc2935,https://biolit.fr/sorties/sortie-7db0eeec-d7bb-4c26-b9fa-86824ddc2935/,AIEJE,,05/10/2016,14.0000000,14.0000000,43.331397000000,5.203340000000,,ENSUES LA REDONNE plage des anthenors,54413,observation-7db0eeec-d7bb-4c26-b9fa-86824ddc2935,https://biolit.fr/observations/observation-7db0eeec-d7bb-4c26-b9fa-86824ddc2935/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2950-scaled.jpg,,TRUE, +N1,61114,sortie-2dca230a-10aa-4a94-b508-2884053ddc9b,https://biolit.fr/sorties/sortie-2dca230a-10aa-4a94-b508-2884053ddc9b/,Phil,,05/08/2016,12.0:15,12.0:25,48.168669000000,-4.298130000000,,Plomodiern - Finistère,54415,observation-2dca230a-10aa-4a94-b508-2884053ddc9b,https://biolit.fr/observations/observation-2dca230a-10aa-4a94-b508-2884053ddc9b/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020662.JPG,,TRUE, +N1,61114,sortie-2dca230a-10aa-4a94-b508-2884053ddc9b,https://biolit.fr/sorties/sortie-2dca230a-10aa-4a94-b508-2884053ddc9b/,Phil,,05/08/2016,12.0:15,12.0:25,48.168669000000,-4.298130000000,,Plomodiern - Finistère,54417,observation-2dca230a-10aa-4a94-b508-2884053ddc9b-2,https://biolit.fr/observations/observation-2dca230a-10aa-4a94-b508-2884053ddc9b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020674_0.JPG,,FALSE, +N1,61114,sortie-2dca230a-10aa-4a94-b508-2884053ddc9b,https://biolit.fr/sorties/sortie-2dca230a-10aa-4a94-b508-2884053ddc9b/,Phil,,05/08/2016,12.0:15,12.0:25,48.168669000000,-4.298130000000,,Plomodiern - Finistère,54419,observation-2dca230a-10aa-4a94-b508-2884053ddc9b-3,https://biolit.fr/observations/observation-2dca230a-10aa-4a94-b508-2884053ddc9b-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1020680.JPG,,TRUE, +N1,61114,sortie-2dca230a-10aa-4a94-b508-2884053ddc9b,https://biolit.fr/sorties/sortie-2dca230a-10aa-4a94-b508-2884053ddc9b/,Phil,,05/08/2016,12.0:15,12.0:25,48.168669000000,-4.298130000000,,Plomodiern - Finistère,54421,observation-2dca230a-10aa-4a94-b508-2884053ddc9b-4,https://biolit.fr/observations/observation-2dca230a-10aa-4a94-b508-2884053ddc9b-4/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/P1020682.JPG,,TRUE, +N1,61114,sortie-2dca230a-10aa-4a94-b508-2884053ddc9b,https://biolit.fr/sorties/sortie-2dca230a-10aa-4a94-b508-2884053ddc9b/,Phil,,05/08/2016,12.0:15,12.0:25,48.168669000000,-4.298130000000,,Plomodiern - Finistère,54423,observation-2dca230a-10aa-4a94-b508-2884053ddc9b-5,https://biolit.fr/observations/observation-2dca230a-10aa-4a94-b508-2884053ddc9b-5/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020685.JPG,,TRUE, +N1,61115,sortie-66c9b915-24eb-49dc-bf9e-8f0b0a91a045,https://biolit.fr/sorties/sortie-66c9b915-24eb-49dc-bf9e-8f0b0a91a045/,Phil,,05/08/2016,12.0000000,12.0:15,48.168765000000,-4.296113000000,,Plomodiern - Finistère,54425,observation-66c9b915-24eb-49dc-bf9e-8f0b0a91a045,https://biolit.fr/observations/observation-66c9b915-24eb-49dc-bf9e-8f0b0a91a045/,Aplidium punctum,Flocon pédonculé orange,,https://biolit.fr/wp-content/uploads/2023/07/P1020654.JPG,,FALSE, +N1,61115,sortie-66c9b915-24eb-49dc-bf9e-8f0b0a91a045,https://biolit.fr/sorties/sortie-66c9b915-24eb-49dc-bf9e-8f0b0a91a045/,Phil,,05/08/2016,12.0000000,12.0:15,48.168765000000,-4.296113000000,,Plomodiern - Finistère,54427,observation-66c9b915-24eb-49dc-bf9e-8f0b0a91a045-2,https://biolit.fr/observations/observation-66c9b915-24eb-49dc-bf9e-8f0b0a91a045-2/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/P1020643.JPG,,TRUE, +N1,61115,sortie-66c9b915-24eb-49dc-bf9e-8f0b0a91a045,https://biolit.fr/sorties/sortie-66c9b915-24eb-49dc-bf9e-8f0b0a91a045/,Phil,,05/08/2016,12.0000000,12.0:15,48.168765000000,-4.296113000000,,Plomodiern - Finistère,54429,observation-66c9b915-24eb-49dc-bf9e-8f0b0a91a045-3,https://biolit.fr/observations/observation-66c9b915-24eb-49dc-bf9e-8f0b0a91a045-3/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/P1020641.JPG,,TRUE, +N1,61115,sortie-66c9b915-24eb-49dc-bf9e-8f0b0a91a045,https://biolit.fr/sorties/sortie-66c9b915-24eb-49dc-bf9e-8f0b0a91a045/,Phil,,05/08/2016,12.0000000,12.0:15,48.168765000000,-4.296113000000,,Plomodiern - Finistère,54431,observation-66c9b915-24eb-49dc-bf9e-8f0b0a91a045-4,https://biolit.fr/observations/observation-66c9b915-24eb-49dc-bf9e-8f0b0a91a045-4/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/P1020646.JPG,,TRUE, +N1,61115,sortie-66c9b915-24eb-49dc-bf9e-8f0b0a91a045,https://biolit.fr/sorties/sortie-66c9b915-24eb-49dc-bf9e-8f0b0a91a045/,Phil,,05/08/2016,12.0000000,12.0:15,48.168765000000,-4.296113000000,,Plomodiern - Finistère,54433,observation-66c9b915-24eb-49dc-bf9e-8f0b0a91a045-5,https://biolit.fr/observations/observation-66c9b915-24eb-49dc-bf9e-8f0b0a91a045-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020636.JPG,,FALSE, +N1,61116,sortie-162e5b9e-bb75-4641-8135-aa83fb993d78,https://biolit.fr/sorties/sortie-162e5b9e-bb75-4641-8135-aa83fb993d78/,Phil,,05/05/2016,17.0:25,17.0000000,47.829271000000,-4.362615000000,,Penmarc'h - Finistère,54435,observation-162e5b9e-bb75-4641-8135-aa83fb993d78,https://biolit.fr/observations/observation-162e5b9e-bb75-4641-8135-aa83fb993d78/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020586.JPG,,FALSE, +N1,61116,sortie-162e5b9e-bb75-4641-8135-aa83fb993d78,https://biolit.fr/sorties/sortie-162e5b9e-bb75-4641-8135-aa83fb993d78/,Phil,,05/05/2016,17.0:25,17.0000000,47.829271000000,-4.362615000000,,Penmarc'h - Finistère,54437,observation-162e5b9e-bb75-4641-8135-aa83fb993d78-2,https://biolit.fr/observations/observation-162e5b9e-bb75-4641-8135-aa83fb993d78-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020601.JPG,,FALSE, +N1,61116,sortie-162e5b9e-bb75-4641-8135-aa83fb993d78,https://biolit.fr/sorties/sortie-162e5b9e-bb75-4641-8135-aa83fb993d78/,Phil,,05/05/2016,17.0:25,17.0000000,47.829271000000,-4.362615000000,,Penmarc'h - Finistère,54439,observation-162e5b9e-bb75-4641-8135-aa83fb993d78-3,https://biolit.fr/observations/observation-162e5b9e-bb75-4641-8135-aa83fb993d78-3/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1020602.JPG,,TRUE, +N1,61117,sortie-293abe9b-de67-4a1a-b68d-ee0465bd0381,https://biolit.fr/sorties/sortie-293abe9b-de67-4a1a-b68d-ee0465bd0381/,Phil,,05/08/2016,12.000005,12.0000000,48.16989600000,-4.293517000000,,Plomodiern - Finistère,54441,observation-293abe9b-de67-4a1a-b68d-ee0465bd0381,https://biolit.fr/observations/observation-293abe9b-de67-4a1a-b68d-ee0465bd0381/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1020628.JPG,,TRUE, +N1,61117,sortie-293abe9b-de67-4a1a-b68d-ee0465bd0381,https://biolit.fr/sorties/sortie-293abe9b-de67-4a1a-b68d-ee0465bd0381/,Phil,,05/08/2016,12.000005,12.0000000,48.16989600000,-4.293517000000,,Plomodiern - Finistère,54443,observation-293abe9b-de67-4a1a-b68d-ee0465bd0381-2,https://biolit.fr/observations/observation-293abe9b-de67-4a1a-b68d-ee0465bd0381-2/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1020629.JPG,,TRUE, +N1,61117,sortie-293abe9b-de67-4a1a-b68d-ee0465bd0381,https://biolit.fr/sorties/sortie-293abe9b-de67-4a1a-b68d-ee0465bd0381/,Phil,,05/08/2016,12.000005,12.0000000,48.16989600000,-4.293517000000,,Plomodiern - Finistère,54445,observation-293abe9b-de67-4a1a-b68d-ee0465bd0381-3,https://biolit.fr/observations/observation-293abe9b-de67-4a1a-b68d-ee0465bd0381-3/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1020631.JPG,,TRUE, +N1,61118,sortie-4917c058-b0c3-43e0-bcdc-94a5a52e3bd9,https://biolit.fr/sorties/sortie-4917c058-b0c3-43e0-bcdc-94a5a52e3bd9/,slegallais,,05/04/2016,8.0000000,17.0000000,42.689698000000,9.479725000000,,Bastia,54447,observation-4917c058-b0c3-43e0-bcdc-94a5a52e3bd9,https://biolit.fr/observations/observation-4917c058-b0c3-43e0-bcdc-94a5a52e3bd9/,Prionace glauca,Requin peau bleue,,https://biolit.fr/wp-content/uploads/2023/07/PB_3.jpg,,TRUE, +N1,61119,sortie-f2c484fe-cd2b-4eed-b9e2-091927c848be,https://biolit.fr/sorties/sortie-f2c484fe-cd2b-4eed-b9e2-091927c848be/,Phil,,05/05/2016,17.0000000,17.0:55,47.828147000000,-4.361872000000,,Penmarc'h - Finistère,54449,observation-f2c484fe-cd2b-4eed-b9e2-091927c848be,https://biolit.fr/observations/observation-f2c484fe-cd2b-4eed-b9e2-091927c848be/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020620.JPG,,FALSE, +N1,61119,sortie-f2c484fe-cd2b-4eed-b9e2-091927c848be,https://biolit.fr/sorties/sortie-f2c484fe-cd2b-4eed-b9e2-091927c848be/,Phil,,05/05/2016,17.0000000,17.0:55,47.828147000000,-4.361872000000,,Penmarc'h - Finistère,54451,observation-f2c484fe-cd2b-4eed-b9e2-091927c848be-2,https://biolit.fr/observations/observation-f2c484fe-cd2b-4eed-b9e2-091927c848be-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020618.JPG,,FALSE, +N1,61119,sortie-f2c484fe-cd2b-4eed-b9e2-091927c848be,https://biolit.fr/sorties/sortie-f2c484fe-cd2b-4eed-b9e2-091927c848be/,Phil,,05/05/2016,17.0000000,17.0:55,47.828147000000,-4.361872000000,,Penmarc'h - Finistère,54453,observation-f2c484fe-cd2b-4eed-b9e2-091927c848be-3,https://biolit.fr/observations/observation-f2c484fe-cd2b-4eed-b9e2-091927c848be-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020608.JPG,,TRUE, +N1,61119,sortie-f2c484fe-cd2b-4eed-b9e2-091927c848be,https://biolit.fr/sorties/sortie-f2c484fe-cd2b-4eed-b9e2-091927c848be/,Phil,,05/05/2016,17.0000000,17.0:55,47.828147000000,-4.361872000000,,Penmarc'h - Finistère,54455,observation-f2c484fe-cd2b-4eed-b9e2-091927c848be-4,https://biolit.fr/observations/observation-f2c484fe-cd2b-4eed-b9e2-091927c848be-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020610.JPG,,TRUE, +N1,61119,sortie-f2c484fe-cd2b-4eed-b9e2-091927c848be,https://biolit.fr/sorties/sortie-f2c484fe-cd2b-4eed-b9e2-091927c848be/,Phil,,05/05/2016,17.0000000,17.0:55,47.828147000000,-4.361872000000,,Penmarc'h - Finistère,54457,observation-f2c484fe-cd2b-4eed-b9e2-091927c848be-5,https://biolit.fr/observations/observation-f2c484fe-cd2b-4eed-b9e2-091927c848be-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020616.JPG,,FALSE, +N1,61119,sortie-f2c484fe-cd2b-4eed-b9e2-091927c848be,https://biolit.fr/sorties/sortie-f2c484fe-cd2b-4eed-b9e2-091927c848be/,Phil,,05/05/2016,17.0000000,17.0:55,47.828147000000,-4.361872000000,,Penmarc'h - Finistère,54459,observation-f2c484fe-cd2b-4eed-b9e2-091927c848be-6,https://biolit.fr/observations/observation-f2c484fe-cd2b-4eed-b9e2-091927c848be-6/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020617.JPG,,TRUE, +N1,61120,sortie-6155574c-4f6b-4260-8490-72b1f43113e7,https://biolit.fr/sorties/sortie-6155574c-4f6b-4260-8490-72b1f43113e7/,Phil,,05/05/2016,18.0:15,18.0000000,47.798118000000,-4.349483000000,,Kerity - Finistère,54461,observation-6155574c-4f6b-4260-8490-72b1f43113e7,https://biolit.fr/observations/observation-6155574c-4f6b-4260-8490-72b1f43113e7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020626.JPG,,FALSE, +N1,61120,sortie-6155574c-4f6b-4260-8490-72b1f43113e7,https://biolit.fr/sorties/sortie-6155574c-4f6b-4260-8490-72b1f43113e7/,Phil,,05/05/2016,18.0:15,18.0000000,47.798118000000,-4.349483000000,,Kerity - Finistère,54463,observation-6155574c-4f6b-4260-8490-72b1f43113e7-2,https://biolit.fr/observations/observation-6155574c-4f6b-4260-8490-72b1f43113e7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020625.JPG,,FALSE, +N1,61120,sortie-6155574c-4f6b-4260-8490-72b1f43113e7,https://biolit.fr/sorties/sortie-6155574c-4f6b-4260-8490-72b1f43113e7/,Phil,,05/05/2016,18.0:15,18.0000000,47.798118000000,-4.349483000000,,Kerity - Finistère,54465,observation-6155574c-4f6b-4260-8490-72b1f43113e7-3,https://biolit.fr/observations/observation-6155574c-4f6b-4260-8490-72b1f43113e7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020621.JPG,,FALSE, +N1,61120,sortie-6155574c-4f6b-4260-8490-72b1f43113e7,https://biolit.fr/sorties/sortie-6155574c-4f6b-4260-8490-72b1f43113e7/,Phil,,05/05/2016,18.0:15,18.0000000,47.798118000000,-4.349483000000,,Kerity - Finistère,54467,observation-6155574c-4f6b-4260-8490-72b1f43113e7-4,https://biolit.fr/observations/observation-6155574c-4f6b-4260-8490-72b1f43113e7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020624.JPG,,FALSE, +N1,61121,sortie-535d00bf-8e78-44f7-940f-68c2db604a68,https://biolit.fr/sorties/sortie-535d00bf-8e78-44f7-940f-68c2db604a68/,Marine,,4/21/2016 0:00,14.0000000,15.0000000,43.267177000000,5.371115000000,,Base nautique du Roucas Blanc,54469,observation-535d00bf-8e78-44f7-940f-68c2db604a68,https://biolit.fr/observations/observation-535d00bf-8e78-44f7-940f-68c2db604a68/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0023_0-scaled.jpg,,FALSE, +N1,61121,sortie-535d00bf-8e78-44f7-940f-68c2db604a68,https://biolit.fr/sorties/sortie-535d00bf-8e78-44f7-940f-68c2db604a68/,Marine,,4/21/2016 0:00,14.0000000,15.0000000,43.267177000000,5.371115000000,,Base nautique du Roucas Blanc,54471,observation-535d00bf-8e78-44f7-940f-68c2db604a68-2,https://biolit.fr/observations/observation-535d00bf-8e78-44f7-940f-68c2db604a68-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0024-scaled.jpg,,FALSE, +N1,61121,sortie-535d00bf-8e78-44f7-940f-68c2db604a68,https://biolit.fr/sorties/sortie-535d00bf-8e78-44f7-940f-68c2db604a68/,Marine,,4/21/2016 0:00,14.0000000,15.0000000,43.267177000000,5.371115000000,,Base nautique du Roucas Blanc,54473,observation-535d00bf-8e78-44f7-940f-68c2db604a68-3,https://biolit.fr/observations/observation-535d00bf-8e78-44f7-940f-68c2db604a68-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0025.jpg,,FALSE, +N1,61122,sortie-d849128e-d2a6-47f2-8fae-9aa9e1818327,https://biolit.fr/sorties/sortie-d849128e-d2a6-47f2-8fae-9aa9e1818327/,Ville de Marseille,,4/29/2016 0:00,11.0000000,12.0000000,43.26700300000,5.370881000000,,Base nautique du Roucas Blanc,54474,observation-d849128e-d2a6-47f2-8fae-9aa9e1818327,https://biolit.fr/observations/observation-d849128e-d2a6-47f2-8fae-9aa9e1818327/,Colpomenia sinuosa,Colpoménia sinueux,,https://biolit.fr/wp-content/uploads/2023/07/P1060811-scaled.jpg,,TRUE, +N1,61123,sortie-3f811b43-01a3-4226-81fe-8f07f554413e,https://biolit.fr/sorties/sortie-3f811b43-01a3-4226-81fe-8f07f554413e/,Ville de Marseille,,4/29/2016 0:00,11.0000000,12.0000000,43.26700300000,5.370881000000,,Base nautique du Roucas Blanc,54476,observation-3f811b43-01a3-4226-81fe-8f07f554413e,https://biolit.fr/observations/observation-3f811b43-01a3-4226-81fe-8f07f554413e/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/P1060818-scaled.jpg,,TRUE, +N1,61123,sortie-3f811b43-01a3-4226-81fe-8f07f554413e,https://biolit.fr/sorties/sortie-3f811b43-01a3-4226-81fe-8f07f554413e/,Ville de Marseille,,4/29/2016 0:00,11.0000000,12.0000000,43.26700300000,5.370881000000,,Base nautique du Roucas Blanc,54478,observation-3f811b43-01a3-4226-81fe-8f07f554413e-2,https://biolit.fr/observations/observation-3f811b43-01a3-4226-81fe-8f07f554413e-2/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/P1060820-scaled.jpg,,TRUE, +N1,61123,sortie-3f811b43-01a3-4226-81fe-8f07f554413e,https://biolit.fr/sorties/sortie-3f811b43-01a3-4226-81fe-8f07f554413e/,Ville de Marseille,,4/29/2016 0:00,11.0000000,12.0000000,43.26700300000,5.370881000000,,Base nautique du Roucas Blanc,54480,observation-3f811b43-01a3-4226-81fe-8f07f554413e-3,https://biolit.fr/observations/observation-3f811b43-01a3-4226-81fe-8f07f554413e-3/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/P1060819-scaled.jpg,,TRUE, +N1,61124,sortie-8f606675-c1fb-4222-817d-612e7187dd09,https://biolit.fr/sorties/sortie-8f606675-c1fb-4222-817d-612e7187dd09/,Ville de Marseille,,4/29/2016 0:00,11.0000000,12.0000000,43.26700300000,5.370881000000,,Base nautique du Roucas Blanc,54482,observation-8f606675-c1fb-4222-817d-612e7187dd09,https://biolit.fr/observations/observation-8f606675-c1fb-4222-817d-612e7187dd09/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060808-scaled.jpg,,FALSE, +N1,61125,sortie-8d063777-daa1-4cf0-8963-d06b15cb0347,https://biolit.fr/sorties/sortie-8d063777-daa1-4cf0-8963-d06b15cb0347/,azelie,,05/01/2016,16.0000000,16.0:45,49.324397000000,-0.008115000000,,Plage de Villers-Sur-Mer ,54484,observation-8d063777-daa1-4cf0-8963-d06b15cb0347,https://biolit.fr/observations/observation-8d063777-daa1-4cf0-8963-d06b15cb0347/,Loligo spp.,Ponte de Calmar,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_2619-scaled.jpg,,TRUE, +N1,61125,sortie-8d063777-daa1-4cf0-8963-d06b15cb0347,https://biolit.fr/sorties/sortie-8d063777-daa1-4cf0-8963-d06b15cb0347/,azelie,,05/01/2016,16.0000000,16.0:45,49.324397000000,-0.008115000000,,Plage de Villers-Sur-Mer ,54486,observation-8d063777-daa1-4cf0-8963-d06b15cb0347-2,https://biolit.fr/observations/observation-8d063777-daa1-4cf0-8963-d06b15cb0347-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2620-scaled.jpg,,FALSE, +N1,61125,sortie-8d063777-daa1-4cf0-8963-d06b15cb0347,https://biolit.fr/sorties/sortie-8d063777-daa1-4cf0-8963-d06b15cb0347/,azelie,,05/01/2016,16.0000000,16.0:45,49.324397000000,-0.008115000000,,Plage de Villers-Sur-Mer ,54488,observation-8d063777-daa1-4cf0-8963-d06b15cb0347-3,https://biolit.fr/observations/observation-8d063777-daa1-4cf0-8963-d06b15cb0347-3/,Loligo spp.,Ponte de Calmar,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_2623-scaled.jpg,,TRUE, +N1,61125,sortie-8d063777-daa1-4cf0-8963-d06b15cb0347,https://biolit.fr/sorties/sortie-8d063777-daa1-4cf0-8963-d06b15cb0347/,azelie,,05/01/2016,16.0000000,16.0:45,49.324397000000,-0.008115000000,,Plage de Villers-Sur-Mer ,54490,observation-8d063777-daa1-4cf0-8963-d06b15cb0347-4,https://biolit.fr/observations/observation-8d063777-daa1-4cf0-8963-d06b15cb0347-4/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2625-scaled.jpg,,TRUE, +N1,61126,sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6,https://biolit.fr/sorties/sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6/,azelie,,05/01/2016,16.0000000,16.0000000,49.324387000000,-0.00763400000,,plage de Villers-Sur-Mer ,54492,observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6,https://biolit.fr/observations/observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6/,Ensis magnus,Couteau arqué,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2591-rotated.jpg,,TRUE, +N1,61126,sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6,https://biolit.fr/sorties/sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6/,azelie,,05/01/2016,16.0000000,16.0000000,49.324387000000,-0.00763400000,,plage de Villers-Sur-Mer ,54494,observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-2,https://biolit.fr/observations/observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2593-rotated.jpg,,FALSE, +N1,61126,sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6,https://biolit.fr/sorties/sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6/,azelie,,05/01/2016,16.0000000,16.0000000,49.324387000000,-0.00763400000,,plage de Villers-Sur-Mer ,54496,observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-3,https://biolit.fr/observations/observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2594-rotated.jpg,,FALSE, +N1,61126,sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6,https://biolit.fr/sorties/sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6/,azelie,,05/01/2016,16.0000000,16.0000000,49.324387000000,-0.00763400000,,plage de Villers-Sur-Mer ,54498,observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-4,https://biolit.fr/observations/observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2595-rotated.jpg,,FALSE, +N1,61126,sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6,https://biolit.fr/sorties/sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6/,azelie,,05/01/2016,16.0000000,16.0000000,49.324387000000,-0.00763400000,,plage de Villers-Sur-Mer ,54500,observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-5,https://biolit.fr/observations/observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2597-rotated.jpg,,FALSE, +N1,61126,sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6,https://biolit.fr/sorties/sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6/,azelie,,05/01/2016,16.0000000,16.0000000,49.324387000000,-0.00763400000,,plage de Villers-Sur-Mer ,54502,observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-6,https://biolit.fr/observations/observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-6/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_2601-scaled.jpg,,TRUE, +N1,61126,sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6,https://biolit.fr/sorties/sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6/,azelie,,05/01/2016,16.0000000,16.0000000,49.324387000000,-0.00763400000,,plage de Villers-Sur-Mer ,54504,observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-7,https://biolit.fr/observations/observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2605-scaled.jpg,,FALSE, +N1,61126,sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6,https://biolit.fr/sorties/sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6/,azelie,,05/01/2016,16.0000000,16.0000000,49.324387000000,-0.00763400000,,plage de Villers-Sur-Mer ,54506,observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-8,https://biolit.fr/observations/observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2606-scaled.jpg,,FALSE, +N1,61126,sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6,https://biolit.fr/sorties/sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6/,azelie,,05/01/2016,16.0000000,16.0000000,49.324387000000,-0.00763400000,,plage de Villers-Sur-Mer ,54508,observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-9,https://biolit.fr/observations/observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2610-scaled.jpg,,FALSE, +N1,61126,sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6,https://biolit.fr/sorties/sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6/,azelie,,05/01/2016,16.0000000,16.0000000,49.324387000000,-0.00763400000,,plage de Villers-Sur-Mer ,54510,observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-10,https://biolit.fr/observations/observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-10/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_2613-scaled.jpg,,TRUE, +N1,61126,sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6,https://biolit.fr/sorties/sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6/,azelie,,05/01/2016,16.0000000,16.0000000,49.324387000000,-0.00763400000,,plage de Villers-Sur-Mer ,54512,observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-11,https://biolit.fr/observations/observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2616-scaled.jpg,,FALSE, +N1,61126,sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6,https://biolit.fr/sorties/sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6/,azelie,,05/01/2016,16.0000000,16.0000000,49.324387000000,-0.00763400000,,plage de Villers-Sur-Mer ,54514,observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-12,https://biolit.fr/observations/observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2618-scaled.jpg,,FALSE, +N1,61126,sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6,https://biolit.fr/sorties/sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6/,azelie,,05/01/2016,16.0000000,16.0000000,49.324387000000,-0.00763400000,,plage de Villers-Sur-Mer ,54516,observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-13,https://biolit.fr/observations/observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2614-scaled.jpg,,FALSE, +N1,61127,sortie-c616b7c7-1096-4e23-beeb-f48c0bc0a320,https://biolit.fr/sorties/sortie-c616b7c7-1096-4e23-beeb-f48c0bc0a320/,Marine,,4/27/2016 0:00,9.0000000,11.0000000,43.266945000000,5.370973000000,,Base nautique du Roucas Blanc,54518,observation-c616b7c7-1096-4e23-beeb-f48c0bc0a320,https://biolit.fr/observations/observation-c616b7c7-1096-4e23-beeb-f48c0bc0a320/,Bonellia viridis,Bonellie verte,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0019_0-scaled.jpg,,TRUE, +N1,61127,sortie-c616b7c7-1096-4e23-beeb-f48c0bc0a320,https://biolit.fr/sorties/sortie-c616b7c7-1096-4e23-beeb-f48c0bc0a320/,Marine,,4/27/2016 0:00,9.0000000,11.0000000,43.266945000000,5.370973000000,,Base nautique du Roucas Blanc,54520,observation-c616b7c7-1096-4e23-beeb-f48c0bc0a320-2,https://biolit.fr/observations/observation-c616b7c7-1096-4e23-beeb-f48c0bc0a320-2/,Bonellia viridis,Bonellie verte,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0020_1-scaled.jpg,,TRUE, +N1,61128,sortie-1600ec15-877c-4038-b96d-15408bf502fb,https://biolit.fr/sorties/sortie-1600ec15-877c-4038-b96d-15408bf502fb/,SevErine,,4/20/2016 0:00,14.0000000,16.0000000,43.272822000000,5.362119000000,,Plage du Prophète,54522,observation-1600ec15-877c-4038-b96d-15408bf502fb,https://biolit.fr/observations/observation-1600ec15-877c-4038-b96d-15408bf502fb/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/SAM_0747.JPG,,TRUE, +N1,61128,sortie-1600ec15-877c-4038-b96d-15408bf502fb,https://biolit.fr/sorties/sortie-1600ec15-877c-4038-b96d-15408bf502fb/,SevErine,,4/20/2016 0:00,14.0000000,16.0000000,43.272822000000,5.362119000000,,Plage du Prophète,54524,observation-1600ec15-877c-4038-b96d-15408bf502fb-2,https://biolit.fr/observations/observation-1600ec15-877c-4038-b96d-15408bf502fb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/SAM_0750.JPG,,FALSE, +N1,61128,sortie-1600ec15-877c-4038-b96d-15408bf502fb,https://biolit.fr/sorties/sortie-1600ec15-877c-4038-b96d-15408bf502fb/,SevErine,,4/20/2016 0:00,14.0000000,16.0000000,43.272822000000,5.362119000000,,Plage du Prophète,54526,observation-1600ec15-877c-4038-b96d-15408bf502fb-3,https://biolit.fr/observations/observation-1600ec15-877c-4038-b96d-15408bf502fb-3/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/SAM_0754.JPG,,TRUE, +N1,61128,sortie-1600ec15-877c-4038-b96d-15408bf502fb,https://biolit.fr/sorties/sortie-1600ec15-877c-4038-b96d-15408bf502fb/,SevErine,,4/20/2016 0:00,14.0000000,16.0000000,43.272822000000,5.362119000000,,Plage du Prophète,54528,observation-1600ec15-877c-4038-b96d-15408bf502fb-4,https://biolit.fr/observations/observation-1600ec15-877c-4038-b96d-15408bf502fb-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/SAM_0756.JPG,,FALSE, +N1,61128,sortie-1600ec15-877c-4038-b96d-15408bf502fb,https://biolit.fr/sorties/sortie-1600ec15-877c-4038-b96d-15408bf502fb/,SevErine,,4/20/2016 0:00,14.0000000,16.0000000,43.272822000000,5.362119000000,,Plage du Prophète,54530,observation-1600ec15-877c-4038-b96d-15408bf502fb-5,https://biolit.fr/observations/observation-1600ec15-877c-4038-b96d-15408bf502fb-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/SAM_0758.JPG,,FALSE, +N1,61128,sortie-1600ec15-877c-4038-b96d-15408bf502fb,https://biolit.fr/sorties/sortie-1600ec15-877c-4038-b96d-15408bf502fb/,SevErine,,4/20/2016 0:00,14.0000000,16.0000000,43.272822000000,5.362119000000,,Plage du Prophète,54532,observation-1600ec15-877c-4038-b96d-15408bf502fb-6,https://biolit.fr/observations/observation-1600ec15-877c-4038-b96d-15408bf502fb-6/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/SAM_0759.JPG,,TRUE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54534,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,,,,https://biolit.fr/wp-content/uploads/2023/07/1 Gibbule toupie_Monodontaturbinata_ventre-scaled.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54536,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-2,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/1 Gibbule toupie_Monodontaturbinata-scaled.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54538,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-3,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/bernard l'érmite Pagure multicolore_pagurus anachoretus-scaled.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54540,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-4,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/concombre de mer vue dessous_holothurie tubuleuse_holothuria tubulosa-scaled.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54542,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-5,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/concombre de mer vue dessus holothurie tubuleuse_holothuria tubulosa-scaled.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54544,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-6,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/aegagropile pelote posidonie_posidonia oceanica-scaled.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54546,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-7,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crabe marbré dos_ Pachygrapsus marmoratus-scaled.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54548,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-8,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crabe marbré ventre_ Pachygrapsus marmoratus.-scaled.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54550,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-9,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule toupie_Monodontaturbinata_ 2-scaled.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54552,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-10,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule toupie_Monodontaturbinata2-scaled.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54554,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-11,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lucine_ Loripes lucinalis vue externe-scaled.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54556,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-12,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/vue interne Lucine_ Loripes lucinalis-scaled.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54558,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-13,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/Peigne coquille Saint-Jacques_ Pecten maximus vue externe-scaled.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54560,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-14,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Peigne coquille Saint-Jacques_ Pecten maximus_vue interne-scaled.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54562,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-15,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mollusque_Vermetus triqueter.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54564,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-16,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/vue externe cyclonasse_ Cyclope neritea-scaled.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54566,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-17,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/vue interne_cyclonasse_ Cyclope nerite-scaled.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54568,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-18,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-18/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/vue externe pelure d'oignon _ou anomie__Anomia ephippium-scaled.jpg,,TRUE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54570,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-19,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/vue interne pelure d'oignon _ou anomie__Anomia ephippium-scaled.jpg,,FALSE, +N1,61130,sortie-0edaf665-30d4-48ba-8326-75dcf7edf1cc,https://biolit.fr/sorties/sortie-0edaf665-30d4-48ba-8326-75dcf7edf1cc/,Phil,,03/12/2016,14.0:35,14.0:45,47.798722000000,-4.179868000000,,Loctudy - Finistère,54572,observation-0edaf665-30d4-48ba-8326-75dcf7edf1cc,https://biolit.fr/observations/observation-0edaf665-30d4-48ba-8326-75dcf7edf1cc/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020154.JPG,,FALSE, +N1,61130,sortie-0edaf665-30d4-48ba-8326-75dcf7edf1cc,https://biolit.fr/sorties/sortie-0edaf665-30d4-48ba-8326-75dcf7edf1cc/,Phil,,03/12/2016,14.0:35,14.0:45,47.798722000000,-4.179868000000,,Loctudy - Finistère,54574,observation-0edaf665-30d4-48ba-8326-75dcf7edf1cc-2,https://biolit.fr/observations/observation-0edaf665-30d4-48ba-8326-75dcf7edf1cc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020148.JPG,,FALSE, +N1,61131,sortie-61e4f2d4-1d5d-4bbe-9a64-3c6a344c2a91,https://biolit.fr/sorties/sortie-61e4f2d4-1d5d-4bbe-9a64-3c6a344c2a91/,Phil,,04/04/2016,14.0000000,14.0:15,47.799887000000,-4.374318000000,,Penmarc'h - Finistère,54576,observation-61e4f2d4-1d5d-4bbe-9a64-3c6a344c2a91,https://biolit.fr/observations/observation-61e4f2d4-1d5d-4bbe-9a64-3c6a344c2a91/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020496.JPG,,FALSE, +N1,61131,sortie-61e4f2d4-1d5d-4bbe-9a64-3c6a344c2a91,https://biolit.fr/sorties/sortie-61e4f2d4-1d5d-4bbe-9a64-3c6a344c2a91/,Phil,,04/04/2016,14.0000000,14.0:15,47.799887000000,-4.374318000000,,Penmarc'h - Finistère,54578,observation-61e4f2d4-1d5d-4bbe-9a64-3c6a344c2a91-2,https://biolit.fr/observations/observation-61e4f2d4-1d5d-4bbe-9a64-3c6a344c2a91-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020502.JPG,,FALSE, +N1,61132,sortie-26493a8e-678d-4b2a-81df-72b188585204,https://biolit.fr/sorties/sortie-26493a8e-678d-4b2a-81df-72b188585204/,Phil,,03/12/2016,14.0000000,14.0:35,47.798780000000,-4.182100000000,,Loctudy - Finistère,54580,observation-26493a8e-678d-4b2a-81df-72b188585204,https://biolit.fr/observations/observation-26493a8e-678d-4b2a-81df-72b188585204/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1020135.JPG,,TRUE, +N1,61132,sortie-26493a8e-678d-4b2a-81df-72b188585204,https://biolit.fr/sorties/sortie-26493a8e-678d-4b2a-81df-72b188585204/,Phil,,03/12/2016,14.0000000,14.0:35,47.798780000000,-4.182100000000,,Loctudy - Finistère,54582,observation-26493a8e-678d-4b2a-81df-72b188585204-2,https://biolit.fr/observations/observation-26493a8e-678d-4b2a-81df-72b188585204-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020129.JPG,,FALSE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54586,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-2,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2464-scaled.jpg,,TRUE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54588,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-3,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_2512.JPG,,TRUE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54590,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-4,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2510_0.JPG,,FALSE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54592,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-5,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-5/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_2509.JPG,,TRUE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54594,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-6,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-6/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_2505-rotated.jpg,,TRUE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54596,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-7,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-7/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_2504_0-rotated.jpg,,TRUE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54598,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-8,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-8/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2503.JPG,,TRUE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54600,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-9,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-9/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2502_0.JPG,,TRUE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54602,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-10,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-10/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_2493_0.JPG,,TRUE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54604,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-11,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2506-scaled.jpg,,FALSE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54606,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-12,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-12/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2492-scaled.jpg,,TRUE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54608,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-13,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2488.jpg,,FALSE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54610,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-14,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2476.jpg,,FALSE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54612,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-15,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-15/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2470-scaled.jpg,,TRUE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54614,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-16,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2489-scaled.jpg,,FALSE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54616,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-17,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2507-scaled.jpg,,FALSE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54618,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-18,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-18/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2478-scaled.jpg,,TRUE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54620,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-19,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2500.jpg,,FALSE, +N1,61134,sortie-40342543-147b-493c-a6ea-276b10d95f1f,https://biolit.fr/sorties/sortie-40342543-147b-493c-a6ea-276b10d95f1f/,Phil,,04/04/2016,13.0000000,14.0000000,47.801092000000,-4.376249000000,,Penmarc'h - Finistère,54622,observation-40342543-147b-493c-a6ea-276b10d95f1f,https://biolit.fr/observations/observation-40342543-147b-493c-a6ea-276b10d95f1f/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/2023/07/P1020485.JPG,,TRUE, +N1,61134,sortie-40342543-147b-493c-a6ea-276b10d95f1f,https://biolit.fr/sorties/sortie-40342543-147b-493c-a6ea-276b10d95f1f/,Phil,,04/04/2016,13.0000000,14.0000000,47.801092000000,-4.376249000000,,Penmarc'h - Finistère,54624,observation-40342543-147b-493c-a6ea-276b10d95f1f-2,https://biolit.fr/observations/observation-40342543-147b-493c-a6ea-276b10d95f1f-2/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/2023/07/P1020472.JPG,,TRUE, +N1,61134,sortie-40342543-147b-493c-a6ea-276b10d95f1f,https://biolit.fr/sorties/sortie-40342543-147b-493c-a6ea-276b10d95f1f/,Phil,,04/04/2016,13.0000000,14.0000000,47.801092000000,-4.376249000000,,Penmarc'h - Finistère,54626,observation-40342543-147b-493c-a6ea-276b10d95f1f-3,https://biolit.fr/observations/observation-40342543-147b-493c-a6ea-276b10d95f1f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020489.JPG,,FALSE, +N1,61134,sortie-40342543-147b-493c-a6ea-276b10d95f1f,https://biolit.fr/sorties/sortie-40342543-147b-493c-a6ea-276b10d95f1f/,Phil,,04/04/2016,13.0000000,14.0000000,47.801092000000,-4.376249000000,,Penmarc'h - Finistère,54628,observation-40342543-147b-493c-a6ea-276b10d95f1f-4,https://biolit.fr/observations/observation-40342543-147b-493c-a6ea-276b10d95f1f-4/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020454.JPG,,TRUE, +N1,61135,sortie-fb8993f5-c8b6-47bf-9e26-d29b06e5c952,https://biolit.fr/sorties/sortie-fb8993f5-c8b6-47bf-9e26-d29b06e5c952/,Phil,,03/12/2016,14.0:25,14.0000000,47.797661000000,-4.183602000000,,Loctudy - Finistère,54630,observation-fb8993f5-c8b6-47bf-9e26-d29b06e5c952,https://biolit.fr/observations/observation-fb8993f5-c8b6-47bf-9e26-d29b06e5c952/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1020123.JPG,,TRUE, +N1,61135,sortie-fb8993f5-c8b6-47bf-9e26-d29b06e5c952,https://biolit.fr/sorties/sortie-fb8993f5-c8b6-47bf-9e26-d29b06e5c952/,Phil,,03/12/2016,14.0:25,14.0000000,47.797661000000,-4.183602000000,,Loctudy - Finistère,54632,observation-fb8993f5-c8b6-47bf-9e26-d29b06e5c952-2,https://biolit.fr/observations/observation-fb8993f5-c8b6-47bf-9e26-d29b06e5c952-2/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1020120.JPG,,TRUE, +N1,61135,sortie-fb8993f5-c8b6-47bf-9e26-d29b06e5c952,https://biolit.fr/sorties/sortie-fb8993f5-c8b6-47bf-9e26-d29b06e5c952/,Phil,,03/12/2016,14.0:25,14.0000000,47.797661000000,-4.183602000000,,Loctudy - Finistère,54634,observation-fb8993f5-c8b6-47bf-9e26-d29b06e5c952-3,https://biolit.fr/observations/observation-fb8993f5-c8b6-47bf-9e26-d29b06e5c952-3/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1020133.JPG,,TRUE, +N1,61136,sortie-1c7ca86f-c13d-4ea4-9645-27e5926d57c9,https://biolit.fr/sorties/sortie-1c7ca86f-c13d-4ea4-9645-27e5926d57c9/,Catherine DUBOIS,,04/11/2016,15.0000000,16.0000000,48.529325000000,-2.656370000000,,"22120 Hillion , Plage Bon Abri. Dans la Baie de Saint Brieuc ",54636,observation-1c7ca86f-c13d-4ea4-9645-27e5926d57c9,https://biolit.fr/observations/observation-1c7ca86f-c13d-4ea4-9645-27e5926d57c9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03587-73.jpg,,FALSE, +N1,61136,sortie-1c7ca86f-c13d-4ea4-9645-27e5926d57c9,https://biolit.fr/sorties/sortie-1c7ca86f-c13d-4ea4-9645-27e5926d57c9/,Catherine DUBOIS,,04/11/2016,15.0000000,16.0000000,48.529325000000,-2.656370000000,,"22120 Hillion , Plage Bon Abri. Dans la Baie de Saint Brieuc ",54638,observation-1c7ca86f-c13d-4ea4-9645-27e5926d57c9-2,https://biolit.fr/observations/observation-1c7ca86f-c13d-4ea4-9645-27e5926d57c9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03579-71.jpg,,FALSE, +N1,61136,sortie-1c7ca86f-c13d-4ea4-9645-27e5926d57c9,https://biolit.fr/sorties/sortie-1c7ca86f-c13d-4ea4-9645-27e5926d57c9/,Catherine DUBOIS,,04/11/2016,15.0000000,16.0000000,48.529325000000,-2.656370000000,,"22120 Hillion , Plage Bon Abri. Dans la Baie de Saint Brieuc ",54640,observation-1c7ca86f-c13d-4ea4-9645-27e5926d57c9-3,https://biolit.fr/observations/observation-1c7ca86f-c13d-4ea4-9645-27e5926d57c9-3/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03590-72.jpg,,TRUE, +N1,61136,sortie-1c7ca86f-c13d-4ea4-9645-27e5926d57c9,https://biolit.fr/sorties/sortie-1c7ca86f-c13d-4ea4-9645-27e5926d57c9/,Catherine DUBOIS,,04/11/2016,15.0000000,16.0000000,48.529325000000,-2.656370000000,,"22120 Hillion , Plage Bon Abri. Dans la Baie de Saint Brieuc ",54642,observation-1c7ca86f-c13d-4ea4-9645-27e5926d57c9-4,https://biolit.fr/observations/observation-1c7ca86f-c13d-4ea4-9645-27e5926d57c9-4/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/DSC03545-74.jpg,,TRUE, +N1,61136,sortie-1c7ca86f-c13d-4ea4-9645-27e5926d57c9,https://biolit.fr/sorties/sortie-1c7ca86f-c13d-4ea4-9645-27e5926d57c9/,Catherine DUBOIS,,04/11/2016,15.0000000,16.0000000,48.529325000000,-2.656370000000,,"22120 Hillion , Plage Bon Abri. Dans la Baie de Saint Brieuc ",54644,observation-1c7ca86f-c13d-4ea4-9645-27e5926d57c9-5,https://biolit.fr/observations/observation-1c7ca86f-c13d-4ea4-9645-27e5926d57c9-5/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/DSC03696-75.jpg,,TRUE, +N1,61136,sortie-1c7ca86f-c13d-4ea4-9645-27e5926d57c9,https://biolit.fr/sorties/sortie-1c7ca86f-c13d-4ea4-9645-27e5926d57c9/,Catherine DUBOIS,,04/11/2016,15.0000000,16.0000000,48.529325000000,-2.656370000000,,"22120 Hillion , Plage Bon Abri. Dans la Baie de Saint Brieuc ",54646,observation-1c7ca86f-c13d-4ea4-9645-27e5926d57c9-6,https://biolit.fr/observations/observation-1c7ca86f-c13d-4ea4-9645-27e5926d57c9-6/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03585-76.jpg,,TRUE, +N1,61136,sortie-1c7ca86f-c13d-4ea4-9645-27e5926d57c9,https://biolit.fr/sorties/sortie-1c7ca86f-c13d-4ea4-9645-27e5926d57c9/,Catherine DUBOIS,,04/11/2016,15.0000000,16.0000000,48.529325000000,-2.656370000000,,"22120 Hillion , Plage Bon Abri. Dans la Baie de Saint Brieuc ",54648,observation-1c7ca86f-c13d-4ea4-9645-27e5926d57c9-7,https://biolit.fr/observations/observation-1c7ca86f-c13d-4ea4-9645-27e5926d57c9-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03543-77.jpg,,FALSE, +N1,61136,sortie-1c7ca86f-c13d-4ea4-9645-27e5926d57c9,https://biolit.fr/sorties/sortie-1c7ca86f-c13d-4ea4-9645-27e5926d57c9/,Catherine DUBOIS,,04/11/2016,15.0000000,16.0000000,48.529325000000,-2.656370000000,,"22120 Hillion , Plage Bon Abri. Dans la Baie de Saint Brieuc ",54650,observation-1c7ca86f-c13d-4ea4-9645-27e5926d57c9-8,https://biolit.fr/observations/observation-1c7ca86f-c13d-4ea4-9645-27e5926d57c9-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03581-78.jpg,,FALSE, +N1,61137,sortie-46c6085e-c2d0-4b1d-855d-584b0a7577bb,https://biolit.fr/sorties/sortie-46c6085e-c2d0-4b1d-855d-584b0a7577bb/,Phil,,3/15/2016 0:00,17.0000000,17.0000000,47.770170000000,-3.606880000000,,Doélan - Finistère,54652,observation-46c6085e-c2d0-4b1d-855d-584b0a7577bb,https://biolit.fr/observations/observation-46c6085e-c2d0-4b1d-855d-584b0a7577bb/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1020376.JPG,,TRUE, +N1,61137,sortie-46c6085e-c2d0-4b1d-855d-584b0a7577bb,https://biolit.fr/sorties/sortie-46c6085e-c2d0-4b1d-855d-584b0a7577bb/,Phil,,3/15/2016 0:00,17.0000000,17.0000000,47.770170000000,-3.606880000000,,Doélan - Finistère,54654,observation-46c6085e-c2d0-4b1d-855d-584b0a7577bb-2,https://biolit.fr/observations/observation-46c6085e-c2d0-4b1d-855d-584b0a7577bb-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1020378.JPG,,TRUE, +N1,61137,sortie-46c6085e-c2d0-4b1d-855d-584b0a7577bb,https://biolit.fr/sorties/sortie-46c6085e-c2d0-4b1d-855d-584b0a7577bb/,Phil,,3/15/2016 0:00,17.0000000,17.0000000,47.770170000000,-3.606880000000,,Doélan - Finistère,54656,observation-46c6085e-c2d0-4b1d-855d-584b0a7577bb-3,https://biolit.fr/observations/observation-46c6085e-c2d0-4b1d-855d-584b0a7577bb-3/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1020396.JPG,,TRUE, +N1,61137,sortie-46c6085e-c2d0-4b1d-855d-584b0a7577bb,https://biolit.fr/sorties/sortie-46c6085e-c2d0-4b1d-855d-584b0a7577bb/,Phil,,3/15/2016 0:00,17.0000000,17.0000000,47.770170000000,-3.606880000000,,Doélan - Finistère,54658,observation-46c6085e-c2d0-4b1d-855d-584b0a7577bb-4,https://biolit.fr/observations/observation-46c6085e-c2d0-4b1d-855d-584b0a7577bb-4/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1020393.JPG,,TRUE, +N1,61137,sortie-46c6085e-c2d0-4b1d-855d-584b0a7577bb,https://biolit.fr/sorties/sortie-46c6085e-c2d0-4b1d-855d-584b0a7577bb/,Phil,,3/15/2016 0:00,17.0000000,17.0000000,47.770170000000,-3.606880000000,,Doélan - Finistère,54660,observation-46c6085e-c2d0-4b1d-855d-584b0a7577bb-5,https://biolit.fr/observations/observation-46c6085e-c2d0-4b1d-855d-584b0a7577bb-5/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1020382.JPG,,TRUE, +N1,61137,sortie-46c6085e-c2d0-4b1d-855d-584b0a7577bb,https://biolit.fr/sorties/sortie-46c6085e-c2d0-4b1d-855d-584b0a7577bb/,Phil,,3/15/2016 0:00,17.0000000,17.0000000,47.770170000000,-3.606880000000,,Doélan - Finistère,54662,observation-46c6085e-c2d0-4b1d-855d-584b0a7577bb-6,https://biolit.fr/observations/observation-46c6085e-c2d0-4b1d-855d-584b0a7577bb-6/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1020386.JPG,,TRUE, +N1,61138,sortie-0500a8d6-e7eb-48c4-995f-a4d1c3c0510b,https://biolit.fr/sorties/sortie-0500a8d6-e7eb-48c4-995f-a4d1c3c0510b/,Phil,,03/12/2016,14.0:15,14.0000000,47.797206000000,-4.182486000000,,Loctudy - Finistère,54664,observation-0500a8d6-e7eb-48c4-995f-a4d1c3c0510b,https://biolit.fr/observations/observation-0500a8d6-e7eb-48c4-995f-a4d1c3c0510b/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/P1020113.JPG,,TRUE, +N1,61138,sortie-0500a8d6-e7eb-48c4-995f-a4d1c3c0510b,https://biolit.fr/sorties/sortie-0500a8d6-e7eb-48c4-995f-a4d1c3c0510b/,Phil,,03/12/2016,14.0:15,14.0000000,47.797206000000,-4.182486000000,,Loctudy - Finistère,54666,observation-0500a8d6-e7eb-48c4-995f-a4d1c3c0510b-2,https://biolit.fr/observations/observation-0500a8d6-e7eb-48c4-995f-a4d1c3c0510b-2/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/P1020118.JPG,,TRUE, +N1,61138,sortie-0500a8d6-e7eb-48c4-995f-a4d1c3c0510b,https://biolit.fr/sorties/sortie-0500a8d6-e7eb-48c4-995f-a4d1c3c0510b/,Phil,,03/12/2016,14.0:15,14.0000000,47.797206000000,-4.182486000000,,Loctudy - Finistère,54668,observation-0500a8d6-e7eb-48c4-995f-a4d1c3c0510b-3,https://biolit.fr/observations/observation-0500a8d6-e7eb-48c4-995f-a4d1c3c0510b-3/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1020110.JPG,,TRUE, +N1,61139,sortie-83975842-328b-443a-b96d-ddde89a0e475,https://biolit.fr/sorties/sortie-83975842-328b-443a-b96d-ddde89a0e475/,Phil,,3/14/2016 0:00,13.0000000,13.0:45,47.788560000000,-4.330141000000,,Penmarc'h - Finistère,54670,observation-83975842-328b-443a-b96d-ddde89a0e475,https://biolit.fr/observations/observation-83975842-328b-443a-b96d-ddde89a0e475/,Coryphoblennius galerita,Blennie coiffée,,https://biolit.fr/wp-content/uploads/2023/07/P1020327_0.JPG,,TRUE, +N1,61139,sortie-83975842-328b-443a-b96d-ddde89a0e475,https://biolit.fr/sorties/sortie-83975842-328b-443a-b96d-ddde89a0e475/,Phil,,3/14/2016 0:00,13.0000000,13.0:45,47.788560000000,-4.330141000000,,Penmarc'h - Finistère,54672,observation-83975842-328b-443a-b96d-ddde89a0e475-2,https://biolit.fr/observations/observation-83975842-328b-443a-b96d-ddde89a0e475-2/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1020331_0.JPG,,TRUE, +N1,61140,sortie-f6fb69e6-ae1d-453e-8ee9-3f353cc2bcdc,https://biolit.fr/sorties/sortie-f6fb69e6-ae1d-453e-8ee9-3f353cc2bcdc/,Phil,,03/12/2016,14.0000000,14.0:15,47.797087000000,-4.180727000000,,Loctudy - Finistère,54674,observation-f6fb69e6-ae1d-453e-8ee9-3f353cc2bcdc,https://biolit.fr/observations/observation-f6fb69e6-ae1d-453e-8ee9-3f353cc2bcdc/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020106.JPG,,FALSE, +N1,61140,sortie-f6fb69e6-ae1d-453e-8ee9-3f353cc2bcdc,https://biolit.fr/sorties/sortie-f6fb69e6-ae1d-453e-8ee9-3f353cc2bcdc/,Phil,,03/12/2016,14.0000000,14.0:15,47.797087000000,-4.180727000000,,Loctudy - Finistère,54676,observation-f6fb69e6-ae1d-453e-8ee9-3f353cc2bcdc-2,https://biolit.fr/observations/observation-f6fb69e6-ae1d-453e-8ee9-3f353cc2bcdc-2/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020105.JPG,,TRUE, +N1,61140,sortie-f6fb69e6-ae1d-453e-8ee9-3f353cc2bcdc,https://biolit.fr/sorties/sortie-f6fb69e6-ae1d-453e-8ee9-3f353cc2bcdc/,Phil,,03/12/2016,14.0000000,14.0:15,47.797087000000,-4.180727000000,,Loctudy - Finistère,54678,observation-f6fb69e6-ae1d-453e-8ee9-3f353cc2bcdc-3,https://biolit.fr/observations/observation-f6fb69e6-ae1d-453e-8ee9-3f353cc2bcdc-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020104.JPG,,FALSE, +N1,61141,sortie-47a591f8-1936-49fc-90ff-8d8b49cbb701,https://biolit.fr/sorties/sortie-47a591f8-1936-49fc-90ff-8d8b49cbb701/,Phil,,03/12/2016,14.000005,14.0000000,47.795966000000,-4.180298000000,,Loctudy - Finistère,54680,observation-47a591f8-1936-49fc-90ff-8d8b49cbb701,https://biolit.fr/observations/observation-47a591f8-1936-49fc-90ff-8d8b49cbb701/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/P1020098.JPG,,TRUE, +N1,61141,sortie-47a591f8-1936-49fc-90ff-8d8b49cbb701,https://biolit.fr/sorties/sortie-47a591f8-1936-49fc-90ff-8d8b49cbb701/,Phil,,03/12/2016,14.000005,14.0000000,47.795966000000,-4.180298000000,,Loctudy - Finistère,54682,observation-47a591f8-1936-49fc-90ff-8d8b49cbb701-2,https://biolit.fr/observations/observation-47a591f8-1936-49fc-90ff-8d8b49cbb701-2/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/P1020095.JPG,,TRUE, +N1,61141,sortie-47a591f8-1936-49fc-90ff-8d8b49cbb701,https://biolit.fr/sorties/sortie-47a591f8-1936-49fc-90ff-8d8b49cbb701/,Phil,,03/12/2016,14.000005,14.0000000,47.795966000000,-4.180298000000,,Loctudy - Finistère,54684,observation-47a591f8-1936-49fc-90ff-8d8b49cbb701-3,https://biolit.fr/observations/observation-47a591f8-1936-49fc-90ff-8d8b49cbb701-3/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020097.JPG,,TRUE, +N1,61141,sortie-47a591f8-1936-49fc-90ff-8d8b49cbb701,https://biolit.fr/sorties/sortie-47a591f8-1936-49fc-90ff-8d8b49cbb701/,Phil,,03/12/2016,14.000005,14.0000000,47.795966000000,-4.180298000000,,Loctudy - Finistère,54686,observation-47a591f8-1936-49fc-90ff-8d8b49cbb701-4,https://biolit.fr/observations/observation-47a591f8-1936-49fc-90ff-8d8b49cbb701-4/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020096.JPG,,TRUE, +N1,61141,sortie-47a591f8-1936-49fc-90ff-8d8b49cbb701,https://biolit.fr/sorties/sortie-47a591f8-1936-49fc-90ff-8d8b49cbb701/,Phil,,03/12/2016,14.000005,14.0000000,47.795966000000,-4.180298000000,,Loctudy - Finistère,54688,observation-47a591f8-1936-49fc-90ff-8d8b49cbb701-5,https://biolit.fr/observations/observation-47a591f8-1936-49fc-90ff-8d8b49cbb701-5/,Mesophyllum lichenoides,Mésophylle lichenoïde,,https://biolit.fr/wp-content/uploads/2023/07/P1020093.JPG,,TRUE, +N1,61141,sortie-47a591f8-1936-49fc-90ff-8d8b49cbb701,https://biolit.fr/sorties/sortie-47a591f8-1936-49fc-90ff-8d8b49cbb701/,Phil,,03/12/2016,14.000005,14.0000000,47.795966000000,-4.180298000000,,Loctudy - Finistère,54690,observation-47a591f8-1936-49fc-90ff-8d8b49cbb701-6,https://biolit.fr/observations/observation-47a591f8-1936-49fc-90ff-8d8b49cbb701-6/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/P1020092.JPG,,TRUE, +N1,61141,sortie-47a591f8-1936-49fc-90ff-8d8b49cbb701,https://biolit.fr/sorties/sortie-47a591f8-1936-49fc-90ff-8d8b49cbb701/,Phil,,03/12/2016,14.000005,14.0000000,47.795966000000,-4.180298000000,,Loctudy - Finistère,54692,observation-47a591f8-1936-49fc-90ff-8d8b49cbb701-7,https://biolit.fr/observations/observation-47a591f8-1936-49fc-90ff-8d8b49cbb701-7/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/P1020091.JPG,,TRUE, +N1,61142,sortie-ff1763d2-1bc1-44c2-910f-429b17b88dc6,https://biolit.fr/sorties/sortie-ff1763d2-1bc1-44c2-910f-429b17b88dc6/,Nils,,04/08/2016,10.0000000,12.0000000,43.239996000000,5.362430000000,,plage du bain des dames,54694,observation-ff1763d2-1bc1-44c2-910f-429b17b88dc6,https://biolit.fr/observations/observation-ff1763d2-1bc1-44c2-910f-429b17b88dc6/,Hippocampus hippocampus,Hippocampe à museau court,,https://biolit.fr/wp-content/uploads/2023/07/20160408_104146-rotated.jpg,,TRUE, +N1,61142,sortie-ff1763d2-1bc1-44c2-910f-429b17b88dc6,https://biolit.fr/sorties/sortie-ff1763d2-1bc1-44c2-910f-429b17b88dc6/,Nils,,04/08/2016,10.0000000,12.0000000,43.239996000000,5.362430000000,,plage du bain des dames,54696,observation-ff1763d2-1bc1-44c2-910f-429b17b88dc6-2,https://biolit.fr/observations/observation-ff1763d2-1bc1-44c2-910f-429b17b88dc6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160408_103719.jpg,,FALSE, +N1,61142,sortie-ff1763d2-1bc1-44c2-910f-429b17b88dc6,https://biolit.fr/sorties/sortie-ff1763d2-1bc1-44c2-910f-429b17b88dc6/,Nils,,04/08/2016,10.0000000,12.0000000,43.239996000000,5.362430000000,,plage du bain des dames,54698,observation-ff1763d2-1bc1-44c2-910f-429b17b88dc6-3,https://biolit.fr/observations/observation-ff1763d2-1bc1-44c2-910f-429b17b88dc6-3/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/20160408_105712.jpg,,TRUE, +N1,61143,sortie-2763bc4e-bce5-4c60-954a-1bfbf950629e,https://biolit.fr/sorties/sortie-2763bc4e-bce5-4c60-954a-1bfbf950629e/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.240155000000,5.362438000000,,plage du bain des dames,54700,observation-2763bc4e-bce5-4c60-954a-1bfbf950629e,https://biolit.fr/observations/observation-2763bc4e-bce5-4c60-954a-1bfbf950629e/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/P1880757.JPG,,TRUE, +N1,61143,sortie-2763bc4e-bce5-4c60-954a-1bfbf950629e,https://biolit.fr/sorties/sortie-2763bc4e-bce5-4c60-954a-1bfbf950629e/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.240155000000,5.362438000000,,plage du bain des dames,54702,observation-2763bc4e-bce5-4c60-954a-1bfbf950629e-2,https://biolit.fr/observations/observation-2763bc4e-bce5-4c60-954a-1bfbf950629e-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/P1880772.JPG,,TRUE, +N1,61143,sortie-2763bc4e-bce5-4c60-954a-1bfbf950629e,https://biolit.fr/sorties/sortie-2763bc4e-bce5-4c60-954a-1bfbf950629e/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.240155000000,5.362438000000,,plage du bain des dames,54704,observation-2763bc4e-bce5-4c60-954a-1bfbf950629e-3,https://biolit.fr/observations/observation-2763bc4e-bce5-4c60-954a-1bfbf950629e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1880814.JPG,,FALSE, +N1,61144,sortie-544b874f-47f1-4d29-89f0-546628587755,https://biolit.fr/sorties/sortie-544b874f-47f1-4d29-89f0-546628587755/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.239962000000,5.362491000000,,plage du bain des dames,54706,observation-544b874f-47f1-4d29-89f0-546628587755,https://biolit.fr/observations/observation-544b874f-47f1-4d29-89f0-546628587755/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/P1880749.JPG,,TRUE, +N1,61144,sortie-544b874f-47f1-4d29-89f0-546628587755,https://biolit.fr/sorties/sortie-544b874f-47f1-4d29-89f0-546628587755/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.239962000000,5.362491000000,,plage du bain des dames,54708,observation-544b874f-47f1-4d29-89f0-546628587755-2,https://biolit.fr/observations/observation-544b874f-47f1-4d29-89f0-546628587755-2/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/P1880747_0.JPG,,TRUE, +N1,61144,sortie-544b874f-47f1-4d29-89f0-546628587755,https://biolit.fr/sorties/sortie-544b874f-47f1-4d29-89f0-546628587755/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.239962000000,5.362491000000,,plage du bain des dames,54710,observation-544b874f-47f1-4d29-89f0-546628587755-3,https://biolit.fr/observations/observation-544b874f-47f1-4d29-89f0-546628587755-3/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/P1880743_0.JPG,,TRUE, +N1,61144,sortie-544b874f-47f1-4d29-89f0-546628587755,https://biolit.fr/sorties/sortie-544b874f-47f1-4d29-89f0-546628587755/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.239962000000,5.362491000000,,plage du bain des dames,54712,observation-544b874f-47f1-4d29-89f0-546628587755-4,https://biolit.fr/observations/observation-544b874f-47f1-4d29-89f0-546628587755-4/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/P1880744_0.JPG,,TRUE, +N1,61145,sortie-fe231aee-cdf6-46dc-9ee1-a7f8b1b1ee25,https://biolit.fr/sorties/sortie-fe231aee-cdf6-46dc-9ee1-a7f8b1b1ee25/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.239962000000,5.362491000000,,plage du bain des dames,54714,observation-fe231aee-cdf6-46dc-9ee1-a7f8b1b1ee25,https://biolit.fr/observations/observation-fe231aee-cdf6-46dc-9ee1-a7f8b1b1ee25/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/P1880739_0.JPG,,TRUE, +N1,61145,sortie-fe231aee-cdf6-46dc-9ee1-a7f8b1b1ee25,https://biolit.fr/sorties/sortie-fe231aee-cdf6-46dc-9ee1-a7f8b1b1ee25/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.239962000000,5.362491000000,,plage du bain des dames,54716,observation-fe231aee-cdf6-46dc-9ee1-a7f8b1b1ee25-2,https://biolit.fr/observations/observation-fe231aee-cdf6-46dc-9ee1-a7f8b1b1ee25-2/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/P1880740_0.JPG,,TRUE, +N1,61145,sortie-fe231aee-cdf6-46dc-9ee1-a7f8b1b1ee25,https://biolit.fr/sorties/sortie-fe231aee-cdf6-46dc-9ee1-a7f8b1b1ee25/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.239962000000,5.362491000000,,plage du bain des dames,54718,observation-fe231aee-cdf6-46dc-9ee1-a7f8b1b1ee25-3,https://biolit.fr/observations/observation-fe231aee-cdf6-46dc-9ee1-a7f8b1b1ee25-3/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/P1880741_0.JPG,,TRUE, +N1,61145,sortie-fe231aee-cdf6-46dc-9ee1-a7f8b1b1ee25,https://biolit.fr/sorties/sortie-fe231aee-cdf6-46dc-9ee1-a7f8b1b1ee25/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.239962000000,5.362491000000,,plage du bain des dames,54720,observation-fe231aee-cdf6-46dc-9ee1-a7f8b1b1ee25-4,https://biolit.fr/observations/observation-fe231aee-cdf6-46dc-9ee1-a7f8b1b1ee25-4/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/P1880742_0.JPG,,TRUE, +N1,61146,sortie-091d7e5b-ee7a-4291-b75a-76322fc1fc95,https://biolit.fr/sorties/sortie-091d7e5b-ee7a-4291-b75a-76322fc1fc95/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.239899000000,5.362427000000,,plage du bain des dames,54722,observation-091d7e5b-ee7a-4291-b75a-76322fc1fc95,https://biolit.fr/observations/observation-091d7e5b-ee7a-4291-b75a-76322fc1fc95/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1880735_0.JPG,,FALSE, +N1,61146,sortie-091d7e5b-ee7a-4291-b75a-76322fc1fc95,https://biolit.fr/sorties/sortie-091d7e5b-ee7a-4291-b75a-76322fc1fc95/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.239899000000,5.362427000000,,plage du bain des dames,54724,observation-091d7e5b-ee7a-4291-b75a-76322fc1fc95-2,https://biolit.fr/observations/observation-091d7e5b-ee7a-4291-b75a-76322fc1fc95-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1880736_0.JPG,,FALSE, +N1,61146,sortie-091d7e5b-ee7a-4291-b75a-76322fc1fc95,https://biolit.fr/sorties/sortie-091d7e5b-ee7a-4291-b75a-76322fc1fc95/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.239899000000,5.362427000000,,plage du bain des dames,54726,observation-091d7e5b-ee7a-4291-b75a-76322fc1fc95-3,https://biolit.fr/observations/observation-091d7e5b-ee7a-4291-b75a-76322fc1fc95-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1880737_0.JPG,,FALSE, +N1,61146,sortie-091d7e5b-ee7a-4291-b75a-76322fc1fc95,https://biolit.fr/sorties/sortie-091d7e5b-ee7a-4291-b75a-76322fc1fc95/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.239899000000,5.362427000000,,plage du bain des dames,54728,observation-091d7e5b-ee7a-4291-b75a-76322fc1fc95-4,https://biolit.fr/observations/observation-091d7e5b-ee7a-4291-b75a-76322fc1fc95-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1880738_0.JPG,,FALSE, +N1,61147,sortie-978edcc1-e2cc-47b7-adb1-fa5c26255833,https://biolit.fr/sorties/sortie-978edcc1-e2cc-47b7-adb1-fa5c26255833/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.239979000000,5.362545000000,,plage du bain des dames,54730,observation-978edcc1-e2cc-47b7-adb1-fa5c26255833,https://biolit.fr/observations/observation-978edcc1-e2cc-47b7-adb1-fa5c26255833/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/P1880732_3.JPG,,TRUE, +N1,61147,sortie-978edcc1-e2cc-47b7-adb1-fa5c26255833,https://biolit.fr/sorties/sortie-978edcc1-e2cc-47b7-adb1-fa5c26255833/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.239979000000,5.362545000000,,plage du bain des dames,54732,observation-978edcc1-e2cc-47b7-adb1-fa5c26255833-2,https://biolit.fr/observations/observation-978edcc1-e2cc-47b7-adb1-fa5c26255833-2/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/P1880733_6.JPG,,TRUE, +N1,61148,sortie-33be9479-e815-4502-b611-cf7bb90abdb5,https://biolit.fr/sorties/sortie-33be9479-e815-4502-b611-cf7bb90abdb5/,Phil,,3/14/2016 0:00,16.0:25,16.0000000,47.793613000000,-4.339299000000,,Penmarc'h - Finistère,54734,observation-33be9479-e815-4502-b611-cf7bb90abdb5,https://biolit.fr/observations/observation-33be9479-e815-4502-b611-cf7bb90abdb5/,Spisula solida,Mactre épaisse,,https://biolit.fr/wp-content/uploads/2023/07/P1020299.JPG,,TRUE, +N1,61148,sortie-33be9479-e815-4502-b611-cf7bb90abdb5,https://biolit.fr/sorties/sortie-33be9479-e815-4502-b611-cf7bb90abdb5/,Phil,,3/14/2016 0:00,16.0:25,16.0000000,47.793613000000,-4.339299000000,,Penmarc'h - Finistère,54738,observation-33be9479-e815-4502-b611-cf7bb90abdb5-3,https://biolit.fr/observations/observation-33be9479-e815-4502-b611-cf7bb90abdb5-3/,Spisula solida,Mactre épaisse,,https://biolit.fr/wp-content/uploads/2023/07/P1020300.JPG,,TRUE, +N1,61148,sortie-33be9479-e815-4502-b611-cf7bb90abdb5,https://biolit.fr/sorties/sortie-33be9479-e815-4502-b611-cf7bb90abdb5/,Phil,,3/14/2016 0:00,16.0:25,16.0000000,47.793613000000,-4.339299000000,,Penmarc'h - Finistère,54740,observation-33be9479-e815-4502-b611-cf7bb90abdb5-4,https://biolit.fr/observations/observation-33be9479-e815-4502-b611-cf7bb90abdb5-4/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020313.JPG,,TRUE, +N1,61148,sortie-33be9479-e815-4502-b611-cf7bb90abdb5,https://biolit.fr/sorties/sortie-33be9479-e815-4502-b611-cf7bb90abdb5/,Phil,,3/14/2016 0:00,16.0:25,16.0000000,47.793613000000,-4.339299000000,,Penmarc'h - Finistère,54742,observation-33be9479-e815-4502-b611-cf7bb90abdb5-5,https://biolit.fr/observations/observation-33be9479-e815-4502-b611-cf7bb90abdb5-5/,Spisula solida,Mactre épaisse,,https://biolit.fr/wp-content/uploads/2023/07/P1020316.JPG,,TRUE, +N1,61148,sortie-33be9479-e815-4502-b611-cf7bb90abdb5,https://biolit.fr/sorties/sortie-33be9479-e815-4502-b611-cf7bb90abdb5/,Phil,,3/14/2016 0:00,16.0:25,16.0000000,47.793613000000,-4.339299000000,,Penmarc'h - Finistère,54746,observation-33be9479-e815-4502-b611-cf7bb90abdb5-7,https://biolit.fr/observations/observation-33be9479-e815-4502-b611-cf7bb90abdb5-7/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020325.JPG,,TRUE, +N1,61148,sortie-33be9479-e815-4502-b611-cf7bb90abdb5,https://biolit.fr/sorties/sortie-33be9479-e815-4502-b611-cf7bb90abdb5/,Phil,,3/14/2016 0:00,16.0:25,16.0000000,47.793613000000,-4.339299000000,,Penmarc'h - Finistère,54748,observation-33be9479-e815-4502-b611-cf7bb90abdb5-8,https://biolit.fr/observations/observation-33be9479-e815-4502-b611-cf7bb90abdb5-8/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020326.JPG,,TRUE, +N1,61149,sortie-9dc6e281-7b71-4bfd-b472-99c7e62f7c9d,https://biolit.fr/sorties/sortie-9dc6e281-7b71-4bfd-b472-99c7e62f7c9d/,Phil,,04/04/2016,14.0000000,14.0:15,47.799041000000,-4.375056000000,,Penmarc'h - Finistère,54750,observation-9dc6e281-7b71-4bfd-b472-99c7e62f7c9d,https://biolit.fr/observations/observation-9dc6e281-7b71-4bfd-b472-99c7e62f7c9d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020507.JPG,,FALSE, +N1,61149,sortie-9dc6e281-7b71-4bfd-b472-99c7e62f7c9d,https://biolit.fr/sorties/sortie-9dc6e281-7b71-4bfd-b472-99c7e62f7c9d/,Phil,,04/04/2016,14.0000000,14.0:15,47.799041000000,-4.375056000000,,Penmarc'h - Finistère,54752,observation-9dc6e281-7b71-4bfd-b472-99c7e62f7c9d-2,https://biolit.fr/observations/observation-9dc6e281-7b71-4bfd-b472-99c7e62f7c9d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020509.JPG,,FALSE, +N1,61150,sortie-ccf4c5de-8233-4fb4-8d76-f38546ff695d,https://biolit.fr/sorties/sortie-ccf4c5de-8233-4fb4-8d76-f38546ff695d/,Phil,,04/04/2016,13.0000000,13.0000000,47.800078000000,-4.375356000000,,Penmarc'h - Finistère,54754,observation-ccf4c5de-8233-4fb4-8d76-f38546ff695d,https://biolit.fr/observations/observation-ccf4c5de-8233-4fb4-8d76-f38546ff695d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020451.JPG,,FALSE, +N1,61150,sortie-ccf4c5de-8233-4fb4-8d76-f38546ff695d,https://biolit.fr/sorties/sortie-ccf4c5de-8233-4fb4-8d76-f38546ff695d/,Phil,,04/04/2016,13.0000000,13.0000000,47.800078000000,-4.375356000000,,Penmarc'h - Finistère,54756,observation-ccf4c5de-8233-4fb4-8d76-f38546ff695d-2,https://biolit.fr/observations/observation-ccf4c5de-8233-4fb4-8d76-f38546ff695d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020448.JPG,,FALSE, +N1,61151,sortie-728dc2f5-5266-4fc0-80ae-36380eedbf8c,https://biolit.fr/sorties/sortie-728dc2f5-5266-4fc0-80ae-36380eedbf8c/,Ecole de la mer,,3/29/2016 0:00,9.0000000,10.0:15,16.21499500000,-61.53629700000,,Ilet cochon,54758,observation-728dc2f5-5266-4fc0-80ae-36380eedbf8c,https://biolit.fr/observations/observation-728dc2f5-5266-4fc0-80ae-36380eedbf8c/,,,,https://biolit.fr/wp-content/uploads/2023/07/GOPR3027-001.JPG,,FALSE, +N1,61152,sortie-6cdc6eed-a624-412d-a289-69064f234319,https://biolit.fr/sorties/sortie-6cdc6eed-a624-412d-a289-69064f234319/,Ecole de la mer,,3/29/2016 0:00,9.0000000,10.0:15,16.214004000000,-61.535412000000,,Ilet cochon,54760,observation-6cdc6eed-a624-412d-a289-69064f234319,https://biolit.fr/observations/observation-6cdc6eed-a624-412d-a289-69064f234319/,Echidna catenata,Murène gueule pavée,,https://biolit.fr/wp-content/uploads/2023/07/GOPR3100.JPG,,TRUE, +N1,61153,sortie-29c6c306-e68e-4be3-8729-2d91673feaba,https://biolit.fr/sorties/sortie-29c6c306-e68e-4be3-8729-2d91673feaba/,Centre de Découverte Mer et Montagne,,3/23/2016 0:00,14.0:15,15.0:45,43.692058000000,7.290502000000,,"Plage des bains militaires, Nice",54762,observation-29c6c306-e68e-4be3-8729-2d91673feaba,https://biolit.fr/observations/observation-29c6c306-e68e-4be3-8729-2d91673feaba/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/2016-03-23 Sortie Biolit CDMM Test d'ousin-scaled.jpg,,TRUE, +N1,61153,sortie-29c6c306-e68e-4be3-8729-2d91673feaba,https://biolit.fr/sorties/sortie-29c6c306-e68e-4be3-8729-2d91673feaba/,Centre de Découverte Mer et Montagne,,3/23/2016 0:00,14.0:15,15.0:45,43.692058000000,7.290502000000,,"Plage des bains militaires, Nice",54764,observation-29c6c306-e68e-4be3-8729-2d91673feaba-2,https://biolit.fr/observations/observation-29c6c306-e68e-4be3-8729-2d91673feaba-2/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/2016-03-23 Sortie Biolit CDMM (3)-scaled.jpg,,TRUE, +N1,61153,sortie-29c6c306-e68e-4be3-8729-2d91673feaba,https://biolit.fr/sorties/sortie-29c6c306-e68e-4be3-8729-2d91673feaba/,Centre de Découverte Mer et Montagne,,3/23/2016 0:00,14.0:15,15.0:45,43.692058000000,7.290502000000,,"Plage des bains militaires, Nice",54766,observation-29c6c306-e68e-4be3-8729-2d91673feaba-3,https://biolit.fr/observations/observation-29c6c306-e68e-4be3-8729-2d91673feaba-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/2016-03-23 Sortie Biolit CDMM (6)-scaled.jpg,,FALSE, +N1,61153,sortie-29c6c306-e68e-4be3-8729-2d91673feaba,https://biolit.fr/sorties/sortie-29c6c306-e68e-4be3-8729-2d91673feaba/,Centre de Découverte Mer et Montagne,,3/23/2016 0:00,14.0:15,15.0:45,43.692058000000,7.290502000000,,"Plage des bains militaires, Nice",54768,observation-29c6c306-e68e-4be3-8729-2d91673feaba-4,https://biolit.fr/observations/observation-29c6c306-e68e-4be3-8729-2d91673feaba-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/2016-03-23 Sortie Biolit CDMM (5)-scaled.jpg,,FALSE, +N1,61153,sortie-29c6c306-e68e-4be3-8729-2d91673feaba,https://biolit.fr/sorties/sortie-29c6c306-e68e-4be3-8729-2d91673feaba/,Centre de Découverte Mer et Montagne,,3/23/2016 0:00,14.0:15,15.0:45,43.692058000000,7.290502000000,,"Plage des bains militaires, Nice",54770,observation-29c6c306-e68e-4be3-8729-2d91673feaba-5,https://biolit.fr/observations/observation-29c6c306-e68e-4be3-8729-2d91673feaba-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/2016-03-23 Sortie Biolit CDMM (15)-scaled.jpg,,FALSE, +N1,61153,sortie-29c6c306-e68e-4be3-8729-2d91673feaba,https://biolit.fr/sorties/sortie-29c6c306-e68e-4be3-8729-2d91673feaba/,Centre de Découverte Mer et Montagne,,3/23/2016 0:00,14.0:15,15.0:45,43.692058000000,7.290502000000,,"Plage des bains militaires, Nice",54772,observation-29c6c306-e68e-4be3-8729-2d91673feaba-6,https://biolit.fr/observations/observation-29c6c306-e68e-4be3-8729-2d91673feaba-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/2016-03-23 Sortie Biolit CDMM (17)-scaled.jpg,,FALSE, +N1,61153,sortie-29c6c306-e68e-4be3-8729-2d91673feaba,https://biolit.fr/sorties/sortie-29c6c306-e68e-4be3-8729-2d91673feaba/,Centre de Découverte Mer et Montagne,,3/23/2016 0:00,14.0:15,15.0:45,43.692058000000,7.290502000000,,"Plage des bains militaires, Nice",54774,observation-29c6c306-e68e-4be3-8729-2d91673feaba-7,https://biolit.fr/observations/observation-29c6c306-e68e-4be3-8729-2d91673feaba-7/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/2016-03-23 Sortie Biolit CDMM (20)-scaled.jpg,,TRUE, +N1,61153,sortie-29c6c306-e68e-4be3-8729-2d91673feaba,https://biolit.fr/sorties/sortie-29c6c306-e68e-4be3-8729-2d91673feaba/,Centre de Découverte Mer et Montagne,,3/23/2016 0:00,14.0:15,15.0:45,43.692058000000,7.290502000000,,"Plage des bains militaires, Nice",54776,observation-29c6c306-e68e-4be3-8729-2d91673feaba-8,https://biolit.fr/observations/observation-29c6c306-e68e-4be3-8729-2d91673feaba-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/2016-03-23 Sortie Biolit CDMM (21)-scaled.jpg,,FALSE, +N1,61153,sortie-29c6c306-e68e-4be3-8729-2d91673feaba,https://biolit.fr/sorties/sortie-29c6c306-e68e-4be3-8729-2d91673feaba/,Centre de Découverte Mer et Montagne,,3/23/2016 0:00,14.0:15,15.0:45,43.692058000000,7.290502000000,,"Plage des bains militaires, Nice",54778,observation-29c6c306-e68e-4be3-8729-2d91673feaba-9,https://biolit.fr/observations/observation-29c6c306-e68e-4be3-8729-2d91673feaba-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/2016-03-23 Sortie Biolit CDMM (23)-scaled.jpg,,FALSE, +N1,61153,sortie-29c6c306-e68e-4be3-8729-2d91673feaba,https://biolit.fr/sorties/sortie-29c6c306-e68e-4be3-8729-2d91673feaba/,Centre de Découverte Mer et Montagne,,3/23/2016 0:00,14.0:15,15.0:45,43.692058000000,7.290502000000,,"Plage des bains militaires, Nice",54780,observation-29c6c306-e68e-4be3-8729-2d91673feaba-10,https://biolit.fr/observations/observation-29c6c306-e68e-4be3-8729-2d91673feaba-10/,Halimeda tuna,Monnaie de Poséidon,,https://biolit.fr/wp-content/uploads/2023/07/2016-03-23 Sortie Biolit CDMM Halimeda tuna-scaled.jpg,,TRUE, +N1,61153,sortie-29c6c306-e68e-4be3-8729-2d91673feaba,https://biolit.fr/sorties/sortie-29c6c306-e68e-4be3-8729-2d91673feaba/,Centre de Découverte Mer et Montagne,,3/23/2016 0:00,14.0:15,15.0:45,43.692058000000,7.290502000000,,"Plage des bains militaires, Nice",54782,observation-29c6c306-e68e-4be3-8729-2d91673feaba-11,https://biolit.fr/observations/observation-29c6c306-e68e-4be3-8729-2d91673feaba-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/2016-03-23 Sortie Biolit CDMM Patelles-scaled.jpg,,FALSE, +N1,61154,sortie-d6a32d22-dae9-466f-8fb4-560f6fc2c0a5,https://biolit.fr/sorties/sortie-d6a32d22-dae9-466f-8fb4-560f6fc2c0a5/,Phil,,03/12/2016,14.0000000,14.000005,47.795525000000,-4.183988000000,,Loctudy - Finistère,54784,observation-d6a32d22-dae9-466f-8fb4-560f6fc2c0a5,https://biolit.fr/observations/observation-d6a32d22-dae9-466f-8fb4-560f6fc2c0a5/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1020073-scaled.jpg,,TRUE, +N1,61154,sortie-d6a32d22-dae9-466f-8fb4-560f6fc2c0a5,https://biolit.fr/sorties/sortie-d6a32d22-dae9-466f-8fb4-560f6fc2c0a5/,Phil,,03/12/2016,14.0000000,14.000005,47.795525000000,-4.183988000000,,Loctudy - Finistère,54786,observation-d6a32d22-dae9-466f-8fb4-560f6fc2c0a5-2,https://biolit.fr/observations/observation-d6a32d22-dae9-466f-8fb4-560f6fc2c0a5-2/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/P1020083.JPG,,TRUE, +N1,61154,sortie-d6a32d22-dae9-466f-8fb4-560f6fc2c0a5,https://biolit.fr/sorties/sortie-d6a32d22-dae9-466f-8fb4-560f6fc2c0a5/,Phil,,03/12/2016,14.0000000,14.000005,47.795525000000,-4.183988000000,,Loctudy - Finistère,54788,observation-d6a32d22-dae9-466f-8fb4-560f6fc2c0a5-3,https://biolit.fr/observations/observation-d6a32d22-dae9-466f-8fb4-560f6fc2c0a5-3/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/P1020081.JPG,,TRUE, +N1,61154,sortie-d6a32d22-dae9-466f-8fb4-560f6fc2c0a5,https://biolit.fr/sorties/sortie-d6a32d22-dae9-466f-8fb4-560f6fc2c0a5/,Phil,,03/12/2016,14.0000000,14.000005,47.795525000000,-4.183988000000,,Loctudy - Finistère,54790,observation-d6a32d22-dae9-466f-8fb4-560f6fc2c0a5-4,https://biolit.fr/observations/observation-d6a32d22-dae9-466f-8fb4-560f6fc2c0a5-4/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/P1020085.JPG,,TRUE, +N1,61155,sortie-4308b4a3-aac4-4763-9f84-55c82392f8f4,https://biolit.fr/sorties/sortie-4308b4a3-aac4-4763-9f84-55c82392f8f4/,Phil,,03/12/2016,13.0000000,13.0:55,47.796349000000,-4.184962000000,,Loctudy - Finistère,54792,observation-4308b4a3-aac4-4763-9f84-55c82392f8f4,https://biolit.fr/observations/observation-4308b4a3-aac4-4763-9f84-55c82392f8f4/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/P1020034_1.JPG,,TRUE, +N1,61155,sortie-4308b4a3-aac4-4763-9f84-55c82392f8f4,https://biolit.fr/sorties/sortie-4308b4a3-aac4-4763-9f84-55c82392f8f4/,Phil,,03/12/2016,13.0000000,13.0:55,47.796349000000,-4.184962000000,,Loctudy - Finistère,54794,observation-4308b4a3-aac4-4763-9f84-55c82392f8f4-2,https://biolit.fr/observations/observation-4308b4a3-aac4-4763-9f84-55c82392f8f4-2/,Mesophyllum lichenoides,Mésophylle lichenoïde,,https://biolit.fr/wp-content/uploads/2023/07/P1020037.JPG,,TRUE, +N1,61155,sortie-4308b4a3-aac4-4763-9f84-55c82392f8f4,https://biolit.fr/sorties/sortie-4308b4a3-aac4-4763-9f84-55c82392f8f4/,Phil,,03/12/2016,13.0000000,13.0:55,47.796349000000,-4.184962000000,,Loctudy - Finistère,54796,observation-4308b4a3-aac4-4763-9f84-55c82392f8f4-3,https://biolit.fr/observations/observation-4308b4a3-aac4-4763-9f84-55c82392f8f4-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020039.JPG,,FALSE, +N1,61155,sortie-4308b4a3-aac4-4763-9f84-55c82392f8f4,https://biolit.fr/sorties/sortie-4308b4a3-aac4-4763-9f84-55c82392f8f4/,Phil,,03/12/2016,13.0000000,13.0:55,47.796349000000,-4.184962000000,,Loctudy - Finistère,54798,observation-4308b4a3-aac4-4763-9f84-55c82392f8f4-4,https://biolit.fr/observations/observation-4308b4a3-aac4-4763-9f84-55c82392f8f4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020041.JPG,,FALSE, +N1,61155,sortie-4308b4a3-aac4-4763-9f84-55c82392f8f4,https://biolit.fr/sorties/sortie-4308b4a3-aac4-4763-9f84-55c82392f8f4/,Phil,,03/12/2016,13.0000000,13.0:55,47.796349000000,-4.184962000000,,Loctudy - Finistère,54800,observation-4308b4a3-aac4-4763-9f84-55c82392f8f4-5,https://biolit.fr/observations/observation-4308b4a3-aac4-4763-9f84-55c82392f8f4-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020043.JPG,,FALSE, +N1,61156,sortie-7b382955-ab37-4445-8fcf-92bd5304c445,https://biolit.fr/sorties/sortie-7b382955-ab37-4445-8fcf-92bd5304c445/,Phil,,3/15/2016 0:00,17.0000000,17.0:55,47.770268000000,-3.607141000000,,Doélan - Finistère,54802,observation-7b382955-ab37-4445-8fcf-92bd5304c445,https://biolit.fr/observations/observation-7b382955-ab37-4445-8fcf-92bd5304c445/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020416.JPG,,FALSE, +N1,61156,sortie-7b382955-ab37-4445-8fcf-92bd5304c445,https://biolit.fr/sorties/sortie-7b382955-ab37-4445-8fcf-92bd5304c445/,Phil,,3/15/2016 0:00,17.0000000,17.0:55,47.770268000000,-3.607141000000,,Doélan - Finistère,54804,observation-7b382955-ab37-4445-8fcf-92bd5304c445-2,https://biolit.fr/observations/observation-7b382955-ab37-4445-8fcf-92bd5304c445-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020418.JPG,,FALSE, +N1,61157,sortie-1d95fe76-ecbe-4a7d-bef2-01862e94474c,https://biolit.fr/sorties/sortie-1d95fe76-ecbe-4a7d-bef2-01862e94474c/,Marine,,03/08/2016,13.0000000,15.0000000,43.419971000000,5.173728000000,,Lido du Jai,54806,observation-1d95fe76-ecbe-4a7d-bef2-01862e94474c,https://biolit.fr/observations/observation-1d95fe76-ecbe-4a7d-bef2-01862e94474c/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1222.JPG,,FALSE, +N1,61157,sortie-1d95fe76-ecbe-4a7d-bef2-01862e94474c,https://biolit.fr/sorties/sortie-1d95fe76-ecbe-4a7d-bef2-01862e94474c/,Marine,,03/08/2016,13.0000000,15.0000000,43.419971000000,5.173728000000,,Lido du Jai,54808,observation-1d95fe76-ecbe-4a7d-bef2-01862e94474c-2,https://biolit.fr/observations/observation-1d95fe76-ecbe-4a7d-bef2-01862e94474c-2/,Cyprinus carpio,Carpe commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1223-rotated.jpg,,TRUE, +N1,61158,sortie-0699fc15-e003-45ea-b308-20e12baed7fc,https://biolit.fr/sorties/sortie-0699fc15-e003-45ea-b308-20e12baed7fc/,Marine,,3/23/2016 0:00,14.0000000,15.0000000,43.239805000000,5.362376000000,,Bain des Dames,54810,observation-0699fc15-e003-45ea-b308-20e12baed7fc,https://biolit.fr/observations/observation-0699fc15-e003-45ea-b308-20e12baed7fc/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1247-scaled.jpg,,FALSE, +N1,61158,sortie-0699fc15-e003-45ea-b308-20e12baed7fc,https://biolit.fr/sorties/sortie-0699fc15-e003-45ea-b308-20e12baed7fc/,Marine,,3/23/2016 0:00,14.0000000,15.0000000,43.239805000000,5.362376000000,,Bain des Dames,54812,observation-0699fc15-e003-45ea-b308-20e12baed7fc-2,https://biolit.fr/observations/observation-0699fc15-e003-45ea-b308-20e12baed7fc-2/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1251-scaled.jpg,,TRUE, +N1,61158,sortie-0699fc15-e003-45ea-b308-20e12baed7fc,https://biolit.fr/sorties/sortie-0699fc15-e003-45ea-b308-20e12baed7fc/,Marine,,3/23/2016 0:00,14.0000000,15.0000000,43.239805000000,5.362376000000,,Bain des Dames,54814,observation-0699fc15-e003-45ea-b308-20e12baed7fc-3,https://biolit.fr/observations/observation-0699fc15-e003-45ea-b308-20e12baed7fc-3/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1252-scaled.jpg,,TRUE, +N1,61158,sortie-0699fc15-e003-45ea-b308-20e12baed7fc,https://biolit.fr/sorties/sortie-0699fc15-e003-45ea-b308-20e12baed7fc/,Marine,,3/23/2016 0:00,14.0000000,15.0000000,43.239805000000,5.362376000000,,Bain des Dames,54816,observation-0699fc15-e003-45ea-b308-20e12baed7fc-4,https://biolit.fr/observations/observation-0699fc15-e003-45ea-b308-20e12baed7fc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1253-scaled.jpg,,FALSE, +N1,61159,sortie-599e7b95-4859-4479-b09d-2bebbca613c8,https://biolit.fr/sorties/sortie-599e7b95-4859-4479-b09d-2bebbca613c8/,Earthforce FS,,3/18/2016 0:00,17.0:45,18.0000000,16.218774000000,-61.17991700000,, Saint François Guadeloupe,54818,observation-599e7b95-4859-4479-b09d-2bebbca613c8,https://biolit.fr/observations/observation-599e7b95-4859-4479-b09d-2bebbca613c8/,,,,https://biolit.fr/wp-content/uploads/2023/07/1003589_981505941884977_3979467826171835284_n.jpg,,FALSE, +N1,61159,sortie-599e7b95-4859-4479-b09d-2bebbca613c8,https://biolit.fr/sorties/sortie-599e7b95-4859-4479-b09d-2bebbca613c8/,Earthforce FS,,3/18/2016 0:00,17.0:45,18.0000000,16.218774000000,-61.17991700000,, Saint François Guadeloupe,54820,observation-599e7b95-4859-4479-b09d-2bebbca613c8-2,https://biolit.fr/observations/observation-599e7b95-4859-4479-b09d-2bebbca613c8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/995383_981506148551623_8677538949889160454_n.jpg,,FALSE, +N1,61160,sortie-127ce248-03e9-46dc-a656-7e2b05f34e30,https://biolit.fr/sorties/sortie-127ce248-03e9-46dc-a656-7e2b05f34e30/,Phil,,3/15/2016 0:00,17.0:45,17.0:55,47.770195000000,-3.60693100000,,Doélan - Finistère,54822,observation-127ce248-03e9-46dc-a656-7e2b05f34e30,https://biolit.fr/observations/observation-127ce248-03e9-46dc-a656-7e2b05f34e30/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1020405.JPG,,TRUE, +N1,61160,sortie-127ce248-03e9-46dc-a656-7e2b05f34e30,https://biolit.fr/sorties/sortie-127ce248-03e9-46dc-a656-7e2b05f34e30/,Phil,,3/15/2016 0:00,17.0:45,17.0:55,47.770195000000,-3.60693100000,,Doélan - Finistère,54824,observation-127ce248-03e9-46dc-a656-7e2b05f34e30-2,https://biolit.fr/observations/observation-127ce248-03e9-46dc-a656-7e2b05f34e30-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1020412.JPG,,TRUE, +N1,61161,sortie-6b73ead6-a49f-4855-aebb-c9230f00f944,https://biolit.fr/sorties/sortie-6b73ead6-a49f-4855-aebb-c9230f00f944/,Phil,,03/06/2016,12.0:25,12.0000000,48.147348000000,-4.272214000000,,Ploeven - Finistère,54826,observation-6b73ead6-a49f-4855-aebb-c9230f00f944,https://biolit.fr/observations/observation-6b73ead6-a49f-4855-aebb-c9230f00f944/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010849.JPG,,FALSE, +N1,61161,sortie-6b73ead6-a49f-4855-aebb-c9230f00f944,https://biolit.fr/sorties/sortie-6b73ead6-a49f-4855-aebb-c9230f00f944/,Phil,,03/06/2016,12.0:25,12.0000000,48.147348000000,-4.272214000000,,Ploeven - Finistère,54828,observation-6b73ead6-a49f-4855-aebb-c9230f00f944-2,https://biolit.fr/observations/observation-6b73ead6-a49f-4855-aebb-c9230f00f944-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010848.JPG,,FALSE, +N1,61162,sortie-e61e4c65-9396-47aa-8415-abc4c6af91c5,https://biolit.fr/sorties/sortie-e61e4c65-9396-47aa-8415-abc4c6af91c5/,Phil,,03/12/2016,13.0000000,13.0:45,47.797215000000,-4.176766000000,,Loctudy - Finistère,54830,observation-e61e4c65-9396-47aa-8415-abc4c6af91c5,https://biolit.fr/observations/observation-e61e4c65-9396-47aa-8415-abc4c6af91c5/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/P1020012.JPG,,TRUE, +N1,61162,sortie-e61e4c65-9396-47aa-8415-abc4c6af91c5,https://biolit.fr/sorties/sortie-e61e4c65-9396-47aa-8415-abc4c6af91c5/,Phil,,03/12/2016,13.0000000,13.0:45,47.797215000000,-4.176766000000,,Loctudy - Finistère,54832,observation-e61e4c65-9396-47aa-8415-abc4c6af91c5-2,https://biolit.fr/observations/observation-e61e4c65-9396-47aa-8415-abc4c6af91c5-2/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1020022.JPG,,TRUE, +N1,61162,sortie-e61e4c65-9396-47aa-8415-abc4c6af91c5,https://biolit.fr/sorties/sortie-e61e4c65-9396-47aa-8415-abc4c6af91c5/,Phil,,03/12/2016,13.0000000,13.0:45,47.797215000000,-4.176766000000,,Loctudy - Finistère,54834,observation-e61e4c65-9396-47aa-8415-abc4c6af91c5-3,https://biolit.fr/observations/observation-e61e4c65-9396-47aa-8415-abc4c6af91c5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020008.JPG,,FALSE, +N1,61162,sortie-e61e4c65-9396-47aa-8415-abc4c6af91c5,https://biolit.fr/sorties/sortie-e61e4c65-9396-47aa-8415-abc4c6af91c5/,Phil,,03/12/2016,13.0000000,13.0:45,47.797215000000,-4.176766000000,,Loctudy - Finistère,54836,observation-e61e4c65-9396-47aa-8415-abc4c6af91c5-4,https://biolit.fr/observations/observation-e61e4c65-9396-47aa-8415-abc4c6af91c5-4/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1020011.JPG,,TRUE, +N1,61163,sortie-fda5ffad-596c-4311-aa1a-3a51fded0d85,https://biolit.fr/sorties/sortie-fda5ffad-596c-4311-aa1a-3a51fded0d85/,Phil,,3/25/2016 0:00,12.0000000,12.0:35,47.872801000000,-3.909368000000,,Concarneau - Finistère,54838,observation-fda5ffad-596c-4311-aa1a-3a51fded0d85,https://biolit.fr/observations/observation-fda5ffad-596c-4311-aa1a-3a51fded0d85/,Gadus morhua,Morue franche,,https://biolit.fr/wp-content/uploads/2023/07/20160325_123431.jpg,,TRUE, +N1,61163,sortie-fda5ffad-596c-4311-aa1a-3a51fded0d85,https://biolit.fr/sorties/sortie-fda5ffad-596c-4311-aa1a-3a51fded0d85/,Phil,,3/25/2016 0:00,12.0000000,12.0:35,47.872801000000,-3.909368000000,,Concarneau - Finistère,54840,observation-fda5ffad-596c-4311-aa1a-3a51fded0d85-2,https://biolit.fr/observations/observation-fda5ffad-596c-4311-aa1a-3a51fded0d85-2/,Gadus morhua,Morue franche,,https://biolit.fr/wp-content/uploads/2023/07/20160325_123503.jpg,,TRUE, +N1,61163,sortie-fda5ffad-596c-4311-aa1a-3a51fded0d85,https://biolit.fr/sorties/sortie-fda5ffad-596c-4311-aa1a-3a51fded0d85/,Phil,,3/25/2016 0:00,12.0000000,12.0:35,47.872801000000,-3.909368000000,,Concarneau - Finistère,54842,observation-fda5ffad-596c-4311-aa1a-3a51fded0d85-3,https://biolit.fr/observations/observation-fda5ffad-596c-4311-aa1a-3a51fded0d85-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160325_123442.jpg,,FALSE, +N1,61163,sortie-fda5ffad-596c-4311-aa1a-3a51fded0d85,https://biolit.fr/sorties/sortie-fda5ffad-596c-4311-aa1a-3a51fded0d85/,Phil,,3/25/2016 0:00,12.0000000,12.0:35,47.872801000000,-3.909368000000,,Concarneau - Finistère,54844,observation-fda5ffad-596c-4311-aa1a-3a51fded0d85-4,https://biolit.fr/observations/observation-fda5ffad-596c-4311-aa1a-3a51fded0d85-4/,Microstomus kitt,Limande-sole,,https://biolit.fr/wp-content/uploads/2023/07/20160325_123409.jpg,,TRUE, +N1,61163,sortie-fda5ffad-596c-4311-aa1a-3a51fded0d85,https://biolit.fr/sorties/sortie-fda5ffad-596c-4311-aa1a-3a51fded0d85/,Phil,,3/25/2016 0:00,12.0000000,12.0:35,47.872801000000,-3.909368000000,,Concarneau - Finistère,54846,observation-fda5ffad-596c-4311-aa1a-3a51fded0d85-5,https://biolit.fr/observations/observation-fda5ffad-596c-4311-aa1a-3a51fded0d85-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160325_123530.jpg,,FALSE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54848,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/2023/07/P1060678-scaled.jpg,,TRUE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54850,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-2,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-2/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/2023/07/P1060683-scaled.jpg,,TRUE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54852,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-3,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-3/,Pagurus anachoretus,Pagure anachorète,,https://biolit.fr/wp-content/uploads/2023/07/Bernard l'ermite pagure multicolore_ Pagurus anachoretus-scaled.jpg,,TRUE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54854,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-4,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-4/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/Oursin noir_Arbacia lixula bouche-scaled.jpg,,TRUE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54856,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-5,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-5/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/Oursin noir_Arbacia lixula dos-scaled.jpg,,TRUE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54858,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-6,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-6/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Astérie bossue_Asterina gibbosa-scaled.jpg,,TRUE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54860,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-7,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Holothurie tubuleuse_Holothuria ventre-scaled.jpg,,FALSE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54862,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-8,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Holothurie tubuleuse_Holothuria _dos-scaled.jpg,,FALSE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54864,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-9,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-9/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/Cérithe commun_ Cerithium vulgatum_exterieur-scaled.jpg,,TRUE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54866,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-10,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-10/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/Cérithe commun_ Cerithium vulgatum_interieur-scaled.jpg,,TRUE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54868,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-11,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-11/,Pecten jacobaeus,Coquille Saint-Jacques de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/peigne Pecten maximuinterne-scaled.jpg,,TRUE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54870,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-12,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-12/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/Patelle_ Patella caerulea_exterieur-scaled.jpg,,TRUE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54872,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-13,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-13/,Pecten jacobaeus,Coquille Saint-Jacques de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/peigne Pecten maximus_exterieur-scaled.jpg,,TRUE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54874,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-14,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-14/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/Patelle_ Patella caerulea_interieur-scaled.jpg,,TRUE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54876,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-15,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-15/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/Béret basque_ Codium bursa-scaled.jpg,,TRUE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54878,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-16,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-16/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/2023/07/Poulpe commun_Octopus vulgaris-scaled.jpg,,TRUE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54880,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-17,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-17/,Sabella spallanzanii,Spirographe,,https://biolit.fr/wp-content/uploads/2023/07/spirographe_Sabella spallanzanii-scaled.jpg,,TRUE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54882,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-18,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/pelure d'ognion_Anomia ephippium exterieur-scaled.jpg,,FALSE, +N1,61165,sortie-4aaf782e-ba00-4fba-aa44-9f393b4cc90d,https://biolit.fr/sorties/sortie-4aaf782e-ba00-4fba-aa44-9f393b4cc90d/,Phil,,3/15/2016 0:00,17.0:35,17.0:45,47.770090000000,-3.606479000000,,Doélan - Finistère,54884,observation-4aaf782e-ba00-4fba-aa44-9f393b4cc90d,https://biolit.fr/observations/observation-4aaf782e-ba00-4fba-aa44-9f393b4cc90d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020400.JPG,,FALSE, +N1,61165,sortie-4aaf782e-ba00-4fba-aa44-9f393b4cc90d,https://biolit.fr/sorties/sortie-4aaf782e-ba00-4fba-aa44-9f393b4cc90d/,Phil,,3/15/2016 0:00,17.0:35,17.0:45,47.770090000000,-3.606479000000,,Doélan - Finistère,54886,observation-4aaf782e-ba00-4fba-aa44-9f393b4cc90d-2,https://biolit.fr/observations/observation-4aaf782e-ba00-4fba-aa44-9f393b4cc90d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020408.JPG,,FALSE, +N1,61166,sortie-4395a956-2862-4e81-ae07-a636e38bfb1d,https://biolit.fr/sorties/sortie-4395a956-2862-4e81-ae07-a636e38bfb1d/,Phil,,1/24/2016 0:00,17.000005,17.0:15,47.792172000000,-4.241881000000,,Léchiagat - Finistère,54888,observation-4395a956-2862-4e81-ae07-a636e38bfb1d,https://biolit.fr/observations/observation-4395a956-2862-4e81-ae07-a636e38bfb1d/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160124_171056.jpg,,FALSE, +N1,61166,sortie-4395a956-2862-4e81-ae07-a636e38bfb1d,https://biolit.fr/sorties/sortie-4395a956-2862-4e81-ae07-a636e38bfb1d/,Phil,,1/24/2016 0:00,17.000005,17.0:15,47.792172000000,-4.241881000000,,Léchiagat - Finistère,54890,observation-4395a956-2862-4e81-ae07-a636e38bfb1d-2,https://biolit.fr/observations/observation-4395a956-2862-4e81-ae07-a636e38bfb1d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160124_175426.jpg,,FALSE, +N1,61166,sortie-4395a956-2862-4e81-ae07-a636e38bfb1d,https://biolit.fr/sorties/sortie-4395a956-2862-4e81-ae07-a636e38bfb1d/,Phil,,1/24/2016 0:00,17.000005,17.0:15,47.792172000000,-4.241881000000,,Léchiagat - Finistère,54892,observation-4395a956-2862-4e81-ae07-a636e38bfb1d-3,https://biolit.fr/observations/observation-4395a956-2862-4e81-ae07-a636e38bfb1d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160124_170545.jpg,,FALSE, +N1,61167,sortie-4141e5fc-6b82-44fb-9c64-1313cae15cd4,https://biolit.fr/sorties/sortie-4141e5fc-6b82-44fb-9c64-1313cae15cd4/,Phil,,03/12/2016,13.0:55,14.000005,47.79690600000,-4.183259000000,,Loctudy - Finistère,54894,observation-4141e5fc-6b82-44fb-9c64-1313cae15cd4,https://biolit.fr/observations/observation-4141e5fc-6b82-44fb-9c64-1313cae15cd4/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/P1020057.JPG,,TRUE, +N1,61167,sortie-4141e5fc-6b82-44fb-9c64-1313cae15cd4,https://biolit.fr/sorties/sortie-4141e5fc-6b82-44fb-9c64-1313cae15cd4/,Phil,,03/12/2016,13.0:55,14.000005,47.79690600000,-4.183259000000,,Loctudy - Finistère,54896,observation-4141e5fc-6b82-44fb-9c64-1313cae15cd4-2,https://biolit.fr/observations/observation-4141e5fc-6b82-44fb-9c64-1313cae15cd4-2/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/P1020052.JPG,,TRUE, +N1,61167,sortie-4141e5fc-6b82-44fb-9c64-1313cae15cd4,https://biolit.fr/sorties/sortie-4141e5fc-6b82-44fb-9c64-1313cae15cd4/,Phil,,03/12/2016,13.0:55,14.000005,47.79690600000,-4.183259000000,,Loctudy - Finistère,54898,observation-4141e5fc-6b82-44fb-9c64-1313cae15cd4-3,https://biolit.fr/observations/observation-4141e5fc-6b82-44fb-9c64-1313cae15cd4-3/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1020064.JPG,,TRUE, +N1,61167,sortie-4141e5fc-6b82-44fb-9c64-1313cae15cd4,https://biolit.fr/sorties/sortie-4141e5fc-6b82-44fb-9c64-1313cae15cd4/,Phil,,03/12/2016,13.0:55,14.000005,47.79690600000,-4.183259000000,,Loctudy - Finistère,54900,observation-4141e5fc-6b82-44fb-9c64-1313cae15cd4-4,https://biolit.fr/observations/observation-4141e5fc-6b82-44fb-9c64-1313cae15cd4-4/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/P1020058.JPG,,TRUE, +N1,61167,sortie-4141e5fc-6b82-44fb-9c64-1313cae15cd4,https://biolit.fr/sorties/sortie-4141e5fc-6b82-44fb-9c64-1313cae15cd4/,Phil,,03/12/2016,13.0:55,14.000005,47.79690600000,-4.183259000000,,Loctudy - Finistère,54902,observation-4141e5fc-6b82-44fb-9c64-1313cae15cd4-5,https://biolit.fr/observations/observation-4141e5fc-6b82-44fb-9c64-1313cae15cd4-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020066.JPG,,FALSE, +N1,61167,sortie-4141e5fc-6b82-44fb-9c64-1313cae15cd4,https://biolit.fr/sorties/sortie-4141e5fc-6b82-44fb-9c64-1313cae15cd4/,Phil,,03/12/2016,13.0:55,14.000005,47.79690600000,-4.183259000000,,Loctudy - Finistère,54904,observation-4141e5fc-6b82-44fb-9c64-1313cae15cd4-6,https://biolit.fr/observations/observation-4141e5fc-6b82-44fb-9c64-1313cae15cd4-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020070.JPG,,FALSE, +N1,61168,sortie-a2adebfe-b255-4581-b1fa-07628a06f2b8,https://biolit.fr/sorties/sortie-a2adebfe-b255-4581-b1fa-07628a06f2b8/,Phil,,3/15/2016 0:00,17.0000000,17.0:25,47.770127000000,-3.607141000000,,Doélan - Finistère,54906,observation-a2adebfe-b255-4581-b1fa-07628a06f2b8,https://biolit.fr/observations/observation-a2adebfe-b255-4581-b1fa-07628a06f2b8/,Bifurcaria bifurcata,Bifurcaire,,https://biolit.fr/wp-content/uploads/2023/07/P1020369.JPG,,TRUE, +N1,61168,sortie-a2adebfe-b255-4581-b1fa-07628a06f2b8,https://biolit.fr/sorties/sortie-a2adebfe-b255-4581-b1fa-07628a06f2b8/,Phil,,3/15/2016 0:00,17.0000000,17.0:25,47.770127000000,-3.607141000000,,Doélan - Finistère,54908,observation-a2adebfe-b255-4581-b1fa-07628a06f2b8-2,https://biolit.fr/observations/observation-a2adebfe-b255-4581-b1fa-07628a06f2b8-2/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1020368.JPG,,TRUE, +N1,61168,sortie-a2adebfe-b255-4581-b1fa-07628a06f2b8,https://biolit.fr/sorties/sortie-a2adebfe-b255-4581-b1fa-07628a06f2b8/,Phil,,3/15/2016 0:00,17.0000000,17.0:25,47.770127000000,-3.607141000000,,Doélan - Finistère,54910,observation-a2adebfe-b255-4581-b1fa-07628a06f2b8-3,https://biolit.fr/observations/observation-a2adebfe-b255-4581-b1fa-07628a06f2b8-3/,Bifurcaria bifurcata,Bifurcaire,,https://biolit.fr/wp-content/uploads/2023/07/P1020370.JPG,,TRUE, +N1,61169,sortie-1d8dfb00-63b4-44e3-94c2-3f09707028bb,https://biolit.fr/sorties/sortie-1d8dfb00-63b4-44e3-94c2-3f09707028bb/,Phil,,03/12/2016,13.0000000,13.0000000,47.796531000000,-4.180924000000,,Loctudy - Finistère,54912,observation-1d8dfb00-63b4-44e3-94c2-3f09707028bb,https://biolit.fr/observations/observation-1d8dfb00-63b4-44e3-94c2-3f09707028bb/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020024.JPG,,FALSE, +N1,61169,sortie-1d8dfb00-63b4-44e3-94c2-3f09707028bb,https://biolit.fr/sorties/sortie-1d8dfb00-63b4-44e3-94c2-3f09707028bb/,Phil,,03/12/2016,13.0000000,13.0000000,47.796531000000,-4.180924000000,,Loctudy - Finistère,54914,observation-1d8dfb00-63b4-44e3-94c2-3f09707028bb-2,https://biolit.fr/observations/observation-1d8dfb00-63b4-44e3-94c2-3f09707028bb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020029.JPG,,FALSE, +N1,61170,sortie-bcdaa3cc-371c-4fbc-95f7-72139ff51fe8,https://biolit.fr/sorties/sortie-bcdaa3cc-371c-4fbc-95f7-72139ff51fe8/,Ecole de la mer,,3/22/2016 0:00,10.0:35,10.0:45,16.223472000000,-61.526931000000,,Marina du Gosier,54916,observation-bcdaa3cc-371c-4fbc-95f7-72139ff51fe8,https://biolit.fr/observations/observation-bcdaa3cc-371c-4fbc-95f7-72139ff51fe8/,,,,https://biolit.fr/wp-content/uploads/2023/07/GOPR1977.JPG,,FALSE, +N1,61170,sortie-bcdaa3cc-371c-4fbc-95f7-72139ff51fe8,https://biolit.fr/sorties/sortie-bcdaa3cc-371c-4fbc-95f7-72139ff51fe8/,Ecole de la mer,,3/22/2016 0:00,10.0:35,10.0:45,16.223472000000,-61.526931000000,,Marina du Gosier,54918,observation-bcdaa3cc-371c-4fbc-95f7-72139ff51fe8-2,https://biolit.fr/observations/observation-bcdaa3cc-371c-4fbc-95f7-72139ff51fe8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/GOPR1980.JPG,,FALSE, +N1,61171,sortie-6772e9b4-81df-47fd-8b11-4fef5cb565c2,https://biolit.fr/sorties/sortie-6772e9b4-81df-47fd-8b11-4fef5cb565c2/,Phil,,03/12/2016,13.0000000,13.0:45,47.797671000000,-4.181775000000,,Loctudy - Finistère,54920,observation-6772e9b4-81df-47fd-8b11-4fef5cb565c2,https://biolit.fr/observations/observation-6772e9b4-81df-47fd-8b11-4fef5cb565c2/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1010999.JPG,,TRUE, +N1,61171,sortie-6772e9b4-81df-47fd-8b11-4fef5cb565c2,https://biolit.fr/sorties/sortie-6772e9b4-81df-47fd-8b11-4fef5cb565c2/,Phil,,03/12/2016,13.0000000,13.0:45,47.797671000000,-4.181775000000,,Loctudy - Finistère,54922,observation-6772e9b4-81df-47fd-8b11-4fef5cb565c2-2,https://biolit.fr/observations/observation-6772e9b4-81df-47fd-8b11-4fef5cb565c2-2/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1020003.JPG,,TRUE, +N1,61171,sortie-6772e9b4-81df-47fd-8b11-4fef5cb565c2,https://biolit.fr/sorties/sortie-6772e9b4-81df-47fd-8b11-4fef5cb565c2/,Phil,,03/12/2016,13.0000000,13.0:45,47.797671000000,-4.181775000000,,Loctudy - Finistère,54924,observation-6772e9b4-81df-47fd-8b11-4fef5cb565c2-3,https://biolit.fr/observations/observation-6772e9b4-81df-47fd-8b11-4fef5cb565c2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020002.JPG,,FALSE, +N1,61172,sortie-5f199618-3a49-4779-b824-c98b57de0b68,https://biolit.fr/sorties/sortie-5f199618-3a49-4779-b824-c98b57de0b68/,Phil,,3/15/2016 0:00,17.0:15,17.0000000,47.770327000000,-3.607473000000,,Doélan - Finistère,54926,observation-5f199618-3a49-4779-b824-c98b57de0b68,https://biolit.fr/observations/observation-5f199618-3a49-4779-b824-c98b57de0b68/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020352.JPG,,FALSE, +N1,61172,sortie-5f199618-3a49-4779-b824-c98b57de0b68,https://biolit.fr/sorties/sortie-5f199618-3a49-4779-b824-c98b57de0b68/,Phil,,3/15/2016 0:00,17.0:15,17.0000000,47.770327000000,-3.607473000000,,Doélan - Finistère,54928,observation-5f199618-3a49-4779-b824-c98b57de0b68-2,https://biolit.fr/observations/observation-5f199618-3a49-4779-b824-c98b57de0b68-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020353.JPG,,FALSE, +N1,61173,sortie-374a09e4-565c-4fbb-8d55-acf29d2a410f,https://biolit.fr/sorties/sortie-374a09e4-565c-4fbb-8d55-acf29d2a410f/,Phil,,3/14/2016 0:00,16.0:25,16.0000000,47.791434000000,-4.317155000000,,Penmarc'h - Finistère,54930,observation-374a09e4-565c-4fbb-8d55-acf29d2a410f,https://biolit.fr/observations/observation-374a09e4-565c-4fbb-8d55-acf29d2a410f/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020310.JPG,,FALSE, +N1,61173,sortie-374a09e4-565c-4fbb-8d55-acf29d2a410f,https://biolit.fr/sorties/sortie-374a09e4-565c-4fbb-8d55-acf29d2a410f/,Phil,,3/14/2016 0:00,16.0:25,16.0000000,47.791434000000,-4.317155000000,,Penmarc'h - Finistère,54932,observation-374a09e4-565c-4fbb-8d55-acf29d2a410f-2,https://biolit.fr/observations/observation-374a09e4-565c-4fbb-8d55-acf29d2a410f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020296.JPG,,FALSE, +N1,61174,sortie-b43c9de0-8f92-4c93-b366-b006055070c2,https://biolit.fr/sorties/sortie-b43c9de0-8f92-4c93-b366-b006055070c2/,Phil,,3/13/2016 0:00,16.0:45,16.0000000,47.893975000000,-3.970278000000,,La Forêt-Fouesnant - Finistère,54934,observation-b43c9de0-8f92-4c93-b366-b006055070c2,https://biolit.fr/observations/observation-b43c9de0-8f92-4c93-b366-b006055070c2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020192.JPG,,FALSE, +N1,61175,sortie-5e697d7a-eb9e-4714-9f23-76a67fabeedc,https://biolit.fr/sorties/sortie-5e697d7a-eb9e-4714-9f23-76a67fabeedc/,alexclement,,3/21/2016 0:00,11.0000000,13.0000000,43.423148000000,5.177909000000,,lido du jai marignane,54936,observation-5e697d7a-eb9e-4714-9f23-76a67fabeedc,https://biolit.fr/observations/observation-5e697d7a-eb9e-4714-9f23-76a67fabeedc/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160308_133118-scaled.jpg,,FALSE, +N1,61175,sortie-5e697d7a-eb9e-4714-9f23-76a67fabeedc,https://biolit.fr/sorties/sortie-5e697d7a-eb9e-4714-9f23-76a67fabeedc/,alexclement,,3/21/2016 0:00,11.0000000,13.0000000,43.423148000000,5.177909000000,,lido du jai marignane,54938,observation-5e697d7a-eb9e-4714-9f23-76a67fabeedc-2,https://biolit.fr/observations/observation-5e697d7a-eb9e-4714-9f23-76a67fabeedc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160308_133126-scaled.jpg,,FALSE, +N1,61175,sortie-5e697d7a-eb9e-4714-9f23-76a67fabeedc,https://biolit.fr/sorties/sortie-5e697d7a-eb9e-4714-9f23-76a67fabeedc/,alexclement,,3/21/2016 0:00,11.0000000,13.0000000,43.423148000000,5.177909000000,,lido du jai marignane,54940,observation-5e697d7a-eb9e-4714-9f23-76a67fabeedc-3,https://biolit.fr/observations/observation-5e697d7a-eb9e-4714-9f23-76a67fabeedc-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160308_134414-scaled.jpg,,FALSE, +N1,61175,sortie-5e697d7a-eb9e-4714-9f23-76a67fabeedc,https://biolit.fr/sorties/sortie-5e697d7a-eb9e-4714-9f23-76a67fabeedc/,alexclement,,3/21/2016 0:00,11.0000000,13.0000000,43.423148000000,5.177909000000,,lido du jai marignane,54942,observation-5e697d7a-eb9e-4714-9f23-76a67fabeedc-4,https://biolit.fr/observations/observation-5e697d7a-eb9e-4714-9f23-76a67fabeedc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160308_140623-scaled.jpg,,FALSE, +N1,61176,sortie-79f0eb76-439f-41e3-bae9-74e610a6b5ed,https://biolit.fr/sorties/sortie-79f0eb76-439f-41e3-bae9-74e610a6b5ed/,Paul M,,3/21/2016 0:00,11.0000000,13.0000000,43.416122000000,5.167441000000,,lido du jai,54944,observation-79f0eb76-439f-41e3-bae9-74e610a6b5ed,https://biolit.fr/observations/observation-79f0eb76-439f-41e3-bae9-74e610a6b5ed/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110927-scaled.jpg,,FALSE, +N1,61177,sortie-fece64cd-d864-4cef-bc8f-cf700c3fc589,https://biolit.fr/sorties/sortie-fece64cd-d864-4cef-bc8f-cf700c3fc589/,Paul M,,03/08/2016,14.0000000,15.0000000,43.424405000000,5.179380000000,,Lido du JaÏ - Marignane (13),54946,observation-fece64cd-d864-4cef-bc8f-cf700c3fc589,https://biolit.fr/observations/observation-fece64cd-d864-4cef-bc8f-cf700c3fc589/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1110920-scaled.jpg,,TRUE, +N1,61178,sortie-6774d0b2-704c-48f7-9639-9ff267f13501,https://biolit.fr/sorties/sortie-6774d0b2-704c-48f7-9639-9ff267f13501/,Phil,,3/14/2016 0:00,16.0000000,16.0:25,47.791217000000,-4.308552000000,,Penmarc'h - Finistère,54948,observation-6774d0b2-704c-48f7-9639-9ff267f13501,https://biolit.fr/observations/observation-6774d0b2-704c-48f7-9639-9ff267f13501/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020293.JPG,,FALSE, +N1,61178,sortie-6774d0b2-704c-48f7-9639-9ff267f13501,https://biolit.fr/sorties/sortie-6774d0b2-704c-48f7-9639-9ff267f13501/,Phil,,3/14/2016 0:00,16.0000000,16.0:25,47.791217000000,-4.308552000000,,Penmarc'h - Finistère,54950,observation-6774d0b2-704c-48f7-9639-9ff267f13501-2,https://biolit.fr/observations/observation-6774d0b2-704c-48f7-9639-9ff267f13501-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020280.JPG,,FALSE, +N1,61178,sortie-6774d0b2-704c-48f7-9639-9ff267f13501,https://biolit.fr/sorties/sortie-6774d0b2-704c-48f7-9639-9ff267f13501/,Phil,,3/14/2016 0:00,16.0000000,16.0:25,47.791217000000,-4.308552000000,,Penmarc'h - Finistère,54952,observation-6774d0b2-704c-48f7-9639-9ff267f13501-3,https://biolit.fr/observations/observation-6774d0b2-704c-48f7-9639-9ff267f13501-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020285.JPG,,FALSE, +N1,61179,sortie-4eabad4f-40ca-49e7-af4c-3de3978a9dd2,https://biolit.fr/sorties/sortie-4eabad4f-40ca-49e7-af4c-3de3978a9dd2/,Phil,,03/12/2016,13.0000000,13.0000000,47.800313000000,-4.164204000000,,Loctudy - Finistère,54954,observation-4eabad4f-40ca-49e7-af4c-3de3978a9dd2,https://biolit.fr/observations/observation-4eabad4f-40ca-49e7-af4c-3de3978a9dd2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010973.JPG,,FALSE, +N1,61179,sortie-4eabad4f-40ca-49e7-af4c-3de3978a9dd2,https://biolit.fr/sorties/sortie-4eabad4f-40ca-49e7-af4c-3de3978a9dd2/,Phil,,03/12/2016,13.0000000,13.0000000,47.800313000000,-4.164204000000,,Loctudy - Finistère,54956,observation-4eabad4f-40ca-49e7-af4c-3de3978a9dd2-2,https://biolit.fr/observations/observation-4eabad4f-40ca-49e7-af4c-3de3978a9dd2-2/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1010977.JPG,,TRUE, +N1,61179,sortie-4eabad4f-40ca-49e7-af4c-3de3978a9dd2,https://biolit.fr/sorties/sortie-4eabad4f-40ca-49e7-af4c-3de3978a9dd2/,Phil,,03/12/2016,13.0000000,13.0000000,47.800313000000,-4.164204000000,,Loctudy - Finistère,54958,observation-4eabad4f-40ca-49e7-af4c-3de3978a9dd2-3,https://biolit.fr/observations/observation-4eabad4f-40ca-49e7-af4c-3de3978a9dd2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010982.JPG,,FALSE, +N1,61179,sortie-4eabad4f-40ca-49e7-af4c-3de3978a9dd2,https://biolit.fr/sorties/sortie-4eabad4f-40ca-49e7-af4c-3de3978a9dd2/,Phil,,03/12/2016,13.0000000,13.0000000,47.800313000000,-4.164204000000,,Loctudy - Finistère,54960,observation-4eabad4f-40ca-49e7-af4c-3de3978a9dd2-4,https://biolit.fr/observations/observation-4eabad4f-40ca-49e7-af4c-3de3978a9dd2-4/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1010990.JPG,,TRUE, +N1,61179,sortie-4eabad4f-40ca-49e7-af4c-3de3978a9dd2,https://biolit.fr/sorties/sortie-4eabad4f-40ca-49e7-af4c-3de3978a9dd2/,Phil,,03/12/2016,13.0000000,13.0000000,47.800313000000,-4.164204000000,,Loctudy - Finistère,54962,observation-4eabad4f-40ca-49e7-af4c-3de3978a9dd2-5,https://biolit.fr/observations/observation-4eabad4f-40ca-49e7-af4c-3de3978a9dd2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010992.JPG,,FALSE, +N1,61179,sortie-4eabad4f-40ca-49e7-af4c-3de3978a9dd2,https://biolit.fr/sorties/sortie-4eabad4f-40ca-49e7-af4c-3de3978a9dd2/,Phil,,03/12/2016,13.0000000,13.0000000,47.800313000000,-4.164204000000,,Loctudy - Finistère,54964,observation-4eabad4f-40ca-49e7-af4c-3de3978a9dd2-6,https://biolit.fr/observations/observation-4eabad4f-40ca-49e7-af4c-3de3978a9dd2-6/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1010972.JPG,,TRUE, +N1,61180,sortie-c4648879-fd88-46c0-8c16-6074917af032,https://biolit.fr/sorties/sortie-c4648879-fd88-46c0-8c16-6074917af032/,Phil,,03/12/2016,13.0:15,13.0:25,47.802354000000,-4.171157000000,,Loctudy - Finistère,54966,observation-c4648879-fd88-46c0-8c16-6074917af032,https://biolit.fr/observations/observation-c4648879-fd88-46c0-8c16-6074917af032/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010915.JPG,,FALSE, +N1,61180,sortie-c4648879-fd88-46c0-8c16-6074917af032,https://biolit.fr/sorties/sortie-c4648879-fd88-46c0-8c16-6074917af032/,Phil,,03/12/2016,13.0:15,13.0:25,47.802354000000,-4.171157000000,,Loctudy - Finistère,54968,observation-c4648879-fd88-46c0-8c16-6074917af032-2,https://biolit.fr/observations/observation-c4648879-fd88-46c0-8c16-6074917af032-2/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1010924.JPG,,TRUE, +N1,61180,sortie-c4648879-fd88-46c0-8c16-6074917af032,https://biolit.fr/sorties/sortie-c4648879-fd88-46c0-8c16-6074917af032/,Phil,,03/12/2016,13.0:15,13.0:25,47.802354000000,-4.171157000000,,Loctudy - Finistère,54970,observation-c4648879-fd88-46c0-8c16-6074917af032-3,https://biolit.fr/observations/observation-c4648879-fd88-46c0-8c16-6074917af032-3/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1010928.JPG,,TRUE, +N1,61180,sortie-c4648879-fd88-46c0-8c16-6074917af032,https://biolit.fr/sorties/sortie-c4648879-fd88-46c0-8c16-6074917af032/,Phil,,03/12/2016,13.0:15,13.0:25,47.802354000000,-4.171157000000,,Loctudy - Finistère,54972,observation-c4648879-fd88-46c0-8c16-6074917af032-4,https://biolit.fr/observations/observation-c4648879-fd88-46c0-8c16-6074917af032-4/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1010932.JPG,,TRUE, +N1,61180,sortie-c4648879-fd88-46c0-8c16-6074917af032,https://biolit.fr/sorties/sortie-c4648879-fd88-46c0-8c16-6074917af032/,Phil,,03/12/2016,13.0:15,13.0:25,47.802354000000,-4.171157000000,,Loctudy - Finistère,54974,observation-c4648879-fd88-46c0-8c16-6074917af032-5,https://biolit.fr/observations/observation-c4648879-fd88-46c0-8c16-6074917af032-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1010933.JPG,,TRUE, +N1,61180,sortie-c4648879-fd88-46c0-8c16-6074917af032,https://biolit.fr/sorties/sortie-c4648879-fd88-46c0-8c16-6074917af032/,Phil,,03/12/2016,13.0:15,13.0:25,47.802354000000,-4.171157000000,,Loctudy - Finistère,54976,observation-c4648879-fd88-46c0-8c16-6074917af032-6,https://biolit.fr/observations/observation-c4648879-fd88-46c0-8c16-6074917af032-6/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/P1010936.JPG,,TRUE, +N1,61181,sortie-237e072f-c5a0-4aa4-90bf-350d658c43ce,https://biolit.fr/sorties/sortie-237e072f-c5a0-4aa4-90bf-350d658c43ce/,Phil,,3/13/2016 0:00,16.0:25,16.0000000,47.895480000000,-3.97437700000,,La Forêt-Fouesnant - Finistère,54978,observation-237e072f-c5a0-4aa4-90bf-350d658c43ce,https://biolit.fr/observations/observation-237e072f-c5a0-4aa4-90bf-350d658c43ce/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020179.JPG,,FALSE, +N1,61181,sortie-237e072f-c5a0-4aa4-90bf-350d658c43ce,https://biolit.fr/sorties/sortie-237e072f-c5a0-4aa4-90bf-350d658c43ce/,Phil,,3/13/2016 0:00,16.0:25,16.0000000,47.895480000000,-3.97437700000,,La Forêt-Fouesnant - Finistère,54980,observation-237e072f-c5a0-4aa4-90bf-350d658c43ce-2,https://biolit.fr/observations/observation-237e072f-c5a0-4aa4-90bf-350d658c43ce-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020180.JPG,,FALSE, +N1,61181,sortie-237e072f-c5a0-4aa4-90bf-350d658c43ce,https://biolit.fr/sorties/sortie-237e072f-c5a0-4aa4-90bf-350d658c43ce/,Phil,,3/13/2016 0:00,16.0:25,16.0000000,47.895480000000,-3.97437700000,,La Forêt-Fouesnant - Finistère,54982,observation-237e072f-c5a0-4aa4-90bf-350d658c43ce-3,https://biolit.fr/observations/observation-237e072f-c5a0-4aa4-90bf-350d658c43ce-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020186.JPG,,FALSE, +N1,61182,sortie-fa693f9f-b175-4e29-85ab-3f9b0879191e,https://biolit.fr/sorties/sortie-fa693f9f-b175-4e29-85ab-3f9b0879191e/,Phil,,3/14/2016 0:00,15.0:55,16.0000000,47.791699000000,-4.318442000000,,Penmarc'h - Finistère,54984,observation-fa693f9f-b175-4e29-85ab-3f9b0879191e,https://biolit.fr/observations/observation-fa693f9f-b175-4e29-85ab-3f9b0879191e/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/P1020270.JPG,,TRUE, +N1,61182,sortie-fa693f9f-b175-4e29-85ab-3f9b0879191e,https://biolit.fr/sorties/sortie-fa693f9f-b175-4e29-85ab-3f9b0879191e/,Phil,,3/14/2016 0:00,15.0:55,16.0000000,47.791699000000,-4.318442000000,,Penmarc'h - Finistère,54986,observation-fa693f9f-b175-4e29-85ab-3f9b0879191e-2,https://biolit.fr/observations/observation-fa693f9f-b175-4e29-85ab-3f9b0879191e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020266.JPG,,FALSE, +N1,61182,sortie-fa693f9f-b175-4e29-85ab-3f9b0879191e,https://biolit.fr/sorties/sortie-fa693f9f-b175-4e29-85ab-3f9b0879191e/,Phil,,3/14/2016 0:00,15.0:55,16.0000000,47.791699000000,-4.318442000000,,Penmarc'h - Finistère,54988,observation-fa693f9f-b175-4e29-85ab-3f9b0879191e-3,https://biolit.fr/observations/observation-fa693f9f-b175-4e29-85ab-3f9b0879191e-3/,Terpios gelatinosus,Eponge encroûtante bleue,,https://biolit.fr/wp-content/uploads/2023/07/P1020275.JPG,,TRUE, +N1,61183,sortie-92424666-5539-48be-9412-1f69435d3ad3,https://biolit.fr/sorties/sortie-92424666-5539-48be-9412-1f69435d3ad3/,Phil,,3/15/2016 0:00,17.0000000,17.0:15,47.770489000000,-3.608026000000,,Doélan - Finistère,54990,observation-92424666-5539-48be-9412-1f69435d3ad3,https://biolit.fr/observations/observation-92424666-5539-48be-9412-1f69435d3ad3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020347.JPG,,FALSE, +N1,61183,sortie-92424666-5539-48be-9412-1f69435d3ad3,https://biolit.fr/sorties/sortie-92424666-5539-48be-9412-1f69435d3ad3/,Phil,,3/15/2016 0:00,17.0000000,17.0:15,47.770489000000,-3.608026000000,,Doélan - Finistère,54992,observation-92424666-5539-48be-9412-1f69435d3ad3-2,https://biolit.fr/observations/observation-92424666-5539-48be-9412-1f69435d3ad3-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020335.JPG,,TRUE, +N1,61183,sortie-92424666-5539-48be-9412-1f69435d3ad3,https://biolit.fr/sorties/sortie-92424666-5539-48be-9412-1f69435d3ad3/,Phil,,3/15/2016 0:00,17.0000000,17.0:15,47.770489000000,-3.608026000000,,Doélan - Finistère,54994,observation-92424666-5539-48be-9412-1f69435d3ad3-3,https://biolit.fr/observations/observation-92424666-5539-48be-9412-1f69435d3ad3-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020350.JPG,,FALSE, +N1,61184,sortie-f58d2f2f-87be-43ec-aa60-cc7f703f94c1,https://biolit.fr/sorties/sortie-f58d2f2f-87be-43ec-aa60-cc7f703f94c1/,herve laurent,,3/17/2016 0:00,16.0000000,18.0000000,48.572403000000,-4.655774000000,,plage de tréonpam ,54996,observation-f58d2f2f-87be-43ec-aa60-cc7f703f94c1,https://biolit.fr/observations/observation-f58d2f2f-87be-43ec-aa60-cc7f703f94c1/,,,,https://biolit.fr/wp-content/uploads/2023/07/1_1-scaled.jpg,,FALSE, +N1,61184,sortie-f58d2f2f-87be-43ec-aa60-cc7f703f94c1,https://biolit.fr/sorties/sortie-f58d2f2f-87be-43ec-aa60-cc7f703f94c1/,herve laurent,,3/17/2016 0:00,16.0000000,18.0000000,48.572403000000,-4.655774000000,,plage de tréonpam ,54998,observation-f58d2f2f-87be-43ec-aa60-cc7f703f94c1-2,https://biolit.fr/observations/observation-f58d2f2f-87be-43ec-aa60-cc7f703f94c1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/2_0-scaled.jpg,,FALSE, +N1,61184,sortie-f58d2f2f-87be-43ec-aa60-cc7f703f94c1,https://biolit.fr/sorties/sortie-f58d2f2f-87be-43ec-aa60-cc7f703f94c1/,herve laurent,,3/17/2016 0:00,16.0000000,18.0000000,48.572403000000,-4.655774000000,,plage de tréonpam ,55000,observation-f58d2f2f-87be-43ec-aa60-cc7f703f94c1-3,https://biolit.fr/observations/observation-f58d2f2f-87be-43ec-aa60-cc7f703f94c1-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/3_0-scaled.jpg,,FALSE, +N1,61185,sortie-49b52af1-cc7c-4cd1-9746-ef765fefb59d,https://biolit.fr/sorties/sortie-49b52af1-cc7c-4cd1-9746-ef765fefb59d/,herve laurent,,3/17/2016 0:00,15.0000000,15.0000000,48.56882400000,-4.685502000000,,plage de tréonpam ,55002,observation-49b52af1-cc7c-4cd1-9746-ef765fefb59d,https://biolit.fr/observations/observation-49b52af1-cc7c-4cd1-9746-ef765fefb59d/,,,,https://biolit.fr/wp-content/uploads/2023/07/4_0-scaled.jpg,,FALSE, +N1,61186,sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369,https://biolit.fr/sorties/sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369/,Ville de Marseille,,03/11/2016,10.0000000,12.0000000,43.239857000000,5.362356000000,,"plage du Bain des Dames, Marseille",55004,observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369,https://biolit.fr/observations/observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060693-scaled.jpg,,FALSE, +N1,61186,sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369,https://biolit.fr/sorties/sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369/,Ville de Marseille,,03/11/2016,10.0000000,12.0000000,43.239857000000,5.362356000000,,"plage du Bain des Dames, Marseille",55006,observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-2,https://biolit.fr/observations/observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-2/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/P1060694-scaled.jpg,,TRUE, +N1,61186,sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369,https://biolit.fr/sorties/sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369/,Ville de Marseille,,03/11/2016,10.0000000,12.0000000,43.239857000000,5.362356000000,,"plage du Bain des Dames, Marseille",55008,observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-3,https://biolit.fr/observations/observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-3/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/2023/07/P1060695-scaled.jpg,,TRUE, +N1,61186,sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369,https://biolit.fr/sorties/sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369/,Ville de Marseille,,03/11/2016,10.0000000,12.0000000,43.239857000000,5.362356000000,,"plage du Bain des Dames, Marseille",55010,observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-4,https://biolit.fr/observations/observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060697-scaled.jpg,,FALSE, +N1,61186,sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369,https://biolit.fr/sorties/sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369/,Ville de Marseille,,03/11/2016,10.0000000,12.0000000,43.239857000000,5.362356000000,,"plage du Bain des Dames, Marseille",55012,observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-5,https://biolit.fr/observations/observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-5/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/P1060700-scaled.jpg,,TRUE, +N1,61186,sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369,https://biolit.fr/sorties/sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369/,Ville de Marseille,,03/11/2016,10.0000000,12.0000000,43.239857000000,5.362356000000,,"plage du Bain des Dames, Marseille",55014,observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-6,https://biolit.fr/observations/observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-6/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/2023/07/P1060702-scaled.jpg,,TRUE, +N1,61186,sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369,https://biolit.fr/sorties/sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369/,Ville de Marseille,,03/11/2016,10.0000000,12.0000000,43.239857000000,5.362356000000,,"plage du Bain des Dames, Marseille",55016,observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-7,https://biolit.fr/observations/observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-7/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/P1060708-scaled.jpg,,TRUE, +N1,61186,sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369,https://biolit.fr/sorties/sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369/,Ville de Marseille,,03/11/2016,10.0000000,12.0000000,43.239857000000,5.362356000000,,"plage du Bain des Dames, Marseille",55018,observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-8,https://biolit.fr/observations/observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-8/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/P1060704-scaled.jpg,,TRUE, +N1,61186,sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369,https://biolit.fr/sorties/sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369/,Ville de Marseille,,03/11/2016,10.0000000,12.0000000,43.239857000000,5.362356000000,,"plage du Bain des Dames, Marseille",55020,observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-9,https://biolit.fr/observations/observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-9/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/2023/07/P1060709-scaled.jpg,,TRUE, +N1,61186,sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369,https://biolit.fr/sorties/sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369/,Ville de Marseille,,03/11/2016,10.0000000,12.0000000,43.239857000000,5.362356000000,,"plage du Bain des Dames, Marseille",55022,observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-10,https://biolit.fr/observations/observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-10/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/P1060706-scaled.jpg,,TRUE, +N1,61186,sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369,https://biolit.fr/sorties/sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369/,Ville de Marseille,,03/11/2016,10.0000000,12.0000000,43.239857000000,5.362356000000,,"plage du Bain des Dames, Marseille",55024,observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-11,https://biolit.fr/observations/observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-11/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060713-scaled.jpg,,TRUE, +N1,61186,sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369,https://biolit.fr/sorties/sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369/,Ville de Marseille,,03/11/2016,10.0000000,12.0000000,43.239857000000,5.362356000000,,"plage du Bain des Dames, Marseille",55026,observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-12,https://biolit.fr/observations/observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060710-scaled.jpg,,FALSE, +N1,61186,sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369,https://biolit.fr/sorties/sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369/,Ville de Marseille,,03/11/2016,10.0000000,12.0000000,43.239857000000,5.362356000000,,"plage du Bain des Dames, Marseille",55028,observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-13,https://biolit.fr/observations/observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060711-scaled.jpg,,FALSE, +N1,61187,sortie-926fb2bc-5bbf-4216-a2de-822fd9da240b,https://biolit.fr/sorties/sortie-926fb2bc-5bbf-4216-a2de-822fd9da240b/,Phil,,03/12/2016,13.0000000,13.0:35,47.798762000000,-4.167251000000,,Loctudy - Finistère,55030,observation-926fb2bc-5bbf-4216-a2de-822fd9da240b,https://biolit.fr/observations/observation-926fb2bc-5bbf-4216-a2de-822fd9da240b/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1010953.JPG,,TRUE, +N1,61187,sortie-926fb2bc-5bbf-4216-a2de-822fd9da240b,https://biolit.fr/sorties/sortie-926fb2bc-5bbf-4216-a2de-822fd9da240b/,Phil,,03/12/2016,13.0000000,13.0:35,47.798762000000,-4.167251000000,,Loctudy - Finistère,55032,observation-926fb2bc-5bbf-4216-a2de-822fd9da240b-2,https://biolit.fr/observations/observation-926fb2bc-5bbf-4216-a2de-822fd9da240b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010965.JPG,,FALSE, +N1,61187,sortie-926fb2bc-5bbf-4216-a2de-822fd9da240b,https://biolit.fr/sorties/sortie-926fb2bc-5bbf-4216-a2de-822fd9da240b/,Phil,,03/12/2016,13.0000000,13.0:35,47.798762000000,-4.167251000000,,Loctudy - Finistère,55034,observation-926fb2bc-5bbf-4216-a2de-822fd9da240b-3,https://biolit.fr/observations/observation-926fb2bc-5bbf-4216-a2de-822fd9da240b-3/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1010956.JPG,,TRUE, +N1,61187,sortie-926fb2bc-5bbf-4216-a2de-822fd9da240b,https://biolit.fr/sorties/sortie-926fb2bc-5bbf-4216-a2de-822fd9da240b/,Phil,,03/12/2016,13.0000000,13.0:35,47.798762000000,-4.167251000000,,Loctudy - Finistère,55036,observation-926fb2bc-5bbf-4216-a2de-822fd9da240b-4,https://biolit.fr/observations/observation-926fb2bc-5bbf-4216-a2de-822fd9da240b-4/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/2023/07/P1010949.JPG,,TRUE, +N1,61188,sortie-51d1d330-6935-4c30-951e-e949d7126811,https://biolit.fr/sorties/sortie-51d1d330-6935-4c30-951e-e949d7126811/,Phil,,3/14/2016 0:00,15.0000000,16.0000000,47.790448000000,-4.318313000000,,Penmarc'h - Finistère,55038,observation-51d1d330-6935-4c30-951e-e949d7126811,https://biolit.fr/observations/observation-51d1d330-6935-4c30-951e-e949d7126811/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/P1020264.JPG,,TRUE, +N1,61188,sortie-51d1d330-6935-4c30-951e-e949d7126811,https://biolit.fr/sorties/sortie-51d1d330-6935-4c30-951e-e949d7126811/,Phil,,3/14/2016 0:00,15.0000000,16.0000000,47.790448000000,-4.318313000000,,Penmarc'h - Finistère,55040,observation-51d1d330-6935-4c30-951e-e949d7126811-2,https://biolit.fr/observations/observation-51d1d330-6935-4c30-951e-e949d7126811-2/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/P1020263.JPG,,TRUE, +N1,61188,sortie-51d1d330-6935-4c30-951e-e949d7126811,https://biolit.fr/sorties/sortie-51d1d330-6935-4c30-951e-e949d7126811/,Phil,,3/14/2016 0:00,15.0000000,16.0000000,47.790448000000,-4.318313000000,,Penmarc'h - Finistère,55042,observation-51d1d330-6935-4c30-951e-e949d7126811-3,https://biolit.fr/observations/observation-51d1d330-6935-4c30-951e-e949d7126811-3/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1020253.JPG,,TRUE, +N1,61188,sortie-51d1d330-6935-4c30-951e-e949d7126811,https://biolit.fr/sorties/sortie-51d1d330-6935-4c30-951e-e949d7126811/,Phil,,3/14/2016 0:00,15.0000000,16.0000000,47.790448000000,-4.318313000000,,Penmarc'h - Finistère,55044,observation-51d1d330-6935-4c30-951e-e949d7126811-4,https://biolit.fr/observations/observation-51d1d330-6935-4c30-951e-e949d7126811-4/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1020250.JPG,,TRUE, +N1,61188,sortie-51d1d330-6935-4c30-951e-e949d7126811,https://biolit.fr/sorties/sortie-51d1d330-6935-4c30-951e-e949d7126811/,Phil,,3/14/2016 0:00,15.0000000,16.0000000,47.790448000000,-4.318313000000,,Penmarc'h - Finistère,55046,observation-51d1d330-6935-4c30-951e-e949d7126811-5,https://biolit.fr/observations/observation-51d1d330-6935-4c30-951e-e949d7126811-5/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1020248.JPG,,TRUE, +N1,61188,sortie-51d1d330-6935-4c30-951e-e949d7126811,https://biolit.fr/sorties/sortie-51d1d330-6935-4c30-951e-e949d7126811/,Phil,,3/14/2016 0:00,15.0000000,16.0000000,47.790448000000,-4.318313000000,,Penmarc'h - Finistère,55048,observation-51d1d330-6935-4c30-951e-e949d7126811-6,https://biolit.fr/observations/observation-51d1d330-6935-4c30-951e-e949d7126811-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020240.JPG,,FALSE, +N1,61188,sortie-51d1d330-6935-4c30-951e-e949d7126811,https://biolit.fr/sorties/sortie-51d1d330-6935-4c30-951e-e949d7126811/,Phil,,3/14/2016 0:00,15.0000000,16.0000000,47.790448000000,-4.318313000000,,Penmarc'h - Finistère,55050,observation-51d1d330-6935-4c30-951e-e949d7126811-7,https://biolit.fr/observations/observation-51d1d330-6935-4c30-951e-e949d7126811-7/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1020238.JPG,,TRUE, +N1,61189,sortie-0b185661-78ba-4c6b-8c8e-987e3545a1ad,https://biolit.fr/sorties/sortie-0b185661-78ba-4c6b-8c8e-987e3545a1ad/,Earthforce FS,,1/18/2016 0:00,13.0000000,17.0000000,16.264041000000,-61.809562000000,,Deshaies Guadeloupe,55052,observation-0b185661-78ba-4c6b-8c8e-987e3545a1ad,https://biolit.fr/observations/observation-0b185661-78ba-4c6b-8c8e-987e3545a1ad/,,,,https://biolit.fr/wp-content/uploads/2023/07/946167_10206831262718181_7780463236865940777_n-1.jpg,,FALSE, +N1,61189,sortie-0b185661-78ba-4c6b-8c8e-987e3545a1ad,https://biolit.fr/sorties/sortie-0b185661-78ba-4c6b-8c8e-987e3545a1ad/,Earthforce FS,,1/18/2016 0:00,13.0000000,17.0000000,16.264041000000,-61.809562000000,,Deshaies Guadeloupe,55054,observation-0b185661-78ba-4c6b-8c8e-987e3545a1ad-2,https://biolit.fr/observations/observation-0b185661-78ba-4c6b-8c8e-987e3545a1ad-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/12509243_10206831275958512_1448409382222411258_n.jpg,,FALSE, +N1,61189,sortie-0b185661-78ba-4c6b-8c8e-987e3545a1ad,https://biolit.fr/sorties/sortie-0b185661-78ba-4c6b-8c8e-987e3545a1ad/,Earthforce FS,,1/18/2016 0:00,13.0000000,17.0000000,16.264041000000,-61.809562000000,,Deshaies Guadeloupe,55056,observation-0b185661-78ba-4c6b-8c8e-987e3545a1ad-3,https://biolit.fr/observations/observation-0b185661-78ba-4c6b-8c8e-987e3545a1ad-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/12592206_10206831277518551_2642371865346575240_n.jpg,,FALSE, +N1,61189,sortie-0b185661-78ba-4c6b-8c8e-987e3545a1ad,https://biolit.fr/sorties/sortie-0b185661-78ba-4c6b-8c8e-987e3545a1ad/,Earthforce FS,,1/18/2016 0:00,13.0000000,17.0000000,16.264041000000,-61.809562000000,,Deshaies Guadeloupe,55058,observation-0b185661-78ba-4c6b-8c8e-987e3545a1ad-4,https://biolit.fr/observations/observation-0b185661-78ba-4c6b-8c8e-987e3545a1ad-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/12540842_10206831281358647_3991190498378373318_n.jpg,,FALSE, +N1,61190,sortie-5701ff8c-a532-45ba-b358-90675cddcf53,https://biolit.fr/sorties/sortie-5701ff8c-a532-45ba-b358-90675cddcf53/,Earthforce FS,,03/04/2016,9.0000000,12.0000000,16.327356000000,-61.85145600000,,Deshaies Guadeloupe,55060,observation-5701ff8c-a532-45ba-b358-90675cddcf53,https://biolit.fr/observations/observation-5701ff8c-a532-45ba-b358-90675cddcf53/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cachalots 2.jpg,,FALSE, +N1,61190,sortie-5701ff8c-a532-45ba-b358-90675cddcf53,https://biolit.fr/sorties/sortie-5701ff8c-a532-45ba-b358-90675cddcf53/,Earthforce FS,,03/04/2016,9.0000000,12.0000000,16.327356000000,-61.85145600000,,Deshaies Guadeloupe,55062,observation-5701ff8c-a532-45ba-b358-90675cddcf53-2,https://biolit.fr/observations/observation-5701ff8c-a532-45ba-b358-90675cddcf53-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cachalots 4.jpg,,FALSE, +N1,61190,sortie-5701ff8c-a532-45ba-b358-90675cddcf53,https://biolit.fr/sorties/sortie-5701ff8c-a532-45ba-b358-90675cddcf53/,Earthforce FS,,03/04/2016,9.0000000,12.0000000,16.327356000000,-61.85145600000,,Deshaies Guadeloupe,55064,observation-5701ff8c-a532-45ba-b358-90675cddcf53-3,https://biolit.fr/observations/observation-5701ff8c-a532-45ba-b358-90675cddcf53-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cachalots 1_0.jpg,,FALSE, +N1,61191,sortie-91905fc3-fbad-4087-9ccb-c7387de0cb6a,https://biolit.fr/sorties/sortie-91905fc3-fbad-4087-9ccb-c7387de0cb6a/,Phil,,03/12/2016,13.000005,13.0:15,47.800276000000,-4.171457000000,,Loctudy - Finistère,55066,observation-91905fc3-fbad-4087-9ccb-c7387de0cb6a,https://biolit.fr/observations/observation-91905fc3-fbad-4087-9ccb-c7387de0cb6a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010909.JPG,,FALSE, +N1,61191,sortie-91905fc3-fbad-4087-9ccb-c7387de0cb6a,https://biolit.fr/sorties/sortie-91905fc3-fbad-4087-9ccb-c7387de0cb6a/,Phil,,03/12/2016,13.000005,13.0:15,47.800276000000,-4.171457000000,,Loctudy - Finistère,55068,observation-91905fc3-fbad-4087-9ccb-c7387de0cb6a-2,https://biolit.fr/observations/observation-91905fc3-fbad-4087-9ccb-c7387de0cb6a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010888.JPG,,FALSE, +N1,61191,sortie-91905fc3-fbad-4087-9ccb-c7387de0cb6a,https://biolit.fr/sorties/sortie-91905fc3-fbad-4087-9ccb-c7387de0cb6a/,Phil,,03/12/2016,13.000005,13.0:15,47.800276000000,-4.171457000000,,Loctudy - Finistère,55070,observation-91905fc3-fbad-4087-9ccb-c7387de0cb6a-3,https://biolit.fr/observations/observation-91905fc3-fbad-4087-9ccb-c7387de0cb6a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010891.JPG,,FALSE, +N1,61191,sortie-91905fc3-fbad-4087-9ccb-c7387de0cb6a,https://biolit.fr/sorties/sortie-91905fc3-fbad-4087-9ccb-c7387de0cb6a/,Phil,,03/12/2016,13.000005,13.0:15,47.800276000000,-4.171457000000,,Loctudy - Finistère,55072,observation-91905fc3-fbad-4087-9ccb-c7387de0cb6a-4,https://biolit.fr/observations/observation-91905fc3-fbad-4087-9ccb-c7387de0cb6a-4/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/P1010894.JPG,,TRUE, +N1,61191,sortie-91905fc3-fbad-4087-9ccb-c7387de0cb6a,https://biolit.fr/sorties/sortie-91905fc3-fbad-4087-9ccb-c7387de0cb6a/,Phil,,03/12/2016,13.000005,13.0:15,47.800276000000,-4.171457000000,,Loctudy - Finistère,55074,observation-91905fc3-fbad-4087-9ccb-c7387de0cb6a-5,https://biolit.fr/observations/observation-91905fc3-fbad-4087-9ccb-c7387de0cb6a-5/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/P1010906.JPG,,TRUE, +N1,61191,sortie-91905fc3-fbad-4087-9ccb-c7387de0cb6a,https://biolit.fr/sorties/sortie-91905fc3-fbad-4087-9ccb-c7387de0cb6a/,Phil,,03/12/2016,13.000005,13.0:15,47.800276000000,-4.171457000000,,Loctudy - Finistère,55076,observation-91905fc3-fbad-4087-9ccb-c7387de0cb6a-6,https://biolit.fr/observations/observation-91905fc3-fbad-4087-9ccb-c7387de0cb6a-6/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/P1010900.JPG,,TRUE, +N1,61191,sortie-91905fc3-fbad-4087-9ccb-c7387de0cb6a,https://biolit.fr/sorties/sortie-91905fc3-fbad-4087-9ccb-c7387de0cb6a/,Phil,,03/12/2016,13.000005,13.0:15,47.800276000000,-4.171457000000,,Loctudy - Finistère,55078,observation-91905fc3-fbad-4087-9ccb-c7387de0cb6a-7,https://biolit.fr/observations/observation-91905fc3-fbad-4087-9ccb-c7387de0cb6a-7/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/P1010907.JPG,,TRUE, +N1,61192,sortie-f6fe9dbf-4131-44fa-a21d-1069f6a68ea2,https://biolit.fr/sorties/sortie-f6fe9dbf-4131-44fa-a21d-1069f6a68ea2/,Phil,,3/14/2016 0:00,15.0000000,15.0:45,47.791408000000,-4.324965000000,,Penmarc'h - Finistère,55080,observation-f6fe9dbf-4131-44fa-a21d-1069f6a68ea2,https://biolit.fr/observations/observation-f6fe9dbf-4131-44fa-a21d-1069f6a68ea2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020206.JPG,,FALSE, +N1,61192,sortie-f6fe9dbf-4131-44fa-a21d-1069f6a68ea2,https://biolit.fr/sorties/sortie-f6fe9dbf-4131-44fa-a21d-1069f6a68ea2/,Phil,,3/14/2016 0:00,15.0000000,15.0:45,47.791408000000,-4.324965000000,,Penmarc'h - Finistère,55082,observation-f6fe9dbf-4131-44fa-a21d-1069f6a68ea2-2,https://biolit.fr/observations/observation-f6fe9dbf-4131-44fa-a21d-1069f6a68ea2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020215.JPG,,FALSE, +N1,61192,sortie-f6fe9dbf-4131-44fa-a21d-1069f6a68ea2,https://biolit.fr/sorties/sortie-f6fe9dbf-4131-44fa-a21d-1069f6a68ea2/,Phil,,3/14/2016 0:00,15.0000000,15.0:45,47.791408000000,-4.324965000000,,Penmarc'h - Finistère,55084,observation-f6fe9dbf-4131-44fa-a21d-1069f6a68ea2-3,https://biolit.fr/observations/observation-f6fe9dbf-4131-44fa-a21d-1069f6a68ea2-3/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020222.JPG,,TRUE, +N1,61192,sortie-f6fe9dbf-4131-44fa-a21d-1069f6a68ea2,https://biolit.fr/sorties/sortie-f6fe9dbf-4131-44fa-a21d-1069f6a68ea2/,Phil,,3/14/2016 0:00,15.0000000,15.0:45,47.791408000000,-4.324965000000,,Penmarc'h - Finistère,55086,observation-f6fe9dbf-4131-44fa-a21d-1069f6a68ea2-4,https://biolit.fr/observations/observation-f6fe9dbf-4131-44fa-a21d-1069f6a68ea2-4/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1020231.JPG,,TRUE, +N1,61193,sortie-52f2cddf-dcb4-4e77-95b5-74c8555bff2d,https://biolit.fr/sorties/sortie-52f2cddf-dcb4-4e77-95b5-74c8555bff2d/,Phil,,03/12/2016,13.0000000,13.000005,47.803535000000,-4.177575000000,,Loctudy - Finistère,55088,observation-52f2cddf-dcb4-4e77-95b5-74c8555bff2d,https://biolit.fr/observations/observation-52f2cddf-dcb4-4e77-95b5-74c8555bff2d/,Idotea balthica,Idotée de la Baltique,,https://biolit.fr/wp-content/uploads/2023/07/P1010865.JPG,,TRUE, +N1,61193,sortie-52f2cddf-dcb4-4e77-95b5-74c8555bff2d,https://biolit.fr/sorties/sortie-52f2cddf-dcb4-4e77-95b5-74c8555bff2d/,Phil,,03/12/2016,13.0000000,13.000005,47.803535000000,-4.177575000000,,Loctudy - Finistère,55090,observation-52f2cddf-dcb4-4e77-95b5-74c8555bff2d-2,https://biolit.fr/observations/observation-52f2cddf-dcb4-4e77-95b5-74c8555bff2d-2/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1010879.JPG,,TRUE, +N1,61193,sortie-52f2cddf-dcb4-4e77-95b5-74c8555bff2d,https://biolit.fr/sorties/sortie-52f2cddf-dcb4-4e77-95b5-74c8555bff2d/,Phil,,03/12/2016,13.0000000,13.000005,47.803535000000,-4.177575000000,,Loctudy - Finistère,55092,observation-52f2cddf-dcb4-4e77-95b5-74c8555bff2d-3,https://biolit.fr/observations/observation-52f2cddf-dcb4-4e77-95b5-74c8555bff2d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010877.JPG,,FALSE, +N1,61193,sortie-52f2cddf-dcb4-4e77-95b5-74c8555bff2d,https://biolit.fr/sorties/sortie-52f2cddf-dcb4-4e77-95b5-74c8555bff2d/,Phil,,03/12/2016,13.0000000,13.000005,47.803535000000,-4.177575000000,,Loctudy - Finistère,55094,observation-52f2cddf-dcb4-4e77-95b5-74c8555bff2d-4,https://biolit.fr/observations/observation-52f2cddf-dcb4-4e77-95b5-74c8555bff2d-4/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/P1010876.JPG,,TRUE, +N1,61194,sortie-fe3d4106-e712-465a-80a1-fdede583e2fd,https://biolit.fr/sorties/sortie-fe3d4106-e712-465a-80a1-fdede583e2fd/,Phil,,3/13/2016 0:00,16.0000000,16.0:55,47.895143000000,-3.969742000000,,La Forêt-Fouesnant - Finistère,55096,observation-fe3d4106-e712-465a-80a1-fdede583e2fd,https://biolit.fr/observations/observation-fe3d4106-e712-465a-80a1-fdede583e2fd/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020193.JPG,,TRUE, +N1,61194,sortie-fe3d4106-e712-465a-80a1-fdede583e2fd,https://biolit.fr/sorties/sortie-fe3d4106-e712-465a-80a1-fdede583e2fd/,Phil,,3/13/2016 0:00,16.0000000,16.0:55,47.895143000000,-3.969742000000,,La Forêt-Fouesnant - Finistère,55098,observation-fe3d4106-e712-465a-80a1-fdede583e2fd-2,https://biolit.fr/observations/observation-fe3d4106-e712-465a-80a1-fdede583e2fd-2/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020195.JPG,,TRUE, +N1,61195,sortie-4a552ccd-a2cc-4357-a031-83a94df24973,https://biolit.fr/sorties/sortie-4a552ccd-a2cc-4357-a031-83a94df24973/,Phil,,03/06/2016,12.0000000,12.000005,48.151440000000,-4.274308000000,,Ploeven - Finistère,55100,observation-4a552ccd-a2cc-4357-a031-83a94df24973,https://biolit.fr/observations/observation-4a552ccd-a2cc-4357-a031-83a94df24973/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1010829.JPG,,TRUE, +N1,61195,sortie-4a552ccd-a2cc-4357-a031-83a94df24973,https://biolit.fr/sorties/sortie-4a552ccd-a2cc-4357-a031-83a94df24973/,Phil,,03/06/2016,12.0000000,12.000005,48.151440000000,-4.274308000000,,Ploeven - Finistère,55102,observation-4a552ccd-a2cc-4357-a031-83a94df24973-2,https://biolit.fr/observations/observation-4a552ccd-a2cc-4357-a031-83a94df24973-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1010830.JPG,,TRUE, +N1,61195,sortie-4a552ccd-a2cc-4357-a031-83a94df24973,https://biolit.fr/sorties/sortie-4a552ccd-a2cc-4357-a031-83a94df24973/,Phil,,03/06/2016,12.0000000,12.000005,48.151440000000,-4.274308000000,,Ploeven - Finistère,55104,observation-4a552ccd-a2cc-4357-a031-83a94df24973-3,https://biolit.fr/observations/observation-4a552ccd-a2cc-4357-a031-83a94df24973-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1010834.JPG,,TRUE, +N1,61195,sortie-4a552ccd-a2cc-4357-a031-83a94df24973,https://biolit.fr/sorties/sortie-4a552ccd-a2cc-4357-a031-83a94df24973/,Phil,,03/06/2016,12.0000000,12.000005,48.151440000000,-4.274308000000,,Ploeven - Finistère,55106,observation-4a552ccd-a2cc-4357-a031-83a94df24973-4,https://biolit.fr/observations/observation-4a552ccd-a2cc-4357-a031-83a94df24973-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010824.JPG,,FALSE, +N1,61196,sortie-bf97510f-13cc-4428-8401-d174bd2f5afb,https://biolit.fr/sorties/sortie-bf97510f-13cc-4428-8401-d174bd2f5afb/,Phil,,03/12/2016,12.0:55,13.0000000,47.798546000000,-4.183589000000,,Loctudy - Finistère,55108,observation-bf97510f-13cc-4428-8401-d174bd2f5afb,https://biolit.fr/observations/observation-bf97510f-13cc-4428-8401-d174bd2f5afb/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010862.JPG,,FALSE, +N1,61196,sortie-bf97510f-13cc-4428-8401-d174bd2f5afb,https://biolit.fr/sorties/sortie-bf97510f-13cc-4428-8401-d174bd2f5afb/,Phil,,03/12/2016,12.0:55,13.0000000,47.798546000000,-4.183589000000,,Loctudy - Finistère,55110,observation-bf97510f-13cc-4428-8401-d174bd2f5afb-2,https://biolit.fr/observations/observation-bf97510f-13cc-4428-8401-d174bd2f5afb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010860.JPG,,FALSE, +N1,61196,sortie-bf97510f-13cc-4428-8401-d174bd2f5afb,https://biolit.fr/sorties/sortie-bf97510f-13cc-4428-8401-d174bd2f5afb/,Phil,,03/12/2016,12.0:55,13.0000000,47.798546000000,-4.183589000000,,Loctudy - Finistère,55112,observation-bf97510f-13cc-4428-8401-d174bd2f5afb-3,https://biolit.fr/observations/observation-bf97510f-13cc-4428-8401-d174bd2f5afb-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1010858.JPG,,TRUE, +N1,61197,sortie-65b0a9c0-4874-4fe0-91ee-3d78616d1c91,https://biolit.fr/sorties/sortie-65b0a9c0-4874-4fe0-91ee-3d78616d1c91/,Phil,,03/06/2016,11.0:45,11.0000000,48.151136000000,-4.275398000000,,Ploeven - Finistère,55114,observation-65b0a9c0-4874-4fe0-91ee-3d78616d1c91,https://biolit.fr/observations/observation-65b0a9c0-4874-4fe0-91ee-3d78616d1c91/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1010797.JPG,,TRUE, +N1,61197,sortie-65b0a9c0-4874-4fe0-91ee-3d78616d1c91,https://biolit.fr/sorties/sortie-65b0a9c0-4874-4fe0-91ee-3d78616d1c91/,Phil,,03/06/2016,11.0:45,11.0000000,48.151136000000,-4.275398000000,,Ploeven - Finistère,55116,observation-65b0a9c0-4874-4fe0-91ee-3d78616d1c91-2,https://biolit.fr/observations/observation-65b0a9c0-4874-4fe0-91ee-3d78616d1c91-2/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1010792.JPG,,TRUE, +N1,61197,sortie-65b0a9c0-4874-4fe0-91ee-3d78616d1c91,https://biolit.fr/sorties/sortie-65b0a9c0-4874-4fe0-91ee-3d78616d1c91/,Phil,,03/06/2016,11.0:45,11.0000000,48.151136000000,-4.275398000000,,Ploeven - Finistère,55118,observation-65b0a9c0-4874-4fe0-91ee-3d78616d1c91-3,https://biolit.fr/observations/observation-65b0a9c0-4874-4fe0-91ee-3d78616d1c91-3/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1010810.JPG,,TRUE, +N1,61198,sortie-23131739-6bfd-49ff-9c86-0890084ff8a3,https://biolit.fr/sorties/sortie-23131739-6bfd-49ff-9c86-0890084ff8a3/,Phil,,2/21/2016 0:00,12.0:15,12.0:25,47.834091000000,-4.176508000000,,Loctudy - Finistère,55120,observation-23131739-6bfd-49ff-9c86-0890084ff8a3,https://biolit.fr/observations/observation-23131739-6bfd-49ff-9c86-0890084ff8a3/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/P1010376.JPG,,TRUE, +N1,61198,sortie-23131739-6bfd-49ff-9c86-0890084ff8a3,https://biolit.fr/sorties/sortie-23131739-6bfd-49ff-9c86-0890084ff8a3/,Phil,,2/21/2016 0:00,12.0:15,12.0:25,47.834091000000,-4.176508000000,,Loctudy - Finistère,55122,observation-23131739-6bfd-49ff-9c86-0890084ff8a3-2,https://biolit.fr/observations/observation-23131739-6bfd-49ff-9c86-0890084ff8a3-2/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/P1010417.JPG,,TRUE, +N1,61198,sortie-23131739-6bfd-49ff-9c86-0890084ff8a3,https://biolit.fr/sorties/sortie-23131739-6bfd-49ff-9c86-0890084ff8a3/,Phil,,2/21/2016 0:00,12.0:15,12.0:25,47.834091000000,-4.176508000000,,Loctudy - Finistère,55124,observation-23131739-6bfd-49ff-9c86-0890084ff8a3-3,https://biolit.fr/observations/observation-23131739-6bfd-49ff-9c86-0890084ff8a3-3/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/P1010425.JPG,,TRUE, +N1,61198,sortie-23131739-6bfd-49ff-9c86-0890084ff8a3,https://biolit.fr/sorties/sortie-23131739-6bfd-49ff-9c86-0890084ff8a3/,Phil,,2/21/2016 0:00,12.0:15,12.0:25,47.834091000000,-4.176508000000,,Loctudy - Finistère,55126,observation-23131739-6bfd-49ff-9c86-0890084ff8a3-4,https://biolit.fr/observations/observation-23131739-6bfd-49ff-9c86-0890084ff8a3-4/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/P1010535.JPG,,TRUE, +N1,61199,sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652,https://biolit.fr/sorties/sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652/,Ville de Marseille KORSEC CE2-CM1,,1/25/2016 0:00,9.0000000,10.0000000,43.26786600000,5.370399000000,,Base nautique du Roucas,55128,observation-f93cb4d4-468d-4473-8828-d94c5ca0a652,https://biolit.fr/observations/observation-f93cb4d4-468d-4473-8828-d94c5ca0a652/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/coquille2-scaled.jpg,,TRUE, +N1,61199,sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652,https://biolit.fr/sorties/sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652/,Ville de Marseille KORSEC CE2-CM1,,1/25/2016 0:00,9.0000000,10.0000000,43.26786600000,5.370399000000,,Base nautique du Roucas,55130,observation-f93cb4d4-468d-4473-8828-d94c5ca0a652-2,https://biolit.fr/observations/observation-f93cb4d4-468d-4473-8828-d94c5ca0a652-2/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/coquille3-scaled.jpg,,TRUE, +N1,61199,sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652,https://biolit.fr/sorties/sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652/,Ville de Marseille KORSEC CE2-CM1,,1/25/2016 0:00,9.0000000,10.0000000,43.26786600000,5.370399000000,,Base nautique du Roucas,55132,observation-f93cb4d4-468d-4473-8828-d94c5ca0a652-3,https://biolit.fr/observations/observation-f93cb4d4-468d-4473-8828-d94c5ca0a652-3/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/coquille4-scaled.jpg,,TRUE, +N1,61199,sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652,https://biolit.fr/sorties/sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652/,Ville de Marseille KORSEC CE2-CM1,,1/25/2016 0:00,9.0000000,10.0000000,43.26786600000,5.370399000000,,Base nautique du Roucas,55134,observation-f93cb4d4-468d-4473-8828-d94c5ca0a652-4,https://biolit.fr/observations/observation-f93cb4d4-468d-4473-8828-d94c5ca0a652-4/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/coquille5-scaled.jpg,,TRUE, +N1,61199,sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652,https://biolit.fr/sorties/sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652/,Ville de Marseille KORSEC CE2-CM1,,1/25/2016 0:00,9.0000000,10.0000000,43.26786600000,5.370399000000,,Base nautique du Roucas,55136,observation-f93cb4d4-468d-4473-8828-d94c5ca0a652-5,https://biolit.fr/observations/observation-f93cb4d4-468d-4473-8828-d94c5ca0a652-5/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/coquille6-scaled.jpg,,TRUE, +N1,61199,sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652,https://biolit.fr/sorties/sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652/,Ville de Marseille KORSEC CE2-CM1,,1/25/2016 0:00,9.0000000,10.0000000,43.26786600000,5.370399000000,,Base nautique du Roucas,55138,observation-f93cb4d4-468d-4473-8828-d94c5ca0a652-6,https://biolit.fr/observations/observation-f93cb4d4-468d-4473-8828-d94c5ca0a652-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/coquille7-scaled.jpg,,FALSE, +N1,61199,sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652,https://biolit.fr/sorties/sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652/,Ville de Marseille KORSEC CE2-CM1,,1/25/2016 0:00,9.0000000,10.0000000,43.26786600000,5.370399000000,,Base nautique du Roucas,55140,observation-f93cb4d4-468d-4473-8828-d94c5ca0a652-7,https://biolit.fr/observations/observation-f93cb4d4-468d-4473-8828-d94c5ca0a652-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/coquille8-scaled.jpg,,FALSE, +N1,61199,sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652,https://biolit.fr/sorties/sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652/,Ville de Marseille KORSEC CE2-CM1,,1/25/2016 0:00,9.0000000,10.0000000,43.26786600000,5.370399000000,,Base nautique du Roucas,55142,observation-f93cb4d4-468d-4473-8828-d94c5ca0a652-8,https://biolit.fr/observations/observation-f93cb4d4-468d-4473-8828-d94c5ca0a652-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/coquille9-scaled.jpg,,FALSE, +N1,61199,sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652,https://biolit.fr/sorties/sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652/,Ville de Marseille KORSEC CE2-CM1,,1/25/2016 0:00,9.0000000,10.0000000,43.26786600000,5.370399000000,,Base nautique du Roucas,55144,observation-f93cb4d4-468d-4473-8828-d94c5ca0a652-9,https://biolit.fr/observations/observation-f93cb4d4-468d-4473-8828-d94c5ca0a652-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/coquille10-scaled.jpg,,FALSE, +N1,61200,sortie-db29ff00-1a5a-4265-b92a-91587400a903,https://biolit.fr/sorties/sortie-db29ff00-1a5a-4265-b92a-91587400a903/,Ville de Marseille KORSEC CE2-CM1,,1/25/2016 0:00,9.0000000,10.0000000,43.26786600000,5.370420000000,,Base nautique du Roucas,55146,observation-db29ff00-1a5a-4265-b92a-91587400a903,https://biolit.fr/observations/observation-db29ff00-1a5a-4265-b92a-91587400a903/,,,,,,FALSE, +N1,61200,sortie-db29ff00-1a5a-4265-b92a-91587400a903,https://biolit.fr/sorties/sortie-db29ff00-1a5a-4265-b92a-91587400a903/,Ville de Marseille KORSEC CE2-CM1,,1/25/2016 0:00,9.0000000,10.0000000,43.26786600000,5.370420000000,,Base nautique du Roucas,55147,observation-db29ff00-1a5a-4265-b92a-91587400a903-2,https://biolit.fr/observations/observation-db29ff00-1a5a-4265-b92a-91587400a903-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/concomre de mer-scaled.jpg,,FALSE, +N1,61200,sortie-db29ff00-1a5a-4265-b92a-91587400a903,https://biolit.fr/sorties/sortie-db29ff00-1a5a-4265-b92a-91587400a903/,Ville de Marseille KORSEC CE2-CM1,,1/25/2016 0:00,9.0000000,10.0000000,43.26786600000,5.370420000000,,Base nautique du Roucas,55149,observation-db29ff00-1a5a-4265-b92a-91587400a903-3,https://biolit.fr/observations/observation-db29ff00-1a5a-4265-b92a-91587400a903-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/coquille1-scaled.jpg,,FALSE, +N1,61201,sortie-9982cca7-6efa-4c94-ae62-cddd76c1af70,https://biolit.fr/sorties/sortie-9982cca7-6efa-4c94-ae62-cddd76c1af70/,Phil,,03/06/2016,11.0:35,11.0000000,48.151184000000,-4.273070000000,,Ploeven - Finistère,55151,observation-9982cca7-6efa-4c94-ae62-cddd76c1af70,https://biolit.fr/observations/observation-9982cca7-6efa-4c94-ae62-cddd76c1af70/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010770.JPG,,FALSE, +N1,61201,sortie-9982cca7-6efa-4c94-ae62-cddd76c1af70,https://biolit.fr/sorties/sortie-9982cca7-6efa-4c94-ae62-cddd76c1af70/,Phil,,03/06/2016,11.0:35,11.0000000,48.151184000000,-4.273070000000,,Ploeven - Finistère,55153,observation-9982cca7-6efa-4c94-ae62-cddd76c1af70-2,https://biolit.fr/observations/observation-9982cca7-6efa-4c94-ae62-cddd76c1af70-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010758.JPG,,FALSE, +N1,61201,sortie-9982cca7-6efa-4c94-ae62-cddd76c1af70,https://biolit.fr/sorties/sortie-9982cca7-6efa-4c94-ae62-cddd76c1af70/,Phil,,03/06/2016,11.0:35,11.0000000,48.151184000000,-4.273070000000,,Ploeven - Finistère,55155,observation-9982cca7-6efa-4c94-ae62-cddd76c1af70-3,https://biolit.fr/observations/observation-9982cca7-6efa-4c94-ae62-cddd76c1af70-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010764.JPG,,FALSE, +N1,61202,sortie-f4c0045d-f4be-4d39-a586-38ab9239184f,https://biolit.fr/sorties/sortie-f4c0045d-f4be-4d39-a586-38ab9239184f/,Phil,,03/06/2016,12.000005,12.0000000,48.153736000000,-4.27592200000,,Plomodiern - Finistère,55157,observation-f4c0045d-f4be-4d39-a586-38ab9239184f,https://biolit.fr/observations/observation-f4c0045d-f4be-4d39-a586-38ab9239184f/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/P1010746.JPG,,TRUE, +N1,61202,sortie-f4c0045d-f4be-4d39-a586-38ab9239184f,https://biolit.fr/sorties/sortie-f4c0045d-f4be-4d39-a586-38ab9239184f/,Phil,,03/06/2016,12.000005,12.0000000,48.153736000000,-4.27592200000,,Plomodiern - Finistère,55159,observation-f4c0045d-f4be-4d39-a586-38ab9239184f-2,https://biolit.fr/observations/observation-f4c0045d-f4be-4d39-a586-38ab9239184f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010839.JPG,,FALSE, +N1,61202,sortie-f4c0045d-f4be-4d39-a586-38ab9239184f,https://biolit.fr/sorties/sortie-f4c0045d-f4be-4d39-a586-38ab9239184f/,Phil,,03/06/2016,12.000005,12.0000000,48.153736000000,-4.27592200000,,Plomodiern - Finistère,55161,observation-f4c0045d-f4be-4d39-a586-38ab9239184f-3,https://biolit.fr/observations/observation-f4c0045d-f4be-4d39-a586-38ab9239184f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010840.JPG,,FALSE, +N1,61203,sortie-adb5bf18-989b-4c6d-a3bb-7de1fea9ddba,https://biolit.fr/sorties/sortie-adb5bf18-989b-4c6d-a3bb-7de1fea9ddba/,Phil,,03/06/2016,11.0000000,11.0:35,48.1508920000,-4.273338000000,,Ploeven - Finistère,55163,observation-adb5bf18-989b-4c6d-a3bb-7de1fea9ddba,https://biolit.fr/observations/observation-adb5bf18-989b-4c6d-a3bb-7de1fea9ddba/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/P1010739.JPG,,TRUE, +N1,61203,sortie-adb5bf18-989b-4c6d-a3bb-7de1fea9ddba,https://biolit.fr/sorties/sortie-adb5bf18-989b-4c6d-a3bb-7de1fea9ddba/,Phil,,03/06/2016,11.0000000,11.0:35,48.1508920000,-4.273338000000,,Ploeven - Finistère,55165,observation-adb5bf18-989b-4c6d-a3bb-7de1fea9ddba-2,https://biolit.fr/observations/observation-adb5bf18-989b-4c6d-a3bb-7de1fea9ddba-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1010734.JPG,,TRUE, +N1,61203,sortie-adb5bf18-989b-4c6d-a3bb-7de1fea9ddba,https://biolit.fr/sorties/sortie-adb5bf18-989b-4c6d-a3bb-7de1fea9ddba/,Phil,,03/06/2016,11.0000000,11.0:35,48.1508920000,-4.273338000000,,Ploeven - Finistère,55167,observation-adb5bf18-989b-4c6d-a3bb-7de1fea9ddba-3,https://biolit.fr/observations/observation-adb5bf18-989b-4c6d-a3bb-7de1fea9ddba-3/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/P1010729.JPG,,TRUE, +N1,61203,sortie-adb5bf18-989b-4c6d-a3bb-7de1fea9ddba,https://biolit.fr/sorties/sortie-adb5bf18-989b-4c6d-a3bb-7de1fea9ddba/,Phil,,03/06/2016,11.0000000,11.0:35,48.1508920000,-4.273338000000,,Ploeven - Finistère,55169,observation-adb5bf18-989b-4c6d-a3bb-7de1fea9ddba-4,https://biolit.fr/observations/observation-adb5bf18-989b-4c6d-a3bb-7de1fea9ddba-4/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/P1010725-scaled.jpg,,TRUE, +N1,61204,sortie-69170a44-9488-40ca-8aac-43dbf9acbd33,https://biolit.fr/sorties/sortie-69170a44-9488-40ca-8aac-43dbf9acbd33/,Phil,,1/24/2016 0:00,17.0000000,17.000005,47.790949000000,-4.249434000000,,Léchiagat - Finistère,55171,observation-69170a44-9488-40ca-8aac-43dbf9acbd33,https://biolit.fr/observations/observation-69170a44-9488-40ca-8aac-43dbf9acbd33/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160124_170134.jpg,,FALSE, +N1,61205,sortie-9bb2327d-a535-4207-aecf-ca780515cf85,https://biolit.fr/sorties/sortie-9bb2327d-a535-4207-aecf-ca780515cf85/,Phil,,03/06/2016,11.0:25,11.0000000,48.150703000000,-4.274540000000,,Ploeven - Finistère,55173,observation-9bb2327d-a535-4207-aecf-ca780515cf85,https://biolit.fr/observations/observation-9bb2327d-a535-4207-aecf-ca780515cf85/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P1010718.JPG,,TRUE, +N1,61205,sortie-9bb2327d-a535-4207-aecf-ca780515cf85,https://biolit.fr/sorties/sortie-9bb2327d-a535-4207-aecf-ca780515cf85/,Phil,,03/06/2016,11.0:25,11.0000000,48.150703000000,-4.274540000000,,Ploeven - Finistère,55175,observation-9bb2327d-a535-4207-aecf-ca780515cf85-2,https://biolit.fr/observations/observation-9bb2327d-a535-4207-aecf-ca780515cf85-2/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P1010714.JPG,,TRUE, +N1,61205,sortie-9bb2327d-a535-4207-aecf-ca780515cf85,https://biolit.fr/sorties/sortie-9bb2327d-a535-4207-aecf-ca780515cf85/,Phil,,03/06/2016,11.0:25,11.0000000,48.150703000000,-4.274540000000,,Ploeven - Finistère,55177,observation-9bb2327d-a535-4207-aecf-ca780515cf85-3,https://biolit.fr/observations/observation-9bb2327d-a535-4207-aecf-ca780515cf85-3/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P1010722.JPG,,TRUE, +N1,61206,sortie-6ec1b9be-a2e5-45fc-9414-99d95accc066,https://biolit.fr/sorties/sortie-6ec1b9be-a2e5-45fc-9414-99d95accc066/,Phil,,03/06/2016,11.0000000,11.0000000,48.150604000000,-4.275986000000,,Ploeven - Finistère,55179,observation-6ec1b9be-a2e5-45fc-9414-99d95accc066,https://biolit.fr/observations/observation-6ec1b9be-a2e5-45fc-9414-99d95accc066/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010694.JPG,,FALSE, +N1,61206,sortie-6ec1b9be-a2e5-45fc-9414-99d95accc066,https://biolit.fr/sorties/sortie-6ec1b9be-a2e5-45fc-9414-99d95accc066/,Phil,,03/06/2016,11.0000000,11.0000000,48.150604000000,-4.275986000000,,Ploeven - Finistère,55181,observation-6ec1b9be-a2e5-45fc-9414-99d95accc066-2,https://biolit.fr/observations/observation-6ec1b9be-a2e5-45fc-9414-99d95accc066-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010695.JPG,,FALSE, +N1,61206,sortie-6ec1b9be-a2e5-45fc-9414-99d95accc066,https://biolit.fr/sorties/sortie-6ec1b9be-a2e5-45fc-9414-99d95accc066/,Phil,,03/06/2016,11.0000000,11.0000000,48.150604000000,-4.275986000000,,Ploeven - Finistère,55183,observation-6ec1b9be-a2e5-45fc-9414-99d95accc066-3,https://biolit.fr/observations/observation-6ec1b9be-a2e5-45fc-9414-99d95accc066-3/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/P1010675.JPG,,TRUE, +N1,61206,sortie-6ec1b9be-a2e5-45fc-9414-99d95accc066,https://biolit.fr/sorties/sortie-6ec1b9be-a2e5-45fc-9414-99d95accc066/,Phil,,03/06/2016,11.0000000,11.0000000,48.150604000000,-4.275986000000,,Ploeven - Finistère,55185,observation-6ec1b9be-a2e5-45fc-9414-99d95accc066-4,https://biolit.fr/observations/observation-6ec1b9be-a2e5-45fc-9414-99d95accc066-4/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1010678.JPG,,TRUE, +N1,61206,sortie-6ec1b9be-a2e5-45fc-9414-99d95accc066,https://biolit.fr/sorties/sortie-6ec1b9be-a2e5-45fc-9414-99d95accc066/,Phil,,03/06/2016,11.0000000,11.0000000,48.150604000000,-4.275986000000,,Ploeven - Finistère,55187,observation-6ec1b9be-a2e5-45fc-9414-99d95accc066-5,https://biolit.fr/observations/observation-6ec1b9be-a2e5-45fc-9414-99d95accc066-5/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1010683.JPG,,TRUE, +N1,61206,sortie-6ec1b9be-a2e5-45fc-9414-99d95accc066,https://biolit.fr/sorties/sortie-6ec1b9be-a2e5-45fc-9414-99d95accc066/,Phil,,03/06/2016,11.0000000,11.0000000,48.150604000000,-4.275986000000,,Ploeven - Finistère,55189,observation-6ec1b9be-a2e5-45fc-9414-99d95accc066-6,https://biolit.fr/observations/observation-6ec1b9be-a2e5-45fc-9414-99d95accc066-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010702.JPG,,FALSE, +N1,61206,sortie-6ec1b9be-a2e5-45fc-9414-99d95accc066,https://biolit.fr/sorties/sortie-6ec1b9be-a2e5-45fc-9414-99d95accc066/,Phil,,03/06/2016,11.0000000,11.0000000,48.150604000000,-4.275986000000,,Ploeven - Finistère,55191,observation-6ec1b9be-a2e5-45fc-9414-99d95accc066-7,https://biolit.fr/observations/observation-6ec1b9be-a2e5-45fc-9414-99d95accc066-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010705-scaled.jpg,,FALSE, +N1,61207,sortie-71c90c82-ec0c-4012-805f-b31d83cd24fe,https://biolit.fr/sorties/sortie-71c90c82-ec0c-4012-805f-b31d83cd24fe/,Ecole de la mer,,03/05/2016,13.0:15,16.0:45,16.327839000000,-61.319993000000,,"Le Moule, Ansalabuelle",55193,observation-71c90c82-ec0c-4012-805f-b31d83cd24fe,https://biolit.fr/observations/observation-71c90c82-ec0c-4012-805f-b31d83cd24fe/,Megaptera novaeangliae,Baleine à bosse,,https://biolit.fr/wp-content/uploads/2023/07/4-IMG_8326-scaled.jpg,,TRUE, +N1,61208,sortie-b1ebb2dc-7999-4b78-85b6-14a53cf0f11e,https://biolit.fr/sorties/sortie-b1ebb2dc-7999-4b78-85b6-14a53cf0f11e/,Phil,,03/06/2016,11.0000000,11.0:15,48.150759000000,-4.275707000000,,Ploeven - Finistère,55195,observation-b1ebb2dc-7999-4b78-85b6-14a53cf0f11e,https://biolit.fr/observations/observation-b1ebb2dc-7999-4b78-85b6-14a53cf0f11e/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1010659.JPG,,TRUE, +N1,61208,sortie-b1ebb2dc-7999-4b78-85b6-14a53cf0f11e,https://biolit.fr/sorties/sortie-b1ebb2dc-7999-4b78-85b6-14a53cf0f11e/,Phil,,03/06/2016,11.0000000,11.0:15,48.150759000000,-4.275707000000,,Ploeven - Finistère,55197,observation-b1ebb2dc-7999-4b78-85b6-14a53cf0f11e-2,https://biolit.fr/observations/observation-b1ebb2dc-7999-4b78-85b6-14a53cf0f11e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010663.JPG,,FALSE, +N1,61208,sortie-b1ebb2dc-7999-4b78-85b6-14a53cf0f11e,https://biolit.fr/sorties/sortie-b1ebb2dc-7999-4b78-85b6-14a53cf0f11e/,Phil,,03/06/2016,11.0000000,11.0:15,48.150759000000,-4.275707000000,,Ploeven - Finistère,55199,observation-b1ebb2dc-7999-4b78-85b6-14a53cf0f11e-3,https://biolit.fr/observations/observation-b1ebb2dc-7999-4b78-85b6-14a53cf0f11e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010673.JPG,,FALSE, +N1,61208,sortie-b1ebb2dc-7999-4b78-85b6-14a53cf0f11e,https://biolit.fr/sorties/sortie-b1ebb2dc-7999-4b78-85b6-14a53cf0f11e/,Phil,,03/06/2016,11.0000000,11.0:15,48.150759000000,-4.275707000000,,Ploeven - Finistère,55201,observation-b1ebb2dc-7999-4b78-85b6-14a53cf0f11e-4,https://biolit.fr/observations/observation-b1ebb2dc-7999-4b78-85b6-14a53cf0f11e-4/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P1010666.JPG,,TRUE, +N1,61209,sortie-e2aa4754-4300-439a-9737-c8489e88762c,https://biolit.fr/sorties/sortie-e2aa4754-4300-439a-9737-c8489e88762c/,Lycée Langevin L'équipe de Salah,,2/22/2016 0:00,15.0000000,16.0000000,43.421579000000,5.06075400000,,base de tolon,55203,observation-e2aa4754-4300-439a-9737-c8489e88762c,https://biolit.fr/observations/observation-e2aa4754-4300-439a-9737-c8489e88762c/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160222_144642-scaled.jpg,,FALSE, +N1,61209,sortie-e2aa4754-4300-439a-9737-c8489e88762c,https://biolit.fr/sorties/sortie-e2aa4754-4300-439a-9737-c8489e88762c/,Lycée Langevin L'équipe de Salah,,2/22/2016 0:00,15.0000000,16.0000000,43.421579000000,5.06075400000,,base de tolon,55205,observation-e2aa4754-4300-439a-9737-c8489e88762c-2,https://biolit.fr/observations/observation-e2aa4754-4300-439a-9737-c8489e88762c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160222_144706-scaled.jpg,,FALSE, +N1,61209,sortie-e2aa4754-4300-439a-9737-c8489e88762c,https://biolit.fr/sorties/sortie-e2aa4754-4300-439a-9737-c8489e88762c/,Lycée Langevin L'équipe de Salah,,2/22/2016 0:00,15.0000000,16.0000000,43.421579000000,5.06075400000,,base de tolon,55207,observation-e2aa4754-4300-439a-9737-c8489e88762c-3,https://biolit.fr/observations/observation-e2aa4754-4300-439a-9737-c8489e88762c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/ege.png,,FALSE, +N1,61209,sortie-e2aa4754-4300-439a-9737-c8489e88762c,https://biolit.fr/sorties/sortie-e2aa4754-4300-439a-9737-c8489e88762c/,Lycée Langevin L'équipe de Salah,,2/22/2016 0:00,15.0000000,16.0000000,43.421579000000,5.06075400000,,base de tolon,55209,observation-e2aa4754-4300-439a-9737-c8489e88762c-4,https://biolit.fr/observations/observation-e2aa4754-4300-439a-9737-c8489e88762c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/laaaaaa.png,,FALSE, +N1,61209,sortie-e2aa4754-4300-439a-9737-c8489e88762c,https://biolit.fr/sorties/sortie-e2aa4754-4300-439a-9737-c8489e88762c/,Lycée Langevin L'équipe de Salah,,2/22/2016 0:00,15.0000000,16.0000000,43.421579000000,5.06075400000,,base de tolon,55211,observation-e2aa4754-4300-439a-9737-c8489e88762c-5,https://biolit.fr/observations/observation-e2aa4754-4300-439a-9737-c8489e88762c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/yooo.png,,FALSE, +N1,61210,sortie-6c102c5a-4d96-4ab9-b949-d98234b3a409,https://biolit.fr/sorties/sortie-6c102c5a-4d96-4ab9-b949-d98234b3a409/,Lycée Langevin Les Moules Asiatiques,,2/22/2016 0:00,14.0000000,16.0000000,43.422971000000,5.060603000000,,Domaine du Tholon,55213,observation-6c102c5a-4d96-4ab9-b949-d98234b3a409,https://biolit.fr/observations/observation-6c102c5a-4d96-4ab9-b949-d98234b3a409/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/biolit 1_0.jpg,,TRUE, +N1,61210,sortie-6c102c5a-4d96-4ab9-b949-d98234b3a409,https://biolit.fr/sorties/sortie-6c102c5a-4d96-4ab9-b949-d98234b3a409/,Lycée Langevin Les Moules Asiatiques,,2/22/2016 0:00,14.0000000,16.0000000,43.422971000000,5.060603000000,,Domaine du Tholon,55215,observation-6c102c5a-4d96-4ab9-b949-d98234b3a409-2,https://biolit.fr/observations/observation-6c102c5a-4d96-4ab9-b949-d98234b3a409-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/biolit 5.jpg,,FALSE, +N1,61210,sortie-6c102c5a-4d96-4ab9-b949-d98234b3a409,https://biolit.fr/sorties/sortie-6c102c5a-4d96-4ab9-b949-d98234b3a409/,Lycée Langevin Les Moules Asiatiques,,2/22/2016 0:00,14.0000000,16.0000000,43.422971000000,5.060603000000,,Domaine du Tholon,55217,observation-6c102c5a-4d96-4ab9-b949-d98234b3a409-3,https://biolit.fr/observations/observation-6c102c5a-4d96-4ab9-b949-d98234b3a409-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/biolit 6.jpg,,FALSE, +N1,61210,sortie-6c102c5a-4d96-4ab9-b949-d98234b3a409,https://biolit.fr/sorties/sortie-6c102c5a-4d96-4ab9-b949-d98234b3a409/,Lycée Langevin Les Moules Asiatiques,,2/22/2016 0:00,14.0000000,16.0000000,43.422971000000,5.060603000000,,Domaine du Tholon,55219,observation-6c102c5a-4d96-4ab9-b949-d98234b3a409-4,https://biolit.fr/observations/observation-6c102c5a-4d96-4ab9-b949-d98234b3a409-4/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/biolit 8_0.jpg,,TRUE, +N1,61210,sortie-6c102c5a-4d96-4ab9-b949-d98234b3a409,https://biolit.fr/sorties/sortie-6c102c5a-4d96-4ab9-b949-d98234b3a409/,Lycée Langevin Les Moules Asiatiques,,2/22/2016 0:00,14.0000000,16.0000000,43.422971000000,5.060603000000,,Domaine du Tholon,55221,observation-6c102c5a-4d96-4ab9-b949-d98234b3a409-5,https://biolit.fr/observations/observation-6c102c5a-4d96-4ab9-b949-d98234b3a409-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/biolit 9.jpg,,FALSE, +N1,61210,sortie-6c102c5a-4d96-4ab9-b949-d98234b3a409,https://biolit.fr/sorties/sortie-6c102c5a-4d96-4ab9-b949-d98234b3a409/,Lycée Langevin Les Moules Asiatiques,,2/22/2016 0:00,14.0000000,16.0000000,43.422971000000,5.060603000000,,Domaine du Tholon,55223,observation-6c102c5a-4d96-4ab9-b949-d98234b3a409-6,https://biolit.fr/observations/observation-6c102c5a-4d96-4ab9-b949-d98234b3a409-6/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/biolit 13.jpg,,TRUE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55225,observation-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/P1060617-scaled.jpg,,TRUE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55227,observation-60aad011-8788-4e04-8111-0aa5aa8a61be-2,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060616-scaled.jpg,,FALSE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55229,observation-60aad011-8788-4e04-8111-0aa5aa8a61be-3,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060620-scaled.jpg,,FALSE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55231,observation-60aad011-8788-4e04-8111-0aa5aa8a61be-4,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060622-scaled.jpg,,FALSE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55233,observation-60aad011-8788-4e04-8111-0aa5aa8a61be-5,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be-5/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/P1060623-scaled.jpg,,TRUE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55235,observation-60aad011-8788-4e04-8111-0aa5aa8a61be-6,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be-6/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/P1060624-scaled.jpg,,TRUE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55237,observation-60aad011-8788-4e04-8111-0aa5aa8a61be-7,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be-7/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1060625-scaled.jpg,,TRUE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55239,observation-60aad011-8788-4e04-8111-0aa5aa8a61be-8,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be-8/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/P1060626-scaled.jpg,,TRUE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55241,observation-60aad011-8788-4e04-8111-0aa5aa8a61be-9,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060663-scaled.jpg,,FALSE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55243,observation-60aad011-8788-4e04-8111-0aa5aa8a61be-10,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be-10/,Limaria hians,Lime bâillante,,https://biolit.fr/wp-content/uploads/2023/07/P1060629-scaled.jpg,,TRUE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55245,observation-60aad011-8788-4e04-8111-0aa5aa8a61be-11,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060630-scaled.jpg,,FALSE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55247,observation-60aad011-8788-4e04-8111-0aa5aa8a61be-12,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be-12/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/P1060642-scaled.jpg,,TRUE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55249,observation-60aad011-8788-4e04-8111-0aa5aa8a61be-13,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060646-scaled.jpg,,FALSE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55251,observation-60aad011-8788-4e04-8111-0aa5aa8a61be-14,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be-14/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/P1060638-scaled.jpg,,TRUE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55253,observation-60aad011-8788-4e04-8111-0aa5aa8a61be-15,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060648-scaled.jpg,,FALSE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55255,observation-60aad011-8788-4e04-8111-0aa5aa8a61be-16,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be-16/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/P1060644-scaled.jpg,,TRUE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55257,observation-60aad011-8788-4e04-8111-0aa5aa8a61be-17,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060657-scaled.jpg,,FALSE, +N1,61212,sortie-4c86e1ff-ab60-4197-806e-6f80e0a5e1ab,https://biolit.fr/sorties/sortie-4c86e1ff-ab60-4197-806e-6f80e0a5e1ab/,Lycée Langevin Claudette,,2/22/2016 0:00,15.0000000,15.0000000,43.420463000000,5.061040000000,,Étang de Berre,55259,observation-4c86e1ff-ab60-4197-806e-6f80e0a5e1ab,https://biolit.fr/observations/observation-4c86e1ff-ab60-4197-806e-6f80e0a5e1ab/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/05/image_2.jpg,,TRUE, +N1,61212,sortie-4c86e1ff-ab60-4197-806e-6f80e0a5e1ab,https://biolit.fr/sorties/sortie-4c86e1ff-ab60-4197-806e-6f80e0a5e1ab/,Lycée Langevin Claudette,,2/22/2016 0:00,15.0000000,15.0000000,43.420463000000,5.061040000000,,Étang de Berre,55260,observation-4c86e1ff-ab60-4197-806e-6f80e0a5e1ab-2,https://biolit.fr/observations/observation-4c86e1ff-ab60-4197-806e-6f80e0a5e1ab-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/image_3.jpg,,FALSE, +N1,61213,sortie-0370af52-a7e6-4e8d-afdb-b0cc9e329bb5,https://biolit.fr/sorties/sortie-0370af52-a7e6-4e8d-afdb-b0cc9e329bb5/,Phil,,03/06/2016,11.0000000,11.000005,48.152946000000,-4.2740500000,,Ploeven - Finistère,55261,observation-0370af52-a7e6-4e8d-afdb-b0cc9e329bb5,https://biolit.fr/observations/observation-0370af52-a7e6-4e8d-afdb-b0cc9e329bb5/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1010628.JPG,,TRUE, +N1,61213,sortie-0370af52-a7e6-4e8d-afdb-b0cc9e329bb5,https://biolit.fr/sorties/sortie-0370af52-a7e6-4e8d-afdb-b0cc9e329bb5/,Phil,,03/06/2016,11.0000000,11.000005,48.152946000000,-4.2740500000,,Ploeven - Finistère,55263,observation-0370af52-a7e6-4e8d-afdb-b0cc9e329bb5-2,https://biolit.fr/observations/observation-0370af52-a7e6-4e8d-afdb-b0cc9e329bb5-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1010633.JPG,,TRUE, +N1,61213,sortie-0370af52-a7e6-4e8d-afdb-b0cc9e329bb5,https://biolit.fr/sorties/sortie-0370af52-a7e6-4e8d-afdb-b0cc9e329bb5/,Phil,,03/06/2016,11.0000000,11.000005,48.152946000000,-4.2740500000,,Ploeven - Finistère,55265,observation-0370af52-a7e6-4e8d-afdb-b0cc9e329bb5-3,https://biolit.fr/observations/observation-0370af52-a7e6-4e8d-afdb-b0cc9e329bb5-3/,Calidris alba,Bécasseau sanderling,,https://biolit.fr/wp-content/uploads/2023/07/P1010653.JPG,,TRUE, +N1,61213,sortie-0370af52-a7e6-4e8d-afdb-b0cc9e329bb5,https://biolit.fr/sorties/sortie-0370af52-a7e6-4e8d-afdb-b0cc9e329bb5/,Phil,,03/06/2016,11.0000000,11.000005,48.152946000000,-4.2740500000,,Ploeven - Finistère,55267,observation-0370af52-a7e6-4e8d-afdb-b0cc9e329bb5-4,https://biolit.fr/observations/observation-0370af52-a7e6-4e8d-afdb-b0cc9e329bb5-4/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1010619.JPG,,TRUE, +N1,61214,sortie-85532d6c-d39d-4e26-837a-f36e6b20a958,https://biolit.fr/sorties/sortie-85532d6c-d39d-4e26-837a-f36e6b20a958/,Phil,,03/06/2016,10.0:45,10.0:55,48.15043200000,-4.276351000000,,Ploeven - Finistère,55269,observation-85532d6c-d39d-4e26-837a-f36e6b20a958,https://biolit.fr/observations/observation-85532d6c-d39d-4e26-837a-f36e6b20a958/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010604.JPG,,FALSE, +N1,61214,sortie-85532d6c-d39d-4e26-837a-f36e6b20a958,https://biolit.fr/sorties/sortie-85532d6c-d39d-4e26-837a-f36e6b20a958/,Phil,,03/06/2016,10.0:45,10.0:55,48.15043200000,-4.276351000000,,Ploeven - Finistère,55271,observation-85532d6c-d39d-4e26-837a-f36e6b20a958-2,https://biolit.fr/observations/observation-85532d6c-d39d-4e26-837a-f36e6b20a958-2/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1010611.JPG,,TRUE, +N1,61214,sortie-85532d6c-d39d-4e26-837a-f36e6b20a958,https://biolit.fr/sorties/sortie-85532d6c-d39d-4e26-837a-f36e6b20a958/,Phil,,03/06/2016,10.0:45,10.0:55,48.15043200000,-4.276351000000,,Ploeven - Finistère,55273,observation-85532d6c-d39d-4e26-837a-f36e6b20a958-3,https://biolit.fr/observations/observation-85532d6c-d39d-4e26-837a-f36e6b20a958-3/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1010614.JPG,,TRUE, +N1,61214,sortie-85532d6c-d39d-4e26-837a-f36e6b20a958,https://biolit.fr/sorties/sortie-85532d6c-d39d-4e26-837a-f36e6b20a958/,Phil,,03/06/2016,10.0:45,10.0:55,48.15043200000,-4.276351000000,,Ploeven - Finistère,55275,observation-85532d6c-d39d-4e26-837a-f36e6b20a958-4,https://biolit.fr/observations/observation-85532d6c-d39d-4e26-837a-f36e6b20a958-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010609.JPG,,FALSE, +N1,61215,sortie-80fe8f9e-d931-4602-913d-acd8ede692a9,https://biolit.fr/sorties/sortie-80fe8f9e-d931-4602-913d-acd8ede692a9/,Lycée Langevin Les Bigorneaux,,2/22/2016 0:00,14.0000000,16.0:15,43.421587000000,5.060821000000,,Etang de berre,55277,observation-80fe8f9e-d931-4602-913d-acd8ede692a9,https://biolit.fr/observations/observation-80fe8f9e-d931-4602-913d-acd8ede692a9/,,,,https://biolit.fr/wp-content/uploads/2023/07/1_0-scaled.jpg,,FALSE, +N1,61215,sortie-80fe8f9e-d931-4602-913d-acd8ede692a9,https://biolit.fr/sorties/sortie-80fe8f9e-d931-4602-913d-acd8ede692a9/,Lycée Langevin Les Bigorneaux,,2/22/2016 0:00,14.0000000,16.0:15,43.421587000000,5.060821000000,,Etang de berre,55279,observation-80fe8f9e-d931-4602-913d-acd8ede692a9-2,https://biolit.fr/observations/observation-80fe8f9e-d931-4602-913d-acd8ede692a9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/2-scaled.jpg,,FALSE, +N1,61215,sortie-80fe8f9e-d931-4602-913d-acd8ede692a9,https://biolit.fr/sorties/sortie-80fe8f9e-d931-4602-913d-acd8ede692a9/,Lycée Langevin Les Bigorneaux,,2/22/2016 0:00,14.0000000,16.0:15,43.421587000000,5.060821000000,,Etang de berre,55280,observation-80fe8f9e-d931-4602-913d-acd8ede692a9-3,https://biolit.fr/observations/observation-80fe8f9e-d931-4602-913d-acd8ede692a9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/3.png,,FALSE, +N1,61215,sortie-80fe8f9e-d931-4602-913d-acd8ede692a9,https://biolit.fr/sorties/sortie-80fe8f9e-d931-4602-913d-acd8ede692a9/,Lycée Langevin Les Bigorneaux,,2/22/2016 0:00,14.0000000,16.0:15,43.421587000000,5.060821000000,,Etang de berre,55281,observation-80fe8f9e-d931-4602-913d-acd8ede692a9-4,https://biolit.fr/observations/observation-80fe8f9e-d931-4602-913d-acd8ede692a9-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/4-scaled.jpg,,FALSE, +N1,61215,sortie-80fe8f9e-d931-4602-913d-acd8ede692a9,https://biolit.fr/sorties/sortie-80fe8f9e-d931-4602-913d-acd8ede692a9/,Lycée Langevin Les Bigorneaux,,2/22/2016 0:00,14.0000000,16.0:15,43.421587000000,5.060821000000,,Etang de berre,55282,observation-80fe8f9e-d931-4602-913d-acd8ede692a9-5,https://biolit.fr/observations/observation-80fe8f9e-d931-4602-913d-acd8ede692a9-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/5-scaled.jpg,,FALSE, +N1,61215,sortie-80fe8f9e-d931-4602-913d-acd8ede692a9,https://biolit.fr/sorties/sortie-80fe8f9e-d931-4602-913d-acd8ede692a9/,Lycée Langevin Les Bigorneaux,,2/22/2016 0:00,14.0000000,16.0:15,43.421587000000,5.060821000000,,Etang de berre,55284,observation-80fe8f9e-d931-4602-913d-acd8ede692a9-6,https://biolit.fr/observations/observation-80fe8f9e-d931-4602-913d-acd8ede692a9-6/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/6.jpg,,TRUE, +N1,61215,sortie-80fe8f9e-d931-4602-913d-acd8ede692a9,https://biolit.fr/sorties/sortie-80fe8f9e-d931-4602-913d-acd8ede692a9/,Lycée Langevin Les Bigorneaux,,2/22/2016 0:00,14.0000000,16.0:15,43.421587000000,5.060821000000,,Etang de berre,55285,observation-80fe8f9e-d931-4602-913d-acd8ede692a9-7,https://biolit.fr/observations/observation-80fe8f9e-d931-4602-913d-acd8ede692a9-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/7.jpg,,FALSE, +N1,61216,sortie-37defd78-13cb-40b1-9ad8-cafaf3336d1d,https://biolit.fr/sorties/sortie-37defd78-13cb-40b1-9ad8-cafaf3336d1d/,Les bagass,,2/22/2016 0:00,14.0000000,16.0000000,43.420743000000,5.061038000000,,Martigues,55286,observation-37defd78-13cb-40b1-9ad8-cafaf3336d1d,https://biolit.fr/observations/observation-37defd78-13cb-40b1-9ad8-cafaf3336d1d/,,,,https://biolit.fr/wp-content/uploads/2023/07/Espece-4.jpg,,FALSE, +N1,61216,sortie-37defd78-13cb-40b1-9ad8-cafaf3336d1d,https://biolit.fr/sorties/sortie-37defd78-13cb-40b1-9ad8-cafaf3336d1d/,Les bagass,,2/22/2016 0:00,14.0000000,16.0000000,43.420743000000,5.061038000000,,Martigues,55297,observation-37defd78-13cb-40b1-9ad8-cafaf3336d1d-2,https://biolit.fr/observations/observation-37defd78-13cb-40b1-9ad8-cafaf3336d1d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Espece 2.jpg,,FALSE, +N1,61216,sortie-37defd78-13cb-40b1-9ad8-cafaf3336d1d,https://biolit.fr/sorties/sortie-37defd78-13cb-40b1-9ad8-cafaf3336d1d/,Les bagass,,2/22/2016 0:00,14.0000000,16.0000000,43.420743000000,5.061038000000,,Martigues,55299,observation-37defd78-13cb-40b1-9ad8-cafaf3336d1d-3,https://biolit.fr/observations/observation-37defd78-13cb-40b1-9ad8-cafaf3336d1d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Espece 3.jpg,,FALSE, +N1,61216,sortie-37defd78-13cb-40b1-9ad8-cafaf3336d1d,https://biolit.fr/sorties/sortie-37defd78-13cb-40b1-9ad8-cafaf3336d1d/,Les bagass,,2/22/2016 0:00,14.0000000,16.0000000,43.420743000000,5.061038000000,,Martigues,55301,observation-37defd78-13cb-40b1-9ad8-cafaf3336d1d-4,https://biolit.fr/observations/observation-37defd78-13cb-40b1-9ad8-cafaf3336d1d-4/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/Espece 4.jpg,,TRUE, +N1,61216,sortie-37defd78-13cb-40b1-9ad8-cafaf3336d1d,https://biolit.fr/sorties/sortie-37defd78-13cb-40b1-9ad8-cafaf3336d1d/,Les bagass,,2/22/2016 0:00,14.0000000,16.0000000,43.420743000000,5.061038000000,,Martigues,55303,observation-37defd78-13cb-40b1-9ad8-cafaf3336d1d-5,https://biolit.fr/observations/observation-37defd78-13cb-40b1-9ad8-cafaf3336d1d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Espece 5.jpg,,FALSE, +N1,61216,sortie-37defd78-13cb-40b1-9ad8-cafaf3336d1d,https://biolit.fr/sorties/sortie-37defd78-13cb-40b1-9ad8-cafaf3336d1d/,Les bagass,,2/22/2016 0:00,14.0000000,16.0000000,43.420743000000,5.061038000000,,Martigues,55305,observation-37defd78-13cb-40b1-9ad8-cafaf3336d1d-6,https://biolit.fr/observations/observation-37defd78-13cb-40b1-9ad8-cafaf3336d1d-6/,Arcuatula senhousia,Moule asiatique,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Espece 6.jpg,,TRUE, +N1,61216,sortie-37defd78-13cb-40b1-9ad8-cafaf3336d1d,https://biolit.fr/sorties/sortie-37defd78-13cb-40b1-9ad8-cafaf3336d1d/,Les bagass,,2/22/2016 0:00,14.0000000,16.0000000,43.420743000000,5.061038000000,,Martigues,55307,observation-37defd78-13cb-40b1-9ad8-cafaf3336d1d-7,https://biolit.fr/observations/observation-37defd78-13cb-40b1-9ad8-cafaf3336d1d-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Polution.jpg,,FALSE, +N1,61217,sortie-3f0d7d4f-3f56-44ab-a45f-0928fc1f9673,https://biolit.fr/sorties/sortie-3f0d7d4f-3f56-44ab-a45f-0928fc1f9673/,Phil,,1/24/2016 0:00,17.0000000,17.0:35,47.792322000000,-4.241924000000,,Léchiagat - Finistère,55309,observation-3f0d7d4f-3f56-44ab-a45f-0928fc1f9673,https://biolit.fr/observations/observation-3f0d7d4f-3f56-44ab-a45f-0928fc1f9673/,Calidris alpina,Bécasseau variable,,https://biolit.fr/wp-content/uploads/2023/07/P1010054.JPG,,TRUE, +N1,61217,sortie-3f0d7d4f-3f56-44ab-a45f-0928fc1f9673,https://biolit.fr/sorties/sortie-3f0d7d4f-3f56-44ab-a45f-0928fc1f9673/,Phil,,1/24/2016 0:00,17.0000000,17.0:35,47.792322000000,-4.241924000000,,Léchiagat - Finistère,55311,observation-3f0d7d4f-3f56-44ab-a45f-0928fc1f9673-2,https://biolit.fr/observations/observation-3f0d7d4f-3f56-44ab-a45f-0928fc1f9673-2/,Calidris alpina,Bécasseau variable,,https://biolit.fr/wp-content/uploads/2023/07/P1010059.JPG,,TRUE, +N1,61217,sortie-3f0d7d4f-3f56-44ab-a45f-0928fc1f9673,https://biolit.fr/sorties/sortie-3f0d7d4f-3f56-44ab-a45f-0928fc1f9673/,Phil,,1/24/2016 0:00,17.0000000,17.0:35,47.792322000000,-4.241924000000,,Léchiagat - Finistère,55313,observation-3f0d7d4f-3f56-44ab-a45f-0928fc1f9673-3,https://biolit.fr/observations/observation-3f0d7d4f-3f56-44ab-a45f-0928fc1f9673-3/,Calidris alpina,Bécasseau variable,,https://biolit.fr/wp-content/uploads/2023/07/P1010065.JPG,,TRUE, +N1,61218,sortie-5e8de7cf-3623-40cc-8169-803f24e87109,https://biolit.fr/sorties/sortie-5e8de7cf-3623-40cc-8169-803f24e87109/,Ville de Marseille Ecole Prado Plage CE2-CM1,,12/14/2015 0:00,14.0000000,15.0000000,43.267793000000,5.370350000000,,Plagette du Roucas blanc,55315,observation-5e8de7cf-3623-40cc-8169-803f24e87109,https://biolit.fr/observations/observation-5e8de7cf-3623-40cc-8169-803f24e87109/,,,,https://biolit.fr/wp-content/uploads/2023/07/troque Monodonta turbinata 2.jpg,,FALSE, +N1,61219,sortie-8e772fc5-65e6-414c-ad0b-b9c78bd0e985,https://biolit.fr/sorties/sortie-8e772fc5-65e6-414c-ad0b-b9c78bd0e985/,Ville de Marseille Ecole Prado Plage CE2-CM1,,12/14/2015 0:00,14.0000000,15.0000000,43.267602000000,5.370404000000,,Plagette du Roucas blanc,55317,observation-8e772fc5-65e6-414c-ad0b-b9c78bd0e985,https://biolit.fr/observations/observation-8e772fc5-65e6-414c-ad0b-b9c78bd0e985/,,,,https://biolit.fr/wp-content/uploads/2023/07/troque Monodonta turbinata 1.jpg,,FALSE, +N1,61220,sortie-6ee4688f-4326-4a4b-a6c2-c660c249d875,https://biolit.fr/sorties/sortie-6ee4688f-4326-4a4b-a6c2-c660c249d875/,Ville de Marseille Ecole Prado Plage CE2-CM1,,12/14/2015 0:00,14.0000000,15.0000000,43.267724000000,5.370345000000,,Plagette du Roucas blanc,55319,observation-6ee4688f-4326-4a4b-a6c2-c660c249d875,https://biolit.fr/observations/observation-6ee4688f-4326-4a4b-a6c2-c660c249d875/,,,,https://biolit.fr/wp-content/uploads/2023/07/Rissoa inconspicua.jpg,,FALSE, +N1,61221,sortie-1c1760a0-8235-45bd-a0bc-b4e11dc19228,https://biolit.fr/sorties/sortie-1c1760a0-8235-45bd-a0bc-b4e11dc19228/,Ville de Marseille Ecole Prado Plage CE2-CM1,,12/14/2015 0:00,14.0000000,15.0000000,43.267767000000,5.37038200000,,Plagette du Roucas blanc,55321,observation-1c1760a0-8235-45bd-a0bc-b4e11dc19228,https://biolit.fr/observations/observation-1c1760a0-8235-45bd-a0bc-b4e11dc19228/,,,,https://biolit.fr/wp-content/uploads/2023/07/Palourde Tapes decussatus.jpg,,FALSE, +N1,61222,sortie-c5391326-48c3-48bb-acd8-40a0a5a0551c,https://biolit.fr/sorties/sortie-c5391326-48c3-48bb-acd8-40a0a5a0551c/,Ville de Marseille Ecole Prado Plage CE2-CM1,,03/02/2016,19.0000000,21.0000000,43.26790100000,5.370281000000,,Plagette du Roucas blanc,55323,observation-c5391326-48c3-48bb-acd8-40a0a5a0551c,https://biolit.fr/observations/observation-c5391326-48c3-48bb-acd8-40a0a5a0551c/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lucine Loripes lucinalis 1.jpg,,FALSE, +N1,61222,sortie-c5391326-48c3-48bb-acd8-40a0a5a0551c,https://biolit.fr/sorties/sortie-c5391326-48c3-48bb-acd8-40a0a5a0551c/,Ville de Marseille Ecole Prado Plage CE2-CM1,,03/02/2016,19.0000000,21.0000000,43.26790100000,5.370281000000,,Plagette du Roucas blanc,55325,observation-c5391326-48c3-48bb-acd8-40a0a5a0551c-2,https://biolit.fr/observations/observation-c5391326-48c3-48bb-acd8-40a0a5a0551c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lucine Loripes lucinalis 2.jpg,,FALSE, +N1,61223,sortie-6e8779ed-db04-4739-a912-dbdf68c717ca,https://biolit.fr/sorties/sortie-6e8779ed-db04-4739-a912-dbdf68c717ca/,slegallais,,7/16/2015 0:00,9.0000000,11.0000000,42.687584000000,9.450414000000,,Bastia,55327,observation-6e8779ed-db04-4739-a912-dbdf68c717ca,https://biolit.fr/observations/observation-6e8779ed-db04-4739-a912-dbdf68c717ca/,Pinna nobilis,Grande nacre,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7294.jpg,,TRUE, +N1,61224,sortie-61d29fbb-6e04-44a4-aaa7-fe7a6eb7c5e2,https://biolit.fr/sorties/sortie-61d29fbb-6e04-44a4-aaa7-fe7a6eb7c5e2/,slegallais,,04/12/2012,10.0000000,12.0000000,42.702724000000,9.461829000000,,Bastia,55329,observation-61d29fbb-6e04-44a4-aaa7-fe7a6eb7c5e2,https://biolit.fr/observations/observation-61d29fbb-6e04-44a4-aaa7-fe7a6eb7c5e2/,Sepia officinalis,Seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Photo 110.jpg,,TRUE, +N1,61225,sortie-afd849cb-8342-4369-89a3-28a1a00137bf,https://biolit.fr/sorties/sortie-afd849cb-8342-4369-89a3-28a1a00137bf/,Ville de Marseille Ecole Prado Plage CE2-CM1,,03/02/2016,1.0000000,3.0000000,43.267983000000,5.370205000000,,Plagette du Roucas blanc,55331,observation-afd849cb-8342-4369-89a3-28a1a00137bf,https://biolit.fr/observations/observation-afd849cb-8342-4369-89a3-28a1a00137bf/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Coque Cerastoderma edule.jpg,,TRUE, +N1,61226,sortie-46226fac-da1f-4aa4-9632-239514be50af,https://biolit.fr/sorties/sortie-46226fac-da1f-4aa4-9632-239514be50af/,Ville de Marseille Ecole Prado Plage CE2-CM1,,03/02/2016,1.0000000,3.0000000,43.267932000000,5.370023000000,,Plagette du Roucas blanc,55333,observation-46226fac-da1f-4aa4-9632-239514be50af,https://biolit.fr/observations/observation-46226fac-da1f-4aa4-9632-239514be50af/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/Cerithe- Cerithium vulgatum-scaled.jpg,,TRUE, +N1,61227,sortie-7dd9796a-4f56-4025-87fa-b58fa10dc2a2,https://biolit.fr/sorties/sortie-7dd9796a-4f56-4025-87fa-b58fa10dc2a2/,Ville de Marseille,,2/26/2016 0:00,12.0000000,13.0000000,43.284000000000,5.3166360000,,"Calanque de St Estève, archipel du Frioul",55334,observation-7dd9796a-4f56-4025-87fa-b58fa10dc2a2,https://biolit.fr/observations/observation-7dd9796a-4f56-4025-87fa-b58fa10dc2a2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060610-scaled.jpg,,FALSE, +N1,61227,sortie-7dd9796a-4f56-4025-87fa-b58fa10dc2a2,https://biolit.fr/sorties/sortie-7dd9796a-4f56-4025-87fa-b58fa10dc2a2/,Ville de Marseille,,2/26/2016 0:00,12.0000000,13.0000000,43.284000000000,5.3166360000,,"Calanque de St Estève, archipel du Frioul",55336,observation-7dd9796a-4f56-4025-87fa-b58fa10dc2a2-2,https://biolit.fr/observations/observation-7dd9796a-4f56-4025-87fa-b58fa10dc2a2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060612-scaled.jpg,,FALSE, +N1,61227,sortie-7dd9796a-4f56-4025-87fa-b58fa10dc2a2,https://biolit.fr/sorties/sortie-7dd9796a-4f56-4025-87fa-b58fa10dc2a2/,Ville de Marseille,,2/26/2016 0:00,12.0000000,13.0000000,43.284000000000,5.3166360000,,"Calanque de St Estève, archipel du Frioul",55338,observation-7dd9796a-4f56-4025-87fa-b58fa10dc2a2-3,https://biolit.fr/observations/observation-7dd9796a-4f56-4025-87fa-b58fa10dc2a2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060614-scaled.jpg,,FALSE, +N1,61228,sortie-92b84e4f-0c16-40c4-9d3f-5ff967502c79,https://biolit.fr/sorties/sortie-92b84e4f-0c16-40c4-9d3f-5ff967502c79/,slegallais,,01/03/2016,8.0000000,10.0000000,42.741913000000,9.465992000000,,Miomo,55340,observation-92b84e4f-0c16-40c4-9d3f-5ff967502c79,https://biolit.fr/observations/observation-92b84e4f-0c16-40c4-9d3f-5ff967502c79/,Xiphias gladius,Espadon,,https://biolit.fr/wp-content/uploads/2023/07/Espadon1.jpg,,TRUE, +N1,61228,sortie-92b84e4f-0c16-40c4-9d3f-5ff967502c79,https://biolit.fr/sorties/sortie-92b84e4f-0c16-40c4-9d3f-5ff967502c79/,slegallais,,01/03/2016,8.0000000,10.0000000,42.741913000000,9.465992000000,,Miomo,55342,observation-92b84e4f-0c16-40c4-9d3f-5ff967502c79-2,https://biolit.fr/observations/observation-92b84e4f-0c16-40c4-9d3f-5ff967502c79-2/,Xiphias gladius,Espadon,,https://biolit.fr/wp-content/uploads/2023/07/Espadon2.jpg,,TRUE, +N1,61228,sortie-92b84e4f-0c16-40c4-9d3f-5ff967502c79,https://biolit.fr/sorties/sortie-92b84e4f-0c16-40c4-9d3f-5ff967502c79/,slegallais,,01/03/2016,8.0000000,10.0000000,42.741913000000,9.465992000000,,Miomo,55344,observation-92b84e4f-0c16-40c4-9d3f-5ff967502c79-3,https://biolit.fr/observations/observation-92b84e4f-0c16-40c4-9d3f-5ff967502c79-3/,Xiphias gladius,Espadon,,https://biolit.fr/wp-content/uploads/2023/07/Espadon3.jpg,,TRUE, +N1,61229,sortie-03763ac3-879c-488f-8acb-2fa7def1c02c,https://biolit.fr/sorties/sortie-03763ac3-879c-488f-8acb-2fa7def1c02c/,slegallais,,12/31/2015 0:00,8.0:15,12.0:15,42.662911000000,9.458911000000,,Marana,55346,observation-03763ac3-879c-488f-8acb-2fa7def1c02c,https://biolit.fr/observations/observation-03763ac3-879c-488f-8acb-2fa7def1c02c/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1630.JPG,,FALSE, +N1,61229,sortie-03763ac3-879c-488f-8acb-2fa7def1c02c,https://biolit.fr/sorties/sortie-03763ac3-879c-488f-8acb-2fa7def1c02c/,slegallais,,12/31/2015 0:00,8.0:15,12.0:15,42.662911000000,9.458911000000,,Marana,55348,observation-03763ac3-879c-488f-8acb-2fa7def1c02c-2,https://biolit.fr/observations/observation-03763ac3-879c-488f-8acb-2fa7def1c02c-2/,Loligo vulgaris,Encornet européen,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1633.JPG,,TRUE, +N1,61229,sortie-03763ac3-879c-488f-8acb-2fa7def1c02c,https://biolit.fr/sorties/sortie-03763ac3-879c-488f-8acb-2fa7def1c02c/,slegallais,,12/31/2015 0:00,8.0:15,12.0:15,42.662911000000,9.458911000000,,Marana,55350,observation-03763ac3-879c-488f-8acb-2fa7def1c02c-3,https://biolit.fr/observations/observation-03763ac3-879c-488f-8acb-2fa7def1c02c-3/,Loligo vulgaris,Encornet européen,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1631.JPG,,TRUE, +N1,61230,sortie-c9cde149-8bd2-410c-b734-60d4584a387d,https://biolit.fr/sorties/sortie-c9cde149-8bd2-410c-b734-60d4584a387d/,Phil,,1/24/2016 0:00,16.0:45,17.0000000,47.791953000000,-4.244799000000,,Léchiagat - Finistère,55352,observation-c9cde149-8bd2-410c-b734-60d4584a387d,https://biolit.fr/observations/observation-c9cde149-8bd2-410c-b734-60d4584a387d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000998.JPG,,FALSE, +N1,61230,sortie-c9cde149-8bd2-410c-b734-60d4584a387d,https://biolit.fr/sorties/sortie-c9cde149-8bd2-410c-b734-60d4584a387d/,Phil,,1/24/2016 0:00,16.0:45,17.0000000,47.791953000000,-4.244799000000,,Léchiagat - Finistère,55354,observation-c9cde149-8bd2-410c-b734-60d4584a387d-2,https://biolit.fr/observations/observation-c9cde149-8bd2-410c-b734-60d4584a387d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010003.JPG,,FALSE, +N1,61230,sortie-c9cde149-8bd2-410c-b734-60d4584a387d,https://biolit.fr/sorties/sortie-c9cde149-8bd2-410c-b734-60d4584a387d/,Phil,,1/24/2016 0:00,16.0:45,17.0000000,47.791953000000,-4.244799000000,,Léchiagat - Finistère,55356,observation-c9cde149-8bd2-410c-b734-60d4584a387d-3,https://biolit.fr/observations/observation-c9cde149-8bd2-410c-b734-60d4584a387d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010004.JPG,,FALSE, +N1,61231,sortie-686a80ad-d5f7-46e0-a712-61b3eaf0bbba,https://biolit.fr/sorties/sortie-686a80ad-d5f7-46e0-a712-61b3eaf0bbba/,slegallais,,2/25/2016 0:00,11.0000000,13.0000000,43.011966000000,9.425094000000,,cap Corse,55358,observation-686a80ad-d5f7-46e0-a712-61b3eaf0bbba,https://biolit.fr/observations/observation-686a80ad-d5f7-46e0-a712-61b3eaf0bbba/,Raja asterias,Raie étoilée,,https://biolit.fr/wp-content/uploads/2023/07/raie_insuma.jpg,,TRUE, +N1,61232,sortie-04c5b4b3-1cbc-4f72-80a3-10ce81f56ee1,https://biolit.fr/sorties/sortie-04c5b4b3-1cbc-4f72-80a3-10ce81f56ee1/,slegallais,,6/21/2012 0:00,11.0000000,13.0000000,42.695202000000,9.451830000000,,Bastia,55360,observation-04c5b4b3-1cbc-4f72-80a3-10ce81f56ee1,https://biolit.fr/observations/observation-04c5b4b3-1cbc-4f72-80a3-10ce81f56ee1/,Mobula mobular,Diable de mer,,https://biolit.fr/wp-content/uploads/2023/07/Raie_Mobula.jpg,,TRUE, +N1,61233,sortie-fd036f28-187b-4767-b7eb-9f724f61f877,https://biolit.fr/sorties/sortie-fd036f28-187b-4767-b7eb-9f724f61f877/,tridimeg,,2/25/2016 0:00,9.0000000,9.0:15,48.636658000000,-2.08131500000,,Plage du Port Blanc,55362,observation-fd036f28-187b-4767-b7eb-9f724f61f877,https://biolit.fr/observations/observation-fd036f28-187b-4767-b7eb-9f724f61f877/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160225_091804-scaled.jpg,,FALSE, +N1,61233,sortie-fd036f28-187b-4767-b7eb-9f724f61f877,https://biolit.fr/sorties/sortie-fd036f28-187b-4767-b7eb-9f724f61f877/,tridimeg,,2/25/2016 0:00,9.0000000,9.0:15,48.636658000000,-2.08131500000,,Plage du Port Blanc,55364,observation-fd036f28-187b-4767-b7eb-9f724f61f877-2,https://biolit.fr/observations/observation-fd036f28-187b-4767-b7eb-9f724f61f877-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160225_091849-scaled.jpg,,FALSE, +N1,61234,sortie-fe2312bc-d73c-4013-b2bb-d01f84eff9e9,https://biolit.fr/sorties/sortie-fe2312bc-d73c-4013-b2bb-d01f84eff9e9/,slegallais,,2/24/2016 0:00,15.0:55,17.0:55,42.771438000000,9.47573400000,,Erbalunga,55366,observation-fe2312bc-d73c-4013-b2bb-d01f84eff9e9,https://biolit.fr/observations/observation-fe2312bc-d73c-4013-b2bb-d01f84eff9e9/,Cratena peregrina,Hervia,,https://biolit.fr/wp-content/uploads/2023/07/hervia.jpg,,TRUE, +N1,61235,sortie-c329ce5b-b219-43de-a62d-c3eba4232ef7,https://biolit.fr/sorties/sortie-c329ce5b-b219-43de-a62d-c3eba4232ef7/,slegallais,,2/24/2016 0:00,15.0000000,17.0000000,42.757229000000,9.468138000000,,Lavasina,55368,observation-c329ce5b-b219-43de-a62d-c3eba4232ef7,https://biolit.fr/observations/observation-c329ce5b-b219-43de-a62d-c3eba4232ef7/,Scyliorhinus stellaris,Grande roussette,,https://biolit.fr/wp-content/uploads/2023/07/rousette.jpg,,TRUE, +N1,61236,sortie-350f4a48-8a6e-4167-b463-42aca87de48d,https://biolit.fr/sorties/sortie-350f4a48-8a6e-4167-b463-42aca87de48d/,slegallais,,01/12/2016,15.0000000,17.0000000,42.860653000000,9.483287000000,,Santa Severa,55370,observation-350f4a48-8a6e-4167-b463-42aca87de48d,https://biolit.fr/observations/observation-350f4a48-8a6e-4167-b463-42aca87de48d/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e5f3045e4478665d73a7f8a89ef4782e/2023/06/etoile.png,,FALSE, +N1,61237,sortie-1d7e40f0-b355-4bf6-a6fc-9947170b492f,https://biolit.fr/sorties/sortie-1d7e40f0-b355-4bf6-a6fc-9947170b492f/,slegallais,,1/26/2016 0:00,15.0000000,17.0000000,42.772762000000,9.476721000000,,Erbalunga,55371,observation-1d7e40f0-b355-4bf6-a6fc-9947170b492f,https://biolit.fr/observations/observation-1d7e40f0-b355-4bf6-a6fc-9947170b492f/,Muraena helena,Murène commune,,https://biolit.fr/wp-content/uploads/2023/07/Murene-scaled.jpg,,TRUE, +N1,61238,sortie-11d43fad-a1e8-4434-a39a-760e52714135,https://biolit.fr/sorties/sortie-11d43fad-a1e8-4434-a39a-760e52714135/,slegallais,,1/24/2016 0:00,15.0000000,17.0000000,42.757355000000,9.466722000000,,Lavasina,55372,observation-11d43fad-a1e8-4434-a39a-760e52714135,https://biolit.fr/observations/observation-11d43fad-a1e8-4434-a39a-760e52714135/,,,,https://biolit.fr/wp-content/uploads/2023/07/Posidonie-scaled.jpg,,FALSE, +N1,61239,sortie-32935c0d-7f82-4eb0-a7aa-45953ede787c,https://biolit.fr/sorties/sortie-32935c0d-7f82-4eb0-a7aa-45953ede787c/,slegallais,,2/24/2016 0:00,15.0000000,17.0000000,42.757796000000,9.46755900000,,Lavasina,55373,observation-32935c0d-7f82-4eb0-a7aa-45953ede787c,https://biolit.fr/observations/observation-32935c0d-7f82-4eb0-a7aa-45953ede787c/,Homarus gammarus,Homard européen,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0849_01.JPG,,TRUE, +N1,61240,sortie-2149ce76-2dc8-4ad9-a625-ba809d4a1be3,https://biolit.fr/sorties/sortie-2149ce76-2dc8-4ad9-a625-ba809d4a1be3/,slegallais,,8/21/2015 0:00,12.0000000,13.0000000,42.757355000000,9.466593000000,,Lavasina,55375,observation-2149ce76-2dc8-4ad9-a625-ba809d4a1be3,https://biolit.fr/observations/observation-2149ce76-2dc8-4ad9-a625-ba809d4a1be3/,Mola mola,Poisson-lune,,https://biolit.fr/wp-content/uploads/2023/07/Molamola4.jpg,,TRUE, +N1,61241,sortie-ec0051df-49ae-4d46-828a-32c26b1c06f1,https://biolit.fr/sorties/sortie-ec0051df-49ae-4d46-828a-32c26b1c06f1/,slegallais,,05/06/2015,10.0000000,11.0000000,42.687963000000,9.454105000000,,Bastia,55377,observation-ec0051df-49ae-4d46-828a-32c26b1c06f1,https://biolit.fr/observations/observation-ec0051df-49ae-4d46-828a-32c26b1c06f1/,Scyllarides latus,Grande cigale de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8666_01.JPG,,TRUE, +N1,61242,sortie-51074f14-8ff6-4fe2-9a53-a00d98a9daf9,https://biolit.fr/sorties/sortie-51074f14-8ff6-4fe2-9a53-a00d98a9daf9/,slegallais,,4/25/2015 0:00,9.0000000,10.0000000,42.704931000000,9.461829000000,,Bastia,55379,observation-51074f14-8ff6-4fe2-9a53-a00d98a9daf9,https://biolit.fr/observations/observation-51074f14-8ff6-4fe2-9a53-a00d98a9daf9/,Pterotrachea coronata,Pterotrachea,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0905.JPG,,TRUE, +N1,61243,sortie-6d0a734f-ce63-4d3f-8a04-0e6011e757d8,https://biolit.fr/sorties/sortie-6d0a734f-ce63-4d3f-8a04-0e6011e757d8/,slegallais,,8/22/2015 0:00,12.0000000,13.0000000,42.689162000000,9.452903000000,,Bastia,55381,observation-6d0a734f-ce63-4d3f-8a04-0e6011e757d8,https://biolit.fr/observations/observation-6d0a734f-ce63-4d3f-8a04-0e6011e757d8/,Cotylorhiza tuberculata,Méduse œuf au plat,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0543_01.JPG,,TRUE, +N1,61244,sortie-2bfd01d9-0eac-4683-9602-accf30480fa9,https://biolit.fr/sorties/sortie-2bfd01d9-0eac-4683-9602-accf30480fa9/,slegallais,,3/29/2015 0:00,8.0000000,9.0000000,42.691780000000,9.453772000000,,Bastia,55383,observation-2bfd01d9-0eac-4683-9602-accf30480fa9,https://biolit.fr/observations/observation-2bfd01d9-0eac-4683-9602-accf30480fa9/,Lophius piscatorius,Baudroie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0694.JPG,,TRUE, +N1,61245,sortie-4622e4ec-7a26-4b08-b7a7-107e7e19b0c3,https://biolit.fr/sorties/sortie-4622e4ec-7a26-4b08-b7a7-107e7e19b0c3/,slegallais,,07/04/2015,14.0000000,16.0000000,42.690707000000,9.451551000000,,Bastia,55385,observation-4622e4ec-7a26-4b08-b7a7-107e7e19b0c3,https://biolit.fr/observations/observation-4622e4ec-7a26-4b08-b7a7-107e7e19b0c3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2392.JPG,,FALSE, +N1,61246,sortie-c5937863-163e-4e96-b16b-f69c542b71e7,https://biolit.fr/sorties/sortie-c5937863-163e-4e96-b16b-f69c542b71e7/,Phil,,2/21/2016 0:00,12.0000000,12.0000000,47.834670000000,-4.17779600000,,Loctudy - Finistère,55387,observation-c5937863-163e-4e96-b16b-f69c542b71e7,https://biolit.fr/observations/observation-c5937863-163e-4e96-b16b-f69c542b71e7/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/P1010344.JPG,,TRUE, +N1,61246,sortie-c5937863-163e-4e96-b16b-f69c542b71e7,https://biolit.fr/sorties/sortie-c5937863-163e-4e96-b16b-f69c542b71e7/,Phil,,2/21/2016 0:00,12.0000000,12.0000000,47.834670000000,-4.17779600000,,Loctudy - Finistère,55389,observation-c5937863-163e-4e96-b16b-f69c542b71e7-2,https://biolit.fr/observations/observation-c5937863-163e-4e96-b16b-f69c542b71e7-2/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/P1010347.JPG,,TRUE, +N1,61246,sortie-c5937863-163e-4e96-b16b-f69c542b71e7,https://biolit.fr/sorties/sortie-c5937863-163e-4e96-b16b-f69c542b71e7/,Phil,,2/21/2016 0:00,12.0000000,12.0000000,47.834670000000,-4.17779600000,,Loctudy - Finistère,55391,observation-c5937863-163e-4e96-b16b-f69c542b71e7-3,https://biolit.fr/observations/observation-c5937863-163e-4e96-b16b-f69c542b71e7-3/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1010299.JPG,,TRUE, +N1,61246,sortie-c5937863-163e-4e96-b16b-f69c542b71e7,https://biolit.fr/sorties/sortie-c5937863-163e-4e96-b16b-f69c542b71e7/,Phil,,2/21/2016 0:00,12.0000000,12.0000000,47.834670000000,-4.17779600000,,Loctudy - Finistère,55393,observation-c5937863-163e-4e96-b16b-f69c542b71e7-4,https://biolit.fr/observations/observation-c5937863-163e-4e96-b16b-f69c542b71e7-4/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1010303.JPG,,TRUE, +N1,61246,sortie-c5937863-163e-4e96-b16b-f69c542b71e7,https://biolit.fr/sorties/sortie-c5937863-163e-4e96-b16b-f69c542b71e7/,Phil,,2/21/2016 0:00,12.0000000,12.0000000,47.834670000000,-4.17779600000,,Loctudy - Finistère,55395,observation-c5937863-163e-4e96-b16b-f69c542b71e7-5,https://biolit.fr/observations/observation-c5937863-163e-4e96-b16b-f69c542b71e7-5/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1010308.JPG,,TRUE, +N1,61247,sortie-bd94be34-4072-4269-a74e-3957ed48f957,https://biolit.fr/sorties/sortie-bd94be34-4072-4269-a74e-3957ed48f957/,Phil,,1/24/2016 0:00,17.0:25,17.0000000,47.791683000000,-4.253906000000,,Treffiagat - Finistère,55397,observation-bd94be34-4072-4269-a74e-3957ed48f957,https://biolit.fr/observations/observation-bd94be34-4072-4269-a74e-3957ed48f957/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160124_173010.jpg,,FALSE, +N1,61247,sortie-bd94be34-4072-4269-a74e-3957ed48f957,https://biolit.fr/sorties/sortie-bd94be34-4072-4269-a74e-3957ed48f957/,Phil,,1/24/2016 0:00,17.0:25,17.0000000,47.791683000000,-4.253906000000,,Treffiagat - Finistère,55399,observation-bd94be34-4072-4269-a74e-3957ed48f957-2,https://biolit.fr/observations/observation-bd94be34-4072-4269-a74e-3957ed48f957-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160124_172834.jpg,,FALSE, +N1,61248,sortie-84a4745d-2f0b-470f-92bd-a6b6cd1e829d,https://biolit.fr/sorties/sortie-84a4745d-2f0b-470f-92bd-a6b6cd1e829d/,Ville de Marseille,,2/16/2016 0:00,14.0000000,15.0000000,43.267871000000,5.370291000000,,Base nautique du Roucas Blanc,55401,observation-84a4745d-2f0b-470f-92bd-a6b6cd1e829d,https://biolit.fr/observations/observation-84a4745d-2f0b-470f-92bd-a6b6cd1e829d/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/P1060595-scaled.jpg,,TRUE, +N1,61248,sortie-84a4745d-2f0b-470f-92bd-a6b6cd1e829d,https://biolit.fr/sorties/sortie-84a4745d-2f0b-470f-92bd-a6b6cd1e829d/,Ville de Marseille,,2/16/2016 0:00,14.0000000,15.0000000,43.267871000000,5.370291000000,,Base nautique du Roucas Blanc,55403,observation-84a4745d-2f0b-470f-92bd-a6b6cd1e829d-2,https://biolit.fr/observations/observation-84a4745d-2f0b-470f-92bd-a6b6cd1e829d-2/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/P1060597-scaled.jpg,,TRUE, +N1,61248,sortie-84a4745d-2f0b-470f-92bd-a6b6cd1e829d,https://biolit.fr/sorties/sortie-84a4745d-2f0b-470f-92bd-a6b6cd1e829d/,Ville de Marseille,,2/16/2016 0:00,14.0000000,15.0000000,43.267871000000,5.370291000000,,Base nautique du Roucas Blanc,55405,observation-84a4745d-2f0b-470f-92bd-a6b6cd1e829d-3,https://biolit.fr/observations/observation-84a4745d-2f0b-470f-92bd-a6b6cd1e829d-3/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/P1060599-scaled.jpg,,TRUE, +N1,61248,sortie-84a4745d-2f0b-470f-92bd-a6b6cd1e829d,https://biolit.fr/sorties/sortie-84a4745d-2f0b-470f-92bd-a6b6cd1e829d/,Ville de Marseille,,2/16/2016 0:00,14.0000000,15.0000000,43.267871000000,5.370291000000,,Base nautique du Roucas Blanc,55407,observation-84a4745d-2f0b-470f-92bd-a6b6cd1e829d-4,https://biolit.fr/observations/observation-84a4745d-2f0b-470f-92bd-a6b6cd1e829d-4/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/P1060600-scaled.jpg,,TRUE, +N1,61248,sortie-84a4745d-2f0b-470f-92bd-a6b6cd1e829d,https://biolit.fr/sorties/sortie-84a4745d-2f0b-470f-92bd-a6b6cd1e829d/,Ville de Marseille,,2/16/2016 0:00,14.0000000,15.0000000,43.267871000000,5.370291000000,,Base nautique du Roucas Blanc,55409,observation-84a4745d-2f0b-470f-92bd-a6b6cd1e829d-5,https://biolit.fr/observations/observation-84a4745d-2f0b-470f-92bd-a6b6cd1e829d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060602-scaled.jpg,,FALSE, +N1,61248,sortie-84a4745d-2f0b-470f-92bd-a6b6cd1e829d,https://biolit.fr/sorties/sortie-84a4745d-2f0b-470f-92bd-a6b6cd1e829d/,Ville de Marseille,,2/16/2016 0:00,14.0000000,15.0000000,43.267871000000,5.370291000000,,Base nautique du Roucas Blanc,55411,observation-84a4745d-2f0b-470f-92bd-a6b6cd1e829d-6,https://biolit.fr/observations/observation-84a4745d-2f0b-470f-92bd-a6b6cd1e829d-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060603-scaled.jpg,,FALSE, +N1,61249,sortie-98c01070-790b-4ae2-98fb-eb1c6323a92a,https://biolit.fr/sorties/sortie-98c01070-790b-4ae2-98fb-eb1c6323a92a/,Nils,,2/14/2016 0:00,11.0000000,11.0:45,43.16752700000,5.694476000000,,la madrague,55413,observation-98c01070-790b-4ae2-98fb-eb1c6323a92a,https://biolit.fr/observations/observation-98c01070-790b-4ae2-98fb-eb1c6323a92a/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/20160214_113233.jpg,,TRUE, +N1,61249,sortie-98c01070-790b-4ae2-98fb-eb1c6323a92a,https://biolit.fr/sorties/sortie-98c01070-790b-4ae2-98fb-eb1c6323a92a/,Nils,,2/14/2016 0:00,11.0000000,11.0:45,43.16752700000,5.694476000000,,la madrague,55415,observation-98c01070-790b-4ae2-98fb-eb1c6323a92a-2,https://biolit.fr/observations/observation-98c01070-790b-4ae2-98fb-eb1c6323a92a-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/20160214_113319.jpg,,TRUE, +N1,61249,sortie-98c01070-790b-4ae2-98fb-eb1c6323a92a,https://biolit.fr/sorties/sortie-98c01070-790b-4ae2-98fb-eb1c6323a92a/,Nils,,2/14/2016 0:00,11.0000000,11.0:45,43.16752700000,5.694476000000,,la madrague,55417,observation-98c01070-790b-4ae2-98fb-eb1c6323a92a-3,https://biolit.fr/observations/observation-98c01070-790b-4ae2-98fb-eb1c6323a92a-3/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20160214_113558.jpg,,TRUE, +N1,61249,sortie-98c01070-790b-4ae2-98fb-eb1c6323a92a,https://biolit.fr/sorties/sortie-98c01070-790b-4ae2-98fb-eb1c6323a92a/,Nils,,2/14/2016 0:00,11.0000000,11.0:45,43.16752700000,5.694476000000,,la madrague,55419,observation-98c01070-790b-4ae2-98fb-eb1c6323a92a-4,https://biolit.fr/observations/observation-98c01070-790b-4ae2-98fb-eb1c6323a92a-4/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20160214_113628.jpg,,TRUE, +N1,61249,sortie-98c01070-790b-4ae2-98fb-eb1c6323a92a,https://biolit.fr/sorties/sortie-98c01070-790b-4ae2-98fb-eb1c6323a92a/,Nils,,2/14/2016 0:00,11.0000000,11.0:45,43.16752700000,5.694476000000,,la madrague,55421,observation-98c01070-790b-4ae2-98fb-eb1c6323a92a-5,https://biolit.fr/observations/observation-98c01070-790b-4ae2-98fb-eb1c6323a92a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160214_113745.jpg,,FALSE, +N1,61249,sortie-98c01070-790b-4ae2-98fb-eb1c6323a92a,https://biolit.fr/sorties/sortie-98c01070-790b-4ae2-98fb-eb1c6323a92a/,Nils,,2/14/2016 0:00,11.0000000,11.0:45,43.16752700000,5.694476000000,,la madrague,55423,observation-98c01070-790b-4ae2-98fb-eb1c6323a92a-6,https://biolit.fr/observations/observation-98c01070-790b-4ae2-98fb-eb1c6323a92a-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160214_113814.jpg,,FALSE, +N1,61249,sortie-98c01070-790b-4ae2-98fb-eb1c6323a92a,https://biolit.fr/sorties/sortie-98c01070-790b-4ae2-98fb-eb1c6323a92a/,Nils,,2/14/2016 0:00,11.0000000,11.0:45,43.16752700000,5.694476000000,,la madrague,55425,observation-98c01070-790b-4ae2-98fb-eb1c6323a92a-7,https://biolit.fr/observations/observation-98c01070-790b-4ae2-98fb-eb1c6323a92a-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160214_114120.jpg,,FALSE, +N1,61249,sortie-98c01070-790b-4ae2-98fb-eb1c6323a92a,https://biolit.fr/sorties/sortie-98c01070-790b-4ae2-98fb-eb1c6323a92a/,Nils,,2/14/2016 0:00,11.0000000,11.0:45,43.16752700000,5.694476000000,,la madrague,55427,observation-98c01070-790b-4ae2-98fb-eb1c6323a92a-8,https://biolit.fr/observations/observation-98c01070-790b-4ae2-98fb-eb1c6323a92a-8/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/20160214_114153.jpg,,TRUE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55429,observation-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1/,,,,https://biolit.fr/wp-content/uploads/2023/07/Laisse de mer_0-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55431,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-2,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue calcaire encroutante-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55433,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-3,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue calcaire-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55435,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-4,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/anemones vertes-scaled.jpg,,TRUE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55437,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-5,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55438,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-6,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/ascidies-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55440,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-7,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-7/,,,,https://biolit.fr/wp-content/uploads/2022/06/Balanes.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55441,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-8,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-8/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/Oursin noir-scaled.jpg,,TRUE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55442,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-9,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/oursin noir (2)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55444,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-10,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/petoncle-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55446,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-11,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/petoncle (2)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55448,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-12,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/pétoncle (3)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55450,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-13,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-13/,,,,https://biolit.fr/wp-content/uploads/2023/05/patelle.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55451,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-14,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/bernard-l'ermite-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55453,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-15,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-15/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/bernard-l'ermite (2)-scaled.jpg,,TRUE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55455,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-16,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/cardita-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55457,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-17,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/cardita (2)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55459,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-18,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-18/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/Cérithe-scaled.jpg,,TRUE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55460,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-19,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-19/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/cérithe (2)-scaled.jpg,,TRUE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55462,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-20,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/cérithe (3)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55464,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-21,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/coque-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55466,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-22,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/coque (2)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55468,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-23,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/coque (3)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55470,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-24,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/cormaillot perceur-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55472,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-25,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/cormaillot perceur (2)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55474,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-26,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/cormaillot perceur (3)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55476,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-27,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabe vert mâle (mue)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55478,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-28,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabe vert mâle (mue) (2)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55480,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-29,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55481,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-30,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/machote (mue)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55483,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-31,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/nasse-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55485,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-32,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/nasse (2)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55487,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-33,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/Nasse (3)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55489,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-34,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/Nasse (4)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55491,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-35,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/OPHIURE.png,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55492,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-36,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-36/,,,,https://biolit.fr/wp-content/uploads/2023/07/ophiure (2)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55494,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-37,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/ophiure (3)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55496,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-38,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-38/,,,,https://biolit.fr/wp-content/uploads/2023/07/ophiure (4)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55498,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-39,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-39/,,,,https://biolit.fr/wp-content/uploads/2023/07/oursin comestible-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55500,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-40,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-40/,,,,https://biolit.fr/wp-content/uploads/2023/07/oursin comestible (2)-scaled.jpg,,FALSE, +N1,61251,sortie-a96aefad-0086-455c-bb71-fbb7cc658369,https://biolit.fr/sorties/sortie-a96aefad-0086-455c-bb71-fbb7cc658369/,Phil,,02/02/2016,17.0:45,17.0000000,47.795733000000,-4.363904000000,,Penmarc'h - Finistère,55502,observation-a96aefad-0086-455c-bb71-fbb7cc658369,https://biolit.fr/observations/observation-a96aefad-0086-455c-bb71-fbb7cc658369/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160202_174549.jpg,,TRUE, +N1,61251,sortie-a96aefad-0086-455c-bb71-fbb7cc658369,https://biolit.fr/sorties/sortie-a96aefad-0086-455c-bb71-fbb7cc658369/,Phil,,02/02/2016,17.0:45,17.0000000,47.795733000000,-4.363904000000,,Penmarc'h - Finistère,55504,observation-a96aefad-0086-455c-bb71-fbb7cc658369-2,https://biolit.fr/observations/observation-a96aefad-0086-455c-bb71-fbb7cc658369-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160202_174825.jpg,,FALSE, +N1,61251,sortie-a96aefad-0086-455c-bb71-fbb7cc658369,https://biolit.fr/sorties/sortie-a96aefad-0086-455c-bb71-fbb7cc658369/,Phil,,02/02/2016,17.0:45,17.0000000,47.795733000000,-4.363904000000,,Penmarc'h - Finistère,55506,observation-a96aefad-0086-455c-bb71-fbb7cc658369-3,https://biolit.fr/observations/observation-a96aefad-0086-455c-bb71-fbb7cc658369-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160202_174833.jpg,,FALSE, +N1,61251,sortie-a96aefad-0086-455c-bb71-fbb7cc658369,https://biolit.fr/sorties/sortie-a96aefad-0086-455c-bb71-fbb7cc658369/,Phil,,02/02/2016,17.0:45,17.0000000,47.795733000000,-4.363904000000,,Penmarc'h - Finistère,55508,observation-a96aefad-0086-455c-bb71-fbb7cc658369-4,https://biolit.fr/observations/observation-a96aefad-0086-455c-bb71-fbb7cc658369-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160202_174921.jpg,,TRUE, +N1,61252,sortie-893d5ee9-2ff7-406f-929e-287681e9e7e1,https://biolit.fr/sorties/sortie-893d5ee9-2ff7-406f-929e-287681e9e7e1/,aline. new1@orange.fr,,12/17/2015 0:00,13.0:25,14.0:45,43.462294000000,3.821702000000,,plage des Aresquiers,55510,observation-893d5ee9-2ff7-406f-929e-287681e9e7e1,https://biolit.fr/observations/observation-893d5ee9-2ff7-406f-929e-287681e9e7e1/,,,,https://biolit.fr/wp-content/uploads/2023/07/photos du portable 282-scaled.jpg,,FALSE, +N1,61252,sortie-893d5ee9-2ff7-406f-929e-287681e9e7e1,https://biolit.fr/sorties/sortie-893d5ee9-2ff7-406f-929e-287681e9e7e1/,aline. new1@orange.fr,,12/17/2015 0:00,13.0:25,14.0:45,43.462294000000,3.821702000000,,plage des Aresquiers,55512,observation-893d5ee9-2ff7-406f-929e-287681e9e7e1-2,https://biolit.fr/observations/observation-893d5ee9-2ff7-406f-929e-287681e9e7e1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/photos du portable 283-scaled.jpg,,FALSE, +N1,61252,sortie-893d5ee9-2ff7-406f-929e-287681e9e7e1,https://biolit.fr/sorties/sortie-893d5ee9-2ff7-406f-929e-287681e9e7e1/,aline. new1@orange.fr,,12/17/2015 0:00,13.0:25,14.0:45,43.462294000000,3.821702000000,,plage des Aresquiers,55514,observation-893d5ee9-2ff7-406f-929e-287681e9e7e1-3,https://biolit.fr/observations/observation-893d5ee9-2ff7-406f-929e-287681e9e7e1-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/photos du portable 284-scaled.jpg,,FALSE, +N1,61253,sortie-b14fbf09-cf3e-4711-a80b-1557dc4dab11,https://biolit.fr/sorties/sortie-b14fbf09-cf3e-4711-a80b-1557dc4dab11/,Phil,,02/05/2016,11.0000000,11.0:55,47.800856000000,-4.309063000000,,Penmarc'h - Finistère,55516,observation-b14fbf09-cf3e-4711-a80b-1557dc4dab11,https://biolit.fr/observations/observation-b14fbf09-cf3e-4711-a80b-1557dc4dab11/,Morus bassanus,Fou de Bassan,,https://biolit.fr/wp-content/uploads/2023/07/P1010268.JPG,,TRUE, +N1,61253,sortie-b14fbf09-cf3e-4711-a80b-1557dc4dab11,https://biolit.fr/sorties/sortie-b14fbf09-cf3e-4711-a80b-1557dc4dab11/,Phil,,02/05/2016,11.0000000,11.0:55,47.800856000000,-4.309063000000,,Penmarc'h - Finistère,55518,observation-b14fbf09-cf3e-4711-a80b-1557dc4dab11-2,https://biolit.fr/observations/observation-b14fbf09-cf3e-4711-a80b-1557dc4dab11-2/,Morus bassanus,Fou de Bassan,,https://biolit.fr/wp-content/uploads/2023/07/P1010269.JPG,,TRUE, +N1,61253,sortie-b14fbf09-cf3e-4711-a80b-1557dc4dab11,https://biolit.fr/sorties/sortie-b14fbf09-cf3e-4711-a80b-1557dc4dab11/,Phil,,02/05/2016,11.0000000,11.0:55,47.800856000000,-4.309063000000,,Penmarc'h - Finistère,55520,observation-b14fbf09-cf3e-4711-a80b-1557dc4dab11-3,https://biolit.fr/observations/observation-b14fbf09-cf3e-4711-a80b-1557dc4dab11-3/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/P1010265.JPG,,TRUE, +N1,61254,sortie-66262657-da31-4d9d-bf5c-2fe4128fb7ef,https://biolit.fr/sorties/sortie-66262657-da31-4d9d-bf5c-2fe4128fb7ef/,Phil,,02/05/2016,11.0000000,11.0:45,47.796569000000,-4.320717000000,,Penmarc'h - Finistère,55522,observation-66262657-da31-4d9d-bf5c-2fe4128fb7ef,https://biolit.fr/observations/observation-66262657-da31-4d9d-bf5c-2fe4128fb7ef/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010253.JPG,,FALSE, +N1,61254,sortie-66262657-da31-4d9d-bf5c-2fe4128fb7ef,https://biolit.fr/sorties/sortie-66262657-da31-4d9d-bf5c-2fe4128fb7ef/,Phil,,02/05/2016,11.0000000,11.0:45,47.796569000000,-4.320717000000,,Penmarc'h - Finistère,55524,observation-66262657-da31-4d9d-bf5c-2fe4128fb7ef-2,https://biolit.fr/observations/observation-66262657-da31-4d9d-bf5c-2fe4128fb7ef-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010247.JPG,,FALSE, +N1,61254,sortie-66262657-da31-4d9d-bf5c-2fe4128fb7ef,https://biolit.fr/sorties/sortie-66262657-da31-4d9d-bf5c-2fe4128fb7ef/,Phil,,02/05/2016,11.0000000,11.0:45,47.796569000000,-4.320717000000,,Penmarc'h - Finistère,55526,observation-66262657-da31-4d9d-bf5c-2fe4128fb7ef-3,https://biolit.fr/observations/observation-66262657-da31-4d9d-bf5c-2fe4128fb7ef-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010244.JPG,,FALSE, +N1,61254,sortie-66262657-da31-4d9d-bf5c-2fe4128fb7ef,https://biolit.fr/sorties/sortie-66262657-da31-4d9d-bf5c-2fe4128fb7ef/,Phil,,02/05/2016,11.0000000,11.0:45,47.796569000000,-4.320717000000,,Penmarc'h - Finistère,55528,observation-66262657-da31-4d9d-bf5c-2fe4128fb7ef-4,https://biolit.fr/observations/observation-66262657-da31-4d9d-bf5c-2fe4128fb7ef-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010236.JPG,,FALSE, +N1,61254,sortie-66262657-da31-4d9d-bf5c-2fe4128fb7ef,https://biolit.fr/sorties/sortie-66262657-da31-4d9d-bf5c-2fe4128fb7ef/,Phil,,02/05/2016,11.0000000,11.0:45,47.796569000000,-4.320717000000,,Penmarc'h - Finistère,55530,observation-66262657-da31-4d9d-bf5c-2fe4128fb7ef-5,https://biolit.fr/observations/observation-66262657-da31-4d9d-bf5c-2fe4128fb7ef-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010239.JPG,,FALSE, +N1,61254,sortie-66262657-da31-4d9d-bf5c-2fe4128fb7ef,https://biolit.fr/sorties/sortie-66262657-da31-4d9d-bf5c-2fe4128fb7ef/,Phil,,02/05/2016,11.0000000,11.0:45,47.796569000000,-4.320717000000,,Penmarc'h - Finistère,55532,observation-66262657-da31-4d9d-bf5c-2fe4128fb7ef-6,https://biolit.fr/observations/observation-66262657-da31-4d9d-bf5c-2fe4128fb7ef-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010240.JPG,,FALSE, +N1,61255,sortie-16f64253-39c1-42ed-8f62-59dd548b8492,https://biolit.fr/sorties/sortie-16f64253-39c1-42ed-8f62-59dd548b8492/,Phil,,02/02/2016,16.0000000,16.0:45,47.78985400000,-4.355884000000,,Kerity - Finistère,55534,observation-16f64253-39c1-42ed-8f62-59dd548b8492,https://biolit.fr/observations/observation-16f64253-39c1-42ed-8f62-59dd548b8492/,Chelon labrosus,Mulet lippu,,https://biolit.fr/wp-content/uploads/2023/07/P1010197.JPG,,TRUE, +N1,61256,sortie-6e79bc82-a6b0-4880-8df4-c1dfbde4241c,https://biolit.fr/sorties/sortie-6e79bc82-a6b0-4880-8df4-c1dfbde4241c/,Phil,,02/05/2016,11.0:15,11.0000000,47.798904000000,-4.314366000000,,Penmarc'h - Finistère,55536,observation-6e79bc82-a6b0-4880-8df4-c1dfbde4241c,https://biolit.fr/observations/observation-6e79bc82-a6b0-4880-8df4-c1dfbde4241c/,Larus fuscus,Goéland brun,,https://biolit.fr/wp-content/uploads/2023/07/P1010232.JPG,,TRUE, +N1,61256,sortie-6e79bc82-a6b0-4880-8df4-c1dfbde4241c,https://biolit.fr/sorties/sortie-6e79bc82-a6b0-4880-8df4-c1dfbde4241c/,Phil,,02/05/2016,11.0:15,11.0000000,47.798904000000,-4.314366000000,,Penmarc'h - Finistère,55538,observation-6e79bc82-a6b0-4880-8df4-c1dfbde4241c-2,https://biolit.fr/observations/observation-6e79bc82-a6b0-4880-8df4-c1dfbde4241c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010226.JPG,,FALSE, +N1,61256,sortie-6e79bc82-a6b0-4880-8df4-c1dfbde4241c,https://biolit.fr/sorties/sortie-6e79bc82-a6b0-4880-8df4-c1dfbde4241c/,Phil,,02/05/2016,11.0:15,11.0000000,47.798904000000,-4.314366000000,,Penmarc'h - Finistère,55540,observation-6e79bc82-a6b0-4880-8df4-c1dfbde4241c-3,https://biolit.fr/observations/observation-6e79bc82-a6b0-4880-8df4-c1dfbde4241c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010230.JPG,,FALSE, +N1,61256,sortie-6e79bc82-a6b0-4880-8df4-c1dfbde4241c,https://biolit.fr/sorties/sortie-6e79bc82-a6b0-4880-8df4-c1dfbde4241c/,Phil,,02/05/2016,11.0:15,11.0000000,47.798904000000,-4.314366000000,,Penmarc'h - Finistère,55542,observation-6e79bc82-a6b0-4880-8df4-c1dfbde4241c-4,https://biolit.fr/observations/observation-6e79bc82-a6b0-4880-8df4-c1dfbde4241c-4/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1010233.JPG,,TRUE, +N1,61257,sortie-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb,https://biolit.fr/sorties/sortie-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb/,Phil,,1/15/2016 0:00,16.000005,16.0:25,47.795180000000,-4.192552000000,,Loctudy - Finistère,55544,observation-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb,https://biolit.fr/observations/observation-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000987.JPG,,FALSE, +N1,61257,sortie-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb,https://biolit.fr/sorties/sortie-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb/,Phil,,1/15/2016 0:00,16.000005,16.0:25,47.795180000000,-4.192552000000,,Loctudy - Finistère,55546,observation-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb-2,https://biolit.fr/observations/observation-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000985.JPG,,FALSE, +N1,61257,sortie-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb,https://biolit.fr/sorties/sortie-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb/,Phil,,1/15/2016 0:00,16.000005,16.0:25,47.795180000000,-4.192552000000,,Loctudy - Finistère,55548,observation-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb-3,https://biolit.fr/observations/observation-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1000977.JPG,,TRUE, +N1,61257,sortie-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb,https://biolit.fr/sorties/sortie-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb/,Phil,,1/15/2016 0:00,16.000005,16.0:25,47.795180000000,-4.192552000000,,Loctudy - Finistère,55550,observation-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb-4,https://biolit.fr/observations/observation-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000981.JPG,,FALSE, +N1,61257,sortie-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb,https://biolit.fr/sorties/sortie-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb/,Phil,,1/15/2016 0:00,16.000005,16.0:25,47.795180000000,-4.192552000000,,Loctudy - Finistère,55552,observation-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb-5,https://biolit.fr/observations/observation-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000988.JPG,,FALSE, +N1,61257,sortie-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb,https://biolit.fr/sorties/sortie-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb/,Phil,,1/15/2016 0:00,16.000005,16.0:25,47.795180000000,-4.192552000000,,Loctudy - Finistère,55554,observation-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb-6,https://biolit.fr/observations/observation-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb-6/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1000995.JPG,,TRUE, +N1,61258,sortie-e88661e7-b34a-48ff-9ccb-47da81edc5aa,https://biolit.fr/sorties/sortie-e88661e7-b34a-48ff-9ccb-47da81edc5aa/,Phil,,02/02/2016,16.0:25,16.0000000,47.792748000000,-4.358673000000,,Kerity - Finistère,55556,observation-e88661e7-b34a-48ff-9ccb-47da81edc5aa,https://biolit.fr/observations/observation-e88661e7-b34a-48ff-9ccb-47da81edc5aa/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010210.JPG,,FALSE, +N1,61258,sortie-e88661e7-b34a-48ff-9ccb-47da81edc5aa,https://biolit.fr/sorties/sortie-e88661e7-b34a-48ff-9ccb-47da81edc5aa/,Phil,,02/02/2016,16.0:25,16.0000000,47.792748000000,-4.358673000000,,Kerity - Finistère,55558,observation-e88661e7-b34a-48ff-9ccb-47da81edc5aa-2,https://biolit.fr/observations/observation-e88661e7-b34a-48ff-9ccb-47da81edc5aa-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010207_0.JPG,,FALSE, +N1,61259,sortie-a0935f1b-bafc-4ff4-90e1-05c47273e419,https://biolit.fr/sorties/sortie-a0935f1b-bafc-4ff4-90e1-05c47273e419/,Phil,,02/02/2016,16.0:15,16.0:15,47.793579000000,-4.35856800000,,Kerity - Finistère,55560,observation-a0935f1b-bafc-4ff4-90e1-05c47273e419,https://biolit.fr/observations/observation-a0935f1b-bafc-4ff4-90e1-05c47273e419/,Balistes capriscus,Baliste commun,,https://biolit.fr/wp-content/uploads/2023/07/P1010184.JPG,,TRUE, +N1,61259,sortie-a0935f1b-bafc-4ff4-90e1-05c47273e419,https://biolit.fr/sorties/sortie-a0935f1b-bafc-4ff4-90e1-05c47273e419/,Phil,,02/02/2016,16.0:15,16.0:15,47.793579000000,-4.35856800000,,Kerity - Finistère,55562,observation-a0935f1b-bafc-4ff4-90e1-05c47273e419-2,https://biolit.fr/observations/observation-a0935f1b-bafc-4ff4-90e1-05c47273e419-2/,Balistes capriscus,Baliste commun,,https://biolit.fr/wp-content/uploads/2023/07/P1010188.JPG,,TRUE, +N1,61259,sortie-a0935f1b-bafc-4ff4-90e1-05c47273e419,https://biolit.fr/sorties/sortie-a0935f1b-bafc-4ff4-90e1-05c47273e419/,Phil,,02/02/2016,16.0:15,16.0:15,47.793579000000,-4.35856800000,,Kerity - Finistère,55564,observation-a0935f1b-bafc-4ff4-90e1-05c47273e419-3,https://biolit.fr/observations/observation-a0935f1b-bafc-4ff4-90e1-05c47273e419-3/,Balistes capriscus,Baliste commun,,https://biolit.fr/wp-content/uploads/2023/07/P1010190.JPG,,TRUE, +N1,61260,sortie-a1077ccd-150f-4439-a9f2-01648f471b75,https://biolit.fr/sorties/sortie-a1077ccd-150f-4439-a9f2-01648f471b75/,Phil,,1/15/2016 0:00,15.0:45,16.0000000,47.797344000000,-4.18167100000,,Loctudy - Finistère,55566,observation-a1077ccd-150f-4439-a9f2-01648f471b75,https://biolit.fr/observations/observation-a1077ccd-150f-4439-a9f2-01648f471b75/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/P1000953.JPG,,TRUE, +N1,61260,sortie-a1077ccd-150f-4439-a9f2-01648f471b75,https://biolit.fr/sorties/sortie-a1077ccd-150f-4439-a9f2-01648f471b75/,Phil,,1/15/2016 0:00,15.0:45,16.0000000,47.797344000000,-4.18167100000,,Loctudy - Finistère,55568,observation-a1077ccd-150f-4439-a9f2-01648f471b75-2,https://biolit.fr/observations/observation-a1077ccd-150f-4439-a9f2-01648f471b75-2/,Lomentaria articulata,Algue saucisson,,https://biolit.fr/wp-content/uploads/2023/07/P1000963.JPG,,TRUE, +N1,61260,sortie-a1077ccd-150f-4439-a9f2-01648f471b75,https://biolit.fr/sorties/sortie-a1077ccd-150f-4439-a9f2-01648f471b75/,Phil,,1/15/2016 0:00,15.0:45,16.0000000,47.797344000000,-4.18167100000,,Loctudy - Finistère,55570,observation-a1077ccd-150f-4439-a9f2-01648f471b75-3,https://biolit.fr/observations/observation-a1077ccd-150f-4439-a9f2-01648f471b75-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000959.JPG,,FALSE, +N1,61260,sortie-a1077ccd-150f-4439-a9f2-01648f471b75,https://biolit.fr/sorties/sortie-a1077ccd-150f-4439-a9f2-01648f471b75/,Phil,,1/15/2016 0:00,15.0:45,16.0000000,47.797344000000,-4.18167100000,,Loctudy - Finistère,55572,observation-a1077ccd-150f-4439-a9f2-01648f471b75-4,https://biolit.fr/observations/observation-a1077ccd-150f-4439-a9f2-01648f471b75-4/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/P1000974.JPG,,TRUE, +N1,61260,sortie-a1077ccd-150f-4439-a9f2-01648f471b75,https://biolit.fr/sorties/sortie-a1077ccd-150f-4439-a9f2-01648f471b75/,Phil,,1/15/2016 0:00,15.0:45,16.0000000,47.797344000000,-4.18167100000,,Loctudy - Finistère,55574,observation-a1077ccd-150f-4439-a9f2-01648f471b75-5,https://biolit.fr/observations/observation-a1077ccd-150f-4439-a9f2-01648f471b75-5/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1000966.JPG,,TRUE, +N1,61260,sortie-a1077ccd-150f-4439-a9f2-01648f471b75,https://biolit.fr/sorties/sortie-a1077ccd-150f-4439-a9f2-01648f471b75/,Phil,,1/15/2016 0:00,15.0:45,16.0000000,47.797344000000,-4.18167100000,,Loctudy - Finistère,55576,observation-a1077ccd-150f-4439-a9f2-01648f471b75-6,https://biolit.fr/observations/observation-a1077ccd-150f-4439-a9f2-01648f471b75-6/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1000964.JPG,,TRUE, +N1,61260,sortie-a1077ccd-150f-4439-a9f2-01648f471b75,https://biolit.fr/sorties/sortie-a1077ccd-150f-4439-a9f2-01648f471b75/,Phil,,1/15/2016 0:00,15.0:45,16.0000000,47.797344000000,-4.18167100000,,Loctudy - Finistère,55578,observation-a1077ccd-150f-4439-a9f2-01648f471b75-7,https://biolit.fr/observations/observation-a1077ccd-150f-4439-a9f2-01648f471b75-7/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1000973.JPG,,TRUE, +N1,61260,sortie-a1077ccd-150f-4439-a9f2-01648f471b75,https://biolit.fr/sorties/sortie-a1077ccd-150f-4439-a9f2-01648f471b75/,Phil,,1/15/2016 0:00,15.0:45,16.0000000,47.797344000000,-4.18167100000,,Loctudy - Finistère,55580,observation-a1077ccd-150f-4439-a9f2-01648f471b75-8,https://biolit.fr/observations/observation-a1077ccd-150f-4439-a9f2-01648f471b75-8/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1000962.JPG,,TRUE, +N1,61260,sortie-a1077ccd-150f-4439-a9f2-01648f471b75,https://biolit.fr/sorties/sortie-a1077ccd-150f-4439-a9f2-01648f471b75/,Phil,,1/15/2016 0:00,15.0:45,16.0000000,47.797344000000,-4.18167100000,,Loctudy - Finistère,55582,observation-a1077ccd-150f-4439-a9f2-01648f471b75-9,https://biolit.fr/observations/observation-a1077ccd-150f-4439-a9f2-01648f471b75-9/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/P1000958.JPG,,TRUE, +N1,61261,sortie-ad0489ed-c79c-4d5f-926f-739f8f141331,https://biolit.fr/sorties/sortie-ad0489ed-c79c-4d5f-926f-739f8f141331/,Phil,,02/01/2016,15.0:35,16.0000000,47.882563000000,-3.934858000000,,Concarneau - Finistère,55584,observation-ad0489ed-c79c-4d5f-926f-739f8f141331,https://biolit.fr/observations/observation-ad0489ed-c79c-4d5f-926f-739f8f141331/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/P1010138.JPG,,TRUE, +N1,61261,sortie-ad0489ed-c79c-4d5f-926f-739f8f141331,https://biolit.fr/sorties/sortie-ad0489ed-c79c-4d5f-926f-739f8f141331/,Phil,,02/01/2016,15.0:35,16.0000000,47.882563000000,-3.934858000000,,Concarneau - Finistère,55586,observation-ad0489ed-c79c-4d5f-926f-739f8f141331-2,https://biolit.fr/observations/observation-ad0489ed-c79c-4d5f-926f-739f8f141331-2/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/P1010132.JPG,,TRUE, +N1,61261,sortie-ad0489ed-c79c-4d5f-926f-739f8f141331,https://biolit.fr/sorties/sortie-ad0489ed-c79c-4d5f-926f-739f8f141331/,Phil,,02/01/2016,15.0:35,16.0000000,47.882563000000,-3.934858000000,,Concarneau - Finistère,55588,observation-ad0489ed-c79c-4d5f-926f-739f8f141331-3,https://biolit.fr/observations/observation-ad0489ed-c79c-4d5f-926f-739f8f141331-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010130.JPG,,FALSE, +N1,61261,sortie-ad0489ed-c79c-4d5f-926f-739f8f141331,https://biolit.fr/sorties/sortie-ad0489ed-c79c-4d5f-926f-739f8f141331/,Phil,,02/01/2016,15.0:35,16.0000000,47.882563000000,-3.934858000000,,Concarneau - Finistère,55590,observation-ad0489ed-c79c-4d5f-926f-739f8f141331-4,https://biolit.fr/observations/observation-ad0489ed-c79c-4d5f-926f-739f8f141331-4/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1010129.JPG,,TRUE, +N1,61261,sortie-ad0489ed-c79c-4d5f-926f-739f8f141331,https://biolit.fr/sorties/sortie-ad0489ed-c79c-4d5f-926f-739f8f141331/,Phil,,02/01/2016,15.0:35,16.0000000,47.882563000000,-3.934858000000,,Concarneau - Finistère,55592,observation-ad0489ed-c79c-4d5f-926f-739f8f141331-5,https://biolit.fr/observations/observation-ad0489ed-c79c-4d5f-926f-739f8f141331-5/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1010125.JPG,,TRUE, +N1,61261,sortie-ad0489ed-c79c-4d5f-926f-739f8f141331,https://biolit.fr/sorties/sortie-ad0489ed-c79c-4d5f-926f-739f8f141331/,Phil,,02/01/2016,15.0:35,16.0000000,47.882563000000,-3.934858000000,,Concarneau - Finistère,55594,observation-ad0489ed-c79c-4d5f-926f-739f8f141331-6,https://biolit.fr/observations/observation-ad0489ed-c79c-4d5f-926f-739f8f141331-6/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1010115.JPG,,TRUE, +N1,61261,sortie-ad0489ed-c79c-4d5f-926f-739f8f141331,https://biolit.fr/sorties/sortie-ad0489ed-c79c-4d5f-926f-739f8f141331/,Phil,,02/01/2016,15.0:35,16.0000000,47.882563000000,-3.934858000000,,Concarneau - Finistère,55596,observation-ad0489ed-c79c-4d5f-926f-739f8f141331-7,https://biolit.fr/observations/observation-ad0489ed-c79c-4d5f-926f-739f8f141331-7/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/P1010095.JPG,,TRUE, +N1,61261,sortie-ad0489ed-c79c-4d5f-926f-739f8f141331,https://biolit.fr/sorties/sortie-ad0489ed-c79c-4d5f-926f-739f8f141331/,Phil,,02/01/2016,15.0:35,16.0000000,47.882563000000,-3.934858000000,,Concarneau - Finistère,55598,observation-ad0489ed-c79c-4d5f-926f-739f8f141331-8,https://biolit.fr/observations/observation-ad0489ed-c79c-4d5f-926f-739f8f141331-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010114.JPG,,FALSE, +N1,61261,sortie-ad0489ed-c79c-4d5f-926f-739f8f141331,https://biolit.fr/sorties/sortie-ad0489ed-c79c-4d5f-926f-739f8f141331/,Phil,,02/01/2016,15.0:35,16.0000000,47.882563000000,-3.934858000000,,Concarneau - Finistère,55600,observation-ad0489ed-c79c-4d5f-926f-739f8f141331-9,https://biolit.fr/observations/observation-ad0489ed-c79c-4d5f-926f-739f8f141331-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010107.JPG,,FALSE, +N1,61262,sortie-936fa468-d37e-4dc0-821b-70a622621662,https://biolit.fr/sorties/sortie-936fa468-d37e-4dc0-821b-70a622621662/,Phil,,02/01/2016,16.0000000,16.0000000,47.882064000000,-3.933869000000,,Concarneau - Finistère,55602,observation-936fa468-d37e-4dc0-821b-70a622621662,https://biolit.fr/observations/observation-936fa468-d37e-4dc0-821b-70a622621662/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010163.JPG,,FALSE, +N1,61262,sortie-936fa468-d37e-4dc0-821b-70a622621662,https://biolit.fr/sorties/sortie-936fa468-d37e-4dc0-821b-70a622621662/,Phil,,02/01/2016,16.0000000,16.0000000,47.882064000000,-3.933869000000,,Concarneau - Finistère,55604,observation-936fa468-d37e-4dc0-821b-70a622621662-2,https://biolit.fr/observations/observation-936fa468-d37e-4dc0-821b-70a622621662-2/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/P1010169.JPG,,TRUE, +N1,61262,sortie-936fa468-d37e-4dc0-821b-70a622621662,https://biolit.fr/sorties/sortie-936fa468-d37e-4dc0-821b-70a622621662/,Phil,,02/01/2016,16.0000000,16.0000000,47.882064000000,-3.933869000000,,Concarneau - Finistère,55606,observation-936fa468-d37e-4dc0-821b-70a622621662-3,https://biolit.fr/observations/observation-936fa468-d37e-4dc0-821b-70a622621662-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010172.JPG,,FALSE, +N1,61262,sortie-936fa468-d37e-4dc0-821b-70a622621662,https://biolit.fr/sorties/sortie-936fa468-d37e-4dc0-821b-70a622621662/,Phil,,02/01/2016,16.0000000,16.0000000,47.882064000000,-3.933869000000,,Concarneau - Finistère,55608,observation-936fa468-d37e-4dc0-821b-70a622621662-4,https://biolit.fr/observations/observation-936fa468-d37e-4dc0-821b-70a622621662-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010179.JPG,,FALSE, +N1,61262,sortie-936fa468-d37e-4dc0-821b-70a622621662,https://biolit.fr/sorties/sortie-936fa468-d37e-4dc0-821b-70a622621662/,Phil,,02/01/2016,16.0000000,16.0000000,47.882064000000,-3.933869000000,,Concarneau - Finistère,55610,observation-936fa468-d37e-4dc0-821b-70a622621662-5,https://biolit.fr/observations/observation-936fa468-d37e-4dc0-821b-70a622621662-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010180.JPG,,FALSE, +N1,61262,sortie-936fa468-d37e-4dc0-821b-70a622621662,https://biolit.fr/sorties/sortie-936fa468-d37e-4dc0-821b-70a622621662/,Phil,,02/01/2016,16.0000000,16.0000000,47.882064000000,-3.933869000000,,Concarneau - Finistère,55612,observation-936fa468-d37e-4dc0-821b-70a622621662-6,https://biolit.fr/observations/observation-936fa468-d37e-4dc0-821b-70a622621662-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010183.JPG,,FALSE, +N1,61263,sortie-6ec3ef44-3d86-4a69-bbaf-b273367ed116,https://biolit.fr/sorties/sortie-6ec3ef44-3d86-4a69-bbaf-b273367ed116/,Marine,,1/31/2016 0:00,12.0000000,14.0000000,43.093030000000,6.024482000000,,Plage de la Garonne,55614,observation-6ec3ef44-3d86-4a69-bbaf-b273367ed116,https://biolit.fr/observations/observation-6ec3ef44-3d86-4a69-bbaf-b273367ed116/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1085-scaled.jpg,,TRUE, +N1,61263,sortie-6ec3ef44-3d86-4a69-bbaf-b273367ed116,https://biolit.fr/sorties/sortie-6ec3ef44-3d86-4a69-bbaf-b273367ed116/,Marine,,1/31/2016 0:00,12.0000000,14.0000000,43.093030000000,6.024482000000,,Plage de la Garonne,55616,observation-6ec3ef44-3d86-4a69-bbaf-b273367ed116-2,https://biolit.fr/observations/observation-6ec3ef44-3d86-4a69-bbaf-b273367ed116-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1097-scaled.jpg,,FALSE, +N1,61263,sortie-6ec3ef44-3d86-4a69-bbaf-b273367ed116,https://biolit.fr/sorties/sortie-6ec3ef44-3d86-4a69-bbaf-b273367ed116/,Marine,,1/31/2016 0:00,12.0000000,14.0000000,43.093030000000,6.024482000000,,Plage de la Garonne,55618,observation-6ec3ef44-3d86-4a69-bbaf-b273367ed116-3,https://biolit.fr/observations/observation-6ec3ef44-3d86-4a69-bbaf-b273367ed116-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1100-scaled.jpg,,FALSE, +N1,61263,sortie-6ec3ef44-3d86-4a69-bbaf-b273367ed116,https://biolit.fr/sorties/sortie-6ec3ef44-3d86-4a69-bbaf-b273367ed116/,Marine,,1/31/2016 0:00,12.0000000,14.0000000,43.093030000000,6.024482000000,,Plage de la Garonne,55619,observation-6ec3ef44-3d86-4a69-bbaf-b273367ed116-4,https://biolit.fr/observations/observation-6ec3ef44-3d86-4a69-bbaf-b273367ed116-4/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1106-scaled.jpg,,TRUE, +N1,61263,sortie-6ec3ef44-3d86-4a69-bbaf-b273367ed116,https://biolit.fr/sorties/sortie-6ec3ef44-3d86-4a69-bbaf-b273367ed116/,Marine,,1/31/2016 0:00,12.0000000,14.0000000,43.093030000000,6.024482000000,,Plage de la Garonne,55621,observation-6ec3ef44-3d86-4a69-bbaf-b273367ed116-5,https://biolit.fr/observations/observation-6ec3ef44-3d86-4a69-bbaf-b273367ed116-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1107-scaled.jpg,,FALSE, +N1,61264,sortie-3ad2b8cd-9daf-42d1-a651-231c8e31ac20,https://biolit.fr/sorties/sortie-3ad2b8cd-9daf-42d1-a651-231c8e31ac20/,Phil,,1/29/2016 0:00,15.0000000,15.0:15,47.794005000000,-4.357439000000,,Kerity - Finistère,55623,observation-3ad2b8cd-9daf-42d1-a651-231c8e31ac20,https://biolit.fr/observations/observation-3ad2b8cd-9daf-42d1-a651-231c8e31ac20/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/20160129_151417.jpg,,TRUE, +N1,61264,sortie-3ad2b8cd-9daf-42d1-a651-231c8e31ac20,https://biolit.fr/sorties/sortie-3ad2b8cd-9daf-42d1-a651-231c8e31ac20/,Phil,,1/29/2016 0:00,15.0000000,15.0:15,47.794005000000,-4.357439000000,,Kerity - Finistère,55625,observation-3ad2b8cd-9daf-42d1-a651-231c8e31ac20-2,https://biolit.fr/observations/observation-3ad2b8cd-9daf-42d1-a651-231c8e31ac20-2/,Phoca vitulina,Phoque commun,,https://biolit.fr/wp-content/uploads/2023/07/20160129_151249.jpg,,TRUE, +N1,61264,sortie-3ad2b8cd-9daf-42d1-a651-231c8e31ac20,https://biolit.fr/sorties/sortie-3ad2b8cd-9daf-42d1-a651-231c8e31ac20/,Phil,,1/29/2016 0:00,15.0000000,15.0:15,47.794005000000,-4.357439000000,,Kerity - Finistère,55627,observation-3ad2b8cd-9daf-42d1-a651-231c8e31ac20-3,https://biolit.fr/observations/observation-3ad2b8cd-9daf-42d1-a651-231c8e31ac20-3/,Phoca vitulina,Phoque commun,,https://biolit.fr/wp-content/uploads/2023/07/20160129_151122.jpg,,TRUE, +N1,61264,sortie-3ad2b8cd-9daf-42d1-a651-231c8e31ac20,https://biolit.fr/sorties/sortie-3ad2b8cd-9daf-42d1-a651-231c8e31ac20/,Phil,,1/29/2016 0:00,15.0000000,15.0:15,47.794005000000,-4.357439000000,,Kerity - Finistère,55629,observation-3ad2b8cd-9daf-42d1-a651-231c8e31ac20-4,https://biolit.fr/observations/observation-3ad2b8cd-9daf-42d1-a651-231c8e31ac20-4/,Phoca vitulina,Phoque commun,,https://biolit.fr/wp-content/uploads/2023/07/20160129_151204.jpg,,TRUE, +N1,61264,sortie-3ad2b8cd-9daf-42d1-a651-231c8e31ac20,https://biolit.fr/sorties/sortie-3ad2b8cd-9daf-42d1-a651-231c8e31ac20/,Phil,,1/29/2016 0:00,15.0000000,15.0:15,47.794005000000,-4.357439000000,,Kerity - Finistère,55631,observation-3ad2b8cd-9daf-42d1-a651-231c8e31ac20-5,https://biolit.fr/observations/observation-3ad2b8cd-9daf-42d1-a651-231c8e31ac20-5/,Phoca vitulina,Phoque commun,,https://biolit.fr/wp-content/uploads/2023/07/20160129_151448.jpg,,TRUE, +N1,61265,sortie-561ae872-b7fc-4ee6-ae08-6b75cc06372b,https://biolit.fr/sorties/sortie-561ae872-b7fc-4ee6-ae08-6b75cc06372b/,Phil,,1/29/2016 0:00,15.0:25,15.0000000,47.796055000000,-4.362074000000,,Kerity - Finistère,55633,observation-561ae872-b7fc-4ee6-ae08-6b75cc06372b,https://biolit.fr/observations/observation-561ae872-b7fc-4ee6-ae08-6b75cc06372b/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160129_152640.jpg,,FALSE, +N1,61265,sortie-561ae872-b7fc-4ee6-ae08-6b75cc06372b,https://biolit.fr/sorties/sortie-561ae872-b7fc-4ee6-ae08-6b75cc06372b/,Phil,,1/29/2016 0:00,15.0:25,15.0000000,47.796055000000,-4.362074000000,,Kerity - Finistère,55635,observation-561ae872-b7fc-4ee6-ae08-6b75cc06372b-2,https://biolit.fr/observations/observation-561ae872-b7fc-4ee6-ae08-6b75cc06372b-2/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/20160129_152455.jpg,,TRUE, +N1,61265,sortie-561ae872-b7fc-4ee6-ae08-6b75cc06372b,https://biolit.fr/sorties/sortie-561ae872-b7fc-4ee6-ae08-6b75cc06372b/,Phil,,1/29/2016 0:00,15.0:25,15.0000000,47.796055000000,-4.362074000000,,Kerity - Finistère,55637,observation-561ae872-b7fc-4ee6-ae08-6b75cc06372b-3,https://biolit.fr/observations/observation-561ae872-b7fc-4ee6-ae08-6b75cc06372b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160129_152329.jpg,,FALSE, +N1,61266,sortie-e19e07c3-0f4d-4ec2-8306-d4858db31a4c,https://biolit.fr/sorties/sortie-e19e07c3-0f4d-4ec2-8306-d4858db31a4c/,Phil,,1/29/2016 0:00,15.0:15,15.0:25,47.793717000000,-4.364576000000,,Kerity - Finistère,55639,observation-e19e07c3-0f4d-4ec2-8306-d4858db31a4c,https://biolit.fr/observations/observation-e19e07c3-0f4d-4ec2-8306-d4858db31a4c/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20160129_150443.jpg,,TRUE, +N1,61266,sortie-e19e07c3-0f4d-4ec2-8306-d4858db31a4c,https://biolit.fr/sorties/sortie-e19e07c3-0f4d-4ec2-8306-d4858db31a4c/,Phil,,1/29/2016 0:00,15.0:15,15.0:25,47.793717000000,-4.364576000000,,Kerity - Finistère,55641,observation-e19e07c3-0f4d-4ec2-8306-d4858db31a4c-2,https://biolit.fr/observations/observation-e19e07c3-0f4d-4ec2-8306-d4858db31a4c-2/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20160129_150529.jpg,,TRUE, +N1,61266,sortie-e19e07c3-0f4d-4ec2-8306-d4858db31a4c,https://biolit.fr/sorties/sortie-e19e07c3-0f4d-4ec2-8306-d4858db31a4c/,Phil,,1/29/2016 0:00,15.0:15,15.0:25,47.793717000000,-4.364576000000,,Kerity - Finistère,55643,observation-e19e07c3-0f4d-4ec2-8306-d4858db31a4c-3,https://biolit.fr/observations/observation-e19e07c3-0f4d-4ec2-8306-d4858db31a4c-3/,Corella eumyota,Ascidie cartilagineuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20160129_150638.jpg,,TRUE, +N1,61266,sortie-e19e07c3-0f4d-4ec2-8306-d4858db31a4c,https://biolit.fr/sorties/sortie-e19e07c3-0f4d-4ec2-8306-d4858db31a4c/,Phil,,1/29/2016 0:00,15.0:15,15.0:25,47.793717000000,-4.364576000000,,Kerity - Finistère,55645,observation-e19e07c3-0f4d-4ec2-8306-d4858db31a4c-4,https://biolit.fr/observations/observation-e19e07c3-0f4d-4ec2-8306-d4858db31a4c-4/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20160129_150706.jpg,,TRUE, +N1,61267,sortie-9ebaaed4-5c92-40ac-9740-3cc9457bb83e,https://biolit.fr/sorties/sortie-9ebaaed4-5c92-40ac-9740-3cc9457bb83e/,Phil,,1/29/2016 0:00,14.0000000,15.0000000,47.791085000000,-4.357023000000,,Kerity - Finistère,55647,observation-9ebaaed4-5c92-40ac-9740-3cc9457bb83e,https://biolit.fr/observations/observation-9ebaaed4-5c92-40ac-9740-3cc9457bb83e/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160129_145800.jpg,,TRUE, +N1,61267,sortie-9ebaaed4-5c92-40ac-9740-3cc9457bb83e,https://biolit.fr/sorties/sortie-9ebaaed4-5c92-40ac-9740-3cc9457bb83e/,Phil,,1/29/2016 0:00,14.0000000,15.0000000,47.791085000000,-4.357023000000,,Kerity - Finistère,55649,observation-9ebaaed4-5c92-40ac-9740-3cc9457bb83e-2,https://biolit.fr/observations/observation-9ebaaed4-5c92-40ac-9740-3cc9457bb83e-2/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/20160129_150214.jpg,,TRUE, +N1,61267,sortie-9ebaaed4-5c92-40ac-9740-3cc9457bb83e,https://biolit.fr/sorties/sortie-9ebaaed4-5c92-40ac-9740-3cc9457bb83e/,Phil,,1/29/2016 0:00,14.0000000,15.0000000,47.791085000000,-4.357023000000,,Kerity - Finistère,55651,observation-9ebaaed4-5c92-40ac-9740-3cc9457bb83e-3,https://biolit.fr/observations/observation-9ebaaed4-5c92-40ac-9740-3cc9457bb83e-3/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20160129_150026.jpg,,TRUE, +N1,61267,sortie-9ebaaed4-5c92-40ac-9740-3cc9457bb83e,https://biolit.fr/sorties/sortie-9ebaaed4-5c92-40ac-9740-3cc9457bb83e/,Phil,,1/29/2016 0:00,14.0000000,15.0000000,47.791085000000,-4.357023000000,,Kerity - Finistère,55653,observation-9ebaaed4-5c92-40ac-9740-3cc9457bb83e-4,https://biolit.fr/observations/observation-9ebaaed4-5c92-40ac-9740-3cc9457bb83e-4/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160129_144836.jpg,,TRUE, +N1,61268,sortie-bfe50c28-4b20-4a49-ab0b-8880efbecb96,https://biolit.fr/sorties/sortie-bfe50c28-4b20-4a49-ab0b-8880efbecb96/,Phil,,1/29/2016 0:00,14.0:25,14.0000000,47.79492600000,-4.359124000000,,Kerity - Finistère,55655,observation-bfe50c28-4b20-4a49-ab0b-8880efbecb96,https://biolit.fr/observations/observation-bfe50c28-4b20-4a49-ab0b-8880efbecb96/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160129_142337.jpg,,FALSE, +N1,61268,sortie-bfe50c28-4b20-4a49-ab0b-8880efbecb96,https://biolit.fr/sorties/sortie-bfe50c28-4b20-4a49-ab0b-8880efbecb96/,Phil,,1/29/2016 0:00,14.0:25,14.0000000,47.79492600000,-4.359124000000,,Kerity - Finistère,55657,observation-bfe50c28-4b20-4a49-ab0b-8880efbecb96-2,https://biolit.fr/observations/observation-bfe50c28-4b20-4a49-ab0b-8880efbecb96-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160129_142826.jpg,,TRUE, +N1,61268,sortie-bfe50c28-4b20-4a49-ab0b-8880efbecb96,https://biolit.fr/sorties/sortie-bfe50c28-4b20-4a49-ab0b-8880efbecb96/,Phil,,1/29/2016 0:00,14.0:25,14.0000000,47.79492600000,-4.359124000000,,Kerity - Finistère,55659,observation-bfe50c28-4b20-4a49-ab0b-8880efbecb96-3,https://biolit.fr/observations/observation-bfe50c28-4b20-4a49-ab0b-8880efbecb96-3/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160129_143443.jpg,,TRUE, +N1,61268,sortie-bfe50c28-4b20-4a49-ab0b-8880efbecb96,https://biolit.fr/sorties/sortie-bfe50c28-4b20-4a49-ab0b-8880efbecb96/,Phil,,1/29/2016 0:00,14.0:25,14.0000000,47.79492600000,-4.359124000000,,Kerity - Finistère,55661,observation-bfe50c28-4b20-4a49-ab0b-8880efbecb96-4,https://biolit.fr/observations/observation-bfe50c28-4b20-4a49-ab0b-8880efbecb96-4/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/20160129_143927.jpg,,TRUE, +N1,61268,sortie-bfe50c28-4b20-4a49-ab0b-8880efbecb96,https://biolit.fr/sorties/sortie-bfe50c28-4b20-4a49-ab0b-8880efbecb96/,Phil,,1/29/2016 0:00,14.0:25,14.0000000,47.79492600000,-4.359124000000,,Kerity - Finistère,55663,observation-bfe50c28-4b20-4a49-ab0b-8880efbecb96-5,https://biolit.fr/observations/observation-bfe50c28-4b20-4a49-ab0b-8880efbecb96-5/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/20160129_144251.jpg,,TRUE, +N1,61268,sortie-bfe50c28-4b20-4a49-ab0b-8880efbecb96,https://biolit.fr/sorties/sortie-bfe50c28-4b20-4a49-ab0b-8880efbecb96/,Phil,,1/29/2016 0:00,14.0:25,14.0000000,47.79492600000,-4.359124000000,,Kerity - Finistère,55665,observation-bfe50c28-4b20-4a49-ab0b-8880efbecb96-6,https://biolit.fr/observations/observation-bfe50c28-4b20-4a49-ab0b-8880efbecb96-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160129_144346.jpg,,FALSE, +N1,61269,sortie-b3124ea1-62ae-40c4-88a3-4479cea30d2f,https://biolit.fr/sorties/sortie-b3124ea1-62ae-40c4-88a3-4479cea30d2f/,Phil,,1/14/2016 0:00,14.000005,14.0:15,47.870311000000,-3.930914000000,,Concarneau - Finistère,55667,observation-b3124ea1-62ae-40c4-88a3-4479cea30d2f,https://biolit.fr/observations/observation-b3124ea1-62ae-40c4-88a3-4479cea30d2f/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000864.JPG,,FALSE, +N1,61269,sortie-b3124ea1-62ae-40c4-88a3-4479cea30d2f,https://biolit.fr/sorties/sortie-b3124ea1-62ae-40c4-88a3-4479cea30d2f/,Phil,,1/14/2016 0:00,14.000005,14.0:15,47.870311000000,-3.930914000000,,Concarneau - Finistère,55669,observation-b3124ea1-62ae-40c4-88a3-4479cea30d2f-2,https://biolit.fr/observations/observation-b3124ea1-62ae-40c4-88a3-4479cea30d2f-2/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1000876.JPG,,TRUE, +N1,61269,sortie-b3124ea1-62ae-40c4-88a3-4479cea30d2f,https://biolit.fr/sorties/sortie-b3124ea1-62ae-40c4-88a3-4479cea30d2f/,Phil,,1/14/2016 0:00,14.000005,14.0:15,47.870311000000,-3.930914000000,,Concarneau - Finistère,55671,observation-b3124ea1-62ae-40c4-88a3-4479cea30d2f-3,https://biolit.fr/observations/observation-b3124ea1-62ae-40c4-88a3-4479cea30d2f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000878.JPG,,FALSE, +N1,61269,sortie-b3124ea1-62ae-40c4-88a3-4479cea30d2f,https://biolit.fr/sorties/sortie-b3124ea1-62ae-40c4-88a3-4479cea30d2f/,Phil,,1/14/2016 0:00,14.000005,14.0:15,47.870311000000,-3.930914000000,,Concarneau - Finistère,55673,observation-b3124ea1-62ae-40c4-88a3-4479cea30d2f-4,https://biolit.fr/observations/observation-b3124ea1-62ae-40c4-88a3-4479cea30d2f-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000883.JPG,,FALSE, +N1,61269,sortie-b3124ea1-62ae-40c4-88a3-4479cea30d2f,https://biolit.fr/sorties/sortie-b3124ea1-62ae-40c4-88a3-4479cea30d2f/,Phil,,1/14/2016 0:00,14.000005,14.0:15,47.870311000000,-3.930914000000,,Concarneau - Finistère,55675,observation-b3124ea1-62ae-40c4-88a3-4479cea30d2f-5,https://biolit.fr/observations/observation-b3124ea1-62ae-40c4-88a3-4479cea30d2f-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000885.JPG,,FALSE, +N1,61269,sortie-b3124ea1-62ae-40c4-88a3-4479cea30d2f,https://biolit.fr/sorties/sortie-b3124ea1-62ae-40c4-88a3-4479cea30d2f/,Phil,,1/14/2016 0:00,14.000005,14.0:15,47.870311000000,-3.930914000000,,Concarneau - Finistère,55677,observation-b3124ea1-62ae-40c4-88a3-4479cea30d2f-6,https://biolit.fr/observations/observation-b3124ea1-62ae-40c4-88a3-4479cea30d2f-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000891.JPG,,FALSE, +N1,61270,sortie-a956f204-828e-4b51-b5bb-445e167a42f5,https://biolit.fr/sorties/sortie-a956f204-828e-4b51-b5bb-445e167a42f5/,Phil,,1/15/2016 0:00,15.0:25,15.0000000,47.795740000000,-4.194569000000,,Loctudy - Finistère,55679,observation-a956f204-828e-4b51-b5bb-445e167a42f5,https://biolit.fr/observations/observation-a956f204-828e-4b51-b5bb-445e167a42f5/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1000930.JPG,,TRUE, +N1,61270,sortie-a956f204-828e-4b51-b5bb-445e167a42f5,https://biolit.fr/sorties/sortie-a956f204-828e-4b51-b5bb-445e167a42f5/,Phil,,1/15/2016 0:00,15.0:25,15.0000000,47.795740000000,-4.194569000000,,Loctudy - Finistère,55681,observation-a956f204-828e-4b51-b5bb-445e167a42f5-2,https://biolit.fr/observations/observation-a956f204-828e-4b51-b5bb-445e167a42f5-2/,Lomentaria articulata,Algue saucisson,,https://biolit.fr/wp-content/uploads/2023/07/P1000927.JPG,,TRUE, +N1,61270,sortie-a956f204-828e-4b51-b5bb-445e167a42f5,https://biolit.fr/sorties/sortie-a956f204-828e-4b51-b5bb-445e167a42f5/,Phil,,1/15/2016 0:00,15.0:25,15.0000000,47.795740000000,-4.194569000000,,Loctudy - Finistère,55683,observation-a956f204-828e-4b51-b5bb-445e167a42f5-3,https://biolit.fr/observations/observation-a956f204-828e-4b51-b5bb-445e167a42f5-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1000934.JPG,,TRUE, +N1,61270,sortie-a956f204-828e-4b51-b5bb-445e167a42f5,https://biolit.fr/sorties/sortie-a956f204-828e-4b51-b5bb-445e167a42f5/,Phil,,1/15/2016 0:00,15.0:25,15.0000000,47.795740000000,-4.194569000000,,Loctudy - Finistère,55685,observation-a956f204-828e-4b51-b5bb-445e167a42f5-4,https://biolit.fr/observations/observation-a956f204-828e-4b51-b5bb-445e167a42f5-4/,Ciliata mustela,Motelle à 5 barbillons,,https://biolit.fr/wp-content/uploads/2023/07/P1000938.JPG,,TRUE, +N1,61270,sortie-a956f204-828e-4b51-b5bb-445e167a42f5,https://biolit.fr/sorties/sortie-a956f204-828e-4b51-b5bb-445e167a42f5/,Phil,,1/15/2016 0:00,15.0:25,15.0000000,47.795740000000,-4.194569000000,,Loctudy - Finistère,55687,observation-a956f204-828e-4b51-b5bb-445e167a42f5-5,https://biolit.fr/observations/observation-a956f204-828e-4b51-b5bb-445e167a42f5-5/,Ciliata mustela,Motelle à 5 barbillons,,https://biolit.fr/wp-content/uploads/2023/07/P1000940.JPG,,TRUE, +N1,61270,sortie-a956f204-828e-4b51-b5bb-445e167a42f5,https://biolit.fr/sorties/sortie-a956f204-828e-4b51-b5bb-445e167a42f5/,Phil,,1/15/2016 0:00,15.0:25,15.0000000,47.795740000000,-4.194569000000,,Loctudy - Finistère,55689,observation-a956f204-828e-4b51-b5bb-445e167a42f5-6,https://biolit.fr/observations/observation-a956f204-828e-4b51-b5bb-445e167a42f5-6/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1000941.JPG,,TRUE, +N1,61270,sortie-a956f204-828e-4b51-b5bb-445e167a42f5,https://biolit.fr/sorties/sortie-a956f204-828e-4b51-b5bb-445e167a42f5/,Phil,,1/15/2016 0:00,15.0:25,15.0000000,47.795740000000,-4.194569000000,,Loctudy - Finistère,55691,observation-a956f204-828e-4b51-b5bb-445e167a42f5-7,https://biolit.fr/observations/observation-a956f204-828e-4b51-b5bb-445e167a42f5-7/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1000944.JPG,,TRUE, +N1,61270,sortie-a956f204-828e-4b51-b5bb-445e167a42f5,https://biolit.fr/sorties/sortie-a956f204-828e-4b51-b5bb-445e167a42f5/,Phil,,1/15/2016 0:00,15.0:25,15.0000000,47.795740000000,-4.194569000000,,Loctudy - Finistère,55693,observation-a956f204-828e-4b51-b5bb-445e167a42f5-8,https://biolit.fr/observations/observation-a956f204-828e-4b51-b5bb-445e167a42f5-8/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1000946.JPG,,TRUE, +N1,61270,sortie-a956f204-828e-4b51-b5bb-445e167a42f5,https://biolit.fr/sorties/sortie-a956f204-828e-4b51-b5bb-445e167a42f5/,Phil,,1/15/2016 0:00,15.0:25,15.0000000,47.795740000000,-4.194569000000,,Loctudy - Finistère,55695,observation-a956f204-828e-4b51-b5bb-445e167a42f5-9,https://biolit.fr/observations/observation-a956f204-828e-4b51-b5bb-445e167a42f5-9/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1000949.JPG,,TRUE, +N1,61270,sortie-a956f204-828e-4b51-b5bb-445e167a42f5,https://biolit.fr/sorties/sortie-a956f204-828e-4b51-b5bb-445e167a42f5/,Phil,,1/15/2016 0:00,15.0:25,15.0000000,47.795740000000,-4.194569000000,,Loctudy - Finistère,55697,observation-a956f204-828e-4b51-b5bb-445e167a42f5-10,https://biolit.fr/observations/observation-a956f204-828e-4b51-b5bb-445e167a42f5-10/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1000950.JPG,,TRUE, +N1,61271,sortie-6317f048-649c-4f80-8951-a2850a02a652,https://biolit.fr/sorties/sortie-6317f048-649c-4f80-8951-a2850a02a652/,Lu Cio,,01/10/2016,10.0000000,10.0:15,46.442045000000,-1.683869000000,,bourgenay,55699,observation-6317f048-649c-4f80-8951-a2850a02a652,https://biolit.fr/observations/observation-6317f048-649c-4f80-8951-a2850a02a652/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3041 - Copie.JPG,,FALSE, +N1,61271,sortie-6317f048-649c-4f80-8951-a2850a02a652,https://biolit.fr/sorties/sortie-6317f048-649c-4f80-8951-a2850a02a652/,Lu Cio,,01/10/2016,10.0000000,10.0:15,46.442045000000,-1.683869000000,,bourgenay,55701,observation-6317f048-649c-4f80-8951-a2850a02a652-2,https://biolit.fr/observations/observation-6317f048-649c-4f80-8951-a2850a02a652-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3040 - Copie - Copie.JPG,,FALSE, +N1,61272,sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3,https://biolit.fr/sorties/sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3/,Phil,,11/25/2015 0:00,10.0000000,11.0:15,48.097304000000,-4.296027000000,,Kerlaz - Finistère,55703,observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3,https://biolit.fr/observations/observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/20151125_102102 - .jpg,,TRUE, +N1,61272,sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3,https://biolit.fr/sorties/sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3/,Phil,,11/25/2015 0:00,10.0000000,11.0:15,48.097304000000,-4.296027000000,,Kerlaz - Finistère,55705,observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3-2,https://biolit.fr/observations/observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3-2/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/20151125_102101.jpg,,TRUE, +N1,61272,sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3,https://biolit.fr/sorties/sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3/,Phil,,11/25/2015 0:00,10.0000000,11.0:15,48.097304000000,-4.296027000000,,Kerlaz - Finistère,55707,observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3-3,https://biolit.fr/observations/observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3-3/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/20151125_105205.jpg,,TRUE, +N1,61272,sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3,https://biolit.fr/sorties/sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3/,Phil,,11/25/2015 0:00,10.0000000,11.0:15,48.097304000000,-4.296027000000,,Kerlaz - Finistère,55709,observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3-4,https://biolit.fr/observations/observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151125_111631.jpg,,FALSE, +N1,61272,sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3,https://biolit.fr/sorties/sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3/,Phil,,11/25/2015 0:00,10.0000000,11.0:15,48.097304000000,-4.296027000000,,Kerlaz - Finistère,55711,observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3-5,https://biolit.fr/observations/observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3-5/,Astropecten irregularis,Etoile-peigne commune,,https://biolit.fr/wp-content/uploads/2023/07/20151125_104007.jpg,,TRUE, +N1,61272,sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3,https://biolit.fr/sorties/sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3/,Phil,,11/25/2015 0:00,10.0000000,11.0:15,48.097304000000,-4.296027000000,,Kerlaz - Finistère,55713,observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3-6,https://biolit.fr/observations/observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3-6/,Donax vittatus,Donace des canards,,https://biolit.fr/wp-content/uploads/2023/07/20151125_104453.jpg,,TRUE, +N1,61272,sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3,https://biolit.fr/sorties/sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3/,Phil,,11/25/2015 0:00,10.0000000,11.0:15,48.097304000000,-4.296027000000,,Kerlaz - Finistère,55715,observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3-7,https://biolit.fr/observations/observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3-7/,Raja brachyura,Raie lisse,,https://biolit.fr/wp-content/uploads/2023/07/20151125_101348.jpg,,TRUE, +N1,61272,sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3,https://biolit.fr/sorties/sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3/,Phil,,11/25/2015 0:00,10.0000000,11.0:15,48.097304000000,-4.296027000000,,Kerlaz - Finistère,55717,observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3-8,https://biolit.fr/observations/observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3-8/,Astropecten irregularis,Etoile-peigne commune,,https://biolit.fr/wp-content/uploads/2023/07/20151125_104800.jpg,,TRUE, +N1,61272,sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3,https://biolit.fr/sorties/sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3/,Phil,,11/25/2015 0:00,10.0000000,11.0:15,48.097304000000,-4.296027000000,,Kerlaz - Finistère,55719,observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3-9,https://biolit.fr/observations/observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151125_104635.jpg,,FALSE, +N1,61273,sortie-cf6515ed-9185-49c4-9ebb-01bc9f953ff5,https://biolit.fr/sorties/sortie-cf6515ed-9185-49c4-9ebb-01bc9f953ff5/,Phil,,01/10/2016,12.0000000,12.0000000,48.092384000000,-4.296911000000,,Kerlaz - Finistère,55721,observation-cf6515ed-9185-49c4-9ebb-01bc9f953ff5,https://biolit.fr/observations/observation-cf6515ed-9185-49c4-9ebb-01bc9f953ff5/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/P1000436.JPG,,TRUE, +N1,61273,sortie-cf6515ed-9185-49c4-9ebb-01bc9f953ff5,https://biolit.fr/sorties/sortie-cf6515ed-9185-49c4-9ebb-01bc9f953ff5/,Phil,,01/10/2016,12.0000000,12.0000000,48.092384000000,-4.296911000000,,Kerlaz - Finistère,55723,observation-cf6515ed-9185-49c4-9ebb-01bc9f953ff5-2,https://biolit.fr/observations/observation-cf6515ed-9185-49c4-9ebb-01bc9f953ff5-2/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/P1000433.JPG,,TRUE, +N1,61273,sortie-cf6515ed-9185-49c4-9ebb-01bc9f953ff5,https://biolit.fr/sorties/sortie-cf6515ed-9185-49c4-9ebb-01bc9f953ff5/,Phil,,01/10/2016,12.0000000,12.0000000,48.092384000000,-4.296911000000,,Kerlaz - Finistère,55725,observation-cf6515ed-9185-49c4-9ebb-01bc9f953ff5-3,https://biolit.fr/observations/observation-cf6515ed-9185-49c4-9ebb-01bc9f953ff5-3/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/P1000186.JPG,,TRUE, +N1,61273,sortie-cf6515ed-9185-49c4-9ebb-01bc9f953ff5,https://biolit.fr/sorties/sortie-cf6515ed-9185-49c4-9ebb-01bc9f953ff5/,Phil,,01/10/2016,12.0000000,12.0000000,48.092384000000,-4.296911000000,,Kerlaz - Finistère,55729,observation-cf6515ed-9185-49c4-9ebb-01bc9f953ff5-5,https://biolit.fr/observations/observation-cf6515ed-9185-49c4-9ebb-01bc9f953ff5-5/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/P1000199.JPG,,TRUE, +N1,61273,sortie-cf6515ed-9185-49c4-9ebb-01bc9f953ff5,https://biolit.fr/sorties/sortie-cf6515ed-9185-49c4-9ebb-01bc9f953ff5/,Phil,,01/10/2016,12.0000000,12.0000000,48.092384000000,-4.296911000000,,Kerlaz - Finistère,55731,observation-cf6515ed-9185-49c4-9ebb-01bc9f953ff5-6,https://biolit.fr/observations/observation-cf6515ed-9185-49c4-9ebb-01bc9f953ff5-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000222.JPG,,FALSE, +N1,61274,sortie-0d26d582-5d43-40bf-8ba1-2427e990387d,https://biolit.fr/sorties/sortie-0d26d582-5d43-40bf-8ba1-2427e990387d/,Sylviede6fours,,1/16/2016 0:00,14.0000000,16.0000000,43.066998000000,5.810214000000,,Mont Salva,55733,observation-0d26d582-5d43-40bf-8ba1-2427e990387d,https://biolit.fr/observations/observation-0d26d582-5d43-40bf-8ba1-2427e990387d/,,,,https://biolit.fr/wp-content/uploads/2023/07/Palmier nain.JPG,,FALSE, +N1,61275,sortie-b0f1b649-c80f-46fb-bfcd-5044d549813f,https://biolit.fr/sorties/sortie-b0f1b649-c80f-46fb-bfcd-5044d549813f/,Lu Cio,,1/17/2016 0:00,18.0000000,20.0000000,46.433503000000,-1.65826400000,,Plage du Veillon,55735,observation-b0f1b649-c80f-46fb-bfcd-5044d549813f,https://biolit.fr/observations/observation-b0f1b649-c80f-46fb-bfcd-5044d549813f/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2957-scaled.jpg,,FALSE, +N1,61276,sortie-d69d5346-f241-495b-a479-3c32f9197e92,https://biolit.fr/sorties/sortie-d69d5346-f241-495b-a479-3c32f9197e92/,Lu Cio,,1/17/2016 0:00,18.0000000,20.0000000,46.433037000000,-1.657824000000,,Plage du Veillon,55737,observation-d69d5346-f241-495b-a479-3c32f9197e92,https://biolit.fr/observations/observation-d69d5346-f241-495b-a479-3c32f9197e92/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/velella velella.PNG,,TRUE, +N1,61277,sortie-5e479164-6436-48a4-8683-203e488cd885,https://biolit.fr/sorties/sortie-5e479164-6436-48a4-8683-203e488cd885/,Phil,,11/06/2015,12.000005,12.0:15,47.792202000000,-4.296478000000,,Le Guilvinec - Finistère,55738,observation-5e479164-6436-48a4-8683-203e488cd885,https://biolit.fr/observations/observation-5e479164-6436-48a4-8683-203e488cd885/,Membranipora membranacea,Membranipore,,https://biolit.fr/wp-content/uploads/2023/07/20151106_120505.jpg,,TRUE, +N1,61277,sortie-5e479164-6436-48a4-8683-203e488cd885,https://biolit.fr/sorties/sortie-5e479164-6436-48a4-8683-203e488cd885/,Phil,,11/06/2015,12.000005,12.0:15,47.792202000000,-4.296478000000,,Le Guilvinec - Finistère,55740,observation-5e479164-6436-48a4-8683-203e488cd885-2,https://biolit.fr/observations/observation-5e479164-6436-48a4-8683-203e488cd885-2/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151106_120413.jpg,,TRUE, +N1,61277,sortie-5e479164-6436-48a4-8683-203e488cd885,https://biolit.fr/sorties/sortie-5e479164-6436-48a4-8683-203e488cd885/,Phil,,11/06/2015,12.000005,12.0:15,47.792202000000,-4.296478000000,,Le Guilvinec - Finistère,55742,observation-5e479164-6436-48a4-8683-203e488cd885-3,https://biolit.fr/observations/observation-5e479164-6436-48a4-8683-203e488cd885-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151106_120625.jpg,,TRUE, +N1,61277,sortie-5e479164-6436-48a4-8683-203e488cd885,https://biolit.fr/sorties/sortie-5e479164-6436-48a4-8683-203e488cd885/,Phil,,11/06/2015,12.000005,12.0:15,47.792202000000,-4.296478000000,,Le Guilvinec - Finistère,55744,observation-5e479164-6436-48a4-8683-203e488cd885-4,https://biolit.fr/observations/observation-5e479164-6436-48a4-8683-203e488cd885-4/,Pelvetia canaliculata,Pelvétie,,https://biolit.fr/wp-content/uploads/2023/07/20151106_120704.jpg,,TRUE, +N1,61277,sortie-5e479164-6436-48a4-8683-203e488cd885,https://biolit.fr/sorties/sortie-5e479164-6436-48a4-8683-203e488cd885/,Phil,,11/06/2015,12.000005,12.0:15,47.792202000000,-4.296478000000,,Le Guilvinec - Finistère,55746,observation-5e479164-6436-48a4-8683-203e488cd885-5,https://biolit.fr/observations/observation-5e479164-6436-48a4-8683-203e488cd885-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_120915.jpg,,FALSE, +N1,61277,sortie-5e479164-6436-48a4-8683-203e488cd885,https://biolit.fr/sorties/sortie-5e479164-6436-48a4-8683-203e488cd885/,Phil,,11/06/2015,12.000005,12.0:15,47.792202000000,-4.296478000000,,Le Guilvinec - Finistère,55748,observation-5e479164-6436-48a4-8683-203e488cd885-6,https://biolit.fr/observations/observation-5e479164-6436-48a4-8683-203e488cd885-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_121244.jpg,,FALSE, +N1,61278,sortie-8356adad-8ee1-4e19-b58d-b09729a3a583,https://biolit.fr/sorties/sortie-8356adad-8ee1-4e19-b58d-b09729a3a583/,Phil,,01/10/2016,13.0:15,13.0000000,48.093728000000,-4.299203000000,,Kerlaz - Finistère,55750,observation-8356adad-8ee1-4e19-b58d-b09729a3a583,https://biolit.fr/observations/observation-8356adad-8ee1-4e19-b58d-b09729a3a583/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/P1000415.JPG,,TRUE, +N1,61278,sortie-8356adad-8ee1-4e19-b58d-b09729a3a583,https://biolit.fr/sorties/sortie-8356adad-8ee1-4e19-b58d-b09729a3a583/,Phil,,01/10/2016,13.0:15,13.0000000,48.093728000000,-4.299203000000,,Kerlaz - Finistère,55756,observation-8356adad-8ee1-4e19-b58d-b09729a3a583-4,https://biolit.fr/observations/observation-8356adad-8ee1-4e19-b58d-b09729a3a583-4/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/P1000399.JPG,,TRUE, +N1,61278,sortie-8356adad-8ee1-4e19-b58d-b09729a3a583,https://biolit.fr/sorties/sortie-8356adad-8ee1-4e19-b58d-b09729a3a583/,Phil,,01/10/2016,13.0:15,13.0000000,48.093728000000,-4.299203000000,,Kerlaz - Finistère,55758,observation-8356adad-8ee1-4e19-b58d-b09729a3a583-5,https://biolit.fr/observations/observation-8356adad-8ee1-4e19-b58d-b09729a3a583-5/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/P1000408.JPG,,TRUE, +N1,61279,sortie-4c57fffd-c1fc-4874-9cd1-5742ecd48c4a,https://biolit.fr/sorties/sortie-4c57fffd-c1fc-4874-9cd1-5742ecd48c4a/,Phil,,01/10/2016,13.0000000,13.000005,48.094717000000,-4.298875000000,,Kerlaz - Finistère,55760,observation-4c57fffd-c1fc-4874-9cd1-5742ecd48c4a,https://biolit.fr/observations/observation-4c57fffd-c1fc-4874-9cd1-5742ecd48c4a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000319.JPG,,FALSE, +N1,61279,sortie-4c57fffd-c1fc-4874-9cd1-5742ecd48c4a,https://biolit.fr/sorties/sortie-4c57fffd-c1fc-4874-9cd1-5742ecd48c4a/,Phil,,01/10/2016,13.0000000,13.000005,48.094717000000,-4.298875000000,,Kerlaz - Finistère,55762,observation-4c57fffd-c1fc-4874-9cd1-5742ecd48c4a-2,https://biolit.fr/observations/observation-4c57fffd-c1fc-4874-9cd1-5742ecd48c4a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000322.JPG,,FALSE, +N1,61280,sortie-3794147f-eb2c-443f-82be-97948f6be1d7,https://biolit.fr/sorties/sortie-3794147f-eb2c-443f-82be-97948f6be1d7/,Phil,,1/15/2016 0:00,15.000005,15.0000000,47.793914000000,-4.192147000000,,Loctudy - Finistère,55764,observation-3794147f-eb2c-443f-82be-97948f6be1d7,https://biolit.fr/observations/observation-3794147f-eb2c-443f-82be-97948f6be1d7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000898.JPG,,FALSE, +N1,61280,sortie-3794147f-eb2c-443f-82be-97948f6be1d7,https://biolit.fr/sorties/sortie-3794147f-eb2c-443f-82be-97948f6be1d7/,Phil,,1/15/2016 0:00,15.000005,15.0000000,47.793914000000,-4.192147000000,,Loctudy - Finistère,55766,observation-3794147f-eb2c-443f-82be-97948f6be1d7-2,https://biolit.fr/observations/observation-3794147f-eb2c-443f-82be-97948f6be1d7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000899.JPG,,FALSE, +N1,61280,sortie-3794147f-eb2c-443f-82be-97948f6be1d7,https://biolit.fr/sorties/sortie-3794147f-eb2c-443f-82be-97948f6be1d7/,Phil,,1/15/2016 0:00,15.000005,15.0000000,47.793914000000,-4.192147000000,,Loctudy - Finistère,55768,observation-3794147f-eb2c-443f-82be-97948f6be1d7-3,https://biolit.fr/observations/observation-3794147f-eb2c-443f-82be-97948f6be1d7-3/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1000900.JPG,,TRUE, +N1,61280,sortie-3794147f-eb2c-443f-82be-97948f6be1d7,https://biolit.fr/sorties/sortie-3794147f-eb2c-443f-82be-97948f6be1d7/,Phil,,1/15/2016 0:00,15.000005,15.0000000,47.793914000000,-4.192147000000,,Loctudy - Finistère,55770,observation-3794147f-eb2c-443f-82be-97948f6be1d7-4,https://biolit.fr/observations/observation-3794147f-eb2c-443f-82be-97948f6be1d7-4/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1000906.JPG,,TRUE, +N1,61280,sortie-3794147f-eb2c-443f-82be-97948f6be1d7,https://biolit.fr/sorties/sortie-3794147f-eb2c-443f-82be-97948f6be1d7/,Phil,,1/15/2016 0:00,15.000005,15.0000000,47.793914000000,-4.192147000000,,Loctudy - Finistère,55772,observation-3794147f-eb2c-443f-82be-97948f6be1d7-5,https://biolit.fr/observations/observation-3794147f-eb2c-443f-82be-97948f6be1d7-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000908.JPG,,FALSE, +N1,61280,sortie-3794147f-eb2c-443f-82be-97948f6be1d7,https://biolit.fr/sorties/sortie-3794147f-eb2c-443f-82be-97948f6be1d7/,Phil,,1/15/2016 0:00,15.000005,15.0000000,47.793914000000,-4.192147000000,,Loctudy - Finistère,55774,observation-3794147f-eb2c-443f-82be-97948f6be1d7-6,https://biolit.fr/observations/observation-3794147f-eb2c-443f-82be-97948f6be1d7-6/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1000913.JPG,,TRUE, +N1,61280,sortie-3794147f-eb2c-443f-82be-97948f6be1d7,https://biolit.fr/sorties/sortie-3794147f-eb2c-443f-82be-97948f6be1d7/,Phil,,1/15/2016 0:00,15.000005,15.0000000,47.793914000000,-4.192147000000,,Loctudy - Finistère,55776,observation-3794147f-eb2c-443f-82be-97948f6be1d7-7,https://biolit.fr/observations/observation-3794147f-eb2c-443f-82be-97948f6be1d7-7/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1000923.JPG,,TRUE, +N1,61281,sortie-69fe4343-deeb-4fb6-9008-fdcd2dfad612,https://biolit.fr/sorties/sortie-69fe4343-deeb-4fb6-9008-fdcd2dfad612/,Phil,,1/14/2016 0:00,13.0000000,14.000005,47.868223000000,-3.928698000000,,Concarneau - Finistère,55778,observation-69fe4343-deeb-4fb6-9008-fdcd2dfad612,https://biolit.fr/observations/observation-69fe4343-deeb-4fb6-9008-fdcd2dfad612/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160114_140342.jpg,,FALSE, +N1,61281,sortie-69fe4343-deeb-4fb6-9008-fdcd2dfad612,https://biolit.fr/sorties/sortie-69fe4343-deeb-4fb6-9008-fdcd2dfad612/,Phil,,1/14/2016 0:00,13.0000000,14.000005,47.868223000000,-3.928698000000,,Concarneau - Finistère,55780,observation-69fe4343-deeb-4fb6-9008-fdcd2dfad612-2,https://biolit.fr/observations/observation-69fe4343-deeb-4fb6-9008-fdcd2dfad612-2/,Tethya citrina,Orange de mer de Manche Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1000772.JPG,,TRUE, +N1,61281,sortie-69fe4343-deeb-4fb6-9008-fdcd2dfad612,https://biolit.fr/sorties/sortie-69fe4343-deeb-4fb6-9008-fdcd2dfad612/,Phil,,1/14/2016 0:00,13.0000000,14.000005,47.868223000000,-3.928698000000,,Concarneau - Finistère,55782,observation-69fe4343-deeb-4fb6-9008-fdcd2dfad612-3,https://biolit.fr/observations/observation-69fe4343-deeb-4fb6-9008-fdcd2dfad612-3/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1000819.JPG,,TRUE, +N1,61281,sortie-69fe4343-deeb-4fb6-9008-fdcd2dfad612,https://biolit.fr/sorties/sortie-69fe4343-deeb-4fb6-9008-fdcd2dfad612/,Phil,,1/14/2016 0:00,13.0000000,14.000005,47.868223000000,-3.928698000000,,Concarneau - Finistère,55784,observation-69fe4343-deeb-4fb6-9008-fdcd2dfad612-4,https://biolit.fr/observations/observation-69fe4343-deeb-4fb6-9008-fdcd2dfad612-4/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1000831.JPG,,TRUE, +N1,61281,sortie-69fe4343-deeb-4fb6-9008-fdcd2dfad612,https://biolit.fr/sorties/sortie-69fe4343-deeb-4fb6-9008-fdcd2dfad612/,Phil,,1/14/2016 0:00,13.0000000,14.000005,47.868223000000,-3.928698000000,,Concarneau - Finistère,55786,observation-69fe4343-deeb-4fb6-9008-fdcd2dfad612-5,https://biolit.fr/observations/observation-69fe4343-deeb-4fb6-9008-fdcd2dfad612-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000843.JPG,,FALSE, +N1,61282,sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f,https://biolit.fr/sorties/sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f/,Phil,,1/14/2016 0:00,13.0000000,13.0000000,47.86941600000,-3.929275000000,,Concarneau - Finistère,55788,observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f,https://biolit.fr/observations/observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000783.JPG,,FALSE, +N1,61282,sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f,https://biolit.fr/sorties/sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f/,Phil,,1/14/2016 0:00,13.0000000,13.0000000,47.86941600000,-3.929275000000,,Concarneau - Finistère,55790,observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f-2,https://biolit.fr/observations/observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f-2/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1000784.JPG,,TRUE, +N1,61282,sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f,https://biolit.fr/sorties/sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f/,Phil,,1/14/2016 0:00,13.0000000,13.0000000,47.86941600000,-3.929275000000,,Concarneau - Finistère,55792,observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f-3,https://biolit.fr/observations/observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f-3/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1000784b -.jpg,,TRUE, +N1,61282,sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f,https://biolit.fr/sorties/sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f/,Phil,,1/14/2016 0:00,13.0000000,13.0000000,47.86941600000,-3.929275000000,,Concarneau - Finistère,55794,observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f-4,https://biolit.fr/observations/observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000786.JPG,,FALSE, +N1,61282,sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f,https://biolit.fr/sorties/sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f/,Phil,,1/14/2016 0:00,13.0000000,13.0000000,47.86941600000,-3.929275000000,,Concarneau - Finistère,55796,observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f-5,https://biolit.fr/observations/observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f-5/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/P1000790.JPG,,TRUE, +N1,61282,sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f,https://biolit.fr/sorties/sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f/,Phil,,1/14/2016 0:00,13.0000000,13.0000000,47.86941600000,-3.929275000000,,Concarneau - Finistère,55798,observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f-6,https://biolit.fr/observations/observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f-6/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/P1000839.JPG,,TRUE, +N1,61282,sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f,https://biolit.fr/sorties/sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f/,Phil,,1/14/2016 0:00,13.0000000,13.0000000,47.86941600000,-3.929275000000,,Concarneau - Finistère,55800,observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f-7,https://biolit.fr/observations/observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f-7/,Tethya citrina,Orange de mer de Manche Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1000767.JPG,,TRUE, +N1,61282,sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f,https://biolit.fr/sorties/sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f/,Phil,,1/14/2016 0:00,13.0000000,13.0000000,47.86941600000,-3.929275000000,,Concarneau - Finistère,55802,observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f-8,https://biolit.fr/observations/observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f-8/,Lomentaria articulata,Algue saucisson,,https://biolit.fr/wp-content/uploads/2023/07/P1000700.JPG,,TRUE, +N1,61282,sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f,https://biolit.fr/sorties/sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f/,Phil,,1/14/2016 0:00,13.0000000,13.0000000,47.86941600000,-3.929275000000,,Concarneau - Finistère,55804,observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f-9,https://biolit.fr/observations/observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f-9/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1000747.JPG,,TRUE, +N1,61283,sortie-73b55ec0-137a-4f87-bd1c-4035908a7457,https://biolit.fr/sorties/sortie-73b55ec0-137a-4f87-bd1c-4035908a7457/,Phil,,1/14/2016 0:00,13.0000000,13.0000000,47.868565000000,-3.929144000000,,Concarneau - Finistère,55806,observation-73b55ec0-137a-4f87-bd1c-4035908a7457,https://biolit.fr/observations/observation-73b55ec0-137a-4f87-bd1c-4035908a7457/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1000687.JPG,,TRUE, +N1,61283,sortie-73b55ec0-137a-4f87-bd1c-4035908a7457,https://biolit.fr/sorties/sortie-73b55ec0-137a-4f87-bd1c-4035908a7457/,Phil,,1/14/2016 0:00,13.0000000,13.0000000,47.868565000000,-3.929144000000,,Concarneau - Finistère,55808,observation-73b55ec0-137a-4f87-bd1c-4035908a7457-2,https://biolit.fr/observations/observation-73b55ec0-137a-4f87-bd1c-4035908a7457-2/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/2016-01-14-22h42m29s806.jpg,,TRUE, +N1,61283,sortie-73b55ec0-137a-4f87-bd1c-4035908a7457,https://biolit.fr/sorties/sortie-73b55ec0-137a-4f87-bd1c-4035908a7457/,Phil,,1/14/2016 0:00,13.0000000,13.0000000,47.868565000000,-3.929144000000,,Concarneau - Finistère,55810,observation-73b55ec0-137a-4f87-bd1c-4035908a7457-3,https://biolit.fr/observations/observation-73b55ec0-137a-4f87-bd1c-4035908a7457-3/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/2016-01-14-22h41m02s358.jpg,,TRUE, +N1,61283,sortie-73b55ec0-137a-4f87-bd1c-4035908a7457,https://biolit.fr/sorties/sortie-73b55ec0-137a-4f87-bd1c-4035908a7457/,Phil,,1/14/2016 0:00,13.0000000,13.0000000,47.868565000000,-3.929144000000,,Concarneau - Finistère,55812,observation-73b55ec0-137a-4f87-bd1c-4035908a7457-4,https://biolit.fr/observations/observation-73b55ec0-137a-4f87-bd1c-4035908a7457-4/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1000709.JPG,,TRUE, +N1,61283,sortie-73b55ec0-137a-4f87-bd1c-4035908a7457,https://biolit.fr/sorties/sortie-73b55ec0-137a-4f87-bd1c-4035908a7457/,Phil,,1/14/2016 0:00,13.0000000,13.0000000,47.868565000000,-3.929144000000,,Concarneau - Finistère,55814,observation-73b55ec0-137a-4f87-bd1c-4035908a7457-5,https://biolit.fr/observations/observation-73b55ec0-137a-4f87-bd1c-4035908a7457-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/2016-01-14-23h21m49s281.jpg,,FALSE, +N1,61283,sortie-73b55ec0-137a-4f87-bd1c-4035908a7457,https://biolit.fr/sorties/sortie-73b55ec0-137a-4f87-bd1c-4035908a7457/,Phil,,1/14/2016 0:00,13.0000000,13.0000000,47.868565000000,-3.929144000000,,Concarneau - Finistère,55816,observation-73b55ec0-137a-4f87-bd1c-4035908a7457-6,https://biolit.fr/observations/observation-73b55ec0-137a-4f87-bd1c-4035908a7457-6/,Membranipora membranacea,Membranipore,,https://biolit.fr/wp-content/uploads/2023/07/P1000678.JPG,,TRUE, +N1,61284,sortie-645f8e71-722c-422e-9d2b-11fd308c9f2b,https://biolit.fr/sorties/sortie-645f8e71-722c-422e-9d2b-11fd308c9f2b/,Phil,,1/14/2016 0:00,10.0:35,10.0:45,47.869946000000,-3.928187000000,,Concarneau - Finistère,55818,observation-645f8e71-722c-422e-9d2b-11fd308c9f2b,https://biolit.fr/observations/observation-645f8e71-722c-422e-9d2b-11fd308c9f2b/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/P1000640.JPG,,TRUE, +N1,61284,sortie-645f8e71-722c-422e-9d2b-11fd308c9f2b,https://biolit.fr/sorties/sortie-645f8e71-722c-422e-9d2b-11fd308c9f2b/,Phil,,1/14/2016 0:00,10.0:35,10.0:45,47.869946000000,-3.928187000000,,Concarneau - Finistère,55820,observation-645f8e71-722c-422e-9d2b-11fd308c9f2b-2,https://biolit.fr/observations/observation-645f8e71-722c-422e-9d2b-11fd308c9f2b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000639.JPG,,FALSE, +N1,61284,sortie-645f8e71-722c-422e-9d2b-11fd308c9f2b,https://biolit.fr/sorties/sortie-645f8e71-722c-422e-9d2b-11fd308c9f2b/,Phil,,1/14/2016 0:00,10.0:35,10.0:45,47.869946000000,-3.928187000000,,Concarneau - Finistère,55822,observation-645f8e71-722c-422e-9d2b-11fd308c9f2b-3,https://biolit.fr/observations/observation-645f8e71-722c-422e-9d2b-11fd308c9f2b-3/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/P1000633.JPG,,TRUE, +N1,61284,sortie-645f8e71-722c-422e-9d2b-11fd308c9f2b,https://biolit.fr/sorties/sortie-645f8e71-722c-422e-9d2b-11fd308c9f2b/,Phil,,1/14/2016 0:00,10.0:35,10.0:45,47.869946000000,-3.928187000000,,Concarneau - Finistère,55824,observation-645f8e71-722c-422e-9d2b-11fd308c9f2b-4,https://biolit.fr/observations/observation-645f8e71-722c-422e-9d2b-11fd308c9f2b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000647.JPG,,FALSE, +N1,61284,sortie-645f8e71-722c-422e-9d2b-11fd308c9f2b,https://biolit.fr/sorties/sortie-645f8e71-722c-422e-9d2b-11fd308c9f2b/,Phil,,1/14/2016 0:00,10.0:35,10.0:45,47.869946000000,-3.928187000000,,Concarneau - Finistère,55826,observation-645f8e71-722c-422e-9d2b-11fd308c9f2b-5,https://biolit.fr/observations/observation-645f8e71-722c-422e-9d2b-11fd308c9f2b-5/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1000628.JPG,,TRUE, +N1,61285,sortie-ad10d829-53b4-4215-b25c-aa6c07c47626,https://biolit.fr/sorties/sortie-ad10d829-53b4-4215-b25c-aa6c07c47626/,Phil,,1/14/2016 0:00,10.0:15,10.0000000,47.870477000000,-3.927963000000,,Concarneau - Finistère,55828,observation-ad10d829-53b4-4215-b25c-aa6c07c47626,https://biolit.fr/observations/observation-ad10d829-53b4-4215-b25c-aa6c07c47626/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1000448.JPG,,TRUE, +N1,61285,sortie-ad10d829-53b4-4215-b25c-aa6c07c47626,https://biolit.fr/sorties/sortie-ad10d829-53b4-4215-b25c-aa6c07c47626/,Phil,,1/14/2016 0:00,10.0:15,10.0000000,47.870477000000,-3.927963000000,,Concarneau - Finistère,55830,observation-ad10d829-53b4-4215-b25c-aa6c07c47626-2,https://biolit.fr/observations/observation-ad10d829-53b4-4215-b25c-aa6c07c47626-2/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1000635.JPG,,TRUE, +N1,61285,sortie-ad10d829-53b4-4215-b25c-aa6c07c47626,https://biolit.fr/sorties/sortie-ad10d829-53b4-4215-b25c-aa6c07c47626/,Phil,,1/14/2016 0:00,10.0:15,10.0000000,47.870477000000,-3.927963000000,,Concarneau - Finistère,55832,observation-ad10d829-53b4-4215-b25c-aa6c07c47626-3,https://biolit.fr/observations/observation-ad10d829-53b4-4215-b25c-aa6c07c47626-3/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1000525.JPG,,TRUE, +N1,61285,sortie-ad10d829-53b4-4215-b25c-aa6c07c47626,https://biolit.fr/sorties/sortie-ad10d829-53b4-4215-b25c-aa6c07c47626/,Phil,,1/14/2016 0:00,10.0:15,10.0000000,47.870477000000,-3.927963000000,,Concarneau - Finistère,55834,observation-ad10d829-53b4-4215-b25c-aa6c07c47626-4,https://biolit.fr/observations/observation-ad10d829-53b4-4215-b25c-aa6c07c47626-4/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1000573.JPG,,TRUE, +N1,61285,sortie-ad10d829-53b4-4215-b25c-aa6c07c47626,https://biolit.fr/sorties/sortie-ad10d829-53b4-4215-b25c-aa6c07c47626/,Phil,,1/14/2016 0:00,10.0:15,10.0000000,47.870477000000,-3.927963000000,,Concarneau - Finistère,55836,observation-ad10d829-53b4-4215-b25c-aa6c07c47626-5,https://biolit.fr/observations/observation-ad10d829-53b4-4215-b25c-aa6c07c47626-5/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1000611.JPG,,TRUE, +N1,61285,sortie-ad10d829-53b4-4215-b25c-aa6c07c47626,https://biolit.fr/sorties/sortie-ad10d829-53b4-4215-b25c-aa6c07c47626/,Phil,,1/14/2016 0:00,10.0:15,10.0000000,47.870477000000,-3.927963000000,,Concarneau - Finistère,55838,observation-ad10d829-53b4-4215-b25c-aa6c07c47626-6,https://biolit.fr/observations/observation-ad10d829-53b4-4215-b25c-aa6c07c47626-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000580.JPG,,FALSE, +N1,61285,sortie-ad10d829-53b4-4215-b25c-aa6c07c47626,https://biolit.fr/sorties/sortie-ad10d829-53b4-4215-b25c-aa6c07c47626/,Phil,,1/14/2016 0:00,10.0:15,10.0000000,47.870477000000,-3.927963000000,,Concarneau - Finistère,55840,observation-ad10d829-53b4-4215-b25c-aa6c07c47626-7,https://biolit.fr/observations/observation-ad10d829-53b4-4215-b25c-aa6c07c47626-7/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1000602.JPG,,TRUE, +N1,61285,sortie-ad10d829-53b4-4215-b25c-aa6c07c47626,https://biolit.fr/sorties/sortie-ad10d829-53b4-4215-b25c-aa6c07c47626/,Phil,,1/14/2016 0:00,10.0:15,10.0000000,47.870477000000,-3.927963000000,,Concarneau - Finistère,55842,observation-ad10d829-53b4-4215-b25c-aa6c07c47626-8,https://biolit.fr/observations/observation-ad10d829-53b4-4215-b25c-aa6c07c47626-8/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1000608.JPG,,TRUE, +N1,61286,sortie-185be9a8-3838-49ca-b742-2f1aa33b1041,https://biolit.fr/sorties/sortie-185be9a8-3838-49ca-b742-2f1aa33b1041/,Phil,,01/12/2016,10.0:45,10.0000000,47.871476000000,-3.916576000000,,Concarneau - Finistère,55844,observation-185be9a8-3838-49ca-b742-2f1aa33b1041,https://biolit.fr/observations/observation-185be9a8-3838-49ca-b742-2f1aa33b1041/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20160112_104435.jpg,,TRUE, +N1,61286,sortie-185be9a8-3838-49ca-b742-2f1aa33b1041,https://biolit.fr/sorties/sortie-185be9a8-3838-49ca-b742-2f1aa33b1041/,Phil,,01/12/2016,10.0:45,10.0000000,47.871476000000,-3.916576000000,,Concarneau - Finistère,55846,observation-185be9a8-3838-49ca-b742-2f1aa33b1041-2,https://biolit.fr/observations/observation-185be9a8-3838-49ca-b742-2f1aa33b1041-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160112_104457.jpg,,FALSE, +N1,61287,sortie-c1a9096d-049c-403f-bf8e-7af9512685c8,https://biolit.fr/sorties/sortie-c1a9096d-049c-403f-bf8e-7af9512685c8/,Centre de Découverte Mer et Montagne,,1/13/2016 0:00,14.0000000,15.0000000,43.692081000000,7.290469000000,,"Plage de la Réserve, Nice",55848,observation-c1a9096d-049c-403f-bf8e-7af9512685c8,https://biolit.fr/observations/observation-c1a9096d-049c-403f-bf8e-7af9512685c8/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/IMGP4203-scaled.jpg,,TRUE, +N1,61287,sortie-c1a9096d-049c-403f-bf8e-7af9512685c8,https://biolit.fr/sorties/sortie-c1a9096d-049c-403f-bf8e-7af9512685c8/,Centre de Découverte Mer et Montagne,,1/13/2016 0:00,14.0000000,15.0000000,43.692081000000,7.290469000000,,"Plage de la Réserve, Nice",55850,observation-c1a9096d-049c-403f-bf8e-7af9512685c8-2,https://biolit.fr/observations/observation-c1a9096d-049c-403f-bf8e-7af9512685c8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP4211-scaled.jpg,,FALSE, +N1,61287,sortie-c1a9096d-049c-403f-bf8e-7af9512685c8,https://biolit.fr/sorties/sortie-c1a9096d-049c-403f-bf8e-7af9512685c8/,Centre de Découverte Mer et Montagne,,1/13/2016 0:00,14.0000000,15.0000000,43.692081000000,7.290469000000,,"Plage de la Réserve, Nice",55852,observation-c1a9096d-049c-403f-bf8e-7af9512685c8-3,https://biolit.fr/observations/observation-c1a9096d-049c-403f-bf8e-7af9512685c8-3/,Halimeda tuna,Monnaie de Poséidon,,https://biolit.fr/wp-content/uploads/2023/07/IMGP4212-scaled.jpg,,TRUE, +N1,61287,sortie-c1a9096d-049c-403f-bf8e-7af9512685c8,https://biolit.fr/sorties/sortie-c1a9096d-049c-403f-bf8e-7af9512685c8/,Centre de Découverte Mer et Montagne,,1/13/2016 0:00,14.0000000,15.0000000,43.692081000000,7.290469000000,,"Plage de la Réserve, Nice",55854,observation-c1a9096d-049c-403f-bf8e-7af9512685c8-4,https://biolit.fr/observations/observation-c1a9096d-049c-403f-bf8e-7af9512685c8-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP4213-scaled.jpg,,FALSE, +N1,61287,sortie-c1a9096d-049c-403f-bf8e-7af9512685c8,https://biolit.fr/sorties/sortie-c1a9096d-049c-403f-bf8e-7af9512685c8/,Centre de Découverte Mer et Montagne,,1/13/2016 0:00,14.0000000,15.0000000,43.692081000000,7.290469000000,,"Plage de la Réserve, Nice",55856,observation-c1a9096d-049c-403f-bf8e-7af9512685c8-5,https://biolit.fr/observations/observation-c1a9096d-049c-403f-bf8e-7af9512685c8-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP4202-scaled.jpg,,FALSE, +N1,61287,sortie-c1a9096d-049c-403f-bf8e-7af9512685c8,https://biolit.fr/sorties/sortie-c1a9096d-049c-403f-bf8e-7af9512685c8/,Centre de Découverte Mer et Montagne,,1/13/2016 0:00,14.0000000,15.0000000,43.692081000000,7.290469000000,,"Plage de la Réserve, Nice",55858,observation-c1a9096d-049c-403f-bf8e-7af9512685c8-6,https://biolit.fr/observations/observation-c1a9096d-049c-403f-bf8e-7af9512685c8-6/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMGP4215-scaled.jpg,,TRUE, +N1,61287,sortie-c1a9096d-049c-403f-bf8e-7af9512685c8,https://biolit.fr/sorties/sortie-c1a9096d-049c-403f-bf8e-7af9512685c8/,Centre de Découverte Mer et Montagne,,1/13/2016 0:00,14.0000000,15.0000000,43.692081000000,7.290469000000,,"Plage de la Réserve, Nice",55860,observation-c1a9096d-049c-403f-bf8e-7af9512685c8-7,https://biolit.fr/observations/observation-c1a9096d-049c-403f-bf8e-7af9512685c8-7/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMGP4216-scaled.jpg,,TRUE, +N1,61287,sortie-c1a9096d-049c-403f-bf8e-7af9512685c8,https://biolit.fr/sorties/sortie-c1a9096d-049c-403f-bf8e-7af9512685c8/,Centre de Découverte Mer et Montagne,,1/13/2016 0:00,14.0000000,15.0000000,43.692081000000,7.290469000000,,"Plage de la Réserve, Nice",55862,observation-c1a9096d-049c-403f-bf8e-7af9512685c8-8,https://biolit.fr/observations/observation-c1a9096d-049c-403f-bf8e-7af9512685c8-8/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMGP4217-scaled.jpg,,TRUE, +N1,61287,sortie-c1a9096d-049c-403f-bf8e-7af9512685c8,https://biolit.fr/sorties/sortie-c1a9096d-049c-403f-bf8e-7af9512685c8/,Centre de Découverte Mer et Montagne,,1/13/2016 0:00,14.0000000,15.0000000,43.692081000000,7.290469000000,,"Plage de la Réserve, Nice",55864,observation-c1a9096d-049c-403f-bf8e-7af9512685c8-9,https://biolit.fr/observations/observation-c1a9096d-049c-403f-bf8e-7af9512685c8-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP4219-scaled.jpg,,FALSE, +N1,61288,sortie-f75b97cc-04d8-4987-9400-684676ac6990,https://biolit.fr/sorties/sortie-f75b97cc-04d8-4987-9400-684676ac6990/,Phil,,01/12/2016,10.0000000,10.0000000,47.871487000000,-3.916725000000,,Concarneau - Finistère,55866,observation-f75b97cc-04d8-4987-9400-684676ac6990,https://biolit.fr/observations/observation-f75b97cc-04d8-4987-9400-684676ac6990/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/20160112_103949.jpg,,TRUE, +N1,61288,sortie-f75b97cc-04d8-4987-9400-684676ac6990,https://biolit.fr/sorties/sortie-f75b97cc-04d8-4987-9400-684676ac6990/,Phil,,01/12/2016,10.0000000,10.0000000,47.871487000000,-3.916725000000,,Concarneau - Finistère,55868,observation-f75b97cc-04d8-4987-9400-684676ac6990-2,https://biolit.fr/observations/observation-f75b97cc-04d8-4987-9400-684676ac6990-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160112_104003.jpg,,FALSE, +N1,61288,sortie-f75b97cc-04d8-4987-9400-684676ac6990,https://biolit.fr/sorties/sortie-f75b97cc-04d8-4987-9400-684676ac6990/,Phil,,01/12/2016,10.0000000,10.0000000,47.871487000000,-3.916725000000,,Concarneau - Finistère,55870,observation-f75b97cc-04d8-4987-9400-684676ac6990-3,https://biolit.fr/observations/observation-f75b97cc-04d8-4987-9400-684676ac6990-3/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20160112_104232.jpg,,TRUE, +N1,61289,sortie-0d4fef0a-9a0d-4834-9c1e-aa63561bf2ae,https://biolit.fr/sorties/sortie-0d4fef0a-9a0d-4834-9c1e-aa63561bf2ae/,Phil,,01/12/2016,10.0000000,10.0:35,47.871684000000,-3.916877000000,,Concarneau - Finistère,55872,observation-0d4fef0a-9a0d-4834-9c1e-aa63561bf2ae,https://biolit.fr/observations/observation-0d4fef0a-9a0d-4834-9c1e-aa63561bf2ae/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160112_103236.jpg,,FALSE, +N1,61289,sortie-0d4fef0a-9a0d-4834-9c1e-aa63561bf2ae,https://biolit.fr/sorties/sortie-0d4fef0a-9a0d-4834-9c1e-aa63561bf2ae/,Phil,,01/12/2016,10.0000000,10.0:35,47.871684000000,-3.916877000000,,Concarneau - Finistère,55874,observation-0d4fef0a-9a0d-4834-9c1e-aa63561bf2ae-2,https://biolit.fr/observations/observation-0d4fef0a-9a0d-4834-9c1e-aa63561bf2ae-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160112_103230.jpg,,FALSE, +N1,61289,sortie-0d4fef0a-9a0d-4834-9c1e-aa63561bf2ae,https://biolit.fr/sorties/sortie-0d4fef0a-9a0d-4834-9c1e-aa63561bf2ae/,Phil,,01/12/2016,10.0000000,10.0:35,47.871684000000,-3.916877000000,,Concarneau - Finistère,55876,observation-0d4fef0a-9a0d-4834-9c1e-aa63561bf2ae-3,https://biolit.fr/observations/observation-0d4fef0a-9a0d-4834-9c1e-aa63561bf2ae-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160112_103301.jpg,,FALSE, +N1,61290,sortie-f9124c72-55d5-4685-ae5b-d96ee782566b,https://biolit.fr/sorties/sortie-f9124c72-55d5-4685-ae5b-d96ee782566b/,Phil,,01/10/2016,13.000005,13.0:15,48.094899000000,-4.299025000000,,Kerlaz - Finistère,55878,observation-f9124c72-55d5-4685-ae5b-d96ee782566b,https://biolit.fr/observations/observation-f9124c72-55d5-4685-ae5b-d96ee782566b/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000360.JPG,,FALSE, +N1,61290,sortie-f9124c72-55d5-4685-ae5b-d96ee782566b,https://biolit.fr/sorties/sortie-f9124c72-55d5-4685-ae5b-d96ee782566b/,Phil,,01/10/2016,13.000005,13.0:15,48.094899000000,-4.299025000000,,Kerlaz - Finistère,55880,observation-f9124c72-55d5-4685-ae5b-d96ee782566b-2,https://biolit.fr/observations/observation-f9124c72-55d5-4685-ae5b-d96ee782566b-2/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/P1000362.JPG,,TRUE, +N1,61290,sortie-f9124c72-55d5-4685-ae5b-d96ee782566b,https://biolit.fr/sorties/sortie-f9124c72-55d5-4685-ae5b-d96ee782566b/,Phil,,01/10/2016,13.000005,13.0:15,48.094899000000,-4.299025000000,,Kerlaz - Finistère,55882,observation-f9124c72-55d5-4685-ae5b-d96ee782566b-3,https://biolit.fr/observations/observation-f9124c72-55d5-4685-ae5b-d96ee782566b-3/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/P1000357.JPG,,TRUE, +N1,61290,sortie-f9124c72-55d5-4685-ae5b-d96ee782566b,https://biolit.fr/sorties/sortie-f9124c72-55d5-4685-ae5b-d96ee782566b/,Phil,,01/10/2016,13.000005,13.0:15,48.094899000000,-4.299025000000,,Kerlaz - Finistère,55884,observation-f9124c72-55d5-4685-ae5b-d96ee782566b-4,https://biolit.fr/observations/observation-f9124c72-55d5-4685-ae5b-d96ee782566b-4/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/P1000364.JPG,,TRUE, +N1,61291,sortie-02355feb-7111-4dd5-9644-f9826ce6133d,https://biolit.fr/sorties/sortie-02355feb-7111-4dd5-9644-f9826ce6133d/,Phil,,01/10/2016,12.0000000,13.0000000,48.094495000000,-4.299332000000,,Kerlaz - Finistère,55886,observation-02355feb-7111-4dd5-9644-f9826ce6133d,https://biolit.fr/observations/observation-02355feb-7111-4dd5-9644-f9826ce6133d/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P1000306.JPG,,TRUE, +N1,61291,sortie-02355feb-7111-4dd5-9644-f9826ce6133d,https://biolit.fr/sorties/sortie-02355feb-7111-4dd5-9644-f9826ce6133d/,Phil,,01/10/2016,12.0000000,13.0000000,48.094495000000,-4.299332000000,,Kerlaz - Finistère,55888,observation-02355feb-7111-4dd5-9644-f9826ce6133d-2,https://biolit.fr/observations/observation-02355feb-7111-4dd5-9644-f9826ce6133d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000295.JPG,,FALSE, +N1,61291,sortie-02355feb-7111-4dd5-9644-f9826ce6133d,https://biolit.fr/sorties/sortie-02355feb-7111-4dd5-9644-f9826ce6133d/,Phil,,01/10/2016,12.0000000,13.0000000,48.094495000000,-4.299332000000,,Kerlaz - Finistère,55890,observation-02355feb-7111-4dd5-9644-f9826ce6133d-3,https://biolit.fr/observations/observation-02355feb-7111-4dd5-9644-f9826ce6133d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000290-scaled.jpg,,FALSE, +N1,61291,sortie-02355feb-7111-4dd5-9644-f9826ce6133d,https://biolit.fr/sorties/sortie-02355feb-7111-4dd5-9644-f9826ce6133d/,Phil,,01/10/2016,12.0000000,13.0000000,48.094495000000,-4.299332000000,,Kerlaz - Finistère,55892,observation-02355feb-7111-4dd5-9644-f9826ce6133d-4,https://biolit.fr/observations/observation-02355feb-7111-4dd5-9644-f9826ce6133d-4/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/P1000258-scaled.jpg,,TRUE, +N1,61291,sortie-02355feb-7111-4dd5-9644-f9826ce6133d,https://biolit.fr/sorties/sortie-02355feb-7111-4dd5-9644-f9826ce6133d/,Phil,,01/10/2016,12.0000000,13.0000000,48.094495000000,-4.299332000000,,Kerlaz - Finistère,55894,observation-02355feb-7111-4dd5-9644-f9826ce6133d-5,https://biolit.fr/observations/observation-02355feb-7111-4dd5-9644-f9826ce6133d-5/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/P1000263.JPG,,TRUE, +N1,61291,sortie-02355feb-7111-4dd5-9644-f9826ce6133d,https://biolit.fr/sorties/sortie-02355feb-7111-4dd5-9644-f9826ce6133d/,Phil,,01/10/2016,12.0000000,13.0000000,48.094495000000,-4.299332000000,,Kerlaz - Finistère,55896,observation-02355feb-7111-4dd5-9644-f9826ce6133d-6,https://biolit.fr/observations/observation-02355feb-7111-4dd5-9644-f9826ce6133d-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000244.JPG,,FALSE, +N1,61291,sortie-02355feb-7111-4dd5-9644-f9826ce6133d,https://biolit.fr/sorties/sortie-02355feb-7111-4dd5-9644-f9826ce6133d/,Phil,,01/10/2016,12.0000000,13.0000000,48.094495000000,-4.299332000000,,Kerlaz - Finistère,55898,observation-02355feb-7111-4dd5-9644-f9826ce6133d-7,https://biolit.fr/observations/observation-02355feb-7111-4dd5-9644-f9826ce6133d-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000251-scaled.jpg,,FALSE, +N1,61292,sortie-226ab5b9-6541-466d-81cb-e800e7125030,https://biolit.fr/sorties/sortie-226ab5b9-6541-466d-81cb-e800e7125030/,Ville de Marseille,,12/14/2015 0:00,11.0000000,13.0000000,43.284284000000,5.316615000000,,"Calanque de St Estève, archipel du Frioul",55900,observation-226ab5b9-6541-466d-81cb-e800e7125030,https://biolit.fr/observations/observation-226ab5b9-6541-466d-81cb-e800e7125030/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060353-scaled.jpg,,FALSE, +N1,61292,sortie-226ab5b9-6541-466d-81cb-e800e7125030,https://biolit.fr/sorties/sortie-226ab5b9-6541-466d-81cb-e800e7125030/,Ville de Marseille,,12/14/2015 0:00,11.0000000,13.0000000,43.284284000000,5.316615000000,,"Calanque de St Estève, archipel du Frioul",55902,observation-226ab5b9-6541-466d-81cb-e800e7125030-2,https://biolit.fr/observations/observation-226ab5b9-6541-466d-81cb-e800e7125030-2/,Pinna nobilis,Grande nacre,,https://biolit.fr/wp-content/uploads/2023/07/P1060354-scaled.jpg,,TRUE, +N1,61292,sortie-226ab5b9-6541-466d-81cb-e800e7125030,https://biolit.fr/sorties/sortie-226ab5b9-6541-466d-81cb-e800e7125030/,Ville de Marseille,,12/14/2015 0:00,11.0000000,13.0000000,43.284284000000,5.316615000000,,"Calanque de St Estève, archipel du Frioul",55904,observation-226ab5b9-6541-466d-81cb-e800e7125030-3,https://biolit.fr/observations/observation-226ab5b9-6541-466d-81cb-e800e7125030-3/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/P1060355-scaled.jpg,,TRUE, +N1,61292,sortie-226ab5b9-6541-466d-81cb-e800e7125030,https://biolit.fr/sorties/sortie-226ab5b9-6541-466d-81cb-e800e7125030/,Ville de Marseille,,12/14/2015 0:00,11.0000000,13.0000000,43.284284000000,5.316615000000,,"Calanque de St Estève, archipel du Frioul",55906,observation-226ab5b9-6541-466d-81cb-e800e7125030-4,https://biolit.fr/observations/observation-226ab5b9-6541-466d-81cb-e800e7125030-4/,Maja squinado,Grande araignée de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/P1060356-scaled.jpg,,TRUE, +N1,61292,sortie-226ab5b9-6541-466d-81cb-e800e7125030,https://biolit.fr/sorties/sortie-226ab5b9-6541-466d-81cb-e800e7125030/,Ville de Marseille,,12/14/2015 0:00,11.0000000,13.0000000,43.284284000000,5.316615000000,,"Calanque de St Estève, archipel du Frioul",55908,observation-226ab5b9-6541-466d-81cb-e800e7125030-5,https://biolit.fr/observations/observation-226ab5b9-6541-466d-81cb-e800e7125030-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060357-scaled.jpg,,FALSE, +N1,61292,sortie-226ab5b9-6541-466d-81cb-e800e7125030,https://biolit.fr/sorties/sortie-226ab5b9-6541-466d-81cb-e800e7125030/,Ville de Marseille,,12/14/2015 0:00,11.0000000,13.0000000,43.284284000000,5.316615000000,,"Calanque de St Estève, archipel du Frioul",55910,observation-226ab5b9-6541-466d-81cb-e800e7125030-6,https://biolit.fr/observations/observation-226ab5b9-6541-466d-81cb-e800e7125030-6/,Larus michahellis,Goéland leucophée,,https://biolit.fr/wp-content/uploads/2023/07/P1060361-scaled.jpg,,TRUE, +N1,61292,sortie-226ab5b9-6541-466d-81cb-e800e7125030,https://biolit.fr/sorties/sortie-226ab5b9-6541-466d-81cb-e800e7125030/,Ville de Marseille,,12/14/2015 0:00,11.0000000,13.0000000,43.284284000000,5.316615000000,,"Calanque de St Estève, archipel du Frioul",55912,observation-226ab5b9-6541-466d-81cb-e800e7125030-7,https://biolit.fr/observations/observation-226ab5b9-6541-466d-81cb-e800e7125030-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060362-scaled.jpg,,FALSE, +N1,61292,sortie-226ab5b9-6541-466d-81cb-e800e7125030,https://biolit.fr/sorties/sortie-226ab5b9-6541-466d-81cb-e800e7125030/,Ville de Marseille,,12/14/2015 0:00,11.0000000,13.0000000,43.284284000000,5.316615000000,,"Calanque de St Estève, archipel du Frioul",55914,observation-226ab5b9-6541-466d-81cb-e800e7125030-8,https://biolit.fr/observations/observation-226ab5b9-6541-466d-81cb-e800e7125030-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060366-scaled.jpg,,FALSE, +N1,61292,sortie-226ab5b9-6541-466d-81cb-e800e7125030,https://biolit.fr/sorties/sortie-226ab5b9-6541-466d-81cb-e800e7125030/,Ville de Marseille,,12/14/2015 0:00,11.0000000,13.0000000,43.284284000000,5.316615000000,,"Calanque de St Estève, archipel du Frioul",55916,observation-226ab5b9-6541-466d-81cb-e800e7125030-9,https://biolit.fr/observations/observation-226ab5b9-6541-466d-81cb-e800e7125030-9/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/P1060367-scaled.jpg,,TRUE, +N1,61292,sortie-226ab5b9-6541-466d-81cb-e800e7125030,https://biolit.fr/sorties/sortie-226ab5b9-6541-466d-81cb-e800e7125030/,Ville de Marseille,,12/14/2015 0:00,11.0000000,13.0000000,43.284284000000,5.316615000000,,"Calanque de St Estève, archipel du Frioul",55918,observation-226ab5b9-6541-466d-81cb-e800e7125030-10,https://biolit.fr/observations/observation-226ab5b9-6541-466d-81cb-e800e7125030-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060368-scaled.jpg,,FALSE, +N1,61292,sortie-226ab5b9-6541-466d-81cb-e800e7125030,https://biolit.fr/sorties/sortie-226ab5b9-6541-466d-81cb-e800e7125030/,Ville de Marseille,,12/14/2015 0:00,11.0000000,13.0000000,43.284284000000,5.316615000000,,"Calanque de St Estève, archipel du Frioul",55920,observation-226ab5b9-6541-466d-81cb-e800e7125030-11,https://biolit.fr/observations/observation-226ab5b9-6541-466d-81cb-e800e7125030-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060369-scaled.jpg,,FALSE, +N1,61292,sortie-226ab5b9-6541-466d-81cb-e800e7125030,https://biolit.fr/sorties/sortie-226ab5b9-6541-466d-81cb-e800e7125030/,Ville de Marseille,,12/14/2015 0:00,11.0000000,13.0000000,43.284284000000,5.316615000000,,"Calanque de St Estève, archipel du Frioul",55922,observation-226ab5b9-6541-466d-81cb-e800e7125030-12,https://biolit.fr/observations/observation-226ab5b9-6541-466d-81cb-e800e7125030-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060371-scaled.jpg,,FALSE, +N1,61292,sortie-226ab5b9-6541-466d-81cb-e800e7125030,https://biolit.fr/sorties/sortie-226ab5b9-6541-466d-81cb-e800e7125030/,Ville de Marseille,,12/14/2015 0:00,11.0000000,13.0000000,43.284284000000,5.316615000000,,"Calanque de St Estève, archipel du Frioul",55924,observation-226ab5b9-6541-466d-81cb-e800e7125030-13,https://biolit.fr/observations/observation-226ab5b9-6541-466d-81cb-e800e7125030-13/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/P1060372-scaled.jpg,,TRUE, +N1,61292,sortie-226ab5b9-6541-466d-81cb-e800e7125030,https://biolit.fr/sorties/sortie-226ab5b9-6541-466d-81cb-e800e7125030/,Ville de Marseille,,12/14/2015 0:00,11.0000000,13.0000000,43.284284000000,5.316615000000,,"Calanque de St Estève, archipel du Frioul",55926,observation-226ab5b9-6541-466d-81cb-e800e7125030-14,https://biolit.fr/observations/observation-226ab5b9-6541-466d-81cb-e800e7125030-14/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/P1060373-scaled.jpg,,TRUE, +N1,61293,sortie-480c2ef6-9013-49c9-b17e-de882011dac8,https://biolit.fr/sorties/sortie-480c2ef6-9013-49c9-b17e-de882011dac8/,Ville de Marseille,,12/11/2015,10.0000000,12.0000000,43.238184000000,5.361440000000,,"plage du Bain des Dames, Marseille",55928,observation-480c2ef6-9013-49c9-b17e-de882011dac8,https://biolit.fr/observations/observation-480c2ef6-9013-49c9-b17e-de882011dac8/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/P1060307-scaled.jpg,,TRUE, +N1,61293,sortie-480c2ef6-9013-49c9-b17e-de882011dac8,https://biolit.fr/sorties/sortie-480c2ef6-9013-49c9-b17e-de882011dac8/,Ville de Marseille,,12/11/2015,10.0000000,12.0000000,43.238184000000,5.361440000000,,"plage du Bain des Dames, Marseille",55930,observation-480c2ef6-9013-49c9-b17e-de882011dac8-2,https://biolit.fr/observations/observation-480c2ef6-9013-49c9-b17e-de882011dac8-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/P1060309-scaled.jpg,,TRUE, +N1,61293,sortie-480c2ef6-9013-49c9-b17e-de882011dac8,https://biolit.fr/sorties/sortie-480c2ef6-9013-49c9-b17e-de882011dac8/,Ville de Marseille,,12/11/2015,10.0000000,12.0000000,43.238184000000,5.361440000000,,"plage du Bain des Dames, Marseille",55932,observation-480c2ef6-9013-49c9-b17e-de882011dac8-3,https://biolit.fr/observations/observation-480c2ef6-9013-49c9-b17e-de882011dac8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060311-scaled.jpg,,FALSE, +N1,61293,sortie-480c2ef6-9013-49c9-b17e-de882011dac8,https://biolit.fr/sorties/sortie-480c2ef6-9013-49c9-b17e-de882011dac8/,Ville de Marseille,,12/11/2015,10.0000000,12.0000000,43.238184000000,5.361440000000,,"plage du Bain des Dames, Marseille",55934,observation-480c2ef6-9013-49c9-b17e-de882011dac8-4,https://biolit.fr/observations/observation-480c2ef6-9013-49c9-b17e-de882011dac8-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060310-scaled.jpg,,FALSE, +N1,61293,sortie-480c2ef6-9013-49c9-b17e-de882011dac8,https://biolit.fr/sorties/sortie-480c2ef6-9013-49c9-b17e-de882011dac8/,Ville de Marseille,,12/11/2015,10.0000000,12.0000000,43.238184000000,5.361440000000,,"plage du Bain des Dames, Marseille",55936,observation-480c2ef6-9013-49c9-b17e-de882011dac8-5,https://biolit.fr/observations/observation-480c2ef6-9013-49c9-b17e-de882011dac8-5/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/P1060314-scaled.jpg,,TRUE, +N1,61293,sortie-480c2ef6-9013-49c9-b17e-de882011dac8,https://biolit.fr/sorties/sortie-480c2ef6-9013-49c9-b17e-de882011dac8/,Ville de Marseille,,12/11/2015,10.0000000,12.0000000,43.238184000000,5.361440000000,,"plage du Bain des Dames, Marseille",55938,observation-480c2ef6-9013-49c9-b17e-de882011dac8-6,https://biolit.fr/observations/observation-480c2ef6-9013-49c9-b17e-de882011dac8-6/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/P1060315.jpg,,, +N1,61293,sortie-480c2ef6-9013-49c9-b17e-de882011dac8,https://biolit.fr/sorties/sortie-480c2ef6-9013-49c9-b17e-de882011dac8/,Ville de Marseille,,12/11/2015,10.0000000,12.0000000,43.238184000000,5.361440000000,,"plage du Bain des Dames, Marseille",55939,observation-480c2ef6-9013-49c9-b17e-de882011dac8-7,https://biolit.fr/observations/observation-480c2ef6-9013-49c9-b17e-de882011dac8-7/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/P1060316-scaled.jpg,,TRUE, +N1,61293,sortie-480c2ef6-9013-49c9-b17e-de882011dac8,https://biolit.fr/sorties/sortie-480c2ef6-9013-49c9-b17e-de882011dac8/,Ville de Marseille,,12/11/2015,10.0000000,12.0000000,43.238184000000,5.361440000000,,"plage du Bain des Dames, Marseille",55941,observation-480c2ef6-9013-49c9-b17e-de882011dac8-8,https://biolit.fr/observations/observation-480c2ef6-9013-49c9-b17e-de882011dac8-8/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/2023/07/P1060317-scaled.jpg,,TRUE, +N1,61293,sortie-480c2ef6-9013-49c9-b17e-de882011dac8,https://biolit.fr/sorties/sortie-480c2ef6-9013-49c9-b17e-de882011dac8/,Ville de Marseille,,12/11/2015,10.0000000,12.0000000,43.238184000000,5.361440000000,,"plage du Bain des Dames, Marseille",55943,observation-480c2ef6-9013-49c9-b17e-de882011dac8-9,https://biolit.fr/observations/observation-480c2ef6-9013-49c9-b17e-de882011dac8-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060318-scaled.jpg,,FALSE, +N1,61293,sortie-480c2ef6-9013-49c9-b17e-de882011dac8,https://biolit.fr/sorties/sortie-480c2ef6-9013-49c9-b17e-de882011dac8/,Ville de Marseille,,12/11/2015,10.0000000,12.0000000,43.238184000000,5.361440000000,,"plage du Bain des Dames, Marseille",55945,observation-480c2ef6-9013-49c9-b17e-de882011dac8-10,https://biolit.fr/observations/observation-480c2ef6-9013-49c9-b17e-de882011dac8-10/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/P1060320-scaled.jpg,,TRUE, +N1,61293,sortie-480c2ef6-9013-49c9-b17e-de882011dac8,https://biolit.fr/sorties/sortie-480c2ef6-9013-49c9-b17e-de882011dac8/,Ville de Marseille,,12/11/2015,10.0000000,12.0000000,43.238184000000,5.361440000000,,"plage du Bain des Dames, Marseille",55947,observation-480c2ef6-9013-49c9-b17e-de882011dac8-11,https://biolit.fr/observations/observation-480c2ef6-9013-49c9-b17e-de882011dac8-11/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/P1060319-scaled.jpg,,TRUE, +N1,61293,sortie-480c2ef6-9013-49c9-b17e-de882011dac8,https://biolit.fr/sorties/sortie-480c2ef6-9013-49c9-b17e-de882011dac8/,Ville de Marseille,,12/11/2015,10.0000000,12.0000000,43.238184000000,5.361440000000,,"plage du Bain des Dames, Marseille",55949,observation-480c2ef6-9013-49c9-b17e-de882011dac8-12,https://biolit.fr/observations/observation-480c2ef6-9013-49c9-b17e-de882011dac8-12/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/2023/07/P1060321-scaled.jpg,,TRUE, +N1,61293,sortie-480c2ef6-9013-49c9-b17e-de882011dac8,https://biolit.fr/sorties/sortie-480c2ef6-9013-49c9-b17e-de882011dac8/,Ville de Marseille,,12/11/2015,10.0000000,12.0000000,43.238184000000,5.361440000000,,"plage du Bain des Dames, Marseille",55951,observation-480c2ef6-9013-49c9-b17e-de882011dac8-13,https://biolit.fr/observations/observation-480c2ef6-9013-49c9-b17e-de882011dac8-13/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/2023/07/P1060322-scaled.jpg,,TRUE, +N1,61293,sortie-480c2ef6-9013-49c9-b17e-de882011dac8,https://biolit.fr/sorties/sortie-480c2ef6-9013-49c9-b17e-de882011dac8/,Ville de Marseille,,12/11/2015,10.0000000,12.0000000,43.238184000000,5.361440000000,,"plage du Bain des Dames, Marseille",55953,observation-480c2ef6-9013-49c9-b17e-de882011dac8-14,https://biolit.fr/observations/observation-480c2ef6-9013-49c9-b17e-de882011dac8-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060306-scaled.jpg,,FALSE, +N1,61294,sortie-65e88b00-5fae-4fe8-a78d-89eee3003503,https://biolit.fr/sorties/sortie-65e88b00-5fae-4fe8-a78d-89eee3003503/,Ville de Marseille,,12/04/2015,10.0000000,11.0000000,43.267855000000,5.370329000000,,"Petite plage de sable, Bassin du Roucas Blanc",55955,observation-65e88b00-5fae-4fe8-a78d-89eee3003503,https://biolit.fr/observations/observation-65e88b00-5fae-4fe8-a78d-89eee3003503/,,,,https://biolit.fr/wp-content/uploads/2023/07/PC041093-scaled.jpg,,FALSE, +N1,61295,sortie-17300565-d51d-4d7b-8249-b03aee2da397,https://biolit.fr/sorties/sortie-17300565-d51d-4d7b-8249-b03aee2da397/,Phil,,01/10/2016,12.0:25,12.0000000,48.095130000000,-4.298680000000,,Kerlaz - Finistère,55957,observation-17300565-d51d-4d7b-8249-b03aee2da397,https://biolit.fr/observations/observation-17300565-d51d-4d7b-8249-b03aee2da397/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000223.JPG,,FALSE, +N1,61295,sortie-17300565-d51d-4d7b-8249-b03aee2da397,https://biolit.fr/sorties/sortie-17300565-d51d-4d7b-8249-b03aee2da397/,Phil,,01/10/2016,12.0:25,12.0000000,48.095130000000,-4.298680000000,,Kerlaz - Finistère,55959,observation-17300565-d51d-4d7b-8249-b03aee2da397-2,https://biolit.fr/observations/observation-17300565-d51d-4d7b-8249-b03aee2da397-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000389.JPG,,FALSE, +N1,61296,sortie-99b216d6-35b1-4a84-ba2b-1cb20c6890d0,https://biolit.fr/sorties/sortie-99b216d6-35b1-4a84-ba2b-1cb20c6890d0/,Phil,,11/06/2015,12.0000000,12.0:25,47.791462000000,-4.27708700000,,Léchiagat - Finistère,55961,observation-99b216d6-35b1-4a84-ba2b-1cb20c6890d0,https://biolit.fr/observations/observation-99b216d6-35b1-4a84-ba2b-1cb20c6890d0/,Ramalina siliquosa,Ramaline des rochers,,https://biolit.fr/wp-content/uploads/2023/07/20151106_122714.jpg,,TRUE, +N1,61296,sortie-99b216d6-35b1-4a84-ba2b-1cb20c6890d0,https://biolit.fr/sorties/sortie-99b216d6-35b1-4a84-ba2b-1cb20c6890d0/,Phil,,11/06/2015,12.0000000,12.0:25,47.791462000000,-4.27708700000,,Léchiagat - Finistère,55963,observation-99b216d6-35b1-4a84-ba2b-1cb20c6890d0-2,https://biolit.fr/observations/observation-99b216d6-35b1-4a84-ba2b-1cb20c6890d0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_131913.jpg,,FALSE, +N1,61296,sortie-99b216d6-35b1-4a84-ba2b-1cb20c6890d0,https://biolit.fr/sorties/sortie-99b216d6-35b1-4a84-ba2b-1cb20c6890d0/,Phil,,11/06/2015,12.0000000,12.0:25,47.791462000000,-4.27708700000,,Léchiagat - Finistère,55965,observation-99b216d6-35b1-4a84-ba2b-1cb20c6890d0-3,https://biolit.fr/observations/observation-99b216d6-35b1-4a84-ba2b-1cb20c6890d0-3/,Calidris maritima,Bécasseau violet,,https://biolit.fr/wp-content/uploads/2023/07/20151106_131945.jpg,,TRUE, +N1,61296,sortie-99b216d6-35b1-4a84-ba2b-1cb20c6890d0,https://biolit.fr/sorties/sortie-99b216d6-35b1-4a84-ba2b-1cb20c6890d0/,Phil,,11/06/2015,12.0000000,12.0:25,47.791462000000,-4.27708700000,,Léchiagat - Finistère,55967,observation-99b216d6-35b1-4a84-ba2b-1cb20c6890d0-4,https://biolit.fr/observations/observation-99b216d6-35b1-4a84-ba2b-1cb20c6890d0-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_132016.jpg,,FALSE, +N1,61296,sortie-99b216d6-35b1-4a84-ba2b-1cb20c6890d0,https://biolit.fr/sorties/sortie-99b216d6-35b1-4a84-ba2b-1cb20c6890d0/,Phil,,11/06/2015,12.0000000,12.0:25,47.791462000000,-4.27708700000,,Léchiagat - Finistère,55969,observation-99b216d6-35b1-4a84-ba2b-1cb20c6890d0-5,https://biolit.fr/observations/observation-99b216d6-35b1-4a84-ba2b-1cb20c6890d0-5/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/20151106_132108.jpg,,TRUE, +N1,61296,sortie-99b216d6-35b1-4a84-ba2b-1cb20c6890d0,https://biolit.fr/sorties/sortie-99b216d6-35b1-4a84-ba2b-1cb20c6890d0/,Phil,,11/06/2015,12.0000000,12.0:25,47.791462000000,-4.27708700000,,Léchiagat - Finistère,55971,observation-99b216d6-35b1-4a84-ba2b-1cb20c6890d0-6,https://biolit.fr/observations/observation-99b216d6-35b1-4a84-ba2b-1cb20c6890d0-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_132230.jpg,,FALSE, +N1,61297,sortie-65df7f92-9f90-44d7-96d6-802d45979e37,https://biolit.fr/sorties/sortie-65df7f92-9f90-44d7-96d6-802d45979e37/,Phil,,11/06/2015,11.0:55,12.0000000,47.79449900000,-4.294711000000,,Le Guilvinec - Finistère,55973,observation-65df7f92-9f90-44d7-96d6-802d45979e37,https://biolit.fr/observations/observation-65df7f92-9f90-44d7-96d6-802d45979e37/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_115409_0.jpg,,FALSE, +N1,61297,sortie-65df7f92-9f90-44d7-96d6-802d45979e37,https://biolit.fr/sorties/sortie-65df7f92-9f90-44d7-96d6-802d45979e37/,Phil,,11/06/2015,11.0:55,12.0000000,47.79449900000,-4.294711000000,,Le Guilvinec - Finistère,55975,observation-65df7f92-9f90-44d7-96d6-802d45979e37-2,https://biolit.fr/observations/observation-65df7f92-9f90-44d7-96d6-802d45979e37-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151106_120032.jpg,,TRUE, +N1,61297,sortie-65df7f92-9f90-44d7-96d6-802d45979e37,https://biolit.fr/sorties/sortie-65df7f92-9f90-44d7-96d6-802d45979e37/,Phil,,11/06/2015,11.0:55,12.0000000,47.79449900000,-4.294711000000,,Le Guilvinec - Finistère,55977,observation-65df7f92-9f90-44d7-96d6-802d45979e37-3,https://biolit.fr/observations/observation-65df7f92-9f90-44d7-96d6-802d45979e37-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151106_120004.jpg,,TRUE, +N1,61297,sortie-65df7f92-9f90-44d7-96d6-802d45979e37,https://biolit.fr/sorties/sortie-65df7f92-9f90-44d7-96d6-802d45979e37/,Phil,,11/06/2015,11.0:55,12.0000000,47.79449900000,-4.294711000000,,Le Guilvinec - Finistère,55979,observation-65df7f92-9f90-44d7-96d6-802d45979e37-4,https://biolit.fr/observations/observation-65df7f92-9f90-44d7-96d6-802d45979e37-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_120302.jpg,,FALSE, +N1,61298,sortie-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58,https://biolit.fr/sorties/sortie-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58/,Phil,,01/04/2016,10.0:45,10.0000000,47.87009300000,-3.922854000000,,Concarneau - Finistère,55981,observation-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58,https://biolit.fr/observations/observation-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160104_104620.jpg,,FALSE, +N1,61298,sortie-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58,https://biolit.fr/sorties/sortie-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58/,Phil,,01/04/2016,10.0:45,10.0000000,47.87009300000,-3.922854000000,,Concarneau - Finistère,55983,observation-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58-2,https://biolit.fr/observations/observation-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160104_104653.jpg,,FALSE, +N1,61298,sortie-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58,https://biolit.fr/sorties/sortie-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58/,Phil,,01/04/2016,10.0:45,10.0000000,47.87009300000,-3.922854000000,,Concarneau - Finistère,55985,observation-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58-3,https://biolit.fr/observations/observation-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160104_104751.jpg,,FALSE, +N1,61298,sortie-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58,https://biolit.fr/sorties/sortie-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58/,Phil,,01/04/2016,10.0:45,10.0000000,47.87009300000,-3.922854000000,,Concarneau - Finistère,55987,observation-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58-4,https://biolit.fr/observations/observation-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160104_104710.jpg,,FALSE, +N1,61298,sortie-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58,https://biolit.fr/sorties/sortie-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58/,Phil,,01/04/2016,10.0:45,10.0000000,47.87009300000,-3.922854000000,,Concarneau - Finistère,55989,observation-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58-5,https://biolit.fr/observations/observation-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58-5/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/20160104_105123.jpg,,TRUE, +N1,61299,sortie-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c,https://biolit.fr/sorties/sortie-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c/,Phil,,11/06/2015,13.0000000,13.0:35,47.792529000000,-4.278967000000,,Léchiagat - Finistère,55991,observation-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c,https://biolit.fr/observations/observation-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151106_133115.jpg,,TRUE, +N1,61299,sortie-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c,https://biolit.fr/sorties/sortie-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c/,Phil,,11/06/2015,13.0000000,13.0:35,47.792529000000,-4.278967000000,,Léchiagat - Finistère,55993,observation-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c-2,https://biolit.fr/observations/observation-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_133231.jpg,,FALSE, +N1,61299,sortie-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c,https://biolit.fr/sorties/sortie-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c/,Phil,,11/06/2015,13.0000000,13.0:35,47.792529000000,-4.278967000000,,Léchiagat - Finistère,55995,observation-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c-3,https://biolit.fr/observations/observation-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_133340.jpg,,FALSE, +N1,61299,sortie-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c,https://biolit.fr/sorties/sortie-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c/,Phil,,11/06/2015,13.0000000,13.0:35,47.792529000000,-4.278967000000,,Léchiagat - Finistère,55997,observation-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c-4,https://biolit.fr/observations/observation-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_133511.jpg,,FALSE, +N1,61299,sortie-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c,https://biolit.fr/sorties/sortie-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c/,Phil,,11/06/2015,13.0000000,13.0:35,47.792529000000,-4.278967000000,,Léchiagat - Finistère,55999,observation-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c-5,https://biolit.fr/observations/observation-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_133612.jpg,,FALSE, +N1,61300,sortie-64d453e0-180a-4c4a-a304-cec11c9f97c3,https://biolit.fr/sorties/sortie-64d453e0-180a-4c4a-a304-cec11c9f97c3/,Phil,,01/04/2016,10.0000000,10.0:45,47.87000600000,-3.922167000000,,Concarneau - Finistère,56001,observation-64d453e0-180a-4c4a-a304-cec11c9f97c3,https://biolit.fr/observations/observation-64d453e0-180a-4c4a-a304-cec11c9f97c3/,Trididemnum cereum,Didemnide cire,,https://biolit.fr/wp-content/uploads/2023/07/20160104_104111.jpg,,TRUE, +N1,61300,sortie-64d453e0-180a-4c4a-a304-cec11c9f97c3,https://biolit.fr/sorties/sortie-64d453e0-180a-4c4a-a304-cec11c9f97c3/,Phil,,01/04/2016,10.0000000,10.0:45,47.87000600000,-3.922167000000,,Concarneau - Finistère,56003,observation-64d453e0-180a-4c4a-a304-cec11c9f97c3-2,https://biolit.fr/observations/observation-64d453e0-180a-4c4a-a304-cec11c9f97c3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160104_104055.jpg,,FALSE, +N1,61300,sortie-64d453e0-180a-4c4a-a304-cec11c9f97c3,https://biolit.fr/sorties/sortie-64d453e0-180a-4c4a-a304-cec11c9f97c3/,Phil,,01/04/2016,10.0000000,10.0:45,47.87000600000,-3.922167000000,,Concarneau - Finistère,56005,observation-64d453e0-180a-4c4a-a304-cec11c9f97c3-3,https://biolit.fr/observations/observation-64d453e0-180a-4c4a-a304-cec11c9f97c3-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160104_104950.jpg,,FALSE, +N1,61300,sortie-64d453e0-180a-4c4a-a304-cec11c9f97c3,https://biolit.fr/sorties/sortie-64d453e0-180a-4c4a-a304-cec11c9f97c3/,Phil,,01/04/2016,10.0000000,10.0:45,47.87000600000,-3.922167000000,,Concarneau - Finistère,56007,observation-64d453e0-180a-4c4a-a304-cec11c9f97c3-4,https://biolit.fr/observations/observation-64d453e0-180a-4c4a-a304-cec11c9f97c3-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160104_105005.jpg,,FALSE, +N1,61301,sortie-7c13e91a-fe2d-4958-a511-04e8587ec31a,https://biolit.fr/sorties/sortie-7c13e91a-fe2d-4958-a511-04e8587ec31a/,Les Dodos,,12/28/2015 0:00,15.0000000,16.0:15,43.14784200000,6.420360000000,,Cavalière,56009,observation-7c13e91a-fe2d-4958-a511-04e8587ec31a,https://biolit.fr/observations/observation-7c13e91a-fe2d-4958-a511-04e8587ec31a/,Sacculina carcini,Sacculine du crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20151228_162503[1]-scaled.jpg,,TRUE, +N1,61301,sortie-7c13e91a-fe2d-4958-a511-04e8587ec31a,https://biolit.fr/sorties/sortie-7c13e91a-fe2d-4958-a511-04e8587ec31a/,Les Dodos,,12/28/2015 0:00,15.0000000,16.0:15,43.14784200000,6.420360000000,,Cavalière,56011,observation-7c13e91a-fe2d-4958-a511-04e8587ec31a-2,https://biolit.fr/observations/observation-7c13e91a-fe2d-4958-a511-04e8587ec31a-2/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20151228_163200[1]-scaled.jpg,,TRUE, +N1,61302,sortie-65ff3706-0bd0-452a-bbbd-14b312bfc7f0,https://biolit.fr/sorties/sortie-65ff3706-0bd0-452a-bbbd-14b312bfc7f0/,Phil,,11/06/2015,12.0000000,12.0:45,47.798407000000,-4.349200000000,,Penmarc'h - Finistère,56013,observation-65ff3706-0bd0-452a-bbbd-14b312bfc7f0,https://biolit.fr/observations/observation-65ff3706-0bd0-452a-bbbd-14b312bfc7f0/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/20151106_124312.jpg,,TRUE, +N1,61302,sortie-65ff3706-0bd0-452a-bbbd-14b312bfc7f0,https://biolit.fr/sorties/sortie-65ff3706-0bd0-452a-bbbd-14b312bfc7f0/,Phil,,11/06/2015,12.0000000,12.0:45,47.798407000000,-4.349200000000,,Penmarc'h - Finistère,56015,observation-65ff3706-0bd0-452a-bbbd-14b312bfc7f0-2,https://biolit.fr/observations/observation-65ff3706-0bd0-452a-bbbd-14b312bfc7f0-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151106_124413.jpg,,TRUE, +N1,61302,sortie-65ff3706-0bd0-452a-bbbd-14b312bfc7f0,https://biolit.fr/sorties/sortie-65ff3706-0bd0-452a-bbbd-14b312bfc7f0/,Phil,,11/06/2015,12.0000000,12.0:45,47.798407000000,-4.349200000000,,Penmarc'h - Finistère,56017,observation-65ff3706-0bd0-452a-bbbd-14b312bfc7f0-3,https://biolit.fr/observations/observation-65ff3706-0bd0-452a-bbbd-14b312bfc7f0-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151106_124429.jpg,,TRUE, +N1,61303,sortie-c526711b-47ac-42ce-8ab6-4220e9464a1f,https://biolit.fr/sorties/sortie-c526711b-47ac-42ce-8ab6-4220e9464a1f/,Phil,,11/06/2015,11.0:35,11.0000000,47.792448000000,-4.293869000000,,Le Guilvinec - Finistère,56019,observation-c526711b-47ac-42ce-8ab6-4220e9464a1f,https://biolit.fr/observations/observation-c526711b-47ac-42ce-8ab6-4220e9464a1f/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_113723.jpg,,FALSE, +N1,61304,sortie-cc3377ba-b13f-4317-9699-d8720148380a,https://biolit.fr/sorties/sortie-cc3377ba-b13f-4317-9699-d8720148380a/,Phil,,12/10/2015,12.0:35,13.0000000,47.945156000000,-4.409573000000,,Pouldreuzic - Finistère,56021,observation-cc3377ba-b13f-4317-9699-d8720148380a,https://biolit.fr/observations/observation-cc3377ba-b13f-4317-9699-d8720148380a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000113.JPG,,FALSE, +N1,61304,sortie-cc3377ba-b13f-4317-9699-d8720148380a,https://biolit.fr/sorties/sortie-cc3377ba-b13f-4317-9699-d8720148380a/,Phil,,12/10/2015,12.0:35,13.0000000,47.945156000000,-4.409573000000,,Pouldreuzic - Finistère,56023,observation-cc3377ba-b13f-4317-9699-d8720148380a-2,https://biolit.fr/observations/observation-cc3377ba-b13f-4317-9699-d8720148380a-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1000156.JPG,,TRUE, +N1,61304,sortie-cc3377ba-b13f-4317-9699-d8720148380a,https://biolit.fr/sorties/sortie-cc3377ba-b13f-4317-9699-d8720148380a/,Phil,,12/10/2015,12.0:35,13.0000000,47.945156000000,-4.409573000000,,Pouldreuzic - Finistère,56025,observation-cc3377ba-b13f-4317-9699-d8720148380a-3,https://biolit.fr/observations/observation-cc3377ba-b13f-4317-9699-d8720148380a-3/,Balanus crenatus,Balane crénelée,,https://biolit.fr/wp-content/uploads/2023/07/P1000118.JPG,,TRUE, +N1,61305,sortie-c19581c2-5547-4cf5-8c76-0ead5f9bd1ec,https://biolit.fr/sorties/sortie-c19581c2-5547-4cf5-8c76-0ead5f9bd1ec/,Phil,,11/25/2015 0:00,12.000005,12.0:15,48.092518000000,-4.296817000000,,Douarnenez- Finistère,56027,observation-c19581c2-5547-4cf5-8c76-0ead5f9bd1ec,https://biolit.fr/observations/observation-c19581c2-5547-4cf5-8c76-0ead5f9bd1ec/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20151125_120744.jpg,,TRUE, +N1,61305,sortie-c19581c2-5547-4cf5-8c76-0ead5f9bd1ec,https://biolit.fr/sorties/sortie-c19581c2-5547-4cf5-8c76-0ead5f9bd1ec/,Phil,,11/25/2015 0:00,12.000005,12.0:15,48.092518000000,-4.296817000000,,Douarnenez- Finistère,56029,observation-c19581c2-5547-4cf5-8c76-0ead5f9bd1ec-2,https://biolit.fr/observations/observation-c19581c2-5547-4cf5-8c76-0ead5f9bd1ec-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20151125_120835.jpg,,TRUE, +N1,61305,sortie-c19581c2-5547-4cf5-8c76-0ead5f9bd1ec,https://biolit.fr/sorties/sortie-c19581c2-5547-4cf5-8c76-0ead5f9bd1ec/,Phil,,11/25/2015 0:00,12.000005,12.0:15,48.092518000000,-4.296817000000,,Douarnenez- Finistère,56031,observation-c19581c2-5547-4cf5-8c76-0ead5f9bd1ec-3,https://biolit.fr/observations/observation-c19581c2-5547-4cf5-8c76-0ead5f9bd1ec-3/,Raja brachyura,Raie lisse,,https://biolit.fr/wp-content/uploads/2023/07/20151125_121009.jpg,,TRUE, +N1,61306,sortie-6f21a2f4-cc8a-437c-93e8-46f0c3c55aeb,https://biolit.fr/sorties/sortie-6f21a2f4-cc8a-437c-93e8-46f0c3c55aeb/,Phil,,11/25/2015 0:00,11.0000000,11.0000000,48.094492000000,-4.299411000000,,Kerlaz - Finistère,56033,observation-6f21a2f4-cc8a-437c-93e8-46f0c3c55aeb,https://biolit.fr/observations/observation-6f21a2f4-cc8a-437c-93e8-46f0c3c55aeb/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20151125_115238.jpg,,TRUE, +N1,61306,sortie-6f21a2f4-cc8a-437c-93e8-46f0c3c55aeb,https://biolit.fr/sorties/sortie-6f21a2f4-cc8a-437c-93e8-46f0c3c55aeb/,Phil,,11/25/2015 0:00,11.0000000,11.0000000,48.094492000000,-4.299411000000,,Kerlaz - Finistère,56035,observation-6f21a2f4-cc8a-437c-93e8-46f0c3c55aeb-2,https://biolit.fr/observations/observation-6f21a2f4-cc8a-437c-93e8-46f0c3c55aeb-2/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/2023/07/20151125_114559.jpg,,TRUE, +N1,61306,sortie-6f21a2f4-cc8a-437c-93e8-46f0c3c55aeb,https://biolit.fr/sorties/sortie-6f21a2f4-cc8a-437c-93e8-46f0c3c55aeb/,Phil,,11/25/2015 0:00,11.0000000,11.0000000,48.094492000000,-4.299411000000,,Kerlaz - Finistère,56037,observation-6f21a2f4-cc8a-437c-93e8-46f0c3c55aeb-3,https://biolit.fr/observations/observation-6f21a2f4-cc8a-437c-93e8-46f0c3c55aeb-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151125_115554.jpg,,FALSE, +N1,61306,sortie-6f21a2f4-cc8a-437c-93e8-46f0c3c55aeb,https://biolit.fr/sorties/sortie-6f21a2f4-cc8a-437c-93e8-46f0c3c55aeb/,Phil,,11/25/2015 0:00,11.0000000,11.0000000,48.094492000000,-4.299411000000,,Kerlaz - Finistère,56039,observation-6f21a2f4-cc8a-437c-93e8-46f0c3c55aeb-4,https://biolit.fr/observations/observation-6f21a2f4-cc8a-437c-93e8-46f0c3c55aeb-4/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/20151125_114215.jpg,,TRUE, +N1,61307,sortie-de691cd0-7937-42d6-bbd2-29a936a70e4e,https://biolit.fr/sorties/sortie-de691cd0-7937-42d6-bbd2-29a936a70e4e/,Phil,,11/15/2015 0:00,11.0000000,11.0:35,48.125378000000,-4.286084000000,,Plonevez Porzay - Finistère,56041,observation-de691cd0-7937-42d6-bbd2-29a936a70e4e,https://biolit.fr/observations/observation-de691cd0-7937-42d6-bbd2-29a936a70e4e/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20151115_111954.jpg,,TRUE, +N1,61307,sortie-de691cd0-7937-42d6-bbd2-29a936a70e4e,https://biolit.fr/sorties/sortie-de691cd0-7937-42d6-bbd2-29a936a70e4e/,Phil,,11/15/2015 0:00,11.0000000,11.0:35,48.125378000000,-4.286084000000,,Plonevez Porzay - Finistère,56043,observation-de691cd0-7937-42d6-bbd2-29a936a70e4e-2,https://biolit.fr/observations/observation-de691cd0-7937-42d6-bbd2-29a936a70e4e-2/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20151115_113311.jpg,,TRUE, +N1,61307,sortie-de691cd0-7937-42d6-bbd2-29a936a70e4e,https://biolit.fr/sorties/sortie-de691cd0-7937-42d6-bbd2-29a936a70e4e/,Phil,,11/15/2015 0:00,11.0000000,11.0:35,48.125378000000,-4.286084000000,,Plonevez Porzay - Finistère,56045,observation-de691cd0-7937-42d6-bbd2-29a936a70e4e-3,https://biolit.fr/observations/observation-de691cd0-7937-42d6-bbd2-29a936a70e4e-3/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20151115_113352.jpg,,TRUE, +N1,61308,sortie-786e837f-15e7-4d9d-9843-3821c7bc8613,https://biolit.fr/sorties/sortie-786e837f-15e7-4d9d-9843-3821c7bc8613/,Phil,,11/14/2015 0:00,15.0000000,15.0:35,48.605845000000,-4.594091000000,,Landeda - Finistère,56047,observation-786e837f-15e7-4d9d-9843-3821c7bc8613,https://biolit.fr/observations/observation-786e837f-15e7-4d9d-9843-3821c7bc8613/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04845.jpg,,FALSE, +N1,61308,sortie-786e837f-15e7-4d9d-9843-3821c7bc8613,https://biolit.fr/sorties/sortie-786e837f-15e7-4d9d-9843-3821c7bc8613/,Phil,,11/14/2015 0:00,15.0000000,15.0:35,48.605845000000,-4.594091000000,,Landeda - Finistère,56049,observation-786e837f-15e7-4d9d-9843-3821c7bc8613-2,https://biolit.fr/observations/observation-786e837f-15e7-4d9d-9843-3821c7bc8613-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04841.jpg,,FALSE, +N1,61308,sortie-786e837f-15e7-4d9d-9843-3821c7bc8613,https://biolit.fr/sorties/sortie-786e837f-15e7-4d9d-9843-3821c7bc8613/,Phil,,11/14/2015 0:00,15.0000000,15.0:35,48.605845000000,-4.594091000000,,Landeda - Finistère,56051,observation-786e837f-15e7-4d9d-9843-3821c7bc8613-3,https://biolit.fr/observations/observation-786e837f-15e7-4d9d-9843-3821c7bc8613-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04838.jpg,,TRUE, +N1,61308,sortie-786e837f-15e7-4d9d-9843-3821c7bc8613,https://biolit.fr/sorties/sortie-786e837f-15e7-4d9d-9843-3821c7bc8613/,Phil,,11/14/2015 0:00,15.0000000,15.0:35,48.605845000000,-4.594091000000,,Landeda - Finistère,56053,observation-786e837f-15e7-4d9d-9843-3821c7bc8613-4,https://biolit.fr/observations/observation-786e837f-15e7-4d9d-9843-3821c7bc8613-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04836.jpg,,TRUE, +N1,61309,sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9,https://biolit.fr/sorties/sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9/,Anjelika,,12/30/2015 0:00,13.0000000,14.0000000,43.395974000000,4.594114000000,,plage de beauduc en camargue ,56055,observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9,https://biolit.fr/observations/observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9/,Tritia mutabilis,Noisette de mer,,https://biolit.fr/wp-content/uploads/2023/07/DSC02757-scaled.jpg,,TRUE, +N1,61309,sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9,https://biolit.fr/sorties/sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9/,Anjelika,,12/30/2015 0:00,13.0000000,14.0000000,43.395974000000,4.594114000000,,plage de beauduc en camargue ,56057,observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-2,https://biolit.fr/observations/observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-2/,Tritia mutabilis,Noisette de mer,,https://biolit.fr/wp-content/uploads/2023/07/DSC02758-scaled.jpg,,TRUE, +N1,61309,sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9,https://biolit.fr/sorties/sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9/,Anjelika,,12/30/2015 0:00,13.0000000,14.0000000,43.395974000000,4.594114000000,,plage de beauduc en camargue ,56059,observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-3,https://biolit.fr/observations/observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02759-scaled.jpg,,FALSE, +N1,61309,sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9,https://biolit.fr/sorties/sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9/,Anjelika,,12/30/2015 0:00,13.0000000,14.0000000,43.395974000000,4.594114000000,,plage de beauduc en camargue ,56061,observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-4,https://biolit.fr/observations/observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02760-scaled.jpg,,FALSE, +N1,61309,sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9,https://biolit.fr/sorties/sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9/,Anjelika,,12/30/2015 0:00,13.0000000,14.0000000,43.395974000000,4.594114000000,,plage de beauduc en camargue ,56063,observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-5,https://biolit.fr/observations/observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-5/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/DSC02761-scaled.jpg,,TRUE, +N1,61309,sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9,https://biolit.fr/sorties/sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9/,Anjelika,,12/30/2015 0:00,13.0000000,14.0000000,43.395974000000,4.594114000000,,plage de beauduc en camargue ,56065,observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-6,https://biolit.fr/observations/observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-6/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/DSC02764-scaled.jpg,,TRUE, +N1,61309,sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9,https://biolit.fr/sorties/sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9/,Anjelika,,12/30/2015 0:00,13.0000000,14.0000000,43.395974000000,4.594114000000,,plage de beauduc en camargue ,56067,observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-7,https://biolit.fr/observations/observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-7/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/2023/07/DSC02766-scaled.jpg,,TRUE, +N1,61309,sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9,https://biolit.fr/sorties/sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9/,Anjelika,,12/30/2015 0:00,13.0000000,14.0000000,43.395974000000,4.594114000000,,plage de beauduc en camargue ,56069,observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-8,https://biolit.fr/observations/observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-8/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/2023/07/DSC02768-scaled.jpg,,TRUE, +N1,61309,sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9,https://biolit.fr/sorties/sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9/,Anjelika,,12/30/2015 0:00,13.0000000,14.0000000,43.395974000000,4.594114000000,,plage de beauduc en camargue ,56071,observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-9,https://biolit.fr/observations/observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02772-scaled.jpg,,FALSE, +N1,61309,sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9,https://biolit.fr/sorties/sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9/,Anjelika,,12/30/2015 0:00,13.0000000,14.0000000,43.395974000000,4.594114000000,,plage de beauduc en camargue ,56073,observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-10,https://biolit.fr/observations/observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02774-scaled.jpg,,FALSE, +N1,61310,sortie-98c3083b-f2f4-4555-a758-f4c230d0852f,https://biolit.fr/sorties/sortie-98c3083b-f2f4-4555-a758-f4c230d0852f/,Phil,,11/06/2015,13.0000000,13.0:25,47.791779000000,-4.273394000000,,Léchiagat - Finistère,56075,observation-98c3083b-f2f4-4555-a758-f4c230d0852f,https://biolit.fr/observations/observation-98c3083b-f2f4-4555-a758-f4c230d0852f/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_132347.jpg,,FALSE, +N1,61310,sortie-98c3083b-f2f4-4555-a758-f4c230d0852f,https://biolit.fr/sorties/sortie-98c3083b-f2f4-4555-a758-f4c230d0852f/,Phil,,11/06/2015,13.0000000,13.0:25,47.791779000000,-4.273394000000,,Léchiagat - Finistère,56077,observation-98c3083b-f2f4-4555-a758-f4c230d0852f-2,https://biolit.fr/observations/observation-98c3083b-f2f4-4555-a758-f4c230d0852f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_132624.jpg,,FALSE, +N1,61310,sortie-98c3083b-f2f4-4555-a758-f4c230d0852f,https://biolit.fr/sorties/sortie-98c3083b-f2f4-4555-a758-f4c230d0852f/,Phil,,11/06/2015,13.0000000,13.0:25,47.791779000000,-4.273394000000,,Léchiagat - Finistère,56079,observation-98c3083b-f2f4-4555-a758-f4c230d0852f-3,https://biolit.fr/observations/observation-98c3083b-f2f4-4555-a758-f4c230d0852f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_132448.jpg,,FALSE, +N1,61310,sortie-98c3083b-f2f4-4555-a758-f4c230d0852f,https://biolit.fr/sorties/sortie-98c3083b-f2f4-4555-a758-f4c230d0852f/,Phil,,11/06/2015,13.0000000,13.0:25,47.791779000000,-4.273394000000,,Léchiagat - Finistère,56081,observation-98c3083b-f2f4-4555-a758-f4c230d0852f-4,https://biolit.fr/observations/observation-98c3083b-f2f4-4555-a758-f4c230d0852f-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_132226.jpg,,FALSE, +N1,61310,sortie-98c3083b-f2f4-4555-a758-f4c230d0852f,https://biolit.fr/sorties/sortie-98c3083b-f2f4-4555-a758-f4c230d0852f/,Phil,,11/06/2015,13.0000000,13.0:25,47.791779000000,-4.273394000000,,Léchiagat - Finistère,56083,observation-98c3083b-f2f4-4555-a758-f4c230d0852f-5,https://biolit.fr/observations/observation-98c3083b-f2f4-4555-a758-f4c230d0852f-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_132028.jpg,,FALSE, +N1,61311,sortie-b5e0dfaf-9996-4958-b217-010b36feb845,https://biolit.fr/sorties/sortie-b5e0dfaf-9996-4958-b217-010b36feb845/,Phil,,11/10/2015,11.0000000,11.0:55,47.896076000000,-3.969070000000,,La Forêt Fouesnant - Finistère,56085,observation-b5e0dfaf-9996-4958-b217-010b36feb845,https://biolit.fr/observations/observation-b5e0dfaf-9996-4958-b217-010b36feb845/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20151110_115337_0.jpg,,TRUE, +N1,61312,sortie-a79fa5b5-c402-44ca-b15a-6477051047af,https://biolit.fr/sorties/sortie-a79fa5b5-c402-44ca-b15a-6477051047af/,Phil,,11/06/2015,12.0:45,12.0000000,47.798056000000,-4.350107000000,,Penmarc'h - Finistère,56087,observation-a79fa5b5-c402-44ca-b15a-6477051047af,https://biolit.fr/observations/observation-a79fa5b5-c402-44ca-b15a-6477051047af/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_124701.jpg,,FALSE, +N1,61312,sortie-a79fa5b5-c402-44ca-b15a-6477051047af,https://biolit.fr/sorties/sortie-a79fa5b5-c402-44ca-b15a-6477051047af/,Phil,,11/06/2015,12.0:45,12.0000000,47.798056000000,-4.350107000000,,Penmarc'h - Finistère,56089,observation-a79fa5b5-c402-44ca-b15a-6477051047af-2,https://biolit.fr/observations/observation-a79fa5b5-c402-44ca-b15a-6477051047af-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_124709.jpg,,FALSE, +N1,61313,sortie-0f418eef-8878-4a66-8af3-c480c5681ff8,https://biolit.fr/sorties/sortie-0f418eef-8878-4a66-8af3-c480c5681ff8/,Phil,,8/15/2015 0:00,17.0:25,17.0:45,47.791277000000,-4.277044000000,,Léchiagat - Finistère,56091,observation-0f418eef-8878-4a66-8af3-c480c5681ff8,https://biolit.fr/observations/observation-0f418eef-8878-4a66-8af3-c480c5681ff8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150815_174824.jpg,,FALSE, +N1,61313,sortie-0f418eef-8878-4a66-8af3-c480c5681ff8,https://biolit.fr/sorties/sortie-0f418eef-8878-4a66-8af3-c480c5681ff8/,Phil,,8/15/2015 0:00,17.0:25,17.0:45,47.791277000000,-4.277044000000,,Léchiagat - Finistère,56093,observation-0f418eef-8878-4a66-8af3-c480c5681ff8-2,https://biolit.fr/observations/observation-0f418eef-8878-4a66-8af3-c480c5681ff8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150815_174024.jpg,,FALSE, +N1,61313,sortie-0f418eef-8878-4a66-8af3-c480c5681ff8,https://biolit.fr/sorties/sortie-0f418eef-8878-4a66-8af3-c480c5681ff8/,Phil,,8/15/2015 0:00,17.0:25,17.0:45,47.791277000000,-4.277044000000,,Léchiagat - Finistère,56095,observation-0f418eef-8878-4a66-8af3-c480c5681ff8-3,https://biolit.fr/observations/observation-0f418eef-8878-4a66-8af3-c480c5681ff8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150815_173844.jpg,,FALSE, +N1,61313,sortie-0f418eef-8878-4a66-8af3-c480c5681ff8,https://biolit.fr/sorties/sortie-0f418eef-8878-4a66-8af3-c480c5681ff8/,Phil,,8/15/2015 0:00,17.0:25,17.0:45,47.791277000000,-4.277044000000,,Léchiagat - Finistère,56097,observation-0f418eef-8878-4a66-8af3-c480c5681ff8-4,https://biolit.fr/observations/observation-0f418eef-8878-4a66-8af3-c480c5681ff8-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150815_173741.jpg,,FALSE, +N1,61313,sortie-0f418eef-8878-4a66-8af3-c480c5681ff8,https://biolit.fr/sorties/sortie-0f418eef-8878-4a66-8af3-c480c5681ff8/,Phil,,8/15/2015 0:00,17.0:25,17.0:45,47.791277000000,-4.277044000000,,Léchiagat - Finistère,56099,observation-0f418eef-8878-4a66-8af3-c480c5681ff8-5,https://biolit.fr/observations/observation-0f418eef-8878-4a66-8af3-c480c5681ff8-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150815_173730.jpg,,FALSE, +N1,61313,sortie-0f418eef-8878-4a66-8af3-c480c5681ff8,https://biolit.fr/sorties/sortie-0f418eef-8878-4a66-8af3-c480c5681ff8/,Phil,,8/15/2015 0:00,17.0:25,17.0:45,47.791277000000,-4.277044000000,,Léchiagat - Finistère,56101,observation-0f418eef-8878-4a66-8af3-c480c5681ff8-6,https://biolit.fr/observations/observation-0f418eef-8878-4a66-8af3-c480c5681ff8-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150815_172930.jpg,,FALSE, +N1,61314,sortie-52ecbc5f-1062-4edb-8e89-db85782bf6c7,https://biolit.fr/sorties/sortie-52ecbc5f-1062-4edb-8e89-db85782bf6c7/,Phil,,11/26/2015 0:00,13.0000000,13.0000000,47.857395000000,-3.917132000000,,Concarneau - Finistère,56103,observation-52ecbc5f-1062-4edb-8e89-db85782bf6c7,https://biolit.fr/observations/observation-52ecbc5f-1062-4edb-8e89-db85782bf6c7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04964.jpg,,FALSE, +N1,61314,sortie-52ecbc5f-1062-4edb-8e89-db85782bf6c7,https://biolit.fr/sorties/sortie-52ecbc5f-1062-4edb-8e89-db85782bf6c7/,Phil,,11/26/2015 0:00,13.0000000,13.0000000,47.857395000000,-3.917132000000,,Concarneau - Finistère,56105,observation-52ecbc5f-1062-4edb-8e89-db85782bf6c7-2,https://biolit.fr/observations/observation-52ecbc5f-1062-4edb-8e89-db85782bf6c7-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04955.jpg,,TRUE, +N1,61314,sortie-52ecbc5f-1062-4edb-8e89-db85782bf6c7,https://biolit.fr/sorties/sortie-52ecbc5f-1062-4edb-8e89-db85782bf6c7/,Phil,,11/26/2015 0:00,13.0000000,13.0000000,47.857395000000,-3.917132000000,,Concarneau - Finistère,56107,observation-52ecbc5f-1062-4edb-8e89-db85782bf6c7-3,https://biolit.fr/observations/observation-52ecbc5f-1062-4edb-8e89-db85782bf6c7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151126_135021.jpg,,FALSE, +N1,61314,sortie-52ecbc5f-1062-4edb-8e89-db85782bf6c7,https://biolit.fr/sorties/sortie-52ecbc5f-1062-4edb-8e89-db85782bf6c7/,Phil,,11/26/2015 0:00,13.0000000,13.0000000,47.857395000000,-3.917132000000,,Concarneau - Finistère,56109,observation-52ecbc5f-1062-4edb-8e89-db85782bf6c7-4,https://biolit.fr/observations/observation-52ecbc5f-1062-4edb-8e89-db85782bf6c7-4/,Trididemnum cereum,Didemnide cire,,https://biolit.fr/wp-content/uploads/2023/07/20151126_135100.jpg,,TRUE, +N1,61314,sortie-52ecbc5f-1062-4edb-8e89-db85782bf6c7,https://biolit.fr/sorties/sortie-52ecbc5f-1062-4edb-8e89-db85782bf6c7/,Phil,,11/26/2015 0:00,13.0000000,13.0000000,47.857395000000,-3.917132000000,,Concarneau - Finistère,56111,observation-52ecbc5f-1062-4edb-8e89-db85782bf6c7-5,https://biolit.fr/observations/observation-52ecbc5f-1062-4edb-8e89-db85782bf6c7-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151126_134423.jpg,,FALSE, +N1,61314,sortie-52ecbc5f-1062-4edb-8e89-db85782bf6c7,https://biolit.fr/sorties/sortie-52ecbc5f-1062-4edb-8e89-db85782bf6c7/,Phil,,11/26/2015 0:00,13.0000000,13.0000000,47.857395000000,-3.917132000000,,Concarneau - Finistère,56113,observation-52ecbc5f-1062-4edb-8e89-db85782bf6c7-6,https://biolit.fr/observations/observation-52ecbc5f-1062-4edb-8e89-db85782bf6c7-6/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC04958.jpg,,TRUE, +N1,61315,sortie-cc8ecab0-1fd4-4281-b614-0b7d1f181493,https://biolit.fr/sorties/sortie-cc8ecab0-1fd4-4281-b614-0b7d1f181493/,Phil,,8/15/2015 0:00,17.0000000,17.0:45,47.790645000000,-4.277406000000,,Léchiagat - Finistère,56115,observation-cc8ecab0-1fd4-4281-b614-0b7d1f181493,https://biolit.fr/observations/observation-cc8ecab0-1fd4-4281-b614-0b7d1f181493/,Mastocarpus stellatus,Gigartine,,https://biolit.fr/wp-content/uploads/2023/07/20150815_174331.jpg,,TRUE, +N1,61315,sortie-cc8ecab0-1fd4-4281-b614-0b7d1f181493,https://biolit.fr/sorties/sortie-cc8ecab0-1fd4-4281-b614-0b7d1f181493/,Phil,,8/15/2015 0:00,17.0000000,17.0:45,47.790645000000,-4.277406000000,,Léchiagat - Finistère,56117,observation-cc8ecab0-1fd4-4281-b614-0b7d1f181493-2,https://biolit.fr/observations/observation-cc8ecab0-1fd4-4281-b614-0b7d1f181493-2/,Mastocarpus stellatus,Gigartine,,https://biolit.fr/wp-content/uploads/2023/07/20150815_174401.jpg,,TRUE, +N1,61315,sortie-cc8ecab0-1fd4-4281-b614-0b7d1f181493,https://biolit.fr/sorties/sortie-cc8ecab0-1fd4-4281-b614-0b7d1f181493/,Phil,,8/15/2015 0:00,17.0000000,17.0:45,47.790645000000,-4.277406000000,,Léchiagat - Finistère,56119,observation-cc8ecab0-1fd4-4281-b614-0b7d1f181493-3,https://biolit.fr/observations/observation-cc8ecab0-1fd4-4281-b614-0b7d1f181493-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150815_174505-scaled.jpg,,TRUE, +N1,61315,sortie-cc8ecab0-1fd4-4281-b614-0b7d1f181493,https://biolit.fr/sorties/sortie-cc8ecab0-1fd4-4281-b614-0b7d1f181493/,Phil,,8/15/2015 0:00,17.0000000,17.0:45,47.790645000000,-4.277406000000,,Léchiagat - Finistère,56121,observation-cc8ecab0-1fd4-4281-b614-0b7d1f181493-4,https://biolit.fr/observations/observation-cc8ecab0-1fd4-4281-b614-0b7d1f181493-4/,Mastocarpus stellatus,Gigartine,,https://biolit.fr/wp-content/uploads/2023/07/20150815_174624.jpg,,TRUE, +N1,61315,sortie-cc8ecab0-1fd4-4281-b614-0b7d1f181493,https://biolit.fr/sorties/sortie-cc8ecab0-1fd4-4281-b614-0b7d1f181493/,Phil,,8/15/2015 0:00,17.0000000,17.0:45,47.790645000000,-4.277406000000,,Léchiagat - Finistère,56123,observation-cc8ecab0-1fd4-4281-b614-0b7d1f181493-5,https://biolit.fr/observations/observation-cc8ecab0-1fd4-4281-b614-0b7d1f181493-5/,Lomentaria articulata,Algue saucisson,,https://biolit.fr/wp-content/uploads/2023/07/20150815_174711.jpg,,TRUE, +N1,61316,sortie-342871c5-0509-4d0b-bf2a-5053a51102b8,https://biolit.fr/sorties/sortie-342871c5-0509-4d0b-bf2a-5053a51102b8/,Phil,,12/10/2015,12.0:15,12.0000000,47.942970000000,-4.41301500000,,Pouldreuzic - Finistère,56125,observation-342871c5-0509-4d0b-bf2a-5053a51102b8,https://biolit.fr/observations/observation-342871c5-0509-4d0b-bf2a-5053a51102b8/,Bifurcaria bifurcata,Bifurcaire,,https://biolit.fr/wp-content/uploads/2023/07/P1000119.JPG,,TRUE, +N1,61316,sortie-342871c5-0509-4d0b-bf2a-5053a51102b8,https://biolit.fr/sorties/sortie-342871c5-0509-4d0b-bf2a-5053a51102b8/,Phil,,12/10/2015,12.0:15,12.0000000,47.942970000000,-4.41301500000,,Pouldreuzic - Finistère,56127,observation-342871c5-0509-4d0b-bf2a-5053a51102b8-2,https://biolit.fr/observations/observation-342871c5-0509-4d0b-bf2a-5053a51102b8-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1000110.JPG,,TRUE, +N1,61316,sortie-342871c5-0509-4d0b-bf2a-5053a51102b8,https://biolit.fr/sorties/sortie-342871c5-0509-4d0b-bf2a-5053a51102b8/,Phil,,12/10/2015,12.0:15,12.0000000,47.942970000000,-4.41301500000,,Pouldreuzic - Finistère,56129,observation-342871c5-0509-4d0b-bf2a-5053a51102b8-3,https://biolit.fr/observations/observation-342871c5-0509-4d0b-bf2a-5053a51102b8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000104.JPG,,FALSE, +N1,61316,sortie-342871c5-0509-4d0b-bf2a-5053a51102b8,https://biolit.fr/sorties/sortie-342871c5-0509-4d0b-bf2a-5053a51102b8/,Phil,,12/10/2015,12.0:15,12.0000000,47.942970000000,-4.41301500000,,Pouldreuzic - Finistère,56131,observation-342871c5-0509-4d0b-bf2a-5053a51102b8-4,https://biolit.fr/observations/observation-342871c5-0509-4d0b-bf2a-5053a51102b8-4/,Codium tomentosum,Codium tomenteux,,https://biolit.fr/wp-content/uploads/2023/07/P1000095.JPG,,TRUE, +N1,61316,sortie-342871c5-0509-4d0b-bf2a-5053a51102b8,https://biolit.fr/sorties/sortie-342871c5-0509-4d0b-bf2a-5053a51102b8/,Phil,,12/10/2015,12.0:15,12.0000000,47.942970000000,-4.41301500000,,Pouldreuzic - Finistère,56133,observation-342871c5-0509-4d0b-bf2a-5053a51102b8-5,https://biolit.fr/observations/observation-342871c5-0509-4d0b-bf2a-5053a51102b8-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000092.JPG,,FALSE, +N1,61316,sortie-342871c5-0509-4d0b-bf2a-5053a51102b8,https://biolit.fr/sorties/sortie-342871c5-0509-4d0b-bf2a-5053a51102b8/,Phil,,12/10/2015,12.0:15,12.0000000,47.942970000000,-4.41301500000,,Pouldreuzic - Finistère,56135,observation-342871c5-0509-4d0b-bf2a-5053a51102b8-6,https://biolit.fr/observations/observation-342871c5-0509-4d0b-bf2a-5053a51102b8-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000090.JPG,,FALSE, +N1,61316,sortie-342871c5-0509-4d0b-bf2a-5053a51102b8,https://biolit.fr/sorties/sortie-342871c5-0509-4d0b-bf2a-5053a51102b8/,Phil,,12/10/2015,12.0:15,12.0000000,47.942970000000,-4.41301500000,,Pouldreuzic - Finistère,56137,observation-342871c5-0509-4d0b-bf2a-5053a51102b8-7,https://biolit.fr/observations/observation-342871c5-0509-4d0b-bf2a-5053a51102b8-7/,Phymatolithon lenormandii,Algue encroûtante rouge de Lenormand,,https://biolit.fr/wp-content/uploads/2023/07/P1000087.JPG,,TRUE, +N1,61317,sortie-2a708e21-d060-4360-bedb-d885557baef3,https://biolit.fr/sorties/sortie-2a708e21-d060-4360-bedb-d885557baef3/,chantal STEINER,,10/25/2015 0:00,10.0000000,10.0000000,41.919097000000,8.762814000000,,ajaccio,56139,observation-2a708e21-d060-4360-bedb-d885557baef3,https://biolit.fr/observations/observation-2a708e21-d060-4360-bedb-d885557baef3/,,,,https://biolit.fr/wp-content/uploads/2023/07/2 (13).JPG,,FALSE, +N1,61317,sortie-2a708e21-d060-4360-bedb-d885557baef3,https://biolit.fr/sorties/sortie-2a708e21-d060-4360-bedb-d885557baef3/,chantal STEINER,,10/25/2015 0:00,10.0000000,10.0000000,41.919097000000,8.762814000000,,ajaccio,56141,observation-2a708e21-d060-4360-bedb-d885557baef3-2,https://biolit.fr/observations/observation-2a708e21-d060-4360-bedb-d885557baef3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/2 (14)-scaled.jpg,,FALSE, +N1,61318,sortie-99a6e856-cd24-4928-b1a9-f14a19aca638,https://biolit.fr/sorties/sortie-99a6e856-cd24-4928-b1a9-f14a19aca638/,Phil,,12/10/2015,11.0000000,12.0000000,47.943357000000,-4.411568000000,,Pouldreuzic - Finistère,56143,observation-99a6e856-cd24-4928-b1a9-f14a19aca638,https://biolit.fr/observations/observation-99a6e856-cd24-4928-b1a9-f14a19aca638/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1000049-scaled.jpg,,TRUE, +N1,61318,sortie-99a6e856-cd24-4928-b1a9-f14a19aca638,https://biolit.fr/sorties/sortie-99a6e856-cd24-4928-b1a9-f14a19aca638/,Phil,,12/10/2015,11.0000000,12.0000000,47.943357000000,-4.411568000000,,Pouldreuzic - Finistère,56145,observation-99a6e856-cd24-4928-b1a9-f14a19aca638-2,https://biolit.fr/observations/observation-99a6e856-cd24-4928-b1a9-f14a19aca638-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000070-scaled.jpg,,FALSE, +N1,61318,sortie-99a6e856-cd24-4928-b1a9-f14a19aca638,https://biolit.fr/sorties/sortie-99a6e856-cd24-4928-b1a9-f14a19aca638/,Phil,,12/10/2015,11.0000000,12.0000000,47.943357000000,-4.411568000000,,Pouldreuzic - Finistère,56147,observation-99a6e856-cd24-4928-b1a9-f14a19aca638-3,https://biolit.fr/observations/observation-99a6e856-cd24-4928-b1a9-f14a19aca638-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000082.JPG,,FALSE, +N1,61318,sortie-99a6e856-cd24-4928-b1a9-f14a19aca638,https://biolit.fr/sorties/sortie-99a6e856-cd24-4928-b1a9-f14a19aca638/,Phil,,12/10/2015,11.0000000,12.0000000,47.943357000000,-4.411568000000,,Pouldreuzic - Finistère,56149,observation-99a6e856-cd24-4928-b1a9-f14a19aca638-4,https://biolit.fr/observations/observation-99a6e856-cd24-4928-b1a9-f14a19aca638-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000084.JPG,,FALSE, +N1,61318,sortie-99a6e856-cd24-4928-b1a9-f14a19aca638,https://biolit.fr/sorties/sortie-99a6e856-cd24-4928-b1a9-f14a19aca638/,Phil,,12/10/2015,11.0000000,12.0000000,47.943357000000,-4.411568000000,,Pouldreuzic - Finistère,56151,observation-99a6e856-cd24-4928-b1a9-f14a19aca638-5,https://biolit.fr/observations/observation-99a6e856-cd24-4928-b1a9-f14a19aca638-5/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1000068-scaled.jpg,,TRUE, +N1,61318,sortie-99a6e856-cd24-4928-b1a9-f14a19aca638,https://biolit.fr/sorties/sortie-99a6e856-cd24-4928-b1a9-f14a19aca638/,Phil,,12/10/2015,11.0000000,12.0000000,47.943357000000,-4.411568000000,,Pouldreuzic - Finistère,56153,observation-99a6e856-cd24-4928-b1a9-f14a19aca638-6,https://biolit.fr/observations/observation-99a6e856-cd24-4928-b1a9-f14a19aca638-6/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1000056.JPG,,TRUE, +N1,61318,sortie-99a6e856-cd24-4928-b1a9-f14a19aca638,https://biolit.fr/sorties/sortie-99a6e856-cd24-4928-b1a9-f14a19aca638/,Phil,,12/10/2015,11.0000000,12.0000000,47.943357000000,-4.411568000000,,Pouldreuzic - Finistère,56155,observation-99a6e856-cd24-4928-b1a9-f14a19aca638-7,https://biolit.fr/observations/observation-99a6e856-cd24-4928-b1a9-f14a19aca638-7/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1000054.JPG,,TRUE, +N1,61319,sortie-ba765055-a799-4c9e-b189-a00a8bd4608d,https://biolit.fr/sorties/sortie-ba765055-a799-4c9e-b189-a00a8bd4608d/,Loup,,12/11/2015,10.0000000,12.0000000,43.23997400000,5.362341000000,,"plage du bain des dames, la pointe rouge, marseille",56157,observation-ba765055-a799-4c9e-b189-a00a8bd4608d,https://biolit.fr/observations/observation-ba765055-a799-4c9e-b189-a00a8bd4608d/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151211_172856-rotated.jpg,,FALSE, +N1,61319,sortie-ba765055-a799-4c9e-b189-a00a8bd4608d,https://biolit.fr/sorties/sortie-ba765055-a799-4c9e-b189-a00a8bd4608d/,Loup,,12/11/2015,10.0000000,12.0000000,43.23997400000,5.362341000000,,"plage du bain des dames, la pointe rouge, marseille",56159,observation-ba765055-a799-4c9e-b189-a00a8bd4608d-2,https://biolit.fr/observations/observation-ba765055-a799-4c9e-b189-a00a8bd4608d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151211_173538-rotated.jpg,,FALSE, +N1,61319,sortie-ba765055-a799-4c9e-b189-a00a8bd4608d,https://biolit.fr/sorties/sortie-ba765055-a799-4c9e-b189-a00a8bd4608d/,Loup,,12/11/2015,10.0000000,12.0000000,43.23997400000,5.362341000000,,"plage du bain des dames, la pointe rouge, marseille",56161,observation-ba765055-a799-4c9e-b189-a00a8bd4608d-3,https://biolit.fr/observations/observation-ba765055-a799-4c9e-b189-a00a8bd4608d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151211_172910-rotated.jpg,,FALSE, +N1,61320,sortie-507dcf90-a4aa-46fd-aa4b-64a76453813d,https://biolit.fr/sorties/sortie-507dcf90-a4aa-46fd-aa4b-64a76453813d/,Phil,,11/14/2015 0:00,16.0000000,16.0:45,48.594557000000,-4.607692000000,,Landéda - Finistère,56163,observation-507dcf90-a4aa-46fd-aa4b-64a76453813d,https://biolit.fr/observations/observation-507dcf90-a4aa-46fd-aa4b-64a76453813d/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04915a.jpg,,FALSE, +N1,61320,sortie-507dcf90-a4aa-46fd-aa4b-64a76453813d,https://biolit.fr/sorties/sortie-507dcf90-a4aa-46fd-aa4b-64a76453813d/,Phil,,11/14/2015 0:00,16.0000000,16.0:45,48.594557000000,-4.607692000000,,Landéda - Finistère,56165,observation-507dcf90-a4aa-46fd-aa4b-64a76453813d-2,https://biolit.fr/observations/observation-507dcf90-a4aa-46fd-aa4b-64a76453813d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04909a.jpg,,FALSE, +N1,61321,sortie-1be215a7-9e51-4359-852a-cef2c82e0d0b,https://biolit.fr/sorties/sortie-1be215a7-9e51-4359-852a-cef2c82e0d0b/,Phil,,12/10/2015,11.0000000,11.0:45,47.944078000000,-4.410111000000,,Pouldreuzic - Finistère,56167,observation-1be215a7-9e51-4359-852a-cef2c82e0d0b,https://biolit.fr/observations/observation-1be215a7-9e51-4359-852a-cef2c82e0d0b/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1000039-scaled.jpg,,TRUE, +N1,61321,sortie-1be215a7-9e51-4359-852a-cef2c82e0d0b,https://biolit.fr/sorties/sortie-1be215a7-9e51-4359-852a-cef2c82e0d0b/,Phil,,12/10/2015,11.0000000,11.0:45,47.944078000000,-4.410111000000,,Pouldreuzic - Finistère,56169,observation-1be215a7-9e51-4359-852a-cef2c82e0d0b-2,https://biolit.fr/observations/observation-1be215a7-9e51-4359-852a-cef2c82e0d0b-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/P1000032-scaled.jpg,,TRUE, +N1,61321,sortie-1be215a7-9e51-4359-852a-cef2c82e0d0b,https://biolit.fr/sorties/sortie-1be215a7-9e51-4359-852a-cef2c82e0d0b/,Phil,,12/10/2015,11.0000000,11.0:45,47.944078000000,-4.410111000000,,Pouldreuzic - Finistère,56171,observation-1be215a7-9e51-4359-852a-cef2c82e0d0b-3,https://biolit.fr/observations/observation-1be215a7-9e51-4359-852a-cef2c82e0d0b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000029.JPG,,FALSE, +N1,61321,sortie-1be215a7-9e51-4359-852a-cef2c82e0d0b,https://biolit.fr/sorties/sortie-1be215a7-9e51-4359-852a-cef2c82e0d0b/,Phil,,12/10/2015,11.0000000,11.0:45,47.944078000000,-4.410111000000,,Pouldreuzic - Finistère,56173,observation-1be215a7-9e51-4359-852a-cef2c82e0d0b-4,https://biolit.fr/observations/observation-1be215a7-9e51-4359-852a-cef2c82e0d0b-4/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1000027.JPG,,TRUE, +N1,61321,sortie-1be215a7-9e51-4359-852a-cef2c82e0d0b,https://biolit.fr/sorties/sortie-1be215a7-9e51-4359-852a-cef2c82e0d0b/,Phil,,12/10/2015,11.0000000,11.0:45,47.944078000000,-4.410111000000,,Pouldreuzic - Finistère,56175,observation-1be215a7-9e51-4359-852a-cef2c82e0d0b-5,https://biolit.fr/observations/observation-1be215a7-9e51-4359-852a-cef2c82e0d0b-5/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1000024.JPG,,TRUE, +N1,61321,sortie-1be215a7-9e51-4359-852a-cef2c82e0d0b,https://biolit.fr/sorties/sortie-1be215a7-9e51-4359-852a-cef2c82e0d0b/,Phil,,12/10/2015,11.0000000,11.0:45,47.944078000000,-4.410111000000,,Pouldreuzic - Finistère,56177,observation-1be215a7-9e51-4359-852a-cef2c82e0d0b-6,https://biolit.fr/observations/observation-1be215a7-9e51-4359-852a-cef2c82e0d0b-6/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/P1000016-scaled.jpg,,TRUE, +N1,61321,sortie-1be215a7-9e51-4359-852a-cef2c82e0d0b,https://biolit.fr/sorties/sortie-1be215a7-9e51-4359-852a-cef2c82e0d0b/,Phil,,12/10/2015,11.0000000,11.0:45,47.944078000000,-4.410111000000,,Pouldreuzic - Finistère,56179,observation-1be215a7-9e51-4359-852a-cef2c82e0d0b-7,https://biolit.fr/observations/observation-1be215a7-9e51-4359-852a-cef2c82e0d0b-7/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1000011.JPG,,TRUE, +N1,61321,sortie-1be215a7-9e51-4359-852a-cef2c82e0d0b,https://biolit.fr/sorties/sortie-1be215a7-9e51-4359-852a-cef2c82e0d0b/,Phil,,12/10/2015,11.0000000,11.0:45,47.944078000000,-4.410111000000,,Pouldreuzic - Finistère,56181,observation-1be215a7-9e51-4359-852a-cef2c82e0d0b-8,https://biolit.fr/observations/observation-1be215a7-9e51-4359-852a-cef2c82e0d0b-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000009.JPG,,FALSE, +N1,61322,sortie-409311c9-f24b-434b-83b4-3a51a6e7f962,https://biolit.fr/sorties/sortie-409311c9-f24b-434b-83b4-3a51a6e7f962/,Les Dodos,,12/09/2015,14.0000000,17.0000000,43.149477000000,6.421980000000,,Cavalière,56183,observation-409311c9-f24b-434b-83b4-3a51a6e7f962,https://biolit.fr/observations/observation-409311c9-f24b-434b-83b4-3a51a6e7f962/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151209_141454[1]-scaled.jpg,,FALSE, +N1,61322,sortie-409311c9-f24b-434b-83b4-3a51a6e7f962,https://biolit.fr/sorties/sortie-409311c9-f24b-434b-83b4-3a51a6e7f962/,Les Dodos,,12/09/2015,14.0000000,17.0000000,43.149477000000,6.421980000000,,Cavalière,56185,observation-409311c9-f24b-434b-83b4-3a51a6e7f962-2,https://biolit.fr/observations/observation-409311c9-f24b-434b-83b4-3a51a6e7f962-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151209_141616[1]-scaled.jpg,,FALSE, +N1,61322,sortie-409311c9-f24b-434b-83b4-3a51a6e7f962,https://biolit.fr/sorties/sortie-409311c9-f24b-434b-83b4-3a51a6e7f962/,Les Dodos,,12/09/2015,14.0000000,17.0000000,43.149477000000,6.421980000000,,Cavalière,56187,observation-409311c9-f24b-434b-83b4-3a51a6e7f962-3,https://biolit.fr/observations/observation-409311c9-f24b-434b-83b4-3a51a6e7f962-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151209_141646[1]-scaled.jpg,,FALSE, +N1,61322,sortie-409311c9-f24b-434b-83b4-3a51a6e7f962,https://biolit.fr/sorties/sortie-409311c9-f24b-434b-83b4-3a51a6e7f962/,Les Dodos,,12/09/2015,14.0000000,17.0000000,43.149477000000,6.421980000000,,Cavalière,56189,observation-409311c9-f24b-434b-83b4-3a51a6e7f962-4,https://biolit.fr/observations/observation-409311c9-f24b-434b-83b4-3a51a6e7f962-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151209_163838[1]-scaled.jpg,,FALSE, +N1,61323,sortie-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2,https://biolit.fr/sorties/sortie-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2/,Phil,,11/26/2015 0:00,13.0:15,13.0000000,47.856999000000,-3.919396000000,,Concarneau - Finistère,56191,observation-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2,https://biolit.fr/observations/observation-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151126_132316.jpg,,TRUE, +N1,61323,sortie-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2,https://biolit.fr/sorties/sortie-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2/,Phil,,11/26/2015 0:00,13.0:15,13.0000000,47.856999000000,-3.919396000000,,Concarneau - Finistère,56193,observation-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2-2,https://biolit.fr/observations/observation-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151126_132340.jpg,,FALSE, +N1,61323,sortie-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2,https://biolit.fr/sorties/sortie-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2/,Phil,,11/26/2015 0:00,13.0:15,13.0000000,47.856999000000,-3.919396000000,,Concarneau - Finistère,56195,observation-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2-3,https://biolit.fr/observations/observation-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2-3/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/20151126_132834.jpg,,TRUE, +N1,61323,sortie-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2,https://biolit.fr/sorties/sortie-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2/,Phil,,11/26/2015 0:00,13.0:15,13.0000000,47.856999000000,-3.919396000000,,Concarneau - Finistère,56197,observation-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2-4,https://biolit.fr/observations/observation-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2-4/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151126_131223.jpg,,TRUE, +N1,61323,sortie-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2,https://biolit.fr/sorties/sortie-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2/,Phil,,11/26/2015 0:00,13.0:15,13.0000000,47.856999000000,-3.919396000000,,Concarneau - Finistère,56199,observation-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2-5,https://biolit.fr/observations/observation-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151126_130854.jpg,,FALSE, +N1,61323,sortie-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2,https://biolit.fr/sorties/sortie-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2/,Phil,,11/26/2015 0:00,13.0:15,13.0000000,47.856999000000,-3.919396000000,,Concarneau - Finistère,56201,observation-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2-6,https://biolit.fr/observations/observation-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2-6/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20151126_131420.jpg,,TRUE, +N1,61323,sortie-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2,https://biolit.fr/sorties/sortie-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2/,Phil,,11/26/2015 0:00,13.0:15,13.0000000,47.856999000000,-3.919396000000,,Concarneau - Finistère,56203,observation-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2-7,https://biolit.fr/observations/observation-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151126_132820.jpg,,FALSE, +N1,61323,sortie-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2,https://biolit.fr/sorties/sortie-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2/,Phil,,11/26/2015 0:00,13.0:15,13.0000000,47.856999000000,-3.919396000000,,Concarneau - Finistère,56205,observation-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2-8,https://biolit.fr/observations/observation-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2-8/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04961.jpg,,TRUE, +N1,61324,sortie-249902f5-493c-4af6-bf57-107658501699,https://biolit.fr/sorties/sortie-249902f5-493c-4af6-bf57-107658501699/,Phil,,11/14/2015 0:00,15.0:15,15.0000000,48.607547000000,-4.594911000000,,Landeda - Finistère,56207,observation-249902f5-493c-4af6-bf57-107658501699,https://biolit.fr/observations/observation-249902f5-493c-4af6-bf57-107658501699/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/DSC04833.jpg,,TRUE, +N1,61324,sortie-249902f5-493c-4af6-bf57-107658501699,https://biolit.fr/sorties/sortie-249902f5-493c-4af6-bf57-107658501699/,Phil,,11/14/2015 0:00,15.0:15,15.0000000,48.607547000000,-4.594911000000,,Landeda - Finistère,56209,observation-249902f5-493c-4af6-bf57-107658501699-2,https://biolit.fr/observations/observation-249902f5-493c-4af6-bf57-107658501699-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04830.jpg,,TRUE, +N1,61325,sortie-c8185022-8cae-4a44-9f0f-20f0ad0b8672,https://biolit.fr/sorties/sortie-c8185022-8cae-4a44-9f0f-20f0ad0b8672/,Phil,,11/14/2015 0:00,15.0:55,16.0000000,48.605607000000,-4.594302000000,,Landeda - Finistère,56211,observation-c8185022-8cae-4a44-9f0f-20f0ad0b8672,https://biolit.fr/observations/observation-c8185022-8cae-4a44-9f0f-20f0ad0b8672/,Littorina compressa,Littorine à lignes noires,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04879.jpg,,TRUE, +N1,61325,sortie-c8185022-8cae-4a44-9f0f-20f0ad0b8672,https://biolit.fr/sorties/sortie-c8185022-8cae-4a44-9f0f-20f0ad0b8672/,Phil,,11/14/2015 0:00,15.0:55,16.0000000,48.605607000000,-4.594302000000,,Landeda - Finistère,56213,observation-c8185022-8cae-4a44-9f0f-20f0ad0b8672-2,https://biolit.fr/observations/observation-c8185022-8cae-4a44-9f0f-20f0ad0b8672-2/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04907.jpg,,TRUE, +N1,61325,sortie-c8185022-8cae-4a44-9f0f-20f0ad0b8672,https://biolit.fr/sorties/sortie-c8185022-8cae-4a44-9f0f-20f0ad0b8672/,Phil,,11/14/2015 0:00,15.0:55,16.0000000,48.605607000000,-4.594302000000,,Landeda - Finistère,56215,observation-c8185022-8cae-4a44-9f0f-20f0ad0b8672-3,https://biolit.fr/observations/observation-c8185022-8cae-4a44-9f0f-20f0ad0b8672-3/,Pelvetia canaliculata,Pelvétie,,https://biolit.fr/wp-content/uploads/2023/07/DSC04908.jpg,,TRUE, +N1,61325,sortie-c8185022-8cae-4a44-9f0f-20f0ad0b8672,https://biolit.fr/sorties/sortie-c8185022-8cae-4a44-9f0f-20f0ad0b8672/,Phil,,11/14/2015 0:00,15.0:55,16.0000000,48.605607000000,-4.594302000000,,Landeda - Finistère,56217,observation-c8185022-8cae-4a44-9f0f-20f0ad0b8672-4,https://biolit.fr/observations/observation-c8185022-8cae-4a44-9f0f-20f0ad0b8672-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04869.jpg,,FALSE, +N1,61326,sortie-09a7b477-bf78-469a-8a44-0b64eb5efeeb,https://biolit.fr/sorties/sortie-09a7b477-bf78-469a-8a44-0b64eb5efeeb/,Phil,,11/12/2015,10.0000000,12.0000000,48.004793000000,-4.517818000000,,Plouhinec - Finistère,56219,observation-09a7b477-bf78-469a-8a44-0b64eb5efeeb,https://biolit.fr/observations/observation-09a7b477-bf78-469a-8a44-0b64eb5efeeb/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20151112_121807.jpg,,TRUE, +N1,61326,sortie-09a7b477-bf78-469a-8a44-0b64eb5efeeb,https://biolit.fr/sorties/sortie-09a7b477-bf78-469a-8a44-0b64eb5efeeb/,Phil,,11/12/2015,10.0000000,12.0000000,48.004793000000,-4.517818000000,,Plouhinec - Finistère,56221,observation-09a7b477-bf78-469a-8a44-0b64eb5efeeb-2,https://biolit.fr/observations/observation-09a7b477-bf78-469a-8a44-0b64eb5efeeb-2/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20151112_121736.jpg,,TRUE, +N1,61326,sortie-09a7b477-bf78-469a-8a44-0b64eb5efeeb,https://biolit.fr/sorties/sortie-09a7b477-bf78-469a-8a44-0b64eb5efeeb/,Phil,,11/12/2015,10.0000000,12.0000000,48.004793000000,-4.517818000000,,Plouhinec - Finistère,56223,observation-09a7b477-bf78-469a-8a44-0b64eb5efeeb-3,https://biolit.fr/observations/observation-09a7b477-bf78-469a-8a44-0b64eb5efeeb-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_122051.jpg,,FALSE, +N1,61326,sortie-09a7b477-bf78-469a-8a44-0b64eb5efeeb,https://biolit.fr/sorties/sortie-09a7b477-bf78-469a-8a44-0b64eb5efeeb/,Phil,,11/12/2015,10.0000000,12.0000000,48.004793000000,-4.517818000000,,Plouhinec - Finistère,56225,observation-09a7b477-bf78-469a-8a44-0b64eb5efeeb-4,https://biolit.fr/observations/observation-09a7b477-bf78-469a-8a44-0b64eb5efeeb-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_122108.jpg,,FALSE, +N1,61326,sortie-09a7b477-bf78-469a-8a44-0b64eb5efeeb,https://biolit.fr/sorties/sortie-09a7b477-bf78-469a-8a44-0b64eb5efeeb/,Phil,,11/12/2015,10.0000000,12.0000000,48.004793000000,-4.517818000000,,Plouhinec - Finistère,56227,observation-09a7b477-bf78-469a-8a44-0b64eb5efeeb-5,https://biolit.fr/observations/observation-09a7b477-bf78-469a-8a44-0b64eb5efeeb-5/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/20151112_121445.jpg,,TRUE, +N1,61326,sortie-09a7b477-bf78-469a-8a44-0b64eb5efeeb,https://biolit.fr/sorties/sortie-09a7b477-bf78-469a-8a44-0b64eb5efeeb/,Phil,,11/12/2015,10.0000000,12.0000000,48.004793000000,-4.517818000000,,Plouhinec - Finistère,56229,observation-09a7b477-bf78-469a-8a44-0b64eb5efeeb-6,https://biolit.fr/observations/observation-09a7b477-bf78-469a-8a44-0b64eb5efeeb-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_121342.jpg,,FALSE, +N1,61327,sortie-2c516c63-11a6-43b4-9d89-6be03dcacc3d,https://biolit.fr/sorties/sortie-2c516c63-11a6-43b4-9d89-6be03dcacc3d/,boser,,12/05/2015,10.0000000,11.0:25,43.454405000000,3.813591000000,,Frontignan plage,56231,observation-2c516c63-11a6-43b4-9d89-6be03dcacc3d,https://biolit.fr/observations/observation-2c516c63-11a6-43b4-9d89-6be03dcacc3d/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/P1040788-scaled.jpg,,TRUE, +N1,61327,sortie-2c516c63-11a6-43b4-9d89-6be03dcacc3d,https://biolit.fr/sorties/sortie-2c516c63-11a6-43b4-9d89-6be03dcacc3d/,boser,,12/05/2015,10.0000000,11.0:25,43.454405000000,3.813591000000,,Frontignan plage,56233,observation-2c516c63-11a6-43b4-9d89-6be03dcacc3d-2,https://biolit.fr/observations/observation-2c516c63-11a6-43b4-9d89-6be03dcacc3d-2/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1040792-scaled.jpg,,TRUE, +N1,61327,sortie-2c516c63-11a6-43b4-9d89-6be03dcacc3d,https://biolit.fr/sorties/sortie-2c516c63-11a6-43b4-9d89-6be03dcacc3d/,boser,,12/05/2015,10.0000000,11.0:25,43.454405000000,3.813591000000,,Frontignan plage,56235,observation-2c516c63-11a6-43b4-9d89-6be03dcacc3d-3,https://biolit.fr/observations/observation-2c516c63-11a6-43b4-9d89-6be03dcacc3d-3/,Raja asterias,Raie étoilée,,https://biolit.fr/wp-content/uploads/2023/07/P1040800_0-scaled.jpg,,TRUE, +N1,61327,sortie-2c516c63-11a6-43b4-9d89-6be03dcacc3d,https://biolit.fr/sorties/sortie-2c516c63-11a6-43b4-9d89-6be03dcacc3d/,boser,,12/05/2015,10.0000000,11.0:25,43.454405000000,3.813591000000,,Frontignan plage,56237,observation-2c516c63-11a6-43b4-9d89-6be03dcacc3d-4,https://biolit.fr/observations/observation-2c516c63-11a6-43b4-9d89-6be03dcacc3d-4/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/P1040803-scaled.jpg,,TRUE, +N1,61327,sortie-2c516c63-11a6-43b4-9d89-6be03dcacc3d,https://biolit.fr/sorties/sortie-2c516c63-11a6-43b4-9d89-6be03dcacc3d/,boser,,12/05/2015,10.0000000,11.0:25,43.454405000000,3.813591000000,,Frontignan plage,56239,observation-2c516c63-11a6-43b4-9d89-6be03dcacc3d-5,https://biolit.fr/observations/observation-2c516c63-11a6-43b4-9d89-6be03dcacc3d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040817-scaled.jpg,,FALSE, +N1,61328,sortie-30045f81-0072-4b29-8a17-315cd9be105a,https://biolit.fr/sorties/sortie-30045f81-0072-4b29-8a17-315cd9be105a/,Phil,,12/02/2015,15.0000000,16.000005,47.792317000000,-4.287663000000,,Le Guilvinec - Finistère,56241,observation-30045f81-0072-4b29-8a17-315cd9be105a,https://biolit.fr/observations/observation-30045f81-0072-4b29-8a17-315cd9be105a/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151202_155800.jpg,,TRUE, +N1,61328,sortie-30045f81-0072-4b29-8a17-315cd9be105a,https://biolit.fr/sorties/sortie-30045f81-0072-4b29-8a17-315cd9be105a/,Phil,,12/02/2015,15.0000000,16.000005,47.792317000000,-4.287663000000,,Le Guilvinec - Finistère,56243,observation-30045f81-0072-4b29-8a17-315cd9be105a-2,https://biolit.fr/observations/observation-30045f81-0072-4b29-8a17-315cd9be105a-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151202_155645.jpg,,TRUE, +N1,61328,sortie-30045f81-0072-4b29-8a17-315cd9be105a,https://biolit.fr/sorties/sortie-30045f81-0072-4b29-8a17-315cd9be105a/,Phil,,12/02/2015,15.0000000,16.000005,47.792317000000,-4.287663000000,,Le Guilvinec - Finistère,56245,observation-30045f81-0072-4b29-8a17-315cd9be105a-3,https://biolit.fr/observations/observation-30045f81-0072-4b29-8a17-315cd9be105a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151202_155453.jpg,,FALSE, +N1,61328,sortie-30045f81-0072-4b29-8a17-315cd9be105a,https://biolit.fr/sorties/sortie-30045f81-0072-4b29-8a17-315cd9be105a/,Phil,,12/02/2015,15.0000000,16.000005,47.792317000000,-4.287663000000,,Le Guilvinec - Finistère,56247,observation-30045f81-0072-4b29-8a17-315cd9be105a-4,https://biolit.fr/observations/observation-30045f81-0072-4b29-8a17-315cd9be105a-4/,Electra pilosa,Ecorce pileuse,,https://biolit.fr/wp-content/uploads/2023/07/20151202_160033.jpg,,TRUE, +N1,61328,sortie-30045f81-0072-4b29-8a17-315cd9be105a,https://biolit.fr/sorties/sortie-30045f81-0072-4b29-8a17-315cd9be105a/,Phil,,12/02/2015,15.0000000,16.000005,47.792317000000,-4.287663000000,,Le Guilvinec - Finistère,56249,observation-30045f81-0072-4b29-8a17-315cd9be105a-5,https://biolit.fr/observations/observation-30045f81-0072-4b29-8a17-315cd9be105a-5/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/20151202_160206.jpg,,TRUE, +N1,61328,sortie-30045f81-0072-4b29-8a17-315cd9be105a,https://biolit.fr/sorties/sortie-30045f81-0072-4b29-8a17-315cd9be105a/,Phil,,12/02/2015,15.0000000,16.000005,47.792317000000,-4.287663000000,,Le Guilvinec - Finistère,56251,observation-30045f81-0072-4b29-8a17-315cd9be105a-6,https://biolit.fr/observations/observation-30045f81-0072-4b29-8a17-315cd9be105a-6/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20151202_160546.jpg,,TRUE, +N1,61329,sortie-417b5eb6-0263-4607-ae8f-9fba283023bf,https://biolit.fr/sorties/sortie-417b5eb6-0263-4607-ae8f-9fba283023bf/,Phil,,11/12/2015,12.0000000,13.0000000,48.008825000000,-4.535240000000,,Plouhinec - Finistère,56253,observation-417b5eb6-0263-4607-ae8f-9fba283023bf,https://biolit.fr/observations/observation-417b5eb6-0263-4607-ae8f-9fba283023bf/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_123024.jpg,,FALSE, +N1,61329,sortie-417b5eb6-0263-4607-ae8f-9fba283023bf,https://biolit.fr/sorties/sortie-417b5eb6-0263-4607-ae8f-9fba283023bf/,Phil,,11/12/2015,12.0000000,13.0000000,48.008825000000,-4.535240000000,,Plouhinec - Finistère,56255,observation-417b5eb6-0263-4607-ae8f-9fba283023bf-2,https://biolit.fr/observations/observation-417b5eb6-0263-4607-ae8f-9fba283023bf-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_123115.jpg,,FALSE, +N1,61329,sortie-417b5eb6-0263-4607-ae8f-9fba283023bf,https://biolit.fr/sorties/sortie-417b5eb6-0263-4607-ae8f-9fba283023bf/,Phil,,11/12/2015,12.0000000,13.0000000,48.008825000000,-4.535240000000,,Plouhinec - Finistère,56257,observation-417b5eb6-0263-4607-ae8f-9fba283023bf-3,https://biolit.fr/observations/observation-417b5eb6-0263-4607-ae8f-9fba283023bf-3/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/20151112_125656.jpg,,TRUE, +N1,61329,sortie-417b5eb6-0263-4607-ae8f-9fba283023bf,https://biolit.fr/sorties/sortie-417b5eb6-0263-4607-ae8f-9fba283023bf/,Phil,,11/12/2015,12.0000000,13.0000000,48.008825000000,-4.535240000000,,Plouhinec - Finistère,56259,observation-417b5eb6-0263-4607-ae8f-9fba283023bf-4,https://biolit.fr/observations/observation-417b5eb6-0263-4607-ae8f-9fba283023bf-4/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04752.jpg,,TRUE, +N1,61329,sortie-417b5eb6-0263-4607-ae8f-9fba283023bf,https://biolit.fr/sorties/sortie-417b5eb6-0263-4607-ae8f-9fba283023bf/,Phil,,11/12/2015,12.0000000,13.0000000,48.008825000000,-4.535240000000,,Plouhinec - Finistère,56261,observation-417b5eb6-0263-4607-ae8f-9fba283023bf-5,https://biolit.fr/observations/observation-417b5eb6-0263-4607-ae8f-9fba283023bf-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04754.jpg,,FALSE, +N1,61330,sortie-f0185798-2152-4e5c-822e-4b255839f70c,https://biolit.fr/sorties/sortie-f0185798-2152-4e5c-822e-4b255839f70c/,Phil,,11/26/2015 0:00,12.0000000,12.0:35,47.858075000000,-3.915723000000,,Concarneau - Finistère,56263,observation-f0185798-2152-4e5c-822e-4b255839f70c,https://biolit.fr/observations/observation-f0185798-2152-4e5c-822e-4b255839f70c/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151126_124611.jpg,,FALSE, +N1,61330,sortie-f0185798-2152-4e5c-822e-4b255839f70c,https://biolit.fr/sorties/sortie-f0185798-2152-4e5c-822e-4b255839f70c/,Phil,,11/26/2015 0:00,12.0000000,12.0:35,47.858075000000,-3.915723000000,,Concarneau - Finistère,56265,observation-f0185798-2152-4e5c-822e-4b255839f70c-2,https://biolit.fr/observations/observation-f0185798-2152-4e5c-822e-4b255839f70c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151126_123947.jpg,,FALSE, +N1,61330,sortie-f0185798-2152-4e5c-822e-4b255839f70c,https://biolit.fr/sorties/sortie-f0185798-2152-4e5c-822e-4b255839f70c/,Phil,,11/26/2015 0:00,12.0000000,12.0:35,47.858075000000,-3.915723000000,,Concarneau - Finistère,56267,observation-f0185798-2152-4e5c-822e-4b255839f70c-3,https://biolit.fr/observations/observation-f0185798-2152-4e5c-822e-4b255839f70c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04971.jpg,,FALSE, +N1,61330,sortie-f0185798-2152-4e5c-822e-4b255839f70c,https://biolit.fr/sorties/sortie-f0185798-2152-4e5c-822e-4b255839f70c/,Phil,,11/26/2015 0:00,12.0000000,12.0:35,47.858075000000,-3.915723000000,,Concarneau - Finistère,56269,observation-f0185798-2152-4e5c-822e-4b255839f70c-4,https://biolit.fr/observations/observation-f0185798-2152-4e5c-822e-4b255839f70c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04977.jpg,,FALSE, +N1,61330,sortie-f0185798-2152-4e5c-822e-4b255839f70c,https://biolit.fr/sorties/sortie-f0185798-2152-4e5c-822e-4b255839f70c/,Phil,,11/26/2015 0:00,12.0000000,12.0:35,47.858075000000,-3.915723000000,,Concarneau - Finistère,56271,observation-f0185798-2152-4e5c-822e-4b255839f70c-5,https://biolit.fr/observations/observation-f0185798-2152-4e5c-822e-4b255839f70c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04968.jpg,,FALSE, +N1,61331,sortie-b94d6ea3-c91f-4a2c-a03a-50d3048a2c09,https://biolit.fr/sorties/sortie-b94d6ea3-c91f-4a2c-a03a-50d3048a2c09/,Phil,,10/09/2015,17.0000000,17.000005,47.886714000000,-3.965661000000,,La Forêt-Fouesnant - Finistère,56273,observation-b94d6ea3-c91f-4a2c-a03a-50d3048a2c09,https://biolit.fr/observations/observation-b94d6ea3-c91f-4a2c-a03a-50d3048a2c09/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20151009_170335.jpg,,TRUE, +N1,61331,sortie-b94d6ea3-c91f-4a2c-a03a-50d3048a2c09,https://biolit.fr/sorties/sortie-b94d6ea3-c91f-4a2c-a03a-50d3048a2c09/,Phil,,10/09/2015,17.0000000,17.000005,47.886714000000,-3.965661000000,,La Forêt-Fouesnant - Finistère,56275,observation-b94d6ea3-c91f-4a2c-a03a-50d3048a2c09-2,https://biolit.fr/observations/observation-b94d6ea3-c91f-4a2c-a03a-50d3048a2c09-2/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20151009_170630.jpg,,TRUE, +N1,61331,sortie-b94d6ea3-c91f-4a2c-a03a-50d3048a2c09,https://biolit.fr/sorties/sortie-b94d6ea3-c91f-4a2c-a03a-50d3048a2c09/,Phil,,10/09/2015,17.0000000,17.000005,47.886714000000,-3.965661000000,,La Forêt-Fouesnant - Finistère,56277,observation-b94d6ea3-c91f-4a2c-a03a-50d3048a2c09-3,https://biolit.fr/observations/observation-b94d6ea3-c91f-4a2c-a03a-50d3048a2c09-3/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20151009_170540.jpg,,TRUE, +N1,61331,sortie-b94d6ea3-c91f-4a2c-a03a-50d3048a2c09,https://biolit.fr/sorties/sortie-b94d6ea3-c91f-4a2c-a03a-50d3048a2c09/,Phil,,10/09/2015,17.0000000,17.000005,47.886714000000,-3.965661000000,,La Forêt-Fouesnant - Finistère,56279,observation-b94d6ea3-c91f-4a2c-a03a-50d3048a2c09-4,https://biolit.fr/observations/observation-b94d6ea3-c91f-4a2c-a03a-50d3048a2c09-4/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20151009_170719.jpg,,TRUE, +N1,61332,sortie-aa96d9e0-c942-4f9d-922d-5d0e77dabdb6,https://biolit.fr/sorties/sortie-aa96d9e0-c942-4f9d-922d-5d0e77dabdb6/,Marine,,11/17/2015 0:00,14.0000000,16.0000000,43.266264000000,5.371482000000,,Base nautique du Roucas Blanc,56281,observation-aa96d9e0-c942-4f9d-922d-5d0e77dabdb6,https://biolit.fr/observations/observation-aa96d9e0-c942-4f9d-922d-5d0e77dabdb6/,Sabella spallanzanii,Spirographe,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0922-scaled.jpg,,TRUE, +N1,61333,sortie-b28f281f-8b09-42ec-b435-0e3637dc3b4d,https://biolit.fr/sorties/sortie-b28f281f-8b09-42ec-b435-0e3637dc3b4d/,Phil,,11/26/2015 0:00,12.0000000,13.0000000,47.8589230000,-3.91638200000,,Concarneau - Finistère,56283,observation-b28f281f-8b09-42ec-b435-0e3637dc3b4d,https://biolit.fr/observations/observation-b28f281f-8b09-42ec-b435-0e3637dc3b4d/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20151126_125711.jpg,,TRUE, +N1,61333,sortie-b28f281f-8b09-42ec-b435-0e3637dc3b4d,https://biolit.fr/sorties/sortie-b28f281f-8b09-42ec-b435-0e3637dc3b4d/,Phil,,11/26/2015 0:00,12.0000000,13.0000000,47.8589230000,-3.91638200000,,Concarneau - Finistère,56285,observation-b28f281f-8b09-42ec-b435-0e3637dc3b4d-2,https://biolit.fr/observations/observation-b28f281f-8b09-42ec-b435-0e3637dc3b4d-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20151126_125103.jpg,,TRUE, +N1,61333,sortie-b28f281f-8b09-42ec-b435-0e3637dc3b4d,https://biolit.fr/sorties/sortie-b28f281f-8b09-42ec-b435-0e3637dc3b4d/,Phil,,11/26/2015 0:00,12.0000000,13.0000000,47.8589230000,-3.91638200000,,Concarneau - Finistère,56287,observation-b28f281f-8b09-42ec-b435-0e3637dc3b4d-3,https://biolit.fr/observations/observation-b28f281f-8b09-42ec-b435-0e3637dc3b4d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151126_125335.jpg,,FALSE, +N1,61333,sortie-b28f281f-8b09-42ec-b435-0e3637dc3b4d,https://biolit.fr/sorties/sortie-b28f281f-8b09-42ec-b435-0e3637dc3b4d/,Phil,,11/26/2015 0:00,12.0000000,13.0000000,47.8589230000,-3.91638200000,,Concarneau - Finistère,56289,observation-b28f281f-8b09-42ec-b435-0e3637dc3b4d-4,https://biolit.fr/observations/observation-b28f281f-8b09-42ec-b435-0e3637dc3b4d-4/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/20151126_124733.jpg,,TRUE, +N1,61333,sortie-b28f281f-8b09-42ec-b435-0e3637dc3b4d,https://biolit.fr/sorties/sortie-b28f281f-8b09-42ec-b435-0e3637dc3b4d/,Phil,,11/26/2015 0:00,12.0000000,13.0000000,47.8589230000,-3.91638200000,,Concarneau - Finistère,56291,observation-b28f281f-8b09-42ec-b435-0e3637dc3b4d-5,https://biolit.fr/observations/observation-b28f281f-8b09-42ec-b435-0e3637dc3b4d-5/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/20151126_124818.jpg,,TRUE, +N1,61334,sortie-3728ff82-3e2f-411c-8443-f3d02553b1f4,https://biolit.fr/sorties/sortie-3728ff82-3e2f-411c-8443-f3d02553b1f4/,Phil,,11/26/2015 0:00,13.0000000,14.0000000,47.856743000000,-3.918645000000,,Concarneau - Finistère,56293,observation-3728ff82-3e2f-411c-8443-f3d02553b1f4,https://biolit.fr/observations/observation-3728ff82-3e2f-411c-8443-f3d02553b1f4/,Ramalina siliquosa,Ramaline des rochers,,https://biolit.fr/wp-content/uploads/2023/07/20151126_135237.jpg,,TRUE, +N1,61334,sortie-3728ff82-3e2f-411c-8443-f3d02553b1f4,https://biolit.fr/sorties/sortie-3728ff82-3e2f-411c-8443-f3d02553b1f4/,Phil,,11/26/2015 0:00,13.0000000,14.0000000,47.856743000000,-3.918645000000,,Concarneau - Finistère,56295,observation-3728ff82-3e2f-411c-8443-f3d02553b1f4-2,https://biolit.fr/observations/observation-3728ff82-3e2f-411c-8443-f3d02553b1f4-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20151126_135445.jpg,,TRUE, +N1,61335,sortie-22159040-064b-4d68-bd2f-e41061445289,https://biolit.fr/sorties/sortie-22159040-064b-4d68-bd2f-e41061445289/,Marine,,11/24/2015 0:00,13.0:35,14.0:35,41.468227000000,9.266860000000,,La rondinara,56297,observation-22159040-064b-4d68-bd2f-e41061445289,https://biolit.fr/observations/observation-22159040-064b-4d68-bd2f-e41061445289/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0262-scaled.jpg,,FALSE, +N1,61336,sortie-410d277e-57e0-4827-9794-b9c31b80750e,https://biolit.fr/sorties/sortie-410d277e-57e0-4827-9794-b9c31b80750e/,Marine,,11/24/2015 0:00,12.0:15,13.0:15,41.388230000000,9.162484000000,,Port de Bonifacio,56299,observation-410d277e-57e0-4827-9794-b9c31b80750e,https://biolit.fr/observations/observation-410d277e-57e0-4827-9794-b9c31b80750e/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0252-scaled.jpg,,FALSE, +N1,61336,sortie-410d277e-57e0-4827-9794-b9c31b80750e,https://biolit.fr/sorties/sortie-410d277e-57e0-4827-9794-b9c31b80750e/,Marine,,11/24/2015 0:00,12.0:15,13.0:15,41.388230000000,9.162484000000,,Port de Bonifacio,56301,observation-410d277e-57e0-4827-9794-b9c31b80750e-2,https://biolit.fr/observations/observation-410d277e-57e0-4827-9794-b9c31b80750e-2/,Chromis chromis,Castagnole,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0254-scaled.jpg,,TRUE, +N1,61337,sortie-b0d4a6c9-80ac-4434-9939-c0f7827534b7,https://biolit.fr/sorties/sortie-b0d4a6c9-80ac-4434-9939-c0f7827534b7/,Phil,,11/25/2015 0:00,10.0000000,11.0:15,48.098648000000,-4.29555500000,,Kerlaz - Finistère,56303,observation-b0d4a6c9-80ac-4434-9939-c0f7827534b7,https://biolit.fr/observations/observation-b0d4a6c9-80ac-4434-9939-c0f7827534b7/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20151125_102803.jpg,,TRUE, +N1,61337,sortie-b0d4a6c9-80ac-4434-9939-c0f7827534b7,https://biolit.fr/sorties/sortie-b0d4a6c9-80ac-4434-9939-c0f7827534b7/,Phil,,11/25/2015 0:00,10.0000000,11.0:15,48.098648000000,-4.29555500000,,Kerlaz - Finistère,56305,observation-b0d4a6c9-80ac-4434-9939-c0f7827534b7-2,https://biolit.fr/observations/observation-b0d4a6c9-80ac-4434-9939-c0f7827534b7-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20151125_102814.jpg,,TRUE, +N1,61337,sortie-b0d4a6c9-80ac-4434-9939-c0f7827534b7,https://biolit.fr/sorties/sortie-b0d4a6c9-80ac-4434-9939-c0f7827534b7/,Phil,,11/25/2015 0:00,10.0000000,11.0:15,48.098648000000,-4.29555500000,,Kerlaz - Finistère,56307,observation-b0d4a6c9-80ac-4434-9939-c0f7827534b7-3,https://biolit.fr/observations/observation-b0d4a6c9-80ac-4434-9939-c0f7827534b7-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20151125_103653.jpg,,TRUE, +N1,61337,sortie-b0d4a6c9-80ac-4434-9939-c0f7827534b7,https://biolit.fr/sorties/sortie-b0d4a6c9-80ac-4434-9939-c0f7827534b7/,Phil,,11/25/2015 0:00,10.0000000,11.0:15,48.098648000000,-4.29555500000,,Kerlaz - Finistère,56309,observation-b0d4a6c9-80ac-4434-9939-c0f7827534b7-4,https://biolit.fr/observations/observation-b0d4a6c9-80ac-4434-9939-c0f7827534b7-4/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC04949.jpg,,TRUE, +N1,61337,sortie-b0d4a6c9-80ac-4434-9939-c0f7827534b7,https://biolit.fr/sorties/sortie-b0d4a6c9-80ac-4434-9939-c0f7827534b7/,Phil,,11/25/2015 0:00,10.0000000,11.0:15,48.098648000000,-4.29555500000,,Kerlaz - Finistère,56311,observation-b0d4a6c9-80ac-4434-9939-c0f7827534b7-5,https://biolit.fr/observations/observation-b0d4a6c9-80ac-4434-9939-c0f7827534b7-5/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20151125_111336.jpg,,TRUE, +N1,61338,sortie-451758f3-15de-435d-8395-538955cbda94,https://biolit.fr/sorties/sortie-451758f3-15de-435d-8395-538955cbda94/,Phil,,11/12/2015,12.000005,12.0000000,48.003575000000,-4.519123000000,,Plouhinec - Finistère,56313,observation-451758f3-15de-435d-8395-538955cbda94,https://biolit.fr/observations/observation-451758f3-15de-435d-8395-538955cbda94/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20151112_120804.jpg,,TRUE, +N1,61338,sortie-451758f3-15de-435d-8395-538955cbda94,https://biolit.fr/sorties/sortie-451758f3-15de-435d-8395-538955cbda94/,Phil,,11/12/2015,12.000005,12.0000000,48.003575000000,-4.519123000000,,Plouhinec - Finistère,56315,observation-451758f3-15de-435d-8395-538955cbda94-2,https://biolit.fr/observations/observation-451758f3-15de-435d-8395-538955cbda94-2/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20151112_120610.jpg,,TRUE, +N1,61338,sortie-451758f3-15de-435d-8395-538955cbda94,https://biolit.fr/sorties/sortie-451758f3-15de-435d-8395-538955cbda94/,Phil,,11/12/2015,12.000005,12.0000000,48.003575000000,-4.519123000000,,Plouhinec - Finistère,56317,observation-451758f3-15de-435d-8395-538955cbda94-3,https://biolit.fr/observations/observation-451758f3-15de-435d-8395-538955cbda94-3/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20151112_120804_0.jpg,,TRUE, +N1,61338,sortie-451758f3-15de-435d-8395-538955cbda94,https://biolit.fr/sorties/sortie-451758f3-15de-435d-8395-538955cbda94/,Phil,,11/12/2015,12.000005,12.0000000,48.003575000000,-4.519123000000,,Plouhinec - Finistère,56319,observation-451758f3-15de-435d-8395-538955cbda94-4,https://biolit.fr/observations/observation-451758f3-15de-435d-8395-538955cbda94-4/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20151112_120400.jpg,,TRUE, +N1,61338,sortie-451758f3-15de-435d-8395-538955cbda94,https://biolit.fr/sorties/sortie-451758f3-15de-435d-8395-538955cbda94/,Phil,,11/12/2015,12.000005,12.0000000,48.003575000000,-4.519123000000,,Plouhinec - Finistère,56321,observation-451758f3-15de-435d-8395-538955cbda94-5,https://biolit.fr/observations/observation-451758f3-15de-435d-8395-538955cbda94-5/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20151112_120440.jpg,,TRUE, +N1,61338,sortie-451758f3-15de-435d-8395-538955cbda94,https://biolit.fr/sorties/sortie-451758f3-15de-435d-8395-538955cbda94/,Phil,,11/12/2015,12.000005,12.0000000,48.003575000000,-4.519123000000,,Plouhinec - Finistère,56323,observation-451758f3-15de-435d-8395-538955cbda94-6,https://biolit.fr/observations/observation-451758f3-15de-435d-8395-538955cbda94-6/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20151112_120519.jpg,,TRUE, +N1,61338,sortie-451758f3-15de-435d-8395-538955cbda94,https://biolit.fr/sorties/sortie-451758f3-15de-435d-8395-538955cbda94/,Phil,,11/12/2015,12.000005,12.0000000,48.003575000000,-4.519123000000,,Plouhinec - Finistère,56325,observation-451758f3-15de-435d-8395-538955cbda94-7,https://biolit.fr/observations/observation-451758f3-15de-435d-8395-538955cbda94-7/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151112_121040.jpg,,TRUE, +N1,61339,sortie-c6386627-5d2b-4d0f-8f09-b742ec8eb7d1,https://biolit.fr/sorties/sortie-c6386627-5d2b-4d0f-8f09-b742ec8eb7d1/,Phil,,11/25/2015 0:00,11.0:25,11.0000000,48.093109000000,-4.304967000000,,Douarnenez - Finistère,56327,observation-c6386627-5d2b-4d0f-8f09-b742ec8eb7d1,https://biolit.fr/observations/observation-c6386627-5d2b-4d0f-8f09-b742ec8eb7d1/,Astropecten irregularis,Etoile-peigne commune,,https://biolit.fr/wp-content/uploads/2023/07/20151125_112632.jpg,,TRUE, +N1,61339,sortie-c6386627-5d2b-4d0f-8f09-b742ec8eb7d1,https://biolit.fr/sorties/sortie-c6386627-5d2b-4d0f-8f09-b742ec8eb7d1/,Phil,,11/25/2015 0:00,11.0:25,11.0000000,48.093109000000,-4.304967000000,,Douarnenez - Finistère,56329,observation-c6386627-5d2b-4d0f-8f09-b742ec8eb7d1-2,https://biolit.fr/observations/observation-c6386627-5d2b-4d0f-8f09-b742ec8eb7d1-2/,Astropecten irregularis,Etoile-peigne commune,,https://biolit.fr/wp-content/uploads/2023/07/20151125_112644.jpg,,TRUE, +N1,61339,sortie-c6386627-5d2b-4d0f-8f09-b742ec8eb7d1,https://biolit.fr/sorties/sortie-c6386627-5d2b-4d0f-8f09-b742ec8eb7d1/,Phil,,11/25/2015 0:00,11.0:25,11.0000000,48.093109000000,-4.304967000000,,Douarnenez - Finistère,56331,observation-c6386627-5d2b-4d0f-8f09-b742ec8eb7d1-3,https://biolit.fr/observations/observation-c6386627-5d2b-4d0f-8f09-b742ec8eb7d1-3/,Astropecten irregularis,Etoile-peigne commune,,https://biolit.fr/wp-content/uploads/2023/07/20151125_112613.jpg,,TRUE, +N1,61339,sortie-c6386627-5d2b-4d0f-8f09-b742ec8eb7d1,https://biolit.fr/sorties/sortie-c6386627-5d2b-4d0f-8f09-b742ec8eb7d1/,Phil,,11/25/2015 0:00,11.0:25,11.0000000,48.093109000000,-4.304967000000,,Douarnenez - Finistère,56333,observation-c6386627-5d2b-4d0f-8f09-b742ec8eb7d1-4,https://biolit.fr/observations/observation-c6386627-5d2b-4d0f-8f09-b742ec8eb7d1-4/,Astropecten irregularis,Etoile-peigne commune,,https://biolit.fr/wp-content/uploads/2023/07/20151125_112425.jpg,,TRUE, +N1,61340,sortie-0637c498-8461-4211-a2df-ad01ef23eaec,https://biolit.fr/sorties/sortie-0637c498-8461-4211-a2df-ad01ef23eaec/,Phil,,11/25/2015 0:00,11.0:35,11.0000000,48.095395000000,-4.29824800000,,Kerlaz - Finistère,56335,observation-0637c498-8461-4211-a2df-ad01ef23eaec,https://biolit.fr/observations/observation-0637c498-8461-4211-a2df-ad01ef23eaec/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151125_113623.jpg,,TRUE, +N1,61340,sortie-0637c498-8461-4211-a2df-ad01ef23eaec,https://biolit.fr/sorties/sortie-0637c498-8461-4211-a2df-ad01ef23eaec/,Phil,,11/25/2015 0:00,11.0:35,11.0000000,48.095395000000,-4.29824800000,,Kerlaz - Finistère,56337,observation-0637c498-8461-4211-a2df-ad01ef23eaec-2,https://biolit.fr/observations/observation-0637c498-8461-4211-a2df-ad01ef23eaec-2/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151125_113748.jpg,,TRUE, +N1,61340,sortie-0637c498-8461-4211-a2df-ad01ef23eaec,https://biolit.fr/sorties/sortie-0637c498-8461-4211-a2df-ad01ef23eaec/,Phil,,11/25/2015 0:00,11.0:35,11.0000000,48.095395000000,-4.29824800000,,Kerlaz - Finistère,56339,observation-0637c498-8461-4211-a2df-ad01ef23eaec-3,https://biolit.fr/observations/observation-0637c498-8461-4211-a2df-ad01ef23eaec-3/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151125_113710.jpg,,TRUE, +N1,61340,sortie-0637c498-8461-4211-a2df-ad01ef23eaec,https://biolit.fr/sorties/sortie-0637c498-8461-4211-a2df-ad01ef23eaec/,Phil,,11/25/2015 0:00,11.0:35,11.0000000,48.095395000000,-4.29824800000,,Kerlaz - Finistère,56341,observation-0637c498-8461-4211-a2df-ad01ef23eaec-4,https://biolit.fr/observations/observation-0637c498-8461-4211-a2df-ad01ef23eaec-4/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151125_113732.jpg,,TRUE, +N1,61341,sortie-a748faff-03d0-4be9-9571-70df00646a26,https://biolit.fr/sorties/sortie-a748faff-03d0-4be9-9571-70df00646a26/,Phil,,11/15/2015 0:00,11.0000000,11.0:35,48.133443000000,-4.275578000000,,Plonevez Porzay - Finistère,56343,observation-a748faff-03d0-4be9-9571-70df00646a26,https://biolit.fr/observations/observation-a748faff-03d0-4be9-9571-70df00646a26/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/07/20151115_121804.jpg,,TRUE, +N1,61341,sortie-a748faff-03d0-4be9-9571-70df00646a26,https://biolit.fr/sorties/sortie-a748faff-03d0-4be9-9571-70df00646a26/,Phil,,11/15/2015 0:00,11.0000000,11.0:35,48.133443000000,-4.275578000000,,Plonevez Porzay - Finistère,56345,observation-a748faff-03d0-4be9-9571-70df00646a26-2,https://biolit.fr/observations/observation-a748faff-03d0-4be9-9571-70df00646a26-2/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/07/20151115_121743.jpg,,TRUE, +N1,61341,sortie-a748faff-03d0-4be9-9571-70df00646a26,https://biolit.fr/sorties/sortie-a748faff-03d0-4be9-9571-70df00646a26/,Phil,,11/15/2015 0:00,11.0000000,11.0:35,48.133443000000,-4.275578000000,,Plonevez Porzay - Finistère,56347,observation-a748faff-03d0-4be9-9571-70df00646a26-3,https://biolit.fr/observations/observation-a748faff-03d0-4be9-9571-70df00646a26-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151115_113302.jpg,,FALSE, +N1,61341,sortie-a748faff-03d0-4be9-9571-70df00646a26,https://biolit.fr/sorties/sortie-a748faff-03d0-4be9-9571-70df00646a26/,Phil,,11/15/2015 0:00,11.0000000,11.0:35,48.133443000000,-4.275578000000,,Plonevez Porzay - Finistère,56349,observation-a748faff-03d0-4be9-9571-70df00646a26-4,https://biolit.fr/observations/observation-a748faff-03d0-4be9-9571-70df00646a26-4/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/20151115_115546.jpg,,TRUE, +N1,61341,sortie-a748faff-03d0-4be9-9571-70df00646a26,https://biolit.fr/sorties/sortie-a748faff-03d0-4be9-9571-70df00646a26/,Phil,,11/15/2015 0:00,11.0000000,11.0:35,48.133443000000,-4.275578000000,,Plonevez Porzay - Finistère,56351,observation-a748faff-03d0-4be9-9571-70df00646a26-5,https://biolit.fr/observations/observation-a748faff-03d0-4be9-9571-70df00646a26-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151115_114920.jpg,,FALSE, +N1,61341,sortie-a748faff-03d0-4be9-9571-70df00646a26,https://biolit.fr/sorties/sortie-a748faff-03d0-4be9-9571-70df00646a26/,Phil,,11/15/2015 0:00,11.0000000,11.0:35,48.133443000000,-4.275578000000,,Plonevez Porzay - Finistère,56353,observation-a748faff-03d0-4be9-9571-70df00646a26-6,https://biolit.fr/observations/observation-a748faff-03d0-4be9-9571-70df00646a26-6/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/05/DSC04927.JPG,,TRUE, +N1,61341,sortie-a748faff-03d0-4be9-9571-70df00646a26,https://biolit.fr/sorties/sortie-a748faff-03d0-4be9-9571-70df00646a26/,Phil,,11/15/2015 0:00,11.0000000,11.0:35,48.133443000000,-4.275578000000,,Plonevez Porzay - Finistère,56354,observation-a748faff-03d0-4be9-9571-70df00646a26-7,https://biolit.fr/observations/observation-a748faff-03d0-4be9-9571-70df00646a26-7/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/DSC04928.jpg,,TRUE, +N1,61342,sortie-0c5bb838-7a77-44ef-953d-bd72f2fe8306,https://biolit.fr/sorties/sortie-0c5bb838-7a77-44ef-953d-bd72f2fe8306/,Phil,,11/14/2015 0:00,15.0000000,15.0000000,48.606022000000,-4.593481000000,,Landéda - Finistère,56356,observation-0c5bb838-7a77-44ef-953d-bd72f2fe8306,https://biolit.fr/observations/observation-0c5bb838-7a77-44ef-953d-bd72f2fe8306/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04864.jpg,,FALSE, +N1,61342,sortie-0c5bb838-7a77-44ef-953d-bd72f2fe8306,https://biolit.fr/sorties/sortie-0c5bb838-7a77-44ef-953d-bd72f2fe8306/,Phil,,11/14/2015 0:00,15.0000000,15.0000000,48.606022000000,-4.593481000000,,Landéda - Finistère,56358,observation-0c5bb838-7a77-44ef-953d-bd72f2fe8306-2,https://biolit.fr/observations/observation-0c5bb838-7a77-44ef-953d-bd72f2fe8306-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04861.jpg,,TRUE, +N1,61342,sortie-0c5bb838-7a77-44ef-953d-bd72f2fe8306,https://biolit.fr/sorties/sortie-0c5bb838-7a77-44ef-953d-bd72f2fe8306/,Phil,,11/14/2015 0:00,15.0000000,15.0000000,48.606022000000,-4.593481000000,,Landéda - Finistère,56360,observation-0c5bb838-7a77-44ef-953d-bd72f2fe8306-3,https://biolit.fr/observations/observation-0c5bb838-7a77-44ef-953d-bd72f2fe8306-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04846.jpg,,FALSE, +N1,61343,sortie-7c47ce1d-bf2f-4094-99b4-f3e641934500,https://biolit.fr/sorties/sortie-7c47ce1d-bf2f-4094-99b4-f3e641934500/,Phil,,11/15/2015 0:00,11.0:35,11.0:45,48.131941000000,-4.28204100000,,Tréfeuntec - Finistère,56362,observation-7c47ce1d-bf2f-4094-99b4-f3e641934500,https://biolit.fr/observations/observation-7c47ce1d-bf2f-4094-99b4-f3e641934500/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/20151115_114331.jpg,,TRUE, +N1,61343,sortie-7c47ce1d-bf2f-4094-99b4-f3e641934500,https://biolit.fr/sorties/sortie-7c47ce1d-bf2f-4094-99b4-f3e641934500/,Phil,,11/15/2015 0:00,11.0:35,11.0:45,48.131941000000,-4.28204100000,,Tréfeuntec - Finistère,56364,observation-7c47ce1d-bf2f-4094-99b4-f3e641934500-2,https://biolit.fr/observations/observation-7c47ce1d-bf2f-4094-99b4-f3e641934500-2/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/20151115_113709.jpg,,TRUE, +N1,61343,sortie-7c47ce1d-bf2f-4094-99b4-f3e641934500,https://biolit.fr/sorties/sortie-7c47ce1d-bf2f-4094-99b4-f3e641934500/,Phil,,11/15/2015 0:00,11.0:35,11.0:45,48.131941000000,-4.28204100000,,Tréfeuntec - Finistère,56366,observation-7c47ce1d-bf2f-4094-99b4-f3e641934500-3,https://biolit.fr/observations/observation-7c47ce1d-bf2f-4094-99b4-f3e641934500-3/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/20151115_114021.jpg,,TRUE, +N1,61343,sortie-7c47ce1d-bf2f-4094-99b4-f3e641934500,https://biolit.fr/sorties/sortie-7c47ce1d-bf2f-4094-99b4-f3e641934500/,Phil,,11/15/2015 0:00,11.0:35,11.0:45,48.131941000000,-4.28204100000,,Tréfeuntec - Finistère,56368,observation-7c47ce1d-bf2f-4094-99b4-f3e641934500-4,https://biolit.fr/observations/observation-7c47ce1d-bf2f-4094-99b4-f3e641934500-4/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/20151115_114301.jpg,,TRUE, +N1,61344,sortie-370c2379-ba3b-4d9d-af12-d5ed04728313,https://biolit.fr/sorties/sortie-370c2379-ba3b-4d9d-af12-d5ed04728313/,Phil,,11/12/2015,12.0000000,12.0000000,48.005051000000,-4.520082000000,,Plouhinec - Finistère,56370,observation-370c2379-ba3b-4d9d-af12-d5ed04728313,https://biolit.fr/observations/observation-370c2379-ba3b-4d9d-af12-d5ed04728313/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/DSC04743g.jpg,,TRUE, +N1,61344,sortie-370c2379-ba3b-4d9d-af12-d5ed04728313,https://biolit.fr/sorties/sortie-370c2379-ba3b-4d9d-af12-d5ed04728313/,Phil,,11/12/2015,12.0000000,12.0000000,48.005051000000,-4.520082000000,,Plouhinec - Finistère,56372,observation-370c2379-ba3b-4d9d-af12-d5ed04728313-2,https://biolit.fr/observations/observation-370c2379-ba3b-4d9d-af12-d5ed04728313-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/DSC04746.jpg,,TRUE, +N1,61344,sortie-370c2379-ba3b-4d9d-af12-d5ed04728313,https://biolit.fr/sorties/sortie-370c2379-ba3b-4d9d-af12-d5ed04728313/,Phil,,11/12/2015,12.0000000,12.0000000,48.005051000000,-4.520082000000,,Plouhinec - Finistère,56374,observation-370c2379-ba3b-4d9d-af12-d5ed04728313-3,https://biolit.fr/observations/observation-370c2379-ba3b-4d9d-af12-d5ed04728313-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20151112_123225.jpg,,TRUE, +N1,61345,sortie-65b25d33-851a-4e7f-934a-80f5a518b804,https://biolit.fr/sorties/sortie-65b25d33-851a-4e7f-934a-80f5a518b804/,Phil,,11/13/2015 0:00,10.0000000,11.0000000,48.123468000000,-4.284548000000,,Plonevez Porzay - Finistère,56376,observation-65b25d33-851a-4e7f-934a-80f5a518b804,https://biolit.fr/observations/observation-65b25d33-851a-4e7f-934a-80f5a518b804/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/DSC04801.jpg,,TRUE, +N1,61345,sortie-65b25d33-851a-4e7f-934a-80f5a518b804,https://biolit.fr/sorties/sortie-65b25d33-851a-4e7f-934a-80f5a518b804/,Phil,,11/13/2015 0:00,10.0000000,11.0000000,48.123468000000,-4.284548000000,,Plonevez Porzay - Finistère,56378,observation-65b25d33-851a-4e7f-934a-80f5a518b804-2,https://biolit.fr/observations/observation-65b25d33-851a-4e7f-934a-80f5a518b804-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04793.jpg,,FALSE, +N1,61345,sortie-65b25d33-851a-4e7f-934a-80f5a518b804,https://biolit.fr/sorties/sortie-65b25d33-851a-4e7f-934a-80f5a518b804/,Phil,,11/13/2015 0:00,10.0000000,11.0000000,48.123468000000,-4.284548000000,,Plonevez Porzay - Finistère,56380,observation-65b25d33-851a-4e7f-934a-80f5a518b804-3,https://biolit.fr/observations/observation-65b25d33-851a-4e7f-934a-80f5a518b804-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04796.jpg,,TRUE, +N1,61345,sortie-65b25d33-851a-4e7f-934a-80f5a518b804,https://biolit.fr/sorties/sortie-65b25d33-851a-4e7f-934a-80f5a518b804/,Phil,,11/13/2015 0:00,10.0000000,11.0000000,48.123468000000,-4.284548000000,,Plonevez Porzay - Finistère,56382,observation-65b25d33-851a-4e7f-934a-80f5a518b804-4,https://biolit.fr/observations/observation-65b25d33-851a-4e7f-934a-80f5a518b804-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04798.jpg,,TRUE, +N1,61345,sortie-65b25d33-851a-4e7f-934a-80f5a518b804,https://biolit.fr/sorties/sortie-65b25d33-851a-4e7f-934a-80f5a518b804/,Phil,,11/13/2015 0:00,10.0000000,11.0000000,48.123468000000,-4.284548000000,,Plonevez Porzay - Finistère,56384,observation-65b25d33-851a-4e7f-934a-80f5a518b804-5,https://biolit.fr/observations/observation-65b25d33-851a-4e7f-934a-80f5a518b804-5/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/DSC04799.jpg,,TRUE, +N1,61345,sortie-65b25d33-851a-4e7f-934a-80f5a518b804,https://biolit.fr/sorties/sortie-65b25d33-851a-4e7f-934a-80f5a518b804/,Phil,,11/13/2015 0:00,10.0000000,11.0000000,48.123468000000,-4.284548000000,,Plonevez Porzay - Finistère,56386,observation-65b25d33-851a-4e7f-934a-80f5a518b804-6,https://biolit.fr/observations/observation-65b25d33-851a-4e7f-934a-80f5a518b804-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04805.jpg,,FALSE, +N1,61346,sortie-0fb7dc9d-96d8-48bb-8118-5cdb223e316e,https://biolit.fr/sorties/sortie-0fb7dc9d-96d8-48bb-8118-5cdb223e316e/,Phil,,11/12/2015,11.0000000,12.0000000,48.005309000000,-4.520475000000,,Plouhinec - Finistère,56388,observation-0fb7dc9d-96d8-48bb-8118-5cdb223e316e,https://biolit.fr/observations/observation-0fb7dc9d-96d8-48bb-8118-5cdb223e316e/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/20151112_115252.jpg,,TRUE, +N1,61346,sortie-0fb7dc9d-96d8-48bb-8118-5cdb223e316e,https://biolit.fr/sorties/sortie-0fb7dc9d-96d8-48bb-8118-5cdb223e316e/,Phil,,11/12/2015,11.0000000,12.0000000,48.005309000000,-4.520475000000,,Plouhinec - Finistère,56390,observation-0fb7dc9d-96d8-48bb-8118-5cdb223e316e-2,https://biolit.fr/observations/observation-0fb7dc9d-96d8-48bb-8118-5cdb223e316e-2/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/20151112_115425.jpg,,TRUE, +N1,61346,sortie-0fb7dc9d-96d8-48bb-8118-5cdb223e316e,https://biolit.fr/sorties/sortie-0fb7dc9d-96d8-48bb-8118-5cdb223e316e/,Phil,,11/12/2015,11.0000000,12.0000000,48.005309000000,-4.520475000000,,Plouhinec - Finistère,56392,observation-0fb7dc9d-96d8-48bb-8118-5cdb223e316e-3,https://biolit.fr/observations/observation-0fb7dc9d-96d8-48bb-8118-5cdb223e316e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_115409.jpg,,FALSE, +N1,61346,sortie-0fb7dc9d-96d8-48bb-8118-5cdb223e316e,https://biolit.fr/sorties/sortie-0fb7dc9d-96d8-48bb-8118-5cdb223e316e/,Phil,,11/12/2015,11.0000000,12.0000000,48.005309000000,-4.520475000000,,Plouhinec - Finistère,56394,observation-0fb7dc9d-96d8-48bb-8118-5cdb223e316e-4,https://biolit.fr/observations/observation-0fb7dc9d-96d8-48bb-8118-5cdb223e316e-4/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/20151112_115444.jpg,,TRUE, +N1,61346,sortie-0fb7dc9d-96d8-48bb-8118-5cdb223e316e,https://biolit.fr/sorties/sortie-0fb7dc9d-96d8-48bb-8118-5cdb223e316e/,Phil,,11/12/2015,11.0000000,12.0000000,48.005309000000,-4.520475000000,,Plouhinec - Finistère,56396,observation-0fb7dc9d-96d8-48bb-8118-5cdb223e316e-5,https://biolit.fr/observations/observation-0fb7dc9d-96d8-48bb-8118-5cdb223e316e-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20151112_115814.jpg,,TRUE, +N1,61346,sortie-0fb7dc9d-96d8-48bb-8118-5cdb223e316e,https://biolit.fr/sorties/sortie-0fb7dc9d-96d8-48bb-8118-5cdb223e316e/,Phil,,11/12/2015,11.0000000,12.0000000,48.005309000000,-4.520475000000,,Plouhinec - Finistère,56398,observation-0fb7dc9d-96d8-48bb-8118-5cdb223e316e-6,https://biolit.fr/observations/observation-0fb7dc9d-96d8-48bb-8118-5cdb223e316e-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_120034.jpg,,FALSE, +N1,61346,sortie-0fb7dc9d-96d8-48bb-8118-5cdb223e316e,https://biolit.fr/sorties/sortie-0fb7dc9d-96d8-48bb-8118-5cdb223e316e/,Phil,,11/12/2015,11.0000000,12.0000000,48.005309000000,-4.520475000000,,Plouhinec - Finistère,56400,observation-0fb7dc9d-96d8-48bb-8118-5cdb223e316e-7,https://biolit.fr/observations/observation-0fb7dc9d-96d8-48bb-8118-5cdb223e316e-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_120124.jpg,,FALSE, +N1,61346,sortie-0fb7dc9d-96d8-48bb-8118-5cdb223e316e,https://biolit.fr/sorties/sortie-0fb7dc9d-96d8-48bb-8118-5cdb223e316e/,Phil,,11/12/2015,11.0000000,12.0000000,48.005309000000,-4.520475000000,,Plouhinec - Finistère,56402,observation-0fb7dc9d-96d8-48bb-8118-5cdb223e316e-8,https://biolit.fr/observations/observation-0fb7dc9d-96d8-48bb-8118-5cdb223e316e-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_120143.jpg,,FALSE, +N1,61347,sortie-d9574b5e-52ff-4e60-ad1f-61fde4db2818,https://biolit.fr/sorties/sortie-d9574b5e-52ff-4e60-ad1f-61fde4db2818/,Phil,,11/13/2015 0:00,10.0:45,10.0000000,48.121265000000,-4.283797000000,,Plonevez Porzay - Finistère,56404,observation-d9574b5e-52ff-4e60-ad1f-61fde4db2818,https://biolit.fr/observations/observation-d9574b5e-52ff-4e60-ad1f-61fde4db2818/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04776a.jpg,,FALSE, +N1,61347,sortie-d9574b5e-52ff-4e60-ad1f-61fde4db2818,https://biolit.fr/sorties/sortie-d9574b5e-52ff-4e60-ad1f-61fde4db2818/,Phil,,11/13/2015 0:00,10.0:45,10.0000000,48.121265000000,-4.283797000000,,Plonevez Porzay - Finistère,56406,observation-d9574b5e-52ff-4e60-ad1f-61fde4db2818-2,https://biolit.fr/observations/observation-d9574b5e-52ff-4e60-ad1f-61fde4db2818-2/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/DSC04777a.jpg,,TRUE, +N1,61347,sortie-d9574b5e-52ff-4e60-ad1f-61fde4db2818,https://biolit.fr/sorties/sortie-d9574b5e-52ff-4e60-ad1f-61fde4db2818/,Phil,,11/13/2015 0:00,10.0:45,10.0000000,48.121265000000,-4.283797000000,,Plonevez Porzay - Finistère,56408,observation-d9574b5e-52ff-4e60-ad1f-61fde4db2818-3,https://biolit.fr/observations/observation-d9574b5e-52ff-4e60-ad1f-61fde4db2818-3/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/DSC04783a.jpg,,TRUE, +N1,61347,sortie-d9574b5e-52ff-4e60-ad1f-61fde4db2818,https://biolit.fr/sorties/sortie-d9574b5e-52ff-4e60-ad1f-61fde4db2818/,Phil,,11/13/2015 0:00,10.0:45,10.0000000,48.121265000000,-4.283797000000,,Plonevez Porzay - Finistère,56410,observation-d9574b5e-52ff-4e60-ad1f-61fde4db2818-4,https://biolit.fr/observations/observation-d9574b5e-52ff-4e60-ad1f-61fde4db2818-4/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/DSC04795.jpg,,TRUE, +N1,61348,sortie-b21f191e-3d03-4169-9172-1a28243f6802,https://biolit.fr/sorties/sortie-b21f191e-3d03-4169-9172-1a28243f6802/,Phil,,11/13/2015 0:00,10.0000000,10.0000000,48.120157000000,-4.283801000000,,Plonevez Porzay - Finistère,56412,observation-b21f191e-3d03-4169-9172-1a28243f6802,https://biolit.fr/observations/observation-b21f191e-3d03-4169-9172-1a28243f6802/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04766.jpg,,FALSE, +N1,61348,sortie-b21f191e-3d03-4169-9172-1a28243f6802,https://biolit.fr/sorties/sortie-b21f191e-3d03-4169-9172-1a28243f6802/,Phil,,11/13/2015 0:00,10.0000000,10.0000000,48.120157000000,-4.283801000000,,Plonevez Porzay - Finistère,56414,observation-b21f191e-3d03-4169-9172-1a28243f6802-2,https://biolit.fr/observations/observation-b21f191e-3d03-4169-9172-1a28243f6802-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04768.jpg,,FALSE, +N1,61348,sortie-b21f191e-3d03-4169-9172-1a28243f6802,https://biolit.fr/sorties/sortie-b21f191e-3d03-4169-9172-1a28243f6802/,Phil,,11/13/2015 0:00,10.0000000,10.0000000,48.120157000000,-4.283801000000,,Plonevez Porzay - Finistère,56416,observation-b21f191e-3d03-4169-9172-1a28243f6802-3,https://biolit.fr/observations/observation-b21f191e-3d03-4169-9172-1a28243f6802-3/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/DSC04774.jpg,,TRUE, +N1,61349,sortie-dcb5ca66-74eb-4017-ad13-4c8f4c02b52a,https://biolit.fr/sorties/sortie-dcb5ca66-74eb-4017-ad13-4c8f4c02b52a/,Ville de Marseille Ecole Zac de Bonneveine CM1-CM2,,11/17/2015 0:00,15.0000000,16.0000000,43.267703000000,5.370315000000,,Base nautique du Roucas Blanc,56418,observation-dcb5ca66-74eb-4017-ad13-4c8f4c02b52a,https://biolit.fr/observations/observation-dcb5ca66-74eb-4017-ad13-4c8f4c02b52a/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC02317-scaled.jpg,,TRUE, +N1,61349,sortie-dcb5ca66-74eb-4017-ad13-4c8f4c02b52a,https://biolit.fr/sorties/sortie-dcb5ca66-74eb-4017-ad13-4c8f4c02b52a/,Ville de Marseille Ecole Zac de Bonneveine CM1-CM2,,11/17/2015 0:00,15.0000000,16.0000000,43.267703000000,5.370315000000,,Base nautique du Roucas Blanc,56420,observation-dcb5ca66-74eb-4017-ad13-4c8f4c02b52a-2,https://biolit.fr/observations/observation-dcb5ca66-74eb-4017-ad13-4c8f4c02b52a-2/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC02316-scaled.jpg,,TRUE, +N1,61350,sortie-eb195f5c-2921-4243-b641-34c887c9c1c2,https://biolit.fr/sorties/sortie-eb195f5c-2921-4243-b641-34c887c9c1c2/,Phil,,11/13/2015 0:00,11.000005,11.0000000,48.122752000000,-4.285492000000,,Plonevez Porzay - Finistère,56422,observation-eb195f5c-2921-4243-b641-34c887c9c1c2,https://biolit.fr/observations/observation-eb195f5c-2921-4243-b641-34c887c9c1c2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04809.jpg,,FALSE, +N1,61350,sortie-eb195f5c-2921-4243-b641-34c887c9c1c2,https://biolit.fr/sorties/sortie-eb195f5c-2921-4243-b641-34c887c9c1c2/,Phil,,11/13/2015 0:00,11.000005,11.0000000,48.122752000000,-4.285492000000,,Plonevez Porzay - Finistère,56424,observation-eb195f5c-2921-4243-b641-34c887c9c1c2-2,https://biolit.fr/observations/observation-eb195f5c-2921-4243-b641-34c887c9c1c2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04813.jpg,,FALSE, +N1,61350,sortie-eb195f5c-2921-4243-b641-34c887c9c1c2,https://biolit.fr/sorties/sortie-eb195f5c-2921-4243-b641-34c887c9c1c2/,Phil,,11/13/2015 0:00,11.000005,11.0000000,48.122752000000,-4.285492000000,,Plonevez Porzay - Finistère,56426,observation-eb195f5c-2921-4243-b641-34c887c9c1c2-3,https://biolit.fr/observations/observation-eb195f5c-2921-4243-b641-34c887c9c1c2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04819-scaled.jpg,,FALSE, +N1,61351,sortie-4dda35f8-483f-4711-b2b1-1cd98a28b5b8,https://biolit.fr/sorties/sortie-4dda35f8-483f-4711-b2b1-1cd98a28b5b8/,Les Dodos,,11/15/2015 0:00,19.0000000,21.0000000,43.097881000000,6.323960000000,,Plage du fort de Brégançon,56428,observation-4dda35f8-483f-4711-b2b1-1cd98a28b5b8,https://biolit.fr/observations/observation-4dda35f8-483f-4711-b2b1-1cd98a28b5b8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151115_145633-scaled.jpg,,FALSE, +N1,61351,sortie-4dda35f8-483f-4711-b2b1-1cd98a28b5b8,https://biolit.fr/sorties/sortie-4dda35f8-483f-4711-b2b1-1cd98a28b5b8/,Les Dodos,,11/15/2015 0:00,19.0000000,21.0000000,43.097881000000,6.323960000000,,Plage du fort de Brégançon,56430,observation-4dda35f8-483f-4711-b2b1-1cd98a28b5b8-2,https://biolit.fr/observations/observation-4dda35f8-483f-4711-b2b1-1cd98a28b5b8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151115_155509-scaled.jpg,,FALSE, +N1,61351,sortie-4dda35f8-483f-4711-b2b1-1cd98a28b5b8,https://biolit.fr/sorties/sortie-4dda35f8-483f-4711-b2b1-1cd98a28b5b8/,Les Dodos,,11/15/2015 0:00,19.0000000,21.0000000,43.097881000000,6.323960000000,,Plage du fort de Brégançon,56432,observation-4dda35f8-483f-4711-b2b1-1cd98a28b5b8-3,https://biolit.fr/observations/observation-4dda35f8-483f-4711-b2b1-1cd98a28b5b8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151115_155635-scaled.jpg,,FALSE, +N1,61351,sortie-4dda35f8-483f-4711-b2b1-1cd98a28b5b8,https://biolit.fr/sorties/sortie-4dda35f8-483f-4711-b2b1-1cd98a28b5b8/,Les Dodos,,11/15/2015 0:00,19.0000000,21.0000000,43.097881000000,6.323960000000,,Plage du fort de Brégançon,56434,observation-4dda35f8-483f-4711-b2b1-1cd98a28b5b8-4,https://biolit.fr/observations/observation-4dda35f8-483f-4711-b2b1-1cd98a28b5b8-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151115_145852-scaled.jpg,,FALSE, +N1,61352,sortie-3f117c67-1644-4d95-8bab-440001a36527,https://biolit.fr/sorties/sortie-3f117c67-1644-4d95-8bab-440001a36527/,Les Dodos,,11/15/2015 0:00,14.0000000,16.0000000,43.094461000000,6.324692000000,,Plage du fort de Brégançon,56436,observation-3f117c67-1644-4d95-8bab-440001a36527,"""https://biolit.fr/observations/observation-3f117c67-1644-4d95-8bab-440001a36527/""",Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/2023/07/20151115_152613-scaled.jpg,,TRUE, +N1,61352,sortie-3f117c67-1644-4d95-8bab-440001a36527,https://biolit.fr/sorties/sortie-3f117c67-1644-4d95-8bab-440001a36527/,Les Dodos,,11/15/2015 0:00,14.0000000,16.0000000,43.094461000000,6.324692000000,,Plage du fort de Brégançon,56438,observation-3f117c67-1644-4d95-8bab-440001a36527-2,https://biolit.fr/observations/observation-3f117c67-1644-4d95-8bab-440001a36527-2/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/2023/07/20151115_153527-scaled.jpg,,TRUE, +N1,61352,sortie-3f117c67-1644-4d95-8bab-440001a36527,https://biolit.fr/sorties/sortie-3f117c67-1644-4d95-8bab-440001a36527/,Les Dodos,,11/15/2015 0:00,14.0000000,16.0000000,43.094461000000,6.324692000000,,Plage du fort de Brégançon,56440,observation-3f117c67-1644-4d95-8bab-440001a36527-3,https://biolit.fr/observations/observation-3f117c67-1644-4d95-8bab-440001a36527-3/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/2023/07/20151115_153536-scaled.jpg,,TRUE, +N1,61352,sortie-3f117c67-1644-4d95-8bab-440001a36527,https://biolit.fr/sorties/sortie-3f117c67-1644-4d95-8bab-440001a36527/,Les Dodos,,11/15/2015 0:00,14.0000000,16.0000000,43.094461000000,6.324692000000,,Plage du fort de Brégançon,56442,observation-3f117c67-1644-4d95-8bab-440001a36527-4,https://biolit.fr/observations/observation-3f117c67-1644-4d95-8bab-440001a36527-4/,Sabella spallanzanii,Spirographe,,https://biolit.fr/wp-content/uploads/2023/07/20151115_153437-scaled.jpg,,TRUE, +N1,61352,sortie-3f117c67-1644-4d95-8bab-440001a36527,https://biolit.fr/sorties/sortie-3f117c67-1644-4d95-8bab-440001a36527/,Les Dodos,,11/15/2015 0:00,14.0000000,16.0000000,43.094461000000,6.324692000000,,Plage du fort de Brégançon,56444,observation-3f117c67-1644-4d95-8bab-440001a36527-5,https://biolit.fr/observations/observation-3f117c67-1644-4d95-8bab-440001a36527-5/,Sabella spallanzanii,Spirographe,,https://biolit.fr/wp-content/uploads/2023/07/20151115_152951-scaled.jpg,,TRUE, +N1,61352,sortie-3f117c67-1644-4d95-8bab-440001a36527,https://biolit.fr/sorties/sortie-3f117c67-1644-4d95-8bab-440001a36527/,Les Dodos,,11/15/2015 0:00,14.0000000,16.0000000,43.094461000000,6.324692000000,,Plage du fort de Brégançon,56446,observation-3f117c67-1644-4d95-8bab-440001a36527-6,https://biolit.fr/observations/observation-3f117c67-1644-4d95-8bab-440001a36527-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151115_153059-scaled.jpg,,FALSE, +N1,61353,sortie-3dcd3ed1-08e8-4f70-95b3-523699321c14,https://biolit.fr/sorties/sortie-3dcd3ed1-08e8-4f70-95b3-523699321c14/,Phil,,11/12/2015,11.0:35,11.0000000,48.004677000000,-4.519095000000,,Plouhinec - Finistère,56448,observation-3dcd3ed1-08e8-4f70-95b3-523699321c14,https://biolit.fr/observations/observation-3dcd3ed1-08e8-4f70-95b3-523699321c14/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_113502.jpg,,FALSE, +N1,61353,sortie-3dcd3ed1-08e8-4f70-95b3-523699321c14,https://biolit.fr/sorties/sortie-3dcd3ed1-08e8-4f70-95b3-523699321c14/,Phil,,11/12/2015,11.0:35,11.0000000,48.004677000000,-4.519095000000,,Plouhinec - Finistère,56450,observation-3dcd3ed1-08e8-4f70-95b3-523699321c14-2,https://biolit.fr/observations/observation-3dcd3ed1-08e8-4f70-95b3-523699321c14-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_113521.jpg,,FALSE, +N1,61353,sortie-3dcd3ed1-08e8-4f70-95b3-523699321c14,https://biolit.fr/sorties/sortie-3dcd3ed1-08e8-4f70-95b3-523699321c14/,Phil,,11/12/2015,11.0:35,11.0000000,48.004677000000,-4.519095000000,,Plouhinec - Finistère,56452,observation-3dcd3ed1-08e8-4f70-95b3-523699321c14-3,https://biolit.fr/observations/observation-3dcd3ed1-08e8-4f70-95b3-523699321c14-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_113557.jpg,,FALSE, +N1,61353,sortie-3dcd3ed1-08e8-4f70-95b3-523699321c14,https://biolit.fr/sorties/sortie-3dcd3ed1-08e8-4f70-95b3-523699321c14/,Phil,,11/12/2015,11.0:35,11.0000000,48.004677000000,-4.519095000000,,Plouhinec - Finistère,56454,observation-3dcd3ed1-08e8-4f70-95b3-523699321c14-4,https://biolit.fr/observations/observation-3dcd3ed1-08e8-4f70-95b3-523699321c14-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_115013.jpg,,FALSE, +N1,61354,sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9,https://biolit.fr/sorties/sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9/,Phil,,11/12/2015,10.0:55,11.0:25,48.005101000000,-4.51792100000,,Plouhinec - Finistère,56456,observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9,https://biolit.fr/observations/observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_112701.jpg,,FALSE, +N1,61354,sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9,https://biolit.fr/sorties/sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9/,Phil,,11/12/2015,10.0:55,11.0:25,48.005101000000,-4.51792100000,,Plouhinec - Finistère,56458,observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-2,https://biolit.fr/observations/observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_112800.jpg,,FALSE, +N1,61354,sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9,https://biolit.fr/sorties/sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9/,Phil,,11/12/2015,10.0:55,11.0:25,48.005101000000,-4.51792100000,,Plouhinec - Finistère,56460,observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-3,https://biolit.fr/observations/observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_112752.jpg,,FALSE, +N1,61354,sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9,https://biolit.fr/sorties/sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9/,Phil,,11/12/2015,10.0:55,11.0:25,48.005101000000,-4.51792100000,,Plouhinec - Finistère,56462,observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-4,https://biolit.fr/observations/observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151112_113100.jpg,,TRUE, +N1,61354,sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9,https://biolit.fr/sorties/sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9/,Phil,,11/12/2015,10.0:55,11.0:25,48.005101000000,-4.51792100000,,Plouhinec - Finistère,56464,observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-5,https://biolit.fr/observations/observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-5/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151112_113006.jpg,,TRUE, +N1,61354,sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9,https://biolit.fr/sorties/sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9/,Phil,,11/12/2015,10.0:55,11.0:25,48.005101000000,-4.51792100000,,Plouhinec - Finistère,56466,observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-6,https://biolit.fr/observations/observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_114544.jpg,,FALSE, +N1,61354,sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9,https://biolit.fr/sorties/sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9/,Phil,,11/12/2015,10.0:55,11.0:25,48.005101000000,-4.51792100000,,Plouhinec - Finistère,56468,observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-7,https://biolit.fr/observations/observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_114600.jpg,,FALSE, +N1,61354,sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9,https://biolit.fr/sorties/sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9/,Phil,,11/12/2015,10.0:55,11.0:25,48.005101000000,-4.51792100000,,Plouhinec - Finistère,56470,observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-8,https://biolit.fr/observations/observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-8/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/DSC04757a.jpg,,TRUE, +N1,61354,sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9,https://biolit.fr/sorties/sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9/,Phil,,11/12/2015,10.0:55,11.0:25,48.005101000000,-4.51792100000,,Plouhinec - Finistère,56474,observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-10,https://biolit.fr/observations/observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-10/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20151112_112404.jpg,,TRUE, +N1,61354,sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9,https://biolit.fr/sorties/sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9/,Phil,,11/12/2015,10.0:55,11.0:25,48.005101000000,-4.51792100000,,Plouhinec - Finistère,56476,observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-11,https://biolit.fr/observations/observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_112503.jpg,,FALSE, +N1,61355,sortie-4986e7b5-3e7b-4aba-a669-09edd99f2ecd,https://biolit.fr/sorties/sortie-4986e7b5-3e7b-4aba-a669-09edd99f2ecd/,july gonnet,,11/10/2015,14.0000000,15.0000000,43.248878000000,3.300297000000,,serignan plage,56478,observation-4986e7b5-3e7b-4aba-a669-09edd99f2ecd,https://biolit.fr/observations/observation-4986e7b5-3e7b-4aba-a669-09edd99f2ecd/,,,,https://biolit.fr/wp-content/uploads/2023/07/12208790_10205317200757047_4031047272450173319_n[1]_0.jpg,,FALSE, +N1,61356,sortie-498446eb-8243-4177-aae9-4b230c2dc1d6,https://biolit.fr/sorties/sortie-498446eb-8243-4177-aae9-4b230c2dc1d6/,Phil,,11/08/2015,11.000005,11.0:25,48.119817000000,-4.283421000000,,Plonevez Porzay - Finistère,56480,observation-498446eb-8243-4177-aae9-4b230c2dc1d6,https://biolit.fr/observations/observation-498446eb-8243-4177-aae9-4b230c2dc1d6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151108_111216.jpg,,FALSE, +N1,61356,sortie-498446eb-8243-4177-aae9-4b230c2dc1d6,https://biolit.fr/sorties/sortie-498446eb-8243-4177-aae9-4b230c2dc1d6/,Phil,,11/08/2015,11.000005,11.0:25,48.119817000000,-4.283421000000,,Plonevez Porzay - Finistère,56482,observation-498446eb-8243-4177-aae9-4b230c2dc1d6-2,https://biolit.fr/observations/observation-498446eb-8243-4177-aae9-4b230c2dc1d6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151108_111246.jpg,,FALSE, +N1,61356,sortie-498446eb-8243-4177-aae9-4b230c2dc1d6,https://biolit.fr/sorties/sortie-498446eb-8243-4177-aae9-4b230c2dc1d6/,Phil,,11/08/2015,11.000005,11.0:25,48.119817000000,-4.283421000000,,Plonevez Porzay - Finistère,56484,observation-498446eb-8243-4177-aae9-4b230c2dc1d6-3,https://biolit.fr/observations/observation-498446eb-8243-4177-aae9-4b230c2dc1d6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151108_111544-scaled.jpg,,FALSE, +N1,61356,sortie-498446eb-8243-4177-aae9-4b230c2dc1d6,https://biolit.fr/sorties/sortie-498446eb-8243-4177-aae9-4b230c2dc1d6/,Phil,,11/08/2015,11.000005,11.0:25,48.119817000000,-4.283421000000,,Plonevez Porzay - Finistère,56486,observation-498446eb-8243-4177-aae9-4b230c2dc1d6-4,https://biolit.fr/observations/observation-498446eb-8243-4177-aae9-4b230c2dc1d6-4/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/20151108_112235.jpg,,TRUE, +N1,61356,sortie-498446eb-8243-4177-aae9-4b230c2dc1d6,https://biolit.fr/sorties/sortie-498446eb-8243-4177-aae9-4b230c2dc1d6/,Phil,,11/08/2015,11.000005,11.0:25,48.119817000000,-4.283421000000,,Plonevez Porzay - Finistère,56488,observation-498446eb-8243-4177-aae9-4b230c2dc1d6-5,https://biolit.fr/observations/observation-498446eb-8243-4177-aae9-4b230c2dc1d6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151108_110656.jpg,,FALSE, +N1,61356,sortie-498446eb-8243-4177-aae9-4b230c2dc1d6,https://biolit.fr/sorties/sortie-498446eb-8243-4177-aae9-4b230c2dc1d6/,Phil,,11/08/2015,11.000005,11.0:25,48.119817000000,-4.283421000000,,Plonevez Porzay - Finistère,56490,observation-498446eb-8243-4177-aae9-4b230c2dc1d6-6,https://biolit.fr/observations/observation-498446eb-8243-4177-aae9-4b230c2dc1d6-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151108_110601.jpg,,FALSE, +N1,61356,sortie-498446eb-8243-4177-aae9-4b230c2dc1d6,https://biolit.fr/sorties/sortie-498446eb-8243-4177-aae9-4b230c2dc1d6/,Phil,,11/08/2015,11.000005,11.0:25,48.119817000000,-4.283421000000,,Plonevez Porzay - Finistère,56492,observation-498446eb-8243-4177-aae9-4b230c2dc1d6-7,https://biolit.fr/observations/observation-498446eb-8243-4177-aae9-4b230c2dc1d6-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151108_111008.jpg,,FALSE, +N1,61356,sortie-498446eb-8243-4177-aae9-4b230c2dc1d6,https://biolit.fr/sorties/sortie-498446eb-8243-4177-aae9-4b230c2dc1d6/,Phil,,11/08/2015,11.000005,11.0:25,48.119817000000,-4.283421000000,,Plonevez Porzay - Finistère,56494,observation-498446eb-8243-4177-aae9-4b230c2dc1d6-8,https://biolit.fr/observations/observation-498446eb-8243-4177-aae9-4b230c2dc1d6-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151108_110355.jpg,,FALSE, +N1,61356,sortie-498446eb-8243-4177-aae9-4b230c2dc1d6,https://biolit.fr/sorties/sortie-498446eb-8243-4177-aae9-4b230c2dc1d6/,Phil,,11/08/2015,11.000005,11.0:25,48.119817000000,-4.283421000000,,Plonevez Porzay - Finistère,56496,observation-498446eb-8243-4177-aae9-4b230c2dc1d6-9,https://biolit.fr/observations/observation-498446eb-8243-4177-aae9-4b230c2dc1d6-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151108_110327.jpg,,FALSE, +N1,61356,sortie-498446eb-8243-4177-aae9-4b230c2dc1d6,https://biolit.fr/sorties/sortie-498446eb-8243-4177-aae9-4b230c2dc1d6/,Phil,,11/08/2015,11.000005,11.0:25,48.119817000000,-4.283421000000,,Plonevez Porzay - Finistère,56498,observation-498446eb-8243-4177-aae9-4b230c2dc1d6-10,https://biolit.fr/observations/observation-498446eb-8243-4177-aae9-4b230c2dc1d6-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151108_110317.jpg,,FALSE, +N1,61356,sortie-498446eb-8243-4177-aae9-4b230c2dc1d6,https://biolit.fr/sorties/sortie-498446eb-8243-4177-aae9-4b230c2dc1d6/,Phil,,11/08/2015,11.000005,11.0:25,48.119817000000,-4.283421000000,,Plonevez Porzay - Finistère,56500,observation-498446eb-8243-4177-aae9-4b230c2dc1d6-11,https://biolit.fr/observations/observation-498446eb-8243-4177-aae9-4b230c2dc1d6-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151108_110226.jpg,,FALSE, +N1,61357,sortie-93ce266f-3222-41fa-a3cf-200788160839,https://biolit.fr/sorties/sortie-93ce266f-3222-41fa-a3cf-200788160839/,Phil,,10/31/2015 0:00,17.0:35,17.0000000,47.864130000000,-4.119081000000,,Sainte-Marine - Finistère,56502,observation-93ce266f-3222-41fa-a3cf-200788160839,https://biolit.fr/observations/observation-93ce266f-3222-41fa-a3cf-200788160839/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151031_173322.jpg,,FALSE, +N1,61358,sortie-09f78eb9-d5b9-4c8b-b1d2-539191a69282,https://biolit.fr/sorties/sortie-09f78eb9-d5b9-4c8b-b1d2-539191a69282/,Phil,,11/10/2015,11.0000000,12.0000000,47.896140000000,-3.968777000000,,Kerleven - La Forêt-Fouesnant - Finistère,56504,observation-09f78eb9-d5b9-4c8b-b1d2-539191a69282,https://biolit.fr/observations/observation-09f78eb9-d5b9-4c8b-b1d2-539191a69282/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20151110_115337.jpg,,TRUE, +N1,61359,sortie-c062c9f4-0ecf-472f-a0fb-75cb2b7ea1fc,https://biolit.fr/sorties/sortie-c062c9f4-0ecf-472f-a0fb-75cb2b7ea1fc/,Phil,,11/06/2015,12.0000000,13.0000000,47.797997000000,-4.348903000000,,Penmarc'h - Finistère,56506,observation-c062c9f4-0ecf-472f-a0fb-75cb2b7ea1fc,https://biolit.fr/observations/observation-c062c9f4-0ecf-472f-a0fb-75cb2b7ea1fc/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_124803.jpg,,FALSE, +N1,61359,sortie-c062c9f4-0ecf-472f-a0fb-75cb2b7ea1fc,https://biolit.fr/sorties/sortie-c062c9f4-0ecf-472f-a0fb-75cb2b7ea1fc/,Phil,,11/06/2015,12.0000000,13.0000000,47.797997000000,-4.348903000000,,Penmarc'h - Finistère,56508,observation-c062c9f4-0ecf-472f-a0fb-75cb2b7ea1fc-2,https://biolit.fr/observations/observation-c062c9f4-0ecf-472f-a0fb-75cb2b7ea1fc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_124817.jpg,,FALSE, +N1,61360,sortie-c7fae750-26f4-4d84-a80c-06024929b605,https://biolit.fr/sorties/sortie-c7fae750-26f4-4d84-a80c-06024929b605/,Phil,,11/08/2015,11.0:55,12.000005,48.136381000000,-4.274593000000,,Sainte-Anne La Palud - Finistère,56510,observation-c7fae750-26f4-4d84-a80c-06024929b605,https://biolit.fr/observations/observation-c7fae750-26f4-4d84-a80c-06024929b605/,Arenicola marina,Arénicole,,https://biolit.fr/wp-content/uploads/2023/07/20151108_115537.jpg,,TRUE, +N1,61360,sortie-c7fae750-26f4-4d84-a80c-06024929b605,https://biolit.fr/sorties/sortie-c7fae750-26f4-4d84-a80c-06024929b605/,Phil,,11/08/2015,11.0:55,12.000005,48.136381000000,-4.274593000000,,Sainte-Anne La Palud - Finistère,56512,observation-c7fae750-26f4-4d84-a80c-06024929b605-2,https://biolit.fr/observations/observation-c7fae750-26f4-4d84-a80c-06024929b605-2/,Arenicola marina,Arénicole,,https://biolit.fr/wp-content/uploads/2023/07/20151108_115506.jpg,,TRUE, +N1,61360,sortie-c7fae750-26f4-4d84-a80c-06024929b605,https://biolit.fr/sorties/sortie-c7fae750-26f4-4d84-a80c-06024929b605/,Phil,,11/08/2015,11.0:55,12.000005,48.136381000000,-4.274593000000,,Sainte-Anne La Palud - Finistère,56514,observation-c7fae750-26f4-4d84-a80c-06024929b605-3,https://biolit.fr/observations/observation-c7fae750-26f4-4d84-a80c-06024929b605-3/,Arenicola marina,Arénicole,,https://biolit.fr/wp-content/uploads/2023/07/20151108_115438.jpg,,TRUE, +N1,61361,sortie-01006f19-682d-497a-ac27-b4af0434af22,https://biolit.fr/sorties/sortie-01006f19-682d-497a-ac27-b4af0434af22/,Phil,,11/06/2015,12.0:15,12.0:25,47.791239000000,-4.276260000000,,Léchiagat - Finistère,56516,observation-01006f19-682d-497a-ac27-b4af0434af22,https://biolit.fr/observations/observation-01006f19-682d-497a-ac27-b4af0434af22/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_122056.jpg,,FALSE, +N1,61361,sortie-01006f19-682d-497a-ac27-b4af0434af22,https://biolit.fr/sorties/sortie-01006f19-682d-497a-ac27-b4af0434af22/,Phil,,11/06/2015,12.0:15,12.0:25,47.791239000000,-4.276260000000,,Léchiagat - Finistère,56518,observation-01006f19-682d-497a-ac27-b4af0434af22-2,https://biolit.fr/observations/observation-01006f19-682d-497a-ac27-b4af0434af22-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_121907.jpg,,FALSE, +N1,61361,sortie-01006f19-682d-497a-ac27-b4af0434af22,https://biolit.fr/sorties/sortie-01006f19-682d-497a-ac27-b4af0434af22/,Phil,,11/06/2015,12.0:15,12.0:25,47.791239000000,-4.276260000000,,Léchiagat - Finistère,56520,observation-01006f19-682d-497a-ac27-b4af0434af22-3,https://biolit.fr/observations/observation-01006f19-682d-497a-ac27-b4af0434af22-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_121853.jpg,,FALSE, +N1,61362,sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18,https://biolit.fr/sorties/sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18/,Phil,,11/06/2015,11.0000000,11.0:55,47.792006000000,-4.290004000000,,Le Guilvinec - 29 Finistère,56522,observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18,https://biolit.fr/observations/observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_113841.jpg,,FALSE, +N1,61362,sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18,https://biolit.fr/sorties/sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18/,Phil,,11/06/2015,11.0000000,11.0:55,47.792006000000,-4.290004000000,,Le Guilvinec - 29 Finistère,56524,observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-2,https://biolit.fr/observations/observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_113845.jpg,,FALSE, +N1,61362,sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18,https://biolit.fr/sorties/sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18/,Phil,,11/06/2015,11.0000000,11.0:55,47.792006000000,-4.290004000000,,Le Guilvinec - 29 Finistère,56526,observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-3,https://biolit.fr/observations/observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_113921.jpg,,FALSE, +N1,61362,sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18,https://biolit.fr/sorties/sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18/,Phil,,11/06/2015,11.0000000,11.0:55,47.792006000000,-4.290004000000,,Le Guilvinec - 29 Finistère,56528,observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-4,https://biolit.fr/observations/observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_114041.jpg,,FALSE, +N1,61362,sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18,https://biolit.fr/sorties/sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18/,Phil,,11/06/2015,11.0000000,11.0:55,47.792006000000,-4.290004000000,,Le Guilvinec - 29 Finistère,56530,observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-5,https://biolit.fr/observations/observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_114103.jpg,,FALSE, +N1,61362,sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18,https://biolit.fr/sorties/sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18/,Phil,,11/06/2015,11.0000000,11.0:55,47.792006000000,-4.290004000000,,Le Guilvinec - 29 Finistère,56532,observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-6,https://biolit.fr/observations/observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_114250.jpg,,FALSE, +N1,61362,sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18,https://biolit.fr/sorties/sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18/,Phil,,11/06/2015,11.0000000,11.0:55,47.792006000000,-4.290004000000,,Le Guilvinec - 29 Finistère,56534,observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-7,https://biolit.fr/observations/observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_114625.jpg,,FALSE, +N1,61362,sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18,https://biolit.fr/sorties/sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18/,Phil,,11/06/2015,11.0000000,11.0:55,47.792006000000,-4.290004000000,,Le Guilvinec - 29 Finistère,56536,observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-8,https://biolit.fr/observations/observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_114645.jpg,,FALSE, +N1,61362,sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18,https://biolit.fr/sorties/sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18/,Phil,,11/06/2015,11.0000000,11.0:55,47.792006000000,-4.290004000000,,Le Guilvinec - 29 Finistère,56538,observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-9,https://biolit.fr/observations/observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_114659.jpg,,FALSE, +N1,61362,sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18,https://biolit.fr/sorties/sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18/,Phil,,11/06/2015,11.0000000,11.0:55,47.792006000000,-4.290004000000,,Le Guilvinec - 29 Finistère,56540,observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-10,https://biolit.fr/observations/observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_114802.jpg,,FALSE, +N1,61362,sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18,https://biolit.fr/sorties/sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18/,Phil,,11/06/2015,11.0000000,11.0:55,47.792006000000,-4.290004000000,,Le Guilvinec - 29 Finistère,56542,observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-11,https://biolit.fr/observations/observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_114831.jpg,,FALSE, +N1,61362,sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18,https://biolit.fr/sorties/sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18/,Phil,,11/06/2015,11.0000000,11.0:55,47.792006000000,-4.290004000000,,Le Guilvinec - 29 Finistère,56544,observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-12,https://biolit.fr/observations/observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_115409.jpg,,FALSE, +N1,61363,sortie-35ad0716-9c34-4b35-b44c-8896bea9b605,https://biolit.fr/sorties/sortie-35ad0716-9c34-4b35-b44c-8896bea9b605/,Planète Mer,,11/05/2015,10.0000000,13.0000000,43.406707000000,5.056019000000,,Canal de Martigues,56546,observation-35ad0716-9c34-4b35-b44c-8896bea9b605,https://biolit.fr/observations/observation-35ad0716-9c34-4b35-b44c-8896bea9b605/,Mnemiopsis leidyi,Mnémiopsis,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_2501-rotated.jpg,,TRUE, +N1,61363,sortie-35ad0716-9c34-4b35-b44c-8896bea9b605,https://biolit.fr/sorties/sortie-35ad0716-9c34-4b35-b44c-8896bea9b605/,Planète Mer,,11/05/2015,10.0000000,13.0000000,43.406707000000,5.056019000000,,Canal de Martigues,56548,observation-35ad0716-9c34-4b35-b44c-8896bea9b605-2,https://biolit.fr/observations/observation-35ad0716-9c34-4b35-b44c-8896bea9b605-2/,Mnemiopsis leidyi,Mnémiopsis,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_2502-rotated.jpg,,TRUE, +N1,61363,sortie-35ad0716-9c34-4b35-b44c-8896bea9b605,https://biolit.fr/sorties/sortie-35ad0716-9c34-4b35-b44c-8896bea9b605/,Planète Mer,,11/05/2015,10.0000000,13.0000000,43.406707000000,5.056019000000,,Canal de Martigues,56550,observation-35ad0716-9c34-4b35-b44c-8896bea9b605-3,https://biolit.fr/observations/observation-35ad0716-9c34-4b35-b44c-8896bea9b605-3/,Mnemiopsis leidyi,Mnémiopsis,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_2504-rotated.jpg,,TRUE, +N1,61363,sortie-35ad0716-9c34-4b35-b44c-8896bea9b605,https://biolit.fr/sorties/sortie-35ad0716-9c34-4b35-b44c-8896bea9b605/,Planète Mer,,11/05/2015,10.0000000,13.0000000,43.406707000000,5.056019000000,,Canal de Martigues,56552,observation-35ad0716-9c34-4b35-b44c-8896bea9b605-4,https://biolit.fr/observations/observation-35ad0716-9c34-4b35-b44c-8896bea9b605-4/,Mnemiopsis leidyi,Mnémiopsis,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_2510.JPG,,TRUE, +N1,61363,sortie-35ad0716-9c34-4b35-b44c-8896bea9b605,https://biolit.fr/sorties/sortie-35ad0716-9c34-4b35-b44c-8896bea9b605/,Planète Mer,,11/05/2015,10.0000000,13.0000000,43.406707000000,5.056019000000,,Canal de Martigues,56554,observation-35ad0716-9c34-4b35-b44c-8896bea9b605-5,https://biolit.fr/observations/observation-35ad0716-9c34-4b35-b44c-8896bea9b605-5/,Mnemiopsis leidyi,Mnémiopsis,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_2511.JPG,,TRUE, +N1,61364,sortie-b37364ad-794d-4eeb-8d1d-40aae9216045,https://biolit.fr/sorties/sortie-b37364ad-794d-4eeb-8d1d-40aae9216045/,Phil,,11/03/2015,16.0000000,16.0000000,47.868622000000,-4.355075000000,,Treguennec - Finistère,56556,observation-b37364ad-794d-4eeb-8d1d-40aae9216045,https://biolit.fr/observations/observation-b37364ad-794d-4eeb-8d1d-40aae9216045/,Macomangulus tenuis,Telline-papillon,,https://biolit.fr/wp-content/uploads/2023/07/20151103_162038.jpg,,TRUE, +N1,61365,sortie-9056f255-c776-4bed-a476-49e9d18d02d5,https://biolit.fr/sorties/sortie-9056f255-c776-4bed-a476-49e9d18d02d5/,ESTRAN Cité de la Mer,,10/24/2015 0:00,12.0000000,13.0000000,49.928929000000,0.905626000000,,Quiberville,56558,observation-9056f255-c776-4bed-a476-49e9d18d02d5,https://biolit.fr/observations/observation-9056f255-c776-4bed-a476-49e9d18d02d5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030645-scaled.jpg,,FALSE, +N1,61366,sortie-1e058c61-039c-4f0a-8c27-52c8498b5cee,https://biolit.fr/sorties/sortie-1e058c61-039c-4f0a-8c27-52c8498b5cee/,Phil,,10/09/2015,17.0:15,17.0:25,47.894387000000,-3.969055000000,,Kerleven - La Forêt-Fouesnant - Finistère,56560,observation-1e058c61-039c-4f0a-8c27-52c8498b5cee,https://biolit.fr/observations/observation-1e058c61-039c-4f0a-8c27-52c8498b5cee/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20151009_171415.jpg,,TRUE, +N1,61366,sortie-1e058c61-039c-4f0a-8c27-52c8498b5cee,https://biolit.fr/sorties/sortie-1e058c61-039c-4f0a-8c27-52c8498b5cee/,Phil,,10/09/2015,17.0:15,17.0:25,47.894387000000,-3.969055000000,,Kerleven - La Forêt-Fouesnant - Finistère,56562,observation-1e058c61-039c-4f0a-8c27-52c8498b5cee-2,https://biolit.fr/observations/observation-1e058c61-039c-4f0a-8c27-52c8498b5cee-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151009_171450-scaled.jpg,,FALSE, +N1,61366,sortie-1e058c61-039c-4f0a-8c27-52c8498b5cee,https://biolit.fr/sorties/sortie-1e058c61-039c-4f0a-8c27-52c8498b5cee/,Phil,,10/09/2015,17.0:15,17.0:25,47.894387000000,-3.969055000000,,Kerleven - La Forêt-Fouesnant - Finistère,56564,observation-1e058c61-039c-4f0a-8c27-52c8498b5cee-3,https://biolit.fr/observations/observation-1e058c61-039c-4f0a-8c27-52c8498b5cee-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151009_171302.jpg,,FALSE, +N1,61367,sortie-01638b36-4b22-4b45-a78f-944c6eb711b5,https://biolit.fr/sorties/sortie-01638b36-4b22-4b45-a78f-944c6eb711b5/,Phil,,10/31/2015 0:00,17.0000000,17.0:35,47.8640860000,-4.119517000000,,Sainte-Marine - Finistère,56566,observation-01638b36-4b22-4b45-a78f-944c6eb711b5,https://biolit.fr/observations/observation-01638b36-4b22-4b45-a78f-944c6eb711b5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151031_173211.jpg,,FALSE, +N1,61368,sortie-3fbd2472-0091-49e6-962e-94138aa2c180,https://biolit.fr/sorties/sortie-3fbd2472-0091-49e6-962e-94138aa2c180/,Phil,,11/03/2015,16.0000000,17.0000000,47.871599000000,-4.359309000000,,Treguennec - Finistère,56568,observation-3fbd2472-0091-49e6-962e-94138aa2c180,https://biolit.fr/observations/observation-3fbd2472-0091-49e6-962e-94138aa2c180/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151103_163154.jpg,,FALSE, +N1,61368,sortie-3fbd2472-0091-49e6-962e-94138aa2c180,https://biolit.fr/sorties/sortie-3fbd2472-0091-49e6-962e-94138aa2c180/,Phil,,11/03/2015,16.0000000,17.0000000,47.871599000000,-4.359309000000,,Treguennec - Finistère,56570,observation-3fbd2472-0091-49e6-962e-94138aa2c180-2,https://biolit.fr/observations/observation-3fbd2472-0091-49e6-962e-94138aa2c180-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151103_163013.jpg,,FALSE, +N1,61368,sortie-3fbd2472-0091-49e6-962e-94138aa2c180,https://biolit.fr/sorties/sortie-3fbd2472-0091-49e6-962e-94138aa2c180/,Phil,,11/03/2015,16.0000000,17.0000000,47.871599000000,-4.359309000000,,Treguennec - Finistère,56572,observation-3fbd2472-0091-49e6-962e-94138aa2c180-3,https://biolit.fr/observations/observation-3fbd2472-0091-49e6-962e-94138aa2c180-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151103_163041-scaled.jpg,,FALSE, +N1,61368,sortie-3fbd2472-0091-49e6-962e-94138aa2c180,https://biolit.fr/sorties/sortie-3fbd2472-0091-49e6-962e-94138aa2c180/,Phil,,11/03/2015,16.0000000,17.0000000,47.871599000000,-4.359309000000,,Treguennec - Finistère,56574,observation-3fbd2472-0091-49e6-962e-94138aa2c180-4,https://biolit.fr/observations/observation-3fbd2472-0091-49e6-962e-94138aa2c180-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151103_163106-scaled.jpg,,FALSE, +N1,61369,sortie-f28111f1-3a28-4748-9372-da2e452fbb8d,https://biolit.fr/sorties/sortie-f28111f1-3a28-4748-9372-da2e452fbb8d/,Phil,,10/09/2015,16.0000000,17.0000000,47.895965000000,-3.967051000000,,Kerleven - La Forêt-Fouesnant - Finistère,56576,observation-f28111f1-3a28-4748-9372-da2e452fbb8d,https://biolit.fr/observations/observation-f28111f1-3a28-4748-9372-da2e452fbb8d/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/20151009_170953.jpg,,TRUE, +N1,61369,sortie-f28111f1-3a28-4748-9372-da2e452fbb8d,https://biolit.fr/sorties/sortie-f28111f1-3a28-4748-9372-da2e452fbb8d/,Phil,,10/09/2015,16.0000000,17.0000000,47.895965000000,-3.967051000000,,Kerleven - La Forêt-Fouesnant - Finistère,56578,observation-f28111f1-3a28-4748-9372-da2e452fbb8d-2,https://biolit.fr/observations/observation-f28111f1-3a28-4748-9372-da2e452fbb8d-2/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20151009_171224.jpg,,TRUE, +N1,61369,sortie-f28111f1-3a28-4748-9372-da2e452fbb8d,https://biolit.fr/sorties/sortie-f28111f1-3a28-4748-9372-da2e452fbb8d/,Phil,,10/09/2015,16.0000000,17.0000000,47.895965000000,-3.967051000000,,Kerleven - La Forêt-Fouesnant - Finistère,56580,observation-f28111f1-3a28-4748-9372-da2e452fbb8d-3,https://biolit.fr/observations/observation-f28111f1-3a28-4748-9372-da2e452fbb8d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151009_165014.jpg,,FALSE, +N1,61369,sortie-f28111f1-3a28-4748-9372-da2e452fbb8d,https://biolit.fr/sorties/sortie-f28111f1-3a28-4748-9372-da2e452fbb8d/,Phil,,10/09/2015,16.0000000,17.0000000,47.895965000000,-3.967051000000,,Kerleven - La Forêt-Fouesnant - Finistère,56582,observation-f28111f1-3a28-4748-9372-da2e452fbb8d-4,https://biolit.fr/observations/observation-f28111f1-3a28-4748-9372-da2e452fbb8d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151009_165101.jpg,,FALSE, +N1,61369,sortie-f28111f1-3a28-4748-9372-da2e452fbb8d,https://biolit.fr/sorties/sortie-f28111f1-3a28-4748-9372-da2e452fbb8d/,Phil,,10/09/2015,16.0000000,17.0000000,47.895965000000,-3.967051000000,,Kerleven - La Forêt-Fouesnant - Finistère,56584,observation-f28111f1-3a28-4748-9372-da2e452fbb8d-5,https://biolit.fr/observations/observation-f28111f1-3a28-4748-9372-da2e452fbb8d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151009_171124.jpg,,FALSE, +N1,61370,sortie-612e2940-34c6-412a-b080-c9aae74d5bb1,https://biolit.fr/sorties/sortie-612e2940-34c6-412a-b080-c9aae74d5bb1/,Centre de Découverte Mer et Montagne,,11/02/2015,12.0000000,14.0000000,43.692273000000,7.29042000000,,"Plage de la Réserve, Nice",56586,observation-612e2940-34c6-412a-b080-c9aae74d5bb1,https://biolit.fr/observations/observation-612e2940-34c6-412a-b080-c9aae74d5bb1/,,,,https://biolit.fr/wp-content/uploads/2023/07/150930_CN_biolit_ClA (15)-scaled.jpg,,FALSE, +N1,61370,sortie-612e2940-34c6-412a-b080-c9aae74d5bb1,https://biolit.fr/sorties/sortie-612e2940-34c6-412a-b080-c9aae74d5bb1/,Centre de Découverte Mer et Montagne,,11/02/2015,12.0000000,14.0000000,43.692273000000,7.29042000000,,"Plage de la Réserve, Nice",56588,observation-612e2940-34c6-412a-b080-c9aae74d5bb1-2,https://biolit.fr/observations/observation-612e2940-34c6-412a-b080-c9aae74d5bb1-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/150930_CN_biolit_ClA (22)-scaled.jpg,,TRUE, +N1,61371,sortie-3c9520f0-22aa-4c16-8336-68139bceceb9,https://biolit.fr/sorties/sortie-3c9520f0-22aa-4c16-8336-68139bceceb9/,Phil,,10/31/2015 0:00,17.0:25,17.0000000,47.864828000000,-4.122705000000,,Sainte-Marine - Finistère,56590,observation-3c9520f0-22aa-4c16-8336-68139bceceb9,https://biolit.fr/observations/observation-3c9520f0-22aa-4c16-8336-68139bceceb9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151031_173015_1.jpg,,FALSE, +N1,61372,sortie-3d37d2e0-ed57-41e2-8a6f-d5413060628b,https://biolit.fr/sorties/sortie-3d37d2e0-ed57-41e2-8a6f-d5413060628b/,Phil,,10/09/2015,16.0000000,16.0:45,47.894746000000,-3.966309000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,56592,observation-3d37d2e0-ed57-41e2-8a6f-d5413060628b,https://biolit.fr/observations/observation-3d37d2e0-ed57-41e2-8a6f-d5413060628b/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151009_164513.jpg,,FALSE, +N1,61372,sortie-3d37d2e0-ed57-41e2-8a6f-d5413060628b,https://biolit.fr/sorties/sortie-3d37d2e0-ed57-41e2-8a6f-d5413060628b/,Phil,,10/09/2015,16.0000000,16.0:45,47.894746000000,-3.966309000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,56594,observation-3d37d2e0-ed57-41e2-8a6f-d5413060628b-2,https://biolit.fr/observations/observation-3d37d2e0-ed57-41e2-8a6f-d5413060628b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151009_164005.jpg,,FALSE, +N1,61372,sortie-3d37d2e0-ed57-41e2-8a6f-d5413060628b,https://biolit.fr/sorties/sortie-3d37d2e0-ed57-41e2-8a6f-d5413060628b/,Phil,,10/09/2015,16.0000000,16.0:45,47.894746000000,-3.966309000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,56596,observation-3d37d2e0-ed57-41e2-8a6f-d5413060628b-3,https://biolit.fr/observations/observation-3d37d2e0-ed57-41e2-8a6f-d5413060628b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151009_163952.jpg,,FALSE, +N1,61372,sortie-3d37d2e0-ed57-41e2-8a6f-d5413060628b,https://biolit.fr/sorties/sortie-3d37d2e0-ed57-41e2-8a6f-d5413060628b/,Phil,,10/09/2015,16.0000000,16.0:45,47.894746000000,-3.966309000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,56598,observation-3d37d2e0-ed57-41e2-8a6f-d5413060628b-4,https://biolit.fr/observations/observation-3d37d2e0-ed57-41e2-8a6f-d5413060628b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151009_163823-scaled.jpg,,FALSE, +N1,61372,sortie-3d37d2e0-ed57-41e2-8a6f-d5413060628b,https://biolit.fr/sorties/sortie-3d37d2e0-ed57-41e2-8a6f-d5413060628b/,Phil,,10/09/2015,16.0000000,16.0:45,47.894746000000,-3.966309000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,56600,observation-3d37d2e0-ed57-41e2-8a6f-d5413060628b-5,https://biolit.fr/observations/observation-3d37d2e0-ed57-41e2-8a6f-d5413060628b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151009_164422.jpg,,FALSE, +N1,61372,sortie-3d37d2e0-ed57-41e2-8a6f-d5413060628b,https://biolit.fr/sorties/sortie-3d37d2e0-ed57-41e2-8a6f-d5413060628b/,Phil,,10/09/2015,16.0000000,16.0:45,47.894746000000,-3.966309000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,56602,observation-3d37d2e0-ed57-41e2-8a6f-d5413060628b-6,https://biolit.fr/observations/observation-3d37d2e0-ed57-41e2-8a6f-d5413060628b-6/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/2023/07/20151009_164316.jpg,,TRUE, +N1,61372,sortie-3d37d2e0-ed57-41e2-8a6f-d5413060628b,https://biolit.fr/sorties/sortie-3d37d2e0-ed57-41e2-8a6f-d5413060628b/,Phil,,10/09/2015,16.0000000,16.0:45,47.894746000000,-3.966309000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,56604,observation-3d37d2e0-ed57-41e2-8a6f-d5413060628b-7,https://biolit.fr/observations/observation-3d37d2e0-ed57-41e2-8a6f-d5413060628b-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151009_164238.jpg,,FALSE, +N1,61373,sortie-f042f06a-705d-4046-ad7e-4c52694bf903,https://biolit.fr/sorties/sortie-f042f06a-705d-4046-ad7e-4c52694bf903/,Phil,,10/09/2015,17.000005,17.0000000,47.895647000000,-3.966395000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,56606,observation-f042f06a-705d-4046-ad7e-4c52694bf903,https://biolit.fr/observations/observation-f042f06a-705d-4046-ad7e-4c52694bf903/,Dicentrarchus labrax,Bar commun loup,,https://biolit.fr/wp-content/uploads/2023/07/20151009_164702.jpg,,TRUE, +N1,61373,sortie-f042f06a-705d-4046-ad7e-4c52694bf903,https://biolit.fr/sorties/sortie-f042f06a-705d-4046-ad7e-4c52694bf903/,Phil,,10/09/2015,17.000005,17.0000000,47.895647000000,-3.966395000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,56608,observation-f042f06a-705d-4046-ad7e-4c52694bf903-2,https://biolit.fr/observations/observation-f042f06a-705d-4046-ad7e-4c52694bf903-2/,Dicentrarchus labrax,Bar commun loup,,https://biolit.fr/wp-content/uploads/2023/07/20151009_164723.jpg,,TRUE, +N1,61373,sortie-f042f06a-705d-4046-ad7e-4c52694bf903,https://biolit.fr/sorties/sortie-f042f06a-705d-4046-ad7e-4c52694bf903/,Phil,,10/09/2015,17.000005,17.0000000,47.895647000000,-3.966395000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,56610,observation-f042f06a-705d-4046-ad7e-4c52694bf903-3,https://biolit.fr/observations/observation-f042f06a-705d-4046-ad7e-4c52694bf903-3/,Dicentrarchus labrax,Bar commun loup,,https://biolit.fr/wp-content/uploads/2023/07/20151009_164736.jpg,,TRUE, +N1,61373,sortie-f042f06a-705d-4046-ad7e-4c52694bf903,https://biolit.fr/sorties/sortie-f042f06a-705d-4046-ad7e-4c52694bf903/,Phil,,10/09/2015,17.000005,17.0000000,47.895647000000,-3.966395000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,56612,observation-f042f06a-705d-4046-ad7e-4c52694bf903-4,https://biolit.fr/observations/observation-f042f06a-705d-4046-ad7e-4c52694bf903-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151009_164609.jpg,,FALSE, +N1,61374,sortie-7d968dc1-360e-4738-8f3a-c38825179233,https://biolit.fr/sorties/sortie-7d968dc1-360e-4738-8f3a-c38825179233/,Phil,,10/03/2015,13.0000000,13.0:15,47.893278000000,-3.969626000000,,Kerleven - La Forêt-Fouesnant - Finistère,56614,observation-7d968dc1-360e-4738-8f3a-c38825179233,https://biolit.fr/observations/observation-7d968dc1-360e-4738-8f3a-c38825179233/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151003_130128.jpg,,FALSE, +N1,61374,sortie-7d968dc1-360e-4738-8f3a-c38825179233,https://biolit.fr/sorties/sortie-7d968dc1-360e-4738-8f3a-c38825179233/,Phil,,10/03/2015,13.0000000,13.0:15,47.893278000000,-3.969626000000,,Kerleven - La Forêt-Fouesnant - Finistère,56616,observation-7d968dc1-360e-4738-8f3a-c38825179233-2,https://biolit.fr/observations/observation-7d968dc1-360e-4738-8f3a-c38825179233-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151003_130240.jpg,,FALSE, +N1,61374,sortie-7d968dc1-360e-4738-8f3a-c38825179233,https://biolit.fr/sorties/sortie-7d968dc1-360e-4738-8f3a-c38825179233/,Phil,,10/03/2015,13.0000000,13.0:15,47.893278000000,-3.969626000000,,Kerleven - La Forêt-Fouesnant - Finistère,56618,observation-7d968dc1-360e-4738-8f3a-c38825179233-3,https://biolit.fr/observations/observation-7d968dc1-360e-4738-8f3a-c38825179233-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151003_131424-scaled.jpg,,FALSE, +N1,61374,sortie-7d968dc1-360e-4738-8f3a-c38825179233,https://biolit.fr/sorties/sortie-7d968dc1-360e-4738-8f3a-c38825179233/,Phil,,10/03/2015,13.0000000,13.0:15,47.893278000000,-3.969626000000,,Kerleven - La Forêt-Fouesnant - Finistère,56620,observation-7d968dc1-360e-4738-8f3a-c38825179233-4,https://biolit.fr/observations/observation-7d968dc1-360e-4738-8f3a-c38825179233-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151003_131803.jpg,,FALSE, +N1,61374,sortie-7d968dc1-360e-4738-8f3a-c38825179233,https://biolit.fr/sorties/sortie-7d968dc1-360e-4738-8f3a-c38825179233/,Phil,,10/03/2015,13.0000000,13.0:15,47.893278000000,-3.969626000000,,Kerleven - La Forêt-Fouesnant - Finistère,56622,observation-7d968dc1-360e-4738-8f3a-c38825179233-5,https://biolit.fr/observations/observation-7d968dc1-360e-4738-8f3a-c38825179233-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151003_133435.jpg,,FALSE, +N1,61374,sortie-7d968dc1-360e-4738-8f3a-c38825179233,https://biolit.fr/sorties/sortie-7d968dc1-360e-4738-8f3a-c38825179233/,Phil,,10/03/2015,13.0000000,13.0:15,47.893278000000,-3.969626000000,,Kerleven - La Forêt-Fouesnant - Finistère,56624,observation-7d968dc1-360e-4738-8f3a-c38825179233-6,https://biolit.fr/observations/observation-7d968dc1-360e-4738-8f3a-c38825179233-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151003_130845.jpg,,FALSE, +N1,61375,sortie-997f04c9-79d5-4937-9465-c4d0d917577e,https://biolit.fr/sorties/sortie-997f04c9-79d5-4937-9465-c4d0d917577e/,Écoute ta planète,,06/04/2015,15.0000000,16.0000000,43.325712000000,5.054311000000,,Cap Couronne,56626,observation-997f04c9-79d5-4937-9465-c4d0d917577e,https://biolit.fr/observations/observation-997f04c9-79d5-4937-9465-c4d0d917577e/,,,,https://biolit.fr/wp-content/uploads/2023/07/Aplysie fasciee ETAP-scaled.jpg,,FALSE, +N1,61375,sortie-997f04c9-79d5-4937-9465-c4d0d917577e,https://biolit.fr/sorties/sortie-997f04c9-79d5-4937-9465-c4d0d917577e/,Écoute ta planète,,06/04/2015,15.0000000,16.0000000,43.325712000000,5.054311000000,,Cap Couronne,56628,observation-997f04c9-79d5-4937-9465-c4d0d917577e-2,https://biolit.fr/observations/observation-997f04c9-79d5-4937-9465-c4d0d917577e-2/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/Pelagia noctiluca ETAP 1-scaled.jpg,,TRUE, +N1,61375,sortie-997f04c9-79d5-4937-9465-c4d0d917577e,https://biolit.fr/sorties/sortie-997f04c9-79d5-4937-9465-c4d0d917577e/,Écoute ta planète,,06/04/2015,15.0000000,16.0000000,43.325712000000,5.054311000000,,Cap Couronne,56630,observation-997f04c9-79d5-4937-9465-c4d0d917577e-3,https://biolit.fr/observations/observation-997f04c9-79d5-4937-9465-c4d0d917577e-3/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/Pelagia noctiluca ETAP 2-scaled.jpg,,TRUE, +N1,61375,sortie-997f04c9-79d5-4937-9465-c4d0d917577e,https://biolit.fr/sorties/sortie-997f04c9-79d5-4937-9465-c4d0d917577e/,Écoute ta planète,,06/04/2015,15.0000000,16.0000000,43.325712000000,5.054311000000,,Cap Couronne,56632,observation-997f04c9-79d5-4937-9465-c4d0d917577e-4,https://biolit.fr/observations/observation-997f04c9-79d5-4937-9465-c4d0d917577e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/peche a pied 1 ETAP 04-06-15-scaled.jpg,,FALSE, +N1,61375,sortie-997f04c9-79d5-4937-9465-c4d0d917577e,https://biolit.fr/sorties/sortie-997f04c9-79d5-4937-9465-c4d0d917577e/,Écoute ta planète,,06/04/2015,15.0000000,16.0000000,43.325712000000,5.054311000000,,Cap Couronne,56634,observation-997f04c9-79d5-4937-9465-c4d0d917577e-5,https://biolit.fr/observations/observation-997f04c9-79d5-4937-9465-c4d0d917577e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/peche a pied 2 ETAP 04-06-15-scaled.jpg,,FALSE, +N1,61376,sortie-707ca484-dc44-4504-b7b8-15e7538e4034,https://biolit.fr/sorties/sortie-707ca484-dc44-4504-b7b8-15e7538e4034/,Phil,,10/03/2015,13.0:35,13.0:45,47.895654000000,-3.965978000000,,Kerleven - La Forêt-Fouesnant - Finistère,56636,observation-707ca484-dc44-4504-b7b8-15e7538e4034,https://biolit.fr/observations/observation-707ca484-dc44-4504-b7b8-15e7538e4034/,Aplysia depilans,Aplysie visqueuse,,https://biolit.fr/wp-content/uploads/2023/07/20151003_133622.jpg,,TRUE, +N1,61376,sortie-707ca484-dc44-4504-b7b8-15e7538e4034,https://biolit.fr/sorties/sortie-707ca484-dc44-4504-b7b8-15e7538e4034/,Phil,,10/03/2015,13.0:35,13.0:45,47.895654000000,-3.965978000000,,Kerleven - La Forêt-Fouesnant - Finistère,56638,observation-707ca484-dc44-4504-b7b8-15e7538e4034-2,https://biolit.fr/observations/observation-707ca484-dc44-4504-b7b8-15e7538e4034-2/,Aplysia depilans,Aplysie visqueuse,,https://biolit.fr/wp-content/uploads/2023/07/20151003_134023.jpg,,TRUE, +N1,61376,sortie-707ca484-dc44-4504-b7b8-15e7538e4034,https://biolit.fr/sorties/sortie-707ca484-dc44-4504-b7b8-15e7538e4034/,Phil,,10/03/2015,13.0:35,13.0:45,47.895654000000,-3.965978000000,,Kerleven - La Forêt-Fouesnant - Finistère,56640,observation-707ca484-dc44-4504-b7b8-15e7538e4034-3,https://biolit.fr/observations/observation-707ca484-dc44-4504-b7b8-15e7538e4034-3/,Aplysia depilans,Aplysie visqueuse,,https://biolit.fr/wp-content/uploads/2023/07/20151003_133530.jpg,,TRUE, +N1,61376,sortie-707ca484-dc44-4504-b7b8-15e7538e4034,https://biolit.fr/sorties/sortie-707ca484-dc44-4504-b7b8-15e7538e4034/,Phil,,10/03/2015,13.0:35,13.0:45,47.895654000000,-3.965978000000,,Kerleven - La Forêt-Fouesnant - Finistère,56642,observation-707ca484-dc44-4504-b7b8-15e7538e4034-4,https://biolit.fr/observations/observation-707ca484-dc44-4504-b7b8-15e7538e4034-4/,Aplysia depilans,Aplysie visqueuse,,https://biolit.fr/wp-content/uploads/2023/07/20151003_133853.jpg,,TRUE, +N1,61376,sortie-707ca484-dc44-4504-b7b8-15e7538e4034,https://biolit.fr/sorties/sortie-707ca484-dc44-4504-b7b8-15e7538e4034/,Phil,,10/03/2015,13.0:35,13.0:45,47.895654000000,-3.965978000000,,Kerleven - La Forêt-Fouesnant - Finistère,56644,observation-707ca484-dc44-4504-b7b8-15e7538e4034-5,https://biolit.fr/observations/observation-707ca484-dc44-4504-b7b8-15e7538e4034-5/,Aplysia depilans,Aplysie visqueuse,,https://biolit.fr/wp-content/uploads/2023/07/20151003_133905.jpg,,TRUE, +N1,61376,sortie-707ca484-dc44-4504-b7b8-15e7538e4034,https://biolit.fr/sorties/sortie-707ca484-dc44-4504-b7b8-15e7538e4034/,Phil,,10/03/2015,13.0:35,13.0:45,47.895654000000,-3.965978000000,,Kerleven - La Forêt-Fouesnant - Finistère,56646,observation-707ca484-dc44-4504-b7b8-15e7538e4034-6,https://biolit.fr/observations/observation-707ca484-dc44-4504-b7b8-15e7538e4034-6/,Aplysia depilans,Aplysie visqueuse,,https://biolit.fr/wp-content/uploads/2023/07/20151003_134238.jpg,,TRUE, +N1,61377,sortie-ac2b89ea-c95e-4bb6-a284-540171022acf,https://biolit.fr/sorties/sortie-ac2b89ea-c95e-4bb6-a284-540171022acf/,Phil,,10/17/2015 0:00,19.0:25,19.0000000,47.894563000000,-3.972948000000,,Port la Forêt - La Forêt-Fouesnant - Finistère,56648,observation-ac2b89ea-c95e-4bb6-a284-540171022acf,https://biolit.fr/observations/observation-ac2b89ea-c95e-4bb6-a284-540171022acf/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20151017_192727.jpg,,TRUE, +N1,61377,sortie-ac2b89ea-c95e-4bb6-a284-540171022acf,https://biolit.fr/sorties/sortie-ac2b89ea-c95e-4bb6-a284-540171022acf/,Phil,,10/17/2015 0:00,19.0:25,19.0000000,47.894563000000,-3.972948000000,,Port la Forêt - La Forêt-Fouesnant - Finistère,56650,observation-ac2b89ea-c95e-4bb6-a284-540171022acf-2,https://biolit.fr/observations/observation-ac2b89ea-c95e-4bb6-a284-540171022acf-2/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20151017_192850-scaled.jpg,,TRUE, +N1,61377,sortie-ac2b89ea-c95e-4bb6-a284-540171022acf,https://biolit.fr/sorties/sortie-ac2b89ea-c95e-4bb6-a284-540171022acf/,Phil,,10/17/2015 0:00,19.0:25,19.0000000,47.894563000000,-3.972948000000,,Port la Forêt - La Forêt-Fouesnant - Finistère,56652,observation-ac2b89ea-c95e-4bb6-a284-540171022acf-3,https://biolit.fr/observations/observation-ac2b89ea-c95e-4bb6-a284-540171022acf-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151017_192607.jpg,,FALSE, +N1,61378,sortie-64744ed2-8eb1-48e2-a990-6d4ae332534b,https://biolit.fr/sorties/sortie-64744ed2-8eb1-48e2-a990-6d4ae332534b/,Phil,,10/17/2015 0:00,19.0:15,19.0:25,47.895037000000,-3.973441000000,,Port la Forêt - La Forêt-Fouesnant - Finistère,56654,observation-64744ed2-8eb1-48e2-a990-6d4ae332534b,https://biolit.fr/observations/observation-64744ed2-8eb1-48e2-a990-6d4ae332534b/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151017_192331-scaled.jpg,,FALSE, +N1,61378,sortie-64744ed2-8eb1-48e2-a990-6d4ae332534b,https://biolit.fr/sorties/sortie-64744ed2-8eb1-48e2-a990-6d4ae332534b/,Phil,,10/17/2015 0:00,19.0:15,19.0:25,47.895037000000,-3.973441000000,,Port la Forêt - La Forêt-Fouesnant - Finistère,56656,observation-64744ed2-8eb1-48e2-a990-6d4ae332534b-2,https://biolit.fr/observations/observation-64744ed2-8eb1-48e2-a990-6d4ae332534b-2/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151017_192421-scaled.jpg,,TRUE, +N1,61379,sortie-627ddccd-f116-4f29-87ca-388d4a4b30ed,https://biolit.fr/sorties/sortie-627ddccd-f116-4f29-87ca-388d4a4b30ed/,Phil,,10/17/2015 0:00,19.000005,19.0000000,47.895992000000,-3.974639000000,,Port la Forêt - La Forêt-Fouesnant - Finistère,56658,observation-627ddccd-f116-4f29-87ca-388d4a4b30ed,https://biolit.fr/observations/observation-627ddccd-f116-4f29-87ca-388d4a4b30ed/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151017_190836-scaled.jpg,,FALSE, +N1,61379,sortie-627ddccd-f116-4f29-87ca-388d4a4b30ed,https://biolit.fr/sorties/sortie-627ddccd-f116-4f29-87ca-388d4a4b30ed/,Phil,,10/17/2015 0:00,19.000005,19.0000000,47.895992000000,-3.974639000000,,Port la Forêt - La Forêt-Fouesnant - Finistère,56660,observation-627ddccd-f116-4f29-87ca-388d4a4b30ed-2,https://biolit.fr/observations/observation-627ddccd-f116-4f29-87ca-388d4a4b30ed-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151017_191035-scaled.jpg,,FALSE, +N1,61379,sortie-627ddccd-f116-4f29-87ca-388d4a4b30ed,https://biolit.fr/sorties/sortie-627ddccd-f116-4f29-87ca-388d4a4b30ed/,Phil,,10/17/2015 0:00,19.000005,19.0000000,47.895992000000,-3.974639000000,,Port la Forêt - La Forêt-Fouesnant - Finistère,56662,observation-627ddccd-f116-4f29-87ca-388d4a4b30ed-3,https://biolit.fr/observations/observation-627ddccd-f116-4f29-87ca-388d4a4b30ed-3/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20151017_190930.jpg,,TRUE, +N1,61380,sortie-949abdea-a0b9-4ab8-8b77-76a8b7d73e98,https://biolit.fr/sorties/sortie-949abdea-a0b9-4ab8-8b77-76a8b7d73e98/,Phil,,10/03/2015,13.0000000,13.0000000,47.894948000000,-3.969374000000,,Kerleven - La Forêt-Fouesnant - Finistère,56664,observation-949abdea-a0b9-4ab8-8b77-76a8b7d73e98,https://biolit.fr/observations/observation-949abdea-a0b9-4ab8-8b77-76a8b7d73e98/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151003_132522.jpg,,FALSE, +N1,61380,sortie-949abdea-a0b9-4ab8-8b77-76a8b7d73e98,https://biolit.fr/sorties/sortie-949abdea-a0b9-4ab8-8b77-76a8b7d73e98/,Phil,,10/03/2015,13.0000000,13.0000000,47.894948000000,-3.969374000000,,Kerleven - La Forêt-Fouesnant - Finistère,56666,observation-949abdea-a0b9-4ab8-8b77-76a8b7d73e98-2,https://biolit.fr/observations/observation-949abdea-a0b9-4ab8-8b77-76a8b7d73e98-2/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/20151003_132922.jpg,,TRUE, +N1,61380,sortie-949abdea-a0b9-4ab8-8b77-76a8b7d73e98,https://biolit.fr/sorties/sortie-949abdea-a0b9-4ab8-8b77-76a8b7d73e98/,Phil,,10/03/2015,13.0000000,13.0000000,47.894948000000,-3.969374000000,,Kerleven - La Forêt-Fouesnant - Finistère,56668,observation-949abdea-a0b9-4ab8-8b77-76a8b7d73e98-3,https://biolit.fr/observations/observation-949abdea-a0b9-4ab8-8b77-76a8b7d73e98-3/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/20151003_133038.jpg,,TRUE, +N1,61381,sortie-f2f68549-1ab8-4df2-be88-e0b97bd2e647,https://biolit.fr/sorties/sortie-f2f68549-1ab8-4df2-be88-e0b97bd2e647/,aventure aquatique,,05/08/2015,10.0000000,11.0000000,43.08709100000,6.020995000000,,"le pradet, plage des oursinières",56670,observation-f2f68549-1ab8-4df2-be88-e0b97bd2e647,https://biolit.fr/observations/observation-f2f68549-1ab8-4df2-be88-e0b97bd2e647/,Acetabularia acetabulum,Acétabulaire,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0781-scaled.jpg,,TRUE, +N1,61382,sortie-34fdd00a-cb40-49ca-8e49-7eda1e1c3315,https://biolit.fr/sorties/sortie-34fdd00a-cb40-49ca-8e49-7eda1e1c3315/,aventure aquatique,,05/08/2015,10.0000000,11.0000000,43.087036000000,6.020920000000,,"le pradet, plage des oursinières",56672,observation-34fdd00a-cb40-49ca-8e49-7eda1e1c3315,https://biolit.fr/observations/observation-34fdd00a-cb40-49ca-8e49-7eda1e1c3315/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0771-scaled.jpg,,TRUE, +N1,61383,sortie-c3022fb5-b595-4fe4-a67f-19652c249dfe,https://biolit.fr/sorties/sortie-c3022fb5-b595-4fe4-a67f-19652c249dfe/,aventure aquatique,,05/08/2015,10.0000000,11.0000000,43.087318000000,6.020920000000,,"le pradet, plage des oursinières",56674,observation-c3022fb5-b595-4fe4-a67f-19652c249dfe,https://biolit.fr/observations/observation-c3022fb5-b595-4fe4-a67f-19652c249dfe/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0769-scaled.jpg,,FALSE, +N1,61384,sortie-049e049f-acce-42d4-9a88-6e850dd6efe9,https://biolit.fr/sorties/sortie-049e049f-acce-42d4-9a88-6e850dd6efe9/,aventure aquatique,,05/08/2015,10.0000000,11.0000000,43.087193000000,6.020877000000,,"la pradet, plage des orusinières",56676,observation-049e049f-acce-42d4-9a88-6e850dd6efe9,https://biolit.fr/observations/observation-049e049f-acce-42d4-9a88-6e850dd6efe9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0757-scaled.jpg,,FALSE, +N1,61385,sortie-fbf1d0ed-9bff-4b5d-8ab3-66f08c48450e,https://biolit.fr/sorties/sortie-fbf1d0ed-9bff-4b5d-8ab3-66f08c48450e/,aventure aquatique,,05/08/2015,10.0000000,11.0000000,43.087287000000,6.02087700000,,"le pradet, plage des oursinières",56678,observation-fbf1d0ed-9bff-4b5d-8ab3-66f08c48450e,https://biolit.fr/observations/observation-fbf1d0ed-9bff-4b5d-8ab3-66f08c48450e/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0753_0-scaled.jpg,,FALSE, +N1,61386,sortie-ae90d894-158e-488d-b59e-a06daa7515e7,https://biolit.fr/sorties/sortie-ae90d894-158e-488d-b59e-a06daa7515e7/,aventure aquatique,,05/08/2015,10.0000000,11.0000000,43.087161000000,6.020920000000,,"le pradet, plage des oursinières",56680,observation-ae90d894-158e-488d-b59e-a06daa7515e7,https://biolit.fr/observations/observation-ae90d894-158e-488d-b59e-a06daa7515e7/,Diplodus sargus,Sar commun de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0749-scaled.jpg,,TRUE, +N1,61387,sortie-3ddc383f-6f76-40c3-957b-2002a427a11c,https://biolit.fr/sorties/sortie-3ddc383f-6f76-40c3-957b-2002a427a11c/,aventure aquatique,,05/08/2015,10.0000000,11.0000000,43.087036000000,6.021049000000,,"le pradet, plage des oursinières",56682,observation-3ddc383f-6f76-40c3-957b-2002a427a11c,https://biolit.fr/observations/observation-3ddc383f-6f76-40c3-957b-2002a427a11c/,Coris julis,Girelle commune,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0747-scaled.jpg,,TRUE, +N1,61388,sortie-8f2971a6-ef60-41ec-ac0c-5fa0f5f43eeb,https://biolit.fr/sorties/sortie-8f2971a6-ef60-41ec-ac0c-5fa0f5f43eeb/,aventure aquatique,,05/08/2015,10.0000000,11.0000000,43.087036000000,6.020877000000,,"le pradet, plage des oursinières",56684,observation-8f2971a6-ef60-41ec-ac0c-5fa0f5f43eeb,https://biolit.fr/observations/observation-8f2971a6-ef60-41ec-ac0c-5fa0f5f43eeb/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0751-scaled.jpg,,TRUE, +N1,61389,sortie-4f208818-d1b2-48d2-be67-498a5ed32714,https://biolit.fr/sorties/sortie-4f208818-d1b2-48d2-be67-498a5ed32714/,aventure aquatique,,05/08/2015,10.0000000,11.0000000,43.087036000000,6.020920000000,,"le pradet, plage des oursinières",56686,observation-4f208818-d1b2-48d2-be67-498a5ed32714,https://biolit.fr/observations/observation-4f208818-d1b2-48d2-be67-498a5ed32714/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0773-scaled.jpg,,FALSE, +N1,61390,sortie-7c25764b-21ab-4e48-9f0c-3bed4f4967f8,https://biolit.fr/sorties/sortie-7c25764b-21ab-4e48-9f0c-3bed4f4967f8/,aventure aquatique,,05/08/2015,10.0000000,11.0000000,43.087005000000,6.020920000000,,"le pradet, plage des oursinières",56688,observation-7c25764b-21ab-4e48-9f0c-3bed4f4967f8,https://biolit.fr/observations/observation-7c25764b-21ab-4e48-9f0c-3bed4f4967f8/,Echinaster (Echinaster) sepositus,Etoile de mer rouge,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0743-scaled.jpg,,TRUE, +N1,61391,sortie-89aa372b-94e8-40ee-9507-12dba5e30b57,https://biolit.fr/sorties/sortie-89aa372b-94e8-40ee-9507-12dba5e30b57/,aventure aquatique,,05/07/2015,13.0000000,15.0000000,43.146278000000,5.707820000000,,port d'alon,56690,observation-89aa372b-94e8-40ee-9507-12dba5e30b57,https://biolit.fr/observations/observation-89aa372b-94e8-40ee-9507-12dba5e30b57/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0896-scaled.jpg,,FALSE, +N1,61392,sortie-0612767a-a09b-430f-b4a6-05c1ab62c2dc,https://biolit.fr/sorties/sortie-0612767a-a09b-430f-b4a6-05c1ab62c2dc/,Phil,,07/04/2015,12.0000000,12.0000000,47.837294000000,-4.347468000000,,Pointe de la Torche - Plomeur - Finistère,56692,observation-0612767a-a09b-430f-b4a6-05c1ab62c2dc,https://biolit.fr/observations/observation-0612767a-a09b-430f-b4a6-05c1ab62c2dc/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_122115-scaled.jpg,,FALSE, +N1,61392,sortie-0612767a-a09b-430f-b4a6-05c1ab62c2dc,https://biolit.fr/sorties/sortie-0612767a-a09b-430f-b4a6-05c1ab62c2dc/,Phil,,07/04/2015,12.0000000,12.0000000,47.837294000000,-4.347468000000,,Pointe de la Torche - Plomeur - Finistère,56694,observation-0612767a-a09b-430f-b4a6-05c1ab62c2dc-2,https://biolit.fr/observations/observation-0612767a-a09b-430f-b4a6-05c1ab62c2dc-2/,Matthiola sinuata,Giroflée des dunes,,https://biolit.fr/wp-content/uploads/2023/07/20150704_122040-scaled.jpg,,TRUE, +N1,61392,sortie-0612767a-a09b-430f-b4a6-05c1ab62c2dc,https://biolit.fr/sorties/sortie-0612767a-a09b-430f-b4a6-05c1ab62c2dc/,Phil,,07/04/2015,12.0000000,12.0000000,47.837294000000,-4.347468000000,,Pointe de la Torche - Plomeur - Finistère,56696,observation-0612767a-a09b-430f-b4a6-05c1ab62c2dc-3,https://biolit.fr/observations/observation-0612767a-a09b-430f-b4a6-05c1ab62c2dc-3/,Matthiola sinuata,Giroflée des dunes,,https://biolit.fr/wp-content/uploads/2023/07/20150704_122156-scaled.jpg,,TRUE, +N1,61392,sortie-0612767a-a09b-430f-b4a6-05c1ab62c2dc,https://biolit.fr/sorties/sortie-0612767a-a09b-430f-b4a6-05c1ab62c2dc/,Phil,,07/04/2015,12.0000000,12.0000000,47.837294000000,-4.347468000000,,Pointe de la Torche - Plomeur - Finistère,56698,observation-0612767a-a09b-430f-b4a6-05c1ab62c2dc-4,https://biolit.fr/observations/observation-0612767a-a09b-430f-b4a6-05c1ab62c2dc-4/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/20150704_122212-scaled.jpg,,TRUE, +N1,61392,sortie-0612767a-a09b-430f-b4a6-05c1ab62c2dc,https://biolit.fr/sorties/sortie-0612767a-a09b-430f-b4a6-05c1ab62c2dc/,Phil,,07/04/2015,12.0000000,12.0000000,47.837294000000,-4.347468000000,,Pointe de la Torche - Plomeur - Finistère,56700,observation-0612767a-a09b-430f-b4a6-05c1ab62c2dc-5,https://biolit.fr/observations/observation-0612767a-a09b-430f-b4a6-05c1ab62c2dc-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150710_123230-scaled.jpg,,FALSE, +N1,61392,sortie-0612767a-a09b-430f-b4a6-05c1ab62c2dc,https://biolit.fr/sorties/sortie-0612767a-a09b-430f-b4a6-05c1ab62c2dc/,Phil,,07/04/2015,12.0000000,12.0000000,47.837294000000,-4.347468000000,,Pointe de la Torche - Plomeur - Finistère,56702,observation-0612767a-a09b-430f-b4a6-05c1ab62c2dc-6,https://biolit.fr/observations/observation-0612767a-a09b-430f-b4a6-05c1ab62c2dc-6/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/20150704_122309-scaled.jpg,,TRUE, +N1,61392,sortie-0612767a-a09b-430f-b4a6-05c1ab62c2dc,https://biolit.fr/sorties/sortie-0612767a-a09b-430f-b4a6-05c1ab62c2dc/,Phil,,07/04/2015,12.0000000,12.0000000,47.837294000000,-4.347468000000,,Pointe de la Torche - Plomeur - Finistère,56704,observation-0612767a-a09b-430f-b4a6-05c1ab62c2dc-7,https://biolit.fr/observations/observation-0612767a-a09b-430f-b4a6-05c1ab62c2dc-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_122339-scaled.jpg,,FALSE, +N1,61392,sortie-0612767a-a09b-430f-b4a6-05c1ab62c2dc,https://biolit.fr/sorties/sortie-0612767a-a09b-430f-b4a6-05c1ab62c2dc/,Phil,,07/04/2015,12.0000000,12.0000000,47.837294000000,-4.347468000000,,Pointe de la Torche - Plomeur - Finistère,56706,observation-0612767a-a09b-430f-b4a6-05c1ab62c2dc-8,https://biolit.fr/observations/observation-0612767a-a09b-430f-b4a6-05c1ab62c2dc-8/,Lagurus ovatus,Queue de lièvre,,https://biolit.fr/wp-content/uploads/2023/07/20150704_122316.jpg,,TRUE, +N1,61393,sortie-997042da-fc11-427c-aebf-7c1068551370,https://biolit.fr/sorties/sortie-997042da-fc11-427c-aebf-7c1068551370/,Phil,,10/03/2015,13.0:15,13.0000000,47.894207000000,-3.970536000000,,Kerleven - La Forêt-Fouesnant - Finistère,56708,observation-997042da-fc11-427c-aebf-7c1068551370,https://biolit.fr/observations/observation-997042da-fc11-427c-aebf-7c1068551370/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151003_131624.jpg,,TRUE, +N1,61393,sortie-997042da-fc11-427c-aebf-7c1068551370,https://biolit.fr/sorties/sortie-997042da-fc11-427c-aebf-7c1068551370/,Phil,,10/03/2015,13.0:15,13.0000000,47.894207000000,-3.970536000000,,Kerleven - La Forêt-Fouesnant - Finistère,56710,observation-997042da-fc11-427c-aebf-7c1068551370-2,https://biolit.fr/observations/observation-997042da-fc11-427c-aebf-7c1068551370-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151003_131700.jpg,,FALSE, +N1,61393,sortie-997042da-fc11-427c-aebf-7c1068551370,https://biolit.fr/sorties/sortie-997042da-fc11-427c-aebf-7c1068551370/,Phil,,10/03/2015,13.0:15,13.0000000,47.894207000000,-3.970536000000,,Kerleven - La Forêt-Fouesnant - Finistère,56712,observation-997042da-fc11-427c-aebf-7c1068551370-3,https://biolit.fr/observations/observation-997042da-fc11-427c-aebf-7c1068551370-3/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/20151003_131715.jpg,,TRUE, +N1,61393,sortie-997042da-fc11-427c-aebf-7c1068551370,https://biolit.fr/sorties/sortie-997042da-fc11-427c-aebf-7c1068551370/,Phil,,10/03/2015,13.0:15,13.0000000,47.894207000000,-3.970536000000,,Kerleven - La Forêt-Fouesnant - Finistère,56714,observation-997042da-fc11-427c-aebf-7c1068551370-4,https://biolit.fr/observations/observation-997042da-fc11-427c-aebf-7c1068551370-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151003_131918.jpg,,TRUE, +N1,61393,sortie-997042da-fc11-427c-aebf-7c1068551370,https://biolit.fr/sorties/sortie-997042da-fc11-427c-aebf-7c1068551370/,Phil,,10/03/2015,13.0:15,13.0000000,47.894207000000,-3.970536000000,,Kerleven - La Forêt-Fouesnant - Finistère,56716,observation-997042da-fc11-427c-aebf-7c1068551370-5,https://biolit.fr/observations/observation-997042da-fc11-427c-aebf-7c1068551370-5/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20151003_131929.jpg,,TRUE, +N1,61393,sortie-997042da-fc11-427c-aebf-7c1068551370,https://biolit.fr/sorties/sortie-997042da-fc11-427c-aebf-7c1068551370/,Phil,,10/03/2015,13.0:15,13.0000000,47.894207000000,-3.970536000000,,Kerleven - La Forêt-Fouesnant - Finistère,56718,observation-997042da-fc11-427c-aebf-7c1068551370-6,https://biolit.fr/observations/observation-997042da-fc11-427c-aebf-7c1068551370-6/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151003_132138.jpg,,TRUE, +N1,61393,sortie-997042da-fc11-427c-aebf-7c1068551370,https://biolit.fr/sorties/sortie-997042da-fc11-427c-aebf-7c1068551370/,Phil,,10/03/2015,13.0:15,13.0000000,47.894207000000,-3.970536000000,,Kerleven - La Forêt-Fouesnant - Finistère,56720,observation-997042da-fc11-427c-aebf-7c1068551370-7,https://biolit.fr/observations/observation-997042da-fc11-427c-aebf-7c1068551370-7/,Euspira catena,Natice porte-chaîne,,https://biolit.fr/wp-content/uploads/2023/07/20151003_133028.jpg,,TRUE, +N1,61394,sortie-b1f129ea-ce64-42f4-b948-2d1f0237a837,https://biolit.fr/sorties/sortie-b1f129ea-ce64-42f4-b948-2d1f0237a837/,Phil,,10/03/2015,12.0:55,13.0000000,47.895994000000,-3.969092000000,,Kerleven - La Forêt-Fouesnant - Finistère,56722,observation-b1f129ea-ce64-42f4-b948-2d1f0237a837,https://biolit.fr/observations/observation-b1f129ea-ce64-42f4-b948-2d1f0237a837/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20151003_125922.jpg,,TRUE, +N1,61394,sortie-b1f129ea-ce64-42f4-b948-2d1f0237a837,https://biolit.fr/sorties/sortie-b1f129ea-ce64-42f4-b948-2d1f0237a837/,Phil,,10/03/2015,12.0:55,13.0000000,47.895994000000,-3.969092000000,,Kerleven - La Forêt-Fouesnant - Finistère,56724,observation-b1f129ea-ce64-42f4-b948-2d1f0237a837-2,https://biolit.fr/observations/observation-b1f129ea-ce64-42f4-b948-2d1f0237a837-2/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20151003_125942.jpg,,TRUE, +N1,61395,sortie-2db88a9b-0790-4317-8336-73a64b8e91e9,https://biolit.fr/sorties/sortie-2db88a9b-0790-4317-8336-73a64b8e91e9/,Marine,,10/04/2015,10.0000000,17.0000000,43.154420000000,6.481775000000,,Baie du Figuier,56726,observation-2db88a9b-0790-4317-8336-73a64b8e91e9,https://biolit.fr/observations/observation-2db88a9b-0790-4317-8336-73a64b8e91e9/,,,,https://biolit.fr/wp-content/uploads/2023/07/PA040015_0-scaled.jpg,,FALSE, +N1,61395,sortie-2db88a9b-0790-4317-8336-73a64b8e91e9,https://biolit.fr/sorties/sortie-2db88a9b-0790-4317-8336-73a64b8e91e9/,Marine,,10/04/2015,10.0000000,17.0000000,43.154420000000,6.481775000000,,Baie du Figuier,56728,observation-2db88a9b-0790-4317-8336-73a64b8e91e9-2,https://biolit.fr/observations/observation-2db88a9b-0790-4317-8336-73a64b8e91e9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/PA040016-scaled.jpg,,FALSE, +N1,61395,sortie-2db88a9b-0790-4317-8336-73a64b8e91e9,https://biolit.fr/sorties/sortie-2db88a9b-0790-4317-8336-73a64b8e91e9/,Marine,,10/04/2015,10.0000000,17.0000000,43.154420000000,6.481775000000,,Baie du Figuier,56730,observation-2db88a9b-0790-4317-8336-73a64b8e91e9-3,https://biolit.fr/observations/observation-2db88a9b-0790-4317-8336-73a64b8e91e9-3/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/PA040020-scaled.jpg,,TRUE, +N1,61396,sortie-8ef217dc-dd4d-460f-a7df-57cc74afd8a6,https://biolit.fr/sorties/sortie-8ef217dc-dd4d-460f-a7df-57cc74afd8a6/,Phil,,9/30/2015 0:00,17.0000000,17.000005,47.834364000000,-4.161316000000,,loctudy - Finistère,56732,observation-8ef217dc-dd4d-460f-a7df-57cc74afd8a6,https://biolit.fr/observations/observation-8ef217dc-dd4d-460f-a7df-57cc74afd8a6/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/20150930_170539.jpg,,TRUE, +N1,61396,sortie-8ef217dc-dd4d-460f-a7df-57cc74afd8a6,https://biolit.fr/sorties/sortie-8ef217dc-dd4d-460f-a7df-57cc74afd8a6/,Phil,,9/30/2015 0:00,17.0000000,17.000005,47.834364000000,-4.161316000000,,loctudy - Finistère,56734,observation-8ef217dc-dd4d-460f-a7df-57cc74afd8a6-2,https://biolit.fr/observations/observation-8ef217dc-dd4d-460f-a7df-57cc74afd8a6-2/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/20150930_170412.jpg,,TRUE, +N1,61396,sortie-8ef217dc-dd4d-460f-a7df-57cc74afd8a6,https://biolit.fr/sorties/sortie-8ef217dc-dd4d-460f-a7df-57cc74afd8a6/,Phil,,9/30/2015 0:00,17.0000000,17.000005,47.834364000000,-4.161316000000,,loctudy - Finistère,56736,observation-8ef217dc-dd4d-460f-a7df-57cc74afd8a6-3,https://biolit.fr/observations/observation-8ef217dc-dd4d-460f-a7df-57cc74afd8a6-3/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/20150930_170658.jpg,,TRUE, +N1,61397,sortie-2a09788d-89a8-4197-aba6-4cc97eb93943,https://biolit.fr/sorties/sortie-2a09788d-89a8-4197-aba6-4cc97eb93943/,Phil,,9/30/2015 0:00,16.0:55,17.0000000,47.835067000000,-4.163080000000,,loctudy - Finistère,56738,observation-2a09788d-89a8-4197-aba6-4cc97eb93943,https://biolit.fr/observations/observation-2a09788d-89a8-4197-aba6-4cc97eb93943/,Catenella caespitosa,Caténelle en touffe,,https://biolit.fr/wp-content/uploads/2023/07/20150930_165455.jpg,,TRUE, +N1,61397,sortie-2a09788d-89a8-4197-aba6-4cc97eb93943,https://biolit.fr/sorties/sortie-2a09788d-89a8-4197-aba6-4cc97eb93943/,Phil,,9/30/2015 0:00,16.0:55,17.0000000,47.835067000000,-4.163080000000,,loctudy - Finistère,56740,observation-2a09788d-89a8-4197-aba6-4cc97eb93943-2,https://biolit.fr/observations/observation-2a09788d-89a8-4197-aba6-4cc97eb93943-2/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150930_165429.jpg,,TRUE, +N1,61397,sortie-2a09788d-89a8-4197-aba6-4cc97eb93943,https://biolit.fr/sorties/sortie-2a09788d-89a8-4197-aba6-4cc97eb93943/,Phil,,9/30/2015 0:00,16.0:55,17.0000000,47.835067000000,-4.163080000000,,loctudy - Finistère,56742,observation-2a09788d-89a8-4197-aba6-4cc97eb93943-3,https://biolit.fr/observations/observation-2a09788d-89a8-4197-aba6-4cc97eb93943-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150930_165552.jpg,,FALSE, +N1,61397,sortie-2a09788d-89a8-4197-aba6-4cc97eb93943,https://biolit.fr/sorties/sortie-2a09788d-89a8-4197-aba6-4cc97eb93943/,Phil,,9/30/2015 0:00,16.0:55,17.0000000,47.835067000000,-4.163080000000,,loctudy - Finistère,56744,observation-2a09788d-89a8-4197-aba6-4cc97eb93943-4,https://biolit.fr/observations/observation-2a09788d-89a8-4197-aba6-4cc97eb93943-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20150930_165047.jpg,,TRUE, +N1,61397,sortie-2a09788d-89a8-4197-aba6-4cc97eb93943,https://biolit.fr/sorties/sortie-2a09788d-89a8-4197-aba6-4cc97eb93943/,Phil,,9/30/2015 0:00,16.0:55,17.0000000,47.835067000000,-4.163080000000,,loctudy - Finistère,56746,observation-2a09788d-89a8-4197-aba6-4cc97eb93943-5,https://biolit.fr/observations/observation-2a09788d-89a8-4197-aba6-4cc97eb93943-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150930_165740.jpg,,FALSE, +N1,61397,sortie-2a09788d-89a8-4197-aba6-4cc97eb93943,https://biolit.fr/sorties/sortie-2a09788d-89a8-4197-aba6-4cc97eb93943/,Phil,,9/30/2015 0:00,16.0:55,17.0000000,47.835067000000,-4.163080000000,,loctudy - Finistère,56748,observation-2a09788d-89a8-4197-aba6-4cc97eb93943-6,https://biolit.fr/observations/observation-2a09788d-89a8-4197-aba6-4cc97eb93943-6/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/20150930_170131-scaled.jpg,,TRUE, +N1,61398,sortie-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e,https://biolit.fr/sorties/sortie-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e/,Phil,,9/18/2015 0:00,10.0:25,10.0000000,47.79257800000,-4.293302000000,,Le Guilvinec - 29 Finistère,56750,observation-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e,https://biolit.fr/observations/observation-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150918_102454.jpg,,FALSE, +N1,61398,sortie-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e,https://biolit.fr/sorties/sortie-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e/,Phil,,9/18/2015 0:00,10.0:25,10.0000000,47.79257800000,-4.293302000000,,Le Guilvinec - 29 Finistère,56752,observation-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e-2,https://biolit.fr/observations/observation-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150918_102527.jpg,,FALSE, +N1,61398,sortie-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e,https://biolit.fr/sorties/sortie-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e/,Phil,,9/18/2015 0:00,10.0:25,10.0000000,47.79257800000,-4.293302000000,,Le Guilvinec - 29 Finistère,56754,observation-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e-3,https://biolit.fr/observations/observation-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150918_102539.jpg,,FALSE, +N1,61398,sortie-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e,https://biolit.fr/sorties/sortie-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e/,Phil,,9/18/2015 0:00,10.0:25,10.0000000,47.79257800000,-4.293302000000,,Le Guilvinec - 29 Finistère,56756,observation-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e-4,https://biolit.fr/observations/observation-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e-4/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/20150918_102551.jpg,,TRUE, +N1,61398,sortie-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e,https://biolit.fr/sorties/sortie-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e/,Phil,,9/18/2015 0:00,10.0:25,10.0000000,47.79257800000,-4.293302000000,,Le Guilvinec - 29 Finistère,56758,observation-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e-5,https://biolit.fr/observations/observation-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150918_102556.jpg,,FALSE, +N1,61398,sortie-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e,https://biolit.fr/sorties/sortie-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e/,Phil,,9/18/2015 0:00,10.0:25,10.0000000,47.79257800000,-4.293302000000,,Le Guilvinec - 29 Finistère,56760,observation-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e-6,https://biolit.fr/observations/observation-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150918_102630.jpg,,FALSE, +N1,61399,sortie-fa345ec8-e1e8-432a-ab93-9011bdb06617,https://biolit.fr/sorties/sortie-fa345ec8-e1e8-432a-ab93-9011bdb06617/,Phil,,9/18/2015 0:00,10.0000000,10.0:25,47.791976000000,-4.297196000000,,Le Guilvinec - 29 Finistère,56762,observation-fa345ec8-e1e8-432a-ab93-9011bdb06617,https://biolit.fr/observations/observation-fa345ec8-e1e8-432a-ab93-9011bdb06617/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150918_102206.jpg,,TRUE, +N1,61399,sortie-fa345ec8-e1e8-432a-ab93-9011bdb06617,https://biolit.fr/sorties/sortie-fa345ec8-e1e8-432a-ab93-9011bdb06617/,Phil,,9/18/2015 0:00,10.0000000,10.0:25,47.791976000000,-4.297196000000,,Le Guilvinec - 29 Finistère,56764,observation-fa345ec8-e1e8-432a-ab93-9011bdb06617-2,https://biolit.fr/observations/observation-fa345ec8-e1e8-432a-ab93-9011bdb06617-2/,Lichina pygmaea,Lichen pygmée,,https://biolit.fr/wp-content/uploads/2023/07/20150918_102115.jpg,,TRUE, +N1,61399,sortie-fa345ec8-e1e8-432a-ab93-9011bdb06617,https://biolit.fr/sorties/sortie-fa345ec8-e1e8-432a-ab93-9011bdb06617/,Phil,,9/18/2015 0:00,10.0000000,10.0:25,47.791976000000,-4.297196000000,,Le Guilvinec - 29 Finistère,56766,observation-fa345ec8-e1e8-432a-ab93-9011bdb06617-3,https://biolit.fr/observations/observation-fa345ec8-e1e8-432a-ab93-9011bdb06617-3/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/20150918_101937_0.jpg,,TRUE, +N1,61399,sortie-fa345ec8-e1e8-432a-ab93-9011bdb06617,https://biolit.fr/sorties/sortie-fa345ec8-e1e8-432a-ab93-9011bdb06617/,Phil,,9/18/2015 0:00,10.0000000,10.0:25,47.791976000000,-4.297196000000,,Le Guilvinec - 29 Finistère,56768,observation-fa345ec8-e1e8-432a-ab93-9011bdb06617-4,https://biolit.fr/observations/observation-fa345ec8-e1e8-432a-ab93-9011bdb06617-4/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/20150918_102403.jpg,,TRUE, +N1,61399,sortie-fa345ec8-e1e8-432a-ab93-9011bdb06617,https://biolit.fr/sorties/sortie-fa345ec8-e1e8-432a-ab93-9011bdb06617/,Phil,,9/18/2015 0:00,10.0000000,10.0:25,47.791976000000,-4.297196000000,,Le Guilvinec - 29 Finistère,56770,observation-fa345ec8-e1e8-432a-ab93-9011bdb06617-5,https://biolit.fr/observations/observation-fa345ec8-e1e8-432a-ab93-9011bdb06617-5/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/20150918_102335.jpg,,TRUE, +N1,61399,sortie-fa345ec8-e1e8-432a-ab93-9011bdb06617,https://biolit.fr/sorties/sortie-fa345ec8-e1e8-432a-ab93-9011bdb06617/,Phil,,9/18/2015 0:00,10.0000000,10.0:25,47.791976000000,-4.297196000000,,Le Guilvinec - 29 Finistère,56772,observation-fa345ec8-e1e8-432a-ab93-9011bdb06617-6,https://biolit.fr/observations/observation-fa345ec8-e1e8-432a-ab93-9011bdb06617-6/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/20150918_102240.jpg,,TRUE, +N1,61400,sortie-7318a30a-defc-450b-9647-23b5841720b8,https://biolit.fr/sorties/sortie-7318a30a-defc-450b-9647-23b5841720b8/,Phil,,9/18/2015 0:00,10.0:15,10.0000000,47.792144000000,-4.294999000000,,Le Guilvinec - 29 Finistère,56774,observation-7318a30a-defc-450b-9647-23b5841720b8,https://biolit.fr/observations/observation-7318a30a-defc-450b-9647-23b5841720b8/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/20150918_101928.jpg,,TRUE, +N1,61400,sortie-7318a30a-defc-450b-9647-23b5841720b8,https://biolit.fr/sorties/sortie-7318a30a-defc-450b-9647-23b5841720b8/,Phil,,9/18/2015 0:00,10.0:15,10.0000000,47.792144000000,-4.294999000000,,Le Guilvinec - 29 Finistère,56776,observation-7318a30a-defc-450b-9647-23b5841720b8-2,https://biolit.fr/observations/observation-7318a30a-defc-450b-9647-23b5841720b8-2/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/20150918_101937.jpg,,TRUE, +N1,61401,sortie-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c,https://biolit.fr/sorties/sortie-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c/,Phil,,09/10/2015,11.0000000,12.0000000,47.809648000000,-4.172270000000,,Lodonnec - 29 finistère,56778,observation-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c,https://biolit.fr/observations/observation-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c/,Phymatolithon lenormandii,Algue encroûtante rouge de Lenormand,,https://biolit.fr/wp-content/uploads/2023/07/20150910_113848.jpg,,TRUE, +N1,61401,sortie-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c,https://biolit.fr/sorties/sortie-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c/,Phil,,09/10/2015,11.0000000,12.0000000,47.809648000000,-4.172270000000,,Lodonnec - 29 finistère,56780,observation-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c-2,https://biolit.fr/observations/observation-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c-2/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/20150910_113910.jpg,,TRUE, +N1,61401,sortie-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c,https://biolit.fr/sorties/sortie-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c/,Phil,,09/10/2015,11.0000000,12.0000000,47.809648000000,-4.172270000000,,Lodonnec - 29 finistère,56782,observation-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c-3,https://biolit.fr/observations/observation-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150910_115116.jpg,,FALSE, +N1,61401,sortie-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c,https://biolit.fr/sorties/sortie-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c/,Phil,,09/10/2015,11.0000000,12.0000000,47.809648000000,-4.172270000000,,Lodonnec - 29 finistère,56784,observation-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c-4,https://biolit.fr/observations/observation-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150910_121205.jpg,,TRUE, +N1,61401,sortie-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c,https://biolit.fr/sorties/sortie-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c/,Phil,,09/10/2015,11.0000000,12.0000000,47.809648000000,-4.172270000000,,Lodonnec - 29 finistère,56786,observation-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c-5,https://biolit.fr/observations/observation-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150910_121242.jpg,,FALSE, +N1,61401,sortie-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c,https://biolit.fr/sorties/sortie-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c/,Phil,,09/10/2015,11.0000000,12.0000000,47.809648000000,-4.172270000000,,Lodonnec - 29 finistère,56788,observation-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c-6,https://biolit.fr/observations/observation-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150910_121518.jpg,,FALSE, +N1,61402,sortie-ed7cc27a-9fdf-44e4-a1e1-a0795c309df9,https://biolit.fr/sorties/sortie-ed7cc27a-9fdf-44e4-a1e1-a0795c309df9/,maximee,,10/03/2015,14.0000000,15.0000000,43.15501800000,6.480415000000,,domaine du rayol,56790,observation-ed7cc27a-9fdf-44e4-a1e1-a0795c309df9,https://biolit.fr/observations/observation-ed7cc27a-9fdf-44e4-a1e1-a0795c309df9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0495-scaled.jpg,,FALSE, +N1,61402,sortie-ed7cc27a-9fdf-44e4-a1e1-a0795c309df9,https://biolit.fr/sorties/sortie-ed7cc27a-9fdf-44e4-a1e1-a0795c309df9/,maximee,,10/03/2015,14.0000000,15.0000000,43.15501800000,6.480415000000,,domaine du rayol,56792,observation-ed7cc27a-9fdf-44e4-a1e1-a0795c309df9-2,https://biolit.fr/observations/observation-ed7cc27a-9fdf-44e4-a1e1-a0795c309df9-2/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0494-scaled.jpg,,TRUE, +N1,61403,sortie-127e842f-7cbe-4fec-b5eb-3b2653167eb8,https://biolit.fr/sorties/sortie-127e842f-7cbe-4fec-b5eb-3b2653167eb8/,Phil,,09/10/2015,11.0000000,11.0000000,47.809528000000,-4.171766000000,,Lodonnec - 29 finistère,56794,observation-127e842f-7cbe-4fec-b5eb-3b2653167eb8,https://biolit.fr/observations/observation-127e842f-7cbe-4fec-b5eb-3b2653167eb8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150910_113818-scaled.jpg,,FALSE, +N1,61403,sortie-127e842f-7cbe-4fec-b5eb-3b2653167eb8,https://biolit.fr/sorties/sortie-127e842f-7cbe-4fec-b5eb-3b2653167eb8/,Phil,,09/10/2015,11.0000000,11.0000000,47.809528000000,-4.171766000000,,Lodonnec - 29 finistère,56796,observation-127e842f-7cbe-4fec-b5eb-3b2653167eb8-2,https://biolit.fr/observations/observation-127e842f-7cbe-4fec-b5eb-3b2653167eb8-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150910_113804.jpg,,TRUE, +N1,61403,sortie-127e842f-7cbe-4fec-b5eb-3b2653167eb8,https://biolit.fr/sorties/sortie-127e842f-7cbe-4fec-b5eb-3b2653167eb8/,Phil,,09/10/2015,11.0000000,11.0000000,47.809528000000,-4.171766000000,,Lodonnec - 29 finistère,56798,observation-127e842f-7cbe-4fec-b5eb-3b2653167eb8-3,https://biolit.fr/observations/observation-127e842f-7cbe-4fec-b5eb-3b2653167eb8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150910_113703-scaled.jpg,,FALSE, +N1,61403,sortie-127e842f-7cbe-4fec-b5eb-3b2653167eb8,https://biolit.fr/sorties/sortie-127e842f-7cbe-4fec-b5eb-3b2653167eb8/,Phil,,09/10/2015,11.0000000,11.0000000,47.809528000000,-4.171766000000,,Lodonnec - 29 finistère,56800,observation-127e842f-7cbe-4fec-b5eb-3b2653167eb8-4,https://biolit.fr/observations/observation-127e842f-7cbe-4fec-b5eb-3b2653167eb8-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150910_113711-scaled.jpg,,FALSE, +N1,61403,sortie-127e842f-7cbe-4fec-b5eb-3b2653167eb8,https://biolit.fr/sorties/sortie-127e842f-7cbe-4fec-b5eb-3b2653167eb8/,Phil,,09/10/2015,11.0000000,11.0000000,47.809528000000,-4.171766000000,,Lodonnec - 29 finistère,56802,observation-127e842f-7cbe-4fec-b5eb-3b2653167eb8-5,https://biolit.fr/observations/observation-127e842f-7cbe-4fec-b5eb-3b2653167eb8-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150910_114044-scaled.jpg,,FALSE, +N1,61404,sortie-47111126-5c7c-439e-986b-86ecb8ba8c27,https://biolit.fr/sorties/sortie-47111126-5c7c-439e-986b-86ecb8ba8c27/,Phil,,09/10/2015,11.0000000,11.0000000,47.810086000000,-4.172931000000,,Lodonnec - 29 finistère,56804,observation-47111126-5c7c-439e-986b-86ecb8ba8c27,https://biolit.fr/observations/observation-47111126-5c7c-439e-986b-86ecb8ba8c27/,Rivularia bullata,Rivulaire en forme de bulle,,https://biolit.fr/wp-content/uploads/2023/07/20150910_115351.jpg,,TRUE, +N1,61404,sortie-47111126-5c7c-439e-986b-86ecb8ba8c27,https://biolit.fr/sorties/sortie-47111126-5c7c-439e-986b-86ecb8ba8c27/,Phil,,09/10/2015,11.0000000,11.0000000,47.810086000000,-4.172931000000,,Lodonnec - 29 finistère,56806,observation-47111126-5c7c-439e-986b-86ecb8ba8c27-2,https://biolit.fr/observations/observation-47111126-5c7c-439e-986b-86ecb8ba8c27-2/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20150910_115327.jpg,,TRUE, +N1,61404,sortie-47111126-5c7c-439e-986b-86ecb8ba8c27,https://biolit.fr/sorties/sortie-47111126-5c7c-439e-986b-86ecb8ba8c27/,Phil,,09/10/2015,11.0000000,11.0000000,47.810086000000,-4.172931000000,,Lodonnec - 29 finistère,56808,observation-47111126-5c7c-439e-986b-86ecb8ba8c27-3,https://biolit.fr/observations/observation-47111126-5c7c-439e-986b-86ecb8ba8c27-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150910_113627.jpg,,FALSE, +N1,61404,sortie-47111126-5c7c-439e-986b-86ecb8ba8c27,https://biolit.fr/sorties/sortie-47111126-5c7c-439e-986b-86ecb8ba8c27/,Phil,,09/10/2015,11.0000000,11.0000000,47.810086000000,-4.172931000000,,Lodonnec - 29 finistère,56810,observation-47111126-5c7c-439e-986b-86ecb8ba8c27-4,https://biolit.fr/observations/observation-47111126-5c7c-439e-986b-86ecb8ba8c27-4/,Janua heterostropha,Spirorbe de Pagenstecher,,https://biolit.fr/wp-content/uploads/2023/07/20150910_113603.jpg,,TRUE, +N1,61404,sortie-47111126-5c7c-439e-986b-86ecb8ba8c27,https://biolit.fr/sorties/sortie-47111126-5c7c-439e-986b-86ecb8ba8c27/,Phil,,09/10/2015,11.0000000,11.0000000,47.810086000000,-4.172931000000,,Lodonnec - 29 finistère,56812,observation-47111126-5c7c-439e-986b-86ecb8ba8c27-5,https://biolit.fr/observations/observation-47111126-5c7c-439e-986b-86ecb8ba8c27-5/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20150910_112955.jpg,,TRUE, +N1,61404,sortie-47111126-5c7c-439e-986b-86ecb8ba8c27,https://biolit.fr/sorties/sortie-47111126-5c7c-439e-986b-86ecb8ba8c27/,Phil,,09/10/2015,11.0000000,11.0000000,47.810086000000,-4.172931000000,,Lodonnec - 29 finistère,56814,observation-47111126-5c7c-439e-986b-86ecb8ba8c27-6,https://biolit.fr/observations/observation-47111126-5c7c-439e-986b-86ecb8ba8c27-6/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20150910_112945.jpg,,TRUE, +N1,61405,sortie-5307429a-9bda-4d11-858b-600f83a5e6e8,https://biolit.fr/sorties/sortie-5307429a-9bda-4d11-858b-600f83a5e6e8/,Phil,,09/10/2015,12.0000000,12.000005,47.809799000000,-4.17217300000,,Lodonnec - 29 finistère,56816,observation-5307429a-9bda-4d11-858b-600f83a5e6e8,https://biolit.fr/observations/observation-5307429a-9bda-4d11-858b-600f83a5e6e8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150910_120332_0.jpg,,FALSE, +N1,61405,sortie-5307429a-9bda-4d11-858b-600f83a5e6e8,https://biolit.fr/sorties/sortie-5307429a-9bda-4d11-858b-600f83a5e6e8/,Phil,,09/10/2015,12.0000000,12.000005,47.809799000000,-4.17217300000,,Lodonnec - 29 finistère,56818,observation-5307429a-9bda-4d11-858b-600f83a5e6e8-2,https://biolit.fr/observations/observation-5307429a-9bda-4d11-858b-600f83a5e6e8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150910_120313_0.jpg,,FALSE, +N1,61405,sortie-5307429a-9bda-4d11-858b-600f83a5e6e8,https://biolit.fr/sorties/sortie-5307429a-9bda-4d11-858b-600f83a5e6e8/,Phil,,09/10/2015,12.0000000,12.000005,47.809799000000,-4.17217300000,,Lodonnec - 29 finistère,56820,observation-5307429a-9bda-4d11-858b-600f83a5e6e8-3,https://biolit.fr/observations/observation-5307429a-9bda-4d11-858b-600f83a5e6e8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150910_120235.jpg,,FALSE, +N1,61406,sortie-eb5afbba-18ec-4193-a2f5-009f2ff426e2,https://biolit.fr/sorties/sortie-eb5afbba-18ec-4193-a2f5-009f2ff426e2/,Phil,,8/16/2015 0:00,20.0000000,20.0:45,48.826153000000,-3.48880100000,,Randreuz - Côtes-d'Armor,56822,observation-eb5afbba-18ec-4193-a2f5-009f2ff426e2,https://biolit.fr/observations/observation-eb5afbba-18ec-4193-a2f5-009f2ff426e2/,Halimione portulacoides,Obione faux-pourpier,,https://biolit.fr/wp-content/uploads/2023/07/20150816_204118-scaled.jpg,,TRUE, +N1,61406,sortie-eb5afbba-18ec-4193-a2f5-009f2ff426e2,https://biolit.fr/sorties/sortie-eb5afbba-18ec-4193-a2f5-009f2ff426e2/,Phil,,8/16/2015 0:00,20.0000000,20.0:45,48.826153000000,-3.48880100000,,Randreuz - Côtes-d'Armor,56824,observation-eb5afbba-18ec-4193-a2f5-009f2ff426e2-2,https://biolit.fr/observations/observation-eb5afbba-18ec-4193-a2f5-009f2ff426e2-2/,Halimione portulacoides,Obione faux-pourpier,,https://biolit.fr/wp-content/uploads/2023/07/20150816_204127-scaled.jpg,,TRUE, +N1,61407,sortie-7cc02307-496d-4e11-a2b7-60a17f222a9d,https://biolit.fr/sorties/sortie-7cc02307-496d-4e11-a2b7-60a17f222a9d/,Phil,,8/16/2015 0:00,19.0000000,19.0000000,48.832303000000,-3.487165000000,,Ploumanac'h - Côtes-d'Armor,56826,observation-7cc02307-496d-4e11-a2b7-60a17f222a9d,https://biolit.fr/observations/observation-7cc02307-496d-4e11-a2b7-60a17f222a9d/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20150816_194951.jpg,,TRUE, +N1,61408,sortie-205f30bb-5a8d-4031-a0b1-ada692294b4d,https://biolit.fr/sorties/sortie-205f30bb-5a8d-4031-a0b1-ada692294b4d/,Phil,,8/16/2015 0:00,19.0000000,19.0000000,48.832556000000,-3.48802000000,,Ploumanac'h - Côtes-d'Armor,56828,observation-205f30bb-5a8d-4031-a0b1-ada692294b4d,https://biolit.fr/observations/observation-205f30bb-5a8d-4031-a0b1-ada692294b4d/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/20150816_192944-scaled.jpg,,TRUE, +N1,61408,sortie-205f30bb-5a8d-4031-a0b1-ada692294b4d,https://biolit.fr/sorties/sortie-205f30bb-5a8d-4031-a0b1-ada692294b4d/,Phil,,8/16/2015 0:00,19.0000000,19.0000000,48.832556000000,-3.48802000000,,Ploumanac'h - Côtes-d'Armor,56830,observation-205f30bb-5a8d-4031-a0b1-ada692294b4d-2,https://biolit.fr/observations/observation-205f30bb-5a8d-4031-a0b1-ada692294b4d-2/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/20150816_192956.jpg,,TRUE, +N1,61408,sortie-205f30bb-5a8d-4031-a0b1-ada692294b4d,https://biolit.fr/sorties/sortie-205f30bb-5a8d-4031-a0b1-ada692294b4d/,Phil,,8/16/2015 0:00,19.0000000,19.0000000,48.832556000000,-3.48802000000,,Ploumanac'h - Côtes-d'Armor,56832,observation-205f30bb-5a8d-4031-a0b1-ada692294b4d-3,https://biolit.fr/observations/observation-205f30bb-5a8d-4031-a0b1-ada692294b4d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150816_193017-scaled.jpg,,FALSE, +N1,61408,sortie-205f30bb-5a8d-4031-a0b1-ada692294b4d,https://biolit.fr/sorties/sortie-205f30bb-5a8d-4031-a0b1-ada692294b4d/,Phil,,8/16/2015 0:00,19.0000000,19.0000000,48.832556000000,-3.48802000000,,Ploumanac'h - Côtes-d'Armor,56834,observation-205f30bb-5a8d-4031-a0b1-ada692294b4d-4,https://biolit.fr/observations/observation-205f30bb-5a8d-4031-a0b1-ada692294b4d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150816_193032.jpg,,FALSE, +N1,61409,sortie-0b9f45dd-a08c-44cf-bfab-4632aadc441b,https://biolit.fr/sorties/sortie-0b9f45dd-a08c-44cf-bfab-4632aadc441b/,Phil,,9/14/2015 0:00,12.0000000,12.0000000,47.873184000000,-3.931594000000,,Concarneau - Finistère,56836,observation-0b9f45dd-a08c-44cf-bfab-4632aadc441b,https://biolit.fr/observations/observation-0b9f45dd-a08c-44cf-bfab-4632aadc441b/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20150914_122959.jpg,,TRUE, +N1,61409,sortie-0b9f45dd-a08c-44cf-bfab-4632aadc441b,https://biolit.fr/sorties/sortie-0b9f45dd-a08c-44cf-bfab-4632aadc441b/,Phil,,9/14/2015 0:00,12.0000000,12.0000000,47.873184000000,-3.931594000000,,Concarneau - Finistère,56838,observation-0b9f45dd-a08c-44cf-bfab-4632aadc441b-2,https://biolit.fr/observations/observation-0b9f45dd-a08c-44cf-bfab-4632aadc441b-2/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20150914_122919.jpg,,TRUE, +N1,61409,sortie-0b9f45dd-a08c-44cf-bfab-4632aadc441b,https://biolit.fr/sorties/sortie-0b9f45dd-a08c-44cf-bfab-4632aadc441b/,Phil,,9/14/2015 0:00,12.0000000,12.0000000,47.873184000000,-3.931594000000,,Concarneau - Finistère,56840,observation-0b9f45dd-a08c-44cf-bfab-4632aadc441b-3,https://biolit.fr/observations/observation-0b9f45dd-a08c-44cf-bfab-4632aadc441b-3/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20150914_122945.jpg,,TRUE, +N1,61409,sortie-0b9f45dd-a08c-44cf-bfab-4632aadc441b,https://biolit.fr/sorties/sortie-0b9f45dd-a08c-44cf-bfab-4632aadc441b/,Phil,,9/14/2015 0:00,12.0000000,12.0000000,47.873184000000,-3.931594000000,,Concarneau - Finistère,56842,observation-0b9f45dd-a08c-44cf-bfab-4632aadc441b-4,https://biolit.fr/observations/observation-0b9f45dd-a08c-44cf-bfab-4632aadc441b-4/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20150914_123029.jpg,,TRUE, +N1,61409,sortie-0b9f45dd-a08c-44cf-bfab-4632aadc441b,https://biolit.fr/sorties/sortie-0b9f45dd-a08c-44cf-bfab-4632aadc441b/,Phil,,9/14/2015 0:00,12.0000000,12.0000000,47.873184000000,-3.931594000000,,Concarneau - Finistère,56844,observation-0b9f45dd-a08c-44cf-bfab-4632aadc441b-5,https://biolit.fr/observations/observation-0b9f45dd-a08c-44cf-bfab-4632aadc441b-5/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20150914_123037.jpg,,TRUE, +N1,61410,sortie-ded3bfb5-bfae-4447-b62f-a560392ad321,https://biolit.fr/sorties/sortie-ded3bfb5-bfae-4447-b62f-a560392ad321/,CPIE Iles de Lérins et Pays d'Azur,,8/27/2015 0:00,11.0000000,15.0000000,43.517736000000,7.069839000000,,Côte Nord Iles Sainte-Marguerite,56846,observation-ded3bfb5-bfae-4447-b62f-a560392ad321,https://biolit.fr/observations/observation-ded3bfb5-bfae-4447-b62f-a560392ad321/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0141.jpg,,FALSE, +N1,61410,sortie-ded3bfb5-bfae-4447-b62f-a560392ad321,https://biolit.fr/sorties/sortie-ded3bfb5-bfae-4447-b62f-a560392ad321/,CPIE Iles de Lérins et Pays d'Azur,,8/27/2015 0:00,11.0000000,15.0000000,43.517736000000,7.069839000000,,Côte Nord Iles Sainte-Marguerite,56848,observation-ded3bfb5-bfae-4447-b62f-a560392ad321-2,https://biolit.fr/observations/observation-ded3bfb5-bfae-4447-b62f-a560392ad321-2/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0142.jpg,,TRUE, +N1,61410,sortie-ded3bfb5-bfae-4447-b62f-a560392ad321,https://biolit.fr/sorties/sortie-ded3bfb5-bfae-4447-b62f-a560392ad321/,CPIE Iles de Lérins et Pays d'Azur,,8/27/2015 0:00,11.0000000,15.0000000,43.517736000000,7.069839000000,,Côte Nord Iles Sainte-Marguerite,56850,observation-ded3bfb5-bfae-4447-b62f-a560392ad321-3,https://biolit.fr/observations/observation-ded3bfb5-bfae-4447-b62f-a560392ad321-3/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0155.jpg,,TRUE, +N1,61410,sortie-ded3bfb5-bfae-4447-b62f-a560392ad321,https://biolit.fr/sorties/sortie-ded3bfb5-bfae-4447-b62f-a560392ad321/,CPIE Iles de Lérins et Pays d'Azur,,8/27/2015 0:00,11.0000000,15.0000000,43.517736000000,7.069839000000,,Côte Nord Iles Sainte-Marguerite,56852,observation-ded3bfb5-bfae-4447-b62f-a560392ad321-4,https://biolit.fr/observations/observation-ded3bfb5-bfae-4447-b62f-a560392ad321-4/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0144.jpg,,TRUE, +N1,61410,sortie-ded3bfb5-bfae-4447-b62f-a560392ad321,https://biolit.fr/sorties/sortie-ded3bfb5-bfae-4447-b62f-a560392ad321/,CPIE Iles de Lérins et Pays d'Azur,,8/27/2015 0:00,11.0000000,15.0000000,43.517736000000,7.069839000000,,Côte Nord Iles Sainte-Marguerite,56854,observation-ded3bfb5-bfae-4447-b62f-a560392ad321-5,https://biolit.fr/observations/observation-ded3bfb5-bfae-4447-b62f-a560392ad321-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0157.jpg,,FALSE, +N1,61410,sortie-ded3bfb5-bfae-4447-b62f-a560392ad321,https://biolit.fr/sorties/sortie-ded3bfb5-bfae-4447-b62f-a560392ad321/,CPIE Iles de Lérins et Pays d'Azur,,8/27/2015 0:00,11.0000000,15.0000000,43.517736000000,7.069839000000,,Côte Nord Iles Sainte-Marguerite,56856,observation-ded3bfb5-bfae-4447-b62f-a560392ad321-6,https://biolit.fr/observations/observation-ded3bfb5-bfae-4447-b62f-a560392ad321-6/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0139.jpg,,TRUE, +N1,61411,sortie-9cdfec5e-cfaa-4273-b1c4-6040ac9734e8,https://biolit.fr/sorties/sortie-9cdfec5e-cfaa-4273-b1c4-6040ac9734e8/,Nikko,,8/28/2015 0:00,11.0000000,12.0000000,48.733651000000,-3.541268000000,,"Lann Guerven, estuaire du Léguer, début de la baie de la Vierge",56858,observation-9cdfec5e-cfaa-4273-b1c4-6040ac9734e8,https://biolit.fr/observations/observation-9cdfec5e-cfaa-4273-b1c4-6040ac9734e8/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20150830-WA0001.jpg,,TRUE, +N1,61413,sortie-8f131ccf-e538-4bea-b789-44550d420333,https://biolit.fr/sorties/sortie-8f131ccf-e538-4bea-b789-44550d420333/,CPIE Iles de Lérins et Pays d'Azur,,8/13/2015 0:00,11.0000000,15.0000000,43.517977000000,7.068995000000,,Côte Nord de l'Ile Sainte-Marguerite,56862,observation-8f131ccf-e538-4bea-b789-44550d420333,https://biolit.fr/observations/observation-8f131ccf-e538-4bea-b789-44550d420333/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0131.jpg,,FALSE, +N1,61413,sortie-8f131ccf-e538-4bea-b789-44550d420333,https://biolit.fr/sorties/sortie-8f131ccf-e538-4bea-b789-44550d420333/,CPIE Iles de Lérins et Pays d'Azur,,8/13/2015 0:00,11.0000000,15.0000000,43.517977000000,7.068995000000,,Côte Nord de l'Ile Sainte-Marguerite,56864,observation-8f131ccf-e538-4bea-b789-44550d420333-2,https://biolit.fr/observations/observation-8f131ccf-e538-4bea-b789-44550d420333-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0123.jpg,,FALSE, +N1,61413,sortie-8f131ccf-e538-4bea-b789-44550d420333,https://biolit.fr/sorties/sortie-8f131ccf-e538-4bea-b789-44550d420333/,CPIE Iles de Lérins et Pays d'Azur,,8/13/2015 0:00,11.0000000,15.0000000,43.517977000000,7.068995000000,,Côte Nord de l'Ile Sainte-Marguerite,56866,observation-8f131ccf-e538-4bea-b789-44550d420333-3,https://biolit.fr/observations/observation-8f131ccf-e538-4bea-b789-44550d420333-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0125.jpg,,FALSE, +N1,61413,sortie-8f131ccf-e538-4bea-b789-44550d420333,https://biolit.fr/sorties/sortie-8f131ccf-e538-4bea-b789-44550d420333/,CPIE Iles de Lérins et Pays d'Azur,,8/13/2015 0:00,11.0000000,15.0000000,43.517977000000,7.068995000000,,Côte Nord de l'Ile Sainte-Marguerite,56868,observation-8f131ccf-e538-4bea-b789-44550d420333-4,https://biolit.fr/observations/observation-8f131ccf-e538-4bea-b789-44550d420333-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0126.jpg,,FALSE, +N1,61413,sortie-8f131ccf-e538-4bea-b789-44550d420333,https://biolit.fr/sorties/sortie-8f131ccf-e538-4bea-b789-44550d420333/,CPIE Iles de Lérins et Pays d'Azur,,8/13/2015 0:00,11.0000000,15.0000000,43.517977000000,7.068995000000,,Côte Nord de l'Ile Sainte-Marguerite,56870,observation-8f131ccf-e538-4bea-b789-44550d420333-5,https://biolit.fr/observations/observation-8f131ccf-e538-4bea-b789-44550d420333-5/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0127.jpg,,TRUE, +N1,61413,sortie-8f131ccf-e538-4bea-b789-44550d420333,https://biolit.fr/sorties/sortie-8f131ccf-e538-4bea-b789-44550d420333/,CPIE Iles de Lérins et Pays d'Azur,,8/13/2015 0:00,11.0000000,15.0000000,43.517977000000,7.068995000000,,Côte Nord de l'Ile Sainte-Marguerite,56872,observation-8f131ccf-e538-4bea-b789-44550d420333-6,https://biolit.fr/observations/observation-8f131ccf-e538-4bea-b789-44550d420333-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0129.jpg,,FALSE, +N1,61413,sortie-8f131ccf-e538-4bea-b789-44550d420333,https://biolit.fr/sorties/sortie-8f131ccf-e538-4bea-b789-44550d420333/,CPIE Iles de Lérins et Pays d'Azur,,8/13/2015 0:00,11.0000000,15.0000000,43.517977000000,7.068995000000,,Côte Nord de l'Ile Sainte-Marguerite,56874,observation-8f131ccf-e538-4bea-b789-44550d420333-7,https://biolit.fr/observations/observation-8f131ccf-e538-4bea-b789-44550d420333-7/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0130.jpg,,TRUE, +N1,61413,sortie-8f131ccf-e538-4bea-b789-44550d420333,https://biolit.fr/sorties/sortie-8f131ccf-e538-4bea-b789-44550d420333/,CPIE Iles de Lérins et Pays d'Azur,,8/13/2015 0:00,11.0000000,15.0000000,43.517977000000,7.068995000000,,Côte Nord de l'Ile Sainte-Marguerite,56876,observation-8f131ccf-e538-4bea-b789-44550d420333-8,https://biolit.fr/observations/observation-8f131ccf-e538-4bea-b789-44550d420333-8/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0132.jpg,,TRUE, +N1,61413,sortie-8f131ccf-e538-4bea-b789-44550d420333,https://biolit.fr/sorties/sortie-8f131ccf-e538-4bea-b789-44550d420333/,CPIE Iles de Lérins et Pays d'Azur,,8/13/2015 0:00,11.0000000,15.0000000,43.517977000000,7.068995000000,,Côte Nord de l'Ile Sainte-Marguerite,56878,observation-8f131ccf-e538-4bea-b789-44550d420333-9,https://biolit.fr/observations/observation-8f131ccf-e538-4bea-b789-44550d420333-9/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0128.jpg,,TRUE, +N1,61414,sortie-bf6530b4-f6db-4dd4-92bf-a8c82aae5cd8,https://biolit.fr/sorties/sortie-bf6530b4-f6db-4dd4-92bf-a8c82aae5cd8/,CPIE Iles de Lérins et Pays d'Azur,,08/06/2015,11.0000000,15.0000000,43.517978000000,7.068952000000,,Côte Nord de l'Ile Sainte-Marguerite,56880,observation-bf6530b4-f6db-4dd4-92bf-a8c82aae5cd8,https://biolit.fr/observations/observation-bf6530b4-f6db-4dd4-92bf-a8c82aae5cd8/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0118bis-scaled.jpg,,TRUE, +N1,61414,sortie-bf6530b4-f6db-4dd4-92bf-a8c82aae5cd8,https://biolit.fr/sorties/sortie-bf6530b4-f6db-4dd4-92bf-a8c82aae5cd8/,CPIE Iles de Lérins et Pays d'Azur,,08/06/2015,11.0000000,15.0000000,43.517978000000,7.068952000000,,Côte Nord de l'Ile Sainte-Marguerite,56882,observation-bf6530b4-f6db-4dd4-92bf-a8c82aae5cd8-2,https://biolit.fr/observations/observation-bf6530b4-f6db-4dd4-92bf-a8c82aae5cd8-2/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0117bis-scaled.jpg,,TRUE, +N1,61415,sortie-61c9a81c-0045-4e1e-9a29-de5a0261a86b,https://biolit.fr/sorties/sortie-61c9a81c-0045-4e1e-9a29-de5a0261a86b/,Audrey,,7/30/2015 0:00,16.0000000,19.0000000,49.506026000000,-1.852211000000,,Plage de sciotot,56884,observation-61c9a81c-0045-4e1e-9a29-de5a0261a86b,https://biolit.fr/observations/observation-61c9a81c-0045-4e1e-9a29-de5a0261a86b/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/Meduses_Sciotot_20150730 (2).jpg,,TRUE, +N1,61415,sortie-61c9a81c-0045-4e1e-9a29-de5a0261a86b,https://biolit.fr/sorties/sortie-61c9a81c-0045-4e1e-9a29-de5a0261a86b/,Audrey,,7/30/2015 0:00,16.0000000,19.0000000,49.506026000000,-1.852211000000,,Plage de sciotot,56886,observation-61c9a81c-0045-4e1e-9a29-de5a0261a86b-2,https://biolit.fr/observations/observation-61c9a81c-0045-4e1e-9a29-de5a0261a86b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Meduses_Sciotot_20150730 (6).jpg,,FALSE, +N1,61415,sortie-61c9a81c-0045-4e1e-9a29-de5a0261a86b,https://biolit.fr/sorties/sortie-61c9a81c-0045-4e1e-9a29-de5a0261a86b/,Audrey,,7/30/2015 0:00,16.0000000,19.0000000,49.506026000000,-1.852211000000,,Plage de sciotot,56888,observation-61c9a81c-0045-4e1e-9a29-de5a0261a86b-3,https://biolit.fr/observations/observation-61c9a81c-0045-4e1e-9a29-de5a0261a86b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Meduses_Sciotot_20150730 (8).jpg,,FALSE, +N1,61416,sortie-c3f5a476-4794-4a30-82ee-bb33d4692e2a,https://biolit.fr/sorties/sortie-c3f5a476-4794-4a30-82ee-bb33d4692e2a/,Audrey,,7/26/2015 0:00,17.0000000,18.0000000,49.679048000000,-1.72468800000,,Plage de l'école de voile de Urville,56890,observation-c3f5a476-4794-4a30-82ee-bb33d4692e2a,https://biolit.fr/observations/observation-c3f5a476-4794-4a30-82ee-bb33d4692e2a/,,,,https://biolit.fr/wp-content/uploads/2023/07/Aplysie_Urville_20150706 (6).jpg,,FALSE, +N1,61416,sortie-c3f5a476-4794-4a30-82ee-bb33d4692e2a,https://biolit.fr/sorties/sortie-c3f5a476-4794-4a30-82ee-bb33d4692e2a/,Audrey,,7/26/2015 0:00,17.0000000,18.0000000,49.679048000000,-1.72468800000,,Plage de l'école de voile de Urville,56892,observation-c3f5a476-4794-4a30-82ee-bb33d4692e2a-2,https://biolit.fr/observations/observation-c3f5a476-4794-4a30-82ee-bb33d4692e2a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Aplysie_Urville_20150706 (4).jpg,,FALSE, +N1,61416,sortie-c3f5a476-4794-4a30-82ee-bb33d4692e2a,https://biolit.fr/sorties/sortie-c3f5a476-4794-4a30-82ee-bb33d4692e2a/,Audrey,,7/26/2015 0:00,17.0000000,18.0000000,49.679048000000,-1.72468800000,,Plage de l'école de voile de Urville,56894,observation-c3f5a476-4794-4a30-82ee-bb33d4692e2a-3,https://biolit.fr/observations/observation-c3f5a476-4794-4a30-82ee-bb33d4692e2a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Aplysie_Urville_20150706 (12).jpg,,FALSE, +N1,61417,sortie-e74f209a-af97-48ef-b35e-9514bcfd2774,https://biolit.fr/sorties/sortie-e74f209a-af97-48ef-b35e-9514bcfd2774/,Morice,,6/18/2015 0:00,14.0000000,18.0:45,48.634464000000,-2.140911000000,,Ile Dame Jouane,56896,observation-e74f209a-af97-48ef-b35e-9514bcfd2774,https://biolit.fr/observations/observation-e74f209a-af97-48ef-b35e-9514bcfd2774/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_5826_0.jpg,,TRUE, +N1,61418,sortie-15b11e83-8214-43f1-bbf5-78179038188d,https://biolit.fr/sorties/sortie-15b11e83-8214-43f1-bbf5-78179038188d/,CPIE Iles de Lérins et Pays d'Azur,,7/30/2015 0:00,11.0000000,15.0000000,43.518065000000,7.068722000000,,Côte Nord de l'Ile Sainte-Marguerite,56898,observation-15b11e83-8214-43f1-bbf5-78179038188d,https://biolit.fr/observations/observation-15b11e83-8214-43f1-bbf5-78179038188d/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0113bis-scaled.jpg,,FALSE, +N1,61418,sortie-15b11e83-8214-43f1-bbf5-78179038188d,https://biolit.fr/sorties/sortie-15b11e83-8214-43f1-bbf5-78179038188d/,CPIE Iles de Lérins et Pays d'Azur,,7/30/2015 0:00,11.0000000,15.0000000,43.518065000000,7.068722000000,,Côte Nord de l'Ile Sainte-Marguerite,56900,observation-15b11e83-8214-43f1-bbf5-78179038188d-2,https://biolit.fr/observations/observation-15b11e83-8214-43f1-bbf5-78179038188d-2/,Luria lurida,Porcelaine livide,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0114bis-scaled.jpg,,TRUE, +N1,61418,sortie-15b11e83-8214-43f1-bbf5-78179038188d,https://biolit.fr/sorties/sortie-15b11e83-8214-43f1-bbf5-78179038188d/,CPIE Iles de Lérins et Pays d'Azur,,7/30/2015 0:00,11.0000000,15.0000000,43.518065000000,7.068722000000,,Côte Nord de l'Ile Sainte-Marguerite,56902,observation-15b11e83-8214-43f1-bbf5-78179038188d-3,https://biolit.fr/observations/observation-15b11e83-8214-43f1-bbf5-78179038188d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0115bis-scaled.jpg,,FALSE, +N1,61418,sortie-15b11e83-8214-43f1-bbf5-78179038188d,https://biolit.fr/sorties/sortie-15b11e83-8214-43f1-bbf5-78179038188d/,CPIE Iles de Lérins et Pays d'Azur,,7/30/2015 0:00,11.0000000,15.0000000,43.518065000000,7.068722000000,,Côte Nord de l'Ile Sainte-Marguerite,56904,observation-15b11e83-8214-43f1-bbf5-78179038188d-4,https://biolit.fr/observations/observation-15b11e83-8214-43f1-bbf5-78179038188d-4/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0116bis-scaled.jpg,,TRUE, +N1,61419,sortie-1e84f5b2-de48-4974-b3e8-ed29045aab5d,https://biolit.fr/sorties/sortie-1e84f5b2-de48-4974-b3e8-ed29045aab5d/,Emmanuelle,,7/28/2015 0:00,11.0000000,13.0000000,47.725056000000,-4.001830000000,,Archipel des Glénan,56906,observation-1e84f5b2-de48-4974-b3e8-ed29045aab5d,https://biolit.fr/observations/observation-1e84f5b2-de48-4974-b3e8-ed29045aab5d/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/20150728_120442-scaled.jpg,,TRUE, +N1,61419,sortie-1e84f5b2-de48-4974-b3e8-ed29045aab5d,https://biolit.fr/sorties/sortie-1e84f5b2-de48-4974-b3e8-ed29045aab5d/,Emmanuelle,,7/28/2015 0:00,11.0000000,13.0000000,47.725056000000,-4.001830000000,,Archipel des Glénan,56908,observation-1e84f5b2-de48-4974-b3e8-ed29045aab5d-2,https://biolit.fr/observations/observation-1e84f5b2-de48-4974-b3e8-ed29045aab5d-2/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/Chardons-scaled.jpg,,TRUE, +N1,61420,sortie-6cee43e0-0d14-4716-9520-ff2cb14c5b7e,https://biolit.fr/sorties/sortie-6cee43e0-0d14-4716-9520-ff2cb14c5b7e/,Marine,,7/28/2015 0:00,11.0:35,17.0000000,47.725351000000,-4.001755000000,,Archipel des Glénan,56910,observation-6cee43e0-0d14-4716-9520-ff2cb14c5b7e,https://biolit.fr/observations/observation-6cee43e0-0d14-4716-9520-ff2cb14c5b7e/,Echinus esculentus,Oursin globuleux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0754-scaled.jpg,,TRUE, +N1,61420,sortie-6cee43e0-0d14-4716-9520-ff2cb14c5b7e,https://biolit.fr/sorties/sortie-6cee43e0-0d14-4716-9520-ff2cb14c5b7e/,Marine,,7/28/2015 0:00,11.0:35,17.0000000,47.725351000000,-4.001755000000,,Archipel des Glénan,56913,observation-6cee43e0-0d14-4716-9520-ff2cb14c5b7e-3,https://biolit.fr/observations/observation-6cee43e0-0d14-4716-9520-ff2cb14c5b7e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0757-scaled.jpg,,FALSE, +N1,61420,sortie-6cee43e0-0d14-4716-9520-ff2cb14c5b7e,https://biolit.fr/sorties/sortie-6cee43e0-0d14-4716-9520-ff2cb14c5b7e/,Marine,,7/28/2015 0:00,11.0:35,17.0000000,47.725351000000,-4.001755000000,,Archipel des Glénan,56915,observation-6cee43e0-0d14-4716-9520-ff2cb14c5b7e-4,https://biolit.fr/observations/observation-6cee43e0-0d14-4716-9520-ff2cb14c5b7e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0758-scaled.jpg,,FALSE, +N1,61420,sortie-6cee43e0-0d14-4716-9520-ff2cb14c5b7e,https://biolit.fr/sorties/sortie-6cee43e0-0d14-4716-9520-ff2cb14c5b7e/,Marine,,7/28/2015 0:00,11.0:35,17.0000000,47.725351000000,-4.001755000000,,Archipel des Glénan,56917,observation-6cee43e0-0d14-4716-9520-ff2cb14c5b7e-5,https://biolit.fr/observations/observation-6cee43e0-0d14-4716-9520-ff2cb14c5b7e-5/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0759-scaled.jpg,,TRUE, +N1,61421,sortie-0e9610ba-d2a6-4b6d-aa48-1f3f1ae25f81,https://biolit.fr/sorties/sortie-0e9610ba-d2a6-4b6d-aa48-1f3f1ae25f81/,Phil,,7/18/2015 0:00,11.0:35,11.0:45,47.900387000000,-3.980042000000,,La Forêt-Fouesnant - Finistère,56919,observation-0e9610ba-d2a6-4b6d-aa48-1f3f1ae25f81,https://biolit.fr/observations/observation-0e9610ba-d2a6-4b6d-aa48-1f3f1ae25f81/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/20150718_113833-scaled.jpg,,TRUE, +N1,61421,sortie-0e9610ba-d2a6-4b6d-aa48-1f3f1ae25f81,https://biolit.fr/sorties/sortie-0e9610ba-d2a6-4b6d-aa48-1f3f1ae25f81/,Phil,,7/18/2015 0:00,11.0:35,11.0:45,47.900387000000,-3.980042000000,,La Forêt-Fouesnant - Finistère,56921,observation-0e9610ba-d2a6-4b6d-aa48-1f3f1ae25f81-2,https://biolit.fr/observations/observation-0e9610ba-d2a6-4b6d-aa48-1f3f1ae25f81-2/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/20150718_113405-scaled.jpg,,TRUE, +N1,61422,sortie-b29baa92-58ad-4b9a-bcdf-8cdc3760217f,https://biolit.fr/sorties/sortie-b29baa92-58ad-4b9a-bcdf-8cdc3760217f/,Phil,,7/18/2015 0:00,11.0000000,11.0:35,47.900854000000,-3.979765000000,,La Forêt-Fouesnant - Finistère,56923,observation-b29baa92-58ad-4b9a-bcdf-8cdc3760217f,https://biolit.fr/observations/observation-b29baa92-58ad-4b9a-bcdf-8cdc3760217f/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150718_113119-scaled.jpg,,TRUE, +N1,61422,sortie-b29baa92-58ad-4b9a-bcdf-8cdc3760217f,https://biolit.fr/sorties/sortie-b29baa92-58ad-4b9a-bcdf-8cdc3760217f/,Phil,,7/18/2015 0:00,11.0000000,11.0:35,47.900854000000,-3.979765000000,,La Forêt-Fouesnant - Finistère,56925,observation-b29baa92-58ad-4b9a-bcdf-8cdc3760217f-2,https://biolit.fr/observations/observation-b29baa92-58ad-4b9a-bcdf-8cdc3760217f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150718_112932-scaled.jpg,,FALSE, +N1,61422,sortie-b29baa92-58ad-4b9a-bcdf-8cdc3760217f,https://biolit.fr/sorties/sortie-b29baa92-58ad-4b9a-bcdf-8cdc3760217f/,Phil,,7/18/2015 0:00,11.0000000,11.0:35,47.900854000000,-3.979765000000,,La Forêt-Fouesnant - Finistère,56927,observation-b29baa92-58ad-4b9a-bcdf-8cdc3760217f-3,https://biolit.fr/observations/observation-b29baa92-58ad-4b9a-bcdf-8cdc3760217f-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20150718_112951-scaled.jpg,,TRUE, +N1,61423,sortie-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed,https://biolit.fr/sorties/sortie-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed/,CPIE Iles de Lérins et Pays d'Azur,,7/16/2015 0:00,11.0000000,15.0000000,43.517812000000,7.069361000000,,Côte Nord de l'Ile Sainte-Marguerite,56929,observation-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed,https://biolit.fr/observations/observation-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0101bis-scaled.jpg,,FALSE, +N1,61423,sortie-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed,https://biolit.fr/sorties/sortie-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed/,CPIE Iles de Lérins et Pays d'Azur,,7/16/2015 0:00,11.0000000,15.0000000,43.517812000000,7.069361000000,,Côte Nord de l'Ile Sainte-Marguerite,56931,observation-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed-2,https://biolit.fr/observations/observation-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed-2/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0102bis-scaled.jpg,,TRUE, +N1,61423,sortie-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed,https://biolit.fr/sorties/sortie-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed/,CPIE Iles de Lérins et Pays d'Azur,,7/16/2015 0:00,11.0000000,15.0000000,43.517812000000,7.069361000000,,Côte Nord de l'Ile Sainte-Marguerite,56933,observation-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed-3,https://biolit.fr/observations/observation-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed-3/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0104bis-scaled.jpg,,TRUE, +N1,61423,sortie-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed,https://biolit.fr/sorties/sortie-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed/,CPIE Iles de Lérins et Pays d'Azur,,7/16/2015 0:00,11.0000000,15.0000000,43.517812000000,7.069361000000,,Côte Nord de l'Ile Sainte-Marguerite,56935,observation-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed-4,https://biolit.fr/observations/observation-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed-4/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0105bis-scaled.jpg,,TRUE, +N1,61423,sortie-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed,https://biolit.fr/sorties/sortie-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed/,CPIE Iles de Lérins et Pays d'Azur,,7/16/2015 0:00,11.0000000,15.0000000,43.517812000000,7.069361000000,,Côte Nord de l'Ile Sainte-Marguerite,56937,observation-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed-5,https://biolit.fr/observations/observation-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0108bis-scaled.jpg,,FALSE, +N1,61423,sortie-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed,https://biolit.fr/sorties/sortie-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed/,CPIE Iles de Lérins et Pays d'Azur,,7/16/2015 0:00,11.0000000,15.0000000,43.517812000000,7.069361000000,,Côte Nord de l'Ile Sainte-Marguerite,56939,observation-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed-6,https://biolit.fr/observations/observation-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed-6/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0111bis-scaled.jpg,,TRUE, +N1,61423,sortie-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed,https://biolit.fr/sorties/sortie-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed/,CPIE Iles de Lérins et Pays d'Azur,,7/16/2015 0:00,11.0000000,15.0000000,43.517812000000,7.069361000000,,Côte Nord de l'Ile Sainte-Marguerite,56941,observation-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed-7,https://biolit.fr/observations/observation-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0109bis-scaled.jpg,,FALSE, +N1,61424,sortie-d74ec77b-78c7-4a70-aadc-5410f14c69c7,https://biolit.fr/sorties/sortie-d74ec77b-78c7-4a70-aadc-5410f14c69c7/,CPIE Iles de Lérins et Pays d'Azur,,07/09/2015,11.0000000,15.0000000,43.520963000000,7.032368000000,,Pointe Nord-ouest de l'Ile Sainte-Marguerite,56943,observation-d74ec77b-78c7-4a70-aadc-5410f14c69c7,https://biolit.fr/observations/observation-d74ec77b-78c7-4a70-aadc-5410f14c69c7/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0084bis-scaled.jpg,,TRUE, +N1,61424,sortie-d74ec77b-78c7-4a70-aadc-5410f14c69c7,https://biolit.fr/sorties/sortie-d74ec77b-78c7-4a70-aadc-5410f14c69c7/,CPIE Iles de Lérins et Pays d'Azur,,07/09/2015,11.0000000,15.0000000,43.520963000000,7.032368000000,,Pointe Nord-ouest de l'Ile Sainte-Marguerite,56945,observation-d74ec77b-78c7-4a70-aadc-5410f14c69c7-2,https://biolit.fr/observations/observation-d74ec77b-78c7-4a70-aadc-5410f14c69c7-2/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0093bis-scaled.jpg,,TRUE, +N1,61424,sortie-d74ec77b-78c7-4a70-aadc-5410f14c69c7,https://biolit.fr/sorties/sortie-d74ec77b-78c7-4a70-aadc-5410f14c69c7/,CPIE Iles de Lérins et Pays d'Azur,,07/09/2015,11.0000000,15.0000000,43.520963000000,7.032368000000,,Pointe Nord-ouest de l'Ile Sainte-Marguerite,56947,observation-d74ec77b-78c7-4a70-aadc-5410f14c69c7-3,https://biolit.fr/observations/observation-d74ec77b-78c7-4a70-aadc-5410f14c69c7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0096bis-scaled.jpg,,FALSE, +N1,61424,sortie-d74ec77b-78c7-4a70-aadc-5410f14c69c7,https://biolit.fr/sorties/sortie-d74ec77b-78c7-4a70-aadc-5410f14c69c7/,CPIE Iles de Lérins et Pays d'Azur,,07/09/2015,11.0000000,15.0000000,43.520963000000,7.032368000000,,Pointe Nord-ouest de l'Ile Sainte-Marguerite,56949,observation-d74ec77b-78c7-4a70-aadc-5410f14c69c7-4,https://biolit.fr/observations/observation-d74ec77b-78c7-4a70-aadc-5410f14c69c7-4/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0100bis-scaled.jpg,,TRUE, +N1,61424,sortie-d74ec77b-78c7-4a70-aadc-5410f14c69c7,https://biolit.fr/sorties/sortie-d74ec77b-78c7-4a70-aadc-5410f14c69c7/,CPIE Iles de Lérins et Pays d'Azur,,07/09/2015,11.0000000,15.0000000,43.520963000000,7.032368000000,,Pointe Nord-ouest de l'Ile Sainte-Marguerite,56951,observation-d74ec77b-78c7-4a70-aadc-5410f14c69c7-5,https://biolit.fr/observations/observation-d74ec77b-78c7-4a70-aadc-5410f14c69c7-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0072bis-scaled.jpg,,FALSE, +N1,61424,sortie-d74ec77b-78c7-4a70-aadc-5410f14c69c7,https://biolit.fr/sorties/sortie-d74ec77b-78c7-4a70-aadc-5410f14c69c7/,CPIE Iles de Lérins et Pays d'Azur,,07/09/2015,11.0000000,15.0000000,43.520963000000,7.032368000000,,Pointe Nord-ouest de l'Ile Sainte-Marguerite,56953,observation-d74ec77b-78c7-4a70-aadc-5410f14c69c7-6,https://biolit.fr/observations/observation-d74ec77b-78c7-4a70-aadc-5410f14c69c7-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0069bis-scaled.jpg,,FALSE, +N1,61424,sortie-d74ec77b-78c7-4a70-aadc-5410f14c69c7,https://biolit.fr/sorties/sortie-d74ec77b-78c7-4a70-aadc-5410f14c69c7/,CPIE Iles de Lérins et Pays d'Azur,,07/09/2015,11.0000000,15.0000000,43.520963000000,7.032368000000,,Pointe Nord-ouest de l'Ile Sainte-Marguerite,56955,observation-d74ec77b-78c7-4a70-aadc-5410f14c69c7-7,https://biolit.fr/observations/observation-d74ec77b-78c7-4a70-aadc-5410f14c69c7-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0066bis-scaled.jpg,,FALSE, +N1,61424,sortie-d74ec77b-78c7-4a70-aadc-5410f14c69c7,https://biolit.fr/sorties/sortie-d74ec77b-78c7-4a70-aadc-5410f14c69c7/,CPIE Iles de Lérins et Pays d'Azur,,07/09/2015,11.0000000,15.0000000,43.520963000000,7.032368000000,,Pointe Nord-ouest de l'Ile Sainte-Marguerite,56957,observation-d74ec77b-78c7-4a70-aadc-5410f14c69c7-8,https://biolit.fr/observations/observation-d74ec77b-78c7-4a70-aadc-5410f14c69c7-8/,Lissoclinum perforatum,Didemne lisse perforé,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0063bis-scaled.jpg,,TRUE, +N1,61425,sortie-0bbfdad3-5b03-4dab-aa33-a46dbd359fd8,https://biolit.fr/sorties/sortie-0bbfdad3-5b03-4dab-aa33-a46dbd359fd8/,Phil,,7/18/2015 0:00,11.0:25,11.0000000,47.900940000000,-3.979626000000,, La Forêt-Fouesnant - Finistère,56959,observation-0bbfdad3-5b03-4dab-aa33-a46dbd359fd8,https://biolit.fr/observations/observation-0bbfdad3-5b03-4dab-aa33-a46dbd359fd8/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150718_112747-scaled.jpg,,TRUE, +N1,61426,sortie-fffc9d62-d8b0-49bc-9b0c-e5d86efb459f,https://biolit.fr/sorties/sortie-fffc9d62-d8b0-49bc-9b0c-e5d86efb459f/,Centre de Découverte Mer et Montagne,,7/22/2015 0:00,14.0:15,15.0000000,43.692315000000,7.290474000000,,Nice,56961,observation-fffc9d62-d8b0-49bc-9b0c-e5d86efb459f,https://biolit.fr/observations/observation-fffc9d62-d8b0-49bc-9b0c-e5d86efb459f/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP2553-scaled.jpg,,FALSE, +N1,61426,sortie-fffc9d62-d8b0-49bc-9b0c-e5d86efb459f,https://biolit.fr/sorties/sortie-fffc9d62-d8b0-49bc-9b0c-e5d86efb459f/,Centre de Découverte Mer et Montagne,,7/22/2015 0:00,14.0:15,15.0000000,43.692315000000,7.290474000000,,Nice,56963,observation-fffc9d62-d8b0-49bc-9b0c-e5d86efb459f-2,https://biolit.fr/observations/observation-fffc9d62-d8b0-49bc-9b0c-e5d86efb459f-2/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/IMGP2555-scaled.jpg,,TRUE, +N1,61427,sortie-d0e2a337-c8af-4369-bb4c-2250b28a6ce1,https://biolit.fr/sorties/sortie-d0e2a337-c8af-4369-bb4c-2250b28a6ce1/,Ville de Marseille,,04/01/2015,10.0000000,13.0000000,43.359459000000,5.293776000000,,"Entrée Tunnel du Rove, Port de la Lave",56965,observation-d0e2a337-c8af-4369-bb4c-2250b28a6ce1,https://biolit.fr/observations/observation-d0e2a337-c8af-4369-bb4c-2250b28a6ce1/,Astropecten platyacanthus,Etoile-peigne à piquants plats,,https://biolit.fr/wp-content/uploads/2023/07/P4010055_0-scaled.jpg,,TRUE, +N1,61427,sortie-d0e2a337-c8af-4369-bb4c-2250b28a6ce1,https://biolit.fr/sorties/sortie-d0e2a337-c8af-4369-bb4c-2250b28a6ce1/,Ville de Marseille,,04/01/2015,10.0000000,13.0000000,43.359459000000,5.293776000000,,"Entrée Tunnel du Rove, Port de la Lave",56967,observation-d0e2a337-c8af-4369-bb4c-2250b28a6ce1-2,https://biolit.fr/observations/observation-d0e2a337-c8af-4369-bb4c-2250b28a6ce1-2/,Astropecten platyacanthus,Etoile-peigne à piquants plats,,https://biolit.fr/wp-content/uploads/2023/07/P4010056-scaled.jpg,,TRUE, +N1,61427,sortie-d0e2a337-c8af-4369-bb4c-2250b28a6ce1,https://biolit.fr/sorties/sortie-d0e2a337-c8af-4369-bb4c-2250b28a6ce1/,Ville de Marseille,,04/01/2015,10.0000000,13.0000000,43.359459000000,5.293776000000,,"Entrée Tunnel du Rove, Port de la Lave",56969,observation-d0e2a337-c8af-4369-bb4c-2250b28a6ce1-3,https://biolit.fr/observations/observation-d0e2a337-c8af-4369-bb4c-2250b28a6ce1-3/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/P4010078-scaled.jpg,,TRUE, +N1,61427,sortie-d0e2a337-c8af-4369-bb4c-2250b28a6ce1,https://biolit.fr/sorties/sortie-d0e2a337-c8af-4369-bb4c-2250b28a6ce1/,Ville de Marseille,,04/01/2015,10.0000000,13.0000000,43.359459000000,5.293776000000,,"Entrée Tunnel du Rove, Port de la Lave",56971,observation-d0e2a337-c8af-4369-bb4c-2250b28a6ce1-4,https://biolit.fr/observations/observation-d0e2a337-c8af-4369-bb4c-2250b28a6ce1-4/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/P4010059-scaled.jpg,,TRUE, +N1,61427,sortie-d0e2a337-c8af-4369-bb4c-2250b28a6ce1,https://biolit.fr/sorties/sortie-d0e2a337-c8af-4369-bb4c-2250b28a6ce1/,Ville de Marseille,,04/01/2015,10.0000000,13.0000000,43.359459000000,5.293776000000,,"Entrée Tunnel du Rove, Port de la Lave",56973,observation-d0e2a337-c8af-4369-bb4c-2250b28a6ce1-5,https://biolit.fr/observations/observation-d0e2a337-c8af-4369-bb4c-2250b28a6ce1-5/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/P4010063-scaled.jpg,,TRUE, +N1,61427,sortie-d0e2a337-c8af-4369-bb4c-2250b28a6ce1,https://biolit.fr/sorties/sortie-d0e2a337-c8af-4369-bb4c-2250b28a6ce1/,Ville de Marseille,,04/01/2015,10.0000000,13.0000000,43.359459000000,5.293776000000,,"Entrée Tunnel du Rove, Port de la Lave",56975,observation-d0e2a337-c8af-4369-bb4c-2250b28a6ce1-6,https://biolit.fr/observations/observation-d0e2a337-c8af-4369-bb4c-2250b28a6ce1-6/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/P4010069-scaled.jpg,,TRUE, +N1,61428,sortie-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125,https://biolit.fr/sorties/sortie-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125/,Phil,,07/12/2015,17.0:45,18.0000000,47.896772000000,-3.974975000000,,Port la Forêt - La Forêt-Fouesnant - Finistère,56977,observation-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125,https://biolit.fr/observations/observation-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150712_174448-scaled.jpg,,TRUE, +N1,61428,sortie-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125,https://biolit.fr/sorties/sortie-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125/,Phil,,07/12/2015,17.0:45,18.0000000,47.896772000000,-3.974975000000,,Port la Forêt - La Forêt-Fouesnant - Finistère,56979,observation-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125-2,https://biolit.fr/observations/observation-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150712_174433-scaled.jpg,,TRUE, +N1,61428,sortie-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125,https://biolit.fr/sorties/sortie-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125/,Phil,,07/12/2015,17.0:45,18.0000000,47.896772000000,-3.974975000000,,Port la Forêt - La Forêt-Fouesnant - Finistère,56981,observation-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125-3,https://biolit.fr/observations/observation-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150712_180140-scaled.jpg,,TRUE, +N1,61428,sortie-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125,https://biolit.fr/sorties/sortie-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125/,Phil,,07/12/2015,17.0:45,18.0000000,47.896772000000,-3.974975000000,,Port la Forêt - La Forêt-Fouesnant - Finistère,56983,observation-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125-4,https://biolit.fr/observations/observation-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125-4/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150712_180237-scaled.jpg,,TRUE, +N1,61428,sortie-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125,https://biolit.fr/sorties/sortie-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125/,Phil,,07/12/2015,17.0:45,18.0000000,47.896772000000,-3.974975000000,,Port la Forêt - La Forêt-Fouesnant - Finistère,56985,observation-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125-5,https://biolit.fr/observations/observation-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125-5/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150712_180311-scaled.jpg,,TRUE, +N1,61428,sortie-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125,https://biolit.fr/sorties/sortie-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125/,Phil,,07/12/2015,17.0:45,18.0000000,47.896772000000,-3.974975000000,,Port la Forêt - La Forêt-Fouesnant - Finistère,56987,observation-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125-6,https://biolit.fr/observations/observation-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125-6/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20150712_180642-scaled.jpg,,TRUE, +N1,61429,sortie-a262e1b7-75a3-41e8-8277-36ce61dd16f6,https://biolit.fr/sorties/sortie-a262e1b7-75a3-41e8-8277-36ce61dd16f6/,Phil,,07/12/2015,17.0000000,17.0:45,47.895118000000,-3.973353000000,,Kerleven - La Forêt-Fouesnant - Finistère,56989,observation-a262e1b7-75a3-41e8-8277-36ce61dd16f6,https://biolit.fr/observations/observation-a262e1b7-75a3-41e8-8277-36ce61dd16f6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150712_180903-scaled.jpg,,FALSE, +N1,61429,sortie-a262e1b7-75a3-41e8-8277-36ce61dd16f6,https://biolit.fr/sorties/sortie-a262e1b7-75a3-41e8-8277-36ce61dd16f6/,Phil,,07/12/2015,17.0000000,17.0:45,47.895118000000,-3.973353000000,,Kerleven - La Forêt-Fouesnant - Finistère,56991,observation-a262e1b7-75a3-41e8-8277-36ce61dd16f6-2,https://biolit.fr/observations/observation-a262e1b7-75a3-41e8-8277-36ce61dd16f6-2/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/20150712_175952-scaled.jpg,,TRUE, +N1,61429,sortie-a262e1b7-75a3-41e8-8277-36ce61dd16f6,https://biolit.fr/sorties/sortie-a262e1b7-75a3-41e8-8277-36ce61dd16f6/,Phil,,07/12/2015,17.0000000,17.0:45,47.895118000000,-3.973353000000,,Kerleven - La Forêt-Fouesnant - Finistère,56993,observation-a262e1b7-75a3-41e8-8277-36ce61dd16f6-3,https://biolit.fr/observations/observation-a262e1b7-75a3-41e8-8277-36ce61dd16f6-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150712_175846-scaled.jpg,,TRUE, +N1,61429,sortie-a262e1b7-75a3-41e8-8277-36ce61dd16f6,https://biolit.fr/sorties/sortie-a262e1b7-75a3-41e8-8277-36ce61dd16f6/,Phil,,07/12/2015,17.0000000,17.0:45,47.895118000000,-3.973353000000,,Kerleven - La Forêt-Fouesnant - Finistère,56995,observation-a262e1b7-75a3-41e8-8277-36ce61dd16f6-4,https://biolit.fr/observations/observation-a262e1b7-75a3-41e8-8277-36ce61dd16f6-4/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20150712_175556-scaled.jpg,,TRUE, +N1,61429,sortie-a262e1b7-75a3-41e8-8277-36ce61dd16f6,https://biolit.fr/sorties/sortie-a262e1b7-75a3-41e8-8277-36ce61dd16f6/,Phil,,07/12/2015,17.0000000,17.0:45,47.895118000000,-3.973353000000,,Kerleven - La Forêt-Fouesnant - Finistère,56997,observation-a262e1b7-75a3-41e8-8277-36ce61dd16f6-5,https://biolit.fr/observations/observation-a262e1b7-75a3-41e8-8277-36ce61dd16f6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150712_175331-scaled.jpg,,FALSE, +N1,61429,sortie-a262e1b7-75a3-41e8-8277-36ce61dd16f6,https://biolit.fr/sorties/sortie-a262e1b7-75a3-41e8-8277-36ce61dd16f6/,Phil,,07/12/2015,17.0000000,17.0:45,47.895118000000,-3.973353000000,,Kerleven - La Forêt-Fouesnant - Finistère,56999,observation-a262e1b7-75a3-41e8-8277-36ce61dd16f6-6,https://biolit.fr/observations/observation-a262e1b7-75a3-41e8-8277-36ce61dd16f6-6/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/20150712_174952-scaled.jpg,,TRUE, +N1,61429,sortie-a262e1b7-75a3-41e8-8277-36ce61dd16f6,https://biolit.fr/sorties/sortie-a262e1b7-75a3-41e8-8277-36ce61dd16f6/,Phil,,07/12/2015,17.0000000,17.0:45,47.895118000000,-3.973353000000,,Kerleven - La Forêt-Fouesnant - Finistère,57001,observation-a262e1b7-75a3-41e8-8277-36ce61dd16f6-7,https://biolit.fr/observations/observation-a262e1b7-75a3-41e8-8277-36ce61dd16f6-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150712_173330-scaled.jpg,,FALSE, +N1,61430,sortie-7f759f4c-7e70-4fd4-832b-1d82b7ea85bf,https://biolit.fr/sorties/sortie-7f759f4c-7e70-4fd4-832b-1d82b7ea85bf/,Phil,,07/12/2015,16.0000000,17.0000000,47.895797000000,-3.969353000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,57003,observation-7f759f4c-7e70-4fd4-832b-1d82b7ea85bf,https://biolit.fr/observations/observation-7f759f4c-7e70-4fd4-832b-1d82b7ea85bf/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150712_174020-scaled.jpg,,FALSE, +N1,61430,sortie-7f759f4c-7e70-4fd4-832b-1d82b7ea85bf,https://biolit.fr/sorties/sortie-7f759f4c-7e70-4fd4-832b-1d82b7ea85bf/,Phil,,07/12/2015,16.0000000,17.0000000,47.895797000000,-3.969353000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,57005,observation-7f759f4c-7e70-4fd4-832b-1d82b7ea85bf-2,https://biolit.fr/observations/observation-7f759f4c-7e70-4fd4-832b-1d82b7ea85bf-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150712_174108-scaled.jpg,,FALSE, +N1,61430,sortie-7f759f4c-7e70-4fd4-832b-1d82b7ea85bf,https://biolit.fr/sorties/sortie-7f759f4c-7e70-4fd4-832b-1d82b7ea85bf/,Phil,,07/12/2015,16.0000000,17.0000000,47.895797000000,-3.969353000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,57007,observation-7f759f4c-7e70-4fd4-832b-1d82b7ea85bf-3,https://biolit.fr/observations/observation-7f759f4c-7e70-4fd4-832b-1d82b7ea85bf-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150712_172928-scaled.jpg,,FALSE, +N1,61431,sortie-2541130d-19dd-425d-8cf7-85acab4b9758,https://biolit.fr/sorties/sortie-2541130d-19dd-425d-8cf7-85acab4b9758/,Phil,,07/12/2015,15.0000000,16.0000000,47.896315000000,-3.965367000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,57009,observation-2541130d-19dd-425d-8cf7-85acab4b9758,https://biolit.fr/observations/observation-2541130d-19dd-425d-8cf7-85acab4b9758/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150712_182229-scaled.jpg,,FALSE, +N1,61431,sortie-2541130d-19dd-425d-8cf7-85acab4b9758,https://biolit.fr/sorties/sortie-2541130d-19dd-425d-8cf7-85acab4b9758/,Phil,,07/12/2015,15.0000000,16.0000000,47.896315000000,-3.965367000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,57011,observation-2541130d-19dd-425d-8cf7-85acab4b9758-2,https://biolit.fr/observations/observation-2541130d-19dd-425d-8cf7-85acab4b9758-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150712_181835-scaled.jpg,,FALSE, +N1,61431,sortie-2541130d-19dd-425d-8cf7-85acab4b9758,https://biolit.fr/sorties/sortie-2541130d-19dd-425d-8cf7-85acab4b9758/,Phil,,07/12/2015,15.0000000,16.0000000,47.896315000000,-3.965367000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,57013,observation-2541130d-19dd-425d-8cf7-85acab4b9758-3,https://biolit.fr/observations/observation-2541130d-19dd-425d-8cf7-85acab4b9758-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150712_171906-scaled.jpg,,FALSE, +N1,61432,sortie-52d0e84e-abba-4cf5-8033-54bf534db680,https://biolit.fr/sorties/sortie-52d0e84e-abba-4cf5-8033-54bf534db680/,Romuald VIALE - EXPENATURE,,07/11/2015,10.0000000,10.0000000,43.158225000000,5.620048000000,,Ile Verte,57015,observation-52d0e84e-abba-4cf5-8033-54bf534db680,https://biolit.fr/observations/observation-52d0e84e-abba-4cf5-8033-54bf534db680/,,,,https://biolit.fr/wp-content/uploads/2023/07/2015-07-11 Ciotat Voisins GALLO 054b.jpg,,FALSE, +N1,61433,sortie-02eb8711-620c-4431-9fde-57e923fd7957,https://biolit.fr/sorties/sortie-02eb8711-620c-4431-9fde-57e923fd7957/,Romuald VIALE - EXPENATURE,,07/11/2015,11.0000000,11.0:25,43.160347000000,5.604534000000,,Bec de l'Aigle,57017,observation-02eb8711-620c-4431-9fde-57e923fd7957,https://biolit.fr/observations/observation-02eb8711-620c-4431-9fde-57e923fd7957/,,,,https://biolit.fr/wp-content/uploads/2023/07/2015-07-11 Ciotat Voisins GALLO 068-scaled.jpg,,FALSE, +N1,61433,sortie-02eb8711-620c-4431-9fde-57e923fd7957,https://biolit.fr/sorties/sortie-02eb8711-620c-4431-9fde-57e923fd7957/,Romuald VIALE - EXPENATURE,,07/11/2015,11.0000000,11.0:25,43.160347000000,5.604534000000,,Bec de l'Aigle,57019,observation-02eb8711-620c-4431-9fde-57e923fd7957-2,https://biolit.fr/observations/observation-02eb8711-620c-4431-9fde-57e923fd7957-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/2015-07-11 Ciotat Voisins GALLO 069-scaled.jpg,,FALSE, +N1,61434,sortie-e431750e-ce94-48ae-a6cf-35bbe55d5401,https://biolit.fr/sorties/sortie-e431750e-ce94-48ae-a6cf-35bbe55d5401/,Phil,,07/04/2015,12.0000000,12.0:15,47.838008000000,-4.351223000000,,Pointe de la Torche - Plomeur - Finistère,57021,observation-e431750e-ce94-48ae-a6cf-35bbe55d5401,https://biolit.fr/observations/observation-e431750e-ce94-48ae-a6cf-35bbe55d5401/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_120725-scaled.jpg,,FALSE, +N1,61434,sortie-e431750e-ce94-48ae-a6cf-35bbe55d5401,https://biolit.fr/sorties/sortie-e431750e-ce94-48ae-a6cf-35bbe55d5401/,Phil,,07/04/2015,12.0000000,12.0:15,47.838008000000,-4.351223000000,,Pointe de la Torche - Plomeur - Finistère,57023,observation-e431750e-ce94-48ae-a6cf-35bbe55d5401-2,https://biolit.fr/observations/observation-e431750e-ce94-48ae-a6cf-35bbe55d5401-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_120803-scaled.jpg,,FALSE, +N1,61434,sortie-e431750e-ce94-48ae-a6cf-35bbe55d5401,https://biolit.fr/sorties/sortie-e431750e-ce94-48ae-a6cf-35bbe55d5401/,Phil,,07/04/2015,12.0000000,12.0:15,47.838008000000,-4.351223000000,,Pointe de la Torche - Plomeur - Finistère,57025,observation-e431750e-ce94-48ae-a6cf-35bbe55d5401-3,https://biolit.fr/observations/observation-e431750e-ce94-48ae-a6cf-35bbe55d5401-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_121136-scaled.jpg,,FALSE, +N1,61434,sortie-e431750e-ce94-48ae-a6cf-35bbe55d5401,https://biolit.fr/sorties/sortie-e431750e-ce94-48ae-a6cf-35bbe55d5401/,Phil,,07/04/2015,12.0000000,12.0:15,47.838008000000,-4.351223000000,,Pointe de la Torche - Plomeur - Finistère,57027,observation-e431750e-ce94-48ae-a6cf-35bbe55d5401-4,https://biolit.fr/observations/observation-e431750e-ce94-48ae-a6cf-35bbe55d5401-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_121212-scaled.jpg,,FALSE, +N1,61434,sortie-e431750e-ce94-48ae-a6cf-35bbe55d5401,https://biolit.fr/sorties/sortie-e431750e-ce94-48ae-a6cf-35bbe55d5401/,Phil,,07/04/2015,12.0000000,12.0:15,47.838008000000,-4.351223000000,,Pointe de la Torche - Plomeur - Finistère,57029,observation-e431750e-ce94-48ae-a6cf-35bbe55d5401-5,https://biolit.fr/observations/observation-e431750e-ce94-48ae-a6cf-35bbe55d5401-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_121242.jpg,,FALSE, +N1,61434,sortie-e431750e-ce94-48ae-a6cf-35bbe55d5401,https://biolit.fr/sorties/sortie-e431750e-ce94-48ae-a6cf-35bbe55d5401/,Phil,,07/04/2015,12.0000000,12.0:15,47.838008000000,-4.351223000000,,Pointe de la Torche - Plomeur - Finistère,57031,observation-e431750e-ce94-48ae-a6cf-35bbe55d5401-6,https://biolit.fr/observations/observation-e431750e-ce94-48ae-a6cf-35bbe55d5401-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_121855-scaled.jpg,,FALSE, +N1,61435,sortie-ea81802d-c418-47ad-a2f7-176a80c7f01f,https://biolit.fr/sorties/sortie-ea81802d-c418-47ad-a2f7-176a80c7f01f/,NAUSICAA,,6/27/2015 0:00,15.0000000,16.0000000,50.828607000000,1.589559000000,,Audresselles,57033,observation-ea81802d-c418-47ad-a2f7-176a80c7f01f,https://biolit.fr/observations/observation-ea81802d-c418-47ad-a2f7-176a80c7f01f/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF9590-scaled.jpg,,FALSE, +N1,61435,sortie-ea81802d-c418-47ad-a2f7-176a80c7f01f,https://biolit.fr/sorties/sortie-ea81802d-c418-47ad-a2f7-176a80c7f01f/,NAUSICAA,,6/27/2015 0:00,15.0000000,16.0000000,50.828607000000,1.589559000000,,Audresselles,57035,observation-ea81802d-c418-47ad-a2f7-176a80c7f01f-2,https://biolit.fr/observations/observation-ea81802d-c418-47ad-a2f7-176a80c7f01f-2/,Aurelia aurita,Aurélie,,https://biolit.fr/wp-content/uploads/2023/07/DSCF9601-scaled.jpg,,TRUE, +N1,61435,sortie-ea81802d-c418-47ad-a2f7-176a80c7f01f,https://biolit.fr/sorties/sortie-ea81802d-c418-47ad-a2f7-176a80c7f01f/,NAUSICAA,,6/27/2015 0:00,15.0000000,16.0000000,50.828607000000,1.589559000000,,Audresselles,57037,observation-ea81802d-c418-47ad-a2f7-176a80c7f01f-3,https://biolit.fr/observations/observation-ea81802d-c418-47ad-a2f7-176a80c7f01f-3/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/DSCF9595-scaled.jpg,,TRUE, +N1,61436,sortie-30444c98-94ef-4e38-8177-2e2cfa248d68,https://biolit.fr/sorties/sortie-30444c98-94ef-4e38-8177-2e2cfa248d68/,Phil,,07/04/2015,11.0:55,12.000005,47.83770700000,-4.354272000000,,Pointe de la Torche - Plomeur - Finistère,57039,observation-30444c98-94ef-4e38-8177-2e2cfa248d68,https://biolit.fr/observations/observation-30444c98-94ef-4e38-8177-2e2cfa248d68/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_120511-scaled.jpg,,FALSE, +N1,61436,sortie-30444c98-94ef-4e38-8177-2e2cfa248d68,https://biolit.fr/sorties/sortie-30444c98-94ef-4e38-8177-2e2cfa248d68/,Phil,,07/04/2015,11.0:55,12.000005,47.83770700000,-4.354272000000,,Pointe de la Torche - Plomeur - Finistère,57041,observation-30444c98-94ef-4e38-8177-2e2cfa248d68-2,https://biolit.fr/observations/observation-30444c98-94ef-4e38-8177-2e2cfa248d68-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_120434-scaled.jpg,,FALSE, +N1,61436,sortie-30444c98-94ef-4e38-8177-2e2cfa248d68,https://biolit.fr/sorties/sortie-30444c98-94ef-4e38-8177-2e2cfa248d68/,Phil,,07/04/2015,11.0:55,12.000005,47.83770700000,-4.354272000000,,Pointe de la Torche - Plomeur - Finistère,57043,observation-30444c98-94ef-4e38-8177-2e2cfa248d68-3,https://biolit.fr/observations/observation-30444c98-94ef-4e38-8177-2e2cfa248d68-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_120412-scaled.jpg,,FALSE, +N1,61436,sortie-30444c98-94ef-4e38-8177-2e2cfa248d68,https://biolit.fr/sorties/sortie-30444c98-94ef-4e38-8177-2e2cfa248d68/,Phil,,07/04/2015,11.0:55,12.000005,47.83770700000,-4.354272000000,,Pointe de la Torche - Plomeur - Finistère,57045,observation-30444c98-94ef-4e38-8177-2e2cfa248d68-4,https://biolit.fr/observations/observation-30444c98-94ef-4e38-8177-2e2cfa248d68-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150704_120300-scaled.jpg,,TRUE, +N1,61436,sortie-30444c98-94ef-4e38-8177-2e2cfa248d68,https://biolit.fr/sorties/sortie-30444c98-94ef-4e38-8177-2e2cfa248d68/,Phil,,07/04/2015,11.0:55,12.000005,47.83770700000,-4.354272000000,,Pointe de la Torche - Plomeur - Finistère,57047,observation-30444c98-94ef-4e38-8177-2e2cfa248d68-5,https://biolit.fr/observations/observation-30444c98-94ef-4e38-8177-2e2cfa248d68-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_115431-scaled.jpg,,FALSE, +N1,61437,sortie-c1d23a7d-d46d-464e-88f1-98bc179fee53,https://biolit.fr/sorties/sortie-c1d23a7d-d46d-464e-88f1-98bc179fee53/,Phil,,07/05/2015,17.0:15,17.0000000,48.277486000000,-4.619506000000,,Anse de Pen Hat - Camaret sur Mer - Finistère,57049,observation-c1d23a7d-d46d-464e-88f1-98bc179fee53,https://biolit.fr/observations/observation-c1d23a7d-d46d-464e-88f1-98bc179fee53/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04565.JPG,,FALSE, +N1,61437,sortie-c1d23a7d-d46d-464e-88f1-98bc179fee53,https://biolit.fr/sorties/sortie-c1d23a7d-d46d-464e-88f1-98bc179fee53/,Phil,,07/05/2015,17.0:15,17.0000000,48.277486000000,-4.619506000000,,Anse de Pen Hat - Camaret sur Mer - Finistère,57051,observation-c1d23a7d-d46d-464e-88f1-98bc179fee53-2,https://biolit.fr/observations/observation-c1d23a7d-d46d-464e-88f1-98bc179fee53-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04567.JPG,,FALSE, +N1,61438,sortie-7476782c-e8ed-4ee9-aede-5e07d10cae19,https://biolit.fr/sorties/sortie-7476782c-e8ed-4ee9-aede-5e07d10cae19/,Phil,,07/04/2015,11.0000000,11.0:55,47.83801100000,-4.352596000000,,Pointe de la Torche - Plomeur - Finistère,57053,observation-7476782c-e8ed-4ee9-aede-5e07d10cae19,https://biolit.fr/observations/observation-7476782c-e8ed-4ee9-aede-5e07d10cae19/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_115712-scaled.jpg,,FALSE, +N1,61438,sortie-7476782c-e8ed-4ee9-aede-5e07d10cae19,https://biolit.fr/sorties/sortie-7476782c-e8ed-4ee9-aede-5e07d10cae19/,Phil,,07/04/2015,11.0000000,11.0:55,47.83801100000,-4.352596000000,,Pointe de la Torche - Plomeur - Finistère,57055,observation-7476782c-e8ed-4ee9-aede-5e07d10cae19-2,https://biolit.fr/observations/observation-7476782c-e8ed-4ee9-aede-5e07d10cae19-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_115741.jpg,,FALSE, +N1,61438,sortie-7476782c-e8ed-4ee9-aede-5e07d10cae19,https://biolit.fr/sorties/sortie-7476782c-e8ed-4ee9-aede-5e07d10cae19/,Phil,,07/04/2015,11.0000000,11.0:55,47.83801100000,-4.352596000000,,Pointe de la Torche - Plomeur - Finistère,57057,observation-7476782c-e8ed-4ee9-aede-5e07d10cae19-3,https://biolit.fr/observations/observation-7476782c-e8ed-4ee9-aede-5e07d10cae19-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_115905-scaled.jpg,,FALSE, +N1,61438,sortie-7476782c-e8ed-4ee9-aede-5e07d10cae19,https://biolit.fr/sorties/sortie-7476782c-e8ed-4ee9-aede-5e07d10cae19/,Phil,,07/04/2015,11.0000000,11.0:55,47.83801100000,-4.352596000000,,Pointe de la Torche - Plomeur - Finistère,57059,observation-7476782c-e8ed-4ee9-aede-5e07d10cae19-4,https://biolit.fr/observations/observation-7476782c-e8ed-4ee9-aede-5e07d10cae19-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_115215-scaled.jpg,,FALSE, +N1,61438,sortie-7476782c-e8ed-4ee9-aede-5e07d10cae19,https://biolit.fr/sorties/sortie-7476782c-e8ed-4ee9-aede-5e07d10cae19/,Phil,,07/04/2015,11.0000000,11.0:55,47.83801100000,-4.352596000000,,Pointe de la Torche - Plomeur - Finistère,57061,observation-7476782c-e8ed-4ee9-aede-5e07d10cae19-5,https://biolit.fr/observations/observation-7476782c-e8ed-4ee9-aede-5e07d10cae19-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_115330-scaled.jpg,,FALSE, +N1,61439,sortie-313dc31a-8796-45ca-bbc7-d7fee8323caf,https://biolit.fr/sorties/sortie-313dc31a-8796-45ca-bbc7-d7fee8323caf/,Phil,,07/04/2015,11.0:45,11.0000000,47.838300000000,-4.350018000000,,Plage de la Torche - Plomeur - Finistère,57063,observation-313dc31a-8796-45ca-bbc7-d7fee8323caf,https://biolit.fr/observations/observation-313dc31a-8796-45ca-bbc7-d7fee8323caf/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/20150704_114443-scaled.jpg,,TRUE, +N1,61439,sortie-313dc31a-8796-45ca-bbc7-d7fee8323caf,https://biolit.fr/sorties/sortie-313dc31a-8796-45ca-bbc7-d7fee8323caf/,Phil,,07/04/2015,11.0:45,11.0000000,47.838300000000,-4.350018000000,,Plage de la Torche - Plomeur - Finistère,57065,observation-313dc31a-8796-45ca-bbc7-d7fee8323caf-2,https://biolit.fr/observations/observation-313dc31a-8796-45ca-bbc7-d7fee8323caf-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_114623.jpg,,FALSE, +N1,61439,sortie-313dc31a-8796-45ca-bbc7-d7fee8323caf,https://biolit.fr/sorties/sortie-313dc31a-8796-45ca-bbc7-d7fee8323caf/,Phil,,07/04/2015,11.0:45,11.0000000,47.838300000000,-4.350018000000,,Plage de la Torche - Plomeur - Finistère,57067,observation-313dc31a-8796-45ca-bbc7-d7fee8323caf-3,https://biolit.fr/observations/observation-313dc31a-8796-45ca-bbc7-d7fee8323caf-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_114739-scaled.jpg,,FALSE, +N1,61440,sortie-267c72b5-1ad4-44d3-8b85-1d3965e4c6db,https://biolit.fr/sorties/sortie-267c72b5-1ad4-44d3-8b85-1d3965e4c6db/,Phil,,07/04/2015,11.0:35,11.0:45,47.839619000000,-4.347450000000,,Plage de la Torche - Plomeur - Finistère,57069,observation-267c72b5-1ad4-44d3-8b85-1d3965e4c6db,https://biolit.fr/observations/observation-267c72b5-1ad4-44d3-8b85-1d3965e4c6db/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_121730-scaled.jpg,,FALSE, +N1,61440,sortie-267c72b5-1ad4-44d3-8b85-1d3965e4c6db,https://biolit.fr/sorties/sortie-267c72b5-1ad4-44d3-8b85-1d3965e4c6db/,Phil,,07/04/2015,11.0:35,11.0:45,47.839619000000,-4.347450000000,,Plage de la Torche - Plomeur - Finistère,57071,observation-267c72b5-1ad4-44d3-8b85-1d3965e4c6db-2,https://biolit.fr/observations/observation-267c72b5-1ad4-44d3-8b85-1d3965e4c6db-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_121835.jpg,,FALSE, +N1,61441,sortie-cd42391c-0137-4352-a953-da1f5d0349e2,https://biolit.fr/sorties/sortie-cd42391c-0137-4352-a953-da1f5d0349e2/,Phil,,07/03/2015,12.0000000,12.0000000,48.134014000000,-4.275015000000,,Tréfeuntec - Finistère,57073,observation-cd42391c-0137-4352-a953-da1f5d0349e2,https://biolit.fr/observations/observation-cd42391c-0137-4352-a953-da1f5d0349e2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/20150703_121916-scaled.jpg,,TRUE, +N1,61441,sortie-cd42391c-0137-4352-a953-da1f5d0349e2,https://biolit.fr/sorties/sortie-cd42391c-0137-4352-a953-da1f5d0349e2/,Phil,,07/03/2015,12.0000000,12.0000000,48.134014000000,-4.275015000000,,Tréfeuntec - Finistère,57075,observation-cd42391c-0137-4352-a953-da1f5d0349e2-2,https://biolit.fr/observations/observation-cd42391c-0137-4352-a953-da1f5d0349e2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150703_121243-scaled.jpg,,FALSE, +N1,61441,sortie-cd42391c-0137-4352-a953-da1f5d0349e2,https://biolit.fr/sorties/sortie-cd42391c-0137-4352-a953-da1f5d0349e2/,Phil,,07/03/2015,12.0000000,12.0000000,48.134014000000,-4.275015000000,,Tréfeuntec - Finistère,57077,observation-cd42391c-0137-4352-a953-da1f5d0349e2-3,https://biolit.fr/observations/observation-cd42391c-0137-4352-a953-da1f5d0349e2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150703_121113-scaled.jpg,,FALSE, +N1,61441,sortie-cd42391c-0137-4352-a953-da1f5d0349e2,https://biolit.fr/sorties/sortie-cd42391c-0137-4352-a953-da1f5d0349e2/,Phil,,07/03/2015,12.0000000,12.0000000,48.134014000000,-4.275015000000,,Tréfeuntec - Finistère,57079,observation-cd42391c-0137-4352-a953-da1f5d0349e2-4,https://biolit.fr/observations/observation-cd42391c-0137-4352-a953-da1f5d0349e2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150703_121059-scaled.jpg,,FALSE, +N1,61441,sortie-cd42391c-0137-4352-a953-da1f5d0349e2,https://biolit.fr/sorties/sortie-cd42391c-0137-4352-a953-da1f5d0349e2/,Phil,,07/03/2015,12.0000000,12.0000000,48.134014000000,-4.275015000000,,Tréfeuntec - Finistère,57081,observation-cd42391c-0137-4352-a953-da1f5d0349e2-5,https://biolit.fr/observations/observation-cd42391c-0137-4352-a953-da1f5d0349e2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150703_121400-scaled.jpg,,FALSE, +N1,61441,sortie-cd42391c-0137-4352-a953-da1f5d0349e2,https://biolit.fr/sorties/sortie-cd42391c-0137-4352-a953-da1f5d0349e2/,Phil,,07/03/2015,12.0000000,12.0000000,48.134014000000,-4.275015000000,,Tréfeuntec - Finistère,57083,observation-cd42391c-0137-4352-a953-da1f5d0349e2-6,https://biolit.fr/observations/observation-cd42391c-0137-4352-a953-da1f5d0349e2-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150703_120802-scaled.jpg,,FALSE, +N1,61442,sortie-3a3140f1-cafe-433f-b031-731f2203bb57,https://biolit.fr/sorties/sortie-3a3140f1-cafe-433f-b031-731f2203bb57/,Phil,,07/03/2015,12.000005,12.0000000,48.1383330000,-4.275864000000,,Sainte-Anne La Palud - Finistère,57085,observation-3a3140f1-cafe-433f-b031-731f2203bb57,https://biolit.fr/observations/observation-3a3140f1-cafe-433f-b031-731f2203bb57/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150703_122354-scaled.jpg,,FALSE, +N1,61442,sortie-3a3140f1-cafe-433f-b031-731f2203bb57,https://biolit.fr/sorties/sortie-3a3140f1-cafe-433f-b031-731f2203bb57/,Phil,,07/03/2015,12.000005,12.0000000,48.1383330000,-4.275864000000,,Sainte-Anne La Palud - Finistère,57087,observation-3a3140f1-cafe-433f-b031-731f2203bb57-2,https://biolit.fr/observations/observation-3a3140f1-cafe-433f-b031-731f2203bb57-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150703_122436-scaled.jpg,,FALSE, +N1,61442,sortie-3a3140f1-cafe-433f-b031-731f2203bb57,https://biolit.fr/sorties/sortie-3a3140f1-cafe-433f-b031-731f2203bb57/,Phil,,07/03/2015,12.000005,12.0000000,48.1383330000,-4.275864000000,,Sainte-Anne La Palud - Finistère,57089,observation-3a3140f1-cafe-433f-b031-731f2203bb57-3,https://biolit.fr/observations/observation-3a3140f1-cafe-433f-b031-731f2203bb57-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150703_120328.jpg,,FALSE, +N1,61443,sortie-be252c14-db2f-4d2d-929b-09965b30a4e1,https://biolit.fr/sorties/sortie-be252c14-db2f-4d2d-929b-09965b30a4e1/,Phil,,07/03/2015,11.0:35,12.0000000,48.134377000000,-4.274212000000,,Tréfeuntec - Finistère,57091,observation-be252c14-db2f-4d2d-929b-09965b30a4e1,https://biolit.fr/observations/observation-be252c14-db2f-4d2d-929b-09965b30a4e1/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150703_115107-scaled.jpg,,FALSE, +N1,61443,sortie-be252c14-db2f-4d2d-929b-09965b30a4e1,https://biolit.fr/sorties/sortie-be252c14-db2f-4d2d-929b-09965b30a4e1/,Phil,,07/03/2015,11.0:35,12.0000000,48.134377000000,-4.274212000000,,Tréfeuntec - Finistère,57093,observation-be252c14-db2f-4d2d-929b-09965b30a4e1-2,https://biolit.fr/observations/observation-be252c14-db2f-4d2d-929b-09965b30a4e1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150703_114921-scaled.jpg,,FALSE, +N1,61443,sortie-be252c14-db2f-4d2d-929b-09965b30a4e1,https://biolit.fr/sorties/sortie-be252c14-db2f-4d2d-929b-09965b30a4e1/,Phil,,07/03/2015,11.0:35,12.0000000,48.134377000000,-4.274212000000,,Tréfeuntec - Finistère,57095,observation-be252c14-db2f-4d2d-929b-09965b30a4e1-3,https://biolit.fr/observations/observation-be252c14-db2f-4d2d-929b-09965b30a4e1-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150703_113838-scaled.jpg,,FALSE, +N1,61443,sortie-be252c14-db2f-4d2d-929b-09965b30a4e1,https://biolit.fr/sorties/sortie-be252c14-db2f-4d2d-929b-09965b30a4e1/,Phil,,07/03/2015,11.0:35,12.0000000,48.134377000000,-4.274212000000,,Tréfeuntec - Finistère,57097,observation-be252c14-db2f-4d2d-929b-09965b30a4e1-4,https://biolit.fr/observations/observation-be252c14-db2f-4d2d-929b-09965b30a4e1-4/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20150703_114016-scaled.jpg,,TRUE, +N1,61443,sortie-be252c14-db2f-4d2d-929b-09965b30a4e1,https://biolit.fr/sorties/sortie-be252c14-db2f-4d2d-929b-09965b30a4e1/,Phil,,07/03/2015,11.0:35,12.0000000,48.134377000000,-4.274212000000,,Tréfeuntec - Finistère,57099,observation-be252c14-db2f-4d2d-929b-09965b30a4e1-5,https://biolit.fr/observations/observation-be252c14-db2f-4d2d-929b-09965b30a4e1-5/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20150703_120204.jpg,,TRUE, +N1,61444,sortie-b83ef83b-6c52-4534-9963-e1b05ecc5cdc,https://biolit.fr/sorties/sortie-b83ef83b-6c52-4534-9963-e1b05ecc5cdc/,Phil,,07/02/2015,14.0000000,15.0000000,47.864027000000,-4.081393000000,,Le Letty - Bénodet - Finistère,57101,observation-b83ef83b-6c52-4534-9963-e1b05ecc5cdc,https://biolit.fr/observations/observation-b83ef83b-6c52-4534-9963-e1b05ecc5cdc/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150702_145539-scaled.jpg,,FALSE, +N1,61444,sortie-b83ef83b-6c52-4534-9963-e1b05ecc5cdc,https://biolit.fr/sorties/sortie-b83ef83b-6c52-4534-9963-e1b05ecc5cdc/,Phil,,07/02/2015,14.0000000,15.0000000,47.864027000000,-4.081393000000,,Le Letty - Bénodet - Finistère,57103,observation-b83ef83b-6c52-4534-9963-e1b05ecc5cdc-2,https://biolit.fr/observations/observation-b83ef83b-6c52-4534-9963-e1b05ecc5cdc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150702_145558-scaled.jpg,,FALSE, +N1,61444,sortie-b83ef83b-6c52-4534-9963-e1b05ecc5cdc,https://biolit.fr/sorties/sortie-b83ef83b-6c52-4534-9963-e1b05ecc5cdc/,Phil,,07/02/2015,14.0000000,15.0000000,47.864027000000,-4.081393000000,,Le Letty - Bénodet - Finistère,57105,observation-b83ef83b-6c52-4534-9963-e1b05ecc5cdc-3,https://biolit.fr/observations/observation-b83ef83b-6c52-4534-9963-e1b05ecc5cdc-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150702_145700-scaled.jpg,,FALSE, +N1,61444,sortie-b83ef83b-6c52-4534-9963-e1b05ecc5cdc,https://biolit.fr/sorties/sortie-b83ef83b-6c52-4534-9963-e1b05ecc5cdc/,Phil,,07/02/2015,14.0000000,15.0000000,47.864027000000,-4.081393000000,,Le Letty - Bénodet - Finistère,57107,observation-b83ef83b-6c52-4534-9963-e1b05ecc5cdc-4,https://biolit.fr/observations/observation-b83ef83b-6c52-4534-9963-e1b05ecc5cdc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150702_145445-scaled.jpg,,FALSE, +N1,61445,sortie-f7a0ea5b-2c8b-4847-82b5-977c5894f850,https://biolit.fr/sorties/sortie-f7a0ea5b-2c8b-4847-82b5-977c5894f850/,Phil,,07/02/2015,15.0000000,15.0:15,47.864331000000,-4.087005000000,,Le Letty - Bénodet - Finistère,57109,observation-f7a0ea5b-2c8b-4847-82b5-977c5894f850,https://biolit.fr/observations/observation-f7a0ea5b-2c8b-4847-82b5-977c5894f850/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150702_150517-scaled.jpg,,FALSE, +N1,61445,sortie-f7a0ea5b-2c8b-4847-82b5-977c5894f850,https://biolit.fr/sorties/sortie-f7a0ea5b-2c8b-4847-82b5-977c5894f850/,Phil,,07/02/2015,15.0000000,15.0:15,47.864331000000,-4.087005000000,,Le Letty - Bénodet - Finistère,57111,observation-f7a0ea5b-2c8b-4847-82b5-977c5894f850-2,https://biolit.fr/observations/observation-f7a0ea5b-2c8b-4847-82b5-977c5894f850-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150702_150359-scaled.jpg,,TRUE, +N1,61445,sortie-f7a0ea5b-2c8b-4847-82b5-977c5894f850,https://biolit.fr/sorties/sortie-f7a0ea5b-2c8b-4847-82b5-977c5894f850/,Phil,,07/02/2015,15.0000000,15.0:15,47.864331000000,-4.087005000000,,Le Letty - Bénodet - Finistère,57113,observation-f7a0ea5b-2c8b-4847-82b5-977c5894f850-3,https://biolit.fr/observations/observation-f7a0ea5b-2c8b-4847-82b5-977c5894f850-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150702_150001-scaled.jpg,,FALSE, +N1,61445,sortie-f7a0ea5b-2c8b-4847-82b5-977c5894f850,https://biolit.fr/sorties/sortie-f7a0ea5b-2c8b-4847-82b5-977c5894f850/,Phil,,07/02/2015,15.0000000,15.0:15,47.864331000000,-4.087005000000,,Le Letty - Bénodet - Finistère,57115,observation-f7a0ea5b-2c8b-4847-82b5-977c5894f850-4,https://biolit.fr/observations/observation-f7a0ea5b-2c8b-4847-82b5-977c5894f850-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150702_145926-scaled.jpg,,FALSE, +N1,61445,sortie-f7a0ea5b-2c8b-4847-82b5-977c5894f850,https://biolit.fr/sorties/sortie-f7a0ea5b-2c8b-4847-82b5-977c5894f850/,Phil,,07/02/2015,15.0000000,15.0:15,47.864331000000,-4.087005000000,,Le Letty - Bénodet - Finistère,57117,observation-f7a0ea5b-2c8b-4847-82b5-977c5894f850-5,https://biolit.fr/observations/observation-f7a0ea5b-2c8b-4847-82b5-977c5894f850-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150702_145853-scaled.jpg,,FALSE, +N1,61446,sortie-378c3b65-3485-483f-91f2-d42af7603168,https://biolit.fr/sorties/sortie-378c3b65-3485-483f-91f2-d42af7603168/,Phil,,07/02/2015,14.0000000,14.0000000,47.862299000000,-4.100941000000,,Bénodet - Finistère,57119,observation-378c3b65-3485-483f-91f2-d42af7603168,https://biolit.fr/observations/observation-378c3b65-3485-483f-91f2-d42af7603168/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150702_141716-scaled.jpg,,FALSE, +N1,61446,sortie-378c3b65-3485-483f-91f2-d42af7603168,https://biolit.fr/sorties/sortie-378c3b65-3485-483f-91f2-d42af7603168/,Phil,,07/02/2015,14.0000000,14.0000000,47.862299000000,-4.100941000000,,Bénodet - Finistère,57121,observation-378c3b65-3485-483f-91f2-d42af7603168-2,https://biolit.fr/observations/observation-378c3b65-3485-483f-91f2-d42af7603168-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150702_141837-scaled.jpg,,FALSE, +N1,61446,sortie-378c3b65-3485-483f-91f2-d42af7603168,https://biolit.fr/sorties/sortie-378c3b65-3485-483f-91f2-d42af7603168/,Phil,,07/02/2015,14.0000000,14.0000000,47.862299000000,-4.100941000000,,Bénodet - Finistère,57123,observation-378c3b65-3485-483f-91f2-d42af7603168-3,https://biolit.fr/observations/observation-378c3b65-3485-483f-91f2-d42af7603168-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150702_141956-scaled.jpg,,FALSE, +N1,61446,sortie-378c3b65-3485-483f-91f2-d42af7603168,https://biolit.fr/sorties/sortie-378c3b65-3485-483f-91f2-d42af7603168/,Phil,,07/02/2015,14.0000000,14.0000000,47.862299000000,-4.100941000000,,Bénodet - Finistère,57125,observation-378c3b65-3485-483f-91f2-d42af7603168-4,https://biolit.fr/observations/observation-378c3b65-3485-483f-91f2-d42af7603168-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150702_142102-scaled.jpg,,FALSE, +N1,61446,sortie-378c3b65-3485-483f-91f2-d42af7603168,https://biolit.fr/sorties/sortie-378c3b65-3485-483f-91f2-d42af7603168/,Phil,,07/02/2015,14.0000000,14.0000000,47.862299000000,-4.100941000000,,Bénodet - Finistère,57127,observation-378c3b65-3485-483f-91f2-d42af7603168-5,https://biolit.fr/observations/observation-378c3b65-3485-483f-91f2-d42af7603168-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150702_142543-scaled.jpg,,FALSE, +N1,61446,sortie-378c3b65-3485-483f-91f2-d42af7603168,https://biolit.fr/sorties/sortie-378c3b65-3485-483f-91f2-d42af7603168/,Phil,,07/02/2015,14.0000000,14.0000000,47.862299000000,-4.100941000000,,Bénodet - Finistère,57129,observation-378c3b65-3485-483f-91f2-d42af7603168-6,https://biolit.fr/observations/observation-378c3b65-3485-483f-91f2-d42af7603168-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150702_142742-scaled.jpg,,FALSE, +N1,61446,sortie-378c3b65-3485-483f-91f2-d42af7603168,https://biolit.fr/sorties/sortie-378c3b65-3485-483f-91f2-d42af7603168/,Phil,,07/02/2015,14.0000000,14.0000000,47.862299000000,-4.100941000000,,Bénodet - Finistère,57131,observation-378c3b65-3485-483f-91f2-d42af7603168-7,https://biolit.fr/observations/observation-378c3b65-3485-483f-91f2-d42af7603168-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150702_143705-scaled.jpg,,FALSE, +N1,61446,sortie-378c3b65-3485-483f-91f2-d42af7603168,https://biolit.fr/sorties/sortie-378c3b65-3485-483f-91f2-d42af7603168/,Phil,,07/02/2015,14.0000000,14.0000000,47.862299000000,-4.100941000000,,Bénodet - Finistère,57133,observation-378c3b65-3485-483f-91f2-d42af7603168-8,https://biolit.fr/observations/observation-378c3b65-3485-483f-91f2-d42af7603168-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150702_143126-scaled.jpg,,FALSE, +N1,61447,sortie-20a433a0-1700-4dc5-bd95-4d081019713b,https://biolit.fr/sorties/sortie-20a433a0-1700-4dc5-bd95-4d081019713b/,Emmanuelle,,07/01/2015,11.0:45,12.0:45,47.86094300000,-4.092896000000,,Plage de Bénodet (Finistère),57135,observation-20a433a0-1700-4dc5-bd95-4d081019713b,https://biolit.fr/observations/observation-20a433a0-1700-4dc5-bd95-4d081019713b/,,,,https://biolit.fr/wp-content/uploads/2023/07/em-scaled.jpg,,FALSE, +N1,61447,sortie-20a433a0-1700-4dc5-bd95-4d081019713b,https://biolit.fr/sorties/sortie-20a433a0-1700-4dc5-bd95-4d081019713b/,Emmanuelle,,07/01/2015,11.0:45,12.0:45,47.86094300000,-4.092896000000,,Plage de Bénodet (Finistère),57137,observation-20a433a0-1700-4dc5-bd95-4d081019713b-2,https://biolit.fr/observations/observation-20a433a0-1700-4dc5-bd95-4d081019713b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/z-scaled.jpg,,FALSE, +N1,61448,sortie-a549f57d-de00-490c-a0ad-f819e03ff42f,https://biolit.fr/sorties/sortie-a549f57d-de00-490c-a0ad-f819e03ff42f/,Phil,,07/01/2015,12.0000000,12.0:35,47.784947000000,-3.67070800000,,Brigneau - Moelan sur Mer - Finistère,57139,observation-a549f57d-de00-490c-a0ad-f819e03ff42f,https://biolit.fr/observations/observation-a549f57d-de00-490c-a0ad-f819e03ff42f/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150701_123000-scaled.jpg,,FALSE, +N1,61448,sortie-a549f57d-de00-490c-a0ad-f819e03ff42f,https://biolit.fr/sorties/sortie-a549f57d-de00-490c-a0ad-f819e03ff42f/,Phil,,07/01/2015,12.0000000,12.0:35,47.784947000000,-3.67070800000,,Brigneau - Moelan sur Mer - Finistère,57141,observation-a549f57d-de00-490c-a0ad-f819e03ff42f-2,https://biolit.fr/observations/observation-a549f57d-de00-490c-a0ad-f819e03ff42f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150701_123051-scaled.jpg,,FALSE, +N1,61448,sortie-a549f57d-de00-490c-a0ad-f819e03ff42f,https://biolit.fr/sorties/sortie-a549f57d-de00-490c-a0ad-f819e03ff42f/,Phil,,07/01/2015,12.0000000,12.0:35,47.784947000000,-3.67070800000,,Brigneau - Moelan sur Mer - Finistère,57143,observation-a549f57d-de00-490c-a0ad-f819e03ff42f-3,https://biolit.fr/observations/observation-a549f57d-de00-490c-a0ad-f819e03ff42f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150701_123206-scaled.jpg,,FALSE, +N1,61449,sortie-d161f167-d1f7-432a-b9a2-5981f44a9600,https://biolit.fr/sorties/sortie-d161f167-d1f7-432a-b9a2-5981f44a9600/,Phil,,07/01/2015,12.0:25,12.0000000,47.784807000000,-3.670606000000,,Brigneau - Moëlan sur Mer - Finistère,57145,observation-d161f167-d1f7-432a-b9a2-5981f44a9600,https://biolit.fr/observations/observation-d161f167-d1f7-432a-b9a2-5981f44a9600/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150701_122905-scaled.jpg,,FALSE, +N1,61449,sortie-d161f167-d1f7-432a-b9a2-5981f44a9600,https://biolit.fr/sorties/sortie-d161f167-d1f7-432a-b9a2-5981f44a9600/,Phil,,07/01/2015,12.0:25,12.0000000,47.784807000000,-3.670606000000,,Brigneau - Moëlan sur Mer - Finistère,57147,observation-d161f167-d1f7-432a-b9a2-5981f44a9600-2,https://biolit.fr/observations/observation-d161f167-d1f7-432a-b9a2-5981f44a9600-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150701_122818-scaled.jpg,,FALSE, +N1,61449,sortie-d161f167-d1f7-432a-b9a2-5981f44a9600,https://biolit.fr/sorties/sortie-d161f167-d1f7-432a-b9a2-5981f44a9600/,Phil,,07/01/2015,12.0:25,12.0000000,47.784807000000,-3.670606000000,,Brigneau - Moëlan sur Mer - Finistère,57149,observation-d161f167-d1f7-432a-b9a2-5981f44a9600-3,https://biolit.fr/observations/observation-d161f167-d1f7-432a-b9a2-5981f44a9600-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150701_122753-scaled.jpg,,FALSE, +N1,61450,sortie-a661d673-a4a6-4671-b091-d52570db2be6,https://biolit.fr/sorties/sortie-a661d673-a4a6-4671-b091-d52570db2be6/,Phil,,07/01/2015,12.000005,12.0:25,47.788556000000,-3.668205000000,,Brigneau - Moëlan su Mer - Finistère,57151,observation-a661d673-a4a6-4671-b091-d52570db2be6,https://biolit.fr/observations/observation-a661d673-a4a6-4671-b091-d52570db2be6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150701_120747-scaled.jpg,,FALSE, +N1,61450,sortie-a661d673-a4a6-4671-b091-d52570db2be6,https://biolit.fr/sorties/sortie-a661d673-a4a6-4671-b091-d52570db2be6/,Phil,,07/01/2015,12.000005,12.0:25,47.788556000000,-3.668205000000,,Brigneau - Moëlan su Mer - Finistère,57153,observation-a661d673-a4a6-4671-b091-d52570db2be6-2,https://biolit.fr/observations/observation-a661d673-a4a6-4671-b091-d52570db2be6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150701_120453-scaled.jpg,,FALSE, +N1,61450,sortie-a661d673-a4a6-4671-b091-d52570db2be6,https://biolit.fr/sorties/sortie-a661d673-a4a6-4671-b091-d52570db2be6/,Phil,,07/01/2015,12.000005,12.0:25,47.788556000000,-3.668205000000,,Brigneau - Moëlan su Mer - Finistère,57155,observation-a661d673-a4a6-4671-b091-d52570db2be6-3,https://biolit.fr/observations/observation-a661d673-a4a6-4671-b091-d52570db2be6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150701_120541-scaled.jpg,,FALSE, +N1,61450,sortie-a661d673-a4a6-4671-b091-d52570db2be6,https://biolit.fr/sorties/sortie-a661d673-a4a6-4671-b091-d52570db2be6/,Phil,,07/01/2015,12.000005,12.0:25,47.788556000000,-3.668205000000,,Brigneau - Moëlan su Mer - Finistère,57157,observation-a661d673-a4a6-4671-b091-d52570db2be6-4,https://biolit.fr/observations/observation-a661d673-a4a6-4671-b091-d52570db2be6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150701_120934-scaled.jpg,,FALSE, +N1,61451,sortie-de78e790-b2b0-47bd-8d0b-8719765aa90f,https://biolit.fr/sorties/sortie-de78e790-b2b0-47bd-8d0b-8719765aa90f/,Phil,,07/01/2015,11.0000000,12.0000000,47.789621000000,-3.668859000000,,Brigneau - Moëlan sur Mer - Finistère,57159,observation-de78e790-b2b0-47bd-8d0b-8719765aa90f,https://biolit.fr/observations/observation-de78e790-b2b0-47bd-8d0b-8719765aa90f/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150701_115652-scaled.jpg,,FALSE, +N1,61451,sortie-de78e790-b2b0-47bd-8d0b-8719765aa90f,https://biolit.fr/sorties/sortie-de78e790-b2b0-47bd-8d0b-8719765aa90f/,Phil,,07/01/2015,11.0000000,12.0000000,47.789621000000,-3.668859000000,,Brigneau - Moëlan sur Mer - Finistère,57161,observation-de78e790-b2b0-47bd-8d0b-8719765aa90f-2,https://biolit.fr/observations/observation-de78e790-b2b0-47bd-8d0b-8719765aa90f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150701_115401-scaled.jpg,,FALSE, +N1,61451,sortie-de78e790-b2b0-47bd-8d0b-8719765aa90f,https://biolit.fr/sorties/sortie-de78e790-b2b0-47bd-8d0b-8719765aa90f/,Phil,,07/01/2015,11.0000000,12.0000000,47.789621000000,-3.668859000000,,Brigneau - Moëlan sur Mer - Finistère,57163,observation-de78e790-b2b0-47bd-8d0b-8719765aa90f-3,https://biolit.fr/observations/observation-de78e790-b2b0-47bd-8d0b-8719765aa90f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150701_115703-scaled.jpg,,FALSE, +N1,61451,sortie-de78e790-b2b0-47bd-8d0b-8719765aa90f,https://biolit.fr/sorties/sortie-de78e790-b2b0-47bd-8d0b-8719765aa90f/,Phil,,07/01/2015,11.0000000,12.0000000,47.789621000000,-3.668859000000,,Brigneau - Moëlan sur Mer - Finistère,57165,observation-de78e790-b2b0-47bd-8d0b-8719765aa90f-4,https://biolit.fr/observations/observation-de78e790-b2b0-47bd-8d0b-8719765aa90f-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150701_115800-scaled.jpg,,FALSE, +N1,61452,sortie-6c8ba18e-368e-4b2b-840b-6cd15e24cf03,https://biolit.fr/sorties/sortie-6c8ba18e-368e-4b2b-840b-6cd15e24cf03/,Phil,,6/30/2015 0:00,16.0000000,16.0:15,47.861575000000,-4.112461000000,,Sainte-Marine - Finistère,57167,observation-6c8ba18e-368e-4b2b-840b-6cd15e24cf03,https://biolit.fr/observations/observation-6c8ba18e-368e-4b2b-840b-6cd15e24cf03/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150630_160906-scaled.jpg,,FALSE, +N1,61453,sortie-863b6052-e70e-40ca-bd5c-26178cc7d758,https://biolit.fr/sorties/sortie-863b6052-e70e-40ca-bd5c-26178cc7d758/,Emmanuelle,,6/30/2015 0:00,13.0000000,22.0:25,47.863419000000,-4.126327000000,,Plage de sainte Marine,57169,observation-863b6052-e70e-40ca-bd5c-26178cc7d758,https://biolit.fr/observations/observation-863b6052-e70e-40ca-bd5c-26178cc7d758/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150630_135323-scaled.jpg,,FALSE, +N1,61454,sortie-3142e4b0-9504-4e15-a565-af2841becdd4,https://biolit.fr/sorties/sortie-3142e4b0-9504-4e15-a565-af2841becdd4/,Emmanuelle,,07/01/2015,11.0000000,14.0000000,47.861404000000,-4.094270000000,,Plage de Bénodet,57171,observation-3142e4b0-9504-4e15-a565-af2841becdd4,https://biolit.fr/observations/observation-3142e4b0-9504-4e15-a565-af2841becdd4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150701_121924-scaled.jpg,,FALSE, +N1,61454,sortie-3142e4b0-9504-4e15-a565-af2841becdd4,https://biolit.fr/sorties/sortie-3142e4b0-9504-4e15-a565-af2841becdd4/,Emmanuelle,,07/01/2015,11.0000000,14.0000000,47.861404000000,-4.094270000000,,Plage de Bénodet,57173,observation-3142e4b0-9504-4e15-a565-af2841becdd4-2,https://biolit.fr/observations/observation-3142e4b0-9504-4e15-a565-af2841becdd4-2/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20150701_121742-scaled.jpg,,TRUE, +N1,61454,sortie-3142e4b0-9504-4e15-a565-af2841becdd4,https://biolit.fr/sorties/sortie-3142e4b0-9504-4e15-a565-af2841becdd4/,Emmanuelle,,07/01/2015,11.0000000,14.0000000,47.861404000000,-4.094270000000,,Plage de Bénodet,57175,observation-3142e4b0-9504-4e15-a565-af2841becdd4-3,https://biolit.fr/observations/observation-3142e4b0-9504-4e15-a565-af2841becdd4-3/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20150701_121758-scaled.jpg,,TRUE, +N1,61454,sortie-3142e4b0-9504-4e15-a565-af2841becdd4,https://biolit.fr/sorties/sortie-3142e4b0-9504-4e15-a565-af2841becdd4/,Emmanuelle,,07/01/2015,11.0000000,14.0000000,47.861404000000,-4.094270000000,,Plage de Bénodet,57177,observation-3142e4b0-9504-4e15-a565-af2841becdd4-4,https://biolit.fr/observations/observation-3142e4b0-9504-4e15-a565-af2841becdd4-4/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20150701_121805-scaled.jpg,,TRUE, +N1,61454,sortie-3142e4b0-9504-4e15-a565-af2841becdd4,https://biolit.fr/sorties/sortie-3142e4b0-9504-4e15-a565-af2841becdd4/,Emmanuelle,,07/01/2015,11.0000000,14.0000000,47.861404000000,-4.094270000000,,Plage de Bénodet,57179,observation-3142e4b0-9504-4e15-a565-af2841becdd4-5,https://biolit.fr/observations/observation-3142e4b0-9504-4e15-a565-af2841becdd4-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/1-scaled.jpg,,TRUE,non-identifiable +N1,61455,sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3,https://biolit.fr/sorties/sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2015,14.0000000,16.0000000,43.5209830000,7.031721000000,,"Pointe du Batéguier, côté ouest, île Sainte-Marguerite",57180,observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3,https://biolit.fr/observations/observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/Actinie rouge(2)-scaled.jpg,,TRUE, +N1,61455,sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3,https://biolit.fr/sorties/sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2015,14.0000000,16.0000000,43.5209830000,7.031721000000,,"Pointe du Batéguier, côté ouest, île Sainte-Marguerite",57182,observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-2,https://biolit.fr/observations/observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Copie de Bouche de sang (2)-scaled.jpg,,FALSE, +N1,61455,sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3,https://biolit.fr/sorties/sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2015,14.0000000,16.0000000,43.5209830000,7.031721000000,,"Pointe du Batéguier, côté ouest, île Sainte-Marguerite",57184,observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-3,https://biolit.fr/observations/observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-3/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/crevette(1)-scaled.jpg,,TRUE, +N1,61455,sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3,https://biolit.fr/sorties/sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2015,14.0000000,16.0000000,43.5209830000,7.031721000000,,"Pointe du Batéguier, côté ouest, île Sainte-Marguerite",57186,observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-4,https://biolit.fr/observations/observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pontes de bouches de sang (1)-scaled.jpg,,FALSE, +N1,61455,sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3,https://biolit.fr/sorties/sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2015,14.0000000,16.0000000,43.5209830000,7.031721000000,,"Pointe du Batéguier, côté ouest, île Sainte-Marguerite",57188,observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-5,https://biolit.fr/observations/observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ponte poissons (1)-scaled.jpg,,FALSE, +N1,61455,sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3,https://biolit.fr/sorties/sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2015,14.0000000,16.0000000,43.5209830000,7.031721000000,,"Pointe du Batéguier, côté ouest, île Sainte-Marguerite",57190,observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-6,https://biolit.fr/observations/observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle bleue (1)-scaled.jpg,,FALSE, +N1,61455,sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3,https://biolit.fr/sorties/sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2015,14.0000000,16.0000000,43.5209830000,7.031721000000,,"Pointe du Batéguier, côté ouest, île Sainte-Marguerite",57192,observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-7,https://biolit.fr/observations/observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-7/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Oursin violet (1)-scaled.jpg,,TRUE, +N1,61455,sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3,https://biolit.fr/sorties/sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2015,14.0000000,16.0000000,43.5209830000,7.031721000000,,"Pointe du Batéguier, côté ouest, île Sainte-Marguerite",57194,observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-8,https://biolit.fr/observations/observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Holothurie(1)-scaled.jpg,,FALSE, +N1,61455,sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3,https://biolit.fr/sorties/sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2015,14.0000000,16.0000000,43.5209830000,7.031721000000,,"Pointe du Batéguier, côté ouest, île Sainte-Marguerite",57196,observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-9,https://biolit.fr/observations/observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Herbier de posidonie(1)-scaled.jpg,,FALSE, +N1,61455,sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3,https://biolit.fr/sorties/sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2015,14.0000000,16.0000000,43.5209830000,7.031721000000,,"Pointe du Batéguier, côté ouest, île Sainte-Marguerite",57198,observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-10,https://biolit.fr/observations/observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-10/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/2023/07/Etoile épineuse (1)-scaled.jpg,,TRUE, +N1,61455,sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3,https://biolit.fr/sorties/sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2015,14.0000000,16.0000000,43.5209830000,7.031721000000,,"Pointe du Batéguier, côté ouest, île Sainte-Marguerite",57200,observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-11,https://biolit.fr/observations/observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Eponges(1)-scaled.jpg,,FALSE, +N1,61456,sortie-ca6c578e-8a75-4ea4-be44-5953c7d65473,https://biolit.fr/sorties/sortie-ca6c578e-8a75-4ea4-be44-5953c7d65473/,Phil,,6/19/2015 0:00,10.0:25,10.0:35,47.871101000000,-3.930932000000,,Concarneau -Finistère,57202,observation-ca6c578e-8a75-4ea4-be44-5953c7d65473,https://biolit.fr/observations/observation-ca6c578e-8a75-4ea4-be44-5953c7d65473/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150619_102614-scaled.jpg,,FALSE, +N1,61456,sortie-ca6c578e-8a75-4ea4-be44-5953c7d65473,https://biolit.fr/sorties/sortie-ca6c578e-8a75-4ea4-be44-5953c7d65473/,Phil,,6/19/2015 0:00,10.0:25,10.0:35,47.871101000000,-3.930932000000,,Concarneau -Finistère,57204,observation-ca6c578e-8a75-4ea4-be44-5953c7d65473-2,https://biolit.fr/observations/observation-ca6c578e-8a75-4ea4-be44-5953c7d65473-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150619_102746-scaled.jpg,,FALSE, +N1,61456,sortie-ca6c578e-8a75-4ea4-be44-5953c7d65473,https://biolit.fr/sorties/sortie-ca6c578e-8a75-4ea4-be44-5953c7d65473/,Phil,,6/19/2015 0:00,10.0:25,10.0:35,47.871101000000,-3.930932000000,,Concarneau -Finistère,57206,observation-ca6c578e-8a75-4ea4-be44-5953c7d65473-3,https://biolit.fr/observations/observation-ca6c578e-8a75-4ea4-be44-5953c7d65473-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150619_102926-scaled.jpg,,FALSE, +N1,61456,sortie-ca6c578e-8a75-4ea4-be44-5953c7d65473,https://biolit.fr/sorties/sortie-ca6c578e-8a75-4ea4-be44-5953c7d65473/,Phil,,6/19/2015 0:00,10.0:25,10.0:35,47.871101000000,-3.930932000000,,Concarneau -Finistère,57208,observation-ca6c578e-8a75-4ea4-be44-5953c7d65473-4,https://biolit.fr/observations/observation-ca6c578e-8a75-4ea4-be44-5953c7d65473-4/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20150619_103239-scaled.jpg,,TRUE,Identifiable +N1,61456,sortie-ca6c578e-8a75-4ea4-be44-5953c7d65473,https://biolit.fr/sorties/sortie-ca6c578e-8a75-4ea4-be44-5953c7d65473/,Phil,,6/19/2015 0:00,10.0:25,10.0:35,47.871101000000,-3.930932000000,,Concarneau -Finistère,57210,observation-ca6c578e-8a75-4ea4-be44-5953c7d65473-5,https://biolit.fr/observations/observation-ca6c578e-8a75-4ea4-be44-5953c7d65473-5/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20150619_103249-scaled.jpg,,TRUE,Identifiable +N1,61457,sortie-ac92ad88-b172-4b9d-8334-b73ff827e711,https://biolit.fr/sorties/sortie-ac92ad88-b172-4b9d-8334-b73ff827e711/,Phil,,6/19/2015 0:00,10.000005,10.0000000,47.871986000000,-3.932082000000,,Concarneau - Finistère,57212,observation-ac92ad88-b172-4b9d-8334-b73ff827e711,https://biolit.fr/observations/observation-ac92ad88-b172-4b9d-8334-b73ff827e711/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20150619_101221-scaled.jpg,,TRUE,Identifiable +N1,61457,sortie-ac92ad88-b172-4b9d-8334-b73ff827e711,https://biolit.fr/sorties/sortie-ac92ad88-b172-4b9d-8334-b73ff827e711/,Phil,,6/19/2015 0:00,10.000005,10.0000000,47.871986000000,-3.932082000000,,Concarneau - Finistère,57214,observation-ac92ad88-b172-4b9d-8334-b73ff827e711-2,https://biolit.fr/observations/observation-ac92ad88-b172-4b9d-8334-b73ff827e711-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20150619_101240-scaled.jpg,,TRUE,Identifiable +N1,61457,sortie-ac92ad88-b172-4b9d-8334-b73ff827e711,https://biolit.fr/sorties/sortie-ac92ad88-b172-4b9d-8334-b73ff827e711/,Phil,,6/19/2015 0:00,10.000005,10.0000000,47.871986000000,-3.932082000000,,Concarneau - Finistère,57216,observation-ac92ad88-b172-4b9d-8334-b73ff827e711-3,https://biolit.fr/observations/observation-ac92ad88-b172-4b9d-8334-b73ff827e711-3/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20150619_101252-scaled.jpg,,TRUE,Identifiable +N1,61457,sortie-ac92ad88-b172-4b9d-8334-b73ff827e711,https://biolit.fr/sorties/sortie-ac92ad88-b172-4b9d-8334-b73ff827e711/,Phil,,6/19/2015 0:00,10.000005,10.0000000,47.871986000000,-3.932082000000,,Concarneau - Finistère,57218,observation-ac92ad88-b172-4b9d-8334-b73ff827e711-4,https://biolit.fr/observations/observation-ac92ad88-b172-4b9d-8334-b73ff827e711-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150619_101720-scaled.jpg,,FALSE, +N1,61457,sortie-ac92ad88-b172-4b9d-8334-b73ff827e711,https://biolit.fr/sorties/sortie-ac92ad88-b172-4b9d-8334-b73ff827e711/,Phil,,6/19/2015 0:00,10.000005,10.0000000,47.871986000000,-3.932082000000,,Concarneau - Finistère,57220,observation-ac92ad88-b172-4b9d-8334-b73ff827e711-5,https://biolit.fr/observations/observation-ac92ad88-b172-4b9d-8334-b73ff827e711-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150619_102019-scaled.jpg,,FALSE, +N1,61458,sortie-5baf1133-8d69-4c52-b3e9-6ff7939076b3,https://biolit.fr/sorties/sortie-5baf1133-8d69-4c52-b3e9-6ff7939076b3/,Phil,,6/19/2015 0:00,10.0000000,10.000005,47.872711000000,-3.931254000000,,Concarneau - Finistère,57222,observation-5baf1133-8d69-4c52-b3e9-6ff7939076b3,https://biolit.fr/observations/observation-5baf1133-8d69-4c52-b3e9-6ff7939076b3/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/20150619_100337-scaled.jpg,,TRUE, +N1,61458,sortie-5baf1133-8d69-4c52-b3e9-6ff7939076b3,https://biolit.fr/sorties/sortie-5baf1133-8d69-4c52-b3e9-6ff7939076b3/,Phil,,6/19/2015 0:00,10.0000000,10.000005,47.872711000000,-3.931254000000,,Concarneau - Finistère,57224,observation-5baf1133-8d69-4c52-b3e9-6ff7939076b3-2,https://biolit.fr/observations/observation-5baf1133-8d69-4c52-b3e9-6ff7939076b3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150619_100605-scaled.jpg,,FALSE, +N1,61459,sortie-34b82af3-5402-458f-ac7d-bf0cdceddfa0,https://biolit.fr/sorties/sortie-34b82af3-5402-458f-ac7d-bf0cdceddfa0/,Phil,,6/17/2015 0:00,11.0000000,11.0000000,48.079115000000,-4.553504000000,,Pors Lesven - Beuzec Cap Sizun - Finistère,57226,observation-34b82af3-5402-458f-ac7d-bf0cdceddfa0,https://biolit.fr/observations/observation-34b82af3-5402-458f-ac7d-bf0cdceddfa0/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/12.jpg,,TRUE, +N1,61459,sortie-34b82af3-5402-458f-ac7d-bf0cdceddfa0,https://biolit.fr/sorties/sortie-34b82af3-5402-458f-ac7d-bf0cdceddfa0/,Phil,,6/17/2015 0:00,11.0000000,11.0000000,48.079115000000,-4.553504000000,,Pors Lesven - Beuzec Cap Sizun - Finistère,57228,observation-34b82af3-5402-458f-ac7d-bf0cdceddfa0-2,https://biolit.fr/observations/observation-34b82af3-5402-458f-ac7d-bf0cdceddfa0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/5-scaled.jpg,,FALSE, +N1,61459,sortie-34b82af3-5402-458f-ac7d-bf0cdceddfa0,https://biolit.fr/sorties/sortie-34b82af3-5402-458f-ac7d-bf0cdceddfa0/,Phil,,6/17/2015 0:00,11.0000000,11.0000000,48.079115000000,-4.553504000000,,Pors Lesven - Beuzec Cap Sizun - Finistère,57229,observation-34b82af3-5402-458f-ac7d-bf0cdceddfa0-3,https://biolit.fr/observations/observation-34b82af3-5402-458f-ac7d-bf0cdceddfa0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/8-scaled.jpg,,FALSE, +N1,61459,sortie-34b82af3-5402-458f-ac7d-bf0cdceddfa0,https://biolit.fr/sorties/sortie-34b82af3-5402-458f-ac7d-bf0cdceddfa0/,Phil,,6/17/2015 0:00,11.0000000,11.0000000,48.079115000000,-4.553504000000,,Pors Lesven - Beuzec Cap Sizun - Finistère,57230,observation-34b82af3-5402-458f-ac7d-bf0cdceddfa0-4,https://biolit.fr/observations/observation-34b82af3-5402-458f-ac7d-bf0cdceddfa0-4/,Spondyliosoma cantharus,Dorade grise,,https://biolit.fr/wp-content/uploads/2023/07/9-scaled.jpg,,TRUE, +N1,61460,sortie-be6c9daf-d025-4294-8143-d634c5cf9150,https://biolit.fr/sorties/sortie-be6c9daf-d025-4294-8143-d634c5cf9150/,Phil,,6/21/2015 0:00,9.0:45,9.0:55,47.856355000000,-3.905806000000,,Plage du Cabellou - Concarneau - Finistère,57231,observation-be6c9daf-d025-4294-8143-d634c5cf9150,https://biolit.fr/observations/observation-be6c9daf-d025-4294-8143-d634c5cf9150/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150621_094959-scaled.jpg,,FALSE, +N1,61460,sortie-be6c9daf-d025-4294-8143-d634c5cf9150,https://biolit.fr/sorties/sortie-be6c9daf-d025-4294-8143-d634c5cf9150/,Phil,,6/21/2015 0:00,9.0:45,9.0:55,47.856355000000,-3.905806000000,,Plage du Cabellou - Concarneau - Finistère,57233,observation-be6c9daf-d025-4294-8143-d634c5cf9150-2,https://biolit.fr/observations/observation-be6c9daf-d025-4294-8143-d634c5cf9150-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150621_094747-scaled.jpg,,FALSE, +N1,61460,sortie-be6c9daf-d025-4294-8143-d634c5cf9150,https://biolit.fr/sorties/sortie-be6c9daf-d025-4294-8143-d634c5cf9150/,Phil,,6/21/2015 0:00,9.0:45,9.0:55,47.856355000000,-3.905806000000,,Plage du Cabellou - Concarneau - Finistère,57235,observation-be6c9daf-d025-4294-8143-d634c5cf9150-3,https://biolit.fr/observations/observation-be6c9daf-d025-4294-8143-d634c5cf9150-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150621_094805-scaled.jpg,,FALSE, +N1,61460,sortie-be6c9daf-d025-4294-8143-d634c5cf9150,https://biolit.fr/sorties/sortie-be6c9daf-d025-4294-8143-d634c5cf9150/,Phil,,6/21/2015 0:00,9.0:45,9.0:55,47.856355000000,-3.905806000000,,Plage du Cabellou - Concarneau - Finistère,57237,observation-be6c9daf-d025-4294-8143-d634c5cf9150-4,https://biolit.fr/observations/observation-be6c9daf-d025-4294-8143-d634c5cf9150-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150621_094809-scaled.jpg,,FALSE, +N1,61461,sortie-d89e3031-f71a-452c-a0de-4fea2daefcb6,https://biolit.fr/sorties/sortie-d89e3031-f71a-452c-a0de-4fea2daefcb6/,Phil,,6/15/2015 0:00,16.0000000,16.0000000,48.146956000000,-4.273073000000,,Plage de Ty Anquer - Ploeven - Finistère,57239,observation-d89e3031-f71a-452c-a0de-4fea2daefcb6,https://biolit.fr/observations/observation-d89e3031-f71a-452c-a0de-4fea2daefcb6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04511.JPG,,FALSE, +N1,61461,sortie-d89e3031-f71a-452c-a0de-4fea2daefcb6,https://biolit.fr/sorties/sortie-d89e3031-f71a-452c-a0de-4fea2daefcb6/,Phil,,6/15/2015 0:00,16.0000000,16.0000000,48.146956000000,-4.273073000000,,Plage de Ty Anquer - Ploeven - Finistère,57241,observation-d89e3031-f71a-452c-a0de-4fea2daefcb6-2,https://biolit.fr/observations/observation-d89e3031-f71a-452c-a0de-4fea2daefcb6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04512.JPG,,FALSE, +N1,61461,sortie-d89e3031-f71a-452c-a0de-4fea2daefcb6,https://biolit.fr/sorties/sortie-d89e3031-f71a-452c-a0de-4fea2daefcb6/,Phil,,6/15/2015 0:00,16.0000000,16.0000000,48.146956000000,-4.273073000000,,Plage de Ty Anquer - Ploeven - Finistère,57243,observation-d89e3031-f71a-452c-a0de-4fea2daefcb6-3,https://biolit.fr/observations/observation-d89e3031-f71a-452c-a0de-4fea2daefcb6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04514.JPG,,FALSE, +N1,61461,sortie-d89e3031-f71a-452c-a0de-4fea2daefcb6,https://biolit.fr/sorties/sortie-d89e3031-f71a-452c-a0de-4fea2daefcb6/,Phil,,6/15/2015 0:00,16.0000000,16.0000000,48.146956000000,-4.273073000000,,Plage de Ty Anquer - Ploeven - Finistère,57245,observation-d89e3031-f71a-452c-a0de-4fea2daefcb6-4,https://biolit.fr/observations/observation-d89e3031-f71a-452c-a0de-4fea2daefcb6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04542.JPG,,FALSE, +N1,61461,sortie-d89e3031-f71a-452c-a0de-4fea2daefcb6,https://biolit.fr/sorties/sortie-d89e3031-f71a-452c-a0de-4fea2daefcb6/,Phil,,6/15/2015 0:00,16.0000000,16.0000000,48.146956000000,-4.273073000000,,Plage de Ty Anquer - Ploeven - Finistère,57247,observation-d89e3031-f71a-452c-a0de-4fea2daefcb6-5,https://biolit.fr/observations/observation-d89e3031-f71a-452c-a0de-4fea2daefcb6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04544.JPG,,FALSE, +N1,61461,sortie-d89e3031-f71a-452c-a0de-4fea2daefcb6,https://biolit.fr/sorties/sortie-d89e3031-f71a-452c-a0de-4fea2daefcb6/,Phil,,6/15/2015 0:00,16.0000000,16.0000000,48.146956000000,-4.273073000000,,Plage de Ty Anquer - Ploeven - Finistère,57249,observation-d89e3031-f71a-452c-a0de-4fea2daefcb6-6,https://biolit.fr/observations/observation-d89e3031-f71a-452c-a0de-4fea2daefcb6-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04547.JPG,,FALSE, +N1,61462,sortie-72ed6e78-d1df-444e-a5af-4d51ca228aa2,https://biolit.fr/sorties/sortie-72ed6e78-d1df-444e-a5af-4d51ca228aa2/,Phil,,6/15/2015 0:00,16.0:45,17.0000000,48.144281000000,-4.274104000000,,Plage de Tréguer - Plonevez Porzay - Finistère,57251,observation-72ed6e78-d1df-444e-a5af-4d51ca228aa2,https://biolit.fr/observations/observation-72ed6e78-d1df-444e-a5af-4d51ca228aa2/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/DSC04540_0.JPG,,TRUE, +N1,61462,sortie-72ed6e78-d1df-444e-a5af-4d51ca228aa2,https://biolit.fr/sorties/sortie-72ed6e78-d1df-444e-a5af-4d51ca228aa2/,Phil,,6/15/2015 0:00,16.0:45,17.0000000,48.144281000000,-4.274104000000,,Plage de Tréguer - Plonevez Porzay - Finistère,57253,observation-72ed6e78-d1df-444e-a5af-4d51ca228aa2-2,https://biolit.fr/observations/observation-72ed6e78-d1df-444e-a5af-4d51ca228aa2-2/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/DSC04531_0.JPG,,TRUE, +N1,61462,sortie-72ed6e78-d1df-444e-a5af-4d51ca228aa2,https://biolit.fr/sorties/sortie-72ed6e78-d1df-444e-a5af-4d51ca228aa2/,Phil,,6/15/2015 0:00,16.0:45,17.0000000,48.144281000000,-4.274104000000,,Plage de Tréguer - Plonevez Porzay - Finistère,57255,observation-72ed6e78-d1df-444e-a5af-4d51ca228aa2-3,https://biolit.fr/observations/observation-72ed6e78-d1df-444e-a5af-4d51ca228aa2-3/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/DSC04537_0.JPG,,TRUE, +N1,61462,sortie-72ed6e78-d1df-444e-a5af-4d51ca228aa2,https://biolit.fr/sorties/sortie-72ed6e78-d1df-444e-a5af-4d51ca228aa2/,Phil,,6/15/2015 0:00,16.0:45,17.0000000,48.144281000000,-4.274104000000,,Plage de Tréguer - Plonevez Porzay - Finistère,57257,observation-72ed6e78-d1df-444e-a5af-4d51ca228aa2-4,https://biolit.fr/observations/observation-72ed6e78-d1df-444e-a5af-4d51ca228aa2-4/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/DSC04539_0.JPG,,TRUE, +N1,61462,sortie-72ed6e78-d1df-444e-a5af-4d51ca228aa2,https://biolit.fr/sorties/sortie-72ed6e78-d1df-444e-a5af-4d51ca228aa2/,Phil,,6/15/2015 0:00,16.0:45,17.0000000,48.144281000000,-4.274104000000,,Plage de Tréguer - Plonevez Porzay - Finistère,57259,observation-72ed6e78-d1df-444e-a5af-4d51ca228aa2-5,https://biolit.fr/observations/observation-72ed6e78-d1df-444e-a5af-4d51ca228aa2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04528_0.JPG,,FALSE, +N1,61462,sortie-72ed6e78-d1df-444e-a5af-4d51ca228aa2,https://biolit.fr/sorties/sortie-72ed6e78-d1df-444e-a5af-4d51ca228aa2/,Phil,,6/15/2015 0:00,16.0:45,17.0000000,48.144281000000,-4.274104000000,,Plage de Tréguer - Plonevez Porzay - Finistère,57261,observation-72ed6e78-d1df-444e-a5af-4d51ca228aa2-6,https://biolit.fr/observations/observation-72ed6e78-d1df-444e-a5af-4d51ca228aa2-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04523_0.JPG,,FALSE, +N1,61462,sortie-72ed6e78-d1df-444e-a5af-4d51ca228aa2,https://biolit.fr/sorties/sortie-72ed6e78-d1df-444e-a5af-4d51ca228aa2/,Phil,,6/15/2015 0:00,16.0:45,17.0000000,48.144281000000,-4.274104000000,,Plage de Tréguer - Plonevez Porzay - Finistère,57263,observation-72ed6e78-d1df-444e-a5af-4d51ca228aa2-7,https://biolit.fr/observations/observation-72ed6e78-d1df-444e-a5af-4d51ca228aa2-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04524)_0.JPG,,FALSE, +N1,61463,sortie-3820201e-d867-4742-b134-dab8e80e893b,https://biolit.fr/sorties/sortie-3820201e-d867-4742-b134-dab8e80e893b/,Phil,,6/15/2015 0:00,16.0000000,16.0000000,48.146420000000,-4.275066000000,,Ile Salgren - Plonevez Porzay - Finistère,57265,observation-3820201e-d867-4742-b134-dab8e80e893b,https://biolit.fr/observations/observation-3820201e-d867-4742-b134-dab8e80e893b/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04522.JPG,,FALSE, +N1,61463,sortie-3820201e-d867-4742-b134-dab8e80e893b,https://biolit.fr/sorties/sortie-3820201e-d867-4742-b134-dab8e80e893b/,Phil,,6/15/2015 0:00,16.0000000,16.0000000,48.146420000000,-4.275066000000,,Ile Salgren - Plonevez Porzay - Finistère,57267,observation-3820201e-d867-4742-b134-dab8e80e893b-2,https://biolit.fr/observations/observation-3820201e-d867-4742-b134-dab8e80e893b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04517.JPG,,FALSE, +N1,61463,sortie-3820201e-d867-4742-b134-dab8e80e893b,https://biolit.fr/sorties/sortie-3820201e-d867-4742-b134-dab8e80e893b/,Phil,,6/15/2015 0:00,16.0000000,16.0000000,48.146420000000,-4.275066000000,,Ile Salgren - Plonevez Porzay - Finistère,57269,observation-3820201e-d867-4742-b134-dab8e80e893b-3,https://biolit.fr/observations/observation-3820201e-d867-4742-b134-dab8e80e893b-3/,Littorina compressa,Littorine à lignes noires,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04521.JPG,,TRUE, +N1,61464,sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c,https://biolit.fr/sorties/sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c/,Phil,,6/13/2015 0:00,11.0000000,11.0:55,47.796365000000,-4.371534000000,,Penmarc'h - Finistère,57271,observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c,https://biolit.fr/observations/observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150613_113844-scaled.jpg,,FALSE, +N1,61464,sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c,https://biolit.fr/sorties/sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c/,Phil,,6/13/2015 0:00,11.0000000,11.0:55,47.796365000000,-4.371534000000,,Penmarc'h - Finistère,57273,observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-2,https://biolit.fr/observations/observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150613_113452-scaled.jpg,,FALSE, +N1,61464,sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c,https://biolit.fr/sorties/sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c/,Phil,,6/13/2015 0:00,11.0000000,11.0:55,47.796365000000,-4.371534000000,,Penmarc'h - Finistère,57275,observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-3,https://biolit.fr/observations/observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150613_113823-scaled.jpg,,FALSE, +N1,61464,sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c,https://biolit.fr/sorties/sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c/,Phil,,6/13/2015 0:00,11.0000000,11.0:55,47.796365000000,-4.371534000000,,Penmarc'h - Finistère,57277,observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-4,https://biolit.fr/observations/observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-4/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150613_114159-scaled.jpg,,TRUE, +N1,61464,sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c,https://biolit.fr/sorties/sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c/,Phil,,6/13/2015 0:00,11.0000000,11.0:55,47.796365000000,-4.371534000000,,Penmarc'h - Finistère,57279,observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-5,https://biolit.fr/observations/observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-5/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/20150613_114807-scaled.jpg,,TRUE, +N1,61464,sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c,https://biolit.fr/sorties/sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c/,Phil,,6/13/2015 0:00,11.0000000,11.0:55,47.796365000000,-4.371534000000,,Penmarc'h - Finistère,57281,observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-6,https://biolit.fr/observations/observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-6/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150613_114957-scaled.jpg,,TRUE, +N1,61464,sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c,https://biolit.fr/sorties/sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c/,Phil,,6/13/2015 0:00,11.0000000,11.0:55,47.796365000000,-4.371534000000,,Penmarc'h - Finistère,57283,observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-7,https://biolit.fr/observations/observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-7/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20150613_115150-scaled.jpg,,TRUE, +N1,61464,sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c,https://biolit.fr/sorties/sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c/,Phil,,6/13/2015 0:00,11.0000000,11.0:55,47.796365000000,-4.371534000000,,Penmarc'h - Finistère,57285,observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-8,https://biolit.fr/observations/observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150613_115528-scaled.jpg,,FALSE, +N1,61464,sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c,https://biolit.fr/sorties/sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c/,Phil,,6/13/2015 0:00,11.0000000,11.0:55,47.796365000000,-4.371534000000,,Penmarc'h - Finistère,57287,observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-9,https://biolit.fr/observations/observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-9/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/20150613_115730-scaled.jpg,,TRUE, +N1,61464,sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c,https://biolit.fr/sorties/sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c/,Phil,,6/13/2015 0:00,11.0000000,11.0:55,47.796365000000,-4.371534000000,,Penmarc'h - Finistère,57289,observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-10,https://biolit.fr/observations/observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150613_115829-scaled.jpg,,FALSE, +N1,61464,sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c,https://biolit.fr/sorties/sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c/,Phil,,6/13/2015 0:00,11.0000000,11.0:55,47.796365000000,-4.371534000000,,Penmarc'h - Finistère,57291,observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-11,https://biolit.fr/observations/observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-11/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/20150613_115903-scaled.jpg,,TRUE, +N1,61465,sortie-931ec3f6-9487-4f1e-8497-5bb5c2c07351,https://biolit.fr/sorties/sortie-931ec3f6-9487-4f1e-8497-5bb5c2c07351/,Phil,,5/22/2015 0:00,15.0000000,15.0000000,48.832569000000,-3.490799000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57293,observation-931ec3f6-9487-4f1e-8497-5bb5c2c07351,https://biolit.fr/observations/observation-931ec3f6-9487-4f1e-8497-5bb5c2c07351/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150522_153807-scaled.jpg,,FALSE, +N1,61465,sortie-931ec3f6-9487-4f1e-8497-5bb5c2c07351,https://biolit.fr/sorties/sortie-931ec3f6-9487-4f1e-8497-5bb5c2c07351/,Phil,,5/22/2015 0:00,15.0000000,15.0000000,48.832569000000,-3.490799000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57295,observation-931ec3f6-9487-4f1e-8497-5bb5c2c07351-2,https://biolit.fr/observations/observation-931ec3f6-9487-4f1e-8497-5bb5c2c07351-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04133.JPG,,TRUE, +N1,61465,sortie-931ec3f6-9487-4f1e-8497-5bb5c2c07351,https://biolit.fr/sorties/sortie-931ec3f6-9487-4f1e-8497-5bb5c2c07351/,Phil,,5/22/2015 0:00,15.0000000,15.0000000,48.832569000000,-3.490799000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57297,observation-931ec3f6-9487-4f1e-8497-5bb5c2c07351-3,https://biolit.fr/observations/observation-931ec3f6-9487-4f1e-8497-5bb5c2c07351-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04146.JPG,,FALSE, +N1,61465,sortie-931ec3f6-9487-4f1e-8497-5bb5c2c07351,https://biolit.fr/sorties/sortie-931ec3f6-9487-4f1e-8497-5bb5c2c07351/,Phil,,5/22/2015 0:00,15.0000000,15.0000000,48.832569000000,-3.490799000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57299,observation-931ec3f6-9487-4f1e-8497-5bb5c2c07351-4,https://biolit.fr/observations/observation-931ec3f6-9487-4f1e-8497-5bb5c2c07351-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04147.JPG,,TRUE, +N1,61465,sortie-931ec3f6-9487-4f1e-8497-5bb5c2c07351,https://biolit.fr/sorties/sortie-931ec3f6-9487-4f1e-8497-5bb5c2c07351/,Phil,,5/22/2015 0:00,15.0000000,15.0000000,48.832569000000,-3.490799000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57301,observation-931ec3f6-9487-4f1e-8497-5bb5c2c07351-5,https://biolit.fr/observations/observation-931ec3f6-9487-4f1e-8497-5bb5c2c07351-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04148.JPG,,FALSE, +N1,61465,sortie-931ec3f6-9487-4f1e-8497-5bb5c2c07351,https://biolit.fr/sorties/sortie-931ec3f6-9487-4f1e-8497-5bb5c2c07351/,Phil,,5/22/2015 0:00,15.0000000,15.0000000,48.832569000000,-3.490799000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57303,observation-931ec3f6-9487-4f1e-8497-5bb5c2c07351-6,https://biolit.fr/observations/observation-931ec3f6-9487-4f1e-8497-5bb5c2c07351-6/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04223.JPG,,TRUE, +N1,61465,sortie-931ec3f6-9487-4f1e-8497-5bb5c2c07351,https://biolit.fr/sorties/sortie-931ec3f6-9487-4f1e-8497-5bb5c2c07351/,Phil,,5/22/2015 0:00,15.0000000,15.0000000,48.832569000000,-3.490799000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57305,observation-931ec3f6-9487-4f1e-8497-5bb5c2c07351-7,https://biolit.fr/observations/observation-931ec3f6-9487-4f1e-8497-5bb5c2c07351-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04225.JPG,,FALSE, +N1,61466,sortie-075c11a4-249f-44c6-8287-3ea825606201,https://biolit.fr/sorties/sortie-075c11a4-249f-44c6-8287-3ea825606201/,Phil,,6/13/2015 0:00,11.0:55,12.0000000,47.797396000000,-4.372294000000,,Penmarc'h - Finistère,57307,observation-075c11a4-249f-44c6-8287-3ea825606201,https://biolit.fr/observations/observation-075c11a4-249f-44c6-8287-3ea825606201/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/20150613_120000-scaled.jpg,,TRUE, +N1,61466,sortie-075c11a4-249f-44c6-8287-3ea825606201,https://biolit.fr/sorties/sortie-075c11a4-249f-44c6-8287-3ea825606201/,Phil,,6/13/2015 0:00,11.0:55,12.0000000,47.797396000000,-4.372294000000,,Penmarc'h - Finistère,57309,observation-075c11a4-249f-44c6-8287-3ea825606201-2,https://biolit.fr/observations/observation-075c11a4-249f-44c6-8287-3ea825606201-2/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/20150613_120012-scaled.jpg,,TRUE, +N1,61466,sortie-075c11a4-249f-44c6-8287-3ea825606201,https://biolit.fr/sorties/sortie-075c11a4-249f-44c6-8287-3ea825606201/,Phil,,6/13/2015 0:00,11.0:55,12.0000000,47.797396000000,-4.372294000000,,Penmarc'h - Finistère,57311,observation-075c11a4-249f-44c6-8287-3ea825606201-3,https://biolit.fr/observations/observation-075c11a4-249f-44c6-8287-3ea825606201-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150613_120024-scaled.jpg,,FALSE, +N1,61466,sortie-075c11a4-249f-44c6-8287-3ea825606201,https://biolit.fr/sorties/sortie-075c11a4-249f-44c6-8287-3ea825606201/,Phil,,6/13/2015 0:00,11.0:55,12.0000000,47.797396000000,-4.372294000000,,Penmarc'h - Finistère,57313,observation-075c11a4-249f-44c6-8287-3ea825606201-4,https://biolit.fr/observations/observation-075c11a4-249f-44c6-8287-3ea825606201-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150613_120042-scaled.jpg,,FALSE, +N1,61466,sortie-075c11a4-249f-44c6-8287-3ea825606201,https://biolit.fr/sorties/sortie-075c11a4-249f-44c6-8287-3ea825606201/,Phil,,6/13/2015 0:00,11.0:55,12.0000000,47.797396000000,-4.372294000000,,Penmarc'h - Finistère,57315,observation-075c11a4-249f-44c6-8287-3ea825606201-5,https://biolit.fr/observations/observation-075c11a4-249f-44c6-8287-3ea825606201-5/,Ulva sp. groupe intestinalis,Ulves tubuleuses du groupe intestinalis,,https://biolit.fr/wp-content/uploads/2023/07/20150613_120128-scaled.jpg,,TRUE, +N1,61467,sortie-4426635e-cb97-4362-a325-97f19dd53979,https://biolit.fr/sorties/sortie-4426635e-cb97-4362-a325-97f19dd53979/,Phil,,6/13/2015 0:00,11.0000000,11.0000000,47.796980000000,-4.372918000000,,Pointe de Penmarc'h - Finistère,57317,observation-4426635e-cb97-4362-a325-97f19dd53979,https://biolit.fr/observations/observation-4426635e-cb97-4362-a325-97f19dd53979/,Pollachius pollachius,Lieu jaune,,https://biolit.fr/wp-content/uploads/2023/07/20150613_110849-scaled.jpg,,TRUE, +N1,61467,sortie-4426635e-cb97-4362-a325-97f19dd53979,https://biolit.fr/sorties/sortie-4426635e-cb97-4362-a325-97f19dd53979/,Phil,,6/13/2015 0:00,11.0000000,11.0000000,47.796980000000,-4.372918000000,,Pointe de Penmarc'h - Finistère,57319,observation-4426635e-cb97-4362-a325-97f19dd53979-2,https://biolit.fr/observations/observation-4426635e-cb97-4362-a325-97f19dd53979-2/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/20150613_111920-scaled.jpg,,TRUE, +N1,61467,sortie-4426635e-cb97-4362-a325-97f19dd53979,https://biolit.fr/sorties/sortie-4426635e-cb97-4362-a325-97f19dd53979/,Phil,,6/13/2015 0:00,11.0000000,11.0000000,47.796980000000,-4.372918000000,,Pointe de Penmarc'h - Finistère,57321,observation-4426635e-cb97-4362-a325-97f19dd53979-3,https://biolit.fr/observations/observation-4426635e-cb97-4362-a325-97f19dd53979-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150613_112122-scaled.jpg,,TRUE, +N1,61467,sortie-4426635e-cb97-4362-a325-97f19dd53979,https://biolit.fr/sorties/sortie-4426635e-cb97-4362-a325-97f19dd53979/,Phil,,6/13/2015 0:00,11.0000000,11.0000000,47.796980000000,-4.372918000000,,Pointe de Penmarc'h - Finistère,57323,observation-4426635e-cb97-4362-a325-97f19dd53979-4,https://biolit.fr/observations/observation-4426635e-cb97-4362-a325-97f19dd53979-4/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/20150613_112318-scaled.jpg,,TRUE, +N1,61467,sortie-4426635e-cb97-4362-a325-97f19dd53979,https://biolit.fr/sorties/sortie-4426635e-cb97-4362-a325-97f19dd53979/,Phil,,6/13/2015 0:00,11.0000000,11.0000000,47.796980000000,-4.372918000000,,Pointe de Penmarc'h - Finistère,57325,observation-4426635e-cb97-4362-a325-97f19dd53979-5,https://biolit.fr/observations/observation-4426635e-cb97-4362-a325-97f19dd53979-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150613_112426-scaled.jpg,,FALSE, +N1,61467,sortie-4426635e-cb97-4362-a325-97f19dd53979,https://biolit.fr/sorties/sortie-4426635e-cb97-4362-a325-97f19dd53979/,Phil,,6/13/2015 0:00,11.0000000,11.0000000,47.796980000000,-4.372918000000,,Pointe de Penmarc'h - Finistère,57327,observation-4426635e-cb97-4362-a325-97f19dd53979-6,https://biolit.fr/observations/observation-4426635e-cb97-4362-a325-97f19dd53979-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150613_112617-scaled.jpg,,FALSE, +N1,61467,sortie-4426635e-cb97-4362-a325-97f19dd53979,https://biolit.fr/sorties/sortie-4426635e-cb97-4362-a325-97f19dd53979/,Phil,,6/13/2015 0:00,11.0000000,11.0000000,47.796980000000,-4.372918000000,,Pointe de Penmarc'h - Finistère,57329,observation-4426635e-cb97-4362-a325-97f19dd53979-7,https://biolit.fr/observations/observation-4426635e-cb97-4362-a325-97f19dd53979-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150613_112913-scaled.jpg,,FALSE, +N1,61467,sortie-4426635e-cb97-4362-a325-97f19dd53979,https://biolit.fr/sorties/sortie-4426635e-cb97-4362-a325-97f19dd53979/,Phil,,6/13/2015 0:00,11.0000000,11.0000000,47.796980000000,-4.372918000000,,Pointe de Penmarc'h - Finistère,57331,observation-4426635e-cb97-4362-a325-97f19dd53979-8,https://biolit.fr/observations/observation-4426635e-cb97-4362-a325-97f19dd53979-8/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150613_113118-scaled.jpg,,TRUE, +N1,61467,sortie-4426635e-cb97-4362-a325-97f19dd53979,https://biolit.fr/sorties/sortie-4426635e-cb97-4362-a325-97f19dd53979/,Phil,,6/13/2015 0:00,11.0000000,11.0000000,47.796980000000,-4.372918000000,,Pointe de Penmarc'h - Finistère,57333,observation-4426635e-cb97-4362-a325-97f19dd53979-9,https://biolit.fr/observations/observation-4426635e-cb97-4362-a325-97f19dd53979-9/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/20150613_113218-scaled.jpg,,TRUE, +N1,61468,sortie-045057bd-1f04-40ff-8b0a-45e945200600,https://biolit.fr/sorties/sortie-045057bd-1f04-40ff-8b0a-45e945200600/,Phil,,6/13/2015 0:00,12.0000000,12.000005,47.7974520000,-4.371857000000,,Penmarc'h - Finistère,57335,observation-045057bd-1f04-40ff-8b0a-45e945200600,https://biolit.fr/observations/observation-045057bd-1f04-40ff-8b0a-45e945200600/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150613_120243-scaled.jpg,,FALSE, +N1,61468,sortie-045057bd-1f04-40ff-8b0a-45e945200600,https://biolit.fr/sorties/sortie-045057bd-1f04-40ff-8b0a-45e945200600/,Phil,,6/13/2015 0:00,12.0000000,12.000005,47.7974520000,-4.371857000000,,Penmarc'h - Finistère,57337,observation-045057bd-1f04-40ff-8b0a-45e945200600-2,https://biolit.fr/observations/observation-045057bd-1f04-40ff-8b0a-45e945200600-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150613_120258-scaled.jpg,,FALSE, +N1,61468,sortie-045057bd-1f04-40ff-8b0a-45e945200600,https://biolit.fr/sorties/sortie-045057bd-1f04-40ff-8b0a-45e945200600/,Phil,,6/13/2015 0:00,12.0000000,12.000005,47.7974520000,-4.371857000000,,Penmarc'h - Finistère,57339,observation-045057bd-1f04-40ff-8b0a-45e945200600-3,https://biolit.fr/observations/observation-045057bd-1f04-40ff-8b0a-45e945200600-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150613_120313-scaled.jpg,,FALSE, +N1,61469,sortie-c517bbd9-f989-41c4-aef8-8ed0cde0f129,https://biolit.fr/sorties/sortie-c517bbd9-f989-41c4-aef8-8ed0cde0f129/,Phil,,06/10/2015,17.0000000,17.0:25,47.799044000000,-3.723362000000,,Kerfany les Pins - Moëlan-sur-Mer - Finistère,57341,observation-c517bbd9-f989-41c4-aef8-8ed0cde0f129,https://biolit.fr/observations/observation-c517bbd9-f989-41c4-aef8-8ed0cde0f129/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150610_172031-scaled.jpg,,FALSE, +N1,61469,sortie-c517bbd9-f989-41c4-aef8-8ed0cde0f129,https://biolit.fr/sorties/sortie-c517bbd9-f989-41c4-aef8-8ed0cde0f129/,Phil,,06/10/2015,17.0000000,17.0:25,47.799044000000,-3.723362000000,,Kerfany les Pins - Moëlan-sur-Mer - Finistère,57343,observation-c517bbd9-f989-41c4-aef8-8ed0cde0f129-2,https://biolit.fr/observations/observation-c517bbd9-f989-41c4-aef8-8ed0cde0f129-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150610_172034.jpg,,FALSE, +N1,61469,sortie-c517bbd9-f989-41c4-aef8-8ed0cde0f129,https://biolit.fr/sorties/sortie-c517bbd9-f989-41c4-aef8-8ed0cde0f129/,Phil,,06/10/2015,17.0000000,17.0:25,47.799044000000,-3.723362000000,,Kerfany les Pins - Moëlan-sur-Mer - Finistère,57345,observation-c517bbd9-f989-41c4-aef8-8ed0cde0f129-3,https://biolit.fr/observations/observation-c517bbd9-f989-41c4-aef8-8ed0cde0f129-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150610_172036-scaled.jpg,,FALSE, +N1,61469,sortie-c517bbd9-f989-41c4-aef8-8ed0cde0f129,https://biolit.fr/sorties/sortie-c517bbd9-f989-41c4-aef8-8ed0cde0f129/,Phil,,06/10/2015,17.0000000,17.0:25,47.799044000000,-3.723362000000,,Kerfany les Pins - Moëlan-sur-Mer - Finistère,57347,observation-c517bbd9-f989-41c4-aef8-8ed0cde0f129-4,https://biolit.fr/observations/observation-c517bbd9-f989-41c4-aef8-8ed0cde0f129-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150610_172404-scaled.jpg,,FALSE, +N1,61470,sortie-aea20df3-794c-4550-b9eb-ae2ed3182846,https://biolit.fr/sorties/sortie-aea20df3-794c-4550-b9eb-ae2ed3182846/,Phil,,06/10/2015,16.0:55,17.000005,47.800268000000,-3.723163000000,,Kerfany les Pins - Moëlan-sur-Mer - Finistère,57349,observation-aea20df3-794c-4550-b9eb-ae2ed3182846,https://biolit.fr/observations/observation-aea20df3-794c-4550-b9eb-ae2ed3182846/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150610_165553-scaled.jpg,,FALSE, +N1,61470,sortie-aea20df3-794c-4550-b9eb-ae2ed3182846,https://biolit.fr/sorties/sortie-aea20df3-794c-4550-b9eb-ae2ed3182846/,Phil,,06/10/2015,16.0:55,17.000005,47.800268000000,-3.723163000000,,Kerfany les Pins - Moëlan-sur-Mer - Finistère,57351,observation-aea20df3-794c-4550-b9eb-ae2ed3182846-2,https://biolit.fr/observations/observation-aea20df3-794c-4550-b9eb-ae2ed3182846-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150610_165611-scaled.jpg,,FALSE, +N1,61470,sortie-aea20df3-794c-4550-b9eb-ae2ed3182846,https://biolit.fr/sorties/sortie-aea20df3-794c-4550-b9eb-ae2ed3182846/,Phil,,06/10/2015,16.0:55,17.000005,47.800268000000,-3.723163000000,,Kerfany les Pins - Moëlan-sur-Mer - Finistère,57353,observation-aea20df3-794c-4550-b9eb-ae2ed3182846-3,https://biolit.fr/observations/observation-aea20df3-794c-4550-b9eb-ae2ed3182846-3/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/20150610_165529-scaled.jpg,,TRUE, +N1,61470,sortie-aea20df3-794c-4550-b9eb-ae2ed3182846,https://biolit.fr/sorties/sortie-aea20df3-794c-4550-b9eb-ae2ed3182846/,Phil,,06/10/2015,16.0:55,17.000005,47.800268000000,-3.723163000000,,Kerfany les Pins - Moëlan-sur-Mer - Finistère,57355,observation-aea20df3-794c-4550-b9eb-ae2ed3182846-4,https://biolit.fr/observations/observation-aea20df3-794c-4550-b9eb-ae2ed3182846-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150610_170051-scaled.jpg,,FALSE, +N1,61470,sortie-aea20df3-794c-4550-b9eb-ae2ed3182846,https://biolit.fr/sorties/sortie-aea20df3-794c-4550-b9eb-ae2ed3182846/,Phil,,06/10/2015,16.0:55,17.000005,47.800268000000,-3.723163000000,,Kerfany les Pins - Moëlan-sur-Mer - Finistère,57357,observation-aea20df3-794c-4550-b9eb-ae2ed3182846-5,https://biolit.fr/observations/observation-aea20df3-794c-4550-b9eb-ae2ed3182846-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150610_170418-scaled.jpg,,FALSE, +N1,61470,sortie-aea20df3-794c-4550-b9eb-ae2ed3182846,https://biolit.fr/sorties/sortie-aea20df3-794c-4550-b9eb-ae2ed3182846/,Phil,,06/10/2015,16.0:55,17.000005,47.800268000000,-3.723163000000,,Kerfany les Pins - Moëlan-sur-Mer - Finistère,57359,observation-aea20df3-794c-4550-b9eb-ae2ed3182846-6,https://biolit.fr/observations/observation-aea20df3-794c-4550-b9eb-ae2ed3182846-6/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20150610_170423-scaled.jpg,,TRUE, +N1,61470,sortie-aea20df3-794c-4550-b9eb-ae2ed3182846,https://biolit.fr/sorties/sortie-aea20df3-794c-4550-b9eb-ae2ed3182846/,Phil,,06/10/2015,16.0:55,17.000005,47.800268000000,-3.723163000000,,Kerfany les Pins - Moëlan-sur-Mer - Finistère,57361,observation-aea20df3-794c-4550-b9eb-ae2ed3182846-7,https://biolit.fr/observations/observation-aea20df3-794c-4550-b9eb-ae2ed3182846-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150610_172846-scaled.jpg,,FALSE, +N1,61471,sortie-e14add6d-5119-4e9f-8ebd-56ab2ba94d25,https://biolit.fr/sorties/sortie-e14add6d-5119-4e9f-8ebd-56ab2ba94d25/,Phil,,5/22/2015 0:00,14.0:55,15.000005,48.833206000000,-3.487916000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57363,observation-e14add6d-5119-4e9f-8ebd-56ab2ba94d25,https://biolit.fr/observations/observation-e14add6d-5119-4e9f-8ebd-56ab2ba94d25/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04127.JPG,,FALSE, +N1,61471,sortie-e14add6d-5119-4e9f-8ebd-56ab2ba94d25,https://biolit.fr/sorties/sortie-e14add6d-5119-4e9f-8ebd-56ab2ba94d25/,Phil,,5/22/2015 0:00,14.0:55,15.000005,48.833206000000,-3.487916000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57365,observation-e14add6d-5119-4e9f-8ebd-56ab2ba94d25-2,https://biolit.fr/observations/observation-e14add6d-5119-4e9f-8ebd-56ab2ba94d25-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04129.JPG,,TRUE, +N1,61471,sortie-e14add6d-5119-4e9f-8ebd-56ab2ba94d25,https://biolit.fr/sorties/sortie-e14add6d-5119-4e9f-8ebd-56ab2ba94d25/,Phil,,5/22/2015 0:00,14.0:55,15.000005,48.833206000000,-3.487916000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57367,observation-e14add6d-5119-4e9f-8ebd-56ab2ba94d25-3,https://biolit.fr/observations/observation-e14add6d-5119-4e9f-8ebd-56ab2ba94d25-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04137.JPG,,FALSE, +N1,61471,sortie-e14add6d-5119-4e9f-8ebd-56ab2ba94d25,https://biolit.fr/sorties/sortie-e14add6d-5119-4e9f-8ebd-56ab2ba94d25/,Phil,,5/22/2015 0:00,14.0:55,15.000005,48.833206000000,-3.487916000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57369,observation-e14add6d-5119-4e9f-8ebd-56ab2ba94d25-4,https://biolit.fr/observations/observation-e14add6d-5119-4e9f-8ebd-56ab2ba94d25-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04139.JPG,,FALSE, +N1,61471,sortie-e14add6d-5119-4e9f-8ebd-56ab2ba94d25,https://biolit.fr/sorties/sortie-e14add6d-5119-4e9f-8ebd-56ab2ba94d25/,Phil,,5/22/2015 0:00,14.0:55,15.000005,48.833206000000,-3.487916000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57371,observation-e14add6d-5119-4e9f-8ebd-56ab2ba94d25-5,https://biolit.fr/observations/observation-e14add6d-5119-4e9f-8ebd-56ab2ba94d25-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04142.JPG,,FALSE, +N1,61472,sortie-f2ec6c2a-4ef3-4bf6-aa8e-e6226aad401a,https://biolit.fr/sorties/sortie-f2ec6c2a-4ef3-4bf6-aa8e-e6226aad401a/,Planète Mer,,06/03/2015,10.0000000,11.0000000,43.185996000000,5.360496000000,,Rade de Marseille,57373,observation-f2ec6c2a-4ef3-4bf6-aa8e-e6226aad401a,https://biolit.fr/observations/observation-f2ec6c2a-4ef3-4bf6-aa8e-e6226aad401a/,Caretta caretta,Tortue caouanne,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0141_0-scaled.jpg,,TRUE, +N1,61472,sortie-f2ec6c2a-4ef3-4bf6-aa8e-e6226aad401a,https://biolit.fr/sorties/sortie-f2ec6c2a-4ef3-4bf6-aa8e-e6226aad401a/,Planète Mer,,06/03/2015,10.0000000,11.0000000,43.185996000000,5.360496000000,,Rade de Marseille,57375,observation-f2ec6c2a-4ef3-4bf6-aa8e-e6226aad401a-2,https://biolit.fr/observations/observation-f2ec6c2a-4ef3-4bf6-aa8e-e6226aad401a-2/,Caretta caretta,Tortue caouanne,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0145-scaled.jpg,,TRUE, +N1,61472,sortie-f2ec6c2a-4ef3-4bf6-aa8e-e6226aad401a,https://biolit.fr/sorties/sortie-f2ec6c2a-4ef3-4bf6-aa8e-e6226aad401a/,Planète Mer,,06/03/2015,10.0000000,11.0000000,43.185996000000,5.360496000000,,Rade de Marseille,57377,observation-f2ec6c2a-4ef3-4bf6-aa8e-e6226aad401a-3,https://biolit.fr/observations/observation-f2ec6c2a-4ef3-4bf6-aa8e-e6226aad401a-3/,Caretta caretta,Tortue caouanne,,https://biolit.fr/wp-content/uploads/2023/07/P6030040-scaled.jpg,,TRUE, +N1,61472,sortie-f2ec6c2a-4ef3-4bf6-aa8e-e6226aad401a,https://biolit.fr/sorties/sortie-f2ec6c2a-4ef3-4bf6-aa8e-e6226aad401a/,Planète Mer,,06/03/2015,10.0000000,11.0000000,43.185996000000,5.360496000000,,Rade de Marseille,57379,observation-f2ec6c2a-4ef3-4bf6-aa8e-e6226aad401a-4,https://biolit.fr/observations/observation-f2ec6c2a-4ef3-4bf6-aa8e-e6226aad401a-4/,Caretta caretta,Tortue caouanne,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0147-scaled.jpg,,TRUE, +N1,61473,sortie-36e7da95-782c-408c-b3ec-627fc23a6861,https://biolit.fr/sorties/sortie-36e7da95-782c-408c-b3ec-627fc23a6861/,Phil,,5/22/2015 0:00,15.0000000,15.0:25,48.832544000000,-3.49099200000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57381,observation-36e7da95-782c-408c-b3ec-627fc23a6861,https://biolit.fr/observations/observation-36e7da95-782c-408c-b3ec-627fc23a6861/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04163.JPG,,FALSE, +N1,61473,sortie-36e7da95-782c-408c-b3ec-627fc23a6861,https://biolit.fr/sorties/sortie-36e7da95-782c-408c-b3ec-627fc23a6861/,Phil,,5/22/2015 0:00,15.0000000,15.0:25,48.832544000000,-3.49099200000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57383,observation-36e7da95-782c-408c-b3ec-627fc23a6861-2,https://biolit.fr/observations/observation-36e7da95-782c-408c-b3ec-627fc23a6861-2/,Mastocarpus stellatus,Gigartine,,https://biolit.fr/wp-content/uploads/2023/07/DSC04164.JPG,,TRUE, +N1,61473,sortie-36e7da95-782c-408c-b3ec-627fc23a6861,https://biolit.fr/sorties/sortie-36e7da95-782c-408c-b3ec-627fc23a6861/,Phil,,5/22/2015 0:00,15.0000000,15.0:25,48.832544000000,-3.49099200000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57385,observation-36e7da95-782c-408c-b3ec-627fc23a6861-3,https://biolit.fr/observations/observation-36e7da95-782c-408c-b3ec-627fc23a6861-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04165.JPG,,TRUE, +N1,61473,sortie-36e7da95-782c-408c-b3ec-627fc23a6861,https://biolit.fr/sorties/sortie-36e7da95-782c-408c-b3ec-627fc23a6861/,Phil,,5/22/2015 0:00,15.0000000,15.0:25,48.832544000000,-3.49099200000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57387,observation-36e7da95-782c-408c-b3ec-627fc23a6861-4,https://biolit.fr/observations/observation-36e7da95-782c-408c-b3ec-627fc23a6861-4/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04167.JPG,,TRUE, +N1,61473,sortie-36e7da95-782c-408c-b3ec-627fc23a6861,https://biolit.fr/sorties/sortie-36e7da95-782c-408c-b3ec-627fc23a6861/,Phil,,5/22/2015 0:00,15.0000000,15.0:25,48.832544000000,-3.49099200000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57389,observation-36e7da95-782c-408c-b3ec-627fc23a6861-5,https://biolit.fr/observations/observation-36e7da95-782c-408c-b3ec-627fc23a6861-5/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04191.JPG,,TRUE, +N1,61473,sortie-36e7da95-782c-408c-b3ec-627fc23a6861,https://biolit.fr/sorties/sortie-36e7da95-782c-408c-b3ec-627fc23a6861/,Phil,,5/22/2015 0:00,15.0000000,15.0:25,48.832544000000,-3.49099200000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57391,observation-36e7da95-782c-408c-b3ec-627fc23a6861-6,https://biolit.fr/observations/observation-36e7da95-782c-408c-b3ec-627fc23a6861-6/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04195.JPG,,TRUE, +N1,61473,sortie-36e7da95-782c-408c-b3ec-627fc23a6861,https://biolit.fr/sorties/sortie-36e7da95-782c-408c-b3ec-627fc23a6861/,Phil,,5/22/2015 0:00,15.0000000,15.0:25,48.832544000000,-3.49099200000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57393,observation-36e7da95-782c-408c-b3ec-627fc23a6861-7,https://biolit.fr/observations/observation-36e7da95-782c-408c-b3ec-627fc23a6861-7/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04196.JPG,,TRUE, +N1,61473,sortie-36e7da95-782c-408c-b3ec-627fc23a6861,https://biolit.fr/sorties/sortie-36e7da95-782c-408c-b3ec-627fc23a6861/,Phil,,5/22/2015 0:00,15.0000000,15.0:25,48.832544000000,-3.49099200000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57395,observation-36e7da95-782c-408c-b3ec-627fc23a6861-8,https://biolit.fr/observations/observation-36e7da95-782c-408c-b3ec-627fc23a6861-8/,Catenella caespitosa,Caténelle en touffe,,https://biolit.fr/wp-content/uploads/2023/07/DSC04202.JPG,,TRUE, +N1,61473,sortie-36e7da95-782c-408c-b3ec-627fc23a6861,https://biolit.fr/sorties/sortie-36e7da95-782c-408c-b3ec-627fc23a6861/,Phil,,5/22/2015 0:00,15.0000000,15.0:25,48.832544000000,-3.49099200000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57397,observation-36e7da95-782c-408c-b3ec-627fc23a6861-9,https://biolit.fr/observations/observation-36e7da95-782c-408c-b3ec-627fc23a6861-9/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04207-scaled.jpg,,TRUE, +N1,61474,sortie-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2,https://biolit.fr/sorties/sortie-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2/,Phil,,5/22/2015 0:00,17.0:35,17.0:45,48.798858000000,-3.546465000000,,Pleumeur-Bodou - Côtes d'Armor,57399,observation-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2,https://biolit.fr/observations/observation-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/DSC04233.JPG,,TRUE, +N1,61474,sortie-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2,https://biolit.fr/sorties/sortie-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2/,Phil,,5/22/2015 0:00,17.0:35,17.0:45,48.798858000000,-3.546465000000,,Pleumeur-Bodou - Côtes d'Armor,57401,observation-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2-2,https://biolit.fr/observations/observation-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04235.JPG,,TRUE, +N1,61474,sortie-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2,https://biolit.fr/sorties/sortie-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2/,Phil,,5/22/2015 0:00,17.0:35,17.0:45,48.798858000000,-3.546465000000,,Pleumeur-Bodou - Côtes d'Armor,57403,observation-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2-3,https://biolit.fr/observations/observation-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04237.JPG,,TRUE, +N1,61474,sortie-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2,https://biolit.fr/sorties/sortie-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2/,Phil,,5/22/2015 0:00,17.0:35,17.0:45,48.798858000000,-3.546465000000,,Pleumeur-Bodou - Côtes d'Armor,57405,observation-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2-4,https://biolit.fr/observations/observation-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2-4/,Vertebrata lanosa,Pompon des ascophylles,,https://biolit.fr/wp-content/uploads/2023/07/DSC04238.JPG,,TRUE, +N1,61474,sortie-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2,https://biolit.fr/sorties/sortie-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2/,Phil,,5/22/2015 0:00,17.0:35,17.0:45,48.798858000000,-3.546465000000,,Pleumeur-Bodou - Côtes d'Armor,57407,observation-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2-5,https://biolit.fr/observations/observation-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04240.JPG,,FALSE, +N1,61474,sortie-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2,https://biolit.fr/sorties/sortie-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2/,Phil,,5/22/2015 0:00,17.0:35,17.0:45,48.798858000000,-3.546465000000,,Pleumeur-Bodou - Côtes d'Armor,57409,observation-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2-6,https://biolit.fr/observations/observation-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2-6/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04241.JPG,,TRUE, +N1,61474,sortie-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2,https://biolit.fr/sorties/sortie-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2/,Phil,,5/22/2015 0:00,17.0:35,17.0:45,48.798858000000,-3.546465000000,,Pleumeur-Bodou - Côtes d'Armor,57411,observation-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2-7,https://biolit.fr/observations/observation-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04242.JPG,,FALSE, +N1,61475,sortie-693fc129-bab0-4477-a6f7-ccd1fb56bc56,https://biolit.fr/sorties/sortie-693fc129-bab0-4477-a6f7-ccd1fb56bc56/,Marine,,06/05/2015,18.0000000,20.0000000,43.325896000000,5.054209000000,,Plage de la Couronne Vieille,57413,observation-693fc129-bab0-4477-a6f7-ccd1fb56bc56,https://biolit.fr/observations/observation-693fc129-bab0-4477-a6f7-ccd1fb56bc56/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0659-scaled.jpg,,FALSE, +N1,61476,sortie-4341571b-fbd0-4286-9df3-ca0e321effd3,https://biolit.fr/sorties/sortie-4341571b-fbd0-4286-9df3-ca0e321effd3/,Phil,,5/26/2015 0:00,11.0000000,11.0:55,47.90895600000,-4.377249000000,,Crumuni - Plovan - Finistère,57415,observation-4341571b-fbd0-4286-9df3-ca0e321effd3,https://biolit.fr/observations/observation-4341571b-fbd0-4286-9df3-ca0e321effd3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04289.JPG,,FALSE, +N1,61476,sortie-4341571b-fbd0-4286-9df3-ca0e321effd3,https://biolit.fr/sorties/sortie-4341571b-fbd0-4286-9df3-ca0e321effd3/,Phil,,5/26/2015 0:00,11.0000000,11.0:55,47.90895600000,-4.377249000000,,Crumuni - Plovan - Finistère,57417,observation-4341571b-fbd0-4286-9df3-ca0e321effd3-2,https://biolit.fr/observations/observation-4341571b-fbd0-4286-9df3-ca0e321effd3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04295.JPG,,FALSE, +N1,61476,sortie-4341571b-fbd0-4286-9df3-ca0e321effd3,https://biolit.fr/sorties/sortie-4341571b-fbd0-4286-9df3-ca0e321effd3/,Phil,,5/26/2015 0:00,11.0000000,11.0:55,47.90895600000,-4.377249000000,,Crumuni - Plovan - Finistère,57419,observation-4341571b-fbd0-4286-9df3-ca0e321effd3-3,https://biolit.fr/observations/observation-4341571b-fbd0-4286-9df3-ca0e321effd3-3/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/DSC04291.JPG,,TRUE, +N1,61477,sortie-60d2628e-ef51-4208-8d51-c8c15aa27ec4,https://biolit.fr/sorties/sortie-60d2628e-ef51-4208-8d51-c8c15aa27ec4/,Phil,,5/26/2015 0:00,11.0:55,12.000005,47.911815000000,-4.379438000000,,Crumuni - Plovan - Finistère,57421,observation-60d2628e-ef51-4208-8d51-c8c15aa27ec4,https://biolit.fr/observations/observation-60d2628e-ef51-4208-8d51-c8c15aa27ec4/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/DSC04292.JPG,,TRUE, +N1,61477,sortie-60d2628e-ef51-4208-8d51-c8c15aa27ec4,https://biolit.fr/sorties/sortie-60d2628e-ef51-4208-8d51-c8c15aa27ec4/,Phil,,5/26/2015 0:00,11.0:55,12.000005,47.911815000000,-4.379438000000,,Crumuni - Plovan - Finistère,57423,observation-60d2628e-ef51-4208-8d51-c8c15aa27ec4-2,https://biolit.fr/observations/observation-60d2628e-ef51-4208-8d51-c8c15aa27ec4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04293.JPG,,FALSE, +N1,61477,sortie-60d2628e-ef51-4208-8d51-c8c15aa27ec4,https://biolit.fr/sorties/sortie-60d2628e-ef51-4208-8d51-c8c15aa27ec4/,Phil,,5/26/2015 0:00,11.0:55,12.000005,47.911815000000,-4.379438000000,,Crumuni - Plovan - Finistère,57425,observation-60d2628e-ef51-4208-8d51-c8c15aa27ec4-3,https://biolit.fr/observations/observation-60d2628e-ef51-4208-8d51-c8c15aa27ec4-3/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/DSC04306.JPG,,TRUE, +N1,61477,sortie-60d2628e-ef51-4208-8d51-c8c15aa27ec4,https://biolit.fr/sorties/sortie-60d2628e-ef51-4208-8d51-c8c15aa27ec4/,Phil,,5/26/2015 0:00,11.0:55,12.000005,47.911815000000,-4.379438000000,,Crumuni - Plovan - Finistère,57427,observation-60d2628e-ef51-4208-8d51-c8c15aa27ec4-4,https://biolit.fr/observations/observation-60d2628e-ef51-4208-8d51-c8c15aa27ec4-4/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/DSC04310.JPG,,TRUE, +N1,61477,sortie-60d2628e-ef51-4208-8d51-c8c15aa27ec4,https://biolit.fr/sorties/sortie-60d2628e-ef51-4208-8d51-c8c15aa27ec4/,Phil,,5/26/2015 0:00,11.0:55,12.000005,47.911815000000,-4.379438000000,,Crumuni - Plovan - Finistère,57429,observation-60d2628e-ef51-4208-8d51-c8c15aa27ec4-5,https://biolit.fr/observations/observation-60d2628e-ef51-4208-8d51-c8c15aa27ec4-5/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/DSC04311.JPG,,TRUE, +N1,61478,sortie-743da3bf-5ab7-442c-b32e-2aae814e2cf1,https://biolit.fr/sorties/sortie-743da3bf-5ab7-442c-b32e-2aae814e2cf1/,Phil,,5/27/2015 0:00,12.0000000,13.0000000,48.093636000000,-4.299131000000,,Plage du Ris - Ploaré - Douarnenez - Finistère,57431,observation-743da3bf-5ab7-442c-b32e-2aae814e2cf1,https://biolit.fr/observations/observation-743da3bf-5ab7-442c-b32e-2aae814e2cf1/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/DSC04324.JPG,,TRUE, +N1,61478,sortie-743da3bf-5ab7-442c-b32e-2aae814e2cf1,https://biolit.fr/sorties/sortie-743da3bf-5ab7-442c-b32e-2aae814e2cf1/,Phil,,5/27/2015 0:00,12.0000000,13.0000000,48.093636000000,-4.299131000000,,Plage du Ris - Ploaré - Douarnenez - Finistère,57433,observation-743da3bf-5ab7-442c-b32e-2aae814e2cf1-2,https://biolit.fr/observations/observation-743da3bf-5ab7-442c-b32e-2aae814e2cf1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04326.JPG,,FALSE, +N1,61478,sortie-743da3bf-5ab7-442c-b32e-2aae814e2cf1,https://biolit.fr/sorties/sortie-743da3bf-5ab7-442c-b32e-2aae814e2cf1/,Phil,,5/27/2015 0:00,12.0000000,13.0000000,48.093636000000,-4.299131000000,,Plage du Ris - Ploaré - Douarnenez - Finistère,57435,observation-743da3bf-5ab7-442c-b32e-2aae814e2cf1-3,https://biolit.fr/observations/observation-743da3bf-5ab7-442c-b32e-2aae814e2cf1-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04332.JPG,,TRUE, +N1,61478,sortie-743da3bf-5ab7-442c-b32e-2aae814e2cf1,https://biolit.fr/sorties/sortie-743da3bf-5ab7-442c-b32e-2aae814e2cf1/,Phil,,5/27/2015 0:00,12.0000000,13.0000000,48.093636000000,-4.299131000000,,Plage du Ris - Ploaré - Douarnenez - Finistère,57437,observation-743da3bf-5ab7-442c-b32e-2aae814e2cf1-4,https://biolit.fr/observations/observation-743da3bf-5ab7-442c-b32e-2aae814e2cf1-4/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/DSC04336.JPG,,TRUE, +N1,61478,sortie-743da3bf-5ab7-442c-b32e-2aae814e2cf1,https://biolit.fr/sorties/sortie-743da3bf-5ab7-442c-b32e-2aae814e2cf1/,Phil,,5/27/2015 0:00,12.0000000,13.0000000,48.093636000000,-4.299131000000,,Plage du Ris - Ploaré - Douarnenez - Finistère,57439,observation-743da3bf-5ab7-442c-b32e-2aae814e2cf1-5,https://biolit.fr/observations/observation-743da3bf-5ab7-442c-b32e-2aae814e2cf1-5/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/DSC04337.JPG,,TRUE, +N1,61478,sortie-743da3bf-5ab7-442c-b32e-2aae814e2cf1,https://biolit.fr/sorties/sortie-743da3bf-5ab7-442c-b32e-2aae814e2cf1/,Phil,,5/27/2015 0:00,12.0000000,13.0000000,48.093636000000,-4.299131000000,,Plage du Ris - Ploaré - Douarnenez - Finistère,57441,observation-743da3bf-5ab7-442c-b32e-2aae814e2cf1-6,https://biolit.fr/observations/observation-743da3bf-5ab7-442c-b32e-2aae814e2cf1-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04341.JPG,,FALSE, +N1,61479,sortie-7b393ba5-299e-41a7-b5c3-941a47cdb6a5,https://biolit.fr/sorties/sortie-7b393ba5-299e-41a7-b5c3-941a47cdb6a5/,Phil,,5/22/2015 0:00,15.0000000,15.0000000,48.832665000000,-3.490342000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor ,57443,observation-7b393ba5-299e-41a7-b5c3-941a47cdb6a5,https://biolit.fr/observations/observation-7b393ba5-299e-41a7-b5c3-941a47cdb6a5/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/DSC04149.JPG,,TRUE, +N1,61479,sortie-7b393ba5-299e-41a7-b5c3-941a47cdb6a5,https://biolit.fr/sorties/sortie-7b393ba5-299e-41a7-b5c3-941a47cdb6a5/,Phil,,5/22/2015 0:00,15.0000000,15.0000000,48.832665000000,-3.490342000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor ,57445,observation-7b393ba5-299e-41a7-b5c3-941a47cdb6a5-2,https://biolit.fr/observations/observation-7b393ba5-299e-41a7-b5c3-941a47cdb6a5-2/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04151.JPG,,TRUE, +N1,61479,sortie-7b393ba5-299e-41a7-b5c3-941a47cdb6a5,https://biolit.fr/sorties/sortie-7b393ba5-299e-41a7-b5c3-941a47cdb6a5/,Phil,,5/22/2015 0:00,15.0000000,15.0000000,48.832665000000,-3.490342000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor ,57447,observation-7b393ba5-299e-41a7-b5c3-941a47cdb6a5-3,https://biolit.fr/observations/observation-7b393ba5-299e-41a7-b5c3-941a47cdb6a5-3/,Catenella caespitosa,Caténelle en touffe,,https://biolit.fr/wp-content/uploads/2023/07/DSC04152.JPG,,TRUE, +N1,61479,sortie-7b393ba5-299e-41a7-b5c3-941a47cdb6a5,https://biolit.fr/sorties/sortie-7b393ba5-299e-41a7-b5c3-941a47cdb6a5/,Phil,,5/22/2015 0:00,15.0000000,15.0000000,48.832665000000,-3.490342000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor ,57449,observation-7b393ba5-299e-41a7-b5c3-941a47cdb6a5-4,https://biolit.fr/observations/observation-7b393ba5-299e-41a7-b5c3-941a47cdb6a5-4/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/DSC04154.JPG,,TRUE, +N1,61479,sortie-7b393ba5-299e-41a7-b5c3-941a47cdb6a5,https://biolit.fr/sorties/sortie-7b393ba5-299e-41a7-b5c3-941a47cdb6a5/,Phil,,5/22/2015 0:00,15.0000000,15.0000000,48.832665000000,-3.490342000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor ,57451,observation-7b393ba5-299e-41a7-b5c3-941a47cdb6a5-5,https://biolit.fr/observations/observation-7b393ba5-299e-41a7-b5c3-941a47cdb6a5-5/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04155.JPG,,TRUE, +N1,61479,sortie-7b393ba5-299e-41a7-b5c3-941a47cdb6a5,https://biolit.fr/sorties/sortie-7b393ba5-299e-41a7-b5c3-941a47cdb6a5/,Phil,,5/22/2015 0:00,15.0000000,15.0000000,48.832665000000,-3.490342000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor ,57453,observation-7b393ba5-299e-41a7-b5c3-941a47cdb6a5-6,https://biolit.fr/observations/observation-7b393ba5-299e-41a7-b5c3-941a47cdb6a5-6/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04156-scaled.jpg,,TRUE, +N1,61479,sortie-7b393ba5-299e-41a7-b5c3-941a47cdb6a5,https://biolit.fr/sorties/sortie-7b393ba5-299e-41a7-b5c3-941a47cdb6a5/,Phil,,5/22/2015 0:00,15.0000000,15.0000000,48.832665000000,-3.490342000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor ,57455,observation-7b393ba5-299e-41a7-b5c3-941a47cdb6a5-7,https://biolit.fr/observations/observation-7b393ba5-299e-41a7-b5c3-941a47cdb6a5-7/,Hymeniacidon perlevis,Eponge-miette de pain,,https://biolit.fr/wp-content/uploads/2023/07/DSC04158.JPG,,TRUE, +N1,61479,sortie-7b393ba5-299e-41a7-b5c3-941a47cdb6a5,https://biolit.fr/sorties/sortie-7b393ba5-299e-41a7-b5c3-941a47cdb6a5/,Phil,,5/22/2015 0:00,15.0000000,15.0000000,48.832665000000,-3.490342000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor ,57457,observation-7b393ba5-299e-41a7-b5c3-941a47cdb6a5-8,https://biolit.fr/observations/observation-7b393ba5-299e-41a7-b5c3-941a47cdb6a5-8/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/DSC04160.JPG,,TRUE,Identifiable +N1,61480,sortie-0e228366-241a-4f42-b3b8-12cc2db906ca,https://biolit.fr/sorties/sortie-0e228366-241a-4f42-b3b8-12cc2db906ca/,svenja,,5/27/2015 0:00,9.0000000,9.0000000,41.90913100000,8.688307000000,,plage de Barbicaggia,57459,observation-0e228366-241a-4f42-b3b8-12cc2db906ca,https://biolit.fr/observations/observation-0e228366-241a-4f42-b3b8-12cc2db906ca/,,,,https://biolit.fr/wp-content/uploads/2023/07/mai 25.29 Corse (177).jpg,,FALSE, +N1,61480,sortie-0e228366-241a-4f42-b3b8-12cc2db906ca,https://biolit.fr/sorties/sortie-0e228366-241a-4f42-b3b8-12cc2db906ca/,svenja,,5/27/2015 0:00,9.0000000,9.0000000,41.90913100000,8.688307000000,,plage de Barbicaggia,57461,observation-0e228366-241a-4f42-b3b8-12cc2db906ca-2,https://biolit.fr/observations/observation-0e228366-241a-4f42-b3b8-12cc2db906ca-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/mai 25.29 Corse (96)-scaled.jpg,,FALSE, +N1,61480,sortie-0e228366-241a-4f42-b3b8-12cc2db906ca,https://biolit.fr/sorties/sortie-0e228366-241a-4f42-b3b8-12cc2db906ca/,svenja,,5/27/2015 0:00,9.0000000,9.0000000,41.90913100000,8.688307000000,,plage de Barbicaggia,57463,observation-0e228366-241a-4f42-b3b8-12cc2db906ca-3,https://biolit.fr/observations/observation-0e228366-241a-4f42-b3b8-12cc2db906ca-3/,Aequorea forskalea,Equorée,,https://biolit.fr/wp-content/uploads/2023/07/mai 25.29 Corse (231).jpg,,TRUE, +N1,61481,sortie-b9ef4c5a-3251-477c-a3ff-8cc2a52f2bef,https://biolit.fr/sorties/sortie-b9ef4c5a-3251-477c-a3ff-8cc2a52f2bef/,Romuald VIALE - EXPENATURE,,06/03/2015,16.0000000,17.0000000,43.188092000000,5.555943000000,,La Ciotat,57465,observation-b9ef4c5a-3251-477c-a3ff-8cc2a52f2bef,https://biolit.fr/observations/observation-b9ef4c5a-3251-477c-a3ff-8cc2a52f2bef/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6030089-scaled.jpg,,FALSE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57467,observation-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/126_1838-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57469,observation-723da99a-1067-4770-a6a6-f15d4874df7a-2,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/126_1871-scaled.jpg,,FALSE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57471,observation-723da99a-1067-4770-a6a6-f15d4874df7a-3,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/126_1872-scaled.jpg,,FALSE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57473,observation-723da99a-1067-4770-a6a6-f15d4874df7a-4,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-4/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/126_1874-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57475,observation-723da99a-1067-4770-a6a6-f15d4874df7a-5,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-5/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/126_1870-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57477,observation-723da99a-1067-4770-a6a6-f15d4874df7a-6,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-6/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/126_1866-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57479,observation-723da99a-1067-4770-a6a6-f15d4874df7a-7,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/126_1790-scaled.jpg,,FALSE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57481,observation-723da99a-1067-4770-a6a6-f15d4874df7a-8,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-8/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/2023/07/126_1827-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57483,observation-723da99a-1067-4770-a6a6-f15d4874df7a-9,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-9/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/126_1865-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57485,observation-723da99a-1067-4770-a6a6-f15d4874df7a-10,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-10/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/126_1864-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57487,observation-723da99a-1067-4770-a6a6-f15d4874df7a-11,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-11/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/126_1869-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57489,observation-723da99a-1067-4770-a6a6-f15d4874df7a-12,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/126_1878-scaled.jpg,,FALSE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57491,observation-723da99a-1067-4770-a6a6-f15d4874df7a-13,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-13/,Vermetus triquetrus,Petit vermet,,https://biolit.fr/wp-content/uploads/2023/07/126_1887-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57493,observation-723da99a-1067-4770-a6a6-f15d4874df7a-14,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/126_1889-scaled.jpg,,FALSE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57495,observation-723da99a-1067-4770-a6a6-f15d4874df7a-15,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/126_1917-scaled.jpg,,FALSE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57497,observation-723da99a-1067-4770-a6a6-f15d4874df7a-16,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-16/,Dendropoma cristatum,Petit vermet colonial,,https://biolit.fr/wp-content/uploads/2023/07/126_1898-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57499,observation-723da99a-1067-4770-a6a6-f15d4874df7a-17,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-17/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/126_1919-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57501,observation-723da99a-1067-4770-a6a6-f15d4874df7a-18,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-18/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/126_1922-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57503,observation-723da99a-1067-4770-a6a6-f15d4874df7a-19,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/126_1902-scaled.jpg,,FALSE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57505,observation-723da99a-1067-4770-a6a6-f15d4874df7a-20,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/126_1897-scaled.jpg,,FALSE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57507,observation-723da99a-1067-4770-a6a6-f15d4874df7a-21,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-21/,Vermetus triquetrus,Petit vermet,,https://biolit.fr/wp-content/uploads/2023/07/126_1888-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57509,observation-723da99a-1067-4770-a6a6-f15d4874df7a-22,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-22/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/126_1868-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57511,observation-723da99a-1067-4770-a6a6-f15d4874df7a-23,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-23/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/126_1832-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57513,observation-723da99a-1067-4770-a6a6-f15d4874df7a-24,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-24/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/126_1830-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57515,observation-723da99a-1067-4770-a6a6-f15d4874df7a-25,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-25/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/126_1856-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57517,observation-723da99a-1067-4770-a6a6-f15d4874df7a-26,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/126_1881-scaled.jpg,,FALSE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57519,observation-723da99a-1067-4770-a6a6-f15d4874df7a-27,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-27/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/126_1854-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57521,observation-723da99a-1067-4770-a6a6-f15d4874df7a-28,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-28/,Holothuria (Platyperona) sanctori,Concombre cracheur marron,,https://biolit.fr/wp-content/uploads/2023/07/126_1893-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57523,observation-723da99a-1067-4770-a6a6-f15d4874df7a-29,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-29/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/126_1879-scaled.jpg,,TRUE, +N1,61483,sortie-c5bec688-8376-41e1-b4a4-552e86d481a7,https://biolit.fr/sorties/sortie-c5bec688-8376-41e1-b4a4-552e86d481a7/,Romuald VIALE - EXPENATURE,,06/04/2015,9.0:25,11.0:25,43.170395000000,5.615359000000,,La Ciotat,57525,observation-c5bec688-8376-41e1-b4a4-552e86d481a7,https://biolit.fr/observations/observation-c5bec688-8376-41e1-b4a4-552e86d481a7/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P6030072-scaled.jpg,,TRUE, +N1,61483,sortie-c5bec688-8376-41e1-b4a4-552e86d481a7,https://biolit.fr/sorties/sortie-c5bec688-8376-41e1-b4a4-552e86d481a7/,Romuald VIALE - EXPENATURE,,06/04/2015,9.0:25,11.0:25,43.170395000000,5.615359000000,,La Ciotat,57527,observation-c5bec688-8376-41e1-b4a4-552e86d481a7-2,https://biolit.fr/observations/observation-c5bec688-8376-41e1-b4a4-552e86d481a7-2/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P6030074-scaled.jpg,,TRUE, +N1,61484,sortie-d3b0b228-066d-4e68-8439-b2b113599485,https://biolit.fr/sorties/sortie-d3b0b228-066d-4e68-8439-b2b113599485/,Phil,,5/30/2015 0:00,14.0000000,14.0:35,47.796260000000,-4.361817000000,,Penmarc'h - Finistère,57529,observation-d3b0b228-066d-4e68-8439-b2b113599485,https://biolit.fr/observations/observation-d3b0b228-066d-4e68-8439-b2b113599485/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/DSC04480.JPG,,TRUE, +N1,61484,sortie-d3b0b228-066d-4e68-8439-b2b113599485,https://biolit.fr/sorties/sortie-d3b0b228-066d-4e68-8439-b2b113599485/,Phil,,5/30/2015 0:00,14.0000000,14.0:35,47.796260000000,-4.361817000000,,Penmarc'h - Finistère,57531,observation-d3b0b228-066d-4e68-8439-b2b113599485-2,https://biolit.fr/observations/observation-d3b0b228-066d-4e68-8439-b2b113599485-2/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/DSC04478.JPG,,TRUE, +N1,61484,sortie-d3b0b228-066d-4e68-8439-b2b113599485,https://biolit.fr/sorties/sortie-d3b0b228-066d-4e68-8439-b2b113599485/,Phil,,5/30/2015 0:00,14.0000000,14.0:35,47.796260000000,-4.361817000000,,Penmarc'h - Finistère,57533,observation-d3b0b228-066d-4e68-8439-b2b113599485-3,https://biolit.fr/observations/observation-d3b0b228-066d-4e68-8439-b2b113599485-3/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/DSC04475.JPG,,TRUE, +N1,61484,sortie-d3b0b228-066d-4e68-8439-b2b113599485,https://biolit.fr/sorties/sortie-d3b0b228-066d-4e68-8439-b2b113599485/,Phil,,5/30/2015 0:00,14.0000000,14.0:35,47.796260000000,-4.361817000000,,Penmarc'h - Finistère,57535,observation-d3b0b228-066d-4e68-8439-b2b113599485-4,https://biolit.fr/observations/observation-d3b0b228-066d-4e68-8439-b2b113599485-4/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/DSC04483.JPG,,TRUE, +N1,61485,sortie-8c0feff1-86a4-4be3-b657-7802b5357677,https://biolit.fr/sorties/sortie-8c0feff1-86a4-4be3-b657-7802b5357677/,Phil,,5/30/2015 0:00,14.0:25,14.0000000,47.795949000000,-4.362012000000,,Penmarc'h - Finistère,57537,observation-8c0feff1-86a4-4be3-b657-7802b5357677,https://biolit.fr/observations/observation-8c0feff1-86a4-4be3-b657-7802b5357677/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04497.JPG,,FALSE, +N1,61485,sortie-8c0feff1-86a4-4be3-b657-7802b5357677,https://biolit.fr/sorties/sortie-8c0feff1-86a4-4be3-b657-7802b5357677/,Phil,,5/30/2015 0:00,14.0:25,14.0000000,47.795949000000,-4.362012000000,,Penmarc'h - Finistère,57539,observation-8c0feff1-86a4-4be3-b657-7802b5357677-2,https://biolit.fr/observations/observation-8c0feff1-86a4-4be3-b657-7802b5357677-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04496.JPG,,FALSE, +N1,61485,sortie-8c0feff1-86a4-4be3-b657-7802b5357677,https://biolit.fr/sorties/sortie-8c0feff1-86a4-4be3-b657-7802b5357677/,Phil,,5/30/2015 0:00,14.0:25,14.0000000,47.795949000000,-4.362012000000,,Penmarc'h - Finistère,57541,observation-8c0feff1-86a4-4be3-b657-7802b5357677-3,https://biolit.fr/observations/observation-8c0feff1-86a4-4be3-b657-7802b5357677-3/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/DSC04490.JPG,,TRUE, +N1,61485,sortie-8c0feff1-86a4-4be3-b657-7802b5357677,https://biolit.fr/sorties/sortie-8c0feff1-86a4-4be3-b657-7802b5357677/,Phil,,5/30/2015 0:00,14.0:25,14.0000000,47.795949000000,-4.362012000000,,Penmarc'h - Finistère,57543,observation-8c0feff1-86a4-4be3-b657-7802b5357677-4,https://biolit.fr/observations/observation-8c0feff1-86a4-4be3-b657-7802b5357677-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04488.JPG,,FALSE, +N1,61486,sortie-b5eeac83-be2e-4543-acd0-0ed0a2fb83d1,https://biolit.fr/sorties/sortie-b5eeac83-be2e-4543-acd0-0ed0a2fb83d1/,Phil,,5/31/2015 0:00,14.0:55,16.0:55,47.797525000000,-4.327927000000,,Penmarc'h - Finistère,57545,observation-b5eeac83-be2e-4543-acd0-0ed0a2fb83d1,https://biolit.fr/observations/observation-b5eeac83-be2e-4543-acd0-0ed0a2fb83d1/,Leathesia marina,Léathésie difforme,,https://biolit.fr/wp-content/uploads/2023/07/DSC04460.JPG,,TRUE, +N1,61486,sortie-b5eeac83-be2e-4543-acd0-0ed0a2fb83d1,https://biolit.fr/sorties/sortie-b5eeac83-be2e-4543-acd0-0ed0a2fb83d1/,Phil,,5/31/2015 0:00,14.0:55,16.0:55,47.797525000000,-4.327927000000,,Penmarc'h - Finistère,57547,observation-b5eeac83-be2e-4543-acd0-0ed0a2fb83d1-2,https://biolit.fr/observations/observation-b5eeac83-be2e-4543-acd0-0ed0a2fb83d1-2/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/DSC04466.JPG,,TRUE, +N1,61486,sortie-b5eeac83-be2e-4543-acd0-0ed0a2fb83d1,https://biolit.fr/sorties/sortie-b5eeac83-be2e-4543-acd0-0ed0a2fb83d1/,Phil,,5/31/2015 0:00,14.0:55,16.0:55,47.797525000000,-4.327927000000,,Penmarc'h - Finistère,57549,observation-b5eeac83-be2e-4543-acd0-0ed0a2fb83d1-3,https://biolit.fr/observations/observation-b5eeac83-be2e-4543-acd0-0ed0a2fb83d1-3/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/DSC04401.JPG,,TRUE, +N1,61487,sortie-d4e33f82-2fb2-4280-98d0-aa001c50778d,https://biolit.fr/sorties/sortie-d4e33f82-2fb2-4280-98d0-aa001c50778d/,Phil,,5/30/2015 0:00,13.0:15,13.0:25,47.791102000000,-4.247389000000,,Lechiagat - Finistère,57551,observation-d4e33f82-2fb2-4280-98d0-aa001c50778d,https://biolit.fr/observations/observation-d4e33f82-2fb2-4280-98d0-aa001c50778d/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04438.JPG,,FALSE, +N1,61487,sortie-d4e33f82-2fb2-4280-98d0-aa001c50778d,https://biolit.fr/sorties/sortie-d4e33f82-2fb2-4280-98d0-aa001c50778d/,Phil,,5/30/2015 0:00,13.0:15,13.0:25,47.791102000000,-4.247389000000,,Lechiagat - Finistère,57553,observation-d4e33f82-2fb2-4280-98d0-aa001c50778d-2,https://biolit.fr/observations/observation-d4e33f82-2fb2-4280-98d0-aa001c50778d-2/,Calidris alba,Bécasseau sanderling,,https://biolit.fr/wp-content/uploads/2023/07/DSC04445.JPG,,TRUE, +N1,61488,sortie-f4f8b8d6-0e9e-4b0f-b22d-116facee38b6,https://biolit.fr/sorties/sortie-f4f8b8d6-0e9e-4b0f-b22d-116facee38b6/,Phil,,5/30/2015 0:00,12.0:15,12.0000000,47.833487000000,-4.175902000000,,Loctydy - Finistère,57555,observation-f4f8b8d6-0e9e-4b0f-b22d-116facee38b6,https://biolit.fr/observations/observation-f4f8b8d6-0e9e-4b0f-b22d-116facee38b6/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/DSC04429.JPG,,TRUE, +N1,61488,sortie-f4f8b8d6-0e9e-4b0f-b22d-116facee38b6,https://biolit.fr/sorties/sortie-f4f8b8d6-0e9e-4b0f-b22d-116facee38b6/,Phil,,5/30/2015 0:00,12.0:15,12.0000000,47.833487000000,-4.175902000000,,Loctydy - Finistère,57557,observation-f4f8b8d6-0e9e-4b0f-b22d-116facee38b6-2,https://biolit.fr/observations/observation-f4f8b8d6-0e9e-4b0f-b22d-116facee38b6-2/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/DSC04435.JPG,,TRUE, +N1,61488,sortie-f4f8b8d6-0e9e-4b0f-b22d-116facee38b6,https://biolit.fr/sorties/sortie-f4f8b8d6-0e9e-4b0f-b22d-116facee38b6/,Phil,,5/30/2015 0:00,12.0:15,12.0000000,47.833487000000,-4.175902000000,,Loctydy - Finistère,57559,observation-f4f8b8d6-0e9e-4b0f-b22d-116facee38b6-3,https://biolit.fr/observations/observation-f4f8b8d6-0e9e-4b0f-b22d-116facee38b6-3/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/DSC04434.JPG,,TRUE, +N1,61489,sortie-cb2bc043-3bdc-4417-8ac9-8dada232a3f5,https://biolit.fr/sorties/sortie-cb2bc043-3bdc-4417-8ac9-8dada232a3f5/,Phil,,5/29/2015 0:00,12.000005,12.0000000,47.79612500000,-4.355290000000,,Kérity - Finistère,57561,observation-cb2bc043-3bdc-4417-8ac9-8dada232a3f5,https://biolit.fr/observations/observation-cb2bc043-3bdc-4417-8ac9-8dada232a3f5/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/DSC04407.JPG,,TRUE, +N1,61489,sortie-cb2bc043-3bdc-4417-8ac9-8dada232a3f5,https://biolit.fr/sorties/sortie-cb2bc043-3bdc-4417-8ac9-8dada232a3f5/,Phil,,5/29/2015 0:00,12.000005,12.0000000,47.79612500000,-4.355290000000,,Kérity - Finistère,57563,observation-cb2bc043-3bdc-4417-8ac9-8dada232a3f5-2,https://biolit.fr/observations/observation-cb2bc043-3bdc-4417-8ac9-8dada232a3f5-2/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/DSC04411.JPG,,TRUE, +N1,61489,sortie-cb2bc043-3bdc-4417-8ac9-8dada232a3f5,https://biolit.fr/sorties/sortie-cb2bc043-3bdc-4417-8ac9-8dada232a3f5/,Phil,,5/29/2015 0:00,12.000005,12.0000000,47.79612500000,-4.355290000000,,Kérity - Finistère,57565,observation-cb2bc043-3bdc-4417-8ac9-8dada232a3f5-3,https://biolit.fr/observations/observation-cb2bc043-3bdc-4417-8ac9-8dada232a3f5-3/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/DSC04408.JPG,,TRUE, +N1,61489,sortie-cb2bc043-3bdc-4417-8ac9-8dada232a3f5,https://biolit.fr/sorties/sortie-cb2bc043-3bdc-4417-8ac9-8dada232a3f5/,Phil,,5/29/2015 0:00,12.000005,12.0000000,47.79612500000,-4.355290000000,,Kérity - Finistère,57567,observation-cb2bc043-3bdc-4417-8ac9-8dada232a3f5-4,https://biolit.fr/observations/observation-cb2bc043-3bdc-4417-8ac9-8dada232a3f5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04426.JPG,,FALSE, +N1,61490,sortie-0ecbfbd0-9a9b-44fd-8b4d-7da13b3a61b9,https://biolit.fr/sorties/sortie-0ecbfbd0-9a9b-44fd-8b4d-7da13b3a61b9/,Phil,,5/28/2015 0:00,15.000005,15.0000000,47.792591000000,-3.85141900000,,Trévignon Finistère,57569,observation-0ecbfbd0-9a9b-44fd-8b4d-7da13b3a61b9,https://biolit.fr/observations/observation-0ecbfbd0-9a9b-44fd-8b4d-7da13b3a61b9/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/DSC04397.JPG,,TRUE, +N1,61490,sortie-0ecbfbd0-9a9b-44fd-8b4d-7da13b3a61b9,https://biolit.fr/sorties/sortie-0ecbfbd0-9a9b-44fd-8b4d-7da13b3a61b9/,Phil,,5/28/2015 0:00,15.000005,15.0000000,47.792591000000,-3.85141900000,,Trévignon Finistère,57571,observation-0ecbfbd0-9a9b-44fd-8b4d-7da13b3a61b9-2,https://biolit.fr/observations/observation-0ecbfbd0-9a9b-44fd-8b4d-7da13b3a61b9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04398.JPG,,FALSE, +N1,61490,sortie-0ecbfbd0-9a9b-44fd-8b4d-7da13b3a61b9,https://biolit.fr/sorties/sortie-0ecbfbd0-9a9b-44fd-8b4d-7da13b3a61b9/,Phil,,5/28/2015 0:00,15.000005,15.0000000,47.792591000000,-3.85141900000,,Trévignon Finistère,57573,observation-0ecbfbd0-9a9b-44fd-8b4d-7da13b3a61b9-3,https://biolit.fr/observations/observation-0ecbfbd0-9a9b-44fd-8b4d-7da13b3a61b9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04399.JPG,,FALSE, +N1,61491,sortie-a6bd7633-8a11-4150-96d0-ad7921870b2f,https://biolit.fr/sorties/sortie-a6bd7633-8a11-4150-96d0-ad7921870b2f/,Phil,,5/28/2015 0:00,14.0:55,15.0000000,47.792379000000,-3.851009000000,,Trévignon - Finistère,57575,observation-a6bd7633-8a11-4150-96d0-ad7921870b2f,https://biolit.fr/observations/observation-a6bd7633-8a11-4150-96d0-ad7921870b2f/,Loligo vulgaris,Encornet européen,,https://biolit.fr/wp-content/uploads/2023/07/DSC04385.JPG,,TRUE, +N1,61491,sortie-a6bd7633-8a11-4150-96d0-ad7921870b2f,https://biolit.fr/sorties/sortie-a6bd7633-8a11-4150-96d0-ad7921870b2f/,Phil,,5/28/2015 0:00,14.0:55,15.0000000,47.792379000000,-3.851009000000,,Trévignon - Finistère,57577,observation-a6bd7633-8a11-4150-96d0-ad7921870b2f-2,https://biolit.fr/observations/observation-a6bd7633-8a11-4150-96d0-ad7921870b2f-2/,Loligo vulgaris,Encornet européen,,https://biolit.fr/wp-content/uploads/2023/07/DSC04388.JPG,,TRUE, +N1,61491,sortie-a6bd7633-8a11-4150-96d0-ad7921870b2f,https://biolit.fr/sorties/sortie-a6bd7633-8a11-4150-96d0-ad7921870b2f/,Phil,,5/28/2015 0:00,14.0:55,15.0000000,47.792379000000,-3.851009000000,,Trévignon - Finistère,57579,observation-a6bd7633-8a11-4150-96d0-ad7921870b2f-3,https://biolit.fr/observations/observation-a6bd7633-8a11-4150-96d0-ad7921870b2f-3/,Loligo spp.,Calmar,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC04392.JPG,,TRUE, +N1,61491,sortie-a6bd7633-8a11-4150-96d0-ad7921870b2f,https://biolit.fr/sorties/sortie-a6bd7633-8a11-4150-96d0-ad7921870b2f/,Phil,,5/28/2015 0:00,14.0:55,15.0000000,47.792379000000,-3.851009000000,,Trévignon - Finistère,57581,observation-a6bd7633-8a11-4150-96d0-ad7921870b2f-4,https://biolit.fr/observations/observation-a6bd7633-8a11-4150-96d0-ad7921870b2f-4/,Loligo spp.,Calmar,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC04393.JPG,,TRUE, +N1,61492,sortie-0748ef29-55aa-47e4-ae06-7f833ca6fcee,https://biolit.fr/sorties/sortie-0748ef29-55aa-47e4-ae06-7f833ca6fcee/,Phil,,5/28/2015 0:00,14.0000000,14.0:55,47.791845000000,-3.850386000000,,Trévignon Finistère,57583,observation-0748ef29-55aa-47e4-ae06-7f833ca6fcee,https://biolit.fr/observations/observation-0748ef29-55aa-47e4-ae06-7f833ca6fcee/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/DSC04378.JPG,,TRUE, +N1,61492,sortie-0748ef29-55aa-47e4-ae06-7f833ca6fcee,https://biolit.fr/sorties/sortie-0748ef29-55aa-47e4-ae06-7f833ca6fcee/,Phil,,5/28/2015 0:00,14.0000000,14.0:55,47.791845000000,-3.850386000000,,Trévignon Finistère,57585,observation-0748ef29-55aa-47e4-ae06-7f833ca6fcee-2,https://biolit.fr/observations/observation-0748ef29-55aa-47e4-ae06-7f833ca6fcee-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/DSC04379.JPG,,TRUE, +N1,61492,sortie-0748ef29-55aa-47e4-ae06-7f833ca6fcee,https://biolit.fr/sorties/sortie-0748ef29-55aa-47e4-ae06-7f833ca6fcee/,Phil,,5/28/2015 0:00,14.0000000,14.0:55,47.791845000000,-3.850386000000,,Trévignon Finistère,57587,observation-0748ef29-55aa-47e4-ae06-7f833ca6fcee-3,https://biolit.fr/observations/observation-0748ef29-55aa-47e4-ae06-7f833ca6fcee-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/DSC04380.JPG,,TRUE, +N1,61492,sortie-0748ef29-55aa-47e4-ae06-7f833ca6fcee,https://biolit.fr/sorties/sortie-0748ef29-55aa-47e4-ae06-7f833ca6fcee/,Phil,,5/28/2015 0:00,14.0000000,14.0:55,47.791845000000,-3.850386000000,,Trévignon Finistère,57589,observation-0748ef29-55aa-47e4-ae06-7f833ca6fcee-4,https://biolit.fr/observations/observation-0748ef29-55aa-47e4-ae06-7f833ca6fcee-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04389.JPG,,TRUE, +N1,61493,sortie-ae2de821-6220-41b8-a359-be0635f3c383,https://biolit.fr/sorties/sortie-ae2de821-6220-41b8-a359-be0635f3c383/,Phil,,5/28/2015 0:00,14.0000000,14.0:35,47.794802000000,-3.853187000000,,Trévignon - Finistère,57591,observation-ae2de821-6220-41b8-a359-be0635f3c383,https://biolit.fr/observations/observation-ae2de821-6220-41b8-a359-be0635f3c383/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04363.JPG,,FALSE, +N1,61493,sortie-ae2de821-6220-41b8-a359-be0635f3c383,https://biolit.fr/sorties/sortie-ae2de821-6220-41b8-a359-be0635f3c383/,Phil,,5/28/2015 0:00,14.0000000,14.0:35,47.794802000000,-3.853187000000,,Trévignon - Finistère,57593,observation-ae2de821-6220-41b8-a359-be0635f3c383-2,https://biolit.fr/observations/observation-ae2de821-6220-41b8-a359-be0635f3c383-2/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/DSC04365.JPG,,TRUE, +N1,61494,sortie-b15e3424-5b88-4af8-8653-b5e616b0f889,https://biolit.fr/sorties/sortie-b15e3424-5b88-4af8-8653-b5e616b0f889/,SIBOJAÏ - Syndicat Intercommunal du Bolmon et du Jaï,,5/22/2015 0:00,15.0000000,17.0000000,43.419355000000,5.174415000000,,Lido du Jaï - Marignane,57595,observation-b15e3424-5b88-4af8-8653-b5e616b0f889,https://biolit.fr/observations/observation-b15e3424-5b88-4af8-8653-b5e616b0f889/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0084.JPG,,FALSE, +N1,61495,sortie-503488f6-d8e2-4d44-a21b-95649020f116,https://biolit.fr/sorties/sortie-503488f6-d8e2-4d44-a21b-95649020f116/,Phil,,5/27/2015 0:00,10.0000000,10.0:15,47.833154000000,-4.1754940000,,Loctudy - Finistère,57597,observation-503488f6-d8e2-4d44-a21b-95649020f116,https://biolit.fr/observations/observation-503488f6-d8e2-4d44-a21b-95649020f116/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/DSC04315.JPG,,TRUE, +N1,61495,sortie-503488f6-d8e2-4d44-a21b-95649020f116,https://biolit.fr/sorties/sortie-503488f6-d8e2-4d44-a21b-95649020f116/,Phil,,5/27/2015 0:00,10.0000000,10.0:15,47.833154000000,-4.1754940000,,Loctudy - Finistère,57599,observation-503488f6-d8e2-4d44-a21b-95649020f116-2,https://biolit.fr/observations/observation-503488f6-d8e2-4d44-a21b-95649020f116-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04313.JPG,,FALSE, +N1,61495,sortie-503488f6-d8e2-4d44-a21b-95649020f116,https://biolit.fr/sorties/sortie-503488f6-d8e2-4d44-a21b-95649020f116/,Phil,,5/27/2015 0:00,10.0000000,10.0:15,47.833154000000,-4.1754940000,,Loctudy - Finistère,57601,observation-503488f6-d8e2-4d44-a21b-95649020f116-3,https://biolit.fr/observations/observation-503488f6-d8e2-4d44-a21b-95649020f116-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04317.JPG,,FALSE, +N1,61495,sortie-503488f6-d8e2-4d44-a21b-95649020f116,https://biolit.fr/sorties/sortie-503488f6-d8e2-4d44-a21b-95649020f116/,Phil,,5/27/2015 0:00,10.0000000,10.0:15,47.833154000000,-4.1754940000,,Loctudy - Finistère,57603,observation-503488f6-d8e2-4d44-a21b-95649020f116-4,https://biolit.fr/observations/observation-503488f6-d8e2-4d44-a21b-95649020f116-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04316.JPG,,FALSE, +N1,61496,sortie-13c5794b-2f91-4863-aac7-98b9bb032817,https://biolit.fr/sorties/sortie-13c5794b-2f91-4863-aac7-98b9bb032817/,Phil,,5/22/2015 0:00,15.0:25,15.0000000,48.832981000000,-3.489811000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57605,observation-13c5794b-2f91-4863-aac7-98b9bb032817,https://biolit.fr/observations/observation-13c5794b-2f91-4863-aac7-98b9bb032817/,Onchidella celtica,Limace celtique,,https://biolit.fr/wp-content/uploads/2023/07/DSC04214.JPG,,TRUE, +N1,61496,sortie-13c5794b-2f91-4863-aac7-98b9bb032817,https://biolit.fr/sorties/sortie-13c5794b-2f91-4863-aac7-98b9bb032817/,Phil,,5/22/2015 0:00,15.0:25,15.0000000,48.832981000000,-3.489811000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57607,observation-13c5794b-2f91-4863-aac7-98b9bb032817-2,https://biolit.fr/observations/observation-13c5794b-2f91-4863-aac7-98b9bb032817-2/,Onchidella celtica,Limace celtique,,https://biolit.fr/wp-content/uploads/2023/07/DSC04213.JPG,,TRUE, +N1,61496,sortie-13c5794b-2f91-4863-aac7-98b9bb032817,https://biolit.fr/sorties/sortie-13c5794b-2f91-4863-aac7-98b9bb032817/,Phil,,5/22/2015 0:00,15.0:25,15.0000000,48.832981000000,-3.489811000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57609,observation-13c5794b-2f91-4863-aac7-98b9bb032817-3,https://biolit.fr/observations/observation-13c5794b-2f91-4863-aac7-98b9bb032817-3/,Onchidella celtica,Limace celtique,,https://biolit.fr/wp-content/uploads/2023/07/DSC04210.JPG,,TRUE, +N1,61496,sortie-13c5794b-2f91-4863-aac7-98b9bb032817,https://biolit.fr/sorties/sortie-13c5794b-2f91-4863-aac7-98b9bb032817/,Phil,,5/22/2015 0:00,15.0:25,15.0000000,48.832981000000,-3.489811000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57611,observation-13c5794b-2f91-4863-aac7-98b9bb032817-4,https://biolit.fr/observations/observation-13c5794b-2f91-4863-aac7-98b9bb032817-4/,Onchidella celtica,Limace celtique,,https://biolit.fr/wp-content/uploads/2023/07/DSC04216.JPG,,TRUE, +N1,61497,sortie-934b2ca9-046d-49fa-9fe1-3d5fce3333e2,https://biolit.fr/sorties/sortie-934b2ca9-046d-49fa-9fe1-3d5fce3333e2/,Phil,,5/16/2015 0:00,16.0:15,16.0000000,47.803370000000,-4.375661000000,,Penmarc'h - Finistère,57613,observation-934b2ca9-046d-49fa-9fe1-3d5fce3333e2,https://biolit.fr/observations/observation-934b2ca9-046d-49fa-9fe1-3d5fce3333e2/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/DSC04046.JPG,,TRUE, +N1,61497,sortie-934b2ca9-046d-49fa-9fe1-3d5fce3333e2,https://biolit.fr/sorties/sortie-934b2ca9-046d-49fa-9fe1-3d5fce3333e2/,Phil,,5/16/2015 0:00,16.0:15,16.0000000,47.803370000000,-4.375661000000,,Penmarc'h - Finistère,57615,observation-934b2ca9-046d-49fa-9fe1-3d5fce3333e2-2,https://biolit.fr/observations/observation-934b2ca9-046d-49fa-9fe1-3d5fce3333e2-2/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/DSC04064.JPG,,TRUE, +N1,61497,sortie-934b2ca9-046d-49fa-9fe1-3d5fce3333e2,https://biolit.fr/sorties/sortie-934b2ca9-046d-49fa-9fe1-3d5fce3333e2/,Phil,,5/16/2015 0:00,16.0:15,16.0000000,47.803370000000,-4.375661000000,,Penmarc'h - Finistère,57617,observation-934b2ca9-046d-49fa-9fe1-3d5fce3333e2-3,https://biolit.fr/observations/observation-934b2ca9-046d-49fa-9fe1-3d5fce3333e2-3/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/DSC04071.JPG,,TRUE, +N1,61497,sortie-934b2ca9-046d-49fa-9fe1-3d5fce3333e2,https://biolit.fr/sorties/sortie-934b2ca9-046d-49fa-9fe1-3d5fce3333e2/,Phil,,5/16/2015 0:00,16.0:15,16.0000000,47.803370000000,-4.375661000000,,Penmarc'h - Finistère,57619,observation-934b2ca9-046d-49fa-9fe1-3d5fce3333e2-4,https://biolit.fr/observations/observation-934b2ca9-046d-49fa-9fe1-3d5fce3333e2-4/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/DSC04075.JPG,,TRUE, +N1,61497,sortie-934b2ca9-046d-49fa-9fe1-3d5fce3333e2,https://biolit.fr/sorties/sortie-934b2ca9-046d-49fa-9fe1-3d5fce3333e2/,Phil,,5/16/2015 0:00,16.0:15,16.0000000,47.803370000000,-4.375661000000,,Penmarc'h - Finistère,57621,observation-934b2ca9-046d-49fa-9fe1-3d5fce3333e2-5,https://biolit.fr/observations/observation-934b2ca9-046d-49fa-9fe1-3d5fce3333e2-5/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/DSC04078.JPG,,TRUE, +N1,61497,sortie-934b2ca9-046d-49fa-9fe1-3d5fce3333e2,https://biolit.fr/sorties/sortie-934b2ca9-046d-49fa-9fe1-3d5fce3333e2/,Phil,,5/16/2015 0:00,16.0:15,16.0000000,47.803370000000,-4.375661000000,,Penmarc'h - Finistère,57623,observation-934b2ca9-046d-49fa-9fe1-3d5fce3333e2-6,https://biolit.fr/observations/observation-934b2ca9-046d-49fa-9fe1-3d5fce3333e2-6/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/DSC04073.JPG,,TRUE, +N1,61498,sortie-0387ca71-7f00-4c62-ad68-d76e76f7bab5,https://biolit.fr/sorties/sortie-0387ca71-7f00-4c62-ad68-d76e76f7bab5/,Phil,,5/16/2015 0:00,16.0000000,16.000005,47.799409000000,-4.373862000000,,Penmarc'h - Finistère,57625,observation-0387ca71-7f00-4c62-ad68-d76e76f7bab5,https://biolit.fr/observations/observation-0387ca71-7f00-4c62-ad68-d76e76f7bab5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04082.JPG,,FALSE, +N1,61498,sortie-0387ca71-7f00-4c62-ad68-d76e76f7bab5,https://biolit.fr/sorties/sortie-0387ca71-7f00-4c62-ad68-d76e76f7bab5/,Phil,,5/16/2015 0:00,16.0000000,16.000005,47.799409000000,-4.373862000000,,Penmarc'h - Finistère,57627,observation-0387ca71-7f00-4c62-ad68-d76e76f7bab5-2,https://biolit.fr/observations/observation-0387ca71-7f00-4c62-ad68-d76e76f7bab5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04079.JPG,,FALSE, +N1,61498,sortie-0387ca71-7f00-4c62-ad68-d76e76f7bab5,https://biolit.fr/sorties/sortie-0387ca71-7f00-4c62-ad68-d76e76f7bab5/,Phil,,5/16/2015 0:00,16.0000000,16.000005,47.799409000000,-4.373862000000,,Penmarc'h - Finistère,57629,observation-0387ca71-7f00-4c62-ad68-d76e76f7bab5-3,https://biolit.fr/observations/observation-0387ca71-7f00-4c62-ad68-d76e76f7bab5-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04060_1.JPG,,TRUE, +N1,61499,sortie-a0bc9bb9-25b3-4709-b005-8a53f14fd6fd,https://biolit.fr/sorties/sortie-a0bc9bb9-25b3-4709-b005-8a53f14fd6fd/,Phil,,5/16/2015 0:00,15.0000000,16.0000000,47.799734000000,-4.374179000000,,Penmarc'h - Finistère,57631,observation-a0bc9bb9-25b3-4709-b005-8a53f14fd6fd,https://biolit.fr/observations/observation-a0bc9bb9-25b3-4709-b005-8a53f14fd6fd/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC04047.JPG,,TRUE, +N1,61499,sortie-a0bc9bb9-25b3-4709-b005-8a53f14fd6fd,https://biolit.fr/sorties/sortie-a0bc9bb9-25b3-4709-b005-8a53f14fd6fd/,Phil,,5/16/2015 0:00,15.0000000,16.0000000,47.799734000000,-4.374179000000,,Penmarc'h - Finistère,57633,observation-a0bc9bb9-25b3-4709-b005-8a53f14fd6fd-2,https://biolit.fr/observations/observation-a0bc9bb9-25b3-4709-b005-8a53f14fd6fd-2/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/2023/07/DSC04048_3.JPG,,TRUE, +N1,61500,sortie-0348c797-d5bc-4cd6-946d-9972897f6864,https://biolit.fr/sorties/sortie-0348c797-d5bc-4cd6-946d-9972897f6864/,Phil,,5/19/2015 0:00,16.0000000,16.0000000,47.799712000000,-4.37488900000,,Pemarc'h - Finistère,57635,observation-0348c797-d5bc-4cd6-946d-9972897f6864,https://biolit.fr/observations/observation-0348c797-d5bc-4cd6-946d-9972897f6864/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04061.JPG,,TRUE, +N1,61500,sortie-0348c797-d5bc-4cd6-946d-9972897f6864,https://biolit.fr/sorties/sortie-0348c797-d5bc-4cd6-946d-9972897f6864/,Phil,,5/19/2015 0:00,16.0000000,16.0000000,47.799712000000,-4.37488900000,,Pemarc'h - Finistère,57637,observation-0348c797-d5bc-4cd6-946d-9972897f6864-2,https://biolit.fr/observations/observation-0348c797-d5bc-4cd6-946d-9972897f6864-2/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/2023/07/DSC04057.JPG,,TRUE, +N1,61500,sortie-0348c797-d5bc-4cd6-946d-9972897f6864,https://biolit.fr/sorties/sortie-0348c797-d5bc-4cd6-946d-9972897f6864/,Phil,,5/19/2015 0:00,16.0000000,16.0000000,47.799712000000,-4.37488900000,,Pemarc'h - Finistère,57639,observation-0348c797-d5bc-4cd6-946d-9972897f6864-3,https://biolit.fr/observations/observation-0348c797-d5bc-4cd6-946d-9972897f6864-3/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/2023/07/DSC04056.JPG,,TRUE, +N1,61501,sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b,https://biolit.fr/sorties/sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b/,Malori,,5/24/2015 0:00,10.0000000,12.0000000,43.272931000000,5.362293000000,,Plage des Prophètes,57641,observation-629bd8a0-4475-4981-b2cd-c89ef67d844b,https://biolit.fr/observations/observation-629bd8a0-4475-4981-b2cd-c89ef67d844b/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/1498143_10155487939910408_3828853149811259317_o.jpg,,TRUE, +N1,61501,sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b,https://biolit.fr/sorties/sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b/,Malori,,5/24/2015 0:00,10.0000000,12.0000000,43.272931000000,5.362293000000,,Plage des Prophètes,57643,observation-629bd8a0-4475-4981-b2cd-c89ef67d844b-2,https://biolit.fr/observations/observation-629bd8a0-4475-4981-b2cd-c89ef67d844b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/11027961_10155487940055408_3911189931710345403_n.jpg,,FALSE, +N1,61501,sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b,https://biolit.fr/sorties/sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b/,Malori,,5/24/2015 0:00,10.0000000,12.0000000,43.272931000000,5.362293000000,,Plage des Prophètes,57645,observation-629bd8a0-4475-4981-b2cd-c89ef67d844b-3,https://biolit.fr/observations/observation-629bd8a0-4475-4981-b2cd-c89ef67d844b-3/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/11160646_10155487940185408_8117930157090936950_o.jpg,,TRUE, +N1,61501,sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b,https://biolit.fr/sorties/sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b/,Malori,,5/24/2015 0:00,10.0000000,12.0000000,43.272931000000,5.362293000000,,Plage des Prophètes,57647,observation-629bd8a0-4475-4981-b2cd-c89ef67d844b-4,https://biolit.fr/observations/observation-629bd8a0-4475-4981-b2cd-c89ef67d844b-4/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/11226200_10155487940050408_647450860958590368_o.jpg,,TRUE, +N1,61501,sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b,https://biolit.fr/sorties/sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b/,Malori,,5/24/2015 0:00,10.0000000,12.0000000,43.272931000000,5.362293000000,,Plage des Prophètes,57649,observation-629bd8a0-4475-4981-b2cd-c89ef67d844b-5,https://biolit.fr/observations/observation-629bd8a0-4475-4981-b2cd-c89ef67d844b-5/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/11255766_10155487940200408_4248557070134908646_o.jpg,,TRUE, +N1,61501,sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b,https://biolit.fr/sorties/sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b/,Malori,,5/24/2015 0:00,10.0000000,12.0000000,43.272931000000,5.362293000000,,Plage des Prophètes,57651,observation-629bd8a0-4475-4981-b2cd-c89ef67d844b-6,https://biolit.fr/observations/observation-629bd8a0-4475-4981-b2cd-c89ef67d844b-6/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/11289160_10155487939890408_56453424446339670_o.jpg,,TRUE, +N1,61501,sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b,https://biolit.fr/sorties/sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b/,Malori,,5/24/2015 0:00,10.0000000,12.0000000,43.272931000000,5.362293000000,,Plage des Prophètes,57653,observation-629bd8a0-4475-4981-b2cd-c89ef67d844b-7,https://biolit.fr/observations/observation-629bd8a0-4475-4981-b2cd-c89ef67d844b-7/,Dictyota dichotoma,Dictyote,,https://biolit.fr/wp-content/uploads/2023/07/11312886_10155487939895408_1264194124361014917_o.jpg,,TRUE, +N1,61501,sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b,https://biolit.fr/sorties/sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b/,Malori,,5/24/2015 0:00,10.0000000,12.0000000,43.272931000000,5.362293000000,,Plage des Prophètes,57655,observation-629bd8a0-4475-4981-b2cd-c89ef67d844b-8,https://biolit.fr/observations/observation-629bd8a0-4475-4981-b2cd-c89ef67d844b-8/,Maja crispata,Petite araignée de mer,,https://biolit.fr/wp-content/uploads/2023/07/11336915_10155487940255408_4076737847114719371_o.jpg,,TRUE, +N1,61501,sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b,https://biolit.fr/sorties/sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b/,Malori,,5/24/2015 0:00,10.0000000,12.0000000,43.272931000000,5.362293000000,,Plage des Prophètes,57657,observation-629bd8a0-4475-4981-b2cd-c89ef67d844b-9,https://biolit.fr/observations/observation-629bd8a0-4475-4981-b2cd-c89ef67d844b-9/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/11357023_10155487940290408_765354827558513727_o.jpg,,TRUE, +N1,61502,sortie-91667b42-912c-4dd6-b7b4-6620b347088f,https://biolit.fr/sorties/sortie-91667b42-912c-4dd6-b7b4-6620b347088f/,Phil,,5/23/2015 0:00,17.0000000,18.0000000,47.787534000000,-4.271895000000,,Lehan - Treffiagat - Finistère,57659,observation-91667b42-912c-4dd6-b7b4-6620b347088f,https://biolit.fr/observations/observation-91667b42-912c-4dd6-b7b4-6620b347088f/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC04266.JPG,,TRUE, +N1,61502,sortie-91667b42-912c-4dd6-b7b4-6620b347088f,https://biolit.fr/sorties/sortie-91667b42-912c-4dd6-b7b4-6620b347088f/,Phil,,5/23/2015 0:00,17.0000000,18.0000000,47.787534000000,-4.271895000000,,Lehan - Treffiagat - Finistère,57661,observation-91667b42-912c-4dd6-b7b4-6620b347088f-2,https://biolit.fr/observations/observation-91667b42-912c-4dd6-b7b4-6620b347088f-2/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC04267.JPG,,TRUE, +N1,61502,sortie-91667b42-912c-4dd6-b7b4-6620b347088f,https://biolit.fr/sorties/sortie-91667b42-912c-4dd6-b7b4-6620b347088f/,Phil,,5/23/2015 0:00,17.0000000,18.0000000,47.787534000000,-4.271895000000,,Lehan - Treffiagat - Finistère,57663,observation-91667b42-912c-4dd6-b7b4-6620b347088f-3,https://biolit.fr/observations/observation-91667b42-912c-4dd6-b7b4-6620b347088f-3/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC04269.JPG,,TRUE, +N1,61502,sortie-91667b42-912c-4dd6-b7b4-6620b347088f,https://biolit.fr/sorties/sortie-91667b42-912c-4dd6-b7b4-6620b347088f/,Phil,,5/23/2015 0:00,17.0000000,18.0000000,47.787534000000,-4.271895000000,,Lehan - Treffiagat - Finistère,57665,observation-91667b42-912c-4dd6-b7b4-6620b347088f-4,https://biolit.fr/observations/observation-91667b42-912c-4dd6-b7b4-6620b347088f-4/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC04270.JPG,,TRUE, +N1,61502,sortie-91667b42-912c-4dd6-b7b4-6620b347088f,https://biolit.fr/sorties/sortie-91667b42-912c-4dd6-b7b4-6620b347088f/,Phil,,5/23/2015 0:00,17.0000000,18.0000000,47.787534000000,-4.271895000000,,Lehan - Treffiagat - Finistère,57667,observation-91667b42-912c-4dd6-b7b4-6620b347088f-5,https://biolit.fr/observations/observation-91667b42-912c-4dd6-b7b4-6620b347088f-5/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC04271.JPG,,TRUE, +N1,61502,sortie-91667b42-912c-4dd6-b7b4-6620b347088f,https://biolit.fr/sorties/sortie-91667b42-912c-4dd6-b7b4-6620b347088f/,Phil,,5/23/2015 0:00,17.0000000,18.0000000,47.787534000000,-4.271895000000,,Lehan - Treffiagat - Finistère,57669,observation-91667b42-912c-4dd6-b7b4-6620b347088f-6,https://biolit.fr/observations/observation-91667b42-912c-4dd6-b7b4-6620b347088f-6/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC04272.JPG,,TRUE, +N1,61503,sortie-d496d074-6e5b-419f-b1cc-6e891a2b8b8c,https://biolit.fr/sorties/sortie-d496d074-6e5b-419f-b1cc-6e891a2b8b8c/,Phil,,5/23/2015 0:00,17.0:15,17.0:25,47.790922000000,-4.262577000000,,Plage de Lehan - Treffiagat - Finistère,57671,observation-d496d074-6e5b-419f-b1cc-6e891a2b8b8c,https://biolit.fr/observations/observation-d496d074-6e5b-419f-b1cc-6e891a2b8b8c/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04279.JPG,,FALSE, +N1,61503,sortie-d496d074-6e5b-419f-b1cc-6e891a2b8b8c,https://biolit.fr/sorties/sortie-d496d074-6e5b-419f-b1cc-6e891a2b8b8c/,Phil,,5/23/2015 0:00,17.0:15,17.0:25,47.790922000000,-4.262577000000,,Plage de Lehan - Treffiagat - Finistère,57673,observation-d496d074-6e5b-419f-b1cc-6e891a2b8b8c-2,https://biolit.fr/observations/observation-d496d074-6e5b-419f-b1cc-6e891a2b8b8c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04283.JPG,,FALSE, +N1,61504,sortie-c916b564-bac7-4bd7-a78c-e0d8c50b3031,https://biolit.fr/sorties/sortie-c916b564-bac7-4bd7-a78c-e0d8c50b3031/,Phil,,5/23/2015 0:00,11.0000000,11.0:45,47.909134000000,-3.977646000000,,Bourg de la Forêt-Fouesnant - Finistère,57675,observation-c916b564-bac7-4bd7-a78c-e0d8c50b3031,https://biolit.fr/observations/observation-c916b564-bac7-4bd7-a78c-e0d8c50b3031/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04262.JPG,,FALSE, +N1,61504,sortie-c916b564-bac7-4bd7-a78c-e0d8c50b3031,https://biolit.fr/sorties/sortie-c916b564-bac7-4bd7-a78c-e0d8c50b3031/,Phil,,5/23/2015 0:00,11.0000000,11.0:45,47.909134000000,-3.977646000000,,Bourg de la Forêt-Fouesnant - Finistère,57677,observation-c916b564-bac7-4bd7-a78c-e0d8c50b3031-2,https://biolit.fr/observations/observation-c916b564-bac7-4bd7-a78c-e0d8c50b3031-2/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/2023/07/DSC04255.JPG,,TRUE, +N1,61504,sortie-c916b564-bac7-4bd7-a78c-e0d8c50b3031,https://biolit.fr/sorties/sortie-c916b564-bac7-4bd7-a78c-e0d8c50b3031/,Phil,,5/23/2015 0:00,11.0000000,11.0:45,47.909134000000,-3.977646000000,,Bourg de la Forêt-Fouesnant - Finistère,57679,observation-c916b564-bac7-4bd7-a78c-e0d8c50b3031-3,https://biolit.fr/observations/observation-c916b564-bac7-4bd7-a78c-e0d8c50b3031-3/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/DSC04254.JPG,,TRUE, +N1,61505,sortie-4c6e6d51-3e6f-488e-a9a1-d6fe76c45606,https://biolit.fr/sorties/sortie-4c6e6d51-3e6f-488e-a9a1-d6fe76c45606/,Phil,,5/23/2015 0:00,11.0000000,11.0:15,47.904831000000,-3.945996000000,,Anse de Saint-Laurent - La Forêt-Fouesnant - Finistère,57681,observation-4c6e6d51-3e6f-488e-a9a1-d6fe76c45606,https://biolit.fr/observations/observation-4c6e6d51-3e6f-488e-a9a1-d6fe76c45606/,Fucus ceranoides,.,,https://biolit.fr/wp-content/uploads/2023/07/DSC04250.JPG,,TRUE, +N1,61505,sortie-4c6e6d51-3e6f-488e-a9a1-d6fe76c45606,https://biolit.fr/sorties/sortie-4c6e6d51-3e6f-488e-a9a1-d6fe76c45606/,Phil,,5/23/2015 0:00,11.0000000,11.0:15,47.904831000000,-3.945996000000,,Anse de Saint-Laurent - La Forêt-Fouesnant - Finistère,57683,observation-4c6e6d51-3e6f-488e-a9a1-d6fe76c45606-2,https://biolit.fr/observations/observation-4c6e6d51-3e6f-488e-a9a1-d6fe76c45606-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04252.JPG,,FALSE, +N1,61505,sortie-4c6e6d51-3e6f-488e-a9a1-d6fe76c45606,https://biolit.fr/sorties/sortie-4c6e6d51-3e6f-488e-a9a1-d6fe76c45606/,Phil,,5/23/2015 0:00,11.0000000,11.0:15,47.904831000000,-3.945996000000,,Anse de Saint-Laurent - La Forêt-Fouesnant - Finistère,57685,observation-4c6e6d51-3e6f-488e-a9a1-d6fe76c45606-3,https://biolit.fr/observations/observation-4c6e6d51-3e6f-488e-a9a1-d6fe76c45606-3/,Scrobicularia plana,Scrobiculaire,,https://biolit.fr/wp-content/uploads/2023/07/DSC04251.JPG,,TRUE, +N1,61505,sortie-4c6e6d51-3e6f-488e-a9a1-d6fe76c45606,https://biolit.fr/sorties/sortie-4c6e6d51-3e6f-488e-a9a1-d6fe76c45606/,Phil,,5/23/2015 0:00,11.0000000,11.0:15,47.904831000000,-3.945996000000,,Anse de Saint-Laurent - La Forêt-Fouesnant - Finistère,57687,observation-4c6e6d51-3e6f-488e-a9a1-d6fe76c45606-4,https://biolit.fr/observations/observation-4c6e6d51-3e6f-488e-a9a1-d6fe76c45606-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04253.JPG,,FALSE, +N1,61506,sortie-75f1530f-c6a2-4fc0-9529-db7facacf758,https://biolit.fr/sorties/sortie-75f1530f-c6a2-4fc0-9529-db7facacf758/,Marine,,5/22/2015 0:00,15.0000000,17.0000000,43.419978000000,5.17396400000,,Lido du Jaï,57689,observation-75f1530f-c6a2-4fc0-9529-db7facacf758,https://biolit.fr/observations/observation-75f1530f-c6a2-4fc0-9529-db7facacf758/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0622-scaled.jpg,,FALSE, +N1,61506,sortie-75f1530f-c6a2-4fc0-9529-db7facacf758,https://biolit.fr/sorties/sortie-75f1530f-c6a2-4fc0-9529-db7facacf758/,Marine,,5/22/2015 0:00,15.0000000,17.0000000,43.419978000000,5.17396400000,,Lido du Jaï,57691,observation-75f1530f-c6a2-4fc0-9529-db7facacf758-2,https://biolit.fr/observations/observation-75f1530f-c6a2-4fc0-9529-db7facacf758-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0623-scaled.jpg,,FALSE, +N1,61506,sortie-75f1530f-c6a2-4fc0-9529-db7facacf758,https://biolit.fr/sorties/sortie-75f1530f-c6a2-4fc0-9529-db7facacf758/,Marine,,5/22/2015 0:00,15.0000000,17.0000000,43.419978000000,5.17396400000,,Lido du Jaï,57693,observation-75f1530f-c6a2-4fc0-9529-db7facacf758-3,https://biolit.fr/observations/observation-75f1530f-c6a2-4fc0-9529-db7facacf758-3/,Zostera noltei,Zostère naine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0624-scaled.jpg,,TRUE, +N1,61506,sortie-75f1530f-c6a2-4fc0-9529-db7facacf758,https://biolit.fr/sorties/sortie-75f1530f-c6a2-4fc0-9529-db7facacf758/,Marine,,5/22/2015 0:00,15.0000000,17.0000000,43.419978000000,5.17396400000,,Lido du Jaï,57695,observation-75f1530f-c6a2-4fc0-9529-db7facacf758-4,https://biolit.fr/observations/observation-75f1530f-c6a2-4fc0-9529-db7facacf758-4/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0625-scaled.jpg,,TRUE, +N1,61506,sortie-75f1530f-c6a2-4fc0-9529-db7facacf758,https://biolit.fr/sorties/sortie-75f1530f-c6a2-4fc0-9529-db7facacf758/,Marine,,5/22/2015 0:00,15.0000000,17.0000000,43.419978000000,5.17396400000,,Lido du Jaï,57697,observation-75f1530f-c6a2-4fc0-9529-db7facacf758-5,https://biolit.fr/observations/observation-75f1530f-c6a2-4fc0-9529-db7facacf758-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0636-scaled.jpg,,FALSE, +N1,61507,sortie-0bab58bf-9c0e-4307-b21e-dd6f2824d6b0,https://biolit.fr/sorties/sortie-0bab58bf-9c0e-4307-b21e-dd6f2824d6b0/,Phil,,5/16/2015 0:00,15.0000000,16.0000000,47.798414000000,-4.374324000000,,Roches devant rue du Phare - Penmarc'h - Finistère,57699,observation-0bab58bf-9c0e-4307-b21e-dd6f2824d6b0,https://biolit.fr/observations/observation-0bab58bf-9c0e-4307-b21e-dd6f2824d6b0/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/DSC04050.JPG,,TRUE, +N1,61507,sortie-0bab58bf-9c0e-4307-b21e-dd6f2824d6b0,https://biolit.fr/sorties/sortie-0bab58bf-9c0e-4307-b21e-dd6f2824d6b0/,Phil,,5/16/2015 0:00,15.0000000,16.0000000,47.798414000000,-4.374324000000,,Roches devant rue du Phare - Penmarc'h - Finistère,57701,observation-0bab58bf-9c0e-4307-b21e-dd6f2824d6b0-2,https://biolit.fr/observations/observation-0bab58bf-9c0e-4307-b21e-dd6f2824d6b0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04052.JPG,,FALSE, +N1,61507,sortie-0bab58bf-9c0e-4307-b21e-dd6f2824d6b0,https://biolit.fr/sorties/sortie-0bab58bf-9c0e-4307-b21e-dd6f2824d6b0/,Phil,,5/16/2015 0:00,15.0000000,16.0000000,47.798414000000,-4.374324000000,,Roches devant rue du Phare - Penmarc'h - Finistère,57703,observation-0bab58bf-9c0e-4307-b21e-dd6f2824d6b0-3,https://biolit.fr/observations/observation-0bab58bf-9c0e-4307-b21e-dd6f2824d6b0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04053.JPG,,FALSE, +N1,61508,sortie-ea1f18c4-9422-4cab-9a80-6e5f649451ca,https://biolit.fr/sorties/sortie-ea1f18c4-9422-4cab-9a80-6e5f649451ca/,Phil,,5/15/2015 0:00,10.0000000,11.000005,47.791982000000,-4.289141000000,,Bas de la rue de Men-Meur - Le Guilvinec Finistère,57705,observation-ea1f18c4-9422-4cab-9a80-6e5f649451ca,https://biolit.fr/observations/observation-ea1f18c4-9422-4cab-9a80-6e5f649451ca/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/20150515_102941-scaled.jpg,,TRUE, +N1,61508,sortie-ea1f18c4-9422-4cab-9a80-6e5f649451ca,https://biolit.fr/sorties/sortie-ea1f18c4-9422-4cab-9a80-6e5f649451ca/,Phil,,5/15/2015 0:00,10.0000000,11.000005,47.791982000000,-4.289141000000,,Bas de la rue de Men-Meur - Le Guilvinec Finistère,57707,observation-ea1f18c4-9422-4cab-9a80-6e5f649451ca-2,https://biolit.fr/observations/observation-ea1f18c4-9422-4cab-9a80-6e5f649451ca-2/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/20150515_102552-scaled.jpg,,TRUE, +N1,61508,sortie-ea1f18c4-9422-4cab-9a80-6e5f649451ca,https://biolit.fr/sorties/sortie-ea1f18c4-9422-4cab-9a80-6e5f649451ca/,Phil,,5/15/2015 0:00,10.0000000,11.000005,47.791982000000,-4.289141000000,,Bas de la rue de Men-Meur - Le Guilvinec Finistère,57709,observation-ea1f18c4-9422-4cab-9a80-6e5f649451ca-3,https://biolit.fr/observations/observation-ea1f18c4-9422-4cab-9a80-6e5f649451ca-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150515_102251-scaled.jpg,,FALSE, +N1,61508,sortie-ea1f18c4-9422-4cab-9a80-6e5f649451ca,https://biolit.fr/sorties/sortie-ea1f18c4-9422-4cab-9a80-6e5f649451ca/,Phil,,5/15/2015 0:00,10.0000000,11.000005,47.791982000000,-4.289141000000,,Bas de la rue de Men-Meur - Le Guilvinec Finistère,57711,observation-ea1f18c4-9422-4cab-9a80-6e5f649451ca-4,https://biolit.fr/observations/observation-ea1f18c4-9422-4cab-9a80-6e5f649451ca-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150515_101751-scaled.jpg,,FALSE, +N1,61508,sortie-ea1f18c4-9422-4cab-9a80-6e5f649451ca,https://biolit.fr/sorties/sortie-ea1f18c4-9422-4cab-9a80-6e5f649451ca/,Phil,,5/15/2015 0:00,10.0000000,11.000005,47.791982000000,-4.289141000000,,Bas de la rue de Men-Meur - Le Guilvinec Finistère,57713,observation-ea1f18c4-9422-4cab-9a80-6e5f649451ca-5,https://biolit.fr/observations/observation-ea1f18c4-9422-4cab-9a80-6e5f649451ca-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150515_101714-scaled.jpg,,FALSE, +N1,61509,sortie-9b9edf66-f094-4dd0-b374-c09749118d52,https://biolit.fr/sorties/sortie-9b9edf66-f094-4dd0-b374-c09749118d52/,Phil,,5/15/2015 0:00,10.0:45,10.0:55,47.791591000000,-4.288904000000,,Bas rue Men-Meur - Le Guilvinec Finistère,57715,observation-9b9edf66-f094-4dd0-b374-c09749118d52,https://biolit.fr/observations/observation-9b9edf66-f094-4dd0-b374-c09749118d52/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150515_100940-scaled.jpg,,TRUE, +N1,61509,sortie-9b9edf66-f094-4dd0-b374-c09749118d52,https://biolit.fr/sorties/sortie-9b9edf66-f094-4dd0-b374-c09749118d52/,Phil,,5/15/2015 0:00,10.0:45,10.0:55,47.791591000000,-4.288904000000,,Bas rue Men-Meur - Le Guilvinec Finistère,57717,observation-9b9edf66-f094-4dd0-b374-c09749118d52-2,https://biolit.fr/observations/observation-9b9edf66-f094-4dd0-b374-c09749118d52-2/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/20150515_101841-scaled.jpg,,TRUE, +N1,61509,sortie-9b9edf66-f094-4dd0-b374-c09749118d52,https://biolit.fr/sorties/sortie-9b9edf66-f094-4dd0-b374-c09749118d52/,Phil,,5/15/2015 0:00,10.0:45,10.0:55,47.791591000000,-4.288904000000,,Bas rue Men-Meur - Le Guilvinec Finistère,57719,observation-9b9edf66-f094-4dd0-b374-c09749118d52-3,https://biolit.fr/observations/observation-9b9edf66-f094-4dd0-b374-c09749118d52-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150515_101146-scaled.jpg,,TRUE, +N1,61509,sortie-9b9edf66-f094-4dd0-b374-c09749118d52,https://biolit.fr/sorties/sortie-9b9edf66-f094-4dd0-b374-c09749118d52/,Phil,,5/15/2015 0:00,10.0:45,10.0:55,47.791591000000,-4.288904000000,,Bas rue Men-Meur - Le Guilvinec Finistère,57721,observation-9b9edf66-f094-4dd0-b374-c09749118d52-4,https://biolit.fr/observations/observation-9b9edf66-f094-4dd0-b374-c09749118d52-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150515_101903-scaled.jpg,,FALSE, +N1,61509,sortie-9b9edf66-f094-4dd0-b374-c09749118d52,https://biolit.fr/sorties/sortie-9b9edf66-f094-4dd0-b374-c09749118d52/,Phil,,5/15/2015 0:00,10.0:45,10.0:55,47.791591000000,-4.288904000000,,Bas rue Men-Meur - Le Guilvinec Finistère,57723,observation-9b9edf66-f094-4dd0-b374-c09749118d52-5,https://biolit.fr/observations/observation-9b9edf66-f094-4dd0-b374-c09749118d52-5/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/20150515_101652-scaled.jpg,,TRUE, +N1,61510,sortie-3fb52004-2301-4057-b120-ac70fcafd823,https://biolit.fr/sorties/sortie-3fb52004-2301-4057-b120-ac70fcafd823/,ugomad,,5/21/2015 0:00,18.0000000,20.0000000,43.27855000000,5.35369100000,,"Marégraphe, Corniche Kennedy, Marseille",57725,observation-3fb52004-2301-4057-b120-ac70fcafd823,https://biolit.fr/observations/observation-3fb52004-2301-4057-b120-ac70fcafd823/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8336-scaled.jpg,,FALSE, +N1,61510,sortie-3fb52004-2301-4057-b120-ac70fcafd823,https://biolit.fr/sorties/sortie-3fb52004-2301-4057-b120-ac70fcafd823/,ugomad,,5/21/2015 0:00,18.0000000,20.0000000,43.27855000000,5.35369100000,,"Marégraphe, Corniche Kennedy, Marseille",57727,observation-3fb52004-2301-4057-b120-ac70fcafd823-2,https://biolit.fr/observations/observation-3fb52004-2301-4057-b120-ac70fcafd823-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8337-scaled.jpg,,FALSE, +N1,61510,sortie-3fb52004-2301-4057-b120-ac70fcafd823,https://biolit.fr/sorties/sortie-3fb52004-2301-4057-b120-ac70fcafd823/,ugomad,,5/21/2015 0:00,18.0000000,20.0000000,43.27855000000,5.35369100000,,"Marégraphe, Corniche Kennedy, Marseille",57729,observation-3fb52004-2301-4057-b120-ac70fcafd823-3,https://biolit.fr/observations/observation-3fb52004-2301-4057-b120-ac70fcafd823-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8344-scaled.jpg,,FALSE, +N1,61510,sortie-3fb52004-2301-4057-b120-ac70fcafd823,https://biolit.fr/sorties/sortie-3fb52004-2301-4057-b120-ac70fcafd823/,ugomad,,5/21/2015 0:00,18.0000000,20.0000000,43.27855000000,5.35369100000,,"Marégraphe, Corniche Kennedy, Marseille",57731,observation-3fb52004-2301-4057-b120-ac70fcafd823-4,https://biolit.fr/observations/observation-3fb52004-2301-4057-b120-ac70fcafd823-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8345-scaled.jpg,,FALSE, +N1,61510,sortie-3fb52004-2301-4057-b120-ac70fcafd823,https://biolit.fr/sorties/sortie-3fb52004-2301-4057-b120-ac70fcafd823/,ugomad,,5/21/2015 0:00,18.0000000,20.0000000,43.27855000000,5.35369100000,,"Marégraphe, Corniche Kennedy, Marseille",57733,observation-3fb52004-2301-4057-b120-ac70fcafd823-5,https://biolit.fr/observations/observation-3fb52004-2301-4057-b120-ac70fcafd823-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8350-scaled.jpg,,FALSE, +N1,61510,sortie-3fb52004-2301-4057-b120-ac70fcafd823,https://biolit.fr/sorties/sortie-3fb52004-2301-4057-b120-ac70fcafd823/,ugomad,,5/21/2015 0:00,18.0000000,20.0000000,43.27855000000,5.35369100000,,"Marégraphe, Corniche Kennedy, Marseille",57735,observation-3fb52004-2301-4057-b120-ac70fcafd823-6,https://biolit.fr/observations/observation-3fb52004-2301-4057-b120-ac70fcafd823-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8356-scaled.jpg,,FALSE, +N1,61510,sortie-3fb52004-2301-4057-b120-ac70fcafd823,https://biolit.fr/sorties/sortie-3fb52004-2301-4057-b120-ac70fcafd823/,ugomad,,5/21/2015 0:00,18.0000000,20.0000000,43.27855000000,5.35369100000,,"Marégraphe, Corniche Kennedy, Marseille",57737,observation-3fb52004-2301-4057-b120-ac70fcafd823-7,https://biolit.fr/observations/observation-3fb52004-2301-4057-b120-ac70fcafd823-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8362-scaled.jpg,,FALSE, +N1,61510,sortie-3fb52004-2301-4057-b120-ac70fcafd823,https://biolit.fr/sorties/sortie-3fb52004-2301-4057-b120-ac70fcafd823/,ugomad,,5/21/2015 0:00,18.0000000,20.0000000,43.27855000000,5.35369100000,,"Marégraphe, Corniche Kennedy, Marseille",57739,observation-3fb52004-2301-4057-b120-ac70fcafd823-8,https://biolit.fr/observations/observation-3fb52004-2301-4057-b120-ac70fcafd823-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8366-scaled.jpg,,FALSE, +N1,61510,sortie-3fb52004-2301-4057-b120-ac70fcafd823,https://biolit.fr/sorties/sortie-3fb52004-2301-4057-b120-ac70fcafd823/,ugomad,,5/21/2015 0:00,18.0000000,20.0000000,43.27855000000,5.35369100000,,"Marégraphe, Corniche Kennedy, Marseille",57741,observation-3fb52004-2301-4057-b120-ac70fcafd823-9,https://biolit.fr/observations/observation-3fb52004-2301-4057-b120-ac70fcafd823-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8373-scaled.jpg,,FALSE, +N1,61510,sortie-3fb52004-2301-4057-b120-ac70fcafd823,https://biolit.fr/sorties/sortie-3fb52004-2301-4057-b120-ac70fcafd823/,ugomad,,5/21/2015 0:00,18.0000000,20.0000000,43.27855000000,5.35369100000,,"Marégraphe, Corniche Kennedy, Marseille",57743,observation-3fb52004-2301-4057-b120-ac70fcafd823-10,https://biolit.fr/observations/observation-3fb52004-2301-4057-b120-ac70fcafd823-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8374-scaled.jpg,,FALSE, +N1,61510,sortie-3fb52004-2301-4057-b120-ac70fcafd823,https://biolit.fr/sorties/sortie-3fb52004-2301-4057-b120-ac70fcafd823/,ugomad,,5/21/2015 0:00,18.0000000,20.0000000,43.27855000000,5.35369100000,,"Marégraphe, Corniche Kennedy, Marseille",57745,observation-3fb52004-2301-4057-b120-ac70fcafd823-11,https://biolit.fr/observations/observation-3fb52004-2301-4057-b120-ac70fcafd823-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8379-scaled.jpg,,FALSE, +N1,61510,sortie-3fb52004-2301-4057-b120-ac70fcafd823,https://biolit.fr/sorties/sortie-3fb52004-2301-4057-b120-ac70fcafd823/,ugomad,,5/21/2015 0:00,18.0000000,20.0000000,43.27855000000,5.35369100000,,"Marégraphe, Corniche Kennedy, Marseille",57747,observation-3fb52004-2301-4057-b120-ac70fcafd823-12,https://biolit.fr/observations/observation-3fb52004-2301-4057-b120-ac70fcafd823-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8380-scaled.jpg,,FALSE, +N1,61511,sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0,https://biolit.fr/sorties/sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0/,Malori,,5/20/2015 0:00,14.0000000,15.0000000,43.273073000000,5.362341000000,,Plage des Prophètes,57749,observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0,https://biolit.fr/observations/observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0/,,,,https://biolit.fr/wp-content/uploads/2023/07/10828003_10155473195390408_2315959279391341122_o.jpg,,FALSE, +N1,61511,sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0,https://biolit.fr/sorties/sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0/,Malori,,5/20/2015 0:00,14.0000000,15.0000000,43.273073000000,5.362341000000,,Plage des Prophètes,57751,observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-2,https://biolit.fr/observations/observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-2/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/10900244_10155473196025408_1959251864174683850_o.jpg,,TRUE, +N1,61511,sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0,https://biolit.fr/sorties/sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0/,Malori,,5/20/2015 0:00,14.0000000,15.0000000,43.273073000000,5.362341000000,,Plage des Prophètes,57753,observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-3,https://biolit.fr/observations/observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-3/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/11012022_10155473196075408_3025648415524923151_o.jpg,,TRUE, +N1,61511,sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0,https://biolit.fr/sorties/sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0/,Malori,,5/20/2015 0:00,14.0000000,15.0000000,43.273073000000,5.362341000000,,Plage des Prophètes,57755,observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-4,https://biolit.fr/observations/observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/11025630_10155473195795408_6088842674528555787_n.jpg,,FALSE, +N1,61511,sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0,https://biolit.fr/sorties/sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0/,Malori,,5/20/2015 0:00,14.0000000,15.0000000,43.273073000000,5.362341000000,,Plage des Prophètes,57757,observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-5,https://biolit.fr/observations/observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/11059382_10155473196200408_6059018957689341738_o.jpg,,FALSE, +N1,61511,sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0,https://biolit.fr/sorties/sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0/,Malori,,5/20/2015 0:00,14.0000000,15.0000000,43.273073000000,5.362341000000,,Plage des Prophètes,57759,observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-6,https://biolit.fr/observations/observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/11062777_10155473195680408_8159057947231942509_o.jpg,,FALSE, +N1,61511,sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0,https://biolit.fr/sorties/sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0/,Malori,,5/20/2015 0:00,14.0000000,15.0000000,43.273073000000,5.362341000000,,Plage des Prophètes,57761,observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-7,https://biolit.fr/observations/observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/11070180_10155473196240408_6221323027067842968_o.jpg,,FALSE, +N1,61511,sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0,https://biolit.fr/sorties/sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0/,Malori,,5/20/2015 0:00,14.0000000,15.0000000,43.273073000000,5.362341000000,,Plage des Prophètes,57763,observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-8,https://biolit.fr/observations/observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-8/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/11073050_10155473196275408_2030842017416908010_o.jpg,,TRUE, +N1,61511,sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0,https://biolit.fr/sorties/sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0/,Malori,,5/20/2015 0:00,14.0000000,15.0000000,43.273073000000,5.362341000000,,Plage des Prophètes,57765,observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-9,https://biolit.fr/observations/observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-9/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/11216491_10155473195945408_3956842421404444367_o.jpg,,TRUE, +N1,61511,sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0,https://biolit.fr/sorties/sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0/,Malori,,5/20/2015 0:00,14.0000000,15.0000000,43.273073000000,5.362341000000,,Plage des Prophètes,57767,observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-10,https://biolit.fr/observations/observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-10/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/11226577_10155473195435408_6541689339925237049_o.jpg,,TRUE, +N1,61511,sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0,https://biolit.fr/sorties/sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0/,Malori,,5/20/2015 0:00,14.0000000,15.0000000,43.273073000000,5.362341000000,,Plage des Prophètes,57769,observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-11,https://biolit.fr/observations/observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-11/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/11249480_10155473196365408_8377025964622082916_o.jpg,,TRUE, +N1,61511,sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0,https://biolit.fr/sorties/sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0/,Malori,,5/20/2015 0:00,14.0000000,15.0000000,43.273073000000,5.362341000000,,Plage des Prophètes,57771,observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-12,https://biolit.fr/observations/observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-12/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/11312826_10155473196320408_2966608148900979450_o.jpg,,TRUE, +N1,61511,sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0,https://biolit.fr/sorties/sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0/,Malori,,5/20/2015 0:00,14.0000000,15.0000000,43.273073000000,5.362341000000,,Plage des Prophètes,57773,observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-13,https://biolit.fr/observations/observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-13/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/11334145_10155473195515408_6002341142498597879_o.jpg,,TRUE, +N1,61511,sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0,https://biolit.fr/sorties/sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0/,Malori,,5/20/2015 0:00,14.0000000,15.0000000,43.273073000000,5.362341000000,,Plage des Prophètes,57775,observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-14,https://biolit.fr/observations/observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-14/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/11336813_10155473196475408_4882452113341500333_o.jpg,,TRUE, +N1,61512,sortie-a60af97e-30aa-4da9-a620-6db95dbe7d2a,https://biolit.fr/sorties/sortie-a60af97e-30aa-4da9-a620-6db95dbe7d2a/,Phil,,5/19/2015 0:00,11.0:35,11.0:45,47.877100000000,-3.932387000000,,Plage des Sables Blancs - Concarneau - Finistère,57777,observation-a60af97e-30aa-4da9-a620-6db95dbe7d2a,https://biolit.fr/observations/observation-a60af97e-30aa-4da9-a620-6db95dbe7d2a/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/20150519_112158-scaled.jpg,,TRUE, +N1,61512,sortie-a60af97e-30aa-4da9-a620-6db95dbe7d2a,https://biolit.fr/sorties/sortie-a60af97e-30aa-4da9-a620-6db95dbe7d2a/,Phil,,5/19/2015 0:00,11.0:35,11.0:45,47.877100000000,-3.932387000000,,Plage des Sables Blancs - Concarneau - Finistère,57779,observation-a60af97e-30aa-4da9-a620-6db95dbe7d2a-2,https://biolit.fr/observations/observation-a60af97e-30aa-4da9-a620-6db95dbe7d2a-2/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/20150519_112936-scaled.jpg,,TRUE, +N1,61512,sortie-a60af97e-30aa-4da9-a620-6db95dbe7d2a,https://biolit.fr/sorties/sortie-a60af97e-30aa-4da9-a620-6db95dbe7d2a/,Phil,,5/19/2015 0:00,11.0:35,11.0:45,47.877100000000,-3.932387000000,,Plage des Sables Blancs - Concarneau - Finistère,57781,observation-a60af97e-30aa-4da9-a620-6db95dbe7d2a-3,https://biolit.fr/observations/observation-a60af97e-30aa-4da9-a620-6db95dbe7d2a-3/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/20150519_112751-scaled.jpg,,TRUE, +N1,61512,sortie-a60af97e-30aa-4da9-a620-6db95dbe7d2a,https://biolit.fr/sorties/sortie-a60af97e-30aa-4da9-a620-6db95dbe7d2a/,Phil,,5/19/2015 0:00,11.0:35,11.0:45,47.877100000000,-3.932387000000,,Plage des Sables Blancs - Concarneau - Finistère,57783,observation-a60af97e-30aa-4da9-a620-6db95dbe7d2a-4,https://biolit.fr/observations/observation-a60af97e-30aa-4da9-a620-6db95dbe7d2a-4/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20150519_112149-scaled.jpg,,TRUE, +N1,61512,sortie-a60af97e-30aa-4da9-a620-6db95dbe7d2a,https://biolit.fr/sorties/sortie-a60af97e-30aa-4da9-a620-6db95dbe7d2a/,Phil,,5/19/2015 0:00,11.0:35,11.0:45,47.877100000000,-3.932387000000,,Plage des Sables Blancs - Concarneau - Finistère,57785,observation-a60af97e-30aa-4da9-a620-6db95dbe7d2a-5,https://biolit.fr/observations/observation-a60af97e-30aa-4da9-a620-6db95dbe7d2a-5/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20150519_112332-scaled.jpg,,TRUE, +N1,61512,sortie-a60af97e-30aa-4da9-a620-6db95dbe7d2a,https://biolit.fr/sorties/sortie-a60af97e-30aa-4da9-a620-6db95dbe7d2a/,Phil,,5/19/2015 0:00,11.0:35,11.0:45,47.877100000000,-3.932387000000,,Plage des Sables Blancs - Concarneau - Finistère,57787,observation-a60af97e-30aa-4da9-a620-6db95dbe7d2a-6,https://biolit.fr/observations/observation-a60af97e-30aa-4da9-a620-6db95dbe7d2a-6/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20150519_113049-scaled.jpg,,TRUE, +N1,61512,sortie-a60af97e-30aa-4da9-a620-6db95dbe7d2a,https://biolit.fr/sorties/sortie-a60af97e-30aa-4da9-a620-6db95dbe7d2a/,Phil,,5/19/2015 0:00,11.0:35,11.0:45,47.877100000000,-3.932387000000,,Plage des Sables Blancs - Concarneau - Finistère,57789,observation-a60af97e-30aa-4da9-a620-6db95dbe7d2a-7,https://biolit.fr/observations/observation-a60af97e-30aa-4da9-a620-6db95dbe7d2a-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150519_113727-scaled.jpg,,FALSE, +N1,61512,sortie-a60af97e-30aa-4da9-a620-6db95dbe7d2a,https://biolit.fr/sorties/sortie-a60af97e-30aa-4da9-a620-6db95dbe7d2a/,Phil,,5/19/2015 0:00,11.0:35,11.0:45,47.877100000000,-3.932387000000,,Plage des Sables Blancs - Concarneau - Finistère,57791,observation-a60af97e-30aa-4da9-a620-6db95dbe7d2a-8,https://biolit.fr/observations/observation-a60af97e-30aa-4da9-a620-6db95dbe7d2a-8/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20150519_114239-scaled.jpg,,TRUE, +N1,61513,sortie-1144b88a-2e28-4369-aca8-ae10cfc4d0d3,https://biolit.fr/sorties/sortie-1144b88a-2e28-4369-aca8-ae10cfc4d0d3/,Phil,,5/19/2015 0:00,11.000005,11.0:15,47.87706900000,-3.931926000000,,Bout de la plage des Sables Blancs - Concarneau -Finistère,57793,observation-1144b88a-2e28-4369-aca8-ae10cfc4d0d3,https://biolit.fr/observations/observation-1144b88a-2e28-4369-aca8-ae10cfc4d0d3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150519_110633-scaled.jpg,,FALSE, +N1,61513,sortie-1144b88a-2e28-4369-aca8-ae10cfc4d0d3,https://biolit.fr/sorties/sortie-1144b88a-2e28-4369-aca8-ae10cfc4d0d3/,Phil,,5/19/2015 0:00,11.000005,11.0:15,47.87706900000,-3.931926000000,,Bout de la plage des Sables Blancs - Concarneau -Finistère,57795,observation-1144b88a-2e28-4369-aca8-ae10cfc4d0d3-2,https://biolit.fr/observations/observation-1144b88a-2e28-4369-aca8-ae10cfc4d0d3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150519_110919-scaled.jpg,,FALSE, +N1,61513,sortie-1144b88a-2e28-4369-aca8-ae10cfc4d0d3,https://biolit.fr/sorties/sortie-1144b88a-2e28-4369-aca8-ae10cfc4d0d3/,Phil,,5/19/2015 0:00,11.000005,11.0:15,47.87706900000,-3.931926000000,,Bout de la plage des Sables Blancs - Concarneau -Finistère,57797,observation-1144b88a-2e28-4369-aca8-ae10cfc4d0d3-3,https://biolit.fr/observations/observation-1144b88a-2e28-4369-aca8-ae10cfc4d0d3-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150519_111048-scaled.jpg,,FALSE, +N1,61513,sortie-1144b88a-2e28-4369-aca8-ae10cfc4d0d3,https://biolit.fr/sorties/sortie-1144b88a-2e28-4369-aca8-ae10cfc4d0d3/,Phil,,5/19/2015 0:00,11.000005,11.0:15,47.87706900000,-3.931926000000,,Bout de la plage des Sables Blancs - Concarneau -Finistère,57799,observation-1144b88a-2e28-4369-aca8-ae10cfc4d0d3-4,https://biolit.fr/observations/observation-1144b88a-2e28-4369-aca8-ae10cfc4d0d3-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150519_111536-scaled.jpg,,FALSE, +N1,61513,sortie-1144b88a-2e28-4369-aca8-ae10cfc4d0d3,https://biolit.fr/sorties/sortie-1144b88a-2e28-4369-aca8-ae10cfc4d0d3/,Phil,,5/19/2015 0:00,11.000005,11.0:15,47.87706900000,-3.931926000000,,Bout de la plage des Sables Blancs - Concarneau -Finistère,57801,observation-1144b88a-2e28-4369-aca8-ae10cfc4d0d3-5,https://biolit.fr/observations/observation-1144b88a-2e28-4369-aca8-ae10cfc4d0d3-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150519_111451-scaled.jpg,,FALSE, +N1,61513,sortie-1144b88a-2e28-4369-aca8-ae10cfc4d0d3,https://biolit.fr/sorties/sortie-1144b88a-2e28-4369-aca8-ae10cfc4d0d3/,Phil,,5/19/2015 0:00,11.000005,11.0:15,47.87706900000,-3.931926000000,,Bout de la plage des Sables Blancs - Concarneau -Finistère,57803,observation-1144b88a-2e28-4369-aca8-ae10cfc4d0d3-6,https://biolit.fr/observations/observation-1144b88a-2e28-4369-aca8-ae10cfc4d0d3-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150519_114924-scaled.jpg,,TRUE, +N1,61513,sortie-1144b88a-2e28-4369-aca8-ae10cfc4d0d3,https://biolit.fr/sorties/sortie-1144b88a-2e28-4369-aca8-ae10cfc4d0d3/,Phil,,5/19/2015 0:00,11.000005,11.0:15,47.87706900000,-3.931926000000,,Bout de la plage des Sables Blancs - Concarneau -Finistère,57805,observation-1144b88a-2e28-4369-aca8-ae10cfc4d0d3-7,https://biolit.fr/observations/observation-1144b88a-2e28-4369-aca8-ae10cfc4d0d3-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150519_111209-scaled.jpg,,FALSE, +N1,61514,sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65,https://biolit.fr/sorties/sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65/,ugomad,,5/20/2015 0:00,14.0000000,15.0000000,43.272753000000,5.362084000000,,"Plage du Prophète, Marseille",57807,observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65,https://biolit.fr/observations/observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8220-scaled.jpg,,FALSE, +N1,61514,sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65,https://biolit.fr/sorties/sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65/,ugomad,,5/20/2015 0:00,14.0000000,15.0000000,43.272753000000,5.362084000000,,"Plage du Prophète, Marseille",57809,observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65-2,https://biolit.fr/observations/observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65-2/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMGP8222-scaled.jpg,,TRUE, +N1,61514,sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65,https://biolit.fr/sorties/sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65/,ugomad,,5/20/2015 0:00,14.0000000,15.0000000,43.272753000000,5.362084000000,,"Plage du Prophète, Marseille",57811,observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65-3,https://biolit.fr/observations/observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8224-scaled.jpg,,FALSE, +N1,61514,sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65,https://biolit.fr/sorties/sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65/,ugomad,,5/20/2015 0:00,14.0000000,15.0000000,43.272753000000,5.362084000000,,"Plage du Prophète, Marseille",57813,observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65-4,https://biolit.fr/observations/observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65-4/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMGP8225-scaled.jpg,,TRUE, +N1,61514,sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65,https://biolit.fr/sorties/sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65/,ugomad,,5/20/2015 0:00,14.0000000,15.0000000,43.272753000000,5.362084000000,,"Plage du Prophète, Marseille",57815,observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65-5,https://biolit.fr/observations/observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65-5/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMGP8229-scaled.jpg,,TRUE, +N1,61514,sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65,https://biolit.fr/sorties/sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65/,ugomad,,5/20/2015 0:00,14.0000000,15.0000000,43.272753000000,5.362084000000,,"Plage du Prophète, Marseille",57817,observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65-6,https://biolit.fr/observations/observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8233-scaled.jpg,,FALSE, +N1,61514,sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65,https://biolit.fr/sorties/sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65/,ugomad,,5/20/2015 0:00,14.0000000,15.0000000,43.272753000000,5.362084000000,,"Plage du Prophète, Marseille",57819,observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65-7,https://biolit.fr/observations/observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8242-scaled.jpg,,FALSE, +N1,61514,sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65,https://biolit.fr/sorties/sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65/,ugomad,,5/20/2015 0:00,14.0000000,15.0000000,43.272753000000,5.362084000000,,"Plage du Prophète, Marseille",57821,observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65-8,https://biolit.fr/observations/observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65-8/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMGP8236-scaled.jpg,,TRUE, +N1,61514,sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65,https://biolit.fr/sorties/sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65/,ugomad,,5/20/2015 0:00,14.0000000,15.0000000,43.272753000000,5.362084000000,,"Plage du Prophète, Marseille",57823,observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65-9,https://biolit.fr/observations/observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8274-scaled.jpg,,FALSE, +N1,61515,sortie-72df7011-b2a2-44a1-a9fe-546de76f42ca,https://biolit.fr/sorties/sortie-72df7011-b2a2-44a1-a9fe-546de76f42ca/,CPIE Iles de Lérins et Pays d'Azur,,5/19/2015 0:00,15.0000000,16.0000000,43.521289000000,7.031638000000,,"Plage pointe du Batéguier face ouest, Ile Sainte-Marguerite, Cannes",57825,observation-72df7011-b2a2-44a1-a9fe-546de76f42ca,https://biolit.fr/observations/observation-72df7011-b2a2-44a1-a9fe-546de76f42ca/,,,,https://biolit.fr/wp-content/uploads/2023/07/araignée de mer 1.jpg,,FALSE, +N1,61515,sortie-72df7011-b2a2-44a1-a9fe-546de76f42ca,https://biolit.fr/sorties/sortie-72df7011-b2a2-44a1-a9fe-546de76f42ca/,CPIE Iles de Lérins et Pays d'Azur,,5/19/2015 0:00,15.0000000,16.0000000,43.521289000000,7.031638000000,,"Plage pointe du Batéguier face ouest, Ile Sainte-Marguerite, Cannes",57827,observation-72df7011-b2a2-44a1-a9fe-546de76f42ca-2,https://biolit.fr/observations/observation-72df7011-b2a2-44a1-a9fe-546de76f42ca-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/bernard-l'ermite-scaled.jpg,,FALSE, +N1,61515,sortie-72df7011-b2a2-44a1-a9fe-546de76f42ca,https://biolit.fr/sorties/sortie-72df7011-b2a2-44a1-a9fe-546de76f42ca/,CPIE Iles de Lérins et Pays d'Azur,,5/19/2015 0:00,15.0000000,16.0000000,43.521289000000,7.031638000000,,"Plage pointe du Batéguier face ouest, Ile Sainte-Marguerite, Cannes",57828,observation-72df7011-b2a2-44a1-a9fe-546de76f42ca-3,https://biolit.fr/observations/observation-72df7011-b2a2-44a1-a9fe-546de76f42ca-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/holothurie tubuleuse.jpg,,FALSE, +N1,61515,sortie-72df7011-b2a2-44a1-a9fe-546de76f42ca,https://biolit.fr/sorties/sortie-72df7011-b2a2-44a1-a9fe-546de76f42ca/,CPIE Iles de Lérins et Pays d'Azur,,5/19/2015 0:00,15.0000000,16.0000000,43.521289000000,7.031638000000,,"Plage pointe du Batéguier face ouest, Ile Sainte-Marguerite, Cannes",57830,observation-72df7011-b2a2-44a1-a9fe-546de76f42ca-4,https://biolit.fr/observations/observation-72df7011-b2a2-44a1-a9fe-546de76f42ca-4/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/oursin violet.jpg,,TRUE, +N1,61515,sortie-72df7011-b2a2-44a1-a9fe-546de76f42ca,https://biolit.fr/sorties/sortie-72df7011-b2a2-44a1-a9fe-546de76f42ca/,CPIE Iles de Lérins et Pays d'Azur,,5/19/2015 0:00,15.0000000,16.0000000,43.521289000000,7.031638000000,,"Plage pointe du Batéguier face ouest, Ile Sainte-Marguerite, Cannes",57832,observation-72df7011-b2a2-44a1-a9fe-546de76f42ca-5,https://biolit.fr/observations/observation-72df7011-b2a2-44a1-a9fe-546de76f42ca-5/,Scorpaena scrofa,Chapon,,https://biolit.fr/wp-content/uploads/2023/07/Rascasse-scaled.jpg,,TRUE, +N1,61515,sortie-72df7011-b2a2-44a1-a9fe-546de76f42ca,https://biolit.fr/sorties/sortie-72df7011-b2a2-44a1-a9fe-546de76f42ca/,CPIE Iles de Lérins et Pays d'Azur,,5/19/2015 0:00,15.0000000,16.0000000,43.521289000000,7.031638000000,,"Plage pointe du Batéguier face ouest, Ile Sainte-Marguerite, Cannes",57833,observation-72df7011-b2a2-44a1-a9fe-546de76f42ca-6,https://biolit.fr/observations/observation-72df7011-b2a2-44a1-a9fe-546de76f42ca-6/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/crabe marbre-scaled.jpg,,TRUE,Identifiable +N1,61515,sortie-72df7011-b2a2-44a1-a9fe-546de76f42ca,https://biolit.fr/sorties/sortie-72df7011-b2a2-44a1-a9fe-546de76f42ca/,CPIE Iles de Lérins et Pays d'Azur,,5/19/2015 0:00,15.0000000,16.0000000,43.521289000000,7.031638000000,,"Plage pointe du Batéguier face ouest, Ile Sainte-Marguerite, Cannes",57834,observation-72df7011-b2a2-44a1-a9fe-546de76f42ca-7,https://biolit.fr/observations/observation-72df7011-b2a2-44a1-a9fe-546de76f42ca-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/rochers faciés.jpg,,FALSE, +N1,61515,sortie-72df7011-b2a2-44a1-a9fe-546de76f42ca,https://biolit.fr/sorties/sortie-72df7011-b2a2-44a1-a9fe-546de76f42ca/,CPIE Iles de Lérins et Pays d'Azur,,5/19/2015 0:00,15.0000000,16.0000000,43.521289000000,7.031638000000,,"Plage pointe du Batéguier face ouest, Ile Sainte-Marguerite, Cannes",57836,observation-72df7011-b2a2-44a1-a9fe-546de76f42ca-8,https://biolit.fr/observations/observation-72df7011-b2a2-44a1-a9fe-546de76f42ca-8/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/crabe1-scaled.jpg,,TRUE, +N1,61516,sortie-c7e1d459-3c84-4211-9884-f847114c2e50,https://biolit.fr/sorties/sortie-c7e1d459-3c84-4211-9884-f847114c2e50/,Phil,,5/19/2015 0:00,11.0000000,11.0:35,47.877092000000,-3.932332000000,,Rochers plage Sables Blancs - Concarneau - Finistère,57837,observation-c7e1d459-3c84-4211-9884-f847114c2e50,https://biolit.fr/observations/observation-c7e1d459-3c84-4211-9884-f847114c2e50/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20150519_113228-scaled.jpg,,TRUE, +N1,61516,sortie-c7e1d459-3c84-4211-9884-f847114c2e50,https://biolit.fr/sorties/sortie-c7e1d459-3c84-4211-9884-f847114c2e50/,Phil,,5/19/2015 0:00,11.0000000,11.0:35,47.877092000000,-3.932332000000,,Rochers plage Sables Blancs - Concarneau - Finistère,57839,observation-c7e1d459-3c84-4211-9884-f847114c2e50-2,https://biolit.fr/observations/observation-c7e1d459-3c84-4211-9884-f847114c2e50-2/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20150519_113328-scaled.jpg,,TRUE, +N1,61516,sortie-c7e1d459-3c84-4211-9884-f847114c2e50,https://biolit.fr/sorties/sortie-c7e1d459-3c84-4211-9884-f847114c2e50/,Phil,,5/19/2015 0:00,11.0000000,11.0:35,47.877092000000,-3.932332000000,,Rochers plage Sables Blancs - Concarneau - Finistère,57841,observation-c7e1d459-3c84-4211-9884-f847114c2e50-3,https://biolit.fr/observations/observation-c7e1d459-3c84-4211-9884-f847114c2e50-3/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20150519_113412-scaled.jpg,,TRUE, +N1,61516,sortie-c7e1d459-3c84-4211-9884-f847114c2e50,https://biolit.fr/sorties/sortie-c7e1d459-3c84-4211-9884-f847114c2e50/,Phil,,5/19/2015 0:00,11.0000000,11.0:35,47.877092000000,-3.932332000000,,Rochers plage Sables Blancs - Concarneau - Finistère,57843,observation-c7e1d459-3c84-4211-9884-f847114c2e50-4,https://biolit.fr/observations/observation-c7e1d459-3c84-4211-9884-f847114c2e50-4/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20150519_113511-scaled.jpg,,TRUE, +N1,61517,sortie-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee,https://biolit.fr/sorties/sortie-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee/,Phil,,5/19/2015 0:00,16.0000000,16.0000000,47.80044,-4.272756000000,,Cimetière des bateaux - Treffiagat - Finistère,57845,observation-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee,https://biolit.fr/observations/observation-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04122.JPG,,FALSE, +N1,61517,sortie-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee,https://biolit.fr/sorties/sortie-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee/,Phil,,5/19/2015 0:00,16.0000000,16.0000000,47.80044,-4.272756000000,,Cimetière des bateaux - Treffiagat - Finistère,57847,observation-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee-2,https://biolit.fr/observations/observation-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04119.JPG,,FALSE, +N1,61517,sortie-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee,https://biolit.fr/sorties/sortie-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee/,Phil,,5/19/2015 0:00,16.0000000,16.0000000,47.80044,-4.272756000000,,Cimetière des bateaux - Treffiagat - Finistère,57849,observation-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee-3,https://biolit.fr/observations/observation-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04118.JPG,,FALSE, +N1,61517,sortie-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee,https://biolit.fr/sorties/sortie-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee/,Phil,,5/19/2015 0:00,16.0000000,16.0000000,47.80044,-4.272756000000,,Cimetière des bateaux - Treffiagat - Finistère,57851,observation-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee-4,https://biolit.fr/observations/observation-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04113.JPG,,FALSE, +N1,61517,sortie-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee,https://biolit.fr/sorties/sortie-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee/,Phil,,5/19/2015 0:00,16.0000000,16.0000000,47.80044,-4.272756000000,,Cimetière des bateaux - Treffiagat - Finistère,57853,observation-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee-5,https://biolit.fr/observations/observation-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04112.JPG,,FALSE, +N1,61517,sortie-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee,https://biolit.fr/sorties/sortie-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee/,Phil,,5/19/2015 0:00,16.0000000,16.0000000,47.80044,-4.272756000000,,Cimetière des bateaux - Treffiagat - Finistère,57855,observation-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee-6,https://biolit.fr/observations/observation-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04111.JPG,,FALSE, +N1,61517,sortie-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee,https://biolit.fr/sorties/sortie-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee/,Phil,,5/19/2015 0:00,16.0000000,16.0000000,47.80044,-4.272756000000,,Cimetière des bateaux - Treffiagat - Finistère,57857,observation-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee-7,https://biolit.fr/observations/observation-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04109.JPG,,FALSE, +N1,61517,sortie-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee,https://biolit.fr/sorties/sortie-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee/,Phil,,5/19/2015 0:00,16.0000000,16.0000000,47.80044,-4.272756000000,,Cimetière des bateaux - Treffiagat - Finistère,57859,observation-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee-8,https://biolit.fr/observations/observation-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04104.JPG,,FALSE, +N1,61518,sortie-54d53067-ea16-4265-b317-cb576ccbff4a,https://biolit.fr/sorties/sortie-54d53067-ea16-4265-b317-cb576ccbff4a/,Romuald VIALE - EXPENATURE,,5/18/2015 0:00,14.0000000,14.0000000,43.160081000000,5.619415000000,,La Ciotat,57861,observation-54d53067-ea16-4265-b317-cb576ccbff4a,https://biolit.fr/observations/observation-54d53067-ea16-4265-b317-cb576ccbff4a/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sea-kayaking-calanques-Marseille-Cassis-Ciotat (46).jpg,,FALSE, +N1,61518,sortie-54d53067-ea16-4265-b317-cb576ccbff4a,https://biolit.fr/sorties/sortie-54d53067-ea16-4265-b317-cb576ccbff4a/,Romuald VIALE - EXPENATURE,,5/18/2015 0:00,14.0000000,14.0000000,43.160081000000,5.619415000000,,La Ciotat,57863,observation-54d53067-ea16-4265-b317-cb576ccbff4a-2,https://biolit.fr/observations/observation-54d53067-ea16-4265-b317-cb576ccbff4a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sea-kayaking-calanques-Marseille-Cassis-Ciotat (47).jpg,,FALSE, +N1,61518,sortie-54d53067-ea16-4265-b317-cb576ccbff4a,https://biolit.fr/sorties/sortie-54d53067-ea16-4265-b317-cb576ccbff4a/,Romuald VIALE - EXPENATURE,,5/18/2015 0:00,14.0000000,14.0000000,43.160081000000,5.619415000000,,La Ciotat,57865,observation-54d53067-ea16-4265-b317-cb576ccbff4a-3,https://biolit.fr/observations/observation-54d53067-ea16-4265-b317-cb576ccbff4a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sea-kayaking-calanques-Marseille-Cassis-Ciotat (49).jpg,,FALSE, +N1,61519,sortie-c55d972a-1d35-41b3-831a-c06ee87794e7,https://biolit.fr/sorties/sortie-c55d972a-1d35-41b3-831a-c06ee87794e7/,Phil,,5/15/2015 0:00,10.0:15,10.0:35,47.792846000000,-4.28686400000,,Rocher face rue de Men Meur - Le Guilvinec - Finistère,57867,observation-c55d972a-1d35-41b3-831a-c06ee87794e7,https://biolit.fr/observations/observation-c55d972a-1d35-41b3-831a-c06ee87794e7/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/20150515_102344-scaled.jpg,,TRUE, +N1,61519,sortie-c55d972a-1d35-41b3-831a-c06ee87794e7,https://biolit.fr/sorties/sortie-c55d972a-1d35-41b3-831a-c06ee87794e7/,Phil,,5/15/2015 0:00,10.0:15,10.0:35,47.792846000000,-4.28686400000,,Rocher face rue de Men Meur - Le Guilvinec - Finistère,57869,observation-c55d972a-1d35-41b3-831a-c06ee87794e7-2,https://biolit.fr/observations/observation-c55d972a-1d35-41b3-831a-c06ee87794e7-2/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/20150515_102510-scaled.jpg,,TRUE, +N1,61519,sortie-c55d972a-1d35-41b3-831a-c06ee87794e7,https://biolit.fr/sorties/sortie-c55d972a-1d35-41b3-831a-c06ee87794e7/,Phil,,5/15/2015 0:00,10.0:15,10.0:35,47.792846000000,-4.28686400000,,Rocher face rue de Men Meur - Le Guilvinec - Finistère,57871,observation-c55d972a-1d35-41b3-831a-c06ee87794e7-3,https://biolit.fr/observations/observation-c55d972a-1d35-41b3-831a-c06ee87794e7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150515_103532-scaled.jpg,,FALSE, +N1,61519,sortie-c55d972a-1d35-41b3-831a-c06ee87794e7,https://biolit.fr/sorties/sortie-c55d972a-1d35-41b3-831a-c06ee87794e7/,Phil,,5/15/2015 0:00,10.0:15,10.0:35,47.792846000000,-4.28686400000,,Rocher face rue de Men Meur - Le Guilvinec - Finistère,57873,observation-c55d972a-1d35-41b3-831a-c06ee87794e7-4,https://biolit.fr/observations/observation-c55d972a-1d35-41b3-831a-c06ee87794e7-4/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150515_103551-scaled.jpg,,TRUE, +N1,61520,sortie-78943823-5478-4b3a-a4e3-9d6c574a359b,https://biolit.fr/sorties/sortie-78943823-5478-4b3a-a4e3-9d6c574a359b/,Phil,,05/12/2015,11.0000000,11.0000000,47.836199000000,-4.166793000000,,Rocher- plage face rue de la palud - Loctudy - Finistère,57875,observation-78943823-5478-4b3a-a4e3-9d6c574a359b,https://biolit.fr/observations/observation-78943823-5478-4b3a-a4e3-9d6c574a359b/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04016.JPG,,TRUE, +N1,61520,sortie-78943823-5478-4b3a-a4e3-9d6c574a359b,https://biolit.fr/sorties/sortie-78943823-5478-4b3a-a4e3-9d6c574a359b/,Phil,,05/12/2015,11.0000000,11.0000000,47.836199000000,-4.166793000000,,Rocher- plage face rue de la palud - Loctudy - Finistère,57877,observation-78943823-5478-4b3a-a4e3-9d6c574a359b-2,https://biolit.fr/observations/observation-78943823-5478-4b3a-a4e3-9d6c574a359b-2/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/DSC04021.JPG,,TRUE, +N1,61520,sortie-78943823-5478-4b3a-a4e3-9d6c574a359b,https://biolit.fr/sorties/sortie-78943823-5478-4b3a-a4e3-9d6c574a359b/,Phil,,05/12/2015,11.0000000,11.0000000,47.836199000000,-4.166793000000,,Rocher- plage face rue de la palud - Loctudy - Finistère,57879,observation-78943823-5478-4b3a-a4e3-9d6c574a359b-3,https://biolit.fr/observations/observation-78943823-5478-4b3a-a4e3-9d6c574a359b-3/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04022.JPG,,TRUE, +N1,61520,sortie-78943823-5478-4b3a-a4e3-9d6c574a359b,https://biolit.fr/sorties/sortie-78943823-5478-4b3a-a4e3-9d6c574a359b/,Phil,,05/12/2015,11.0000000,11.0000000,47.836199000000,-4.166793000000,,Rocher- plage face rue de la palud - Loctudy - Finistère,57881,observation-78943823-5478-4b3a-a4e3-9d6c574a359b-4,https://biolit.fr/observations/observation-78943823-5478-4b3a-a4e3-9d6c574a359b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04024.JPG,,FALSE, +N1,61520,sortie-78943823-5478-4b3a-a4e3-9d6c574a359b,https://biolit.fr/sorties/sortie-78943823-5478-4b3a-a4e3-9d6c574a359b/,Phil,,05/12/2015,11.0000000,11.0000000,47.836199000000,-4.166793000000,,Rocher- plage face rue de la palud - Loctudy - Finistère,57883,observation-78943823-5478-4b3a-a4e3-9d6c574a359b-5,https://biolit.fr/observations/observation-78943823-5478-4b3a-a4e3-9d6c574a359b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04025.JPG,,FALSE, +N1,61520,sortie-78943823-5478-4b3a-a4e3-9d6c574a359b,https://biolit.fr/sorties/sortie-78943823-5478-4b3a-a4e3-9d6c574a359b/,Phil,,05/12/2015,11.0000000,11.0000000,47.836199000000,-4.166793000000,,Rocher- plage face rue de la palud - Loctudy - Finistère,57885,observation-78943823-5478-4b3a-a4e3-9d6c574a359b-6,https://biolit.fr/observations/observation-78943823-5478-4b3a-a4e3-9d6c574a359b-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04029.JPG,,FALSE, +N1,61520,sortie-78943823-5478-4b3a-a4e3-9d6c574a359b,https://biolit.fr/sorties/sortie-78943823-5478-4b3a-a4e3-9d6c574a359b/,Phil,,05/12/2015,11.0000000,11.0000000,47.836199000000,-4.166793000000,,Rocher- plage face rue de la palud - Loctudy - Finistère,57887,observation-78943823-5478-4b3a-a4e3-9d6c574a359b-7,https://biolit.fr/observations/observation-78943823-5478-4b3a-a4e3-9d6c574a359b-7/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04030.JPG,,TRUE, +N1,61520,sortie-78943823-5478-4b3a-a4e3-9d6c574a359b,https://biolit.fr/sorties/sortie-78943823-5478-4b3a-a4e3-9d6c574a359b/,Phil,,05/12/2015,11.0000000,11.0000000,47.836199000000,-4.166793000000,,Rocher- plage face rue de la palud - Loctudy - Finistère,57889,observation-78943823-5478-4b3a-a4e3-9d6c574a359b-8,https://biolit.fr/observations/observation-78943823-5478-4b3a-a4e3-9d6c574a359b-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04031.JPG,,FALSE, +N1,61520,sortie-78943823-5478-4b3a-a4e3-9d6c574a359b,https://biolit.fr/sorties/sortie-78943823-5478-4b3a-a4e3-9d6c574a359b/,Phil,,05/12/2015,11.0000000,11.0000000,47.836199000000,-4.166793000000,,Rocher- plage face rue de la palud - Loctudy - Finistère,57891,observation-78943823-5478-4b3a-a4e3-9d6c574a359b-9,https://biolit.fr/observations/observation-78943823-5478-4b3a-a4e3-9d6c574a359b-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04032.JPG,,FALSE, +N1,61520,sortie-78943823-5478-4b3a-a4e3-9d6c574a359b,https://biolit.fr/sorties/sortie-78943823-5478-4b3a-a4e3-9d6c574a359b/,Phil,,05/12/2015,11.0000000,11.0000000,47.836199000000,-4.166793000000,,Rocher- plage face rue de la palud - Loctudy - Finistère,57893,observation-78943823-5478-4b3a-a4e3-9d6c574a359b-10,https://biolit.fr/observations/observation-78943823-5478-4b3a-a4e3-9d6c574a359b-10/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/DSC04034.JPG,,TRUE, +N1,61520,sortie-78943823-5478-4b3a-a4e3-9d6c574a359b,https://biolit.fr/sorties/sortie-78943823-5478-4b3a-a4e3-9d6c574a359b/,Phil,,05/12/2015,11.0000000,11.0000000,47.836199000000,-4.166793000000,,Rocher- plage face rue de la palud - Loctudy - Finistère,57895,observation-78943823-5478-4b3a-a4e3-9d6c574a359b-11,https://biolit.fr/observations/observation-78943823-5478-4b3a-a4e3-9d6c574a359b-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04035.JPG,,FALSE, +N1,61520,sortie-78943823-5478-4b3a-a4e3-9d6c574a359b,https://biolit.fr/sorties/sortie-78943823-5478-4b3a-a4e3-9d6c574a359b/,Phil,,05/12/2015,11.0000000,11.0000000,47.836199000000,-4.166793000000,,Rocher- plage face rue de la palud - Loctudy - Finistère,57897,observation-78943823-5478-4b3a-a4e3-9d6c574a359b-12,https://biolit.fr/observations/observation-78943823-5478-4b3a-a4e3-9d6c574a359b-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04037.JPG,,FALSE, +N1,61521,sortie-bfe3c24a-4e32-47fb-86f8-8b9b24753225,https://biolit.fr/sorties/sortie-bfe3c24a-4e32-47fb-86f8-8b9b24753225/,Céline,,5/16/2015 0:00,18.0000000,18.0000000,47.512591000000,-2.847450000000,,st gildas en rhuyz plage des Govelins,57899,observation-bfe3c24a-4e32-47fb-86f8-8b9b24753225,https://biolit.fr/observations/observation-bfe3c24a-4e32-47fb-86f8-8b9b24753225/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/20150516 st Gildas Algues Rouge.jpg,,TRUE, +N1,61521,sortie-bfe3c24a-4e32-47fb-86f8-8b9b24753225,https://biolit.fr/sorties/sortie-bfe3c24a-4e32-47fb-86f8-8b9b24753225/,Céline,,5/16/2015 0:00,18.0000000,18.0000000,47.512591000000,-2.847450000000,,st gildas en rhuyz plage des Govelins,57901,observation-bfe3c24a-4e32-47fb-86f8-8b9b24753225-2,https://biolit.fr/observations/observation-bfe3c24a-4e32-47fb-86f8-8b9b24753225-2/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/20150516 st gildas pontes-rotated.jpg,,TRUE, +N1,61521,sortie-bfe3c24a-4e32-47fb-86f8-8b9b24753225,https://biolit.fr/sorties/sortie-bfe3c24a-4e32-47fb-86f8-8b9b24753225/,Céline,,5/16/2015 0:00,18.0000000,18.0000000,47.512591000000,-2.847450000000,,st gildas en rhuyz plage des Govelins,57903,observation-bfe3c24a-4e32-47fb-86f8-8b9b24753225-3,https://biolit.fr/observations/observation-bfe3c24a-4e32-47fb-86f8-8b9b24753225-3/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/meduse-scaled.jpg,,TRUE, +N1,61522,sortie-515c9f2d-c970-4ecb-8ab1-cd69ed746d20,https://biolit.fr/sorties/sortie-515c9f2d-c970-4ecb-8ab1-cd69ed746d20/,Romuald VIALE - EXPENATURE,,5/16/2015 0:00,14.0000000,14.0:45,43.152943000000,5.686567000000,,Entre St Cyr et Port d'Alon,57904,observation-515c9f2d-c970-4ecb-8ab1-cd69ed746d20,https://biolit.fr/observations/observation-515c9f2d-c970-4ecb-8ab1-cd69ed746d20/,Mola mola,Poisson-lune,,https://biolit.fr/wp-content/uploads/2023/07/1661914_676535035802562_6696700912352734872_n_0.jpg,,TRUE, +N1,61522,sortie-515c9f2d-c970-4ecb-8ab1-cd69ed746d20,https://biolit.fr/sorties/sortie-515c9f2d-c970-4ecb-8ab1-cd69ed746d20/,Romuald VIALE - EXPENATURE,,5/16/2015 0:00,14.0000000,14.0:45,43.152943000000,5.686567000000,,Entre St Cyr et Port d'Alon,57906,observation-515c9f2d-c970-4ecb-8ab1-cd69ed746d20-2,https://biolit.fr/observations/observation-515c9f2d-c970-4ecb-8ab1-cd69ed746d20-2/,Mola mola,Poisson-lune,,https://biolit.fr/wp-content/uploads/2023/07/11219652_676535162469216_576896251419496952_n_0.jpg,,TRUE, +N1,61522,sortie-515c9f2d-c970-4ecb-8ab1-cd69ed746d20,https://biolit.fr/sorties/sortie-515c9f2d-c970-4ecb-8ab1-cd69ed746d20/,Romuald VIALE - EXPENATURE,,5/16/2015 0:00,14.0000000,14.0:45,43.152943000000,5.686567000000,,Entre St Cyr et Port d'Alon,57908,observation-515c9f2d-c970-4ecb-8ab1-cd69ed746d20-3,https://biolit.fr/observations/observation-515c9f2d-c970-4ecb-8ab1-cd69ed746d20-3/,Mola mola,Poisson-lune,,https://biolit.fr/wp-content/uploads/2023/07/11008565_676535172469215_6268918818523823147_n.jpg,,TRUE, +N1,61523,sortie-ad2d0821-92ac-4223-89af-e1f794f48be5,https://biolit.fr/sorties/sortie-ad2d0821-92ac-4223-89af-e1f794f48be5/,Phil,,05/07/2015,12.0000000,13.0000000,47.792855000000,-3.84306200000,,Rochers devant route corniche - Trégunc Finistère,57910,observation-ad2d0821-92ac-4223-89af-e1f794f48be5,https://biolit.fr/observations/observation-ad2d0821-92ac-4223-89af-e1f794f48be5/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC03717.JPG,,TRUE, +N1,61523,sortie-ad2d0821-92ac-4223-89af-e1f794f48be5,https://biolit.fr/sorties/sortie-ad2d0821-92ac-4223-89af-e1f794f48be5/,Phil,,05/07/2015,12.0000000,13.0000000,47.792855000000,-3.84306200000,,Rochers devant route corniche - Trégunc Finistère,57912,observation-ad2d0821-92ac-4223-89af-e1f794f48be5-2,https://biolit.fr/observations/observation-ad2d0821-92ac-4223-89af-e1f794f48be5-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC03713.JPG,,TRUE, +N1,61523,sortie-ad2d0821-92ac-4223-89af-e1f794f48be5,https://biolit.fr/sorties/sortie-ad2d0821-92ac-4223-89af-e1f794f48be5/,Phil,,05/07/2015,12.0000000,13.0000000,47.792855000000,-3.84306200000,,Rochers devant route corniche - Trégunc Finistère,57914,observation-ad2d0821-92ac-4223-89af-e1f794f48be5-3,https://biolit.fr/observations/observation-ad2d0821-92ac-4223-89af-e1f794f48be5-3/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC03734.JPG,,TRUE, +N1,61523,sortie-ad2d0821-92ac-4223-89af-e1f794f48be5,https://biolit.fr/sorties/sortie-ad2d0821-92ac-4223-89af-e1f794f48be5/,Phil,,05/07/2015,12.0000000,13.0000000,47.792855000000,-3.84306200000,,Rochers devant route corniche - Trégunc Finistère,57916,observation-ad2d0821-92ac-4223-89af-e1f794f48be5-4,https://biolit.fr/observations/observation-ad2d0821-92ac-4223-89af-e1f794f48be5-4/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/DSC03768.JPG,,TRUE, +N1,61523,sortie-ad2d0821-92ac-4223-89af-e1f794f48be5,https://biolit.fr/sorties/sortie-ad2d0821-92ac-4223-89af-e1f794f48be5/,Phil,,05/07/2015,12.0000000,13.0000000,47.792855000000,-3.84306200000,,Rochers devant route corniche - Trégunc Finistère,57918,observation-ad2d0821-92ac-4223-89af-e1f794f48be5-5,https://biolit.fr/observations/observation-ad2d0821-92ac-4223-89af-e1f794f48be5-5/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03710.JPG,,TRUE, +N1,61523,sortie-ad2d0821-92ac-4223-89af-e1f794f48be5,https://biolit.fr/sorties/sortie-ad2d0821-92ac-4223-89af-e1f794f48be5/,Phil,,05/07/2015,12.0000000,13.0000000,47.792855000000,-3.84306200000,,Rochers devant route corniche - Trégunc Finistère,57920,observation-ad2d0821-92ac-4223-89af-e1f794f48be5-6,https://biolit.fr/observations/observation-ad2d0821-92ac-4223-89af-e1f794f48be5-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03708.JPG,,FALSE, +N1,61523,sortie-ad2d0821-92ac-4223-89af-e1f794f48be5,https://biolit.fr/sorties/sortie-ad2d0821-92ac-4223-89af-e1f794f48be5/,Phil,,05/07/2015,12.0000000,13.0000000,47.792855000000,-3.84306200000,,Rochers devant route corniche - Trégunc Finistère,57922,observation-ad2d0821-92ac-4223-89af-e1f794f48be5-7,https://biolit.fr/observations/observation-ad2d0821-92ac-4223-89af-e1f794f48be5-7/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/DSC03705.JPG,,TRUE, +N1,61523,sortie-ad2d0821-92ac-4223-89af-e1f794f48be5,https://biolit.fr/sorties/sortie-ad2d0821-92ac-4223-89af-e1f794f48be5/,Phil,,05/07/2015,12.0000000,13.0000000,47.792855000000,-3.84306200000,,Rochers devant route corniche - Trégunc Finistère,57924,observation-ad2d0821-92ac-4223-89af-e1f794f48be5-8,https://biolit.fr/observations/observation-ad2d0821-92ac-4223-89af-e1f794f48be5-8/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03700.JPG,,TRUE, +N1,61523,sortie-ad2d0821-92ac-4223-89af-e1f794f48be5,https://biolit.fr/sorties/sortie-ad2d0821-92ac-4223-89af-e1f794f48be5/,Phil,,05/07/2015,12.0000000,13.0000000,47.792855000000,-3.84306200000,,Rochers devant route corniche - Trégunc Finistère,57926,observation-ad2d0821-92ac-4223-89af-e1f794f48be5-9,https://biolit.fr/observations/observation-ad2d0821-92ac-4223-89af-e1f794f48be5-9/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03699.JPG,,TRUE, +N1,61523,sortie-ad2d0821-92ac-4223-89af-e1f794f48be5,https://biolit.fr/sorties/sortie-ad2d0821-92ac-4223-89af-e1f794f48be5/,Phil,,05/07/2015,12.0000000,13.0000000,47.792855000000,-3.84306200000,,Rochers devant route corniche - Trégunc Finistère,57928,observation-ad2d0821-92ac-4223-89af-e1f794f48be5-10,https://biolit.fr/observations/observation-ad2d0821-92ac-4223-89af-e1f794f48be5-10/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC03692-scaled.jpg,,TRUE, +N1,61524,sortie-a752b7fc-c9c2-48ab-b107-28f9af48c223,https://biolit.fr/sorties/sortie-a752b7fc-c9c2-48ab-b107-28f9af48c223/,Romuald VIALE - EXPENATURE,,5/13/2015 0:00,9.0000000,12.0000000,43.179323000000,5.615987000000,,La Ciotat,57930,observation-a752b7fc-c9c2-48ab-b107-28f9af48c223,https://biolit.fr/observations/observation-a752b7fc-c9c2-48ab-b107-28f9af48c223/,,,,https://biolit.fr/wp-content/uploads/2023/07/Canoe-Kayak-Calanques-cycles-scolaires-colleges-lycees (31).jpg,,FALSE, +N1,61525,sortie-b5804b0b-890c-4735-935a-b766a9885ccb,https://biolit.fr/sorties/sortie-b5804b0b-890c-4735-935a-b766a9885ccb/,Romuald VIALE - EXPENATURE,,5/13/2015 0:00,9.0000000,12.0000000,43.179487000000,5.616137000000,,La Ciotat,57932,observation-b5804b0b-890c-4735-935a-b766a9885ccb,https://biolit.fr/observations/observation-b5804b0b-890c-4735-935a-b766a9885ccb/,Cestum veneris,Ceinture de Vénus,,https://biolit.fr/wp-content/uploads/2023/07/Canoe-Kayak-Calanques-cycles-scolaires-colleges-lycees (36).jpg,,TRUE, +N1,61526,sortie-fe74e2f6-080d-4b3a-8026-8a2b2d5b70fc,https://biolit.fr/sorties/sortie-fe74e2f6-080d-4b3a-8026-8a2b2d5b70fc/,Romuald VIALE - EXPENATURE,,5/13/2015 0:00,13.0000000,15.0000000,43.360959000000,5.302549000000,,l'Estaque,57934,observation-fe74e2f6-080d-4b3a-8026-8a2b2d5b70fc,https://biolit.fr/observations/observation-fe74e2f6-080d-4b3a-8026-8a2b2d5b70fc/,,,,https://biolit.fr/wp-content/uploads/2023/07/Canoe-Kayak-cote-bleue-estaque-rove-niolon-carry-le-rouet-plage (8).jpg,,FALSE, +N1,61527,sortie-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7,https://biolit.fr/sorties/sortie-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7/,Valie,,05/10/2015,11.0000000,11.0:45,43.289781000000,3.434517000000,,Plage de la tamarissière,57936,observation-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7,https://biolit.fr/observations/observation-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC01071-scaled.jpg,,FALSE, +N1,61527,sortie-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7,https://biolit.fr/sorties/sortie-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7/,Valie,,05/10/2015,11.0000000,11.0:45,43.289781000000,3.434517000000,,Plage de la tamarissière,57938,observation-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7-2,https://biolit.fr/observations/observation-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7-2/,Medicago marina,Luzerne marine,,https://biolit.fr/wp-content/uploads/2023/07/DSC01078-scaled.jpg,,TRUE, +N1,61527,sortie-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7,https://biolit.fr/sorties/sortie-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7/,Valie,,05/10/2015,11.0000000,11.0:45,43.289781000000,3.434517000000,,Plage de la tamarissière,57940,observation-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7-3,https://biolit.fr/observations/observation-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7-3/,Matthiola sinuata,Giroflée des dunes,,https://biolit.fr/wp-content/uploads/2023/07/DSC01083-scaled.jpg,,TRUE, +N1,61527,sortie-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7,https://biolit.fr/sorties/sortie-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7/,Valie,,05/10/2015,11.0000000,11.0:45,43.289781000000,3.434517000000,,Plage de la tamarissière,57942,observation-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7-4,https://biolit.fr/observations/observation-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC01074-scaled.jpg,,FALSE, +N1,61527,sortie-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7,https://biolit.fr/sorties/sortie-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7/,Valie,,05/10/2015,11.0000000,11.0:45,43.289781000000,3.434517000000,,Plage de la tamarissière,57944,observation-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7-5,https://biolit.fr/observations/observation-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC01080-scaled.jpg,,FALSE, +N1,61527,sortie-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7,https://biolit.fr/sorties/sortie-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7/,Valie,,05/10/2015,11.0000000,11.0:45,43.289781000000,3.434517000000,,Plage de la tamarissière,57946,observation-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7-6,https://biolit.fr/observations/observation-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7-6/,Lagurus ovatus,Queue de lièvre,,https://biolit.fr/wp-content/uploads/2023/07/DSC01087-scaled.jpg,,TRUE, +N1,61527,sortie-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7,https://biolit.fr/sorties/sortie-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7/,Valie,,05/10/2015,11.0000000,11.0:45,43.289781000000,3.434517000000,,Plage de la tamarissière,57948,observation-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7-7,https://biolit.fr/observations/observation-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC01116-scaled.jpg,,FALSE, +N1,61527,sortie-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7,https://biolit.fr/sorties/sortie-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7/,Valie,,05/10/2015,11.0000000,11.0:45,43.289781000000,3.434517000000,,Plage de la tamarissière,57950,observation-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7-8,https://biolit.fr/observations/observation-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC01118-scaled.jpg,,FALSE, +N1,61528,sortie-4be6ea6d-0d93-43eb-9d7f-67e789f1aecf,https://biolit.fr/sorties/sortie-4be6ea6d-0d93-43eb-9d7f-67e789f1aecf/,Céline,,05/12/2015,10.0000000,12.0000000,43.52133900000,7.03211300000,,Ile de lerins Ile ste Marguerite,57952,observation-4be6ea6d-0d93-43eb-9d7f-67e789f1aecf,https://biolit.fr/observations/observation-4be6ea6d-0d93-43eb-9d7f-67e789f1aecf/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/padine ile de lerins.PNG,,TRUE, +N1,61528,sortie-4be6ea6d-0d93-43eb-9d7f-67e789f1aecf,https://biolit.fr/sorties/sortie-4be6ea6d-0d93-43eb-9d7f-67e789f1aecf/,Céline,,05/12/2015,10.0000000,12.0000000,43.52133900000,7.03211300000,,Ile de lerins Ile ste Marguerite,57954,observation-4be6ea6d-0d93-43eb-9d7f-67e789f1aecf-2,https://biolit.fr/observations/observation-4be6ea6d-0d93-43eb-9d7f-67e789f1aecf-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/bernard l'ermite ile de lerins.PNG,,FALSE, +N1,61528,sortie-4be6ea6d-0d93-43eb-9d7f-67e789f1aecf,https://biolit.fr/sorties/sortie-4be6ea6d-0d93-43eb-9d7f-67e789f1aecf/,Céline,,05/12/2015,10.0000000,12.0000000,43.52133900000,7.03211300000,,Ile de lerins Ile ste Marguerite,57956,observation-4be6ea6d-0d93-43eb-9d7f-67e789f1aecf-3,https://biolit.fr/observations/observation-4be6ea6d-0d93-43eb-9d7f-67e789f1aecf-3/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/criste marine ile de lerins.PNG,,TRUE, +N1,61528,sortie-4be6ea6d-0d93-43eb-9d7f-67e789f1aecf,https://biolit.fr/sorties/sortie-4be6ea6d-0d93-43eb-9d7f-67e789f1aecf/,Céline,,05/12/2015,10.0000000,12.0000000,43.52133900000,7.03211300000,,Ile de lerins Ile ste Marguerite,57958,observation-4be6ea6d-0d93-43eb-9d7f-67e789f1aecf-4,https://biolit.fr/observations/observation-4be6ea6d-0d93-43eb-9d7f-67e789f1aecf-4/,Aequorea forskalea,Equorée,,https://biolit.fr/wp-content/uploads/2023/07/meduse aurelia aureta.PNG,,TRUE, +N1,61529,sortie-5d5b579c-9bcb-43bc-9edb-3aa9a16b7b04,https://biolit.fr/sorties/sortie-5d5b579c-9bcb-43bc-9edb-3aa9a16b7b04/,Phil,,05/07/2015,13.0:15,13.0000000,47.7945740,-3.855234000000,,Port de Trévignon - Trégunc Finistère,57960,observation-5d5b579c-9bcb-43bc-9edb-3aa9a16b7b04,https://biolit.fr/observations/observation-5d5b579c-9bcb-43bc-9edb-3aa9a16b7b04/,Pollachius pollachius,Lieu jaune,,https://biolit.fr/wp-content/uploads/2023/07/DSC03791.JPG,,TRUE, +N1,61530,sortie-a1340a95-3057-47fb-85a2-8d99ccd7b4ce,https://biolit.fr/sorties/sortie-a1340a95-3057-47fb-85a2-8d99ccd7b4ce/,Phil,,05/07/2015,12.000005,12.0000000,47.7932310,-3.84327,,Route de la Corniche - Trégunc -Finistère,57962,observation-a1340a95-3057-47fb-85a2-8d99ccd7b4ce,https://biolit.fr/observations/observation-a1340a95-3057-47fb-85a2-8d99ccd7b4ce/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/DSC03741.JPG,,TRUE, +N1,61530,sortie-a1340a95-3057-47fb-85a2-8d99ccd7b4ce,https://biolit.fr/sorties/sortie-a1340a95-3057-47fb-85a2-8d99ccd7b4ce/,Phil,,05/07/2015,12.000005,12.0000000,47.7932310,-3.84327,,Route de la Corniche - Trégunc -Finistère,57964,observation-a1340a95-3057-47fb-85a2-8d99ccd7b4ce-2,https://biolit.fr/observations/observation-a1340a95-3057-47fb-85a2-8d99ccd7b4ce-2/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/DSC03743.JPG,,TRUE, +N1,61531,sortie-334a13c2-958c-49b4-8085-0b69a92af1ff,https://biolit.fr/sorties/sortie-334a13c2-958c-49b4-8085-0b69a92af1ff/,Phil,,05/07/2015,12.0000000,12.0:45,47.7939100,-3.843479000000,,Route de la Corniche - Trégunc -Finistère,57966,observation-334a13c2-958c-49b4-8085-0b69a92af1ff,https://biolit.fr/observations/observation-334a13c2-958c-49b4-8085-0b69a92af1ff/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03722.JPG,,TRUE, +N1,61531,sortie-334a13c2-958c-49b4-8085-0b69a92af1ff,https://biolit.fr/sorties/sortie-334a13c2-958c-49b4-8085-0b69a92af1ff/,Phil,,05/07/2015,12.0000000,12.0:45,47.7939100,-3.843479000000,,Route de la Corniche - Trégunc -Finistère,57968,observation-334a13c2-958c-49b4-8085-0b69a92af1ff-2,https://biolit.fr/observations/observation-334a13c2-958c-49b4-8085-0b69a92af1ff-2/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/DSC03729.JPG,,TRUE, +N1,61531,sortie-334a13c2-958c-49b4-8085-0b69a92af1ff,https://biolit.fr/sorties/sortie-334a13c2-958c-49b4-8085-0b69a92af1ff/,Phil,,05/07/2015,12.0000000,12.0:45,47.7939100,-3.843479000000,,Route de la Corniche - Trégunc -Finistère,57970,observation-334a13c2-958c-49b4-8085-0b69a92af1ff-3,https://biolit.fr/observations/observation-334a13c2-958c-49b4-8085-0b69a92af1ff-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03736.JPG,,FALSE, +N1,61531,sortie-334a13c2-958c-49b4-8085-0b69a92af1ff,https://biolit.fr/sorties/sortie-334a13c2-958c-49b4-8085-0b69a92af1ff/,Phil,,05/07/2015,12.0000000,12.0:45,47.7939100,-3.843479000000,,Route de la Corniche - Trégunc -Finistère,57972,observation-334a13c2-958c-49b4-8085-0b69a92af1ff-4,https://biolit.fr/observations/observation-334a13c2-958c-49b4-8085-0b69a92af1ff-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03766.JPG,,FALSE, +N1,61531,sortie-334a13c2-958c-49b4-8085-0b69a92af1ff,https://biolit.fr/sorties/sortie-334a13c2-958c-49b4-8085-0b69a92af1ff/,Phil,,05/07/2015,12.0000000,12.0:45,47.7939100,-3.843479000000,,Route de la Corniche - Trégunc -Finistère,57974,observation-334a13c2-958c-49b4-8085-0b69a92af1ff-5,https://biolit.fr/observations/observation-334a13c2-958c-49b4-8085-0b69a92af1ff-5/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03772.JPG,,TRUE, +N1,61531,sortie-334a13c2-958c-49b4-8085-0b69a92af1ff,https://biolit.fr/sorties/sortie-334a13c2-958c-49b4-8085-0b69a92af1ff/,Phil,,05/07/2015,12.0000000,12.0:45,47.7939100,-3.843479000000,,Route de la Corniche - Trégunc -Finistère,57976,observation-334a13c2-958c-49b4-8085-0b69a92af1ff-6,https://biolit.fr/observations/observation-334a13c2-958c-49b4-8085-0b69a92af1ff-6/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03776.JPG,,TRUE, +N1,61531,sortie-334a13c2-958c-49b4-8085-0b69a92af1ff,https://biolit.fr/sorties/sortie-334a13c2-958c-49b4-8085-0b69a92af1ff/,Phil,,05/07/2015,12.0000000,12.0:45,47.7939100,-3.843479000000,,Route de la Corniche - Trégunc -Finistère,57978,observation-334a13c2-958c-49b4-8085-0b69a92af1ff-7,https://biolit.fr/observations/observation-334a13c2-958c-49b4-8085-0b69a92af1ff-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03778.JPG,,FALSE, +N1,61531,sortie-334a13c2-958c-49b4-8085-0b69a92af1ff,https://biolit.fr/sorties/sortie-334a13c2-958c-49b4-8085-0b69a92af1ff/,Phil,,05/07/2015,12.0000000,12.0:45,47.7939100,-3.843479000000,,Route de la Corniche - Trégunc -Finistère,57980,observation-334a13c2-958c-49b4-8085-0b69a92af1ff-8,https://biolit.fr/observations/observation-334a13c2-958c-49b4-8085-0b69a92af1ff-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03780.JPG,,FALSE, +N1,61531,sortie-334a13c2-958c-49b4-8085-0b69a92af1ff,https://biolit.fr/sorties/sortie-334a13c2-958c-49b4-8085-0b69a92af1ff/,Phil,,05/07/2015,12.0000000,12.0:45,47.7939100,-3.843479000000,,Route de la Corniche - Trégunc -Finistère,57982,observation-334a13c2-958c-49b4-8085-0b69a92af1ff-9,https://biolit.fr/observations/observation-334a13c2-958c-49b4-8085-0b69a92af1ff-9/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03781.JPG,,TRUE, +N1,61531,sortie-334a13c2-958c-49b4-8085-0b69a92af1ff,https://biolit.fr/sorties/sortie-334a13c2-958c-49b4-8085-0b69a92af1ff/,Phil,,05/07/2015,12.0000000,12.0:45,47.7939100,-3.843479000000,,Route de la Corniche - Trégunc -Finistère,57984,observation-334a13c2-958c-49b4-8085-0b69a92af1ff-10,https://biolit.fr/observations/observation-334a13c2-958c-49b4-8085-0b69a92af1ff-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03784.JPG,,FALSE, +N1,61532,sortie-53a73c06-e2a2-4128-80de-a1f050ca665f,https://biolit.fr/sorties/sortie-53a73c06-e2a2-4128-80de-a1f050ca665f/,Phil,,05/07/2015,12.0000000,12.0000000,47.7930190,-3.843267000000,,Route de la Corniche - Trégunc -Finistère,57986,observation-53a73c06-e2a2-4128-80de-a1f050ca665f,https://biolit.fr/observations/observation-53a73c06-e2a2-4128-80de-a1f050ca665f/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/DSC03747.JPG,,TRUE, +N1,61532,sortie-53a73c06-e2a2-4128-80de-a1f050ca665f,https://biolit.fr/sorties/sortie-53a73c06-e2a2-4128-80de-a1f050ca665f/,Phil,,05/07/2015,12.0000000,12.0000000,47.7930190,-3.843267000000,,Route de la Corniche - Trégunc -Finistère,57988,observation-53a73c06-e2a2-4128-80de-a1f050ca665f-2,https://biolit.fr/observations/observation-53a73c06-e2a2-4128-80de-a1f050ca665f-2/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/DSC03751.JPG,,TRUE, +N1,61532,sortie-53a73c06-e2a2-4128-80de-a1f050ca665f,https://biolit.fr/sorties/sortie-53a73c06-e2a2-4128-80de-a1f050ca665f/,Phil,,05/07/2015,12.0000000,12.0000000,47.7930190,-3.843267000000,,Route de la Corniche - Trégunc -Finistère,57990,observation-53a73c06-e2a2-4128-80de-a1f050ca665f-3,https://biolit.fr/observations/observation-53a73c06-e2a2-4128-80de-a1f050ca665f-3/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/DSC03754.JPG,,TRUE, +N1,61532,sortie-53a73c06-e2a2-4128-80de-a1f050ca665f,https://biolit.fr/sorties/sortie-53a73c06-e2a2-4128-80de-a1f050ca665f/,Phil,,05/07/2015,12.0000000,12.0000000,47.7930190,-3.843267000000,,Route de la Corniche - Trégunc -Finistère,57992,observation-53a73c06-e2a2-4128-80de-a1f050ca665f-4,https://biolit.fr/observations/observation-53a73c06-e2a2-4128-80de-a1f050ca665f-4/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/DSC03759.JPG,,TRUE, +N1,61532,sortie-53a73c06-e2a2-4128-80de-a1f050ca665f,https://biolit.fr/sorties/sortie-53a73c06-e2a2-4128-80de-a1f050ca665f/,Phil,,05/07/2015,12.0000000,12.0000000,47.7930190,-3.843267000000,,Route de la Corniche - Trégunc -Finistère,57994,observation-53a73c06-e2a2-4128-80de-a1f050ca665f-5,https://biolit.fr/observations/observation-53a73c06-e2a2-4128-80de-a1f050ca665f-5/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/DSC03762.JPG,,TRUE, +N1,61532,sortie-53a73c06-e2a2-4128-80de-a1f050ca665f,https://biolit.fr/sorties/sortie-53a73c06-e2a2-4128-80de-a1f050ca665f/,Phil,,05/07/2015,12.0000000,12.0000000,47.7930190,-3.843267000000,,Route de la Corniche - Trégunc -Finistère,57996,observation-53a73c06-e2a2-4128-80de-a1f050ca665f-6,https://biolit.fr/observations/observation-53a73c06-e2a2-4128-80de-a1f050ca665f-6/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/DSC03795.JPG,,TRUE, +N1,61533,sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6,https://biolit.fr/sorties/sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6/,Phil,,05/04/2015,12.0000000,12.0000000,47.8629490,-4.073048000000,,La Mer Blanche - Fouesnant - Finistère,57998,observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6,https://biolit.fr/observations/observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03647.JPG,,FALSE, +N1,61533,sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6,https://biolit.fr/sorties/sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6/,Phil,,05/04/2015,12.0000000,12.0000000,47.8629490,-4.073048000000,,La Mer Blanche - Fouesnant - Finistère,58000,observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-2,https://biolit.fr/observations/observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03648.JPG,,FALSE, +N1,61533,sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6,https://biolit.fr/sorties/sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6/,Phil,,05/04/2015,12.0000000,12.0000000,47.8629490,-4.073048000000,,La Mer Blanche - Fouesnant - Finistère,58002,observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-3,https://biolit.fr/observations/observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03649.JPG,,FALSE, +N1,61533,sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6,https://biolit.fr/sorties/sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6/,Phil,,05/04/2015,12.0000000,12.0000000,47.8629490,-4.073048000000,,La Mer Blanche - Fouesnant - Finistère,58004,observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-4,https://biolit.fr/observations/observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/DSC03653.JPG,,TRUE, +N1,61533,sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6,https://biolit.fr/sorties/sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6/,Phil,,05/04/2015,12.0000000,12.0000000,47.8629490,-4.073048000000,,La Mer Blanche - Fouesnant - Finistère,58006,observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-5,https://biolit.fr/observations/observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03656.JPG,,FALSE, +N1,61533,sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6,https://biolit.fr/sorties/sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6/,Phil,,05/04/2015,12.0000000,12.0000000,47.8629490,-4.073048000000,,La Mer Blanche - Fouesnant - Finistère,58008,observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-6,https://biolit.fr/observations/observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-6/,Halimione portulacoides,Obione faux-pourpier,,https://biolit.fr/wp-content/uploads/2023/07/DSC03658.JPG,,TRUE,Identifiable +N1,61533,sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6,https://biolit.fr/sorties/sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6/,Phil,,05/04/2015,12.0000000,12.0000000,47.8629490,-4.073048000000,,La Mer Blanche - Fouesnant - Finistère,58010,observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-7,https://biolit.fr/observations/observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03659.JPG,,FALSE, +N1,61533,sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6,https://biolit.fr/sorties/sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6/,Phil,,05/04/2015,12.0000000,12.0000000,47.8629490,-4.073048000000,,La Mer Blanche - Fouesnant - Finistère,58012,observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-8,https://biolit.fr/observations/observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03661.JPG,,FALSE, +N1,61533,sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6,https://biolit.fr/sorties/sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6/,Phil,,05/04/2015,12.0000000,12.0000000,47.8629490,-4.073048000000,,La Mer Blanche - Fouesnant - Finistère,58014,observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-9,https://biolit.fr/observations/observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-9/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/DSC03664.JPG,,TRUE, +N1,61533,sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6,https://biolit.fr/sorties/sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6/,Phil,,05/04/2015,12.0000000,12.0000000,47.8629490,-4.073048000000,,La Mer Blanche - Fouesnant - Finistère,58016,observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-10,https://biolit.fr/observations/observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03665.JPG,,FALSE, +N1,61533,sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6,https://biolit.fr/sorties/sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6/,Phil,,05/04/2015,12.0000000,12.0000000,47.8629490,-4.073048000000,,La Mer Blanche - Fouesnant - Finistère,58018,observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-11,https://biolit.fr/observations/observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03666.JPG,,FALSE, +N1,61534,sortie-dd3dcd2a-1dc7-47d8-8dab-f645bd1e0698,https://biolit.fr/sorties/sortie-dd3dcd2a-1dc7-47d8-8dab-f645bd1e0698/,Romuald VIALE - EXPENATURE,,05/07/2015,15.0000000,15.0000000,43.211305000000,5.51692200000,,Port Miou,58020,observation-dd3dcd2a-1dc7-47d8-8dab-f645bd1e0698,https://biolit.fr/observations/observation-dd3dcd2a-1dc7-47d8-8dab-f645bd1e0698/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150323_144212.jpg,,FALSE, +N1,61535,sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0,https://biolit.fr/sorties/sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0/,Phil,,05/04/2015,13.0000000,14.0:15,47.854471000000,-4.054754000000,,Plage de Kerler - Fouesnant -Finistère,58022,observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0,https://biolit.fr/observations/observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/DSC03669.JPG,,TRUE, +N1,61535,sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0,https://biolit.fr/sorties/sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0/,Phil,,05/04/2015,13.0000000,14.0:15,47.854471000000,-4.054754000000,,Plage de Kerler - Fouesnant -Finistère,58024,observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0-2,https://biolit.fr/observations/observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03672.JPG,,FALSE, +N1,61535,sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0,https://biolit.fr/sorties/sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0/,Phil,,05/04/2015,13.0000000,14.0:15,47.854471000000,-4.054754000000,,Plage de Kerler - Fouesnant -Finistère,58026,observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0-3,https://biolit.fr/observations/observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03675.JPG,,FALSE, +N1,61535,sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0,https://biolit.fr/sorties/sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0/,Phil,,05/04/2015,13.0000000,14.0:15,47.854471000000,-4.054754000000,,Plage de Kerler - Fouesnant -Finistère,58028,observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0-4,https://biolit.fr/observations/observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0-4/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/DSC03676.JPG,,TRUE, +N1,61535,sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0,https://biolit.fr/sorties/sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0/,Phil,,05/04/2015,13.0000000,14.0:15,47.854471000000,-4.054754000000,,Plage de Kerler - Fouesnant -Finistère,58030,observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0-5,https://biolit.fr/observations/observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03680.JPG,,FALSE, +N1,61535,sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0,https://biolit.fr/sorties/sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0/,Phil,,05/04/2015,13.0000000,14.0:15,47.854471000000,-4.054754000000,,Plage de Kerler - Fouesnant -Finistère,58032,observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0-6,https://biolit.fr/observations/observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0-6/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/DSC03682.JPG,,TRUE, +N1,61535,sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0,https://biolit.fr/sorties/sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0/,Phil,,05/04/2015,13.0000000,14.0:15,47.854471000000,-4.054754000000,,Plage de Kerler - Fouesnant -Finistère,58034,observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0-7,https://biolit.fr/observations/observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0-7/,Furcellaria lumbricalis,Algue-lombric,,https://biolit.fr/wp-content/uploads/2023/07/DSC03685.JPG,,TRUE, +N1,61535,sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0,https://biolit.fr/sorties/sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0/,Phil,,05/04/2015,13.0000000,14.0:15,47.854471000000,-4.054754000000,,Plage de Kerler - Fouesnant -Finistère,58036,observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0-8,https://biolit.fr/observations/observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03687.JPG,,FALSE, +N1,61535,sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0,https://biolit.fr/sorties/sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0/,Phil,,05/04/2015,13.0000000,14.0:15,47.854471000000,-4.054754000000,,Plage de Kerler - Fouesnant -Finistère,58038,observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0-9,https://biolit.fr/observations/observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03688.JPG,,FALSE, +N1,61536,sortie-c679484a-a587-41f6-b8d8-3f2998a7b70b,https://biolit.fr/sorties/sortie-c679484a-a587-41f6-b8d8-3f2998a7b70b/,Phil,,05/03/2015,12.0000000,13.0000000,47.893956000000,-3.968001000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,58040,observation-c679484a-a587-41f6-b8d8-3f2998a7b70b,https://biolit.fr/observations/observation-c679484a-a587-41f6-b8d8-3f2998a7b70b/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03641.JPG,,FALSE, +N1,61537,sortie-064c30db-1633-4077-9f59-06449f377f36,https://biolit.fr/sorties/sortie-064c30db-1633-4077-9f59-06449f377f36/,Phil,,05/03/2015,14.0000000,15.0000000,47.86808200000,-4.101913000000,,Bout de la plage - Corniche de la Mer - Bénodet 29,58042,observation-064c30db-1633-4077-9f59-06449f377f36,https://biolit.fr/observations/observation-064c30db-1633-4077-9f59-06449f377f36/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03635.JPG,,TRUE, +N1,61537,sortie-064c30db-1633-4077-9f59-06449f377f36,https://biolit.fr/sorties/sortie-064c30db-1633-4077-9f59-06449f377f36/,Phil,,05/03/2015,14.0000000,15.0000000,47.86808200000,-4.101913000000,,Bout de la plage - Corniche de la Mer - Bénodet 29,58044,observation-064c30db-1633-4077-9f59-06449f377f36-2,https://biolit.fr/observations/observation-064c30db-1633-4077-9f59-06449f377f36-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03637.JPG,,TRUE, +N1,61537,sortie-064c30db-1633-4077-9f59-06449f377f36,https://biolit.fr/sorties/sortie-064c30db-1633-4077-9f59-06449f377f36/,Phil,,05/03/2015,14.0000000,15.0000000,47.86808200000,-4.101913000000,,Bout de la plage - Corniche de la Mer - Bénodet 29,58046,observation-064c30db-1633-4077-9f59-06449f377f36-3,https://biolit.fr/observations/observation-064c30db-1633-4077-9f59-06449f377f36-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03638.JPG,,TRUE, +N1,61538,sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a,https://biolit.fr/sorties/sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a/,Phil,,05/03/2015,11.0:45,12.0:45,47.893328000000,-3.966316000000,,Plage de Kerleven - La Forêt-Fouesnant 29,58048,observation-868e9966-3504-4621-a2a4-ea4d58e8b55a,https://biolit.fr/observations/observation-868e9966-3504-4621-a2a4-ea4d58e8b55a/,Lutraria lutraria,Lutraire elliptique,,https://biolit.fr/wp-content/uploads/2023/07/DSC03594.JPG,,TRUE, +N1,61538,sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a,https://biolit.fr/sorties/sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a/,Phil,,05/03/2015,11.0:45,12.0:45,47.893328000000,-3.966316000000,,Plage de Kerleven - La Forêt-Fouesnant 29,58050,observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-2,https://biolit.fr/observations/observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-2/,Lutraria lutraria,Lutraire elliptique,,https://biolit.fr/wp-content/uploads/2023/07/DSC03599.JPG,,TRUE, +N1,61538,sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a,https://biolit.fr/sorties/sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a/,Phil,,05/03/2015,11.0:45,12.0:45,47.893328000000,-3.966316000000,,Plage de Kerleven - La Forêt-Fouesnant 29,58052,observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-3,https://biolit.fr/observations/observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03601.JPG,,FALSE, +N1,61538,sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a,https://biolit.fr/sorties/sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a/,Phil,,05/03/2015,11.0:45,12.0:45,47.893328000000,-3.966316000000,,Plage de Kerleven - La Forêt-Fouesnant 29,58054,observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-4,https://biolit.fr/observations/observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03603.JPG,,FALSE, +N1,61538,sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a,https://biolit.fr/sorties/sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a/,Phil,,05/03/2015,11.0:45,12.0:45,47.893328000000,-3.966316000000,,Plage de Kerleven - La Forêt-Fouesnant 29,58056,observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-5,https://biolit.fr/observations/observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-5/,Sipunculus (Sipunculus) nudus,Ver cacahuète,,https://biolit.fr/wp-content/uploads/2023/07/DSC03593.JPG,,TRUE, +N1,61538,sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a,https://biolit.fr/sorties/sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a/,Phil,,05/03/2015,11.0:45,12.0:45,47.893328000000,-3.966316000000,,Plage de Kerleven - La Forêt-Fouesnant 29,58058,observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-6,https://biolit.fr/observations/observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-6/,Sipunculus (Sipunculus) nudus,Ver cacahuète,,https://biolit.fr/wp-content/uploads/2023/07/DSC03611.JPG,,TRUE, +N1,61538,sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a,https://biolit.fr/sorties/sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a/,Phil,,05/03/2015,11.0:45,12.0:45,47.893328000000,-3.966316000000,,Plage de Kerleven - La Forêt-Fouesnant 29,58060,observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-7,https://biolit.fr/observations/observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-7/,Sipunculus (Sipunculus) nudus,Ver cacahuète,,https://biolit.fr/wp-content/uploads/2023/07/DSC03612.JPG,,TRUE, +N1,61538,sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a,https://biolit.fr/sorties/sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a/,Phil,,05/03/2015,11.0:45,12.0:45,47.893328000000,-3.966316000000,,Plage de Kerleven - La Forêt-Fouesnant 29,58062,observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-8,https://biolit.fr/observations/observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03623.JPG,,FALSE, +N1,61538,sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a,https://biolit.fr/sorties/sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a/,Phil,,05/03/2015,11.0:45,12.0:45,47.893328000000,-3.966316000000,,Plage de Kerleven - La Forêt-Fouesnant 29,58064,observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-9,https://biolit.fr/observations/observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03624.JPG,,FALSE, +N1,61538,sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a,https://biolit.fr/sorties/sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a/,Phil,,05/03/2015,11.0:45,12.0:45,47.893328000000,-3.966316000000,,Plage de Kerleven - La Forêt-Fouesnant 29,58066,observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-10,https://biolit.fr/observations/observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03589.JPG,,FALSE, +N1,61539,sortie-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6,https://biolit.fr/sorties/sortie-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6/,Phil,,4/23/2015 0:00,10.0:45,11.0000000,47.829801000000,-4.363127000000,,Rochers bout rues des flots Penmarc'h 29,58068,observation-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6,https://biolit.fr/observations/observation-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03562.JPG,,TRUE, +N1,61539,sortie-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6,https://biolit.fr/sorties/sortie-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6/,Phil,,4/23/2015 0:00,10.0:45,11.0000000,47.829801000000,-4.363127000000,,Rochers bout rues des flots Penmarc'h 29,58070,observation-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6-2,https://biolit.fr/observations/observation-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03568.JPG,,TRUE, +N1,61539,sortie-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6,https://biolit.fr/sorties/sortie-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6/,Phil,,4/23/2015 0:00,10.0:45,11.0000000,47.829801000000,-4.363127000000,,Rochers bout rues des flots Penmarc'h 29,58072,observation-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6-3,https://biolit.fr/observations/observation-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03574.JPG,,TRUE, +N1,61539,sortie-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6,https://biolit.fr/sorties/sortie-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6/,Phil,,4/23/2015 0:00,10.0:45,11.0000000,47.829801000000,-4.363127000000,,Rochers bout rues des flots Penmarc'h 29,58074,observation-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6-4,https://biolit.fr/observations/observation-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6-4/,Laminaria ochroleuca,Laminaire jaune,,https://biolit.fr/wp-content/uploads/2023/07/DSC03578.JPG,,TRUE, +N1,61539,sortie-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6,https://biolit.fr/sorties/sortie-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6/,Phil,,4/23/2015 0:00,10.0:45,11.0000000,47.829801000000,-4.363127000000,,Rochers bout rues des flots Penmarc'h 29,58076,observation-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6-5,https://biolit.fr/observations/observation-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6-5/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/DSC03583.JPG,,TRUE, +N1,61540,sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6,https://biolit.fr/sorties/sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58078,observation-fe05f687-3568-40dc-80b9-29c92a71c8f6,https://biolit.fr/observations/observation-fe05f687-3568-40dc-80b9-29c92a71c8f6/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/DSC03524.JPG,,TRUE, +N1,61540,sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6,https://biolit.fr/sorties/sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58080,observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-2,https://biolit.fr/observations/observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03527.JPG,,FALSE, +N1,61540,sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6,https://biolit.fr/sorties/sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58082,observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-3,https://biolit.fr/observations/observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03530.JPG,,FALSE, +N1,61540,sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6,https://biolit.fr/sorties/sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58084,observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-4,https://biolit.fr/observations/observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-4/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC03531.JPG,,TRUE, +N1,61540,sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6,https://biolit.fr/sorties/sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58086,observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-5,https://biolit.fr/observations/observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03532.JPG,,FALSE, +N1,61540,sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6,https://biolit.fr/sorties/sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58088,observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-6,https://biolit.fr/observations/observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-6/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/DSC03536.JPG,,TRUE, +N1,61540,sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6,https://biolit.fr/sorties/sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58090,observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-7,https://biolit.fr/observations/observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03537.JPG,,FALSE, +N1,61540,sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6,https://biolit.fr/sorties/sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58092,observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-8,https://biolit.fr/observations/observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-8/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC03538.JPG,,TRUE, +N1,61540,sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6,https://biolit.fr/sorties/sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58094,observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-9,https://biolit.fr/observations/observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-9/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/DSC03540.JPG,,TRUE, +N1,61540,sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6,https://biolit.fr/sorties/sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58096,observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-10,https://biolit.fr/observations/observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03546.JPG,,FALSE, +N1,61540,sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6,https://biolit.fr/sorties/sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58098,observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-11,https://biolit.fr/observations/observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-11/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03548.JPG,,TRUE, +N1,61540,sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6,https://biolit.fr/sorties/sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58100,observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-12,https://biolit.fr/observations/observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-12/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC03551.JPG,,TRUE, +N1,61540,sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6,https://biolit.fr/sorties/sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58102,observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-13,https://biolit.fr/observations/observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-13/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03552.JPG,,TRUE, +N1,61541,sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a,https://biolit.fr/sorties/sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58104,observation-2d4d6c23-636d-4355-b611-78f08c6cb10a,https://biolit.fr/observations/observation-2d4d6c23-636d-4355-b611-78f08c6cb10a/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/DSC03524.JPG,,TRUE, +N1,61541,sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a,https://biolit.fr/sorties/sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58105,observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-2,https://biolit.fr/observations/observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC03527.JPG,,TRUE, +N1,61541,sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a,https://biolit.fr/sorties/sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58106,observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-3,https://biolit.fr/observations/observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03530.JPG,,FALSE, +N1,61541,sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a,https://biolit.fr/sorties/sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58107,observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-4,https://biolit.fr/observations/observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-4/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC03531.JPG,,TRUE, +N1,61541,sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a,https://biolit.fr/sorties/sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58108,observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-5,https://biolit.fr/observations/observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03532.JPG,,FALSE, +N1,61541,sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a,https://biolit.fr/sorties/sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58109,observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-6,https://biolit.fr/observations/observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-6/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/DSC03536.JPG,,TRUE, +N1,61541,sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a,https://biolit.fr/sorties/sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58110,observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-7,https://biolit.fr/observations/observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03537.JPG,,FALSE, +N1,61541,sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a,https://biolit.fr/sorties/sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58112,observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-9,https://biolit.fr/observations/observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-9/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/DSC03540.JPG,,TRUE, +N1,61541,sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a,https://biolit.fr/sorties/sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58113,observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-10,https://biolit.fr/observations/observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03546.JPG,,FALSE, +N1,61541,sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a,https://biolit.fr/sorties/sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58114,observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-11,https://biolit.fr/observations/observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-11/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03548.JPG,,TRUE, +N1,61541,sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a,https://biolit.fr/sorties/sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58115,observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-12,https://biolit.fr/observations/observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-12/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC03551.JPG,,TRUE, +N1,61541,sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a,https://biolit.fr/sorties/sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58116,observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-13,https://biolit.fr/observations/observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-13/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03552.JPG,,TRUE, +N1,61542,sortie-7ed447e7-2972-4e7f-9685-f53f1def1c20,https://biolit.fr/sorties/sortie-7ed447e7-2972-4e7f-9685-f53f1def1c20/,Emmanuelle,,4/23/2015 0:00,12.0000000,14.0000000,48.123790000000,-4.38060100000,,Plage du Ris,58117,observation-7ed447e7-2972-4e7f-9685-f53f1def1c20,https://biolit.fr/observations/observation-7ed447e7-2972-4e7f-9685-f53f1def1c20/,Corystes cassivelaunus,Crabe masqué,,https://biolit.fr/wp-content/uploads/2023/07/SAM_0316-scaled.jpg,,TRUE, +N1,61543,sortie-3ab83e4d-8bba-4671-b922-d796d666219e,https://biolit.fr/sorties/sortie-3ab83e4d-8bba-4671-b922-d796d666219e/,Emmanuelle,,4/23/2015 0:00,12.0000000,14.0000000,48.123790000000,-4.16087400000,,Plage du Ris,58119,observation-3ab83e4d-8bba-4671-b922-d796d666219e,https://biolit.fr/observations/observation-3ab83e4d-8bba-4671-b922-d796d666219e/,Loligo spp.,Ponte de Calmar,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/SAM_0306-scaled.jpg,,TRUE, +N1,61544,sortie-70e38629-3921-4398-9bcd-fb2565afd5c4,https://biolit.fr/sorties/sortie-70e38629-3921-4398-9bcd-fb2565afd5c4/,Emmanuelle,,4/23/2015 0:00,12.0000000,14.0000000,48.123790000000,-4.38060100000,,Plage du Ris,58121,observation-70e38629-3921-4398-9bcd-fb2565afd5c4,https://biolit.fr/observations/observation-70e38629-3921-4398-9bcd-fb2565afd5c4/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/SAM_0314-scaled.jpg,,TRUE, +N1,61545,sortie-7c976cfa-1128-48b2-b13b-e2606029a4a5,https://biolit.fr/sorties/sortie-7c976cfa-1128-48b2-b13b-e2606029a4a5/,Emmanuelle,,4/20/2015 0:00,12.0:25,14.0:25,47.844356000000,-4.00706600000,,plage de Kerleven,58123,observation-7c976cfa-1128-48b2-b13b-e2606029a4a5,https://biolit.fr/observations/observation-7c976cfa-1128-48b2-b13b-e2606029a4a5/,Sepia officinalis,Seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/séche.jpg,,TRUE, +N1,61546,sortie-140e5627-c114-40a6-b659-f67e60a913a1,https://biolit.fr/sorties/sortie-140e5627-c114-40a6-b659-f67e60a913a1/,Anjelika,,04/07/2015,10.0:45,12.0000000,43.266387000000,5.371457000000,,"Marseille centre pédagogique de la mer, base nautique du Roucas Blanc ",58125,observation-140e5627-c114-40a6-b659-f67e60a913a1,https://biolit.fr/observations/observation-140e5627-c114-40a6-b659-f67e60a913a1/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC00265_1-scaled.jpg,,FALSE, +N1,61546,sortie-140e5627-c114-40a6-b659-f67e60a913a1,https://biolit.fr/sorties/sortie-140e5627-c114-40a6-b659-f67e60a913a1/,Anjelika,,04/07/2015,10.0:45,12.0000000,43.266387000000,5.371457000000,,"Marseille centre pédagogique de la mer, base nautique du Roucas Blanc ",58127,observation-140e5627-c114-40a6-b659-f67e60a913a1-2,https://biolit.fr/observations/observation-140e5627-c114-40a6-b659-f67e60a913a1-2/,Cratena peregrina,Hervia,,https://biolit.fr/wp-content/uploads/2023/07/DSC00269-scaled.jpg,,TRUE, +N1,61547,sortie-80096b82-2b4d-4d1f-8c63-44500642f9cc,https://biolit.fr/sorties/sortie-80096b82-2b4d-4d1f-8c63-44500642f9cc/,Morice,,4/17/2015 0:00,10.0000000,12.0000000,48.72867200000,-3.580106000000,,Kigner Bell,58129,observation-80096b82-2b4d-4d1f-8c63-44500642f9cc,https://biolit.fr/observations/observation-80096b82-2b4d-4d1f-8c63-44500642f9cc/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/10498623_10153291614065127_4447805431130242840_o.jpg,,TRUE, +N1,61548,sortie-8da4d0d1-300c-42f4-bfc7-e4944f3c082a,https://biolit.fr/sorties/sortie-8da4d0d1-300c-42f4-bfc7-e4944f3c082a/,Emmanuelle,,4/16/2015 0:00,20.0000000,22.0000000,48.102320000000,-4.351992000000,,Douarnenez,58131,observation-8da4d0d1-300c-42f4-bfc7-e4944f3c082a,https://biolit.fr/observations/observation-8da4d0d1-300c-42f4-bfc7-e4944f3c082a/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/20150415_191252-scaled.jpg,,TRUE, +N1,61549,sortie-cfc3b396-4ced-49ed-a85a-ec5c2a7ae034,https://biolit.fr/sorties/sortie-cfc3b396-4ced-49ed-a85a-ec5c2a7ae034/,tridimeg,,3/22/2015 0:00,14.0000000,16.0:15,48.644091000000,-2.073697000000,,Roche Pelée,58133,observation-cfc3b396-4ced-49ed-a85a-ec5c2a7ae034,https://biolit.fr/observations/observation-cfc3b396-4ced-49ed-a85a-ec5c2a7ae034/,Galathea strigosa,Galathée bicolore,,https://biolit.fr/wp-content/uploads/2023/07/galathea strigosa basse def pour envoi.jpg,,TRUE, +N1,61550,sortie-d73b2e02-e10d-4f08-8194-f43205a11cac,https://biolit.fr/sorties/sortie-d73b2e02-e10d-4f08-8194-f43205a11cac/,quebec,,3/21/2015 0:00,10.0000000,12.0000000,47.568157000000,-3.099492000000,,plage de St Colomban,58135,observation-d73b2e02-e10d-4f08-8194-f43205a11cac,https://biolit.fr/observations/observation-d73b2e02-e10d-4f08-8194-f43205a11cac/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/Herbier 4-scaled.jpg,,TRUE, +N1,61550,sortie-d73b2e02-e10d-4f08-8194-f43205a11cac,https://biolit.fr/sorties/sortie-d73b2e02-e10d-4f08-8194-f43205a11cac/,quebec,,3/21/2015 0:00,10.0000000,12.0000000,47.568157000000,-3.099492000000,,plage de St Colomban,58137,observation-d73b2e02-e10d-4f08-8194-f43205a11cac-2,https://biolit.fr/observations/observation-d73b2e02-e10d-4f08-8194-f43205a11cac-2/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Herbier 3-scaled.jpg,,TRUE, +N1,61551,sortie-08f0670c-0248-4939-b64d-d7fa58803a49,https://biolit.fr/sorties/sortie-08f0670c-0248-4939-b64d-d7fa58803a49/,Ville de Marseille,,03/05/2015,14.0000000,15.0000000,43.16,5.22,,"Marseille, base nautique du Roucas Blanc",58139,observation-08f0670c-0248-4939-b64d-d7fa58803a49,https://biolit.fr/observations/observation-08f0670c-0248-4939-b64d-d7fa58803a49/,Limaria hians,Lime bâillante,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0166-scaled.jpg,,TRUE, +N1,61551,sortie-08f0670c-0248-4939-b64d-d7fa58803a49,https://biolit.fr/sorties/sortie-08f0670c-0248-4939-b64d-d7fa58803a49/,Ville de Marseille,,03/05/2015,14.0000000,15.0000000,43.16,5.22,,"Marseille, base nautique du Roucas Blanc",58141,observation-08f0670c-0248-4939-b64d-d7fa58803a49-2,https://biolit.fr/observations/observation-08f0670c-0248-4939-b64d-d7fa58803a49-2/,Limaria hians,Lime bâillante,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0167-scaled.jpg,,TRUE, +N1,61551,sortie-08f0670c-0248-4939-b64d-d7fa58803a49,https://biolit.fr/sorties/sortie-08f0670c-0248-4939-b64d-d7fa58803a49/,Ville de Marseille,,03/05/2015,14.0000000,15.0000000,43.16,5.22,,"Marseille, base nautique du Roucas Blanc",58143,observation-08f0670c-0248-4939-b64d-d7fa58803a49-3,https://biolit.fr/observations/observation-08f0670c-0248-4939-b64d-d7fa58803a49-3/,Limaria hians,Lime bâillante,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0169-scaled.jpg,,TRUE, +N1,61551,sortie-08f0670c-0248-4939-b64d-d7fa58803a49,https://biolit.fr/sorties/sortie-08f0670c-0248-4939-b64d-d7fa58803a49/,Ville de Marseille,,03/05/2015,14.0000000,15.0000000,43.16,5.22,,"Marseille, base nautique du Roucas Blanc",58145,observation-08f0670c-0248-4939-b64d-d7fa58803a49-4,https://biolit.fr/observations/observation-08f0670c-0248-4939-b64d-d7fa58803a49-4/,Xantho poressa,Xanthe de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0161-scaled.jpg,,TRUE, +N1,61551,sortie-08f0670c-0248-4939-b64d-d7fa58803a49,https://biolit.fr/sorties/sortie-08f0670c-0248-4939-b64d-d7fa58803a49/,Ville de Marseille,,03/05/2015,14.0000000,15.0000000,43.16,5.22,,"Marseille, base nautique du Roucas Blanc",58147,observation-08f0670c-0248-4939-b64d-d7fa58803a49-5,https://biolit.fr/observations/observation-08f0670c-0248-4939-b64d-d7fa58803a49-5/,Xantho poressa,Xanthe de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0163_0-scaled.jpg,,TRUE, +N1,61551,sortie-08f0670c-0248-4939-b64d-d7fa58803a49,https://biolit.fr/sorties/sortie-08f0670c-0248-4939-b64d-d7fa58803a49/,Ville de Marseille,,03/05/2015,14.0000000,15.0000000,43.16,5.22,,"Marseille, base nautique du Roucas Blanc",58149,observation-08f0670c-0248-4939-b64d-d7fa58803a49-6,https://biolit.fr/observations/observation-08f0670c-0248-4939-b64d-d7fa58803a49-6/,Xantho poressa,Xanthe de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0164-scaled.jpg,,TRUE, +N1,61551,sortie-08f0670c-0248-4939-b64d-d7fa58803a49,https://biolit.fr/sorties/sortie-08f0670c-0248-4939-b64d-d7fa58803a49/,Ville de Marseille,,03/05/2015,14.0000000,15.0000000,43.16,5.22,,"Marseille, base nautique du Roucas Blanc",58151,observation-08f0670c-0248-4939-b64d-d7fa58803a49-7,https://biolit.fr/observations/observation-08f0670c-0248-4939-b64d-d7fa58803a49-7/,Asterina pancerii,Astérie naine des posidonies,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0177_0-scaled.jpg,,TRUE, +N1,61551,sortie-08f0670c-0248-4939-b64d-d7fa58803a49,https://biolit.fr/sorties/sortie-08f0670c-0248-4939-b64d-d7fa58803a49/,Ville de Marseille,,03/05/2015,14.0000000,15.0000000,43.16,5.22,,"Marseille, base nautique du Roucas Blanc",58153,observation-08f0670c-0248-4939-b64d-d7fa58803a49-8,https://biolit.fr/observations/observation-08f0670c-0248-4939-b64d-d7fa58803a49-8/,Asterina pancerii,Astérie naine des posidonies,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0179-scaled.jpg,,TRUE, +N1,61551,sortie-08f0670c-0248-4939-b64d-d7fa58803a49,https://biolit.fr/sorties/sortie-08f0670c-0248-4939-b64d-d7fa58803a49/,Ville de Marseille,,03/05/2015,14.0000000,15.0000000,43.16,5.22,,"Marseille, base nautique du Roucas Blanc",58155,observation-08f0670c-0248-4939-b64d-d7fa58803a49-9,https://biolit.fr/observations/observation-08f0670c-0248-4939-b64d-d7fa58803a49-9/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0180-scaled.jpg,,TRUE, +N1,61551,sortie-08f0670c-0248-4939-b64d-d7fa58803a49,https://biolit.fr/sorties/sortie-08f0670c-0248-4939-b64d-d7fa58803a49/,Ville de Marseille,,03/05/2015,14.0000000,15.0000000,43.16,5.22,,"Marseille, base nautique du Roucas Blanc",58157,observation-08f0670c-0248-4939-b64d-d7fa58803a49-10,https://biolit.fr/observations/observation-08f0670c-0248-4939-b64d-d7fa58803a49-10/,Actitis hypoleucos,Chevalier guignette,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0203-scaled.jpg,,TRUE, +N1,61551,sortie-08f0670c-0248-4939-b64d-d7fa58803a49,https://biolit.fr/sorties/sortie-08f0670c-0248-4939-b64d-d7fa58803a49/,Ville de Marseille,,03/05/2015,14.0000000,15.0000000,43.16,5.22,,"Marseille, base nautique du Roucas Blanc",58159,observation-08f0670c-0248-4939-b64d-d7fa58803a49-11,https://biolit.fr/observations/observation-08f0670c-0248-4939-b64d-d7fa58803a49-11/,Actitis hypoleucos,Chevalier guignette,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0206-scaled.jpg,,TRUE, +N1,61552,sortie-d3c22291-2990-4594-a800-217e5e1c7a17,https://biolit.fr/sorties/sortie-d3c22291-2990-4594-a800-217e5e1c7a17/,Romuald VIALE - EXPENATURE,,02/12/2015,15.0000000,15.0000000,43.168846000000,5.610628000000,,Darse Sud Chantier naval La Ciotat,58161,observation-d3c22291-2990-4594-a800-217e5e1c7a17,https://biolit.fr/observations/observation-d3c22291-2990-4594-a800-217e5e1c7a17/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/image.jpeg,,TRUE, +N1,61553,sortie-ed2890b6-e814-4c03-ad92-099cb685fd3c,https://biolit.fr/sorties/sortie-ed2890b6-e814-4c03-ad92-099cb685fd3c/,Ville de Marseille,,1/15/2015 0:00,11.0000000,14.0:45,43.267470000000,5.291992000000,,Plage de la calanque de la Crine,58162,observation-ed2890b6-e814-4c03-ad92-099cb685fd3c,https://biolit.fr/observations/observation-ed2890b6-e814-4c03-ad92-099cb685fd3c/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1159709_0-scaled.jpg,,FALSE, +N1,61553,sortie-ed2890b6-e814-4c03-ad92-099cb685fd3c,https://biolit.fr/sorties/sortie-ed2890b6-e814-4c03-ad92-099cb685fd3c/,Ville de Marseille,,1/15/2015 0:00,11.0000000,14.0:45,43.267470000000,5.291992000000,,Plage de la calanque de la Crine,58164,observation-ed2890b6-e814-4c03-ad92-099cb685fd3c-2,https://biolit.fr/observations/observation-ed2890b6-e814-4c03-ad92-099cb685fd3c-2/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/P1159714-scaled.jpg,,TRUE, +N1,61553,sortie-ed2890b6-e814-4c03-ad92-099cb685fd3c,https://biolit.fr/sorties/sortie-ed2890b6-e814-4c03-ad92-099cb685fd3c/,Ville de Marseille,,1/15/2015 0:00,11.0000000,14.0:45,43.267470000000,5.291992000000,,Plage de la calanque de la Crine,58166,observation-ed2890b6-e814-4c03-ad92-099cb685fd3c-3,https://biolit.fr/observations/observation-ed2890b6-e814-4c03-ad92-099cb685fd3c-3/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/P1159716-scaled.jpg,,TRUE, +N1,61554,sortie-548d38a2-7257-4900-b55b-34b471f4a396,https://biolit.fr/sorties/sortie-548d38a2-7257-4900-b55b-34b471f4a396/,Ville de Marseille,,01/12/2015,13.0000000,14.0000000,43.26839200000,5.292496000000,,"Marseille, archipel du Frioul, île de Pomègues",58168,observation-548d38a2-7257-4900-b55b-34b471f4a396,https://biolit.fr/observations/observation-548d38a2-7257-4900-b55b-34b471f4a396/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050951-scaled.jpg,,FALSE, +N1,61554,sortie-548d38a2-7257-4900-b55b-34b471f4a396,https://biolit.fr/sorties/sortie-548d38a2-7257-4900-b55b-34b471f4a396/,Ville de Marseille,,01/12/2015,13.0000000,14.0000000,43.26839200000,5.292496000000,,"Marseille, archipel du Frioul, île de Pomègues",58170,observation-548d38a2-7257-4900-b55b-34b471f4a396-2,https://biolit.fr/observations/observation-548d38a2-7257-4900-b55b-34b471f4a396-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050958-scaled.jpg,,FALSE, +N1,61554,sortie-548d38a2-7257-4900-b55b-34b471f4a396,https://biolit.fr/sorties/sortie-548d38a2-7257-4900-b55b-34b471f4a396/,Ville de Marseille,,01/12/2015,13.0000000,14.0000000,43.26839200000,5.292496000000,,"Marseille, archipel du Frioul, île de Pomègues",58172,observation-548d38a2-7257-4900-b55b-34b471f4a396-3,https://biolit.fr/observations/observation-548d38a2-7257-4900-b55b-34b471f4a396-3/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1050950-scaled.jpg,,TRUE, +N1,61554,sortie-548d38a2-7257-4900-b55b-34b471f4a396,https://biolit.fr/sorties/sortie-548d38a2-7257-4900-b55b-34b471f4a396/,Ville de Marseille,,01/12/2015,13.0000000,14.0000000,43.26839200000,5.292496000000,,"Marseille, archipel du Frioul, île de Pomègues",58174,observation-548d38a2-7257-4900-b55b-34b471f4a396-4,https://biolit.fr/observations/observation-548d38a2-7257-4900-b55b-34b471f4a396-4/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/P1050971-scaled.jpg,,TRUE, +N1,61554,sortie-548d38a2-7257-4900-b55b-34b471f4a396,https://biolit.fr/sorties/sortie-548d38a2-7257-4900-b55b-34b471f4a396/,Ville de Marseille,,01/12/2015,13.0000000,14.0000000,43.26839200000,5.292496000000,,"Marseille, archipel du Frioul, île de Pomègues",58176,observation-548d38a2-7257-4900-b55b-34b471f4a396-5,https://biolit.fr/observations/observation-548d38a2-7257-4900-b55b-34b471f4a396-5/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1050972-scaled.jpg,,TRUE, +N1,61554,sortie-548d38a2-7257-4900-b55b-34b471f4a396,https://biolit.fr/sorties/sortie-548d38a2-7257-4900-b55b-34b471f4a396/,Ville de Marseille,,01/12/2015,13.0000000,14.0000000,43.26839200000,5.292496000000,,"Marseille, archipel du Frioul, île de Pomègues",58178,observation-548d38a2-7257-4900-b55b-34b471f4a396-6,https://biolit.fr/observations/observation-548d38a2-7257-4900-b55b-34b471f4a396-6/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/P1050986-scaled.jpg,,TRUE, +N1,61554,sortie-548d38a2-7257-4900-b55b-34b471f4a396,https://biolit.fr/sorties/sortie-548d38a2-7257-4900-b55b-34b471f4a396/,Ville de Marseille,,01/12/2015,13.0000000,14.0000000,43.26839200000,5.292496000000,,"Marseille, archipel du Frioul, île de Pomègues",58180,observation-548d38a2-7257-4900-b55b-34b471f4a396-7,https://biolit.fr/observations/observation-548d38a2-7257-4900-b55b-34b471f4a396-7/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1050961-scaled.jpg,,TRUE, +N1,61554,sortie-548d38a2-7257-4900-b55b-34b471f4a396,https://biolit.fr/sorties/sortie-548d38a2-7257-4900-b55b-34b471f4a396/,Ville de Marseille,,01/12/2015,13.0000000,14.0000000,43.26839200000,5.292496000000,,"Marseille, archipel du Frioul, île de Pomègues",58182,observation-548d38a2-7257-4900-b55b-34b471f4a396-8,https://biolit.fr/observations/observation-548d38a2-7257-4900-b55b-34b471f4a396-8/,Exaiptasia diaphana,Aiptasie diaphane,,https://biolit.fr/wp-content/uploads/2023/07/P1050974-scaled.jpg,,TRUE, +N1,61554,sortie-548d38a2-7257-4900-b55b-34b471f4a396,https://biolit.fr/sorties/sortie-548d38a2-7257-4900-b55b-34b471f4a396/,Ville de Marseille,,01/12/2015,13.0000000,14.0000000,43.26839200000,5.292496000000,,"Marseille, archipel du Frioul, île de Pomègues",58184,observation-548d38a2-7257-4900-b55b-34b471f4a396-9,https://biolit.fr/observations/observation-548d38a2-7257-4900-b55b-34b471f4a396-9/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1050955-scaled.jpg,,TRUE, +N1,61554,sortie-548d38a2-7257-4900-b55b-34b471f4a396,https://biolit.fr/sorties/sortie-548d38a2-7257-4900-b55b-34b471f4a396/,Ville de Marseille,,01/12/2015,13.0000000,14.0000000,43.26839200000,5.292496000000,,"Marseille, archipel du Frioul, île de Pomègues",58186,observation-548d38a2-7257-4900-b55b-34b471f4a396-10,https://biolit.fr/observations/observation-548d38a2-7257-4900-b55b-34b471f4a396-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050984-scaled.jpg,,FALSE, +N1,61554,sortie-548d38a2-7257-4900-b55b-34b471f4a396,https://biolit.fr/sorties/sortie-548d38a2-7257-4900-b55b-34b471f4a396/,Ville de Marseille,,01/12/2015,13.0000000,14.0000000,43.26839200000,5.292496000000,,"Marseille, archipel du Frioul, île de Pomègues",58188,observation-548d38a2-7257-4900-b55b-34b471f4a396-11,https://biolit.fr/observations/observation-548d38a2-7257-4900-b55b-34b471f4a396-11/,Exaiptasia diaphana,Aiptasie diaphane,,https://biolit.fr/wp-content/uploads/2023/07/P1050975-scaled.jpg,,TRUE, +N1,61555,sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023,https://biolit.fr/sorties/sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023/,Ville de Marseille,,01/08/2015,13.0000000,14.0000000,43.16,5.18000000000,,"Marseille, archipel du Frioul, île de Pomègues",58190,observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023,https://biolit.fr/observations/observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023/,Maja crispata,Petite araignée de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1050933_0-scaled.jpg,,TRUE, +N1,61555,sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023,https://biolit.fr/sorties/sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023/,Ville de Marseille,,01/08/2015,13.0000000,14.0000000,43.16,5.18000000000,,"Marseille, archipel du Frioul, île de Pomègues",58192,observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-2,https://biolit.fr/observations/observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-2/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/2023/07/P1050936_1-scaled.jpg,,TRUE, +N1,61555,sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023,https://biolit.fr/sorties/sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023/,Ville de Marseille,,01/08/2015,13.0000000,14.0000000,43.16,5.18000000000,,"Marseille, archipel du Frioul, île de Pomègues",58194,observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-3,https://biolit.fr/observations/observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-3/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/2023/07/P1050937_0-scaled.jpg,,TRUE, +N1,61555,sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023,https://biolit.fr/sorties/sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023/,Ville de Marseille,,01/08/2015,13.0000000,14.0000000,43.16,5.18000000000,,"Marseille, archipel du Frioul, île de Pomègues",58196,observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-4,https://biolit.fr/observations/observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-4/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/2023/07/P1050938_0-scaled.jpg,,TRUE, +N1,61555,sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023,https://biolit.fr/sorties/sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023/,Ville de Marseille,,01/08/2015,13.0000000,14.0000000,43.16,5.18000000000,,"Marseille, archipel du Frioul, île de Pomègues",58198,observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-5,https://biolit.fr/observations/observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-5/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/2023/07/P1050939_0-scaled.jpg,,TRUE, +N1,61555,sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023,https://biolit.fr/sorties/sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023/,Ville de Marseille,,01/08/2015,13.0000000,14.0000000,43.16,5.18000000000,,"Marseille, archipel du Frioul, île de Pomègues",58200,observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-6,https://biolit.fr/observations/observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050944-scaled.jpg,,FALSE, +N1,61555,sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023,https://biolit.fr/sorties/sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023/,Ville de Marseille,,01/08/2015,13.0000000,14.0000000,43.16,5.18000000000,,"Marseille, archipel du Frioul, île de Pomègues",58202,observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-7,https://biolit.fr/observations/observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-7/,Cardita calyculata,Cardite petit calice,,https://biolit.fr/wp-content/uploads/2023/07/P1050945_0-scaled.jpg,,TRUE, +N1,61555,sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023,https://biolit.fr/sorties/sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023/,Ville de Marseille,,01/08/2015,13.0000000,14.0000000,43.16,5.18000000000,,"Marseille, archipel du Frioul, île de Pomègues",58204,observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-8,https://biolit.fr/observations/observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-8/,Cardita calyculata,Cardite petit calice,,https://biolit.fr/wp-content/uploads/2023/07/P1050946_0-scaled.jpg,,TRUE, +N1,61555,sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023,https://biolit.fr/sorties/sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023/,Ville de Marseille,,01/08/2015,13.0000000,14.0000000,43.16,5.18000000000,,"Marseille, archipel du Frioul, île de Pomègues",58206,observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-9,https://biolit.fr/observations/observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-9/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/P1050918-scaled.jpg,,TRUE, +N1,61555,sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023,https://biolit.fr/sorties/sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023/,Ville de Marseille,,01/08/2015,13.0000000,14.0000000,43.16,5.18000000000,,"Marseille, archipel du Frioul, île de Pomègues",58208,observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-10,https://biolit.fr/observations/observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-10/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/2023/07/P1050922_0-scaled.jpg,,TRUE, +N1,61555,sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023,https://biolit.fr/sorties/sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023/,Ville de Marseille,,01/08/2015,13.0000000,14.0000000,43.16,5.18000000000,,"Marseille, archipel du Frioul, île de Pomègues",58210,observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-11,https://biolit.fr/observations/observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050925-scaled.jpg,,FALSE, +N1,61555,sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023,https://biolit.fr/sorties/sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023/,Ville de Marseille,,01/08/2015,13.0000000,14.0000000,43.16,5.18000000000,,"Marseille, archipel du Frioul, île de Pomègues",58212,observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-12,https://biolit.fr/observations/observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050941_0-scaled.jpg,,FALSE, +N1,61555,sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023,https://biolit.fr/sorties/sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023/,Ville de Marseille,,01/08/2015,13.0000000,14.0000000,43.16,5.18000000000,,"Marseille, archipel du Frioul, île de Pomègues",58214,observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-13,https://biolit.fr/observations/observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050932_0-scaled.jpg,,FALSE, +N1,61556,sortie-2e379a7c-a123-4752-b6fd-70df963edf6d,https://biolit.fr/sorties/sortie-2e379a7c-a123-4752-b6fd-70df963edf6d/,Ville de Marseille,,12/03/2014,12.0000000,13.0000000,43.2,5.37,,Calanque de Marseilleveyre,58216,observation-2e379a7c-a123-4752-b6fd-70df963edf6d,https://biolit.fr/observations/observation-2e379a7c-a123-4752-b6fd-70df963edf6d/,Echinaster (Echinaster) sepositus,Etoile de mer rouge,,https://biolit.fr/wp-content/uploads/2023/07/P1050813-scaled.jpg,,TRUE, +N1,61556,sortie-2e379a7c-a123-4752-b6fd-70df963edf6d,https://biolit.fr/sorties/sortie-2e379a7c-a123-4752-b6fd-70df963edf6d/,Ville de Marseille,,12/03/2014,12.0000000,13.0000000,43.2,5.37,,Calanque de Marseilleveyre,58218,observation-2e379a7c-a123-4752-b6fd-70df963edf6d-2,https://biolit.fr/observations/observation-2e379a7c-a123-4752-b6fd-70df963edf6d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050815-scaled.jpg,,FALSE, +N1,61556,sortie-2e379a7c-a123-4752-b6fd-70df963edf6d,https://biolit.fr/sorties/sortie-2e379a7c-a123-4752-b6fd-70df963edf6d/,Ville de Marseille,,12/03/2014,12.0000000,13.0000000,43.2,5.37,,Calanque de Marseilleveyre,58220,observation-2e379a7c-a123-4752-b6fd-70df963edf6d-3,https://biolit.fr/observations/observation-2e379a7c-a123-4752-b6fd-70df963edf6d-3/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/P1050819-scaled.jpg,,TRUE, +N1,61556,sortie-2e379a7c-a123-4752-b6fd-70df963edf6d,https://biolit.fr/sorties/sortie-2e379a7c-a123-4752-b6fd-70df963edf6d/,Ville de Marseille,,12/03/2014,12.0000000,13.0000000,43.2,5.37,,Calanque de Marseilleveyre,58222,observation-2e379a7c-a123-4752-b6fd-70df963edf6d-4,https://biolit.fr/observations/observation-2e379a7c-a123-4752-b6fd-70df963edf6d-4/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1050821-scaled.jpg,,TRUE, +N1,61556,sortie-2e379a7c-a123-4752-b6fd-70df963edf6d,https://biolit.fr/sorties/sortie-2e379a7c-a123-4752-b6fd-70df963edf6d/,Ville de Marseille,,12/03/2014,12.0000000,13.0000000,43.2,5.37,,Calanque de Marseilleveyre,58224,observation-2e379a7c-a123-4752-b6fd-70df963edf6d-5,https://biolit.fr/observations/observation-2e379a7c-a123-4752-b6fd-70df963edf6d-5/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/P1050818-scaled.jpg,,TRUE, +N1,61556,sortie-2e379a7c-a123-4752-b6fd-70df963edf6d,https://biolit.fr/sorties/sortie-2e379a7c-a123-4752-b6fd-70df963edf6d/,Ville de Marseille,,12/03/2014,12.0000000,13.0000000,43.2,5.37,,Calanque de Marseilleveyre,58226,observation-2e379a7c-a123-4752-b6fd-70df963edf6d-6,https://biolit.fr/observations/observation-2e379a7c-a123-4752-b6fd-70df963edf6d-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050823-scaled.jpg,,FALSE, +N1,61556,sortie-2e379a7c-a123-4752-b6fd-70df963edf6d,https://biolit.fr/sorties/sortie-2e379a7c-a123-4752-b6fd-70df963edf6d/,Ville de Marseille,,12/03/2014,12.0000000,13.0000000,43.2,5.37,,Calanque de Marseilleveyre,58228,observation-2e379a7c-a123-4752-b6fd-70df963edf6d-7,https://biolit.fr/observations/observation-2e379a7c-a123-4752-b6fd-70df963edf6d-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050820-scaled.jpg,,FALSE, +N1,61556,sortie-2e379a7c-a123-4752-b6fd-70df963edf6d,https://biolit.fr/sorties/sortie-2e379a7c-a123-4752-b6fd-70df963edf6d/,Ville de Marseille,,12/03/2014,12.0000000,13.0000000,43.2,5.37,,Calanque de Marseilleveyre,58230,observation-2e379a7c-a123-4752-b6fd-70df963edf6d-8,https://biolit.fr/observations/observation-2e379a7c-a123-4752-b6fd-70df963edf6d-8/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/P1050826-scaled.jpg,,TRUE, +N1,61556,sortie-2e379a7c-a123-4752-b6fd-70df963edf6d,https://biolit.fr/sorties/sortie-2e379a7c-a123-4752-b6fd-70df963edf6d/,Ville de Marseille,,12/03/2014,12.0000000,13.0000000,43.2,5.37,,Calanque de Marseilleveyre,58232,observation-2e379a7c-a123-4752-b6fd-70df963edf6d-9,https://biolit.fr/observations/observation-2e379a7c-a123-4752-b6fd-70df963edf6d-9/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1050834-scaled.jpg,,TRUE, +N1,61556,sortie-2e379a7c-a123-4752-b6fd-70df963edf6d,https://biolit.fr/sorties/sortie-2e379a7c-a123-4752-b6fd-70df963edf6d/,Ville de Marseille,,12/03/2014,12.0000000,13.0000000,43.2,5.37,,Calanque de Marseilleveyre,58234,observation-2e379a7c-a123-4752-b6fd-70df963edf6d-10,https://biolit.fr/observations/observation-2e379a7c-a123-4752-b6fd-70df963edf6d-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050839-scaled.jpg,,FALSE, +N1,61557,sortie-95e45e48-2e02-4d29-8407-ba3e528c8004,https://biolit.fr/sorties/sortie-95e45e48-2e02-4d29-8407-ba3e528c8004/,tridimeg,,12/08/2014,13.0000000,14.0000000,48.712023000000,-3.828594000000,,Estran de Diben,58236,observation-95e45e48-2e02-4d29-8407-ba3e528c8004,https://biolit.fr/observations/observation-95e45e48-2e02-4d29-8407-ba3e528c8004/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_4015-scaled.jpg,,TRUE, +N1,61557,sortie-95e45e48-2e02-4d29-8407-ba3e528c8004,https://biolit.fr/sorties/sortie-95e45e48-2e02-4d29-8407-ba3e528c8004/,tridimeg,,12/08/2014,13.0000000,14.0000000,48.712023000000,-3.828594000000,,Estran de Diben,58238,observation-95e45e48-2e02-4d29-8407-ba3e528c8004-2,https://biolit.fr/observations/observation-95e45e48-2e02-4d29-8407-ba3e528c8004-2/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/DSC_4003-scaled.jpg,,TRUE, +N1,61557,sortie-95e45e48-2e02-4d29-8407-ba3e528c8004,https://biolit.fr/sorties/sortie-95e45e48-2e02-4d29-8407-ba3e528c8004/,tridimeg,,12/08/2014,13.0000000,14.0000000,48.712023000000,-3.828594000000,,Estran de Diben,58240,observation-95e45e48-2e02-4d29-8407-ba3e528c8004-3,https://biolit.fr/observations/observation-95e45e48-2e02-4d29-8407-ba3e528c8004-3/,Aplidium pallidum,Flocon pédonculé blanc,,https://biolit.fr/wp-content/uploads/2023/07/DSC_4007-scaled.jpg,,TRUE, +N1,61558,sortie-5e171a90-e372-4a77-b7ef-ec7dd9970e36,https://biolit.fr/sorties/sortie-5e171a90-e372-4a77-b7ef-ec7dd9970e36/,Ville de Marseille,,11/26/2014 0:00,15.0000000,16.0000000,43.16,5.22,,base nautique du roucas blanc,58242,observation-5e171a90-e372-4a77-b7ef-ec7dd9970e36,https://biolit.fr/observations/observation-5e171a90-e372-4a77-b7ef-ec7dd9970e36/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/PB269626-scaled.jpg,,TRUE, +N1,61558,sortie-5e171a90-e372-4a77-b7ef-ec7dd9970e36,https://biolit.fr/sorties/sortie-5e171a90-e372-4a77-b7ef-ec7dd9970e36/,Ville de Marseille,,11/26/2014 0:00,15.0000000,16.0000000,43.16,5.22,,base nautique du roucas blanc,58244,observation-5e171a90-e372-4a77-b7ef-ec7dd9970e36-2,https://biolit.fr/observations/observation-5e171a90-e372-4a77-b7ef-ec7dd9970e36-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/PB269622-scaled.jpg,,TRUE, +N1,61558,sortie-5e171a90-e372-4a77-b7ef-ec7dd9970e36,https://biolit.fr/sorties/sortie-5e171a90-e372-4a77-b7ef-ec7dd9970e36/,Ville de Marseille,,11/26/2014 0:00,15.0000000,16.0000000,43.16,5.22,,base nautique du roucas blanc,58246,observation-5e171a90-e372-4a77-b7ef-ec7dd9970e36-3,https://biolit.fr/observations/observation-5e171a90-e372-4a77-b7ef-ec7dd9970e36-3/,Styela clava,Ascidie japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/PB269614-scaled.jpg,,TRUE, +N1,61558,sortie-5e171a90-e372-4a77-b7ef-ec7dd9970e36,https://biolit.fr/sorties/sortie-5e171a90-e372-4a77-b7ef-ec7dd9970e36/,Ville de Marseille,,11/26/2014 0:00,15.0000000,16.0000000,43.16,5.22,,base nautique du roucas blanc,58248,observation-5e171a90-e372-4a77-b7ef-ec7dd9970e36-4,https://biolit.fr/observations/observation-5e171a90-e372-4a77-b7ef-ec7dd9970e36-4/,Sabella spallanzanii,Spirographe,,https://biolit.fr/wp-content/uploads/2023/07/PB269611-scaled.jpg,,TRUE, +N1,61558,sortie-5e171a90-e372-4a77-b7ef-ec7dd9970e36,https://biolit.fr/sorties/sortie-5e171a90-e372-4a77-b7ef-ec7dd9970e36/,Ville de Marseille,,11/26/2014 0:00,15.0000000,16.0000000,43.16,5.22,,base nautique du roucas blanc,58250,observation-5e171a90-e372-4a77-b7ef-ec7dd9970e36-5,https://biolit.fr/observations/observation-5e171a90-e372-4a77-b7ef-ec7dd9970e36-5/,Sabella spallanzanii,Spirographe,,https://biolit.fr/wp-content/uploads/2023/07/PB269609-scaled.jpg,,TRUE, +N1,61558,sortie-5e171a90-e372-4a77-b7ef-ec7dd9970e36,https://biolit.fr/sorties/sortie-5e171a90-e372-4a77-b7ef-ec7dd9970e36/,Ville de Marseille,,11/26/2014 0:00,15.0000000,16.0000000,43.16,5.22,,base nautique du roucas blanc,58252,observation-5e171a90-e372-4a77-b7ef-ec7dd9970e36-6,https://biolit.fr/observations/observation-5e171a90-e372-4a77-b7ef-ec7dd9970e36-6/,Sabella spallanzanii,Spirographe,,https://biolit.fr/wp-content/uploads/2023/07/PB269610-scaled.jpg,,TRUE, +N1,61558,sortie-5e171a90-e372-4a77-b7ef-ec7dd9970e36,https://biolit.fr/sorties/sortie-5e171a90-e372-4a77-b7ef-ec7dd9970e36/,Ville de Marseille,,11/26/2014 0:00,15.0000000,16.0000000,43.16,5.22,,base nautique du roucas blanc,58254,observation-5e171a90-e372-4a77-b7ef-ec7dd9970e36-7,https://biolit.fr/observations/observation-5e171a90-e372-4a77-b7ef-ec7dd9970e36-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/PB269576-scaled.jpg,,FALSE, +N1,61558,sortie-5e171a90-e372-4a77-b7ef-ec7dd9970e36,https://biolit.fr/sorties/sortie-5e171a90-e372-4a77-b7ef-ec7dd9970e36/,Ville de Marseille,,11/26/2014 0:00,15.0000000,16.0000000,43.16,5.22,,base nautique du roucas blanc,58256,observation-5e171a90-e372-4a77-b7ef-ec7dd9970e36-8,https://biolit.fr/observations/observation-5e171a90-e372-4a77-b7ef-ec7dd9970e36-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/PB269577-scaled.jpg,,FALSE, +N1,61561,sortie-1e8858cf-d4af-4cb4-9675-9cd5fd80fcdc,https://biolit.fr/sorties/sortie-1e8858cf-d4af-4cb4-9675-9cd5fd80fcdc/,Céline,,11/16/2014 0:00,15.0:15,16.0:15,43.331311000000,5.071364000000,,Plage de Ste Croix,58276,observation-1e8858cf-d4af-4cb4-9675-9cd5fd80fcdc,https://biolit.fr/observations/observation-1e8858cf-d4af-4cb4-9675-9cd5fd80fcdc/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/DSCN8420-scaled.jpg,,TRUE, +N1,61561,sortie-1e8858cf-d4af-4cb4-9675-9cd5fd80fcdc,https://biolit.fr/sorties/sortie-1e8858cf-d4af-4cb4-9675-9cd5fd80fcdc/,Céline,,11/16/2014 0:00,15.0:15,16.0:15,43.331311000000,5.071364000000,,Plage de Ste Croix,58278,observation-1e8858cf-d4af-4cb4-9675-9cd5fd80fcdc-2,https://biolit.fr/observations/observation-1e8858cf-d4af-4cb4-9675-9cd5fd80fcdc-2/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/DSCN8455-scaled.jpg,,TRUE,Identifiable +N1,61561,sortie-1e8858cf-d4af-4cb4-9675-9cd5fd80fcdc,https://biolit.fr/sorties/sortie-1e8858cf-d4af-4cb4-9675-9cd5fd80fcdc/,Céline,,11/16/2014 0:00,15.0:15,16.0:15,43.331311000000,5.071364000000,,Plage de Ste Croix,58280,observation-1e8858cf-d4af-4cb4-9675-9cd5fd80fcdc-3,https://biolit.fr/observations/observation-1e8858cf-d4af-4cb4-9675-9cd5fd80fcdc-3/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/DSCN8457-scaled.jpg,,TRUE, +N1,61561,sortie-1e8858cf-d4af-4cb4-9675-9cd5fd80fcdc,https://biolit.fr/sorties/sortie-1e8858cf-d4af-4cb4-9675-9cd5fd80fcdc/,Céline,,11/16/2014 0:00,15.0:15,16.0:15,43.331311000000,5.071364000000,,Plage de Ste Croix,58282,observation-1e8858cf-d4af-4cb4-9675-9cd5fd80fcdc-4,https://biolit.fr/observations/observation-1e8858cf-d4af-4cb4-9675-9cd5fd80fcdc-4/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/DSCN8423-scaled.jpg,,TRUE, +N1,61562,sortie-d92e45b1-843f-4881-8757-bec900a13fc5,https://biolit.fr/sorties/sortie-d92e45b1-843f-4881-8757-bec900a13fc5/,pascal vanaker,,11/03/2014,15.0:15,16.0000000,42.665427000000,9.061644000000,,Plage de l'Ostriconi dans les Agriates en Corse,58284,observation-d92e45b1-843f-4881-8757-bec900a13fc5,https://biolit.fr/observations/observation-d92e45b1-843f-4881-8757-bec900a13fc5/,Pleurobrachia pileus,Groseille de mer,,https://biolit.fr/wp-content/uploads/2023/07/observation 1.jpg,,TRUE, +N1,61562,sortie-d92e45b1-843f-4881-8757-bec900a13fc5,https://biolit.fr/sorties/sortie-d92e45b1-843f-4881-8757-bec900a13fc5/,pascal vanaker,,11/03/2014,15.0:15,16.0000000,42.665427000000,9.061644000000,,Plage de l'Ostriconi dans les Agriates en Corse,58286,observation-d92e45b1-843f-4881-8757-bec900a13fc5-2,https://biolit.fr/observations/observation-d92e45b1-843f-4881-8757-bec900a13fc5-2/,Pleurobrachia pileus,Groseille de mer,,https://biolit.fr/wp-content/uploads/2023/07/observation 2.jpg,,TRUE, +N1,61563,sortie-b4dd61c7-0f22-49bb-9d45-07280aac5e5a,https://biolit.fr/sorties/sortie-b4dd61c7-0f22-49bb-9d45-07280aac5e5a/,Ville de Marseille,,10/20/2014 0:00,10.0000000,11.0000000,43.16,5.22,,base nautique du roucas blanc,58288,observation-b4dd61c7-0f22-49bb-9d45-07280aac5e5a,https://biolit.fr/observations/observation-b4dd61c7-0f22-49bb-9d45-07280aac5e5a/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2510-scaled.jpg,,FALSE, +N1,61563,sortie-b4dd61c7-0f22-49bb-9d45-07280aac5e5a,https://biolit.fr/sorties/sortie-b4dd61c7-0f22-49bb-9d45-07280aac5e5a/,Ville de Marseille,,10/20/2014 0:00,10.0000000,11.0000000,43.16,5.22,,base nautique du roucas blanc,58290,observation-b4dd61c7-0f22-49bb-9d45-07280aac5e5a-2,https://biolit.fr/observations/observation-b4dd61c7-0f22-49bb-9d45-07280aac5e5a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2512-scaled.jpg,,FALSE, +N1,61563,sortie-b4dd61c7-0f22-49bb-9d45-07280aac5e5a,https://biolit.fr/sorties/sortie-b4dd61c7-0f22-49bb-9d45-07280aac5e5a/,Ville de Marseille,,10/20/2014 0:00,10.0000000,11.0000000,43.16,5.22,,base nautique du roucas blanc,58292,observation-b4dd61c7-0f22-49bb-9d45-07280aac5e5a-3,https://biolit.fr/observations/observation-b4dd61c7-0f22-49bb-9d45-07280aac5e5a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2515-scaled.jpg,,FALSE, +N1,61563,sortie-b4dd61c7-0f22-49bb-9d45-07280aac5e5a,https://biolit.fr/sorties/sortie-b4dd61c7-0f22-49bb-9d45-07280aac5e5a/,Ville de Marseille,,10/20/2014 0:00,10.0000000,11.0000000,43.16,5.22,,base nautique du roucas blanc,58294,observation-b4dd61c7-0f22-49bb-9d45-07280aac5e5a-4,https://biolit.fr/observations/observation-b4dd61c7-0f22-49bb-9d45-07280aac5e5a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2521-scaled.jpg,,FALSE, +N1,61563,sortie-b4dd61c7-0f22-49bb-9d45-07280aac5e5a,https://biolit.fr/sorties/sortie-b4dd61c7-0f22-49bb-9d45-07280aac5e5a/,Ville de Marseille,,10/20/2014 0:00,10.0000000,11.0000000,43.16,5.22,,base nautique du roucas blanc,58296,observation-b4dd61c7-0f22-49bb-9d45-07280aac5e5a-5,https://biolit.fr/observations/observation-b4dd61c7-0f22-49bb-9d45-07280aac5e5a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2528-scaled.jpg,,FALSE, +N1,61563,sortie-b4dd61c7-0f22-49bb-9d45-07280aac5e5a,https://biolit.fr/sorties/sortie-b4dd61c7-0f22-49bb-9d45-07280aac5e5a/,Ville de Marseille,,10/20/2014 0:00,10.0000000,11.0000000,43.16,5.22,,base nautique du roucas blanc,58298,observation-b4dd61c7-0f22-49bb-9d45-07280aac5e5a-6,https://biolit.fr/observations/observation-b4dd61c7-0f22-49bb-9d45-07280aac5e5a-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2535-scaled.jpg,,FALSE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58300,observation-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Anémone rouge (4)-scaled.jpg,,TRUE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58302,observation-51e4cf06-e886-460b-b197-33828246eecc-2,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/bernard-l'ermite (2)-scaled.jpg,,FALSE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58303,observation-51e4cf06-e886-460b-b197-33828246eecc-3,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-3/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Bigorneau (1)-scaled.jpg,,TRUE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58305,observation-51e4cf06-e886-460b-b197-33828246eecc-4,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus (4)-scaled.jpg,,TRUE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58307,observation-51e4cf06-e886-460b-b197-33828246eecc-5,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-5/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/2023/07/Chabot buffle (3)-scaled.jpg,,TRUE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58309,observation-51e4cf06-e886-460b-b197-33828246eecc-6,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Chondrus crispus (2)-scaled.jpg,,FALSE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58311,observation-51e4cf06-e886-460b-b197-33828246eecc-7,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-7/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Crabe tourteau (4)-scaled.jpg,,TRUE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58313,observation-51e4cf06-e886-460b-b197-33828246eecc-8,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crevette rose (2).JPG,,FALSE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58315,observation-51e4cf06-e886-460b-b197-33828246eecc-9,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crevette grise (5)-scaled.jpg,,FALSE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58317,observation-51e4cf06-e886-460b-b197-33828246eecc-10,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-10/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Etoile de Mer-scaled.jpg,,TRUE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58318,observation-51e4cf06-e886-460b-b197-33828246eecc-11,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-11/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Etrille (3)-scaled.jpg,,TRUE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58320,observation-51e4cf06-e886-460b-b197-33828246eecc-12,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-12/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/Fucus serratus (2)-scaled.jpg,,TRUE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58322,observation-51e4cf06-e886-460b-b197-33828246eecc-13,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-13/,Pholis gunnellus,Gonnelle,,https://biolit.fr/wp-content/uploads/2023/07/Gonelle-scaled.jpg,,TRUE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58324,observation-51e4cf06-e886-460b-b197-33828246eecc-14,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-14/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/Ligia oceanica (1)-scaled.jpg,,TRUE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58326,observation-51e4cf06-e886-460b-b197-33828246eecc-15,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-15/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Oursin (1)-scaled.jpg,,TRUE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58328,observation-51e4cf06-e886-460b-b197-33828246eecc-16,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle (4)-scaled.jpg,,FALSE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58330,observation-51e4cf06-e886-460b-b197-33828246eecc-17,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-17/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/Pelvetia caniculata-scaled.jpg,,TRUE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58331,observation-51e4cf06-e886-460b-b197-33828246eecc-18,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-18/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellaine (1)-scaled.jpg,,TRUE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58333,observation-51e4cf06-e886-460b-b197-33828246eecc-19,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-19/,Sepiola atlantica,Sépiole atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Sepiola (7).JPG,,TRUE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58335,observation-51e4cf06-e886-460b-b197-33828246eecc-20,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-20/,Parablennius gattorugine,Cabot,,https://biolit.fr/wp-content/uploads/2023/07/Toupet marbré 01 (1)-scaled.jpg,,TRUE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58337,observation-51e4cf06-e886-460b-b197-33828246eecc-21,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-21/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/Ulva Lactua (1)-scaled.jpg,,TRUE, +N1,61565,sortie-41dbbb82-c9fc-4342-9334-37c23d74297b,https://biolit.fr/sorties/sortie-41dbbb82-c9fc-4342-9334-37c23d74297b/,AIEJE,,08/06/2014,10.0000000,13.0000000,43.339708000000,5.258506000000,,Niolon,58339,observation-41dbbb82-c9fc-4342-9334-37c23d74297b,https://biolit.fr/observations/observation-41dbbb82-c9fc-4342-9334-37c23d74297b/,Sphyraena viridensis,Bécune à bouche jaune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20140806_102455.jpg,,TRUE, +N1,61565,sortie-41dbbb82-c9fc-4342-9334-37c23d74297b,https://biolit.fr/sorties/sortie-41dbbb82-c9fc-4342-9334-37c23d74297b/,AIEJE,,08/06/2014,10.0000000,13.0000000,43.339708000000,5.258506000000,,Niolon,58341,observation-41dbbb82-c9fc-4342-9334-37c23d74297b-2,https://biolit.fr/observations/observation-41dbbb82-c9fc-4342-9334-37c23d74297b-2/,Sphyraena viridensis,Bécune à bouche jaune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20140806_110846.jpg,,TRUE, +N1,61566,sortie-126372ca-fa06-4df9-b608-4b316b4b4261,https://biolit.fr/sorties/sortie-126372ca-fa06-4df9-b608-4b316b4b4261/,Observe la nature,,7/26/2014 0:00,17.0000000,18.0000000,43.396658000000,3.701195000000,,Le môle port de plaisance,58343,observation-126372ca-fa06-4df9-b608-4b316b4b4261,https://biolit.fr/observations/observation-126372ca-fa06-4df9-b608-4b316b4b4261/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/C crbe marbre couleur.jpg,,TRUE, +N1,61566,sortie-126372ca-fa06-4df9-b608-4b316b4b4261,https://biolit.fr/sorties/sortie-126372ca-fa06-4df9-b608-4b316b4b4261/,Observe la nature,,7/26/2014 0:00,17.0000000,18.0000000,43.396658000000,3.701195000000,,Le môle port de plaisance,58345,observation-126372ca-fa06-4df9-b608-4b316b4b4261-2,https://biolit.fr/observations/observation-126372ca-fa06-4df9-b608-4b316b4b4261-2/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/C critere 3 piques.jpg,,TRUE, +N1,61566,sortie-126372ca-fa06-4df9-b608-4b316b4b4261,https://biolit.fr/sorties/sortie-126372ca-fa06-4df9-b608-4b316b4b4261/,Observe la nature,,7/26/2014 0:00,17.0000000,18.0000000,43.396658000000,3.701195000000,,Le môle port de plaisance,58347,observation-126372ca-fa06-4df9-b608-4b316b4b4261-3,https://biolit.fr/observations/observation-126372ca-fa06-4df9-b608-4b316b4b4261-3/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/C femelle.jpg,,TRUE, +N1,61567,sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f,https://biolit.fr/sorties/sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f/,ptiteric,,7/27/2014 0:00,15.0000000,16.0000000,43.537441000000,7.084663000000,,"ANTIBES, rocher de la Fourmigue",58349,observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f,https://biolit.fr/observations/observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f/,Flabellina affinis,Flabelline mauve,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3258.jpg,,TRUE, +N1,61567,sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f,https://biolit.fr/sorties/sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f/,ptiteric,,7/27/2014 0:00,15.0000000,16.0000000,43.537441000000,7.084663000000,,"ANTIBES, rocher de la Fourmigue",58351,observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-2,https://biolit.fr/observations/observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-2/,Diplodus vulgaris,Sar à tête noire,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3261.jpg,,TRUE, +N1,61567,sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f,https://biolit.fr/sorties/sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f/,ptiteric,,7/27/2014 0:00,15.0000000,16.0000000,43.537441000000,7.084663000000,,"ANTIBES, rocher de la Fourmigue",58353,observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-3,https://biolit.fr/observations/observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-3/,Palinurus elephas,Langouste rouge,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3264.jpg,,TRUE, +N1,61567,sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f,https://biolit.fr/sorties/sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f/,ptiteric,,7/27/2014 0:00,15.0000000,16.0000000,43.537441000000,7.084663000000,,"ANTIBES, rocher de la Fourmigue",58355,observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-4,https://biolit.fr/observations/observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-4/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3268.jpg,,TRUE, +N1,61567,sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f,https://biolit.fr/sorties/sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f/,ptiteric,,7/27/2014 0:00,15.0000000,16.0000000,43.537441000000,7.084663000000,,"ANTIBES, rocher de la Fourmigue",58357,observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-5,https://biolit.fr/observations/observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-5/,Phyllidia flava,Phyllis à ponctuations blanches,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3270.jpg,,TRUE, +N1,61567,sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f,https://biolit.fr/sorties/sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f/,ptiteric,,7/27/2014 0:00,15.0000000,16.0000000,43.537441000000,7.084663000000,,"ANTIBES, rocher de la Fourmigue",58359,observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-6,https://biolit.fr/observations/observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-6/,Coris julis,Girelle commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3272.jpg,,TRUE, +N1,61567,sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f,https://biolit.fr/sorties/sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f/,ptiteric,,7/27/2014 0:00,15.0000000,16.0000000,43.537441000000,7.084663000000,,"ANTIBES, rocher de la Fourmigue",58361,observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-7,https://biolit.fr/observations/observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3278.jpg,,FALSE, +N1,61567,sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f,https://biolit.fr/sorties/sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f/,ptiteric,,7/27/2014 0:00,15.0000000,16.0000000,43.537441000000,7.084663000000,,"ANTIBES, rocher de la Fourmigue",58363,observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-8,https://biolit.fr/observations/observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-8/,Apogon imberbis,Apogon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3279.jpg,,TRUE, +N1,61567,sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f,https://biolit.fr/sorties/sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f/,ptiteric,,7/27/2014 0:00,15.0000000,16.0000000,43.537441000000,7.084663000000,,"ANTIBES, rocher de la Fourmigue",58365,observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-9,https://biolit.fr/observations/observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-9/,Symphodus tinca,Crénilabre-paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3281.jpg,,TRUE, +N1,61567,sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f,https://biolit.fr/sorties/sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f/,ptiteric,,7/27/2014 0:00,15.0000000,16.0000000,43.537441000000,7.084663000000,,"ANTIBES, rocher de la Fourmigue",58367,observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-10,https://biolit.fr/observations/observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-10/,Peltodoris atromaculata,Doris dalmatienne,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3283.jpg,,TRUE, +N1,61567,sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f,https://biolit.fr/sorties/sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f/,ptiteric,,7/27/2014 0:00,15.0000000,16.0000000,43.537441000000,7.084663000000,,"ANTIBES, rocher de la Fourmigue",58369,observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-11,https://biolit.fr/observations/observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-11/,Serranus scriba,Serran-écriture,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3288.jpg,,TRUE, +N1,61567,sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f,https://biolit.fr/sorties/sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f/,ptiteric,,7/27/2014 0:00,15.0000000,16.0000000,43.537441000000,7.084663000000,,"ANTIBES, rocher de la Fourmigue",58371,observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-12,https://biolit.fr/observations/observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-12/,Pinna nobilis,Grande nacre,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3291.jpg,,TRUE, +N1,61568,sortie-47504677-a189-4d5d-b02b-9d809064e286,https://biolit.fr/sorties/sortie-47504677-a189-4d5d-b02b-9d809064e286/,AIEJE,,7/25/2014 0:00,9.0000000,11.0000000,43.333270000000,5.199681000000,,Port de la Redonne,58373,observation-47504677-a189-4d5d-b02b-9d809064e286,https://biolit.fr/observations/observation-47504677-a189-4d5d-b02b-9d809064e286/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20140725_104444.jpg,,TRUE,Identifiable +N1,61569,sortie-6a1ecbcf-e309-4d1f-9617-2ac9e3bcca99,https://biolit.fr/sorties/sortie-6a1ecbcf-e309-4d1f-9617-2ac9e3bcca99/,Ville de Marseille,,7/16/2014 0:00,10.0000000,11.0000000,43.266327000000,5.371378000000,,"Bassin du Roucas Blanc, 13008 Marseille",58375,observation-6a1ecbcf-e309-4d1f-9617-2ac9e3bcca99,https://biolit.fr/observations/observation-6a1ecbcf-e309-4d1f-9617-2ac9e3bcca99/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/ponte roussette_0.jpg,,TRUE, +N1,61570,sortie-0952c2f7-74e6-40b1-a432-b428dfee61c2,https://biolit.fr/sorties/sortie-0952c2f7-74e6-40b1-a432-b428dfee61c2/,marionbrige,,7/13/2014 0:00,16.0:25,16.0000000,49.696989000000,-1.472714000000,,Fermanville,58377,observation-0952c2f7-74e6-40b1-a432-b428dfee61c2,https://biolit.fr/observations/observation-0952c2f7-74e6-40b1-a432-b428dfee61c2/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/P1090725-scaled.jpg,,TRUE, +N1,61571,sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e,https://biolit.fr/sorties/sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58379,observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e,https://biolit.fr/observations/observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/PH0076655-scaled.jpg,,TRUE, +N1,61571,sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e,https://biolit.fr/sorties/sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58381,observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-2,https://biolit.fr/observations/observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-2/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/PH0076656-scaled.jpg,,TRUE, +N1,61571,sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e,https://biolit.fr/sorties/sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58383,observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-3,https://biolit.fr/observations/observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/PH0076667.jpg,,FALSE, +N1,61571,sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e,https://biolit.fr/sorties/sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58385,observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-4,https://biolit.fr/observations/observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/PH0076670.jpg,,FALSE, +N1,61571,sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e,https://biolit.fr/sorties/sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58387,observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-5,https://biolit.fr/observations/observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-5/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/PH0076702-scaled.jpg,,TRUE, +N1,61571,sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e,https://biolit.fr/sorties/sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58389,observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-6,https://biolit.fr/observations/observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-6/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/PH0076704-scaled.jpg,,TRUE, +N1,61571,sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e,https://biolit.fr/sorties/sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58391,observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-7,https://biolit.fr/observations/observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/PH0076663.jpg,,FALSE, +N1,61571,sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e,https://biolit.fr/sorties/sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58393,observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-8,https://biolit.fr/observations/observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/PH0076583.jpg,,FALSE, +N1,61571,sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e,https://biolit.fr/sorties/sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58395,observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-9,https://biolit.fr/observations/observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-9/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2448-scaled.jpg,,TRUE, +N1,61571,sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e,https://biolit.fr/sorties/sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58397,observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-10,https://biolit.fr/observations/observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-10/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2446-scaled.jpg,,TRUE, +N1,61571,sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e,https://biolit.fr/sorties/sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58399,observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-11,https://biolit.fr/observations/observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/PH0076699-scaled.jpg,,FALSE, +N1,61572,sortie-71289d6a-cd9d-40d1-ab33-ec03d8297578,https://biolit.fr/sorties/sortie-71289d6a-cd9d-40d1-ab33-ec03d8297578/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58401,observation-71289d6a-cd9d-40d1-ab33-ec03d8297578,https://biolit.fr/observations/observation-71289d6a-cd9d-40d1-ab33-ec03d8297578/,Stramonita haemastoma,Bouche de sang,,https://biolit.fr/wp-content/uploads/2023/07/PH0076678.jpg,,TRUE, +N1,61572,sortie-71289d6a-cd9d-40d1-ab33-ec03d8297578,https://biolit.fr/sorties/sortie-71289d6a-cd9d-40d1-ab33-ec03d8297578/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58403,observation-71289d6a-cd9d-40d1-ab33-ec03d8297578-2,https://biolit.fr/observations/observation-71289d6a-cd9d-40d1-ab33-ec03d8297578-2/,Stramonita haemastoma,Bouche de sang,,https://biolit.fr/wp-content/uploads/2023/07/PH0076680.jpg,,TRUE, +N1,61572,sortie-71289d6a-cd9d-40d1-ab33-ec03d8297578,https://biolit.fr/sorties/sortie-71289d6a-cd9d-40d1-ab33-ec03d8297578/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58405,observation-71289d6a-cd9d-40d1-ab33-ec03d8297578-3,https://biolit.fr/observations/observation-71289d6a-cd9d-40d1-ab33-ec03d8297578-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2445-scaled.jpg,,FALSE, +N1,61572,sortie-71289d6a-cd9d-40d1-ab33-ec03d8297578,https://biolit.fr/sorties/sortie-71289d6a-cd9d-40d1-ab33-ec03d8297578/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58407,observation-71289d6a-cd9d-40d1-ab33-ec03d8297578-4,https://biolit.fr/observations/observation-71289d6a-cd9d-40d1-ab33-ec03d8297578-4/,Bolinus brandaris,Ponte de murex épineux,,https://biolit.fr/wp-content/uploads/2023/07/PH0076638.jpg,,TRUE, +N1,61572,sortie-71289d6a-cd9d-40d1-ab33-ec03d8297578,https://biolit.fr/sorties/sortie-71289d6a-cd9d-40d1-ab33-ec03d8297578/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58409,observation-71289d6a-cd9d-40d1-ab33-ec03d8297578-5,https://biolit.fr/observations/observation-71289d6a-cd9d-40d1-ab33-ec03d8297578-5/,Bolinus brandaris,Ponte de murex épineux,,https://biolit.fr/wp-content/uploads/2023/07/PH0076634.jpg,,TRUE, +N1,61572,sortie-71289d6a-cd9d-40d1-ab33-ec03d8297578,https://biolit.fr/sorties/sortie-71289d6a-cd9d-40d1-ab33-ec03d8297578/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58411,observation-71289d6a-cd9d-40d1-ab33-ec03d8297578-6,https://biolit.fr/observations/observation-71289d6a-cd9d-40d1-ab33-ec03d8297578-6/,Bolinus brandaris,Ponte de murex épineux,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2431-scaled.jpg,,TRUE, +N1,61573,sortie-ac56b815-9164-4223-8bb7-91e3d693306b,https://biolit.fr/sorties/sortie-ac56b815-9164-4223-8bb7-91e3d693306b/,Céline,,07/02/2014,9.0000000,11.0000000,43.210648000000,5.420663000000,,Calanque de sormiou,58413,observation-ac56b815-9164-4223-8bb7-91e3d693306b,https://biolit.fr/observations/observation-ac56b815-9164-4223-8bb7-91e3d693306b/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0293-scaled.jpg,,TRUE,Identifiable +N1,61573,sortie-ac56b815-9164-4223-8bb7-91e3d693306b,https://biolit.fr/sorties/sortie-ac56b815-9164-4223-8bb7-91e3d693306b/,Céline,,07/02/2014,9.0000000,11.0000000,43.210648000000,5.420663000000,,Calanque de sormiou,58415,observation-ac56b815-9164-4223-8bb7-91e3d693306b-2,https://biolit.fr/observations/observation-ac56b815-9164-4223-8bb7-91e3d693306b-2/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0296-scaled.jpg,,TRUE, +N1,61573,sortie-ac56b815-9164-4223-8bb7-91e3d693306b,https://biolit.fr/sorties/sortie-ac56b815-9164-4223-8bb7-91e3d693306b/,Céline,,07/02/2014,9.0000000,11.0000000,43.210648000000,5.420663000000,,Calanque de sormiou,58417,observation-ac56b815-9164-4223-8bb7-91e3d693306b-3,https://biolit.fr/observations/observation-ac56b815-9164-4223-8bb7-91e3d693306b-3/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/DSCN8138-scaled.jpg,,TRUE, +N1,61573,sortie-ac56b815-9164-4223-8bb7-91e3d693306b,https://biolit.fr/sorties/sortie-ac56b815-9164-4223-8bb7-91e3d693306b/,Céline,,07/02/2014,9.0000000,11.0000000,43.210648000000,5.420663000000,,Calanque de sormiou,58419,observation-ac56b815-9164-4223-8bb7-91e3d693306b-4,https://biolit.fr/observations/observation-ac56b815-9164-4223-8bb7-91e3d693306b-4/,Stramonita haemastoma,Bouche de sang,,https://biolit.fr/wp-content/uploads/2023/07/DSCN8164-scaled.jpg,,TRUE,Identifiable +N1,61573,sortie-ac56b815-9164-4223-8bb7-91e3d693306b,https://biolit.fr/sorties/sortie-ac56b815-9164-4223-8bb7-91e3d693306b/,Céline,,07/02/2014,9.0000000,11.0000000,43.210648000000,5.420663000000,,Calanque de sormiou,58421,observation-ac56b815-9164-4223-8bb7-91e3d693306b-5,https://biolit.fr/observations/observation-ac56b815-9164-4223-8bb7-91e3d693306b-5/,Carpobrotus edulis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/DSCN8170-scaled.jpg,,TRUE, +N1,61573,sortie-ac56b815-9164-4223-8bb7-91e3d693306b,https://biolit.fr/sorties/sortie-ac56b815-9164-4223-8bb7-91e3d693306b/,Céline,,07/02/2014,9.0000000,11.0000000,43.210648000000,5.420663000000,,Calanque de sormiou,58423,observation-ac56b815-9164-4223-8bb7-91e3d693306b-6,https://biolit.fr/observations/observation-ac56b815-9164-4223-8bb7-91e3d693306b-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN8171-scaled.jpg,,TRUE,non-identifiable +N1,61573,sortie-ac56b815-9164-4223-8bb7-91e3d693306b,https://biolit.fr/sorties/sortie-ac56b815-9164-4223-8bb7-91e3d693306b/,Céline,,07/02/2014,9.0000000,11.0000000,43.210648000000,5.420663000000,,Calanque de sormiou,58425,observation-ac56b815-9164-4223-8bb7-91e3d693306b-7,https://biolit.fr/observations/observation-ac56b815-9164-4223-8bb7-91e3d693306b-7/,Atriplex halimus,Arroche marine,,https://biolit.fr/wp-content/uploads/2023/07/DSCN8195-scaled.jpg,,TRUE,Identifiable +N1,61573,sortie-ac56b815-9164-4223-8bb7-91e3d693306b,https://biolit.fr/sorties/sortie-ac56b815-9164-4223-8bb7-91e3d693306b/,Céline,,07/02/2014,9.0000000,11.0000000,43.210648000000,5.420663000000,,Calanque de sormiou,58427,observation-ac56b815-9164-4223-8bb7-91e3d693306b-8,https://biolit.fr/observations/observation-ac56b815-9164-4223-8bb7-91e3d693306b-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0293_0-scaled.jpg,,FALSE, +N1,61574,sortie-a78a25a0-e0ef-48e8-897f-17e8466f758b,https://biolit.fr/sorties/sortie-a78a25a0-e0ef-48e8-897f-17e8466f758b/,Marine,,06/10/2014,13.0:15,15.0:15,43.331038000000,5.20410400000,,Calanque des Anthénors,58429,observation-a78a25a0-e0ef-48e8-897f-17e8466f758b,https://biolit.fr/observations/observation-a78a25a0-e0ef-48e8-897f-17e8466f758b/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20140610_140701.jpg,,FALSE, +N1,61574,sortie-a78a25a0-e0ef-48e8-897f-17e8466f758b,https://biolit.fr/sorties/sortie-a78a25a0-e0ef-48e8-897f-17e8466f758b/,Marine,,06/10/2014,13.0:15,15.0:15,43.331038000000,5.20410400000,,Calanque des Anthénors,58431,observation-a78a25a0-e0ef-48e8-897f-17e8466f758b-2,https://biolit.fr/observations/observation-a78a25a0-e0ef-48e8-897f-17e8466f758b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20140610_132352.jpg,,FALSE, +N1,61575,sortie-55b85dc2-80f4-413d-b20f-6c26cdaa5e28,https://biolit.fr/sorties/sortie-55b85dc2-80f4-413d-b20f-6c26cdaa5e28/,Observe la nature,,06/10/2014,15.0000000,17.0000000,48.599294000000,-2.555599000000,,Plage de piegu pleneuf val andre,58433,observation-55b85dc2-80f4-413d-b20f-6c26cdaa5e28,https://biolit.fr/observations/observation-55b85dc2-80f4-413d-b20f-6c26cdaa5e28/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04067-scaled.jpg,,FALSE, +N1,61575,sortie-55b85dc2-80f4-413d-b20f-6c26cdaa5e28,https://biolit.fr/sorties/sortie-55b85dc2-80f4-413d-b20f-6c26cdaa5e28/,Observe la nature,,06/10/2014,15.0000000,17.0000000,48.599294000000,-2.555599000000,,Plage de piegu pleneuf val andre,58435,observation-55b85dc2-80f4-413d-b20f-6c26cdaa5e28-2,https://biolit.fr/observations/observation-55b85dc2-80f4-413d-b20f-6c26cdaa5e28-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/DSC04051-scaled.jpg,,TRUE, +N1,61576,sortie-c3cf04b2-c4a4-4a54-b85d-9d0627de9dbd,https://biolit.fr/sorties/sortie-c3cf04b2-c4a4-4a54-b85d-9d0627de9dbd/,Observe la nature,,06/03/2014,16.0000000,16.0:35,48.599181000000,-2.555620000000,,Plage de piegu,58437,observation-c3cf04b2-c4a4-4a54-b85d-9d0627de9dbd,https://biolit.fr/observations/observation-c3cf04b2-c4a4-4a54-b85d-9d0627de9dbd/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04060_0-scaled.jpg,,TRUE, +N1,61577,sortie-78198da7-6699-4d7e-98a5-ff4ca8adbc52,https://biolit.fr/sorties/sortie-78198da7-6699-4d7e-98a5-ff4ca8adbc52/,Observe la nature,,06/03/2014,16.0000000,16.0:35,48.599181000000,-2.555620000000,,Plage de piegu,58439,observation-78198da7-6699-4d7e-98a5-ff4ca8adbc52,https://biolit.fr/observations/observation-78198da7-6699-4d7e-98a5-ff4ca8adbc52/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04060-scaled.jpg,,TRUE, +N1,61577,sortie-78198da7-6699-4d7e-98a5-ff4ca8adbc52,https://biolit.fr/sorties/sortie-78198da7-6699-4d7e-98a5-ff4ca8adbc52/,Observe la nature,,06/03/2014,16.0000000,16.0:35,48.599181000000,-2.555620000000,,Plage de piegu,58441,observation-78198da7-6699-4d7e-98a5-ff4ca8adbc52-2,https://biolit.fr/observations/observation-78198da7-6699-4d7e-98a5-ff4ca8adbc52-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04063-scaled.jpg,,TRUE, +N1,61577,sortie-78198da7-6699-4d7e-98a5-ff4ca8adbc52,https://biolit.fr/sorties/sortie-78198da7-6699-4d7e-98a5-ff4ca8adbc52/,Observe la nature,,06/03/2014,16.0000000,16.0:35,48.599181000000,-2.555620000000,,Plage de piegu,58443,observation-78198da7-6699-4d7e-98a5-ff4ca8adbc52-3,https://biolit.fr/observations/observation-78198da7-6699-4d7e-98a5-ff4ca8adbc52-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04058-scaled.jpg,,TRUE, +N1,61577,sortie-78198da7-6699-4d7e-98a5-ff4ca8adbc52,https://biolit.fr/sorties/sortie-78198da7-6699-4d7e-98a5-ff4ca8adbc52/,Observe la nature,,06/03/2014,16.0000000,16.0:35,48.599181000000,-2.555620000000,,Plage de piegu,58445,observation-78198da7-6699-4d7e-98a5-ff4ca8adbc52-4,https://biolit.fr/observations/observation-78198da7-6699-4d7e-98a5-ff4ca8adbc52-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/pourpre.jpg,,TRUE, +N1,61578,sortie-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed,https://biolit.fr/sorties/sortie-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed/,Ville de Marseille,,06/10/2014,11.0000000,11.0000000,43.16,5.22,,"Bassin du Roucas Blanc, 13008 Marseille",58446,observation-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed,https://biolit.fr/observations/observation-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2279-scaled.jpg,,FALSE, +N1,61578,sortie-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed,https://biolit.fr/sorties/sortie-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed/,Ville de Marseille,,06/10/2014,11.0000000,11.0000000,43.16,5.22,,"Bassin du Roucas Blanc, 13008 Marseille",58448,observation-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed-2,https://biolit.fr/observations/observation-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2280-scaled.jpg,,FALSE, +N1,61578,sortie-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed,https://biolit.fr/sorties/sortie-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed/,Ville de Marseille,,06/10/2014,11.0000000,11.0000000,43.16,5.22,,"Bassin du Roucas Blanc, 13008 Marseille",58450,observation-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed-3,https://biolit.fr/observations/observation-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2281-scaled.jpg,,FALSE, +N1,61578,sortie-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed,https://biolit.fr/sorties/sortie-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed/,Ville de Marseille,,06/10/2014,11.0000000,11.0000000,43.16,5.22,,"Bassin du Roucas Blanc, 13008 Marseille",58452,observation-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed-4,https://biolit.fr/observations/observation-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2283-scaled.jpg,,FALSE, +N1,61578,sortie-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed,https://biolit.fr/sorties/sortie-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed/,Ville de Marseille,,06/10/2014,11.0000000,11.0000000,43.16,5.22,,"Bassin du Roucas Blanc, 13008 Marseille",58454,observation-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed-5,https://biolit.fr/observations/observation-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed-5/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2291-scaled.jpg,,TRUE, +N1,61578,sortie-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed,https://biolit.fr/sorties/sortie-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed/,Ville de Marseille,,06/10/2014,11.0000000,11.0000000,43.16,5.22,,"Bassin du Roucas Blanc, 13008 Marseille",58456,observation-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed-6,https://biolit.fr/observations/observation-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed-6/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSCN2293-scaled.jpg,,TRUE, +N1,61578,sortie-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed,https://biolit.fr/sorties/sortie-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed/,Ville de Marseille,,06/10/2014,11.0000000,11.0000000,43.16,5.22,,"Bassin du Roucas Blanc, 13008 Marseille",58458,observation-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed-7,https://biolit.fr/observations/observation-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2299-scaled.jpg,,FALSE, +N1,61579,sortie-5d1122c7-7fd6-4805-9a30-3a65d44c5107,https://biolit.fr/sorties/sortie-5d1122c7-7fd6-4805-9a30-3a65d44c5107/,Cathy,,5/24/2014 0:00,11.0000000,11.0000000,43.002253000000,6.373205000000,,Port-Cros Plage du Sud,58460,observation-5d1122c7-7fd6-4805-9a30-3a65d44c5107,https://biolit.fr/observations/observation-5d1122c7-7fd6-4805-9a30-3a65d44c5107/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_7670'.jpg,,TRUE, +N1,61579,sortie-5d1122c7-7fd6-4805-9a30-3a65d44c5107,https://biolit.fr/sorties/sortie-5d1122c7-7fd6-4805-9a30-3a65d44c5107/,Cathy,,5/24/2014 0:00,11.0000000,11.0000000,43.002253000000,6.373205000000,,Port-Cros Plage du Sud,58462,observation-5d1122c7-7fd6-4805-9a30-3a65d44c5107-2,https://biolit.fr/observations/observation-5d1122c7-7fd6-4805-9a30-3a65d44c5107-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_7669'.jpg,,TRUE, +N1,61579,sortie-5d1122c7-7fd6-4805-9a30-3a65d44c5107,https://biolit.fr/sorties/sortie-5d1122c7-7fd6-4805-9a30-3a65d44c5107/,Cathy,,5/24/2014 0:00,11.0000000,11.0000000,43.002253000000,6.373205000000,,Port-Cros Plage du Sud,58464,observation-5d1122c7-7fd6-4805-9a30-3a65d44c5107-3,https://biolit.fr/observations/observation-5d1122c7-7fd6-4805-9a30-3a65d44c5107-3/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7645-scaled.jpg,,TRUE, +N1,61579,sortie-5d1122c7-7fd6-4805-9a30-3a65d44c5107,https://biolit.fr/sorties/sortie-5d1122c7-7fd6-4805-9a30-3a65d44c5107/,Cathy,,5/24/2014 0:00,11.0000000,11.0000000,43.002253000000,6.373205000000,,Port-Cros Plage du Sud,58466,observation-5d1122c7-7fd6-4805-9a30-3a65d44c5107-4,https://biolit.fr/observations/observation-5d1122c7-7fd6-4805-9a30-3a65d44c5107-4/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7653-scaled.jpg,,TRUE, +N1,61580,sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a,https://biolit.fr/sorties/sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a/,Ville de Marseille,,5/20/2014 0:00,15.0000000,15.0:35,43.267218000000,5.370635000000,,bassin du Roucas Blanc,58468,observation-7ac82302-62ba-465c-9afa-f7537b5ac61a,https://biolit.fr/observations/observation-7ac82302-62ba-465c-9afa-f7537b5ac61a/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Cormaillot perceur Ocenebra erinacea-scaled.jpg,,TRUE, +N1,61580,sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a,https://biolit.fr/sorties/sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a/,Ville de Marseille,,5/20/2014 0:00,15.0000000,15.0:35,43.267218000000,5.370635000000,,bassin du Roucas Blanc,58470,observation-7ac82302-62ba-465c-9afa-f7537b5ac61a-2,https://biolit.fr/observations/observation-7ac82302-62ba-465c-9afa-f7537b5ac61a-2/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Aegagropiles-scaled.jpg,,TRUE, +N1,61580,sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a,https://biolit.fr/sorties/sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a/,Ville de Marseille,,5/20/2014 0:00,15.0000000,15.0:35,43.267218000000,5.370635000000,,bassin du Roucas Blanc,58472,observation-7ac82302-62ba-465c-9afa-f7537b5ac61a-3,https://biolit.fr/observations/observation-7ac82302-62ba-465c-9afa-f7537b5ac61a-3/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/Arapede Patella caerulea-scaled.jpg,,TRUE, +N1,61580,sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a,https://biolit.fr/sorties/sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a/,Ville de Marseille,,5/20/2014 0:00,15.0000000,15.0:35,43.267218000000,5.370635000000,,bassin du Roucas Blanc,58474,observation-7ac82302-62ba-465c-9afa-f7537b5ac61a-4,https://biolit.fr/observations/observation-7ac82302-62ba-465c-9afa-f7537b5ac61a-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemone verte Anemona viridis-scaled.jpg,,TRUE, +N1,61580,sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a,https://biolit.fr/sorties/sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a/,Ville de Marseille,,5/20/2014 0:00,15.0000000,15.0:35,43.267218000000,5.370635000000,,bassin du Roucas Blanc,58476,observation-7ac82302-62ba-465c-9afa-f7537b5ac61a-5,https://biolit.fr/observations/observation-7ac82302-62ba-465c-9afa-f7537b5ac61a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidies blanches Phallusia mammillata-scaled.jpg,,FALSE, +N1,61580,sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a,https://biolit.fr/sorties/sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a/,Ville de Marseille,,5/20/2014 0:00,15.0000000,15.0:35,43.267218000000,5.370635000000,,bassin du Roucas Blanc,58478,observation-7ac82302-62ba-465c-9afa-f7537b5ac61a-6,https://biolit.fr/observations/observation-7ac82302-62ba-465c-9afa-f7537b5ac61a-6/,Leptomysis sp.,Leptomysis de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/Crevettes juveniles-scaled.jpg,,TRUE, +N1,61580,sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a,https://biolit.fr/sorties/sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a/,Ville de Marseille,,5/20/2014 0:00,15.0000000,15.0:35,43.267218000000,5.370635000000,,bassin du Roucas Blanc,58480,observation-7ac82302-62ba-465c-9afa-f7537b5ac61a-7,https://biolit.fr/observations/observation-7ac82302-62ba-465c-9afa-f7537b5ac61a-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule Gibbula divaricata-scaled.jpg,,FALSE, +N1,61580,sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a,https://biolit.fr/sorties/sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a/,Ville de Marseille,,5/20/2014 0:00,15.0000000,15.0:35,43.267218000000,5.370635000000,,bassin du Roucas Blanc,58482,observation-7ac82302-62ba-465c-9afa-f7537b5ac61a-8,https://biolit.fr/observations/observation-7ac82302-62ba-465c-9afa-f7537b5ac61a-8/,Sabella spallanzanii,Spirographe,,https://biolit.fr/wp-content/uploads/2023/07/Spirographe Sabella Spallanzanii-scaled.jpg,,TRUE, +N1,61580,sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a,https://biolit.fr/sorties/sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a/,Ville de Marseille,,5/20/2014 0:00,15.0000000,15.0:35,43.267218000000,5.370635000000,,bassin du Roucas Blanc,58484,observation-7ac82302-62ba-465c-9afa-f7537b5ac61a-9,https://biolit.fr/observations/observation-7ac82302-62ba-465c-9afa-f7537b5ac61a-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ponte non identifiee-scaled.jpg,,FALSE, +N1,61581,sortie-f55a0a0f-2dc0-45b2-a25c-7a06c7a468c0,https://biolit.fr/sorties/sortie-f55a0a0f-2dc0-45b2-a25c-7a06c7a468c0/,Audrey,,5/18/2014 0:00,10.0000000,11.0000000,43.14355200000,6.383708000000,,"Le Lavandou, plage Saint Claire",58486,observation-f55a0a0f-2dc0-45b2-a25c-7a06c7a468c0,https://biolit.fr/observations/observation-f55a0a0f-2dc0-45b2-a25c-7a06c7a468c0/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/P1040558-scaled.jpg,,TRUE, +N1,61581,sortie-f55a0a0f-2dc0-45b2-a25c-7a06c7a468c0,https://biolit.fr/sorties/sortie-f55a0a0f-2dc0-45b2-a25c-7a06c7a468c0/,Audrey,,5/18/2014 0:00,10.0000000,11.0000000,43.14355200000,6.383708000000,,"Le Lavandou, plage Saint Claire",58488,observation-f55a0a0f-2dc0-45b2-a25c-7a06c7a468c0-2,https://biolit.fr/observations/observation-f55a0a0f-2dc0-45b2-a25c-7a06c7a468c0-2/,Acetabularia acetabulum,Acétabulaire,,https://biolit.fr/wp-content/uploads/2023/07/P1040550-scaled.jpg,,TRUE, +N1,61581,sortie-f55a0a0f-2dc0-45b2-a25c-7a06c7a468c0,https://biolit.fr/sorties/sortie-f55a0a0f-2dc0-45b2-a25c-7a06c7a468c0/,Audrey,,5/18/2014 0:00,10.0000000,11.0000000,43.14355200000,6.383708000000,,"Le Lavandou, plage Saint Claire",58490,observation-f55a0a0f-2dc0-45b2-a25c-7a06c7a468c0-3,https://biolit.fr/observations/observation-f55a0a0f-2dc0-45b2-a25c-7a06c7a468c0-3/,Acetabularia acetabulum,Acétabulaire,,https://biolit.fr/wp-content/uploads/2023/07/P1040555-scaled.jpg,,TRUE, +N1,61582,sortie-23463f86-62d2-4e15-a692-6b75553755b2,https://biolit.fr/sorties/sortie-23463f86-62d2-4e15-a692-6b75553755b2/,Morice,,5/15/2014 0:00,13.0000000,15.0000000,43.163290000000,5.608750000000,,Negue Foume,58492,observation-23463f86-62d2-4e15-a692-6b75553755b2,https://biolit.fr/observations/observation-23463f86-62d2-4e15-a692-6b75553755b2/,Simnia spelta,Simnie blanche,,https://biolit.fr/wp-content/uploads/2023/07/simnie1-scaled.jpg,,TRUE, +N1,61583,sortie-e810f1b2-28c9-4f57-a20b-29156e2b5b41,https://biolit.fr/sorties/sortie-e810f1b2-28c9-4f57-a20b-29156e2b5b41/,pascal bazile,,4/24/2014 0:00,14.0000000,15.0000000,43.40809000000,5.057792000000,,Martigues,58494,observation-e810f1b2-28c9-4f57-a20b-29156e2b5b41,https://biolit.fr/observations/observation-e810f1b2-28c9-4f57-a20b-29156e2b5b41/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/004-scaled.jpg,,TRUE, +N1,61584,sortie-254fdb4e-059d-47b3-bde6-481dae5498db,https://biolit.fr/sorties/sortie-254fdb4e-059d-47b3-bde6-481dae5498db/,big'orneau,,04/11/2014,10.0000000,12.0000000,47.249036000000,-2.49974100000,,Batz-sur-Mer,58495,observation-254fdb4e-059d-47b3-bde6-481dae5498db,https://biolit.fr/observations/observation-254fdb4e-059d-47b3-bde6-481dae5498db/,Dermochelys coriacea,Tortue luth,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1489.JPG,,TRUE, +N1,61585,sortie-5478091d-87ad-41c6-b29a-4e21e2c52e5c,https://biolit.fr/sorties/sortie-5478091d-87ad-41c6-b29a-4e21e2c52e5c/,Lilita,,2/27/2014 0:00,16.0000000,18.0000000,43.391720000000,3.660147000000,,Balaruc Les Bains,58497,observation-5478091d-87ad-41c6-b29a-4e21e2c52e5c,https://biolit.fr/observations/observation-5478091d-87ad-41c6-b29a-4e21e2c52e5c/,Sipunculus (Sipunculus) nudus,Ver cacahuète,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0014-scaled.jpg,,TRUE, +N1,61586,sortie-7d142537-0515-4107-ae69-08d057390ce6,https://biolit.fr/sorties/sortie-7d142537-0515-4107-ae69-08d057390ce6/,orovellotti,,3/31/2014 0:00,16.0000000,18.0000000,43.271048000000,5.305221000000,,Frioul,58499,observation-7d142537-0515-4107-ae69-08d057390ce6,https://biolit.fr/observations/observation-7d142537-0515-4107-ae69-08d057390ce6/,",",,https://biolit.fr/wp-content/uploads/2023/07/DSCF3972_1-scaled.jpg,,TRUE,non-identifiable, +N1,61586,sortie-7d142537-0515-4107-ae69-08d057390ce6,https://biolit.fr/sorties/sortie-7d142537-0515-4107-ae69-08d057390ce6/,orovellotti,,3/31/2014 0:00,16.0000000,18.0000000,43.271048000000,5.305221000000,,Frioul,58501,observation-7d142537-0515-4107-ae69-08d057390ce6-2,https://biolit.fr/observations/observation-7d142537-0515-4107-ae69-08d057390ce6-2/,Astragalus tragacantha,Astragale de Marseille,,https://biolit.fr/wp-content/uploads/2023/07/DSCF3990-scaled.jpg,,TRUE, +N1,61587,sortie-78424176-6cf5-461d-93e1-96448bb37be8,https://biolit.fr/sorties/sortie-78424176-6cf5-461d-93e1-96448bb37be8/,Robert,,3/19/2014 0:00,13.0000000,15.0000000,43.28504200000,5.317685000000,,Marseille - Îles du frioul,58503,observation-78424176-6cf5-461d-93e1-96448bb37be8,https://biolit.fr/observations/observation-78424176-6cf5-461d-93e1-96448bb37be8/,Lithophyllum byssoides,Algue calcaire des trottoirs,,https://biolit.fr/wp-content/uploads/2023/07/P3193994-scaled.jpg,,TRUE, +N1,61588,sortie-e0e46865-6a5d-4129-b6a6-cb44618447fd,https://biolit.fr/sorties/sortie-e0e46865-6a5d-4129-b6a6-cb44618447fd/,Lisa Kundasamy,,3/21/2014 0:00,10.0000000,12.0000000,43.519877000000,7.033862000000,,Îles de Lérins - Sainte-Marguerite,58505,observation-e0e46865-6a5d-4129-b6a6-cb44618447fd,https://biolit.fr/observations/observation-e0e46865-6a5d-4129-b6a6-cb44618447fd/,Lithophaga lithophaga,Datte de mer,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0177-scaled.jpg,,TRUE, +N1,61589,sortie-29791f04-9832-4239-8a2d-da8e1973a4a5,https://biolit.fr/sorties/sortie-29791f04-9832-4239-8a2d-da8e1973a4a5/,Lisa Kundasamy,,3/21/2014 0:00,10.0000000,12.0000000,43.520747000000,7.032602000000,,Îles de Lérins - Sainte-Marguerite,58507,observation-29791f04-9832-4239-8a2d-da8e1973a4a5,https://biolit.fr/observations/observation-29791f04-9832-4239-8a2d-da8e1973a4a5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0142-scaled.jpg,,FALSE, +N1,61589,sortie-29791f04-9832-4239-8a2d-da8e1973a4a5,https://biolit.fr/sorties/sortie-29791f04-9832-4239-8a2d-da8e1973a4a5/,Lisa Kundasamy,,3/21/2014 0:00,10.0000000,12.0000000,43.520747000000,7.032602000000,,Îles de Lérins - Sainte-Marguerite,58508,observation-29791f04-9832-4239-8a2d-da8e1973a4a5-2,https://biolit.fr/observations/observation-29791f04-9832-4239-8a2d-da8e1973a4a5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0140-scaled.jpg,,TRUE,non-identifiable +N1,61589,sortie-29791f04-9832-4239-8a2d-da8e1973a4a5,https://biolit.fr/sorties/sortie-29791f04-9832-4239-8a2d-da8e1973a4a5/,Lisa Kundasamy,,3/21/2014 0:00,10.0000000,12.0000000,43.520747000000,7.032602000000,,Îles de Lérins - Sainte-Marguerite,58509,observation-29791f04-9832-4239-8a2d-da8e1973a4a5-3,https://biolit.fr/observations/observation-29791f04-9832-4239-8a2d-da8e1973a4a5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0163-scaled.jpg,,TRUE,non-identifiable +N1,61590,sortie-06414766-a8d0-4c20-9c7a-d41d6ccd29a7,https://biolit.fr/sorties/sortie-06414766-a8d0-4c20-9c7a-d41d6ccd29a7/,Laurent Debas,,3/31/2014 0:00,11.0000000,13.0000000,43.267425000000,5.292026000000,,ile du frioul - Calanque de la Crine,58511,observation-06414766-a8d0-4c20-9c7a-d41d6ccd29a7,https://biolit.fr/observations/observation-06414766-a8d0-4c20-9c7a-d41d6ccd29a7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0019-scaled.jpg,,TRUE,non-identifiable +N1,61590,sortie-06414766-a8d0-4c20-9c7a-d41d6ccd29a7,https://biolit.fr/sorties/sortie-06414766-a8d0-4c20-9c7a-d41d6ccd29a7/,Laurent Debas,,3/31/2014 0:00,11.0000000,13.0000000,43.267425000000,5.292026000000,,ile du frioul - Calanque de la Crine,58512,observation-06414766-a8d0-4c20-9c7a-d41d6ccd29a7-2,https://biolit.fr/observations/observation-06414766-a8d0-4c20-9c7a-d41d6ccd29a7-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0020-scaled.jpg,,TRUE, +N1,61590,sortie-06414766-a8d0-4c20-9c7a-d41d6ccd29a7,https://biolit.fr/sorties/sortie-06414766-a8d0-4c20-9c7a-d41d6ccd29a7/,Laurent Debas,,3/31/2014 0:00,11.0000000,13.0000000,43.267425000000,5.292026000000,,ile du frioul - Calanque de la Crine,58513,observation-06414766-a8d0-4c20-9c7a-d41d6ccd29a7-3,https://biolit.fr/observations/observation-06414766-a8d0-4c20-9c7a-d41d6ccd29a7-3/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_0023-scaled.jpg,,TRUE, +N1,62209,sortie-90887d58-b6fb-4bb9-8856-bf3fd43bcdff,https://biolit.fr/sorties/sortie-90887d58-b6fb-4bb9-8856-bf3fd43bcdff/,Observe la nature,,07/03/2023,14.0000000,16.0000000,48.693687000000,-1.895574000000,,Plage de du Guesclin saint Coulomb 35350,62207,observation-90887d58-b6fb-4bb9-8856-bf3fd43bcdff,https://biolit.fr/observations/observation-90887d58-b6fb-4bb9-8856-bf3fd43bcdff/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Os seiche st coulomb 3 jullet animation.jpg,,TRUE, +N1,62330,sortie-59a2e7d4-db71-4297-8df7-d256cd02b209,https://biolit.fr/sorties/sortie-59a2e7d4-db71-4297-8df7-d256cd02b209/,laurence_ducourty@yahoo.fr,,06/01/2023,9.0000000,9.0:45,47.479280000000,-3.120649000000,,La Grande Plage de Quiberon,62210,observation-59a2e7d4-db71-4297-8df7-d256cd02b209,https://biolit.fr/observations/observation-59a2e7d4-db71-4297-8df7-d256cd02b209/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/20230601_092738-scaled.jpg,,TRUE, +N1,62330,sortie-59a2e7d4-db71-4297-8df7-d256cd02b209,https://biolit.fr/sorties/sortie-59a2e7d4-db71-4297-8df7-d256cd02b209/,laurence_ducourty@yahoo.fr,,06/01/2023,9.0000000,9.0:45,47.479280000000,-3.120649000000,,La Grande Plage de Quiberon,62212,observation-59a2e7d4-db71-4297-8df7-d256cd02b209-2,https://biolit.fr/observations/observation-59a2e7d4-db71-4297-8df7-d256cd02b209-2/,Chrysaora hysoscella,Méduse rayonnée,,https://biolit.fr/wp-content/uploads/2023/07/20230601_092601-scaled.jpg,,TRUE, +N1,62330,sortie-59a2e7d4-db71-4297-8df7-d256cd02b209,https://biolit.fr/sorties/sortie-59a2e7d4-db71-4297-8df7-d256cd02b209/,laurence_ducourty@yahoo.fr,,06/01/2023,9.0000000,9.0:45,47.479280000000,-3.120649000000,,La Grande Plage de Quiberon,62214,observation-59a2e7d4-db71-4297-8df7-d256cd02b209-3,https://biolit.fr/observations/observation-59a2e7d4-db71-4297-8df7-d256cd02b209-3/,Chrysaora hysoscella,Méduse rayonnée,,https://biolit.fr/wp-content/uploads/2023/07/20230601_092617-scaled.jpg,,TRUE, +N1,62330,sortie-59a2e7d4-db71-4297-8df7-d256cd02b209,https://biolit.fr/sorties/sortie-59a2e7d4-db71-4297-8df7-d256cd02b209/,laurence_ducourty@yahoo.fr,,06/01/2023,9.0000000,9.0:45,47.479280000000,-3.120649000000,,La Grande Plage de Quiberon,62216,observation-59a2e7d4-db71-4297-8df7-d256cd02b209-4,https://biolit.fr/observations/observation-59a2e7d4-db71-4297-8df7-d256cd02b209-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230601_092550-scaled.jpg,,FALSE, +N1,62330,sortie-59a2e7d4-db71-4297-8df7-d256cd02b209,https://biolit.fr/sorties/sortie-59a2e7d4-db71-4297-8df7-d256cd02b209/,laurence_ducourty@yahoo.fr,,06/01/2023,9.0000000,9.0:45,47.479280000000,-3.120649000000,,La Grande Plage de Quiberon,62218,observation-59a2e7d4-db71-4297-8df7-d256cd02b209-5,https://biolit.fr/observations/observation-59a2e7d4-db71-4297-8df7-d256cd02b209-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230601_092457-scaled.jpg,,FALSE, +N1,62330,sortie-59a2e7d4-db71-4297-8df7-d256cd02b209,https://biolit.fr/sorties/sortie-59a2e7d4-db71-4297-8df7-d256cd02b209/,laurence_ducourty@yahoo.fr,,06/01/2023,9.0000000,9.0:45,47.479280000000,-3.120649000000,,La Grande Plage de Quiberon,62220,observation-59a2e7d4-db71-4297-8df7-d256cd02b209-6,https://biolit.fr/observations/observation-59a2e7d4-db71-4297-8df7-d256cd02b209-6/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20230601_092649-scaled.jpg,,TRUE, +N1,62330,sortie-59a2e7d4-db71-4297-8df7-d256cd02b209,https://biolit.fr/sorties/sortie-59a2e7d4-db71-4297-8df7-d256cd02b209/,laurence_ducourty@yahoo.fr,,06/01/2023,9.0000000,9.0:45,47.479280000000,-3.120649000000,,La Grande Plage de Quiberon,62222,observation-59a2e7d4-db71-4297-8df7-d256cd02b209-7,https://biolit.fr/observations/observation-59a2e7d4-db71-4297-8df7-d256cd02b209-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230601_093046-scaled.jpg,,FALSE, +N1,62330,sortie-59a2e7d4-db71-4297-8df7-d256cd02b209,https://biolit.fr/sorties/sortie-59a2e7d4-db71-4297-8df7-d256cd02b209/,laurence_ducourty@yahoo.fr,,06/01/2023,9.0000000,9.0:45,47.479280000000,-3.120649000000,,La Grande Plage de Quiberon,62224,observation-59a2e7d4-db71-4297-8df7-d256cd02b209-8,https://biolit.fr/observations/observation-59a2e7d4-db71-4297-8df7-d256cd02b209-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230601_092811-scaled.jpg,,FALSE, +N1,62330,sortie-59a2e7d4-db71-4297-8df7-d256cd02b209,https://biolit.fr/sorties/sortie-59a2e7d4-db71-4297-8df7-d256cd02b209/,laurence_ducourty@yahoo.fr,,06/01/2023,9.0000000,9.0:45,47.479280000000,-3.120649000000,,La Grande Plage de Quiberon,62226,observation-59a2e7d4-db71-4297-8df7-d256cd02b209-9,https://biolit.fr/observations/observation-59a2e7d4-db71-4297-8df7-d256cd02b209-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230601_092437-scaled.jpg,,FALSE, +N1,62331,sortie-bf71a27b-758f-4a74-9f34-6947fbfd53d3,https://biolit.fr/sorties/sortie-bf71a27b-758f-4a74-9f34-6947fbfd53d3/,Observe la nature,,07/03/2023,14.0000000,16.0000000,48.696256000000,-1.896073000000,,Plage de du Guesclin SAINT COULOMB,62228,observation-bf71a27b-758f-4a74-9f34-6947fbfd53d3,https://biolit.fr/observations/observation-bf71a27b-758f-4a74-9f34-6947fbfd53d3/,,,,https://biolit.fr/wp-content/uploads/2023/07/3 juillet 2023 St COULOMB.jpg,,FALSE, +N1,62332,sortie-08544f42-4b2f-4cd2-8523-d2874e6ed09c,https://biolit.fr/sorties/sortie-08544f42-4b2f-4cd2-8523-d2874e6ed09c/,Observe la nature,,07/03/2023,14.0000000,16.0000000,48.696341000000,-1.895881000000,,Plage de du Guesclin SAINT COULOMB,62230,observation-08544f42-4b2f-4cd2-8523-d2874e6ed09c,https://biolit.fr/observations/observation-08544f42-4b2f-4cd2-8523-d2874e6ed09c/,,,,https://biolit.fr/wp-content/uploads/2023/07/ST COULOMB 3 JUILLET.jpg,,FALSE, +N1,62332,sortie-08544f42-4b2f-4cd2-8523-d2874e6ed09c,https://biolit.fr/sorties/sortie-08544f42-4b2f-4cd2-8523-d2874e6ed09c/,Observe la nature,,07/03/2023,14.0000000,16.0000000,48.696341000000,-1.895881000000,,Plage de du Guesclin SAINT COULOMB,62232,observation-08544f42-4b2f-4cd2-8523-d2874e6ed09c-2,https://biolit.fr/observations/observation-08544f42-4b2f-4cd2-8523-d2874e6ed09c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/sT COULOMB 3 juillet 2023.jpg,,FALSE, +N1,62332,sortie-08544f42-4b2f-4cd2-8523-d2874e6ed09c,https://biolit.fr/sorties/sortie-08544f42-4b2f-4cd2-8523-d2874e6ed09c/,Observe la nature,,07/03/2023,14.0000000,16.0000000,48.696341000000,-1.895881000000,,Plage de du Guesclin SAINT COULOMB,62234,observation-08544f42-4b2f-4cd2-8523-d2874e6ed09c-3,https://biolit.fr/observations/observation-08544f42-4b2f-4cd2-8523-d2874e6ed09c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/St Coulomb le 3 juil 2023.jpg,,FALSE, +N1,62332,sortie-08544f42-4b2f-4cd2-8523-d2874e6ed09c,https://biolit.fr/sorties/sortie-08544f42-4b2f-4cd2-8523-d2874e6ed09c/,Observe la nature,,07/03/2023,14.0000000,16.0000000,48.696341000000,-1.895881000000,,Plage de du Guesclin SAINT COULOMB,62236,observation-08544f42-4b2f-4cd2-8523-d2874e6ed09c-4,https://biolit.fr/observations/observation-08544f42-4b2f-4cd2-8523-d2874e6ed09c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/357533938_197378876627959_7537528691777130853_n.jpg,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62238,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_27.PNG,,TRUE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62240,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-2,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue épiphyte des moules.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62242,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-3,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue sp_4.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62250,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-7,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/ascidie sp_10.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62252,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-8,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-8/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibboa.PNG,,TRUE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62254,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-9,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-9/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_20.PNG,,TRUE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62256,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-10,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_19.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62260,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-12,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Corallina spp.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62262,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-13,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/doris verrucosa pe_0.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62266,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-15,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Fucus serratus_7.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62268,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-16,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Fucus vesiculosus_1.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62270,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-17,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/gobie sp_4.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62271,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-18,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona sp_3.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62273,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-19,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-19/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina obtusata_5.PNG,,TRUE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62275,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-20,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_35.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62277,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-21,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/Melaraphes neritoides.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62278,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-22,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-22/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_22.PNG,,TRUE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62280,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-23,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ocenebra erinaceus_9.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62282,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-24,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_15.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62284,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-25,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/palaemon elegans_0.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62285,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-26,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus_11.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62287,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-27,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_30.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62289,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-28,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sargassum sp.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62290,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-29,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/Steromphala umbilicalis_7.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62292,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-30,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/Terpios gelatinosus_1.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62294,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-31,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/Venerupis corrugata_2.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62296,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-32,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_25.PNG,,FALSE, +N1,62334,sortie-99d6eb06-16df-4817-bf52-2990d86d563c,https://biolit.fr/sorties/sortie-99d6eb06-16df-4817-bf52-2990d86d563c/,Fanfan,,6/30/2023 0:00,9.0:15,10.0:15,43.462156000000,-1.577735000000,,"Plage La Milady, Biarritz 64200",62298,observation-99d6eb06-16df-4817-bf52-2990d86d563c,https://biolit.fr/observations/observation-99d6eb06-16df-4817-bf52-2990d86d563c/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0873-scaled.jpeg,,TRUE, +N1,62334,sortie-99d6eb06-16df-4817-bf52-2990d86d563c,https://biolit.fr/sorties/sortie-99d6eb06-16df-4817-bf52-2990d86d563c/,Fanfan,,6/30/2023 0:00,9.0:15,10.0:15,43.462156000000,-1.577735000000,,"Plage La Milady, Biarritz 64200",62300,observation-99d6eb06-16df-4817-bf52-2990d86d563c-2,https://biolit.fr/observations/observation-99d6eb06-16df-4817-bf52-2990d86d563c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0875-scaled.jpeg,,FALSE, +N1,62334,sortie-99d6eb06-16df-4817-bf52-2990d86d563c,https://biolit.fr/sorties/sortie-99d6eb06-16df-4817-bf52-2990d86d563c/,Fanfan,,6/30/2023 0:00,9.0:15,10.0:15,43.462156000000,-1.577735000000,,"Plage La Milady, Biarritz 64200",62302,observation-99d6eb06-16df-4817-bf52-2990d86d563c-3,https://biolit.fr/observations/observation-99d6eb06-16df-4817-bf52-2990d86d563c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0876-scaled.jpeg,,FALSE, +N1,62334,sortie-99d6eb06-16df-4817-bf52-2990d86d563c,https://biolit.fr/sorties/sortie-99d6eb06-16df-4817-bf52-2990d86d563c/,Fanfan,,6/30/2023 0:00,9.0:15,10.0:15,43.462156000000,-1.577735000000,,"Plage La Milady, Biarritz 64200",62304,observation-99d6eb06-16df-4817-bf52-2990d86d563c-4,https://biolit.fr/observations/observation-99d6eb06-16df-4817-bf52-2990d86d563c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0877-scaled.jpeg,,FALSE, +N1,62334,sortie-99d6eb06-16df-4817-bf52-2990d86d563c,https://biolit.fr/sorties/sortie-99d6eb06-16df-4817-bf52-2990d86d563c/,Fanfan,,6/30/2023 0:00,9.0:15,10.0:15,43.462156000000,-1.577735000000,,"Plage La Milady, Biarritz 64200",62306,observation-99d6eb06-16df-4817-bf52-2990d86d563c-5,https://biolit.fr/observations/observation-99d6eb06-16df-4817-bf52-2990d86d563c-5/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0884-scaled.jpeg,,TRUE, +N1,62334,sortie-99d6eb06-16df-4817-bf52-2990d86d563c,https://biolit.fr/sorties/sortie-99d6eb06-16df-4817-bf52-2990d86d563c/,Fanfan,,6/30/2023 0:00,9.0:15,10.0:15,43.462156000000,-1.577735000000,,"Plage La Milady, Biarritz 64200",62308,observation-99d6eb06-16df-4817-bf52-2990d86d563c-6,https://biolit.fr/observations/observation-99d6eb06-16df-4817-bf52-2990d86d563c-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0886-scaled.jpeg,,FALSE, +N1,62334,sortie-99d6eb06-16df-4817-bf52-2990d86d563c,https://biolit.fr/sorties/sortie-99d6eb06-16df-4817-bf52-2990d86d563c/,Fanfan,,6/30/2023 0:00,9.0:15,10.0:15,43.462156000000,-1.577735000000,,"Plage La Milady, Biarritz 64200",62310,observation-99d6eb06-16df-4817-bf52-2990d86d563c-7,https://biolit.fr/observations/observation-99d6eb06-16df-4817-bf52-2990d86d563c-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0896-scaled.jpeg,,FALSE, +N1,62334,sortie-99d6eb06-16df-4817-bf52-2990d86d563c,https://biolit.fr/sorties/sortie-99d6eb06-16df-4817-bf52-2990d86d563c/,Fanfan,,6/30/2023 0:00,9.0:15,10.0:15,43.462156000000,-1.577735000000,,"Plage La Milady, Biarritz 64200",62312,observation-99d6eb06-16df-4817-bf52-2990d86d563c-8,https://biolit.fr/observations/observation-99d6eb06-16df-4817-bf52-2990d86d563c-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0897-scaled.jpeg,,FALSE, +N1,62334,sortie-99d6eb06-16df-4817-bf52-2990d86d563c,https://biolit.fr/sorties/sortie-99d6eb06-16df-4817-bf52-2990d86d563c/,Fanfan,,6/30/2023 0:00,9.0:15,10.0:15,43.462156000000,-1.577735000000,,"Plage La Milady, Biarritz 64200",62314,observation-99d6eb06-16df-4817-bf52-2990d86d563c-9,https://biolit.fr/observations/observation-99d6eb06-16df-4817-bf52-2990d86d563c-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0899-scaled.jpeg,,FALSE, +N1,62334,sortie-99d6eb06-16df-4817-bf52-2990d86d563c,https://biolit.fr/sorties/sortie-99d6eb06-16df-4817-bf52-2990d86d563c/,Fanfan,,6/30/2023 0:00,9.0:15,10.0:15,43.462156000000,-1.577735000000,,"Plage La Milady, Biarritz 64200",62318,observation-99d6eb06-16df-4817-bf52-2990d86d563c-11,https://biolit.fr/observations/observation-99d6eb06-16df-4817-bf52-2990d86d563c-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0906-scaled.jpeg,,FALSE, +N1,62334,sortie-99d6eb06-16df-4817-bf52-2990d86d563c,https://biolit.fr/sorties/sortie-99d6eb06-16df-4817-bf52-2990d86d563c/,Fanfan,,6/30/2023 0:00,9.0:15,10.0:15,43.462156000000,-1.577735000000,,"Plage La Milady, Biarritz 64200",62320,observation-99d6eb06-16df-4817-bf52-2990d86d563c-12,https://biolit.fr/observations/observation-99d6eb06-16df-4817-bf52-2990d86d563c-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0915-scaled.jpeg,,FALSE, +N1,62334,sortie-99d6eb06-16df-4817-bf52-2990d86d563c,https://biolit.fr/sorties/sortie-99d6eb06-16df-4817-bf52-2990d86d563c/,Fanfan,,6/30/2023 0:00,9.0:15,10.0:15,43.462156000000,-1.577735000000,,"Plage La Milady, Biarritz 64200",62322,observation-99d6eb06-16df-4817-bf52-2990d86d563c-13,https://biolit.fr/observations/observation-99d6eb06-16df-4817-bf52-2990d86d563c-13/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0916-scaled.jpeg,,TRUE, +N1,62334,sortie-99d6eb06-16df-4817-bf52-2990d86d563c,https://biolit.fr/sorties/sortie-99d6eb06-16df-4817-bf52-2990d86d563c/,Fanfan,,6/30/2023 0:00,9.0:15,10.0:15,43.462156000000,-1.577735000000,,"Plage La Milady, Biarritz 64200",62324,observation-99d6eb06-16df-4817-bf52-2990d86d563c-14,https://biolit.fr/observations/observation-99d6eb06-16df-4817-bf52-2990d86d563c-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0888-scaled.jpeg,,FALSE, +N1,62334,sortie-99d6eb06-16df-4817-bf52-2990d86d563c,https://biolit.fr/sorties/sortie-99d6eb06-16df-4817-bf52-2990d86d563c/,Fanfan,,6/30/2023 0:00,9.0:15,10.0:15,43.462156000000,-1.577735000000,,"Plage La Milady, Biarritz 64200",62326,observation-99d6eb06-16df-4817-bf52-2990d86d563c-15,https://biolit.fr/observations/observation-99d6eb06-16df-4817-bf52-2990d86d563c-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0894-scaled.jpeg,,FALSE, +N1,62334,sortie-99d6eb06-16df-4817-bf52-2990d86d563c,https://biolit.fr/sorties/sortie-99d6eb06-16df-4817-bf52-2990d86d563c/,Fanfan,,6/30/2023 0:00,9.0:15,10.0:15,43.462156000000,-1.577735000000,,"Plage La Milady, Biarritz 64200",62328,observation-99d6eb06-16df-4817-bf52-2990d86d563c-16,https://biolit.fr/observations/observation-99d6eb06-16df-4817-bf52-2990d86d563c-16/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_0911-scaled.jpeg,,TRUE, +N1,62431,Sortie #62431,https://biolit.fr/sorties/sortie-62431/,Roman,https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Aiptasia-couchii.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Anemonia-viridis.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Asterias-rubens.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Blennie-sp.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Carcinus-maenas.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Cereus-pedunculatus.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Ciliata-mustela.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Eolidien-sp.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Gobie-sp.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Lipophrys-pholis.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Nucella-lapillus.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/ophiothrix-fragilis.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Palaemons-elegans.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Psammechinus-miliaris.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Ruditapes-decussatus.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Pachygrapsus-marmoratus.png,07/11/2023 15:15,0.0000000,1.0000000,47.703412000000,-3.34986400000000,,Port-Louis,62433,Observation #62433,https://biolit.fr/observations/observation-62433/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Aiptasia-couchii.png,,TRUE,Identifiable +N1,62431,Sortie #62431,https://biolit.fr/sorties/sortie-62431/,Roman,https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Aiptasia-couchii.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Anemonia-viridis.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Asterias-rubens.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Blennie-sp.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Carcinus-maenas.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Cereus-pedunculatus.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Ciliata-mustela.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Eolidien-sp.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Gobie-sp.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Lipophrys-pholis.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Nucella-lapillus.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/ophiothrix-fragilis.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Palaemons-elegans.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Psammechinus-miliaris.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Ruditapes-decussatus.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Pachygrapsus-marmoratus.png,07/11/2023 15:15,0.0000000,1.0000000,47.703412000000,-3.34986400000000,,Port-Louis,62434,Observation #62434,https://biolit.fr/observations/observation-62434/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Anemonia-viridis.png,,TRUE,Identifiable +N1,62452,Sortie #62452,https://biolit.fr/sorties/sortie-62452/,Roman,https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Aiptasia-couchii-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Anemonia-viridis-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Asterias-rubens-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Blennie-sp-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Carcinus-maenas-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Cereus-pedunculatus-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Ciliata-mustela-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Eolidien-sp-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Gobie-sp-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Lipophrys-pholis-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Nucella-lapillus-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/ophiothrix-fragilis-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Pachygrapsus-marmoratus-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Palaemons-elegans-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Psammechinus-miliaris-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Ruditapes-decussatus-1.png,07/11/2023 15:29,0.0000000,1.0000000,47.7042330000000,-3.34834100000000,,Port-Louis,,,,,,,,,, +N1,62484,Sortie #62484,https://biolit.fr/sorties/sortie-62484/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100169-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100179-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100178-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100166-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100143-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100144-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100151-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100112-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100107-scaled.jpg,07/12/2023 11:26,16.0000000,17.0000000,46.1448610,-1.3150460,,Sainte Marie de Ré,,,,,,,,,, +N1,62492,Sortie #62492,https://biolit.fr/sorties/sortie-62492/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/07/1686834843801-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/07/Capsule-raie.png | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/07/capsule-rousette.png | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/07/IMG_20230606_144812-scaled.jpg,07/12/2023 12:09,14.0000000,16.0000000,-65.7811490000000,1003.53515600,,Dinard,,,,,,,,,, +N1,62498,Sortie #62498,https://biolit.fr/sorties/sortie-62498/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/07/1686834843801-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/07/Capsule-raie-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/07/capsule-rousette-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/07/IMG_20230606_144812-1-scaled.jpg,07/12/2023 14:23,14.0000000,16.0000000,47.8898270000000,-0.0585930000000000,,Agathe,,,,,,,,,, +N1,62502,Sortie #62502,https://biolit.fr/sorties/sortie-62502/,CORBINAUD Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/9f32844fd00d988738af1b10346307ea/2023/07/IMG_20230712_104118668-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f32844fd00d988738af1b10346307ea/2023/07/Oeufs-de-scaled.jpg,07/12/2023 14:32,10.0000000,11.0000000,43.116369,3.128896,,Plage de Mateille - Aude,62504,Observation #62504,https://biolit.fr/observations/observation-62504/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9f32844fd00d988738af1b10346307ea/2023/07/IMG_20230712_104118668-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f32844fd00d988738af1b10346307ea/2023/07/Oeufs-de-scaled.jpg,,,Ne sais pas +N1,62502,Sortie #62502,https://biolit.fr/sorties/sortie-62502/,CORBINAUD Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/9f32844fd00d988738af1b10346307ea/2023/07/IMG_20230712_104118668-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f32844fd00d988738af1b10346307ea/2023/07/Oeufs-de-scaled.jpg,07/12/2023 14:32,10.0000000,11.0000000,43.116369,3.128896,,Plage de Mateille - Aude,62505,Observation #62505,https://biolit.fr/observations/observation-62505/,Stramonita haemastoma,Ponte de bouche de sang,,https://biolit.fr/wp-content/uploads/jet-form-builder/9f32844fd00d988738af1b10346307ea/2023/07/Oeufs-de-scaled.jpg,,TRUE,Ne sais pas +N1,62509,Sortie #62509,https://biolit.fr/sorties/sortie-62509/,LPO Occitanie - Aude,https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2023/07/IMG20230712104024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2023/07/IMG20230712103958-scaled.jpg,07/12/2023 17:21,9.0000000,12.0000000,43.1180410000000,3.13100500000000,LPO Occitanie (Dt Aude),Gruissan plage de Mateille,62511,Observation #62511,https://biolit.fr/observations/observation-62511/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2023/07/IMG20230712104024-scaled.jpg,,TRUE,Identifiable +N1,62509,Sortie #62509,https://biolit.fr/sorties/sortie-62509/,LPO Occitanie - Aude,https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2023/07/IMG20230712104024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2023/07/IMG20230712103958-scaled.jpg,07/12/2023 17:21,9.0000000,12.0000000,43.1180410000000,3.13100500000000,LPO Occitanie (Dt Aude),Gruissan plage de Mateille,62512,Observation #62512,https://biolit.fr/observations/observation-62512/,Callinectes sapidus,Crabe bleu américain,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2023/07/IMG20230712103958-scaled.jpg,,TRUE,Identifiable +N1,62514,Sortie #62514,https://biolit.fr/sorties/sortie-62514/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100161-scaled.jpg,07/12/2023 18:54,16.0000000,17.0000000,46.1442320000000,-1.31567400000000,Observe la nature,Sainte Marie de Ré,,,,,,,,,, +N1,62518,Sortie #62518,https://biolit.fr/sorties/sortie-62518/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230710_163407-scaled.jpg,07/12/2023 19:16,16.0000000,17.0000000,46.1508220,-1.301411,,Sainte Marie de Ré,62520,Observation #62520,https://biolit.fr/observations/observation-62520/,Sepia officinalis,Seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230710_163407-scaled.jpg,,TRUE,Identifiable +N1,62533,Sortie #62533,https://biolit.fr/sorties/sortie-62533/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060033-scaled.jpg,7/13/2023 9:51,10.0000000,12.0000000,43.2840370000000,5.31629700000000,,Plage St Estève - Frioul,62535,Observation #62535,https://biolit.fr/observations/observation-62535/,Caulerpa cylindracea,Caulerpe cylindracée,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060015-scaled.jpg,,TRUE,Identifiable +N1,62533,Sortie #62533,https://biolit.fr/sorties/sortie-62533/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060033-scaled.jpg,7/13/2023 9:51,10.0000000,12.0000000,43.2840370000000,5.31629700000000,,Plage St Estève - Frioul,62536,Observation #62536,https://biolit.fr/observations/observation-62536/,Acetabularia acetabulum,Acétabulaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060018-scaled.jpg,,TRUE,Identifiable +N1,62533,Sortie #62533,https://biolit.fr/sorties/sortie-62533/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060033-scaled.jpg,7/13/2023 9:51,10.0000000,12.0000000,43.2840370000000,5.31629700000000,,Plage St Estève - Frioul,62537,Observation #62537,https://biolit.fr/observations/observation-62537/,Diplodus vulgaris,Sar à tête noire,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060010-scaled.jpg,,TRUE,Identifiable +N1,62550,Sortie #62550,https://biolit.fr/sorties/sortie-62550/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060021-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060022-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060023-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060025-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060028-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060031-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060033-1-scaled.jpg,7/13/2023 10:04,10.0000000,12.0000000,43.2839210000000,5.31616400000000,,Plage St Estève - Frioul,62552,Observation #62552,https://biolit.fr/observations/observation-62552/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060031-1-scaled.jpg,,TRUE,Identifiable +N1,62550,Sortie #62550,https://biolit.fr/sorties/sortie-62550/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060021-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060022-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060023-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060025-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060028-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060031-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060033-1-scaled.jpg,7/13/2023 10:04,10.0000000,12.0000000,43.2839210000000,5.31616400000000,,Plage St Estève - Frioul,62553,Observation #62553,https://biolit.fr/observations/observation-62553/,Tripterygion tripteronotum,Triptérygion rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060028-1-scaled.jpg,,TRUE,Identifiable +N1,62550,Sortie #62550,https://biolit.fr/sorties/sortie-62550/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060021-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060022-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060023-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060025-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060028-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060031-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060033-1-scaled.jpg,7/13/2023 10:04,10.0000000,12.0000000,43.2839210000000,5.31616400000000,,Plage St Estève - Frioul,62554,Observation #62554,https://biolit.fr/observations/observation-62554/,Parablennius incognitus,Blennie diabolo,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060033-1-scaled.jpg,,TRUE,Identifiable +N1,62550,Sortie #62550,https://biolit.fr/sorties/sortie-62550/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060021-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060022-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060023-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060025-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060028-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060031-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060033-1-scaled.jpg,7/13/2023 10:04,10.0000000,12.0000000,43.2839210000000,5.31616400000000,,Plage St Estève - Frioul,62555,Observation #62555,https://biolit.fr/observations/observation-62555/,Tripterygion tripteronotum,Triptérygion rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060023-1-scaled.jpg,,TRUE,Identifiable +N1,62550,Sortie #62550,https://biolit.fr/sorties/sortie-62550/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060021-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060022-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060023-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060025-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060028-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060031-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060033-1-scaled.jpg,7/13/2023 10:04,10.0000000,12.0000000,43.2839210000000,5.31616400000000,,Plage St Estève - Frioul,62556,Observation #62556,https://biolit.fr/observations/observation-62556/,Jania rubens,Janie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060026-scaled.jpg,,TRUE,Identifiable +N1,62558,Sortie #62558,https://biolit.fr/sorties/sortie-62558/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060019-1-scaled.jpg,7/13/2023 10:45,10.0000000,12.0000000,43.2841050000000,5.31626000000000,,Plage St Estève - Frioul,62560,Observation #62560,https://biolit.fr/observations/observation-62560/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060019-1-scaled.jpg,,FALSE,Identifiable +N1,62569,Sortie #62569,https://biolit.fr/sorties/sortie-62569/,divers@ecrivez-moi.com,https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-04-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-05-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-06-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-07-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-08-scaled.jpg,7/14/2023 19:00,16.0:25,17.0000000,47.7260210000000,-3.3757210000000,,Anse Kermélo,,,,,,,,,, +N1,62590,Sortie #62590,https://biolit.fr/sorties/sortie-62590/,divers@ecrivez-moi.com,https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-08-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-09-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-10-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-11-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-12-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-13-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-14-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-15-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-16-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-17-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-18-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-19-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-20-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-21-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-22-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-23-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-24-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-25-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-26-scaled.jpg,7/14/2023 19:05,16.0:25,17.0000000,47.7260210000000,-3.3757210000000,,Anse Kermélo,62593,Observation #62593,https://biolit.fr/observations/observation-62593/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-08-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-09-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-10-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-11-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-12-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-13-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-14-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-15-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-16-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-17-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-18-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-19-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-20-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-21-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-22-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-23-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-24-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-25-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-26-scaled.jpg,,,Identifiable +N1,62597,Sortie #62597,https://biolit.fr/sorties/sortie-62597/,PHILIPPE patrice,https://biolit.fr/wp-content/uploads/jet-form-builder/8dc8c52ad0aa2c4f3626c2e6d351475d/2023/07/20230715_102513-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8dc8c52ad0aa2c4f3626c2e6d351475d/2023/07/20230715_103133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8dc8c52ad0aa2c4f3626c2e6d351475d/2023/07/20230715_102124-scaled.jpg,7/16/2023 8:24,11.0000000,12.0:19,49.6960020000000,-1.46922600000000,,Cap Lévi 50,62599,Observation #62599,https://biolit.fr/observations/observation-62599/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8dc8c52ad0aa2c4f3626c2e6d351475d/2023/07/20230715_102513-scaled.jpg,,,Identifiable +N1,62597,Sortie #62597,https://biolit.fr/sorties/sortie-62597/,PHILIPPE patrice,https://biolit.fr/wp-content/uploads/jet-form-builder/8dc8c52ad0aa2c4f3626c2e6d351475d/2023/07/20230715_102513-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8dc8c52ad0aa2c4f3626c2e6d351475d/2023/07/20230715_103133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8dc8c52ad0aa2c4f3626c2e6d351475d/2023/07/20230715_102124-scaled.jpg,7/16/2023 8:24,11.0000000,12.0:19,49.6960020000000,-1.46922600000000,,Cap Lévi 50,62600,Observation #62600,https://biolit.fr/observations/observation-62600/,Phoca vitulina,Phoque commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/8dc8c52ad0aa2c4f3626c2e6d351475d/2023/07/20230715_102513-scaled.jpg,,,Identifiable +N1,62602,Sortie #62602,https://biolit.fr/sorties/sortie-62602/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/07/P1030138-scaled.jpg,7/17/2023 11:43,13.0000000,14.0000000,47.5543150000000,-2.87695900000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Kerver,,,,,,,,,, +N1,62605,Sortie #62605,https://biolit.fr/sorties/sortie-62605/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/07/P1030143-scaled.jpg,7/17/2023 12:09,13.0000000,14.0000000,47.5536130000000,-2.87740900000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Kerver,,,,,,,,,, +N1,62618,Sortie #62618,https://biolit.fr/sorties/sortie-62618/,LOMBARD KARINE,https://biolit.fr/wp-content/uploads/jet-form-builder/d790eddd9bd8e0b5f0812bf0ddce234c/2023/07/16897430795028589425282209831666-scaled.jpg,7/19/2023 7:05,7.000004,7.000004,41.9875370,3.2025540,Planète Mer,Plats,62620,Observation #62620,https://biolit.fr/observations/observation-62620/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d790eddd9bd8e0b5f0812bf0ddce234c/2023/07/16897430795028589425282209831666-scaled.jpg,,,Identifiable +N1,62622,Sortie #62622,https://biolit.fr/sorties/sortie-62622/,LOMBARD KARINE,https://biolit.fr/wp-content/uploads/jet-form-builder/d790eddd9bd8e0b5f0812bf0ddce234c/2023/07/20230719_070803-scaled.jpg,7/19/2023 7:09,7.000008,7.000008,41.9834350,3.2050710,Planète Mer,Plats,,,,,,,,,, +N1,62626,Sortie #62626,https://biolit.fr/sorties/sortie-62626/,LOMBARD KARINE,https://biolit.fr/wp-content/uploads/jet-form-builder/d790eddd9bd8e0b5f0812bf0ddce234c/2023/07/20230719_071133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d790eddd9bd8e0b5f0812bf0ddce234c/2023/07/20230719_070803-1-scaled.jpg,7/19/2023 7:13,6.0:12,7.0:12,41.980605,3.2026560,Planète Mer,Plats,62628,Observation #62628,https://biolit.fr/observations/observation-62628/,Pancratium maritimum,Lis de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/d790eddd9bd8e0b5f0812bf0ddce234c/2023/07/20230719_070803-1-scaled.jpg,,TRUE,Identifiable +N1,62626,Sortie #62626,https://biolit.fr/sorties/sortie-62626/,LOMBARD KARINE,https://biolit.fr/wp-content/uploads/jet-form-builder/d790eddd9bd8e0b5f0812bf0ddce234c/2023/07/20230719_071133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d790eddd9bd8e0b5f0812bf0ddce234c/2023/07/20230719_070803-1-scaled.jpg,7/19/2023 7:13,6.0:12,7.0:12,41.980605,3.2026560,Planète Mer,Plats,62629,Observation #62629,https://biolit.fr/observations/observation-62629/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d790eddd9bd8e0b5f0812bf0ddce234c/2023/07/20230719_071133-scaled.jpg,,,Identifiable +N1,62639,Sortie #62639,https://biolit.fr/sorties/sortie-62639/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/DSC_0023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/DSC_0050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/DSC_0064-scaled.jpg,7/19/2023 12:10,10.0000000,12.0000000,43.2840020000000,5.31585500000000,,Plage St Estève - Frioul,62643,Observation #62643,https://biolit.fr/observations/observation-62643/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/DSC_0050-scaled.jpg,,,Ne sais pas +N1,62645,Sortie #62645,https://biolit.fr/sorties/sortie-62645/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_1500031-scaled.jpg,7/19/2023 12:30,14.0000000,16.0000000,48.5579090000000,-2.72912100000000,Observe la nature,Plage de Nouëlles Plérin,62647,Observation #62647,https://biolit.fr/observations/observation-62647/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_1500031-scaled.jpg,,TRUE,Identifiable +N1,62651,Sortie #62651,https://biolit.fr/sorties/sortie-62651/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/DSC_0023-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/DSC_0044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/DSC_0064-1-scaled.jpg,7/19/2023 12:36,10.0000000,12.0000000,43.2841900000000,5.31570900000000,,Plage St Estève - Frioul,,,,,,,,,, +N1,62657,Sortie #62657,https://biolit.fr/sorties/sortie-62657/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/DSC_0023-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/DSC_0064-2-scaled.jpg,7/19/2023 12:40,10.0000000,12.0000000,43.2841650000000,5.31598400000000,,Plage St Estève - Frioul,62667,Observation #62667,https://biolit.fr/observations/observation-62667/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/DSC_0023-2-scaled.jpg,,,Ne sais pas +N1,62665,Sortie #62665,https://biolit.fr/sorties/sortie-62665/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_150522-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_150008-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_150003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_145713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_145700-scaled.jpg,7/19/2023 12:41,14.000001,16.0000000,48.5573840000000,-2.72747100000000,Observe la nature,Plage de Nouëlles Plérin,62668,Observation #62668,https://biolit.fr/observations/observation-62668/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_150522-scaled.jpg,,TRUE,Identifiable +N1,62665,Sortie #62665,https://biolit.fr/sorties/sortie-62665/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_150522-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_150008-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_150003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_145713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_145700-scaled.jpg,7/19/2023 12:41,14.000001,16.0000000,48.5573840000000,-2.72747100000000,Observe la nature,Plage de Nouëlles Plérin,62669,Observation #62669,https://biolit.fr/observations/observation-62669/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_150008-scaled.jpg,,TRUE,Identifiable +N1,62665,Sortie #62665,https://biolit.fr/sorties/sortie-62665/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_150522-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_150008-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_150003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_145713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_145700-scaled.jpg,7/19/2023 12:41,14.000001,16.0000000,48.5573840000000,-2.72747100000000,Observe la nature,Plage de Nouëlles Plérin,62670,Observation #62670,https://biolit.fr/observations/observation-62670/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_150003-scaled.jpg,,TRUE,Identifiable +N1,62687,Sortie #62687,https://biolit.fr/sorties/sortie-62687/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/07/IMG_0067-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/07/IMG_0068-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/07/IMG_0069-scaled.jpg,7/19/2023 13:43,14.0000000,15.0000000,48.1641320000000,-1.62451200000000,Observatoire du Plancton,Dinard,,,,,,,,,, +N1,62719,Sortie #62719,https://biolit.fr/sorties/sortie-62719/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_1457131-scaled.jpg,7/19/2023 18:57,14.0000000,16.0000000,48.5576220000000,-2.72840000000000,Observe la nature,Plage de Nouëlles Plérin,62721,Observation #62721,https://biolit.fr/observations/observation-62721/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_1457131-scaled.jpg,,,Identifiable +N1,62729,Sortie #62729,https://biolit.fr/sorties/sortie-62729/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100166-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100143-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100150-scaled.jpg,7/19/2023 19:19,16.0000000,17.0000000,46.1441380000000,-1.31525500000000,Observe la nature,Sainte Marie de Ré,62731,Observation #62731,https://biolit.fr/observations/observation-62731/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100166-1-scaled.jpg,,TRUE,Identifiable +N1,62729,Sortie #62729,https://biolit.fr/sorties/sortie-62729/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100166-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100143-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100150-scaled.jpg,7/19/2023 19:19,16.0000000,17.0000000,46.1441380000000,-1.31525500000000,Observe la nature,Sainte Marie de Ré,62732,Observation #62732,https://biolit.fr/observations/observation-62732/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100126-scaled.jpg,,,Identifiable +N1,62729,Sortie #62729,https://biolit.fr/sorties/sortie-62729/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100166-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100143-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100150-scaled.jpg,7/19/2023 19:19,16.0000000,17.0000000,46.1441380000000,-1.31525500000000,Observe la nature,Sainte Marie de Ré,62733,Observation #62733,https://biolit.fr/observations/observation-62733/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100179-1-scaled.jpg,,,Identifiable +N1,62729,Sortie #62729,https://biolit.fr/sorties/sortie-62729/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100166-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100143-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100150-scaled.jpg,7/19/2023 19:19,16.0000000,17.0000000,46.1441380000000,-1.31525500000000,Observe la nature,Sainte Marie de Ré,62734,Observation #62734,https://biolit.fr/observations/observation-62734/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100143-1-scaled.jpg,,TRUE,Identifiable +N1,62729,Sortie #62729,https://biolit.fr/sorties/sortie-62729/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100166-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100143-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100150-scaled.jpg,7/19/2023 19:19,16.0000000,17.0000000,46.1441380000000,-1.31525500000000,Observe la nature,Sainte Marie de Ré,62735,Observation #62735,https://biolit.fr/observations/observation-62735/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100150-scaled.jpg,,TRUE,Identifiable +N1,62737,Sortie #62737,https://biolit.fr/sorties/sortie-62737/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100169-1-scaled.jpg,7/19/2023 19:46,16.0000000,17.0000000,46.1441790000000,-1.31584200000000,Observe la nature,Sainte Marie de Ré,62739,Observation #62739,https://biolit.fr/observations/observation-62739/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100169-1-scaled.jpg,,,Ne sais pas +N1,62742,Sortie #62742,https://biolit.fr/sorties/sortie-62742/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/07/IMG_0066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/07/IMG_0069-1-scaled.jpg,7/20/2023 9:27,14.0000000,16.0000000,45.9738060000000,0.981445000000000,Planète Mer (antenne Dinard),Dinard,,,,,,,,,, +N1,62745,Sortie #62745,https://biolit.fr/sorties/sortie-62745/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/07/IMG_0068-1-scaled.jpg,7/20/2023 9:29,14.0000000,16.0000000,48.6407950000000,-2.07305400000000,Planète Mer (antenne Dinard),Dinard,,,,,,,,,, +N1,62750,Sortie #62750,https://biolit.fr/sorties/sortie-62750/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/07/IMG_0068-2-scaled.jpg,7/20/2023 9:32,14.0000000,16.0000000,48.6413300000000,-2.07352600000000,Planète Mer (antenne Dinard),Dinard,62752,Observation #62752,https://biolit.fr/observations/observation-62752/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/07/IMG_0068-2-scaled.jpg,,TRUE,Identifiable +N1,62763,Sortie #62763,https://biolit.fr/sorties/sortie-62763/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/DSC_0055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/DSC_0064-3-scaled.jpg,7/20/2023 12:05,10.0000000,12.0000000,43.2841210000000,5.31604400000000,,Plage St Estève - Frioul,62765,Observation #62765,https://biolit.fr/observations/observation-62765/,Larus michahellis,Goéland leucophée,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/DSC_0064-3-scaled.jpg,,,Identifiable +N1,62785,Sortie #62785,https://biolit.fr/sorties/sortie-62785/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230721_153457-scaled.jpg,7/21/2023 16:05,2.0000000,16.0000000,48.8153560000000,-3.43043500000000,Observe la nature,Perros guirec plage de pors ar goret,62787,Observation #62787,https://biolit.fr/observations/observation-62787/,Sacculina carcini,Sacculine du crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230721_153457-scaled.jpg,,TRUE,Ne sais pas +N1,62790,Sortie #62790,https://biolit.fr/sorties/sortie-62790/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230721_150101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230721_144423-scaled.jpg,7/21/2023 16:12,14.0000000,16.0:11,48.8152890000000,-3.43023800000000,Observe la nature,Perros guirec pors ar goret,62792,Observation #62792,https://biolit.fr/observations/observation-62792/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230721_150101-scaled.jpg,,TRUE,Identifiable +N1,62790,Sortie #62790,https://biolit.fr/sorties/sortie-62790/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230721_150101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230721_144423-scaled.jpg,7/21/2023 16:12,14.0000000,16.0:11,48.8152890000000,-3.43023800000000,Observe la nature,Perros guirec pors ar goret,62793,Observation #62793,https://biolit.fr/observations/observation-62793/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230721_144423-scaled.jpg,,TRUE,Identifiable +N1,62810,Sortie #62810,https://biolit.fr/sorties/sortie-62810/,Roman,https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Aiptasia-couchii-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Anemonia-viridis-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Asterias-rubens-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Blennie-sp-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Carcinus-maenas-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Cereus-pedunculatus-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Ciliata-mustela-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Eolidien-sp-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Gobie-sp-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Lipophrys-pholis-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Nucella-lapillus-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/ophiothrix-fragilis-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Pachygrapsus-marmoratus-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Palaemons-elegans-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Psammechinus-miliaris-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Ruditapes-decussatus-2.png,7/22/2023 15:23,0.0000000,1.0000000,47.7060500,-3.3475170,,Port-Louis,,,,,,,,,, +N1,62813,Sortie #62813,https://biolit.fr/sorties/sortie-62813/,FREDO,https://biolit.fr/wp-content/uploads/jet-form-builder/a0ca353e17ab207e3ed1eb86c1428569/2023/07/DSCN9964.jpg,7/23/2023 7:11,16.0000000,16.0:15,43.1161340,6.0653570,,ILE DU LEVANT,62815,Observation #62815,https://biolit.fr/observations/observation-62815/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a0ca353e17ab207e3ed1eb86c1428569/2023/07/DSCN9964.jpg,,,Identifiable +N1,62818,Sortie #62818,https://biolit.fr/sorties/sortie-62818/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230722_152219-scaled.jpg,7/23/2023 19:33,14.0000000,16.0:45,48.8389090000000,-3.50280100000000,Observe la nature,Tregastel,62820,Observation #62820,https://biolit.fr/observations/observation-62820/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230722_152219-scaled.jpg,,TRUE,Identifiable +N1,62822,Sortie #62822,https://biolit.fr/sorties/sortie-62822/,Ducongé Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/471d1717eba75c469278dd35d4ddec38/2023/07/17848D5C-513A-4477-8D94-56D2054F4DE6-scaled.jpeg,7/24/2023 12:06,18.0000000,18.000001,46.0025320000000,-1.11619100000000,,Fouras,62824,Observation #62824,https://biolit.fr/observations/observation-62824/,Conger conger,Congre,,https://biolit.fr/wp-content/uploads/jet-form-builder/471d1717eba75c469278dd35d4ddec38/2023/07/17848D5C-513A-4477-8D94-56D2054F4DE6-scaled.jpeg,,TRUE,Ne sais pas +N1,62826,Sortie #62826,https://biolit.fr/sorties/sortie-62826/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/07/ALGUES-BRUNES.jpg,7/24/2023 12:08,10.0000000,11.0000000,47.5538490000000,-2.87893000000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),KERNERS,,,,,,,,,, +N1,62844,Sortie #62844,https://biolit.fr/sorties/sortie-62844/,Ducongé Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/471d1717eba75c469278dd35d4ddec38/2023/07/F65AE936-0968-4B9C-B7E3-944080F23C81-scaled.jpeg,7/25/2023 12:18,18.0000000,19.0000000,46.0024250000000,-1.12197900000000,,Fouras pointe de la Fumée,62846,Observation #62846,https://biolit.fr/observations/observation-62846/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/471d1717eba75c469278dd35d4ddec38/2023/07/F65AE936-0968-4B9C-B7E3-944080F23C81-scaled.jpeg,,,Identifiable +N1,62844,Sortie #62844,https://biolit.fr/sorties/sortie-62844/,Ducongé Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/471d1717eba75c469278dd35d4ddec38/2023/07/F65AE936-0968-4B9C-B7E3-944080F23C81-scaled.jpeg,7/25/2023 12:18,18.0000000,19.0000000,46.0024250000000,-1.12197900000000,,Fouras pointe de la Fumée,62847,Observation #62847,https://biolit.fr/observations/observation-62847/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/471d1717eba75c469278dd35d4ddec38/2023/07/F65AE936-0968-4B9C-B7E3-944080F23C81-scaled.jpeg,,TRUE,Identifiable +N1,62849,Sortie #62849,https://biolit.fr/sorties/sortie-62849/,Ducongé Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/471d1717eba75c469278dd35d4ddec38/2023/07/9B7AAE11-1A26-4CAF-B786-CA8538978951-scaled.jpeg,7/25/2023 12:30,18.0000000,19.0000000,46.0025930000000,-1.122408000000,,Fouras pointe de la Fumée,62851,Observation #62851,https://biolit.fr/observations/observation-62851/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/471d1717eba75c469278dd35d4ddec38/2023/07/9B7AAE11-1A26-4CAF-B786-CA8538978951-scaled.jpeg,,,Identifiable +N1,62875,Sortie #62875,https://biolit.fr/sorties/sortie-62875/,Ducongé Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/471d1717eba75c469278dd35d4ddec38/2023/07/B264F332-1E23-4839-92B9-CCD4346081E5-scaled.jpeg,7/27/2023 9:22,18.0000000,19.0000000,46.0027720000000,-1.12223600000000,,Fouras pointe de la Fumée,62877,Observation #62877,https://biolit.fr/observations/observation-62877/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/471d1717eba75c469278dd35d4ddec38/2023/07/B264F332-1E23-4839-92B9-CCD4346081E5-scaled.jpeg,,,Identifiable +N1,62880,Sortie #62880,https://biolit.fr/sorties/sortie-62880/,Ducongé Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/471d1717eba75c469278dd35d4ddec38/2023/07/D0D748A3-A9FC-4C2B-BE1A-C386F29388ED-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/471d1717eba75c469278dd35d4ddec38/2023/07/BAE73C57-042E-4948-8EBA-24EA2EA9D965-scaled.jpeg,7/27/2023 9:35,18.0000000,19.0000000,46.0022950000000,-1.12185000000000,,Fouras pointe de la Fumée,62882,Observation #62882,https://biolit.fr/observations/observation-62882/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/471d1717eba75c469278dd35d4ddec38/2023/07/D0D748A3-A9FC-4C2B-BE1A-C386F29388ED-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/471d1717eba75c469278dd35d4ddec38/2023/07/BAE73C57-042E-4948-8EBA-24EA2EA9D965-scaled.jpeg,,TRUE,Identifiable +N1,62903,Sortie #62903,https://biolit.fr/sorties/sortie-62903/,Roman,https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Aiptasia-couchii-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Anemonia-viridis-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Asterias-rubens-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Blennie-sp-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Carcinus-maenas-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Cereus-pedunculatus-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Ciliata-mustela-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Eolidien-sp-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Gobie-sp-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Lipophrys-pholis-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Nucella-lapillus-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/ophiothrix-fragilis-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Pachygrapsus-marmoratus-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Palaemons-elegans-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Psammechinus-miliaris-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Ruditapes-decussatus-3.png,7/27/2023 13:37,0.0000000,2.0000000,47.7035550000000,-3.34974600000000,,Port-Louis,63811,Observation #63811,https://biolit.fr/observations/observation-63811/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Asterias-rubens-3.png,,TRUE,Identifiable +N1,62926,Sortie #62926,https://biolit.fr/sorties/sortie-62926/,Roman,https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Acanthochitona-fascicularis.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Actinia-equina.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Actinia-fragacea.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Anemonia-viridis-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/ascophyllus-nodosum.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Asterina-gibbosa.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Botrylloides-spp.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/cancer-pagurus-et-sacculina.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Carcinus-maenas-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Cerastoderma-edule.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Cereus-pedunculatus-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Chthamalus-montagui.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Clibanarius-erytrhopus.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Corallina-officinalis.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Crassostrea-gigas.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Dynamene.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/eponge-sp.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Fucus-spiralis.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Lepidochitona-sp.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Lithophyllum-incrustans.png,7/27/2023 13:50,10.0:45,12.0000000,47.7028760000000,-3.35296500000000,Observatoire du Plancton,Port-Louis,,,,,,,,,, +N1,63027,Sortie #63027,https://biolit.fr/sorties/sortie-63027/,Lu Cio,https://biolit.fr/wp-content/uploads/jet-form-builder/e06dc1635dc2f3cfc38f06082ee65748/2023/07/Veillon-01-01-2023-Copie-2.jpg,7/28/2023 18:52,10.0000000,10.0:21,46.4328900000000,-1.65510500000000,,Le Veillon,63029,Observation #63029,https://biolit.fr/observations/observation-63029/,Hippocampus hippocampus,Hippocampe à museau court,,https://biolit.fr/wp-content/uploads/jet-form-builder/e06dc1635dc2f3cfc38f06082ee65748/2023/07/Veillon-01-01-2023-Copie-2.jpg,,TRUE,Identifiable +N1,63031,Sortie #63031,https://biolit.fr/sorties/sortie-63031/,Lu Cio,https://biolit.fr/wp-content/uploads/jet-form-builder/e06dc1635dc2f3cfc38f06082ee65748/2023/07/IMG_5648-2.jpg,7/28/2023 19:01,9.0000000,9.0000000,46.4328610000000,-1.6557490000000,,le Veillon,63033,Observation #63033,https://biolit.fr/observations/observation-63033/,Janthina janthina,Janthine commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/e06dc1635dc2f3cfc38f06082ee65748/2023/07/IMG_5648-2.jpg,,TRUE,Identifiable +N1,63048,Sortie #63048,https://biolit.fr/sorties/sortie-63048/,Techer Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/0598950d54fd0bdc239fcd4ad3c74bd3/2023/08/IMG_3733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/0598950d54fd0bdc239fcd4ad3c74bd3/2023/08/IMG_1900-scaled.jpeg,08/02/2023 9:38,16.0000000,16.0:53,46.0138710000000,-1.1700440000000,,Île d‘Aix,63050,Observation #63050,https://biolit.fr/observations/observation-63050/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0598950d54fd0bdc239fcd4ad3c74bd3/2023/08/IMG_3733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/0598950d54fd0bdc239fcd4ad3c74bd3/2023/08/IMG_1900-scaled.jpeg,,,Ne sais pas +N1,63048,Sortie #63048,https://biolit.fr/sorties/sortie-63048/,Techer Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/0598950d54fd0bdc239fcd4ad3c74bd3/2023/08/IMG_3733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/0598950d54fd0bdc239fcd4ad3c74bd3/2023/08/IMG_1900-scaled.jpeg,08/02/2023 9:38,16.0000000,16.0:53,46.0138710000000,-1.1700440000000,,Île d‘Aix,63051,Observation #63051,https://biolit.fr/observations/observation-63051/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0598950d54fd0bdc239fcd4ad3c74bd3/2023/08/IMG_1900-scaled.jpeg,,,Ne sais pas +N1,63060,Sortie #63060,https://biolit.fr/sorties/sortie-63060/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_113334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_113210-scaled.jpg,08/03/2023 11:37,11.0000000,11.0:35,46.0956710000000,-1.105693000000,,La sapinière,63062,Observation #63062,https://biolit.fr/observations/observation-63062/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_113334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_113210-scaled.jpg,,TRUE,Identifiable +N1,63060,Sortie #63060,https://biolit.fr/sorties/sortie-63060/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_113334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_113210-scaled.jpg,08/03/2023 11:37,11.0000000,11.0:35,46.0956710000000,-1.105693000000,,La sapinière,63063,Observation #63063,https://biolit.fr/observations/observation-63063/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_113210-scaled.jpg,,TRUE,Identifiable +N1,63068,Sortie #63068,https://biolit.fr/sorties/sortie-63068/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230730_100758-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230730_100825-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230730_100942-scaled.jpg,08/03/2023 14:48,9.0000000,11.0000000,48.7408480000000,-4.00689500000000,Observe la nature,Ile de Batz Plage à droite du débarcadère,,,,,,,,,, +N1,63075,Sortie #63075,https://biolit.fr/sorties/sortie-63075/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/P7220009-COMP.jpg,08/03/2023 17:23,14.0000000,16.0000000,48.8382730000000,-3.50289300000000,Observe la nature,Tregastel,63077,Observation #63077,https://biolit.fr/observations/observation-63077/,Onchidella celtica,Limace celtique,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/P7220009-COMP.jpg,,TRUE,Identifiable +N1,63081,Sortie #63081,https://biolit.fr/sorties/sortie-63081/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_114158-scaled.jpg,08/04/2023 8:42,11.0:26,11.0:34,46.0952920000000,-1.10395400000000,,La sapinière,63083,Observation #63083,https://biolit.fr/observations/observation-63083/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_114158-scaled.jpg,,TRUE,Identifiable +N1,63089,Sortie #63089,https://biolit.fr/sorties/sortie-63089/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131748-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_130923-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_125011-scaled.jpg,08/04/2023 9:00,12.0000000,12.0:55,46.110123000000,-1.13898600000000,,Pointe du chay,63091,Observation #63091,https://biolit.fr/observations/observation-63091/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131748-scaled.jpg,,TRUE,Ne sais pas +N1,63089,Sortie #63089,https://biolit.fr/sorties/sortie-63089/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131748-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_130923-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_125011-scaled.jpg,08/04/2023 9:00,12.0000000,12.0:55,46.110123000000,-1.13898600000000,,Pointe du chay,63092,Observation #63092,https://biolit.fr/observations/observation-63092/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131019-scaled.jpg,,TRUE,Identifiable +N1,63089,Sortie #63089,https://biolit.fr/sorties/sortie-63089/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131748-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_130923-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_125011-scaled.jpg,08/04/2023 9:00,12.0000000,12.0:55,46.110123000000,-1.13898600000000,,Pointe du chay,63093,Observation #63093,https://biolit.fr/observations/observation-63093/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_130923-scaled.jpg,,TRUE,Identifiable +N1,63089,Sortie #63089,https://biolit.fr/sorties/sortie-63089/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131748-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_130923-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_125011-scaled.jpg,08/04/2023 9:00,12.0000000,12.0:55,46.110123000000,-1.13898600000000,,Pointe du chay,63094,Observation #63094,https://biolit.fr/observations/observation-63094/,Ocenebra erinaceus,Ponte de Bigorneau perceur,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_125011-scaled.jpg,,TRUE,Identifiable +N1,63089,Sortie #63089,https://biolit.fr/sorties/sortie-63089/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131748-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_130923-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_125011-scaled.jpg,08/04/2023 9:00,12.0000000,12.0:55,46.110123000000,-1.13898600000000,,Pointe du chay,63095,Observation #63095,https://biolit.fr/observations/observation-63095/,Eunicella verrucosa,Gorgone verruqueuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131022-scaled.jpg,,TRUE,Identifiable +N1,63206,Sortie #63206,https://biolit.fr/sorties/sortie-63206/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_131350-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_132548-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_133425-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_133655-scaled.webp,08/05/2023 12:24,11.0000000,13.0000000,47.8058650000000,-4.37390300000000,Observe la nature,Saint Guénolé Penmarc'h PK Chapelle ND de la joie,63208,Observation #63208,https://biolit.fr/observations/observation-63208/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_131350-scaled.webp,,TRUE,Identifiable +N1,63206,Sortie #63206,https://biolit.fr/sorties/sortie-63206/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_131350-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_132548-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_133425-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_133655-scaled.webp,08/05/2023 12:24,11.0000000,13.0000000,47.8058650000000,-4.37390300000000,Observe la nature,Saint Guénolé Penmarc'h PK Chapelle ND de la joie,63209,Observation #63209,https://biolit.fr/observations/observation-63209/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_132548-scaled.webp,,TRUE,Identifiable +N1,63206,Sortie #63206,https://biolit.fr/sorties/sortie-63206/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_131350-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_132548-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_133425-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_133655-scaled.webp,08/05/2023 12:24,11.0000000,13.0000000,47.8058650000000,-4.37390300000000,Observe la nature,Saint Guénolé Penmarc'h PK Chapelle ND de la joie,63210,Observation #63210,https://biolit.fr/observations/observation-63210/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_133425-scaled.webp,,TRUE,Identifiable +N1,63206,Sortie #63206,https://biolit.fr/sorties/sortie-63206/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_131350-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_132548-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_133425-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_133655-scaled.webp,08/05/2023 12:24,11.0000000,13.0000000,47.8058650000000,-4.37390300000000,Observe la nature,Saint Guénolé Penmarc'h PK Chapelle ND de la joie,63211,Observation #63211,https://biolit.fr/observations/observation-63211/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_133655-scaled.webp,,TRUE,Identifiable +N1,63214,Sortie #63214,https://biolit.fr/sorties/sortie-63214/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/P8040003-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/P8040005-scaled.webp,08/05/2023 12:45,11.0000000,13.0000000,47.8055330000000,-4.37347600000000,Observe la nature,Saint Guénolé Penmarc'h PK Chapelle ND de la joie,63216,Observation #63216,https://biolit.fr/observations/observation-63216/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/P8040003-scaled.webp,,TRUE,Identifiable +N1,63214,Sortie #63214,https://biolit.fr/sorties/sortie-63214/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/P8040003-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/P8040005-scaled.webp,08/05/2023 12:45,11.0000000,13.0000000,47.8055330000000,-4.37347600000000,Observe la nature,Saint Guénolé Penmarc'h PK Chapelle ND de la joie,63217,Observation #63217,https://biolit.fr/observations/observation-63217/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/P8040005-scaled.webp,,TRUE,Identifiable +N1,63224,Sortie #63224,https://biolit.fr/sorties/sortie-63224/,Fouquet Emeline,https://biolit.fr/wp-content/uploads/jet-form-builder/e6ef7e71b8cf75b88c3965131551ffb0/2023/08/20230807_150244-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/e6ef7e71b8cf75b88c3965131551ffb0/2023/08/20230807_150208-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/e6ef7e71b8cf75b88c3965131551ffb0/2023/08/20230807_150047-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/e6ef7e71b8cf75b88c3965131551ffb0/2023/08/20230807_150038-scaled.webp,08/07/2023 15:17,15.0000000,15.0:15,45.7036860000000,-1.197510000000,,Phare de la coubre,63226,Observation #63226,https://biolit.fr/observations/observation-63226/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/e6ef7e71b8cf75b88c3965131551ffb0/2023/08/20230807_150244-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/e6ef7e71b8cf75b88c3965131551ffb0/2023/08/20230807_150208-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/e6ef7e71b8cf75b88c3965131551ffb0/2023/08/20230807_150047-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/e6ef7e71b8cf75b88c3965131551ffb0/2023/08/20230807_150038-scaled.webp,,TRUE,Identifiable +N1,63263,Sortie #63263,https://biolit.fr/sorties/sortie-63263/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230811_102550-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230811_102532-scaled.webp,08/11/2023 15:49,10.0:15,10.0:25,46.2509110000000,-1.14125400000000,,Pointe saint Clement,63265,Observation #63265,https://biolit.fr/observations/observation-63265/,Urosalpinx cinerea,Perceur d'huîtres Atlantique,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230811_102532-scaled.webp,,TRUE,Identifiable +N1,63263,Sortie #63263,https://biolit.fr/sorties/sortie-63263/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230811_102550-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230811_102532-scaled.webp,08/11/2023 15:49,10.0:15,10.0:25,46.2509110000000,-1.14125400000000,,Pointe saint Clement,63266,Observation #63266,https://biolit.fr/observations/observation-63266/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230811_102550-scaled.webp,,,Identifiable +N1,63273,Sortie #63273,https://biolit.fr/sorties/sortie-63273/,barthe sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/B8A6AADB-C2AC-4E2A-B5ED-A0BA43B9D117-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/72668468-62C7-450F-AE6F-5A8272C4B8EB-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46042338-A547-4CD4-8769-E4D91240F417-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46769B0D-4861-495C-8C0F-D901F4D12F32-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/D514F1F3-02AD-4600-B09A-9BFEAA767E13-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/1ACB0C32-A9B7-4030-9C53-18E4A91EA4B6-scaled.webp,08/12/2023 14:41,14.0:39,15.0:39,43.8410870000000,-1.37420600000000,,Moliets et Maa,63275,Observation #63275,https://biolit.fr/observations/observation-63275/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/B8A6AADB-C2AC-4E2A-B5ED-A0BA43B9D117-scaled.webp,,,Ne sais pas +N1,63273,Sortie #63273,https://biolit.fr/sorties/sortie-63273/,barthe sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/B8A6AADB-C2AC-4E2A-B5ED-A0BA43B9D117-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/72668468-62C7-450F-AE6F-5A8272C4B8EB-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46042338-A547-4CD4-8769-E4D91240F417-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46769B0D-4861-495C-8C0F-D901F4D12F32-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/D514F1F3-02AD-4600-B09A-9BFEAA767E13-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/1ACB0C32-A9B7-4030-9C53-18E4A91EA4B6-scaled.webp,08/12/2023 14:41,14.0:39,15.0:39,43.8410870000000,-1.37420600000000,,Moliets et Maa,63276,Observation #63276,https://biolit.fr/observations/observation-63276/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/72668468-62C7-450F-AE6F-5A8272C4B8EB-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46042338-A547-4CD4-8769-E4D91240F417-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46769B0D-4861-495C-8C0F-D901F4D12F32-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/D514F1F3-02AD-4600-B09A-9BFEAA767E13-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/1ACB0C32-A9B7-4030-9C53-18E4A91EA4B6-scaled.webp,,,Ne sais pas +N1,63273,Sortie #63273,https://biolit.fr/sorties/sortie-63273/,barthe sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/B8A6AADB-C2AC-4E2A-B5ED-A0BA43B9D117-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/72668468-62C7-450F-AE6F-5A8272C4B8EB-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46042338-A547-4CD4-8769-E4D91240F417-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46769B0D-4861-495C-8C0F-D901F4D12F32-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/D514F1F3-02AD-4600-B09A-9BFEAA767E13-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/1ACB0C32-A9B7-4030-9C53-18E4A91EA4B6-scaled.webp,08/12/2023 14:41,14.0:39,15.0:39,43.8410870000000,-1.37420600000000,,Moliets et Maa,63277,Observation #63277,https://biolit.fr/observations/observation-63277/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46042338-A547-4CD4-8769-E4D91240F417-scaled.webp,,,Ne sais pas +N1,63273,Sortie #63273,https://biolit.fr/sorties/sortie-63273/,barthe sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/B8A6AADB-C2AC-4E2A-B5ED-A0BA43B9D117-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/72668468-62C7-450F-AE6F-5A8272C4B8EB-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46042338-A547-4CD4-8769-E4D91240F417-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46769B0D-4861-495C-8C0F-D901F4D12F32-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/D514F1F3-02AD-4600-B09A-9BFEAA767E13-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/1ACB0C32-A9B7-4030-9C53-18E4A91EA4B6-scaled.webp,08/12/2023 14:41,14.0:39,15.0:39,43.8410870000000,-1.37420600000000,,Moliets et Maa,63278,Observation #63278,https://biolit.fr/observations/observation-63278/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/1ACB0C32-A9B7-4030-9C53-18E4A91EA4B6-scaled.webp,,,Ne sais pas +N1,63273,Sortie #63273,https://biolit.fr/sorties/sortie-63273/,barthe sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/B8A6AADB-C2AC-4E2A-B5ED-A0BA43B9D117-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/72668468-62C7-450F-AE6F-5A8272C4B8EB-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46042338-A547-4CD4-8769-E4D91240F417-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46769B0D-4861-495C-8C0F-D901F4D12F32-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/D514F1F3-02AD-4600-B09A-9BFEAA767E13-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/1ACB0C32-A9B7-4030-9C53-18E4A91EA4B6-scaled.webp,08/12/2023 14:41,14.0:39,15.0:39,43.8410870000000,-1.37420600000000,,Moliets et Maa,63279,Observation #63279,https://biolit.fr/observations/observation-63279/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/D514F1F3-02AD-4600-B09A-9BFEAA767E13-scaled.webp,,,Ne sais pas +N1,63273,Sortie #63273,https://biolit.fr/sorties/sortie-63273/,barthe sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/B8A6AADB-C2AC-4E2A-B5ED-A0BA43B9D117-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/72668468-62C7-450F-AE6F-5A8272C4B8EB-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46042338-A547-4CD4-8769-E4D91240F417-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46769B0D-4861-495C-8C0F-D901F4D12F32-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/D514F1F3-02AD-4600-B09A-9BFEAA767E13-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/1ACB0C32-A9B7-4030-9C53-18E4A91EA4B6-scaled.webp,08/12/2023 14:41,14.0:39,15.0:39,43.8410870000000,-1.37420600000000,,Moliets et Maa,63280,Observation #63280,https://biolit.fr/observations/observation-63280/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46042338-A547-4CD4-8769-E4D91240F417-scaled.webp,,,Ne sais pas +N1,63273,Sortie #63273,https://biolit.fr/sorties/sortie-63273/,barthe sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/B8A6AADB-C2AC-4E2A-B5ED-A0BA43B9D117-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/72668468-62C7-450F-AE6F-5A8272C4B8EB-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46042338-A547-4CD4-8769-E4D91240F417-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46769B0D-4861-495C-8C0F-D901F4D12F32-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/D514F1F3-02AD-4600-B09A-9BFEAA767E13-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/1ACB0C32-A9B7-4030-9C53-18E4A91EA4B6-scaled.webp,08/12/2023 14:41,14.0:39,15.0:39,43.8410870000000,-1.37420600000000,,Moliets et Maa,63281,Observation #63281,https://biolit.fr/observations/observation-63281/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46769B0D-4861-495C-8C0F-D901F4D12F32-scaled.webp,,, +N1,63285,Sortie #63285,https://biolit.fr/sorties/sortie-63285/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2023/08/1692019919639-scaled.webp,8/14/2023 15:35,10.0000000,12.0000000,42.53562,3.067062,,Criques de Porteils,,,,,,,,,, +N1,63288,Sortie #63288,https://biolit.fr/sorties/sortie-63288/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2023/08/1692019919639-1-scaled.webp,8/14/2023 15:41,10.0000000,12.0000000,42.5350250000000,3.064645000000,,Criques de Porteils - Argelès-sur-mer,63290,Observation #63290,https://biolit.fr/observations/observation-63290/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2023/08/1692019919639-1-scaled.webp,,,non-identifiable +N1,63292,Sortie #63292,https://biolit.fr/sorties/sortie-63292/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2023/08/1692019919639-2-scaled.webp,8/14/2023 15:45,10.0000000,12.0000000,42.5348020000000,3.06449900000000,,Criques de Porteils - Argelès-sur-mer,63294,Observation #63294,https://biolit.fr/observations/observation-63294/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2023/08/1692019919639-2-scaled.webp,,,non-identifiable +N1,63313,Sortie #63313,https://biolit.fr/sorties/sortie-63313/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2023/08/WhatsApp-Image-2023-08-14-at-14.05.18-jpeg.webp,8/18/2023 11:18,17.0000000,19.0000000,42.7666940000000,3.03857600000000,LABELBLEU,Plage de Torreilles,,,,,,,,,, +N1,63319,Sortie #63319,https://biolit.fr/sorties/sortie-63319/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2023/08/1692019919639-3-scaled.webp,8/22/2023 14:07,10.0000000,12.0000000,42.5350600000000,3.06445600000000,,Criques de Porteils - Argelès-sur-mer,63321,Observation #63321,https://biolit.fr/observations/observation-63321/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2023/08/1692019919639-3-scaled.webp,,,non-identifiable +N1,63324,Sortie #63324,https://biolit.fr/sorties/sortie-63324/,barthe sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/2A5693E0-6244-436C-BBB7-ACE9FE45A779-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/78D50526-5239-4B96-8221-810CC43F0BE8-scaled.webp,8/25/2023 11:17,14.0:14,15.0:14,43.8409240000000,-1.37426700000000,,Étang blanc,,,,,,,,,, +N1,63340,Sortie #63340,https://biolit.fr/sorties/sortie-63340/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2023/08/observationBiolit2023-jpeg.webp,8/30/2023 9:17,17.0000000,17.0:45,42.7299250000000,3.03848800000000,LABELBLEU,Plage de Sainte-Marie-la-Mer,63342,Observation #63342,https://biolit.fr/observations/observation-63342/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2023/08/observationBiolit2023-jpeg.webp,,,non-identifiable +N1,63356,Sortie #63356,https://biolit.fr/sorties/sortie-63356/,Céline,https://biolit.fr/wp-content/uploads/jet-form-builder/a124436f212872e36bd7cc12bfe0fd03/2023/09/IMG_7401-scaled.webp,09/02/2023 13:09,13.000005,13.000008,43.202389000000,5.50921400000000,,Calanque port pin,,,,,,,,,, +N1,63359,Sortie #63359,https://biolit.fr/sorties/sortie-63359/,Céline,https://biolit.fr/wp-content/uploads/jet-form-builder/a124436f212872e36bd7cc12bfe0fd03/2023/09/IMG_7413-scaled.webp,09/02/2023 14:44,13.0:43,13.0000000,43.2015410000000,5.50784100000000,,Calanque port pin,63361,Observation #63361,https://biolit.fr/observations/observation-63361/,Chrysaora hysoscella,Méduse rayonnée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a124436f212872e36bd7cc12bfe0fd03/2023/09/IMG_7413-scaled.webp,,TRUE,Identifiable +N1,63374,Sortie #63374,https://biolit.fr/sorties/sortie-63374/,Belard Loïc,https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat1-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat2-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat3-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat4-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat5-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat6-scaled.webp,09/05/2023 11:19,9.0:45,15.0:45,47.4,-2.9667,,Ile de Houat,63376,Observation #63376,https://biolit.fr/observations/observation-63376/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat3-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat4-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat5-scaled.webp,,,Identifiable +N1,63374,Sortie #63374,https://biolit.fr/sorties/sortie-63374/,Belard Loïc,https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat1-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat2-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat3-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat4-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat5-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat6-scaled.webp,09/05/2023 11:19,9.0:45,15.0:45,47.4,-2.9667,,Ile de Houat,63377,Observation #63377,https://biolit.fr/observations/observation-63377/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat4-scaled.webp,,,Identifiable +N1,63374,Sortie #63374,https://biolit.fr/sorties/sortie-63374/,Belard Loïc,https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat1-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat2-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat3-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat4-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat5-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat6-scaled.webp,09/05/2023 11:19,9.0:45,15.0:45,47.4,-2.9667,,Ile de Houat,63378,Observation #63378,https://biolit.fr/observations/observation-63378/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat5-scaled.webp,,,Identifiable +N1,63374,Sortie #63374,https://biolit.fr/sorties/sortie-63374/,Belard Loïc,https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat1-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat2-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat3-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat4-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat5-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat6-scaled.webp,09/05/2023 11:19,9.0:45,15.0:45,47.4,-2.9667,,Ile de Houat,63379,Observation #63379,https://biolit.fr/observations/observation-63379/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat6-scaled.webp,,,Identifiable +N1,63374,Sortie #63374,https://biolit.fr/sorties/sortie-63374/,Belard Loïc,https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat1-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat2-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat3-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat4-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat5-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat6-scaled.webp,09/05/2023 11:19,9.0:45,15.0:45,47.4,-2.9667,,Ile de Houat,63380,Observation #63380,https://biolit.fr/observations/observation-63380/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat2-scaled.webp,,,Identifiable +N1,63374,Sortie #63374,https://biolit.fr/sorties/sortie-63374/,Belard Loïc,https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat1-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat2-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat3-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat4-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat5-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat6-scaled.webp,09/05/2023 11:19,9.0:45,15.0:45,47.4,-2.9667,,Ile de Houat,63381,Observation #63381,https://biolit.fr/observations/observation-63381/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat1-scaled.webp,,,Identifiable +N1,63440,Sortie #63440,https://biolit.fr/sorties/sortie-63440/,Institut Marin du Seaquarium,https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/IMG_20230822_121230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094059812.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094116588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094140671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094131022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094138022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094107209-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094112479-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094134057-scaled.jpg,09/06/2023 14:50,9.0000000,11.0000000,43.5261170000000,4.13839100000000,Institut Marin du Seaquarium,Le Grau du Roi,63443,Observation #63443,https://biolit.fr/observations/observation-63443/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094134057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094107209-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094138022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094131022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094140671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094059812.MP_-scaled.jpg,,,Identifiable +N1,63440,Sortie #63440,https://biolit.fr/sorties/sortie-63440/,Institut Marin du Seaquarium,https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/IMG_20230822_121230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094059812.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094116588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094140671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094131022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094138022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094107209-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094112479-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094134057-scaled.jpg,09/06/2023 14:50,9.0000000,11.0000000,43.5261170000000,4.13839100000000,Institut Marin du Seaquarium,Le Grau du Roi,63444,Observation #63444,https://biolit.fr/observations/observation-63444/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094116588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094112479-scaled.jpg,,FALSE,Identifiable +N1,63440,Sortie #63440,https://biolit.fr/sorties/sortie-63440/,Institut Marin du Seaquarium,https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/IMG_20230822_121230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094059812.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094116588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094140671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094131022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094138022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094107209-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094112479-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094134057-scaled.jpg,09/06/2023 14:50,9.0000000,11.0000000,43.5261170000000,4.13839100000000,Institut Marin du Seaquarium,Le Grau du Roi,63445,Observation #63445,https://biolit.fr/observations/observation-63445/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/IMG_20230822_121230-scaled.jpg,,,non-identifiable +N1,63447,Sortie #63447,https://biolit.fr/sorties/sortie-63447/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Biolit-gornevez-scaled.jpg,09/06/2023 15:06,10.0000000,11.0000000,47.6096690000000,-2.74778400000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),gornevez,,,,,,,,,, +N1,63452,Sortie #63452,https://biolit.fr/sorties/sortie-63452/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/IMG_0006.jpg,09/06/2023 15:15,15.0:14,17.0:14,47.5132910000000,-2.53531500000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),gornevez,,,,,,,,,, +N1,63455,Sortie #63455,https://biolit.fr/sorties/sortie-63455/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/IMG_0005.jpg,09/06/2023 15:20,15.0:14,17.0:14,47.5132910000000,-2.53531500000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),gornevez,,,,,,,,,, +N1,63458,Sortie #63458,https://biolit.fr/sorties/sortie-63458/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/P1020633-scaled.jpg,09/06/2023 15:38,10.0000000,11.0000000,47.697747000000,-2.74658200000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),gornevez,,,,,,,,,, +N1,63483,Sortie #63483,https://biolit.fr/sorties/sortie-63483/,DUFOUR Valérie,https://biolit.fr/wp-content/uploads/jet-form-builder/25341b7f91ca4b7f72ba931afce69878/2023/09/16940927004953521011640366950769-scaled.jpg,09/07/2023 15:18,15.0:18,15.0:18,44.6022680000000,-3.34022300000000,,,,,,,,,,,, +N1,63499,Sortie #63499,https://biolit.fr/sorties/sortie-63499/,Allory Pierre-Yves,https://biolit.fr/wp-content/uploads/jet-form-builder/c18157d07e1278e5f88893fd571eb7bf/2023/09/IMG20230909115954-scaled.jpg,09/09/2023 12:00,12.000001,12.000001,48.6362950,-2.2556290,,Grande plage,63501,Observation #63501,https://biolit.fr/observations/observation-63501/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c18157d07e1278e5f88893fd571eb7bf/2023/09/IMG20230909115954-scaled.jpg,,FALSE,Identifiable +N1,63520,Sortie #63520,https://biolit.fr/sorties/sortie-63520/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2371-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2375-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2376-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2379-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2381-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2383-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2384-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2390-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2391-scaled.jpg,09/10/2023 9:49,10.0000000,13.0000000,42.7666450000000,3.03841700000000,Planète Mer,Torreilles plage,63522,Observation #63522,https://biolit.fr/observations/observation-63522/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2371-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2375-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2376-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2379-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2381-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2383-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2384-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2390-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2391-scaled.jpg,,,Ne sais pas +N1,63520,Sortie #63520,https://biolit.fr/sorties/sortie-63520/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2371-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2375-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2376-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2379-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2381-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2383-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2384-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2390-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2391-scaled.jpg,09/10/2023 9:49,10.0000000,13.0000000,42.7666450000000,3.03841700000000,Planète Mer,Torreilles plage,63523,Observation #63523,https://biolit.fr/observations/observation-63523/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2371-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2375-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2376-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2379-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2381-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2383-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2384-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2390-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2391-scaled.jpg,,,Ne sais pas +N1,63520,Sortie #63520,https://biolit.fr/sorties/sortie-63520/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2371-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2375-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2376-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2379-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2381-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2383-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2384-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2390-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2391-scaled.jpg,09/10/2023 9:49,10.0000000,13.0000000,42.7666450000000,3.03841700000000,Planète Mer,Torreilles plage,63524,Observation #63524,https://biolit.fr/observations/observation-63524/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2371-scaled.jpg,,,Ne sais pas +N1,63520,Sortie #63520,https://biolit.fr/sorties/sortie-63520/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2371-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2375-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2376-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2379-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2381-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2383-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2384-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2390-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2391-scaled.jpg,09/10/2023 9:49,10.0000000,13.0000000,42.7666450000000,3.03841700000000,Planète Mer,Torreilles plage,63525,Observation #63525,https://biolit.fr/observations/observation-63525/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2371-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2383-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2384-scaled.jpg,,,Ne sais pas +N1,63538,Sortie #63538,https://biolit.fr/sorties/sortie-63538/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2392-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2394-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2396-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2398-scaled.jpg,09/10/2023 10:05,10.0000000,13.0000000,42.7666830000000,3.03896400000000,Planète Mer,Torreilles plage,63540,Observation #63540,https://biolit.fr/observations/observation-63540/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-1-scaled.jpg,,,Ne sais pas +N1,63538,Sortie #63538,https://biolit.fr/sorties/sortie-63538/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2392-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2394-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2396-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2398-scaled.jpg,09/10/2023 10:05,10.0000000,13.0000000,42.7666830000000,3.03896400000000,Planète Mer,Torreilles plage,63541,Observation #63541,https://biolit.fr/observations/observation-63541/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-1-scaled.jpg,,,Ne sais pas +N1,63538,Sortie #63538,https://biolit.fr/sorties/sortie-63538/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2392-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2394-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2396-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2398-scaled.jpg,09/10/2023 10:05,10.0000000,13.0000000,42.7666830000000,3.03896400000000,Planète Mer,Torreilles plage,63542,Observation #63542,https://biolit.fr/observations/observation-63542/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-1-scaled.jpg,,,Ne sais pas +N1,63538,Sortie #63538,https://biolit.fr/sorties/sortie-63538/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2392-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2394-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2396-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2398-scaled.jpg,09/10/2023 10:05,10.0000000,13.0000000,42.7666830000000,3.03896400000000,Planète Mer,Torreilles plage,63543,Observation #63543,https://biolit.fr/observations/observation-63543/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-1-scaled.jpg,,,Ne sais pas +N1,63538,Sortie #63538,https://biolit.fr/sorties/sortie-63538/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2392-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2394-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2396-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2398-scaled.jpg,09/10/2023 10:05,10.0000000,13.0000000,42.7666830000000,3.03896400000000,Planète Mer,Torreilles plage,63544,Observation #63544,https://biolit.fr/observations/observation-63544/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-1-scaled.jpg,,,Ne sais pas +N1,63538,Sortie #63538,https://biolit.fr/sorties/sortie-63538/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2392-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2394-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2396-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2398-scaled.jpg,09/10/2023 10:05,10.0000000,13.0000000,42.7666830000000,3.03896400000000,Planète Mer,Torreilles plage,63545,Observation #63545,https://biolit.fr/observations/observation-63545/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-1-scaled.jpg,,,Ne sais pas +N1,63538,Sortie #63538,https://biolit.fr/sorties/sortie-63538/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2392-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2394-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2396-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2398-scaled.jpg,09/10/2023 10:05,10.0000000,13.0000000,42.7666830000000,3.03896400000000,Planète Mer,Torreilles plage,63546,Observation #63546,https://biolit.fr/observations/observation-63546/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-1-scaled.jpg,,,Ne sais pas +N1,63538,Sortie #63538,https://biolit.fr/sorties/sortie-63538/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2392-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2394-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2396-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2398-scaled.jpg,09/10/2023 10:05,10.0000000,13.0000000,42.7666830000000,3.03896400000000,Planète Mer,Torreilles plage,63547,Observation #63547,https://biolit.fr/observations/observation-63547/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-1-scaled.jpg,,,Ne sais pas +N1,63538,Sortie #63538,https://biolit.fr/sorties/sortie-63538/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2392-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2394-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2396-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2398-scaled.jpg,09/10/2023 10:05,10.0000000,13.0000000,42.7666830000000,3.03896400000000,Planète Mer,Torreilles plage,63548,Observation #63548,https://biolit.fr/observations/observation-63548/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2392-scaled.jpg,,,Ne sais pas +N1,63538,Sortie #63538,https://biolit.fr/sorties/sortie-63538/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2392-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2394-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2396-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2398-scaled.jpg,09/10/2023 10:05,10.0000000,13.0000000,42.7666830000000,3.03896400000000,Planète Mer,Torreilles plage,63549,Observation #63549,https://biolit.fr/observations/observation-63549/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2394-scaled.jpg,,,Ne sais pas +N1,63538,Sortie #63538,https://biolit.fr/sorties/sortie-63538/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2392-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2394-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2396-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2398-scaled.jpg,09/10/2023 10:05,10.0000000,13.0000000,42.7666830000000,3.03896400000000,Planète Mer,Torreilles plage,63550,Observation #63550,https://biolit.fr/observations/observation-63550/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2396-scaled.jpg,,,Ne sais pas +N1,63538,Sortie #63538,https://biolit.fr/sorties/sortie-63538/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2392-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2394-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2396-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2398-scaled.jpg,09/10/2023 10:05,10.0000000,13.0000000,42.7666830000000,3.03896400000000,Planète Mer,Torreilles plage,63551,Observation #63551,https://biolit.fr/observations/observation-63551/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2398-scaled.jpg,,,Ne sais pas +N1,63565,Sortie #63565,https://biolit.fr/sorties/sortie-63565/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2416-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2419-scaled.jpg,09/10/2023 10:12,10.0000000,13.0000000,42.7665530000000,3.03842800000000,Planète Mer,Torreilles plage,63567,Observation #63567,https://biolit.fr/observations/observation-63567/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2401-scaled.jpg,,,Ne sais pas +N1,63565,Sortie #63565,https://biolit.fr/sorties/sortie-63565/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2416-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2419-scaled.jpg,09/10/2023 10:12,10.0000000,13.0000000,42.7665530000000,3.03842800000000,Planète Mer,Torreilles plage,63568,Observation #63568,https://biolit.fr/observations/observation-63568/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2403-scaled.jpg,,,Ne sais pas +N1,63565,Sortie #63565,https://biolit.fr/sorties/sortie-63565/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2416-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2419-scaled.jpg,09/10/2023 10:12,10.0000000,13.0000000,42.7665530000000,3.03842800000000,Planète Mer,Torreilles plage,63569,Observation #63569,https://biolit.fr/observations/observation-63569/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2405-scaled.jpg,,,Ne sais pas +N1,63565,Sortie #63565,https://biolit.fr/sorties/sortie-63565/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2416-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2419-scaled.jpg,09/10/2023 10:12,10.0000000,13.0000000,42.7665530000000,3.03842800000000,Planète Mer,Torreilles plage,63570,Observation #63570,https://biolit.fr/observations/observation-63570/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2406-scaled.jpg,,,Ne sais pas +N1,63565,Sortie #63565,https://biolit.fr/sorties/sortie-63565/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2416-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2419-scaled.jpg,09/10/2023 10:12,10.0000000,13.0000000,42.7665530000000,3.03842800000000,Planète Mer,Torreilles plage,63571,Observation #63571,https://biolit.fr/observations/observation-63571/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2407-scaled.jpg,,,Ne sais pas +N1,63565,Sortie #63565,https://biolit.fr/sorties/sortie-63565/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2416-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2419-scaled.jpg,09/10/2023 10:12,10.0000000,13.0000000,42.7665530000000,3.03842800000000,Planète Mer,Torreilles plage,63572,Observation #63572,https://biolit.fr/observations/observation-63572/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2411-scaled.jpg,,,Ne sais pas +N1,63565,Sortie #63565,https://biolit.fr/sorties/sortie-63565/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2416-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2419-scaled.jpg,09/10/2023 10:12,10.0000000,13.0000000,42.7665530000000,3.03842800000000,Planète Mer,Torreilles plage,63573,Observation #63573,https://biolit.fr/observations/observation-63573/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2412-scaled.jpg,,,Ne sais pas +N1,63565,Sortie #63565,https://biolit.fr/sorties/sortie-63565/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2416-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2419-scaled.jpg,09/10/2023 10:12,10.0000000,13.0000000,42.7665530000000,3.03842800000000,Planète Mer,Torreilles plage,63574,Observation #63574,https://biolit.fr/observations/observation-63574/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2414-scaled.jpg,,,Ne sais pas +N1,63565,Sortie #63565,https://biolit.fr/sorties/sortie-63565/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2416-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2419-scaled.jpg,09/10/2023 10:12,10.0000000,13.0000000,42.7665530000000,3.03842800000000,Planète Mer,Torreilles plage,63575,Observation #63575,https://biolit.fr/observations/observation-63575/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2401-scaled.jpg,,,Ne sais pas +N1,63565,Sortie #63565,https://biolit.fr/sorties/sortie-63565/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2416-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2419-scaled.jpg,09/10/2023 10:12,10.0000000,13.0000000,42.7665530000000,3.03842800000000,Planète Mer,Torreilles plage,63576,Observation #63576,https://biolit.fr/observations/observation-63576/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2416-scaled.jpg,,TRUE,non-identifiable +N1,63565,Sortie #63565,https://biolit.fr/sorties/sortie-63565/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2416-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2419-scaled.jpg,09/10/2023 10:12,10.0000000,13.0000000,42.7665530000000,3.03842800000000,Planète Mer,Torreilles plage,63577,Observation #63577,https://biolit.fr/observations/observation-63577/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2417-scaled.jpg,,,Ne sais pas +N1,63565,Sortie #63565,https://biolit.fr/sorties/sortie-63565/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2416-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2419-scaled.jpg,09/10/2023 10:12,10.0000000,13.0000000,42.7665530000000,3.03842800000000,Planète Mer,Torreilles plage,63578,Observation #63578,https://biolit.fr/observations/observation-63578/,Opuntia ficus,Figuier de barbarie,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2418-scaled.jpg,,TRUE,Ne sais pas +N1,63565,Sortie #63565,https://biolit.fr/sorties/sortie-63565/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2416-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2419-scaled.jpg,09/10/2023 10:12,10.0000000,13.0000000,42.7665530000000,3.03842800000000,Planète Mer,Torreilles plage,63579,Observation #63579,https://biolit.fr/observations/observation-63579/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2419-scaled.jpg,,,Ne sais pas +N1,63584,Sortie #63584,https://biolit.fr/sorties/sortie-63584/,BLOT PHILIPPE,https://biolit.fr/wp-content/uploads/jet-form-builder/598328d678dbd595062aa73641b22359/2023/09/IMG_1872-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/598328d678dbd595062aa73641b22359/2023/09/IMG_1883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/598328d678dbd595062aa73641b22359/2023/09/IMG_1865-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/598328d678dbd595062aa73641b22359/2023/09/IMG_1866-scaled.jpeg,09/10/2023 16:59,17.0000000,18.0000000,43.4604440000000,3.82023800000000,,plage des ARESQUIERS,,,,,,,,,, +N1,63665,Sortie #63665,https://biolit.fr/sorties/sortie-63665/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/09/IMG_0074-scaled.jpg,09/12/2023 11:10,19.0000000,20.0000000,47.8922830000000,-3.96569800000000,Planète Mer (antenne Dinard),Plovan,,,,,,,,,, +N1,63803,Sortie #63803,https://biolit.fr/sorties/sortie-63803/,marinette29,https://biolit.fr/wp-content/uploads/jet-form-builder/1e9bcfb9a23f4fd3537fcdc6117ddff0/2023/09/DSCF0118-scaled.jpg,9/16/2023 12:50,12.0000000,14.0000000,47.7921770000000,-4.22318000000000,,"Goudoul, Lesconil",63805,Observation #63805,https://biolit.fr/observations/observation-63805/,Luidia ciliaris,Etoile à sept bras,,https://biolit.fr/wp-content/uploads/jet-form-builder/1e9bcfb9a23f4fd3537fcdc6117ddff0/2023/09/DSCF0118-scaled.jpg,,TRUE,Identifiable +N1,63818,Sortie #63818,https://biolit.fr/sorties/sortie-63818/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/B0A99063-7F96-47C2-B3EB-E2C2FF8E486E-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/1D3E568D-EDF4-4491-9306-8A4F2F859B81-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/370F4FD9-0FED-4BAC-902A-0B6322C47718-scaled.jpeg,9/18/2023 15:40,17.0:45,17.0:55,43,6,,Port-Grimaud petite plage,63820,Observation #63820,https://biolit.fr/observations/observation-63820/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/1D3E568D-EDF4-4491-9306-8A4F2F859B81-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/370F4FD9-0FED-4BAC-902A-0B6322C47718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/B0A99063-7F96-47C2-B3EB-E2C2FF8E486E-scaled.jpeg,,TRUE,Identifiable +N1,63826,Sortie #63826,https://biolit.fr/sorties/sortie-63826/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/C0829A33-7BA0-4FC9-BCA8-5C8C142EF3F7-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/AE78A536-4B61-41C5-99A1-9E23469A1CED-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/89A781BB-A656-4DE9-925D-9933C0DAEE59-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/1A8EB8B3-1DBA-4F92-A153-363549B3E15C-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/9BCFBF9B-22C7-4EFD-8E30-E009AE192AE3-scaled.jpeg,9/18/2023 15:50,13.0:25,13.0000000,43,6,,Port-Grimaud petite plage,63828,Observation #63828,https://biolit.fr/observations/observation-63828/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/C0829A33-7BA0-4FC9-BCA8-5C8C142EF3F7-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/AE78A536-4B61-41C5-99A1-9E23469A1CED-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/89A781BB-A656-4DE9-925D-9933C0DAEE59-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/1A8EB8B3-1DBA-4F92-A153-363549B3E15C-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/9BCFBF9B-22C7-4EFD-8E30-E009AE192AE3-scaled.jpeg,,TRUE,Identifiable +N1,63833,Sortie #63833,https://biolit.fr/sorties/sortie-63833/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/B9A7FE35-10B6-4AC3-A486-857588C897CD-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/93234066-25E8-4ADB-93F0-00262B7ACDE9-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/3D4883C9-670B-4139-A46E-901968DC5821-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/7093B827-5CCA-4B80-B27B-77EFFE86D3E2-scaled.jpeg,9/18/2023 17:22,13.0:21,13.0:28,43.2704620000000,6.58553100000000,,Port-Grimaud 2 petite plage,63836,Observation #63836,https://biolit.fr/observations/observation-63836/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/B9A7FE35-10B6-4AC3-A486-857588C897CD-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/93234066-25E8-4ADB-93F0-00262B7ACDE9-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/3D4883C9-670B-4139-A46E-901968DC5821-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/7093B827-5CCA-4B80-B27B-77EFFE86D3E2-scaled.jpeg,,TRUE,Identifiable +N1,63883,Sortie #63883,https://biolit.fr/sorties/sortie-63883/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/09/IMG_1195.jpeg,9/19/2023 10:47,14.0000000,18.0000000,48.6405230000000,-2.07306500000000,Planète Mer (antenne Dinard),Saint-Enogat,63885,Observation #63885,https://biolit.fr/observations/observation-63885/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/09/IMG_1195.jpeg,,TRUE,Identifiable +N1,63926,Sortie #63926,https://biolit.fr/sorties/sortie-63926/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/A45B6F8F-94DB-48A8-97E8-C014BFE4E14A-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/2E970398-ACF8-4298-9E2B-EC8D1701B43C-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/E2B19928-F5E5-4D59-A4F8-BE3D448D6298-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/F0D18396-0A6B-41B5-992E-1D80D8DB8032-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/737FD393-34CB-4F78-9A7F-9D8E48203147-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/0609586B-2B0D-4DB4-B2C3-0CB318585BF0-scaled.jpeg,9/19/2023 19:53,18.000005,18.0000000,43.2704620000000,6.58546700000000,,Port-Grimaud petite plage sud,63928,Observation #63928,https://biolit.fr/observations/observation-63928/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/A45B6F8F-94DB-48A8-97E8-C014BFE4E14A-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/2E970398-ACF8-4298-9E2B-EC8D1701B43C-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/E2B19928-F5E5-4D59-A4F8-BE3D448D6298-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/F0D18396-0A6B-41B5-992E-1D80D8DB8032-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/737FD393-34CB-4F78-9A7F-9D8E48203147-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/0609586B-2B0D-4DB4-B2C3-0CB318585BF0-scaled.jpeg,,TRUE,Identifiable +N1,63933,Sortie #63933,https://biolit.fr/sorties/sortie-63933/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/52716DC6-8FB5-4E5C-8C6A-4F3B1A358E6E-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/F2CD2CE4-FA51-4C5D-80E6-889654D7CC30-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/8DE6EE8F-79BB-4930-9872-517F3092EC09-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/8C739BE3-4B41-4F7F-8C4A-9F35E203630F-scaled.jpeg,9/19/2023 20:00,13.0:45,13.0000000,43.270353000000,6.58553100000000,,Port-Grimaud petite plage sud,63935,Observation #63935,https://biolit.fr/observations/observation-63935/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/52716DC6-8FB5-4E5C-8C6A-4F3B1A358E6E-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/F2CD2CE4-FA51-4C5D-80E6-889654D7CC30-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/8DE6EE8F-79BB-4930-9872-517F3092EC09-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/8C739BE3-4B41-4F7F-8C4A-9F35E203630F-scaled.jpeg,,TRUE,Identifiable +N1,63942,Sortie #63942,https://biolit.fr/sorties/sortie-63942/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/241D1580-0DA0-433D-96C0-96BD6E66996A-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/1308B37B-7693-4008-AB1D-108B2BDF2578-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/9FEA45F5-AB33-470F-9CAD-B46DE3E99356-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/440FBE50-5E24-4E91-8620-F67BF04EAB92-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/AA3609CC-BCAB-42AC-BC9C-23895D307E69-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/B778C826-856D-4DB0-A86B-6244439C96DC-scaled.jpeg,9/19/2023 21:33,17.0000000,18.0000000,43.2701940000000,6.58543500000000,,Port-Grimaud petite plage sud,63944,Observation #63944,https://biolit.fr/observations/observation-63944/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/9FEA45F5-AB33-470F-9CAD-B46DE3E99356-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/440FBE50-5E24-4E91-8620-F67BF04EAB92-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/AA3609CC-BCAB-42AC-BC9C-23895D307E69-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/B778C826-856D-4DB0-A86B-6244439C96DC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/1308B37B-7693-4008-AB1D-108B2BDF2578-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/241D1580-0DA0-433D-96C0-96BD6E66996A-scaled.jpeg,,TRUE,Identifiable +N1,63950,Sortie #63950,https://biolit.fr/sorties/sortie-63950/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/2E68F6FD-3012-449E-9246-0673A891A927-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/366CD252-375D-451B-B3CA-20C3DA6DBB93-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/6E8BBD8F-9864-403D-8C82-8E7ECE03C99A-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/EFA12C0B-7FEA-49A0-BC74-F88F0D568796-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/A1B9AA02-1035-4780-A4DF-8E3D886319F9-scaled.jpeg,9/19/2023 21:44,13.0000000,13.0000000,43.2702750000000,6.58540200000000,,Port-Grimaud petite plage sud,63952,Observation #63952,https://biolit.fr/observations/observation-63952/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/2E68F6FD-3012-449E-9246-0673A891A927-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/366CD252-375D-451B-B3CA-20C3DA6DBB93-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/6E8BBD8F-9864-403D-8C82-8E7ECE03C99A-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/EFA12C0B-7FEA-49A0-BC74-F88F0D568796-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/A1B9AA02-1035-4780-A4DF-8E3D886319F9-scaled.jpeg,,TRUE,Identifiable +N1,63963,Sortie #63963,https://biolit.fr/sorties/sortie-63963/,Andrietti Antoine,https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090103-scaled.jpg,9/20/2023 11:50,9.0000000,9.000005,47.2590330000000,-2.41696800000000,,Le Pouliguen / Penchateau,63965,Observation #63965,https://biolit.fr/observations/observation-63965/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090113-scaled.jpg,,,Ne sais pas +N1,63963,Sortie #63963,https://biolit.fr/sorties/sortie-63963/,Andrietti Antoine,https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090103-scaled.jpg,9/20/2023 11:50,9.0000000,9.000005,47.2590330000000,-2.41696800000000,,Le Pouliguen / Penchateau,63966,Observation #63966,https://biolit.fr/observations/observation-63966/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090103-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090106-scaled.jpg,,,Ne sais pas +N1,63963,Sortie #63963,https://biolit.fr/sorties/sortie-63963/,Andrietti Antoine,https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090103-scaled.jpg,9/20/2023 11:50,9.0000000,9.000005,47.2590330000000,-2.41696800000000,,Le Pouliguen / Penchateau,63967,Observation #63967,https://biolit.fr/observations/observation-63967/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090310-scaled.jpg,,,Ne sais pas +N1,63963,Sortie #63963,https://biolit.fr/sorties/sortie-63963/,Andrietti Antoine,https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090103-scaled.jpg,9/20/2023 11:50,9.0000000,9.000005,47.2590330000000,-2.41696800000000,,Le Pouliguen / Penchateau,63968,Observation #63968,https://biolit.fr/observations/observation-63968/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090157-scaled.jpg,,,Ne sais pas +N1,63963,Sortie #63963,https://biolit.fr/sorties/sortie-63963/,Andrietti Antoine,https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090103-scaled.jpg,9/20/2023 11:50,9.0000000,9.000005,47.2590330000000,-2.41696800000000,,Le Pouliguen / Penchateau,63969,Observation #63969,https://biolit.fr/observations/observation-63969/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090146-scaled.jpg,,,Ne sais pas +N1,63963,Sortie #63963,https://biolit.fr/sorties/sortie-63963/,Andrietti Antoine,https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090103-scaled.jpg,9/20/2023 11:50,9.0000000,9.000005,47.2590330000000,-2.41696800000000,,Le Pouliguen / Penchateau,63970,Observation #63970,https://biolit.fr/observations/observation-63970/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090103-scaled.jpg,,,Ne sais pas +N1,63973,Sortie #63973,https://biolit.fr/sorties/sortie-63973/,Andrietti Antoine,https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230903_140206-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230903_140219-scaled.jpg,9/20/2023 11:58,14.000002,14.000003,47.2740570000000,-2.3995210000000,,LA BAULE,63975,Observation #63975,https://biolit.fr/observations/observation-63975/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230903_140206-scaled.jpg,,,Ne sais pas +N1,63973,Sortie #63973,https://biolit.fr/sorties/sortie-63973/,Andrietti Antoine,https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230903_140206-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230903_140219-scaled.jpg,9/20/2023 11:58,14.000002,14.000003,47.2740570000000,-2.3995210000000,,LA BAULE,63976,Observation #63976,https://biolit.fr/observations/observation-63976/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230903_140219-scaled.jpg,,,Identifiable +N1,64000,Sortie #64000,https://biolit.fr/sorties/sortie-64000/,LPO Occitanie - Aude,https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2023/09/IMG20230913101439-scaled.jpg,9/20/2023 17:40,9.0:15,10.000005,42.8883050000000,3.05209000000000,LPO Occitanie (Dt Aude),Maison de l'étang Leucate,64002,Observation #64002,https://biolit.fr/observations/observation-64002/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2023/09/IMG20230913101439-scaled.jpg,,TRUE,Identifiable +N1,64082,Sortie #64082,https://biolit.fr/sorties/sortie-64082/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/895B4704-74EF-4431-9948-850458FE985E-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/9A3B9638-F327-482A-805F-5C60AAADB9B6-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/5A7B6498-DFE8-4C69-A5F5-B163B5B641E7-scaled.jpeg,9/21/2023 22:29,13.0000000,13.0000000,43.2703050000000,6.58548300000000,,Port-Grimaud petite plage sud,64084,Observation #64084,https://biolit.fr/observations/observation-64084/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/895B4704-74EF-4431-9948-850458FE985E-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/9A3B9638-F327-482A-805F-5C60AAADB9B6-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/5A7B6498-DFE8-4C69-A5F5-B163B5B641E7-scaled.jpeg,,TRUE,Identifiable +N1,64088,Sortie #64088,https://biolit.fr/sorties/sortie-64088/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/F14A3D3E-BB8D-4BC7-ADE0-98A59EE06656-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/95D1B8B3-E02A-46E5-B39D-72135F518475-scaled.jpeg,9/21/2023 22:41,13.0000000,13.0000000,43.2704150000000,6.58548800000000,,Port-Grimaud petite plage sud,64092,Observation #64092,https://biolit.fr/observations/observation-64092/,Bosemprella incarnata,Telline rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/F14A3D3E-BB8D-4BC7-ADE0-98A59EE06656-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/95D1B8B3-E02A-46E5-B39D-72135F518475-scaled.jpeg,,TRUE,Identifiable +N1,64100,Sortie #64100,https://biolit.fr/sorties/sortie-64100/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/48C1AA79-41CE-469F-8778-E588C0AAF73E-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/BB0F6E1A-6D30-4E6A-9104-365AD67C9DFA-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/BE724F07-982C-4973-B6F5-B84570EE7421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/22A5E28C-6401-4D60-A6B9-27A3679BC1F6-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/9C7EFE47-C345-4B64-955A-121166786D25-scaled.jpeg,9/21/2023 22:59,13.0000000,13.0000000,43.2701970000000,6.58553100000000,,Port-Grimaud petite plage sud,64102,Observation #64102,https://biolit.fr/observations/observation-64102/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/48C1AA79-41CE-469F-8778-E588C0AAF73E-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/BB0F6E1A-6D30-4E6A-9104-365AD67C9DFA-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/BE724F07-982C-4973-B6F5-B84570EE7421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/9C7EFE47-C345-4B64-955A-121166786D25-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/22A5E28C-6401-4D60-A6B9-27A3679BC1F6-scaled.jpeg,,TRUE,Identifiable +N1,64109,Sortie #64109,https://biolit.fr/sorties/sortie-64109/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/51DD872D-6D35-487C-A454-D21CC0812AC9-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/AA7E5ADD-519D-48FF-9778-DFAA2B7A1CCE-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/51D709D2-CF8C-4837-9220-B32F69A6B1E4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/D7076ACB-9720-4DF2-8A99-7C865A8438D9-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/46356B03-EA57-4E07-B3FC-D67568D7031A-scaled.jpeg,9/21/2023 23:07,13.0000000,13.0000000,43.2700620000000,6.58583200000000,,Port-Grimaud petite plage sud,,,,,,,,,, +N1,64116,Sortie #64116,https://biolit.fr/sorties/sortie-64116/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/2CC91ADD-A2A4-433C-978B-9F63760006D0-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/C6E164A3-6569-4367-867D-90AB79AC8F93-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/DAA21940-CD8A-4C74-991A-B367E02F1B62-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/BA3E8960-04D8-4A87-A5C0-1EBBD9715468-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/21384E50-0658-491C-B3A0-86877A009B00-scaled.jpeg,9/21/2023 23:11,13.0000000,13.0000000,43.270353000000,6.58546700000000,,Port-Grimaud petite plage sud,64118,Observation #64118,https://biolit.fr/observations/observation-64118/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/2CC91ADD-A2A4-433C-978B-9F63760006D0-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/C6E164A3-6569-4367-867D-90AB79AC8F93-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/DAA21940-CD8A-4C74-991A-B367E02F1B62-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/BA3E8960-04D8-4A87-A5C0-1EBBD9715468-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/21384E50-0658-491C-B3A0-86877A009B00-scaled.jpeg,,TRUE,Identifiable +N1,64125,Sortie #64125,https://biolit.fr/sorties/sortie-64125/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/2ECD9400-0397-4CE2-AB13-5DCF6A19AA06-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/E708E3DB-CAF1-427F-8E3E-A01E427F8D40-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/F78F4F26-46A0-4C53-9383-A0814058E2EA-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/EB567CA1-E9ED-4D4D-A1A4-00D2A9BABA7A-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/66EF96CB-BD20-4837-9D76-61CD4C203A2A-scaled.jpeg,9/21/2023 23:21,13.0:25,13.0:35,43.2702180000000,6.58566000000000,,Port-Grimaud petite plage sud,64127,Observation #64127,https://biolit.fr/observations/observation-64127/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/2ECD9400-0397-4CE2-AB13-5DCF6A19AA06-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/E708E3DB-CAF1-427F-8E3E-A01E427F8D40-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/F78F4F26-46A0-4C53-9383-A0814058E2EA-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/EB567CA1-E9ED-4D4D-A1A4-00D2A9BABA7A-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/66EF96CB-BD20-4837-9D76-61CD4C203A2A-scaled.jpeg,,TRUE,Identifiable +N1,64135,Sortie #64135,https://biolit.fr/sorties/sortie-64135/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/D0DFF417-CB33-4671-A3BA-C2B236BF9289-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/C687C4D7-A598-45C3-95D5-D3651F590FF6-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/5D1F30A0-9AF3-4A98-83D0-DD651DA8DFDC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/A647A406-F7DE-48A2-BEC0-81C541B04428-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/1B12C69A-6283-45E4-B154-F2BB200B0DEF-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/BAA5D3C0-DE42-40FD-B159-10896DA05BEE-scaled.jpeg,9/21/2023 23:29,13.0:25,13.0000000,43.2704180000000,6.58484500000000,,Port-Grimaud petite plage sud,64137,Observation #64137,https://biolit.fr/observations/observation-64137/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/D0DFF417-CB33-4671-A3BA-C2B236BF9289-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/C687C4D7-A598-45C3-95D5-D3651F590FF6-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/5D1F30A0-9AF3-4A98-83D0-DD651DA8DFDC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/A647A406-F7DE-48A2-BEC0-81C541B04428-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/1B12C69A-6283-45E4-B154-F2BB200B0DEF-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/BAA5D3C0-DE42-40FD-B159-10896DA05BEE-scaled.jpeg,,TRUE,Identifiable +N1,64144,Sortie #64144,https://biolit.fr/sorties/sortie-64144/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/5DC53AC3-A67E-4F22-B0C3-A01FA1A8FDB1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/9FC92061-8539-47FB-B995-D94C486B12B8-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/B714034F-5EB6-498B-A92F-82BF9E97B8A4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/48DF3A8F-0C42-4E1F-B701-2B1D0EDF283E-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/B8E32A36-37FE-4476-A586-476A71951B6D-scaled.jpeg,9/21/2023 23:36,13.0:25,13.0000000,43.2701560000000,6.58570300000000,,Port-Grimaud petite plage sud,64146,Observation #64146,https://biolit.fr/observations/observation-64146/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/5DC53AC3-A67E-4F22-B0C3-A01FA1A8FDB1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/9FC92061-8539-47FB-B995-D94C486B12B8-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/B714034F-5EB6-498B-A92F-82BF9E97B8A4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/48DF3A8F-0C42-4E1F-B701-2B1D0EDF283E-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/B8E32A36-37FE-4476-A586-476A71951B6D-scaled.jpeg,,TRUE,Identifiable +N1,64157,Sortie #64157,https://biolit.fr/sorties/sortie-64157/,Allory Pierre-Yves,https://biolit.fr/wp-content/uploads/jet-form-builder/c18157d07e1278e5f88893fd571eb7bf/2023/09/Capture-decran-2023-09-22-a-14.56.37.png,9/22/2023 14:56,16.0:55,19.0:55,48.5571540000000,-4.74609400,,plage de la mare,64159,Observation #64159,https://biolit.fr/observations/observation-64159/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/c18157d07e1278e5f88893fd571eb7bf/2023/09/Capture-decran-2023-09-22-a-14.56.37.png,,TRUE,Identifiable +N1,64167,Sortie #64167,https://biolit.fr/sorties/sortie-64167/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q1-15-09-2023.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q1-bigorneau.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q2-15-09-2023.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q2-Littorine--scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/TEST-identificat°-2023-9-15-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/TEST-Observat°15-09-2023-scaled.jpg,9/23/2023 18:24,14.0000000,14.0000000,47.6128780000000,-2.75828100000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Cadouarn, Séné",64169,Observation #64169,https://biolit.fr/observations/observation-64169/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q1-bigorneau.jpeg,,TRUE,Identifiable +N1,64167,Sortie #64167,https://biolit.fr/sorties/sortie-64167/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q1-15-09-2023.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q1-bigorneau.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q2-15-09-2023.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q2-Littorine--scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/TEST-identificat°-2023-9-15-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/TEST-Observat°15-09-2023-scaled.jpg,9/23/2023 18:24,14.0000000,14.0000000,47.6128780000000,-2.75828100000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Cadouarn, Séné",64171,Observation #64171,https://biolit.fr/observations/observation-64171/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q2-Littorine--scaled.jpeg,,TRUE,Identifiable +N1,64167,Sortie #64167,https://biolit.fr/sorties/sortie-64167/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q1-15-09-2023.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q1-bigorneau.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q2-15-09-2023.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q2-Littorine--scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/TEST-identificat°-2023-9-15-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/TEST-Observat°15-09-2023-scaled.jpg,9/23/2023 18:24,14.0000000,14.0000000,47.6128780000000,-2.75828100000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Cadouarn, Séné",64173,Observation #64173,https://biolit.fr/?post_type=observations&p=64173,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q2-Littorine--scaled.jpeg,,,Identifiable +N1,64167,Sortie #64167,https://biolit.fr/sorties/sortie-64167/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q1-15-09-2023.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q1-bigorneau.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q2-15-09-2023.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q2-Littorine--scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/TEST-identificat°-2023-9-15-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/TEST-Observat°15-09-2023-scaled.jpg,9/23/2023 18:24,14.0000000,14.0000000,47.6128780000000,-2.75828100000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Cadouarn, Séné",64175,Observation #64175,https://biolit.fr/?post_type=observations&p=64175,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q2-Littorine--scaled.jpeg,,,Identifiable +N1,64178,Sortie #64178,https://biolit.fr/sorties/sortie-64178/,Fontaine Jean Daniel,https://biolit.fr/wp-content/uploads/jet-form-builder/076ae1239c93572da2893b01b4b3bfcc/2023/09/IMG_20230922_102036860_HDR_1-scaled.jpg,9/24/2023 7:40,8.0000000,14.0000000,-21.2446100,55.5281050,,Saint-Pierre,64180,Observation #64180,https://biolit.fr/observations/observation-64180/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/076ae1239c93572da2893b01b4b3bfcc/2023/09/IMG_20230922_102036860_HDR_1-scaled.jpg,,,Ne sais pas +N1,64183,Sortie #64183,https://biolit.fr/sorties/sortie-64183/,Fontaine Jean Daniel,https://biolit.fr/wp-content/uploads/jet-form-builder/076ae1239c93572da2893b01b4b3bfcc/2023/09/IMG_5321-scaled.jpg,9/24/2023 8:17,8.0000000,9.0000000,-21.2446220,55.5280920,,Saint-Pierre,64185,Observation #64185,https://biolit.fr/observations/observation-64185/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/076ae1239c93572da2893b01b4b3bfcc/2023/09/IMG_5321-scaled.jpg,,,Ne sais pas +N1,64188,Sortie #64188,https://biolit.fr/sorties/sortie-64188/,Fontaine Jean Daniel,https://biolit.fr/wp-content/uploads/jet-form-builder/076ae1239c93572da2893b01b4b3bfcc/2023/09/IMG_5325-scaled.jpg,9/24/2023 8:23,8.0000000,9.0000000,-21.2446220,55.5280920,,Saint-Pierre,64190,Observation #64190,https://biolit.fr/observations/observation-64190/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/076ae1239c93572da2893b01b4b3bfcc/2023/09/IMG_5325-scaled.jpg,,, +N1,64196,Sortie #64196,https://biolit.fr/sorties/sortie-64196/,Boyer Jean-Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5d4c3677430fb01be06d99a5f02da5d9/2023/09/IMG_21571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5d4c3677430fb01be06d99a5f02da5d9/2023/09/IMG_2162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5d4c3677430fb01be06d99a5f02da5d9/2023/09/IMG_2159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5d4c3677430fb01be06d99a5f02da5d9/2023/09/IMG_2160-scaled.jpg,9/24/2023 21:45,13.0000000,16.0000000,50.2143710000000,1.55365000000000,,Phare du Hourdel,64198,Observation #64198,https://biolit.fr/observations/observation-64198/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5d4c3677430fb01be06d99a5f02da5d9/2023/09/IMG_21571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5d4c3677430fb01be06d99a5f02da5d9/2023/09/IMG_2162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5d4c3677430fb01be06d99a5f02da5d9/2023/09/IMG_2159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5d4c3677430fb01be06d99a5f02da5d9/2023/09/IMG_2160-scaled.jpg,,,Identifiable +N1,64196,Sortie #64196,https://biolit.fr/sorties/sortie-64196/,Boyer Jean-Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5d4c3677430fb01be06d99a5f02da5d9/2023/09/IMG_21571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5d4c3677430fb01be06d99a5f02da5d9/2023/09/IMG_2162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5d4c3677430fb01be06d99a5f02da5d9/2023/09/IMG_2159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5d4c3677430fb01be06d99a5f02da5d9/2023/09/IMG_2160-scaled.jpg,9/24/2023 21:45,13.0000000,16.0000000,50.2143710000000,1.55365000000000,,Phare du Hourdel,64200,Observation #64200,https://biolit.fr/observations/observation-64200/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5d4c3677430fb01be06d99a5f02da5d9/2023/09/IMG_21571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5d4c3677430fb01be06d99a5f02da5d9/2023/09/IMG_2162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5d4c3677430fb01be06d99a5f02da5d9/2023/09/IMG_2159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5d4c3677430fb01be06d99a5f02da5d9/2023/09/IMG_2160-scaled.jpg,,,Identifiable +N1,64209,Sortie #64209,https://biolit.fr/sorties/sortie-64209/,Mias Caroline,https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/6-scaled.jpeg,9/25/2023 11:51,13.0000000,15.0000000,50.2168960000000,1.5700740000000,,Le hourdel,64211,Observation #64211,https://biolit.fr/observations/observation-64211/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/1-scaled.jpg,,,Ne sais pas +N1,64209,Sortie #64209,https://biolit.fr/sorties/sortie-64209/,Mias Caroline,https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/6-scaled.jpeg,9/25/2023 11:51,13.0000000,15.0000000,50.2168960000000,1.5700740000000,,Le hourdel,64213,Observation #64213,https://biolit.fr/observations/observation-64213/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/2-scaled.jpg,,,Ne sais pas +N1,64209,Sortie #64209,https://biolit.fr/sorties/sortie-64209/,Mias Caroline,https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/6-scaled.jpeg,9/25/2023 11:51,13.0000000,15.0000000,50.2168960000000,1.5700740000000,,Le hourdel,64215,Observation #64215,https://biolit.fr/observations/observation-64215/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/3-scaled.jpg,,,Ne sais pas +N1,64209,Sortie #64209,https://biolit.fr/sorties/sortie-64209/,Mias Caroline,https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/6-scaled.jpeg,9/25/2023 11:51,13.0000000,15.0000000,50.2168960000000,1.5700740000000,,Le hourdel,64217,Observation #64217,https://biolit.fr/observations/observation-64217/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/4-scaled.jpeg,,,Ne sais pas +N1,64209,Sortie #64209,https://biolit.fr/sorties/sortie-64209/,Mias Caroline,https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/6-scaled.jpeg,9/25/2023 11:51,13.0000000,15.0000000,50.2168960000000,1.5700740000000,,Le hourdel,64219,Observation #64219,https://biolit.fr/observations/observation-64219/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/5-scaled.jpg,,,Ne sais pas +N1,64209,Sortie #64209,https://biolit.fr/sorties/sortie-64209/,Mias Caroline,https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/6-scaled.jpeg,9/25/2023 11:51,13.0000000,15.0000000,50.2168960000000,1.5700740000000,,Le hourdel,64221,Observation #64221,https://biolit.fr/observations/observation-64221/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/6-scaled.jpeg,,,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64281,Observation #64281,https://biolit.fr/observations/observation-64281/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg,,,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64283,Observation #64283,https://biolit.fr/observations/observation-64283/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg,,,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64285,Observation #64285,https://biolit.fr/observations/observation-64285/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg,,,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64287,Observation #64287,https://biolit.fr/observations/observation-64287/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg,,,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64289,Observation #64289,https://biolit.fr/observations/observation-64289/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg,,TRUE,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64291,Observation #64291,https://biolit.fr/observations/observation-64291/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg,,TRUE,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64293,Observation #64293,https://biolit.fr/observations/observation-64293/,Aporrhais pespelecani,Pied de pélican commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg,,TRUE,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64295,Observation #64295,https://biolit.fr/observations/observation-64295/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg,,,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64297,Observation #64297,https://biolit.fr/observations/observation-64297/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg,,,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64299,Observation #64299,https://biolit.fr/observations/observation-64299/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg,,,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64301,Observation #64301,https://biolit.fr/observations/observation-64301/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg,,TRUE,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64303,Observation #64303,https://biolit.fr/observations/observation-64303/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg,,TRUE,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64305,Observation #64305,https://biolit.fr/observations/observation-64305/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg,,,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64307,Observation #64307,https://biolit.fr/observations/observation-64307/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg,,,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64309,Observation #64309,https://biolit.fr/observations/observation-64309/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg,,,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64311,Observation #64311,https://biolit.fr/observations/observation-64311/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg,,TRUE,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64313,Observation #64313,https://biolit.fr/observations/observation-64313/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg,,,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64315,Observation #64315,https://biolit.fr/observations/observation-64315/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg,,,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64317,Observation #64317,https://biolit.fr/observations/observation-64317/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,,,Ne sais pas +N1,64330,Sortie #64330,https://biolit.fr/sorties/sortie-64330/,BREHO JUSTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130804-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130834-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130915.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131013-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131707-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132327-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132704.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132834.jpg,9/27/2023 14:18,12.0000000,13.0000000,48.0916310000000,-4.2983380000000,,Douarnenez,64332,Observation #64332,https://biolit.fr/observations/observation-64332/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132327-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131707-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130915.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130804-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131013-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130834-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132704.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132834.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132749.jpg,,,Ne sais pas +N1,64330,Sortie #64330,https://biolit.fr/sorties/sortie-64330/,BREHO JUSTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130804-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130834-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130915.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131013-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131707-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132327-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132704.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132834.jpg,9/27/2023 14:18,12.0000000,13.0000000,48.0916310000000,-4.2983380000000,,Douarnenez,64336,Observation #64336,https://biolit.fr/observations/observation-64336/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130834-rotated.jpg,,TRUE,Ne sais pas +N1,64330,Sortie #64330,https://biolit.fr/sorties/sortie-64330/,BREHO JUSTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130804-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130834-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130915.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131013-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131707-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132327-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132704.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132834.jpg,9/27/2023 14:18,12.0000000,13.0000000,48.0916310000000,-4.2983380000000,,Douarnenez,64338,Observation #64338,https://biolit.fr/observations/observation-64338/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130915.jpg,,, +N1,64330,Sortie #64330,https://biolit.fr/sorties/sortie-64330/,BREHO JUSTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130804-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130834-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130915.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131013-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131707-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132327-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132704.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132834.jpg,9/27/2023 14:18,12.0000000,13.0000000,48.0916310000000,-4.2983380000000,,Douarnenez,64340,Observation #64340,https://biolit.fr/observations/observation-64340/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131013-rotated.jpg,,,Ne sais pas +N1,64330,Sortie #64330,https://biolit.fr/sorties/sortie-64330/,BREHO JUSTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130804-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130834-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130915.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131013-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131707-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132327-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132704.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132834.jpg,9/27/2023 14:18,12.0000000,13.0000000,48.0916310000000,-4.2983380000000,,Douarnenez,64342,Observation #64342,https://biolit.fr/observations/observation-64342/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132327-rotated.jpg,,TRUE, +N1,64330,Sortie #64330,https://biolit.fr/sorties/sortie-64330/,BREHO JUSTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130804-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130834-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130915.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131013-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131707-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132327-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132704.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132834.jpg,9/27/2023 14:18,12.0000000,13.0000000,48.0916310000000,-4.2983380000000,,Douarnenez,64344,Observation #64344,https://biolit.fr/observations/observation-64344/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132704.jpg,,, +N1,64330,Sortie #64330,https://biolit.fr/sorties/sortie-64330/,BREHO JUSTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130804-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130834-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130915.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131013-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131707-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132327-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132704.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132834.jpg,9/27/2023 14:18,12.0000000,13.0000000,48.0916310000000,-4.2983380000000,,Douarnenez,64346,Observation #64346,https://biolit.fr/observations/observation-64346/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132834.jpg,,, +N1,64356,Sortie #64356,https://biolit.fr/sorties/sortie-64356/,Juliette Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-1.jpg,9/27/2023 18:50,9.0000000,16.0000000,47.2674430000000,-2.3490360000000,,Plage des libraires,64358,Observation #64358,https://biolit.fr/observations/observation-64358/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-1.jpg,,TRUE,Ne sais pas +N1,64366,Sortie #64366,https://biolit.fr/sorties/sortie-64366/,Juliette Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-7.jpg,9/27/2023 18:55,9.0000000,16.0000000,47.2653330000000,-2.34617500000000,,Plage des libraires,64368,Observation #64368,https://biolit.fr/observations/observation-64368/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-2.jpg,,TRUE,Ne sais pas +N1,64366,Sortie #64366,https://biolit.fr/sorties/sortie-64366/,Juliette Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-7.jpg,9/27/2023 18:55,9.0000000,16.0000000,47.2653330000000,-2.34617500000000,,Plage des libraires,64370,Observation #64370,https://biolit.fr/observations/observation-64370/,Ensis ensis,Couteau-sabre,,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-3.jpg,,TRUE,Ne sais pas +N1,64366,Sortie #64366,https://biolit.fr/sorties/sortie-64366/,Juliette Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-7.jpg,9/27/2023 18:55,9.0000000,16.0000000,47.2653330000000,-2.34617500000000,,Plage des libraires,64372,Observation #64372,https://biolit.fr/observations/observation-64372/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-4.jpg,,TRUE,Ne sais pas +N1,64366,Sortie #64366,https://biolit.fr/sorties/sortie-64366/,Juliette Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-7.jpg,9/27/2023 18:55,9.0000000,16.0000000,47.2653330000000,-2.34617500000000,,Plage des libraires,64374,Observation #64374,https://biolit.fr/observations/observation-64374/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-5.jpg,,TRUE,Ne sais pas +N1,64366,Sortie #64366,https://biolit.fr/sorties/sortie-64366/,Juliette Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-7.jpg,9/27/2023 18:55,9.0000000,16.0000000,47.2653330000000,-2.34617500000000,,Plage des libraires,64376,Observation #64376,https://biolit.fr/observations/observation-64376/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-6.jpg,,TRUE, +N1,64366,Sortie #64366,https://biolit.fr/sorties/sortie-64366/,Juliette Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-7.jpg,9/27/2023 18:55,9.0000000,16.0000000,47.2653330000000,-2.34617500000000,,Plage des libraires,64378,Observation #64378,https://biolit.fr/observations/observation-64378/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-7.jpg,,TRUE,Ne sais pas +N1,64392,Sortie #64392,https://biolit.fr/sorties/sortie-64392/,briant karell,https://biolit.fr/wp-content/uploads/jet-form-builder/ccf23a11248cc67fba87dfa053dc8af9/2023/09/20230919_132717-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ccf23a11248cc67fba87dfa053dc8af9/2023/09/20230919_133047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ccf23a11248cc67fba87dfa053dc8af9/2023/09/20230919_133157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ccf23a11248cc67fba87dfa053dc8af9/2023/09/20230919_133218-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ccf23a11248cc67fba87dfa053dc8af9/2023/09/20230919_133945-scaled.jpg,9/28/2023 12:11,13.0000000,14.0000000,48.0908960000000,-4.30006400000000,,Plage du RIS à Douarnenez,64394,Observation #64394,https://biolit.fr/observations/observation-64394/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/ccf23a11248cc67fba87dfa053dc8af9/2023/09/20230919_133047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ccf23a11248cc67fba87dfa053dc8af9/2023/09/20230919_133157-scaled.jpg,,TRUE,Identifiable +N1,64392,Sortie #64392,https://biolit.fr/sorties/sortie-64392/,briant karell,https://biolit.fr/wp-content/uploads/jet-form-builder/ccf23a11248cc67fba87dfa053dc8af9/2023/09/20230919_132717-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ccf23a11248cc67fba87dfa053dc8af9/2023/09/20230919_133047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ccf23a11248cc67fba87dfa053dc8af9/2023/09/20230919_133157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ccf23a11248cc67fba87dfa053dc8af9/2023/09/20230919_133218-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ccf23a11248cc67fba87dfa053dc8af9/2023/09/20230919_133945-scaled.jpg,9/28/2023 12:11,13.0000000,14.0000000,48.0908960000000,-4.30006400000000,,Plage du RIS à Douarnenez,64396,Observation #64396,https://biolit.fr/observations/observation-64396/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/ccf23a11248cc67fba87dfa053dc8af9/2023/09/20230919_132717-scaled.jpg,,TRUE,Ne sais pas +N1,64402,Sortie #64402,https://biolit.fr/sorties/sortie-64402/,NEMARD SEVERINE,https://biolit.fr/wp-content/uploads/jet-form-builder/8fd81add05cc311222017b1804a45520/2023/09/20230919_132220-scaled.jpg,9/29/2023 10:38,12.0000000,14.0000000,48.0891200000000,-4.30578200000000,,DOUARNENEZ PLAGE DU RIS,64404,Observation #64404,https://biolit.fr/observations/observation-64404/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/8fd81add05cc311222017b1804a45520/2023/09/20230919_132220-scaled.jpg,,TRUE,Ne sais pas +N1,64437,Sortie #64437,https://biolit.fr/sorties/sortie-64437/,Magali LHOMMET CARPENTIER,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174804-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174839-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174914-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174920-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175706-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_180848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_180936-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_181816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_182313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_182327-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183337-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_184239-scaled.jpg,10/02/2023 9:24,17.0:41,18.0:42,49.8561790000000,0.608089000000000,,Veullettes sur mer - le pont rouge,,,,,,,,,, +N1,64445,Sortie #64445,https://biolit.fr/sorties/sortie-64445/,Magali LHOMMET CARPENTIER,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174145-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175744-1-scaled.jpg,10/02/2023 9:45,17.0:41,18.0:42,49.8559150000000,0.608454000000000,,Veullettes sur mer - le pont rouge,64447,Observation #64447,https://biolit.fr/observations/observation-64447/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174145-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175744-1-scaled.jpg,,TRUE,Identifiable +N1,64459,Sortie #64459,https://biolit.fr/sorties/sortie-64459/,Magali LHOMMET CARPENTIER,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174804-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175101-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175229-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175706-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183242-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183337-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-1-scaled.jpg,10/02/2023 10:09,17.0:41,18.0:42,49.8561730000000,0.607874000000000,,Veullettes sur mer - le pont rouge,64461,Observation #64461,https://biolit.fr/observations/observation-64461/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175101-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175229-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175706-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183242-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183337-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174804-1-scaled.jpg,,,Ne sais pas +N1,64459,Sortie #64459,https://biolit.fr/sorties/sortie-64459/,Magali LHOMMET CARPENTIER,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174804-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175101-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175229-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175706-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183242-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183337-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-1-scaled.jpg,10/02/2023 10:09,17.0:41,18.0:42,49.8561730000000,0.607874000000000,,Veullettes sur mer - le pont rouge,64463,Observation #64463,https://biolit.fr/observations/observation-64463/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174804-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175101-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175229-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175706-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183242-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183337-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-1-scaled.jpg,,,Ne sais pas +N1,64459,Sortie #64459,https://biolit.fr/sorties/sortie-64459/,Magali LHOMMET CARPENTIER,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174804-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175101-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175229-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175706-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183242-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183337-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-1-scaled.jpg,10/02/2023 10:09,17.0:41,18.0:42,49.8561730000000,0.607874000000000,,Veullettes sur mer - le pont rouge,64465,Observation #64465,https://biolit.fr/observations/observation-64465/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175229-1-scaled.jpg,,,non-identifiable +N1,64459,Sortie #64459,https://biolit.fr/sorties/sortie-64459/,Magali LHOMMET CARPENTIER,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174804-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175101-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175229-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175706-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183242-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183337-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-1-scaled.jpg,10/02/2023 10:09,17.0:41,18.0:42,49.8561730000000,0.607874000000000,,Veullettes sur mer - le pont rouge,64467,Observation #64467,https://biolit.fr/observations/observation-64467/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175706-1-scaled.jpg,,,Ne sais pas +N1,64459,Sortie #64459,https://biolit.fr/sorties/sortie-64459/,Magali LHOMMET CARPENTIER,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174804-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175101-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175229-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175706-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183242-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183337-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-1-scaled.jpg,10/02/2023 10:09,17.0:41,18.0:42,49.8561730000000,0.607874000000000,,Veullettes sur mer - le pont rouge,64469,Observation #64469,https://biolit.fr/observations/observation-64469/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183242-1-scaled.jpg,,,Ne sais pas +N1,64459,Sortie #64459,https://biolit.fr/sorties/sortie-64459/,Magali LHOMMET CARPENTIER,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174804-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175101-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175229-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175706-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183242-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183337-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-1-scaled.jpg,10/02/2023 10:09,17.0:41,18.0:42,49.8561730000000,0.607874000000000,,Veullettes sur mer - le pont rouge,64471,Observation #64471,https://biolit.fr/observations/observation-64471/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183337-1-scaled.jpg,,,Ne sais pas +N1,64459,Sortie #64459,https://biolit.fr/sorties/sortie-64459/,Magali LHOMMET CARPENTIER,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174804-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175101-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175229-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175706-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183242-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183337-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-1-scaled.jpg,10/02/2023 10:09,17.0:41,18.0:42,49.8561730000000,0.607874000000000,,Veullettes sur mer - le pont rouge,64473,Observation #64473,https://biolit.fr/observations/observation-64473/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183337-1-scaled.jpg,,TRUE,Ne sais pas +N1,64459,Sortie #64459,https://biolit.fr/sorties/sortie-64459/,Magali LHOMMET CARPENTIER,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174804-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175101-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175229-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175706-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183242-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183337-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-1-scaled.jpg,10/02/2023 10:09,17.0:41,18.0:42,49.8561730000000,0.607874000000000,,Veullettes sur mer - le pont rouge,64475,Observation #64475,https://biolit.fr/observations/observation-64475/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-1-scaled.jpg,,TRUE,Ne sais pas +N1,64486,Sortie #64486,https://biolit.fr/sorties/sortie-64486/,Magali LHOMMET CARPENTIER,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174839-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174914-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174920-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175014-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_180848-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_181816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_182313-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_182327-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-2-scaled.jpg,10/02/2023 10:16,17.0:41,18.0:42,49.8564500000000,0.607831000000000,,Veullettes sur mer - le pont rouge,64488,Observation #64488,https://biolit.fr/observations/observation-64488/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174839-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174914-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174920-1-scaled.jpg,,,Ne sais pas +N1,64486,Sortie #64486,https://biolit.fr/sorties/sortie-64486/,Magali LHOMMET CARPENTIER,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174839-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174914-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174920-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175014-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_180848-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_181816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_182313-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_182327-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-2-scaled.jpg,10/02/2023 10:16,17.0:41,18.0:42,49.8564500000000,0.607831000000000,,Veullettes sur mer - le pont rouge,64490,Observation #64490,https://biolit.fr/observations/observation-64490/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175014-1-scaled.jpg,,TRUE,Identifiable +N1,64486,Sortie #64486,https://biolit.fr/sorties/sortie-64486/,Magali LHOMMET CARPENTIER,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174839-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174914-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174920-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175014-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_180848-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_181816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_182313-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_182327-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-2-scaled.jpg,10/02/2023 10:16,17.0:41,18.0:42,49.8564500000000,0.607831000000000,,Veullettes sur mer - le pont rouge,64492,Observation #64492,https://biolit.fr/observations/observation-64492/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_180848-1-scaled.jpg,,TRUE,Identifiable +N1,64486,Sortie #64486,https://biolit.fr/sorties/sortie-64486/,Magali LHOMMET CARPENTIER,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174839-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174914-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174920-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175014-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_180848-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_181816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_182313-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_182327-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-2-scaled.jpg,10/02/2023 10:16,17.0:41,18.0:42,49.8564500000000,0.607831000000000,,Veullettes sur mer - le pont rouge,64494,Observation #64494,https://biolit.fr/observations/observation-64494/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_181816-1-scaled.jpg,,TRUE,Identifiable +N1,64486,Sortie #64486,https://biolit.fr/sorties/sortie-64486/,Magali LHOMMET CARPENTIER,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174839-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174914-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174920-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175014-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_180848-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_181816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_182313-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_182327-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-2-scaled.jpg,10/02/2023 10:16,17.0:41,18.0:42,49.8564500000000,0.607831000000000,,Veullettes sur mer - le pont rouge,64496,Observation #64496,https://biolit.fr/observations/observation-64496/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_182313-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_182327-1-scaled.jpg,,,Ne sais pas +N1,64486,Sortie #64486,https://biolit.fr/sorties/sortie-64486/,Magali LHOMMET CARPENTIER,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174839-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174914-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174920-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175014-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_180848-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_181816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_182313-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_182327-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-2-scaled.jpg,10/02/2023 10:16,17.0:41,18.0:42,49.8564500000000,0.607831000000000,,Veullettes sur mer - le pont rouge,64498,Observation #64498,https://biolit.fr/observations/observation-64498/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-2-scaled.jpg,,,Ne sais pas +N1,64639,Sortie #64639,https://biolit.fr/sorties/sortie-64639/,Rintz Cam Ly,https://biolit.fr/wp-content/uploads/jet-form-builder/2732bff279b4dea01fc8689a49331717/2023/10/WhatsApp-Image-2023-09-12-at-16.40.57.jpeg,10/06/2023 13:57,0.0000000,0.000001,0,0,Planète Mer (antenne Dinard),A,,,,,,,,,, +N1,64642,Sortie #64642,https://biolit.fr/sorties/sortie-64642/,Rintz Cam Ly,https://biolit.fr/wp-content/uploads/jet-form-builder/2732bff279b4dea01fc8689a49331717/2023/10/WhatsApp-Image-2023-09-12-at-16.40.38.jpeg,10/06/2023 13:59,0.0000000,0.000001,0,0,Planète Mer (antenne Dinard),A,,,,,,,,,, +N1,64662,Sortie #64662,https://biolit.fr/sorties/sortie-64662/,RONDY Philippe,https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7681-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7682-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7683-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7684-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7685-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7686-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7687-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7688-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7690-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7691-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7692-scaled.jpg,10/06/2023 14:39,12.0000000,14.0000000,43.4365800000000,6.81667300000000,,Saint-Raphael,,,,,,,,,, +N1,64679,Sortie #64679,https://biolit.fr/sorties/sortie-64679/,RONDY Philippe,https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7839-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7841-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7842-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7845-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7846-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7847-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7849-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7851-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7852-scaled.jpg,10/06/2023 14:44,12.0000000,14.0000000,43.4149770000000,6.85386700000000,,Saint-Raphael,64681,Observation #64681,https://biolit.fr/observations/observation-64681/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7840-scaled.jpg,,,Ne sais pas +N1,64690,Sortie #64690,https://biolit.fr/sorties/sortie-64690/,RONDY Philippe,https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7914-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7915-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7916-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7918-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7920-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7921-scaled.jpg,10/06/2023 18:08,16.0000000,17.0000000,43.4144650000000,6.81181000000000,,saint-raphael,64692,Observation #64692,https://biolit.fr/observations/observation-64692/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7914-scaled.jpg,,,Ne sais pas +N1,64725,Sortie #64725,https://biolit.fr/sorties/sortie-64725/,Cecars,https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3103-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3096-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3095-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3076-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3072-scaled.jpg,10/07/2023 23:01,15.0000000,16.0:15,49.9173490000000,0.986695000000000,,Varengeville,64727,Observation #64727,https://biolit.fr/observations/observation-64727/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3103-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3096-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3095-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3076-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3072-scaled.jpg,,, +N1,64725,Sortie #64725,https://biolit.fr/sorties/sortie-64725/,Cecars,https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3103-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3096-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3095-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3076-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3072-scaled.jpg,10/07/2023 23:01,15.0000000,16.0:15,49.9173490000000,0.986695000000000,,Varengeville,64729,Observation #64729,https://biolit.fr/observations/observation-64729/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3103-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3096-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3095-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3076-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3072-scaled.jpg,,,Ne sais pas +N1,64760,Sortie #64760,https://biolit.fr/sorties/sortie-64760/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Fucus-spirale-en-octobre-5-10-2023.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/gibbules-au-sec-5-10-2023-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-identificat°-2023-10-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Observat°-2023-10-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-5-10-2023.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-bigorneau-5-10-2023.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-gibbule-ombiliquee-5-10-2023.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-5-10-2023.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-bigorneau-5-10-2023.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-gibbule-ombiliquee-5-10-2023.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-monodonte-5-10-2023.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-tous-5-10-2023-scaled.jpeg,10/09/2023 15:47,17.0000000,18.0000000,47.6077400000000,-2.74704100000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Gornevez Séné 56860,64762,Observation #64762,https://biolit.fr/observations/observation-64762/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Fucus-spirale-en-octobre-5-10-2023.png,,,Identifiable +N1,64776,Sortie #64776,https://biolit.fr/sorties/sortie-64776/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Fucus-spirale-en-octobre-5-10-2023-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/gibbules-au-sec-5-10-2023-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-identificat°-2023-10-5-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Observat°-2023-10-5-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-5-10-2023-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-bigorneau-5-10-2023-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-gibbule-ombiliquee-5-10-2023-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-5-10-2023-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-bigorneau-5-10-2023-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-gibbule-ombiliquee-5-10-2023-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-monodonte-5-10-2023-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-tous-5-10-2023-1-scaled.jpeg,10/09/2023 16:00,17.0000000,18.0000000,47.6076820000000,-2.74688000000000,,Gornevez Séné 56860,,,,,,,,,, +N1,64792,Sortie #64792,https://biolit.fr/sorties/sortie-64792/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Fucus-spirale-en-octobre-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/gibbules-au-sec-5-10-2023-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-identificat°-2023-10-5-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Observat°-2023-10-5-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-5-10-2023-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-bigorneau-5-10-2023-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-gibbule-ombiliquee-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-5-10-2023-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-bigorneau-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-gibbule-ombiliquee-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-monodonte-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-tous-5-10-2023-2-scaled.jpeg,10/09/2023 16:07,17.0000000,18.0000000,47.6076260000000,-2.74692100000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Gornevez Séné 56860,64796,Observation #64796,https://biolit.fr/observations/observation-64796/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/gibbules-au-sec-5-10-2023-2-scaled.jpeg,,,Identifiable +N1,64792,Sortie #64792,https://biolit.fr/sorties/sortie-64792/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Fucus-spirale-en-octobre-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/gibbules-au-sec-5-10-2023-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-identificat°-2023-10-5-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Observat°-2023-10-5-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-5-10-2023-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-bigorneau-5-10-2023-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-gibbule-ombiliquee-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-5-10-2023-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-bigorneau-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-gibbule-ombiliquee-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-monodonte-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-tous-5-10-2023-2-scaled.jpeg,10/09/2023 16:07,17.0000000,18.0000000,47.6076260000000,-2.74692100000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Gornevez Séné 56860,64798,Observation #64798,https://biolit.fr/observations/observation-64798/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-bigorneau-5-10-2023-2.jpeg,,TRUE,Identifiable +N1,64792,Sortie #64792,https://biolit.fr/sorties/sortie-64792/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Fucus-spirale-en-octobre-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/gibbules-au-sec-5-10-2023-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-identificat°-2023-10-5-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Observat°-2023-10-5-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-5-10-2023-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-bigorneau-5-10-2023-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-gibbule-ombiliquee-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-5-10-2023-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-bigorneau-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-gibbule-ombiliquee-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-monodonte-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-tous-5-10-2023-2-scaled.jpeg,10/09/2023 16:07,17.0000000,18.0000000,47.6076260000000,-2.74692100000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Gornevez Séné 56860,64800,Observation #64800,https://biolit.fr/observations/observation-64800/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-gibbule-ombiliquee-5-10-2023-2.png,,TRUE,Identifiable +N1,64792,Sortie #64792,https://biolit.fr/sorties/sortie-64792/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Fucus-spirale-en-octobre-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/gibbules-au-sec-5-10-2023-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-identificat°-2023-10-5-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Observat°-2023-10-5-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-5-10-2023-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-bigorneau-5-10-2023-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-gibbule-ombiliquee-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-5-10-2023-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-bigorneau-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-gibbule-ombiliquee-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-monodonte-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-tous-5-10-2023-2-scaled.jpeg,10/09/2023 16:07,17.0000000,18.0000000,47.6076260000000,-2.74692100000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Gornevez Séné 56860,64811,Observation #64811,https://biolit.fr/observations/observation-64811/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-monodonte-5-10-2023-2.png,,TRUE,Identifiable +N1,64803,Sortie #64803,https://biolit.fr/sorties/sortie-64803/,LE CORRE DYLANN,https://biolit.fr/wp-content/uploads/jet-form-builder/0a9e301fb2b8201f38d0105cde2e6367/2023/10/20230919_132339-scaled.jpg,10/09/2023 16:16,13.0000000,14.0000000,48.0891110000000,-4.30515500000000,,DOUARNENEZ,64807,Observation #64807,https://biolit.fr/observations/observation-64807/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0a9e301fb2b8201f38d0105cde2e6367/2023/10/20230919_132339-scaled.jpg,,,Identifiable +N1,64803,Sortie #64803,https://biolit.fr/sorties/sortie-64803/,LE CORRE DYLANN,https://biolit.fr/wp-content/uploads/jet-form-builder/0a9e301fb2b8201f38d0105cde2e6367/2023/10/20230919_132339-scaled.jpg,10/09/2023 16:16,13.0000000,14.0000000,48.0891110000000,-4.30515500000000,,DOUARNENEZ,64809,Observation #64809,https://biolit.fr/observations/observation-64809/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0a9e301fb2b8201f38d0105cde2e6367/2023/10/20230919_132339-scaled.jpg,,,Identifiable +N1,64848,Sortie #64848,https://biolit.fr/sorties/sortie-64848/,YAHIAOUI Sofiane,https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0576-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0578-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0581-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0583-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0592-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0593-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0594-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0597-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0598-scaled.jpg,10/10/2023 10:47,9.0000000,16.0000000,49.6469490000000,0.153825000000000,,saint-jouin-bruneval,,,,,,,,,, +N1,64870,Sortie #64870,https://biolit.fr/sorties/sortie-64870/,YAHIAOUI Sofiane,https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0601-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0605-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0606-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0607-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0608-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0609-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0610-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0611-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0612-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0613-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0615-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0616-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0618-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0619-scaled.jpeg,10/10/2023 10:50,9.0000000,16.0000000,49.6467400000000,0.153760000000000,,saint-jouin-bruneval,,,,,,,,,, +N1,64892,Sortie #64892,https://biolit.fr/sorties/sortie-64892/,YAHIAOUI Sofiane,https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0622-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0623-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0624-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0625-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0626-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0629-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0630-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0636-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0637-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0639-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0640-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0641-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0642-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0644-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0645-scaled.jpg,10/10/2023 10:52,9.0000000,16.0000000,49.6467820000000,0.153916000000000,,saint-jouin-bruneval,,,,,,,,,, +N1,64914,Sortie #64914,https://biolit.fr/sorties/sortie-64914/,YAHIAOUI Sofiane,https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0652-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0653-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0654-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0655-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0656-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0676-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0677-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0679-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0680-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0681-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0682-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0683-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0690-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0691-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0692-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0693-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0694-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0695-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0704-scaled.jpeg,10/10/2023 10:56,9.0000000,16.0000000,49.6485020000000,0.154002000000000,,saint-jouin-bruneval,,,,,,,,,, +N1,64933,Sortie #64933,https://biolit.fr/sorties/sortie-64933/,YAHIAOUI Sofiane,https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0706-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0707-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0712-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0714-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0715-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0716-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0717-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0718-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0719-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0720-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0721-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0727-scaled.jpg,10/10/2023 10:59,9.0000000,16.0000000,49.6473830000000,0.153927000000000,,saint-jouin-bruneval,,,,,,,,,, +N1,65012,Sortie #65012,https://biolit.fr/sorties/sortie-65012/,DELEYE EMMANUEL,https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0081-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0091-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0116-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0128-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0135-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0137-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0143-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0145-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0152-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0158-1-scaled.jpg,10/11/2023 11:15,14.0000000,16.0000000,47.2591530000000,-2.1707550000000,,saint brévin les pins,65014,Observation #65014,https://biolit.fr/observations/observation-65014/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0081-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0091-1-scaled.jpg,,,Identifiable +N1,65012,Sortie #65012,https://biolit.fr/sorties/sortie-65012/,DELEYE EMMANUEL,https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0081-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0091-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0116-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0128-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0135-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0137-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0143-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0145-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0152-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0158-1-scaled.jpg,10/11/2023 11:15,14.0000000,16.0000000,47.2591530000000,-2.1707550000000,,saint brévin les pins,65016,Observation #65016,https://biolit.fr/observations/observation-65016/,Charadrius hiaticula,Grand gravelot,,https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0128-1-scaled.jpg,,,Identifiable +N1,65012,Sortie #65012,https://biolit.fr/sorties/sortie-65012/,DELEYE EMMANUEL,https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0081-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0091-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0116-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0128-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0135-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0137-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0143-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0145-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0152-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0158-1-scaled.jpg,10/11/2023 11:15,14.0000000,16.0000000,47.2591530000000,-2.1707550000000,,saint brévin les pins,65018,Observation #65018,https://biolit.fr/observations/observation-65018/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0116-1-scaled.jpg,,,Identifiable +N1,65012,Sortie #65012,https://biolit.fr/sorties/sortie-65012/,DELEYE EMMANUEL,https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0081-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0091-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0116-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0128-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0135-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0137-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0143-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0145-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0152-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0158-1-scaled.jpg,10/11/2023 11:15,14.0000000,16.0000000,47.2591530000000,-2.1707550000000,,saint brévin les pins,65020,Observation #65020,https://biolit.fr/observations/observation-65020/,Synodus variegatus,Poisson-lézard tacheté,,https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0145-1-scaled.jpg,,,Identifiable +N1,65012,Sortie #65012,https://biolit.fr/sorties/sortie-65012/,DELEYE EMMANUEL,https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0081-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0091-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0116-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0128-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0135-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0137-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0143-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0145-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0152-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0158-1-scaled.jpg,10/11/2023 11:15,14.0000000,16.0000000,47.2591530000000,-2.1707550000000,,saint brévin les pins,65022,Observation #65022,https://biolit.fr/observations/observation-65022/,Charadrius hiaticula,Grand gravelot,,https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0081-1-scaled.jpg,,,Identifiable +N1,65031,Sortie #65031,https://biolit.fr/sorties/sortie-65031/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/11-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/21-scaled.jpg,10/11/2023 14:28,14.0000000,17.0000000,47.266898000000,-2.17040600000000,,St Brévin les Pins,,,,,,,,,, +N1,65053,Sortie #65053,https://biolit.fr/sorties/sortie-65053/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/11-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/15.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/19.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/20.jpg,10/11/2023 14:42,14.0000000,17.0000000,47.2660930000000,-2.17061800000000,,St Brévin les Pins,65063,Observation #65063,https://biolit.fr/observations/observation-65063/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/20.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/19.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/17.jpg,,,Identifiable +N1,65053,Sortie #65053,https://biolit.fr/sorties/sortie-65053/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/11-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/15.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/19.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/20.jpg,10/11/2023 14:42,14.0000000,17.0000000,47.2660930000000,-2.17061800000000,,St Brévin les Pins,65067,Observation #65067,https://biolit.fr/observations/observation-65067/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/8.jpg,,,Identifiable +N1,65053,Sortie #65053,https://biolit.fr/sorties/sortie-65053/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/11-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/15.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/19.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/20.jpg,10/11/2023 14:42,14.0000000,17.0000000,47.2660930000000,-2.17061800000000,,St Brévin les Pins,65069,Observation #65069,https://biolit.fr/observations/observation-65069/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/17.jpg,,,Identifiable +N1,65053,Sortie #65053,https://biolit.fr/sorties/sortie-65053/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/11-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/15.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/19.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/20.jpg,10/11/2023 14:42,14.0000000,17.0000000,47.2660930000000,-2.17061800000000,,St Brévin les Pins,65071,Observation #65071,https://biolit.fr/observations/observation-65071/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/6.jpg,,,Identifiable +N1,65053,Sortie #65053,https://biolit.fr/sorties/sortie-65053/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/11-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/15.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/19.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/20.jpg,10/11/2023 14:42,14.0000000,17.0000000,47.2660930000000,-2.17061800000000,,St Brévin les Pins,65073,Observation #65073,https://biolit.fr/observations/observation-65073/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/11-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/13.jpg,,,Ne sais pas +N1,65053,Sortie #65053,https://biolit.fr/sorties/sortie-65053/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/11-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/15.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/19.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/20.jpg,10/11/2023 14:42,14.0000000,17.0000000,47.2660930000000,-2.17061800000000,,St Brévin les Pins,65075,Observation #65075,https://biolit.fr/observations/observation-65075/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/14.jpg,,,Identifiable +N1,65053,Sortie #65053,https://biolit.fr/sorties/sortie-65053/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/11-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/15.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/19.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/20.jpg,10/11/2023 14:42,14.0000000,17.0000000,47.2660930000000,-2.17061800000000,,St Brévin les Pins,65077,Observation #65077,https://biolit.fr/observations/observation-65077/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/15.jpg,,,Ne sais pas +N1,65053,Sortie #65053,https://biolit.fr/sorties/sortie-65053/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/11-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/15.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/19.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/20.jpg,10/11/2023 14:42,14.0000000,17.0000000,47.2660930000000,-2.17061800000000,,St Brévin les Pins,65079,Observation #65079,https://biolit.fr/observations/observation-65079/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/10.jpg,,,Ne sais pas +N1,65099,Sortie #65099,https://biolit.fr/sorties/sortie-65099/,TIGNON Anthony,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010140426-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010140429-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142139-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143141-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143227-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143327-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143357_01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150333-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150645-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150648-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150732-scaled.jpg,10/11/2023 16:59,14.0000000,17.0000000,47.2670010000000,-2.17026100000000,,SAINT BREVIN LES PINS,65101,Observation #65101,https://biolit.fr/observations/observation-65101/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010140426-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010140429-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142139-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143141-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143227-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143327-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143357_01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150333-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150645-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150648-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150732-scaled.jpg,,,Ne sais pas +N1,65120,Sortie #65120,https://biolit.fr/sorties/sortie-65120/,TIGNON Anthony,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010140429-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142139-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142807-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143141-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143145-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143220-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143226-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143227-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143322-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143327-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143357_01-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150329-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150333-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150643-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150645-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150648-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150732-1-scaled.jpg,10/12/2023 11:42,14.0000000,17.0000000,47.2646450000000,-2.17072200000000,,SAINT BREVIN LES PINS,,,,,,,,,, +N1,65139,Sortie #65139,https://biolit.fr/sorties/sortie-65139/,TIGNON Anthony,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010140429-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142139-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142807-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143141-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143145-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143220-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143226-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143227-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143322-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143327-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143357_01-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150329-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150333-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150643-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150645-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150648-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150732-2-scaled.jpg,10/12/2023 11:48,14.0000000,17.0000000,47.2664480000000,-2.17056200000000,,SAINT BREVIN LES PINS,65141,Observation #65141,https://biolit.fr/observations/observation-65141/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142139-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142807-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143141-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143145-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143220-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143227-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143226-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143327-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143322-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143357_01-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150329-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150333-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150643-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150648-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150645-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150732-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010140429-2-scaled.jpg,,,Ne sais pas +N1,65139,Sortie #65139,https://biolit.fr/sorties/sortie-65139/,TIGNON Anthony,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010140429-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142139-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142807-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143141-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143145-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143220-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143226-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143227-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143322-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143327-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143357_01-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150329-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150333-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150643-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150645-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150648-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150732-2-scaled.jpg,10/12/2023 11:48,14.0000000,17.0000000,47.2664480000000,-2.17056200000000,,SAINT BREVIN LES PINS,65143,Observation #65143,https://biolit.fr/observations/observation-65143/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142807-2-scaled.jpg,,,Ne sais pas +N1,65139,Sortie #65139,https://biolit.fr/sorties/sortie-65139/,TIGNON Anthony,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010140429-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142139-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142807-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143141-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143145-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143220-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143226-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143227-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143322-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143327-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143357_01-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150329-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150333-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150643-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150645-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150648-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150732-2-scaled.jpg,10/12/2023 11:48,14.0000000,17.0000000,47.2664480000000,-2.17056200000000,,SAINT BREVIN LES PINS,65145,Observation #65145,https://biolit.fr/observations/observation-65145/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143141-2-scaled.jpg,,,Ne sais pas +N1,65139,Sortie #65139,https://biolit.fr/sorties/sortie-65139/,TIGNON Anthony,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010140429-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142139-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142807-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143141-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143145-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143220-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143226-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143227-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143322-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143327-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143357_01-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150329-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150333-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150643-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150645-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150648-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150732-2-scaled.jpg,10/12/2023 11:48,14.0000000,17.0000000,47.2664480000000,-2.17056200000000,,SAINT BREVIN LES PINS,65147,Observation #65147,https://biolit.fr/observations/observation-65147/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143145-2-scaled.jpg,,,Ne sais pas +N1,65139,Sortie #65139,https://biolit.fr/sorties/sortie-65139/,TIGNON Anthony,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010140429-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142139-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142807-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143141-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143145-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143220-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143226-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143227-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143322-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143327-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143357_01-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150329-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150333-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150643-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150645-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150648-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150732-2-scaled.jpg,10/12/2023 11:48,14.0000000,17.0000000,47.2664480000000,-2.17056200000000,,SAINT BREVIN LES PINS,65149,Observation #65149,https://biolit.fr/observations/observation-65149/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143220-2-scaled.jpg,,,Ne sais pas +N1,65139,Sortie #65139,https://biolit.fr/sorties/sortie-65139/,TIGNON Anthony,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010140429-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142139-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142807-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143141-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143145-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143220-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143226-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143227-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143322-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143327-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143357_01-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150329-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150333-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150643-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150645-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150648-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150732-2-scaled.jpg,10/12/2023 11:48,14.0000000,17.0000000,47.2664480000000,-2.17056200000000,,SAINT BREVIN LES PINS,65151,Observation #65151,https://biolit.fr/observations/observation-65151/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150333-2-scaled.jpg,,, +N1,65139,Sortie #65139,https://biolit.fr/sorties/sortie-65139/,TIGNON Anthony,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010140429-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142139-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142807-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143141-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143145-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143220-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143226-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143227-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143322-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143327-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143357_01-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150329-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150333-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150643-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150645-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150648-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150732-2-scaled.jpg,10/12/2023 11:48,14.0000000,17.0000000,47.2664480000000,-2.17056200000000,,SAINT BREVIN LES PINS,65153,Observation #65153,https://biolit.fr/observations/observation-65153/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150732-2-scaled.jpg,,, +N1,65139,Sortie #65139,https://biolit.fr/sorties/sortie-65139/,TIGNON Anthony,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010140429-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142139-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142807-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143141-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143145-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143220-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143226-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143227-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143322-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143327-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143357_01-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150329-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150333-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150643-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150645-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150648-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150732-2-scaled.jpg,10/12/2023 11:48,14.0000000,17.0000000,47.2664480000000,-2.17056200000000,,SAINT BREVIN LES PINS,65155,Observation #65155,https://biolit.fr/observations/observation-65155/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143357_01-2-scaled.jpg,,, +N1,65170,Sortie #65170,https://biolit.fr/sorties/sortie-65170/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-8-scaled.jpg,10/12/2023 16:18,14.0000000,17.0000000,47.2509020000000,-2.16976200000000,,St Brévin Les Pins (Loire Atlantique),65172,Observation #65172,https://biolit.fr/observations/observation-65172/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-1-scaled.jpg,,,Ne sais pas +N1,65170,Sortie #65170,https://biolit.fr/sorties/sortie-65170/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-8-scaled.jpg,10/12/2023 16:18,14.0000000,17.0000000,47.2509020000000,-2.16976200000000,,St Brévin Les Pins (Loire Atlantique),65174,Observation #65174,https://biolit.fr/observations/observation-65174/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-2-scaled.jpg,,,Ne sais pas +N1,65170,Sortie #65170,https://biolit.fr/sorties/sortie-65170/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-8-scaled.jpg,10/12/2023 16:18,14.0000000,17.0000000,47.2509020000000,-2.16976200000000,,St Brévin Les Pins (Loire Atlantique),65176,Observation #65176,https://biolit.fr/observations/observation-65176/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-3-scaled.jpg,,,Ne sais pas +N1,65170,Sortie #65170,https://biolit.fr/sorties/sortie-65170/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-8-scaled.jpg,10/12/2023 16:18,14.0000000,17.0000000,47.2509020000000,-2.16976200000000,,St Brévin Les Pins (Loire Atlantique),65178,Observation #65178,https://biolit.fr/observations/observation-65178/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-4-scaled.jpg,,,Ne sais pas +N1,65170,Sortie #65170,https://biolit.fr/sorties/sortie-65170/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-8-scaled.jpg,10/12/2023 16:18,14.0000000,17.0000000,47.2509020000000,-2.16976200000000,,St Brévin Les Pins (Loire Atlantique),65180,Observation #65180,https://biolit.fr/observations/observation-65180/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-5.jpg,,,Ne sais pas +N1,65170,Sortie #65170,https://biolit.fr/sorties/sortie-65170/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-8-scaled.jpg,10/12/2023 16:18,14.0000000,17.0000000,47.2509020000000,-2.16976200000000,,St Brévin Les Pins (Loire Atlantique),65182,Observation #65182,https://biolit.fr/observations/observation-65182/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-6-scaled.jpg,,,Ne sais pas +N1,65170,Sortie #65170,https://biolit.fr/sorties/sortie-65170/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-8-scaled.jpg,10/12/2023 16:18,14.0000000,17.0000000,47.2509020000000,-2.16976200000000,,St Brévin Les Pins (Loire Atlantique),65184,Observation #65184,https://biolit.fr/observations/observation-65184/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-7-scaled.jpg,,,Ne sais pas +N1,65170,Sortie #65170,https://biolit.fr/sorties/sortie-65170/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-8-scaled.jpg,10/12/2023 16:18,14.0000000,17.0000000,47.2509020000000,-2.16976200000000,,St Brévin Les Pins (Loire Atlantique),65186,Observation #65186,https://biolit.fr/observations/observation-65186/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-8-scaled.jpg,,,Ne sais pas +N1,65194,Sortie #65194,https://biolit.fr/sorties/sortie-65194/,CATARINA Sébastien,https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/IMG_2917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/IMG_2918-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/IMG_2919-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/IMG_2920-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/IMG_2921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/IMG_2922-scaled.jpg,10/12/2023 17:01,10.0000000,13.0000000,49.4156950000000,0.181446000000000,,Honfleur,,,,,,,,,, +N1,65198,Sortie #65198,https://biolit.fr/sorties/sortie-65198/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/JEUNE-GOELAND-scaled.jpg,10/13/2023 9:25,14.0000000,17.0000000,47.2625810000000,-2.17103900000000,,SAINT BREVIN LES PINS,,,,,,,,,, +N1,65208,Sortie #65208,https://biolit.fr/sorties/sortie-65208/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GOELAND-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/JEUNE-GOELAND-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/BERNIQUE-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAUX-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/ESCARGOT-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/INSECTE-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/PALOURDES-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAU-EN-VOLE-scaled.jpg,10/13/2023 9:31,14.0000000,17.0000000,47.2625810000000,-2.17103900000000,,SAINT BREVIN LES PINS,65210,Observation #65210,https://biolit.fr/observations/observation-65210/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GOELAND-scaled.jpg,,,Identifiable +N1,65223,Sortie #65223,https://biolit.fr/sorties/sortie-65223/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/PALOURDES-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/INSECTE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAUX-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAU-EN-VOLE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/ESCARGOT-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/COQUE-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GOELAND-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/JEUNE-GOELAND-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/BERNIQUE-1-scaled.jpg,10/13/2023 9:37,14.0000000,17.0000000,47.2632470000000,-2.17119500000000,,SAINT BREVIN LES PINS,65225,Observation #65225,https://biolit.fr/observations/observation-65225/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/PALOURDES-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/INSECTE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAUX-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAU-EN-VOLE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/ESCARGOT-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/COQUE-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GOELAND-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/JEUNE-GOELAND-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/BERNIQUE-1-scaled.jpg,,,Ne sais pas +N1,65223,Sortie #65223,https://biolit.fr/sorties/sortie-65223/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/PALOURDES-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/INSECTE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAUX-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAU-EN-VOLE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/ESCARGOT-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/COQUE-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GOELAND-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/JEUNE-GOELAND-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/BERNIQUE-1-scaled.jpg,10/13/2023 9:37,14.0000000,17.0000000,47.2632470000000,-2.17119500000000,,SAINT BREVIN LES PINS,65227,Observation #65227,https://biolit.fr/observations/observation-65227/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/PALOURDES-1-scaled.jpg,,,Ne sais pas +N1,65223,Sortie #65223,https://biolit.fr/sorties/sortie-65223/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/PALOURDES-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/INSECTE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAUX-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAU-EN-VOLE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/ESCARGOT-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/COQUE-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GOELAND-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/JEUNE-GOELAND-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/BERNIQUE-1-scaled.jpg,10/13/2023 9:37,14.0000000,17.0000000,47.2632470000000,-2.17119500000000,,SAINT BREVIN LES PINS,65229,Observation #65229,https://biolit.fr/observations/observation-65229/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/INSECTE-1-scaled.jpg,,,Ne sais pas +N1,65223,Sortie #65223,https://biolit.fr/sorties/sortie-65223/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/PALOURDES-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/INSECTE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAUX-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAU-EN-VOLE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/ESCARGOT-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/COQUE-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GOELAND-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/JEUNE-GOELAND-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/BERNIQUE-1-scaled.jpg,10/13/2023 9:37,14.0000000,17.0000000,47.2632470000000,-2.17119500000000,,SAINT BREVIN LES PINS,65231,Observation #65231,https://biolit.fr/observations/observation-65231/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAUX-1-scaled.jpg,,,Ne sais pas +N1,65223,Sortie #65223,https://biolit.fr/sorties/sortie-65223/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/PALOURDES-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/INSECTE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAUX-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAU-EN-VOLE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/ESCARGOT-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/COQUE-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GOELAND-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/JEUNE-GOELAND-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/BERNIQUE-1-scaled.jpg,10/13/2023 9:37,14.0000000,17.0000000,47.2632470000000,-2.17119500000000,,SAINT BREVIN LES PINS,65233,Observation #65233,https://biolit.fr/observations/observation-65233/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAU-EN-VOLE-1-scaled.jpg,,,Ne sais pas +N1,65223,Sortie #65223,https://biolit.fr/sorties/sortie-65223/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/PALOURDES-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/INSECTE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAUX-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAU-EN-VOLE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/ESCARGOT-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/COQUE-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GOELAND-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/JEUNE-GOELAND-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/BERNIQUE-1-scaled.jpg,10/13/2023 9:37,14.0000000,17.0000000,47.2632470000000,-2.17119500000000,,SAINT BREVIN LES PINS,65235,Observation #65235,https://biolit.fr/observations/observation-65235/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/ESCARGOT-1-scaled.jpg,,,Ne sais pas +N1,65223,Sortie #65223,https://biolit.fr/sorties/sortie-65223/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/PALOURDES-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/INSECTE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAUX-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAU-EN-VOLE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/ESCARGOT-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/COQUE-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GOELAND-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/JEUNE-GOELAND-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/BERNIQUE-1-scaled.jpg,10/13/2023 9:37,14.0000000,17.0000000,47.2632470000000,-2.17119500000000,,SAINT BREVIN LES PINS,65237,Observation #65237,https://biolit.fr/observations/observation-65237/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/COQUE-scaled.jpg,,,Ne sais pas +N1,65223,Sortie #65223,https://biolit.fr/sorties/sortie-65223/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/PALOURDES-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/INSECTE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAUX-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAU-EN-VOLE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/ESCARGOT-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/COQUE-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GOELAND-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/JEUNE-GOELAND-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/BERNIQUE-1-scaled.jpg,10/13/2023 9:37,14.0000000,17.0000000,47.2632470000000,-2.17119500000000,,SAINT BREVIN LES PINS,65239,Observation #65239,https://biolit.fr/observations/observation-65239/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GOELAND-1-scaled.jpg,,,Ne sais pas +N1,65223,Sortie #65223,https://biolit.fr/sorties/sortie-65223/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/PALOURDES-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/INSECTE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAUX-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAU-EN-VOLE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/ESCARGOT-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/COQUE-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GOELAND-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/JEUNE-GOELAND-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/BERNIQUE-1-scaled.jpg,10/13/2023 9:37,14.0000000,17.0000000,47.2632470000000,-2.17119500000000,,SAINT BREVIN LES PINS,65241,Observation #65241,https://biolit.fr/observations/observation-65241/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/JEUNE-GOELAND-2-scaled.jpg,,,Ne sais pas +N1,65223,Sortie #65223,https://biolit.fr/sorties/sortie-65223/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/PALOURDES-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/INSECTE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAUX-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAU-EN-VOLE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/ESCARGOT-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/COQUE-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GOELAND-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/JEUNE-GOELAND-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/BERNIQUE-1-scaled.jpg,10/13/2023 9:37,14.0000000,17.0000000,47.2632470000000,-2.17119500000000,,SAINT BREVIN LES PINS,65243,Observation #65243,https://biolit.fr/observations/observation-65243/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/BERNIQUE-1-scaled.jpg,,,Ne sais pas +N1,65257,Sortie #65257,https://biolit.fr/sorties/sortie-65257/,Hupp,FALSE,10/13/2023 16:32,16.0:32,16.0:32,48.5948840,-2.3227480,Planète Mer,jjjj,,,,,,,,,, +N1,65276,Sortie #65276,https://biolit.fr/sorties/sortie-65276/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/image1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-identificat°-2023-10-5-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Observat°-2023-10-5-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-gibbule-ombiliquee-5-10-2023-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-5-10-2023-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-bigorneau-5-10-2023-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-tous-5-10-2023-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-5-10-2023-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-bigorneau-5-10-2023-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-gibbule-ombiliquee-5-10-2023-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-monodonte-5-10-2023-3.png,10/14/2023 10:53,17.0000000,18.0000000,47.6076730000000,-2.74670200000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Gornevez, Séné 56860",,,,,,,,,, +N1,65291,Sortie #65291,https://biolit.fr/sorties/sortie-65291/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/image1-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-identificat°-2023-10-5-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Observat°-2023-10-5-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-gibbule-ombiliquee-5-10-2023-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-5-10-2023-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-bigorneau-5-10-2023-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-tous-5-10-2023-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-5-10-2023-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-bigorneau-5-10-2023-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-gibbule-ombiliquee-5-10-2023-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-monodonte-5-10-2023-4.png,10/14/2023 10:59,17.0000000,18.0000000,47.6073830000000,-2.74665100000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Gornevez, Séné 56860",65293,Observation #65293,https://biolit.fr/observations/observation-65293/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/image1-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-gibbule-ombiliquee-5-10-2023-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-bigorneau-5-10-2023-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-bigorneau-5-10-2023-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-gibbule-ombiliquee-5-10-2023-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-monodonte-5-10-2023-4.png,,TRUE,Identifiable +N1,65291,Sortie #65291,https://biolit.fr/sorties/sortie-65291/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/image1-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-identificat°-2023-10-5-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Observat°-2023-10-5-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-gibbule-ombiliquee-5-10-2023-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-5-10-2023-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-bigorneau-5-10-2023-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-tous-5-10-2023-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-5-10-2023-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-bigorneau-5-10-2023-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-gibbule-ombiliquee-5-10-2023-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-monodonte-5-10-2023-4.png,10/14/2023 10:59,17.0000000,18.0000000,47.6073830000000,-2.74665100000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Gornevez, Séné 56860",65295,Observation #65295,https://biolit.fr/observations/observation-65295/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-gibbule-ombiliquee-5-10-2023-4.png,,TRUE,Identifiable +N1,65291,Sortie #65291,https://biolit.fr/sorties/sortie-65291/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/image1-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-identificat°-2023-10-5-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Observat°-2023-10-5-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-gibbule-ombiliquee-5-10-2023-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-5-10-2023-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-bigorneau-5-10-2023-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-tous-5-10-2023-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-5-10-2023-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-bigorneau-5-10-2023-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-gibbule-ombiliquee-5-10-2023-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-monodonte-5-10-2023-4.png,10/14/2023 10:59,17.0000000,18.0000000,47.6073830000000,-2.74665100000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Gornevez, Séné 56860",65297,Observation #65297,https://biolit.fr/observations/observation-65297/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-bigorneau-5-10-2023-4.png,,TRUE,Identifiable +N1,65291,Sortie #65291,https://biolit.fr/sorties/sortie-65291/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/image1-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-identificat°-2023-10-5-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Observat°-2023-10-5-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-gibbule-ombiliquee-5-10-2023-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-5-10-2023-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-bigorneau-5-10-2023-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-tous-5-10-2023-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-5-10-2023-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-bigorneau-5-10-2023-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-gibbule-ombiliquee-5-10-2023-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-monodonte-5-10-2023-4.png,10/14/2023 10:59,17.0000000,18.0000000,47.6073830000000,-2.74665100000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Gornevez, Séné 56860",65299,Observation #65299,https://biolit.fr/observations/observation-65299/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-monodonte-5-10-2023-4.png,,TRUE,Identifiable +N1,65313,Sortie #65313,https://biolit.fr/sorties/sortie-65313/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/IMG_4764-2-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/IMG_4765-2-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/IMG_8530-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/IMG_8532-2-scaled.jpg,10/14/2023 14:01,13.0:45,16.0000000,47.6056010000000,-2.75773800000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Ile de Boëd, Séné 56860",65315,Observation #65315,https://biolit.fr/observations/observation-65315/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/IMG_8532-2-scaled.jpg,,TRUE,Identifiable +N1,65367,Sortie #65367,https://biolit.fr/sorties/sortie-65367/,Thibaut Edouard,https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2023/10/IMG_8548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2023/10/IMG_8549-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2023/10/IMG_8550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2023/10/IMG_8551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2023/10/IMG_8552-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2023/10/IMG_8553-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2023/10/IMG_8554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2023/10/IMG_8555-scaled.jpg,10/17/2023 13:20,12.0000000,14.0000000,50.189013000000,1.62462500000000,,Saint Valery Sur Somme,65369,Observation #65369,https://biolit.fr/observations/observation-65369/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2023/10/IMG_8548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2023/10/IMG_8549-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2023/10/IMG_8550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2023/10/IMG_8551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2023/10/IMG_8552-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2023/10/IMG_8553-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2023/10/IMG_8554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2023/10/IMG_8555-scaled.jpg,,,Ne sais pas +N1,65388,Sortie #65388,https://biolit.fr/sorties/sortie-65388/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141546-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-scaled.jpg,10/17/2023 23:07,13.0000000,14.0000000,46.1741650,-1.1637990,Planète Mer,Plage de Saint Froult,,,,,,,,,, +N1,65401,Sortie #65401,https://biolit.fr/sorties/sortie-65401/,YNESTA Karine,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1389-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1388-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1387-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1386-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1385-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1384-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1382-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1381-scaled.jpeg,10/18/2023 16:52,14.0000000,15.0000000,43.3576600000000,5.29074300000000,,"Plage du Fortin, corbières",65403,Observation #65403,https://biolit.fr/observations/observation-65403/,Holothuria (Holothuria) tubulosa,Holothurie tubuleuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1389-scaled.jpeg,,TRUE,Identifiable +N1,65401,Sortie #65401,https://biolit.fr/sorties/sortie-65401/,YNESTA Karine,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1389-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1388-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1387-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1386-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1385-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1384-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1382-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1381-scaled.jpeg,10/18/2023 16:52,14.0000000,15.0000000,43.3576600000000,5.29074300000000,,"Plage du Fortin, corbières",65405,Observation #65405,https://biolit.fr/observations/observation-65405/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1388-scaled.jpeg,,TRUE,Identifiable +N1,65401,Sortie #65401,https://biolit.fr/sorties/sortie-65401/,YNESTA Karine,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1389-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1388-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1387-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1386-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1385-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1384-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1382-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1381-scaled.jpeg,10/18/2023 16:52,14.0000000,15.0000000,43.3576600000000,5.29074300000000,,"Plage du Fortin, corbières",65408,Observation #65408,https://biolit.fr/observations/observation-65408/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1387-scaled.jpeg,,TRUE,Identifiable +N1,65401,Sortie #65401,https://biolit.fr/sorties/sortie-65401/,YNESTA Karine,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1389-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1388-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1387-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1386-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1385-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1384-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1382-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1381-scaled.jpeg,10/18/2023 16:52,14.0000000,15.0000000,43.3576600000000,5.29074300000000,,"Plage du Fortin, corbières",65410,Observation #65410,https://biolit.fr/observations/observation-65410/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1386-scaled.jpeg,,TRUE,Identifiable +N1,65401,Sortie #65401,https://biolit.fr/sorties/sortie-65401/,YNESTA Karine,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1389-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1388-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1387-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1386-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1385-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1384-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1382-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1381-scaled.jpeg,10/18/2023 16:52,14.0000000,15.0000000,43.3576600000000,5.29074300000000,,"Plage du Fortin, corbières",65412,Observation #65412,https://biolit.fr/observations/observation-65412/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1385-scaled.jpeg,,,Ne sais pas +N1,65401,Sortie #65401,https://biolit.fr/sorties/sortie-65401/,YNESTA Karine,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1389-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1388-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1387-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1386-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1385-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1384-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1382-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1381-scaled.jpeg,10/18/2023 16:52,14.0000000,15.0000000,43.3576600000000,5.29074300000000,,"Plage du Fortin, corbières",65415,Observation #65415,https://biolit.fr/observations/observation-65415/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1384-scaled.jpeg,,,Ne sais pas +N1,65401,Sortie #65401,https://biolit.fr/sorties/sortie-65401/,YNESTA Karine,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1389-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1388-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1387-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1386-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1385-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1384-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1382-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1381-scaled.jpeg,10/18/2023 16:52,14.0000000,15.0000000,43.3576600000000,5.29074300000000,,"Plage du Fortin, corbières",65417,Observation #65417,https://biolit.fr/observations/observation-65417/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1382-scaled.jpeg,,,Ne sais pas +N1,65401,Sortie #65401,https://biolit.fr/sorties/sortie-65401/,YNESTA Karine,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1389-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1388-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1387-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1386-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1385-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1384-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1382-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1381-scaled.jpeg,10/18/2023 16:52,14.0000000,15.0000000,43.3576600000000,5.29074300000000,,"Plage du Fortin, corbières",65419,Observation #65419,https://biolit.fr/observations/observation-65419/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1382-scaled.jpeg,,,Ne sais pas +N1,65401,Sortie #65401,https://biolit.fr/sorties/sortie-65401/,YNESTA Karine,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1389-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1388-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1387-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1386-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1385-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1384-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1382-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1381-scaled.jpeg,10/18/2023 16:52,14.0000000,15.0000000,43.3576600000000,5.29074300000000,,"Plage du Fortin, corbières",65421,Observation #65421,https://biolit.fr/observations/observation-65421/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1381-scaled.jpeg,,,Identifiable +N1,65443,Sortie #65443,https://biolit.fr/sorties/sortie-65443/,LEMAITRE Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2315-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2314-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2309-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2307-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2305-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2297-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2290-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2289-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2312-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2311-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2300-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2299-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2301-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2295-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2293-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2292-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2291-scaled.jpeg,10/19/2023 12:02,10.0000000,13.0000000,49.4196350000000,0.197274000000000,,Honfleur Plage du Butin,65445,Observation #65445,https://biolit.fr/observations/observation-65445/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2309-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2314-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2315-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2307-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2305-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2297-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2290-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2289-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2312-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2311-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2300-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2299-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2301-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2295-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2293-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2292-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2291-scaled.jpeg,,,Ne sais pas +N1,65443,Sortie #65443,https://biolit.fr/sorties/sortie-65443/,LEMAITRE Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2315-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2314-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2309-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2307-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2305-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2297-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2290-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2289-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2312-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2311-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2300-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2299-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2301-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2295-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2293-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2292-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2291-scaled.jpeg,10/19/2023 12:02,10.0000000,13.0000000,49.4196350000000,0.197274000000000,,Honfleur Plage du Butin,65451,Observation #65451,https://biolit.fr/observations/observation-65451/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2306-scaled.jpeg,,,Ne sais pas +N1,65443,Sortie #65443,https://biolit.fr/sorties/sortie-65443/,LEMAITRE Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2315-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2314-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2309-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2307-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2305-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2297-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2290-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2289-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2312-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2311-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2300-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2299-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2301-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2295-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2293-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2292-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2291-scaled.jpeg,10/19/2023 12:02,10.0000000,13.0000000,49.4196350000000,0.197274000000000,,Honfleur Plage du Butin,65455,Observation #65455,https://biolit.fr/observations/observation-65455/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2291-scaled.jpeg,,,Ne sais pas +N1,65443,Sortie #65443,https://biolit.fr/sorties/sortie-65443/,LEMAITRE Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2315-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2314-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2309-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2307-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2305-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2297-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2290-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2289-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2312-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2311-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2300-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2299-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2301-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2295-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2293-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2292-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2291-scaled.jpeg,10/19/2023 12:02,10.0000000,13.0000000,49.4196350000000,0.197274000000000,,Honfleur Plage du Butin,65457,Observation #65457,https://biolit.fr/observations/observation-65457/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2293-scaled.jpeg,,,Ne sais pas +N1,65443,Sortie #65443,https://biolit.fr/sorties/sortie-65443/,LEMAITRE Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2315-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2314-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2309-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2307-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2305-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2297-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2290-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2289-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2312-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2311-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2300-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2299-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2301-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2295-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2293-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2292-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2291-scaled.jpeg,10/19/2023 12:02,10.0000000,13.0000000,49.4196350000000,0.197274000000000,,Honfleur Plage du Butin,65459,Observation #65459,https://biolit.fr/observations/observation-65459/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2301-scaled.jpeg,,,Ne sais pas +N1,65443,Sortie #65443,https://biolit.fr/sorties/sortie-65443/,LEMAITRE Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2315-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2314-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2309-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2307-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2305-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2297-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2290-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2289-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2312-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2311-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2300-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2299-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2301-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2295-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2293-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2292-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2291-scaled.jpeg,10/19/2023 12:02,10.0000000,13.0000000,49.4196350000000,0.197274000000000,,Honfleur Plage du Butin,65461,Observation #65461,https://biolit.fr/observations/observation-65461/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2300-scaled.jpeg,,,Ne sais pas +N1,65443,Sortie #65443,https://biolit.fr/sorties/sortie-65443/,LEMAITRE Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2315-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2314-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2309-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2307-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2305-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2297-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2290-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2289-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2312-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2311-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2300-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2299-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2301-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2295-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2293-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2292-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2291-scaled.jpeg,10/19/2023 12:02,10.0000000,13.0000000,49.4196350000000,0.197274000000000,,Honfleur Plage du Butin,65463,Observation #65463,https://biolit.fr/observations/observation-65463/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2312-scaled.jpeg,,,Ne sais pas +N1,65443,Sortie #65443,https://biolit.fr/sorties/sortie-65443/,LEMAITRE Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2315-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2314-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2309-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2307-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2305-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2297-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2290-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2289-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2312-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2311-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2300-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2299-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2301-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2295-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2293-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2292-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2291-scaled.jpeg,10/19/2023 12:02,10.0000000,13.0000000,49.4196350000000,0.197274000000000,,Honfleur Plage du Butin,65465,Observation #65465,https://biolit.fr/observations/observation-65465/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2294-scaled.jpeg,,,Ne sais pas +N1,65443,Sortie #65443,https://biolit.fr/sorties/sortie-65443/,LEMAITRE Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2315-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2314-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2309-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2307-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2305-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2297-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2290-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2289-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2312-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2311-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2300-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2299-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2301-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2295-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2293-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2292-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2291-scaled.jpeg,10/19/2023 12:02,10.0000000,13.0000000,49.4196350000000,0.197274000000000,,Honfleur Plage du Butin,65467,Observation #65467,https://biolit.fr/observations/observation-65467/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2305-scaled.jpeg,,,Ne sais pas +N1,65443,Sortie #65443,https://biolit.fr/sorties/sortie-65443/,LEMAITRE Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2315-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2314-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2309-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2307-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2305-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2297-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2290-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2289-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2312-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2311-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2300-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2299-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2301-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2295-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2293-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2292-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2291-scaled.jpeg,10/19/2023 12:02,10.0000000,13.0000000,49.4196350000000,0.197274000000000,,Honfleur Plage du Butin,65469,Observation #65469,https://biolit.fr/observations/observation-65469/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2303-scaled.jpeg,,,Ne sais pas +N1,65486,Sortie #65486,https://biolit.fr/sorties/sortie-65486/,Mourier Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112916-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_111054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110434-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105745-scaled.jpg,10/19/2023 12:12,10.0000000,13.0000000,49.41985,0.23294,,Honfleur plage du Butin,65488,Observation #65488,https://biolit.fr/observations/observation-65488/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112916-scaled.jpg,,,Ne sais pas +N1,65486,Sortie #65486,https://biolit.fr/sorties/sortie-65486/,Mourier Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112916-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_111054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110434-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105745-scaled.jpg,10/19/2023 12:12,10.0000000,13.0000000,49.41985,0.23294,,Honfleur plage du Butin,65490,Observation #65490,https://biolit.fr/observations/observation-65490/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112822-scaled.jpg,,TRUE,Ne sais pas +N1,65486,Sortie #65486,https://biolit.fr/sorties/sortie-65486/,Mourier Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112916-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_111054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110434-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105745-scaled.jpg,10/19/2023 12:12,10.0000000,13.0000000,49.41985,0.23294,,Honfleur plage du Butin,65492,Observation #65492,https://biolit.fr/observations/observation-65492/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112538-scaled.jpg,,TRUE,Ne sais pas +N1,65486,Sortie #65486,https://biolit.fr/sorties/sortie-65486/,Mourier Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112916-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_111054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110434-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105745-scaled.jpg,10/19/2023 12:12,10.0000000,13.0000000,49.41985,0.23294,,Honfleur plage du Butin,65494,Observation #65494,https://biolit.fr/observations/observation-65494/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112334-scaled.jpg,,,Ne sais pas +N1,65486,Sortie #65486,https://biolit.fr/sorties/sortie-65486/,Mourier Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112916-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_111054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110434-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105745-scaled.jpg,10/19/2023 12:12,10.0000000,13.0000000,49.41985,0.23294,,Honfleur plage du Butin,65496,Observation #65496,https://biolit.fr/observations/observation-65496/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110555-scaled.jpg,,, +N1,65486,Sortie #65486,https://biolit.fr/sorties/sortie-65486/,Mourier Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112916-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_111054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110434-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105745-scaled.jpg,10/19/2023 12:12,10.0000000,13.0000000,49.41985,0.23294,,Honfleur plage du Butin,65498,Observation #65498,https://biolit.fr/observations/observation-65498/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105746-scaled.jpg,,, +N1,65486,Sortie #65486,https://biolit.fr/sorties/sortie-65486/,Mourier Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112916-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_111054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110434-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105745-scaled.jpg,10/19/2023 12:12,10.0000000,13.0000000,49.41985,0.23294,,Honfleur plage du Butin,65500,Observation #65500,https://biolit.fr/observations/observation-65500/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110311-scaled.jpg,,, +N1,65486,Sortie #65486,https://biolit.fr/sorties/sortie-65486/,Mourier Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112916-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_111054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110434-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105745-scaled.jpg,10/19/2023 12:12,10.0000000,13.0000000,49.41985,0.23294,,Honfleur plage du Butin,65502,Observation #65502,https://biolit.fr/observations/observation-65502/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105632-scaled.jpg,,, +N1,65486,Sortie #65486,https://biolit.fr/sorties/sortie-65486/,Mourier Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112916-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_111054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110434-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105745-scaled.jpg,10/19/2023 12:12,10.0000000,13.0000000,49.41985,0.23294,,Honfleur plage du Butin,65504,Observation #65504,https://biolit.fr/observations/observation-65504/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105525-scaled.jpg,,, +N1,65486,Sortie #65486,https://biolit.fr/sorties/sortie-65486/,Mourier Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112916-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_111054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110434-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105745-scaled.jpg,10/19/2023 12:12,10.0000000,13.0000000,49.41985,0.23294,,Honfleur plage du Butin,65506,Observation #65506,https://biolit.fr/observations/observation-65506/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110434-scaled.jpg,,, +N1,65486,Sortie #65486,https://biolit.fr/sorties/sortie-65486/,Mourier Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112916-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_111054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110434-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105745-scaled.jpg,10/19/2023 12:12,10.0000000,13.0000000,49.41985,0.23294,,Honfleur plage du Butin,65508,Observation #65508,https://biolit.fr/observations/observation-65508/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105745-scaled.jpg,,, +N1,65486,Sortie #65486,https://biolit.fr/sorties/sortie-65486/,Mourier Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112916-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_111054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110434-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105745-scaled.jpg,10/19/2023 12:12,10.0000000,13.0000000,49.41985,0.23294,,Honfleur plage du Butin,65510,Observation #65510,https://biolit.fr/observations/observation-65510/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105725-scaled.jpg,,, +N1,65523,Sortie #65523,https://biolit.fr/sorties/sortie-65523/,VANNIER VIRGINIE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00002-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00004-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00009-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00014-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00016-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00017-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00019-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00028.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00029-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00026-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00027-scaled.jpeg,10/19/2023 12:19,10.0000000,13.0000000,49.41985,0.23294,,"Plage du Butin, Honfleur",65525,Observation #65525,https://biolit.fr/observations/observation-65525/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00002-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00004-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00009-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00014-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00016-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00017-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00019-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00028.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00029-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00026-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00027-scaled.jpeg,,,Ne sais pas +N1,65523,Sortie #65523,https://biolit.fr/sorties/sortie-65523/,VANNIER VIRGINIE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00002-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00004-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00009-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00014-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00016-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00017-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00019-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00028.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00029-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00026-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00027-scaled.jpeg,10/19/2023 12:19,10.0000000,13.0000000,49.41985,0.23294,,"Plage du Butin, Honfleur",65527,Observation #65527,https://biolit.fr/observations/observation-65527/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00002-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00009-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00014-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00016-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00019-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00017-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00028.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00029-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00026-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00027-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00004-scaled.jpeg,,,Ne sais pas +N1,65530,Sortie #65530,https://biolit.fr/sorties/sortie-65530/,Allory Pierre-Yves,FALSE,10/19/2023 16:03,17.000002,18.000002,48,-2,Planète Mer,uuuuu,,,,,,,,,, +N1,65549,Sortie #65549,https://biolit.fr/sorties/sortie-65549/,CATARINA Sébastien,https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/Image-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/Image-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/Image-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/Image-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/Image-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/Image-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/Image-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/Image-10-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/Image-11-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/Image-12-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/Image-13-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/Image-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/Image-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/Image-9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/Image-14-scaled.jpg,10/19/2023 16:46,9.0000000,12.0000000,49.4236760000000,0.209702000000000,,plage honfleur,,,,,,,,,, +N1,65557,Sortie #65557,https://biolit.fr/sorties/sortie-65557/,Marine,FALSE,10/19/2023 16:55,10.0000000,12.0000000,45.0292800000000,-1.3623050000,,marseille,,,,,,,,,, +N1,65569,Sortie #65569,https://biolit.fr/sorties/sortie-65569/,ALABERT FRANCOIS,https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/algue-rouge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Baies-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Ajonc-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7304-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7306-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/roseaux-sur-plage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/KT-Boundary-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Figuier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7319-scaled.jpg,10/19/2023 17:49,11.0000000,14.0000000,43.4494220,-1.5868300,,Plage et ENS Erretegia,65571,Observation #65571,https://biolit.fr/observations/observation-65571/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/algue-rouge-scaled.jpg,,,Ne sais pas +N1,65569,Sortie #65569,https://biolit.fr/sorties/sortie-65569/,ALABERT FRANCOIS,https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/algue-rouge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Baies-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Ajonc-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7304-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7306-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/roseaux-sur-plage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/KT-Boundary-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Figuier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7319-scaled.jpg,10/19/2023 17:49,11.0000000,14.0000000,43.4494220,-1.5868300,,Plage et ENS Erretegia,65573,Observation #65573,https://biolit.fr/observations/observation-65573/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Baies-scaled.jpg,,,Ne sais pas +N1,65569,Sortie #65569,https://biolit.fr/sorties/sortie-65569/,ALABERT FRANCOIS,https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/algue-rouge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Baies-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Ajonc-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7304-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7306-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/roseaux-sur-plage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/KT-Boundary-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Figuier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7319-scaled.jpg,10/19/2023 17:49,11.0000000,14.0000000,43.4494220,-1.5868300,,Plage et ENS Erretegia,65575,Observation #65575,https://biolit.fr/observations/observation-65575/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Ajonc-scaled.jpg,,,Identifiable +N1,65569,Sortie #65569,https://biolit.fr/sorties/sortie-65569/,ALABERT FRANCOIS,https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/algue-rouge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Baies-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Ajonc-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7304-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7306-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/roseaux-sur-plage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/KT-Boundary-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Figuier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7319-scaled.jpg,10/19/2023 17:49,11.0000000,14.0000000,43.4494220,-1.5868300,,Plage et ENS Erretegia,65577,Observation #65577,https://biolit.fr/observations/observation-65577/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7304-scaled.jpg,,, +N1,65569,Sortie #65569,https://biolit.fr/sorties/sortie-65569/,ALABERT FRANCOIS,https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/algue-rouge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Baies-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Ajonc-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7304-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7306-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/roseaux-sur-plage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/KT-Boundary-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Figuier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7319-scaled.jpg,10/19/2023 17:49,11.0000000,14.0000000,43.4494220,-1.5868300,,Plage et ENS Erretegia,65581,Observation #65581,https://biolit.fr/observations/observation-65581/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Ajonc-scaled.jpg,,,Identifiable +N1,65569,Sortie #65569,https://biolit.fr/sorties/sortie-65569/,ALABERT FRANCOIS,https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/algue-rouge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Baies-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Ajonc-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7304-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7306-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/roseaux-sur-plage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/KT-Boundary-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Figuier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7319-scaled.jpg,10/19/2023 17:49,11.0000000,14.0000000,43.4494220,-1.5868300,,Plage et ENS Erretegia,65583,Observation #65583,https://biolit.fr/observations/observation-65583/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/KT-Boundary-5-scaled.jpg,,,Ne sais pas +N1,65569,Sortie #65569,https://biolit.fr/sorties/sortie-65569/,ALABERT FRANCOIS,https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/algue-rouge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Baies-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Ajonc-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7304-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7306-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/roseaux-sur-plage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/KT-Boundary-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Figuier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7319-scaled.jpg,10/19/2023 17:49,11.0000000,14.0000000,43.4494220,-1.5868300,,Plage et ENS Erretegia,65585,Observation #65585,https://biolit.fr/observations/observation-65585/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7319-scaled.jpg,,,Ne sais pas +N1,65569,Sortie #65569,https://biolit.fr/sorties/sortie-65569/,ALABERT FRANCOIS,https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/algue-rouge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Baies-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Ajonc-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7304-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7306-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/roseaux-sur-plage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/KT-Boundary-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Figuier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7319-scaled.jpg,10/19/2023 17:49,11.0000000,14.0000000,43.4494220,-1.5868300,,Plage et ENS Erretegia,65588,Observation #65588,https://biolit.fr/observations/observation-65588/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7318-scaled.jpg,,,Ne sais pas +N1,65607,Sortie #65607,https://biolit.fr/sorties/sortie-65607/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2023/10/Biolit.jpeg,10/20/2023 10:45,14.0000000,16.0000000,42.5353480000000,3.06434000000000,LABELBLEU,Criques de Porteils (Argelès-sur-mer),65609,Observation #65609,https://biolit.fr/observations/observation-65609/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2023/10/Biolit.jpeg,,,non-identifiable +N1,65629,Sortie #65629,https://biolit.fr/sorties/sortie-65629/,DUPUIS GODEFROY,https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_115320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_123720-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_130708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_114816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_125440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_130333-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_132231-scaled.jpg,10/20/2023 13:16,11.0:15,16.0:15,43.447530000000,-1.58865600000000,,Erreteguia,65631,Observation #65631,https://biolit.fr/observations/observation-65631/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_125440-scaled.jpg,,,non-identifiable +N1,65629,Sortie #65629,https://biolit.fr/sorties/sortie-65629/,DUPUIS GODEFROY,https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_115320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_123720-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_130708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_114816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_125440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_130333-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_132231-scaled.jpg,10/20/2023 13:16,11.0:15,16.0:15,43.447530000000,-1.58865600000000,,Erreteguia,65633,Observation #65633,https://biolit.fr/observations/observation-65633/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_123720-scaled.jpg,,,Identifiable +N1,65629,Sortie #65629,https://biolit.fr/sorties/sortie-65629/,DUPUIS GODEFROY,https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_115320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_123720-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_130708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_114816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_125440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_130333-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_132231-scaled.jpg,10/20/2023 13:16,11.0:15,16.0:15,43.447530000000,-1.58865600000000,,Erreteguia,65635,Observation #65635,https://biolit.fr/observations/observation-65635/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_115320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_114816-scaled.jpg,,TRUE,Identifiable +N1,65629,Sortie #65629,https://biolit.fr/sorties/sortie-65629/,DUPUIS GODEFROY,https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_115320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_123720-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_130708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_114816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_125440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_130333-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_132231-scaled.jpg,10/20/2023 13:16,11.0:15,16.0:15,43.447530000000,-1.58865600000000,,Erreteguia,65637,Observation #65637,https://biolit.fr/observations/observation-65637/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_114816-scaled.jpg,,TRUE,Identifiable +N1,65667,Sortie #65667,https://biolit.fr/sorties/sortie-65667/,Marec Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0118-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0119-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0121-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0122-2-scaled.jpg,10/20/2023 18:00,9.0000000,12.0000000,484851,32632,,Perros GUIREC,,,,,,,,,, +N1,65691,Sortie #65691,https://biolit.fr/sorties/sortie-65691/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140027-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135525-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141546-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-1-scaled.jpg,10/22/2023 9:53,13.0:45,14.0:29,47.9182380,1.8962180,,Plage de St Fourlt,,,,,,,,,, +N1,65709,Sortie #65709,https://biolit.fr/sorties/sortie-65709/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,10/22/2023 10:30,13.0:45,14.0000000,45.9101500,-1.0750420,,Plage de saint froult,65711,Observation #65711,https://biolit.fr/observations/observation-65711/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg,,FALSE,Ne sais pas +N1,65709,Sortie #65709,https://biolit.fr/sorties/sortie-65709/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,10/22/2023 10:30,13.0:45,14.0000000,45.9101500,-1.0750420,,Plage de saint froult,65713,Observation #65713,https://biolit.fr/observations/observation-65713/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,,FALSE,Ne sais pas +N1,65709,Sortie #65709,https://biolit.fr/sorties/sortie-65709/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,10/22/2023 10:30,13.0:45,14.0000000,45.9101500,-1.0750420,,Plage de saint froult,65715,Observation #65715,https://biolit.fr/observations/observation-65715/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg,,FALSE,Ne sais pas +N1,65709,Sortie #65709,https://biolit.fr/sorties/sortie-65709/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,10/22/2023 10:30,13.0:45,14.0000000,45.9101500,-1.0750420,,Plage de saint froult,65717,Observation #65717,https://biolit.fr/observations/observation-65717/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg,,FALSE,Ne sais pas +N1,65709,Sortie #65709,https://biolit.fr/sorties/sortie-65709/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,10/22/2023 10:30,13.0:45,14.0000000,45.9101500,-1.0750420,,Plage de saint froult,65719,Observation #65719,https://biolit.fr/observations/observation-65719/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg,,FALSE,Ne sais pas +N1,65709,Sortie #65709,https://biolit.fr/sorties/sortie-65709/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,10/22/2023 10:30,13.0:45,14.0000000,45.9101500,-1.0750420,,Plage de saint froult,65721,Observation #65721,https://biolit.fr/observations/observation-65721/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg,,FALSE,Ne sais pas +N1,65709,Sortie #65709,https://biolit.fr/sorties/sortie-65709/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,10/22/2023 10:30,13.0:45,14.0000000,45.9101500,-1.0750420,,Plage de saint froult,65723,Observation #65723,https://biolit.fr/observations/observation-65723/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg,,FALSE,Ne sais pas +N1,65709,Sortie #65709,https://biolit.fr/sorties/sortie-65709/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,10/22/2023 10:30,13.0:45,14.0000000,45.9101500,-1.0750420,,Plage de saint froult,65725,Observation #65725,https://biolit.fr/observations/observation-65725/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,,FALSE,Ne sais pas +N1,65709,Sortie #65709,https://biolit.fr/sorties/sortie-65709/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,10/22/2023 10:30,13.0:45,14.0000000,45.9101500,-1.0750420,,Plage de saint froult,65727,Observation #65727,https://biolit.fr/observations/observation-65727/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg,,FALSE,Ne sais pas +N1,65709,Sortie #65709,https://biolit.fr/sorties/sortie-65709/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,10/22/2023 10:30,13.0:45,14.0000000,45.9101500,-1.0750420,,Plage de saint froult,65729,Observation #65729,https://biolit.fr/observations/observation-65729/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg,,FALSE,Ne sais pas +N1,65709,Sortie #65709,https://biolit.fr/sorties/sortie-65709/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,10/22/2023 10:30,13.0:45,14.0000000,45.9101500,-1.0750420,,Plage de saint froult,65731,Observation #65731,https://biolit.fr/observations/observation-65731/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg,,FALSE,Ne sais pas +N1,65709,Sortie #65709,https://biolit.fr/sorties/sortie-65709/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,10/22/2023 10:30,13.0:45,14.0000000,45.9101500,-1.0750420,,Plage de saint froult,65733,Observation #65733,https://biolit.fr/observations/observation-65733/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg,,FALSE,Ne sais pas +N1,65709,Sortie #65709,https://biolit.fr/sorties/sortie-65709/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,10/22/2023 10:30,13.0:45,14.0000000,45.9101500,-1.0750420,,Plage de saint froult,65735,Observation #65735,https://biolit.fr/observations/observation-65735/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg,,FALSE,Ne sais pas +N1,65709,Sortie #65709,https://biolit.fr/sorties/sortie-65709/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,10/22/2023 10:30,13.0:45,14.0000000,45.9101500,-1.0750420,,Plage de saint froult,65737,Observation #65737,https://biolit.fr/observations/observation-65737/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg,,FALSE,Ne sais pas +N1,65709,Sortie #65709,https://biolit.fr/sorties/sortie-65709/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,10/22/2023 10:30,13.0:45,14.0000000,45.9101500,-1.0750420,,Plage de saint froult,65739,Observation #65739,https://biolit.fr/observations/observation-65739/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,,FALSE,Ne sais pas +N1,65709,Sortie #65709,https://biolit.fr/sorties/sortie-65709/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,10/22/2023 10:30,13.0:45,14.0000000,45.9101500,-1.0750420,,Plage de saint froult,65741,Observation #65741,https://biolit.fr/observations/observation-65741/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg,,FALSE,Ne sais pas +N1,65751,Sortie #65751,https://biolit.fr/sorties/sortie-65751/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165343-scaled.jpg,10/22/2023 10:46,16.0000000,17.0000000,45.884899,-1.188313,,Citadelle château d'oleron,65753,Observation #65753,https://biolit.fr/observations/observation-65753/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165409-scaled.jpg,,FALSE,Identifiable +N1,65751,Sortie #65751,https://biolit.fr/sorties/sortie-65751/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165343-scaled.jpg,10/22/2023 10:46,16.0000000,17.0000000,45.884899,-1.188313,,Citadelle château d'oleron,65755,Observation #65755,https://biolit.fr/observations/observation-65755/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165350-scaled.jpg,,FALSE,Ne sais pas +N1,65751,Sortie #65751,https://biolit.fr/sorties/sortie-65751/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165343-scaled.jpg,10/22/2023 10:46,16.0000000,17.0000000,45.884899,-1.188313,,Citadelle château d'oleron,65757,Observation #65757,https://biolit.fr/observations/observation-65757/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165343-scaled.jpg,,TRUE,Ne sais pas +N1,65751,Sortie #65751,https://biolit.fr/sorties/sortie-65751/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165343-scaled.jpg,10/22/2023 10:46,16.0000000,17.0000000,45.884899,-1.188313,,Citadelle château d'oleron,65759,Observation #65759,https://biolit.fr/observations/observation-65759/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165444-scaled.jpg,,FALSE,Ne sais pas +N1,65751,Sortie #65751,https://biolit.fr/sorties/sortie-65751/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165343-scaled.jpg,10/22/2023 10:46,16.0000000,17.0000000,45.884899,-1.188313,,Citadelle château d'oleron,65761,Observation #65761,https://biolit.fr/observations/observation-65761/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165535-scaled.jpg,,FALSE,Ne sais pas +N1,65751,Sortie #65751,https://biolit.fr/sorties/sortie-65751/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165343-scaled.jpg,10/22/2023 10:46,16.0000000,17.0000000,45.884899,-1.188313,,Citadelle château d'oleron,65763,Observation #65763,https://biolit.fr/observations/observation-65763/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170226-scaled.jpg,,FALSE,Ne sais pas +N1,65751,Sortie #65751,https://biolit.fr/sorties/sortie-65751/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165343-scaled.jpg,10/22/2023 10:46,16.0000000,17.0000000,45.884899,-1.188313,,Citadelle château d'oleron,65765,Observation #65765,https://biolit.fr/observations/observation-65765/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170242-scaled.jpg,,TRUE,Ne sais pas +N1,65751,Sortie #65751,https://biolit.fr/sorties/sortie-65751/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165343-scaled.jpg,10/22/2023 10:46,16.0000000,17.0000000,45.884899,-1.188313,,Citadelle château d'oleron,65767,Observation #65767,https://biolit.fr/observations/observation-65767/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170408-scaled.jpg,,TRUE,Ne sais pas +N1,65782,Sortie #65782,https://biolit.fr/sorties/sortie-65782/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125650-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125143-scaled.jpg,10/22/2023 10:56,12.0000000,13.0000000,46.141188,-1.171148,,Plage des minimes,65784,Observation #65784,https://biolit.fr/observations/observation-65784/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130334-scaled.jpg,,TRUE,Ne sais pas +N1,65782,Sortie #65782,https://biolit.fr/sorties/sortie-65782/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125650-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125143-scaled.jpg,10/22/2023 10:56,12.0000000,13.0000000,46.141188,-1.171148,,Plage des minimes,65786,Observation #65786,https://biolit.fr/observations/observation-65786/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130019-scaled.jpg,,FALSE,Ne sais pas +N1,65782,Sortie #65782,https://biolit.fr/sorties/sortie-65782/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125650-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125143-scaled.jpg,10/22/2023 10:56,12.0000000,13.0000000,46.141188,-1.171148,,Plage des minimes,65788,Observation #65788,https://biolit.fr/observations/observation-65788/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130016-scaled.jpg,,TRUE,Ne sais pas +N1,65782,Sortie #65782,https://biolit.fr/sorties/sortie-65782/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125650-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125143-scaled.jpg,10/22/2023 10:56,12.0000000,13.0000000,46.141188,-1.171148,,Plage des minimes,65790,Observation #65790,https://biolit.fr/observations/observation-65790/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125937-scaled.jpg,,FALSE,Ne sais pas +N1,65782,Sortie #65782,https://biolit.fr/sorties/sortie-65782/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125650-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125143-scaled.jpg,10/22/2023 10:56,12.0000000,13.0000000,46.141188,-1.171148,,Plage des minimes,65792,Observation #65792,https://biolit.fr/observations/observation-65792/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125650-scaled.jpg,,FALSE,Ne sais pas +N1,65782,Sortie #65782,https://biolit.fr/sorties/sortie-65782/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125650-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125143-scaled.jpg,10/22/2023 10:56,12.0000000,13.0000000,46.141188,-1.171148,,Plage des minimes,65794,Observation #65794,https://biolit.fr/observations/observation-65794/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125817-scaled.jpg,,FALSE,Ne sais pas +N1,65782,Sortie #65782,https://biolit.fr/sorties/sortie-65782/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125650-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125143-scaled.jpg,10/22/2023 10:56,12.0000000,13.0000000,46.141188,-1.171148,,Plage des minimes,65796,Observation #65796,https://biolit.fr/observations/observation-65796/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125650-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125143-scaled.jpg,,FALSE,Ne sais pas +N1,65782,Sortie #65782,https://biolit.fr/sorties/sortie-65782/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125650-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125143-scaled.jpg,10/22/2023 10:56,12.0000000,13.0000000,46.141188,-1.171148,,Plage des minimes,65798,Observation #65798,https://biolit.fr/observations/observation-65798/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125556-scaled.jpg,,FALSE,Ne sais pas +N1,65782,Sortie #65782,https://biolit.fr/sorties/sortie-65782/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125650-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125143-scaled.jpg,10/22/2023 10:56,12.0000000,13.0000000,46.141188,-1.171148,,Plage des minimes,65800,Observation #65800,https://biolit.fr/observations/observation-65800/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125537-scaled.jpg,,TRUE,Ne sais pas +N1,65782,Sortie #65782,https://biolit.fr/sorties/sortie-65782/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125650-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125143-scaled.jpg,10/22/2023 10:56,12.0000000,13.0000000,46.141188,-1.171148,,Plage des minimes,65802,Observation #65802,https://biolit.fr/observations/observation-65802/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125526-scaled.jpg,,FALSE,Ne sais pas +N1,65782,Sortie #65782,https://biolit.fr/sorties/sortie-65782/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125650-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125143-scaled.jpg,10/22/2023 10:56,12.0000000,13.0000000,46.141188,-1.171148,,Plage des minimes,65804,Observation #65804,https://biolit.fr/observations/observation-65804/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125501-scaled.jpg,,TRUE,Ne sais pas +N1,65782,Sortie #65782,https://biolit.fr/sorties/sortie-65782/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125650-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125143-scaled.jpg,10/22/2023 10:56,12.0000000,13.0000000,46.141188,-1.171148,,Plage des minimes,65806,Observation #65806,https://biolit.fr/observations/observation-65806/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125143-scaled.jpg,,FALSE,Ne sais pas +N1,65815,Sortie #65815,https://biolit.fr/sorties/sortie-65815/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_175138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_1746230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174520-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_172835-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_172730-scaled.jpg,10/22/2023 11:06,17.0000000,18.0000000,46.2541850,-1.1382870,,Pointe saint Clément,65817,Observation #65817,https://biolit.fr/observations/observation-65817/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_175138-scaled.jpg,,TRUE,Ne sais pas +N1,65815,Sortie #65815,https://biolit.fr/sorties/sortie-65815/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_175138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_1746230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174520-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_172835-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_172730-scaled.jpg,10/22/2023 11:06,17.0000000,18.0000000,46.2541850,-1.1382870,,Pointe saint Clément,65821,Observation #65821,https://biolit.fr/observations/observation-65821/,Ocinebrellus inornatus,Bigorneau perceur japonais,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174806-scaled.jpg,,TRUE,Ne sais pas +N1,65815,Sortie #65815,https://biolit.fr/sorties/sortie-65815/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_175138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_1746230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174520-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_172835-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_172730-scaled.jpg,10/22/2023 11:06,17.0000000,18.0000000,46.2541850,-1.1382870,,Pointe saint Clément,65823,Observation #65823,https://biolit.fr/observations/observation-65823/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_1746230-scaled.jpg,,FALSE,Ne sais pas +N1,65815,Sortie #65815,https://biolit.fr/sorties/sortie-65815/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_175138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_1746230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174520-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_172835-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_172730-scaled.jpg,10/22/2023 11:06,17.0000000,18.0000000,46.2541850,-1.1382870,,Pointe saint Clément,65825,Observation #65825,https://biolit.fr/observations/observation-65825/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174520-scaled.jpg,,FALSE,Ne sais pas +N1,65815,Sortie #65815,https://biolit.fr/sorties/sortie-65815/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_175138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_1746230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174520-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_172835-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_172730-scaled.jpg,10/22/2023 11:06,17.0000000,18.0000000,46.2541850,-1.1382870,,Pointe saint Clément,65827,Observation #65827,https://biolit.fr/observations/observation-65827/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174440-scaled.jpg,,FALSE,Ne sais pas +N1,65815,Sortie #65815,https://biolit.fr/sorties/sortie-65815/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_175138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_1746230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174520-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_172835-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_172730-scaled.jpg,10/22/2023 11:06,17.0000000,18.0000000,46.2541850,-1.1382870,,Pointe saint Clément,65829,Observation #65829,https://biolit.fr/observations/observation-65829/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_172835-scaled.jpg,,FALSE,Ne sais pas +N1,65815,Sortie #65815,https://biolit.fr/sorties/sortie-65815/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_175138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_1746230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174520-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_172835-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_172730-scaled.jpg,10/22/2023 11:06,17.0000000,18.0000000,46.2541850,-1.1382870,,Pointe saint Clément,65831,Observation #65831,https://biolit.fr/observations/observation-65831/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_172730-scaled.jpg,,FALSE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65855,Observation #65855,https://biolit.fr/observations/observation-65855/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg,,TRUE,Identifiable +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65857,Observation #65857,https://biolit.fr/observations/observation-65857/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg,,FALSE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65859,Observation #65859,https://biolit.fr/observations/observation-65859/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg,,FALSE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65861,Observation #65861,https://biolit.fr/observations/observation-65861/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg,,TRUE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65863,Observation #65863,https://biolit.fr/observations/observation-65863/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg,,FALSE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65867,Observation #65867,https://biolit.fr/observations/observation-65867/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg,,FALSE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65869,Observation #65869,https://biolit.fr/observations/observation-65869/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg,,FALSE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65871,Observation #65871,https://biolit.fr/observations/observation-65871/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg,,FALSE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65873,Observation #65873,https://biolit.fr/observations/observation-65873/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg,,FALSE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65875,Observation #65875,https://biolit.fr/observations/observation-65875/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg,,FALSE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65877,Observation #65877,https://biolit.fr/observations/observation-65877/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg,,FALSE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65879,Observation #65879,https://biolit.fr/observations/observation-65879/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg,,FALSE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65881,Observation #65881,https://biolit.fr/observations/observation-65881/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg,,FALSE, +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65883,Observation #65883,https://biolit.fr/observations/observation-65883/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg,,FALSE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65885,Observation #65885,https://biolit.fr/observations/observation-65885/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg,,FALSE, +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65887,Observation #65887,https://biolit.fr/observations/observation-65887/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg,,FALSE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65889,Observation #65889,https://biolit.fr/observations/observation-65889/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg,,FALSE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65893,Observation #65893,https://biolit.fr/observations/observation-65893/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg,,FALSE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65895,Observation #65895,https://biolit.fr/observations/observation-65895/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,,FALSE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,67751,Observation #67751,https://biolit.fr/observations/observation-67751/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg,,TRUE,Identifiable +N1,65903,Sortie #65903,https://biolit.fr/sorties/sortie-65903/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/IMG_4766-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/IMG_4767-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Qadra-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Quadra-1-bis-scaled.jpg,10/22/2023 14:20,15.0000000,16.0000000,47.6176180000000,-2.7724740000000,,"Séné, cale de Langle",65905,Observation #65905,https://biolit.fr/observations/observation-65905/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/littorine-1-scaled.jpg,,TRUE,Identifiable +N1,65912,Sortie #65912,https://biolit.fr/sorties/sortie-65912/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/IMG_4766-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/IMG_4767-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/littorine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Qadra-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Quadra-1-bis-1-scaled.jpg,10/22/2023 14:29,15.0000000,16.0000000,47.6175720000000,-2.77245600000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Séné, cale de Langle",65914,Observation #65914,https://biolit.fr/observations/observation-65914/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/littorine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Qadra-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Quadra-1-bis-1-scaled.jpg,,TRUE,Identifiable +N1,65912,Sortie #65912,https://biolit.fr/sorties/sortie-65912/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/IMG_4766-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/IMG_4767-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/littorine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Qadra-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Quadra-1-bis-1-scaled.jpg,10/22/2023 14:29,15.0000000,16.0000000,47.6175720000000,-2.77245600000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Séné, cale de Langle",65916,Observation #65916,https://biolit.fr/observations/observation-65916/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Qadra-2-1-scaled.jpg,,,Identifiable +N1,65912,Sortie #65912,https://biolit.fr/sorties/sortie-65912/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/IMG_4766-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/IMG_4767-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/littorine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Qadra-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Quadra-1-bis-1-scaled.jpg,10/22/2023 14:29,15.0000000,16.0000000,47.6175720000000,-2.77245600000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Séné, cale de Langle",65918,Observation #65918,https://biolit.fr/observations/observation-65918/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Quadra-1-bis-1-scaled.jpg,,,Identifiable +N1,65923,Sortie #65923,https://biolit.fr/sorties/sortie-65923/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Document-de-terrain-BioLit-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Document-de-terrain-BioLit-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Photo-quadrat-1-scaled.jpg,10/24/2023 11:44,11.0000000,12.0000000,47.5913840000000,-2.72325400000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Séné, passage de Saint Armel",,,,,,,,,, +N1,65928,Sortie #65928,https://biolit.fr/sorties/sortie-65928/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Document-de-terrain-BioLit-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Document-de-terrain-BioLit-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Photo-quadrat-1-1-scaled.jpg,10/24/2023 11:50,11.0000000,12.0000000,47.5913840000000,-2.72325400000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Séné, passage de Saint Armel",65930,Observation #65930,https://biolit.fr/observations/observation-65930/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Photo-quadrat-1-1-scaled.jpg,,,Identifiable +N1,65928,Sortie #65928,https://biolit.fr/sorties/sortie-65928/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Document-de-terrain-BioLit-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Document-de-terrain-BioLit-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Photo-quadrat-1-1-scaled.jpg,10/24/2023 11:50,11.0000000,12.0000000,47.5913840000000,-2.72325400000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Séné, passage de Saint Armel",65932,Observation #65932,https://biolit.fr/observations/observation-65932/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Photo-quadrat-1-1-scaled.jpg,,,Identifiable +N1,65965,Sortie #65965,https://biolit.fr/sorties/sortie-65965/,DIRAISON CAROLE,https://biolit.fr/wp-content/uploads/jet-form-builder/734d2fb63f066abc27d8e00a7e48bd03/2023/10/1000014083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/734d2fb63f066abc27d8e00a7e48bd03/2023/10/1000014093-scaled.jpg,10/26/2023 17:14,13.0000000,14.0000000,48.0935940,-4.3220990,,PLAGE DU RIS - DOUARNENEZ,65967,Observation #65967,https://biolit.fr/observations/observation-65967/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/734d2fb63f066abc27d8e00a7e48bd03/2023/10/1000014083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/734d2fb63f066abc27d8e00a7e48bd03/2023/10/1000014093-scaled.jpg,,,Ne sais pas +N1,65965,Sortie #65965,https://biolit.fr/sorties/sortie-65965/,DIRAISON CAROLE,https://biolit.fr/wp-content/uploads/jet-form-builder/734d2fb63f066abc27d8e00a7e48bd03/2023/10/1000014083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/734d2fb63f066abc27d8e00a7e48bd03/2023/10/1000014093-scaled.jpg,10/26/2023 17:14,13.0000000,14.0000000,48.0935940,-4.3220990,,PLAGE DU RIS - DOUARNENEZ,65969,Observation #65969,https://biolit.fr/observations/observation-65969/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/734d2fb63f066abc27d8e00a7e48bd03/2023/10/1000014093-scaled.jpg,,,Ne sais pas +N1,65977,Sortie #65977,https://biolit.fr/sorties/sortie-65977/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/DSC_6854-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/DSC_6856-Littorine-obtuse.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/DSC_6857-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/DSC_6860-Littorine-obtuse.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Releve-3_page-0001.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Releve-3_page-0002.jpg,10/29/2023 13:36,18.0000000,18.0:45,47.6177720000000,-2.80148500000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Arrtadon, cale de Penboch",65979,Observation #65979,https://biolit.fr/observations/observation-65979/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/DSC_6854-scaled.jpg,,TRUE,Identifiable +N1,65977,Sortie #65977,https://biolit.fr/sorties/sortie-65977/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/DSC_6854-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/DSC_6856-Littorine-obtuse.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/DSC_6857-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/DSC_6860-Littorine-obtuse.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Releve-3_page-0001.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Releve-3_page-0002.jpg,10/29/2023 13:36,18.0000000,18.0:45,47.6177720000000,-2.80148500000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Arrtadon, cale de Penboch",65981,Observation #65981,https://biolit.fr/observations/observation-65981/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/DSC_6856-Littorine-obtuse.jpg,,TRUE,Identifiable +N1,65977,Sortie #65977,https://biolit.fr/sorties/sortie-65977/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/DSC_6854-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/DSC_6856-Littorine-obtuse.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/DSC_6857-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/DSC_6860-Littorine-obtuse.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Releve-3_page-0001.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Releve-3_page-0002.jpg,10/29/2023 13:36,18.0000000,18.0:45,47.6177720000000,-2.80148500000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Arrtadon, cale de Penboch",65983,Observation #65983,https://biolit.fr/observations/observation-65983/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/DSC_6860-Littorine-obtuse.jpg,,TRUE, +N1,65991,Sortie #65991,https://biolit.fr/sorties/sortie-65991/,Dufrenoy Loïc,https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004678.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004677.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004672.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004684.jpg,10/29/2023 20:23,10.0000000,11.0000000,43.5135140000000,-1.51555600000000,CPIE Littoral Basque - Euskal Itsasbazterra,Hendaye Deux Jumeaux,65993,Observation #65993,https://biolit.fr/observations/observation-65993/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004678.jpg,,TRUE,Identifiable +N1,65991,Sortie #65991,https://biolit.fr/sorties/sortie-65991/,Dufrenoy Loïc,https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004678.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004677.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004672.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004684.jpg,10/29/2023 20:23,10.0000000,11.0000000,43.5135140000000,-1.51555600000000,CPIE Littoral Basque - Euskal Itsasbazterra,Hendaye Deux Jumeaux,65995,Observation #65995,https://biolit.fr/observations/observation-65995/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004684.jpg,,TRUE,Identifiable +N1,65991,Sortie #65991,https://biolit.fr/sorties/sortie-65991/,Dufrenoy Loïc,https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004678.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004677.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004672.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004684.jpg,10/29/2023 20:23,10.0000000,11.0000000,43.5135140000000,-1.51555600000000,CPIE Littoral Basque - Euskal Itsasbazterra,Hendaye Deux Jumeaux,65997,Observation #65997,https://biolit.fr/observations/observation-65997/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004677.jpg,,TRUE,Identifiable +N1,65991,Sortie #65991,https://biolit.fr/sorties/sortie-65991/,Dufrenoy Loïc,https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004678.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004677.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004672.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004684.jpg,10/29/2023 20:23,10.0000000,11.0000000,43.5135140000000,-1.51555600000000,CPIE Littoral Basque - Euskal Itsasbazterra,Hendaye Deux Jumeaux,65999,Observation #65999,https://biolit.fr/observations/observation-65999/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004672.jpg,,TRUE,Identifiable +N1,66005,Sortie #66005,https://biolit.fr/sorties/sortie-66005/,Céline,https://biolit.fr/wp-content/uploads/jet-form-builder/a124436f212872e36bd7cc12bfe0fd03/2023/10/31A10F54-8DBD-4F6F-95DD-2659F4E7F7DB-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a124436f212872e36bd7cc12bfe0fd03/2023/10/D8BF818A-8074-4560-8159-1A5E055E184B-scaled.jpeg,10/30/2023 11:21,11.0000000,11.0000000,42.97621600000,3.0477670000000,,Leucate,66007,Observation #66007,https://biolit.fr/observations/observation-66007/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/a124436f212872e36bd7cc12bfe0fd03/2023/10/31A10F54-8DBD-4F6F-95DD-2659F4E7F7DB-scaled.jpeg,,TRUE,Identifiable +N1,66005,Sortie #66005,https://biolit.fr/sorties/sortie-66005/,Céline,https://biolit.fr/wp-content/uploads/jet-form-builder/a124436f212872e36bd7cc12bfe0fd03/2023/10/31A10F54-8DBD-4F6F-95DD-2659F4E7F7DB-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a124436f212872e36bd7cc12bfe0fd03/2023/10/D8BF818A-8074-4560-8159-1A5E055E184B-scaled.jpeg,10/30/2023 11:21,11.0000000,11.0000000,42.97621600000,3.0477670000000,,Leucate,66009,Observation #66009,https://biolit.fr/observations/observation-66009/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a124436f212872e36bd7cc12bfe0fd03/2023/10/D8BF818A-8074-4560-8159-1A5E055E184B-scaled.jpeg,,,Ne sais pas +N1,66013,Sortie #66013,https://biolit.fr/sorties/sortie-66013/,Marec Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0118-5-scaled.jpg,10/30/2023 14:15,9.0000000,12.0000000,48.8170260000000,-3.45447300000000,PEP 22,Perros GUIREC,66015,Observation #66015,https://biolit.fr/observations/observation-66015/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0118-5-scaled.jpg,,FALSE,Ne sais pas +N1,66021,Sortie #66021,https://biolit.fr/sorties/sortie-66021/,Marec Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0122-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0132-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0134-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0135-1-scaled.jpg,10/30/2023 14:31,9.0000000,12.0000000,48.8168850000000,-3.45306900000000,PEP 22,Perros GUIREC,66023,Observation #66023,https://biolit.fr/observations/observation-66023/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0122-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0132-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0134-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0135-1-scaled.jpg,,FALSE,Ne sais pas +N1,66021,Sortie #66021,https://biolit.fr/sorties/sortie-66021/,Marec Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0122-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0132-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0134-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0135-1-scaled.jpg,10/30/2023 14:31,9.0000000,12.0000000,48.8168850000000,-3.45306900000000,PEP 22,Perros GUIREC,66025,Observation #66025,https://biolit.fr/observations/observation-66025/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0122-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0132-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0134-1-scaled.jpg,,FALSE,Ne sais pas +N1,66021,Sortie #66021,https://biolit.fr/sorties/sortie-66021/,Marec Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0122-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0132-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0134-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0135-1-scaled.jpg,10/30/2023 14:31,9.0000000,12.0000000,48.8168850000000,-3.45306900000000,PEP 22,Perros GUIREC,66027,Observation #66027,https://biolit.fr/observations/observation-66027/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0134-1-scaled.jpg,,FALSE,Ne sais pas +N1,66030,Sortie #66030,https://biolit.fr/sorties/sortie-66030/,Marec Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0213-scaled.jpg,10/30/2023 14:47,9.0000000,12.0000000,48,3,PEP 22,Perros GUIREC,66032,Observation #66032,https://biolit.fr/observations/observation-66032/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0213-scaled.jpg,,FALSE,Ne sais pas +N1,66036,Sortie #66036,https://biolit.fr/sorties/sortie-66036/,Marec Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0225-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0226-scaled.jpg,10/30/2023 14:50,9.0000000,12.0000000,48,3,PEP 22,Perros GUIREC,66038,Observation #66038,https://biolit.fr/observations/observation-66038/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0225-scaled.jpg,,FALSE,Ne sais pas +N1,66036,Sortie #66036,https://biolit.fr/sorties/sortie-66036/,Marec Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0225-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0226-scaled.jpg,10/30/2023 14:50,9.0000000,12.0000000,48,3,PEP 22,Perros GUIREC,66040,Observation #66040,https://biolit.fr/observations/observation-66040/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0226-scaled.jpg,,FALSE,Ne sais pas +N1,66099,Sortie #66099,https://biolit.fr/sorties/sortie-66099/,Observatoire du Plancton,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Crassotrea-gigas.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/crepidula-fornicata.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/fiche-eni.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/grateloupia-turuturu.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/sargassum-japonica.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Urosalpinx-cinerea.png,10/31/2023 16:52,10.0000000,12.0000000,47.7038460000000,-3.35574400000000,Observatoire du Plancton,Lohic,66101,Observation #66101,https://biolit.fr/observations/observation-66101/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Crassotrea-gigas.png,,TRUE,Identifiable +N1,66099,Sortie #66099,https://biolit.fr/sorties/sortie-66099/,Observatoire du Plancton,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Crassotrea-gigas.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/crepidula-fornicata.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/fiche-eni.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/grateloupia-turuturu.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/sargassum-japonica.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Urosalpinx-cinerea.png,10/31/2023 16:52,10.0000000,12.0000000,47.7038460000000,-3.35574400000000,Observatoire du Plancton,Lohic,66103,Observation #66103,https://biolit.fr/observations/observation-66103/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/crepidula-fornicata.png,,TRUE,Identifiable +N1,66111,Sortie #66111,https://biolit.fr/sorties/sortie-66111/,Observatoire du Plancton,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Crassotrea-gigas-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/crepidula-fornicata-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/grateloupia-turuturu-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/sargassum-japonica-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Urosalpinx-cinerea-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/fiche-eni-1.png,10/31/2023 16:56,10.0000000,12.0000000,47.707756,-3.353581,Observatoire du Plancton,Le Lohic,66113,Observation #66113,https://biolit.fr/observations/observation-66113/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Crassotrea-gigas-1.png,,,Identifiable +N1,66111,Sortie #66111,https://biolit.fr/sorties/sortie-66111/,Observatoire du Plancton,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Crassotrea-gigas-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/crepidula-fornicata-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/grateloupia-turuturu-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/sargassum-japonica-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Urosalpinx-cinerea-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/fiche-eni-1.png,10/31/2023 16:56,10.0000000,12.0000000,47.707756,-3.353581,Observatoire du Plancton,Le Lohic,66115,Observation #66115,https://biolit.fr/observations/observation-66115/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Crassotrea-gigas-1.png,,TRUE,Identifiable +N1,66111,Sortie #66111,https://biolit.fr/sorties/sortie-66111/,Observatoire du Plancton,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Crassotrea-gigas-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/crepidula-fornicata-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/grateloupia-turuturu-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/sargassum-japonica-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Urosalpinx-cinerea-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/fiche-eni-1.png,10/31/2023 16:56,10.0000000,12.0000000,47.707756,-3.353581,Observatoire du Plancton,Le Lohic,66117,Observation #66117,https://biolit.fr/observations/observation-66117/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/crepidula-fornicata-1.png,,TRUE,Identifiable +N1,66111,Sortie #66111,https://biolit.fr/sorties/sortie-66111/,Observatoire du Plancton,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Crassotrea-gigas-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/crepidula-fornicata-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/grateloupia-turuturu-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/sargassum-japonica-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Urosalpinx-cinerea-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/fiche-eni-1.png,10/31/2023 16:56,10.0000000,12.0000000,47.707756,-3.353581,Observatoire du Plancton,Le Lohic,66119,Observation #66119,https://biolit.fr/observations/observation-66119/,Grateloupia turuturu,Grateloupe du Pacifique,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/grateloupia-turuturu-1.png,,TRUE,Identifiable +N1,66111,Sortie #66111,https://biolit.fr/sorties/sortie-66111/,Observatoire du Plancton,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Crassotrea-gigas-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/crepidula-fornicata-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/grateloupia-turuturu-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/sargassum-japonica-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Urosalpinx-cinerea-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/fiche-eni-1.png,10/31/2023 16:56,10.0000000,12.0000000,47.707756,-3.353581,Observatoire du Plancton,Le Lohic,66121,Observation #66121,https://biolit.fr/observations/observation-66121/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/sargassum-japonica-1.png,,TRUE,Identifiable +N1,66111,Sortie #66111,https://biolit.fr/sorties/sortie-66111/,Observatoire du Plancton,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Crassotrea-gigas-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/crepidula-fornicata-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/grateloupia-turuturu-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/sargassum-japonica-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Urosalpinx-cinerea-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/fiche-eni-1.png,10/31/2023 16:56,10.0000000,12.0000000,47.707756,-3.353581,Observatoire du Plancton,Le Lohic,66123,Observation #66123,https://biolit.fr/observations/observation-66123/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Urosalpinx-cinerea-1.png,,TRUE,Identifiable +N1,66111,Sortie #66111,https://biolit.fr/sorties/sortie-66111/,Observatoire du Plancton,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Crassotrea-gigas-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/crepidula-fornicata-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/grateloupia-turuturu-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/sargassum-japonica-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Urosalpinx-cinerea-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/fiche-eni-1.png,10/31/2023 16:56,10.0000000,12.0000000,47.707756,-3.353581,Observatoire du Plancton,Le Lohic,66125,Observation #66125,https://biolit.fr/observations/observation-66125/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/fiche-eni-1.png,,,Ne sais pas +N1,66138,Sortie #66138,https://biolit.fr/sorties/sortie-66138/,HOCHET Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7652-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7530-scaled.jpg,11/01/2023 17:01,8.0000000,11.0000000,47.5700810000000,-2.7240510000000,,Marais de Lasné,66140,Observation #66140,https://biolit.fr/observations/observation-66140/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7530-scaled.jpg,,,Identifiable +N1,66138,Sortie #66138,https://biolit.fr/sorties/sortie-66138/,HOCHET Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7652-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7530-scaled.jpg,11/01/2023 17:01,8.0000000,11.0000000,47.5700810000000,-2.7240510000000,,Marais de Lasné,66142,Observation #66142,https://biolit.fr/observations/observation-66142/,Sterna hirundo,Sterne pierregarin,,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7543-scaled.jpg,,,Identifiable +N1,66138,Sortie #66138,https://biolit.fr/sorties/sortie-66138/,HOCHET Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7652-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7530-scaled.jpg,11/01/2023 17:01,8.0000000,11.0000000,47.5700810000000,-2.7240510000000,,Marais de Lasné,66144,Observation #66144,https://biolit.fr/observations/observation-66144/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7551-scaled.jpg,,TRUE,Identifiable +N1,66138,Sortie #66138,https://biolit.fr/sorties/sortie-66138/,HOCHET Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7652-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7530-scaled.jpg,11/01/2023 17:01,8.0000000,11.0000000,47.5700810000000,-2.7240510000000,,Marais de Lasné,66146,Observation #66146,https://biolit.fr/observations/observation-66146/,Cygnus olor,Cygne tuberculé,,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7599-scaled.jpg,,,Identifiable +N1,66138,Sortie #66138,https://biolit.fr/sorties/sortie-66138/,HOCHET Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7652-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7530-scaled.jpg,11/01/2023 17:01,8.0000000,11.0000000,47.5700810000000,-2.7240510000000,,Marais de Lasné,66148,Observation #66148,https://biolit.fr/observations/observation-66148/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7590-scaled.jpg,,,Identifiable +N1,66138,Sortie #66138,https://biolit.fr/sorties/sortie-66138/,HOCHET Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7652-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7530-scaled.jpg,11/01/2023 17:01,8.0000000,11.0000000,47.5700810000000,-2.7240510000000,,Marais de Lasné,66150,Observation #66150,https://biolit.fr/observations/observation-66150/,Tadorna tadorna,Tadorne de Belon,,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7571-scaled.jpg,,,Identifiable +N1,66138,Sortie #66138,https://biolit.fr/sorties/sortie-66138/,HOCHET Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7652-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7530-scaled.jpg,11/01/2023 17:01,8.0000000,11.0000000,47.5700810000000,-2.7240510000000,,Marais de Lasné,66152,Observation #66152,https://biolit.fr/observations/observation-66152/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7587-scaled.jpg,,TRUE,Identifiable +N1,66138,Sortie #66138,https://biolit.fr/sorties/sortie-66138/,HOCHET Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7652-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7530-scaled.jpg,11/01/2023 17:01,8.0000000,11.0000000,47.5700810000000,-2.7240510000000,,Marais de Lasné,66154,Observation #66154,https://biolit.fr/observations/observation-66154/,Salicornia spp.,Salicorne,,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7652-scaled.jpg,,TRUE,Identifiable +N1,66138,Sortie #66138,https://biolit.fr/sorties/sortie-66138/,HOCHET Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7652-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7530-scaled.jpg,11/01/2023 17:01,8.0000000,11.0000000,47.5700810000000,-2.7240510000000,,Marais de Lasné,66156,Observation #66156,https://biolit.fr/observations/observation-66156/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7647-scaled.jpg,,,Ne sais pas +N1,66138,Sortie #66138,https://biolit.fr/sorties/sortie-66138/,HOCHET Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7652-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7530-scaled.jpg,11/01/2023 17:01,8.0000000,11.0000000,47.5700810000000,-2.7240510000000,,Marais de Lasné,66158,Observation #66158,https://biolit.fr/observations/observation-66158/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7539-scaled.jpg,,,Ne sais pas +N1,66164,Sortie #66164,https://biolit.fr/sorties/sortie-66164/,Rooms Olivier,https://biolit.fr/wp-content/uploads/jet-form-builder/b2af3cc0c12310a687d2e3c1f5659358/2023/11/IMG20231031111608-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b2af3cc0c12310a687d2e3c1f5659358/2023/11/IMG20231031111511-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b2af3cc0c12310a687d2e3c1f5659358/2023/11/IMG20231031111508-scaled.jpg,11/02/2023 16:36,10.0000000,10.0:55,43.0846240000000,5.196533000000,,Frioul,,,,,,,,,, +N1,66169,Sortie #66169,https://biolit.fr/sorties/sortie-66169/,Rooms Olivier,https://biolit.fr/wp-content/uploads/jet-form-builder/b2af3cc0c12310a687d2e3c1f5659358/2023/11/IMG20231031111608-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b2af3cc0c12310a687d2e3c1f5659358/2023/11/IMG20231031111511-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b2af3cc0c12310a687d2e3c1f5659358/2023/11/IMG20231031111508-1-scaled.jpg,11/02/2023 16:39,10.0000000,11.0000000,43.0946530000000,5.185547000,,Frioul,,,,,,,,,, +N1,66173,Sortie #66173,https://biolit.fr/sorties/sortie-66173/,MAMIS GREGORY,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2023/11/action-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2023/11/action2-scaled.jpg,11/03/2023 14:03,14.000001,17.000001,43.0671630000000,5.78567500000000,,ile du grand rouveau,,,,,,,,,, +N1,66195,Sortie #66195,https://biolit.fr/sorties/sortie-66195/,LASSUS Remi,https://biolit.fr/wp-content/uploads/jet-form-builder/640de99411fcf05b0bc92d9c7a96677c/2023/11/Photo-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/640de99411fcf05b0bc92d9c7a96677c/2023/11/Photo-2.jpg,11/06/2023 10:52,13.0000000,16.0000000,43.6716440000000,-1.44150800000000,,Hossegor - La Gravière,66197,Observation #66197,https://biolit.fr/observations/observation-66197/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/640de99411fcf05b0bc92d9c7a96677c/2023/11/Photo-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/640de99411fcf05b0bc92d9c7a96677c/2023/11/Photo-1.jpg,,,Ne sais pas +N1,66195,Sortie #66195,https://biolit.fr/sorties/sortie-66195/,LASSUS Remi,https://biolit.fr/wp-content/uploads/jet-form-builder/640de99411fcf05b0bc92d9c7a96677c/2023/11/Photo-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/640de99411fcf05b0bc92d9c7a96677c/2023/11/Photo-2.jpg,11/06/2023 10:52,13.0000000,16.0000000,43.6716440000000,-1.44150800000000,,Hossegor - La Gravière,66199,Observation #66199,https://biolit.fr/observations/observation-66199/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/640de99411fcf05b0bc92d9c7a96677c/2023/11/Photo-1.jpg,,,Ne sais pas +N1,66283,Sortie #66283,https://biolit.fr/sorties/sortie-66283/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112148-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112225-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_113159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_113204-scaled.jpg,11/07/2023 12:04,10.0:45,12.0000000,48.8119800000000,-3.01693300000000,,Anse de Launay,66285,Observation #66285,https://biolit.fr/observations/observation-66285/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112225-scaled.jpg,,TRUE,Identifiable +N1,66283,Sortie #66283,https://biolit.fr/sorties/sortie-66283/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112148-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112225-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_113159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_113204-scaled.jpg,11/07/2023 12:04,10.0:45,12.0000000,48.8119800000000,-3.01693300000000,,Anse de Launay,66287,Observation #66287,https://biolit.fr/observations/observation-66287/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112528-scaled.jpg,,TRUE,Identifiable +N1,66283,Sortie #66283,https://biolit.fr/sorties/sortie-66283/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112148-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112225-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_113159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_113204-scaled.jpg,11/07/2023 12:04,10.0:45,12.0000000,48.8119800000000,-3.01693300000000,,Anse de Launay,66289,Observation #66289,https://biolit.fr/observations/observation-66289/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_113159-scaled.jpg,,TRUE,Identifiable +N1,66283,Sortie #66283,https://biolit.fr/sorties/sortie-66283/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112148-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112225-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_113159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_113204-scaled.jpg,11/07/2023 12:04,10.0:45,12.0000000,48.8119800000000,-3.01693300000000,,Anse de Launay,66291,Observation #66291,https://biolit.fr/observations/observation-66291/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_113204-scaled.jpg,,TRUE,Identifiable +N1,66353,Sortie #66353,https://biolit.fr/sorties/sortie-66353/,GATTO SANDRINE,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-nouvelle-28102023-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-9.jpg,11/07/2023 15:49,10.0000000,12.0000000,43.0189290000000,3.04973600000000,,Port la Nouvelle,66355,Observation #66355,https://biolit.fr/observations/observation-66355/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-nouvelle-28102023-1.jpg,,,Ne sais pas +N1,66353,Sortie #66353,https://biolit.fr/sorties/sortie-66353/,GATTO SANDRINE,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-nouvelle-28102023-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-9.jpg,11/07/2023 15:49,10.0000000,12.0000000,43.0189290000000,3.04973600000000,,Port la Nouvelle,66357,Observation #66357,https://biolit.fr/observations/observation-66357/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-2.jpg,,,Ne sais pas +N1,66353,Sortie #66353,https://biolit.fr/sorties/sortie-66353/,GATTO SANDRINE,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-nouvelle-28102023-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-9.jpg,11/07/2023 15:49,10.0000000,12.0000000,43.0189290000000,3.04973600000000,,Port la Nouvelle,66359,Observation #66359,https://biolit.fr/observations/observation-66359/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-3.jpg,,,Ne sais pas +N1,66353,Sortie #66353,https://biolit.fr/sorties/sortie-66353/,GATTO SANDRINE,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-nouvelle-28102023-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-9.jpg,11/07/2023 15:49,10.0000000,12.0000000,43.0189290000000,3.04973600000000,,Port la Nouvelle,66361,Observation #66361,https://biolit.fr/observations/observation-66361/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-4.jpg,,,Ne sais pas +N1,66353,Sortie #66353,https://biolit.fr/sorties/sortie-66353/,GATTO SANDRINE,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-nouvelle-28102023-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-9.jpg,11/07/2023 15:49,10.0000000,12.0000000,43.0189290000000,3.04973600000000,,Port la Nouvelle,66363,Observation #66363,https://biolit.fr/observations/observation-66363/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-5.jpg,,,Identifiable +N1,66353,Sortie #66353,https://biolit.fr/sorties/sortie-66353/,GATTO SANDRINE,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-nouvelle-28102023-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-9.jpg,11/07/2023 15:49,10.0000000,12.0000000,43.0189290000000,3.04973600000000,,Port la Nouvelle,66365,Observation #66365,https://biolit.fr/observations/observation-66365/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-7.jpg,,,Identifiable +N1,66353,Sortie #66353,https://biolit.fr/sorties/sortie-66353/,GATTO SANDRINE,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-nouvelle-28102023-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-9.jpg,11/07/2023 15:49,10.0000000,12.0000000,43.0189290000000,3.04973600000000,,Port la Nouvelle,66367,Observation #66367,https://biolit.fr/observations/observation-66367/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-7.jpg,,,Ne sais pas +N1,66353,Sortie #66353,https://biolit.fr/sorties/sortie-66353/,GATTO SANDRINE,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-nouvelle-28102023-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-9.jpg,11/07/2023 15:49,10.0000000,12.0000000,43.0189290000000,3.04973600000000,,Port la Nouvelle,66369,Observation #66369,https://biolit.fr/observations/observation-66369/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-8.jpg,,,Ne sais pas +N1,66353,Sortie #66353,https://biolit.fr/sorties/sortie-66353/,GATTO SANDRINE,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-nouvelle-28102023-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-9.jpg,11/07/2023 15:49,10.0000000,12.0000000,43.0189290000000,3.04973600000000,,Port la Nouvelle,66371,Observation #66371,https://biolit.fr/observations/observation-66371/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-9.jpg,,,Ne sais pas +N1,66424,Sortie #66424,https://biolit.fr/sorties/sortie-66424/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Gibule-ombiliquee.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-quadrat-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commun.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-quadrat-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombilique.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-quadrat-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/01bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/02ne-sait-pas-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/03peut-etre-avec-une-dent--scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/04ne-sait-pas-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/05-littorine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/06-pourpier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/07ne-sait-pas-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/08bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/09ne-sait-pas-scaled.jpg,11/08/2023 13:59,10.0000000,13.0000000,48.8080930000000,-3.01468300000000,,plage du Launay,,,,,,,,,, +N1,66532,Sortie #66532,https://biolit.fr/sorties/sortie-66532/,Couet Dominique,https://biolit.fr/wp-content/uploads/jet-form-builder/887f8c0166d9b17c8c3c43ea3ddbb894/2023/11/IMG_20231112_120153-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/887f8c0166d9b17c8c3c43ea3ddbb894/2023/11/IMG_20231112_105313-scaled.jpg,11/12/2023 15:13,10.0000000,11.0000000,45.9925210000000,-1.38681900000000,,Plage de Chaucre île d'Oleron,,,,,,,,,, +N1,66536,Sortie #66536,https://biolit.fr/sorties/sortie-66536/,Couet Dominique,https://biolit.fr/wp-content/uploads/jet-form-builder/887f8c0166d9b17c8c3c43ea3ddbb894/2023/11/IMG_20231112_120153-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/887f8c0166d9b17c8c3c43ea3ddbb894/2023/11/IMG_20231112_105313-1-scaled.jpg,11/12/2023 15:18,10.0000000,11.0000000,45.994063000000,-1.38669500000000,,Plage de Chaucre Oléron,66538,Observation #66538,https://biolit.fr/observations/observation-66538/,Janthina janthina,Janthine commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/887f8c0166d9b17c8c3c43ea3ddbb894/2023/11/IMG_20231112_120153-1-scaled.jpg,,TRUE,Identifiable +N1,66536,Sortie #66536,https://biolit.fr/sorties/sortie-66536/,Couet Dominique,https://biolit.fr/wp-content/uploads/jet-form-builder/887f8c0166d9b17c8c3c43ea3ddbb894/2023/11/IMG_20231112_120153-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/887f8c0166d9b17c8c3c43ea3ddbb894/2023/11/IMG_20231112_105313-1-scaled.jpg,11/12/2023 15:18,10.0000000,11.0000000,45.994063000000,-1.38669500000000,,Plage de Chaucre Oléron,66540,Observation #66540,https://biolit.fr/observations/observation-66540/,Janthina janthina,Janthine commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/887f8c0166d9b17c8c3c43ea3ddbb894/2023/11/IMG_20231112_120153-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/887f8c0166d9b17c8c3c43ea3ddbb894/2023/11/IMG_20231112_105313-1-scaled.jpg,,,Identifiable +N1,66536,Sortie #66536,https://biolit.fr/sorties/sortie-66536/,Couet Dominique,https://biolit.fr/wp-content/uploads/jet-form-builder/887f8c0166d9b17c8c3c43ea3ddbb894/2023/11/IMG_20231112_120153-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/887f8c0166d9b17c8c3c43ea3ddbb894/2023/11/IMG_20231112_105313-1-scaled.jpg,11/12/2023 15:18,10.0000000,11.0000000,45.994063000000,-1.38669500000000,,Plage de Chaucre Oléron,67963,Observation #67963,https://biolit.fr/observations/observation-67963/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/887f8c0166d9b17c8c3c43ea3ddbb894/2023/11/IMG_20231112_105313-1-scaled.jpg,,,non-identifiable +N1,66548,Sortie #66548,https://biolit.fr/sorties/sortie-66548/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/11/DSC_6864-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/11/DSC_6868-Littorine-obtuse.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/11/DSC_6869-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/11/DSC_6872-Littorine-obtuse.jpg,11/13/2023 16:15,15.0000000,16.0000000,47.5646870000000,-2.907099,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Plage du Berchis Larmor Baden,,,,,,,,,, +N1,66558,Sortie #66558,https://biolit.fr/sorties/sortie-66558/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/11/DSC_6864-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/11/DSC_6869-1-scaled.jpg,11/13/2023 16:52,15.0000000,16.0000000,47.5710100000000,-2.907099,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),PLAGE DU BERCHIS LARMOR BADEN,,,,,,,,,, +N1,66563,Sortie #66563,https://biolit.fr/sorties/sortie-66563/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/11/Donnees-scaled.jpg,11/13/2023 16:58,15.0000000,16.0000000,47.4431240000000,-2.907099,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),PLAGE DU BERCHIS LARMOR BADEN,,,,,,,,,, +N1,66577,Sortie #66577,https://biolit.fr/sorties/sortie-66577/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Gibule-ombiliquee-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-quadrat-1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commune.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-quadrat-2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombiliquee.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-quadrat-3-1.jpg,11/14/2023 11:41,10.0000000,13.0000000,48.8082300000000,-3.01427100000000,Escale Bretagne,plage du Launay,,,,,,,,,, +N1,66630,Sortie #66630,https://biolit.fr/sorties/sortie-66630/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Gibule-ombiliquee-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombiliquee-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/01bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/02ne-sait-pas-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/03peut-etre-avec-une-dent-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/04ne-sait-pas-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/05-littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/06-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/07ne-sait-pas-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/08bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/09ne-sait-pas-1-scaled.jpg,11/14/2023 11:54,10.0000000,13.0000000,48.8079470000000,-3.01435700000000,Escale Bretagne,plage du Launay PLOUBAZLANEC 22,,,,,,,,,, +N1,66665,Sortie #66665,https://biolit.fr/sorties/sortie-66665/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Gibule-ombiliquee-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commune-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombiliquee-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/01bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/02ne-sait-pas-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/03peut-etre-avec-une-dent-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/04ne-sait-pas-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/05-littorine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/06-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/07ne-sait-pas-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/08bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/09ne-sait-pas-2-scaled.jpg,11/14/2023 12:03,10.0000000,13.0000000,48.8080600000000,-3.01452800000000,Escale Bretagne,plage du Launay PLOUBAZLANEC 22,66690,Observation #66690,https://biolit.fr/observations/observation-66690/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Gibule-ombiliquee-3.jpg,,TRUE,Identifiable +N1,66718,Sortie #66718,https://biolit.fr/sorties/sortie-66718/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commune-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombiliquee-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/01bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/02ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/03peut-etre-avec-une-dent-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/04ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/05-littorine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/06-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/07ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/08bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/09ne-sait-pas-3-scaled.jpg,11/14/2023 12:23,10.0000000,13.0000000,48.8080150000000,-3.01444200000000,Escale Bretagne,plage du Launay PLOUBAZLANEC 22,66720,Observation #66720,https://biolit.fr/observations/observation-66720/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle-4.jpg,,TRUE,Identifiable +N1,66718,Sortie #66718,https://biolit.fr/sorties/sortie-66718/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commune-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombiliquee-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/01bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/02ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/03peut-etre-avec-une-dent-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/04ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/05-littorine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/06-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/07ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/08bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/09ne-sait-pas-3-scaled.jpg,11/14/2023 12:23,10.0000000,13.0000000,48.8080150000000,-3.01444200000000,Escale Bretagne,plage du Launay PLOUBAZLANEC 22,66734,Observation #66734,https://biolit.fr/observations/observation-66734/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commune-3.jpg,,TRUE,Identifiable +N1,66718,Sortie #66718,https://biolit.fr/sorties/sortie-66718/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commune-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombiliquee-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/01bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/02ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/03peut-etre-avec-une-dent-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/04ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/05-littorine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/06-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/07ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/08bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/09ne-sait-pas-3-scaled.jpg,11/14/2023 12:23,10.0000000,13.0000000,48.8080150000000,-3.01444200000000,Escale Bretagne,plage du Launay PLOUBAZLANEC 22,66738,Observation #66738,https://biolit.fr/observations/observation-66738/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee-4.jpg,,TRUE,Identifiable +N1,66718,Sortie #66718,https://biolit.fr/sorties/sortie-66718/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commune-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombiliquee-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/01bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/02ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/03peut-etre-avec-une-dent-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/04ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/05-littorine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/06-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/07ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/08bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/09ne-sait-pas-3-scaled.jpg,11/14/2023 12:23,10.0000000,13.0000000,48.8080150000000,-3.01444200000000,Escale Bretagne,plage du Launay PLOUBAZLANEC 22,66758,Observation #66758,https://biolit.fr/observations/observation-66758/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre-4.jpg,,,Identifiable +N1,66718,Sortie #66718,https://biolit.fr/sorties/sortie-66718/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commune-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombiliquee-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/01bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/02ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/03peut-etre-avec-une-dent-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/04ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/05-littorine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/06-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/07ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/08bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/09ne-sait-pas-3-scaled.jpg,11/14/2023 12:23,10.0000000,13.0000000,48.8080150000000,-3.01444200000000,Escale Bretagne,plage du Launay PLOUBAZLANEC 22,66765,Observation #66765,https://biolit.fr/observations/observation-66765/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombiliquee-3.jpg,,TRUE,Identifiable +N1,66718,Sortie #66718,https://biolit.fr/sorties/sortie-66718/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commune-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombiliquee-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/01bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/02ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/03peut-etre-avec-une-dent-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/04ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/05-littorine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/06-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/07ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/08bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/09ne-sait-pas-3-scaled.jpg,11/14/2023 12:23,10.0000000,13.0000000,48.8080150000000,-3.01444200000000,Escale Bretagne,plage du Launay PLOUBAZLANEC 22,66778,Observation #66778,https://biolit.fr/observations/observation-66778/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse-4.jpg,,TRUE,Identifiable +N1,66718,Sortie #66718,https://biolit.fr/sorties/sortie-66718/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commune-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombiliquee-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/01bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/02ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/03peut-etre-avec-une-dent-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/04ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/05-littorine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/06-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/07ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/08bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/09ne-sait-pas-3-scaled.jpg,11/14/2023 12:23,10.0000000,13.0000000,48.8080150000000,-3.01444200000000,Escale Bretagne,plage du Launay PLOUBAZLANEC 22,66780,Observation #66780,https://biolit.fr/observations/observation-66780/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/01bigorneau-3-scaled.jpg,,TRUE,Identifiable +N1,66718,Sortie #66718,https://biolit.fr/sorties/sortie-66718/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commune-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombiliquee-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/01bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/02ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/03peut-etre-avec-une-dent-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/04ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/05-littorine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/06-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/07ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/08bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/09ne-sait-pas-3-scaled.jpg,11/14/2023 12:23,10.0000000,13.0000000,48.8080150000000,-3.01444200000000,Escale Bretagne,plage du Launay PLOUBAZLANEC 22,66782,Observation #66782,https://biolit.fr/observations/observation-66782/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/02ne-sait-pas-3-scaled.jpg,,TRUE,Ne sais pas +N1,66718,Sortie #66718,https://biolit.fr/sorties/sortie-66718/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commune-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombiliquee-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/01bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/02ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/03peut-etre-avec-une-dent-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/04ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/05-littorine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/06-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/07ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/08bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/09ne-sait-pas-3-scaled.jpg,11/14/2023 12:23,10.0000000,13.0000000,48.8080150000000,-3.01444200000000,Escale Bretagne,plage du Launay PLOUBAZLANEC 22,66791,Observation #66791,https://biolit.fr/observations/observation-66791/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/03peut-etre-avec-une-dent-1-3-scaled.jpg,,,Ne sais pas +N1,66718,Sortie #66718,https://biolit.fr/sorties/sortie-66718/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commune-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombiliquee-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/01bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/02ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/03peut-etre-avec-une-dent-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/04ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/05-littorine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/06-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/07ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/08bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/09ne-sait-pas-3-scaled.jpg,11/14/2023 12:23,10.0000000,13.0000000,48.8080150000000,-3.01444200000000,Escale Bretagne,plage du Launay PLOUBAZLANEC 22,66795,Observation #66795,https://biolit.fr/observations/observation-66795/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/04ne-sait-pas-3-scaled.jpg,,TRUE,Ne sais pas +N1,66718,Sortie #66718,https://biolit.fr/sorties/sortie-66718/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commune-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombiliquee-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/01bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/02ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/03peut-etre-avec-une-dent-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/04ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/05-littorine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/06-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/07ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/08bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/09ne-sait-pas-3-scaled.jpg,11/14/2023 12:23,10.0000000,13.0000000,48.8080150000000,-3.01444200000000,Escale Bretagne,plage du Launay PLOUBAZLANEC 22,66799,Observation #66799,https://biolit.fr/observations/observation-66799/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/05-littorine-3-scaled.jpg,,TRUE,Identifiable +N1,66718,Sortie #66718,https://biolit.fr/sorties/sortie-66718/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commune-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombiliquee-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/01bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/02ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/03peut-etre-avec-une-dent-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/04ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/05-littorine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/06-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/07ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/08bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/09ne-sait-pas-3-scaled.jpg,11/14/2023 12:23,10.0000000,13.0000000,48.8080150000000,-3.01444200000000,Escale Bretagne,plage du Launay PLOUBAZLANEC 22,66805,Observation #66805,https://biolit.fr/observations/observation-66805/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/06-pourpre-2-scaled.jpg,,,Identifiable +N1,67029,Sortie #67029,https://biolit.fr/sorties/sortie-67029/,Tassez Florent,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0622-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0623-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0631-scaled.jpg,11/16/2023 10:24,15.0:15,15.0000000,51.0009150000000,2.06886300000000,,Platier d'Oye,67031,Observation #67031,https://biolit.fr/observations/observation-67031/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0629-scaled.jpg,,,Ne sais pas +N1,67029,Sortie #67029,https://biolit.fr/sorties/sortie-67029/,Tassez Florent,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0622-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0623-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0631-scaled.jpg,11/16/2023 10:24,15.0:15,15.0000000,51.0009150000000,2.06886300000000,,Platier d'Oye,67033,Observation #67033,https://biolit.fr/observations/observation-67033/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0623-scaled.jpg,,,Ne sais pas +N1,67029,Sortie #67029,https://biolit.fr/sorties/sortie-67029/,Tassez Florent,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0622-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0623-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0631-scaled.jpg,11/16/2023 10:24,15.0:15,15.0000000,51.0009150000000,2.06886300000000,,Platier d'Oye,67035,Observation #67035,https://biolit.fr/observations/observation-67035/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0622-scaled.jpg,,,Identifiable +N1,67048,Sortie #67048,https://biolit.fr/sorties/sortie-67048/,Tassez Florent,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0644-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0646-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0648-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0649-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0651-scaled.jpg,11/16/2023 10:36,15.0000000,16.0000000,50.993258000000,2.07504300000000,,Platier d'Oye,67050,Observation #67050,https://biolit.fr/observations/observation-67050/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0646-scaled.jpg,,TRUE,Identifiable +N1,67048,Sortie #67048,https://biolit.fr/sorties/sortie-67048/,Tassez Florent,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0644-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0646-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0648-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0649-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0651-scaled.jpg,11/16/2023 10:36,15.0000000,16.0000000,50.993258000000,2.07504300000000,,Platier d'Oye,67074,Observation #67074,https://biolit.fr/observations/observation-67074/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0647-scaled.jpg,,TRUE,Identifiable +N1,67048,Sortie #67048,https://biolit.fr/sorties/sortie-67048/,Tassez Florent,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0644-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0646-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0648-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0649-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0651-scaled.jpg,11/16/2023 10:36,15.0000000,16.0000000,50.993258000000,2.07504300000000,,Platier d'Oye,67095,Observation #67095,https://biolit.fr/observations/observation-67095/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0648-scaled.jpg,,,non-identifiable +N1,67085,Sortie #67085,https://biolit.fr/sorties/sortie-67085/,HERBAUX SEBASTIEN,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0011-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0050-scaled.jpg,11/16/2023 10:39,14.0000000,17.0000000,51.0075000000000,2.07309000000000,,Réserve Naturelle Nationale du Platier d'Oye,67097,Observation #67097,https://biolit.fr/observations/observation-67097/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0011-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0050-scaled.jpg,,,Ne sais pas +N1,67085,Sortie #67085,https://biolit.fr/sorties/sortie-67085/,HERBAUX SEBASTIEN,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0011-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0050-scaled.jpg,11/16/2023 10:39,14.0000000,17.0000000,51.0075000000000,2.07309000000000,,Réserve Naturelle Nationale du Platier d'Oye,67099,Observation #67099,https://biolit.fr/observations/observation-67099/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0004-scaled.jpg,,,Ne sais pas +N1,67085,Sortie #67085,https://biolit.fr/sorties/sortie-67085/,HERBAUX SEBASTIEN,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0011-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0050-scaled.jpg,11/16/2023 10:39,14.0000000,17.0000000,51.0075000000000,2.07309000000000,,Réserve Naturelle Nationale du Platier d'Oye,67101,Observation #67101,https://biolit.fr/observations/observation-67101/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0005-scaled.jpg,,,Ne sais pas +N1,67085,Sortie #67085,https://biolit.fr/sorties/sortie-67085/,HERBAUX SEBASTIEN,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0011-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0050-scaled.jpg,11/16/2023 10:39,14.0000000,17.0000000,51.0075000000000,2.07309000000000,,Réserve Naturelle Nationale du Platier d'Oye,67103,Observation #67103,https://biolit.fr/observations/observation-67103/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0022-scaled.jpg,,,Ne sais pas +N1,67085,Sortie #67085,https://biolit.fr/sorties/sortie-67085/,HERBAUX SEBASTIEN,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0011-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0050-scaled.jpg,11/16/2023 10:39,14.0000000,17.0000000,51.0075000000000,2.07309000000000,,Réserve Naturelle Nationale du Platier d'Oye,67109,Observation #67109,https://biolit.fr/observations/observation-67109/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0049-scaled.jpg,,,Ne sais pas +N1,67128,Sortie #67128,https://biolit.fr/sorties/sortie-67128/,Tassez Florent,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0662-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0663-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0664-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0665-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0668-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0673-scaled.jpg,11/16/2023 10:45,16.0000000,17.0:15,51.0008540000000,2.06783300000000,,Platier d'Oye,67150,Observation #67150,https://biolit.fr/observations/observation-67150/,Salamandra salamandra,Salamandre,,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0662-scaled.jpg,,,Identifiable +N1,67128,Sortie #67128,https://biolit.fr/sorties/sortie-67128/,Tassez Florent,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0662-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0663-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0664-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0665-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0668-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0673-scaled.jpg,11/16/2023 10:45,16.0000000,17.0:15,51.0008540000000,2.06783300000000,,Platier d'Oye,67155,Observation #67155,https://biolit.fr/observations/observation-67155/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0663-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0664-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0665-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0673-scaled.jpg,,,non-identifiable +N1,67128,Sortie #67128,https://biolit.fr/sorties/sortie-67128/,Tassez Florent,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0662-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0663-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0664-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0665-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0668-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0673-scaled.jpg,11/16/2023 10:45,16.0000000,17.0:15,51.0008540000000,2.06783300000000,,Platier d'Oye,67165,Observation #67165,https://biolit.fr/observations/observation-67165/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0668-scaled.jpg,,,non-identifiable +N1,67153,Sortie #67153,https://biolit.fr/sorties/sortie-67153/,HERBAUX SEBASTIEN,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0068-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0069-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0082-scaled.jpg,11/16/2023 10:46,14.0000000,17.0000000,51.0061710000000,2.06219000000000,,Réserve Naturelle Nationale du Platier d'Oye,67166,Observation #67166,https://biolit.fr/observations/observation-67166/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0053-scaled.jpg,,,Ne sais pas +N1,67153,Sortie #67153,https://biolit.fr/sorties/sortie-67153/,HERBAUX SEBASTIEN,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0068-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0069-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0082-scaled.jpg,11/16/2023 10:46,14.0000000,17.0000000,51.0061710000000,2.06219000000000,,Réserve Naturelle Nationale du Platier d'Oye,67169,Observation #67169,https://biolit.fr/observations/observation-67169/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0056-scaled.jpg,,TRUE,Ne sais pas +N1,67153,Sortie #67153,https://biolit.fr/sorties/sortie-67153/,HERBAUX SEBASTIEN,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0068-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0069-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0082-scaled.jpg,11/16/2023 10:46,14.0000000,17.0000000,51.0061710000000,2.06219000000000,,Réserve Naturelle Nationale du Platier d'Oye,67171,Observation #67171,https://biolit.fr/observations/observation-67171/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0058-scaled.jpg,,,Ne sais pas +N1,67153,Sortie #67153,https://biolit.fr/sorties/sortie-67153/,HERBAUX SEBASTIEN,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0068-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0069-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0082-scaled.jpg,11/16/2023 10:46,14.0000000,17.0000000,51.0061710000000,2.06219000000000,,Réserve Naturelle Nationale du Platier d'Oye,67173,Observation #67173,https://biolit.fr/observations/observation-67173/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0064-scaled.jpg,,,Ne sais pas +N1,67153,Sortie #67153,https://biolit.fr/sorties/sortie-67153/,HERBAUX SEBASTIEN,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0068-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0069-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0082-scaled.jpg,11/16/2023 10:46,14.0000000,17.0000000,51.0061710000000,2.06219000000000,,Réserve Naturelle Nationale du Platier d'Oye,67175,Observation #67175,https://biolit.fr/observations/observation-67175/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0069-scaled.jpg,,,Ne sais pas +N1,67153,Sortie #67153,https://biolit.fr/sorties/sortie-67153/,HERBAUX SEBASTIEN,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0068-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0069-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0082-scaled.jpg,11/16/2023 10:46,14.0000000,17.0000000,51.0061710000000,2.06219000000000,,Réserve Naturelle Nationale du Platier d'Oye,67177,Observation #67177,https://biolit.fr/observations/observation-67177/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0071-scaled.jpg,,,Ne sais pas +N1,67153,Sortie #67153,https://biolit.fr/sorties/sortie-67153/,HERBAUX SEBASTIEN,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0068-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0069-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0082-scaled.jpg,11/16/2023 10:46,14.0000000,17.0000000,51.0061710000000,2.06219000000000,,Réserve Naturelle Nationale du Platier d'Oye,67191,Observation #67191,https://biolit.fr/observations/observation-67191/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0077-scaled.jpg,,,Ne sais pas +N1,67189,Sortie #67189,https://biolit.fr/sorties/sortie-67189/,Tassez Florent,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0625-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0626-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0627-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0649-1-scaled.jpg,11/16/2023 10:50,15.0:15,16.0000000,51.0051750000000,2.0767590000000,,Platier d'Oye,67196,Observation #67196,https://biolit.fr/observations/observation-67196/,Ammophila arenaria,Oyat,,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0625-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0626-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0627-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0649-1-scaled.jpg,,,Identifiable +N1,67487,Sortie #67487,https://biolit.fr/sorties/sortie-67487/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2023/11/IMG_1523.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2023/11/IMG_1527-rotated.jpg,11/17/2023 18:13,13.0000000,15.0000000,48.7424,-3.4439170,Escale Bretagne,Landrellec,67489,Observation #67489,https://biolit.fr/observations/observation-67489/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2023/11/IMG_1523.jpg,,,Identifiable +N1,67501,Sortie #67501,https://biolit.fr/sorties/sortie-67501/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_5-scaled.jpg,11/17/2023 18:30,15.0000000,16.0000000,48.6548480000000,-2.02240700000000,,Plage de l'éventail_Fort National_Saint-Malo,67503,Observation #67503,https://biolit.fr/observations/observation-67503/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1-scaled.jpg,,TRUE,Identifiable +N1,67501,Sortie #67501,https://biolit.fr/sorties/sortie-67501/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_5-scaled.jpg,11/17/2023 18:30,15.0000000,16.0000000,48.6548480000000,-2.02240700000000,,Plage de l'éventail_Fort National_Saint-Malo,67505,Observation #67505,https://biolit.fr/observations/observation-67505/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_1-scaled.jpg,,TRUE,Identifiable +N1,67501,Sortie #67501,https://biolit.fr/sorties/sortie-67501/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_5-scaled.jpg,11/17/2023 18:30,15.0000000,16.0000000,48.6548480000000,-2.02240700000000,,Plage de l'éventail_Fort National_Saint-Malo,67507,Observation #67507,https://biolit.fr/observations/observation-67507/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_2-scaled.jpg,,TRUE,Identifiable +N1,67501,Sortie #67501,https://biolit.fr/sorties/sortie-67501/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_5-scaled.jpg,11/17/2023 18:30,15.0000000,16.0000000,48.6548480000000,-2.02240700000000,,Plage de l'éventail_Fort National_Saint-Malo,67511,Observation #67511,https://biolit.fr/observations/observation-67511/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_1-scaled.jpg,,TRUE,Identifiable +N1,67501,Sortie #67501,https://biolit.fr/sorties/sortie-67501/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_5-scaled.jpg,11/17/2023 18:30,15.0000000,16.0000000,48.6548480000000,-2.02240700000000,,Plage de l'éventail_Fort National_Saint-Malo,67514,Observation #67514,https://biolit.fr/observations/observation-67514/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_4-scaled.jpg,,TRUE,Identifiable +N1,67501,Sortie #67501,https://biolit.fr/sorties/sortie-67501/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_5-scaled.jpg,11/17/2023 18:30,15.0000000,16.0000000,48.6548480000000,-2.02240700000000,,Plage de l'éventail_Fort National_Saint-Malo,67516,Observation #67516,https://biolit.fr/observations/observation-67516/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_3-scaled.jpg,,TRUE,Identifiable +N1,67501,Sortie #67501,https://biolit.fr/sorties/sortie-67501/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_5-scaled.jpg,11/17/2023 18:30,15.0000000,16.0000000,48.6548480000000,-2.02240700000000,,Plage de l'éventail_Fort National_Saint-Malo,67518,Observation #67518,https://biolit.fr/observations/observation-67518/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_5-scaled.jpg,,TRUE,Identifiable +N1,67501,Sortie #67501,https://biolit.fr/sorties/sortie-67501/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_5-scaled.jpg,11/17/2023 18:30,15.0000000,16.0000000,48.6548480000000,-2.02240700000000,,Plage de l'éventail_Fort National_Saint-Malo,67520,Observation #67520,https://biolit.fr/observations/observation-67520/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_2-scaled.jpg,,TRUE,Identifiable +N1,67501,Sortie #67501,https://biolit.fr/sorties/sortie-67501/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_5-scaled.jpg,11/17/2023 18:30,15.0000000,16.0000000,48.6548480000000,-2.02240700000000,,Plage de l'éventail_Fort National_Saint-Malo,67522,Observation #67522,https://biolit.fr/observations/observation-67522/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_3-scaled.jpg,,TRUE,Identifiable +N1,67510,Sortie #67510,https://biolit.fr/sorties/sortie-67510/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2023/11/IMG_1509.jpg,11/17/2023 18:35,13.0000000,15.0000000,48.7603190000000,-3.31512500000000,,Landrellec,,,,,,,,,, +N1,67528,Sortie #67528,https://biolit.fr/sorties/sortie-67528/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_3-1-scaled.jpg,11/17/2023 18:49,15.0000000,16.0000000,48.6549530000000,-2.02251400000000,,Plage de l'éventail_Fort National_Saint-Malo,,,,,,,,,, +N1,67571,Sortie #67571,https://biolit.fr/sorties/sortie-67571/,BOGDANSKI Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/IMG_4135-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/7759711344255830993.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/4553559760017753620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/251333675806521702.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/9196695494588381573.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/3326993235815387127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/8348134087021402714.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/3248231024956526962.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/1700418800926-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/1700418800942-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/1700418800934-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/IMG_1444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/IMG_1428-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/IMG_1441-scaled.jpg,11/19/2023 19:42,14.0000000,17.0000000,50.408188,1.591865,,Berck sur Mer,,,,,,,,,, +N1,67587,Sortie #67587,https://biolit.fr/sorties/sortie-67587/,BOGDANSKI Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/IMG_1444-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/IMG_1428-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/IMG_1441-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/IMG_4135-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/7759711344255830993-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/4553559760017753620-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/251333675806521702-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/9196695494588381573-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/3326993235815387127-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/8348134087021402714-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/3248231024956526962-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/1700418800926-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/1700418800942-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/1700418800934-1-scaled.jpg,11/19/2023 19:45,14.0000000,17.0000000,50.408188,1.591865,,Berck sur Mer,67589,Observation #67589,https://biolit.fr/observations/observation-67589/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/IMG_4135-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/251333675806521702-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/8348134087021402714-1.jpg,,,Ne sais pas +N1,67789,Sortie #67789,https://biolit.fr/sorties/sortie-67789/,Allory Pierre-Yves,https://biolit.fr/wp-content/uploads/jet-form-builder/c18157d07e1278e5f88893fd571eb7bf/2023/11/IMG_20231117_143840_966.jpg,11/15/2023 0:00,11.0:26,8.0:26,48.5926600,-2.2871250,,Ghihg,,,,,,,,,, +N1,67897,Sortie #67897,https://biolit.fr/sorties/sortie-67897/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100244-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100428-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101410-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101820-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_103254-scaled.jpg,10/31/2023 0:00,10.0000000,11.0000000,43.2842660000000,5.31592500000000,,Calanque de St Estève,67899,Observation #67899,https://biolit.fr/observations/observation-67899/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100104-scaled.jpg,,,Ne sais pas +N1,67897,Sortie #67897,https://biolit.fr/sorties/sortie-67897/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100244-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100428-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101410-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101820-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_103254-scaled.jpg,10/31/2023 0:00,10.0000000,11.0000000,43.2842660000000,5.31592500000000,,Calanque de St Estève,67901,Observation #67901,https://biolit.fr/observations/observation-67901/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100244-scaled.jpg,,,Ne sais pas +N1,67897,Sortie #67897,https://biolit.fr/sorties/sortie-67897/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100244-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100428-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101410-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101820-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_103254-scaled.jpg,10/31/2023 0:00,10.0000000,11.0000000,43.2842660000000,5.31592500000000,,Calanque de St Estève,67903,Observation #67903,https://biolit.fr/observations/observation-67903/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100405-scaled.jpg,,,Ne sais pas +N1,67897,Sortie #67897,https://biolit.fr/sorties/sortie-67897/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100244-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100428-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101410-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101820-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_103254-scaled.jpg,10/31/2023 0:00,10.0000000,11.0000000,43.2842660000000,5.31592500000000,,Calanque de St Estève,67905,Observation #67905,https://biolit.fr/observations/observation-67905/,Peyssonnelia squamaria,Peyssonnelia,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100428-scaled.jpg,,,Ne sais pas +N1,67897,Sortie #67897,https://biolit.fr/sorties/sortie-67897/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100244-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100428-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101410-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101820-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_103254-scaled.jpg,10/31/2023 0:00,10.0000000,11.0000000,43.2842660000000,5.31592500000000,,Calanque de St Estève,67907,Observation #67907,https://biolit.fr/observations/observation-67907/,Corallina officinalis/caespitosa,Coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100726-scaled.jpg,,,Ne sais pas +N1,67897,Sortie #67897,https://biolit.fr/sorties/sortie-67897/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100244-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100428-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101410-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101820-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_103254-scaled.jpg,10/31/2023 0:00,10.0000000,11.0000000,43.2842660000000,5.31592500000000,,Calanque de St Estève,67909,Observation #67909,https://biolit.fr/observations/observation-67909/,Caulerpa cylindracea,Caulerpe cylindracée,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101129-scaled.jpg,,TRUE,Ne sais pas +N1,67897,Sortie #67897,https://biolit.fr/sorties/sortie-67897/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100244-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100428-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101410-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101820-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_103254-scaled.jpg,10/31/2023 0:00,10.0000000,11.0000000,43.2842660000000,5.31592500000000,,Calanque de St Estève,67911,Observation #67911,https://biolit.fr/observations/observation-67911/,Corallina officinalis/caespitosa,Coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101315-scaled.jpg,,,Ne sais pas +N1,67897,Sortie #67897,https://biolit.fr/sorties/sortie-67897/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100244-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100428-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101410-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101820-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_103254-scaled.jpg,10/31/2023 0:00,10.0000000,11.0000000,43.2842660000000,5.31592500000000,,Calanque de St Estève,67913,Observation #67913,https://biolit.fr/observations/observation-67913/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101410-scaled.jpg,,TRUE,Identifiable +N1,67897,Sortie #67897,https://biolit.fr/sorties/sortie-67897/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100244-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100428-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101410-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101820-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_103254-scaled.jpg,10/31/2023 0:00,10.0000000,11.0000000,43.2842660000000,5.31592500000000,,Calanque de St Estève,67917,Observation #67917,https://biolit.fr/observations/observation-67917/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101820-scaled.jpg,,,Ne sais pas +N1,67897,Sortie #67897,https://biolit.fr/sorties/sortie-67897/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100244-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100428-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101410-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101820-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_103254-scaled.jpg,10/31/2023 0:00,10.0000000,11.0000000,43.2842660000000,5.31592500000000,,Calanque de St Estève,67919,Observation #67919,https://biolit.fr/observations/observation-67919/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_103254-scaled.jpg,,,Ne sais pas +N1,67953,Sortie #67953,https://biolit.fr/sorties/sortie-67953/,CALLENS Estelle,https://biolit.fr/wp-content/uploads/jet-form-builder/f34fc74045a641e92b6e325571064ba1/2023/11/signal-2023-11-22-205440_002.jpeg,11/22/2023 0:00,16.0:38,16.0000000,43.6526860000000,7.15542600000000,,,67955,Observation #67955,https://biolit.fr/observations/observation-67955/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/jet-form-builder/f34fc74045a641e92b6e325571064ba1/2023/11/signal-2023-11-22-205440_002.jpeg,,TRUE,Identifiable +N1,67959,Sortie #67959,https://biolit.fr/sorties/sortie-67959/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/11/IMG_20221124_093800-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/11/IMG_20221124_111328-scaled.jpg,11/22/2023 0:00,10.0000000,10.0000000,43.2398590000000,5.36236900000000,,Marseille,,,,,,,,,, +N1,68068,Sortie #68068,https://biolit.fr/sorties/sortie-68068/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/11/DSC_6854-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/11/DSC_6872-Littorine-obtuse-1.jpg,11/03/2023,15.0000000,16.0000000,47.6193080000000,-2.83048200000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Plage du Perchis (Larmor Baden),68070,Observation #68070,https://biolit.fr/observations/observation-68070/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/11/DSC_6872-Littorine-obtuse-1.jpg,,TRUE,Identifiable +N1,68074,Sortie #68074,https://biolit.fr/sorties/sortie-68074/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/11/DSC_6872-Littorine-obtuse-2.jpg,11/06/2023,15.0000000,16.0000000,47.6142310000000,-2.75399900000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),plage du perchis,,,,,,,,,, +N1,68313,Sortie #68313,https://biolit.fr/sorties/sortie-68313/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2023/11/Crabe-sanguin.png | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2023/11/Crevettes-roses.png | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2023/11/Crabes-verts-juveniles-.png,7/23/2023 0:00,14.0000000,16.0000000,43.7825460000000,-1.41015000000000,,Lac Marin du Port d'Albret,68315,Observation #68315,https://biolit.fr/observations/observation-68315/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2023/11/Crabe-sanguin.png,,,Identifiable +N1,68313,Sortie #68313,https://biolit.fr/sorties/sortie-68313/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2023/11/Crabe-sanguin.png | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2023/11/Crevettes-roses.png | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2023/11/Crabes-verts-juveniles-.png,7/23/2023 0:00,14.0000000,16.0000000,43.7825460000000,-1.41015000000000,,Lac Marin du Port d'Albret,68317,Observation #68317,https://biolit.fr/observations/observation-68317/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2023/11/Crevettes-roses.png,,,Identifiable +N1,68313,Sortie #68313,https://biolit.fr/sorties/sortie-68313/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2023/11/Crabe-sanguin.png | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2023/11/Crevettes-roses.png | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2023/11/Crabes-verts-juveniles-.png,7/23/2023 0:00,14.0000000,16.0000000,43.7825460000000,-1.41015000000000,,Lac Marin du Port d'Albret,68319,Observation #68319,https://biolit.fr/observations/observation-68319/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2023/11/Crabes-verts-juveniles-.png,,,Identifiable +N1,68327,Sortie #68327,https://biolit.fr/sorties/sortie-68327/,Tigreat Justin,https://biolit.fr/wp-content/uploads/jet-form-builder/20e70711914e8599d8692594f2376a13/2023/11/7DA93234-BFB4-48E7-8260-59E8885215E3-scaled.jpeg,11/27/2023 0:00,23.000004,23.000007,41.6689830000000,8.9025250000000,,P,,,,,,,,,, +N1,68353,Sortie #68353,https://biolit.fr/sorties/sortie-68353/,CALLENS Estelle,https://biolit.fr/wp-content/uploads/jet-form-builder/f34fc74045a641e92b6e325571064ba1/2023/11/IMG_20231122_164333-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f34fc74045a641e92b6e325571064ba1/2023/11/IMG_20231122_164341-scaled.jpg,11/22/2023 0:00,10.0:38,10.0000000,43.6527450000000,7.15557600000000,,ZNP Cagnes,68355,Observation #68355,https://biolit.fr/observations/observation-68355/,Cygnus olor,Cygne tuberculé,,https://biolit.fr/wp-content/uploads/jet-form-builder/f34fc74045a641e92b6e325571064ba1/2023/11/IMG_20231122_164333-scaled.jpg,,TRUE,Identifiable +N1,68353,Sortie #68353,https://biolit.fr/sorties/sortie-68353/,CALLENS Estelle,https://biolit.fr/wp-content/uploads/jet-form-builder/f34fc74045a641e92b6e325571064ba1/2023/11/IMG_20231122_164333-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f34fc74045a641e92b6e325571064ba1/2023/11/IMG_20231122_164341-scaled.jpg,11/22/2023 0:00,10.0:38,10.0000000,43.6527450000000,7.15557600000000,,ZNP Cagnes,68357,Observation #68357,https://biolit.fr/observations/observation-68357/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/jet-form-builder/f34fc74045a641e92b6e325571064ba1/2023/11/IMG_20231122_164333-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f34fc74045a641e92b6e325571064ba1/2023/11/IMG_20231122_164341-scaled.jpg,,TRUE,Identifiable +N1,68383,Sortie #68383,https://biolit.fr/sorties/sortie-68383/,SMAHA Pascaline,https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1664-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1696-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1687-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1685-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1684-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1686-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1679-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1678-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1677-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1675-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1672-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1670-20.14.58-1-scaled.jpg,11/03/2023,14.0000000,16.0000000,46.8308290000000,-2.14508100000000,,Notre Dame de Monts,68385,Observation #68385,https://biolit.fr/observations/observation-68385/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1687-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1685-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1684-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1686-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1679-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1672-1-scaled.jpg,,,Identifiable +N1,68383,Sortie #68383,https://biolit.fr/sorties/sortie-68383/,SMAHA Pascaline,https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1664-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1696-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1687-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1685-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1684-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1686-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1679-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1678-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1677-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1675-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1672-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1670-20.14.58-1-scaled.jpg,11/03/2023,14.0000000,16.0000000,46.8308290000000,-2.14508100000000,,Notre Dame de Monts,68387,Observation #68387,https://biolit.fr/observations/observation-68387/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1696-20.14.58-1-scaled.jpg,,,non-identifiable +N1,68383,Sortie #68383,https://biolit.fr/sorties/sortie-68383/,SMAHA Pascaline,https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1664-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1696-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1687-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1685-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1684-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1686-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1679-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1678-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1677-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1675-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1672-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1670-20.14.58-1-scaled.jpg,11/03/2023,14.0000000,16.0000000,46.8308290000000,-2.14508100000000,,Notre Dame de Monts,68389,Observation #68389,https://biolit.fr/observations/observation-68389/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1677-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1678-20.14.58-1-scaled.jpg,,,non-identifiable +N1,68383,Sortie #68383,https://biolit.fr/sorties/sortie-68383/,SMAHA Pascaline,https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1664-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1696-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1687-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1685-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1684-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1686-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1679-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1678-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1677-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1675-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1672-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1670-20.14.58-1-scaled.jpg,11/03/2023,14.0000000,16.0000000,46.8308290000000,-2.14508100000000,,Notre Dame de Monts,68391,Observation #68391,https://biolit.fr/observations/observation-68391/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1664-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1675-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1670-20.14.58-1-scaled.jpg,,,Ne sais pas +N1,68383,Sortie #68383,https://biolit.fr/sorties/sortie-68383/,SMAHA Pascaline,https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1664-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1696-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1687-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1685-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1684-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1686-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1679-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1678-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1677-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1675-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1672-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1670-20.14.58-1-scaled.jpg,11/03/2023,14.0000000,16.0000000,46.8308290000000,-2.14508100000000,,Notre Dame de Monts,68393,Observation #68393,https://biolit.fr/observations/observation-68393/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1685-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1684-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1679-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1686-1-scaled.jpg,,,Identifiable +N1,68383,Sortie #68383,https://biolit.fr/sorties/sortie-68383/,SMAHA Pascaline,https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1664-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1696-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1687-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1685-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1684-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1686-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1679-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1678-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1677-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1675-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1672-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1670-20.14.58-1-scaled.jpg,11/03/2023,14.0000000,16.0000000,46.8308290000000,-2.14508100000000,,Notre Dame de Monts,68395,Observation #68395,https://biolit.fr/observations/observation-68395/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1672-1-scaled.jpg,,,Identifiable +N1,68383,Sortie #68383,https://biolit.fr/sorties/sortie-68383/,SMAHA Pascaline,https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1664-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1696-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1687-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1685-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1684-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1686-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1679-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1678-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1677-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1675-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1672-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1670-20.14.58-1-scaled.jpg,11/03/2023,14.0000000,16.0000000,46.8308290000000,-2.14508100000000,,Notre Dame de Monts,68397,Observation #68397,https://biolit.fr/observations/observation-68397/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1686-1-scaled.jpg,,,Identifiable +N1,68406,Sortie #68406,https://biolit.fr/sorties/sortie-68406/,Djalti benziane Ismahane,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0026439bac721d3c8079228d9f137e/2023/11/IMG_4558-scaled.jpg,11/16/2023 0:00,14.0000000,15.0000000,36.4926360000000,1.1865230000,AIEJE,Plage des pebraire,,,,,,,,,, +N1,68411,Sortie #68411,https://biolit.fr/sorties/sortie-68411/,cinzia leana,https://biolit.fr/wp-content/uploads/jet-form-builder/cfdab7ebc8a66992796b1ffb954ed7b0/2023/11/IMG_4569-scaled.jpg,11/16/2023 0:00,14.0000000,15.0000000,43.3324680000000,5.19770800000000,,plage de la pebraire,68418,Observation #68418,https://biolit.fr/observations/observation-68418/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cfdab7ebc8a66992796b1ffb954ed7b0/2023/11/IMG_4569-scaled.jpg,,,Ne sais pas +N1,68416,Sortie #68416,https://biolit.fr/sorties/sortie-68416/,cherif sabrine,https://biolit.fr/wp-content/uploads/jet-form-builder/943aea8ba373c408600703030224fc6e/2023/11/IMG_4557-scaled.jpg,11/16/2023 0:00,14.0000000,15.0000000,43.2177500000000,5.48492400000000,,plage de la pebraire,,,,,,,,,, +N1,68423,Sortie #68423,https://biolit.fr/sorties/sortie-68423/,cinzia leana,https://biolit.fr/wp-content/uploads/jet-form-builder/cfdab7ebc8a66992796b1ffb954ed7b0/2023/11/IMG_4570-scaled.jpg,11/16/2023 0:00,14.0000000,15.0000000,-55.0842140000000,-176.739807000000,,plage de la dugnes,68425,Observation #68425,https://biolit.fr/observations/observation-68425/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cfdab7ebc8a66992796b1ffb954ed7b0/2023/11/IMG_4570-scaled.jpg,,FALSE,Ne sais pas +N1,68428,Sortie #68428,https://biolit.fr/sorties/sortie-68428/,cherif sabrine,https://biolit.fr/wp-content/uploads/jet-form-builder/943aea8ba373c408600703030224fc6e/2023/11/IMG_4558-scaled.jpg,11/16/2023 0:00,14.0000000,15.0000000,43.1673760000000,5.416260000000,,plage de la pebraire,68430,Observation #68430,https://biolit.fr/observations/observation-68430/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/943aea8ba373c408600703030224fc6e/2023/11/IMG_4558-scaled.jpg,,, +N1,68433,Sortie #68433,https://biolit.fr/sorties/sortie-68433/,cinzia leana,https://biolit.fr/wp-content/uploads/jet-form-builder/cfdab7ebc8a66992796b1ffb954ed7b0/2023/11/IMG_4571-scaled.jpg,11/16/2023 0:00,14.0000000,15.0000000,43.3338490000000,5.19798700000000,,plage de la pebraire,68440,Observation #68440,https://biolit.fr/observations/observation-68440/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cfdab7ebc8a66992796b1ffb954ed7b0/2023/11/IMG_4571-scaled.jpg,,,Identifiable +N1,68436,Sortie #68436,https://biolit.fr/sorties/sortie-68436/,cherif sabrine,https://biolit.fr/wp-content/uploads/jet-form-builder/943aea8ba373c408600703030224fc6e/2023/11/IMG_4559-scaled.jpg,11/16/2023 0:00,14.0000000,15.0000000,43.1662490000000,5.3228760000000,,plage de la pebraire,68438,Observation #68438,https://biolit.fr/observations/observation-68438/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/943aea8ba373c408600703030224fc6e/2023/11/IMG_4559-scaled.jpg,,,Ne sais pas +N1,68443,Sortie #68443,https://biolit.fr/sorties/sortie-68443/,KARA Berfin,https://biolit.fr/wp-content/uploads/jet-form-builder/7fb517a382686994764c7b1453ea0709/2023/11/calypso-scaled.jpg,11/16/2023 0:00,14.0000000,15.0000000,43.3331790000000,-354.801579000000,AIEJE,la plage des pebraire,,,,,,,,,, +N1,68447,Sortie #68447,https://biolit.fr/sorties/sortie-68447/,MOUSSA BEN IDRISSA Mohamed,https://biolit.fr/wp-content/uploads/jet-form-builder/b39d765b3281790ef9b11ecfe9aa0b9e/2023/11/IMG_4580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b39d765b3281790ef9b11ecfe9aa0b9e/2023/11/IMG_4582-scaled.jpg,11/16/2023 0:00,14.0000000,15.0000000,43.3325890000000,5.19755000000000,AIEJE,anthénors,68450,Observation #68450,https://biolit.fr/observations/observation-68450/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b39d765b3281790ef9b11ecfe9aa0b9e/2023/11/IMG_4580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b39d765b3281790ef9b11ecfe9aa0b9e/2023/11/IMG_4582-scaled.jpg,,,Identifiable +N1,68447,Sortie #68447,https://biolit.fr/sorties/sortie-68447/,MOUSSA BEN IDRISSA Mohamed,https://biolit.fr/wp-content/uploads/jet-form-builder/b39d765b3281790ef9b11ecfe9aa0b9e/2023/11/IMG_4580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b39d765b3281790ef9b11ecfe9aa0b9e/2023/11/IMG_4582-scaled.jpg,11/16/2023 0:00,14.0000000,15.0000000,43.3325890000000,5.19755000000000,AIEJE,anthénors,68454,Observation #68454,https://biolit.fr/observations/observation-68454/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b39d765b3281790ef9b11ecfe9aa0b9e/2023/11/IMG_4582-scaled.jpg,,, +N1,68452,Sortie #68452,https://biolit.fr/sorties/sortie-68452/,Djalti benziane Ismahane,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0026439bac721d3c8079228d9f137e/2023/11/IMG_45581-scaled.jpg,11/16/2023 0:00,14.0000000,15.0000000,43.3332130000000,5.19898200000000,AIEJE,Plage des pebraire,,,,,,,,,, +N1,68457,Sortie #68457,https://biolit.fr/sorties/sortie-68457/,cinzia leana,https://biolit.fr/wp-content/uploads/jet-form-builder/cfdab7ebc8a66992796b1ffb954ed7b0/2023/11/IMG_4576-scaled.jpg,11/16/2023 0:00,14.0000000,15.0000000,44.017632000000,0.6756590000000,,plage de la pebraire,68462,Observation #68462,https://biolit.fr/observations/observation-68462/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cfdab7ebc8a66992796b1ffb954ed7b0/2023/11/IMG_4576-scaled.jpg,,FALSE,Identifiable +N1,68460,Sortie #68460,https://biolit.fr/sorties/sortie-68460/,cherif sabrine,https://biolit.fr/wp-content/uploads/jet-form-builder/943aea8ba373c408600703030224fc6e/2023/11/IMG_4570-scaled.jpg,11/16/2023 0:00,14.0000000,15.0000000,43.3338880000000,5.19772700000000,,plage de la pebraire,,,,,,,,,, +N1,68466,Sortie #68466,https://biolit.fr/sorties/sortie-68466/,KARA Berfin,https://biolit.fr/wp-content/uploads/jet-form-builder/7fb517a382686994764c7b1453ea0709/2023/11/IMG_4558-scaled.jpg,11/15/2023 0:00,14.0000000,15.0000000,43.3331160000000,5.19842100000000,AIEJE,la plage des pebraire,68469,Observation #68469,https://biolit.fr/observations/observation-68469/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7fb517a382686994764c7b1453ea0709/2023/11/IMG_4558-scaled.jpg,,,Identifiable +N1,68472,Sortie #68472,https://biolit.fr/sorties/sortie-68472/,KARADENIZ SEDEF,https://biolit.fr/wp-content/uploads/jet-form-builder/6400fc42e593323ecd7623015c774dfa/2023/11/IMG_4573-scaled.jpg,11/16/2023 0:00,14.0000000,15.0000000,43.3339110000000,5.19768900000000,AIEJE,Dugue,68480,Observation #68480,https://biolit.fr/observations/observation-68480/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6400fc42e593323ecd7623015c774dfa/2023/11/IMG_4573-scaled.jpg,,,Identifiable +N1,68478,Sortie #68478,https://biolit.fr/sorties/sortie-68478/,cinzia leana,https://biolit.fr/wp-content/uploads/jet-form-builder/cfdab7ebc8a66992796b1ffb954ed7b0/2023/11/IMG_4576-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cfdab7ebc8a66992796b1ffb954ed7b0/2023/11/IMG_4569-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cfdab7ebc8a66992796b1ffb954ed7b0/2023/11/IMG_4570-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cfdab7ebc8a66992796b1ffb954ed7b0/2023/11/IMG_4571-1-scaled.jpg,11/16/2023 0:00,8.0000000,15.0000000,48.8669180,2.3330820,AIEJE,ensués la redonne,68490,Observation #68490,https://biolit.fr/observations/observation-68490/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cfdab7ebc8a66992796b1ffb954ed7b0/2023/11/IMG_4571-1-scaled.jpg,,FALSE,Identifiable +N1,68483,Sortie #68483,https://biolit.fr/sorties/sortie-68483/,KARA Berfin,https://biolit.fr/wp-content/uploads/jet-form-builder/7fb517a382686994764c7b1453ea0709/2023/11/DORIS-CAPTURE.png,11/16/2023 0:00,14.0000000,15.0000000,43.3596720000000,5.20408600000000,AIEJE,pebraire,68488,Observation #68488,https://biolit.fr/observations/observation-68488/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7fb517a382686994764c7b1453ea0709/2023/11/DORIS-CAPTURE.png,,, +N1,68486,Sortie #68486,https://biolit.fr/sorties/sortie-68486/,Djalti benziane Ismahane,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0026439bac721d3c8079228d9f137e/2023/11/IMG_4565-scaled.jpg,11/16/2023 0:00,14.0000000,15.0000000,-83.488843000000,-6.6796880,AIEJE,pedraire ou dugue,68492,Observation #68492,https://biolit.fr/observations/observation-68492/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0026439bac721d3c8079228d9f137e/2023/11/IMG_4565-scaled.jpg,,,Identifiable +N1,68510,Sortie #68510,https://biolit.fr/sorties/sortie-68510/,DELALANDE Jean,https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3106-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3108-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3119-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3121-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3122-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3124-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3128-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3130-scaled.jpg,11/13/2023 0:00,14.0000000,17.0000000,51.006532,2.065706,,"Plage des Escardines, 62215 Oye-Plage",68512,Observation #68512,https://biolit.fr/observations/observation-68512/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3106-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3108-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3119-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3121-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3122-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3124-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3128-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3130-scaled.jpg,,,Ne sais pas +N1,68520,Sortie #68520,https://biolit.fr/sorties/sortie-68520/,DELALANDE Jean,https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3137-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3144-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3145-scaled.jpg,11/13/2023 0:00,14.0000000,17.0000000,51.006532,2.065706,,"Plage des Escardines, 62215 Oye-Plage",68522,Observation #68522,https://biolit.fr/observations/observation-68522/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3137-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3144-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3145-scaled.jpg,,,Ne sais pas +N1,68528,Sortie #68528,https://biolit.fr/sorties/sortie-68528/,Tigreat Justin,https://biolit.fr/wp-content/uploads/jet-form-builder/20e70711914e8599d8692594f2376a13/2023/11/FEC88DCB-19E8-4819-99BF-C303112352B6.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20e70711914e8599d8692594f2376a13/2023/11/D12E4635-11A5-488E-9447-7E22BAFBEC54.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20e70711914e8599d8692594f2376a13/2023/11/5215D5A7-0A39-4BDA-B119-0B875AFDCE4F.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20e70711914e8599d8692594f2376a13/2023/11/E4A8BF06-219C-4953-A5E6-DF6AFE86A86C.jpeg,11/28/2023 0:00,15.0000000,16.0000000,41.6859860000000,8.91875300000000,,Plage Baracci,68530,Observation #68530,https://biolit.fr/observations/observation-68530/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/20e70711914e8599d8692594f2376a13/2023/11/FEC88DCB-19E8-4819-99BF-C303112352B6.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20e70711914e8599d8692594f2376a13/2023/11/D12E4635-11A5-488E-9447-7E22BAFBEC54.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20e70711914e8599d8692594f2376a13/2023/11/5215D5A7-0A39-4BDA-B119-0B875AFDCE4F.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20e70711914e8599d8692594f2376a13/2023/11/E4A8BF06-219C-4953-A5E6-DF6AFE86A86C.jpeg,,,Identifiable +N1,68561,Sortie #68561,https://biolit.fr/sorties/sortie-68561/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/IMG_20231130_151935_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/IMG_20231130_151944_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/IMG_20231130_152004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/huitreQ1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/patelle-Q1.jpg,11/30/2023 0:00,15.0000000,15.0000000,47.5190000,-2.858107,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Le Rohu (Saint-Gildas de Rhuys,68563,Observation #68563,https://biolit.fr/observations/observation-68563/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/IMG_20231130_151935_1-scaled.jpg,,TRUE,Identifiable +N1,68561,Sortie #68561,https://biolit.fr/sorties/sortie-68561/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/IMG_20231130_151935_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/IMG_20231130_151944_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/IMG_20231130_152004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/huitreQ1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/patelle-Q1.jpg,11/30/2023 0:00,15.0000000,15.0000000,47.5190000,-2.858107,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Le Rohu (Saint-Gildas de Rhuys,68567,Observation #68567,https://biolit.fr/observations/observation-68567/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/IMG_20231130_152004-scaled.jpg,,,Ne sais pas +N1,68561,Sortie #68561,https://biolit.fr/sorties/sortie-68561/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/IMG_20231130_151935_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/IMG_20231130_151944_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/IMG_20231130_152004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/huitreQ1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/patelle-Q1.jpg,11/30/2023 0:00,15.0000000,15.0000000,47.5190000,-2.858107,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Le Rohu (Saint-Gildas de Rhuys,68598,Observation #68598,https://biolit.fr/observations/observation-68598/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/IMG_20231130_151944_1-scaled.jpg,,TRUE,Identifiable +N1,68573,Sortie #68573,https://biolit.fr/sorties/sortie-68573/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/IMG_20231130_151249-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/IMG_20231130_151345-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/huitreQ1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/patelle-Q1-1.jpg,11/30/2023 0:00,15.0000000,15.0000000,47.5190000,-2.858107,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),,68577,Observation #68577,https://biolit.fr/observations/observation-68577/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/huitreQ1-1.jpg,,TRUE,Identifiable +N1,68573,Sortie #68573,https://biolit.fr/sorties/sortie-68573/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/IMG_20231130_151249-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/IMG_20231130_151345-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/huitreQ1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/patelle-Q1-1.jpg,11/30/2023 0:00,15.0000000,15.0000000,47.5190000,-2.858107,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),,68579,Observation #68579,https://biolit.fr/observations/observation-68579/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/patelle-Q1-1.jpg,,TRUE,Identifiable +N1,68604,Sortie #68604,https://biolit.fr/sorties/sortie-68604/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/P_20231210_093529-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/P_20231210_103829-Monodonte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/P_20231210_103913-Littorine-obtuse-scaled.jpg,12/10/2023,9.0:35,9.0000000,47.583293,-2.907099,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Plage du Berchis (Larmor-Baden),68606,Observation #68606,https://biolit.fr/observations/observation-68606/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/P_20231210_093529-scaled.jpg,,TRUE,Identifiable +N1,68604,Sortie #68604,https://biolit.fr/sorties/sortie-68604/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/P_20231210_093529-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/P_20231210_103829-Monodonte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/P_20231210_103913-Littorine-obtuse-scaled.jpg,12/10/2023,9.0:35,9.0000000,47.583293,-2.907099,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Plage du Berchis (Larmor-Baden),68608,Observation #68608,https://biolit.fr/observations/observation-68608/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/P_20231210_103829-Monodonte-scaled.jpg,,TRUE,Identifiable +N1,68604,Sortie #68604,https://biolit.fr/sorties/sortie-68604/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/P_20231210_093529-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/P_20231210_103829-Monodonte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/P_20231210_103913-Littorine-obtuse-scaled.jpg,12/10/2023,9.0:35,9.0000000,47.583293,-2.907099,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Plage du Berchis (Larmor-Baden),68610,Observation #68610,https://biolit.fr/observations/observation-68610/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/P_20231210_103913-Littorine-obtuse-scaled.jpg,,TRUE,Identifiable +N1,68619,Sortie #68619,https://biolit.fr/sorties/sortie-68619/,branchu jacques,https://biolit.fr/wp-content/uploads/jet-form-builder/225716a4af32b64dcc24cac34d695229/2023/12/IMGP2621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/225716a4af32b64dcc24cac34d695229/2023/12/IMGP2622-scaled.jpg,12/17/2023 0:00,14.0000000,17.0000000,50.214057000000,1.55911400000000,,pointe du Ourdel,,,,,,,,,, +N1,68622,Sortie #68622,https://biolit.fr/sorties/sortie-68622/,branchu jacques,https://biolit.fr/wp-content/uploads/jet-form-builder/225716a4af32b64dcc24cac34d695229/2023/12/IMGP2605-scaled.jpg,12/17/2023 0:00,14.0000000,17.0000000,50.2166860000000,1.56988600000000,,pointe du Ourdel,68624,Observation #68624,https://biolit.fr/observations/observation-68624/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/225716a4af32b64dcc24cac34d695229/2023/12/IMGP2605-scaled.jpg,,,Identifiable +N1,68628,Sortie #68628,https://biolit.fr/sorties/sortie-68628/,branchu jacques,https://biolit.fr/wp-content/uploads/jet-form-builder/225716a4af32b64dcc24cac34d695229/2023/12/IMGP2621-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/225716a4af32b64dcc24cac34d695229/2023/12/IMGP2622-1-scaled.jpg,12/17/2023 0:00,14.0000000,17.0000000,50.2169570000000,1.5700360000000,,pointe du Ourdel,68630,Observation #68630,https://biolit.fr/observations/observation-68630/,Halimione portulacoides,Obione faux-pourpier,,https://biolit.fr/wp-content/uploads/jet-form-builder/225716a4af32b64dcc24cac34d695229/2023/12/IMGP2621-1-scaled.jpg,,,Identifiable +N1,68628,Sortie #68628,https://biolit.fr/sorties/sortie-68628/,branchu jacques,https://biolit.fr/wp-content/uploads/jet-form-builder/225716a4af32b64dcc24cac34d695229/2023/12/IMGP2621-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/225716a4af32b64dcc24cac34d695229/2023/12/IMGP2622-1-scaled.jpg,12/17/2023 0:00,14.0000000,17.0000000,50.2169570000000,1.5700360000000,,pointe du Ourdel,68632,Observation #68632,https://biolit.fr/observations/observation-68632/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/225716a4af32b64dcc24cac34d695229/2023/12/IMGP2622-1-scaled.jpg,,,non-identifiable +N1,68667,Sortie #68667,https://biolit.fr/sorties/sortie-68667/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0075_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0359-01_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0405_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0437_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0469_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0480_redimensionner-scaled.jpg,12/03/2023,8.0000000,9.0000000,47.3599220,-2.5210240,,Marais salants de Guérande,68669,Observation #68669,https://biolit.fr/observations/observation-68669/,Ardea alba,Grande aigrette,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0075_redimensionner-scaled.jpg,,TRUE,Identifiable +N1,68667,Sortie #68667,https://biolit.fr/sorties/sortie-68667/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0075_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0359-01_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0405_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0437_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0469_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0480_redimensionner-scaled.jpg,12/03/2023,8.0000000,9.0000000,47.3599220,-2.5210240,,Marais salants de Guérande,68671,Observation #68671,https://biolit.fr/observations/observation-68671/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0359-01_redimensionner-scaled.jpg,,TRUE,Identifiable +N1,68667,Sortie #68667,https://biolit.fr/sorties/sortie-68667/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0075_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0359-01_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0405_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0437_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0469_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0480_redimensionner-scaled.jpg,12/03/2023,8.0000000,9.0000000,47.3599220,-2.5210240,,Marais salants de Guérande,68673,Observation #68673,https://biolit.fr/observations/observation-68673/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0405_redimensionner-scaled.jpg,,TRUE,Identifiable +N1,68667,Sortie #68667,https://biolit.fr/sorties/sortie-68667/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0075_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0359-01_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0405_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0437_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0469_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0480_redimensionner-scaled.jpg,12/03/2023,8.0000000,9.0000000,47.3599220,-2.5210240,,Marais salants de Guérande,68675,Observation #68675,https://biolit.fr/observations/observation-68675/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0437_redimensionner-scaled.jpg,,,Identifiable +N1,68667,Sortie #68667,https://biolit.fr/sorties/sortie-68667/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0075_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0359-01_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0405_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0437_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0469_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0480_redimensionner-scaled.jpg,12/03/2023,8.0000000,9.0000000,47.3599220,-2.5210240,,Marais salants de Guérande,68677,Observation #68677,https://biolit.fr/observations/observation-68677/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0469_redimensionner-scaled.jpg,,,Identifiable +N1,68681,Sortie #68681,https://biolit.fr/sorties/sortie-68681/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0485_redimensionner-scaled.jpg,12/03/2023,8.0000000,9.0000000,47.3356000000000,-2.49830600000000,,Marais salants de Guérande,68683,Observation #68683,https://biolit.fr/observations/observation-68683/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0485_redimensionner-scaled.jpg,,,Identifiable +N1,68695,Sortie #68695,https://biolit.fr/sorties/sortie-68695/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9123_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9151_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9297_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9350_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9516_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9811_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9862_redimensionner-scaled.jpg,06/10/2023,10.0000000,11.0000000,47.3041100000000,-2.47809300000000,,Marais salants de Guérande,68697,Observation #68697,https://biolit.fr/observations/observation-68697/,Sterna hirundo,Sterne pierregarin,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9123_redimensionner-scaled.jpg,,,Identifiable +N1,68695,Sortie #68695,https://biolit.fr/sorties/sortie-68695/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9123_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9151_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9297_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9350_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9516_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9811_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9862_redimensionner-scaled.jpg,06/10/2023,10.0000000,11.0000000,47.3041100000000,-2.47809300000000,,Marais salants de Guérande,68699,Observation #68699,https://biolit.fr/observations/observation-68699/,Recurvirostra avosetta,Avocette élégante,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9151_redimensionner-scaled.jpg,,,Identifiable +N1,68695,Sortie #68695,https://biolit.fr/sorties/sortie-68695/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9123_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9151_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9297_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9350_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9516_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9811_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9862_redimensionner-scaled.jpg,06/10/2023,10.0000000,11.0000000,47.3041100000000,-2.47809300000000,,Marais salants de Guérande,68701,Observation #68701,https://biolit.fr/observations/observation-68701/,Himantopus himantopus,Echasse blanche,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9297_redimensionner-scaled.jpg,,,Identifiable +N1,68695,Sortie #68695,https://biolit.fr/sorties/sortie-68695/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9123_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9151_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9297_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9350_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9516_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9811_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9862_redimensionner-scaled.jpg,06/10/2023,10.0000000,11.0000000,47.3041100000000,-2.47809300000000,,Marais salants de Guérande,68703,Observation #68703,https://biolit.fr/observations/observation-68703/,Recurvirostra avosetta,Avocette élégante,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9350_redimensionner-scaled.jpg,,,Identifiable +N1,68695,Sortie #68695,https://biolit.fr/sorties/sortie-68695/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9123_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9151_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9297_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9350_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9516_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9811_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9862_redimensionner-scaled.jpg,06/10/2023,10.0000000,11.0000000,47.3041100000000,-2.47809300000000,,Marais salants de Guérande,68705,Observation #68705,https://biolit.fr/observations/observation-68705/,Recurvirostra avosetta,Avocette élégante,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9516_redimensionner-scaled.jpg,,,Identifiable +N1,68695,Sortie #68695,https://biolit.fr/sorties/sortie-68695/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9123_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9151_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9297_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9350_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9516_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9811_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9862_redimensionner-scaled.jpg,06/10/2023,10.0000000,11.0000000,47.3041100000000,-2.47809300000000,,Marais salants de Guérande,68707,Observation #68707,https://biolit.fr/observations/observation-68707/,Himantopus himantopus,Echasse blanche,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9811_redimensionner-scaled.jpg,,,Identifiable +N1,68695,Sortie #68695,https://biolit.fr/sorties/sortie-68695/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9123_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9151_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9297_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9350_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9516_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9811_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9862_redimensionner-scaled.jpg,06/10/2023,10.0000000,11.0000000,47.3041100000000,-2.47809300000000,,Marais salants de Guérande,68709,Observation #68709,https://biolit.fr/observations/observation-68709/,Recurvirostra avosetta,Avocette élégante,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9862_redimensionner-scaled.jpg,,,Identifiable +N1,68718,Sortie #68718,https://biolit.fr/sorties/sortie-68718/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC5097_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC5143_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC6633_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7611_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7615_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7901_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC8045_2.jpg,05/05/2023,10.0000000,12.0000000,48.4832280000000,-5.07336600000000,,Ouessant,68720,Observation #68720,https://biolit.fr/observations/observation-68720/,Numenius arquata,Courlis cendré,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC5097_2-scaled.jpg,,TRUE,Identifiable +N1,68718,Sortie #68718,https://biolit.fr/sorties/sortie-68718/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC5097_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC5143_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC6633_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7611_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7615_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7901_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC8045_2.jpg,05/05/2023,10.0000000,12.0000000,48.4832280000000,-5.07336600000000,,Ouessant,68722,Observation #68722,https://biolit.fr/observations/observation-68722/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC5143_2-scaled.jpg,,,Identifiable +N1,68718,Sortie #68718,https://biolit.fr/sorties/sortie-68718/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC5097_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC5143_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC6633_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7611_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7615_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7901_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC8045_2.jpg,05/05/2023,10.0000000,12.0000000,48.4832280000000,-5.07336600000000,,Ouessant,68724,Observation #68724,https://biolit.fr/observations/observation-68724/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC6633_2-scaled.jpg,,TRUE,Identifiable +N1,68718,Sortie #68718,https://biolit.fr/sorties/sortie-68718/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC5097_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC5143_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC6633_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7611_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7615_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7901_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC8045_2.jpg,05/05/2023,10.0000000,12.0000000,48.4832280000000,-5.07336600000000,,Ouessant,68726,Observation #68726,https://biolit.fr/observations/observation-68726/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7611_2-scaled.jpg,,TRUE,Identifiable +N1,68718,Sortie #68718,https://biolit.fr/sorties/sortie-68718/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC5097_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC5143_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC6633_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7611_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7615_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7901_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC8045_2.jpg,05/05/2023,10.0000000,12.0000000,48.4832280000000,-5.07336600000000,,Ouessant,68728,Observation #68728,https://biolit.fr/observations/observation-68728/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7615_2-scaled.jpg,,,Identifiable +N1,68718,Sortie #68718,https://biolit.fr/sorties/sortie-68718/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC5097_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC5143_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC6633_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7611_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7615_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7901_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC8045_2.jpg,05/05/2023,10.0000000,12.0000000,48.4832280000000,-5.07336600000000,,Ouessant,68730,Observation #68730,https://biolit.fr/observations/observation-68730/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7901_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC8045_2.jpg,,,Identifiable +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68767,Observation #68767,https://biolit.fr/observations/observation-68767/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68769,Observation #68769,https://biolit.fr/observations/observation-68769/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68771,Observation #68771,https://biolit.fr/observations/observation-68771/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68774,Observation #68774,https://biolit.fr/observations/observation-68774/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68776,Observation #68776,https://biolit.fr/observations/observation-68776/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg,,, +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68778,Observation #68778,https://biolit.fr/observations/observation-68778/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68780,Observation #68780,https://biolit.fr/observations/observation-68780/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68782,Observation #68782,https://biolit.fr/observations/observation-68782/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68784,Observation #68784,https://biolit.fr/observations/observation-68784/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68786,Observation #68786,https://biolit.fr/observations/observation-68786/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68788,Observation #68788,https://biolit.fr/observations/observation-68788/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68790,Observation #68790,https://biolit.fr/observations/observation-68790/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68792,Observation #68792,https://biolit.fr/observations/observation-68792/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68794,Observation #68794,https://biolit.fr/observations/observation-68794/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68796,Observation #68796,https://biolit.fr/observations/observation-68796/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68798,Observation #68798,https://biolit.fr/observations/observation-68798/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68800,Observation #68800,https://biolit.fr/observations/observation-68800/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68802,Observation #68802,https://biolit.fr/observations/observation-68802/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68804,Observation #68804,https://biolit.fr/observations/observation-68804/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg,,,Ne sais pas +N1,68819,Sortie #68819,https://biolit.fr/sorties/sortie-68819/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5740-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5741-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5743-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5744-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5745-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5746-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5747-scaled.jpeg,12/20/2023 0:00,17.000009,17.0:48,47.1152180000000,-2.15972500000000,,Plage de la gauviniere,,,,,,,,,, +N1,68833,Sortie #68833,https://biolit.fr/sorties/sortie-68833/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5734-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5736-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5737-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5739-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5740-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5741-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5742-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5743-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5744-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5745-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5746-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5747-1-scaled.jpeg,12/19/2023 0:00,16.0:41,17.0:52,47.1151270000000,-2.15985400000000,,Plage de la gauviniere Pornic 44,68835,Observation #68835,https://biolit.fr/observations/observation-68835/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5734-1-scaled.jpeg,,,Ne sais pas +N1,68833,Sortie #68833,https://biolit.fr/sorties/sortie-68833/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5734-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5736-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5737-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5739-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5740-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5741-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5742-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5743-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5744-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5745-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5746-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5747-1-scaled.jpeg,12/19/2023 0:00,16.0:41,17.0:52,47.1151270000000,-2.15985400000000,,Plage de la gauviniere Pornic 44,68837,Observation #68837,https://biolit.fr/observations/observation-68837/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5736-1-scaled.jpeg,,,Ne sais pas +N1,68833,Sortie #68833,https://biolit.fr/sorties/sortie-68833/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5734-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5736-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5737-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5739-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5740-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5741-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5742-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5743-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5744-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5745-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5746-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5747-1-scaled.jpeg,12/19/2023 0:00,16.0:41,17.0:52,47.1151270000000,-2.15985400000000,,Plage de la gauviniere Pornic 44,68839,Observation #68839,https://biolit.fr/observations/observation-68839/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5737-scaled.jpeg,,,Ne sais pas +N1,68833,Sortie #68833,https://biolit.fr/sorties/sortie-68833/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5734-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5736-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5737-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5739-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5740-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5741-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5742-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5743-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5744-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5745-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5746-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5747-1-scaled.jpeg,12/19/2023 0:00,16.0:41,17.0:52,47.1151270000000,-2.15985400000000,,Plage de la gauviniere Pornic 44,68841,Observation #68841,https://biolit.fr/observations/observation-68841/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5739-1-scaled.jpeg,,,Ne sais pas +N1,68833,Sortie #68833,https://biolit.fr/sorties/sortie-68833/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5734-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5736-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5737-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5739-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5740-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5741-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5742-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5743-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5744-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5745-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5746-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5747-1-scaled.jpeg,12/19/2023 0:00,16.0:41,17.0:52,47.1151270000000,-2.15985400000000,,Plage de la gauviniere Pornic 44,68843,Observation #68843,https://biolit.fr/observations/observation-68843/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5740-1-scaled.jpeg,,,Ne sais pas +N1,68833,Sortie #68833,https://biolit.fr/sorties/sortie-68833/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5734-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5736-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5737-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5739-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5740-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5741-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5742-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5743-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5744-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5745-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5746-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5747-1-scaled.jpeg,12/19/2023 0:00,16.0:41,17.0:52,47.1151270000000,-2.15985400000000,,Plage de la gauviniere Pornic 44,68845,Observation #68845,https://biolit.fr/observations/observation-68845/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5741-1-scaled.jpeg,,,Ne sais pas +N1,68833,Sortie #68833,https://biolit.fr/sorties/sortie-68833/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5734-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5736-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5737-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5739-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5740-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5741-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5742-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5743-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5744-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5745-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5746-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5747-1-scaled.jpeg,12/19/2023 0:00,16.0:41,17.0:52,47.1151270000000,-2.15985400000000,,Plage de la gauviniere Pornic 44,68847,Observation #68847,https://biolit.fr/observations/observation-68847/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5742-1-scaled.jpeg,,,Ne sais pas +N1,68833,Sortie #68833,https://biolit.fr/sorties/sortie-68833/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5734-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5736-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5737-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5739-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5740-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5741-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5742-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5743-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5744-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5745-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5746-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5747-1-scaled.jpeg,12/19/2023 0:00,16.0:41,17.0:52,47.1151270000000,-2.15985400000000,,Plage de la gauviniere Pornic 44,68849,Observation #68849,https://biolit.fr/observations/observation-68849/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5743-1-scaled.jpeg,,,Ne sais pas +N1,68833,Sortie #68833,https://biolit.fr/sorties/sortie-68833/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5734-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5736-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5737-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5739-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5740-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5741-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5742-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5743-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5744-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5745-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5746-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5747-1-scaled.jpeg,12/19/2023 0:00,16.0:41,17.0:52,47.1151270000000,-2.15985400000000,,Plage de la gauviniere Pornic 44,68851,Observation #68851,https://biolit.fr/observations/observation-68851/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5744-1-scaled.jpeg,,,Ne sais pas +N1,68833,Sortie #68833,https://biolit.fr/sorties/sortie-68833/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5734-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5736-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5737-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5739-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5740-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5741-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5742-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5743-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5744-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5745-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5746-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5747-1-scaled.jpeg,12/19/2023 0:00,16.0:41,17.0:52,47.1151270000000,-2.15985400000000,,Plage de la gauviniere Pornic 44,68853,Observation #68853,https://biolit.fr/observations/observation-68853/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5745-1-scaled.jpeg,,,Ne sais pas +N1,68833,Sortie #68833,https://biolit.fr/sorties/sortie-68833/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5734-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5736-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5737-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5739-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5740-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5741-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5742-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5743-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5744-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5745-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5746-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5747-1-scaled.jpeg,12/19/2023 0:00,16.0:41,17.0:52,47.1151270000000,-2.15985400000000,,Plage de la gauviniere Pornic 44,68855,Observation #68855,https://biolit.fr/observations/observation-68855/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5746-1-scaled.jpeg,,,Ne sais pas +N1,68833,Sortie #68833,https://biolit.fr/sorties/sortie-68833/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5734-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5736-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5737-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5739-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5740-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5741-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5742-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5743-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5744-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5745-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5746-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5747-1-scaled.jpeg,12/19/2023 0:00,16.0:41,17.0:52,47.1151270000000,-2.15985400000000,,Plage de la gauviniere Pornic 44,68857,Observation #68857,https://biolit.fr/observations/observation-68857/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5747-1-scaled.jpeg,,,Ne sais pas +N1,68870,Sortie #68870,https://biolit.fr/sorties/sortie-68870/,LEVENARD Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2121-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2121-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2140-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2165-scaled.jpg,9/15/2023 0:00,9.0:31,9.0:53,48.650733000000,-2.21880900000000,,Saint Cast le Guildo,68872,Observation #68872,https://biolit.fr/observations/observation-68872/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2121-scaled.jpg,,TRUE,Identifiable +N1,68877,Sortie #68877,https://biolit.fr/sorties/sortie-68877/,LEVENARD Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2145-1-scaled.jpg,9/15/2023 0:00,9.0:41,9.0:41,48.650733000000,-2.21880900000000,,Saint Cast le Guildo,68879,Observation #68879,https://biolit.fr/observations/observation-68879/,Sepia officinalis,Seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2145-1-scaled.jpg,,TRUE,Identifiable +N1,68882,Sortie #68882,https://biolit.fr/sorties/sortie-68882/,LEVENARD Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2152-1-scaled.jpg,9/15/2023 0:00,9.0:45,9.0:45,48.650733000000,-2.21880900000000,,Saint Cast le Guildo,68884,Observation #68884,https://biolit.fr/observations/observation-68884/,Eunicella cavolini,Gorgone jaune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2152-1-scaled.jpg,,TRUE,Identifiable +N1,68887,Sortie #68887,https://biolit.fr/sorties/sortie-68887/,LEVENARD Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2140-1-scaled.jpg,9/15/2023 0:00,9.0:36,9.0:36,48.650733000000,-2.21880900000000,,Saint Cast le Guildo,68889,Observation #68889,https://biolit.fr/observations/observation-68889/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2140-1-scaled.jpg,,TRUE,Ne sais pas +N1,68892,Sortie #68892,https://biolit.fr/sorties/sortie-68892/,LEVENARD Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2165-1-scaled.jpg,9/15/2023 0:00,9.0:53,9.0:53,48.650733000000,-2.21880900000000,,Saint Cast le Guildo,68894,Observation #68894,https://biolit.fr/observations/observation-68894/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2165-1-scaled.jpg,,TRUE,Identifiable +N1,68897,Sortie #68897,https://biolit.fr/sorties/sortie-68897/,LEVENARD Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2180-scaled.jpg,9/15/2023 0:00,15.0:42,15.0:42,48.650733000000,-2.21880900000000,,Saint Cast le Guildo,68899,Observation #68899,https://biolit.fr/observations/observation-68899/,Pollachius pollachius,Lieu jaune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2180-scaled.jpg,,,Identifiable +N1,68902,Sortie #68902,https://biolit.fr/sorties/sortie-68902/,LEVENARD Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2193-scaled.jpg,9/15/2023 0:00,15.0:44,15.0:44,48.650733000000,-2.21880900000000,,Saint Cast le Guildo,68904,Observation #68904,https://biolit.fr/observations/observation-68904/,Homarus gammarus,Homard européen,,https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2193-scaled.jpg,,TRUE,Identifiable +N1,68907,Sortie #68907,https://biolit.fr/sorties/sortie-68907/,LEVENARD Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2121-2-scaled.jpg,9/15/2023 0:00,9.0:31,9.0:31,48.650733000000,-2.21880900000000,,Saint Cast le Guildo,68909,Observation #68909,https://biolit.fr/observations/observation-68909/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2121-2-scaled.jpg,,,Identifiable +N1,68913,Sortie #68913,https://biolit.fr/sorties/sortie-68913/,Berdon Mouhoud Christine,https://biolit.fr/wp-content/uploads/jet-form-builder/1975b259327839ceb4235febaa38f3b2/2023/12/IMG_6925-1-scaled.jpeg,12/27/2023 0:00,14.0:44,14.0:46,48.8597430000000,-3.13166100000000,,Port la chaîne 22610,68915,Observation #68915,https://biolit.fr/observations/observation-68915/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1975b259327839ceb4235febaa38f3b2/2023/12/IMG_6925-1-scaled.jpeg,,,Identifiable +N1,68925,Sortie #68925,https://biolit.fr/sorties/sortie-68925/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_113116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_113250-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_110529354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_110632117-scaled.jpg,12/26/2023 0:00,11.0000000,11.0000000,43.2102500000000,5.42035100000000,,Plage de la calanque de Sormiou,68927,Observation #68927,https://biolit.fr/observations/observation-68927/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112126-scaled.jpg,,TRUE,Identifiable +N1,68925,Sortie #68925,https://biolit.fr/sorties/sortie-68925/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_113116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_113250-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_110529354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_110632117-scaled.jpg,12/26/2023 0:00,11.0000000,11.0000000,43.2102500000000,5.42035100000000,,Plage de la calanque de Sormiou,68929,Observation #68929,https://biolit.fr/observations/observation-68929/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112855-scaled.jpg,,,Ne sais pas +N1,68925,Sortie #68925,https://biolit.fr/sorties/sortie-68925/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_113116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_113250-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_110529354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_110632117-scaled.jpg,12/26/2023 0:00,11.0000000,11.0000000,43.2102500000000,5.42035100000000,,Plage de la calanque de Sormiou,68931,Observation #68931,https://biolit.fr/observations/observation-68931/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112939-scaled.jpg,,,Ne sais pas +N1,68925,Sortie #68925,https://biolit.fr/sorties/sortie-68925/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_113116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_113250-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_110529354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_110632117-scaled.jpg,12/26/2023 0:00,11.0000000,11.0000000,43.2102500000000,5.42035100000000,,Plage de la calanque de Sormiou,68933,Observation #68933,https://biolit.fr/observations/observation-68933/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_113116-scaled.jpg,,,Ne sais pas +N1,68925,Sortie #68925,https://biolit.fr/sorties/sortie-68925/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_113116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_113250-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_110529354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_110632117-scaled.jpg,12/26/2023 0:00,11.0000000,11.0000000,43.2102500000000,5.42035100000000,,Plage de la calanque de Sormiou,68935,Observation #68935,https://biolit.fr/observations/observation-68935/,Halopteris scoparia,Algue balai,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_113250-scaled.jpg,,,Ne sais pas +N1,68925,Sortie #68925,https://biolit.fr/sorties/sortie-68925/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_113116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_113250-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_110529354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_110632117-scaled.jpg,12/26/2023 0:00,11.0000000,11.0000000,43.2102500000000,5.42035100000000,,Plage de la calanque de Sormiou,68937,Observation #68937,https://biolit.fr/observations/observation-68937/,Flabellia petiolata,Udotée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_110529354-scaled.jpg,,TRUE,Ne sais pas +N1,68925,Sortie #68925,https://biolit.fr/sorties/sortie-68925/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_113116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_113250-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_110529354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_110632117-scaled.jpg,12/26/2023 0:00,11.0000000,11.0000000,43.2102500000000,5.42035100000000,,Plage de la calanque de Sormiou,68939,Observation #68939,https://biolit.fr/observations/observation-68939/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_110632117-scaled.jpg,,,Ne sais pas +N1,68943,Sortie #68943,https://biolit.fr/sorties/sortie-68943/,Desclaux Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/be27204f0ab937e376516f317f439e90/2023/12/IMG_20231226_170834-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/be27204f0ab937e376516f317f439e90/2023/12/IMG_20231226_170831-scaled.jpg,12/26/2023 0:00,17.0000000,17.0000000,43.2604680000000,5.28810200000000,,Cap caveau Frioul,68945,Observation #68945,https://biolit.fr/observations/observation-68945/,Pyrosoma atlanticum,Pyrosome,,https://biolit.fr/wp-content/uploads/jet-form-builder/be27204f0ab937e376516f317f439e90/2023/12/IMG_20231226_170831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/be27204f0ab937e376516f317f439e90/2023/12/IMG_20231226_170834-scaled.jpg,,TRUE,Ne sais pas +N1,68943,Sortie #68943,https://biolit.fr/sorties/sortie-68943/,Desclaux Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/be27204f0ab937e376516f317f439e90/2023/12/IMG_20231226_170834-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/be27204f0ab937e376516f317f439e90/2023/12/IMG_20231226_170831-scaled.jpg,12/26/2023 0:00,17.0000000,17.0000000,43.2604680000000,5.28810200000000,,Cap caveau Frioul,68949,Observation #68949,https://biolit.fr/observations/observation-68949/,Pyrosoma atlanticum,Pyrosome,,https://biolit.fr/wp-content/uploads/jet-form-builder/be27204f0ab937e376516f317f439e90/2023/12/IMG_20231226_170834-scaled.jpg,,TRUE,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,68991,Observation #68991,https://biolit.fr/observations/observation-68991/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,68993,Observation #68993,https://biolit.fr/observations/observation-68993/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,68995,Observation #68995,https://biolit.fr/observations/observation-68995/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,68997,Observation #68997,https://biolit.fr/observations/observation-68997/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,68999,Observation #68999,https://biolit.fr/observations/observation-68999/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,69001,Observation #69001,https://biolit.fr/observations/observation-69001/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,69003,Observation #69003,https://biolit.fr/observations/observation-69003/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,69005,Observation #69005,https://biolit.fr/observations/observation-69005/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,69007,Observation #69007,https://biolit.fr/observations/observation-69007/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,69009,Observation #69009,https://biolit.fr/observations/observation-69009/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,69011,Observation #69011,https://biolit.fr/observations/observation-69011/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg,,, +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,69013,Observation #69013,https://biolit.fr/observations/observation-69013/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,69015,Observation #69015,https://biolit.fr/observations/observation-69015/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,69017,Observation #69017,https://biolit.fr/observations/observation-69017/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,69019,Observation #69019,https://biolit.fr/observations/observation-69019/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,69021,Observation #69021,https://biolit.fr/observations/observation-69021/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,69023,Observation #69023,https://biolit.fr/observations/observation-69023/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,69025,Observation #69025,https://biolit.fr/observations/observation-69025/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,69027,Observation #69027,https://biolit.fr/observations/observation-69027/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,,, +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69051,Observation #69051,https://biolit.fr/observations/observation-69051/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg,,,non-identifiable +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69053,Observation #69053,https://biolit.fr/observations/observation-69053/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg,,,non-identifiable +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69055,Observation #69055,https://biolit.fr/observations/observation-69055/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg,,,Ne sais pas +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69057,Observation #69057,https://biolit.fr/observations/observation-69057/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg,,,Ne sais pas +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69059,Observation #69059,https://biolit.fr/observations/observation-69059/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg,,,Ne sais pas +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69061,Observation #69061,https://biolit.fr/observations/observation-69061/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg,,,Ne sais pas +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69063,Observation #69063,https://biolit.fr/observations/observation-69063/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg,,,Ne sais pas +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69065,Observation #69065,https://biolit.fr/observations/observation-69065/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg,,,Ne sais pas +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69067,Observation #69067,https://biolit.fr/observations/observation-69067/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg,,,Ne sais pas +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69069,Observation #69069,https://biolit.fr/observations/observation-69069/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg,,,Ne sais pas +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69071,Observation #69071,https://biolit.fr/observations/observation-69071/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg,,,Ne sais pas +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69073,Observation #69073,https://biolit.fr/observations/observation-69073/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg,,,Ne sais pas +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69075,Observation #69075,https://biolit.fr/observations/observation-69075/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg,,,Ne sais pas +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69077,Observation #69077,https://biolit.fr/observations/observation-69077/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg,,,Ne sais pas +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69079,Observation #69079,https://biolit.fr/observations/observation-69079/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg,,,Ne sais pas +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69081,Observation #69081,https://biolit.fr/observations/observation-69081/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg,,,Ne sais pas +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69083,Observation #69083,https://biolit.fr/observations/observation-69083/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg,,,Ne sais pas +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69085,Observation #69085,https://biolit.fr/observations/observation-69085/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg,,,Ne sais pas +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69087,Observation #69087,https://biolit.fr/observations/observation-69087/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,,,Ne sais pas +N1,69108,Sortie #69108,https://biolit.fr/sorties/sortie-69108/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070139-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0411850000000,-1.60039200000000,,Agon-Coutainville,,,,,,,,,, +N1,69128,Sortie #69128,https://biolit.fr/sorties/sortie-69128/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070165-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070173-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0622510000000,-1.60538400000000,,Blainville,,,,,,,,,, +N1,69146,Sortie #69146,https://biolit.fr/sorties/sortie-69146/,Menandez Maxence,https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/algues-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/algues-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/algues-et-coquillages.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/algues-et-gland.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/algues-et-seche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/algues-gland-et-seches.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/algues.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/crabe.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/meduse-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/meduse.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/oiseau-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/pin-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/pin.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/plume.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/pomme-de-pin.jpg,12/21/2023 0:00,14.0000000,17.0000000,44.6594520000000,-1.19385100000000,,Arcachon - perreire,69150,Observation #69150,https://biolit.fr/observations/observation-69150/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/algues-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/algues-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/algues-et-coquillages.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/algues-et-gland.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/algues-et-seche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/algues-gland-et-seches.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/algues.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/crabe.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/meduse-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/meduse.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/oiseau-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/pin-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/pin.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/plume.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/pomme-de-pin.jpg,,,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69172,Observation #69172,https://biolit.fr/observations/observation-69172/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg,,,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69174,Observation #69174,https://biolit.fr/observations/observation-69174/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg,,TRUE,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69176,Observation #69176,https://biolit.fr/observations/observation-69176/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg,,TRUE,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69178,Observation #69178,https://biolit.fr/observations/observation-69178/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg,,TRUE,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69180,Observation #69180,https://biolit.fr/observations/observation-69180/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg,,,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69182,Observation #69182,https://biolit.fr/observations/observation-69182/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg,,,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69184,Observation #69184,https://biolit.fr/observations/observation-69184/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg,,TRUE,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69186,Observation #69186,https://biolit.fr/observations/observation-69186/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg,,TRUE,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69188,Observation #69188,https://biolit.fr/observations/observation-69188/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg,,,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69190,Observation #69190,https://biolit.fr/observations/observation-69190/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg,,,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69192,Observation #69192,https://biolit.fr/observations/observation-69192/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg,,,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69194,Observation #69194,https://biolit.fr/observations/observation-69194/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg,,,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69196,Observation #69196,https://biolit.fr/observations/observation-69196/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg,,TRUE,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69198,Observation #69198,https://biolit.fr/observations/observation-69198/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg,,,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69200,Observation #69200,https://biolit.fr/observations/observation-69200/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg,,TRUE,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69202,Observation #69202,https://biolit.fr/observations/observation-69202/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg,,,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69204,Observation #69204,https://biolit.fr/observations/observation-69204/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg,,,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69206,Observation #69206,https://biolit.fr/observations/observation-69206/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg,,,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69208,Observation #69208,https://biolit.fr/observations/observation-69208/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg,,,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69210,Observation #69210,https://biolit.fr/observations/observation-69210/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69232,Observation #69232,https://biolit.fr/observations/observation-69232/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69234,Observation #69234,https://biolit.fr/observations/observation-69234/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69236,Observation #69236,https://biolit.fr/observations/observation-69236/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69238,Observation #69238,https://biolit.fr/observations/observation-69238/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69240,Observation #69240,https://biolit.fr/observations/observation-69240/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69242,Observation #69242,https://biolit.fr/observations/observation-69242/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69244,Observation #69244,https://biolit.fr/observations/observation-69244/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69246,Observation #69246,https://biolit.fr/observations/observation-69246/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69248,Observation #69248,https://biolit.fr/observations/observation-69248/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69250,Observation #69250,https://biolit.fr/observations/observation-69250/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69252,Observation #69252,https://biolit.fr/observations/observation-69252/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69254,Observation #69254,https://biolit.fr/observations/observation-69254/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg,,TRUE,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69256,Observation #69256,https://biolit.fr/observations/observation-69256/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69258,Observation #69258,https://biolit.fr/observations/observation-69258/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69260,Observation #69260,https://biolit.fr/observations/observation-69260/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69262,Observation #69262,https://biolit.fr/observations/observation-69262/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69264,Observation #69264,https://biolit.fr/observations/observation-69264/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69266,Observation #69266,https://biolit.fr/observations/observation-69266/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69268,Observation #69268,https://biolit.fr/observations/observation-69268/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,,,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69289,Observation #69289,https://biolit.fr/observations/observation-69289/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg,,,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69291,Observation #69291,https://biolit.fr/observations/observation-69291/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg,,,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69293,Observation #69293,https://biolit.fr/observations/observation-69293/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg,,,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69295,Observation #69295,https://biolit.fr/observations/observation-69295/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg,,,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69297,Observation #69297,https://biolit.fr/observations/observation-69297/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg,,,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69299,Observation #69299,https://biolit.fr/observations/observation-69299/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg,,,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69301,Observation #69301,https://biolit.fr/observations/observation-69301/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg,,,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69303,Observation #69303,https://biolit.fr/observations/observation-69303/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg,,,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69305,Observation #69305,https://biolit.fr/observations/observation-69305/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg,,,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69307,Observation #69307,https://biolit.fr/observations/observation-69307/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg,,,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69309,Observation #69309,https://biolit.fr/observations/observation-69309/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg,,,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69311,Observation #69311,https://biolit.fr/observations/observation-69311/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg,,TRUE,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69313,Observation #69313,https://biolit.fr/observations/observation-69313/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg,,,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69315,Observation #69315,https://biolit.fr/observations/observation-69315/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg,,,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69317,Observation #69317,https://biolit.fr/observations/observation-69317/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg,,,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69319,Observation #69319,https://biolit.fr/observations/observation-69319/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg,,,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69321,Observation #69321,https://biolit.fr/observations/observation-69321/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,,,Ne sais pas +N1,69385,Sortie #69385,https://biolit.fr/sorties/sortie-69385/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104353882-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104712986-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104749015-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105027330_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105138603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105233084-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105322673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105439486_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105637172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105847029_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_110136408-scaled.jpg,12/31/2023 0:00,10.0000000,10.0000000,43.2398300000000,5.36239100000000,,Plage de l’Anse du Bain des Dames,69387,Observation #69387,https://biolit.fr/observations/observation-69387/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105847029_HDR-rotated.jpg,,TRUE,Identifiable +N1,69385,Sortie #69385,https://biolit.fr/sorties/sortie-69385/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104353882-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104712986-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104749015-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105027330_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105138603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105233084-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105322673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105439486_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105637172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105847029_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_110136408-scaled.jpg,12/31/2023 0:00,10.0000000,10.0000000,43.2398300000000,5.36239100000000,,Plage de l’Anse du Bain des Dames,69389,Observation #69389,https://biolit.fr/observations/observation-69389/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104353882-scaled.jpg,,,Identifiable +N1,69385,Sortie #69385,https://biolit.fr/sorties/sortie-69385/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104353882-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104712986-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104749015-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105027330_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105138603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105233084-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105322673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105439486_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105637172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105847029_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_110136408-scaled.jpg,12/31/2023 0:00,10.0000000,10.0000000,43.2398300000000,5.36239100000000,,Plage de l’Anse du Bain des Dames,69391,Observation #69391,https://biolit.fr/observations/observation-69391/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_110136408-scaled.jpg,,TRUE,Identifiable +N1,69385,Sortie #69385,https://biolit.fr/sorties/sortie-69385/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104353882-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104712986-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104749015-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105027330_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105138603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105233084-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105322673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105439486_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105637172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105847029_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_110136408-scaled.jpg,12/31/2023 0:00,10.0000000,10.0000000,43.2398300000000,5.36239100000000,,Plage de l’Anse du Bain des Dames,69393,Observation #69393,https://biolit.fr/observations/observation-69393/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105637172-scaled.jpg,,TRUE,Identifiable +N1,69385,Sortie #69385,https://biolit.fr/sorties/sortie-69385/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104353882-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104712986-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104749015-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105027330_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105138603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105233084-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105322673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105439486_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105637172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105847029_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_110136408-scaled.jpg,12/31/2023 0:00,10.0000000,10.0000000,43.2398300000000,5.36239100000000,,Plage de l’Anse du Bain des Dames,69395,Observation #69395,https://biolit.fr/observations/observation-69395/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105233084-rotated.jpg,,,Identifiable +N1,69385,Sortie #69385,https://biolit.fr/sorties/sortie-69385/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104353882-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104712986-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104749015-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105027330_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105138603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105233084-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105322673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105439486_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105637172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105847029_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_110136408-scaled.jpg,12/31/2023 0:00,10.0000000,10.0000000,43.2398300000000,5.36239100000000,,Plage de l’Anse du Bain des Dames,69399,Observation #69399,https://biolit.fr/observations/observation-69399/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104749015-rotated.jpg,,,Identifiable +N1,69385,Sortie #69385,https://biolit.fr/sorties/sortie-69385/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104353882-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104712986-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104749015-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105027330_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105138603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105233084-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105322673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105439486_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105637172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105847029_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_110136408-scaled.jpg,12/31/2023 0:00,10.0000000,10.0000000,43.2398300000000,5.36239100000000,,Plage de l’Anse du Bain des Dames,69403,Observation #69403,https://biolit.fr/observations/observation-69403/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104712986-rotated.jpg,,,Ne sais pas +N1,69385,Sortie #69385,https://biolit.fr/sorties/sortie-69385/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104353882-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104712986-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104749015-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105027330_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105138603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105233084-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105322673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105439486_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105637172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105847029_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_110136408-scaled.jpg,12/31/2023 0:00,10.0000000,10.0000000,43.2398300000000,5.36239100000000,,Plage de l’Anse du Bain des Dames,69405,Observation #69405,https://biolit.fr/observations/observation-69405/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105322673-scaled.jpg,,,Ne sais pas +N1,69385,Sortie #69385,https://biolit.fr/sorties/sortie-69385/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104353882-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104712986-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104749015-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105027330_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105138603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105233084-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105322673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105439486_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105637172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105847029_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_110136408-scaled.jpg,12/31/2023 0:00,10.0000000,10.0000000,43.2398300000000,5.36239100000000,,Plage de l’Anse du Bain des Dames,69407,Observation #69407,https://biolit.fr/observations/observation-69407/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105439486_HDR-scaled.jpg,,TRUE,Identifiable +N1,69410,Sortie #69410,https://biolit.fr/sorties/sortie-69410/,Miaud rodolphe,https://biolit.fr/wp-content/uploads/jet-form-builder/f6e0ba5c502de0fac09b7f654ed1aec2/2024/01/20240103_162130-scaled.jpg,01/03/2024,15.0000000,15.0000000,47.6616790,-3.2059600,,Ria d Etel,,,,,,,,,, +N1,69419,Sortie #69419,https://biolit.fr/sorties/sortie-69419/,Miaud rodolphe,https://biolit.fr/wp-content/uploads/jet-form-builder/f6e0ba5c502de0fac09b7f654ed1aec2/2024/01/20240103_162130-1-scaled.jpg,01/03/2024,15.0000000,15.0000000,47.6616030,-3.2059950,,Ria d Etel,,,,,,,,,, +N1,69422,Sortie #69422,https://biolit.fr/sorties/sortie-69422/,Miaud rodolphe,https://biolit.fr/wp-content/uploads/jet-form-builder/f6e0ba5c502de0fac09b7f654ed1aec2/2024/01/20240103_162130-2-scaled.jpg,01/04/2024,16.0:18,16.0:18,47.6616790,-3.2059600,,Ria d Etel,69424,Observation #69424,https://biolit.fr/observations/observation-69424/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f6e0ba5c502de0fac09b7f654ed1aec2/2024/01/20240103_162130-2-scaled.jpg,,,Ne sais pas +N1,69428,Sortie #69428,https://biolit.fr/sorties/sortie-69428/,Catrou Anna,https://biolit.fr/wp-content/uploads/jet-form-builder/d4b19b30ff116d0bdf49057485c46007/2024/01/IMG_7770-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d4b19b30ff116d0bdf49057485c46007/2024/01/IMG_5418-scaled.jpeg,01/06/2024,16.0000000,16.0:21,47.72879400000,-3.4771730000000,,la Nourriguel,69430,Observation #69430,https://biolit.fr/observations/observation-69430/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/d4b19b30ff116d0bdf49057485c46007/2024/01/IMG_7770-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d4b19b30ff116d0bdf49057485c46007/2024/01/IMG_5418-scaled.jpeg,,TRUE,Ne sais pas +N1,69428,Sortie #69428,https://biolit.fr/sorties/sortie-69428/,Catrou Anna,https://biolit.fr/wp-content/uploads/jet-form-builder/d4b19b30ff116d0bdf49057485c46007/2024/01/IMG_7770-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d4b19b30ff116d0bdf49057485c46007/2024/01/IMG_5418-scaled.jpeg,01/06/2024,16.0000000,16.0:21,47.72879400000,-3.4771730000000,,la Nourriguel,69432,Observation #69432,https://biolit.fr/observations/observation-69432/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d4b19b30ff116d0bdf49057485c46007/2024/01/IMG_5418-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d4b19b30ff116d0bdf49057485c46007/2024/01/IMG_7770-scaled.jpeg,,,Ne sais pas +N1,69441,Sortie #69441,https://biolit.fr/sorties/sortie-69441/,DUFOUR Valérie,https://biolit.fr/wp-content/uploads/jet-form-builder/25341b7f91ca4b7f72ba931afce69878/2024/01/1er-quadra-4-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/25341b7f91ca4b7f72ba931afce69878/2024/01/1er-quadra-3-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/25341b7f91ca4b7f72ba931afce69878/2024/01/2eme-quadra-3-rotated.jpg,12/15/2023 0:00,11.0:33,12.0000000,47.940438,-4.405446,,Penhors 29710 Pouldreuzic,,,,,,,,,, +N1,69450,Sortie #69450,https://biolit.fr/sorties/sortie-69450/,DUFOUR Valérie,https://biolit.fr/wp-content/uploads/jet-form-builder/25341b7f91ca4b7f72ba931afce69878/2024/01/1er-quadra-3-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/25341b7f91ca4b7f72ba931afce69878/2024/01/2eme-quadra-2-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/25341b7f91ca4b7f72ba931afce69878/2024/01/2eme-quadra-3-1-rotated.jpg,12/15/2023 0:00,11.0:33,12.0000000,47.940438,-4.405446,,Penhors 29710 Pouldreuzic,69452,Observation #69452,https://biolit.fr/observations/observation-69452/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/25341b7f91ca4b7f72ba931afce69878/2024/01/1er-quadra-3-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/25341b7f91ca4b7f72ba931afce69878/2024/01/2eme-quadra-3-1-rotated.jpg,,TRUE,Identifiable +N1,69459,Sortie #69459,https://biolit.fr/sorties/sortie-69459/,DUFOUR Valérie,https://biolit.fr/wp-content/uploads/jet-form-builder/25341b7f91ca4b7f72ba931afce69878/2024/01/1er-quadra-3-2-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/25341b7f91ca4b7f72ba931afce69878/2024/01/1er-quadra-4-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/25341b7f91ca4b7f72ba931afce69878/2024/01/2eme-quadra-2-1-rotated.jpg,12/15/2023 0:00,11.0:33,12.0000000,47.940438,-4.405446,,Penhors 29710 Pouldreuzic,,,,,,,,,, +N1,69497,Sortie #69497,https://biolit.fr/sorties/sortie-69497/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/Track_6999fdcb-433b-4cfc-92b2-7e3e5e8aee40-scaled.jpg,01/10/2024,1.000004,1.000004,46.8762640000000,0.32959000000,La Girelle,,,,,,,,,,, +N1,69513,Sortie #69513,https://biolit.fr/sorties/sortie-69513/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_102954297-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103305158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103438616-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103850292-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103955406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_104108572_HDR-rotated.jpg,1/14/2024 0:00,10.0000000,11.0000000,43.2381180000000,5.36173400000000,,Plage de l'Anse des Phocéens,69515,Observation #69515,https://biolit.fr/observations/observation-69515/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103305158-scaled.jpg,,TRUE,Identifiable +N1,69513,Sortie #69513,https://biolit.fr/sorties/sortie-69513/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_102954297-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103305158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103438616-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103850292-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103955406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_104108572_HDR-rotated.jpg,1/14/2024 0:00,10.0000000,11.0000000,43.2381180000000,5.36173400000000,,Plage de l'Anse des Phocéens,69517,Observation #69517,https://biolit.fr/observations/observation-69517/,Electra posidoniae,Bryozoaire de la posidonie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103955406-scaled.jpg,,,Identifiable +N1,69513,Sortie #69513,https://biolit.fr/sorties/sortie-69513/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_102954297-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103305158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103438616-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103850292-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103955406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_104108572_HDR-rotated.jpg,1/14/2024 0:00,10.0000000,11.0000000,43.2381180000000,5.36173400000000,,Plage de l'Anse des Phocéens,69519,Observation #69519,https://biolit.fr/observations/observation-69519/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103850292-scaled.jpg,,,Identifiable +N1,69513,Sortie #69513,https://biolit.fr/sorties/sortie-69513/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_102954297-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103305158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103438616-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103850292-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103955406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_104108572_HDR-rotated.jpg,1/14/2024 0:00,10.0000000,11.0000000,43.2381180000000,5.36173400000000,,Plage de l'Anse des Phocéens,69521,Observation #69521,https://biolit.fr/observations/observation-69521/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103438616-scaled.jpg,,,Ne sais pas +N1,69513,Sortie #69513,https://biolit.fr/sorties/sortie-69513/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_102954297-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103305158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103438616-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103850292-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103955406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_104108572_HDR-rotated.jpg,1/14/2024 0:00,10.0000000,11.0000000,43.2381180000000,5.36173400000000,,Plage de l'Anse des Phocéens,69523,Observation #69523,https://biolit.fr/observations/observation-69523/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_102954297-scaled.jpg,,,Ne sais pas +N1,69513,Sortie #69513,https://biolit.fr/sorties/sortie-69513/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_102954297-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103305158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103438616-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103850292-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103955406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_104108572_HDR-rotated.jpg,1/14/2024 0:00,10.0000000,11.0000000,43.2381180000000,5.36173400000000,,Plage de l'Anse des Phocéens,69525,Observation #69525,https://biolit.fr/observations/observation-69525/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_104108572_HDR-rotated.jpg,,,Ne sais pas +N1,69528,Sortie #69528,https://biolit.fr/sorties/sortie-69528/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103533-scaled.jpg,1/14/2024 0:00,11.0000000,11.0000000,43.2380330000000,5.36173100000000,,Plage de l'Anse des Phocéens,,,,,,,,,, +N1,69531,Sortie #69531,https://biolit.fr/sorties/sortie-69531/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103533-1-scaled.jpg,1/14/2024 0:00,11.0000000,11.0000000,43.2379990000000,5.36177400000000,,Plage de l'Anse des Phocéens,69533,Observation #69533,https://biolit.fr/observations/observation-69533/,Peyssonnelia squamaria,Peyssonnelia,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103533-1-scaled.jpg,,,Ne sais pas +N1,69545,Sortie #69545,https://biolit.fr/sorties/sortie-69545/,AUBRUN JEAN-ALBERT,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_093934-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_094400-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_094403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_093949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_101847-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_092817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_101901-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_092805-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_100015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_100619-scaled.jpg,1/15/2023 0:00,9.0:15,10.0000000,49.403591000000,0.129896000000000,,Villerville,69547,Observation #69547,https://biolit.fr/observations/observation-69547/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_100015-scaled.jpg,,,Identifiable +N1,69545,Sortie #69545,https://biolit.fr/sorties/sortie-69545/,AUBRUN JEAN-ALBERT,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_093934-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_094400-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_094403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_093949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_101847-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_092817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_101901-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_092805-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_100015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_100619-scaled.jpg,1/15/2023 0:00,9.0:15,10.0000000,49.403591000000,0.129896000000000,,Villerville,69549,Observation #69549,https://biolit.fr/observations/observation-69549/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_093949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_101847-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_093934-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_101901-scaled.jpg,,,Identifiable +N1,69545,Sortie #69545,https://biolit.fr/sorties/sortie-69545/,AUBRUN JEAN-ALBERT,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_093934-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_094400-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_094403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_093949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_101847-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_092817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_101901-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_092805-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_100015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_100619-scaled.jpg,1/15/2023 0:00,9.0:15,10.0000000,49.403591000000,0.129896000000000,,Villerville,69551,Observation #69551,https://biolit.fr/observations/observation-69551/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_092817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_092805-scaled.jpg,,,Identifiable +N1,69545,Sortie #69545,https://biolit.fr/sorties/sortie-69545/,AUBRUN JEAN-ALBERT,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_093934-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_094400-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_094403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_093949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_101847-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_092817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_101901-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_092805-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_100015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_100619-scaled.jpg,1/15/2023 0:00,9.0:15,10.0000000,49.403591000000,0.129896000000000,,Villerville,69563,Observation #69563,https://biolit.fr/observations/observation-69563/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_094400-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_094403-scaled.jpg,,,Ne sais pas +N1,69545,Sortie #69545,https://biolit.fr/sorties/sortie-69545/,AUBRUN JEAN-ALBERT,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_093934-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_094400-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_094403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_093949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_101847-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_092817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_101901-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_092805-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_100015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_100619-scaled.jpg,1/15/2023 0:00,9.0:15,10.0000000,49.403591000000,0.129896000000000,,Villerville,69568,Observation #69568,https://biolit.fr/observations/observation-69568/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_100619-scaled.jpg,,,Identifiable +N1,69587,Sortie #69587,https://biolit.fr/sorties/sortie-69587/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4248-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4254-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4268-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4272-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4280-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4283-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4265-scaled.jpg,01/12/2024,12.0:35,12.0:55,43.240952000000,5.36249500000000,Planète Mer,Bain des dames,69589,Observation #69589,https://biolit.fr/observations/observation-69589/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4248-scaled.jpg,,,Ne sais pas +N1,69587,Sortie #69587,https://biolit.fr/sorties/sortie-69587/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4248-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4254-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4268-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4272-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4280-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4283-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4265-scaled.jpg,01/12/2024,12.0:35,12.0:55,43.240952000000,5.36249500000000,Planète Mer,Bain des dames,69591,Observation #69591,https://biolit.fr/observations/observation-69591/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4254-scaled.jpg,,TRUE,Identifiable +N1,69587,Sortie #69587,https://biolit.fr/sorties/sortie-69587/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4248-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4254-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4268-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4272-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4280-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4283-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4265-scaled.jpg,01/12/2024,12.0:35,12.0:55,43.240952000000,5.36249500000000,Planète Mer,Bain des dames,69593,Observation #69593,https://biolit.fr/observations/observation-69593/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4268-scaled.jpg,,,Identifiable +N1,69587,Sortie #69587,https://biolit.fr/sorties/sortie-69587/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4248-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4254-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4268-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4272-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4280-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4283-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4265-scaled.jpg,01/12/2024,12.0:35,12.0:55,43.240952000000,5.36249500000000,Planète Mer,Bain des dames,69595,Observation #69595,https://biolit.fr/observations/observation-69595/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4272-scaled.jpg,,TRUE,Identifiable +N1,69587,Sortie #69587,https://biolit.fr/sorties/sortie-69587/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4248-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4254-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4268-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4272-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4280-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4283-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4265-scaled.jpg,01/12/2024,12.0:35,12.0:55,43.240952000000,5.36249500000000,Planète Mer,Bain des dames,69597,Observation #69597,https://biolit.fr/observations/observation-69597/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4265-scaled.jpg,,TRUE,Identifiable +N1,69607,Sortie #69607,https://biolit.fr/sorties/sortie-69607/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4252-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4257-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4280-1-scaled.jpg,01/12/2024,12.0:35,12.0:55,43.2409610000000,5.3625290000000,Planète Mer,Bain des dames,69609,Observation #69609,https://biolit.fr/observations/observation-69609/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4252-1-scaled.jpg,,TRUE,Identifiable +N1,69607,Sortie #69607,https://biolit.fr/sorties/sortie-69607/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4252-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4257-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4280-1-scaled.jpg,01/12/2024,12.0:35,12.0:55,43.2409610000000,5.3625290000000,Planète Mer,Bain des dames,69611,Observation #69611,https://biolit.fr/observations/observation-69611/,Peyssonnelia squamaria,Peyssonnelia,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4257-1-scaled.jpg,,TRUE,Identifiable +N1,69607,Sortie #69607,https://biolit.fr/sorties/sortie-69607/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4252-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4257-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4280-1-scaled.jpg,01/12/2024,12.0:35,12.0:55,43.2409610000000,5.3625290000000,Planète Mer,Bain des dames,69613,Observation #69613,https://biolit.fr/observations/observation-69613/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4280-1-scaled.jpg,,,Ne sais pas +N1,69623,Sortie #69623,https://biolit.fr/sorties/sortie-69623/,Saintoin Morgan,https://biolit.fr/wp-content/uploads/jet-form-builder/2a6361a5174945459706d1d2b0b76c18/2024/01/DSCF0070-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a6361a5174945459706d1d2b0b76c18/2024/01/DSCF00721-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a6361a5174945459706d1d2b0b76c18/2024/01/DSCF00641-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a6361a5174945459706d1d2b0b76c18/2024/01/DSCF00681-1-scaled.jpg,01/08/2024,15.0000000,16.0000000,50.691941,1.562812,,Plgae de Ningles,69625,Observation #69625,https://biolit.fr/observations/observation-69625/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2a6361a5174945459706d1d2b0b76c18/2024/01/DSCF00721-scaled.jpg,,TRUE,Identifiable +N1,69633,Sortie #69633,https://biolit.fr/sorties/sortie-69633/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.55-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.54-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.54-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.54-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-14-at-21.09.15.jpeg,1/14/2024 0:00,15.0000000,17.0000000,42.5729390000000,9.5230030000000,La Girelle,"Lucciana, Lido de la Marana",69635,Observation #69635,https://biolit.fr/observations/observation-69635/,Argonauta argo,Argonaute,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.55-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.54-2.jpeg,,TRUE,Identifiable +N1,69633,Sortie #69633,https://biolit.fr/sorties/sortie-69633/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.55-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.54-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.54-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.54-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-14-at-21.09.15.jpeg,1/14/2024 0:00,15.0000000,17.0000000,42.5729390000000,9.5230030000000,La Girelle,"Lucciana, Lido de la Marana",69637,Observation #69637,https://biolit.fr/observations/observation-69637/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.54-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.54-1.jpeg,,TRUE,Identifiable +N1,69633,Sortie #69633,https://biolit.fr/sorties/sortie-69633/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.55-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.54-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.54-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.54-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-14-at-21.09.15.jpeg,1/14/2024 0:00,15.0000000,17.0000000,42.5729390000000,9.5230030000000,La Girelle,"Lucciana, Lido de la Marana",69639,Observation #69639,https://biolit.fr/observations/observation-69639/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-14-at-21.09.15.jpeg,,TRUE,Identifiable +N1,69633,Sortie #69633,https://biolit.fr/sorties/sortie-69633/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.55-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.54-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.54-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.54-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-14-at-21.09.15.jpeg,1/14/2024 0:00,15.0000000,17.0000000,42.5729390000000,9.5230030000000,La Girelle,"Lucciana, Lido de la Marana",69641,Observation #69641,https://biolit.fr/observations/observation-69641/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-14-at-21.09.15.jpeg,,TRUE,Identifiable +N1,69644,Sortie #69644,https://biolit.fr/sorties/sortie-69644/,ddewick,https://biolit.fr/wp-content/uploads/jet-form-builder/85dc31265b02ee6bc98827390cda1446/2024/01/starfish4aug23.jpg,08/04/2023,10.0000000,11.0000000,48.2337560000000,-4.43354100000000,,Plage Aber,69646,Observation #69646,https://biolit.fr/observations/observation-69646/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/85dc31265b02ee6bc98827390cda1446/2024/01/starfish4aug23.jpg,,,Ne sais pas +N1,69650,Sortie #69650,https://biolit.fr/sorties/sortie-69650/,ddewick,https://biolit.fr/wp-content/uploads/jet-form-builder/85dc31265b02ee6bc98827390cda1446/2024/01/2023-12-26-Plants-Plage-Aber.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85dc31265b02ee6bc98827390cda1446/2024/01/2023-12-26-Jellyfish-Plage-Aber.jpg,12/26/2023 0:00,10.0000000,11.0000000,48.2337560000000,-4.43354100000000,,Plage Aber,69652,Observation #69652,https://biolit.fr/observations/observation-69652/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/85dc31265b02ee6bc98827390cda1446/2024/01/2023-12-26-Plants-Plage-Aber.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85dc31265b02ee6bc98827390cda1446/2024/01/2023-12-26-Jellyfish-Plage-Aber.jpg,,,Ne sais pas +N1,69650,Sortie #69650,https://biolit.fr/sorties/sortie-69650/,ddewick,https://biolit.fr/wp-content/uploads/jet-form-builder/85dc31265b02ee6bc98827390cda1446/2024/01/2023-12-26-Plants-Plage-Aber.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85dc31265b02ee6bc98827390cda1446/2024/01/2023-12-26-Jellyfish-Plage-Aber.jpg,12/26/2023 0:00,10.0000000,11.0000000,48.2337560000000,-4.43354100000000,,Plage Aber,69654,Observation #69654,https://biolit.fr/observations/observation-69654/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/85dc31265b02ee6bc98827390cda1446/2024/01/2023-12-26-Jellyfish-Plage-Aber.jpg,,TRUE,Ne sais pas +N1,69657,Sortie #69657,https://biolit.fr/sorties/sortie-69657/,ddewick,https://biolit.fr/wp-content/uploads/jet-form-builder/85dc31265b02ee6bc98827390cda1446/2024/01/2023-12-29-Plage-Goulien.jpg,12/29/2023 0:00,10.0000000,11.0000000,48.2402320000000,-4.55025700000000,,Plage Goulien,69659,Observation #69659,https://biolit.fr/observations/observation-69659/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/85dc31265b02ee6bc98827390cda1446/2024/01/2023-12-29-Plage-Goulien.jpg,,,Ne sais pas +N1,69662,Sortie #69662,https://biolit.fr/sorties/sortie-69662/,ddewick,https://biolit.fr/wp-content/uploads/jet-form-builder/85dc31265b02ee6bc98827390cda1446/2024/01/2023-12-29-Plage-Kersigenou.jpg,12/29/2023 0:00,10.0:55,11.0:55,48.2518880000000,-4.5487830000000,,Plage Kerzigenou,69664,Observation #69664,https://biolit.fr/observations/observation-69664/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/85dc31265b02ee6bc98827390cda1446/2024/01/2023-12-29-Plage-Kersigenou.jpg,,TRUE,Ne sais pas +N1,69683,Sortie #69683,https://biolit.fr/sorties/sortie-69683/,AUBRUN JEAN-ALBERT,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095613-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_100443-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_100438-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095358-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095811-scaled.jpg,1/18/2023 0:00,9.0:15,10.0:15,49.4041230000000,0.130403000000000,,Villerville,69685,Observation #69685,https://biolit.fr/observations/observation-69685/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095358-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095354-scaled.jpg,,,Identifiable +N1,69683,Sortie #69683,https://biolit.fr/sorties/sortie-69683/,AUBRUN JEAN-ALBERT,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095613-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_100443-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_100438-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095358-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095811-scaled.jpg,1/18/2023 0:00,9.0:15,10.0:15,49.4041230000000,0.130403000000000,,Villerville,69687,Observation #69687,https://biolit.fr/observations/observation-69687/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095613-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095604-scaled.jpg,,,Ne sais pas +N1,69683,Sortie #69683,https://biolit.fr/sorties/sortie-69683/,AUBRUN JEAN-ALBERT,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095613-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_100443-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_100438-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095358-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095811-scaled.jpg,1/18/2023 0:00,9.0:15,10.0:15,49.4041230000000,0.130403000000000,,Villerville,69689,Observation #69689,https://biolit.fr/observations/observation-69689/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_100443-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_100438-scaled.jpg,,,Ne sais pas +N1,69683,Sortie #69683,https://biolit.fr/sorties/sortie-69683/,AUBRUN JEAN-ALBERT,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095613-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_100443-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_100438-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095358-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095811-scaled.jpg,1/18/2023 0:00,9.0:15,10.0:15,49.4041230000000,0.130403000000000,,Villerville,69691,Observation #69691,https://biolit.fr/observations/observation-69691/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095813-scaled.jpg,,,Ne sais pas +N1,69695,Sortie #69695,https://biolit.fr/sorties/sortie-69695/,Gueguen Quentin,https://biolit.fr/wp-content/uploads/jet-form-builder/d068403b61e10947d364c23052ec6107/2024/01/IMG_9675-scaled.jpeg,10/17/2023 0:00,13.0000000,14.0000000,43.210550000000,5.45222300000000,AIEJE,Sugiton,69709,Observation #69709,https://biolit.fr/observations/observation-69709/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d068403b61e10947d364c23052ec6107/2024/01/IMG_9675-scaled.jpeg,,,Identifiable +N1,69697,Sortie #69697,https://biolit.fr/sorties/sortie-69697/,Kab Ilyes,https://biolit.fr/wp-content/uploads/jet-form-builder/56c082abeaeaf326dddccc77a839e4d4/2024/01/IMG_8025-scaled.jpeg,10/17/2023 0:00,13.0000000,14.0000000,43.2106130000000,5.45042000000000,AIEJE,Calanques de Suggiton,69704,Observation #69704,https://biolit.fr/observations/observation-69704/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/56c082abeaeaf326dddccc77a839e4d4/2024/01/IMG_8025-scaled.jpeg,,,Identifiable +N1,69700,Sortie #69700,https://biolit.fr/sorties/sortie-69700/,Alaoui Aida,https://biolit.fr/wp-content/uploads/jet-form-builder/bf5615c188ee06920b229405f115739b/2024/01/BC49D030-D3F7-4F0D-B8B6-0E512C7ABA2D-scaled.jpeg,10/17/2023 0:00,13.0000000,14.0000000,43.2103000000000,5.45085000000000,AIEJE,Sugiton,69702,Observation #69702,https://biolit.fr/observations/observation-69702/,Codium decorticatum,Codium allongé,,https://biolit.fr/wp-content/uploads/jet-form-builder/bf5615c188ee06920b229405f115739b/2024/01/BC49D030-D3F7-4F0D-B8B6-0E512C7ABA2D-scaled.jpeg,,,Ne sais pas +N1,69707,Sortie #69707,https://biolit.fr/sorties/sortie-69707/,Galland Adrien,https://biolit.fr/wp-content/uploads/jet-form-builder/4f86029738da1cd0264a905b52267f9d/2024/01/IMG_6671-scaled.jpg,10/17/2023 0:00,13.0000000,14.0000000,43.2120420000000,5.45414300000000,AIEJE,Sugiton,69711,Observation #69711,https://biolit.fr/observations/observation-69711/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/4f86029738da1cd0264a905b52267f9d/2024/01/IMG_6671-scaled.jpg,,,Identifiable +N1,69716,Sortie #69716,https://biolit.fr/sorties/sortie-69716/,Meddour Abdel,https://biolit.fr/wp-content/uploads/jet-form-builder/87622097de367dec4f24efb816f5a9a6/2024/01/D59F853C-F3E1-42AA-A22F-2AA8781A6E94.jpeg,10/17/2023 0:00,14.0:44,17.0:41,43.2935190000000,5.40096100000000,,Les calanques,,,,,,,,,, +N1,69719,Sortie #69719,https://biolit.fr/sorties/sortie-69719/,Kebaili Ayman,https://biolit.fr/wp-content/uploads/jet-form-builder/1ceb7b33bc4a53cfe1c49b6fceb33f7c/2024/01/IMG_20231017_130013-scaled.jpg,10/17/2023 0:00,14.0000000,14.0000000,43.2935260,5.4009080,,Calanques sugiton,69721,Observation #69721,https://biolit.fr/observations/observation-69721/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1ceb7b33bc4a53cfe1c49b6fceb33f7c/2024/01/IMG_20231017_130013-scaled.jpg,,,Ne sais pas +N1,69724,Sortie #69724,https://biolit.fr/sorties/sortie-69724/,Dorbane Youcef,https://biolit.fr/wp-content/uploads/jet-form-builder/d0b468b0df8576ed6c47c6a7b81bbaa2/2024/01/IMG_3693.png,10/17/2023 0:00,11.0000000,14.0:45,43.21168,5.45553,,Calanque de sugiton,69726,Observation #69726,https://biolit.fr/observations/observation-69726/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d0b468b0df8576ed6c47c6a7b81bbaa2/2024/01/IMG_3693.png,,, +N1,69724,Sortie #69724,https://biolit.fr/sorties/sortie-69724/,Dorbane Youcef,https://biolit.fr/wp-content/uploads/jet-form-builder/d0b468b0df8576ed6c47c6a7b81bbaa2/2024/01/IMG_3693.png,10/17/2023 0:00,11.0000000,14.0:45,43.21168,5.45553,,Calanque de sugiton,69728,Observation #69728,https://biolit.fr/observations/observation-69728/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d0b468b0df8576ed6c47c6a7b81bbaa2/2024/01/IMG_3693.png,,,Ne sais pas +N1,69731,Sortie #69731,https://biolit.fr/sorties/sortie-69731/,Kebaili Ayman,https://biolit.fr/wp-content/uploads/jet-form-builder/1ceb7b33bc4a53cfe1c49b6fceb33f7c/2024/01/IMG_20231017_130020-scaled.jpg,10/17/2023 0:00,13.0000000,14.0000000,43.2935260,5.4009080,AIEJE,Calanques sugiton,69733,Observation #69733,https://biolit.fr/observations/observation-69733/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1ceb7b33bc4a53cfe1c49b6fceb33f7c/2024/01/IMG_20231017_130020-scaled.jpg,,,Ne sais pas +N1,69736,Sortie #69736,https://biolit.fr/sorties/sortie-69736/,Blaise Julie,https://biolit.fr/wp-content/uploads/jet-form-builder/95d06ec25246d2554c2aeb354e0b2510/2024/01/IMG_20231017_130020-2-scaled.jpg,1/18/2024 0:00,11.0000000,11.0000000,43.2935210,5.4009110,,,,,,,,,,,, +N1,69739,Sortie #69739,https://biolit.fr/sorties/sortie-69739/,Foamouwe Marc-bril,https://biolit.fr/wp-content/uploads/jet-form-builder/044b490433aec356c29d515a736066dc/2024/01/IMG_20231017_130020-scaled.jpg,10/17/2023 0:00,13.0000000,17.0000000,43.3475540000000,-1074.48324800000,AIEJE,La calanque de sugiton,69741,Observation #69741,https://biolit.fr/observations/observation-69741/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/044b490433aec356c29d515a736066dc/2024/01/IMG_20231017_130020-scaled.jpg,,,Identifiable +N1,69759,Sortie #69759,https://biolit.fr/sorties/sortie-69759/,BEAUPUY Elodie,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095205485.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,1/17/2024 0:00,10.000004,10.0:53,43.1074760000000,5.94536500000000,,plages du mourillon,69761,Observation #69761,https://biolit.fr/observations/observation-69761/,Larus michahellis,Goéland leucophée,,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg,,TRUE,Identifiable +N1,69759,Sortie #69759,https://biolit.fr/sorties/sortie-69759/,BEAUPUY Elodie,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095205485.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,1/17/2024 0:00,10.000004,10.0:53,43.1074760000000,5.94536500000000,,plages du mourillon,69763,Observation #69763,https://biolit.fr/observations/observation-69763/,Larus michahellis,Goéland leucophée,,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg,,TRUE,Identifiable +N1,69759,Sortie #69759,https://biolit.fr/sorties/sortie-69759/,BEAUPUY Elodie,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095205485.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,1/17/2024 0:00,10.000004,10.0:53,43.1074760000000,5.94536500000000,,plages du mourillon,69765,Observation #69765,https://biolit.fr/observations/observation-69765/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg,,TRUE,Identifiable +N1,69759,Sortie #69759,https://biolit.fr/sorties/sortie-69759/,BEAUPUY Elodie,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095205485.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,1/17/2024 0:00,10.000004,10.0:53,43.1074760000000,5.94536500000000,,plages du mourillon,69767,Observation #69767,https://biolit.fr/observations/observation-69767/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg,,TRUE,Identifiable +N1,69759,Sortie #69759,https://biolit.fr/sorties/sortie-69759/,BEAUPUY Elodie,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095205485.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,1/17/2024 0:00,10.000004,10.0:53,43.1074760000000,5.94536500000000,,plages du mourillon,69769,Observation #69769,https://biolit.fr/observations/observation-69769/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg,,,Ne sais pas +N1,69759,Sortie #69759,https://biolit.fr/sorties/sortie-69759/,BEAUPUY Elodie,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095205485.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,1/17/2024 0:00,10.000004,10.0:53,43.1074760000000,5.94536500000000,,plages du mourillon,69771,Observation #69771,https://biolit.fr/observations/observation-69771/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg,,TRUE,Identifiable +N1,69759,Sortie #69759,https://biolit.fr/sorties/sortie-69759/,BEAUPUY Elodie,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095205485.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,1/17/2024 0:00,10.000004,10.0:53,43.1074760000000,5.94536500000000,,plages du mourillon,69773,Observation #69773,https://biolit.fr/observations/observation-69773/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,,,Ne sais pas +N1,69759,Sortie #69759,https://biolit.fr/sorties/sortie-69759/,BEAUPUY Elodie,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095205485.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,1/17/2024 0:00,10.000004,10.0:53,43.1074760000000,5.94536500000000,,plages du mourillon,69775,Observation #69775,https://biolit.fr/observations/observation-69775/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg,,,Ne sais pas +N1,69759,Sortie #69759,https://biolit.fr/sorties/sortie-69759/,BEAUPUY Elodie,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095205485.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,1/17/2024 0:00,10.000004,10.0:53,43.1074760000000,5.94536500000000,,plages du mourillon,69777,Observation #69777,https://biolit.fr/observations/observation-69777/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg,,,Ne sais pas +N1,69759,Sortie #69759,https://biolit.fr/sorties/sortie-69759/,BEAUPUY Elodie,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095205485.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,1/17/2024 0:00,10.000004,10.0:53,43.1074760000000,5.94536500000000,,plages du mourillon,69779,Observation #69779,https://biolit.fr/observations/observation-69779/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg,,, +N1,69759,Sortie #69759,https://biolit.fr/sorties/sortie-69759/,BEAUPUY Elodie,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095205485.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,1/17/2024 0:00,10.000004,10.0:53,43.1074760000000,5.94536500000000,,plages du mourillon,69781,Observation #69781,https://biolit.fr/observations/observation-69781/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg,,TRUE,Identifiable +N1,69759,Sortie #69759,https://biolit.fr/sorties/sortie-69759/,BEAUPUY Elodie,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095205485.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,1/17/2024 0:00,10.000004,10.0:53,43.1074760000000,5.94536500000000,,plages du mourillon,69783,Observation #69783,https://biolit.fr/observations/observation-69783/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg,,,Ne sais pas +N1,69759,Sortie #69759,https://biolit.fr/sorties/sortie-69759/,BEAUPUY Elodie,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095205485.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,1/17/2024 0:00,10.000004,10.0:53,43.1074760000000,5.94536500000000,,plages du mourillon,69785,Observation #69785,https://biolit.fr/observations/observation-69785/,Epimenia australis/babai,Mollusques solénogastres vermiformes,,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg,,,Identifiable +N1,69759,Sortie #69759,https://biolit.fr/sorties/sortie-69759/,BEAUPUY Elodie,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095205485.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,1/17/2024 0:00,10.000004,10.0:53,43.1074760000000,5.94536500000000,,plages du mourillon,69787,Observation #69787,https://biolit.fr/observations/observation-69787/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg,,,Ne sais pas +N1,69759,Sortie #69759,https://biolit.fr/sorties/sortie-69759/,BEAUPUY Elodie,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095205485.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,1/17/2024 0:00,10.000004,10.0:53,43.1074760000000,5.94536500000000,,plages du mourillon,69789,Observation #69789,https://biolit.fr/observations/observation-69789/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg,,,Identifiable +N1,69759,Sortie #69759,https://biolit.fr/sorties/sortie-69759/,BEAUPUY Elodie,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095205485.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,1/17/2024 0:00,10.000004,10.0:53,43.1074760000000,5.94536500000000,,plages du mourillon,69791,Observation #69791,https://biolit.fr/observations/observation-69791/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg,,,Ne sais pas +N1,69824,Sortie #69824,https://biolit.fr/sorties/sortie-69824/,TOUPET AXEL,https://biolit.fr/wp-content/uploads/jet-form-builder/79aa59ab2b6357a0074f251459d1e384/2024/01/1000000207.jpg,01/11/2024,15.0000000,16.0000000,50.6893750000000,1.56302000000000,,Plage de ningles,,,,,,,,,, +N1,69831,Sortie #69831,https://biolit.fr/sorties/sortie-69831/,Doudouh Sarah,"""https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6076-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6082-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6106-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6094-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6114-scaled.jpeg""",1/17/2024 0:00,10.000007,10.0:17,43.1076940000000,5.94047800000000,,Les plages du Mourillons,69833,Observation #69833,https://biolit.fr/observations/observation-69833/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6076-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6082-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6106-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6094-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6114-scaled.jpeg,,,Ne sais pas +N1,69831,Sortie #69831,https://biolit.fr/sorties/sortie-69831/,Doudouh Sarah,https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6076-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6082-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6106-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6094-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6114-scaled.jpeg,1/17/2024 0:00,10.000007,10.0:17,43.1076940000000,5.94047800000000,,Les plages du Mourillons,69835,Observation #69835,https://biolit.fr/observations/observation-69835/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6094-scaled.jpeg,,,Ne sais pas +N1,69831,Sortie #69831,https://biolit.fr/sorties/sortie-69831/,Doudouh Sarah,https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6076-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6082-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6106-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6094-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6114-scaled.jpeg,1/17/2024 0:00,10.000007,10.0:17,43.1076940000000,5.94047800000000,,Les plages du Mourillons,69837,Observation #69837,https://biolit.fr/observations/observation-69837/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6106-scaled.jpeg,,,Ne sais pas +N1,69831,Sortie #69831,https://biolit.fr/sorties/sortie-69831/,Doudouh Sarah,https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6076-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6082-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6106-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6094-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6114-scaled.jpeg,1/17/2024 0:00,10.000007,10.0:17,43.1076940000000,5.94047800000000,,Les plages du Mourillons,69839,Observation #69839,https://biolit.fr/observations/observation-69839/,Larus michahellis,Goéland leucophée,,https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6076-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6082-scaled.jpeg,,TRUE,Ne sais pas +N1,69831,Sortie #69831,https://biolit.fr/sorties/sortie-69831/,Doudouh Sarah,https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6076-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6082-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6106-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6094-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6114-scaled.jpeg,1/17/2024 0:00,10.000007,10.0:17,43.1076940000000,5.94047800000000,,Les plages du Mourillons,69841,Observation #69841,https://biolit.fr/observations/observation-69841/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6114-scaled.jpeg,,TRUE,Ne sais pas +N1,69854,Sortie #69854,https://biolit.fr/sorties/sortie-69854/,Gemel-normandie,https://biolit.fr/wp-content/uploads/jet-form-builder/8e8cc625ef3af7b41bb8ea094502bc7c/2024/01/IMG_0768-scaled.jpg,1/22/2024 0:00,13.0000000,13.0000000,49.3197310000000,-0.352185000000000,,Luc-sur-mer,69856,Observation #69856,https://biolit.fr/observations/observation-69856/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8e8cc625ef3af7b41bb8ea094502bc7c/2024/01/IMG_0768-scaled.jpg,,,Ne sais pas +N1,69860,Sortie #69860,https://biolit.fr/sorties/sortie-69860/,Monsigny Ilan,https://biolit.fr/wp-content/uploads/jet-form-builder/5528ca1f93ce4b4f54c6299f7ae61295/2024/01/20240111_155232019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5528ca1f93ce4b4f54c6299f7ae61295/2024/01/20240111_154813086-scaled.jpg,01/11/2024,14.0000000,4.0000000,50.7125980,1.754955,,Plage de Ningles,69862,Observation #69862,https://biolit.fr/observations/observation-69862/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5528ca1f93ce4b4f54c6299f7ae61295/2024/01/20240111_154813086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5528ca1f93ce4b4f54c6299f7ae61295/2024/01/20240111_155232019-scaled.jpg,,FALSE,Identifiable +N1,69867,Sortie #69867,https://biolit.fr/sorties/sortie-69867/,Soussi Sirine,https://biolit.fr/wp-content/uploads/jet-form-builder/ad29c3513c79e96ba31b7071d31a1ecb/2024/01/IMG_4440-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad29c3513c79e96ba31b7071d31a1ecb/2024/01/IMG_4439-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad29c3513c79e96ba31b7071d31a1ecb/2024/01/IMG_4441-scaled.jpeg,01/10/2024,10.0000000,12.0000000,43.141904000000,5.88896900000000,Planète Mer,Plage du morillon,69869,Observation #69869,https://biolit.fr/observations/observation-69869/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ad29c3513c79e96ba31b7071d31a1ecb/2024/01/IMG_4440-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad29c3513c79e96ba31b7071d31a1ecb/2024/01/IMG_4439-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad29c3513c79e96ba31b7071d31a1ecb/2024/01/IMG_4441-scaled.jpeg,,FALSE,Ne sais pas +N1,69873,Sortie #69873,https://biolit.fr/sorties/sortie-69873/,Pequiman Caro,https://biolit.fr/wp-content/uploads/jet-form-builder/d582e78d55ad0d0f25b85b54f38554a6/2024/01/20240124_123032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d582e78d55ad0d0f25b85b54f38554a6/2024/01/20240124_123035-scaled.jpg,1/24/2024 0:00,12.0:24,12.0000000,48.6899830000000,-2.04620400000000,,St enogat,69875,Observation #69875,https://biolit.fr/observations/observation-69875/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d582e78d55ad0d0f25b85b54f38554a6/2024/01/20240124_123032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d582e78d55ad0d0f25b85b54f38554a6/2024/01/20240124_123035-scaled.jpg,,,non-identifiable +N1,69880,Sortie #69880,https://biolit.fr/sorties/sortie-69880/,Guyader Marie-Jose,https://biolit.fr/wp-content/uploads/jet-form-builder/af1604f1c92c0ff0e28ec36193a2f762/2024/01/IMG_20230901_1138242-scaled.jpg,09/01/2023,10.0000000,12.0000000,43.3800460000000,-1.75652500000000,CPIE Littoral Basque - Euskal Itsasbazterra,"Plage des Jumeaux, Hendaye",,,,,,,,,, +N1,69883,Sortie #69883,https://biolit.fr/sorties/sortie-69883/,CENATIEMPO Yannick,https://biolit.fr/wp-content/uploads/jet-form-builder/a8895767c3ce1e06a0074e6d8fe83315/2024/01/57441a620c279.jpeg,01/01/2022,9.0000000,9.0000000,47.7810100000000,-4.48313000000000,,test,,,,,,,,,, +N1,69886,Sortie #69886,https://biolit.fr/sorties/sortie-69886/,Bernader Barnaber,https://biolit.fr/wp-content/uploads/jet-form-builder/6f1b76884193889d89c225518eb3e7b8/2024/01/ref_dss.jpg,01/11/2024,21.0:56,21.0:59,48.2749300000000,-4.63968100000000,,totoland,,,,,,,,,, +N1,69907,Sortie #69907,https://biolit.fr/sorties/sortie-69907/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171445823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171540006-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171641852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171737021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171840393_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172651196-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172803193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172849997-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172940680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173117654.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173147140.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174015515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174101550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174139514-scaled.jpg,1/21/2024 0:00,17.0000000,18.0000000,43.2594090000000,5.3750080000000,,Plage de l'Huveaune,69909,Observation #69909,https://biolit.fr/observations/observation-69909/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172940680-scaled.jpg,,TRUE,Identifiable +N1,69907,Sortie #69907,https://biolit.fr/sorties/sortie-69907/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171445823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171540006-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171641852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171737021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171840393_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172651196-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172803193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172849997-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172940680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173117654.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173147140.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174015515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174101550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174139514-scaled.jpg,1/21/2024 0:00,17.0000000,18.0000000,43.2594090000000,5.3750080000000,,Plage de l'Huveaune,69915,Observation #69915,https://biolit.fr/observations/observation-69915/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175807-scaled.jpg,,TRUE,Identifiable +N1,69907,Sortie #69907,https://biolit.fr/sorties/sortie-69907/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171445823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171540006-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171641852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171737021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171840393_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172651196-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172803193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172849997-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172940680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173117654.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173147140.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174015515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174101550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174139514-scaled.jpg,1/21/2024 0:00,17.0000000,18.0000000,43.2594090000000,5.3750080000000,,Plage de l'Huveaune,69917,Observation #69917,https://biolit.fr/observations/observation-69917/,Corallina officinalis/caespitosa,Coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173117654.jpg,,,Identifiable +N1,69907,Sortie #69907,https://biolit.fr/sorties/sortie-69907/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171445823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171540006-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171641852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171737021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171840393_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172651196-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172803193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172849997-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172940680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173117654.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173147140.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174015515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174101550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174139514-scaled.jpg,1/21/2024 0:00,17.0000000,18.0000000,43.2594090000000,5.3750080000000,,Plage de l'Huveaune,69919,Observation #69919,https://biolit.fr/observations/observation-69919/,Corallina officinalis/caespitosa,Coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173147140.jpg,,,Identifiable +N1,69907,Sortie #69907,https://biolit.fr/sorties/sortie-69907/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171445823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171540006-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171641852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171737021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171840393_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172651196-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172803193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172849997-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172940680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173117654.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173147140.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174015515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174101550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174139514-scaled.jpg,1/21/2024 0:00,17.0000000,18.0000000,43.2594090000000,5.3750080000000,,Plage de l'Huveaune,69921,Observation #69921,https://biolit.fr/observations/observation-69921/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174015515-scaled.jpg,,TRUE,Identifiable +N1,69907,Sortie #69907,https://biolit.fr/sorties/sortie-69907/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171445823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171540006-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171641852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171737021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171840393_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172651196-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172803193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172849997-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172940680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173117654.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173147140.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174015515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174101550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174139514-scaled.jpg,1/21/2024 0:00,17.0000000,18.0000000,43.2594090000000,5.3750080000000,,Plage de l'Huveaune,69923,Observation #69923,https://biolit.fr/observations/observation-69923/,Electra posidoniae,Bryozoaire de la posidonie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171445823-scaled.jpg,,,Identifiable +N1,69907,Sortie #69907,https://biolit.fr/sorties/sortie-69907/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171445823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171540006-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171641852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171737021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171840393_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172651196-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172803193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172849997-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172940680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173117654.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173147140.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174015515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174101550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174139514-scaled.jpg,1/21/2024 0:00,17.0000000,18.0000000,43.2594090000000,5.3750080000000,,Plage de l'Huveaune,69925,Observation #69925,https://biolit.fr/observations/observation-69925/,Electra posidoniae,Bryozoaire de la posidonie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171540006-rotated.jpg,,,Identifiable +N1,69907,Sortie #69907,https://biolit.fr/sorties/sortie-69907/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171445823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171540006-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171641852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171737021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171840393_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172651196-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172803193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172849997-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172940680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173117654.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173147140.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174015515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174101550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174139514-scaled.jpg,1/21/2024 0:00,17.0000000,18.0000000,43.2594090000000,5.3750080000000,,Plage de l'Huveaune,69931,Observation #69931,https://biolit.fr/observations/observation-69931/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175431-scaled.jpg,,,Identifiable +N1,69907,Sortie #69907,https://biolit.fr/sorties/sortie-69907/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171445823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171540006-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171641852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171737021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171840393_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172651196-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172803193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172849997-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172940680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173117654.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173147140.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174015515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174101550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174139514-scaled.jpg,1/21/2024 0:00,17.0000000,18.0000000,43.2594090000000,5.3750080000000,,Plage de l'Huveaune,69933,Observation #69933,https://biolit.fr/observations/observation-69933/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172651196-scaled.jpg,,TRUE,Identifiable +N1,69907,Sortie #69907,https://biolit.fr/sorties/sortie-69907/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171445823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171540006-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171641852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171737021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171840393_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172651196-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172803193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172849997-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172940680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173117654.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173147140.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174015515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174101550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174139514-scaled.jpg,1/21/2024 0:00,17.0000000,18.0000000,43.2594090000000,5.3750080000000,,Plage de l'Huveaune,69935,Observation #69935,https://biolit.fr/observations/observation-69935/,Jania rubens,Janie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172803193-scaled.jpg,,,Ne sais pas +N1,69907,Sortie #69907,https://biolit.fr/sorties/sortie-69907/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171445823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171540006-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171641852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171737021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171840393_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172651196-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172803193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172849997-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172940680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173117654.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173147140.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174015515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174101550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174139514-scaled.jpg,1/21/2024 0:00,17.0000000,18.0000000,43.2594090000000,5.3750080000000,,Plage de l'Huveaune,69937,Observation #69937,https://biolit.fr/observations/observation-69937/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172849997-scaled.jpg,,,Identifiable +N1,69907,Sortie #69907,https://biolit.fr/sorties/sortie-69907/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171445823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171540006-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171641852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171737021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171840393_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172651196-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172803193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172849997-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172940680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173117654.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173147140.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174015515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174101550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174139514-scaled.jpg,1/21/2024 0:00,17.0000000,18.0000000,43.2594090000000,5.3750080000000,,Plage de l'Huveaune,69939,Observation #69939,https://biolit.fr/observations/observation-69939/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174139514-scaled.jpg,,,Ne sais pas +N1,69907,Sortie #69907,https://biolit.fr/sorties/sortie-69907/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171445823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171540006-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171641852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171737021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171840393_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172651196-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172803193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172849997-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172940680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173117654.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173147140.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174015515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174101550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174139514-scaled.jpg,1/21/2024 0:00,17.0000000,18.0000000,43.2594090000000,5.3750080000000,,Plage de l'Huveaune,69941,Observation #69941,https://biolit.fr/observations/observation-69941/,Tritia corniculum,Tritia corniculum,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171840393_HDR-scaled.jpg,,,Ne sais pas +N1,69907,Sortie #69907,https://biolit.fr/sorties/sortie-69907/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171445823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171540006-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171641852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171737021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171840393_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172651196-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172803193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172849997-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172940680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173117654.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173147140.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174015515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174101550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174139514-scaled.jpg,1/21/2024 0:00,17.0000000,18.0000000,43.2594090000000,5.3750080000000,,Plage de l'Huveaune,69943,Observation #69943,https://biolit.fr/observations/observation-69943/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174451-scaled.jpg,,TRUE,Identifiable +N1,69907,Sortie #69907,https://biolit.fr/sorties/sortie-69907/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171445823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171540006-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171641852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171737021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171840393_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172651196-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172803193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172849997-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172940680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173117654.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173147140.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174015515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174101550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174139514-scaled.jpg,1/21/2024 0:00,17.0000000,18.0000000,43.2594090000000,5.3750080000000,,Plage de l'Huveaune,73451,Observation #73451,https://biolit.fr/observations/observation-73451/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171641852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171737021.jpg,,,Ne sais pas +N1,69958,Sortie #69958,https://biolit.fr/sorties/sortie-69958/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162825-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_161838305_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162056662_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162425959_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_163945462_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164447050_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164517048-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164913719_HDR-rotated.jpg,1/27/2024 0:00,16.0:15,16.0:45,43.2359330000000,5.35990700000000,,Plage de la Verrerie,69960,Observation #69960,https://biolit.fr/observations/observation-69960/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162056662_HDR-scaled.jpg,,TRUE,Identifiable +N1,69958,Sortie #69958,https://biolit.fr/sorties/sortie-69958/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162825-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_161838305_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162056662_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162425959_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_163945462_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164447050_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164517048-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164913719_HDR-rotated.jpg,1/27/2024 0:00,16.0:15,16.0:45,43.2359330000000,5.35990700000000,,Plage de la Verrerie,69962,Observation #69962,https://biolit.fr/observations/observation-69962/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164447050_HDR-rotated.jpg,,,Identifiable +N1,69958,Sortie #69958,https://biolit.fr/sorties/sortie-69958/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162825-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_161838305_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162056662_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162425959_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_163945462_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164447050_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164517048-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164913719_HDR-rotated.jpg,1/27/2024 0:00,16.0:15,16.0:45,43.2359330000000,5.35990700000000,,Plage de la Verrerie,69964,Observation #69964,https://biolit.fr/observations/observation-69964/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164913719_HDR-rotated.jpg,,,Identifiable +N1,69958,Sortie #69958,https://biolit.fr/sorties/sortie-69958/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162825-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_161838305_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162056662_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162425959_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_163945462_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164447050_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164517048-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164913719_HDR-rotated.jpg,1/27/2024 0:00,16.0:15,16.0:45,43.2359330000000,5.35990700000000,,Plage de la Verrerie,69966,Observation #69966,https://biolit.fr/observations/observation-69966/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_161838305_HDR-rotated.jpg,,TRUE,Identifiable +N1,69958,Sortie #69958,https://biolit.fr/sorties/sortie-69958/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162825-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_161838305_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162056662_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162425959_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_163945462_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164447050_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164517048-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164913719_HDR-rotated.jpg,1/27/2024 0:00,16.0:15,16.0:45,43.2359330000000,5.35990700000000,,Plage de la Verrerie,69968,Observation #69968,https://biolit.fr/observations/observation-69968/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164517048-rotated.jpg,,,Identifiable +N1,69958,Sortie #69958,https://biolit.fr/sorties/sortie-69958/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162825-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_161838305_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162056662_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162425959_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_163945462_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164447050_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164517048-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164913719_HDR-rotated.jpg,1/27/2024 0:00,16.0:15,16.0:45,43.2359330000000,5.35990700000000,,Plage de la Verrerie,69974,Observation #69974,https://biolit.fr/observations/observation-69974/,Sertularella polyzonias,Sertularelle polyzonias,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_163945462_HDR-rotated.jpg,,,Ne sais pas +N1,69981,Sortie #69981,https://biolit.fr/sorties/sortie-69981/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173140-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_165210758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173851943-rotated.jpg,1/27/2024 0:00,17.0000000,17.0:45,43.2380210000000,5.3617150000000,,Plage de l'Anse des Phocéens,69983,Observation #69983,https://biolit.fr/observations/observation-69983/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173430-scaled.jpg,,TRUE,Identifiable +N1,69981,Sortie #69981,https://biolit.fr/sorties/sortie-69981/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173140-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_165210758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173851943-rotated.jpg,1/27/2024 0:00,17.0000000,17.0:45,43.2380210000000,5.3617150000000,,Plage de l'Anse des Phocéens,69985,Observation #69985,https://biolit.fr/observations/observation-69985/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173536-scaled.jpg,,TRUE,Identifiable +N1,69981,Sortie #69981,https://biolit.fr/sorties/sortie-69981/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173140-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_165210758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173851943-rotated.jpg,1/27/2024 0:00,17.0000000,17.0:45,43.2380210000000,5.3617150000000,,Plage de l'Anse des Phocéens,69987,Observation #69987,https://biolit.fr/observations/observation-69987/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173140-scaled.jpg,,,Identifiable +N1,69981,Sortie #69981,https://biolit.fr/sorties/sortie-69981/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173140-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_165210758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173851943-rotated.jpg,1/27/2024 0:00,17.0000000,17.0:45,43.2380210000000,5.3617150000000,,Plage de l'Anse des Phocéens,69989,Observation #69989,https://biolit.fr/observations/observation-69989/,Flabellia petiolata,Udotée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_165210758_HDR-scaled.jpg,,TRUE,Ne sais pas +N1,69981,Sortie #69981,https://biolit.fr/sorties/sortie-69981/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173140-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_165210758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173851943-rotated.jpg,1/27/2024 0:00,17.0000000,17.0:45,43.2380210000000,5.3617150000000,,Plage de l'Anse des Phocéens,69991,Observation #69991,https://biolit.fr/observations/observation-69991/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173851943-rotated.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70013,Observation #70013,https://biolit.fr/observations/observation-70013/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg,,TRUE,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70015,Observation #70015,https://biolit.fr/observations/observation-70015/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70017,Observation #70017,https://biolit.fr/observations/observation-70017/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg,,TRUE,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70019,Observation #70019,https://biolit.fr/observations/observation-70019/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70021,Observation #70021,https://biolit.fr/observations/observation-70021/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg,,TRUE,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70023,Observation #70023,https://biolit.fr/observations/observation-70023/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70025,Observation #70025,https://biolit.fr/observations/observation-70025/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70027,Observation #70027,https://biolit.fr/observations/observation-70027/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70029,Observation #70029,https://biolit.fr/observations/observation-70029/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70031,Observation #70031,https://biolit.fr/observations/observation-70031/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70033,Observation #70033,https://biolit.fr/observations/observation-70033/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70035,Observation #70035,https://biolit.fr/observations/observation-70035/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70037,Observation #70037,https://biolit.fr/observations/observation-70037/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70039,Observation #70039,https://biolit.fr/observations/observation-70039/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70041,Observation #70041,https://biolit.fr/observations/observation-70041/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70043,Observation #70043,https://biolit.fr/observations/observation-70043/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70045,Observation #70045,https://biolit.fr/observations/observation-70045/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70047,Observation #70047,https://biolit.fr/observations/observation-70047/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70049,Observation #70049,https://biolit.fr/observations/observation-70049/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70051,Observation #70051,https://biolit.fr/observations/observation-70051/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg,,,Ne sais pas +N1,70071,Sortie #70071,https://biolit.fr/sorties/sortie-70071/,GAUTIER Manon,https://biolit.fr/wp-content/uploads/jet-form-builder/8d6946266fc8e5216122b1e859e5f5b3/2024/01/IMG_20231223_1510356951-scaled.jpg,12/23/2023 0:00,15.0000000,16.0000000,48.6367980000000,-2.12033700000000,,Plage de longchamp Saint Lunaire,70073,Observation #70073,https://biolit.fr/observations/observation-70073/,Morus bassanus,Fou de Bassan,,https://biolit.fr/wp-content/uploads/jet-form-builder/8d6946266fc8e5216122b1e859e5f5b3/2024/01/IMG_20231223_1510356951-scaled.jpg,,TRUE,Identifiable +N1,70078,Sortie #70078,https://biolit.fr/sorties/sortie-70078/,admin biolit,https://biolit.fr/wp-content/uploads/jet-form-builder/5e9647a2e573e408c911ec2521328db5/2024/01/Asteria_rubenscBioLit-Francoise.jpg,1/30/2024 0:00,12.0:23,14.0:23,47.9548900000000,3.37503400000000,,la,,,,,,,,,, +N1,70081,Sortie #70081,https://biolit.fr/sorties/sortie-70081/,admin biolit,https://biolit.fr/wp-content/uploads/jet-form-builder/5e9647a2e573e408c911ec2521328db5/2024/01/Asteria_rubenscBioLit-Francoise-1.jpg,1/30/2024 0:00,12.0:37,12.0:41,48.87366,2.473184,,la,,,,,,,,,, +N1,70085,Sortie #70085,https://biolit.fr/sorties/sortie-70085/,admin biolit,https://biolit.fr/wp-content/uploads/jet-form-builder/5e9647a2e573e408c911ec2521328db5/2024/01/20210604_Marseilleveyre_Rugolopterix_arkamurae_BioLit_Marine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e9647a2e573e408c911ec2521328db5/2024/01/Asteria_rubenscBioLit-Francoise-2.jpg,1/30/2024 0:00,12.0:38,17.0:43,48.873427,2.47385,,la,,,,,,,,,, +N1,70092,Sortie #70092,https://biolit.fr/sorties/sortie-70092/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_170457-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_170556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_171625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_172802-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_171236657_BURST008-rotated.jpg,1/27/2024 0:00,17.0000000,17.0000000,43.236913000000,5.36045000000000,,Plage de l’Anse des Sablettes,70094,Observation #70094,https://biolit.fr/observations/observation-70094/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_170457-scaled.jpg,,TRUE,Identifiable +N1,70092,Sortie #70092,https://biolit.fr/sorties/sortie-70092/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_170457-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_170556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_171625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_172802-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_171236657_BURST008-rotated.jpg,1/27/2024 0:00,17.0000000,17.0000000,43.236913000000,5.36045000000000,,Plage de l’Anse des Sablettes,70096,Observation #70096,https://biolit.fr/observations/observation-70096/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_170556-scaled.jpg,,,Ne sais pas +N1,70092,Sortie #70092,https://biolit.fr/sorties/sortie-70092/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_170457-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_170556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_171625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_172802-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_171236657_BURST008-rotated.jpg,1/27/2024 0:00,17.0000000,17.0000000,43.236913000000,5.36045000000000,,Plage de l’Anse des Sablettes,70100,Observation #70100,https://biolit.fr/observations/observation-70100/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_172802-scaled.jpg,,TRUE,Identifiable +N1,70092,Sortie #70092,https://biolit.fr/sorties/sortie-70092/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_170457-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_170556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_171625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_172802-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_171236657_BURST008-rotated.jpg,1/27/2024 0:00,17.0000000,17.0000000,43.236913000000,5.36045000000000,,Plage de l’Anse des Sablettes,70102,Observation #70102,https://biolit.fr/observations/observation-70102/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_171236657_BURST008-rotated.jpg,,,Ne sais pas +N1,70107,Sortie #70107,https://biolit.fr/sorties/sortie-70107/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_111930-scaled.jpg,1/27/2024 0:00,16.0:45,17.0000000,43.2359880000000,5.3599500000000,,Plage de la Verrerie,70109,Observation #70109,https://biolit.fr/observations/observation-70109/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_111930-scaled.jpg,,,Ne sais pas +N1,70131,Sortie #70131,https://biolit.fr/sorties/sortie-70131/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_130501145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_131247631_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_140725702_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131153498.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131247428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131425128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132115370.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132623531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132934194.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133020193.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133237790.jpg,1/28/2024 0:00,11.0000000,12.0000000,43.2398940000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70133,Observation #70133,https://biolit.fr/observations/observation-70133/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_130501145-scaled.jpg,,,Identifiable +N1,70131,Sortie #70131,https://biolit.fr/sorties/sortie-70131/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_130501145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_131247631_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_140725702_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131153498.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131247428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131425128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132115370.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132623531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132934194.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133020193.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133237790.jpg,1/28/2024 0:00,11.0000000,12.0000000,43.2398940000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70135,Observation #70135,https://biolit.fr/observations/observation-70135/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_131247631_HDR.jpg,,,Identifiable +N1,70131,Sortie #70131,https://biolit.fr/sorties/sortie-70131/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_130501145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_131247631_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_140725702_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131153498.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131247428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131425128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132115370.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132623531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132934194.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133020193.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133237790.jpg,1/28/2024 0:00,11.0000000,12.0000000,43.2398940000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70137,Observation #70137,https://biolit.fr/observations/observation-70137/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131247428.jpg,,,Identifiable +N1,70131,Sortie #70131,https://biolit.fr/sorties/sortie-70131/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_130501145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_131247631_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_140725702_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131153498.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131247428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131425128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132115370.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132623531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132934194.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133020193.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133237790.jpg,1/28/2024 0:00,11.0000000,12.0000000,43.2398940000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70139,Observation #70139,https://biolit.fr/observations/observation-70139/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131153498.jpg,,,Identifiable +N1,70131,Sortie #70131,https://biolit.fr/sorties/sortie-70131/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_130501145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_131247631_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_140725702_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131153498.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131247428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131425128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132115370.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132623531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132934194.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133020193.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133237790.jpg,1/28/2024 0:00,11.0000000,12.0000000,43.2398940000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70141,Observation #70141,https://biolit.fr/observations/observation-70141/,Pusia ebenus,Pusia ébène,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131425128.jpg,,,Identifiable +N1,70131,Sortie #70131,https://biolit.fr/sorties/sortie-70131/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_130501145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_131247631_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_140725702_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131153498.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131247428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131425128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132115370.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132623531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132934194.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133020193.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133237790.jpg,1/28/2024 0:00,11.0000000,12.0000000,43.2398940000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70143,Observation #70143,https://biolit.fr/observations/observation-70143/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132115370.jpg,,TRUE,Identifiable +N1,70131,Sortie #70131,https://biolit.fr/sorties/sortie-70131/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_130501145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_131247631_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_140725702_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131153498.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131247428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131425128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132115370.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132623531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132934194.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133020193.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133237790.jpg,1/28/2024 0:00,11.0000000,12.0000000,43.2398940000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70145,Observation #70145,https://biolit.fr/observations/observation-70145/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132934194.jpg,,TRUE,Identifiable +N1,70131,Sortie #70131,https://biolit.fr/sorties/sortie-70131/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_130501145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_131247631_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_140725702_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131153498.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131247428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131425128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132115370.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132623531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132934194.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133020193.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133237790.jpg,1/28/2024 0:00,11.0000000,12.0000000,43.2398940000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70149,Observation #70149,https://biolit.fr/observations/observation-70149/,Modiolus barbatus,Modiole barbue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_140725702_HDR-scaled.jpg,,,Identifiable +N1,70131,Sortie #70131,https://biolit.fr/sorties/sortie-70131/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_130501145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_131247631_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_140725702_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131153498.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131247428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131425128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132115370.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132623531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132934194.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133020193.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133237790.jpg,1/28/2024 0:00,11.0000000,12.0000000,43.2398940000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70151,Observation #70151,https://biolit.fr/observations/observation-70151/,Cardita calyculata,Cardite petit calice,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132623531.jpg,,,Identifiable +N1,70131,Sortie #70131,https://biolit.fr/sorties/sortie-70131/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_130501145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_131247631_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_140725702_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131153498.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131247428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131425128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132115370.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132623531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132934194.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133020193.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133237790.jpg,1/28/2024 0:00,11.0000000,12.0000000,43.2398940000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70153,Observation #70153,https://biolit.fr/observations/observation-70153/,Bittium reticulatum,Cérithe réticulé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133020193.jpg,,,Identifiable +N1,70165,Sortie #70165,https://biolit.fr/sorties/sortie-70165/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/01/20240131_0847391-scaled.jpg,1/22/2024 0:00,12.0:45,14.0000000,48.819009,-3.501012,,Plage de Landrélec,,,,,,,,,, +N1,70177,Sortie #70177,https://biolit.fr/sorties/sortie-70177/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133302537.jpg,1/28/2024 0:00,12.0000000,12.0000000,43.2398850000000,5.36244400000000,,Plage de l’Anse du Bain des Dames,70179,Observation #70179,https://biolit.fr/observations/observation-70179/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-1-scaled.jpg,,,Ne sais pas +N1,70177,Sortie #70177,https://biolit.fr/sorties/sortie-70177/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133302537.jpg,1/28/2024 0:00,12.0000000,12.0000000,43.2398850000000,5.36244400000000,,Plage de l’Anse du Bain des Dames,70181,Observation #70181,https://biolit.fr/observations/observation-70181/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032-1.jpg,,,Ne sais pas +N1,70177,Sortie #70177,https://biolit.fr/sorties/sortie-70177/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133302537.jpg,1/28/2024 0:00,12.0000000,12.0000000,43.2398850000000,5.36244400000000,,Plage de l’Anse du Bain des Dames,70189,Observation #70189,https://biolit.fr/observations/observation-70189/,Sertularella mediterranea,Sertularelle de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848-1.jpg,,,Ne sais pas +N1,70177,Sortie #70177,https://biolit.fr/sorties/sortie-70177/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133302537.jpg,1/28/2024 0:00,12.0000000,12.0000000,43.2398850000000,5.36244400000000,,Plage de l’Anse du Bain des Dames,70191,Observation #70191,https://biolit.fr/observations/observation-70191/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607-1.jpg,,,Ne sais pas +N1,70177,Sortie #70177,https://biolit.fr/sorties/sortie-70177/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133302537.jpg,1/28/2024 0:00,12.0000000,12.0000000,43.2398850000000,5.36244400000000,,Plage de l’Anse du Bain des Dames,70193,Observation #70193,https://biolit.fr/observations/observation-70193/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860-1.jpg,,,Ne sais pas +N1,70177,Sortie #70177,https://biolit.fr/sorties/sortie-70177/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133302537.jpg,1/28/2024 0:00,12.0000000,12.0000000,43.2398850000000,5.36244400000000,,Plage de l’Anse du Bain des Dames,70197,Observation #70197,https://biolit.fr/observations/observation-70197/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133302537.jpg,,,Ne sais pas +N1,70177,Sortie #70177,https://biolit.fr/sorties/sortie-70177/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133302537.jpg,1/28/2024 0:00,12.0000000,12.0000000,43.2398850000000,5.36244400000000,,Plage de l’Anse du Bain des Dames,74892,Observation #74892,https://biolit.fr/observations/observation-74892/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634-1.jpg,,,Ne sais pas +N1,70415,Sortie #70415,https://biolit.fr/sorties/sortie-70415/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2024/02/Q2-littorine-fabalis-28-12-2023.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2024/02/Q2-monodonte-28-12-2023.jpeg,1/30/2024 0:00,16.0000000,16.0:45,47.6077880,-2.747549,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Gornevez Séné 56860,,,,,,,,,, +N1,70453,Sortie #70453,https://biolit.fr/sorties/sortie-70453/,Pequiman Caro,https://biolit.fr/wp-content/uploads/jet-form-builder/d582e78d55ad0d0f25b85b54f38554a6/2024/02/20240203_173321-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d582e78d55ad0d0f25b85b54f38554a6/2024/02/20240203_173331-scaled.jpg,02/03/2024,17.0:38,17.0000000,48.6388240000000,-2.07110100000000,,Saint Enogat,70455,Observation #70455,https://biolit.fr/observations/observation-70455/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d582e78d55ad0d0f25b85b54f38554a6/2024/02/20240203_173321-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d582e78d55ad0d0f25b85b54f38554a6/2024/02/20240203_173331-scaled.jpg,,,non-identifiable +N1,70519,Sortie #70519,https://biolit.fr/sorties/sortie-70519/,HEUZE Alexandre,https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3606-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3607-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3608-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3609-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3610-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3611-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3612-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3614-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3615-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3616-scaled.jpeg,02/07/2024,14.0000000,16.0000000,49.4913250000000,0.0930620000000000,,Digue Nord Le Havre,70521,Observation #70521,https://biolit.fr/observations/observation-70521/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3606-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3607-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3608-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3609-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3610-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3611-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3612-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3616-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3615-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3614-scaled.jpeg,,,Ne sais pas +N1,70524,Sortie #70524,https://biolit.fr/sorties/sortie-70524/,Berdon Mouhoud Christine,https://biolit.fr/wp-content/uploads/jet-form-builder/1975b259327839ceb4235febaa38f3b2/2024/02/IMG_7088-scaled.jpeg,02/08/2024,10.0000000,10.0:17,48.8596580000000,-3.13239100000000,,Port la chaîne,70526,Observation #70526,https://biolit.fr/observations/observation-70526/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/1975b259327839ceb4235febaa38f3b2/2024/02/IMG_7088-scaled.jpeg,,,Identifiable +N1,70529,Sortie #70529,https://biolit.fr/sorties/sortie-70529/,Berdon Mouhoud Christine,https://biolit.fr/wp-content/uploads/jet-form-builder/1975b259327839ceb4235febaa38f3b2/2024/02/IMG_7089-scaled.jpeg,02/08/2024,10.000004,10.0:14,48.8595740000000,-3.13127500000000,,Port la Chaîne,70531,Observation #70531,https://biolit.fr/observations/observation-70531/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/jet-form-builder/1975b259327839ceb4235febaa38f3b2/2024/02/IMG_7089-scaled.jpeg,,TRUE,Identifiable +N1,70534,Sortie #70534,https://biolit.fr/sorties/sortie-70534/,Berdon Mouhoud Christine,https://biolit.fr/wp-content/uploads/jet-form-builder/1975b259327839ceb4235febaa38f3b2/2024/02/IMG_7086-scaled.jpeg,02/08/2024,10.0000000,10.000005,48.8592350000000,-3.13101800000000,,Port la Chaîne,70536,Observation #70536,https://biolit.fr/observations/observation-70536/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/1975b259327839ceb4235febaa38f3b2/2024/02/IMG_7086-scaled.jpeg,,TRUE,Identifiable +N1,70541,Sortie #70541,https://biolit.fr/sorties/sortie-70541/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240204_115832099-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240208_131844411.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131031167-scaled.jpg,02/04/2024,11.0:45,12.0000000,43.2380430000000,5.3617690000000,,Plage de l'Anse des Phocéens,70543,Observation #70543,https://biolit.fr/observations/observation-70543/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240204_115832099-rotated.jpg,,TRUE,Identifiable +N1,70541,Sortie #70541,https://biolit.fr/sorties/sortie-70541/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240204_115832099-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240208_131844411.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131031167-scaled.jpg,02/04/2024,11.0:45,12.0000000,43.2380430000000,5.3617690000000,,Plage de l'Anse des Phocéens,70545,Observation #70545,https://biolit.fr/observations/observation-70545/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240208_131844411.jpg,,,Ne sais pas +N1,70554,Sortie #70554,https://biolit.fr/sorties/sortie-70554/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/02/IMG_20231129_141848-scaled.jpg,11/29/2023 0:00,14.0000000,15.0000000,48.6260290000000,-2.19870300000000,,La Nellière Saint-Jacut-de-la-mer,,,,,,,,,, +N1,70568,Sortie #70568,https://biolit.fr/sorties/sortie-70568/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-09-133403.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131326773-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131409355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131548420.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131630718.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131733388.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131844941.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132036972-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132117586.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132159020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132238118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132314153.jpg,02/03/2024,16.0000000,17.0000000,43.2398330000000,5.36246000000000,,Plage de l’Anse du Bain des Dames,70570,Observation #70570,https://biolit.fr/observations/observation-70570/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-09-133403.jpg,,,Identifiable +N1,70568,Sortie #70568,https://biolit.fr/sorties/sortie-70568/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-09-133403.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131326773-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131409355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131548420.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131630718.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131733388.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131844941.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132036972-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132117586.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132159020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132238118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132314153.jpg,02/03/2024,16.0000000,17.0000000,43.2398330000000,5.36246000000000,,Plage de l’Anse du Bain des Dames,70572,Observation #70572,https://biolit.fr/observations/observation-70572/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131326773-scaled.jpg,,TRUE,Identifiable +N1,70568,Sortie #70568,https://biolit.fr/sorties/sortie-70568/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-09-133403.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131326773-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131409355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131548420.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131630718.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131733388.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131844941.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132036972-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132117586.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132159020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132238118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132314153.jpg,02/03/2024,16.0000000,17.0000000,43.2398330000000,5.36246000000000,,Plage de l’Anse du Bain des Dames,70574,Observation #70574,https://biolit.fr/observations/observation-70574/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131844941.jpg,,TRUE,Identifiable +N1,70568,Sortie #70568,https://biolit.fr/sorties/sortie-70568/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-09-133403.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131326773-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131409355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131548420.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131630718.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131733388.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131844941.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132036972-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132117586.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132159020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132238118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132314153.jpg,02/03/2024,16.0000000,17.0000000,43.2398330000000,5.36246000000000,,Plage de l’Anse du Bain des Dames,70576,Observation #70576,https://biolit.fr/observations/observation-70576/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131733388.jpg,,TRUE,Identifiable +N1,70568,Sortie #70568,https://biolit.fr/sorties/sortie-70568/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-09-133403.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131326773-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131409355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131548420.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131630718.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131733388.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131844941.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132036972-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132117586.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132159020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132238118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132314153.jpg,02/03/2024,16.0000000,17.0000000,43.2398330000000,5.36246000000000,,Plage de l’Anse du Bain des Dames,70578,Observation #70578,https://biolit.fr/observations/observation-70578/,Lithophaga lithophaga,Datte de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132238118-scaled.jpg,,TRUE,Identifiable +N1,70568,Sortie #70568,https://biolit.fr/sorties/sortie-70568/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-09-133403.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131326773-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131409355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131548420.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131630718.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131733388.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131844941.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132036972-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132117586.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132159020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132238118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132314153.jpg,02/03/2024,16.0000000,17.0000000,43.2398330000000,5.36246000000000,,Plage de l’Anse du Bain des Dames,70580,Observation #70580,https://biolit.fr/observations/observation-70580/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131548420.jpg,,,Identifiable +N1,70568,Sortie #70568,https://biolit.fr/sorties/sortie-70568/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-09-133403.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131326773-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131409355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131548420.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131630718.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131733388.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131844941.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132036972-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132117586.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132159020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132238118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132314153.jpg,02/03/2024,16.0000000,17.0000000,43.2398330000000,5.36246000000000,,Plage de l’Anse du Bain des Dames,70584,Observation #70584,https://biolit.fr/observations/observation-70584/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132117586.jpg,,,Identifiable +N1,70568,Sortie #70568,https://biolit.fr/sorties/sortie-70568/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-09-133403.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131326773-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131409355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131548420.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131630718.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131733388.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131844941.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132036972-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132117586.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132159020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132238118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132314153.jpg,02/03/2024,16.0000000,17.0000000,43.2398330000000,5.36246000000000,,Plage de l’Anse du Bain des Dames,70588,Observation #70588,https://biolit.fr/observations/observation-70588/,Euthria cornea,Buccin veiné,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131630718.jpg,,,Identifiable +N1,70597,Sortie #70597,https://biolit.fr/sorties/sortie-70597/,HECKER Nathalie,https://biolit.fr/wp-content/uploads/jet-form-builder/b0aed2bf40921579b3b28ba678d08eef/2024/02/WhatsApp-Image-2024-02-12-at-14.30.38.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/b0aed2bf40921579b3b28ba678d08eef/2024/02/WhatsApp-Image-2024-02-12-at-14.30.57.jpeg,02/11/2024,16.0000000,16.0000000,47.8553030000000,-4.34980300000000,,Plage de Tronoën,70599,Observation #70599,https://biolit.fr/observations/observation-70599/,Raja brachyura,Raie lisse,,https://biolit.fr/wp-content/uploads/jet-form-builder/b0aed2bf40921579b3b28ba678d08eef/2024/02/WhatsApp-Image-2024-02-12-at-14.30.38.jpeg,,TRUE,Identifiable +N1,70597,Sortie #70597,https://biolit.fr/sorties/sortie-70597/,HECKER Nathalie,https://biolit.fr/wp-content/uploads/jet-form-builder/b0aed2bf40921579b3b28ba678d08eef/2024/02/WhatsApp-Image-2024-02-12-at-14.30.38.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/b0aed2bf40921579b3b28ba678d08eef/2024/02/WhatsApp-Image-2024-02-12-at-14.30.57.jpeg,02/11/2024,16.0000000,16.0000000,47.8553030000000,-4.34980300000000,,Plage de Tronoën,70601,Observation #70601,https://biolit.fr/observations/observation-70601/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/b0aed2bf40921579b3b28ba678d08eef/2024/02/WhatsApp-Image-2024-02-12-at-14.30.57.jpeg,,TRUE,Identifiable +N1,70604,Sortie #70604,https://biolit.fr/sorties/sortie-70604/,HECKER Nathalie,https://biolit.fr/wp-content/uploads/jet-form-builder/b0aed2bf40921579b3b28ba678d08eef/2024/02/WhatsApp-Image-2024-02-12-at-13.20.19.jpeg,02/12/2024,11.0000000,12.0000000,47.7926620000000,-4.24206400000000,,Plage de Skividen,70606,Observation #70606,https://biolit.fr/observations/observation-70606/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/b0aed2bf40921579b3b28ba678d08eef/2024/02/WhatsApp-Image-2024-02-12-at-13.20.19.jpeg,,TRUE,Identifiable +N1,70613,Sortie #70613,https://biolit.fr/sorties/sortie-70613/,LAURANS Loïc,https://biolit.fr/wp-content/uploads/jet-form-builder/83984ba3123e4923df0e71f76dd17c00/2024/02/photo_1.jpeg,02/12/2024,12.0000000,12.0000000,48.3505060000000,-4.69840800000000,,Plougonvelin Plage du Trez Hir,70615,Observation #70615,https://biolit.fr/observations/observation-70615/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/83984ba3123e4923df0e71f76dd17c00/2024/02/photo_1.jpeg,,TRUE,Identifiable +N1,70704,Sortie #70704,https://biolit.fr/sorties/sortie-70704/,Di Costanzo Estelle,https://biolit.fr/wp-content/uploads/jet-form-builder/436631c2e65e66a3af3802f509b1e101/2024/02/20230528_113508-scaled.jpg,2/15/2024 0:00,9.0:12,12.0:12,43.1379070,6.0707310,Association Med.IA Nature,Alamanare,,,,,,,,,, +N1,70723,Sortie #70723,https://biolit.fr/sorties/sortie-70723/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131447.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_202742183-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203220496-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203344804-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203826582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_205347745-scaled.jpg,02/03/2024,16.0000000,16.0000000,43.2398400000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70725,Observation #70725,https://biolit.fr/observations/observation-70725/,Stramonita haemastoma,Bouche de sang,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131009.jpg,,TRUE,Identifiable +N1,70723,Sortie #70723,https://biolit.fr/sorties/sortie-70723/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131447.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_202742183-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203220496-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203344804-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203826582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_205347745-scaled.jpg,02/03/2024,16.0000000,16.0000000,43.2398400000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70727,Observation #70727,https://biolit.fr/observations/observation-70727/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_202742183-scaled.jpg,,TRUE,Identifiable +N1,70723,Sortie #70723,https://biolit.fr/sorties/sortie-70723/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131447.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_202742183-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203220496-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203344804-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203826582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_205347745-scaled.jpg,02/03/2024,16.0000000,16.0000000,43.2398400000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70729,Observation #70729,https://biolit.fr/observations/observation-70729/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203220496-scaled.jpg,,,Identifiable +N1,70723,Sortie #70723,https://biolit.fr/sorties/sortie-70723/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131447.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_202742183-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203220496-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203344804-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203826582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_205347745-scaled.jpg,02/03/2024,16.0000000,16.0000000,43.2398400000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70731,Observation #70731,https://biolit.fr/observations/observation-70731/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203826582.jpg,,,Identifiable +N1,70723,Sortie #70723,https://biolit.fr/sorties/sortie-70723/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131447.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_202742183-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203220496-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203344804-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203826582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_205347745-scaled.jpg,02/03/2024,16.0000000,16.0000000,43.2398400000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70733,Observation #70733,https://biolit.fr/observations/observation-70733/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131144.jpg,,TRUE,Identifiable +N1,70723,Sortie #70723,https://biolit.fr/sorties/sortie-70723/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131447.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_202742183-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203220496-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203344804-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203826582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_205347745-scaled.jpg,02/03/2024,16.0000000,16.0000000,43.2398400000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70735,Observation #70735,https://biolit.fr/observations/observation-70735/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203344804-scaled.jpg,,TRUE,Identifiable +N1,70723,Sortie #70723,https://biolit.fr/sorties/sortie-70723/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131447.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_202742183-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203220496-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203344804-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203826582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_205347745-scaled.jpg,02/03/2024,16.0000000,16.0000000,43.2398400000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70737,Observation #70737,https://biolit.fr/observations/observation-70737/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_205347745-scaled.jpg,,,Identifiable +N1,70723,Sortie #70723,https://biolit.fr/sorties/sortie-70723/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131447.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_202742183-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203220496-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203344804-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203826582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_205347745-scaled.jpg,02/03/2024,16.0000000,16.0000000,43.2398400000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70741,Observation #70741,https://biolit.fr/observations/observation-70741/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131447.jpg,,,Ne sais pas +N1,70748,Sortie #70748,https://biolit.fr/sorties/sortie-70748/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_1332561-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_1401271-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_1415121-scaled.jpg,1/29/2024 0:00,13.0000000,14.0000000,48.8168,-3.4905,,Plage de Landrélec,70750,Observation #70750,https://biolit.fr/observations/observation-70750/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_1332561-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_1401271-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_1415121-scaled.jpg,,,Identifiable +N1,70748,Sortie #70748,https://biolit.fr/sorties/sortie-70748/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_1332561-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_1401271-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_1415121-scaled.jpg,1/29/2024 0:00,13.0000000,14.0000000,48.8168,-3.4905,,Plage de Landrélec,70752,Observation #70752,https://biolit.fr/observations/observation-70752/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_1401271-scaled.jpg,,, +N1,70748,Sortie #70748,https://biolit.fr/sorties/sortie-70748/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_1332561-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_1401271-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_1415121-scaled.jpg,1/29/2024 0:00,13.0000000,14.0000000,48.8168,-3.4905,,Plage de Landrélec,70754,Observation #70754,https://biolit.fr/observations/observation-70754/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_1415121-scaled.jpg,,, +N1,70758,Sortie #70758,https://biolit.fr/sorties/sortie-70758/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_135435-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_134156-scaled.jpg,1/29/2024 0:00,13.0000000,14.0000000,48.8167680000000,-3.54049900000000,,Plage de Landrelec,70760,Observation #70760,https://biolit.fr/observations/observation-70760/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_135435-scaled.jpg,,,Identifiable +N1,70758,Sortie #70758,https://biolit.fr/sorties/sortie-70758/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_135435-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_134156-scaled.jpg,1/29/2024 0:00,13.0000000,14.0000000,48.8167680000000,-3.54049900000000,,Plage de Landrelec,70762,Observation #70762,https://biolit.fr/observations/observation-70762/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_134156-scaled.jpg,,,Identifiable +N1,70765,Sortie #70765,https://biolit.fr/sorties/sortie-70765/,Gouble Jean Jacques,https://biolit.fr/wp-content/uploads/jet-form-builder/7e0266bf349218c144435b4837c80b9c/2024/02/20210204_141610-scaled.jpg,02/04/2021,10.0000000,12.0000000,49.3595680,0.0781270,,Trouville-sur-Mer,,,,,,,,,, +N1,70770,Sortie #70770,https://biolit.fr/sorties/sortie-70770/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/Q1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/Q1-1--scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/Quadra-1-Gibule-ombiliquee-scaled.jpg,10/16/2023 0:00,12.0000000,13.0000000,48.7522300,-3.4373630,,Landrellec,,,,,,,,,, +N1,70775,Sortie #70775,https://biolit.fr/sorties/sortie-70775/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/Quadra-1-Littorine-des-rochers-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/Q1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/Quadra-1-scaled.jpg,10/16/2023 0:00,12.0000000,13.0:29,48.7522300,-3.4373630,,Landrellec,,,,,,,,,, +N1,70780,Sortie #70780,https://biolit.fr/sorties/sortie-70780/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/Quadra-1-Littorine-des-rochers-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/Quadra-1-Gibule-ombiliquee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/Q1-2-1-scaled.jpg,10/16/2023 0:00,12.0000000,13.0000000,48.7522300,-3.4373630,,Landrellec,70782,Observation #70782,https://biolit.fr/observations/observation-70782/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/Quadra-1-Littorine-des-rochers-1-scaled.jpg,,TRUE,Identifiable +N1,70780,Sortie #70780,https://biolit.fr/sorties/sortie-70780/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/Quadra-1-Littorine-des-rochers-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/Quadra-1-Gibule-ombiliquee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/Q1-2-1-scaled.jpg,10/16/2023 0:00,12.0000000,13.0000000,48.7522300,-3.4373630,,Landrellec,70784,Observation #70784,https://biolit.fr/observations/observation-70784/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/Quadra-1-Gibule-ombiliquee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/Q1-2-1-scaled.jpg,,TRUE,Identifiable +N1,70787,Sortie #70787,https://biolit.fr/sorties/sortie-70787/,Di Costanzo Estelle,https://biolit.fr/wp-content/uploads/jet-form-builder/436631c2e65e66a3af3802f509b1e101/2024/02/20240216_164908-scaled.jpg,2/16/2024 0:00,15.0000000,16.0:33,43.027657000000,6.15009200000000,Association Med.IA Nature,Plage du Pradeau,70789,Observation #70789,https://biolit.fr/observations/observation-70789/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/436631c2e65e66a3af3802f509b1e101/2024/02/20240216_164908-scaled.jpg,,TRUE,Identifiable +N1,70909,Sortie #70909,https://biolit.fr/sorties/sortie-70909/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233212.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233335.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233706.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233924.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113731163_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113836940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115311057_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115326960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_120914532-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155516302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155555417.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155623472_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155650971.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155721874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_161732524.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3577540000000,5.29086200000000,,Plage de la Batterie,70911,Observation #70911,https://biolit.fr/observations/observation-70911/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233706.jpg,,,Identifiable +N1,70909,Sortie #70909,https://biolit.fr/sorties/sortie-70909/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233212.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233335.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233706.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233924.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113731163_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113836940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115311057_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115326960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_120914532-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155516302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155555417.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155623472_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155650971.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155721874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_161732524.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3577540000000,5.29086200000000,,Plage de la Batterie,70913,Observation #70913,https://biolit.fr/observations/observation-70913/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155623472_HDR.jpg,,,Identifiable +N1,70909,Sortie #70909,https://biolit.fr/sorties/sortie-70909/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233212.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233335.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233706.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233924.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113731163_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113836940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115311057_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115326960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_120914532-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155516302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155555417.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155623472_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155650971.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155721874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_161732524.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3577540000000,5.29086200000000,,Plage de la Batterie,70915,Observation #70915,https://biolit.fr/observations/observation-70915/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155650971.jpg,,TRUE,Identifiable +N1,70909,Sortie #70909,https://biolit.fr/sorties/sortie-70909/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233212.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233335.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233706.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233924.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113731163_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113836940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115311057_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115326960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_120914532-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155516302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155555417.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155623472_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155650971.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155721874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_161732524.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3577540000000,5.29086200000000,,Plage de la Batterie,70917,Observation #70917,https://biolit.fr/observations/observation-70917/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155516302-scaled.jpg,,TRUE,Identifiable +N1,70909,Sortie #70909,https://biolit.fr/sorties/sortie-70909/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233212.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233335.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233706.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233924.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113731163_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113836940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115311057_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115326960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_120914532-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155516302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155555417.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155623472_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155650971.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155721874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_161732524.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3577540000000,5.29086200000000,,Plage de la Batterie,70919,Observation #70919,https://biolit.fr/observations/observation-70919/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113836940_HDR-scaled.jpg,,TRUE,Identifiable +N1,70909,Sortie #70909,https://biolit.fr/sorties/sortie-70909/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233212.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233335.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233706.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233924.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113731163_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113836940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115311057_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115326960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_120914532-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155516302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155555417.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155623472_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155650971.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155721874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_161732524.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3577540000000,5.29086200000000,,Plage de la Batterie,70921,Observation #70921,https://biolit.fr/observations/observation-70921/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233212.jpg,,,Ne sais pas +N1,70909,Sortie #70909,https://biolit.fr/sorties/sortie-70909/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233212.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233335.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233706.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233924.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113731163_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113836940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115311057_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115326960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_120914532-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155516302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155555417.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155623472_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155650971.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155721874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_161732524.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3577540000000,5.29086200000000,,Plage de la Batterie,70923,Observation #70923,https://biolit.fr/observations/observation-70923/,Diodora graeca,Fissurelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233335.jpg,,,Ne sais pas +N1,70909,Sortie #70909,https://biolit.fr/sorties/sortie-70909/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233212.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233335.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233706.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233924.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113731163_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113836940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115311057_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115326960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_120914532-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155516302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155555417.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155623472_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155650971.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155721874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_161732524.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3577540000000,5.29086200000000,,Plage de la Batterie,70925,Observation #70925,https://biolit.fr/observations/observation-70925/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233924.jpg,,,Ne sais pas +N1,70909,Sortie #70909,https://biolit.fr/sorties/sortie-70909/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233212.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233335.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233706.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233924.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113731163_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113836940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115311057_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115326960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_120914532-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155516302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155555417.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155623472_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155650971.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155721874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_161732524.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3577540000000,5.29086200000000,,Plage de la Batterie,70927,Observation #70927,https://biolit.fr/observations/observation-70927/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113731163_HDR.jpg,,,Ne sais pas +N1,70909,Sortie #70909,https://biolit.fr/sorties/sortie-70909/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233212.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233335.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233706.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233924.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113731163_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113836940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115311057_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115326960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_120914532-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155516302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155555417.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155623472_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155650971.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155721874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_161732524.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3577540000000,5.29086200000000,,Plage de la Batterie,70929,Observation #70929,https://biolit.fr/observations/observation-70929/,Oxalis pes-caprae,Oxalide pied-de-chèvre,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115311057_HDR-scaled.jpg,,,Ne sais pas +N1,70909,Sortie #70909,https://biolit.fr/sorties/sortie-70909/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233212.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233335.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233706.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233924.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113731163_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113836940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115311057_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115326960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_120914532-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155516302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155555417.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155623472_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155650971.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155721874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_161732524.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3577540000000,5.29086200000000,,Plage de la Batterie,70931,Observation #70931,https://biolit.fr/observations/observation-70931/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115326960-scaled.jpg,,,Ne sais pas +N1,70909,Sortie #70909,https://biolit.fr/sorties/sortie-70909/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233212.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233335.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233706.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233924.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113731163_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113836940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115311057_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115326960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_120914532-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155516302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155555417.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155623472_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155650971.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155721874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_161732524.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3577540000000,5.29086200000000,,Plage de la Batterie,70933,Observation #70933,https://biolit.fr/observations/observation-70933/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_120914532-rotated.jpg,,,Ne sais pas +N1,70909,Sortie #70909,https://biolit.fr/sorties/sortie-70909/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233212.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233335.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233706.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233924.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113731163_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113836940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115311057_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115326960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_120914532-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155516302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155555417.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155623472_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155650971.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155721874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_161732524.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3577540000000,5.29086200000000,,Plage de la Batterie,70937,Observation #70937,https://biolit.fr/observations/observation-70937/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155721874_HDR.jpg,,,Ne sais pas +N1,70909,Sortie #70909,https://biolit.fr/sorties/sortie-70909/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233212.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233335.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233706.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233924.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113731163_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113836940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115311057_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115326960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_120914532-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155516302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155555417.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155623472_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155650971.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155721874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_161732524.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3577540000000,5.29086200000000,,Plage de la Batterie,70939,Observation #70939,https://biolit.fr/observations/observation-70939/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_161732524.jpg,,,Ne sais pas +N1,71082,Sortie #71082,https://biolit.fr/sorties/sortie-71082/,SV,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1364-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1367-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1368-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1369-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1370-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1371-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1375-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1376-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1377-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1383-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1388-scaled.jpg,2/21/2024 0:00,13.0000000,17.0000000,42.8198870000000,3.04106100000000,Planète Mer,Le Barcarès - Les Portes du Roussillon,71084,Observation #71084,https://biolit.fr/observations/observation-71084/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1364-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1367-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1368-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1369-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1370-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1371-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1375-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1376-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1377-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1383-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1388-scaled.jpg,,,Ne sais pas +N1,71100,Sortie #71100,https://biolit.fr/sorties/sortie-71100/,SV,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1389-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1390-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1391-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1395-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1396-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1397-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1398-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1399-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1400-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1407-scaled.jpg,2/21/2024 0:00,13.0000000,17.0000000,42.8197150000000,3.04098100000000,Planète Mer,Le Barcarès - Les Portes du Roussillon,71102,Observation #71102,https://biolit.fr/observations/observation-71102/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1389-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1390-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1391-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1395-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1396-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1397-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1398-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1399-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1400-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1407-scaled.jpg,,,Ne sais pas +N1,71106,Sortie #71106,https://biolit.fr/sorties/sortie-71106/,philippe DE OLIVEIRA,https://biolit.fr/wp-content/uploads/jet-form-builder/ad2d986edfde3266b0cf176520742b58/2024/02/1000025184-scaled.jpg,2/28/2024 0:00,10.000008,10.0000000,-0.2866750,73.4107350,,Fumahvulah,71108,Observation #71108,https://biolit.fr/observations/observation-71108/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ad2d986edfde3266b0cf176520742b58/2024/02/1000025184-scaled.jpg,,,Ne sais pas +N1,71111,Sortie #71111,https://biolit.fr/sorties/sortie-71111/,philippe DE OLIVEIRA,https://biolit.fr/wp-content/uploads/jet-form-builder/ad2d986edfde3266b0cf176520742b58/2024/02/1000025185-scaled.jpg,2/28/2024 0:00,10.000009,10.000009,-0.2878160,73.4126800,,Fumahvulah,71113,Observation #71113,https://biolit.fr/observations/observation-71113/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ad2d986edfde3266b0cf176520742b58/2024/02/1000025185-scaled.jpg,,,Ne sais pas +N1,71124,Sortie #71124,https://biolit.fr/sorties/sortie-71124/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-28-233851.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-28-234058.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_091910084_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_092103590_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_093423000_HDR-scaled.jpg,2/28/2024 0:00,9.0000000,11.0000000,43.238008000000,5.36170700000000,,Plage de l'Anse des Phocéens,71126,Observation #71126,https://biolit.fr/observations/observation-71126/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-28-233851.jpg,,,Ne sais pas +N1,71124,Sortie #71124,https://biolit.fr/sorties/sortie-71124/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-28-233851.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-28-234058.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_091910084_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_092103590_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_093423000_HDR-scaled.jpg,2/28/2024 0:00,9.0000000,11.0000000,43.238008000000,5.36170700000000,,Plage de l'Anse des Phocéens,71128,Observation #71128,https://biolit.fr/observations/observation-71128/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-28-234058.jpg,,TRUE,Identifiable +N1,71124,Sortie #71124,https://biolit.fr/sorties/sortie-71124/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-28-233851.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-28-234058.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_091910084_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_092103590_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_093423000_HDR-scaled.jpg,2/28/2024 0:00,9.0000000,11.0000000,43.238008000000,5.36170700000000,,Plage de l'Anse des Phocéens,71130,Observation #71130,https://biolit.fr/observations/observation-71130/,Tridentata perpusilla,Sertulaire minuscule,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_091910084_HDR.jpg,,,Ne sais pas +N1,71124,Sortie #71124,https://biolit.fr/sorties/sortie-71124/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-28-233851.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-28-234058.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_091910084_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_092103590_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_093423000_HDR-scaled.jpg,2/28/2024 0:00,9.0000000,11.0000000,43.238008000000,5.36170700000000,,Plage de l'Anse des Phocéens,71132,Observation #71132,https://biolit.fr/observations/observation-71132/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_092103590_HDR-rotated.jpg,,,Ne sais pas +N1,71124,Sortie #71124,https://biolit.fr/sorties/sortie-71124/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-28-233851.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-28-234058.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_091910084_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_092103590_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_093423000_HDR-scaled.jpg,2/28/2024 0:00,9.0000000,11.0000000,43.238008000000,5.36170700000000,,Plage de l'Anse des Phocéens,71134,Observation #71134,https://biolit.fr/observations/observation-71134/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_093423000_HDR-scaled.jpg,,TRUE,Identifiable +N1,71147,Sortie #71147,https://biolit.fr/sorties/sortie-71147/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20231231_105138603-rotated.jpg,12/26/2023 0:00,11.0000000,11.0000000,43.2101160000000,5.42018800000000,,Plage de la calanque de Sormiou,71149,Observation #71149,https://biolit.fr/observations/observation-71149/,Striarca lactea,Striarca laiteuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20231231_105138603-rotated.jpg,,,Identifiable +N1,71152,Sortie #71152,https://biolit.fr/sorties/sortie-71152/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20231231_105027330_HDR-rotated.jpg,12/26/2023 0:00,10.0000000,11.0000000,43.2101340000000,5.42020600000000,,Plage de la calanque de Sormiou,71154,Observation #71154,https://biolit.fr/observations/observation-71154/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20231231_105027330_HDR-rotated.jpg,,TRUE,Identifiable +N1,71176,Sortie #71176,https://biolit.fr/sorties/sortie-71176/,Gasc Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114729-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114653-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114650-scaled.jpg,03/02/2024,10.0:15,11.000005,43.5256410,3.9293190,Ailerons,Palavas,71178,Observation #71178,https://biolit.fr/observations/observation-71178/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114653-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114650-scaled.jpg,,TRUE,Identifiable +N1,71176,Sortie #71176,https://biolit.fr/sorties/sortie-71176/,Gasc Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114729-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114653-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114650-scaled.jpg,03/02/2024,10.0:15,11.000005,43.5256410,3.9293190,Ailerons,Palavas,71180,Observation #71180,https://biolit.fr/observations/observation-71180/,Raja asterias,Raie étoilée,,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114700-scaled.jpg,,,Identifiable +N1,71176,Sortie #71176,https://biolit.fr/sorties/sortie-71176/,Gasc Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114729-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114653-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114650-scaled.jpg,03/02/2024,10.0:15,11.000005,43.5256410,3.9293190,Ailerons,Palavas,71182,Observation #71182,https://biolit.fr/observations/observation-71182/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114700-scaled.jpg,,,Identifiable +N1,71176,Sortie #71176,https://biolit.fr/sorties/sortie-71176/,Gasc Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114729-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114653-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114650-scaled.jpg,03/02/2024,10.0:15,11.000005,43.5256410,3.9293190,Ailerons,Palavas,71184,Observation #71184,https://biolit.fr/observations/observation-71184/,Eunicella singularis,Gorgone blanche,,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114724-scaled.jpg,,,Identifiable +N1,71176,Sortie #71176,https://biolit.fr/sorties/sortie-71176/,Gasc Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114729-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114653-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114650-scaled.jpg,03/02/2024,10.0:15,11.000005,43.5256410,3.9293190,Ailerons,Palavas,71186,Observation #71186,https://biolit.fr/observations/observation-71186/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114729-scaled.jpg,,,Ne sais pas +N1,71176,Sortie #71176,https://biolit.fr/sorties/sortie-71176/,Gasc Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114729-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114653-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114650-scaled.jpg,03/02/2024,10.0:15,11.000005,43.5256410,3.9293190,Ailerons,Palavas,71188,Observation #71188,https://biolit.fr/observations/observation-71188/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114729-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114708-scaled.jpg,,, +N1,71176,Sortie #71176,https://biolit.fr/sorties/sortie-71176/,Gasc Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114729-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114653-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114650-scaled.jpg,03/02/2024,10.0:15,11.000005,43.5256410,3.9293190,Ailerons,Palavas,71190,Observation #71190,https://biolit.fr/observations/observation-71190/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114704-scaled.jpg,,,Identifiable +N1,71195,Sortie #71195,https://biolit.fr/sorties/sortie-71195/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/03/IMG_20240302_145109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/03/IMG_20240302_145132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/03/IMG_20240302_145146-scaled.jpg,03/02/2024,14.0000000,14.0:56,46.1477370000000,-1.2103520000000,,chef de baie,71197,Observation #71197,https://biolit.fr/observations/observation-71197/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/03/IMG_20240302_145109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/03/IMG_20240302_145132-scaled.jpg,,TRUE,Identifiable +N1,71195,Sortie #71195,https://biolit.fr/sorties/sortie-71195/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/03/IMG_20240302_145109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/03/IMG_20240302_145132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/03/IMG_20240302_145146-scaled.jpg,03/02/2024,14.0000000,14.0:56,46.1477370000000,-1.2103520000000,,chef de baie,71199,Observation #71199,https://biolit.fr/observations/observation-71199/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/03/IMG_20240302_145146-scaled.jpg,,TRUE,Identifiable +N1,71210,Sortie #71210,https://biolit.fr/sorties/sortie-71210/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Gibbule_toupie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_102803611_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103035325_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103218880_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_122950424.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_123022497_BURST000_COVER.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Patella-rustica_Patelle-ponctuee-scaled.jpg,2/26/2024 0:00,10.0000000,11.0000000,43.2095180000000,5.37258900000000,,Calanque de Marseilleveyre,71212,Observation #71212,https://biolit.fr/observations/observation-71212/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151024.jpg,,TRUE,Identifiable +N1,71210,Sortie #71210,https://biolit.fr/sorties/sortie-71210/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Gibbule_toupie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_102803611_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103035325_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103218880_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_122950424.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_123022497_BURST000_COVER.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Patella-rustica_Patelle-ponctuee-scaled.jpg,2/26/2024 0:00,10.0000000,11.0000000,43.2095180000000,5.37258900000000,,Calanque de Marseilleveyre,71214,Observation #71214,https://biolit.fr/observations/observation-71214/,Carpobrotus acinaciformis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151211.jpg,,TRUE,Identifiable +N1,71210,Sortie #71210,https://biolit.fr/sorties/sortie-71210/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Gibbule_toupie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_102803611_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103035325_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103218880_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_122950424.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_123022497_BURST000_COVER.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Patella-rustica_Patelle-ponctuee-scaled.jpg,2/26/2024 0:00,10.0000000,11.0000000,43.2095180000000,5.37258900000000,,Calanque de Marseilleveyre,71216,Observation #71216,https://biolit.fr/observations/observation-71216/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Gibbule_toupie.jpg,,,Identifiable +N1,71210,Sortie #71210,https://biolit.fr/sorties/sortie-71210/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Gibbule_toupie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_102803611_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103035325_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103218880_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_122950424.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_123022497_BURST000_COVER.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Patella-rustica_Patelle-ponctuee-scaled.jpg,2/26/2024 0:00,10.0000000,11.0000000,43.2095180000000,5.37258900000000,,Calanque de Marseilleveyre,71218,Observation #71218,https://biolit.fr/observations/observation-71218/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_102803611_HDR-rotated.jpg,,,Ne sais pas +N1,71210,Sortie #71210,https://biolit.fr/sorties/sortie-71210/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Gibbule_toupie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_102803611_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103035325_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103218880_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_122950424.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_123022497_BURST000_COVER.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Patella-rustica_Patelle-ponctuee-scaled.jpg,2/26/2024 0:00,10.0000000,11.0000000,43.2095180000000,5.37258900000000,,Calanque de Marseilleveyre,71220,Observation #71220,https://biolit.fr/observations/observation-71220/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103035325_HDR-rotated.jpg,,TRUE,Identifiable +N1,71210,Sortie #71210,https://biolit.fr/sorties/sortie-71210/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Gibbule_toupie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_102803611_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103035325_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103218880_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_122950424.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_123022497_BURST000_COVER.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Patella-rustica_Patelle-ponctuee-scaled.jpg,2/26/2024 0:00,10.0000000,11.0000000,43.2095180000000,5.37258900000000,,Calanque de Marseilleveyre,71222,Observation #71222,https://biolit.fr/observations/observation-71222/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_123022497_BURST000_COVER.jpg,,TRUE,Identifiable +N1,71210,Sortie #71210,https://biolit.fr/sorties/sortie-71210/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Gibbule_toupie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_102803611_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103035325_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103218880_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_122950424.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_123022497_BURST000_COVER.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Patella-rustica_Patelle-ponctuee-scaled.jpg,2/26/2024 0:00,10.0000000,11.0000000,43.2095180000000,5.37258900000000,,Calanque de Marseilleveyre,71224,Observation #71224,https://biolit.fr/observations/observation-71224/,Barnea candida,Pholade blanche,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103218880_HDR-scaled.jpg,,TRUE,Ne sais pas +N1,71210,Sortie #71210,https://biolit.fr/sorties/sortie-71210/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Gibbule_toupie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_102803611_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103035325_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103218880_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_122950424.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_123022497_BURST000_COVER.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Patella-rustica_Patelle-ponctuee-scaled.jpg,2/26/2024 0:00,10.0000000,11.0000000,43.2095180000000,5.37258900000000,,Calanque de Marseilleveyre,71226,Observation #71226,https://biolit.fr/observations/observation-71226/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_122950424.jpg,,,Ne sais pas +N1,71210,Sortie #71210,https://biolit.fr/sorties/sortie-71210/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Gibbule_toupie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_102803611_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103035325_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103218880_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_122950424.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_123022497_BURST000_COVER.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Patella-rustica_Patelle-ponctuee-scaled.jpg,2/26/2024 0:00,10.0000000,11.0000000,43.2095180000000,5.37258900000000,,Calanque de Marseilleveyre,71228,Observation #71228,https://biolit.fr/observations/observation-71228/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Patella-rustica_Patelle-ponctuee-scaled.jpg,,,Identifiable +N1,71241,Sortie #71241,https://biolit.fr/sorties/sortie-71241/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0022.jpg,2/28/2024 0:00,9.0000000,11.0000000,43.2369100000000,5.36043800000000,Planète Mer,Plage de l'abri-côtier,71243,Observation #71243,https://biolit.fr/observations/observation-71243/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0020.jpg,,TRUE,Identifiable +N1,71241,Sortie #71241,https://biolit.fr/sorties/sortie-71241/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0022.jpg,2/28/2024 0:00,9.0000000,11.0000000,43.2369100000000,5.36043800000000,Planète Mer,Plage de l'abri-côtier,71245,Observation #71245,https://biolit.fr/observations/observation-71245/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0015.jpg,,TRUE,Identifiable +N1,71241,Sortie #71241,https://biolit.fr/sorties/sortie-71241/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0022.jpg,2/28/2024 0:00,9.0000000,11.0000000,43.2369100000000,5.36043800000000,Planète Mer,Plage de l'abri-côtier,71247,Observation #71247,https://biolit.fr/observations/observation-71247/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0005.jpg,,,Ne sais pas +N1,71241,Sortie #71241,https://biolit.fr/sorties/sortie-71241/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0022.jpg,2/28/2024 0:00,9.0000000,11.0000000,43.2369100000000,5.36043800000000,Planète Mer,Plage de l'abri-côtier,71249,Observation #71249,https://biolit.fr/observations/observation-71249/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0022.jpg,,TRUE,Identifiable +N1,71241,Sortie #71241,https://biolit.fr/sorties/sortie-71241/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0022.jpg,2/28/2024 0:00,9.0000000,11.0000000,43.2369100000000,5.36043800000000,Planète Mer,Plage de l'abri-côtier,71251,Observation #71251,https://biolit.fr/observations/observation-71251/,Peyssonnelia squamaria,Peyssonnelia,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0004.jpg,,TRUE,Identifiable +N1,71283,Sortie #71283,https://biolit.fr/sorties/sortie-71283/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-04-163004.jpg,08/08/2023,10.0000000,10.0000000,45.8758280000000,-1.26319600000000,,Plage de Vertbois,71285,Observation #71285,https://biolit.fr/observations/observation-71285/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-04-163004.jpg,,TRUE,Identifiable +N1,71298,Sortie #71298,https://biolit.fr/sorties/sortie-71298/,Guillardeau Francois,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8917-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8931-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8944-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8947-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8948-scaled.jpeg,2/19/2024 0:00,9.0000000,11.0000000,51.00519,2.06686,,Platier d'OYE,71307,Observation #71307,https://biolit.fr/observations/observation-71307/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8917-scaled.jpeg,,,Identifiable +N1,71298,Sortie #71298,https://biolit.fr/sorties/sortie-71298/,Guillardeau Francois,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8917-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8931-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8944-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8947-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8948-scaled.jpeg,2/19/2024 0:00,9.0000000,11.0000000,51.00519,2.06686,,Platier d'OYE,71309,Observation #71309,https://biolit.fr/observations/observation-71309/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8931-scaled.jpeg,,,Ne sais pas +N1,71298,Sortie #71298,https://biolit.fr/sorties/sortie-71298/,Guillardeau Francois,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8917-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8931-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8944-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8947-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8948-scaled.jpeg,2/19/2024 0:00,9.0000000,11.0000000,51.00519,2.06686,,Platier d'OYE,71311,Observation #71311,https://biolit.fr/observations/observation-71311/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8944-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8947-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8948-scaled.jpeg,,,Ne sais pas +N1,71315,Sortie #71315,https://biolit.fr/sorties/sortie-71315/,Guillardeau Francois,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/plage-de-Malo-becasseau-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/plage-de-Malo-Goeland-scaled.jpeg,01/11/2024,15.0000000,16.0000000,51.05,2.4,,Plage Malo Les Bains (Dunkerque),71317,Observation #71317,https://biolit.fr/observations/observation-71317/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/plage-de-Malo-becasseau-scaled.jpeg,,,Identifiable +N1,71315,Sortie #71315,https://biolit.fr/sorties/sortie-71315/,Guillardeau Francois,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/plage-de-Malo-becasseau-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/plage-de-Malo-Goeland-scaled.jpeg,01/11/2024,15.0000000,16.0000000,51.05,2.4,,Plage Malo Les Bains (Dunkerque),71319,Observation #71319,https://biolit.fr/observations/observation-71319/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/plage-de-Malo-Goeland-scaled.jpeg,,,Identifiable +N1,71322,Sortie #71322,https://biolit.fr/sorties/sortie-71322/,Guillardeau Francois,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/plage-de-Malo-scaled.jpeg,03/06/2021,12.0000000,13.0000000,51.05,2.4,,Plage Malo Les Bains (Dunkerque),71324,Observation #71324,https://biolit.fr/observations/observation-71324/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/plage-de-Malo-scaled.jpeg,,TRUE,Ne sais pas +N1,71327,Sortie #71327,https://biolit.fr/sorties/sortie-71327/,Guillardeau Francois,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/plage-Malo-DSC_9053-scaled.jpeg,7/17/2020 0:00,18.0000000,19.0000000,51.05,2.4,,Plage Malo Les Bains (Dunkerque),71329,Observation #71329,https://biolit.fr/observations/observation-71329/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/plage-Malo-DSC_9053-scaled.jpeg,,TRUE,Ne sais pas +N1,71334,Sortie #71334,https://biolit.fr/sorties/sortie-71334/,Guillardeau Francois,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/port-Est-Dunkerque-DSC_8952-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/port-Est-Dunkerque-DSC_8960-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/port-Est-Dunkerque-DSC_8962-scaled.jpeg,2/19/2024 0:00,12.0000000,13.0000000,51.05,2.3667,,Dunkerque port Est,71336,Observation #71336,https://biolit.fr/observations/observation-71336/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/port-Est-Dunkerque-DSC_8952-scaled.jpeg,,,Identifiable +N1,71334,Sortie #71334,https://biolit.fr/sorties/sortie-71334/,Guillardeau Francois,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/port-Est-Dunkerque-DSC_8952-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/port-Est-Dunkerque-DSC_8960-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/port-Est-Dunkerque-DSC_8962-scaled.jpeg,2/19/2024 0:00,12.0000000,13.0000000,51.05,2.3667,,Dunkerque port Est,71338,Observation #71338,https://biolit.fr/observations/observation-71338/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/port-Est-Dunkerque-DSC_8960-scaled.jpeg,,,Ne sais pas +N1,71334,Sortie #71334,https://biolit.fr/sorties/sortie-71334/,Guillardeau Francois,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/port-Est-Dunkerque-DSC_8952-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/port-Est-Dunkerque-DSC_8960-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/port-Est-Dunkerque-DSC_8962-scaled.jpeg,2/19/2024 0:00,12.0000000,13.0000000,51.05,2.3667,,Dunkerque port Est,71340,Observation #71340,https://biolit.fr/observations/observation-71340/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/port-Est-Dunkerque-DSC_8962-scaled.jpeg,,,Ne sais pas +N1,71343,Sortie #71343,https://biolit.fr/sorties/sortie-71343/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-05-150815.jpg,2/26/2024 0:00,11.0000000,11.0:15,43.2093380000000,5.37276000000000,,Calanque de Marseilleveyre,71345,Observation #71345,https://biolit.fr/observations/observation-71345/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-05-150815.jpg,,,Identifiable +N1,71348,Sortie #71348,https://biolit.fr/sorties/sortie-71348/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_091853440-rotated.jpg,2/28/2024 0:00,9.0000000,9.0000000,43.2378130000000,5.36148500000000,,Plage de l'Anse des Phocéens,71350,Observation #71350,https://biolit.fr/observations/observation-71350/,Teredo navalis,Taret commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_091853440-rotated.jpg,,,Identifiable +N1,71353,Sortie #71353,https://biolit.fr/sorties/sortie-71353/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-05-153820.jpg,03/11/2023,12.0000000,12.0000000,43.3509460000000,4.87934900000000,,Plage Napoléon,71355,Observation #71355,https://biolit.fr/observations/observation-71355/,Acanthocardia echinata,Bucarde rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-05-153820.jpg,,,Ne sais pas +N1,71382,Sortie #71382,https://biolit.fr/sorties/sortie-71382/,Agent007,https://biolit.fr/wp-content/uploads/jet-form-builder/fa48c90e98059886ec47dde64c49cc32/2024/03/IMG_2274-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fa48c90e98059886ec47dde64c49cc32/2024/03/IMG_2278-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fa48c90e98059886ec47dde64c49cc32/2024/03/IMG_2280-scaled.jpeg,03/05/2024,15.0000000,15.0000000,43.7098750000000,7.27195000000000,,Nice Promenade des Anglais,71384,Observation #71384,https://biolit.fr/observations/observation-71384/,Pegea confoederata,Salpe Pégée,,https://biolit.fr/wp-content/uploads/jet-form-builder/fa48c90e98059886ec47dde64c49cc32/2024/03/IMG_2274-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fa48c90e98059886ec47dde64c49cc32/2024/03/IMG_2278-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fa48c90e98059886ec47dde64c49cc32/2024/03/IMG_2280-scaled.jpeg,,TRUE, +N1,71382,Sortie #71382,https://biolit.fr/sorties/sortie-71382/,Agent007,https://biolit.fr/wp-content/uploads/jet-form-builder/fa48c90e98059886ec47dde64c49cc32/2024/03/IMG_2274-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fa48c90e98059886ec47dde64c49cc32/2024/03/IMG_2278-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fa48c90e98059886ec47dde64c49cc32/2024/03/IMG_2280-scaled.jpeg,03/05/2024,15.0000000,15.0000000,43.7098750000000,7.27195000000000,,Nice Promenade des Anglais,71386,Observation #71386,https://biolit.fr/observations/observation-71386/,Pegea confoederata,Salpe Pégée,,https://biolit.fr/wp-content/uploads/jet-form-builder/fa48c90e98059886ec47dde64c49cc32/2024/03/IMG_2274-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fa48c90e98059886ec47dde64c49cc32/2024/03/IMG_2278-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fa48c90e98059886ec47dde64c49cc32/2024/03/IMG_2280-scaled.jpeg,,TRUE,Identifiable +N1,71505,Sortie #71505,https://biolit.fr/sorties/sortie-71505/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240209_132036972-scaled.jpg,02/03/2024,16.0000000,16.0:15,43.2399630000000,5.3624310000000,,Plage de l’Anse du Bain des Dames,,,,,,,,,, +N1,71508,Sortie #71508,https://biolit.fr/sorties/sortie-71508/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240209_132036972-1-scaled.jpg,02/03/2024,16.0000000,16.0:15,43.2398920000000,5.36242300000000,,Plage de l’Anse du Bain des Dames,71510,Observation #71510,https://biolit.fr/observations/observation-71510/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240209_132036972-1-scaled.jpg,,TRUE,Identifiable +N1,71522,Sortie #71522,https://biolit.fr/sorties/sortie-71522/,Decaix Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_143252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_143907-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_144019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_144128-scaled.jpg,03/06/2024,14.0000000,16.0000000,49.5003620000000,0.0886340000000000,,Plage Du Havre,71524,Observation #71524,https://biolit.fr/observations/observation-71524/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_143907-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_144019-scaled.jpg,,,Identifiable +N1,71522,Sortie #71522,https://biolit.fr/sorties/sortie-71522/,Decaix Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_143252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_143907-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_144019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_144128-scaled.jpg,03/06/2024,14.0000000,16.0000000,49.5003620000000,0.0886340000000000,,Plage Du Havre,71526,Observation #71526,https://biolit.fr/observations/observation-71526/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_143907-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_144128-scaled.jpg,,,Ne sais pas +N1,71530,Sortie #71530,https://biolit.fr/sorties/sortie-71530/,Decaix Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_144019-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_144128-1-scaled.jpg,02/06/2024,14.0000000,16.0000000,49.5000090000000,0.0889780000000000,,Plage du Havre,71532,Observation #71532,https://biolit.fr/observations/observation-71532/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_144019-1-scaled.jpg,,,Ne sais pas +N1,71530,Sortie #71530,https://biolit.fr/sorties/sortie-71530/,Decaix Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_144019-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_144128-1-scaled.jpg,02/06/2024,14.0000000,16.0000000,49.5000090000000,0.0889780000000000,,Plage du Havre,71534,Observation #71534,https://biolit.fr/observations/observation-71534/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_144128-1-scaled.jpg,,,Ne sais pas +N1,71537,Sortie #71537,https://biolit.fr/sorties/sortie-71537/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0006.jpg,2/28/2024 0:00,9.0000000,11.0000000,43.2369100000000,5.36043800000000,Planète Mer,Plage de l'abri-côtier,,,,,,,,,, +N1,71540,Sortie #71540,https://biolit.fr/sorties/sortie-71540/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0006-1.jpg,2/28/2024 0:00,9.0000000,11.0000000,43.2369100000000,5.36043800000000,Planète Mer,Plage de l'abri-côtier,71542,Observation #71542,https://biolit.fr/observations/observation-71542/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0006-1.jpg,,TRUE,Identifiable +N1,71545,Sortie #71545,https://biolit.fr/sorties/sortie-71545/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Gibbula-umbilicaris.jpg,02/03/2024,12.0000000,12.0:15,43.2398990000000,5.36242900000000,,Plage de l’Anse du Bain des Dames,71547,Observation #71547,https://biolit.fr/observations/observation-71547/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Gibbula-umbilicaris.jpg,,,Ne sais pas +N1,71552,Sortie #71552,https://biolit.fr/sorties/sortie-71552/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/03/20240307_174807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/03/20240307_174751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/03/20240307_174728-scaled.jpg,03/07/2024,17.0000000,17.0000000,43.0068610000000,9.38911600000000,Observe la nature,Tollare,,,,,,,,,, +N1,71556,Sortie #71556,https://biolit.fr/sorties/sortie-71556/,Decaix Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_1428311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_1429201-scaled.jpg,03/07/2024,14.0000000,16.0000000,49.4999190000000,0.088863000000000,,Plage du Havre,71558,Observation #71558,https://biolit.fr/observations/observation-71558/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_1428311-scaled.jpg,,,Ne sais pas +N1,71556,Sortie #71556,https://biolit.fr/sorties/sortie-71556/,Decaix Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_1428311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_1429201-scaled.jpg,03/07/2024,14.0000000,16.0000000,49.4999190000000,0.088863000000000,,Plage du Havre,71560,Observation #71560,https://biolit.fr/observations/observation-71560/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_1429201-scaled.jpg,,,Ne sais pas +N1,71581,Sortie #71581,https://biolit.fr/sorties/sortie-71581/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/03/20240307_180151-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/03/20240307_174807-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/03/20240307_174751-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/03/20240307_174728-1-scaled.jpg,03/07/2024,17.0000000,17.0:15,43.0065590000000,9.38936200000000,Observe la nature,Tollare cap corse,71583,Observation #71583,https://biolit.fr/observations/observation-71583/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/03/20240307_174807-1-scaled.jpg,,TRUE,Identifiable +N1,71595,Sortie #71595,https://biolit.fr/sorties/sortie-71595/,ROY ZOE,https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0245-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0240-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0233-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0237-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0238-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0229-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0228-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0222-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0220-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0219-scaled.jpeg,03/08/2024,14.0000000,15.0000000,48.6281610000000,-2.01582000000000,Planète Mer (antenne Dinard),plage des Fours à Chaux côté Roches aux mouettes,71597,Observation #71597,https://biolit.fr/observations/observation-71597/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0245-scaled.jpeg,,TRUE,Identifiable +N1,71595,Sortie #71595,https://biolit.fr/sorties/sortie-71595/,ROY ZOE,https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0245-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0240-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0233-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0237-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0238-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0229-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0228-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0222-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0220-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0219-scaled.jpeg,03/08/2024,14.0000000,15.0000000,48.6281610000000,-2.01582000000000,Planète Mer (antenne Dinard),plage des Fours à Chaux côté Roches aux mouettes,71599,Observation #71599,https://biolit.fr/observations/observation-71599/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0233-scaled.jpeg,,TRUE,Identifiable +N1,71595,Sortie #71595,https://biolit.fr/sorties/sortie-71595/,ROY ZOE,https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0245-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0240-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0233-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0237-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0238-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0229-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0228-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0222-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0220-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0219-scaled.jpeg,03/08/2024,14.0000000,15.0000000,48.6281610000000,-2.01582000000000,Planète Mer (antenne Dinard),plage des Fours à Chaux côté Roches aux mouettes,71601,Observation #71601,https://biolit.fr/observations/observation-71601/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0237-scaled.jpeg,,,Identifiable +N1,71595,Sortie #71595,https://biolit.fr/sorties/sortie-71595/,ROY ZOE,https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0245-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0240-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0233-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0237-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0238-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0229-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0228-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0222-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0220-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0219-scaled.jpeg,03/08/2024,14.0000000,15.0000000,48.6281610000000,-2.01582000000000,Planète Mer (antenne Dinard),plage des Fours à Chaux côté Roches aux mouettes,71603,Observation #71603,https://biolit.fr/observations/observation-71603/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0237-scaled.jpeg,,TRUE,Identifiable +N1,71595,Sortie #71595,https://biolit.fr/sorties/sortie-71595/,ROY ZOE,https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0245-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0240-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0233-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0237-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0238-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0229-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0228-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0222-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0220-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0219-scaled.jpeg,03/08/2024,14.0000000,15.0000000,48.6281610000000,-2.01582000000000,Planète Mer (antenne Dinard),plage des Fours à Chaux côté Roches aux mouettes,71605,Observation #71605,https://biolit.fr/observations/observation-71605/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0238-scaled.jpeg,,,Ne sais pas +N1,71595,Sortie #71595,https://biolit.fr/sorties/sortie-71595/,ROY ZOE,https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0245-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0240-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0233-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0237-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0238-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0229-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0228-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0222-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0220-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0219-scaled.jpeg,03/08/2024,14.0000000,15.0000000,48.6281610000000,-2.01582000000000,Planète Mer (antenne Dinard),plage des Fours à Chaux côté Roches aux mouettes,71607,Observation #71607,https://biolit.fr/observations/observation-71607/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0228-scaled.jpeg,,TRUE,Identifiable +N1,71595,Sortie #71595,https://biolit.fr/sorties/sortie-71595/,ROY ZOE,https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0245-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0240-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0233-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0237-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0238-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0229-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0228-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0222-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0220-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0219-scaled.jpeg,03/08/2024,14.0000000,15.0000000,48.6281610000000,-2.01582000000000,Planète Mer (antenne Dinard),plage des Fours à Chaux côté Roches aux mouettes,71609,Observation #71609,https://biolit.fr/observations/observation-71609/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0220-scaled.jpeg,,TRUE,Identifiable +N1,71612,Sortie #71612,https://biolit.fr/sorties/sortie-71612/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-09-000349.jpg,1/21/2024 0:00,16.0000000,17.0000000,43.2593570000000,5.37523400000000,,Plage de l'Huveaune,71614,Observation #71614,https://biolit.fr/observations/observation-71614/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-09-000349.jpg,,,Identifiable +N1,71618,Sortie #71618,https://biolit.fr/sorties/sortie-71618/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Cardites-antiquatus.jpg,5/21/2023 0:00,11.0000000,11.0000000,43.0461580000000,6.15022300000000,,Plage de la Bergerie,71620,Observation #71620,https://biolit.fr/observations/observation-71620/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Cardites-antiquatus.jpg,,,Ne sais pas +N1,71624,Sortie #71624,https://biolit.fr/sorties/sortie-71624/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.25-1.jpeg,1/28/2024 0:00,15.0000000,17.0000000,42.5501800000000,9.53146300000000,La Girelle,Lido de la Marana,,,,,,,,,, +N1,71631,Sortie #71631,https://biolit.fr/sorties/sortie-71631/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.25-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.06.54-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.06.35-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.36-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.44-1.jpeg,1/28/2024 0:00,15.0000000,17.0000000,42.5501800000000,9.53146300000000,La Girelle,Lido de la Marana,71633,Observation #71633,https://biolit.fr/observations/observation-71633/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.25-1-1.jpeg,,,Identifiable +N1,71631,Sortie #71631,https://biolit.fr/sorties/sortie-71631/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.25-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.06.54-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.06.35-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.36-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.44-1.jpeg,1/28/2024 0:00,15.0000000,17.0000000,42.5501800000000,9.53146300000000,La Girelle,Lido de la Marana,71635,Observation #71635,https://biolit.fr/observations/observation-71635/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.06.54-1.jpeg,,,Identifiable +N1,71631,Sortie #71631,https://biolit.fr/sorties/sortie-71631/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.25-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.06.54-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.06.35-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.36-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.44-1.jpeg,1/28/2024 0:00,15.0000000,17.0000000,42.5501800000000,9.53146300000000,La Girelle,Lido de la Marana,71637,Observation #71637,https://biolit.fr/observations/observation-71637/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.06.35-1.jpeg,,,Identifiable +N1,71631,Sortie #71631,https://biolit.fr/sorties/sortie-71631/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.25-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.06.54-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.06.35-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.36-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.44-1.jpeg,1/28/2024 0:00,15.0000000,17.0000000,42.5501800000000,9.53146300000000,La Girelle,Lido de la Marana,71639,Observation #71639,https://biolit.fr/observations/observation-71639/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.36-1.jpeg,,,Identifiable +N1,71631,Sortie #71631,https://biolit.fr/sorties/sortie-71631/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.25-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.06.54-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.06.35-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.36-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.44-1.jpeg,1/28/2024 0:00,15.0000000,17.0000000,42.5501800000000,9.53146300000000,La Girelle,Lido de la Marana,71641,Observation #71641,https://biolit.fr/observations/observation-71641/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.44-1.jpeg,,,Identifiable +N1,71644,Sortie #71644,https://biolit.fr/sorties/sortie-71644/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-153607.jpg,02/04/2024,11.0:45,12.0000000,43.2379870000000,5.36172700000000,,Plage de l'Anse des Phocéens,71646,Observation #71646,https://biolit.fr/observations/observation-71646/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-153607.jpg,,,Identifiable +N1,71649,Sortie #71649,https://biolit.fr/sorties/sortie-71649/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-08-235359.jpg,02/03/2024,16.0000000,17.0000000,43.2398740000000,5.36244500000000,,Plage de l’Anse du Bain des Dames,71651,Observation #71651,https://biolit.fr/observations/observation-71651/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-08-235359.jpg,,,Identifiable +N1,71660,Sortie #71660,https://biolit.fr/sorties/sortie-71660/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160227.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160730.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160903.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150439166_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150501736_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150605636_HDR-scaled.jpg,08/08/2023,16.0000000,16.0000000,45.8060120000000,-1.2361090000000,,Plage de Maumusson,71662,Observation #71662,https://biolit.fr/observations/observation-71662/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160227.jpg,,TRUE,Identifiable +N1,71660,Sortie #71660,https://biolit.fr/sorties/sortie-71660/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160227.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160730.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160903.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150439166_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150501736_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150605636_HDR-scaled.jpg,08/08/2023,16.0000000,16.0000000,45.8060120000000,-1.2361090000000,,Plage de Maumusson,71664,Observation #71664,https://biolit.fr/observations/observation-71664/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160500.jpg,,,Identifiable +N1,71660,Sortie #71660,https://biolit.fr/sorties/sortie-71660/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160227.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160730.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160903.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150439166_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150501736_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150605636_HDR-scaled.jpg,08/08/2023,16.0000000,16.0000000,45.8060120000000,-1.2361090000000,,Plage de Maumusson,71666,Observation #71666,https://biolit.fr/observations/observation-71666/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160730.jpg,,TRUE,Identifiable +N1,71660,Sortie #71660,https://biolit.fr/sorties/sortie-71660/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160227.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160730.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160903.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150439166_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150501736_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150605636_HDR-scaled.jpg,08/08/2023,16.0000000,16.0000000,45.8060120000000,-1.2361090000000,,Plage de Maumusson,71668,Observation #71668,https://biolit.fr/observations/observation-71668/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150501736_HDR.jpg,,TRUE,Identifiable +N1,71660,Sortie #71660,https://biolit.fr/sorties/sortie-71660/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160227.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160730.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160903.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150439166_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150501736_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150605636_HDR-scaled.jpg,08/08/2023,16.0000000,16.0000000,45.8060120000000,-1.2361090000000,,Plage de Maumusson,71670,Observation #71670,https://biolit.fr/observations/observation-71670/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150605636_HDR-scaled.jpg,,,Identifiable +N1,71660,Sortie #71660,https://biolit.fr/sorties/sortie-71660/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160227.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160730.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160903.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150439166_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150501736_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150605636_HDR-scaled.jpg,08/08/2023,16.0000000,16.0000000,45.8060120000000,-1.2361090000000,,Plage de Maumusson,71672,Observation #71672,https://biolit.fr/observations/observation-71672/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150439166_HDR-scaled.jpg,,,Identifiable +N1,71660,Sortie #71660,https://biolit.fr/sorties/sortie-71660/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160227.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160730.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160903.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150439166_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150501736_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150605636_HDR-scaled.jpg,08/08/2023,16.0000000,16.0000000,45.8060120000000,-1.2361090000000,,Plage de Maumusson,71674,Observation #71674,https://biolit.fr/observations/observation-71674/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160903.jpg,,TRUE,Identifiable +N1,71691,Sortie #71691,https://biolit.fr/sorties/sortie-71691/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_3.jpg,03/10/2024,14.0:15,15.0000000,48.6236280000000,-2.19971200000000,,La Nellière - Iles de Ebihens,71693,Observation #71693,https://biolit.fr/observations/observation-71693/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_2.jpg,,TRUE,Identifiable +N1,71691,Sortie #71691,https://biolit.fr/sorties/sortie-71691/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_3.jpg,03/10/2024,14.0:15,15.0000000,48.6236280000000,-2.19971200000000,,La Nellière - Iles de Ebihens,71695,Observation #71695,https://biolit.fr/observations/observation-71695/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_3.jpg,,TRUE,Identifiable +N1,71691,Sortie #71691,https://biolit.fr/sorties/sortie-71691/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_3.jpg,03/10/2024,14.0:15,15.0000000,48.6236280000000,-2.19971200000000,,La Nellière - Iles de Ebihens,71697,Observation #71697,https://biolit.fr/observations/observation-71697/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_4.jpg,,TRUE,Identifiable +N1,71691,Sortie #71691,https://biolit.fr/sorties/sortie-71691/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_3.jpg,03/10/2024,14.0:15,15.0000000,48.6236280000000,-2.19971200000000,,La Nellière - Iles de Ebihens,71699,Observation #71699,https://biolit.fr/observations/observation-71699/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_5.jpg,,TRUE,Identifiable +N1,71691,Sortie #71691,https://biolit.fr/sorties/sortie-71691/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_3.jpg,03/10/2024,14.0:15,15.0000000,48.6236280000000,-2.19971200000000,,La Nellière - Iles de Ebihens,71701,Observation #71701,https://biolit.fr/observations/observation-71701/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_3.jpg,,TRUE,Identifiable +N1,71691,Sortie #71691,https://biolit.fr/sorties/sortie-71691/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_3.jpg,03/10/2024,14.0:15,15.0000000,48.6236280000000,-2.19971200000000,,La Nellière - Iles de Ebihens,71703,Observation #71703,https://biolit.fr/observations/observation-71703/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_3.jpg,,TRUE,Identifiable +N1,71691,Sortie #71691,https://biolit.fr/sorties/sortie-71691/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_3.jpg,03/10/2024,14.0:15,15.0000000,48.6236280000000,-2.19971200000000,,La Nellière - Iles de Ebihens,71705,Observation #71705,https://biolit.fr/observations/observation-71705/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_2.jpg,,TRUE,Identifiable +N1,71691,Sortie #71691,https://biolit.fr/sorties/sortie-71691/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_3.jpg,03/10/2024,14.0:15,15.0000000,48.6236280000000,-2.19971200000000,,La Nellière - Iles de Ebihens,71707,Observation #71707,https://biolit.fr/observations/observation-71707/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_3.jpg,,,Ne sais pas +N1,71922,Sortie #71922,https://biolit.fr/sorties/sortie-71922/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-140729.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-141115.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-141518.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240309_151733452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240309_152626033_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_132935285_HD_2.jpg,03/09/2024,15.0000000,15.0000000,43.2566360000000,5.37535600000000,,Plage de Borély,71928,Observation #71928,https://biolit.fr/observations/observation-71928/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240309_151733452_HDR-scaled.jpg,,TRUE,Identifiable +N1,71922,Sortie #71922,https://biolit.fr/sorties/sortie-71922/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-140729.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-141115.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-141518.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240309_151733452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240309_152626033_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_132935285_HD_2.jpg,03/09/2024,15.0000000,15.0000000,43.2566360000000,5.37535600000000,,Plage de Borély,71930,Observation #71930,https://biolit.fr/observations/observation-71930/,Teredo navalis,Taret commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240309_152626033_HDR.jpg,,,Identifiable +N1,71939,Sortie #71939,https://biolit.fr/sorties/sortie-71939/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-140729-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-141115-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-141518-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240309_151733452_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240309_152626033_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_132935285_HD_2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_135343652-scaled.jpg,03/09/2024,15.0000000,15.0000000,43.2562330000000,5.37520300000000,,Plage de Borély,71941,Observation #71941,https://biolit.fr/observations/observation-71941/,Tridentata perpusilla,Sertulaire minuscule,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-140729-1.jpg,,,Identifiable +N1,71939,Sortie #71939,https://biolit.fr/sorties/sortie-71939/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-140729-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-141115-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-141518-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240309_151733452_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240309_152626033_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_132935285_HD_2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_135343652-scaled.jpg,03/09/2024,15.0000000,15.0000000,43.2562330000000,5.37520300000000,,Plage de Borély,71943,Observation #71943,https://biolit.fr/observations/observation-71943/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-141115-1.jpg,,,Identifiable +N1,71939,Sortie #71939,https://biolit.fr/sorties/sortie-71939/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-140729-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-141115-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-141518-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240309_151733452_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240309_152626033_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_132935285_HD_2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_135343652-scaled.jpg,03/09/2024,15.0000000,15.0000000,43.2562330000000,5.37520300000000,,Plage de Borély,71945,Observation #71945,https://biolit.fr/observations/observation-71945/,Corallina officinalis/caespitosa,Coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-141518-1.jpg,,,Ne sais pas +N1,71939,Sortie #71939,https://biolit.fr/sorties/sortie-71939/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-140729-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-141115-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-141518-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240309_151733452_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240309_152626033_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_132935285_HD_2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_135343652-scaled.jpg,03/09/2024,15.0000000,15.0000000,43.2562330000000,5.37520300000000,,Plage de Borély,71951,Observation #71951,https://biolit.fr/observations/observation-71951/,Flabellia petiolata,Udotée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_132935285_HD_2-1.jpg,,TRUE,Ne sais pas +N1,71939,Sortie #71939,https://biolit.fr/sorties/sortie-71939/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-140729-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-141115-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-141518-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240309_151733452_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240309_152626033_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_132935285_HD_2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_135343652-scaled.jpg,03/09/2024,15.0000000,15.0000000,43.2562330000000,5.37520300000000,,Plage de Borély,71953,Observation #71953,https://biolit.fr/observations/observation-71953/,Jania rubens,Janie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_135343652-scaled.jpg,,,Ne sais pas +N1,71978,Sortie #71978,https://biolit.fr/sorties/sortie-71978/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-235509.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581250000000,5.37575400000000,,Plage de l'Huveaune,,,,,,,,,, +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72002,Observation #72002,https://biolit.fr/observations/observation-72002/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg,,,Identifiable +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72004,Observation #72004,https://biolit.fr/observations/observation-72004/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg,,,Identifiable +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72006,Observation #72006,https://biolit.fr/observations/observation-72006/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg,,,Identifiable +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72008,Observation #72008,https://biolit.fr/observations/observation-72008/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg,,,Identifiable +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72010,Observation #72010,https://biolit.fr/observations/observation-72010/,Flexopecten hyalinus,Pétoncle hyalin,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg,,,Identifiable +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72012,Observation #72012,https://biolit.fr/observations/observation-72012/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg,,,Identifiable +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72014,Observation #72014,https://biolit.fr/observations/observation-72014/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg,,,Identifiable +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72016,Observation #72016,https://biolit.fr/observations/observation-72016/,Tritia nitida,Nasse brillante,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg,,,Identifiable +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72018,Observation #72018,https://biolit.fr/observations/observation-72018/,Tritia mutabilis,Noisette de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg,,,Ne sais pas +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72020,Observation #72020,https://biolit.fr/observations/observation-72020/,Loripes orbiculatus,Loripes orbiculaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg,,,Ne sais pas +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72022,Observation #72022,https://biolit.fr/observations/observation-72022/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg,,,Ne sais pas +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72024,Observation #72024,https://biolit.fr/observations/observation-72024/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg,,,Ne sais pas +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72026,Observation #72026,https://biolit.fr/observations/observation-72026/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg,,,Ne sais pas +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72028,Observation #72028,https://biolit.fr/observations/observation-72028/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg,,TRUE,Ne sais pas +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72030,Observation #72030,https://biolit.fr/observations/observation-72030/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg,,,Ne sais pas +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72032,Observation #72032,https://biolit.fr/observations/observation-72032/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg,,,Ne sais pas +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72034,Observation #72034,https://biolit.fr/observations/observation-72034/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg,,TRUE,Ne sais pas +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72036,Observation #72036,https://biolit.fr/observations/observation-72036/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg,,,Ne sais pas +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72038,Observation #72038,https://biolit.fr/observations/observation-72038/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg,,,Ne sais pas +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72040,Observation #72040,https://biolit.fr/observations/observation-72040/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,,,Ne sais pas +N1,72208,Sortie #72208,https://biolit.fr/sorties/sortie-72208/,Tacchino Clémentine,https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Observation-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Oeuf-de-raie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Velelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Arche-barbu-scaled.jpg,03/12/2024,10.0000000,12.0000000,43.2263130000000,5.3489690000000,,Plage de la Maronaise,72210,Observation #72210,https://biolit.fr/observations/observation-72210/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Velelle-scaled.jpg,,TRUE,Identifiable +N1,72208,Sortie #72208,https://biolit.fr/sorties/sortie-72208/,Tacchino Clémentine,https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Observation-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Oeuf-de-raie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Velelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Arche-barbu-scaled.jpg,03/12/2024,10.0000000,12.0000000,43.2263130000000,5.3489690000000,,Plage de la Maronaise,72212,Observation #72212,https://biolit.fr/observations/observation-72212/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Observation-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Oeuf-de-raie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Velelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Arche-barbu-scaled.jpg,,,Identifiable +N1,72208,Sortie #72208,https://biolit.fr/sorties/sortie-72208/,Tacchino Clémentine,https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Observation-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Oeuf-de-raie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Velelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Arche-barbu-scaled.jpg,03/12/2024,10.0000000,12.0000000,43.2263130000000,5.3489690000000,,Plage de la Maronaise,72214,Observation #72214,https://biolit.fr/observations/observation-72214/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Eponge-scaled.jpg,,TRUE,Identifiable +N1,72208,Sortie #72208,https://biolit.fr/sorties/sortie-72208/,Tacchino Clémentine,https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Observation-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Oeuf-de-raie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Velelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Arche-barbu-scaled.jpg,03/12/2024,10.0000000,12.0000000,43.2263130000000,5.3489690000000,,Plage de la Maronaise,72216,Observation #72216,https://biolit.fr/observations/observation-72216/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Patelle-1-scaled.jpg,,,Identifiable +N1,72208,Sortie #72208,https://biolit.fr/sorties/sortie-72208/,Tacchino Clémentine,https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Observation-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Oeuf-de-raie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Velelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Arche-barbu-scaled.jpg,03/12/2024,10.0000000,12.0000000,43.2263130000000,5.3489690000000,,Plage de la Maronaise,72218,Observation #72218,https://biolit.fr/observations/observation-72218/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Patelle-2-scaled.jpg,,,Identifiable +N1,72208,Sortie #72208,https://biolit.fr/sorties/sortie-72208/,Tacchino Clémentine,https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Observation-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Oeuf-de-raie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Velelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Arche-barbu-scaled.jpg,03/12/2024,10.0000000,12.0000000,43.2263130000000,5.3489690000000,,Plage de la Maronaise,72220,Observation #72220,https://biolit.fr/observations/observation-72220/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Arche-barbu-scaled.jpg,,,Identifiable +N1,72223,Sortie #72223,https://biolit.fr/sorties/sortie-72223/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-235509-1.jpg,08/09/2023,10.0000000,10.0000000,45.8206960000000,-1.20895200000000,,Digue Pacaud,72225,Observation #72225,https://biolit.fr/observations/observation-72225/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-235509-1.jpg,,TRUE,Identifiable +N1,72228,Sortie #72228,https://biolit.fr/sorties/sortie-72228/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-233124.jpg,10/01/2022,10.0000000,11.0000000,43.2397140000000,5.36238000000000,,Plage de l’Anse du Bain des Dames,,,,,,,,,, +N1,72233,Sortie #72233,https://biolit.fr/sorties/sortie-72233/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_144614509.jpg,03/09/2024,15.0:15,15.0000000,43.2579530000000,5.37579100000000,,Plage de l'Huveaune,72235,Observation #72235,https://biolit.fr/observations/observation-72235/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_144614509.jpg,,,Identifiable +N1,72238,Sortie #72238,https://biolit.fr/sorties/sortie-72238/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-233124-1.jpg,03/11/2023,12.0000000,12.0000000,43.3793200000000,4.91383600000000,,,72240,Observation #72240,https://biolit.fr/observations/observation-72240/,Tritia neritea,Cyclope néritoïde,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-233124-1.jpg,,,Identifiable +N1,72251,Sortie #72251,https://biolit.fr/sorties/sortie-72251/,Club subaquatique Narbonnais,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011327-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011338.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011348.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011349-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011352-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011355-scaled.jpg,03/10/2024,11.0000000,12.0000000,43.1681360000000,3.1796250000000,Club Subaquatique Narbonnais CSN/FSGT,Plage de Narbonne-plage,72253,Observation #72253,https://biolit.fr/observations/observation-72253/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011326-scaled.jpg,,TRUE,Identifiable +N1,72251,Sortie #72251,https://biolit.fr/sorties/sortie-72251/,Club subaquatique Narbonnais,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011327-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011338.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011348.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011349-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011352-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011355-scaled.jpg,03/10/2024,11.0000000,12.0000000,43.1681360000000,3.1796250000000,Club Subaquatique Narbonnais CSN/FSGT,Plage de Narbonne-plage,72255,Observation #72255,https://biolit.fr/observations/observation-72255/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011327-scaled.jpg,,,Identifiable +N1,72251,Sortie #72251,https://biolit.fr/sorties/sortie-72251/,Club subaquatique Narbonnais,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011327-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011338.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011348.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011349-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011352-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011355-scaled.jpg,03/10/2024,11.0000000,12.0000000,43.1681360000000,3.1796250000000,Club Subaquatique Narbonnais CSN/FSGT,Plage de Narbonne-plage,72260,Observation #72260,https://biolit.fr/observations/observation-72260/,Conger conger,Congre,,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011334-scaled.jpg,,TRUE,Identifiable +N1,72251,Sortie #72251,https://biolit.fr/sorties/sortie-72251/,Club subaquatique Narbonnais,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011327-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011338.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011348.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011349-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011352-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011355-scaled.jpg,03/10/2024,11.0000000,12.0000000,43.1681360000000,3.1796250000000,Club Subaquatique Narbonnais CSN/FSGT,Plage de Narbonne-plage,72262,Observation #72262,https://biolit.fr/observations/observation-72262/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011338.jpg,,TRUE,Identifiable +N1,72251,Sortie #72251,https://biolit.fr/sorties/sortie-72251/,Club subaquatique Narbonnais,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011327-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011338.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011348.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011349-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011352-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011355-scaled.jpg,03/10/2024,11.0000000,12.0000000,43.1681360000000,3.1796250000000,Club Subaquatique Narbonnais CSN/FSGT,Plage de Narbonne-plage,72264,Observation #72264,https://biolit.fr/observations/observation-72264/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011348.jpg,,,Identifiable +N1,72251,Sortie #72251,https://biolit.fr/sorties/sortie-72251/,Club subaquatique Narbonnais,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011327-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011338.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011348.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011349-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011352-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011355-scaled.jpg,03/10/2024,11.0000000,12.0000000,43.1681360000000,3.1796250000000,Club Subaquatique Narbonnais CSN/FSGT,Plage de Narbonne-plage,72266,Observation #72266,https://biolit.fr/observations/observation-72266/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011350-scaled.jpg,,TRUE,Identifiable +N1,72251,Sortie #72251,https://biolit.fr/sorties/sortie-72251/,Club subaquatique Narbonnais,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011327-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011338.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011348.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011349-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011352-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011355-scaled.jpg,03/10/2024,11.0000000,12.0000000,43.1681360000000,3.1796250000000,Club Subaquatique Narbonnais CSN/FSGT,Plage de Narbonne-plage,72268,Observation #72268,https://biolit.fr/observations/observation-72268/,Raja asterias,Raie étoilée,,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011352-scaled.jpg,,,Identifiable +N1,72251,Sortie #72251,https://biolit.fr/sorties/sortie-72251/,Club subaquatique Narbonnais,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011327-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011338.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011348.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011349-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011352-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011355-scaled.jpg,03/10/2024,11.0000000,12.0000000,43.1681360000000,3.1796250000000,Club Subaquatique Narbonnais CSN/FSGT,Plage de Narbonne-plage,72270,Observation #72270,https://biolit.fr/observations/observation-72270/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011355-scaled.jpg,,TRUE,Identifiable +N1,72251,Sortie #72251,https://biolit.fr/sorties/sortie-72251/,Club subaquatique Narbonnais,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011327-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011338.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011348.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011349-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011352-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011355-scaled.jpg,03/10/2024,11.0000000,12.0000000,43.1681360000000,3.1796250000000,Club Subaquatique Narbonnais CSN/FSGT,Plage de Narbonne-plage,72272,Observation #72272,https://biolit.fr/observations/observation-72272/,Corystes cassivelaunus,Crabe masqué,,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011349-scaled.jpg,,,Identifiable +N1,72278,Sortie #72278,https://biolit.fr/sorties/sortie-72278/,Favre Christine,https://biolit.fr/wp-content/uploads/jet-form-builder/37c306a7c29f612385383b64aa7eb529/2024/03/IMG_20240313_160419-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/37c306a7c29f612385383b64aa7eb529/2024/03/IMG_20240313_160411-scaled.jpg,3/13/2024 0:00,15.0000000,15.0000000,48.6370310,-2.0170240,,Saint Malo plage du Mole,72280,Observation #72280,https://biolit.fr/observations/observation-72280/,Loligo spp.,Ponte de Calmar,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/37c306a7c29f612385383b64aa7eb529/2024/03/IMG_20240313_160419-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/37c306a7c29f612385383b64aa7eb529/2024/03/IMG_20240313_160411-scaled.jpg,,TRUE,Ne sais pas +N1,72278,Sortie #72278,https://biolit.fr/sorties/sortie-72278/,Favre Christine,https://biolit.fr/wp-content/uploads/jet-form-builder/37c306a7c29f612385383b64aa7eb529/2024/03/IMG_20240313_160419-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/37c306a7c29f612385383b64aa7eb529/2024/03/IMG_20240313_160411-scaled.jpg,3/13/2024 0:00,15.0000000,15.0000000,48.6370310,-2.0170240,,Saint Malo plage du Mole,72282,Observation #72282,https://biolit.fr/observations/observation-72282/,Loligo spp.,Ponte de Calmar,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/37c306a7c29f612385383b64aa7eb529/2024/03/IMG_20240313_160419-scaled.jpg,,TRUE,Ne sais pas +N1,72318,Sortie #72318,https://biolit.fr/sorties/sortie-72318/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-15-140031.jpg,02/03/2024,12.0000000,12.0000000,43.2398300000000,5.36243600000000,,Plage de l’Anse du Bain des Dames,72320,Observation #72320,https://biolit.fr/observations/observation-72320/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-15-140031.jpg,,,Ne sais pas +N1,72324,Sortie #72324,https://biolit.fr/sorties/sortie-72324/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-15-140925.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-15-141403.jpg,1/28/2024 0:00,12.0000000,12.0000000,43.2398580000000,5.36245800000000,,Plage de l’Anse du Bain des Dames,72326,Observation #72326,https://biolit.fr/observations/observation-72326/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-15-140925.jpg,,,Ne sais pas +N1,72324,Sortie #72324,https://biolit.fr/sorties/sortie-72324/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-15-140925.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-15-141403.jpg,1/28/2024 0:00,12.0000000,12.0000000,43.2398580000000,5.36245800000000,,Plage de l’Anse du Bain des Dames,76678,Observation #76678,https://biolit.fr/observations/observation-76678/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-15-141403.jpg,,,Ne sais pas +N1,72416,Sortie #72416,https://biolit.fr/sorties/sortie-72416/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-135820.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140110.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140301.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140553.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141227.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141528.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141748.jpg,3/17/2024 0:00,11.0000000,11.0000000,43.2553080000000,5.3745300000000,,Plage de Borély,72418,Observation #72418,https://biolit.fr/observations/observation-72418/,Corbicula fluminea,Corbicule asiatique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-135820.jpg,,,Identifiable +N1,72416,Sortie #72416,https://biolit.fr/sorties/sortie-72416/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-135820.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140110.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140301.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140553.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141227.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141528.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141748.jpg,3/17/2024 0:00,11.0000000,11.0000000,43.2553080000000,5.3745300000000,,Plage de Borély,72420,Observation #72420,https://biolit.fr/observations/observation-72420/,Loripes orbiculatus,Loripes orbiculaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140110.jpg,,,Identifiable +N1,72416,Sortie #72416,https://biolit.fr/sorties/sortie-72416/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-135820.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140110.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140301.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140553.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141227.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141528.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141748.jpg,3/17/2024 0:00,11.0000000,11.0000000,43.2553080000000,5.3745300000000,,Plage de Borély,72422,Observation #72422,https://biolit.fr/observations/observation-72422/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140301.jpg,,TRUE,Identifiable +N1,72416,Sortie #72416,https://biolit.fr/sorties/sortie-72416/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-135820.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140110.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140301.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140553.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141227.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141528.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141748.jpg,3/17/2024 0:00,11.0000000,11.0000000,43.2553080000000,5.3745300000000,,Plage de Borély,72424,Observation #72424,https://biolit.fr/observations/observation-72424/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140553.jpg,,,Identifiable +N1,72416,Sortie #72416,https://biolit.fr/sorties/sortie-72416/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-135820.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140110.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140301.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140553.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141227.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141528.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141748.jpg,3/17/2024 0:00,11.0000000,11.0000000,43.2553080000000,5.3745300000000,,Plage de Borély,72426,Observation #72426,https://biolit.fr/observations/observation-72426/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140919.jpg,,,Ne sais pas +N1,72416,Sortie #72416,https://biolit.fr/sorties/sortie-72416/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-135820.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140110.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140301.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140553.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141227.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141528.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141748.jpg,3/17/2024 0:00,11.0000000,11.0000000,43.2553080000000,5.3745300000000,,Plage de Borély,72430,Observation #72430,https://biolit.fr/observations/observation-72430/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141528.jpg,,,Ne sais pas +N1,72416,Sortie #72416,https://biolit.fr/sorties/sortie-72416/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-135820.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140110.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140301.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140553.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141227.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141528.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141748.jpg,3/17/2024 0:00,11.0000000,11.0000000,43.2553080000000,5.3745300000000,,Plage de Borély,72432,Observation #72432,https://biolit.fr/observations/observation-72432/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141748.jpg,,,Identifiable +N1,72442,Sortie #72442,https://biolit.fr/sorties/sortie-72442/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-233315.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-234638.jpg,3/17/2024 0:00,11.0000000,11.0000000,43.2552950000000,5.37445600000000,,Plage de Borély,72444,Observation #72444,https://biolit.fr/observations/observation-72444/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-233315.jpg,,,Identifiable +N1,72449,Sortie #72449,https://biolit.fr/sorties/sortie-72449/,llido lou,https://biolit.fr/wp-content/uploads/jet-form-builder/eeee67b87f2b41055aedaed89953c2db/2024/03/logo_cpie.png,3/19/2024 0:00,14.0000000,15.0000000,43.4507310000000,3.80912800000000,Planète Mer,les aresquiers,,,,,,,,,, +N1,72455,Sortie #72455,https://biolit.fr/sorties/sortie-72455/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-19-161730.jpg,3/17/2024 0:00,11.0000000,11.0000000,43.2553000000000,5.3745480000000,,Plage de Borély,72457,Observation #72457,https://biolit.fr/observations/observation-72457/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-19-161730.jpg,,,Ne sais pas +N1,72475,Sortie #72475,https://biolit.fr/sorties/sortie-72475/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-213946.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-214336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-215150.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-221613.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_141935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_104759321_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_105000905_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_140635102.jpg,3/17/2024 0:00,10.0000000,10.0000000,43.252379000000,5.3723740000000,,Plage de la Vielle Chapelle,72477,Observation #72477,https://biolit.fr/observations/observation-72477/,Tridentata perpusilla,Sertulaire minuscule,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-213946.jpg,,,Identifiable +N1,72475,Sortie #72475,https://biolit.fr/sorties/sortie-72475/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-213946.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-214336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-215150.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-221613.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_141935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_104759321_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_105000905_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_140635102.jpg,3/17/2024 0:00,10.0000000,10.0000000,43.252379000000,5.3723740000000,,Plage de la Vielle Chapelle,72479,Observation #72479,https://biolit.fr/observations/observation-72479/,Dictyota dichotoma,Dictyote,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-214336.jpg,,,Identifiable +N1,72475,Sortie #72475,https://biolit.fr/sorties/sortie-72475/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-213946.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-214336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-215150.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-221613.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_141935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_104759321_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_105000905_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_140635102.jpg,3/17/2024 0:00,10.0000000,10.0000000,43.252379000000,5.3723740000000,,Plage de la Vielle Chapelle,72481,Observation #72481,https://biolit.fr/observations/observation-72481/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-215150.jpg,,TRUE,Identifiable +N1,72475,Sortie #72475,https://biolit.fr/sorties/sortie-72475/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-213946.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-214336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-215150.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-221613.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_141935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_104759321_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_105000905_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_140635102.jpg,3/17/2024 0:00,10.0000000,10.0000000,43.252379000000,5.3723740000000,,Plage de la Vielle Chapelle,72483,Observation #72483,https://biolit.fr/observations/observation-72483/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220234.jpg,,,Ne sais pas +N1,72475,Sortie #72475,https://biolit.fr/sorties/sortie-72475/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-213946.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-214336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-215150.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-221613.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_141935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_104759321_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_105000905_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_140635102.jpg,3/17/2024 0:00,10.0000000,10.0000000,43.252379000000,5.3723740000000,,Plage de la Vielle Chapelle,72485,Observation #72485,https://biolit.fr/observations/observation-72485/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220736-scaled.jpg,,,Ne sais pas +N1,72475,Sortie #72475,https://biolit.fr/sorties/sortie-72475/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-213946.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-214336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-215150.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-221613.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_141935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_104759321_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_105000905_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_140635102.jpg,3/17/2024 0:00,10.0000000,10.0000000,43.252379000000,5.3723740000000,,Plage de la Vielle Chapelle,72487,Observation #72487,https://biolit.fr/observations/observation-72487/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-221613.jpg,,,Ne sais pas +N1,72475,Sortie #72475,https://biolit.fr/sorties/sortie-72475/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-213946.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-214336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-215150.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-221613.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_141935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_104759321_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_105000905_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_140635102.jpg,3/17/2024 0:00,10.0000000,10.0000000,43.252379000000,5.3723740000000,,Plage de la Vielle Chapelle,72489,Observation #72489,https://biolit.fr/observations/observation-72489/,Ceramium virgatum,Céramium rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_141935-scaled.jpg,,,Ne sais pas +N1,72475,Sortie #72475,https://biolit.fr/sorties/sortie-72475/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-213946.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-214336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-215150.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-221613.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_141935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_104759321_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_105000905_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_140635102.jpg,3/17/2024 0:00,10.0000000,10.0000000,43.252379000000,5.3723740000000,,Plage de la Vielle Chapelle,72491,Observation #72491,https://biolit.fr/observations/observation-72491/,Jania rubens,Janie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_104759321_HDR.jpg,,,Ne sais pas +N1,72475,Sortie #72475,https://biolit.fr/sorties/sortie-72475/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-213946.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-214336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-215150.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-221613.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_141935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_104759321_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_105000905_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_140635102.jpg,3/17/2024 0:00,10.0000000,10.0000000,43.252379000000,5.3723740000000,,Plage de la Vielle Chapelle,72493,Observation #72493,https://biolit.fr/observations/observation-72493/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_105000905_.jpg,,,Ne sais pas +N1,72475,Sortie #72475,https://biolit.fr/sorties/sortie-72475/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-213946.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-214336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-215150.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-221613.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_141935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_104759321_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_105000905_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_140635102.jpg,3/17/2024 0:00,10.0000000,10.0000000,43.252379000000,5.3723740000000,,Plage de la Vielle Chapelle,72495,Observation #72495,https://biolit.fr/observations/observation-72495/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_140635102.jpg,,,Ne sais pas +N1,72522,Sortie #72522,https://biolit.fr/sorties/sortie-72522/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20231225_111545860_HDR-scaled.jpg,12/26/2023 0:00,11.0000000,11.0000000,43.2102370000000,5.42024000000000,,Plage de la calanque de Sormiou,72524,Observation #72524,https://biolit.fr/observations/observation-72524/,Carpobrotus acinaciformis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20231225_111545860_HDR-scaled.jpg,,,Identifiable +N1,72600,Sortie #72600,https://biolit.fr/sorties/sortie-72600/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222145.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223349.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182432.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182724.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-231803.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232333.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20230618_080754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_082918589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083721573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083759948.jpg,5/20/2023 0:00,10.0000000,15.0000000,43.0433720000000,6.15064100000000,,Plage de la Bergerie,72602,Observation #72602,https://biolit.fr/observations/observation-72602/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222145.jpg,,,Identifiable +N1,72600,Sortie #72600,https://biolit.fr/sorties/sortie-72600/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222145.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223349.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182432.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182724.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-231803.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232333.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20230618_080754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_082918589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083721573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083759948.jpg,5/20/2023 0:00,10.0000000,15.0000000,43.0433720000000,6.15064100000000,,Plage de la Bergerie,72604,Observation #72604,https://biolit.fr/observations/observation-72604/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222409.jpg,,,Identifiable +N1,72600,Sortie #72600,https://biolit.fr/sorties/sortie-72600/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222145.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223349.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182432.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182724.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-231803.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232333.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20230618_080754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_082918589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083721573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083759948.jpg,5/20/2023 0:00,10.0000000,15.0000000,43.0433720000000,6.15064100000000,,Plage de la Bergerie,72606,Observation #72606,https://biolit.fr/observations/observation-72606/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223043.jpg,,,Ne sais pas +N1,72600,Sortie #72600,https://biolit.fr/sorties/sortie-72600/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222145.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223349.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182432.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182724.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-231803.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232333.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20230618_080754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_082918589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083721573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083759948.jpg,5/20/2023 0:00,10.0000000,15.0000000,43.0433720000000,6.15064100000000,,Plage de la Bergerie,72608,Observation #72608,https://biolit.fr/observations/observation-72608/,Polititapes aureus,Palourde jaune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223349.jpg,,,Identifiable +N1,72600,Sortie #72600,https://biolit.fr/sorties/sortie-72600/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222145.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223349.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182432.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182724.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-231803.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232333.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20230618_080754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_082918589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083721573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083759948.jpg,5/20/2023 0:00,10.0000000,15.0000000,43.0433720000000,6.15064100000000,,Plage de la Bergerie,72610,Observation #72610,https://biolit.fr/observations/observation-72610/,Corbicula fluminea,Corbicule asiatique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182432.jpg,,,Identifiable +N1,72600,Sortie #72600,https://biolit.fr/sorties/sortie-72600/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222145.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223349.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182432.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182724.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-231803.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232333.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20230618_080754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_082918589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083721573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083759948.jpg,5/20/2023 0:00,10.0000000,15.0000000,43.0433720000000,6.15064100000000,,Plage de la Bergerie,72612,Observation #72612,https://biolit.fr/observations/observation-72612/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182724.jpg,,,Identifiable +N1,72600,Sortie #72600,https://biolit.fr/sorties/sortie-72600/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222145.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223349.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182432.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182724.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-231803.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232333.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20230618_080754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_082918589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083721573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083759948.jpg,5/20/2023 0:00,10.0000000,15.0000000,43.0433720000000,6.15064100000000,,Plage de la Bergerie,72614,Observation #72614,https://biolit.fr/observations/observation-72614/,Laevicardium crassum,Bucarde de Norvège,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-231803.jpg,,,Ne sais pas +N1,72600,Sortie #72600,https://biolit.fr/sorties/sortie-72600/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222145.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223349.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182432.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182724.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-231803.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232333.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20230618_080754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_082918589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083721573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083759948.jpg,5/20/2023 0:00,10.0000000,15.0000000,43.0433720000000,6.15064100000000,,Plage de la Bergerie,72616,Observation #72616,https://biolit.fr/observations/observation-72616/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232035-scaled.jpg,,,Identifiable +N1,72600,Sortie #72600,https://biolit.fr/sorties/sortie-72600/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222145.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223349.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182432.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182724.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-231803.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232333.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20230618_080754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_082918589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083721573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083759948.jpg,5/20/2023 0:00,10.0000000,15.0000000,43.0433720000000,6.15064100000000,,Plage de la Bergerie,72618,Observation #72618,https://biolit.fr/observations/observation-72618/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232333.jpg,,,Ne sais pas +N1,72600,Sortie #72600,https://biolit.fr/sorties/sortie-72600/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222145.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223349.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182432.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182724.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-231803.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232333.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20230618_080754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_082918589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083721573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083759948.jpg,5/20/2023 0:00,10.0000000,15.0000000,43.0433720000000,6.15064100000000,,Plage de la Bergerie,72620,Observation #72620,https://biolit.fr/observations/observation-72620/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232735.jpg,,,Ne sais pas +N1,72600,Sortie #72600,https://biolit.fr/sorties/sortie-72600/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222145.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223349.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182432.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182724.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-231803.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232333.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20230618_080754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_082918589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083721573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083759948.jpg,5/20/2023 0:00,10.0000000,15.0000000,43.0433720000000,6.15064100000000,,Plage de la Bergerie,72622,Observation #72622,https://biolit.fr/observations/observation-72622/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20230618_080754-scaled.jpg,,,Ne sais pas +N1,72600,Sortie #72600,https://biolit.fr/sorties/sortie-72600/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222145.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223349.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182432.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182724.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-231803.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232333.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20230618_080754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_082918589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083721573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083759948.jpg,5/20/2023 0:00,10.0000000,15.0000000,43.0433720000000,6.15064100000000,,Plage de la Bergerie,72624,Observation #72624,https://biolit.fr/observations/observation-72624/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_082918589-scaled.jpg,,,Identifiable +N1,72600,Sortie #72600,https://biolit.fr/sorties/sortie-72600/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222145.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223349.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182432.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182724.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-231803.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232333.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20230618_080754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_082918589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083721573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083759948.jpg,5/20/2023 0:00,10.0000000,15.0000000,43.0433720000000,6.15064100000000,,Plage de la Bergerie,72626,Observation #72626,https://biolit.fr/observations/observation-72626/,Ensis minor,Petit couteau-silique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083721573-scaled.jpg,,,Identifiable +N1,72600,Sortie #72600,https://biolit.fr/sorties/sortie-72600/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222145.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223349.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182432.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182724.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-231803.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232333.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20230618_080754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_082918589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083721573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083759948.jpg,5/20/2023 0:00,10.0000000,15.0000000,43.0433720000000,6.15064100000000,,Plage de la Bergerie,72628,Observation #72628,https://biolit.fr/observations/observation-72628/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083759948.jpg,,,Identifiable +N1,72646,Sortie #72646,https://biolit.fr/sorties/sortie-72646/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-15-135734.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-132220.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-132222.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-131929.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-131948.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-132234.jpg,10/02/2022,10.0000000,11.0000000,43.2398650000000,5.36244700000000,,Plage de l’Anse du Bain des Dames,72648,Observation #72648,https://biolit.fr/observations/observation-72648/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-15-135734.jpg,,,Ne sais pas +N1,72646,Sortie #72646,https://biolit.fr/sorties/sortie-72646/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-15-135734.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-132220.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-132222.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-131929.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-131948.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-132234.jpg,10/02/2022,10.0000000,11.0000000,43.2398650000000,5.36244700000000,,Plage de l’Anse du Bain des Dames,72650,Observation #72650,https://biolit.fr/observations/observation-72650/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-132220.jpg,,,Ne sais pas +N1,72646,Sortie #72646,https://biolit.fr/sorties/sortie-72646/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-15-135734.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-132220.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-132222.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-131929.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-131948.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-132234.jpg,10/02/2022,10.0000000,11.0000000,43.2398650000000,5.36244700000000,,Plage de l’Anse du Bain des Dames,72652,Observation #72652,https://biolit.fr/observations/observation-72652/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-132222.jpg,,,Ne sais pas +N1,72646,Sortie #72646,https://biolit.fr/sorties/sortie-72646/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-15-135734.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-132220.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-132222.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-131929.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-131948.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-132234.jpg,10/02/2022,10.0000000,11.0000000,43.2398650000000,5.36244700000000,,Plage de l’Anse du Bain des Dames,72654,Observation #72654,https://biolit.fr/observations/observation-72654/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-131929.jpg,,,Ne sais pas +N1,72646,Sortie #72646,https://biolit.fr/sorties/sortie-72646/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-15-135734.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-132220.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-132222.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-131929.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-131948.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-132234.jpg,10/02/2022,10.0000000,11.0000000,43.2398650000000,5.36244700000000,,Plage de l’Anse du Bain des Dames,72656,Observation #72656,https://biolit.fr/observations/observation-72656/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-131948.jpg,,,Identifiable +N1,72646,Sortie #72646,https://biolit.fr/sorties/sortie-72646/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-15-135734.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-132220.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-132222.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-131929.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-131948.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-132234.jpg,10/02/2022,10.0000000,11.0000000,43.2398650000000,5.36244700000000,,Plage de l’Anse du Bain des Dames,72658,Observation #72658,https://biolit.fr/observations/observation-72658/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-132234.jpg,,,Ne sais pas +N1,72661,Sortie #72661,https://biolit.fr/sorties/sortie-72661/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG-20240324-WA0000-rotated.jpg,3/24/2024 0:00,10.0000000,11.0000000,43.2398660000000,5.36243300000000,,Plage de l’Anse du Bain des Dames,72663,Observation #72663,https://biolit.fr/observations/observation-72663/,Dictyota fasciola,Dictyote rubanée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG-20240324-WA0000-rotated.jpg,,,Identifiable +N1,72694,Sortie #72694,https://biolit.fr/sorties/sortie-72694/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-231341.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-231900.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_141948002.jpg,3/24/2024 0:00,10.0000000,11.0000000,43.2398070000000,5.36243900000000,,Plage de l’Anse du Bain des Dames,72696,Observation #72696,https://biolit.fr/observations/observation-72696/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-231341.jpg,,,Ne sais pas +N1,72694,Sortie #72694,https://biolit.fr/sorties/sortie-72694/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-231341.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-231900.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_141948002.jpg,3/24/2024 0:00,10.0000000,11.0000000,43.2398070000000,5.36243900000000,,Plage de l’Anse du Bain des Dames,72698,Observation #72698,https://biolit.fr/observations/observation-72698/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-231900.jpg,,,Ne sais pas +N1,72694,Sortie #72694,https://biolit.fr/sorties/sortie-72694/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-231341.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-231900.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_141948002.jpg,3/24/2024 0:00,10.0000000,11.0000000,43.2398070000000,5.36243900000000,,Plage de l’Anse du Bain des Dames,72700,Observation #72700,https://biolit.fr/observations/observation-72700/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_141948002.jpg,,,Ne sais pas +N1,72727,Sortie #72727,https://biolit.fr/sorties/sortie-72727/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234726.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235036.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235329.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235701.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235923.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_110609116.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_112820191.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113758489_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113827519-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_114128795_HDR.jpg,3/24/2024 0:00,11.0000000,11.0000000,43.23988000000,5.36243400000000,,Plage de l’Anse du Bain des Dames,72729,Observation #72729,https://biolit.fr/observations/observation-72729/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234513.jpg,,,Ne sais pas +N1,72727,Sortie #72727,https://biolit.fr/sorties/sortie-72727/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234726.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235036.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235329.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235701.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235923.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_110609116.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_112820191.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113758489_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113827519-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_114128795_HDR.jpg,3/24/2024 0:00,11.0000000,11.0000000,43.23988000000,5.36243400000000,,Plage de l’Anse du Bain des Dames,72731,Observation #72731,https://biolit.fr/observations/observation-72731/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234726.jpg,,,Ne sais pas +N1,72727,Sortie #72727,https://biolit.fr/sorties/sortie-72727/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234726.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235036.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235329.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235701.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235923.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_110609116.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_112820191.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113758489_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113827519-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_114128795_HDR.jpg,3/24/2024 0:00,11.0000000,11.0000000,43.23988000000,5.36243400000000,,Plage de l’Anse du Bain des Dames,72733,Observation #72733,https://biolit.fr/observations/observation-72733/,Striarca lactea,Striarca laiteuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235036.jpg,,,Identifiable +N1,72727,Sortie #72727,https://biolit.fr/sorties/sortie-72727/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234726.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235036.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235329.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235701.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235923.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_110609116.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_112820191.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113758489_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113827519-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_114128795_HDR.jpg,3/24/2024 0:00,11.0000000,11.0000000,43.23988000000,5.36243400000000,,Plage de l’Anse du Bain des Dames,72735,Observation #72735,https://biolit.fr/observations/observation-72735/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235329.jpg,,,Ne sais pas +N1,72727,Sortie #72727,https://biolit.fr/sorties/sortie-72727/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234726.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235036.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235329.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235701.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235923.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_110609116.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_112820191.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113758489_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113827519-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_114128795_HDR.jpg,3/24/2024 0:00,11.0000000,11.0000000,43.23988000000,5.36243400000000,,Plage de l’Anse du Bain des Dames,72737,Observation #72737,https://biolit.fr/observations/observation-72737/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235701.jpg,,,Ne sais pas +N1,72727,Sortie #72727,https://biolit.fr/sorties/sortie-72727/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234726.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235036.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235329.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235701.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235923.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_110609116.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_112820191.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113758489_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113827519-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_114128795_HDR.jpg,3/24/2024 0:00,11.0000000,11.0000000,43.23988000000,5.36243400000000,,Plage de l’Anse du Bain des Dames,72743,Observation #72743,https://biolit.fr/observations/observation-72743/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000409.jpg,,,Identifiable +N1,72727,Sortie #72727,https://biolit.fr/sorties/sortie-72727/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234726.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235036.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235329.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235701.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235923.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_110609116.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_112820191.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113758489_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113827519-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_114128795_HDR.jpg,3/24/2024 0:00,11.0000000,11.0000000,43.23988000000,5.36243400000000,,Plage de l’Anse du Bain des Dames,72745,Observation #72745,https://biolit.fr/observations/observation-72745/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_110609116.jpg,,TRUE,Identifiable +N1,72727,Sortie #72727,https://biolit.fr/sorties/sortie-72727/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234726.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235036.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235329.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235701.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235923.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_110609116.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_112820191.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113758489_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113827519-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_114128795_HDR.jpg,3/24/2024 0:00,11.0000000,11.0000000,43.23988000000,5.36243400000000,,Plage de l’Anse du Bain des Dames,72747,Observation #72747,https://biolit.fr/observations/observation-72747/,Cardita calyculata,Cardite petit calice,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_112820191.jpg,,,Identifiable +N1,72727,Sortie #72727,https://biolit.fr/sorties/sortie-72727/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234726.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235036.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235329.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235701.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235923.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_110609116.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_112820191.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113758489_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113827519-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_114128795_HDR.jpg,3/24/2024 0:00,11.0000000,11.0000000,43.23988000000,5.36243400000000,,Plage de l’Anse du Bain des Dames,72749,Observation #72749,https://biolit.fr/observations/observation-72749/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113758489_HDR.jpg,,,Identifiable +N1,72727,Sortie #72727,https://biolit.fr/sorties/sortie-72727/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234726.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235036.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235329.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235701.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235923.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_110609116.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_112820191.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113758489_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113827519-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_114128795_HDR.jpg,3/24/2024 0:00,11.0000000,11.0000000,43.23988000000,5.36243400000000,,Plage de l’Anse du Bain des Dames,72751,Observation #72751,https://biolit.fr/observations/observation-72751/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113827519-rotated.jpg,,TRUE,Identifiable +N1,72727,Sortie #72727,https://biolit.fr/sorties/sortie-72727/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234726.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235036.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235329.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235701.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235923.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_110609116.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_112820191.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113758489_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113827519-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_114128795_HDR.jpg,3/24/2024 0:00,11.0000000,11.0000000,43.23988000000,5.36243400000000,,Plage de l’Anse du Bain des Dames,72753,Observation #72753,https://biolit.fr/observations/observation-72753/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_114128795_HDR.jpg,,,Identifiable +N1,72727,Sortie #72727,https://biolit.fr/sorties/sortie-72727/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234726.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235036.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235329.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235701.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235923.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_110609116.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_112820191.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113758489_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113827519-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_114128795_HDR.jpg,3/24/2024 0:00,11.0000000,11.0000000,43.23988000000,5.36243400000000,,Plage de l’Anse du Bain des Dames,81785,Observation #81785,https://biolit.fr/observations/observation-81785/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235923.jpg,,,Ne sais pas +N1,72727,Sortie #72727,https://biolit.fr/sorties/sortie-72727/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234726.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235036.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235329.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235701.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235923.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_110609116.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_112820191.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113758489_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113827519-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_114128795_HDR.jpg,3/24/2024 0:00,11.0000000,11.0000000,43.23988000000,5.36243400000000,,Plage de l’Anse du Bain des Dames,81787,Observation #81787,https://biolit.fr/observations/observation-81787/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000127.jpg,,,Ne sais pas +N1,72766,Sortie #72766,https://biolit.fr/sorties/sortie-72766/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230837.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-231217.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120321728_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120341896_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121107123_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121441733-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121709763.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121830603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123039999-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123202765-scaled.jpg,04/01/2024,12.0000000,13.0000000,43.2116270000000,5.45566200000000,,Plage de Sugiton EST,72768,Observation #72768,https://biolit.fr/observations/observation-72768/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230234.jpg,,,Identifiable +N1,72766,Sortie #72766,https://biolit.fr/sorties/sortie-72766/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230837.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-231217.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120321728_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120341896_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121107123_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121441733-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121709763.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121830603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123039999-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123202765-scaled.jpg,04/01/2024,12.0000000,13.0000000,43.2116270000000,5.45566200000000,,Plage de Sugiton EST,72770,Observation #72770,https://biolit.fr/observations/observation-72770/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230837.jpg,,,Identifiable +N1,72766,Sortie #72766,https://biolit.fr/sorties/sortie-72766/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230837.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-231217.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120321728_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120341896_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121107123_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121441733-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121709763.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121830603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123039999-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123202765-scaled.jpg,04/01/2024,12.0000000,13.0000000,43.2116270000000,5.45566200000000,,Plage de Sugiton EST,72772,Observation #72772,https://biolit.fr/observations/observation-72772/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-231217.jpg,,TRUE,Ne sais pas +N1,72766,Sortie #72766,https://biolit.fr/sorties/sortie-72766/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230837.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-231217.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120321728_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120341896_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121107123_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121441733-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121709763.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121830603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123039999-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123202765-scaled.jpg,04/01/2024,12.0000000,13.0000000,43.2116270000000,5.45566200000000,,Plage de Sugiton EST,72774,Observation #72774,https://biolit.fr/observations/observation-72774/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120321728_HDR-scaled.jpg,,TRUE,Identifiable +N1,72766,Sortie #72766,https://biolit.fr/sorties/sortie-72766/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230837.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-231217.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120321728_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120341896_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121107123_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121441733-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121709763.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121830603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123039999-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123202765-scaled.jpg,04/01/2024,12.0000000,13.0000000,43.2116270000000,5.45566200000000,,Plage de Sugiton EST,72776,Observation #72776,https://biolit.fr/observations/observation-72776/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120341896_HDR-scaled.jpg,,,Identifiable +N1,72766,Sortie #72766,https://biolit.fr/sorties/sortie-72766/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230837.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-231217.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120321728_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120341896_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121107123_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121441733-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121709763.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121830603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123039999-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123202765-scaled.jpg,04/01/2024,12.0000000,13.0000000,43.2116270000000,5.45566200000000,,Plage de Sugiton EST,72778,Observation #72778,https://biolit.fr/observations/observation-72778/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121107123_HDR-scaled.jpg,,,Ne sais pas +N1,72766,Sortie #72766,https://biolit.fr/sorties/sortie-72766/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230837.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-231217.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120321728_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120341896_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121107123_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121441733-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121709763.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121830603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123039999-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123202765-scaled.jpg,04/01/2024,12.0000000,13.0000000,43.2116270000000,5.45566200000000,,Plage de Sugiton EST,72780,Observation #72780,https://biolit.fr/observations/observation-72780/,Jania rubens,Janie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121441733-rotated.jpg,,,Ne sais pas +N1,72766,Sortie #72766,https://biolit.fr/sorties/sortie-72766/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230837.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-231217.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120321728_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120341896_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121107123_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121441733-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121709763.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121830603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123039999-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123202765-scaled.jpg,04/01/2024,12.0000000,13.0000000,43.2116270000000,5.45566200000000,,Plage de Sugiton EST,72782,Observation #72782,https://biolit.fr/observations/observation-72782/,Dictyota dichotoma,Dictyote,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121709763.jpg,,,Identifiable +N1,72766,Sortie #72766,https://biolit.fr/sorties/sortie-72766/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230837.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-231217.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120321728_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120341896_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121107123_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121441733-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121709763.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121830603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123039999-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123202765-scaled.jpg,04/01/2024,12.0000000,13.0000000,43.2116270000000,5.45566200000000,,Plage de Sugiton EST,72784,Observation #72784,https://biolit.fr/observations/observation-72784/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121830603-rotated.jpg,,,Ne sais pas +N1,72766,Sortie #72766,https://biolit.fr/sorties/sortie-72766/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230837.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-231217.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120321728_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120341896_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121107123_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121441733-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121709763.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121830603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123039999-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123202765-scaled.jpg,04/01/2024,12.0000000,13.0000000,43.2116270000000,5.45566200000000,,Plage de Sugiton EST,72786,Observation #72786,https://biolit.fr/observations/observation-72786/,Dictyota fasciola,Dictyote rubanée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123039999-rotated.jpg,,,Identifiable +N1,72766,Sortie #72766,https://biolit.fr/sorties/sortie-72766/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230837.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-231217.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120321728_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120341896_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121107123_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121441733-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121709763.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121830603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123039999-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123202765-scaled.jpg,04/01/2024,12.0000000,13.0000000,43.2116270000000,5.45566200000000,,Plage de Sugiton EST,72788,Observation #72788,https://biolit.fr/observations/observation-72788/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123202765-scaled.jpg,,,Identifiable +N1,72791,Sortie #72791,https://biolit.fr/sorties/sortie-72791/,Seb Mahee,https://biolit.fr/wp-content/uploads/jet-form-builder/5a7a420c23e5fe6089a573f647bfeacb/2024/04/IMG_5431-scaled.jpeg,3/19/2024 0:00,15.0:15,16.0000000,43.0388810000000,6.09328200000000,,Plage de l’esquilier,72793,Observation #72793,https://biolit.fr/observations/observation-72793/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5a7a420c23e5fe6089a573f647bfeacb/2024/04/IMG_5431-scaled.jpeg,,TRUE,Identifiable +N1,72815,Sortie #72815,https://biolit.fr/sorties/sortie-72815/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596750000000,5.37462300000000,,Plage de l'Huveaune,,,,,,,,,, +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72838,Observation #72838,https://biolit.fr/observations/observation-72838/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg,,TRUE,Identifiable +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72840,Observation #72840,https://biolit.fr/observations/observation-72840/,Tritia nitida,Nasse brillante,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg,,,Identifiable +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72842,Observation #72842,https://biolit.fr/observations/observation-72842/,Solecurtus strigilatus,Solécurte rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg,,,Identifiable +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72844,Observation #72844,https://biolit.fr/observations/observation-72844/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg,,,Identifiable +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72846,Observation #72846,https://biolit.fr/observations/observation-72846/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg,,,Identifiable +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72848,Observation #72848,https://biolit.fr/observations/observation-72848/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg,,,Identifiable +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72850,Observation #72850,https://biolit.fr/observations/observation-72850/,Tritia mutabilis,Noisette de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg,,,Identifiable +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72852,Observation #72852,https://biolit.fr/observations/observation-72852/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg,,TRUE,Identifiable +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72854,Observation #72854,https://biolit.fr/observations/observation-72854/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg,,,Ne sais pas +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72856,Observation #72856,https://biolit.fr/observations/observation-72856/,Corbicula fluminea,Corbicule asiatique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg,,,Identifiable +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72858,Observation #72858,https://biolit.fr/observations/observation-72858/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg,,,Ne sais pas +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72860,Observation #72860,https://biolit.fr/observations/observation-72860/,Modiolus barbatus,Modiole barbue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg,,,Identifiable +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72862,Observation #72862,https://biolit.fr/observations/observation-72862/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg,,,Ne sais pas +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72864,Observation #72864,https://biolit.fr/observations/observation-72864/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg,,,Ne sais pas +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72866,Observation #72866,https://biolit.fr/observations/observation-72866/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg,,,Ne sais pas +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72868,Observation #72868,https://biolit.fr/observations/observation-72868/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg,,,Ne sais pas +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72870,Observation #72870,https://biolit.fr/observations/observation-72870/,Scrobicularia plana,Scrobiculaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg,,,Ne sais pas +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72872,Observation #72872,https://biolit.fr/observations/observation-72872/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg,,,Ne sais pas +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72874,Observation #72874,https://biolit.fr/observations/observation-72874/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,,,Ne sais pas +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72898,Observation #72898,https://biolit.fr/observations/observation-72898/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg,,TRUE,Identifiable +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72900,Observation #72900,https://biolit.fr/observations/observation-72900/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg,,,Ne sais pas +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72902,Observation #72902,https://biolit.fr/observations/observation-72902/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg,,,Ne sais pas +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72904,Observation #72904,https://biolit.fr/observations/observation-72904/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg,,,Ne sais pas +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72906,Observation #72906,https://biolit.fr/observations/observation-72906/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg,,,Ne sais pas +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72908,Observation #72908,https://biolit.fr/observations/observation-72908/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg,,,Identifiable +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72910,Observation #72910,https://biolit.fr/observations/observation-72910/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg,,,Identifiable +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72912,Observation #72912,https://biolit.fr/observations/observation-72912/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg,,,Ne sais pas +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72914,Observation #72914,https://biolit.fr/observations/observation-72914/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg,,,Ne sais pas +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72918,Observation #72918,https://biolit.fr/observations/observation-72918/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg,,,Identifiable +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72920,Observation #72920,https://biolit.fr/observations/observation-72920/,Polititapes aureus,Palourde jaune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg,,,Identifiable +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72922,Observation #72922,https://biolit.fr/observations/observation-72922/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg,,,Identifiable +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72924,Observation #72924,https://biolit.fr/observations/observation-72924/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg,,,Identifiable +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72926,Observation #72926,https://biolit.fr/observations/observation-72926/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg,,,Identifiable +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72928,Observation #72928,https://biolit.fr/observations/observation-72928/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg,,,Identifiable +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72930,Observation #72930,https://biolit.fr/observations/observation-72930/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg,,,Identifiable +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72932,Observation #72932,https://biolit.fr/observations/observation-72932/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg,,,Identifiable +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72934,Observation #72934,https://biolit.fr/observations/observation-72934/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,,TRUE,Ne sais pas +N1,72945,Sortie #72945,https://biolit.fr/sorties/sortie-72945/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-03-222020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-03-222252.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3574230000000,5.29081900000000,,Plage de la Batterie,,,,,,,,,, +N1,72949,Sortie #72949,https://biolit.fr/sorties/sortie-72949/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-03-222020-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-03-222252-1.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3574400000000,5.29080100000000,,Plage de la Batterie,72951,Observation #72951,https://biolit.fr/observations/observation-72951/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-03-222020-1.jpg,,,Ne sais pas +N1,72949,Sortie #72949,https://biolit.fr/sorties/sortie-72949/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-03-222020-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-03-222252-1.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3574400000000,5.29080100000000,,Plage de la Batterie,72953,Observation #72953,https://biolit.fr/observations/observation-72953/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-03-222252-1.jpg,,,Ne sais pas +N1,72956,Sortie #72956,https://biolit.fr/sorties/sortie-72956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-03-221145.jpg,04/01/2024,12.0000000,12.0000000,43.2116480000000,5.45566500000000,,Plage de Sugiton EST,72960,Observation #72960,https://biolit.fr/observations/observation-72960/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-03-221145.jpg,,,Ne sais pas +N1,72964,Sortie #72964,https://biolit.fr/sorties/sortie-72964/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/04/IMG_4579-scaled.jpeg,04/02/2024,5.0000000,7.0000000,43.2524520000000,5.374117000000,Planète Mer,Fausse monnaie,,,,,,,,,, +N1,72967,Sortie #72967,https://biolit.fr/sorties/sortie-72967/,Laliche Flora,https://biolit.fr/wp-content/uploads/jet-form-builder/023c6e8df887f1dc06066cb56e68cd5a/2024/04/IMG20240310170006-scaled.jpg,04/04/2024,8.0:53,9.0:53,43.2567630,5.3835480,Planète Mer,Vallon des auffes,,,,,,,,,, +N1,72974,Sortie #72974,https://biolit.fr/sorties/sortie-72974/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/04/IMG_4577-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/04/IMG_4579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/04/IMG_4581-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/04/IMG_4583-scaled.jpg,04/02/2024,12.0000000,12.0000000,43.247859000000,5.37290400000000,Planète Mer,Vieille Chapelle,72976,Observation #72976,https://biolit.fr/observations/observation-72976/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/04/IMG_4583-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/04/IMG_4581-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/04/IMG_4579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/04/IMG_4577-scaled.jpg,,TRUE,Identifiable +N1,72979,Sortie #72979,https://biolit.fr/sorties/sortie-72979/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/04/P3310079-scaled.jpg,3/31/2024 0:00,14.0000000,14.000005,42.669054,9.446606,La Girelle,"Furiani, Plage Arinella",72981,Observation #72981,https://biolit.fr/observations/observation-72981/,Argonauta argo,Argonaute,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/04/P3310079-scaled.jpg,,TRUE,Identifiable +N1,72984,Sortie #72984,https://biolit.fr/sorties/sortie-72984/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/04/433042213_1366803103993295_8736559649657282870_n-1.jpg,03/07/2024,8.0000000,8.000009,42.9633020000000,9.45153100000000,La Girelle,"Corse, Macinaggio",,,,,,,,,, +N1,72989,Sortie #72989,https://biolit.fr/sorties/sortie-72989/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/04/433042213_1366803103993295_8736559649657282870_n-1-1.jpg,3/27/2024 0:00,8.0000000,8.000003,42.9634600000000,9.45145000000000,La Girelle,"Corse, Macinaggio",72991,Observation #72991,https://biolit.fr/observations/observation-72991/,Argonauta argo,Argonaute,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/04/433042213_1366803103993295_8736559649657282870_n-1-1.jpg,,TRUE,Identifiable +N1,72994,Sortie #72994,https://biolit.fr/sorties/sortie-72994/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/04/434364075_1488177702074014_1575211027591723871_n.jpg,3/31/2024 0:00,0.0000000,0.0000000,42.6527910000000,9.45141800000000,La Girelle,"Corse, Lido de la Marana",72996,Observation #72996,https://biolit.fr/observations/observation-72996/,Argonauta argo,Argonaute,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/04/434364075_1488177702074014_1575211027591723871_n.jpg,,TRUE,Identifiable +N1,73006,Sortie #73006,https://biolit.fr/sorties/sortie-73006/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240404_114053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240404_113506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240404_110957-scaled.jpg,04/04/2024,11.0000000,11.0000000,47.6585810000000,-3.20637700000000,,pontons du port d'Etel,73008,Observation #73008,https://biolit.fr/observations/observation-73008/,Antedon bifida,Comatule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240404_114053-scaled.jpg,,TRUE,Ne sais pas +N1,73006,Sortie #73006,https://biolit.fr/sorties/sortie-73006/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240404_114053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240404_113506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240404_110957-scaled.jpg,04/04/2024,11.0000000,11.0000000,47.6585810000000,-3.20637700000000,,pontons du port d'Etel,73010,Observation #73010,https://biolit.fr/observations/observation-73010/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240404_113506-scaled.jpg,,,Ne sais pas +N1,73006,Sortie #73006,https://biolit.fr/sorties/sortie-73006/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240404_114053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240404_113506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240404_110957-scaled.jpg,04/04/2024,11.0000000,11.0000000,47.6585810000000,-3.20637700000000,,pontons du port d'Etel,73012,Observation #73012,https://biolit.fr/observations/observation-73012/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240404_110957-scaled.jpg,,,Ne sais pas +N1,73022,Sortie #73022,https://biolit.fr/sorties/sortie-73022/,Gasc Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103256-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103248-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_102526-scaled.jpg,04/06/2024,9.0000000,10.0:32,43.5253890,3.9278140,Ailerons,Palavas,73024,Observation #73024,https://biolit.fr/observations/observation-73024/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103330-scaled.jpg,,TRUE,Identifiable +N1,73022,Sortie #73022,https://biolit.fr/sorties/sortie-73022/,Gasc Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103256-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103248-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_102526-scaled.jpg,04/06/2024,9.0000000,10.0:32,43.5253890,3.9278140,Ailerons,Palavas,73026,Observation #73026,https://biolit.fr/observations/observation-73026/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103248-scaled.jpg,,TRUE,Identifiable +N1,73022,Sortie #73022,https://biolit.fr/sorties/sortie-73022/,Gasc Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103256-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103248-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_102526-scaled.jpg,04/06/2024,9.0000000,10.0:32,43.5253890,3.9278140,Ailerons,Palavas,73028,Observation #73028,https://biolit.fr/observations/observation-73028/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_102526-scaled.jpg,,,Ne sais pas +N1,73022,Sortie #73022,https://biolit.fr/sorties/sortie-73022/,Gasc Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103256-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103248-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_102526-scaled.jpg,04/06/2024,9.0000000,10.0:32,43.5253890,3.9278140,Ailerons,Palavas,73030,Observation #73030,https://biolit.fr/observations/observation-73030/,Raja polystigma,Raie tachetée,,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103300-scaled.jpg,,,Identifiable +N1,73022,Sortie #73022,https://biolit.fr/sorties/sortie-73022/,Gasc Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103256-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103248-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_102526-scaled.jpg,04/06/2024,9.0000000,10.0:32,43.5253890,3.9278140,Ailerons,Palavas,73032,Observation #73032,https://biolit.fr/observations/observation-73032/,Eunicella singularis,Gorgone blanche,,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103310-scaled.jpg,,TRUE,Identifiable +N1,73022,Sortie #73022,https://biolit.fr/sorties/sortie-73022/,Gasc Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103256-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103248-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_102526-scaled.jpg,04/06/2024,9.0000000,10.0:32,43.5253890,3.9278140,Ailerons,Palavas,73034,Observation #73034,https://biolit.fr/observations/observation-73034/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103256-scaled.jpg,,TRUE,Identifiable +N1,73039,Sortie #73039,https://biolit.fr/sorties/sortie-73039/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-03-220757.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121357307_HDR.jpg,3/30/2024 0:00,15.0000000,15.0000000,43.259718000000,5.37455700000000,,Plage de l'Huveaune,73041,Observation #73041,https://biolit.fr/observations/observation-73041/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121357307_HDR.jpg,,,Identifiable +N1,73039,Sortie #73039,https://biolit.fr/sorties/sortie-73039/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-03-220757.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121357307_HDR.jpg,3/30/2024 0:00,15.0000000,15.0000000,43.259718000000,5.37455700000000,,Plage de l'Huveaune,73043,Observation #73043,https://biolit.fr/observations/observation-73043/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935-1.jpg,,,Ne sais pas +N1,73039,Sortie #73039,https://biolit.fr/sorties/sortie-73039/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-03-220757.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121357307_HDR.jpg,3/30/2024 0:00,15.0000000,15.0000000,43.259718000000,5.37455700000000,,Plage de l'Huveaune,73045,Observation #73045,https://biolit.fr/observations/observation-73045/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-03-220757.jpg,,,Ne sais pas +N1,73048,Sortie #73048,https://biolit.fr/sorties/sortie-73048/,AILERONS,https://biolit.fr/wp-content/uploads/jet-form-builder/104a3ad0debfd3bf7c7f67cd28f4351b/2024/04/VideoCapture_20240407-125045.jpg,04/07/2024,10.0000000,11.0000000,43.5411860000000,3.97105900000000,Ailerons,"Plage des Roquilles, Carnon-Ouest",,,,,,,,,, +N1,73051,Sortie #73051,https://biolit.fr/sorties/sortie-73051/,AILERONS,https://biolit.fr/wp-content/uploads/jet-form-builder/104a3ad0debfd3bf7c7f67cd28f4351b/2024/04/VideoCapture_20240407-125045-1.jpg,04/07/2024,10.0000000,11.0000000,43.5411710000000,3.97143300000000,Ailerons,"Plage des Roquilles, Carnon-Ouest",73053,Observation #73053,https://biolit.fr/observations/observation-73053/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/104a3ad0debfd3bf7c7f67cd28f4351b/2024/04/VideoCapture_20240407-125045-1.jpg,,TRUE,Identifiable +N1,73090,Sortie #73090,https://biolit.fr/sorties/sortie-73090/,Andrieux Pierre,https://biolit.fr/wp-content/uploads/jet-form-builder/58e21038551e40752dd0b6a308772a71/2024/04/347142a9-c681-4e3c-9613-c29484628b9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/58e21038551e40752dd0b6a308772a71/2024/04/91d7a9b6-ddf8-4c01-a634-2a7bf6755b7a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/58e21038551e40752dd0b6a308772a71/2024/04/c82a7b1d-5e54-4c22-aaf6-3b1a3995f58c.jpg,04/07/2024,11.0000000,12.0000000,17.9111200000000,-62.8438830000000,,Anse des Cayes - Saint Barthélémy,73092,Observation #73092,https://biolit.fr/observations/observation-73092/,Sargassum fluitans,Sargasse flottante,,https://biolit.fr/wp-content/uploads/jet-form-builder/58e21038551e40752dd0b6a308772a71/2024/04/c82a7b1d-5e54-4c22-aaf6-3b1a3995f58c.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/58e21038551e40752dd0b6a308772a71/2024/04/91d7a9b6-ddf8-4c01-a634-2a7bf6755b7a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/58e21038551e40752dd0b6a308772a71/2024/04/347142a9-c681-4e3c-9613-c29484628b9d.jpg,,,Identifiable +N1,73104,Sortie #73104,https://biolit.fr/sorties/sortie-73104/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222135.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222539.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222942.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-223622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165134691-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165209514-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170101822_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170304060-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170839337-rotated.jpg,04/06/2024,16.0000000,16.0000000,43.2804100000000,5.35016500000000,,Plage de Maldormé,73106,Observation #73106,https://biolit.fr/observations/observation-73106/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222135.jpg,,,Identifiable +N1,73104,Sortie #73104,https://biolit.fr/sorties/sortie-73104/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222135.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222539.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222942.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-223622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165134691-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165209514-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170101822_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170304060-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170839337-rotated.jpg,04/06/2024,16.0000000,16.0000000,43.2804100000000,5.35016500000000,,Plage de Maldormé,73108,Observation #73108,https://biolit.fr/observations/observation-73108/,Diodora graeca,Fissurelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222414-scaled.jpg,,,Identifiable +N1,73104,Sortie #73104,https://biolit.fr/sorties/sortie-73104/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222135.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222539.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222942.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-223622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165134691-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165209514-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170101822_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170304060-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170839337-rotated.jpg,04/06/2024,16.0000000,16.0000000,43.2804100000000,5.35016500000000,,Plage de Maldormé,73110,Observation #73110,https://biolit.fr/observations/observation-73110/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222539.jpg,,,Identifiable +N1,73104,Sortie #73104,https://biolit.fr/sorties/sortie-73104/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222135.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222539.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222942.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-223622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165134691-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165209514-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170101822_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170304060-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170839337-rotated.jpg,04/06/2024,16.0000000,16.0000000,43.2804100000000,5.35016500000000,,Plage de Maldormé,73112,Observation #73112,https://biolit.fr/observations/observation-73112/,Tritia grana,Nasse-grain,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222942.jpg,,,Identifiable +N1,73104,Sortie #73104,https://biolit.fr/sorties/sortie-73104/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222135.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222539.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222942.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-223622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165134691-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165209514-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170101822_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170304060-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170839337-rotated.jpg,04/06/2024,16.0000000,16.0000000,43.2804100000000,5.35016500000000,,Plage de Maldormé,73114,Observation #73114,https://biolit.fr/observations/observation-73114/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-223622.jpg,,,Ne sais pas +N1,73104,Sortie #73104,https://biolit.fr/sorties/sortie-73104/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222135.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222539.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222942.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-223622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165134691-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165209514-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170101822_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170304060-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170839337-rotated.jpg,04/06/2024,16.0000000,16.0000000,43.2804100000000,5.35016500000000,,Plage de Maldormé,73116,Observation #73116,https://biolit.fr/observations/observation-73116/,Dictyota fasciola,Dictyote rubanée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165134691-scaled.jpg,,,Identifiable +N1,73104,Sortie #73104,https://biolit.fr/sorties/sortie-73104/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222135.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222539.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222942.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-223622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165134691-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165209514-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170101822_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170304060-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170839337-rotated.jpg,04/06/2024,16.0000000,16.0000000,43.2804100000000,5.35016500000000,,Plage de Maldormé,73118,Observation #73118,https://biolit.fr/observations/observation-73118/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165209514-scaled.jpg,,TRUE,Identifiable +N1,73104,Sortie #73104,https://biolit.fr/sorties/sortie-73104/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222135.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222539.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222942.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-223622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165134691-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165209514-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170101822_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170304060-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170839337-rotated.jpg,04/06/2024,16.0000000,16.0000000,43.2804100000000,5.35016500000000,,Plage de Maldormé,73120,Observation #73120,https://biolit.fr/observations/observation-73120/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170101822_HDR.jpg,,,Identifiable +N1,73104,Sortie #73104,https://biolit.fr/sorties/sortie-73104/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222135.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222539.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222942.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-223622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165134691-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165209514-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170101822_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170304060-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170839337-rotated.jpg,04/06/2024,16.0000000,16.0000000,43.2804100000000,5.35016500000000,,Plage de Maldormé,73122,Observation #73122,https://biolit.fr/observations/observation-73122/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170304060-rotated.jpg,,,Identifiable +N1,73104,Sortie #73104,https://biolit.fr/sorties/sortie-73104/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222135.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222539.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222942.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-223622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165134691-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165209514-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170101822_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170304060-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170839337-rotated.jpg,04/06/2024,16.0000000,16.0000000,43.2804100000000,5.35016500000000,,Plage de Maldormé,73124,Observation #73124,https://biolit.fr/observations/observation-73124/,Electra posidoniae,Bryozoaire de la posidonie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170839337-rotated.jpg,,,Identifiable +N1,73131,Sortie #73131,https://biolit.fr/sorties/sortie-73131/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225621.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225813.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-230040.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240407_180221273.jpg,04/06/2024,17.0000000,18.0000000,43.2805030000000,5.35292300000000,,Anse de la Fausse Monnaie,73133,Observation #73133,https://biolit.fr/observations/observation-73133/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225250.jpg,,,Ne sais pas +N1,73131,Sortie #73131,https://biolit.fr/sorties/sortie-73131/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225621.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225813.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-230040.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240407_180221273.jpg,04/06/2024,17.0000000,18.0000000,43.2805030000000,5.35292300000000,,Anse de la Fausse Monnaie,73135,Observation #73135,https://biolit.fr/observations/observation-73135/,Tridentata perpusilla,Sertulaire minuscule,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225621.jpg,,,Identifiable +N1,73131,Sortie #73131,https://biolit.fr/sorties/sortie-73131/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225621.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225813.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-230040.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240407_180221273.jpg,04/06/2024,17.0000000,18.0000000,43.2805030000000,5.35292300000000,,Anse de la Fausse Monnaie,73137,Observation #73137,https://biolit.fr/observations/observation-73137/,Tritia corniculum,Tritia corniculum,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225813.jpg,,,Identifiable +N1,73131,Sortie #73131,https://biolit.fr/sorties/sortie-73131/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225621.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225813.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-230040.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240407_180221273.jpg,04/06/2024,17.0000000,18.0000000,43.2805030000000,5.35292300000000,,Anse de la Fausse Monnaie,73139,Observation #73139,https://biolit.fr/observations/observation-73139/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-230040.jpg,,,Identifiable +N1,73131,Sortie #73131,https://biolit.fr/sorties/sortie-73131/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225621.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225813.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-230040.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240407_180221273.jpg,04/06/2024,17.0000000,18.0000000,43.2805030000000,5.35292300000000,,Anse de la Fausse Monnaie,73141,Observation #73141,https://biolit.fr/observations/observation-73141/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240407_180221273.jpg,,,Identifiable +N1,73151,Sortie #73151,https://biolit.fr/sorties/sortie-73151/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-231814-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-232740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-233737.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234746.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235202.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235519.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235745.jpg,04/07/2024,16.0000000,17.0000000,43.2577930000000,5.37579700000000,,Plage de l'Huveaune,73153,Observation #73153,https://biolit.fr/observations/observation-73153/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-231814-scaled.jpg,,,Identifiable +N1,73151,Sortie #73151,https://biolit.fr/sorties/sortie-73151/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-231814-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-232740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-233737.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234746.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235202.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235519.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235745.jpg,04/07/2024,16.0000000,17.0000000,43.2577930000000,5.37579700000000,,Plage de l'Huveaune,73155,Observation #73155,https://biolit.fr/observations/observation-73155/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-232740.jpg,,,Ne sais pas +N1,73151,Sortie #73151,https://biolit.fr/sorties/sortie-73151/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-231814-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-232740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-233737.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234746.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235202.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235519.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235745.jpg,04/07/2024,16.0000000,17.0000000,43.2577930000000,5.37579700000000,,Plage de l'Huveaune,73157,Observation #73157,https://biolit.fr/observations/observation-73157/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-233737.jpg,,,Ne sais pas +N1,73151,Sortie #73151,https://biolit.fr/sorties/sortie-73151/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-231814-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-232740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-233737.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234746.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235202.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235519.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235745.jpg,04/07/2024,16.0000000,17.0000000,43.2577930000000,5.37579700000000,,Plage de l'Huveaune,73159,Observation #73159,https://biolit.fr/observations/observation-73159/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234428.jpg,,,Identifiable +N1,73151,Sortie #73151,https://biolit.fr/sorties/sortie-73151/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-231814-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-232740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-233737.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234746.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235202.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235519.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235745.jpg,04/07/2024,16.0000000,17.0000000,43.2577930000000,5.37579700000000,,Plage de l'Huveaune,73161,Observation #73161,https://biolit.fr/observations/observation-73161/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234746.jpg,,,Ne sais pas +N1,73151,Sortie #73151,https://biolit.fr/sorties/sortie-73151/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-231814-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-232740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-233737.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234746.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235202.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235519.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235745.jpg,04/07/2024,16.0000000,17.0000000,43.2577930000000,5.37579700000000,,Plage de l'Huveaune,73163,Observation #73163,https://biolit.fr/observations/observation-73163/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235202.jpg,,,Ne sais pas +N1,73151,Sortie #73151,https://biolit.fr/sorties/sortie-73151/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-231814-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-232740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-233737.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234746.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235202.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235519.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235745.jpg,04/07/2024,16.0000000,17.0000000,43.2577930000000,5.37579700000000,,Plage de l'Huveaune,73165,Observation #73165,https://biolit.fr/observations/observation-73165/,Tritia grana,Nasse-grain,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235519.jpg,,,Identifiable +N1,73151,Sortie #73151,https://biolit.fr/sorties/sortie-73151/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-231814-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-232740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-233737.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234746.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235202.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235519.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235745.jpg,04/07/2024,16.0000000,17.0000000,43.2577930000000,5.37579700000000,,Plage de l'Huveaune,73167,Observation #73167,https://biolit.fr/observations/observation-73167/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235745.jpg,,,Ne sais pas +N1,73172,Sortie #73172,https://biolit.fr/sorties/sortie-73172/,VIAL Thérèse,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20240406_172157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20240406_172309-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20240406_172322-scaled.jpg,04/06/2024,17.0000000,17.0000000,43.2790190000000,5.35334700000000,,Corniche de Marseille,73174,Observation #73174,https://biolit.fr/observations/observation-73174/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20240406_172309-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20240406_172322-scaled.jpg,,,Identifiable +N1,73172,Sortie #73172,https://biolit.fr/sorties/sortie-73172/,VIAL Thérèse,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20240406_172157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20240406_172309-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20240406_172322-scaled.jpg,04/06/2024,17.0000000,17.0000000,43.2790190000000,5.35334700000000,,Corniche de Marseille,73176,Observation #73176,https://biolit.fr/observations/observation-73176/,Malva arborea,Lavatère arborescente,,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20240406_172157-scaled.jpg,,,Ne sais pas +N1,73205,Sortie #73205,https://biolit.fr/sorties/sortie-73205/,Club subaquatique Narbonnais,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/04/velelle1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/04/velelleplage.jpg,04/08/2024,15.0000000,15.0:15,43.16802000000,3.1798230000000,Club Subaquatique Narbonnais CSN/FSGT,Plage de Narbonne-plage,73207,Observation #73207,https://biolit.fr/observations/observation-73207/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/04/velelle1.jpg,,TRUE,Identifiable +N1,73205,Sortie #73205,https://biolit.fr/sorties/sortie-73205/,Club subaquatique Narbonnais,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/04/velelle1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/04/velelleplage.jpg,04/08/2024,15.0000000,15.0:15,43.16802000000,3.1798230000000,Club Subaquatique Narbonnais CSN/FSGT,Plage de Narbonne-plage,73209,Observation #73209,https://biolit.fr/observations/observation-73209/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/04/velelleplage.jpg,,TRUE,Identifiable +N1,73293,Sortie #73293,https://biolit.fr/sorties/sortie-73293/,VIAL Thérèse,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20210514_133124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20210514_133213-scaled.jpg,5/14/2023 0:00,13.0000000,14.0000000,43.3490980000000,4.87295900000000,,Plage Napoléon,73295,Observation #73295,https://biolit.fr/observations/observation-73295/,Salicornia spp.,Salicorne,,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20210514_133124-scaled.jpg,,,Ne sais pas +N1,73293,Sortie #73293,https://biolit.fr/sorties/sortie-73293/,VIAL Thérèse,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20210514_133124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20210514_133213-scaled.jpg,5/14/2023 0:00,13.0000000,14.0000000,43.3490980000000,4.87295900000000,,Plage Napoléon,73297,Observation #73297,https://biolit.fr/observations/observation-73297/,Halimione portulacoides,Obione faux-pourpier,,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20210514_133213-scaled.jpg,,,Ne sais pas +N1,73301,Sortie #73301,https://biolit.fr/sorties/sortie-73301/,VIAL Thérèse,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230410_140448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230410_140949-scaled.jpg,04/10/2023,14.0000000,14.0000000,43.2795490000000,5.32528500000000,,Ile d'If,73303,Observation #73303,https://biolit.fr/observations/observation-73303/,Pallenis maritima,Astérolide maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230410_140448-scaled.jpg,,,Identifiable +N1,73301,Sortie #73301,https://biolit.fr/sorties/sortie-73301/,VIAL Thérèse,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230410_140448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230410_140949-scaled.jpg,04/10/2023,14.0000000,14.0000000,43.2795490000000,5.32528500000000,,Ile d'If,73305,Observation #73305,https://biolit.fr/observations/observation-73305/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230410_140949-scaled.jpg,,,Ne sais pas +N1,73309,Sortie #73309,https://biolit.fr/sorties/sortie-73309/,VIAL Thérèse,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230528_103228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230528_111324-scaled.jpg,5/24/2023 0:00,10.0000000,11.0000000,43.0338110000000,6.16941500000000,,Cap de l'Esterel,73311,Observation #73311,https://biolit.fr/observations/observation-73311/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230528_103228-scaled.jpg,,,Ne sais pas +N1,73309,Sortie #73309,https://biolit.fr/sorties/sortie-73309/,VIAL Thérèse,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230528_103228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230528_111324-scaled.jpg,5/24/2023 0:00,10.0000000,11.0000000,43.0338110000000,6.16941500000000,,Cap de l'Esterel,73313,Observation #73313,https://biolit.fr/observations/observation-73313/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230528_111324-scaled.jpg,,,Ne sais pas +N1,73318,Sortie #73318,https://biolit.fr/sorties/sortie-73318/,VIAL Thérèse,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230805_191148-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230805_191226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230805_191337-scaled.jpg,08/05/2023,19.0000000,19.0000000,45.8120200000000,-1.2199530000000,,Plage de Gatseau,73320,Observation #73320,https://biolit.fr/observations/observation-73320/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230805_191148-scaled.jpg,,,Ne sais pas +N1,73318,Sortie #73318,https://biolit.fr/sorties/sortie-73318/,VIAL Thérèse,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230805_191148-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230805_191226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230805_191337-scaled.jpg,08/05/2023,19.0000000,19.0000000,45.8120200000000,-1.2199530000000,,Plage de Gatseau,73322,Observation #73322,https://biolit.fr/observations/observation-73322/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230805_191226-scaled.jpg,,,Ne sais pas +N1,73318,Sortie #73318,https://biolit.fr/sorties/sortie-73318/,VIAL Thérèse,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230805_191148-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230805_191226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230805_191337-scaled.jpg,08/05/2023,19.0000000,19.0000000,45.8120200000000,-1.2199530000000,,Plage de Gatseau,73324,Observation #73324,https://biolit.fr/observations/observation-73324/,Pancratium maritimum,Lis de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230805_191337-scaled.jpg,,,Ne sais pas +N1,73342,Sortie #73342,https://biolit.fr/sorties/sortie-73342/,Velghe Louna,https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/1-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/2-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/3-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/4-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/5-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/6-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/7-1.png,04/02/2024,10.0000000,11.0000000,50.6944720,1.5927950,,"Le portel ,plage de Ningles",73344,Observation #73344,https://biolit.fr/observations/observation-73344/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/2-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/3-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/5-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/6-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/7-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/4-1.png,,,Ne sais pas +N1,73342,Sortie #73342,https://biolit.fr/sorties/sortie-73342/,Velghe Louna,https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/1-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/2-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/3-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/4-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/5-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/6-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/7-1.png,04/02/2024,10.0000000,11.0000000,50.6944720,1.5927950,,"Le portel ,plage de Ningles",73346,Observation #73346,https://biolit.fr/observations/observation-73346/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/2-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/3-1.png,,,Ne sais pas +N1,73354,Sortie #73354,https://biolit.fr/sorties/sortie-73354/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-14-232602.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-14-232753.jpg,4/13/2024 0:00,17.0000000,17.0000000,43.2642050000000,5.36965500000000,,Plage du Grand Roucas Blanc - Prado Nord,73356,Observation #73356,https://biolit.fr/observations/observation-73356/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-14-232602.jpg,,,Identifiable +N1,73354,Sortie #73354,https://biolit.fr/sorties/sortie-73354/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-14-232602.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-14-232753.jpg,4/13/2024 0:00,17.0000000,17.0000000,43.2642050000000,5.36965500000000,,Plage du Grand Roucas Blanc - Prado Nord,73358,Observation #73358,https://biolit.fr/observations/observation-73358/,Scytosiphon lomentaria,Scytosiphon en forme de gousse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-14-232753.jpg,,,Ne sais pas +N1,73392,Sortie #73392,https://biolit.fr/sorties/sortie-73392/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_143638-scaled.jpg,04/12/2024,13.0000000,14.0000000,46.1886930000000,-1.32444700000000,,estran de la flotte,73394,Observation #73394,https://biolit.fr/observations/observation-73394/,Ensis magnus,Couteau arqué,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_143638-scaled.jpg,,TRUE,Identifiable +N1,73399,Sortie #73399,https://biolit.fr/sorties/sortie-73399/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_144213-scaled.jpg,04/12/2024,13.0000000,14.0000000,46.1890540000000,-1.32526900000000,,estran de la flotte,73401,Observation #73401,https://biolit.fr/observations/observation-73401/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_144213-scaled.jpg,,TRUE,Identifiable +N1,73408,Sortie #73408,https://biolit.fr/sorties/sortie-73408/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_143728-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_143724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135502-scaled.jpg,04/12/2024,13.0000000,14.0000000,46.1889150000000,-1.32496800000000,,estran de la flotte,73410,Observation #73410,https://biolit.fr/observations/observation-73410/,Ocenebra erinaceus,Ponte de Bigorneau perceur,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_143728-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_143724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135502-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140318-scaled.jpg,,TRUE,Identifiable +N1,73419,Sortie #73419,https://biolit.fr/sorties/sortie-73419/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_143137-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_141049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140429-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140425-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135044-scaled.jpg,04/12/2024,13.0000000,14.0000000,46.188770000000,-1.32459300000000,,estran de la flotte,73421,Observation #73421,https://biolit.fr/observations/observation-73421/,Conger conger,Congre,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140429-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140425-scaled.jpg,,TRUE,Identifiable +N1,73419,Sortie #73419,https://biolit.fr/sorties/sortie-73419/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_143137-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_141049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140429-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140425-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135044-scaled.jpg,04/12/2024,13.0000000,14.0000000,46.188770000000,-1.32459300000000,,estran de la flotte,73423,Observation #73423,https://biolit.fr/observations/observation-73423/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140909-scaled.jpg,,TRUE,Identifiable +N1,73419,Sortie #73419,https://biolit.fr/sorties/sortie-73419/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_143137-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_141049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140429-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140425-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135044-scaled.jpg,04/12/2024,13.0000000,14.0000000,46.188770000000,-1.32459300000000,,estran de la flotte,73425,Observation #73425,https://biolit.fr/observations/observation-73425/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_141049-scaled.jpg,,TRUE,Identifiable +N1,73419,Sortie #73419,https://biolit.fr/sorties/sortie-73419/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_143137-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_141049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140429-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140425-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135044-scaled.jpg,04/12/2024,13.0000000,14.0000000,46.188770000000,-1.32459300000000,,estran de la flotte,73427,Observation #73427,https://biolit.fr/observations/observation-73427/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135146-scaled.jpg,,TRUE,Identifiable +N1,73419,Sortie #73419,https://biolit.fr/sorties/sortie-73419/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_143137-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_141049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140429-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140425-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135044-scaled.jpg,04/12/2024,13.0000000,14.0000000,46.188770000000,-1.32459300000000,,estran de la flotte,73429,Observation #73429,https://biolit.fr/observations/observation-73429/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_143137-scaled.jpg,,,Ne sais pas +N1,73419,Sortie #73419,https://biolit.fr/sorties/sortie-73419/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_143137-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_141049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140429-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140425-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135044-scaled.jpg,04/12/2024,13.0000000,14.0000000,46.188770000000,-1.32459300000000,,estran de la flotte,73431,Observation #73431,https://biolit.fr/observations/observation-73431/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135044-scaled.jpg,,,Ne sais pas +N1,73439,Sortie #73439,https://biolit.fr/sorties/sortie-73439/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_182052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_183054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_172523-scaled.jpg,04/12/2024,17.0000000,17.0000000,46.1444990000000,-1.31550000000000,,plage de la basse benaie,73445,Observation #73445,https://biolit.fr/observations/observation-73445/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173430-scaled.jpg,,,Ne sais pas +N1,73439,Sortie #73439,https://biolit.fr/sorties/sortie-73439/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_182052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_183054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_172523-scaled.jpg,04/12/2024,17.0000000,17.0000000,46.1444990000000,-1.31550000000000,,plage de la basse benaie,73447,Observation #73447,https://biolit.fr/observations/observation-73447/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_183054-scaled.jpg,,TRUE,Ne sais pas +N1,73510,Sortie #73510,https://biolit.fr/sorties/sortie-73510/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240415_131225-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240415_131234-scaled.jpg,4/15/2024 0:00,10.0000000,11.0000000,43.273424,5.361923,,Plage du Prophète,73517,Observation #73517,https://biolit.fr/observations/observation-73517/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240415_131225-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240415_131234-scaled.jpg,,TRUE,Identifiable +N1,73566,Sortie #73566,https://biolit.fr/sorties/sortie-73566/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114549-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114607-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114616-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114611-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114559-scaled.jpg,04/02/2024,10.0:45,11.0000000,43.272843,5.362154,,Plage du prophète,73568,Observation #73568,https://biolit.fr/observations/observation-73568/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114549-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114607-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114616-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114611-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114559-scaled.jpg,,TRUE,Identifiable +N1,73580,Sortie #73580,https://biolit.fr/sorties/sortie-73580/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114549-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114554-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114607-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114616-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114629-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114621-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114625-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114603-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114559-1-scaled.jpg,04/02/2024,10.0:45,11.0000000,43.272843,5.362154,,Plage du Prophète,73582,Observation #73582,https://biolit.fr/observations/observation-73582/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114554-1-scaled.jpg,,TRUE,Identifiable +N1,73580,Sortie #73580,https://biolit.fr/sorties/sortie-73580/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114549-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114554-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114607-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114616-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114629-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114621-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114625-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114603-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114559-1-scaled.jpg,04/02/2024,10.0:45,11.0000000,43.272843,5.362154,,Plage du Prophète,73584,Observation #73584,https://biolit.fr/observations/observation-73584/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114607-1-scaled.jpg,,TRUE,Identifiable +N1,73580,Sortie #73580,https://biolit.fr/sorties/sortie-73580/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114549-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114554-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114607-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114616-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114629-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114621-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114625-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114603-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114559-1-scaled.jpg,04/02/2024,10.0:45,11.0000000,43.272843,5.362154,,Plage du Prophète,73586,Observation #73586,https://biolit.fr/observations/observation-73586/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114616-1-scaled.jpg,,TRUE,Identifiable +N1,73580,Sortie #73580,https://biolit.fr/sorties/sortie-73580/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114549-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114554-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114607-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114616-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114629-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114621-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114625-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114603-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114559-1-scaled.jpg,04/02/2024,10.0:45,11.0000000,43.272843,5.362154,,Plage du Prophète,73588,Observation #73588,https://biolit.fr/observations/observation-73588/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114611-1-scaled.jpg,,TRUE,Identifiable +N1,73580,Sortie #73580,https://biolit.fr/sorties/sortie-73580/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114549-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114554-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114607-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114616-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114629-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114621-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114625-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114603-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114559-1-scaled.jpg,04/02/2024,10.0:45,11.0000000,43.272843,5.362154,,Plage du Prophète,73590,Observation #73590,https://biolit.fr/observations/observation-73590/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114629-1-scaled.jpg,,TRUE,Identifiable +N1,73580,Sortie #73580,https://biolit.fr/sorties/sortie-73580/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114549-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114554-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114607-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114616-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114629-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114621-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114625-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114603-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114559-1-scaled.jpg,04/02/2024,10.0:45,11.0000000,43.272843,5.362154,,Plage du Prophète,73592,Observation #73592,https://biolit.fr/observations/observation-73592/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114621-1-scaled.jpg,,TRUE,Identifiable +N1,73580,Sortie #73580,https://biolit.fr/sorties/sortie-73580/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114549-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114554-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114607-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114616-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114629-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114621-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114625-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114603-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114559-1-scaled.jpg,04/02/2024,10.0:45,11.0000000,43.272843,5.362154,,Plage du Prophète,73594,Observation #73594,https://biolit.fr/observations/observation-73594/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114625-1-scaled.jpg,,TRUE,Identifiable +N1,73580,Sortie #73580,https://biolit.fr/sorties/sortie-73580/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114549-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114554-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114607-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114616-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114629-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114621-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114625-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114603-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114559-1-scaled.jpg,04/02/2024,10.0:45,11.0000000,43.272843,5.362154,,Plage du Prophète,73596,Observation #73596,https://biolit.fr/observations/observation-73596/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114603-1-scaled.jpg,,TRUE,Identifiable +N1,73580,Sortie #73580,https://biolit.fr/sorties/sortie-73580/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114549-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114554-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114607-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114616-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114629-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114621-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114625-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114603-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114559-1-scaled.jpg,04/02/2024,10.0:45,11.0000000,43.272843,5.362154,,Plage du Prophète,73598,Observation #73598,https://biolit.fr/observations/observation-73598/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114559-1-scaled.jpg,,TRUE,Identifiable +N1,73610,Sortie #73610,https://biolit.fr/sorties/sortie-73610/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_6578-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/D3F9F3D7-6212-4D80-AABA-A6309CC5B439-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_6576-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1124-scaled.jpeg,04/11/2024,16.0:18,16.0:33,49.51,-1.86,,Le Havre Jouan Anse de Sciotot,,,,,,,,,, +N1,73615,Sortie #73615,https://biolit.fr/sorties/sortie-73615/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_5989-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_5988-scaled.jpeg,04/11/2024,16.0000000,16.0000000,49.5122270000000,-1.86021900000000,,Le Havre Jouan Anse de Sciotot,,,,,,,,,, +N1,73627,Sortie #73627,https://biolit.fr/sorties/sortie-73627/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4343-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4344-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4345-scaled.jpeg,04/11/2024,16.0000000,16.0000000,49.5124910000000,-1.86168500000000,,"Le Havre Jouan, L’Anse de Sciotot",,,,,,,,,, +N1,73631,Sortie #73631,https://biolit.fr/sorties/sortie-73631/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4343-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4345-1-scaled.jpeg,04/11/2024,16.0000000,16.0000000,49.5124770000000,-1.86167700000000,,"Le Havre Jouan, L’Anse de Sciotot",73642,Observation #73642,https://biolit.fr/observations/observation-73642/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4345-1-scaled.jpeg,,TRUE,Identifiable +N1,73631,Sortie #73631,https://biolit.fr/sorties/sortie-73631/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4343-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4345-1-scaled.jpeg,04/11/2024,16.0000000,16.0000000,49.5124770000000,-1.86167700000000,,"Le Havre Jouan, L’Anse de Sciotot",73649,Observation #73649,https://biolit.fr/observations/observation-73649/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4343-1-scaled.jpeg,,,Identifiable +N1,73631,Sortie #73631,https://biolit.fr/sorties/sortie-73631/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4343-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4345-1-scaled.jpeg,04/11/2024,16.0000000,16.0000000,49.5124770000000,-1.86167700000000,,"Le Havre Jouan, L’Anse de Sciotot",73651,Observation #73651,https://biolit.fr/observations/observation-73651/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4343-1-scaled.jpeg,,,Identifiable +N1,73631,Sortie #73631,https://biolit.fr/sorties/sortie-73631/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4343-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4345-1-scaled.jpeg,04/11/2024,16.0000000,16.0000000,49.5124770000000,-1.86167700000000,,"Le Havre Jouan, L’Anse de Sciotot",73657,Observation #73657,https://biolit.fr/observations/observation-73657/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4343-1-scaled.jpeg,,,Identifiable +N1,73631,Sortie #73631,https://biolit.fr/sorties/sortie-73631/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4343-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4345-1-scaled.jpeg,04/11/2024,16.0000000,16.0000000,49.5124770000000,-1.86167700000000,,"Le Havre Jouan, L’Anse de Sciotot",73661,Observation #73661,https://biolit.fr/observations/observation-73661/,Amphibalanus eburneus,Balane ivoire,,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4343-1-scaled.jpeg,,,Identifiable +N1,73631,Sortie #73631,https://biolit.fr/sorties/sortie-73631/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4343-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4345-1-scaled.jpeg,04/11/2024,16.0000000,16.0000000,49.5124770000000,-1.86167700000000,,"Le Havre Jouan, L’Anse de Sciotot",73669,Observation #73669,https://biolit.fr/observations/observation-73669/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4343-1-scaled.jpeg,,TRUE,Identifiable +N1,73640,Sortie #73640,https://biolit.fr/sorties/sortie-73640/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1140-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1139-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_6578-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/D3F9F3D7-6212-4D80-AABA-A6309CC5B439-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_6576-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1854-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1124-2-scaled.jpeg,04/11/2024,16.0:18,16.0:34,49.5129720000000,-1.86141000000000,,Le Havre Jouan Anse de Sciotot,73644,Observation #73644,https://biolit.fr/observations/observation-73644/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1140-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1139-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_6578-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/D3F9F3D7-6212-4D80-AABA-A6309CC5B439-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_6576-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1854-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1124-2-scaled.jpeg,,,Ne sais pas +N1,73647,Sortie #73647,https://biolit.fr/sorties/sortie-73647/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1160.jpeg,04/11/2024,16.0000000,16.0000000,49.5122730000000,-1.86059500000000,,Havre Jouan,73652,Observation #73652,https://biolit.fr/observations/observation-73652/,Littorina compressa,Littorine à lignes noires,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1160.jpeg,,,Identifiable +N1,73647,Sortie #73647,https://biolit.fr/sorties/sortie-73647/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1160.jpeg,04/11/2024,16.0000000,16.0000000,49.5122730000000,-1.86059500000000,,Havre Jouan,73655,Observation #73655,https://biolit.fr/observations/observation-73655/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1160.jpeg,,,Identifiable +N1,73647,Sortie #73647,https://biolit.fr/sorties/sortie-73647/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1160.jpeg,04/11/2024,16.0000000,16.0000000,49.5122730000000,-1.86059500000000,,Havre Jouan,73659,Observation #73659,https://biolit.fr/observations/observation-73659/,Agarum clathratum,Laminaire criblée,,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1160.jpeg,,,Identifiable +N1,73647,Sortie #73647,https://biolit.fr/sorties/sortie-73647/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1160.jpeg,04/11/2024,16.0000000,16.0000000,49.5122730000000,-1.86059500000000,,Havre Jouan,73671,Observation #73671,https://biolit.fr/observations/observation-73671/,Euraphia depressa,Balane rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1160.jpeg,,,Identifiable +N1,73679,Sortie #73679,https://biolit.fr/sorties/sortie-73679/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2287-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2286-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2285-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2283-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2260-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2259-1-scaled.jpeg,04/11/2024,16.000001,16.0:21,49.5127910000000,-1.8603770000000,,Le Havre Jouan Anse de Sciotot,73690,Observation #73690,https://biolit.fr/observations/observation-73690/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2283-1-scaled.jpeg,,,Identifiable +N1,73679,Sortie #73679,https://biolit.fr/sorties/sortie-73679/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2287-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2286-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2285-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2283-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2260-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2259-1-scaled.jpeg,04/11/2024,16.000001,16.0:21,49.5127910000000,-1.8603770000000,,Le Havre Jouan Anse de Sciotot,73692,Observation #73692,https://biolit.fr/observations/observation-73692/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2260-1-scaled.jpeg,,,Identifiable +N1,73679,Sortie #73679,https://biolit.fr/sorties/sortie-73679/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2287-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2286-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2285-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2283-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2260-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2259-1-scaled.jpeg,04/11/2024,16.000001,16.0:21,49.5127910000000,-1.8603770000000,,Le Havre Jouan Anse de Sciotot,73695,Observation #73695,https://biolit.fr/observations/observation-73695/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2259-1-scaled.jpeg,,,Identifiable +N1,73679,Sortie #73679,https://biolit.fr/sorties/sortie-73679/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2287-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2286-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2285-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2283-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2260-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2259-1-scaled.jpeg,04/11/2024,16.000001,16.0:21,49.5127910000000,-1.8603770000000,,Le Havre Jouan Anse de Sciotot,73698,Observation #73698,https://biolit.fr/observations/observation-73698/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2285-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2286-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2287-1-scaled.jpeg,,,Ne sais pas +N1,73683,Sortie #73683,https://biolit.fr/sorties/sortie-73683/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4366-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4367-scaled.jpeg,04/11/2024,16.0000000,16.0000000,49.5124670000000,-1.86168900000000,,"Le Havre Jouan, Anse de Sciotot",,,,,,,,,, +N1,73688,Sortie #73688,https://biolit.fr/sorties/sortie-73688/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2022.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_0530-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_0529-scaled.jpeg,04/11/2024,16.0:15,16.0:25,49.5015910000000,-1.84467300000000,,"Le Havre Jouan, Anse de Sciotot",73694,Observation #73694,https://biolit.fr/observations/observation-73694/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2022.jpeg,,,Identifiable +N1,73688,Sortie #73688,https://biolit.fr/sorties/sortie-73688/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2022.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_0530-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_0529-scaled.jpeg,04/11/2024,16.0:15,16.0:25,49.5015910000000,-1.84467300000000,,"Le Havre Jouan, Anse de Sciotot",73700,Observation #73700,https://biolit.fr/observations/observation-73700/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2022.jpeg,,,Identifiable +N1,73688,Sortie #73688,https://biolit.fr/sorties/sortie-73688/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2022.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_0530-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_0529-scaled.jpeg,04/11/2024,16.0:15,16.0:25,49.5015910000000,-1.84467300000000,,"Le Havre Jouan, Anse de Sciotot",73702,Observation #73702,https://biolit.fr/observations/observation-73702/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2022.jpeg,,TRUE,Identifiable +N1,73688,Sortie #73688,https://biolit.fr/sorties/sortie-73688/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2022.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_0530-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_0529-scaled.jpeg,04/11/2024,16.0:15,16.0:25,49.5015910000000,-1.84467300000000,,"Le Havre Jouan, Anse de Sciotot",73704,Observation #73704,https://biolit.fr/observations/observation-73704/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2022.jpeg,,,Identifiable +N1,73708,Sortie #73708,https://biolit.fr/sorties/sortie-73708/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-16-230926.jpg,03/11/2023,12.0000000,13.0000000,43.3481040000000,4.87531900000000,,Plage Napoléon,73710,Observation #73710,https://biolit.fr/observations/observation-73710/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-16-230926.jpg,,,Ne sais pas +N1,73714,Sortie #73714,https://biolit.fr/sorties/sortie-73714/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-16-230715.jpg,3/30/2024 0:00,15.0000000,17.0000000,43.2594710000000,5.37495500000000,,Plage de l'Huveaune,73716,Observation #73716,https://biolit.fr/observations/observation-73716/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041_.jpg,,,Ne sais pas +N1,73714,Sortie #73714,https://biolit.fr/sorties/sortie-73714/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-16-230715.jpg,3/30/2024 0:00,15.0000000,17.0000000,43.2594710000000,5.37495500000000,,Plage de l'Huveaune,73718,Observation #73718,https://biolit.fr/observations/observation-73718/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-16-230715.jpg,,,Ne sais pas +N1,73807,Sortie #73807,https://biolit.fr/sorties/sortie-73807/,BONNEFOY Isabelle,https://biolit.fr/wp-content/uploads/jet-form-builder/386a13d7d813bf1b4fb68a262102a436/2024/04/20240328_0936371-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/386a13d7d813bf1b4fb68a262102a436/2024/04/20240328_0938231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/386a13d7d813bf1b4fb68a262102a436/2024/04/20240328_0938231.png,3/28/2024 0:00,9.0000000,19.0000000,41.3886190000000,9.16533900000000,,Fond du port de Bonifacio,73809,Observation #73809,https://biolit.fr/observations/observation-73809/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/386a13d7d813bf1b4fb68a262102a436/2024/04/20240328_0938231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/386a13d7d813bf1b4fb68a262102a436/2024/04/20240328_0936371-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/386a13d7d813bf1b4fb68a262102a436/2024/04/20240328_0938231.png,,TRUE,Identifiable +N1,73866,Sortie #73866,https://biolit.fr/sorties/sortie-73866/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173627-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_182046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_182052-1-scaled.jpg,04/12/2024,17.0000000,17.0:15,46.144472000000,-1.31547300000000,,plage basse benaie,73868,Observation #73868,https://biolit.fr/observations/observation-73868/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_182046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_182052-1-scaled.jpg,,,Ne sais pas +N1,73866,Sortie #73866,https://biolit.fr/sorties/sortie-73866/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173627-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_182046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_182052-1-scaled.jpg,04/12/2024,17.0000000,17.0:15,46.144472000000,-1.31547300000000,,plage basse benaie,73870,Observation #73870,https://biolit.fr/observations/observation-73870/,Eunicella singularis,Gorgone blanche,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173627-1-scaled.jpg,,,Identifiable +N1,73866,Sortie #73866,https://biolit.fr/sorties/sortie-73866/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173627-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_182046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_182052-1-scaled.jpg,04/12/2024,17.0000000,17.0:15,46.144472000000,-1.31547300000000,,plage basse benaie,73872,Observation #73872,https://biolit.fr/observations/observation-73872/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173638-scaled.jpg,,,Ne sais pas +N1,73888,Sortie #73888,https://biolit.fr/sorties/sortie-73888/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_182052-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173638-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173627-2-scaled.jpg,04/12/2024,17.0000000,17.0000000,46.1442310000000,-1.31501200000000,,plage de basse bennaie,73890,Observation #73890,https://biolit.fr/observations/observation-73890/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_182052-2-scaled.jpg,,,Ne sais pas +N1,73888,Sortie #73888,https://biolit.fr/sorties/sortie-73888/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_182052-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173638-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173627-2-scaled.jpg,04/12/2024,17.0000000,17.0000000,46.1442310000000,-1.31501200000000,,plage de basse bennaie,73892,Observation #73892,https://biolit.fr/observations/observation-73892/,Eunicella singularis,Gorgone blanche,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173627-2-scaled.jpg,,,Identifiable +N1,73888,Sortie #73888,https://biolit.fr/sorties/sortie-73888/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_182052-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173638-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173627-2-scaled.jpg,04/12/2024,17.0000000,17.0000000,46.1442310000000,-1.31501200000000,,plage de basse bennaie,73894,Observation #73894,https://biolit.fr/observations/observation-73894/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173638-1-scaled.jpg,,TRUE,Ne sais pas +N1,73903,Sortie #73903,https://biolit.fr/sorties/sortie-73903/,AIEJE,https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/04/Nouveau-Logo-ecritures.png,4/22/2024 0:00,13.0000000,14.0000000,43.4077700,5.3116930,AIEJE,les anthenors,,,,,,,,,, +N1,73909,Sortie #73909,https://biolit.fr/sorties/sortie-73909/,AIEJE,https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/04/IMG_5531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/04/IMG_5534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/04/IMG_5535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/04/IMG_5537-scaled.jpg,4/22/2024 0:00,13.0000000,14.0000000,43.4077700,5.3116930,,les anthenors,73911,Observation #73911,https://biolit.fr/observations/observation-73911/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/04/IMG_5531-scaled.jpg,,TRUE,Identifiable +N1,73909,Sortie #73909,https://biolit.fr/sorties/sortie-73909/,AIEJE,https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/04/IMG_5531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/04/IMG_5534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/04/IMG_5535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/04/IMG_5537-scaled.jpg,4/22/2024 0:00,13.0000000,14.0000000,43.4077700,5.3116930,,les anthenors,73913,Observation #73913,https://biolit.fr/observations/observation-73913/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/04/IMG_5534-scaled.jpg,,TRUE,Identifiable +N1,73909,Sortie #73909,https://biolit.fr/sorties/sortie-73909/,AIEJE,https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/04/IMG_5531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/04/IMG_5534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/04/IMG_5535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/04/IMG_5537-scaled.jpg,4/22/2024 0:00,13.0000000,14.0000000,43.4077700,5.3116930,,les anthenors,73915,Observation #73915,https://biolit.fr/observations/observation-73915/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/04/IMG_5537-scaled.jpg,,TRUE,Identifiable +N1,73918,Sortie #73918,https://biolit.fr/sorties/sortie-73918/,Allory Pierre-Yves,FALSE,04/01/2024,10.0:11,9.0:11,49.2197090000000,-2.1368410000000,CDMM (Centre de Découverte Mer et Montagne),Fhhhf,,,,,,,,,, +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73958,Observation #73958,https://biolit.fr/observations/observation-73958/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg,,TRUE,Identifiable +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73960,Observation #73960,https://biolit.fr/observations/observation-73960/,Spondylus gaederopus,Spondyle pied-d'âne,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg,,TRUE,Identifiable +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73962,Observation #73962,https://biolit.fr/observations/observation-73962/,Maja crispata,Petite araignée de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg,,,Identifiable +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73964,Observation #73964,https://biolit.fr/observations/observation-73964/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg,,,Ne sais pas +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73966,Observation #73966,https://biolit.fr/observations/observation-73966/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg,,,Identifiable +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73968,Observation #73968,https://biolit.fr/observations/observation-73968/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg,,,Identifiable +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73970,Observation #73970,https://biolit.fr/observations/observation-73970/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg,,,Ne sais pas +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73972,Observation #73972,https://biolit.fr/observations/observation-73972/,Tritia corniculum,Tritia corniculum,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg,,,Identifiable +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73974,Observation #73974,https://biolit.fr/observations/observation-73974/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg,,,Ne sais pas +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73976,Observation #73976,https://biolit.fr/observations/observation-73976/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg,,,Identifiable +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73978,Observation #73978,https://biolit.fr/observations/observation-73978/,Diodora graeca,Fissurelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg,,,Identifiable +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73980,Observation #73980,https://biolit.fr/observations/observation-73980/,Loripes orbiculatus,Loripes orbiculaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg,,,Identifiable +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73982,Observation #73982,https://biolit.fr/observations/observation-73982/,Polititapes aureus,Palourde jaune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg,,,Identifiable +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73984,Observation #73984,https://biolit.fr/observations/observation-73984/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg,,,Identifiable +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73986,Observation #73986,https://biolit.fr/observations/observation-73986/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg,,TRUE,Identifiable +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73988,Observation #73988,https://biolit.fr/observations/observation-73988/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg,,,Identifiable +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73990,Observation #73990,https://biolit.fr/observations/observation-73990/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg,,TRUE,Identifiable +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73992,Observation #73992,https://biolit.fr/observations/observation-73992/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg,,TRUE,Identifiable +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73994,Observation #73994,https://biolit.fr/observations/observation-73994/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,,TRUE,Identifiable +N1,74129,Sortie #74129,https://biolit.fr/sorties/sortie-74129/,Granger Angélique,https://biolit.fr/wp-content/uploads/jet-form-builder/8e86d13fc378bd139f5f8e3577ea00f1/2024/04/20240428_112034-scaled.jpg,4/28/2024 0:00,11.0000000,11.0:55,49.110127000000,-1.60648600000000,,Plage de Gouville sur Mer,74131,Observation #74131,https://biolit.fr/observations/observation-74131/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8e86d13fc378bd139f5f8e3577ea00f1/2024/04/20240428_112034-scaled.jpg,,TRUE,Identifiable +N1,74145,Sortie #74145,https://biolit.fr/sorties/sortie-74145/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155148072_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155910220_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155942562-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_160742884.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161755935-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161815007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161824556.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162101470_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162247374_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162258316_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_211039593.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_211046406.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2397800000000,5.36241500000000,,Plage de l’Anse du Bain des Dames,74147,Observation #74147,https://biolit.fr/observations/observation-74147/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155910220_HDR-scaled.jpg,,TRUE,Identifiable +N1,74145,Sortie #74145,https://biolit.fr/sorties/sortie-74145/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155148072_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155910220_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155942562-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_160742884.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161755935-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161815007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161824556.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162101470_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162247374_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162258316_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_211039593.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_211046406.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2397800000000,5.36241500000000,,Plage de l’Anse du Bain des Dames,74149,Observation #74149,https://biolit.fr/observations/observation-74149/,Euthria cornea,Buccin veiné,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155148072_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155942562-rotated.jpg,,,Identifiable +N1,74145,Sortie #74145,https://biolit.fr/sorties/sortie-74145/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155148072_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155910220_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155942562-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_160742884.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161755935-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161815007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161824556.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162101470_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162247374_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162258316_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_211039593.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_211046406.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2397800000000,5.36241500000000,,Plage de l’Anse du Bain des Dames,74151,Observation #74151,https://biolit.fr/observations/observation-74151/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_160742884.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161755935-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161815007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161824556.jpg,,,Identifiable +N1,74145,Sortie #74145,https://biolit.fr/sorties/sortie-74145/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155148072_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155910220_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155942562-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_160742884.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161755935-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161815007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161824556.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162101470_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162247374_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162258316_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_211039593.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_211046406.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2397800000000,5.36241500000000,,Plage de l’Anse du Bain des Dames,74153,Observation #74153,https://biolit.fr/observations/observation-74153/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162101470_HDR-scaled.jpg,,,Ne sais pas +N1,74145,Sortie #74145,https://biolit.fr/sorties/sortie-74145/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155148072_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155910220_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155942562-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_160742884.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161755935-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161815007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161824556.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162101470_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162247374_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162258316_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_211039593.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_211046406.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2397800000000,5.36241500000000,,Plage de l’Anse du Bain des Dames,74155,Observation #74155,https://biolit.fr/observations/observation-74155/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162247374_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162258316_HDR.jpg,,,Identifiable +N1,74145,Sortie #74145,https://biolit.fr/sorties/sortie-74145/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155148072_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155910220_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155942562-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_160742884.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161755935-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161815007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161824556.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162101470_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162247374_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162258316_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_211039593.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_211046406.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2397800000000,5.36241500000000,,Plage de l’Anse du Bain des Dames,74157,Observation #74157,https://biolit.fr/observations/observation-74157/,Bulla striata,Bulle striée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_211039593.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_211046406.jpg,,,Identifiable +N1,74162,Sortie #74162,https://biolit.fr/sorties/sortie-74162/,picault patrick,https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/04/1000010171-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/04/1000010170-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/04/1000010169-scaled.jpg,4/28/2024 0:00,6.0000000,6.0000000,43.6638850,3.9221240,,La Grande Motte,,,,,,,,,, +N1,74296,Sortie #74296,https://biolit.fr/sorties/sortie-74296/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240501_181310009-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240501_180927201.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240501_180841443-scaled.jpg,05/01/2024,18.0:25,18.0000000,43.0329260000000,6.16900500000000,,Giens,74298,Observation #74298,https://biolit.fr/observations/observation-74298/,Phyllophora crispa,Algue rouge à frisottis,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240501_181310009-rotated.jpg,,,Ne sais pas +N1,74296,Sortie #74296,https://biolit.fr/sorties/sortie-74296/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240501_181310009-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240501_180927201.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240501_180841443-scaled.jpg,05/01/2024,18.0:25,18.0000000,43.0329260000000,6.16900500000000,,Giens,74300,Observation #74300,https://biolit.fr/observations/observation-74300/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240501_180927201.jpg,,TRUE,Identifiable +N1,74296,Sortie #74296,https://biolit.fr/sorties/sortie-74296/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240501_181310009-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240501_180927201.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240501_180841443-scaled.jpg,05/01/2024,18.0:25,18.0000000,43.0329260000000,6.16900500000000,,Giens,74302,Observation #74302,https://biolit.fr/observations/observation-74302/,Carpobrotus acinaciformis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240501_180841443-scaled.jpg,,TRUE,Identifiable +N1,74324,Sortie #74324,https://biolit.fr/sorties/sortie-74324/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165033431_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165022555_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163652979-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163632829_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163500161_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163451397-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163414884-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163400435-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163327202-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163253462-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162556878-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162516762-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162504674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162320229-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162303654-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162248950-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162213771-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162205826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162127749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162035386-rotated.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2595030000000,5.37497400000000,,Plage de l'Huveaune,74326,Observation #74326,https://biolit.fr/observations/observation-74326/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165033431_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165022555_HDR-rotated.jpg,,,Identifiable +N1,74324,Sortie #74324,https://biolit.fr/sorties/sortie-74324/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165033431_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165022555_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163652979-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163632829_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163500161_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163451397-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163414884-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163400435-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163327202-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163253462-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162556878-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162516762-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162504674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162320229-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162303654-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162248950-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162213771-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162205826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162127749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162035386-rotated.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2595030000000,5.37497400000000,,Plage de l'Huveaune,74328,Observation #74328,https://biolit.fr/observations/observation-74328/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163652979-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163632829_HDR-rotated.jpg,,,Ne sais pas +N1,74324,Sortie #74324,https://biolit.fr/sorties/sortie-74324/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165033431_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165022555_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163652979-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163632829_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163500161_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163451397-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163414884-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163400435-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163327202-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163253462-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162556878-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162516762-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162504674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162320229-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162303654-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162248950-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162213771-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162205826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162127749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162035386-rotated.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2595030000000,5.37497400000000,,Plage de l'Huveaune,74330,Observation #74330,https://biolit.fr/observations/observation-74330/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163500161_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163451397-rotated.jpg,,,Ne sais pas +N1,74324,Sortie #74324,https://biolit.fr/sorties/sortie-74324/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165033431_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165022555_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163652979-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163632829_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163500161_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163451397-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163414884-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163400435-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163327202-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163253462-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162556878-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162516762-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162504674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162320229-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162303654-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162248950-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162213771-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162205826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162127749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162035386-rotated.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2595030000000,5.37497400000000,,Plage de l'Huveaune,74332,Observation #74332,https://biolit.fr/observations/observation-74332/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163414884-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163400435-rotated.jpg,,,Identifiable +N1,74324,Sortie #74324,https://biolit.fr/sorties/sortie-74324/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165033431_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165022555_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163652979-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163632829_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163500161_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163451397-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163414884-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163400435-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163327202-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163253462-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162556878-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162516762-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162504674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162320229-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162303654-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162248950-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162213771-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162205826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162127749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162035386-rotated.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2595030000000,5.37497400000000,,Plage de l'Huveaune,74334,Observation #74334,https://biolit.fr/observations/observation-74334/,Cardita calyculata,Cardite petit calice,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163327202-scaled.jpg,,,Identifiable +N1,74324,Sortie #74324,https://biolit.fr/sorties/sortie-74324/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165033431_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165022555_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163652979-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163632829_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163500161_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163451397-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163414884-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163400435-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163327202-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163253462-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162556878-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162516762-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162504674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162320229-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162303654-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162248950-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162213771-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162205826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162127749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162035386-rotated.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2595030000000,5.37497400000000,,Plage de l'Huveaune,74336,Observation #74336,https://biolit.fr/observations/observation-74336/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163253462-rotated.jpg,,,Identifiable +N1,74324,Sortie #74324,https://biolit.fr/sorties/sortie-74324/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165033431_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165022555_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163652979-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163632829_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163500161_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163451397-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163414884-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163400435-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163327202-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163253462-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162556878-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162516762-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162504674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162320229-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162303654-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162248950-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162213771-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162205826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162127749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162035386-rotated.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2595030000000,5.37497400000000,,Plage de l'Huveaune,74338,Observation #74338,https://biolit.fr/observations/observation-74338/,Diodora graeca,Fissurelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162556878-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162516762-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162504674.jpg,,,Identifiable +N1,74324,Sortie #74324,https://biolit.fr/sorties/sortie-74324/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165033431_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165022555_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163652979-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163632829_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163500161_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163451397-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163414884-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163400435-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163327202-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163253462-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162556878-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162516762-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162504674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162320229-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162303654-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162248950-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162213771-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162205826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162127749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162035386-rotated.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2595030000000,5.37497400000000,,Plage de l'Huveaune,74340,Observation #74340,https://biolit.fr/observations/observation-74340/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162320229-rotated.jpg,,TRUE,Identifiable +N1,74324,Sortie #74324,https://biolit.fr/sorties/sortie-74324/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165033431_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165022555_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163652979-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163632829_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163500161_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163451397-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163414884-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163400435-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163327202-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163253462-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162556878-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162516762-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162504674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162320229-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162303654-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162248950-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162213771-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162205826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162127749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162035386-rotated.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2595030000000,5.37497400000000,,Plage de l'Huveaune,74342,Observation #74342,https://biolit.fr/observations/observation-74342/,Donax vittatus,Donace des canards,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162303654-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162248950-rotated.jpg,,,Identifiable +N1,74324,Sortie #74324,https://biolit.fr/sorties/sortie-74324/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165033431_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165022555_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163652979-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163632829_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163500161_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163451397-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163414884-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163400435-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163327202-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163253462-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162556878-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162516762-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162504674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162320229-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162303654-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162248950-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162213771-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162205826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162127749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162035386-rotated.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2595030000000,5.37497400000000,,Plage de l'Huveaune,74344,Observation #74344,https://biolit.fr/observations/observation-74344/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162213771-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162205826-rotated.jpg,,,Identifiable +N1,74324,Sortie #74324,https://biolit.fr/sorties/sortie-74324/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165033431_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165022555_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163652979-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163632829_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163500161_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163451397-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163414884-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163400435-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163327202-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163253462-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162556878-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162516762-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162504674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162320229-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162303654-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162248950-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162213771-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162205826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162127749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162035386-rotated.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2595030000000,5.37497400000000,,Plage de l'Huveaune,74346,Observation #74346,https://biolit.fr/observations/observation-74346/,Tritia corniculum,Tritia corniculum,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162127749.jpg,,,Identifiable +N1,74324,Sortie #74324,https://biolit.fr/sorties/sortie-74324/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165033431_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165022555_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163652979-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163632829_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163500161_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163451397-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163414884-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163400435-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163327202-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163253462-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162556878-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162516762-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162504674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162320229-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162303654-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162248950-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162213771-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162205826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162127749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162035386-rotated.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2595030000000,5.37497400000000,,Plage de l'Huveaune,74348,Observation #74348,https://biolit.fr/observations/observation-74348/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162035386-rotated.jpg,,,Ne sais pas +N1,74351,Sortie #74351,https://biolit.fr/sorties/sortie-74351/,MAILLARD Damien,https://biolit.fr/wp-content/uploads/jet-form-builder/8697d82fdc0031c472cee2bfe6dd5175/2024/05/meduse.jpg,05/01/2024,14.0000000,17.0000000,47.2684530000000,-2.16390600000000,,Saint Brevin Les Pins,74353,Observation #74353,https://biolit.fr/observations/observation-74353/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8697d82fdc0031c472cee2bfe6dd5175/2024/05/meduse.jpg,,,Ne sais pas +N1,74397,Sortie #74397,https://biolit.fr/sorties/sortie-74397/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_144359942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143922585-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143912377-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143758395-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143508668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143457452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143026916_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143003918_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_142938598_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141752170_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141052228_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141042063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140603377_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140522724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140508483-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140313486-scaled.jpg,05/02/2024,16.0:15,17.0000000,43.0285740000000,6.15746300000000,,Tour fondue,74399,Observation #74399,https://biolit.fr/observations/observation-74399/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143758395-rotated.jpg,,,Identifiable +N1,74397,Sortie #74397,https://biolit.fr/sorties/sortie-74397/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_144359942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143922585-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143912377-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143758395-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143508668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143457452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143026916_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143003918_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_142938598_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141752170_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141052228_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141042063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140603377_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140522724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140508483-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140313486-scaled.jpg,05/02/2024,16.0:15,17.0000000,43.0285740000000,6.15746300000000,,Tour fondue,74401,Observation #74401,https://biolit.fr/observations/observation-74401/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_142938598_HDR-rotated.jpg,,TRUE,Identifiable +N1,74397,Sortie #74397,https://biolit.fr/sorties/sortie-74397/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_144359942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143922585-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143912377-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143758395-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143508668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143457452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143026916_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143003918_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_142938598_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141752170_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141052228_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141042063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140603377_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140522724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140508483-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140313486-scaled.jpg,05/02/2024,16.0:15,17.0000000,43.0285740000000,6.15746300000000,,Tour fondue,74403,Observation #74403,https://biolit.fr/observations/observation-74403/,Malva arborea,Lavatère arborescente,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_144359942_HDR-scaled.jpg,,,Identifiable +N1,74397,Sortie #74397,https://biolit.fr/sorties/sortie-74397/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_144359942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143922585-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143912377-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143758395-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143508668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143457452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143026916_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143003918_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_142938598_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141752170_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141052228_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141042063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140603377_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140522724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140508483-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140313486-scaled.jpg,05/02/2024,16.0:15,17.0000000,43.0285740000000,6.15746300000000,,Tour fondue,74405,Observation #74405,https://biolit.fr/observations/observation-74405/,Maja crispata,Petite araignée de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143922585-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143912377-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143026916_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143003918_HDR-rotated.jpg,,,Identifiable +N1,74397,Sortie #74397,https://biolit.fr/sorties/sortie-74397/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_144359942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143922585-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143912377-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143758395-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143508668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143457452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143026916_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143003918_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_142938598_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141752170_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141052228_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141042063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140603377_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140522724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140508483-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140313486-scaled.jpg,05/02/2024,16.0:15,17.0000000,43.0285740000000,6.15746300000000,,Tour fondue,74407,Observation #74407,https://biolit.fr/observations/observation-74407/,Dictyota fasciola,Dictyote rubanée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143508668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143457452_HDR-scaled.jpg,,,Ne sais pas +N1,74397,Sortie #74397,https://biolit.fr/sorties/sortie-74397/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_144359942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143922585-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143912377-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143758395-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143508668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143457452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143026916_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143003918_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_142938598_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141752170_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141052228_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141042063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140603377_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140522724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140508483-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140313486-scaled.jpg,05/02/2024,16.0:15,17.0000000,43.0285740000000,6.15746300000000,,Tour fondue,74409,Observation #74409,https://biolit.fr/observations/observation-74409/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141752170_HDR-scaled.jpg,,TRUE,Identifiable +N1,74397,Sortie #74397,https://biolit.fr/sorties/sortie-74397/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_144359942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143922585-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143912377-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143758395-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143508668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143457452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143026916_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143003918_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_142938598_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141752170_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141052228_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141042063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140603377_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140522724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140508483-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140313486-scaled.jpg,05/02/2024,16.0:15,17.0000000,43.0285740000000,6.15746300000000,,Tour fondue,74411,Observation #74411,https://biolit.fr/observations/observation-74411/,Oxalis pes-caprae,Oxalide pied-de-chèvre,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141052228_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141042063_HDR-scaled.jpg,,,Identifiable +N1,74397,Sortie #74397,https://biolit.fr/sorties/sortie-74397/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_144359942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143922585-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143912377-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143758395-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143508668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143457452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143026916_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143003918_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_142938598_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141752170_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141052228_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141042063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140603377_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140522724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140508483-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140313486-scaled.jpg,05/02/2024,16.0:15,17.0000000,43.0285740000000,6.15746300000000,,Tour fondue,74413,Observation #74413,https://biolit.fr/observations/observation-74413/,Carpobrotus edulis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140603377_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140313486-scaled.jpg,,TRUE,Identifiable +N1,74397,Sortie #74397,https://biolit.fr/sorties/sortie-74397/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_144359942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143922585-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143912377-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143758395-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143508668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143457452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143026916_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143003918_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_142938598_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141752170_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141052228_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141042063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140603377_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140522724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140508483-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140313486-scaled.jpg,05/02/2024,16.0:15,17.0000000,43.0285740000000,6.15746300000000,,Tour fondue,74415,Observation #74415,https://biolit.fr/observations/observation-74415/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140522724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140508483-scaled.jpg,,TRUE,Identifiable +N1,74437,Sortie #74437,https://biolit.fr/sorties/sortie-74437/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202257643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202222995-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162953999_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162500910.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162408216-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130848572.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130824879-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130736911-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130631762.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130423914.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130407172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130313604-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130127558-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130114826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130034425-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130021363-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125910832-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125520827.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125507104.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125438310-scaled.jpg,05/02/2024,10.0000000,11.0000000,43.0346250000000,6.16525800000000,,Estérel,74439,Observation #74439,https://biolit.fr/observations/observation-74439/,Trivia mediterranea,Grain de café de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202257643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202222995-rotated.jpg,,,Identifiable +N1,74437,Sortie #74437,https://biolit.fr/sorties/sortie-74437/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202257643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202222995-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162953999_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162500910.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162408216-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130848572.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130824879-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130736911-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130631762.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130423914.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130407172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130313604-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130127558-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130114826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130034425-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130021363-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125910832-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125520827.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125507104.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125438310-scaled.jpg,05/02/2024,10.0000000,11.0000000,43.0346250000000,6.16525800000000,,Estérel,74441,Observation #74441,https://biolit.fr/observations/observation-74441/,Pusia ebenus,Pusia ébène,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162953999_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162500910.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162408216-rotated.jpg,,,Identifiable +N1,74437,Sortie #74437,https://biolit.fr/sorties/sortie-74437/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202257643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202222995-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162953999_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162500910.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162408216-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130848572.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130824879-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130736911-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130631762.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130423914.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130407172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130313604-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130127558-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130114826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130034425-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130021363-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125910832-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125520827.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125507104.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125438310-scaled.jpg,05/02/2024,10.0000000,11.0000000,43.0346250000000,6.16525800000000,,Estérel,74443,Observation #74443,https://biolit.fr/observations/observation-74443/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130848572.jpg,,,Identifiable +N1,74437,Sortie #74437,https://biolit.fr/sorties/sortie-74437/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202257643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202222995-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162953999_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162500910.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162408216-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130848572.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130824879-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130736911-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130631762.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130423914.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130407172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130313604-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130127558-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130114826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130034425-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130021363-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125910832-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125520827.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125507104.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125438310-scaled.jpg,05/02/2024,10.0000000,11.0000000,43.0346250000000,6.16525800000000,,Estérel,74445,Observation #74445,https://biolit.fr/observations/observation-74445/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130824879-rotated.jpg,,,Identifiable +N1,74437,Sortie #74437,https://biolit.fr/sorties/sortie-74437/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202257643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202222995-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162953999_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162500910.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162408216-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130848572.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130824879-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130736911-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130631762.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130423914.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130407172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130313604-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130127558-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130114826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130034425-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130021363-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125910832-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125520827.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125507104.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125438310-scaled.jpg,05/02/2024,10.0000000,11.0000000,43.0346250000000,6.16525800000000,,Estérel,74447,Observation #74447,https://biolit.fr/observations/observation-74447/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130736911-rotated.jpg,,,Identifiable +N1,74437,Sortie #74437,https://biolit.fr/sorties/sortie-74437/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202257643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202222995-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162953999_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162500910.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162408216-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130848572.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130824879-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130736911-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130631762.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130423914.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130407172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130313604-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130127558-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130114826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130034425-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130021363-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125910832-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125520827.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125507104.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125438310-scaled.jpg,05/02/2024,10.0000000,11.0000000,43.0346250000000,6.16525800000000,,Estérel,74449,Observation #74449,https://biolit.fr/observations/observation-74449/,Bittium reticulatum,Cérithe réticulé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130631762.jpg,,,Identifiable +N1,74437,Sortie #74437,https://biolit.fr/sorties/sortie-74437/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202257643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202222995-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162953999_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162500910.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162408216-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130848572.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130824879-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130736911-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130631762.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130423914.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130407172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130313604-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130127558-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130114826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130034425-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130021363-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125910832-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125520827.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125507104.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125438310-scaled.jpg,05/02/2024,10.0000000,11.0000000,43.0346250000000,6.16525800000000,,Estérel,74451,Observation #74451,https://biolit.fr/observations/observation-74451/,Cardita calyculata,Cardite petit calice,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130423914.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130407172.jpg,,,Identifiable +N1,74437,Sortie #74437,https://biolit.fr/sorties/sortie-74437/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202257643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202222995-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162953999_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162500910.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162408216-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130848572.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130824879-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130736911-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130631762.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130423914.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130407172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130313604-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130127558-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130114826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130034425-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130021363-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125910832-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125520827.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125507104.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125438310-scaled.jpg,05/02/2024,10.0000000,11.0000000,43.0346250000000,6.16525800000000,,Estérel,74453,Observation #74453,https://biolit.fr/observations/observation-74453/,Tritia corniculum,Tritia corniculum,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130313604-rotated.jpg,,,Identifiable +N1,74437,Sortie #74437,https://biolit.fr/sorties/sortie-74437/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202257643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202222995-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162953999_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162500910.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162408216-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130848572.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130824879-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130736911-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130631762.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130423914.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130407172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130313604-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130127558-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130114826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130034425-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130021363-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125910832-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125520827.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125507104.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125438310-scaled.jpg,05/02/2024,10.0000000,11.0000000,43.0346250000000,6.16525800000000,,Estérel,74455,Observation #74455,https://biolit.fr/observations/observation-74455/,Diodora graeca,Fissurelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130127558-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130114826-rotated.jpg,,,Identifiable +N1,74437,Sortie #74437,https://biolit.fr/sorties/sortie-74437/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202257643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202222995-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162953999_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162500910.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162408216-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130848572.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130824879-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130736911-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130631762.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130423914.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130407172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130313604-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130127558-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130114826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130034425-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130021363-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125910832-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125520827.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125507104.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125438310-scaled.jpg,05/02/2024,10.0000000,11.0000000,43.0346250000000,6.16525800000000,,Estérel,74457,Observation #74457,https://biolit.fr/observations/observation-74457/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130034425-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130021363-rotated.jpg,,,Identifiable +N1,74437,Sortie #74437,https://biolit.fr/sorties/sortie-74437/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202257643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202222995-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162953999_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162500910.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162408216-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130848572.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130824879-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130736911-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130631762.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130423914.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130407172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130313604-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130127558-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130114826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130034425-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130021363-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125910832-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125520827.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125507104.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125438310-scaled.jpg,05/02/2024,10.0000000,11.0000000,43.0346250000000,6.16525800000000,,Estérel,74459,Observation #74459,https://biolit.fr/observations/observation-74459/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125910832-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125520827.jpg,,,Identifiable +N1,74437,Sortie #74437,https://biolit.fr/sorties/sortie-74437/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202257643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202222995-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162953999_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162500910.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162408216-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130848572.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130824879-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130736911-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130631762.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130423914.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130407172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130313604-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130127558-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130114826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130034425-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130021363-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125910832-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125520827.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125507104.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125438310-scaled.jpg,05/02/2024,10.0000000,11.0000000,43.0346250000000,6.16525800000000,,Estérel,74461,Observation #74461,https://biolit.fr/observations/observation-74461/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125507104.jpg,,,Identifiable +N1,74437,Sortie #74437,https://biolit.fr/sorties/sortie-74437/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202257643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202222995-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162953999_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162500910.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162408216-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130848572.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130824879-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130736911-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130631762.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130423914.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130407172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130313604-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130127558-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130114826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130034425-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130021363-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125910832-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125520827.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125507104.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125438310-scaled.jpg,05/02/2024,10.0000000,11.0000000,43.0346250000000,6.16525800000000,,Estérel,74463,Observation #74463,https://biolit.fr/observations/observation-74463/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125438310-scaled.jpg,,,Identifiable +N1,74467,Sortie #74467,https://biolit.fr/sorties/sortie-74467/,Djaileb Ilhem,https://biolit.fr/wp-content/uploads/jet-form-builder/5b72a4644baaa045615f581112ee98dd/2024/05/VideoCapture_20240503-090553.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b72a4644baaa045615f581112ee98dd/2024/05/VideoCapture_20240503-090621.jpg,4/15/2024 0:00,19.0000000,19.0000000,35.8893460000000,0.0457930000000000,,Mostaganem,,,,,,,,,, +N1,74471,Sortie #74471,https://biolit.fr/sorties/sortie-74471/,Djaileb Ilhem,https://biolit.fr/wp-content/uploads/jet-form-builder/5b72a4644baaa045615f581112ee98dd/2024/05/VideoCapture_20240503-090553-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b72a4644baaa045615f581112ee98dd/2024/05/VideoCapture_20240503-090621-1.jpg,4/15/2024 0:00,19.0000000,19.0000000,35.8893460000000,0.0457930000000000,,Mostaganem,,,,,,,,,, +N1,74476,Sortie #74476,https://biolit.fr/sorties/sortie-74476/,Djaileb Ilhem,https://biolit.fr/wp-content/uploads/jet-form-builder/5b72a4644baaa045615f581112ee98dd/2024/05/20240415_180604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b72a4644baaa045615f581112ee98dd/2024/05/20240415_175215-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b72a4644baaa045615f581112ee98dd/2024/05/20240415_180600-scaled.jpg,4/15/2024 0:00,18.0000000,19.0000000,35.9173630000000,0.0581320000000000,,Mostaganem,74480,Observation #74480,https://biolit.fr/observations/observation-74480/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5b72a4644baaa045615f581112ee98dd/2024/05/20240415_180604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b72a4644baaa045615f581112ee98dd/2024/05/20240415_175215-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b72a4644baaa045615f581112ee98dd/2024/05/20240415_180600-scaled.jpg,,,Identifiable +N1,74485,Sortie #74485,https://biolit.fr/sorties/sortie-74485/,BASTIAN Thomas,https://biolit.fr/wp-content/uploads/jet-form-builder/04e09e97f7d6d69f0329a511e09d3511/2024/05/20240503_162408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04e09e97f7d6d69f0329a511e09d3511/2024/05/20240503_162505-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04e09e97f7d6d69f0329a511e09d3511/2024/05/20240503_162554-scaled.jpg,4/29/2024 0:00,14.0000000,15.0000000,48.2619800000000,-4.61225200000000,,plage de Veryac'h,74487,Observation #74487,https://biolit.fr/observations/observation-74487/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/04e09e97f7d6d69f0329a511e09d3511/2024/05/20240503_162408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04e09e97f7d6d69f0329a511e09d3511/2024/05/20240503_162505-scaled.jpg,,TRUE,Identifiable +N1,74485,Sortie #74485,https://biolit.fr/sorties/sortie-74485/,BASTIAN Thomas,https://biolit.fr/wp-content/uploads/jet-form-builder/04e09e97f7d6d69f0329a511e09d3511/2024/05/20240503_162408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04e09e97f7d6d69f0329a511e09d3511/2024/05/20240503_162505-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04e09e97f7d6d69f0329a511e09d3511/2024/05/20240503_162554-scaled.jpg,4/29/2024 0:00,14.0000000,15.0000000,48.2619800000000,-4.61225200000000,,plage de Veryac'h,74489,Observation #74489,https://biolit.fr/observations/observation-74489/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/04e09e97f7d6d69f0329a511e09d3511/2024/05/20240503_162554-scaled.jpg,,TRUE,Identifiable +N1,74492,Sortie #74492,https://biolit.fr/sorties/sortie-74492/,BASTIAN Thomas,https://biolit.fr/wp-content/uploads/jet-form-builder/04e09e97f7d6d69f0329a511e09d3511/2024/05/20240503_162958.jpg,4/29/2024 0:00,15.0000000,17.0000000,48.2392190000000,-4.46355500000000,,plage de Postolonec,74494,Observation #74494,https://biolit.fr/observations/observation-74494/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/04e09e97f7d6d69f0329a511e09d3511/2024/05/20240503_162958.jpg,,TRUE,Identifiable +N1,74497,Sortie #74497,https://biolit.fr/sorties/sortie-74497/,BASTIAN Thomas,https://biolit.fr/wp-content/uploads/jet-form-builder/04e09e97f7d6d69f0329a511e09d3511/2024/05/20240503_163702.jpg,4/30/2024 0:00,17.0000000,18.0000000,48.2184030000000,-4.37891000000000,,plage de Telgruc-sur-Mer,74499,Observation #74499,https://biolit.fr/observations/observation-74499/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/04e09e97f7d6d69f0329a511e09d3511/2024/05/20240503_163702.jpg,,,Ne sais pas +N1,74584,Sortie #74584,https://biolit.fr/sorties/sortie-74584/,Beslay Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7592-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7591-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7589-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7588-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7587-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7586-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7584-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7583-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7582-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7580-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7579-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7577-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7576-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7575-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7573-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7571-4-scaled.jpeg,05/02/2024,18.0000000,19.000005,48.65417,-2.02374,,plage de l'éventaille,74586,Observation #74586,https://biolit.fr/observations/observation-74586/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7591-3-scaled.jpeg,,TRUE,Identifiable +N1,74584,Sortie #74584,https://biolit.fr/sorties/sortie-74584/,Beslay Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7592-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7591-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7589-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7588-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7587-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7586-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7584-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7583-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7582-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7580-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7579-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7577-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7576-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7575-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7573-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7571-4-scaled.jpeg,05/02/2024,18.0000000,19.000005,48.65417,-2.02374,,plage de l'éventaille,74588,Observation #74588,https://biolit.fr/observations/observation-74588/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7576-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7582-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7586-4-scaled.jpeg,,TRUE,Identifiable +N1,74584,Sortie #74584,https://biolit.fr/sorties/sortie-74584/,Beslay Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7592-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7591-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7589-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7588-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7587-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7586-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7584-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7583-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7582-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7580-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7579-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7577-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7576-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7575-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7573-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7571-4-scaled.jpeg,05/02/2024,18.0000000,19.000005,48.65417,-2.02374,,plage de l'éventaille,74590,Observation #74590,https://biolit.fr/observations/observation-74590/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7571-4-scaled.jpeg,,,Identifiable +N1,74584,Sortie #74584,https://biolit.fr/sorties/sortie-74584/,Beslay Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7592-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7591-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7589-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7588-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7587-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7586-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7584-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7583-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7582-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7580-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7579-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7577-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7576-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7575-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7573-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7571-4-scaled.jpeg,05/02/2024,18.0000000,19.000005,48.65417,-2.02374,,plage de l'éventaille,74592,Observation #74592,https://biolit.fr/observations/observation-74592/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7592-4-scaled.jpeg,,TRUE,Identifiable +N1,74584,Sortie #74584,https://biolit.fr/sorties/sortie-74584/,Beslay Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7592-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7591-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7589-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7588-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7587-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7586-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7584-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7583-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7582-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7580-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7579-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7577-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7576-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7575-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7573-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7571-4-scaled.jpeg,05/02/2024,18.0000000,19.000005,48.65417,-2.02374,,plage de l'éventaille,74594,Observation #74594,https://biolit.fr/observations/observation-74594/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7575-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7580-4-scaled.jpeg,,TRUE,Identifiable +N1,74584,Sortie #74584,https://biolit.fr/sorties/sortie-74584/,Beslay Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7592-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7591-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7589-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7588-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7587-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7586-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7584-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7583-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7582-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7580-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7579-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7577-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7576-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7575-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7573-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7571-4-scaled.jpeg,05/02/2024,18.0000000,19.000005,48.65417,-2.02374,,plage de l'éventaille,74596,Observation #74596,https://biolit.fr/observations/observation-74596/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7577-4-scaled.jpeg,,TRUE,Identifiable +N1,74584,Sortie #74584,https://biolit.fr/sorties/sortie-74584/,Beslay Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7592-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7591-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7589-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7588-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7587-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7586-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7584-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7583-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7582-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7580-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7579-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7577-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7576-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7575-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7573-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7571-4-scaled.jpeg,05/02/2024,18.0000000,19.000005,48.65417,-2.02374,,plage de l'éventaille,74598,Observation #74598,https://biolit.fr/observations/observation-74598/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7584-4-scaled.jpeg,,TRUE,Identifiable +N1,74584,Sortie #74584,https://biolit.fr/sorties/sortie-74584/,Beslay Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7592-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7591-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7589-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7588-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7587-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7586-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7584-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7583-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7582-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7580-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7579-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7577-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7576-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7575-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7573-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7571-4-scaled.jpeg,05/02/2024,18.0000000,19.000005,48.65417,-2.02374,,plage de l'éventaille,74600,Observation #74600,https://biolit.fr/observations/observation-74600/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7588-4-scaled.jpeg,,TRUE,Identifiable +N1,74610,Sortie #74610,https://biolit.fr/sorties/sortie-74610/,sylviemuz@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/baudroie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040136.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040098-Copie3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040122.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040091-Copiem.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040142.jpg,05/01/2024,10.0000000,11.0000000,43.6732320,7.222865,,"tombant à andre, villefranche 06",74612,Observation #74612,https://biolit.fr/observations/observation-74612/,Lophius piscatorius,Baudroie,,https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/baudroie.jpg,,TRUE,Identifiable +N1,74610,Sortie #74610,https://biolit.fr/sorties/sortie-74610/,sylviemuz@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/baudroie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040136.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040098-Copie3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040122.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040091-Copiem.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040142.jpg,05/01/2024,10.0000000,11.0000000,43.6732320,7.222865,,"tombant à andre, villefranche 06",74614,Observation #74614,https://biolit.fr/observations/observation-74614/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040136.jpg,,,Identifiable +N1,74610,Sortie #74610,https://biolit.fr/sorties/sortie-74610/,sylviemuz@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/baudroie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040136.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040098-Copie3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040122.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040091-Copiem.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040142.jpg,05/01/2024,10.0000000,11.0000000,43.6732320,7.222865,,"tombant à andre, villefranche 06",74617,Observation #74617,https://biolit.fr/observations/observation-74617/,Edmundsella pedata,Coryphelle mauve,,https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040098-Copie3.jpg,,TRUE,Identifiable +N1,74610,Sortie #74610,https://biolit.fr/sorties/sortie-74610/,sylviemuz@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/baudroie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040136.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040098-Copie3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040122.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040091-Copiem.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040142.jpg,05/01/2024,10.0000000,11.0000000,43.6732320,7.222865,,"tombant à andre, villefranche 06",74619,Observation #74619,https://biolit.fr/observations/observation-74619/,Thetys vagina,Salpe Thétys,,https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040136.jpg,,,Identifiable +N1,74610,Sortie #74610,https://biolit.fr/sorties/sortie-74610/,sylviemuz@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/baudroie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040136.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040098-Copie3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040122.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040091-Copiem.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040142.jpg,05/01/2024,10.0000000,11.0000000,43.6732320,7.222865,,"tombant à andre, villefranche 06",74621,Observation #74621,https://biolit.fr/observations/observation-74621/,Scorpaena scrofa,Chapon,,https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040122.jpg,,TRUE,Identifiable +N1,74610,Sortie #74610,https://biolit.fr/sorties/sortie-74610/,sylviemuz@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/baudroie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040136.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040098-Copie3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040122.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040091-Copiem.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040142.jpg,05/01/2024,10.0000000,11.0000000,43.6732320,7.222865,,"tombant à andre, villefranche 06",74623,Observation #74623,https://biolit.fr/observations/observation-74623/,Sabella pavonina,Sabelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040091-Copiem.jpg,,TRUE,Identifiable +N1,74610,Sortie #74610,https://biolit.fr/sorties/sortie-74610/,sylviemuz@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/baudroie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040136.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040098-Copie3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040122.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040091-Copiem.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040142.jpg,05/01/2024,10.0000000,11.0000000,43.6732320,7.222865,,"tombant à andre, villefranche 06",74625,Observation #74625,https://biolit.fr/observations/observation-74625/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040142.jpg,,TRUE,Identifiable +N1,74687,Sortie #74687,https://biolit.fr/sorties/sortie-74687/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120722671_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140101611-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144630324.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144725624_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145111818-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145510260.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145516298.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145716508_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150652901-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164315494.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164326275.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164443731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164452534.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164820220.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_165427575.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171031604.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102439747.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102450717.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103203309_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103151161_HDR-rotated.jpg,05/05/2024,10.0000000,11.0000000,43.0352510000000,6.15368400000000,,Estérel Nord,,,,,,,,,, +N1,74709,Sortie #74709,https://biolit.fr/sorties/sortie-74709/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140101611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144630324-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144725624_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145111818-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145510260-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145516298-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145716508_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150652901-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164315494-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164326275-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164443731-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164452534-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_165427575-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171038742.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171031604-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171237151.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171247628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171256773.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102439747-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102450717-1.jpg,05/05/2024,10.0000000,11.0000000,43.0339530000000,6.16208700000000,,Estérel Nord,74711,Observation #74711,https://biolit.fr/observations/observation-74711/,Acetabularia acetabulum,Acétabulaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140101611-1-scaled.jpg,,TRUE,Ne sais pas +N1,74709,Sortie #74709,https://biolit.fr/sorties/sortie-74709/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140101611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144630324-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144725624_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145111818-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145510260-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145516298-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145716508_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150652901-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164315494-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164326275-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164443731-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164452534-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_165427575-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171038742.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171031604-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171237151.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171247628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171256773.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102439747-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102450717-1.jpg,05/05/2024,10.0000000,11.0000000,43.0339530000000,6.16208700000000,,Estérel Nord,74713,Observation #74713,https://biolit.fr/observations/observation-74713/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144630324-1.jpg,,,Identifiable +N1,74709,Sortie #74709,https://biolit.fr/sorties/sortie-74709/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140101611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144630324-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144725624_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145111818-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145510260-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145516298-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145716508_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150652901-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164315494-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164326275-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164443731-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164452534-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_165427575-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171038742.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171031604-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171237151.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171247628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171256773.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102439747-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102450717-1.jpg,05/05/2024,10.0000000,11.0000000,43.0339530000000,6.16208700000000,,Estérel Nord,74715,Observation #74715,https://biolit.fr/observations/observation-74715/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144725624_HDR-1-scaled.jpg,,TRUE,Ne sais pas +N1,74709,Sortie #74709,https://biolit.fr/sorties/sortie-74709/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140101611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144630324-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144725624_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145111818-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145510260-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145516298-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145716508_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150652901-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164315494-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164326275-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164443731-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164452534-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_165427575-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171038742.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171031604-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171237151.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171247628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171256773.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102439747-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102450717-1.jpg,05/05/2024,10.0000000,11.0000000,43.0339530000000,6.16208700000000,,Estérel Nord,74717,Observation #74717,https://biolit.fr/observations/observation-74717/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145111818-1-scaled.jpg,,,Ne sais pas +N1,74709,Sortie #74709,https://biolit.fr/sorties/sortie-74709/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140101611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144630324-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144725624_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145111818-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145510260-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145516298-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145716508_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150652901-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164315494-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164326275-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164443731-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164452534-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_165427575-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171038742.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171031604-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171237151.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171247628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171256773.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102439747-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102450717-1.jpg,05/05/2024,10.0000000,11.0000000,43.0339530000000,6.16208700000000,,Estérel Nord,74719,Observation #74719,https://biolit.fr/observations/observation-74719/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145510260-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145516298-1.jpg,,TRUE,Identifiable +N1,74709,Sortie #74709,https://biolit.fr/sorties/sortie-74709/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140101611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144630324-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144725624_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145111818-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145510260-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145516298-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145716508_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150652901-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164315494-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164326275-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164443731-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164452534-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_165427575-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171038742.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171031604-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171237151.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171247628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171256773.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102439747-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102450717-1.jpg,05/05/2024,10.0000000,11.0000000,43.0339530000000,6.16208700000000,,Estérel Nord,74721,Observation #74721,https://biolit.fr/observations/observation-74721/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145716508_HDR-1.jpg,,,Ne sais pas +N1,74709,Sortie #74709,https://biolit.fr/sorties/sortie-74709/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140101611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144630324-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144725624_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145111818-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145510260-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145516298-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145716508_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150652901-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164315494-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164326275-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164443731-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164452534-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_165427575-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171038742.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171031604-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171237151.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171247628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171256773.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102439747-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102450717-1.jpg,05/05/2024,10.0000000,11.0000000,43.0339530000000,6.16208700000000,,Estérel Nord,74723,Observation #74723,https://biolit.fr/observations/observation-74723/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150652901-1-scaled.jpg,,TRUE,Ne sais pas +N1,74709,Sortie #74709,https://biolit.fr/sorties/sortie-74709/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140101611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144630324-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144725624_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145111818-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145510260-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145516298-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145716508_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150652901-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164315494-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164326275-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164443731-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164452534-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_165427575-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171038742.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171031604-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171237151.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171247628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171256773.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102439747-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102450717-1.jpg,05/05/2024,10.0000000,11.0000000,43.0339530000000,6.16208700000000,,Estérel Nord,74727,Observation #74727,https://biolit.fr/observations/observation-74727/,Spondylus gaederopus,Spondyle pied-d'âne,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164443731-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164452534-1.jpg,,,Identifiable +N1,74709,Sortie #74709,https://biolit.fr/sorties/sortie-74709/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140101611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144630324-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144725624_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145111818-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145510260-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145516298-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145716508_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150652901-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164315494-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164326275-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164443731-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164452534-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_165427575-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171038742.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171031604-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171237151.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171247628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171256773.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102439747-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102450717-1.jpg,05/05/2024,10.0000000,11.0000000,43.0339530000000,6.16208700000000,,Estérel Nord,74729,Observation #74729,https://biolit.fr/observations/observation-74729/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_165427575-1.jpg,,TRUE,Identifiable +N1,74709,Sortie #74709,https://biolit.fr/sorties/sortie-74709/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140101611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144630324-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144725624_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145111818-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145510260-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145516298-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145716508_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150652901-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164315494-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164326275-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164443731-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164452534-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_165427575-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171038742.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171031604-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171237151.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171247628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171256773.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102439747-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102450717-1.jpg,05/05/2024,10.0000000,11.0000000,43.0339530000000,6.16208700000000,,Estérel Nord,74731,Observation #74731,https://biolit.fr/observations/observation-74731/,Tritia pellucida,Cyclope translucide,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171038742.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171031604-1.jpg,,,Identifiable +N1,74709,Sortie #74709,https://biolit.fr/sorties/sortie-74709/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140101611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144630324-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144725624_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145111818-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145510260-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145516298-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145716508_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150652901-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164315494-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164326275-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164443731-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164452534-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_165427575-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171038742.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171031604-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171237151.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171247628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171256773.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102439747-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102450717-1.jpg,05/05/2024,10.0000000,11.0000000,43.0339530000000,6.16208700000000,,Estérel Nord,74733,Observation #74733,https://biolit.fr/observations/observation-74733/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171237151.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171247628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171256773.jpg,,,Identifiable +N1,74709,Sortie #74709,https://biolit.fr/sorties/sortie-74709/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140101611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144630324-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144725624_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145111818-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145510260-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145516298-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145716508_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150652901-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164315494-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164326275-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164443731-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164452534-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_165427575-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171038742.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171031604-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171237151.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171247628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171256773.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102439747-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102450717-1.jpg,05/05/2024,10.0000000,11.0000000,43.0339530000000,6.16208700000000,,Estérel Nord,74735,Observation #74735,https://biolit.fr/observations/observation-74735/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102439747-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102450717-1.jpg,,TRUE,Ne sais pas +N1,74757,Sortie #74757,https://biolit.fr/sorties/sortie-74757/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103203309_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103151161_HDR-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143021613_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143039139_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171101534-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150453801-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144141334_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143640545_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_141903877_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140401794_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140331477_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121048322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121013419_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120607633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120604318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120214008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_115922415_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113024766-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113020312-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_112943081-scaled.jpg,05/05/2024,10.0000000,11.0000000,43.0340080000000,6.16216000000000,,Estérel Nord,74759,Observation #74759,https://biolit.fr/observations/observation-74759/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103203309_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103151161_HDR-1-rotated.jpg,,,Ne sais pas +N1,74757,Sortie #74757,https://biolit.fr/sorties/sortie-74757/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103203309_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103151161_HDR-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143021613_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143039139_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171101534-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150453801-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144141334_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143640545_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_141903877_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140401794_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140331477_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121048322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121013419_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120607633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120604318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120214008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_115922415_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113024766-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113020312-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_112943081-scaled.jpg,05/05/2024,10.0000000,11.0000000,43.0340080000000,6.16216000000000,,Estérel Nord,74761,Observation #74761,https://biolit.fr/observations/observation-74761/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143021613_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143039139_HDR.jpg,,,Identifiable +N1,74757,Sortie #74757,https://biolit.fr/sorties/sortie-74757/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103203309_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103151161_HDR-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143021613_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143039139_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171101534-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150453801-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144141334_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143640545_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_141903877_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140401794_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140331477_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121048322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121013419_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120607633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120604318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120214008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_115922415_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113024766-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113020312-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_112943081-scaled.jpg,05/05/2024,10.0000000,11.0000000,43.0340080000000,6.16216000000000,,Estérel Nord,74763,Observation #74763,https://biolit.fr/observations/observation-74763/,Tritia neritea,Cyclope néritoïde,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171101534-rotated.jpg,,,Identifiable +N1,74757,Sortie #74757,https://biolit.fr/sorties/sortie-74757/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103203309_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103151161_HDR-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143021613_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143039139_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171101534-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150453801-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144141334_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143640545_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_141903877_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140401794_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140331477_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121048322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121013419_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120607633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120604318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120214008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_115922415_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113024766-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113020312-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_112943081-scaled.jpg,05/05/2024,10.0000000,11.0000000,43.0340080000000,6.16216000000000,,Estérel Nord,74765,Observation #74765,https://biolit.fr/observations/observation-74765/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150453801-scaled.jpg,,TRUE,Ne sais pas +N1,74757,Sortie #74757,https://biolit.fr/sorties/sortie-74757/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103203309_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103151161_HDR-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143021613_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143039139_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171101534-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150453801-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144141334_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143640545_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_141903877_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140401794_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140331477_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121048322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121013419_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120607633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120604318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120214008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_115922415_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113024766-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113020312-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_112943081-scaled.jpg,05/05/2024,10.0000000,11.0000000,43.0340080000000,6.16216000000000,,Estérel Nord,74767,Observation #74767,https://biolit.fr/observations/observation-74767/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144141334_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143640545_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140331477_HDR-scaled.jpg,,TRUE,Identifiable +N1,74757,Sortie #74757,https://biolit.fr/sorties/sortie-74757/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103203309_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103151161_HDR-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143021613_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143039139_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171101534-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150453801-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144141334_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143640545_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_141903877_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140401794_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140331477_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121048322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121013419_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120607633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120604318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120214008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_115922415_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113024766-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113020312-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_112943081-scaled.jpg,05/05/2024,10.0000000,11.0000000,43.0340080000000,6.16216000000000,,Estérel Nord,74769,Observation #74769,https://biolit.fr/observations/observation-74769/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_141903877_HDR-rotated.jpg,,,Identifiable +N1,74757,Sortie #74757,https://biolit.fr/sorties/sortie-74757/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103203309_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103151161_HDR-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143021613_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143039139_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171101534-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150453801-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144141334_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143640545_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_141903877_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140401794_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140331477_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121048322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121013419_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120607633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120604318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120214008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_115922415_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113024766-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113020312-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_112943081-scaled.jpg,05/05/2024,10.0000000,11.0000000,43.0340080000000,6.16216000000000,,Estérel Nord,74771,Observation #74771,https://biolit.fr/observations/observation-74771/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140401794_HDR-scaled.jpg,,TRUE,Identifiable +N1,74757,Sortie #74757,https://biolit.fr/sorties/sortie-74757/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103203309_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103151161_HDR-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143021613_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143039139_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171101534-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150453801-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144141334_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143640545_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_141903877_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140401794_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140331477_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121048322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121013419_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120607633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120604318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120214008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_115922415_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113024766-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113020312-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_112943081-scaled.jpg,05/05/2024,10.0000000,11.0000000,43.0340080000000,6.16216000000000,,Estérel Nord,74773,Observation #74773,https://biolit.fr/observations/observation-74773/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121048322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120214008.jpg,,TRUE,Identifiable +N1,74757,Sortie #74757,https://biolit.fr/sorties/sortie-74757/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103203309_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103151161_HDR-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143021613_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143039139_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171101534-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150453801-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144141334_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143640545_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_141903877_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140401794_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140331477_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121048322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121013419_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120607633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120604318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120214008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_115922415_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113024766-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113020312-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_112943081-scaled.jpg,05/05/2024,10.0000000,11.0000000,43.0340080000000,6.16216000000000,,Estérel Nord,74775,Observation #74775,https://biolit.fr/observations/observation-74775/,Dictyota fasciola,Dictyote rubanée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121013419_HDR-rotated.jpg,,TRUE,Ne sais pas +N1,74757,Sortie #74757,https://biolit.fr/sorties/sortie-74757/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103203309_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103151161_HDR-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143021613_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143039139_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171101534-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150453801-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144141334_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143640545_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_141903877_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140401794_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140331477_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121048322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121013419_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120607633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120604318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120214008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_115922415_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113024766-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113020312-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_112943081-scaled.jpg,05/05/2024,10.0000000,11.0000000,43.0340080000000,6.16216000000000,,Estérel Nord,74777,Observation #74777,https://biolit.fr/observations/observation-74777/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120607633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120604318-scaled.jpg,,TRUE,Identifiable +N1,74757,Sortie #74757,https://biolit.fr/sorties/sortie-74757/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103203309_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103151161_HDR-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143021613_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143039139_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171101534-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150453801-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144141334_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143640545_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_141903877_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140401794_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140331477_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121048322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121013419_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120607633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120604318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120214008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_115922415_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113024766-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113020312-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_112943081-scaled.jpg,05/05/2024,10.0000000,11.0000000,43.0340080000000,6.16216000000000,,Estérel Nord,74779,Observation #74779,https://biolit.fr/observations/observation-74779/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_115922415_HDR-rotated.jpg,,TRUE,Identifiable +N1,74757,Sortie #74757,https://biolit.fr/sorties/sortie-74757/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103203309_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103151161_HDR-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143021613_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143039139_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171101534-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150453801-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144141334_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143640545_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_141903877_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140401794_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140331477_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121048322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121013419_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120607633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120604318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120214008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_115922415_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113024766-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113020312-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_112943081-scaled.jpg,05/05/2024,10.0000000,11.0000000,43.0340080000000,6.16216000000000,,Estérel Nord,74781,Observation #74781,https://biolit.fr/observations/observation-74781/,Caulerpa taxifolia,Caulerpe à feuilles d'if,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113024766-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113020312-rotated.jpg,,TRUE,Ne sais pas +N1,74757,Sortie #74757,https://biolit.fr/sorties/sortie-74757/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103203309_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103151161_HDR-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143021613_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143039139_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171101534-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150453801-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144141334_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143640545_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_141903877_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140401794_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140331477_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121048322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121013419_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120607633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120604318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120214008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_115922415_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113024766-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113020312-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_112943081-scaled.jpg,05/05/2024,10.0000000,11.0000000,43.0340080000000,6.16216000000000,,Estérel Nord,74783,Observation #74783,https://biolit.fr/observations/observation-74783/,Dictyota spiralis,Dictyote spatulée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_112943081-scaled.jpg,,,Ne sais pas +N1,74789,Sortie #74789,https://biolit.fr/sorties/sortie-74789/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_103103701-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_103111904_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_104325150_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_1045402282.jpg,05/04/2024,10.0000000,11.0000000,43.031997000000,6.16591100000000,,Giens Sud,74791,Observation #74791,https://biolit.fr/observations/observation-74791/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_103103701-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_103111904_HDR-rotated.jpg,,,Ne sais pas +N1,74789,Sortie #74789,https://biolit.fr/sorties/sortie-74789/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_103103701-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_103111904_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_104325150_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_1045402282.jpg,05/04/2024,10.0000000,11.0000000,43.031997000000,6.16591100000000,,Giens Sud,74793,Observation #74793,https://biolit.fr/observations/observation-74793/,Flabellia petiolata,Udotée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_104325150_HDR.jpg,,TRUE,Identifiable +N1,74789,Sortie #74789,https://biolit.fr/sorties/sortie-74789/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_103103701-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_103111904_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_104325150_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_1045402282.jpg,05/04/2024,10.0000000,11.0000000,43.031997000000,6.16591100000000,,Giens Sud,74795,Observation #74795,https://biolit.fr/observations/observation-74795/,Jania rubens,Janie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_1045402282.jpg,,,Identifiable +N1,74810,Sortie #74810,https://biolit.fr/sorties/sortie-74810/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150511393_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150714250_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150726715.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_151057896-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_153127603_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_163706887.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164515173.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171433828.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171503430.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171520752.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193352638.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193414323.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193423362.jpg,05/03/2024,15.0000000,15.0000000,43.0399270000000,6.15129600000000,,Giens Est sable,74812,Observation #74812,https://biolit.fr/observations/observation-74812/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150511393_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150714250_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150726715.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171503430.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171520752.jpg,,,Identifiable +N1,74810,Sortie #74810,https://biolit.fr/sorties/sortie-74810/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150511393_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150714250_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150726715.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_151057896-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_153127603_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_163706887.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164515173.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171433828.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171503430.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171520752.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193352638.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193414323.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193423362.jpg,05/03/2024,15.0000000,15.0000000,43.0399270000000,6.15129600000000,,Giens Est sable,74814,Observation #74814,https://biolit.fr/observations/observation-74814/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_151057896-scaled.jpg,,,Identifiable +N1,74810,Sortie #74810,https://biolit.fr/sorties/sortie-74810/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150511393_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150714250_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150726715.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_151057896-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_153127603_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_163706887.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164515173.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171433828.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171503430.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171520752.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193352638.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193414323.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193423362.jpg,05/03/2024,15.0000000,15.0000000,43.0399270000000,6.15129600000000,,Giens Est sable,74816,Observation #74816,https://biolit.fr/observations/observation-74816/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164515173.jpg,,,Identifiable +N1,74810,Sortie #74810,https://biolit.fr/sorties/sortie-74810/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150511393_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150714250_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150726715.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_151057896-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_153127603_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_163706887.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164515173.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171433828.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171503430.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171520752.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193352638.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193414323.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193423362.jpg,05/03/2024,15.0000000,15.0000000,43.0399270000000,6.15129600000000,,Giens Est sable,74818,Observation #74818,https://biolit.fr/observations/observation-74818/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171433828.jpg,,,Identifiable +N1,74810,Sortie #74810,https://biolit.fr/sorties/sortie-74810/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150511393_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150714250_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150726715.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_151057896-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_153127603_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_163706887.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164515173.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171433828.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171503430.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171520752.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193352638.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193414323.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193423362.jpg,05/03/2024,15.0000000,15.0000000,43.0399270000000,6.15129600000000,,Giens Est sable,74820,Observation #74820,https://biolit.fr/observations/observation-74820/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193352638.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193414323.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193423362.jpg,,,Identifiable +N1,74810,Sortie #74810,https://biolit.fr/sorties/sortie-74810/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150511393_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150714250_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150726715.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_151057896-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_153127603_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_163706887.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164515173.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171433828.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171503430.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171520752.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193352638.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193414323.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193423362.jpg,05/03/2024,15.0000000,15.0000000,43.0399270000000,6.15129600000000,,Giens Est sable,74822,Observation #74822,https://biolit.fr/observations/observation-74822/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_163706887.jpg,,TRUE,Identifiable +N1,74810,Sortie #74810,https://biolit.fr/sorties/sortie-74810/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150511393_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150714250_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150726715.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_151057896-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_153127603_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_163706887.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164515173.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171433828.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171503430.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171520752.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193352638.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193414323.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193423362.jpg,05/03/2024,15.0000000,15.0000000,43.0399270000000,6.15129600000000,,Giens Est sable,74824,Observation #74824,https://biolit.fr/observations/observation-74824/,Pallenis maritima,Astérolide maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_153127603_HDR-scaled.jpg,,TRUE,Identifiable +N1,74828,Sortie #74828,https://biolit.fr/sorties/sortie-74828/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_9486-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_9487-scaled.jpg,05/04/2024,14.0000000,14.0000000,43.034525000000,6.16371200000000,,Giens Sus-Est,,,,,,,,,, +N1,74832,Sortie #74832,https://biolit.fr/sorties/sortie-74832/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_9486-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_9487-1-scaled.jpg,05/04/2024,14.0000000,14.0000000,43.0345440000000,6.1635460000000,,Giens Sus-Est,74834,Observation #74834,https://biolit.fr/observations/observation-74834/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_9486-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_9487-1-scaled.jpg,,TRUE,Identifiable +N1,74846,Sortie #74846,https://biolit.fr/sorties/sortie-74846/,Le Moal Nathalie,https://biolit.fr/wp-content/uploads/jet-form-builder/ecdbc5b27288c8b75ca677fa834bbbea/2024/05/20240510_142617-1-scaled.jpg,05/10/2024,14.0:26,14.0:26,48.574775000000,-4.6455430000000,,Coulouarn - Saint Pabu,74848,Observation #74848,https://biolit.fr/observations/observation-74848/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/ecdbc5b27288c8b75ca677fa834bbbea/2024/05/20240510_142617-1-scaled.jpg,,TRUE,Ne sais pas +N1,74854,Sortie #74854,https://biolit.fr/sorties/sortie-74854/,AILERONS,https://biolit.fr/wp-content/uploads/jet-form-builder/104a3ad0debfd3bf7c7f67cd28f4351b/2024/05/IMG_20240512_100843-scaled.jpg,05/12/2024,9.0000000,10.0000000,43.5236870000000,3.92484100000000,,"Plage de Palavas, Maison de la Mer",74856,Observation #74856,https://biolit.fr/observations/observation-74856/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/104a3ad0debfd3bf7c7f67cd28f4351b/2024/05/IMG_20240512_100843-scaled.jpg,,,Identifiable +N1,74878,Sortie #74878,https://biolit.fr/sorties/sortie-74878/,Varrier Marie Helene,https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG_20240507_151839_395.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0027.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0023.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0000.jpg,05/07/2024,14.0000000,15.0:45,49.6482340000000,0.154009000000000,GEMEL Normandie,Plage Antifer Saint Jouin de Bruneval,74880,Observation #74880,https://biolit.fr/observations/observation-74880/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0030.jpg,,,Ne sais pas +N1,74878,Sortie #74878,https://biolit.fr/sorties/sortie-74878/,Varrier Marie Helene,https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG_20240507_151839_395.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0027.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0023.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0000.jpg,05/07/2024,14.0000000,15.0:45,49.6482340000000,0.154009000000000,GEMEL Normandie,Plage Antifer Saint Jouin de Bruneval,74882,Observation #74882,https://biolit.fr/observations/observation-74882/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG_20240507_151839_395.jpg,,,Ne sais pas +N1,74878,Sortie #74878,https://biolit.fr/sorties/sortie-74878/,Varrier Marie Helene,https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG_20240507_151839_395.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0027.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0023.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0000.jpg,05/07/2024,14.0000000,15.0:45,49.6482340000000,0.154009000000000,GEMEL Normandie,Plage Antifer Saint Jouin de Bruneval,74884,Observation #74884,https://biolit.fr/observations/observation-74884/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0000.jpg,,,Ne sais pas +N1,74878,Sortie #74878,https://biolit.fr/sorties/sortie-74878/,Varrier Marie Helene,https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG_20240507_151839_395.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0027.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0023.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0000.jpg,05/07/2024,14.0000000,15.0:45,49.6482340000000,0.154009000000000,GEMEL Normandie,Plage Antifer Saint Jouin de Bruneval,74886,Observation #74886,https://biolit.fr/observations/observation-74886/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0029.jpg,,,Ne sais pas +N1,74878,Sortie #74878,https://biolit.fr/sorties/sortie-74878/,Varrier Marie Helene,https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG_20240507_151839_395.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0027.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0023.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0000.jpg,05/07/2024,14.0000000,15.0:45,49.6482340000000,0.154009000000000,GEMEL Normandie,Plage Antifer Saint Jouin de Bruneval,74888,Observation #74888,https://biolit.fr/observations/observation-74888/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0027.jpg,,TRUE,Ne sais pas +N1,74878,Sortie #74878,https://biolit.fr/sorties/sortie-74878/,Varrier Marie Helene,https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG_20240507_151839_395.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0027.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0023.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0000.jpg,05/07/2024,14.0000000,15.0:45,49.6482340000000,0.154009000000000,GEMEL Normandie,Plage Antifer Saint Jouin de Bruneval,74890,Observation #74890,https://biolit.fr/observations/observation-74890/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0025.jpg,,,Ne sais pas +N1,74898,Sortie #74898,https://biolit.fr/sorties/sortie-74898/,loiret francoise,https://biolit.fr/wp-content/uploads/jet-form-builder/ee140a939d9bc4a1964f3543e85a7ab7/2024/05/DAUPHINS.jpg,05/11/2024,21.0000000,22.0000000,47.4170680000000,-3.08647200000000,,BELLE ILE,,,,,,,,,, +N1,74915,Sortie #74915,https://biolit.fr/sorties/sortie-74915/,Colombier Jean-christophe,https://biolit.fr/wp-content/uploads/jet-form-builder/44e0d41337489840b454515bd7ff1877/2024/05/2024_05_14-18_36-Office-Lens.jpg,5/14/2024 0:00,16.0000000,17.0000000,47.7688420000000,-3.58769600000000,,Plage de la roche percée - Clohars-Carnoet,,,,,,,,,, +N1,74918,Sortie #74918,https://biolit.fr/sorties/sortie-74918/,Colombier Jean-christophe,https://biolit.fr/wp-content/uploads/jet-form-builder/44e0d41337489840b454515bd7ff1877/2024/05/2024_05_14-18_36-Office-Lens-1.jpg,5/14/2024 0:00,16.0000000,17.0000000,47.7688420000000,-3.58769600000000,,Plage de la roche percée - Clohars-Carnoet,,,,,,,,,, +N1,74929,Sortie #74929,https://biolit.fr/sorties/sortie-74929/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_172641109.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_172657102.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_172857076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_172905828.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_172913888.jpg,1/28/2024 0:00,12.0000000,12.0000000,43.2397010000000,5.36239100000000,,Plage de l’Anse du Bain des Dames,74931,Observation #74931,https://biolit.fr/observations/observation-74931/,Jujubinus exasperatus,Troque pygmée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_172641109.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_172657102.jpg,,,Identifiable +N1,74929,Sortie #74929,https://biolit.fr/sorties/sortie-74929/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_172641109.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_172657102.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_172857076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_172905828.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_172913888.jpg,1/28/2024 0:00,12.0000000,12.0000000,43.2397010000000,5.36239100000000,,Plage de l’Anse du Bain des Dames,74933,Observation #74933,https://biolit.fr/observations/observation-74933/,Jujubinus striatus,Troque jujube striée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_172857076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_172905828.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_172913888.jpg,,,Identifiable +N1,74939,Sortie #74939,https://biolit.fr/sorties/sortie-74939/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_153122835_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_153215001_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_153256198.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_154109451.jpg,05/04/2024,10.0000000,10.0000000,43.0342550000000,6.1625480000000,,Giens Sus-Est,74941,Observation #74941,https://biolit.fr/observations/observation-74941/,Jujubinus exasperatus,Troque pygmée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_153122835_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_153215001_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_153256198.jpg,,,Identifiable +N1,74939,Sortie #74939,https://biolit.fr/sorties/sortie-74939/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_153122835_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_153215001_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_153256198.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_154109451.jpg,05/04/2024,10.0000000,10.0000000,43.0342550000000,6.1625480000000,,Giens Sus-Est,74943,Observation #74943,https://biolit.fr/observations/observation-74943/,Jujubinus striatus,Troque jujube striée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_154109451.jpg,,,Identifiable +N1,74952,Sortie #74952,https://biolit.fr/sorties/sortie-74952/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_143552864_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_144442894-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_144447001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145202404_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145419746_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145430506.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145452818.jpg,05/11/2024,14.0000000,15.0000000,43.3501840000000,4.87883800000000,,Plage Napoléon,74956,Observation #74956,https://biolit.fr/observations/observation-74956/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_144442894-scaled.jpg,,,Identifiable +N1,74952,Sortie #74952,https://biolit.fr/sorties/sortie-74952/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_143552864_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_144442894-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_144447001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145202404_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145419746_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145430506.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145452818.jpg,05/11/2024,14.0000000,15.0000000,43.3501840000000,4.87883800000000,,Plage Napoléon,74958,Observation #74958,https://biolit.fr/observations/observation-74958/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_144447001-scaled.jpg,,,Identifiable +N1,74952,Sortie #74952,https://biolit.fr/sorties/sortie-74952/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_143552864_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_144442894-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_144447001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145202404_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145419746_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145430506.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145452818.jpg,05/11/2024,14.0000000,15.0000000,43.3501840000000,4.87883800000000,,Plage Napoléon,74960,Observation #74960,https://biolit.fr/observations/observation-74960/,Loripes orbiculatus,Loripes orbiculaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145202404_HDR.jpg,,,Identifiable +N1,74952,Sortie #74952,https://biolit.fr/sorties/sortie-74952/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_143552864_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_144442894-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_144447001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145202404_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145419746_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145430506.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145452818.jpg,05/11/2024,14.0000000,15.0000000,43.3501840000000,4.87883800000000,,Plage Napoléon,74962,Observation #74962,https://biolit.fr/observations/observation-74962/,Barnea candida,Pholade blanche,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145419746_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145430506.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145452818.jpg,,TRUE,Identifiable +N1,74967,Sortie #74967,https://biolit.fr/sorties/sortie-74967/,RAHHALI Chaimae,https://biolit.fr/wp-content/uploads/jet-form-builder/fbefb71e86a4176d6a41132f6d947a7b/2024/05/Forteresse_Jadida_01-2-scaled.jpeg,5/15/2024 0:00,13.0000000,17.0000000,33.2316330,-8.5007120,,El jadida,,,,,,,,,, +N1,74972,Sortie #74972,https://biolit.fr/sorties/sortie-74972/,RAHHALI Chaimae,https://biolit.fr/wp-content/uploads/jet-form-builder/fbefb71e86a4176d6a41132f6d947a7b/2024/05/3000x2000-scaled.jpeg,5/15/2024 0:00,13.0000000,17.0000000,31.507026,-9.76927,,Essaouira,,,,,,,,,, +N1,74979,Sortie #74979,https://biolit.fr/sorties/sortie-74979/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/05/tempImageIbI3eB-scaled.jpg,4/24/2024 0:00,12.0000000,12.0000000,43.4569500000000,3.81669800000000,Planète Mer,Frontignan,74981,Observation #74981,https://biolit.fr/observations/observation-74981/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/05/tempImageIbI3eB-scaled.jpg,,TRUE,Identifiable +N1,74984,Sortie #74984,https://biolit.fr/sorties/sortie-74984/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/05/monodonte.jpg,5/15/2024 0:00,13.0:34,14.000005,48.6385960000000,-2.076416000000,Planète Mer,'-èè-(,,,,,,,,,, +N1,75014,Sortie #75014,https://biolit.fr/sorties/sortie-75014/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4728-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4730-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4734-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4735-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4740-scaled.jpg,05/09/2024,16.0000000,16.0000000,47.1312680000000,-2.23049100000000,,Préfailles,75016,Observation #75016,https://biolit.fr/observations/observation-75016/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4728-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4730-scaled.jpg,,TRUE,Identifiable +N1,75014,Sortie #75014,https://biolit.fr/sorties/sortie-75014/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4728-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4730-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4734-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4735-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4740-scaled.jpg,05/09/2024,16.0000000,16.0000000,47.1312680000000,-2.23049100000000,,Préfailles,75018,Observation #75018,https://biolit.fr/observations/observation-75018/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4732-scaled.jpg,,TRUE,Identifiable +N1,75014,Sortie #75014,https://biolit.fr/sorties/sortie-75014/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4728-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4730-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4734-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4735-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4740-scaled.jpg,05/09/2024,16.0000000,16.0000000,47.1312680000000,-2.23049100000000,,Préfailles,75020,Observation #75020,https://biolit.fr/observations/observation-75020/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4735-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4736-scaled.jpg,,TRUE,Identifiable +N1,75014,Sortie #75014,https://biolit.fr/sorties/sortie-75014/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4728-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4730-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4734-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4735-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4740-scaled.jpg,05/09/2024,16.0000000,16.0000000,47.1312680000000,-2.23049100000000,,Préfailles,75022,Observation #75022,https://biolit.fr/observations/observation-75022/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4740-scaled.jpg,,TRUE,Identifiable +N1,75014,Sortie #75014,https://biolit.fr/sorties/sortie-75014/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4728-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4730-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4734-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4735-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4740-scaled.jpg,05/09/2024,16.0000000,16.0000000,47.1312680000000,-2.23049100000000,,Préfailles,75024,Observation #75024,https://biolit.fr/observations/observation-75024/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4734-scaled.jpg,,,Ne sais pas +N1,75014,Sortie #75014,https://biolit.fr/sorties/sortie-75014/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4728-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4730-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4734-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4735-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4740-scaled.jpg,05/09/2024,16.0000000,16.0000000,47.1312680000000,-2.23049100000000,,Préfailles,75026,Observation #75026,https://biolit.fr/observations/observation-75026/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4737-scaled.jpg,,,Ne sais pas +N1,75031,Sortie #75031,https://biolit.fr/sorties/sortie-75031/,Marwen Charon,https://biolit.fr/wp-content/uploads/jet-form-builder/00ebb9e5156458eafe699000fd7dc07e/2024/05/Screenshot_2024-05-16-17-07-00-585_com.android.chrome-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/00ebb9e5156458eafe699000fd7dc07e/2024/05/Screenshot_2024-05-16-17-06-47-742_com.android.chrome-scaled.jpg,5/18/2024 0:00,20.0:34,22.000005,24.3667790000000,-12.9361050000000,,Bernie en retz,,,,,,,,,, +N1,75034,Sortie #75034,https://biolit.fr/sorties/sortie-75034/,Allory Pierre-Yves,https://biolit.fr/wp-content/uploads/jet-form-builder/c18157d07e1278e5f88893fd571eb7bf/2024/05/1000016260-scaled.jpg,5/19/2024 0:00,15.0000000,15.0000000,48.6324180,-2.2550650,,Grande plage,75036,Observation #75036,https://biolit.fr/observations/observation-75036/,Dosinia exoleta,Dosinie radiée,,https://biolit.fr/wp-content/uploads/jet-form-builder/c18157d07e1278e5f88893fd571eb7bf/2024/05/1000016260-scaled.jpg,,,Identifiable +N1,75042,Sortie #75042,https://biolit.fr/sorties/sortie-75042/,Eskenazi Henri,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7b43300a8619ca87f70293722ac13f/2024/05/IMG_0998-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7b43300a8619ca87f70293722ac13f/2024/05/IMG_0997-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7b43300a8619ca87f70293722ac13f/2024/05/IMG_0995-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7b43300a8619ca87f70293722ac13f/2024/05/IMG_0994-scaled.jpeg,5/19/2024 0:00,14.0000000,20.0000000,43.2109590000000,5.42170800000000,,Sormiou,75044,Observation #75044,https://biolit.fr/observations/observation-75044/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7b43300a8619ca87f70293722ac13f/2024/05/IMG_0998-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7b43300a8619ca87f70293722ac13f/2024/05/IMG_0997-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7b43300a8619ca87f70293722ac13f/2024/05/IMG_0995-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7b43300a8619ca87f70293722ac13f/2024/05/IMG_0994-scaled.jpeg,,TRUE,Identifiable +N1,75048,Sortie #75048,https://biolit.fr/sorties/sortie-75048/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/05/tempImagei8bvoI-scaled.jpg,5/17/2024 0:00,16.0000000,16.0000000,43.1665170000000,5.60611500000000,,Calanque du Mugel,75050,Observation #75050,https://biolit.fr/observations/observation-75050/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/05/tempImagei8bvoI-scaled.jpg,,TRUE,Identifiable +N1,75053,Sortie #75053,https://biolit.fr/sorties/sortie-75053/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/05/tempImagewPpceG-scaled.jpg,5/18/2024 0:00,14.0000000,14.0000000,43.2842680000000,5.31585700000000,,Frioul,75055,Observation #75055,https://biolit.fr/observations/observation-75055/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/05/tempImagewPpceG-scaled.jpg,,TRUE,Identifiable +N1,75058,Sortie #75058,https://biolit.fr/sorties/sortie-75058/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/05/tempImagetgt8bq-scaled.jpg,5/18/2024 0:00,14.0000000,14.0000000,43.2842870000000,5.315942000000,,Frioul,75060,Observation #75060,https://biolit.fr/observations/observation-75060/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/05/tempImagetgt8bq-scaled.jpg,,TRUE,non-identifiable +N1,75109,Sortie #75109,https://biolit.fr/sorties/sortie-75109/,VIAL Thérèse,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/05/IMG_20240520_152619573_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/05/IMG_20240520_152640910_HDR-scaled.jpg,5/20/2024 0:00,14.0000000,15.0000000,43.2900680000000,5.35557800000000,,Plage des Catalans,75111,Observation #75111,https://biolit.fr/observations/observation-75111/,Pallenis maritima,Astérolide maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/05/IMG_20240520_152619573_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/05/IMG_20240520_152640910_HDR-scaled.jpg,,TRUE,Identifiable +N1,75116,Sortie #75116,https://biolit.fr/sorties/sortie-75116/,VIAL Thérèse,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/05/IMG_20240521_121209946_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/05/IMG_20240521_112456666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/05/IMG_20240521_112300869_HDR-scaled.jpg,5/21/2024 0:00,11.0000000,12.0000000,43.2847040000000,5.34948300000000,,Vallon des Auffes,75120,Observation #75120,https://biolit.fr/observations/observation-75120/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/05/IMG_20240521_121209946_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/05/IMG_20240521_112456666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/05/IMG_20240521_112300869_HDR-scaled.jpg,,TRUE,Identifiable +N1,75171,Sortie #75171,https://biolit.fr/sorties/sortie-75171/,Chevalier Raphaël,https://biolit.fr/wp-content/uploads/jet-form-builder/54141746fea9bf833df52df7dca0838e/2024/05/IMG_20240522_101931-scaled.jpg,5/22/2024 0:00,10.0000000,11.0000000,43.2148430000000,5.34295500000000,,Anse de la maronaise,75173,Observation #75173,https://biolit.fr/observations/observation-75173/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/54141746fea9bf833df52df7dca0838e/2024/05/IMG_20240522_101931-scaled.jpg,,TRUE,Identifiable +N1,75177,Sortie #75177,https://biolit.fr/sorties/sortie-75177/,Chevalier Raphaël,https://biolit.fr/wp-content/uploads/jet-form-builder/54141746fea9bf833df52df7dca0838e/2024/05/IMG_20240522_101648-scaled.jpg,5/22/2024 0:00,10.0000000,11.0000000,43.2148430000000,5.34295500000000,,Anse de la maronaise,,,,,,,,,, +N1,75180,Sortie #75180,https://biolit.fr/sorties/sortie-75180/,Chevalier Raphaël,https://biolit.fr/wp-content/uploads/jet-form-builder/54141746fea9bf833df52df7dca0838e/2024/05/IMG_20240522_101648-1-scaled.jpg,5/22/2024 0:00,10.0000000,11.0000000,43.2148310000000,5.34293800000000,,Anse de la maronaise,75182,Observation #75182,https://biolit.fr/observations/observation-75182/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/54141746fea9bf833df52df7dca0838e/2024/05/IMG_20240522_101648-1-scaled.jpg,,TRUE,Identifiable +N1,75188,Sortie #75188,https://biolit.fr/sorties/sortie-75188/,blandine melis,https://biolit.fr/wp-content/uploads/jet-form-builder/ffcf88956e22be64aec794a823940a79/2024/05/B-Melis-P5190037red.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ffcf88956e22be64aec794a823940a79/2024/05/B-Melis-P5190045red.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ffcf88956e22be64aec794a823940a79/2024/05/B-Melis-P5190049red.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ffcf88956e22be64aec794a823940a79/2024/05/B-Melis-P5190102red.jpg,5/19/2024 0:00,10.0000000,15.0000000,43.2116670000000,5.45526700000000,,calanque de Sugiton,75190,Observation #75190,https://biolit.fr/observations/observation-75190/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/ffcf88956e22be64aec794a823940a79/2024/05/B-Melis-P5190037red.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ffcf88956e22be64aec794a823940a79/2024/05/B-Melis-P5190045red.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ffcf88956e22be64aec794a823940a79/2024/05/B-Melis-P5190049red.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ffcf88956e22be64aec794a823940a79/2024/05/B-Melis-P5190102red.jpg,,TRUE,Identifiable +N1,75193,Sortie #75193,https://biolit.fr/sorties/sortie-75193/,picault patrick,https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/05/PXL_20240427_165259184_exported_1716445492483-scaled.jpg,4/28/2024 0:00,6.0000000,6.0000000,43.556842,4.068511,,La Grande Motte,75195,Observation #75195,https://biolit.fr/observations/observation-75195/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/05/PXL_20240427_165259184_exported_1716445492483-scaled.jpg,,FALSE,Ne sais pas +N1,75229,Sortie #75229,https://biolit.fr/sorties/sortie-75229/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/05/IMG_3392.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/05/IMG_3393.jpg,5/18/2024 0:00,14.0000000,14.0000000,43.2842520000000,5.31587500000000,,Frioul,75231,Observation #75231,https://biolit.fr/observations/observation-75231/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/05/IMG_3392.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/05/IMG_3393.jpg,,TRUE,Identifiable +N1,75237,Sortie #75237,https://biolit.fr/sorties/sortie-75237/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00131.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0013.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.6483160000000,-362.030742000000,Planète Mer (antenne Dinard),SAINT-MALO,,,,,,,,,, +N1,75243,Sortie #75243,https://biolit.fr/sorties/sortie-75243/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0007-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0007-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0008-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0008.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.644096,-1.9955710,,Saint-Malo,,,,,,,,,, +N1,75250,Sortie #75250,https://biolit.fr/sorties/sortie-75250/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA00051.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.6482950000000,357.96914900000,Planète Mer (antenne Dinard),Plage de bonsecours,,,,,,,,,, +N1,75254,Sortie #75254,https://biolit.fr/sorties/sortie-75254/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0012-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00131-1-rotated.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.6482300000000,-2.03080200000000,Planète Mer (antenne Dinard),SAINT-MALO,75256,Observation #75256,https://biolit.fr/observations/observation-75256/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0012-1-rotated.jpg,,TRUE,Identifiable +N1,75254,Sortie #75254,https://biolit.fr/sorties/sortie-75254/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0012-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00131-1-rotated.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.6482300000000,-2.03080200000000,Planète Mer (antenne Dinard),SAINT-MALO,75273,Observation #75273,https://biolit.fr/observations/observation-75273/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00131-1-rotated.jpg,,,Identifiable +N1,75263,Sortie #75263,https://biolit.fr/sorties/sortie-75263/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA00051-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0009-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0008-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0007-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0006-1.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.6482370000000,-2.03079200000000,,Plage de bonsecours,75265,Observation #75265,https://biolit.fr/observations/observation-75265/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA00051-1-rotated.jpg,,TRUE,Identifiable +N1,75271,Sortie #75271,https://biolit.fr/sorties/sortie-75271/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00044.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00056.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00094.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00113.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.6475740,-2.0277380,,Saint-Malo,,,,,,,,,, +N1,75279,Sortie #75279,https://biolit.fr/sorties/sortie-75279/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00044-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00056-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00094-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00113-1-rotated.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.6484120000000,-2.03095200000000,,Saint-Malo,75281,Observation #75281,https://biolit.fr/observations/observation-75281/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00044-1-rotated.jpg,,TRUE,Identifiable +N1,75279,Sortie #75279,https://biolit.fr/sorties/sortie-75279/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00044-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00056-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00094-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00113-1-rotated.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.6484120000000,-2.03095200000000,,Saint-Malo,75283,Observation #75283,https://biolit.fr/observations/observation-75283/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00056-1-rotated.jpg,,TRUE,Identifiable +N1,75279,Sortie #75279,https://biolit.fr/sorties/sortie-75279/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00044-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00056-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00094-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00113-1-rotated.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.6484120000000,-2.03095200000000,,Saint-Malo,75285,Observation #75285,https://biolit.fr/observations/observation-75285/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00094-1-rotated.jpg,,TRUE,Identifiable +N1,75279,Sortie #75279,https://biolit.fr/sorties/sortie-75279/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00044-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00056-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00094-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00113-1-rotated.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.6484120000000,-2.03095200000000,,Saint-Malo,75287,Observation #75287,https://biolit.fr/observations/observation-75287/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00113-1-rotated.jpg,,TRUE,Identifiable +N1,75294,Sortie #75294,https://biolit.fr/sorties/sortie-75294/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0004-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00051-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00061-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00091-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00111-rotated.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.647717,-2.028082,Planète Mer (antenne Dinard),Plage Bon secours Saint-Malo,75296,Observation #75296,https://biolit.fr/observations/observation-75296/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0004-rotated.jpg,,TRUE,Identifiable +N1,75294,Sortie #75294,https://biolit.fr/sorties/sortie-75294/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0004-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00051-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00061-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00091-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00111-rotated.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.647717,-2.028082,Planète Mer (antenne Dinard),Plage Bon secours Saint-Malo,75298,Observation #75298,https://biolit.fr/observations/observation-75298/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00051-rotated.jpg,,TRUE,Identifiable +N1,75294,Sortie #75294,https://biolit.fr/sorties/sortie-75294/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0004-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00051-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00061-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00091-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00111-rotated.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.647717,-2.028082,Planète Mer (antenne Dinard),Plage Bon secours Saint-Malo,75300,Observation #75300,https://biolit.fr/observations/observation-75300/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00061-rotated.jpg,,TRUE,Identifiable +N1,75294,Sortie #75294,https://biolit.fr/sorties/sortie-75294/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0004-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00051-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00061-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00091-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00111-rotated.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.647717,-2.028082,Planète Mer (antenne Dinard),Plage Bon secours Saint-Malo,75302,Observation #75302,https://biolit.fr/observations/observation-75302/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00091-rotated.jpg,,,Identifiable +N1,75294,Sortie #75294,https://biolit.fr/sorties/sortie-75294/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0004-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00051-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00061-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00091-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00111-rotated.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.647717,-2.028082,Planète Mer (antenne Dinard),Plage Bon secours Saint-Malo,75304,Observation #75304,https://biolit.fr/observations/observation-75304/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00111-rotated.jpg,,TRUE,Identifiable +N1,75308,Sortie #75308,https://biolit.fr/sorties/sortie-75308/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0007-1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0008-2.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.644096,-1.9955710,Planète Mer (antenne Dinard),PLage de Bon Secours - Saint-Malo,,,,,,,,,, +N1,75314,Sortie #75314,https://biolit.fr/sorties/sortie-75314/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0009-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0008-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0007-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0006-2.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.6482380000000,-2.03071500000000,Planète Mer (antenne Dinard),Plage de Bon Secours - Saint Malo,75316,Observation #75316,https://biolit.fr/observations/observation-75316/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0009-2.jpg,,TRUE,Identifiable +N1,75314,Sortie #75314,https://biolit.fr/sorties/sortie-75314/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0009-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0008-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0007-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0006-2.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.6482380000000,-2.03071500000000,Planète Mer (antenne Dinard),Plage de Bon Secours - Saint Malo,75319,Observation #75319,https://biolit.fr/observations/observation-75319/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0008-2.jpg,,TRUE,Identifiable +N1,75314,Sortie #75314,https://biolit.fr/sorties/sortie-75314/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0009-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0008-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0007-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0006-2.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.6482380000000,-2.03071500000000,Planète Mer (antenne Dinard),Plage de Bon Secours - Saint Malo,75321,Observation #75321,https://biolit.fr/observations/observation-75321/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0007-2.jpg,,TRUE,Identifiable +N1,75314,Sortie #75314,https://biolit.fr/sorties/sortie-75314/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0009-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0008-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0007-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0006-2.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.6482380000000,-2.03071500000000,Planète Mer (antenne Dinard),Plage de Bon Secours - Saint Malo,75323,Observation #75323,https://biolit.fr/observations/observation-75323/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0006-2.jpg,,TRUE,Identifiable +N1,75327,Sortie #75327,https://biolit.fr/sorties/sortie-75327/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0007-1-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0008-3.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.6475690,-2.0278490,Planète Mer (antenne Dinard),PLage de Bon Secours - Saint-Malo,75329,Observation #75329,https://biolit.fr/observations/observation-75329/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0007-1-2.jpg,,TRUE,Identifiable +N1,75327,Sortie #75327,https://biolit.fr/sorties/sortie-75327/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0007-1-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0008-3.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.6475690,-2.0278490,Planète Mer (antenne Dinard),PLage de Bon Secours - Saint-Malo,75331,Observation #75331,https://biolit.fr/observations/observation-75331/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0008-3.jpg,,TRUE,Identifiable +N1,75334,Sortie #75334,https://biolit.fr/sorties/sortie-75334/,Théo DEMONCHY,https://biolit.fr/wp-content/uploads/jet-form-builder/0588f3394f394e9490762b51fc822759/2024/05/Capture-decran-2024-05-23-182227.png,2/23/2023 0:00,18.0000000,18.0000000,43.5061770000000,6.9537880000000,Watch The Sea,Pointe de l'Aiguille,75336,Observation #75336,https://biolit.fr/observations/observation-75336/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0588f3394f394e9490762b51fc822759/2024/05/Capture-decran-2024-05-23-182227.png,,,Ne sais pas +N1,75334,Sortie #75334,https://biolit.fr/sorties/sortie-75334/,Théo DEMONCHY,https://biolit.fr/wp-content/uploads/jet-form-builder/0588f3394f394e9490762b51fc822759/2024/05/Capture-decran-2024-05-23-182227.png,2/23/2023 0:00,18.0000000,18.0000000,43.5061770000000,6.9537880000000,Watch The Sea,Pointe de l'Aiguille,75338,Observation #75338,https://biolit.fr/observations/observation-75338/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0588f3394f394e9490762b51fc822759/2024/05/Capture-decran-2024-05-23-182227.png,,,Ne sais pas +N1,75344,Sortie #75344,https://biolit.fr/sorties/sortie-75344/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240519_175524260_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240519_174102598_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240519_174046755_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240519_171421499_HDR-rotated.jpg,5/19/2024 0:00,17.0000000,18.0000000,43.2560420000000,5.37525300000000,,Plage Borély,75346,Observation #75346,https://biolit.fr/observations/observation-75346/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240519_175524260_HDR-scaled.jpg,,TRUE,Identifiable +N1,75344,Sortie #75344,https://biolit.fr/sorties/sortie-75344/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240519_175524260_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240519_174102598_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240519_174046755_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240519_171421499_HDR-rotated.jpg,5/19/2024 0:00,17.0000000,18.0000000,43.2560420000000,5.37525300000000,,Plage Borély,75348,Observation #75348,https://biolit.fr/observations/observation-75348/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240519_174102598_HDR-scaled.jpg,,TRUE,Identifiable +N1,75344,Sortie #75344,https://biolit.fr/sorties/sortie-75344/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240519_175524260_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240519_174102598_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240519_174046755_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240519_171421499_HDR-rotated.jpg,5/19/2024 0:00,17.0000000,18.0000000,43.2560420000000,5.37525300000000,,Plage Borély,75350,Observation #75350,https://biolit.fr/observations/observation-75350/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240519_174046755_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240519_171421499_HDR-rotated.jpg,,TRUE,Identifiable +N1,75372,Sortie #75372,https://biolit.fr/sorties/sortie-75372/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104820230.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104712261.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104756316.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054193532.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054106582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055496962.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055374722.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104954105.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104942565-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104932790-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104920949-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104913117-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104859163.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104846273-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104811049.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_103256291-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102802629_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102729501-scaled.jpg,5/23/2024 0:00,10.0000000,10.0:15,43.2597650000000,5.37459800000000,,Plage de l'Huveaune,75374,Observation #75374,https://biolit.fr/observations/observation-75374/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104820230.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104811049.jpg,,,Identifiable +N1,75372,Sortie #75372,https://biolit.fr/sorties/sortie-75372/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104820230.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104712261.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104756316.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054193532.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054106582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055496962.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055374722.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104954105.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104942565-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104932790-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104920949-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104913117-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104859163.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104846273-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104811049.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_103256291-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102802629_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102729501-scaled.jpg,5/23/2024 0:00,10.0000000,10.0:15,43.2597650000000,5.37459800000000,,Plage de l'Huveaune,75376,Observation #75376,https://biolit.fr/observations/observation-75376/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104712261.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104756316.jpg,,TRUE,Identifiable +N1,75372,Sortie #75372,https://biolit.fr/sorties/sortie-75372/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104820230.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104712261.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104756316.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054193532.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054106582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055496962.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055374722.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104954105.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104942565-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104932790-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104920949-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104913117-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104859163.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104846273-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104811049.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_103256291-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102802629_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102729501-scaled.jpg,5/23/2024 0:00,10.0000000,10.0:15,43.2597650000000,5.37459800000000,,Plage de l'Huveaune,75378,Observation #75378,https://biolit.fr/observations/observation-75378/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054193532.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054106582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_103256291-rotated.jpg,,,Identifiable +N1,75372,Sortie #75372,https://biolit.fr/sorties/sortie-75372/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104820230.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104712261.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104756316.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054193532.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054106582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055496962.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055374722.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104954105.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104942565-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104932790-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104920949-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104913117-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104859163.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104846273-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104811049.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_103256291-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102802629_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102729501-scaled.jpg,5/23/2024 0:00,10.0000000,10.0:15,43.2597650000000,5.37459800000000,,Plage de l'Huveaune,75380,Observation #75380,https://biolit.fr/observations/observation-75380/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055496962.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055374722.jpg,,,Identifiable +N1,75372,Sortie #75372,https://biolit.fr/sorties/sortie-75372/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104820230.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104712261.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104756316.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054193532.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054106582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055496962.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055374722.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104954105.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104942565-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104932790-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104920949-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104913117-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104859163.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104846273-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104811049.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_103256291-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102802629_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102729501-scaled.jpg,5/23/2024 0:00,10.0000000,10.0:15,43.2597650000000,5.37459800000000,,Plage de l'Huveaune,75382,Observation #75382,https://biolit.fr/observations/observation-75382/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104954105.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104942565-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104932790-rotated.jpg,,,Identifiable +N1,75372,Sortie #75372,https://biolit.fr/sorties/sortie-75372/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104820230.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104712261.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104756316.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054193532.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054106582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055496962.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055374722.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104954105.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104942565-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104932790-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104920949-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104913117-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104859163.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104846273-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104811049.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_103256291-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102802629_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102729501-scaled.jpg,5/23/2024 0:00,10.0000000,10.0:15,43.2597650000000,5.37459800000000,,Plage de l'Huveaune,75384,Observation #75384,https://biolit.fr/observations/observation-75384/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104920949-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104913117-rotated.jpg,,TRUE,Identifiable +N1,75372,Sortie #75372,https://biolit.fr/sorties/sortie-75372/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104820230.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104712261.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104756316.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054193532.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054106582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055496962.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055374722.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104954105.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104942565-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104932790-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104920949-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104913117-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104859163.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104846273-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104811049.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_103256291-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102802629_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102729501-scaled.jpg,5/23/2024 0:00,10.0000000,10.0:15,43.2597650000000,5.37459800000000,,Plage de l'Huveaune,75386,Observation #75386,https://biolit.fr/observations/observation-75386/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104859163.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104846273-rotated.jpg,,,Identifiable +N1,75372,Sortie #75372,https://biolit.fr/sorties/sortie-75372/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104820230.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104712261.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104756316.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054193532.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054106582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055496962.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055374722.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104954105.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104942565-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104932790-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104920949-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104913117-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104859163.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104846273-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104811049.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_103256291-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102802629_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102729501-scaled.jpg,5/23/2024 0:00,10.0000000,10.0:15,43.2597650000000,5.37459800000000,,Plage de l'Huveaune,75388,Observation #75388,https://biolit.fr/observations/observation-75388/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102802629_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102729501-scaled.jpg,,TRUE,Identifiable +N1,75401,Sortie #75401,https://biolit.fr/sorties/sortie-75401/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_9490-scaled.jpg,05/11/2024,14.0000000,15.0000000,43.3666450000000,4.86824500000000,,Plage Napoléon,75403,Observation #75403,https://biolit.fr/observations/observation-75403/,Phoenicopterus roseus,Flamant rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_9490-scaled.jpg,,TRUE,Identifiable +N1,75409,Sortie #75409,https://biolit.fr/sorties/sortie-75409/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_173303415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_173315330.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_173433867.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_173455613.jpg,05/03/2024,10.0000000,11.0000000,43.0345010000000,6.16451200000000,,Giens Sud-Est,75411,Observation #75411,https://biolit.fr/observations/observation-75411/,Tricolia pullus,Phasianelle minuscule,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_173303415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_173315330.jpg,,,Identifiable +N1,75409,Sortie #75409,https://biolit.fr/sorties/sortie-75409/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_173303415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_173315330.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_173433867.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_173455613.jpg,05/03/2024,10.0000000,11.0000000,43.0345010000000,6.16451200000000,,Giens Sud-Est,75413,Observation #75413,https://biolit.fr/observations/observation-75413/,Tricolia speciosa,Phasianelle esthétique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_173433867.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_173455613.jpg,,,Identifiable +N1,75418,Sortie #75418,https://biolit.fr/sorties/sortie-75418/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240526_112606956.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240526_112621191.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240526_112634855.jpg,05/03/2024,10.0000000,10.0:15,43.0345060000000,6.1577180000000,,Giens,75420,Observation #75420,https://biolit.fr/observations/observation-75420/,Epitonium clathrus,Scalaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240526_112606956.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240526_112621191.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240526_112634855.jpg,,,Identifiable +N1,75476,Sortie #75476,https://biolit.fr/sorties/sortie-75476/,RAHHALI Chaimae,https://biolit.fr/wp-content/uploads/jet-form-builder/cbc831ed740f2bea15efbf31e21b23c2/2024/05/sur-rive.jpeg,5/27/2024 0:00,13.0000000,18.0000000,33.2316330,-8.5007120,,El Jadida,75478,Observation #75478,https://biolit.fr/observations/observation-75478/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cbc831ed740f2bea15efbf31e21b23c2/2024/05/sur-rive.jpeg,,,non-identifiable +N1,75580,Sortie #75580,https://biolit.fr/sorties/sortie-75580/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240526_112725197.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240526_112734113.jpg,05/03/2024,10.0000000,11.0000000,43.0345840000000,6.16573500000000,,Giens Sud-Est,75582,Observation #75582,https://biolit.fr/observations/observation-75582/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240526_112725197.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240526_112734113.jpg,,,Identifiable +N1,75586,Sortie #75586,https://biolit.fr/sorties/sortie-75586/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_145054226_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_145110748.jpg,05/03/2024,10.0000000,11.0000000,43.0327040000000,6.16701200000000,,Giens Sud-Est,75588,Observation #75588,https://biolit.fr/observations/observation-75588/,Talochlamys multistriata,Pétoncle strié,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_145054226_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_145110748.jpg,,,Identifiable +N1,75703,Sortie #75703,https://biolit.fr/sorties/sortie-75703/,Cblondet,https://biolit.fr/wp-content/uploads/jet-form-builder/c197b1e0d91dcec93e7ffa5eb529bc9d/2024/05/velelles.jpg,5/26/2024 0:00,15.0:42,16.0000000,43.3722990000000,4.56344600000000,,Plage de Beauduc,,,,,,,,,, +N1,75708,Sortie #75708,https://biolit.fr/sorties/sortie-75708/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/05/MicrosoftTeams-image-11.jpg,5/22/2024 0:00,15.0000000,15.0000000,48.6427640000000,-2.07344400000000,Planète Mer (antenne Dinard),Plage de Saint Enogat,75710,Observation #75710,https://biolit.fr/observations/observation-75710/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/05/MicrosoftTeams-image-11.jpg,,TRUE,Identifiable +N1,75713,Sortie #75713,https://biolit.fr/sorties/sortie-75713/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4663-scaled.jpg,5/25/2024 0:00,16.0000000,16.0000000,43.2399050000000,5.36247900000000,Planète Mer,Bain des dames,,,,,,,,,, +N1,75725,Sortie #75725,https://biolit.fr/sorties/sortie-75725/,Cblondet,https://biolit.fr/wp-content/uploads/jet-form-builder/c197b1e0d91dcec93e7ffa5eb529bc9d/2024/05/velelles-1.jpg,5/28/2024 0:00,15.0:42,16.0000000,43.3722990000000,4.56344600000000,,Plage de Beauduc,,,,,,,,,, +N1,75728,Sortie #75728,https://biolit.fr/sorties/sortie-75728/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4668a-scaled.jpg,5/22/2024 0:00,16.0000000,16.0000000,43.2399050000000,5.36247900000000,,Bain des dames,,,,,,,,,, +N1,75735,Sortie #75735,https://biolit.fr/sorties/sortie-75735/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/05/MicrosoftTeams-image-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/05/MicrosoftTeams-image-13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/05/MicrosoftTeams-image-12.jpg,04/01/2024,15.0000000,15.0000000,43.1739530000000,5.69304800000000,Planète Mer,Saint Cyr Les Lecques,75739,Observation #75739,https://biolit.fr/observations/observation-75739/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/05/MicrosoftTeams-image-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/05/MicrosoftTeams-image-13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/05/MicrosoftTeams-image-12.jpg,,TRUE,Identifiable +N1,75780,Sortie #75780,https://biolit.fr/sorties/sortie-75780/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174756646.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174803662.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071525052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071600336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071609161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071618814.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071631882.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071550643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123135940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123128971_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_122814352_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121557723-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121545783-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121205144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121155628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120908846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120901898_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115318416_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115147323_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_114951990_HDR-rotated.jpg,5/28/2024 0:00,12.0000000,13.0000000,43.2594820000000,5.37518600000000,,Huveaune,75782,Observation #75782,https://biolit.fr/observations/observation-75782/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174756646.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174803662.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115318416_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_114951990_HDR-rotated.jpg,,TRUE,Identifiable +N1,75780,Sortie #75780,https://biolit.fr/sorties/sortie-75780/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174756646.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174803662.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071525052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071600336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071609161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071618814.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071631882.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071550643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123135940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123128971_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_122814352_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121557723-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121545783-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121205144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121155628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120908846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120901898_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115318416_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115147323_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_114951990_HDR-rotated.jpg,5/28/2024 0:00,12.0000000,13.0000000,43.2594820000000,5.37518600000000,,Huveaune,75784,Observation #75784,https://biolit.fr/observations/observation-75784/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071525052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071600336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071609161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071550643.jpg,,,Identifiable +N1,75780,Sortie #75780,https://biolit.fr/sorties/sortie-75780/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174756646.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174803662.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071525052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071600336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071609161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071618814.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071631882.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071550643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123135940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123128971_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_122814352_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121557723-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121545783-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121205144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121155628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120908846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120901898_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115318416_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115147323_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_114951990_HDR-rotated.jpg,5/28/2024 0:00,12.0000000,13.0000000,43.2594820000000,5.37518600000000,,Huveaune,75786,Observation #75786,https://biolit.fr/observations/observation-75786/,Corbicula fluminea,Corbicule asiatique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071618814.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071631882.jpg,,,Identifiable +N1,75780,Sortie #75780,https://biolit.fr/sorties/sortie-75780/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174756646.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174803662.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071525052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071600336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071609161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071618814.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071631882.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071550643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123135940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123128971_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_122814352_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121557723-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121545783-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121205144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121155628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120908846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120901898_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115318416_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115147323_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_114951990_HDR-rotated.jpg,5/28/2024 0:00,12.0000000,13.0000000,43.2594820000000,5.37518600000000,,Huveaune,75788,Observation #75788,https://biolit.fr/observations/observation-75788/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123135940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123128971_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_122814352_HDR-rotated.jpg,,TRUE,Identifiable +N1,75780,Sortie #75780,https://biolit.fr/sorties/sortie-75780/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174756646.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174803662.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071525052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071600336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071609161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071618814.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071631882.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071550643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123135940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123128971_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_122814352_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121557723-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121545783-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121205144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121155628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120908846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120901898_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115318416_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115147323_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_114951990_HDR-rotated.jpg,5/28/2024 0:00,12.0000000,13.0000000,43.2594820000000,5.37518600000000,,Huveaune,75790,Observation #75790,https://biolit.fr/observations/observation-75790/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121557723-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121545783-scaled.jpg,,,Identifiable +N1,75780,Sortie #75780,https://biolit.fr/sorties/sortie-75780/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174756646.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174803662.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071525052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071600336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071609161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071618814.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071631882.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071550643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123135940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123128971_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_122814352_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121557723-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121545783-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121205144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121155628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120908846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120901898_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115318416_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115147323_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_114951990_HDR-rotated.jpg,5/28/2024 0:00,12.0000000,13.0000000,43.2594820000000,5.37518600000000,,Huveaune,75792,Observation #75792,https://biolit.fr/observations/observation-75792/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121205144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121155628.jpg,,,Identifiable +N1,75780,Sortie #75780,https://biolit.fr/sorties/sortie-75780/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174756646.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174803662.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071525052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071600336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071609161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071618814.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071631882.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071550643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123135940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123128971_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_122814352_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121557723-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121545783-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121205144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121155628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120908846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120901898_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115318416_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115147323_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_114951990_HDR-rotated.jpg,5/28/2024 0:00,12.0000000,13.0000000,43.2594820000000,5.37518600000000,,Huveaune,75794,Observation #75794,https://biolit.fr/observations/observation-75794/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120908846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120901898_HDR-scaled.jpg,,,Identifiable +N1,75780,Sortie #75780,https://biolit.fr/sorties/sortie-75780/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174756646.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174803662.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071525052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071600336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071609161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071618814.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071631882.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071550643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123135940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123128971_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_122814352_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121557723-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121545783-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121205144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121155628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120908846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120901898_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115318416_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115147323_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_114951990_HDR-rotated.jpg,5/28/2024 0:00,12.0000000,13.0000000,43.2594820000000,5.37518600000000,,Huveaune,75796,Observation #75796,https://biolit.fr/observations/observation-75796/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115147323_HDR-rotated.jpg,,,Identifiable +N1,75806,Sortie #75806,https://biolit.fr/sorties/sortie-75806/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4669a-scaled.jpg,5/22/2024 0:00,16.0000000,16.0000000,43.2399050000000,5.36247900000000,,Bain des dames,,,,,,,,,, +N1,75809,Sortie #75809,https://biolit.fr/sorties/sortie-75809/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/05/bigorneau.jpg,05/09/2024,15.0000000,15.0000000,48.623408000000,-2.0819090000000,Planète Mer (antenne Dinard),Plage de Saint Enogat,,,,,,,,,, +N1,75816,Sortie #75816,https://biolit.fr/sorties/sortie-75816/,Cblondet,https://biolit.fr/wp-content/uploads/jet-form-builder/c197b1e0d91dcec93e7ffa5eb529bc9d/2024/05/Sabot-de-Venus-Bis.jpg,5/30/2024 0:00,15.0:42,16.0000000,43.3722990000000,4.56344600000000,,Plage de Beauduc,,,,,,,,,, +N1,75821,Sortie #75821,https://biolit.fr/sorties/sortie-75821/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/05/monodonte-1.jpg,05/09/2024,15.0000000,15.0000000,49.2082070000000,-2.1258540000000,Planète Mer,Plage de Saint Enogat,,,,,,,,,, +N1,75841,Sortie #75841,https://biolit.fr/sorties/sortie-75841/,Céline,https://biolit.fr/wp-content/uploads/jet-form-builder/a124436f212872e36bd7cc12bfe0fd03/2024/05/velelles.jpg,5/26/2024 0:00,15.0:38,16.0000000,43.3634980000000,4.57912400000000,,Plage de beauduc,75843,Observation #75843,https://biolit.fr/observations/observation-75843/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a124436f212872e36bd7cc12bfe0fd03/2024/05/velelles.jpg,,TRUE,Identifiable +N1,75898,Sortie #75898,https://biolit.fr/sorties/sortie-75898/,ROBERT CLEMENT,https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145656-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145711-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145914-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150513-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150553-scaled.jpg,5/31/2024 0:00,14.0000000,15.0000000,49.2909600000000,-0.13407800000000,,Cabourg,75900,Observation #75900,https://biolit.fr/observations/observation-75900/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145914-scaled.jpg,,TRUE,Identifiable +N1,75898,Sortie #75898,https://biolit.fr/sorties/sortie-75898/,ROBERT CLEMENT,https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145656-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145711-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145914-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150513-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150553-scaled.jpg,5/31/2024 0:00,14.0000000,15.0000000,49.2909600000000,-0.13407800000000,,Cabourg,75902,Observation #75902,https://biolit.fr/observations/observation-75902/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145656-scaled.jpg,,TRUE,Identifiable +N1,75898,Sortie #75898,https://biolit.fr/sorties/sortie-75898/,ROBERT CLEMENT,https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145656-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145711-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145914-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150513-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150553-scaled.jpg,5/31/2024 0:00,14.0000000,15.0000000,49.2909600000000,-0.13407800000000,,Cabourg,75904,Observation #75904,https://biolit.fr/observations/observation-75904/,Phyllophora crispa,Algue rouge à frisottis,,https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145711-scaled.jpg,,,Identifiable +N1,75898,Sortie #75898,https://biolit.fr/sorties/sortie-75898/,ROBERT CLEMENT,https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145656-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145711-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145914-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150513-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150553-scaled.jpg,5/31/2024 0:00,14.0000000,15.0000000,49.2909600000000,-0.13407800000000,,Cabourg,75906,Observation #75906,https://biolit.fr/observations/observation-75906/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150553-scaled.jpg,,TRUE,Identifiable +N1,75898,Sortie #75898,https://biolit.fr/sorties/sortie-75898/,ROBERT CLEMENT,https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145656-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145711-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145914-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150513-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150553-scaled.jpg,5/31/2024 0:00,14.0000000,15.0000000,49.2909600000000,-0.13407800000000,,Cabourg,75908,Observation #75908,https://biolit.fr/observations/observation-75908/,Ensis magnus,Couteau arqué,,https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145737-scaled.jpg,,,Identifiable +N1,75898,Sortie #75898,https://biolit.fr/sorties/sortie-75898/,ROBERT CLEMENT,https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145656-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145711-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145914-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150513-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150553-scaled.jpg,5/31/2024 0:00,14.0000000,15.0000000,49.2909600000000,-0.13407800000000,,Cabourg,75910,Observation #75910,https://biolit.fr/observations/observation-75910/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150513-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150233-scaled.jpg,,,non-identifiable +N1,75922,Sortie #75922,https://biolit.fr/sorties/sortie-75922/,VIAL Thérèse,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/06/IMG_20240517_115016527_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/06/IMG_20240517_115035581_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/06/IMG_20240517_115303792_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/06/IMG_20240517_115331801_HDR-scaled.jpg,5/17/2024 0:00,11.0000000,12.0000000,43.2109530000000,5.45648400000000,,Plage de Sugiton EST,75924,Observation #75924,https://biolit.fr/observations/observation-75924/,Pusia ebenus,Pusia ébène,,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/06/IMG_20240517_115016527_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/06/IMG_20240517_115035581_HDR.jpg,,,Identifiable +N1,75922,Sortie #75922,https://biolit.fr/sorties/sortie-75922/,VIAL Thérèse,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/06/IMG_20240517_115016527_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/06/IMG_20240517_115035581_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/06/IMG_20240517_115303792_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/06/IMG_20240517_115331801_HDR-scaled.jpg,5/17/2024 0:00,11.0000000,12.0000000,43.2109530000000,5.45648400000000,,Plage de Sugiton EST,75926,Observation #75926,https://biolit.fr/observations/observation-75926/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/06/IMG_20240517_115303792_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/06/IMG_20240517_115331801_HDR-scaled.jpg,,,Identifiable +N1,75936,Sortie #75936,https://biolit.fr/sorties/sortie-75936/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_115608445_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120102892_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120200874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120207075_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120357626_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120552984_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_122419191_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_115547994_HDR-scaled.jpg,5/21/2024 0:00,11.0000000,12.0000000,43.2803130000000,5.35016500000000,,Malmousque,75938,Observation #75938,https://biolit.fr/observations/observation-75938/,Maja crispata,Petite araignée de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_115608445_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_115547994_HDR-scaled.jpg,,,Ne sais pas +N1,75936,Sortie #75936,https://biolit.fr/sorties/sortie-75936/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_115608445_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120102892_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120200874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120207075_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120357626_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120552984_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_122419191_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_115547994_HDR-scaled.jpg,5/21/2024 0:00,11.0000000,12.0000000,43.2803130000000,5.35016500000000,,Malmousque,75940,Observation #75940,https://biolit.fr/observations/observation-75940/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120102892_HDR.jpg,,,Identifiable +N1,75936,Sortie #75936,https://biolit.fr/sorties/sortie-75936/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_115608445_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120102892_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120200874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120207075_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120357626_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120552984_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_122419191_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_115547994_HDR-scaled.jpg,5/21/2024 0:00,11.0000000,12.0000000,43.2803130000000,5.35016500000000,,Malmousque,75942,Observation #75942,https://biolit.fr/observations/observation-75942/,Peyssonnelia squamaria,Peyssonnelia,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120200874_HDR.jpg,,TRUE,Identifiable +N1,75936,Sortie #75936,https://biolit.fr/sorties/sortie-75936/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_115608445_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120102892_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120200874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120207075_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120357626_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120552984_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_122419191_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_115547994_HDR-scaled.jpg,5/21/2024 0:00,11.0000000,12.0000000,43.2803130000000,5.35016500000000,,Malmousque,75944,Observation #75944,https://biolit.fr/observations/observation-75944/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120207075_HDR.jpg,,TRUE,Identifiable +N1,75936,Sortie #75936,https://biolit.fr/sorties/sortie-75936/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_115608445_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120102892_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120200874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120207075_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120357626_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120552984_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_122419191_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_115547994_HDR-scaled.jpg,5/21/2024 0:00,11.0000000,12.0000000,43.2803130000000,5.35016500000000,,Malmousque,75946,Observation #75946,https://biolit.fr/observations/observation-75946/,Dictyota spiralis,Dictyote spatulée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120357626_HDR.jpg,,,Ne sais pas +N1,75936,Sortie #75936,https://biolit.fr/sorties/sortie-75936/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_115608445_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120102892_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120200874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120207075_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120357626_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120552984_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_122419191_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_115547994_HDR-scaled.jpg,5/21/2024 0:00,11.0000000,12.0000000,43.2803130000000,5.35016500000000,,Malmousque,75948,Observation #75948,https://biolit.fr/observations/observation-75948/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120552984_HDR-rotated.jpg,,,Identifiable +N1,75936,Sortie #75936,https://biolit.fr/sorties/sortie-75936/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_115608445_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120102892_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120200874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120207075_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120357626_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120552984_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_122419191_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_115547994_HDR-scaled.jpg,5/21/2024 0:00,11.0000000,12.0000000,43.2803130000000,5.35016500000000,,Malmousque,75950,Observation #75950,https://biolit.fr/observations/observation-75950/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_122419191_HDR-scaled.jpg,,TRUE,Identifiable +N1,75953,Sortie #75953,https://biolit.fr/sorties/sortie-75953/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-02-151250.jpg,5/21/2024 0:00,11.0000000,12.0000000,43.2803630000000,5.3501730000000,,Malmousque,75955,Observation #75955,https://biolit.fr/observations/observation-75955/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-02-151250.jpg,,,Ne sais pas +N1,75977,Sortie #75977,https://biolit.fr/sorties/sortie-75977/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_080717682-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081159245-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081237541_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081323858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081337175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081411025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081525176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081751912-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081814446-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081817016-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081953859-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082000191-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082039944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082056069_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082230166-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082359796.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082408006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082409407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082440771_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082502199-rotated.jpg,06/02/2024,8.0000000,8.0000000,43.2382260000000,5.36178000000000,,Plage de l'Anse des Phocéens,75979,Observation #75979,https://biolit.fr/observations/observation-75979/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_080717682-rotated.jpg,,,Ne sais pas +N1,75977,Sortie #75977,https://biolit.fr/sorties/sortie-75977/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_080717682-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081159245-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081237541_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081323858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081337175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081411025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081525176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081751912-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081814446-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081817016-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081953859-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082000191-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082039944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082056069_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082230166-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082359796.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082408006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082409407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082440771_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082502199-rotated.jpg,06/02/2024,8.0000000,8.0000000,43.2382260000000,5.36178000000000,,Plage de l'Anse des Phocéens,75981,Observation #75981,https://biolit.fr/observations/observation-75981/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081953859-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082000191-rotated.jpg,,,Ne sais pas +N1,75977,Sortie #75977,https://biolit.fr/sorties/sortie-75977/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_080717682-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081159245-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081237541_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081323858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081337175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081411025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081525176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081751912-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081814446-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081817016-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081953859-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082000191-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082039944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082056069_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082230166-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082359796.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082408006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082409407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082440771_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082502199-rotated.jpg,06/02/2024,8.0000000,8.0000000,43.2382260000000,5.36178000000000,,Plage de l'Anse des Phocéens,75983,Observation #75983,https://biolit.fr/observations/observation-75983/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082230166-rotated.jpg,,,Ne sais pas +N1,75977,Sortie #75977,https://biolit.fr/sorties/sortie-75977/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_080717682-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081159245-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081237541_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081323858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081337175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081411025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081525176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081751912-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081814446-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081817016-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081953859-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082000191-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082039944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082056069_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082230166-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082359796.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082408006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082409407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082440771_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082502199-rotated.jpg,06/02/2024,8.0000000,8.0000000,43.2382260000000,5.36178000000000,,Plage de l'Anse des Phocéens,75985,Observation #75985,https://biolit.fr/observations/observation-75985/,Dictyota fasciola,Dictyote rubanée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081159245-rotated.jpg,,,Identifiable +N1,75977,Sortie #75977,https://biolit.fr/sorties/sortie-75977/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_080717682-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081159245-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081237541_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081323858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081337175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081411025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081525176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081751912-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081814446-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081817016-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081953859-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082000191-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082039944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082056069_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082230166-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082359796.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082408006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082409407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082440771_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082502199-rotated.jpg,06/02/2024,8.0000000,8.0000000,43.2382260000000,5.36178000000000,,Plage de l'Anse des Phocéens,75987,Observation #75987,https://biolit.fr/observations/observation-75987/,Tridentata perpusilla,Sertulaire minuscule,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081237541_HDR-rotated.jpg,,,Ne sais pas +N1,75977,Sortie #75977,https://biolit.fr/sorties/sortie-75977/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_080717682-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081159245-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081237541_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081323858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081337175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081411025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081525176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081751912-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081814446-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081817016-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081953859-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082000191-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082039944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082056069_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082230166-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082359796.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082408006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082409407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082440771_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082502199-rotated.jpg,06/02/2024,8.0000000,8.0000000,43.2382260000000,5.36178000000000,,Plage de l'Anse des Phocéens,75989,Observation #75989,https://biolit.fr/observations/observation-75989/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081323858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081337175-scaled.jpg,,TRUE,Identifiable +N1,75977,Sortie #75977,https://biolit.fr/sorties/sortie-75977/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_080717682-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081159245-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081237541_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081323858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081337175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081411025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081525176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081751912-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081814446-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081817016-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081953859-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082000191-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082039944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082056069_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082230166-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082359796.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082408006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082409407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082440771_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082502199-rotated.jpg,06/02/2024,8.0000000,8.0000000,43.2382260000000,5.36178000000000,,Plage de l'Anse des Phocéens,75991,Observation #75991,https://biolit.fr/observations/observation-75991/,Euthria cornea,Buccin veiné,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082440771_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082502199-rotated.jpg,,,Identifiable +N1,75977,Sortie #75977,https://biolit.fr/sorties/sortie-75977/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_080717682-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081159245-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081237541_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081323858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081337175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081411025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081525176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081751912-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081814446-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081817016-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081953859-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082000191-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082039944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082056069_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082230166-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082359796.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082408006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082409407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082440771_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082502199-rotated.jpg,06/02/2024,8.0000000,8.0000000,43.2382260000000,5.36178000000000,,Plage de l'Anse des Phocéens,75993,Observation #75993,https://biolit.fr/observations/observation-75993/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081411025.jpg,,,Ne sais pas +N1,75977,Sortie #75977,https://biolit.fr/sorties/sortie-75977/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_080717682-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081159245-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081237541_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081323858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081337175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081411025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081525176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081751912-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081814446-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081817016-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081953859-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082000191-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082039944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082056069_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082230166-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082359796.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082408006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082409407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082440771_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082502199-rotated.jpg,06/02/2024,8.0000000,8.0000000,43.2382260000000,5.36178000000000,,Plage de l'Anse des Phocéens,75995,Observation #75995,https://biolit.fr/observations/observation-75995/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081525176-scaled.jpg,,TRUE,Identifiable +N1,75977,Sortie #75977,https://biolit.fr/sorties/sortie-75977/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_080717682-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081159245-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081237541_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081323858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081337175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081411025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081525176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081751912-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081814446-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081817016-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081953859-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082000191-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082039944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082056069_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082230166-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082359796.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082408006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082409407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082440771_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082502199-rotated.jpg,06/02/2024,8.0000000,8.0000000,43.2382260000000,5.36178000000000,,Plage de l'Anse des Phocéens,75997,Observation #75997,https://biolit.fr/observations/observation-75997/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081751912-rotated.jpg,,TRUE,Identifiable +N1,75977,Sortie #75977,https://biolit.fr/sorties/sortie-75977/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_080717682-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081159245-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081237541_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081323858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081337175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081411025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081525176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081751912-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081814446-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081817016-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081953859-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082000191-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082039944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082056069_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082230166-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082359796.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082408006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082409407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082440771_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082502199-rotated.jpg,06/02/2024,8.0000000,8.0000000,43.2382260000000,5.36178000000000,,Plage de l'Anse des Phocéens,75999,Observation #75999,https://biolit.fr/observations/observation-75999/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081814446-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081817016-rotated.jpg,,TRUE,Identifiable +N1,75977,Sortie #75977,https://biolit.fr/sorties/sortie-75977/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_080717682-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081159245-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081237541_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081323858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081337175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081411025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081525176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081751912-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081814446-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081817016-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081953859-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082000191-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082039944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082056069_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082230166-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082359796.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082408006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082409407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082440771_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082502199-rotated.jpg,06/02/2024,8.0000000,8.0000000,43.2382260000000,5.36178000000000,,Plage de l'Anse des Phocéens,76001,Observation #76001,https://biolit.fr/observations/observation-76001/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082039944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082056069_HDR-scaled.jpg,,,Identifiable +N1,75977,Sortie #75977,https://biolit.fr/sorties/sortie-75977/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_080717682-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081159245-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081237541_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081323858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081337175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081411025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081525176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081751912-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081814446-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081817016-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081953859-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082000191-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082039944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082056069_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082230166-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082359796.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082408006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082409407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082440771_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082502199-rotated.jpg,06/02/2024,8.0000000,8.0000000,43.2382260000000,5.36178000000000,,Plage de l'Anse des Phocéens,76003,Observation #76003,https://biolit.fr/observations/observation-76003/,Ligia italica,Ligie italienne,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082359796.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082408006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082409407.jpg,,,Ne sais pas +N1,76010,Sortie #76010,https://biolit.fr/sorties/sortie-76010/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082619342-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082639175_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082651670_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082712306_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082932978_HDR-scaled.jpg,06/02/2024,8.0000000,8.0000000,43.2382400000000,5.36183400000000,,Plage de l'Anse des Phocéens,76012,Observation #76012,https://biolit.fr/observations/observation-76012/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082619342-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082639175_HDR-rotated.jpg,,,Identifiable +N1,76010,Sortie #76010,https://biolit.fr/sorties/sortie-76010/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082619342-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082639175_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082651670_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082712306_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082932978_HDR-scaled.jpg,06/02/2024,8.0000000,8.0000000,43.2382400000000,5.36183400000000,,Plage de l'Anse des Phocéens,76014,Observation #76014,https://biolit.fr/observations/observation-76014/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082651670_HDR-rotated.jpg,,TRUE,Identifiable +N1,76010,Sortie #76010,https://biolit.fr/sorties/sortie-76010/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082619342-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082639175_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082651670_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082712306_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082932978_HDR-scaled.jpg,06/02/2024,8.0000000,8.0000000,43.2382400000000,5.36183400000000,,Plage de l'Anse des Phocéens,76016,Observation #76016,https://biolit.fr/observations/observation-76016/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082712306_HDR-rotated.jpg,,TRUE,Identifiable +N1,76010,Sortie #76010,https://biolit.fr/sorties/sortie-76010/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082619342-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082639175_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082651670_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082712306_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082932978_HDR-scaled.jpg,06/02/2024,8.0000000,8.0000000,43.2382400000000,5.36183400000000,,Plage de l'Anse des Phocéens,76018,Observation #76018,https://biolit.fr/observations/observation-76018/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082932978_HDR-scaled.jpg,,TRUE,Identifiable +N1,76021,Sortie #76021,https://biolit.fr/sorties/sortie-76021/,Céline,https://biolit.fr/wp-content/uploads/jet-form-builder/a124436f212872e36bd7cc12bfe0fd03/2024/06/paysage.jpg,06/02/2024,15.0:38,16.0000000,43.3281330000000,5.11322000000000,,Plage de beauduc,,,,,,,,,, +N1,76026,Sortie #76026,https://biolit.fr/sorties/sortie-76026/,Cblondet,https://biolit.fr/wp-content/uploads/jet-form-builder/c197b1e0d91dcec93e7ffa5eb529bc9d/2024/06/velelles.jpg,06/03/2024,15.0:42,16.0000000,43.3722990000000,4.56344600000000,,Plage de Beauduc,,,,,,,,,, +N1,76031,Sortie #76031,https://biolit.fr/sorties/sortie-76031/,Cblondet,https://biolit.fr/wp-content/uploads/jet-form-builder/c197b1e0d91dcec93e7ffa5eb529bc9d/2024/06/Sabot-de-Venus-Bis.jpg,06/03/2024,15.0:42,16.0000000,43.3722990000000,4.56344600000000,,Plage de Beauduc,,,,,,,,,, +N1,76036,Sortie #76036,https://biolit.fr/sorties/sortie-76036/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/06/IMG_4668a-scaled.jpg,5/22/2024 0:00,16.0000000,16.0000000,43.2399050000000,5.36247900000000,Planète Mer,Bain des dames,,,,,,,,,, +N1,76041,Sortie #76041,https://biolit.fr/sorties/sortie-76041/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/06/IMG_4663-scaled.jpg,5/22/2024 0:00,16.0000000,16.0000000,43.2399050000000,5.36247900000000,Planète Mer,Bain des dames,,,,,,,,,, +N1,76047,Sortie #76047,https://biolit.fr/sorties/sortie-76047/,Cblondet,https://biolit.fr/wp-content/uploads/jet-form-builder/c197b1e0d91dcec93e7ffa5eb529bc9d/2024/06/Sabot-de-Venus-Bis-1.jpg,06/03/2024,15.0:42,16.0000000,43.3722990000000,4.56344600000000,,Plage de Beauduc,,,,,,,,,, +N1,76068,Sortie #76068,https://biolit.fr/sorties/sortie-76068/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/06/NOUVEAUX_ARRIVANTS_20171026-crabe-bleu_Estran_Cite_Mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/06/Watersipora_subatraciNaturalist_Daniel-Percy.jpeg,5/22/2024 0:00,16.0000000,16.0000000,43.2399050000000,5.36247900000000,,Bain des dames,,,,,,,,,, +N1,76083,Sortie #76083,https://biolit.fr/sorties/sortie-76083/,Hupp,FALSE,5/28/2024 0:00,15.0:32,19.0000000,48.5981690,-2.2727890,,ggg,,,,,,,,,, +N1,76092,Sortie #76092,https://biolit.fr/sorties/sortie-76092/,Hupp,FALSE,5/28/2024 0:00,15.0:32,19.0000000,48.5981690,-2.2727890,,ggg,,,,,,,,,, +N1,76099,Sortie #76099,https://biolit.fr/sorties/sortie-76099/,Hupp,FALSE,5/28/2024 0:00,15.0:32,19.0000000,48.5981690,-2.2727890,,ggg,,,,,,,,,, +N1,76104,Sortie #76104,https://biolit.fr/sorties/sortie-76104/,Cblondet,https://biolit.fr/wp-content/uploads/jet-form-builder/c197b1e0d91dcec93e7ffa5eb529bc9d/2024/06/Sabot-de-Venus.jpg,06/04/2024,8.0:42,9.0000000,43.3722990000000,4.56344600000000,,Plage de Beauduc,,,,,,,,,, +N1,76109,Sortie #76109,https://biolit.fr/sorties/sortie-76109/,Cblondet,https://biolit.fr/wp-content/uploads/jet-form-builder/c197b1e0d91dcec93e7ffa5eb529bc9d/2024/06/Sabot-de-Venus-Bis-2.jpg,06/04/2024,8.0:42,9.0000000,43.3722990000000,4.56344600000000,,Plage de Beauduc,,,,,,,,,, +N1,76147,Sortie #76147,https://biolit.fr/sorties/sortie-76147/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085209735_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085220742_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085320297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085400854.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085408710_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085536874_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085818173_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090440063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090808642_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091451752_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092244899_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092250949_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092411370_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092600238_HDR-rotated.jpg,06/02/2024,8.0:45,9.0000000,43.2399210000000,5.36244500000000,,Plage de l’Anse du Bain des Dames,76149,Observation #76149,https://biolit.fr/observations/observation-76149/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085209735_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085220742_HDR-rotated.jpg,,TRUE,Identifiable +N1,76147,Sortie #76147,https://biolit.fr/sorties/sortie-76147/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085209735_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085220742_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085320297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085400854.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085408710_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085536874_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085818173_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090440063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090808642_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091451752_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092244899_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092250949_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092411370_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092600238_HDR-rotated.jpg,06/02/2024,8.0:45,9.0000000,43.2399210000000,5.36244500000000,,Plage de l’Anse du Bain des Dames,76151,Observation #76151,https://biolit.fr/observations/observation-76151/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085320297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085536874_HDR-rotated.jpg,,,Identifiable +N1,76147,Sortie #76147,https://biolit.fr/sorties/sortie-76147/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085209735_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085220742_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085320297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085400854.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085408710_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085536874_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085818173_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090440063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090808642_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091451752_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092244899_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092250949_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092411370_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092600238_HDR-rotated.jpg,06/02/2024,8.0:45,9.0000000,43.2399210000000,5.36244500000000,,Plage de l’Anse du Bain des Dames,76153,Observation #76153,https://biolit.fr/observations/observation-76153/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085400854.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085408710_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092244899_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092250949_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092600238_HDR-rotated.jpg,,,Identifiable +N1,76147,Sortie #76147,https://biolit.fr/sorties/sortie-76147/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085209735_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085220742_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085320297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085400854.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085408710_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085536874_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085818173_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090440063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090808642_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091451752_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092244899_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092250949_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092411370_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092600238_HDR-rotated.jpg,06/02/2024,8.0:45,9.0000000,43.2399210000000,5.36244500000000,,Plage de l’Anse du Bain des Dames,76155,Observation #76155,https://biolit.fr/observations/observation-76155/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085818173_HDR-scaled.jpg,,,Identifiable +N1,76147,Sortie #76147,https://biolit.fr/sorties/sortie-76147/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085209735_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085220742_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085320297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085400854.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085408710_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085536874_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085818173_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090440063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090808642_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091451752_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092244899_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092250949_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092411370_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092600238_HDR-rotated.jpg,06/02/2024,8.0:45,9.0000000,43.2399210000000,5.36244500000000,,Plage de l’Anse du Bain des Dames,76157,Observation #76157,https://biolit.fr/observations/observation-76157/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090440063_HDR-scaled.jpg,,TRUE,Identifiable +N1,76147,Sortie #76147,https://biolit.fr/sorties/sortie-76147/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085209735_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085220742_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085320297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085400854.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085408710_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085536874_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085818173_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090440063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090808642_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091451752_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092244899_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092250949_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092411370_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092600238_HDR-rotated.jpg,06/02/2024,8.0:45,9.0000000,43.2399210000000,5.36244500000000,,Plage de l’Anse du Bain des Dames,76159,Observation #76159,https://biolit.fr/observations/observation-76159/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090808642_HDR-rotated.jpg,,TRUE,Identifiable +N1,76147,Sortie #76147,https://biolit.fr/sorties/sortie-76147/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085209735_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085220742_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085320297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085400854.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085408710_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085536874_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085818173_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090440063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090808642_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091451752_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092244899_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092250949_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092411370_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092600238_HDR-rotated.jpg,06/02/2024,8.0:45,9.0000000,43.2399210000000,5.36244500000000,,Plage de l’Anse du Bain des Dames,76161,Observation #76161,https://biolit.fr/observations/observation-76161/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091451752_HDR-scaled.jpg,,TRUE,Identifiable +N1,76147,Sortie #76147,https://biolit.fr/sorties/sortie-76147/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085209735_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085220742_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085320297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085400854.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085408710_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085536874_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085818173_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090440063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090808642_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091451752_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092244899_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092250949_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092411370_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092600238_HDR-rotated.jpg,06/02/2024,8.0:45,9.0000000,43.2399210000000,5.36244500000000,,Plage de l’Anse du Bain des Dames,76163,Observation #76163,https://biolit.fr/observations/observation-76163/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092411370_HDR-rotated.jpg,,TRUE,Identifiable +N1,76180,Sortie #76180,https://biolit.fr/sorties/sortie-76180/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090929420-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090941307.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091559150-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091608681_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091637507-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091646418-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091713316_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091734589.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092006581_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092018314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092025885-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092733817-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092744671-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092805589_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092916237-rotated.jpg,06/02/2024,8.0:45,9.0000000,43.2398720000000,5.36243900000000,,Plage de l’Anse du Bain des Dames,76182,Observation #76182,https://biolit.fr/observations/observation-76182/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090929420-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090941307.jpg,,,Ne sais pas +N1,76180,Sortie #76180,https://biolit.fr/sorties/sortie-76180/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090929420-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090941307.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091559150-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091608681_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091637507-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091646418-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091713316_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091734589.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092006581_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092018314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092025885-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092733817-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092744671-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092805589_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092916237-rotated.jpg,06/02/2024,8.0:45,9.0000000,43.2398720000000,5.36243900000000,,Plage de l’Anse du Bain des Dames,76184,Observation #76184,https://biolit.fr/observations/observation-76184/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091559150-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091608681_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092805589_HDR-rotated.jpg,,,Identifiable +N1,76180,Sortie #76180,https://biolit.fr/sorties/sortie-76180/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090929420-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090941307.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091559150-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091608681_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091637507-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091646418-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091713316_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091734589.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092006581_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092018314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092025885-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092733817-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092744671-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092805589_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092916237-rotated.jpg,06/02/2024,8.0:45,9.0000000,43.2398720000000,5.36243900000000,,Plage de l’Anse du Bain des Dames,76186,Observation #76186,https://biolit.fr/observations/observation-76186/,Euthria cornea,Buccin veiné,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091637507-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091646418-rotated.jpg,,,Identifiable +N1,76180,Sortie #76180,https://biolit.fr/sorties/sortie-76180/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090929420-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090941307.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091559150-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091608681_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091637507-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091646418-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091713316_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091734589.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092006581_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092018314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092025885-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092733817-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092744671-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092805589_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092916237-rotated.jpg,06/02/2024,8.0:45,9.0000000,43.2398720000000,5.36243900000000,,Plage de l’Anse du Bain des Dames,76188,Observation #76188,https://biolit.fr/observations/observation-76188/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091713316_HDR-rotated.jpg,,TRUE,Identifiable +N1,76180,Sortie #76180,https://biolit.fr/sorties/sortie-76180/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090929420-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090941307.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091559150-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091608681_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091637507-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091646418-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091713316_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091734589.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092006581_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092018314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092025885-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092733817-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092744671-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092805589_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092916237-rotated.jpg,06/02/2024,8.0:45,9.0000000,43.2398720000000,5.36243900000000,,Plage de l’Anse du Bain des Dames,76190,Observation #76190,https://biolit.fr/observations/observation-76190/,Tridentata perpusilla,Sertulaire minuscule,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091734589.jpg,,,Identifiable +N1,76180,Sortie #76180,https://biolit.fr/sorties/sortie-76180/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090929420-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090941307.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091559150-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091608681_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091637507-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091646418-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091713316_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091734589.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092006581_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092018314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092025885-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092733817-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092744671-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092805589_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092916237-rotated.jpg,06/02/2024,8.0:45,9.0000000,43.2398720000000,5.36243900000000,,Plage de l’Anse du Bain des Dames,76192,Observation #76192,https://biolit.fr/observations/observation-76192/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092006581_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092018314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092025885-rotated.jpg,,,Identifiable +N1,76180,Sortie #76180,https://biolit.fr/sorties/sortie-76180/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090929420-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090941307.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091559150-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091608681_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091637507-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091646418-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091713316_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091734589.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092006581_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092018314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092025885-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092733817-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092744671-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092805589_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092916237-rotated.jpg,06/02/2024,8.0:45,9.0000000,43.2398720000000,5.36243900000000,,Plage de l’Anse du Bain des Dames,76194,Observation #76194,https://biolit.fr/observations/observation-76194/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092733817-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092744671-rotated.jpg,,,Identifiable +N1,76180,Sortie #76180,https://biolit.fr/sorties/sortie-76180/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090929420-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090941307.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091559150-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091608681_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091637507-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091646418-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091713316_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091734589.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092006581_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092018314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092025885-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092733817-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092744671-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092805589_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092916237-rotated.jpg,06/02/2024,8.0:45,9.0000000,43.2398720000000,5.36243900000000,,Plage de l’Anse du Bain des Dames,76196,Observation #76196,https://biolit.fr/observations/observation-76196/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092916237-rotated.jpg,,,Identifiable +N1,76208,Sortie #76208,https://biolit.fr/sorties/sortie-76208/,Cblondet,https://biolit.fr/wp-content/uploads/jet-form-builder/c197b1e0d91dcec93e7ffa5eb529bc9d/2024/06/Sabot-de-Venus-Bis-3.jpg,06/06/2024,8.0:42,9.0000000,43.3722990000000,4.56344600000000,,Plage de Beauduc,,,,,,,,,, +N1,76213,Sortie #76213,https://biolit.fr/sorties/sortie-76213/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/06/P3070002-scaled.jpg,5/22/2024 0:00,16.0000000,16.0000000,43.2399050000000,5.36247900000000,Planète Mer,Bain des dames,,,,,,,,,, +N1,76228,Sortie #76228,https://biolit.fr/sorties/sortie-76228/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/06/IMG_4849-scaled.jpeg,06/04/2024,11.0:21,0.0:22,43.2398760000000,5.36249200000000,Planète Mer,Bain des dames,,,,,,,,,, +N1,76236,Sortie #76236,https://biolit.fr/sorties/sortie-76236/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/06/IMG_4668a-1-scaled.jpg,5/22/2024 0:00,16.0000000,16.0000000,43.2399050000000,5.36247900000000,Planète Mer,Bain des dames,,,,,,,,,, +N1,76239,Sortie #76239,https://biolit.fr/sorties/sortie-76239/,Cblondet,https://biolit.fr/wp-content/uploads/jet-form-builder/c197b1e0d91dcec93e7ffa5eb529bc9d/2024/06/velelles-1.jpg,06/06/2024,8.0:42,9.0000000,43.8271590000000,7.90191700000000,,Plage de Beauduc,,,,,,,,,, +N1,76252,Sortie #76252,https://biolit.fr/sorties/sortie-76252/,Cblondet,https://biolit.fr/wp-content/uploads/jet-form-builder/c197b1e0d91dcec93e7ffa5eb529bc9d/2024/06/Sabot-de-Venus-Bis-4.jpg,06/06/2024,8.0:42,9.0000000,43.2336980000000,4.81201200000,,Plage de Beauduc,,,,,,,,,, +N1,76296,Sortie #76296,https://biolit.fr/sorties/sortie-76296/,XAVIER LEBOUTEILLER,https://biolit.fr/wp-content/uploads/jet-form-builder/58b3ec0e028c6b89bf207d6212843440/2024/06/IMG_20240606_152334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/58b3ec0e028c6b89bf207d6212843440/2024/06/IMG_20240606_154145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/58b3ec0e028c6b89bf207d6212843440/2024/06/IMG_20240606_154222-scaled.jpg,06/06/2024,13.0000000,15.0000000,48.7708790000000,-1.57134000000000,,Jullouville,76298,Observation #76298,https://biolit.fr/observations/observation-76298/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/58b3ec0e028c6b89bf207d6212843440/2024/06/IMG_20240606_152334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/58b3ec0e028c6b89bf207d6212843440/2024/06/IMG_20240606_154145-scaled.jpg,,,Ne sais pas +N1,76329,Sortie #76329,https://biolit.fr/sorties/sortie-76329/,picault patrick,https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011674-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011672-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011670-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011669-scaled.jpg,06/08/2024,19.0000000,20.0000000,43.556842,4.068511,,La Grande Motte,76331,Observation #76331,https://biolit.fr/observations/observation-76331/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011674-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011672-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011670-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011669-scaled.jpg,,FALSE,Identifiable +N1,76399,Sortie #76399,https://biolit.fr/sorties/sortie-76399/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-10-235318.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-10-235609.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155205423_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155219406_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155651126_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155842547-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155850644_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155922360.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155929645.jpg,5/23/2024 0:00,12.0000000,12.0000000,43.2595920000000,5.37487000000000,,Plage de l'Huveaune,76401,Observation #76401,https://biolit.fr/observations/observation-76401/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-10-235318.jpg,,,Ne sais pas +N1,76399,Sortie #76399,https://biolit.fr/sorties/sortie-76399/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-10-235318.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-10-235609.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155205423_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155219406_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155651126_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155842547-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155850644_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155922360.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155929645.jpg,5/23/2024 0:00,12.0000000,12.0000000,43.2595920000000,5.37487000000000,,Plage de l'Huveaune,76403,Observation #76403,https://biolit.fr/observations/observation-76403/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-10-235609.jpg,,,Ne sais pas +N1,76399,Sortie #76399,https://biolit.fr/sorties/sortie-76399/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-10-235318.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-10-235609.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155205423_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155219406_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155651126_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155842547-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155850644_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155922360.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155929645.jpg,5/23/2024 0:00,12.0000000,12.0000000,43.2595920000000,5.37487000000000,,Plage de l'Huveaune,76405,Observation #76405,https://biolit.fr/observations/observation-76405/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155205423_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155219406_HDR-rotated.jpg,,,Identifiable +N1,76399,Sortie #76399,https://biolit.fr/sorties/sortie-76399/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-10-235318.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-10-235609.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155205423_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155219406_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155651126_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155842547-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155850644_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155922360.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155929645.jpg,5/23/2024 0:00,12.0000000,12.0000000,43.2595920000000,5.37487000000000,,Plage de l'Huveaune,76407,Observation #76407,https://biolit.fr/observations/observation-76407/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155651126_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155842547-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155850644_HDR-rotated.jpg,,,Ne sais pas +N1,76399,Sortie #76399,https://biolit.fr/sorties/sortie-76399/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-10-235318.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-10-235609.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155205423_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155219406_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155651126_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155842547-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155850644_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155922360.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155929645.jpg,5/23/2024 0:00,12.0000000,12.0000000,43.2595920000000,5.37487000000000,,Plage de l'Huveaune,76409,Observation #76409,https://biolit.fr/observations/observation-76409/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155922360.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155929645.jpg,,,Ne sais pas +N1,76421,Sortie #76421,https://biolit.fr/sorties/sortie-76421/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/06/IMG_20240601_175844-scaled.jpg,06/01/2024,17.0000000,17.0:15,43.0910670000000,6.02442900000000,,plage de la garonne,76423,Observation #76423,https://biolit.fr/observations/observation-76423/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/06/IMG_20240601_175844-scaled.jpg,,TRUE,Identifiable +N1,76441,Sortie #76441,https://biolit.fr/sorties/sortie-76441/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-12-095500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Doris-forum.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_143552864_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_144633488_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_144715010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160317496.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160336736.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160856610.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160911033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160930311.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160952640.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161010063.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161039940.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161111893.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161331219.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161446266.jpg,05/11/2024,14.0000000,14.0000000,43.3496720000000,4.87767900000000,,Plage Napoléon,76443,Observation #76443,https://biolit.fr/observations/observation-76443/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-12-095500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_144633488_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_144715010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160952640.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161010063.jpg,,,Ne sais pas +N1,76441,Sortie #76441,https://biolit.fr/sorties/sortie-76441/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-12-095500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Doris-forum.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_143552864_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_144633488_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_144715010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160317496.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160336736.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160856610.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160911033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160930311.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160952640.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161010063.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161039940.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161111893.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161331219.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161446266.jpg,05/11/2024,14.0000000,14.0000000,43.3496720000000,4.87767900000000,,Plage Napoléon,76445,Observation #76445,https://biolit.fr/observations/observation-76445/,Radix auricularia,Limnée conque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Doris-forum.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161331219.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161446266.jpg,,,Ne sais pas +N1,76441,Sortie #76441,https://biolit.fr/sorties/sortie-76441/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-12-095500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Doris-forum.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_143552864_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_144633488_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_144715010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160317496.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160336736.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160856610.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160911033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160930311.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160952640.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161010063.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161039940.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161111893.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161331219.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161446266.jpg,05/11/2024,14.0000000,14.0000000,43.3496720000000,4.87767900000000,,Plage Napoléon,76447,Observation #76447,https://biolit.fr/observations/observation-76447/,Scrobicularia plana,Scrobiculaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_143552864_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161039940.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161111893.jpg,,,Identifiable +N1,76441,Sortie #76441,https://biolit.fr/sorties/sortie-76441/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-12-095500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Doris-forum.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_143552864_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_144633488_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_144715010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160317496.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160336736.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160856610.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160911033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160930311.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160952640.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161010063.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161039940.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161111893.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161331219.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161446266.jpg,05/11/2024,14.0000000,14.0000000,43.3496720000000,4.87767900000000,,Plage Napoléon,76449,Observation #76449,https://biolit.fr/observations/observation-76449/,Pharus legumen,Couteau-gousse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160317496.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160336736.jpg,,,Identifiable +N1,76441,Sortie #76441,https://biolit.fr/sorties/sortie-76441/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-12-095500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Doris-forum.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_143552864_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_144633488_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_144715010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160317496.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160336736.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160856610.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160911033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160930311.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160952640.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161010063.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161039940.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161111893.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161331219.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161446266.jpg,05/11/2024,14.0000000,14.0000000,43.3496720000000,4.87767900000000,,Plage Napoléon,76451,Observation #76451,https://biolit.fr/observations/observation-76451/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160856610.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160911033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160930311.jpg,,,Ne sais pas +N1,76485,Sortie #76485,https://biolit.fr/sorties/sortie-76485/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2024/06/Q1-bigorneau.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2024/06/Q1-gibbule-ombiliquee.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2024/06/Q1-huitre.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2024/06/Q1-littorine-fabalis.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2024/06/Q1-monodonte.jpeg,06/12/2024,15.0000000,15.0000000,47.6077880,-2.747549,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Plage Le Gornevèze SENE,,,,,,,,,, +N1,76530,Sortie #76530,https://biolit.fr/sorties/sortie-76530/,Granger Angélique,https://biolit.fr/wp-content/uploads/jet-form-builder/8e86d13fc378bd139f5f8e3577ea00f1/2024/06/20240616_114904-scaled.jpg,6/16/2024 0:00,11.0000000,11.0:55,49.1100880000000,-1.60627800000000,,Plage de Gouville sur Mer,76532,Observation #76532,https://biolit.fr/observations/observation-76532/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/jet-form-builder/8e86d13fc378bd139f5f8e3577ea00f1/2024/06/20240616_114904-scaled.jpg,,TRUE,Identifiable +N1,76550,Sortie #76550,https://biolit.fr/sorties/sortie-76550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-083935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084057.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084304.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084602.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085558.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_113957-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_114026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112229124.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112243252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112304190.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112317043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112345017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112409523.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112433777.jpg,5/20/2024 0:00,12.0000000,13.0000000,43.2904170000000,5.35527400000000,,Plage des Catalans,76552,Observation #76552,https://biolit.fr/observations/observation-76552/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-083935.jpg,,,Identifiable +N1,76550,Sortie #76550,https://biolit.fr/sorties/sortie-76550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-083935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084057.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084304.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084602.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085558.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_113957-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_114026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112229124.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112243252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112304190.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112317043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112345017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112409523.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112433777.jpg,5/20/2024 0:00,12.0000000,13.0000000,43.2904170000000,5.35527400000000,,Plage des Catalans,76554,Observation #76554,https://biolit.fr/observations/observation-76554/,Loripes orbiculatus,Loripes orbiculaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084057.jpg,,,Identifiable +N1,76550,Sortie #76550,https://biolit.fr/sorties/sortie-76550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-083935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084057.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084304.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084602.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085558.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_113957-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_114026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112229124.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112243252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112304190.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112317043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112345017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112409523.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112433777.jpg,5/20/2024 0:00,12.0000000,13.0000000,43.2904170000000,5.35527400000000,,Plage des Catalans,76556,Observation #76556,https://biolit.fr/observations/observation-76556/,Calyptraea chinensis,Chapeau chinois,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084304.jpg,,,Identifiable +N1,76550,Sortie #76550,https://biolit.fr/sorties/sortie-76550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-083935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084057.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084304.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084602.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085558.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_113957-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_114026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112229124.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112243252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112304190.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112317043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112345017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112409523.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112433777.jpg,5/20/2024 0:00,12.0000000,13.0000000,43.2904170000000,5.35527400000000,,Plage des Catalans,76558,Observation #76558,https://biolit.fr/observations/observation-76558/,Polititapes rhomboides,Palourde rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084602.jpg,,,Ne sais pas +N1,76550,Sortie #76550,https://biolit.fr/sorties/sortie-76550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-083935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084057.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084304.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084602.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085558.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_113957-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_114026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112229124.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112243252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112304190.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112317043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112345017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112409523.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112433777.jpg,5/20/2024 0:00,12.0000000,13.0000000,43.2904170000000,5.35527400000000,,Plage des Catalans,76560,Observation #76560,https://biolit.fr/observations/observation-76560/,Tritia pellucida,Cyclope translucide,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084741.jpg,,,Ne sais pas +N1,76550,Sortie #76550,https://biolit.fr/sorties/sortie-76550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-083935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084057.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084304.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084602.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085558.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_113957-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_114026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112229124.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112243252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112304190.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112317043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112345017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112409523.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112433777.jpg,5/20/2024 0:00,12.0000000,13.0000000,43.2904170000000,5.35527400000000,,Plage des Catalans,76562,Observation #76562,https://biolit.fr/observations/observation-76562/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085250.jpg,,,Ne sais pas +N1,76550,Sortie #76550,https://biolit.fr/sorties/sortie-76550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-083935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084057.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084304.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084602.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085558.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_113957-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_114026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112229124.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112243252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112304190.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112317043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112345017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112409523.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112433777.jpg,5/20/2024 0:00,12.0000000,13.0000000,43.2904170000000,5.35527400000000,,Plage des Catalans,76564,Observation #76564,https://biolit.fr/observations/observation-76564/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085558.jpg,,,Ne sais pas +N1,76550,Sortie #76550,https://biolit.fr/sorties/sortie-76550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-083935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084057.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084304.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084602.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085558.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_113957-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_114026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112229124.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112243252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112304190.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112317043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112345017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112409523.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112433777.jpg,5/20/2024 0:00,12.0000000,13.0000000,43.2904170000000,5.35527400000000,,Plage des Catalans,76566,Observation #76566,https://biolit.fr/observations/observation-76566/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_113957-scaled.jpg,,,Identifiable +N1,76550,Sortie #76550,https://biolit.fr/sorties/sortie-76550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-083935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084057.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084304.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084602.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085558.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_113957-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_114026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112229124.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112243252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112304190.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112317043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112345017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112409523.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112433777.jpg,5/20/2024 0:00,12.0000000,13.0000000,43.2904170000000,5.35527400000000,,Plage des Catalans,76568,Observation #76568,https://biolit.fr/observations/observation-76568/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_114026-scaled.jpg,,,Identifiable +N1,76550,Sortie #76550,https://biolit.fr/sorties/sortie-76550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-083935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084057.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084304.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084602.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085558.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_113957-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_114026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112229124.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112243252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112304190.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112317043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112345017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112409523.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112433777.jpg,5/20/2024 0:00,12.0000000,13.0000000,43.2904170000000,5.35527400000000,,Plage des Catalans,76570,Observation #76570,https://biolit.fr/observations/observation-76570/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112229124.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112243252.jpg,,,Ne sais pas +N1,76550,Sortie #76550,https://biolit.fr/sorties/sortie-76550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-083935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084057.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084304.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084602.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085558.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_113957-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_114026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112229124.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112243252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112304190.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112317043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112345017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112409523.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112433777.jpg,5/20/2024 0:00,12.0000000,13.0000000,43.2904170000000,5.35527400000000,,Plage des Catalans,76572,Observation #76572,https://biolit.fr/observations/observation-76572/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112304190.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112317043.jpg,,,Ne sais pas +N1,76550,Sortie #76550,https://biolit.fr/sorties/sortie-76550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-083935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084057.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084304.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084602.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085558.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_113957-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_114026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112229124.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112243252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112304190.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112317043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112345017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112409523.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112433777.jpg,5/20/2024 0:00,12.0000000,13.0000000,43.2904170000000,5.35527400000000,,Plage des Catalans,76574,Observation #76574,https://biolit.fr/observations/observation-76574/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112345017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112409523.jpg,,,Ne sais pas +N1,76550,Sortie #76550,https://biolit.fr/sorties/sortie-76550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-083935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084057.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084304.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084602.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085558.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_113957-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_114026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112229124.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112243252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112304190.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112317043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112345017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112409523.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112433777.jpg,5/20/2024 0:00,12.0000000,13.0000000,43.2904170000000,5.35527400000000,,Plage des Catalans,76576,Observation #76576,https://biolit.fr/observations/observation-76576/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112433777.jpg,,,Identifiable +N1,76597,Sortie #76597,https://biolit.fr/sorties/sortie-76597/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155420583_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155429049_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155456670_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155505169_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155540841_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155548462_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160241087_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160254076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160501970.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160511136.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160607630_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160620003_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160818091_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160949578_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161047850_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161111874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161119372_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161222523-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161229673.jpg,5/15/2024 0:00,15.0:45,16.0:15,43.259757000000,5.374656000000,,Plage de l'Huveaune,76599,Observation #76599,https://biolit.fr/observations/observation-76599/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155420583_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155429049_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160501970.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160511136.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161047850_HDR-scaled.jpg,,,Identifiable +N1,76597,Sortie #76597,https://biolit.fr/sorties/sortie-76597/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155420583_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155429049_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155456670_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155505169_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155540841_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155548462_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160241087_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160254076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160501970.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160511136.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160607630_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160620003_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160818091_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160949578_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161047850_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161111874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161119372_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161222523-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161229673.jpg,5/15/2024 0:00,15.0:45,16.0:15,43.259757000000,5.374656000000,,Plage de l'Huveaune,76601,Observation #76601,https://biolit.fr/observations/observation-76601/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155456670_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155505169_HDR.jpg,,,Ne sais pas +N1,76597,Sortie #76597,https://biolit.fr/sorties/sortie-76597/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155420583_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155429049_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155456670_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155505169_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155540841_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155548462_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160241087_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160254076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160501970.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160511136.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160607630_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160620003_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160818091_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160949578_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161047850_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161111874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161119372_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161222523-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161229673.jpg,5/15/2024 0:00,15.0:45,16.0:15,43.259757000000,5.374656000000,,Plage de l'Huveaune,76603,Observation #76603,https://biolit.fr/observations/observation-76603/,Tritia corniculum,Tritia corniculum,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155540841_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155548462_HDR.jpg,,,Identifiable +N1,76597,Sortie #76597,https://biolit.fr/sorties/sortie-76597/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155420583_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155429049_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155456670_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155505169_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155540841_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155548462_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160241087_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160254076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160501970.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160511136.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160607630_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160620003_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160818091_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160949578_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161047850_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161111874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161119372_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161222523-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161229673.jpg,5/15/2024 0:00,15.0:45,16.0:15,43.259757000000,5.374656000000,,Plage de l'Huveaune,76605,Observation #76605,https://biolit.fr/observations/observation-76605/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160241087_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160254076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160607630_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160620003_HDR-rotated.jpg,,,Identifiable +N1,76597,Sortie #76597,https://biolit.fr/sorties/sortie-76597/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155420583_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155429049_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155456670_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155505169_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155540841_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155548462_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160241087_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160254076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160501970.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160511136.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160607630_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160620003_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160818091_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160949578_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161047850_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161111874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161119372_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161222523-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161229673.jpg,5/15/2024 0:00,15.0:45,16.0:15,43.259757000000,5.374656000000,,Plage de l'Huveaune,76607,Observation #76607,https://biolit.fr/observations/observation-76607/,Corallina officinalis/caespitosa,Coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160818091_HDR.jpg,,,Identifiable +N1,76597,Sortie #76597,https://biolit.fr/sorties/sortie-76597/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155420583_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155429049_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155456670_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155505169_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155540841_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155548462_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160241087_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160254076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160501970.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160511136.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160607630_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160620003_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160818091_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160949578_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161047850_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161111874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161119372_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161222523-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161229673.jpg,5/15/2024 0:00,15.0:45,16.0:15,43.259757000000,5.374656000000,,Plage de l'Huveaune,76609,Observation #76609,https://biolit.fr/observations/observation-76609/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160949578_HDR-scaled.jpg,,,Identifiable +N1,76597,Sortie #76597,https://biolit.fr/sorties/sortie-76597/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155420583_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155429049_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155456670_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155505169_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155540841_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155548462_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160241087_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160254076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160501970.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160511136.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160607630_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160620003_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160818091_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160949578_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161047850_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161111874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161119372_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161222523-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161229673.jpg,5/15/2024 0:00,15.0:45,16.0:15,43.259757000000,5.374656000000,,Plage de l'Huveaune,76611,Observation #76611,https://biolit.fr/observations/observation-76611/,Loripes orbiculatus,Loripes orbiculaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161111874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161119372_HDR.jpg,,,Identifiable +N1,76597,Sortie #76597,https://biolit.fr/sorties/sortie-76597/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155420583_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155429049_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155456670_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155505169_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155540841_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155548462_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160241087_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160254076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160501970.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160511136.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160607630_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160620003_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160818091_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160949578_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161047850_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161111874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161119372_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161222523-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161229673.jpg,5/15/2024 0:00,15.0:45,16.0:15,43.259757000000,5.374656000000,,Plage de l'Huveaune,76613,Observation #76613,https://biolit.fr/observations/observation-76613/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161222523-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161229673.jpg,,,Identifiable +N1,76620,Sortie #76620,https://biolit.fr/sorties/sortie-76620/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/06/IMG_4297.png,6/15/2024 0:00,15.0000000,15.0000000,43.2733120000000,5.36163100000000,,Prophète,76622,Observation #76622,https://biolit.fr/observations/observation-76622/,Caulerpa cylindracea,Caulerpe cylindracée,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/06/IMG_4297.png,,TRUE,Identifiable +N1,76625,Sortie #76625,https://biolit.fr/sorties/sortie-76625/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/06/IMG_4298.png,6/15/2024 0:00,15.0000000,15.0000000,43.2733120000000,5.36163100000000,,Prophète,76627,Observation #76627,https://biolit.fr/observations/observation-76627/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/06/IMG_4298.png,,TRUE,Identifiable +N1,76630,Sortie #76630,https://biolit.fr/sorties/sortie-76630/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/06/IMG_4323.png,6/15/2024 0:00,15.0000000,15.0000000,43.2733120000000,5.36163100000000,,Prophète,76632,Observation #76632,https://biolit.fr/observations/observation-76632/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/06/IMG_4323.png,,,Identifiable +N1,76635,Sortie #76635,https://biolit.fr/sorties/sortie-76635/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/06/IMG_4326.png,6/15/2024 0:00,15.0000000,15.0000000,43.2733120000000,5.36163100000000,,Prophète,76637,Observation #76637,https://biolit.fr/observations/observation-76637/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/06/IMG_4326.png,,TRUE,Identifiable +N1,76640,Sortie #76640,https://biolit.fr/sorties/sortie-76640/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/06/IMG_4325.png,6/15/2024 0:00,15.0000000,15.0000000,43.2733120000000,5.36163100000000,,Prophète,76642,Observation #76642,https://biolit.fr/observations/observation-76642/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/06/IMG_4325.png,,,Ne sais pas +N1,76645,Sortie #76645,https://biolit.fr/sorties/sortie-76645/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/06/IMG_4306.png,6/15/2024 0:00,15.0000000,15.0000000,43.2733120000000,5.36163100000000,,Prophète,76647,Observation #76647,https://biolit.fr/observations/observation-76647/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/06/IMG_4306.png,,,Ne sais pas +N1,76651,Sortie #76651,https://biolit.fr/sorties/sortie-76651/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/06/IMG_4317.png | https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/06/IMG_4319.png,6/15/2024 0:00,15.0000000,15.0000000,43.2733120000000,5.36163100000000,,Prophète,76653,Observation #76653,https://biolit.fr/observations/observation-76653/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/06/IMG_4317.png | https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/06/IMG_4319.png,,,Ne sais pas +N1,76656,Sortie #76656,https://biolit.fr/sorties/sortie-76656/,SANA Astrid,https://biolit.fr/wp-content/uploads/jet-form-builder/b38ef41aa6aa41f444df6a86405155ce/2024/06/IMG_20230915_130503_792.jpg,9/15/2023 0:00,14.0000000,15.0000000,43.7585110000000,7.4528370000000,,Cabbé,,,,,,,,,, +N1,76659,Sortie #76659,https://biolit.fr/sorties/sortie-76659/,SANA Astrid,https://biolit.fr/wp-content/uploads/jet-form-builder/b38ef41aa6aa41f444df6a86405155ce/2024/06/IMG_20230915_130503_792-1.jpg,9/15/2023 0:00,14.0000000,15.0000000,43.7585110000000,7.4528370000000,,Cabbé,76661,Observation #76661,https://biolit.fr/observations/observation-76661/,Thalassoma pavo,Girelle-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/b38ef41aa6aa41f444df6a86405155ce/2024/06/IMG_20230915_130503_792-1.jpg,,,Identifiable +N1,76659,Sortie #76659,https://biolit.fr/sorties/sortie-76659/,SANA Astrid,https://biolit.fr/wp-content/uploads/jet-form-builder/b38ef41aa6aa41f444df6a86405155ce/2024/06/IMG_20230915_130503_792-1.jpg,9/15/2023 0:00,14.0000000,15.0000000,43.7585110000000,7.4528370000000,,Cabbé,76663,Observation #76663,https://biolit.fr/observations/observation-76663/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b38ef41aa6aa41f444df6a86405155ce/2024/06/IMG_20230915_130503_792-1.jpg,,,Ne sais pas +N1,76666,Sortie #76666,https://biolit.fr/sorties/sortie-76666/,Loche Kodjo,https://biolit.fr/wp-content/uploads/jet-form-builder/34b905f78174d7d479ded466b5cd6611/2024/06/114835_1718650963543.jpg,06/12/2024,15.0000000,15.0:35,48.2598460000000,-4.58404500000000,,Grotte de Morgat,76668,Observation #76668,https://biolit.fr/observations/observation-76668/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/34b905f78174d7d479ded466b5cd6611/2024/06/114835_1718650963543.jpg,,TRUE,Identifiable +N1,76672,Sortie #76672,https://biolit.fr/sorties/sortie-76672/,Loche Kodjo,https://biolit.fr/wp-content/uploads/jet-form-builder/34b905f78174d7d479ded466b5cd6611/2024/06/110153_1718654364329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/34b905f78174d7d479ded466b5cd6611/2024/06/110154_1718654336203.jpg,6/14/2024 0:00,12.0000000,12.0:45,48.2598460000000,-4.58404500000000,,Plouha - Gwin Zegal,76674,Observation #76674,https://biolit.fr/observations/observation-76674/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/jet-form-builder/34b905f78174d7d479ded466b5cd6611/2024/06/110153_1718654364329-scaled.jpg,,TRUE,Identifiable +N1,76672,Sortie #76672,https://biolit.fr/sorties/sortie-76672/,Loche Kodjo,https://biolit.fr/wp-content/uploads/jet-form-builder/34b905f78174d7d479ded466b5cd6611/2024/06/110153_1718654364329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/34b905f78174d7d479ded466b5cd6611/2024/06/110154_1718654336203.jpg,6/14/2024 0:00,12.0000000,12.0:45,48.2598460000000,-4.58404500000000,,Plouha - Gwin Zegal,76676,Observation #76676,https://biolit.fr/observations/observation-76676/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/34b905f78174d7d479ded466b5cd6611/2024/06/110154_1718654336203.jpg,,,Identifiable +N1,76776,Sortie #76776,https://biolit.fr/sorties/sortie-76776/,Hervé Alexandre,https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1071.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1072.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1073.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1074.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1075.jpeg,6/20/2024 0:00,13.0:47,14.0000000,48.6400450000000,-2.07252500000000,Planète Mer (antenne Dinard),Dinard,76780,Observation #76780,https://biolit.fr/observations/observation-76780/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1071.jpeg,,TRUE,Identifiable +N1,76776,Sortie #76776,https://biolit.fr/sorties/sortie-76776/,Hervé Alexandre,https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1071.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1072.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1073.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1074.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1075.jpeg,6/20/2024 0:00,13.0:47,14.0000000,48.6400450000000,-2.07252500000000,Planète Mer (antenne Dinard),Dinard,76794,Observation #76794,https://biolit.fr/observations/observation-76794/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1072.jpeg,,TRUE,Identifiable +N1,76776,Sortie #76776,https://biolit.fr/sorties/sortie-76776/,Hervé Alexandre,https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1071.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1072.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1073.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1074.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1075.jpeg,6/20/2024 0:00,13.0:47,14.0000000,48.6400450000000,-2.07252500000000,Planète Mer (antenne Dinard),Dinard,76801,Observation #76801,https://biolit.fr/observations/observation-76801/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1072.jpeg,,TRUE,Identifiable +N1,76776,Sortie #76776,https://biolit.fr/sorties/sortie-76776/,Hervé Alexandre,https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1071.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1072.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1073.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1074.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1075.jpeg,6/20/2024 0:00,13.0:47,14.0000000,48.6400450000000,-2.07252500000000,Planète Mer (antenne Dinard),Dinard,76804,Observation #76804,https://biolit.fr/observations/observation-76804/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1073.jpeg,,TRUE,Identifiable +N1,76776,Sortie #76776,https://biolit.fr/sorties/sortie-76776/,Hervé Alexandre,https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1071.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1072.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1073.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1074.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1075.jpeg,6/20/2024 0:00,13.0:47,14.0000000,48.6400450000000,-2.07252500000000,Planète Mer (antenne Dinard),Dinard,76806,Observation #76806,https://biolit.fr/observations/observation-76806/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1074.jpeg,,TRUE,Identifiable +N1,76776,Sortie #76776,https://biolit.fr/sorties/sortie-76776/,Hervé Alexandre,https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1071.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1072.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1073.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1074.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1075.jpeg,6/20/2024 0:00,13.0:47,14.0000000,48.6400450000000,-2.07252500000000,Planète Mer (antenne Dinard),Dinard,76819,Observation #76819,https://biolit.fr/observations/observation-76819/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1075.jpeg,,TRUE,Identifiable +N1,76877,Sortie #76877,https://biolit.fr/sorties/sortie-76877/,Charrier Guy,https://biolit.fr/wp-content/uploads/jet-form-builder/4a6f3950e758b2efc95efe92400e1c2b/2024/06/WhatsApp-Image-2024-06-21-a-14.32.26_2f9ea660.jpg,6/21/2024 0:00,11.000005,11.0000000,46.4481770,-1.6812680,,Plage de la république Talmont st hilaire,76879,Observation #76879,https://biolit.fr/observations/observation-76879/,Felimare cantabrica,Doris cantabrique,,https://biolit.fr/wp-content/uploads/jet-form-builder/4a6f3950e758b2efc95efe92400e1c2b/2024/06/WhatsApp-Image-2024-06-21-a-14.32.26_2f9ea660.jpg,,TRUE,Identifiable +N1,76886,Sortie #76886,https://biolit.fr/sorties/sortie-76886/,Bourgeat Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.36.56.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.37.03.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.37.08.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.37.13.png,6/21/2024 0:00,13.0000000,14.0:45,43.3576030000000,5.29034300000000,Centre Initiation et Découverte Mer Ville de Marseille,"Corbière, plage du Fortin",76888,Observation #76888,https://biolit.fr/observations/observation-76888/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.36.56.png,,TRUE,Identifiable +N1,76886,Sortie #76886,https://biolit.fr/sorties/sortie-76886/,Bourgeat Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.36.56.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.37.03.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.37.08.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.37.13.png,6/21/2024 0:00,13.0000000,14.0:45,43.3576030000000,5.29034300000000,Centre Initiation et Découverte Mer Ville de Marseille,"Corbière, plage du Fortin",76890,Observation #76890,https://biolit.fr/observations/observation-76890/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.37.03.png,,TRUE,Ne sais pas +N1,76886,Sortie #76886,https://biolit.fr/sorties/sortie-76886/,Bourgeat Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.36.56.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.37.03.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.37.08.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.37.13.png,6/21/2024 0:00,13.0000000,14.0:45,43.3576030000000,5.29034300000000,Centre Initiation et Découverte Mer Ville de Marseille,"Corbière, plage du Fortin",76892,Observation #76892,https://biolit.fr/observations/observation-76892/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.37.08.png,,TRUE,Identifiable +N1,76886,Sortie #76886,https://biolit.fr/sorties/sortie-76886/,Bourgeat Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.36.56.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.37.03.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.37.08.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.37.13.png,6/21/2024 0:00,13.0000000,14.0:45,43.3576030000000,5.29034300000000,Centre Initiation et Découverte Mer Ville de Marseille,"Corbière, plage du Fortin",76894,Observation #76894,https://biolit.fr/observations/observation-76894/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.37.13.png,,TRUE,Identifiable +N1,76912,Sortie #76912,https://biolit.fr/sorties/sortie-76912/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,5/19/2024 0:00,15.0000000,17.0000000,43.257282000000,5.37519200000000,,Plage de Borély,76914,Observation #76914,https://biolit.fr/observations/observation-76914/,Euthria cornea,Buccin veiné,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg,,,Identifiable +N1,76912,Sortie #76912,https://biolit.fr/sorties/sortie-76912/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,5/19/2024 0:00,15.0000000,17.0000000,43.257282000000,5.37519200000000,,Plage de Borély,76916,Observation #76916,https://biolit.fr/observations/observation-76916/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg,,,Identifiable +N1,76912,Sortie #76912,https://biolit.fr/sorties/sortie-76912/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,5/19/2024 0:00,15.0000000,17.0000000,43.257282000000,5.37519200000000,,Plage de Borély,76918,Observation #76918,https://biolit.fr/observations/observation-76918/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg,,,Identifiable +N1,76912,Sortie #76912,https://biolit.fr/sorties/sortie-76912/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,5/19/2024 0:00,15.0000000,17.0000000,43.257282000000,5.37519200000000,,Plage de Borély,76920,Observation #76920,https://biolit.fr/observations/observation-76920/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg,,,Ne sais pas +N1,76912,Sortie #76912,https://biolit.fr/sorties/sortie-76912/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,5/19/2024 0:00,15.0000000,17.0000000,43.257282000000,5.37519200000000,,Plage de Borély,76922,Observation #76922,https://biolit.fr/observations/observation-76922/,Striarca lactea,Striarca laiteuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg,,,Ne sais pas +N1,76912,Sortie #76912,https://biolit.fr/sorties/sortie-76912/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,5/19/2024 0:00,15.0000000,17.0000000,43.257282000000,5.37519200000000,,Plage de Borély,76924,Observation #76924,https://biolit.fr/observations/observation-76924/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg,,,Ne sais pas +N1,76912,Sortie #76912,https://biolit.fr/sorties/sortie-76912/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,5/19/2024 0:00,15.0000000,17.0000000,43.257282000000,5.37519200000000,,Plage de Borély,76926,Observation #76926,https://biolit.fr/observations/observation-76926/,Lepas (Anatifa) hillii,Anatife à ceinture orange,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg,,,Ne sais pas +N1,76912,Sortie #76912,https://biolit.fr/sorties/sortie-76912/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,5/19/2024 0:00,15.0000000,17.0000000,43.257282000000,5.37519200000000,,Plage de Borély,76928,Observation #76928,https://biolit.fr/observations/observation-76928/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg,,,Identifiable +N1,76912,Sortie #76912,https://biolit.fr/sorties/sortie-76912/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,5/19/2024 0:00,15.0000000,17.0000000,43.257282000000,5.37519200000000,,Plage de Borély,76930,Observation #76930,https://biolit.fr/observations/observation-76930/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg,,,Ne sais pas +N1,76912,Sortie #76912,https://biolit.fr/sorties/sortie-76912/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,5/19/2024 0:00,15.0000000,17.0000000,43.257282000000,5.37519200000000,,Plage de Borély,76932,Observation #76932,https://biolit.fr/observations/observation-76932/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg,,,Ne sais pas +N1,76912,Sortie #76912,https://biolit.fr/sorties/sortie-76912/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,5/19/2024 0:00,15.0000000,17.0000000,43.257282000000,5.37519200000000,,Plage de Borély,76934,Observation #76934,https://biolit.fr/observations/observation-76934/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg,,,Identifiable +N1,76912,Sortie #76912,https://biolit.fr/sorties/sortie-76912/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,5/19/2024 0:00,15.0000000,17.0000000,43.257282000000,5.37519200000000,,Plage de Borély,76936,Observation #76936,https://biolit.fr/observations/observation-76936/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg,,,Identifiable +N1,76912,Sortie #76912,https://biolit.fr/sorties/sortie-76912/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,5/19/2024 0:00,15.0000000,17.0000000,43.257282000000,5.37519200000000,,Plage de Borély,76938,Observation #76938,https://biolit.fr/observations/observation-76938/,Tritia corniculum,Tritia corniculum,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg,,,Identifiable +N1,76912,Sortie #76912,https://biolit.fr/sorties/sortie-76912/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,5/19/2024 0:00,15.0000000,17.0000000,43.257282000000,5.37519200000000,,Plage de Borély,76940,Observation #76940,https://biolit.fr/observations/observation-76940/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg,,,Identifiable +N1,76912,Sortie #76912,https://biolit.fr/sorties/sortie-76912/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,5/19/2024 0:00,15.0000000,17.0000000,43.257282000000,5.37519200000000,,Plage de Borély,76942,Observation #76942,https://biolit.fr/observations/observation-76942/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg,,TRUE,Identifiable +N1,76912,Sortie #76912,https://biolit.fr/sorties/sortie-76912/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,5/19/2024 0:00,15.0000000,17.0000000,43.257282000000,5.37519200000000,,Plage de Borély,76944,Observation #76944,https://biolit.fr/observations/observation-76944/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,,,Ne sais pas +N1,76949,(empty),https://biolit.fr/sorties/empty-2/,Eric Blanchard,,5/30/2024 0:00,,,,,,,,,,,,,,,, +N1,76951,(empty),https://biolit.fr/sorties/empty-3/,Eric Blanchard,,5/30/2024 0:00,,,,,,,,,,,,,,,, +N1,76953,(empty),https://biolit.fr/sorties/empty-4/,Eric Blanchard,,5/30/2024 0:00,,,,,,,,,,,,,,,, +N1,76961,Sortie #76961,https://biolit.fr/sorties/sortie-76961/,Eric Blanchard,FALSE,5/31/2024 0:00,18.0000000,22.0:28,49.2853590000000,-0.274658000000,,,,,,,,,,,, +N1,76970,Sortie #76970,https://biolit.fr/sorties/sortie-76970/,Eric Blanchard,FALSE,06/05/2024,22.0:31,23.0:31,49.3390770000000,-0.32959000000,,plage de la mare,,,,,,,,,, +N1,76973,Sortie #76973,https://biolit.fr/sorties/sortie-76973/,Eric Blanchard,FALSE,5/30/2024 0:00,21.0000000,19.0000000,48.5926960,-2.2870500,,plage de la mare,,,,,,,,,, +N1,76977,(empty),https://biolit.fr/sorties/empty-8/,Eric Blanchard,,5/30/2024 0:00,,,,,,,,,,,,,,,, +N1,76979,Sortie #76979,https://biolit.fr/sorties/sortie-76979/,Eric Blanchard,FALSE,5/30/2024 0:00,21.0000000,19.0000000,48.4311580000000,-4.7900390000,,plage de la mare,,,,,,,,,, +N1,76995,Sortie #76995,https://biolit.fr/sorties/sortie-76995/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/06/lagune-scaled.jpg,05/11/2024,14.0000000,16.0000000,42.5353450000000,3.06435900000000,LABELBLEU,Crique de porteils - Argelès sur mer,,,,,,,,,, +N1,76998,Sortie #76998,https://biolit.fr/sorties/sortie-76998/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/06/Biolit.jpg,5/22/2024 0:00,14.0000000,14.0:45,42.7345000000000,3.0377570000000,LABELBLEU,Plage Sainte marie la mer,,,,,,,,,, +N1,77001,Sortie #77001,https://biolit.fr/sorties/sortie-77001/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/06/Biolit-1.jpg,5/22/2024 0:00,14.0000000,14.0:45,42.7350850000000,3.03753700000000,LABELBLEU,Plage Sainte marie la mer,77003,Observation #77003,https://biolit.fr/observations/observation-77003/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/06/Biolit-1.jpg,,, +N1,77006,Sortie #77006,https://biolit.fr/sorties/sortie-77006/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/06/WhatsApp-Image-2024-06-28-a-16.55.46_022b411d.jpg,5/25/2024 0:00,14.0000000,14.0:45,42.502021000000,3.12487000000000,LABELBLEU,plage de paulilles,77008,Observation #77008,https://biolit.fr/observations/observation-77008/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/06/WhatsApp-Image-2024-06-28-a-16.55.46_022b411d.jpg,,,Identifiable +N1,77016,Sortie #77016,https://biolit.fr/sorties/sortie-77016/,PASTOR Enzo,https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060265-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060262-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060247-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060258-scaled.jpg,6/29/2024 0:00,9.0000000,10.0000000,43.546232,6.938309,,Plage du château. Mandelieu la napoule,77018,Observation #77018,https://biolit.fr/observations/observation-77018/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060265-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060262-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060247-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060258-scaled.jpg,,,Ne sais pas +N1,77016,Sortie #77016,https://biolit.fr/sorties/sortie-77016/,PASTOR Enzo,https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060265-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060262-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060247-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060258-scaled.jpg,6/29/2024 0:00,9.0000000,10.0000000,43.546232,6.938309,,Plage du château. Mandelieu la napoule,77020,Observation #77020,https://biolit.fr/observations/observation-77020/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060257-scaled.jpg,,,Ne sais pas +N1,77016,Sortie #77016,https://biolit.fr/sorties/sortie-77016/,PASTOR Enzo,https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060265-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060262-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060247-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060258-scaled.jpg,6/29/2024 0:00,9.0000000,10.0000000,43.546232,6.938309,,Plage du château. Mandelieu la napoule,77022,Observation #77022,https://biolit.fr/observations/observation-77022/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060262-scaled.jpg,,,Ne sais pas +N1,77016,Sortie #77016,https://biolit.fr/sorties/sortie-77016/,PASTOR Enzo,https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060265-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060262-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060247-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060258-scaled.jpg,6/29/2024 0:00,9.0000000,10.0000000,43.546232,6.938309,,Plage du château. Mandelieu la napoule,77024,Observation #77024,https://biolit.fr/observations/observation-77024/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060247-scaled.jpg,,TRUE,Identifiable +N1,77016,Sortie #77016,https://biolit.fr/sorties/sortie-77016/,PASTOR Enzo,https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060265-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060262-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060247-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060258-scaled.jpg,6/29/2024 0:00,9.0000000,10.0000000,43.546232,6.938309,,Plage du château. Mandelieu la napoule,77026,Observation #77026,https://biolit.fr/observations/observation-77026/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060258-scaled.jpg,,,Identifiable +N1,77042,Sortie #77042,https://biolit.fr/sorties/sortie-77042/,DABAUX Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/eed4a23e728895dbbc26f48c6512ede6/2024/07/1719817624647-scaled.jpg,6/28/2024 0:00,9.0:48,10.0000000,43.3575680000000,5.29019800000000,,plage de Corbière,,,,,,,,,, +N1,77049,Sortie #77049,https://biolit.fr/sorties/sortie-77049/,Ligue de l'enseignement,https://biolit.fr/wp-content/uploads/jet-form-builder/53c37a35e4213448a6b3fbbb6ceddb5d/2024/07/Bus-832-Cannes.png,6/13/2024 0:00,10.0000000,11.0000000,47.2536480000000,-2.33486900000000,,Plage des sablons,,,,,,,,,, +N1,77055,Sortie #77055,https://biolit.fr/sorties/sortie-77055/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_142754161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_143017355-scaled.jpg,6/23/2024 0:00,14.0000000,14.0000000,43.2904140000000,5.35532500000000,,Plage des Catalans,77057,Observation #77057,https://biolit.fr/observations/observation-77057/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_142754161-scaled.jpg,,,Ne sais pas +N1,77055,Sortie #77055,https://biolit.fr/sorties/sortie-77055/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_142754161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_143017355-scaled.jpg,6/23/2024 0:00,14.0000000,14.0000000,43.2904140000000,5.35532500000000,,Plage des Catalans,77059,Observation #77059,https://biolit.fr/observations/observation-77059/,Codium effusum,Codium étalé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_143017355-scaled.jpg,,,Ne sais pas +N1,77073,Sortie #77073,https://biolit.fr/sorties/sortie-77073/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/07/IMG_4768-scaled.jpg,6/29/2024 0:00,11.0000000,12.0000000,43.2111350000000,5.38440900000000,,Podestat,77076,Observation #77076,https://biolit.fr/observations/observation-77076/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/07/IMG_4768-scaled.jpg,,,Identifiable +N1,77082,Sortie #77082,https://biolit.fr/sorties/sortie-77082/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164332-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164325-scaled.jpg,6/23/2024 0:00,17.0000000,17.0000000,43.1065500000000,6.29853200000000,,L'estagnol,,,,,,,,,, +N1,77092,Sortie #77092,https://biolit.fr/sorties/sortie-77092/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_152848524_HDR_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_152906487_HDR_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_153110732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_153206806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_153850638-scaled.jpg,6/23/2024 0:00,16.0000000,16.0000000,43.2945600000000,5.35924800000000,,Falaises du Pharo,77094,Observation #77094,https://biolit.fr/observations/observation-77094/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_152848524_HDR_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_152906487_HDR_.jpg,,,Identifiable +N1,77092,Sortie #77092,https://biolit.fr/sorties/sortie-77092/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_152848524_HDR_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_152906487_HDR_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_153110732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_153206806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_153850638-scaled.jpg,6/23/2024 0:00,16.0000000,16.0000000,43.2945600000000,5.35924800000000,,Falaises du Pharo,77096,Observation #77096,https://biolit.fr/observations/observation-77096/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_153110732-scaled.jpg,,,Identifiable +N1,77092,Sortie #77092,https://biolit.fr/sorties/sortie-77092/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_152848524_HDR_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_152906487_HDR_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_153110732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_153206806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_153850638-scaled.jpg,6/23/2024 0:00,16.0000000,16.0000000,43.2945600000000,5.35924800000000,,Falaises du Pharo,77098,Observation #77098,https://biolit.fr/observations/observation-77098/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_153206806-scaled.jpg,,,Ne sais pas +N1,77092,Sortie #77092,https://biolit.fr/sorties/sortie-77092/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_152848524_HDR_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_152906487_HDR_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_153110732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_153206806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_153850638-scaled.jpg,6/23/2024 0:00,16.0000000,16.0000000,43.2945600000000,5.35924800000000,,Falaises du Pharo,77100,Observation #77100,https://biolit.fr/observations/observation-77100/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_153850638-scaled.jpg,,TRUE,Identifiable +N1,77106,Sortie #77106,https://biolit.fr/sorties/sortie-77106/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164332-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164325-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164316-1-scaled.jpg,6/23/2024 0:00,17.0000000,17.0000000,43.1072520000000,6.29899900000000,,L'estagnol,,,,,,,,,, +N1,77111,Sortie #77111,https://biolit.fr/sorties/sortie-77111/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164332-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164325-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164316-2-scaled.jpg,6/23/2024 0:00,17.0000000,17.0000000,43.1072330000000,6.29897200000000,,L'estagnol,77113,Observation #77113,https://biolit.fr/observations/observation-77113/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164332-2-scaled.jpg,,TRUE,Identifiable +N1,77111,Sortie #77111,https://biolit.fr/sorties/sortie-77111/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164332-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164325-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164316-2-scaled.jpg,6/23/2024 0:00,17.0000000,17.0000000,43.1072330000000,6.29897200000000,,L'estagnol,77115,Observation #77115,https://biolit.fr/observations/observation-77115/,Cymodocea nodosa,Cymodocée,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164325-2-scaled.jpg,,,Identifiable +N1,77111,Sortie #77111,https://biolit.fr/sorties/sortie-77111/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164332-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164325-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164316-2-scaled.jpg,6/23/2024 0:00,17.0000000,17.0000000,43.1072330000000,6.29897200000000,,L'estagnol,77117,Observation #77117,https://biolit.fr/observations/observation-77117/,Caulerpa cylindracea,Caulerpe cylindracée,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164316-2-scaled.jpg,,TRUE,Identifiable +N1,77129,Sortie #77129,https://biolit.fr/sorties/sortie-77129/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-01-233110.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183735-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_110645444.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_110652149_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183337033-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183352537_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183850120-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183858508-rotated.jpg,6/30/2024 0:00,11.0000000,11.0000000,43.2522300000000,5.37264500000000,,Plage de la Vielle Chapelle,77131,Observation #77131,https://biolit.fr/observations/observation-77131/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-01-233110.jpg,,,Ne sais pas +N1,77129,Sortie #77129,https://biolit.fr/sorties/sortie-77129/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-01-233110.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183735-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_110645444.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_110652149_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183337033-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183352537_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183850120-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183858508-rotated.jpg,6/30/2024 0:00,11.0000000,11.0000000,43.2522300000000,5.37264500000000,,Plage de la Vielle Chapelle,77133,Observation #77133,https://biolit.fr/observations/observation-77133/,Jania rubens,Janie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183352537_HDR.jpg,,,Identifiable +N1,77129,Sortie #77129,https://biolit.fr/sorties/sortie-77129/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-01-233110.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183735-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_110645444.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_110652149_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183337033-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183352537_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183850120-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183858508-rotated.jpg,6/30/2024 0:00,11.0000000,11.0000000,43.2522300000000,5.37264500000000,,Plage de la Vielle Chapelle,77135,Observation #77135,https://biolit.fr/observations/observation-77135/,Corallina officinalis/caespitosa,Coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183337033-rotated.jpg,,,Identifiable +N1,77129,Sortie #77129,https://biolit.fr/sorties/sortie-77129/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-01-233110.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183735-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_110645444.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_110652149_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183337033-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183352537_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183850120-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183858508-rotated.jpg,6/30/2024 0:00,11.0000000,11.0000000,43.2522300000000,5.37264500000000,,Plage de la Vielle Chapelle,77137,Observation #77137,https://biolit.fr/observations/observation-77137/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_110645444.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_110652149_HDR-scaled.jpg,,,Identifiable +N1,77129,Sortie #77129,https://biolit.fr/sorties/sortie-77129/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-01-233110.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183735-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_110645444.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_110652149_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183337033-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183352537_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183850120-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183858508-rotated.jpg,6/30/2024 0:00,11.0000000,11.0000000,43.2522300000000,5.37264500000000,,Plage de la Vielle Chapelle,77139,Observation #77139,https://biolit.fr/observations/observation-77139/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183850120-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183858508-rotated.jpg,,,Ne sais pas +N1,77129,Sortie #77129,https://biolit.fr/sorties/sortie-77129/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-01-233110.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183735-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_110645444.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_110652149_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183337033-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183352537_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183850120-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183858508-rotated.jpg,6/30/2024 0:00,11.0000000,11.0000000,43.2522300000000,5.37264500000000,,Plage de la Vielle Chapelle,77141,Observation #77141,https://biolit.fr/observations/observation-77141/,Cladostephus spongiosus,Cladostéphus spongieux,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183735-scaled.jpg,,,Ne sais pas +N1,77163,Sortie #77163,https://biolit.fr/sorties/sortie-77163/,BOADA Kathrine,https://biolit.fr/wp-content/uploads/jet-form-builder/8e3bf19452965d01429ae561e46baaf0/2024/07/P5190381-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e3bf19452965d01429ae561e46baaf0/2024/07/P5190380-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e3bf19452965d01429ae561e46baaf0/2024/07/P5190384-scaled.jpg,05/04/2024,20.0000000,21.0000000,43.3290120000000,5.10087500000000,,Les 3 frères SAUSSET LES PINS,77165,Observation #77165,https://biolit.fr/observations/observation-77165/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8e3bf19452965d01429ae561e46baaf0/2024/07/P5190384-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e3bf19452965d01429ae561e46baaf0/2024/07/P5190380-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e3bf19452965d01429ae561e46baaf0/2024/07/P5190381-scaled.jpg,,TRUE,Identifiable +N1,77175,Sortie #77175,https://biolit.fr/sorties/sortie-77175/,Carvin Laetitia,https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/7196fe70-434f-46df-bb63-a6417658b323.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/a7ee840c-22d8-4736-9fd1-4b508ed6af36.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/aa71b180-63a0-4c47-add0-5ba147f0d5fe.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6622-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6626-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6607-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6606-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6604-scaled.jpeg,07/03/2024,8.0:31,11.0:31,43.0094510000000,6.2178560000000,,Car Porquerolles plage de la Courtade 3,77177,Observation #77177,https://biolit.fr/observations/observation-77177/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/7196fe70-434f-46df-bb63-a6417658b323.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/a7ee840c-22d8-4736-9fd1-4b508ed6af36.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/aa71b180-63a0-4c47-add0-5ba147f0d5fe.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6622-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6626-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6607-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6606-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6604-scaled.jpeg,,,Ne sais pas +N1,77175,Sortie #77175,https://biolit.fr/sorties/sortie-77175/,Carvin Laetitia,https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/7196fe70-434f-46df-bb63-a6417658b323.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/a7ee840c-22d8-4736-9fd1-4b508ed6af36.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/aa71b180-63a0-4c47-add0-5ba147f0d5fe.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6622-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6626-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6607-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6606-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6604-scaled.jpeg,07/03/2024,8.0:31,11.0:31,43.0094510000000,6.2178560000000,,Car Porquerolles plage de la Courtade 3,77181,Observation #77181,https://biolit.fr/observations/observation-77181/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6604-scaled.jpeg,,,Ne sais pas +N1,77175,Sortie #77175,https://biolit.fr/sorties/sortie-77175/,Carvin Laetitia,https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/7196fe70-434f-46df-bb63-a6417658b323.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/a7ee840c-22d8-4736-9fd1-4b508ed6af36.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/aa71b180-63a0-4c47-add0-5ba147f0d5fe.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6622-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6626-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6607-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6606-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6604-scaled.jpeg,07/03/2024,8.0:31,11.0:31,43.0094510000000,6.2178560000000,,Car Porquerolles plage de la Courtade 3,77183,Observation #77183,https://biolit.fr/observations/observation-77183/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6607-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6606-scaled.jpeg,,TRUE,Ne sais pas +N1,77175,Sortie #77175,https://biolit.fr/sorties/sortie-77175/,Carvin Laetitia,https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/7196fe70-434f-46df-bb63-a6417658b323.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/a7ee840c-22d8-4736-9fd1-4b508ed6af36.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/aa71b180-63a0-4c47-add0-5ba147f0d5fe.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6622-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6626-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6607-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6606-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6604-scaled.jpeg,07/03/2024,8.0:31,11.0:31,43.0094510000000,6.2178560000000,,Car Porquerolles plage de la Courtade 3,77185,Observation #77185,https://biolit.fr/observations/observation-77185/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6622-scaled.jpeg,,,Identifiable +N1,77198,Sortie #77198,https://biolit.fr/sorties/sortie-77198/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Acanthocardia.jpeg,04/08/2024,16.0000000,17.0000000,42.6420110000000,9.46061300000000,La Girelle,Borgo,77200,Observation #77200,https://biolit.fr/observations/observation-77200/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpg,,,Identifiable +N1,77198,Sortie #77198,https://biolit.fr/sorties/sortie-77198/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Acanthocardia.jpeg,04/08/2024,16.0000000,17.0000000,42.6420110000000,9.46061300000000,La Girelle,Borgo,77202,Observation #77202,https://biolit.fr/observations/observation-77202/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpg,,,Identifiable +N1,77198,Sortie #77198,https://biolit.fr/sorties/sortie-77198/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Acanthocardia.jpeg,04/08/2024,16.0000000,17.0000000,42.6420110000000,9.46061300000000,La Girelle,Borgo,77204,Observation #77204,https://biolit.fr/observations/observation-77204/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1.jpg,,,Identifiable +N1,77198,Sortie #77198,https://biolit.fr/sorties/sortie-77198/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Acanthocardia.jpeg,04/08/2024,16.0000000,17.0000000,42.6420110000000,9.46061300000000,La Girelle,Borgo,77206,Observation #77206,https://biolit.fr/observations/observation-77206/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large.jpg,,,Identifiable +N1,77198,Sortie #77198,https://biolit.fr/sorties/sortie-77198/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Acanthocardia.jpeg,04/08/2024,16.0000000,17.0000000,42.6420110000000,9.46061300000000,La Girelle,Borgo,77208,Observation #77208,https://biolit.fr/observations/observation-77208/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1.jpeg,,,Identifiable +N1,77198,Sortie #77198,https://biolit.fr/sorties/sortie-77198/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Acanthocardia.jpeg,04/08/2024,16.0000000,17.0000000,42.6420110000000,9.46061300000000,La Girelle,Borgo,77210,Observation #77210,https://biolit.fr/observations/observation-77210/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large.jpeg,,,Identifiable +N1,77198,Sortie #77198,https://biolit.fr/sorties/sortie-77198/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Acanthocardia.jpeg,04/08/2024,16.0000000,17.0000000,42.6420110000000,9.46061300000000,La Girelle,Borgo,77212,Observation #77212,https://biolit.fr/observations/observation-77212/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Acanthocardia.jpeg,,,Ne sais pas +N1,77226,Sortie #77226,https://biolit.fr/sorties/sortie-77226/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpg,04/09/2024,15.0000000,17.0000000,42.7415610000000,9.46219500000000,La Girelle,Santa-Maria-Di-Lota,77228,Observation #77228,https://biolit.fr/observations/observation-77228/,Maja squinado,Grande araignée de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpg,,,Identifiable +N1,77226,Sortie #77226,https://biolit.fr/sorties/sortie-77226/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpg,04/09/2024,15.0000000,17.0000000,42.7415610000000,9.46219500000000,La Girelle,Santa-Maria-Di-Lota,77230,Observation #77230,https://biolit.fr/observations/observation-77230/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpg,,,Identifiable +N1,77226,Sortie #77226,https://biolit.fr/sorties/sortie-77226/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpg,04/09/2024,15.0000000,17.0000000,42.7415610000000,9.46219500000000,La Girelle,Santa-Maria-Di-Lota,77232,Observation #77232,https://biolit.fr/observations/observation-77232/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpg,,,Ne sais pas +N1,77226,Sortie #77226,https://biolit.fr/sorties/sortie-77226/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpg,04/09/2024,15.0000000,17.0000000,42.7415610000000,9.46219500000000,La Girelle,Santa-Maria-Di-Lota,77234,Observation #77234,https://biolit.fr/observations/observation-77234/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpg,,,Identifiable +N1,77226,Sortie #77226,https://biolit.fr/sorties/sortie-77226/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpg,04/09/2024,15.0000000,17.0000000,42.7415610000000,9.46219500000000,La Girelle,Santa-Maria-Di-Lota,77236,Observation #77236,https://biolit.fr/observations/observation-77236/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpg,,,Identifiable +N1,77226,Sortie #77226,https://biolit.fr/sorties/sortie-77226/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpg,04/09/2024,15.0000000,17.0000000,42.7415610000000,9.46219500000000,La Girelle,Santa-Maria-Di-Lota,77238,Observation #77238,https://biolit.fr/observations/observation-77238/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpg,,,Identifiable +N1,77226,Sortie #77226,https://biolit.fr/sorties/sortie-77226/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpg,04/09/2024,15.0000000,17.0000000,42.7415610000000,9.46219500000000,La Girelle,Santa-Maria-Di-Lota,77240,Observation #77240,https://biolit.fr/observations/observation-77240/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpg,,,Ne sais pas +N1,77226,Sortie #77226,https://biolit.fr/sorties/sortie-77226/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpg,04/09/2024,15.0000000,17.0000000,42.7415610000000,9.46219500000000,La Girelle,Santa-Maria-Di-Lota,77242,Observation #77242,https://biolit.fr/observations/observation-77242/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpg,,,Identifiable +N1,77226,Sortie #77226,https://biolit.fr/sorties/sortie-77226/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpg,04/09/2024,15.0000000,17.0000000,42.7415610000000,9.46219500000000,La Girelle,Santa-Maria-Di-Lota,77244,Observation #77244,https://biolit.fr/observations/observation-77244/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpg,,,Identifiable +N1,77262,Sortie #77262,https://biolit.fr/sorties/sortie-77262/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16.jpeg,04/11/2024,13.0000000,15.0000000,42.5732240000000,9.52286700000000,La Girelle,Borgo,77264,Observation #77264,https://biolit.fr/observations/observation-77264/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15.jpeg,,,Identifiable +N1,77262,Sortie #77262,https://biolit.fr/sorties/sortie-77262/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16.jpeg,04/11/2024,13.0000000,15.0000000,42.5732240000000,9.52286700000000,La Girelle,Borgo,77266,Observation #77266,https://biolit.fr/observations/observation-77266/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpeg,,,Identifiable +N1,77262,Sortie #77262,https://biolit.fr/sorties/sortie-77262/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16.jpeg,04/11/2024,13.0000000,15.0000000,42.5732240000000,9.52286700000000,La Girelle,Borgo,77268,Observation #77268,https://biolit.fr/observations/observation-77268/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpeg,,,Identifiable +N1,77262,Sortie #77262,https://biolit.fr/sorties/sortie-77262/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16.jpeg,04/11/2024,13.0000000,15.0000000,42.5732240000000,9.52286700000000,La Girelle,Borgo,77270,Observation #77270,https://biolit.fr/observations/observation-77270/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpeg,,,Identifiable +N1,77262,Sortie #77262,https://biolit.fr/sorties/sortie-77262/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16.jpeg,04/11/2024,13.0000000,15.0000000,42.5732240000000,9.52286700000000,La Girelle,Borgo,77272,Observation #77272,https://biolit.fr/observations/observation-77272/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpeg,,,Identifiable +N1,77262,Sortie #77262,https://biolit.fr/sorties/sortie-77262/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16.jpeg,04/11/2024,13.0000000,15.0000000,42.5732240000000,9.52286700000000,La Girelle,Borgo,77274,Observation #77274,https://biolit.fr/observations/observation-77274/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpeg,,,Identifiable +N1,77262,Sortie #77262,https://biolit.fr/sorties/sortie-77262/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16.jpeg,04/11/2024,13.0000000,15.0000000,42.5732240000000,9.52286700000000,La Girelle,Borgo,77276,Observation #77276,https://biolit.fr/observations/observation-77276/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpeg,,,Identifiable +N1,77262,Sortie #77262,https://biolit.fr/sorties/sortie-77262/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16.jpeg,04/11/2024,13.0000000,15.0000000,42.5732240000000,9.52286700000000,La Girelle,Borgo,77278,Observation #77278,https://biolit.fr/observations/observation-77278/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpeg,,,Identifiable +N1,77262,Sortie #77262,https://biolit.fr/sorties/sortie-77262/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16.jpeg,04/11/2024,13.0000000,15.0000000,42.5732240000000,9.52286700000000,La Girelle,Borgo,77280,Observation #77280,https://biolit.fr/observations/observation-77280/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpeg,,,Ne sais pas +N1,77262,Sortie #77262,https://biolit.fr/sorties/sortie-77262/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16.jpeg,04/11/2024,13.0000000,15.0000000,42.5732240000000,9.52286700000000,La Girelle,Borgo,77282,Observation #77282,https://biolit.fr/observations/observation-77282/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpeg,,,Ne sais pas +N1,77262,Sortie #77262,https://biolit.fr/sorties/sortie-77262/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16.jpeg,04/11/2024,13.0000000,15.0000000,42.5732240000000,9.52286700000000,La Girelle,Borgo,77284,Observation #77284,https://biolit.fr/observations/observation-77284/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpeg,,,Ne sais pas +N1,77262,Sortie #77262,https://biolit.fr/sorties/sortie-77262/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16.jpeg,04/11/2024,13.0000000,15.0000000,42.5732240000000,9.52286700000000,La Girelle,Borgo,77286,Observation #77286,https://biolit.fr/observations/observation-77286/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpeg,,,Ne sais pas +N1,77262,Sortie #77262,https://biolit.fr/sorties/sortie-77262/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16.jpeg,04/11/2024,13.0000000,15.0000000,42.5732240000000,9.52286700000000,La Girelle,Borgo,77288,Observation #77288,https://biolit.fr/observations/observation-77288/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16.jpeg,,,Ne sais pas +N1,77293,Sortie #77293,https://biolit.fr/sorties/sortie-77293/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpg,04/11/2024,15.0000000,17.0000000,42.7359500000000,9.34510100000000,La Girelle,Farinole,77295,Observation #77295,https://biolit.fr/observations/observation-77295/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpg,,TRUE,Identifiable +N1,77293,Sortie #77293,https://biolit.fr/sorties/sortie-77293/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpg,04/11/2024,15.0000000,17.0000000,42.7359500000000,9.34510100000000,La Girelle,Farinole,77297,Observation #77297,https://biolit.fr/observations/observation-77297/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpg,,TRUE,Identifiable +N1,77293,Sortie #77293,https://biolit.fr/sorties/sortie-77293/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpg,04/11/2024,15.0000000,17.0000000,42.7359500000000,9.34510100000000,La Girelle,Farinole,77299,Observation #77299,https://biolit.fr/observations/observation-77299/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-2.jpg,,,Ne sais pas +N1,77305,Sortie #77305,https://biolit.fr/sorties/sortie-77305/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpg,4/15/2024 0:00,16.0000000,17.0000000,42.5730030000000,9.52295800000000,La Girelle,Borgo,77307,Observation #77307,https://biolit.fr/observations/observation-77307/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-3.jpg,,,Identifiable +N1,77305,Sortie #77305,https://biolit.fr/sorties/sortie-77305/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpg,4/15/2024 0:00,16.0000000,17.0000000,42.5730030000000,9.52295800000000,La Girelle,Borgo,77309,Observation #77309,https://biolit.fr/observations/observation-77309/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpg,,,Identifiable +N1,77305,Sortie #77305,https://biolit.fr/sorties/sortie-77305/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpg,4/15/2024 0:00,16.0000000,17.0000000,42.5730030000000,9.52295800000000,La Girelle,Borgo,77311,Observation #77311,https://biolit.fr/observations/observation-77311/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpg,,TRUE,Identifiable +N1,77305,Sortie #77305,https://biolit.fr/sorties/sortie-77305/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpg,4/15/2024 0:00,16.0000000,17.0000000,42.5730030000000,9.52295800000000,La Girelle,Borgo,77313,Observation #77313,https://biolit.fr/observations/observation-77313/,Callinectes sapidus,Crabe bleu américain,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpg,,TRUE,Identifiable +N1,77316,Sortie #77316,https://biolit.fr/sorties/sortie-77316/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpg,04/09/2024,16.0000000,17.0000000,42.8114280000000,9.49010100000000,La Girelle,Sisco,77318,Observation #77318,https://biolit.fr/observations/observation-77318/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpg,,,Ne sais pas +N1,77326,Sortie #77326,https://biolit.fr/sorties/sortie-77326/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17.jpeg,4/19/2024 0:00,9.0000000,11.0000000,42.5553650000000,8.77451400000000,La Girelle,Calvi,77328,Observation #77328,https://biolit.fr/observations/observation-77328/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-1.jpeg,,,Ne sais pas +N1,77326,Sortie #77326,https://biolit.fr/sorties/sortie-77326/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17.jpeg,4/19/2024 0:00,9.0000000,11.0000000,42.5553650000000,8.77451400000000,La Girelle,Calvi,77330,Observation #77330,https://biolit.fr/observations/observation-77330/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpeg,,,Identifiable +N1,77326,Sortie #77326,https://biolit.fr/sorties/sortie-77326/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17.jpeg,4/19/2024 0:00,9.0000000,11.0000000,42.5553650000000,8.77451400000000,La Girelle,Calvi,77332,Observation #77332,https://biolit.fr/observations/observation-77332/,Limaria tuberculata,Lime tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpeg,,,Identifiable +N1,77326,Sortie #77326,https://biolit.fr/sorties/sortie-77326/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17.jpeg,4/19/2024 0:00,9.0000000,11.0000000,42.5553650000000,8.77451400000000,La Girelle,Calvi,77334,Observation #77334,https://biolit.fr/observations/observation-77334/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpeg,,,Identifiable +N1,77326,Sortie #77326,https://biolit.fr/sorties/sortie-77326/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17.jpeg,4/19/2024 0:00,9.0000000,11.0000000,42.5553650000000,8.77451400000000,La Girelle,Calvi,77336,Observation #77336,https://biolit.fr/observations/observation-77336/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-2.jpeg,,,Identifiable +N1,77326,Sortie #77326,https://biolit.fr/sorties/sortie-77326/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17.jpeg,4/19/2024 0:00,9.0000000,11.0000000,42.5553650000000,8.77451400000000,La Girelle,Calvi,77338,Observation #77338,https://biolit.fr/observations/observation-77338/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17.jpeg,,,Identifiable +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77362,Observation #77362,https://biolit.fr/observations/observation-77362/,Loripes orbiculatus,Loripes orbiculaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg,,,Identifiable +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77364,Observation #77364,https://biolit.fr/observations/observation-77364/,Loripes orbiculatus,Loripes orbiculaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg,,,Identifiable +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77366,Observation #77366,https://biolit.fr/observations/observation-77366/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg,,,Identifiable +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77368,Observation #77368,https://biolit.fr/observations/observation-77368/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg,,,Identifiable +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77370,Observation #77370,https://biolit.fr/observations/observation-77370/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg,,,Ne sais pas +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77372,Observation #77372,https://biolit.fr/observations/observation-77372/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg,,,Identifiable +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77374,Observation #77374,https://biolit.fr/observations/observation-77374/,Loripes orbiculatus,Loripes orbiculaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg,,,Identifiable +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77376,Observation #77376,https://biolit.fr/observations/observation-77376/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg,,,Ne sais pas +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77378,Observation #77378,https://biolit.fr/observations/observation-77378/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg,,,Identifiable +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77380,Observation #77380,https://biolit.fr/observations/observation-77380/,Talochlamys multistriata,Pétoncle strié,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg,,,Identifiable +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77382,Observation #77382,https://biolit.fr/observations/observation-77382/,Talochlamys multistriata,Pétoncle strié,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg,,,Identifiable +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77384,Observation #77384,https://biolit.fr/observations/observation-77384/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg,,,Ne sais pas +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77386,Observation #77386,https://biolit.fr/observations/observation-77386/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg,,,Ne sais pas +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77388,Observation #77388,https://biolit.fr/observations/observation-77388/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg,,,Ne sais pas +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77390,Observation #77390,https://biolit.fr/observations/observation-77390/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg,,,Ne sais pas +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77392,Observation #77392,https://biolit.fr/observations/observation-77392/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg,,,Identifiable +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77394,Observation #77394,https://biolit.fr/observations/observation-77394/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg,,,Ne sais pas +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77396,Observation #77396,https://biolit.fr/observations/observation-77396/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg,,,Identifiable +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77398,Observation #77398,https://biolit.fr/observations/observation-77398/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg,,,Identifiable +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77400,Observation #77400,https://biolit.fr/observations/observation-77400/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,,,Identifiable +N1,77403,Sortie #77403,https://biolit.fr/sorties/sortie-77403/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/gib.jpg,4/18/2024 0:00,15.0000000,16.0000000,42.6021610000000,8.82856600000000,La Girelle,Sant' Ambroggio,77405,Observation #77405,https://biolit.fr/observations/observation-77405/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/gib.jpg,,,Identifiable +N1,77408,Sortie #77408,https://biolit.fr/sorties/sortie-77408/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-3.jpg,4/26/2024 0:00,10.0000000,10.0000000,42.1188700000000,9.55307900000000,La Girelle,Aléria,77410,Observation #77410,https://biolit.fr/observations/observation-77410/,Naticarius stercusmuscarum,Natice mouchetée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-3.jpg,,,Identifiable +N1,77419,Sortie #77419,https://biolit.fr/sorties/sortie-77419/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P4030005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P4030001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Screenshot_20240404-084521_Gallery.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Screenshot_20240404-084505_Gallery.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310084-scaled.jpg,3/31/2024 0:00,6.0000000,6.0000000,42.6552440000000,9.45274800000000,La Girelle,Furiani,77421,Observation #77421,https://biolit.fr/observations/observation-77421/,Janthina pallida,Janthine pâle,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310086-scaled.jpg,,,Identifiable +N1,77419,Sortie #77419,https://biolit.fr/sorties/sortie-77419/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P4030005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P4030001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Screenshot_20240404-084521_Gallery.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Screenshot_20240404-084505_Gallery.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310084-scaled.jpg,3/31/2024 0:00,6.0000000,6.0000000,42.6552440000000,9.45274800000000,La Girelle,Furiani,77423,Observation #77423,https://biolit.fr/observations/observation-77423/,Janthina pallida,Janthine pâle,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310087-scaled.jpg,,,Identifiable +N1,77419,Sortie #77419,https://biolit.fr/sorties/sortie-77419/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P4030005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P4030001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Screenshot_20240404-084521_Gallery.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Screenshot_20240404-084505_Gallery.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310084-scaled.jpg,3/31/2024 0:00,6.0000000,6.0000000,42.6552440000000,9.45274800000000,La Girelle,Furiani,77425,Observation #77425,https://biolit.fr/observations/observation-77425/,Janthina pallida,Janthine pâle,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P4030005-scaled.jpg,,,Identifiable +N1,77419,Sortie #77419,https://biolit.fr/sorties/sortie-77419/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P4030005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P4030001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Screenshot_20240404-084521_Gallery.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Screenshot_20240404-084505_Gallery.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310084-scaled.jpg,3/31/2024 0:00,6.0000000,6.0000000,42.6552440000000,9.45274800000000,La Girelle,Furiani,77427,Observation #77427,https://biolit.fr/observations/observation-77427/,Janthina pallida,Janthine pâle,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310084-scaled.jpg,,,Identifiable +N1,77419,Sortie #77419,https://biolit.fr/sorties/sortie-77419/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P4030005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P4030001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Screenshot_20240404-084521_Gallery.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Screenshot_20240404-084505_Gallery.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310084-scaled.jpg,3/31/2024 0:00,6.0000000,6.0000000,42.6552440000000,9.45274800000000,La Girelle,Furiani,77429,Observation #77429,https://biolit.fr/observations/observation-77429/,Balanus crenatus,Balane crénelée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P4030001-scaled.jpg,,,Identifiable +N1,77419,Sortie #77419,https://biolit.fr/sorties/sortie-77419/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P4030005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P4030001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Screenshot_20240404-084521_Gallery.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Screenshot_20240404-084505_Gallery.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310084-scaled.jpg,3/31/2024 0:00,6.0000000,6.0000000,42.6552440000000,9.45274800000000,La Girelle,Furiani,77431,Observation #77431,https://biolit.fr/observations/observation-77431/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Screenshot_20240404-084505_Gallery.jpg,,TRUE,Identifiable +N1,77419,Sortie #77419,https://biolit.fr/sorties/sortie-77419/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P4030005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P4030001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Screenshot_20240404-084521_Gallery.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Screenshot_20240404-084505_Gallery.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310084-scaled.jpg,3/31/2024 0:00,6.0000000,6.0000000,42.6552440000000,9.45274800000000,La Girelle,Furiani,77433,Observation #77433,https://biolit.fr/observations/observation-77433/,Callinectes sapidus,Crabe bleu américain,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Screenshot_20240404-084521_Gallery.jpg,,TRUE,Identifiable +N1,77436,Sortie #77436,https://biolit.fr/sorties/sortie-77436/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/WhatsApp-Image-2024-04-29-at-10.32.27.jpeg,4/29/2024 0:00,10.0000000,10.0000000,42.5727500000000,9.52295800000000,La Girelle,Furiani,77438,Observation #77438,https://biolit.fr/observations/observation-77438/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/WhatsApp-Image-2024-04-29-at-10.32.27.jpeg,,,Identifiable +N1,77441,Sortie #77441,https://biolit.fr/sorties/sortie-77441/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/WhatsApp-Image-2024-04-23-at-16.54.09.jpeg,11/26/2023 0:00,15.0000000,16.0000000,42.5586300000000,9.52884800000000,La Girelle,Lucciana,77443,Observation #77443,https://biolit.fr/observations/observation-77443/,Raja asterias,Raie étoilée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/WhatsApp-Image-2024-04-23-at-16.54.09.jpeg,,,Identifiable +N1,77455,Sortie #77455,https://biolit.fr/sorties/sortie-77455/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/3879eb3a-30ea-4f80-8f29-19fc855b490f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/2f6ddfdd-b7b5-455f-993c-4cf9d99022ee.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/0b4f6c98-2522-4094-abcf-db85a3b8f02d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/5b663d26-446d-4f54-8f65-a88d9246bbfd.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/146b813c-8bd6-48aa-9d71-ee93d7b9221e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/83a14d3d-3bfe-4b0e-b1e7-ebba5aa065dd.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/bf9506a6-d5f6-44d3-87f0-c5ab54417310.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/181a9e57-a4ff-4e32-89aa-e19046b56e0a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/8372338a-515a-4bff-8a08-2f391d32cbe7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/15813466-ecd8-4062-97e8-862a26627150.jpg,4/24/2024 0:00,15.0000000,16.0000000,42.9637110000000,9.45149300000000,La Girelle,Macinaggio,77457,Observation #77457,https://biolit.fr/observations/observation-77457/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/3879eb3a-30ea-4f80-8f29-19fc855b490f.jpg,,,Ne sais pas +N1,77455,Sortie #77455,https://biolit.fr/sorties/sortie-77455/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/3879eb3a-30ea-4f80-8f29-19fc855b490f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/2f6ddfdd-b7b5-455f-993c-4cf9d99022ee.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/0b4f6c98-2522-4094-abcf-db85a3b8f02d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/5b663d26-446d-4f54-8f65-a88d9246bbfd.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/146b813c-8bd6-48aa-9d71-ee93d7b9221e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/83a14d3d-3bfe-4b0e-b1e7-ebba5aa065dd.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/bf9506a6-d5f6-44d3-87f0-c5ab54417310.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/181a9e57-a4ff-4e32-89aa-e19046b56e0a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/8372338a-515a-4bff-8a08-2f391d32cbe7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/15813466-ecd8-4062-97e8-862a26627150.jpg,4/24/2024 0:00,15.0000000,16.0000000,42.9637110000000,9.45149300000000,La Girelle,Macinaggio,77459,Observation #77459,https://biolit.fr/observations/observation-77459/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/2f6ddfdd-b7b5-455f-993c-4cf9d99022ee.jpg,,,Ne sais pas +N1,77455,Sortie #77455,https://biolit.fr/sorties/sortie-77455/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/3879eb3a-30ea-4f80-8f29-19fc855b490f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/2f6ddfdd-b7b5-455f-993c-4cf9d99022ee.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/0b4f6c98-2522-4094-abcf-db85a3b8f02d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/5b663d26-446d-4f54-8f65-a88d9246bbfd.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/146b813c-8bd6-48aa-9d71-ee93d7b9221e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/83a14d3d-3bfe-4b0e-b1e7-ebba5aa065dd.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/bf9506a6-d5f6-44d3-87f0-c5ab54417310.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/181a9e57-a4ff-4e32-89aa-e19046b56e0a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/8372338a-515a-4bff-8a08-2f391d32cbe7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/15813466-ecd8-4062-97e8-862a26627150.jpg,4/24/2024 0:00,15.0000000,16.0000000,42.9637110000000,9.45149300000000,La Girelle,Macinaggio,77461,Observation #77461,https://biolit.fr/observations/observation-77461/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/0b4f6c98-2522-4094-abcf-db85a3b8f02d.jpg,,,Identifiable +N1,77455,Sortie #77455,https://biolit.fr/sorties/sortie-77455/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/3879eb3a-30ea-4f80-8f29-19fc855b490f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/2f6ddfdd-b7b5-455f-993c-4cf9d99022ee.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/0b4f6c98-2522-4094-abcf-db85a3b8f02d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/5b663d26-446d-4f54-8f65-a88d9246bbfd.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/146b813c-8bd6-48aa-9d71-ee93d7b9221e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/83a14d3d-3bfe-4b0e-b1e7-ebba5aa065dd.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/bf9506a6-d5f6-44d3-87f0-c5ab54417310.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/181a9e57-a4ff-4e32-89aa-e19046b56e0a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/8372338a-515a-4bff-8a08-2f391d32cbe7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/15813466-ecd8-4062-97e8-862a26627150.jpg,4/24/2024 0:00,15.0000000,16.0000000,42.9637110000000,9.45149300000000,La Girelle,Macinaggio,77463,Observation #77463,https://biolit.fr/observations/observation-77463/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/83a14d3d-3bfe-4b0e-b1e7-ebba5aa065dd.jpg,,,Identifiable +N1,77455,Sortie #77455,https://biolit.fr/sorties/sortie-77455/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/3879eb3a-30ea-4f80-8f29-19fc855b490f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/2f6ddfdd-b7b5-455f-993c-4cf9d99022ee.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/0b4f6c98-2522-4094-abcf-db85a3b8f02d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/5b663d26-446d-4f54-8f65-a88d9246bbfd.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/146b813c-8bd6-48aa-9d71-ee93d7b9221e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/83a14d3d-3bfe-4b0e-b1e7-ebba5aa065dd.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/bf9506a6-d5f6-44d3-87f0-c5ab54417310.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/181a9e57-a4ff-4e32-89aa-e19046b56e0a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/8372338a-515a-4bff-8a08-2f391d32cbe7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/15813466-ecd8-4062-97e8-862a26627150.jpg,4/24/2024 0:00,15.0000000,16.0000000,42.9637110000000,9.45149300000000,La Girelle,Macinaggio,77465,Observation #77465,https://biolit.fr/observations/observation-77465/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/bf9506a6-d5f6-44d3-87f0-c5ab54417310.jpg,,,Identifiable +N1,77455,Sortie #77455,https://biolit.fr/sorties/sortie-77455/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/3879eb3a-30ea-4f80-8f29-19fc855b490f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/2f6ddfdd-b7b5-455f-993c-4cf9d99022ee.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/0b4f6c98-2522-4094-abcf-db85a3b8f02d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/5b663d26-446d-4f54-8f65-a88d9246bbfd.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/146b813c-8bd6-48aa-9d71-ee93d7b9221e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/83a14d3d-3bfe-4b0e-b1e7-ebba5aa065dd.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/bf9506a6-d5f6-44d3-87f0-c5ab54417310.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/181a9e57-a4ff-4e32-89aa-e19046b56e0a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/8372338a-515a-4bff-8a08-2f391d32cbe7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/15813466-ecd8-4062-97e8-862a26627150.jpg,4/24/2024 0:00,15.0000000,16.0000000,42.9637110000000,9.45149300000000,La Girelle,Macinaggio,77467,Observation #77467,https://biolit.fr/observations/observation-77467/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/8372338a-515a-4bff-8a08-2f391d32cbe7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/15813466-ecd8-4062-97e8-862a26627150.jpg,,,Identifiable +N1,77455,Sortie #77455,https://biolit.fr/sorties/sortie-77455/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/3879eb3a-30ea-4f80-8f29-19fc855b490f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/2f6ddfdd-b7b5-455f-993c-4cf9d99022ee.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/0b4f6c98-2522-4094-abcf-db85a3b8f02d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/5b663d26-446d-4f54-8f65-a88d9246bbfd.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/146b813c-8bd6-48aa-9d71-ee93d7b9221e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/83a14d3d-3bfe-4b0e-b1e7-ebba5aa065dd.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/bf9506a6-d5f6-44d3-87f0-c5ab54417310.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/181a9e57-a4ff-4e32-89aa-e19046b56e0a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/8372338a-515a-4bff-8a08-2f391d32cbe7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/15813466-ecd8-4062-97e8-862a26627150.jpg,4/24/2024 0:00,15.0000000,16.0000000,42.9637110000000,9.45149300000000,La Girelle,Macinaggio,77469,Observation #77469,https://biolit.fr/observations/observation-77469/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/5b663d26-446d-4f54-8f65-a88d9246bbfd.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/146b813c-8bd6-48aa-9d71-ee93d7b9221e.jpg,,,Ne sais pas +N1,77472,Sortie #77472,https://biolit.fr/sorties/sortie-77472/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/WhatsApp-Image-2024-04-25-at-16.52.18.jpeg,4/24/2024 0:00,15.0000000,16.0000000,42.9636950000000,9.4515570000000,La Girelle,Macinaggio,77474,Observation #77474,https://biolit.fr/observations/observation-77474/,Sepia officinalis,Seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/WhatsApp-Image-2024-04-25-at-16.52.18.jpeg,,TRUE,Identifiable +N1,77496,Sortie #77496,https://biolit.fr/sorties/sortie-77496/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-06-233231.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_133457337_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135118695_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135143357-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135629210_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_141052666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152434304_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152556361_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172614078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172728210-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173033699.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173044025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173115190-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173121320-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173138171-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173149518-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173530214-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173540580-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173615473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173629892.jpg,07/03/2024,13.0000000,14.0000000,43.2587990000000,5.37551300000000,,Plage de l'Huveaune,77498,Observation #77498,https://biolit.fr/observations/observation-77498/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-06-233231.jpg,,,Ne sais pas +N1,77496,Sortie #77496,https://biolit.fr/sorties/sortie-77496/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-06-233231.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_133457337_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135118695_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135143357-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135629210_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_141052666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152434304_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152556361_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172614078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172728210-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173033699.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173044025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173115190-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173121320-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173138171-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173149518-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173530214-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173540580-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173615473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173629892.jpg,07/03/2024,13.0000000,14.0000000,43.2587990000000,5.37551300000000,,Plage de l'Huveaune,77500,Observation #77500,https://biolit.fr/observations/observation-77500/,Peronaea planata,Telline aplatie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_133457337_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173615473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173629892.jpg,,,Identifiable +N1,77496,Sortie #77496,https://biolit.fr/sorties/sortie-77496/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-06-233231.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_133457337_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135118695_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135143357-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135629210_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_141052666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152434304_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152556361_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172614078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172728210-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173033699.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173044025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173115190-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173121320-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173138171-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173149518-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173530214-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173540580-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173615473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173629892.jpg,07/03/2024,13.0000000,14.0000000,43.2587990000000,5.37551300000000,,Plage de l'Huveaune,77502,Observation #77502,https://biolit.fr/observations/observation-77502/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135118695_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135143357-scaled.jpg,,TRUE,Identifiable +N1,77496,Sortie #77496,https://biolit.fr/sorties/sortie-77496/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-06-233231.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_133457337_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135118695_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135143357-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135629210_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_141052666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152434304_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152556361_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172614078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172728210-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173033699.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173044025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173115190-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173121320-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173138171-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173149518-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173530214-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173540580-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173615473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173629892.jpg,07/03/2024,13.0000000,14.0000000,43.2587990000000,5.37551300000000,,Plage de l'Huveaune,77506,Observation #77506,https://biolit.fr/observations/observation-77506/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_141052666_HDR-scaled.jpg,,,Identifiable +N1,77496,Sortie #77496,https://biolit.fr/sorties/sortie-77496/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-06-233231.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_133457337_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135118695_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135143357-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135629210_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_141052666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152434304_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152556361_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172614078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172728210-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173033699.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173044025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173115190-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173121320-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173138171-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173149518-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173530214-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173540580-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173615473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173629892.jpg,07/03/2024,13.0000000,14.0000000,43.2587990000000,5.37551300000000,,Plage de l'Huveaune,77508,Observation #77508,https://biolit.fr/observations/observation-77508/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152434304_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152556361_HDR-scaled.jpg,,TRUE,Identifiable +N1,77496,Sortie #77496,https://biolit.fr/sorties/sortie-77496/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-06-233231.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_133457337_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135118695_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135143357-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135629210_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_141052666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152434304_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152556361_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172614078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172728210-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173033699.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173044025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173115190-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173121320-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173138171-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173149518-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173530214-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173540580-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173615473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173629892.jpg,07/03/2024,13.0000000,14.0000000,43.2587990000000,5.37551300000000,,Plage de l'Huveaune,77510,Observation #77510,https://biolit.fr/observations/observation-77510/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172614078-scaled.jpg,,,Identifiable +N1,77496,Sortie #77496,https://biolit.fr/sorties/sortie-77496/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-06-233231.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_133457337_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135118695_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135143357-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135629210_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_141052666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152434304_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152556361_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172614078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172728210-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173033699.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173044025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173115190-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173121320-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173138171-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173149518-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173530214-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173540580-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173615473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173629892.jpg,07/03/2024,13.0000000,14.0000000,43.2587990000000,5.37551300000000,,Plage de l'Huveaune,77520,Observation #77520,https://biolit.fr/observations/observation-77520/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172728210-scaled.jpg,,TRUE,Identifiable +N1,77496,Sortie #77496,https://biolit.fr/sorties/sortie-77496/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-06-233231.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_133457337_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135118695_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135143357-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135629210_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_141052666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152434304_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152556361_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172614078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172728210-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173033699.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173044025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173115190-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173121320-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173138171-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173149518-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173530214-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173540580-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173615473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173629892.jpg,07/03/2024,13.0000000,14.0000000,43.2587990000000,5.37551300000000,,Plage de l'Huveaune,77523,Observation #77523,https://biolit.fr/observations/observation-77523/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173033699.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173044025.jpg,,,Identifiable +N1,77496,Sortie #77496,https://biolit.fr/sorties/sortie-77496/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-06-233231.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_133457337_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135118695_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135143357-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135629210_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_141052666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152434304_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152556361_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172614078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172728210-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173033699.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173044025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173115190-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173121320-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173138171-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173149518-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173530214-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173540580-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173615473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173629892.jpg,07/03/2024,13.0000000,14.0000000,43.2587990000000,5.37551300000000,,Plage de l'Huveaune,77527,Observation #77527,https://biolit.fr/observations/observation-77527/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173115190-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173121320-rotated.jpg,,,Identifiable +N1,77496,Sortie #77496,https://biolit.fr/sorties/sortie-77496/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-06-233231.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_133457337_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135118695_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135143357-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135629210_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_141052666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152434304_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152556361_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172614078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172728210-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173033699.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173044025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173115190-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173121320-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173138171-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173149518-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173530214-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173540580-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173615473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173629892.jpg,07/03/2024,13.0000000,14.0000000,43.2587990000000,5.37551300000000,,Plage de l'Huveaune,77531,Observation #77531,https://biolit.fr/observations/observation-77531/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173138171-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173149518-rotated.jpg,,,Identifiable +N1,77496,Sortie #77496,https://biolit.fr/sorties/sortie-77496/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-06-233231.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_133457337_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135118695_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135143357-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135629210_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_141052666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152434304_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152556361_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172614078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172728210-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173033699.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173044025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173115190-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173121320-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173138171-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173149518-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173530214-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173540580-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173615473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173629892.jpg,07/03/2024,13.0000000,14.0000000,43.2587990000000,5.37551300000000,,Plage de l'Huveaune,77533,Observation #77533,https://biolit.fr/observations/observation-77533/,Cardita calyculata,Cardite petit calice,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173530214-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173540580-rotated.jpg,,,Identifiable +N1,77496,Sortie #77496,https://biolit.fr/sorties/sortie-77496/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-06-233231.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_133457337_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135118695_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135143357-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135629210_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_141052666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152434304_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152556361_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172614078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172728210-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173033699.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173044025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173115190-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173121320-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173138171-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173149518-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173530214-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173540580-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173615473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173629892.jpg,07/03/2024,13.0000000,14.0000000,43.2587990000000,5.37551300000000,,Plage de l'Huveaune,78841,Observation #78841,https://biolit.fr/observations/observation-78841/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135629210_HDR-scaled.jpg,,TRUE,Identifiable +N1,77519,Sortie #77519,https://biolit.fr/sorties/sortie-77519/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/c60ede52-1792-4e97-8b18-d7a6fef2e43c.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/1a1b4728-d13d-4bb2-9921-fdcb98d63fe9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/85f5298c-edfd-4e78-9976-78d393386256.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/ad811c03-14e8-43a0-88c7-b936d1740d6e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/0dfe43de-aa35-49d7-9e32-fe584d2166e5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/d243c1a4-f97b-499f-b7ab-1b9e8e37df60.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/b48dc78b-651d-4e2e-94b6-b158615a184d.jpg,4/24/2024 0:00,15.0000000,16.0000000,42.9684910000000,9.35035200000000,La Girelle,centuri,77525,Observation #77525,https://biolit.fr/observations/observation-77525/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/c60ede52-1792-4e97-8b18-d7a6fef2e43c.jpg,,TRUE,Identifiable +N1,77519,Sortie #77519,https://biolit.fr/sorties/sortie-77519/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/c60ede52-1792-4e97-8b18-d7a6fef2e43c.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/1a1b4728-d13d-4bb2-9921-fdcb98d63fe9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/85f5298c-edfd-4e78-9976-78d393386256.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/ad811c03-14e8-43a0-88c7-b936d1740d6e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/0dfe43de-aa35-49d7-9e32-fe584d2166e5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/d243c1a4-f97b-499f-b7ab-1b9e8e37df60.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/b48dc78b-651d-4e2e-94b6-b158615a184d.jpg,4/24/2024 0:00,15.0000000,16.0000000,42.9684910000000,9.35035200000000,La Girelle,centuri,77529,Observation #77529,https://biolit.fr/observations/observation-77529/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/1a1b4728-d13d-4bb2-9921-fdcb98d63fe9.jpg,,,Identifiable +N1,77519,Sortie #77519,https://biolit.fr/sorties/sortie-77519/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/c60ede52-1792-4e97-8b18-d7a6fef2e43c.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/1a1b4728-d13d-4bb2-9921-fdcb98d63fe9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/85f5298c-edfd-4e78-9976-78d393386256.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/ad811c03-14e8-43a0-88c7-b936d1740d6e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/0dfe43de-aa35-49d7-9e32-fe584d2166e5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/d243c1a4-f97b-499f-b7ab-1b9e8e37df60.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/b48dc78b-651d-4e2e-94b6-b158615a184d.jpg,4/24/2024 0:00,15.0000000,16.0000000,42.9684910000000,9.35035200000000,La Girelle,centuri,77535,Observation #77535,https://biolit.fr/observations/observation-77535/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/85f5298c-edfd-4e78-9976-78d393386256.jpg,,,Ne sais pas +N1,77519,Sortie #77519,https://biolit.fr/sorties/sortie-77519/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/c60ede52-1792-4e97-8b18-d7a6fef2e43c.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/1a1b4728-d13d-4bb2-9921-fdcb98d63fe9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/85f5298c-edfd-4e78-9976-78d393386256.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/ad811c03-14e8-43a0-88c7-b936d1740d6e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/0dfe43de-aa35-49d7-9e32-fe584d2166e5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/d243c1a4-f97b-499f-b7ab-1b9e8e37df60.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/b48dc78b-651d-4e2e-94b6-b158615a184d.jpg,4/24/2024 0:00,15.0000000,16.0000000,42.9684910000000,9.35035200000000,La Girelle,centuri,77537,Observation #77537,https://biolit.fr/observations/observation-77537/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/ad811c03-14e8-43a0-88c7-b936d1740d6e.jpg,,,Ne sais pas +N1,77519,Sortie #77519,https://biolit.fr/sorties/sortie-77519/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/c60ede52-1792-4e97-8b18-d7a6fef2e43c.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/1a1b4728-d13d-4bb2-9921-fdcb98d63fe9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/85f5298c-edfd-4e78-9976-78d393386256.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/ad811c03-14e8-43a0-88c7-b936d1740d6e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/0dfe43de-aa35-49d7-9e32-fe584d2166e5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/d243c1a4-f97b-499f-b7ab-1b9e8e37df60.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/b48dc78b-651d-4e2e-94b6-b158615a184d.jpg,4/24/2024 0:00,15.0000000,16.0000000,42.9684910000000,9.35035200000000,La Girelle,centuri,77539,Observation #77539,https://biolit.fr/observations/observation-77539/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/0dfe43de-aa35-49d7-9e32-fe584d2166e5.jpg,,,Ne sais pas +N1,77519,Sortie #77519,https://biolit.fr/sorties/sortie-77519/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/c60ede52-1792-4e97-8b18-d7a6fef2e43c.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/1a1b4728-d13d-4bb2-9921-fdcb98d63fe9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/85f5298c-edfd-4e78-9976-78d393386256.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/ad811c03-14e8-43a0-88c7-b936d1740d6e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/0dfe43de-aa35-49d7-9e32-fe584d2166e5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/d243c1a4-f97b-499f-b7ab-1b9e8e37df60.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/b48dc78b-651d-4e2e-94b6-b158615a184d.jpg,4/24/2024 0:00,15.0000000,16.0000000,42.9684910000000,9.35035200000000,La Girelle,centuri,77541,Observation #77541,https://biolit.fr/observations/observation-77541/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/d243c1a4-f97b-499f-b7ab-1b9e8e37df60.jpg,,,Ne sais pas +N1,77519,Sortie #77519,https://biolit.fr/sorties/sortie-77519/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/c60ede52-1792-4e97-8b18-d7a6fef2e43c.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/1a1b4728-d13d-4bb2-9921-fdcb98d63fe9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/85f5298c-edfd-4e78-9976-78d393386256.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/ad811c03-14e8-43a0-88c7-b936d1740d6e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/0dfe43de-aa35-49d7-9e32-fe584d2166e5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/d243c1a4-f97b-499f-b7ab-1b9e8e37df60.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/b48dc78b-651d-4e2e-94b6-b158615a184d.jpg,4/24/2024 0:00,15.0000000,16.0000000,42.9684910000000,9.35035200000000,La Girelle,centuri,77543,Observation #77543,https://biolit.fr/observations/observation-77543/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/b48dc78b-651d-4e2e-94b6-b158615a184d.jpg,,,Ne sais pas +N1,77554,Sortie #77554,https://biolit.fr/sorties/sortie-77554/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_140219026_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_140230464_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173701092.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173709060-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173725704-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173806592-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173816943-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173824581-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_174046532-rotated.jpg,07/03/2024,13.0000000,14.0000000,43.2580380000000,5.37585700000000,,Plage de l'Huveaune,77556,Observation #77556,https://biolit.fr/observations/observation-77556/,Teredo navalis,Taret commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_140219026_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_140230464_HDR-rotated.jpg,,,Identifiable +N1,77554,Sortie #77554,https://biolit.fr/sorties/sortie-77554/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_140219026_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_140230464_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173701092.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173709060-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173725704-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173806592-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173816943-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173824581-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_174046532-rotated.jpg,07/03/2024,13.0000000,14.0000000,43.2580380000000,5.37585700000000,,Plage de l'Huveaune,77558,Observation #77558,https://biolit.fr/observations/observation-77558/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173701092.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173709060-rotated.jpg,,TRUE,Identifiable +N1,77554,Sortie #77554,https://biolit.fr/sorties/sortie-77554/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_140219026_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_140230464_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173701092.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173709060-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173725704-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173806592-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173816943-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173824581-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_174046532-rotated.jpg,07/03/2024,13.0000000,14.0000000,43.2580380000000,5.37585700000000,,Plage de l'Huveaune,77560,Observation #77560,https://biolit.fr/observations/observation-77560/,Tritia mutabilis,Noisette de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173725704-rotated.jpg,,,Identifiable +N1,77554,Sortie #77554,https://biolit.fr/sorties/sortie-77554/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_140219026_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_140230464_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173701092.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173709060-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173725704-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173806592-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173816943-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173824581-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_174046532-rotated.jpg,07/03/2024,13.0000000,14.0000000,43.2580380000000,5.37585700000000,,Plage de l'Huveaune,77562,Observation #77562,https://biolit.fr/observations/observation-77562/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173806592-rotated.jpg,,TRUE,Identifiable +N1,77554,Sortie #77554,https://biolit.fr/sorties/sortie-77554/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_140219026_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_140230464_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173701092.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173709060-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173725704-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173806592-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173816943-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173824581-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_174046532-rotated.jpg,07/03/2024,13.0000000,14.0000000,43.2580380000000,5.37585700000000,,Plage de l'Huveaune,77564,Observation #77564,https://biolit.fr/observations/observation-77564/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173816943-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173824581-rotated.jpg,,,Ne sais pas +N1,77554,Sortie #77554,https://biolit.fr/sorties/sortie-77554/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_140219026_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_140230464_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173701092.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173709060-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173725704-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173806592-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173816943-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173824581-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_174046532-rotated.jpg,07/03/2024,13.0000000,14.0000000,43.2580380000000,5.37585700000000,,Plage de l'Huveaune,77566,Observation #77566,https://biolit.fr/observations/observation-77566/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_174046532-rotated.jpg,,,Ne sais pas +N1,77572,Sortie #77572,https://biolit.fr/sorties/sortie-77572/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/WhatsApp-Image-2024-04-29-at-17.56.20.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/WhatsApp-Image-2024-04-29-at-17.56.21.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/WhatsApp-Image-2024-04-29-at-17.56.21-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/WhatsApp-Image-2024-04-29-at-17.56.21-2.jpeg,4/29/2024 0:00,15.0000000,16.0000000,42.5391690000000,9.481201000000,La Girelle,Corse,,,,,,,,,, +N1,77575,Sortie #77575,https://biolit.fr/sorties/sortie-77575/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/WhatsApp-Image-2024-07-07-at-00.07.48.jpeg,5/30/2024 0:00,9.0000000,9.0:15,41.9124200000000,8.72558000000000,La Girelle,Ajaccio,77577,Observation #77577,https://biolit.fr/observations/observation-77577/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/WhatsApp-Image-2024-07-07-at-00.07.48.jpeg,,TRUE,Identifiable +N1,77593,Sortie #77593,https://biolit.fr/sorties/sortie-77593/,Clauzel Viviane,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123424-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124216-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124143-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124828-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_131019-scaled.jpg,07/04/2024,12.0:15,13.0:15,48.6364900000000,-2.08345400000000,,Port Blanc,77595,Observation #77595,https://biolit.fr/observations/observation-77595/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123424-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123411-scaled.jpg,,TRUE,Identifiable +N1,77593,Sortie #77593,https://biolit.fr/sorties/sortie-77593/,Clauzel Viviane,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123424-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124216-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124143-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124828-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_131019-scaled.jpg,07/04/2024,12.0:15,13.0:15,48.6364900000000,-2.08345400000000,,Port Blanc,77597,Observation #77597,https://biolit.fr/observations/observation-77597/,Pleurobrachia pileus,Groseille de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_131019-scaled.jpg,,TRUE,Identifiable +N1,77593,Sortie #77593,https://biolit.fr/sorties/sortie-77593/,Clauzel Viviane,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123424-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124216-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124143-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124828-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_131019-scaled.jpg,07/04/2024,12.0:15,13.0:15,48.6364900000000,-2.08345400000000,,Port Blanc,77599,Observation #77599,https://biolit.fr/observations/observation-77599/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124216-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124143-scaled.jpg,,TRUE,Identifiable +N1,77593,Sortie #77593,https://biolit.fr/sorties/sortie-77593/,Clauzel Viviane,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123424-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124216-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124143-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124828-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_131019-scaled.jpg,07/04/2024,12.0:15,13.0:15,48.6364900000000,-2.08345400000000,,Port Blanc,77601,Observation #77601,https://biolit.fr/observations/observation-77601/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130311-scaled.jpg,,TRUE,Ne sais pas +N1,77593,Sortie #77593,https://biolit.fr/sorties/sortie-77593/,Clauzel Viviane,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123424-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124216-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124143-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124828-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_131019-scaled.jpg,07/04/2024,12.0:15,13.0:15,48.6364900000000,-2.08345400000000,,Port Blanc,77603,Observation #77603,https://biolit.fr/observations/observation-77603/,Crambe crambe,Eponge encroûtante orange-rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130048-scaled.jpg,,,Identifiable +N1,77593,Sortie #77593,https://biolit.fr/sorties/sortie-77593/,Clauzel Viviane,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123424-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124216-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124143-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124828-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_131019-scaled.jpg,07/04/2024,12.0:15,13.0:15,48.6364900000000,-2.08345400000000,,Port Blanc,77605,Observation #77605,https://biolit.fr/observations/observation-77605/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125747-scaled.jpg,,TRUE,Identifiable +N1,77593,Sortie #77593,https://biolit.fr/sorties/sortie-77593/,Clauzel Viviane,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123424-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124216-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124143-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124828-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_131019-scaled.jpg,07/04/2024,12.0:15,13.0:15,48.6364900000000,-2.08345400000000,,Port Blanc,77607,Observation #77607,https://biolit.fr/observations/observation-77607/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125713-scaled.jpg,,TRUE,Ne sais pas +N1,77593,Sortie #77593,https://biolit.fr/sorties/sortie-77593/,Clauzel Viviane,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123424-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124216-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124143-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124828-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_131019-scaled.jpg,07/04/2024,12.0:15,13.0:15,48.6364900000000,-2.08345400000000,,Port Blanc,77609,Observation #77609,https://biolit.fr/observations/observation-77609/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125226-scaled.jpg,,TRUE,Ne sais pas +N1,77593,Sortie #77593,https://biolit.fr/sorties/sortie-77593/,Clauzel Viviane,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123424-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124216-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124143-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124828-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_131019-scaled.jpg,07/04/2024,12.0:15,13.0:15,48.6364900000000,-2.08345400000000,,Port Blanc,77611,Observation #77611,https://biolit.fr/observations/observation-77611/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124828-scaled.jpg,,TRUE,Identifiable +N1,77616,Sortie #77616,https://biolit.fr/sorties/sortie-77616/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/441289603_3347057822255050_952250804442869586_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/441155011_1918245491967920_4064950720801512329_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449693700_354770070793274_8106035323862582279_n.jpg,05/09/2024,12.0000000,13.0000000,43.0238670000000,6.24504100000000,,Cap des Medes - ile de Porquerolles,77618,Observation #77618,https://biolit.fr/observations/observation-77618/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/441289603_3347057822255050_952250804442869586_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/441155011_1918245491967920_4064950720801512329_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449693700_354770070793274_8106035323862582279_n.jpg,,,Identifiable +N1,77616,Sortie #77616,https://biolit.fr/sorties/sortie-77616/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/441289603_3347057822255050_952250804442869586_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/441155011_1918245491967920_4064950720801512329_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449693700_354770070793274_8106035323862582279_n.jpg,05/09/2024,12.0000000,13.0000000,43.0238670000000,6.24504100000000,,Cap des Medes - ile de Porquerolles,77620,Observation #77620,https://biolit.fr/observations/observation-77620/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/441155011_1918245491967920_4064950720801512329_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449693700_354770070793274_8106035323862582279_n.jpg,,,Identifiable +N1,77616,Sortie #77616,https://biolit.fr/sorties/sortie-77616/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/441289603_3347057822255050_952250804442869586_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/441155011_1918245491967920_4064950720801512329_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449693700_354770070793274_8106035323862582279_n.jpg,05/09/2024,12.0000000,13.0000000,43.0238670000000,6.24504100000000,,Cap des Medes - ile de Porquerolles,77622,Observation #77622,https://biolit.fr/observations/observation-77622/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449693700_354770070793274_8106035323862582279_n.jpg,,,Identifiable +N1,77627,Sortie #77627,https://biolit.fr/sorties/sortie-77627/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/440345885_3799800203572321_2836098945730878998_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/440392456_965179152004607_7978389260738676036_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/440566111_830856352240724_4120780743890165908_n.jpg,05/09/2024,12.0000000,13.0000000,43.0227920000000,6.24126400000000,,Cap des Medes - ile de Porquerolles,77629,Observation #77629,https://biolit.fr/observations/observation-77629/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/440392456_965179152004607_7978389260738676036_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/440566111_830856352240724_4120780743890165908_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/440345885_3799800203572321_2836098945730878998_n.jpg,,TRUE,Identifiable +N1,77627,Sortie #77627,https://biolit.fr/sorties/sortie-77627/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/440345885_3799800203572321_2836098945730878998_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/440392456_965179152004607_7978389260738676036_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/440566111_830856352240724_4120780743890165908_n.jpg,05/09/2024,12.0000000,13.0000000,43.0227920000000,6.24126400000000,,Cap des Medes - ile de Porquerolles,77631,Observation #77631,https://biolit.fr/observations/observation-77631/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/440345885_3799800203572321_2836098945730878998_n.jpg,,TRUE,Identifiable +N1,77627,Sortie #77627,https://biolit.fr/sorties/sortie-77627/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/440345885_3799800203572321_2836098945730878998_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/440392456_965179152004607_7978389260738676036_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/440566111_830856352240724_4120780743890165908_n.jpg,05/09/2024,12.0000000,13.0000000,43.0227920000000,6.24126400000000,,Cap des Medes - ile de Porquerolles,77633,Observation #77633,https://biolit.fr/observations/observation-77633/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/440566111_830856352240724_4120780743890165908_n.jpg,,TRUE,Identifiable +N1,77637,Sortie #77637,https://biolit.fr/sorties/sortie-77637/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712129_440483775483148_440594459173987985_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449432300_1560403144540299_6866754139721062898_n.jpg,5/16/2024 0:00,16.0:55,17.0000000,43.1676620000000,6.62836100000000,,Cap taillat - Ramatuelle,77639,Observation #77639,https://biolit.fr/observations/observation-77639/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712129_440483775483148_440594459173987985_n.jpg,,TRUE,Identifiable +N1,77637,Sortie #77637,https://biolit.fr/sorties/sortie-77637/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712129_440483775483148_440594459173987985_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449432300_1560403144540299_6866754139721062898_n.jpg,5/16/2024 0:00,16.0:55,17.0000000,43.1676620000000,6.62836100000000,,Cap taillat - Ramatuelle,77641,Observation #77641,https://biolit.fr/observations/observation-77641/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449432300_1560403144540299_6866754139721062898_n.jpg,,TRUE,Identifiable +N1,77663,Sortie #77663,https://biolit.fr/sorties/sortie-77663/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449969254_1446123779424694_8550554573171368124_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449116980_1181156586566700_6294719809434803153_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449136372_314346998424214_5052237989810912049_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445833689_2395762490610126_1112503281127745166_n-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,5/19/2024 0:00,12.0000000,13.0000000,43.1584950000000,6.62222400000000,,Ilot du crocodile - plage de jovat,77665,Observation #77665,https://biolit.fr/observations/observation-77665/,Symphodus melops,Crénilabre commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg,,,Identifiable +N1,77663,Sortie #77663,https://biolit.fr/sorties/sortie-77663/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449969254_1446123779424694_8550554573171368124_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449116980_1181156586566700_6294719809434803153_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449136372_314346998424214_5052237989810912049_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445833689_2395762490610126_1112503281127745166_n-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,5/19/2024 0:00,12.0000000,13.0000000,43.1584950000000,6.62222400000000,,Ilot du crocodile - plage de jovat,77667,Observation #77667,https://biolit.fr/observations/observation-77667/,Thalassoma pavo,Girelle-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg,,,Identifiable +N1,77663,Sortie #77663,https://biolit.fr/sorties/sortie-77663/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449969254_1446123779424694_8550554573171368124_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449116980_1181156586566700_6294719809434803153_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449136372_314346998424214_5052237989810912049_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445833689_2395762490610126_1112503281127745166_n-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,5/19/2024 0:00,12.0000000,13.0000000,43.1584950000000,6.62222400000000,,Ilot du crocodile - plage de jovat,77669,Observation #77669,https://biolit.fr/observations/observation-77669/,Symphodus tinca,Crénilabre-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg,,,Identifiable +N1,77663,Sortie #77663,https://biolit.fr/sorties/sortie-77663/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449969254_1446123779424694_8550554573171368124_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449116980_1181156586566700_6294719809434803153_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449136372_314346998424214_5052237989810912049_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445833689_2395762490610126_1112503281127745166_n-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,5/19/2024 0:00,12.0000000,13.0000000,43.1584950000000,6.62222400000000,,Ilot du crocodile - plage de jovat,77671,Observation #77671,https://biolit.fr/observations/observation-77671/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg,,TRUE,Identifiable +N1,77663,Sortie #77663,https://biolit.fr/sorties/sortie-77663/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449969254_1446123779424694_8550554573171368124_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449116980_1181156586566700_6294719809434803153_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449136372_314346998424214_5052237989810912049_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445833689_2395762490610126_1112503281127745166_n-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,5/19/2024 0:00,12.0000000,13.0000000,43.1584950000000,6.62222400000000,,Ilot du crocodile - plage de jovat,77673,Observation #77673,https://biolit.fr/observations/observation-77673/,Crangon crangon,Crevette grise européenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg,,,Identifiable +N1,77663,Sortie #77663,https://biolit.fr/sorties/sortie-77663/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449969254_1446123779424694_8550554573171368124_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449116980_1181156586566700_6294719809434803153_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449136372_314346998424214_5052237989810912049_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445833689_2395762490610126_1112503281127745166_n-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,5/19/2024 0:00,12.0000000,13.0000000,43.1584950000000,6.62222400000000,,Ilot du crocodile - plage de jovat,77675,Observation #77675,https://biolit.fr/observations/observation-77675/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg,,,Ne sais pas +N1,77663,Sortie #77663,https://biolit.fr/sorties/sortie-77663/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449969254_1446123779424694_8550554573171368124_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449116980_1181156586566700_6294719809434803153_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449136372_314346998424214_5052237989810912049_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445833689_2395762490610126_1112503281127745166_n-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,5/19/2024 0:00,12.0000000,13.0000000,43.1584950000000,6.62222400000000,,Ilot du crocodile - plage de jovat,77677,Observation #77677,https://biolit.fr/observations/observation-77677/,Chelon labrosus,Mulet lippu,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg,,,Identifiable +N1,77663,Sortie #77663,https://biolit.fr/sorties/sortie-77663/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449969254_1446123779424694_8550554573171368124_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449116980_1181156586566700_6294719809434803153_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449136372_314346998424214_5052237989810912049_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445833689_2395762490610126_1112503281127745166_n-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,5/19/2024 0:00,12.0000000,13.0000000,43.1584950000000,6.62222400000000,,Ilot du crocodile - plage de jovat,77679,Observation #77679,https://biolit.fr/observations/observation-77679/,Coris julis,Girelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg,,,Identifiable +N1,77663,Sortie #77663,https://biolit.fr/sorties/sortie-77663/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449969254_1446123779424694_8550554573171368124_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449116980_1181156586566700_6294719809434803153_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449136372_314346998424214_5052237989810912049_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445833689_2395762490610126_1112503281127745166_n-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,5/19/2024 0:00,12.0000000,13.0000000,43.1584950000000,6.62222400000000,,Ilot du crocodile - plage de jovat,77681,Observation #77681,https://biolit.fr/observations/observation-77681/,Symphodus roissali,Crénilabre à cinq taches,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg,,,Identifiable +N1,77663,Sortie #77663,https://biolit.fr/sorties/sortie-77663/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449969254_1446123779424694_8550554573171368124_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449116980_1181156586566700_6294719809434803153_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449136372_314346998424214_5052237989810912049_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445833689_2395762490610126_1112503281127745166_n-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,5/19/2024 0:00,12.0000000,13.0000000,43.1584950000000,6.62222400000000,,Ilot du crocodile - plage de jovat,77683,Observation #77683,https://biolit.fr/observations/observation-77683/,Symphodus tinca,Crénilabre-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg,,,Identifiable +N1,77663,Sortie #77663,https://biolit.fr/sorties/sortie-77663/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449969254_1446123779424694_8550554573171368124_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449116980_1181156586566700_6294719809434803153_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449136372_314346998424214_5052237989810912049_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445833689_2395762490610126_1112503281127745166_n-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,5/19/2024 0:00,12.0000000,13.0000000,43.1584950000000,6.62222400000000,,Ilot du crocodile - plage de jovat,77685,Observation #77685,https://biolit.fr/observations/observation-77685/,Thalassoma pavo,Girelle-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg,,,Identifiable +N1,77663,Sortie #77663,https://biolit.fr/sorties/sortie-77663/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449969254_1446123779424694_8550554573171368124_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449116980_1181156586566700_6294719809434803153_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449136372_314346998424214_5052237989810912049_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445833689_2395762490610126_1112503281127745166_n-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,5/19/2024 0:00,12.0000000,13.0000000,43.1584950000000,6.62222400000000,,Ilot du crocodile - plage de jovat,77687,Observation #77687,https://biolit.fr/observations/observation-77687/,Thalassoma pavo,Girelle-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg,,,Identifiable +N1,77663,Sortie #77663,https://biolit.fr/sorties/sortie-77663/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449969254_1446123779424694_8550554573171368124_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449116980_1181156586566700_6294719809434803153_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449136372_314346998424214_5052237989810912049_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445833689_2395762490610126_1112503281127745166_n-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,5/19/2024 0:00,12.0000000,13.0000000,43.1584950000000,6.62222400000000,,Ilot du crocodile - plage de jovat,77689,Observation #77689,https://biolit.fr/observations/observation-77689/,Mullus surmuletus,Rouget-barbet de roche,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg,,,Identifiable +N1,77663,Sortie #77663,https://biolit.fr/sorties/sortie-77663/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449969254_1446123779424694_8550554573171368124_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449116980_1181156586566700_6294719809434803153_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449136372_314346998424214_5052237989810912049_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445833689_2395762490610126_1112503281127745166_n-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,5/19/2024 0:00,12.0000000,13.0000000,43.1584950000000,6.62222400000000,,Ilot du crocodile - plage de jovat,77691,Observation #77691,https://biolit.fr/observations/observation-77691/,Diplodus vulgaris,Sar à tête noire,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg,,,Identifiable +N1,77663,Sortie #77663,https://biolit.fr/sorties/sortie-77663/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449969254_1446123779424694_8550554573171368124_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449116980_1181156586566700_6294719809434803153_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449136372_314346998424214_5052237989810912049_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445833689_2395762490610126_1112503281127745166_n-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,5/19/2024 0:00,12.0000000,13.0000000,43.1584950000000,6.62222400000000,,Ilot du crocodile - plage de jovat,77693,Observation #77693,https://biolit.fr/observations/observation-77693/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg,,TRUE,Identifiable +N1,77663,Sortie #77663,https://biolit.fr/sorties/sortie-77663/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449969254_1446123779424694_8550554573171368124_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449116980_1181156586566700_6294719809434803153_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449136372_314346998424214_5052237989810912049_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445833689_2395762490610126_1112503281127745166_n-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,5/19/2024 0:00,12.0000000,13.0000000,43.1584950000000,6.62222400000000,,Ilot du crocodile - plage de jovat,77695,Observation #77695,https://biolit.fr/observations/observation-77695/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,,,Ne sais pas +N1,77701,Sortie #77701,https://biolit.fr/sorties/sortie-77701/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449814575_1168736467735536_5325578215777666618_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449138958_497494582677424_2326013233215198349_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449766441_1051119979920815_2583622848945229878_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445745691_445681318248607_8812594221198755893_n.jpg,06/04/2024,12.0000000,13.0000000,43.0880870000000,6.35902400000000,,Ilot du crocodile - plage de jovat,77703,Observation #77703,https://biolit.fr/observations/observation-77703/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449814575_1168736467735536_5325578215777666618_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449138958_497494582677424_2326013233215198349_n.jpg,,TRUE,Identifiable +N1,77701,Sortie #77701,https://biolit.fr/sorties/sortie-77701/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449814575_1168736467735536_5325578215777666618_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449138958_497494582677424_2326013233215198349_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449766441_1051119979920815_2583622848945229878_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445745691_445681318248607_8812594221198755893_n.jpg,06/04/2024,12.0000000,13.0000000,43.0880870000000,6.35902400000000,,Ilot du crocodile - plage de jovat,77705,Observation #77705,https://biolit.fr/observations/observation-77705/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449138958_497494582677424_2326013233215198349_n.jpg,,TRUE,Identifiable +N1,77701,Sortie #77701,https://biolit.fr/sorties/sortie-77701/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449814575_1168736467735536_5325578215777666618_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449138958_497494582677424_2326013233215198349_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449766441_1051119979920815_2583622848945229878_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445745691_445681318248607_8812594221198755893_n.jpg,06/04/2024,12.0000000,13.0000000,43.0880870000000,6.35902400000000,,Ilot du crocodile - plage de jovat,77707,Observation #77707,https://biolit.fr/observations/observation-77707/,Apogon imberbis,Apogon,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449766441_1051119979920815_2583622848945229878_n.jpg,,TRUE,Identifiable +N1,77701,Sortie #77701,https://biolit.fr/sorties/sortie-77701/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449814575_1168736467735536_5325578215777666618_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449138958_497494582677424_2326013233215198349_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449766441_1051119979920815_2583622848945229878_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445745691_445681318248607_8812594221198755893_n.jpg,06/04/2024,12.0000000,13.0000000,43.0880870000000,6.35902400000000,,Ilot du crocodile - plage de jovat,77709,Observation #77709,https://biolit.fr/observations/observation-77709/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445745691_445681318248607_8812594221198755893_n.jpg,,,Identifiable +N1,77718,Sortie #77718,https://biolit.fr/sorties/sortie-77718/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448809801_801557262120278_7458771948191898179_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448946263_1190597422113195_2923235369145493485_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712129_1235463121199724_1086952136429436504_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449733512_2137976703240586_4259025075658241596_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449795277_1026002825851263_268585354771586845_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449523697_526638629695049_9197393125436053831_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449372386_774221164791553_1077790501321772790_n.jpg,07/01/2024,12.0000000,13.0000000,43.1050640000000,5.97759200000000,,Anse Magaud - La Garde,77720,Observation #77720,https://biolit.fr/observations/observation-77720/,Echinaster (Echinaster) sepositus,Etoile de mer rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448809801_801557262120278_7458771948191898179_n.jpg,,TRUE,Identifiable +N1,77718,Sortie #77718,https://biolit.fr/sorties/sortie-77718/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448809801_801557262120278_7458771948191898179_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448946263_1190597422113195_2923235369145493485_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712129_1235463121199724_1086952136429436504_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449733512_2137976703240586_4259025075658241596_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449795277_1026002825851263_268585354771586845_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449523697_526638629695049_9197393125436053831_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449372386_774221164791553_1077790501321772790_n.jpg,07/01/2024,12.0000000,13.0000000,43.1050640000000,5.97759200000000,,Anse Magaud - La Garde,77722,Observation #77722,https://biolit.fr/observations/observation-77722/,Echinaster (Echinaster) sepositus,Etoile de mer rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448946263_1190597422113195_2923235369145493485_n.jpg,,TRUE,Identifiable +N1,77718,Sortie #77718,https://biolit.fr/sorties/sortie-77718/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448809801_801557262120278_7458771948191898179_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448946263_1190597422113195_2923235369145493485_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712129_1235463121199724_1086952136429436504_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449733512_2137976703240586_4259025075658241596_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449795277_1026002825851263_268585354771586845_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449523697_526638629695049_9197393125436053831_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449372386_774221164791553_1077790501321772790_n.jpg,07/01/2024,12.0000000,13.0000000,43.1050640000000,5.97759200000000,,Anse Magaud - La Garde,77724,Observation #77724,https://biolit.fr/observations/observation-77724/,Echinaster (Echinaster) sepositus,Etoile de mer rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712129_1235463121199724_1086952136429436504_n.jpg,,TRUE,Identifiable +N1,77718,Sortie #77718,https://biolit.fr/sorties/sortie-77718/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448809801_801557262120278_7458771948191898179_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448946263_1190597422113195_2923235369145493485_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712129_1235463121199724_1086952136429436504_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449733512_2137976703240586_4259025075658241596_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449795277_1026002825851263_268585354771586845_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449523697_526638629695049_9197393125436053831_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449372386_774221164791553_1077790501321772790_n.jpg,07/01/2024,12.0000000,13.0000000,43.1050640000000,5.97759200000000,,Anse Magaud - La Garde,77726,Observation #77726,https://biolit.fr/observations/observation-77726/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449733512_2137976703240586_4259025075658241596_n.jpg,,TRUE,Identifiable +N1,77718,Sortie #77718,https://biolit.fr/sorties/sortie-77718/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448809801_801557262120278_7458771948191898179_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448946263_1190597422113195_2923235369145493485_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712129_1235463121199724_1086952136429436504_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449733512_2137976703240586_4259025075658241596_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449795277_1026002825851263_268585354771586845_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449523697_526638629695049_9197393125436053831_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449372386_774221164791553_1077790501321772790_n.jpg,07/01/2024,12.0000000,13.0000000,43.1050640000000,5.97759200000000,,Anse Magaud - La Garde,77728,Observation #77728,https://biolit.fr/observations/observation-77728/,Acetabularia acetabulum,Acétabulaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449795277_1026002825851263_268585354771586845_n.jpg,,TRUE,Identifiable +N1,77718,Sortie #77718,https://biolit.fr/sorties/sortie-77718/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448809801_801557262120278_7458771948191898179_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448946263_1190597422113195_2923235369145493485_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712129_1235463121199724_1086952136429436504_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449733512_2137976703240586_4259025075658241596_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449795277_1026002825851263_268585354771586845_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449523697_526638629695049_9197393125436053831_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449372386_774221164791553_1077790501321772790_n.jpg,07/01/2024,12.0000000,13.0000000,43.1050640000000,5.97759200000000,,Anse Magaud - La Garde,77730,Observation #77730,https://biolit.fr/observations/observation-77730/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449523697_526638629695049_9197393125436053831_n.jpg,,,Ne sais pas +N1,77718,Sortie #77718,https://biolit.fr/sorties/sortie-77718/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448809801_801557262120278_7458771948191898179_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448946263_1190597422113195_2923235369145493485_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712129_1235463121199724_1086952136429436504_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449733512_2137976703240586_4259025075658241596_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449795277_1026002825851263_268585354771586845_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449523697_526638629695049_9197393125436053831_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449372386_774221164791553_1077790501321772790_n.jpg,07/01/2024,12.0000000,13.0000000,43.1050640000000,5.97759200000000,,Anse Magaud - La Garde,77732,Observation #77732,https://biolit.fr/observations/observation-77732/,Diplodus puntazzo,Sar à museau pointu,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449372386_774221164791553_1077790501321772790_n.jpg,,TRUE,Identifiable +N1,77744,Sortie #77744,https://biolit.fr/sorties/sortie-77744/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771362_993041138790813_6236238237583664567_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449744496_1962640144181882_9222433197441126298_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480689_7918146704910647_8629253310398571107_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712127_3703183473332340_3915520402004311130_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722274_1001115518467573_7176021620965414478_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449657717_1823678764789706_273091617613895765_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449803603_1144576163437854_267295239425654502_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448808512_768769445333272_3665274533696480216_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449517912_489687640086140_6057903096212618624_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449756295_3792626347683922_3058930575318418893_n.jpg,07/06/2024,12.0000000,13.0000000,43.1030590000000,5.97965200000000,,Anse Magaud - La Garde,77746,Observation #77746,https://biolit.fr/observations/observation-77746/,Thalassoma pavo,Girelle-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771362_993041138790813_6236238237583664567_n.jpg,,TRUE,Identifiable +N1,77744,Sortie #77744,https://biolit.fr/sorties/sortie-77744/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771362_993041138790813_6236238237583664567_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449744496_1962640144181882_9222433197441126298_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480689_7918146704910647_8629253310398571107_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712127_3703183473332340_3915520402004311130_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722274_1001115518467573_7176021620965414478_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449657717_1823678764789706_273091617613895765_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449803603_1144576163437854_267295239425654502_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448808512_768769445333272_3665274533696480216_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449517912_489687640086140_6057903096212618624_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449756295_3792626347683922_3058930575318418893_n.jpg,07/06/2024,12.0000000,13.0000000,43.1030590000000,5.97965200000000,,Anse Magaud - La Garde,77748,Observation #77748,https://biolit.fr/observations/observation-77748/,Parablennius incognitus,Blennie diabolo,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449744496_1962640144181882_9222433197441126298_n.jpg,,TRUE,Identifiable +N1,77744,Sortie #77744,https://biolit.fr/sorties/sortie-77744/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771362_993041138790813_6236238237583664567_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449744496_1962640144181882_9222433197441126298_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480689_7918146704910647_8629253310398571107_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712127_3703183473332340_3915520402004311130_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722274_1001115518467573_7176021620965414478_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449657717_1823678764789706_273091617613895765_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449803603_1144576163437854_267295239425654502_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448808512_768769445333272_3665274533696480216_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449517912_489687640086140_6057903096212618624_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449756295_3792626347683922_3058930575318418893_n.jpg,07/06/2024,12.0000000,13.0000000,43.1030590000000,5.97965200000000,,Anse Magaud - La Garde,77750,Observation #77750,https://biolit.fr/observations/observation-77750/,Thalassoma pavo,Girelle-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480689_7918146704910647_8629253310398571107_n.jpg,,TRUE,Identifiable +N1,77744,Sortie #77744,https://biolit.fr/sorties/sortie-77744/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771362_993041138790813_6236238237583664567_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449744496_1962640144181882_9222433197441126298_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480689_7918146704910647_8629253310398571107_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712127_3703183473332340_3915520402004311130_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722274_1001115518467573_7176021620965414478_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449657717_1823678764789706_273091617613895765_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449803603_1144576163437854_267295239425654502_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448808512_768769445333272_3665274533696480216_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449517912_489687640086140_6057903096212618624_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449756295_3792626347683922_3058930575318418893_n.jpg,07/06/2024,12.0000000,13.0000000,43.1030590000000,5.97965200000000,,Anse Magaud - La Garde,77752,Observation #77752,https://biolit.fr/observations/observation-77752/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712127_3703183473332340_3915520402004311130_n.jpg,,TRUE,Identifiable +N1,77744,Sortie #77744,https://biolit.fr/sorties/sortie-77744/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771362_993041138790813_6236238237583664567_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449744496_1962640144181882_9222433197441126298_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480689_7918146704910647_8629253310398571107_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712127_3703183473332340_3915520402004311130_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722274_1001115518467573_7176021620965414478_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449657717_1823678764789706_273091617613895765_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449803603_1144576163437854_267295239425654502_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448808512_768769445333272_3665274533696480216_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449517912_489687640086140_6057903096212618624_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449756295_3792626347683922_3058930575318418893_n.jpg,07/06/2024,12.0000000,13.0000000,43.1030590000000,5.97965200000000,,Anse Magaud - La Garde,77754,Observation #77754,https://biolit.fr/observations/observation-77754/,Serranus scriba,Serran-écriture,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722274_1001115518467573_7176021620965414478_n.jpg,,TRUE,Identifiable +N1,77744,Sortie #77744,https://biolit.fr/sorties/sortie-77744/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771362_993041138790813_6236238237583664567_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449744496_1962640144181882_9222433197441126298_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480689_7918146704910647_8629253310398571107_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712127_3703183473332340_3915520402004311130_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722274_1001115518467573_7176021620965414478_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449657717_1823678764789706_273091617613895765_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449803603_1144576163437854_267295239425654502_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448808512_768769445333272_3665274533696480216_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449517912_489687640086140_6057903096212618624_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449756295_3792626347683922_3058930575318418893_n.jpg,07/06/2024,12.0000000,13.0000000,43.1030590000000,5.97965200000000,,Anse Magaud - La Garde,77756,Observation #77756,https://biolit.fr/observations/observation-77756/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449657717_1823678764789706_273091617613895765_n.jpg,,TRUE,Ne sais pas +N1,77744,Sortie #77744,https://biolit.fr/sorties/sortie-77744/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771362_993041138790813_6236238237583664567_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449744496_1962640144181882_9222433197441126298_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480689_7918146704910647_8629253310398571107_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712127_3703183473332340_3915520402004311130_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722274_1001115518467573_7176021620965414478_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449657717_1823678764789706_273091617613895765_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449803603_1144576163437854_267295239425654502_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448808512_768769445333272_3665274533696480216_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449517912_489687640086140_6057903096212618624_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449756295_3792626347683922_3058930575318418893_n.jpg,07/06/2024,12.0000000,13.0000000,43.1030590000000,5.97965200000000,,Anse Magaud - La Garde,77758,Observation #77758,https://biolit.fr/observations/observation-77758/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448808512_768769445333272_3665274533696480216_n.jpg,,TRUE,Identifiable +N1,77744,Sortie #77744,https://biolit.fr/sorties/sortie-77744/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771362_993041138790813_6236238237583664567_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449744496_1962640144181882_9222433197441126298_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480689_7918146704910647_8629253310398571107_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712127_3703183473332340_3915520402004311130_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722274_1001115518467573_7176021620965414478_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449657717_1823678764789706_273091617613895765_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449803603_1144576163437854_267295239425654502_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448808512_768769445333272_3665274533696480216_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449517912_489687640086140_6057903096212618624_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449756295_3792626347683922_3058930575318418893_n.jpg,07/06/2024,12.0000000,13.0000000,43.1030590000000,5.97965200000000,,Anse Magaud - La Garde,77760,Observation #77760,https://biolit.fr/observations/observation-77760/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449517912_489687640086140_6057903096212618624_n.jpg,,TRUE,Identifiable +N1,77744,Sortie #77744,https://biolit.fr/sorties/sortie-77744/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771362_993041138790813_6236238237583664567_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449744496_1962640144181882_9222433197441126298_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480689_7918146704910647_8629253310398571107_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712127_3703183473332340_3915520402004311130_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722274_1001115518467573_7176021620965414478_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449657717_1823678764789706_273091617613895765_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449803603_1144576163437854_267295239425654502_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448808512_768769445333272_3665274533696480216_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449517912_489687640086140_6057903096212618624_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449756295_3792626347683922_3058930575318418893_n.jpg,07/06/2024,12.0000000,13.0000000,43.1030590000000,5.97965200000000,,Anse Magaud - La Garde,77762,Observation #77762,https://biolit.fr/observations/observation-77762/,Thalassoma pavo,Girelle-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449756295_3792626347683922_3058930575318418893_n.jpg,,TRUE,Identifiable +N1,77767,Sortie #77767,https://biolit.fr/sorties/sortie-77767/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449420832_1188086042503722_7292126502262352726_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449648703_1908192166356643_1479157960897203382_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449965779_1001672007822249_204552125272803381_n.jpg,07/06/2024,12.0000000,13.0000000,43.1021270000000,5.95527600000000,,Anse Magaud - La Garde,77769,Observation #77769,https://biolit.fr/observations/observation-77769/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449420832_1188086042503722_7292126502262352726_n.jpg,,TRUE,Identifiable +N1,77767,Sortie #77767,https://biolit.fr/sorties/sortie-77767/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449420832_1188086042503722_7292126502262352726_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449648703_1908192166356643_1479157960897203382_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449965779_1001672007822249_204552125272803381_n.jpg,07/06/2024,12.0000000,13.0000000,43.1021270000000,5.95527600000000,,Anse Magaud - La Garde,77771,Observation #77771,https://biolit.fr/observations/observation-77771/,Parablennius incognitus,Blennie diabolo,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449648703_1908192166356643_1479157960897203382_n.jpg,,TRUE,Identifiable +N1,77767,Sortie #77767,https://biolit.fr/sorties/sortie-77767/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449420832_1188086042503722_7292126502262352726_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449648703_1908192166356643_1479157960897203382_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449965779_1001672007822249_204552125272803381_n.jpg,07/06/2024,12.0000000,13.0000000,43.1021270000000,5.95527600000000,,Anse Magaud - La Garde,77773,Observation #77773,https://biolit.fr/observations/observation-77773/,Diplodus sargus,Sar commun de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449965779_1001672007822249_204552125272803381_n.jpg,,TRUE,Identifiable +N1,77789,Sortie #77789,https://biolit.fr/sorties/sortie-77789/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_073735-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_073959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_074155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_074247-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_074323-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_074820-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_074844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_074854-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_074907-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_075100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_075109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_075418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_075549-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_075703-scaled.jpg,6/27/2024 0:00,7.0000000,9.0:45,43.2728560000000,3.35284700000000,,Portiragnes Plage,77791,Observation #77791,https://biolit.fr/observations/observation-77791/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_073735-scaled.jpg,,,Identifiable +N1,77804,Sortie #77804,https://biolit.fr/sorties/sortie-77804/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_080339-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_080511-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_080723-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_081000-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_081339-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_081823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_082014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_082028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_082656-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_082816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_082820-scaled.jpg,6/27/2024 0:00,7.0000000,9.0:45,43.2728560000000,3.35284700000000,,Portiragnes Plage,77806,Observation #77806,https://biolit.fr/observations/observation-77806/,Himantopus himantopus,Echasse blanche,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_082028-scaled.jpg,,TRUE,Identifiable +N1,77820,Sortie #77820,https://biolit.fr/sorties/sortie-77820/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_083015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_083215-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_083218-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_083447-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_083505-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_083706-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_083800-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_083802-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_083951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_084012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_085332-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_085640-scaled.jpg,6/27/2024 0:00,7.0000000,9.0:45,43.2728560000000,3.35284700000000,,Portiragnes Plage,77822,Observation #77822,https://biolit.fr/observations/observation-77822/,Sternula albifrons,Sterne naine,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_083447-scaled.jpg,,,Identifiable +N1,77834,Sortie #77834,https://biolit.fr/sorties/sortie-77834/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_090031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_090141-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_090448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_090627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_090756-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_090916-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_091111-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_091608-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_091840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_091929-scaled.jpg,6/27/2024 0:00,7.0000000,9.0:45,43.2728560000000,3.35284700000000,,Portiragnes Plage,77836,Observation #77836,https://biolit.fr/observations/observation-77836/,Pancratium maritimum,Lis de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_090448-scaled.jpg,,TRUE,Identifiable +N1,77849,Sortie #77849,https://biolit.fr/sorties/sortie-77849/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_092004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_092344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_092414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_092608-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_092906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_093022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_093229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_093346-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_093740-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_094156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_094522-scaled.jpg,6/27/2024 0:00,7.0000000,9.0:45,43.2728560000000,3.35284700000000,,Portiragnes Plage,77851,Observation #77851,https://biolit.fr/observations/observation-77851/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_092608-scaled.jpg,,,Identifiable +N1,77858,Sortie #77858,https://biolit.fr/sorties/sortie-77858/,Epaminondas Sara,https://biolit.fr/wp-content/uploads/jet-form-builder/31ce3779fe2c1cb10d12009e8927e497/2024/07/GPTempDownload-scaled.jpeg,6/18/2024 0:00,11.0000000,11.0000000,43.2110600000000,5.45626000000000,,Sugiton,,,,,,,,,, +N1,78448,Sortie #78448,https://biolit.fr/sorties/sortie-78448/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Diplodus_vulgaris-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Laurencia_obtusa1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Laurencia_obtusa2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Octopus_vulgaris2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Octopus_vulgaris5-scaled.jpg,7/16/2024 0:00,19.0000000,20.0000000,43.2287920000000,5.34915200000000,,Calanque de Samena,78450,Observation #78450,https://biolit.fr/observations/observation-78450/,Diplodus vulgaris,Sar à tête noire,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Diplodus_vulgaris-scaled.jpg,,TRUE,Identifiable +N1,78458,Sortie #78458,https://biolit.fr/sorties/sortie-78458/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Laurencia_obtusa1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Laurencia_obtusa2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Octopus_vulgaris2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Octopus_vulgaris5-1-scaled.jpg,7/16/2024 0:00,19.0000000,20.0000000,43.2285450000000,5.34873700000000,,Calanque de Samena,78460,Observation #78460,https://biolit.fr/observations/observation-78460/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Laurencia_obtusa1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Laurencia_obtusa2-1-scaled.jpg,,,Identifiable +N1,78458,Sortie #78458,https://biolit.fr/sorties/sortie-78458/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Laurencia_obtusa1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Laurencia_obtusa2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Octopus_vulgaris2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Octopus_vulgaris5-1-scaled.jpg,7/16/2024 0:00,19.0000000,20.0000000,43.2285450000000,5.34873700000000,,Calanque de Samena,78462,Observation #78462,https://biolit.fr/observations/observation-78462/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Octopus_vulgaris2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Octopus_vulgaris5-1-scaled.jpg,,TRUE,Identifiable +N1,78476,Sortie #78476,https://biolit.fr/sorties/sortie-78476/,RAHHALI Chaimae,https://biolit.fr/wp-content/uploads/jet-form-builder/cbc831ed740f2bea15efbf31e21b23c2/2024/07/focus.png,7/18/2024 0:00,9.0000000,18.0000000,33.2316330,-8.5007120,,El Jadida,78478,Observation #78478,https://biolit.fr/observations/observation-78478/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cbc831ed740f2bea15efbf31e21b23c2/2024/07/focus.png,,,non-identifiable +N1,78488,Sortie #78488,https://biolit.fr/sorties/sortie-78488/,RAHHALI Chaimae,https://biolit.fr/wp-content/uploads/jet-form-builder/cbc831ed740f2bea15efbf31e21b23c2/2024/07/herbemer.png,7/19/2024 0:00,9.0000000,18.0000000,33.2316330,-8.5007120,,El Jadida,,,,,,,,,, +N1,78497,Sortie #78497,https://biolit.fr/sorties/sortie-78497/,CHAPELOT PIERRE,https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2024/07/IMG_15151-scaled.jpg,7/19/2024 0:00,14.000001,16.0:58,43.5529830000000,7.14362800000000,,CAP D'ANTIBES - Sentier du littoral,78505,Observation #78505,https://biolit.fr/observations/observation-78505/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2024/07/IMG_15151-scaled.jpg,,, +N1,78547,Sortie #78547,https://biolit.fr/sorties/sortie-78547/,ALVAREZ JOSE IGNACIO,https://biolit.fr/wp-content/uploads/jet-form-builder/9670200552a07e1872a2ed3e75285a01/2024/07/PHOTO-2024-07-15-19-07-55.jpg,7/15/2024 0:00,17.0000000,20.0000000,43.3759440000000,-361.788266000000,,HENDAYE,78549,Observation #78549,https://biolit.fr/observations/observation-78549/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/9670200552a07e1872a2ed3e75285a01/2024/07/PHOTO-2024-07-15-19-07-55.jpg,,,Identifiable +N1,78553,Sortie #78553,https://biolit.fr/sorties/sortie-78553/,LPO Occitanie - Aude,https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2024/07/IMG-20240722-WA0000.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2024/07/IMG_20240722_172739.jpg,7/18/2024 0:00,10.0000000,11.0000000,42.9398240000000,3.03648400000000,LPO Occitanie (Dt Aude),Leucate La Franqui,,,,,,,,,, +N1,78556,Sortie #78556,https://biolit.fr/sorties/sortie-78556/,LPO Occitanie - Aude,https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2024/07/IMG-20240722-WA0000-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2024/07/IMG_20240722_172739-1.jpg,7/18/2024 0:00,10.0000000,11.0000000,42.9398240000000,3.03648400000000,LPO Occitanie (Dt Aude),Leucate La Franqui,78559,Observation #78559,https://biolit.fr/observations/observation-78559/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2024/07/IMG-20240722-WA0000-1.jpg,,TRUE,Identifiable +N1,78617,Sortie #78617,https://biolit.fr/sorties/sortie-78617/,Juliette Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00001-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00002-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00003-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00004-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00005-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00006-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00007-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00008-scaled.jpeg,7/25/2024 0:00,21.0:45,23.0000000,47.2653330000000,-2.34617500000000,,Plage des libraires,78619,Observation #78619,https://biolit.fr/observations/observation-78619/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00001-scaled.jpeg,,,Ne sais pas +N1,78617,Sortie #78617,https://biolit.fr/sorties/sortie-78617/,Juliette Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00001-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00002-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00003-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00004-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00005-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00006-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00007-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00008-scaled.jpeg,7/25/2024 0:00,21.0:45,23.0000000,47.2653330000000,-2.34617500000000,,Plage des libraires,78621,Observation #78621,https://biolit.fr/observations/observation-78621/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00002-scaled.jpeg,,,Ne sais pas +N1,78617,Sortie #78617,https://biolit.fr/sorties/sortie-78617/,Juliette Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00001-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00002-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00003-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00004-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00005-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00006-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00007-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00008-scaled.jpeg,7/25/2024 0:00,21.0:45,23.0000000,47.2653330000000,-2.34617500000000,,Plage des libraires,78623,Observation #78623,https://biolit.fr/observations/observation-78623/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00003-scaled.jpeg,,,Ne sais pas +N1,78617,Sortie #78617,https://biolit.fr/sorties/sortie-78617/,Juliette Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00001-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00002-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00003-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00004-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00005-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00006-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00007-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00008-scaled.jpeg,7/25/2024 0:00,21.0:45,23.0000000,47.2653330000000,-2.34617500000000,,Plage des libraires,78625,Observation #78625,https://biolit.fr/observations/observation-78625/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00004-scaled.jpeg,,,Ne sais pas +N1,78617,Sortie #78617,https://biolit.fr/sorties/sortie-78617/,Juliette Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00001-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00002-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00003-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00004-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00005-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00006-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00007-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00008-scaled.jpeg,7/25/2024 0:00,21.0:45,23.0000000,47.2653330000000,-2.34617500000000,,Plage des libraires,78627,Observation #78627,https://biolit.fr/observations/observation-78627/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00005-scaled.jpeg,,TRUE,Ne sais pas +N1,78617,Sortie #78617,https://biolit.fr/sorties/sortie-78617/,Juliette Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00001-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00002-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00003-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00004-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00005-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00006-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00007-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00008-scaled.jpeg,7/25/2024 0:00,21.0:45,23.0000000,47.2653330000000,-2.34617500000000,,Plage des libraires,78629,Observation #78629,https://biolit.fr/observations/observation-78629/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00006-scaled.jpeg,,TRUE,Ne sais pas +N1,78617,Sortie #78617,https://biolit.fr/sorties/sortie-78617/,Juliette Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00001-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00002-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00003-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00004-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00005-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00006-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00007-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00008-scaled.jpeg,7/25/2024 0:00,21.0:45,23.0000000,47.2653330000000,-2.34617500000000,,Plage des libraires,78631,Observation #78631,https://biolit.fr/observations/observation-78631/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00007-scaled.jpeg,,TRUE,Ne sais pas +N1,78617,Sortie #78617,https://biolit.fr/sorties/sortie-78617/,Juliette Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00001-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00002-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00003-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00004-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00005-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00006-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00007-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00008-scaled.jpeg,7/25/2024 0:00,21.0:45,23.0000000,47.2653330000000,-2.34617500000000,,Plage des libraires,78633,Observation #78633,https://biolit.fr/observations/observation-78633/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00008-scaled.jpeg,,,Ne sais pas +N1,78689,Sortie #78689,https://biolit.fr/sorties/sortie-78689/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_102534_908-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104936-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104952-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110252-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.4463240,3.753891,LPO Occitanie (Dt Hérault),Frontignan,78691,Observation #78691,https://biolit.fr/observations/observation-78691/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-scaled.jpg,,TRUE,Identifiable +N1,78689,Sortie #78689,https://biolit.fr/sorties/sortie-78689/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_102534_908-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104936-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104952-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110252-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.4463240,3.753891,LPO Occitanie (Dt Hérault),Frontignan,78693,Observation #78693,https://biolit.fr/observations/observation-78693/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7588-scaled.jpg,,,Identifiable +N1,78689,Sortie #78689,https://biolit.fr/sorties/sortie-78689/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_102534_908-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104936-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104952-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110252-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.4463240,3.753891,LPO Occitanie (Dt Hérault),Frontignan,78695,Observation #78695,https://biolit.fr/observations/observation-78695/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7589-scaled.jpg,,,Identifiable +N1,78689,Sortie #78689,https://biolit.fr/sorties/sortie-78689/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_102534_908-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104936-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104952-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110252-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.4463240,3.753891,LPO Occitanie (Dt Hérault),Frontignan,78697,Observation #78697,https://biolit.fr/observations/observation-78697/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-scaled.jpg,,, +N1,78689,Sortie #78689,https://biolit.fr/sorties/sortie-78689/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_102534_908-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104936-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104952-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110252-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.4463240,3.753891,LPO Occitanie (Dt Hérault),Frontignan,78700,Observation #78700,https://biolit.fr/observations/observation-78700/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_102534_908-scaled.jpg,,TRUE, +N1,78689,Sortie #78689,https://biolit.fr/sorties/sortie-78689/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_102534_908-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104936-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104952-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110252-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.4463240,3.753891,LPO Occitanie (Dt Hérault),Frontignan,78702,Observation #78702,https://biolit.fr/observations/observation-78702/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104936-scaled.jpg,,,Ne sais pas +N1,78689,Sortie #78689,https://biolit.fr/sorties/sortie-78689/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_102534_908-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104936-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104952-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110252-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.4463240,3.753891,LPO Occitanie (Dt Hérault),Frontignan,78704,Observation #78704,https://biolit.fr/observations/observation-78704/,Ensis siliqua,Couteau-silique,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104952-scaled.jpg,,,Identifiable +N1,78689,Sortie #78689,https://biolit.fr/sorties/sortie-78689/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_102534_908-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104936-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104952-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110252-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.4463240,3.753891,LPO Occitanie (Dt Hérault),Frontignan,78706,Observation #78706,https://biolit.fr/observations/observation-78706/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105001-scaled.jpg,,, +N1,78689,Sortie #78689,https://biolit.fr/sorties/sortie-78689/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_102534_908-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104936-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104952-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110252-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.4463240,3.753891,LPO Occitanie (Dt Hérault),Frontignan,78709,Observation #78709,https://biolit.fr/observations/observation-78709/,Tritia incrassata,Nasse épaisse,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105131-scaled.jpg,,,Identifiable +N1,78689,Sortie #78689,https://biolit.fr/sorties/sortie-78689/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_102534_908-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104936-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104952-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110252-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.4463240,3.753891,LPO Occitanie (Dt Hérault),Frontignan,78711,Observation #78711,https://biolit.fr/observations/observation-78711/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105154-scaled.jpg,,TRUE,Identifiable +N1,78689,Sortie #78689,https://biolit.fr/sorties/sortie-78689/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_102534_908-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104936-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104952-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110252-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.4463240,3.753891,LPO Occitanie (Dt Hérault),Frontignan,78713,Observation #78713,https://biolit.fr/observations/observation-78713/,Raja brachyura,Raie lisse,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-scaled.jpg,,,non-identifiable +N1,78689,Sortie #78689,https://biolit.fr/sorties/sortie-78689/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_102534_908-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104936-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104952-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110252-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.4463240,3.753891,LPO Occitanie (Dt Hérault),Frontignan,78715,Observation #78715,https://biolit.fr/observations/observation-78715/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110222-scaled.jpg,,TRUE,Identifiable +N1,78689,Sortie #78689,https://biolit.fr/sorties/sortie-78689/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_102534_908-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104936-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104952-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110252-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.4463240,3.753891,LPO Occitanie (Dt Hérault),Frontignan,78717,Observation #78717,https://biolit.fr/observations/observation-78717/,Acetabularia acetabulum,Acétabulaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110252-scaled.jpg,,TRUE,Identifiable +N1,78745,Sortie #78745,https://biolit.fr/sorties/sortie-78745/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104219-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104247-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104257-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104306-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104323-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104338-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105215-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-2-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.45,3.8,LPO Occitanie (Dt Hérault),Frontignan,78747,Observation #78747,https://biolit.fr/observations/observation-78747/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104219-2-scaled.jpg,,,Identifiable +N1,78745,Sortie #78745,https://biolit.fr/sorties/sortie-78745/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104219-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104247-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104257-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104306-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104323-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104338-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105215-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-2-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.45,3.8,LPO Occitanie (Dt Hérault),Frontignan,78749,Observation #78749,https://biolit.fr/observations/observation-78749/,Bittium reticulatum,Cérithe réticulé,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104247-2-scaled.jpg,,,Identifiable +N1,78745,Sortie #78745,https://biolit.fr/sorties/sortie-78745/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104219-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104247-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104257-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104306-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104323-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104338-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105215-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-2-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.45,3.8,LPO Occitanie (Dt Hérault),Frontignan,78751,Observation #78751,https://biolit.fr/observations/observation-78751/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104257-2-scaled.jpg,,,Identifiable +N1,78745,Sortie #78745,https://biolit.fr/sorties/sortie-78745/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104219-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104247-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104257-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104306-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104323-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104338-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105215-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-2-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.45,3.8,LPO Occitanie (Dt Hérault),Frontignan,78753,Observation #78753,https://biolit.fr/observations/observation-78753/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104306-2-scaled.jpg,,, +N1,78760,Sortie #78760,https://biolit.fr/sorties/sortie-78760/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104323-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104338-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105215-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-3-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.45,3.8,LPO Occitanie (Dt Hérault),Frontignan,78762,Observation #78762,https://biolit.fr/observations/observation-78762/,Epitonium clathrus,Scalaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104323-3-scaled.jpg,,,Identifiable +N1,78760,Sortie #78760,https://biolit.fr/sorties/sortie-78760/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104323-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104338-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105215-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-3-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.45,3.8,LPO Occitanie (Dt Hérault),Frontignan,78764,Observation #78764,https://biolit.fr/observations/observation-78764/,Turritellinella tricarinata,Turritelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104338-3-scaled.jpg,,,Identifiable +N1,78760,Sortie #78760,https://biolit.fr/sorties/sortie-78760/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104323-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104338-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105215-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-3-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.45,3.8,LPO Occitanie (Dt Hérault),Frontignan,78766,Observation #78766,https://biolit.fr/observations/observation-78766/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105215-3-scaled.jpg,,TRUE,Identifiable +N1,78760,Sortie #78760,https://biolit.fr/sorties/sortie-78760/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104323-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104338-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105215-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-3-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.45,3.8,LPO Occitanie (Dt Hérault),Frontignan,78768,Observation #78768,https://biolit.fr/observations/observation-78768/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-3-scaled.jpg,,TRUE,Ne sais pas +N1,78775,Sortie #78775,https://biolit.fr/sorties/sortie-78775/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-1-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.45,3.8,LPO Occitanie (Dt Hérault),Frontignan - Aresquiers,78777,Observation #78777,https://biolit.fr/observations/observation-78777/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-1-scaled.jpg,,TRUE,Identifiable +N1,78775,Sortie #78775,https://biolit.fr/sorties/sortie-78775/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-1-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.45,3.8,LPO Occitanie (Dt Hérault),Frontignan - Aresquiers,78779,Observation #78779,https://biolit.fr/observations/observation-78779/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-1-scaled.jpg,,TRUE,Identifiable +N1,78775,Sortie #78775,https://biolit.fr/sorties/sortie-78775/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-1-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.45,3.8,LPO Occitanie (Dt Hérault),Frontignan - Aresquiers,78781,Observation #78781,https://biolit.fr/observations/observation-78781/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-1-scaled.jpg,,,Identifiable +N1,78775,Sortie #78775,https://biolit.fr/sorties/sortie-78775/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-1-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.45,3.8,LPO Occitanie (Dt Hérault),Frontignan - Aresquiers,78783,Observation #78783,https://biolit.fr/observations/observation-78783/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-4-scaled.jpg,,TRUE,Ne sais pas +N1,78791,Sortie #78791,https://biolit.fr/sorties/sortie-78791/,Vincent Jean-Pierre,https://biolit.fr/wp-content/uploads/jet-form-builder/8786ee06708d47d13b28e5c141632720/2024/08/IMG_8821.png,08/01/2024,8.0000000,10.000007,42.4902320000000,3.14346300000000,,Les Paulilles port vendre,,,,,,,,,, +N1,78824,Sortie #78824,https://biolit.fr/sorties/sortie-78824/,BRIQUET Damien,https://biolit.fr/wp-content/uploads/jet-form-builder/5c9f6cd7dcfa80a55ec313c1907fc1f3/2024/08/IMG_7169-scaled.jpg,7/18/2024 0:00,10.0000000,10.000002,42.1139240000000,9.5536210000000,,Aleria,78826,Observation #78826,https://biolit.fr/observations/observation-78826/,Delphinus delphis,Dauphin commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/5c9f6cd7dcfa80a55ec313c1907fc1f3/2024/08/IMG_7169-scaled.jpg,,,Identifiable +N1,78829,Sortie #78829,https://biolit.fr/sorties/sortie-78829/,BRIQUET Damien,https://biolit.fr/wp-content/uploads/jet-form-builder/5c9f6cd7dcfa80a55ec313c1907fc1f3/2024/08/IMG_7296-scaled.jpg,7/30/2024 0:00,21.0:17,21.0:18,42.1104020000000,9.54944200000000,,Aleria,78831,Observation #78831,https://biolit.fr/observations/observation-78831/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5c9f6cd7dcfa80a55ec313c1907fc1f3/2024/08/IMG_7296-scaled.jpg,,,Identifiable +N1,78834,Sortie #78834,https://biolit.fr/sorties/sortie-78834/,BRIQUET Damien,https://biolit.fr/wp-content/uploads/jet-form-builder/5c9f6cd7dcfa80a55ec313c1907fc1f3/2024/08/IMG_7210-scaled.jpg,7/26/2024 0:00,11.0000000,17.0000000,42.1018250000000,9.21461100000000,,Ghisoni,78836,Observation #78836,https://biolit.fr/observations/observation-78836/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/jet-form-builder/5c9f6cd7dcfa80a55ec313c1907fc1f3/2024/08/IMG_7210-scaled.jpg,,TRUE,Identifiable +N1,78839,Sortie #78839,https://biolit.fr/sorties/sortie-78839/,BRIQUET Damien,https://biolit.fr/wp-content/uploads/jet-form-builder/5c9f6cd7dcfa80a55ec313c1907fc1f3/2024/08/IMG_7270-scaled.jpg,7/26/2024 0:00,22.0000000,22.000001,42.1099320000000,9.54993300000000,,Aleria,,,,,,,,,, +N1,78846,Sortie #78846,https://biolit.fr/sorties/sortie-78846/,Alezrah Sarah,https://biolit.fr/wp-content/uploads/jet-form-builder/a5e17d493235fcf0cd1e91213d8f0bf6/2024/08/bassin-arcachon-juillet-2023.jpg,08/04/2023,17.0000000,17.0000000,44.6376660000000,-1.20437600000000,,Plage des Abatilles - Arcachon,78848,Observation #78848,https://biolit.fr/observations/observation-78848/,Conger conger,Congre,,https://biolit.fr/wp-content/uploads/jet-form-builder/a5e17d493235fcf0cd1e91213d8f0bf6/2024/08/bassin-arcachon-juillet-2023.jpg,,TRUE,Ne sais pas +N1,78852,Sortie #78852,https://biolit.fr/sorties/sortie-78852/,Alezrah Sarah,https://biolit.fr/wp-content/uploads/jet-form-builder/a5e17d493235fcf0cd1e91213d8f0bf6/2024/08/La-teste-de-Buch-dec-23.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5e17d493235fcf0cd1e91213d8f0bf6/2024/08/La-Teste-de-Buch2-dec-23.jpg,12/30/2023 0:00,15.000002,15.000004,44.6424140000000,-1.13502500000000,,La Teste de Buch,78854,Observation #78854,https://biolit.fr/observations/observation-78854/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a5e17d493235fcf0cd1e91213d8f0bf6/2024/08/La-teste-de-Buch-dec-23.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5e17d493235fcf0cd1e91213d8f0bf6/2024/08/La-Teste-de-Buch2-dec-23.jpg,,,Identifiable +N1,78857,Sortie #78857,https://biolit.fr/sorties/sortie-78857/,Alezrah Sarah,https://biolit.fr/wp-content/uploads/jet-form-builder/a5e17d493235fcf0cd1e91213d8f0bf6/2024/08/banc-dArguin-_-juillet-24.jpg,7/19/2024 0:00,12.0:34,12.0:34,44.5792880000000,-1.24591800000000,,Banc d'Arguin - bassin d'Arcachon,78859,Observation #78859,https://biolit.fr/observations/observation-78859/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a5e17d493235fcf0cd1e91213d8f0bf6/2024/08/banc-dArguin-_-juillet-24.jpg,,TRUE, +N1,78857,Sortie #78857,https://biolit.fr/sorties/sortie-78857/,Alezrah Sarah,https://biolit.fr/wp-content/uploads/jet-form-builder/a5e17d493235fcf0cd1e91213d8f0bf6/2024/08/banc-dArguin-_-juillet-24.jpg,7/19/2024 0:00,12.0:34,12.0:34,44.5792880000000,-1.24591800000000,,Banc d'Arguin - bassin d'Arcachon,78861,Observation #78861,https://biolit.fr/observations/observation-78861/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a5e17d493235fcf0cd1e91213d8f0bf6/2024/08/banc-dArguin-_-juillet-24.jpg,,TRUE,Identifiable +N1,78867,Sortie #78867,https://biolit.fr/sorties/sortie-78867/,Commune du Lavandou Lavandou,https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-6.jpg,7/29/2022 0:00,9.0000000,18.0000000,43.1511730000000,6.43288900000000,,plage de Cavalière,78869,Observation #78869,https://biolit.fr/observations/observation-78869/,Pancratium maritimum,Lis de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-6.jpg,,TRUE,Identifiable +N1,78867,Sortie #78867,https://biolit.fr/sorties/sortie-78867/,Commune du Lavandou Lavandou,https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-6.jpg,7/29/2022 0:00,9.0000000,18.0000000,43.1511730000000,6.43288900000000,,plage de Cavalière,78871,Observation #78871,https://biolit.fr/observations/observation-78871/,Pancratium maritimum,Lis de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-2.jpg,,TRUE,Identifiable +N1,78867,Sortie #78867,https://biolit.fr/sorties/sortie-78867/,Commune du Lavandou Lavandou,https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-6.jpg,7/29/2022 0:00,9.0000000,18.0000000,43.1511730000000,6.43288900000000,,plage de Cavalière,78873,Observation #78873,https://biolit.fr/observations/observation-78873/,Pancratium maritimum,Lis de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-6.jpg,,TRUE,Identifiable +N1,78867,Sortie #78867,https://biolit.fr/sorties/sortie-78867/,Commune du Lavandou Lavandou,https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-6.jpg,7/29/2022 0:00,9.0000000,18.0000000,43.1511730000000,6.43288900000000,,plage de Cavalière,78875,Observation #78875,https://biolit.fr/observations/observation-78875/,Pancratium maritimum,Lis de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-6.jpg,,TRUE,Identifiable +N1,78878,Sortie #78878,https://biolit.fr/sorties/sortie-78878/,Commune du Lavandou Lavandou,https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/soude-2.jpg,7/29/2022 0:00,8.0:46,19.0:46,43.1404210000000,6.38131600000000,,plage de Saint-Clair,78880,Observation #78880,https://biolit.fr/observations/observation-78880/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/soude-2.jpg,,,non-identifiable +N1,78883,Sortie #78883,https://biolit.fr/sorties/sortie-78883/,Commune du Lavandou Lavandou,https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/silene-de-nice.jpg,7/27/2022 0:00,15.0000000,15.0:53,43.1281560000000,6.3636780000000,,plage de l'anglade,,,,,,,,,, +N1,78887,Sortie #78887,https://biolit.fr/sorties/sortie-78887/,Simon Franck,https://biolit.fr/wp-content/uploads/jet-form-builder/37361f63c46ac3644a4ae124bd74496a/2024/08/inbound3698871983044948021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/37361f63c46ac3644a4ae124bd74496a/2024/08/inbound292854278234254613.jpg,8/13/2023 0:00,10.0:13,10.0:16,43.1399630000000,6.381778000000,,Plage St clair,,,,,,,,,, +N1,78929,Sortie #78929,https://biolit.fr/sorties/sortie-78929/,CORREIA Pascal Dominique,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/72147182-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/72147192-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7214732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7214768-scaled.jpg,7/21/2024 0:00,9.0:45,10.0:45,43.0929960000000,6.44022000000000,,Bormes les Mimosas,78931,Observation #78931,https://biolit.fr/observations/observation-78931/,Parazoanthus axinellae,Anémone encroûtante jaune,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/72147192-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7214732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7214768-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/72147182-scaled.jpg,,TRUE,Identifiable +N1,78935,Sortie #78935,https://biolit.fr/sorties/sortie-78935/,CORREIA Pascal Dominique,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/721471401-01-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/721473801-01-scaled.jpeg,7/22/2024 0:00,9.0:15,10.0:15,42.9944960000000,6.41369800000000,,Port Cros,78937,Observation #78937,https://biolit.fr/observations/observation-78937/,Cratena peregrina,Hervia,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/721471401-01-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/721473801-01-scaled.jpeg,,TRUE,Identifiable +N1,78935,Sortie #78935,https://biolit.fr/sorties/sortie-78935/,CORREIA Pascal Dominique,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/721471401-01-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/721473801-01-scaled.jpeg,7/22/2024 0:00,9.0:15,10.0:15,42.9944960000000,6.41369800000000,,Port Cros,78939,Observation #78939,https://biolit.fr/observations/observation-78939/,Cratena peregrina,Hervia,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/721473801-01-scaled.jpeg,,TRUE,Identifiable +N1,78943,Sortie #78943,https://biolit.fr/sorties/sortie-78943/,CORREIA Pascal Dominique,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7214732-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/721473301-01-scaled.jpeg,7/21/2024 0:00,9.0:45,10.0:45,43.067902000000,6.40494300000000,,Bormes les Mimosas,78945,Observation #78945,https://biolit.fr/observations/observation-78945/,Parazoanthus axinellae,Anémone encroûtante jaune,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7214732-1-scaled.jpg,,TRUE,Identifiable +N1,78943,Sortie #78943,https://biolit.fr/sorties/sortie-78943/,CORREIA Pascal Dominique,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7214732-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/721473301-01-scaled.jpeg,7/21/2024 0:00,9.0:45,10.0:45,43.067902000000,6.40494300000000,,Bormes les Mimosas,78947,Observation #78947,https://biolit.fr/observations/observation-78947/,Parazoanthus axinellae,Anémone encroûtante jaune,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/721473301-01-scaled.jpeg,,TRUE,Identifiable +N1,78952,Sortie #78952,https://biolit.fr/sorties/sortie-78952/,CORREIA Pascal Dominique,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7214751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/721476301-01-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7214765-scaled.jpg,7/23/2024 0:00,9.0:15,10.0:15,42.987810000000,6.39667200000000,,Port Cros,78954,Observation #78954,https://biolit.fr/observations/observation-78954/,Flabellina affinis,Flabelline mauve,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7214751-scaled.jpg,,TRUE,Identifiable +N1,78952,Sortie #78952,https://biolit.fr/sorties/sortie-78952/,CORREIA Pascal Dominique,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7214751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/721476301-01-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7214765-scaled.jpg,7/23/2024 0:00,9.0:15,10.0:15,42.987810000000,6.39667200000000,,Port Cros,78956,Observation #78956,https://biolit.fr/observations/observation-78956/,Flabellina affinis,Flabelline mauve,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/721476301-01-scaled.jpeg,,TRUE,Identifiable +N1,78952,Sortie #78952,https://biolit.fr/sorties/sortie-78952/,CORREIA Pascal Dominique,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7214751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/721476301-01-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7214765-scaled.jpg,7/23/2024 0:00,9.0:15,10.0:15,42.987810000000,6.39667200000000,,Port Cros,78958,Observation #78958,https://biolit.fr/observations/observation-78958/,Flabellina affinis,Flabelline mauve,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7214765-scaled.jpg,,TRUE,Identifiable +N1,78963,Sortie #78963,https://biolit.fr/sorties/sortie-78963/,CORREIA Pascal Dominique,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7264833-01-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/72648342-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7264835-scaled.jpg,7/19/2024 0:00,10.0000000,11.0000000,42.9972580000000,6.25659600000000,,Ile de Porquerolles,78965,Observation #78965,https://biolit.fr/observations/observation-78965/,Astrospartus mediterraneus,Gorgonocéphale,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7264833-01-scaled.jpeg,,TRUE,Identifiable +N1,78963,Sortie #78963,https://biolit.fr/sorties/sortie-78963/,CORREIA Pascal Dominique,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7264833-01-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/72648342-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7264835-scaled.jpg,7/19/2024 0:00,10.0000000,11.0000000,42.9972580000000,6.25659600000000,,Ile de Porquerolles,78967,Observation #78967,https://biolit.fr/observations/observation-78967/,Astrospartus mediterraneus,Gorgonocéphale,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/72648342-scaled.jpg,,TRUE,Identifiable +N1,78963,Sortie #78963,https://biolit.fr/sorties/sortie-78963/,CORREIA Pascal Dominique,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7264833-01-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/72648342-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7264835-scaled.jpg,7/19/2024 0:00,10.0000000,11.0000000,42.9972580000000,6.25659600000000,,Ile de Porquerolles,78969,Observation #78969,https://biolit.fr/observations/observation-78969/,Astrospartus mediterraneus,Gorgonocéphale,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7264835-scaled.jpg,,TRUE,Identifiable +N1,78974,Sortie #78974,https://biolit.fr/sorties/sortie-78974/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_094522-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_094559.jpg,6/27/2024 0:00,9.0:45,9.0:45,43.275411,3.35483,,Portiragnes Plage,78976,Observation #78976,https://biolit.fr/observations/observation-78976/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_094522-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_094559.jpg,,,Identifiable +N1,78974,Sortie #78974,https://biolit.fr/sorties/sortie-78974/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_094522-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_094559.jpg,6/27/2024 0:00,9.0:45,9.0:45,43.275411,3.35483,,Portiragnes Plage,78978,Observation #78978,https://biolit.fr/observations/observation-78978/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_094522-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_094559.jpg,,,Identifiable +N1,78982,Sortie #78982,https://biolit.fr/sorties/sortie-78982/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_094522-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_094559-1.jpg,6/27/2024 0:00,9.0:45,9.0:45,43.275411,3.35483,,Portiragnes Plage,,,,,,,,,, +N1,78985,Sortie #78985,https://biolit.fr/sorties/sortie-78985/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074103.jpg,6/27/2024 0:00,7.0:41,7.0:41,43.273326,3.344401,,Portiragnes Plage,,,,,,,,,, +N1,78990,Sortie #78990,https://biolit.fr/sorties/sortie-78990/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074247-scaled.jpg,6/27/2024 0:00,7.0:42,7.0:42,43.273326,3.344401,,Portiragnes Plage,78992,Observation #78992,https://biolit.fr/observations/observation-78992/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074247-scaled.jpg,,,non-identifiable +N1,78996,Sortie #78996,https://biolit.fr/sorties/sortie-78996/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074323-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074516.jpg,6/27/2024 0:00,7.0:43,7.0:43,43.275453,3.353151,,Portiragnes Plage,78998,Observation #78998,https://biolit.fr/observations/observation-78998/,Helichrysum italicum,Immortelle d'Italie,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074323-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074516.jpg,,,Identifiable +N1,79002,Sortie #79002,https://biolit.fr/sorties/sortie-79002/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074655.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074820-scaled.jpg,6/27/2024 0:00,7.0:46,7.0:48,43.273984,3.352936,,Portiragnes Plage,79004,Observation #79004,https://biolit.fr/observations/observation-79004/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074655.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074820-scaled.jpg,,,non-identifiable +N1,79008,Sortie #79008,https://biolit.fr/sorties/sortie-79008/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074854-scaled.jpg,6/27/2024 0:00,7.0:48,7.0:48,43.273868,3.352932,,Portiragnes Plage,79010,Observation #79010,https://biolit.fr/observations/observation-79010/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074854-scaled.jpg,,,Ne sais pas +N1,79014,Sortie #79014,https://biolit.fr/sorties/sortie-79014/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074907-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075014.jpg,6/27/2024 0:00,7.0:49,7.0:49,43.275275,3.353268,,Portiragnes Plage,79016,Observation #79016,https://biolit.fr/observations/observation-79016/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074907-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075014.jpg,,,non-identifiable +N1,79019,Sortie #79019,https://biolit.fr/sorties/sortie-79019/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075100-scaled.jpg,6/27/2024 0:00,7.0:51,7.0:51,43.275124,3.352314,,Portiragnes Plage,79021,Observation #79021,https://biolit.fr/observations/observation-79021/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075100-scaled.jpg,,,non-identifiable +N1,79025,Sortie #79025,https://biolit.fr/sorties/sortie-79025/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075233.jpg,6/27/2024 0:00,7.0:51,7.0:52,43.275124,3.352314,,Portiragnes Plage,79027,Observation #79027,https://biolit.fr/observations/observation-79027/,Echinophora spinosa,Panais épineux,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075233.jpg,,,Identifiable +N1,79031,Sortie #79031,https://biolit.fr/sorties/sortie-79031/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075109-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075359.jpg,6/27/2024 0:00,7.0:53,7.0:53,43.275124,3.352314,,Portiragnes Plage,79033,Observation #79033,https://biolit.fr/observations/observation-79033/,Molva molva,Julienne,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075109-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075359.jpg,,,Identifiable +N1,79037,Sortie #79037,https://biolit.fr/sorties/sortie-79037/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075509.jpg,6/27/2024 0:00,7.0:54,7.0:55,43.275335,3.352445,,Portiragnes Plage,79039,Observation #79039,https://biolit.fr/observations/observation-79039/,Anthemis maritima,Anthémis maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075509.jpg,,,Identifiable +N1,79043,Sortie #79043,https://biolit.fr/sorties/sortie-79043/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075549-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075653.jpg,6/27/2024 0:00,7.0:55,7.0:56,43.27324,3.352916,,Portiragnes Plage,79045,Observation #79045,https://biolit.fr/observations/observation-79045/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075549-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075653.jpg,,,non-identifiable +N1,79049,Sortie #79049,https://biolit.fr/sorties/sortie-79049/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075703-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075816.jpg,6/27/2024 0:00,7.0:57,7.0:58,43.273205,3.352918,,Portiragnes Plage,79051,Observation #79051,https://biolit.fr/observations/observation-79051/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075703-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075816.jpg,,,Identifiable +N1,79055,Sortie #79055,https://biolit.fr/sorties/sortie-79055/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_080511-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_080601.jpg,6/27/2024 0:00,8.000005,8.000006,43.271722,3.349177,,Portiragnes Plage,79057,Observation #79057,https://biolit.fr/observations/observation-79057/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_080511-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_080601.jpg,,,Identifiable +N1,79061,Sortie #79061,https://biolit.fr/sorties/sortie-79061/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_080723-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_080930.jpg,6/27/2024 0:00,8.000007,8.000009,43.269967,3.340094,,Portiragnes Plage,79063,Observation #79063,https://biolit.fr/observations/observation-79063/,Salicornia spp.,Salicorne,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_080723-scaled.jpg,,,Identifiable +N1,79068,Sortie #79068,https://biolit.fr/sorties/sortie-79068/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_081000-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_081052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_081125.jpg,6/27/2024 0:00,8.0000000,8.0:11,43.269918,3.340098,,Portiragnes Plage,79070,Observation #79070,https://biolit.fr/observations/observation-79070/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_081000-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_081052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_081125.jpg,",",Identifiable, +N1,79074,Sortie #79074,https://biolit.fr/sorties/sortie-79074/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_082028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_082300.jpg,6/27/2024 0:00,8.0000000,8.0:23,43.26987,3.340177,,Portiragnes Plage,79076,Observation #79076,https://biolit.fr/observations/observation-79076/,Himantopus himantopus,Echasse blanche,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_082028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_082300.jpg,,,Identifiable +N1,79088,Sortie #79088,https://biolit.fr/sorties/sortie-79088/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_081339-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_081823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_082014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_082633.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_082656-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_083215-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_083447-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_083800-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_083802-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090031-scaled.jpg,6/27/2024 0:00,8.0:13,9.0:23,43.269901,3.340138,,Portiragnes Plage,79090,Observation #79090,https://biolit.fr/observations/observation-79090/,Sternula albifrons,Sterne naine,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_081823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_082014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_082656-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_083215-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_083447-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_083800-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_083802-scaled.jpg,,FALSE,Identifiable +N1,79095,Sortie #79095,https://biolit.fr/sorties/sortie-79095/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_082816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_082820-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_082942.jpg,6/27/2024 0:00,8.0:28,8.0:29,43.27006,3.345665,,Portiragnes Plage,79097,Observation #79097,https://biolit.fr/observations/observation-79097/,Phragmites australis,Roseau,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_082816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_082820-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_082942.jpg,,,Identifiable +N1,79101,Sortie #79101,https://biolit.fr/sorties/sortie-79101/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_083015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_083115.jpg,6/27/2024 0:00,8.0000000,8.0:31,43.27001,3.345493,,Portiragnes Plage,79103,Observation #79103,https://biolit.fr/observations/observation-79103/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_083015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_083115.jpg,,,Identifiable +N1,79108,Sortie #79108,https://biolit.fr/sorties/sortie-79108/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_085332-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_085426.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_085553.jpg,6/27/2024 0:00,8.0:53,8.0:55,43.284738,3.377158,,Portiragnes Plage,79110,Observation #79110,https://biolit.fr/observations/observation-79110/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_085332-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_085426.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_085553.jpg,,,Ne sais pas +N1,79114,Sortie #79114,https://biolit.fr/sorties/sortie-79114/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_085640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_085721.jpg,6/27/2024 0:00,8.0:56,8.0:57,43.27211,3.3502,,Portiragnes Plage,79116,Observation #79116,https://biolit.fr/observations/observation-79116/,Medicago marina,Luzerne marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_085640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_085721.jpg,,,Identifiable +N1,79120,Sortie #79120,https://biolit.fr/sorties/sortie-79120/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090141-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090226.jpg,6/27/2024 0:00,9.000001,9.000002,43.272848,3.350858,,Portiragnes Plage,79122,Observation #79122,https://biolit.fr/observations/observation-79122/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090141-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090226.jpg,,,Identifiable +N1,79126,Sortie #79126,https://biolit.fr/sorties/sortie-79126/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090552.jpg,6/27/2024 0:00,9.000004,9.000005,43.273372,3.351668,,Portiragnes Plage,79128,Observation #79128,https://biolit.fr/observations/observation-79128/,Pancratium maritimum,Lis de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090552.jpg,,TRUE,Identifiable +N1,79132,Sortie #79132,https://biolit.fr/sorties/sortie-79132/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090727.jpg,6/27/2024 0:00,9.0:59,9.000007,43.27531,3.34881,,Portiragnes Plage,79134,Observation #79134,https://biolit.fr/observations/observation-79134/,Lagurus ovatus,Queue de lièvre,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090727.jpg,,TRUE,Identifiable +N1,79138,Sortie #79138,https://biolit.fr/sorties/sortie-79138/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090756-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090853.jpg,6/27/2024 0:00,9.000007,9.000008,43.273497,3.35187,,Portiragnes Plage,79140,Observation #79140,https://biolit.fr/observations/observation-79140/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090756-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090853.jpg,,,non-identifiable +N1,79144,Sortie #79144,https://biolit.fr/sorties/sortie-79144/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090916-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_091013.jpg,6/27/2024 0:00,9.000009,9.0000000,43.273517,3.351857,,Portiragnes Plage,79146,Observation #79146,https://biolit.fr/observations/observation-79146/,Artemisia caerulescens subsp. gallica,Armoise de France,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090916-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_091013.jpg,,,Identifiable +N1,79150,Sortie #79150,https://biolit.fr/sorties/sortie-79150/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_091111-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_091410.jpg,6/27/2024 0:00,9.0:11,9.0:14,43.27351,3.34881,,Portiragnes Plage,79152,Observation #79152,https://biolit.fr/observations/observation-79152/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_091111-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_091410.jpg,,,Ne sais pas +N1,79156,Sortie #79156,https://biolit.fr/sorties/sortie-79156/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_091608-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_091711.jpg,6/27/2024 0:00,9.0:16,9.0:17,43.276246,3.352819,,Portiragnes Plage,79158,Observation #79158,https://biolit.fr/observations/observation-79158/,Malva arborea,Lavatère arborescente,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_091711.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_091608-scaled.jpg,,,Identifiable +N1,79162,Sortie #79162,https://biolit.fr/sorties/sortie-79162/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_091840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_091919.jpg,6/27/2024 0:00,9.0:18,9.0:19,43.275876,3.351999,,Portiragnes Plage,79164,Observation #79164,https://biolit.fr/observations/observation-79164/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_091840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_091919.jpg,,,non-identifiable +N1,79169,Sortie #79169,https://biolit.fr/sorties/sortie-79169/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_091929-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_092004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_092239.jpg,6/27/2024 0:00,9.0:19,0.0:22,43.273811,3.352066,,Portiragnes Plage,79171,Observation #79171,https://biolit.fr/observations/observation-79171/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_091929-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_092004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_092239.jpg,,,non-identifiable +N1,79175,Sortie #79175,https://biolit.fr/sorties/sortie-79175/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_092414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_092544.jpg,6/27/2024 0:00,9.0:24,9.0:25,43.273933,3.35256,,Portiragnes Plage,,,,,,,,,, +N1,79179,Sortie #79179,https://biolit.fr/sorties/sortie-79179/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_092906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_092944.jpg,6/27/2024 0:00,9.0:29,9.0:29,43.275567,3.352761,,Portiragnes Plage,79181,Observation #79181,https://biolit.fr/observations/observation-79181/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_092906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_092944.jpg,,,non-identifiable +N1,79185,Sortie #79185,https://biolit.fr/sorties/sortie-79185/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_093022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_093104.jpg,6/27/2024 0:00,9.0000000,9.0:31,43.274361,3.353882,,Portiragnes Plage,79187,Observation #79187,https://biolit.fr/observations/observation-79187/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_093022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_093104.jpg,,,non-identifiable +N1,79191,Sortie #79191,https://biolit.fr/sorties/sortie-79191/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_093229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_093318.jpg,6/27/2024 0:00,9.0:32,9.0:33,43.27531,3.34881,,Portiragnes Plage,79193,Observation #79193,https://biolit.fr/observations/observation-79193/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_093229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_093318.jpg,,,non-identifiable +N1,79197,Sortie #79197,https://biolit.fr/sorties/sortie-79197/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_093346-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_093633.jpg,6/27/2024 0:00,9.0:33,9.0:36,43.276377,3.352919,,Portiragnes Plage,79199,Observation #79199,https://biolit.fr/observations/observation-79199/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_093346-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_093633.jpg,,,non-identifiable +N1,79203,Sortie #79203,https://biolit.fr/sorties/sortie-79203/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_093740-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_094059.jpg,6/27/2024 0:00,9.0:37,9.0000000,43.274841,3.354803,,Portiragnes Plage,79205,Observation #79205,https://biolit.fr/observations/observation-79205/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_093740-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_094059.jpg,,,non-identifiable +N1,79208,Sortie #79208,https://biolit.fr/sorties/sortie-79208/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_213245.jpg,6/27/2024 0:00,21.0:32,21.0:32,43.274841,3.354803,,Portiragnes Plage,,,,,,,,,, +N1,79213,Sortie #79213,https://biolit.fr/sorties/sortie-79213/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_213926.jpg,6/27/2024 0:00,21.0:39,21.0:39,43.274841,3.354803,,Portiragnes Plage,,,,,,,,,, +N1,79218,Sortie #79218,https://biolit.fr/sorties/sortie-79218/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240629_175028.jpg,6/29/2024 0:00,17.0000000,17.0000000,43.274841,3.354803,,Portiragnes Plage,,,,,,,,,, +N1,79223,Sortie #79223,https://biolit.fr/sorties/sortie-79223/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240702_213708.jpg,07/02/2024,21.0:37,21.0:37,43.274841,3.354803,,Portiragnes Plage,,,,,,,,,, +N1,79228,Sortie #79228,https://biolit.fr/sorties/sortie-79228/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240706_085531.jpg,07/06/2024,8.0:55,8.0:55,43.274841,3.354803,,Portiragnes Plage,,,,,,,,,, +N1,79241,Sortie #79241,https://biolit.fr/sorties/sortie-79241/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240706_083320-scaled.jpg,07/06/2024,8.0:33,8.0:33,43.283063,3.379657,,Portiragnes Plage,79243,Observation #79243,https://biolit.fr/observations/observation-79243/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240706_083320-scaled.jpg,,TRUE,Ne sais pas +N1,79250,Sortie #79250,https://biolit.fr/sorties/sortie-79250/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/B312BA65-5241-4E99-80EA-2246E91F81DF-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/650B561B-C423-4740-A049-E32A09D05D26-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/DEEEF4FD-22B8-43D8-B0EB-9AFCE399E021-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/681D5A92-D4A5-42AD-AED1-BE2CA4452421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/DDB58E38-7982-4734-8DDB-D1D49545D4EE-scaled.jpeg,06/09/2024,0.0:22,14.0:26,43.2702090000000,6.5856390000000,,Port-Grimaud petite plage sud,79252,Observation #79252,https://biolit.fr/observations/observation-79252/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/650B561B-C423-4740-A049-E32A09D05D26-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/DEEEF4FD-22B8-43D8-B0EB-9AFCE399E021-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/681D5A92-D4A5-42AD-AED1-BE2CA4452421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/DDB58E38-7982-4734-8DDB-D1D49545D4EE-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/B312BA65-5241-4E99-80EA-2246E91F81DF-scaled.jpeg,,TRUE,Identifiable +N1,79250,Sortie #79250,https://biolit.fr/sorties/sortie-79250/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/B312BA65-5241-4E99-80EA-2246E91F81DF-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/650B561B-C423-4740-A049-E32A09D05D26-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/DEEEF4FD-22B8-43D8-B0EB-9AFCE399E021-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/681D5A92-D4A5-42AD-AED1-BE2CA4452421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/DDB58E38-7982-4734-8DDB-D1D49545D4EE-scaled.jpeg,06/09/2024,0.0:22,14.0:26,43.2702090000000,6.5856390000000,,Port-Grimaud petite plage sud,79254,Observation #79254,https://biolit.fr/observations/observation-79254/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/DEEEF4FD-22B8-43D8-B0EB-9AFCE399E021-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/681D5A92-D4A5-42AD-AED1-BE2CA4452421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/DDB58E38-7982-4734-8DDB-D1D49545D4EE-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/650B561B-C423-4740-A049-E32A09D05D26-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/B312BA65-5241-4E99-80EA-2246E91F81DF-scaled.jpeg,,TRUE,Identifiable +N1,79262,Sortie #79262,https://biolit.fr/sorties/sortie-79262/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/E7D9E95D-9A7E-45B6-B519-35D76A82A6BD-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/1C8A26D4-E052-450F-9C5E-651BDEE27C64-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/F6E2A10A-FA31-4658-8D45-AD9646A30521-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/01B2072F-21C0-4EEF-8F18-428A94A9F37D-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/F1E7414D-72D3-42CE-85BA-BA029031FAF0-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/8234CF29-C0CC-4BD5-80AD-EE1FD69A972D-scaled.jpeg,06/09/2024,14.0:25,14.0:35,43.270286000000,6.58552100000000,,Port-Grimaud petite plage sud,79264,Observation #79264,https://biolit.fr/observations/observation-79264/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/E7D9E95D-9A7E-45B6-B519-35D76A82A6BD-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/1C8A26D4-E052-450F-9C5E-651BDEE27C64-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/F6E2A10A-FA31-4658-8D45-AD9646A30521-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/01B2072F-21C0-4EEF-8F18-428A94A9F37D-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/F1E7414D-72D3-42CE-85BA-BA029031FAF0-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/8234CF29-C0CC-4BD5-80AD-EE1FD69A972D-scaled.jpeg,,TRUE,Identifiable +N1,79269,Sortie #79269,https://biolit.fr/sorties/sortie-79269/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/0012F358-2C7F-4591-A6BF-9C186050CA7B-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/831DFB6E-33B4-4BB2-A198-ECEC78617305-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/A277A250-FF1B-4716-8164-7A90DC973EC4-scaled.jpeg,06/09/2024,14.0:25,14.0:35,43.2701690000000,6.58552100000000,,Port-Grimaud petite plage sud,79271,Observation #79271,https://biolit.fr/observations/observation-79271/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/0012F358-2C7F-4591-A6BF-9C186050CA7B-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/831DFB6E-33B4-4BB2-A198-ECEC78617305-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/A277A250-FF1B-4716-8164-7A90DC973EC4-scaled.jpeg,,TRUE,Identifiable +N1,79277,Sortie #79277,https://biolit.fr/sorties/sortie-79277/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/4D113499-1D52-4D9B-A43C-7126E86EC3A1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/E7AA902D-7CC0-489D-8B64-A28FDCFABF22-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/0C4789A7-C4A9-45E0-A9F6-EE31CDC1FCEC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/AAD8ABB8-2D2C-470D-A3B3-6F0DA677545B-scaled.jpeg,06/09/2024,14.0:25,14.0:35,43.270262000000,6.58546700000000,,Port-Grimaud petite plage sud,,,,,,,,,, +N1,79282,Sortie #79282,https://biolit.fr/sorties/sortie-79282/,QUERARD LAURENCE,https://biolit.fr/wp-content/uploads/jet-form-builder/cd6caa666804281842dc104f2fc9d41f/2024/08/IMG_4313-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cd6caa666804281842dc104f2fc9d41f/2024/08/IMG_4312-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cd6caa666804281842dc104f2fc9d41f/2024/08/IMG_4311-scaled.jpeg,6/20/2024 0:00,9.0000000,15.0000000,48.6971110000000,-1.87969900000000,Al-Lark,Plage du Verger / CANCALE,79284,Observation #79284,https://biolit.fr/observations/observation-79284/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cd6caa666804281842dc104f2fc9d41f/2024/08/IMG_4313-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cd6caa666804281842dc104f2fc9d41f/2024/08/IMG_4312-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cd6caa666804281842dc104f2fc9d41f/2024/08/IMG_4311-scaled.jpeg,,,Ne sais pas +N1,79282,Sortie #79282,https://biolit.fr/sorties/sortie-79282/,QUERARD LAURENCE,https://biolit.fr/wp-content/uploads/jet-form-builder/cd6caa666804281842dc104f2fc9d41f/2024/08/IMG_4313-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cd6caa666804281842dc104f2fc9d41f/2024/08/IMG_4312-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cd6caa666804281842dc104f2fc9d41f/2024/08/IMG_4311-scaled.jpeg,6/20/2024 0:00,9.0000000,15.0000000,48.6971110000000,-1.87969900000000,Al-Lark,Plage du Verger / CANCALE,79286,Observation #79286,https://biolit.fr/observations/observation-79286/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cd6caa666804281842dc104f2fc9d41f/2024/08/IMG_4313-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cd6caa666804281842dc104f2fc9d41f/2024/08/IMG_4312-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cd6caa666804281842dc104f2fc9d41f/2024/08/IMG_4311-scaled.jpeg,,,Ne sais pas +N1,79303,Sortie #79303,https://biolit.fr/sorties/sortie-79303/,Strullu Danielle,https://biolit.fr/wp-content/uploads/jet-form-builder/55aa00a6bf3cc9d90a1fb054f444e8e5/2024/08/IMG_2757.jpeg,08/11/2024,16.0:46,17.0:15,47.9639620000000,-4.4269320000000,,,79305,Observation #79305,https://biolit.fr/observations/observation-79305/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/55aa00a6bf3cc9d90a1fb054f444e8e5/2024/08/IMG_2757.jpeg,,,Identifiable +N1,79316,Sortie #79316,https://biolit.fr/sorties/sortie-79316/,Céline,https://biolit.fr/wp-content/uploads/jet-form-builder/a124436f212872e36bd7cc12bfe0fd03/2024/08/image-scaled.jpg,8/16/2024 0:00,12.0:14,12.0:17,47.550806000000,-2.86949200000000,,Pointe de sont nicolas,79318,Observation #79318,https://biolit.fr/observations/observation-79318/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a124436f212872e36bd7cc12bfe0fd03/2024/08/image-scaled.jpg,,TRUE,Ne sais pas +N1,79362,Sortie #79362,https://biolit.fr/sorties/sortie-79362/,MERAND Violaine,https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240819_182812.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240819_182755.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_120639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_120318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_120244-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_120234-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_120125-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_115959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_115612-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_115531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_115526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_115003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_114901-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_114825-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_114744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_114229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_114150-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_113705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_113507-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_113152-scaled.jpg,8/15/2024 0:00,12.0000000,13.0000000,573377,5214877,,La Bernerie-en-Retz,,,,,,,,,, +N1,79365,Sortie #79365,https://biolit.fr/sorties/sortie-79365/,Dufour Valerie,https://biolit.fr/wp-content/uploads/jet-form-builder/fb7abd36fb343b5eb691e055c1409ef2/2024/08/17241465721388195060696447707018-scaled.jpg,8/20/2024 0:00,11.0:35,12.0:35,47.9759030,-4.4474210,Communauté de communes du Haut Pays Bigouden,Prat meur,,,,,,,,,, +N1,79374,Sortie #79374,https://biolit.fr/sorties/sortie-79374/,Pascual Cassandre,https://biolit.fr/wp-content/uploads/jet-form-builder/167be8f110e1e633e6865c292c7739b5/2024/08/P8152880-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/167be8f110e1e633e6865c292c7739b5/2024/08/P8152879-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/167be8f110e1e633e6865c292c7739b5/2024/08/P8152878-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/167be8f110e1e633e6865c292c7739b5/2024/08/P8152877-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/167be8f110e1e633e6865c292c7739b5/2024/08/P8152876-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/167be8f110e1e633e6865c292c7739b5/2024/08/P8152869-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/167be8f110e1e633e6865c292c7739b5/2024/08/P8152864-scaled.jpg,8/15/2023 0:00,11.0000000,11.0:25,43.1106880000000,6.36713900000000,,,,,,,,,,,, +N1,79382,Sortie #79382,https://biolit.fr/sorties/sortie-79382/,Anne,https://biolit.fr/wp-content/uploads/jet-form-builder/11f0c1625bbddcdf87d48aaece0067b0/2024/08/Biolit-Pornichet-20240726-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11f0c1625bbddcdf87d48aaece0067b0/2024/08/Biolit-Pornichet-2-20240726-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11f0c1625bbddcdf87d48aaece0067b0/2024/08/Biolit-Pornichet-3-20240726-1-scaled.jpg,7/26/2024 0:00,14.0000000,17.0000000,47.2515270000000,-2.33363200000000,,"Plage de Bonne Source, Pornichet",79384,Observation #79384,https://biolit.fr/observations/observation-79384/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/11f0c1625bbddcdf87d48aaece0067b0/2024/08/Biolit-Pornichet-3-20240726-1-scaled.jpg,,,Ne sais pas +N1,79382,Sortie #79382,https://biolit.fr/sorties/sortie-79382/,Anne,https://biolit.fr/wp-content/uploads/jet-form-builder/11f0c1625bbddcdf87d48aaece0067b0/2024/08/Biolit-Pornichet-20240726-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11f0c1625bbddcdf87d48aaece0067b0/2024/08/Biolit-Pornichet-2-20240726-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11f0c1625bbddcdf87d48aaece0067b0/2024/08/Biolit-Pornichet-3-20240726-1-scaled.jpg,7/26/2024 0:00,14.0000000,17.0000000,47.2515270000000,-2.33363200000000,,"Plage de Bonne Source, Pornichet",79386,Observation #79386,https://biolit.fr/observations/observation-79386/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/11f0c1625bbddcdf87d48aaece0067b0/2024/08/Biolit-Pornichet-20240726-1-scaled.jpg,,,Ne sais pas +N1,79382,Sortie #79382,https://biolit.fr/sorties/sortie-79382/,Anne,https://biolit.fr/wp-content/uploads/jet-form-builder/11f0c1625bbddcdf87d48aaece0067b0/2024/08/Biolit-Pornichet-20240726-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11f0c1625bbddcdf87d48aaece0067b0/2024/08/Biolit-Pornichet-2-20240726-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11f0c1625bbddcdf87d48aaece0067b0/2024/08/Biolit-Pornichet-3-20240726-1-scaled.jpg,7/26/2024 0:00,14.0000000,17.0000000,47.2515270000000,-2.33363200000000,,"Plage de Bonne Source, Pornichet",79388,Observation #79388,https://biolit.fr/observations/observation-79388/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/11f0c1625bbddcdf87d48aaece0067b0/2024/08/Biolit-Pornichet-2-20240726-1-scaled.jpg,,,Ne sais pas +N1,79391,Sortie #79391,https://biolit.fr/sorties/sortie-79391/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/P7317516-scaled.jpg,7/31/2024 0:00,9.0000000,9.0:47,43.0993690000000,6.02291100000000,,la Garonne le Pradet,79393,Observation #79393,https://biolit.fr/observations/observation-79393/,Olindias muelleri,Olindias,,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/P7317516-scaled.jpg,,TRUE,Ne sais pas +N1,79401,Sortie #79401,https://biolit.fr/sorties/sortie-79401/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/4D35EDD8-947D-4C8D-9D71-66A9127A4383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/7C4ECC11-5384-4959-8347-5CCCFC306B8D.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/9630E916-A41A-4AAB-BF71-8AC93A80FE90.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/DA1F78F6-24EA-4EF4-928F-135CB73EFA71-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/5D58751A-2EE8-4F05-85CA-2A482982ED88-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/7FEC8E44-DD92-46FF-88BB-60A72594C56D-scaled.jpeg,5/23/2023 0:00,16.0:15,16.0:45,43.2704200000000,6.58544500000000,,Port-Grimaud petite plage sud,79403,Observation #79403,https://biolit.fr/observations/observation-79403/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/4D35EDD8-947D-4C8D-9D71-66A9127A4383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/7C4ECC11-5384-4959-8347-5CCCFC306B8D.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/9630E916-A41A-4AAB-BF71-8AC93A80FE90.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/DA1F78F6-24EA-4EF4-928F-135CB73EFA71-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/5D58751A-2EE8-4F05-85CA-2A482982ED88-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/7FEC8E44-DD92-46FF-88BB-60A72594C56D-scaled.jpeg,,TRUE,Identifiable +N1,79408,Sortie #79408,https://biolit.fr/sorties/sortie-79408/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/08/IMG_20240730_134046172_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/08/IMG_20240730_134053743_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/08/IMG_20240730_141200405_HDR-rotated.jpg,7/30/2024 0:00,12.0000000,12.0000000,43.1472950000000,5.70938400000000,,Plage d'Alon,79410,Observation #79410,https://biolit.fr/observations/observation-79410/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/08/IMG_20240730_134046172_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/08/IMG_20240730_134053743_HDR.jpg,,TRUE,Identifiable +N1,79408,Sortie #79408,https://biolit.fr/sorties/sortie-79408/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/08/IMG_20240730_134046172_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/08/IMG_20240730_134053743_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/08/IMG_20240730_141200405_HDR-rotated.jpg,7/30/2024 0:00,12.0000000,12.0000000,43.1472950000000,5.70938400000000,,Plage d'Alon,79412,Observation #79412,https://biolit.fr/observations/observation-79412/,Cladostephus spongiosus,Cladostéphus spongieux,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/08/IMG_20240730_141200405_HDR-rotated.jpg,,,Identifiable +N1,79423,Sortie #79423,https://biolit.fr/sorties/sortie-79423/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/47CFC55D-1868-4013-A7FA-661B4DF32985.jpeg,7/31/2024 0:00,9.0:55,9.0:59,43.6536350000000,6.47995900000000,,La Garonne le Pradet 8,,,,,,,,,, +N1,79426,Sortie #79426,https://biolit.fr/sorties/sortie-79426/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/6C8FE438-D6F1-4819-9C35-9C6160F72B95.jpeg,6/28/2024 0:00,9.0000000,9.0:42,43.0901790000000,6.02565800000000,,La Garonne le Pradet 83,79428,Observation #79428,https://biolit.fr/observations/observation-79428/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/6C8FE438-D6F1-4819-9C35-9C6160F72B95.jpeg,,TRUE,Identifiable +N1,79431,Sortie #79431,https://biolit.fr/sorties/sortie-79431/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/83C00EDA-D986-4588-9B4E-9AA5CB605522.jpeg,07/01/2024,9.0:52,9.0:53,43.1208460000000,5.9326170000,,Digue du fort St Louis Toulon 83,79433,Observation #79433,https://biolit.fr/observations/observation-79433/,Parablennius pilicornis,Blennie pilicorne,,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/83C00EDA-D986-4588-9B4E-9AA5CB605522.jpeg,,TRUE,Identifiable +N1,79436,Sortie #79436,https://biolit.fr/sorties/sortie-79436/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/24295EA0-EBF8-485C-8AF2-18DE4B70E48D.jpeg,07/07/2024,10.0:34,10.0:39,43.1189350000000,5.92987100000000,,Anse Méjean ( Mourillon) Toulon 83,79438,Observation #79438,https://biolit.fr/observations/observation-79438/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/24295EA0-EBF8-485C-8AF2-18DE4B70E48D.jpeg,,,Ne sais pas +N1,79441,Sortie #79441,https://biolit.fr/sorties/sortie-79441/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/D525C977-0E32-4E67-B53E-5E87EFA6211F.jpeg,7/14/2024 0:00,9.0:49,9.0:55,43.1128260000000,5.93536400000000,,Anse Mistral (Mourillon) Toulon 83,79443,Observation #79443,https://biolit.fr/observations/observation-79443/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/D525C977-0E32-4E67-B53E-5E87EFA6211F.jpeg,,,Identifiable +N1,79446,Sortie #79446,https://biolit.fr/sorties/sortie-79446/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/45C6DE06-F456-4709-906D-FA20A6F4D842.jpeg,7/27/2024 0:00,9.0:54,9.0:59,43.1064740000000,5.94326000000000,,Anse Mistral (Mourillon) 83,79448,Observation #79448,https://biolit.fr/observations/observation-79448/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/45C6DE06-F456-4709-906D-FA20A6F4D842.jpeg,,,Identifiable +N1,79451,Sortie #79451,https://biolit.fr/sorties/sortie-79451/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/4A25E6EA-00E5-435D-8C1D-BB70F04B7606.jpeg,8/22/2024 0:00,9.0000000,10.0000000,43.1052320000000,5.97261400000000,,Anse Méjean Toulon83,79453,Observation #79453,https://biolit.fr/observations/observation-79453/,Cratena peregrina,Hervia,,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/4A25E6EA-00E5-435D-8C1D-BB70F04B7606.jpeg,,TRUE,Identifiable +N1,79456,Sortie #79456,https://biolit.fr/sorties/sortie-79456/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/0FAAEF4B-D6BF-48B9-BA18-25891EDD50B2.jpeg,8/21/2024 0:00,9.0:43,9.0000000,43.1069330000000,5.94523400000000,,Anse la Source (Mourillon) Toulon 83,,,,,,,,,, +N1,79459,Sortie #79459,https://biolit.fr/sorties/sortie-79459/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/5E4EB2C1-B15A-40E2-954F-5BA690C8B59F.jpeg,8/26/2024 0:00,10.000009,10.0:15,43.106418000000,5.94240200000000,,Anse Mistral ( Mourillon) Toulon 83,,,,,,,,,, +N1,79462,Sortie #79462,https://biolit.fr/sorties/sortie-79462/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/998422B2-DC88-49CA-9BEB-5DC9E280EDBA.jpeg,8/25/2024 0:00,10.0000000,10.0:32,43.1064650000000,5.94268100000000,,Anse Mistral ( Mourillon) Toulon 83,,,,,,,,,, +N1,79465,Sortie #79465,https://biolit.fr/sorties/sortie-79465/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/45EBACED-B547-4F9B-A3C4-C8C1BD7482A6.jpeg,8/23/2024 0:00,10.0:26,10.0:37,43.1065270000000,5.94255200000000,,Anse Mistral ( Mourillon) Toulon 83,,,,,,,,,, +N1,79468,Sortie #79468,https://biolit.fr/sorties/sortie-79468/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/4AFCDE41-7DB5-4298-8073-7988E1C1CEC5.jpeg,8/27/2024 0:00,10.0:47,10.0:47,44.3902490000000,6.141357000000,,Entre la Garonne et les Oursinieres le Pradet 83,,,,,,,,,, +N1,79482,Sortie #79482,https://biolit.fr/sorties/sortie-79482/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/08/IMG_5677-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/08/IMG_5652-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/08/IMG_5649-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/08/IMG_5645-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/08/IMG_5644-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/08/IMG_5646-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/08/IMG_5650-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/08/IMG_5651-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/08/IMG_5653-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/08/IMG_5654-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/08/IMG_5643-scaled.jpeg,8/19/2024 0:00,13.0000000,15.0000000,48.8199340000000,-3.53485100000000,,Plage de Landrellec Pleumeur Bodou,,,,,,,,,, +N1,79497,Sortie #79497,https://biolit.fr/sorties/sortie-79497/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/A92D3134-C885-4E2D-81D3-74B13F66640D.jpeg,8/21/2024 0:00,9.0:43,9.0:56,43.1069970000000,5.94448300000000,,Anse la Source ( Mourillon) Toulon 83,,,,,,,,,, +N1,79500,Sortie #79500,https://biolit.fr/sorties/sortie-79500/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/1F5A96B0-26BD-47D4-A8F0-9E06323A8312.jpeg,8/26/2024 0:00,10.000009,10.0:12,43.106418000000,5.94268100000000,,Anse Mistral,79502,Observation #79502,https://biolit.fr/observations/observation-79502/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/1F5A96B0-26BD-47D4-A8F0-9E06323A8312.jpeg,,TRUE,Identifiable +N1,79507,Sortie #79507,https://biolit.fr/sorties/sortie-79507/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/DE59C986-7B10-41FA-A469-253083639426.jpeg,8/21/2024 0:00,9.0:43,9.0:55,43.1069820000000,5.94517000000000,,Anse la Source (Mourillon) Toulon 83,,,,,,,,,, +N1,79514,Sortie #79514,https://biolit.fr/sorties/sortie-79514/,DEUX MICKAEL,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0399-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0398-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0397-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0396-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0395-scaled.jpeg,09/01/2024,17.0:35,17.0:44,47.2671540000000,-2.45454400000000,,,,,,,,,,,, +N1,79521,Sortie #79521,https://biolit.fr/sorties/sortie-79521/,DEUX MICKAEL,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0399-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0398-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0397-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0396-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0395-1-scaled.jpeg,09/01/2024,17.0:47,17.0000000,47.2665470000000,-2.45431400000000,,La Govelle,79523,Observation #79523,https://biolit.fr/observations/observation-79523/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0397-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0399-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0398-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0396-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0395-1-scaled.jpeg,,,Ne sais pas +N1,79526,Sortie #79526,https://biolit.fr/sorties/sortie-79526/,DEUX MICKAEL,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0398-2-scaled.jpeg,09/01/2024,17.0:53,17.0:53,47.2670970000000,-2.45459500000000,,La Govelle,79528,Observation #79528,https://biolit.fr/observations/observation-79528/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0398-2-scaled.jpeg,,TRUE,Ne sais pas +N1,79531,Sortie #79531,https://biolit.fr/sorties/sortie-79531/,DEUX MICKAEL,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0395-2-scaled.jpeg,09/01/2024,17.0:56,17.0:56,47.2670970000000,-2.45459500000000,,La Govelle,79533,Observation #79533,https://biolit.fr/observations/observation-79533/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0395-2-scaled.jpeg,,,Ne sais pas +N1,79536,Sortie #79536,https://biolit.fr/sorties/sortie-79536/,DEUX MICKAEL,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0397-2-scaled.jpeg,09/01/2024,17.0:58,17.0:58,47.2670970000000,-2.45459500000000,,La Govelle,79538,Observation #79538,https://biolit.fr/observations/observation-79538/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0397-2-scaled.jpeg,,,Ne sais pas +N1,79536,Sortie #79536,https://biolit.fr/sorties/sortie-79536/,DEUX MICKAEL,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0397-2-scaled.jpeg,09/01/2024,17.0:58,17.0:58,47.2670970000000,-2.45459500000000,,La Govelle,79540,Observation #79540,https://biolit.fr/observations/observation-79540/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0397-2-scaled.jpeg,,,Ne sais pas +N1,79557,Sortie #79557,https://biolit.fr/sorties/sortie-79557/,Royal Emeraude Hotel,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005016-scaled.jpg,09/02/2024,14.0000000,15.0000000,48.6350630,-2.0557350,Planète Mer,,,,,,,,,,, +N1,79562,Sortie #79562,https://biolit.fr/sorties/sortie-79562/,Royal Emeraude Hotel,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005031-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005030-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005029-1-scaled.jpg,09/02/2024,14.0000000,15.0000000,48.6350630,-2.0557350,Planète Mer (antenne Dinard),Plage de Saint Enogat,,,,,,,,,, +N1,79565,Sortie #79565,https://biolit.fr/sorties/sortie-79565/,Royal Emeraude Hotel,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005031-2-scaled.jpg,09/02/2024,14.0000000,15.0000000,48.6350630,-2.0557350,Planète Mer (antenne Dinard),Saint Enogat,,,,,,,,,, +N1,79580,Sortie #79580,https://biolit.fr/sorties/sortie-79580/,Royal Emeraude Hotel,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902133440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134535-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902141809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902141853-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902143047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902143330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902144145-scaled.jpg,09/02/2024,14.0000000,15.0000000,48.6403330000000,-2.07271600000000,Planète Mer (antenne Dinard),SAINT ENOGAT,79597,Observation #79597,https://biolit.fr/observations/observation-79597/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902133440-scaled.jpg,,TRUE,Identifiable +N1,79580,Sortie #79580,https://biolit.fr/sorties/sortie-79580/,Royal Emeraude Hotel,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902133440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134535-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902141809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902141853-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902143047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902143330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902144145-scaled.jpg,09/02/2024,14.0000000,15.0000000,48.6403330000000,-2.07271600000000,Planète Mer (antenne Dinard),SAINT ENOGAT,79601,Observation #79601,https://biolit.fr/observations/observation-79601/,Symsagittifera roscoffensis,Ver plat de Roscoff,,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134226-scaled.jpg,,TRUE,Identifiable +N1,79580,Sortie #79580,https://biolit.fr/sorties/sortie-79580/,Royal Emeraude Hotel,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902133440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134535-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902141809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902141853-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902143047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902143330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902144145-scaled.jpg,09/02/2024,14.0000000,15.0000000,48.6403330000000,-2.07271600000000,Planète Mer (antenne Dinard),SAINT ENOGAT,79607,Observation #79607,https://biolit.fr/observations/observation-79607/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902141809-scaled.jpg,,TRUE,Identifiable +N1,79580,Sortie #79580,https://biolit.fr/sorties/sortie-79580/,Royal Emeraude Hotel,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902133440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134535-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902141809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902141853-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902143047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902143330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902144145-scaled.jpg,09/02/2024,14.0000000,15.0000000,48.6403330000000,-2.07271600000000,Planète Mer (antenne Dinard),SAINT ENOGAT,79609,Observation #79609,https://biolit.fr/observations/observation-79609/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142039-scaled.jpg,,TRUE,Identifiable +N1,79580,Sortie #79580,https://biolit.fr/sorties/sortie-79580/,Royal Emeraude Hotel,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902133440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134535-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902141809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902141853-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902143047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902143330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902144145-scaled.jpg,09/02/2024,14.0000000,15.0000000,48.6403330000000,-2.07271600000000,Planète Mer (antenne Dinard),SAINT ENOGAT,79615,Observation #79615,https://biolit.fr/observations/observation-79615/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902144145-scaled.jpg,,TRUE,Ne sais pas +N1,79580,Sortie #79580,https://biolit.fr/sorties/sortie-79580/,Royal Emeraude Hotel,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902133440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134535-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902141809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902141853-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902143047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902143330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902144145-scaled.jpg,09/02/2024,14.0000000,15.0000000,48.6403330000000,-2.07271600000000,Planète Mer (antenne Dinard),SAINT ENOGAT,79618,Observation #79618,https://biolit.fr/observations/observation-79618/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902143047-scaled.jpg,,,Ne sais pas +N1,79595,Sortie #79595,https://biolit.fr/sorties/sortie-79595/,Royal Emeraude Hotel,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005030-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005029-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005026-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005028-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005024-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005023-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005022-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005019-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005020-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005021-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005018-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005017-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005016-1-scaled.jpg,09/02/2024,14.0000000,15.0000000,48.6391870000000,-2.07271300000000,Planète Mer (antenne Dinard),Saint Enogat,,,,,,,,,, +N1,79612,Sortie #79612,https://biolit.fr/sorties/sortie-79612/,Royal Emeraude Hotel,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005031-3-scaled.jpg,09/02/2024,14.0000000,15.0000000,48.6337690000000,-2.09414000000000,Planète Mer (antenne Dinard),Saint Enogat,79614,Observation #79614,https://biolit.fr/observations/observation-79614/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005031-3-scaled.jpg,,TRUE,Identifiable +N1,79624,Sortie #79624,https://biolit.fr/sorties/sortie-79624/,Royal Emeraude Hotel,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005029-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005030-3-scaled.jpg,09/02/2024,14.0000000,15.0000000,48.6401950000000,-2.07418400000000,Planète Mer (antenne Dinard),Saint Enogat,79626,Observation #79626,https://biolit.fr/observations/observation-79626/,Botrylloides spp. (leachii violaceus diegensis),Botrylles,,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005029-3-scaled.jpg,,TRUE,Ne sais pas +N1,79631,Sortie #79631,https://biolit.fr/sorties/sortie-79631/,Royal Emeraude Hotel,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142450-1-scaled.jpg,09/02/2024,14.0000000,15.0000000,48.6401610000000,-2.07253900000000,Planète Mer (antenne Dinard),SAINT ENOGAT,,,,,,,,,, +N1,79634,Sortie #79634,https://biolit.fr/sorties/sortie-79634/,Royal Emeraude Hotel,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005030-4-scaled.jpg,09/02/2024,14.0000000,15.0000000,48.6392780000000,-2.07272500000000,Planète Mer (antenne Dinard),Saint Enogat,79636,Observation #79636,https://biolit.fr/observations/observation-79636/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005030-4-scaled.jpg,,TRUE,Identifiable +N1,79639,Sortie #79639,https://biolit.fr/sorties/sortie-79639/,Royal Emeraude Hotel,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142450-2-scaled.jpg,09/02/2024,14.0000000,15.0000000,48.6400940000000,-2.07244300000000,Planète Mer (antenne Dinard),SAINT ENOGAT,79641,Observation #79641,https://biolit.fr/observations/observation-79641/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142450-2-scaled.jpg,,TRUE,Identifiable +N1,79644,Sortie #79644,https://biolit.fr/sorties/sortie-79644/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/20240821_145224-scaled.jpg,8/21/2024 0:00,14.0000000,15.0000000,48.6943190000000,-1.89472300000000,Observe la nature,Plage de du Guesclin Saint Coulomb,,,,,,,,,, +N1,79647,Sortie #79647,https://biolit.fr/sorties/sortie-79647/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/20240821_151232-scaled.jpg,8/21/2024 0:00,14.0000000,15.0000000,48.6927250000000,-1.89561400000000,Observe la nature,Plage de du Guesclin Saint Coulomb,,,,,,,,,, +N1,79651,Sortie #79651,https://biolit.fr/sorties/sortie-79651/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/20240821_152045-REC-COMP-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/20240821_155215-REC-COMP-scaled.jpg,8/21/2024 0:00,14.0000000,15.0000000,48.6951040000000,-1.89544200000000,Observe la nature,Plage de du Guesclin Saint Coulomb,,,,,,,,,, +N1,79654,Sortie #79654,https://biolit.fr/sorties/sortie-79654/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/20240821_152045-REC-COMP-1-scaled.jpg,8/21/2024 0:00,14.0000000,16.0000000,48.6956710000000,-1.89552800000000,Observe la nature,Plage de du Guesclin Saint Coulomb,,,,,,,,,, +N1,79682,Sortie #79682,https://biolit.fr/sorties/sortie-79682/,Ligue de l'enseignement,https://biolit.fr/wp-content/uploads/jet-form-builder/53c37a35e4213448a6b3fbbb6ceddb5d/2024/09/APRIL-rotated.jpg,09/02/2024,8.0000000,9.0000000,47.2834540000000,-2.39484800000000,,La Baule,,,,,,,,,, +N1,79712,Sortie #79712,https://biolit.fr/sorties/sortie-79712/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/20240821_155215-REC-COMP-1-scaled.jpg,8/21/2024 0:00,14.0000000,16.0000000,48.6955010000000,-1.89587100000000,Observe la nature,Plage de du Guesclin Saint Coulomb,,,,,,,,,, +N1,79715,Sortie #79715,https://biolit.fr/sorties/sortie-79715/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P8250001-REC-COMP.jpg,8/23/2024 0:00,14.0000000,16.0000000,48.6939220000000,-1.89488400000000,Observe la nature,Plage de du Guesclin Saint Coulomb,,,,,,,,,, +N1,79719,Sortie #79719,https://biolit.fr/sorties/sortie-79719/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P8250002-REC-COMP.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P8250001-REC-COMP-1.jpg,8/25/2024 0:00,15.0000000,17.0000000,48.6962370000000,-1.89574200000000,Observe la nature,Plage de du Guesclin Saint Coulomb,79721,Observation #79721,https://biolit.fr/observations/observation-79721/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P8250001-REC-COMP-1.jpg,,TRUE,Identifiable +N1,79728,Sortie #79728,https://biolit.fr/sorties/sortie-79728/,Lebreton Betty,https://biolit.fr/wp-content/uploads/jet-form-builder/fbdbb43e679b55b54b95de2c48cd1c7e/2024/09/20240811_211252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fbdbb43e679b55b54b95de2c48cd1c7e/2024/09/20240811_211235-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fbdbb43e679b55b54b95de2c48cd1c7e/2024/09/20240811_120836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fbdbb43e679b55b54b95de2c48cd1c7e/2024/09/20240811_120832-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fbdbb43e679b55b54b95de2c48cd1c7e/2024/09/20240811_120824-scaled.jpg,08/11/2024,12.0000000,12.0000000,49.0609550000000,-1.57470000000000,,Montmartin sur mer,,,,,,,,,, +N1,79733,Sortie #79733,https://biolit.fr/sorties/sortie-79733/,Lebreton Betty,https://biolit.fr/wp-content/uploads/jet-form-builder/fbdbb43e679b55b54b95de2c48cd1c7e/2024/09/20240816_185752-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fbdbb43e679b55b54b95de2c48cd1c7e/2024/09/20240816_185840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fbdbb43e679b55b54b95de2c48cd1c7e/2024/09/20240813_174413-scaled.jpg,8/18/2024 0:00,18.0000000,19.0000000,49.0425720000000,-1.60062100000000,,Agon coutainville,,,,,,,,,, +N1,79739,Sortie #79739,https://biolit.fr/sorties/sortie-79739/,MEBARKI CELIA,https://biolit.fr/wp-content/uploads/jet-form-builder/11713ebc20259aa245dee014de84111b/2024/09/Monodonte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11713ebc20259aa245dee014de84111b/2024/09/Espece-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11713ebc20259aa245dee014de84111b/2024/09/Espece-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11713ebc20259aa245dee014de84111b/2024/09/Lance-de-quadrat.jpg,09/05/2024,14.0000000,15.0000000,48.6395360000000,-2.07219600000000,Planète Mer (antenne Dinard),Plage de saint ENOGAT,79741,Observation #79741,https://biolit.fr/observations/observation-79741/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/11713ebc20259aa245dee014de84111b/2024/09/Espece-2.jpg,,TRUE,Identifiable +N1,79739,Sortie #79739,https://biolit.fr/sorties/sortie-79739/,MEBARKI CELIA,https://biolit.fr/wp-content/uploads/jet-form-builder/11713ebc20259aa245dee014de84111b/2024/09/Monodonte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11713ebc20259aa245dee014de84111b/2024/09/Espece-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11713ebc20259aa245dee014de84111b/2024/09/Espece-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11713ebc20259aa245dee014de84111b/2024/09/Lance-de-quadrat.jpg,09/05/2024,14.0000000,15.0000000,48.6395360000000,-2.07219600000000,Planète Mer (antenne Dinard),Plage de saint ENOGAT,79743,Observation #79743,https://biolit.fr/observations/observation-79743/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/11713ebc20259aa245dee014de84111b/2024/09/Monodonte.jpg,,TRUE,Identifiable +N1,79739,Sortie #79739,https://biolit.fr/sorties/sortie-79739/,MEBARKI CELIA,https://biolit.fr/wp-content/uploads/jet-form-builder/11713ebc20259aa245dee014de84111b/2024/09/Monodonte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11713ebc20259aa245dee014de84111b/2024/09/Espece-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11713ebc20259aa245dee014de84111b/2024/09/Espece-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11713ebc20259aa245dee014de84111b/2024/09/Lance-de-quadrat.jpg,09/05/2024,14.0000000,15.0000000,48.6395360000000,-2.07219600000000,Planète Mer (antenne Dinard),Plage de saint ENOGAT,79745,Observation #79745,https://biolit.fr/observations/observation-79745/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/11713ebc20259aa245dee014de84111b/2024/09/Espece-3.jpg,,TRUE,Identifiable +N1,79749,Sortie #79749,https://biolit.fr/sorties/sortie-79749/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/458739248_553052040484156_8024497434131756055_n.jpg,8/27/2024 0:00,10.0000000,12.0000000,42.7330670000000,3.03739400000000,CPIE Littoral d'Occitanie,Sainte-Marie-la-Mer,,,,,,,,,, +N1,79756,Sortie #79756,https://biolit.fr/sorties/sortie-79756/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/09/IMG_20240905_165415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/09/IMG_20240905_165434-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/09/IMG_20240905_170207-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/09/IMG_20240905_170204-scaled.jpg,09/05/2024,17.0000000,17.0000000,48.6363990000000,-2.0818560000000,Planète Mer (antenne Dinard),port blanc,79758,Observation #79758,https://biolit.fr/observations/observation-79758/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/09/IMG_20240905_165415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/09/IMG_20240905_165434-scaled.jpg,,,Ne sais pas +N1,79756,Sortie #79756,https://biolit.fr/sorties/sortie-79756/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/09/IMG_20240905_165415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/09/IMG_20240905_165434-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/09/IMG_20240905_170207-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/09/IMG_20240905_170204-scaled.jpg,09/05/2024,17.0000000,17.0000000,48.6363990000000,-2.0818560000000,Planète Mer (antenne Dinard),port blanc,79760,Observation #79760,https://biolit.fr/observations/observation-79760/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/09/IMG_20240905_170204-scaled.jpg,,TRUE,Identifiable +N1,79756,Sortie #79756,https://biolit.fr/sorties/sortie-79756/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/09/IMG_20240905_165415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/09/IMG_20240905_165434-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/09/IMG_20240905_170207-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/09/IMG_20240905_170204-scaled.jpg,09/05/2024,17.0000000,17.0000000,48.6363990000000,-2.0818560000000,Planète Mer (antenne Dinard),port blanc,79762,Observation #79762,https://biolit.fr/observations/observation-79762/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/09/IMG_20240905_170207-scaled.jpg,,TRUE,Identifiable +N1,79766,Sortie #79766,https://biolit.fr/sorties/sortie-79766/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/09/00DCB6A0-59B6-4986-A840-F2C277C8E267.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/09/5A70F63C-0F07-48E8-A472-AAC29BD1FF3F.jpeg,09/06/2024,11.000005,0.0:22,43.1063380000000,5.94270200000000,,Anse Mistral ( Mourillon) Toulon 83,,,,,,,,,, +N1,79784,Sortie #79784,https://biolit.fr/sorties/sortie-79784/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111510088_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111629310_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111636717_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_113814339_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114137200_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114815012_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135805-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140107-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140938-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141323-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141610-scaled.jpg,8/14/2024 0:00,11.0000000,12.0000000,43.2577090000000,5.37573800000000,,Plage de l'Huveaune,79786,Observation #79786,https://biolit.fr/observations/observation-79786/,Teredo navalis,Taret commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111510088_HDR-rotated.jpg,,,Identifiable +N1,79784,Sortie #79784,https://biolit.fr/sorties/sortie-79784/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111510088_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111629310_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111636717_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_113814339_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114137200_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114815012_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135805-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140107-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140938-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141323-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141610-scaled.jpg,8/14/2024 0:00,11.0000000,12.0000000,43.2577090000000,5.37573800000000,,Plage de l'Huveaune,79788,Observation #79788,https://biolit.fr/observations/observation-79788/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111629310_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111636717_HDR.jpg,,,Identifiable +N1,79784,Sortie #79784,https://biolit.fr/sorties/sortie-79784/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111510088_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111629310_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111636717_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_113814339_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114137200_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114815012_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135805-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140107-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140938-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141323-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141610-scaled.jpg,8/14/2024 0:00,11.0000000,12.0000000,43.2577090000000,5.37573800000000,,Plage de l'Huveaune,79790,Observation #79790,https://biolit.fr/observations/observation-79790/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_113814339_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135638-scaled.jpg,,TRUE,Identifiable +N1,79784,Sortie #79784,https://biolit.fr/sorties/sortie-79784/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111510088_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111629310_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111636717_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_113814339_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114137200_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114815012_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135805-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140107-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140938-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141323-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141610-scaled.jpg,8/14/2024 0:00,11.0000000,12.0000000,43.2577090000000,5.37573800000000,,Plage de l'Huveaune,79792,Observation #79792,https://biolit.fr/observations/observation-79792/,Cardita calyculata,Cardite petit calice,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114137200_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114815012_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135805-scaled.jpg,,,Identifiable +N1,79784,Sortie #79784,https://biolit.fr/sorties/sortie-79784/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111510088_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111629310_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111636717_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_113814339_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114137200_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114815012_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135805-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140107-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140938-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141323-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141610-scaled.jpg,8/14/2024 0:00,11.0000000,12.0000000,43.2577090000000,5.37573800000000,,Plage de l'Huveaune,79794,Observation #79794,https://biolit.fr/observations/observation-79794/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114815012_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140107-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140156-scaled.jpg,,,Ne sais pas +N1,79784,Sortie #79784,https://biolit.fr/sorties/sortie-79784/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111510088_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111629310_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111636717_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_113814339_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114137200_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114815012_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135805-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140107-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140938-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141323-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141610-scaled.jpg,8/14/2024 0:00,11.0000000,12.0000000,43.2577090000000,5.37573800000000,,Plage de l'Huveaune,79796,Observation #79796,https://biolit.fr/observations/observation-79796/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140938-scaled.jpg,,,Ne sais pas +N1,79784,Sortie #79784,https://biolit.fr/sorties/sortie-79784/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111510088_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111629310_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111636717_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_113814339_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114137200_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114815012_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135805-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140107-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140938-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141323-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141610-scaled.jpg,8/14/2024 0:00,11.0000000,12.0000000,43.2577090000000,5.37573800000000,,Plage de l'Huveaune,79798,Observation #79798,https://biolit.fr/observations/observation-79798/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141323-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141344-scaled.jpg,,,Ne sais pas +N1,79784,Sortie #79784,https://biolit.fr/sorties/sortie-79784/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111510088_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111629310_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111636717_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_113814339_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114137200_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114815012_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135805-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140107-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140938-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141323-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141610-scaled.jpg,8/14/2024 0:00,11.0000000,12.0000000,43.2577090000000,5.37573800000000,,Plage de l'Huveaune,79800,Observation #79800,https://biolit.fr/observations/observation-79800/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141610-scaled.jpg,,,Ne sais pas +N1,79852,Sortie #79852,https://biolit.fr/sorties/sortie-79852/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/458739248_553052040484156_8024497434131756055_n-1.jpg,8/27/2024 0:00,10.0000000,12.0000000,42.7319750000000,3.03749100000000,LABELBLEU,Sainte-Marie-la-Mer,,,,,,,,,, +N1,79871,Sortie #79871,https://biolit.fr/sorties/sortie-79871/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_103751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_103823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104803-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104928-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104942-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141223-scaled.jpg,09/01/2024,10.0000000,12.0000000,43.2640840000000,5.36985000000000,,Plage du Grand Roucas Blanc - Prado Nord,79873,Observation #79873,https://biolit.fr/observations/observation-79873/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_103751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104928-scaled.jpg,,TRUE,Identifiable +N1,79871,Sortie #79871,https://biolit.fr/sorties/sortie-79871/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_103751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_103823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104803-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104928-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104942-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141223-scaled.jpg,09/01/2024,10.0000000,12.0000000,43.2640840000000,5.36985000000000,,Plage du Grand Roucas Blanc - Prado Nord,79875,Observation #79875,https://biolit.fr/observations/observation-79875/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104647-scaled.jpg,,,Identifiable +N1,79871,Sortie #79871,https://biolit.fr/sorties/sortie-79871/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_103751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_103823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104803-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104928-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104942-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141223-scaled.jpg,09/01/2024,10.0000000,12.0000000,43.2640840000000,5.36985000000000,,Plage du Grand Roucas Blanc - Prado Nord,79877,Observation #79877,https://biolit.fr/observations/observation-79877/,Caulerpa cylindracea,Caulerpe cylindracée,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104803-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104817-scaled.jpg,,TRUE,Identifiable +N1,79871,Sortie #79871,https://biolit.fr/sorties/sortie-79871/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_103751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_103823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104803-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104928-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104942-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141223-scaled.jpg,09/01/2024,10.0000000,12.0000000,43.2640840000000,5.36985000000000,,Plage du Grand Roucas Blanc - Prado Nord,79879,Observation #79879,https://biolit.fr/observations/observation-79879/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104942-scaled.jpg,,TRUE,Identifiable +N1,79871,Sortie #79871,https://biolit.fr/sorties/sortie-79871/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_103751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_103823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104803-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104928-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104942-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141223-scaled.jpg,09/01/2024,10.0000000,12.0000000,43.2640840000000,5.36985000000000,,Plage du Grand Roucas Blanc - Prado Nord,79881,Observation #79881,https://biolit.fr/observations/observation-79881/,Loripes orbiculatus,Loripes orbiculaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141223-scaled.jpg,,,Identifiable +N1,79871,Sortie #79871,https://biolit.fr/sorties/sortie-79871/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_103751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_103823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104803-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104928-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104942-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141223-scaled.jpg,09/01/2024,10.0000000,12.0000000,43.2640840000000,5.36985000000000,,Plage du Grand Roucas Blanc - Prado Nord,79883,Observation #79883,https://biolit.fr/observations/observation-79883/,Rhyssoplax olivacea,Chiton vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_103823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104228-scaled.jpg,,,Identifiable +N1,80003,Sortie #80003,https://biolit.fr/sorties/sortie-80003/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6714080000000,8.88312200000000,,Corse du sud Capu Laurosu,80005,Observation #80005,https://biolit.fr/observations/observation-80005/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-scaled.jpeg,,,Ne sais pas +N1,80003,Sortie #80003,https://biolit.fr/sorties/sortie-80003/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6714080000000,8.88312200000000,,Corse du sud Capu Laurosu,80007,Observation #80007,https://biolit.fr/observations/observation-80007/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-scaled.jpeg,,,Ne sais pas +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80031,Observation #80031,https://biolit.fr/observations/observation-80031/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80033,Observation #80033,https://biolit.fr/observations/observation-80033/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80035,Observation #80035,https://biolit.fr/observations/observation-80035/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80037,Observation #80037,https://biolit.fr/observations/observation-80037/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80039,Observation #80039,https://biolit.fr/observations/observation-80039/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80041,Observation #80041,https://biolit.fr/observations/observation-80041/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80043,Observation #80043,https://biolit.fr/observations/observation-80043/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80045,Observation #80045,https://biolit.fr/observations/observation-80045/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80047,Observation #80047,https://biolit.fr/observations/observation-80047/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80049,Observation #80049,https://biolit.fr/observations/observation-80049/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80051,Observation #80051,https://biolit.fr/observations/observation-80051/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80053,Observation #80053,https://biolit.fr/observations/observation-80053/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80055,Observation #80055,https://biolit.fr/observations/observation-80055/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80057,Observation #80057,https://biolit.fr/observations/observation-80057/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80059,Observation #80059,https://biolit.fr/observations/observation-80059/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80061,Observation #80061,https://biolit.fr/observations/observation-80061/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg,,TRUE, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80063,Observation #80063,https://biolit.fr/observations/observation-80063/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80065,Observation #80065,https://biolit.fr/observations/observation-80065/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80067,Observation #80067,https://biolit.fr/observations/observation-80067/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80069,Observation #80069,https://biolit.fr/observations/observation-80069/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80071,Observation #80071,https://biolit.fr/observations/observation-80071/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,,, +N1,80074,Sortie #80074,https://biolit.fr/sorties/sortie-80074/,Le B Myr,https://biolit.fr/wp-content/uploads/jet-form-builder/b1e5fc59839d749d07b0c750dec60b4f/2024/09/1000009435.jpg,9/14/2024 0:00,15.0000000,15.0:35,48.6845340000000,-1.97369700000000,,"Plage du val, Saint Malo",,,,,,,,,, +N1,80106,Sortie #80106,https://biolit.fr/sorties/sortie-80106/,HEYRIES Aurélie,https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3025-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3027-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3031-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3033-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3037.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3038.jpeg,9/17/2024 0:00,10.0000000,12.0000000,43.4935180000000,4.12296300000000,,Plage de l’Espiguette,,,,,,,,,, +N1,80114,Sortie #80114,https://biolit.fr/sorties/sortie-80114/,HEYRIES Aurélie,https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3025-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3027-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3031-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3033-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3037-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3038-1.jpeg,9/17/2024 0:00,10.0000000,12.0000000,43.4969930000000,4.12090300000000,,Espiguette,80116,Observation #80116,https://biolit.fr/observations/observation-80116/,Larus michahellis,Goéland leucophée,,https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3025-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3027-1-scaled.jpeg,,TRUE,Ne sais pas +N1,80123,Sortie #80123,https://biolit.fr/sorties/sortie-80123/,HEYRIES Aurélie,https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3051-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3048-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3047-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3049.jpeg,9/17/2024 0:00,14.0000000,16.0000000,43.5269560000000,4.1391630000000,,Grau du roi,80125,Observation #80125,https://biolit.fr/observations/observation-80125/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3051-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3048-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3047-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3049.jpeg,,TRUE,Ne sais pas +N1,80426,Sortie #80426,https://biolit.fr/sorties/sortie-80426/,Vidon Julie,https://biolit.fr/wp-content/uploads/jet-form-builder/446301764fefa32fea202f489ee4809d/2024/09/IMG_0037-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/446301764fefa32fea202f489ee4809d/2024/09/IMG_0034-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/446301764fefa32fea202f489ee4809d/2024/09/IMG_0032-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/446301764fefa32fea202f489ee4809d/2024/09/image-scaled.jpg,09/12/2024,8.0:15,9.0:15,48.6495650000000,-2.03032500000000,,Plage du bon secours st malo,,,,,,,,,, +N1,80433,Sortie #80433,https://biolit.fr/sorties/sortie-80433/,Vidon Julie,https://biolit.fr/wp-content/uploads/jet-form-builder/446301764fefa32fea202f489ee4809d/2024/09/IMG_0032-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/446301764fefa32fea202f489ee4809d/2024/09/IMG_0034-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/446301764fefa32fea202f489ee4809d/2024/09/IMG_0037-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/446301764fefa32fea202f489ee4809d/2024/09/image-1-scaled.jpg,09/12/2024,8.0:15,9.0:15,48.6491390000000,-2.03036800000000,,Plage bon secours st malo,,,,,,,,,, +N1,80472,Sortie #80472,https://biolit.fr/sorties/sortie-80472/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180059-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180066-scaled.jpg,9/18/2024 0:00,14.0000000,16.0000000,48.6968850000000,-1.89722300000000,Observe la nature,Plage Du Guesclin,80474,Observation #80474,https://biolit.fr/observations/observation-80474/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180018-scaled.jpg,,TRUE,Identifiable +N1,80485,Sortie #80485,https://biolit.fr/sorties/sortie-80485/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180020-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180032-1-scaled.jpg,9/18/2024 0:00,14.0000000,16.0000000,48.6971240000000,-1.89693300000000,Observe la nature,Plage Du Guesclin,80487,Observation #80487,https://biolit.fr/observations/observation-80487/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180020-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180022-scaled.jpg,,TRUE,Identifiable +N1,80485,Sortie #80485,https://biolit.fr/sorties/sortie-80485/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180020-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180032-1-scaled.jpg,9/18/2024 0:00,14.0000000,16.0000000,48.6971240000000,-1.89693300000000,Observe la nature,Plage Du Guesclin,80489,Observation #80489,https://biolit.fr/observations/observation-80489/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180032-1-scaled.jpg,,TRUE,Ne sais pas +N1,80506,Sortie #80506,https://biolit.fr/sorties/sortie-80506/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180034-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180035-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180036-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180040-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180041-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180042-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180044-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180055-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180056-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180059-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180060-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180063-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180066-1-scaled.jpg,9/18/2024 0:00,14.0000000,16.0000000,48.6971380000000,-1.89725500000000,Observe la nature,Plage Du Guesclin,80508,Observation #80508,https://biolit.fr/observations/observation-80508/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180034-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180035-1-scaled.jpg,,TRUE,Identifiable +N1,80506,Sortie #80506,https://biolit.fr/sorties/sortie-80506/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180034-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180035-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180036-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180040-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180041-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180042-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180044-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180055-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180056-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180059-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180060-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180063-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180066-1-scaled.jpg,9/18/2024 0:00,14.0000000,16.0000000,48.6971380000000,-1.89725500000000,Observe la nature,Plage Du Guesclin,80510,Observation #80510,https://biolit.fr/observations/observation-80510/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180036-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180037-scaled.jpg,,TRUE,Identifiable +N1,80506,Sortie #80506,https://biolit.fr/sorties/sortie-80506/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180034-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180035-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180036-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180040-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180041-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180042-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180044-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180055-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180056-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180059-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180060-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180063-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180066-1-scaled.jpg,9/18/2024 0:00,14.0000000,16.0000000,48.6971380000000,-1.89725500000000,Observe la nature,Plage Du Guesclin,80512,Observation #80512,https://biolit.fr/observations/observation-80512/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180040-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180041-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180042-1-scaled.jpg,,TRUE,Ne sais pas +N1,80506,Sortie #80506,https://biolit.fr/sorties/sortie-80506/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180034-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180035-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180036-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180040-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180041-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180042-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180044-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180055-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180056-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180059-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180060-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180063-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180066-1-scaled.jpg,9/18/2024 0:00,14.0000000,16.0000000,48.6971380000000,-1.89725500000000,Observe la nature,Plage Du Guesclin,80514,Observation #80514,https://biolit.fr/observations/observation-80514/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180044-1-scaled.jpg,,TRUE, +N1,80506,Sortie #80506,https://biolit.fr/sorties/sortie-80506/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180034-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180035-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180036-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180040-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180041-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180042-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180044-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180055-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180056-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180059-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180060-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180063-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180066-1-scaled.jpg,9/18/2024 0:00,14.0000000,16.0000000,48.6971380000000,-1.89725500000000,Observe la nature,Plage Du Guesclin,80517,Observation #80517,https://biolit.fr/observations/observation-80517/,Electra pilosa,Ecorce pileuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180055-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180056-1-scaled.jpg,,TRUE,Ne sais pas +N1,80506,Sortie #80506,https://biolit.fr/sorties/sortie-80506/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180034-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180035-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180036-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180040-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180041-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180042-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180044-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180055-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180056-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180059-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180060-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180063-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180066-1-scaled.jpg,9/18/2024 0:00,14.0000000,16.0000000,48.6971380000000,-1.89725500000000,Observe la nature,Plage Du Guesclin,80519,Observation #80519,https://biolit.fr/observations/observation-80519/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180059-1-scaled.jpg,,TRUE,Identifiable +N1,80506,Sortie #80506,https://biolit.fr/sorties/sortie-80506/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180034-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180035-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180036-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180040-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180041-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180042-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180044-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180055-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180056-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180059-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180060-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180063-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180066-1-scaled.jpg,9/18/2024 0:00,14.0000000,16.0000000,48.6971380000000,-1.89725500000000,Observe la nature,Plage Du Guesclin,80523,Observation #80523,https://biolit.fr/observations/observation-80523/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180063-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180064-scaled.jpg,,,Ne sais pas +N1,80506,Sortie #80506,https://biolit.fr/sorties/sortie-80506/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180034-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180035-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180036-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180040-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180041-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180042-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180044-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180055-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180056-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180059-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180060-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180063-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180066-1-scaled.jpg,9/18/2024 0:00,14.0000000,16.0000000,48.6971380000000,-1.89725500000000,Observe la nature,Plage Du Guesclin,80525,Observation #80525,https://biolit.fr/observations/observation-80525/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180060-1-scaled.jpg,,TRUE,Identifiable +N1,80506,Sortie #80506,https://biolit.fr/sorties/sortie-80506/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180034-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180035-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180036-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180040-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180041-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180042-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180044-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180055-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180056-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180059-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180060-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180063-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180066-1-scaled.jpg,9/18/2024 0:00,14.0000000,16.0000000,48.6971380000000,-1.89725500000000,Observe la nature,Plage Du Guesclin,80527,Observation #80527,https://biolit.fr/observations/observation-80527/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180066-1-scaled.jpg,,,Ne sais pas +N1,80567,Sortie #80567,https://biolit.fr/sorties/sortie-80567/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190008-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190032-scaled.jpg,9/19/2024 0:00,15.0000000,16.0000000,48.6968830000000,-1.8969980000000,Observe la nature,Plage Du Guesclin saint coulomb,80569,Observation #80569,https://biolit.fr/observations/observation-80569/,Pagurus prideaux,Gonfaron,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190008-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190018-scaled.jpg,,TRUE,Ne sais pas +N1,80567,Sortie #80567,https://biolit.fr/sorties/sortie-80567/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190008-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190032-scaled.jpg,9/19/2024 0:00,15.0000000,16.0000000,48.6968830000000,-1.8969980000000,Observe la nature,Plage Du Guesclin saint coulomb,80571,Observation #80571,https://biolit.fr/observations/observation-80571/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190021-scaled.jpg,,,Ne sais pas +N1,80567,Sortie #80567,https://biolit.fr/sorties/sortie-80567/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190008-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190032-scaled.jpg,9/19/2024 0:00,15.0000000,16.0000000,48.6968830000000,-1.8969980000000,Observe la nature,Plage Du Guesclin saint coulomb,80573,Observation #80573,https://biolit.fr/observations/observation-80573/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190027-scaled.jpg,,,Ne sais pas +N1,80567,Sortie #80567,https://biolit.fr/sorties/sortie-80567/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190008-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190032-scaled.jpg,9/19/2024 0:00,15.0000000,16.0000000,48.6968830000000,-1.8969980000000,Observe la nature,Plage Du Guesclin saint coulomb,80575,Observation #80575,https://biolit.fr/observations/observation-80575/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190032-scaled.jpg,,TRUE,Identifiable +N1,80651,Sortie #80651,https://biolit.fr/sorties/sortie-80651/,MichelB,https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/C4E5B354-42C5-40B2-8E51-0B34EA38EE9C-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/5A508085-955A-471D-A73C-1C2D1AF64F0E-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/8DFB1027-B614-4B1C-BE4E-FCAD427AD0DB-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/66403253-AE98-4031-8110-8F348E05F103-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/0E1B008B-1EA5-45D7-A7A3-FB161A77D3C8-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/128F5635-1267-4946-81DD-5C723DE9038C-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/0EE96B79-7C41-48CA-85CC-F90B0607EA3B-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/71DACC5E-8010-453F-B9FC-D7F038BFE536-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/EC599DE9-A5EC-41D1-B95A-846F397BB552-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/3300A3EA-527F-4977-A4A7-F136C635177D-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/70B44358-ED1A-4FB7-B092-B6884FD1730B-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/F849F861-2A3F-4113-9CAD-535493FF086F-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/B3F0D7B2-2CA0-400B-9212-14D92DC47D86-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/071863DF-734A-41DA-82B5-634EFDF14EC0-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/CECB6C47-E75B-4E4D-B103-9EDB6D40D050-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/51B3E2A5-7F65-41CB-8C6B-4C79DD30000B-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/6D374415-EAB3-4587-9F3F-791D57152F60-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/0EF01B48-9B31-45F9-A6B7-74B22215DB57-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/11171473-B0F7-4A3B-8C3D-4B5CC3DA5E4A-scaled.jpeg,8/21/2024 0:00,18.0:45,20.0:45,49.8657770000000,0.608368000000000,,Veulette sur mer,,,,,,,,,, +N1,80655,Sortie #80655,https://biolit.fr/sorties/sortie-80655/,BARELIER SARAH,https://biolit.fr/wp-content/uploads/jet-form-builder/4a906aed122a4f3d01e7b5d15e6d1ac2/2024/09/IMG_3440-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/4a906aed122a4f3d01e7b5d15e6d1ac2/2024/09/IMG_3439-scaled.jpeg,9/21/2024 0:00,9.0000000,10.0000000,43.214886,5.342952,Planète Mer,Anse de la maronnaise,80657,Observation #80657,https://biolit.fr/observations/observation-80657/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/4a906aed122a4f3d01e7b5d15e6d1ac2/2024/09/IMG_3440-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/4a906aed122a4f3d01e7b5d15e6d1ac2/2024/09/IMG_3439-scaled.jpeg,,FALSE,Ne sais pas +N1,80655,Sortie #80655,https://biolit.fr/sorties/sortie-80655/,BARELIER SARAH,https://biolit.fr/wp-content/uploads/jet-form-builder/4a906aed122a4f3d01e7b5d15e6d1ac2/2024/09/IMG_3440-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/4a906aed122a4f3d01e7b5d15e6d1ac2/2024/09/IMG_3439-scaled.jpeg,9/21/2024 0:00,9.0000000,10.0000000,43.214886,5.342952,Planète Mer,Anse de la maronnaise,89085,Observation #89085,https://biolit.fr/observations/observation-89085/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/4a906aed122a4f3d01e7b5d15e6d1ac2/2024/09/IMG_3439-scaled.jpeg,,FALSE,Ne sais pas +N1,80750,Sortie #80750,https://biolit.fr/sorties/sortie-80750/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240914_192312-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240914_192326-scaled.jpg,9/14/2024 0:00,19.0000000,19.0000000,43.1291300000000,5.78067600000000,,Sanary-sur-Mer,80752,Observation #80752,https://biolit.fr/observations/observation-80752/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240914_192312-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240914_192326-scaled.jpg,,TRUE,Identifiable +N1,80905,Sortie #80905,https://biolit.fr/sorties/sortie-80905/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100846289_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100915500_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102656584_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102708727-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_103045147_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_104329501_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105243743_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105456295_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105506611-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105703758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105716792-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110312581_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110811810_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111643452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111703732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_112003174_HDR-rotated.jpg,9/22/2024 0:00,10.0000000,12.0000000,43.2587710000000,5.3756300000000,,Plage de l'Huveaune,80907,Observation #80907,https://biolit.fr/observations/observation-80907/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0636-scaled.jpg,,TRUE,Identifiable +N1,80905,Sortie #80905,https://biolit.fr/sorties/sortie-80905/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100846289_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100915500_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102656584_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102708727-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_103045147_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_104329501_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105243743_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105456295_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105506611-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105703758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105716792-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110312581_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110811810_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111643452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111703732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_112003174_HDR-rotated.jpg,9/22/2024 0:00,10.0000000,12.0000000,43.2587710000000,5.3756300000000,,Plage de l'Huveaune,80909,Observation #80909,https://biolit.fr/observations/observation-80909/,Corbicula fluminea,Corbicule asiatique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115411-scaled.jpg,,,Identifiable +N1,80905,Sortie #80905,https://biolit.fr/sorties/sortie-80905/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100846289_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100915500_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102656584_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102708727-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_103045147_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_104329501_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105243743_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105456295_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105506611-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105703758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105716792-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110312581_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110811810_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111643452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111703732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_112003174_HDR-rotated.jpg,9/22/2024 0:00,10.0000000,12.0000000,43.2587710000000,5.3756300000000,,Plage de l'Huveaune,80911,Observation #80911,https://biolit.fr/observations/observation-80911/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100846289_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100915500_HDR-scaled.jpg,,,Identifiable +N1,80905,Sortie #80905,https://biolit.fr/sorties/sortie-80905/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100846289_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100915500_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102656584_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102708727-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_103045147_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_104329501_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105243743_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105456295_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105506611-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105703758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105716792-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110312581_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110811810_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111643452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111703732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_112003174_HDR-rotated.jpg,9/22/2024 0:00,10.0000000,12.0000000,43.2587710000000,5.3756300000000,,Plage de l'Huveaune,80913,Observation #80913,https://biolit.fr/observations/observation-80913/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102656584_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102708727-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111643452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110312581_HDR-scaled.jpg,,,Identifiable +N1,80905,Sortie #80905,https://biolit.fr/sorties/sortie-80905/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100846289_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100915500_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102656584_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102708727-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_103045147_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_104329501_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105243743_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105456295_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105506611-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105703758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105716792-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110312581_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110811810_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111643452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111703732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_112003174_HDR-rotated.jpg,9/22/2024 0:00,10.0000000,12.0000000,43.2587710000000,5.3756300000000,,Plage de l'Huveaune,80915,Observation #80915,https://biolit.fr/observations/observation-80915/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_103045147_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_104329501_HDR-scaled.jpg,,TRUE,Identifiable +N1,80905,Sortie #80905,https://biolit.fr/sorties/sortie-80905/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100846289_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100915500_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102656584_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102708727-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_103045147_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_104329501_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105243743_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105456295_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105506611-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105703758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105716792-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110312581_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110811810_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111643452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111703732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_112003174_HDR-rotated.jpg,9/22/2024 0:00,10.0000000,12.0000000,43.2587710000000,5.3756300000000,,Plage de l'Huveaune,80917,Observation #80917,https://biolit.fr/observations/observation-80917/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105243743_HDR-scaled.jpg,,TRUE,Identifiable +N1,80905,Sortie #80905,https://biolit.fr/sorties/sortie-80905/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100846289_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100915500_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102656584_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102708727-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_103045147_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_104329501_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105243743_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105456295_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105506611-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105703758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105716792-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110312581_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110811810_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111643452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111703732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_112003174_HDR-rotated.jpg,9/22/2024 0:00,10.0000000,12.0000000,43.2587710000000,5.3756300000000,,Plage de l'Huveaune,80919,Observation #80919,https://biolit.fr/observations/observation-80919/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105456295_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105506611-rotated.jpg,,,Identifiable +N1,80905,Sortie #80905,https://biolit.fr/sorties/sortie-80905/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100846289_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100915500_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102656584_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102708727-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_103045147_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_104329501_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105243743_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105456295_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105506611-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105703758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105716792-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110312581_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110811810_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111643452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111703732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_112003174_HDR-rotated.jpg,9/22/2024 0:00,10.0000000,12.0000000,43.2587710000000,5.3756300000000,,Plage de l'Huveaune,80921,Observation #80921,https://biolit.fr/observations/observation-80921/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105703758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105716792-scaled.jpg,,TRUE,Identifiable +N1,80905,Sortie #80905,https://biolit.fr/sorties/sortie-80905/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100846289_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100915500_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102656584_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102708727-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_103045147_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_104329501_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105243743_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105456295_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105506611-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105703758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105716792-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110312581_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110811810_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111643452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111703732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_112003174_HDR-rotated.jpg,9/22/2024 0:00,10.0000000,12.0000000,43.2587710000000,5.3756300000000,,Plage de l'Huveaune,80923,Observation #80923,https://biolit.fr/observations/observation-80923/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110811810_HDR.jpg,,,Identifiable +N1,80905,Sortie #80905,https://biolit.fr/sorties/sortie-80905/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100846289_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100915500_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102656584_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102708727-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_103045147_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_104329501_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105243743_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105456295_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105506611-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105703758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105716792-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110312581_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110811810_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111643452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111703732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_112003174_HDR-rotated.jpg,9/22/2024 0:00,10.0000000,12.0000000,43.2587710000000,5.3756300000000,,Plage de l'Huveaune,80925,Observation #80925,https://biolit.fr/observations/observation-80925/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111703732-scaled.jpg,,TRUE,Identifiable +N1,80905,Sortie #80905,https://biolit.fr/sorties/sortie-80905/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100846289_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100915500_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102656584_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102708727-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_103045147_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_104329501_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105243743_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105456295_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105506611-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105703758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105716792-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110312581_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110811810_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111643452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111703732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_112003174_HDR-rotated.jpg,9/22/2024 0:00,10.0000000,12.0000000,43.2587710000000,5.3756300000000,,Plage de l'Huveaune,80927,Observation #80927,https://biolit.fr/observations/observation-80927/,Loripes orbiculatus,Loripes orbiculaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_112003174_HDR-rotated.jpg,,,Identifiable +N1,80931,Sortie #80931,https://biolit.fr/sorties/sortie-80931/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_113639888_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115814560_HDR-scaled.jpg,9/22/2024 0:00,10.0000000,12.0000000,43.2586370000000,5.37562400000000,,Plage de l'Huveaune,80933,Observation #80933,https://biolit.fr/observations/observation-80933/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_113639888_HDR-scaled.jpg,,,Identifiable +N1,80931,Sortie #80931,https://biolit.fr/sorties/sortie-80931/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_113639888_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115814560_HDR-scaled.jpg,9/22/2024 0:00,10.0000000,12.0000000,43.2586370000000,5.37562400000000,,Plage de l'Huveaune,80935,Observation #80935,https://biolit.fr/observations/observation-80935/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115814560_HDR-scaled.jpg,,,Identifiable +N1,81003,Sortie #81003,https://biolit.fr/sorties/sortie-81003/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0026.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0028.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0032.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0037.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0045.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0047.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0049.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0051.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0053.jpg,9/21/2024 0:00,10.0000000,11.0000000,43.5526630000000,4.01011200000000,LABELBLEU,Plage du Petit travers,81007,Observation #81007,https://biolit.fr/observations/observation-81007/,Polititapes aureus,Palourde jaune,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0004.jpg,,,Identifiable +N1,81003,Sortie #81003,https://biolit.fr/sorties/sortie-81003/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0026.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0028.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0032.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0037.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0045.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0047.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0049.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0051.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0053.jpg,9/21/2024 0:00,10.0000000,11.0000000,43.5526630000000,4.01011200000000,LABELBLEU,Plage du Petit travers,81009,Observation #81009,https://biolit.fr/observations/observation-81009/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0005.jpg,,TRUE,Identifiable +N1,81003,Sortie #81003,https://biolit.fr/sorties/sortie-81003/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0026.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0028.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0032.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0037.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0045.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0047.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0049.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0051.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0053.jpg,9/21/2024 0:00,10.0000000,11.0000000,43.5526630000000,4.01011200000000,LABELBLEU,Plage du Petit travers,81011,Observation #81011,https://biolit.fr/observations/observation-81011/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0007.jpg,,TRUE,Identifiable +N1,81035,Sortie #81035,https://biolit.fr/sorties/sortie-81035/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0012-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0028-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0029-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0032-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0037-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0045-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0047-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0049-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0051-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0053-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0022.jpg,9/21/2024 0:00,10.0000000,11.0000000,43.5527560000000,4.01019800000000,LABELBLEU,Plage du Petit travers,81037,Observation #81037,https://biolit.fr/observations/observation-81037/,Fabulina fabula,Telline striée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0015.jpg,,,Identifiable +N1,81035,Sortie #81035,https://biolit.fr/sorties/sortie-81035/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0012-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0028-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0029-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0032-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0037-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0045-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0047-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0049-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0051-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0053-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0022.jpg,9/21/2024 0:00,10.0000000,11.0000000,43.5527560000000,4.01019800000000,LABELBLEU,Plage du Petit travers,81039,Observation #81039,https://biolit.fr/observations/observation-81039/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0018.jpg,,TRUE,Identifiable +N1,81035,Sortie #81035,https://biolit.fr/sorties/sortie-81035/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0012-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0028-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0029-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0032-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0037-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0045-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0047-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0049-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0051-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0053-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0022.jpg,9/21/2024 0:00,10.0000000,11.0000000,43.5527560000000,4.01019800000000,LABELBLEU,Plage du Petit travers,81043,Observation #81043,https://biolit.fr/observations/observation-81043/,Scrobicularia plana,Scrobiculaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0053-1.jpg,,,Identifiable +N1,81052,Sortie #81052,https://biolit.fr/sorties/sortie-81052/,Serra Maria,https://biolit.fr/wp-content/uploads/jet-form-builder/279e94bca62f912ce7aec21fa0cb7610/2024/09/IMG_1382.jpeg,8/24/2024 0:00,9.0000000,12.0000000,43.2898080000000,5.34865700000000,,Digue des Catalans,81054,Observation #81054,https://biolit.fr/observations/observation-81054/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/279e94bca62f912ce7aec21fa0cb7610/2024/09/IMG_1382.jpeg,,TRUE, +N1,81062,Sortie #81062,https://biolit.fr/sorties/sortie-81062/,AILERONS,https://biolit.fr/wp-content/uploads/jet-form-builder/104a3ad0debfd3bf7c7f67cd28f4351b/2024/09/20240928_104658-scaled.jpg,9/28/2024 0:00,9.0000000,10.0:15,43.52509100000,3.92843900000000,Ailerons,"Plage des coquilles, Palavas-les-Flots",81064,Observation #81064,https://biolit.fr/observations/observation-81064/,Callinectes sapidus,Crabe bleu américain,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/104a3ad0debfd3bf7c7f67cd28f4351b/2024/09/20240928_104658-scaled.jpg,,TRUE,Identifiable +N1,81077,Sortie #81077,https://biolit.fr/sorties/sortie-81077/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20240927-WA0084.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20240927-WA0027-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20240927-WA0006-1.jpg,9/21/2024 0:00,10.0000000,11.0000000,43.5526630000000,4.00989700000000,,Plage du Petit travers,81079,Observation #81079,https://biolit.fr/observations/observation-81079/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20240927-WA0084.jpg,,,Ne sais pas +N1,81077,Sortie #81077,https://biolit.fr/sorties/sortie-81077/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20240927-WA0084.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20240927-WA0027-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20240927-WA0006-1.jpg,9/21/2024 0:00,10.0000000,11.0000000,43.5526630000000,4.00989700000000,,Plage du Petit travers,81081,Observation #81081,https://biolit.fr/observations/observation-81081/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20240927-WA0027-1.jpg,,,Identifiable +N1,81077,Sortie #81077,https://biolit.fr/sorties/sortie-81077/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20240927-WA0084.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20240927-WA0027-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20240927-WA0006-1.jpg,9/21/2024 0:00,10.0000000,11.0000000,43.5526630000000,4.00989700000000,,Plage du Petit travers,81083,Observation #81083,https://biolit.fr/observations/observation-81083/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20240927-WA0006-1.jpg,,,Identifiable +N1,81086,Sortie #81086,https://biolit.fr/sorties/sortie-81086/,Dufraine Catherine,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2024/10/P_20240924_151235-scaled.jpg,9/26/2024 0:00,10.0000000,15.0000000,44.6620320000000,-1.17132500000000,,Arcachon,81088,Observation #81088,https://biolit.fr/observations/observation-81088/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2024/10/P_20240924_151235-scaled.jpg,,,Ne sais pas +N1,81096,Sortie #81096,https://biolit.fr/sorties/sortie-81096/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/petoncle2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/lutraire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/x.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/couteau.jpg,9/21/2024 0:00,10.0000000,11.0000000,43.5527560000000,4.01005800000000,LABELBLEU,Plage du Petit travers,81106,Observation #81106,https://biolit.fr/observations/observation-81106/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/couteau.jpg,,,Ne sais pas +N1,81096,Sortie #81096,https://biolit.fr/sorties/sortie-81096/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/petoncle2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/lutraire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/x.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/couteau.jpg,9/21/2024 0:00,10.0000000,11.0000000,43.5527560000000,4.01005800000000,LABELBLEU,Plage du Petit travers,81108,Observation #81108,https://biolit.fr/observations/observation-81108/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/patelle.jpg,,TRUE,Identifiable +N1,81096,Sortie #81096,https://biolit.fr/sorties/sortie-81096/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/petoncle2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/lutraire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/x.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/couteau.jpg,9/21/2024 0:00,10.0000000,11.0000000,43.5527560000000,4.01005800000000,LABELBLEU,Plage du Petit travers,81110,Observation #81110,https://biolit.fr/observations/observation-81110/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/lutraire.jpg,,,Ne sais pas +N1,81096,Sortie #81096,https://biolit.fr/sorties/sortie-81096/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/petoncle2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/lutraire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/x.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/couteau.jpg,9/21/2024 0:00,10.0000000,11.0000000,43.5527560000000,4.01005800000000,LABELBLEU,Plage du Petit travers,81112,Observation #81112,https://biolit.fr/observations/observation-81112/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/petoncle2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/x.jpg,,,Identifiable +N1,81096,Sortie #81096,https://biolit.fr/sorties/sortie-81096/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/petoncle2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/lutraire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/x.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/couteau.jpg,9/21/2024 0:00,10.0000000,11.0000000,43.5527560000000,4.01005800000000,LABELBLEU,Plage du Petit travers,81114,Observation #81114,https://biolit.fr/observations/observation-81114/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/x.jpg,,,Ne sais pas +N1,81100,Sortie #81100,https://biolit.fr/sorties/sortie-81100/,Dufraine Catherine,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2024/10/P_20240924_153522-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2024/10/P_20240924_151301-scaled.jpg,9/26/2024 0:00,10.0000000,15.0000000,44.6648910000000,-1.16798400000000,,Arcachon,81102,Observation #81102,https://biolit.fr/observations/observation-81102/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2024/10/P_20240924_153522-scaled.jpg,,,Ne sais pas +N1,81100,Sortie #81100,https://biolit.fr/sorties/sortie-81100/,Dufraine Catherine,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2024/10/P_20240924_153522-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2024/10/P_20240924_151301-scaled.jpg,9/26/2024 0:00,10.0000000,15.0000000,44.6648910000000,-1.16798400000000,,Arcachon,81104,Observation #81104,https://biolit.fr/observations/observation-81104/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2024/10/P_20240924_151301-scaled.jpg,,,Ne sais pas +N1,81248,Sortie #81248,https://biolit.fr/sorties/sortie-81248/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/gibule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/huitre-creuse-scaled.jpg,10/02/2024,14.0:45,16.0000000,48.7024260000000,-1.84813900000000,,Rochers de la plage de Port Mer,81250,Observation #81250,https://biolit.fr/observations/observation-81250/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Anemone-solaire-scaled.jpg,,TRUE,Identifiable +N1,81248,Sortie #81248,https://biolit.fr/sorties/sortie-81248/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/gibule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/huitre-creuse-scaled.jpg,10/02/2024,14.0:45,16.0000000,48.7024260000000,-1.84813900000000,,Rochers de la plage de Port Mer,81252,Observation #81252,https://biolit.fr/observations/observation-81252/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-verte-scaled.jpg,,TRUE,Identifiable +N1,81248,Sortie #81248,https://biolit.fr/sorties/sortie-81248/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/gibule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/huitre-creuse-scaled.jpg,10/02/2024,14.0:45,16.0000000,48.7024260000000,-1.84813900000000,,Rochers de la plage de Port Mer,81254,Observation #81254,https://biolit.fr/observations/observation-81254/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-scaled.jpg,,,Ne sais pas +N1,81248,Sortie #81248,https://biolit.fr/sorties/sortie-81248/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/gibule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/huitre-creuse-scaled.jpg,10/02/2024,14.0:45,16.0000000,48.7024260000000,-1.84813900000000,,Rochers de la plage de Port Mer,81256,Observation #81256,https://biolit.fr/observations/observation-81256/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/bigorneau-scaled.jpg,,TRUE,Identifiable +N1,81248,Sortie #81248,https://biolit.fr/sorties/sortie-81248/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/gibule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/huitre-creuse-scaled.jpg,10/02/2024,14.0:45,16.0000000,48.7024260000000,-1.84813900000000,,Rochers de la plage de Port Mer,81258,Observation #81258,https://biolit.fr/observations/observation-81258/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/chiton-scaled.jpg,,,Identifiable +N1,81248,Sortie #81248,https://biolit.fr/sorties/sortie-81248/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/gibule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/huitre-creuse-scaled.jpg,10/02/2024,14.0:45,16.0000000,48.7024260000000,-1.84813900000000,,Rochers de la plage de Port Mer,81260,Observation #81260,https://biolit.fr/observations/observation-81260/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-porcellane-scaled.jpg,,TRUE,Identifiable +N1,81248,Sortie #81248,https://biolit.fr/sorties/sortie-81248/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/gibule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/huitre-creuse-scaled.jpg,10/02/2024,14.0:45,16.0000000,48.7024260000000,-1.84813900000000,,Rochers de la plage de Port Mer,81262,Observation #81262,https://biolit.fr/observations/observation-81262/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-vert-scaled.jpg,,TRUE,Ne sais pas +N1,81248,Sortie #81248,https://biolit.fr/sorties/sortie-81248/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/gibule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/huitre-creuse-scaled.jpg,10/02/2024,14.0:45,16.0000000,48.7024260000000,-1.84813900000000,,Rochers de la plage de Port Mer,81265,Observation #81265,https://biolit.fr/observations/observation-81265/,Crangon crangon,Crevette grise européenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crevette-grise-scaled.jpg,,,Identifiable +N1,81248,Sortie #81248,https://biolit.fr/sorties/sortie-81248/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/gibule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/huitre-creuse-scaled.jpg,10/02/2024,14.0:45,16.0000000,48.7024260000000,-1.84813900000000,,Rochers de la plage de Port Mer,81267,Observation #81267,https://biolit.fr/observations/observation-81267/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/gibule-scaled.jpg,,TRUE,Identifiable +N1,81248,Sortie #81248,https://biolit.fr/sorties/sortie-81248/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/gibule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/huitre-creuse-scaled.jpg,10/02/2024,14.0:45,16.0000000,48.7024260000000,-1.84813900000000,,Rochers de la plage de Port Mer,81269,Observation #81269,https://biolit.fr/observations/observation-81269/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/hermelles-scaled.jpg,,TRUE,Identifiable +N1,81248,Sortie #81248,https://biolit.fr/sorties/sortie-81248/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/gibule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/huitre-creuse-scaled.jpg,10/02/2024,14.0:45,16.0000000,48.7024260000000,-1.84813900000000,,Rochers de la plage de Port Mer,81271,Observation #81271,https://biolit.fr/observations/observation-81271/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/huitre-creuse-scaled.jpg,,TRUE,Identifiable +N1,81248,Sortie #81248,https://biolit.fr/sorties/sortie-81248/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/gibule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/huitre-creuse-scaled.jpg,10/02/2024,14.0:45,16.0000000,48.7024260000000,-1.84813900000000,,Rochers de la plage de Port Mer,81273,Observation #81273,https://biolit.fr/observations/observation-81273/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/eponge-orange-scaled.jpg,,,Identifiable +N1,81282,Sortie #81282,https://biolit.fr/sorties/sortie-81282/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Nereis-multicolor-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/tourteau-scaled.jpg,10/02/2024,14.0:45,16.0:58,48.7024490000000,-1.84812800000000,,Rochers de la plage de Port Mer,81284,Observation #81284,https://biolit.fr/observations/observation-81284/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/moule-scaled.jpg,,TRUE,Identifiable +N1,81282,Sortie #81282,https://biolit.fr/sorties/sortie-81282/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Nereis-multicolor-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/tourteau-scaled.jpg,10/02/2024,14.0:45,16.0:58,48.7024490000000,-1.84812800000000,,Rochers de la plage de Port Mer,81286,Observation #81286,https://biolit.fr/observations/observation-81286/,Hediste diversicolor,Néréis multicolore,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Nereis-multicolor-scaled.jpg,,TRUE,Identifiable +N1,81282,Sortie #81282,https://biolit.fr/sorties/sortie-81282/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Nereis-multicolor-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/tourteau-scaled.jpg,10/02/2024,14.0:45,16.0:58,48.7024490000000,-1.84812800000000,,Rochers de la plage de Port Mer,81288,Observation #81288,https://biolit.fr/observations/observation-81288/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/nerophis-scaled.jpg,,TRUE,Identifiable +N1,81282,Sortie #81282,https://biolit.fr/sorties/sortie-81282/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Nereis-multicolor-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/tourteau-scaled.jpg,10/02/2024,14.0:45,16.0:58,48.7024490000000,-1.84812800000000,,Rochers de la plage de Port Mer,81290,Observation #81290,https://biolit.fr/observations/observation-81290/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/palourde-scaled.jpg,,,Identifiable +N1,81282,Sortie #81282,https://biolit.fr/sorties/sortie-81282/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Nereis-multicolor-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/tourteau-scaled.jpg,10/02/2024,14.0:45,16.0:58,48.7024490000000,-1.84812800000000,,Rochers de la plage de Port Mer,81292,Observation #81292,https://biolit.fr/observations/observation-81292/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/patelle-scaled.jpg,,TRUE,Identifiable +N1,81282,Sortie #81282,https://biolit.fr/sorties/sortie-81282/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Nereis-multicolor-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/tourteau-scaled.jpg,10/02/2024,14.0:45,16.0:58,48.7024490000000,-1.84812800000000,,Rochers de la plage de Port Mer,81294,Observation #81294,https://biolit.fr/observations/observation-81294/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/pourpre-scaled.jpg,,TRUE,Identifiable +N1,81282,Sortie #81282,https://biolit.fr/sorties/sortie-81282/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Nereis-multicolor-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/tourteau-scaled.jpg,10/02/2024,14.0:45,16.0:58,48.7024490000000,-1.84812800000000,,Rochers de la plage de Port Mer,81296,Observation #81296,https://biolit.fr/observations/observation-81296/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/tourteau-scaled.jpg,,TRUE,Identifiable +N1,81311,Sortie #81311,https://biolit.fr/sorties/sortie-81311/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_141555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_141621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_141837-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142425-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142921-scaled.jpg,10/05/2024,13.0000000,14.0000000,43.2112310000000,5.42275700000000,,Port de Sormiou,81313,Observation #81313,https://biolit.fr/observations/observation-81313/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_141555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_141621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142026-scaled.jpg,,,Identifiable +N1,81311,Sortie #81311,https://biolit.fr/sorties/sortie-81311/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_141555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_141621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_141837-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142425-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142921-scaled.jpg,10/05/2024,13.0000000,14.0000000,43.2112310000000,5.42275700000000,,Port de Sormiou,81315,Observation #81315,https://biolit.fr/observations/observation-81315/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_141837-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142425-scaled.jpg,,,Identifiable +N1,81311,Sortie #81311,https://biolit.fr/sorties/sortie-81311/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_141555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_141621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_141837-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142425-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142921-scaled.jpg,10/05/2024,13.0000000,14.0000000,43.2112310000000,5.42275700000000,,Port de Sormiou,81317,Observation #81317,https://biolit.fr/observations/observation-81317/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142230-scaled.jpg,,TRUE,Identifiable +N1,81311,Sortie #81311,https://biolit.fr/sorties/sortie-81311/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_141555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_141621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_141837-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142425-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142921-scaled.jpg,10/05/2024,13.0000000,14.0000000,43.2112310000000,5.42275700000000,,Port de Sormiou,81319,Observation #81319,https://biolit.fr/observations/observation-81319/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142921-scaled.jpg,,TRUE,Identifiable +N1,81324,Sortie #81324,https://biolit.fr/sorties/sortie-81324/,AIEJE,https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/10/IMG_6700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/10/IMG_6701-scaled.jpg,09/10/2024,10.0000000,12.0000000,43.3339320000000,5.19775700000000,AIEJE,plage pebraire,,,,,,,,,, +N1,81378,Sortie #81378,https://biolit.fr/sorties/sortie-81378/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-3D6A661D-FFE8-44C8-8B7B-1C6FDF200104-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-6D9FCE3A-6340-4194-8987-B2D02891BD81-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8A77C198-6430-4056-9C18-4F443F3D94E6-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8BA0029B-0E8E-4CE8-BF05-4E1EFA577D92-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-54D7F7FF-FA1C-4AC0-8C47-C98B632B05DC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-108DF8F6-0E70-45DE-A7EF-99D1F287F769-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-556FE20B-F065-49BF-AC5A-94328A0DE9CC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8959E438-0722-4F00-9BB1-4028885232C0-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-999531BA-291C-43CD-AB87-443CDBC22619-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-D9B45CC2-CB8C-48DB-BDBF-EB0931711412-scaled.jpeg,10/08/2024,9.0000000,16.0000000,46.4650630000000,-1.73272800000000,,L'Anse aux Moines - 85 LES SABLES D'OLONNE,81380,Observation #81380,https://biolit.fr/observations/observation-81380/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8A77C198-6430-4056-9C18-4F443F3D94E6-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8959E438-0722-4F00-9BB1-4028885232C0-scaled.jpeg,,,Identifiable +N1,81378,Sortie #81378,https://biolit.fr/sorties/sortie-81378/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-3D6A661D-FFE8-44C8-8B7B-1C6FDF200104-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-6D9FCE3A-6340-4194-8987-B2D02891BD81-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8A77C198-6430-4056-9C18-4F443F3D94E6-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8BA0029B-0E8E-4CE8-BF05-4E1EFA577D92-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-54D7F7FF-FA1C-4AC0-8C47-C98B632B05DC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-108DF8F6-0E70-45DE-A7EF-99D1F287F769-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-556FE20B-F065-49BF-AC5A-94328A0DE9CC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8959E438-0722-4F00-9BB1-4028885232C0-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-999531BA-291C-43CD-AB87-443CDBC22619-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-D9B45CC2-CB8C-48DB-BDBF-EB0931711412-scaled.jpeg,10/08/2024,9.0000000,16.0000000,46.4650630000000,-1.73272800000000,,L'Anse aux Moines - 85 LES SABLES D'OLONNE,81382,Observation #81382,https://biolit.fr/observations/observation-81382/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8BA0029B-0E8E-4CE8-BF05-4E1EFA577D92-scaled.jpeg,,TRUE,Identifiable +N1,81378,Sortie #81378,https://biolit.fr/sorties/sortie-81378/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-3D6A661D-FFE8-44C8-8B7B-1C6FDF200104-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-6D9FCE3A-6340-4194-8987-B2D02891BD81-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8A77C198-6430-4056-9C18-4F443F3D94E6-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8BA0029B-0E8E-4CE8-BF05-4E1EFA577D92-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-54D7F7FF-FA1C-4AC0-8C47-C98B632B05DC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-108DF8F6-0E70-45DE-A7EF-99D1F287F769-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-556FE20B-F065-49BF-AC5A-94328A0DE9CC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8959E438-0722-4F00-9BB1-4028885232C0-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-999531BA-291C-43CD-AB87-443CDBC22619-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-D9B45CC2-CB8C-48DB-BDBF-EB0931711412-scaled.jpeg,10/08/2024,9.0000000,16.0000000,46.4650630000000,-1.73272800000000,,L'Anse aux Moines - 85 LES SABLES D'OLONNE,81384,Observation #81384,https://biolit.fr/observations/observation-81384/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-54D7F7FF-FA1C-4AC0-8C47-C98B632B05DC-scaled.jpeg,,,Identifiable +N1,81378,Sortie #81378,https://biolit.fr/sorties/sortie-81378/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-3D6A661D-FFE8-44C8-8B7B-1C6FDF200104-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-6D9FCE3A-6340-4194-8987-B2D02891BD81-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8A77C198-6430-4056-9C18-4F443F3D94E6-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8BA0029B-0E8E-4CE8-BF05-4E1EFA577D92-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-54D7F7FF-FA1C-4AC0-8C47-C98B632B05DC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-108DF8F6-0E70-45DE-A7EF-99D1F287F769-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-556FE20B-F065-49BF-AC5A-94328A0DE9CC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8959E438-0722-4F00-9BB1-4028885232C0-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-999531BA-291C-43CD-AB87-443CDBC22619-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-D9B45CC2-CB8C-48DB-BDBF-EB0931711412-scaled.jpeg,10/08/2024,9.0000000,16.0000000,46.4650630000000,-1.73272800000000,,L'Anse aux Moines - 85 LES SABLES D'OLONNE,81386,Observation #81386,https://biolit.fr/observations/observation-81386/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-108DF8F6-0E70-45DE-A7EF-99D1F287F769-scaled.jpeg,,,Identifiable +N1,81378,Sortie #81378,https://biolit.fr/sorties/sortie-81378/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-3D6A661D-FFE8-44C8-8B7B-1C6FDF200104-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-6D9FCE3A-6340-4194-8987-B2D02891BD81-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8A77C198-6430-4056-9C18-4F443F3D94E6-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8BA0029B-0E8E-4CE8-BF05-4E1EFA577D92-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-54D7F7FF-FA1C-4AC0-8C47-C98B632B05DC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-108DF8F6-0E70-45DE-A7EF-99D1F287F769-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-556FE20B-F065-49BF-AC5A-94328A0DE9CC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8959E438-0722-4F00-9BB1-4028885232C0-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-999531BA-291C-43CD-AB87-443CDBC22619-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-D9B45CC2-CB8C-48DB-BDBF-EB0931711412-scaled.jpeg,10/08/2024,9.0000000,16.0000000,46.4650630000000,-1.73272800000000,,L'Anse aux Moines - 85 LES SABLES D'OLONNE,81388,Observation #81388,https://biolit.fr/observations/observation-81388/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-D9B45CC2-CB8C-48DB-BDBF-EB0931711412-scaled.jpeg,,,Identifiable +N1,81378,Sortie #81378,https://biolit.fr/sorties/sortie-81378/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-3D6A661D-FFE8-44C8-8B7B-1C6FDF200104-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-6D9FCE3A-6340-4194-8987-B2D02891BD81-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8A77C198-6430-4056-9C18-4F443F3D94E6-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8BA0029B-0E8E-4CE8-BF05-4E1EFA577D92-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-54D7F7FF-FA1C-4AC0-8C47-C98B632B05DC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-108DF8F6-0E70-45DE-A7EF-99D1F287F769-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-556FE20B-F065-49BF-AC5A-94328A0DE9CC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8959E438-0722-4F00-9BB1-4028885232C0-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-999531BA-291C-43CD-AB87-443CDBC22619-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-D9B45CC2-CB8C-48DB-BDBF-EB0931711412-scaled.jpeg,10/08/2024,9.0000000,16.0000000,46.4650630000000,-1.73272800000000,,L'Anse aux Moines - 85 LES SABLES D'OLONNE,81390,Observation #81390,https://biolit.fr/observations/observation-81390/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-3D6A661D-FFE8-44C8-8B7B-1C6FDF200104-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-6D9FCE3A-6340-4194-8987-B2D02891BD81-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-556FE20B-F065-49BF-AC5A-94328A0DE9CC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-999531BA-291C-43CD-AB87-443CDBC22619-scaled.jpeg,,,Ne sais pas +N1,81410,Sortie #81410,https://biolit.fr/sorties/sortie-81410/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164204.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_143906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145147-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145559-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145717-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145821-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150413-scaled.jpg,9/22/2024 0:00,10.0000000,11.0000000,43.2581520000000,5.37567800000000,,Plage de l'Huveaune,81412,Observation #81412,https://biolit.fr/observations/observation-81412/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164204.jpg,,,Ne sais pas +N1,81410,Sortie #81410,https://biolit.fr/sorties/sortie-81410/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164204.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_143906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145147-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145559-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145717-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145821-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150413-scaled.jpg,9/22/2024 0:00,10.0000000,11.0000000,43.2581520000000,5.37567800000000,,Plage de l'Huveaune,81414,Observation #81414,https://biolit.fr/observations/observation-81414/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164513.jpg,,,Ne sais pas +N1,81410,Sortie #81410,https://biolit.fr/sorties/sortie-81410/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164204.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_143906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145147-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145559-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145717-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145821-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150413-scaled.jpg,9/22/2024 0:00,10.0000000,11.0000000,43.2581520000000,5.37567800000000,,Plage de l'Huveaune,81416,Observation #81416,https://biolit.fr/observations/observation-81416/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_143906-scaled.jpg,,,Identifiable +N1,81410,Sortie #81410,https://biolit.fr/sorties/sortie-81410/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164204.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_143906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145147-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145559-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145717-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145821-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150413-scaled.jpg,9/22/2024 0:00,10.0000000,11.0000000,43.2581520000000,5.37567800000000,,Plage de l'Huveaune,81418,Observation #81418,https://biolit.fr/observations/observation-81418/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145147-scaled.jpg,,,Identifiable +N1,81410,Sortie #81410,https://biolit.fr/sorties/sortie-81410/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164204.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_143906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145147-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145559-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145717-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145821-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150413-scaled.jpg,9/22/2024 0:00,10.0000000,11.0000000,43.2581520000000,5.37567800000000,,Plage de l'Huveaune,81420,Observation #81420,https://biolit.fr/observations/observation-81420/,Tritia corniculum,Tritia corniculum,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145326-scaled.jpg,,,Identifiable +N1,81410,Sortie #81410,https://biolit.fr/sorties/sortie-81410/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164204.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_143906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145147-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145559-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145717-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145821-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150413-scaled.jpg,9/22/2024 0:00,10.0000000,11.0000000,43.2581520000000,5.37567800000000,,Plage de l'Huveaune,81422,Observation #81422,https://biolit.fr/observations/observation-81422/,Polititapes aureus,Palourde jaune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145451-scaled.jpg,,,Identifiable +N1,81410,Sortie #81410,https://biolit.fr/sorties/sortie-81410/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164204.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_143906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145147-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145559-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145717-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145821-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150413-scaled.jpg,9/22/2024 0:00,10.0000000,11.0000000,43.2581520000000,5.37567800000000,,Plage de l'Huveaune,81424,Observation #81424,https://biolit.fr/observations/observation-81424/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145559-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145630-scaled.jpg,,,Identifiable +N1,81410,Sortie #81410,https://biolit.fr/sorties/sortie-81410/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164204.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_143906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145147-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145559-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145717-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145821-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150413-scaled.jpg,9/22/2024 0:00,10.0000000,11.0000000,43.2581520000000,5.37567800000000,,Plage de l'Huveaune,81426,Observation #81426,https://biolit.fr/observations/observation-81426/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145717-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145821-scaled.jpg,,,Ne sais pas +N1,81410,Sortie #81410,https://biolit.fr/sorties/sortie-81410/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164204.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_143906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145147-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145559-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145717-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145821-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150413-scaled.jpg,9/22/2024 0:00,10.0000000,11.0000000,43.2581520000000,5.37567800000000,,Plage de l'Huveaune,81428,Observation #81428,https://biolit.fr/observations/observation-81428/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150330-scaled.jpg,,,Identifiable +N1,81410,Sortie #81410,https://biolit.fr/sorties/sortie-81410/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164204.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_143906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145147-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145559-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145717-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145821-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150413-scaled.jpg,9/22/2024 0:00,10.0000000,11.0000000,43.2581520000000,5.37567800000000,,Plage de l'Huveaune,81430,Observation #81430,https://biolit.fr/observations/observation-81430/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150413-scaled.jpg,,,Identifiable +N1,81442,Sortie #81442,https://biolit.fr/sorties/sortie-81442/,Martinez Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011756-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011753-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011737-scaled.jpg,10/10/2024,14.0000000,17.0000000,43.3474740000000,5.02551500000000,,Ponteau,81444,Observation #81444,https://biolit.fr/observations/observation-81444/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011753-scaled.jpg,,TRUE,Identifiable +N1,81442,Sortie #81442,https://biolit.fr/sorties/sortie-81442/,Martinez Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011756-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011753-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011737-scaled.jpg,10/10/2024,14.0000000,17.0000000,43.3474740000000,5.02551500000000,,Ponteau,81446,Observation #81446,https://biolit.fr/observations/observation-81446/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011751-scaled.jpg,,TRUE,Identifiable +N1,81442,Sortie #81442,https://biolit.fr/sorties/sortie-81442/,Martinez Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011756-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011753-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011737-scaled.jpg,10/10/2024,14.0000000,17.0000000,43.3474740000000,5.02551500000000,,Ponteau,81448,Observation #81448,https://biolit.fr/observations/observation-81448/,Mesembryanthemum nodiflorum,Ficoïde à fleurs nodales,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011738-scaled.jpg,,,Identifiable +N1,81442,Sortie #81442,https://biolit.fr/sorties/sortie-81442/,Martinez Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011756-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011753-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011737-scaled.jpg,10/10/2024,14.0000000,17.0000000,43.3474740000000,5.02551500000000,,Ponteau,81450,Observation #81450,https://biolit.fr/observations/observation-81450/,Ligia italica,Ligie italienne,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011756-scaled.jpg,,TRUE,Identifiable +N1,81442,Sortie #81442,https://biolit.fr/sorties/sortie-81442/,Martinez Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011756-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011753-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011737-scaled.jpg,10/10/2024,14.0000000,17.0000000,43.3474740000000,5.02551500000000,,Ponteau,81452,Observation #81452,https://biolit.fr/observations/observation-81452/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011737-scaled.jpg,,,Ne sais pas +N1,81479,Sortie #81479,https://biolit.fr/sorties/sortie-81479/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9557-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9556-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9555-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9554.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9553.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9552.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9550-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9549-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9546-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9547-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9544-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9543-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9542.jpeg,10/08/2024,9.0000000,14.0000000,46.4652900000000,-1.73137700000000,,Les Sables D’Olonne,,,,,,,,,, +N1,81512,Sortie #81512,https://biolit.fr/sorties/sortie-81512/,Marec Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2024/10/DSC_0232-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2024/10/DSC_0234-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2024/10/DSC_0237-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2024/10/DSC_0243-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2024/10/DSC_0253-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2024/10/DSC_0260-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2024/10/DSC_0263-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2024/10/DSC_0272-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2024/10/DSC_0273-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2024/10/DSC_0276-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2024/10/DSC_0278-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2024/10/DSC_0279-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2024/10/DSC_0282-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2024/10/DSC_0283-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2024/10/DSC_0284-1.jpg,10/11/2024,9.0000000,12.0000000,484851,32632,PEP 22,Bassin du Lenn Louannec,,,,,,,,,, +N1,81518,Sortie #81518,https://biolit.fr/sorties/sortie-81518/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9542-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9543-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9544-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9546-1-scaled.jpeg,10/08/2024,9.0000000,14.0000000,46.4638680000000,-1.73178400000000,,Les Sables D’Olonne,81520,Observation #81520,https://biolit.fr/observations/observation-81520/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9542-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9543-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9544-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9546-1-scaled.jpeg,,,Ne sais pas +N1,81518,Sortie #81518,https://biolit.fr/sorties/sortie-81518/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9542-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9543-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9544-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9546-1-scaled.jpeg,10/08/2024,9.0000000,14.0000000,46.4638680000000,-1.73178400000000,,Les Sables D’Olonne,81522,Observation #81522,https://biolit.fr/observations/observation-81522/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9543-1-scaled.jpeg,,,Ne sais pas +N1,81518,Sortie #81518,https://biolit.fr/sorties/sortie-81518/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9542-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9543-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9544-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9546-1-scaled.jpeg,10/08/2024,9.0000000,14.0000000,46.4638680000000,-1.73178400000000,,Les Sables D’Olonne,81524,Observation #81524,https://biolit.fr/observations/observation-81524/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9544-1-scaled.jpeg,,TRUE,Ne sais pas +N1,81518,Sortie #81518,https://biolit.fr/sorties/sortie-81518/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9542-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9543-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9544-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9546-1-scaled.jpeg,10/08/2024,9.0000000,14.0000000,46.4638680000000,-1.73178400000000,,Les Sables D’Olonne,81526,Observation #81526,https://biolit.fr/observations/observation-81526/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9546-1-scaled.jpeg,,TRUE,Ne sais pas +N1,81536,Sortie #81536,https://biolit.fr/sorties/sortie-81536/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9549-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9550-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9552-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9553-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9554-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9557-1-scaled.jpeg,10/08/2024,9.0000000,14.0000000,46.4638980000000,-1.73177400000000,,Les Sables D’Olonne,81538,Observation #81538,https://biolit.fr/observations/observation-81538/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9549-1-scaled.jpeg,,TRUE,Ne sais pas +N1,81536,Sortie #81536,https://biolit.fr/sorties/sortie-81536/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9549-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9550-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9552-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9553-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9554-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9557-1-scaled.jpeg,10/08/2024,9.0000000,14.0000000,46.4638980000000,-1.73177400000000,,Les Sables D’Olonne,81540,Observation #81540,https://biolit.fr/observations/observation-81540/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9550-1-scaled.jpeg,,TRUE,Ne sais pas +N1,81536,Sortie #81536,https://biolit.fr/sorties/sortie-81536/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9549-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9550-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9552-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9553-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9554-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9557-1-scaled.jpeg,10/08/2024,9.0000000,14.0000000,46.4638980000000,-1.73177400000000,,Les Sables D’Olonne,81542,Observation #81542,https://biolit.fr/observations/observation-81542/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9552-1.jpeg,,,Ne sais pas +N1,81536,Sortie #81536,https://biolit.fr/sorties/sortie-81536/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9549-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9550-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9552-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9553-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9554-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9557-1-scaled.jpeg,10/08/2024,9.0000000,14.0000000,46.4638980000000,-1.73177400000000,,Les Sables D’Olonne,81544,Observation #81544,https://biolit.fr/observations/observation-81544/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9553-1.jpeg,,TRUE,Ne sais pas +N1,81536,Sortie #81536,https://biolit.fr/sorties/sortie-81536/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9549-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9550-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9552-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9553-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9554-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9557-1-scaled.jpeg,10/08/2024,9.0000000,14.0000000,46.4638980000000,-1.73177400000000,,Les Sables D’Olonne,81546,Observation #81546,https://biolit.fr/observations/observation-81546/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9554-1.jpeg,,,Ne sais pas +N1,81536,Sortie #81536,https://biolit.fr/sorties/sortie-81536/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9549-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9550-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9552-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9553-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9554-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9557-1-scaled.jpeg,10/08/2024,9.0000000,14.0000000,46.4638980000000,-1.73177400000000,,Les Sables D’Olonne,81548,Observation #81548,https://biolit.fr/observations/observation-81548/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9555-1-scaled.jpeg,,TRUE,Ne sais pas +N1,81536,Sortie #81536,https://biolit.fr/sorties/sortie-81536/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9549-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9550-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9552-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9553-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9554-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9557-1-scaled.jpeg,10/08/2024,9.0000000,14.0000000,46.4638980000000,-1.73177400000000,,Les Sables D’Olonne,81550,Observation #81550,https://biolit.fr/observations/observation-81550/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9556-1-scaled.jpeg,,,Ne sais pas +N1,81536,Sortie #81536,https://biolit.fr/sorties/sortie-81536/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9549-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9550-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9552-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9553-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9554-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9557-1-scaled.jpeg,10/08/2024,9.0000000,14.0000000,46.4638980000000,-1.73177400000000,,Les Sables D’Olonne,81552,Observation #81552,https://biolit.fr/observations/observation-81552/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9557-1-scaled.jpeg,,,Ne sais pas +N1,81574,Sortie #81574,https://biolit.fr/sorties/sortie-81574/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_095853258_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_105126668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112846321_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112901070_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113343320_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113459390_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152247-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152415-scaled.jpg,9/28/2024 0:00,10.0000000,12.0000000,43.2400060000000,5.36253800000000,,Plage de l’Anse du Bain des Dames,81576,Observation #81576,https://biolit.fr/observations/observation-81576/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_095853258_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_105126668_HDR-rotated.jpg,,TRUE,Identifiable +N1,81574,Sortie #81574,https://biolit.fr/sorties/sortie-81574/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_095853258_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_105126668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112846321_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112901070_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113343320_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113459390_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152247-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152415-scaled.jpg,9/28/2024 0:00,10.0000000,12.0000000,43.2400060000000,5.36253800000000,,Plage de l’Anse du Bain des Dames,81578,Observation #81578,https://biolit.fr/observations/observation-81578/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112846321_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152329-scaled.jpg,,TRUE,Identifiable +N1,81574,Sortie #81574,https://biolit.fr/sorties/sortie-81574/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_095853258_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_105126668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112846321_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112901070_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113343320_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113459390_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152247-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152415-scaled.jpg,9/28/2024 0:00,10.0000000,12.0000000,43.2400060000000,5.36253800000000,,Plage de l’Anse du Bain des Dames,81580,Observation #81580,https://biolit.fr/observations/observation-81580/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112901070_HDR-scaled.jpg,,TRUE,Identifiable +N1,81574,Sortie #81574,https://biolit.fr/sorties/sortie-81574/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_095853258_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_105126668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112846321_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112901070_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113343320_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113459390_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152247-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152415-scaled.jpg,9/28/2024 0:00,10.0000000,12.0000000,43.2400060000000,5.36253800000000,,Plage de l’Anse du Bain des Dames,81582,Observation #81582,https://biolit.fr/observations/observation-81582/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113343320_HDR-scaled.jpg,,TRUE,Identifiable +N1,81574,Sortie #81574,https://biolit.fr/sorties/sortie-81574/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_095853258_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_105126668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112846321_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112901070_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113343320_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113459390_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152247-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152415-scaled.jpg,9/28/2024 0:00,10.0000000,12.0000000,43.2400060000000,5.36253800000000,,Plage de l’Anse du Bain des Dames,81584,Observation #81584,https://biolit.fr/observations/observation-81584/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113459390_HDR-scaled.jpg,,TRUE,Identifiable +N1,81574,Sortie #81574,https://biolit.fr/sorties/sortie-81574/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_095853258_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_105126668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112846321_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112901070_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113343320_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113459390_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152247-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152415-scaled.jpg,9/28/2024 0:00,10.0000000,12.0000000,43.2400060000000,5.36253800000000,,Plage de l’Anse du Bain des Dames,81586,Observation #81586,https://biolit.fr/observations/observation-81586/,Euthria cornea,Buccin veiné,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152046-scaled.jpg,,TRUE,Identifiable +N1,81574,Sortie #81574,https://biolit.fr/sorties/sortie-81574/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_095853258_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_105126668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112846321_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112901070_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113343320_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113459390_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152247-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152415-scaled.jpg,9/28/2024 0:00,10.0000000,12.0000000,43.2400060000000,5.36253800000000,,Plage de l’Anse du Bain des Dames,81588,Observation #81588,https://biolit.fr/observations/observation-81588/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152247-scaled.jpg,,,Identifiable +N1,81574,Sortie #81574,https://biolit.fr/sorties/sortie-81574/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_095853258_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_105126668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112846321_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112901070_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113343320_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113459390_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152247-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152415-scaled.jpg,9/28/2024 0:00,10.0000000,12.0000000,43.2400060000000,5.36253800000000,,Plage de l’Anse du Bain des Dames,81590,Observation #81590,https://biolit.fr/observations/observation-81590/,Muricopsis cristata,Murex à crêtes,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152415-scaled.jpg,,,Ne sais pas +N1,81616,Sortie #81616,https://biolit.fr/sorties/sortie-81616/,DE PINTO Magali,https://biolit.fr/wp-content/uploads/jet-form-builder/ea8dab3790d482dfb19b766a675629b0/2024/10/IMG_7659-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea8dab3790d482dfb19b766a675629b0/2024/10/IMG_7660-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea8dab3790d482dfb19b766a675629b0/2024/10/IMG_7661-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea8dab3790d482dfb19b766a675629b0/2024/10/IMG_7662-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea8dab3790d482dfb19b766a675629b0/2024/10/IMG_7663-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea8dab3790d482dfb19b766a675629b0/2024/10/IMG_7664-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea8dab3790d482dfb19b766a675629b0/2024/10/IMG_7665-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea8dab3790d482dfb19b766a675629b0/2024/10/IMG_7666-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea8dab3790d482dfb19b766a675629b0/2024/10/IMG_7667-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea8dab3790d482dfb19b766a675629b0/2024/10/IMG_7668-scaled.jpg,10/11/2024,10.0000000,11.0000000,43.5164890000000,7.40148900000000,,PLAGE DU FORTIN,,,,,,,,,, +N1,81674,Sortie #81674,https://biolit.fr/sorties/sortie-81674/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462261220_1001653471975558_7274567837076352452_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462264968_913441010662237_7947987078519342599_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462446750_1978449599265001_8669635310921526051_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462463865_2929190627239807_7236267491793487617_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462542988_1532287667457219_5972689518930143587_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543028_1972897539805151_7941190656694056078_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543036_2711979872337520_8965268542753602924_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462547331_1295864501578344_4688693891697285433_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462548344_563493672922609_8360533780669361875_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462549920_922071173172559_6454230092849074383_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462555469_1247356476311743_3184433366080332740_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462568268_1592756751320957_2806831230250578603_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462585760_1280859549993194_6208195224904657434_n.jpg,10/12/2024,9.0000000,12.0000000,42.7669070000000,3.0383230000000,LABELBLEU,Plage du centre,81676,Observation #81676,https://biolit.fr/observations/observation-81676/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462463865_2929190627239807_7236267491793487617_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462585760_1280859549993194_6208195224904657434_n.jpg,,,Identifiable +N1,81674,Sortie #81674,https://biolit.fr/sorties/sortie-81674/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462261220_1001653471975558_7274567837076352452_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462264968_913441010662237_7947987078519342599_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462446750_1978449599265001_8669635310921526051_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462463865_2929190627239807_7236267491793487617_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462542988_1532287667457219_5972689518930143587_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543028_1972897539805151_7941190656694056078_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543036_2711979872337520_8965268542753602924_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462547331_1295864501578344_4688693891697285433_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462548344_563493672922609_8360533780669361875_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462549920_922071173172559_6454230092849074383_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462555469_1247356476311743_3184433366080332740_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462568268_1592756751320957_2806831230250578603_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462585760_1280859549993194_6208195224904657434_n.jpg,10/12/2024,9.0000000,12.0000000,42.7669070000000,3.0383230000000,LABELBLEU,Plage du centre,81678,Observation #81678,https://biolit.fr/observations/observation-81678/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462446750_1978449599265001_8669635310921526051_n.jpg,,TRUE,Identifiable +N1,81674,Sortie #81674,https://biolit.fr/sorties/sortie-81674/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462261220_1001653471975558_7274567837076352452_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462264968_913441010662237_7947987078519342599_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462446750_1978449599265001_8669635310921526051_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462463865_2929190627239807_7236267491793487617_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462542988_1532287667457219_5972689518930143587_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543028_1972897539805151_7941190656694056078_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543036_2711979872337520_8965268542753602924_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462547331_1295864501578344_4688693891697285433_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462548344_563493672922609_8360533780669361875_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462549920_922071173172559_6454230092849074383_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462555469_1247356476311743_3184433366080332740_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462568268_1592756751320957_2806831230250578603_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462585760_1280859549993194_6208195224904657434_n.jpg,10/12/2024,9.0000000,12.0000000,42.7669070000000,3.0383230000000,LABELBLEU,Plage du centre,81680,Observation #81680,https://biolit.fr/observations/observation-81680/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462542988_1532287667457219_5972689518930143587_n.jpg,,TRUE,Identifiable +N1,81674,Sortie #81674,https://biolit.fr/sorties/sortie-81674/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462261220_1001653471975558_7274567837076352452_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462264968_913441010662237_7947987078519342599_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462446750_1978449599265001_8669635310921526051_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462463865_2929190627239807_7236267491793487617_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462542988_1532287667457219_5972689518930143587_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543028_1972897539805151_7941190656694056078_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543036_2711979872337520_8965268542753602924_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462547331_1295864501578344_4688693891697285433_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462548344_563493672922609_8360533780669361875_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462549920_922071173172559_6454230092849074383_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462555469_1247356476311743_3184433366080332740_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462568268_1592756751320957_2806831230250578603_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462585760_1280859549993194_6208195224904657434_n.jpg,10/12/2024,9.0000000,12.0000000,42.7669070000000,3.0383230000000,LABELBLEU,Plage du centre,81682,Observation #81682,https://biolit.fr/observations/observation-81682/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543036_2711979872337520_8965268542753602924_n.jpg,,TRUE,Identifiable +N1,81674,Sortie #81674,https://biolit.fr/sorties/sortie-81674/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462261220_1001653471975558_7274567837076352452_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462264968_913441010662237_7947987078519342599_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462446750_1978449599265001_8669635310921526051_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462463865_2929190627239807_7236267491793487617_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462542988_1532287667457219_5972689518930143587_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543028_1972897539805151_7941190656694056078_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543036_2711979872337520_8965268542753602924_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462547331_1295864501578344_4688693891697285433_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462548344_563493672922609_8360533780669361875_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462549920_922071173172559_6454230092849074383_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462555469_1247356476311743_3184433366080332740_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462568268_1592756751320957_2806831230250578603_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462585760_1280859549993194_6208195224904657434_n.jpg,10/12/2024,9.0000000,12.0000000,42.7669070000000,3.0383230000000,LABELBLEU,Plage du centre,81684,Observation #81684,https://biolit.fr/observations/observation-81684/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543036_2711979872337520_8965268542753602924_n.jpg,,,Identifiable +N1,81674,Sortie #81674,https://biolit.fr/sorties/sortie-81674/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462261220_1001653471975558_7274567837076352452_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462264968_913441010662237_7947987078519342599_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462446750_1978449599265001_8669635310921526051_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462463865_2929190627239807_7236267491793487617_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462542988_1532287667457219_5972689518930143587_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543028_1972897539805151_7941190656694056078_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543036_2711979872337520_8965268542753602924_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462547331_1295864501578344_4688693891697285433_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462548344_563493672922609_8360533780669361875_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462549920_922071173172559_6454230092849074383_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462555469_1247356476311743_3184433366080332740_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462568268_1592756751320957_2806831230250578603_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462585760_1280859549993194_6208195224904657434_n.jpg,10/12/2024,9.0000000,12.0000000,42.7669070000000,3.0383230000000,LABELBLEU,Plage du centre,81686,Observation #81686,https://biolit.fr/observations/observation-81686/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462548344_563493672922609_8360533780669361875_n.jpg,,,Identifiable +N1,81674,Sortie #81674,https://biolit.fr/sorties/sortie-81674/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462261220_1001653471975558_7274567837076352452_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462264968_913441010662237_7947987078519342599_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462446750_1978449599265001_8669635310921526051_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462463865_2929190627239807_7236267491793487617_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462542988_1532287667457219_5972689518930143587_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543028_1972897539805151_7941190656694056078_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543036_2711979872337520_8965268542753602924_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462547331_1295864501578344_4688693891697285433_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462548344_563493672922609_8360533780669361875_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462549920_922071173172559_6454230092849074383_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462555469_1247356476311743_3184433366080332740_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462568268_1592756751320957_2806831230250578603_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462585760_1280859549993194_6208195224904657434_n.jpg,10/12/2024,9.0000000,12.0000000,42.7669070000000,3.0383230000000,LABELBLEU,Plage du centre,81688,Observation #81688,https://biolit.fr/observations/observation-81688/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462568268_1592756751320957_2806831230250578603_n.jpg,,,Identifiable +N1,81674,Sortie #81674,https://biolit.fr/sorties/sortie-81674/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462261220_1001653471975558_7274567837076352452_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462264968_913441010662237_7947987078519342599_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462446750_1978449599265001_8669635310921526051_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462463865_2929190627239807_7236267491793487617_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462542988_1532287667457219_5972689518930143587_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543028_1972897539805151_7941190656694056078_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543036_2711979872337520_8965268542753602924_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462547331_1295864501578344_4688693891697285433_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462548344_563493672922609_8360533780669361875_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462549920_922071173172559_6454230092849074383_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462555469_1247356476311743_3184433366080332740_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462568268_1592756751320957_2806831230250578603_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462585760_1280859549993194_6208195224904657434_n.jpg,10/12/2024,9.0000000,12.0000000,42.7669070000000,3.0383230000000,LABELBLEU,Plage du centre,81690,Observation #81690,https://biolit.fr/observations/observation-81690/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462261220_1001653471975558_7274567837076352452_n.jpg,,,Identifiable +N1,81674,Sortie #81674,https://biolit.fr/sorties/sortie-81674/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462261220_1001653471975558_7274567837076352452_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462264968_913441010662237_7947987078519342599_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462446750_1978449599265001_8669635310921526051_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462463865_2929190627239807_7236267491793487617_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462542988_1532287667457219_5972689518930143587_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543028_1972897539805151_7941190656694056078_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543036_2711979872337520_8965268542753602924_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462547331_1295864501578344_4688693891697285433_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462548344_563493672922609_8360533780669361875_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462549920_922071173172559_6454230092849074383_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462555469_1247356476311743_3184433366080332740_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462568268_1592756751320957_2806831230250578603_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462585760_1280859549993194_6208195224904657434_n.jpg,10/12/2024,9.0000000,12.0000000,42.7669070000000,3.0383230000000,LABELBLEU,Plage du centre,81692,Observation #81692,https://biolit.fr/observations/observation-81692/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543028_1972897539805151_7941190656694056078_n.jpg,,,Identifiable +N1,81674,Sortie #81674,https://biolit.fr/sorties/sortie-81674/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462261220_1001653471975558_7274567837076352452_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462264968_913441010662237_7947987078519342599_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462446750_1978449599265001_8669635310921526051_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462463865_2929190627239807_7236267491793487617_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462542988_1532287667457219_5972689518930143587_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543028_1972897539805151_7941190656694056078_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543036_2711979872337520_8965268542753602924_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462547331_1295864501578344_4688693891697285433_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462548344_563493672922609_8360533780669361875_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462549920_922071173172559_6454230092849074383_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462555469_1247356476311743_3184433366080332740_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462568268_1592756751320957_2806831230250578603_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462585760_1280859549993194_6208195224904657434_n.jpg,10/12/2024,9.0000000,12.0000000,42.7669070000000,3.0383230000000,LABELBLEU,Plage du centre,81694,Observation #81694,https://biolit.fr/observations/observation-81694/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543028_1972897539805151_7941190656694056078_n.jpg,,,Identifiable +N1,81674,Sortie #81674,https://biolit.fr/sorties/sortie-81674/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462261220_1001653471975558_7274567837076352452_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462264968_913441010662237_7947987078519342599_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462446750_1978449599265001_8669635310921526051_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462463865_2929190627239807_7236267491793487617_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462542988_1532287667457219_5972689518930143587_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543028_1972897539805151_7941190656694056078_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543036_2711979872337520_8965268542753602924_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462547331_1295864501578344_4688693891697285433_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462548344_563493672922609_8360533780669361875_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462549920_922071173172559_6454230092849074383_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462555469_1247356476311743_3184433366080332740_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462568268_1592756751320957_2806831230250578603_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462585760_1280859549993194_6208195224904657434_n.jpg,10/12/2024,9.0000000,12.0000000,42.7669070000000,3.0383230000000,LABELBLEU,Plage du centre,81696,Observation #81696,https://biolit.fr/observations/observation-81696/,Callinectes sapidus,Crabe bleu américain,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462547331_1295864501578344_4688693891697285433_n.jpg,,TRUE,Identifiable +N1,81674,Sortie #81674,https://biolit.fr/sorties/sortie-81674/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462261220_1001653471975558_7274567837076352452_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462264968_913441010662237_7947987078519342599_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462446750_1978449599265001_8669635310921526051_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462463865_2929190627239807_7236267491793487617_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462542988_1532287667457219_5972689518930143587_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543028_1972897539805151_7941190656694056078_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543036_2711979872337520_8965268542753602924_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462547331_1295864501578344_4688693891697285433_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462548344_563493672922609_8360533780669361875_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462549920_922071173172559_6454230092849074383_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462555469_1247356476311743_3184433366080332740_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462568268_1592756751320957_2806831230250578603_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462585760_1280859549993194_6208195224904657434_n.jpg,10/12/2024,9.0000000,12.0000000,42.7669070000000,3.0383230000000,LABELBLEU,Plage du centre,81698,Observation #81698,https://biolit.fr/observations/observation-81698/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462555469_1247356476311743_3184433366080332740_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462549920_922071173172559_6454230092849074383_n.jpg,,,Ne sais pas +N1,81701,Sortie #81701,https://biolit.fr/sorties/sortie-81701/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462547331_1295864501578344_4688693891697285433_n-1.jpg,10/12/2024,9.0000000,12.0000000,42.767070000000,3.03838200000000,LABELBLEU,Plage du centre Torreilles,,,,,,,,,, +N1,81713,Sortie #81713,https://biolit.fr/sorties/sortie-81713/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0966-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0964-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0963-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0961-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0960-scaled.jpeg,9/20/2024 0:00,16.0:15,16.0000000,43.2744150000000,6.58430800000000,,Port grimaud grande plage,,,,,,,,,, +N1,81720,Sortie #81720,https://biolit.fr/sorties/sortie-81720/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0966-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0964-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0963-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0961-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0960-1-scaled.jpeg,9/20/2024 0:00,16.0:15,16.0000000,43.274149000000,6.58433000000000,,Port Grimaud grande plage,81722,Observation #81722,https://biolit.fr/observations/observation-81722/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0966-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0964-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0963-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0961-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0960-1-scaled.jpeg,,TRUE,Identifiable +N1,81726,Sortie #81726,https://biolit.fr/sorties/sortie-81726/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0928.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0930-scaled.jpeg,9/20/2024 0:00,16.0:15,16.0000000,43.2740240000000,6.58413600000000,,Port grimaud grande plage,81730,Observation #81730,https://biolit.fr/observations/observation-81730/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0928.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0930-scaled.jpeg,,TRUE,Identifiable +N1,81734,Sortie #81734,https://biolit.fr/sorties/sortie-81734/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0935-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0933-scaled.jpeg,9/20/2024 0:00,16.0:15,16.0000000,43.2738740000000,6.58394300000000,,Port grimaud grande plage,81736,Observation #81736,https://biolit.fr/observations/observation-81736/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0935-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0933-scaled.jpeg,,TRUE,Identifiable +N1,81741,Sortie #81741,https://biolit.fr/sorties/sortie-81741/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0954-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0949-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0948-scaled.jpeg,9/20/2024 0:00,16.0:15,16.0000000,43.2740210000000,6.58433000000000,,Port grimaud grande plage,81743,Observation #81743,https://biolit.fr/observations/observation-81743/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0954-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0949-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0948-scaled.jpeg,,TRUE,Identifiable +N1,81747,Sortie #81747,https://biolit.fr/sorties/sortie-81747/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0944-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0943-scaled.jpeg,9/20/2024 0:00,16.0:15,16.0000000,43.2734510000000,6.58446900000000,,Port grimaud grande plage,81751,Observation #81751,https://biolit.fr/observations/observation-81751/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0944-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0943-scaled.jpeg,,TRUE,Identifiable +N1,81757,Sortie #81757,https://biolit.fr/sorties/sortie-81757/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_5495-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_5495-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_5494-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_5493-scaled.jpeg,9/22/2022 0:00,16.0000000,17.0000000,43.2739060000000,6.58415800000000,,Port grimaud grande plage,81759,Observation #81759,https://biolit.fr/observations/observation-81759/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_5495-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_5495-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_5494-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_5493-scaled.jpeg,,,Ne sais pas +N1,81765,Sortie #81765,https://biolit.fr/sorties/sortie-81765/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_4127.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_4127-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_4126.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_4126-1-scaled.jpeg,9/19/2023 0:00,18.0000000,18.0000000,43.2745980000000,6.58011300000000,,Port grimaud canaux,81767,Observation #81767,https://biolit.fr/observations/observation-81767/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_4127.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_4127-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_4126.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_4126-1-scaled.jpeg,,TRUE,Ne sais pas +N1,81771,Sortie #81771,https://biolit.fr/sorties/sortie-81771/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0899-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0898-scaled.jpeg,9/16/2024 0:00,18.0000000,19.0000000,43.2741810000000,6.58415800000000,,Port grimaud grande plage,81773,Observation #81773,https://biolit.fr/observations/observation-81773/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0899-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0898-scaled.jpeg,,TRUE,Identifiable +N1,81778,Sortie #81778,https://biolit.fr/sorties/sortie-81778/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_6898.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_6899.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_6897.jpeg,09/12/2024,21.0:36,21.0000000,43.2628060000000,6.60347000000000,,,81780,Observation #81780,https://biolit.fr/observations/observation-81780/,Neogobius melanostomus,Gobie à taches noires,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_6898.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_6899.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_6897.jpeg,,,Identifiable +N1,81808,Sortie #81808,https://biolit.fr/sorties/sortie-81808/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101920530_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102108491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102239777_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102345772_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102358514_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102755877_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102820620_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103155817_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103512146_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103519138_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103836615_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103845923_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_104959818_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105031211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105602890-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105746449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101720148-rotated.jpg,10/13/2024 0:00,10.0000000,11.0000000,43.2397520000000,5.36243100000000,,Plage de l’Anse du Bain des Dames,81810,Observation #81810,https://biolit.fr/observations/observation-81810/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101720148-rotated.jpg,,TRUE,Identifiable +N1,81808,Sortie #81808,https://biolit.fr/sorties/sortie-81808/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101920530_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102108491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102239777_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102345772_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102358514_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102755877_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102820620_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103155817_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103512146_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103519138_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103836615_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103845923_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_104959818_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105031211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105602890-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105746449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101720148-rotated.jpg,10/13/2024 0:00,10.0000000,11.0000000,43.2397520000000,5.36243100000000,,Plage de l’Anse du Bain des Dames,81812,Observation #81812,https://biolit.fr/observations/observation-81812/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101920530_HDR-scaled.jpg,,TRUE,Identifiable +N1,81808,Sortie #81808,https://biolit.fr/sorties/sortie-81808/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101920530_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102108491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102239777_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102345772_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102358514_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102755877_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102820620_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103155817_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103512146_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103519138_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103836615_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103845923_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_104959818_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105031211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105602890-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105746449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101720148-rotated.jpg,10/13/2024 0:00,10.0000000,11.0000000,43.2397520000000,5.36243100000000,,Plage de l’Anse du Bain des Dames,81814,Observation #81814,https://biolit.fr/observations/observation-81814/,Lithophaga lithophaga,Datte de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102108491_HDR-scaled.jpg,,,Identifiable +N1,81808,Sortie #81808,https://biolit.fr/sorties/sortie-81808/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101920530_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102108491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102239777_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102345772_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102358514_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102755877_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102820620_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103155817_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103512146_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103519138_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103836615_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103845923_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_104959818_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105031211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105602890-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105746449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101720148-rotated.jpg,10/13/2024 0:00,10.0000000,11.0000000,43.2397520000000,5.36243100000000,,Plage de l’Anse du Bain des Dames,81816,Observation #81816,https://biolit.fr/observations/observation-81816/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102239777_HDR-scaled.jpg,,TRUE,Identifiable +N1,81808,Sortie #81808,https://biolit.fr/sorties/sortie-81808/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101920530_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102108491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102239777_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102345772_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102358514_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102755877_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102820620_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103155817_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103512146_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103519138_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103836615_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103845923_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_104959818_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105031211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105602890-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105746449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101720148-rotated.jpg,10/13/2024 0:00,10.0000000,11.0000000,43.2397520000000,5.36243100000000,,Plage de l’Anse du Bain des Dames,81818,Observation #81818,https://biolit.fr/observations/observation-81818/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102345772_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102358514_HDR-rotated.jpg,,,Ne sais pas +N1,81808,Sortie #81808,https://biolit.fr/sorties/sortie-81808/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101920530_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102108491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102239777_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102345772_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102358514_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102755877_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102820620_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103155817_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103512146_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103519138_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103836615_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103845923_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_104959818_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105031211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105602890-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105746449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101720148-rotated.jpg,10/13/2024 0:00,10.0000000,11.0000000,43.2397520000000,5.36243100000000,,Plage de l’Anse du Bain des Dames,81820,Observation #81820,https://biolit.fr/observations/observation-81820/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102755877_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102820620_HDR.jpg,,TRUE,Identifiable +N1,81808,Sortie #81808,https://biolit.fr/sorties/sortie-81808/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101920530_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102108491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102239777_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102345772_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102358514_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102755877_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102820620_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103155817_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103512146_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103519138_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103836615_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103845923_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_104959818_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105031211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105602890-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105746449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101720148-rotated.jpg,10/13/2024 0:00,10.0000000,11.0000000,43.2397520000000,5.36243100000000,,Plage de l’Anse du Bain des Dames,81822,Observation #81822,https://biolit.fr/observations/observation-81822/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103155817_HDR-scaled.jpg,,TRUE,Identifiable +N1,81808,Sortie #81808,https://biolit.fr/sorties/sortie-81808/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101920530_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102108491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102239777_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102345772_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102358514_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102755877_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102820620_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103155817_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103512146_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103519138_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103836615_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103845923_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_104959818_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105031211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105602890-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105746449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101720148-rotated.jpg,10/13/2024 0:00,10.0000000,11.0000000,43.2397520000000,5.36243100000000,,Plage de l’Anse du Bain des Dames,81824,Observation #81824,https://biolit.fr/observations/observation-81824/,Tritia nitida,Nasse brillante,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103512146_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103519138_HDR.jpg,,,Identifiable +N1,81808,Sortie #81808,https://biolit.fr/sorties/sortie-81808/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101920530_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102108491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102239777_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102345772_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102358514_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102755877_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102820620_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103155817_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103512146_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103519138_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103836615_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103845923_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_104959818_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105031211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105602890-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105746449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101720148-rotated.jpg,10/13/2024 0:00,10.0000000,11.0000000,43.2397520000000,5.36243100000000,,Plage de l’Anse du Bain des Dames,81826,Observation #81826,https://biolit.fr/observations/observation-81826/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_104959818_HDR-scaled.jpg,,,Ne sais pas +N1,81808,Sortie #81808,https://biolit.fr/sorties/sortie-81808/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101920530_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102108491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102239777_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102345772_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102358514_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102755877_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102820620_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103155817_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103512146_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103519138_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103836615_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103845923_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_104959818_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105031211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105602890-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105746449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101720148-rotated.jpg,10/13/2024 0:00,10.0000000,11.0000000,43.2397520000000,5.36243100000000,,Plage de l’Anse du Bain des Dames,81828,Observation #81828,https://biolit.fr/observations/observation-81828/,Cardita calyculata,Cardite petit calice,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105031211.jpg,,TRUE,Identifiable +N1,81808,Sortie #81808,https://biolit.fr/sorties/sortie-81808/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101920530_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102108491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102239777_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102345772_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102358514_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102755877_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102820620_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103155817_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103512146_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103519138_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103836615_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103845923_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_104959818_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105031211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105602890-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105746449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101720148-rotated.jpg,10/13/2024 0:00,10.0000000,11.0000000,43.2397520000000,5.36243100000000,,Plage de l’Anse du Bain des Dames,81830,Observation #81830,https://biolit.fr/observations/observation-81830/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105602890-rotated.jpg,,TRUE,Identifiable +N1,81808,Sortie #81808,https://biolit.fr/sorties/sortie-81808/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101920530_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102108491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102239777_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102345772_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102358514_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102755877_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102820620_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103155817_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103512146_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103519138_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103836615_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103845923_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_104959818_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105031211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105602890-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105746449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101720148-rotated.jpg,10/13/2024 0:00,10.0000000,11.0000000,43.2397520000000,5.36243100000000,,Plage de l’Anse du Bain des Dames,81832,Observation #81832,https://biolit.fr/observations/observation-81832/,Peyssonnelia squamaria,Peyssonnelia,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105746449_HDR-rotated.jpg,,TRUE,Identifiable +N1,81845,Sortie #81845,https://biolit.fr/sorties/sortie-81845/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_100850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_100929-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241016_095411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241016_095435-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241016_095443-scaled.jpg,10/13/2024 0:00,10.0000000,11.0000000,43.2397610000000,5.36242400000000,,Plage de l’Anse du Bain des Dames,81847,Observation #81847,https://biolit.fr/observations/observation-81847/,Stramonita haemastoma,Ponte de bouche de sang,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_100850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_100929-scaled.jpg,,,Identifiable +N1,81845,Sortie #81845,https://biolit.fr/sorties/sortie-81845/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_100850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_100929-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241016_095411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241016_095435-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241016_095443-scaled.jpg,10/13/2024 0:00,10.0000000,11.0000000,43.2397610000000,5.36242400000000,,Plage de l’Anse du Bain des Dames,81849,Observation #81849,https://biolit.fr/observations/observation-81849/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101604-scaled.jpg,,TRUE,Identifiable +N1,81845,Sortie #81845,https://biolit.fr/sorties/sortie-81845/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_100850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_100929-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241016_095411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241016_095435-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241016_095443-scaled.jpg,10/13/2024 0:00,10.0000000,11.0000000,43.2397610000000,5.36242400000000,,Plage de l’Anse du Bain des Dames,81851,Observation #81851,https://biolit.fr/observations/observation-81851/,Euthria cornea,Buccin veiné,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101632-scaled.jpg,,,Identifiable +N1,81845,Sortie #81845,https://biolit.fr/sorties/sortie-81845/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_100850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_100929-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241016_095411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241016_095435-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241016_095443-scaled.jpg,10/13/2024 0:00,10.0000000,11.0000000,43.2397610000000,5.36242400000000,,Plage de l’Anse du Bain des Dames,81853,Observation #81853,https://biolit.fr/observations/observation-81853/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241016_095411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241016_095435-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241016_095443-scaled.jpg,,TRUE,Identifiable +N1,81861,Sortie #81861,https://biolit.fr/sorties/sortie-81861/,Bissonet AUGUSTIN,https://biolit.fr/wp-content/uploads/jet-form-builder/e0731198c4ac20c01d7dcdaeb7e5603a/2024/10/IMG_0366-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e0731198c4ac20c01d7dcdaeb7e5603a/2024/10/IMG_0368-scaled.jpeg,10/16/2024 0:00,14.0000000,15.0000000,49.6776760000000,-1.73523900000000,,Urville nacqueville,,,,,,,,,, +N1,81864,Sortie #81864,https://biolit.fr/sorties/sortie-81864/,Bissonet AUGUSTIN,https://biolit.fr/wp-content/uploads/jet-form-builder/e0731198c4ac20c01d7dcdaeb7e5603a/2024/10/IMG_0367-scaled.jpeg,10/16/2024 0:00,14.0000000,15.0000000,49.6776510000000,-1.73506700000000,,Urville nacqueville,,,,,,,,,, +N1,81868,Sortie #81868,https://biolit.fr/sorties/sortie-81868/,Auneveux--Chaffraix Frédéric,https://biolit.fr/wp-content/uploads/jet-form-builder/2c8b8b997a94fbba2cdd5805a88a6d73/2024/10/Biolit-1.jpg,10/06/2024,14.0:55,15.0000000,49.4619580000000,-1.83066100000000,,Plage de Surtainville,81870,Observation #81870,https://biolit.fr/observations/observation-81870/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2c8b8b997a94fbba2cdd5805a88a6d73/2024/10/Biolit-1.jpg,,,Identifiable +N1,81873,Sortie #81873,https://biolit.fr/sorties/sortie-81873/,Bissonet AUGUSTIN,https://biolit.fr/wp-content/uploads/jet-form-builder/e0731198c4ac20c01d7dcdaeb7e5603a/2024/10/IMG_0366-1-scaled.jpeg,10/17/2024 0:00,14.0000000,15.0000000,49.6774790000000,-1.73534600000000,,Urville Nacqueville,,,,,,,,,, +N1,81902,Sortie #81902,https://biolit.fr/sorties/sortie-81902/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/10/20210604_Marseilleveyre_Rugolopterix_arkamurae_2_BioLit_Marine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/10/20210604_Marseilleveyre_Rugolopterix_arkamurae_BioLit_Marine-scaled.jpg,06/04/2021,14.0000000,14.0000000,43.2095730000000,5.37236400000000,Planète Mer,Calanque de Marseilleveyre,81904,Observation #81904,https://biolit.fr/observations/observation-81904/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/10/20210604_Marseilleveyre_Rugolopterix_arkamurae_2_BioLit_Marine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/10/20210604_Marseilleveyre_Rugolopterix_arkamurae_BioLit_Marine-scaled.jpg,,TRUE,Identifiable +N1,81935,Sortie #81935,https://biolit.fr/sorties/sortie-81935/,Fredj Adem,https://biolit.fr/wp-content/uploads/jet-form-builder/0999539c1f50017466f0110034a28cbe/2024/10/image-scaled.jpg,10/20/2024 0:00,16.000003,16.000005,43.312813000000,5.416260000000,Naturoscope (Antenne Marseille),Plage marseille,81937,Observation #81937,https://biolit.fr/observations/observation-81937/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/0999539c1f50017466f0110034a28cbe/2024/10/image-scaled.jpg,,TRUE,Ne sais pas +N1,81945,Sortie #81945,https://biolit.fr/sorties/sortie-81945/,Bernardin Herve,https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/IMG_8522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/IMG_8523.png | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/IMG_8524-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/IMG_8525-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/IMG_8526-scaled.jpeg,10/20/2024 0:00,16.0:23,18.0000000,48.6836230000000,-1.94595300000000,,Saint Malo,,,,,,,,,, +N1,81951,Sortie #81951,https://biolit.fr/sorties/sortie-81951/,LACROIX MARTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/quadrat-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/phot-quad-1-monodonte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/phot-quad-1-patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/phot-quad1-littorine-des-R.jpg,10/20/2024 0:00,16.0:23,18.0000000,48.6860140000000,-1.96167800000000,,HAVRE DE ROTHENEUF,81955,Observation #81955,https://biolit.fr/observations/observation-81955/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/phot-quad-1-monodonte.jpg,,TRUE,Identifiable +N1,81951,Sortie #81951,https://biolit.fr/sorties/sortie-81951/,LACROIX MARTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/quadrat-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/phot-quad-1-monodonte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/phot-quad-1-patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/phot-quad1-littorine-des-R.jpg,10/20/2024 0:00,16.0:23,18.0000000,48.6860140000000,-1.96167800000000,,HAVRE DE ROTHENEUF,81963,Observation #81963,https://biolit.fr/observations/observation-81963/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/phot-quad1-littorine-des-R.jpg,,TRUE,Identifiable +N1,81951,Sortie #81951,https://biolit.fr/sorties/sortie-81951/,LACROIX MARTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/quadrat-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/phot-quad-1-monodonte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/phot-quad-1-patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/phot-quad1-littorine-des-R.jpg,10/20/2024 0:00,16.0:23,18.0000000,48.6860140000000,-1.96167800000000,,HAVRE DE ROTHENEUF,81965,Observation #81965,https://biolit.fr/observations/observation-81965/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/phot-quad-1-patelle.jpg,,TRUE,Identifiable +N1,81984,Sortie #81984,https://biolit.fr/sorties/sortie-81984/,Berry Anais,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0000.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0002.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0013.jpg,10/20/2024 0:00,9.0000000,11.0000000,43.449753000000,3.80820000000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,81987,Observation #81987,https://biolit.fr/observations/observation-81987/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0000.jpg,,,Identifiable +N1,81984,Sortie #81984,https://biolit.fr/sorties/sortie-81984/,Berry Anais,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0000.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0002.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0013.jpg,10/20/2024 0:00,9.0000000,11.0000000,43.449753000000,3.80820000000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,81990,Observation #81990,https://biolit.fr/observations/observation-81990/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0002.jpg,,,Identifiable +N1,81984,Sortie #81984,https://biolit.fr/sorties/sortie-81984/,Berry Anais,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0000.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0002.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0013.jpg,10/20/2024 0:00,9.0000000,11.0000000,43.449753000000,3.80820000000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,81992,Observation #81992,https://biolit.fr/observations/observation-81992/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0003.jpg,,,Identifiable +N1,81984,Sortie #81984,https://biolit.fr/sorties/sortie-81984/,Berry Anais,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0000.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0002.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0013.jpg,10/20/2024 0:00,9.0000000,11.0000000,43.449753000000,3.80820000000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,81994,Observation #81994,https://biolit.fr/observations/observation-81994/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0004.jpg,,TRUE,Identifiable +N1,81984,Sortie #81984,https://biolit.fr/sorties/sortie-81984/,Berry Anais,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0000.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0002.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0013.jpg,10/20/2024 0:00,9.0000000,11.0000000,43.449753000000,3.80820000000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,81996,Observation #81996,https://biolit.fr/observations/observation-81996/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0005.jpg,,, +N1,82009,Sortie #82009,https://biolit.fr/sorties/sortie-82009/,Berry Anais,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0007-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0008-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0009-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0010-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0012-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0013-1.jpg,10/20/2024 0:00,9.0000000,11.0000000,43.4497120000000,3.80802900000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,82011,Observation #82011,https://biolit.fr/observations/observation-82011/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0006-1.jpg,,TRUE,Identifiable +N1,82009,Sortie #82009,https://biolit.fr/sorties/sortie-82009/,Berry Anais,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0007-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0008-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0009-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0010-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0012-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0013-1.jpg,10/20/2024 0:00,9.0000000,11.0000000,43.4497120000000,3.80802900000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,82013,Observation #82013,https://biolit.fr/observations/observation-82013/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0007-1.jpg,,TRUE,Identifiable +N1,82009,Sortie #82009,https://biolit.fr/sorties/sortie-82009/,Berry Anais,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0007-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0008-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0009-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0010-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0012-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0013-1.jpg,10/20/2024 0:00,9.0000000,11.0000000,43.4497120000000,3.80802900000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,82015,Observation #82015,https://biolit.fr/observations/observation-82015/,Eunicella singularis,Gorgone blanche,,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0008-1.jpg,,TRUE,Identifiable +N1,82009,Sortie #82009,https://biolit.fr/sorties/sortie-82009/,Berry Anais,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0007-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0008-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0009-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0010-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0012-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0013-1.jpg,10/20/2024 0:00,9.0000000,11.0000000,43.4497120000000,3.80802900000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,82017,Observation #82017,https://biolit.fr/observations/observation-82017/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0009-1.jpg,,,Identifiable +N1,82009,Sortie #82009,https://biolit.fr/sorties/sortie-82009/,Berry Anais,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0007-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0008-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0009-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0010-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0012-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0013-1.jpg,10/20/2024 0:00,9.0000000,11.0000000,43.4497120000000,3.80802900000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,82019,Observation #82019,https://biolit.fr/observations/observation-82019/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0010-1.jpg,,,Ne sais pas +N1,82009,Sortie #82009,https://biolit.fr/sorties/sortie-82009/,Berry Anais,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0007-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0008-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0009-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0010-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0012-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0013-1.jpg,10/20/2024 0:00,9.0000000,11.0000000,43.4497120000000,3.80802900000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,82021,Observation #82021,https://biolit.fr/observations/observation-82021/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0011-1.jpg,,TRUE,Identifiable +N1,82009,Sortie #82009,https://biolit.fr/sorties/sortie-82009/,Berry Anais,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0007-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0008-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0009-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0010-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0012-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0013-1.jpg,10/20/2024 0:00,9.0000000,11.0000000,43.4497120000000,3.80802900000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,82023,Observation #82023,https://biolit.fr/observations/observation-82023/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0012-1.jpg,,TRUE,Identifiable +N1,82009,Sortie #82009,https://biolit.fr/sorties/sortie-82009/,Berry Anais,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0007-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0008-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0009-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0010-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0012-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0013-1.jpg,10/20/2024 0:00,9.0000000,11.0000000,43.4497120000000,3.80802900000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,82025,Observation #82025,https://biolit.fr/observations/observation-82025/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0013-1.jpg,,,Identifiable +N1,82041,Sortie #82041,https://biolit.fr/sorties/sortie-82041/,Bernardin Herve,https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/GPSQ4-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Ombilique-Q4-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Patelle-Q4-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Photo-Q4-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Pourpe-Q4-1.jpg,10/20/2024 0:00,16.0:23,18.0000000,48.6677940,-1.9762590,,Saint Malo Havre du Lupin,82043,Observation #82043,https://biolit.fr/observations/observation-82043/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Ombilique-Q4-1.jpg,,TRUE,Identifiable +N1,82041,Sortie #82041,https://biolit.fr/sorties/sortie-82041/,Bernardin Herve,https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/GPSQ4-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Ombilique-Q4-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Patelle-Q4-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Photo-Q4-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Pourpe-Q4-1.jpg,10/20/2024 0:00,16.0:23,18.0000000,48.6677940,-1.9762590,,Saint Malo Havre du Lupin,82045,Observation #82045,https://biolit.fr/observations/observation-82045/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Patelle-Q4-1.jpg,,TRUE,Identifiable +N1,82041,Sortie #82041,https://biolit.fr/sorties/sortie-82041/,Bernardin Herve,https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/GPSQ4-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Ombilique-Q4-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Patelle-Q4-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Photo-Q4-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Pourpe-Q4-1.jpg,10/20/2024 0:00,16.0:23,18.0000000,48.6677940,-1.9762590,,Saint Malo Havre du Lupin,82047,Observation #82047,https://biolit.fr/observations/observation-82047/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Pourpe-Q4-1.jpg,,TRUE,Identifiable +N1,82041,Sortie #82041,https://biolit.fr/sorties/sortie-82041/,Bernardin Herve,https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/GPSQ4-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Ombilique-Q4-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Patelle-Q4-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Photo-Q4-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Pourpe-Q4-1.jpg,10/20/2024 0:00,16.0:23,18.0000000,48.6677940,-1.9762590,,Saint Malo Havre du Lupin,82049,Observation #82049,https://biolit.fr/observations/observation-82049/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Patelle-Q4-1.jpg,,TRUE,Identifiable +N1,82053,Sortie #82053,https://biolit.fr/sorties/sortie-82053/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_7949-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_7950-scaled.jpeg,10/22/2024 0:00,7.0000000,8.0000000,48.6399330000000,-2.07320800000000,,Dinard,82055,Observation #82055,https://biolit.fr/observations/observation-82055/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_7949-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_7950-scaled.jpeg,,TRUE,Identifiable +N1,82058,Sortie #82058,https://biolit.fr/sorties/sortie-82058/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_7962-scaled.jpeg,10/22/2024 0:00,7.0000000,8.0000000,48.6405260000000,-2.07517700000000,,Dinard,82060,Observation #82060,https://biolit.fr/observations/observation-82060/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_7962-scaled.jpeg,,TRUE,Identifiable +N1,82063,Sortie #82063,https://biolit.fr/sorties/sortie-82063/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_7945.jpeg,10/22/2024 0:00,7.0000000,8.0000000,48.6402370000000,-2.07420600000000,,Dinard,82065,Observation #82065,https://biolit.fr/observations/observation-82065/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_7945.jpeg,,TRUE,Identifiable +N1,82068,Sortie #82068,https://biolit.fr/sorties/sortie-82068/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_7936.jpeg,10/22/2024 0:00,7.0000000,8.0000000,48.6402170000000,-2.07400200000000,,Dinard,,,,,,,,,, +N1,82071,Sortie #82071,https://biolit.fr/sorties/sortie-82071/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_7936-1.jpeg,10/22/2024 0:00,7.0000000,8.0000000,48.640378000000,-2.07493500000000,,Dinard,82073,Observation #82073,https://biolit.fr/observations/observation-82073/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_7936-1.jpeg,,TRUE,Identifiable +N1,82082,Sortie #82082,https://biolit.fr/sorties/sortie-82082/,LACROIX MARTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/quad-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/Quad3-photB.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/Quad-3-phot-C.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/Quad3-photB-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/Quad-3-photA.jpg,10/20/2024 0:00,16.0:23,18.0000000,48.6855080000000,-1.96142900000000,,Le Havre de Rontheneuf - St Malo,82084,Observation #82084,https://biolit.fr/observations/observation-82084/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/Quad-3-photA.jpg,,TRUE,Identifiable +N1,82082,Sortie #82082,https://biolit.fr/sorties/sortie-82082/,LACROIX MARTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/quad-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/Quad3-photB.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/Quad-3-phot-C.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/Quad3-photB-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/Quad-3-photA.jpg,10/20/2024 0:00,16.0:23,18.0000000,48.6855080000000,-1.96142900000000,,Le Havre de Rontheneuf - St Malo,82086,Observation #82086,https://biolit.fr/observations/observation-82086/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/Quad3-photB.jpg,,TRUE,Identifiable +N1,82082,Sortie #82082,https://biolit.fr/sorties/sortie-82082/,LACROIX MARTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/quad-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/Quad3-photB.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/Quad-3-phot-C.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/Quad3-photB-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/Quad-3-photA.jpg,10/20/2024 0:00,16.0:23,18.0000000,48.6855080000000,-1.96142900000000,,Le Havre de Rontheneuf - St Malo,82088,Observation #82088,https://biolit.fr/observations/observation-82088/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/Quad-3-phot-C.jpg,,TRUE,Identifiable +N1,82091,Sortie #82091,https://biolit.fr/sorties/sortie-82091/,LACROIX MARTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/quad-3-1.jpg,10/20/2024 0:00,16.0:23,18.0000000,48.6865660000000,-1.96158300000000,,Le Havre de Rotheneuf - St Malo,,,,,,,,,, +N1,82113,Sortie #82113,https://biolit.fr/sorties/sortie-82113/,Margot Augeix,https://biolit.fr/wp-content/uploads/jet-form-builder/374ce002fc9c6e5ed1ebee3d63be62c5/2024/10/IMG_1794-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/374ce002fc9c6e5ed1ebee3d63be62c5/2024/10/IMG_1793-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/374ce002fc9c6e5ed1ebee3d63be62c5/2024/10/IMG_1790-scaled.jpeg,10/23/2024 0:00,9.0000000,10.0000000,43.2841100000000,5.31550500000000,,Esteve,,,,,,,,,, +N1,82135,Sortie #82135,https://biolit.fr/sorties/sortie-82135/,Augeix Annie,https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5603-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5602-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5601-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5600-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5599-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5598-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5597-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5596-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5595-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5594-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5593-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5592-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5591-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5590-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5587-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5581-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5572-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5570-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5568-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5566-scaled.jpeg,10/23/2024 0:00,9.0000000,10.0:36,43.1847770000000,5.152588000000,,,,,,,,,,,, +N1,82142,Sortie #82142,https://biolit.fr/sorties/sortie-82142/,Augeix Yves,https://biolit.fr/wp-content/uploads/jet-form-builder/6ee5aa238d475f088f106d1812925bcd/2024/10/DSC_7038-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6ee5aa238d475f088f106d1812925bcd/2024/10/DSC_7037-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6ee5aa238d475f088f106d1812925bcd/2024/10/DSC_7036-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6ee5aa238d475f088f106d1812925bcd/2024/10/DSC_7035-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6ee5aa238d475f088f106d1812925bcd/2024/10/DSC_7034-scaled.jpeg,10/23/2024 0:00,10.0:53,10.0:53,43.2840580000000,5.31544100000000,,Plage de saint esteve,82144,Observation #82144,https://biolit.fr/observations/observation-82144/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6ee5aa238d475f088f106d1812925bcd/2024/10/DSC_7038-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6ee5aa238d475f088f106d1812925bcd/2024/10/DSC_7037-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6ee5aa238d475f088f106d1812925bcd/2024/10/DSC_7036-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6ee5aa238d475f088f106d1812925bcd/2024/10/DSC_7035-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6ee5aa238d475f088f106d1812925bcd/2024/10/DSC_7034-scaled.jpeg,,,Ne sais pas +N1,82150,Sortie #82150,https://biolit.fr/sorties/sortie-82150/,CAUDRILLIER Camille,https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_103006-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_102959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_101619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_100258-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.284270000000,5.31575500000000,Planète Mer,Plage de St-Estève,82157,Observation #82157,https://biolit.fr/observations/observation-82157/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_103006-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_102959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_101619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_100258-scaled.jpg,,,Ne sais pas +N1,82150,Sortie #82150,https://biolit.fr/sorties/sortie-82150/,CAUDRILLIER Camille,https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_103006-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_102959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_101619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_100258-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.284270000000,5.31575500000000,Planète Mer,Plage de St-Estève,82183,Observation #82183,https://biolit.fr/observations/observation-82183/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_103006-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_102959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_101619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_100258-scaled.jpg,,,Ne sais pas +N1,82150,Sortie #82150,https://biolit.fr/sorties/sortie-82150/,CAUDRILLIER Camille,https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_103006-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_102959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_101619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_100258-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.284270000000,5.31575500000000,Planète Mer,Plage de St-Estève,82187,Observation #82187,https://biolit.fr/observations/observation-82187/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_102959-scaled.jpg,,,Ne sais pas +N1,82150,Sortie #82150,https://biolit.fr/sorties/sortie-82150/,CAUDRILLIER Camille,https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_103006-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_102959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_101619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_100258-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.284270000000,5.31575500000000,Planète Mer,Plage de St-Estève,82190,Observation #82190,https://biolit.fr/observations/observation-82190/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_101619-scaled.jpg,,,Ne sais pas +N1,82150,Sortie #82150,https://biolit.fr/sorties/sortie-82150/,CAUDRILLIER Camille,https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_103006-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_102959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_101619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_100258-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.284270000000,5.31575500000000,Planète Mer,Plage de St-Estève,82193,Observation #82193,https://biolit.fr/observations/observation-82193/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_100258-scaled.jpg,,TRUE, +N1,82153,Sortie #82153,https://biolit.fr/sorties/sortie-82153/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5947-scaled.jpeg,10/23/2024 0:00,9.0000000,10.0000000,43.2842810000000,5.31589200000000,Planète Mer,Plage de St Estève,82160,Observation #82160,https://biolit.fr/observations/observation-82160/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5947-scaled.jpeg,,TRUE,Identifiable +N1,82159,Sortie #82159,https://biolit.fr/sorties/sortie-82159/,Margot Augeix,https://biolit.fr/wp-content/uploads/jet-form-builder/374ce002fc9c6e5ed1ebee3d63be62c5/2024/10/IMG_1794-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/374ce002fc9c6e5ed1ebee3d63be62c5/2024/10/IMG_1793-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/374ce002fc9c6e5ed1ebee3d63be62c5/2024/10/IMG_1790-1-scaled.jpeg,10/23/2024 0:00,11.0:13,11.0:13,43.2844210000000,5.31598800000000,Planète Mer,Evrette,,,,,,,,,, +N1,82172,Sortie #82172,https://biolit.fr/sorties/sortie-82172/,Barrocas Diane,https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4114-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4112-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4109-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4108-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4107-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4106-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4104-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4102-scaled.jpeg,10/23/2024 0:00,10.0000000,10.0000000,43.2819310000000,5.30914300000000,Planète Mer,Île du Frioul - Plage de St Esteve,82181,Observation #82181,https://biolit.fr/observations/observation-82181/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4114-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4112-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4109-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4108-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4107-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4106-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4104-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4102-scaled.jpeg,,,Ne sais pas +N1,82172,Sortie #82172,https://biolit.fr/sorties/sortie-82172/,Barrocas Diane,https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4114-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4112-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4109-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4108-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4107-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4106-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4104-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4102-scaled.jpeg,10/23/2024 0:00,10.0000000,10.0000000,43.2819310000000,5.30914300000000,Planète Mer,Île du Frioul - Plage de St Esteve,82201,Observation #82201,https://biolit.fr/observations/observation-82201/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4106-scaled.jpeg,,TRUE,Identifiable +N1,82172,Sortie #82172,https://biolit.fr/sorties/sortie-82172/,Barrocas Diane,https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4114-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4112-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4109-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4108-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4107-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4106-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4104-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4102-scaled.jpeg,10/23/2024 0:00,10.0000000,10.0000000,43.2819310000000,5.30914300000000,Planète Mer,Île du Frioul - Plage de St Esteve,82203,Observation #82203,https://biolit.fr/observations/observation-82203/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4112-scaled.jpeg,,TRUE,Ne sais pas +N1,82172,Sortie #82172,https://biolit.fr/sorties/sortie-82172/,Barrocas Diane,https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4114-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4112-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4109-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4108-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4107-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4106-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4104-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4102-scaled.jpeg,10/23/2024 0:00,10.0000000,10.0000000,43.2819310000000,5.30914300000000,Planète Mer,Île du Frioul - Plage de St Esteve,82205,Observation #82205,https://biolit.fr/observations/observation-82205/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4109-scaled.jpeg,,,Ne sais pas +N1,82179,Sortie #82179,https://biolit.fr/sorties/sortie-82179/,Barrocas Adrien,https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1615-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1614-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1610-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1609-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1613-scaled.jpeg,10/23/2024 0:00,10.0000000,10.0:45,43.2842190000000,5.31598300000000,Planète Mer,Frioul - Plage de Saint-Estève,82185,Observation #82185,https://biolit.fr/observations/observation-82185/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1615-scaled.jpeg,,,Ne sais pas +N1,82179,Sortie #82179,https://biolit.fr/sorties/sortie-82179/,Barrocas Adrien,https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1615-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1614-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1610-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1609-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1613-scaled.jpeg,10/23/2024 0:00,10.0000000,10.0:45,43.2842190000000,5.31598300000000,Planète Mer,Frioul - Plage de Saint-Estève,82189,Observation #82189,https://biolit.fr/observations/observation-82189/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1614-scaled.jpeg,,,Ne sais pas +N1,82179,Sortie #82179,https://biolit.fr/sorties/sortie-82179/,Barrocas Adrien,https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1615-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1614-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1610-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1609-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1613-scaled.jpeg,10/23/2024 0:00,10.0000000,10.0:45,43.2842190000000,5.31598300000000,Planète Mer,Frioul - Plage de Saint-Estève,82195,Observation #82195,https://biolit.fr/observations/observation-82195/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1610-scaled.jpeg,,,Ne sais pas +N1,82179,Sortie #82179,https://biolit.fr/sorties/sortie-82179/,Barrocas Adrien,https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1615-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1614-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1610-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1609-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1613-scaled.jpeg,10/23/2024 0:00,10.0000000,10.0:45,43.2842190000000,5.31598300000000,Planète Mer,Frioul - Plage de Saint-Estève,82197,Observation #82197,https://biolit.fr/observations/observation-82197/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1609-scaled.jpeg,,,Ne sais pas +N1,82179,Sortie #82179,https://biolit.fr/sorties/sortie-82179/,Barrocas Adrien,https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1615-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1614-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1610-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1609-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1613-scaled.jpeg,10/23/2024 0:00,10.0000000,10.0:45,43.2842190000000,5.31598300000000,Planète Mer,Frioul - Plage de Saint-Estève,82199,Observation #82199,https://biolit.fr/observations/observation-82199/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1613-scaled.jpeg,,,Ne sais pas +N1,82217,Sortie #82217,https://biolit.fr/sorties/sortie-82217/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/monodonte-q1-scaled.jpg,10/24/2024 0:00,4.0000000,4.0000000,48.6973610000000,-1.87368400000000,,Plage de la Touesse,,,,,,,,,, +N1,82233,Sortie #82233,https://biolit.fr/sorties/sortie-82233/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_145937434.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20241024-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151328246-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154455870.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160058768.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162122951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162419546.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162629975-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151123278.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154248432.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160301757.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162139224.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_163011818.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_165811202-scaled.jpg,10/23/2024 0:00,17.0000000,18.0000000,43.5464030000000,4.1224320000000,LABELBLEU,Plage du Boucanet,82235,Observation #82235,https://biolit.fr/observations/observation-82235/,Mnemiopsis leidyi,Mnémiopsis,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20241024-WA0003.jpg,,TRUE,Identifiable +N1,82233,Sortie #82233,https://biolit.fr/sorties/sortie-82233/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_145937434.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20241024-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151328246-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154455870.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160058768.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162122951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162419546.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162629975-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151123278.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154248432.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160301757.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162139224.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_163011818.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_165811202-scaled.jpg,10/23/2024 0:00,17.0000000,18.0000000,43.5464030000000,4.1224320000000,LABELBLEU,Plage du Boucanet,82237,Observation #82237,https://biolit.fr/observations/observation-82237/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154455870.MP_-scaled.jpg,,,Ne sais pas +N1,82233,Sortie #82233,https://biolit.fr/sorties/sortie-82233/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_145937434.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20241024-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151328246-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154455870.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160058768.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162122951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162419546.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162629975-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151123278.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154248432.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160301757.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162139224.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_163011818.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_165811202-scaled.jpg,10/23/2024 0:00,17.0000000,18.0000000,43.5464030000000,4.1224320000000,LABELBLEU,Plage du Boucanet,82239,Observation #82239,https://biolit.fr/observations/observation-82239/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160058768.MP_-scaled.jpg,,,Identifiable +N1,82233,Sortie #82233,https://biolit.fr/sorties/sortie-82233/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_145937434.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20241024-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151328246-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154455870.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160058768.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162122951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162419546.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162629975-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151123278.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154248432.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160301757.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162139224.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_163011818.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_165811202-scaled.jpg,10/23/2024 0:00,17.0000000,18.0000000,43.5464030000000,4.1224320000000,LABELBLEU,Plage du Boucanet,82241,Observation #82241,https://biolit.fr/observations/observation-82241/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162122951-scaled.jpg,,TRUE,Identifiable +N1,82233,Sortie #82233,https://biolit.fr/sorties/sortie-82233/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_145937434.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20241024-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151328246-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154455870.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160058768.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162122951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162419546.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162629975-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151123278.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154248432.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160301757.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162139224.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_163011818.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_165811202-scaled.jpg,10/23/2024 0:00,17.0000000,18.0000000,43.5464030000000,4.1224320000000,LABELBLEU,Plage du Boucanet,82243,Observation #82243,https://biolit.fr/observations/observation-82243/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162419546.MP_-scaled.jpg,,TRUE,Identifiable +N1,82233,Sortie #82233,https://biolit.fr/sorties/sortie-82233/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_145937434.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20241024-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151328246-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154455870.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160058768.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162122951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162419546.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162629975-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151123278.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154248432.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160301757.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162139224.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_163011818.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_165811202-scaled.jpg,10/23/2024 0:00,17.0000000,18.0000000,43.5464030000000,4.1224320000000,LABELBLEU,Plage du Boucanet,82245,Observation #82245,https://biolit.fr/observations/observation-82245/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162629975-scaled.jpg,,,Ne sais pas +N1,82233,Sortie #82233,https://biolit.fr/sorties/sortie-82233/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_145937434.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20241024-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151328246-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154455870.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160058768.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162122951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162419546.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162629975-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151123278.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154248432.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160301757.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162139224.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_163011818.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_165811202-scaled.jpg,10/23/2024 0:00,17.0000000,18.0000000,43.5464030000000,4.1224320000000,LABELBLEU,Plage du Boucanet,82247,Observation #82247,https://biolit.fr/observations/observation-82247/,Bolinus brandaris,Murex épineux,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151123278.MP_-scaled.jpg,,TRUE,Identifiable +N1,82233,Sortie #82233,https://biolit.fr/sorties/sortie-82233/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_145937434.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20241024-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151328246-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154455870.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160058768.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162122951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162419546.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162629975-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151123278.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154248432.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160301757.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162139224.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_163011818.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_165811202-scaled.jpg,10/23/2024 0:00,17.0000000,18.0000000,43.5464030000000,4.1224320000000,LABELBLEU,Plage du Boucanet,82249,Observation #82249,https://biolit.fr/observations/observation-82249/,Bosemprella incarnata,Telline rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162139224.MP_-scaled.jpg,,,Identifiable +N1,82233,Sortie #82233,https://biolit.fr/sorties/sortie-82233/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_145937434.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20241024-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151328246-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154455870.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160058768.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162122951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162419546.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162629975-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151123278.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154248432.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160301757.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162139224.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_163011818.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_165811202-scaled.jpg,10/23/2024 0:00,17.0000000,18.0000000,43.5464030000000,4.1224320000000,LABELBLEU,Plage du Boucanet,82251,Observation #82251,https://biolit.fr/observations/observation-82251/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151328246-scaled.jpg,,,Ne sais pas +N1,82263,Sortie #82263,https://biolit.fr/sorties/sortie-82263/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6273-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6275-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6290-scaled.jpg,10/17/2024 0:00,9.0000000,11.0000000,47.8695250000000,-4.11411200000000,Planète Mer (antenne Dinard),Centre Nautique de Sainte Marine,82265,Observation #82265,https://biolit.fr/observations/observation-82265/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6290-scaled.jpg,,TRUE,Identifiable +N1,82263,Sortie #82263,https://biolit.fr/sorties/sortie-82263/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6273-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6275-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6290-scaled.jpg,10/17/2024 0:00,9.0000000,11.0000000,47.8695250000000,-4.11411200000000,Planète Mer (antenne Dinard),Centre Nautique de Sainte Marine,82267,Observation #82267,https://biolit.fr/observations/observation-82267/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6275-scaled.jpg,,TRUE,Identifiable +N1,82263,Sortie #82263,https://biolit.fr/sorties/sortie-82263/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6273-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6275-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6290-scaled.jpg,10/17/2024 0:00,9.0000000,11.0000000,47.8695250000000,-4.11411200000000,Planète Mer (antenne Dinard),Centre Nautique de Sainte Marine,82269,Observation #82269,https://biolit.fr/observations/observation-82269/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6273-scaled.jpg,,TRUE,Identifiable +N1,82273,Sortie #82273,https://biolit.fr/sorties/sortie-82273/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6453-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6463-scaled.jpg,10/22/2024 0:00,13.0000000,18.0000000,48.6652920000000,-3.86117900000000,Planète Mer (antenne Dinard),Rivière de Morlaix,82275,Observation #82275,https://biolit.fr/observations/observation-82275/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6453-scaled.jpg,,TRUE,Identifiable +N1,82273,Sortie #82273,https://biolit.fr/sorties/sortie-82273/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6453-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6463-scaled.jpg,10/22/2024 0:00,13.0000000,18.0000000,48.6652920000000,-3.86117900000000,Planète Mer (antenne Dinard),Rivière de Morlaix,82277,Observation #82277,https://biolit.fr/observations/observation-82277/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6463-scaled.jpg,,TRUE,Ne sais pas +N1,82285,Sortie #82285,https://biolit.fr/sorties/sortie-82285/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_8232-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_8233-scaled.jpeg,10/24/2024 0:00,15.0000000,16.0000000,48.6413510000000,-2.41644500000000,,Fréhel,82287,Observation #82287,https://biolit.fr/observations/observation-82287/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_8232-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_8233-scaled.jpeg,,TRUE,Identifiable +N1,82300,Sortie #82300,https://biolit.fr/sorties/sortie-82300/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163532-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163910-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163941-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164109-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.273547,5.361856,,Plage du Prophète,82302,Observation #82302,https://biolit.fr/observations/observation-82302/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164109-scaled.jpg,,TRUE,Identifiable +N1,82300,Sortie #82300,https://biolit.fr/sorties/sortie-82300/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163532-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163910-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163941-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164109-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.273547,5.361856,,Plage du Prophète,82304,Observation #82304,https://biolit.fr/observations/observation-82304/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164109-scaled.jpg,,TRUE,Identifiable +N1,82300,Sortie #82300,https://biolit.fr/sorties/sortie-82300/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163532-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163910-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163941-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164109-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.273547,5.361856,,Plage du Prophète,82306,Observation #82306,https://biolit.fr/observations/observation-82306/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163617-scaled.jpg,,TRUE,Identifiable +N1,82300,Sortie #82300,https://biolit.fr/sorties/sortie-82300/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163532-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163910-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163941-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164109-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.273547,5.361856,,Plage du Prophète,82308,Observation #82308,https://biolit.fr/observations/observation-82308/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163614-scaled.jpg,,,Identifiable +N1,82300,Sortie #82300,https://biolit.fr/sorties/sortie-82300/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163532-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163910-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163941-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164109-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.273547,5.361856,,Plage du Prophète,82310,Observation #82310,https://biolit.fr/observations/observation-82310/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163910-scaled.jpg,,TRUE,Identifiable +N1,82300,Sortie #82300,https://biolit.fr/sorties/sortie-82300/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163532-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163910-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163941-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164109-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.273547,5.361856,,Plage du Prophète,82312,Observation #82312,https://biolit.fr/observations/observation-82312/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163917-scaled.jpg,,TRUE,Identifiable +N1,82300,Sortie #82300,https://biolit.fr/sorties/sortie-82300/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163532-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163910-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163941-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164109-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.273547,5.361856,,Plage du Prophète,82314,Observation #82314,https://biolit.fr/observations/observation-82314/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163532-scaled.jpg,,,non-identifiable +N1,82300,Sortie #82300,https://biolit.fr/sorties/sortie-82300/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163532-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163910-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163941-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164109-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.273547,5.361856,,Plage du Prophète,82316,Observation #82316,https://biolit.fr/observations/observation-82316/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163432-scaled.jpg,,,Ne sais pas +N1,82300,Sortie #82300,https://biolit.fr/sorties/sortie-82300/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163532-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163910-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163941-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164109-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.273547,5.361856,,Plage du Prophète,82318,Observation #82318,https://biolit.fr/observations/observation-82318/,Flabellia petiolata,Udotée,,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163950-scaled.jpg,,TRUE,Ne sais pas +N1,82300,Sortie #82300,https://biolit.fr/sorties/sortie-82300/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163532-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163910-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163941-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164109-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.273547,5.361856,,Plage du Prophète,82320,Observation #82320,https://biolit.fr/observations/observation-82320/,Flabellia petiolata,Udotée,,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163941-scaled.jpg,,TRUE,Ne sais pas +N1,82300,Sortie #82300,https://biolit.fr/sorties/sortie-82300/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163532-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163910-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163941-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164109-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.273547,5.361856,,Plage du Prophète,82322,Observation #82322,https://biolit.fr/observations/observation-82322/,Serpula vermicularis,Serpule,,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163913-scaled.jpg,,,Identifiable +N1,82329,Sortie #82329,https://biolit.fr/sorties/sortie-82329/,Guidicelli Pierre-Ange,https://biolit.fr/wp-content/uploads/jet-form-builder/5c722d873dd906e225b7c851645f4852/2024/10/posidonie.jpg,10/25/2024 0:00,6.000003,6.000005,42.7409540000000,9.46152400000000,,,,,,,,,,,, +N1,82400,Sortie #82400,https://biolit.fr/sorties/sortie-82400/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5953-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5955-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5961-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5963-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5964-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5965-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5966-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5967-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.2842860000000,5.31601700000000,Planète Mer,St Estève,82402,Observation #82402,https://biolit.fr/observations/observation-82402/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5951-scaled.jpg,,TRUE,Identifiable +N1,82400,Sortie #82400,https://biolit.fr/sorties/sortie-82400/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5953-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5955-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5961-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5963-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5964-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5965-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5966-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5967-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.2842860000000,5.31601700000000,Planète Mer,St Estève,82404,Observation #82404,https://biolit.fr/observations/observation-82404/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5953-scaled.jpg,,TRUE,Identifiable +N1,82400,Sortie #82400,https://biolit.fr/sorties/sortie-82400/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5953-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5955-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5961-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5963-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5964-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5965-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5966-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5967-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.2842860000000,5.31601700000000,Planète Mer,St Estève,82406,Observation #82406,https://biolit.fr/observations/observation-82406/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5955-scaled.jpg,,TRUE,Identifiable +N1,82400,Sortie #82400,https://biolit.fr/sorties/sortie-82400/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5953-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5955-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5961-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5963-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5964-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5965-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5966-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5967-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.2842860000000,5.31601700000000,Planète Mer,St Estève,82408,Observation #82408,https://biolit.fr/observations/observation-82408/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5959-scaled.jpg,,,Ne sais pas +N1,82400,Sortie #82400,https://biolit.fr/sorties/sortie-82400/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5953-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5955-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5961-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5963-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5964-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5965-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5966-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5967-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.2842860000000,5.31601700000000,Planète Mer,St Estève,82410,Observation #82410,https://biolit.fr/observations/observation-82410/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5966-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5967-scaled.jpg,,TRUE,Identifiable +N1,82400,Sortie #82400,https://biolit.fr/sorties/sortie-82400/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5953-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5955-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5961-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5963-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5964-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5965-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5966-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5967-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.2842860000000,5.31601700000000,Planète Mer,St Estève,82412,Observation #82412,https://biolit.fr/observations/observation-82412/,Stramonita haemastoma,Bouche de sang,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5964-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5965-scaled.jpg,,TRUE,Identifiable +N1,82400,Sortie #82400,https://biolit.fr/sorties/sortie-82400/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5953-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5955-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5961-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5963-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5964-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5965-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5966-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5967-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.2842860000000,5.31601700000000,Planète Mer,St Estève,82414,Observation #82414,https://biolit.fr/observations/observation-82414/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5961-scaled.jpg,,,Ne sais pas +N1,82419,Sortie #82419,https://biolit.fr/sorties/sortie-82419/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_7993-scaled.jpeg,10/22/2024 0:00,18.0000000,19.0000000,48.6362440000000,-2.05569300000000,,Dinard,82421,Observation #82421,https://biolit.fr/observations/observation-82421/,Styela clava,Ascidie japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_7993-scaled.jpeg,,TRUE,Identifiable +N1,82447,Sortie #82447,https://biolit.fr/sorties/sortie-82447/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3614.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3617.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3619.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3623.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3625.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3626.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3631.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3633.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3635.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3641.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3642.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3644.jpg,10/29/2024 0:00,9.0000000,16.0000000,46.6947140000000,-1.94819600000000,,Saint Gilles Croix de Vie,82449,Observation #82449,https://biolit.fr/observations/observation-82449/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3614.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3617.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3619.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3623.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3625.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3626.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3631.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3633.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3635.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3641.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3642.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3644.jpg,,,Ne sais pas +N1,82447,Sortie #82447,https://biolit.fr/sorties/sortie-82447/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3614.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3617.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3619.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3623.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3625.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3626.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3631.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3633.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3635.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3641.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3642.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3644.jpg,10/29/2024 0:00,9.0000000,16.0000000,46.6947140000000,-1.94819600000000,,Saint Gilles Croix de Vie,82451,Observation #82451,https://biolit.fr/observations/observation-82451/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3614.jpg,,,Ne sais pas +N1,82447,Sortie #82447,https://biolit.fr/sorties/sortie-82447/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3614.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3617.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3619.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3623.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3625.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3626.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3631.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3633.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3635.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3641.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3642.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3644.jpg,10/29/2024 0:00,9.0000000,16.0000000,46.6947140000000,-1.94819600000000,,Saint Gilles Croix de Vie,82453,Observation #82453,https://biolit.fr/observations/observation-82453/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3617.jpg,,,Ne sais pas +N1,82447,Sortie #82447,https://biolit.fr/sorties/sortie-82447/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3614.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3617.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3619.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3623.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3625.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3626.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3631.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3633.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3635.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3641.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3642.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3644.jpg,10/29/2024 0:00,9.0000000,16.0000000,46.6947140000000,-1.94819600000000,,Saint Gilles Croix de Vie,82455,Observation #82455,https://biolit.fr/observations/observation-82455/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3619.jpg,,,Ne sais pas +N1,82447,Sortie #82447,https://biolit.fr/sorties/sortie-82447/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3614.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3617.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3619.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3623.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3625.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3626.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3631.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3633.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3635.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3641.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3642.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3644.jpg,10/29/2024 0:00,9.0000000,16.0000000,46.6947140000000,-1.94819600000000,,Saint Gilles Croix de Vie,82457,Observation #82457,https://biolit.fr/observations/observation-82457/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3622.jpg,,,Ne sais pas +N1,82447,Sortie #82447,https://biolit.fr/sorties/sortie-82447/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3614.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3617.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3619.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3623.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3625.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3626.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3631.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3633.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3635.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3641.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3642.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3644.jpg,10/29/2024 0:00,9.0000000,16.0000000,46.6947140000000,-1.94819600000000,,Saint Gilles Croix de Vie,82459,Observation #82459,https://biolit.fr/observations/observation-82459/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3623.jpg,,TRUE,Ne sais pas +N1,82447,Sortie #82447,https://biolit.fr/sorties/sortie-82447/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3614.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3617.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3619.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3623.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3625.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3626.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3631.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3633.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3635.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3641.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3642.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3644.jpg,10/29/2024 0:00,9.0000000,16.0000000,46.6947140000000,-1.94819600000000,,Saint Gilles Croix de Vie,82461,Observation #82461,https://biolit.fr/observations/observation-82461/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3625.jpg,,,Ne sais pas +N1,82447,Sortie #82447,https://biolit.fr/sorties/sortie-82447/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3614.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3617.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3619.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3623.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3625.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3626.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3631.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3633.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3635.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3641.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3642.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3644.jpg,10/29/2024 0:00,9.0000000,16.0000000,46.6947140000000,-1.94819600000000,,Saint Gilles Croix de Vie,82463,Observation #82463,https://biolit.fr/observations/observation-82463/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3626.jpg,,,Ne sais pas +N1,82447,Sortie #82447,https://biolit.fr/sorties/sortie-82447/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3614.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3617.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3619.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3623.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3625.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3626.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3631.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3633.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3635.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3641.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3642.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3644.jpg,10/29/2024 0:00,9.0000000,16.0000000,46.6947140000000,-1.94819600000000,,Saint Gilles Croix de Vie,82465,Observation #82465,https://biolit.fr/observations/observation-82465/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3631.jpg,,,Ne sais pas +N1,82447,Sortie #82447,https://biolit.fr/sorties/sortie-82447/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3614.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3617.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3619.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3623.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3625.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3626.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3631.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3633.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3635.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3641.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3642.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3644.jpg,10/29/2024 0:00,9.0000000,16.0000000,46.6947140000000,-1.94819600000000,,Saint Gilles Croix de Vie,82467,Observation #82467,https://biolit.fr/observations/observation-82467/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3633.jpg,,,Ne sais pas +N1,82447,Sortie #82447,https://biolit.fr/sorties/sortie-82447/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3614.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3617.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3619.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3623.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3625.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3626.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3631.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3633.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3635.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3641.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3642.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3644.jpg,10/29/2024 0:00,9.0000000,16.0000000,46.6947140000000,-1.94819600000000,,Saint Gilles Croix de Vie,82469,Observation #82469,https://biolit.fr/observations/observation-82469/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3635.jpg,,,Ne sais pas +N1,82447,Sortie #82447,https://biolit.fr/sorties/sortie-82447/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3614.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3617.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3619.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3623.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3625.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3626.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3631.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3633.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3635.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3641.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3642.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3644.jpg,10/29/2024 0:00,9.0000000,16.0000000,46.6947140000000,-1.94819600000000,,Saint Gilles Croix de Vie,82471,Observation #82471,https://biolit.fr/observations/observation-82471/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3641.jpg,,,Ne sais pas +N1,82447,Sortie #82447,https://biolit.fr/sorties/sortie-82447/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3614.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3617.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3619.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3623.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3625.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3626.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3631.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3633.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3635.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3641.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3642.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3644.jpg,10/29/2024 0:00,9.0000000,16.0000000,46.6947140000000,-1.94819600000000,,Saint Gilles Croix de Vie,82473,Observation #82473,https://biolit.fr/observations/observation-82473/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3642.jpg,,,Ne sais pas +N1,82447,Sortie #82447,https://biolit.fr/sorties/sortie-82447/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3614.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3617.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3619.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3623.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3625.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3626.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3631.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3633.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3635.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3641.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3642.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3644.jpg,10/29/2024 0:00,9.0000000,16.0000000,46.6947140000000,-1.94819600000000,,Saint Gilles Croix de Vie,82475,Observation #82475,https://biolit.fr/observations/observation-82475/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3644.jpg,,,Ne sais pas +N1,82497,Sortie #82497,https://biolit.fr/sorties/sortie-82497/,TIGNON Anthony,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029102844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029102850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029103036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029103042_01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029103048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029103228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029103230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029103458-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029103547-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029104813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029105313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029105338-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029105816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029105821-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029114328-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029114429-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029114444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029114448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029114450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029115334-scaled.jpg,10/29/2024 0:00,9.0:45,16.0000000,46.6903190000000,-1.94101800000000,,SAINT GILLES CROIX DE VIE,,,,,,,,,, +N1,82532,Sortie #82532,https://biolit.fr/sorties/sortie-82532/,BENSOUSSAN NOAM,https://biolit.fr/wp-content/uploads/jet-form-builder/badb8f677b380e1097819da771a72519/2024/11/21-OS-DE-SEICHE.png,11/01/2024,15.0:15,16.0000000,48.358799000000,-4.54189000000000,,"sainte Anne du portzic, Brest",,,,,,,,,, +N1,82535,Sortie #82535,https://biolit.fr/sorties/sortie-82535/,AILERONS,https://biolit.fr/wp-content/uploads/jet-form-builder/104a3ad0debfd3bf7c7f67cd28f4351b/2024/11/20241103_111827.jpg,11/03/2024,11.0000000,11.0:19,43.5230780000000,3.92322400000000,Ailerons,"Plage du zénith, Palavas-les-Flots",82537,Observation #82537,https://biolit.fr/observations/observation-82537/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/104a3ad0debfd3bf7c7f67cd28f4351b/2024/11/20241103_111827.jpg,,TRUE,Identifiable +N1,82559,Sortie #82559,https://biolit.fr/sorties/sortie-82559/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1596-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1595-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1594-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1593-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1591-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1590-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1589-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1588-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1579-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1578-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1575-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1571-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1570-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1569-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1567-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1565-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1563.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1561-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1559.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1554.jpeg,11/01/2024,14.0000000,17.0000000,49.5885650000000,0.110722000000000,,Octeville-sur-Mer,,,,,,,,,, +N1,82562,Sortie #82562,https://biolit.fr/sorties/sortie-82562/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1596-1-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5885650000000,0.110722000000000,,Octeville-sur-Mer,,,,,,,,,, +N1,82566,Sortie #82566,https://biolit.fr/sorties/sortie-82566/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1595-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1594-1-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5888430000000,0.112009000000000,,Octeville-sur-Mer,,,,,,,,,, +N1,82569,Sortie #82569,https://biolit.fr/sorties/sortie-82569/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1593-1-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5895610000000,0.112438000000000,,Octeville-sur-Mer,83286,Observation #83286,https://biolit.fr/observations/observation-83286/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1593-1-scaled.jpeg,,,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82613,Observation #82613,https://biolit.fr/observations/observation-82613/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg,,,Identifiable +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82615,Observation #82615,https://biolit.fr/observations/observation-82615/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,,,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82617,Observation #82617,https://biolit.fr/observations/observation-82617/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg,,,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82619,Observation #82619,https://biolit.fr/observations/observation-82619/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg,,,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82621,Observation #82621,https://biolit.fr/observations/observation-82621/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg,,TRUE,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82623,Observation #82623,https://biolit.fr/observations/observation-82623/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg,,,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82625,Observation #82625,https://biolit.fr/observations/observation-82625/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg,,,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82627,Observation #82627,https://biolit.fr/observations/observation-82627/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg,,TRUE,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82629,Observation #82629,https://biolit.fr/observations/observation-82629/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg,,,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82631,Observation #82631,https://biolit.fr/observations/observation-82631/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg,,TRUE,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82633,Observation #82633,https://biolit.fr/observations/observation-82633/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg,,,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82635,Observation #82635,https://biolit.fr/observations/observation-82635/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg,,,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82637,Observation #82637,https://biolit.fr/observations/observation-82637/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg,,,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82640,Observation #82640,https://biolit.fr/observations/observation-82640/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg,,,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82645,Observation #82645,https://biolit.fr/observations/observation-82645/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg,,TRUE,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82647,Observation #82647,https://biolit.fr/observations/observation-82647/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg,,,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82657,Observation #82657,https://biolit.fr/observations/observation-82657/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg,,TRUE,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82659,Observation #82659,https://biolit.fr/observations/observation-82659/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg,,,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82661,Observation #82661,https://biolit.fr/observations/observation-82661/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg,,,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82663,Observation #82663,https://biolit.fr/observations/observation-82663/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg,,,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82665,Observation #82665,https://biolit.fr/observations/observation-82665/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,,,Ne sais pas +N1,82673,Sortie #82673,https://biolit.fr/sorties/sortie-82673/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2024/11/quadrat1_01vue-generale.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2024/11/quadrat1_02fucus-dente.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2024/11/quadrat1_03-photo-tous-specimens.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2024/11/quadrat1_04-Gibbules.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2024/11/quadrat1_05-gibbule-seule.jpg,11/02/2024,11.0000000,12.0:25,47.581953,2.905577,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),PLAGE DU BERCHIS LARMOR BADEN,,,,,,,,,, +N1,82699,Sortie #82699,https://biolit.fr/sorties/sortie-82699/,MARTINEZ JEAN YVES,https://biolit.fr/wp-content/uploads/jet-form-builder/4309c546716df390144c2b035dd6feda/2024/11/20241026_181511-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4309c546716df390144c2b035dd6feda/2024/11/20241026_181200-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4309c546716df390144c2b035dd6feda/2024/11/20241026_181203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4309c546716df390144c2b035dd6feda/2024/11/20241026_182030-scaled.jpg,10/26/2024 0:00,17.0000000,18.0000000,47.8394640000000,-4.16708000000000,,plage de l'île Tudy (29 finistère sud),,,,,,,,,, +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82723,Observation #82723,https://biolit.fr/observations/observation-82723/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg,,TRUE,Identifiable +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82725,Observation #82725,https://biolit.fr/observations/observation-82725/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg,,TRUE,Identifiable +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82727,Observation #82727,https://biolit.fr/observations/observation-82727/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg,,TRUE,Identifiable +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82729,Observation #82729,https://biolit.fr/observations/observation-82729/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg,,TRUE,Identifiable +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82731,Observation #82731,https://biolit.fr/observations/observation-82731/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg,,TRUE,Identifiable +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82733,Observation #82733,https://biolit.fr/observations/observation-82733/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg,,,Identifiable +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82735,Observation #82735,https://biolit.fr/observations/observation-82735/,Ascidia mentula,Ascidie rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg,,,Identifiable +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82737,Observation #82737,https://biolit.fr/observations/observation-82737/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg,,,Identifiable +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82739,Observation #82739,https://biolit.fr/observations/observation-82739/,Botrylloides spp. (leachii violaceus diegensis),Botrylles,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg,,,Identifiable +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82741,Observation #82741,https://biolit.fr/observations/observation-82741/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg,,TRUE,Identifiable +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82743,Observation #82743,https://biolit.fr/observations/observation-82743/,Crangon crangon,Crevette grise européenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg,,,Identifiable +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82745,Observation #82745,https://biolit.fr/observations/observation-82745/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg,,,Ne sais pas +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82747,Observation #82747,https://biolit.fr/observations/observation-82747/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg,,TRUE,Identifiable +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82749,Observation #82749,https://biolit.fr/observations/observation-82749/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg,,TRUE,Identifiable +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82751,Observation #82751,https://biolit.fr/observations/observation-82751/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg,,,Ne sais pas +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82753,Observation #82753,https://biolit.fr/observations/observation-82753/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg,,,Ne sais pas +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82755,Observation #82755,https://biolit.fr/observations/observation-82755/,Gaidropsarus vulgaris,Motelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,,,Identifiable +N1,82766,Sortie #82766,https://biolit.fr/sorties/sortie-82766/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Murex-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nudibranche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Tomate-de-mer-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7031770,-1.8452270,,Rochers de la plage de Port Mer,82768,Observation #82768,https://biolit.fr/observations/observation-82768/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Murex-scaled.jpg,,TRUE,Identifiable +N1,82766,Sortie #82766,https://biolit.fr/sorties/sortie-82766/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Murex-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nudibranche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Tomate-de-mer-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7031770,-1.8452270,,Rochers de la plage de Port Mer,82770,Observation #82770,https://biolit.fr/observations/observation-82770/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-scaled.jpg,,TRUE,Identifiable +N1,82766,Sortie #82766,https://biolit.fr/sorties/sortie-82766/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Murex-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nudibranche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Tomate-de-mer-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7031770,-1.8452270,,Rochers de la plage de Port Mer,82772,Observation #82772,https://biolit.fr/observations/observation-82772/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nephtis-scaled.jpg,,TRUE,Identifiable +N1,82766,Sortie #82766,https://biolit.fr/sorties/sortie-82766/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Murex-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nudibranche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Tomate-de-mer-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7031770,-1.8452270,,Rochers de la plage de Port Mer,82774,Observation #82774,https://biolit.fr/observations/observation-82774/,Hediste diversicolor,Néréis multicolore,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-scaled.jpg,,TRUE,Identifiable +N1,82766,Sortie #82766,https://biolit.fr/sorties/sortie-82766/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Murex-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nudibranche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Tomate-de-mer-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7031770,-1.8452270,,Rochers de la plage de Port Mer,82776,Observation #82776,https://biolit.fr/observations/observation-82776/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nudibranche-scaled.jpg,,TRUE,Identifiable +N1,82766,Sortie #82766,https://biolit.fr/sorties/sortie-82766/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Murex-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nudibranche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Tomate-de-mer-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7031770,-1.8452270,,Rochers de la plage de Port Mer,82778,Observation #82778,https://biolit.fr/observations/observation-82778/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-scaled.jpg,,TRUE,Identifiable +N1,82766,Sortie #82766,https://biolit.fr/sorties/sortie-82766/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Murex-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nudibranche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Tomate-de-mer-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7031770,-1.8452270,,Rochers de la plage de Port Mer,82780,Observation #82780,https://biolit.fr/observations/observation-82780/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/ponte-de-pourpre-scaled.jpg,,,Identifiable +N1,82766,Sortie #82766,https://biolit.fr/sorties/sortie-82766/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Murex-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nudibranche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Tomate-de-mer-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7031770,-1.8452270,,Rochers de la plage de Port Mer,82782,Observation #82782,https://biolit.fr/observations/observation-82782/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/pourpre-scaled.jpg,,TRUE,Identifiable +N1,82766,Sortie #82766,https://biolit.fr/sorties/sortie-82766/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Murex-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nudibranche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Tomate-de-mer-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7031770,-1.8452270,,Rochers de la plage de Port Mer,82784,Observation #82784,https://biolit.fr/observations/observation-82784/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Tomate-de-mer-scaled.jpg,,TRUE,Identifiable +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82820,Observation #82820,https://biolit.fr/observations/observation-82820/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg,,,Ne sais pas +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82822,Observation #82822,https://biolit.fr/observations/observation-82822/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg,,TRUE,Identifiable +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82824,Observation #82824,https://biolit.fr/observations/observation-82824/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg,,TRUE,Identifiable +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82826,Observation #82826,https://biolit.fr/observations/observation-82826/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg,,TRUE,Identifiable +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82828,Observation #82828,https://biolit.fr/observations/observation-82828/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg,,,Identifiable +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82830,Observation #82830,https://biolit.fr/observations/observation-82830/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg,,TRUE,Identifiable +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82832,Observation #82832,https://biolit.fr/observations/observation-82832/,Botryllus sp. 1,Botrylle,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg,,,Identifiable +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82834,Observation #82834,https://biolit.fr/observations/observation-82834/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg,,,Identifiable +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82836,Observation #82836,https://biolit.fr/observations/observation-82836/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg,,TRUE,Ne sais pas +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82838,Observation #82838,https://biolit.fr/observations/observation-82838/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg,,TRUE,Identifiable +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82840,Observation #82840,https://biolit.fr/observations/observation-82840/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg,,,Ne sais pas +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82842,Observation #82842,https://biolit.fr/observations/observation-82842/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg,,TRUE,Identifiable +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82844,Observation #82844,https://biolit.fr/observations/observation-82844/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg,,TRUE,Identifiable +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82846,Observation #82846,https://biolit.fr/observations/observation-82846/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg,,TRUE,Identifiable +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82848,Observation #82848,https://biolit.fr/observations/observation-82848/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg,,TRUE,Identifiable +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82850,Observation #82850,https://biolit.fr/observations/observation-82850/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg,,TRUE,Identifiable +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82852,Observation #82852,https://biolit.fr/observations/observation-82852/,Hediste diversicolor,Néréis multicolore,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg,,TRUE,Identifiable +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82854,Observation #82854,https://biolit.fr/observations/observation-82854/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,,,Identifiable +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82856,Observation #82856,https://biolit.fr/observations/observation-82856/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg,,,Ne sais pas +N1,82863,Sortie #82863,https://biolit.fr/sorties/sortie-82863/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Siponcle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Tomate-de-mer-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.7023980000000,-1.84829400000000,,Rochers de la plage de Port Mer,82865,Observation #82865,https://biolit.fr/observations/observation-82865/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ponte-de-pourpre-1-scaled.jpg,,,Identifiable +N1,82863,Sortie #82863,https://biolit.fr/sorties/sortie-82863/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Siponcle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Tomate-de-mer-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.7023980000000,-1.84829400000000,,Rochers de la plage de Port Mer,82867,Observation #82867,https://biolit.fr/observations/observation-82867/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Porcellane-scaled.jpg,,,Identifiable +N1,82863,Sortie #82863,https://biolit.fr/sorties/sortie-82863/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Siponcle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Tomate-de-mer-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.7023980000000,-1.84829400000000,,Rochers de la plage de Port Mer,82869,Observation #82869,https://biolit.fr/observations/observation-82869/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Pourpre-1-scaled.jpg,,TRUE,Identifiable +N1,82875,Sortie #82875,https://biolit.fr/sorties/sortie-82875/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Siponcle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Tomate-de-mer-2-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.703176,-1.8452290,,Rochers de la plage de Port Mer,82877,Observation #82877,https://biolit.fr/observations/observation-82877/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Siponcle-1-scaled.jpg,,,Ne sais pas +N1,82875,Sortie #82875,https://biolit.fr/sorties/sortie-82875/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Siponcle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Tomate-de-mer-2-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.703176,-1.8452290,,Rochers de la plage de Port Mer,82879,Observation #82879,https://biolit.fr/observations/observation-82879/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Tomate-de-mer-2-scaled.jpg,,TRUE,Identifiable +N1,82882,Sortie #82882,https://biolit.fr/sorties/sortie-82882/,Joseph Anais,https://biolit.fr/wp-content/uploads/jet-form-builder/45039957c07166d23841df83f8376df0/2024/11/IMG_5174.jpeg,10/23/2024 0:00,16.0000000,18.0000000,49.7205950000000,-1.9281010000000,,Goury,82884,Observation #82884,https://biolit.fr/observations/observation-82884/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/45039957c07166d23841df83f8376df0/2024/11/IMG_5174.jpeg,,,Ne sais pas +N1,82900,Sortie #82900,https://biolit.fr/sorties/sortie-82900/,Perrin Thomas,https://biolit.fr/wp-content/uploads/jet-form-builder/1f97f62a72da5d65ccac8f413c7eda4b/2024/11/IMG_20241107_151702-scaled.jpg,11/07/2024,15.0:17,15.0:19,48.6041080000000,-1.76182200000000,,Cherrueix,,,,,,,,,, +N1,82903,Sortie #82903,https://biolit.fr/sorties/sortie-82903/,Perrin Thomas,https://biolit.fr/wp-content/uploads/jet-form-builder/1f97f62a72da5d65ccac8f413c7eda4b/2024/11/IMG_20241107_151702-1-scaled.jpg,11/07/2024,15.0:23,15.0:23,48.4836730000000,-1.75466000000000,,Cherrueix,,,,,,,,,, +N1,82906,Sortie #82906,https://biolit.fr/sorties/sortie-82906/,Perrin Thomas,https://biolit.fr/wp-content/uploads/jet-form-builder/1f97f62a72da5d65ccac8f413c7eda4b/2024/11/IMG_20241107_151702-2-scaled.jpg,11/07/2024,15.0:34,15.0:34,48.4671230,-1.7680340,,Cherrueix,,,,,,,,,, +N1,82913,Sortie #82913,https://biolit.fr/sorties/sortie-82913/,perez killian,https://biolit.fr/wp-content/uploads/jet-form-builder/ac1a96b9d6c0916ed2166eae78ea2822/2024/11/2bea3f7926351917d92d74598fd17d2e-pearlsquare.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ac1a96b9d6c0916ed2166eae78ea2822/2024/11/8a9a2a6e12b8f5ad72e453857005592f-pearlsquare.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ac1a96b9d6c0916ed2166eae78ea2822/2024/11/8a9a2a6e12b8f5ad72e453857005592f-pearlsquare-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ac1a96b9d6c0916ed2166eae78ea2822/2024/11/8a9a2a6e12b8f5ad72e453857005592f-pearlsquare-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ac1a96b9d6c0916ed2166eae78ea2822/2024/11/43775ae3ca02f3579ec45395bf13bce9-pearlsquare.jpg,10/17/2024 0:00,11.0000000,12.0000000,43.319296,5.4165500,AIEJE,plage saint esteve,82915,Observation #82915,https://biolit.fr/observations/observation-82915/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ac1a96b9d6c0916ed2166eae78ea2822/2024/11/8a9a2a6e12b8f5ad72e453857005592f-pearlsquare-1.jpg,,,Identifiable +N1,82919,Sortie #82919,https://biolit.fr/sorties/sortie-82919/,perez killian,https://biolit.fr/wp-content/uploads/jet-form-builder/ac1a96b9d6c0916ed2166eae78ea2822/2024/11/152df79ab6b29029495963c199709e8f-pearlsquare.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ac1a96b9d6c0916ed2166eae78ea2822/2024/11/644470c07beb6ff8153c26a808a7a0a3-pearlsquare.jpg,10/17/2024 0:00,11.0000000,12.0000000,43.319296,5.4165500,AIEJE,plage saint esteve,82922,Observation #82922,https://biolit.fr/observations/observation-82922/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ac1a96b9d6c0916ed2166eae78ea2822/2024/11/644470c07beb6ff8153c26a808a7a0a3-pearlsquare.jpg,,,Identifiable +N1,82927,Sortie #82927,https://biolit.fr/sorties/sortie-82927/,pereiravaz daniela,https://biolit.fr/wp-content/uploads/jet-form-builder/531eb6fe34251789b1e9a22d68bb71d5/2024/11/IMG_20241017_104321_427.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/531eb6fe34251789b1e9a22d68bb71d5/2024/11/IMG_20241017_104320_616.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/531eb6fe34251789b1e9a22d68bb71d5/2024/11/IMG_20241017_104317_450.jpg,10/17/2024 0:00,11.0000000,12.0000000,43.2842060000000,5.31640600000000,AIEJE,Saint estève,,,,,,,,,, +N1,82933,Sortie #82933,https://biolit.fr/sorties/sortie-82933/,Perrin Thomas,https://biolit.fr/wp-content/uploads/jet-form-builder/1f97f62a72da5d65ccac8f413c7eda4b/2024/11/IMG_20241107_151702-3-scaled.jpg,11/07/2024,15.0:15,15.0000000,48.6046200000000,-1.76160400000000,,Cherrueix,,,,,,,,,, +N1,82936,Sortie #82936,https://biolit.fr/sorties/sortie-82936/,Perrin Thomas,https://biolit.fr/wp-content/uploads/jet-form-builder/1f97f62a72da5d65ccac8f413c7eda4b/2024/11/IMG_20241107_151702-4-scaled.jpg,11/07/2024,15.0:15,15.0000000,48.603948000000,-1.76240200000000,,Cherrueix,,,,,,,,,, +N1,82939,Sortie #82939,https://biolit.fr/sorties/sortie-82939/,Perrin Thomas,https://biolit.fr/wp-content/uploads/jet-form-builder/1f97f62a72da5d65ccac8f413c7eda4b/2024/11/IMG_20241107_151702-5-scaled.jpg,11/07/2024,15.0:15,15.0000000,48.6040440000000,-1.76232900000000,,cherrueix,,,,,,,,,, +N1,82942,Sortie #82942,https://biolit.fr/sorties/sortie-82942/,Perrin Thomas,https://biolit.fr/wp-content/uploads/jet-form-builder/1f97f62a72da5d65ccac8f413c7eda4b/2024/11/20240422173438_IMG_9031-scaled.jpg,11/09/2024,14.0000000,15.0000000,48.6204020000000,-1.85067100000000,,Saint Benoît des ondes,,,,,,,,,, +N1,82954,Sortie #82954,https://biolit.fr/sorties/sortie-82954/,Ruel Fiona,https://biolit.fr/wp-content/uploads/jet-form-builder/f84b24ea8db2e9d97819a4241cc09276/2024/11/IMG_0171-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f84b24ea8db2e9d97819a4241cc09276/2024/11/IMG_0218-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f84b24ea8db2e9d97819a4241cc09276/2024/11/IMG_0221-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f84b24ea8db2e9d97819a4241cc09276/2024/11/IMG_0238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f84b24ea8db2e9d97819a4241cc09276/2024/11/IMG_0239-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f84b24ea8db2e9d97819a4241cc09276/2024/11/IMG_0246-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f84b24ea8db2e9d97819a4241cc09276/2024/11/IMG_0249-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f84b24ea8db2e9d97819a4241cc09276/2024/11/IMG_0253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f84b24ea8db2e9d97819a4241cc09276/2024/11/IMG_0259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f84b24ea8db2e9d97819a4241cc09276/2024/11/IMG_0261-scaled.jpg,10/10/2022,14.000001,17.000002,49.54832,0.08321,,Octeville sur mer,94833,Observation #94833,https://biolit.fr/observations/observation-94833/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f84b24ea8db2e9d97819a4241cc09276/2024/11/IMG_0253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f84b24ea8db2e9d97819a4241cc09276/2024/11/IMG_0259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f84b24ea8db2e9d97819a4241cc09276/2024/11/IMG_0261-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f84b24ea8db2e9d97819a4241cc09276/2024/11/IMG_0246-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f84b24ea8db2e9d97819a4241cc09276/2024/11/IMG_0249-scaled.jpg,,,Ne sais pas +N1,82977,Sortie #82977,https://biolit.fr/sorties/sortie-82977/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/11/09-2024_Justificatif_Leroymerlin_AB.jpg,11/12/2024,14.0000000,16.0000000,47.581953,-2.905577,Planète Mer,uooui,,,,,,,,,, +N1,82987,Sortie #82987,https://biolit.fr/sorties/sortie-82987/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241023_101730-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241023_101748-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241023_102632-scaled.jpg,10/23/2024 0:00,11.0000000,11.0000000,43.2842960000000,5.31606400000000,Planète Mer,Saint-Estève,82989,Observation #82989,https://biolit.fr/observations/observation-82989/,Jujubinus striatus,Troque jujube striée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241023_101730-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241023_101748-scaled.jpg,,,Identifiable +N1,82987,Sortie #82987,https://biolit.fr/sorties/sortie-82987/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241023_101730-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241023_101748-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241023_102632-scaled.jpg,10/23/2024 0:00,11.0000000,11.0000000,43.2842960000000,5.31606400000000,Planète Mer,Saint-Estève,82991,Observation #82991,https://biolit.fr/observations/observation-82991/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241023_102632-scaled.jpg,,TRUE,Identifiable +N1,82995,Sortie #82995,https://biolit.fr/sorties/sortie-82995/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241023_141831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241023_143144-scaled.jpg,10/23/2024 0:00,14.0000000,14.0000000,43.2795100000000,5.29511300000000,Planète Mer,'île de Ratonneau,82997,Observation #82997,https://biolit.fr/observations/observation-82997/,Pallenis maritima,Astérolide maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241023_141831-scaled.jpg,,,Identifiable +N1,82995,Sortie #82995,https://biolit.fr/sorties/sortie-82995/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241023_141831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241023_143144-scaled.jpg,10/23/2024 0:00,14.0000000,14.0000000,43.2795100000000,5.29511300000000,Planète Mer,'île de Ratonneau,82999,Observation #82999,https://biolit.fr/observations/observation-82999/,Astragalus tragacantha,Astragale de Marseille,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241023_143144-scaled.jpg,,,Identifiable +N1,83021,Sortie #83021,https://biolit.fr/sorties/sortie-83021/,De Ketelaere Mikael,https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/Becasseau-sanderling.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/ChenillePapillon.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/Coquille-saint-jacques.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/DSC09595.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/DSC09601.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/DSC09603.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/DSC09612.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/DSC09613.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/DSC09625.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/DSC09627.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/DSC09636.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/Eponge.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/Eponge-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/Goelands.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/huitre-commune-v0.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/huitre-commune-v1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/huitre-commune-v2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/huitre-commune-v3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/meduse-Aurelia-aurita.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/meduse_Gonades-Aurelia-aurita.jpg,11/12/2024,10.0000000,15.0000000,51.3630760000000,3.33744000000000,,knokke,,,,,,,,,, +N1,83027,Sortie #83027,https://biolit.fr/sorties/sortie-83027/,De Ketelaere Mikael,https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/Varech-de-vessie-v1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/Varech-de-vessie-v2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/Varech-de-vessie-v3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/Varech-de-vessie-v4.jpg,11/12/2024,10.0000000,15.0000000,51.362605000000,3.3343510000000,,knokke,,,,,,,,,, +N1,83031,Sortie #83031,https://biolit.fr/sorties/sortie-83031/,De Ketelaere Mikael,https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/meduse-Aurelia-aurita-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/meduse_Gonades-Aurelia-aurita-1.jpg,11/12/2024,10.0000000,15.0000000,51.3642320000000,3.33709700000000,,knokke,,,,,,,,,, +N1,83049,Sortie #83049,https://biolit.fr/sorties/sortie-83049/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04061-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04132-scaled.jpg,11/12/2024,10.0000000,16.0000000,51.3602800000000,3.32121800000000,,Plage de knokke,83051,Observation #83051,https://biolit.fr/observations/observation-83051/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04061-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04132-scaled.jpg,,,Ne sais pas +N1,83049,Sortie #83049,https://biolit.fr/sorties/sortie-83049/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04061-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04132-scaled.jpg,11/12/2024,10.0000000,16.0000000,51.3602800000000,3.32121800000000,,Plage de knokke,83054,Observation #83054,https://biolit.fr/observations/observation-83054/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04132-scaled.jpg,,,Ne sais pas +N1,83049,Sortie #83049,https://biolit.fr/sorties/sortie-83049/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04061-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04132-scaled.jpg,11/12/2024,10.0000000,16.0000000,51.3602800000000,3.32121800000000,,Plage de knokke,83056,Observation #83056,https://biolit.fr/observations/observation-83056/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04132-scaled.jpg,,,Ne sais pas +N1,83072,Sortie #83072,https://biolit.fr/sorties/sortie-83072/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04123-scaled.jpg,11/12/2024,10.0000000,16.0000000,51.3630780000000,3.3341360000000,,Plage de Knokke,83082,Observation #83082,https://biolit.fr/observations/observation-83082/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04123-scaled.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83119,Observation #83119,https://biolit.fr/observations/observation-83119/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83121,Observation #83121,https://biolit.fr/observations/observation-83121/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83123,Observation #83123,https://biolit.fr/observations/observation-83123/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83125,Observation #83125,https://biolit.fr/observations/observation-83125/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83127,Observation #83127,https://biolit.fr/observations/observation-83127/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83129,Observation #83129,https://biolit.fr/observations/observation-83129/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83131,Observation #83131,https://biolit.fr/observations/observation-83131/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83133,Observation #83133,https://biolit.fr/observations/observation-83133/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83135,Observation #83135,https://biolit.fr/observations/observation-83135/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg,,TRUE,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83137,Observation #83137,https://biolit.fr/observations/observation-83137/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83139,Observation #83139,https://biolit.fr/observations/observation-83139/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83141,Observation #83141,https://biolit.fr/observations/observation-83141/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83143,Observation #83143,https://biolit.fr/observations/observation-83143/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83145,Observation #83145,https://biolit.fr/observations/observation-83145/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83147,Observation #83147,https://biolit.fr/observations/observation-83147/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83149,Observation #83149,https://biolit.fr/observations/observation-83149/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83151,Observation #83151,https://biolit.fr/observations/observation-83151/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83153,Observation #83153,https://biolit.fr/observations/observation-83153/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83155,Observation #83155,https://biolit.fr/observations/observation-83155/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83157,Observation #83157,https://biolit.fr/observations/observation-83157/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,,,Ne sais pas +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83181,Observation #83181,https://biolit.fr/observations/observation-83181/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg,,,Identifiable +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83183,Observation #83183,https://biolit.fr/observations/observation-83183/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg,,,non-identifiable +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83185,Observation #83185,https://biolit.fr/observations/observation-83185/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg,,,non-identifiable +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83187,Observation #83187,https://biolit.fr/observations/observation-83187/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg,,,Identifiable +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83189,Observation #83189,https://biolit.fr/observations/observation-83189/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg,,,Identifiable +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83191,Observation #83191,https://biolit.fr/observations/observation-83191/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg,,,Identifiable +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83193,Observation #83193,https://biolit.fr/observations/observation-83193/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg,,,Identifiable +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83195,Observation #83195,https://biolit.fr/observations/observation-83195/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg,,,non-identifiable +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83197,Observation #83197,https://biolit.fr/observations/observation-83197/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg,,,non-identifiable +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83199,Observation #83199,https://biolit.fr/observations/observation-83199/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg,,,Identifiable +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83201,Observation #83201,https://biolit.fr/observations/observation-83201/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg,,,Identifiable +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83203,Observation #83203,https://biolit.fr/observations/observation-83203/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg,,,Identifiable +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83205,Observation #83205,https://biolit.fr/observations/observation-83205/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg,,,Identifiable +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83207,Observation #83207,https://biolit.fr/observations/observation-83207/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg,,,non-identifiable +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83209,Observation #83209,https://biolit.fr/observations/observation-83209/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg,,,non-identifiable +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83211,Observation #83211,https://biolit.fr/observations/observation-83211/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg,,TRUE,Identifiable +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83213,Observation #83213,https://biolit.fr/observations/observation-83213/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg,,,Ne sais pas +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83215,Observation #83215,https://biolit.fr/observations/observation-83215/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg,,,Ne sais pas +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83217,Observation #83217,https://biolit.fr/observations/observation-83217/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg,,,Ne sais pas +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83219,Observation #83219,https://biolit.fr/observations/observation-83219/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,,,Ne sais pas +N1,83276,Sortie #83276,https://biolit.fr/sorties/sortie-83276/,Alarcon Messaline,https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2024/11/ID-BioLit.png,11/14/2024 0:00,14.0000000,15.0000000,43.2610270000000,5.37270100000000,,Plage prado,,,,,,,,,, +N1,83279,Sortie #83279,https://biolit.fr/sorties/sortie-83279/,Alarcon Messaline,https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2024/11/ID-BioLit-1.png,11/13/2024 0:00,14.0:11,15.0000000,43.2558800000000,5.37515800000000,,,,,,,,,,,, +N1,83308,Sortie #83308,https://biolit.fr/sorties/sortie-83308/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1596-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1595-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1594-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1593-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1591-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1590-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1589-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1588-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1579-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1578-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1575-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1571-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1570-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1569-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1567-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1565-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1563-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1561-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1559-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1554-1.jpeg,11/01/2024,14.0000000,17.0000000,49.5479610000000,0.0842640000000000,,Octeville sur mer,,,,,,,,,, +N1,83312,Sortie #83312,https://biolit.fr/sorties/sortie-83312/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1595-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1594-3-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5483650000000,0.0832990000000000,,Octeville-sur-Mer,83314,Observation #83314,https://biolit.fr/observations/observation-83314/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1595-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1594-3-scaled.jpeg,,,Ne sais pas +N1,83321,Sortie #83321,https://biolit.fr/sorties/sortie-83321/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1591-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1590-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1589-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1588-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1596-3-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5480990000000,0.0831270000000000,,Octeville-sur-Mer,83323,Observation #83323,https://biolit.fr/observations/observation-83323/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1591-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1590-2-scaled.jpeg,,,Ne sais pas +N1,83321,Sortie #83321,https://biolit.fr/sorties/sortie-83321/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1591-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1590-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1589-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1588-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1596-3-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5480990000000,0.0831270000000000,,Octeville-sur-Mer,83325,Observation #83325,https://biolit.fr/observations/observation-83325/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1589-2-scaled.jpeg,,,Identifiable +N1,83321,Sortie #83321,https://biolit.fr/sorties/sortie-83321/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1591-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1590-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1589-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1588-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1596-3-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5480990000000,0.0831270000000000,,Octeville-sur-Mer,83327,Observation #83327,https://biolit.fr/observations/observation-83327/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1588-2-scaled.jpeg,,,Identifiable +N1,83321,Sortie #83321,https://biolit.fr/sorties/sortie-83321/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1591-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1590-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1589-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1588-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1596-3-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5480990000000,0.0831270000000000,,Octeville-sur-Mer,83329,Observation #83329,https://biolit.fr/observations/observation-83329/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1596-3-scaled.jpeg,,,Ne sais pas +N1,83334,Sortie #83334,https://biolit.fr/sorties/sortie-83334/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1579-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1575-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1578-2-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5478220000000,0.0829120000000000,,Octeville-sur-Mer,83336,Observation #83336,https://biolit.fr/observations/observation-83336/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1579-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1575-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1578-2-scaled.jpeg,,,Ne sais pas +N1,83354,Sortie #83354,https://biolit.fr/sorties/sortie-83354/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1571-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1570-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1569-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1567-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1563-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1565-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1561-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1559-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1554-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1548.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1549.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1547.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1542.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1545.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1543.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1541.jpeg,11/01/2024,14.0000000,17.0000000,49.5479600000000,0.0832560000000000,,Octeville-sur-Mer,83356,Observation #83356,https://biolit.fr/observations/observation-83356/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1571-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1570-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1569-2-scaled.jpeg,,TRUE,Ne sais pas +N1,83354,Sortie #83354,https://biolit.fr/sorties/sortie-83354/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1571-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1570-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1569-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1567-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1563-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1565-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1561-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1559-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1554-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1548.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1549.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1547.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1542.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1545.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1543.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1541.jpeg,11/01/2024,14.0000000,17.0000000,49.5479600000000,0.0832560000000000,,Octeville-sur-Mer,83358,Observation #83358,https://biolit.fr/observations/observation-83358/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1567-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1563-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1565-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1561-2-scaled.jpeg,,TRUE,Ne sais pas +N1,83354,Sortie #83354,https://biolit.fr/sorties/sortie-83354/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1571-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1570-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1569-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1567-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1563-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1565-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1561-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1559-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1554-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1548.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1549.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1547.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1542.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1545.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1543.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1541.jpeg,11/01/2024,14.0000000,17.0000000,49.5479600000000,0.0832560000000000,,Octeville-sur-Mer,83360,Observation #83360,https://biolit.fr/observations/observation-83360/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1559-2.jpeg,,,Ne sais pas +N1,83354,Sortie #83354,https://biolit.fr/sorties/sortie-83354/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1571-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1570-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1569-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1567-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1563-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1565-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1561-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1559-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1554-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1548.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1549.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1547.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1542.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1545.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1543.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1541.jpeg,11/01/2024,14.0000000,17.0000000,49.5479600000000,0.0832560000000000,,Octeville-sur-Mer,83362,Observation #83362,https://biolit.fr/observations/observation-83362/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1554-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1548.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1549.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1547.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1542.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1545.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1543.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1541.jpeg,,TRUE,Ne sais pas +N1,83372,Sortie #83372,https://biolit.fr/sorties/sortie-83372/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1540-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1536.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1535.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1534-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1531-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1530-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1529-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1525-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5482080000000,0.0834270000000000,,Octeville-sur-Mer,83374,Observation #83374,https://biolit.fr/observations/observation-83374/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1540-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1536.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1535.jpeg,,TRUE,Ne sais pas +N1,83372,Sortie #83372,https://biolit.fr/sorties/sortie-83372/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1540-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1536.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1535.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1534-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1531-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1530-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1529-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1525-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5482080000000,0.0834270000000000,,Octeville-sur-Mer,83376,Observation #83376,https://biolit.fr/observations/observation-83376/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1534-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1531-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1530-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1529-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1525-scaled.jpeg,,TRUE,Ne sais pas +N1,83386,Sortie #83386,https://biolit.fr/sorties/sortie-83386/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1495.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1494.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1480.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1479.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1481.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1490.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1491-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1497-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.547947000000,0.0827620000000000,,Octeville-sur-Mer,83388,Observation #83388,https://biolit.fr/observations/observation-83388/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1495.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1494.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1480.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1479.jpeg,,,Ne sais pas +N1,83386,Sortie #83386,https://biolit.fr/sorties/sortie-83386/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1495.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1494.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1480.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1479.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1481.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1490.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1491-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1497-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.547947000000,0.0827620000000000,,Octeville-sur-Mer,83390,Observation #83390,https://biolit.fr/observations/observation-83390/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1481.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1490.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1491-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1497-scaled.jpeg,,,Ne sais pas +N1,83399,Sortie #83399,https://biolit.fr/sorties/sortie-83399/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1524-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1488-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1482-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1486-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1474-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1472-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1473-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5477060000000,0.0834270000000000,,Octeville-sur-Mer,83401,Observation #83401,https://biolit.fr/observations/observation-83401/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1524-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1488-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1482-scaled.jpeg,,,Identifiable +N1,83399,Sortie #83399,https://biolit.fr/sorties/sortie-83399/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1524-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1488-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1482-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1486-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1474-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1472-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1473-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5477060000000,0.0834270000000000,,Octeville-sur-Mer,83403,Observation #83403,https://biolit.fr/observations/observation-83403/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1486-scaled.jpeg,,TRUE,Identifiable +N1,83399,Sortie #83399,https://biolit.fr/sorties/sortie-83399/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1524-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1488-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1482-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1486-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1474-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1472-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1473-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5477060000000,0.0834270000000000,,Octeville-sur-Mer,83405,Observation #83405,https://biolit.fr/observations/observation-83405/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1474-scaled.jpeg,,TRUE,Ne sais pas +N1,83399,Sortie #83399,https://biolit.fr/sorties/sortie-83399/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1524-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1488-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1482-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1486-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1474-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1472-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1473-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5477060000000,0.0834270000000000,,Octeville-sur-Mer,83407,Observation #83407,https://biolit.fr/observations/observation-83407/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1472-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1473-scaled.jpeg,,,Ne sais pas +N1,83417,Sortie #83417,https://biolit.fr/sorties/sortie-83417/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1487-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1485.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1497-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1521.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1476-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1475-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1471.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1468.jpeg,11/01/2024,14.0000000,17.0000000,49.5480430000000,0.0832130000000000,,Octeville-sur-Mer,,,,,,,,,, +N1,83425,Sortie #83425,https://biolit.fr/sorties/sortie-83425/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1517-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1476-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1487-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1485-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1475-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1471-1.jpeg,11/01/2024,14.0000000,17.0000000,49.5478220000000,0.0828700000000000,,Octeville-sur-Mer,83427,Observation #83427,https://biolit.fr/observations/observation-83427/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1517-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1476-1-scaled.jpeg,,,Ne sais pas +N1,83425,Sortie #83425,https://biolit.fr/sorties/sortie-83425/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1517-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1476-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1487-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1485-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1475-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1471-1.jpeg,11/01/2024,14.0000000,17.0000000,49.5478220000000,0.0828700000000000,,Octeville-sur-Mer,83429,Observation #83429,https://biolit.fr/observations/observation-83429/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1487-1-scaled.jpeg,,,Ne sais pas +N1,83425,Sortie #83425,https://biolit.fr/sorties/sortie-83425/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1517-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1476-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1487-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1485-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1475-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1471-1.jpeg,11/01/2024,14.0000000,17.0000000,49.5478220000000,0.0828700000000000,,Octeville-sur-Mer,83431,Observation #83431,https://biolit.fr/observations/observation-83431/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1485-1.jpeg,,TRUE,Ne sais pas +N1,83425,Sortie #83425,https://biolit.fr/sorties/sortie-83425/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1517-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1476-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1487-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1485-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1475-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1471-1.jpeg,11/01/2024,14.0000000,17.0000000,49.5478220000000,0.0828700000000000,,Octeville-sur-Mer,83433,Observation #83433,https://biolit.fr/observations/observation-83433/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1475-1-scaled.jpeg,,, +N1,83425,Sortie #83425,https://biolit.fr/sorties/sortie-83425/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1517-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1476-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1487-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1485-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1475-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1471-1.jpeg,11/01/2024,14.0000000,17.0000000,49.5478220000000,0.0828700000000000,,Octeville-sur-Mer,83435,Observation #83435,https://biolit.fr/observations/observation-83435/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1471-1.jpeg,,,Ne sais pas +N1,83445,Sortie #83445,https://biolit.fr/sorties/sortie-83445/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1470-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1469-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1468-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1467.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1461-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1460.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1459-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1458-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5477940000000,0.0825910000000000,,Octeville-sur-Mer,83447,Observation #83447,https://biolit.fr/observations/observation-83447/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1470-scaled.jpeg,,,Ne sais pas +N1,83445,Sortie #83445,https://biolit.fr/sorties/sortie-83445/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1470-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1469-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1468-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1467.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1461-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1460.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1459-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1458-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5477940000000,0.0825910000000000,,Octeville-sur-Mer,83449,Observation #83449,https://biolit.fr/observations/observation-83449/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1469-scaled.jpeg,,,Ne sais pas +N1,83445,Sortie #83445,https://biolit.fr/sorties/sortie-83445/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1470-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1469-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1468-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1467.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1461-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1460.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1459-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1458-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5477940000000,0.0825910000000000,,Octeville-sur-Mer,83451,Observation #83451,https://biolit.fr/observations/observation-83451/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1468-1.jpeg,,,Ne sais pas +N1,83445,Sortie #83445,https://biolit.fr/sorties/sortie-83445/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1470-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1469-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1468-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1467.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1461-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1460.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1459-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1458-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5477940000000,0.0825910000000000,,Octeville-sur-Mer,83453,Observation #83453,https://biolit.fr/observations/observation-83453/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1467.jpeg,,, +N1,83445,Sortie #83445,https://biolit.fr/sorties/sortie-83445/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1470-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1469-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1468-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1467.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1461-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1460.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1459-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1458-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5477940000000,0.0825910000000000,,Octeville-sur-Mer,83455,Observation #83455,https://biolit.fr/observations/observation-83455/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1461-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1460.jpeg,,,Ne sais pas +N1,83445,Sortie #83445,https://biolit.fr/sorties/sortie-83445/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1470-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1469-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1468-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1467.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1461-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1460.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1459-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1458-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5477940000000,0.0825910000000000,,Octeville-sur-Mer,83457,Observation #83457,https://biolit.fr/observations/observation-83457/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1459-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1458-scaled.jpeg,,,Ne sais pas +N1,83534,Sortie #83534,https://biolit.fr/sorties/sortie-83534/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_114316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115524_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_1155482-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120832-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120838-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_171948-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_172406-scaled.jpg,10/25/2024 0:00,12.0000000,13.0000000,43.3761440000000,4.9138070000000,Planète Mer,Plage Napoléon,83536,Observation #83536,https://biolit.fr/observations/observation-83536/,Salicornia spp.,Salicorne,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_114316-scaled.jpg,,,Identifiable +N1,83534,Sortie #83534,https://biolit.fr/sorties/sortie-83534/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_114316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115524_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_1155482-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120832-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120838-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_171948-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_172406-scaled.jpg,10/25/2024 0:00,12.0000000,13.0000000,43.3761440000000,4.9138070000000,Planète Mer,Plage Napoléon,83538,Observation #83538,https://biolit.fr/observations/observation-83538/,Polygonum maritimum,Renouée maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115436-scaled.jpg,,,Identifiable +N1,83534,Sortie #83534,https://biolit.fr/sorties/sortie-83534/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_114316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115524_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_1155482-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120832-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120838-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_171948-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_172406-scaled.jpg,10/25/2024 0:00,12.0000000,13.0000000,43.3761440000000,4.9138070000000,Planète Mer,Plage Napoléon,83540,Observation #83540,https://biolit.fr/observations/observation-83540/,Anthemis maritima,Anthémis maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115524_2.jpg,,,Identifiable +N1,83534,Sortie #83534,https://biolit.fr/sorties/sortie-83534/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_114316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115524_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_1155482-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120832-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120838-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_171948-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_172406-scaled.jpg,10/25/2024 0:00,12.0000000,13.0000000,43.3761440000000,4.9138070000000,Planète Mer,Plage Napoléon,83542,Observation #83542,https://biolit.fr/observations/observation-83542/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_1155482-scaled.jpg,,,Identifiable +N1,83534,Sortie #83534,https://biolit.fr/sorties/sortie-83534/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_114316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115524_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_1155482-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120832-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120838-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_171948-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_172406-scaled.jpg,10/25/2024 0:00,12.0000000,13.0000000,43.3761440000000,4.9138070000000,Planète Mer,Plage Napoléon,83544,Observation #83544,https://biolit.fr/observations/observation-83544/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120832-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120838-scaled.jpg,,TRUE,Identifiable +N1,83534,Sortie #83534,https://biolit.fr/sorties/sortie-83534/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_114316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115524_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_1155482-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120832-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120838-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_171948-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_172406-scaled.jpg,10/25/2024 0:00,12.0000000,13.0000000,43.3761440000000,4.9138070000000,Planète Mer,Plage Napoléon,83546,Observation #83546,https://biolit.fr/observations/observation-83546/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121056-scaled.jpg,,,Identifiable +N1,83534,Sortie #83534,https://biolit.fr/sorties/sortie-83534/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_114316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115524_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_1155482-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120832-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120838-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_171948-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_172406-scaled.jpg,10/25/2024 0:00,12.0000000,13.0000000,43.3761440000000,4.9138070000000,Planète Mer,Plage Napoléon,83548,Observation #83548,https://biolit.fr/observations/observation-83548/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121302-scaled.jpg,,,Identifiable +N1,83534,Sortie #83534,https://biolit.fr/sorties/sortie-83534/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_114316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115524_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_1155482-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120832-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120838-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_171948-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_172406-scaled.jpg,10/25/2024 0:00,12.0000000,13.0000000,43.3761440000000,4.9138070000000,Planète Mer,Plage Napoléon,83550,Observation #83550,https://biolit.fr/observations/observation-83550/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_171948-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_172406-scaled.jpg,,,Ne sais pas +N1,83571,Sortie #83571,https://biolit.fr/sorties/sortie-83571/,Bellour Ronan,https://biolit.fr/wp-content/uploads/jet-form-builder/625f0ec0e8182ce4296db3e6b92c053e/2024/11/15112024-rotated.jpg,11/21/2024 0:00,14.0:59,15.0000000,48.317516000000,-4.28677100000000,,mm,,,,,,,,,, +N1,83613,Sortie #83613,https://biolit.fr/sorties/sortie-83613/,Gabanoti denis,https://biolit.fr/wp-content/uploads/jet-form-builder/bae17f85904c12171acb84b2b961aa78/2024/11/IMG_7178-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bae17f85904c12171acb84b2b961aa78/2024/11/IMG_7179-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bae17f85904c12171acb84b2b961aa78/2024/11/IMG_7180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bae17f85904c12171acb84b2b961aa78/2024/11/IMG_7181-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bae17f85904c12171acb84b2b961aa78/2024/11/IMG_7182-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bae17f85904c12171acb84b2b961aa78/2024/11/IMG_7183-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bae17f85904c12171acb84b2b961aa78/2024/11/IMG_7184-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0692820000000,5.79142600000000,,La Presqu'ile du GAOU,,,,,,,,,, +N1,83616,Sortie #83616,https://biolit.fr/sorties/sortie-83616/,Pomeyrol Margaux,https://biolit.fr/wp-content/uploads/jet-form-builder/105fbce235943e0d272f2c83e5352857/2024/11/1000004006-scaled.jpg,11/25/2024 0:00,14.0000000,14.0000000,43.5240620,7.0442430,CPIE îles de Lérins,Île Sainte Marguerite,,,,,,,,,, +N1,83619,Sortie #83619,https://biolit.fr/sorties/sortie-83619/,Brunet Ludovic,https://biolit.fr/wp-content/uploads/jet-form-builder/d8141c40ea5ff4685ce737f99fa059db/2024/11/IMG_3134-scaled.jpeg,11/25/2024 0:00,14.0000000,14.0000000,43.5241050000000,7.04408700000000,CPIE îles de Lérins,Îles de Lérins,,,,,,,,,, +N1,83624,Sortie #83624,https://biolit.fr/sorties/sortie-83624/,Durand Camille,https://biolit.fr/wp-content/uploads/jet-form-builder/dfe65a41811ed6c3021dcc6b653273d7/2024/11/IMG_7691-scaled.jpeg,11/25/2024 0:00,14.0000000,15.0000000,43.5204360000000,7.03340600000000,CPIE îles de Lérins,Plage de la Partègue Île Saint-Marguerite,,,,,,,,,, +N1,83628,Sortie #83628,https://biolit.fr/sorties/sortie-83628/,BOCCAGNY CAMILLE,https://biolit.fr/wp-content/uploads/jet-form-builder/2a7c746adb40b99fe2e33c1e498072c6/2024/11/1000024034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a7c746adb40b99fe2e33c1e498072c6/2024/11/1000024033-scaled.jpg,11/25/2024 0:00,14.0000000,15.0000000,43.5211420000000,7.03228900000000,CPIE îles de Lérins,Île Sainte Marguerite,83630,Observation #83630,https://biolit.fr/observations/observation-83630/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/2a7c746adb40b99fe2e33c1e498072c6/2024/11/1000024034-scaled.jpg,,TRUE,Identifiable +N1,83633,Sortie #83633,https://biolit.fr/sorties/sortie-83633/,Durand Camille,https://biolit.fr/wp-content/uploads/jet-form-builder/dfe65a41811ed6c3021dcc6b653273d7/2024/11/IMG_7691-1-scaled.jpeg,11/25/2024 0:00,14.0000000,15.0000000,43.5206550000000,7.03328800000000,CPIE îles de Lérins,Plage de la Partègue,,,,,,,,,, +N1,83637,Sortie #83637,https://biolit.fr/sorties/sortie-83637/,Pomeyrol Margaux,https://biolit.fr/wp-content/uploads/jet-form-builder/105fbce235943e0d272f2c83e5352857/2024/11/1000004023.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/105fbce235943e0d272f2c83e5352857/2024/11/1000004006-1-scaled.jpg,11/25/2024 0:00,14.0:45,15.0:15,43.5240630,7.0442400,CPIE îles de Lérins,Île Sainte Marguerite,83639,Observation #83639,https://biolit.fr/observations/observation-83639/,Muraena helena,Murène commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/105fbce235943e0d272f2c83e5352857/2024/11/1000004023.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/105fbce235943e0d272f2c83e5352857/2024/11/1000004006-1-scaled.jpg,,TRUE,Identifiable +N1,83658,Sortie #83658,https://biolit.fr/sorties/sortie-83658/,MAMIS GREGORY,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0170-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0179-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0187-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0191-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0195-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0196-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0201-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0218-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0698850000000,5.78831900000000,,PRESQU'ILE DU GAOU,,,,,,,,,, +N1,83674,Sortie #83674,https://biolit.fr/sorties/sortie-83674/,ROBERT SABRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0180-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0187-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0189-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0191-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0195-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0201-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0218-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0754460000000,5.78251700000000,,PRESQU'ILE DU GAOU,,,,,,,,,, +N1,83690,Sortie #83690,https://biolit.fr/sorties/sortie-83690/,DULIGNER STEPHANIE,https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0180-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0187-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0189-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0191-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0195-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0218-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.067458000000,5.79199200000000,,PRESQU'ILE DU GAOU,,,,,,,,,, +N1,83706,Sortie #83706,https://biolit.fr/sorties/sortie-83706/,Nathalie Morand,https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0180-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0187-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0189-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0191-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0195-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0218-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0702300000000,5.79213000000000,,PRESQU'ILE DU GAOU,,,,,,,,,, +N1,83722,Sortie #83722,https://biolit.fr/sorties/sortie-83722/,LAURENT DI MALTA,https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0180-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0187-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0189-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0191-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0195-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0218-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0681600000000,5.79171700000000,,PRESQU'ILE DU GAOU,,,,,,,,,, +N1,83738,Sortie #83738,https://biolit.fr/sorties/sortie-83738/,MASCLE FLORENT,https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0180-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0187-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0189-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0191-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0195-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0218-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0706810000000,5.79034400000000,,PRESQU'ILE DU GAOU,,,,,,,,,, +N1,83754,Sortie #83754,https://biolit.fr/sorties/sortie-83754/,THIERRY MARTINI,https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0180-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0187-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0189-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0191-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0195-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0218-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0693640000000,5.79212900000000,,PRESQU'ILE DU GAOU,,,,,,,,,, +N1,83770,Sortie #83770,https://biolit.fr/sorties/sortie-83770/,EDWIGE VEDERE,https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0180-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0187-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0189-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0191-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0195-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0218-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0711700000000,5.78842200000000,,PRESQU'ILE DU GAOU,,,,,,,,,, +N1,83786,Sortie #83786,https://biolit.fr/sorties/sortie-83786/,MAINI VALERIE,https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0180-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0187-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0189-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0191-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0195-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0218-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0701670000000,5.7873230000000,,PRESQU'ILE DU GAOU,,,,,,,,,, +N1,83808,Sortie #83808,https://biolit.fr/sorties/sortie-83808/,TIGNON Anthony,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029102809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029102844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029102850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029103036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029103042_01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029103048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029103228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029103230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029103458-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029103547-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029104813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029105313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029105338-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029105816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029105821-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029114328-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029114429-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029114444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029114448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029114450-scaled.jpg,10/29/2024 0:00,9.0:15,16.0000000,46.6946130000000,-1.94666100000000,,SAINT GILLES CROIX DE VIE,83810,Observation #83810,https://biolit.fr/observations/observation-83810/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029102809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029102844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029102850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029103036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029103042_01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029103048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029103228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029103230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029103547-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029103458-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029104813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029105313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029105338-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029105816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029105821-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029114328-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029114429-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029114444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029114448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029114450-scaled.jpg,,,Ne sais pas +N1,83821,Sortie #83821,https://biolit.fr/sorties/sortie-83821/,MAINI VALERIE,https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0170-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0189-Copie-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0748570000000,5.78430200000000,,PRESQU'ILE DU GAOU,83823,Observation #83823,https://biolit.fr/observations/observation-83823/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0180-Copie-1-scaled.jpg,,,Ne sais pas +N1,83821,Sortie #83821,https://biolit.fr/sorties/sortie-83821/,MAINI VALERIE,https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0170-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0189-Copie-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0748570000000,5.78430200000000,,PRESQU'ILE DU GAOU,83825,Observation #83825,https://biolit.fr/observations/observation-83825/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0189-Copie-1-scaled.jpg,,,Ne sais pas +N1,83829,Sortie #83829,https://biolit.fr/sorties/sortie-83829/,EDWIGE VEDERE,https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0196-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0217-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0685740000000,5.79020700000000,,PRESQU'ILE DU GAOU,83831,Observation #83831,https://biolit.fr/observations/observation-83831/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0196-Copie-1-scaled.jpg,,,Ne sais pas +N1,83829,Sortie #83829,https://biolit.fr/sorties/sortie-83829/,EDWIGE VEDERE,https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0196-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0217-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0685740000000,5.79020700000000,,PRESQU'ILE DU GAOU,83833,Observation #83833,https://biolit.fr/observations/observation-83833/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0217-1-scaled.jpg,,,Ne sais pas +N1,83837,Sortie #83837,https://biolit.fr/sorties/sortie-83837/,ROBERT SABRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0218-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0195-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0706310000000,5.79144300000000,,PRESQU'ILE DU GAOU,83839,Observation #83839,https://biolit.fr/observations/observation-83839/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0218-1-scaled.jpg,,,Ne sais pas +N1,83837,Sortie #83837,https://biolit.fr/sorties/sortie-83837/,ROBERT SABRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0218-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0195-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0706310000000,5.79144300000000,,PRESQU'ILE DU GAOU,83841,Observation #83841,https://biolit.fr/observations/observation-83841/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0195-1-scaled.jpg,,,Ne sais pas +N1,83845,Sortie #83845,https://biolit.fr/sorties/sortie-83845/,DULIGNER STEPHANIE,https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0187-Copie-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0697660000000,5.79075600000000,,PRESQU'ILE DU GAOU,83847,Observation #83847,https://biolit.fr/observations/observation-83847/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0180-Copie-1-scaled.jpg,,,Ne sais pas +N1,83845,Sortie #83845,https://biolit.fr/sorties/sortie-83845/,DULIGNER STEPHANIE,https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0187-Copie-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0697660000000,5.79075600000000,,PRESQU'ILE DU GAOU,83849,Observation #83849,https://biolit.fr/observations/observation-83849/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0187-Copie-1-scaled.jpg,,,Ne sais pas +N1,83853,Sortie #83853,https://biolit.fr/sorties/sortie-83853/,LAURENT DI MALTA,https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0189-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0191-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0703670000000,5.79171800000000,,PRESQU'ILE DU GAOU,83855,Observation #83855,https://biolit.fr/observations/observation-83855/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0189-Copie-1-scaled.jpg,,,Ne sais pas +N1,83853,Sortie #83853,https://biolit.fr/sorties/sortie-83853/,LAURENT DI MALTA,https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0189-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0191-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0703670000000,5.79171800000000,,PRESQU'ILE DU GAOU,83857,Observation #83857,https://biolit.fr/observations/observation-83857/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0191-1-scaled.jpg,,,Ne sais pas +N1,83861,Sortie #83861,https://biolit.fr/sorties/sortie-83861/,MASCLE FLORENT,https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0179-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0218-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0690630000000,5.79089400000000,,PRESQU'ILE DU GAOU,83863,Observation #83863,https://biolit.fr/observations/observation-83863/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0179-Copie-1-scaled.jpg,,,Ne sais pas +N1,83861,Sortie #83861,https://biolit.fr/sorties/sortie-83861/,MASCLE FLORENT,https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0179-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0218-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0690630000000,5.79089400000000,,PRESQU'ILE DU GAOU,83865,Observation #83865,https://biolit.fr/observations/observation-83865/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0218-1-scaled.jpg,,,Ne sais pas +N1,83869,Sortie #83869,https://biolit.fr/sorties/sortie-83869/,THIERRY MARTINI,https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0196-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0708690000000,5.7913060000000,,PRESQU'ILE DU GAOU,83871,Observation #83871,https://biolit.fr/observations/observation-83871/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0180-Copie-1-scaled.jpg,,,Ne sais pas +N1,83869,Sortie #83869,https://biolit.fr/sorties/sortie-83869/,THIERRY MARTINI,https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0196-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0708690000000,5.7913060000000,,PRESQU'ILE DU GAOU,83873,Observation #83873,https://biolit.fr/observations/observation-83873/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0196-scaled.jpg,,,Ne sais pas +N1,83877,Sortie #83877,https://biolit.fr/sorties/sortie-83877/,Nathalie Morand,https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0187-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0191-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0715710000000,5.79336500000000,,PRESQU'ILE DU GAOU,83879,Observation #83879,https://biolit.fr/observations/observation-83879/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0187-Copie-1-scaled.jpg,,,Ne sais pas +N1,83877,Sortie #83877,https://biolit.fr/sorties/sortie-83877/,Nathalie Morand,https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0187-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0191-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0715710000000,5.79336500000000,,PRESQU'ILE DU GAOU,83881,Observation #83881,https://biolit.fr/observations/observation-83881/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0191-1-scaled.jpg,,,Ne sais pas +N1,83898,Sortie #83898,https://biolit.fr/sorties/sortie-83898/,MAMIS GREGORY,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0187-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0191-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0193-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0195-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0203-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0217-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0218-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.069565000000,5.79158000000000,,PRESQU'ILE DU GAOU,83900,Observation #83900,https://biolit.fr/observations/observation-83900/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0179-Copie-scaled.jpg,,,Ne sais pas +N1,83898,Sortie #83898,https://biolit.fr/sorties/sortie-83898/,MAMIS GREGORY,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0187-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0191-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0193-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0195-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0203-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0217-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0218-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.069565000000,5.79158000000000,,PRESQU'ILE DU GAOU,83902,Observation #83902,https://biolit.fr/observations/observation-83902/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-Copie-1-scaled.jpg,,,Ne sais pas +N1,83898,Sortie #83898,https://biolit.fr/sorties/sortie-83898/,MAMIS GREGORY,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0187-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0191-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0193-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0195-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0203-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0217-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0218-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.069565000000,5.79158000000000,,PRESQU'ILE DU GAOU,83904,Observation #83904,https://biolit.fr/observations/observation-83904/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-1-scaled.jpg,,,Ne sais pas +N1,83898,Sortie #83898,https://biolit.fr/sorties/sortie-83898/,MAMIS GREGORY,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0187-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0191-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0193-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0195-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0203-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0217-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0218-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.069565000000,5.79158000000000,,PRESQU'ILE DU GAOU,83906,Observation #83906,https://biolit.fr/observations/observation-83906/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0187-1-scaled.jpg,,, +N1,83898,Sortie #83898,https://biolit.fr/sorties/sortie-83898/,MAMIS GREGORY,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0187-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0191-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0193-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0195-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0203-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0217-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0218-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.069565000000,5.79158000000000,,PRESQU'ILE DU GAOU,83908,Observation #83908,https://biolit.fr/observations/observation-83908/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0189-1-scaled.jpg,,,Ne sais pas +N1,83898,Sortie #83898,https://biolit.fr/sorties/sortie-83898/,MAMIS GREGORY,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0187-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0191-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0193-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0195-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0203-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0217-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0218-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.069565000000,5.79158000000000,,PRESQU'ILE DU GAOU,83910,Observation #83910,https://biolit.fr/observations/observation-83910/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0187-1-scaled.jpg,,,Ne sais pas +N1,83898,Sortie #83898,https://biolit.fr/sorties/sortie-83898/,MAMIS GREGORY,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0187-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0191-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0193-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0195-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0203-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0217-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0218-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.069565000000,5.79158000000000,,PRESQU'ILE DU GAOU,83912,Observation #83912,https://biolit.fr/observations/observation-83912/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0193-1-scaled.jpg,,,Ne sais pas +N1,83898,Sortie #83898,https://biolit.fr/sorties/sortie-83898/,MAMIS GREGORY,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0187-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0191-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0193-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0195-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0203-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0217-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0218-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.069565000000,5.79158000000000,,PRESQU'ILE DU GAOU,83914,Observation #83914,https://biolit.fr/observations/observation-83914/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0195-1-scaled.jpg,,,Ne sais pas +N1,83898,Sortie #83898,https://biolit.fr/sorties/sortie-83898/,MAMIS GREGORY,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0187-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0191-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0193-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0195-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0203-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0217-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0218-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.069565000000,5.79158000000000,,PRESQU'ILE DU GAOU,83916,Observation #83916,https://biolit.fr/observations/observation-83916/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0203-1-scaled.jpg,,,Ne sais pas +N1,83898,Sortie #83898,https://biolit.fr/sorties/sortie-83898/,MAMIS GREGORY,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0187-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0191-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0193-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0195-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0203-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0217-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0218-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.069565000000,5.79158000000000,,PRESQU'ILE DU GAOU,83918,Observation #83918,https://biolit.fr/observations/observation-83918/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0201-Copie-scaled.jpg,,,Ne sais pas +N1,83898,Sortie #83898,https://biolit.fr/sorties/sortie-83898/,MAMIS GREGORY,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0187-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0191-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0193-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0195-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0203-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0217-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0218-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.069565000000,5.79158000000000,,PRESQU'ILE DU GAOU,83920,Observation #83920,https://biolit.fr/observations/observation-83920/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0217-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0218-1-scaled.jpg,,,Ne sais pas +N1,83944,Sortie #83944,https://biolit.fr/sorties/sortie-83944/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6234-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6235-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6237-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6239-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6240-scaled.jpg,11/27/2024 0:00,10.0:35,11.0000000,43.2734220000000,5.36178700000000,Planète Mer,Plage du Prophète,83946,Observation #83946,https://biolit.fr/observations/observation-83946/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6228-scaled.jpg,,,Ne sais pas +N1,83944,Sortie #83944,https://biolit.fr/sorties/sortie-83944/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6234-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6235-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6237-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6239-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6240-scaled.jpg,11/27/2024 0:00,10.0:35,11.0000000,43.2734220000000,5.36178700000000,Planète Mer,Plage du Prophète,83948,Observation #83948,https://biolit.fr/observations/observation-83948/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6239-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6240-scaled.jpg,,TRUE,Ne sais pas +N1,83944,Sortie #83944,https://biolit.fr/sorties/sortie-83944/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6234-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6235-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6237-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6239-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6240-scaled.jpg,11/27/2024 0:00,10.0:35,11.0000000,43.2734220000000,5.36178700000000,Planète Mer,Plage du Prophète,83950,Observation #83950,https://biolit.fr/observations/observation-83950/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6229-scaled.jpg,,,Ne sais pas +N1,83944,Sortie #83944,https://biolit.fr/sorties/sortie-83944/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6234-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6235-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6237-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6239-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6240-scaled.jpg,11/27/2024 0:00,10.0:35,11.0000000,43.2734220000000,5.36178700000000,Planète Mer,Plage du Prophète,83952,Observation #83952,https://biolit.fr/observations/observation-83952/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6232-scaled.jpg,,,Ne sais pas +N1,83944,Sortie #83944,https://biolit.fr/sorties/sortie-83944/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6234-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6235-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6237-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6239-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6240-scaled.jpg,11/27/2024 0:00,10.0:35,11.0000000,43.2734220000000,5.36178700000000,Planète Mer,Plage du Prophète,83954,Observation #83954,https://biolit.fr/observations/observation-83954/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6234-scaled.jpg,,,Ne sais pas +N1,83944,Sortie #83944,https://biolit.fr/sorties/sortie-83944/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6234-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6235-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6237-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6239-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6240-scaled.jpg,11/27/2024 0:00,10.0:35,11.0000000,43.2734220000000,5.36178700000000,Planète Mer,Plage du Prophète,83956,Observation #83956,https://biolit.fr/observations/observation-83956/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6235-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6237-scaled.jpg,,,Ne sais pas +N1,83983,Sortie #83983,https://biolit.fr/sorties/sortie-83983/,BITEAU Guillaume,https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1250-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1251-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1254-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1256-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1258-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1260-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1261-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1262-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1263-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1264-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1265-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1266-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1267-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1268-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1269-scaled.jpg,11/29/2024 0:00,14.0000000,15.0000000,49.5001940000000,0.0883560000000000,,Le Havre plage,83985,Observation #83985,https://biolit.fr/observations/observation-83985/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1250-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1251-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1254-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1256-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1258-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1260-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1261-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1262-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1263-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1264-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1265-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1266-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1267-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1268-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1269-scaled.jpg,,,Ne sais pas +N1,84000,Sortie #84000,https://biolit.fr/sorties/sortie-84000/,BITEAU Guillaume,https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1278-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1279-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1280-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1281-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1282-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1283-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1284-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1285-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1286-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1287-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1288-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1289-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1290-scaled.jpg,11/29/2024 0:00,15.0000000,17.0000000,49.510234000000,0.0661540000000000,,cap de la hève,84002,Observation #84002,https://biolit.fr/observations/observation-84002/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1278-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1280-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1279-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1281-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1282-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1283-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1284-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1285-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1286-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1287-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1288-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1289-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1290-scaled.jpg,,,Ne sais pas +N1,84065,Sortie #84065,https://biolit.fr/sorties/sortie-84065/,SOROSTE FRANCK JON,https://biolit.fr/wp-content/uploads/jet-form-builder/87e5f608d2631bc462911bea16945f44/2024/12/1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/87e5f608d2631bc462911bea16945f44/2024/12/2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/87e5f608d2631bc462911bea16945f44/2024/12/3.jpg,11/30/2024 0:00,15.0000000,17.0000000,43.4324330000000,-1.59912800000000,,Bidart,,,,,,,,,, +N1,84070,Sortie #84070,https://biolit.fr/sorties/sortie-84070/,SOROSTE FRANCK JON,https://biolit.fr/wp-content/uploads/jet-form-builder/87e5f608d2631bc462911bea16945f44/2024/12/1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/87e5f608d2631bc462911bea16945f44/2024/12/2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/87e5f608d2631bc462911bea16945f44/2024/12/3-1.jpg,11/30/2024 0:00,14.0000000,17.0000000,43.4320250000000,-1.5980080000000,,Bidart,84072,Observation #84072,https://biolit.fr/observations/observation-84072/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/87e5f608d2631bc462911bea16945f44/2024/12/1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/87e5f608d2631bc462911bea16945f44/2024/12/2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/87e5f608d2631bc462911bea16945f44/2024/12/3-1.jpg,,,Identifiable +N1,84086,Sortie #84086,https://biolit.fr/sorties/sortie-84086/,CANOURGUES Juliette,https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-12-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-11-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-10-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-1-scaled.jpg,10/30/2024 0:00,9.0000000,12.0000000,43.2730230000000,5.36220800000000,,Marseille,84088,Observation #84088,https://biolit.fr/observations/observation-84088/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-12-scaled.jpg,,,Ne sais pas +N1,84086,Sortie #84086,https://biolit.fr/sorties/sortie-84086/,CANOURGUES Juliette,https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-12-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-11-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-10-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-1-scaled.jpg,10/30/2024 0:00,9.0000000,12.0000000,43.2730230000000,5.36220800000000,,Marseille,84090,Observation #84090,https://biolit.fr/observations/observation-84090/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-11-scaled.jpg,,TRUE,Identifiable +N1,84086,Sortie #84086,https://biolit.fr/sorties/sortie-84086/,CANOURGUES Juliette,https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-12-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-11-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-10-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-1-scaled.jpg,10/30/2024 0:00,9.0000000,12.0000000,43.2730230000000,5.36220800000000,,Marseille,84092,Observation #84092,https://biolit.fr/observations/observation-84092/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-11-scaled.jpg,,TRUE,Identifiable +N1,84086,Sortie #84086,https://biolit.fr/sorties/sortie-84086/,CANOURGUES Juliette,https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-12-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-11-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-10-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-1-scaled.jpg,10/30/2024 0:00,9.0000000,12.0000000,43.2730230000000,5.36220800000000,,Marseille,84094,Observation #84094,https://biolit.fr/observations/observation-84094/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-5-scaled.jpg,,TRUE,Identifiable +N1,84114,Sortie #84114,https://biolit.fr/sorties/sortie-84114/,Maes Simon,https://biolit.fr/wp-content/uploads/jet-form-builder/d73d599c5a77070d5691de014304c039/2024/12/1733236775717-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d73d599c5a77070d5691de014304c039/2024/12/1733224105033-scaled.jpg,11/10/2024,14.0000000,16.0000000,45.7059730000000,-1.02911000000000,,Mornac sur Seudre,,,,,,,,,, +N1,84117,Sortie #84117,https://biolit.fr/sorties/sortie-84117/,Bernardin Herve,https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/12/photo_1-2-scaled.jpeg,12/01/2024,14.0:58,15.0000000,48.684873000000,-1.96020100000000,Planète Mer (antenne Dinard),Saint Malo Havre du Lupin,,,,,,,,,, +N1,84120,Sortie #84120,https://biolit.fr/sorties/sortie-84120/,Bernardin Herve,https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/12/photo_1-2-1-scaled.jpeg,01/12/2104,14.0:58,15.0000000,48.6847430000000,-1.96131700000000,Planète Mer (antenne Dinard),Saint Malo Havre du Lupin,,,,,,,,,, +N1,84151,Sortie #84151,https://biolit.fr/sorties/sortie-84151/,Perrin Thomas,https://biolit.fr/wp-content/uploads/jet-form-builder/1f97f62a72da5d65ccac8f413c7eda4b/2024/12/IMG_20241107_151702-scaled.jpg,12/04/2024,3.0:14,3.0:14,48.6042200000000,-1.7587080000000,,Cherrueix,,,,,,,,,, +N1,84154,Sortie #84154,https://biolit.fr/sorties/sortie-84154/,Perrin Thomas,https://biolit.fr/wp-content/uploads/jet-form-builder/1f97f62a72da5d65ccac8f413c7eda4b/2024/12/IMG_20241107_151702-1-scaled.jpg,12/04/2024,10.0:55,11.0:55,48.6039800000000,-1.7625420000000,,Cherrueix,84156,Observation #84156,https://biolit.fr/observations/observation-84156/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/1f97f62a72da5d65ccac8f413c7eda4b/2024/12/IMG_20241107_151702-1-scaled.jpg,,TRUE,Identifiable +N1,84199,Sortie #84199,https://biolit.fr/sorties/sortie-84199/,KUONG AUDREY,https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/Cakkkpture-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/Capture-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/ftrdtdtd-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/hggff-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/hkhkh-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/jhgjgjg-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/jjjj-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/jklkjlkj-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/kk-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/kkkkkhhj-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/kljlkjljg-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/kmlkmlkml-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/ljlkjljljggg-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/lkjljljk-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/lkkmk-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/lklkjlkjlkj-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/lklklklk-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/llklklk-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/llll-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/lllllmm-1.jpg,12/06/2024,9.0000000,16.0000000,49.8859530000000,0.72235100000000,,DEAUVILLE,84201,Observation #84201,https://biolit.fr/observations/observation-84201/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/Cakkkpture-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/Capture-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/ftrdtdtd-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/hggff-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/hkhkh-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/jhgjgjg-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/jjjj-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/jklkjlkj-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/kk-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/kkkkkhhj-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/kljlkjljg-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/kmlkmlkml-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/ljlkjljljggg-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/lkjljljk-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/lkkmk-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/lklkjlkjlkj-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/lklklklk-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/llklklk-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/llll-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/lllllmm-1.jpg,,,Ne sais pas +N1,84207,Sortie #84207,https://biolit.fr/sorties/sortie-84207/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/IMG-20241207-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/IMG-20241207-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/IMG-20241207-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_101512508.MP_-scaled.jpg,12/07/2024,11.0000000,12.0000000,43.5286400000000,4.13919600000000,LABELBLEU,Plage du Boucanet,84209,Observation #84209,https://biolit.fr/observations/observation-84209/,Holothuria (Roweothuria) poli,Concombre de mer ensablé,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/IMG-20241207-WA0011.jpg,,,Identifiable +N1,84207,Sortie #84207,https://biolit.fr/sorties/sortie-84207/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/IMG-20241207-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/IMG-20241207-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/IMG-20241207-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_101512508.MP_-scaled.jpg,12/07/2024,11.0000000,12.0000000,43.5286400000000,4.13919600000000,LABELBLEU,Plage du Boucanet,84211,Observation #84211,https://biolit.fr/observations/observation-84211/,Callinectes sapidus,Crabe bleu américain,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/IMG-20241207-WA0012.jpg,,TRUE,Identifiable +N1,84207,Sortie #84207,https://biolit.fr/sorties/sortie-84207/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/IMG-20241207-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/IMG-20241207-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/IMG-20241207-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_101512508.MP_-scaled.jpg,12/07/2024,11.0000000,12.0000000,43.5286400000000,4.13919600000000,LABELBLEU,Plage du Boucanet,84213,Observation #84213,https://biolit.fr/observations/observation-84213/,Callinectes sapidus,Crabe bleu américain,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/IMG-20241207-WA0013.jpg,,TRUE,Identifiable +N1,84207,Sortie #84207,https://biolit.fr/sorties/sortie-84207/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/IMG-20241207-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/IMG-20241207-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/IMG-20241207-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_101512508.MP_-scaled.jpg,12/07/2024,11.0000000,12.0000000,43.5286400000000,4.13919600000000,LABELBLEU,Plage du Boucanet,84215,Observation #84215,https://biolit.fr/observations/observation-84215/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_101512508.MP_-scaled.jpg,,TRUE,Identifiable +N1,84222,Sortie #84222,https://biolit.fr/sorties/sortie-84222/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_101517363.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_102201929.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_102959000.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_103131005.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_105907772-scaled.jpg,12/07/2024,11.0000000,12.0000000,43.5289200000000,4.13913100000000,LABELBLEU,Plage Nord du Grau-du-Roi,84224,Observation #84224,https://biolit.fr/observations/observation-84224/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_102201929.MP_-scaled.jpg,,,Ne sais pas +N1,84222,Sortie #84222,https://biolit.fr/sorties/sortie-84222/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_101517363.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_102201929.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_102959000.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_103131005.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_105907772-scaled.jpg,12/07/2024,11.0000000,12.0000000,43.5289200000000,4.13913100000000,LABELBLEU,Plage Nord du Grau-du-Roi,84226,Observation #84226,https://biolit.fr/observations/observation-84226/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_102959000.MP_-scaled.jpg,,TRUE,Identifiable +N1,84222,Sortie #84222,https://biolit.fr/sorties/sortie-84222/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_101517363.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_102201929.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_102959000.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_103131005.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_105907772-scaled.jpg,12/07/2024,11.0000000,12.0000000,43.5289200000000,4.13913100000000,LABELBLEU,Plage Nord du Grau-du-Roi,84228,Observation #84228,https://biolit.fr/observations/observation-84228/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_105907772-scaled.jpg,,TRUE,Ne sais pas +N1,84222,Sortie #84222,https://biolit.fr/sorties/sortie-84222/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_101517363.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_102201929.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_102959000.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_103131005.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_105907772-scaled.jpg,12/07/2024,11.0000000,12.0000000,43.5289200000000,4.13913100000000,LABELBLEU,Plage Nord du Grau-du-Roi,84230,Observation #84230,https://biolit.fr/observations/observation-84230/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_103131005.MP_-scaled.jpg,,TRUE,Ne sais pas +N1,84222,Sortie #84222,https://biolit.fr/sorties/sortie-84222/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_101517363.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_102201929.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_102959000.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_103131005.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_105907772-scaled.jpg,12/07/2024,11.0000000,12.0000000,43.5289200000000,4.13913100000000,LABELBLEU,Plage Nord du Grau-du-Roi,84232,Observation #84232,https://biolit.fr/observations/observation-84232/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_101517363.MP_-scaled.jpg,,,Ne sais pas +N1,84266,Sortie #84266,https://biolit.fr/sorties/sortie-84266/,Mosaic Benoit,https://biolit.fr/wp-content/uploads/jet-form-builder/2a98c60ab16f4ff7d7de03f7576a0d05/2024/12/profil-agri.jpg,12/04/2024,8.0000000,8.0000000,48.4928180000000,-2.67776300000000,,,,,,,,,,,, +N1,84717,Sortie #84717,https://biolit.fr/sorties/sortie-84717/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_467.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_113102_575-scaled.jpg,12/10/2024,9.0000000,11.0000000,43.4531650000000,3.81311400000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84719,Observation #84719,https://biolit.fr/observations/observation-84719/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_467.jpg,,TRUE,Identifiable +N1,84717,Sortie #84717,https://biolit.fr/sorties/sortie-84717/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_467.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_113102_575-scaled.jpg,12/10/2024,9.0000000,11.0000000,43.4531650000000,3.81311400000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84721,Observation #84721,https://biolit.fr/observations/observation-84721/,Callinectes sapidus,Crabe bleu américain,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_113102_575-scaled.jpg,,TRUE,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84745,Observation #84745,https://biolit.fr/observations/observation-84745/,Thylacodes arenarius,Grand vermet,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg,,TRUE,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84747,Observation #84747,https://biolit.fr/observations/observation-84747/,Pecten jacobaeus,Coquille Saint-Jacques de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg,,,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84749,Observation #84749,https://biolit.fr/observations/observation-84749/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg,,TRUE,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84751,Observation #84751,https://biolit.fr/observations/observation-84751/,Eunicella singularis,Gorgone blanche,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg,,,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84753,Observation #84753,https://biolit.fr/observations/observation-84753/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg,,TRUE,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84755,Observation #84755,https://biolit.fr/observations/observation-84755/,Corallina officinalis/caespitosa,Coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg,,,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84757,Observation #84757,https://biolit.fr/observations/observation-84757/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg,,TRUE,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84759,Observation #84759,https://biolit.fr/observations/observation-84759/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg,,,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84761,Observation #84761,https://biolit.fr/observations/observation-84761/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg,,TRUE,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84763,Observation #84763,https://biolit.fr/observations/observation-84763/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg,,TRUE,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84765,Observation #84765,https://biolit.fr/observations/observation-84765/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg,,TRUE,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84767,Observation #84767,https://biolit.fr/observations/observation-84767/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg,,TRUE,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84769,Observation #84769,https://biolit.fr/observations/observation-84769/,Naticarius stercusmuscarum,Natice mouchetée,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg,,TRUE,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84771,Observation #84771,https://biolit.fr/observations/observation-84771/,Bittium reticulatum,Cérithe réticulé,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg,,,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84773,Observation #84773,https://biolit.fr/observations/observation-84773/,Microcosmus claudicans,Ascidie boiteuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg,,,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84775,Observation #84775,https://biolit.fr/observations/observation-84775/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg,,,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84777,Observation #84777,https://biolit.fr/observations/observation-84777/,Ensis siliqua,Couteau-silique,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg,,,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84779,Observation #84779,https://biolit.fr/observations/observation-84779/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg,,TRUE,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84781,Observation #84781,https://biolit.fr/observations/observation-84781/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,,,non-identifiable +N1,84784,Sortie #84784,https://biolit.fr/sorties/sortie-84784/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/469780424_2952190911612901_8642401188607923896_n.jpg,12/11/2024,17.0000000,17.0000000,43.4436310000000,3.80187000000000,LPO Occitanie (Dt Hérault),Frontignan,84786,Observation #84786,https://biolit.fr/observations/observation-84786/,Callinectes sapidus,Crabe bleu américain,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/469780424_2952190911612901_8642401188607923896_n.jpg,,TRUE,Identifiable +N1,84813,Sortie #84813,https://biolit.fr/sorties/sortie-84813/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111331-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111427-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111453-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111459-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111532-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111731-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111740-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111853-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112607-scaled.jpg,12/22/2024 0:00,10.0000000,11.0000000,43.3396970000000,5.258177000000,Planète Mer,Niolon,,,,,,,,,, +N1,84830,Sortie #84830,https://biolit.fr/sorties/sortie-84830/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/Capture-decran-2024-12-22-220757_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111138-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111331-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111427-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111453-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111459-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111532-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111619-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111631-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111731-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111740-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112010-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112129-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112407-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112607-1-scaled.jpg,12/22/2024 0:00,10.0000000,11.0000000,43.3396920000000,5.25818700000000,Planète Mer,Niolon,84832,Observation #84832,https://biolit.fr/observations/observation-84832/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/Capture-decran-2024-12-22-220757_.jpg,,,Ne sais pas +N1,84830,Sortie #84830,https://biolit.fr/sorties/sortie-84830/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/Capture-decran-2024-12-22-220757_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111138-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111331-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111427-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111453-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111459-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111532-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111619-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111631-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111731-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111740-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112010-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112129-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112407-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112607-1-scaled.jpg,12/22/2024 0:00,10.0000000,11.0000000,43.3396920000000,5.25818700000000,Planète Mer,Niolon,84834,Observation #84834,https://biolit.fr/observations/observation-84834/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111138-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112010-1-scaled.jpg,,,Identifiable +N1,84830,Sortie #84830,https://biolit.fr/sorties/sortie-84830/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/Capture-decran-2024-12-22-220757_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111138-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111331-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111427-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111453-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111459-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111532-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111619-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111631-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111731-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111740-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112010-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112129-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112407-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112607-1-scaled.jpg,12/22/2024 0:00,10.0000000,11.0000000,43.3396920000000,5.25818700000000,Planète Mer,Niolon,84836,Observation #84836,https://biolit.fr/observations/observation-84836/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111331-1-scaled.jpg,,TRUE,Identifiable +N1,84830,Sortie #84830,https://biolit.fr/sorties/sortie-84830/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/Capture-decran-2024-12-22-220757_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111138-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111331-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111427-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111453-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111459-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111532-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111619-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111631-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111731-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111740-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112010-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112129-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112407-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112607-1-scaled.jpg,12/22/2024 0:00,10.0000000,11.0000000,43.3396920000000,5.25818700000000,Planète Mer,Niolon,84838,Observation #84838,https://biolit.fr/observations/observation-84838/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111427-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112407-1-scaled.jpg,,TRUE,Identifiable +N1,84830,Sortie #84830,https://biolit.fr/sorties/sortie-84830/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/Capture-decran-2024-12-22-220757_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111138-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111331-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111427-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111453-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111459-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111532-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111619-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111631-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111731-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111740-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112010-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112129-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112407-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112607-1-scaled.jpg,12/22/2024 0:00,10.0000000,11.0000000,43.3396920000000,5.25818700000000,Planète Mer,Niolon,84840,Observation #84840,https://biolit.fr/observations/observation-84840/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111453-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111459-1-scaled.jpg,,,Identifiable +N1,84830,Sortie #84830,https://biolit.fr/sorties/sortie-84830/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/Capture-decran-2024-12-22-220757_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111138-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111331-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111427-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111453-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111459-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111532-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111619-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111631-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111731-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111740-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112010-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112129-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112407-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112607-1-scaled.jpg,12/22/2024 0:00,10.0000000,11.0000000,43.3396920000000,5.25818700000000,Planète Mer,Niolon,84842,Observation #84842,https://biolit.fr/observations/observation-84842/,Jujubinus striatus,Troque jujube striée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111532-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111619-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111631-1-scaled.jpg,,,Identifiable +N1,84830,Sortie #84830,https://biolit.fr/sorties/sortie-84830/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/Capture-decran-2024-12-22-220757_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111138-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111331-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111427-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111453-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111459-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111532-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111619-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111631-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111731-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111740-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112010-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112129-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112407-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112607-1-scaled.jpg,12/22/2024 0:00,10.0000000,11.0000000,43.3396920000000,5.25818700000000,Planète Mer,Niolon,84844,Observation #84844,https://biolit.fr/observations/observation-84844/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111731-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111740-1-scaled.jpg,,,Identifiable +N1,84830,Sortie #84830,https://biolit.fr/sorties/sortie-84830/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/Capture-decran-2024-12-22-220757_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111138-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111331-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111427-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111453-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111459-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111532-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111619-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111631-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111731-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111740-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112010-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112129-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112407-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112607-1-scaled.jpg,12/22/2024 0:00,10.0000000,11.0000000,43.3396920000000,5.25818700000000,Planète Mer,Niolon,84846,Observation #84846,https://biolit.fr/observations/observation-84846/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112607-1-scaled.jpg,,TRUE,Identifiable +N1,84859,Sortie #84859,https://biolit.fr/sorties/sortie-84859/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_114408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_114440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115437-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115456-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115654-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115811-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_120034-scaled.jpg,11/02/2024,11.0000000,12.0000000,43.2625510000000,5.37089900000000,Planète Mer,Prado Sud,84861,Observation #84861,https://biolit.fr/observations/observation-84861/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_114408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_114440-scaled.jpg,,,Ne sais pas +N1,84859,Sortie #84859,https://biolit.fr/sorties/sortie-84859/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_114408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_114440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115437-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115456-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115654-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115811-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_120034-scaled.jpg,11/02/2024,11.0000000,12.0000000,43.2625510000000,5.37089900000000,Planète Mer,Prado Sud,84863,Observation #84863,https://biolit.fr/observations/observation-84863/,Dictyota spiralis,Dictyote spatulée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115437-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115456-scaled.jpg,,,Identifiable +N1,84859,Sortie #84859,https://biolit.fr/sorties/sortie-84859/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_114408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_114440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115437-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115456-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115654-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115811-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_120034-scaled.jpg,11/02/2024,11.0000000,12.0000000,43.2625510000000,5.37089900000000,Planète Mer,Prado Sud,84865,Observation #84865,https://biolit.fr/observations/observation-84865/,Polititapes aureus,Palourde jaune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115654-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115713-scaled.jpg,,,Identifiable +N1,84859,Sortie #84859,https://biolit.fr/sorties/sortie-84859/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_114408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_114440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115437-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115456-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115654-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115811-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_120034-scaled.jpg,11/02/2024,11.0000000,12.0000000,43.2625510000000,5.37089900000000,Planète Mer,Prado Sud,84867,Observation #84867,https://biolit.fr/observations/observation-84867/,Caulerpa cylindracea,Caulerpe cylindracée,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115811-scaled.jpg,,TRUE,Identifiable +N1,84859,Sortie #84859,https://biolit.fr/sorties/sortie-84859/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_114408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_114440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115437-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115456-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115654-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115811-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_120034-scaled.jpg,11/02/2024,11.0000000,12.0000000,43.2625510000000,5.37089900000000,Planète Mer,Prado Sud,84869,Observation #84869,https://biolit.fr/observations/observation-84869/,Corallina officinalis/caespitosa,Coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_120034-scaled.jpg,,,Identifiable +N1,84888,Sortie #84888,https://biolit.fr/sorties/sortie-84888/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153359862_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153407340_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153515521-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153614724_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153621519_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154230434_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154417053_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154424669_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154921284_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160946259_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160954157_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162502669-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162508685-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162827682_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_163142843-scaled.jpg,11/17/2024 0:00,15.0000000,16.0000000,43.25955800000,5.37504300000000,Planète Mer,Plage de l'Huveaune,84890,Observation #84890,https://biolit.fr/observations/observation-84890/,Cardita calyculata,Cardite petit calice,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155501-scaled.jpg,,,Identifiable +N1,84888,Sortie #84888,https://biolit.fr/sorties/sortie-84888/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153359862_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153407340_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153515521-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153614724_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153621519_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154230434_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154417053_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154424669_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154921284_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160946259_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160954157_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162502669-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162508685-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162827682_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_163142843-scaled.jpg,11/17/2024 0:00,15.0000000,16.0000000,43.25955800000,5.37504300000000,Planète Mer,Plage de l'Huveaune,84892,Observation #84892,https://biolit.fr/observations/observation-84892/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153359862_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153407340_HDR-scaled.jpg,,TRUE,Identifiable +N1,84888,Sortie #84888,https://biolit.fr/sorties/sortie-84888/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153359862_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153407340_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153515521-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153614724_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153621519_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154230434_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154417053_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154424669_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154921284_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160946259_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160954157_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162502669-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162508685-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162827682_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_163142843-scaled.jpg,11/17/2024 0:00,15.0000000,16.0000000,43.25955800000,5.37504300000000,Planète Mer,Plage de l'Huveaune,84894,Observation #84894,https://biolit.fr/observations/observation-84894/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153515521-rotated.jpg,,,Identifiable +N1,84888,Sortie #84888,https://biolit.fr/sorties/sortie-84888/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153359862_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153407340_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153515521-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153614724_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153621519_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154230434_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154417053_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154424669_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154921284_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160946259_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160954157_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162502669-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162508685-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162827682_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_163142843-scaled.jpg,11/17/2024 0:00,15.0000000,16.0000000,43.25955800000,5.37504300000000,Planète Mer,Plage de l'Huveaune,84896,Observation #84896,https://biolit.fr/observations/observation-84896/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153614724_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153621519_HDR-scaled.jpg,,,Identifiable +N1,84888,Sortie #84888,https://biolit.fr/sorties/sortie-84888/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153359862_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153407340_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153515521-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153614724_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153621519_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154230434_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154417053_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154424669_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154921284_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160946259_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160954157_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162502669-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162508685-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162827682_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_163142843-scaled.jpg,11/17/2024 0:00,15.0000000,16.0000000,43.25955800000,5.37504300000000,Planète Mer,Plage de l'Huveaune,84898,Observation #84898,https://biolit.fr/observations/observation-84898/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154417053_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154424669_HDR-rotated.jpg,,TRUE,Identifiable +N1,84888,Sortie #84888,https://biolit.fr/sorties/sortie-84888/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153359862_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153407340_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153515521-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153614724_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153621519_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154230434_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154417053_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154424669_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154921284_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160946259_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160954157_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162502669-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162508685-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162827682_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_163142843-scaled.jpg,11/17/2024 0:00,15.0000000,16.0000000,43.25955800000,5.37504300000000,Planète Mer,Plage de l'Huveaune,84900,Observation #84900,https://biolit.fr/observations/observation-84900/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154921284_HDR-scaled.jpg,,,Identifiable +N1,84888,Sortie #84888,https://biolit.fr/sorties/sortie-84888/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153359862_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153407340_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153515521-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153614724_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153621519_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154230434_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154417053_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154424669_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154921284_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160946259_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160954157_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162502669-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162508685-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162827682_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_163142843-scaled.jpg,11/17/2024 0:00,15.0000000,16.0000000,43.25955800000,5.37504300000000,Planète Mer,Plage de l'Huveaune,84902,Observation #84902,https://biolit.fr/observations/observation-84902/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160946259_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160954157_HDR-scaled.jpg,,,Identifiable +N1,84888,Sortie #84888,https://biolit.fr/sorties/sortie-84888/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153359862_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153407340_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153515521-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153614724_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153621519_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154230434_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154417053_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154424669_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154921284_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160946259_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160954157_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162502669-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162508685-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162827682_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_163142843-scaled.jpg,11/17/2024 0:00,15.0000000,16.0000000,43.25955800000,5.37504300000000,Planète Mer,Plage de l'Huveaune,84904,Observation #84904,https://biolit.fr/observations/observation-84904/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162502669-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162508685-scaled.jpg,,TRUE,Identifiable +N1,84888,Sortie #84888,https://biolit.fr/sorties/sortie-84888/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153359862_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153407340_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153515521-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153614724_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153621519_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154230434_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154417053_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154424669_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154921284_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160946259_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160954157_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162502669-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162508685-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162827682_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_163142843-scaled.jpg,11/17/2024 0:00,15.0000000,16.0000000,43.25955800000,5.37504300000000,Planète Mer,Plage de l'Huveaune,84906,Observation #84906,https://biolit.fr/observations/observation-84906/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162827682_HDR-scaled.jpg,,,Identifiable +N1,84888,Sortie #84888,https://biolit.fr/sorties/sortie-84888/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153359862_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153407340_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153515521-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153614724_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153621519_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154230434_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154417053_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154424669_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154921284_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160946259_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160954157_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162502669-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162508685-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162827682_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_163142843-scaled.jpg,11/17/2024 0:00,15.0000000,16.0000000,43.25955800000,5.37504300000000,Planète Mer,Plage de l'Huveaune,84908,Observation #84908,https://biolit.fr/observations/observation-84908/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_163142843-scaled.jpg,,,Identifiable +N1,84944,Sortie #84944,https://biolit.fr/sorties/sortie-84944/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_104814329_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105017225-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105029509-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105058500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105116847-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105128385_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105704431_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110356449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110434629_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110439972_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110459197-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_111650641_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112231362-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112240378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113743437_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_114241075.jpg,11/01/2024,10.0000000,12.0000000,43.2396680000000,5.36232100000000,Planète Mer,Plage de l’Anse du Bain des Dames,84946,Observation #84946,https://biolit.fr/observations/observation-84946/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113743437_.jpg,,,Identifiable +N1,84944,Sortie #84944,https://biolit.fr/sorties/sortie-84944/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_104814329_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105017225-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105029509-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105058500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105116847-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105128385_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105704431_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110356449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110434629_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110439972_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110459197-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_111650641_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112231362-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112240378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113743437_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_114241075.jpg,11/01/2024,10.0000000,12.0000000,43.2396680000000,5.36232100000000,Planète Mer,Plage de l’Anse du Bain des Dames,84948,Observation #84948,https://biolit.fr/observations/observation-84948/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_104814329_HDR-rotated.jpg,,,Identifiable +N1,84944,Sortie #84944,https://biolit.fr/sorties/sortie-84944/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_104814329_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105017225-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105029509-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105058500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105116847-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105128385_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105704431_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110356449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110434629_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110439972_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110459197-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_111650641_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112231362-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112240378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113743437_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_114241075.jpg,11/01/2024,10.0000000,12.0000000,43.2396680000000,5.36232100000000,Planète Mer,Plage de l’Anse du Bain des Dames,84950,Observation #84950,https://biolit.fr/observations/observation-84950/,Euthria cornea,Buccin veiné,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105017225-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105029509-rotated.jpg,,,Identifiable +N1,84944,Sortie #84944,https://biolit.fr/sorties/sortie-84944/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_104814329_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105017225-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105029509-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105058500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105116847-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105128385_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105704431_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110356449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110434629_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110439972_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110459197-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_111650641_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112231362-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112240378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113743437_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_114241075.jpg,11/01/2024,10.0000000,12.0000000,43.2396680000000,5.36232100000000,Planète Mer,Plage de l’Anse du Bain des Dames,84952,Observation #84952,https://biolit.fr/observations/observation-84952/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105058500.jpg,,,Identifiable +N1,84944,Sortie #84944,https://biolit.fr/sorties/sortie-84944/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_104814329_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105017225-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105029509-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105058500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105116847-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105128385_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105704431_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110356449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110434629_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110439972_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110459197-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_111650641_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112231362-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112240378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113743437_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_114241075.jpg,11/01/2024,10.0000000,12.0000000,43.2396680000000,5.36232100000000,Planète Mer,Plage de l’Anse du Bain des Dames,84954,Observation #84954,https://biolit.fr/observations/observation-84954/,Diodora graeca,Fissurelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105116847-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105128385_HDR.jpg,,,Identifiable +N1,84944,Sortie #84944,https://biolit.fr/sorties/sortie-84944/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_104814329_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105017225-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105029509-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105058500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105116847-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105128385_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105704431_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110356449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110434629_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110439972_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110459197-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_111650641_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112231362-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112240378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113743437_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_114241075.jpg,11/01/2024,10.0000000,12.0000000,43.2396680000000,5.36232100000000,Planète Mer,Plage de l’Anse du Bain des Dames,84956,Observation #84956,https://biolit.fr/observations/observation-84956/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105704431_HDR-scaled.jpg,,,Identifiable +N1,84944,Sortie #84944,https://biolit.fr/sorties/sortie-84944/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_104814329_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105017225-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105029509-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105058500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105116847-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105128385_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105704431_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110356449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110434629_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110439972_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110459197-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_111650641_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112231362-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112240378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113743437_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_114241075.jpg,11/01/2024,10.0000000,12.0000000,43.2396680000000,5.36232100000000,Planète Mer,Plage de l’Anse du Bain des Dames,84958,Observation #84958,https://biolit.fr/observations/observation-84958/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110356449_HDR-rotated.jpg,,,Identifiable +N1,84944,Sortie #84944,https://biolit.fr/sorties/sortie-84944/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_104814329_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105017225-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105029509-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105058500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105116847-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105128385_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105704431_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110356449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110434629_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110439972_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110459197-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_111650641_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112231362-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112240378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113743437_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_114241075.jpg,11/01/2024,10.0000000,12.0000000,43.2396680000000,5.36232100000000,Planète Mer,Plage de l’Anse du Bain des Dames,84960,Observation #84960,https://biolit.fr/observations/observation-84960/,Striarca lactea,Striarca laiteuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110434629_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110439972_HDR.jpg,,,Identifiable +N1,84944,Sortie #84944,https://biolit.fr/sorties/sortie-84944/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_104814329_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105017225-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105029509-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105058500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105116847-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105128385_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105704431_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110356449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110434629_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110439972_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110459197-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_111650641_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112231362-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112240378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113743437_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_114241075.jpg,11/01/2024,10.0000000,12.0000000,43.2396680000000,5.36232100000000,Planète Mer,Plage de l’Anse du Bain des Dames,84962,Observation #84962,https://biolit.fr/observations/observation-84962/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110459197-rotated.jpg,,,Identifiable +N1,84944,Sortie #84944,https://biolit.fr/sorties/sortie-84944/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_104814329_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105017225-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105029509-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105058500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105116847-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105128385_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105704431_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110356449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110434629_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110439972_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110459197-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_111650641_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112231362-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112240378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113743437_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_114241075.jpg,11/01/2024,10.0000000,12.0000000,43.2396680000000,5.36232100000000,Planète Mer,Plage de l’Anse du Bain des Dames,84964,Observation #84964,https://biolit.fr/observations/observation-84964/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_111650641_HDR-scaled.jpg,,TRUE,Identifiable +N1,84944,Sortie #84944,https://biolit.fr/sorties/sortie-84944/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_104814329_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105017225-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105029509-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105058500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105116847-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105128385_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105704431_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110356449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110434629_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110439972_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110459197-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_111650641_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112231362-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112240378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113743437_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_114241075.jpg,11/01/2024,10.0000000,12.0000000,43.2396680000000,5.36232100000000,Planète Mer,Plage de l’Anse du Bain des Dames,84966,Observation #84966,https://biolit.fr/observations/observation-84966/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112231362-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112240378-scaled.jpg,,,Ne sais pas +N1,84944,Sortie #84944,https://biolit.fr/sorties/sortie-84944/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_104814329_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105017225-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105029509-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105058500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105116847-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105128385_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105704431_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110356449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110434629_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110439972_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110459197-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_111650641_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112231362-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112240378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113743437_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_114241075.jpg,11/01/2024,10.0000000,12.0000000,43.2396680000000,5.36232100000000,Planète Mer,Plage de l’Anse du Bain des Dames,84968,Observation #84968,https://biolit.fr/observations/observation-84968/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_114241075.jpg,,,Ne sais pas +N1,84975,Sortie #84975,https://biolit.fr/sorties/sortie-84975/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_104650336_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_104853168-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_104918214-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_110812987-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_110821182-scaled.jpg,11/02/2024,11.0000000,12.0000000,43.2621760000000,5.37065800000000,Planète Mer,Prado Sud,84977,Observation #84977,https://biolit.fr/observations/observation-84977/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_104650336_HDR-scaled.jpg,,TRUE,Identifiable +N1,84975,Sortie #84975,https://biolit.fr/sorties/sortie-84975/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_104650336_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_104853168-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_104918214-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_110812987-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_110821182-scaled.jpg,11/02/2024,11.0000000,12.0000000,43.2621760000000,5.37065800000000,Planète Mer,Prado Sud,84979,Observation #84979,https://biolit.fr/observations/observation-84979/,Aidablennius sphynx,Blennie sphinx,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_104853168-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_104918214-scaled.jpg,,,Identifiable +N1,84975,Sortie #84975,https://biolit.fr/sorties/sortie-84975/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_104650336_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_104853168-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_104918214-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_110812987-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_110821182-scaled.jpg,11/02/2024,11.0000000,12.0000000,43.2621760000000,5.37065800000000,Planète Mer,Prado Sud,84981,Observation #84981,https://biolit.fr/observations/observation-84981/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_110812987-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_110821182-scaled.jpg,,TRUE,Identifiable +N1,84990,Sortie #84990,https://biolit.fr/sorties/sortie-84990/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_130811951_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_130821036_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132009853-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132016643-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132343091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132350760-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132414009-rotated.jpg,11/11/2024,13.0000000,13.0000000,43.237927000000,5.36184700000000,Planète Mer,Plage des Phocéens,84992,Observation #84992,https://biolit.fr/observations/observation-84992/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_130811951_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_130821036_HDR-rotated.jpg,,,Identifiable +N1,84990,Sortie #84990,https://biolit.fr/sorties/sortie-84990/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_130811951_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_130821036_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132009853-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132016643-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132343091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132350760-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132414009-rotated.jpg,11/11/2024,13.0000000,13.0000000,43.237927000000,5.36184700000000,Planète Mer,Plage des Phocéens,84994,Observation #84994,https://biolit.fr/observations/observation-84994/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132009853-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132016643-rotated.jpg,,,Identifiable +N1,84990,Sortie #84990,https://biolit.fr/sorties/sortie-84990/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_130811951_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_130821036_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132009853-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132016643-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132343091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132350760-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132414009-rotated.jpg,11/11/2024,13.0000000,13.0000000,43.237927000000,5.36184700000000,Planète Mer,Plage des Phocéens,84996,Observation #84996,https://biolit.fr/observations/observation-84996/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132343091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132350760-rotated.jpg,,,Identifiable +N1,84990,Sortie #84990,https://biolit.fr/sorties/sortie-84990/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_130811951_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_130821036_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132009853-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132016643-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132343091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132350760-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132414009-rotated.jpg,11/11/2024,13.0000000,13.0000000,43.237927000000,5.36184700000000,Planète Mer,Plage des Phocéens,84998,Observation #84998,https://biolit.fr/observations/observation-84998/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132414009-rotated.jpg,,,Ne sais pas +N1,85008,Sortie #85008,https://biolit.fr/sorties/sortie-85008/,THERON GUILHEM,https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008865-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008862-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008863-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008856-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008853-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008854-scaled.jpg,12/27/2024 0:00,13.0000000,16.0000000,43.2826,4.951,,L Espiguette,85010,Observation #85010,https://biolit.fr/observations/observation-85010/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008865-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008862-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008863-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008856-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008853-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008854-scaled.jpg,,,Ne sais pas +N1,85008,Sortie #85008,https://biolit.fr/sorties/sortie-85008/,THERON GUILHEM,https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008865-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008862-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008863-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008856-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008853-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008854-scaled.jpg,12/27/2024 0:00,13.0000000,16.0000000,43.2826,4.951,,L Espiguette,85912,Observation #85574,https://biolit.fr/observations/observation-85574/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008850-scaled.jpg,,TRUE,Identifiable +N1,85008,Sortie #85008,https://biolit.fr/sorties/sortie-85008/,THERON GUILHEM,https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008865-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008862-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008863-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008856-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008853-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008854-scaled.jpg,12/27/2024 0:00,13.0000000,16.0000000,43.2826,4.951,,L Espiguette,85914,Observation #85570,https://biolit.fr/observations/observation-85570/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008865-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008853-scaled.jpg,,TRUE,Identifiable +N1,85008,Sortie #85008,https://biolit.fr/sorties/sortie-85008/,THERON GUILHEM,https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008865-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008862-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008863-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008856-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008853-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008854-scaled.jpg,12/27/2024 0:00,13.0000000,16.0000000,43.2826,4.951,,L Espiguette,85916,Observation #85576,https://biolit.fr/observations/observation-85576/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008862-scaled.jpg,,TRUE,Identifiable +N1,85008,Sortie #85008,https://biolit.fr/sorties/sortie-85008/,THERON GUILHEM,https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008865-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008862-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008863-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008856-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008853-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008854-scaled.jpg,12/27/2024 0:00,13.0000000,16.0000000,43.2826,4.951,,L Espiguette,85918,Observation #85572,https://biolit.fr/observations/observation-85572/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008854-scaled.jpg,,TRUE,Identifiable +N1,85018,Sortie #85018,https://biolit.fr/sorties/sortie-85018/,GELLY Ludovic,https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4561-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4565-scaled.jpg,12/27/2024 0:00,13.0000000,16.0000000,43.4731050000000,4.16542800000000,,plage de l'Espiguette 2 eme épis,85020,Observation #85020,https://biolit.fr/observations/observation-85020/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4556-scaled.jpg,,TRUE,Identifiable +N1,85018,Sortie #85018,https://biolit.fr/sorties/sortie-85018/,GELLY Ludovic,https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4561-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4565-scaled.jpg,12/27/2024 0:00,13.0000000,16.0000000,43.4731050000000,4.16542800000000,,plage de l'Espiguette 2 eme épis,85022,Observation #85022,https://biolit.fr/observations/observation-85022/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4560-scaled.jpg,,TRUE,Identifiable +N1,85018,Sortie #85018,https://biolit.fr/sorties/sortie-85018/,GELLY Ludovic,https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4561-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4565-scaled.jpg,12/27/2024 0:00,13.0000000,16.0000000,43.4731050000000,4.16542800000000,,plage de l'Espiguette 2 eme épis,85024,Observation #85024,https://biolit.fr/observations/observation-85024/,Sabellaria spinulosa,Hermelle épineuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4564-scaled.jpg,,,Identifiable +N1,85018,Sortie #85018,https://biolit.fr/sorties/sortie-85018/,GELLY Ludovic,https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4561-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4565-scaled.jpg,12/27/2024 0:00,13.0000000,16.0000000,43.4731050000000,4.16542800000000,,plage de l'Espiguette 2 eme épis,85026,Observation #85026,https://biolit.fr/observations/observation-85026/,Corallina officinalis/caespitosa,Coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4561-scaled.jpg,,,Identifiable +N1,85018,Sortie #85018,https://biolit.fr/sorties/sortie-85018/,GELLY Ludovic,https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4561-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4565-scaled.jpg,12/27/2024 0:00,13.0000000,16.0000000,43.4731050000000,4.16542800000000,,plage de l'Espiguette 2 eme épis,85028,Observation #85028,https://biolit.fr/observations/observation-85028/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4558-scaled.jpg,,,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85051,Observation #85051,https://biolit.fr/observations/observation-85051/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,,,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85053,Observation #85053,https://biolit.fr/observations/observation-85053/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg,,,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85055,Observation #85055,https://biolit.fr/observations/observation-85055/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg,,,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85057,Observation #85057,https://biolit.fr/observations/observation-85057/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg,,,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85059,Observation #85059,https://biolit.fr/observations/observation-85059/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg,,,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85061,Observation #85061,https://biolit.fr/observations/observation-85061/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg,,,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85063,Observation #85063,https://biolit.fr/observations/observation-85063/,Ammophila arenaria,Oyat,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg,,TRUE,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85065,Observation #85065,https://biolit.fr/observations/observation-85065/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg,,, +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85067,Observation #85067,https://biolit.fr/observations/observation-85067/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg,,,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85069,Observation #85069,https://biolit.fr/observations/observation-85069/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg,,,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85071,Observation #85071,https://biolit.fr/observations/observation-85071/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg,,,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85073,Observation #85073,https://biolit.fr/observations/observation-85073/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg,,,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85075,Observation #85075,https://biolit.fr/observations/observation-85075/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg,,,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85077,Observation #85077,https://biolit.fr/observations/observation-85077/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg,,TRUE,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85079,Observation #85079,https://biolit.fr/observations/observation-85079/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg,,,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85081,Observation #85081,https://biolit.fr/observations/observation-85081/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg,,,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85083,Observation #85083,https://biolit.fr/observations/observation-85083/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg,,,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85085,Observation #85085,https://biolit.fr/observations/observation-85085/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,,,Ne sais pas +N1,85095,Sortie #85095,https://biolit.fr/sorties/sortie-85095/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080125-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080122-scaled.jpg,12/24/2024 0:00,14.0000000,17.0000000,49.0412970000000,-1.6007050000000,,Agon-Coutainville,85097,Observation #85097,https://biolit.fr/observations/observation-85097/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080142-scaled.jpg,,,Ne sais pas +N1,85095,Sortie #85095,https://biolit.fr/sorties/sortie-85095/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080125-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080122-scaled.jpg,12/24/2024 0:00,14.0000000,17.0000000,49.0412970000000,-1.6007050000000,,Agon-Coutainville,85099,Observation #85099,https://biolit.fr/observations/observation-85099/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080131-scaled.jpg,,,Ne sais pas +N1,85095,Sortie #85095,https://biolit.fr/sorties/sortie-85095/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080125-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080122-scaled.jpg,12/24/2024 0:00,14.0000000,17.0000000,49.0412970000000,-1.6007050000000,,Agon-Coutainville,85101,Observation #85101,https://biolit.fr/observations/observation-85101/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080130-scaled.jpg,,TRUE,Ne sais pas +N1,85095,Sortie #85095,https://biolit.fr/sorties/sortie-85095/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080125-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080122-scaled.jpg,12/24/2024 0:00,14.0000000,17.0000000,49.0412970000000,-1.6007050000000,,Agon-Coutainville,85103,Observation #85103,https://biolit.fr/observations/observation-85103/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080128-scaled.jpg,,,Ne sais pas +N1,85095,Sortie #85095,https://biolit.fr/sorties/sortie-85095/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080125-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080122-scaled.jpg,12/24/2024 0:00,14.0000000,17.0000000,49.0412970000000,-1.6007050000000,,Agon-Coutainville,85105,Observation #85105,https://biolit.fr/observations/observation-85105/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080118-scaled.jpg,,,Ne sais pas +N1,85095,Sortie #85095,https://biolit.fr/sorties/sortie-85095/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080125-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080122-scaled.jpg,12/24/2024 0:00,14.0000000,17.0000000,49.0412970000000,-1.6007050000000,,Agon-Coutainville,85107,Observation #85107,https://biolit.fr/observations/observation-85107/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080125-scaled.jpg,,,Ne sais pas +N1,85095,Sortie #85095,https://biolit.fr/sorties/sortie-85095/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080125-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080122-scaled.jpg,12/24/2024 0:00,14.0000000,17.0000000,49.0412970000000,-1.6007050000000,,Agon-Coutainville,85109,Observation #85109,https://biolit.fr/observations/observation-85109/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080123-scaled.jpg,,,Ne sais pas +N1,85095,Sortie #85095,https://biolit.fr/sorties/sortie-85095/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080125-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080122-scaled.jpg,12/24/2024 0:00,14.0000000,17.0000000,49.0412970000000,-1.6007050000000,,Agon-Coutainville,85111,Observation #85111,https://biolit.fr/observations/observation-85111/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080122-scaled.jpg,,,Ne sais pas +N1,85121,Sortie #85121,https://biolit.fr/sorties/sortie-85121/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080153-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080166-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080202-scaled.jpg,12/26/2024 0:00,14.0000000,17.0000000,49.1552930000000,-1.59727800000000,,Pirou,85123,Observation #85123,https://biolit.fr/observations/observation-85123/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080146-scaled.jpg,,,Ne sais pas +N1,85121,Sortie #85121,https://biolit.fr/sorties/sortie-85121/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080153-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080166-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080202-scaled.jpg,12/26/2024 0:00,14.0000000,17.0000000,49.1552930000000,-1.59727800000000,,Pirou,85125,Observation #85125,https://biolit.fr/observations/observation-85125/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080152-scaled.jpg,,,Ne sais pas +N1,85121,Sortie #85121,https://biolit.fr/sorties/sortie-85121/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080153-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080166-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080202-scaled.jpg,12/26/2024 0:00,14.0000000,17.0000000,49.1552930000000,-1.59727800000000,,Pirou,85127,Observation #85127,https://biolit.fr/observations/observation-85127/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080153-scaled.jpg,,,non-identifiable +N1,85121,Sortie #85121,https://biolit.fr/sorties/sortie-85121/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080153-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080166-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080202-scaled.jpg,12/26/2024 0:00,14.0000000,17.0000000,49.1552930000000,-1.59727800000000,,Pirou,85129,Observation #85129,https://biolit.fr/observations/observation-85129/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080157-scaled.jpg,,,Ne sais pas +N1,85121,Sortie #85121,https://biolit.fr/sorties/sortie-85121/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080153-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080166-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080202-scaled.jpg,12/26/2024 0:00,14.0000000,17.0000000,49.1552930000000,-1.59727800000000,,Pirou,85131,Observation #85131,https://biolit.fr/observations/observation-85131/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080158-scaled.jpg,,,Ne sais pas +N1,85121,Sortie #85121,https://biolit.fr/sorties/sortie-85121/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080153-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080166-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080202-scaled.jpg,12/26/2024 0:00,14.0000000,17.0000000,49.1552930000000,-1.59727800000000,,Pirou,85133,Observation #85133,https://biolit.fr/observations/observation-85133/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080166-scaled.jpg,,,Ne sais pas +N1,85121,Sortie #85121,https://biolit.fr/sorties/sortie-85121/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080153-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080166-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080202-scaled.jpg,12/26/2024 0:00,14.0000000,17.0000000,49.1552930000000,-1.59727800000000,,Pirou,85135,Observation #85135,https://biolit.fr/observations/observation-85135/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080176-scaled.jpg,,,Ne sais pas +N1,85121,Sortie #85121,https://biolit.fr/sorties/sortie-85121/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080153-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080166-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080202-scaled.jpg,12/26/2024 0:00,14.0000000,17.0000000,49.1552930000000,-1.59727800000000,,Pirou,85137,Observation #85137,https://biolit.fr/observations/observation-85137/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080202-scaled.jpg,,,Ne sais pas +N1,85147,Sortie #85147,https://biolit.fr/sorties/sortie-85147/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080258-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080317-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080341-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080343-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080314-scaled.jpg,12/27/2024 0:00,14.0000000,17.0000000,49.1987620000000,-1.60666900000000,,Créance,85149,Observation #85149,https://biolit.fr/observations/observation-85149/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080252-scaled.jpg,,,non-identifiable +N1,85147,Sortie #85147,https://biolit.fr/sorties/sortie-85147/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080258-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080317-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080341-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080343-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080314-scaled.jpg,12/27/2024 0:00,14.0000000,17.0000000,49.1987620000000,-1.60666900000000,,Créance,85151,Observation #85151,https://biolit.fr/observations/observation-85151/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080253-scaled.jpg,,,Ne sais pas +N1,85147,Sortie #85147,https://biolit.fr/sorties/sortie-85147/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080258-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080317-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080341-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080343-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080314-scaled.jpg,12/27/2024 0:00,14.0000000,17.0000000,49.1987620000000,-1.60666900000000,,Créance,85153,Observation #85153,https://biolit.fr/observations/observation-85153/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080258-scaled.jpg,,,Ne sais pas +N1,85147,Sortie #85147,https://biolit.fr/sorties/sortie-85147/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080258-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080317-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080341-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080343-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080314-scaled.jpg,12/27/2024 0:00,14.0000000,17.0000000,49.1987620000000,-1.60666900000000,,Créance,85155,Observation #85155,https://biolit.fr/observations/observation-85155/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080317-scaled.jpg,,,Ne sais pas +N1,85147,Sortie #85147,https://biolit.fr/sorties/sortie-85147/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080258-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080317-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080341-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080343-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080314-scaled.jpg,12/27/2024 0:00,14.0000000,17.0000000,49.1987620000000,-1.60666900000000,,Créance,85157,Observation #85157,https://biolit.fr/observations/observation-85157/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080340-scaled.jpg,,,Ne sais pas +N1,85147,Sortie #85147,https://biolit.fr/sorties/sortie-85147/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080258-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080317-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080341-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080343-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080314-scaled.jpg,12/27/2024 0:00,14.0000000,17.0000000,49.1987620000000,-1.60666900000000,,Créance,85159,Observation #85159,https://biolit.fr/observations/observation-85159/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080341-scaled.jpg,,,Ne sais pas +N1,85147,Sortie #85147,https://biolit.fr/sorties/sortie-85147/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080258-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080317-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080341-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080343-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080314-scaled.jpg,12/27/2024 0:00,14.0000000,17.0000000,49.1987620000000,-1.60666900000000,,Créance,85161,Observation #85161,https://biolit.fr/observations/observation-85161/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080343-scaled.jpg,,,Ne sais pas +N1,85147,Sortie #85147,https://biolit.fr/sorties/sortie-85147/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080258-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080317-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080341-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080343-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080314-scaled.jpg,12/27/2024 0:00,14.0000000,17.0000000,49.1987620000000,-1.60666900000000,,Créance,85163,Observation #85163,https://biolit.fr/observations/observation-85163/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080314-scaled.jpg,,,Ne sais pas +N1,85167,Sortie #85167,https://biolit.fr/sorties/sortie-85167/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/461265335_2026397597782563_6335419826561598961_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/461252551_2026397491115907_4723805473285607736_n.jpg,9/29/2024 0:00,14.0000000,14.000005,41.6294980000000,8.81620600000000,La Girelle,Campomoro,85169,Observation #85169,https://biolit.fr/observations/observation-85169/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/461252551_2026397491115907_4723805473285607736_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/461265335_2026397597782563_6335419826561598961_n.jpg,,,Identifiable +N1,85172,Sortie #85172,https://biolit.fr/sorties/sortie-85172/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/438030087_10222794049110506_2115704816487075087_n.jpg,4/14/2024 0:00,15.0000000,15.000005,42.7121870000000,9.45500700000000,La Girelle,"Bastia, port de Toga",85176,Observation #85176,https://biolit.fr/observations/observation-85176/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/438030087_10222794049110506_2115704816487075087_n.jpg,,TRUE,Identifiable +N1,85179,Sortie #85179,https://biolit.fr/sorties/sortie-85179/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/438030087_10222794049110506_2115704816487075087_n-1.jpg,4/14/2024 0:00,15.000005,15.0000000,42.7122820000000,9.45509300000000,La Girelle,"Bastia, port de Toga",85181,Observation #85181,https://biolit.fr/observations/observation-85181/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/438030087_10222794049110506_2115704816487075087_n-1.jpg,,TRUE,Identifiable +N1,85184,Sortie #85184,https://biolit.fr/sorties/sortie-85184/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/436392613_7974123419283296_5352615133455421438_n.jpg,9/15/2024 0:00,15.0000000,15.000005,42.6725010000000,9.44641800000000,La Girelle,"Bastia, plage de l'Arinella",85186,Observation #85186,https://biolit.fr/observations/observation-85186/,Argonauta argo,Argonaute,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/436392613_7974123419283296_5352615133455421438_n.jpg,,TRUE,Identifiable +N1,85184,Sortie #85184,https://biolit.fr/sorties/sortie-85184/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/436392613_7974123419283296_5352615133455421438_n.jpg,9/15/2024 0:00,15.0000000,15.000005,42.6725010000000,9.44641800000000,La Girelle,"Bastia, plage de l'Arinella",85188,Observation #85188,https://biolit.fr/observations/observation-85188/,Argonauta argo,Argonaute,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/436392613_7974123419283296_5352615133455421438_n.jpg,,TRUE,Identifiable +N1,85191,Sortie #85191,https://biolit.fr/sorties/sortie-85191/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/438939643_1872433099866663_6876157393202456048_n.jpg,4/21/2024 0:00,15.0000000,15.000005,42.5740860000000,9.52214200000000,La Girelle,Lido de la Marana,85193,Observation #85193,https://biolit.fr/observations/observation-85193/,Lepas (Anatifa) anserifera,Anatife nonnette,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/438939643_1872433099866663_6876157393202456048_n.jpg,,,Identifiable +N1,85196,Sortie #85196,https://biolit.fr/sorties/sortie-85196/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/440806800_1876764782766828_7927527719255288070_n.jpg,4/28/2024 0:00,15.0000000,15.000005,42.575147000000,9.52164900000000,La Girelle,Lido de la Marana,85198,Observation #85198,https://biolit.fr/observations/observation-85198/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/440806800_1876764782766828_7927527719255288070_n.jpg,,,Identifiable +N1,85202,Sortie #85202,https://biolit.fr/sorties/sortie-85202/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/461755768_8396810053743154_4912405268347535210_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/461750828_8396810127076480_7256795602576268453_n.jpg,10/06/2024,16.0000000,16.0000000,42.6573590000000,9.4518630000000,La Girelle,Lido de la Marana,85204,Observation #85204,https://biolit.fr/observations/observation-85204/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/461750828_8396810127076480_7256795602576268453_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/461755768_8396810053743154_4912405268347535210_n.jpg,,,Identifiable +N1,85208,Sortie #85208,https://biolit.fr/sorties/sortie-85208/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/463241317_3783247492003969_3315288819379114526_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/463395916_3783244068670978_8295205184313193064_n.jpg,4/28/2024 0:00,15.0000000,15.000005,42.6572910000000,9.45212600000000,La Girelle,Lido de la Marana,85210,Observation #85210,https://biolit.fr/observations/observation-85210/,Janthina pallida,Janthine pâle,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/463241317_3783247492003969_3315288819379114526_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/463395916_3783244068670978_8295205184313193064_n.jpg,,,Identifiable +N1,85213,Sortie #85213,https://biolit.fr/sorties/sortie-85213/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/461494251_8329986177092209_2198206662012987490_n.jpg,9/29/2024 0:00,16.000005,17.0000000,42.654558000000,9.45330600000000,La Girelle,Lido de la Marana,85215,Observation #85215,https://biolit.fr/observations/observation-85215/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/461494251_8329986177092209_2198206662012987490_n.jpg,,,Identifiable +N1,85219,Sortie #85219,https://biolit.fr/sorties/sortie-85219/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/464089101_3789215994740452_6439658423737238525_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/463968261_3789215904740461_3853364845661570561_n.jpg,4/28/2024 0:00,16.0000000,16.0000000,42.6517810000000,9.45467900000000,La Girelle,Lido de la Marana,85221,Observation #85221,https://biolit.fr/observations/observation-85221/,Balanus crenatus,Balane crénelée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/464089101_3789215994740452_6439658423737238525_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/463968261_3789215904740461_3853364845661570561_n.jpg,,,Identifiable +N1,85224,Sortie #85224,https://biolit.fr/sorties/sortie-85224/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/464210163_2003015643475074_6468276588313074049_n.jpg,10/22/2024 0:00,16.0000000,16.0000000,42.6577010000000,9.45148200000000,La Girelle,Lido de la Marana,85226,Observation #85226,https://biolit.fr/observations/observation-85226/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/464210163_2003015643475074_6468276588313074049_n.jpg,,,Identifiable +N1,85230,Sortie #85230,https://biolit.fr/sorties/sortie-85230/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/465261344_1100803501767871_8499167429619747861_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/465251896_1100803478434540_6438486186048288220_n.jpg,4/18/2024 0:00,15.0000000,15.000005,42.556630000000,8.78120900000000,La Girelle,"calvi, arinella",85232,Observation #85232,https://biolit.fr/observations/observation-85232/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/465251896_1100803478434540_6438486186048288220_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/465261344_1100803501767871_8499167429619747861_n.jpg,,,Identifiable +N1,85235,Sortie #85235,https://biolit.fr/sorties/sortie-85235/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/465284505_2011047462671892_2990401573182183888_n.jpg,11/02/2024,15.0000000,15.0000000,42.6541800000000,9.45330600000000,La Girelle,Lido de la Marana,85237,Observation #85237,https://biolit.fr/observations/observation-85237/,Uranoscopus scaber,Uranoscope,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/465284505_2011047462671892_2990401573182183888_n.jpg,,TRUE,Identifiable +N1,85240,Sortie #85240,https://biolit.fr/sorties/sortie-85240/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/465062624_1975444936249769_5656263353588467917_n.jpg,11/01/2024,15.0000000,15.0000000,42.6183320000000,9.48068600000000,La Girelle,Lido de la Marana,85242,Observation #85242,https://biolit.fr/observations/observation-85242/,Callinectes sapidus,Crabe bleu américain,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/465062624_1975444936249769_5656263353588467917_n.jpg,,TRUE,Identifiable +N1,85245,Sortie #85245,https://biolit.fr/sorties/sortie-85245/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/465814547_1978194985974764_9057727618775367936_n.jpg,03/11/2024,15.0000000,15.000005,42.6212740000000,9.47798300000000,La Girelle,Lido de la Marana,85247,Observation #85247,https://biolit.fr/observations/observation-85247/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/465814547_1978194985974764_9057727618775367936_n.jpg,,TRUE,Identifiable +N1,85251,Sortie #85251,https://biolit.fr/sorties/sortie-85251/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/466017753_2016736178769687_4988079748798965190_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/465897988_2016735088769796_941053718649108880_n.jpg,11/10/2024,15.0000000,15.000005,42.620841000000,9.47802500000000,La Girelle,Lido de la Marana,85253,Observation #85253,https://biolit.fr/observations/observation-85253/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/466017753_2016736178769687_4988079748798965190_n.jpg,,TRUE,Identifiable +N1,85251,Sortie #85251,https://biolit.fr/sorties/sortie-85251/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/466017753_2016736178769687_4988079748798965190_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/465897988_2016735088769796_941053718649108880_n.jpg,11/10/2024,15.0000000,15.000005,42.620841000000,9.47802500000000,La Girelle,Lido de la Marana,85255,Observation #85255,https://biolit.fr/observations/observation-85255/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/465897988_2016735088769796_941053718649108880_n.jpg,,TRUE,Identifiable +N1,85258,Sortie #85258,https://biolit.fr/sorties/sortie-85258/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/467263000_3809622786033106_1913873504650875953_n.jpg,4/29/2024 0:00,15.0000000,15.000005,42.6143980000000,9.48472000000000,La Girelle,Lido de la Marana,85260,Observation #85260,https://biolit.fr/observations/observation-85260/,Macomangulus tenuis,Telline-papillon,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/467263000_3809622786033106_1913873504650875953_n.jpg,,,Identifiable +N1,85264,Sortie #85264,https://biolit.fr/sorties/sortie-85264/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/468620324_1118327546682133_1954213418808462626_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/468280259_1118327590015462_5777925126402730765_n.jpg,4/19/2024 0:00,15.0000000,15.000005,42.620101000000,9.4786260000000,La Girelle,Lido de la Marana,85266,Observation #85266,https://biolit.fr/observations/observation-85266/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/468620324_1118327546682133_1954213418808462626_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/468280259_1118327590015462_5777925126402730765_n.jpg,,TRUE,Identifiable +N1,85269,Sortie #85269,https://biolit.fr/sorties/sortie-85269/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/468893934_1541587543170331_939672172616801528_n.jpg,09/07/2024,15.0000000,15.000005,42.6345440000000,8.94053800000000,La Girelle,l'île rousse,85271,Observation #85271,https://biolit.fr/observations/observation-85271/,Brissus unicolor,Oursin de sable gris,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/468893934_1541587543170331_939672172616801528_n.jpg,,TRUE,Identifiable +N1,85274,Sortie #85274,https://biolit.fr/sorties/sortie-85274/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/468331339_1994784400982489_366614644422992703_n.jpg,4/29/2024 0:00,15.000005,15.0000000,42.6271560000000,9.47236100000000,La Girelle,Lido de la Marana,85276,Observation #85276,https://biolit.fr/observations/observation-85276/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/468331339_1994784400982489_366614644422992703_n.jpg,,TRUE,Identifiable +N1,85279,Sortie #85279,https://biolit.fr/sorties/sortie-85279/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/471384214_8903798849710936_7955913928983573164_n.jpg,12/22/2024 0:00,15.0000000,15.000005,41.6302660000000,8.81340600000000,La Girelle,campomoro,85281,Observation #85281,https://biolit.fr/observations/observation-85281/,Raja brachyura,Raie lisse,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/471384214_8903798849710936_7955913928983573164_n.jpg,,TRUE,Identifiable +N1,85290,Sortie #85290,https://biolit.fr/sorties/sortie-85290/,Benente Alix,https://biolit.fr/wp-content/uploads/jet-form-builder/4403abaf14d7318575f5124dc0e63985/2025/01/Image-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4403abaf14d7318575f5124dc0e63985/2025/01/Image-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4403abaf14d7318575f5124dc0e63985/2025/01/Image-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4403abaf14d7318575f5124dc0e63985/2025/01/Image-1.jpg,10/30/2024 0:00,9.0000000,12.0000000,43.3,5.4,,Plage du prophete,,,,,,,,,, +N1,85342,Sortie #85342,https://biolit.fr/sorties/sortie-85342/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1129582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1130072-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110529942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110556982_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110604045-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110610612-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110715006_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110855038_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110910460_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111023052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111228536-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111234210-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111304565-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111829973_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111837846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112106086_HDR-scaled.jpg,12/25/2024 0:00,11.0000000,12.0000000,43.239980000000,5.36243400000000,Planète Mer,Plage de l’Anse du Bain des Dames,85344,Observation #85344,https://biolit.fr/observations/observation-85344/,Limaria hians,Lime bâillante,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112822-scaled.jpg,,,Identifiable +N1,85342,Sortie #85342,https://biolit.fr/sorties/sortie-85342/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1129582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1130072-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110529942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110556982_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110604045-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110610612-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110715006_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110855038_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110910460_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111023052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111228536-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111234210-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111304565-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111829973_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111837846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112106086_HDR-scaled.jpg,12/25/2024 0:00,11.0000000,12.0000000,43.239980000000,5.36243400000000,Planète Mer,Plage de l’Anse du Bain des Dames,85346,Observation #85346,https://biolit.fr/observations/observation-85346/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1129582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1130072-scaled.jpg,,,Identifiable +N1,85342,Sortie #85342,https://biolit.fr/sorties/sortie-85342/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1129582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1130072-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110529942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110556982_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110604045-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110610612-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110715006_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110855038_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110910460_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111023052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111228536-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111234210-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111304565-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111829973_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111837846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112106086_HDR-scaled.jpg,12/25/2024 0:00,11.0000000,12.0000000,43.239980000000,5.36243400000000,Planète Mer,Plage de l’Anse du Bain des Dames,85348,Observation #85348,https://biolit.fr/observations/observation-85348/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110529942_HDR-scaled.jpg,,TRUE,Identifiable +N1,85342,Sortie #85342,https://biolit.fr/sorties/sortie-85342/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1129582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1130072-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110529942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110556982_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110604045-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110610612-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110715006_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110855038_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110910460_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111023052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111228536-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111234210-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111304565-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111829973_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111837846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112106086_HDR-scaled.jpg,12/25/2024 0:00,11.0000000,12.0000000,43.239980000000,5.36243400000000,Planète Mer,Plage de l’Anse du Bain des Dames,85350,Observation #85350,https://biolit.fr/observations/observation-85350/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110556982_HDR-scaled.jpg,,TRUE,Identifiable +N1,85342,Sortie #85342,https://biolit.fr/sorties/sortie-85342/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1129582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1130072-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110529942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110556982_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110604045-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110610612-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110715006_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110855038_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110910460_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111023052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111228536-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111234210-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111304565-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111829973_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111837846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112106086_HDR-scaled.jpg,12/25/2024 0:00,11.0000000,12.0000000,43.239980000000,5.36243400000000,Planète Mer,Plage de l’Anse du Bain des Dames,85352,Observation #85352,https://biolit.fr/observations/observation-85352/,Lithophaga lithophaga,Datte de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110604045-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110610612-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110715006_HDR-scaled.jpg,,TRUE,Identifiable +N1,85342,Sortie #85342,https://biolit.fr/sorties/sortie-85342/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1129582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1130072-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110529942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110556982_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110604045-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110610612-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110715006_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110855038_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110910460_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111023052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111228536-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111234210-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111304565-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111829973_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111837846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112106086_HDR-scaled.jpg,12/25/2024 0:00,11.0000000,12.0000000,43.239980000000,5.36243400000000,Planète Mer,Plage de l’Anse du Bain des Dames,85354,Observation #85354,https://biolit.fr/observations/observation-85354/,Flabellia petiolata,Udotée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110855038_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110910460_HDR-rotated.jpg,,TRUE,Identifiable +N1,85342,Sortie #85342,https://biolit.fr/sorties/sortie-85342/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1129582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1130072-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110529942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110556982_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110604045-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110610612-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110715006_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110855038_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110910460_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111023052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111228536-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111234210-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111304565-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111829973_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111837846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112106086_HDR-scaled.jpg,12/25/2024 0:00,11.0000000,12.0000000,43.239980000000,5.36243400000000,Planète Mer,Plage de l’Anse du Bain des Dames,85356,Observation #85356,https://biolit.fr/observations/observation-85356/,Astropecten spinulosus,Petite étoile-peigne,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111023052.jpg,,,Ne sais pas +N1,85342,Sortie #85342,https://biolit.fr/sorties/sortie-85342/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1129582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1130072-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110529942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110556982_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110604045-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110610612-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110715006_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110855038_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110910460_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111023052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111228536-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111234210-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111304565-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111829973_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111837846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112106086_HDR-scaled.jpg,12/25/2024 0:00,11.0000000,12.0000000,43.239980000000,5.36243400000000,Planète Mer,Plage de l’Anse du Bain des Dames,85358,Observation #85358,https://biolit.fr/observations/observation-85358/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111228536-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111234210-rotated.jpg,,TRUE,Identifiable +N1,85342,Sortie #85342,https://biolit.fr/sorties/sortie-85342/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1129582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1130072-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110529942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110556982_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110604045-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110610612-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110715006_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110855038_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110910460_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111023052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111228536-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111234210-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111304565-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111829973_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111837846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112106086_HDR-scaled.jpg,12/25/2024 0:00,11.0000000,12.0000000,43.239980000000,5.36243400000000,Planète Mer,Plage de l’Anse du Bain des Dames,85360,Observation #85360,https://biolit.fr/observations/observation-85360/,Peyssonnelia squamaria,Peyssonnelia,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111304565-scaled.jpg,,,Identifiable +N1,85342,Sortie #85342,https://biolit.fr/sorties/sortie-85342/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1129582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1130072-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110529942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110556982_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110604045-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110610612-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110715006_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110855038_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110910460_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111023052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111228536-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111234210-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111304565-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111829973_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111837846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112106086_HDR-scaled.jpg,12/25/2024 0:00,11.0000000,12.0000000,43.239980000000,5.36243400000000,Planète Mer,Plage de l’Anse du Bain des Dames,85362,Observation #85362,https://biolit.fr/observations/observation-85362/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112106086_HDR-scaled.jpg,,TRUE,Identifiable +N1,85342,Sortie #85342,https://biolit.fr/sorties/sortie-85342/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1129582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1130072-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110529942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110556982_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110604045-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110610612-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110715006_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110855038_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110910460_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111023052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111228536-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111234210-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111304565-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111829973_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111837846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112106086_HDR-scaled.jpg,12/25/2024 0:00,11.0000000,12.0000000,43.239980000000,5.36243400000000,Planète Mer,Plage de l’Anse du Bain des Dames,96912,Observation #96912,https://biolit.fr/observations/observation-96912/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111829973_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111837846_HDR-scaled.jpg,,,Identifiable +N1,85366,Sortie #85366,https://biolit.fr/sorties/sortie-85366/,EXPLORE & PRESERVE E& P,https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/01/IMG20250108120049.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/01/IMG20250108120112.jpg,01/08/2025,11.0000000,12.0000000,43.035496000000,6.15303400000000,Explore & Préserve,Plage Carbet Badine Sud,85368,Observation #85368,https://biolit.fr/observations/observation-85368/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/01/IMG20250108120112.jpg,,TRUE,Identifiable +N1,85371,Sortie #85371,https://biolit.fr/sorties/sortie-85371/,EXPLORE & PRESERVE E& P,https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/01/IMG20250108120112-1.jpg,01/08/2025,11.0000000,12.0000000,43.0354700000000,6.15307500000000,Explore & Préserve,Plage Carbet Badine Sud,85373,Observation #85373,https://biolit.fr/observations/observation-85373/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/01/IMG20250108120112-1.jpg,,TRUE,Identifiable +N1,85378,Sortie #85378,https://biolit.fr/sorties/sortie-85378/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/01/liste_nouveaux_arrivants.png | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/01/Fond_visio_PM.png,01/07/2025,14.0000000,15.0000000,48.641556000000,-2.07296100000000,Planète Mer,Plage de Saint Enogat,,,,,,,,,, +N1,85710,Sortie #85407,https://biolit.fr/sorties/sortie-85407/,Neau Estelle,https://biolit.fr/wp-content/uploads/2025/01/1000014617-scaled.jpg | https://biolit.fr/wp-content/uploads/2025/01/1000014618-scaled.jpg | https://biolit.fr/wp-content/uploads/2025/01/1000014619-scaled.jpg,01/11/2025,12.0000000,12.0:19,48.6371320,-2.050669,,Passage vers petit bé,,,,,,,,,, +N1,85714,Sortie #85402,https://biolit.fr/sorties/sortie-85402/,Neau Estelle,https://biolit.fr/wp-content/uploads/2025/01/1000014613-scaled.jpg,01/11/2025,12.0000000,12.000001,48.6506950,-2.0324730,,Passage vers petit bé,,,,,,,,,, +N1,85716,Sortie #85412,https://biolit.fr/sorties/sortie-85412/,Agent007,https://biolit.fr/wp-content/uploads/2025/01/IMG_8306-scaled.jpeg | https://biolit.fr/wp-content/uploads/2025/01/IMG_8315-scaled.jpeg | https://biolit.fr/wp-content/uploads/2025/01/IMG_8321-scaled.jpeg,01/12/2025,14.0000000,17.0000000,43.5702950000000,7.10516900000000,,Juan les Pins Plage du Midi,85805,Observation #85416,https://biolit.fr/observations/observation-85416/,,,,https://biolit.fr/wp-content/uploads/2025/01/IMG_8306-scaled.jpeg | https://biolit.fr/wp-content/uploads/2025/01/IMG_8315-scaled.jpeg | https://biolit.fr/wp-content/uploads/2025/01/IMG_8321-scaled.jpeg,,FALSE,Identifiable +N1,85716,Sortie #85412,https://biolit.fr/sorties/sortie-85412/,Agent007,https://biolit.fr/wp-content/uploads/2025/01/IMG_8306-scaled.jpeg | https://biolit.fr/wp-content/uploads/2025/01/IMG_8315-scaled.jpeg | https://biolit.fr/wp-content/uploads/2025/01/IMG_8321-scaled.jpeg,01/12/2025,14.0000000,17.0000000,43.5702950000000,7.10516900000000,,Juan les Pins Plage du Midi,85807,Observation #85414,https://biolit.fr/observations/observation-85414/,Meganyctiphanes norvegica,Krill atlantique,,https://biolit.fr/wp-content/uploads/2025/01/IMG_8321-scaled.jpeg | https://biolit.fr/wp-content/uploads/2025/01/IMG_8315-scaled.jpeg | https://biolit.fr/wp-content/uploads/2025/01/IMG_8306-scaled.jpeg,,TRUE, +N1,85720,Sortie #85431,https://biolit.fr/sorties/sortie-85431/,Bolling Laurence,https://biolit.fr/wp-content/uploads/2025/01/IMG_3569-scaled.jpg,1/13/2025 0:00,10.0000000,10.0:45,43.4836330000000,-1.56302300000000,Centre de la mer,Biarritz,,,,,,,,,, +N1,85722,Sortie #85566,https://biolit.fr/sorties/sortie-85566/,MOTTIER Rozenn,https://biolit.fr/wp-content/uploads/2025/01/tempImageooSoFI.jpg,1/15/2025 0:00,13.0:43,13.0:43,48.5136920000000,-2.75078800000000,,SAINT BRIEUC,85853,Observation #85568,https://biolit.fr/observations/observation-85568/,,,,https://biolit.fr/wp-content/uploads/2025/01/tempImageooSoFI.jpg,,FALSE,Ne sais pas +N1,85725,Sortie #85554,https://biolit.fr/sorties/sortie-85554/,Alarcon Messaline,https://biolit.fr/wp-content/uploads/2025/01/IMG_20250115_144152-scaled.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20250115_144015-scaled.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20250115_144008-scaled.jpg,1/15/2025 0:00,14.0000000,14.0:45,43.2534870000000,5.37441200000000,,Plage de Bonneveine,85855,Observation #85560,https://biolit.fr/observations/observation-85560/,,,,https://biolit.fr/wp-content/uploads/2025/01/IMG_20250115_144152-scaled-1.jpg,,FALSE,Ne sais pas +N1,85725,Sortie #85554,https://biolit.fr/sorties/sortie-85554/,Alarcon Messaline,https://biolit.fr/wp-content/uploads/2025/01/IMG_20250115_144152-scaled.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20250115_144015-scaled.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20250115_144008-scaled.jpg,1/15/2025 0:00,14.0000000,14.0:45,43.2534870000000,5.37441200000000,,Plage de Bonneveine,85857,Observation #85556,https://biolit.fr/observations/observation-85556/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2025/01/IMG_20250115_144008-scaled-1.jpg,,TRUE,Identifiable +N1,85725,Sortie #85554,https://biolit.fr/sorties/sortie-85554/,Alarcon Messaline,https://biolit.fr/wp-content/uploads/2025/01/IMG_20250115_144152-scaled.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20250115_144015-scaled.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20250115_144008-scaled.jpg,1/15/2025 0:00,14.0000000,14.0:45,43.2534870000000,5.37441200000000,,Plage de Bonneveine,85859,Observation #85558,https://biolit.fr/observations/observation-85558/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2025/01/IMG_20250115_144015-scaled-1.jpg,,TRUE,Identifiable +N1,85729,Sortie #85630,https://biolit.fr/sorties/sortie-85630/,Kaufmann Josee,https://biolit.fr/wp-content/uploads/2025/01/nautilus-argonaute-1-scaled.jpg | https://biolit.fr/wp-content/uploads/2025/01/nautilus-argonaute-2-rotated.jpg | https://biolit.fr/wp-content/uploads/2025/01/nautilus-argonaute-3-scaled.jpg,1/18/2025 0:00,16.0000000,16.0000000,41.5241240000000,8.87726200000000,,"Plage de Tralicetu, Corse",,,,,,,,,, +N1,85876,Sortie #85441,https://biolit.fr/sorties/sortie-85441/,Lai Aurore,https://biolit.fr/wp-content/uploads/2025/01/1000009493-scaled-1.jpg,01/03/2025 15:24,14.0000000,15.000005,49.2954180,-0.3829750,,Luc sur mer,85878,Observation #85443,https://biolit.fr/observations/observation-85443/,Loligo spp.,Plume de Calmar,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2025/01/1000009493-scaled-1.jpg,,TRUE,Identifiable +N1,85885,Sortie #85606,https://biolit.fr/sorties/sortie-85606/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165309-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165303-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165159-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165155-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165115-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164543-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164433-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164325-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164313-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164142-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164128-scaled-1.jpg,12/27/2024 0:00,16.0000000,17.0000000,43.7815300000000,7.51157500000000,Planète Mer (antenne Dinard),Menton,85898,Observation #85622,https://biolit.fr/observations/observation-85622/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165303-scaled-1.jpg,,FALSE,Ne sais pas +N1,85885,Sortie #85606,https://biolit.fr/sorties/sortie-85606/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165309-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165303-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165159-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165155-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165115-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164543-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164433-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164325-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164313-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164142-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164128-scaled-1.jpg,12/27/2024 0:00,16.0000000,17.0000000,43.7815300000000,7.51157500000000,Planète Mer (antenne Dinard),Menton,85900,Observation #85620,https://biolit.fr/observations/observation-85620/,,,,https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165155-scaled-1.jpg,,FALSE,Ne sais pas +N1,85885,Sortie #85606,https://biolit.fr/sorties/sortie-85606/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165309-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165303-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165159-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165155-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165115-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164543-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164433-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164325-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164313-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164142-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164128-scaled-1.jpg,12/27/2024 0:00,16.0000000,17.0000000,43.7815300000000,7.51157500000000,Planète Mer (antenne Dinard),Menton,85902,Observation #85618,https://biolit.fr/observations/observation-85618/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165115-scaled-1.jpg,,TRUE,Identifiable +N1,85885,Sortie #85606,https://biolit.fr/sorties/sortie-85606/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165309-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165303-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165159-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165155-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165115-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164543-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164433-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164325-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164313-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164142-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164128-scaled-1.jpg,12/27/2024 0:00,16.0000000,17.0000000,43.7815300000000,7.51157500000000,Planète Mer (antenne Dinard),Menton,85904,Observation #85616,https://biolit.fr/observations/observation-85616/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164543-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165159-scaled-1.jpg,,TRUE,Identifiable +N1,85885,Sortie #85606,https://biolit.fr/sorties/sortie-85606/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165309-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165303-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165159-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165155-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165115-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164543-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164433-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164325-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164313-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164142-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164128-scaled-1.jpg,12/27/2024 0:00,16.0000000,17.0000000,43.7815300000000,7.51157500000000,Planète Mer (antenne Dinard),Menton,85906,Observation #85614,https://biolit.fr/observations/observation-85614/,Corallina officinalis/caespitosa,Coralline,,https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164433-scaled-1.jpg,,FALSE,Identifiable +N1,85885,Sortie #85606,https://biolit.fr/sorties/sortie-85606/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165309-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165303-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165159-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165155-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165115-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164543-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164433-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164325-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164313-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164142-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164128-scaled-1.jpg,12/27/2024 0:00,16.0000000,17.0000000,43.7815300000000,7.51157500000000,Planète Mer (antenne Dinard),Menton,85908,Observation #85610,https://biolit.fr/observations/observation-85610/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164313-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164325-scaled-1.jpg,,FALSE,Identifiable +N1,85885,Sortie #85606,https://biolit.fr/sorties/sortie-85606/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165309-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165303-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165159-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165155-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165115-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164543-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164433-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164325-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164313-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164142-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164128-scaled-1.jpg,12/27/2024 0:00,16.0000000,17.0000000,43.7815300000000,7.51157500000000,Planète Mer (antenne Dinard),Menton,85910,Observation #85608,https://biolit.fr/observations/observation-85608/,Loripes orbiculatus,Loripes orbiculaire,,https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164142-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164128-scaled-1.jpg,,FALSE,Identifiable +N1,85993,Sortie #85993,https://biolit.fr/sorties/sortie-85993/,Zsolnay Nikola,https://biolit.fr/wp-content/uploads/jet-form-builder/c24bd323db893a1527cfb6819d33fe73/2025/01/IMG-20250118-WA0023.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c24bd323db893a1527cfb6819d33fe73/2025/01/IMG-20250118-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c24bd323db893a1527cfb6819d33fe73/2025/01/IMG-20250118-WA0025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c24bd323db893a1527cfb6819d33fe73/2025/01/IMG-20250118-WA0026.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c24bd323db893a1527cfb6819d33fe73/2025/01/IMG-20250118-WA0027.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c24bd323db893a1527cfb6819d33fe73/2025/01/IMG-20250118-WA0028.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c24bd323db893a1527cfb6819d33fe73/2025/01/IMG-20250118-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c24bd323db893a1527cfb6819d33fe73/2025/01/IMG-20250118-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c24bd323db893a1527cfb6819d33fe73/2025/01/IMG-20250118-WA0032.jpg,1/18/2025 0:00,13.0000000,14.0000000,43.0091020000000,6.2175420000000,Explore & Préserve,"Plage du Lequin, Porquerolles, Hyères",,,,,,,,,, +N1,85997,Sortie #85997,https://biolit.fr/sorties/sortie-85997/,Zsolnay Nikola,https://biolit.fr/wp-content/uploads/jet-form-builder/c24bd323db893a1527cfb6819d33fe73/2025/01/IMG-20250118-WA0032-1.jpg,1/18/2025 0:00,13.0000000,14.0000000,43.0090810000000,6.2175240000000,Explore & Préserve,"Plage du Lequin, Porquerolles, Hyères",,,,,,,,,, +N1,86005,Sortie #86005,https://biolit.fr/sorties/sortie-86005/,Groupe addap13,https://biolit.fr/wp-content/uploads/jet-form-builder/15f9375534c08fa3299c57a76805f115/2025/01/17376408447208122786442424204979-scaled.jpg,1/23/2025 0:00,14.0:59,15.000001,43.2714420000000,5.30111800000000,,Calanque de pomegues,86008,Observation #86008,https://biolit.fr/observations/observation-86008/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/15f9375534c08fa3299c57a76805f115/2025/01/17376408447208122786442424204979-scaled.jpg,,TRUE,Identifiable +N1,86027,Sortie #86027,https://biolit.fr/sorties/sortie-86027/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/cd6074e82695631e6cb675ce44b100a8/2025/01/@AnemoneDeMer-scaled.jpg,09/08/2009,11.0:26,11.0:26,43.328466000000,5.15999500000000,,,,,,,,,,,, +N1,86070,Sortie #86070,https://biolit.fr/sorties/sortie-86070/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_132827-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_133329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_134242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/biolit-scaled.jpg,7/26/2024 0:00,14.0000000,16.0000000,43.8195920000000,-1.37478400000000,Atlantique Landes Récifs,lac du Port d'Albert,86073,Observation #86073,https://biolit.fr/observations/observation-86073/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_132827-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_133329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_134242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/biolit-scaled.jpg,,,Ne sais pas +N1,86070,Sortie #86070,https://biolit.fr/sorties/sortie-86070/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_132827-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_133329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_134242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/biolit-scaled.jpg,7/26/2024 0:00,14.0000000,16.0000000,43.8195920000000,-1.37478400000000,Atlantique Landes Récifs,lac du Port d'Albert,86075,Observation #86075,https://biolit.fr/observations/observation-86075/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_132827-scaled.jpg,,,Ne sais pas +N1,86070,Sortie #86070,https://biolit.fr/sorties/sortie-86070/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_132827-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_133329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_134242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/biolit-scaled.jpg,7/26/2024 0:00,14.0000000,16.0000000,43.8195920000000,-1.37478400000000,Atlantique Landes Récifs,lac du Port d'Albert,86077,Observation #86077,https://biolit.fr/observations/observation-86077/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_133329-scaled.jpg,,,Ne sais pas +N1,86070,Sortie #86070,https://biolit.fr/sorties/sortie-86070/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_132827-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_133329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_134242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/biolit-scaled.jpg,7/26/2024 0:00,14.0000000,16.0000000,43.8195920000000,-1.37478400000000,Atlantique Landes Récifs,lac du Port d'Albert,86079,Observation #86079,https://biolit.fr/observations/observation-86079/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_134242-scaled.jpg,,,Ne sais pas +N1,86070,Sortie #86070,https://biolit.fr/sorties/sortie-86070/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_132827-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_133329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_134242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/biolit-scaled.jpg,7/26/2024 0:00,14.0000000,16.0000000,43.8195920000000,-1.37478400000000,Atlantique Landes Récifs,lac du Port d'Albert,86081,Observation #86081,https://biolit.fr/observations/observation-86081/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/biolit-scaled.jpg,,,Ne sais pas +N1,86106,Sortie #86106,https://biolit.fr/sorties/sortie-86106/,Hovhannessian Diane,https://biolit.fr/wp-content/uploads/jet-form-builder/c4b5304c6e107a4b697fa50c84dc3e9a/2025/01/Tournepierres.jpg,12/08/2024,15.0000000,16.0000000,49.5077550000000,0.0681280000000000,,Le Havre,,,,,,,,,, +N1,86127,Sortie #86127,https://biolit.fr/sorties/sortie-86127/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/01/20250116_Araignee-des-anemones_Plage-de-Saint-Enogat-15H41-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/01/20250116_Galathe-intermediaire_Plage-de-Saint-Enogat-15H09-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/01/20250116_Oeuf-de-petite-roussette_Plage-de-Saint-Enogat-15H22-scaled.jpg,1/16/2025 0:00,15.000009,15.0:41,48.6426330000000,-2.07366200000000,,Plage de Saint Enogat,86131,Observation #86131,https://biolit.fr/observations/observation-86131/,Galathea intermedia,Galathée intermédiaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/01/20250116_Galathe-intermediaire_Plage-de-Saint-Enogat-15H09-scaled.jpg,,TRUE,Identifiable +N1,86127,Sortie #86127,https://biolit.fr/sorties/sortie-86127/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/01/20250116_Araignee-des-anemones_Plage-de-Saint-Enogat-15H41-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/01/20250116_Galathe-intermediaire_Plage-de-Saint-Enogat-15H09-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/01/20250116_Oeuf-de-petite-roussette_Plage-de-Saint-Enogat-15H22-scaled.jpg,1/16/2025 0:00,15.000009,15.0:41,48.6426330000000,-2.07366200000000,,Plage de Saint Enogat,86133,Observation #86133,https://biolit.fr/observations/observation-86133/,Inachus phalangium,Araignée des anémones,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/01/20250116_Araignee-des-anemones_Plage-de-Saint-Enogat-15H41-scaled.jpg,,TRUE,Identifiable +N1,86127,Sortie #86127,https://biolit.fr/sorties/sortie-86127/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/01/20250116_Araignee-des-anemones_Plage-de-Saint-Enogat-15H41-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/01/20250116_Galathe-intermediaire_Plage-de-Saint-Enogat-15H09-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/01/20250116_Oeuf-de-petite-roussette_Plage-de-Saint-Enogat-15H22-scaled.jpg,1/16/2025 0:00,15.000009,15.0:41,48.6426330000000,-2.07366200000000,,Plage de Saint Enogat,96873,Observation #96873,https://biolit.fr/observations/observation-96873/,Scyliorhinus canicula,Capsule de petite roussette,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/01/20250116_Oeuf-de-petite-roussette_Plage-de-Saint-Enogat-15H22-scaled.jpg,,TRUE,Identifiable +N1,86138,Sortie #86138,https://biolit.fr/sorties/sortie-86138/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/baliste-scaled.jpg,3/26/2022 0:00,10.0000000,12.0000000,43.6458620000000,-361.465816000000,Atlantique Landes Récifs,Capbreton,,,,,,,,,, +N1,86142,Sortie #86142,https://biolit.fr/sorties/sortie-86142/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/2021_07_19_MB_MM_BA_FM_SERRAN-CHEVRETTE-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/2021_09_23_MB_MM_BA_FM_SERRAN-CHEVRETTE.jpg,9/22/2021 0:00,10.0000000,12.0000000,43.6456140000000,-1.47886300000000,Atlantique Landes Récifs,Capbreton,86144,Observation #86144,https://biolit.fr/observations/observation-86144/,Serranus cabrilla,Serran-chèvre,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/2021_07_19_MB_MM_BA_FM_SERRAN-CHEVRETTE-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/2021_09_23_MB_MM_BA_FM_SERRAN-CHEVRETTE.jpg,,TRUE,Ne sais pas +N1,86148,Sortie #86148,https://biolit.fr/sorties/sortie-86148/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/25082020-DSC03461-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/28072020-DSC03117-scaled.jpg,3/24/2022 0:00,10.0000000,12.0000000,43.6453170000000,-1.48066500000000,Atlantique Landes Récifs,Capbreton,86149,Observation #86149,https://biolit.fr/observations/observation-86149/,Seriola rivoliana,Sériole-limon,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/25082020-DSC03461-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/28072020-DSC03117-scaled.jpg,,TRUE,Identifiable +N1,86153,Sortie #86153,https://biolit.fr/sorties/sortie-86153/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/27082019-DSC00973-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/29072021-DSC04781-scaled.jpg,11/04/2022,10.0000000,12.0000000,43.6431290000000,-1.47302600000000,Atlantique Landes Récifs,Capbreton,86154,Observation #86154,https://biolit.fr/observations/observation-86154/,Sepia officinalis,Seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/27082019-DSC00973-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/29072021-DSC04781-scaled.jpg,,TRUE,Identifiable +N1,86157,Sortie #86157,https://biolit.fr/sorties/sortie-86157/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Copie-de-Sar-A-tAate-noire-scaled.jpg,10/25/2022 0:00,10.0000000,12.0000000,43.646833000000,-1.45824200000000,Atlantique Landes Récifs,Capbreton,86158,Observation #86158,https://biolit.fr/observations/observation-86158/,Diplodus vulgaris,Sar à tête noire,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Copie-de-Sar-A-tAate-noire-scaled.jpg,,,Identifiable +N1,86161,Sortie #86161,https://biolit.fr/sorties/sortie-86161/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Copie-de-Salpe-scaled.jpg,10/25/2022 0:00,10.0000000,12.0000000,43.6495880000000,-1.51113500000000,Atlantique Landes Récifs,Capbreton,86162,Observation #86162,https://biolit.fr/observations/observation-86162/,Thalia democratica,Salpe démocratique,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Copie-de-Salpe-scaled.jpg,,,Identifiable +N1,86166,Sortie #86166,https://biolit.fr/sorties/sortie-86166/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/17092019-DSC01276-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/27082019-DSC00895-scaled.jpg,3/26/2022 0:00,10.0000000,12.0000000,43.6468560000000,-1.51010500000000,Atlantique Landes Récifs,Capbreton,86167,Observation #86167,https://biolit.fr/observations/observation-86167/,Zeus faber,Saint-pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/17092019-DSC01276-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/27082019-DSC00895-scaled.jpg,,TRUE,Identifiable +N1,86170,Sortie #86170,https://biolit.fr/sorties/sortie-86170/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Copie-de-Rascasse-brune-2-scaled.jpg,10/11/2022,10.0000000,12.0000000,43.6428810000000,-1.49465600000000,Atlantique Landes Récifs,capbreton,86171,Observation #86171,https://biolit.fr/observations/observation-86171/,Scorpaena porcus,Rascasse brune,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Copie-de-Rascasse-brune-2-scaled.jpg,,,Identifiable +N1,86174,Sortie #86174,https://biolit.fr/sorties/sortie-86174/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/poulpe-scaled.jpg,10/11/2022,10.0000000,12.0000000,43.641735000000,-1.5054700000000,Atlantique Landes Récifs,capbreton,86175,Observation #86175,https://biolit.fr/observations/observation-86175/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/poulpe-scaled.jpg,,TRUE,Identifiable +N1,86178,Sortie #86178,https://biolit.fr/sorties/sortie-86178/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/palourde-scaled.jpg,02/07/2023,10.0000000,12.0000000,43.6432050000000,-1.47156700000000,Atlantique Landes Récifs,palourde,86179,Observation #86179,https://biolit.fr/observations/observation-86179/,Polititapes rhomboides,Palourde rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/palourde-scaled.jpg,,,Identifiable +N1,86182,Sortie #86182,https://biolit.fr/sorties/sortie-86182/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Copie-de-Pageot-scaled.jpg,10/11/2022,10.0000000,12.0000000,43.6399750000000,-1.47276900000000,Atlantique Landes Récifs,capbreton,86183,Observation #86183,https://biolit.fr/observations/observation-86183/,Pagellus erythrinus,Pageot commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Copie-de-Pageot-scaled.jpg,,,Identifiable +N1,86186,Sortie #86186,https://biolit.fr/sorties/sortie-86186/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/28052021-Flabellina-pedata-2-scaled.jpg,11/04/2022,10.0000000,12.0000000,43.6461100000000,-1.48195300000000,Atlantique Landes Récifs,capbreton,86187,Observation #86187,https://biolit.fr/observations/observation-86187/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/28052021-Flabellina-pedata-2-scaled.jpg,,,Identifiable +N1,86190,Sortie #86190,https://biolit.fr/sorties/sortie-86190/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/mola-mola-scaled.jpg,3/26/2022 0:00,10.0000000,12.0000000,43.6433780000000,-1.50358200000000,,capbreton,86191,Observation #86191,https://biolit.fr/observations/observation-86191/,Mola mola,Poisson-lune,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/mola-mola-scaled.jpg,,TRUE,Identifiable +N1,86194,Sortie #86194,https://biolit.fr/sorties/sortie-86194/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/homard-scaled.jpg,3/26/2022 0:00,10.0000000,12.0000000,43.6441990000000,-1.49130800000000,Atlantique Landes Récifs,capbreton,86195,Observation #86195,https://biolit.fr/observations/observation-86195/,Homarus gammarus,Homard européen,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/homard-scaled.jpg,,TRUE,Identifiable +N1,86198,Sortie #86198,https://biolit.fr/sorties/sortie-86198/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Copie-de-Etrille-2-scaled.jpg,07/09/2022,10.0000000,12.0000000,43.6438740000000,-1.48984900000000,Atlantique Landes Récifs,capbreton,86199,Observation #86199,https://biolit.fr/observations/observation-86199/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Copie-de-Etrille-2-scaled.jpg,,TRUE,Identifiable +N1,86202,Sortie #86202,https://biolit.fr/sorties/sortie-86202/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/2021_11_07_MB_MM_S3_FM_ETOILE-DE-MER-EPINEUSE-scaled.jpg,11/26/2021 0:00,10.0000000,12.0000000,43.6408930000000,-1.48778900000000,Atlantique Landes Récifs,capbreton,86203,Observation #86203,https://biolit.fr/observations/observation-86203/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/2021_11_07_MB_MM_S3_FM_ETOILE-DE-MER-EPINEUSE-scaled.jpg,,TRUE,Identifiable +N1,86206,Sortie #86206,https://biolit.fr/sorties/sortie-86206/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/2021_11_07_MB_MM_S3_FF_HERMELLES_EPONGES-scaled.jpg,11/26/2021 0:00,10.0000000,12.0000000,43.6434530000000,-1.4904500000000,Atlantique Landes Récifs,capbreton,86207,Observation #86207,https://biolit.fr/observations/observation-86207/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/2021_11_07_MB_MM_S3_FF_HERMELLES_EPONGES-scaled.jpg,,TRUE,Identifiable +N1,86210,Sortie #86210,https://biolit.fr/sorties/sortie-86210/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/2021_09_23_MB_MM_S3_FM_CTENOLABRE.jpg,10/06/2021,10.0000000,12.0000000,43.6414330000000,-1.51954700000000,Atlantique Landes Récifs,capbreton,86211,Observation #86211,https://biolit.fr/observations/observation-86211/,Ctenolabrus rupestris,Rouquié,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/2021_09_23_MB_MM_S3_FM_CTENOLABRE.jpg,,TRUE,Ne sais pas +N1,86215,Sortie #86215,https://biolit.fr/sorties/sortie-86215/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/congre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/CONGRE-5-scaled.jpg,11/26/2022 0:00,10.0000000,12.0000000,43.6441230000000,-1.48778900000000,Atlantique Landes Récifs,capbreton,86218,Observation #86218,https://biolit.fr/observations/observation-86218/,Conger conger,Congre,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/congre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/CONGRE-5-scaled.jpg,,,Identifiable +N1,86221,Sortie #86221,https://biolit.fr/sorties/sortie-86221/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Copie-de-Chinchards-scaled.jpg,10/11/2022,10.0000000,12.0000000,43.7860530000000,-1.4042330000000,Atlantique Landes Récifs,récifs articiels atlantique landes récifs,86222,Observation #86222,https://biolit.fr/observations/observation-86222/,Trachurus trachurus,Chinchard commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Copie-de-Chinchards-scaled.jpg,,,Identifiable +N1,86225,Sortie #86225,https://biolit.fr/sorties/sortie-86225/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/8166868-2-copie.jpg,11/26/2022 0:00,10.0000000,12.0000000,43.787807000000,-1.40198000000000,Atlantique Landes Récifs,Récifs artificiels d'atlantique landes récifs,86226,Observation #86226,https://biolit.fr/observations/observation-86226/,Parablennius pilicornis,Blennie pilicorne,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/8166868-2-copie.jpg,,,Identifiable +N1,86229,Sortie #86229,https://biolit.fr/sorties/sortie-86229/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Blennie-gattorugine-scaled.jpg,11/26/2022 0:00,10.0000000,12.0000000,43.7870450000000,-1.40131500000000,Atlantique Landes Récifs,Récifs artificiels d'atlantique landes récifs,86230,Observation #86230,https://biolit.fr/observations/observation-86230/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Blennie-gattorugine-scaled.jpg,,,Ne sais pas +N1,86233,Sortie #86233,https://biolit.fr/sorties/sortie-86233/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Bivalve-2-scaled.jpg,11/26/2022 0:00,10.0000000,12.0000000,43.7867350000000,-1.40217300000000,Atlantique Landes Récifs,Récifs artificiels d'atlantique landes récifs,86234,Observation #86234,https://biolit.fr/observations/observation-86234/,Chama gryphoides,Petit bivalve épineux,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Bivalve-2-scaled.jpg,,,Identifiable +N1,86237,Sortie #86237,https://biolit.fr/sorties/sortie-86237/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Copie-de-Bernard-lermite-scaled.jpg,11/26/2022 0:00,10.0000000,12.0000000,43.7874040000000,-1.40270900000000,Atlantique Landes Récifs,Récifs artificiels d'atlantique landes récifs,86238,Observation #86238,https://biolit.fr/observations/observation-86238/,Calcinus latens,Bernard-l'ermite timide,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Copie-de-Bernard-lermite-scaled.jpg,,,Identifiable +N1,86241,Sortie #86241,https://biolit.fr/sorties/sortie-86241/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Copie-de-AnA©mone-bijou-scaled.jpg,11/26/2022 0:00,10.0000000,12.0000000,43.7864440000000,-1.40090700000000,Atlantique Landes Récifs,Récifs artificiels d'atlantique landes récifs,86242,Observation #86242,https://biolit.fr/observations/observation-86242/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Copie-de-AnA©mone-bijou-scaled.jpg,,,Ne sais pas +N1,86245,Sortie #86245,https://biolit.fr/sorties/sortie-86245/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/AnA©mone-marguerite-bouquet-chinchards-scaled.jpg,11/26/2022 0:00,10.0000000,12.0000000,43.7878630000000,-1.40235500000000,Atlantique Landes Récifs,récifs artificiels d'atlantique landes récifs,86246,Observation #86246,https://biolit.fr/observations/observation-86246/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/AnA©mone-marguerite-bouquet-chinchards-scaled.jpg,,,Ne sais pas +N1,86266,Sortie #86266,https://biolit.fr/sorties/sortie-86266/,herve laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/4888052912dfaac1a7784a6f29995572/2025/01/photos-du-01-29-2025_5395-.jpg,1/29/2025 0:00,13.0000000,14.0000000,48.5094360000000,-4.76695400000000,,,86267,Observation #86267,https://biolit.fr/observations/observation-86267/,Atriolum robustum,Synascidie pomme de pin,,https://biolit.fr/wp-content/uploads/jet-form-builder/4888052912dfaac1a7784a6f29995572/2025/01/photos-du-01-29-2025_5395-.jpg,,,Identifiable +N1,86482,Sortie #86482,https://biolit.fr/sorties/sortie-86482/,huet Mélyne,https://biolit.fr/wp-content/uploads/jet-form-builder/7e1c6213c1971d088004ee1ed73e878b/2025/01/tempImageNIbM7S-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7e1c6213c1971d088004ee1ed73e878b/2025/01/tempImageq4BUfh-scaled.jpg,1/30/2025 0:00,13.0000000,14.0000000,48.6550010000000,-2.02405900000000,Planète Mer (antenne Dinard),FORT national,86490,Observation #86490,https://biolit.fr/observations/observation-86490/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/7e1c6213c1971d088004ee1ed73e878b/2025/01/tempImageNIbM7S-scaled.jpg,,TRUE,Identifiable +N1,86482,Sortie #86482,https://biolit.fr/sorties/sortie-86482/,huet Mélyne,https://biolit.fr/wp-content/uploads/jet-form-builder/7e1c6213c1971d088004ee1ed73e878b/2025/01/tempImageNIbM7S-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7e1c6213c1971d088004ee1ed73e878b/2025/01/tempImageq4BUfh-scaled.jpg,1/30/2025 0:00,13.0000000,14.0000000,48.6550010000000,-2.02405900000000,Planète Mer (antenne Dinard),FORT national,86509,Observation #86509,https://biolit.fr/observations/observation-86509/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/7e1c6213c1971d088004ee1ed73e878b/2025/01/tempImageq4BUfh-scaled.jpg,,TRUE,Identifiable +N1,86515,Sortie #86515,https://biolit.fr/sorties/sortie-86515/,Charrier Lilian,https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0001.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0002.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.05_2b8ac7c9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.10_71fab3bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.10_d4daf2b1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_990f7bd6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_e7d39b03.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_f6c30463.jpg,1/30/2025 0:00,13.0000000,15.0000000,48.657669,-1.969669,Planète Mer (antenne Dinard),Fort national,86526,Observation #86526,https://biolit.fr/observations/observation-86526/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0005.jpg,,TRUE,Identifiable +N1,86515,Sortie #86515,https://biolit.fr/sorties/sortie-86515/,Charrier Lilian,https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0001.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0002.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.05_2b8ac7c9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.10_71fab3bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.10_d4daf2b1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_990f7bd6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_e7d39b03.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_f6c30463.jpg,1/30/2025 0:00,13.0000000,15.0000000,48.657669,-1.969669,Planète Mer (antenne Dinard),Fort national,86541,Observation #86541,https://biolit.fr/observations/observation-86541/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_f6c30463.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_990f7bd6.jpg,,TRUE,Identifiable +N1,86515,Sortie #86515,https://biolit.fr/sorties/sortie-86515/,Charrier Lilian,https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0001.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0002.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.05_2b8ac7c9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.10_71fab3bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.10_d4daf2b1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_990f7bd6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_e7d39b03.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_f6c30463.jpg,1/30/2025 0:00,13.0000000,15.0000000,48.657669,-1.969669,Planète Mer (antenne Dinard),Fort national,86547,Observation #86547,https://biolit.fr/observations/observation-86547/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.10_71fab3bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0002.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_e7d39b03.jpg,,TRUE,Identifiable +N1,86515,Sortie #86515,https://biolit.fr/sorties/sortie-86515/,Charrier Lilian,https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0001.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0002.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.05_2b8ac7c9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.10_71fab3bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.10_d4daf2b1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_990f7bd6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_e7d39b03.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_f6c30463.jpg,1/30/2025 0:00,13.0000000,15.0000000,48.657669,-1.969669,Planète Mer (antenne Dinard),Fort national,86549,Observation #86549,https://biolit.fr/observations/observation-86549/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.05_2b8ac7c9.jpg,,TRUE,Identifiable +N1,86515,Sortie #86515,https://biolit.fr/sorties/sortie-86515/,Charrier Lilian,https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0001.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0002.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.05_2b8ac7c9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.10_71fab3bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.10_d4daf2b1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_990f7bd6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_e7d39b03.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_f6c30463.jpg,1/30/2025 0:00,13.0000000,15.0000000,48.657669,-1.969669,Planète Mer (antenne Dinard),Fort national,86559,Observation #86559,https://biolit.fr/observations/observation-86559/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0004.jpg,,TRUE,Identifiable +N1,86573,Sortie #86573,https://biolit.fr/sorties/sortie-86573/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241229_170207-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241229_170214-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241229_171215-3-scaled.jpg,12/29/2024 0:00,17.0000000,17.0000000,43.259668000000,5.37480700000000,Planète Mer,Plage de l'Huveaune,86574,Observation #86574,https://biolit.fr/observations/observation-86574/,Tritia mutabilis,Noisette de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241229_170207-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241229_170214-3-scaled.jpg,,,Identifiable +N1,86573,Sortie #86573,https://biolit.fr/sorties/sortie-86573/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241229_170207-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241229_170214-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241229_171215-3-scaled.jpg,12/29/2024 0:00,17.0000000,17.0000000,43.259668000000,5.37480700000000,Planète Mer,Plage de l'Huveaune,86576,Observation #86576,https://biolit.fr/observations/observation-86576/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241229_171215-3-scaled.jpg,,TRUE,Identifiable +N1,86579,Sortie #86579,https://biolit.fr/sorties/sortie-86579/,Furcy Céline,https://biolit.fr/wp-content/uploads/jet-form-builder/6c5af26155c3a623bc7926006b0f3f56/2025/01/1000025280-scaled.jpg,1/31/2025 0:00,9.0:48,11.0:48,43.3564600,5.3274990,AIEJE,Plage de Corbières Marseille,86580,Observation #86580,https://biolit.fr/observations/observation-86580/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c5af26155c3a623bc7926006b0f3f56/2025/01/1000025280-scaled.jpg,,TRUE,Identifiable +N1,86652,Sortie #86652,https://biolit.fr/sorties/sortie-86652/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010650-scaled.jpg,02/02/2025,12.0000000,13.0000000,46.0036290000000,-1.14378000000000,,fort enet,86653,Observation #86653,https://biolit.fr/observations/observation-86653/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010640-scaled.jpg,,TRUE,Identifiable +N1,86652,Sortie #86652,https://biolit.fr/sorties/sortie-86652/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010650-scaled.jpg,02/02/2025,12.0000000,13.0000000,46.0036290000000,-1.14378000000000,,fort enet,86655,Observation #86655,https://biolit.fr/observations/observation-86655/,Conger conger,Congre,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010634-scaled.jpg,,TRUE,Identifiable +N1,86652,Sortie #86652,https://biolit.fr/sorties/sortie-86652/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010650-scaled.jpg,02/02/2025,12.0000000,13.0000000,46.0036290000000,-1.14378000000000,,fort enet,86657,Observation #86657,https://biolit.fr/observations/observation-86657/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010621-scaled.jpg,,TRUE,Identifiable +N1,86652,Sortie #86652,https://biolit.fr/sorties/sortie-86652/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010650-scaled.jpg,02/02/2025,12.0000000,13.0000000,46.0036290000000,-1.14378000000000,,fort enet,86659,Observation #86659,https://biolit.fr/observations/observation-86659/,Palaemon sp.,Crevette,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010620-scaled.jpg,,TRUE,Identifiable +N1,86652,Sortie #86652,https://biolit.fr/sorties/sortie-86652/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010650-scaled.jpg,02/02/2025,12.0000000,13.0000000,46.0036290000000,-1.14378000000000,,fort enet,86661,Observation #86661,https://biolit.fr/observations/observation-86661/,Aeolidia filomenae,Eolis de Filomène,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010650-scaled.jpg,,TRUE,Identifiable +N1,86652,Sortie #86652,https://biolit.fr/sorties/sortie-86652/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010650-scaled.jpg,02/02/2025,12.0000000,13.0000000,46.0036290000000,-1.14378000000000,,fort enet,86663,Observation #86663,https://biolit.fr/observations/observation-86663/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010624-scaled.jpg,,TRUE,Ne sais pas +N1,86652,Sortie #86652,https://biolit.fr/sorties/sortie-86652/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010650-scaled.jpg,02/02/2025,12.0000000,13.0000000,46.0036290000000,-1.14378000000000,,fort enet,86665,Observation #86665,https://biolit.fr/observations/observation-86665/,Tritia reticulata,Ponte de nasse réticulée,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010627-scaled.jpg,,TRUE,Ne sais pas +N1,86652,Sortie #86652,https://biolit.fr/sorties/sortie-86652/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010650-scaled.jpg,02/02/2025,12.0000000,13.0000000,46.0036290000000,-1.14378000000000,,fort enet,86667,Observation #86667,https://biolit.fr/observations/observation-86667/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010629-scaled.jpg,,,Ne sais pas +N1,86652,Sortie #86652,https://biolit.fr/sorties/sortie-86652/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010650-scaled.jpg,02/02/2025,12.0000000,13.0000000,46.0036290000000,-1.14378000000000,,fort enet,86669,Observation #86669,https://biolit.fr/observations/observation-86669/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010631-scaled.jpg,,,Ne sais pas +N1,86652,Sortie #86652,https://biolit.fr/sorties/sortie-86652/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010650-scaled.jpg,02/02/2025,12.0000000,13.0000000,46.0036290000000,-1.14378000000000,,fort enet,86671,Observation #86671,https://biolit.fr/observations/observation-86671/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010638-scaled.jpg,,TRUE,Ne sais pas +N1,86652,Sortie #86652,https://biolit.fr/sorties/sortie-86652/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010650-scaled.jpg,02/02/2025,12.0000000,13.0000000,46.0036290000000,-1.14378000000000,,fort enet,86673,Observation #86673,https://biolit.fr/observations/observation-86673/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010635-scaled.jpg,,,Ne sais pas +N1,86652,Sortie #86652,https://biolit.fr/sorties/sortie-86652/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010650-scaled.jpg,02/02/2025,12.0000000,13.0000000,46.0036290000000,-1.14378000000000,,fort enet,86675,Observation #86675,https://biolit.fr/observations/observation-86675/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010627-scaled.jpg,,,Ne sais pas +N1,86652,Sortie #86652,https://biolit.fr/sorties/sortie-86652/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010650-scaled.jpg,02/02/2025,12.0000000,13.0000000,46.0036290000000,-1.14378000000000,,fort enet,86677,Observation #86677,https://biolit.fr/observations/observation-86677/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010628-scaled.jpg,,,Ne sais pas +N1,86715,Sortie #86715,https://biolit.fr/sorties/sortie-86715/,DE PINTO Magali,https://biolit.fr/wp-content/uploads/jet-form-builder/ea8dab3790d482dfb19b766a675629b0/2025/02/img_7662-scaled.jpg,10/11/2024,10.0000000,11.0:45,43.357384000000,5.29029500000000,AIEJE,PLAGE DU FORTIN,,,,,,,,,, +N1,86822,Sortie #86822,https://biolit.fr/sorties/sortie-86822/,Bolling Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/6a2ff5804221cc096949f05f707da7ab/2025/02/1I8A6348-scaled.jpg,02/05/2025,11.0000000,11.0000000,43.4835760000000,-1.56326400000000,Centre de la mer,Biarritz,,,,,,,,,, +N1,86826,Sortie #86826,https://biolit.fr/sorties/sortie-86826/,Bolling Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/6a2ff5804221cc096949f05f707da7ab/2025/02/IMG_3567-scaled.jpg,02/05/2025,11.0000000,11.0000000,43.4835760000000,-1.56324100000000,Centre de la mer,Biarritz,,,,,,,,,, +N1,86833,Sortie #86833,https://biolit.fr/sorties/sortie-86833/,MARCEL Killian,https://biolit.fr/wp-content/uploads/jet-form-builder/63c2293df7a7cefdff0eb4145f089d44/2025/02/Grande-claveline-Pointe-du-Diable-29.jpeg,8/23/2024 0:00,15.000001,15.000002,48.3542930000000,-4.55853600000000,,Pointe du Diable,86834,Observation #86834,https://biolit.fr/observations/observation-86834/,Clavelina lepadiformis,Grande claveline,,https://biolit.fr/wp-content/uploads/jet-form-builder/63c2293df7a7cefdff0eb4145f089d44/2025/02/Grande-claveline-Pointe-du-Diable-29.jpeg,,TRUE,Identifiable +N1,86837,Sortie #86837,https://biolit.fr/sorties/sortie-86837/,MARCEL Killian,https://biolit.fr/wp-content/uploads/jet-form-builder/63c2293df7a7cefdff0eb4145f089d44/2025/02/Ascidie-japonaire-Logona-Daoulas-29.jpeg,06/07/2020,13.000002,13.000003,48.30816,-4.27106,,Logona-Daoulas,,,,,,,,,, +N1,86841,Sortie #86841,https://biolit.fr/sorties/sortie-86841/,MARCEL Killian,https://biolit.fr/wp-content/uploads/jet-form-builder/63c2293df7a7cefdff0eb4145f089d44/2025/02/Ascidie-japonaire-Logona-Daoulas-29-1.jpeg,06/07/2024,13.000002,13.000003,48.3073240000000,-4.27066900000000,,Logona-Daoulas,86842,Observation #86842,https://biolit.fr/observations/observation-86842/,Styela clava,Ascidie japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/63c2293df7a7cefdff0eb4145f089d44/2025/02/Ascidie-japonaire-Logona-Daoulas-29-1.jpeg,,,Identifiable +N1,86845,Sortie #86845,https://biolit.fr/sorties/sortie-86845/,MARCEL Killian,https://biolit.fr/wp-content/uploads/jet-form-builder/63c2293df7a7cefdff0eb4145f089d44/2025/02/Oeuf-Grande-roussette-Archipel-Brehat-22.jpeg,07/10/2024,17.0000000,17.000005,48.8355230000000,-3.02319500000000,,Île Raguenès,86846,Observation #86846,https://biolit.fr/observations/observation-86846/,Scyliorhinus stellaris,Grande roussette,,https://biolit.fr/wp-content/uploads/jet-form-builder/63c2293df7a7cefdff0eb4145f089d44/2025/02/Oeuf-Grande-roussette-Archipel-Brehat-22.jpeg,,TRUE,Identifiable +N1,86850,Sortie #86850,https://biolit.fr/sorties/sortie-86850/,MARCEL Killian,https://biolit.fr/wp-content/uploads/jet-form-builder/63c2293df7a7cefdff0eb4145f089d44/2025/02/Poulpe-commun-Ajaccio.jpeg,10/29/2024 0:00,15.0000000,15.0000000,41.9152610000000,8.74000000000000,,Ajaccio,86851,Observation #86851,https://biolit.fr/observations/observation-86851/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/63c2293df7a7cefdff0eb4145f089d44/2025/02/Poulpe-commun-Ajaccio.jpeg,,TRUE,Identifiable +N1,87149,Sortie #87149,https://biolit.fr/sorties/sortie-87149/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat2-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220253.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220255.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220256-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220257-rotated.jpg,2/13/2025 0:00,12.0000000,13.0000000,48.8164880000000,-3.54094500000000,E.T.A.P.E.S,Landrellec,87150,Observation #87150,https://biolit.fr/observations/observation-87150/,Pelvetia canaliculata,Pelvétie,,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat1.jpg,,,Identifiable +N1,87149,Sortie #87149,https://biolit.fr/sorties/sortie-87149/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat2-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220253.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220255.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220256-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220257-rotated.jpg,2/13/2025 0:00,12.0000000,13.0000000,48.8164880000000,-3.54094500000000,E.T.A.P.E.S,Landrellec,87152,Observation #87152,https://biolit.fr/observations/observation-87152/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat2-rotated.jpg,,,Identifiable +N1,87149,Sortie #87149,https://biolit.fr/sorties/sortie-87149/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat2-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220253.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220255.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220256-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220257-rotated.jpg,2/13/2025 0:00,12.0000000,13.0000000,48.8164880000000,-3.54094500000000,E.T.A.P.E.S,Landrellec,87154,Observation #87154,https://biolit.fr/observations/observation-87154/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220253.jpg,,TRUE,Identifiable +N1,87149,Sortie #87149,https://biolit.fr/sorties/sortie-87149/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat2-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220253.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220255.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220256-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220257-rotated.jpg,2/13/2025 0:00,12.0000000,13.0000000,48.8164880000000,-3.54094500000000,E.T.A.P.E.S,Landrellec,87156,Observation #87156,https://biolit.fr/observations/observation-87156/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025-rotated.jpg,,TRUE,Identifiable +N1,87149,Sortie #87149,https://biolit.fr/sorties/sortie-87149/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat2-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220253.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220255.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220256-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220257-rotated.jpg,2/13/2025 0:00,12.0000000,13.0000000,48.8164880000000,-3.54094500000000,E.T.A.P.E.S,Landrellec,87158,Observation #87158,https://biolit.fr/observations/observation-87158/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220255.jpg,,TRUE,Identifiable +N1,87149,Sortie #87149,https://biolit.fr/sorties/sortie-87149/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat2-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220253.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220255.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220256-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220257-rotated.jpg,2/13/2025 0:00,12.0000000,13.0000000,48.8164880000000,-3.54094500000000,E.T.A.P.E.S,Landrellec,87161,Observation #87161,https://biolit.fr/observations/observation-87161/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220256-rotated.jpg,,TRUE,Identifiable +N1,87149,Sortie #87149,https://biolit.fr/sorties/sortie-87149/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat2-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220253.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220255.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220256-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220257-rotated.jpg,2/13/2025 0:00,12.0000000,13.0000000,48.8164880000000,-3.54094500000000,E.T.A.P.E.S,Landrellec,87163,Observation #87163,https://biolit.fr/observations/observation-87163/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220257-rotated.jpg,,TRUE,Identifiable +N1,87168,Sortie #87168,https://biolit.fr/sorties/sortie-87168/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/fiche-equipe113022025-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/ficheequipe213022025-rotated.jpg,2/13/2025 0:00,12.0000000,13.0000000,48.8163750000000,-3.54146000000000,E.T.A.P.E.S,Landrellec,,,,,,,,,, +N1,87171,Sortie #87171,https://biolit.fr/sorties/sortie-87171/,Bonnafoux Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0003-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0006-Copie.jpg,2/17/2025 0:00,15.0000000,16.0000000,43.55563,4.007063,,plage du petit travers,87172,Observation #87172,https://biolit.fr/observations/observation-87172/,Carpobrotus acinaciformis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0006-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0003-Copie.jpg,,TRUE,Identifiable +N1,87180,Sortie #87180,https://biolit.fr/sorties/sortie-87180/,Bonnafoux Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0032.jpg,2/17/2025 0:00,15.0000000,16.0000000,43.55563,4.007063,,plage du petit travers,87181,Observation #87181,https://biolit.fr/observations/observation-87181/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0007.jpg,,,Ne sais pas +N1,87180,Sortie #87180,https://biolit.fr/sorties/sortie-87180/,Bonnafoux Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0032.jpg,2/17/2025 0:00,15.0000000,16.0000000,43.55563,4.007063,,plage du petit travers,87183,Observation #87183,https://biolit.fr/observations/observation-87183/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0025.jpg,,TRUE,Identifiable +N1,87180,Sortie #87180,https://biolit.fr/sorties/sortie-87180/,Bonnafoux Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0032.jpg,2/17/2025 0:00,15.0000000,16.0000000,43.55563,4.007063,,plage du petit travers,87185,Observation #87185,https://biolit.fr/observations/observation-87185/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0014.jpg,,TRUE,Identifiable +N1,87180,Sortie #87180,https://biolit.fr/sorties/sortie-87180/,Bonnafoux Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0032.jpg,2/17/2025 0:00,15.0000000,16.0000000,43.55563,4.007063,,plage du petit travers,87187,Observation #87187,https://biolit.fr/observations/observation-87187/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0017.jpg,,TRUE,Identifiable +N1,87180,Sortie #87180,https://biolit.fr/sorties/sortie-87180/,Bonnafoux Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0032.jpg,2/17/2025 0:00,15.0000000,16.0000000,43.55563,4.007063,,plage du petit travers,87189,Observation #87189,https://biolit.fr/observations/observation-87189/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0032.jpg,,,non-identifiable +N1,87192,Sortie #87192,https://biolit.fr/sorties/sortie-87192/,Bonnafoux Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0027.jpg,2/17/2025 0:00,15.0000000,16.0000000,43.55563,4.007063,,plage du petit travers,87193,Observation #87193,https://biolit.fr/observations/observation-87193/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0027.jpg,,TRUE,Identifiable +N1,87206,Sortie #87206,https://biolit.fr/sorties/sortie-87206/,Ripoll Steven,https://biolit.fr/wp-content/uploads/jet-form-builder/1ae435db560a9be8ba8d1f65e4794f16/2025/02/1000035817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1ae435db560a9be8ba8d1f65e4794f16/2025/02/1000035818-scaled.jpg,2/20/2025 0:00,10.0000000,10.0:11,43.273394,5.3625160,Planète Mer,Plage du Prophète,87207,Observation #87207,https://biolit.fr/observations/observation-87207/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/jet-form-builder/1ae435db560a9be8ba8d1f65e4794f16/2025/02/1000035817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1ae435db560a9be8ba8d1f65e4794f16/2025/02/1000035818-scaled.jpg,,TRUE,Ne sais pas +N1,87211,Sortie #87211,https://biolit.fr/sorties/sortie-87211/,Keruzoré Flavien,https://biolit.fr/wp-content/uploads/jet-form-builder/f336683773895330b322e55dc93c11f9/2025/02/image-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f336683773895330b322e55dc93c11f9/2025/02/image-1-scaled.jpg,2/20/2025 0:00,10.0000000,10.0000000,43.2728990000000,5.36179200000000,Planète Mer,Plage du prophète,87212,Observation #87212,https://biolit.fr/observations/observation-87212/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f336683773895330b322e55dc93c11f9/2025/02/image-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f336683773895330b322e55dc93c11f9/2025/02/image-1-scaled.jpg,,,Ne sais pas +N1,87215,Sortie #87215,https://biolit.fr/sorties/sortie-87215/,Brehier Manon,https://biolit.fr/wp-content/uploads/jet-form-builder/ef148f3c603b0ada98b7e0667aff93ae/2025/02/IMG_1483-scaled.jpeg,2/20/2025 0:00,10.0000000,10.0:11,43.2732250000000,5.36173600000000,,Plage du prophète,87216,Observation #87216,https://biolit.fr/observations/observation-87216/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/ef148f3c603b0ada98b7e0667aff93ae/2025/02/IMG_1483-scaled.jpeg,,TRUE,Identifiable +N1,87220,Sortie #87220,https://biolit.fr/sorties/sortie-87220/,Ripoll Steven,https://biolit.fr/wp-content/uploads/jet-form-builder/1ae435db560a9be8ba8d1f65e4794f16/2025/02/1000035822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1ae435db560a9be8ba8d1f65e4794f16/2025/02/1000035821-scaled.jpg,2/20/2025 0:00,10.0:13,10.0:13,43.2733010,5.3626370,Planète Mer,Plage du Prophète,87225,Observation #87225,https://biolit.fr/observations/observation-87225/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/1ae435db560a9be8ba8d1f65e4794f16/2025/02/1000035822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1ae435db560a9be8ba8d1f65e4794f16/2025/02/1000035821-scaled.jpg,,TRUE,Ne sais pas +N1,87222,Sortie #87222,https://biolit.fr/sorties/sortie-87222/,Blain Severine,https://biolit.fr/wp-content/uploads/jet-form-builder/9b1ea317367d491e889450218d970c49/2025/02/20250220_095845-scaled.jpg,2/20/2025 0:00,9.0000000,10.0:14,43.2729030,5.3627310,Planète Mer,Plage des profetes,87223,Observation #87223,https://biolit.fr/observations/observation-87223/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9b1ea317367d491e889450218d970c49/2025/02/20250220_095845-scaled.jpg,,,Ne sais pas +N1,87228,Sortie #87228,https://biolit.fr/sorties/sortie-87228/,Keruzoré Flavien,https://biolit.fr/wp-content/uploads/jet-form-builder/f336683773895330b322e55dc93c11f9/2025/02/image-2-scaled.jpg,2/20/2025 0:00,10.0:15,10.0:15,43.2731110000000,5.36192900000000,Planète Mer,Plage du prophète,87229,Observation #87229,https://biolit.fr/observations/observation-87229/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f336683773895330b322e55dc93c11f9/2025/02/image-2-scaled.jpg,,,Ne sais pas +N1,87239,Sortie #87239,https://biolit.fr/sorties/sortie-87239/,Degaey Frederic,https://biolit.fr/wp-content/uploads/jet-form-builder/475117d30eb4817b71bffd4c3843b0a8/2025/02/IMG_2073-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/475117d30eb4817b71bffd4c3843b0a8/2025/02/IMG_2074-scaled.jpeg,2/21/2025 0:00,18.0:15,0.0:22,41.7793070000000,3.03119700000000,,St Féliu Espagne,87240,Observation #87240,https://biolit.fr/observations/observation-87240/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/475117d30eb4817b71bffd4c3843b0a8/2025/02/IMG_2074-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/475117d30eb4817b71bffd4c3843b0a8/2025/02/IMG_2073-scaled.jpeg,,TRUE,Identifiable +N1,87263,Sortie #87263,https://biolit.fr/sorties/sortie-87263/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250203_153958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250206_164947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Pourpre-et-oeufs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-scaled.jpg,02/03/2025,15.0000000,16.0000000,48.7025820000000,-1.84739800000000,,Rochers de la plage de Port Mer,87264,Observation #87264,https://biolit.fr/observations/observation-87264/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-scaled.jpg,,TRUE,Identifiable +N1,87263,Sortie #87263,https://biolit.fr/sorties/sortie-87263/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250203_153958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250206_164947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Pourpre-et-oeufs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-scaled.jpg,02/03/2025,15.0000000,16.0000000,48.7025820000000,-1.84739800000000,,Rochers de la plage de Port Mer,87266,Observation #87266,https://biolit.fr/observations/observation-87266/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Blennie-scaled.jpg,,,Identifiable +N1,87263,Sortie #87263,https://biolit.fr/sorties/sortie-87263/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250203_153958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250206_164947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Pourpre-et-oeufs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-scaled.jpg,02/03/2025,15.0000000,16.0000000,48.7025820000000,-1.84739800000000,,Rochers de la plage de Port Mer,87268,Observation #87268,https://biolit.fr/observations/observation-87268/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250203_153958-scaled.jpg,,TRUE,Identifiable +N1,87263,Sortie #87263,https://biolit.fr/sorties/sortie-87263/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250203_153958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250206_164947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Pourpre-et-oeufs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-scaled.jpg,02/03/2025,15.0000000,16.0000000,48.7025820000000,-1.84739800000000,,Rochers de la plage de Port Mer,87270,Observation #87270,https://biolit.fr/observations/observation-87270/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/crabe-porcellane-scaled.jpg,,TRUE,Identifiable +N1,87263,Sortie #87263,https://biolit.fr/sorties/sortie-87263/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250203_153958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250206_164947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Pourpre-et-oeufs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-scaled.jpg,02/03/2025,15.0000000,16.0000000,48.7025820000000,-1.84739800000000,,Rochers de la plage de Port Mer,87272,Observation #87272,https://biolit.fr/observations/observation-87272/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-vert-scaled.jpg,,TRUE,Identifiable +N1,87263,Sortie #87263,https://biolit.fr/sorties/sortie-87263/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250203_153958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250206_164947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Pourpre-et-oeufs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-scaled.jpg,02/03/2025,15.0000000,16.0000000,48.7025820000000,-1.84739800000000,,Rochers de la plage de Port Mer,87274,Observation #87274,https://biolit.fr/observations/observation-87274/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-scaled.jpg,,,Identifiable +N1,87263,Sortie #87263,https://biolit.fr/sorties/sortie-87263/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250203_153958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250206_164947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Pourpre-et-oeufs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-scaled.jpg,02/03/2025,15.0000000,16.0000000,48.7025820000000,-1.84739800000000,,Rochers de la plage de Port Mer,87276,Observation #87276,https://biolit.fr/observations/observation-87276/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle2-scaled.jpg,,TRUE,Identifiable +N1,87263,Sortie #87263,https://biolit.fr/sorties/sortie-87263/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250203_153958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250206_164947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Pourpre-et-oeufs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-scaled.jpg,02/03/2025,15.0000000,16.0000000,48.7025820000000,-1.84739800000000,,Rochers de la plage de Port Mer,87278,Observation #87278,https://biolit.fr/observations/observation-87278/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine2-scaled.jpg,,TRUE,Identifiable +N1,87263,Sortie #87263,https://biolit.fr/sorties/sortie-87263/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250203_153958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250206_164947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Pourpre-et-oeufs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-scaled.jpg,02/03/2025,15.0000000,16.0000000,48.7025820000000,-1.84739800000000,,Rochers de la plage de Port Mer,87280,Observation #87280,https://biolit.fr/observations/observation-87280/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nerophis-scaled.jpg,,TRUE,Identifiable +N1,87263,Sortie #87263,https://biolit.fr/sorties/sortie-87263/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250203_153958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250206_164947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Pourpre-et-oeufs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-scaled.jpg,02/03/2025,15.0000000,16.0000000,48.7025820000000,-1.84739800000000,,Rochers de la plage de Port Mer,87282,Observation #87282,https://biolit.fr/observations/observation-87282/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis3-scaled.jpg,,,Identifiable +N1,87263,Sortie #87263,https://biolit.fr/sorties/sortie-87263/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250203_153958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250206_164947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Pourpre-et-oeufs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-scaled.jpg,02/03/2025,15.0000000,16.0000000,48.7025820000000,-1.84739800000000,,Rochers de la plage de Port Mer,87284,Observation #87284,https://biolit.fr/observations/observation-87284/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/patelle-scaled.jpg,,,Identifiable +N1,87263,Sortie #87263,https://biolit.fr/sorties/sortie-87263/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250203_153958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250206_164947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Pourpre-et-oeufs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-scaled.jpg,02/03/2025,15.0000000,16.0000000,48.7025820000000,-1.84739800000000,,Rochers de la plage de Port Mer,87286,Observation #87286,https://biolit.fr/observations/observation-87286/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Pourpre-et-oeufs-scaled.jpg,,TRUE,Identifiable +N1,87263,Sortie #87263,https://biolit.fr/sorties/sortie-87263/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250203_153958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250206_164947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Pourpre-et-oeufs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-scaled.jpg,02/03/2025,15.0000000,16.0000000,48.7025820000000,-1.84739800000000,,Rochers de la plage de Port Mer,87288,Observation #87288,https://biolit.fr/observations/observation-87288/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-scaled.jpg,,TRUE,Identifiable +N1,87263,Sortie #87263,https://biolit.fr/sorties/sortie-87263/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250203_153958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250206_164947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Pourpre-et-oeufs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-scaled.jpg,02/03/2025,15.0000000,16.0000000,48.7025820000000,-1.84739800000000,,Rochers de la plage de Port Mer,94495,Observation #94495,https://biolit.fr/observations/observation-94495/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250203_153958-scaled.jpg,,TRUE,Identifiable +N1,87295,Sortie #87295,https://biolit.fr/sorties/sortie-87295/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/02/Os-de-seiche-commune-1-sepia-officinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/02/Os-de-seiche-commune-2-sepia-officinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/02/Os-de-seiche-rose-1-sepia-orbignyana-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/02/Os-de-seiche-rose-2-sepia-orbignyana-scaled.jpg,12/20/2024 0:00,14.0000000,15.0000000,48.6592650000000,-1.99847100000000,,Plage de la Hoguette,87296,Observation #87296,https://biolit.fr/observations/observation-87296/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/02/Os-de-seiche-commune-1-sepia-officinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/02/Os-de-seiche-commune-2-sepia-officinalis-scaled.jpg,,TRUE,Identifiable +N1,87295,Sortie #87295,https://biolit.fr/sorties/sortie-87295/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/02/Os-de-seiche-commune-1-sepia-officinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/02/Os-de-seiche-commune-2-sepia-officinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/02/Os-de-seiche-rose-1-sepia-orbignyana-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/02/Os-de-seiche-rose-2-sepia-orbignyana-scaled.jpg,12/20/2024 0:00,14.0000000,15.0000000,48.6592650000000,-1.99847100000000,,Plage de la Hoguette,87298,Observation #87298,https://biolit.fr/observations/observation-87298/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/02/Os-de-seiche-rose-1-sepia-orbignyana-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/02/Os-de-seiche-rose-2-sepia-orbignyana-scaled.jpg,,TRUE,Identifiable +N1,87319,Sortie #87319,https://biolit.fr/sorties/sortie-87319/,DURAND DELPHINE,https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104059-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104125-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104151-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104201-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104842-scaled.jpg,2/24/2025 0:00,10.0000000,10.0000000,43.3575990,5.2902830,,PLAGE DU FORTIN MARSEILLE,87320,Observation #87320,https://biolit.fr/observations/observation-87320/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104059-scaled.jpg,,TRUE,Identifiable +N1,87319,Sortie #87319,https://biolit.fr/sorties/sortie-87319/,DURAND DELPHINE,https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104059-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104125-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104151-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104201-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104842-scaled.jpg,2/24/2025 0:00,10.0000000,10.0000000,43.3575990,5.2902830,,PLAGE DU FORTIN MARSEILLE,87322,Observation #87322,https://biolit.fr/observations/observation-87322/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104119-scaled.jpg,,TRUE,Identifiable +N1,87319,Sortie #87319,https://biolit.fr/sorties/sortie-87319/,DURAND DELPHINE,https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104059-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104125-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104151-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104201-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104842-scaled.jpg,2/24/2025 0:00,10.0000000,10.0000000,43.3575990,5.2902830,,PLAGE DU FORTIN MARSEILLE,87324,Observation #87324,https://biolit.fr/observations/observation-87324/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104201-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104842-scaled.jpg,,,Ne sais pas +N1,87319,Sortie #87319,https://biolit.fr/sorties/sortie-87319/,DURAND DELPHINE,https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104059-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104125-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104151-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104201-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104842-scaled.jpg,2/24/2025 0:00,10.0000000,10.0000000,43.3575990,5.2902830,,PLAGE DU FORTIN MARSEILLE,87326,Observation #87326,https://biolit.fr/observations/observation-87326/,Flabellia petiolata,Udotée,,https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104842-scaled.jpg,,TRUE,Identifiable +N1,87319,Sortie #87319,https://biolit.fr/sorties/sortie-87319/,DURAND DELPHINE,https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104059-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104125-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104151-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104201-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104842-scaled.jpg,2/24/2025 0:00,10.0000000,10.0000000,43.3575990,5.2902830,,PLAGE DU FORTIN MARSEILLE,87328,Observation #87328,https://biolit.fr/observations/observation-87328/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104155-scaled.jpg,,TRUE,Identifiable +N1,87319,Sortie #87319,https://biolit.fr/sorties/sortie-87319/,DURAND DELPHINE,https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104059-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104125-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104151-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104201-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104842-scaled.jpg,2/24/2025 0:00,10.0000000,10.0000000,43.3575990,5.2902830,,PLAGE DU FORTIN MARSEILLE,87330,Observation #87330,https://biolit.fr/observations/observation-87330/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104151-scaled.jpg,,,Identifiable +N1,87319,Sortie #87319,https://biolit.fr/sorties/sortie-87319/,DURAND DELPHINE,https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104059-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104125-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104151-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104201-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104842-scaled.jpg,2/24/2025 0:00,10.0000000,10.0000000,43.3575990,5.2902830,,PLAGE DU FORTIN MARSEILLE,87332,Observation #87332,https://biolit.fr/observations/observation-87332/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104208-scaled.jpg,,,Ne sais pas +N1,87357,Sortie #87357,https://biolit.fr/sorties/sortie-87357/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0026.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0034.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0035-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0040.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0047.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0053.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0056.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0058.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0060.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0061.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0062.jpg,2/27/2025 0:00,10.0000000,11.0000000,43.214787000000,5.34289200000000,Planète Mer,Anse de la Maronnaise,87363,Observation #87363,https://biolit.fr/observations/observation-87363/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0022.jpg,,TRUE,Identifiable +N1,87357,Sortie #87357,https://biolit.fr/sorties/sortie-87357/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0026.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0034.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0035-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0040.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0047.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0053.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0056.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0058.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0060.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0061.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0062.jpg,2/27/2025 0:00,10.0000000,11.0000000,43.214787000000,5.34289200000000,Planète Mer,Anse de la Maronnaise,87368,Observation #87368,https://biolit.fr/observations/observation-87368/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0034.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0033.jpg,,TRUE,Identifiable +N1,87357,Sortie #87357,https://biolit.fr/sorties/sortie-87357/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0026.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0034.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0035-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0040.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0047.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0053.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0056.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0058.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0060.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0061.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0062.jpg,2/27/2025 0:00,10.0000000,11.0000000,43.214787000000,5.34289200000000,Planète Mer,Anse de la Maronnaise,87370,Observation #87370,https://biolit.fr/observations/observation-87370/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0047.jpg,,TRUE,Identifiable +N1,87357,Sortie #87357,https://biolit.fr/sorties/sortie-87357/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0026.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0034.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0035-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0040.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0047.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0053.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0056.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0058.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0060.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0061.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0062.jpg,2/27/2025 0:00,10.0000000,11.0000000,43.214787000000,5.34289200000000,Planète Mer,Anse de la Maronnaise,87381,Observation #87381,https://biolit.fr/observations/observation-87381/,Corallina officinalis/caespitosa,Coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0035-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0040.jpg,,,Identifiable +N1,87357,Sortie #87357,https://biolit.fr/sorties/sortie-87357/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0026.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0034.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0035-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0040.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0047.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0053.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0056.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0058.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0060.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0061.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0062.jpg,2/27/2025 0:00,10.0000000,11.0000000,43.214787000000,5.34289200000000,Planète Mer,Anse de la Maronnaise,87383,Observation #87383,https://biolit.fr/observations/observation-87383/,Jania rubens,Janie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0024.jpg,,,Identifiable +N1,87357,Sortie #87357,https://biolit.fr/sorties/sortie-87357/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0026.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0034.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0035-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0040.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0047.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0053.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0056.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0058.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0060.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0061.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0062.jpg,2/27/2025 0:00,10.0000000,11.0000000,43.214787000000,5.34289200000000,Planète Mer,Anse de la Maronnaise,87387,Observation #87387,https://biolit.fr/observations/observation-87387/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0058.jpg,,TRUE,Identifiable +N1,87357,Sortie #87357,https://biolit.fr/sorties/sortie-87357/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0026.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0034.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0035-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0040.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0047.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0053.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0056.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0058.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0060.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0061.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0062.jpg,2/27/2025 0:00,10.0000000,11.0000000,43.214787000000,5.34289200000000,Planète Mer,Anse de la Maronnaise,87392,Observation #87392,https://biolit.fr/observations/observation-87392/,Corallina officinalis/caespitosa,Coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0056.jpg,,,Identifiable +N1,87357,Sortie #87357,https://biolit.fr/sorties/sortie-87357/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0026.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0034.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0035-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0040.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0047.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0053.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0056.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0058.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0060.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0061.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0062.jpg,2/27/2025 0:00,10.0000000,11.0000000,43.214787000000,5.34289200000000,Planète Mer,Anse de la Maronnaise,87394,Observation #87394,https://biolit.fr/observations/observation-87394/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0052.jpg,,,Ne sais pas +N1,87357,Sortie #87357,https://biolit.fr/sorties/sortie-87357/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0026.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0034.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0035-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0040.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0047.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0053.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0056.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0058.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0060.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0061.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0062.jpg,2/27/2025 0:00,10.0000000,11.0000000,43.214787000000,5.34289200000000,Planète Mer,Anse de la Maronnaise,87409,Observation #87409,https://biolit.fr/observations/observation-87409/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0060.jpg,,,Identifiable +N1,87357,Sortie #87357,https://biolit.fr/sorties/sortie-87357/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0026.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0034.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0035-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0040.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0047.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0053.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0056.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0058.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0060.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0061.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0062.jpg,2/27/2025 0:00,10.0000000,11.0000000,43.214787000000,5.34289200000000,Planète Mer,Anse de la Maronnaise,87411,Observation #87411,https://biolit.fr/observations/observation-87411/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0053.jpg,,TRUE,Identifiable +N1,87357,Sortie #87357,https://biolit.fr/sorties/sortie-87357/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0026.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0034.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0035-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0040.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0047.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0053.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0056.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0058.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0060.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0061.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0062.jpg,2/27/2025 0:00,10.0000000,11.0000000,43.214787000000,5.34289200000000,Planète Mer,Anse de la Maronnaise,87413,Observation #87413,https://biolit.fr/observations/observation-87413/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0061.jpg,,TRUE,Identifiable +N1,87400,Sortie #87400,https://biolit.fr/sorties/sortie-87400/,Alarcon Messaline,https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_111635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_113028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_114635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_114741-scaled.jpg,2/27/2025 0:00,10.0000000,11.0000000,43.2148020000000,5.34295600000000,,Anse de la Maronaise,87401,Observation #87401,https://biolit.fr/observations/observation-87401/,Ulva compressa,Entéromorphe,,https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_111635-scaled.jpg,,,Identifiable +N1,87400,Sortie #87400,https://biolit.fr/sorties/sortie-87400/,Alarcon Messaline,https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_111635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_113028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_114635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_114741-scaled.jpg,2/27/2025 0:00,10.0000000,11.0000000,43.2148020000000,5.34295600000000,,Anse de la Maronaise,87403,Observation #87403,https://biolit.fr/observations/observation-87403/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_113028-scaled.jpg,,TRUE,Identifiable +N1,87400,Sortie #87400,https://biolit.fr/sorties/sortie-87400/,Alarcon Messaline,https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_111635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_113028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_114635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_114741-scaled.jpg,2/27/2025 0:00,10.0000000,11.0000000,43.2148020000000,5.34295600000000,,Anse de la Maronaise,87405,Observation #87405,https://biolit.fr/observations/observation-87405/,Jania virgata,Janie à branches fines,,https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_114635-scaled.jpg,,,Identifiable +N1,87400,Sortie #87400,https://biolit.fr/sorties/sortie-87400/,Alarcon Messaline,https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_111635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_113028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_114635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_114741-scaled.jpg,2/27/2025 0:00,10.0000000,11.0000000,43.2148020000000,5.34295600000000,,Anse de la Maronaise,87407,Observation #87407,https://biolit.fr/observations/observation-87407/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_114741-scaled.jpg,,TRUE,Identifiable +N1,87438,Sortie #87438,https://biolit.fr/sorties/sortie-87438/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeternimee-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-2-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7025900000000,-1.84742000000000,,Rochers de la plage de Port Mer,87439,Observation #87439,https://biolit.fr/observations/observation-87439/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-scaled.jpg,,,non-identifiable +N1,87438,Sortie #87438,https://biolit.fr/sorties/sortie-87438/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeternimee-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-2-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7025900000000,-1.84742000000000,,Rochers de la plage de Port Mer,87441,Observation #87441,https://biolit.fr/observations/observation-87441/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeternimee-3-scaled.jpg,,,non-identifiable +N1,87438,Sortie #87438,https://biolit.fr/sorties/sortie-87438/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeternimee-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-2-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7025900000000,-1.84742000000000,,Rochers de la plage de Port Mer,87443,Observation #87443,https://biolit.fr/observations/observation-87443/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-2-scaled.jpg,,,Identifiable +N1,87438,Sortie #87438,https://biolit.fr/sorties/sortie-87438/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeternimee-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-2-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7025900000000,-1.84742000000000,,Rochers de la plage de Port Mer,87445,Observation #87445,https://biolit.fr/observations/observation-87445/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-2-scaled.jpg,,TRUE,Identifiable +N1,87438,Sortie #87438,https://biolit.fr/sorties/sortie-87438/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeternimee-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-2-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7025900000000,-1.84742000000000,,Rochers de la plage de Port Mer,87447,Observation #87447,https://biolit.fr/observations/observation-87447/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-3-scaled.jpg,,TRUE,Identifiable +N1,87438,Sortie #87438,https://biolit.fr/sorties/sortie-87438/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeternimee-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-2-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7025900000000,-1.84742000000000,,Rochers de la plage de Port Mer,87449,Observation #87449,https://biolit.fr/observations/observation-87449/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-2-scaled.jpg,,TRUE,Identifiable +N1,87438,Sortie #87438,https://biolit.fr/sorties/sortie-87438/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeternimee-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-2-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7025900000000,-1.84742000000000,,Rochers de la plage de Port Mer,87451,Observation #87451,https://biolit.fr/observations/observation-87451/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Chiton-scaled.jpg,,,non-identifiable +N1,87438,Sortie #87438,https://biolit.fr/sorties/sortie-87438/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeternimee-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-2-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7025900000000,-1.84742000000000,,Rochers de la plage de Port Mer,87453,Observation #87453,https://biolit.fr/observations/observation-87453/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-2-scaled.jpg,,,non-identifiable +N1,87438,Sortie #87438,https://biolit.fr/sorties/sortie-87438/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeternimee-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-2-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7025900000000,-1.84742000000000,,Rochers de la plage de Port Mer,87455,Observation #87455,https://biolit.fr/observations/observation-87455/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-porcellane-1-scaled.jpg,,TRUE,Identifiable +N1,87438,Sortie #87438,https://biolit.fr/sorties/sortie-87438/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeternimee-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-2-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7025900000000,-1.84742000000000,,Rochers de la plage de Port Mer,87457,Observation #87457,https://biolit.fr/observations/observation-87457/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-1-scaled.jpg,,,non-identifiable +N1,87438,Sortie #87438,https://biolit.fr/sorties/sortie-87438/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeternimee-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-2-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7025900000000,-1.84742000000000,,Rochers de la plage de Port Mer,87459,Observation #87459,https://biolit.fr/observations/observation-87459/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-2-scaled.jpg,,TRUE,Identifiable +N1,87481,Sortie #87481,https://biolit.fr/sorties/sortie-87481/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Siponcle-1-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7026030000000,-1.84743000000000,,Rochers de la plage de Port Mer,87482,Observation #87482,https://biolit.fr/observations/observation-87482/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Huitre-creuse-scaled.jpg,,TRUE,Identifiable +N1,87481,Sortie #87481,https://biolit.fr/sorties/sortie-87481/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Siponcle-1-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7026030000000,-1.84743000000000,,Rochers de la plage de Port Mer,87484,Observation #87484,https://biolit.fr/observations/observation-87484/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-2-scaled.jpg,,,Identifiable +N1,87481,Sortie #87481,https://biolit.fr/sorties/sortie-87481/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Siponcle-1-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7026030000000,-1.84743000000000,,Rochers de la plage de Port Mer,87486,Observation #87486,https://biolit.fr/observations/observation-87486/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-2-scaled.jpg,,TRUE,Identifiable +N1,87481,Sortie #87481,https://biolit.fr/sorties/sortie-87481/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Siponcle-1-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7026030000000,-1.84743000000000,,Rochers de la plage de Port Mer,87488,Observation #87488,https://biolit.fr/observations/observation-87488/,Nerophis ophidion,Nérophis ophidion,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-3-scaled.jpg,,TRUE,Identifiable +N1,87481,Sortie #87481,https://biolit.fr/sorties/sortie-87481/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Siponcle-1-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7026030000000,-1.84743000000000,,Rochers de la plage de Port Mer,87490,Observation #87490,https://biolit.fr/observations/observation-87490/,Hediste diversicolor,Néréis multicolore,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-4-scaled.jpg,,TRUE,Identifiable +N1,87481,Sortie #87481,https://biolit.fr/sorties/sortie-87481/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Siponcle-1-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7026030000000,-1.84743000000000,,Rochers de la plage de Port Mer,87492,Observation #87492,https://biolit.fr/observations/observation-87492/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-2-scaled.jpg,,,Identifiable +N1,87481,Sortie #87481,https://biolit.fr/sorties/sortie-87481/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Siponcle-1-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7026030000000,-1.84743000000000,,Rochers de la plage de Port Mer,87494,Observation #87494,https://biolit.fr/observations/observation-87494/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-2-scaled.jpg,,TRUE,Identifiable +N1,87481,Sortie #87481,https://biolit.fr/sorties/sortie-87481/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Siponcle-1-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7026030000000,-1.84743000000000,,Rochers de la plage de Port Mer,87496,Observation #87496,https://biolit.fr/observations/observation-87496/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ponte-de-pourpre-scaled.jpg,,,Identifiable +N1,87481,Sortie #87481,https://biolit.fr/sorties/sortie-87481/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Siponcle-1-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7026030000000,-1.84743000000000,,Rochers de la plage de Port Mer,87498,Observation #87498,https://biolit.fr/observations/observation-87498/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indeterminee-scaled.jpg,,,non-identifiable +N1,87481,Sortie #87481,https://biolit.fr/sorties/sortie-87481/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Siponcle-1-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7026030000000,-1.84743000000000,,Rochers de la plage de Port Mer,87500,Observation #87500,https://biolit.fr/observations/observation-87500/,Aspidosiphon muelleri,Siponcle commensal,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Siponcle-1-scaled.jpg,,,Identifiable +N1,87505,Sortie #87505,https://biolit.fr/sorties/sortie-87505/,Lam Evlyn,https://biolit.fr/wp-content/uploads/jet-form-builder/bfe1f1f95fd7dd2fca523a5db473bfdd/2025/02/F44C8C8C-C334-456C-9FA2-E65614A52916-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/bfe1f1f95fd7dd2fca523a5db473bfdd/2025/02/CFDDEC2A-27DF-40CD-8AE5-4D5289181CE7-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/bfe1f1f95fd7dd2fca523a5db473bfdd/2025/02/AC69AD18-F079-4398-9236-2B348BEE57FC-scaled.jpeg,2/27/2025 0:00,15.0:12,17.0:12,41.5211040000000,8.88124500000000,,Corse,,,,,,,,,, +N1,87510,Sortie #87510,https://biolit.fr/sorties/sortie-87510/,Lam Evlyn,https://biolit.fr/wp-content/uploads/jet-form-builder/bfe1f1f95fd7dd2fca523a5db473bfdd/2025/02/012AD1E1-D06A-469E-AF7E-C0240B0B7A08-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/bfe1f1f95fd7dd2fca523a5db473bfdd/2025/02/D024183A-9AED-464A-98A1-4B70B202E684-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/bfe1f1f95fd7dd2fca523a5db473bfdd/2025/02/A4D773E2-49FB-4686-8D68-5051069D5790-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/bfe1f1f95fd7dd2fca523a5db473bfdd/2025/02/1AE60D83-2901-417C-9778-E6D50F2F1FE7-scaled.jpeg,2/27/2025 0:00,13.0:17,16.0:17,41.5219330000000,8.88193100000000,,Corse,87511,Observation #87511,https://biolit.fr/observations/observation-87511/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/bfe1f1f95fd7dd2fca523a5db473bfdd/2025/02/012AD1E1-D06A-469E-AF7E-C0240B0B7A08-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/bfe1f1f95fd7dd2fca523a5db473bfdd/2025/02/D024183A-9AED-464A-98A1-4B70B202E684-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/bfe1f1f95fd7dd2fca523a5db473bfdd/2025/02/A4D773E2-49FB-4686-8D68-5051069D5790-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/bfe1f1f95fd7dd2fca523a5db473bfdd/2025/02/1AE60D83-2901-417C-9778-E6D50F2F1FE7-scaled.jpeg,,TRUE,Identifiable +N1,87632,Sortie #87632,https://biolit.fr/sorties/sortie-87632/,DELEUIL Aurélie,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5289-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5290-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5291-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5292-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5293-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5293-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5295-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5296-scaled.jpeg,11/18/2024 0:00,10.0000000,11.0000000,43.319296,5.4820860,AIEJE,FORTIN,,,,,,,,,, +N1,87641,Sortie #87641,https://biolit.fr/sorties/sortie-87641/,DELEUIL Aurélie,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5289-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5290-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5291-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5292-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5293-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5294-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5295-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5296-1-scaled.jpeg,11/18/2024 0:00,10.0000000,11.0000000,43.319296,5.4820860,AIEJE,FORTIN,,,,,,,,,, +N1,87650,Sortie #87650,https://biolit.fr/sorties/sortie-87650/,DELEUIL Aurélie,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5289-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5290-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5291-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5292-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5293-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5294-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5295-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5296-2-scaled.jpeg,11/18/2024 0:00,10.0000000,11.0000000,43.3576320000000,5.29019300000000,AIEJE,FORTIN,87651,Observation #87651,https://biolit.fr/observations/observation-87651/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5289-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5290-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5291-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5292-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5293-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5294-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5295-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5296-2-scaled.jpeg,,FALSE,Ne sais pas +N1,87650,Sortie #87650,https://biolit.fr/sorties/sortie-87650/,DELEUIL Aurélie,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5289-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5290-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5291-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5292-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5293-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5294-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5295-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5296-2-scaled.jpeg,11/18/2024 0:00,10.0000000,11.0000000,43.3576320000000,5.29019300000000,AIEJE,FORTIN,91233,Observation #91233,https://biolit.fr/observations/observation-91233/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5291-2-scaled.jpeg,,FALSE,Identifiable +N1,87650,Sortie #87650,https://biolit.fr/sorties/sortie-87650/,DELEUIL Aurélie,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5289-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5290-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5291-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5292-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5293-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5294-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5295-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5296-2-scaled.jpeg,11/18/2024 0:00,10.0000000,11.0000000,43.3576320000000,5.29019300000000,AIEJE,FORTIN,91236,Observation #91236,https://biolit.fr/observations/observation-91236/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5292-2-scaled.jpeg,,,Identifiable +N1,87650,Sortie #87650,https://biolit.fr/sorties/sortie-87650/,DELEUIL Aurélie,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5289-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5290-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5291-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5292-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5293-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5294-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5295-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5296-2-scaled.jpeg,11/18/2024 0:00,10.0000000,11.0000000,43.3576320000000,5.29019300000000,AIEJE,FORTIN,91238,Observation #91238,https://biolit.fr/observations/observation-91238/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5293-3-scaled.jpeg,,TRUE,Identifiable +N1,87650,Sortie #87650,https://biolit.fr/sorties/sortie-87650/,DELEUIL Aurélie,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5289-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5290-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5291-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5292-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5293-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5294-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5295-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5296-2-scaled.jpeg,11/18/2024 0:00,10.0000000,11.0000000,43.3576320000000,5.29019300000000,AIEJE,FORTIN,91240,Observation #91240,https://biolit.fr/observations/observation-91240/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5296-2-scaled.jpeg,,,Identifiable +N1,87650,Sortie #87650,https://biolit.fr/sorties/sortie-87650/,DELEUIL Aurélie,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5289-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5290-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5291-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5292-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5293-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5294-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5295-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5296-2-scaled.jpeg,11/18/2024 0:00,10.0000000,11.0000000,43.3576320000000,5.29019300000000,AIEJE,FORTIN,91242,Observation #91242,https://biolit.fr/observations/observation-91242/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5290-2-scaled.jpeg,,,Ne sais pas +N1,87650,Sortie #87650,https://biolit.fr/sorties/sortie-87650/,DELEUIL Aurélie,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5289-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5290-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5291-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5292-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5293-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5294-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5295-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5296-2-scaled.jpeg,11/18/2024 0:00,10.0000000,11.0000000,43.3576320000000,5.29019300000000,AIEJE,FORTIN,91244,Observation #91244,https://biolit.fr/observations/observation-91244/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5294-2-scaled.jpeg,,,Ne sais pas +N1,87650,Sortie #87650,https://biolit.fr/sorties/sortie-87650/,DELEUIL Aurélie,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5289-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5290-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5291-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5292-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5293-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5294-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5295-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5296-2-scaled.jpeg,11/18/2024 0:00,10.0000000,11.0000000,43.3576320000000,5.29019300000000,AIEJE,FORTIN,91246,Observation #91246,https://biolit.fr/observations/observation-91246/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5295-2-scaled.jpeg,,,non-identifiable +N1,87657,Sortie #87657,https://biolit.fr/sorties/sortie-87657/,Bigoin Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_1128581-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_1129461-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_1130531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_1130571-scaled.jpg,03/01/2025,10.000005,11.000003,47.1365370000000,-2.246103000000,,Pointe Saint-Gildas,87658,Observation #87658,https://biolit.fr/observations/observation-87658/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_1128581-scaled.jpg,,TRUE,Identifiable +N1,87657,Sortie #87657,https://biolit.fr/sorties/sortie-87657/,Bigoin Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_1128581-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_1129461-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_1130531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_1130571-scaled.jpg,03/01/2025,10.000005,11.000003,47.1365370000000,-2.246103000000,,Pointe Saint-Gildas,87660,Observation #87660,https://biolit.fr/observations/observation-87660/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_1129461-scaled.jpg,,TRUE,Identifiable +N1,87657,Sortie #87657,https://biolit.fr/sorties/sortie-87657/,Bigoin Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_1128581-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_1129461-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_1130531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_1130571-scaled.jpg,03/01/2025,10.000005,11.000003,47.1365370000000,-2.246103000000,,Pointe Saint-Gildas,87662,Observation #87662,https://biolit.fr/observations/observation-87662/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_1130531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_1130571-scaled.jpg,,TRUE,Identifiable +N1,87677,Sortie #87677,https://biolit.fr/sorties/sortie-87677/,michele.lebascle,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image0.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image61-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image6-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image9-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image101-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image121-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image12-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image3-rotated.jpeg,03/01/2025,10.0000000,11.000003,47.1319830000000,-2.24848900000000,,Pointe Saint Gildas Préfailles,87682,Observation #87682,https://biolit.fr/observations/observation-87682/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image0.jpeg,,TRUE,Identifiable +N1,87677,Sortie #87677,https://biolit.fr/sorties/sortie-87677/,michele.lebascle,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image0.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image61-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image6-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image9-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image101-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image121-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image12-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image3-rotated.jpeg,03/01/2025,10.0000000,11.000003,47.1319830000000,-2.24848900000000,,Pointe Saint Gildas Préfailles,87685,Observation #87685,https://biolit.fr/observations/observation-87685/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image1.jpeg,,TRUE,Identifiable +N1,87677,Sortie #87677,https://biolit.fr/sorties/sortie-87677/,michele.lebascle,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image0.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image61-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image6-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image9-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image101-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image121-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image12-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image3-rotated.jpeg,03/01/2025,10.0000000,11.000003,47.1319830000000,-2.24848900000000,,Pointe Saint Gildas Préfailles,87692,Observation #87692,https://biolit.fr/observations/observation-87692/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image2.jpeg,,TRUE,Identifiable +N1,87677,Sortie #87677,https://biolit.fr/sorties/sortie-87677/,michele.lebascle,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image0.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image61-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image6-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image9-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image101-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image121-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image12-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image3-rotated.jpeg,03/01/2025,10.0000000,11.000003,47.1319830000000,-2.24848900000000,,Pointe Saint Gildas Préfailles,87694,Observation #87694,https://biolit.fr/observations/observation-87694/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image61-rotated.jpeg,,TRUE,Identifiable +N1,87677,Sortie #87677,https://biolit.fr/sorties/sortie-87677/,michele.lebascle,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image0.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image61-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image6-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image9-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image101-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image121-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image12-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image3-rotated.jpeg,03/01/2025,10.0000000,11.000003,47.1319830000000,-2.24848900000000,,Pointe Saint Gildas Préfailles,87708,Observation #87708,https://biolit.fr/observations/observation-87708/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image9-rotated.jpeg,,TRUE,Identifiable +N1,87677,Sortie #87677,https://biolit.fr/sorties/sortie-87677/,michele.lebascle,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image0.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image61-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image6-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image9-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image101-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image121-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image12-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image3-rotated.jpeg,03/01/2025,10.0000000,11.000003,47.1319830000000,-2.24848900000000,,Pointe Saint Gildas Préfailles,87710,Observation #87710,https://biolit.fr/observations/observation-87710/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image10.jpeg,,TRUE,Identifiable +N1,87677,Sortie #87677,https://biolit.fr/sorties/sortie-87677/,michele.lebascle,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image0.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image61-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image6-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image9-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image101-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image121-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image12-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image3-rotated.jpeg,03/01/2025,10.0000000,11.000003,47.1319830000000,-2.24848900000000,,Pointe Saint Gildas Préfailles,87714,Observation #87714,https://biolit.fr/observations/observation-87714/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image121-rotated.jpeg,,TRUE,Identifiable +N1,87677,Sortie #87677,https://biolit.fr/sorties/sortie-87677/,michele.lebascle,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image0.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image61-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image6-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image9-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image101-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image121-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image12-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image3-rotated.jpeg,03/01/2025,10.0000000,11.000003,47.1319830000000,-2.24848900000000,,Pointe Saint Gildas Préfailles,87716,Observation #87716,https://biolit.fr/observations/observation-87716/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image12-rotated.jpeg,,TRUE,Identifiable +N1,87677,Sortie #87677,https://biolit.fr/sorties/sortie-87677/,michele.lebascle,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image0.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image61-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image6-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image9-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image101-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image121-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image12-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image3-rotated.jpeg,03/01/2025,10.0000000,11.000003,47.1319830000000,-2.24848900000000,,Pointe Saint Gildas Préfailles,87745,Observation #87745,https://biolit.fr/observations/observation-87745/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg,,TRUE,Identifiable +N1,87677,Sortie #87677,https://biolit.fr/sorties/sortie-87677/,michele.lebascle,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image0.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image61-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image6-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image9-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image101-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image121-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image12-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image3-rotated.jpeg,03/01/2025,10.0000000,11.000003,47.1319830000000,-2.24848900000000,,Pointe Saint Gildas Préfailles,87747,Observation #87747,https://biolit.fr/observations/observation-87747/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image6-rotated.jpeg,,TRUE,Identifiable +N1,87677,Sortie #87677,https://biolit.fr/sorties/sortie-87677/,michele.lebascle,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image0.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image61-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image6-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image9-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image101-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image121-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image12-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image3-rotated.jpeg,03/01/2025,10.0000000,11.000003,47.1319830000000,-2.24848900000000,,Pointe Saint Gildas Préfailles,87749,Observation #87749,https://biolit.fr/observations/observation-87749/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image101-rotated.jpeg,,TRUE,Identifiable +N1,87677,Sortie #87677,https://biolit.fr/sorties/sortie-87677/,michele.lebascle,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image0.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image61-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image6-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image9-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image101-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image121-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image12-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image3-rotated.jpeg,03/01/2025,10.0000000,11.000003,47.1319830000000,-2.24848900000000,,Pointe Saint Gildas Préfailles,87751,Observation #87751,https://biolit.fr/observations/observation-87751/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg,,TRUE,Identifiable +N1,87677,Sortie #87677,https://biolit.fr/sorties/sortie-87677/,michele.lebascle,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image0.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image61-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image6-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image9-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image101-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image121-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image12-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image3-rotated.jpeg,03/01/2025,10.0000000,11.000003,47.1319830000000,-2.24848900000000,,Pointe Saint Gildas Préfailles,87753,Observation #87753,https://biolit.fr/observations/observation-87753/,Pelvetia canaliculata,Pelvétie,,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg,,,Identifiable +N1,87677,Sortie #87677,https://biolit.fr/sorties/sortie-87677/,michele.lebascle,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image0.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image61-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image6-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image9-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image101-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image121-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image12-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image3-rotated.jpeg,03/01/2025,10.0000000,11.000003,47.1319830000000,-2.24848900000000,,Pointe Saint Gildas Préfailles,87755,Observation #87755,https://biolit.fr/observations/observation-87755/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image3-rotated.jpeg,,TRUE,Identifiable +N1,87681,Sortie #87681,https://biolit.fr/sorties/sortie-87681/,Bigoin Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_111137-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_104529-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_104840.jpg,03/01/2025,10.000005,11.000003,47.1369280000000,-2.24770000000000,,Pointe Saint-Gildas,87684,Observation #87684,https://biolit.fr/observations/observation-87684/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_111137-scaled.jpg,,TRUE,Identifiable +N1,87681,Sortie #87681,https://biolit.fr/sorties/sortie-87681/,Bigoin Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_111137-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_104529-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_104840.jpg,03/01/2025,10.000005,11.000003,47.1369280000000,-2.24770000000000,,Pointe Saint-Gildas,87688,Observation #87688,https://biolit.fr/observations/observation-87688/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_104529-scaled.jpg,,TRUE,Identifiable +N1,87681,Sortie #87681,https://biolit.fr/sorties/sortie-87681/,Bigoin Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_111137-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_104529-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_104840.jpg,03/01/2025,10.000005,11.000003,47.1369280000000,-2.24770000000000,,Pointe Saint-Gildas,87690,Observation #87690,https://biolit.fr/observations/observation-87690/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_104840.jpg,,TRUE,Identifiable +N1,87707,Sortie #87707,https://biolit.fr/sorties/sortie-87707/,BOUDAUD Marie,https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/WhatsApp-Image-2025-03-01-a-18.02.57_bd11962b.jpg,03/01/2025,10.000005,11.0000000,47.1362130000000,-2.24626100000000,,Pointe Saint Gildas,87712,Observation #87712,https://biolit.fr/observations/observation-87712/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0008.jpg,,TRUE,Identifiable +N1,87707,Sortie #87707,https://biolit.fr/sorties/sortie-87707/,BOUDAUD Marie,https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/WhatsApp-Image-2025-03-01-a-18.02.57_bd11962b.jpg,03/01/2025,10.000005,11.0000000,47.1362130000000,-2.24626100000000,,Pointe Saint Gildas,87718,Observation #87718,https://biolit.fr/observations/observation-87718/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0015.jpg,,TRUE,Identifiable +N1,87707,Sortie #87707,https://biolit.fr/sorties/sortie-87707/,BOUDAUD Marie,https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/WhatsApp-Image-2025-03-01-a-18.02.57_bd11962b.jpg,03/01/2025,10.000005,11.0000000,47.1362130000000,-2.24626100000000,,Pointe Saint Gildas,87720,Observation #87720,https://biolit.fr/observations/observation-87720/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0016.jpg,,TRUE,Identifiable +N1,87707,Sortie #87707,https://biolit.fr/sorties/sortie-87707/,BOUDAUD Marie,https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/WhatsApp-Image-2025-03-01-a-18.02.57_bd11962b.jpg,03/01/2025,10.000005,11.0000000,47.1362130000000,-2.24626100000000,,Pointe Saint Gildas,87724,Observation #87724,https://biolit.fr/observations/observation-87724/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0018.jpg,,TRUE,Identifiable +N1,87707,Sortie #87707,https://biolit.fr/sorties/sortie-87707/,BOUDAUD Marie,https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/WhatsApp-Image-2025-03-01-a-18.02.57_bd11962b.jpg,03/01/2025,10.000005,11.0000000,47.1362130000000,-2.24626100000000,,Pointe Saint Gildas,87739,Observation #87739,https://biolit.fr/observations/observation-87739/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0017.jpg,,TRUE,Ne sais pas +N1,87727,Sortie #87727,https://biolit.fr/sorties/sortie-87727/,Bigoin Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_105435.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_105435-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_104529-1-scaled.jpg,03/01/2015,10.000005,11.000003,47.1331040000000,-2.2465670000000,,Pointe Saint-Gildas,87728,Observation #87728,https://biolit.fr/observations/observation-87728/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_105435.jpg,,TRUE,Identifiable +N1,87727,Sortie #87727,https://biolit.fr/sorties/sortie-87727/,Bigoin Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_105435.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_105435-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_104529-1-scaled.jpg,03/01/2015,10.000005,11.000003,47.1331040000000,-2.2465670000000,,Pointe Saint-Gildas,87730,Observation #87730,https://biolit.fr/observations/observation-87730/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_104529-1-scaled.jpg,,TRUE,Identifiable +N1,87738,Sortie #87738,https://biolit.fr/sorties/sortie-87738/,Bigoin Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_111137-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_105435-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_111419-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_105441.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_104529-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_104840-1.jpg,03/01/2025,10.0000000,11.000003,47.136384000000,-2.24555400000000,,Pointe Saint-Gildas,,,,,,,,,, +N1,87742,Sortie #87742,https://biolit.fr/sorties/sortie-87742/,Bigoin Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_111419-1-scaled.jpg,03/01/2025,10.0000000,11.000003,47.1362890000000,-2.24574300000000,,Pointe Saint-Gildas,87743,Observation #87743,https://biolit.fr/observations/observation-87743/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_111419-1-scaled.jpg,,TRUE,Identifiable +N1,87765,Sortie #87765,https://biolit.fr/sorties/sortie-87765/,LECLERCQ Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_145917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_152618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153309-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153335-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153350-scaled.jpg,03/02/2023,14.0000000,16.0000000,49.2969510000000,-0.296803000000000,,Hermanville sur Mer,87766,Observation #87766,https://biolit.fr/observations/observation-87766/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_145917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150543-scaled.jpg,,,Ne sais pas +N1,87765,Sortie #87765,https://biolit.fr/sorties/sortie-87765/,LECLERCQ Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_145917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_152618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153309-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153335-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153350-scaled.jpg,03/02/2023,14.0000000,16.0000000,49.2969510000000,-0.296803000000000,,Hermanville sur Mer,87768,Observation #87768,https://biolit.fr/observations/observation-87768/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153309-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153335-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153350-scaled.jpg,,,Identifiable +N1,87765,Sortie #87765,https://biolit.fr/sorties/sortie-87765/,LECLERCQ Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_145917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_152618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153309-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153335-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153350-scaled.jpg,03/02/2023,14.0000000,16.0000000,49.2969510000000,-0.296803000000000,,Hermanville sur Mer,87770,Observation #87770,https://biolit.fr/observations/observation-87770/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150152-scaled.jpg,,,Ne sais pas +N1,87765,Sortie #87765,https://biolit.fr/sorties/sortie-87765/,LECLERCQ Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_145917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_152618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153309-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153335-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153350-scaled.jpg,03/02/2023,14.0000000,16.0000000,49.2969510000000,-0.296803000000000,,Hermanville sur Mer,87772,Observation #87772,https://biolit.fr/observations/observation-87772/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150543-scaled.jpg,,,Ne sais pas +N1,87765,Sortie #87765,https://biolit.fr/sorties/sortie-87765/,LECLERCQ Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_145917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_152618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153309-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153335-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153350-scaled.jpg,03/02/2023,14.0000000,16.0000000,49.2969510000000,-0.296803000000000,,Hermanville sur Mer,87774,Observation #87774,https://biolit.fr/observations/observation-87774/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_152618-scaled.jpg,,,Identifiable +N1,87765,Sortie #87765,https://biolit.fr/sorties/sortie-87765/,LECLERCQ Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_145917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_152618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153309-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153335-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153350-scaled.jpg,03/02/2023,14.0000000,16.0000000,49.2969510000000,-0.296803000000000,,Hermanville sur Mer,87776,Observation #87776,https://biolit.fr/observations/observation-87776/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153335-scaled.jpg,,,Identifiable +N1,87765,Sortie #87765,https://biolit.fr/sorties/sortie-87765/,LECLERCQ Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_145917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_152618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153309-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153335-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153350-scaled.jpg,03/02/2023,14.0000000,16.0000000,49.2969510000000,-0.296803000000000,,Hermanville sur Mer,87778,Observation #87778,https://biolit.fr/observations/observation-87778/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153344-scaled.jpg,,,Identifiable +N1,88051,Sortie #88051,https://biolit.fr/sorties/sortie-88051/,capelle Jérémy,https://biolit.fr/wp-content/uploads/jet-form-builder/f95f22645f154241b28ebe19f2ea2115/2025/03/1000030055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f95f22645f154241b28ebe19f2ea2115/2025/03/1000030032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f95f22645f154241b28ebe19f2ea2115/2025/03/1000030056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f95f22645f154241b28ebe19f2ea2115/2025/03/1000030023-scaled.jpg,2/27/2025 0:00,16.0000000,17.0000000,49.7227670000000,-1.91054500000000,Planète Mer,Havre de Bombec,88052,Observation #88052,https://biolit.fr/observations/observation-88052/,Tritia reticulata,Ponte de nasse réticulée,,https://biolit.fr/wp-content/uploads/jet-form-builder/f95f22645f154241b28ebe19f2ea2115/2025/03/1000030055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f95f22645f154241b28ebe19f2ea2115/2025/03/1000030032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f95f22645f154241b28ebe19f2ea2115/2025/03/1000030056-scaled.jpg,,TRUE,Identifiable +N1,88055,Sortie #88055,https://biolit.fr/sorties/sortie-88055/,Boucher Patrick,https://biolit.fr/wp-content/uploads/jet-form-builder/df8f05bd0681ee898207ad18dfc7783e/2025/03/IMG_20250302_163630-scaled.jpg,02/03/2025,16.0:15,16.0:15,48.6485960000000,-2.30249400000000,,Port de Saint Géran,88056,Observation #88056,https://biolit.fr/observations/observation-88056/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/df8f05bd0681ee898207ad18dfc7783e/2025/03/IMG_20250302_163630-scaled.jpg,,TRUE,Ne sais pas +N1,88063,Sortie #88063,https://biolit.fr/sorties/sortie-88063/,LALICHE FLORA,https://biolit.fr/wp-content/uploads/jet-form-builder/100d43d357668a96abad5cb15ae21d59/2025/03/IMG20250228112719-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/100d43d357668a96abad5cb15ae21d59/2025/03/IMG20250228112356-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/100d43d357668a96abad5cb15ae21d59/2025/03/IMG20250228112354-scaled.jpg,2/28/2025 0:00,10.0000000,12.0000000,43.2735050000000,5.36182000000000,,Plage du prophète,88064,Observation #88064,https://biolit.fr/observations/observation-88064/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/100d43d357668a96abad5cb15ae21d59/2025/03/IMG20250228112354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/100d43d357668a96abad5cb15ae21d59/2025/03/IMG20250228112356-scaled.jpg,,TRUE,Ne sais pas +N1,88063,Sortie #88063,https://biolit.fr/sorties/sortie-88063/,LALICHE FLORA,https://biolit.fr/wp-content/uploads/jet-form-builder/100d43d357668a96abad5cb15ae21d59/2025/03/IMG20250228112719-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/100d43d357668a96abad5cb15ae21d59/2025/03/IMG20250228112356-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/100d43d357668a96abad5cb15ae21d59/2025/03/IMG20250228112354-scaled.jpg,2/28/2025 0:00,10.0000000,12.0000000,43.2735050000000,5.36182000000000,,Plage du prophète,88066,Observation #88066,https://biolit.fr/observations/observation-88066/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/100d43d357668a96abad5cb15ae21d59/2025/03/IMG20250228112719-scaled.jpg,,,Ne sais pas +N1,88069,Sortie #88069,https://biolit.fr/sorties/sortie-88069/,Céline,https://biolit.fr/wp-content/uploads/jet-form-builder/a124436f212872e36bd7cc12bfe0fd03/2025/03/IMG_3226-scaled.jpeg,2/28/2025 0:00,13.0:25,13.0000000,43.1098130000000,5.8132270000000,,Plage de sanary,88070,Observation #88070,https://biolit.fr/observations/observation-88070/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a124436f212872e36bd7cc12bfe0fd03/2025/03/IMG_3226-scaled.jpeg,,TRUE,Identifiable +N1,88075,Sortie #88075,https://biolit.fr/sorties/sortie-88075/,LECLERCQ Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250303_181137-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250303_181121-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250303_181609-scaled.jpg,03/03/2025,18.0000000,19.0000000,49.2969510000000,-0.296803000000000,,Hermanville sur Mer,88076,Observation #88076,https://biolit.fr/observations/observation-88076/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250303_181609-scaled.jpg,,,Identifiable +N1,88075,Sortie #88075,https://biolit.fr/sorties/sortie-88075/,LECLERCQ Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250303_181137-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250303_181121-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250303_181609-scaled.jpg,03/03/2025,18.0000000,19.0000000,49.2969510000000,-0.296803000000000,,Hermanville sur Mer,88078,Observation #88078,https://biolit.fr/observations/observation-88078/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250303_181121-scaled.jpg,,,Identifiable +N1,88124,Sortie #88124,https://biolit.fr/sorties/sortie-88124/,Loisel Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054623-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054633-scaled.jpg,2/22/2025 0:00,14.0000000,15.0000000,43.0973840000000,3.11320500000000,,Plage des chalets,88125,Observation #88125,https://biolit.fr/observations/observation-88125/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054623-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054704-scaled.jpg,,TRUE,Identifiable +N1,88124,Sortie #88124,https://biolit.fr/sorties/sortie-88124/,Loisel Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054623-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054633-scaled.jpg,2/22/2025 0:00,14.0000000,15.0000000,43.0973840000000,3.11320500000000,,Plage des chalets,88127,Observation #88127,https://biolit.fr/observations/observation-88127/,Brissus unicolor,Oursin de sable gris,,https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054632-scaled.jpg,,,Identifiable +N1,88124,Sortie #88124,https://biolit.fr/sorties/sortie-88124/,Loisel Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054623-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054633-scaled.jpg,2/22/2025 0:00,14.0000000,15.0000000,43.0973840000000,3.11320500000000,,Plage des chalets,88132,Observation #88132,https://biolit.fr/observations/observation-88132/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054633-scaled.jpg,,,Identifiable +N1,88135,Sortie #88135,https://biolit.fr/sorties/sortie-88135/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7026170000000,-1.847506000000,,Rochers de la plage de Port Mer,88136,Observation #88136,https://biolit.fr/observations/observation-88136/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine.jpg,,,non-identifiable +N1,88158,Sortie #88158,https://biolit.fr/sorties/sortie-88158/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeternimee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026140000000,-1.84734500000000,,Rochers de la plage de Port Mer,88159,Observation #88159,https://biolit.fr/observations/observation-88159/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeternimee-1-scaled.jpg,,,Identifiable +N1,88158,Sortie #88158,https://biolit.fr/sorties/sortie-88158/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeternimee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026140000000,-1.84734500000000,,Rochers de la plage de Port Mer,88161,Observation #88161,https://biolit.fr/observations/observation-88161/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-2-scaled.jpg,,TRUE,Identifiable +N1,88158,Sortie #88158,https://biolit.fr/sorties/sortie-88158/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeternimee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026140000000,-1.84734500000000,,Rochers de la plage de Port Mer,88163,Observation #88163,https://biolit.fr/observations/observation-88163/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-scaled.jpg,,TRUE,Identifiable +N1,88158,Sortie #88158,https://biolit.fr/sorties/sortie-88158/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeternimee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026140000000,-1.84734500000000,,Rochers de la plage de Port Mer,88165,Observation #88165,https://biolit.fr/observations/observation-88165/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-2-scaled.jpg,,TRUE,Identifiable +N1,88158,Sortie #88158,https://biolit.fr/sorties/sortie-88158/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeternimee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026140000000,-1.84734500000000,,Rochers de la plage de Port Mer,88167,Observation #88167,https://biolit.fr/observations/observation-88167/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-2-scaled.jpg,,, +N1,88158,Sortie #88158,https://biolit.fr/sorties/sortie-88158/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeternimee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026140000000,-1.84734500000000,,Rochers de la plage de Port Mer,88170,Observation #88170,https://biolit.fr/observations/observation-88170/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-2-scaled.jpg,,TRUE,Identifiable +N1,88158,Sortie #88158,https://biolit.fr/sorties/sortie-88158/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeternimee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026140000000,-1.84734500000000,,Rochers de la plage de Port Mer,88172,Observation #88172,https://biolit.fr/observations/observation-88172/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-2-scaled.jpg,,,Identifiable +N1,88158,Sortie #88158,https://biolit.fr/sorties/sortie-88158/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeternimee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026140000000,-1.84734500000000,,Rochers de la plage de Port Mer,88174,Observation #88174,https://biolit.fr/observations/observation-88174/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-1-scaled.jpg,,TRUE,Identifiable +N1,88158,Sortie #88158,https://biolit.fr/sorties/sortie-88158/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeternimee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026140000000,-1.84734500000000,,Rochers de la plage de Port Mer,88176,Observation #88176,https://biolit.fr/observations/observation-88176/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-scaled.jpg,,TRUE,Identifiable +N1,88158,Sortie #88158,https://biolit.fr/sorties/sortie-88158/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeternimee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026140000000,-1.84734500000000,,Rochers de la plage de Port Mer,88178,Observation #88178,https://biolit.fr/observations/observation-88178/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-scaled.jpg,,TRUE,Identifiable +N1,88158,Sortie #88158,https://biolit.fr/sorties/sortie-88158/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeternimee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026140000000,-1.84734500000000,,Rochers de la plage de Port Mer,88180,Observation #88180,https://biolit.fr/observations/observation-88180/,Nerophis ophidion,Nérophis ophidion,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-scaled.jpg,,TRUE,Identifiable +N1,88195,Sortie #88195,https://biolit.fr/sorties/sortie-88195/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026450000000,-1.84738200000000,,Rochers de la plage de Port Mer,88196,Observation #88196,https://biolit.fr/observations/observation-88196/,Aeolidia filomenae,Eolis de Filomène,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-4-scaled.jpg,,TRUE,Identifiable +N1,88195,Sortie #88195,https://biolit.fr/sorties/sortie-88195/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026450000000,-1.84738200000000,,Rochers de la plage de Port Mer,88198,Observation #88198,https://biolit.fr/observations/observation-88198/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-2-scaled.jpg,,,Identifiable +N1,88195,Sortie #88195,https://biolit.fr/sorties/sortie-88195/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026450000000,-1.84738200000000,,Rochers de la plage de Port Mer,88200,Observation #88200,https://biolit.fr/observations/observation-88200/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Patelle-scaled.jpg,,,Identifiable +N1,88195,Sortie #88195,https://biolit.fr/sorties/sortie-88195/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026450000000,-1.84738200000000,,Rochers de la plage de Port Mer,88202,Observation #88202,https://biolit.fr/observations/observation-88202/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-2-scaled.jpg,,TRUE,Identifiable +N1,88195,Sortie #88195,https://biolit.fr/sorties/sortie-88195/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026450000000,-1.84738200000000,,Rochers de la plage de Port Mer,88204,Observation #88204,https://biolit.fr/observations/observation-88204/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-scaled.jpg,,TRUE,Identifiable +N1,88195,Sortie #88195,https://biolit.fr/sorties/sortie-88195/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026450000000,-1.84738200000000,,Rochers de la plage de Port Mer,88206,Observation #88206,https://biolit.fr/observations/observation-88206/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-scaled.jpg,,TRUE,Identifiable +N1,88195,Sortie #88195,https://biolit.fr/sorties/sortie-88195/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026450000000,-1.84738200000000,,Rochers de la plage de Port Mer,88208,Observation #88208,https://biolit.fr/observations/observation-88208/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-scaled.jpg,,TRUE,Identifiable +N1,88223,Sortie #88223,https://biolit.fr/sorties/sortie-88223/,Breda Isabelle,https://biolit.fr/wp-content/uploads/jet-form-builder/25da241fd882fd548d4d15d20281188b/2025/03/IMG_0187-scaled.jpeg,2/28/2025 0:00,15.0000000,15.0:13,43.266356000000,6.69805500000000,,"Saint Tropez, cap des Salins",,,,,,,,,, +N1,88351,Sortie #88351,https://biolit.fr/sorties/sortie-88351/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/03/20250313_AnseSablette_MP-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/03/20250313_AnseSablette_MP-17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/03/20250313_AnseSablette_MP-39.jpg,3/13/2025 0:00,16.0000000,16.0000000,43.2369600000000,5.36039200000000,Planète Mer,Anse des Sablettes,88352,Observation #88352,https://biolit.fr/observations/observation-88352/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/03/20250313_AnseSablette_MP-17.jpg,,TRUE,Identifiable +N1,88351,Sortie #88351,https://biolit.fr/sorties/sortie-88351/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/03/20250313_AnseSablette_MP-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/03/20250313_AnseSablette_MP-17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/03/20250313_AnseSablette_MP-39.jpg,3/13/2025 0:00,16.0000000,16.0000000,43.2369600000000,5.36039200000000,Planète Mer,Anse des Sablettes,88357,Observation #88357,https://biolit.fr/observations/observation-88357/,Dictyota fasciola,Dictyote rubanée,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/03/20250313_AnseSablette_MP-39.jpg,,TRUE,Identifiable +N1,88356,Sortie #88356,https://biolit.fr/sorties/sortie-88356/,Poirier Vanessa,https://biolit.fr/wp-content/uploads/jet-form-builder/30f984dbfec0b554815d23b894e48ae5/2025/03/1000044288-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30f984dbfec0b554815d23b894e48ae5/2025/03/1000044286-scaled.jpg,3/13/2025 0:00,14.000009,16.000009,43.0585330000000,6.13260300000000,,Plage de l'Almanarre,88359,Observation #88359,https://biolit.fr/observations/observation-88359/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/30f984dbfec0b554815d23b894e48ae5/2025/03/1000044288-scaled.jpg,,TRUE,Identifiable +N1,88381,Sortie #88381,https://biolit.fr/sorties/sortie-88381/,SV,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5328-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5331-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3370-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3367-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3366-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3361-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3358-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3356-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3351-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3345-scaled.jpg,3/14/2025 0:00,14.0:15,16.0000000,43.2526510000000,3.30639700000000,Planète Mer,Plage Naturelle des Orpellières,88407,Observation #88407,https://biolit.fr/observations/observation-88407/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3345-scaled.jpg,,FALSE,non-identifiable +N1,88381,Sortie #88381,https://biolit.fr/sorties/sortie-88381/,SV,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5328-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5331-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3370-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3367-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3366-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3361-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3358-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3356-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3351-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3345-scaled.jpg,3/14/2025 0:00,14.0:15,16.0000000,43.2526510000000,3.30639700000000,Planète Mer,Plage Naturelle des Orpellières,88459,Observation #88459,https://biolit.fr/observations/observation-88459/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5311-scaled.jpg,,,Ne sais pas +N1,88381,Sortie #88381,https://biolit.fr/sorties/sortie-88381/,SV,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5328-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5331-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3370-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3367-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3366-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3361-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3358-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3356-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3351-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3345-scaled.jpg,3/14/2025 0:00,14.0:15,16.0000000,43.2526510000000,3.30639700000000,Planète Mer,Plage Naturelle des Orpellières,88536,Observation #88536,https://biolit.fr/observations/observation-88536/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3367-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3356-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3345-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3351-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3358-scaled.jpg,,,non-identifiable +N1,88381,Sortie #88381,https://biolit.fr/sorties/sortie-88381/,SV,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5328-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5331-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3370-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3367-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3366-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3361-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3358-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3356-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3351-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3345-scaled.jpg,3/14/2025 0:00,14.0:15,16.0000000,43.2526510000000,3.30639700000000,Planète Mer,Plage Naturelle des Orpellières,88538,Observation #88538,https://biolit.fr/observations/observation-88538/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3334-scaled.jpg,,,Identifiable +N1,88381,Sortie #88381,https://biolit.fr/sorties/sortie-88381/,SV,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5328-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5331-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3370-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3367-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3366-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3361-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3358-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3356-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3351-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3345-scaled.jpg,3/14/2025 0:00,14.0:15,16.0000000,43.2526510000000,3.30639700000000,Planète Mer,Plage Naturelle des Orpellières,88540,Observation #88540,https://biolit.fr/observations/observation-88540/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5318-scaled.jpg,,TRUE,Identifiable +N1,88381,Sortie #88381,https://biolit.fr/sorties/sortie-88381/,SV,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5328-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5331-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3370-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3367-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3366-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3361-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3358-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3356-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3351-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3345-scaled.jpg,3/14/2025 0:00,14.0:15,16.0000000,43.2526510000000,3.30639700000000,Planète Mer,Plage Naturelle des Orpellières,88542,Observation #88542,https://biolit.fr/observations/observation-88542/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5331-scaled.jpg,,,Ne sais pas +N1,88381,Sortie #88381,https://biolit.fr/sorties/sortie-88381/,SV,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5328-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5331-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3370-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3367-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3366-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3361-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3358-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3356-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3351-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3345-scaled.jpg,3/14/2025 0:00,14.0:15,16.0000000,43.2526510000000,3.30639700000000,Planète Mer,Plage Naturelle des Orpellières,88544,Observation #88544,https://biolit.fr/observations/observation-88544/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3388-scaled.jpg,,,Ne sais pas +N1,88381,Sortie #88381,https://biolit.fr/sorties/sortie-88381/,SV,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5328-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5331-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3370-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3367-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3366-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3361-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3358-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3356-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3351-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3345-scaled.jpg,3/14/2025 0:00,14.0:15,16.0000000,43.2526510000000,3.30639700000000,Planète Mer,Plage Naturelle des Orpellières,88546,Observation #88546,https://biolit.fr/observations/observation-88546/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3385-scaled.jpg,,,Ne sais pas +N1,88381,Sortie #88381,https://biolit.fr/sorties/sortie-88381/,SV,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5328-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5331-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3370-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3367-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3366-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3361-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3358-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3356-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3351-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3345-scaled.jpg,3/14/2025 0:00,14.0:15,16.0000000,43.2526510000000,3.30639700000000,Planète Mer,Plage Naturelle des Orpellières,88548,Observation #88548,https://biolit.fr/observations/observation-88548/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3366-scaled.jpg,,,Ne sais pas +N1,88381,Sortie #88381,https://biolit.fr/sorties/sortie-88381/,SV,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5328-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5331-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3370-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3367-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3366-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3361-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3358-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3356-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3351-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3345-scaled.jpg,3/14/2025 0:00,14.0:15,16.0000000,43.2526510000000,3.30639700000000,Planète Mer,Plage Naturelle des Orpellières,88550,Observation #88550,https://biolit.fr/observations/observation-88550/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5328-scaled.jpg,,,Identifiable +N1,88400,Sortie #88400,https://biolit.fr/sorties/sortie-88400/,SV,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5386-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3390-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3365-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_7160-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3363-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5327-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_7178-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_7182-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5372-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_7157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5380-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5381-scaled.jpg,3/14/2025 0:00,14.0:15,16.0000000,43.2526130000000,3.30653100000000,Planète Mer,Plage Naturelle des Orpellières,,,,,,,,,, +N1,88402,Sortie #88402,https://biolit.fr/sorties/sortie-88402/,chaigneau lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/0badbbb47bab13a88652bff7e564ad09/2025/03/ocean.jpg,6/18/2024 0:00,7.0:54,8.0:54,45.511674000000,-1.12215000000000,,Hourtin,,,,,,,,,, +N1,88415,Sortie #88415,https://biolit.fr/sorties/sortie-88415/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Huitre-creuse_Biolit-SAPAL_Seignosse-casernes-37-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Meduse_Rhizostoma-pulmo_Seignosse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Sargasse_Seignosse-1.jpg,3/14/2025 0:00,10.0000000,12.0000000,43.729924,-1.432475,Centre de la mer,Plage des casernes de Seignosse,88416,Observation #88416,https://biolit.fr/observations/observation-88416/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Huitre-creuse_Biolit-SAPAL_Seignosse-casernes-37-1-scaled.jpg,,TRUE,Identifiable +N1,88415,Sortie #88415,https://biolit.fr/sorties/sortie-88415/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Huitre-creuse_Biolit-SAPAL_Seignosse-casernes-37-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Meduse_Rhizostoma-pulmo_Seignosse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Sargasse_Seignosse-1.jpg,3/14/2025 0:00,10.0000000,12.0000000,43.729924,-1.432475,Centre de la mer,Plage des casernes de Seignosse,88418,Observation #88418,https://biolit.fr/observations/observation-88418/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Meduse_Rhizostoma-pulmo_Seignosse-1-scaled.jpg,,TRUE,Identifiable +N1,88415,Sortie #88415,https://biolit.fr/sorties/sortie-88415/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Huitre-creuse_Biolit-SAPAL_Seignosse-casernes-37-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Meduse_Rhizostoma-pulmo_Seignosse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Sargasse_Seignosse-1.jpg,3/14/2025 0:00,10.0000000,12.0000000,43.729924,-1.432475,Centre de la mer,Plage des casernes de Seignosse,96145,Observation #96145,https://biolit.fr/observations/observation-96145/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Sargasse_Seignosse-1.jpg,,TRUE,Identifiable +N1,88423,Sortie #88423,https://biolit.fr/sorties/sortie-88423/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Biolit-SAPAL_Seignosse-casernes-33-scaled.jpg,3/14/2025 0:00,10.0000000,12.0000000,43.729924,-1.432475,Centre de la mer,Plage des casernes de Seignosse,,,,,,,,,, +N1,88434,Sortie #88434,https://biolit.fr/sorties/sortie-88434/,Groupe addap13,https://biolit.fr/wp-content/uploads/jet-form-builder/15f9375534c08fa3299c57a76805f115/2025/03/20250314_143409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15f9375534c08fa3299c57a76805f115/2025/03/20250314_143418-scaled.jpg,3/14/2025 0:00,15.0:33,15.0:36,43.245506000000,5.36572400000000,Groupe Addap 13,Port de la pointe rouge,88436,Observation #88436,https://biolit.fr/observations/observation-88436/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/15f9375534c08fa3299c57a76805f115/2025/03/20250314_143409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15f9375534c08fa3299c57a76805f115/2025/03/20250314_143418-scaled.jpg,,TRUE,Identifiable +N1,88553,Sortie #88553,https://biolit.fr/sorties/sortie-88553/,LPO Occitanie - Aude,https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2025/03/image00000011001.jpg,2/22/2025 0:00,15.0000000,15.000001,42.9391520000000,3.03662100000000,,La Franqui,88554,Observation #88554,https://biolit.fr/observations/observation-88554/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2025/03/image00000011001.jpg,,TRUE,Identifiable +N1,88559,Sortie #88559,https://biolit.fr/sorties/sortie-88559/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250311_155530-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250311_155534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250311_160406-scaled.jpg,03/11/2025,15.0000000,16.0000000,43.1238930000000,6.36249500000000,Observe la nature,Port de Bormes les Mimosas,88560,Observation #88560,https://biolit.fr/observations/observation-88560/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250311_155530-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250311_155534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250311_160406-scaled.jpg,,TRUE,Identifiable +N1,88559,Sortie #88559,https://biolit.fr/sorties/sortie-88559/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250311_155530-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250311_155534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250311_160406-scaled.jpg,03/11/2025,15.0000000,16.0000000,43.1238930000000,6.36249500000000,Observe la nature,Port de Bormes les Mimosas,88562,Observation #88562,https://biolit.fr/observations/observation-88562/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250311_155534-scaled.jpg,,TRUE,Identifiable +N1,88559,Sortie #88559,https://biolit.fr/sorties/sortie-88559/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250311_155530-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250311_155534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250311_160406-scaled.jpg,03/11/2025,15.0000000,16.0000000,43.1238930000000,6.36249500000000,Observe la nature,Port de Bormes les Mimosas,88564,Observation #88564,https://biolit.fr/observations/observation-88564/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250311_160406-scaled.jpg,,TRUE,Identifiable +N1,88568,Sortie #88568,https://biolit.fr/sorties/sortie-88568/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250315_1655501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250315_1655551-scaled.jpg,3/15/2025 0:00,16.0000000,17.0000000,41.468912000000,9.01825200000000,Observe la nature,Bruzzi,88569,Observation #88569,https://biolit.fr/observations/observation-88569/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250315_1655501-scaled.jpg,,TRUE,Identifiable +N1,88568,Sortie #88568,https://biolit.fr/sorties/sortie-88568/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250315_1655501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250315_1655551-scaled.jpg,3/15/2025 0:00,16.0000000,17.0000000,41.468912000000,9.01825200000000,Observe la nature,Bruzzi,88571,Observation #88571,https://biolit.fr/observations/observation-88571/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250315_1655551-scaled.jpg,,TRUE,Identifiable +N1,88568,Sortie #88568,https://biolit.fr/sorties/sortie-88568/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250315_1655501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250315_1655551-scaled.jpg,3/15/2025 0:00,16.0000000,17.0000000,41.468912000000,9.01825200000000,Observe la nature,Bruzzi,88573,Observation #88573,https://biolit.fr/observations/observation-88573/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250315_1655501-scaled.jpg,,TRUE,Identifiable +N1,88618,Sortie #88618,https://biolit.fr/sorties/sortie-88618/,Picard Claire,https://biolit.fr/wp-content/uploads/jet-form-builder/4693277998948f314020e603ce25f090/2025/03/1000001882.jpg,3/19/2025 0:00,9.0000000,10.0000000,43.3228800000000,6.66508900000000,,Sainte maxime,88619,Observation #88619,https://biolit.fr/observations/observation-88619/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/4693277998948f314020e603ce25f090/2025/03/1000001882.jpg,,TRUE,Ne sais pas +N1,88624,Sortie #88624,https://biolit.fr/sorties/sortie-88624/,Kevin Paris,https://biolit.fr/wp-content/uploads/jet-form-builder/20f5b8963f95fa15f87db5cfdd166039/2025/03/pro-TRGB2SLW-scaled.jpeg,3/16/2025 0:00,9.0:29,10.0:29,45.8555350000000,-1.22782400000000,,Le Grand Village Plage,,,,,,,,,, +N1,88646,Sortie #88646,https://biolit.fr/sorties/sortie-88646/,CAINJO Yoann,https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030878-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030881-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030884-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030887-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030889-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030894-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030896-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030898-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030899-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030900-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030902-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030904-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030905-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030912-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030915-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030918-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030930-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030933-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030937-scaled.jpg,3/16/2025 0:00,10.0000000,14.0000000,47.5569630000000,-2.95161800000000,Planète Mer,Plage de Locmariaquer,88647,Observation #88647,https://biolit.fr/observations/observation-88647/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030909-scaled.jpg,,TRUE,Identifiable +N1,88646,Sortie #88646,https://biolit.fr/sorties/sortie-88646/,CAINJO Yoann,https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030878-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030881-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030884-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030887-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030889-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030894-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030896-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030898-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030899-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030900-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030902-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030904-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030905-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030912-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030915-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030918-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030930-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030933-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030937-scaled.jpg,3/16/2025 0:00,10.0000000,14.0000000,47.5569630000000,-2.95161800000000,Planète Mer,Plage de Locmariaquer,88649,Observation #88649,https://biolit.fr/observations/observation-88649/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030902-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030933-scaled.jpg,,,Identifiable +N1,88646,Sortie #88646,https://biolit.fr/sorties/sortie-88646/,CAINJO Yoann,https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030878-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030881-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030884-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030887-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030889-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030894-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030896-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030898-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030899-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030900-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030902-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030904-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030905-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030912-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030915-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030918-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030930-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030933-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030937-scaled.jpg,3/16/2025 0:00,10.0000000,14.0000000,47.5569630000000,-2.95161800000000,Planète Mer,Plage de Locmariaquer,88651,Observation #88651,https://biolit.fr/observations/observation-88651/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030918-scaled.jpg,,,Identifiable +N1,88646,Sortie #88646,https://biolit.fr/sorties/sortie-88646/,CAINJO Yoann,https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030878-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030881-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030884-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030887-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030889-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030894-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030896-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030898-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030899-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030900-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030902-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030904-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030905-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030912-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030915-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030918-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030930-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030933-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030937-scaled.jpg,3/16/2025 0:00,10.0000000,14.0000000,47.5569630000000,-2.95161800000000,Planète Mer,Plage de Locmariaquer,88653,Observation #88653,https://biolit.fr/observations/observation-88653/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030878-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030884-scaled.jpg,,TRUE,Identifiable +N1,88646,Sortie #88646,https://biolit.fr/sorties/sortie-88646/,CAINJO Yoann,https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030878-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030881-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030884-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030887-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030889-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030894-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030896-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030898-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030899-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030900-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030902-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030904-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030905-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030912-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030915-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030918-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030930-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030933-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030937-scaled.jpg,3/16/2025 0:00,10.0000000,14.0000000,47.5569630000000,-2.95161800000000,Planète Mer,Plage de Locmariaquer,88655,Observation #88655,https://biolit.fr/observations/observation-88655/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030884-scaled.jpg,,TRUE,Identifiable +N1,88646,Sortie #88646,https://biolit.fr/sorties/sortie-88646/,CAINJO Yoann,https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030878-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030881-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030884-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030887-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030889-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030894-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030896-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030898-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030899-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030900-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030902-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030904-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030905-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030912-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030915-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030918-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030930-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030933-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030937-scaled.jpg,3/16/2025 0:00,10.0000000,14.0000000,47.5569630000000,-2.95161800000000,Planète Mer,Plage de Locmariaquer,88657,Observation #88657,https://biolit.fr/observations/observation-88657/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030905-scaled.jpg,,,Identifiable +N1,88646,Sortie #88646,https://biolit.fr/sorties/sortie-88646/,CAINJO Yoann,https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030878-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030881-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030884-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030887-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030889-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030894-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030896-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030898-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030899-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030900-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030902-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030904-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030905-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030912-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030915-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030918-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030930-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030933-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030937-scaled.jpg,3/16/2025 0:00,10.0000000,14.0000000,47.5569630000000,-2.95161800000000,Planète Mer,Plage de Locmariaquer,88659,Observation #88659,https://biolit.fr/observations/observation-88659/,Palaemon sp.,Crevette,,https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030937-scaled.jpg,,TRUE,Identifiable +N1,88662,Sortie #88662,https://biolit.fr/sorties/sortie-88662/,BOISSEL PHILIPPE,https://biolit.fr/wp-content/uploads/jet-form-builder/11be3eb7adf79c85c6d8de5ae78c8b31/2025/03/52899731833_bbaed51508_c-1.jpg,4/21/2023 0:00,0.0000000,0.0000000,47.8071280000000,-4.37313800000000,,Penmarch,88663,Observation #88663,https://biolit.fr/observations/observation-88663/,Aeolidiella sanguinea,Eolis sanguine,,https://biolit.fr/wp-content/uploads/jet-form-builder/11be3eb7adf79c85c6d8de5ae78c8b31/2025/03/52899731833_bbaed51508_c-1.jpg,,TRUE, +N1,88702,Sortie #88702,https://biolit.fr/sorties/sortie-88702/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Amenome-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-1-scaled.jpg,3/18/2025 0:00,15.0000000,16.0000000,48.7025140000000,-1.84715200000000,,Rochers de la plage de Port Mer,88703,Observation #88703,https://biolit.fr/observations/observation-88703/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Amenome-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-parasite-3-scaled.jpg,,TRUE,Identifiable +N1,88702,Sortie #88702,https://biolit.fr/sorties/sortie-88702/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Amenome-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-1-scaled.jpg,3/18/2025 0:00,15.0000000,16.0000000,48.7025140000000,-1.84715200000000,,Rochers de la plage de Port Mer,88705,Observation #88705,https://biolit.fr/observations/observation-88705/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-1-scaled.jpg,,TRUE,Identifiable +N1,88702,Sortie #88702,https://biolit.fr/sorties/sortie-88702/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Amenome-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-1-scaled.jpg,3/18/2025 0:00,15.0000000,16.0000000,48.7025140000000,-1.84715200000000,,Rochers de la plage de Port Mer,88707,Observation #88707,https://biolit.fr/observations/observation-88707/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre1-scaled.jpg,,TRUE,Identifiable +N1,88702,Sortie #88702,https://biolit.fr/sorties/sortie-88702/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Amenome-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-1-scaled.jpg,3/18/2025 0:00,15.0000000,16.0000000,48.7025140000000,-1.84715200000000,,Rochers de la plage de Port Mer,88709,Observation #88709,https://biolit.fr/observations/observation-88709/,Axius stirhynchus,Axie stirhynque,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-3-scaled.jpg,,,Identifiable +N1,88702,Sortie #88702,https://biolit.fr/sorties/sortie-88702/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Amenome-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-1-scaled.jpg,3/18/2025 0:00,15.0000000,16.0000000,48.7025140000000,-1.84715200000000,,Rochers de la plage de Port Mer,88711,Observation #88711,https://biolit.fr/observations/observation-88711/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-orange-2-scaled.jpg,,,Identifiable +N1,88702,Sortie #88702,https://biolit.fr/sorties/sortie-88702/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Amenome-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-1-scaled.jpg,3/18/2025 0:00,15.0000000,16.0000000,48.7025140000000,-1.84715200000000,,Rochers de la plage de Port Mer,88713,Observation #88713,https://biolit.fr/observations/observation-88713/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etrille-2-scaled.jpg,,TRUE,Identifiable +N1,88702,Sortie #88702,https://biolit.fr/sorties/sortie-88702/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Amenome-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-1-scaled.jpg,3/18/2025 0:00,15.0000000,16.0000000,48.7025140000000,-1.84715200000000,,Rochers de la plage de Port Mer,88715,Observation #88715,https://biolit.fr/observations/observation-88715/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-1-scaled.jpg,,,Identifiable +N1,88735,Sortie #88735,https://biolit.fr/sorties/sortie-88735/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-2-scaled.jpg,3/18/2025 0:00,15.0000000,16.0000000,48.7025640000000,-1.84715200000000,,Rochers de la plage de Port Mer,88736,Observation #88736,https://biolit.fr/observations/observation-88736/,Lepadogaster candolii,Porte-écuelle de Candolle,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-5-scaled.jpg,,,Identifiable +N1,88735,Sortie #88735,https://biolit.fr/sorties/sortie-88735/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-2-scaled.jpg,3/18/2025 0:00,15.0000000,16.0000000,48.7025640000000,-1.84715200000000,,Rochers de la plage de Port Mer,88738,Observation #88738,https://biolit.fr/observations/observation-88738/,Nerophis ophidion,Nérophis ophidion,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-1-scaled.jpg,,,Identifiable +N1,88735,Sortie #88735,https://biolit.fr/sorties/sortie-88735/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-2-scaled.jpg,3/18/2025 0:00,15.0000000,16.0000000,48.7025640000000,-1.84715200000000,,Rochers de la plage de Port Mer,88740,Observation #88740,https://biolit.fr/observations/observation-88740/,Ophiura albida,Ophiure blanche,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-3-scaled.jpg,,,Identifiable +N1,88735,Sortie #88735,https://biolit.fr/sorties/sortie-88735/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-2-scaled.jpg,3/18/2025 0:00,15.0000000,16.0000000,48.7025640000000,-1.84715200000000,,Rochers de la plage de Port Mer,88742,Observation #88742,https://biolit.fr/observations/observation-88742/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-2-1-scaled.jpg,,,Identifiable +N1,88735,Sortie #88735,https://biolit.fr/sorties/sortie-88735/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-2-scaled.jpg,3/18/2025 0:00,15.0000000,16.0000000,48.7025640000000,-1.84715200000000,,Rochers de la plage de Port Mer,88744,Observation #88744,https://biolit.fr/observations/observation-88744/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-scaled.jpg,,TRUE,Identifiable +N1,88735,Sortie #88735,https://biolit.fr/sorties/sortie-88735/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-2-scaled.jpg,3/18/2025 0:00,15.0000000,16.0000000,48.7025640000000,-1.84715200000000,,Rochers de la plage de Port Mer,88746,Observation #88746,https://biolit.fr/observations/observation-88746/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-scaled.jpg,,TRUE,Identifiable +N1,88735,Sortie #88735,https://biolit.fr/sorties/sortie-88735/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-2-scaled.jpg,3/18/2025 0:00,15.0000000,16.0000000,48.7025640000000,-1.84715200000000,,Rochers de la plage de Port Mer,88748,Observation #88748,https://biolit.fr/observations/observation-88748/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-2-scaled.jpg,,TRUE,Identifiable +N1,88772,Sortie #88772,https://biolit.fr/sorties/sortie-88772/,L Anne-Claire,https://biolit.fr/wp-content/uploads/jet-form-builder/ea440a201bba1fe7199fd3434999faff/2025/03/IMG_9464-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea440a201bba1fe7199fd3434999faff/2025/03/IMG_9455-scaled.jpeg,3/21/2025 0:00,16.0000000,16.0000000,43.0116080000000,3.06484200000000,,Port La Nouvelle,88773,Observation #88773,https://biolit.fr/observations/observation-88773/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/ea440a201bba1fe7199fd3434999faff/2025/03/IMG_9464-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea440a201bba1fe7199fd3434999faff/2025/03/IMG_9455-scaled.jpeg,,TRUE,Identifiable +N1,88780,Sortie #88780,https://biolit.fr/sorties/sortie-88780/,REYNAUD Véronique,https://biolit.fr/wp-content/uploads/jet-form-builder/216fd41a4772c62476510593f8d97439/2025/03/20250322_182014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/216fd41a4772c62476510593f8d97439/2025/03/20250322_181816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/216fd41a4772c62476510593f8d97439/2025/03/20250322_181610-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/216fd41a4772c62476510593f8d97439/2025/03/20250322_180113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/216fd41a4772c62476510593f8d97439/2025/03/20250322_175912-scaled.jpg,3/22/2025 0:00,17.000006,0.0000000,43.287762000000,3.51884500000000,,Grau d'Agde,88781,Observation #88781,https://biolit.fr/observations/observation-88781/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/216fd41a4772c62476510593f8d97439/2025/03/20250322_182014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/216fd41a4772c62476510593f8d97439/2025/03/20250322_181816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/216fd41a4772c62476510593f8d97439/2025/03/20250322_181610-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/216fd41a4772c62476510593f8d97439/2025/03/20250322_180113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/216fd41a4772c62476510593f8d97439/2025/03/20250322_175912-scaled.jpg,,TRUE,Identifiable +N1,88784,Sortie #88784,https://biolit.fr/sorties/sortie-88784/,pelisson alain,https://biolit.fr/wp-content/uploads/jet-form-builder/2b3fc413fde505512cb6bab18a0b00ca/2025/03/IMG_1136.jpg,3/23/2025 0:00,10.0000000,11.0000000,43.5219980000000,3.92220500000000,,palavas-les-flots,88785,Observation #88785,https://biolit.fr/observations/observation-88785/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/2b3fc413fde505512cb6bab18a0b00ca/2025/03/IMG_1136.jpg,,TRUE,Identifiable +N1,88790,Sortie #88790,https://biolit.fr/sorties/sortie-88790/,Di Costanzo Estelle,https://biolit.fr/wp-content/uploads/jet-form-builder/436631c2e65e66a3af3802f509b1e101/2025/03/WhatsApp-Image-2025-03-11-a-17.02.00_d3a6aff3.jpg,03/11/2025,13.0:56,16.0000000,43.0787040000000,6.12367600000000,Association Med.IA Nature,Plage Almanarre,88791,Observation #88791,https://biolit.fr/observations/observation-88791/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/436631c2e65e66a3af3802f509b1e101/2025/03/WhatsApp-Image-2025-03-11-a-17.02.00_d3a6aff3.jpg,,TRUE,Identifiable +N1,88794,Sortie #88794,https://biolit.fr/sorties/sortie-88794/,Di Costanzo Estelle,https://biolit.fr/wp-content/uploads/jet-form-builder/436631c2e65e66a3af3802f509b1e101/2025/03/WhatsApp-Image-2025-03-11-a-17.01.59_a3e86737.jpg,03/11/2025,13.0:32,15.0:32,43.0574120000000,6.13861100000000,Association Med.IA Nature,Plage Almanarre,88795,Observation #88795,https://biolit.fr/observations/observation-88795/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/436631c2e65e66a3af3802f509b1e101/2025/03/WhatsApp-Image-2025-03-11-a-17.01.59_a3e86737.jpg,,,Ne sais pas +N1,88885,Sortie #88885,https://biolit.fr/sorties/sortie-88885/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/huitre-creuse_Vieux-boucau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/identification-inconnue_Vieux-boucau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Sargasse-algue-brune_Vieux-boucau-2-scaled.jpg,3/21/2025 0:00,10.0:15,12.0:15,43.79311,-1.4131,Centre de la mer,Plage Nord de Vieux-Boucau,88890,Observation #88890,https://biolit.fr/observations/observation-88890/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/huitre-creuse_Vieux-boucau-2-scaled.jpg,,TRUE,Identifiable +N1,88885,Sortie #88885,https://biolit.fr/sorties/sortie-88885/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/huitre-creuse_Vieux-boucau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/identification-inconnue_Vieux-boucau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Sargasse-algue-brune_Vieux-boucau-2-scaled.jpg,3/21/2025 0:00,10.0:15,12.0:15,43.79311,-1.4131,Centre de la mer,Plage Nord de Vieux-Boucau,88892,Observation #88892,https://biolit.fr/observations/observation-88892/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/identification-inconnue_Vieux-boucau-2-scaled.jpg,,,Ne sais pas +N1,88885,Sortie #88885,https://biolit.fr/sorties/sortie-88885/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/huitre-creuse_Vieux-boucau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/identification-inconnue_Vieux-boucau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Sargasse-algue-brune_Vieux-boucau-2-scaled.jpg,3/21/2025 0:00,10.0:15,12.0:15,43.79311,-1.4131,Centre de la mer,Plage Nord de Vieux-Boucau,88894,Observation #88894,https://biolit.fr/observations/observation-88894/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Sargasse-algue-brune_Vieux-boucau-2-scaled.jpg,,TRUE,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,88981,Observation #88981,https://biolit.fr/observations/observation-88981/,Acroloxus lacustris,Patelline d'Europe,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,,,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,88983,Observation #88983,https://biolit.fr/observations/observation-88983/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg,,TRUE,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,88985,Observation #88985,https://biolit.fr/observations/observation-88985/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg,,,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,88987,Observation #88987,https://biolit.fr/observations/observation-88987/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg,,TRUE,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,88989,Observation #88989,https://biolit.fr/observations/observation-88989/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg,,TRUE,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,88991,Observation #88991,https://biolit.fr/observations/observation-88991/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg,,,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,88993,Observation #88993,https://biolit.fr/observations/observation-88993/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg,,,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,88995,Observation #88995,https://biolit.fr/observations/observation-88995/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg,,,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,88997,Observation #88997,https://biolit.fr/observations/observation-88997/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg,,TRUE,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,88999,Observation #88999,https://biolit.fr/observations/observation-88999/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg,,,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,89001,Observation #89001,https://biolit.fr/observations/observation-89001/,Mactra glauca,Mactre fauve,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg,,,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,89003,Observation #89003,https://biolit.fr/observations/observation-89003/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg,,,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,89005,Observation #89005,https://biolit.fr/observations/observation-89005/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg,,,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,89007,Observation #89007,https://biolit.fr/observations/observation-89007/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg,,,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,89009,Observation #89009,https://biolit.fr/observations/observation-89009/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg,,,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,89011,Observation #89011,https://biolit.fr/observations/observation-89011/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg,,TRUE,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,89013,Observation #89013,https://biolit.fr/observations/observation-89013/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg,,,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,89016,Observation #89016,https://biolit.fr/observations/observation-89016/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg,,TRUE,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,89018,Observation #89018,https://biolit.fr/observations/observation-89018/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg,,TRUE,Identifiable +N1,89192,Sortie #89192,https://biolit.fr/sorties/sortie-89192/,pauline.chouquet@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095328597-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095336097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095341548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095349430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095355599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095401636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095410012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095420124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095430241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095440080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095450041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095501675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095528206-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095536704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095543127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095551133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095625089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095634153-scaled.jpg,3/17/2025 0:00,10.0:15,11.0:15,43.3577280000000,5.2907110000000,AIEJE,Plage de Corbière,89215,Observation #89215,https://biolit.fr/observations/observation-89215/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095440080-scaled.jpg,,TRUE,Identifiable +N1,89192,Sortie #89192,https://biolit.fr/sorties/sortie-89192/,pauline.chouquet@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095328597-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095336097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095341548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095349430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095355599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095401636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095410012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095420124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095430241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095440080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095450041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095501675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095528206-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095536704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095543127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095551133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095625089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095634153-scaled.jpg,3/17/2025 0:00,10.0:15,11.0:15,43.3577280000000,5.2907110000000,AIEJE,Plage de Corbière,89217,Observation #89217,https://biolit.fr/observations/observation-89217/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095328597-scaled.jpg,,,Identifiable +N1,89192,Sortie #89192,https://biolit.fr/sorties/sortie-89192/,pauline.chouquet@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095328597-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095336097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095341548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095349430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095355599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095401636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095410012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095420124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095430241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095440080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095450041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095501675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095528206-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095536704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095543127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095551133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095625089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095634153-scaled.jpg,3/17/2025 0:00,10.0:15,11.0:15,43.3577280000000,5.2907110000000,AIEJE,Plage de Corbière,89219,Observation #89219,https://biolit.fr/observations/observation-89219/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095528206-scaled.jpg,,TRUE,Identifiable +N1,89192,Sortie #89192,https://biolit.fr/sorties/sortie-89192/,pauline.chouquet@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095328597-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095336097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095341548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095349430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095355599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095401636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095410012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095420124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095430241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095440080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095450041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095501675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095528206-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095536704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095543127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095551133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095625089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095634153-scaled.jpg,3/17/2025 0:00,10.0:15,11.0:15,43.3577280000000,5.2907110000000,AIEJE,Plage de Corbière,89221,Observation #89221,https://biolit.fr/observations/observation-89221/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095543127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095450041-scaled.jpg,,,Identifiable +N1,89192,Sortie #89192,https://biolit.fr/sorties/sortie-89192/,pauline.chouquet@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095328597-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095336097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095341548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095349430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095355599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095401636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095410012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095420124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095430241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095440080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095450041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095501675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095528206-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095536704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095543127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095551133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095625089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095634153-scaled.jpg,3/17/2025 0:00,10.0:15,11.0:15,43.3577280000000,5.2907110000000,AIEJE,Plage de Corbière,89223,Observation #89223,https://biolit.fr/observations/observation-89223/,Epitonium clathrus,Scalaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095625089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095341548-scaled.jpg,,,Identifiable +N1,89192,Sortie #89192,https://biolit.fr/sorties/sortie-89192/,pauline.chouquet@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095328597-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095336097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095341548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095349430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095355599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095401636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095410012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095420124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095430241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095440080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095450041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095501675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095528206-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095536704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095543127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095551133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095625089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095634153-scaled.jpg,3/17/2025 0:00,10.0:15,11.0:15,43.3577280000000,5.2907110000000,AIEJE,Plage de Corbière,89225,Observation #89225,https://biolit.fr/observations/observation-89225/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095634153-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095536704-scaled.jpg,,,Identifiable +N1,89192,Sortie #89192,https://biolit.fr/sorties/sortie-89192/,pauline.chouquet@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095328597-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095336097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095341548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095349430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095355599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095401636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095410012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095420124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095430241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095440080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095450041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095501675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095528206-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095536704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095543127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095551133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095625089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095634153-scaled.jpg,3/17/2025 0:00,10.0:15,11.0:15,43.3577280000000,5.2907110000000,AIEJE,Plage de Corbière,89227,Observation #89227,https://biolit.fr/observations/observation-89227/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095551133-scaled.jpg,,,Identifiable +N1,89192,Sortie #89192,https://biolit.fr/sorties/sortie-89192/,pauline.chouquet@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095328597-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095336097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095341548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095349430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095355599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095401636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095410012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095420124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095430241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095440080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095450041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095501675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095528206-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095536704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095543127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095551133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095625089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095634153-scaled.jpg,3/17/2025 0:00,10.0:15,11.0:15,43.3577280000000,5.2907110000000,AIEJE,Plage de Corbière,89229,Observation #89229,https://biolit.fr/observations/observation-89229/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095401636-scaled.jpg,,,Identifiable +N1,89192,Sortie #89192,https://biolit.fr/sorties/sortie-89192/,pauline.chouquet@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095328597-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095336097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095341548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095349430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095355599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095401636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095410012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095420124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095430241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095440080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095450041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095501675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095528206-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095536704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095543127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095551133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095625089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095634153-scaled.jpg,3/17/2025 0:00,10.0:15,11.0:15,43.3577280000000,5.2907110000000,AIEJE,Plage de Corbière,89231,Observation #89231,https://biolit.fr/observations/observation-89231/,Pholas dactylus,Pholade,,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095420124-scaled.jpg,,,Identifiable +N1,89192,Sortie #89192,https://biolit.fr/sorties/sortie-89192/,pauline.chouquet@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095328597-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095336097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095341548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095349430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095355599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095401636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095410012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095420124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095430241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095440080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095450041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095501675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095528206-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095536704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095543127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095551133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095625089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095634153-scaled.jpg,3/17/2025 0:00,10.0:15,11.0:15,43.3577280000000,5.2907110000000,AIEJE,Plage de Corbière,89233,Observation #89233,https://biolit.fr/observations/observation-89233/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095349430-scaled.jpg,,,Identifiable +N1,89192,Sortie #89192,https://biolit.fr/sorties/sortie-89192/,pauline.chouquet@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095328597-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095336097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095341548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095349430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095355599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095401636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095410012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095420124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095430241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095440080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095450041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095501675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095528206-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095536704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095543127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095551133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095625089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095634153-scaled.jpg,3/17/2025 0:00,10.0:15,11.0:15,43.3577280000000,5.2907110000000,AIEJE,Plage de Corbière,89235,Observation #89235,https://biolit.fr/observations/observation-89235/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095355599-scaled.jpg,,,Identifiable +N1,89192,Sortie #89192,https://biolit.fr/sorties/sortie-89192/,pauline.chouquet@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095328597-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095336097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095341548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095349430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095355599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095401636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095410012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095420124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095430241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095440080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095450041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095501675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095528206-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095536704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095543127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095551133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095625089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095634153-scaled.jpg,3/17/2025 0:00,10.0:15,11.0:15,43.3577280000000,5.2907110000000,AIEJE,Plage de Corbière,89237,Observation #89237,https://biolit.fr/observations/observation-89237/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095430241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095501675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095336097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095401636-scaled.jpg,,,non-identifiable +N1,89200,Sortie #89200,https://biolit.fr/sorties/sortie-89200/,Kevin Paris,https://biolit.fr/wp-content/uploads/jet-form-builder/20f5b8963f95fa15f87db5cfdd166039/2025/03/2025-03-25-163637.png,3/16/2025 0:00,17.0000000,18.0000000,45.8556650000000,-1.22789100000000,Nature Environnement 17,Le Grand Village Plage,,,,,,,,,, +N1,89202,Sortie #89202,https://biolit.fr/sorties/sortie-89202/,Kevin Paris,https://biolit.fr/wp-content/uploads/jet-form-builder/20f5b8963f95fa15f87db5cfdd166039/2025/03/2025-03-25-163637-1.png,3/16/2025 0:00,16.0:41,16.0:41,45.8530240000000,-1.22853800000000,,Le Grand Village Plage,89203,Observation #89203,https://biolit.fr/observations/observation-89203/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/20f5b8963f95fa15f87db5cfdd166039/2025/03/2025-03-25-163637-1.png,,,Ne sais pas +N1,89254,Sortie #89254,https://biolit.fr/sorties/sortie-89254/,LETERRIER CHRISTELLE,https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164149-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163920-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163844-scaled.jpg,2/27/2025 0:00,16.0:35,16.0:45,49.6726660000000,-1.66395300000000,,Digue de Querqueville,89255,Observation #89255,https://biolit.fr/observations/observation-89255/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163920-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164031-scaled.jpg,,,Ne sais pas +N1,89254,Sortie #89254,https://biolit.fr/sorties/sortie-89254/,LETERRIER CHRISTELLE,https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164149-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163920-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163844-scaled.jpg,2/27/2025 0:00,16.0:35,16.0:45,49.6726660000000,-1.66395300000000,,Digue de Querqueville,89257,Observation #89257,https://biolit.fr/observations/observation-89257/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163848-scaled.jpg,,TRUE,Identifiable +N1,89254,Sortie #89254,https://biolit.fr/sorties/sortie-89254/,LETERRIER CHRISTELLE,https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164149-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163920-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163844-scaled.jpg,2/27/2025 0:00,16.0:35,16.0:45,49.6726660000000,-1.66395300000000,,Digue de Querqueville,89259,Observation #89259,https://biolit.fr/observations/observation-89259/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163949-scaled.jpg,,,Ne sais pas +N1,89254,Sortie #89254,https://biolit.fr/sorties/sortie-89254/,LETERRIER CHRISTELLE,https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164149-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163920-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163844-scaled.jpg,2/27/2025 0:00,16.0:35,16.0:45,49.6726660000000,-1.66395300000000,,Digue de Querqueville,89261,Observation #89261,https://biolit.fr/observations/observation-89261/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164031-scaled.jpg,,TRUE,Ne sais pas +N1,89254,Sortie #89254,https://biolit.fr/sorties/sortie-89254/,LETERRIER CHRISTELLE,https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164149-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163920-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163844-scaled.jpg,2/27/2025 0:00,16.0:35,16.0:45,49.6726660000000,-1.66395300000000,,Digue de Querqueville,89263,Observation #89263,https://biolit.fr/observations/observation-89263/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163911-scaled.jpg,,,Ne sais pas +N1,89254,Sortie #89254,https://biolit.fr/sorties/sortie-89254/,LETERRIER CHRISTELLE,https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164149-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163920-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163844-scaled.jpg,2/27/2025 0:00,16.0:35,16.0:45,49.6726660000000,-1.66395300000000,,Digue de Querqueville,89265,Observation #89265,https://biolit.fr/observations/observation-89265/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163920-scaled.jpg,,,Identifiable +N1,89254,Sortie #89254,https://biolit.fr/sorties/sortie-89254/,LETERRIER CHRISTELLE,https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164149-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163920-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163844-scaled.jpg,2/27/2025 0:00,16.0:35,16.0:45,49.6726660000000,-1.66395300000000,,Digue de Querqueville,89267,Observation #89267,https://biolit.fr/observations/observation-89267/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163844-scaled.jpg,,,Identifiable +N1,89323,Sortie #89323,https://biolit.fr/sorties/sortie-89323/,Dufraine Catherine,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_141725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_141442-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135740-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135426-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135323-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134438-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134214-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134137-scaled.jpg,3/26/2025 0:00,13.0:15,14.0000000,38.7331820,-9.1434860,,Nazare,,,,,,,,,, +N1,89336,Sortie #89336,https://biolit.fr/sorties/sortie-89336/,Dufraine Catherine,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_141725-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_141442-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135740-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135700-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135426-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135323-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135255-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134438-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134249-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134214-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134137-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134030-scaled.jpg,3/26/2025 0:00,14.0:15,16.0:21,38.7331820,-9.1434860,,Nazare,89337,Observation #89337,https://biolit.fr/observations/observation-89337/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_141725-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135740-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135700-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_141442-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135323-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135426-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135255-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134438-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134214-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134249-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134137-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134030-scaled.jpg,,,Ne sais pas +N1,89336,Sortie #89336,https://biolit.fr/sorties/sortie-89336/,Dufraine Catherine,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_141725-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_141442-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135740-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135700-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135426-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135323-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135255-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134438-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134249-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134214-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134137-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134030-scaled.jpg,3/26/2025 0:00,14.0:15,16.0:21,38.7331820,-9.1434860,,Nazare,89339,Observation #89339,https://biolit.fr/observations/observation-89339/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135740-1-scaled.jpg,,,Ne sais pas +N1,89336,Sortie #89336,https://biolit.fr/sorties/sortie-89336/,Dufraine Catherine,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_141725-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_141442-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135740-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135700-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135426-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135323-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135255-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134438-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134249-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134214-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134137-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134030-scaled.jpg,3/26/2025 0:00,14.0:15,16.0:21,38.7331820,-9.1434860,,Nazare,89341,Observation #89341,https://biolit.fr/observations/observation-89341/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135700-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135426-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135323-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135255-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134214-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134438-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134249-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134137-1-scaled.jpg,,,Ne sais pas +N1,89344,Sortie #89344,https://biolit.fr/sorties/sortie-89344/,Dufraine Catherine,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250325_124034-scaled.jpg,3/25/2025 0:00,12.0000000,13.0000000,38.7331820,-9.1434860,,Lisbonne,,,,,,,,,, +N1,89347,Sortie #89347,https://biolit.fr/sorties/sortie-89347/,Dufraine Catherine,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250324_102246-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250324_095244-scaled.jpg,3/24/2025 0:00,10.000009,10.0000000,38.7331820,-9.1434860,,Cascais,,,,,,,,,, +N1,89351,Sortie #89351,https://biolit.fr/sorties/sortie-89351/,Dufraine Catherine,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250323_152629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250323_150207-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250323_145706-scaled.jpg,3/23/2025 0:00,14.0000000,14.0:55,38.7331820,-9.1434860,,Lisbonne,89352,Observation #89352,https://biolit.fr/observations/observation-89352/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250323_152629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250323_150207-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250323_145706-scaled.jpg,,,Ne sais pas +N1,89382,Sortie #89382,https://biolit.fr/sorties/sortie-89382/,Joulaud Paul-Émile,https://biolit.fr/wp-content/uploads/jet-form-builder/e840933c58ac88044c2c04f9f6cd180c/2025/03/IMG_20250327_125809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e840933c58ac88044c2c04f9f6cd180c/2025/03/IMG_20250327_125525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e840933c58ac88044c2c04f9f6cd180c/2025/03/IMG_20250327_125214-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e840933c58ac88044c2c04f9f6cd180c/2025/03/IMG_20250327_124844-scaled.jpg,3/27/2025 0:00,12.0000000,13.000005,48.6492190000000,-2.02687100000000,Planète Mer,Fort National,89389,Observation #89389,https://biolit.fr/observations/observation-89389/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e840933c58ac88044c2c04f9f6cd180c/2025/03/IMG_20250327_125214-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e840933c58ac88044c2c04f9f6cd180c/2025/03/IMG_20250327_125809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e840933c58ac88044c2c04f9f6cd180c/2025/03/IMG_20250327_125525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e840933c58ac88044c2c04f9f6cd180c/2025/03/IMG_20250327_124844-scaled.jpg,,,Identifiable +N1,89388,Sortie #89388,https://biolit.fr/sorties/sortie-89388/,Lecavelier Gaspard,https://biolit.fr/wp-content/uploads/jet-form-builder/25d7cee1ce64e574b10b8e105be75aba/2025/03/IMG_2016-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/25d7cee1ce64e574b10b8e105be75aba/2025/03/IMG_2011-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/25d7cee1ce64e574b10b8e105be75aba/2025/03/IMG_2013-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/25d7cee1ce64e574b10b8e105be75aba/2025/03/IMG_2012-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/25d7cee1ce64e574b10b8e105be75aba/2025/03/IMG_2009-scaled.jpeg,3/27/2025 0:00,12.0:28,15.0:28,48.6482500000000,-2.00912500000000,Planète Mer,Fort national,89391,Observation #89391,https://biolit.fr/observations/observation-89391/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/25d7cee1ce64e574b10b8e105be75aba/2025/03/IMG_2011-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/25d7cee1ce64e574b10b8e105be75aba/2025/03/IMG_2016-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/25d7cee1ce64e574b10b8e105be75aba/2025/03/IMG_2013-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/25d7cee1ce64e574b10b8e105be75aba/2025/03/IMG_2012-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/25d7cee1ce64e574b10b8e105be75aba/2025/03/IMG_2009-scaled.jpeg,,,Ne sais pas +N1,89408,Sortie #89408,https://biolit.fr/sorties/sortie-89408/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidula-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-2-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025990000000,-1.84718900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89409,Observation #89409,https://biolit.fr/observations/observation-89409/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-2-scaled.jpg,,TRUE,Identifiable +N1,89408,Sortie #89408,https://biolit.fr/sorties/sortie-89408/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidula-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-2-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025990000000,-1.84718900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89411,Observation #89411,https://biolit.fr/observations/observation-89411/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-2-scaled.jpg,,TRUE,Identifiable +N1,89408,Sortie #89408,https://biolit.fr/sorties/sortie-89408/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidula-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-2-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025990000000,-1.84718900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89413,Observation #89413,https://biolit.fr/observations/observation-89413/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-2-scaled.jpg,,TRUE,Identifiable +N1,89408,Sortie #89408,https://biolit.fr/sorties/sortie-89408/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidula-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-2-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025990000000,-1.84718900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89415,Observation #89415,https://biolit.fr/observations/observation-89415/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-scaled.jpg,,TRUE,Identifiable +N1,89408,Sortie #89408,https://biolit.fr/sorties/sortie-89408/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidula-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-2-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025990000000,-1.84718900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89417,Observation #89417,https://biolit.fr/observations/observation-89417/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-scaled.jpg,,TRUE,Identifiable +N1,89408,Sortie #89408,https://biolit.fr/sorties/sortie-89408/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidula-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-2-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025990000000,-1.84718900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89419,Observation #89419,https://biolit.fr/observations/observation-89419/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-2-scaled.jpg,,,Identifiable +N1,89408,Sortie #89408,https://biolit.fr/sorties/sortie-89408/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidula-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-2-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025990000000,-1.84718900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89421,Observation #89421,https://biolit.fr/observations/observation-89421/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidula-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidule-2-scaled.jpg,,TRUE,Identifiable +N1,89408,Sortie #89408,https://biolit.fr/sorties/sortie-89408/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidula-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-2-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025990000000,-1.84718900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89423,Observation #89423,https://biolit.fr/observations/observation-89423/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-1-scaled.jpg,,,Identifiable +N1,89408,Sortie #89408,https://biolit.fr/sorties/sortie-89408/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidula-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-2-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025990000000,-1.84718900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89425,Observation #89425,https://biolit.fr/observations/observation-89425/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-2-scaled.jpg,,TRUE,Identifiable +N1,89445,Sortie #89445,https://biolit.fr/sorties/sortie-89445/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-Nymphon-grele-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tube-Lanice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-3-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025850000000,-1.84716800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89446,Observation #89446,https://biolit.fr/observations/observation-89446/,Hediste diversicolor,Néréis multicolore,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-3-scaled.jpg,,,Identifiable +N1,89445,Sortie #89445,https://biolit.fr/sorties/sortie-89445/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-Nymphon-grele-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tube-Lanice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-3-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025850000000,-1.84716800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89448,Observation #89448,https://biolit.fr/observations/observation-89448/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-scaled.jpg,,TRUE,Identifiable +N1,89445,Sortie #89445,https://biolit.fr/sorties/sortie-89445/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-Nymphon-grele-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tube-Lanice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-3-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025850000000,-1.84716800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89450,Observation #89450,https://biolit.fr/observations/observation-89450/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-1-scaled.jpg,,TRUE,Identifiable +N1,89445,Sortie #89445,https://biolit.fr/sorties/sortie-89445/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-Nymphon-grele-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tube-Lanice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-3-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025850000000,-1.84716800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89452,Observation #89452,https://biolit.fr/observations/observation-89452/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-1-scaled.jpg,,TRUE,Identifiable +N1,89445,Sortie #89445,https://biolit.fr/sorties/sortie-89445/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-Nymphon-grele-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tube-Lanice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-3-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025850000000,-1.84716800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89454,Observation #89454,https://biolit.fr/observations/observation-89454/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-Nymphon-grele-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-scaled.jpg,,,Identifiable +N1,89445,Sortie #89445,https://biolit.fr/sorties/sortie-89445/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-Nymphon-grele-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tube-Lanice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-3-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025850000000,-1.84716800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89456,Observation #89456,https://biolit.fr/observations/observation-89456/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-3-scaled.jpg,,,Identifiable +N1,89445,Sortie #89445,https://biolit.fr/sorties/sortie-89445/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-Nymphon-grele-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tube-Lanice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-3-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025850000000,-1.84716800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89458,Observation #89458,https://biolit.fr/observations/observation-89458/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-3-scaled.jpg,,TRUE,Identifiable +N1,89445,Sortie #89445,https://biolit.fr/sorties/sortie-89445/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-Nymphon-grele-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tube-Lanice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-3-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025850000000,-1.84716800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89460,Observation #89460,https://biolit.fr/observations/observation-89460/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tube-Lanice-scaled.jpg,,,Identifiable +N1,89445,Sortie #89445,https://biolit.fr/sorties/sortie-89445/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-Nymphon-grele-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tube-Lanice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-3-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025850000000,-1.84716800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89462,Observation #89462,https://biolit.fr/observations/observation-89462/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-3-scaled.jpg,,,Ne sais pas +N1,89482,Sortie #89482,https://biolit.fr/sorties/sortie-89482/,claire sauget,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0025.jpg,3/29/2025 0:00,14.000008,16.000008,49.6699560000000,-1.25733400000000,,Barfleur,89483,Observation #89483,https://biolit.fr/observations/observation-89483/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0005.jpg,,TRUE,Identifiable +N1,89482,Sortie #89482,https://biolit.fr/sorties/sortie-89482/,claire sauget,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0025.jpg,3/29/2025 0:00,14.000008,16.000008,49.6699560000000,-1.25733400000000,,Barfleur,89485,Observation #89485,https://biolit.fr/observations/observation-89485/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0012.jpg,,TRUE,Identifiable +N1,89482,Sortie #89482,https://biolit.fr/sorties/sortie-89482/,claire sauget,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0025.jpg,3/29/2025 0:00,14.000008,16.000008,49.6699560000000,-1.25733400000000,,Barfleur,89487,Observation #89487,https://biolit.fr/observations/observation-89487/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0006.jpg,,,Identifiable +N1,89482,Sortie #89482,https://biolit.fr/sorties/sortie-89482/,claire sauget,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0025.jpg,3/29/2025 0:00,14.000008,16.000008,49.6699560000000,-1.25733400000000,,Barfleur,89489,Observation #89489,https://biolit.fr/observations/observation-89489/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0009.jpg,,TRUE,non-identifiable +N1,89482,Sortie #89482,https://biolit.fr/sorties/sortie-89482/,claire sauget,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0025.jpg,3/29/2025 0:00,14.000008,16.000008,49.6699560000000,-1.25733400000000,,Barfleur,89491,Observation #89491,https://biolit.fr/observations/observation-89491/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0018.jpg,,TRUE,Identifiable +N1,89482,Sortie #89482,https://biolit.fr/sorties/sortie-89482/,claire sauget,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0025.jpg,3/29/2025 0:00,14.000008,16.000008,49.6699560000000,-1.25733400000000,,Barfleur,89493,Observation #89493,https://biolit.fr/observations/observation-89493/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0008.jpg,,TRUE,Identifiable +N1,89482,Sortie #89482,https://biolit.fr/sorties/sortie-89482/,claire sauget,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0025.jpg,3/29/2025 0:00,14.000008,16.000008,49.6699560000000,-1.25733400000000,,Barfleur,89495,Observation #89495,https://biolit.fr/observations/observation-89495/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0010.jpg,,,Identifiable +N1,89482,Sortie #89482,https://biolit.fr/sorties/sortie-89482/,claire sauget,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0025.jpg,3/29/2025 0:00,14.000008,16.000008,49.6699560000000,-1.25733400000000,,Barfleur,89497,Observation #89497,https://biolit.fr/observations/observation-89497/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0011.jpg,,,Identifiable +N1,89482,Sortie #89482,https://biolit.fr/sorties/sortie-89482/,claire sauget,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0025.jpg,3/29/2025 0:00,14.000008,16.000008,49.6699560000000,-1.25733400000000,,Barfleur,89499,Observation #89499,https://biolit.fr/observations/observation-89499/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0019.jpg,,,Ne sais pas +N1,89519,Sortie #89519,https://biolit.fr/sorties/sortie-89519/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/ponte_Natice-porte-chaine_Euspira-catena-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Biolit-SAPAL_Seignosse-casernes_Nassarius-reticule-1-scaled.jpg,3/14/2025 0:00,10.0:15,12.0:15,43.729924,-1.432475,Centre de la mer,Plage des casernes de Seignosse,89520,Observation #89520,https://biolit.fr/observations/observation-89520/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/ponte_Natice-porte-chaine_Euspira-catena-scaled.jpg,,TRUE,Identifiable +N1,89519,Sortie #89519,https://biolit.fr/sorties/sortie-89519/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/ponte_Natice-porte-chaine_Euspira-catena-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Biolit-SAPAL_Seignosse-casernes_Nassarius-reticule-1-scaled.jpg,3/14/2025 0:00,10.0:15,12.0:15,43.729924,-1.432475,Centre de la mer,Plage des casernes de Seignosse,89522,Observation #89522,https://biolit.fr/observations/observation-89522/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Biolit-SAPAL_Seignosse-casernes_Nassarius-reticule-1-scaled.jpg,,FALSE,Identifiable +N1,89530,Sortie #89530,https://biolit.fr/sorties/sortie-89530/,Birouste Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/be2e918f0b4c658602a5701e4746a4bc/2025/03/20250327_145521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/be2e918f0b4c658602a5701e4746a4bc/2025/03/20250327_150543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/be2e918f0b4c658602a5701e4746a4bc/2025/03/IMG_1970.jpeg,3/27/2025 0:00,14.0000000,15.0000000,43.1443710000000,3.15271100000000,,narbonne-plage,89531,Observation #89531,https://biolit.fr/observations/observation-89531/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/be2e918f0b4c658602a5701e4746a4bc/2025/03/20250327_145521-scaled.jpg,,TRUE,Identifiable +N1,89530,Sortie #89530,https://biolit.fr/sorties/sortie-89530/,Birouste Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/be2e918f0b4c658602a5701e4746a4bc/2025/03/20250327_145521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/be2e918f0b4c658602a5701e4746a4bc/2025/03/20250327_150543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/be2e918f0b4c658602a5701e4746a4bc/2025/03/IMG_1970.jpeg,3/27/2025 0:00,14.0000000,15.0000000,43.1443710000000,3.15271100000000,,narbonne-plage,89533,Observation #89533,https://biolit.fr/observations/observation-89533/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/be2e918f0b4c658602a5701e4746a4bc/2025/03/20250327_150543-scaled.jpg,,TRUE,Identifiable +N1,89530,Sortie #89530,https://biolit.fr/sorties/sortie-89530/,Birouste Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/be2e918f0b4c658602a5701e4746a4bc/2025/03/20250327_145521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/be2e918f0b4c658602a5701e4746a4bc/2025/03/20250327_150543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/be2e918f0b4c658602a5701e4746a4bc/2025/03/IMG_1970.jpeg,3/27/2025 0:00,14.0000000,15.0000000,43.1443710000000,3.15271100000000,,narbonne-plage,89535,Observation #89535,https://biolit.fr/observations/observation-89535/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/be2e918f0b4c658602a5701e4746a4bc/2025/03/IMG_1970.jpeg,,TRUE,Identifiable +N1,89539,Sortie #89539,https://biolit.fr/sorties/sortie-89539/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/04/Os-seiche_Sepia-officinalis_Seignosse-scaled.jpg,3/14/2025 0:00,10.0:15,12.0:15,43.729924,-1.432475,Centre de la mer,Plage des casernes de Seignosse,89540,Observation #89540,https://biolit.fr/observations/observation-89540/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/04/Os-seiche_Sepia-officinalis_Seignosse-scaled.jpg,,TRUE,Identifiable +N1,89562,Sortie #89562,https://biolit.fr/sorties/sortie-89562/,ROLAND PRIOUL,https://biolit.fr/wp-content/uploads/jet-form-builder/4d81066a8224014dad6eb2c165e389d7/2025/04/CHERRUEIX-26-04-2023-Gorgebleue-a-miroir-41.jpg,4/19/2023 0:00,18.0:55,19.0000000,48.6052360000000,-1.71086300000000,,CHERRUEIX,,,,,,,,,, +N1,89564,Sortie #89564,https://biolit.fr/sorties/sortie-89564/,ROLAND PRIOUL,https://biolit.fr/wp-content/uploads/jet-form-builder/4d81066a8224014dad6eb2c165e389d7/2025/04/CHERRUEIX-26-04-2023-Gorgebleue-a-miroir-41-1.jpg,4/19/2023 0:00,18.0:55,19.0000000,48.6050250000000,-1.71060600000000,,CHERRUEIX,,,,,,,,,, +N1,89568,Sortie #89568,https://biolit.fr/sorties/sortie-89568/,Garcia Veronique,https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250308_153910-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250308_153833-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250308_153850-scaled.jpg,03/08/2025,11.0000000,15.0000000,48.818224000000,-3.55682400000000,,ploulec'h,89569,Observation #89569,https://biolit.fr/observations/observation-89569/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250308_153910-scaled.jpg,,TRUE,Identifiable +N1,89568,Sortie #89568,https://biolit.fr/sorties/sortie-89568/,Garcia Veronique,https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250308_153910-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250308_153833-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250308_153850-scaled.jpg,03/08/2025,11.0000000,15.0000000,48.818224000000,-3.55682400000000,,ploulec'h,89571,Observation #89571,https://biolit.fr/observations/observation-89571/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250308_153833-scaled.jpg,,TRUE,Identifiable +N1,89568,Sortie #89568,https://biolit.fr/sorties/sortie-89568/,Garcia Veronique,https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250308_153910-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250308_153833-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250308_153850-scaled.jpg,03/08/2025,11.0000000,15.0000000,48.818224000000,-3.55682400000000,,ploulec'h,89573,Observation #89573,https://biolit.fr/observations/observation-89573/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250308_153850-scaled.jpg,,TRUE,Identifiable +N1,89579,Sortie #89579,https://biolit.fr/sorties/sortie-89579/,Garcia Veronique,https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_121631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120213-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120544-scaled.jpg,2/22/2025 0:00,14.0000000,17.0000000,48.6679680000000,-3.60171300000000,,saint efflam,89580,Observation #89580,https://biolit.fr/observations/observation-89580/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_121631-scaled.jpg,,,Identifiable +N1,89579,Sortie #89579,https://biolit.fr/sorties/sortie-89579/,Garcia Veronique,https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_121631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120213-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120544-scaled.jpg,2/22/2025 0:00,14.0000000,17.0000000,48.6679680000000,-3.60171300000000,,saint efflam,89582,Observation #89582,https://biolit.fr/observations/observation-89582/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120213-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120544-scaled.jpg,,,Ne sais pas +N1,89579,Sortie #89579,https://biolit.fr/sorties/sortie-89579/,Garcia Veronique,https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_121631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120213-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120544-scaled.jpg,2/22/2025 0:00,14.0000000,17.0000000,48.6679680000000,-3.60171300000000,,saint efflam,89584,Observation #89584,https://biolit.fr/observations/observation-89584/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120213-scaled.jpg,,,Ne sais pas +N1,89579,Sortie #89579,https://biolit.fr/sorties/sortie-89579/,Garcia Veronique,https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_121631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120213-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120544-scaled.jpg,2/22/2025 0:00,14.0000000,17.0000000,48.6679680000000,-3.60171300000000,,saint efflam,89586,Observation #89586,https://biolit.fr/observations/observation-89586/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120544-scaled.jpg,,,Ne sais pas +N1,89589,Sortie #89589,https://biolit.fr/sorties/sortie-89589/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/arche-barbue-28-12-24-cala-longa-sartene.jpg,12/28/2024 0:00,0.0:22,14.0:23,41.548343000000,8.83307200000000,La Girelle,Plage de cala longa Sartène,89590,Observation #89590,https://biolit.fr/observations/observation-89590/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/arche-barbue-28-12-24-cala-longa-sartene.jpg,,,Identifiable +N1,89596,Sortie #89596,https://biolit.fr/sorties/sortie-89596/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/nacelle-d-argonaute-26-01-25-marana.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/nacelle-d-argonaute-26-01-25-marana.02.jpg,1/26/2025 0:00,14.0:48,15.0:48,42.5718740000000,9.5236340000000,La Girelle,Marana,89598,Observation #89598,https://biolit.fr/observations/observation-89598/,Argonauta argo,Argonaute,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/nacelle-d-argonaute-26-01-25-marana.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/nacelle-d-argonaute-26-01-25-marana.02.jpg,,TRUE,Identifiable +N1,89605,Sortie #89605,https://biolit.fr/sorties/sortie-89605/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/anatifes-a-peigne-28-03-25-marana.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/anatifes-a-peigne-28-03-25-marana.02.jpg,3/28/2025 0:00,14.0000000,15.0000000,42.5896330000000,9.50961100000000,La Girelle,plage de la Marana,89606,Observation #89606,https://biolit.fr/observations/observation-89606/,Lepas (Anatifa) pectinata,Petit anatife à peigne,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/anatifes-a-peigne-28-03-25-marana.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/anatifes-a-peigne-28-03-25-marana.02.jpg,,,Identifiable +N1,89610,Sortie #89610,https://biolit.fr/sorties/sortie-89610/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/arche-de-noe-26-01-25-marana.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/arche-de-noe-26-01-25-marana.02.jpg,1/26/2025 0:00,14.0:52,15.0:52,42.5983700000000,9.49922600000000,La Girelle,plage de la Marana,89611,Observation #89611,https://biolit.fr/observations/observation-89611/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/arche-de-noe-26-01-25-marana.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/arche-de-noe-26-01-25-marana.02.jpg,,,Identifiable +N1,89615,Sortie #89615,https://biolit.fr/sorties/sortie-89615/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/arche-de-noe-26-01-25-marana.01-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/arche-de-noe-26-01-25-marana.02-1.jpg,1/26/2025 0:00,14.0:54,15.0:54,42.6011860000000,9.49939700000000,La Girelle,plage de la Marana,89616,Observation #89616,https://biolit.fr/observations/observation-89616/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/arche-de-noe-26-01-25-marana.01-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/arche-de-noe-26-01-25-marana.02-1.jpg,,TRUE,Identifiable +N1,89619,Sortie #89619,https://biolit.fr/sorties/sortie-89619/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/arche-de-noe-28-02-25-losari.jpg,2/28/2025 0:00,14.0:55,15.0:55,42.6430240000000,9.0193250000000,La Girelle,plage de Losari,89620,Observation #89620,https://biolit.fr/observations/observation-89620/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/arche-de-noe-28-02-25-losari.jpg,,TRUE,Identifiable +N1,89623,Sortie #89623,https://biolit.fr/sorties/sortie-89623/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/baudroie-11-02-25-marana.jpg,02/11/2025,14.0:57,15.0:57,42.5991640000000,9.50077100000000,La Girelle,plage de la Marana,89624,Observation #89624,https://biolit.fr/observations/observation-89624/,Lophius piscatorius,Baudroie,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/baudroie-11-02-25-marana.jpg,,TRUE,Identifiable +N1,89627,Sortie #89627,https://biolit.fr/sorties/sortie-89627/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/calamar-commun-04-02-25-marana.jpg,02/04/2025,14.0:58,15.0:58,42.5968540000000,9.50162900000000,La Girelle,plage de la Marana,89628,Observation #89628,https://biolit.fr/observations/observation-89628/,Loligo vulgaris,Encornet européen,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/calamar-commun-04-02-25-marana.jpg,,,Ne sais pas +N1,89633,Sortie #89633,https://biolit.fr/sorties/sortie-89633/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/capsule-de-raie-etoilee-04-02-25-marana.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/capsule-de-raie-etoilee-04-02-25-marana.02.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/capsule-de-raie-etoilee-04-02-25-marana.03.jpg,02/04/2025,15.000002,16.000002,42.6026490000000,9.49450500000000,La Girelle,plage de la Marana,89634,Observation #89634,https://biolit.fr/observations/observation-89634/,Raja asterias,Raie étoilée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/capsule-de-raie-etoilee-04-02-25-marana.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/capsule-de-raie-etoilee-04-02-25-marana.02.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/capsule-de-raie-etoilee-04-02-25-marana.03.jpg,,,Identifiable +N1,89638,Sortie #89638,https://biolit.fr/sorties/sortie-89638/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/capsule-raie-etoilee-19-02-25-marana.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/capsule-raie-etoilee-19-02-25-marana.02.jpg,2/19/2025 0:00,16.000003,16.000004,42.6021610000000,9.49441900000000,La Girelle,plage de la Marana,89639,Observation #89639,https://biolit.fr/observations/observation-89639/,Raja asterias,Raie étoilée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/capsule-raie-etoilee-19-02-25-marana.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/capsule-raie-etoilee-19-02-25-marana.02.jpg,,,Identifiable +N1,89643,Sortie #89643,https://biolit.fr/sorties/sortie-89643/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/crabe-bleu-28-03-25-biguglia.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/crabe-bleu-28-03-25-biguglia.02.jpg,3/28/2025 0:00,15.000004,16.000004,42.6067450000000,9.49184400000000,La Girelle,plage de la Marana,89644,Observation #89644,https://biolit.fr/observations/observation-89644/,Callinectes sapidus,Crabe bleu américain,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/crabe-bleu-28-03-25-biguglia.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/crabe-bleu-28-03-25-biguglia.02.jpg,,TRUE,Identifiable +N1,89651,Sortie #89651,https://biolit.fr/sorties/sortie-89651/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.02.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.03.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.05.jpg,3/31/2025 0:00,15.000006,16.000006,42.8895580000000,9.4743400000000,La Girelle,plage de Santa Severa,89652,Observation #89652,https://biolit.fr/observations/observation-89652/,Janthina pallida,Janthine pâle,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.02.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.03.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.05.jpg,,,Identifiable +N1,89651,Sortie #89651,https://biolit.fr/sorties/sortie-89651/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.02.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.03.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.05.jpg,3/31/2025 0:00,15.000006,16.000006,42.8895580000000,9.4743400000000,La Girelle,plage de Santa Severa,89654,Observation #89654,https://biolit.fr/observations/observation-89654/,Janthina pallida,Janthine pâle,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.02.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.03.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.05.jpg,,,Identifiable +N1,89657,Sortie #89657,https://biolit.fr/sorties/sortie-89657/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/murene-commune-18-02-25-erbalunga.jpg,2/18/2025 0:00,15.0:12,16.0:12,42.7730430000000,9.47487100000000,La Girelle,Erbalunga,89658,Observation #89658,https://biolit.fr/observations/observation-89658/,Muraena helena,Murène commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/murene-commune-18-02-25-erbalunga.jpg,,TRUE,Identifiable +N1,89663,Sortie #89663,https://biolit.fr/sorties/sortie-89663/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/nacelle-d-argonaute-03-02-25-marana.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/nacelle-d-argonaute-03-02-25-marana.02.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/nacelle-d-argonaute-03-02-25-marana.03.jpg,02/03/2025,15.0:14,16.0:14,42.6097240000000,9.48712300000000,La Girelle,plage de la Marana,89664,Observation #89664,https://biolit.fr/observations/observation-89664/,Argonauta argo,Argonaute,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/nacelle-d-argonaute-03-02-25-marana.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/nacelle-d-argonaute-03-02-25-marana.02.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/nacelle-d-argonaute-03-02-25-marana.03.jpg,,TRUE,Identifiable +N1,89669,Sortie #89669,https://biolit.fr/sorties/sortie-89669/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/nacelle-d-argonaute-11-03-25-biguglia.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/nacelle-d-argonaute-11-03-25-biguglia.02.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/nacelle-d-argonaute-11-03-25-biguglia.03.jpg,03/11/2025,15.0:16,16.0:16,42.6560920000000,9.45169700000000,La Girelle,Biguglia,89670,Observation #89670,https://biolit.fr/observations/observation-89670/,Argonauta argo,Argonaute,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/nacelle-d-argonaute-11-03-25-biguglia.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/nacelle-d-argonaute-11-03-25-biguglia.02.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/nacelle-d-argonaute-11-03-25-biguglia.03.jpg,,TRUE,Identifiable +N1,89674,Sortie #89674,https://biolit.fr/sorties/sortie-89674/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/orange-de-mer-27-03-25-marana.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/orange-de-mer-27-03-25-marana.02.jpg,3/27/2025 0:00,0.0:22,16.0:23,42.6021960000000,9.49390400000000,La Girelle,plage de la Marana,89675,Observation #89675,https://biolit.fr/observations/observation-89675/,Tethya aurantium,Orange de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/orange-de-mer-27-03-25-marana.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/orange-de-mer-27-03-25-marana.02.jpg,,,Identifiable +N1,89679,Sortie #89679,https://biolit.fr/sorties/sortie-89679/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/ormeau-02-02-25-patrimonio.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/ormeau-02-02-25-patrimonio.02.jpg,02/02/2025,15.0:26,16.0:26,42.6969500000000,9.32295100000000,La Girelle,Patrimonio,89680,Observation #89680,https://biolit.fr/observations/observation-89680/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/ormeau-02-02-25-patrimonio.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/ormeau-02-02-25-patrimonio.02.jpg,,,Identifiable +N1,89683,Sortie #89683,https://biolit.fr/sorties/sortie-89683/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/petit-couteau-silique-28-02-25-arinella-calvi.jpg,2/28/2025 0:00,15.0:27,16.0:28,42.5568150000000,8.76419300000000,La Girelle,Arinella di Calvi,89684,Observation #89684,https://biolit.fr/observations/observation-89684/,Ensis minor,Petit couteau-silique,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/petit-couteau-silique-28-02-25-arinella-calvi.jpg,,,Identifiable +N1,89688,Sortie #89688,https://biolit.fr/sorties/sortie-89688/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/rocher-fascie-01-02-25-embouchure-urbino.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/rocher-fascie-01-02-25-embouchure-urbino.02.jpg,02/01/2025,15.0000000,16.0000000,42.0495490000000,9.49796500000000,La Girelle,Embouchure de l'etang d'Urbino,89689,Observation #89689,https://biolit.fr/observations/observation-89689/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/rocher-fascie-01-02-25-embouchure-urbino.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/rocher-fascie-01-02-25-embouchure-urbino.02.jpg,,,Identifiable +N1,89693,Sortie #89693,https://biolit.fr/sorties/sortie-89693/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/velelles-27-03-25-marana.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/velelles-27-03-25-marana.02.jpg,3/27/2025 0:00,15.0:32,16.0:32,42.602919000000,9.4951060000000,La Girelle,plage de la Marana,89694,Observation #89694,https://biolit.fr/observations/observation-89694/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/velelles-27-03-25-marana.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/velelles-27-03-25-marana.02.jpg,,TRUE,Identifiable +N1,89697,Sortie #89697,https://biolit.fr/sorties/sortie-89697/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/seiche-commune-28-03-25-marana.jpg,3/28/2025 0:00,15.0:33,16.0:33,42.6082260000000,9.49270200000000,La Girelle,plage de la Marana,89698,Observation #89698,https://biolit.fr/observations/observation-89698/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/seiche-commune-28-03-25-marana.jpg,,TRUE,Identifiable +N1,89720,Sortie #89720,https://biolit.fr/sorties/sortie-89720/,Salé Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_164639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170107-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_165544-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_165050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170249-scaled.jpg,04/01/2025,16.0:46,17.000005,49.7400990000000,0.307274000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89721,Observation #89721,https://biolit.fr/observations/observation-89721/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170107-scaled.jpg,,TRUE,Identifiable +N1,89720,Sortie #89720,https://biolit.fr/sorties/sortie-89720/,Salé Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_164639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170107-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_165544-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_165050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170249-scaled.jpg,04/01/2025,16.0:46,17.000005,49.7400990000000,0.307274000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89729,Observation #89729,https://biolit.fr/observations/observation-89729/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_165050-scaled.jpg,,TRUE,Identifiable +N1,89720,Sortie #89720,https://biolit.fr/sorties/sortie-89720/,Salé Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_164639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170107-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_165544-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_165050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170249-scaled.jpg,04/01/2025,16.0:46,17.000005,49.7400990000000,0.307274000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89733,Observation #89733,https://biolit.fr/observations/observation-89733/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170129-scaled.jpg,,TRUE,Identifiable +N1,89720,Sortie #89720,https://biolit.fr/sorties/sortie-89720/,Salé Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_164639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170107-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_165544-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_165050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170249-scaled.jpg,04/01/2025,16.0:46,17.000005,49.7400990000000,0.307274000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89735,Observation #89735,https://biolit.fr/observations/observation-89735/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170450-scaled.jpg,,TRUE,Identifiable +N1,89728,Sortie #89728,https://biolit.fr/sorties/sortie-89728/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage7UBszl-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageYHo7Q7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageAJkrvZ-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageUqCMoC-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagekpO5AD-scaled.jpg,04/01/2025,17.000009,17.0:47,49.7408330,0.306667000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89731,Observation #89731,https://biolit.fr/observations/observation-89731/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage7UBszl-scaled.jpg,,TRUE,Identifiable +N1,89728,Sortie #89728,https://biolit.fr/sorties/sortie-89728/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage7UBszl-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageYHo7Q7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageAJkrvZ-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageUqCMoC-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagekpO5AD-scaled.jpg,04/01/2025,17.000009,17.0:47,49.7408330,0.306667000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89737,Observation #89737,https://biolit.fr/observations/observation-89737/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageYHo7Q7-scaled.jpg,,TRUE,Identifiable +N1,89728,Sortie #89728,https://biolit.fr/sorties/sortie-89728/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage7UBszl-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageYHo7Q7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageAJkrvZ-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageUqCMoC-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagekpO5AD-scaled.jpg,04/01/2025,17.000009,17.0:47,49.7408330,0.306667000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89739,Observation #89739,https://biolit.fr/observations/observation-89739/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageAJkrvZ-scaled.jpg,,TRUE,Identifiable +N1,89728,Sortie #89728,https://biolit.fr/sorties/sortie-89728/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage7UBszl-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageYHo7Q7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageAJkrvZ-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageUqCMoC-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagekpO5AD-scaled.jpg,04/01/2025,17.000009,17.0:47,49.7408330,0.306667000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89741,Observation #89741,https://biolit.fr/observations/observation-89741/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageUqCMoC-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagekpO5AD-scaled.jpg,,TRUE,Identifiable +N1,89744,Sortie #89744,https://biolit.fr/sorties/sortie-89744/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage2WZ3cd-scaled.jpg,04/01/2025,17.000009,17.0:47,49.7408330,0.306667000000000,Université Le Havre Normandie (UMR SEBIO),Yport,,,,,,,,,, +N1,89750,Sortie #89750,https://biolit.fr/sorties/sortie-89750/,Salé Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173003-scaled.jpg,04/01/2025,17.0:11,17.0000000,49.7401950000000,0.306941000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89753,Observation #89753,https://biolit.fr/observations/observation-89753/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173003-scaled.jpg,,TRUE,Identifiable +N1,89750,Sortie #89750,https://biolit.fr/sorties/sortie-89750/,Salé Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173003-scaled.jpg,04/01/2025,17.0:11,17.0000000,49.7401950000000,0.306941000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89759,Observation #89759,https://biolit.fr/observations/observation-89759/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172021-scaled.jpg,,TRUE,Identifiable +N1,89750,Sortie #89750,https://biolit.fr/sorties/sortie-89750/,Salé Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173003-scaled.jpg,04/01/2025,17.0:11,17.0000000,49.7401950000000,0.306941000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89763,Observation #89763,https://biolit.fr/observations/observation-89763/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172958-scaled.jpg,,TRUE,Identifiable +N1,89750,Sortie #89750,https://biolit.fr/sorties/sortie-89750/,Salé Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173003-scaled.jpg,04/01/2025,17.0:11,17.0000000,49.7401950000000,0.306941000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89767,Observation #89767,https://biolit.fr/observations/observation-89767/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172408-scaled.jpg,,TRUE,Identifiable +N1,89750,Sortie #89750,https://biolit.fr/sorties/sortie-89750/,Salé Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173003-scaled.jpg,04/01/2025,17.0:11,17.0000000,49.7401950000000,0.306941000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89769,Observation #89769,https://biolit.fr/observations/observation-89769/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172600-scaled.jpg,,TRUE,Identifiable +N1,89756,Sortie #89756,https://biolit.fr/sorties/sortie-89756/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage8xf555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageEEFYIu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagenhaRRe-scaled.jpg,04/01/2025,16.0000000,17.0000000,49.7408330,0.306667000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89757,Observation #89757,https://biolit.fr/observations/observation-89757/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage8xf555-scaled.jpg,,TRUE,Identifiable +N1,89756,Sortie #89756,https://biolit.fr/sorties/sortie-89756/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage8xf555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageEEFYIu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagenhaRRe-scaled.jpg,04/01/2025,16.0000000,17.0000000,49.7408330,0.306667000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89761,Observation #89761,https://biolit.fr/observations/observation-89761/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageEEFYIu-scaled.jpg,,TRUE,Identifiable +N1,89756,Sortie #89756,https://biolit.fr/sorties/sortie-89756/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage8xf555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageEEFYIu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagenhaRRe-scaled.jpg,04/01/2025,16.0000000,17.0000000,49.7408330,0.306667000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89765,Observation #89765,https://biolit.fr/observations/observation-89765/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagenhaRRe-scaled.jpg,,TRUE,Identifiable +N1,89780,Sortie #89780,https://biolit.fr/sorties/sortie-89780/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagesV57oc-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageitljs6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageNBk2v6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageuvaCAb-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage9mKgtT-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageGm3nDo-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageDH7dtX-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage6CD8Rr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagetSWOL1-scaled.jpg,04/01/2025,17.000009,17.0:47,49.7408330,0.306667000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89782,Observation #89782,https://biolit.fr/observations/observation-89782/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageitljs6-scaled.jpg,,,Identifiable +N1,89780,Sortie #89780,https://biolit.fr/sorties/sortie-89780/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagesV57oc-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageitljs6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageNBk2v6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageuvaCAb-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage9mKgtT-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageGm3nDo-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageDH7dtX-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage6CD8Rr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagetSWOL1-scaled.jpg,04/01/2025,17.000009,17.0:47,49.7408330,0.306667000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89784,Observation #89784,https://biolit.fr/observations/observation-89784/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageuvaCAb-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageDH7dtX-scaled.jpg,,TRUE,Identifiable +N1,89780,Sortie #89780,https://biolit.fr/sorties/sortie-89780/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagesV57oc-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageitljs6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageNBk2v6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageuvaCAb-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage9mKgtT-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageGm3nDo-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageDH7dtX-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage6CD8Rr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagetSWOL1-scaled.jpg,04/01/2025,17.000009,17.0:47,49.7408330,0.306667000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89791,Observation #89791,https://biolit.fr/observations/observation-89791/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagesV57oc-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage6CD8Rr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageGm3nDo-scaled.jpg,,TRUE,Identifiable +N1,89780,Sortie #89780,https://biolit.fr/sorties/sortie-89780/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagesV57oc-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageitljs6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageNBk2v6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageuvaCAb-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage9mKgtT-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageGm3nDo-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageDH7dtX-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage6CD8Rr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagetSWOL1-scaled.jpg,04/01/2025,17.000009,17.0:47,49.7408330,0.306667000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89797,Observation #89797,https://biolit.fr/observations/observation-89797/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagetSWOL1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageNBk2v6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage9mKgtT-scaled.jpg,,TRUE,Identifiable +N1,89796,Sortie #89796,https://biolit.fr/sorties/sortie-89796/,Salé Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173903-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174800-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174752-scaled.jpg,04/01/2025,17.0:34,17.0:49,49.7401240000000,0.307158000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89799,Observation #89799,https://biolit.fr/observations/observation-89799/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173903-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174800-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174407-scaled.jpg,,TRUE,Identifiable +N1,89796,Sortie #89796,https://biolit.fr/sorties/sortie-89796/,Salé Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173903-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174800-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174752-scaled.jpg,04/01/2025,17.0:34,17.0:49,49.7401240000000,0.307158000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89802,Observation #89802,https://biolit.fr/observations/observation-89802/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174800-scaled.jpg,,TRUE,Identifiable +N1,89796,Sortie #89796,https://biolit.fr/sorties/sortie-89796/,Salé Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173903-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174800-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174752-scaled.jpg,04/01/2025,17.0:34,17.0:49,49.7401240000000,0.307158000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89804,Observation #89804,https://biolit.fr/observations/observation-89804/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174432-scaled.jpg,,TRUE,Identifiable +N1,89817,Sortie #89817,https://biolit.fr/sorties/sortie-89817/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagelH9BhS-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageZyXaSM-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImaget7b7iH-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagevlmRv2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageY6b8b1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageaC1c8q-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageBN3cuu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageP7i7bZ-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageJA7A6C-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage54A56W-scaled.jpg,04/01/2025,17.0:47,17.0:58,49.7408330,0.306944000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89818,Observation #89818,https://biolit.fr/observations/observation-89818/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageP7i7bZ-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagevlmRv2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageY6b8b1-scaled.jpg,,TRUE,Identifiable +N1,89817,Sortie #89817,https://biolit.fr/sorties/sortie-89817/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagelH9BhS-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageZyXaSM-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImaget7b7iH-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagevlmRv2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageY6b8b1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageaC1c8q-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageBN3cuu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageP7i7bZ-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageJA7A6C-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage54A56W-scaled.jpg,04/01/2025,17.0:47,17.0:58,49.7408330,0.306944000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89821,Observation #89821,https://biolit.fr/observations/observation-89821/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagelH9BhS-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageZyXaSM-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageaC1c8q-scaled.jpg,,TRUE,Identifiable +N1,89817,Sortie #89817,https://biolit.fr/sorties/sortie-89817/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagelH9BhS-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageZyXaSM-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImaget7b7iH-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagevlmRv2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageY6b8b1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageaC1c8q-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageBN3cuu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageP7i7bZ-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageJA7A6C-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage54A56W-scaled.jpg,04/01/2025,17.0:47,17.0:58,49.7408330,0.306944000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89824,Observation #89824,https://biolit.fr/observations/observation-89824/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageBN3cuu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage54A56W-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImaget7b7iH-scaled.jpg,,TRUE,Identifiable +N1,89832,Sortie #89832,https://biolit.fr/sorties/sortie-89832/,Salé Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175953-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175948-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175758-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175443-scaled.jpg,04/01/2025,17.0:51,18.0:15,49.7402660000000,0.3067200000000,Université Le Havre Normandie (UMR SEBIO),Yport,89834,Observation #89834,https://biolit.fr/observations/observation-89834/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175443-scaled.jpg,,TRUE,Identifiable +N1,89832,Sortie #89832,https://biolit.fr/sorties/sortie-89832/,Salé Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175953-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175948-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175758-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175443-scaled.jpg,04/01/2025,17.0:51,18.0:15,49.7402660000000,0.3067200000000,Université Le Havre Normandie (UMR SEBIO),Yport,89836,Observation #89836,https://biolit.fr/observations/observation-89836/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175953-scaled.jpg,,TRUE,Identifiable +N1,89832,Sortie #89832,https://biolit.fr/sorties/sortie-89832/,Salé Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175953-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175948-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175758-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175443-scaled.jpg,04/01/2025,17.0:51,18.0:15,49.7402660000000,0.3067200000000,Université Le Havre Normandie (UMR SEBIO),Yport,89838,Observation #89838,https://biolit.fr/observations/observation-89838/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175948-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175758-scaled.jpg,,TRUE,Identifiable +N1,89849,Sortie #89849,https://biolit.fr/sorties/sortie-89849/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage99H5qq-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageJV7cSd-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageaGSj0N-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage8s88Qc-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageEsN1rW-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageRfsJsE-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageOgiyia-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageJqAIWS-scaled.jpg,04/01/2025,17.0:58,18.0000000,49.7408330,0.306944000000000,Université Le Havre Normandie (UMR SEBIO),Yport,,,,,,,,,, +N1,89868,Sortie #89868,https://biolit.fr/sorties/sortie-89868/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage6UoU3c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageM0SInv-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage0FQGFX-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageGCpyQt-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage2FNIN9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageri6L2q-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageBzJQ1V-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage7dFOTF-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageQ6Gen4-scaled.jpg,04/01/2025,17.0:58,18.0000000,49.7408330,0.306944000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89871,Observation #89871,https://biolit.fr/observations/observation-89871/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage2FNIN9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage0FQGFX-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage6UoU3c-scaled.jpg,,TRUE,Identifiable +N1,89868,Sortie #89868,https://biolit.fr/sorties/sortie-89868/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage6UoU3c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageM0SInv-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage0FQGFX-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageGCpyQt-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage2FNIN9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageri6L2q-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageBzJQ1V-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage7dFOTF-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageQ6Gen4-scaled.jpg,04/01/2025,17.0:58,18.0000000,49.7408330,0.306944000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89873,Observation #89873,https://biolit.fr/observations/observation-89873/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageQ6Gen4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage7dFOTF-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageM0SInv-scaled.jpg,,TRUE,Identifiable +N1,89868,Sortie #89868,https://biolit.fr/sorties/sortie-89868/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage6UoU3c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageM0SInv-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage0FQGFX-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageGCpyQt-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage2FNIN9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageri6L2q-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageBzJQ1V-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage7dFOTF-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageQ6Gen4-scaled.jpg,04/01/2025,17.0:58,18.0000000,49.7408330,0.306944000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89876,Observation #89876,https://biolit.fr/observations/observation-89876/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageGCpyQt-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage7dFOTF-scaled.jpg,,TRUE,Identifiable +N1,89868,Sortie #89868,https://biolit.fr/sorties/sortie-89868/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage6UoU3c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageM0SInv-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage0FQGFX-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageGCpyQt-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage2FNIN9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageri6L2q-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageBzJQ1V-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage7dFOTF-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageQ6Gen4-scaled.jpg,04/01/2025,17.0:58,18.0000000,49.7408330,0.306944000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89878,Observation #89878,https://biolit.fr/observations/observation-89878/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage0FQGFX-scaled.jpg,,,Identifiable +N1,89920,Sortie #89920,https://biolit.fr/sorties/sortie-89920/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/04/Obs-pointe-du-decolle-scaled.jpg,04/01/2025,17.0000000,17.0000000,48.64272300000,-2.11209500000000,,Pointe du Décollé,89921,Observation #89921,https://biolit.fr/observations/observation-89921/,Macropodia deflexa,Macropode à rostre plongeant,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/04/Obs-pointe-du-decolle-scaled.jpg,,TRUE,Ne sais pas +N1,90032,Sortie #90032,https://biolit.fr/sorties/sortie-90032/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7532-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7531-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7528-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7526-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7527-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7523-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7522-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7520-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7519-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7517-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7518-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7524-scaled.jpeg,04/01/2025,17.0:15,17.0:45,48.6426070000000,-2.11182100000000,Planète Mer (antenne Dinard),Grande Plage de Saint Lunaire,,,,,,,,,, +N1,90034,Sortie #90034,https://biolit.fr/sorties/sortie-90034/,EXPLORE & PRESERVE E& P,https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/IMG20250403112900-scaled.jpg,04/03/2025,11.0:15,11.0000000,43.0091670000000,6.21761300000000,Explore & Préserve,Plage Du Lequin,,,,,,,,,, +N1,90043,Sortie #90043,https://biolit.fr/sorties/sortie-90043/,Chatelier Marie,https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5423-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5424-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5425-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5419-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5428-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5453-scaled.jpeg,04/04/2025,9.0:25,10.0000000,48.5766650000000,-1.9831770000000,cogitOcean,Pointe de Garel - Saint-Suliax,90044,Observation #90044,https://biolit.fr/observations/observation-90044/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5425-scaled.jpeg,,,Identifiable +N1,90043,Sortie #90043,https://biolit.fr/sorties/sortie-90043/,Chatelier Marie,https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5423-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5424-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5425-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5419-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5428-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5453-scaled.jpeg,04/04/2025,9.0:25,10.0000000,48.5766650000000,-1.9831770000000,cogitOcean,Pointe de Garel - Saint-Suliax,90048,Observation #90048,https://biolit.fr/observations/observation-90048/,Pelvetia canaliculata,Pelvétie,,https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5419-scaled.jpeg,,TRUE,Identifiable +N1,90043,Sortie #90043,https://biolit.fr/sorties/sortie-90043/,Chatelier Marie,https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5423-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5424-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5425-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5419-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5428-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5453-scaled.jpeg,04/04/2025,9.0:25,10.0000000,48.5766650000000,-1.9831770000000,cogitOcean,Pointe de Garel - Saint-Suliax,90050,Observation #90050,https://biolit.fr/observations/observation-90050/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5428-scaled.jpeg,,TRUE,Identifiable +N1,90082,Sortie #90082,https://biolit.fr/sorties/sortie-90082/,Dariel Antoinette,https://biolit.fr/wp-content/uploads/jet-form-builder/e48aa105691edf2bad23b668769741c1/2025/04/IMG-20250405-WA0032-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e48aa105691edf2bad23b668769741c1/2025/04/20250405_192559.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e48aa105691edf2bad23b668769741c1/2025/04/Screenshot_20250405_192754_Google.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e48aa105691edf2bad23b668769741c1/2025/04/IMG-20250405-WA0030-scaled.jpeg,04/05/2025,18.0:29,19.0:59,42.1829360,8.4937150,,"Au large d'Ajaccio, Chiuni / Corse",90083,Observation #90083,https://biolit.fr/observations/observation-90083/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/e48aa105691edf2bad23b668769741c1/2025/04/IMG-20250405-WA0032-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e48aa105691edf2bad23b668769741c1/2025/04/20250405_192559.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e48aa105691edf2bad23b668769741c1/2025/04/IMG-20250405-WA0030-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e48aa105691edf2bad23b668769741c1/2025/04/Screenshot_20250405_192754_Google.jpg,,TRUE, +N1,90105,Sortie #90105,https://biolit.fr/sorties/sortie-90105/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-scaled.jpg,04/01/2025,15.0000000,16.0000000,48.7025360000000,-1.84706000000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90106,Observation #90106,https://biolit.fr/observations/observation-90106/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-4-scaled.jpg,,TRUE,Identifiable +N1,90105,Sortie #90105,https://biolit.fr/sorties/sortie-90105/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-scaled.jpg,04/01/2025,15.0000000,16.0000000,48.7025360000000,-1.84706000000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90108,Observation #90108,https://biolit.fr/observations/observation-90108/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-indeterminee-scaled.jpg,,,Identifiable +N1,90105,Sortie #90105,https://biolit.fr/sorties/sortie-90105/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-scaled.jpg,04/01/2025,15.0000000,16.0000000,48.7025360000000,-1.84706000000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90110,Observation #90110,https://biolit.fr/observations/observation-90110/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Asterie-bossue-scaled.jpg,,TRUE,Identifiable +N1,90105,Sortie #90105,https://biolit.fr/sorties/sortie-90105/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-scaled.jpg,04/01/2025,15.0000000,16.0000000,48.7025360000000,-1.84706000000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90112,Observation #90112,https://biolit.fr/observations/observation-90112/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-perceur-scaled.jpg,,,Identifiable +N1,90105,Sortie #90105,https://biolit.fr/sorties/sortie-90105/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-scaled.jpg,04/01/2025,15.0000000,16.0000000,48.7025360000000,-1.84706000000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90114,Observation #90114,https://biolit.fr/observations/observation-90114/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-3-scaled.jpg,,,Identifiable +N1,90105,Sortie #90105,https://biolit.fr/sorties/sortie-90105/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-scaled.jpg,04/01/2025,15.0000000,16.0000000,48.7025360000000,-1.84706000000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90116,Observation #90116,https://biolit.fr/observations/observation-90116/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-2-scaled.jpg,,TRUE,Identifiable +N1,90105,Sortie #90105,https://biolit.fr/sorties/sortie-90105/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-scaled.jpg,04/01/2025,15.0000000,16.0000000,48.7025360000000,-1.84706000000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90118,Observation #90118,https://biolit.fr/observations/observation-90118/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-3-scaled.jpg,,TRUE,Identifiable +N1,90105,Sortie #90105,https://biolit.fr/sorties/sortie-90105/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-scaled.jpg,04/01/2025,15.0000000,16.0000000,48.7025360000000,-1.84706000000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90120,Observation #90120,https://biolit.fr/observations/observation-90120/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-2-scaled.jpg,,,Identifiable +N1,90105,Sortie #90105,https://biolit.fr/sorties/sortie-90105/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-scaled.jpg,04/01/2025,15.0000000,16.0000000,48.7025360000000,-1.84706000000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90122,Observation #90122,https://biolit.fr/observations/observation-90122/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-scaled.jpg,,TRUE,Identifiable +N1,90144,Sortie #90144,https://biolit.fr/sorties/sortie-90144/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-10-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-11-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-12-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-13-scaled.jpg,04/01/2025,15.0000000,16.0000000,48.7025540000000,-1.84697000000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90145,Observation #90145,https://biolit.fr/observations/observation-90145/,Lepadogaster candolii,Porte-écuelle de Candolle,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Lepadogaster-3-scaled.jpg,,,Identifiable +N1,90144,Sortie #90144,https://biolit.fr/sorties/sortie-90144/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-10-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-11-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-12-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-13-scaled.jpg,04/01/2025,15.0000000,16.0000000,48.7025540000000,-1.84697000000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90147,Observation #90147,https://biolit.fr/observations/observation-90147/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-scaled.jpg,,TRUE,Identifiable +N1,90144,Sortie #90144,https://biolit.fr/sorties/sortie-90144/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-10-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-11-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-12-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-13-scaled.jpg,04/01/2025,15.0000000,16.0000000,48.7025540000000,-1.84697000000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90149,Observation #90149,https://biolit.fr/observations/observation-90149/,Nerophis ophidion,Nérophis ophidion,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nerophis-2-scaled.jpg,,,Identifiable +N1,90144,Sortie #90144,https://biolit.fr/sorties/sortie-90144/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-10-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-11-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-12-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-13-scaled.jpg,04/01/2025,15.0000000,16.0000000,48.7025540000000,-1.84697000000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90151,Observation #90151,https://biolit.fr/observations/observation-90151/,Aeolidia papillosa,Eolis à papilles,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-13-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-12-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-11-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-10-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-8-scaled.jpg,,,Identifiable +N1,90185,Sortie #90185,https://biolit.fr/sorties/sortie-90185/,barrera Felix,https://biolit.fr/wp-content/uploads/jet-form-builder/5d9e9f2448db1d798b280018d67689de/2025/04/17442035949276393112060166072624-scaled.jpg,04/09/2025,14.0000000,14.0:59,43.4535340000000,3.81150200000000,CPIE Littoral d'Occitanie,plage des aresquiers,90190,Observation #90190,https://biolit.fr/observations/observation-90190/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/5d9e9f2448db1d798b280018d67689de/2025/04/17442035949276393112060166072624-scaled.jpg,,TRUE,Identifiable +N1,90189,Sortie #90189,https://biolit.fr/sorties/sortie-90189/,Matringe Aloyse,https://biolit.fr/wp-content/uploads/jet-form-builder/d3e6214e120e66b25ed1c86e40478406/2025/04/1000055303-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d3e6214e120e66b25ed1c86e40478406/2025/04/1000055304-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d3e6214e120e66b25ed1c86e40478406/2025/04/1000055299-scaled.jpg,04/09/2025,14.0:25,14.0:45,43.4541620,3.81385,,Plage des arsquiers,90192,Observation #90192,https://biolit.fr/observations/observation-90192/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d3e6214e120e66b25ed1c86e40478406/2025/04/1000055303-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d3e6214e120e66b25ed1c86e40478406/2025/04/1000055299-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d3e6214e120e66b25ed1c86e40478406/2025/04/1000055304-scaled.jpg,,,Ne sais pas +N1,90189,Sortie #90189,https://biolit.fr/sorties/sortie-90189/,Matringe Aloyse,https://biolit.fr/wp-content/uploads/jet-form-builder/d3e6214e120e66b25ed1c86e40478406/2025/04/1000055303-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d3e6214e120e66b25ed1c86e40478406/2025/04/1000055304-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d3e6214e120e66b25ed1c86e40478406/2025/04/1000055299-scaled.jpg,04/09/2025,14.0:25,14.0:45,43.4541620,3.81385,,Plage des arsquiers,90194,Observation #90194,https://biolit.fr/observations/observation-90194/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d3e6214e120e66b25ed1c86e40478406/2025/04/1000055299-scaled.jpg,,,Ne sais pas +N1,90208,Sortie #90208,https://biolit.fr/sorties/sortie-90208/,Zamora Marco,https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011041.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011044-scaled.jpg,04/10/2025,9.0000000,11.0000000,43.214876,5.342933,,Anse de la Maronaise,90209,Observation #90209,https://biolit.fr/observations/observation-90209/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011041.jpg,,TRUE,Identifiable +N1,90208,Sortie #90208,https://biolit.fr/sorties/sortie-90208/,Zamora Marco,https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011041.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011044-scaled.jpg,04/10/2025,9.0000000,11.0000000,43.214876,5.342933,,Anse de la Maronaise,90211,Observation #90211,https://biolit.fr/observations/observation-90211/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011045-scaled.jpg,,TRUE,Identifiable +N1,90208,Sortie #90208,https://biolit.fr/sorties/sortie-90208/,Zamora Marco,https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011041.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011044-scaled.jpg,04/10/2025,9.0000000,11.0000000,43.214876,5.342933,,Anse de la Maronaise,90213,Observation #90213,https://biolit.fr/observations/observation-90213/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011045-scaled.jpg,,TRUE,Identifiable +N1,90208,Sortie #90208,https://biolit.fr/sorties/sortie-90208/,Zamora Marco,https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011041.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011044-scaled.jpg,04/10/2025,9.0000000,11.0000000,43.214876,5.342933,,Anse de la Maronaise,90215,Observation #90215,https://biolit.fr/observations/observation-90215/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011044-scaled.jpg,,FALSE,Identifiable +N1,90229,Sortie #90229,https://biolit.fr/sorties/sortie-90229/,Zamora Marco,https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011053-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011050-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011051-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011052-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011049-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011048-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011047-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011046-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011045-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011044-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011043-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011041-1.jpg,04/10/2025,9.0000000,11.0000000,43.2670980,5.3889440,,Anse de la Maronaise,,,,,,,,,, +N1,90239,Sortie #90239,https://biolit.fr/sorties/sortie-90239/,CHIMERE PATTERSON INGRID,https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132430.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132435.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132438.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132446.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132454.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132459.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132506.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132551.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132638.jpg,04/10/2025,9.0000000,11.0000000,43.1995700000000,5.38330100000,,ANSE DE LA MARONAISE,90244,Observation #90244,https://biolit.fr/observations/observation-90244/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132430.jpg,,TRUE,Identifiable +N1,90239,Sortie #90239,https://biolit.fr/sorties/sortie-90239/,CHIMERE PATTERSON INGRID,https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132430.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132435.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132438.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132446.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132454.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132459.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132506.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132551.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132638.jpg,04/10/2025,9.0000000,11.0000000,43.1995700000000,5.38330100000,,ANSE DE LA MARONAISE,90259,Observation #90259,https://biolit.fr/observations/observation-90259/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132435.jpg,,,Ne sais pas +N1,90239,Sortie #90239,https://biolit.fr/sorties/sortie-90239/,CHIMERE PATTERSON INGRID,https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132430.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132435.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132438.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132446.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132454.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132459.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132506.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132551.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132638.jpg,04/10/2025,9.0000000,11.0000000,43.1995700000000,5.38330100000,,ANSE DE LA MARONAISE,90261,Observation #90261,https://biolit.fr/observations/observation-90261/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132638.jpg,,,Ne sais pas +N1,90239,Sortie #90239,https://biolit.fr/sorties/sortie-90239/,CHIMERE PATTERSON INGRID,https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132430.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132435.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132438.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132446.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132454.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132459.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132506.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132551.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132638.jpg,04/10/2025,9.0000000,11.0000000,43.1995700000000,5.38330100000,,ANSE DE LA MARONAISE,90263,Observation #90263,https://biolit.fr/observations/observation-90263/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132551.jpg,,,Ne sais pas +N1,90239,Sortie #90239,https://biolit.fr/sorties/sortie-90239/,CHIMERE PATTERSON INGRID,https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132430.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132435.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132438.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132446.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132454.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132459.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132506.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132551.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132638.jpg,04/10/2025,9.0000000,11.0000000,43.1995700000000,5.38330100000,,ANSE DE LA MARONAISE,90265,Observation #90265,https://biolit.fr/observations/observation-90265/,Lophocladia lallemandii,Lophoclade de Lallemand,,https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132438.jpg,,,Identifiable +N1,90254,Sortie #90254,https://biolit.fr/sorties/sortie-90254/,CHIMERE PATTERSON INGRID,https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132446-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132438-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132454-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132506-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132430-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132638-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132435-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132551-1.jpg,04/10/2025,9.0000000,11.0000000,43.1621840000000,5.33935500000,,,,,,,,,,,, +N1,90310,Sortie #90310,https://biolit.fr/sorties/sortie-90310/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153121-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153122-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153321-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152333-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9206,1.0891,Eco2Nature,Sainte-Marguerite-sur-Mer,90311,Observation #90311,https://biolit.fr/observations/observation-90311/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150746-scaled.jpg,,TRUE,Identifiable +N1,90310,Sortie #90310,https://biolit.fr/sorties/sortie-90310/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153121-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153122-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153321-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152333-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9206,1.0891,Eco2Nature,Sainte-Marguerite-sur-Mer,90313,Observation #90313,https://biolit.fr/observations/observation-90313/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150850-scaled.jpg,,TRUE,Identifiable +N1,90310,Sortie #90310,https://biolit.fr/sorties/sortie-90310/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153121-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153122-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153321-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152333-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9206,1.0891,Eco2Nature,Sainte-Marguerite-sur-Mer,90315,Observation #90315,https://biolit.fr/observations/observation-90315/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153321-scaled.jpg,,TRUE,Identifiable +N1,90310,Sortie #90310,https://biolit.fr/sorties/sortie-90310/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153121-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153122-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153321-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152333-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9206,1.0891,Eco2Nature,Sainte-Marguerite-sur-Mer,90317,Observation #90317,https://biolit.fr/observations/observation-90317/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151058-scaled.jpg,,TRUE,Identifiable +N1,90310,Sortie #90310,https://biolit.fr/sorties/sortie-90310/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153121-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153122-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153321-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152333-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9206,1.0891,Eco2Nature,Sainte-Marguerite-sur-Mer,90319,Observation #90319,https://biolit.fr/observations/observation-90319/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152252-scaled.jpg,,TRUE,Identifiable +N1,90310,Sortie #90310,https://biolit.fr/sorties/sortie-90310/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153121-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153122-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153321-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152333-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9206,1.0891,Eco2Nature,Sainte-Marguerite-sur-Mer,90321,Observation #90321,https://biolit.fr/observations/observation-90321/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152333-scaled.jpg,,TRUE,Identifiable +N1,90310,Sortie #90310,https://biolit.fr/sorties/sortie-90310/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153121-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153122-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153321-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152333-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9206,1.0891,Eco2Nature,Sainte-Marguerite-sur-Mer,90323,Observation #90323,https://biolit.fr/observations/observation-90323/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153122-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153121-scaled.jpg,,TRUE,Identifiable +N1,90310,Sortie #90310,https://biolit.fr/sorties/sortie-90310/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153121-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153122-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153321-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152333-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9206,1.0891,Eco2Nature,Sainte-Marguerite-sur-Mer,90325,Observation #90325,https://biolit.fr/observations/observation-90325/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150954-scaled.jpg,,TRUE,Identifiable +N1,90347,Sortie #90347,https://biolit.fr/sorties/sortie-90347/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153956-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152545-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151808-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151050-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9220740,1.0735260,Eco2Nature,Sainte-Marguerite-sur-Mer,90403,Observation #90403,https://biolit.fr/observations/observation-90403/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152545-scaled.jpg,,TRUE,Identifiable +N1,90347,Sortie #90347,https://biolit.fr/sorties/sortie-90347/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153956-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152545-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151808-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151050-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9220740,1.0735260,Eco2Nature,Sainte-Marguerite-sur-Mer,90405,Observation #90405,https://biolit.fr/observations/observation-90405/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151446-scaled.jpg,,TRUE,Identifiable +N1,90347,Sortie #90347,https://biolit.fr/sorties/sortie-90347/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153956-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152545-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151808-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151050-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9220740,1.0735260,Eco2Nature,Sainte-Marguerite-sur-Mer,90407,Observation #90407,https://biolit.fr/observations/observation-90407/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151808-scaled.jpg,,TRUE,Identifiable +N1,90347,Sortie #90347,https://biolit.fr/sorties/sortie-90347/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153956-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152545-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151808-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151050-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9220740,1.0735260,Eco2Nature,Sainte-Marguerite-sur-Mer,90409,Observation #90409,https://biolit.fr/observations/observation-90409/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151855-scaled.jpg,,TRUE,Identifiable +N1,90347,Sortie #90347,https://biolit.fr/sorties/sortie-90347/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153956-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152545-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151808-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151050-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9220740,1.0735260,Eco2Nature,Sainte-Marguerite-sur-Mer,90411,Observation #90411,https://biolit.fr/observations/observation-90411/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151911-scaled.jpg,,TRUE,Identifiable +N1,90347,Sortie #90347,https://biolit.fr/sorties/sortie-90347/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153956-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152545-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151808-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151050-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9220740,1.0735260,Eco2Nature,Sainte-Marguerite-sur-Mer,90413,Observation #90413,https://biolit.fr/observations/observation-90413/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152012-scaled.jpg,,TRUE,Identifiable +N1,90347,Sortie #90347,https://biolit.fr/sorties/sortie-90347/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153956-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152545-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151808-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151050-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9220740,1.0735260,Eco2Nature,Sainte-Marguerite-sur-Mer,90415,Observation #90415,https://biolit.fr/observations/observation-90415/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152032-scaled.jpg,,TRUE,Identifiable +N1,90347,Sortie #90347,https://biolit.fr/sorties/sortie-90347/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153956-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152545-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151808-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151050-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9220740,1.0735260,Eco2Nature,Sainte-Marguerite-sur-Mer,90417,Observation #90417,https://biolit.fr/observations/observation-90417/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152949-scaled.jpg,,TRUE,Identifiable +N1,90347,Sortie #90347,https://biolit.fr/sorties/sortie-90347/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153956-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152545-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151808-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151050-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9220740,1.0735260,Eco2Nature,Sainte-Marguerite-sur-Mer,90419,Observation #90419,https://biolit.fr/observations/observation-90419/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153058-scaled.jpg,,TRUE,Identifiable +N1,90347,Sortie #90347,https://biolit.fr/sorties/sortie-90347/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153956-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152545-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151808-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151050-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9220740,1.0735260,Eco2Nature,Sainte-Marguerite-sur-Mer,90421,Observation #90421,https://biolit.fr/observations/observation-90421/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153539-scaled.jpg,,TRUE,Identifiable +N1,90347,Sortie #90347,https://biolit.fr/sorties/sortie-90347/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153956-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152545-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151808-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151050-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9220740,1.0735260,Eco2Nature,Sainte-Marguerite-sur-Mer,90423,Observation #90423,https://biolit.fr/observations/observation-90423/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153939-scaled.jpg,,TRUE,Identifiable +N1,90347,Sortie #90347,https://biolit.fr/sorties/sortie-90347/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153956-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152545-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151808-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151050-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9220740,1.0735260,Eco2Nature,Sainte-Marguerite-sur-Mer,90425,Observation #90425,https://biolit.fr/observations/observation-90425/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153956-scaled.jpg,,TRUE,Identifiable +N1,90347,Sortie #90347,https://biolit.fr/sorties/sortie-90347/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153956-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152545-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151808-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151050-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9220740,1.0735260,Eco2Nature,Sainte-Marguerite-sur-Mer,90427,Observation #90427,https://biolit.fr/observations/observation-90427/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154024-scaled.jpg,,TRUE,Identifiable +N1,90371,Sortie #90371,https://biolit.fr/sorties/sortie-90371/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-2-scaled.jpg,04/10/2025,14.0000000,15.0000000,48.7026130000000,-1.84724800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90372,Observation #90372,https://biolit.fr/observations/observation-90372/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-2-scaled.jpg,,TRUE,Identifiable +N1,90371,Sortie #90371,https://biolit.fr/sorties/sortie-90371/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-2-scaled.jpg,04/10/2025,14.0000000,15.0000000,48.7026130000000,-1.84724800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90374,Observation #90374,https://biolit.fr/observations/observation-90374/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-2-scaled.jpg,,,Identifiable +N1,90371,Sortie #90371,https://biolit.fr/sorties/sortie-90371/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-2-scaled.jpg,04/10/2025,14.0000000,15.0000000,48.7026130000000,-1.84724800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90376,Observation #90376,https://biolit.fr/observations/observation-90376/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-2-scaled.jpg,,TRUE,Identifiable +N1,90371,Sortie #90371,https://biolit.fr/sorties/sortie-90371/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-2-scaled.jpg,04/10/2025,14.0000000,15.0000000,48.7026130000000,-1.84724800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90378,Observation #90378,https://biolit.fr/observations/observation-90378/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-2-scaled.jpg,,,Identifiable +N1,90371,Sortie #90371,https://biolit.fr/sorties/sortie-90371/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-2-scaled.jpg,04/10/2025,14.0000000,15.0000000,48.7026130000000,-1.84724800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90380,Observation #90380,https://biolit.fr/observations/observation-90380/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-1-scaled.jpg,,TRUE,Identifiable +N1,90371,Sortie #90371,https://biolit.fr/sorties/sortie-90371/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-2-scaled.jpg,04/10/2025,14.0000000,15.0000000,48.7026130000000,-1.84724800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90382,Observation #90382,https://biolit.fr/observations/observation-90382/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150521-scaled.jpg,,,Identifiable +N1,90371,Sortie #90371,https://biolit.fr/sorties/sortie-90371/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-2-scaled.jpg,04/10/2025,14.0000000,15.0000000,48.7026130000000,-1.84724800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90384,Observation #90384,https://biolit.fr/observations/observation-90384/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150518-scaled.jpg,,,Identifiable +N1,90371,Sortie #90371,https://biolit.fr/sorties/sortie-90371/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-2-scaled.jpg,04/10/2025,14.0000000,15.0000000,48.7026130000000,-1.84724800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90386,Observation #90386,https://biolit.fr/observations/observation-90386/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-1-scaled.jpg,,TRUE,Identifiable +N1,90371,Sortie #90371,https://biolit.fr/sorties/sortie-90371/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-2-scaled.jpg,04/10/2025,14.0000000,15.0000000,48.7026130000000,-1.84724800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90388,Observation #90388,https://biolit.fr/observations/observation-90388/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Patelle-scaled.jpg,,TRUE,Identifiable +N1,90371,Sortie #90371,https://biolit.fr/sorties/sortie-90371/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-2-scaled.jpg,04/10/2025,14.0000000,15.0000000,48.7026130000000,-1.84724800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90390,Observation #90390,https://biolit.fr/observations/observation-90390/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ponte-de-pourpre-scaled.jpg,,TRUE,Identifiable +N1,90371,Sortie #90371,https://biolit.fr/sorties/sortie-90371/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-2-scaled.jpg,04/10/2025,14.0000000,15.0000000,48.7026130000000,-1.84724800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90395,Observation #90395,https://biolit.fr/observations/observation-90395/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Porcellane-scaled.jpg,,TRUE,Identifiable +N1,90371,Sortie #90371,https://biolit.fr/sorties/sortie-90371/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-2-scaled.jpg,04/10/2025,14.0000000,15.0000000,48.7026130000000,-1.84724800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90397,Observation #90397,https://biolit.fr/observations/observation-90397/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Pourpre-scaled.jpg,,TRUE,Identifiable +N1,90371,Sortie #90371,https://biolit.fr/sorties/sortie-90371/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-2-scaled.jpg,04/10/2025,14.0000000,15.0000000,48.7026130000000,-1.84724800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90399,Observation #90399,https://biolit.fr/observations/observation-90399/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tomate-de-mer-scaled.jpg,,TRUE,Identifiable +N1,90371,Sortie #90371,https://biolit.fr/sorties/sortie-90371/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-2-scaled.jpg,04/10/2025,14.0000000,15.0000000,48.7026130000000,-1.84724800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90401,Observation #90401,https://biolit.fr/observations/observation-90401/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-2-scaled.jpg,,TRUE,Identifiable +N1,90468,Sortie #90468,https://biolit.fr/sorties/sortie-90468/,Carré Laelys,https://biolit.fr/wp-content/uploads/jet-form-builder/5af00f00ca53472f05d6dec6879268f9/2025/04/IMG_3522-scaled.jpeg,12/11/2024,9.0000000,17.0000000,49.0740190000000,-1.61020500000000,,Blainville-sur-mer,,,,,,,,,, +N1,90470,Sortie #90470,https://biolit.fr/sorties/sortie-90470/,Carré Laelys,https://biolit.fr/wp-content/uploads/jet-form-builder/5af00f00ca53472f05d6dec6879268f9/2025/04/IMG_8623-scaled.jpeg,2/27/2025 0:00,11.0000000,13.0000000,48.6089630000000,-2.18872500000000,Saint Jacut Environnement,Saint Jacut de la mer,90471,Observation #90471,https://biolit.fr/observations/observation-90471/,Scyliorhinus canicula,Capsule de petite roussette,,https://biolit.fr/wp-content/uploads/jet-form-builder/5af00f00ca53472f05d6dec6879268f9/2025/04/IMG_8623-scaled.jpeg,,TRUE,Identifiable +N1,90477,Sortie #90477,https://biolit.fr/sorties/sortie-90477/,Camoin Lucie Marie,https://biolit.fr/wp-content/uploads/jet-form-builder/b7faf25ee00f966f7bc1801df8dedb04/2025/04/IMG-20250413-WA0094.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b7faf25ee00f966f7bc1801df8dedb04/2025/04/IMG-20250413-WA0095.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b7faf25ee00f966f7bc1801df8dedb04/2025/04/IMG-20250413-WA0096.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b7faf25ee00f966f7bc1801df8dedb04/2025/04/IMG-20250413-WA0093.jpg,04/12/2025,14.0000000,18.0000000,41.907407000000,8.63297800000000,,Plage Moorea,90478,Observation #90478,https://biolit.fr/observations/observation-90478/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/b7faf25ee00f966f7bc1801df8dedb04/2025/04/IMG-20250413-WA0094.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b7faf25ee00f966f7bc1801df8dedb04/2025/04/IMG-20250413-WA0095.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b7faf25ee00f966f7bc1801df8dedb04/2025/04/IMG-20250413-WA0093.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b7faf25ee00f966f7bc1801df8dedb04/2025/04/IMG-20250413-WA0096.jpg,,TRUE,Identifiable +N1,90481,Sortie #90481,https://biolit.fr/sorties/sortie-90481/,Camoin Lucie Marie,https://biolit.fr/wp-content/uploads/jet-form-builder/b7faf25ee00f966f7bc1801df8dedb04/2025/04/20250412_152615-scaled.jpg,04/12/2025,15.0000000,17.0000000,41.9071520000000,8.63232800000000,,Plage Moorea,90482,Observation #90482,https://biolit.fr/observations/observation-90482/,Phalacrocorax aristotelis,Cormoran huppé,,https://biolit.fr/wp-content/uploads/jet-form-builder/b7faf25ee00f966f7bc1801df8dedb04/2025/04/20250412_152615-scaled.jpg,,,Identifiable +N1,90489,Sortie #90489,https://biolit.fr/sorties/sortie-90489/,CarpeDiem,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/04/20250414_104856-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/04/olive-de-posidonie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/04/olive-posidonie-scaled.jpg,4/14/2025 0:00,11.0000000,11.0:45,43.0979610000000,6.16854000000000,,Plage de la Marquise 83400 Hyères,90490,Observation #90490,https://biolit.fr/observations/observation-90490/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/04/20250414_104856-scaled.jpg,,TRUE,Identifiable +N1,90494,Sortie #90494,https://biolit.fr/sorties/sortie-90494/,CarpeDiem,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/04/olive-de-posidonie-2-scaled.jpg,4/14/2025 0:00,11.0000000,11.0:45,43.0978680000000,6.16850100000000,,Plage de la Marquise 83400 Hyères,90495,Observation #90495,https://biolit.fr/observations/observation-90495/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/04/olive-de-posidonie-2-scaled.jpg,,TRUE,Identifiable +N1,90494,Sortie #90494,https://biolit.fr/sorties/sortie-90494/,CarpeDiem,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/04/olive-de-posidonie-2-scaled.jpg,4/14/2025 0:00,11.0000000,11.0:45,43.0978680000000,6.16850100000000,,Plage de la Marquise 83400 Hyères,90512,Observation #90512,https://biolit.fr/observations/observation-90512/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/04/olive-de-posidonie-2-scaled.jpg,,TRUE,Identifiable +N1,90501,Sortie #90501,https://biolit.fr/sorties/sortie-90501/,EXPLORE & PRESERVE E& P,https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_67550209-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_67536897-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_67552257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_168174849-scaled.jpg,04/12/2025,12.0000000,12.0:45,43.0359130000000,6.15267800000000,Explore & Préserve,Badine Sud,90502,Observation #90502,https://biolit.fr/observations/observation-90502/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_67550209-scaled.jpg,,TRUE,Identifiable +N1,90501,Sortie #90501,https://biolit.fr/sorties/sortie-90501/,EXPLORE & PRESERVE E& P,https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_67550209-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_67536897-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_67552257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_168174849-scaled.jpg,04/12/2025,12.0000000,12.0:45,43.0359130000000,6.15267800000000,Explore & Préserve,Badine Sud,90504,Observation #90504,https://biolit.fr/observations/observation-90504/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_67536897-scaled.jpg,,TRUE,Identifiable +N1,90501,Sortie #90501,https://biolit.fr/sorties/sortie-90501/,EXPLORE & PRESERVE E& P,https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_67550209-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_67536897-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_67552257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_168174849-scaled.jpg,04/12/2025,12.0000000,12.0:45,43.0359130000000,6.15267800000000,Explore & Préserve,Badine Sud,90506,Observation #90506,https://biolit.fr/observations/observation-90506/,Larus michahellis,Goéland leucophée,,https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_67552257-scaled.jpg,,,Identifiable +N1,90501,Sortie #90501,https://biolit.fr/sorties/sortie-90501/,EXPLORE & PRESERVE E& P,https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_67550209-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_67536897-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_67552257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_168174849-scaled.jpg,04/12/2025,12.0000000,12.0:45,43.0359130000000,6.15267800000000,Explore & Préserve,Badine Sud,90508,Observation #90508,https://biolit.fr/observations/observation-90508/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_168174849-scaled.jpg,,TRUE,Identifiable +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90582,Observation #90582,https://biolit.fr/observations/observation-90582/,Phymatolithon lenormandii,Algue encroûtante rouge de Lenormand,,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg,,,Ne sais pas +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90584,Observation #90584,https://biolit.fr/observations/observation-90584/,Lanice conchilega,Lanice,,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg,,,Identifiable +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90586,Observation #90586,https://biolit.fr/observations/observation-90586/,Petrolisthes marginatus,Crabe porcelaine rouge à plumeau,,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg,,TRUE,Ne sais pas +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90588,Observation #90588,https://biolit.fr/observations/observation-90588/,Gaidropsarus vulgaris,Motelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg,,TRUE,Identifiable +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90590,Observation #90590,https://biolit.fr/observations/observation-90590/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg,,TRUE,Identifiable +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90592,Observation #90592,https://biolit.fr/observations/observation-90592/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg,,TRUE,Identifiable +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90594,Observation #90594,https://biolit.fr/observations/observation-90594/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg,,TRUE,Ne sais pas +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90596,Observation #90596,https://biolit.fr/observations/observation-90596/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg,,TRUE,Identifiable +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90598,Observation #90598,https://biolit.fr/observations/observation-90598/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg,,TRUE,Identifiable +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90600,Observation #90600,https://biolit.fr/observations/observation-90600/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg,,TRUE,Identifiable +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90602,Observation #90602,https://biolit.fr/observations/observation-90602/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg,,TRUE,Ne sais pas +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90604,Observation #90604,https://biolit.fr/observations/observation-90604/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg,,TRUE,Identifiable +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90606,Observation #90606,https://biolit.fr/observations/observation-90606/,Lepadogaster lepadogaster,Porte-écuelle de Gouan,,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg,,,Identifiable +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90608,Observation #90608,https://biolit.fr/observations/observation-90608/,Ocenebra erinaceus,Ponte de Bigorneau perceur,,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg,,TRUE,Ne sais pas +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90610,Observation #90610,https://biolit.fr/observations/observation-90610/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg,,,Ne sais pas +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90612,Observation #90612,https://biolit.fr/observations/observation-90612/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,,,Ne sais pas +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90614,Observation #90614,https://biolit.fr/observations/observation-90614/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg,,TRUE,Identifiable +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90616,Observation #90616,https://biolit.fr/observations/observation-90616/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg,,,Ne sais pas +N1,90619,Sortie #90619,https://biolit.fr/sorties/sortie-90619/,Moncomble Aurélien,https://biolit.fr/wp-content/uploads/jet-form-builder/ea165c3dcb530d48887c73ef17ff07fc/2025/04/1000027678-scaled.jpg,04/12/2025,9.0:45,11.0000000,43.4825980000000,-1.56868000000000,CPIE Littoral Basque - Euskal Itsasbazterra,,90620,Observation #90620,https://biolit.fr/observations/observation-90620/,Antiopella cristata,Antiopelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/ea165c3dcb530d48887c73ef17ff07fc/2025/04/1000027678-scaled.jpg,,TRUE,Identifiable +N1,90623,Sortie #90623,https://biolit.fr/sorties/sortie-90623/,Moncomble Aurélien,https://biolit.fr/wp-content/uploads/jet-form-builder/ea165c3dcb530d48887c73ef17ff07fc/2025/04/1000027677-scaled.jpg,04/12/2025,9.0:45,11.0000000,43.4826330000000,-1.56875000000000,CPIE Littoral Basque - Euskal Itsasbazterra,Plage du Port vieux,90624,Observation #90624,https://biolit.fr/observations/observation-90624/,Hermaea variopicta,Hermès arlequin,,https://biolit.fr/wp-content/uploads/jet-form-builder/ea165c3dcb530d48887c73ef17ff07fc/2025/04/1000027677-scaled.jpg,,TRUE,Identifiable +N1,90627,Sortie #90627,https://biolit.fr/sorties/sortie-90627/,Moncomble Aurélien,https://biolit.fr/wp-content/uploads/jet-form-builder/ea165c3dcb530d48887c73ef17ff07fc/2025/04/1000027681-scaled.jpg,04/12/2025,9.0:45,11.0000000,43.4829870000000,-1.56841000000000,CPIE Littoral Basque - Euskal Itsasbazterra,Plage du Port vieux,90628,Observation #90628,https://biolit.fr/observations/observation-90628/,Parablennius pilicornis,Blennie pilicorne,,https://biolit.fr/wp-content/uploads/jet-form-builder/ea165c3dcb530d48887c73ef17ff07fc/2025/04/1000027681-scaled.jpg,,TRUE,Identifiable +N1,90641,Sortie #90641,https://biolit.fr/sorties/sortie-90641/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7521-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7518-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7528-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7526-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7524-1-scaled.jpeg,04/01/2025,17.0000000,17.0:45,48.6424360000000,-2.11147800000000,Planète Mer (antenne Dinard),Grande Plage de Saint Lunaire,90652,Observation #90652,https://biolit.fr/observations/observation-90652/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7517-1-scaled.jpeg,,TRUE,Identifiable +N1,90641,Sortie #90641,https://biolit.fr/sorties/sortie-90641/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7521-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7518-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7528-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7526-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7524-1-scaled.jpeg,04/01/2025,17.0000000,17.0:45,48.6424360000000,-2.11147800000000,Planète Mer (antenne Dinard),Grande Plage de Saint Lunaire,90654,Observation #90654,https://biolit.fr/observations/observation-90654/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7522-1-scaled.jpeg,,TRUE,Identifiable +N1,90641,Sortie #90641,https://biolit.fr/sorties/sortie-90641/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7521-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7518-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7528-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7526-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7524-1-scaled.jpeg,04/01/2025,17.0000000,17.0:45,48.6424360000000,-2.11147800000000,Planète Mer (antenne Dinard),Grande Plage de Saint Lunaire,90656,Observation #90656,https://biolit.fr/observations/observation-90656/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7519-1-scaled.jpeg,,TRUE,Identifiable +N1,90641,Sortie #90641,https://biolit.fr/sorties/sortie-90641/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7521-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7518-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7528-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7526-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7524-1-scaled.jpeg,04/01/2025,17.0000000,17.0:45,48.6424360000000,-2.11147800000000,Planète Mer (antenne Dinard),Grande Plage de Saint Lunaire,90658,Observation #90658,https://biolit.fr/observations/observation-90658/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7528-1-scaled.jpeg,,TRUE,Identifiable +N1,90641,Sortie #90641,https://biolit.fr/sorties/sortie-90641/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7521-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7518-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7528-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7526-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7524-1-scaled.jpeg,04/01/2025,17.0000000,17.0:45,48.6424360000000,-2.11147800000000,Planète Mer (antenne Dinard),Grande Plage de Saint Lunaire,90660,Observation #90660,https://biolit.fr/observations/observation-90660/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7532-1-scaled.jpeg,,TRUE,Identifiable +N1,90641,Sortie #90641,https://biolit.fr/sorties/sortie-90641/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7521-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7518-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7528-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7526-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7524-1-scaled.jpeg,04/01/2025,17.0000000,17.0:45,48.6424360000000,-2.11147800000000,Planète Mer (antenne Dinard),Grande Plage de Saint Lunaire,90662,Observation #90662,https://biolit.fr/observations/observation-90662/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7531-1-scaled.jpeg,,TRUE,Identifiable +N1,90641,Sortie #90641,https://biolit.fr/sorties/sortie-90641/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7521-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7518-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7528-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7526-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7524-1-scaled.jpeg,04/01/2025,17.0000000,17.0:45,48.6424360000000,-2.11147800000000,Planète Mer (antenne Dinard),Grande Plage de Saint Lunaire,90664,Observation #90664,https://biolit.fr/observations/observation-90664/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7524-1-scaled.jpeg,,TRUE,Identifiable +N1,90641,Sortie #90641,https://biolit.fr/sorties/sortie-90641/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7521-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7518-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7528-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7526-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7524-1-scaled.jpeg,04/01/2025,17.0000000,17.0:45,48.6424360000000,-2.11147800000000,Planète Mer (antenne Dinard),Grande Plage de Saint Lunaire,90666,Observation #90666,https://biolit.fr/observations/observation-90666/,Watersipora subtorquata,Bryozoaire rouge orange vif à points noirs,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7526-1-scaled.jpeg,,TRUE,Identifiable +N1,90670,Sortie #90670,https://biolit.fr/sorties/sortie-90670/,Boualam Lou,https://biolit.fr/wp-content/uploads/jet-form-builder/ef72ea2930545a0646fddf6ddfeaa07a/2025/04/1000010039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ef72ea2930545a0646fddf6ddfeaa07a/2025/04/1000010036-scaled.jpg,4/15/2025 0:00,15.0000000,17.0000000,43.6204890,4.0026060,,Palavas-les-flots,90671,Observation #90671,https://biolit.fr/observations/observation-90671/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/ef72ea2930545a0646fddf6ddfeaa07a/2025/04/1000010039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ef72ea2930545a0646fddf6ddfeaa07a/2025/04/1000010036-scaled.jpg,,TRUE,Identifiable +N1,90756,Sortie #90756,https://biolit.fr/sorties/sortie-90756/,Thibaut Edouard,https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3095-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3096-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3103-scaled.jpg,4/15/2025 0:00,11.0:32,13.0:33,50.1762390000000,1.57470700000000,,Cap Hornu,90757,Observation #90757,https://biolit.fr/observations/observation-90757/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3095-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3096-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3103-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3100-scaled.jpg,,,Ne sais pas +N1,90813,Sortie #90813,https://biolit.fr/sorties/sortie-90813/,Durix Nathanael,https://biolit.fr/wp-content/uploads/jet-form-builder/a3953dc2fce87e617178ece74630175c/2025/04/IMG_4183-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a3953dc2fce87e617178ece74630175c/2025/04/IMG_4182-scaled.jpeg,4/17/2025 0:00,17.0000000,17.000001,43.3142160000000,3.55347600000000,,Marseillan plage,90814,Observation #90814,https://biolit.fr/observations/observation-90814/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a3953dc2fce87e617178ece74630175c/2025/04/IMG_4182-scaled.jpeg,,TRUE,Identifiable +N1,90822,Sortie #90822,https://biolit.fr/sorties/sortie-90822/,Cadieu Christine,https://biolit.fr/wp-content/uploads/jet-form-builder/a4bb5def20e5f124ae13c9f8cffaba0e/2025/04/IMG_20250414_111156-scaled.jpg,4/14/2025 0:00,11.0:15,11.0000000,41.6708110000000,8.88187100000000,,Propriano,90823,Observation #90823,https://biolit.fr/observations/observation-90823/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a4bb5def20e5f124ae13c9f8cffaba0e/2025/04/IMG_20250414_111156-scaled.jpg,,TRUE, +N1,90829,Sortie #90829,https://biolit.fr/sorties/sortie-90829/,Honnorat Frédéric,https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000026739-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000026738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000026737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000026736-scaled.jpg,4/20/2025 0:00,14.0000000,16.0000000,43.3540710000000,4.7186280000000,,"Plage de la courbe, Salin de Giraud",90830,Observation #90830,https://biolit.fr/observations/observation-90830/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000026737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000026736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000026738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000026739-scaled.jpg,,TRUE,Ne sais pas +N1,90829,Sortie #90829,https://biolit.fr/sorties/sortie-90829/,Honnorat Frédéric,https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000026739-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000026738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000026737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000026736-scaled.jpg,4/20/2025 0:00,14.0000000,16.0000000,43.3540710000000,4.7186280000000,,"Plage de la courbe, Salin de Giraud",90832,Observation #90832,https://biolit.fr/observations/observation-90832/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000026739-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000026738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000026736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000026737-scaled.jpg,,TRUE,Ne sais pas +N1,90882,Sortie #90882,https://biolit.fr/sorties/sortie-90882/,Desjonquères Damien,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1031-scaled.jpg,4/22/2025 0:00,10.0000000,16.0000000,48.8167440000000,-3.37331800000000,,Keriec (22) Commune de Trélévern,90883,Observation #90883,https://biolit.fr/observations/observation-90883/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1029-scaled.jpg,,TRUE,Identifiable +N1,90882,Sortie #90882,https://biolit.fr/sorties/sortie-90882/,Desjonquères Damien,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1031-scaled.jpg,4/22/2025 0:00,10.0000000,16.0000000,48.8167440000000,-3.37331800000000,,Keriec (22) Commune de Trélévern,90885,Observation #90885,https://biolit.fr/observations/observation-90885/,Calyptraea chinensis,Chapeau chinois,,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1012-scaled.jpg,,,Identifiable +N1,90882,Sortie #90882,https://biolit.fr/sorties/sortie-90882/,Desjonquères Damien,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1031-scaled.jpg,4/22/2025 0:00,10.0000000,16.0000000,48.8167440000000,-3.37331800000000,,Keriec (22) Commune de Trélévern,90887,Observation #90887,https://biolit.fr/observations/observation-90887/,Calyptraea chinensis,Chapeau chinois,,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1013-scaled.jpg,,,Identifiable +N1,90882,Sortie #90882,https://biolit.fr/sorties/sortie-90882/,Desjonquères Damien,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1031-scaled.jpg,4/22/2025 0:00,10.0000000,16.0000000,48.8167440000000,-3.37331800000000,,Keriec (22) Commune de Trélévern,90889,Observation #90889,https://biolit.fr/observations/observation-90889/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1023-scaled.jpg,,,Ne sais pas +N1,90882,Sortie #90882,https://biolit.fr/sorties/sortie-90882/,Desjonquères Damien,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1031-scaled.jpg,4/22/2025 0:00,10.0000000,16.0000000,48.8167440000000,-3.37331800000000,,Keriec (22) Commune de Trélévern,90891,Observation #90891,https://biolit.fr/observations/observation-90891/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1025-scaled.jpg,,TRUE,Ne sais pas +N1,90882,Sortie #90882,https://biolit.fr/sorties/sortie-90882/,Desjonquères Damien,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1031-scaled.jpg,4/22/2025 0:00,10.0000000,16.0000000,48.8167440000000,-3.37331800000000,,Keriec (22) Commune de Trélévern,90893,Observation #90893,https://biolit.fr/observations/observation-90893/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1021-scaled.jpg,,,Identifiable +N1,90882,Sortie #90882,https://biolit.fr/sorties/sortie-90882/,Desjonquères Damien,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1031-scaled.jpg,4/22/2025 0:00,10.0000000,16.0000000,48.8167440000000,-3.37331800000000,,Keriec (22) Commune de Trélévern,90895,Observation #90895,https://biolit.fr/observations/observation-90895/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1030-scaled.jpg,,,Ne sais pas +N1,90882,Sortie #90882,https://biolit.fr/sorties/sortie-90882/,Desjonquères Damien,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1031-scaled.jpg,4/22/2025 0:00,10.0000000,16.0000000,48.8167440000000,-3.37331800000000,,Keriec (22) Commune de Trélévern,90897,Observation #90897,https://biolit.fr/observations/observation-90897/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1020-scaled.jpg,,,Ne sais pas +N1,90882,Sortie #90882,https://biolit.fr/sorties/sortie-90882/,Desjonquères Damien,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1031-scaled.jpg,4/22/2025 0:00,10.0000000,16.0000000,48.8167440000000,-3.37331800000000,,Keriec (22) Commune de Trélévern,90899,Observation #90899,https://biolit.fr/observations/observation-90899/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1031-scaled.jpg,,,Ne sais pas +N1,90882,Sortie #90882,https://biolit.fr/sorties/sortie-90882/,Desjonquères Damien,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1031-scaled.jpg,4/22/2025 0:00,10.0000000,16.0000000,48.8167440000000,-3.37331800000000,,Keriec (22) Commune de Trélévern,90901,Observation #90901,https://biolit.fr/observations/observation-90901/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1016-scaled.jpg,,,Ne sais pas +N1,90907,Sortie #90907,https://biolit.fr/sorties/sortie-90907/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/04/photos-Michel20250228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/04/michel20250228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/04/Micel202502284-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/04/20250228_115130-scaled.jpg,2/28/2025 0:00,11.0:15,12.0:55,48.7424280,-3.2964570,E.T.A.P.E.S,Beg Hent,,,,,,,,,, +N1,90910,Sortie #90910,https://biolit.fr/sorties/sortie-90910/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/04/Michel202502285-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/04/Micel202502286-scaled.jpg,2/28/2025 0:00,11.0:15,12.0:55,48.7424280,-3.2964570,E.T.A.P.E.S,Beg Hent,,,,,,,,,, +N1,90917,Sortie #90917,https://biolit.fr/sorties/sortie-90917/,D. Lenig,https://biolit.fr/wp-content/uploads/jet-form-builder/949e03b8cf20259b48abc1530143e58d/2025/04/17454138326431451461540210636885-scaled.jpg,4/23/2025 0:00,1.000005,15.000005,47.7702360000000,-3.60568500000000,,M,,,,,,,,,, +N1,90938,Sortie #90938,https://biolit.fr/sorties/sortie-90938/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/04/os-de-seiche-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/04/algue-rouge-sp-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/04/ponte-natice-scaled.jpg,04/11/2025,9.0000000,11.0000000,43.77577,-1.41867,Centre de la mer,plage Océane de Soustons,90939,Observation #90939,https://biolit.fr/observations/observation-90939/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/04/os-de-seiche-commune-scaled.jpg,,TRUE,Identifiable +N1,90938,Sortie #90938,https://biolit.fr/sorties/sortie-90938/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/04/os-de-seiche-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/04/algue-rouge-sp-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/04/ponte-natice-scaled.jpg,04/11/2025,9.0000000,11.0000000,43.77577,-1.41867,Centre de la mer,plage Océane de Soustons,90941,Observation #90941,https://biolit.fr/observations/observation-90941/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/04/ponte-natice-scaled.jpg,,TRUE,Identifiable +N1,90938,Sortie #90938,https://biolit.fr/sorties/sortie-90938/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/04/os-de-seiche-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/04/algue-rouge-sp-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/04/ponte-natice-scaled.jpg,04/11/2025,9.0000000,11.0000000,43.77577,-1.41867,Centre de la mer,plage Océane de Soustons,90943,Observation #90943,https://biolit.fr/observations/observation-90943/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/04/algue-rouge-sp-scaled.jpg,,,non-identifiable +N1,90950,Sortie #90950,https://biolit.fr/sorties/sortie-90950/,Honnorat Frédéric,https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000027146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000027144-scaled.jpg,4/23/2025 0:00,16.0000000,16.0000000,43.3012380,3.538353,,Marseillan plage,90951,Observation #90951,https://biolit.fr/observations/observation-90951/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000027146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000027144-scaled.jpg,,TRUE,Ne sais pas +N1,90950,Sortie #90950,https://biolit.fr/sorties/sortie-90950/,Honnorat Frédéric,https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000027146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000027144-scaled.jpg,4/23/2025 0:00,16.0000000,16.0000000,43.3012380,3.538353,,Marseillan plage,90953,Observation #90953,https://biolit.fr/observations/observation-90953/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000027146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000027144-scaled.jpg,,TRUE,Ne sais pas +N1,90956,Sortie #90956,https://biolit.fr/sorties/sortie-90956/,barrera Felix,https://biolit.fr/wp-content/uploads/jet-form-builder/5d9e9f2448db1d798b280018d67689de/2025/04/RIVAGE-roseaux-seuls-Photoroom.png,4/24/2025 0:00,11.0:17,11.0:23,42.6361210000000,3.02330000000000,,,,,,,,,,,, +N1,91021,Sortie #91021,https://biolit.fr/sorties/sortie-91021/,SV,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6264-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6266.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6269-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6271-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6274-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6277-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6280.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6281.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6298.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6258-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6260-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6261-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6264-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6267-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6270-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6273-scaled.jpg,4/25/2025 0:00,14.0000000,17.0000000,42.3608280000000,3.16283400000000,Planète Mer,Plage du Cau del Llop,91022,Observation #91022,https://biolit.fr/observations/observation-91022/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6264-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6266.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6269-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6271-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6274-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6277-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6280.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6261-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6260-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6273-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6258-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6298.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6270-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6267-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6281.jpg,,,Ne sais pas +N1,91036,Sortie #91036,https://biolit.fr/sorties/sortie-91036/,SV,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6280-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6278-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6279-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6282-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6284-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6287-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6290-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6291-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6292-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6295-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6296-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6297-scaled.jpg,4/25/2025 0:00,14.0000000,17.0000000,43.2526130000000,3.30653100000000,Planète Mer,Plage du Cau del Llop,91037,Observation #91037,https://biolit.fr/observations/observation-91037/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6280-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6291-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6278-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6292-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6295-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6296-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6297-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6290-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6287-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6284-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6282-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6279-scaled.jpg,,,Ne sais pas +N1,91036,Sortie #91036,https://biolit.fr/sorties/sortie-91036/,SV,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6280-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6278-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6279-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6282-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6284-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6287-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6290-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6291-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6292-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6295-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6296-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6297-scaled.jpg,4/25/2025 0:00,14.0000000,17.0000000,43.2526130000000,3.30653100000000,Planète Mer,Plage du Cau del Llop,91039,Observation #91039,https://biolit.fr/observations/observation-91039/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6280-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6291-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6292-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6278-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6279-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6295-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6296-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6297-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6284-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6282-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6287-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6290-scaled.jpg,,,Ne sais pas +N1,91043,Sortie #91043,https://biolit.fr/sorties/sortie-91043/,Carré Loïc,https://biolit.fr/wp-content/uploads/jet-form-builder/beabb9a9809b2788339b454e67dc391b/2025/04/20250330_152428.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/beabb9a9809b2788339b454e67dc391b/2025/04/20250330_152440.jpeg,3/31/2025 0:00,16.0000000,16.000005,48.6383330000000,-2.16121700000000,Saint Jacut Environnement,Île agot,91044,Observation #91044,https://biolit.fr/observations/observation-91044/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/beabb9a9809b2788339b454e67dc391b/2025/04/20250330_152428.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/beabb9a9809b2788339b454e67dc391b/2025/04/20250330_152440.jpeg,,,Ne sais pas +N1,91062,Sortie #91062,https://biolit.fr/sorties/sortie-91062/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Gibbule-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_Collecte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Bigorneau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Gibbule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Collecte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_A-Identifier.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_Gibbule-commune.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q4_N_quadrat-scaled.jpg,4/27/2025 0:00,14.0000000,15.0000000,48.6234750000000,-2.19996900000000,Saint Jacut Environnement,La Nellière - Ile Ebihens,91063,Observation #91063,https://biolit.fr/observations/observation-91063/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_A-identifier-scaled.jpg,,,non-identifiable +N1,91062,Sortie #91062,https://biolit.fr/sorties/sortie-91062/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Gibbule-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_Collecte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Bigorneau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Gibbule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Collecte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_A-Identifier.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_Gibbule-commune.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q4_N_quadrat-scaled.jpg,4/27/2025 0:00,14.0000000,15.0000000,48.6234750000000,-2.19996900000000,Saint Jacut Environnement,La Nellière - Ile Ebihens,91065,Observation #91065,https://biolit.fr/observations/observation-91065/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Bigorneau-scaled.jpg,,TRUE,Identifiable +N1,91062,Sortie #91062,https://biolit.fr/sorties/sortie-91062/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Gibbule-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_Collecte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Bigorneau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Gibbule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Collecte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_A-Identifier.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_Gibbule-commune.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q4_N_quadrat-scaled.jpg,4/27/2025 0:00,14.0000000,15.0000000,48.6234750000000,-2.19996900000000,Saint Jacut Environnement,La Nellière - Ile Ebihens,91067,Observation #91067,https://biolit.fr/observations/observation-91067/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Gibbule-commune-scaled.jpg,,TRUE,Identifiable +N1,91062,Sortie #91062,https://biolit.fr/sorties/sortie-91062/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Gibbule-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_Collecte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Bigorneau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Gibbule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Collecte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_A-Identifier.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_Gibbule-commune.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q4_N_quadrat-scaled.jpg,4/27/2025 0:00,14.0000000,15.0000000,48.6234750000000,-2.19996900000000,Saint Jacut Environnement,La Nellière - Ile Ebihens,91069,Observation #91069,https://biolit.fr/observations/observation-91069/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_A-identifier-scaled.jpg,,,non-identifiable +N1,91062,Sortie #91062,https://biolit.fr/sorties/sortie-91062/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Gibbule-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_Collecte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Bigorneau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Gibbule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Collecte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_A-Identifier.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_Gibbule-commune.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q4_N_quadrat-scaled.jpg,4/27/2025 0:00,14.0000000,15.0000000,48.6234750000000,-2.19996900000000,Saint Jacut Environnement,La Nellière - Ile Ebihens,91071,Observation #91071,https://biolit.fr/observations/observation-91071/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Bigorneau.jpg,,TRUE,Identifiable +N1,91062,Sortie #91062,https://biolit.fr/sorties/sortie-91062/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Gibbule-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_Collecte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Bigorneau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Gibbule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Collecte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_A-Identifier.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_Gibbule-commune.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q4_N_quadrat-scaled.jpg,4/27/2025 0:00,14.0000000,15.0000000,48.6234750000000,-2.19996900000000,Saint Jacut Environnement,La Nellière - Ile Ebihens,91073,Observation #91073,https://biolit.fr/observations/observation-91073/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Gibbule.jpg,,,Identifiable +N1,91062,Sortie #91062,https://biolit.fr/sorties/sortie-91062/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Gibbule-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_Collecte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Bigorneau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Gibbule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Collecte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_A-Identifier.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_Gibbule-commune.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q4_N_quadrat-scaled.jpg,4/27/2025 0:00,14.0000000,15.0000000,48.6234750000000,-2.19996900000000,Saint Jacut Environnement,La Nellière - Ile Ebihens,91075,Observation #91075,https://biolit.fr/observations/observation-91075/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Praire.jpg,,,Identifiable +N1,91062,Sortie #91062,https://biolit.fr/sorties/sortie-91062/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Gibbule-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_Collecte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Bigorneau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Gibbule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Collecte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_A-Identifier.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_Gibbule-commune.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q4_N_quadrat-scaled.jpg,4/27/2025 0:00,14.0000000,15.0000000,48.6234750000000,-2.19996900000000,Saint Jacut Environnement,La Nellière - Ile Ebihens,91077,Observation #91077,https://biolit.fr/observations/observation-91077/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Pourpre-scaled.jpg,,TRUE,Identifiable +N1,91062,Sortie #91062,https://biolit.fr/sorties/sortie-91062/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Gibbule-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_Collecte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Bigorneau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Gibbule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Collecte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_A-Identifier.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_Gibbule-commune.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q4_N_quadrat-scaled.jpg,4/27/2025 0:00,14.0000000,15.0000000,48.6234750000000,-2.19996900000000,Saint Jacut Environnement,La Nellière - Ile Ebihens,91079,Observation #91079,https://biolit.fr/observations/observation-91079/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_A-Identifier.jpg,,,non-identifiable +N1,91062,Sortie #91062,https://biolit.fr/sorties/sortie-91062/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Gibbule-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_Collecte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Bigorneau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Gibbule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Collecte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_A-Identifier.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_Gibbule-commune.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q4_N_quadrat-scaled.jpg,4/27/2025 0:00,14.0000000,15.0000000,48.6234750000000,-2.19996900000000,Saint Jacut Environnement,La Nellière - Ile Ebihens,91081,Observation #91081,https://biolit.fr/observations/observation-91081/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_Gibbule-commune.jpg,,,Identifiable +N1,91202,Sortie #91202,https://biolit.fr/sorties/sortie-91202/,GOBERT Evelyne,https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_142725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_143113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_143401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144204-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_1452212-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145609-scaled.jpg,4/15/2025 0:00,14.0:15,16.0:15,49.9026120,1.053154,,Pourville sur Mer,91209,Observation #91209,https://biolit.fr/observations/observation-91209/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_143113-scaled.jpg,,,Identifiable +N1,91202,Sortie #91202,https://biolit.fr/sorties/sortie-91202/,GOBERT Evelyne,https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_142725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_143113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_143401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144204-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_1452212-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145609-scaled.jpg,4/15/2025 0:00,14.0:15,16.0:15,49.9026120,1.053154,,Pourville sur Mer,91211,Observation #91211,https://biolit.fr/observations/observation-91211/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144204-scaled.jpg,,TRUE,Identifiable +N1,91202,Sortie #91202,https://biolit.fr/sorties/sortie-91202/,GOBERT Evelyne,https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_142725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_143113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_143401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144204-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_1452212-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145609-scaled.jpg,4/15/2025 0:00,14.0:15,16.0:15,49.9026120,1.053154,,Pourville sur Mer,91213,Observation #91213,https://biolit.fr/observations/observation-91213/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144104-scaled.jpg,,TRUE,Identifiable +N1,91202,Sortie #91202,https://biolit.fr/sorties/sortie-91202/,GOBERT Evelyne,https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_142725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_143113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_143401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144204-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_1452212-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145609-scaled.jpg,4/15/2025 0:00,14.0:15,16.0:15,49.9026120,1.053154,,Pourville sur Mer,91219,Observation #91219,https://biolit.fr/observations/observation-91219/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145406-scaled.jpg,,TRUE,Identifiable +N1,91202,Sortie #91202,https://biolit.fr/sorties/sortie-91202/,GOBERT Evelyne,https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_142725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_143113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_143401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144204-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_1452212-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145609-scaled.jpg,4/15/2025 0:00,14.0:15,16.0:15,49.9026120,1.053154,,Pourville sur Mer,91221,Observation #91221,https://biolit.fr/observations/observation-91221/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144603-scaled.jpg,,,Identifiable +N1,91202,Sortie #91202,https://biolit.fr/sorties/sortie-91202/,GOBERT Evelyne,https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_142725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_143113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_143401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144204-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_1452212-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145609-scaled.jpg,4/15/2025 0:00,14.0:15,16.0:15,49.9026120,1.053154,,Pourville sur Mer,91223,Observation #91223,https://biolit.fr/observations/observation-91223/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144603-scaled.jpg,,,Identifiable +N1,91202,Sortie #91202,https://biolit.fr/sorties/sortie-91202/,GOBERT Evelyne,https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_142725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_143113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_143401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144204-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_1452212-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145609-scaled.jpg,4/15/2025 0:00,14.0:15,16.0:15,49.9026120,1.053154,,Pourville sur Mer,91225,Observation #91225,https://biolit.fr/observations/observation-91225/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145034-scaled.jpg,,TRUE,Identifiable +N1,91204,Sortie #91204,https://biolit.fr/sorties/sortie-91204/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/04/anemone-verte-plage-du-verger-scaled.jpg,4/27/2025 0:00,15.0000000,16.0000000,48.6962050000000,-1.87946900000000,,Plage du Verger,91205,Observation #91205,https://biolit.fr/observations/observation-91205/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/04/anemone-verte-plage-du-verger-scaled.jpg,,TRUE,Identifiable +N1,91216,Sortie #91216,https://biolit.fr/sorties/sortie-91216/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/04/anemone-de-mer-verte-colori-grisatre-plage-du-verger-scaled.jpg,4/27/2025 0:00,16.0000000,16.0000000,48.6961890000000,-1.87948800000000,,Plage du Verger,91217,Observation #91217,https://biolit.fr/observations/observation-91217/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/04/anemone-de-mer-verte-colori-grisatre-plage-du-verger-scaled.jpg,,TRUE,Identifiable +N1,91380,Sortie #91380,https://biolit.fr/sorties/sortie-91380/,ANTOINE Cyril,https://biolit.fr/wp-content/uploads/jet-form-builder/e1d6bec5e2da533608be3cda9b47ae80/2025/04/1000000402-scaled.jpg,4/29/2025 0:00,17.0:58,22.0:58,39.7957890,3.1210650,,Playa de muro,,,,,,,,,, +N1,91389,Sortie #91389,https://biolit.fr/sorties/sortie-91389/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/04/20250425_111715-rotated.jpg,4/27/2025 0:00,10.0:28,10.0000000,43.25376,5.40672,,Plage de la Pointe Rouge,91390,Observation #91390,https://biolit.fr/observations/observation-91390/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/04/20250425_111715-rotated.jpg,,TRUE,Ne sais pas +N1,91404,Sortie #91404,https://biolit.fr/sorties/sortie-91404/,CHAPELOT PIERRE,https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1531-scaled.jpg,7/19/2024 0:00,15.0000000,17.0000000,43.5522210000000,7.14445000000000,,"Antibes, la garoupe",91405,Observation #91405,https://biolit.fr/observations/observation-91405/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1531-scaled.jpg,,,Identifiable +N1,91411,Sortie #91411,https://biolit.fr/sorties/sortie-91411/,CHAPELOT PIERRE,https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1517-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1523-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1561-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1554-scaled.jpg,7/19/2024 0:00,15.0000000,17.0000000,43.5522210000000,7.14445000000000,,"Antibes, la garoupe",91412,Observation #91412,https://biolit.fr/observations/observation-91412/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1517-scaled.jpg,,,Identifiable +N1,91411,Sortie #91411,https://biolit.fr/sorties/sortie-91411/,CHAPELOT PIERRE,https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1517-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1523-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1561-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1554-scaled.jpg,7/19/2024 0:00,15.0000000,17.0000000,43.5522210000000,7.14445000000000,,"Antibes, la garoupe",91414,Observation #91414,https://biolit.fr/observations/observation-91414/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1554-scaled.jpg,,,Identifiable +N1,91411,Sortie #91411,https://biolit.fr/sorties/sortie-91411/,CHAPELOT PIERRE,https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1517-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1523-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1561-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1554-scaled.jpg,7/19/2024 0:00,15.0000000,17.0000000,43.5522210000000,7.14445000000000,,"Antibes, la garoupe",91416,Observation #91416,https://biolit.fr/observations/observation-91416/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1554-scaled.jpg,,,Identifiable +N1,91411,Sortie #91411,https://biolit.fr/sorties/sortie-91411/,CHAPELOT PIERRE,https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1517-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1523-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1561-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1554-scaled.jpg,7/19/2024 0:00,15.0000000,17.0000000,43.5522210000000,7.14445000000000,,"Antibes, la garoupe",91418,Observation #91418,https://biolit.fr/observations/observation-91418/,Atriplex halimus,Arroche marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1561-scaled.jpg,,,Identifiable +N1,91425,Sortie #91425,https://biolit.fr/sorties/sortie-91425/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Aplysia.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Vers-vert.jpg,4/24/2025 0:00,10.0000000,11.0000000,48.7026050000000,-1.84742000000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,91426,Observation #91426,https://biolit.fr/observations/observation-91426/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Aplysia.jpg,,,Identifiable +N1,91425,Sortie #91425,https://biolit.fr/sorties/sortie-91425/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Aplysia.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Vers-vert.jpg,4/24/2025 0:00,10.0000000,11.0000000,48.7026050000000,-1.84742000000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,91428,Observation #91428,https://biolit.fr/observations/observation-91428/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Vers-vert.jpg,,TRUE,Identifiable +N1,91448,Sortie #91448,https://biolit.fr/sorties/sortie-91448/,CPIE Bastia U Marinu,https://biolit.fr/wp-content/uploads/jet-form-builder/1f5fbe50d5584b4f12c90f576445a323/2025/05/golo-avril-25-scaled.jpg,4/24/2025 0:00,10.0000000,12.0000000,42.5330240000000,9.53354900000000,CPIE Bastia Golo Méditerranée U Marinu,Golo,91449,Observation #91449,https://biolit.fr/observations/observation-91449/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/1f5fbe50d5584b4f12c90f576445a323/2025/05/golo-avril-25-scaled.jpg,,TRUE,Identifiable +N1,91496,Sortie #91496,https://biolit.fr/sorties/sortie-91496/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_155158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_155202-scaled.jpg,4/29/2025 0:00,15.0000000,16.0000000,48.6607830000000,-2.00073500000000,,Plage de la Hoguette,91497,Observation #91497,https://biolit.fr/observations/observation-91497/,Acanthocardia aculeata,Bucarde épineuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154057-scaled.jpg,,,Identifiable +N1,91496,Sortie #91496,https://biolit.fr/sorties/sortie-91496/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_155158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_155202-scaled.jpg,4/29/2025 0:00,15.0000000,16.0000000,48.6607830000000,-2.00073500000000,,Plage de la Hoguette,91499,Observation #91499,https://biolit.fr/observations/observation-91499/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154629-scaled.jpg,,TRUE,Identifiable +N1,91496,Sortie #91496,https://biolit.fr/sorties/sortie-91496/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_155158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_155202-scaled.jpg,4/29/2025 0:00,15.0000000,16.0000000,48.6607830000000,-2.00073500000000,,Plage de la Hoguette,91501,Observation #91501,https://biolit.fr/observations/observation-91501/,Ensis ensis,Couteau-sabre,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_155158-scaled.jpg,,TRUE,Identifiable +N1,91496,Sortie #91496,https://biolit.fr/sorties/sortie-91496/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_155158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_155202-scaled.jpg,4/29/2025 0:00,15.0000000,16.0000000,48.6607830000000,-2.00073500000000,,Plage de la Hoguette,91503,Observation #91503,https://biolit.fr/observations/observation-91503/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_155202-scaled.jpg,,,Identifiable +N1,91525,Sortie #91525,https://biolit.fr/sorties/sortie-91525/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Calliostoma-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Calliostoma-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6577330000000,-1.57280400000000,,Plage de collignon,91526,Observation #91526,https://biolit.fr/observations/observation-91526/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Anemone-indeterminee-2-scaled.jpg,,,Identifiable +N1,91525,Sortie #91525,https://biolit.fr/sorties/sortie-91525/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Calliostoma-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Calliostoma-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6577330000000,-1.57280400000000,,Plage de collignon,91528,Observation #91528,https://biolit.fr/observations/observation-91528/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-6-scaled.jpg,,,Identifiable +N1,91525,Sortie #91525,https://biolit.fr/sorties/sortie-91525/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Calliostoma-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Calliostoma-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6577330000000,-1.57280400000000,,Plage de collignon,91530,Observation #91530,https://biolit.fr/observations/observation-91530/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bernard-lhermite-2-scaled.jpg,,,Identifiable +N1,91525,Sortie #91525,https://biolit.fr/sorties/sortie-91525/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Calliostoma-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Calliostoma-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6577330000000,-1.57280400000000,,Plage de collignon,91532,Observation #91532,https://biolit.fr/observations/observation-91532/,Watersipora subtorquata,Bryozoaire rouge orange vif à points noirs,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-2-scaled.jpg,,,Identifiable +N1,91525,Sortie #91525,https://biolit.fr/sorties/sortie-91525/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Calliostoma-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Calliostoma-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6577330000000,-1.57280400000000,,Plage de collignon,91534,Observation #91534,https://biolit.fr/observations/observation-91534/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-4-scaled.jpg,,,Ne sais pas +N1,91525,Sortie #91525,https://biolit.fr/sorties/sortie-91525/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Calliostoma-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Calliostoma-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6577330000000,-1.57280400000000,,Plage de collignon,91536,Observation #91536,https://biolit.fr/observations/observation-91536/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Calliostoma-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Calliostoma-2-scaled.jpg,,TRUE,Identifiable +N1,91553,Sortie #91553,https://biolit.fr/sorties/sortie-91553/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_151556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_152143-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575480000000,-1.57177400000000,,Plage de collignon,91554,Observation #91554,https://biolit.fr/observations/observation-91554/,Elysia viridis,Elysie verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-2-scaled.jpg,,,Identifiable +N1,91553,Sortie #91553,https://biolit.fr/sorties/sortie-91553/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_151556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_152143-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575480000000,-1.57177400000000,,Plage de collignon,91556,Observation #91556,https://biolit.fr/observations/observation-91556/,Aeolidia papillosa,Eolis à papilles,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-3-scaled.jpg,,,Identifiable +N1,91553,Sortie #91553,https://biolit.fr/sorties/sortie-91553/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_151556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_152143-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575480000000,-1.57177400000000,,Plage de collignon,91558,Observation #91558,https://biolit.fr/observations/observation-91558/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_152143-scaled.jpg,,,Identifiable +N1,91553,Sortie #91553,https://biolit.fr/sorties/sortie-91553/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_151556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_152143-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575480000000,-1.57177400000000,,Plage de collignon,91560,Observation #91560,https://biolit.fr/observations/observation-91560/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-mie-de-pain-scaled.jpg,,,Identifiable +N1,91553,Sortie #91553,https://biolit.fr/sorties/sortie-91553/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_151556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_152143-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575480000000,-1.57177400000000,,Plage de collignon,91562,Observation #91562,https://biolit.fr/observations/observation-91562/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-orange-scaled.jpg,,,Identifiable +N1,91553,Sortie #91553,https://biolit.fr/sorties/sortie-91553/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_151556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_152143-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575480000000,-1.57177400000000,,Plage de collignon,91564,Observation #91564,https://biolit.fr/observations/observation-91564/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-scaled.jpg,,,Identifiable +N1,91553,Sortie #91553,https://biolit.fr/sorties/sortie-91553/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_151556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_152143-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575480000000,-1.57177400000000,,Plage de collignon,91566,Observation #91566,https://biolit.fr/observations/observation-91566/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-2-scaled.jpg,,TRUE,Identifiable +N1,91553,Sortie #91553,https://biolit.fr/sorties/sortie-91553/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_151556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_152143-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575480000000,-1.57177400000000,,Plage de collignon,91568,Observation #91568,https://biolit.fr/observations/observation-91568/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Gobie-scaled.jpg,,,Identifiable +N1,91553,Sortie #91553,https://biolit.fr/sorties/sortie-91553/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_151556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_152143-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575480000000,-1.57177400000000,,Plage de collignon,91570,Observation #91570,https://biolit.fr/observations/observation-91570/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Gobie-scaled.jpg,,,Identifiable +N1,91553,Sortie #91553,https://biolit.fr/sorties/sortie-91553/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_151556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_152143-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575480000000,-1.57177400000000,,Plage de collignon,91572,Observation #91572,https://biolit.fr/observations/observation-91572/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_151556-scaled.jpg,,,Ne sais pas +N1,91592,Sortie #91592,https://biolit.fr/sorties/sortie-91592/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150449-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150841-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_151021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_151023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Sabelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Sabelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-3-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575740000000,-1.57198900000000,,Plage de collignon,91593,Observation #91593,https://biolit.fr/observations/observation-91593/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150449-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150452-scaled.jpg,,,Ne sais pas +N1,91592,Sortie #91592,https://biolit.fr/sorties/sortie-91592/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150449-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150841-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_151021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_151023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Sabelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Sabelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-3-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575740000000,-1.57198900000000,,Plage de collignon,91595,Observation #91595,https://biolit.fr/observations/observation-91595/,Elysia viridis,Elysie verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150841-scaled.jpg,,,Identifiable +N1,91592,Sortie #91592,https://biolit.fr/sorties/sortie-91592/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150449-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150841-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_151021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_151023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Sabelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Sabelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-3-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575740000000,-1.57198900000000,,Plage de collignon,91597,Observation #91597,https://biolit.fr/observations/observation-91597/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_151021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_151023-scaled.jpg,,TRUE,Identifiable +N1,91592,Sortie #91592,https://biolit.fr/sorties/sortie-91592/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150449-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150841-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_151021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_151023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Sabelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Sabelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-3-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575740000000,-1.57198900000000,,Plage de collignon,91599,Observation #91599,https://biolit.fr/observations/observation-91599/,Lepadogaster candolii,Porte-écuelle de Candolle,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-4-scaled.jpg,,,Identifiable +N1,91592,Sortie #91592,https://biolit.fr/sorties/sortie-91592/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150449-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150841-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_151021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_151023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Sabelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Sabelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-3-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575740000000,-1.57198900000000,,Plage de collignon,91601,Observation #91601,https://biolit.fr/observations/observation-91601/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-3-scaled.jpg,,,Identifiable +N1,91592,Sortie #91592,https://biolit.fr/sorties/sortie-91592/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150449-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150841-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_151021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_151023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Sabelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Sabelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-3-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575740000000,-1.57198900000000,,Plage de collignon,91603,Observation #91603,https://biolit.fr/observations/observation-91603/,Sabella pavonina,Sabelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Sabelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Sabelle-2-scaled.jpg,,,Identifiable +N1,91592,Sortie #91592,https://biolit.fr/sorties/sortie-91592/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150449-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150841-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_151021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_151023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Sabelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Sabelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-3-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575740000000,-1.57198900000000,,Plage de collignon,91605,Observation #91605,https://biolit.fr/observations/observation-91605/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-3-scaled.jpg,,,Identifiable +N1,91670,Sortie #91670,https://biolit.fr/sorties/sortie-91670/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/cd6074e82695631e6cb675ce44b100a8/2025/05/1000017969-scaled.jpg,05/05/2025,8.0000000,8.0:45,43.2531830000000,5.37430300000000,,Plage du prado,91671,Observation #91671,https://biolit.fr/observations/observation-91671/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/cd6074e82695631e6cb675ce44b100a8/2025/05/1000017969-scaled.jpg,,TRUE,Identifiable +N1,91831,Sortie #91831,https://biolit.fr/sorties/sortie-91831/,Parigot Franck,https://biolit.fr/wp-content/uploads/jet-form-builder/3a6d97bc20f2c7efc9f69da7dba5e80e/2025/05/20250503_164335-scaled.jpg,05/03/2025,15.0000000,18.0000000,43.531716,5.038763,,"La petite camargue, Saint Chamas",,,,,,,,,, +N1,91833,Sortie #91833,https://biolit.fr/sorties/sortie-91833/,Parigot Franck,https://biolit.fr/wp-content/uploads/jet-form-builder/3a6d97bc20f2c7efc9f69da7dba5e80e/2025/05/20250503_164335-1-scaled.jpg,05/03/2025,15.0000000,18.0000000,43.5329700000000,5.03800400000000,,"La petite camargue, Saint Chamas",91834,Observation #91834,https://biolit.fr/observations/observation-91834/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3a6d97bc20f2c7efc9f69da7dba5e80e/2025/05/20250503_164335-1-scaled.jpg,,,Ne sais pas +N1,91848,Sortie #91848,https://biolit.fr/sorties/sortie-91848/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Calliostoma-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Chiton.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Galathee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG_20250430_165815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ormeau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Seau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-scaled.jpg,4/29/2025 0:00,15.0000000,16.0000000,48.7040830000000,-1.84444800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,91883,Observation #91883,https://biolit.fr/observations/observation-91883/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-scaled.jpg,,,Identifiable +N1,91848,Sortie #91848,https://biolit.fr/sorties/sortie-91848/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Calliostoma-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Chiton.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Galathee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG_20250430_165815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ormeau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Seau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-scaled.jpg,4/29/2025 0:00,15.0000000,16.0000000,48.7040830000000,-1.84444800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,91885,Observation #91885,https://biolit.fr/observations/observation-91885/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-scaled.jpg,,,Identifiable +N1,91848,Sortie #91848,https://biolit.fr/sorties/sortie-91848/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Calliostoma-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Chiton.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Galathee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG_20250430_165815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ormeau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Seau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-scaled.jpg,4/29/2025 0:00,15.0000000,16.0000000,48.7040830000000,-1.84444800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,91887,Observation #91887,https://biolit.fr/observations/observation-91887/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Calliostoma-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-scaled.jpg,,TRUE,Identifiable +N1,91848,Sortie #91848,https://biolit.fr/sorties/sortie-91848/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Calliostoma-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Chiton.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Galathee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG_20250430_165815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ormeau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Seau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-scaled.jpg,4/29/2025 0:00,15.0000000,16.0000000,48.7040830000000,-1.84444800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,91889,Observation #91889,https://biolit.fr/observations/observation-91889/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Chiton.jpg,,,Identifiable +N1,91848,Sortie #91848,https://biolit.fr/sorties/sortie-91848/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Calliostoma-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Chiton.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Galathee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG_20250430_165815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ormeau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Seau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-scaled.jpg,4/29/2025 0:00,15.0000000,16.0000000,48.7040830000000,-1.84444800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,91891,Observation #91891,https://biolit.fr/observations/observation-91891/,Crangon crangon,Crevette grise européenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-grise-scaled.jpg,,,Identifiable +N1,91848,Sortie #91848,https://biolit.fr/sorties/sortie-91848/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Calliostoma-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Chiton.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Galathee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG_20250430_165815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ormeau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Seau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-scaled.jpg,4/29/2025 0:00,15.0000000,16.0000000,48.7040830000000,-1.84444800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,91893,Observation #91893,https://biolit.fr/observations/observation-91893/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Galathee-scaled.jpg,,,Identifiable +N1,91848,Sortie #91848,https://biolit.fr/sorties/sortie-91848/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Calliostoma-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Chiton.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Galathee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG_20250430_165815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ormeau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Seau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-scaled.jpg,4/29/2025 0:00,15.0000000,16.0000000,48.7040830000000,-1.84444800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,91895,Observation #91895,https://biolit.fr/observations/observation-91895/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG_20250430_165815-scaled.jpg,,,Identifiable +N1,91848,Sortie #91848,https://biolit.fr/sorties/sortie-91848/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Calliostoma-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Chiton.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Galathee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG_20250430_165815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ormeau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Seau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-scaled.jpg,4/29/2025 0:00,15.0000000,16.0000000,48.7040830000000,-1.84444800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,91897,Observation #91897,https://biolit.fr/observations/observation-91897/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG_20250430_165815-scaled.jpg,,,Identifiable +N1,91848,Sortie #91848,https://biolit.fr/sorties/sortie-91848/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Calliostoma-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Chiton.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Galathee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG_20250430_165815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ormeau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Seau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-scaled.jpg,4/29/2025 0:00,15.0000000,16.0000000,48.7040830000000,-1.84444800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,91899,Observation #91899,https://biolit.fr/observations/observation-91899/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ormeau.jpg,,TRUE,Identifiable +N1,91848,Sortie #91848,https://biolit.fr/sorties/sortie-91848/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Calliostoma-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Chiton.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Galathee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG_20250430_165815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ormeau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Seau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-scaled.jpg,4/29/2025 0:00,15.0000000,16.0000000,48.7040830000000,-1.84444800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,91901,Observation #91901,https://biolit.fr/observations/observation-91901/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Petoncle.jpg,,,Identifiable +N1,91848,Sortie #91848,https://biolit.fr/sorties/sortie-91848/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Calliostoma-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Chiton.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Galathee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG_20250430_165815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ormeau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Seau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-scaled.jpg,4/29/2025 0:00,15.0000000,16.0000000,48.7040830000000,-1.84444800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,91903,Observation #91903,https://biolit.fr/observations/observation-91903/,Nerophis ophidion,Nérophis ophidion,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Seau.jpg,,,Identifiable +N1,91864,Sortie #91864,https://biolit.fr/sorties/sortie-91864/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0158.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0160.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0162.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0164.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0165.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0166.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0167.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0168.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0171.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0173.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0178.jpg,05/02/2025,10.0000000,11.0000000,47.5239530000000,-3.12913500000000,,Plage de Kéraude,91865,Observation #91865,https://biolit.fr/observations/observation-91865/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0158.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0160.jpg,,TRUE,Identifiable +N1,91864,Sortie #91864,https://biolit.fr/sorties/sortie-91864/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0158.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0160.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0162.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0164.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0165.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0166.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0167.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0168.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0171.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0173.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0178.jpg,05/02/2025,10.0000000,11.0000000,47.5239530000000,-3.12913500000000,,Plage de Kéraude,91867,Observation #91867,https://biolit.fr/observations/observation-91867/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0161.jpg,,TRUE,Identifiable +N1,91864,Sortie #91864,https://biolit.fr/sorties/sortie-91864/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0158.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0160.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0162.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0164.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0165.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0166.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0167.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0168.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0171.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0173.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0178.jpg,05/02/2025,10.0000000,11.0000000,47.5239530000000,-3.12913500000000,,Plage de Kéraude,91869,Observation #91869,https://biolit.fr/observations/observation-91869/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0171.jpg,,,Identifiable +N1,91864,Sortie #91864,https://biolit.fr/sorties/sortie-91864/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0158.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0160.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0162.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0164.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0165.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0166.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0167.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0168.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0171.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0173.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0178.jpg,05/02/2025,10.0000000,11.0000000,47.5239530000000,-3.12913500000000,,Plage de Kéraude,91871,Observation #91871,https://biolit.fr/observations/observation-91871/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0166.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0172.jpg,,TRUE,Identifiable +N1,91864,Sortie #91864,https://biolit.fr/sorties/sortie-91864/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0158.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0160.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0162.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0164.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0165.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0166.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0167.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0168.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0171.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0173.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0178.jpg,05/02/2025,10.0000000,11.0000000,47.5239530000000,-3.12913500000000,,Plage de Kéraude,91873,Observation #91873,https://biolit.fr/observations/observation-91873/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0173.jpg,,TRUE,Ne sais pas +N1,91864,Sortie #91864,https://biolit.fr/sorties/sortie-91864/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0158.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0160.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0162.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0164.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0165.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0166.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0167.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0168.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0171.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0173.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0178.jpg,05/02/2025,10.0000000,11.0000000,47.5239530000000,-3.12913500000000,,Plage de Kéraude,91875,Observation #91875,https://biolit.fr/observations/observation-91875/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0168.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0178.jpg,,,Ne sais pas +N1,91864,Sortie #91864,https://biolit.fr/sorties/sortie-91864/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0158.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0160.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0162.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0164.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0165.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0166.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0167.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0168.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0171.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0173.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0178.jpg,05/02/2025,10.0000000,11.0000000,47.5239530000000,-3.12913500000000,,Plage de Kéraude,91877,Observation #91877,https://biolit.fr/observations/observation-91877/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0167.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0165.jpg,,, +N1,91864,Sortie #91864,https://biolit.fr/sorties/sortie-91864/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0158.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0160.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0162.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0164.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0165.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0166.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0167.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0168.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0171.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0173.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0178.jpg,05/02/2025,10.0000000,11.0000000,47.5239530000000,-3.12913500000000,,Plage de Kéraude,91879,Observation #91879,https://biolit.fr/observations/observation-91879/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0176.jpg,,,Identifiable +N1,91864,Sortie #91864,https://biolit.fr/sorties/sortie-91864/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0158.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0160.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0162.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0164.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0165.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0166.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0167.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0168.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0171.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0173.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0178.jpg,05/02/2025,10.0000000,11.0000000,47.5239530000000,-3.12913500000000,,Plage de Kéraude,91881,Observation #91881,https://biolit.fr/observations/observation-91881/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0162.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0164.jpg,,TRUE,Ne sais pas +N1,91920,Sortie #91920,https://biolit.fr/sorties/sortie-91920/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG_7112-scaled.jpeg,05/06/2025,14.0:31,15.0:32,43.2733620000000,5.3617250000000,Planète Mer,Plage du prophète,,,,,,,,,, +N1,91927,Sortie #91927,https://biolit.fr/sorties/sortie-91927/,Rouimi Célia,https://biolit.fr/wp-content/uploads/jet-form-builder/a8f91100d8789712a85f96332d86c6e0/2025/05/1000043731-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a8f91100d8789712a85f96332d86c6e0/2025/05/1000043732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a8f91100d8789712a85f96332d86c6e0/2025/05/1000043733-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a8f91100d8789712a85f96332d86c6e0/2025/05/1000043734-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a8f91100d8789712a85f96332d86c6e0/2025/05/1000043735-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a8f91100d8789712a85f96332d86c6e0/2025/05/1000043736-scaled.jpg,05/06/2025,14.0000000,15.000005,43.2735110,5.3621710,Planète Mer,Plage du Prophète,,,,,,,,,, +N1,91932,Sortie #91932,https://biolit.fr/sorties/sortie-91932/,Nathan Moru,https://biolit.fr/wp-content/uploads/jet-form-builder/77f681fb61a341d321fd84bb69f4ab91/2025/05/1000032672-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/77f681fb61a341d321fd84bb69f4ab91/2025/05/1000032676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/77f681fb61a341d321fd84bb69f4ab91/2025/05/1000032674-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/77f681fb61a341d321fd84bb69f4ab91/2025/05/1000032670.jpg,05/06/2025,14.0000000,15.0:15,43.2732170,5.3619320,Planète Mer,Plage du prophete,91933,Observation #91933,https://biolit.fr/observations/observation-91933/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/77f681fb61a341d321fd84bb69f4ab91/2025/05/1000032674-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/77f681fb61a341d321fd84bb69f4ab91/2025/05/1000032672-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/77f681fb61a341d321fd84bb69f4ab91/2025/05/1000032670.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/77f681fb61a341d321fd84bb69f4ab91/2025/05/1000032676-scaled.jpg,,,Ne sais pas +N1,91946,Sortie #91946,https://biolit.fr/sorties/sortie-91946/,RAIMBAUD Axelle,https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7797-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7798-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7799-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7800-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7801-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7802-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7803-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7804-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7805-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7806-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7807-scaled.jpeg,05/06/2025,14.0000000,16.0000000,43.2731660000000,5.36203600000000,Planète Mer,Plage du prophète,91947,Observation #91947,https://biolit.fr/observations/observation-91947/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7807-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7805-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7806-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7804-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7803-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7801-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7802-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7799-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7797-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7798-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7800-scaled.jpeg,,,Ne sais pas +N1,91954,Sortie #91954,https://biolit.fr/sorties/sortie-91954/,Gresçu swann,https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/92C6CBBB-7BA1-4475-8CF1-57E334BBF4F9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0365-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0364-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0363-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0362-scaled.jpeg,3/23/2025 0:00,10.0:45,12.0000000,47.8831380000000,-4.36043500000000,,Plage de Tréguennec,91955,Observation #91955,https://biolit.fr/observations/observation-91955/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0365-scaled.jpeg,,TRUE,Identifiable +N1,91954,Sortie #91954,https://biolit.fr/sorties/sortie-91954/,Gresçu swann,https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/92C6CBBB-7BA1-4475-8CF1-57E334BBF4F9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0365-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0364-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0363-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0362-scaled.jpeg,3/23/2025 0:00,10.0:45,12.0000000,47.8831380000000,-4.36043500000000,,Plage de Tréguennec,91957,Observation #91957,https://biolit.fr/observations/observation-91957/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0363-scaled.jpeg,,,Identifiable +N1,91954,Sortie #91954,https://biolit.fr/sorties/sortie-91954/,Gresçu swann,https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/92C6CBBB-7BA1-4475-8CF1-57E334BBF4F9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0365-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0364-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0363-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0362-scaled.jpeg,3/23/2025 0:00,10.0:45,12.0000000,47.8831380000000,-4.36043500000000,,Plage de Tréguennec,91959,Observation #91959,https://biolit.fr/observations/observation-91959/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/92C6CBBB-7BA1-4475-8CF1-57E334BBF4F9.jpeg,,TRUE,Ne sais pas +N1,91954,Sortie #91954,https://biolit.fr/sorties/sortie-91954/,Gresçu swann,https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/92C6CBBB-7BA1-4475-8CF1-57E334BBF4F9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0365-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0364-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0363-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0362-scaled.jpeg,3/23/2025 0:00,10.0:45,12.0000000,47.8831380000000,-4.36043500000000,,Plage de Tréguennec,91961,Observation #91961,https://biolit.fr/observations/observation-91961/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0362-scaled.jpeg,,,Ne sais pas +N1,91964,Sortie #91964,https://biolit.fr/sorties/sortie-91964/,Gresçu swann,https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0364-1.jpeg,3/23/2025 0:00,10.0:46,12.0000000,47.8828460000000,-4.36019900000000,,Plage de tréguennec,91965,Observation #91965,https://biolit.fr/observations/observation-91965/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0364-1.jpeg,,,Identifiable +N1,91968,Sortie #91968,https://biolit.fr/sorties/sortie-91968/,Deydier Julia,https://biolit.fr/wp-content/uploads/jet-form-builder/db4944bcf7eea81d309bef0f2e142930/2025/05/posidonie.jpeg,1/20/2025 0:00,10.0000000,12.0000000,43.3579740000000,5.2913760000000,,Plage de Corbières,91969,Observation #91969,https://biolit.fr/observations/observation-91969/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/db4944bcf7eea81d309bef0f2e142930/2025/05/posidonie.jpeg,,TRUE,Identifiable +N1,91974,Sortie #91974,https://biolit.fr/sorties/sortie-91974/,Bonnet Pacome,https://biolit.fr/wp-content/uploads/jet-form-builder/c801b17f1f1ed4fa20688b529a2f1f83/2025/05/IMG_1402-scaled.jpeg,05/03/2025,10.000005,12.000005,46.6643410000000,-1.93084700000000,Association Hirondelle,,,,,,,,,,, +N1,91995,Sortie #91995,https://biolit.fr/sorties/sortie-91995/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/huitre-creuse-scaled.jpg,05/06/2025,10.0000000,11.0000000,48.7026420000000,-1.84722700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,91996,Observation #91996,https://biolit.fr/observations/observation-91996/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-3-scaled.jpg,,,Identifiable +N1,91995,Sortie #91995,https://biolit.fr/sorties/sortie-91995/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/huitre-creuse-scaled.jpg,05/06/2025,10.0000000,11.0000000,48.7026420000000,-1.84722700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,91998,Observation #91998,https://biolit.fr/observations/observation-91998/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-2-scaled.jpg,,,Identifiable +N1,91995,Sortie #91995,https://biolit.fr/sorties/sortie-91995/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/huitre-creuse-scaled.jpg,05/06/2025,10.0000000,11.0000000,48.7026420000000,-1.84722700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,92000,Observation #92000,https://biolit.fr/observations/observation-92000/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-2-scaled.jpg,,TRUE,Identifiable +N1,91995,Sortie #91995,https://biolit.fr/sorties/sortie-91995/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/huitre-creuse-scaled.jpg,05/06/2025,10.0000000,11.0000000,48.7026420000000,-1.84722700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,92002,Observation #92002,https://biolit.fr/observations/observation-92002/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-2-scaled.jpg,,,Identifiable +N1,91995,Sortie #91995,https://biolit.fr/sorties/sortie-91995/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/huitre-creuse-scaled.jpg,05/06/2025,10.0000000,11.0000000,48.7026420000000,-1.84722700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,92004,Observation #92004,https://biolit.fr/observations/observation-92004/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-1-scaled.jpg,,TRUE,Identifiable +N1,91995,Sortie #91995,https://biolit.fr/sorties/sortie-91995/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/huitre-creuse-scaled.jpg,05/06/2025,10.0000000,11.0000000,48.7026420000000,-1.84722700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,92006,Observation #92006,https://biolit.fr/observations/observation-92006/,Sacculina carcini,Sacculine du crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-2-scaled.jpg,,TRUE,Identifiable +N1,91995,Sortie #91995,https://biolit.fr/sorties/sortie-91995/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/huitre-creuse-scaled.jpg,05/06/2025,10.0000000,11.0000000,48.7026420000000,-1.84722700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,92008,Observation #92008,https://biolit.fr/observations/observation-92008/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-2-scaled.jpg,,TRUE,Identifiable +N1,91995,Sortie #91995,https://biolit.fr/sorties/sortie-91995/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/huitre-creuse-scaled.jpg,05/06/2025,10.0000000,11.0000000,48.7026420000000,-1.84722700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,92010,Observation #92010,https://biolit.fr/observations/observation-92010/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/eponge-orange-scaled.jpg,,,Ne sais pas +N1,91995,Sortie #91995,https://biolit.fr/sorties/sortie-91995/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/huitre-creuse-scaled.jpg,05/06/2025,10.0000000,11.0000000,48.7026420000000,-1.84722700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,92012,Observation #92012,https://biolit.fr/observations/observation-92012/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-2-scaled.jpg,,TRUE,Identifiable +N1,91995,Sortie #91995,https://biolit.fr/sorties/sortie-91995/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/huitre-creuse-scaled.jpg,05/06/2025,10.0000000,11.0000000,48.7026420000000,-1.84722700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,92014,Observation #92014,https://biolit.fr/observations/observation-92014/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/huitre-creuse-scaled.jpg,,,Identifiable +N1,92019,Sortie #92019,https://biolit.fr/sorties/sortie-92019/,barroin laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/00e4beca4c46cd4c1059dce65e94574e/2025/05/IMG_6984-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/00e4beca4c46cd4c1059dce65e94574e/2025/05/IMG_6986-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/00e4beca4c46cd4c1059dce65e94574e/2025/05/IMG_6987-scaled.jpg,4/20/2025 0:00,15.0000000,18.0000000,48.807936,2.2872060,,CROIX VALMER,,,,,,,,,, +N1,92024,Sortie #92024,https://biolit.fr/sorties/sortie-92024/,Moncomble Aurélien,https://biolit.fr/wp-content/uploads/jet-form-builder/ea165c3dcb530d48887c73ef17ff07fc/2025/05/1000029042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea165c3dcb530d48887c73ef17ff07fc/2025/05/1000028973-scaled.jpg,05/09/2025,9.0000000,10.0000000,43.4825630000000,-1.56874400000000,CPIE Littoral Basque - Euskal Itsasbazterra,Plage du Port vieux,92025,Observation #92025,https://biolit.fr/observations/observation-92025/,Polycera quadrilineata,Polycère à quatre lignes,,https://biolit.fr/wp-content/uploads/jet-form-builder/ea165c3dcb530d48887c73ef17ff07fc/2025/05/1000029042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea165c3dcb530d48887c73ef17ff07fc/2025/05/1000028973-scaled.jpg,,TRUE,Identifiable +N1,92030,Sortie #92030,https://biolit.fr/sorties/sortie-92030/,Moncomble Aurélien,https://biolit.fr/wp-content/uploads/jet-form-builder/ea165c3dcb530d48887c73ef17ff07fc/2025/05/1000029050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea165c3dcb530d48887c73ef17ff07fc/2025/05/1000029052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea165c3dcb530d48887c73ef17ff07fc/2025/05/1000029051-scaled.jpg,05/09/2025,9.0000000,10.0000000,43.4825010000000,-1.56869900000000,CPIE Littoral Basque - Euskal Itsasbazterra,Plage du Port vieux,92031,Observation #92031,https://biolit.fr/observations/observation-92031/,Yungia aurantiaca,Ver plat orange,,https://biolit.fr/wp-content/uploads/jet-form-builder/ea165c3dcb530d48887c73ef17ff07fc/2025/05/1000029051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea165c3dcb530d48887c73ef17ff07fc/2025/05/1000029050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea165c3dcb530d48887c73ef17ff07fc/2025/05/1000029052-scaled.jpg,,TRUE,Identifiable +N1,92038,Sortie #92038,https://biolit.fr/sorties/sortie-92038/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110433-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104134-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.5031940,-4.4367870,,Boutrouilles kerlouan,92059,Observation #92059,https://biolit.fr/observations/observation-92059/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104134-scaled.jpg,,,Identifiable +N1,92038,Sortie #92038,https://biolit.fr/sorties/sortie-92038/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110433-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104134-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.5031940,-4.4367870,,Boutrouilles kerlouan,92075,Observation #92075,https://biolit.fr/observations/observation-92075/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110433-scaled.jpg,,,Identifiable +N1,92038,Sortie #92038,https://biolit.fr/sorties/sortie-92038/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110433-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104134-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.5031940,-4.4367870,,Boutrouilles kerlouan,92077,Observation #92077,https://biolit.fr/observations/observation-92077/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105744-scaled.jpg,,,Identifiable +N1,92038,Sortie #92038,https://biolit.fr/sorties/sortie-92038/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110433-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104134-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.5031940,-4.4367870,,Boutrouilles kerlouan,92080,Observation #92080,https://biolit.fr/observations/observation-92080/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110433-scaled.jpg,,,Identifiable +N1,92038,Sortie #92038,https://biolit.fr/sorties/sortie-92038/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110433-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104134-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.5031940,-4.4367870,,Boutrouilles kerlouan,92083,Observation #92083,https://biolit.fr/observations/observation-92083/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105534-scaled.jpg,,,Identifiable +N1,92038,Sortie #92038,https://biolit.fr/sorties/sortie-92038/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110433-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104134-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.5031940,-4.4367870,,Boutrouilles kerlouan,92087,Observation #92087,https://biolit.fr/observations/observation-92087/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104353-scaled.jpg,,,Identifiable +N1,92052,Sortie #92052,https://biolit.fr/sorties/sortie-92052/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144006-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142709-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142612-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142305-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141651-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141512-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141510-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141155-scaled.jpg,05/06/2025,14.0:15,16.0000000,48.7137700000000,-3.592529000000,,Boutrouilles,92114,Observation #92114,https://biolit.fr/observations/observation-92114/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142305-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141651-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141510-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142036-scaled.jpg,,,Identifiable +N1,92074,Sortie #92074,https://biolit.fr/sorties/sortie-92074/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105530-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104859-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104743-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104703-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104702-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104527-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104220-scaled.jpg,05/06/2025,9.0000000,16.0000000,48.5031940,-4.4367870,,Boutrouille,92085,Observation #92085,https://biolit.fr/observations/observation-92085/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104220-scaled.jpg,,,Ne sais pas +N1,92074,Sortie #92074,https://biolit.fr/sorties/sortie-92074/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105530-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104859-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104743-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104703-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104702-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104527-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104220-scaled.jpg,05/06/2025,9.0000000,16.0000000,48.5031940,-4.4367870,,Boutrouille,92112,Observation #92112,https://biolit.fr/observations/observation-92112/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104220-scaled.jpg,,TRUE,Identifiable +N1,92074,Sortie #92074,https://biolit.fr/sorties/sortie-92074/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105530-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104859-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104743-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104703-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104702-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104527-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104220-scaled.jpg,05/06/2025,9.0000000,16.0000000,48.5031940,-4.4367870,,Boutrouille,92118,Observation #92118,https://biolit.fr/observations/observation-92118/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104527-scaled.jpg,,,Identifiable +N1,92074,Sortie #92074,https://biolit.fr/sorties/sortie-92074/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105530-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104859-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104743-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104703-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104702-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104527-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104220-scaled.jpg,05/06/2025,9.0000000,16.0000000,48.5031940,-4.4367870,,Boutrouille,92121,Observation #92121,https://biolit.fr/observations/observation-92121/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104527-scaled.jpg,,,Identifiable +N1,92074,Sortie #92074,https://biolit.fr/sorties/sortie-92074/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105530-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104859-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104743-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104703-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104702-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104527-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104220-scaled.jpg,05/06/2025,9.0000000,16.0000000,48.5031940,-4.4367870,,Boutrouille,92124,Observation #92124,https://biolit.fr/observations/observation-92124/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104220-scaled.jpg,,,Identifiable +N1,92074,Sortie #92074,https://biolit.fr/sorties/sortie-92074/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105530-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104859-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104743-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104703-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104702-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104527-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104220-scaled.jpg,05/06/2025,9.0000000,16.0000000,48.5031940,-4.4367870,,Boutrouille,92134,Observation #92134,https://biolit.fr/observations/observation-92134/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104220-scaled.jpg,,TRUE,Identifiable +N1,92094,Sortie #92094,https://biolit.fr/sorties/sortie-92094/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105221-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104342-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6545980000000,6835.58727300000,,Boutrouille Kerlouan,92106,Observation #92106,https://biolit.fr/observations/observation-92106/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105221-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104342-scaled.jpg,,,Ne sais pas +N1,92094,Sortie #92094,https://biolit.fr/sorties/sortie-92094/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105221-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104342-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6545980000000,6835.58727300000,,Boutrouille Kerlouan,92128,Observation #92128,https://biolit.fr/observations/observation-92128/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104515-scaled.jpg,,, +N1,92094,Sortie #92094,https://biolit.fr/sorties/sortie-92094/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105221-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104342-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6545980000000,6835.58727300000,,Boutrouille Kerlouan,92130,Observation #92130,https://biolit.fr/observations/observation-92130/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104452-scaled.jpg,,TRUE, +N1,92094,Sortie #92094,https://biolit.fr/sorties/sortie-92094/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105221-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104342-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6545980000000,6835.58727300000,,Boutrouille Kerlouan,92132,Observation #92132,https://biolit.fr/observations/observation-92132/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104342-scaled.jpg,,TRUE, +N1,92098,Sortie #92098,https://biolit.fr/sorties/sortie-92098/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144249-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141716-scaled.jpg,05/06/2025,13.0000000,16.0000000,48.6417950000000,-4.22515900000000,,Kerlouan,92140,Observation #92140,https://biolit.fr/observations/observation-92140/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144249-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141716-scaled.jpg,,, +N1,92109,Sortie #92109,https://biolit.fr/sorties/sortie-92109/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110803-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110645-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110517-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110441-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105510-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104918-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104756-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.5031940,-4.4367870,,Boutrouille kerlouan,92115,Observation #92115,https://biolit.fr/observations/observation-92115/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104918-scaled.jpg,,,Identifiable +N1,92109,Sortie #92109,https://biolit.fr/sorties/sortie-92109/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110803-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110645-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110517-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110441-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105510-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104918-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104756-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.5031940,-4.4367870,,Boutrouille kerlouan,92120,Observation #92120,https://biolit.fr/observations/observation-92120/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105510-scaled.jpg,,,Identifiable +N1,92109,Sortie #92109,https://biolit.fr/sorties/sortie-92109/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110803-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110645-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110517-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110441-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105510-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104918-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104756-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.5031940,-4.4367870,,Boutrouille kerlouan,92126,Observation #92126,https://biolit.fr/observations/observation-92126/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110441-scaled.jpg,,,Identifiable +N1,92139,Sortie #92139,https://biolit.fr/sorties/sortie-92139/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_103625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_103416-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_102946-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.504883,-4.4289370,,Kerlouan boutrouille,92142,Observation #92142,https://biolit.fr/observations/observation-92142/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_103625-scaled.jpg,,,Identifiable +N1,92139,Sortie #92139,https://biolit.fr/sorties/sortie-92139/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_103625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_103416-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_102946-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.504883,-4.4289370,,Kerlouan boutrouille,92144,Observation #92144,https://biolit.fr/observations/observation-92144/,Agarum clathratum,Laminaire criblée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_103416-scaled.jpg,,,Identifiable +N1,92139,Sortie #92139,https://biolit.fr/sorties/sortie-92139/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_103625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_103416-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_102946-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.504883,-4.4289370,,Kerlouan boutrouille,92146,Observation #92146,https://biolit.fr/observations/observation-92146/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_102946-scaled.jpg,,,Identifiable +N1,92155,Sortie #92155,https://biolit.fr/sorties/sortie-92155/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_144138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_143624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_142808-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_142452-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.504883,-4,,Boutrouilles Kerlouan,92156,Observation #92156,https://biolit.fr/observations/observation-92156/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143939-scaled.jpg,,,Identifiable +N1,92155,Sortie #92155,https://biolit.fr/sorties/sortie-92155/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_144138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_143624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_142808-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_142452-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.504883,-4,,Boutrouilles Kerlouan,92158,Observation #92158,https://biolit.fr/observations/observation-92158/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142154-scaled.jpg,,,Identifiable +N1,92155,Sortie #92155,https://biolit.fr/sorties/sortie-92155/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_144138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_143624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_142808-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_142452-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.504883,-4,,Boutrouilles Kerlouan,92160,Observation #92160,https://biolit.fr/observations/observation-92160/,Littorina compressa,Littorine à lignes noires,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142154-scaled.jpg,,,Identifiable +N1,92193,Sortie #92193,https://biolit.fr/sorties/sortie-92193/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_1432240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142445-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141601-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141341-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6543750000000,-4.40971800000000,,Boutrouil,92217,Observation #92217,https://biolit.fr/observations/observation-92217/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142732-scaled.jpg,,,Identifiable +N1,92193,Sortie #92193,https://biolit.fr/sorties/sortie-92193/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_1432240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142445-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141601-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141341-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6543750000000,-4.40971800000000,,Boutrouil,92236,Observation #92236,https://biolit.fr/observations/observation-92236/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144350-scaled.jpg,,,Identifiable +N1,92193,Sortie #92193,https://biolit.fr/sorties/sortie-92193/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_1432240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142445-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141601-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141341-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6543750000000,-4.40971800000000,,Boutrouil,92241,Observation #92241,https://biolit.fr/observations/observation-92241/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145253-scaled.jpg,,,Identifiable +N1,92193,Sortie #92193,https://biolit.fr/sorties/sortie-92193/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_1432240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142445-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141601-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141341-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6543750000000,-4.40971800000000,,Boutrouil,92243,Observation #92243,https://biolit.fr/observations/observation-92243/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142119-scaled.jpg,,,Identifiable +N1,92193,Sortie #92193,https://biolit.fr/sorties/sortie-92193/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_1432240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142445-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141601-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141341-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6543750000000,-4.40971800000000,,Boutrouil,92257,Observation #92257,https://biolit.fr/observations/observation-92257/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142445-scaled.jpg,,TRUE,Identifiable +N1,92193,Sortie #92193,https://biolit.fr/sorties/sortie-92193/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_1432240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142445-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141601-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141341-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6543750000000,-4.40971800000000,,Boutrouil,92266,Observation #92266,https://biolit.fr/observations/observation-92266/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145515-scaled.jpg,,,Ne sais pas +N1,92193,Sortie #92193,https://biolit.fr/sorties/sortie-92193/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_1432240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142445-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141601-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141341-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6543750000000,-4.40971800000000,,Boutrouil,92276,Observation #92276,https://biolit.fr/observations/observation-92276/,Abudefduf notatus,Sergent à queue jaune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145515-scaled.jpg,,,Identifiable +N1,92193,Sortie #92193,https://biolit.fr/sorties/sortie-92193/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_1432240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142445-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141601-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141341-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6543750000000,-4.40971800000000,,Boutrouil,92294,Observation #92294,https://biolit.fr/observations/observation-92294/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145813-scaled.jpg,,,Identifiable +N1,92193,Sortie #92193,https://biolit.fr/sorties/sortie-92193/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_1432240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142445-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141601-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141341-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6543750000000,-4.40971800000000,,Boutrouil,92314,Observation #92314,https://biolit.fr/observations/observation-92314/,Caloplaca marina,Lichen encroûtant orange,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144350-scaled.jpg,,,Identifiable +N1,92193,Sortie #92193,https://biolit.fr/sorties/sortie-92193/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_1432240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142445-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141601-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141341-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6543750000000,-4.40971800000000,,Boutrouil,92328,Observation #92328,https://biolit.fr/observations/observation-92328/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143104-scaled.jpg,,,Identifiable +N1,92193,Sortie #92193,https://biolit.fr/sorties/sortie-92193/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_1432240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142445-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141601-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141341-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6543750000000,-4.40971800000000,,Boutrouil,92341,Observation #92341,https://biolit.fr/observations/observation-92341/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_1432240-scaled.jpg,,TRUE,Identifiable +N1,92193,Sortie #92193,https://biolit.fr/sorties/sortie-92193/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_1432240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142445-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141601-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141341-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6543750000000,-4.40971800000000,,Boutrouil,92347,Observation #92347,https://biolit.fr/observations/observation-92347/,Littorina compressa,Littorine à lignes noires,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143132-scaled.jpg,,,Identifiable +N1,92193,Sortie #92193,https://biolit.fr/sorties/sortie-92193/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_1432240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142445-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141601-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141341-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6543750000000,-4.40971800000000,,Boutrouil,92362,Observation #92362,https://biolit.fr/observations/observation-92362/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141341-scaled.jpg,,,Identifiable +N1,92193,Sortie #92193,https://biolit.fr/sorties/sortie-92193/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_1432240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142445-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141601-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141341-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6543750000000,-4.40971800000000,,Boutrouil,92366,Observation #92366,https://biolit.fr/observations/observation-92366/,Myrionema strangulans,Myrionema des ulves,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142119-scaled.jpg,,,Identifiable +N1,92197,Sortie #92197,https://biolit.fr/sorties/sortie-92197/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145524-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144430-scaled.jpg,05/06/2025,8.0000000,16.0000000,48.6544940000000,-4.40958000000000,,boutrouilles,,,,,,,,,, +N1,92201,Sortie #92201,https://biolit.fr/sorties/sortie-92201/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145524-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144430-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142246-scaled.jpg,05/06/2025,8.0000000,16.0000000,48.6543020000000,-4.40966200000000,,boutrouilles,,,,,,,,,, +N1,92209,Sortie #92209,https://biolit.fr/sorties/sortie-92209/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144006-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143516-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142709-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142521-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142305-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141155-1-scaled.jpg,05/06/2025,13.0000000,15.0000000,48.6636620000000,-4.40094000000000,,Boutrouilles,,,,,,,,,, +N1,92213,Sortie #92213,https://biolit.fr/sorties/sortie-92213/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145524-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144430-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142246-1-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6540980000000,-4.40975900000000,,Boutrouille,,,,,,,,,, +N1,92235,Sortie #92235,https://biolit.fr/sorties/sortie-92235/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141716-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144249-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141716-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141436-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144249-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142731-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142544-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141716-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141436-2-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.6429550000000,-4.36346100000000,,Boutrouilles,92270,Observation #92270,https://biolit.fr/observations/observation-92270/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141716-1-scaled.jpg,,,Identifiable +N1,92235,Sortie #92235,https://biolit.fr/sorties/sortie-92235/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141716-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144249-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141716-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141436-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144249-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142731-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142544-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141716-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141436-2-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.6429550000000,-4.36346100000000,,Boutrouilles,92300,Observation #92300,https://biolit.fr/observations/observation-92300/,Palmaria palmata,Goémon à vache,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141436-scaled.jpg,,,Identifiable +N1,92235,Sortie #92235,https://biolit.fr/sorties/sortie-92235/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141716-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144249-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141716-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141436-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144249-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142731-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142544-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141716-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141436-2-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.6429550000000,-4.36346100000000,,Boutrouilles,92304,Observation #92304,https://biolit.fr/observations/observation-92304/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144249-1-scaled.jpg,,TRUE,Identifiable +N1,92235,Sortie #92235,https://biolit.fr/sorties/sortie-92235/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141716-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144249-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141716-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141436-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144249-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142731-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142544-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141716-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141436-2-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.6429550000000,-4.36346100000000,,Boutrouilles,92354,Observation #92354,https://biolit.fr/observations/observation-92354/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142544-scaled.jpg,,,Identifiable +N1,92239,Sortie #92239,https://biolit.fr/sorties/sortie-92239/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143939-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143305-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142154-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141447-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141344-1-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.6451360000000,-4.36363200000000,,Boutrouilles,92246,Observation #92246,https://biolit.fr/observations/observation-92246/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143939-1-scaled.jpg,,,Identifiable +N1,92269,Sortie #92269,https://biolit.fr/sorties/sortie-92269/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144658-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_140754-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.653813000000,-4.40965200000000,,Boutrouilles,92280,Observation #92280,https://biolit.fr/observations/observation-92280/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145105-scaled.jpg,,,Identifiable +N1,92269,Sortie #92269,https://biolit.fr/sorties/sortie-92269/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144658-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_140754-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.653813000000,-4.40965200000000,,Boutrouilles,92292,Observation #92292,https://biolit.fr/observations/observation-92292/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144658-scaled.jpg,,TRUE,Identifiable +N1,92269,Sortie #92269,https://biolit.fr/sorties/sortie-92269/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144658-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_140754-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.653813000000,-4.40965200000000,,Boutrouilles,92296,Observation #92296,https://biolit.fr/observations/observation-92296/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144230-scaled.jpg,,,Identifiable +N1,92269,Sortie #92269,https://biolit.fr/sorties/sortie-92269/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144658-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_140754-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.653813000000,-4.40965200000000,,Boutrouilles,92302,Observation #92302,https://biolit.fr/observations/observation-92302/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143813-scaled.jpg,,,Identifiable +N1,92269,Sortie #92269,https://biolit.fr/sorties/sortie-92269/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144658-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_140754-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.653813000000,-4.40965200000000,,Boutrouilles,92307,Observation #92307,https://biolit.fr/observations/observation-92307/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143538-scaled.jpg,,,Identifiable +N1,92269,Sortie #92269,https://biolit.fr/sorties/sortie-92269/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144658-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_140754-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.653813000000,-4.40965200000000,,Boutrouilles,92316,Observation #92316,https://biolit.fr/observations/observation-92316/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143007-scaled.jpg,,,Identifiable +N1,92269,Sortie #92269,https://biolit.fr/sorties/sortie-92269/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144658-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_140754-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.653813000000,-4.40965200000000,,Boutrouilles,92322,Observation #92322,https://biolit.fr/observations/observation-92322/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142713-scaled.jpg,,,Identifiable +N1,92269,Sortie #92269,https://biolit.fr/sorties/sortie-92269/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144658-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_140754-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.653813000000,-4.40965200000000,,Boutrouilles,92332,Observation #92332,https://biolit.fr/observations/observation-92332/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142414-scaled.jpg,,,Identifiable +N1,92269,Sortie #92269,https://biolit.fr/sorties/sortie-92269/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144658-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_140754-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.653813000000,-4.40965200000000,,Boutrouilles,92337,Observation #92337,https://biolit.fr/observations/observation-92337/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142344-scaled.jpg,,,Identifiable +N1,92269,Sortie #92269,https://biolit.fr/sorties/sortie-92269/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144658-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_140754-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.653813000000,-4.40965200000000,,Boutrouilles,92343,Observation #92343,https://biolit.fr/observations/observation-92343/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142159-scaled.jpg,,,Identifiable +N1,92279,Sortie #92279,https://biolit.fr/sorties/sortie-92279/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145524-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144430-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143149-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142246-2-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6540210000000,-4.40960900000000,,Boutrouille,92282,Observation #92282,https://biolit.fr/observations/observation-92282/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145524-3-scaled.jpg,,,Identifiable +N1,92279,Sortie #92279,https://biolit.fr/sorties/sortie-92279/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145524-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144430-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143149-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142246-2-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6540210000000,-4.40960900000000,,Boutrouille,92290,Observation #92290,https://biolit.fr/observations/observation-92290/,Caloplaca marina,Lichen encroûtant orange,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144430-3-scaled.jpg,,,Identifiable +N1,92279,Sortie #92279,https://biolit.fr/sorties/sortie-92279/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145524-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144430-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143149-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142246-2-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6540210000000,-4.40960900000000,,Boutrouille,92297,Observation #92297,https://biolit.fr/observations/observation-92297/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143149-scaled.jpg,,,Identifiable +N1,92279,Sortie #92279,https://biolit.fr/sorties/sortie-92279/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145524-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144430-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143149-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142246-2-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6540210000000,-4.40960900000000,,Boutrouille,92310,Observation #92310,https://biolit.fr/observations/observation-92310/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142638-scaled.jpg,,,Identifiable +N1,92279,Sortie #92279,https://biolit.fr/sorties/sortie-92279/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145524-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144430-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143149-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142246-2-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6540210000000,-4.40960900000000,,Boutrouille,92318,Observation #92318,https://biolit.fr/observations/observation-92318/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142246-2-scaled.jpg,,,Identifiable +N1,92289,Sortie #92289,https://biolit.fr/sorties/sortie-92289/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143305-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143155-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142154-2-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.6423880000000,-4.36180100000000,,Boutrouilles,92312,Observation #92312,https://biolit.fr/observations/observation-92312/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142154-2-scaled.jpg,,,Identifiable +N1,92289,Sortie #92289,https://biolit.fr/sorties/sortie-92289/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143305-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143155-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142154-2-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.6423880000000,-4.36180100000000,,Boutrouilles,92320,Observation #92320,https://biolit.fr/observations/observation-92320/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143155-1-scaled.jpg,,TRUE,Identifiable +N1,92289,Sortie #92289,https://biolit.fr/sorties/sortie-92289/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143305-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143155-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142154-2-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.6423880000000,-4.36180100000000,,Boutrouilles,92334,Observation #92334,https://biolit.fr/observations/observation-92334/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143305-1-scaled.jpg,,,Identifiable +N1,92308,Sortie #92308,https://biolit.fr/sorties/sortie-92308/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141751-scaled.jpg,05/06/2025,13.0000000,16.0000000,48.6527460000000,-4.39567600000000,,Boutrouille,92330,Observation #92330,https://biolit.fr/observations/observation-92330/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141751-scaled.jpg,,,Identifiable +N1,92353,Sortie #92353,https://biolit.fr/sorties/sortie-92353/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143631-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143355-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141344-2-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.6423880000000,-4.36180100000000,,Boutrouilles,,,,,,,,,, +N1,92359,Sortie #92359,https://biolit.fr/sorties/sortie-92359/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142305-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141651-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141155-2-scaled.jpg,05/06/2025,13.0000000,15.0000000,48.6542070000000,-4.40903700000000,,Boutrouilles,92370,Observation #92370,https://biolit.fr/observations/observation-92370/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142305-2-scaled.jpg,,TRUE,Identifiable +N1,92359,Sortie #92359,https://biolit.fr/sorties/sortie-92359/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142305-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141651-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141155-2-scaled.jpg,05/06/2025,13.0000000,15.0000000,48.6542070000000,-4.40903700000000,,Boutrouilles,92384,Observation #92384,https://biolit.fr/observations/observation-92384/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141651-1-scaled.jpg,,,Identifiable +N1,92359,Sortie #92359,https://biolit.fr/sorties/sortie-92359/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142305-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141651-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141155-2-scaled.jpg,05/06/2025,13.0000000,15.0000000,48.6542070000000,-4.40903700000000,,Boutrouilles,92387,Observation #92387,https://biolit.fr/observations/observation-92387/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141155-2-scaled.jpg,,,Identifiable +N1,92365,Sortie #92365,https://biolit.fr/sorties/sortie-92365/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143807-scaled.jpg,05/06/2025,13.0000000,16.0000000,48.6542120000000,-4.40967300000000,,boutrouille,92377,Observation #92377,https://biolit.fr/observations/observation-92377/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143807-scaled.jpg,,,Identifiable +N1,92385,Sortie #92385,https://biolit.fr/sorties/sortie-92385/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144612-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144245-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143811-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143733-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144245-1-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.6459620000000,-4.36406100000000,,Boutrouilles,92390,Observation #92390,https://biolit.fr/observations/observation-92390/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144612-scaled.jpg,,,Identifiable +N1,92385,Sortie #92385,https://biolit.fr/sorties/sortie-92385/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144612-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144245-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143811-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143733-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144245-1-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.6459620000000,-4.36406100000000,,Boutrouilles,92392,Observation #92392,https://biolit.fr/observations/observation-92392/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142614-scaled.jpg,,,Identifiable +N1,92385,Sortie #92385,https://biolit.fr/sorties/sortie-92385/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144612-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144245-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143811-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143733-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144245-1-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.6459620000000,-4.36406100000000,,Boutrouilles,92398,Observation #92398,https://biolit.fr/observations/observation-92398/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143811-scaled.jpg,,,Identifiable +N1,92385,Sortie #92385,https://biolit.fr/sorties/sortie-92385/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144612-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144245-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143811-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143733-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144245-1-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.6459620000000,-4.36406100000000,,Boutrouilles,92406,Observation #92406,https://biolit.fr/observations/observation-92406/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143733-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143526-scaled.jpg,,,Identifiable +N1,92385,Sortie #92385,https://biolit.fr/sorties/sortie-92385/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144612-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144245-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143811-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143733-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144245-1-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.6459620000000,-4.36406100000000,,Boutrouilles,92408,Observation #92408,https://biolit.fr/observations/observation-92408/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144245-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144245-scaled.jpg,,,Identifiable +N1,92385,Sortie #92385,https://biolit.fr/sorties/sortie-92385/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144612-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144245-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143811-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143733-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144245-1-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.6459620000000,-4.36406100000000,,Boutrouilles,92411,Observation #92411,https://biolit.fr/observations/observation-92411/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143009-scaled.jpg,,,Identifiable +N1,92385,Sortie #92385,https://biolit.fr/sorties/sortie-92385/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144612-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144245-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143811-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143733-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144245-1-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.6459620000000,-4.36406100000000,,Boutrouilles,92414,Observation #92414,https://biolit.fr/observations/observation-92414/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143617-scaled.jpg,,,Ne sais pas +N1,92397,Sortie #92397,https://biolit.fr/sorties/sortie-92397/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145105-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143813-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142124-1-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.653738000000,-4.40952300000000,,Boutrouilles,92399,Observation #92399,https://biolit.fr/observations/observation-92399/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145105-1-scaled.jpg,,,Identifiable +N1,92397,Sortie #92397,https://biolit.fr/sorties/sortie-92397/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145105-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143813-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142124-1-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.653738000000,-4.40952300000000,,Boutrouilles,92402,Observation #92402,https://biolit.fr/observations/observation-92402/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143813-1-scaled.jpg,,,Identifiable +N1,92397,Sortie #92397,https://biolit.fr/sorties/sortie-92397/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145105-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143813-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142124-1-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.653738000000,-4.40952300000000,,Boutrouilles,92404,Observation #92404,https://biolit.fr/observations/observation-92404/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142124-1-scaled.jpg,,,Identifiable +N1,92479,Sortie #92479,https://biolit.fr/sorties/sortie-92479/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105502-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104449-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6539050000000,-4.40960900000000,,Boutrouilles,,,,,,,,,, +N1,92482,Sortie #92482,https://biolit.fr/sorties/sortie-92482/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104219-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.5048830,-4.4289370,,Boutrouille,,,,,,,,,, +N1,92485,Sortie #92485,https://biolit.fr/sorties/sortie-92485/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104923-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104540-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104543-scaled.jpg,05/06/2025,10.0000000,11.0:45,49.4189400000000,-8.7945560000000,,Boutrouille,,,,,,,,,, +N1,92502,Sortie #92502,https://biolit.fr/sorties/sortie-92502/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110814-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110703-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110225-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104914-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104819-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104701-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104527-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104307-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104202-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104122-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6546210000000,-4.41057400000000,,Kerlouan,,,,,,,,,, +N1,92506,Sortie #92506,https://biolit.fr/sorties/sortie-92506/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105502-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104535-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104449-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6607220000000,-4.37976800000000,,Boutrouilles,92515,Observation #92515,https://biolit.fr/observations/observation-92515/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105502-1-scaled.jpg,,,Identifiable +N1,92506,Sortie #92506,https://biolit.fr/sorties/sortie-92506/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105502-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104535-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104449-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6607220000000,-4.37976800000000,,Boutrouilles,92518,Observation #92518,https://biolit.fr/observations/observation-92518/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104535-1-scaled.jpg,,,Identifiable +N1,92506,Sortie #92506,https://biolit.fr/sorties/sortie-92506/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105502-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104535-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104449-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6607220000000,-4.37976800000000,,Boutrouilles,92527,Observation #92527,https://biolit.fr/observations/observation-92527/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104449-1-scaled.jpg,,,Identifiable +N1,92510,Sortie #92510,https://biolit.fr/sorties/sortie-92510/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104923-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104543-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104540-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6542650000000,-4.4094980000000,,Boutrouille Kerlouan,92536,Observation #92536,https://biolit.fr/observations/observation-92536/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104540-1-scaled.jpg,,,Identifiable +N1,92510,Sortie #92510,https://biolit.fr/sorties/sortie-92510/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104923-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104543-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104540-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6542650000000,-4.4094980000000,,Boutrouille Kerlouan,92557,Observation #92557,https://biolit.fr/observations/observation-92557/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104543-1-scaled.jpg,,,Identifiable +N1,92510,Sortie #92510,https://biolit.fr/sorties/sortie-92510/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104923-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104543-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104540-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6542650000000,-4.4094980000000,,Boutrouille Kerlouan,92567,Observation #92567,https://biolit.fr/observations/observation-92567/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104540-1-scaled.jpg,,,Identifiable +N1,92510,Sortie #92510,https://biolit.fr/sorties/sortie-92510/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104923-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104543-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104540-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6542650000000,-4.4094980000000,,Boutrouille Kerlouan,92577,Observation #92577,https://biolit.fr/observations/observation-92577/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104923-1-scaled.jpg,,,Identifiable +N1,92516,Sortie #92516,https://biolit.fr/sorties/sortie-92516/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105141-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110451-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6541060000000,-4.40932300000000,,Boutrouille - kerlouan,92530,Observation #92530,https://biolit.fr/observations/observation-92530/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110451-scaled.jpg,,,Identifiable +N1,92516,Sortie #92516,https://biolit.fr/sorties/sortie-92516/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105141-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110451-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6541060000000,-4.40932300000000,,Boutrouille - kerlouan,92534,Observation #92534,https://biolit.fr/observations/observation-92534/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105141-scaled.jpg,,,Identifiable +N1,92516,Sortie #92516,https://biolit.fr/sorties/sortie-92516/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105141-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110451-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6541060000000,-4.40932300000000,,Boutrouille - kerlouan,92559,Observation #92559,https://biolit.fr/observations/observation-92559/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105052-scaled.jpg,,,Identifiable +N1,92516,Sortie #92516,https://biolit.fr/sorties/sortie-92516/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105141-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110451-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6541060000000,-4.40932300000000,,Boutrouille - kerlouan,92571,Observation #92571,https://biolit.fr/observations/observation-92571/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105141-scaled.jpg,,TRUE,Identifiable +N1,92524,Sortie #92524,https://biolit.fr/sorties/sortie-92524/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104210-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104309-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105457-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105206-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.5048830,-4.4289370,,Boutrouille,,,,,,,,,, +N1,92533,Sortie #92533,https://biolit.fr/sorties/sortie-92533/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110225-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110030-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105312-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104409-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6547620000000,-4.41131100000000,,Kermouan,92545,Observation #92545,https://biolit.fr/observations/observation-92545/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110225-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110030-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105312-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104409-1-scaled.jpg,,,Identifiable +N1,92533,Sortie #92533,https://biolit.fr/sorties/sortie-92533/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110225-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110030-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105312-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104409-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6547620000000,-4.41131100000000,,Kermouan,92569,Observation #92569,https://biolit.fr/observations/observation-92569/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110030-1-scaled.jpg,,,Identifiable +N1,92533,Sortie #92533,https://biolit.fr/sorties/sortie-92533/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110225-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110030-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105312-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104409-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6547620000000,-4.41131100000000,,Kermouan,92579,Observation #92579,https://biolit.fr/observations/observation-92579/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110225-1-scaled.jpg,,,Identifiable +N1,92548,Sortie #92548,https://biolit.fr/sorties/sortie-92548/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105642-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_103906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_142452-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143155-2-scaled.jpg,05/06/2025,9.0000000,15.0000000,48.6382590000000,-4.41375700000000,,Kerlouan,92573,Observation #92573,https://biolit.fr/observations/observation-92573/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_142452-1-scaled.jpg,,,Identifiable +N1,92560,Sortie #92560,https://biolit.fr/sorties/sortie-92560/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104528-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104300-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104220-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6538750000000,-4.40948400000000,,Boutrouilles Kerlouan,92575,Observation #92575,https://biolit.fr/observations/observation-92575/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104528-1-scaled.jpg,,,Identifiable +N1,92560,Sortie #92560,https://biolit.fr/sorties/sortie-92560/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104528-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104300-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104220-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6538750000000,-4.40948400000000,,Boutrouilles Kerlouan,92583,Observation #92583,https://biolit.fr/observations/observation-92583/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104300-1-scaled.jpg,,TRUE,Identifiable +N1,92560,Sortie #92560,https://biolit.fr/sorties/sortie-92560/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104528-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104300-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104220-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6538750000000,-4.40948400000000,,Boutrouilles Kerlouan,92587,Observation #92587,https://biolit.fr/observations/observation-92587/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104220-1-scaled.jpg,,TRUE,Identifiable +N1,92561,Sortie #92561,https://biolit.fr/sorties/sortie-92561/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104210-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104309-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105457-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105206-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6567790000000,-4.38823700000000,,boutrouille,92580,Observation #92580,https://biolit.fr/observations/observation-92580/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104210-1-scaled.jpg,,TRUE,Identifiable +N1,92561,Sortie #92561,https://biolit.fr/sorties/sortie-92561/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104210-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104309-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105457-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105206-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6567790000000,-4.38823700000000,,boutrouille,92584,Observation #92584,https://biolit.fr/observations/observation-92584/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104309-1-scaled.jpg,,TRUE,Identifiable +N1,92561,Sortie #92561,https://biolit.fr/sorties/sortie-92561/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104210-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104309-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105457-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105206-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6567790000000,-4.38823700000000,,boutrouille,92589,Observation #92589,https://biolit.fr/observations/observation-92589/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105206-1-scaled.jpg,,,Identifiable +N1,92561,Sortie #92561,https://biolit.fr/sorties/sortie-92561/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104210-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104309-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105457-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105206-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6567790000000,-4.38823700000000,,boutrouille,92613,Observation #92613,https://biolit.fr/observations/observation-92613/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105457-1-scaled.jpg,,,Identifiable +N1,92562,Sortie #92562,https://biolit.fr/sorties/sortie-92562/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110152-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105441-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110152-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105214-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6543730000000,-4.40946600000000,,Kerlouan boutrouille,,,,,,,,,, +N1,92594,Sortie #92594,https://biolit.fr/sorties/sortie-92594/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143155-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_142452-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_141255-scaled.jpg,05/06/2025,9.0000000,15.0000000,48.6797030000000,-3.6309810000000,,Kerlouan,92595,Observation #92595,https://biolit.fr/observations/observation-92595/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_142452-2-scaled.jpg,,,Identifiable +N1,92594,Sortie #92594,https://biolit.fr/sorties/sortie-92594/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143155-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_142452-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_141255-scaled.jpg,05/06/2025,9.0000000,15.0000000,48.6797030000000,-3.6309810000000,,Kerlouan,92601,Observation #92601,https://biolit.fr/observations/observation-92601/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_141255-scaled.jpg,,,Identifiable +N1,92594,Sortie #92594,https://biolit.fr/sorties/sortie-92594/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143155-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_142452-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_141255-scaled.jpg,05/06/2025,9.0000000,15.0000000,48.6797030000000,-3.6309810000000,,Kerlouan,92609,Observation #92609,https://biolit.fr/observations/observation-92609/,Acinetospora crinita,Algues brunes filamenteuses,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143155-3-scaled.jpg,,,Identifiable +N1,92600,Sortie #92600,https://biolit.fr/sorties/sortie-92600/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104923-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104543-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104540-2-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.7316620000000,-4.39819300000000,,Boutrouille Kerlouan,92606,Observation #92606,https://biolit.fr/observations/observation-92606/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104923-2-scaled.jpg,,,Identifiable +N1,92600,Sortie #92600,https://biolit.fr/sorties/sortie-92600/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104923-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104543-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104540-2-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.7316620000000,-4.39819300000000,,Boutrouille Kerlouan,92615,Observation #92615,https://biolit.fr/observations/observation-92615/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104543-2-scaled.jpg,,,Identifiable +N1,92600,Sortie #92600,https://biolit.fr/sorties/sortie-92600/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104923-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104543-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104540-2-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.7316620000000,-4.39819300000000,,Boutrouille Kerlouan,92617,Observation #92617,https://biolit.fr/observations/observation-92617/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104540-2-scaled.jpg,,,Identifiable +N1,92612,Sortie #92612,https://biolit.fr/sorties/sortie-92612/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110152-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105441-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104732-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104712-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6546000000000,-4.4092660000000,,,92637,Observation #92637,https://biolit.fr/observations/observation-92637/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105441-1-scaled.jpg,,,Identifiable +N1,92612,Sortie #92612,https://biolit.fr/sorties/sortie-92612/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110152-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105441-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104732-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104712-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6546000000000,-4.4092660000000,,,92639,Observation #92639,https://biolit.fr/observations/observation-92639/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110152-3-scaled.jpg,,,Identifiable +N1,92612,Sortie #92612,https://biolit.fr/sorties/sortie-92612/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110152-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105441-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104732-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104712-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6546000000000,-4.4092660000000,,,92641,Observation #92641,https://biolit.fr/observations/observation-92641/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104732-1-scaled.jpg,,,Identifiable +N1,92612,Sortie #92612,https://biolit.fr/sorties/sortie-92612/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110152-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105441-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104732-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104712-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6546000000000,-4.4092660000000,,,92649,Observation #92649,https://biolit.fr/observations/observation-92649/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104712-scaled.jpg,,,Identifiable +N1,92623,Sortie #92623,https://biolit.fr/sorties/sortie-92623/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110451-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110152-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105141-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105052-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6543580000000,-4.40953000000000,,Boutrouille- kerlouan,92624,Observation #92624,https://biolit.fr/observations/observation-92624/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110451-1-scaled.jpg,,,Identifiable +N1,92623,Sortie #92623,https://biolit.fr/sorties/sortie-92623/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110451-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110152-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105141-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105052-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6543580000000,-4.40953000000000,,Boutrouille- kerlouan,92626,Observation #92626,https://biolit.fr/observations/observation-92626/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110152-4-scaled.jpg,,,Identifiable +N1,92623,Sortie #92623,https://biolit.fr/sorties/sortie-92623/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110451-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110152-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105141-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105052-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6543580000000,-4.40953000000000,,Boutrouille- kerlouan,92628,Observation #92628,https://biolit.fr/observations/observation-92628/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105141-1-scaled.jpg,,,Identifiable +N1,92634,Sortie #92634,https://biolit.fr/sorties/sortie-92634/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110703-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110030-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105055-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104701-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6548290000000,-4.41092500000000,,Boutrouilles,92635,Observation #92635,https://biolit.fr/observations/observation-92635/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110030-2-scaled.jpg,,,Identifiable +N1,92634,Sortie #92634,https://biolit.fr/sorties/sortie-92634/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110703-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110030-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105055-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104701-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6548290000000,-4.41092500000000,,Boutrouilles,92643,Observation #92643,https://biolit.fr/observations/observation-92643/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105055-1-scaled.jpg,,,Identifiable +N1,92634,Sortie #92634,https://biolit.fr/sorties/sortie-92634/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110703-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110030-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105055-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104701-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6548290000000,-4.41092500000000,,Boutrouilles,92645,Observation #92645,https://biolit.fr/observations/observation-92645/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110703-1-scaled.jpg,,,Ne sais pas +N1,92634,Sortie #92634,https://biolit.fr/sorties/sortie-92634/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110703-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110030-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105055-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104701-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6548290000000,-4.41092500000000,,Boutrouilles,92647,Observation #92647,https://biolit.fr/observations/observation-92647/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104701-1-scaled.jpg,,,Ne sais pas +N1,92679,Sortie #92679,https://biolit.fr/sorties/sortie-92679/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7537.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7536.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7535.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7534.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7532.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7530.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7527.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7526.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7525.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7524.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7523.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7522.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7521.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7520.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7519.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7518.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7516.jpg,5/14/2025 0:00,9.000004,10.000004,49.9260270,1.0649080,ESTRAN cité de la Mer,plage de dieppe,,,,,,,,,, +N1,92700,Sortie #92700,https://biolit.fr/sorties/sortie-92700/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7537-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7536-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7535-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7534-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7533-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7532-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7531-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7530-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7527-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7526-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7525-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7524-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7523-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7521-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7520-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7519-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7518-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7517-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7515.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7514.jpg,5/14/2025 0:00,9.000004,10.000004,49.9260270,1.0649080,ESTRAN cité de la Mer,plage de dieppe,,,,,,,,,, +N1,92704,Sortie #92704,https://biolit.fr/sorties/sortie-92704/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7515-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7514-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7513-Copie.jpg,5/14/2025 0:00,9.000004,10.000004,49.9260340,1.0652000,ESTRAN cité de la Mer,plage de dieppe,92705,Observation #92705,https://biolit.fr/observations/observation-92705/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7513-Copie.jpg,,TRUE,Identifiable +N1,92704,Sortie #92704,https://biolit.fr/sorties/sortie-92704/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7515-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7514-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7513-Copie.jpg,5/14/2025 0:00,9.000004,10.000004,49.9260340,1.0652000,ESTRAN cité de la Mer,plage de dieppe,92707,Observation #92707,https://biolit.fr/observations/observation-92707/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7514-1.jpg,,TRUE,Identifiable +N1,92704,Sortie #92704,https://biolit.fr/sorties/sortie-92704/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7515-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7514-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7513-Copie.jpg,5/14/2025 0:00,9.000004,10.000004,49.9260340,1.0652000,ESTRAN cité de la Mer,plage de dieppe,92709,Observation #92709,https://biolit.fr/observations/observation-92709/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7515-1.jpg,,TRUE,Identifiable +N1,92714,Sortie #92714,https://biolit.fr/sorties/sortie-92714/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7521-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7520-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7519-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9268330,1.0639430,ESTRAN cité de la Mer,plage de dieppe,92715,Observation #92715,https://biolit.fr/observations/observation-92715/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7519-2.jpg,,TRUE,Identifiable +N1,92714,Sortie #92714,https://biolit.fr/sorties/sortie-92714/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7521-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7520-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7519-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9268330,1.0639430,ESTRAN cité de la Mer,plage de dieppe,92717,Observation #92717,https://biolit.fr/observations/observation-92717/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7520-2.jpg,,TRUE,Identifiable +N1,92714,Sortie #92714,https://biolit.fr/sorties/sortie-92714/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7521-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7520-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7519-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9268330,1.0639430,ESTRAN cité de la Mer,plage de dieppe,92719,Observation #92719,https://biolit.fr/observations/observation-92719/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7521-2.jpg,,TRUE,Identifiable +N1,92724,Sortie #92724,https://biolit.fr/sorties/sortie-92724/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7525-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7524-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7523-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9262460,1.0627510,ESTRAN cité de la Mer,plage de dieppe,92725,Observation #92725,https://biolit.fr/observations/observation-92725/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7523-2.jpg,,TRUE,Identifiable +N1,92724,Sortie #92724,https://biolit.fr/sorties/sortie-92724/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7525-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7524-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7523-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9262460,1.0627510,ESTRAN cité de la Mer,plage de dieppe,92727,Observation #92727,https://biolit.fr/observations/observation-92727/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7523-2.jpg,,,Identifiable +N1,92724,Sortie #92724,https://biolit.fr/sorties/sortie-92724/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7525-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7524-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7523-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9262460,1.0627510,ESTRAN cité de la Mer,plage de dieppe,92729,Observation #92729,https://biolit.fr/observations/observation-92729/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7524-2.jpg,,TRUE,Identifiable +N1,92724,Sortie #92724,https://biolit.fr/sorties/sortie-92724/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7525-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7524-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7523-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9262460,1.0627510,ESTRAN cité de la Mer,plage de dieppe,92731,Observation #92731,https://biolit.fr/observations/observation-92731/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7525-2.jpg,,TRUE,Identifiable +N1,92737,Sortie #92737,https://biolit.fr/sorties/sortie-92737/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7529-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/20250514_095128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/20250514_095152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7527-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9263970,1.0645600,ESTRAN cité de la Mer,plage de dieppe,92738,Observation #92738,https://biolit.fr/observations/observation-92738/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7527-2.jpg,,TRUE,Identifiable +N1,92737,Sortie #92737,https://biolit.fr/sorties/sortie-92737/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7529-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/20250514_095128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/20250514_095152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7527-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9263970,1.0645600,ESTRAN cité de la Mer,plage de dieppe,92740,Observation #92740,https://biolit.fr/observations/observation-92740/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/20250514_095152-scaled.jpg,,,Identifiable +N1,92737,Sortie #92737,https://biolit.fr/sorties/sortie-92737/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7529-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/20250514_095128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/20250514_095152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7527-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9263970,1.0645600,ESTRAN cité de la Mer,plage de dieppe,92742,Observation #92742,https://biolit.fr/observations/observation-92742/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/20250514_095128-scaled.jpg,,TRUE,Identifiable +N1,92737,Sortie #92737,https://biolit.fr/sorties/sortie-92737/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7529-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/20250514_095128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/20250514_095152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7527-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9263970,1.0645600,ESTRAN cité de la Mer,plage de dieppe,92744,Observation #92744,https://biolit.fr/observations/observation-92744/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7529-scaled.jpg,,,Identifiable +N1,92737,Sortie #92737,https://biolit.fr/sorties/sortie-92737/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7529-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/20250514_095128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/20250514_095152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7527-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9263970,1.0645600,ESTRAN cité de la Mer,plage de dieppe,92746,Observation #92746,https://biolit.fr/observations/observation-92746/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/20250514_095152-scaled.jpg,,,Identifiable +N1,92755,Sortie #92755,https://biolit.fr/sorties/sortie-92755/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7536-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7535-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7534-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7533-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7532-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7531-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7530-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9262640,1.06479,ESTRAN cité de la Mer,plage de dieppe,92756,Observation #92756,https://biolit.fr/observations/observation-92756/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7530-2.jpg,,TRUE,Identifiable +N1,92755,Sortie #92755,https://biolit.fr/sorties/sortie-92755/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7536-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7535-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7534-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7533-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7532-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7531-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7530-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9262640,1.06479,ESTRAN cité de la Mer,plage de dieppe,92758,Observation #92758,https://biolit.fr/observations/observation-92758/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7531-2.jpg,,TRUE,Identifiable +N1,92755,Sortie #92755,https://biolit.fr/sorties/sortie-92755/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7536-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7535-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7534-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7533-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7532-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7531-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7530-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9262640,1.06479,ESTRAN cité de la Mer,plage de dieppe,92760,Observation #92760,https://biolit.fr/observations/observation-92760/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7532-2.jpg,,TRUE,Identifiable +N1,92755,Sortie #92755,https://biolit.fr/sorties/sortie-92755/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7536-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7535-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7534-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7533-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7532-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7531-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7530-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9262640,1.06479,ESTRAN cité de la Mer,plage de dieppe,92762,Observation #92762,https://biolit.fr/observations/observation-92762/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7533-2.jpg,,TRUE,Identifiable +N1,92755,Sortie #92755,https://biolit.fr/sorties/sortie-92755/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7536-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7535-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7534-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7533-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7532-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7531-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7530-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9262640,1.06479,ESTRAN cité de la Mer,plage de dieppe,92764,Observation #92764,https://biolit.fr/observations/observation-92764/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7534-2.jpg,,TRUE,Identifiable +N1,92755,Sortie #92755,https://biolit.fr/sorties/sortie-92755/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7536-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7535-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7534-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7533-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7532-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7531-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7530-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9262640,1.06479,ESTRAN cité de la Mer,plage de dieppe,92766,Observation #92766,https://biolit.fr/observations/observation-92766/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7535-2.jpg,,TRUE,Identifiable +N1,92755,Sortie #92755,https://biolit.fr/sorties/sortie-92755/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7536-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7535-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7534-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7533-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7532-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7531-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7530-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9262640,1.06479,ESTRAN cité de la Mer,plage de dieppe,92768,Observation #92768,https://biolit.fr/observations/observation-92768/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7536-2.jpg,,TRUE,Identifiable +N1,92783,Sortie #92783,https://biolit.fr/sorties/sortie-92783/,Tarjus Oceane,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3222-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3231-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3228-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3230-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3227-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3229-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/E298EE2A-3891-4759-9E7F-0A0377D2B3DC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/053EFDE3-43B3-4E28-A23A-6B7BD9F8DCB2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/52ECF2E0-61BA-4175-B409-C2D552C5831C-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/00321D64-EA2B-45DC-BAC6-4973470C7A24-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3239-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/A5507209-8908-468A-8EC8-191BE2275328-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3254-scaled.jpeg,5/14/2025 0:00,9.0:16,10.0000000,42.5723690000000,3.04500500000000,,"Zone Natura 2000, embouchure du tech et grau de la massane",,,,,,,,,, +N1,92795,Sortie #92795,https://biolit.fr/sorties/sortie-92795/,Tarjus Oceane,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/29F8981B-C005-4F97-B0A9-E63B203A3B08.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/52ECF2E0-61BA-4175-B409-C2D552C5831C.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/9076B225-4E15-433F-9671-F671522144E6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3239-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3254-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/obularia-maritima.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed.jpg,5/14/2025 0:00,9.0:16,10.000005,42.5722210000000,3.04499800000000,Fédération des réserves naturelles catalanes,Zone Natura 2000-Embouchure du Tech et Grau de la Massane,92796,Observation #92796,https://biolit.fr/observations/observation-92796/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/29F8981B-C005-4F97-B0A9-E63B203A3B08.jpg,,,Identifiable +N1,92795,Sortie #92795,https://biolit.fr/sorties/sortie-92795/,Tarjus Oceane,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/29F8981B-C005-4F97-B0A9-E63B203A3B08.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/52ECF2E0-61BA-4175-B409-C2D552C5831C.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/9076B225-4E15-433F-9671-F671522144E6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3239-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3254-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/obularia-maritima.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed.jpg,5/14/2025 0:00,9.0:16,10.000005,42.5722210000000,3.04499800000000,Fédération des réserves naturelles catalanes,Zone Natura 2000-Embouchure du Tech et Grau de la Massane,92798,Observation #92798,https://biolit.fr/observations/observation-92798/,Paronychia argentea,Paronyche argentée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/52ECF2E0-61BA-4175-B409-C2D552C5831C.jpg,,,Identifiable +N1,92795,Sortie #92795,https://biolit.fr/sorties/sortie-92795/,Tarjus Oceane,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/29F8981B-C005-4F97-B0A9-E63B203A3B08.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/52ECF2E0-61BA-4175-B409-C2D552C5831C.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/9076B225-4E15-433F-9671-F671522144E6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3239-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3254-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/obularia-maritima.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed.jpg,5/14/2025 0:00,9.0:16,10.000005,42.5722210000000,3.04499800000000,Fédération des réserves naturelles catalanes,Zone Natura 2000-Embouchure du Tech et Grau de la Massane,92800,Observation #92800,https://biolit.fr/observations/observation-92800/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/9076B225-4E15-433F-9671-F671522144E6.jpg,,,Identifiable +N1,92795,Sortie #92795,https://biolit.fr/sorties/sortie-92795/,Tarjus Oceane,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/29F8981B-C005-4F97-B0A9-E63B203A3B08.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/52ECF2E0-61BA-4175-B409-C2D552C5831C.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/9076B225-4E15-433F-9671-F671522144E6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3239-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3254-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/obularia-maritima.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed.jpg,5/14/2025 0:00,9.0:16,10.000005,42.5722210000000,3.04499800000000,Fédération des réserves naturelles catalanes,Zone Natura 2000-Embouchure du Tech et Grau de la Massane,92802,Observation #92802,https://biolit.fr/observations/observation-92802/,Medicago marina,Luzerne marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3239-rotated.jpg,,,Identifiable +N1,92795,Sortie #92795,https://biolit.fr/sorties/sortie-92795/,Tarjus Oceane,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/29F8981B-C005-4F97-B0A9-E63B203A3B08.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/52ECF2E0-61BA-4175-B409-C2D552C5831C.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/9076B225-4E15-433F-9671-F671522144E6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3239-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3254-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/obularia-maritima.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed.jpg,5/14/2025 0:00,9.0:16,10.000005,42.5722210000000,3.04499800000000,Fédération des réserves naturelles catalanes,Zone Natura 2000-Embouchure du Tech et Grau de la Massane,92804,Observation #92804,https://biolit.fr/observations/observation-92804/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3254-rotated.jpg,,,Identifiable +N1,92795,Sortie #92795,https://biolit.fr/sorties/sortie-92795/,Tarjus Oceane,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/29F8981B-C005-4F97-B0A9-E63B203A3B08.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/52ECF2E0-61BA-4175-B409-C2D552C5831C.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/9076B225-4E15-433F-9671-F671522144E6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3239-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3254-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/obularia-maritima.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed.jpg,5/14/2025 0:00,9.0:16,10.000005,42.5722210000000,3.04499800000000,Fédération des réserves naturelles catalanes,Zone Natura 2000-Embouchure du Tech et Grau de la Massane,92806,Observation #92806,https://biolit.fr/observations/observation-92806/,Lobularia maritima,Alysson maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/obularia-maritima.jpg,,,Identifiable +N1,92795,Sortie #92795,https://biolit.fr/sorties/sortie-92795/,Tarjus Oceane,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/29F8981B-C005-4F97-B0A9-E63B203A3B08.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/52ECF2E0-61BA-4175-B409-C2D552C5831C.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/9076B225-4E15-433F-9671-F671522144E6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3239-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3254-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/obularia-maritima.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed.jpg,5/14/2025 0:00,9.0:16,10.000005,42.5722210000000,3.04499800000000,Fédération des réserves naturelles catalanes,Zone Natura 2000-Embouchure du Tech et Grau de la Massane,92808,Observation #92808,https://biolit.fr/observations/observation-92808/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-1-scaled.jpg,,,Identifiable +N1,92795,Sortie #92795,https://biolit.fr/sorties/sortie-92795/,Tarjus Oceane,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/29F8981B-C005-4F97-B0A9-E63B203A3B08.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/52ECF2E0-61BA-4175-B409-C2D552C5831C.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/9076B225-4E15-433F-9671-F671522144E6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3239-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3254-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/obularia-maritima.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed.jpg,5/14/2025 0:00,9.0:16,10.000005,42.5722210000000,3.04499800000000,Fédération des réserves naturelles catalanes,Zone Natura 2000-Embouchure du Tech et Grau de la Massane,92810,Observation #92810,https://biolit.fr/observations/observation-92810/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-2-scaled.jpg,,,Identifiable +N1,92795,Sortie #92795,https://biolit.fr/sorties/sortie-92795/,Tarjus Oceane,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/29F8981B-C005-4F97-B0A9-E63B203A3B08.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/52ECF2E0-61BA-4175-B409-C2D552C5831C.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/9076B225-4E15-433F-9671-F671522144E6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3239-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3254-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/obularia-maritima.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed.jpg,5/14/2025 0:00,9.0:16,10.000005,42.5722210000000,3.04499800000000,Fédération des réserves naturelles catalanes,Zone Natura 2000-Embouchure du Tech et Grau de la Massane,92812,Observation #92812,https://biolit.fr/observations/observation-92812/,Ephedra distachya,Ephédra à chatons opposés,,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-3.jpg,,,Identifiable +N1,92795,Sortie #92795,https://biolit.fr/sorties/sortie-92795/,Tarjus Oceane,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/29F8981B-C005-4F97-B0A9-E63B203A3B08.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/52ECF2E0-61BA-4175-B409-C2D552C5831C.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/9076B225-4E15-433F-9671-F671522144E6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3239-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3254-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/obularia-maritima.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed.jpg,5/14/2025 0:00,9.0:16,10.000005,42.5722210000000,3.04499800000000,Fédération des réserves naturelles catalanes,Zone Natura 2000-Embouchure du Tech et Grau de la Massane,92814,Observation #92814,https://biolit.fr/observations/observation-92814/,Lagurus ovatus,Queue de lièvre,,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-4-scaled.jpg,,,Identifiable +N1,92817,Sortie #92817,https://biolit.fr/sorties/sortie-92817/,Tarjus Oceane,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/053EFDE3-43B3-4E28-A23A-6B7BD9F8DCB2-scaled.jpg,5/14/2025 0:00,9.0:15,10.000005,42.5724050000000,3.0450510000000,Fédération des réserves naturelles catalanes,Zone Natura 2000-Embouchure du Tech et Grau de la Massane,92818,Observation #92818,https://biolit.fr/observations/observation-92818/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/053EFDE3-43B3-4E28-A23A-6B7BD9F8DCB2-scaled.jpg,,,Identifiable +N1,92933,Sortie #92933,https://biolit.fr/sorties/sortie-92933/,Ecole Gentillerie,https://biolit.fr/wp-content/uploads/jet-form-builder/ade2af53b0571d4f44a346640af988d9/2025/05/WhatsApp-Image-2025-05-15-at-16.37.281.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ade2af53b0571d4f44a346640af988d9/2025/05/WhatsApp-Image-2025-05-15-at-16.37.28.jpeg,5/15/2025 0:00,14.0000000,16.0000000,48.6544180000000,-2.02415600000000,Planète Mer,Fort National,92934,Observation #92934,https://biolit.fr/observations/observation-92934/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/ade2af53b0571d4f44a346640af988d9/2025/05/WhatsApp-Image-2025-05-15-at-16.37.281.jpeg,,,Identifiable +N1,92933,Sortie #92933,https://biolit.fr/sorties/sortie-92933/,Ecole Gentillerie,https://biolit.fr/wp-content/uploads/jet-form-builder/ade2af53b0571d4f44a346640af988d9/2025/05/WhatsApp-Image-2025-05-15-at-16.37.281.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ade2af53b0571d4f44a346640af988d9/2025/05/WhatsApp-Image-2025-05-15-at-16.37.28.jpeg,5/15/2025 0:00,14.0000000,16.0000000,48.6544180000000,-2.02415600000000,Planète Mer,Fort National,92936,Observation #92936,https://biolit.fr/observations/observation-92936/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ade2af53b0571d4f44a346640af988d9/2025/05/WhatsApp-Image-2025-05-15-at-16.37.28.jpeg,,,Identifiable +N1,93107,Sortie #93107,https://biolit.fr/sorties/sortie-93107/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bryozoaire-orange-vif-a-point-noir-1-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026210000000,-1.84731500000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93108,Observation #93108,https://biolit.fr/observations/observation-93108/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-scaled.jpg,,,Ne sais pas +N1,93107,Sortie #93107,https://biolit.fr/sorties/sortie-93107/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bryozoaire-orange-vif-a-point-noir-1-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026210000000,-1.84731500000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93110,Observation #93110,https://biolit.fr/observations/observation-93110/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-1-scaled.jpg,,TRUE,Identifiable +N1,93107,Sortie #93107,https://biolit.fr/sorties/sortie-93107/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bryozoaire-orange-vif-a-point-noir-1-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026210000000,-1.84731500000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93112,Observation #93112,https://biolit.fr/observations/observation-93112/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-1-scaled.jpg,,,Identifiable +N1,93107,Sortie #93107,https://biolit.fr/sorties/sortie-93107/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bryozoaire-orange-vif-a-point-noir-1-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026210000000,-1.84731500000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93114,Observation #93114,https://biolit.fr/observations/observation-93114/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-scaled.jpg,,TRUE,Identifiable +N1,93107,Sortie #93107,https://biolit.fr/sorties/sortie-93107/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bryozoaire-orange-vif-a-point-noir-1-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026210000000,-1.84731500000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93116,Observation #93116,https://biolit.fr/observations/observation-93116/,Dendrodoa grossularia,Ascidie groseille,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-5-scaled.jpg,,,Identifiable +N1,93107,Sortie #93107,https://biolit.fr/sorties/sortie-93107/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bryozoaire-orange-vif-a-point-noir-1-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026210000000,-1.84731500000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93118,Observation #93118,https://biolit.fr/observations/observation-93118/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-2-scaled.jpg,,TRUE,Identifiable +N1,93107,Sortie #93107,https://biolit.fr/sorties/sortie-93107/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bryozoaire-orange-vif-a-point-noir-1-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026210000000,-1.84731500000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93120,Observation #93120,https://biolit.fr/observations/observation-93120/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-1-scaled.jpg,,TRUE,Identifiable +N1,93107,Sortie #93107,https://biolit.fr/sorties/sortie-93107/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bryozoaire-orange-vif-a-point-noir-1-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026210000000,-1.84731500000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93122,Observation #93122,https://biolit.fr/observations/observation-93122/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-etoile-1-scaled.jpg,,TRUE,Identifiable +N1,93107,Sortie #93107,https://biolit.fr/sorties/sortie-93107/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bryozoaire-orange-vif-a-point-noir-1-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026210000000,-1.84731500000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93124,Observation #93124,https://biolit.fr/observations/observation-93124/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-4-scaled.jpg,,,Identifiable +N1,93107,Sortie #93107,https://biolit.fr/sorties/sortie-93107/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bryozoaire-orange-vif-a-point-noir-1-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026210000000,-1.84731500000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93126,Observation #93126,https://biolit.fr/observations/observation-93126/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bryozoaire-orange-vif-a-point-noir-1-scaled.jpg,,TRUE,Identifiable +N1,93140,Sortie #93140,https://biolit.fr/sorties/sortie-93140/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ciona-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ciona-intestinale-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Cione-intestinale-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-a-capuchon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-a-capuchon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Eponge-orange-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7027030000000,-1.84756500000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93141,Observation #93141,https://biolit.fr/observations/observation-93141/,Ciona intestinalis,Cione intestinale,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ciona-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ciona-intestinale-2-scaled.jpg,,TRUE,Identifiable +N1,93140,Sortie #93140,https://biolit.fr/sorties/sortie-93140/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ciona-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ciona-intestinale-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Cione-intestinale-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-a-capuchon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-a-capuchon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Eponge-orange-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7027030000000,-1.84756500000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93143,Observation #93143,https://biolit.fr/observations/observation-93143/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-marbre-2-scaled.jpg,,TRUE,Identifiable +N1,93140,Sortie #93140,https://biolit.fr/sorties/sortie-93140/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ciona-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ciona-intestinale-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Cione-intestinale-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-a-capuchon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-a-capuchon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Eponge-orange-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7027030000000,-1.84756500000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93145,Observation #93145,https://biolit.fr/observations/observation-93145/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-2-1-scaled.jpg,,TRUE,Identifiable +N1,93140,Sortie #93140,https://biolit.fr/sorties/sortie-93140/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ciona-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ciona-intestinale-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Cione-intestinale-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-a-capuchon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-a-capuchon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Eponge-orange-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7027030000000,-1.84756500000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93147,Observation #93147,https://biolit.fr/observations/observation-93147/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crepidule-1-scaled.jpg,,TRUE,Identifiable +N1,93140,Sortie #93140,https://biolit.fr/sorties/sortie-93140/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ciona-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ciona-intestinale-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Cione-intestinale-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-a-capuchon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-a-capuchon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Eponge-orange-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7027030000000,-1.84756500000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93149,Observation #93149,https://biolit.fr/observations/observation-93149/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-a-capuchon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-a-capuchon-2-scaled.jpg,,,Identifiable +N1,93140,Sortie #93140,https://biolit.fr/sorties/sortie-93140/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ciona-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ciona-intestinale-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Cione-intestinale-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-a-capuchon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-a-capuchon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Eponge-orange-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7027030000000,-1.84756500000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93151,Observation #93151,https://biolit.fr/observations/observation-93151/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Eponge-orange-2-scaled.jpg,,,Identifiable +N1,93165,Sortie #93165,https://biolit.fr/sorties/sortie-93165/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gibbule-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gobie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gobie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG20250513153655-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Oeufs-de-bigorneau-perceur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-indeterminee-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026170000000,-1.84714900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93166,Observation #93166,https://biolit.fr/observations/observation-93166/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gibbule-2-1-scaled.jpg,,TRUE,Identifiable +N1,93165,Sortie #93165,https://biolit.fr/sorties/sortie-93165/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gibbule-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gobie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gobie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG20250513153655-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Oeufs-de-bigorneau-perceur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-indeterminee-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026170000000,-1.84714900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93168,Observation #93168,https://biolit.fr/observations/observation-93168/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gobie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gobie-2-scaled.jpg,,,Identifiable +N1,93165,Sortie #93165,https://biolit.fr/sorties/sortie-93165/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gibbule-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gobie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gobie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG20250513153655-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Oeufs-de-bigorneau-perceur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-indeterminee-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026170000000,-1.84714900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93170,Observation #93170,https://biolit.fr/observations/observation-93170/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG20250513153655-scaled.jpg,,,Ne sais pas +N1,93165,Sortie #93165,https://biolit.fr/sorties/sortie-93165/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gibbule-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gobie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gobie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG20250513153655-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Oeufs-de-bigorneau-perceur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-indeterminee-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026170000000,-1.84714900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93172,Observation #93172,https://biolit.fr/observations/observation-93172/,Nerophis ophidion,Nérophis ophidion,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-3-scaled.jpg,,,Identifiable +N1,93165,Sortie #93165,https://biolit.fr/sorties/sortie-93165/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gibbule-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gobie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gobie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG20250513153655-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Oeufs-de-bigorneau-perceur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-indeterminee-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026170000000,-1.84714900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93174,Observation #93174,https://biolit.fr/observations/observation-93174/,Ocenebra erinaceus,Ponte de Bigorneau perceur,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Oeufs-de-bigorneau-perceur.jpg,,TRUE,Identifiable +N1,93165,Sortie #93165,https://biolit.fr/sorties/sortie-93165/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gibbule-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gobie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gobie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG20250513153655-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Oeufs-de-bigorneau-perceur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-indeterminee-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026170000000,-1.84714900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93176,Observation #93176,https://biolit.fr/observations/observation-93176/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-de-pourpre-2-scaled.jpg,,TRUE,Identifiable +N1,93165,Sortie #93165,https://biolit.fr/sorties/sortie-93165/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gibbule-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gobie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gobie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG20250513153655-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Oeufs-de-bigorneau-perceur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-indeterminee-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026170000000,-1.84714900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93178,Observation #93178,https://biolit.fr/observations/observation-93178/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-indeterminee-2-scaled.jpg,,,Ne sais pas +N1,93188,Sortie #93188,https://biolit.fr/sorties/sortie-93188/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Siponcle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Siponcle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026500000000,-1.84733800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93189,Observation #93189,https://biolit.fr/observations/observation-93189/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Porcellane-2-scaled.jpg,,TRUE,Identifiable +N1,93188,Sortie #93188,https://biolit.fr/sorties/sortie-93188/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Siponcle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Siponcle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026500000000,-1.84733800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93191,Observation #93191,https://biolit.fr/observations/observation-93191/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Pourpre-2-scaled.jpg,,TRUE,Identifiable +N1,93188,Sortie #93188,https://biolit.fr/sorties/sortie-93188/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Siponcle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Siponcle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026500000000,-1.84733800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93193,Observation #93193,https://biolit.fr/observations/observation-93193/,Aspidosiphon muelleri,Siponcle commensal,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Siponcle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Siponcle-2-scaled.jpg,,,Identifiable +N1,93188,Sortie #93188,https://biolit.fr/sorties/sortie-93188/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Siponcle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Siponcle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026500000000,-1.84733800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93195,Observation #93195,https://biolit.fr/observations/observation-93195/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-2-scaled.jpg,,TRUE,Identifiable +N1,93235,Sortie #93235,https://biolit.fr/sorties/sortie-93235/,Carré Laelys,https://biolit.fr/wp-content/uploads/jet-form-builder/5af00f00ca53472f05d6dec6879268f9/2025/05/IMG_1532.jpeg,5/17/2025 0:00,11.0:56,11.0:57,48.6187970000000,-2.17392000000000,Saint Jacut Environnement,Baie de lancieux,93236,Observation #93236,https://biolit.fr/observations/observation-93236/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5af00f00ca53472f05d6dec6879268f9/2025/05/IMG_1532.jpeg,,,non-identifiable +N1,93242,Sortie #93242,https://biolit.fr/sorties/sortie-93242/,Louisclaire,https://biolit.fr/wp-content/uploads/jet-form-builder/fcad1075fa45bedbb9f432a57b2380f1/2025/05/20250509_121022-scaled.jpg,05/09/2025,10.000002,10.000002,48.8576550,2.4904490,Association IODDE - CPIE Marennes-Oléron,Saint trojan les bains,93243,Observation #93243,https://biolit.fr/observations/observation-93243/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/fcad1075fa45bedbb9f432a57b2380f1/2025/05/20250509_121022-scaled.jpg,,FALSE,Identifiable +N1,93242,Sortie #93242,https://biolit.fr/sorties/sortie-93242/,Louisclaire,https://biolit.fr/wp-content/uploads/jet-form-builder/fcad1075fa45bedbb9f432a57b2380f1/2025/05/20250509_121022-scaled.jpg,05/09/2025,10.000002,10.000002,48.8576550,2.4904490,Association IODDE - CPIE Marennes-Oléron,Saint trojan les bains,93412,Observation #93412,https://biolit.fr/observations/observation-93412/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/fcad1075fa45bedbb9f432a57b2380f1/2025/05/20250509_121022-scaled.jpg,,FALSE, +N1,93252,Sortie #93252,https://biolit.fr/sorties/sortie-93252/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5622.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5621.jpeg,05/09/2025,16.0:12,16.0:15,43.2697290000000,6.58688300000000,,Port Grimaud petite plage,93253,Observation #93253,https://biolit.fr/observations/observation-93253/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5622.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5621.jpeg,,TRUE,Identifiable +N1,93257,Sortie #93257,https://biolit.fr/sorties/sortie-93257/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5620.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5619.jpeg,05/09/2025,16.0:43,16.0:47,43.2709790000000,6.5877630000000,,Port grimaud passe d’entrée,93258,Observation #93258,https://biolit.fr/observations/observation-93258/,Sterna hirundo,Sterne pierregarin,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5620.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5619.jpeg,,TRUE,Identifiable +N1,93261,Sortie #93261,https://biolit.fr/sorties/sortie-93261/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5495.jpg,05/09/2025,16.000006,16.0000000,43.2714320000000,6.58601400000000,,Port grimaud petite plage,93262,Observation #93262,https://biolit.fr/observations/observation-93262/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5495.jpg,,TRUE,Identifiable +N1,93265,Sortie #93265,https://biolit.fr/sorties/sortie-93265/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5499-scaled.jpeg,05/09/2025,16.000006,16.0000000,43.271417000000,6.58602200000000,,Port grimaud petite plage,93266,Observation #93266,https://biolit.fr/observations/observation-93266/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5499-scaled.jpeg,,TRUE,Identifiable +N1,93270,Sortie #93270,https://biolit.fr/sorties/sortie-93270/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5512.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5512-1-scaled.jpg,05/09/2025,16.000007,16.0:12,43.2714480000000,6.58601400000000,,Port grimaud petite plage,93271,Observation #93271,https://biolit.fr/observations/observation-93271/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5512-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5512.jpg,,TRUE,Identifiable +N1,93274,Sortie #93274,https://biolit.fr/sorties/sortie-93274/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5457.jpg,05/09/2025,15.0:59,16.000008,43.2714480000000,6.58605700000000,,Port Grimaud petite plage,93275,Observation #93275,https://biolit.fr/observations/observation-93275/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5457.jpg,,TRUE,Identifiable +N1,93279,Sortie #93279,https://biolit.fr/sorties/sortie-93279/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5259.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5257.jpeg,05/06/2025,17.0:54,17.0:59,43.2723850000000,6.58711900000000,,Port grimaud grande plage jetée,93280,Observation #93280,https://biolit.fr/observations/observation-93280/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5259.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5257.jpeg,,TRUE,Identifiable +N1,93285,Sortie #93285,https://biolit.fr/sorties/sortie-93285/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4261.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4268.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4269.jpg,4/23/2025 0:00,15.0:33,15.0:49,43.2939440000000,6.63737300000000,,Large sainte maxime,93286,Observation #93286,https://biolit.fr/observations/observation-93286/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4261.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4268.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4269.jpg,,TRUE,Identifiable +N1,93306,Sortie #93306,https://biolit.fr/sorties/sortie-93306/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Amenome-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anguille-jeune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-2-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025960000000,-1.84733900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93307,Observation #93307,https://biolit.fr/observations/observation-93307/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Amenome-fraise-1-scaled.jpg,,,Identifiable +N1,93306,Sortie #93306,https://biolit.fr/sorties/sortie-93306/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Amenome-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anguille-jeune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-2-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025960000000,-1.84733900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93309,Observation #93309,https://biolit.fr/observations/observation-93309/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-2-scaled.jpg,,,Ne sais pas +N1,93306,Sortie #93306,https://biolit.fr/sorties/sortie-93306/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Amenome-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anguille-jeune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-2-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025960000000,-1.84733900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93311,Observation #93311,https://biolit.fr/observations/observation-93311/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-2-scaled.jpg,,,Identifiable +N1,93306,Sortie #93306,https://biolit.fr/sorties/sortie-93306/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Amenome-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anguille-jeune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-2-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025960000000,-1.84733900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93313,Observation #93313,https://biolit.fr/observations/observation-93313/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-1-scaled.jpg,,TRUE,Identifiable +N1,93306,Sortie #93306,https://biolit.fr/sorties/sortie-93306/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Amenome-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anguille-jeune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-2-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025960000000,-1.84733900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93315,Observation #93315,https://biolit.fr/observations/observation-93315/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anguille-jeune-1.jpg,,,Identifiable +N1,93306,Sortie #93306,https://biolit.fr/sorties/sortie-93306/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Amenome-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anguille-jeune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-2-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025960000000,-1.84733900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93317,Observation #93317,https://biolit.fr/observations/observation-93317/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Balane-scaled.jpg,,TRUE,Identifiable +N1,93306,Sortie #93306,https://biolit.fr/sorties/sortie-93306/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Amenome-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anguille-jeune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-2-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025960000000,-1.84733900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93319,Observation #93319,https://biolit.fr/observations/observation-93319/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-1-scaled.jpg,,TRUE,Identifiable +N1,93306,Sortie #93306,https://biolit.fr/sorties/sortie-93306/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Amenome-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anguille-jeune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-2-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025960000000,-1.84733900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93321,Observation #93321,https://biolit.fr/observations/observation-93321/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-3-scaled.jpg,,,Identifiable +N1,93306,Sortie #93306,https://biolit.fr/sorties/sortie-93306/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Amenome-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anguille-jeune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-2-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025960000000,-1.84733900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93323,Observation #93323,https://biolit.fr/observations/observation-93323/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-2-scaled.jpg,,,Identifiable +N1,93338,Sortie #93338,https://biolit.fr/sorties/sortie-93338/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-albinos-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-marbre-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-marbre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-a-capuchon-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-a-capuchon-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG20250522102432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG20250522102438-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Lancon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Lancon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Lancon-3-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7026110000000,-1.84746800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,,,,,,,,,, +N1,93340,Sortie #93340,https://biolit.fr/sorties/sortie-93340/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5038.jpeg,05/01/2025,14.0:47,14.0000000,43.0483170000000,5.86823300000000,,Cap Sicié Six Fours large,93341,Observation #93341,https://biolit.fr/observations/observation-93341/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5038.jpeg,,,Identifiable +N1,93347,Sortie #93347,https://biolit.fr/sorties/sortie-93347/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4030.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4029.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4031-scaled.jpeg,4/18/2025 0:00,13.000006,13.000009,43.2707980000000,6.58701200000000,,Port grimaud Petite plage,93348,Observation #93348,https://biolit.fr/observations/observation-93348/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4030.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4029.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4031-scaled.jpeg,,,Identifiable +N1,93353,Sortie #93353,https://biolit.fr/sorties/sortie-93353/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/85cb2d94-f42a-4cbf-bf20-c39ec4ae2812.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_6380.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_6379.jpeg,4/29/2025 0:00,19.0000000,19.000006,43.2696710000000,6.5798020000000,,Port grimaud plagette PG2,93354,Observation #93354,https://biolit.fr/observations/observation-93354/,Serranus hepatus,Serran-hépate,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/85cb2d94-f42a-4cbf-bf20-c39ec4ae2812.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_6380.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_6379.jpeg,,TRUE,Identifiable +N1,93361,Sortie #93361,https://biolit.fr/sorties/sortie-93361/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_0221.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_0221-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4543-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4546-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4490-scaled.jpeg,4/25/2025 0:00,15.0:45,17.0:45,43.2735150000000,6.59853500000000,,Golfe de Saint tropez,93362,Observation #93362,https://biolit.fr/observations/observation-93362/,Puffinus yelkouan,Puffin de Yelkouan,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_0221.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_0221-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4546-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4543-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4490-scaled.jpeg,,TRUE,Identifiable +N1,93365,Sortie #93365,https://biolit.fr/sorties/sortie-93365/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_3463.jpeg,3/17/2025 0:00,17.0:53,18.0000000,43.2704950000000,6.58541900000000,,Port Grimaud petite plage,93366,Observation #93366,https://biolit.fr/observations/observation-93366/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_3463.jpeg,,TRUE,Identifiable +N1,93369,Sortie #93369,https://biolit.fr/sorties/sortie-93369/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_3465.jpeg,3/17/2025 0:00,17.0:56,17.0:59,43.2705070000000,6.585494000000,,Port Grimaud petite plage,93370,Observation #93370,https://biolit.fr/observations/observation-93370/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_3465.jpeg,,TRUE,Identifiable +N1,93373,Sortie #93373,https://biolit.fr/sorties/sortie-93373/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_3505.jpg,3/19/2025 0:00,17.0:26,16.0:33,43.2707290000000,6.58540800000000,,Port Grimaud petite plage,93374,Observation #93374,https://biolit.fr/observations/observation-93374/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_3505.jpg,,TRUE,Identifiable +N1,93378,Sortie #93378,https://biolit.fr/sorties/sortie-93378/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_2938.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_2937.jpg,03/08/2025,12.000001,12.000009,43.2707410000000,6.58551000000000,,Port Grimaud petite plage,93379,Observation #93379,https://biolit.fr/observations/observation-93379/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_2938.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_2937.jpg,,TRUE,Identifiable +N1,93383,Sortie #93383,https://biolit.fr/sorties/sortie-93383/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/sepia-officinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/salpe-3-scaled.jpg,05/09/2025,9.0000000,11.0000000,43.4323,1.2556,Centre de la mer,Plage des casernes de Seignosse,93384,Observation #93384,https://biolit.fr/observations/observation-93384/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/sepia-officinalis-scaled.jpg,,TRUE,Identifiable +N1,93383,Sortie #93383,https://biolit.fr/sorties/sortie-93383/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/sepia-officinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/salpe-3-scaled.jpg,05/09/2025,9.0000000,11.0000000,43.4323,1.2556,Centre de la mer,Plage des casernes de Seignosse,93386,Observation #93386,https://biolit.fr/observations/observation-93386/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/salpe-3-scaled.jpg,,FALSE,non-identifiable +N1,93402,Sortie #93402,https://biolit.fr/sorties/sortie-93402/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/oeuf-de-raie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/Test-dOursin-coeur-ou-souris-de-mer_echinocardium-cordatum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/Periostracum-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/gorgone-sp_leptogorgia-sarmentosa-a-confirmer-2-scaled.jpg,05/09/2025,9.0000000,11.0000000,43.7236790000000,-1.4320960000000,Centre de la mer,Plage des casernes de Seignosse,93405,Observation #93405,https://biolit.fr/observations/observation-93405/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/Test-dOursin-coeur-ou-souris-de-mer_echinocardium-cordatum-scaled.jpg,,TRUE,Identifiable +N1,93402,Sortie #93402,https://biolit.fr/sorties/sortie-93402/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/oeuf-de-raie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/Test-dOursin-coeur-ou-souris-de-mer_echinocardium-cordatum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/Periostracum-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/gorgone-sp_leptogorgia-sarmentosa-a-confirmer-2-scaled.jpg,05/09/2025,9.0000000,11.0000000,43.7236790000000,-1.4320960000000,Centre de la mer,Plage des casernes de Seignosse,93407,Observation #93407,https://biolit.fr/observations/observation-93407/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/Periostracum-2-scaled.jpg,,,Ne sais pas +N1,93402,Sortie #93402,https://biolit.fr/sorties/sortie-93402/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/oeuf-de-raie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/Test-dOursin-coeur-ou-souris-de-mer_echinocardium-cordatum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/Periostracum-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/gorgone-sp_leptogorgia-sarmentosa-a-confirmer-2-scaled.jpg,05/09/2025,9.0000000,11.0000000,43.7236790000000,-1.4320960000000,Centre de la mer,Plage des casernes de Seignosse,93409,Observation #93409,https://biolit.fr/observations/observation-93409/,Eunicella verrucosa,Gorgone verruqueuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/gorgone-sp_leptogorgia-sarmentosa-a-confirmer-2-scaled.jpg,,TRUE,Identifiable +N1,93402,Sortie #93402,https://biolit.fr/sorties/sortie-93402/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/oeuf-de-raie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/Test-dOursin-coeur-ou-souris-de-mer_echinocardium-cordatum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/Periostracum-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/gorgone-sp_leptogorgia-sarmentosa-a-confirmer-2-scaled.jpg,05/09/2025,9.0000000,11.0000000,43.7236790000000,-1.4320960000000,Centre de la mer,Plage des casernes de Seignosse,96147,Observation #96147,https://biolit.fr/observations/observation-96147/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/oeuf-de-raie-1-scaled.jpg,,TRUE,Identifiable +N1,93415,Sortie #93415,https://biolit.fr/sorties/sortie-93415/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/05/1000017172-scaled.jpg,5/26/2025 0:00,14.0:25,14.0:31,48.654265000000,-2.02321200000000,Planète Mer (antenne Dinard),fort national,93416,Observation #93416,https://biolit.fr/observations/observation-93416/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/05/1000017172-scaled.jpg,,TRUE,Identifiable +N1,93567,Sortie #93567,https://biolit.fr/sorties/sortie-93567/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/05/c-Agathe_Bouet_PM-2-scaled.jpg,5/26/2025 0:00,14.0000000,15.0000000,48.6548710000000,-2.02422200000000,Planète Mer (antenne Dinard),Fort National,93568,Observation #93568,https://biolit.fr/observations/observation-93568/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/05/c-Agathe_Bouet_PM-2-scaled.jpg,,TRUE,Identifiable +N1,93572,Sortie #93572,https://biolit.fr/sorties/sortie-93572/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/05/Crabe_vert_juvenile-c-Agathe_Bouet_PM.jpg,5/26/2025 0:00,14.0000000,15.0000000,48.6544880000000,-2.0241420000000,Planète Mer (antenne Dinard),Fort National,93573,Observation #93573,https://biolit.fr/observations/observation-93573/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/05/Crabe_vert_juvenile-c-Agathe_Bouet_PM.jpg,,TRUE,Identifiable +N1,93581,Sortie #93581,https://biolit.fr/sorties/sortie-93581/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024139-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024150-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024145-scaled.jpg,5/27/2025 0:00,14.0:15,15.0:45,43.5261980000000,4.13842300000000,LABELBLEU,Plage Nord Grau-du-Roi,93582,Observation #93582,https://biolit.fr/observations/observation-93582/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024139-scaled.jpg,,TRUE,Identifiable +N1,93581,Sortie #93581,https://biolit.fr/sorties/sortie-93581/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024139-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024150-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024145-scaled.jpg,5/27/2025 0:00,14.0:15,15.0:45,43.5261980000000,4.13842300000000,LABELBLEU,Plage Nord Grau-du-Roi,93584,Observation #93584,https://biolit.fr/observations/observation-93584/,Callinectes sapidus,Crabe bleu américain,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024150-scaled.jpg,,TRUE,Identifiable +N1,93581,Sortie #93581,https://biolit.fr/sorties/sortie-93581/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024139-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024150-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024145-scaled.jpg,5/27/2025 0:00,14.0:15,15.0:45,43.5261980000000,4.13842300000000,LABELBLEU,Plage Nord Grau-du-Roi,93586,Observation #93586,https://biolit.fr/observations/observation-93586/,Styela plicata,Ascidie plissée,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024145-scaled.jpg,,,Identifiable +N1,93581,Sortie #93581,https://biolit.fr/sorties/sortie-93581/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024139-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024150-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024145-scaled.jpg,5/27/2025 0:00,14.0:15,15.0:45,43.5261980000000,4.13842300000000,LABELBLEU,Plage Nord Grau-du-Roi,93588,Observation #93588,https://biolit.fr/observations/observation-93588/,Undaria pinnatifida,Wakamé,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024128-scaled.jpg,,,Identifiable +N1,93603,Sortie #93603,https://biolit.fr/sorties/sortie-93603/,ABCplouguerneau,https://biolit.fr/wp-content/uploads/jet-form-builder/ae988d37daa45e499013e9aa15343ee1/2025/05/IMG-20250525-WA0014.jpg,5/26/2025 0:00,9.0000000,11.0000000,48.6254740000000,-4.55902100000000,,Aod ar Reun,,,,,,,,,, +N1,93718,Sortie #93718,https://biolit.fr/sorties/sortie-93718/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_0090-1.jpg,5/29/2025 0:00,19.0:55,19.0:55,43.3863410000000,3.46221000000000,,Plage du Castellas,,,,,,,,,, +N1,93722,Sortie #93722,https://biolit.fr/sorties/sortie-93722/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_9860.jpg,1/19/2025 0:00,18.0000000,18.0000000,43.3251320000000,3.5653520000000,,Plage Robinson,,,,,,,,,, +N1,93726,Sortie #93726,https://biolit.fr/sorties/sortie-93726/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_9688-2-scaled.jpg,4/26/2025 0:00,17.0:21,17.0:21,43.3257680000000,3.56596500000000,,Plage Robinson,,,,,,,,,, +N1,93728,Sortie #93728,https://biolit.fr/sorties/sortie-93728/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_9499-scaled.jpg,4/21/2025 0:00,18.0:24,18.0:24,43.3333910000000,3.57422100000000,,Plage Vassal,93729,Observation #93729,https://biolit.fr/observations/observation-93729/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_9499-scaled.jpg,,,Identifiable +N1,93732,Sortie #93732,https://biolit.fr/sorties/sortie-93732/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_9667.jpg,4/26/2025 0:00,17.000006,17.000006,43.16288,3.29106,,Plage Rochelongue,93733,Observation #93733,https://biolit.fr/observations/observation-93733/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_9667.jpg,,,Identifiable +N1,93736,Sortie #93736,https://biolit.fr/sorties/sortie-93736/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_8963-scaled.jpg,04/11/2025,19.000002,19.000002,43.16288,3.29106,,Plage Robinson,93737,Observation #93737,https://biolit.fr/observations/observation-93737/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_8963-scaled.jpg,,TRUE,Identifiable +N1,93740,Sortie #93740,https://biolit.fr/sorties/sortie-93740/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_8258-scaled.jpg,1/26/2025 0:00,15.0:34,15.0:34,43.3333750000000,3.57419500000000,,Plage Vassal,93741,Observation #93741,https://biolit.fr/observations/observation-93741/,Acrocnida brachiata,Ophiure fouisseuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_8258-scaled.jpg,,,Identifiable +N1,93744,Sortie #93744,https://biolit.fr/sorties/sortie-93744/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/DSC_0043-scaled.jpg,3/22/2025 0:00,11.0000000,11.0000000,43.3377720000000,3.58223500000000,,Plage du Castellas,93745,Observation #93745,https://biolit.fr/observations/observation-93745/,Janthina janthina,Janthine commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/DSC_0043-scaled.jpg,,,Identifiable +N1,93748,Sortie #93748,https://biolit.fr/sorties/sortie-93748/,bourigault christine,https://biolit.fr/wp-content/uploads/jet-form-builder/45d50e00ea1eb1588afbc6d6ed3d68ad/2025/05/IMG_20250530_125436-scaled.jpg,5/30/2025 0:00,12.0000000,12.0000000,47.541897000000,-362.797608000000,,FOURNEVAY SARZEAU,93749,Observation #93749,https://biolit.fr/observations/observation-93749/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/45d50e00ea1eb1588afbc6d6ed3d68ad/2025/05/IMG_20250530_125436-scaled.jpg,,,Ne sais pas +N1,93752,Sortie #93752,https://biolit.fr/sorties/sortie-93752/,bourigault christine,https://biolit.fr/wp-content/uploads/jet-form-builder/45d50e00ea1eb1588afbc6d6ed3d68ad/2025/05/IMG_20250529_200607-scaled.jpg,5/29/2025 0:00,19.0:38,19.0:38,47.5548080000000,-2.73834200000000,,FOURNEVAY SARZEAU,93753,Observation #93753,https://biolit.fr/observations/observation-93753/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/45d50e00ea1eb1588afbc6d6ed3d68ad/2025/05/IMG_20250529_200607-scaled.jpg,,,Identifiable +N1,93756,Sortie #93756,https://biolit.fr/sorties/sortie-93756/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_0180-scaled.jpg,5/30/2025 0:00,20.000008,20.000008,43.288366,3.436941,,La Tamarissière,93757,Observation #93757,https://biolit.fr/observations/observation-93757/,Jania rubens,Janie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_0180-scaled.jpg,,,Identifiable +N1,93760,Sortie #93760,https://biolit.fr/sorties/sortie-93760/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_0098-scaled.jpg,5/30/2025 0:00,19.000008,19.000008,43.288366,3.436941,,La Tamarissière,93761,Observation #93761,https://biolit.fr/observations/observation-93761/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_0098-scaled.jpg,,TRUE,Identifiable +N1,93764,Sortie #93764,https://biolit.fr/sorties/sortie-93764/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_0169-scaled.jpg,5/30/2025 0:00,20.000004,20.000004,43.28836,3.437013,,La Tamarissière,93765,Observation #93765,https://biolit.fr/observations/observation-93765/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_0169-scaled.jpg,,TRUE,Identifiable +N1,93768,Sortie #93768,https://biolit.fr/sorties/sortie-93768/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_0100.jpg,5/30/2025 0:00,19.0:12,19.0:12,43.28836,3.437013,,La Tamarissière,93769,Observation #93769,https://biolit.fr/observations/observation-93769/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_0100.jpg,,TRUE,Identifiable +N1,93772,Sortie #93772,https://biolit.fr/sorties/sortie-93772/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_0170-scaled.jpg,5/30/2025 0:00,20.000004,20.000004,43.28836,3.437013,,La Tamarissière,93773,Observation #93773,https://biolit.fr/observations/observation-93773/,Euraphia depressa,Balane rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_0170-scaled.jpg,,,Identifiable +N1,93776,Sortie #93776,https://biolit.fr/sorties/sortie-93776/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/06/IMG_0246-scaled.jpg,5/31/2025 0:00,20.000009,20.000009,43.322431,3.561839,,Plage Robinson,93777,Observation #93777,https://biolit.fr/observations/observation-93777/,Portumnus latipes,Etrille élégante,,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/06/IMG_0246-scaled.jpg,,TRUE,Identifiable +N1,93780,Sortie #93780,https://biolit.fr/sorties/sortie-93780/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/06/IMG_0237-scaled.jpg,5/31/2025 0:00,19.000006,19.000006,43.3243150000000,3.56386700000000,,Plage Robinson,93781,Observation #93781,https://biolit.fr/observations/observation-93781/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/06/IMG_0237-scaled.jpg,,,Identifiable +N1,93784,Sortie #93784,https://biolit.fr/sorties/sortie-93784/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/06/IMG_0257-scaled.jpg,5/31/2025 0:00,20.0:26,20.0:26,43.3276930000000,3.5677460000000,,Plage Robinson,93785,Observation #93785,https://biolit.fr/observations/observation-93785/,Ophiura ophiura,Ophiure commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/06/IMG_0257-scaled.jpg,,TRUE,Identifiable +N1,93831,Sortie #93831,https://biolit.fr/sorties/sortie-93831/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/06/IMG_0205-scaled.jpg,5/30/2025 0:00,20.0:17,20.0:17,43.28995,3.433302,,La Tamarissière,93832,Observation #93832,https://biolit.fr/observations/observation-93832/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/06/IMG_0205-scaled.jpg,,,Identifiable +N1,93835,Sortie #93835,https://biolit.fr/sorties/sortie-93835/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/06/IMG_0209-scaled.jpg,5/30/2025 0:00,20.000004,20.000004,43.28995,3.433302,,La Tamarissière,93836,Observation #93836,https://biolit.fr/observations/observation-93836/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/06/IMG_0209-scaled.jpg,,TRUE,Identifiable +N1,93839,Sortie #93839,https://biolit.fr/sorties/sortie-93839/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/06/IMG_0212-scaled.jpg,5/30/2025 0:00,20.0:24,20.0:24,43.28995,3.433302,,La Tamarissière,93840,Observation #93840,https://biolit.fr/observations/observation-93840/,Dictyota dichotoma,Dictyote,,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/06/IMG_0212-scaled.jpg,,,Ne sais pas +N1,93857,Sortie #93857,https://biolit.fr/sorties/sortie-93857/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Coque-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-albinos-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-a-capuchon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-a-capuchon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/IMG20250522102432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/IMG20250522102438-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-3-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025990000000,-1.84718600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93858,Observation #93858,https://biolit.fr/observations/observation-93858/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Coque-2-scaled.jpg,,,Identifiable +N1,93857,Sortie #93857,https://biolit.fr/sorties/sortie-93857/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Coque-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-albinos-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-a-capuchon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-a-capuchon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/IMG20250522102432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/IMG20250522102438-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-3-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025990000000,-1.84718600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93860,Observation #93860,https://biolit.fr/observations/observation-93860/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-albinos-1-scaled.jpg,,,Ne sais pas +N1,93857,Sortie #93857,https://biolit.fr/sorties/sortie-93857/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Coque-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-albinos-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-a-capuchon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-a-capuchon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/IMG20250522102432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/IMG20250522102438-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-3-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025990000000,-1.84718600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93862,Observation #93862,https://biolit.fr/observations/observation-93862/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-2-scaled.jpg,,TRUE,Identifiable +N1,93857,Sortie #93857,https://biolit.fr/sorties/sortie-93857/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Coque-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-albinos-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-a-capuchon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-a-capuchon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/IMG20250522102432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/IMG20250522102438-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-3-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025990000000,-1.84718600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93864,Observation #93864,https://biolit.fr/observations/observation-93864/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-3-scaled.jpg,,,Identifiable +N1,93857,Sortie #93857,https://biolit.fr/sorties/sortie-93857/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Coque-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-albinos-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-a-capuchon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-a-capuchon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/IMG20250522102432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/IMG20250522102438-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-3-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025990000000,-1.84718600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93866,Observation #93866,https://biolit.fr/observations/observation-93866/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-a-capuchon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-a-capuchon-2-scaled.jpg,,,Identifiable +N1,93857,Sortie #93857,https://biolit.fr/sorties/sortie-93857/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Coque-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-albinos-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-a-capuchon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-a-capuchon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/IMG20250522102432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/IMG20250522102438-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-3-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025990000000,-1.84718600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93868,Observation #93868,https://biolit.fr/observations/observation-93868/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/IMG20250522102432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/IMG20250522102438-scaled.jpg,,,Ne sais pas +N1,93857,Sortie #93857,https://biolit.fr/sorties/sortie-93857/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Coque-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-albinos-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-a-capuchon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-a-capuchon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/IMG20250522102432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/IMG20250522102438-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-3-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025990000000,-1.84718600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93870,Observation #93870,https://biolit.fr/observations/observation-93870/,Ammodytes americanus,Lançon,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-3-scaled.jpg,,,Identifiable +N1,93888,Sortie #93888,https://biolit.fr/sorties/sortie-93888/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-et-sacculine-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93889,Observation #93889,https://biolit.fr/observations/observation-93889/,Gaidropsarus vulgaris,Motelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-4-scaled.jpg,,,Identifiable +N1,93888,Sortie #93888,https://biolit.fr/sorties/sortie-93888/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-et-sacculine-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93891,Observation #93891,https://biolit.fr/observations/observation-93891/,Nerophis ophidion,Nérophis ophidion,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-2-scaled.jpg,,,Identifiable +N1,93888,Sortie #93888,https://biolit.fr/sorties/sortie-93888/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-et-sacculine-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93893,Observation #93893,https://biolit.fr/observations/observation-93893/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-scaled.jpg,,,Identifiable +N1,93888,Sortie #93888,https://biolit.fr/sorties/sortie-93888/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-et-sacculine-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93895,Observation #93895,https://biolit.fr/observations/observation-93895/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-scaled.jpg,,,Identifiable +N1,93888,Sortie #93888,https://biolit.fr/sorties/sortie-93888/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-et-sacculine-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93897,Observation #93897,https://biolit.fr/observations/observation-93897/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-1-scaled.jpg,,TRUE,Identifiable +N1,93888,Sortie #93888,https://biolit.fr/sorties/sortie-93888/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-et-sacculine-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93899,Observation #93899,https://biolit.fr/observations/observation-93899/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Pourpre-1-scaled.jpg,,TRUE,Identifiable +N1,93888,Sortie #93888,https://biolit.fr/sorties/sortie-93888/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-et-sacculine-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93901,Observation #93901,https://biolit.fr/observations/observation-93901/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-scaled.jpg,,,Identifiable +N1,93888,Sortie #93888,https://biolit.fr/sorties/sortie-93888/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-et-sacculine-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93903,Observation #93903,https://biolit.fr/observations/observation-93903/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-3-scaled.jpg,,TRUE,Identifiable +N1,93888,Sortie #93888,https://biolit.fr/sorties/sortie-93888/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-et-sacculine-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93905,Observation #93905,https://biolit.fr/observations/observation-93905/,Sacculina carcini,Sacculine du crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-et-sacculine-scaled.jpg,,,Identifiable +N1,93913,Sortie #93913,https://biolit.fr/sorties/sortie-93913/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/06/IMG_7799.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/06/IMG_7798.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/06/IMG_7797.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/06/IMG_7796.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/06/IMG_7795.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/06/IMG_7794.jpg,5/30/2025 0:00,9.0000000,9.0:45,49.9203810,1.036257,ESTRAN cité de la Mer,Pourville,,,,,,,,,, +N1,94028,Sortie #94028,https://biolit.fr/sorties/sortie-94028/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bogorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Cione-intestinale-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-2-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040650000000,-1.84457900000000,Centre Virginie Hériot,Plage du Potelet,94029,Observation #94029,https://biolit.fr/observations/observation-94029/,Dendrodoa grossularia,Ascidie groseille,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ascidie-groseille-2-scaled.jpg,,,Identifiable +N1,94028,Sortie #94028,https://biolit.fr/sorties/sortie-94028/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bogorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Cione-intestinale-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-2-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040650000000,-1.84457900000000,Centre Virginie Hériot,Plage du Potelet,94031,Observation #94031,https://biolit.fr/observations/observation-94031/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Asterie-bossue-2-scaled.jpg,,TRUE,Identifiable +N1,94028,Sortie #94028,https://biolit.fr/sorties/sortie-94028/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bogorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Cione-intestinale-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-2-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040650000000,-1.84457900000000,Centre Virginie Hériot,Plage du Potelet,94033,Observation #94033,https://biolit.fr/observations/observation-94033/,Pagurus bernhardus,Bernard-l'ermite commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lhermite-2-scaled.jpg,,,Identifiable +N1,94028,Sortie #94028,https://biolit.fr/sorties/sortie-94028/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bogorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Cione-intestinale-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-2-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040650000000,-1.84457900000000,Centre Virginie Hériot,Plage du Potelet,94035,Observation #94035,https://biolit.fr/observations/observation-94035/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bogorneau-perceur-1-scaled.jpg,,TRUE,Identifiable +N1,94028,Sortie #94028,https://biolit.fr/sorties/sortie-94028/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bogorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Cione-intestinale-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-2-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040650000000,-1.84457900000000,Centre Virginie Hériot,Plage du Potelet,94037,Observation #94037,https://biolit.fr/observations/observation-94037/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-scaled.jpg,,TRUE,Identifiable +N1,94028,Sortie #94028,https://biolit.fr/sorties/sortie-94028/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bogorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Cione-intestinale-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-2-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040650000000,-1.84457900000000,Centre Virginie Hériot,Plage du Potelet,94041,Observation #94041,https://biolit.fr/observations/observation-94041/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-orange-2-scaled.jpg,,,Identifiable +N1,94028,Sortie #94028,https://biolit.fr/sorties/sortie-94028/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bogorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Cione-intestinale-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-2-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040650000000,-1.84457900000000,Centre Virginie Hériot,Plage du Potelet,94045,Observation #94045,https://biolit.fr/observations/observation-94045/,Ciona intestinalis,Cione intestinale,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Cione-intestinale-2-scaled.jpg,,,Identifiable +N1,94064,Sortie #94064,https://biolit.fr/sorties/sortie-94064/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7039920000000,-1.84466200000000,Centre Virginie Hériot,Plage du Potelet,94065,Observation #94065,https://biolit.fr/observations/observation-94065/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-4-scaled.jpg,,TRUE,Identifiable +N1,94064,Sortie #94064,https://biolit.fr/sorties/sortie-94064/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7039920000000,-1.84466200000000,Centre Virginie Hériot,Plage du Potelet,94067,Observation #94067,https://biolit.fr/observations/observation-94067/,Crangon crangon,Crevette grise européenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-scaled.jpg,,,Identifiable +N1,94064,Sortie #94064,https://biolit.fr/sorties/sortie-94064/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7039920000000,-1.84466200000000,Centre Virginie Hériot,Plage du Potelet,94069,Observation #94069,https://biolit.fr/observations/observation-94069/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-scaled.jpg,,TRUE,Identifiable +N1,94064,Sortie #94064,https://biolit.fr/sorties/sortie-94064/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7039920000000,-1.84466200000000,Centre Virginie Hériot,Plage du Potelet,94073,Observation #94073,https://biolit.fr/observations/observation-94073/,Gaidropsarus vulgaris,Motelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-1-scaled.jpg,,TRUE,Identifiable +N1,94064,Sortie #94064,https://biolit.fr/sorties/sortie-94064/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7039920000000,-1.84466200000000,Centre Virginie Hériot,Plage du Potelet,94075,Observation #94075,https://biolit.fr/observations/observation-94075/,Nerophis ophidion,Nérophis ophidion,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-1-scaled.jpg,,,Identifiable +N1,94064,Sortie #94064,https://biolit.fr/sorties/sortie-94064/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7039920000000,-1.84466200000000,Centre Virginie Hériot,Plage du Potelet,94077,Observation #94077,https://biolit.fr/observations/observation-94077/,Tethya citrina,Orange de mer de Manche Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-scaled.jpg,,TRUE,Identifiable +N1,94064,Sortie #94064,https://biolit.fr/sorties/sortie-94064/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7039920000000,-1.84466200000000,Centre Virginie Hériot,Plage du Potelet,94083,Observation #94083,https://biolit.fr/observations/observation-94083/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-scaled.jpg,,TRUE,Identifiable +N1,94064,Sortie #94064,https://biolit.fr/sorties/sortie-94064/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7039920000000,-1.84466200000000,Centre Virginie Hériot,Plage du Potelet,94085,Observation #94085,https://biolit.fr/observations/observation-94085/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-1-scaled.jpg,,TRUE,Identifiable +N1,94064,Sortie #94064,https://biolit.fr/sorties/sortie-94064/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7039920000000,-1.84466200000000,Centre Virginie Hériot,Plage du Potelet,94087,Observation #94087,https://biolit.fr/observations/observation-94087/,Sacculina carcini,Sacculine du crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-scaled.jpg,,TRUE,Identifiable +N1,94102,Sortie #94102,https://biolit.fr/sorties/sortie-94102/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040910000000,-1.84500600000000,Centre Virginie Hériot,Plage du Potelet,94103,Observation #94103,https://biolit.fr/observations/observation-94103/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-1-scaled.jpg,,TRUE,Identifiable +N1,94102,Sortie #94102,https://biolit.fr/sorties/sortie-94102/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040910000000,-1.84500600000000,Centre Virginie Hériot,Plage du Potelet,94105,Observation #94105,https://biolit.fr/observations/observation-94105/,Crangon crangon,Crevette grise européenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-1-scaled.jpg,,TRUE,Identifiable +N1,94102,Sortie #94102,https://biolit.fr/sorties/sortie-94102/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040910000000,-1.84500600000000,Centre Virginie Hériot,Plage du Potelet,94107,Observation #94107,https://biolit.fr/observations/observation-94107/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-1-scaled.jpg,,TRUE,Identifiable +N1,94102,Sortie #94102,https://biolit.fr/sorties/sortie-94102/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040910000000,-1.84500600000000,Centre Virginie Hériot,Plage du Potelet,94109,Observation #94109,https://biolit.fr/observations/observation-94109/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-1-scaled.jpg,,TRUE,Identifiable +N1,94102,Sortie #94102,https://biolit.fr/sorties/sortie-94102/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040910000000,-1.84500600000000,Centre Virginie Hériot,Plage du Potelet,94111,Observation #94111,https://biolit.fr/observations/observation-94111/,Gaidropsarus vulgaris,Motelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-2-scaled.jpg,,,Identifiable +N1,94102,Sortie #94102,https://biolit.fr/sorties/sortie-94102/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040910000000,-1.84500600000000,Centre Virginie Hériot,Plage du Potelet,94113,Observation #94113,https://biolit.fr/observations/observation-94113/,Nerophis ophidion,Nérophis ophidion,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-2-scaled.jpg,,,Identifiable +N1,94102,Sortie #94102,https://biolit.fr/sorties/sortie-94102/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040910000000,-1.84500600000000,Centre Virginie Hériot,Plage du Potelet,94115,Observation #94115,https://biolit.fr/observations/observation-94115/,Tethya citrina,Orange de mer de Manche Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-1-scaled.jpg,,,Identifiable +N1,94102,Sortie #94102,https://biolit.fr/sorties/sortie-94102/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040910000000,-1.84500600000000,Centre Virginie Hériot,Plage du Potelet,94117,Observation #94117,https://biolit.fr/observations/observation-94117/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-1-scaled.jpg,,,Ne sais pas +N1,94102,Sortie #94102,https://biolit.fr/sorties/sortie-94102/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040910000000,-1.84500600000000,Centre Virginie Hériot,Plage du Potelet,94119,Observation #94119,https://biolit.fr/observations/observation-94119/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-1-scaled.jpg,,TRUE,Ne sais pas +N1,94102,Sortie #94102,https://biolit.fr/sorties/sortie-94102/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040910000000,-1.84500600000000,Centre Virginie Hériot,Plage du Potelet,94121,Observation #94121,https://biolit.fr/observations/observation-94121/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-scaled.jpg,,TRUE,Identifiable +N1,94102,Sortie #94102,https://biolit.fr/sorties/sortie-94102/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040910000000,-1.84500600000000,Centre Virginie Hériot,Plage du Potelet,94123,Observation #94123,https://biolit.fr/observations/observation-94123/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-2-scaled.jpg,,TRUE,Identifiable +N1,94102,Sortie #94102,https://biolit.fr/sorties/sortie-94102/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040910000000,-1.84500600000000,Centre Virginie Hériot,Plage du Potelet,94125,Observation #94125,https://biolit.fr/observations/observation-94125/,Sacculina carcini,Sacculine du crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-1-scaled.jpg,,TRUE,Identifiable +N1,94129,Sortie #94129,https://biolit.fr/sorties/sortie-94129/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/06/IMG_20250526_135830-scaled.jpg,06/02/2025,10.0000000,10.0:15,43.154284000000,6.48184500000000,,test,,,,,,,,,, +N1,94131,Sortie #94131,https://biolit.fr/sorties/sortie-94131/,Soussi Sirine,https://biolit.fr/wp-content/uploads/jet-form-builder/3659ef75a00bb3f09df8a5958c0fe798/2025/06/image-scaled.jpg,06/03/2025,13.0:52,13.0:55,43.0795970000000,6.12459600000000,,Almanarre,,,,,,,,,, +N1,94141,Sortie #94141,https://biolit.fr/sorties/sortie-94141/,Bonkoski Alison,https://biolit.fr/wp-content/uploads/jet-form-builder/90161f1dceeab686023190c02691f496/2025/06/1000023812.png,7/24/2024 0:00,13.0000000,13.0:25,47.9867,-4.4983,,Plouhinec,94142,Observation #94142,https://biolit.fr/observations/observation-94142/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/90161f1dceeab686023190c02691f496/2025/06/1000023812.png,,,Ne sais pas +N1,94146,Sortie #94146,https://biolit.fr/sorties/sortie-94146/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/Photo-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/Photo-2-scaled.jpg,5/29/2025 0:00,9.0000000,11.0000000,43.7233380000000,-1.43128000000000,Centre de la mer,Plage des casernes de Seignosse,94147,Observation #94147,https://biolit.fr/observations/observation-94147/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/Photo-1-scaled.jpg,,TRUE,Identifiable +N1,94146,Sortie #94146,https://biolit.fr/sorties/sortie-94146/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/Photo-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/Photo-2-scaled.jpg,5/29/2025 0:00,9.0000000,11.0000000,43.7233380000000,-1.43128000000000,Centre de la mer,Plage des casernes de Seignosse,94149,Observation #94149,https://biolit.fr/observations/observation-94149/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/Photo-2-scaled.jpg,,TRUE,Ne sais pas +N1,94166,Sortie #94166,https://biolit.fr/sorties/sortie-94166/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/Photo-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/Photo-5-scaled.jpg,5/29/2025 0:00,9.0000000,11.0000000,43.7238020000000,-1.43242300000000,Centre de la mer,Plage des casernes de Seignosse,94167,Observation #94167,https://biolit.fr/observations/observation-94167/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/Photo-4-scaled.jpg,,TRUE,Identifiable +N1,94166,Sortie #94166,https://biolit.fr/sorties/sortie-94166/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/Photo-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/Photo-5-scaled.jpg,5/29/2025 0:00,9.0000000,11.0000000,43.7238020000000,-1.43242300000000,Centre de la mer,Plage des casernes de Seignosse,94169,Observation #94169,https://biolit.fr/observations/observation-94169/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/Photo-5-scaled.jpg,,TRUE,non-identifiable +N1,94179,Sortie #94179,https://biolit.fr/sorties/sortie-94179/,TRUBERT Laetitia,https://biolit.fr/wp-content/uploads/jet-form-builder/6368cd15eef1ec8fc4e1eeede7a902d2/2025/06/Acanthocardia-aculeata-Linne-1758-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6368cd15eef1ec8fc4e1eeede7a902d2/2025/06/Bourse-de-sirene-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6368cd15eef1ec8fc4e1eeede7a902d2/2025/06/Eriphia-verrucosa-scaled.jpg,06/04/2025,14.0000000,16.0000000,43.347351,4.656677,Planète Mer,Port du Grau de la Dent,94187,Observation #94187,https://biolit.fr/observations/observation-94187/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/jet-form-builder/6368cd15eef1ec8fc4e1eeede7a902d2/2025/06/Eriphia-verrucosa-scaled.jpg,,TRUE,Identifiable +N1,94179,Sortie #94179,https://biolit.fr/sorties/sortie-94179/,TRUBERT Laetitia,https://biolit.fr/wp-content/uploads/jet-form-builder/6368cd15eef1ec8fc4e1eeede7a902d2/2025/06/Acanthocardia-aculeata-Linne-1758-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6368cd15eef1ec8fc4e1eeede7a902d2/2025/06/Bourse-de-sirene-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6368cd15eef1ec8fc4e1eeede7a902d2/2025/06/Eriphia-verrucosa-scaled.jpg,06/04/2025,14.0000000,16.0000000,43.347351,4.656677,Planète Mer,Port du Grau de la Dent,94189,Observation #94189,https://biolit.fr/observations/observation-94189/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6368cd15eef1ec8fc4e1eeede7a902d2/2025/06/Bourse-de-sirene-scaled.jpg,,,Ne sais pas +N1,94179,Sortie #94179,https://biolit.fr/sorties/sortie-94179/,TRUBERT Laetitia,https://biolit.fr/wp-content/uploads/jet-form-builder/6368cd15eef1ec8fc4e1eeede7a902d2/2025/06/Acanthocardia-aculeata-Linne-1758-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6368cd15eef1ec8fc4e1eeede7a902d2/2025/06/Bourse-de-sirene-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6368cd15eef1ec8fc4e1eeede7a902d2/2025/06/Eriphia-verrucosa-scaled.jpg,06/04/2025,14.0000000,16.0000000,43.347351,4.656677,Planète Mer,Port du Grau de la Dent,94191,Observation #94191,https://biolit.fr/observations/observation-94191/,Acanthocardia aculeata,Bucarde épineuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/6368cd15eef1ec8fc4e1eeede7a902d2/2025/06/Acanthocardia-aculeata-Linne-1758-scaled.jpg,,,Identifiable +N1,94228,Sortie #94228,https://biolit.fr/sorties/sortie-94228/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-4-scaled.jpg,06/05/2025,11.0000000,12.0000000,43.2539690,5.4155790,,Plage de la Pointe Rouge,94229,Observation #94229,https://biolit.fr/observations/observation-94229/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-4-scaled.jpg,,TRUE,Identifiable +N1,94228,Sortie #94228,https://biolit.fr/sorties/sortie-94228/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-4-scaled.jpg,06/05/2025,11.0000000,12.0000000,43.2539690,5.4155790,,Plage de la Pointe Rouge,94231,Observation #94231,https://biolit.fr/observations/observation-94231/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-2-scaled.jpg,,TRUE,Identifiable +N1,94228,Sortie #94228,https://biolit.fr/sorties/sortie-94228/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-4-scaled.jpg,06/05/2025,11.0000000,12.0000000,43.2539690,5.4155790,,Plage de la Pointe Rouge,94233,Observation #94233,https://biolit.fr/observations/observation-94233/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-3-scaled.jpg,,TRUE,Identifiable +N1,94228,Sortie #94228,https://biolit.fr/sorties/sortie-94228/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-4-scaled.jpg,06/05/2025,11.0000000,12.0000000,43.2539690,5.4155790,,Plage de la Pointe Rouge,94235,Observation #94235,https://biolit.fr/observations/observation-94235/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-4-scaled.jpg,,TRUE,Identifiable +N1,94259,Sortie #94259,https://biolit.fr/sorties/sortie-94259/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/Q1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/Q1-Comptage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/Q2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/Q2-Comptage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/Q2-Proche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/Q3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/Q3-Comptage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/Q4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/Q4-Comptage-Selection-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/Q5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/IMG_6528-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/IMG_6531-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/IMG_6532-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/IMG_6533-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/IMG_6535-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/IMG_6536-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/IMG_6537-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/IMG_6539-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/IMG_6540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/IMG_6541-rotated.jpg,5/27/2025 0:00,11.0000000,15.0000000,48.8374270,-3.489792,E.T.A.P.E.S,plage de landrellec à Pleumeur Bodou,,,,,,,,,, +N1,94281,Sortie #94281,https://biolit.fr/sorties/sortie-94281/,MORAES EVA,https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081223-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_084549-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_085848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082849-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101144-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_083350-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3296420000000,5.03780300000000,Planète Mer,Carro,94282,Observation #94282,https://biolit.fr/observations/observation-94282/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081223-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_084549-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082003-scaled.jpg,,,Ne sais pas +N1,94281,Sortie #94281,https://biolit.fr/sorties/sortie-94281/,MORAES EVA,https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081223-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_084549-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_085848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082849-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101144-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_083350-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3296420000000,5.03780300000000,Planète Mer,Carro,94284,Observation #94284,https://biolit.fr/observations/observation-94284/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_083350-scaled.jpg,,,Identifiable +N1,94281,Sortie #94281,https://biolit.fr/sorties/sortie-94281/,MORAES EVA,https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081223-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_084549-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_085848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082849-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101144-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_083350-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3296420000000,5.03780300000000,Planète Mer,Carro,94286,Observation #94286,https://biolit.fr/observations/observation-94286/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082849-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101144-scaled.jpg,,,Ne sais pas +N1,94281,Sortie #94281,https://biolit.fr/sorties/sortie-94281/,MORAES EVA,https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081223-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_084549-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_085848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082849-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101144-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_083350-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3296420000000,5.03780300000000,Planète Mer,Carro,94288,Observation #94288,https://biolit.fr/observations/observation-94288/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080633-scaled.jpg,,TRUE,Identifiable +N1,94281,Sortie #94281,https://biolit.fr/sorties/sortie-94281/,MORAES EVA,https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081223-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_084549-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_085848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082849-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101144-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_083350-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3296420000000,5.03780300000000,Planète Mer,Carro,94290,Observation #94290,https://biolit.fr/observations/observation-94290/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_085848-scaled.jpg,,TRUE,Ne sais pas +N1,94281,Sortie #94281,https://biolit.fr/sorties/sortie-94281/,MORAES EVA,https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081223-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_084549-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_085848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082849-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101144-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_083350-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3296420000000,5.03780300000000,Planète Mer,Carro,94292,Observation #94292,https://biolit.fr/observations/observation-94292/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082951-scaled.jpg,,,Identifiable +N1,94281,Sortie #94281,https://biolit.fr/sorties/sortie-94281/,MORAES EVA,https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081223-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_084549-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_085848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082849-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101144-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_083350-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3296420000000,5.03780300000000,Planète Mer,Carro,94294,Observation #94294,https://biolit.fr/observations/observation-94294/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082738-scaled.jpg,,,Identifiable +N1,94281,Sortie #94281,https://biolit.fr/sorties/sortie-94281/,MORAES EVA,https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081223-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_084549-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_085848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082849-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101144-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_083350-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3296420000000,5.03780300000000,Planète Mer,Carro,94296,Observation #94296,https://biolit.fr/observations/observation-94296/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081747-scaled.jpg,,TRUE,Identifiable +N1,94306,Sortie #94306,https://biolit.fr/sorties/sortie-94306/,MALCOTTI Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_100628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_101037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_101108-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_101523-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_101758-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_102140-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_102209-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_102415-scaled.jpg,06/06/2025,10.0000000,11.0000000,43.3315170000000,5.05168300000000,Planète Mer,La Courrone,94307,Observation #94307,https://biolit.fr/observations/observation-94307/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_102140-scaled.jpg,,TRUE,Ne sais pas +N1,94306,Sortie #94306,https://biolit.fr/sorties/sortie-94306/,MALCOTTI Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_100628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_101037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_101108-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_101523-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_101758-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_102140-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_102209-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_102415-scaled.jpg,06/06/2025,10.0000000,11.0000000,43.3315170000000,5.05168300000000,Planète Mer,La Courrone,94309,Observation #94309,https://biolit.fr/observations/observation-94309/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_101108-scaled.jpg,,TRUE,Ne sais pas +N1,94381,Sortie #94381,https://biolit.fr/sorties/sortie-94381/,MALCOTTI Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-1-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-2-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-3-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-7-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-8-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-10-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-11-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-12-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-13-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-14-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-15-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-16-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-18-scaled.jpg,06/06/2025,8.0000000,8.0:45,43.3295350000000,5.03767100000000,Planète Mer,Carro,94382,Observation #94382,https://biolit.fr/observations/observation-94382/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-5-scaled.jpg,,,Ne sais pas +N1,94381,Sortie #94381,https://biolit.fr/sorties/sortie-94381/,MALCOTTI Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-1-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-2-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-3-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-7-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-8-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-10-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-11-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-12-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-13-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-14-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-15-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-16-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-18-scaled.jpg,06/06/2025,8.0000000,8.0:45,43.3295350000000,5.03767100000000,Planète Mer,Carro,94384,Observation #94384,https://biolit.fr/observations/observation-94384/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-8-p-scaled.jpg,,,Ne sais pas +N1,94381,Sortie #94381,https://biolit.fr/sorties/sortie-94381/,MALCOTTI Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-1-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-2-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-3-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-7-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-8-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-10-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-11-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-12-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-13-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-14-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-15-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-16-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-18-scaled.jpg,06/06/2025,8.0000000,8.0:45,43.3295350000000,5.03767100000000,Planète Mer,Carro,94386,Observation #94386,https://biolit.fr/observations/observation-94386/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-12-scaled.jpg,,TRUE,Ne sais pas +N1,94404,Sortie #94404,https://biolit.fr/sorties/sortie-94404/,MALCOTTI Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-18-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-19-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-20-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-21-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-22-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-23-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-24-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-25-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-26-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-27-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-28-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-29-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-30-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-31-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-32-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-33-p-scaled.jpg,06/06/2025,8.0:45,9.0000000,43.3291760000000,5.03859400000000,Planète Mer,Carro,94405,Observation #94405,https://biolit.fr/observations/observation-94405/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-25-scaled.jpg,,,Identifiable +N1,94404,Sortie #94404,https://biolit.fr/sorties/sortie-94404/,MALCOTTI Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-18-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-19-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-20-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-21-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-22-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-23-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-24-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-25-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-26-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-27-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-28-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-29-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-30-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-31-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-32-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-33-p-scaled.jpg,06/06/2025,8.0:45,9.0000000,43.3291760000000,5.03859400000000,Planète Mer,Carro,94407,Observation #94407,https://biolit.fr/observations/observation-94407/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-31-scaled.jpg,,TRUE,Ne sais pas +N1,94404,Sortie #94404,https://biolit.fr/sorties/sortie-94404/,MALCOTTI Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-18-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-19-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-20-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-21-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-22-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-23-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-24-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-25-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-26-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-27-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-28-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-29-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-30-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-31-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-32-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-33-p-scaled.jpg,06/06/2025,8.0:45,9.0000000,43.3291760000000,5.03859400000000,Planète Mer,Carro,94409,Observation #94409,https://biolit.fr/observations/observation-94409/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-30-scaled.jpg,,,Ne sais pas +N1,94427,Sortie #94427,https://biolit.fr/sorties/sortie-94427/,MALCOTTI Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-34-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-35-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-36-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-37-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-38-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-39-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-40-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-41-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-42-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-43-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-44-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-47-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-48-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-50-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-51-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-52-scaled.jpg,06/06/2025,9.0000000,10.0000000,43.3315320000000,5.03479100000000,Planète Mer,Carro,94428,Observation #94428,https://biolit.fr/observations/observation-94428/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-38-p-scaled.jpg,,,Ne sais pas +N1,94427,Sortie #94427,https://biolit.fr/sorties/sortie-94427/,MALCOTTI Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-34-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-35-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-36-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-37-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-38-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-39-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-40-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-41-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-42-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-43-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-44-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-47-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-48-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-50-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-51-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-52-scaled.jpg,06/06/2025,9.0000000,10.0000000,43.3315320000000,5.03479100000000,Planète Mer,Carro,94430,Observation #94430,https://biolit.fr/observations/observation-94430/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-52-scaled.jpg,,,Ne sais pas +N1,94427,Sortie #94427,https://biolit.fr/sorties/sortie-94427/,MALCOTTI Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-34-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-35-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-36-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-37-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-38-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-39-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-40-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-41-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-42-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-43-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-44-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-47-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-48-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-50-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-51-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-52-scaled.jpg,06/06/2025,9.0000000,10.0000000,43.3315320000000,5.03479100000000,Planète Mer,Carro,94432,Observation #94432,https://biolit.fr/observations/observation-94432/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-51-scaled.jpg,,TRUE,Ne sais pas +N1,94427,Sortie #94427,https://biolit.fr/sorties/sortie-94427/,MALCOTTI Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-34-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-35-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-36-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-37-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-38-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-39-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-40-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-41-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-42-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-43-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-44-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-47-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-48-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-50-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-51-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-52-scaled.jpg,06/06/2025,9.0000000,10.0000000,43.3315320000000,5.03479100000000,Planète Mer,Carro,94434,Observation #94434,https://biolit.fr/observations/observation-94434/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-41-scaled.jpg,,,Ne sais pas +N1,94443,Sortie #94443,https://biolit.fr/sorties/sortie-94443/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/M0pG0sBk.jpg,5/23/2025 0:00,10.0000000,11.0000000,42.9052900000000,3.05623500000000,LABELBLEU,Leucate,,,,,,,,,, +N1,94448,Sortie #94448,https://biolit.fr/sorties/sortie-94448/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/2-1.jpg,5/24/2025 0:00,11.0000000,12.0000000,42.9053390000000,3.0563320000000,LABELBLEU,Leucate,94449,Observation #94449,https://biolit.fr/observations/observation-94449/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/coque.jpg,,TRUE,Identifiable +N1,94448,Sortie #94448,https://biolit.fr/sorties/sortie-94448/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/2-1.jpg,5/24/2025 0:00,11.0000000,12.0000000,42.9053390000000,3.0563320000000,LABELBLEU,Leucate,94451,Observation #94451,https://biolit.fr/observations/observation-94451/,Fabulina fabula,Telline striée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/2.jpg,,,Identifiable +N1,94448,Sortie #94448,https://biolit.fr/sorties/sortie-94448/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/2-1.jpg,5/24/2025 0:00,11.0000000,12.0000000,42.9053390000000,3.0563320000000,LABELBLEU,Leucate,94453,Observation #94453,https://biolit.fr/observations/observation-94453/,Mactra glauca,Mactre fauve,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/2-1.jpg,,,Identifiable +N1,94474,Sortie #94474,https://biolit.fr/sorties/sortie-94474/,Moncelet Morgan,https://biolit.fr/wp-content/uploads/jet-form-builder/4b0f23ed024c9032a76bae6c3754bd4a/2025/06/langouste.png,04/09/2025,10.0000000,10.0000000,43.104004000000,5.991533000000,,Sainte,94475,Observation #94475,https://biolit.fr/observations/observation-94475/,Palinurus elephas,Langouste rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/4b0f23ed024c9032a76bae6c3754bd4a/2025/06/langouste.png,,,Identifiable +N1,94483,Sortie #94483,https://biolit.fr/sorties/sortie-94483/,Desclaux Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/be27204f0ab937e376516f317f439e90/2025/06/fruit-de-posidonie-scaled.jpg,06/10/2025,10.0000000,12.0000000,43.2408450000000,5.36207400000000,Centre Initiation et Découverte Mer Ville de Marseille,Plage de la batterie,94486,Observation #94486,https://biolit.fr/observations/observation-94486/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/be27204f0ab937e376516f317f439e90/2025/06/fruit-de-posidonie-scaled.jpg,,TRUE,Identifiable +N1,94795,Sortie #94795,https://biolit.fr/sorties/sortie-94795/,Dorrell Richard,https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0002.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0001.jpg,5/22/2025 0:00,13.0000000,15.0000000,49.564813000000,0.0948320000000000,,"octeville-sur-mer, les basses falaises, plage",94796,Observation #94796,https://biolit.fr/observations/observation-94796/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0002.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0001.jpg,,,Ne sais pas +N1,94807,Sortie #94807,https://biolit.fr/sorties/sortie-94807/,Dorrell Richard,https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0009-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0008-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0007-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0005-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0004-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0003-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0002-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0001-1.jpg,5/22/2025 0:00,13.0000000,15.0000000,49.5661450000000,0.0960020000000000,,"octeville-sur-mer, les basses falaises, plage",94808,Observation #94808,https://biolit.fr/observations/observation-94808/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0004-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0003-1.jpg,,TRUE,Identifiable +N1,94807,Sortie #94807,https://biolit.fr/sorties/sortie-94807/,Dorrell Richard,https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0009-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0008-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0007-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0005-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0004-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0003-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0002-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0001-1.jpg,5/22/2025 0:00,13.0000000,15.0000000,49.5661450000000,0.0960020000000000,,"octeville-sur-mer, les basses falaises, plage",94810,Observation #94810,https://biolit.fr/observations/observation-94810/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0001-1.jpg,,,Identifiable +N1,94807,Sortie #94807,https://biolit.fr/sorties/sortie-94807/,Dorrell Richard,https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0009-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0008-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0007-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0005-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0004-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0003-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0002-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0001-1.jpg,5/22/2025 0:00,13.0000000,15.0000000,49.5661450000000,0.0960020000000000,,"octeville-sur-mer, les basses falaises, plage",94812,Observation #94812,https://biolit.fr/observations/observation-94812/,Ulva flexuosa,Ulve flexueuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0002-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0009-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0008-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0007-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0005-1.jpg,,,Identifiable +N1,94841,Sortie #94841,https://biolit.fr/sorties/sortie-94841/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-26-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-25-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-24-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-23-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-22-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-21.jpg,06/11/2025,14.0000000,16.0000000,48.6916820000000,-1.95000000000000,Planète Mer (antenne Dinard),Plage des Chevrets,94842,Observation #94842,https://biolit.fr/observations/observation-94842/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-26-scaled.jpg,,TRUE,Identifiable +N1,94841,Sortie #94841,https://biolit.fr/sorties/sortie-94841/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-26-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-25-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-24-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-23-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-22-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-21.jpg,06/11/2025,14.0000000,16.0000000,48.6916820000000,-1.95000000000000,Planète Mer (antenne Dinard),Plage des Chevrets,94844,Observation #94844,https://biolit.fr/observations/observation-94844/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-25-scaled.jpg,,TRUE,Identifiable +N1,94841,Sortie #94841,https://biolit.fr/sorties/sortie-94841/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-26-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-25-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-24-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-23-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-22-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-21.jpg,06/11/2025,14.0000000,16.0000000,48.6916820000000,-1.95000000000000,Planète Mer (antenne Dinard),Plage des Chevrets,94846,Observation #94846,https://biolit.fr/observations/observation-94846/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-24-scaled.jpg,,TRUE,Identifiable +N1,94841,Sortie #94841,https://biolit.fr/sorties/sortie-94841/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-26-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-25-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-24-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-23-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-22-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-21.jpg,06/11/2025,14.0000000,16.0000000,48.6916820000000,-1.95000000000000,Planète Mer (antenne Dinard),Plage des Chevrets,94848,Observation #94848,https://biolit.fr/observations/observation-94848/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-23-scaled.jpg,,TRUE,Identifiable +N1,94841,Sortie #94841,https://biolit.fr/sorties/sortie-94841/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-26-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-25-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-24-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-23-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-22-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-21.jpg,06/11/2025,14.0000000,16.0000000,48.6916820000000,-1.95000000000000,Planète Mer (antenne Dinard),Plage des Chevrets,94850,Observation #94850,https://biolit.fr/observations/observation-94850/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-22-scaled.jpg,,TRUE,Identifiable +N1,94841,Sortie #94841,https://biolit.fr/sorties/sortie-94841/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-26-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-25-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-24-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-23-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-22-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-21.jpg,06/11/2025,14.0000000,16.0000000,48.6916820000000,-1.95000000000000,Planète Mer (antenne Dinard),Plage des Chevrets,94853,Observation #94853,https://biolit.fr/observations/observation-94853/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-21.jpg,,TRUE,Identifiable +N1,94867,Sortie #94867,https://biolit.fr/sorties/sortie-94867/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoile-de-mer-communes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoiles-de-mer-communes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoiles-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoiles-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_poisson-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_ponte-natice-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_ponte-natice-scaled.jpg,5/26/2025 0:00,21.0:15,22.0000000,47.8835800000000,-4.36052800000000,,Plage de Kermarbec,94870,Observation #94870,https://biolit.fr/observations/observation-94870/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_crabe-vert-scaled.jpg,,TRUE,Identifiable +N1,94867,Sortie #94867,https://biolit.fr/sorties/sortie-94867/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoile-de-mer-communes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoiles-de-mer-communes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoiles-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoiles-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_poisson-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_ponte-natice-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_ponte-natice-scaled.jpg,5/26/2025 0:00,21.0:15,22.0000000,47.8835800000000,-4.36052800000000,,Plage de Kermarbec,94874,Observation #94874,https://biolit.fr/observations/observation-94874/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_ponte-natice-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_ponte-natice-scaled.jpg,,TRUE,Identifiable +N1,94867,Sortie #94867,https://biolit.fr/sorties/sortie-94867/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoile-de-mer-communes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoiles-de-mer-communes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoiles-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoiles-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_poisson-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_ponte-natice-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_ponte-natice-scaled.jpg,5/26/2025 0:00,21.0:15,22.0000000,47.8835800000000,-4.36052800000000,,Plage de Kermarbec,94876,Observation #94876,https://biolit.fr/observations/observation-94876/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_poisson-scaled.jpg,,,Ne sais pas +N1,94867,Sortie #94867,https://biolit.fr/sorties/sortie-94867/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoile-de-mer-communes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoiles-de-mer-communes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoiles-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoiles-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_poisson-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_ponte-natice-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_ponte-natice-scaled.jpg,5/26/2025 0:00,21.0:15,22.0000000,47.8835800000000,-4.36052800000000,,Plage de Kermarbec,94878,Observation #94878,https://biolit.fr/observations/observation-94878/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoiles-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoiles-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoile-de-mer-communes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoiles-de-mer-communes-scaled.jpg,,TRUE,Identifiable +N1,94869,Sortie #94869,https://biolit.fr/sorties/sortie-94869/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/anomia-scaled.jpg,06/11/2025,14.0000000,16.0000000,48.6917030000000,-1.95044700000000,Planète Mer (antenne Dinard),Plage des Chevrets,94872,Observation #94872,https://biolit.fr/observations/observation-94872/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/anomia-scaled.jpg,,TRUE,Identifiable +N1,94884,Sortie #94884,https://biolit.fr/sorties/sortie-94884/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/anomia-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/araignee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/ponte-bulot_buccin-scaled.jpg,06/11/2025,14.0000000,16.0000000,48.6916610000000,-1.94684300000000,Planète Mer,Plage des Chevrets,94885,Observation #94885,https://biolit.fr/observations/observation-94885/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/araignee-scaled.jpg,,TRUE,Identifiable +N1,94884,Sortie #94884,https://biolit.fr/sorties/sortie-94884/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/anomia-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/araignee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/ponte-bulot_buccin-scaled.jpg,06/11/2025,14.0000000,16.0000000,48.6916610000000,-1.94684300000000,Planète Mer,Plage des Chevrets,94887,Observation #94887,https://biolit.fr/observations/observation-94887/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/os-de-seiche-scaled.jpg,,TRUE,Identifiable +N1,94884,Sortie #94884,https://biolit.fr/sorties/sortie-94884/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/anomia-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/araignee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/ponte-bulot_buccin-scaled.jpg,06/11/2025,14.0000000,16.0000000,48.6916610000000,-1.94684300000000,Planète Mer,Plage des Chevrets,94889,Observation #94889,https://biolit.fr/observations/observation-94889/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/ponte-bulot_buccin-scaled.jpg,,TRUE,Identifiable +N1,94952,Sortie #94952,https://biolit.fr/sorties/sortie-94952/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Amande.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Balanes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Coque-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Spirorbes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Strobiculaire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Telline.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Venus.jpg,02/10/2025,14.0000000,16.0000000,42.6596960000000,3.03446700000000,LABELBLEU,"Plage du Lido, Canet-en-Roussillon",94953,Observation #94953,https://biolit.fr/observations/observation-94953/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Amande.jpg,,,Ne sais pas +N1,94952,Sortie #94952,https://biolit.fr/sorties/sortie-94952/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Amande.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Balanes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Coque-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Spirorbes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Strobiculaire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Telline.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Venus.jpg,02/10/2025,14.0000000,16.0000000,42.6596960000000,3.03446700000000,LABELBLEU,"Plage du Lido, Canet-en-Roussillon",94955,Observation #94955,https://biolit.fr/observations/observation-94955/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Anomie.jpg,,,Identifiable +N1,94952,Sortie #94952,https://biolit.fr/sorties/sortie-94952/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Amande.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Balanes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Coque-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Spirorbes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Strobiculaire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Telline.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Venus.jpg,02/10/2025,14.0000000,16.0000000,42.6596960000000,3.03446700000000,LABELBLEU,"Plage du Lido, Canet-en-Roussillon",94957,Observation #94957,https://biolit.fr/observations/observation-94957/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Balanes.jpg,,,Ne sais pas +N1,94952,Sortie #94952,https://biolit.fr/sorties/sortie-94952/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Amande.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Balanes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Coque-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Spirorbes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Strobiculaire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Telline.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Venus.jpg,02/10/2025,14.0000000,16.0000000,42.6596960000000,3.03446700000000,LABELBLEU,"Plage du Lido, Canet-en-Roussillon",94964,Observation #94964,https://biolit.fr/observations/observation-94964/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Bucarde.jpg,,,Ne sais pas +N1,94952,Sortie #94952,https://biolit.fr/sorties/sortie-94952/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Amande.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Balanes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Coque-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Spirorbes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Strobiculaire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Telline.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Venus.jpg,02/10/2025,14.0000000,16.0000000,42.6596960000000,3.03446700000000,LABELBLEU,"Plage du Lido, Canet-en-Roussillon",94966,Observation #94966,https://biolit.fr/observations/observation-94966/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Coque-1.jpg,,,Identifiable +N1,94952,Sortie #94952,https://biolit.fr/sorties/sortie-94952/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Amande.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Balanes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Coque-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Spirorbes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Strobiculaire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Telline.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Venus.jpg,02/10/2025,14.0000000,16.0000000,42.6596960000000,3.03446700000000,LABELBLEU,"Plage du Lido, Canet-en-Roussillon",94970,Observation #94970,https://biolit.fr/observations/observation-94970/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Couteau.jpg,,,Ne sais pas +N1,94952,Sortie #94952,https://biolit.fr/sorties/sortie-94952/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Amande.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Balanes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Coque-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Spirorbes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Strobiculaire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Telline.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Venus.jpg,02/10/2025,14.0000000,16.0000000,42.6596960000000,3.03446700000000,LABELBLEU,"Plage du Lido, Canet-en-Roussillon",94974,Observation #94974,https://biolit.fr/observations/observation-94974/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Moule.jpg,,,Identifiable +N1,94952,Sortie #94952,https://biolit.fr/sorties/sortie-94952/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Amande.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Balanes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Coque-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Spirorbes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Strobiculaire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Telline.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Venus.jpg,02/10/2025,14.0000000,16.0000000,42.6596960000000,3.03446700000000,LABELBLEU,"Plage du Lido, Canet-en-Roussillon",94978,Observation #94978,https://biolit.fr/observations/observation-94978/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Petoncle.jpg,,,Ne sais pas +N1,94952,Sortie #94952,https://biolit.fr/sorties/sortie-94952/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Amande.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Balanes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Coque-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Spirorbes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Strobiculaire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Telline.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Venus.jpg,02/10/2025,14.0000000,16.0000000,42.6596960000000,3.03446700000000,LABELBLEU,"Plage du Lido, Canet-en-Roussillon",94980,Observation #94980,https://biolit.fr/observations/observation-94980/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Posidonie.jpg,,TRUE,Identifiable +N1,94952,Sortie #94952,https://biolit.fr/sorties/sortie-94952/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Amande.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Balanes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Coque-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Spirorbes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Strobiculaire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Telline.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Venus.jpg,02/10/2025,14.0000000,16.0000000,42.6596960000000,3.03446700000000,LABELBLEU,"Plage du Lido, Canet-en-Roussillon",94982,Observation #94982,https://biolit.fr/observations/observation-94982/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Praire.jpg,,,Ne sais pas +N1,94952,Sortie #94952,https://biolit.fr/sorties/sortie-94952/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Amande.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Balanes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Coque-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Spirorbes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Strobiculaire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Telline.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Venus.jpg,02/10/2025,14.0000000,16.0000000,42.6596960000000,3.03446700000000,LABELBLEU,"Plage du Lido, Canet-en-Roussillon",94984,Observation #94984,https://biolit.fr/observations/observation-94984/,Spirorbis (Spirorbis) spirorbis,Spirorbe,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Spirorbes.jpg,,,Identifiable +N1,94952,Sortie #94952,https://biolit.fr/sorties/sortie-94952/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Amande.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Balanes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Coque-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Spirorbes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Strobiculaire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Telline.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Venus.jpg,02/10/2025,14.0000000,16.0000000,42.6596960000000,3.03446700000000,LABELBLEU,"Plage du Lido, Canet-en-Roussillon",94986,Observation #94986,https://biolit.fr/observations/observation-94986/,Scrobicularia plana,Scrobiculaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Strobiculaire.jpg,,,Identifiable +N1,94952,Sortie #94952,https://biolit.fr/sorties/sortie-94952/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Amande.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Balanes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Coque-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Spirorbes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Strobiculaire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Telline.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Venus.jpg,02/10/2025,14.0000000,16.0000000,42.6596960000000,3.03446700000000,LABELBLEU,"Plage du Lido, Canet-en-Roussillon",94997,Observation #94997,https://biolit.fr/observations/observation-94997/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Telline.jpg,,,Ne sais pas +N1,94952,Sortie #94952,https://biolit.fr/sorties/sortie-94952/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Amande.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Balanes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Coque-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Spirorbes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Strobiculaire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Telline.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Venus.jpg,02/10/2025,14.0000000,16.0000000,42.6596960000000,3.03446700000000,LABELBLEU,"Plage du Lido, Canet-en-Roussillon",95001,Observation #95001,https://biolit.fr/observations/observation-95001/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Venus.jpg,,,Ne sais pas +N1,95034,Sortie #95034,https://biolit.fr/sorties/sortie-95034/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_7031-scaled.jpg,5/31/2025 0:00,19.0:49,19.0:54,43.2722830000000,6.58710800000000,,Grande plage Port Grimaud jetée,95035,Observation #95035,https://biolit.fr/observations/observation-95035/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_7031-scaled.jpg,,TRUE,Identifiable +N1,95038,Sortie #95038,https://biolit.fr/sorties/sortie-95038/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_7004-scaled.jpg,5/31/2025 0:00,19.0000000,19.0:58,43.2723910000000,6.58679500000000,,Port grimaud jetée grande plage,95039,Observation #95039,https://biolit.fr/observations/observation-95039/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_7004-scaled.jpg,,TRUE,Identifiable +N1,95051,Sortie #95051,https://biolit.fr/sorties/sortie-95051/,Herbette Florian,https://biolit.fr/wp-content/uploads/jet-form-builder/f761cad14e4b283c0c8c4403ec36cbed/2025/06/1000030652-scaled.jpg,6/13/2025 0:00,10.0000000,11.0:37,43.5530380000000,4.01075900000000,LABELBLEU,Plage du petit travers,95052,Observation #95052,https://biolit.fr/observations/observation-95052/,Scyliorhinus canicula,Capsule de petite roussette,,https://biolit.fr/wp-content/uploads/jet-form-builder/f761cad14e4b283c0c8c4403ec36cbed/2025/06/1000030652-scaled.jpg,,TRUE,Identifiable +N1,95056,Sortie #95056,https://biolit.fr/sorties/sortie-95056/,Herbette Florian,https://biolit.fr/wp-content/uploads/jet-form-builder/f761cad14e4b283c0c8c4403ec36cbed/2025/06/1000030650-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f761cad14e4b283c0c8c4403ec36cbed/2025/06/1000030649-scaled.jpg,6/13/2025 0:00,10.0000000,11.0:39,43.5530380,4.0107580,LABELBLEU,plage du petit travers,95064,Observation #95064,https://biolit.fr/observations/observation-95064/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f761cad14e4b283c0c8c4403ec36cbed/2025/06/1000030650-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f761cad14e4b283c0c8c4403ec36cbed/2025/06/1000030649-scaled.jpg,,,Ne sais pas +N1,95063,Sortie #95063,https://biolit.fr/sorties/sortie-95063/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/1000024506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/1000024505-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/1000024499-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/1000024496-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/1000024493-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/1000024494-scaled.jpg,6/13/2025 0:00,10.0000000,11.0:37,43.5541470,4.0157540,LABELBLEU,Plage du Petit travers,,,,,,,,,, +N1,95073,Sortie #95073,https://biolit.fr/sorties/sortie-95073/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_080843039.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081136105.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081208677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081524212-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_082543650.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_082608874.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_085919352-scaled.jpg,6/13/2025 0:00,10.0000000,11.0000000,43.5532490000000,4.01363600000000,LABELBLEU,Plage du Petit travers,95074,Observation #95074,https://biolit.fr/observations/observation-95074/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_080843039.MP_-scaled.jpg,,TRUE,Identifiable +N1,95073,Sortie #95073,https://biolit.fr/sorties/sortie-95073/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_080843039.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081136105.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081208677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081524212-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_082543650.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_082608874.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_085919352-scaled.jpg,6/13/2025 0:00,10.0000000,11.0000000,43.5532490000000,4.01363600000000,LABELBLEU,Plage du Petit travers,95076,Observation #95076,https://biolit.fr/observations/observation-95076/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081136105.MP_-scaled.jpg,,TRUE,Identifiable +N1,95073,Sortie #95073,https://biolit.fr/sorties/sortie-95073/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_080843039.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081136105.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081208677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081524212-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_082543650.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_082608874.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_085919352-scaled.jpg,6/13/2025 0:00,10.0000000,11.0000000,43.5532490000000,4.01363600000000,LABELBLEU,Plage du Petit travers,95078,Observation #95078,https://biolit.fr/observations/observation-95078/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081208677-scaled.jpg,,,Identifiable +N1,95073,Sortie #95073,https://biolit.fr/sorties/sortie-95073/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_080843039.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081136105.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081208677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081524212-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_082543650.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_082608874.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_085919352-scaled.jpg,6/13/2025 0:00,10.0000000,11.0000000,43.5532490000000,4.01363600000000,LABELBLEU,Plage du Petit travers,95080,Observation #95080,https://biolit.fr/observations/observation-95080/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081524212-scaled.jpg,,TRUE,Identifiable +N1,95073,Sortie #95073,https://biolit.fr/sorties/sortie-95073/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_080843039.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081136105.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081208677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081524212-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_082543650.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_082608874.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_085919352-scaled.jpg,6/13/2025 0:00,10.0000000,11.0000000,43.5532490000000,4.01363600000000,LABELBLEU,Plage du Petit travers,95082,Observation #95082,https://biolit.fr/observations/observation-95082/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_082543650.MP_-scaled.jpg,,,Identifiable +N1,95073,Sortie #95073,https://biolit.fr/sorties/sortie-95073/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_080843039.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081136105.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081208677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081524212-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_082543650.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_082608874.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_085919352-scaled.jpg,6/13/2025 0:00,10.0000000,11.0000000,43.5532490000000,4.01363600000000,LABELBLEU,Plage du Petit travers,95084,Observation #95084,https://biolit.fr/observations/observation-95084/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_082608874.MP_-scaled.jpg,,,Ne sais pas +N1,95073,Sortie #95073,https://biolit.fr/sorties/sortie-95073/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_080843039.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081136105.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081208677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081524212-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_082543650.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_082608874.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_085919352-scaled.jpg,6/13/2025 0:00,10.0000000,11.0000000,43.5532490000000,4.01363600000000,LABELBLEU,Plage du Petit travers,95086,Observation #95086,https://biolit.fr/observations/observation-95086/,Scyliorhinus canicula,Capsule de petite roussette,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_085919352-scaled.jpg,,TRUE,Identifiable +N1,95089,Sortie #95089,https://biolit.fr/sorties/sortie-95089/,PERSON Marie-Laure,https://biolit.fr/wp-content/uploads/jet-form-builder/664311ca380cbd0c0974ee5e1ecdf961/2025/06/Capture.jpg,06/11/2025,14.0000000,15.0:45,48.692593000000,-1.94180400000000,Planète Mer (antenne Dinard),PLAGE DES CHEVRETS 35350 SAINT COULOMB,95090,Observation #95090,https://biolit.fr/observations/observation-95090/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/664311ca380cbd0c0974ee5e1ecdf961/2025/06/Capture.jpg,,,Ne sais pas +N1,95093,Sortie #95093,https://biolit.fr/sorties/sortie-95093/,Vas Isabelle,https://biolit.fr/wp-content/uploads/jet-form-builder/9f97d3c7201687115c96f4573e640623/2025/06/1CAF64DA-C8A2-4711-95FC-A7C40CB834B5-scaled.jpeg,6/14/2025 0:00,10.0:21,11.0:21,43.2732980000000,5.36220800000000,Planète Mer,Plage du prophète,95094,Observation #95094,https://biolit.fr/observations/observation-95094/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9f97d3c7201687115c96f4573e640623/2025/06/1CAF64DA-C8A2-4711-95FC-A7C40CB834B5-scaled.jpeg,,,Ne sais pas +N1,95099,Sortie #95099,https://biolit.fr/sorties/sortie-95099/,MONTAGNON Géraldine,https://biolit.fr/wp-content/uploads/jet-form-builder/ca2f46a7a9bf9f68d6466e5b95142239/2025/06/IMG_0244-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca2f46a7a9bf9f68d6466e5b95142239/2025/06/IMG_0238-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca2f46a7a9bf9f68d6466e5b95142239/2025/06/IMG_0235-scaled.jpeg,6/14/2025 0:00,10.0000000,11.0000000,43.2730310000000,5.36236800000000,Planète Mer,Plage du Prophète,,,,,,,,,, +N1,95109,Sortie #95109,https://biolit.fr/sorties/sortie-95109/,COUVRET Claire,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058578-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058577-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058576-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058554-scaled.jpg,6/14/2025 0:00,10.0000000,12.0000000,43.2736840,5.3623580,Planète Mer,Plage du Prophète,95110,Observation #95110,https://biolit.fr/observations/observation-95110/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058578-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058577-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058576-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058554-scaled.jpg,,,Ne sais pas +N1,95109,Sortie #95109,https://biolit.fr/sorties/sortie-95109/,COUVRET Claire,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058578-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058577-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058576-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058554-scaled.jpg,6/14/2025 0:00,10.0000000,12.0000000,43.2736840,5.3623580,Planète Mer,Plage du Prophète,95112,Observation #95112,https://biolit.fr/observations/observation-95112/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058578-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058577-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058576-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058554-scaled.jpg,,,Ne sais pas +N1,95109,Sortie #95109,https://biolit.fr/sorties/sortie-95109/,COUVRET Claire,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058578-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058577-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058576-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058554-scaled.jpg,6/14/2025 0:00,10.0000000,12.0000000,43.2736840,5.3623580,Planète Mer,Plage du Prophète,95114,Observation #95114,https://biolit.fr/observations/observation-95114/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058578-scaled.jpg,,,Ne sais pas +N1,95109,Sortie #95109,https://biolit.fr/sorties/sortie-95109/,COUVRET Claire,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058578-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058577-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058576-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058554-scaled.jpg,6/14/2025 0:00,10.0000000,12.0000000,43.2736840,5.3623580,Planète Mer,Plage du Prophète,95116,Observation #95116,https://biolit.fr/observations/observation-95116/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058577-scaled.jpg,,,Ne sais pas +N1,95109,Sortie #95109,https://biolit.fr/sorties/sortie-95109/,COUVRET Claire,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058578-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058577-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058576-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058554-scaled.jpg,6/14/2025 0:00,10.0000000,12.0000000,43.2736840,5.3623580,Planète Mer,Plage du Prophète,95118,Observation #95118,https://biolit.fr/observations/observation-95118/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058576-scaled.jpg,,,Ne sais pas +N1,95109,Sortie #95109,https://biolit.fr/sorties/sortie-95109/,COUVRET Claire,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058578-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058577-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058576-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058554-scaled.jpg,6/14/2025 0:00,10.0000000,12.0000000,43.2736840,5.3623580,Planète Mer,Plage du Prophète,95120,Observation #95120,https://biolit.fr/observations/observation-95120/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058574-scaled.jpg,,,Ne sais pas +N1,95109,Sortie #95109,https://biolit.fr/sorties/sortie-95109/,COUVRET Claire,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058578-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058577-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058576-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058554-scaled.jpg,6/14/2025 0:00,10.0000000,12.0000000,43.2736840,5.3623580,Planète Mer,Plage du Prophète,95122,Observation #95122,https://biolit.fr/observations/observation-95122/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058575-scaled.jpg,,,Ne sais pas +N1,95109,Sortie #95109,https://biolit.fr/sorties/sortie-95109/,COUVRET Claire,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058578-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058577-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058576-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058554-scaled.jpg,6/14/2025 0:00,10.0000000,12.0000000,43.2736840,5.3623580,Planète Mer,Plage du Prophète,95124,Observation #95124,https://biolit.fr/observations/observation-95124/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058571-scaled.jpg,,,Ne sais pas +N1,95109,Sortie #95109,https://biolit.fr/sorties/sortie-95109/,COUVRET Claire,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058578-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058577-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058576-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058554-scaled.jpg,6/14/2025 0:00,10.0000000,12.0000000,43.2736840,5.3623580,Planète Mer,Plage du Prophète,95126,Observation #95126,https://biolit.fr/observations/observation-95126/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058554-scaled.jpg,,TRUE,Identifiable +N1,95139,Sortie #95139,https://biolit.fr/sorties/sortie-95139/,GASMI Nabila,https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_112210-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_112147-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_112116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_112047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_112039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_112031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_112026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_111445-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_111435-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_105526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_105338-scaled.jpg,6/14/2025 0:00,10.0000000,11.0:15,43.2782230000000,5.36215000000000,Planète Mer,Plage des Prophètes,95140,Observation #95140,https://biolit.fr/observations/observation-95140/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_111445-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_112147-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_112026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_112039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_112210-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_112116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_112047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_112031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_105526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_111435-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_105338-scaled.jpg,,,Ne sais pas +N1,95178,Sortie #95178,https://biolit.fr/sorties/sortie-95178/,MONTAGNON Géraldine,https://biolit.fr/wp-content/uploads/jet-form-builder/ca2f46a7a9bf9f68d6466e5b95142239/2025/06/IMG_0244-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca2f46a7a9bf9f68d6466e5b95142239/2025/06/IMG_0240-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca2f46a7a9bf9f68d6466e5b95142239/2025/06/IMG_0235-1-scaled.jpeg,6/14/2025 0:00,10.0000000,11.0000000,43.2730130000000,5.36287300000000,Planète Mer,Plage des prophètes,95179,Observation #95179,https://biolit.fr/observations/observation-95179/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca2f46a7a9bf9f68d6466e5b95142239/2025/06/IMG_0244-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca2f46a7a9bf9f68d6466e5b95142239/2025/06/IMG_0235-1-scaled.jpeg,,,Ne sais pas +N1,95178,Sortie #95178,https://biolit.fr/sorties/sortie-95178/,MONTAGNON Géraldine,https://biolit.fr/wp-content/uploads/jet-form-builder/ca2f46a7a9bf9f68d6466e5b95142239/2025/06/IMG_0244-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca2f46a7a9bf9f68d6466e5b95142239/2025/06/IMG_0240-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca2f46a7a9bf9f68d6466e5b95142239/2025/06/IMG_0235-1-scaled.jpeg,6/14/2025 0:00,10.0000000,11.0000000,43.2730130000000,5.36287300000000,Planète Mer,Plage des prophètes,95181,Observation #95181,https://biolit.fr/observations/observation-95181/,Amphilectus fucorum,Eponge mousse de carotte,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca2f46a7a9bf9f68d6466e5b95142239/2025/06/IMG_0240-scaled.jpeg,,,Identifiable +N1,95185,Sortie #95185,https://biolit.fr/sorties/sortie-95185/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8366-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8368-scaled.jpg,6/14/2025 0:00,23.0:26,23.0:29,43.2696630000000,6.57968900000000,,Port grimaud plagette canal,95186,Observation #95186,https://biolit.fr/observations/observation-95186/,Chelon labrosus,Mulet lippu,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8366-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8368-scaled.jpg,,,Identifiable +N1,95189,Sortie #95189,https://biolit.fr/sorties/sortie-95189/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8490-scaled.jpeg,6/15/2025 0:00,23.000003,23.000009,43.2705930000000,6.57854900000000,,Port Grimaud plagette canaux,95190,Observation #95190,https://biolit.fr/observations/observation-95190/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8490-scaled.jpeg,,,Identifiable +N1,95421,Sortie #95421,https://biolit.fr/sorties/sortie-95421/,Lemaire Lea,https://biolit.fr/wp-content/uploads/jet-form-builder/8697acf3fe48a690cc6f55e098a10f07/2025/06/IMG_20250509_163450_915-scaled.jpg,05/09/2025,15.0000000,16.0000000,49.9186980000000,1.03516000000000,Eco2Nature,Pourville-sur-mer,95422,Observation #95422,https://biolit.fr/observations/observation-95422/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8697acf3fe48a690cc6f55e098a10f07/2025/06/IMG_20250509_163450_915-scaled.jpg,,,Identifiable +N1,95428,Sortie #95428,https://biolit.fr/sorties/sortie-95428/,Lemaire Lea,https://biolit.fr/wp-content/uploads/jet-form-builder/8697acf3fe48a690cc6f55e098a10f07/2025/06/IMG_20250509_162822_171-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8697acf3fe48a690cc6f55e098a10f07/2025/06/IMG_20250509_161553_722-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8697acf3fe48a690cc6f55e098a10f07/2025/06/IMG_20250509_161109_993-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8697acf3fe48a690cc6f55e098a10f07/2025/06/IMG_20250509_160914_884-scaled.jpg,05/09/2025,15.0000000,16.0000000,49.9186710000000,1.03516800000000,Eco2Nature,Pourville-sur-mer,95429,Observation #95429,https://biolit.fr/observations/observation-95429/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/jet-form-builder/8697acf3fe48a690cc6f55e098a10f07/2025/06/IMG_20250509_162822_171-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8697acf3fe48a690cc6f55e098a10f07/2025/06/IMG_20250509_161553_722-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8697acf3fe48a690cc6f55e098a10f07/2025/06/IMG_20250509_161109_993-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8697acf3fe48a690cc6f55e098a10f07/2025/06/IMG_20250509_160914_884-scaled.jpg,,,Identifiable +N1,95440,Sortie #95440,https://biolit.fr/sorties/sortie-95440/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-2-scaled.jpg,06/06/2025,10.0000000,11.0000000,48.7022100000000,-1.84654000000000,Centre Virginie Hériot,Rocher port mer,95441,Observation #95441,https://biolit.fr/observations/observation-95441/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-parasite-1-scaled.jpg,,,Identifiable +N1,95440,Sortie #95440,https://biolit.fr/sorties/sortie-95440/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-2-scaled.jpg,06/06/2025,10.0000000,11.0000000,48.7022100000000,-1.84654000000000,Centre Virginie Hériot,Rocher port mer,95443,Observation #95443,https://biolit.fr/observations/observation-95443/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-2-scaled.jpg,,TRUE,Identifiable +N1,95440,Sortie #95440,https://biolit.fr/sorties/sortie-95440/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-2-scaled.jpg,06/06/2025,10.0000000,11.0000000,48.7022100000000,-1.84654000000000,Centre Virginie Hériot,Rocher port mer,95445,Observation #95445,https://biolit.fr/observations/observation-95445/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Blennie-2-scaled.jpg,,,Identifiable +N1,95440,Sortie #95440,https://biolit.fr/sorties/sortie-95440/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-2-scaled.jpg,06/06/2025,10.0000000,11.0000000,48.7022100000000,-1.84654000000000,Centre Virginie Hériot,Rocher port mer,95447,Observation #95447,https://biolit.fr/observations/observation-95447/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-1-scaled.jpg,,,Identifiable +N1,95440,Sortie #95440,https://biolit.fr/sorties/sortie-95440/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-2-scaled.jpg,06/06/2025,10.0000000,11.0000000,48.7022100000000,-1.84654000000000,Centre Virginie Hériot,Rocher port mer,95449,Observation #95449,https://biolit.fr/observations/observation-95449/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-1-scaled.jpg,,,Ne sais pas +N1,95440,Sortie #95440,https://biolit.fr/sorties/sortie-95440/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-2-scaled.jpg,06/06/2025,10.0000000,11.0000000,48.7022100000000,-1.84654000000000,Centre Virginie Hériot,Rocher port mer,95451,Observation #95451,https://biolit.fr/observations/observation-95451/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-2-scaled.jpg,,TRUE,Identifiable +N1,95461,Sortie #95461,https://biolit.fr/sorties/sortie-95461/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Palourde-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-1-scaled.jpg,06/06/2025,10.0000000,11.0000000,48.7023960000000,-1.846335000000,Centre Virginie Hériot,Rocher port mer,95462,Observation #95462,https://biolit.fr/observations/observation-95462/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Monodonte-2-scaled.jpg,,TRUE,Identifiable +N1,95461,Sortie #95461,https://biolit.fr/sorties/sortie-95461/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Palourde-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-1-scaled.jpg,06/06/2025,10.0000000,11.0000000,48.7023960000000,-1.846335000000,Centre Virginie Hériot,Rocher port mer,95464,Observation #95464,https://biolit.fr/observations/observation-95464/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-1-scaled.jpg,,,Identifiable +N1,95461,Sortie #95461,https://biolit.fr/sorties/sortie-95461/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Palourde-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-1-scaled.jpg,06/06/2025,10.0000000,11.0000000,48.7023960000000,-1.846335000000,Centre Virginie Hériot,Rocher port mer,95466,Observation #95466,https://biolit.fr/observations/observation-95466/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Palourde-2-scaled.jpg,,,Identifiable +N1,95461,Sortie #95461,https://biolit.fr/sorties/sortie-95461/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Palourde-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-1-scaled.jpg,06/06/2025,10.0000000,11.0000000,48.7023960000000,-1.846335000000,Centre Virginie Hériot,Rocher port mer,95468,Observation #95468,https://biolit.fr/observations/observation-95468/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-1-scaled.jpg,,,Identifiable +N1,95461,Sortie #95461,https://biolit.fr/sorties/sortie-95461/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Palourde-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-1-scaled.jpg,06/06/2025,10.0000000,11.0000000,48.7023960000000,-1.846335000000,Centre Virginie Hériot,Rocher port mer,95470,Observation #95470,https://biolit.fr/observations/observation-95470/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-scaled.jpg,,TRUE,Identifiable +N1,95461,Sortie #95461,https://biolit.fr/sorties/sortie-95461/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Palourde-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-1-scaled.jpg,06/06/2025,10.0000000,11.0000000,48.7023960000000,-1.846335000000,Centre Virginie Hériot,Rocher port mer,95472,Observation #95472,https://biolit.fr/observations/observation-95472/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-1-scaled.jpg,,,Identifiable +N1,95490,Sortie #95490,https://biolit.fr/sorties/sortie-95490/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-fraise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylee-leachi-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/ponte-de-nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-1-scaled.jpg,06/12/2025,15.0000000,16.0000000,48.7022660000000,-1.84619700000000,Centre Virginie Hériot,Rocher port mer,95492,Observation #95492,https://biolit.fr/observations/observation-95492/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-fraise-scaled.jpg,,TRUE,Identifiable +N1,95490,Sortie #95490,https://biolit.fr/sorties/sortie-95490/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-fraise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylee-leachi-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/ponte-de-nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-1-scaled.jpg,06/12/2025,15.0000000,16.0000000,48.7022660000000,-1.84619700000000,Centre Virginie Hériot,Rocher port mer,95494,Observation #95494,https://biolit.fr/observations/observation-95494/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-indeterminee-scaled.jpg,,,Ne sais pas +N1,95490,Sortie #95490,https://biolit.fr/sorties/sortie-95490/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-fraise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylee-leachi-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/ponte-de-nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-1-scaled.jpg,06/12/2025,15.0000000,16.0000000,48.7022660000000,-1.84619700000000,Centre Virginie Hériot,Rocher port mer,95496,Observation #95496,https://biolit.fr/observations/observation-95496/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-solaire-2-scaled.jpg,,,Identifiable +N1,95490,Sortie #95490,https://biolit.fr/sorties/sortie-95490/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-fraise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylee-leachi-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/ponte-de-nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-1-scaled.jpg,06/12/2025,15.0000000,16.0000000,48.7022660000000,-1.84619700000000,Centre Virginie Hériot,Rocher port mer,95498,Observation #95498,https://biolit.fr/observations/observation-95498/,Pagurus bernhardus,Bernard-l'ermite commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-2-scaled.jpg,,,Identifiable +N1,95490,Sortie #95490,https://biolit.fr/sorties/sortie-95490/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-fraise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylee-leachi-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/ponte-de-nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-1-scaled.jpg,06/12/2025,15.0000000,16.0000000,48.7022660000000,-1.84619700000000,Centre Virginie Hériot,Rocher port mer,95500,Observation #95500,https://biolit.fr/observations/observation-95500/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylee-leachi-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-leachi-scaled.jpg,,,Identifiable +N1,95490,Sortie #95490,https://biolit.fr/sorties/sortie-95490/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-fraise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylee-leachi-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/ponte-de-nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-1-scaled.jpg,06/12/2025,15.0000000,16.0000000,48.7022660000000,-1.84619700000000,Centre Virginie Hériot,Rocher port mer,95502,Observation #95502,https://biolit.fr/observations/observation-95502/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-1-scaled.jpg,,,Identifiable +N1,95490,Sortie #95490,https://biolit.fr/sorties/sortie-95490/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-fraise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylee-leachi-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/ponte-de-nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-1-scaled.jpg,06/12/2025,15.0000000,16.0000000,48.7022660000000,-1.84619700000000,Centre Virginie Hériot,Rocher port mer,95504,Observation #95504,https://biolit.fr/observations/observation-95504/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-porcellane-scaled.jpg,,TRUE,Identifiable +N1,95490,Sortie #95490,https://biolit.fr/sorties/sortie-95490/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-fraise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylee-leachi-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/ponte-de-nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-1-scaled.jpg,06/12/2025,15.0000000,16.0000000,48.7022660000000,-1.84619700000000,Centre Virginie Hériot,Rocher port mer,95506,Observation #95506,https://biolit.fr/observations/observation-95506/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-2-scaled.jpg,,,Identifiable +N1,95490,Sortie #95490,https://biolit.fr/sorties/sortie-95490/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-fraise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylee-leachi-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/ponte-de-nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-1-scaled.jpg,06/12/2025,15.0000000,16.0000000,48.7022660000000,-1.84619700000000,Centre Virginie Hériot,Rocher port mer,95508,Observation #95508,https://biolit.fr/observations/observation-95508/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-scaled.jpg,,,Ne sais pas +N1,95490,Sortie #95490,https://biolit.fr/sorties/sortie-95490/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-fraise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylee-leachi-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/ponte-de-nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-1-scaled.jpg,06/12/2025,15.0000000,16.0000000,48.7022660000000,-1.84619700000000,Centre Virginie Hériot,Rocher port mer,95510,Observation #95510,https://biolit.fr/observations/observation-95510/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-2-scaled.jpg,,,Identifiable +N1,95490,Sortie #95490,https://biolit.fr/sorties/sortie-95490/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-fraise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylee-leachi-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/ponte-de-nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-1-scaled.jpg,06/12/2025,15.0000000,16.0000000,48.7022660000000,-1.84619700000000,Centre Virginie Hériot,Rocher port mer,95512,Observation #95512,https://biolit.fr/observations/observation-95512/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/ponte-de-nasse-scaled.jpg,,,Identifiable +N1,95490,Sortie #95490,https://biolit.fr/sorties/sortie-95490/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-fraise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylee-leachi-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/ponte-de-nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-1-scaled.jpg,06/12/2025,15.0000000,16.0000000,48.7022660000000,-1.84619700000000,Centre Virginie Hériot,Rocher port mer,95514,Observation #95514,https://biolit.fr/observations/observation-95514/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/ponte-de-nasse-scaled.jpg,,,Identifiable +N1,95490,Sortie #95490,https://biolit.fr/sorties/sortie-95490/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-fraise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylee-leachi-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/ponte-de-nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-1-scaled.jpg,06/12/2025,15.0000000,16.0000000,48.7022660000000,-1.84619700000000,Centre Virginie Hériot,Rocher port mer,95516,Observation #95516,https://biolit.fr/observations/observation-95516/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-1-scaled.jpg,,TRUE,Identifiable +N1,95520,Sortie #95520,https://biolit.fr/sorties/sortie-95520/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8511.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8509.jpg,6/16/2025 0:00,19.0:24,19.0:31,43.2629160000000,6.60308400000000,,Cogolin ancienne usine des torpilles,95521,Observation #95521,https://biolit.fr/observations/observation-95521/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8511.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8509.jpg,,TRUE,Identifiable +N1,95524,Sortie #95524,https://biolit.fr/sorties/sortie-95524/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8475.jpg,6/15/2025 0:00,22.0000000,23.0000000,43.2696920000000,6.57978100000000,,Port grimaud canaux plagette rue Giscle,,,,,,,,,, +N1,95526,Sortie #95526,https://biolit.fr/sorties/sortie-95526/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8475-1.jpg,6/15/2025 0:00,22.0000000,22.0:57,43.2696630000000,6.57978600000000,,Port Grimaud canaux plagette rue Giscle,95527,Observation #95527,https://biolit.fr/observations/observation-95527/,Gobius niger,Gobie noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8475-1.jpg,,TRUE,Identifiable +N1,95530,Sortie #95530,https://biolit.fr/sorties/sortie-95530/,COULAUD ROMAIN,https://biolit.fr/wp-content/uploads/jet-form-builder/1bb882ba9ff1c0ce28ffdadbd6939776/2025/06/PES-1123-06929-scaled.jpg,6/16/2025 0:00,10.0000000,12.0000000,49.5559970000000,0.113678000000000,Université Le Havre Normandie (UMR SEBIO),Plage du Havre,,,,,,,,,, +N1,95532,Sortie #95532,https://biolit.fr/sorties/sortie-95532/,COULAUD ROMAIN,https://biolit.fr/wp-content/uploads/jet-form-builder/1bb882ba9ff1c0ce28ffdadbd6939776/2025/06/Sans-titre.jpg,6/16/2025 0:00,10.0000000,12.0000000,49.5559970000000,0.113678000000000,Université Le Havre Normandie (UMR SEBIO),Plage du Havre,,,,,,,,,, +N1,95535,Sortie #95535,https://biolit.fr/sorties/sortie-95535/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8577.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8574.jpeg,6/16/2025 0:00,20.0000000,20.000005,43.262620000000,6.60320700000000,,Gassin plage après usine des torpilles,95536,Observation #95536,https://biolit.fr/observations/observation-95536/,Sepia officinalis,Seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8577.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8574.jpeg,,TRUE,Identifiable +N1,95548,Sortie #95548,https://biolit.fr/sorties/sortie-95548/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_5059-scaled.jpeg,9/24/2020 0:00,15.0000000,15.0:37,43.2708840000000,6.57858700000000,,Port grimaud canaux,95549,Observation #95549,https://biolit.fr/observations/observation-95549/,Diplodus sargus,Sar commun de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_5059-scaled.jpeg,,TRUE,Identifiable +N1,95553,Sortie #95553,https://biolit.fr/sorties/sortie-95553/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8672.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8598.jpeg,6/16/2025 0:00,0.0:22,23.0:28,43.2696550000000,6.57978600000000,,Port grimaud canaux plagette rue Giscle,95554,Observation #95554,https://biolit.fr/observations/observation-95554/,Eriocheir sinensis,Crabe chinois à mitaines,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8598.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8672.jpeg,,,Identifiable +N1,95558,Sortie #95558,https://biolit.fr/sorties/sortie-95558/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/G0010881.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/G0010898.jpeg,09/03/2024,18.0:32,18.0:36,43.2625990000000,6.60300600000000,,Gassin plage après usine de torpilles,95559,Observation #95559,https://biolit.fr/observations/observation-95559/,Sparus aurata,Dorade (daurade) royale,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/G0010881.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/G0010898.jpeg,,TRUE,Identifiable +N1,95609,Sortie #95609,https://biolit.fr/sorties/sortie-95609/,Morange Solène,https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1216-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1215-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1214-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1213-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1212-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1211-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1210-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.129-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.128-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.127-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.126-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.124-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.123-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.122-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.121-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.12_Moules-2.jpg,11/12/2024,11.000008,14.000008,51.3625360000000,3.33292000000000,,Lekkerbek Beach,95610,Observation #95610,https://biolit.fr/observations/observation-95610/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1216-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1215-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1214-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1213-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1212-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1211-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1210-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.122-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.123-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.124-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.126-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.127-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.128-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.129-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.121-2.jpg,,,Ne sais pas +N1,95609,Sortie #95609,https://biolit.fr/sorties/sortie-95609/,Morange Solène,https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1216-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1215-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1214-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1213-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1212-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1211-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1210-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.129-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.128-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.127-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.126-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.124-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.123-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.122-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.121-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.12_Moules-2.jpg,11/12/2024,11.000008,14.000008,51.3625360000000,3.33292000000000,,Lekkerbek Beach,95612,Observation #95612,https://biolit.fr/observations/observation-95612/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.12_Moules-2.jpg,,,Identifiable +N1,95609,Sortie #95609,https://biolit.fr/sorties/sortie-95609/,Morange Solène,https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1216-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1215-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1214-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1213-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1212-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1211-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1210-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.129-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.128-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.127-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.126-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.124-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.123-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.122-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.121-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.12_Moules-2.jpg,11/12/2024,11.000008,14.000008,51.3625360000000,3.33292000000000,,Lekkerbek Beach,95614,Observation #95614,https://biolit.fr/observations/observation-95614/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1211-2.jpg,,,non-identifiable +N1,95609,Sortie #95609,https://biolit.fr/sorties/sortie-95609/,Morange Solène,https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1216-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1215-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1214-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1213-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1212-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1211-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1210-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.129-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.128-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.127-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.126-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.124-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.123-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.122-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.121-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.12_Moules-2.jpg,11/12/2024,11.000008,14.000008,51.3625360000000,3.33292000000000,,Lekkerbek Beach,95616,Observation #95616,https://biolit.fr/observations/observation-95616/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1215-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1214-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1213-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1216-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1211-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1212-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1210-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.129-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.127-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.128-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.126-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.124-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.122-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.123-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.121-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.12_Moules-2.jpg,,,Ne sais pas +N1,95622,Sortie #95622,https://biolit.fr/sorties/sortie-95622/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_3513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_3512.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_3504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_3503.jpg,3/19/2025 0:00,17.0:28,17.0:39,43.270585000000,6.57856300000000,,Port grimaud plagette canaux,95623,Observation #95623,https://biolit.fr/observations/observation-95623/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_3513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_3512.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_3504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_3503.jpg,,TRUE,Identifiable +N1,95628,Sortie #95628,https://biolit.fr/sorties/sortie-95628/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_5495.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_5495-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_5494.jpeg,9/22/2022 0:00,16.0:48,16.0:58,43.2741730000000,6.58415800000000,,Port Grimaud grande plage,95629,Observation #95629,https://biolit.fr/observations/observation-95629/,Antalis vulgaris,Dentale,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_5495.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_5495-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_5494.jpeg,,,Identifiable +N1,95652,Sortie #95652,https://biolit.fr/sorties/sortie-95652/,BOUSSAC Shirley,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075723-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075730-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075826-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080223-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080236-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080312-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080342-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080644-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080901-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080905-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3296890000000,5.03734700000000,Planète Mer,Carro,95653,Observation #95653,https://biolit.fr/observations/observation-95653/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080901-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080905-scaled.jpg,,TRUE,Identifiable +N1,95652,Sortie #95652,https://biolit.fr/sorties/sortie-95652/,BOUSSAC Shirley,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075723-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075730-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075826-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080223-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080236-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080312-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080342-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080644-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080901-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080905-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3296890000000,5.03734700000000,Planète Mer,Carro,95655,Observation #95655,https://biolit.fr/observations/observation-95655/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080644-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080342-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080312-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080236-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075723-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075730-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075826-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080223-scaled.jpg,,,Ne sais pas +N1,95652,Sortie #95652,https://biolit.fr/sorties/sortie-95652/,BOUSSAC Shirley,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075723-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075730-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075826-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080223-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080236-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080312-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080342-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080644-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080901-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080905-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3296890000000,5.03734700000000,Planète Mer,Carro,95657,Observation #95657,https://biolit.fr/observations/observation-95657/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080300-scaled.jpg,,TRUE,Identifiable +N1,95652,Sortie #95652,https://biolit.fr/sorties/sortie-95652/,BOUSSAC Shirley,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075723-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075730-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075826-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080223-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080236-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080312-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080342-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080644-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080901-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080905-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3296890000000,5.03734700000000,Planète Mer,Carro,95659,Observation #95659,https://biolit.fr/observations/observation-95659/,Achelous hastatus,Etrille nageuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080156-scaled.jpg,,,Identifiable +N1,95681,Sortie #95681,https://biolit.fr/sorties/sortie-95681/,BOUSSAC Shirley,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081839-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081849-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_082017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_082054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_082538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_082630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_082813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_082819-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083303-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083306-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083611-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083644-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083911-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3296780000000,5.03724500000000,Planète Mer,Carro,95682,Observation #95682,https://biolit.fr/observations/observation-95682/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083611-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083617-scaled.jpg,,,Identifiable +N1,95681,Sortie #95681,https://biolit.fr/sorties/sortie-95681/,BOUSSAC Shirley,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081839-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081849-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_082017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_082054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_082538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_082630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_082813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_082819-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083303-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083306-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083611-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083644-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083911-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3296780000000,5.03724500000000,Planète Mer,Carro,95684,Observation #95684,https://biolit.fr/observations/observation-95684/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081839-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081849-scaled.jpg,,TRUE,Ne sais pas +N1,95706,Sortie #95706,https://biolit.fr/sorties/sortie-95706/,BOUSSAC Shirley,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084337-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084542-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084606-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085359-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_090444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_092442-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_092448-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.329428000000,5.037682000000,Planète Mer,Carro,95707,Observation #95707,https://biolit.fr/observations/observation-95707/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084337-scaled.jpg,,TRUE,Identifiable +N1,95706,Sortie #95706,https://biolit.fr/sorties/sortie-95706/,BOUSSAC Shirley,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084337-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084542-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084606-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085359-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_090444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_092442-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_092448-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.329428000000,5.037682000000,Planète Mer,Carro,95709,Observation #95709,https://biolit.fr/observations/observation-95709/,Amblyeleotris aurora,Gobie magnifique,,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091130-scaled.jpg,,,Identifiable +N1,95706,Sortie #95706,https://biolit.fr/sorties/sortie-95706/,BOUSSAC Shirley,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084337-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084542-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084606-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085359-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_090444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_092442-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_092448-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.329428000000,5.037682000000,Planète Mer,Carro,95711,Observation #95711,https://biolit.fr/observations/observation-95711/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091809-scaled.jpg,,TRUE,Identifiable +N1,95706,Sortie #95706,https://biolit.fr/sorties/sortie-95706/,BOUSSAC Shirley,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084337-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084542-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084606-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085359-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_090444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_092442-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_092448-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.329428000000,5.037682000000,Planète Mer,Carro,95713,Observation #95713,https://biolit.fr/observations/observation-95713/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_090444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085359-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_092442-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_092448-scaled.jpg,,,Ne sais pas +N1,95706,Sortie #95706,https://biolit.fr/sorties/sortie-95706/,BOUSSAC Shirley,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084337-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084542-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084606-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085359-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_090444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_092442-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_092448-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.329428000000,5.037682000000,Planète Mer,Carro,95715,Observation #95715,https://biolit.fr/observations/observation-95715/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084606-scaled.jpg,,,Identifiable +N1,95737,Sortie #95737,https://biolit.fr/sorties/sortie-95737/,BOUSSAC Shirley,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081335-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081338-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081419-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081428-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081606-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081839-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081849-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_082017-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_082054-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_082538-1-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3295810000000,5.03760200000000,Planète Mer,Carro,95738,Observation #95738,https://biolit.fr/observations/observation-95738/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081419-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081428-scaled.jpg,,,Identifiable +N1,95746,Sortie #95746,https://biolit.fr/sorties/sortie-95746/,BOUSSAC Shirley,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_093546-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_093728-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_093732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_101501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_102339-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_102512-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3293790000000,5.03814300000000,Planète Mer,Carro,95747,Observation #95747,https://biolit.fr/observations/observation-95747/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_101501-scaled.jpg,,,Identifiable +N1,95746,Sortie #95746,https://biolit.fr/sorties/sortie-95746/,BOUSSAC Shirley,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_093546-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_093728-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_093732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_101501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_102339-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_102512-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3293790000000,5.03814300000000,Planète Mer,Carro,95749,Observation #95749,https://biolit.fr/observations/observation-95749/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_102512-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_093728-scaled.jpg,,,Identifiable +N1,95746,Sortie #95746,https://biolit.fr/sorties/sortie-95746/,BOUSSAC Shirley,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_093546-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_093728-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_093732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_101501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_102339-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_102512-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3293790000000,5.03814300000000,Planète Mer,Carro,95751,Observation #95751,https://biolit.fr/observations/observation-95751/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_093546-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_093728-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_093732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_102339-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_102512-scaled.jpg,,,Ne sais pas +N1,95765,Sortie #95765,https://biolit.fr/sorties/sortie-95765/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8705-scaled.jpeg,6/18/2025 0:00,17.0000000,17.0:54,43.2706080000000,6.57852800000000,,Port Grimaud plagette canaux 4 Vents,95766,Observation #95766,https://biolit.fr/observations/observation-95766/,Chelon labrosus,Mulet lippu,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8705-scaled.jpeg,,,Identifiable +N1,95770,Sortie #95770,https://biolit.fr/sorties/sortie-95770/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8861.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8859.jpeg,8/24/2024 0:00,20.0:44,20.0:48,43.2726270000000,6.58654500000000,,Port grimaud grande plage jetée nord,95771,Observation #95771,https://biolit.fr/observations/observation-95771/,Dasyatis pastinaca,Pastenague commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8861.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8859.jpeg,,TRUE,Identifiable +N1,95774,Sortie #95774,https://biolit.fr/sorties/sortie-95774/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8824.jpeg,6/19/2025 0:00,11.0000000,11.0:26,43.2701750000000,6.57797800000000,,Port Grimaud plagette canaux 4 vents,95775,Observation #95775,https://biolit.fr/observations/observation-95775/,Sparus aurata,Dorade (daurade) royale,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8824.jpeg,,TRUE,Identifiable +N1,95778,Sortie #95778,https://biolit.fr/sorties/sortie-95778/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Cerianthus-membranaceus.jpg,6/20/2025 0:00,9.0000000,9.0:45,43.2539530,5.4153940,,"Plage de la Pointe Rouge, 2m de profondeur à 60 mètres de la plage",95779,Observation #95779,https://biolit.fr/observations/observation-95779/,Cerianthus membranaceus,Grand cérianthe,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Cerianthus-membranaceus.jpg,,FALSE,Identifiable +N1,95783,Sortie #95783,https://biolit.fr/sorties/sortie-95783/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9281.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9278-scaled.jpeg,6/20/2025 0:00,22.0:47,22.0000000,43.2701530000000,6.57798200000000,,Port grimaud plagette 4 vents,95784,Observation #95784,https://biolit.fr/observations/observation-95784/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9281.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9278-scaled.jpeg,,TRUE,Identifiable +N1,95787,Sortie #95787,https://biolit.fr/sorties/sortie-95787/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9117.jpeg,6/20/2025 0:00,16.0:44,16.0:48,43.272455000000,6.5872590000000,,Port grimaud grande plage jetée,95788,Observation #95788,https://biolit.fr/observations/observation-95788/,Crambe crambe,Eponge encroûtante orange-rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9117.jpeg,,,Identifiable +N1,95791,Sortie #95791,https://biolit.fr/sorties/sortie-95791/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9047.jpeg,6/20/2025 0:00,15.0:43,15.0:47,43.272471000000,6.58683500000000,,Port grimaud grande plage PG1 jetée,95792,Observation #95792,https://biolit.fr/observations/observation-95792/,Tripterygion tripteronotum,Triptérygion rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9047.jpeg,,,Identifiable +N1,95795,Sortie #95795,https://biolit.fr/sorties/sortie-95795/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9021.jpeg,6/20/2025 0:00,15.0:19,15.0:24,43.2724520000000,6.58707100000000,,Port Grimaud grande plage PG1 jetée,95796,Observation #95796,https://biolit.fr/observations/observation-95796/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9021.jpeg,,,Ne sais pas +N1,95799,Sortie #95799,https://biolit.fr/sorties/sortie-95799/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8892.jpeg,6/20/2025 0:00,13.0:33,13.0:35,43.2722720000000,6.58752700000000,,Port Grimaud grande plage PG1 jetée,95800,Observation #95800,https://biolit.fr/observations/observation-95800/,Dicentrarchus labrax,Bar commun loup,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8892.jpeg,,TRUE,Identifiable +N1,95815,Sortie #95815,https://biolit.fr/sorties/sortie-95815/,Bodi Xavier,https://biolit.fr/wp-content/uploads/jet-form-builder/5b434f0825647024cd8b560bbcdd341f/2025/06/1000005830-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b434f0825647024cd8b560bbcdd341f/2025/06/1000005827-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b434f0825647024cd8b560bbcdd341f/2025/06/1000005828-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b434f0825647024cd8b560bbcdd341f/2025/06/1000005831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b434f0825647024cd8b560bbcdd341f/2025/06/1000005832-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b434f0825647024cd8b560bbcdd341f/2025/06/1000005829-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b434f0825647024cd8b560bbcdd341f/2025/06/1000005833.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b434f0825647024cd8b560bbcdd341f/2025/06/1000005834-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b434f0825647024cd8b560bbcdd341f/2025/06/1000005835-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b434f0825647024cd8b560bbcdd341f/2025/06/1000005836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b434f0825647024cd8b560bbcdd341f/2025/06/1000005837-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b434f0825647024cd8b560bbcdd341f/2025/06/1000005839-rotated.jpg,6/21/2025 0:00,18.0:45,19.0000000,48.6175120,-2.0287920,,Plage des fours à chaux,,,,,,,,,, +N1,95820,Sortie #95820,https://biolit.fr/sorties/sortie-95820/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_5787.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_5751.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_5751-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9533.jpeg,10/04/2022,17.0:35,17.0:45,43.2795460000000,6.59072400000000,,Port Grimaud niveau plage PG1 vers camping,95821,Observation #95821,https://biolit.fr/observations/observation-95821/,Salpa fusiformis,Salpe fuselée,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_5787.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_5751.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_5751-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9533.jpeg,,,Identifiable +N1,95824,Sortie #95824,https://biolit.fr/sorties/sortie-95824/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9538-scaled.jpeg,6/20/2025 0:00,11.000004,11.000007,43.2724660000000,6.58720000000000,,Port grimaud grande plage PG1 ling de la jetée,95825,Observation #95825,https://biolit.fr/observations/observation-95825/,Atherina sp.,Joël de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9538-scaled.jpeg,,TRUE,Identifiable +N1,95830,Sortie #95830,https://biolit.fr/sorties/sortie-95830/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_2933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_2936.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_2934.jpg,11/17/2024 0:00,14.0:43,14.0:51,43.263081000000,6.59149600000000,,Port Grimaud petite plage côté PG2,95831,Observation #95831,https://biolit.fr/observations/observation-95831/,Spondylus gaederopus,Spondyle pied-d'âne,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_2933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_2936.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_2934.jpg,,,Identifiable +N1,95835,Sortie #95835,https://biolit.fr/sorties/sortie-95835/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9551.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9549.jpeg,6/16/2025 0:00,19.0:45,19.0000000,43.2632970000000,6.60235400000000,,Gassin après usine de torpilles,95836,Observation #95836,https://biolit.fr/observations/observation-95836/,Scoloplos sp.,Ver de Scoloplos,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9551.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9549.jpeg,,,Ne sais pas +N1,95841,Sortie #95841,https://biolit.fr/sorties/sortie-95841/,Payet Florian,https://biolit.fr/wp-content/uploads/jet-form-builder/0754dfe29f024f3daf825dfec8d91231/2025/06/IMG_0969-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/0754dfe29f024f3daf825dfec8d91231/2025/06/IMG_0971-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/0754dfe29f024f3daf825dfec8d91231/2025/06/IMG_0965-scaled.jpeg,6/17/2025 0:00,9.0:44,11.0:39,49.5089540000000,0.067141000000000,Université Le Havre Normandie (UMR SEBIO),,,,,,,,,,, +N1,95850,Sortie #95850,https://biolit.fr/sorties/sortie-95850/,Rinaldi Arthur,https://biolit.fr/wp-content/uploads/jet-form-builder/22d1022f60971dc608aae3e45e21873d/2025/06/IMG_1122-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/22d1022f60971dc608aae3e45e21873d/2025/06/IMG_1121.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/22d1022f60971dc608aae3e45e21873d/2025/06/IMG_1113-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/22d1022f60971dc608aae3e45e21873d/2025/06/IMG_1117-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/22d1022f60971dc608aae3e45e21873d/2025/06/IMG_1119-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/22d1022f60971dc608aae3e45e21873d/2025/06/IMG_1120-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/22d1022f60971dc608aae3e45e21873d/2025/06/IMG_1118-scaled.jpeg,6/17/2025 0:00,9.0:55,10.0000000,49.4594220000000,0.10986300000,,Le Havre,95851,Observation #95851,https://biolit.fr/observations/observation-95851/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/22d1022f60971dc608aae3e45e21873d/2025/06/IMG_1122-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/22d1022f60971dc608aae3e45e21873d/2025/06/IMG_1117-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/22d1022f60971dc608aae3e45e21873d/2025/06/IMG_1119-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/22d1022f60971dc608aae3e45e21873d/2025/06/IMG_1120-scaled.jpeg,,,Identifiable +N1,95856,Sortie #95856,https://biolit.fr/sorties/sortie-95856/,Soudet THEO,https://biolit.fr/wp-content/uploads/jet-form-builder/8a77d90b14f4f33d76f75bf7d6340a34/2025/06/IMG_0971-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8a77d90b14f4f33d76f75bf7d6340a34/2025/06/IMG_0969-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8a77d90b14f4f33d76f75bf7d6340a34/2025/06/IMG_0965-scaled.jpeg,6/17/2025 0:00,9.0:45,11.0000000,49.5090010000000,0.0669690000000000,Université Le Havre Normandie (UMR SEBIO),Cap de la Hève,95862,Observation #95862,https://biolit.fr/observations/observation-95862/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/8a77d90b14f4f33d76f75bf7d6340a34/2025/06/IMG_0971-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8a77d90b14f4f33d76f75bf7d6340a34/2025/06/IMG_0969-scaled.jpeg,,TRUE,Identifiable +N1,95856,Sortie #95856,https://biolit.fr/sorties/sortie-95856/,Soudet THEO,https://biolit.fr/wp-content/uploads/jet-form-builder/8a77d90b14f4f33d76f75bf7d6340a34/2025/06/IMG_0971-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8a77d90b14f4f33d76f75bf7d6340a34/2025/06/IMG_0969-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8a77d90b14f4f33d76f75bf7d6340a34/2025/06/IMG_0965-scaled.jpeg,6/17/2025 0:00,9.0:45,11.0000000,49.5090010000000,0.0669690000000000,Université Le Havre Normandie (UMR SEBIO),Cap de la Hève,95870,Observation #95870,https://biolit.fr/observations/observation-95870/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8a77d90b14f4f33d76f75bf7d6340a34/2025/06/IMG_0965-scaled.jpeg,,,Ne sais pas +N1,95887,Sortie #95887,https://biolit.fr/sorties/sortie-95887/,Hauguel Clément,https://biolit.fr/wp-content/uploads/jet-form-builder/1f3a91a079875785ed6280cfc1c83ea3/2025/06/IMG_0448-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1f3a91a079875785ed6280cfc1c83ea3/2025/06/IMG_0447-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1f3a91a079875785ed6280cfc1c83ea3/2025/06/IMG_0446-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1f3a91a079875785ed6280cfc1c83ea3/2025/06/IMG_0437-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1f3a91a079875785ed6280cfc1c83ea3/2025/06/IMG_0436-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1f3a91a079875785ed6280cfc1c83ea3/2025/06/IMG_0420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1f3a91a079875785ed6280cfc1c83ea3/2025/06/IMG_0419-scaled.jpeg,6/17/2025 0:00,9.0:45,11.0000000,49.5078200000000,0.0678330000000000,Université Le Havre Normandie (UMR SEBIO),Sainte adresse,,,,,,,,,, +N1,95890,Sortie #95890,https://biolit.fr/sorties/sortie-95890/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9652.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9624.jpg,6/23/2025 0:00,0.0:37,0.0000000,43.2696530000000,6.57979100000000,,Port grimaud plagette rue de la giscle,95891,Observation #95891,https://biolit.fr/observations/observation-95891/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9652.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9624.jpg,,TRUE,Identifiable +N1,95895,Sortie #95895,https://biolit.fr/sorties/sortie-95895/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9655.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9619-scaled.jpg,6/23/2025 0:00,0.0:36,0.0000000,43.2696450000000,6.57972400000000,,Port grimaud plagette rue de la Giscle,95896,Observation #95896,https://biolit.fr/observations/observation-95896/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9655.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9619-scaled.jpg,,TRUE,Identifiable +N1,95900,Sortie #95900,https://biolit.fr/sorties/sortie-95900/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9667.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9663.png,6/23/2025 0:00,0.0:37,0.0:42,43.2696440000000,6.57972000000000,,Port grimaud plagette rue de la Giscle,95901,Observation #95901,https://biolit.fr/observations/observation-95901/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9667.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9663.png,,TRUE,Identifiable +N1,95904,Sortie #95904,https://biolit.fr/sorties/sortie-95904/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9635.jpg,6/23/2025 0:00,0.0:38,0.0:44,43.2696440000000,6.57972000000000,,Port Grimaud plagette rue de la Giscle,95905,Observation #95905,https://biolit.fr/observations/observation-95905/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9635.jpg,,TRUE,Identifiable +N1,95908,Sortie #95908,https://biolit.fr/sorties/sortie-95908/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9642-scaled.jpg,6/23/2025 0:00,0.0:39,0.0:43,43.2696410000000,6.57971900000000,,Port Grimaud plagette rue de la Giscle,95909,Observation #95909,https://biolit.fr/observations/observation-95909/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9642-scaled.jpg,,TRUE,Identifiable +N1,95912,Sortie #95912,https://biolit.fr/sorties/sortie-95912/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9673.jpeg,6/23/2025 0:00,0.0:33,0.0:39,43.2696490000000,6.57971100000000,,Port Grimaud plagette rue de la Giscle,95913,Observation #95913,https://biolit.fr/observations/observation-95913/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9673.jpeg,,TRUE,Identifiable +N1,95916,Sortie #95916,https://biolit.fr/sorties/sortie-95916/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9674.jpeg,6/16/2025 0:00,19.0:47,19.0:57,43.2628230000000,6.60259000000000,,Gassin après usine de torpilles,95917,Observation #95917,https://biolit.fr/observations/observation-95917/,Acetabularia acetabulum,Acétabulaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9674.jpeg,,TRUE,Identifiable +N1,96033,Sortie #96033,https://biolit.fr/sorties/sortie-96033/,Deflandre Léa,https://biolit.fr/wp-content/uploads/jet-form-builder/cafbaedf2fe06792d1fd97c7a4f33723/2025/06/39B28ABA-813B-41B2-8563-6A7EC9ACA995-scaled.jpeg,6/15/2025 0:00,14.0:14,14.0:15,48.6659710000000,-1.99029600000000,Al-Lark,Plage de Rochebonne,96034,Observation #96034,https://biolit.fr/observations/observation-96034/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cafbaedf2fe06792d1fd97c7a4f33723/2025/06/39B28ABA-813B-41B2-8563-6A7EC9ACA995-scaled.jpeg,,,Ne sais pas +N1,96040,Sortie #96040,https://biolit.fr/sorties/sortie-96040/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9089.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9091.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9686.jpeg,6/20/2025 0:00,12.0000000,12.0:38,43.272471000000,6.58699600000000,,Port Grimaud grande plage PG1 jetée,96041,Observation #96041,https://biolit.fr/observations/observation-96041/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9089.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9091.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9686.jpeg,,TRUE,Ne sais pas +N1,96056,Sortie #96056,https://biolit.fr/sorties/sortie-96056/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9687.jpeg,6/23/2025 0:00,20.0:38,20.0:58,43.2709360000000,6.57864600000000,,Port Grimaud canal ile verte,96057,Observation #96057,https://biolit.fr/observations/observation-96057/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9687.jpeg,,TRUE,Identifiable +N1,96063,Sortie #96063,https://biolit.fr/sorties/sortie-96063/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9735.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9732.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9729.jpeg,6/23/2025 0:00,23.0:39,23.0:43,43.2696550000000,6.57972000000000,,Port Grimaud plagette rue de Giscle,96064,Observation #96064,https://biolit.fr/observations/observation-96064/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9735.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9732.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9729.jpeg,,TRUE,Identifiable +N1,96075,Sortie #96075,https://biolit.fr/sorties/sortie-96075/,DEUX MICKAEL,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6795-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6796-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6789-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6791-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6792-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6793-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6794-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6797-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6798-scaled.jpeg,6/22/2025 0:00,10.0000000,10.0:55,47.2711870000000,-2.41458900000000,,Le Pouliguen,96078,Observation #96078,https://biolit.fr/observations/observation-96078/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6796-scaled.jpeg,,TRUE,Identifiable +N1,96075,Sortie #96075,https://biolit.fr/sorties/sortie-96075/,DEUX MICKAEL,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6795-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6796-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6789-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6791-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6792-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6793-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6794-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6797-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6798-scaled.jpeg,6/22/2025 0:00,10.0000000,10.0:55,47.2711870000000,-2.41458900000000,,Le Pouliguen,96080,Observation #96080,https://biolit.fr/observations/observation-96080/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6789-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6797-scaled.jpeg,,,Identifiable +N1,96075,Sortie #96075,https://biolit.fr/sorties/sortie-96075/,DEUX MICKAEL,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6795-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6796-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6789-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6791-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6792-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6793-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6794-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6797-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6798-scaled.jpeg,6/22/2025 0:00,10.0000000,10.0:55,47.2711870000000,-2.41458900000000,,Le Pouliguen,96082,Observation #96082,https://biolit.fr/observations/observation-96082/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6791-scaled.jpeg,,TRUE,Identifiable +N1,96075,Sortie #96075,https://biolit.fr/sorties/sortie-96075/,DEUX MICKAEL,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6795-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6796-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6789-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6791-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6792-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6793-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6794-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6797-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6798-scaled.jpeg,6/22/2025 0:00,10.0000000,10.0:55,47.2711870000000,-2.41458900000000,,Le Pouliguen,96084,Observation #96084,https://biolit.fr/observations/observation-96084/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6792-scaled.jpeg,,TRUE,Identifiable +N1,96075,Sortie #96075,https://biolit.fr/sorties/sortie-96075/,DEUX MICKAEL,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6795-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6796-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6789-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6791-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6792-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6793-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6794-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6797-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6798-scaled.jpeg,6/22/2025 0:00,10.0000000,10.0:55,47.2711870000000,-2.41458900000000,,Le Pouliguen,96086,Observation #96086,https://biolit.fr/observations/observation-96086/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6793-scaled.jpeg,,TRUE,Identifiable +N1,96075,Sortie #96075,https://biolit.fr/sorties/sortie-96075/,DEUX MICKAEL,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6795-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6796-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6789-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6791-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6792-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6793-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6794-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6797-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6798-scaled.jpeg,6/22/2025 0:00,10.0000000,10.0:55,47.2711870000000,-2.41458900000000,,Le Pouliguen,96088,Observation #96088,https://biolit.fr/observations/observation-96088/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6798-scaled.jpeg,,TRUE,Identifiable +N1,96101,Sortie #96101,https://biolit.fr/sorties/sortie-96101/,panchout william,https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4664-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4665-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4666-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4667-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4670-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4672-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4677-scaled.jpg,6/25/2025 0:00,8.000001,13.000001,49.508897000000,0.0672380000000000,Observe la nature,plage sainte-adresse 76310,96102,Observation #96102,https://biolit.fr/observations/observation-96102/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4664-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4665-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4666-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4667-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4670-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4672-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4677-scaled.jpg,,,Ne sais pas +N1,96101,Sortie #96101,https://biolit.fr/sorties/sortie-96101/,panchout william,https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4664-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4665-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4666-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4667-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4670-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4672-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4677-scaled.jpg,6/25/2025 0:00,8.000001,13.000001,49.508897000000,0.0672380000000000,Observe la nature,plage sainte-adresse 76310,96104,Observation #96104,https://biolit.fr/observations/observation-96104/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4664-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4665-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4666-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4667-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4670-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4672-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4673-scaled.jpg,,,non-identifiable +N1,96101,Sortie #96101,https://biolit.fr/sorties/sortie-96101/,panchout william,https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4664-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4665-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4666-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4667-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4670-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4672-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4677-scaled.jpg,6/25/2025 0:00,8.000001,13.000001,49.508897000000,0.0672380000000000,Observe la nature,plage sainte-adresse 76310,96106,Observation #96106,https://biolit.fr/observations/observation-96106/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4665-scaled.jpg,,,non-identifiable +N1,96101,Sortie #96101,https://biolit.fr/sorties/sortie-96101/,panchout william,https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4664-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4665-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4666-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4667-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4670-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4672-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4677-scaled.jpg,6/25/2025 0:00,8.000001,13.000001,49.508897000000,0.0672380000000000,Observe la nature,plage sainte-adresse 76310,96108,Observation #96108,https://biolit.fr/observations/observation-96108/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4666-scaled.jpg,,,Ne sais pas +N1,96101,Sortie #96101,https://biolit.fr/sorties/sortie-96101/,panchout william,https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4664-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4665-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4666-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4667-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4670-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4672-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4677-scaled.jpg,6/25/2025 0:00,8.000001,13.000001,49.508897000000,0.0672380000000000,Observe la nature,plage sainte-adresse 76310,96110,Observation #96110,https://biolit.fr/observations/observation-96110/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4667-scaled.jpg,,,Ne sais pas +N1,96101,Sortie #96101,https://biolit.fr/sorties/sortie-96101/,panchout william,https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4664-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4665-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4666-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4667-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4670-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4672-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4677-scaled.jpg,6/25/2025 0:00,8.000001,13.000001,49.508897000000,0.0672380000000000,Observe la nature,plage sainte-adresse 76310,96112,Observation #96112,https://biolit.fr/observations/observation-96112/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4670-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4671-scaled.jpg,,,Ne sais pas +N1,96101,Sortie #96101,https://biolit.fr/sorties/sortie-96101/,panchout william,https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4664-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4665-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4666-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4667-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4670-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4672-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4677-scaled.jpg,6/25/2025 0:00,8.000001,13.000001,49.508897000000,0.0672380000000000,Observe la nature,plage sainte-adresse 76310,96114,Observation #96114,https://biolit.fr/observations/observation-96114/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4677-scaled.jpg,,,Ne sais pas +N1,96120,Sortie #96120,https://biolit.fr/sorties/sortie-96120/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_083012534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_085422886.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_090931554.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_091004057.MP_-scaled.jpg,6/25/2025 0:00,10.0000000,12.0000000,43.5470260000000,4.12170800000000,LABELBLEU,Plage du Boucanet au Grau-du-Roi,96121,Observation #96121,https://biolit.fr/observations/observation-96121/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_083012534-scaled.jpg,,TRUE,Identifiable +N1,96120,Sortie #96120,https://biolit.fr/sorties/sortie-96120/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_083012534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_085422886.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_090931554.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_091004057.MP_-scaled.jpg,6/25/2025 0:00,10.0000000,12.0000000,43.5470260000000,4.12170800000000,LABELBLEU,Plage du Boucanet au Grau-du-Roi,96123,Observation #96123,https://biolit.fr/observations/observation-96123/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_085422886.MP_-scaled.jpg,,,Ne sais pas +N1,96120,Sortie #96120,https://biolit.fr/sorties/sortie-96120/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_083012534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_085422886.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_090931554.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_091004057.MP_-scaled.jpg,6/25/2025 0:00,10.0000000,12.0000000,43.5470260000000,4.12170800000000,LABELBLEU,Plage du Boucanet au Grau-du-Roi,96125,Observation #96125,https://biolit.fr/observations/observation-96125/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_090931554.MP_-scaled.jpg,,,Ne sais pas +N1,96120,Sortie #96120,https://biolit.fr/sorties/sortie-96120/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_083012534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_085422886.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_090931554.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_091004057.MP_-scaled.jpg,6/25/2025 0:00,10.0000000,12.0000000,43.5470260000000,4.12170800000000,LABELBLEU,Plage du Boucanet au Grau-du-Roi,96127,Observation #96127,https://biolit.fr/observations/observation-96127/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_091004057.MP_-scaled.jpg,,,Identifiable +N1,96188,Sortie #96188,https://biolit.fr/sorties/sortie-96188/,Monllor Monica,https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImagef8nYRl-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImageYl6LKu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImageDtIqQJ-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImage5ucqgf-scaled.jpg,6/25/2025 0:00,8.0000000,11.0000000,43.4314410000000,3.77489800000000,LPO Occitanie (Dt Hérault),Port de Frontignan,96189,Observation #96189,https://biolit.fr/observations/observation-96189/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImageYl6LKu-scaled.jpg,,TRUE,Identifiable +N1,96188,Sortie #96188,https://biolit.fr/sorties/sortie-96188/,Monllor Monica,https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImagef8nYRl-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImageYl6LKu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImageDtIqQJ-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImage5ucqgf-scaled.jpg,6/25/2025 0:00,8.0000000,11.0000000,43.4314410000000,3.77489800000000,LPO Occitanie (Dt Hérault),Port de Frontignan,96191,Observation #96191,https://biolit.fr/observations/observation-96191/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImage5ucqgf-scaled.jpg,,TRUE,Identifiable +N1,96188,Sortie #96188,https://biolit.fr/sorties/sortie-96188/,Monllor Monica,https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImagef8nYRl-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImageYl6LKu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImageDtIqQJ-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImage5ucqgf-scaled.jpg,6/25/2025 0:00,8.0000000,11.0000000,43.4314410000000,3.77489800000000,LPO Occitanie (Dt Hérault),Port de Frontignan,96193,Observation #96193,https://biolit.fr/observations/observation-96193/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImagef8nYRl-scaled.jpg,,TRUE,Identifiable +N1,96188,Sortie #96188,https://biolit.fr/sorties/sortie-96188/,Monllor Monica,https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImagef8nYRl-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImageYl6LKu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImageDtIqQJ-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImage5ucqgf-scaled.jpg,6/25/2025 0:00,8.0000000,11.0000000,43.4314410000000,3.77489800000000,LPO Occitanie (Dt Hérault),Port de Frontignan,96195,Observation #96195,https://biolit.fr/observations/observation-96195/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImageDtIqQJ-scaled.jpg,,TRUE,Identifiable +N1,96199,Sortie #96199,https://biolit.fr/sorties/sortie-96199/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/7d54d3f0-7e5d-4e47-8f5a-477155ab7ac5.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9772.jpeg,6/21/2025 0:00,15.0000000,15.0000000,43.2628150000000,6.59386800000000,,Port Grimaud petite plage,96200,Observation #96200,https://biolit.fr/observations/observation-96200/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/7d54d3f0-7e5d-4e47-8f5a-477155ab7ac5.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9772.jpeg,,,Identifiable +N1,96203,Sortie #96203,https://biolit.fr/sorties/sortie-96203/,Termignon Delphine,https://biolit.fr/wp-content/uploads/jet-form-builder/3dcd28de0566460139dd63f2ec8704a8/2025/06/1000035606-scaled.jpg,6/25/2025 0:00,9.0000000,11.0000000,43.4313620000000,3.77487900000000,LPO Occitanie (Dt Hérault),Frontignan plage,96204,Observation #96204,https://biolit.fr/observations/observation-96204/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3dcd28de0566460139dd63f2ec8704a8/2025/06/1000035606-scaled.jpg,,,Identifiable +N1,96203,Sortie #96203,https://biolit.fr/sorties/sortie-96203/,Termignon Delphine,https://biolit.fr/wp-content/uploads/jet-form-builder/3dcd28de0566460139dd63f2ec8704a8/2025/06/1000035606-scaled.jpg,6/25/2025 0:00,9.0000000,11.0000000,43.4313620000000,3.77487900000000,LPO Occitanie (Dt Hérault),Frontignan plage,96206,Observation #96206,https://biolit.fr/observations/observation-96206/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/3dcd28de0566460139dd63f2ec8704a8/2025/06/1000035606-scaled.jpg,,TRUE,Identifiable +N1,96220,Sortie #96220,https://biolit.fr/sorties/sortie-96220/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8813-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8814-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8815-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8817-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8818-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8819-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8821-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8822-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8823-scaled.jpeg,6/18/2025 0:00,11.0000000,12.0000000,48.638003000000,-2.02955200000000,,St Servan,96221,Observation #96221,https://biolit.fr/observations/observation-96221/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8813-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8814-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8815-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8817-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8818-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8819-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8821-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8822-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8823-scaled.jpeg,,,Ne sais pas +N1,96220,Sortie #96220,https://biolit.fr/sorties/sortie-96220/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8813-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8814-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8815-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8817-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8818-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8819-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8821-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8822-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8823-scaled.jpeg,6/18/2025 0:00,11.0000000,12.0000000,48.638003000000,-2.02955200000000,,St Servan,96223,Observation #96223,https://biolit.fr/observations/observation-96223/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8813-1-scaled.jpeg,,,Ne sais pas +N1,96220,Sortie #96220,https://biolit.fr/sorties/sortie-96220/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8813-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8814-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8815-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8817-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8818-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8819-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8821-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8822-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8823-scaled.jpeg,6/18/2025 0:00,11.0000000,12.0000000,48.638003000000,-2.02955200000000,,St Servan,96225,Observation #96225,https://biolit.fr/observations/observation-96225/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8813-1-scaled.jpeg,,,Ne sais pas +N1,96220,Sortie #96220,https://biolit.fr/sorties/sortie-96220/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8813-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8814-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8815-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8817-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8818-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8819-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8821-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8822-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8823-scaled.jpeg,6/18/2025 0:00,11.0000000,12.0000000,48.638003000000,-2.02955200000000,,St Servan,96227,Observation #96227,https://biolit.fr/observations/observation-96227/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8823-scaled.jpeg,,,Ne sais pas +N1,96220,Sortie #96220,https://biolit.fr/sorties/sortie-96220/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8813-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8814-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8815-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8817-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8818-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8819-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8821-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8822-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8823-scaled.jpeg,6/18/2025 0:00,11.0000000,12.0000000,48.638003000000,-2.02955200000000,,St Servan,96229,Observation #96229,https://biolit.fr/observations/observation-96229/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8822-scaled.jpeg,,,Ne sais pas +N1,96220,Sortie #96220,https://biolit.fr/sorties/sortie-96220/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8813-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8814-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8815-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8817-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8818-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8819-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8821-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8822-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8823-scaled.jpeg,6/18/2025 0:00,11.0000000,12.0000000,48.638003000000,-2.02955200000000,,St Servan,96231,Observation #96231,https://biolit.fr/observations/observation-96231/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8821-scaled.jpeg,,,Ne sais pas +N1,96220,Sortie #96220,https://biolit.fr/sorties/sortie-96220/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8813-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8814-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8815-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8817-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8818-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8819-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8821-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8822-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8823-scaled.jpeg,6/18/2025 0:00,11.0000000,12.0000000,48.638003000000,-2.02955200000000,,St Servan,96233,Observation #96233,https://biolit.fr/observations/observation-96233/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8819-scaled.jpeg,,,Ne sais pas +N1,96220,Sortie #96220,https://biolit.fr/sorties/sortie-96220/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8813-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8814-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8815-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8817-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8818-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8819-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8821-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8822-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8823-scaled.jpeg,6/18/2025 0:00,11.0000000,12.0000000,48.638003000000,-2.02955200000000,,St Servan,96235,Observation #96235,https://biolit.fr/observations/observation-96235/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8818-scaled.jpeg,,,Ne sais pas +N1,96220,Sortie #96220,https://biolit.fr/sorties/sortie-96220/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8813-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8814-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8815-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8817-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8818-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8819-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8821-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8822-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8823-scaled.jpeg,6/18/2025 0:00,11.0000000,12.0000000,48.638003000000,-2.02955200000000,,St Servan,96237,Observation #96237,https://biolit.fr/observations/observation-96237/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8817-scaled.jpeg,,,Ne sais pas +N1,96220,Sortie #96220,https://biolit.fr/sorties/sortie-96220/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8813-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8814-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8815-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8817-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8818-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8819-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8821-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8822-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8823-scaled.jpeg,6/18/2025 0:00,11.0000000,12.0000000,48.638003000000,-2.02955200000000,,St Servan,96239,Observation #96239,https://biolit.fr/observations/observation-96239/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8815-1-scaled.jpeg,,,Ne sais pas +N1,96220,Sortie #96220,https://biolit.fr/sorties/sortie-96220/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8813-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8814-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8815-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8817-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8818-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8819-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8821-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8822-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8823-scaled.jpeg,6/18/2025 0:00,11.0000000,12.0000000,48.638003000000,-2.02955200000000,,St Servan,96241,Observation #96241,https://biolit.fr/observations/observation-96241/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8814-1-scaled.jpeg,,,Ne sais pas +N1,96220,Sortie #96220,https://biolit.fr/sorties/sortie-96220/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8813-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8814-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8815-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8817-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8818-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8819-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8821-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8822-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8823-scaled.jpeg,6/18/2025 0:00,11.0000000,12.0000000,48.638003000000,-2.02955200000000,,St Servan,96243,Observation #96243,https://biolit.fr/observations/observation-96243/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8813-1-scaled.jpeg,,,Ne sais pas +N1,96252,Sortie #96252,https://biolit.fr/sorties/sortie-96252/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9661-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9667-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9668-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9670-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9672-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9673-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9674-scaled.jpeg,6/26/2025 0:00,15.0000000,16.0000000,48.650447000000,-2.0314090000000,,St malo,96253,Observation #96253,https://biolit.fr/observations/observation-96253/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9661-scaled.jpeg,,TRUE,Ne sais pas +N1,96252,Sortie #96252,https://biolit.fr/sorties/sortie-96252/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9661-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9667-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9668-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9670-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9672-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9673-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9674-scaled.jpeg,6/26/2025 0:00,15.0000000,16.0000000,48.650447000000,-2.0314090000000,,St malo,96255,Observation #96255,https://biolit.fr/observations/observation-96255/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9667-scaled.jpeg,,,Ne sais pas +N1,96252,Sortie #96252,https://biolit.fr/sorties/sortie-96252/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9661-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9667-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9668-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9670-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9672-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9673-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9674-scaled.jpeg,6/26/2025 0:00,15.0000000,16.0000000,48.650447000000,-2.0314090000000,,St malo,96257,Observation #96257,https://biolit.fr/observations/observation-96257/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9668-scaled.jpeg,,,Ne sais pas +N1,96252,Sortie #96252,https://biolit.fr/sorties/sortie-96252/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9661-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9667-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9668-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9670-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9672-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9673-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9674-scaled.jpeg,6/26/2025 0:00,15.0000000,16.0000000,48.650447000000,-2.0314090000000,,St malo,96259,Observation #96259,https://biolit.fr/observations/observation-96259/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9670-scaled.jpeg,,TRUE,Ne sais pas +N1,96252,Sortie #96252,https://biolit.fr/sorties/sortie-96252/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9661-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9667-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9668-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9670-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9672-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9673-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9674-scaled.jpeg,6/26/2025 0:00,15.0000000,16.0000000,48.650447000000,-2.0314090000000,,St malo,96261,Observation #96261,https://biolit.fr/observations/observation-96261/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9672-scaled.jpeg,,TRUE,Ne sais pas +N1,96252,Sortie #96252,https://biolit.fr/sorties/sortie-96252/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9661-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9667-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9668-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9670-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9672-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9673-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9674-scaled.jpeg,6/26/2025 0:00,15.0000000,16.0000000,48.650447000000,-2.0314090000000,,St malo,96263,Observation #96263,https://biolit.fr/observations/observation-96263/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9673-scaled.jpeg,,TRUE,Ne sais pas +N1,96252,Sortie #96252,https://biolit.fr/sorties/sortie-96252/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9661-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9667-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9668-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9670-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9672-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9673-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9674-scaled.jpeg,6/26/2025 0:00,15.0000000,16.0000000,48.650447000000,-2.0314090000000,,St malo,96265,Observation #96265,https://biolit.fr/observations/observation-96265/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9674-scaled.jpeg,,,Ne sais pas +N1,96293,Sortie #96293,https://biolit.fr/sorties/sortie-96293/,Pelloux Nathalie,https://biolit.fr/wp-content/uploads/jet-form-builder/0682ee7eace84b4e3310c3dd17e2194c/2025/06/IMG_9534-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/0682ee7eace84b4e3310c3dd17e2194c/2025/06/IMG_9533-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/0682ee7eace84b4e3310c3dd17e2194c/2025/06/IMG_9536-scaled.jpeg,06/10/2025,9.0:33,11.0000000,43.3580730000000,5.29114000000000,AIEJE,Plage du Fortin,96294,Observation #96294,https://biolit.fr/observations/observation-96294/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/0682ee7eace84b4e3310c3dd17e2194c/2025/06/IMG_9534-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/0682ee7eace84b4e3310c3dd17e2194c/2025/06/IMG_9533-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/0682ee7eace84b4e3310c3dd17e2194c/2025/06/IMG_9536-scaled.jpeg,,,Identifiable +N1,96316,Sortie #96316,https://biolit.fr/sorties/sortie-96316/,HOAREAU Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7782-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7781-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7780-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7779-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7774-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7771-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7768-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7760-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7759-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7762-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7758-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7757-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7756-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7755-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7754-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7753-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7752-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7749-1-scaled.jpeg,06/06/2025,8.0000000,12.0000000,43.3318410000000,5.04336800000000,Planète Mer,Carro,,,,,,,,,, +N1,96338,Sortie #96338,https://biolit.fr/sorties/sortie-96338/,HOAREAU Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-15.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-3.jpg,06/06/2025,8.0000000,12.0000000,43.3325180000000,5.05017000000000,Planète Mer,Plage de Carro,96339,Observation #96339,https://biolit.fr/observations/observation-96339/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-1.jpg,,,Identifiable +N1,96338,Sortie #96338,https://biolit.fr/sorties/sortie-96338/,HOAREAU Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-15.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-3.jpg,06/06/2025,8.0000000,12.0000000,43.3325180000000,5.05017000000000,Planète Mer,Plage de Carro,96341,Observation #96341,https://biolit.fr/observations/observation-96341/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-3.jpg,,,Identifiable +N1,96338,Sortie #96338,https://biolit.fr/sorties/sortie-96338/,HOAREAU Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-15.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-3.jpg,06/06/2025,8.0000000,12.0000000,43.3325180000000,5.05017000000000,Planète Mer,Plage de Carro,96343,Observation #96343,https://biolit.fr/observations/observation-96343/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-1.jpg,,,Identifiable +N1,96338,Sortie #96338,https://biolit.fr/sorties/sortie-96338/,HOAREAU Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-15.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-3.jpg,06/06/2025,8.0000000,12.0000000,43.3325180000000,5.05017000000000,Planète Mer,Plage de Carro,96345,Observation #96345,https://biolit.fr/observations/observation-96345/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-16.jpg,,,Identifiable +N1,96338,Sortie #96338,https://biolit.fr/sorties/sortie-96338/,HOAREAU Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-15.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-3.jpg,06/06/2025,8.0000000,12.0000000,43.3325180000000,5.05017000000000,Planète Mer,Plage de Carro,96347,Observation #96347,https://biolit.fr/observations/observation-96347/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-14.jpg,,,Identifiable +N1,96338,Sortie #96338,https://biolit.fr/sorties/sortie-96338/,HOAREAU Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-15.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-3.jpg,06/06/2025,8.0000000,12.0000000,43.3325180000000,5.05017000000000,Planète Mer,Plage de Carro,96349,Observation #96349,https://biolit.fr/observations/observation-96349/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-15.jpg,,,Identifiable +N1,96338,Sortie #96338,https://biolit.fr/sorties/sortie-96338/,HOAREAU Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-15.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-3.jpg,06/06/2025,8.0000000,12.0000000,43.3325180000000,5.05017000000000,Planète Mer,Plage de Carro,96351,Observation #96351,https://biolit.fr/observations/observation-96351/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-15.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-1.jpg,,,Ne sais pas +N1,96355,Sortie #96355,https://biolit.fr/sorties/sortie-96355/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/sepia-officinalis-1-scaled.jpg,6/27/2025 0:00,10.0000000,11.0000000,44.1732880000000,-1.30587100000000,Centre de la mer,Mimizan plage de Lespecier,96356,Observation #96356,https://biolit.fr/observations/observation-96356/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/sepia-officinalis-1-scaled.jpg,,TRUE,Identifiable +N1,96361,Sortie #96361,https://biolit.fr/sorties/sortie-96361/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/coquillage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/escargot-mer_3-cm_mimizan-1-scaled.jpg,6/27/2025 0:00,10.0000000,11.0000000,44.1734060000000,-1.30546300000000,Centre de la mer,Mimizan plage de Lespecier,96362,Observation #96362,https://biolit.fr/observations/observation-96362/,Aporrhais pespelecani,Pied de pélican commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/coquillage-scaled.jpg,,TRUE,Identifiable +N1,96361,Sortie #96361,https://biolit.fr/sorties/sortie-96361/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/coquillage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/escargot-mer_3-cm_mimizan-1-scaled.jpg,6/27/2025 0:00,10.0000000,11.0000000,44.1734060000000,-1.30546300000000,Centre de la mer,Mimizan plage de Lespecier,96364,Observation #96364,https://biolit.fr/observations/observation-96364/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/escargot-mer_3-cm_mimizan-1-scaled.jpg,,TRUE,non-identifiable +N1,96390,Sortie #96390,https://biolit.fr/sorties/sortie-96390/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/07/20250625_crabe-verruqueux-benodet-scaled.jpg,6/25/2025 0:00,12.0000000,12.0:45,47.8611410000000,-4.09330600000000,,Pointe de Saint Gilles,96391,Observation #96391,https://biolit.fr/observations/observation-96391/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/07/20250625_crabe-verruqueux-benodet-scaled.jpg,,TRUE,Identifiable +N1,96456,Sortie #96456,https://biolit.fr/sorties/sortie-96456/,Mailly Enzo,https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200864-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200865-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200866-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200870-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200872-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200873-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200876-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200878-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200879-scaled.jpg,07/01/2025,11.0000000,14.0000000,51.0829720000000,2.52578400000000,,Plage de Bray-Dunes,96457,Observation #96457,https://biolit.fr/observations/observation-96457/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200864-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200865-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200879-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200878-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200866-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200870-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200872-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200873-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200876-scaled.jpg,,,Ne sais pas +N1,96462,Sortie #96462,https://biolit.fr/sorties/sortie-96462/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_2909.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_2914.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_2913.jpeg,11/16/2024 0:00,12.0:23,12.0:25,43.262892000000,6.59171100000000,,Port Grimaud petite plage PG2,96463,Observation #96463,https://biolit.fr/observations/observation-96463/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_2914.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_2909.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_2913.jpeg,,TRUE,Identifiable +N1,96467,Sortie #96467,https://biolit.fr/sorties/sortie-96467/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_2906.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_2904.jpeg,11/16/2024 0:00,12.0:21,12.0:23,43.2630340000000,6.59147500000000,,Port Grimaud plagette canaux 4 vents,96468,Observation #96468,https://biolit.fr/observations/observation-96468/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_2906.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_2904.jpeg,,,Identifiable +N1,96472,Sortie #96472,https://biolit.fr/sorties/sortie-96472/,Bernard-Griffiths Nathalie,https://biolit.fr/wp-content/uploads/jet-form-builder/b61aa0280de59b30e4957665c29ae3d4/2025/07/hermelles2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/b61aa0280de59b30e4957665c29ae3d4/2025/07/hermelles.png,11/17/2024 0:00,14.0000000,18.0000000,48.6823800000000,-1.98647800000000,,Plage de la Varde,,,,,,,,,, +N1,96524,Sortie #96524,https://biolit.fr/sorties/sortie-96524/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/07/Capbreton-Hossegor_grand-truc-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/07/Capbreton-Hossegor_grand-truc_02072025-scaled.jpg,07/02/2025,10.0000000,12.0000000,43.6563320000000,-1.44603300000000,Centre de la mer,plage piste de Capbreton à la gravière d'Hossegor,96527,Observation #96527,https://biolit.fr/observations/observation-96527/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/07/Capbreton-Hossegor_grand-truc_02072025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/07/Capbreton-Hossegor_grand-truc-1-scaled.jpg,,TRUE,non-identifiable +N1,96544,Sortie #96544,https://biolit.fr/sorties/sortie-96544/,RBBBM,https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Antiopella-limace-a-cerathes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bryozoaire-rouge-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bryozoaire-et-Hydrozoaires-sur-Fucus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bifurcaire-algue-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Cormaillot-Ocenebra-et-ponte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Clavelines-Tunicier-scaled.jpg,5/25/2021 0:00,11.0000000,12.0000000,47.7994,-3.6996,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),anse du Gorgen au Bélon,96545,Observation #96545,https://biolit.fr/observations/observation-96545/,Antiopella cristata,Antiopelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Antiopella-limace-a-cerathes-scaled.jpg,,TRUE,Identifiable +N1,96544,Sortie #96544,https://biolit.fr/sorties/sortie-96544/,RBBBM,https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Antiopella-limace-a-cerathes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bryozoaire-rouge-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bryozoaire-et-Hydrozoaires-sur-Fucus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bifurcaire-algue-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Cormaillot-Ocenebra-et-ponte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Clavelines-Tunicier-scaled.jpg,5/25/2021 0:00,11.0000000,12.0000000,47.7994,-3.6996,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),anse du Gorgen au Bélon,96547,Observation #96547,https://biolit.fr/observations/observation-96547/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bryozoaire-rouge-a-points-noirs-scaled.jpg,,TRUE,Identifiable +N1,96544,Sortie #96544,https://biolit.fr/sorties/sortie-96544/,RBBBM,https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Antiopella-limace-a-cerathes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bryozoaire-rouge-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bryozoaire-et-Hydrozoaires-sur-Fucus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bifurcaire-algue-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Cormaillot-Ocenebra-et-ponte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Clavelines-Tunicier-scaled.jpg,5/25/2021 0:00,11.0000000,12.0000000,47.7994,-3.6996,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),anse du Gorgen au Bélon,96549,Observation #96549,https://biolit.fr/observations/observation-96549/,Bifurcaria bifurcata,Bifurcaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bifurcaire-algue-verte-scaled.jpg,,TRUE,Identifiable +N1,96544,Sortie #96544,https://biolit.fr/sorties/sortie-96544/,RBBBM,https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Antiopella-limace-a-cerathes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bryozoaire-rouge-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bryozoaire-et-Hydrozoaires-sur-Fucus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bifurcaire-algue-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Cormaillot-Ocenebra-et-ponte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Clavelines-Tunicier-scaled.jpg,5/25/2021 0:00,11.0000000,12.0000000,47.7994,-3.6996,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),anse du Gorgen au Bélon,96551,Observation #96551,https://biolit.fr/observations/observation-96551/,Ocenebra erinaceus,Ponte de Bigorneau perceur,,https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Cormaillot-Ocenebra-et-ponte.jpg,,TRUE,Identifiable +N1,96544,Sortie #96544,https://biolit.fr/sorties/sortie-96544/,RBBBM,https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Antiopella-limace-a-cerathes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bryozoaire-rouge-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bryozoaire-et-Hydrozoaires-sur-Fucus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bifurcaire-algue-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Cormaillot-Ocenebra-et-ponte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Clavelines-Tunicier-scaled.jpg,5/25/2021 0:00,11.0000000,12.0000000,47.7994,-3.6996,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),anse du Gorgen au Bélon,96553,Observation #96553,https://biolit.fr/observations/observation-96553/,Clavelina lepadiformis,Grande claveline,,https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Clavelines-Tunicier-scaled.jpg,,TRUE,Identifiable +N1,96561,Sortie #96561,https://biolit.fr/sorties/sortie-96561/,COURTOIS Tiphaine,https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-17-scaled.jpg,07/01/2025,11.0000000,14.0000000,51.0706890000000,2.52211800000000,,dune du perroquet,96562,Observation #96562,https://biolit.fr/observations/observation-96562/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-17-scaled.jpg,,,Ne sais pas +N1,96570,Sortie #96570,https://biolit.fr/sorties/sortie-96570/,COURTOIS Tiphaine,https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-16-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-15-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-14-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-10.jpg,07/01/2025,11.0000000,14.0000000,51.0706890000000,2.52211800000000,,dune du perroquet,96571,Observation #96571,https://biolit.fr/observations/observation-96571/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-16-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-15-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-14-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-10.jpg,,,Ne sais pas +N1,96570,Sortie #96570,https://biolit.fr/sorties/sortie-96570/,COURTOIS Tiphaine,https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-16-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-15-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-14-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-10.jpg,07/01/2025,11.0000000,14.0000000,51.0706890000000,2.52211800000000,,dune du perroquet,96575,Observation #96575,https://biolit.fr/observations/observation-96575/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-16-scaled.jpg,,,Ne sais pas +N1,96570,Sortie #96570,https://biolit.fr/sorties/sortie-96570/,COURTOIS Tiphaine,https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-16-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-15-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-14-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-10.jpg,07/01/2025,11.0000000,14.0000000,51.0706890000000,2.52211800000000,,dune du perroquet,96577,Observation #96577,https://biolit.fr/observations/observation-96577/,Trisopterus luscus,Tacaud commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-15-scaled.jpg,,TRUE,Ne sais pas +N1,96570,Sortie #96570,https://biolit.fr/sorties/sortie-96570/,COURTOIS Tiphaine,https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-16-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-15-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-14-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-10.jpg,07/01/2025,11.0000000,14.0000000,51.0706890000000,2.52211800000000,,dune du perroquet,96579,Observation #96579,https://biolit.fr/observations/observation-96579/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-14-scaled.jpg,,,Ne sais pas +N1,96570,Sortie #96570,https://biolit.fr/sorties/sortie-96570/,COURTOIS Tiphaine,https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-16-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-15-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-14-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-10.jpg,07/01/2025,11.0000000,14.0000000,51.0706890000000,2.52211800000000,,dune du perroquet,96581,Observation #96581,https://biolit.fr/observations/observation-96581/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-11.jpg,,,Ne sais pas +N1,96570,Sortie #96570,https://biolit.fr/sorties/sortie-96570/,COURTOIS Tiphaine,https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-16-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-15-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-14-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-10.jpg,07/01/2025,11.0000000,14.0000000,51.0706890000000,2.52211800000000,,dune du perroquet,96583,Observation #96583,https://biolit.fr/observations/observation-96583/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-10.jpg,,,Ne sais pas +N1,96586,Sortie #96586,https://biolit.fr/sorties/sortie-96586/,Clerc Ségolène,https://biolit.fr/wp-content/uploads/jet-form-builder/164fce063b27ca43338703bc3fbb736d/2025/07/20250701_145910-scaled.jpg,07/01/2025,15.0000000,16.0000000,43.3575420000000,5.29018900000000,AIEJE,"plages de Corbières, Marseille",96587,Observation #96587,https://biolit.fr/observations/observation-96587/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/164fce063b27ca43338703bc3fbb736d/2025/07/20250701_145910-scaled.jpg,,,Ne sais pas +N1,96590,Sortie #96590,https://biolit.fr/sorties/sortie-96590/,Eric Tinguy,https://biolit.fr/wp-content/uploads/jet-form-builder/38b93828d23ad85b3aaa45af11760f61/2025/07/1000015606-scaled.jpg,07/04/2025,11.0:29,11.0:29,46.3425080,-1.4659670,,La terrière,96591,Observation #96591,https://biolit.fr/observations/observation-96591/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/jet-form-builder/38b93828d23ad85b3aaa45af11760f61/2025/07/1000015606-scaled.jpg,,TRUE,Ne sais pas +N1,96597,Sortie #96597,https://biolit.fr/sorties/sortie-96597/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_9925.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0013-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0012-scaled.jpeg,6/30/2025 0:00,23.0:32,23.0000000,43.2701550000000,6.57797800000000,,Port grimaud canal plagette ile des 4 vents,96598,Observation #96598,https://biolit.fr/observations/observation-96598/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0012-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_9925.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0013-scaled.jpeg,,TRUE,Identifiable +N1,96604,Sortie #96604,https://biolit.fr/sorties/sortie-96604/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_9926-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0014-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0017-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0016.jpeg,6/30/2025 0:00,23.0:32,23.0:35,43.2701510000000,6.57797400000000,,Port Grimaud plagette canaux ile des 4 vents,96605,Observation #96605,https://biolit.fr/observations/observation-96605/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_9926-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0014-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0017-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0016.jpeg,,TRUE,Identifiable +N1,96610,Sortie #96610,https://biolit.fr/sorties/sortie-96610/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0022.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0021.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0019.jpeg,6/30/2025 0:00,23.0:26,23.0000000,43.2705930000000,6.57855300000000,,Port grimaud plagette canaux ile des 4 vents (1),96611,Observation #96611,https://biolit.fr/observations/observation-96611/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0022.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0021.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0019.jpeg,,,Identifiable +N1,96616,Sortie #96616,https://biolit.fr/sorties/sortie-96616/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0031.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0030.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0029.jpeg,6/28/2025 0:00,23.0:33,23.0:36,43.2705940000000,6.57854500000000,,Port Grimaud plagette canaux ile des 4 vents (1),96617,Observation #96617,https://biolit.fr/observations/observation-96617/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0031.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0030.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0029.jpeg,,TRUE,Identifiable +N1,96623,Sortie #96623,https://biolit.fr/sorties/sortie-96623/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0034.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0035.jpeg,6/16/2025 0:00,19.0:45,19.0000000,43.2630180000000,6.60200500000000,,Gassin roite de saint tropez après usine de torpilles,96624,Observation #96624,https://biolit.fr/observations/observation-96624/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0034.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0035.jpeg,,,Identifiable +N1,96627,Sortie #96627,https://biolit.fr/sorties/sortie-96627/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0033.jpeg,6/23/2025 0:00,23.0:37,23.0000000,43.2696490000000,6.57972400000000,,Port Grimaud plagette canaux rue de Giscle,96628,Observation #96628,https://biolit.fr/observations/observation-96628/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0033.jpeg,,TRUE,Identifiable +N1,96635,Sortie #96635,https://biolit.fr/sorties/sortie-96635/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0040.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0036.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_1234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_1233.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_1230.jpeg,9/21/2024 0:00,18.0:11,18.0:15,43.2711880000000,6.57912100000000,,Port Grimaud ile verte,96636,Observation #96636,https://biolit.fr/observations/observation-96636/,Theodoxus fluviatilis,Nérite des rivières,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0040.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0036.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_1233.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_1234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_1230.jpeg,,,Identifiable +N1,96649,Sortie #96649,https://biolit.fr/sorties/sortie-96649/,fxhuet,https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213315_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213317_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213319_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213320_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213326_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213327_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213329_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213330_cr-scaled.jpg,6/21/2025 0:00,8.0000000,9.0000000,48.5964510000000,-4.57057500000000,,Plage de la Baie des Anges - 29870 Landéda,96650,Observation #96650,https://biolit.fr/observations/observation-96650/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213315_cr-scaled.jpg,,,Identifiable +N1,96649,Sortie #96649,https://biolit.fr/sorties/sortie-96649/,fxhuet,https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213315_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213317_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213319_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213320_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213326_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213327_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213329_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213330_cr-scaled.jpg,6/21/2025 0:00,8.0000000,9.0000000,48.5964510000000,-4.57057500000000,,Plage de la Baie des Anges - 29870 Landéda,96652,Observation #96652,https://biolit.fr/observations/observation-96652/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213317_cr-scaled.jpg,,,Identifiable +N1,96649,Sortie #96649,https://biolit.fr/sorties/sortie-96649/,fxhuet,https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213315_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213317_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213319_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213320_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213326_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213327_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213329_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213330_cr-scaled.jpg,6/21/2025 0:00,8.0000000,9.0000000,48.5964510000000,-4.57057500000000,,Plage de la Baie des Anges - 29870 Landéda,96654,Observation #96654,https://biolit.fr/observations/observation-96654/,Ulva compressa,Entéromorphe,,https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213319_cr-scaled.jpg,,,Identifiable +N1,96649,Sortie #96649,https://biolit.fr/sorties/sortie-96649/,fxhuet,https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213315_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213317_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213319_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213320_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213326_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213327_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213329_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213330_cr-scaled.jpg,6/21/2025 0:00,8.0000000,9.0000000,48.5964510000000,-4.57057500000000,,Plage de la Baie des Anges - 29870 Landéda,96656,Observation #96656,https://biolit.fr/observations/observation-96656/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213320_cr-scaled.jpg,,,Identifiable +N1,96649,Sortie #96649,https://biolit.fr/sorties/sortie-96649/,fxhuet,https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213315_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213317_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213319_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213320_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213326_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213327_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213329_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213330_cr-scaled.jpg,6/21/2025 0:00,8.0000000,9.0000000,48.5964510000000,-4.57057500000000,,Plage de la Baie des Anges - 29870 Landéda,96658,Observation #96658,https://biolit.fr/observations/observation-96658/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213329_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213330_cr-scaled.jpg,,TRUE,Identifiable +N1,96692,Sortie #96692,https://biolit.fr/sorties/sortie-96692/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2025/07/IMG_20250625_105226_099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2025/07/IMG_20250625_105230_112-scaled.jpg,6/25/2025 0:00,9.0000000,10.0000000,43.4313120000000,3.77484400000000,LPO Occitanie (Dt Hérault),Poste de secours,,,,,,,,,, +N1,96696,Sortie #96696,https://biolit.fr/sorties/sortie-96696/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2025/07/IMG_20250625_105226_099-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2025/07/IMG_20250625_105230_112-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2025/07/ponte-seiche-scaled.jpg,6/25/2025 0:00,9.0000000,10.0000000,43.4315480000000,3.77507000000000,LPO Occitanie (Dt Hérault),Poste de secours,96697,Observation #96697,https://biolit.fr/observations/observation-96697/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2025/07/IMG_20250625_105230_112-1-scaled.jpg,,TRUE,Identifiable +N1,96696,Sortie #96696,https://biolit.fr/sorties/sortie-96696/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2025/07/IMG_20250625_105226_099-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2025/07/IMG_20250625_105230_112-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2025/07/ponte-seiche-scaled.jpg,6/25/2025 0:00,9.0000000,10.0000000,43.4315480000000,3.77507000000000,LPO Occitanie (Dt Hérault),Poste de secours,96699,Observation #96699,https://biolit.fr/observations/observation-96699/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2025/07/IMG_20250625_105226_099-1-scaled.jpg,,TRUE,Identifiable +N1,96696,Sortie #96696,https://biolit.fr/sorties/sortie-96696/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2025/07/IMG_20250625_105226_099-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2025/07/IMG_20250625_105230_112-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2025/07/ponte-seiche-scaled.jpg,6/25/2025 0:00,9.0000000,10.0000000,43.4315480000000,3.77507000000000,LPO Occitanie (Dt Hérault),Poste de secours,96701,Observation #96701,https://biolit.fr/observations/observation-96701/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2025/07/ponte-seiche-scaled.jpg,,TRUE,Identifiable +N1,96842,Sortie #96842,https://biolit.fr/sorties/sortie-96842/,Hammoudi Sami,https://biolit.fr/wp-content/uploads/jet-form-builder/5516ea8719876c91640369a8ca40ed8c/2025/07/100_0149-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5516ea8719876c91640369a8ca40ed8c/2025/07/100_0150-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5516ea8719876c91640369a8ca40ed8c/2025/07/100_0152-scaled.jpg,07/07/2025,15.0:34,15.0:54,48.6862090000000,-1.97050600000000,,ROTHENEUF crique ouest de la pointe du christ,96847,Observation #96847,https://biolit.fr/observations/observation-96847/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5516ea8719876c91640369a8ca40ed8c/2025/07/100_0152-scaled.jpg,,,Identifiable +N1,96852,Sortie #96852,https://biolit.fr/sorties/sortie-96852/,Hammoudi Sami,https://biolit.fr/wp-content/uploads/jet-form-builder/5516ea8719876c91640369a8ca40ed8c/2025/07/100_0149-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5516ea8719876c91640369a8ca40ed8c/2025/07/100_0150-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5516ea8719876c91640369a8ca40ed8c/2025/07/100_0152-1-scaled.jpg,07/07/2025,15.0:34,15.0:54,48.6862340000000,-1.97060900000000,,ROTHENEUF crique ouest de la pointe du christ,96853,Observation #96853,https://biolit.fr/observations/observation-96853/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5516ea8719876c91640369a8ca40ed8c/2025/07/100_0149-1-scaled.jpg,,,Identifiable +N1,96852,Sortie #96852,https://biolit.fr/sorties/sortie-96852/,Hammoudi Sami,https://biolit.fr/wp-content/uploads/jet-form-builder/5516ea8719876c91640369a8ca40ed8c/2025/07/100_0149-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5516ea8719876c91640369a8ca40ed8c/2025/07/100_0150-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5516ea8719876c91640369a8ca40ed8c/2025/07/100_0152-1-scaled.jpg,07/07/2025,15.0:34,15.0:54,48.6862340000000,-1.97060900000000,,ROTHENEUF crique ouest de la pointe du christ,96855,Observation #96855,https://biolit.fr/observations/observation-96855/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5516ea8719876c91640369a8ca40ed8c/2025/07/100_0150-1-scaled.jpg,,TRUE,Identifiable +N1,96860,Sortie #96860,https://biolit.fr/sorties/sortie-96860/,Hovhannessian Diane,https://biolit.fr/wp-content/uploads/jet-form-builder/c4b5304c6e107a4b697fa50c84dc3e9a/2025/07/Tournepierres.jpg,12/08/2024,16.0000000,16.0000000,49.5050400000000,0.0737290000000000,,Plage du Havre,96861,Observation #96861,https://biolit.fr/observations/observation-96861/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/jet-form-builder/c4b5304c6e107a4b697fa50c84dc3e9a/2025/07/Tournepierres.jpg,,,Identifiable +N1,96864,Sortie #96864,https://biolit.fr/sorties/sortie-96864/,PANDINI Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/fcbe2625642d6fe3a3b78b22c76304ea/2025/07/Velelle-08.07.2025.jpg,07/08/2025,12.0000000,12.0000000,48.8055740000000,-3.58549100000000,,Ile Grande,96865,Observation #96865,https://biolit.fr/observations/observation-96865/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/fcbe2625642d6fe3a3b78b22c76304ea/2025/07/Velelle-08.07.2025.jpg,,TRUE,Identifiable +N1,96922,Sortie #96922,https://biolit.fr/sorties/sortie-96922/,Groupe Associatif Estuaire,https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_114958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_115432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_115437-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_115803-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_115852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_120034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_120123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_123941-scaled.jpg,5/15/2025 0:00,11.0000000,13.0000000,46.4373030000000,-1.66668400000000,Groupe Associatif Estuaire (Association Estuaire),Anse de la République,96923,Observation #96923,https://biolit.fr/observations/observation-96923/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_114958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_115432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_120123-scaled.jpg,,TRUE,Identifiable +N1,96922,Sortie #96922,https://biolit.fr/sorties/sortie-96922/,Groupe Associatif Estuaire,https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_114958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_115432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_115437-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_115803-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_115852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_120034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_120123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_123941-scaled.jpg,5/15/2025 0:00,11.0000000,13.0000000,46.4373030000000,-1.66668400000000,Groupe Associatif Estuaire (Association Estuaire),Anse de la République,96925,Observation #96925,https://biolit.fr/observations/observation-96925/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_115437-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_115852-scaled.jpg,,TRUE,Identifiable +N1,96922,Sortie #96922,https://biolit.fr/sorties/sortie-96922/,Groupe Associatif Estuaire,https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_114958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_115432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_115437-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_115803-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_115852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_120034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_120123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_123941-scaled.jpg,5/15/2025 0:00,11.0000000,13.0000000,46.4373030000000,-1.66668400000000,Groupe Associatif Estuaire (Association Estuaire),Anse de la République,96927,Observation #96927,https://biolit.fr/observations/observation-96927/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_123941-scaled.jpg,,TRUE,Identifiable +N1,96934,Sortie #96934,https://biolit.fr/sorties/sortie-96934/,LAMETRIE Bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0425-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0426-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0427-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0428-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0429-scaled.jpeg,07/11/2025,17.0:34,18.000004,42.0869560000000,8.70821000000000,,À Punta,96935,Observation #96935,https://biolit.fr/observations/observation-96935/,Carpobrotus acinaciformis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0429-scaled.jpeg,,TRUE,Identifiable +N1,96934,Sortie #96934,https://biolit.fr/sorties/sortie-96934/,LAMETRIE Bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0425-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0426-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0427-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0428-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0429-scaled.jpeg,07/11/2025,17.0:34,18.000004,42.0869560000000,8.70821000000000,,À Punta,96937,Observation #96937,https://biolit.fr/observations/observation-96937/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0425-scaled.jpeg,,,Ne sais pas +N1,96934,Sortie #96934,https://biolit.fr/sorties/sortie-96934/,LAMETRIE Bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0425-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0426-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0427-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0428-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0429-scaled.jpeg,07/11/2025,17.0:34,18.000004,42.0869560000000,8.70821000000000,,À Punta,96939,Observation #96939,https://biolit.fr/observations/observation-96939/,Helichrysum italicum,Immortelle d'Italie,,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0427-scaled.jpeg,,,Identifiable +N1,96934,Sortie #96934,https://biolit.fr/sorties/sortie-96934/,LAMETRIE Bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0425-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0426-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0427-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0428-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0429-scaled.jpeg,07/11/2025,17.0:34,18.000004,42.0869560000000,8.70821000000000,,À Punta,96941,Observation #96941,https://biolit.fr/observations/observation-96941/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0428-scaled.jpeg,,,Identifiable +N1,96945,Sortie #96945,https://biolit.fr/sorties/sortie-96945/,LAMETRIE Bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0430-scaled.jpeg,07/11/2025,18.0000000,18.0:25,42.0866590000000,8.70803800000000,,À Punta,96946,Observation #96946,https://biolit.fr/observations/observation-96946/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0430-scaled.jpeg,,,Identifiable +N1,96955,Sortie #96955,https://biolit.fr/sorties/sortie-96955/,LAMETRIE Bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0570-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0567-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0562-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0561-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0560-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0559-scaled.jpeg,7/14/2025 0:00,10.0000000,11.0:35,42.1090470000000,8.70123600000000,,Sagone plagette sampiero,96956,Observation #96956,https://biolit.fr/observations/observation-96956/,Helichrysum italicum,Immortelle d'Italie,,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0570-scaled.jpeg,,,Identifiable +N1,96955,Sortie #96955,https://biolit.fr/sorties/sortie-96955/,LAMETRIE Bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0570-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0567-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0562-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0561-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0560-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0559-scaled.jpeg,7/14/2025 0:00,10.0000000,11.0:35,42.1090470000000,8.70123600000000,,Sagone plagette sampiero,96958,Observation #96958,https://biolit.fr/observations/observation-96958/,Carpobrotus acinaciformis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0561-scaled.jpeg,,,Identifiable +N1,96955,Sortie #96955,https://biolit.fr/sorties/sortie-96955/,LAMETRIE Bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0570-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0567-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0562-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0561-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0560-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0559-scaled.jpeg,7/14/2025 0:00,10.0000000,11.0:35,42.1090470000000,8.70123600000000,,Sagone plagette sampiero,96960,Observation #96960,https://biolit.fr/observations/observation-96960/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0559-scaled.jpeg,,TRUE,Identifiable +N1,96955,Sortie #96955,https://biolit.fr/sorties/sortie-96955/,LAMETRIE Bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0570-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0567-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0562-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0561-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0560-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0559-scaled.jpeg,7/14/2025 0:00,10.0000000,11.0:35,42.1090470000000,8.70123600000000,,Sagone plagette sampiero,96973,Observation #96973,https://biolit.fr/observations/observation-96973/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0560-scaled.jpeg,,,Ne sais pas +N1,96955,Sortie #96955,https://biolit.fr/sorties/sortie-96955/,LAMETRIE Bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0570-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0567-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0562-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0561-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0560-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0559-scaled.jpeg,7/14/2025 0:00,10.0000000,11.0:35,42.1090470000000,8.70123600000000,,Sagone plagette sampiero,96982,Observation #96982,https://biolit.fr/observations/observation-96982/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0567-scaled.jpeg,,,Identifiable +N1,96955,Sortie #96955,https://biolit.fr/sorties/sortie-96955/,LAMETRIE Bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0570-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0567-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0562-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0561-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0560-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0559-scaled.jpeg,7/14/2025 0:00,10.0000000,11.0:35,42.1090470000000,8.70123600000000,,Sagone plagette sampiero,96987,Observation #96987,https://biolit.fr/observations/observation-96987/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0562-scaled.jpeg,,,Ne sais pas +N1,98239,Sortie #98239,https://biolit.fr/sorties/sortie-98239/,MONELL CHRISTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155246423-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155341843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155454040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155554591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155611080_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160049705_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160055535_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160108219_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160127297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160152333_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160207245_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160354420-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160407566-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160726810_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160745736_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160832974-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160921164-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161430631_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161912635_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161914784_HDR-scaled.jpg,6/13/2025 0:00,15.0000000,17.0000000,43.1094470000000,3.12391500000000,,Plage des Chalets à Gruissan (11),98240,Observation #98240,https://biolit.fr/observations/observation-98240/,Larus michahellis,Goéland leucophée,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155246423-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155341843-scaled.jpg,,,Identifiable +N1,98239,Sortie #98239,https://biolit.fr/sorties/sortie-98239/,MONELL CHRISTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155246423-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155341843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155454040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155554591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155611080_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160049705_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160055535_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160108219_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160127297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160152333_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160207245_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160354420-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160407566-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160726810_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160745736_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160832974-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160921164-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161430631_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161912635_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161914784_HDR-scaled.jpg,6/13/2025 0:00,15.0000000,17.0000000,43.1094470000000,3.12391500000000,,Plage des Chalets à Gruissan (11),98242,Observation #98242,https://biolit.fr/observations/observation-98242/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160055535_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160726810_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160407566-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160049705_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155554591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160108219_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160127297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160745736_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161914784_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161912635_HDR-scaled.jpg,,,Ne sais pas +N1,98239,Sortie #98239,https://biolit.fr/sorties/sortie-98239/,MONELL CHRISTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155246423-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155341843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155454040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155554591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155611080_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160049705_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160055535_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160108219_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160127297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160152333_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160207245_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160354420-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160407566-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160726810_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160745736_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160832974-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160921164-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161430631_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161912635_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161914784_HDR-scaled.jpg,6/13/2025 0:00,15.0000000,17.0000000,43.1094470000000,3.12391500000000,,Plage des Chalets à Gruissan (11),98244,Observation #98244,https://biolit.fr/observations/observation-98244/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160152333_HDR-scaled.jpg,,,Identifiable +N1,98239,Sortie #98239,https://biolit.fr/sorties/sortie-98239/,MONELL CHRISTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155246423-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155341843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155454040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155554591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155611080_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160049705_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160055535_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160108219_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160127297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160152333_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160207245_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160354420-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160407566-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160726810_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160745736_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160832974-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160921164-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161430631_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161912635_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161914784_HDR-scaled.jpg,6/13/2025 0:00,15.0000000,17.0000000,43.1094470000000,3.12391500000000,,Plage des Chalets à Gruissan (11),98246,Observation #98246,https://biolit.fr/observations/observation-98246/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160207245_HDR-scaled.jpg,,,Identifiable +N1,98239,Sortie #98239,https://biolit.fr/sorties/sortie-98239/,MONELL CHRISTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155246423-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155341843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155454040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155554591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155611080_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160049705_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160055535_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160108219_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160127297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160152333_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160207245_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160354420-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160407566-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160726810_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160745736_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160832974-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160921164-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161430631_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161912635_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161914784_HDR-scaled.jpg,6/13/2025 0:00,15.0000000,17.0000000,43.1094470000000,3.12391500000000,,Plage des Chalets à Gruissan (11),98248,Observation #98248,https://biolit.fr/observations/observation-98248/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160921164-scaled.jpg,,TRUE,Identifiable +N1,98239,Sortie #98239,https://biolit.fr/sorties/sortie-98239/,MONELL CHRISTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155246423-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155341843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155454040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155554591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155611080_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160049705_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160055535_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160108219_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160127297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160152333_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160207245_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160354420-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160407566-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160726810_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160745736_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160832974-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160921164-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161430631_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161912635_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161914784_HDR-scaled.jpg,6/13/2025 0:00,15.0000000,17.0000000,43.1094470000000,3.12391500000000,,Plage des Chalets à Gruissan (11),98250,Observation #98250,https://biolit.fr/observations/observation-98250/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160745736_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160832974-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161914784_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161912635_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160726810_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160407566-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160049705_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160055535_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160354420-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160127297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160108219_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155454040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155554591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155611080_HDR-scaled.jpg,,,Ne sais pas +N1,98601,Sortie #98601,https://biolit.fr/sorties/sortie-98601/,CHAPELOT PIERRE,https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/07/IMG_0458.png,7/17/2025 0:00,15.0000000,18.0000000,43.5522210000000,7.14445000000000,,"Antibes, la garoupe",,,,,,,,,, +N1,98605,Sortie #98605,https://biolit.fr/sorties/sortie-98605/,CHAPELOT PIERRE,https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/07/IMG_0462.png,7/17/2025 0:00,15.0000000,18.0000000,43.5522210000000,7.14445000000000,,"Antibes, la garoupe",,,,,,,,,, +N1,98657,Sortie #98657,https://biolit.fr/sorties/sortie-98657/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0475.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0471-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0473-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0420-scaled.jpeg,7/21/2025 0:00,0.0:12,0.0:17,43.2696580000000,6.5797120000000,,Port grimaud canaux plagette rue de la Giscle,98658,Observation #98658,https://biolit.fr/observations/observation-98658/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0475.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0471-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0473-scaled.jpeg,,TRUE,Identifiable +N1,98663,Sortie #98663,https://biolit.fr/sorties/sortie-98663/,LACOURT Loreane,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250715_133023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250715_134658-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250715_134712-scaled.jpg,7/15/2025 0:00,11.0000000,12.0000000,46.0678290000000,-1.09332200000000,,Chatelaillon Plage,98664,Observation #98664,https://biolit.fr/observations/observation-98664/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250715_134658-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250715_133023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250715_134712-scaled.jpg,,TRUE,Identifiable +N1,98663,Sortie #98663,https://biolit.fr/sorties/sortie-98663/,LACOURT Loreane,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250715_133023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250715_134658-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250715_134712-scaled.jpg,7/15/2025 0:00,11.0000000,12.0000000,46.0678290000000,-1.09332200000000,,Chatelaillon Plage,98666,Observation #98666,https://biolit.fr/observations/observation-98666/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250715_133023-scaled.jpg,,,Identifiable +N1,98663,Sortie #98663,https://biolit.fr/sorties/sortie-98663/,LACOURT Loreane,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250715_133023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250715_134658-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250715_134712-scaled.jpg,7/15/2025 0:00,11.0000000,12.0000000,46.0678290000000,-1.09332200000000,,Chatelaillon Plage,98668,Observation #98668,https://biolit.fr/observations/observation-98668/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250715_134712-scaled.jpg,,,Identifiable +N1,98671,Sortie #98671,https://biolit.fr/sorties/sortie-98671/,LACOURT Loreane,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250715_135108-scaled.jpg,7/15/2025 0:00,11.0:42,12.0:42,46.0730240000000,-1.0936440000000,,Chatelaillon Plage,98672,Observation #98672,https://biolit.fr/observations/observation-98672/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250715_135108-scaled.jpg,,,Identifiable +N1,98675,Sortie #98675,https://biolit.fr/sorties/sortie-98675/,LACOURT Loreane,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250716_111716-scaled.jpg,7/16/2025 0:00,9.0:45,11.0:45,46.0173100000000,-1.17673600000000,,Île d'Aix,98676,Observation #98676,https://biolit.fr/observations/observation-98676/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250716_111716-scaled.jpg,,,Ne sais pas +N1,98679,Sortie #98679,https://biolit.fr/sorties/sortie-98679/,LACOURT Loreane,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250716_115929-scaled.jpg,7/16/2025 0:00,12.0:55,13.0:56,46.0238690000000,-1.1725840000000,,Île d'Aix,98680,Observation #98680,https://biolit.fr/observations/observation-98680/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250716_115929-scaled.jpg,,,Ne sais pas +N1,98685,Sortie #98685,https://biolit.fr/sorties/sortie-98685/,LACOURT Loreane,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250717_093742-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250717_093955-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250717_100653-scaled.jpg,7/17/2025 0:00,9.0000000,12.0000000,46.1432330000000,-1.30939500000000,,Île de Ré,98686,Observation #98686,https://biolit.fr/observations/observation-98686/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250717_093742-scaled.jpg,,,Identifiable +N1,98685,Sortie #98685,https://biolit.fr/sorties/sortie-98685/,LACOURT Loreane,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250717_093742-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250717_093955-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250717_100653-scaled.jpg,7/17/2025 0:00,9.0000000,12.0000000,46.1432330000000,-1.30939500000000,,Île de Ré,98688,Observation #98688,https://biolit.fr/observations/observation-98688/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250717_093955-scaled.jpg,,,Identifiable +N1,98685,Sortie #98685,https://biolit.fr/sorties/sortie-98685/,LACOURT Loreane,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250717_093742-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250717_093955-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250717_100653-scaled.jpg,7/17/2025 0:00,9.0000000,12.0000000,46.1432330000000,-1.30939500000000,,Île de Ré,98690,Observation #98690,https://biolit.fr/observations/observation-98690/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250717_100653-scaled.jpg,,,Ne sais pas +N1,98887,Sortie #98887,https://biolit.fr/sorties/sortie-98887/,Pottiez Fannie,https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010615.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010616.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010631.jpg,7/21/2025 0:00,16.0000000,16.0:44,49.8383640,0.860228,,Saint Valery en Caux,98888,Observation #98888,https://biolit.fr/observations/observation-98888/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010615.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010616.jpg,,TRUE,Ne sais pas +N1,98887,Sortie #98887,https://biolit.fr/sorties/sortie-98887/,Pottiez Fannie,https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010615.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010616.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010631.jpg,7/21/2025 0:00,16.0000000,16.0:44,49.8383640,0.860228,,Saint Valery en Caux,98890,Observation #98890,https://biolit.fr/observations/observation-98890/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010626-scaled.jpg,,TRUE,Ne sais pas +N1,98887,Sortie #98887,https://biolit.fr/sorties/sortie-98887/,Pottiez Fannie,https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010615.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010616.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010631.jpg,7/21/2025 0:00,16.0000000,16.0:44,49.8383640,0.860228,,Saint Valery en Caux,98892,Observation #98892,https://biolit.fr/observations/observation-98892/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010616.jpg,,TRUE,Ne sais pas +N1,98887,Sortie #98887,https://biolit.fr/sorties/sortie-98887/,Pottiez Fannie,https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010615.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010616.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010631.jpg,7/21/2025 0:00,16.0000000,16.0:44,49.8383640,0.860228,,Saint Valery en Caux,98894,Observation #98894,https://biolit.fr/observations/observation-98894/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010614-scaled.jpg,,FALSE,Ne sais pas +N1,98887,Sortie #98887,https://biolit.fr/sorties/sortie-98887/,Pottiez Fannie,https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010615.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010616.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010631.jpg,7/21/2025 0:00,16.0000000,16.0:44,49.8383640,0.860228,,Saint Valery en Caux,98896,Observation #98896,https://biolit.fr/observations/observation-98896/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010620-scaled.jpg,,TRUE,Ne sais pas +N1,98887,Sortie #98887,https://biolit.fr/sorties/sortie-98887/,Pottiez Fannie,https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010615.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010616.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010631.jpg,7/21/2025 0:00,16.0000000,16.0:44,49.8383640,0.860228,,Saint Valery en Caux,98898,Observation #98898,https://biolit.fr/observations/observation-98898/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010631.jpg,,FALSE,Ne sais pas +N1,98901,Sortie #98901,https://biolit.fr/sorties/sortie-98901/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0595-scaled.jpeg,7/22/2025 0:00,0.0:22,1.0:26,43.2705660000000,6.57860600000000,,Port Grimaud plagette ile des 4 vents,98902,Observation #98902,https://biolit.fr/observations/observation-98902/,Cottus gobio,Chabot commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0595-scaled.jpeg,,,Identifiable +N1,98905,Sortie #98905,https://biolit.fr/sorties/sortie-98905/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0594.jpeg,7/22/2025 0:00,1.0:35,1.0:39,43.2705940000000,6.57859000000000,,Port Grimaud plagette ile des 4 vents,98906,Observation #98906,https://biolit.fr/observations/observation-98906/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0594.jpeg,,TRUE,Identifiable +N1,99295,Sortie #99295,https://biolit.fr/sorties/sortie-99295/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0634.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0633.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0632.jpeg,7/22/2025 0:00,19.0:28,19.0:34,43.2696500000000,6.57975000000000,,Port Grimaud canaux plagette rue de la giscle,99296,Observation #99296,https://biolit.fr/observations/observation-99296/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0633.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0632.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0634.jpeg,,,Identifiable +N1,99300,Sortie #99300,https://biolit.fr/sorties/sortie-99300/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0674-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0673-scaled.jpeg,7/22/2025 0:00,0.0:47,0.0:49,43.2696540000000,6.57971800000000,,Port Grimaud canaux plagette rue de la Giscle,99301,Observation #99301,https://biolit.fr/observations/observation-99301/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0674-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0673-scaled.jpeg,,TRUE,Identifiable +N1,99307,Sortie #99307,https://biolit.fr/sorties/sortie-99307/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0680.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0679-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0676.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0675-scaled.jpeg,7/22/2025 0:00,0.0:49,0.0:51,43.2696600000000,6.57972700000000,,Port Grimaud canaux plagette rue de la Giscle,99308,Observation #99308,https://biolit.fr/observations/observation-99308/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0680.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0679-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0676.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0675-scaled.jpeg,,TRUE,Identifiable +N1,99313,Sortie #99313,https://biolit.fr/sorties/sortie-99313/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0646-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0644-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0643-scaled.jpg,7/22/2025 0:00,22.0:56,23.0000000,43.2696670000000,6.57975400000000,,Port Grimaud canaux plagette rue de la Giscle,99314,Observation #99314,https://biolit.fr/observations/observation-99314/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0646-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0644-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0643-scaled.jpg,,TRUE,Identifiable +N1,99321,Sortie #99321,https://biolit.fr/sorties/sortie-99321/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0684.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0682.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0681.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0684-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0682-1.jpeg,7/22/2025 0:00,22.0:59,23.000004,43.2696630000000,6.57970800000000,,Port Grimaud canaux plagette rue de la Giscle,99322,Observation #99322,https://biolit.fr/observations/observation-99322/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0684.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0682.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0681.jpeg,,,Identifiable +N1,100279,Sortie #100279,https://biolit.fr/sorties/sortie-100279/,Poupel Marie christine,https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1012582514112484.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1297885168654567.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_662769980157616.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_724242360496917.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1699888110667998.jpeg,7/26/2025 0:00,19.0:15,19.0:35,49.738698,0.290739,,Vaucottes commune de Vattetot sur mer,100280,Observation #100280,https://biolit.fr/observations/observation-100280/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_662769980157616.jpeg,,TRUE,Identifiable +N1,100279,Sortie #100279,https://biolit.fr/sorties/sortie-100279/,Poupel Marie christine,https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1012582514112484.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1297885168654567.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_662769980157616.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_724242360496917.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1699888110667998.jpeg,7/26/2025 0:00,19.0:15,19.0:35,49.738698,0.290739,,Vaucottes commune de Vattetot sur mer,100282,Observation #100282,https://biolit.fr/observations/observation-100282/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1699888110667998.jpeg,,TRUE,Identifiable +N1,100279,Sortie #100279,https://biolit.fr/sorties/sortie-100279/,Poupel Marie christine,https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1012582514112484.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1297885168654567.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_662769980157616.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_724242360496917.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1699888110667998.jpeg,7/26/2025 0:00,19.0:15,19.0:35,49.738698,0.290739,,Vaucottes commune de Vattetot sur mer,100284,Observation #100284,https://biolit.fr/observations/observation-100284/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_724242360496917.jpeg,,,Ne sais pas +N1,100279,Sortie #100279,https://biolit.fr/sorties/sortie-100279/,Poupel Marie christine,https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1012582514112484.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1297885168654567.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_662769980157616.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_724242360496917.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1699888110667998.jpeg,7/26/2025 0:00,19.0:15,19.0:35,49.738698,0.290739,,Vaucottes commune de Vattetot sur mer,100286,Observation #100286,https://biolit.fr/observations/observation-100286/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1012582514112484.jpeg,,,Identifiable +N1,100279,Sortie #100279,https://biolit.fr/sorties/sortie-100279/,Poupel Marie christine,https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1012582514112484.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1297885168654567.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_662769980157616.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_724242360496917.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1699888110667998.jpeg,7/26/2025 0:00,19.0:15,19.0:35,49.738698,0.290739,,Vaucottes commune de Vattetot sur mer,100288,Observation #100288,https://biolit.fr/observations/observation-100288/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1297885168654567.jpeg,,,Ne sais pas +N1,100307,Sortie #100307,https://biolit.fr/sorties/sortie-100307/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103942-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103945-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_105816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110153-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110542-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111339-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112342-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_113413_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_114328-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_115353-scaled.jpg,12/30/2024 0:00,11.0000000,12.0000000,43.2138760000000,5.33737600000000,Planète Mer,Port des Croisette,,,,,,,,,, +N1,100322,Sortie #100322,https://biolit.fr/sorties/sortie-100322/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103942-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103945-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_105816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110153-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110531-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110542-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111013-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111339-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112342-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112618-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112935-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_113413_-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_114328-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_115353-1-scaled.jpg,12/30/2024 0:00,11.0000000,12.0000000,43.2138920000000,5.33749500000000,Planète Mer,Port des Croisettes,100323,Observation #100323,https://biolit.fr/observations/observation-100323/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103942-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103945-1-scaled.jpg,,,Identifiable +N1,100322,Sortie #100322,https://biolit.fr/sorties/sortie-100322/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103942-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103945-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_105816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110153-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110531-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110542-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111013-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111339-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112342-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112618-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112935-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_113413_-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_114328-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_115353-1-scaled.jpg,12/30/2024 0:00,11.0000000,12.0000000,43.2138920000000,5.33749500000000,Planète Mer,Port des Croisettes,100325,Observation #100325,https://biolit.fr/observations/observation-100325/,Striarca lactea,Striarca laiteuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_105816-1-scaled.jpg,,,Identifiable +N1,100322,Sortie #100322,https://biolit.fr/sorties/sortie-100322/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103942-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103945-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_105816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110153-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110531-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110542-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111013-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111339-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112342-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112618-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112935-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_113413_-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_114328-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_115353-1-scaled.jpg,12/30/2024 0:00,11.0000000,12.0000000,43.2138920000000,5.33749500000000,Planète Mer,Port des Croisettes,100327,Observation #100327,https://biolit.fr/observations/observation-100327/,Jujubinus exasperatus,Troque pygmée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110153-1-scaled.jpg,,,Identifiable +N1,100322,Sortie #100322,https://biolit.fr/sorties/sortie-100322/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103942-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103945-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_105816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110153-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110531-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110542-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111013-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111339-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112342-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112618-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112935-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_113413_-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_114328-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_115353-1-scaled.jpg,12/30/2024 0:00,11.0000000,12.0000000,43.2138920000000,5.33749500000000,Planète Mer,Port des Croisettes,100329,Observation #100329,https://biolit.fr/observations/observation-100329/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110531-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110542-1-scaled.jpg,,,Ne sais pas +N1,100322,Sortie #100322,https://biolit.fr/sorties/sortie-100322/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103942-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103945-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_105816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110153-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110531-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110542-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111013-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111339-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112342-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112618-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112935-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_113413_-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_114328-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_115353-1-scaled.jpg,12/30/2024 0:00,11.0000000,12.0000000,43.2138920000000,5.33749500000000,Planète Mer,Port des Croisettes,100331,Observation #100331,https://biolit.fr/observations/observation-100331/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111013-1-scaled.jpg,,,Identifiable +N1,100322,Sortie #100322,https://biolit.fr/sorties/sortie-100322/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103942-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103945-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_105816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110153-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110531-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110542-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111013-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111339-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112342-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112618-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112935-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_113413_-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_114328-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_115353-1-scaled.jpg,12/30/2024 0:00,11.0000000,12.0000000,43.2138920000000,5.33749500000000,Planète Mer,Port des Croisettes,100333,Observation #100333,https://biolit.fr/observations/observation-100333/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111339-1-scaled.jpg,,,Identifiable +N1,100322,Sortie #100322,https://biolit.fr/sorties/sortie-100322/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103942-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103945-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_105816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110153-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110531-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110542-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111013-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111339-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112342-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112618-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112935-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_113413_-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_114328-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_115353-1-scaled.jpg,12/30/2024 0:00,11.0000000,12.0000000,43.2138920000000,5.33749500000000,Planète Mer,Port des Croisettes,100335,Observation #100335,https://biolit.fr/observations/observation-100335/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112342-1-scaled.jpg,,,Identifiable +N1,100322,Sortie #100322,https://biolit.fr/sorties/sortie-100322/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103942-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103945-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_105816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110153-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110531-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110542-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111013-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111339-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112342-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112618-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112935-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_113413_-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_114328-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_115353-1-scaled.jpg,12/30/2024 0:00,11.0000000,12.0000000,43.2138920000000,5.33749500000000,Planète Mer,Port des Croisettes,100337,Observation #100337,https://biolit.fr/observations/observation-100337/,Calliostoma laugieri,Calliostome de Laugier,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112935-1-scaled.jpg,,,Identifiable +N1,100322,Sortie #100322,https://biolit.fr/sorties/sortie-100322/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103942-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103945-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_105816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110153-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110531-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110542-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111013-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111339-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112342-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112618-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112935-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_113413_-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_114328-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_115353-1-scaled.jpg,12/30/2024 0:00,11.0000000,12.0000000,43.2138920000000,5.33749500000000,Planète Mer,Port des Croisettes,100339,Observation #100339,https://biolit.fr/observations/observation-100339/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_113413_-1-scaled.jpg,,,Ne sais pas +N1,100322,Sortie #100322,https://biolit.fr/sorties/sortie-100322/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103942-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103945-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_105816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110153-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110531-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110542-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111013-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111339-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112342-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112618-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112935-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_113413_-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_114328-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_115353-1-scaled.jpg,12/30/2024 0:00,11.0000000,12.0000000,43.2138920000000,5.33749500000000,Planète Mer,Port des Croisettes,100341,Observation #100341,https://biolit.fr/observations/observation-100341/,Pallenis maritima,Astérolide maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_114328-1-scaled.jpg,,,Identifiable +N1,100322,Sortie #100322,https://biolit.fr/sorties/sortie-100322/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103942-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103945-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_105816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110153-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110531-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110542-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111013-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111339-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112342-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112618-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112935-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_113413_-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_114328-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_115353-1-scaled.jpg,12/30/2024 0:00,11.0000000,12.0000000,43.2138920000000,5.33749500000000,Planète Mer,Port des Croisettes,100343,Observation #100343,https://biolit.fr/observations/observation-100343/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_115353-1-scaled.jpg,,,Ne sais pas +N1,100322,Sortie #100322,https://biolit.fr/sorties/sortie-100322/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103942-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103945-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_105816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110153-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110531-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110542-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111013-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111339-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112342-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112618-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112935-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_113413_-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_114328-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_115353-1-scaled.jpg,12/30/2024 0:00,11.0000000,12.0000000,43.2138920000000,5.33749500000000,Planète Mer,Port des Croisettes,100345,Observation #100345,https://biolit.fr/observations/observation-100345/,Tricolia pullus,Phasianelle minuscule,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112618-1-scaled.jpg,,,Identifiable +N1,100379,Sortie #100379,https://biolit.fr/sorties/sortie-100379/,riviere romain,https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_162701-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_161122-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_161116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160825-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160810-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160530-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160505-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160000-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_155840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_155625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_155524-scaled.jpg,7/28/2025 0:00,13.0000000,16.0:45,48.6612970,-4.2941020,,Brignognan,100380,Observation #100380,https://biolit.fr/observations/observation-100380/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_162701-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_161116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_161122-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160825-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160530-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160810-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160505-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160000-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_155625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_155840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_155524-scaled.jpg,,,Ne sais pas +N1,100379,Sortie #100379,https://biolit.fr/sorties/sortie-100379/,riviere romain,https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_162701-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_161122-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_161116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160825-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160810-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160530-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160505-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160000-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_155840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_155625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_155524-scaled.jpg,7/28/2025 0:00,13.0000000,16.0:45,48.6612970,-4.2941020,,Brignognan,100382,Observation #100382,https://biolit.fr/observations/observation-100382/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_162701-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_161116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_161122-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160825-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160530-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160810-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160505-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160000-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_155625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_155840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_155524-scaled.jpg,,,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100425,Observation #100425,https://biolit.fr/observations/observation-100425/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg,,TRUE,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100427,Observation #100427,https://biolit.fr/observations/observation-100427/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg,,TRUE,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100429,Observation #100429,https://biolit.fr/observations/observation-100429/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg,,TRUE,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100431,Observation #100431,https://biolit.fr/observations/observation-100431/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg,,TRUE,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100433,Observation #100433,https://biolit.fr/observations/observation-100433/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg,,TRUE,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100435,Observation #100435,https://biolit.fr/observations/observation-100435/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg,,TRUE,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100437,Observation #100437,https://biolit.fr/observations/observation-100437/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg,,TRUE,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100439,Observation #100439,https://biolit.fr/observations/observation-100439/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg,,,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100441,Observation #100441,https://biolit.fr/observations/observation-100441/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg,,TRUE,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100443,Observation #100443,https://biolit.fr/observations/observation-100443/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg,,,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100445,Observation #100445,https://biolit.fr/observations/observation-100445/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg,,,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100447,Observation #100447,https://biolit.fr/observations/observation-100447/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg,,,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100449,Observation #100449,https://biolit.fr/observations/observation-100449/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg,,,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100451,Observation #100451,https://biolit.fr/observations/observation-100451/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg,,,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100453,Observation #100453,https://biolit.fr/observations/observation-100453/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg,,,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100455,Observation #100455,https://biolit.fr/observations/observation-100455/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg,,,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100457,Observation #100457,https://biolit.fr/observations/observation-100457/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg,,,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100459,Observation #100459,https://biolit.fr/observations/observation-100459/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,,,Ne sais pas +N1,100473,Sortie #100473,https://biolit.fr/sorties/sortie-100473/,VANDEN BERGHE Franck,https://biolit.fr/wp-content/uploads/jet-form-builder/866dd9372aa5bbd6a2141643f4c07cfc/2025/08/IMG_1618-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/866dd9372aa5bbd6a2141643f4c07cfc/2025/08/IMG_1616-scaled.jpeg,7/31/2025 0:00,18.0000000,18.0000000,43.3317410000000,5.218506000000,,Calanque de Mejean (Ensues La Redonne),100474,Observation #100474,https://biolit.fr/observations/observation-100474/,Callinectes sapidus,Crabe bleu américain,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/866dd9372aa5bbd6a2141643f4c07cfc/2025/08/IMG_1618-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/866dd9372aa5bbd6a2141643f4c07cfc/2025/08/IMG_1616-scaled.jpeg,,TRUE,Identifiable +N1,100473,Sortie #100473,https://biolit.fr/sorties/sortie-100473/,VANDEN BERGHE Franck,https://biolit.fr/wp-content/uploads/jet-form-builder/866dd9372aa5bbd6a2141643f4c07cfc/2025/08/IMG_1618-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/866dd9372aa5bbd6a2141643f4c07cfc/2025/08/IMG_1616-scaled.jpeg,7/31/2025 0:00,18.0000000,18.0000000,43.3317410000000,5.218506000000,,Calanque de Mejean (Ensues La Redonne),100478,Observation #100478,https://biolit.fr/observations/observation-100478/,Callinectes sapidus,Crabe bleu américain,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/866dd9372aa5bbd6a2141643f4c07cfc/2025/08/IMG_1618-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/866dd9372aa5bbd6a2141643f4c07cfc/2025/08/IMG_1616-scaled.jpeg,,TRUE,Identifiable +N1,100488,Sortie #100488,https://biolit.fr/sorties/sortie-100488/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4296-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4298-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4302-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4307-scaled.jpeg,08/02/2025,17.0000000,18.0000000,48.5656820000000,-2.7621850000000,,St Brieuc,100489,Observation #100489,https://biolit.fr/observations/observation-100489/,Pomatoschistus minutus,Gobie de sable buhotte,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4294-scaled.jpeg,,,Identifiable +N1,100488,Sortie #100488,https://biolit.fr/sorties/sortie-100488/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4296-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4298-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4302-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4307-scaled.jpeg,08/02/2025,17.0000000,18.0000000,48.5656820000000,-2.7621850000000,,St Brieuc,100491,Observation #100491,https://biolit.fr/observations/observation-100491/,Pomatoschistus minutus,Gobie de sable buhotte,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4298-scaled.jpeg,,,Identifiable +N1,100488,Sortie #100488,https://biolit.fr/sorties/sortie-100488/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4296-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4298-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4302-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4307-scaled.jpeg,08/02/2025,17.0000000,18.0000000,48.5656820000000,-2.7621850000000,,St Brieuc,100493,Observation #100493,https://biolit.fr/observations/observation-100493/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4303-scaled.jpeg,,TRUE,Identifiable +N1,100488,Sortie #100488,https://biolit.fr/sorties/sortie-100488/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4296-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4298-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4302-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4307-scaled.jpeg,08/02/2025,17.0000000,18.0000000,48.5656820000000,-2.7621850000000,,St Brieuc,100495,Observation #100495,https://biolit.fr/observations/observation-100495/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4302-scaled.jpeg,,TRUE,Identifiable +N1,100488,Sortie #100488,https://biolit.fr/sorties/sortie-100488/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4296-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4298-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4302-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4307-scaled.jpeg,08/02/2025,17.0000000,18.0000000,48.5656820000000,-2.7621850000000,,St Brieuc,100497,Observation #100497,https://biolit.fr/observations/observation-100497/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4296-scaled.jpeg,,,Identifiable +N1,100488,Sortie #100488,https://biolit.fr/sorties/sortie-100488/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4296-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4298-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4302-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4307-scaled.jpeg,08/02/2025,17.0000000,18.0000000,48.5656820000000,-2.7621850000000,,St Brieuc,100499,Observation #100499,https://biolit.fr/observations/observation-100499/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4306-scaled.jpeg,,,Identifiable +N1,100488,Sortie #100488,https://biolit.fr/sorties/sortie-100488/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4296-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4298-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4302-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4307-scaled.jpeg,08/02/2025,17.0000000,18.0000000,48.5656820000000,-2.7621850000000,,St Brieuc,100501,Observation #100501,https://biolit.fr/observations/observation-100501/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4307-scaled.jpeg,,,Identifiable +N1,100511,Sortie #100511,https://biolit.fr/sorties/sortie-100511/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4313-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4314-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4321-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4324-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4326-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4327-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4330-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4331-scaled.jpeg,08/03/2025,10.0000000,12.0000000,48.5325100000000,-2.71053300000000,,St Brieuc,,,,,,,,,, +N1,100520,Sortie #100520,https://biolit.fr/sorties/sortie-100520/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4313-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4314-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4321-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4324-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4326-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4327-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4330-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4331-1-scaled.jpeg,08/03/2025,10.0000000,12.0000000,48.5314870000000,-2.71139100000000,,St Brieuc,100521,Observation #100521,https://biolit.fr/observations/observation-100521/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4314-1-scaled.jpeg,,TRUE,Identifiable +N1,100520,Sortie #100520,https://biolit.fr/sorties/sortie-100520/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4313-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4314-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4321-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4324-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4326-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4327-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4330-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4331-1-scaled.jpeg,08/03/2025,10.0000000,12.0000000,48.5314870000000,-2.71139100000000,,St Brieuc,100523,Observation #100523,https://biolit.fr/observations/observation-100523/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4313-1-scaled.jpeg,,,Identifiable +N1,100520,Sortie #100520,https://biolit.fr/sorties/sortie-100520/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4313-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4314-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4321-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4324-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4326-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4327-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4330-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4331-1-scaled.jpeg,08/03/2025,10.0000000,12.0000000,48.5314870000000,-2.71139100000000,,St Brieuc,100525,Observation #100525,https://biolit.fr/observations/observation-100525/,Chelon labrosus,Mulet lippu,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4321-1-scaled.jpeg,,,Identifiable +N1,100520,Sortie #100520,https://biolit.fr/sorties/sortie-100520/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4313-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4314-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4321-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4324-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4326-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4327-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4330-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4331-1-scaled.jpeg,08/03/2025,10.0000000,12.0000000,48.5314870000000,-2.71139100000000,,St Brieuc,100527,Observation #100527,https://biolit.fr/observations/observation-100527/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4327-1-scaled.jpeg,,TRUE,Identifiable +N1,100520,Sortie #100520,https://biolit.fr/sorties/sortie-100520/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4313-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4314-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4321-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4324-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4326-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4327-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4330-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4331-1-scaled.jpeg,08/03/2025,10.0000000,12.0000000,48.5314870000000,-2.71139100000000,,St Brieuc,100529,Observation #100529,https://biolit.fr/observations/observation-100529/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4324-1-scaled.jpeg,,TRUE,Identifiable +N1,100520,Sortie #100520,https://biolit.fr/sorties/sortie-100520/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4313-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4314-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4321-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4324-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4326-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4327-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4330-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4331-1-scaled.jpeg,08/03/2025,10.0000000,12.0000000,48.5314870000000,-2.71139100000000,,St Brieuc,100531,Observation #100531,https://biolit.fr/observations/observation-100531/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4330-1-scaled.jpeg,,TRUE,Identifiable +N1,100520,Sortie #100520,https://biolit.fr/sorties/sortie-100520/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4313-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4314-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4321-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4324-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4326-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4327-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4330-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4331-1-scaled.jpeg,08/03/2025,10.0000000,12.0000000,48.5314870000000,-2.71139100000000,,St Brieuc,100533,Observation #100533,https://biolit.fr/observations/observation-100533/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4331-1-scaled.jpeg,,TRUE,Identifiable +N1,100597,Sortie #100597,https://biolit.fr/sorties/sortie-100597/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1336.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1335.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1291-scaled.jpeg,08/03/2025,19.0:53,20.0:36,43.2625890000000,6.60333600000000,,Gassin Malribes,100598,Observation #100598,https://biolit.fr/observations/observation-100598/,Phalacrocorax aristotelis,Cormoran huppé,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1336.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1335.jpeg,,,Identifiable +N1,100603,Sortie #100603,https://biolit.fr/sorties/sortie-100603/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_0904-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_0894-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_0963-scaled.jpg,7/30/2025 0:00,18.0:48,19.0000000,43.2705970000000,6.57854700000000,,Port Grimaud canaux plagette 4 vents,100604,Observation #100604,https://biolit.fr/observations/observation-100604/,Cygnus olor,Cygne tuberculé,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_0904-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_0894-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_0963-scaled.jpg,,,Identifiable +N1,100609,Sortie #100609,https://biolit.fr/sorties/sortie-100609/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1352.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1350.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1349.jpeg,08/03/2025,23.0:38,23.0:41,43.2696570000000,6.57973000000000,,Port Grimaud canaux plagette rue de la Giscle,100610,Observation #100610,https://biolit.fr/observations/observation-100610/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1352.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1350.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1349.jpeg,,TRUE,Identifiable +N1,100614,Sortie #100614,https://biolit.fr/sorties/sortie-100614/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1359.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1357.jpeg,08/03/2025,23.0:39,23.0:42,43.2696590000000,6.57972200000000,,Port Grimaud canaux plagette Giscle,100615,Observation #100615,https://biolit.fr/observations/observation-100615/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1359.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1357.jpeg,,TRUE,Identifiable +N1,100622,Sortie #100622,https://biolit.fr/sorties/sortie-100622/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1356.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1354.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1353-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1351.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1351-1.jpeg,08/03/2025,23.0:37,23.0:43,43.2696510000000,6.57971900000000,,Port Grimaud canaux plagette Giscle,100623,Observation #100623,https://biolit.fr/observations/observation-100623/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1356.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1354.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1351.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1353-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1351-1.jpeg,,,Identifiable +N1,100627,Sortie #100627,https://biolit.fr/sorties/sortie-100627/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1369-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1368.jpeg,08/02/2025,0.0:23,0.0:28,43.2701540000000,6.57797300000000,,Port Grimaud canaux plagette 4 vents (2),100628,Observation #100628,https://biolit.fr/observations/observation-100628/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1369-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1368.jpeg,,,Ne sais pas +N1,100855,Sortie #100855,https://biolit.fr/sorties/sortie-100855/,ALVES CHRISTOPHE,https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/00-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/05-scaled.jpg,7/31/2025 0:00,8.0000000,17.0000000,47.4021590000000,-2.46246100000000,,mesquer,100856,Observation #100856,https://biolit.fr/observations/observation-100856/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/00-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/05-scaled.jpg,,,Ne sais pas +N1,100855,Sortie #100855,https://biolit.fr/sorties/sortie-100855/,ALVES CHRISTOPHE,https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/00-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/05-scaled.jpg,7/31/2025 0:00,8.0000000,17.0000000,47.4021590000000,-2.46246100000000,,mesquer,100858,Observation #100858,https://biolit.fr/observations/observation-100858/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/00-scaled.jpg,,,Ne sais pas +N1,100855,Sortie #100855,https://biolit.fr/sorties/sortie-100855/,ALVES CHRISTOPHE,https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/00-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/05-scaled.jpg,7/31/2025 0:00,8.0000000,17.0000000,47.4021590000000,-2.46246100000000,,mesquer,100860,Observation #100860,https://biolit.fr/observations/observation-100860/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/01-scaled.jpg,,,Ne sais pas +N1,100855,Sortie #100855,https://biolit.fr/sorties/sortie-100855/,ALVES CHRISTOPHE,https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/00-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/05-scaled.jpg,7/31/2025 0:00,8.0000000,17.0000000,47.4021590000000,-2.46246100000000,,mesquer,100863,Observation #100863,https://biolit.fr/observations/observation-100863/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/05-scaled.jpg,,,Ne sais pas +N1,100855,Sortie #100855,https://biolit.fr/sorties/sortie-100855/,ALVES CHRISTOPHE,https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/00-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/05-scaled.jpg,7/31/2025 0:00,8.0000000,17.0000000,47.4021590000000,-2.46246100000000,,mesquer,100865,Observation #100865,https://biolit.fr/observations/observation-100865/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/03-scaled.jpg,,,Ne sais pas +N1,100855,Sortie #100855,https://biolit.fr/sorties/sortie-100855/,ALVES CHRISTOPHE,https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/00-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/05-scaled.jpg,7/31/2025 0:00,8.0000000,17.0000000,47.4021590000000,-2.46246100000000,,mesquer,100867,Observation #100867,https://biolit.fr/observations/observation-100867/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/05-scaled.jpg,,TRUE,Ne sais pas +N1,101042,Sortie #101042,https://biolit.fr/sorties/sortie-101042/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4340-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4341-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4343-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4346-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4348-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4349-scaled.jpeg,08/04/2025,13.0000000,17.0000000,48.6164320000000,-2.48106300000000,,Erquy,101043,Observation #101043,https://biolit.fr/observations/observation-101043/,Aurelia aurita,Aurélie,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4340-scaled.jpeg,,,Identifiable +N1,101042,Sortie #101042,https://biolit.fr/sorties/sortie-101042/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4340-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4341-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4343-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4346-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4348-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4349-scaled.jpeg,08/04/2025,13.0000000,17.0000000,48.6164320000000,-2.48106300000000,,Erquy,101045,Observation #101045,https://biolit.fr/observations/observation-101045/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4343-scaled.jpeg,,,Identifiable +N1,101042,Sortie #101042,https://biolit.fr/sorties/sortie-101042/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4340-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4341-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4343-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4346-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4348-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4349-scaled.jpeg,08/04/2025,13.0000000,17.0000000,48.6164320000000,-2.48106300000000,,Erquy,101047,Observation #101047,https://biolit.fr/observations/observation-101047/,Pomatoschistus minutus,Gobie de sable buhotte,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4346-scaled.jpeg,,,Identifiable +N1,101042,Sortie #101042,https://biolit.fr/sorties/sortie-101042/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4340-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4341-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4343-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4346-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4348-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4349-scaled.jpeg,08/04/2025,13.0000000,17.0000000,48.6164320000000,-2.48106300000000,,Erquy,101049,Observation #101049,https://biolit.fr/observations/observation-101049/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4349-scaled.jpeg,,TRUE,Identifiable +N1,101042,Sortie #101042,https://biolit.fr/sorties/sortie-101042/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4340-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4341-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4343-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4346-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4348-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4349-scaled.jpeg,08/04/2025,13.0000000,17.0000000,48.6164320000000,-2.48106300000000,,Erquy,101051,Observation #101051,https://biolit.fr/observations/observation-101051/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4348-scaled.jpeg,,TRUE,Identifiable +N1,101042,Sortie #101042,https://biolit.fr/sorties/sortie-101042/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4340-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4341-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4343-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4346-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4348-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4349-scaled.jpeg,08/04/2025,13.0000000,17.0000000,48.6164320000000,-2.48106300000000,,Erquy,101053,Observation #101053,https://biolit.fr/observations/observation-101053/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4341-scaled.jpeg,,TRUE,Identifiable +N1,101130,Sortie #101130,https://biolit.fr/sorties/sortie-101130/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4356-scaled.jpeg,08/05/2025,10.0000000,11.0000000,48.6266670000000,-2.4674090000000,,Erquy,101131,Observation #101131,https://biolit.fr/observations/observation-101131/,Pagurus bernhardus,Bernard-l'ermite commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4356-scaled.jpeg,,,Identifiable +N1,101552,Sortie #101552,https://biolit.fr/sorties/sortie-101552/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_9450-scaled.jpeg,6/21/2025 0:00,13.0:15,13.0000000,42.9903110000000,5.73932600000000,,Large de Sanary et Cap Sicié,,,,,,,,,, +N1,101556,Sortie #101556,https://biolit.fr/sorties/sortie-101556/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_9450-1-scaled.jpeg,6/21/2025 0:00,13.0:15,13.0000000,43.0257280000000,5.82481400000000,,Large de Sanary - Cap Sicié,101557,Observation #101557,https://biolit.fr/observations/observation-101557/,Caretta caretta,Tortue caouanne,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_9450-1-scaled.jpeg,,TRUE,Identifiable +N1,101985,Sortie #101985,https://biolit.fr/sorties/sortie-101985/,LPO Occitanie - Aude,https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2025/08/IMG20250514142517-scaled.jpg,5/14/2025 0:00,14.0000000,16.0000000,43.1512210000000,3.16088700000000,LPO Occitanie (Dt Aude),Narbonne Plage,101988,Observation #101988,https://biolit.fr/observations/observation-101988/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2025/08/IMG20250514142517-scaled.jpg,,TRUE,Identifiable +N1,102001,Sortie #102001,https://biolit.fr/sorties/sortie-102001/,LPO Occitanie - Aude,https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2025/08/IMG20250618153244-scaled.jpg,6/18/2025 0:00,14.0000000,15.0000000,43.0836640000000,3.05700200000000,LPO Occitanie (Dt Aude),"Île Saint-Martin, étang de l'Ayrolle à Gruissan",102002,Observation #102002,https://biolit.fr/observations/observation-102002/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2025/08/IMG20250618153244-scaled.jpg,,,Identifiable +N1,102086,Sortie #102086,https://biolit.fr/sorties/sortie-102086/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/DSC_1705.jpeg,6/21/2025 0:00,12.0:57,13.0000000,43.0496640000000,5.80374200000000,,Large Sanary Cap Sicié,102087,Observation #102087,https://biolit.fr/observations/observation-102087/,Delphinus delphis,Dauphin commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/DSC_1705.jpeg,,TRUE,Identifiable +N1,102090,Sortie #102090,https://biolit.fr/sorties/sortie-102090/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_9437.jpeg,6/21/2025 0:00,13.000005,13.0000000,43.042541000000,5.79297100000000,,Large de Sanary Cap Sicié,102091,Observation #102091,https://biolit.fr/observations/observation-102091/,Stenella coeruleoalba,Dauphin bleu et blanc,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_9437.jpeg,,TRUE,Identifiable +N1,102094,Sortie #102094,https://biolit.fr/sorties/sortie-102094/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/DSC_1530.jpeg,6/21/2025 0:00,13.0000000,13.0:34,43.0456150000000,5.79597500000000,,Large Sanary Cop Sicié,102095,Observation #102095,https://biolit.fr/observations/observation-102095/,Stenella coeruleoalba,Dauphin bleu et blanc,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/DSC_1530.jpeg,,TRUE,Identifiable +N1,102199,Sortie #102199,https://biolit.fr/sorties/sortie-102199/,Siaudeau Magali,https://biolit.fr/wp-content/uploads/jet-form-builder/253cade5ab62c509c58bbdf73aa78ed6/2025/08/IMG_8790-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/253cade5ab62c509c58bbdf73aa78ed6/2025/08/IMG_8791-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/253cade5ab62c509c58bbdf73aa78ed6/2025/08/IMG_8792-scaled.jpeg,08/09/2025,13.0000000,13.0000000,49.5145350000000,-1.28445600000000,,Plage de Quinéville,102200,Observation #102200,https://biolit.fr/observations/observation-102200/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/jet-form-builder/253cade5ab62c509c58bbdf73aa78ed6/2025/08/IMG_8790-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/253cade5ab62c509c58bbdf73aa78ed6/2025/08/IMG_8792-scaled.jpeg,,TRUE,Ne sais pas +N1,102210,Sortie #102210,https://biolit.fr/sorties/sortie-102210/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4403-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4405-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4407-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4418-scaled.jpeg,08/10/2025,10.0000000,12.0000000,48.5829660000000,-2.5661550000000,,Pléneuf-Val-André,102211,Observation #102211,https://biolit.fr/observations/observation-102211/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4403-scaled.jpeg,,TRUE,Identifiable +N1,102210,Sortie #102210,https://biolit.fr/sorties/sortie-102210/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4403-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4405-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4407-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4418-scaled.jpeg,08/10/2025,10.0000000,12.0000000,48.5829660000000,-2.5661550000000,,Pléneuf-Val-André,102213,Observation #102213,https://biolit.fr/observations/observation-102213/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4410-scaled.jpeg,,TRUE,Identifiable +N1,102210,Sortie #102210,https://biolit.fr/sorties/sortie-102210/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4403-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4405-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4407-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4418-scaled.jpeg,08/10/2025,10.0000000,12.0000000,48.5829660000000,-2.5661550000000,,Pléneuf-Val-André,102215,Observation #102215,https://biolit.fr/observations/observation-102215/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4414-scaled.jpeg,,,Identifiable +N1,102210,Sortie #102210,https://biolit.fr/sorties/sortie-102210/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4403-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4405-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4407-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4418-scaled.jpeg,08/10/2025,10.0000000,12.0000000,48.5829660000000,-2.5661550000000,,Pléneuf-Val-André,102217,Observation #102217,https://biolit.fr/observations/observation-102217/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4408-scaled.jpeg,,TRUE,Identifiable +N1,102210,Sortie #102210,https://biolit.fr/sorties/sortie-102210/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4403-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4405-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4407-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4418-scaled.jpeg,08/10/2025,10.0000000,12.0000000,48.5829660000000,-2.5661550000000,,Pléneuf-Val-André,102219,Observation #102219,https://biolit.fr/observations/observation-102219/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4411-scaled.jpeg,,TRUE,Identifiable +N1,102210,Sortie #102210,https://biolit.fr/sorties/sortie-102210/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4403-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4405-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4407-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4418-scaled.jpeg,08/10/2025,10.0000000,12.0000000,48.5829660000000,-2.5661550000000,,Pléneuf-Val-André,102221,Observation #102221,https://biolit.fr/observations/observation-102221/,Chelon labrosus,Mulet lippu,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4407-scaled.jpeg,,,Identifiable +N1,102210,Sortie #102210,https://biolit.fr/sorties/sortie-102210/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4403-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4405-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4407-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4418-scaled.jpeg,08/10/2025,10.0000000,12.0000000,48.5829660000000,-2.5661550000000,,Pléneuf-Val-André,102223,Observation #102223,https://biolit.fr/observations/observation-102223/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4405-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4418-scaled.jpeg,,,Ne sais pas +N1,102210,Sortie #102210,https://biolit.fr/sorties/sortie-102210/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4403-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4405-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4407-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4418-scaled.jpeg,08/10/2025,10.0000000,12.0000000,48.5829660000000,-2.5661550000000,,Pléneuf-Val-André,102225,Observation #102225,https://biolit.fr/observations/observation-102225/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4418-scaled.jpeg,,,Ne sais pas +N1,102375,Sortie #102375,https://biolit.fr/sorties/sortie-102375/,SACHER William,https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200851-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200847-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200845-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200842.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200837.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200835.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200852.jpg,07/01/2025,10.0000000,15.0000000,51.0827850000000,2.52523500000000,,Bray Dunes,102376,Observation #102376,https://biolit.fr/observations/observation-102376/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200837.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200851-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200847-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200845-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200842.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200841.jpg,,,Ne sais pas +N1,102384,Sortie #102384,https://biolit.fr/sorties/sortie-102384/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_2030-scaled.jpeg,08/12/2025,23.0:54,23.0:59,43.2696590000000,6.57971800000000,,Port Grimaud plagette rue de la Giscle,102385,Observation #102385,https://biolit.fr/observations/observation-102385/,Salaria fluviatilis,Blennie fluviatile,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_2030-scaled.jpeg,,,Identifiable +N1,102391,Sortie #102391,https://biolit.fr/sorties/sortie-102391/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_2013-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_2014.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_2017-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_2016-scaled.jpeg,08/12/2025,23.0:53,23.0:58,43.2696480000000,6.57972200000000,,Port Grimaud plagette rue de la Giscle,102392,Observation #102392,https://biolit.fr/observations/observation-102392/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_2013-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_2014.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_2017-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_2016-scaled.jpeg,,TRUE,Identifiable +N1,102398,Sortie #102398,https://biolit.fr/sorties/sortie-102398/,Cardona Ariane,https://biolit.fr/wp-content/uploads/jet-form-builder/cc9cd2c2e3d259e01a8a33d2088e0f98/2025/08/IMG_5569-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc9cd2c2e3d259e01a8a33d2088e0f98/2025/08/IMG_5577-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc9cd2c2e3d259e01a8a33d2088e0f98/2025/08/IMG_5576-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc9cd2c2e3d259e01a8a33d2088e0f98/2025/08/IMG_5583-1-scaled.jpeg,08/12/2025,14.0000000,15.0:15,43.0795620,6.1229380,,Site archéologique d’Olbia sentier sous marin,102399,Observation #102399,https://biolit.fr/observations/observation-102399/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/cc9cd2c2e3d259e01a8a33d2088e0f98/2025/08/IMG_5583-1-scaled.jpeg,,TRUE,Ne sais pas +N1,102398,Sortie #102398,https://biolit.fr/sorties/sortie-102398/,Cardona Ariane,https://biolit.fr/wp-content/uploads/jet-form-builder/cc9cd2c2e3d259e01a8a33d2088e0f98/2025/08/IMG_5569-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc9cd2c2e3d259e01a8a33d2088e0f98/2025/08/IMG_5577-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc9cd2c2e3d259e01a8a33d2088e0f98/2025/08/IMG_5576-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc9cd2c2e3d259e01a8a33d2088e0f98/2025/08/IMG_5583-1-scaled.jpeg,08/12/2025,14.0000000,15.0:15,43.0795620,6.1229380,,Site archéologique d’Olbia sentier sous marin,103261,Observation #103261,https://biolit.fr/observations/observation-103261/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cc9cd2c2e3d259e01a8a33d2088e0f98/2025/08/IMG_5569-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc9cd2c2e3d259e01a8a33d2088e0f98/2025/08/IMG_5577-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc9cd2c2e3d259e01a8a33d2088e0f98/2025/08/IMG_5576-1-scaled.jpeg,,,Ne sais pas +N1,102407,Sortie #102407,https://biolit.fr/sorties/sortie-102407/,Cardona Ariane,https://biolit.fr/wp-content/uploads/jet-form-builder/cc9cd2c2e3d259e01a8a33d2088e0f98/2025/08/IMG_5529-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc9cd2c2e3d259e01a8a33d2088e0f98/2025/08/IMG_5528-2-scaled.jpeg,08/11/2025,12.0000000,14.0000000,43.0083190,6.3837400,,Port Cros route du Manoir,102408,Observation #102408,https://biolit.fr/observations/observation-102408/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cc9cd2c2e3d259e01a8a33d2088e0f98/2025/08/IMG_5529-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc9cd2c2e3d259e01a8a33d2088e0f98/2025/08/IMG_5528-2-scaled.jpeg,,,Ne sais pas +N1,102414,Sortie #102414,https://biolit.fr/sorties/sortie-102414/,DHULESIA Olivier,https://biolit.fr/wp-content/uploads/jet-form-builder/3ce65d81b38d59af242fa2c8a55049d3/2025/08/IMG_20250814_195718-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3ce65d81b38d59af242fa2c8a55049d3/2025/08/IMG_20250814_195713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3ce65d81b38d59af242fa2c8a55049d3/2025/08/IMG_20250814_195643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3ce65d81b38d59af242fa2c8a55049d3/2025/08/IMG_20250814_195444-scaled.jpg,8/14/2025 0:00,17.0:25,20.0:26,43.4963050000000,-1.54237700000000,,Anglet,,,,,,,,,, +N1,102438,Sortie #102438,https://biolit.fr/sorties/sortie-102438/,BONAMY-DOUDARD Nelly,https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Avocette_elegante-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Courlis_Corlieu-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_Cendre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_cendre_2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Spatules_Blanches_2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Cisticole_des_joncs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Soude_Commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/oenothera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Queue-de-lievre-ou-Lagure-ovale-1-scaled.jpg,8/13/2025 0:00,13.0000000,13.0000000,47.49432,2.47954,CPIE Loire Oceane Environnement,MEN AR MOR PENESTIN,102439,Observation #102439,https://biolit.fr/observations/observation-102439/,Recurvirostra avosetta,Avocette élégante,,https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Avocette_elegante-1.jpg,,FALSE,Identifiable +N1,102438,Sortie #102438,https://biolit.fr/sorties/sortie-102438/,BONAMY-DOUDARD Nelly,https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Avocette_elegante-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Courlis_Corlieu-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_Cendre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_cendre_2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Spatules_Blanches_2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Cisticole_des_joncs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Soude_Commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/oenothera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Queue-de-lievre-ou-Lagure-ovale-1-scaled.jpg,8/13/2025 0:00,13.0000000,13.0000000,47.49432,2.47954,CPIE Loire Oceane Environnement,MEN AR MOR PENESTIN,102441,Observation #102441,https://biolit.fr/observations/observation-102441/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Courlis_Corlieu-1.jpg,,FALSE,Identifiable +N1,102438,Sortie #102438,https://biolit.fr/sorties/sortie-102438/,BONAMY-DOUDARD Nelly,https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Avocette_elegante-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Courlis_Corlieu-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_Cendre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_cendre_2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Spatules_Blanches_2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Cisticole_des_joncs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Soude_Commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/oenothera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Queue-de-lievre-ou-Lagure-ovale-1-scaled.jpg,8/13/2025 0:00,13.0000000,13.0000000,47.49432,2.47954,CPIE Loire Oceane Environnement,MEN AR MOR PENESTIN,102443,Observation #102443,https://biolit.fr/observations/observation-102443/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_Cendre-1.jpg,,FALSE,Identifiable +N1,102438,Sortie #102438,https://biolit.fr/sorties/sortie-102438/,BONAMY-DOUDARD Nelly,https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Avocette_elegante-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Courlis_Corlieu-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_Cendre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_cendre_2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Spatules_Blanches_2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Cisticole_des_joncs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Soude_Commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/oenothera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Queue-de-lievre-ou-Lagure-ovale-1-scaled.jpg,8/13/2025 0:00,13.0000000,13.0000000,47.49432,2.47954,CPIE Loire Oceane Environnement,MEN AR MOR PENESTIN,102445,Observation #102445,https://biolit.fr/observations/observation-102445/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Spatules_Blanches_2-1-scaled.jpg,,FALSE,Identifiable +N1,102438,Sortie #102438,https://biolit.fr/sorties/sortie-102438/,BONAMY-DOUDARD Nelly,https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Avocette_elegante-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Courlis_Corlieu-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_Cendre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_cendre_2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Spatules_Blanches_2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Cisticole_des_joncs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Soude_Commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/oenothera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Queue-de-lievre-ou-Lagure-ovale-1-scaled.jpg,8/13/2025 0:00,13.0000000,13.0000000,47.49432,2.47954,CPIE Loire Oceane Environnement,MEN AR MOR PENESTIN,102447,Observation #102447,https://biolit.fr/observations/observation-102447/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Cisticole_des_joncs-1-scaled.jpg,,FALSE,Identifiable +N1,102438,Sortie #102438,https://biolit.fr/sorties/sortie-102438/,BONAMY-DOUDARD Nelly,https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Avocette_elegante-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Courlis_Corlieu-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_Cendre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_cendre_2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Spatules_Blanches_2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Cisticole_des_joncs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Soude_Commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/oenothera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Queue-de-lievre-ou-Lagure-ovale-1-scaled.jpg,8/13/2025 0:00,13.0000000,13.0000000,47.49432,2.47954,CPIE Loire Oceane Environnement,MEN AR MOR PENESTIN,102449,Observation #102449,https://biolit.fr/observations/observation-102449/,Suaeda maritima,Soude maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-1.jpg,,FALSE,Identifiable +N1,102438,Sortie #102438,https://biolit.fr/sorties/sortie-102438/,BONAMY-DOUDARD Nelly,https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Avocette_elegante-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Courlis_Corlieu-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_Cendre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_cendre_2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Spatules_Blanches_2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Cisticole_des_joncs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Soude_Commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/oenothera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Queue-de-lievre-ou-Lagure-ovale-1-scaled.jpg,8/13/2025 0:00,13.0000000,13.0000000,47.49432,2.47954,CPIE Loire Oceane Environnement,MEN AR MOR PENESTIN,102451,Observation #102451,https://biolit.fr/observations/observation-102451/,Lagurus ovatus,Queue de lièvre,,https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Queue-de-lievre-ou-Lagure-ovale-1-scaled.jpg,,TRUE,Identifiable +N1,102438,Sortie #102438,https://biolit.fr/sorties/sortie-102438/,BONAMY-DOUDARD Nelly,https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Avocette_elegante-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Courlis_Corlieu-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_Cendre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_cendre_2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Spatules_Blanches_2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Cisticole_des_joncs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Soude_Commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/oenothera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Queue-de-lievre-ou-Lagure-ovale-1-scaled.jpg,8/13/2025 0:00,13.0000000,13.0000000,47.49432,2.47954,CPIE Loire Oceane Environnement,MEN AR MOR PENESTIN,102453,Observation #102453,https://biolit.fr/observations/observation-102453/,Oenothera glazioviana,Onagre à sépales rouges,,https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/oenothera-1-scaled.jpg,,FALSE,Identifiable +N1,102456,Sortie #102456,https://biolit.fr/sorties/sortie-102456/,DHULESIA Olivier,https://biolit.fr/wp-content/uploads/jet-form-builder/3ce65d81b38d59af242fa2c8a55049d3/2025/08/IMG_20250814_195718-1-scaled.jpg,8/16/2025 0:00,13.000001,16.000001,43.5000400000000,-1.54306400000000,,Anglet,102457,Observation #102457,https://biolit.fr/observations/observation-102457/,Larus michahellis,Goéland leucophée,,https://biolit.fr/wp-content/uploads/jet-form-builder/3ce65d81b38d59af242fa2c8a55049d3/2025/08/IMG_20250814_195718-1-scaled.jpg,,TRUE,Ne sais pas +N1,102460,Sortie #102460,https://biolit.fr/sorties/sortie-102460/,DHULESIA Olivier,https://biolit.fr/wp-content/uploads/jet-form-builder/3ce65d81b38d59af242fa2c8a55049d3/2025/08/IMG_20250814_195713-1-scaled.jpg,8/15/2025 0:00,14.000003,16.000003,43.499044000000,-1.54375100000000,,Anglet,102461,Observation #102461,https://biolit.fr/observations/observation-102461/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3ce65d81b38d59af242fa2c8a55049d3/2025/08/IMG_20250814_195713-1-scaled.jpg,,,Ne sais pas +N1,102481,Sortie #102481,https://biolit.fr/sorties/sortie-102481/,Frédérique Houdbert,https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/Image-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/Image.jpg,08/10/2025,18.0000000,18.000005,47.8646170000000,-4.08339000000000,,Bénodet (mer blanche),102482,Observation #102482,https://biolit.fr/observations/observation-102482/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/Image-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/Image.jpg,,,Ne sais pas +N1,102481,Sortie #102481,https://biolit.fr/sorties/sortie-102481/,Frédérique Houdbert,https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/Image-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/Image.jpg,08/10/2025,18.0000000,18.000005,47.8646170000000,-4.08339000000000,,Bénodet (mer blanche),102484,Observation #102484,https://biolit.fr/observations/observation-102484/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/Image.jpg,,,Ne sais pas +N1,102492,Sortie #102492,https://biolit.fr/sorties/sortie-102492/,Frédérique Houdbert,https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1250-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1251-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1254-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1255-scaled.jpg,08/05/2025,15.0000000,15.0000000,48.2804020000000,-4.59387300000000,,Camaret-sur-mer,102493,Observation #102493,https://biolit.fr/observations/observation-102493/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1250-scaled.jpg,,,Ne sais pas +N1,102492,Sortie #102492,https://biolit.fr/sorties/sortie-102492/,Frédérique Houdbert,https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1250-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1251-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1254-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1255-scaled.jpg,08/05/2025,15.0000000,15.0000000,48.2804020000000,-4.59387300000000,,Camaret-sur-mer,102495,Observation #102495,https://biolit.fr/observations/observation-102495/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1251-scaled.jpg,,,Ne sais pas +N1,102492,Sortie #102492,https://biolit.fr/sorties/sortie-102492/,Frédérique Houdbert,https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1250-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1251-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1254-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1255-scaled.jpg,08/05/2025,15.0000000,15.0000000,48.2804020000000,-4.59387300000000,,Camaret-sur-mer,102497,Observation #102497,https://biolit.fr/observations/observation-102497/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1252-scaled.jpg,,,Ne sais pas +N1,102492,Sortie #102492,https://biolit.fr/sorties/sortie-102492/,Frédérique Houdbert,https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1250-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1251-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1254-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1255-scaled.jpg,08/05/2025,15.0000000,15.0000000,48.2804020000000,-4.59387300000000,,Camaret-sur-mer,102499,Observation #102499,https://biolit.fr/observations/observation-102499/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1253-scaled.jpg,,TRUE,Ne sais pas +N1,102492,Sortie #102492,https://biolit.fr/sorties/sortie-102492/,Frédérique Houdbert,https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1250-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1251-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1254-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1255-scaled.jpg,08/05/2025,15.0000000,15.0000000,48.2804020000000,-4.59387300000000,,Camaret-sur-mer,102501,Observation #102501,https://biolit.fr/observations/observation-102501/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1254-scaled.jpg,,,Ne sais pas +N1,102492,Sortie #102492,https://biolit.fr/sorties/sortie-102492/,Frédérique Houdbert,https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1250-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1251-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1254-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1255-scaled.jpg,08/05/2025,15.0000000,15.0000000,48.2804020000000,-4.59387300000000,,Camaret-sur-mer,102503,Observation #102503,https://biolit.fr/observations/observation-102503/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1255-scaled.jpg,,,Ne sais pas +N1,102509,Sortie #102509,https://biolit.fr/sorties/sortie-102509/,Poupel Marie christine,https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/08/1000003782-2.jpg,8/17/2025 0:00,12.0000000,12.0:45,49.44259,0.183,,Yport,102510,Observation #102510,https://biolit.fr/observations/observation-102510/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/08/1000003782-2.jpg,,TRUE,Identifiable +N1,102518,Sortie #102518,https://biolit.fr/sorties/sortie-102518/,Auroire Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/b49bd926831a4f300960f9233dd9956b/2025/08/Almanarre-OK-scaled.jpg,8/15/2025 0:00,17.0000000,20.0000000,43.0789550000000,6.12333300000000,,"Plage de l'Almanarre, Hyères",102519,Observation #102519,https://biolit.fr/observations/observation-102519/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b49bd926831a4f300960f9233dd9956b/2025/08/Almanarre-OK-scaled.jpg,,,Ne sais pas +N1,102528,Sortie #102528,https://biolit.fr/sorties/sortie-102528/,CarpeDiem,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013642-scaled.jpg,08/08/2025,20.0000000,20.0:55,42.9629310000000,9.34774200000000,,Centuri0,102529,Observation #102529,https://biolit.fr/observations/observation-102529/,Stramonita haemastoma,Ponte de bouche de sang,,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013631-scaled.jpg,,TRUE,Identifiable +N1,102528,Sortie #102528,https://biolit.fr/sorties/sortie-102528/,CarpeDiem,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013642-scaled.jpg,08/08/2025,20.0000000,20.0:55,42.9629310000000,9.34774200000000,,Centuri0,102564,Observation #102564,https://biolit.fr/observations/observation-102564/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013638-scaled.jpg,,TRUE,Identifiable +N1,102528,Sortie #102528,https://biolit.fr/sorties/sortie-102528/,CarpeDiem,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013642-scaled.jpg,08/08/2025,20.0000000,20.0:55,42.9629310000000,9.34774200000000,,Centuri0,102566,Observation #102566,https://biolit.fr/observations/observation-102566/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013634-scaled.jpg,,TRUE,Identifiable +N1,102528,Sortie #102528,https://biolit.fr/sorties/sortie-102528/,CarpeDiem,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013642-scaled.jpg,08/08/2025,20.0000000,20.0:55,42.9629310000000,9.34774200000000,,Centuri0,102570,Observation #102570,https://biolit.fr/observations/observation-102570/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013639-scaled.jpg,,TRUE,Ne sais pas +N1,102528,Sortie #102528,https://biolit.fr/sorties/sortie-102528/,CarpeDiem,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013642-scaled.jpg,08/08/2025,20.0000000,20.0:55,42.9629310000000,9.34774200000000,,Centuri0,103214,Observation #103214,https://biolit.fr/observations/observation-103214/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013642-scaled.jpg,,,Ne sais pas +N1,102532,Sortie #102532,https://biolit.fr/sorties/sortie-102532/,CarpeDiem,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013632-1-scaled.jpg,08/08/2025,20.0000000,20.0:55,42.9629910000000,9.34772400000000,,Centori,102533,Observation #102533,https://biolit.fr/observations/observation-102533/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013632-1-scaled.jpg,,TRUE,Identifiable +N1,102536,Sortie #102536,https://biolit.fr/sorties/sortie-102536/,CarpeDiem,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013633-1-scaled.jpg,08/08/2025,8.0000000,20.0:55,42.9629870000000,9.34768900000000,,Centuri,102537,Observation #102537,https://biolit.fr/observations/observation-102537/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013633-1-scaled.jpg,,TRUE,Identifiable +N1,102722,Sortie #102722,https://biolit.fr/sorties/sortie-102722/,BOUCHER Alain,https://biolit.fr/wp-content/uploads/jet-form-builder/088cdc61d00c23d2d858f4492be0cb83/2025/08/1000003979-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/088cdc61d00c23d2d858f4492be0cb83/2025/08/1000003977-scaled.jpg,8/18/2025 0:00,15.0000000,17.0000000,46.2797000000000,-1.22348800000000,,La baie de l'aiguillon (85),,,,,,,,,, +N1,103237,Sortie #103237,https://biolit.fr/sorties/sortie-103237/,VUILLIER Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_161647146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162110842-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162139142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162158682-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162212134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162609222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162931689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163401242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163441047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163502161-scaled.jpg,8/16/2025 0:00,16.0000000,19.0000000,45.9491380000000,-1.08677700000000,,Port des Barques,103238,Observation #103238,https://biolit.fr/observations/observation-103238/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162110842-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_161647146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162139142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162158682-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162212134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162609222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162931689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163502161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163441047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163401242-scaled.jpg,,,Ne sais pas +N1,103237,Sortie #103237,https://biolit.fr/sorties/sortie-103237/,VUILLIER Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_161647146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162110842-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162139142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162158682-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162212134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162609222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162931689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163401242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163441047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163502161-scaled.jpg,8/16/2025 0:00,16.0000000,19.0000000,45.9491380000000,-1.08677700000000,,Port des Barques,103240,Observation #103240,https://biolit.fr/observations/observation-103240/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_161647146-scaled.jpg,,TRUE, +N1,103237,Sortie #103237,https://biolit.fr/sorties/sortie-103237/,VUILLIER Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_161647146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162110842-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162139142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162158682-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162212134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162609222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162931689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163401242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163441047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163502161-scaled.jpg,8/16/2025 0:00,16.0000000,19.0000000,45.9491380000000,-1.08677700000000,,Port des Barques,103242,Observation #103242,https://biolit.fr/observations/observation-103242/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162139142-scaled.jpg,,, +N1,103237,Sortie #103237,https://biolit.fr/sorties/sortie-103237/,VUILLIER Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_161647146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162110842-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162139142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162158682-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162212134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162609222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162931689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163401242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163441047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163502161-scaled.jpg,8/16/2025 0:00,16.0000000,19.0000000,45.9491380000000,-1.08677700000000,,Port des Barques,103244,Observation #103244,https://biolit.fr/observations/observation-103244/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162158682-scaled.jpg,,TRUE, +N1,103237,Sortie #103237,https://biolit.fr/sorties/sortie-103237/,VUILLIER Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_161647146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162110842-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162139142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162158682-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162212134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162609222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162931689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163401242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163441047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163502161-scaled.jpg,8/16/2025 0:00,16.0000000,19.0000000,45.9491380000000,-1.08677700000000,,Port des Barques,103246,Observation #103246,https://biolit.fr/observations/observation-103246/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162212134-scaled.jpg,,, +N1,103237,Sortie #103237,https://biolit.fr/sorties/sortie-103237/,VUILLIER Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_161647146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162110842-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162139142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162158682-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162212134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162609222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162931689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163401242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163441047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163502161-scaled.jpg,8/16/2025 0:00,16.0000000,19.0000000,45.9491380000000,-1.08677700000000,,Port des Barques,103248,Observation #103248,https://biolit.fr/observations/observation-103248/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162609222-scaled.jpg,,TRUE, +N1,103237,Sortie #103237,https://biolit.fr/sorties/sortie-103237/,VUILLIER Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_161647146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162110842-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162139142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162158682-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162212134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162609222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162931689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163401242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163441047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163502161-scaled.jpg,8/16/2025 0:00,16.0000000,19.0000000,45.9491380000000,-1.08677700000000,,Port des Barques,103250,Observation #103250,https://biolit.fr/observations/observation-103250/,Spartina martitima,Spartine maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162931689-scaled.jpg,,TRUE, +N1,103237,Sortie #103237,https://biolit.fr/sorties/sortie-103237/,VUILLIER Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_161647146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162110842-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162139142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162158682-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162212134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162609222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162931689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163401242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163441047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163502161-scaled.jpg,8/16/2025 0:00,16.0000000,19.0000000,45.9491380000000,-1.08677700000000,,Port des Barques,103252,Observation #103252,https://biolit.fr/observations/observation-103252/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163401242-scaled.jpg,,TRUE, +N1,103237,Sortie #103237,https://biolit.fr/sorties/sortie-103237/,VUILLIER Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_161647146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162110842-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162139142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162158682-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162212134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162609222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162931689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163401242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163441047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163502161-scaled.jpg,8/16/2025 0:00,16.0000000,19.0000000,45.9491380000000,-1.08677700000000,,Port des Barques,103254,Observation #103254,https://biolit.fr/observations/observation-103254/,Lagurus ovatus,Queue de lièvre,,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163441047-scaled.jpg,,TRUE, +N1,103237,Sortie #103237,https://biolit.fr/sorties/sortie-103237/,VUILLIER Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_161647146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162110842-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162139142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162158682-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162212134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162609222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162931689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163401242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163441047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163502161-scaled.jpg,8/16/2025 0:00,16.0000000,19.0000000,45.9491380000000,-1.08677700000000,,Port des Barques,103256,Observation #103256,https://biolit.fr/observations/observation-103256/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163502161-scaled.jpg,,, +N1,103412,Sortie #103412,https://biolit.fr/sorties/sortie-103412/,CarpeDiem,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014006-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014021-scaled.jpg,8/13/2025 0:00,11.0000000,11.0000000,42.9540050000000,9.34678500000000,,Côté rocheuse au Sud de Mute,103413,Observation #103413,https://biolit.fr/observations/observation-103413/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014006-scaled.jpg,,,Identifiable +N1,103412,Sortie #103412,https://biolit.fr/sorties/sortie-103412/,CarpeDiem,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014006-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014021-scaled.jpg,8/13/2025 0:00,11.0000000,11.0000000,42.9540050000000,9.34678500000000,,Côté rocheuse au Sud de Mute,103415,Observation #103415,https://biolit.fr/observations/observation-103415/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014007-scaled.jpg,,,Ne sais pas +N1,103412,Sortie #103412,https://biolit.fr/sorties/sortie-103412/,CarpeDiem,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014006-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014021-scaled.jpg,8/13/2025 0:00,11.0000000,11.0000000,42.9540050000000,9.34678500000000,,Côté rocheuse au Sud de Mute,103417,Observation #103417,https://biolit.fr/observations/observation-103417/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014010-scaled.jpg,,,Ne sais pas +N1,103412,Sortie #103412,https://biolit.fr/sorties/sortie-103412/,CarpeDiem,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014006-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014021-scaled.jpg,8/13/2025 0:00,11.0000000,11.0000000,42.9540050000000,9.34678500000000,,Côté rocheuse au Sud de Mute,103419,Observation #103419,https://biolit.fr/observations/observation-103419/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014015-scaled.jpg,,,Identifiable +N1,103412,Sortie #103412,https://biolit.fr/sorties/sortie-103412/,CarpeDiem,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014006-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014021-scaled.jpg,8/13/2025 0:00,11.0000000,11.0000000,42.9540050000000,9.34678500000000,,Côté rocheuse au Sud de Mute,103421,Observation #103421,https://biolit.fr/observations/observation-103421/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014020-scaled.jpg,,TRUE,Identifiable +N1,103412,Sortie #103412,https://biolit.fr/sorties/sortie-103412/,CarpeDiem,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014006-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014021-scaled.jpg,8/13/2025 0:00,11.0000000,11.0000000,42.9540050000000,9.34678500000000,,Côté rocheuse au Sud de Mute,103423,Observation #103423,https://biolit.fr/observations/observation-103423/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014021-scaled.jpg,,,Identifiable +N1,103442,Sortie #103442,https://biolit.fr/sorties/sortie-103442/,Menandez Maxence,https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5347-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5348.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5349.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5350.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5351.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5352.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5353.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5354.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5355.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5356.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5357.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5358.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5360.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5361.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5362.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5363.jpg,7/13/2025 0:00,15.0000000,18.0000000,44.6517620000000,-1.19649300000000,,Arcachon plage Pereire,103443,Observation #103443,https://biolit.fr/observations/observation-103443/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5347-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5348.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5349.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5350.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5351.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5352.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5353.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5360.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5358.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5357.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5356.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5363.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5362.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5355.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5354.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5361.jpg,,,Ne sais pas +N1,103467,Sortie #103467,https://biolit.fr/sorties/sortie-103467/,BOUTHILLON Hélène,https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008480-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008425-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008424-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008395-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008389-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008379-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008384-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008360-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008239-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008236-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008227-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008221-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008215-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008204-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008198-scaled.jpg,06/10/2025,9.0000000,13.0000000,48.874930000000,-1.83698900000000,,Îles Chausey,,,,,,,,,, +N1,103488,Sortie #103488,https://biolit.fr/sorties/sortie-103488/,BOUTHILLON Hélène,https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008198-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008204-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008211-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008218-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008221-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008227-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008231-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008238-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008239-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008360-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008379-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008384-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008388-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008395-1-scaled.jpg,06/10/2025,9.0000000,13.0000000,48.8748640000000,-1.84223200000000,,Îles Chausey - Bas de la Grande Grève,103489,Observation #103489,https://biolit.fr/observations/observation-103489/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008384-1-scaled.jpg,,,Identifiable +N1,103488,Sortie #103488,https://biolit.fr/sorties/sortie-103488/,BOUTHILLON Hélène,https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008198-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008204-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008211-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008218-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008221-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008227-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008231-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008238-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008239-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008360-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008379-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008384-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008388-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008395-1-scaled.jpg,06/10/2025,9.0000000,13.0000000,48.8748640000000,-1.84223200000000,,Îles Chausey - Bas de la Grande Grève,103491,Observation #103491,https://biolit.fr/observations/observation-103491/,Elysia crispata,Limace de mer frisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008204-1-scaled.jpg,,,Identifiable +N1,103488,Sortie #103488,https://biolit.fr/sorties/sortie-103488/,BOUTHILLON Hélène,https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008198-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008204-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008211-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008218-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008221-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008227-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008231-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008238-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008239-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008360-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008379-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008384-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008388-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008395-1-scaled.jpg,06/10/2025,9.0000000,13.0000000,48.8748640000000,-1.84223200000000,,Îles Chausey - Bas de la Grande Grève,103493,Observation #103493,https://biolit.fr/observations/observation-103493/,Ammodytes americanus,Lançon,,https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008221-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008231-1-scaled.jpg,,,Identifiable +N1,103488,Sortie #103488,https://biolit.fr/sorties/sortie-103488/,BOUTHILLON Hélène,https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008198-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008204-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008211-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008218-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008221-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008227-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008231-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008238-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008239-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008360-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008379-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008384-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008388-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008395-1-scaled.jpg,06/10/2025,9.0000000,13.0000000,48.8748640000000,-1.84223200000000,,Îles Chausey - Bas de la Grande Grève,103495,Observation #103495,https://biolit.fr/observations/observation-103495/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008388-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008379-1-scaled.jpg,,,Identifiable +N1,103488,Sortie #103488,https://biolit.fr/sorties/sortie-103488/,BOUTHILLON Hélène,https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008198-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008204-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008211-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008218-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008221-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008227-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008231-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008238-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008239-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008360-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008379-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008384-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008388-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008395-1-scaled.jpg,06/10/2025,9.0000000,13.0000000,48.8748640000000,-1.84223200000000,,Îles Chausey - Bas de la Grande Grève,103497,Observation #103497,https://biolit.fr/observations/observation-103497/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008379-1-scaled.jpg,,,Identifiable +N1,103488,Sortie #103488,https://biolit.fr/sorties/sortie-103488/,BOUTHILLON Hélène,https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008198-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008204-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008211-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008218-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008221-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008227-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008231-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008238-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008239-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008360-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008379-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008384-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008388-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008395-1-scaled.jpg,06/10/2025,9.0000000,13.0000000,48.8748640000000,-1.84223200000000,,Îles Chausey - Bas de la Grande Grève,103500,Observation #103500,https://biolit.fr/observations/observation-103500/,Salicornia spp.,Salicorne,,https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008395-1-scaled.jpg,,,Identifiable +N1,103538,Sortie #103538,https://biolit.fr/sorties/sortie-103538/,VIEL per-yann,https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1057-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1062-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1067-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1080-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1091-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1070-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1071-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1078-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1088-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1089-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1064-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1074-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1079-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1085-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1087-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1090-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1061-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1075-scaled.jpg,8/22/2025 0:00,13.0:15,16.0:15,48.7558490000000,-4.81268300000000,,PLOUGUERNEAU,103539,Observation #103539,https://biolit.fr/observations/observation-103539/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1057-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1062-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1067-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1080-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1091-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1070-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1071-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1078-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1088-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1089-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1064-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1074-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1079-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1085-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1087-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1090-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1061-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1075-scaled.jpg,,FALSE,Ne sais pas +N1,103561,Sortie #103561,https://biolit.fr/sorties/sortie-103561/,Blanchard Arthur,https://biolit.fr/wp-content/uploads/jet-form-builder/124045251ce28cbd60669f1853bdcb23/2025/08/IMG_4110-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/124045251ce28cbd60669f1853bdcb23/2025/08/IMG_4111-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/124045251ce28cbd60669f1853bdcb23/2025/08/IMG_4112-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/124045251ce28cbd60669f1853bdcb23/2025/08/IMG_4113-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/124045251ce28cbd60669f1853bdcb23/2025/08/IMG_4114-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/124045251ce28cbd60669f1853bdcb23/2025/08/IMG_4115-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/124045251ce28cbd60669f1853bdcb23/2025/08/IMG_4119-scaled.jpeg,8/25/2025 0:00,14.0000000,16.0000000,48.6382380000000,-2.06025800000000,Planète Mer,Dinard,,,,,,,,,, +N1,103568,Sortie #103568,https://biolit.fr/sorties/sortie-103568/,Brendolise Justin,https://biolit.fr/wp-content/uploads/jet-form-builder/23f96b7ec56ceee1c25b9fda1c334172/2025/08/IMG_8286-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/23f96b7ec56ceee1c25b9fda1c334172/2025/08/IMG_8285-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/23f96b7ec56ceee1c25b9fda1c334172/2025/08/image0000001.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/23f96b7ec56ceee1c25b9fda1c334172/2025/08/image0000011.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/23f96b7ec56ceee1c25b9fda1c334172/2025/08/image0000021.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/23f96b7ec56ceee1c25b9fda1c334172/2025/08/image0000031.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/23f96b7ec56ceee1c25b9fda1c334172/2025/08/image0000041.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/23f96b7ec56ceee1c25b9fda1c334172/2025/08/image0000051.jpeg,8/25/2025 0:00,15.0000000,16.0000000,48.64,-2.07,,Dinard,,,,,,,,,, +N1,103577,Sortie #103577,https://biolit.fr/sorties/sortie-103577/,Blanchard Arthur,https://biolit.fr/wp-content/uploads/jet-form-builder/124045251ce28cbd60669f1853bdcb23/2025/08/IMG_4112-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/124045251ce28cbd60669f1853bdcb23/2025/08/IMG_4113-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/124045251ce28cbd60669f1853bdcb23/2025/08/IMG_4111-1-scaled.jpeg,8/25/2025 0:00,14.0000000,16.0000000,48.6382390000000,-2.06026900000000,Planète Mer (antenne Dinard),Dinard,,,,,,,,,, +N1,103667,Sortie #103667,https://biolit.fr/sorties/sortie-103667/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/Grand-chiton-epineux.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/Porcellane-grise.jpg,8/25/2025 0:00,15.0000000,15.0:45,48.642911000000,-2.11207700000000,Planète Mer,Plage de Saint Lunaire,103668,Observation #103668,https://biolit.fr/observations/observation-103668/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/Grand-chiton-epineux.jpg,,TRUE,Identifiable +N1,103667,Sortie #103667,https://biolit.fr/sorties/sortie-103667/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/Grand-chiton-epineux.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/Porcellane-grise.jpg,8/25/2025 0:00,15.0000000,15.0:45,48.642911000000,-2.11207700000000,Planète Mer,Plage de Saint Lunaire,103670,Observation #103670,https://biolit.fr/observations/observation-103670/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/Porcellane-grise.jpg,,TRUE,Identifiable +N1,103693,Sortie #103693,https://biolit.fr/sorties/sortie-103693/,OMS Didier,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4656-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4661-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4669.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4678-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4684-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4687-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4690-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4698-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4708-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4709-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4711-1.jpg,8/21/2025 0:00,16.0000000,18.0000000,42.698,3.033,,Sainte Marie la Mer,103705,Observation #103705,https://biolit.fr/observations/observation-103705/,Opuntia ficus,Figuier de barbarie,,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4678-1.jpg,,,Identifiable +N1,103693,Sortie #103693,https://biolit.fr/sorties/sortie-103693/,OMS Didier,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4656-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4661-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4669.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4678-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4684-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4687-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4690-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4698-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4708-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4709-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4711-1.jpg,8/21/2025 0:00,16.0000000,18.0000000,42.698,3.033,,Sainte Marie la Mer,103707,Observation #103707,https://biolit.fr/observations/observation-103707/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4656-1.jpg,,,Identifiable +N1,103693,Sortie #103693,https://biolit.fr/sorties/sortie-103693/,OMS Didier,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4656-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4661-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4669.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4678-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4684-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4687-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4690-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4698-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4708-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4709-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4711-1.jpg,8/21/2025 0:00,16.0000000,18.0000000,42.698,3.033,,Sainte Marie la Mer,103709,Observation #103709,https://biolit.fr/observations/observation-103709/,Calystegia soldanella,Liseron des dunes,,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4661-1.jpg,,,Identifiable +N1,103693,Sortie #103693,https://biolit.fr/sorties/sortie-103693/,OMS Didier,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4656-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4661-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4669.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4678-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4684-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4687-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4690-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4698-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4708-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4709-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4711-1.jpg,8/21/2025 0:00,16.0000000,18.0000000,42.698,3.033,,Sainte Marie la Mer,103711,Observation #103711,https://biolit.fr/observations/observation-103711/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4669.jpg,,,Identifiable +N1,103693,Sortie #103693,https://biolit.fr/sorties/sortie-103693/,OMS Didier,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4656-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4661-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4669.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4678-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4684-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4687-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4690-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4698-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4708-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4709-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4711-1.jpg,8/21/2025 0:00,16.0000000,18.0000000,42.698,3.033,,Sainte Marie la Mer,103713,Observation #103713,https://biolit.fr/observations/observation-103713/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4684-1.jpg,,,non-identifiable +N1,103693,Sortie #103693,https://biolit.fr/sorties/sortie-103693/,OMS Didier,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4656-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4661-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4669.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4678-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4684-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4687-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4690-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4698-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4708-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4709-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4711-1.jpg,8/21/2025 0:00,16.0000000,18.0000000,42.698,3.033,,Sainte Marie la Mer,103715,Observation #103715,https://biolit.fr/observations/observation-103715/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4687-1.jpg,,,Identifiable +N1,103693,Sortie #103693,https://biolit.fr/sorties/sortie-103693/,OMS Didier,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4656-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4661-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4669.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4678-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4684-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4687-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4690-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4698-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4708-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4709-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4711-1.jpg,8/21/2025 0:00,16.0000000,18.0000000,42.698,3.033,,Sainte Marie la Mer,103717,Observation #103717,https://biolit.fr/observations/observation-103717/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4690-1.jpg,,,Identifiable +N1,103693,Sortie #103693,https://biolit.fr/sorties/sortie-103693/,OMS Didier,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4656-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4661-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4669.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4678-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4684-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4687-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4690-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4698-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4708-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4709-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4711-1.jpg,8/21/2025 0:00,16.0000000,18.0000000,42.698,3.033,,Sainte Marie la Mer,103719,Observation #103719,https://biolit.fr/observations/observation-103719/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4698-1.jpg,,,non-identifiable +N1,103693,Sortie #103693,https://biolit.fr/sorties/sortie-103693/,OMS Didier,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4656-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4661-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4669.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4678-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4684-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4687-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4690-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4698-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4708-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4709-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4711-1.jpg,8/21/2025 0:00,16.0000000,18.0000000,42.698,3.033,,Sainte Marie la Mer,103721,Observation #103721,https://biolit.fr/observations/observation-103721/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4708-1.jpg,,,Identifiable +N1,103693,Sortie #103693,https://biolit.fr/sorties/sortie-103693/,OMS Didier,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4656-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4661-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4669.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4678-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4684-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4687-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4690-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4698-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4708-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4709-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4711-1.jpg,8/21/2025 0:00,16.0000000,18.0000000,42.698,3.033,,Sainte Marie la Mer,103723,Observation #103723,https://biolit.fr/observations/observation-103723/,Malva arborea,Lavatère arborescente,,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4711-1.jpg,,,Identifiable +N1,103726,Sortie #103726,https://biolit.fr/sorties/sortie-103726/,OMS Didier,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/31ce9fbe07405f876fdcdb2fc7d3d83a4b8ccc60.jpg,8/21/2025 0:00,16.0000000,18.0000000,42.698,3.033,,Sainte Marie la Mer,103727,Observation #103727,https://biolit.fr/observations/observation-103727/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/31ce9fbe07405f876fdcdb2fc7d3d83a4b8ccc60.jpg,,,Ne sais pas +N1,103955,Sortie #103955,https://biolit.fr/sorties/sortie-103955/,Sorensen Mael,https://biolit.fr/wp-content/uploads/jet-form-builder/6e044604adcc4c5ac9abb057fa36f9e3/2025/08/IMG_4509-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6e044604adcc4c5ac9abb057fa36f9e3/2025/08/IMG_4511-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6e044604adcc4c5ac9abb057fa36f9e3/2025/08/IMG_4512-scaled.jpeg,8/25/2025 0:00,14.0000000,15.0000000,48.6384060000000,-2.06019100000000,Planète Mer (antenne Dinard),Plage de Saint-Enogat,,,,,,,,,, +N1,103980,Sortie #103980,https://biolit.fr/sorties/sortie-103980/,Hirrien Maho,https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1340-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1341-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1342-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1344-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1335-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1345-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1346-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1347-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1348-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1349-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1351-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1352-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1353-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1354-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1355-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1357-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1359-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1360-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1361-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1362-scaled.jpeg,8/25/2025 0:00,14.0000000,16.0000000,48.6398920000000,-2.07229600000000,Planète Mer (antenne Dinard),Plage de Saint Enogat,103985,Observation #103985,https://biolit.fr/observations/observation-103985/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1348-scaled.jpeg,,,Identifiable +N1,104001,Sortie #104001,https://biolit.fr/sorties/sortie-104001/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/08/20250826_104225-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/08/20250826_104531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/08/20250826_110609-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/08/20250826_110846-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/08/20250826_110902-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/08/20250826_112414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/08/20250826_112444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/08/20250826_113405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/08/20250826_113719-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/08/20250826_113806-scaled.jpg,8/26/2025 0:00,10.0000000,11.0000000,49.9328,1.0813,ESTRAN cité de la Mer,Plage de Puys,,,,,,,,,, +N1,104263,Sortie #104263,https://biolit.fr/sorties/sortie-104263/,Allory Pierre-Yves,https://biolit.fr/wp-content/uploads/jet-form-builder/e97d2558d9854da515f2da2dd36e60b9/2025/08/ChatGPT-Image-28-aout-2025-12_46_05.png,08/07/2025,20.000007,21.000007,48.4664280000000,-2.51143600000000,,kskdkk,,,,,,,,,, +N1,104303,Sortie #104303,https://biolit.fr/sorties/sortie-104303/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023269-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023272-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023279-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023281-scaled.jpg,8/30/2025 0:00,17.0:45,17.0:56,48.640247000000,-2.07258700000000,Planète Mer (antenne Dinard),saint enogat,104304,Observation #104304,https://biolit.fr/observations/observation-104304/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023269-scaled.jpg,,TRUE,Identifiable +N1,104303,Sortie #104303,https://biolit.fr/sorties/sortie-104303/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023269-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023272-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023279-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023281-scaled.jpg,8/30/2025 0:00,17.0:45,17.0:56,48.640247000000,-2.07258700000000,Planète Mer (antenne Dinard),saint enogat,104306,Observation #104306,https://biolit.fr/observations/observation-104306/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023281-scaled.jpg,,TRUE,Identifiable +N1,104303,Sortie #104303,https://biolit.fr/sorties/sortie-104303/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023269-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023272-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023279-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023281-scaled.jpg,8/30/2025 0:00,17.0:45,17.0:56,48.640247000000,-2.07258700000000,Planète Mer (antenne Dinard),saint enogat,104308,Observation #104308,https://biolit.fr/observations/observation-104308/,Doris pseudoargus,Ponte de Citron de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023272-scaled.jpg,,TRUE,non-identifiable +N1,104303,Sortie #104303,https://biolit.fr/sorties/sortie-104303/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023269-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023272-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023279-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023281-scaled.jpg,8/30/2025 0:00,17.0:45,17.0:56,48.640247000000,-2.07258700000000,Planète Mer (antenne Dinard),saint enogat,104310,Observation #104310,https://biolit.fr/observations/observation-104310/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023279-scaled.jpg,,,Identifiable +N1,104317,Sortie #104317,https://biolit.fr/sorties/sortie-104317/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/anemone-verte-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/eulalie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/ophiure-fragile.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/tourteau-scaled.jpg,8/30/2025 0:00,15.0:59,17.0000000,48.6417870000000,-2.07344400000000,Planète Mer,Plage de Saint Enogat,104318,Observation #104318,https://biolit.fr/observations/observation-104318/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/anemone-solaire-scaled.jpg,,TRUE,Identifiable +N1,104317,Sortie #104317,https://biolit.fr/sorties/sortie-104317/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/anemone-verte-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/eulalie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/ophiure-fragile.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/tourteau-scaled.jpg,8/30/2025 0:00,15.0:59,17.0000000,48.6417870000000,-2.07344400000000,Planète Mer,Plage de Saint Enogat,104320,Observation #104320,https://biolit.fr/observations/observation-104320/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/anemone-verte-de-mer-scaled.jpg,,TRUE,Identifiable +N1,104317,Sortie #104317,https://biolit.fr/sorties/sortie-104317/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/anemone-verte-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/eulalie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/ophiure-fragile.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/tourteau-scaled.jpg,8/30/2025 0:00,15.0:59,17.0000000,48.6417870000000,-2.07344400000000,Planète Mer,Plage de Saint Enogat,104322,Observation #104322,https://biolit.fr/observations/observation-104322/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/eulalie-scaled.jpg,,TRUE,Identifiable +N1,104317,Sortie #104317,https://biolit.fr/sorties/sortie-104317/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/anemone-verte-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/eulalie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/ophiure-fragile.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/tourteau-scaled.jpg,8/30/2025 0:00,15.0:59,17.0000000,48.6417870000000,-2.07344400000000,Planète Mer,Plage de Saint Enogat,104324,Observation #104324,https://biolit.fr/observations/observation-104324/,Amphipholis squamata,Ophiure écailleuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/ophiure-fragile.jpg,,TRUE,Identifiable +N1,104317,Sortie #104317,https://biolit.fr/sorties/sortie-104317/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/anemone-verte-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/eulalie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/ophiure-fragile.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/tourteau-scaled.jpg,8/30/2025 0:00,15.0:59,17.0000000,48.6417870000000,-2.07344400000000,Planète Mer,Plage de Saint Enogat,104326,Observation #104326,https://biolit.fr/observations/observation-104326/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/tourteau-scaled.jpg,,TRUE,Identifiable +N1,104610,Sortie #104610,https://biolit.fr/sorties/sortie-104610/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023181-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023184-scaled.jpg,8/30/2025 0:00,5.0:55,6.000005,48.6396370000000,-2.07207400000000,Planète Mer,saint enogat,104611,Observation #104611,https://biolit.fr/observations/observation-104611/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023181-scaled.jpg,,TRUE,Identifiable +N1,104610,Sortie #104610,https://biolit.fr/sorties/sortie-104610/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023181-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023184-scaled.jpg,8/30/2025 0:00,5.0:55,6.000005,48.6396370000000,-2.07207400000000,Planète Mer,saint enogat,104613,Observation #104613,https://biolit.fr/observations/observation-104613/,Sepia officinalis,Seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023184-scaled.jpg,,TRUE,Identifiable +N1,104824,Sortie #104824,https://biolit.fr/sorties/sortie-104824/,SORIN ROBIN,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022400-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022400-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022402-scaled.jpg,09/02/2025,18.0:15,18.0000000,47.8619090,-4.2787620,,Foret-Fouesnant,104825,Observation #104825,https://biolit.fr/observations/observation-104825/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022400-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022402-scaled.jpg,,, +N1,104828,Sortie #104828,https://biolit.fr/sorties/sortie-104828/,SORIN ROBIN,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022432-scaled.jpg,09/03/2025,17.0000000,17.0:55,47.8619090,-4.2787620,,Fouesnant,104829,Observation #104829,https://biolit.fr/observations/observation-104829/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022432-scaled.jpg,,TRUE,non-identifiable +N1,104836,Sortie #104836,https://biolit.fr/sorties/sortie-104836/,SORIN ROBIN,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022597-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022589-scaled.jpg,09/04/2025,16.0000000,16.0000000,47.902161,-4.2875780,,Pointe de la Torche,104837,Observation #104837,https://biolit.fr/observations/observation-104837/,Acinetospora crinita,Algues brunes filamenteuses,,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022589-scaled.jpg,,,Identifiable +N1,104836,Sortie #104836,https://biolit.fr/sorties/sortie-104836/,SORIN ROBIN,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022597-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022589-scaled.jpg,09/04/2025,16.0000000,16.0000000,47.902161,-4.2875780,,Pointe de la Torche,104839,Observation #104839,https://biolit.fr/observations/observation-104839/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022597-scaled.jpg,,,non-identifiable +N1,104921,Sortie #104921,https://biolit.fr/sorties/sortie-104921/,SÉVENO Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250905_193658-scaled.jpg,09/05/2025,19.0000000,19.0:45,47.3513510000000,-2.52650900000000,,Piriac sur mer. Lérat,104922,Observation #104922,https://biolit.fr/observations/observation-104922/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250905_193658-scaled.jpg,,,Identifiable +N1,104930,Sortie #104930,https://biolit.fr/sorties/sortie-104930/,SÉVENO Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_131701-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_125934-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_123057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_123003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_122938-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_120527-scaled.jpg,09/06/2025,11.0:15,13.0:42,47.3693690000000,-2.55397600000000,,Piriac / Port Lorec,104931,Observation #104931,https://biolit.fr/observations/observation-104931/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_131701-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_123057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_123003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_122938-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_120527-scaled.jpg,,,Identifiable +N1,104930,Sortie #104930,https://biolit.fr/sorties/sortie-104930/,SÉVENO Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_131701-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_125934-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_123057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_123003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_122938-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_120527-scaled.jpg,09/06/2025,11.0:15,13.0:42,47.3693690000000,-2.55397600000000,,Piriac / Port Lorec,104933,Observation #104933,https://biolit.fr/observations/observation-104933/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_125934-scaled.jpg,,TRUE,non-identifiable +N1,104946,Sortie #104946,https://biolit.fr/sorties/sortie-104946/,SÉVENO Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/aster-maritime-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/aster-maritime-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/aster-maritime-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/aster-maritime-vue-ensemble-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/lavande-de-mer-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/lavande-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-scaled.jpg,09/06/2025,14.0:15,15.0:45,47.3108540000000,-2.50064000000000,,Pen-Bron,104947,Observation #104947,https://biolit.fr/observations/observation-104947/,Tripolium pannonicum,Aster maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/aster-maritime-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/aster-maritime-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/aster-maritime-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/aster-maritime-vue-ensemble-scaled.jpg,,,Identifiable +N1,104946,Sortie #104946,https://biolit.fr/sorties/sortie-104946/,SÉVENO Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/aster-maritime-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/aster-maritime-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/aster-maritime-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/aster-maritime-vue-ensemble-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/lavande-de-mer-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/lavande-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-scaled.jpg,09/06/2025,14.0:15,15.0:45,47.3108540000000,-2.50064000000000,,Pen-Bron,104949,Observation #104949,https://biolit.fr/observations/observation-104949/,Limonium vulgare,Lavande de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/lavande-de-mer-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/lavande-de-mer-scaled.jpg,,,Identifiable +N1,104946,Sortie #104946,https://biolit.fr/sorties/sortie-104946/,SÉVENO Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/aster-maritime-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/aster-maritime-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/aster-maritime-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/aster-maritime-vue-ensemble-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/lavande-de-mer-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/lavande-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-scaled.jpg,09/06/2025,14.0:15,15.0:45,47.3108540000000,-2.50064000000000,,Pen-Bron,104951,Observation #104951,https://biolit.fr/observations/observation-104951/,Halimione portulacoides,Obione faux-pourpier,,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-scaled.jpg,,,Identifiable +N1,104963,Sortie #104963,https://biolit.fr/sorties/sortie-104963/,SÉVENO Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/salicorne-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/salicorne-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/salicorne-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-ligneuse-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-ligneuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-ligneuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-maritime-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-maritime-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/tetragone-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/tetragone-2-scaled.jpg,09/06/2025,14.0:15,15.0:45,47.3109410000000,-2.5004360000000,,Pen-Bron,104964,Observation #104964,https://biolit.fr/observations/observation-104964/,Salicornia spp.,Salicorne,,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/salicorne-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/salicorne-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/salicorne-4-scaled.jpg,,,Identifiable +N1,104963,Sortie #104963,https://biolit.fr/sorties/sortie-104963/,SÉVENO Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/salicorne-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/salicorne-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/salicorne-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-ligneuse-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-ligneuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-ligneuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-maritime-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-maritime-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/tetragone-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/tetragone-2-scaled.jpg,09/06/2025,14.0:15,15.0:45,47.3109410000000,-2.5004360000000,,Pen-Bron,104966,Observation #104966,https://biolit.fr/observations/observation-104966/,Suaeda vera,Soude ligneuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-ligneuse-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-ligneuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-ligneuse-2-scaled.jpg,,,Identifiable +N1,104963,Sortie #104963,https://biolit.fr/sorties/sortie-104963/,SÉVENO Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/salicorne-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/salicorne-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/salicorne-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-ligneuse-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-ligneuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-ligneuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-maritime-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-maritime-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/tetragone-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/tetragone-2-scaled.jpg,09/06/2025,14.0:15,15.0:45,47.3109410000000,-2.5004360000000,,Pen-Bron,104968,Observation #104968,https://biolit.fr/observations/observation-104968/,Suaeda maritima,Soude maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-maritime-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-maritime-2-scaled.jpg,,,Identifiable +N1,104963,Sortie #104963,https://biolit.fr/sorties/sortie-104963/,SÉVENO Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/salicorne-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/salicorne-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/salicorne-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-ligneuse-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-ligneuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-ligneuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-maritime-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-maritime-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/tetragone-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/tetragone-2-scaled.jpg,09/06/2025,14.0:15,15.0:45,47.3109410000000,-2.5004360000000,,Pen-Bron,104970,Observation #104970,https://biolit.fr/observations/observation-104970/,Tetragonia tetragonoides,Épinard de Nouvelle-Zélande,,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/tetragone-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/tetragone-2-scaled.jpg,,,Identifiable +N1,105039,Sortie #105039,https://biolit.fr/sorties/sortie-105039/,druelles jerome,https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019542-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019544-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019513-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019511-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019510-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019507-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019503-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019502-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019498-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019497-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019494-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019493-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019492-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019489-scaled.jpg,09/06/2025,18.0000000,20.0000000,50.4802940,1.581598,,Stella plage,105048,Observation #105048,https://biolit.fr/observations/observation-105048/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019544-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019542-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019513-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019511-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019510-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019507-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019503-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019502-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019498-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019497-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019494-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019493-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019492-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019489-scaled.jpg,,,Ne sais pas +N1,105039,Sortie #105039,https://biolit.fr/sorties/sortie-105039/,druelles jerome,https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019542-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019544-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019513-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019511-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019510-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019507-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019503-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019502-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019498-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019497-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019494-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019493-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019492-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019489-scaled.jpg,09/06/2025,18.0000000,20.0000000,50.4802940,1.581598,,Stella plage,105096,Observation #105096,https://biolit.fr/observations/observation-105096/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019542-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019544-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019513-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019511-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019510-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019507-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019503-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019502-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019497-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019498-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019494-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019493-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019492-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019489-scaled.jpg,,,Ne sais pas +N1,105043,Sortie #105043,https://biolit.fr/sorties/sortie-105043/,druelles jerome,https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019572-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019569-scaled.jpg,09/07/2025,11.0000000,13.0000000,50.4802340,1.5813460,,Stella plage,105044,Observation #105044,https://biolit.fr/observations/observation-105044/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019572-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019569-scaled.jpg,,,Ne sais pas +N1,105043,Sortie #105043,https://biolit.fr/sorties/sortie-105043/,druelles jerome,https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019572-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019569-scaled.jpg,09/07/2025,11.0000000,13.0000000,50.4802340,1.5813460,,Stella plage,105046,Observation #105046,https://biolit.fr/observations/observation-105046/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019571-scaled.jpg,,,Ne sais pas +N1,105054,Sortie #105054,https://biolit.fr/sorties/sortie-105054/,JAMBU Stéphanie,https://biolit.fr/wp-content/uploads/jet-form-builder/cfcedc080d62c99a1d6dce0dc72a87c4/2025/09/IMG_1936-1-scaled.jpeg,09/07/2025,16.0000000,16.0000000,46.7727460000000,-2.05169700000000,,"Plages des oiseaux, saint Jean de monts, Vendée",105055,Observation #105055,https://biolit.fr/observations/observation-105055/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/cfcedc080d62c99a1d6dce0dc72a87c4/2025/09/IMG_1936-1-scaled.jpeg,,TRUE,Ne sais pas +N1,105058,Sortie #105058,https://biolit.fr/sorties/sortie-105058/,JAMBU Stéphanie,https://biolit.fr/wp-content/uploads/jet-form-builder/cfcedc080d62c99a1d6dce0dc72a87c4/2025/09/IMG_1934-scaled.jpeg,09/07/2025,16.0000000,16.0000000,46.7815430000000,-2.06929200000000,,"Plage des oiseaux, saint Jean de monts, Vendée",105059,Observation #105059,https://biolit.fr/observations/observation-105059/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cfcedc080d62c99a1d6dce0dc72a87c4/2025/09/IMG_1934-scaled.jpeg,,, +N1,105070,Sortie #105070,https://biolit.fr/sorties/sortie-105070/,JAMBU Stéphanie,https://biolit.fr/wp-content/uploads/jet-form-builder/cfcedc080d62c99a1d6dce0dc72a87c4/2025/09/IMG_1898-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cfcedc080d62c99a1d6dce0dc72a87c4/2025/09/IMG_1899-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cfcedc080d62c99a1d6dce0dc72a87c4/2025/09/IMG_1900-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cfcedc080d62c99a1d6dce0dc72a87c4/2025/09/IMG_1901-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cfcedc080d62c99a1d6dce0dc72a87c4/2025/09/IMG_1902-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cfcedc080d62c99a1d6dce0dc72a87c4/2025/09/IMG_1903-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cfcedc080d62c99a1d6dce0dc72a87c4/2025/09/IMG_1904-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cfcedc080d62c99a1d6dce0dc72a87c4/2025/09/IMG_1905-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cfcedc080d62c99a1d6dce0dc72a87c4/2025/09/IMG_1906-scaled.jpeg,09/06/2025,15.0000000,15.0000000,47.266764000000,-2.45411400000000,,"Plage de govelle, batz sur mer, Loire-Atlantique",105071,Observation #105071,https://biolit.fr/observations/observation-105071/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cfcedc080d62c99a1d6dce0dc72a87c4/2025/09/IMG_1898-scaled.jpeg,,TRUE,non-identifiable +N1,105118,Sortie #105118,https://biolit.fr/sorties/sortie-105118/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,6/26/2025 0:00,15.0000000,16.0000000,48.7038640000000,-1.84446400000000,Centre Virginie Hériot,Plage Potelet,105119,Observation #105119,https://biolit.fr/observations/observation-105119/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg,,,Identifiable +N1,105118,Sortie #105118,https://biolit.fr/sorties/sortie-105118/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,6/26/2025 0:00,15.0000000,16.0000000,48.7038640000000,-1.84446400000000,Centre Virginie Hériot,Plage Potelet,105121,Observation #105121,https://biolit.fr/observations/observation-105121/,Dendrodoa grossularia,Ascidie groseille,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg,,,Identifiable +N1,105118,Sortie #105118,https://biolit.fr/sorties/sortie-105118/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,6/26/2025 0:00,15.0000000,16.0000000,48.7038640000000,-1.84446400000000,Centre Virginie Hériot,Plage Potelet,105123,Observation #105123,https://biolit.fr/observations/observation-105123/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg,,TRUE,Identifiable +N1,105118,Sortie #105118,https://biolit.fr/sorties/sortie-105118/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,6/26/2025 0:00,15.0000000,16.0000000,48.7038640000000,-1.84446400000000,Centre Virginie Hériot,Plage Potelet,105125,Observation #105125,https://biolit.fr/observations/observation-105125/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg,,,Identifiable +N1,105118,Sortie #105118,https://biolit.fr/sorties/sortie-105118/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,6/26/2025 0:00,15.0000000,16.0000000,48.7038640000000,-1.84446400000000,Centre Virginie Hériot,Plage Potelet,105127,Observation #105127,https://biolit.fr/observations/observation-105127/,Botryllus sp. 1,Botrylle,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg,,,Identifiable +N1,105118,Sortie #105118,https://biolit.fr/sorties/sortie-105118/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,6/26/2025 0:00,15.0000000,16.0000000,48.7038640000000,-1.84446400000000,Centre Virginie Hériot,Plage Potelet,105129,Observation #105129,https://biolit.fr/observations/observation-105129/,Botrylloides diegensis,Botrylle de San Diego,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg,,TRUE,Identifiable +N1,105118,Sortie #105118,https://biolit.fr/sorties/sortie-105118/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,6/26/2025 0:00,15.0000000,16.0000000,48.7038640000000,-1.84446400000000,Centre Virginie Hériot,Plage Potelet,105131,Observation #105131,https://biolit.fr/observations/observation-105131/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg,,,Identifiable +N1,105118,Sortie #105118,https://biolit.fr/sorties/sortie-105118/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,6/26/2025 0:00,15.0000000,16.0000000,48.7038640000000,-1.84446400000000,Centre Virginie Hériot,Plage Potelet,105133,Observation #105133,https://biolit.fr/observations/observation-105133/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg,,TRUE,Identifiable +N1,105118,Sortie #105118,https://biolit.fr/sorties/sortie-105118/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,6/26/2025 0:00,15.0000000,16.0000000,48.7038640000000,-1.84446400000000,Centre Virginie Hériot,Plage Potelet,105135,Observation #105135,https://biolit.fr/observations/observation-105135/,Ciona intestinalis,Cione intestinale,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg,,,Identifiable +N1,105118,Sortie #105118,https://biolit.fr/sorties/sortie-105118/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,6/26/2025 0:00,15.0000000,16.0000000,48.7038640000000,-1.84446400000000,Centre Virginie Hériot,Plage Potelet,105137,Observation #105137,https://biolit.fr/observations/observation-105137/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg,,,Identifiable +N1,105118,Sortie #105118,https://biolit.fr/sorties/sortie-105118/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,6/26/2025 0:00,15.0000000,16.0000000,48.7038640000000,-1.84446400000000,Centre Virginie Hériot,Plage Potelet,105139,Observation #105139,https://biolit.fr/observations/observation-105139/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg,,TRUE,Identifiable +N1,105118,Sortie #105118,https://biolit.fr/sorties/sortie-105118/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,6/26/2025 0:00,15.0000000,16.0000000,48.7038640000000,-1.84446400000000,Centre Virginie Hériot,Plage Potelet,105141,Observation #105141,https://biolit.fr/observations/observation-105141/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg,,,Identifiable +N1,105118,Sortie #105118,https://biolit.fr/sorties/sortie-105118/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,6/26/2025 0:00,15.0000000,16.0000000,48.7038640000000,-1.84446400000000,Centre Virginie Hériot,Plage Potelet,105143,Observation #105143,https://biolit.fr/observations/observation-105143/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg,,,Identifiable +N1,105118,Sortie #105118,https://biolit.fr/sorties/sortie-105118/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,6/26/2025 0:00,15.0000000,16.0000000,48.7038640000000,-1.84446400000000,Centre Virginie Hériot,Plage Potelet,105145,Observation #105145,https://biolit.fr/observations/observation-105145/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg,,,Identifiable +N1,105118,Sortie #105118,https://biolit.fr/sorties/sortie-105118/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,6/26/2025 0:00,15.0000000,16.0000000,48.7038640000000,-1.84446400000000,Centre Virginie Hériot,Plage Potelet,105147,Observation #105147,https://biolit.fr/observations/observation-105147/,Macropodia rostrata,Macropode rostré,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,,,Identifiable +N1,105118,Sortie #105118,https://biolit.fr/sorties/sortie-105118/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,6/26/2025 0:00,15.0000000,16.0000000,48.7038640000000,-1.84446400000000,Centre Virginie Hériot,Plage Potelet,105149,Observation #105149,https://biolit.fr/observations/observation-105149/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg,,,Ne sais pas +N1,105158,Sortie #105158,https://biolit.fr/sorties/sortie-105158/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_083004045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_083220787.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_085003466-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_085635761-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_090459866.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_090807440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_091346724.MP_-scaled.jpg,09/08/2025,10.0000000,12.0000000,43.5515590000000,4.00569100000000,LABELBLEU,Plage du Petit travers,105159,Observation #105159,https://biolit.fr/observations/observation-105159/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_083004045-scaled.jpg,,,Identifiable +N1,105158,Sortie #105158,https://biolit.fr/sorties/sortie-105158/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_083004045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_083220787.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_085003466-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_085635761-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_090459866.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_090807440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_091346724.MP_-scaled.jpg,09/08/2025,10.0000000,12.0000000,43.5515590000000,4.00569100000000,LABELBLEU,Plage du Petit travers,105161,Observation #105161,https://biolit.fr/observations/observation-105161/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_083220787.MP_-scaled.jpg,,,Identifiable +N1,105158,Sortie #105158,https://biolit.fr/sorties/sortie-105158/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_083004045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_083220787.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_085003466-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_085635761-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_090459866.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_090807440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_091346724.MP_-scaled.jpg,09/08/2025,10.0000000,12.0000000,43.5515590000000,4.00569100000000,LABELBLEU,Plage du Petit travers,105163,Observation #105163,https://biolit.fr/observations/observation-105163/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_085003466-scaled.jpg,,,Identifiable +N1,105158,Sortie #105158,https://biolit.fr/sorties/sortie-105158/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_083004045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_083220787.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_085003466-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_085635761-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_090459866.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_090807440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_091346724.MP_-scaled.jpg,09/08/2025,10.0000000,12.0000000,43.5515590000000,4.00569100000000,LABELBLEU,Plage du Petit travers,105165,Observation #105165,https://biolit.fr/observations/observation-105165/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_085635761-scaled.jpg,,TRUE,Identifiable +N1,105158,Sortie #105158,https://biolit.fr/sorties/sortie-105158/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_083004045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_083220787.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_085003466-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_085635761-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_090459866.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_090807440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_091346724.MP_-scaled.jpg,09/08/2025,10.0000000,12.0000000,43.5515590000000,4.00569100000000,LABELBLEU,Plage du Petit travers,105167,Observation #105167,https://biolit.fr/observations/observation-105167/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_090459866.MP_-scaled.jpg,,,Ne sais pas +N1,105158,Sortie #105158,https://biolit.fr/sorties/sortie-105158/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_083004045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_083220787.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_085003466-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_085635761-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_090459866.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_090807440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_091346724.MP_-scaled.jpg,09/08/2025,10.0000000,12.0000000,43.5515590000000,4.00569100000000,LABELBLEU,Plage du Petit travers,105169,Observation #105169,https://biolit.fr/observations/observation-105169/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_090807440-scaled.jpg,,,non-identifiable +N1,105158,Sortie #105158,https://biolit.fr/sorties/sortie-105158/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_083004045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_083220787.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_085003466-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_085635761-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_090459866.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_090807440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_091346724.MP_-scaled.jpg,09/08/2025,10.0000000,12.0000000,43.5515590000000,4.00569100000000,LABELBLEU,Plage du Petit travers,105171,Observation #105171,https://biolit.fr/observations/observation-105171/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_091346724.MP_-scaled.jpg,,TRUE,Identifiable +N1,105180,Sortie #105180,https://biolit.fr/sorties/sortie-105180/,SORIN ROBIN,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022664-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022665-scaled.jpg,09/05/2025,10.0:57,11.000005,48.2081980,-2.068796,,Douarnenez,105181,Observation #105181,https://biolit.fr/observations/observation-105181/,Acinetospora crinita,Algues brunes filamenteuses,,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022664-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022665-scaled.jpg,,,Identifiable +N1,105184,Sortie #105184,https://biolit.fr/sorties/sortie-105184/,SORIN ROBIN,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022670-scaled.jpg,09/05/2025,11.0:39,11.0000000,48.1869290,-1.9877700,,Douarnenez,105185,Observation #105185,https://biolit.fr/observations/observation-105185/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022670-scaled.jpg,,,Identifiable +N1,105188,Sortie #105188,https://biolit.fr/sorties/sortie-105188/,SORIN ROBIN,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022666-scaled.jpg,09/05/2025,12.0000000,12.000001,48.1729950,-1.911236,,Kelaz,105189,Observation #105189,https://biolit.fr/observations/observation-105189/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022666-scaled.jpg,,,Identifiable +N1,105193,Sortie #105193,https://biolit.fr/sorties/sortie-105193/,SORIN ROBIN,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022679-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022680-scaled.jpg,09/07/2025,14.0:15,14.0:25,48.1776750,-1.9181540,,Crozon,105194,Observation #105194,https://biolit.fr/observations/observation-105194/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022679-scaled.jpg,,,Identifiable +N1,105193,Sortie #105193,https://biolit.fr/sorties/sortie-105193/,SORIN ROBIN,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022679-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022680-scaled.jpg,09/07/2025,14.0:15,14.0:25,48.1776750,-1.9181540,,Crozon,105196,Observation #105196,https://biolit.fr/observations/observation-105196/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022680-scaled.jpg,,,Identifiable +N1,105201,Sortie #105201,https://biolit.fr/sorties/sortie-105201/,SORIN ROBIN,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022838-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022839-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022840-scaled.jpg,09/08/2025,11.0000000,11.0:52,48.1765130,-1.9206740,,Plougonvelin,,,,,,,,,, +N1,105205,Sortie #105205,https://biolit.fr/sorties/sortie-105205/,SORIN ROBIN,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022838-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022839-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022840-1-scaled.jpg,09/08/2025,11.0:53,11.0:56,48.1670680,-1.874811,,Plougonvelin,105206,Observation #105206,https://biolit.fr/observations/observation-105206/,Balanus crenatus,Balane crénelée,,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022838-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022839-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022840-1-scaled.jpg,,,Identifiable +N1,105224,Sortie #105224,https://biolit.fr/sorties/sortie-105224/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8120003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8120007-scaled.jpg,08/12/2025,12.0000000,12.0:45,48.2357020000000,-4.49053300000000,,Plage du Porzic,105225,Observation #105225,https://biolit.fr/observations/observation-105225/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8120003-scaled.jpg,,,Identifiable +N1,105224,Sortie #105224,https://biolit.fr/sorties/sortie-105224/,"""Goascoz Marion""",https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8120003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8120007-scaled.jpg,08/12/2025,12.0000000,12.0:45,48.2357020000000,-4.49053300000000,,Plage du Porzic,105227,Observation #105227,https://biolit.fr/observations/observation-105227/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8120007-scaled.jpg,,,Identifiable +N1,105244,Sortie #105244,https://biolit.fr/sorties/sortie-105244/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140107-scaled.jpg,8/14/2025 0:00,15.0:45,17.0000000,48.1969270000000,-4.55147300000000,,Plage de la Palue,105245,Observation #105245,https://biolit.fr/observations/observation-105245/,Idotea emarginata,Idotée échancrée,,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140037-scaled.jpg,,,Identifiable +N1,105244,Sortie #105244,https://biolit.fr/sorties/sortie-105244/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140107-scaled.jpg,8/14/2025 0:00,15.0:45,17.0000000,48.1969270000000,-4.55147300000000,,Plage de la Palue,105247,Observation #105247,https://biolit.fr/observations/observation-105247/,Idotea balthica,Idotée de la Baltique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140063-scaled.jpg,,,Identifiable +N1,105244,Sortie #105244,https://biolit.fr/sorties/sortie-105244/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140107-scaled.jpg,8/14/2025 0:00,15.0:45,17.0000000,48.1969270000000,-4.55147300000000,,Plage de la Palue,105249,Observation #105249,https://biolit.fr/observations/observation-105249/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140041-scaled.jpg,,,Ne sais pas +N1,105244,Sortie #105244,https://biolit.fr/sorties/sortie-105244/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140107-scaled.jpg,8/14/2025 0:00,15.0:45,17.0000000,48.1969270000000,-4.55147300000000,,Plage de la Palue,105251,Observation #105251,https://biolit.fr/observations/observation-105251/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140051-scaled.jpg,,,Ne sais pas +N1,105244,Sortie #105244,https://biolit.fr/sorties/sortie-105244/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140107-scaled.jpg,8/14/2025 0:00,15.0:45,17.0000000,48.1969270000000,-4.55147300000000,,Plage de la Palue,105253,Observation #105253,https://biolit.fr/observations/observation-105253/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140066-scaled.jpg,,,Ne sais pas +N1,105244,Sortie #105244,https://biolit.fr/sorties/sortie-105244/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140107-scaled.jpg,8/14/2025 0:00,15.0:45,17.0000000,48.1969270000000,-4.55147300000000,,Plage de la Palue,105255,Observation #105255,https://biolit.fr/observations/observation-105255/,Patella pellucida,Helcion,,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140081-scaled.jpg,,,Identifiable +N1,105244,Sortie #105244,https://biolit.fr/sorties/sortie-105244/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140107-scaled.jpg,8/14/2025 0:00,15.0:45,17.0000000,48.1969270000000,-4.55147300000000,,Plage de la Palue,105257,Observation #105257,https://biolit.fr/observations/observation-105257/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140082-scaled.jpg,,,Ne sais pas +N1,105244,Sortie #105244,https://biolit.fr/sorties/sortie-105244/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140107-scaled.jpg,8/14/2025 0:00,15.0:45,17.0000000,48.1969270000000,-4.55147300000000,,Plage de la Palue,105259,Observation #105259,https://biolit.fr/observations/observation-105259/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140083-scaled.jpg,,,Identifiable +N1,105244,Sortie #105244,https://biolit.fr/sorties/sortie-105244/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140107-scaled.jpg,8/14/2025 0:00,15.0:45,17.0000000,48.1969270000000,-4.55147300000000,,Plage de la Palue,105261,Observation #105261,https://biolit.fr/observations/observation-105261/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140087-scaled.jpg,,,Identifiable +N1,105244,Sortie #105244,https://biolit.fr/sorties/sortie-105244/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140107-scaled.jpg,8/14/2025 0:00,15.0:45,17.0000000,48.1969270000000,-4.55147300000000,,Plage de la Palue,105263,Observation #105263,https://biolit.fr/observations/observation-105263/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140092-scaled.jpg,,,Ne sais pas +N1,105244,Sortie #105244,https://biolit.fr/sorties/sortie-105244/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140107-scaled.jpg,8/14/2025 0:00,15.0:45,17.0000000,48.1969270000000,-4.55147300000000,,Plage de la Palue,105265,Observation #105265,https://biolit.fr/observations/observation-105265/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140105-scaled.jpg,,,Ne sais pas +N1,105244,Sortie #105244,https://biolit.fr/sorties/sortie-105244/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140107-scaled.jpg,8/14/2025 0:00,15.0:45,17.0000000,48.1969270000000,-4.55147300000000,,Plage de la Palue,105267,Observation #105267,https://biolit.fr/observations/observation-105267/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140106-scaled.jpg,,,Identifiable +N1,105244,Sortie #105244,https://biolit.fr/sorties/sortie-105244/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140107-scaled.jpg,8/14/2025 0:00,15.0:45,17.0000000,48.1969270000000,-4.55147300000000,,Plage de la Palue,105269,Observation #105269,https://biolit.fr/observations/observation-105269/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140107-scaled.jpg,,,Identifiable +N1,105244,Sortie #105244,https://biolit.fr/sorties/sortie-105244/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140107-scaled.jpg,8/14/2025 0:00,15.0:45,17.0000000,48.1969270000000,-4.55147300000000,,Plage de la Palue,105271,Observation #105271,https://biolit.fr/observations/observation-105271/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140105-scaled.jpg,,,Ne sais pas +N1,105377,Sortie #105377,https://biolit.fr/sorties/sortie-105377/,WAMBERGUE QUENTIN,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1192-3-scaled.jpg,09/12/2025,0.0:22,12.0000000,49.3138840000000,-0.0416710000000000,,Plage des vaches noires - Villers sur Mer ( Calvados ),,,,,,,,,, +N1,105380,Sortie #105380,https://biolit.fr/sorties/sortie-105380/,WAMBERGUE QUENTIN,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1204-1-scaled.jpg,09/12/2025,0.0:22,12.0000000,49.3149440000000,-0.0423360000000000,,Plage des vaches noires - Villers sur Mer ( Calvados ),,,,,,,,,, +N1,105382,Sortie #105382,https://biolit.fr/sorties/sortie-105382/,WAMBERGUE QUENTIN,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1214-scaled.jpg,09/12/2025,0.0:22,12.0000000,49.3141640000000,-0.0412420000000000,,Plage des vaches noires - Villers sur Mer ( Calvados ),105383,Observation #105383,https://biolit.fr/observations/observation-105383/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1214-scaled.jpg,,,Identifiable +N1,105386,Sortie #105386,https://biolit.fr/sorties/sortie-105386/,WAMBERGUE QUENTIN,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1211-1-scaled.jpg,09/12/2025,0.0:22,12.0000000,49.3166500000000,-0.0259210000000000,,Plage des vaches noires - Villers sur Mer ( Calvados ),,,,,,,,,, +N1,105388,Sortie #105388,https://biolit.fr/sorties/sortie-105388/,WAMBERGUE QUENTIN,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1206-scaled.jpg,09/12/2025,0.0:22,12.0000000,49.3135490000000,-0.042272000000000,,Plage des vaches noires - Villers sur Mer ( Calvados ),,,,,,,,,, +N1,105390,Sortie #105390,https://biolit.fr/sorties/sortie-105390/,WAMBERGUE QUENTIN,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1216-scaled.jpg,09/12/2025,0.0:22,12.0000000,49.3139960000000,-0.0411560000000000,,Plage des vaches noires - Villers sur Mer ( Calvados ),,,,,,,,,, +N1,105392,Sortie #105392,https://biolit.fr/sorties/sortie-105392/,WAMBERGUE QUENTIN,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1209-scaled.jpg,09/12/2025,0.0:22,12.0000000,49.313605000000,-0.0416710000000000,,Plage des vaches noires - Villers sur Mer,,,,,,,,,, +N1,105394,Sortie #105394,https://biolit.fr/sorties/sortie-105394/,WAMBERGUE QUENTIN,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1212-scaled.jpg,09/12/2025,0.0:22,12.0000000,49.3139400000000,-0.0416710000000000,,Plage des vaches noires - Villers sur Mer ( Calvados ),,,,,,,,,, +N1,105396,Sortie #105396,https://biolit.fr/sorties/sortie-105396/,WAMBERGUE QUENTIN,FALSE,09/12/2025,0.0:22,12.0000000,49.3133250000000,-0.0415850000000000,,Plage des vaches noires - Villers sur Mer,,,,,,,,,, +N1,105400,Sortie #105400,https://biolit.fr/sorties/sortie-105400/,WAMBERGUE QUENTIN,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1219-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1219-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1220-scaled.jpg,09/12/2025,0.0:22,12.0000000,49.3139400000000,-0.0417570000000000,,Plage des vaches noires - Villers sur Mer ( Calvados ),105401,Observation #105401,https://biolit.fr/observations/observation-105401/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1219-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1220-scaled.jpg,,, +N1,105400,Sortie #105400,https://biolit.fr/sorties/sortie-105400/,WAMBERGUE QUENTIN,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1219-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1219-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1220-scaled.jpg,09/12/2025,0.0:22,12.0000000,49.3139400000000,-0.0417570000000000,,Plage des vaches noires - Villers sur Mer ( Calvados ),105403,Observation #105403,https://biolit.fr/observations/observation-105403/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1219-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1220-scaled.jpg,,,Ne sais pas +N1,105400,Sortie #105400,https://biolit.fr/sorties/sortie-105400/,WAMBERGUE QUENTIN,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1219-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1219-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1220-scaled.jpg,09/12/2025,0.0:22,12.0000000,49.3139400000000,-0.0417570000000000,,Plage des vaches noires - Villers sur Mer ( Calvados ),105405,Observation #105405,https://biolit.fr/observations/observation-105405/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1220-scaled.jpg,,, +N1,105408,Sortie #105408,https://biolit.fr/sorties/sortie-105408/,WAMBERGUE QUENTIN,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1222-scaled.jpg,09/12/2025,0.0:22,12.0000000,49.3134930000000,-0.0416710000000000,,Plage des vaches noires - Villers sur Mer,,,,,,,,,, +N1,105410,Sortie #105410,https://biolit.fr/sorties/sortie-105410/,WAMBERGUE QUENTIN,FALSE,09/12/2025,0.0:22,12.0000000,49.3125970000000,-0.0446750000000000,,Plage des vaches noires - Villers sur Mer ( Calvados ),,,,,,,,,, +N1,105412,Sortie #105412,https://biolit.fr/sorties/sortie-105412/,WAMBERGUE QUENTIN,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1199-scaled.jpg,09/12/2025,0.0:22,12.0000000,49.3135490000000,-0.0421000000000000,,Plage des vaches noires - Villers sur Mer,,,,,,,,,, +N1,105414,Sortie #105414,https://biolit.fr/sorties/sortie-105414/,WAMBERGUE QUENTIN,FALSE,09/12/2025,0.0:22,12.0000000,49.313605000000,-0.0414130000000000,,Plage des vaches noires - Villers sur Mer,,,,,,,,,, +N1,105462,Sortie #105462,https://biolit.fr/sorties/sortie-105462/,Peschard LAETITIA,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a5c0fe7fa5cc3ca4f79a60b8c0636da1/2025/09/1000055123.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a5c0fe7fa5cc3ca4f79a60b8c0636da1/2025/09/1000055122.jpg,9/17/2025 0:00,19.0:55,19.0:55,47.4774660,-3.1093390,,Quiberon grande plage,,,,,,,,,, +N1,105463,Sortie #105463,https://biolit.fr/sorties/sortie-105463/,Peschard LAETITIA,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a5c0fe7fa5cc3ca4f79a60b8c0636da1/2025/09/1000055122.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a5c0fe7fa5cc3ca4f79a60b8c0636da1/2025/09/1000055123.jpg,9/17/2025 0:00,19.0:55,19.0:55,47.4709250000000,-3.10183700000000,,Quiberon grande plage,,,,,,,,,, +N1,105480,Sortie #105480,https://biolit.fr/sorties/sortie-105480/,Peschard LAETITIA,FALSE,9/18/2025 0:00,16.0:53,16.0:55,47.47801,-3.108675,Escale Bretagne,Quiberon grande plage,,,,,,,,,, +N1,105483,Sortie #105483,https://biolit.fr/sorties/sortie-105483/,paugam marc,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/94907bd46319e1a24e980928655351fa/2025/09/IMG-20250919-WA0001.jpg,9/19/2025 0:00,16.0000000,16.0000000,48.3544290000000,-4.67474400000000,,portez loc maria plouzane,105484,Observation #105484,https://biolit.fr/observations/observation-105484/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/94907bd46319e1a24e980928655351fa/2025/09/IMG-20250919-WA0001.jpg,,TRUE,Identifiable +N1,105490,Sortie #105490,https://biolit.fr/sorties/sortie-105490/,Chevanne Jean,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a4cc3bc693afb4f595bdd01898282522/2025/09/20250920_101431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a4cc3bc693afb4f595bdd01898282522/2025/09/20250920_100049-scaled.jpg,9/20/2025 0:00,11.000008,12.000008,43.2842570000000,5.31574800000000,Planète Mer,Plage saint Estève,105491,Observation #105491,https://biolit.fr/observations/observation-105491/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a4cc3bc693afb4f595bdd01898282522/2025/09/20250920_101431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a4cc3bc693afb4f595bdd01898282522/2025/09/20250920_100049-scaled.jpg,,,Ne sais pas +N1,105513,Sortie #105513,https://biolit.fr/sorties/sortie-105513/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-6-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9401380000000,-4.40507000000000,,Penhors,105514,Observation #105514,https://biolit.fr/observations/observation-105514/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1b-scaled.jpg,,TRUE,Identifiable +N1,105513,Sortie #105513,https://biolit.fr/sorties/sortie-105513/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-6-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9401380000000,-4.40507000000000,,Penhors,105516,Observation #105516,https://biolit.fr/observations/observation-105516/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/asterie-bossue-scaled.jpg,,TRUE,Identifiable +N1,105513,Sortie #105513,https://biolit.fr/sorties/sortie-105513/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-6-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9401380000000,-4.40507000000000,,Penhors,105518,Observation #105518,https://biolit.fr/observations/observation-105518/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1b-scaled.jpg,,TRUE,Identifiable +N1,105513,Sortie #105513,https://biolit.fr/sorties/sortie-105513/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-6-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9401380000000,-4.40507000000000,,Penhors,105520,Observation #105520,https://biolit.fr/observations/observation-105520/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1b-scaled.jpg,,TRUE,Identifiable +N1,105513,Sortie #105513,https://biolit.fr/sorties/sortie-105513/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-6-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9401380000000,-4.40507000000000,,Penhors,105522,Observation #105522,https://biolit.fr/observations/observation-105522/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-vert-scaled.jpg,,,Identifiable +N1,105513,Sortie #105513,https://biolit.fr/sorties/sortie-105513/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-6-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9401380000000,-4.40507000000000,,Penhors,105524,Observation #105524,https://biolit.fr/observations/observation-105524/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1b-scaled.jpg,,,Identifiable +N1,105513,Sortie #105513,https://biolit.fr/sorties/sortie-105513/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-6-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9401380000000,-4.40507000000000,,Penhors,105526,Observation #105526,https://biolit.fr/observations/observation-105526/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1b-scaled.jpg,,,Identifiable +N1,105513,Sortie #105513,https://biolit.fr/sorties/sortie-105513/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-6-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9401380000000,-4.40507000000000,,Penhors,105528,Observation #105528,https://biolit.fr/observations/observation-105528/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-commune-scaled.jpg,,,Identifiable +N1,105513,Sortie #105513,https://biolit.fr/sorties/sortie-105513/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-6-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9401380000000,-4.40507000000000,,Penhors,105530,Observation #105530,https://biolit.fr/observations/observation-105530/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1b-scaled.jpg,,,Identifiable +N1,105513,Sortie #105513,https://biolit.fr/sorties/sortie-105513/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-6-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9401380000000,-4.40507000000000,,Penhors,105532,Observation #105532,https://biolit.fr/observations/observation-105532/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-2-scaled.jpg,,TRUE,Identifiable +N1,105513,Sortie #105513,https://biolit.fr/sorties/sortie-105513/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-6-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9401380000000,-4.40507000000000,,Penhors,105534,Observation #105534,https://biolit.fr/observations/observation-105534/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-3-scaled.jpg,,,Identifiable +N1,105513,Sortie #105513,https://biolit.fr/sorties/sortie-105513/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-6-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9401380000000,-4.40507000000000,,Penhors,105536,Observation #105536,https://biolit.fr/observations/observation-105536/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-4-scaled.jpg,,,Identifiable +N1,105513,Sortie #105513,https://biolit.fr/sorties/sortie-105513/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-6-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9401380000000,-4.40507000000000,,Penhors,105538,Observation #105538,https://biolit.fr/observations/observation-105538/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-5-scaled.jpg,,,Identifiable +N1,105513,Sortie #105513,https://biolit.fr/sorties/sortie-105513/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-6-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9401380000000,-4.40507000000000,,Penhors,105540,Observation #105540,https://biolit.fr/observations/observation-105540/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-6-scaled.jpg,,,Identifiable +N1,105562,Sortie #105562,https://biolit.fr/sorties/sortie-105562/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etrille-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etrille-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/fraise-de-mer-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/fraise-de-mer-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/gobie-a-grosse-tete-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/gobie-a-grosse-tete-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1d-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1e-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1f-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1g-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1h-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1i-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1j-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1k-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/mordocet-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400160000000,-4.40536200000000,,Penhors,105563,Observation #105563,https://biolit.fr/observations/observation-105563/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-7-scaled.jpg,,,Identifiable +N1,105562,Sortie #105562,https://biolit.fr/sorties/sortie-105562/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etrille-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etrille-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/fraise-de-mer-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/fraise-de-mer-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/gobie-a-grosse-tete-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/gobie-a-grosse-tete-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1d-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1e-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1f-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1g-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1h-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1i-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1j-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1k-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/mordocet-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400160000000,-4.40536200000000,,Penhors,105565,Observation #105565,https://biolit.fr/observations/observation-105565/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-8-scaled.jpg,,,Identifiable +N1,105562,Sortie #105562,https://biolit.fr/sorties/sortie-105562/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etrille-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etrille-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/fraise-de-mer-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/fraise-de-mer-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/gobie-a-grosse-tete-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/gobie-a-grosse-tete-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1d-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1e-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1f-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1g-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1h-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1i-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1j-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1k-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/mordocet-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400160000000,-4.40536200000000,,Penhors,105567,Observation #105567,https://biolit.fr/observations/observation-105567/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etrille-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etrille-1b-scaled.jpg,,,Identifiable +N1,105562,Sortie #105562,https://biolit.fr/sorties/sortie-105562/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etrille-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etrille-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/fraise-de-mer-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/fraise-de-mer-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/gobie-a-grosse-tete-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/gobie-a-grosse-tete-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1d-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1e-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1f-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1g-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1h-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1i-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1j-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1k-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/mordocet-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400160000000,-4.40536200000000,,Penhors,105569,Observation #105569,https://biolit.fr/observations/observation-105569/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/fraise-de-mer-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/fraise-de-mer-1a-scaled.jpg,,TRUE,Identifiable +N1,105562,Sortie #105562,https://biolit.fr/sorties/sortie-105562/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etrille-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etrille-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/fraise-de-mer-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/fraise-de-mer-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/gobie-a-grosse-tete-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/gobie-a-grosse-tete-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1d-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1e-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1f-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1g-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1h-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1i-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1j-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1k-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/mordocet-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400160000000,-4.40536200000000,,Penhors,105571,Observation #105571,https://biolit.fr/observations/observation-105571/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/gobie-a-grosse-tete-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/gobie-a-grosse-tete-1b-scaled.jpg,,,Identifiable +N1,105562,Sortie #105562,https://biolit.fr/sorties/sortie-105562/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etrille-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etrille-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/fraise-de-mer-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/fraise-de-mer-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/gobie-a-grosse-tete-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/gobie-a-grosse-tete-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1d-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1e-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1f-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1g-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1h-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1i-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1j-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1k-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/mordocet-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400160000000,-4.40536200000000,,Penhors,105573,Observation #105573,https://biolit.fr/observations/observation-105573/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1k-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1h-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1f-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1e-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1g-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1i-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1j-scaled.jpg,,,Identifiable +N1,105562,Sortie #105562,https://biolit.fr/sorties/sortie-105562/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etrille-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etrille-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/fraise-de-mer-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/fraise-de-mer-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/gobie-a-grosse-tete-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/gobie-a-grosse-tete-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1d-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1e-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1f-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1g-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1h-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1i-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1j-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1k-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/mordocet-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400160000000,-4.40536200000000,,Penhors,105575,Observation #105575,https://biolit.fr/observations/observation-105575/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/mordocet-scaled.jpg,,,Identifiable +N1,105597,Sortie #105597,https://biolit.fr/sorties/sortie-105597/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-7-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400300000000,-4.40487700000000,,Penhors,105598,Observation #105598,https://biolit.fr/observations/observation-105598/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1c-scaled.jpg,,, +N1,105597,Sortie #105597,https://biolit.fr/sorties/sortie-105597/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-7-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400300000000,-4.40487700000000,,Penhors,105600,Observation #105600,https://biolit.fr/observations/observation-105600/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-2-scaled.jpg,,,Ne sais pas +N1,105597,Sortie #105597,https://biolit.fr/sorties/sortie-105597/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-7-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400300000000,-4.40487700000000,,Penhors,105602,Observation #105602,https://biolit.fr/observations/observation-105602/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-3-scaled.jpg,,,Ne sais pas +N1,105597,Sortie #105597,https://biolit.fr/sorties/sortie-105597/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-7-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400300000000,-4.40487700000000,,Penhors,105604,Observation #105604,https://biolit.fr/observations/observation-105604/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-5-scaled.jpg,,,Ne sais pas +N1,105597,Sortie #105597,https://biolit.fr/sorties/sortie-105597/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-7-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400300000000,-4.40487700000000,,Penhors,105606,Observation #105606,https://biolit.fr/observations/observation-105606/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1a-scaled.jpg,,,Identifiable +N1,105597,Sortie #105597,https://biolit.fr/sorties/sortie-105597/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-7-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400300000000,-4.40487700000000,,Penhors,105608,Observation #105608,https://biolit.fr/observations/observation-105608/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1c-scaled.jpg,,,Identifiable +N1,105597,Sortie #105597,https://biolit.fr/sorties/sortie-105597/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-7-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400300000000,-4.40487700000000,,Penhors,105610,Observation #105610,https://biolit.fr/observations/observation-105610/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2-scaled.jpg,,,Identifiable +N1,105597,Sortie #105597,https://biolit.fr/sorties/sortie-105597/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-7-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400300000000,-4.40487700000000,,Penhors,105612,Observation #105612,https://biolit.fr/observations/observation-105612/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2b-scaled.jpg,,,Identifiable +N1,105597,Sortie #105597,https://biolit.fr/sorties/sortie-105597/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-7-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400300000000,-4.40487700000000,,Penhors,105614,Observation #105614,https://biolit.fr/observations/observation-105614/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-3-scaled.jpg,,,Identifiable +N1,105597,Sortie #105597,https://biolit.fr/sorties/sortie-105597/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-7-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400300000000,-4.40487700000000,,Penhors,105616,Observation #105616,https://biolit.fr/observations/observation-105616/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-4-scaled.jpg,,,Identifiable +N1,105597,Sortie #105597,https://biolit.fr/sorties/sortie-105597/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-7-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400300000000,-4.40487700000000,,Penhors,105618,Observation #105618,https://biolit.fr/observations/observation-105618/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-5-scaled.jpg,,,Identifiable +N1,105597,Sortie #105597,https://biolit.fr/sorties/sortie-105597/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-7-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400300000000,-4.40487700000000,,Penhors,105620,Observation #105620,https://biolit.fr/observations/observation-105620/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6b-scaled.jpg,,,Identifiable +N1,105597,Sortie #105597,https://biolit.fr/sorties/sortie-105597/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-7-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400300000000,-4.40487700000000,,Penhors,105622,Observation #105622,https://biolit.fr/observations/observation-105622/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-7-scaled.jpg,,,Identifiable +N1,105638,Sortie #105638,https://biolit.fr/sorties/sortie-105638/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcelane-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcellane-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1b-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9399730000000,-4.405158000000,,Penhors,105639,Observation #105639,https://biolit.fr/observations/observation-105639/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-de-pourpre-scaled.jpg,,TRUE,Identifiable +N1,105638,Sortie #105638,https://biolit.fr/sorties/sortie-105638/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcelane-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcellane-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1b-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9399730000000,-4.405158000000,,Penhors,105641,Observation #105641,https://biolit.fr/observations/observation-105641/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-1-scaled.jpg,,TRUE,Identifiable +N1,105638,Sortie #105638,https://biolit.fr/sorties/sortie-105638/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcelane-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcellane-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1b-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9399730000000,-4.405158000000,,Penhors,105643,Observation #105643,https://biolit.fr/observations/observation-105643/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-2-scaled.jpg,,TRUE,Identifiable +N1,105638,Sortie #105638,https://biolit.fr/sorties/sortie-105638/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcelane-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcellane-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1b-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9399730000000,-4.405158000000,,Penhors,105645,Observation #105645,https://biolit.fr/observations/observation-105645/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-3-scaled.jpg,,TRUE,Identifiable +N1,105638,Sortie #105638,https://biolit.fr/sorties/sortie-105638/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcelane-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcellane-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1b-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9399730000000,-4.405158000000,,Penhors,105647,Observation #105647,https://biolit.fr/observations/observation-105647/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-4-scaled.jpg,,TRUE,Identifiable +N1,105638,Sortie #105638,https://biolit.fr/sorties/sortie-105638/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcelane-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcellane-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1b-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9399730000000,-4.405158000000,,Penhors,105649,Observation #105649,https://biolit.fr/observations/observation-105649/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcelane-grise-scaled.jpg,,TRUE,Identifiable +N1,105638,Sortie #105638,https://biolit.fr/sorties/sortie-105638/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcelane-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcellane-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1b-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9399730000000,-4.405158000000,,Penhors,105651,Observation #105651,https://biolit.fr/observations/observation-105651/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcellane-grise-2-scaled.jpg,,,Identifiable +N1,105638,Sortie #105638,https://biolit.fr/sorties/sortie-105638/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcelane-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcellane-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1b-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9399730000000,-4.405158000000,,Penhors,105653,Observation #105653,https://biolit.fr/observations/observation-105653/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1b-scaled.jpg,,TRUE,Identifiable +N1,105638,Sortie #105638,https://biolit.fr/sorties/sortie-105638/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcelane-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcellane-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1b-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9399730000000,-4.405158000000,,Penhors,105655,Observation #105655,https://biolit.fr/observations/observation-105655/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-2-scaled.jpg,,,Identifiable +N1,105638,Sortie #105638,https://biolit.fr/sorties/sortie-105638/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcelane-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcellane-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1b-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9399730000000,-4.405158000000,,Penhors,105657,Observation #105657,https://biolit.fr/observations/observation-105657/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-3-scaled.jpg,,TRUE,Identifiable +N1,105638,Sortie #105638,https://biolit.fr/sorties/sortie-105638/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcelane-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcellane-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1b-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9399730000000,-4.405158000000,,Penhors,105659,Observation #105659,https://biolit.fr/observations/observation-105659/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1b-scaled.jpg,,,Identifiable +N1,105667,Sortie #105667,https://biolit.fr/sorties/sortie-105667/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6744-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6741-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6743-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6760.jpeg,9/20/2025 0:00,10.0000000,10.0000000,43.2319320000000,5.43420600000000,Planète Mer,,105668,Observation #105668,https://biolit.fr/observations/observation-105668/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6734-scaled.jpeg,,TRUE,Identifiable +N1,105667,Sortie #105667,https://biolit.fr/sorties/sortie-105667/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6744-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6741-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6743-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6760.jpeg,9/20/2025 0:00,10.0000000,10.0000000,43.2319320000000,5.43420600000000,Planète Mer,,105670,Observation #105670,https://biolit.fr/observations/observation-105670/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6744-scaled.jpeg,,,Ne sais pas +N1,105667,Sortie #105667,https://biolit.fr/sorties/sortie-105667/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6744-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6741-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6743-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6760.jpeg,9/20/2025 0:00,10.0000000,10.0000000,43.2319320000000,5.43420600000000,Planète Mer,,105672,Observation #105672,https://biolit.fr/observations/observation-105672/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6741-scaled.jpeg,,, +N1,105667,Sortie #105667,https://biolit.fr/sorties/sortie-105667/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6744-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6741-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6743-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6760.jpeg,9/20/2025 0:00,10.0000000,10.0000000,43.2319320000000,5.43420600000000,Planète Mer,,105674,Observation #105674,https://biolit.fr/observations/observation-105674/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6743-scaled.jpeg,,TRUE,non-identifiable +N1,105667,Sortie #105667,https://biolit.fr/sorties/sortie-105667/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6744-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6741-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6743-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6760.jpeg,9/20/2025 0:00,10.0000000,10.0000000,43.2319320000000,5.43420600000000,Planète Mer,,105676,Observation #105676,https://biolit.fr/observations/observation-105676/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6742-scaled.jpeg,,,Ne sais pas +N1,105667,Sortie #105667,https://biolit.fr/sorties/sortie-105667/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6744-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6741-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6743-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6760.jpeg,9/20/2025 0:00,10.0000000,10.0000000,43.2319320000000,5.43420600000000,Planète Mer,,105678,Observation #105678,https://biolit.fr/observations/observation-105678/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6760.jpeg,,TRUE,Identifiable +N1,105695,Sortie #105695,https://biolit.fr/sorties/sortie-105695/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160115-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160182.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160183.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160184.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160188-scaled.jpg,8/16/2025 0:00,17.0000000,18.0000000,48.235254000000,-4.49011800000000,,Plage du Porzic,105696,Observation #105696,https://biolit.fr/observations/observation-105696/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160115-scaled.jpg,,TRUE,Identifiable +N1,105695,Sortie #105695,https://biolit.fr/sorties/sortie-105695/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160115-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160182.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160183.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160184.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160188-scaled.jpg,8/16/2025 0:00,17.0000000,18.0000000,48.235254000000,-4.49011800000000,,Plage du Porzic,105698,Observation #105698,https://biolit.fr/observations/observation-105698/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160116-scaled.jpg,,,Identifiable +N1,105695,Sortie #105695,https://biolit.fr/sorties/sortie-105695/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160115-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160182.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160183.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160184.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160188-scaled.jpg,8/16/2025 0:00,17.0000000,18.0000000,48.235254000000,-4.49011800000000,,Plage du Porzic,105700,Observation #105700,https://biolit.fr/observations/observation-105700/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160130-scaled.jpg,,,Identifiable +N1,105695,Sortie #105695,https://biolit.fr/sorties/sortie-105695/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160115-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160182.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160183.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160184.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160188-scaled.jpg,8/16/2025 0:00,17.0000000,18.0000000,48.235254000000,-4.49011800000000,,Plage du Porzic,105702,Observation #105702,https://biolit.fr/observations/observation-105702/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160133-scaled.jpg,,,Identifiable +N1,105695,Sortie #105695,https://biolit.fr/sorties/sortie-105695/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160115-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160182.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160183.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160184.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160188-scaled.jpg,8/16/2025 0:00,17.0000000,18.0000000,48.235254000000,-4.49011800000000,,Plage du Porzic,105704,Observation #105704,https://biolit.fr/observations/observation-105704/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160155-scaled.jpg,,,Identifiable +N1,105695,Sortie #105695,https://biolit.fr/sorties/sortie-105695/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160115-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160182.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160183.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160184.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160188-scaled.jpg,8/16/2025 0:00,17.0000000,18.0000000,48.235254000000,-4.49011800000000,,Plage du Porzic,105706,Observation #105706,https://biolit.fr/observations/observation-105706/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160156-scaled.jpg,,,Identifiable +N1,105695,Sortie #105695,https://biolit.fr/sorties/sortie-105695/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160115-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160182.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160183.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160184.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160188-scaled.jpg,8/16/2025 0:00,17.0000000,18.0000000,48.235254000000,-4.49011800000000,,Plage du Porzic,105708,Observation #105708,https://biolit.fr/observations/observation-105708/,Serpula vermicularis,Serpule,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160159-scaled.jpg,,,Identifiable +N1,105695,Sortie #105695,https://biolit.fr/sorties/sortie-105695/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160115-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160182.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160183.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160184.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160188-scaled.jpg,8/16/2025 0:00,17.0000000,18.0000000,48.235254000000,-4.49011800000000,,Plage du Porzic,105710,Observation #105710,https://biolit.fr/observations/observation-105710/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160161-scaled.jpg,,TRUE,Identifiable +N1,105695,Sortie #105695,https://biolit.fr/sorties/sortie-105695/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160115-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160182.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160183.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160184.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160188-scaled.jpg,8/16/2025 0:00,17.0000000,18.0000000,48.235254000000,-4.49011800000000,,Plage du Porzic,105712,Observation #105712,https://biolit.fr/observations/observation-105712/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160162-scaled.jpg,,,Identifiable +N1,105695,Sortie #105695,https://biolit.fr/sorties/sortie-105695/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160115-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160182.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160183.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160184.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160188-scaled.jpg,8/16/2025 0:00,17.0000000,18.0000000,48.235254000000,-4.49011800000000,,Plage du Porzic,105714,Observation #105714,https://biolit.fr/observations/observation-105714/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160163-scaled.jpg,,,Ne sais pas +N1,105695,Sortie #105695,https://biolit.fr/sorties/sortie-105695/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160115-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160182.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160183.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160184.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160188-scaled.jpg,8/16/2025 0:00,17.0000000,18.0000000,48.235254000000,-4.49011800000000,,Plage du Porzic,105716,Observation #105716,https://biolit.fr/observations/observation-105716/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160180-scaled.jpg,,,Identifiable +N1,105695,Sortie #105695,https://biolit.fr/sorties/sortie-105695/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160115-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160182.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160183.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160184.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160188-scaled.jpg,8/16/2025 0:00,17.0000000,18.0000000,48.235254000000,-4.49011800000000,,Plage du Porzic,105718,Observation #105718,https://biolit.fr/observations/observation-105718/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160182.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160183.jpg,,,Ne sais pas +N1,105695,Sortie #105695,https://biolit.fr/sorties/sortie-105695/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160115-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160182.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160183.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160184.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160188-scaled.jpg,8/16/2025 0:00,17.0000000,18.0000000,48.235254000000,-4.49011800000000,,Plage du Porzic,105720,Observation #105720,https://biolit.fr/observations/observation-105720/,Mullus surmuletus,Rouget-barbet de roche,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160184.jpg,,,Identifiable +N1,105695,Sortie #105695,https://biolit.fr/sorties/sortie-105695/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160115-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160182.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160183.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160184.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160188-scaled.jpg,8/16/2025 0:00,17.0000000,18.0000000,48.235254000000,-4.49011800000000,,Plage du Porzic,105722,Observation #105722,https://biolit.fr/observations/observation-105722/,Diplodus vulgaris,Sar à tête noire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160188-scaled.jpg,,,Identifiable +N1,105726,Sortie #105726,https://biolit.fr/sorties/sortie-105726/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/mouette-port-de-MARTIGUES-175308-1.jpg,7/28/2025 0:00,11.0:15,11.0:45,43.9168170,2.1591550,,martigues,105727,Observation #105727,https://biolit.fr/observations/observation-105727/,Rissa tridactyla,Mouette tridactyle,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/mouette-port-de-MARTIGUES-175308-1.jpg,,FALSE,Ne sais pas +N1,105732,Sortie #105732,https://biolit.fr/sorties/sortie-105732/,Goossens Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/09/IMG-20250922-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/09/IMG-20250922-WA0000.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/09/IMG-20250922-WA0001.jpg,9/17/2025 0:00,10.0000000,12.0000000,42.535406000000,3.06430000000000,LPO Occitanie (Dt Pyrénées Orientales),Criques de Porteils,105733,Observation #105733,https://biolit.fr/observations/observation-105733/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/09/IMG-20250922-WA0000.jpg,,,Identifiable +N1,105732,Sortie #105732,https://biolit.fr/sorties/sortie-105732/,Goossens Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/09/IMG-20250922-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/09/IMG-20250922-WA0000.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/09/IMG-20250922-WA0001.jpg,9/17/2025 0:00,10.0000000,12.0000000,42.535406000000,3.06430000000000,LPO Occitanie (Dt Pyrénées Orientales),Criques de Porteils,105735,Observation #105735,https://biolit.fr/observations/observation-105735/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/09/IMG-20250922-WA0001.jpg,,,Ne sais pas +N1,105744,Sortie #105744,https://biolit.fr/sorties/sortie-105744/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/Etoile-de-mer-290725.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/geolette.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.9168170,2.1591550,,Carro / plage Sainte croix,105745,Observation #105745,https://biolit.fr/observations/observation-105745/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/Etoile-de-mer-290725.jpg,,FALSE,Identifiable +N1,105744,Sortie #105744,https://biolit.fr/sorties/sortie-105744/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/Etoile-de-mer-290725.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/geolette.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.9168170,2.1591550,,Carro / plage Sainte croix,105747,Observation #105747,https://biolit.fr/observations/observation-105747/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/geolette.jpg,,FALSE, +N1,105744,Sortie #105744,https://biolit.fr/sorties/sortie-105744/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/Etoile-de-mer-290725.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/geolette.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.9168170,2.1591550,,Carro / plage Sainte croix,105749,Observation #105749,https://biolit.fr/observations/observation-105749/,Larus canus,Goéland cendré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/geolette.jpg,,FALSE,Identifiable +N1,105751,Sortie #105751,https://biolit.fr/sorties/sortie-105751/,SALLE Sophie,,7/30/2025 0:00,10.0000000,12.0000000,43.9168170,2.1591550,,Carro / plage Sainte croix,,,,,,,,,, +N1,105760,Sortie #105760,https://biolit.fr/sorties/sortie-105760/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165309.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165435.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/oiseau-noir.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.3317660000000,5.06991100000000,,Carro / plage Sainte croix,105761,Observation #105761,https://biolit.fr/observations/observation-105761/,Octopus cyanea,Poulpe de récif,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165435.jpg,,,Identifiable +N1,105760,Sortie #105760,https://biolit.fr/sorties/sortie-105760/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165309.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165435.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/oiseau-noir.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.3317660000000,5.06991100000000,,Carro / plage Sainte croix,105763,Observation #105763,https://biolit.fr/observations/observation-105763/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/oiseau-noir.jpg,,,Ne sais pas +N1,105760,Sortie #105760,https://biolit.fr/sorties/sortie-105760/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165309.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165435.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/oiseau-noir.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.3317660000000,5.06991100000000,,Carro / plage Sainte croix,105765,Observation #105765,https://biolit.fr/observations/observation-105765/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-1.jpg,,,Ne sais pas +N1,105760,Sortie #105760,https://biolit.fr/sorties/sortie-105760/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165309.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165435.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/oiseau-noir.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.3317660000000,5.06991100000000,,Carro / plage Sainte croix,105767,Observation #105767,https://biolit.fr/observations/observation-105767/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-1-scaled.jpg,,, +N1,105760,Sortie #105760,https://biolit.fr/sorties/sortie-105760/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165309.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165435.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/oiseau-noir.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.3317660000000,5.06991100000000,,Carro / plage Sainte croix,105769,Observation #105769,https://biolit.fr/observations/observation-105769/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-1.jpg,,,Ne sais pas +N1,105760,Sortie #105760,https://biolit.fr/sorties/sortie-105760/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165309.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165435.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/oiseau-noir.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.3317660000000,5.06991100000000,,Carro / plage Sainte croix,105771,Observation #105771,https://biolit.fr/observations/observation-105771/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-1.jpg,,,Ne sais pas +N1,105760,Sortie #105760,https://biolit.fr/sorties/sortie-105760/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165309.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165435.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/oiseau-noir.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.3317660000000,5.06991100000000,,Carro / plage Sainte croix,105773,Observation #105773,https://biolit.fr/observations/observation-105773/,Diplodus sargus,Sar commun de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165309.jpg,,TRUE, +N1,105775,Sortie #105775,https://biolit.fr/sorties/sortie-105775/,SALLE Sophie,,7/30/2025 0:00,10.0000000,12.0000000,43.9168170,2.1591550,,Carro / plage Sainte croix,,,,,,,,,, +N1,105784,Sortie #105784,https://biolit.fr/sorties/sortie-105784/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250809_131518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165309-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165435-1.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.3311740000000,5.07040500000000,,Carro / plage Sainte croix,105785,Observation #105785,https://biolit.fr/observations/observation-105785/,Rissa tridactyla,Mouette tridactyle,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250809_131518-scaled.jpg,,,Identifiable +N1,105784,Sortie #105784,https://biolit.fr/sorties/sortie-105784/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250809_131518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165309-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165435-1.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.3311740000000,5.07040500000000,,Carro / plage Sainte croix,105787,Observation #105787,https://biolit.fr/observations/observation-105787/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165435-1.jpg,,,Identifiable +N1,105784,Sortie #105784,https://biolit.fr/sorties/sortie-105784/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250809_131518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165309-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165435-1.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.3311740000000,5.07040500000000,,Carro / plage Sainte croix,105789,Observation #105789,https://biolit.fr/observations/observation-105789/,Diplodus cadenati,Sar commun atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165309-1.jpg,,,Identifiable +N1,105784,Sortie #105784,https://biolit.fr/sorties/sortie-105784/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250809_131518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165309-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165435-1.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.3311740000000,5.07040500000000,,Carro / plage Sainte croix,105791,Observation #105791,https://biolit.fr/observations/observation-105791/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-2-scaled.jpg,,,Ne sais pas +N1,105784,Sortie #105784,https://biolit.fr/sorties/sortie-105784/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250809_131518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165309-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165435-1.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.3311740000000,5.07040500000000,,Carro / plage Sainte croix,105793,Observation #105793,https://biolit.fr/observations/observation-105793/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738-2.jpg,,,Ne sais pas +N1,105784,Sortie #105784,https://biolit.fr/sorties/sortie-105784/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250809_131518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165309-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165435-1.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.3311740000000,5.07040500000000,,Carro / plage Sainte croix,105795,Observation #105795,https://biolit.fr/observations/observation-105795/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-2.jpg,,,Ne sais pas +N1,105784,Sortie #105784,https://biolit.fr/sorties/sortie-105784/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250809_131518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165309-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165435-1.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.3311740000000,5.07040500000000,,Carro / plage Sainte croix,105797,Observation #105797,https://biolit.fr/observations/observation-105797/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-2.jpg,,, +N1,105801,Sortie #105801,https://biolit.fr/sorties/sortie-105801/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/plante-fleur-jaune_103732.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/plantes_113858.jpg,7/31/2025 0:00,10.0000000,12.0000000,43.3274310000000,5.15267400000000,,carry le rouet,105802,Observation #105802,https://biolit.fr/observations/observation-105802/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/plante-fleur-jaune_103732.jpg,,,Ne sais pas +N1,105801,Sortie #105801,https://biolit.fr/sorties/sortie-105801/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/plante-fleur-jaune_103732.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/plantes_113858.jpg,7/31/2025 0:00,10.0000000,12.0000000,43.3274310000000,5.15267400000000,,carry le rouet,105804,Observation #105804,https://biolit.fr/observations/observation-105804/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/plantes_113858.jpg,,,Identifiable +N1,105998,Sortie #105998,https://biolit.fr/sorties/sortie-105998/,AUBER Quentin,,9/21/2025 0:00,10.0000000,11.0000000,47.8899680000000,-3.97312800000000,,Cap coz,,,,,,,,,, +N1,105999,Sortie #105999,https://biolit.fr/sorties/sortie-105999/,AUBER Quentin,,9/20/2025 0:00,10.0000000,11.0000000,47.8885480000000,-3.97844600000000,,Cap coz,,,,,,,,,, +N1,106021,Sortie #106021,https://biolit.fr/sorties/sortie-106021/,Pierre Corbrion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203449-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203447-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203484-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203485-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203483-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203482-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203481-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203479-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203480-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203478-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203477-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203476-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203475-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203474-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203472-scaled.jpg,9/20/2025 0:00,15.0000000,17.0000000,48.5703180000000,-1.97632700000000,,Saint-Suliac,106022,Observation #106022,https://biolit.fr/observations/observation-106022/,Elysia viridis,Elysie verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203449-scaled.jpg,,TRUE,Identifiable +N1,106021,Sortie #106021,https://biolit.fr/sorties/sortie-106021/,Pierre Corbrion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203449-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203447-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203484-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203485-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203483-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203482-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203481-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203479-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203480-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203478-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203477-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203476-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203475-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203474-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203472-scaled.jpg,9/20/2025 0:00,15.0000000,17.0000000,48.5703180000000,-1.97632700000000,,Saint-Suliac,106024,Observation #106024,https://biolit.fr/observations/observation-106024/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203448-scaled.jpg,,TRUE,Identifiable +N1,106021,Sortie #106021,https://biolit.fr/sorties/sortie-106021/,Pierre Corbrion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203449-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203447-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203484-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203485-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203483-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203482-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203481-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203479-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203480-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203478-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203477-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203476-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203475-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203474-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203472-scaled.jpg,9/20/2025 0:00,15.0000000,17.0000000,48.5703180000000,-1.97632700000000,,Saint-Suliac,106026,Observation #106026,https://biolit.fr/observations/observation-106026/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203447-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203446-scaled.jpg,,,Identifiable +N1,106021,Sortie #106021,https://biolit.fr/sorties/sortie-106021/,Pierre Corbrion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203449-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203447-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203484-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203485-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203483-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203482-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203481-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203479-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203480-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203478-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203477-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203476-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203475-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203474-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203472-scaled.jpg,9/20/2025 0:00,15.0000000,17.0000000,48.5703180000000,-1.97632700000000,,Saint-Suliac,106028,Observation #106028,https://biolit.fr/observations/observation-106028/,Aeolidiella alderi,Eolis d'Alder,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203476-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203475-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203478-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203483-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203482-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203481-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203479-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203480-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203484-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203485-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203477-scaled.jpg,,,Identifiable +N1,106021,Sortie #106021,https://biolit.fr/sorties/sortie-106021/,Pierre Corbrion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203449-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203447-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203484-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203485-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203483-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203482-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203481-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203479-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203480-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203478-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203477-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203476-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203475-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203474-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203472-scaled.jpg,9/20/2025 0:00,15.0000000,17.0000000,48.5703180000000,-1.97632700000000,,Saint-Suliac,106030,Observation #106030,https://biolit.fr/observations/observation-106030/,Goniodoris castanea,Goniodoris châtaigne,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203472-scaled.jpg,,,Identifiable +N1,106021,Sortie #106021,https://biolit.fr/sorties/sortie-106021/,Pierre Corbrion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203449-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203447-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203484-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203485-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203483-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203482-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203481-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203479-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203480-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203478-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203477-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203476-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203475-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203474-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203472-scaled.jpg,9/20/2025 0:00,15.0000000,17.0000000,48.5703180000000,-1.97632700000000,,Saint-Suliac,106032,Observation #106032,https://biolit.fr/observations/observation-106032/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203472-scaled.jpg,,,Identifiable +N1,106037,Sortie #106037,https://biolit.fr/sorties/sortie-106037/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/09/IMG_4651-scaled.jpeg,9/24/2025 0:00,23.0:21,23.0:26,43.2696520000000,6.57971500000000,,Port Grimaud plagette rue de la Giscle,106038,Observation #106038,https://biolit.fr/observations/observation-106038/,Atherina boyeri,Joël,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/09/IMG_4651-scaled.jpeg,,,Identifiable +N1,106042,Sortie #106042,https://biolit.fr/sorties/sortie-106042/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/09/IMG_4668-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/09/IMG_4666-scaled.png,9/21/2025 0:00,16.0:32,16.0:42,43.2711270000000,6.57906700000000,,Port Grimaud ile verte,106043,Observation #106043,https://biolit.fr/observations/observation-106043/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/09/IMG_4668-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/09/IMG_4666-scaled.png,,,Identifiable +N1,106042,Sortie #106042,https://biolit.fr/sorties/sortie-106042/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/09/IMG_4668-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/09/IMG_4666-scaled.png,9/21/2025 0:00,16.0:32,16.0:42,43.2711270000000,6.57906700000000,,Port Grimaud ile verte,106150,Observation #106150,https://biolit.fr/observations/observation-106150/,Amphibalanus amphitrite,Balane amphitrite,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/09/IMG_4668-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/09/IMG_4666-scaled.png,,,Identifiable +N1,106046,Sortie #106046,https://biolit.fr/sorties/sortie-106046/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/09/IMG_4665-scaled.png,9/21/2025 0:00,16.0:33,16.0:45,43.2711620000000,6.57903000000000,,Port Grimaud ile verte,106047,Observation #106047,https://biolit.fr/observations/observation-106047/,Spirorbis (Spirorbis) spirorbis,Spirorbe,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/09/IMG_4665-scaled.png,,,Identifiable +N1,106051,Sortie #106051,https://biolit.fr/sorties/sortie-106051/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/09/IMG_4672.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/09/IMG_4671.jpeg,9/24/2025 0:00,23.0:16,23.0:24,43.269653000000,6.57970800000000,,Port Grimaud plagette rue de la Giscle,106052,Observation #106052,https://biolit.fr/observations/observation-106052/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/09/IMG_4672.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/09/IMG_4671.jpeg,,,Identifiable +N1,106074,Sortie #106074,https://biolit.fr/sorties/sortie-106074/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040760000000,-1.84451800000000,Centre Virginie Hériot,Plage du Potelet,106077,Observation #106077,https://biolit.fr/observations/observation-106077/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-1-scaled.jpg,,,Identifiable +N1,106074,Sortie #106074,https://biolit.fr/sorties/sortie-106074/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040760000000,-1.84451800000000,Centre Virginie Hériot,Plage du Potelet,106079,Observation #106079,https://biolit.fr/observations/observation-106079/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-3-scaled.jpg,,,Identifiable +N1,106074,Sortie #106074,https://biolit.fr/sorties/sortie-106074/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040760000000,-1.84451800000000,Centre Virginie Hériot,Plage du Potelet,106081,Observation #106081,https://biolit.fr/observations/observation-106081/,Dendrodoa grossularia,Ascidie groseille,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-1-scaled.jpg,,,Identifiable +N1,106074,Sortie #106074,https://biolit.fr/sorties/sortie-106074/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040760000000,-1.84451800000000,Centre Virginie Hériot,Plage du Potelet,106083,Observation #106083,https://biolit.fr/observations/observation-106083/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-3-scaled.jpg,,,Identifiable +N1,106074,Sortie #106074,https://biolit.fr/sorties/sortie-106074/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040760000000,-1.84451800000000,Centre Virginie Hériot,Plage du Potelet,106085,Observation #106085,https://biolit.fr/observations/observation-106085/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-2-scaled.jpg,,TRUE,Identifiable +N1,106074,Sortie #106074,https://biolit.fr/sorties/sortie-106074/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040760000000,-1.84451800000000,Centre Virginie Hériot,Plage du Potelet,106087,Observation #106087,https://biolit.fr/observations/observation-106087/,Ocinebrellus inornatus,Bigorneau perceur japonais,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-2-scaled.jpg,,TRUE,Identifiable +N1,106074,Sortie #106074,https://biolit.fr/sorties/sortie-106074/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040760000000,-1.84451800000000,Centre Virginie Hériot,Plage du Potelet,106089,Observation #106089,https://biolit.fr/observations/observation-106089/,Botrylloides diegensis,Botrylle de San Diego,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-san-diego-1-scaled.jpg,,TRUE,Identifiable +N1,106074,Sortie #106074,https://biolit.fr/sorties/sortie-106074/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040760000000,-1.84451800000000,Centre Virginie Hériot,Plage du Potelet,106091,Observation #106091,https://biolit.fr/observations/observation-106091/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-1-scaled.jpg,,,Identifiable +N1,106074,Sortie #106074,https://biolit.fr/sorties/sortie-106074/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040760000000,-1.84451800000000,Centre Virginie Hériot,Plage du Potelet,106093,Observation #106093,https://biolit.fr/observations/observation-106093/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg,,TRUE,Identifiable +N1,106074,Sortie #106074,https://biolit.fr/sorties/sortie-106074/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040760000000,-1.84451800000000,Centre Virginie Hériot,Plage du Potelet,106095,Observation #106095,https://biolit.fr/observations/observation-106095/,Ciona intestinalis,Cione intestinale,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-1-scaled.jpg,,TRUE,Identifiable +N1,106074,Sortie #106074,https://biolit.fr/sorties/sortie-106074/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040760000000,-1.84451800000000,Centre Virginie Hériot,Plage du Potelet,106097,Observation #106097,https://biolit.fr/observations/observation-106097/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-3-scaled.jpg,,,Identifiable +N1,106074,Sortie #106074,https://biolit.fr/sorties/sortie-106074/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040760000000,-1.84451800000000,Centre Virginie Hériot,Plage du Potelet,106099,Observation #106099,https://biolit.fr/observations/observation-106099/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-1-scaled.jpg,,TRUE,Identifiable +N1,106074,Sortie #106074,https://biolit.fr/sorties/sortie-106074/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040760000000,-1.84451800000000,Centre Virginie Hériot,Plage du Potelet,106101,Observation #106101,https://biolit.fr/observations/observation-106101/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-scaled.jpg,,,Ne sais pas +N1,106120,Sortie #106120,https://biolit.fr/sorties/sortie-106120/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Galathee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250909152307-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-2-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040540000000,-1.84455000000000,Centre Virginie Hériot,Plage du Potelet,106121,Observation #106121,https://biolit.fr/observations/observation-106121/,Crangon crangon,Crevette grise européenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/crevette-grise-1-scaled.jpg,,,Identifiable +N1,106120,Sortie #106120,https://biolit.fr/sorties/sortie-106120/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Galathee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250909152307-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-2-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040540000000,-1.84455000000000,Centre Virginie Hériot,Plage du Potelet,106123,Observation #106123,https://biolit.fr/observations/observation-106123/,Aeolidia papillosa,Eolis à papilles,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-3-scaled.jpg,,,Identifiable +N1,106120,Sortie #106120,https://biolit.fr/sorties/sortie-106120/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Galathee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250909152307-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-2-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040540000000,-1.84455000000000,Centre Virginie Hériot,Plage du Potelet,106125,Observation #106125,https://biolit.fr/observations/observation-106125/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-2-scaled.jpg,,,Ne sais pas +N1,106120,Sortie #106120,https://biolit.fr/sorties/sortie-106120/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Galathee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250909152307-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-2-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040540000000,-1.84455000000000,Centre Virginie Hériot,Plage du Potelet,106127,Observation #106127,https://biolit.fr/observations/observation-106127/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Galathee-2-scaled.jpg,,,Identifiable +N1,106120,Sortie #106120,https://biolit.fr/sorties/sortie-106120/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Galathee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250909152307-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-2-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040540000000,-1.84455000000000,Centre Virginie Hériot,Plage du Potelet,106129,Observation #106129,https://biolit.fr/observations/observation-106129/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Huitre-creuse-1-scaled.jpg,,,Identifiable +N1,106120,Sortie #106120,https://biolit.fr/sorties/sortie-106120/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Galathee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250909152307-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-2-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040540000000,-1.84455000000000,Centre Virginie Hériot,Plage du Potelet,106131,Observation #106131,https://biolit.fr/observations/observation-106131/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250909152307-scaled.jpg,,,Identifiable +N1,106120,Sortie #106120,https://biolit.fr/sorties/sortie-106120/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Galathee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250909152307-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-2-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040540000000,-1.84455000000000,Centre Virginie Hériot,Plage du Potelet,106133,Observation #106133,https://biolit.fr/observations/observation-106133/,Macropodia rostrata,Macropode rostré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,,,Identifiable +N1,106120,Sortie #106120,https://biolit.fr/sorties/sortie-106120/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Galathee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250909152307-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-2-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040540000000,-1.84455000000000,Centre Virginie Hériot,Plage du Potelet,106135,Observation #106135,https://biolit.fr/observations/observation-106135/,Nerophis ophidion,Nérophis ophidion,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Nerophis-1-scaled.jpg,,,Identifiable +N1,106120,Sortie #106120,https://biolit.fr/sorties/sortie-106120/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Galathee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250909152307-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-2-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040540000000,-1.84455000000000,Centre Virginie Hériot,Plage du Potelet,106137,Observation #106137,https://biolit.fr/observations/observation-106137/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Patelle-1-scaled.jpg,,TRUE,Identifiable +N1,106120,Sortie #106120,https://biolit.fr/sorties/sortie-106120/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Galathee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250909152307-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-2-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040540000000,-1.84455000000000,Centre Virginie Hériot,Plage du Potelet,106139,Observation #106139,https://biolit.fr/observations/observation-106139/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Petoncle-1-scaled.jpg,,,Identifiable +N1,106120,Sortie #106120,https://biolit.fr/sorties/sortie-106120/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Galathee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250909152307-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-2-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040540000000,-1.84455000000000,Centre Virginie Hériot,Plage du Potelet,106141,Observation #106141,https://biolit.fr/observations/observation-106141/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Porcellane-1-scaled.jpg,,,Identifiable +N1,106120,Sortie #106120,https://biolit.fr/sorties/sortie-106120/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Galathee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250909152307-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-2-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040540000000,-1.84455000000000,Centre Virginie Hériot,Plage du Potelet,106143,Observation #106143,https://biolit.fr/observations/observation-106143/,Solea solea,Sole,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-2-scaled.jpg,,,Identifiable +N1,106120,Sortie #106120,https://biolit.fr/sorties/sortie-106120/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Galathee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250909152307-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-2-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040540000000,-1.84455000000000,Centre Virginie Hériot,Plage du Potelet,106145,Observation #106145,https://biolit.fr/observations/observation-106145/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-2-scaled.jpg,,,Identifiable +N1,106148,Sortie #106148,https://biolit.fr/sorties/sortie-106148/,LABELBLEU,,09/10/2025,16.0000000,17.0000000,42.7401620000000,3.037926000000,LABELBLEU,Plage de Sainte-Marie-La-Mer,,,,,,,,,, +N1,106149,Sortie #106149,https://biolit.fr/sorties/sortie-106149/,LABELBLEU,,09/10/2025,16.0000000,17.0000000,42.7426920000000,3.03792600000000,LABELBLEU,Plage de Sainte-Marie-La-Mer,,,,,,,,,, +N1,106152,Sortie #106152,https://biolit.fr/sorties/sortie-106152/,Wieringa Freija,,9/25/2025 0:00,9.0:45,10.0:45,43.446684000000,3.66231200000000,,"Plage de la pyramide, Bouzigues",,,,,,,,,, +N1,106155,Sortie #106155,https://biolit.fr/sorties/sortie-106155/,Cevaer Angelo,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3fcbbc4af851fbaa9fbb70c01fb9e26f/2025/09/004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3fcbbc4af851fbaa9fbb70c01fb9e26f/2025/09/005-scaled.jpg,9/25/2025 0:00,9.0:45,10.0:45,43.4467700000000,3.66243700000000,,Plage de la pyramide Bouzigues,106156,Observation #106156,https://biolit.fr/observations/observation-106156/,Rapana venosa,Rapane veiné,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3fcbbc4af851fbaa9fbb70c01fb9e26f/2025/09/004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3fcbbc4af851fbaa9fbb70c01fb9e26f/2025/09/005-scaled.jpg,,,Identifiable +N1,106159,Sortie #106159,https://biolit.fr/sorties/sortie-106159/,Cevaer Angelo,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3fcbbc4af851fbaa9fbb70c01fb9e26f/2025/09/014-scaled.jpg,9/25/2025 0:00,9.0:45,10.0:45,43.4464550000000,3.66238000000000,,Plage de la pyramide Bouzigues,106160,Observation #106160,https://biolit.fr/observations/observation-106160/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3fcbbc4af851fbaa9fbb70c01fb9e26f/2025/09/014-scaled.jpg,,TRUE,Identifiable +N1,106159,Sortie #106159,https://biolit.fr/sorties/sortie-106159/,Cevaer Angelo,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3fcbbc4af851fbaa9fbb70c01fb9e26f/2025/09/014-scaled.jpg,9/25/2025 0:00,9.0:45,10.0:45,43.4464550000000,3.66238000000000,,Plage de la pyramide Bouzigues,108937,Observation #108937,https://biolit.fr/observations/observation-108937/,Hippocampus guttulatus,Hippocampe moucheté,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3fcbbc4af851fbaa9fbb70c01fb9e26f/2025/09/014-scaled.jpg,,TRUE,Identifiable +N1,106164,Sortie #106164,https://biolit.fr/sorties/sortie-106164/,BAUGNIES THIBAUT,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c08dadf394b2370858e9b7be0b52a534/2025/09/IMG_8564.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c08dadf394b2370858e9b7be0b52a534/2025/09/IMG_8565.jpeg,9/25/2025 0:00,9.0:45,10.0:45,43.4468010000000,3.66243800000000,,Plage de la pyramide-Bouzigues,106165,Observation #106165,https://biolit.fr/observations/observation-106165/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c08dadf394b2370858e9b7be0b52a534/2025/09/IMG_8564.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c08dadf394b2370858e9b7be0b52a534/2025/09/IMG_8565.jpeg,,,Identifiable +N1,106168,Sortie #106168,https://biolit.fr/sorties/sortie-106168/,Cevaer Angelo,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3fcbbc4af851fbaa9fbb70c01fb9e26f/2025/09/046-scaled.jpg,9/25/2025 0:00,9.0:45,10.0:45,43.446569000000,3.66264800000000,,Plage de la pyramide Bouzigues,106169,Observation #106169,https://biolit.fr/observations/observation-106169/,Styela plicata,Ascidie plissée,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3fcbbc4af851fbaa9fbb70c01fb9e26f/2025/09/046-scaled.jpg,,,Identifiable +N1,106175,Sortie #106175,https://biolit.fr/sorties/sortie-106175/,Guidicelli Lou,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f36974a4c6d8d3e5186bfbd6062fa156/2025/09/IMG_5523-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f36974a4c6d8d3e5186bfbd6062fa156/2025/09/IMG_5525-scaled.jpeg,9/25/2025 0:00,9.0:45,10.0:45,43.4464200000000,3.66316800000000,,Plage de la pyramide - Bouzigues,106176,Observation #106176,https://biolit.fr/observations/observation-106176/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f36974a4c6d8d3e5186bfbd6062fa156/2025/09/IMG_5523-scaled.jpeg,,TRUE,Identifiable +N1,106175,Sortie #106175,https://biolit.fr/sorties/sortie-106175/,Guidicelli Lou,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f36974a4c6d8d3e5186bfbd6062fa156/2025/09/IMG_5523-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f36974a4c6d8d3e5186bfbd6062fa156/2025/09/IMG_5525-scaled.jpeg,9/25/2025 0:00,9.0:45,10.0:45,43.4464200000000,3.66316800000000,,Plage de la pyramide - Bouzigues,106180,Observation #106180,https://biolit.fr/observations/observation-106180/,Ficopomatus enigmaticus,Cascail,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f36974a4c6d8d3e5186bfbd6062fa156/2025/09/IMG_5525-scaled.jpeg,,,Identifiable +N1,106184,Sortie #106184,https://biolit.fr/sorties/sortie-106184/,Wieringa Freija,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3887ff375471adf2bea546d8a65fa6e1/2025/09/IMG-20250925-WA0015-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3887ff375471adf2bea546d8a65fa6e1/2025/09/IMG-20250925-WA0028-1.jpg,9/25/2025 0:00,9.0:45,10.0:45,43.4468140000000,3.66233800000000,,"Plage de la pyramide, Bouzigues",106185,Observation #106185,https://biolit.fr/observations/observation-106185/,Styela plicata,Ascidie plissée,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3887ff375471adf2bea546d8a65fa6e1/2025/09/IMG-20250925-WA0015-2.jpg,,,Identifiable +N1,106184,Sortie #106184,https://biolit.fr/sorties/sortie-106184/,Wieringa Freija,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3887ff375471adf2bea546d8a65fa6e1/2025/09/IMG-20250925-WA0015-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3887ff375471adf2bea546d8a65fa6e1/2025/09/IMG-20250925-WA0028-1.jpg,9/25/2025 0:00,9.0:45,10.0:45,43.4468140000000,3.66233800000000,,"Plage de la pyramide, Bouzigues",106188,Observation #106188,https://biolit.fr/observations/observation-106188/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3887ff375471adf2bea546d8a65fa6e1/2025/09/IMG-20250925-WA0028-1.jpg,,,Identifiable +N1,106191,Sortie #106191,https://biolit.fr/sorties/sortie-106191/,Joseph Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fa0ec13c02562a3f79594761c31229b8/2025/09/029-2-scaled.jpg,9/25/2025 0:00,9.0:45,10.0:45,43.4468600000000,3.66243300000000,,Plage de la pyramide,106192,Observation #106192,https://biolit.fr/observations/observation-106192/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fa0ec13c02562a3f79594761c31229b8/2025/09/029-2-scaled.jpg,,,Identifiable +N1,106195,Sortie #106195,https://biolit.fr/sorties/sortie-106195/,JARNIAS Anaïs,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/70cc6ba1d41968404d4a0ac6dfa261ad/2025/09/044-scaled.jpg,9/25/2025 0:00,9.0:45,10.0:45,43.4464950000000,3.66235400000000,,Plage de la Pyramide Bouzigues,,,,,,,,,, +N1,106196,Sortie #106196,https://biolit.fr/sorties/sortie-106196/,Joseph Chloé,,9/25/2025 0:00,9.0:45,10.0:45,43.4467970000000,3.66239000000000,,Plage de la pyramide,,,,,,,,,, +N1,106198,Sortie #106198,https://biolit.fr/sorties/sortie-106198/,JARNIAS Anaïs,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/70cc6ba1d41968404d4a0ac6dfa261ad/2025/09/A6_00455.jpg,9/25/2025 0:00,9.0:45,10.0:45,43.4467510000000,3.66230000000000,,Plage de la Pyramide Bouzigues,,,,,,,,,, +N1,106200,Sortie #106200,https://biolit.fr/sorties/sortie-106200/,JARNIAS Anaïs,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/70cc6ba1d41968404d4a0ac6dfa261ad/2025/09/A6_00482.jpg,9/25/2025 0:00,9.0:45,10.0:45,43.446343000000,3.6623350000000,,Plage de la Pyramide Bouzigues,106201,Observation #106201,https://biolit.fr/observations/observation-106201/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/70cc6ba1d41968404d4a0ac6dfa261ad/2025/09/A6_00482.jpg,,,Identifiable +N1,106204,Sortie #106204,https://biolit.fr/sorties/sortie-106204/,JARNIAS Anaïs,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/70cc6ba1d41968404d4a0ac6dfa261ad/2025/09/A6_00455-1.jpg,9/25/2025 0:00,9.0:45,10.0:45,43.4463210000000,3.66233200000000,,Plage de la Pyramide Bouzigues,106205,Observation #106205,https://biolit.fr/observations/observation-106205/,Rapana venosa,Rapane veiné,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/70cc6ba1d41968404d4a0ac6dfa261ad/2025/09/A6_00455-1.jpg,,,Identifiable +N1,106208,Sortie #106208,https://biolit.fr/sorties/sortie-106208/,JARNIAS Anaïs,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/70cc6ba1d41968404d4a0ac6dfa261ad/2025/09/044-1-scaled.jpg,9/25/2025 0:00,9.0:45,10.0:45,43.4464450000000,3.66235800000000,,Plage de la Pyramide Bouzigues,106209,Observation #106209,https://biolit.fr/observations/observation-106209/,Styela plicata,Ascidie plissée,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/70cc6ba1d41968404d4a0ac6dfa261ad/2025/09/044-1-scaled.jpg,,,Identifiable +N1,106214,Sortie #106214,https://biolit.fr/sorties/sortie-106214/,Pasqualini Felix,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/13a686104ed5a97ad83fc5b6c2f15595/2025/09/IMG_7445-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/13a686104ed5a97ad83fc5b6c2f15595/2025/09/IMG_7441-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/13a686104ed5a97ad83fc5b6c2f15595/2025/09/IMG_7439-scaled.jpeg,9/25/2025 0:00,16.000007,16.000006,43.2910070000000,5.35583600000000,Cap vers la Nature,Marseille,,,,,,,,,, +N1,106228,Sortie #106228,https://biolit.fr/sorties/sortie-106228/,HERAUVILLE CAMILLE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010581-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010609-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010586-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010593-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010623-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010583-scaled.jpg,9/25/2025 0:00,14.0000000,16.0000000,49.6867440000000,-1.27458600000000,,PHARE DE GATTEVILLE,106242,Observation #106242,https://biolit.fr/observations/observation-106242/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010593-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010602-scaled.jpg,,TRUE,Identifiable +N1,106228,Sortie #106228,https://biolit.fr/sorties/sortie-106228/,HERAUVILLE CAMILLE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010581-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010609-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010586-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010593-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010623-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010583-scaled.jpg,9/25/2025 0:00,14.0000000,16.0000000,49.6867440000000,-1.27458600000000,,PHARE DE GATTEVILLE,106246,Observation #106246,https://biolit.fr/observations/observation-106246/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010586-scaled.jpg,,,Identifiable +N1,106228,Sortie #106228,https://biolit.fr/sorties/sortie-106228/,HERAUVILLE CAMILLE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010581-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010609-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010586-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010593-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010623-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010583-scaled.jpg,9/25/2025 0:00,14.0000000,16.0000000,49.6867440000000,-1.27458600000000,,PHARE DE GATTEVILLE,106252,Observation #106252,https://biolit.fr/observations/observation-106252/,Rissa tridactyla,Mouette tridactyle,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010623-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010604-scaled.jpg,,,Identifiable +N1,106228,Sortie #106228,https://biolit.fr/sorties/sortie-106228/,HERAUVILLE CAMILLE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010581-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010609-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010586-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010593-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010623-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010583-scaled.jpg,9/25/2025 0:00,14.0000000,16.0000000,49.6867440000000,-1.27458600000000,,PHARE DE GATTEVILLE,106258,Observation #106258,https://biolit.fr/observations/observation-106258/,Chlorodesmis fastigiata,Algue chevelue verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010593-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010602-scaled.jpg,,,Identifiable +N1,106228,Sortie #106228,https://biolit.fr/sorties/sortie-106228/,HERAUVILLE CAMILLE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010581-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010609-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010586-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010593-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010623-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010583-scaled.jpg,9/25/2025 0:00,14.0000000,16.0000000,49.6867440000000,-1.27458600000000,,PHARE DE GATTEVILLE,106264,Observation #106264,https://biolit.fr/observations/observation-106264/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010581-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010583-scaled.jpg,,,Identifiable +N1,106239,Sortie #106239,https://biolit.fr/sorties/sortie-106239/,JOUAN ISABELLE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469585-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469592-scaled.jpg,9/25/2025 0:00,14.0000000,17.0000000,49.6869660000000,-1.27698900000000,,Gatteville phare,106240,Observation #106240,https://biolit.fr/observations/observation-106240/,Rissa tridactyla,Mouette tridactyle,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023099-scaled.jpg,,,Identifiable +N1,106239,Sortie #106239,https://biolit.fr/sorties/sortie-106239/,JOUAN ISABELLE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469585-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469592-scaled.jpg,9/25/2025 0:00,14.0000000,17.0000000,49.6869660000000,-1.27698900000000,,Gatteville phare,106244,Observation #106244,https://biolit.fr/observations/observation-106244/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469592-scaled.jpg,,TRUE,Identifiable +N1,106239,Sortie #106239,https://biolit.fr/sorties/sortie-106239/,JOUAN ISABELLE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469585-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469592-scaled.jpg,9/25/2025 0:00,14.0000000,17.0000000,49.6869660000000,-1.27698900000000,,Gatteville phare,106248,Observation #106248,https://biolit.fr/observations/observation-106248/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469599-scaled.jpg,,TRUE,Identifiable +N1,106239,Sortie #106239,https://biolit.fr/sorties/sortie-106239/,JOUAN ISABELLE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469585-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469592-scaled.jpg,9/25/2025 0:00,14.0000000,17.0000000,49.6869660000000,-1.27698900000000,,Gatteville phare,106250,Observation #106250,https://biolit.fr/observations/observation-106250/,Chaetophora lobata,Algue,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023106-scaled.jpg,,,Identifiable +N1,106239,Sortie #106239,https://biolit.fr/sorties/sortie-106239/,JOUAN ISABELLE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469585-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469592-scaled.jpg,9/25/2025 0:00,14.0000000,17.0000000,49.6869660000000,-1.27698900000000,,Gatteville phare,106254,Observation #106254,https://biolit.fr/observations/observation-106254/,Chaetophora lobata,Algue,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023104-scaled.jpg,,,Identifiable +N1,106239,Sortie #106239,https://biolit.fr/sorties/sortie-106239/,JOUAN ISABELLE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469585-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469592-scaled.jpg,9/25/2025 0:00,14.0000000,17.0000000,49.6869660000000,-1.27698900000000,,Gatteville phare,106256,Observation #106256,https://biolit.fr/observations/observation-106256/,Chaetophora lobata,Algue,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023105-scaled.jpg,,,Identifiable +N1,106239,Sortie #106239,https://biolit.fr/sorties/sortie-106239/,JOUAN ISABELLE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469585-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469592-scaled.jpg,9/25/2025 0:00,14.0000000,17.0000000,49.6869660000000,-1.27698900000000,,Gatteville phare,106260,Observation #106260,https://biolit.fr/observations/observation-106260/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023098-scaled.jpg,,,Identifiable +N1,106239,Sortie #106239,https://biolit.fr/sorties/sortie-106239/,JOUAN ISABELLE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469585-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469592-scaled.jpg,9/25/2025 0:00,14.0000000,17.0000000,49.6869660000000,-1.27698900000000,,Gatteville phare,106262,Observation #106262,https://biolit.fr/observations/observation-106262/,Chaetophora lobata,Algue,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023097-scaled.jpg,,,Identifiable +N1,106267,Sortie #106267,https://biolit.fr/sorties/sortie-106267/,HERAUVILLE CAMILLE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010609-1-scaled.jpg,9/25/2025 0:00,14.0000000,16.0000000,49.6860780000000,-1.27870600000000,,GATTEVILLE LE PHARE,106268,Observation #106268,https://biolit.fr/observations/observation-106268/,Crangon crangon,Crevette grise européenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010609-1-scaled.jpg,,,Identifiable +N1,106271,Sortie #106271,https://biolit.fr/sorties/sortie-106271/,JOUAN ISABELLE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000010609-scaled.jpg,9/25/2025 0:00,14.0000000,17.0000000,49.6869660000000,-1.27698900000000,,Gatteville phare,106272,Observation #106272,https://biolit.fr/observations/observation-106272/,Crangon crangon,Crevette grise européenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000010609-scaled.jpg,,,Identifiable +N1,106421,Sortie #106421,https://biolit.fr/sorties/sortie-106421/,De Filippis Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073391-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073386-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073384-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073382-scaled.jpg,9/28/2025 0:00,9.0000000,10.0000000,43.668188,4.1252690,,Espiguette,,,,,,,,,, +N1,106427,Sortie #106427,https://biolit.fr/sorties/sortie-106427/,De Filippis Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073391-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073388-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073386-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073384-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073382-1-scaled.jpg,9/28/2025 0:00,9.0000000,10.000001,43.6682840,4.1252220,,Espiguette,,,,,,,,,, +N1,106429,Sortie #106429,https://biolit.fr/sorties/sortie-106429/,De Filippis Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073391-2-scaled.jpg,9/28/2025 0:00,9.000004,10.000004,43.6682900,4.1252340,,Espiguette,106430,Observation #106430,https://biolit.fr/observations/observation-106430/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073391-2-scaled.jpg,,,Ne sais pas +N1,106429,Sortie #106429,https://biolit.fr/sorties/sortie-106429/,De Filippis Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073391-2-scaled.jpg,9/28/2025 0:00,9.000004,10.000004,43.6682900,4.1252340,,Espiguette,106432,Observation #106432,https://biolit.fr/observations/observation-106432/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073391-2-scaled.jpg,,,Ne sais pas +N1,106438,Sortie #106438,https://biolit.fr/sorties/sortie-106438/,De Filippis Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073382-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073388-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073386-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073384-2-scaled.jpg,9/28/2025 0:00,9.0000000,10.000007,43.6682840,4.1252240,,Espiguette,106439,Observation #106439,https://biolit.fr/observations/observation-106439/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073382-2-scaled.jpg,,,Identifiable +N1,106438,Sortie #106438,https://biolit.fr/sorties/sortie-106438/,De Filippis Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073382-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073388-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073386-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073384-2-scaled.jpg,9/28/2025 0:00,9.0000000,10.000007,43.6682840,4.1252240,,Espiguette,106441,Observation #106441,https://biolit.fr/observations/observation-106441/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073388-2-scaled.jpg,,,Identifiable +N1,106438,Sortie #106438,https://biolit.fr/sorties/sortie-106438/,De Filippis Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073382-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073388-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073386-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073384-2-scaled.jpg,9/28/2025 0:00,9.0000000,10.000007,43.6682840,4.1252240,,Espiguette,106443,Observation #106443,https://biolit.fr/observations/observation-106443/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073384-2-scaled.jpg,,,Ne sais pas +N1,106438,Sortie #106438,https://biolit.fr/sorties/sortie-106438/,De Filippis Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073382-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073388-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073386-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073384-2-scaled.jpg,9/28/2025 0:00,9.0000000,10.000007,43.6682840,4.1252240,,Espiguette,106445,Observation #106445,https://biolit.fr/observations/observation-106445/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073386-2-scaled.jpg,,,Ne sais pas +N1,106447,Sortie #106447,https://biolit.fr/sorties/sortie-106447/,De Filippis Agnès,,9/28/2025 0:00,9.0000000,10.000007,43.6682840,4.1252240,,Espiguette,,,,,,,,,, +N1,106526,Sortie #106526,https://biolit.fr/sorties/sortie-106526/,BROQUERE MARION,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/10e1d59ec6c945b4a2ae007190cdc498/2025/09/ctenophore-scaled.jpg,07/07/2025,10.0000000,12.0000000,43.4379710000000,3.78041300000000,CPIE Littoral d'Occitanie,étang d'Ingril,,,,,,,,,, +N1,106531,Sortie #106531,https://biolit.fr/sorties/sortie-106531/,DHULESIA Olivier,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_145736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_150127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_150240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_150558-scaled.jpg,9/27/2025 0:00,15.000007,17.000007,43.2692720000000,5.29596800000000,,Ile de Frioul,106532,Observation #106532,https://biolit.fr/observations/observation-106532/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_150240-scaled.jpg,,TRUE,Identifiable +N1,106531,Sortie #106531,https://biolit.fr/sorties/sortie-106531/,DHULESIA Olivier,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_145736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_150127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_150240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_150558-scaled.jpg,9/27/2025 0:00,15.000007,17.000007,43.2692720000000,5.29596800000000,,Ile de Frioul,106534,Observation #106534,https://biolit.fr/observations/observation-106534/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_150127-scaled.jpg,,,Ne sais pas +N1,106531,Sortie #106531,https://biolit.fr/sorties/sortie-106531/,DHULESIA Olivier,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_145736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_150127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_150240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_150558-scaled.jpg,9/27/2025 0:00,15.000007,17.000007,43.2692720000000,5.29596800000000,,Ile de Frioul,106536,Observation #106536,https://biolit.fr/observations/observation-106536/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_150240-scaled.jpg,,TRUE,Ne sais pas +N1,106531,Sortie #106531,https://biolit.fr/sorties/sortie-106531/,DHULESIA Olivier,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_145736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_150127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_150240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_150558-scaled.jpg,9/27/2025 0:00,15.000007,17.000007,43.2692720000000,5.29596800000000,,Ile de Frioul,106538,Observation #106538,https://biolit.fr/observations/observation-106538/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_150558-scaled.jpg,,,Ne sais pas +N1,106562,Sortie #106562,https://biolit.fr/sorties/sortie-106562/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6892-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6891-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6890-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6889-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6898-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6893-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6906-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6901-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6911-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6907-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6894-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6899-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6900-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6897-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6902-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6905-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6896-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6913-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6903-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6908-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399050000000,5.36246000000000,Planète Mer,Plage au bain des dames,106565,Observation #106565,https://biolit.fr/observations/observation-106565/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6892-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6891-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6889-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6890-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6898-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6901-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6906-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6893-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6911-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6907-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6894-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6899-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6900-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6897-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6905-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6902-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6913-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6896-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6908-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6903-scaled.jpeg,,,Ne sais pas +N1,106562,Sortie #106562,https://biolit.fr/sorties/sortie-106562/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6892-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6891-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6890-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6889-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6898-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6893-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6906-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6901-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6911-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6907-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6894-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6899-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6900-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6897-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6902-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6905-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6896-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6913-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6903-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6908-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399050000000,5.36246000000000,Planète Mer,Plage au bain des dames,108373,Observation #108373,https://biolit.fr/observations/observation-108373/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6891-scaled.jpeg,,TRUE, +N1,106562,Sortie #106562,https://biolit.fr/sorties/sortie-106562/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6892-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6891-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6890-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6889-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6898-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6893-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6906-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6901-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6911-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6907-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6894-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6899-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6900-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6897-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6902-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6905-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6896-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6913-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6903-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6908-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399050000000,5.36246000000000,Planète Mer,Plage au bain des dames,108376,Observation #108376,https://biolit.fr/observations/observation-108376/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6889-scaled.jpeg,,, +N1,106562,Sortie #106562,https://biolit.fr/sorties/sortie-106562/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6892-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6891-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6890-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6889-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6898-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6893-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6906-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6901-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6911-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6907-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6894-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6899-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6900-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6897-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6902-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6905-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6896-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6913-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6903-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6908-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399050000000,5.36246000000000,Planète Mer,Plage au bain des dames,108378,Observation #108378,https://biolit.fr/observations/observation-108378/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6896-scaled.jpeg,,, +N1,106562,Sortie #106562,https://biolit.fr/sorties/sortie-106562/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6892-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6891-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6890-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6889-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6898-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6893-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6906-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6901-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6911-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6907-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6894-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6899-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6900-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6897-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6902-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6905-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6896-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6913-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6903-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6908-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399050000000,5.36246000000000,Planète Mer,Plage au bain des dames,108380,Observation #108380,https://biolit.fr/observations/observation-108380/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6898-scaled.jpeg,,, +N1,106562,Sortie #106562,https://biolit.fr/sorties/sortie-106562/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6892-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6891-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6890-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6889-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6898-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6893-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6906-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6901-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6911-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6907-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6894-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6899-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6900-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6897-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6902-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6905-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6896-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6913-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6903-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6908-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399050000000,5.36246000000000,Planète Mer,Plage au bain des dames,108382,Observation #108382,https://biolit.fr/observations/observation-108382/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6894-scaled.jpeg,,, +N1,106562,Sortie #106562,https://biolit.fr/sorties/sortie-106562/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6892-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6891-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6890-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6889-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6898-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6893-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6906-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6901-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6911-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6907-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6894-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6899-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6900-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6897-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6902-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6905-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6896-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6913-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6903-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6908-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399050000000,5.36246000000000,Planète Mer,Plage au bain des dames,108384,Observation #108384,https://biolit.fr/observations/observation-108384/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6890-scaled.jpeg,,, +N1,106562,Sortie #106562,https://biolit.fr/sorties/sortie-106562/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6892-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6891-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6890-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6889-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6898-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6893-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6906-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6901-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6911-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6907-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6894-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6899-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6900-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6897-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6902-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6905-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6896-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6913-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6903-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6908-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399050000000,5.36246000000000,Planète Mer,Plage au bain des dames,108386,Observation #108386,https://biolit.fr/observations/observation-108386/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6903-scaled.jpeg,,, +N1,106562,Sortie #106562,https://biolit.fr/sorties/sortie-106562/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6892-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6891-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6890-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6889-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6898-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6893-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6906-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6901-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6911-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6907-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6894-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6899-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6900-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6897-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6902-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6905-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6896-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6913-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6903-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6908-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399050000000,5.36246000000000,Planète Mer,Plage au bain des dames,108388,Observation #108388,https://biolit.fr/observations/observation-108388/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6905-scaled.jpeg,,, +N1,106562,Sortie #106562,https://biolit.fr/sorties/sortie-106562/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6892-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6891-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6890-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6889-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6898-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6893-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6906-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6901-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6911-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6907-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6894-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6899-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6900-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6897-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6902-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6905-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6896-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6913-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6903-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6908-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399050000000,5.36246000000000,Planète Mer,Plage au bain des dames,108390,Observation #108390,https://biolit.fr/observations/observation-108390/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6906-scaled.jpeg,,, +N1,106562,Sortie #106562,https://biolit.fr/sorties/sortie-106562/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6892-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6891-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6890-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6889-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6898-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6893-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6906-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6901-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6911-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6907-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6894-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6899-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6900-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6897-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6902-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6905-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6896-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6913-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6903-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6908-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399050000000,5.36246000000000,Planète Mer,Plage au bain des dames,108392,Observation #108392,https://biolit.fr/observations/observation-108392/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6913-scaled.jpeg,,, +N1,106595,Sortie #106595,https://biolit.fr/sorties/sortie-106595/,Goossens Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4678-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4679-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4681-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4682-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4685-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4686-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4687-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4688-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4691-scaled.jpg,10/01/2025,10.0000000,12.0000000,42.5000450000000,3.12850300000000,CPIE Littoral d'Occitanie,Plage del Forat,106596,Observation #106596,https://biolit.fr/observations/observation-106596/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4686-scaled.jpg,,TRUE,Identifiable +N1,106595,Sortie #106595,https://biolit.fr/sorties/sortie-106595/,Goossens Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4678-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4679-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4681-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4682-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4685-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4686-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4687-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4688-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4691-scaled.jpg,10/01/2025,10.0000000,12.0000000,42.5000450000000,3.12850300000000,CPIE Littoral d'Occitanie,Plage del Forat,106598,Observation #106598,https://biolit.fr/observations/observation-106598/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4677-scaled.jpg,,,Ne sais pas +N1,106595,Sortie #106595,https://biolit.fr/sorties/sortie-106595/,Goossens Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4678-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4679-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4681-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4682-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4685-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4686-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4687-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4688-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4691-scaled.jpg,10/01/2025,10.0000000,12.0000000,42.5000450000000,3.12850300000000,CPIE Littoral d'Occitanie,Plage del Forat,106600,Observation #106600,https://biolit.fr/observations/observation-106600/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4687-scaled.jpg,,,Identifiable +N1,106595,Sortie #106595,https://biolit.fr/sorties/sortie-106595/,Goossens Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4678-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4679-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4681-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4682-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4685-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4686-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4687-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4688-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4691-scaled.jpg,10/01/2025,10.0000000,12.0000000,42.5000450000000,3.12850300000000,CPIE Littoral d'Occitanie,Plage del Forat,106602,Observation #106602,https://biolit.fr/observations/observation-106602/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4682-scaled.jpg,,,Identifiable +N1,106610,Sortie #106610,https://biolit.fr/sorties/sortie-106610/,De Filippis Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/10/1000074101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/10/1000074097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/10/1000074082-scaled.jpg,10/05/2025,10.0000000,11.0000000,43.6682280,4.1251650,,Espiguette,106611,Observation #106611,https://biolit.fr/observations/observation-106611/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/10/1000074101-scaled.jpg,,,Identifiable +N1,106610,Sortie #106610,https://biolit.fr/sorties/sortie-106610/,De Filippis Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/10/1000074101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/10/1000074097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/10/1000074082-scaled.jpg,10/05/2025,10.0000000,11.0000000,43.6682280,4.1251650,,Espiguette,106613,Observation #106613,https://biolit.fr/observations/observation-106613/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/10/1000074097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/10/1000074082-scaled.jpg,,,Identifiable +N1,106615,Sortie #106615,https://biolit.fr/sorties/sortie-106615/,De Filippis Agnès,,10/05/2025,10.0000000,11.0000000,43.6682280,4.1251650,,Espiguette,,,,,,,,,, +N1,106616,Sortie #106616,https://biolit.fr/sorties/sortie-106616/,JEAN Antoines,,10/01/2025,14.0000000,15.0000000,47.1346080000000,-2.24730500000000,,Préfailles Pointe Saint-Gildas,,,,,,,,,, +N1,106708,Sortie #106708,https://biolit.fr/sorties/sortie-106708/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/CIone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tomate-de-mer-scaled.jpg,9/23/2025 0:00,15.0000000,16.0000000,48.7025750000000,-1.84708700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,106741,Observation #106741,https://biolit.fr/observations/observation-106741/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-2-scaled.jpg,,TRUE,Identifiable +N1,106708,Sortie #106708,https://biolit.fr/sorties/sortie-106708/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/CIone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tomate-de-mer-scaled.jpg,9/23/2025 0:00,15.0000000,16.0000000,48.7025750000000,-1.84708700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,106743,Observation #106743,https://biolit.fr/observations/observation-106743/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-scaled.jpg,,TRUE,Identifiable +N1,106708,Sortie #106708,https://biolit.fr/sorties/sortie-106708/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/CIone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tomate-de-mer-scaled.jpg,9/23/2025 0:00,15.0000000,16.0000000,48.7025750000000,-1.84708700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,106745,Observation #106745,https://biolit.fr/observations/observation-106745/,Botrylloides diegensis,Botrylle de San Diego,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-1-scaled.jpg,,TRUE,Identifiable +N1,106708,Sortie #106708,https://biolit.fr/sorties/sortie-106708/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/CIone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tomate-de-mer-scaled.jpg,9/23/2025 0:00,15.0000000,16.0000000,48.7025750000000,-1.84708700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,106747,Observation #106747,https://biolit.fr/observations/observation-106747/,Ciona intestinalis,Cione intestinale,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-scaled.jpg,,,Identifiable +N1,106708,Sortie #106708,https://biolit.fr/sorties/sortie-106708/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/CIone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tomate-de-mer-scaled.jpg,9/23/2025 0:00,15.0000000,16.0000000,48.7025750000000,-1.84708700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,106749,Observation #106749,https://biolit.fr/observations/observation-106749/,Conger conger,Congre,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-8-scaled.jpg,,,Identifiable +N1,106708,Sortie #106708,https://biolit.fr/sorties/sortie-106708/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/CIone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tomate-de-mer-scaled.jpg,9/23/2025 0:00,15.0000000,16.0000000,48.7025750000000,-1.84708700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,106751,Observation #106751,https://biolit.fr/observations/observation-106751/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-scaled.jpg,,TRUE,Identifiable +N1,106708,Sortie #106708,https://biolit.fr/sorties/sortie-106708/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/CIone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tomate-de-mer-scaled.jpg,9/23/2025 0:00,15.0000000,16.0000000,48.7025750000000,-1.84708700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,106753,Observation #106753,https://biolit.fr/observations/observation-106753/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-2-scaled.jpg,,TRUE,Identifiable +N1,106708,Sortie #106708,https://biolit.fr/sorties/sortie-106708/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/CIone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tomate-de-mer-scaled.jpg,9/23/2025 0:00,15.0000000,16.0000000,48.7025750000000,-1.84708700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,106755,Observation #106755,https://biolit.fr/observations/observation-106755/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-2-scaled.jpg,,TRUE,Identifiable +N1,106708,Sortie #106708,https://biolit.fr/sorties/sortie-106708/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/CIone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tomate-de-mer-scaled.jpg,9/23/2025 0:00,15.0000000,16.0000000,48.7025750000000,-1.84708700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,106757,Observation #106757,https://biolit.fr/observations/observation-106757/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tomate-de-mer-scaled.jpg,,,Identifiable +N1,106739,Sortie #106739,https://biolit.fr/sorties/sortie-106739/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c01a5869814dd6070318f10d0f43f06/2025/10/20190226-sabot-BioLit-Jessica-Bourcillier_La-teste-de-Buch.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c01a5869814dd6070318f10d0f43f06/2025/10/20190821_RhizostomecBioLit-Lexton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c01a5869814dd6070318f10d0f43f06/2025/10/Actinia_equina_BioLit-_Phil.jpg,10/03/2025,10.0000000,11.0000000,45.9470120000000,-1.12060500000,,test,,,,,,,,,, +N1,106768,Sortie #106768,https://biolit.fr/sorties/sortie-106768/,PATRON Esther,,10/03/2025,9.0000000,12.0000000,48.4382790000000,-4.78646600000000,,Île Ségal Plouarzel,,,,,,,,,, +N1,106775,Sortie #106775,https://biolit.fr/sorties/sortie-106775/,PATRON Esther,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5214.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5212.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5211.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5209.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5208.jpeg,10/03/2025,9.0000000,12.0000000,48.4382940000000,-4.78684200000000,,Île Ségal Plouarzel,,,,,,,,,, +N1,106793,Sortie #106793,https://biolit.fr/sorties/sortie-106793/,PATRON Esther,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5214-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5212-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5211-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5209-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5208-1.jpeg,10/03/2025,9.0000000,12.0000000,48.4382150000000,-4.78689600000000,,Île Ségal Plouarzel,106794,Observation #106794,https://biolit.fr/observations/observation-106794/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5214-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5212-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5211-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5209-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5208-1.jpeg,,,Identifiable +N1,106797,Sortie #106797,https://biolit.fr/sorties/sortie-106797/,PATRON Esther,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_1968-scaled.jpeg,5/18/2025 0:00,16.0000000,16.0:45,48.0182140000000,-4.53538200000000,,Audierne sentier de grande randonnée 34,,,,,,,,,, +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106831,Observation #106831,https://biolit.fr/observations/observation-106831/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg,,TRUE,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106833,Observation #106833,https://biolit.fr/observations/observation-106833/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg,,TRUE,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106835,Observation #106835,https://biolit.fr/observations/observation-106835/,Pagurus bernhardus,Bernard-l'ermite commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg,,,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106837,Observation #106837,https://biolit.fr/observations/observation-106837/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg,,TRUE,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106839,Observation #106839,https://biolit.fr/observations/observation-106839/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg,,,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106841,Observation #106841,https://biolit.fr/observations/observation-106841/,Acanthocardia aculeata,Bucarde épineuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg,,TRUE,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106843,Observation #106843,https://biolit.fr/observations/observation-106843/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg,,TRUE,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106845,Observation #106845,https://biolit.fr/observations/observation-106845/,Ciona intestinalis,Cione intestinale,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg,,,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106847,Observation #106847,https://biolit.fr/observations/observation-106847/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg,,TRUE,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106849,Observation #106849,https://biolit.fr/observations/observation-106849/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg,,TRUE,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106851,Observation #106851,https://biolit.fr/observations/observation-106851/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg,,,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106853,Observation #106853,https://biolit.fr/observations/observation-106853/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg,,TRUE,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106855,Observation #106855,https://biolit.fr/observations/observation-106855/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg,,TRUE,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106857,Observation #106857,https://biolit.fr/observations/observation-106857/,Laevicardium crassum,Bucarde de Norvège,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg,,,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106859,Observation #106859,https://biolit.fr/observations/observation-106859/,Macropodia rostrata,Macropode rostré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg,,,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106861,Observation #106861,https://biolit.fr/observations/observation-106861/,Tethya citrina,Orange de mer de Manche Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg,,,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106863,Observation #106863,https://biolit.fr/observations/observation-106863/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg,,TRUE,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106865,Observation #106865,https://biolit.fr/observations/observation-106865/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg,,TRUE,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106867,Observation #106867,https://biolit.fr/observations/observation-106867/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,,TRUE,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106869,Observation #106869,https://biolit.fr/observations/observation-106869/,Sacculina carcini,Sacculine du crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,,TRUE,Identifiable +N1,106873,Sortie #106873,https://biolit.fr/sorties/sortie-106873/,PATRON Esther,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5238.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/6C3C75BB-D8C3-4470-B820-A25FA383DAF4.jpeg,10/03/2025,9.0000000,12.0000000,48.4381730000000,-4.78660600000000,,Île Ségal Plouarzel,106874,Observation #106874,https://biolit.fr/observations/observation-106874/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5238.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/6C3C75BB-D8C3-4470-B820-A25FA383DAF4.jpeg,,,Identifiable +N1,106873,Sortie #106873,https://biolit.fr/sorties/sortie-106873/,PATRON Esther,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5238.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/6C3C75BB-D8C3-4470-B820-A25FA383DAF4.jpeg,10/03/2025,9.0000000,12.0000000,48.4381730000000,-4.78660600000000,,Île Ségal Plouarzel,106876,Observation #106876,https://biolit.fr/observations/observation-106876/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5238.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/6C3C75BB-D8C3-4470-B820-A25FA383DAF4.jpeg,,,Identifiable +N1,106880,Sortie #106880,https://biolit.fr/sorties/sortie-106880/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6296-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6289.jpeg,10/08/2025,12.0000000,12.0:33,43.271131000000,6.57889100000000,,Port Grimaud Ile Verte,106881,Observation #106881,https://biolit.fr/observations/observation-106881/,Alcedo atthis,Martin-pêcheur d'Europe,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6296-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6289.jpeg,,TRUE,Identifiable +N1,106890,Sortie #106890,https://biolit.fr/sorties/sortie-106890/,Pigeuad Thierry,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ccf65fe1e36ff560da2d4d5b07c60572/2025/10/IMG_2466-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ccf65fe1e36ff560da2d4d5b07c60572/2025/10/IMG_2467-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ccf65fe1e36ff560da2d4d5b07c60572/2025/10/IMG_2468-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ccf65fe1e36ff560da2d4d5b07c60572/2025/10/IMG_2470-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ccf65fe1e36ff560da2d4d5b07c60572/2025/10/IMG_2472-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ccf65fe1e36ff560da2d4d5b07c60572/2025/10/IMG_2473-scaled.jpeg,10/09/2025,14.0:15,16.0:15,44.6572820000000,-1.23879400000000,Planète Mer,Ponton du cap ferret,,,,,,,,,, +N1,106903,Sortie #106903,https://biolit.fr/sorties/sortie-106903/,Pigeuad Thierry,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ccf65fe1e36ff560da2d4d5b07c60572/2025/10/IMG_2474-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ccf65fe1e36ff560da2d4d5b07c60572/2025/10/IMG_2475-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ccf65fe1e36ff560da2d4d5b07c60572/2025/10/IMG_2478-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ccf65fe1e36ff560da2d4d5b07c60572/2025/10/IMG_2481-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ccf65fe1e36ff560da2d4d5b07c60572/2025/10/IMG_2479-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ccf65fe1e36ff560da2d4d5b07c60572/2025/10/IMG_2480-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ccf65fe1e36ff560da2d4d5b07c60572/2025/10/IMG_2477-scaled.jpeg,10/09/2025,16.0:19,18.0:19,44.6499340000000,-1.26016600000000,Planète Mer,Cap ferret plage atlantique,,,,,,,,,, +N1,106905,Sortie #106905,https://biolit.fr/sorties/sortie-106905/,Vargas Hugo,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/821c82c61a1ba60957770f32cfae2434/2025/10/IMG_0118-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/821c82c61a1ba60957770f32cfae2434/2025/10/IMG_0124-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/821c82c61a1ba60957770f32cfae2434/2025/10/IMG_0123-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/821c82c61a1ba60957770f32cfae2434/2025/10/IMG_0122-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/821c82c61a1ba60957770f32cfae2434/2025/10/IMG_0120-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/821c82c61a1ba60957770f32cfae2434/2025/10/IMG_0116-scaled.jpeg,10/09/2025,15.0:16,18.0:17,44.6636140000000,-1.16411800000000,,Cap ferret,,,,,,,,,, +N1,106918,Sortie #106918,https://biolit.fr/sorties/sortie-106918/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5608-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5609-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5610-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5613-scaled.jpg,09/06/2025,14.0000000,16.0000000,42.8979490000000,3.05500000000000,,Leucate,106919,Observation #106919,https://biolit.fr/observations/observation-106919/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5608-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5609-scaled.jpg,,,Ne sais pas +N1,106918,Sortie #106918,https://biolit.fr/sorties/sortie-106918/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5608-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5609-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5610-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5613-scaled.jpg,09/06/2025,14.0000000,16.0000000,42.8979490000000,3.05500000000000,,Leucate,106921,Observation #106921,https://biolit.fr/observations/observation-106921/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5610-scaled.jpg,,,non-identifiable +N1,106918,Sortie #106918,https://biolit.fr/sorties/sortie-106918/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5608-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5609-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5610-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5613-scaled.jpg,09/06/2025,14.0000000,16.0000000,42.8979490000000,3.05500000000000,,Leucate,106923,Observation #106923,https://biolit.fr/observations/observation-106923/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5613-scaled.jpg,,,Ne sais pas +N1,106927,Sortie #106927,https://biolit.fr/sorties/sortie-106927/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5600.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5601.jpg,9/13/2025 0:00,10.0000000,10.0000000,43.129653000000,3.14460800000000,,Gruissan,106928,Observation #106928,https://biolit.fr/observations/observation-106928/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5600.jpg,,,Identifiable +N1,106927,Sortie #106927,https://biolit.fr/sorties/sortie-106927/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5600.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5601.jpg,9/13/2025 0:00,10.0000000,10.0000000,43.129653000000,3.14460800000000,,Gruissan,106930,Observation #106930,https://biolit.fr/observations/observation-106930/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5601.jpg,,,Ne sais pas +N1,106933,Sortie #106933,https://biolit.fr/sorties/sortie-106933/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_7912-scaled.jpg,08/02/2025,11.0000000,12.0000000,42.9893460000000,6.18907900000000,,porquerolles,106934,Observation #106934,https://biolit.fr/observations/observation-106934/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_7912-scaled.jpg,,TRUE,Identifiable +N1,106937,Sortie #106937,https://biolit.fr/sorties/sortie-106937/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5617-scaled.jpg,09/10/2025,14.0000000,14.0000000,43.1577920000000,3.16886900000000,,Narbonne Plage,106938,Observation #106938,https://biolit.fr/observations/observation-106938/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5617-scaled.jpg,,,Identifiable +N1,107023,Sortie #107023,https://biolit.fr/sorties/sortie-107023/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6686-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6691-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6696-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6701-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-scaled.jpeg,10/08/2025,10.000001,15.0000000,46.4872270000000,-1.76815500000000,,LES SABLES D'OLONNE,107024,Observation #107024,https://biolit.fr/observations/observation-107024/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6686-scaled.jpeg,,,Identifiable +N1,107023,Sortie #107023,https://biolit.fr/sorties/sortie-107023/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6686-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6691-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6696-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6701-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-scaled.jpeg,10/08/2025,10.000001,15.0000000,46.4872270000000,-1.76815500000000,,LES SABLES D'OLONNE,107026,Observation #107026,https://biolit.fr/observations/observation-107026/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6686-scaled.jpeg,,,Identifiable +N1,107028,Sortie #107028,https://biolit.fr/sorties/sortie-107028/,CHAILLOU PATRICK,,10/08/2025,10.0000000,15.0000000,46.4873450000000,-1.76764000000000,,LES SABLES D'OLONNE,,,,,,,,,, +N1,107041,Sortie #107041,https://biolit.fr/sorties/sortie-107041/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6691-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6696-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6701-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-1-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4873450000000,-1.76764000000000,,LES SABLES D'OLONNE,107042,Observation #107042,https://biolit.fr/observations/observation-107042/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6691-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6696-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6701-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-1-scaled.jpeg,,,Ne sais pas +N1,107058,Sortie #107058,https://biolit.fr/sorties/sortie-107058/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6696-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6701-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-2-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.490742000000,-1.77384100000000,,LES SABLES D'OLONNE,107059,Observation #107059,https://biolit.fr/observations/observation-107059/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6696-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6701-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-2-scaled.jpeg,,,Ne sais pas +N1,107058,Sortie #107058,https://biolit.fr/sorties/sortie-107058/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6696-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6701-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-2-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.490742000000,-1.77384100000000,,LES SABLES D'OLONNE,107061,Observation #107061,https://biolit.fr/observations/observation-107061/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-2-scaled.jpeg,,TRUE,Ne sais pas +N1,107058,Sortie #107058,https://biolit.fr/sorties/sortie-107058/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6696-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6701-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-2-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.490742000000,-1.77384100000000,,LES SABLES D'OLONNE,107063,Observation #107063,https://biolit.fr/observations/observation-107063/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-2-scaled.jpeg,,TRUE,Identifiable +N1,107058,Sortie #107058,https://biolit.fr/sorties/sortie-107058/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6696-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6701-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-2-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.490742000000,-1.77384100000000,,LES SABLES D'OLONNE,107065,Observation #107065,https://biolit.fr/observations/observation-107065/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-2-scaled.jpeg,,,Ne sais pas +N1,107058,Sortie #107058,https://biolit.fr/sorties/sortie-107058/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6696-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6701-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-2-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.490742000000,-1.77384100000000,,LES SABLES D'OLONNE,107067,Observation #107067,https://biolit.fr/observations/observation-107067/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-2-scaled.jpeg,,,Ne sais pas +N1,107058,Sortie #107058,https://biolit.fr/sorties/sortie-107058/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6696-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6701-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-2-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.490742000000,-1.77384100000000,,LES SABLES D'OLONNE,107069,Observation #107069,https://biolit.fr/observations/observation-107069/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-2-scaled.jpeg,,,Ne sais pas +N1,107058,Sortie #107058,https://biolit.fr/sorties/sortie-107058/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6696-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6701-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-2-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.490742000000,-1.77384100000000,,LES SABLES D'OLONNE,107071,Observation #107071,https://biolit.fr/observations/observation-107071/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-2-scaled.jpeg,,,Ne sais pas +N1,107058,Sortie #107058,https://biolit.fr/sorties/sortie-107058/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6696-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6701-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-2-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.490742000000,-1.77384100000000,,LES SABLES D'OLONNE,107073,Observation #107073,https://biolit.fr/observations/observation-107073/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-2-scaled.jpeg,,,Ne sais pas +N1,107058,Sortie #107058,https://biolit.fr/sorties/sortie-107058/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6696-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6701-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-2-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.490742000000,-1.77384100000000,,LES SABLES D'OLONNE,107075,Observation #107075,https://biolit.fr/observations/observation-107075/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712-2.jpeg,,,Ne sais pas +N1,107058,Sortie #107058,https://biolit.fr/sorties/sortie-107058/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6696-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6701-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-2-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.490742000000,-1.77384100000000,,LES SABLES D'OLONNE,107077,Observation #107077,https://biolit.fr/observations/observation-107077/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-2-scaled.jpeg,,,Ne sais pas +N1,107058,Sortie #107058,https://biolit.fr/sorties/sortie-107058/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6696-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6701-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-2-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.490742000000,-1.77384100000000,,LES SABLES D'OLONNE,107079,Observation #107079,https://biolit.fr/observations/observation-107079/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-2-scaled.jpeg,,TRUE,Ne sais pas +N1,107180,Sortie #107180,https://biolit.fr/sorties/sortie-107180/,Leroux Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000025988-scaled.jpg,10/12/2025,16.0000000,17.0000000,50.8038440,1.6198570,,SLACK / POINTE AUX OIES,107181,Observation #107181,https://biolit.fr/observations/observation-107181/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000025988-scaled.jpg,,TRUE,Identifiable +N1,107184,Sortie #107184,https://biolit.fr/sorties/sortie-107184/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6598-5.jpeg,10/11/2025,11.0:55,12.0000000,43.2711550000000,6.57894900000000,,Port Grimaud - Ile Verte,107187,Observation #107187,https://biolit.fr/observations/observation-107187/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6598-5.jpeg,,,Identifiable +N1,107193,Sortie #107193,https://biolit.fr/sorties/sortie-107193/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6582.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6581.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6580.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6537.jpeg,10/11/2025,13.0:35,13.0000000,43.2696590000000,6.57956300000000,,Port Grimaud - plagette rie de la Giscle,107194,Observation #107194,https://biolit.fr/observations/observation-107194/,Actitis hypoleucos,Chevalier guignette,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6582.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6580.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6537.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6581.jpeg,,,Identifiable +N1,107197,Sortie #107197,https://biolit.fr/sorties/sortie-107197/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6589-scaled.jpeg,10/12/2025,12.000005,12.0000000,43.2696690000000,6.57974000000000,,Port grimaud - plagette rue de la Giscle,107198,Observation #107198,https://biolit.fr/observations/observation-107198/,Atherina boyeri,Joël,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6589-scaled.jpeg,,,Identifiable +N1,107201,Sortie #107201,https://biolit.fr/sorties/sortie-107201/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6626.jpeg,10/10/2025,17.0:38,17.0000000,43.2846830000000,6.60085200000000,,Beauvallon,107202,Observation #107202,https://biolit.fr/observations/observation-107202/,Phalacrocorax aristotelis,Cormoran huppé,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6626.jpeg,,,Identifiable +N1,107206,Sortie #107206,https://biolit.fr/sorties/sortie-107206/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6350.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6351-scaled.jpeg,10/10/2025,13.0:21,13.0:25,43.2861520000000,6.60452100000000,,Beauvallon,107207,Observation #107207,https://biolit.fr/observations/observation-107207/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6350.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6351-scaled.jpeg,,TRUE,Identifiable +N1,107211,Sortie #107211,https://biolit.fr/sorties/sortie-107211/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6386-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6640.jpeg,10/10/2025,16.0:31,16.0000000,43.2702600000000,6.59394300000000,,Port Grimaud,107212,Observation #107212,https://biolit.fr/observations/observation-107212/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6640.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6386-scaled.jpeg,,,Identifiable +N1,107216,Sortie #107216,https://biolit.fr/sorties/sortie-107216/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6647-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6648.jpeg,10/10/2025,18.0:33,18.0:37,43.2720410000000,6.58202300000000,,Port Grimaud - grand bassin,107217,Observation #107217,https://biolit.fr/observations/observation-107217/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6648.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6647-scaled.jpeg,,,Identifiable +N1,107221,Sortie #107221,https://biolit.fr/sorties/sortie-107221/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_4904.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6661.jpeg,9/29/2025 0:00,18.0:53,19.0000000,43.2705890000000,6.57855300000000,,Port Grimaud plagette Ile des 4 vents,107222,Observation #107222,https://biolit.fr/observations/observation-107222/,Actitis hypoleucos,Chevalier guignette,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6661.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_4904.jpeg,,,Identifiable +N1,107225,Sortie #107225,https://biolit.fr/sorties/sortie-107225/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_4789-scaled.jpeg,9/27/2025 0:00,11.0000000,11.000003,43.270936000000,6.57850400000000,,Port grimaud ile des 4 vents,107226,Observation #107226,https://biolit.fr/observations/observation-107226/,Sparus aurata,Dorade (daurade) royale,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_4789-scaled.jpeg,,,Identifiable +N1,107230,Sortie #107230,https://biolit.fr/sorties/sortie-107230/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6663.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6664.jpeg,9/27/2025 0:00,10.0:59,11.000007,43.2709240000000,6.5785600000000,,Port Grimaud - ile des 4 vents,107231,Observation #107231,https://biolit.fr/observations/observation-107231/,Diplodus sargus,Sar commun de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6663.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6664.jpeg,,,Identifiable +N1,107234,Sortie #107234,https://biolit.fr/sorties/sortie-107234/,BROSSARD ANGELIQUE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f96e60b2089a6b58e414574587153c1d/2025/10/IMG_5610-oiseau-scaled.png,10/09/2025,10.0000000,12.0000000,46.9240950000000,-2.16018700000000,,POLDER SEBASTOPOL,,,,,,,,,, +N1,107236,Sortie #107236,https://biolit.fr/sorties/sortie-107236/,BROSSARD ANGELIQUE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f96e60b2089a6b58e414574587153c1d/2025/10/IMG_5616-oiseaux-scaled.jpg,10/09/2025,10.0000000,12.0000000,46.9478070000000,-2.15392100000000,,POLDER SEBASTOPOL,,,,,,,,,, +N1,107238,Sortie #107238,https://biolit.fr/sorties/sortie-107238/,BROSSARD ANGELIQUE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f96e60b2089a6b58e414574587153c1d/2025/10/IMG_5623-Oiseaux--scaled.jpg,10/09/2025,10.0000000,12.0000000,46.9465180000000,-2.15718300000000,,POLDER SEBASTOPOL,,,,,,,,,, +N1,107242,Sortie #107242,https://biolit.fr/sorties/sortie-107242/,MAUNOURY Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d160b91cf3c249fd9674d0b8575b58b8/2025/10/goeland-argente-juvenile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d160b91cf3c249fd9674d0b8575b58b8/2025/10/Avocettes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d160b91cf3c249fd9674d0b8575b58b8/2025/10/Grand-Cormoran-scaled.jpg,10/09/2025,10.0000000,12.0000000,46.9418860000000,-2.15705400000000,,Noirmoutier,107243,Observation #107243,https://biolit.fr/observations/observation-107243/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d160b91cf3c249fd9674d0b8575b58b8/2025/10/goeland-argente-juvenile-scaled.jpg,,,Identifiable +N1,107242,Sortie #107242,https://biolit.fr/sorties/sortie-107242/,MAUNOURY Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d160b91cf3c249fd9674d0b8575b58b8/2025/10/goeland-argente-juvenile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d160b91cf3c249fd9674d0b8575b58b8/2025/10/Avocettes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d160b91cf3c249fd9674d0b8575b58b8/2025/10/Grand-Cormoran-scaled.jpg,10/09/2025,10.0000000,12.0000000,46.9418860000000,-2.15705400000000,,Noirmoutier,107245,Observation #107245,https://biolit.fr/observations/observation-107245/,Recurvirostra avosetta,Avocette élégante,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d160b91cf3c249fd9674d0b8575b58b8/2025/10/Avocettes-scaled.jpg,,,Identifiable +N1,107242,Sortie #107242,https://biolit.fr/sorties/sortie-107242/,MAUNOURY Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d160b91cf3c249fd9674d0b8575b58b8/2025/10/goeland-argente-juvenile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d160b91cf3c249fd9674d0b8575b58b8/2025/10/Avocettes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d160b91cf3c249fd9674d0b8575b58b8/2025/10/Grand-Cormoran-scaled.jpg,10/09/2025,10.0000000,12.0000000,46.9418860000000,-2.15705400000000,,Noirmoutier,107247,Observation #107247,https://biolit.fr/observations/observation-107247/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d160b91cf3c249fd9674d0b8575b58b8/2025/10/Grand-Cormoran-scaled.jpg,,,Identifiable +N1,107259,Sortie #107259,https://biolit.fr/sorties/sortie-107259/,Yuste Enrique,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4c373576005c21ebf1c5a49e86625f55/2025/10/20251010_114554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4c373576005c21ebf1c5a49e86625f55/2025/10/20251009_180738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4c373576005c21ebf1c5a49e86625f55/2025/10/20251010_114603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4c373576005c21ebf1c5a49e86625f55/2025/10/20251010_143442-scaled.jpg,10/09/2025,9.0000000,17.0000000,44.6009830000000,-1.21103700000000,,Arcachon,,,,,,,,,, +N1,107268,Sortie #107268,https://biolit.fr/sorties/sortie-107268/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-de-norvege_Laevicardium-crassum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-rouge_acanthocardia-echinata-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/couteau-americain_ensis-leei-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Couteau-gousse_Pharus-legumen-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/flion-tronque_donax-trunculus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Lutraire-elliptique_Lutraria-lutraria-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/semicassis-saburon-2-scaled.jpg,10/10/2025,11.0000000,12.0000000,43.724531000000,-1.43094800000000,Centre de la mer,Plage des casernes de Seignosse,107269,Observation #107269,https://biolit.fr/observations/observation-107269/,Laevicardium crassum,Bucarde de Norvège,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-de-norvege_Laevicardium-crassum-scaled.jpg,,TRUE,Identifiable +N1,107268,Sortie #107268,https://biolit.fr/sorties/sortie-107268/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-de-norvege_Laevicardium-crassum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-rouge_acanthocardia-echinata-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/couteau-americain_ensis-leei-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Couteau-gousse_Pharus-legumen-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/flion-tronque_donax-trunculus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Lutraire-elliptique_Lutraria-lutraria-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/semicassis-saburon-2-scaled.jpg,10/10/2025,11.0000000,12.0000000,43.724531000000,-1.43094800000000,Centre de la mer,Plage des casernes de Seignosse,107271,Observation #107271,https://biolit.fr/observations/observation-107271/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-rouge_acanthocardia-echinata-scaled.jpg,,TRUE,Identifiable +N1,107268,Sortie #107268,https://biolit.fr/sorties/sortie-107268/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-de-norvege_Laevicardium-crassum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-rouge_acanthocardia-echinata-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/couteau-americain_ensis-leei-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Couteau-gousse_Pharus-legumen-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/flion-tronque_donax-trunculus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Lutraire-elliptique_Lutraria-lutraria-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/semicassis-saburon-2-scaled.jpg,10/10/2025,11.0000000,12.0000000,43.724531000000,-1.43094800000000,Centre de la mer,Plage des casernes de Seignosse,107273,Observation #107273,https://biolit.fr/observations/observation-107273/,Ensis leei,Couteau américain,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/couteau-americain_ensis-leei-2.jpg,,,Identifiable +N1,107268,Sortie #107268,https://biolit.fr/sorties/sortie-107268/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-de-norvege_Laevicardium-crassum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-rouge_acanthocardia-echinata-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/couteau-americain_ensis-leei-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Couteau-gousse_Pharus-legumen-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/flion-tronque_donax-trunculus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Lutraire-elliptique_Lutraria-lutraria-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/semicassis-saburon-2-scaled.jpg,10/10/2025,11.0000000,12.0000000,43.724531000000,-1.43094800000000,Centre de la mer,Plage des casernes de Seignosse,107275,Observation #107275,https://biolit.fr/observations/observation-107275/,Pharus legumen,Couteau-gousse,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Couteau-gousse_Pharus-legumen-1-scaled.jpg,,,Identifiable +N1,107268,Sortie #107268,https://biolit.fr/sorties/sortie-107268/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-de-norvege_Laevicardium-crassum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-rouge_acanthocardia-echinata-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/couteau-americain_ensis-leei-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Couteau-gousse_Pharus-legumen-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/flion-tronque_donax-trunculus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Lutraire-elliptique_Lutraria-lutraria-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/semicassis-saburon-2-scaled.jpg,10/10/2025,11.0000000,12.0000000,43.724531000000,-1.43094800000000,Centre de la mer,Plage des casernes de Seignosse,107277,Observation #107277,https://biolit.fr/observations/observation-107277/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/flion-tronque_donax-trunculus-scaled.jpg,,TRUE,Identifiable +N1,107268,Sortie #107268,https://biolit.fr/sorties/sortie-107268/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-de-norvege_Laevicardium-crassum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-rouge_acanthocardia-echinata-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/couteau-americain_ensis-leei-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Couteau-gousse_Pharus-legumen-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/flion-tronque_donax-trunculus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Lutraire-elliptique_Lutraria-lutraria-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/semicassis-saburon-2-scaled.jpg,10/10/2025,11.0000000,12.0000000,43.724531000000,-1.43094800000000,Centre de la mer,Plage des casernes de Seignosse,107279,Observation #107279,https://biolit.fr/observations/observation-107279/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/huitre-creuse-scaled.jpg,,TRUE,Identifiable +N1,107268,Sortie #107268,https://biolit.fr/sorties/sortie-107268/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-de-norvege_Laevicardium-crassum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-rouge_acanthocardia-echinata-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/couteau-americain_ensis-leei-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Couteau-gousse_Pharus-legumen-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/flion-tronque_donax-trunculus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Lutraire-elliptique_Lutraria-lutraria-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/semicassis-saburon-2-scaled.jpg,10/10/2025,11.0000000,12.0000000,43.724531000000,-1.43094800000000,Centre de la mer,Plage des casernes de Seignosse,107281,Observation #107281,https://biolit.fr/observations/observation-107281/,Lutraria lutraria,Lutraire elliptique,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Lutraire-elliptique_Lutraria-lutraria-scaled.jpg,,TRUE,Identifiable +N1,107268,Sortie #107268,https://biolit.fr/sorties/sortie-107268/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-de-norvege_Laevicardium-crassum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-rouge_acanthocardia-echinata-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/couteau-americain_ensis-leei-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Couteau-gousse_Pharus-legumen-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/flion-tronque_donax-trunculus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Lutraire-elliptique_Lutraria-lutraria-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/semicassis-saburon-2-scaled.jpg,10/10/2025,11.0000000,12.0000000,43.724531000000,-1.43094800000000,Centre de la mer,Plage des casernes de Seignosse,107283,Observation #107283,https://biolit.fr/observations/observation-107283/,Semicassis granulata,Casque granuleux,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/semicassis-saburon-2-scaled.jpg,,,Identifiable +N1,107286,Sortie #107286,https://biolit.fr/sorties/sortie-107286/,jeancler dominique,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ac8ca8accf60c901f3b72e538d93d5d0/2025/10/20251009_160420-scaled.jpg,10/09/2025,14.0000000,17.0000000,44.63,-1.26,Planète Mer,Cap Ferret Plage de l'Ouest,107287,Observation #107287,https://biolit.fr/observations/observation-107287/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ac8ca8accf60c901f3b72e538d93d5d0/2025/10/20251009_160420-scaled.jpg,,,Identifiable +N1,107290,Sortie #107290,https://biolit.fr/sorties/sortie-107290/,Céline,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/image-scaled.jpg,10/13/2025 0:00,17.0000000,17.0000000,43.2399360000000,5.36246500000000,Planète Mer,Bain des dames,107291,Observation #107291,https://biolit.fr/observations/observation-107291/,Peyssonnelia squamaria,Peyssonnelia,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/image-scaled.jpg,,,Identifiable +N1,107296,Sortie #107296,https://biolit.fr/sorties/sortie-107296/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6553ea0bedfc3fedebf5fa4361dc1f68/2025/10/IMG_9892-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6553ea0bedfc3fedebf5fa4361dc1f68/2025/10/IMG_9893-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6553ea0bedfc3fedebf5fa4361dc1f68/2025/10/IMG_9895-scaled.jpeg,10/13/2025 0:00,17.0:15,17.0:45,43.2397380000000,5.36229400000000,Planète Mer,Plage du bain des dames,107297,Observation #107297,https://biolit.fr/observations/observation-107297/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6553ea0bedfc3fedebf5fa4361dc1f68/2025/10/IMG_9892-scaled.jpeg,,TRUE,Identifiable +N1,107296,Sortie #107296,https://biolit.fr/sorties/sortie-107296/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6553ea0bedfc3fedebf5fa4361dc1f68/2025/10/IMG_9892-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6553ea0bedfc3fedebf5fa4361dc1f68/2025/10/IMG_9893-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6553ea0bedfc3fedebf5fa4361dc1f68/2025/10/IMG_9895-scaled.jpeg,10/13/2025 0:00,17.0:15,17.0:45,43.2397380000000,5.36229400000000,Planète Mer,Plage du bain des dames,107299,Observation #107299,https://biolit.fr/observations/observation-107299/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6553ea0bedfc3fedebf5fa4361dc1f68/2025/10/IMG_9895-scaled.jpeg,,,Ne sais pas +N1,107296,Sortie #107296,https://biolit.fr/sorties/sortie-107296/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6553ea0bedfc3fedebf5fa4361dc1f68/2025/10/IMG_9892-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6553ea0bedfc3fedebf5fa4361dc1f68/2025/10/IMG_9893-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6553ea0bedfc3fedebf5fa4361dc1f68/2025/10/IMG_9895-scaled.jpeg,10/13/2025 0:00,17.0:15,17.0:45,43.2397380000000,5.36229400000000,Planète Mer,Plage du bain des dames,107301,Observation #107301,https://biolit.fr/observations/observation-107301/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6553ea0bedfc3fedebf5fa4361dc1f68/2025/10/IMG_9893-scaled.jpeg,,,Identifiable +N1,107306,Sortie #107306,https://biolit.fr/sorties/sortie-107306/,Laliche Flora,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/023c6e8df887f1dc06066cb56e68cd5a/2025/10/IMG20251013170746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/023c6e8df887f1dc06066cb56e68cd5a/2025/10/IMG20251013170741-scaled.jpg,10/13/2025 0:00,17.0000000,17.0000000,43.2403520,5.3625210,Planète Mer,Bain des dames,107307,Observation #107307,https://biolit.fr/observations/observation-107307/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/023c6e8df887f1dc06066cb56e68cd5a/2025/10/IMG20251013170741-scaled.jpg,,,Ne sais pas +N1,107309,Sortie #107309,https://biolit.fr/sorties/sortie-107309/,Céline,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6910-scaled.jpeg,10/13/2025 0:00,17.0:18,17.0:25,43.2398730000000,5.36244900000000,,Bain des dames,107310,Observation #107310,https://biolit.fr/observations/observation-107310/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6910-scaled.jpeg,,TRUE,Identifiable +N1,107313,Sortie #107313,https://biolit.fr/sorties/sortie-107313/,Laliche Flora,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/023c6e8df887f1dc06066cb56e68cd5a/2025/10/IMG20251013170547-scaled.jpg,10/13/2025 0:00,17.0000000,17.0000000,43.2755290,5.3584640,Planète Mer,Bain des dames,107314,Observation #107314,https://biolit.fr/observations/observation-107314/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/023c6e8df887f1dc06066cb56e68cd5a/2025/10/IMG20251013170547-scaled.jpg,,TRUE,Ne sais pas +N1,107317,Sortie #107317,https://biolit.fr/sorties/sortie-107317/,Laliche Flora,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/023c6e8df887f1dc06066cb56e68cd5a/2025/10/IMG20251013170504-scaled.jpg,10/13/2025 0:00,17.0000000,17.0000000,43.6588790,4.8399910,Planète Mer,Bain des dames,107318,Observation #107318,https://biolit.fr/observations/observation-107318/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/023c6e8df887f1dc06066cb56e68cd5a/2025/10/IMG20251013170504-scaled.jpg,,FALSE,Ne sais pas +N1,107321,Sortie #107321,https://biolit.fr/sorties/sortie-107321/,Laliche Flora,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/023c6e8df887f1dc06066cb56e68cd5a/2025/10/1760369129246707758799416219574-scaled.jpg,10/13/2025 0:00,17.0000000,17.0000000,43.2755290,5.3584640,Planète Mer,Bain des dames,,,,,,,,,, +N1,107323,Sortie #107323,https://biolit.fr/sorties/sortie-107323/,Laliche Flora,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/023c6e8df887f1dc06066cb56e68cd5a/2025/10/17603692381433285525644876612736-scaled.jpg,10/13/2025 0:00,17.0000000,17.0000000,43.2755290,5.3584640,Planète Mer,Bain des dames,,,,,,,,,, +N1,107325,Sortie #107325,https://biolit.fr/sorties/sortie-107325/,Laliche Flora,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/023c6e8df887f1dc06066cb56e68cd5a/2025/10/17603694394087856784759342325353-scaled.jpg,10/13/2025 0:00,17.0000000,17.0000000,43.2755290,5.3584640,Planète Mer,Bain des dames,107326,Observation #107326,https://biolit.fr/observations/observation-107326/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/023c6e8df887f1dc06066cb56e68cd5a/2025/10/17603694394087856784759342325353-scaled.jpg,,,Ne sais pas +N1,107328,Sortie #107328,https://biolit.fr/sorties/sortie-107328/,ESCOBAR Rebeca,,10/09/2025,14.0000000,18.0000000,44.6566800000000,-1.23916200000000,Planète Mer,Cap Ferret,,,,,,,,,, +N1,107329,Sortie #107329,https://biolit.fr/sorties/sortie-107329/,ESCOBAR Rebeca,,10/09/2025,14.0000000,18.0000000,44.6565670000000,-1.23984600000000,Planète Mer,Cap Ferret,,,,,,,,,, +N1,107331,Sortie #107331,https://biolit.fr/sorties/sortie-107331/,Mickael_Racine,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/26edd234e60fbe42a09b8fb02f4d63aa/2025/10/image-scaled.jpg,10/13/2025 0:00,17.000001,17.0:36,43.2396920000000,5.36231400000000,Planète Mer,Bain des dames - Marseille,107332,Observation #107332,https://biolit.fr/observations/observation-107332/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/26edd234e60fbe42a09b8fb02f4d63aa/2025/10/image-scaled.jpg,,TRUE,Identifiable +N1,107334,Sortie #107334,https://biolit.fr/sorties/sortie-107334/,ESCOBAR Rebeca,,10/09/2025,14.0000000,18.0000000,44.6396830000000,-1.26100300000000,Planète Mer,Cap Ferret,,,,,,,,,, +N1,107338,Sortie #107338,https://biolit.fr/sorties/sortie-107338/,Mickael_Racine,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/26edd234e60fbe42a09b8fb02f4d63aa/2025/10/2410f164-6776-4413-be3c-b92f24a24cf3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/26edd234e60fbe42a09b8fb02f4d63aa/2025/10/c3adbaf8-ac45-421f-b2a9-da61b86bd7bc.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/26edd234e60fbe42a09b8fb02f4d63aa/2025/10/0ad125e9-8a5c-4fea-b623-8771a2ff74f7.jpeg,10/13/2025 0:00,17.000001,17.0:36,43.2401010000000,5.3626420000000,Planète Mer,Bain des dames - Marseille,107340,Observation #107340,https://biolit.fr/observations/observation-107340/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/26edd234e60fbe42a09b8fb02f4d63aa/2025/10/2410f164-6776-4413-be3c-b92f24a24cf3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/26edd234e60fbe42a09b8fb02f4d63aa/2025/10/c3adbaf8-ac45-421f-b2a9-da61b86bd7bc.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/26edd234e60fbe42a09b8fb02f4d63aa/2025/10/0ad125e9-8a5c-4fea-b623-8771a2ff74f7.jpeg,,,Ne sais pas +N1,107339,Sortie #107339,https://biolit.fr/sorties/sortie-107339/,ESCOBAR Rebeca,,10/10/2025,14.0000000,18.0000000,44.6145460000000,-1.20705800000000,Planète Mer,Arcachon,,,,,,,,,, +N1,107342,Sortie #107342,https://biolit.fr/sorties/sortie-107342/,ESCOBAR Rebeca,,10/10/2025,14.0000000,18.0000000,44.6108850000000,-1.21235800000000,Planète Mer,Arcachon,,,,,,,,,, +N1,107343,Sortie #107343,https://biolit.fr/sorties/sortie-107343/,ESCOBAR Rebeca,,10/09/2025,14.0000000,18.0000000,44.6559610000000,-1.23999600000000,Planète Mer,Cap Ferret,,,,,,,,,, +N1,107355,Sortie #107355,https://biolit.fr/sorties/sortie-107355/,ESCOBAR Rebeca,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8347-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8350-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8348-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8349-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8353-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8351-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8352-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8356-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8355-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8354-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8357-scaled.jpeg,10/09/2025,14.0000000,18.0000000,44.6574300000000,-1.24197000000000,Planète Mer,Cap Ferret,107365,Observation #107365,https://biolit.fr/observations/observation-107365/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8347-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8350-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8348-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8349-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8353-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8351-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8352-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8357-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8354-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8355-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8356-scaled.jpeg,,,Ne sais pas +N1,107355,Sortie #107355,https://biolit.fr/sorties/sortie-107355/,ESCOBAR Rebeca,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8347-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8350-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8348-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8349-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8353-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8351-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8352-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8356-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8355-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8354-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8357-scaled.jpeg,10/09/2025,14.0000000,18.0000000,44.6574300000000,-1.24197000000000,Planète Mer,Cap Ferret,108616,Observation #108616,https://biolit.fr/observations/observation-108616/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8356-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8354-scaled.jpeg,,,Ne sais pas +N1,107368,Sortie #107368,https://biolit.fr/sorties/sortie-107368/,ESCOBAR Rebeca,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8371-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8369-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8370-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8372-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8368-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8366-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8367-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8365-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8378-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8361-scaled.jpeg,10/09/2025,14.0000000,18.0000000,44.6680470000000,-1.25810600000000,Planète Mer,Cap Ferret,107369,Observation #107369,https://biolit.fr/observations/observation-107369/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8371-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8369-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8370-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8372-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8368-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8366-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8365-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8367-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8361-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8378-scaled.jpeg,,,Ne sais pas +N1,107379,Sortie #107379,https://biolit.fr/sorties/sortie-107379/,ESCOBAR Rebeca,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8406-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8407-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8413-scaled.jpeg,10/10/2025,14.0000000,16.0000000,44.6162330000000,-1.20060000000000,Planète Mer,ARCACHON,107380,Observation #107380,https://biolit.fr/observations/observation-107380/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8413-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8411-scaled.jpeg,,, +N1,107379,Sortie #107379,https://biolit.fr/sorties/sortie-107379/,ESCOBAR Rebeca,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8406-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8407-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8413-scaled.jpeg,10/10/2025,14.0000000,16.0000000,44.6162330000000,-1.20060000000000,Planète Mer,ARCACHON,107382,Observation #107382,https://biolit.fr/?post_type=observations&p=107382,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8406-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8407-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8413-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8411-scaled.jpeg,,,Ne sais pas +N1,107379,Sortie #107379,https://biolit.fr/sorties/sortie-107379/,ESCOBAR Rebeca,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8406-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8407-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8413-scaled.jpeg,10/10/2025,14.0000000,16.0000000,44.6162330000000,-1.20060000000000,Planète Mer,ARCACHON,108614,Observation #108614,https://biolit.fr/observations/observation-108614/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8406-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8407-scaled.jpeg,,,Identifiable +N1,107391,Sortie #107391,https://biolit.fr/sorties/sortie-107391/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012637-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012642-scaled.jpg,10/14/2025 0:00,10.0000000,11.0000000,43.5564570,4.0908700,CPIE Littoral d'Occitanie,La grande motte,107392,Observation #107392,https://biolit.fr/observations/observation-107392/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012626-scaled.jpg,,,Identifiable +N1,107391,Sortie #107391,https://biolit.fr/sorties/sortie-107391/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012637-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012642-scaled.jpg,10/14/2025 0:00,10.0000000,11.0000000,43.5564570,4.0908700,CPIE Littoral d'Occitanie,La grande motte,107396,Observation #107396,https://biolit.fr/observations/observation-107396/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012634-scaled.jpg,,,Identifiable +N1,107398,Sortie #107398,https://biolit.fr/sorties/sortie-107398/,LABELBLEU,,10/14/2025 0:00,10.0000000,11.0000000,43.5568730,4.0905760,CPIE Littoral d'Occitanie,La grande motte,,,,,,,,,, +N1,107451,Sortie #107451,https://biolit.fr/sorties/sortie-107451/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5816-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5817-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5818-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5819-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5822-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5823.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5824-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5825-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5826-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5827-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5828-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5830-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5831-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5833-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5834-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5835-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5836-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5837-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5838-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5840-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5841-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5842-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5844-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5850-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5853.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5856.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5861.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5865.jpeg,10/10/2025,14.0000000,17.0000000,49.6452790000000,0.152779000000000,,Saint-Jouin-Brunevale,107452,Observation #107452,https://biolit.fr/observations/observation-107452/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5816-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5817-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5818-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5819-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5822-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5823.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5824-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5826-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5825-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5827-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5828-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5830-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5831-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5833-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5834-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5835-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5837-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5840-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5841-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5842-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5838-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5844-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5850-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5853.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5856.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5861.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5865.jpeg,,,Ne sais pas +N1,107463,Sortie #107463,https://biolit.fr/sorties/sortie-107463/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_9248.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_9247.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_3602.jpeg,09/10/2025,19.0:35,19.0:42,43.2708210000000,6.57900800000000,,Port Grimaud - Ile des 4 vents,107464,Observation #107464,https://biolit.fr/observations/observation-107464/,Phoenicopterus roseus,Flamant rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_9248.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_9247.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_3602.jpeg,,,Identifiable +N1,107467,Sortie #107467,https://biolit.fr/sorties/sortie-107467/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/565d77c2-db91-4289-932e-cd9eef888cc4.jpeg,08/06/2025,15.0000000,15.0:35,43.2720480000000,6.58785900000000,,Port Grimaud - jetée nord,107468,Observation #107468,https://biolit.fr/observations/observation-107468/,Cladocora caespitosa,Cladocore en touffe,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/565d77c2-db91-4289-932e-cd9eef888cc4.jpeg,,,Identifiable +N1,107471,Sortie #107471,https://biolit.fr/sorties/sortie-107471/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/f391315c-ccd5-4996-b122-d53436f3dbd7.jpeg,08/06/2025,15.0000000,15.0000000,43.2723030000000,6.58762300000000,,Port Grimaud - Jetée nord,107472,Observation #107472,https://biolit.fr/observations/observation-107472/,Cladocora caespitosa,Cladocore en touffe,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/f391315c-ccd5-4996-b122-d53436f3dbd7.jpeg,,,Identifiable +N1,107475,Sortie #107475,https://biolit.fr/sorties/sortie-107475/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_8247-scaled.jpeg,6/14/2025 0:00,15.0:36,15.0000000,43.2724460000000,6.58721600000000,,Port Grimaud - jetée nord,107476,Observation #107476,https://biolit.fr/observations/observation-107476/,Cladocora caespitosa,Cladocore en touffe,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_8247-scaled.jpeg,,,Identifiable +N1,107479,Sortie #107479,https://biolit.fr/sorties/sortie-107479/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_8250-scaled.jpeg,6/14/2025 0:00,15.0:39,15.0000000,43.2723130000000,6.58757000000000,,Port Grimaud - jetée Nord,107480,Observation #107480,https://biolit.fr/observations/observation-107480/,Cladocora caespitosa,Cladocore en touffe,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_8250-scaled.jpeg,,,Identifiable +N1,107484,Sortie #107484,https://biolit.fr/sorties/sortie-107484/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_8269-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_8268-scaled.jpeg,6/13/2025 0:00,21.0:45,21.0:55,43.2723220000000,6.5873500000000,,Port grimaud - jetée nord,107485,Observation #107485,https://biolit.fr/observations/observation-107485/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_8268-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_8269-scaled.jpeg,,,Identifiable +N1,107488,Sortie #107488,https://biolit.fr/sorties/sortie-107488/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_3635.jpeg,09/11/2025,18.0:47,18.0:51,43.2714350000000,6.58562800000000,,Port Grimaud - petite plage,107489,Observation #107489,https://biolit.fr/observations/observation-107489/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_3635.jpeg,,,Identifiable +N1,107492,Sortie #107492,https://biolit.fr/sorties/sortie-107492/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_3074.jpeg,09/04/2025,13.0:49,13.0:55,43.2687800000000,6.66513900000000,,Les Canebiers,107493,Observation #107493,https://biolit.fr/observations/observation-107493/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_3074.jpeg,,,Identifiable +N1,107496,Sortie #107496,https://biolit.fr/sorties/sortie-107496/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_9239.jpeg,6/19/2025 0:00,19.0:25,19.0000000,43.2632600000000,6.60295500000000,,Gassin - La Moune,107497,Observation #107497,https://biolit.fr/observations/observation-107497/,Symphodus tinca,Crénilabre-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_9239.jpeg,,,Identifiable +N1,107500,Sortie #107500,https://biolit.fr/sorties/sortie-107500/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Bioerosion-par-Lithophaga-lithofaga.jpg,10/15/2025 0:00,17.0000000,17.0000000,43.2504830,5.4263810,,Plage Bain des Dames,,,,,,,,,, +N1,107502,Sortie #107502,https://biolit.fr/sorties/sortie-107502/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Corbule-bossue-Varicorbula-gibba.jpg,10/15/2025 0:00,17.0:44,17.0:45,43.2504830,5.4263810,,Plage Bain des Dames,107503,Observation #107503,https://biolit.fr/observations/observation-107503/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Corbule-bossue-Varicorbula-gibba.jpg,,FALSE,Identifiable +N1,107506,Sortie #107506,https://biolit.fr/sorties/sortie-107506/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Bioerosion-par-Lithophaga-lithofaga-1.jpg,10/14/2025 0:00,17.0:35,17.0:36,43.2504830,5.4263810,,Plage Bain des Dames,107507,Observation #107507,https://biolit.fr/observations/observation-107507/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Bioerosion-par-Lithophaga-lithofaga-1.jpg,,FALSE,Identifiable +N1,107510,Sortie #107510,https://biolit.fr/sorties/sortie-107510/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Tricolie-striee-Tricolia-pullus.jpg,10/14/2025 0:00,17.0000000,17.0:55,43.2504830,5.4263810,,Plage Bain des Dames,107511,Observation #107511,https://biolit.fr/observations/observation-107511/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Tricolie-striee-Tricolia-pullus.jpg,,FALSE,Identifiable +N1,107514,Sortie #107514,https://biolit.fr/sorties/sortie-107514/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Laurencie-obtuse-Laurencia-obtusa.jpg,10/14/2025 0:00,18.0000000,18.000002,43.2539980,5.415579,,Plage Bain des Dames,107515,Observation #107515,https://biolit.fr/observations/observation-107515/,Gymnogongrus griffithsiae,Algue rouge de Griffiths,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Laurencie-obtuse-Laurencia-obtusa.jpg,,,Identifiable +N1,107520,Sortie #107520,https://biolit.fr/sorties/sortie-107520/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Haloptere-scopaire-Halopteris-scoparia.jpg,10/14/2025 0:00,18.000002,18.000003,43.2540080,5.4155120,,Plage Bain des Dames,107521,Observation #107521,https://biolit.fr/observations/observation-107521/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Haloptere-scopaire-Halopteris-scoparia.jpg,,FALSE,Identifiable +N1,107524,Sortie #107524,https://biolit.fr/sorties/sortie-107524/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Grand-Cormoran-Phalacrocorax-carbo-juvenile1-scaled.jpg,07/01/2025,14.0:52,14.0:53,43.2504830,5.4263810,,Plage de la Pointe Rouge,107525,Observation #107525,https://biolit.fr/observations/observation-107525/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Grand-Cormoran-Phalacrocorax-carbo-juvenile1-scaled.jpg,,FALSE,Identifiable +N1,107528,Sortie #107528,https://biolit.fr/sorties/sortie-107528/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Oblade-Oblada-melanura.jpg,10/13/2025 0:00,11.0:31,11.0:33,43.2504830,5.4263810,,Plage de la Pointe Rouge,107529,Observation #107529,https://biolit.fr/observations/observation-107529/,Diplodus sargus,Sar commun de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Oblade-Oblada-melanura.jpg,,TRUE,Identifiable +N1,107532,Sortie #107532,https://biolit.fr/sorties/sortie-107532/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Mulet-a-levres-fines-Chelon-ramada-scaled.jpg,10/13/2025 0:00,11.0:45,11.0:46,43.2539880,5.4155030,,Plage de la Pointe Rouge,107533,Observation #107533,https://biolit.fr/observations/observation-107533/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Mulet-a-levres-fines-Chelon-ramada-scaled.jpg,,,Identifiable +N1,107536,Sortie #107536,https://biolit.fr/sorties/sortie-107536/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Marbre-Lithognathus-mormyrus1.jpg,10/13/2025 0:00,11.0:46,11.0:48,43.2504830,5.4263810,,Plage de la Pointe Rouge,107537,Observation #107537,https://biolit.fr/observations/observation-107537/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Marbre-Lithognathus-mormyrus1.jpg,,FALSE,Identifiable +N1,107600,Sortie #107600,https://biolit.fr/sorties/sortie-107600/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_13055376.MP_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_13172045.MP_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_125007693.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_125423980-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_131235962-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/original_a523cbf1-8398-49af-99db-985ed5ff15d9_PXL_20251015_075434450.MP_-scaled.jpg,10/14/2025 0:00,14.0000000,15.0000000,43.5456560000000,4.12425600000000,LABELBLEU,Plage du Boucanet au Grau-du-Roi,107623,Observation #107623,https://biolit.fr/observations/observation-107623/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_13055376.MP_.jpg,,,Ne sais pas +N1,107600,Sortie #107600,https://biolit.fr/sorties/sortie-107600/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_13055376.MP_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_13172045.MP_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_125007693.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_125423980-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_131235962-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/original_a523cbf1-8398-49af-99db-985ed5ff15d9_PXL_20251015_075434450.MP_-scaled.jpg,10/14/2025 0:00,14.0000000,15.0000000,43.5456560000000,4.12425600000000,LABELBLEU,Plage du Boucanet au Grau-du-Roi,107625,Observation #107625,https://biolit.fr/observations/observation-107625/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_13172045.MP_.jpg,,,Ne sais pas +N1,107600,Sortie #107600,https://biolit.fr/sorties/sortie-107600/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_13055376.MP_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_13172045.MP_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_125007693.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_125423980-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_131235962-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/original_a523cbf1-8398-49af-99db-985ed5ff15d9_PXL_20251015_075434450.MP_-scaled.jpg,10/14/2025 0:00,14.0000000,15.0000000,43.5456560000000,4.12425600000000,LABELBLEU,Plage du Boucanet au Grau-du-Roi,107627,Observation #107627,https://biolit.fr/observations/observation-107627/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_125007693.MP_-scaled.jpg,,,Identifiable +N1,107600,Sortie #107600,https://biolit.fr/sorties/sortie-107600/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_13055376.MP_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_13172045.MP_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_125007693.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_125423980-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_131235962-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/original_a523cbf1-8398-49af-99db-985ed5ff15d9_PXL_20251015_075434450.MP_-scaled.jpg,10/14/2025 0:00,14.0000000,15.0000000,43.5456560000000,4.12425600000000,LABELBLEU,Plage du Boucanet au Grau-du-Roi,107629,Observation #107629,https://biolit.fr/observations/observation-107629/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_125423980-scaled.jpg,,,Identifiable +N1,107600,Sortie #107600,https://biolit.fr/sorties/sortie-107600/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_13055376.MP_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_13172045.MP_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_125007693.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_125423980-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_131235962-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/original_a523cbf1-8398-49af-99db-985ed5ff15d9_PXL_20251015_075434450.MP_-scaled.jpg,10/14/2025 0:00,14.0000000,15.0000000,43.5456560000000,4.12425600000000,LABELBLEU,Plage du Boucanet au Grau-du-Roi,107631,Observation #107631,https://biolit.fr/observations/observation-107631/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_131235962-scaled.jpg,,TRUE,Identifiable +N1,107600,Sortie #107600,https://biolit.fr/sorties/sortie-107600/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_13055376.MP_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_13172045.MP_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_125007693.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_125423980-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_131235962-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/original_a523cbf1-8398-49af-99db-985ed5ff15d9_PXL_20251015_075434450.MP_-scaled.jpg,10/14/2025 0:00,14.0000000,15.0000000,43.5456560000000,4.12425600000000,LABELBLEU,Plage du Boucanet au Grau-du-Roi,107633,Observation #107633,https://biolit.fr/observations/observation-107633/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/original_a523cbf1-8398-49af-99db-985ed5ff15d9_PXL_20251015_075434450.MP_-scaled.jpg,,,Ne sais pas +N1,107649,Sortie #107649,https://biolit.fr/sorties/sortie-107649/,Larue joséphine,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/1-Tournepierre-a-collier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/2-Tournepierre-a-collier-scaled.jpg,10/15/2025 0:00,10.0000000,11.0000000,43.3949080000000,-1.68292900000000,,Fort de Socoa,,,,,,,,,, +N1,107652,Sortie #107652,https://biolit.fr/sorties/sortie-107652/,Larue joséphine,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/1-Tournepierre-a-collier-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/2-Tournepierre-a-collier-1-scaled.jpg,10/15/2025 0:00,10.0000000,11.0000000,43.3959600000000,-1.68258900000000,,Fort de Socoa,107653,Observation #107653,https://biolit.fr/observations/observation-107653/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/1-Tournepierre-a-collier-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/2-Tournepierre-a-collier-1-scaled.jpg,,TRUE,Identifiable +N1,107657,Sortie #107657,https://biolit.fr/sorties/sortie-107657/,Larue joséphine,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/3-Criste-marine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/4-Criste-marine-scaled.jpg,10/15/2025 0:00,11.0000000,12.0000000,43.3960360000000,-1.68235700000000,,Fort de Socoa,107658,Observation #107658,https://biolit.fr/observations/observation-107658/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/3-Criste-marine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/4-Criste-marine-scaled.jpg,,TRUE,Identifiable +N1,107662,Sortie #107662,https://biolit.fr/sorties/sortie-107662/,Larue joséphine,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/5-Crabe-marbre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/6-Crabe-marbre-scaled.jpg,10/15/2025 0:00,12.0000000,13.0000000,43.3960110000000,-1.68225700000000,,Fort de Socoa,107663,Observation #107663,https://biolit.fr/observations/observation-107663/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/5-Crabe-marbre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/6-Crabe-marbre-scaled.jpg,,,Identifiable +N1,107667,Sortie #107667,https://biolit.fr/sorties/sortie-107667/,Larue joséphine,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/7-Jeune-Pachygrapsus-marmoratus.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/8.-Jeune-Pachygrapsus-marmoratus-scaled.jpg,10/15/2025 0:00,14.0000000,15.0000000,43.3959310000000,-1.68240700000000,,Fort de Socoa,107668,Observation #107668,https://biolit.fr/observations/observation-107668/,Pachygrapsus maurus,Grapse noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/7-Jeune-Pachygrapsus-marmoratus.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/8.-Jeune-Pachygrapsus-marmoratus-scaled.jpg,,,Ne sais pas +N1,107671,Sortie #107671,https://biolit.fr/sorties/sortie-107671/,Larue joséphine,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/9-Herbe-de-la-pampa-scaled.jpg,10/15/2025 0:00,15.0000000,16.0000000,43.3957940000000,-1.68229000000000,,Fort de Socoa,107672,Observation #107672,https://biolit.fr/observations/observation-107672/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/9-Herbe-de-la-pampa-scaled.jpg,,,Identifiable +N1,107682,Sortie #107682,https://biolit.fr/sorties/sortie-107682/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/86cb527166bfe2e965f9462e7dd41c94/2025/10/20251013_173700.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/86cb527166bfe2e965f9462e7dd41c94/2025/10/20251013_ObsBioLit.jpg,10/13/2025 0:00,17.0000000,17.0000000,43.2397900000000,5.36240500000000,Planète Mer,Bain des dames,107707,Observation #107707,https://biolit.fr/observations/observation-107707/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/86cb527166bfe2e965f9462e7dd41c94/2025/10/20251013_173700.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/86cb527166bfe2e965f9462e7dd41c94/2025/10/20251013_ObsBioLit.jpg,,,Ne sais pas +N1,107682,Sortie #107682,https://biolit.fr/sorties/sortie-107682/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/86cb527166bfe2e965f9462e7dd41c94/2025/10/20251013_173700.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/86cb527166bfe2e965f9462e7dd41c94/2025/10/20251013_ObsBioLit.jpg,10/13/2025 0:00,17.0000000,17.0000000,43.2397900000000,5.36240500000000,Planète Mer,Bain des dames,107709,Observation #107709,https://biolit.fr/observations/observation-107709/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/86cb527166bfe2e965f9462e7dd41c94/2025/10/20251013_173700.jpg,,,non-identifiable +N1,107688,Sortie #107688,https://biolit.fr/sorties/sortie-107688/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012683-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012682-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012681-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012679-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012678-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012645-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012644-scaled.jpg,10/14/2025 0:00,1.0:15,16.0:13,43.5534200000000,4.09691100000000,LABELBLEU,La grande motte,,,,,,,,,, +N1,107689,Sortie #107689,https://biolit.fr/sorties/sortie-107689/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012683-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012682-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012681-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012679-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012678-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012645-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012644-scaled.jpg,10/14/2025 0:00,1.0:15,16.0:13,43.5534200000000,4.09691100000000,LABELBLEU,La grande motte,107690,Observation #107690,https://biolit.fr/observations/observation-107690/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012683-1-scaled.jpg,,TRUE,Identifiable +N1,107689,Sortie #107689,https://biolit.fr/sorties/sortie-107689/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012683-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012682-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012681-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012679-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012678-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012645-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012644-scaled.jpg,10/14/2025 0:00,1.0:15,16.0:13,43.5534200000000,4.09691100000000,LABELBLEU,La grande motte,107692,Observation #107692,https://biolit.fr/observations/observation-107692/,Aporrhais pespelecani,Pied de pélican commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012681-scaled.jpg,,TRUE,Identifiable +N1,107689,Sortie #107689,https://biolit.fr/sorties/sortie-107689/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012683-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012682-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012681-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012679-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012678-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012645-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012644-scaled.jpg,10/14/2025 0:00,1.0:15,16.0:13,43.5534200000000,4.09691100000000,LABELBLEU,La grande motte,107694,Observation #107694,https://biolit.fr/observations/observation-107694/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012680-scaled.jpg,,TRUE,Identifiable +N1,107689,Sortie #107689,https://biolit.fr/sorties/sortie-107689/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012683-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012682-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012681-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012679-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012678-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012645-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012644-scaled.jpg,10/14/2025 0:00,1.0:15,16.0:13,43.5534200000000,4.09691100000000,LABELBLEU,La grande motte,107696,Observation #107696,https://biolit.fr/observations/observation-107696/,Tritia incrassata,Nasse épaisse,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012679-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012678-scaled.jpg,,,Identifiable +N1,107689,Sortie #107689,https://biolit.fr/sorties/sortie-107689/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012683-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012682-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012681-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012679-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012678-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012645-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012644-scaled.jpg,10/14/2025 0:00,1.0:15,16.0:13,43.5534200000000,4.09691100000000,LABELBLEU,La grande motte,107698,Observation #107698,https://biolit.fr/observations/observation-107698/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012676-scaled.jpg,,TRUE,Identifiable +N1,107689,Sortie #107689,https://biolit.fr/sorties/sortie-107689/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012683-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012682-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012681-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012679-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012678-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012645-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012644-scaled.jpg,10/14/2025 0:00,1.0:15,16.0:13,43.5534200000000,4.09691100000000,LABELBLEU,La grande motte,107700,Observation #107700,https://biolit.fr/observations/observation-107700/,Solecurtus strigilatus,Solécurte rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012645-scaled.jpg,,,Identifiable +N1,107689,Sortie #107689,https://biolit.fr/sorties/sortie-107689/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012683-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012682-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012681-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012679-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012678-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012645-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012644-scaled.jpg,10/14/2025 0:00,1.0:15,16.0:13,43.5534200000000,4.09691100000000,LABELBLEU,La grande motte,107702,Observation #107702,https://biolit.fr/observations/observation-107702/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012644-scaled.jpg,,,Identifiable +N1,107689,Sortie #107689,https://biolit.fr/sorties/sortie-107689/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012683-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012682-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012681-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012679-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012678-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012645-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012644-scaled.jpg,10/14/2025 0:00,1.0:15,16.0:13,43.5534200000000,4.09691100000000,LABELBLEU,La grande motte,107705,Observation #107705,https://biolit.fr/observations/observation-107705/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012682-1-scaled.jpg,,,Ne sais pas +N1,107714,Sortie #107714,https://biolit.fr/sorties/sortie-107714/,HERVEIC HONORINE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d705c87df3396c2b56a68e8504212eec/2025/10/IMG_20251017_114846-1.jpg,9/29/2025 0:00,14.0000000,17.0000000,48.6147,2,,Plage du Corps de Garde,107715,Observation #107715,https://biolit.fr/observations/observation-107715/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d705c87df3396c2b56a68e8504212eec/2025/10/IMG_20251017_114846-1.jpg,,FALSE,Ne sais pas +N1,107718,Sortie #107718,https://biolit.fr/sorties/sortie-107718/,ROGER PIERRE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/53120e6c0601f8f3f06f9e025c81d8de/2025/10/IMG_20250929_152505978_HDR-rotated.jpg,9/29/2025 0:00,14.0000000,17.0000000,48.6142220000000,-2.81574100000000,,Plage du Corps de Garde,107719,Observation #107719,https://biolit.fr/observations/observation-107719/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/53120e6c0601f8f3f06f9e025c81d8de/2025/10/IMG_20250929_152505978_HDR-rotated.jpg,,,Ne sais pas +N1,107725,Sortie #107725,https://biolit.fr/sorties/sortie-107725/,BEGUE ANTOINE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/2b86ac5afe3484ec0d041ed9d35078d2/2025/10/IMG_20250929_153638861_HDR.jpg,9/29/2025 0:00,14.0000000,17.0000000,48.6142310000000,-2.81572400000000,,Plage du Corps de Garde,107726,Observation #107726,https://biolit.fr/observations/observation-107726/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/2b86ac5afe3484ec0d041ed9d35078d2/2025/10/IMG_20250929_153638861_HDR.jpg,,,Ne sais pas +N1,107725,Sortie #107725,https://biolit.fr/sorties/sortie-107725/,BEGUE ANTOINE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/2b86ac5afe3484ec0d041ed9d35078d2/2025/10/IMG_20250929_153638861_HDR.jpg,9/29/2025 0:00,14.0000000,17.0000000,48.6142310000000,-2.81572400000000,,Plage du Corps de Garde,107728,Observation #107728,https://biolit.fr/observations/observation-107728/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/2b86ac5afe3484ec0d041ed9d35078d2/2025/10/IMG_20250929_153638861_HDR.jpg,,,Ne sais pas +N1,107731,Sortie #107731,https://biolit.fr/sorties/sortie-107731/,LADON BENOIST,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/70f9f8e002fecbc9f44cdf4c020b390a/2025/10/IMG_20251017_114430.jpg,9/29/2025 0:00,14.0000000,17.0000000,48.6143790000000,-2.81563700000000,,"Plage du Corps de Garde, Binic",107732,Observation #107732,https://biolit.fr/observations/observation-107732/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/70f9f8e002fecbc9f44cdf4c020b390a/2025/10/IMG_20251017_114430.jpg,,,Identifiable +N1,107735,Sortie #107735,https://biolit.fr/sorties/sortie-107735/,PAUGAM MATTHIEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/cf05ae6dbf385550623f289894c457d5/2025/10/IMG_20251015_180555.jpg,9/29/2025 0:00,14.0000000,17.0000000,48.6143570000000,-2.81567300000000,,Plage du Corps de Garde,107736,Observation #107736,https://biolit.fr/observations/observation-107736/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/cf05ae6dbf385550623f289894c457d5/2025/10/IMG_20251015_180555.jpg,,,Identifiable +N1,107739,Sortie #107739,https://biolit.fr/sorties/sortie-107739/,GUEGAN Yveline,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/834d6bf6ac3a2ab266673a980cab610a/2025/10/IMG_20251017_114346.jpg,9/29/2025 0:00,14.0000000,17.0000000,48.6143920000000,-2.81566800000000,,Plage du Corps de garde,107740,Observation #107740,https://biolit.fr/observations/observation-107740/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/834d6bf6ac3a2ab266673a980cab610a/2025/10/IMG_20251017_114346.jpg,,,Identifiable +N1,107743,Sortie #107743,https://biolit.fr/sorties/sortie-107743/,BLEJEAN DIDIER,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/905a640885bdf2d3c15fdd4f3c78cd03/2025/10/IMG_20251017_114420.jpg,9/29/2025 0:00,14.0000000,15.0000000,48.6140900000000,-2.81576700000000,,Plage du Corps de Garde,107744,Observation #107744,https://biolit.fr/observations/observation-107744/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/905a640885bdf2d3c15fdd4f3c78cd03/2025/10/IMG_20251017_114420.jpg,,,Identifiable +N1,107771,Sortie #107771,https://biolit.fr/sorties/sortie-107771/,COURTAY YANNICK,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/635cb7b93fb6993a6b1c05481c45dfec/2025/10/IMG_20251015_180555.jpg,9/29/2025 0:00,14.0000000,17.0000000,48.6144400000000,-2.81561000000000,,Plage du Corps de GArde,107772,Observation #107772,https://biolit.fr/observations/observation-107772/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/635cb7b93fb6993a6b1c05481c45dfec/2025/10/IMG_20251015_180555.jpg,,,Identifiable +N1,107771,Sortie #107771,https://biolit.fr/sorties/sortie-107771/,COURTAY YANNICK,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/635cb7b93fb6993a6b1c05481c45dfec/2025/10/IMG_20251015_180555.jpg,9/29/2025 0:00,14.0000000,17.0000000,48.6144400000000,-2.81561000000000,,Plage du Corps de GArde,107774,Observation #107774,https://biolit.fr/observations/observation-107774/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/635cb7b93fb6993a6b1c05481c45dfec/2025/10/IMG_20251015_180555.jpg,,,Identifiable +N1,107777,Sortie #107777,https://biolit.fr/sorties/sortie-107777/,DEREANI EVE MARIE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3cc7addbe10f492fb73828a0b49efb50/2025/10/IMG_20251015_181747.jpg,9/29/2025 0:00,14.0000000,17.0000000,48.614024000000,-2.81581700000000,,Plage du Corps de Garde,107778,Observation #107778,https://biolit.fr/observations/observation-107778/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3cc7addbe10f492fb73828a0b49efb50/2025/10/IMG_20251015_181747.jpg,,TRUE,Identifiable +N1,107846,Sortie #107846,https://biolit.fr/sorties/sortie-107846/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7418-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7409-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7400-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7399-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7413-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7416-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7417-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7419-scaled.jpeg,10/17/2025 0:00,14.0000000,15.0000000,43.2360220000000,5.36000800000000,Planète Mer,Plage de la brise,107847,Observation #107847,https://biolit.fr/observations/observation-107847/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7409-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7408-scaled.jpeg,,TRUE,Identifiable +N1,107846,Sortie #107846,https://biolit.fr/sorties/sortie-107846/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7418-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7409-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7400-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7399-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7413-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7416-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7417-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7419-scaled.jpeg,10/17/2025 0:00,14.0000000,15.0000000,43.2360220000000,5.36000800000000,Planète Mer,Plage de la brise,107849,Observation #107849,https://biolit.fr/observations/observation-107849/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7419-scaled.jpeg,,, +N1,107846,Sortie #107846,https://biolit.fr/sorties/sortie-107846/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7418-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7409-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7400-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7399-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7413-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7416-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7417-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7419-scaled.jpeg,10/17/2025 0:00,14.0000000,15.0000000,43.2360220000000,5.36000800000000,Planète Mer,Plage de la brise,107851,Observation #107851,https://biolit.fr/observations/observation-107851/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7420-scaled.jpeg,,, +N1,107846,Sortie #107846,https://biolit.fr/sorties/sortie-107846/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7418-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7409-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7400-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7399-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7413-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7416-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7417-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7419-scaled.jpeg,10/17/2025 0:00,14.0000000,15.0000000,43.2360220000000,5.36000800000000,Planète Mer,Plage de la brise,107853,Observation #107853,https://biolit.fr/observations/observation-107853/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7421-scaled.jpeg,,, +N1,107846,Sortie #107846,https://biolit.fr/sorties/sortie-107846/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7418-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7409-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7400-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7399-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7413-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7416-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7417-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7419-scaled.jpeg,10/17/2025 0:00,14.0000000,15.0000000,43.2360220000000,5.36000800000000,Planète Mer,Plage de la brise,107855,Observation #107855,https://biolit.fr/observations/observation-107855/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7418-scaled.jpeg,,, +N1,107846,Sortie #107846,https://biolit.fr/sorties/sortie-107846/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7418-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7409-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7400-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7399-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7413-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7416-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7417-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7419-scaled.jpeg,10/17/2025 0:00,14.0000000,15.0000000,43.2360220000000,5.36000800000000,Planète Mer,Plage de la brise,107857,Observation #107857,https://biolit.fr/observations/observation-107857/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7400-scaled.jpeg,,, +N1,107846,Sortie #107846,https://biolit.fr/sorties/sortie-107846/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7418-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7409-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7400-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7399-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7413-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7416-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7417-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7419-scaled.jpeg,10/17/2025 0:00,14.0000000,15.0000000,43.2360220000000,5.36000800000000,Planète Mer,Plage de la brise,107859,Observation #107859,https://biolit.fr/observations/observation-107859/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7399-scaled.jpeg,,, +N1,107846,Sortie #107846,https://biolit.fr/sorties/sortie-107846/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7418-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7409-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7400-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7399-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7413-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7416-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7417-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7419-scaled.jpeg,10/17/2025 0:00,14.0000000,15.0000000,43.2360220000000,5.36000800000000,Planète Mer,Plage de la brise,107861,Observation #107861,https://biolit.fr/observations/observation-107861/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7383-scaled.jpeg,,TRUE, +N1,107846,Sortie #107846,https://biolit.fr/sorties/sortie-107846/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7418-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7409-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7400-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7399-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7413-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7416-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7417-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7419-scaled.jpeg,10/17/2025 0:00,14.0000000,15.0000000,43.2360220000000,5.36000800000000,Planète Mer,Plage de la brise,107863,Observation #107863,https://biolit.fr/observations/observation-107863/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7412-scaled.jpeg,,TRUE,Identifiable +N1,107846,Sortie #107846,https://biolit.fr/sorties/sortie-107846/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7418-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7409-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7400-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7399-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7413-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7416-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7417-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7419-scaled.jpeg,10/17/2025 0:00,14.0000000,15.0000000,43.2360220000000,5.36000800000000,Planète Mer,Plage de la brise,107865,Observation #107865,https://biolit.fr/observations/observation-107865/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7415-scaled.jpeg,,TRUE, +N1,107846,Sortie #107846,https://biolit.fr/sorties/sortie-107846/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7418-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7409-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7400-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7399-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7413-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7416-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7417-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7419-scaled.jpeg,10/17/2025 0:00,14.0000000,15.0000000,43.2360220000000,5.36000800000000,Planète Mer,Plage de la brise,107867,Observation #107867,https://biolit.fr/observations/observation-107867/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7417-scaled.jpeg,,TRUE, +N1,107846,Sortie #107846,https://biolit.fr/sorties/sortie-107846/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7418-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7409-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7400-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7399-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7413-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7416-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7417-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7419-scaled.jpeg,10/17/2025 0:00,14.0000000,15.0000000,43.2360220000000,5.36000800000000,Planète Mer,Plage de la brise,107869,Observation #107869,https://biolit.fr/observations/observation-107869/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7416-scaled.jpeg,,TRUE,non-identifiable +N1,107846,Sortie #107846,https://biolit.fr/sorties/sortie-107846/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7418-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7409-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7400-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7399-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7413-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7416-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7417-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7419-scaled.jpeg,10/17/2025 0:00,14.0000000,15.0000000,43.2360220000000,5.36000800000000,Planète Mer,Plage de la brise,107871,Observation #107871,https://biolit.fr/observations/observation-107871/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7414-scaled.jpeg,,TRUE,non-identifiable +N1,107875,Sortie #107875,https://biolit.fr/sorties/sortie-107875/,De Filippis Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/10/1000075237-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/10/1000075238-scaled.jpg,10/18/2025 0:00,15.0000000,17.0:15,43.6683210,4.1251190,,Aresquier,107876,Observation #107876,https://biolit.fr/observations/observation-107876/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/10/1000075238-scaled.jpg,,,Identifiable +N1,107878,Sortie #107878,https://biolit.fr/sorties/sortie-107878/,De Filippis Agnès,,10/18/2025 0:00,15.0000000,17.0:15,43.668296,4.1252010,,Aresquier,,,,,,,,,, +N1,107880,Sortie #107880,https://biolit.fr/sorties/sortie-107880/,De Filippis Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/10/1000075237-1-scaled.jpg,10/18/2025 0:00,15.0:21,17.0:21,43.6681340,4.125246,,Plage Aresquier,107881,Observation #107881,https://biolit.fr/observations/observation-107881/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/10/1000075237-1-scaled.jpg,,,Identifiable +N1,107880,Sortie #107880,https://biolit.fr/sorties/sortie-107880/,De Filippis Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/10/1000075237-1-scaled.jpg,10/18/2025 0:00,15.0:21,17.0:21,43.6681340,4.125246,,Plage Aresquier,107883,Observation #107883,https://biolit.fr/observations/observation-107883/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/10/1000075237-1-scaled.jpg,,,Identifiable +N1,107995,Sortie #107995,https://biolit.fr/sorties/sortie-107995/,LAMETRIE Bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1344-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1343-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1342-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1340-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1339-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1338-scaled.jpeg,09/01/2025,9.0000000,11.0000000,42.9545630000000,3.03291300000000,,"Complexe Lagunaire de Lapalme, Eurovélo 8, 11370 Leucate",107996,Observation #107996,https://biolit.fr/observations/observation-107996/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1344-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1343-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1342-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1340-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1339-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1338-scaled.jpeg,,, +N1,107995,Sortie #107995,https://biolit.fr/sorties/sortie-107995/,LAMETRIE Bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1344-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1343-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1342-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1340-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1339-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1338-scaled.jpeg,09/01/2025,9.0000000,11.0000000,42.9545630000000,3.03291300000000,,"Complexe Lagunaire de Lapalme, Eurovélo 8, 11370 Leucate",107998,Observation #107998,https://biolit.fr/observations/observation-107998/,Cellaria salicornioides,Cellaire salicorne,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1338-scaled.jpeg,,,Identifiable +N1,108003,Sortie #108003,https://biolit.fr/sorties/sortie-108003/,LAMETRIE Bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1542-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1538-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1537-scaled.jpeg,09/03/2025,15.0000000,17.0000000,43.144357000000,2.99656400000000,,"Complexe Lagunaire de Bages-Sigean, 11100 Narbonne, France",108004,Observation #108004,https://biolit.fr/observations/observation-108004/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1542-1-scaled.jpeg,,,non-identifiable +N1,108003,Sortie #108003,https://biolit.fr/sorties/sortie-108003/,LAMETRIE Bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1542-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1538-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1537-scaled.jpeg,09/03/2025,15.0000000,17.0000000,43.144357000000,2.99656400000000,,"Complexe Lagunaire de Bages-Sigean, 11100 Narbonne, France",108006,Observation #108006,https://biolit.fr/observations/observation-108006/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1538-scaled.jpeg,,,Ne sais pas +N1,108003,Sortie #108003,https://biolit.fr/sorties/sortie-108003/,LAMETRIE Bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1542-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1538-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1537-scaled.jpeg,09/03/2025,15.0000000,17.0000000,43.144357000000,2.99656400000000,,"Complexe Lagunaire de Bages-Sigean, 11100 Narbonne, France",108008,Observation #108008,https://biolit.fr/observations/observation-108008/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1537-scaled.jpeg,,,Ne sais pas +N1,108011,Sortie #108011,https://biolit.fr/sorties/sortie-108011/,Durand Simon,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/af3e2a4d381279968613437502881b48/2025/10/UNADJUSTEDNONRAW_thumb_437c.jpg,10/20/2025 0:00,10.0000000,11.0000000,43.4313730000000,3.77473700000000,LPO Occitanie (Dt Hérault),"Plage du port de plaisance ouest, Frontignan",108012,Observation #108012,https://biolit.fr/observations/observation-108012/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/af3e2a4d381279968613437502881b48/2025/10/UNADJUSTEDNONRAW_thumb_437c.jpg,,,Identifiable +N1,108015,Sortie #108015,https://biolit.fr/sorties/sortie-108015/,Durand Simon,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/af3e2a4d381279968613437502881b48/2025/10/UNADJUSTEDNONRAW_thumb_4377.jpg,2/20/2025 0:00,10.0000000,11.0000000,43.4313920000000,3.77476000000000,LPO Occitanie (Dt Hérault),"Plage du port de plaisance ouest, Frontignan",108016,Observation #108016,https://biolit.fr/observations/observation-108016/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/af3e2a4d381279968613437502881b48/2025/10/UNADJUSTEDNONRAW_thumb_4377.jpg,,,Identifiable +N1,108015,Sortie #108015,https://biolit.fr/sorties/sortie-108015/,Durand Simon,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/af3e2a4d381279968613437502881b48/2025/10/UNADJUSTEDNONRAW_thumb_4377.jpg,2/20/2025 0:00,10.0000000,11.0000000,43.4313920000000,3.77476000000000,LPO Occitanie (Dt Hérault),"Plage du port de plaisance ouest, Frontignan",108018,Observation #108018,https://biolit.fr/observations/observation-108018/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/af3e2a4d381279968613437502881b48/2025/10/UNADJUSTEDNONRAW_thumb_4377.jpg,,,Identifiable +N1,108021,Sortie #108021,https://biolit.fr/sorties/sortie-108021/,Durand Simon,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/af3e2a4d381279968613437502881b48/2025/10/UNADJUSTEDNONRAW_thumb_437a.jpg,10/20/2025 0:00,10.0000000,11.0000000,43.4315360000000,3.77471000000000,LPO Occitanie (Dt Hérault),"Plage du port de plaisance ouest, Frontignan",108022,Observation #108022,https://biolit.fr/observations/observation-108022/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/af3e2a4d381279968613437502881b48/2025/10/UNADJUSTEDNONRAW_thumb_437a.jpg,,TRUE,Identifiable +N1,108025,Sortie #108025,https://biolit.fr/sorties/sortie-108025/,Durand Simon,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/af3e2a4d381279968613437502881b48/2025/10/UNADJUSTEDNONRAW_thumb_4376.jpg,10/20/2025 0:00,10.0000000,11.0000000,43.4314050000000,3.7745390000000,LPO Occitanie (Dt Hérault),"Plage du port de plaisance ouest, Frontignan",108026,Observation #108026,https://biolit.fr/observations/observation-108026/,Dosinia exoleta,Dosinie radiée,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/af3e2a4d381279968613437502881b48/2025/10/UNADJUSTEDNONRAW_thumb_4376.jpg,,,Identifiable +N1,108029,Sortie #108029,https://biolit.fr/sorties/sortie-108029/,Durand Simon,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/af3e2a4d381279968613437502881b48/2025/10/UNADJUSTEDNONRAW_thumb_4379.jpg,10/20/2025 0:00,10.0000000,11.0000000,43.4314970000000,3.77464100000000,LPO Occitanie (Dt Hérault),"Plage du port de plaisance ouest, Frontignan",108030,Observation #108030,https://biolit.fr/observations/observation-108030/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/af3e2a4d381279968613437502881b48/2025/10/UNADJUSTEDNONRAW_thumb_4379.jpg,,TRUE,Identifiable +N1,108033,Sortie #108033,https://biolit.fr/sorties/sortie-108033/,Durand Simon,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/af3e2a4d381279968613437502881b48/2025/10/UNADJUSTEDNONRAW_thumb_437b.jpg,10/20/2025 0:00,10.0000000,11.0000000,43.4314890000000,3.77451200000000,LPO Occitanie (Dt Hérault),"Plage du port de plaisance ouest, Frontignan",108034,Observation #108034,https://biolit.fr/observations/observation-108034/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/af3e2a4d381279968613437502881b48/2025/10/UNADJUSTEDNONRAW_thumb_437b.jpg,,TRUE,Identifiable +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108064,Observation #108064,https://biolit.fr/observations/observation-108064/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108066,Observation #108066,https://biolit.fr/observations/observation-108066/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108068,Observation #108068,https://biolit.fr/observations/observation-108068/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108070,Observation #108070,https://biolit.fr/observations/observation-108070/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108072,Observation #108072,https://biolit.fr/observations/observation-108072/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108074,Observation #108074,https://biolit.fr/observations/observation-108074/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108076,Observation #108076,https://biolit.fr/observations/observation-108076/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108078,Observation #108078,https://biolit.fr/observations/observation-108078/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108080,Observation #108080,https://biolit.fr/observations/observation-108080/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108082,Observation #108082,https://biolit.fr/observations/observation-108082/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg,,TRUE,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108084,Observation #108084,https://biolit.fr/observations/observation-108084/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108086,Observation #108086,https://biolit.fr/observations/observation-108086/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108088,Observation #108088,https://biolit.fr/observations/observation-108088/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg,,TRUE,Identifiable +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108090,Observation #108090,https://biolit.fr/observations/observation-108090/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108092,Observation #108092,https://biolit.fr/observations/observation-108092/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108094,Observation #108094,https://biolit.fr/observations/observation-108094/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108096,Observation #108096,https://biolit.fr/observations/observation-108096/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108098,Observation #108098,https://biolit.fr/observations/observation-108098/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg,,TRUE,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108100,Observation #108100,https://biolit.fr/observations/observation-108100/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108102,Observation #108102,https://biolit.fr/observations/observation-108102/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108104,Observation #108104,https://biolit.fr/observations/observation-108104/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,,,Ne sais pas +N1,108128,Sortie #108128,https://biolit.fr/sorties/sortie-108128/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0006af70db1c8e5f168daebda1a1fe/2025/10/20251021_135615.jpgquadrat1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0006af70db1c8e5f168daebda1a1fe/2025/10/20251021_140902.jpgQ1_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0006af70db1c8e5f168daebda1a1fe/2025/10/20251021_141214.jpgquadrat2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0006af70db1c8e5f168daebda1a1fe/2025/10/20251021_141742.jpgQ2_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0006af70db1c8e5f168daebda1a1fe/2025/10/20251021_142023.jpgquadrat3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0006af70db1c8e5f168daebda1a1fe/2025/10/20251021_143203.jpgQ3mage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0006af70db1c8e5f168daebda1a1fe/2025/10/20251021_143144.jpgQ3_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0006af70db1c8e5f168daebda1a1fe/2025/10/20251021_143701.jpgquadrat4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0006af70db1c8e5f168daebda1a1fe/2025/10/20251021_144903.jpgQ4_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0006af70db1c8e5f168daebda1a1fe/2025/10/Q4gibule-ombiliquee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0006af70db1c8e5f168daebda1a1fe/2025/10/20251021-fiche-biolit-rotated.jpg,10/21/2025 0:00,13.0000000,14.0000000,48.8162180000000,-3.54034700000000,E.T.A.P.E.S,Landrellec,,,,,,,,,, +N1,108139,Sortie #108139,https://biolit.fr/sorties/sortie-108139/,Audige Julie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113301-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113242-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113222-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113200-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113131-3-scaled.jpg,10/20/2025 0:00,9.0000000,11.0000000,43433539,3773253,LPO Occitanie (Dt Hérault),Frontignan Plage,108140,Observation #108140,https://biolit.fr/observations/observation-108140/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113301-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113242-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113222-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113200-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113131-3-scaled.jpg,,,Ne sais pas +N1,108139,Sortie #108139,https://biolit.fr/sorties/sortie-108139/,Audige Julie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113301-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113242-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113222-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113200-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113131-3-scaled.jpg,10/20/2025 0:00,9.0000000,11.0000000,43433539,3773253,LPO Occitanie (Dt Hérault),Frontignan Plage,108142,Observation #108142,https://biolit.fr/observations/observation-108142/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113301-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113242-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113222-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113200-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113131-3-scaled.jpg,,,Ne sais pas +N1,108139,Sortie #108139,https://biolit.fr/sorties/sortie-108139/,Audige Julie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113301-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113242-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113222-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113200-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113131-3-scaled.jpg,10/20/2025 0:00,9.0000000,11.0000000,43433539,3773253,LPO Occitanie (Dt Hérault),Frontignan Plage,108144,Observation #108144,https://biolit.fr/observations/observation-108144/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113242-2-scaled.jpg,,,Ne sais pas +N1,108139,Sortie #108139,https://biolit.fr/sorties/sortie-108139/,Audige Julie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113301-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113242-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113222-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113200-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113131-3-scaled.jpg,10/20/2025 0:00,9.0000000,11.0000000,43433539,3773253,LPO Occitanie (Dt Hérault),Frontignan Plage,108146,Observation #108146,https://biolit.fr/observations/observation-108146/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113222-2-scaled.jpg,,,Ne sais pas +N1,108139,Sortie #108139,https://biolit.fr/sorties/sortie-108139/,Audige Julie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113301-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113242-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113222-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113200-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113131-3-scaled.jpg,10/20/2025 0:00,9.0000000,11.0000000,43433539,3773253,LPO Occitanie (Dt Hérault),Frontignan Plage,108148,Observation #108148,https://biolit.fr/observations/observation-108148/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113200-3-scaled.jpg,,TRUE,Ne sais pas +N1,108139,Sortie #108139,https://biolit.fr/sorties/sortie-108139/,Audige Julie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113301-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113242-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113222-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113200-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113131-3-scaled.jpg,10/20/2025 0:00,9.0000000,11.0000000,43433539,3773253,LPO Occitanie (Dt Hérault),Frontignan Plage,108150,Observation #108150,https://biolit.fr/observations/observation-108150/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113131-3-scaled.jpg,,TRUE,Ne sais pas +N1,108201,Sortie #108201,https://biolit.fr/sorties/sortie-108201/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Callianasse-tyrrhenienne-—-Pestarella-tyrrhena-syn.-Callianassa-tyrrhena-crevette-fouisseuse-des-plages-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Callianasse-tyrrhenienne-—-Pestarella-tyrrhena-syn.-Callianassa-tyrrhena-crevette-fouisseuse-des-plages-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Callianasse-tyrrhenienne-—-Pestarella-tyrrhena-syn.-Callianassa-tyrrhena-crevette-fouisseuse-des-plages-3-scaled.jpg,10/22/2025 0:00,16.0:15,16.0000000,43.0699900000000,6.12842600000000,,"Plage de l'Almanare, Giens",108202,Observation #108202,https://biolit.fr/observations/observation-108202/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Callianasse-tyrrhenienne-—-Pestarella-tyrrhena-syn.-Callianassa-tyrrhena-crevette-fouisseuse-des-plages-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Callianasse-tyrrhenienne-—-Pestarella-tyrrhena-syn.-Callianassa-tyrrhena-crevette-fouisseuse-des-plages-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Callianasse-tyrrhenienne-—-Pestarella-tyrrhena-syn.-Callianassa-tyrrhena-crevette-fouisseuse-des-plages-3-scaled.jpg,,TRUE,non-identifiable +N1,108207,Sortie #108207,https://biolit.fr/sorties/sortie-108207/,Naturoscope (Antenne Marseille),,10/23/2025 0:00,11.0000000,11.0000000,43.27366000,5.3619590,Naturoscope (Antenne Marseille),Plage du Prophète,,,,,,,,,, +N1,108234,Sortie #108234,https://biolit.fr/sorties/sortie-108234/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c01a5869814dd6070318f10d0f43f06/2025/10/1000025981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c01a5869814dd6070318f10d0f43f06/2025/10/1000025982-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c01a5869814dd6070318f10d0f43f06/2025/10/1000025980-scaled.jpg,10/22/2025 0:00,11.0000000,11.0000000,46.1383300000000,-1.17594500000000,E.C.O.L.E de la Mer (Espace de Culture Océane du Littoral et de l'Environnement),estran des Minimes,108235,Observation #108235,https://biolit.fr/observations/observation-108235/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c01a5869814dd6070318f10d0f43f06/2025/10/1000025981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c01a5869814dd6070318f10d0f43f06/2025/10/1000025982-scaled.jpg,,TRUE,Identifiable +N1,108234,Sortie #108234,https://biolit.fr/sorties/sortie-108234/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c01a5869814dd6070318f10d0f43f06/2025/10/1000025981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c01a5869814dd6070318f10d0f43f06/2025/10/1000025982-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c01a5869814dd6070318f10d0f43f06/2025/10/1000025980-scaled.jpg,10/22/2025 0:00,11.0000000,11.0000000,46.1383300000000,-1.17594500000000,E.C.O.L.E de la Mer (Espace de Culture Océane du Littoral et de l'Environnement),estran des Minimes,108237,Observation #108237,https://biolit.fr/observations/observation-108237/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c01a5869814dd6070318f10d0f43f06/2025/10/1000025980-scaled.jpg,,TRUE,Identifiable +N1,108247,Sortie #108247,https://biolit.fr/sorties/sortie-108247/,Laliche Flora,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/023c6e8df887f1dc06066cb56e68cd5a/2025/10/IMG20251023155714-scaled.jpg,10/23/2025 0:00,16.000001,16.0000000,43.2374170,5.361407,Planète Mer,Plage de la sablette,108248,Observation #108248,https://biolit.fr/observations/observation-108248/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/023c6e8df887f1dc06066cb56e68cd5a/2025/10/IMG20251023155714-scaled.jpg,,TRUE,non-identifiable +N1,108250,Sortie #108250,https://biolit.fr/sorties/sortie-108250/,Céline,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6976-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6975-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6973-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6971-scaled.jpeg,10/23/2025 0:00,16.0000000,16.0000000,43.2368980000000,5.36062000000000,Planète Mer,Plage des sablettes,108251,Observation #108251,https://biolit.fr/observations/observation-108251/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6976-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6975-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6973-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6971-scaled.jpeg,,,Ne sais pas +N1,108250,Sortie #108250,https://biolit.fr/sorties/sortie-108250/,Céline,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6976-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6975-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6973-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6971-scaled.jpeg,10/23/2025 0:00,16.0000000,16.0000000,43.2368980000000,5.36062000000000,Planète Mer,Plage des sablettes,108253,Observation #108253,https://biolit.fr/observations/observation-108253/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6975-scaled.jpeg,,TRUE,Ne sais pas +N1,108250,Sortie #108250,https://biolit.fr/sorties/sortie-108250/,Céline,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6976-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6975-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6973-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6971-scaled.jpeg,10/23/2025 0:00,16.0000000,16.0000000,43.2368980000000,5.36062000000000,Planète Mer,Plage des sablettes,108255,Observation #108255,https://biolit.fr/observations/observation-108255/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6973-scaled.jpeg,,TRUE,non-identifiable +N1,108250,Sortie #108250,https://biolit.fr/sorties/sortie-108250/,Céline,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6976-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6975-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6973-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6971-scaled.jpeg,10/23/2025 0:00,16.0000000,16.0000000,43.2368980000000,5.36062000000000,Planète Mer,Plage des sablettes,108257,Observation #108257,https://biolit.fr/observations/observation-108257/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6971-scaled.jpeg,,TRUE,non-identifiable +N1,108279,Sortie #108279,https://biolit.fr/sorties/sortie-108279/,Leroux Julien,,10/25/2025 0:00,10.0000000,12.0000000,50.787627000000,1.6025180000000,,Pointe aux oies,,,,,,,,,, +N1,108287,Sortie #108287,https://biolit.fr/sorties/sortie-108287/,Leroux Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026254-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026247-scaled.jpg,10/25/2025 0:00,10.0:32,15.0:32,50.8037430,1.6165630,,La pointe aux oies,,,,,,,,,, +N1,108292,Sortie #108292,https://biolit.fr/sorties/sortie-108292/,Leroux Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026254-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026008-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026247-1-scaled.jpg,10/25/2025 0:00,15.0:36,15.0:36,50.8245610000000,1.56579100000000,,,108293,Observation #108293,https://biolit.fr/observations/observation-108293/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026254-1-scaled.jpg,,TRUE,Identifiable +N1,108292,Sortie #108292,https://biolit.fr/sorties/sortie-108292/,Leroux Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026254-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026008-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026247-1-scaled.jpg,10/25/2025 0:00,15.0:36,15.0:36,50.8245610000000,1.56579100000000,,,108295,Observation #108295,https://biolit.fr/observations/observation-108295/,Aetobatus narinari,Raie léopard,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026008-1-scaled.jpg,,,Identifiable +N1,108292,Sortie #108292,https://biolit.fr/sorties/sortie-108292/,Leroux Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026254-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026008-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026247-1-scaled.jpg,10/25/2025 0:00,15.0:36,15.0:36,50.8245610000000,1.56579100000000,,,108297,Observation #108297,https://biolit.fr/observations/observation-108297/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026247-1-scaled.jpg,,TRUE,non-identifiable +N1,108301,Sortie #108301,https://biolit.fr/sorties/sortie-108301/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6737384134b446c20bfdfec199a5df9a/2025/10/20251026_161529-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6737384134b446c20bfdfec199a5df9a/2025/10/20251026_161505-scaled.jpg,10/26/2025 0:00,16.0000000,17.000004,48.6922180000000,-1.89780200000000,Observe la nature,Plage Duguesclin,108302,Observation #108302,https://biolit.fr/observations/observation-108302/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6737384134b446c20bfdfec199a5df9a/2025/10/20251026_161529-scaled.jpg,,,Ne sais pas +N1,108311,Sortie #108311,https://biolit.fr/sorties/sortie-108311/,DURAND ALEXANDRA,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5606-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5607-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5610-scaled.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5611-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5612-scaled.jpg,10/09/2025,10.0000000,12.0000000,46.9728440000000,-2.25357100000000,,ILE DE NOIRMOUTIERS,108312,Observation #108312,https://biolit.fr/observations/observation-108312/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5606-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5607-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5611-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5610-scaled.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5612-scaled.jpg,,,Ne sais pas +N1,108311,Sortie #108311,https://biolit.fr/sorties/sortie-108311/,DURAND ALEXANDRA,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5606-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5607-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5610-scaled.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5611-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5612-scaled.jpg,10/09/2025,10.0000000,12.0000000,46.9728440000000,-2.25357100000000,,ILE DE NOIRMOUTIERS,108315,Observation #108315,https://biolit.fr/observations/observation-108315/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5611-scaled.jpg,,,Ne sais pas +N1,108311,Sortie #108311,https://biolit.fr/sorties/sortie-108311/,DURAND ALEXANDRA,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5606-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5607-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5610-scaled.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5611-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5612-scaled.jpg,10/09/2025,10.0000000,12.0000000,46.9728440000000,-2.25357100000000,,ILE DE NOIRMOUTIERS,108317,Observation #108317,https://biolit.fr/observations/observation-108317/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5607-scaled.jpg,,,Ne sais pas +N1,108311,Sortie #108311,https://biolit.fr/sorties/sortie-108311/,DURAND ALEXANDRA,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5606-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5607-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5610-scaled.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5611-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5612-scaled.jpg,10/09/2025,10.0000000,12.0000000,46.9728440000000,-2.25357100000000,,ILE DE NOIRMOUTIERS,108319,Observation #108319,https://biolit.fr/observations/observation-108319/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5610-scaled.png,,,Ne sais pas +N1,108311,Sortie #108311,https://biolit.fr/sorties/sortie-108311/,DURAND ALEXANDRA,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5606-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5607-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5610-scaled.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5611-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5612-scaled.jpg,10/09/2025,10.0000000,12.0000000,46.9728440000000,-2.25357100000000,,ILE DE NOIRMOUTIERS,108321,Observation #108321,https://biolit.fr/observations/observation-108321/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5612-scaled.jpg,,,Ne sais pas +N1,108355,Sortie #108355,https://biolit.fr/sorties/sortie-108355/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6553ea0bedfc3fedebf5fa4361dc1f68/2025/10/Image-33.jpg,10/28/2025 0:00,11.0000000,11.000005,48.6384050000000,-2.07002400000000,Planète Mer (antenne Dinard),Plage de Saint-Enogat,108356,Observation #108356,https://biolit.fr/observations/observation-108356/,Scyliorhinus canicula,Capsule de petite roussette,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6553ea0bedfc3fedebf5fa4361dc1f68/2025/10/Image-33.jpg,,TRUE,Identifiable +N1,108409,Sortie #108409,https://biolit.fr/sorties/sortie-108409/,Vial Pauline,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_104330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103833-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101649-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101305-scaled.jpg,10/29/2025 0:00,9.0000000,12.0000000,43.214882000000,5.34292600000000,Planète Mer,,108410,Observation #108410,https://biolit.fr/observations/observation-108410/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101043-scaled.jpg,,TRUE,Identifiable +N1,108409,Sortie #108409,https://biolit.fr/sorties/sortie-108409/,Vial Pauline,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_104330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103833-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101649-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101305-scaled.jpg,10/29/2025 0:00,9.0000000,12.0000000,43.214882000000,5.34292600000000,Planète Mer,,108412,Observation #108412,https://biolit.fr/observations/observation-108412/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103833-scaled.jpg,,TRUE,Identifiable +N1,108409,Sortie #108409,https://biolit.fr/sorties/sortie-108409/,Vial Pauline,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_104330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103833-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101649-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101305-scaled.jpg,10/29/2025 0:00,9.0000000,12.0000000,43.214882000000,5.34292600000000,Planète Mer,,108414,Observation #108414,https://biolit.fr/observations/observation-108414/,Corallina officinalis/caespitosa,Coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101649-scaled.jpg,,,Identifiable +N1,108409,Sortie #108409,https://biolit.fr/sorties/sortie-108409/,Vial Pauline,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_104330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103833-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101649-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101305-scaled.jpg,10/29/2025 0:00,9.0000000,12.0000000,43.214882000000,5.34292600000000,Planète Mer,,108416,Observation #108416,https://biolit.fr/observations/observation-108416/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101040-scaled.jpg,,,Identifiable +N1,108409,Sortie #108409,https://biolit.fr/sorties/sortie-108409/,Vial Pauline,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_104330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103833-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101649-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101305-scaled.jpg,10/29/2025 0:00,9.0000000,12.0000000,43.214882000000,5.34292600000000,Planète Mer,,108418,Observation #108418,https://biolit.fr/observations/observation-108418/,Peyssonnelia squamaria,Peyssonnelia,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101305-scaled.jpg,,,Identifiable +N1,108409,Sortie #108409,https://biolit.fr/sorties/sortie-108409/,Vial Pauline,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_104330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103833-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101649-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101305-scaled.jpg,10/29/2025 0:00,9.0000000,12.0000000,43.214882000000,5.34292600000000,Planète Mer,,108420,Observation #108420,https://biolit.fr/observations/observation-108420/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103128-scaled.jpg,,,non-identifiable +N1,108449,Sortie #108449,https://biolit.fr/sorties/sortie-108449/,Naturoscope (Antenne Marseille),,10/30/2025 0:00,15.0000000,16.0000000,43.2731010000000,5.36195900000000,Naturoscope (Antenne Marseille),Plage du Prophète,,,,,,,,,, +N1,108458,Sortie #108458,https://biolit.fr/sorties/sortie-108458/,Brenier Traoré David,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d0e0a92cd1ac77457924656c0ef9448d/2025/10/IMG_20251029_1026322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d0e0a92cd1ac77457924656c0ef9448d/2025/10/IMG_20251029_105242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d0e0a92cd1ac77457924656c0ef9448d/2025/10/IMG_20251029_102259-scaled.jpg,10/29/2025 0:00,9.0000000,11.0000000,43.2149550000000,5.3428320000000,Planète Mer,Anse de la Maronnaise,108459,Observation #108459,https://biolit.fr/observations/observation-108459/,Lithophyllum byssoides,Algue calcaire des trottoirs,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d0e0a92cd1ac77457924656c0ef9448d/2025/10/IMG_20251029_1026322-scaled.jpg,,,Identifiable +N1,108458,Sortie #108458,https://biolit.fr/sorties/sortie-108458/,Brenier Traoré David,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d0e0a92cd1ac77457924656c0ef9448d/2025/10/IMG_20251029_1026322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d0e0a92cd1ac77457924656c0ef9448d/2025/10/IMG_20251029_105242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d0e0a92cd1ac77457924656c0ef9448d/2025/10/IMG_20251029_102259-scaled.jpg,10/29/2025 0:00,9.0000000,11.0000000,43.2149550000000,5.3428320000000,Planète Mer,Anse de la Maronnaise,108461,Observation #108461,https://biolit.fr/observations/observation-108461/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d0e0a92cd1ac77457924656c0ef9448d/2025/10/IMG_20251029_105242-scaled.jpg,,,Identifiable +N1,108458,Sortie #108458,https://biolit.fr/sorties/sortie-108458/,Brenier Traoré David,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d0e0a92cd1ac77457924656c0ef9448d/2025/10/IMG_20251029_1026322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d0e0a92cd1ac77457924656c0ef9448d/2025/10/IMG_20251029_105242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d0e0a92cd1ac77457924656c0ef9448d/2025/10/IMG_20251029_102259-scaled.jpg,10/29/2025 0:00,9.0000000,11.0000000,43.2149550000000,5.3428320000000,Planète Mer,Anse de la Maronnaise,108463,Observation #108463,https://biolit.fr/observations/observation-108463/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d0e0a92cd1ac77457924656c0ef9448d/2025/10/IMG_20251029_102259-scaled.jpg,,,Identifiable +N1,108471,Sortie #108471,https://biolit.fr/sorties/sortie-108471/,boulier bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c2d32434316102a7d2d6f5a531991c2/2025/10/20251030_125447-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c2d32434316102a7d2d6f5a531991c2/2025/10/20251030_125845-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c2d32434316102a7d2d6f5a531991c2/2025/10/20251030_130356-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c2d32434316102a7d2d6f5a531991c2/2025/10/20251030_130402-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c2d32434316102a7d2d6f5a531991c2/2025/10/20251030_130406-scaled.jpg,10/30/2025 0:00,12.0:45,13.0000000,47.7022850000000,-3.39593400000000,,larmor plage,,,,,,,,,, +N1,108473,Sortie #108473,https://biolit.fr/sorties/sortie-108473/,Maison Baie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/628d9c0b2cdffc5082d2cff9d8328158/2025/10/1000058083-scaled.jpg,10/31/2025 0:00,15.0:23,16.0:23,48.6786050,-1.8600980,Al-Lark,Plage de St Benoît des Ondes,108474,Observation #108474,https://biolit.fr/observations/observation-108474/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/628d9c0b2cdffc5082d2cff9d8328158/2025/10/1000058083-scaled.jpg,,TRUE,non-identifiable +N1,108477,Sortie #108477,https://biolit.fr/sorties/sortie-108477/,Maison Baie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/628d9c0b2cdffc5082d2cff9d8328158/2025/10/IMG_20251031_125126-scaled.jpg,10/31/2025 0:00,15.0:34,15.0:35,48.620664,-1.849253,Al-Lark,Saint Benoît des ondes,108478,Observation #108478,https://biolit.fr/observations/observation-108478/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/628d9c0b2cdffc5082d2cff9d8328158/2025/10/IMG_20251031_125126-scaled.jpg,,TRUE,non-identifiable +N1,108483,Sortie #108483,https://biolit.fr/sorties/sortie-108483/,Landrain Claudine,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/2095c86a7aebe4823a724b0ae6a9c3b6/2025/10/IMG_20251031_144843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/2095c86a7aebe4823a724b0ae6a9c3b6/2025/10/IMG_20251031_144734-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/2095c86a7aebe4823a724b0ae6a9c3b6/2025/10/IMG_20251031_144305-scaled.jpg,10/31/2025 0:00,15.0000000,15.0:24,47.8135780,-3.6666690,Naturau’fil,Finistere moelan,,,,,,,,,, +N1,108487,Sortie #108487,https://biolit.fr/sorties/sortie-108487/,Landrain Claudine,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/2095c86a7aebe4823a724b0ae6a9c3b6/2025/10/IMG_20251031_144843-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/2095c86a7aebe4823a724b0ae6a9c3b6/2025/10/IMG_20251031_144734-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/2095c86a7aebe4823a724b0ae6a9c3b6/2025/10/IMG_20251031_144305-1-scaled.jpg,10/31/2025 0:00,15.0:14,16.0:15,47.8136340,-3.672091,Naturau’fil,Finistere moelan,108488,Observation #108488,https://biolit.fr/observations/observation-108488/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/2095c86a7aebe4823a724b0ae6a9c3b6/2025/10/IMG_20251031_144843-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/2095c86a7aebe4823a724b0ae6a9c3b6/2025/10/IMG_20251031_144734-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/2095c86a7aebe4823a724b0ae6a9c3b6/2025/10/IMG_20251031_144305-1-scaled.jpg,,TRUE,Identifiable +N1,108499,Sortie #108499,https://biolit.fr/sorties/sortie-108499/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6884-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6885-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6886-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6887-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6888-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6930-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6931-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6933-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6927-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399100000000,5.36230400000000,Planète Mer,Au bain des dames,108500,Observation #108500,https://biolit.fr/observations/observation-108500/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6884-scaled.jpeg,,, +N1,108499,Sortie #108499,https://biolit.fr/sorties/sortie-108499/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6884-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6885-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6886-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6887-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6888-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6930-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6931-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6933-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6927-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399100000000,5.36230400000000,Planète Mer,Au bain des dames,108502,Observation #108502,https://biolit.fr/observations/observation-108502/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6885-scaled.jpeg,,, +N1,108499,Sortie #108499,https://biolit.fr/sorties/sortie-108499/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6884-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6885-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6886-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6887-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6888-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6930-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6931-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6933-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6927-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399100000000,5.36230400000000,Planète Mer,Au bain des dames,108504,Observation #108504,https://biolit.fr/observations/observation-108504/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6886-scaled.jpeg,,, +N1,108499,Sortie #108499,https://biolit.fr/sorties/sortie-108499/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6884-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6885-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6886-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6887-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6888-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6930-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6931-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6933-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6927-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399100000000,5.36230400000000,Planète Mer,Au bain des dames,108506,Observation #108506,https://biolit.fr/observations/observation-108506/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6887-scaled.jpeg,,, +N1,108499,Sortie #108499,https://biolit.fr/sorties/sortie-108499/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6884-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6885-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6886-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6887-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6888-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6930-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6931-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6933-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6927-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399100000000,5.36230400000000,Planète Mer,Au bain des dames,108508,Observation #108508,https://biolit.fr/observations/observation-108508/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6888-scaled.jpeg,,, +N1,108499,Sortie #108499,https://biolit.fr/sorties/sortie-108499/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6884-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6885-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6886-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6887-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6888-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6930-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6931-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6933-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6927-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399100000000,5.36230400000000,Planète Mer,Au bain des dames,108510,Observation #108510,https://biolit.fr/observations/observation-108510/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6930-scaled.jpeg,,, +N1,108499,Sortie #108499,https://biolit.fr/sorties/sortie-108499/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6884-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6885-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6886-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6887-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6888-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6930-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6931-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6933-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6927-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399100000000,5.36230400000000,Planète Mer,Au bain des dames,108512,Observation #108512,https://biolit.fr/observations/observation-108512/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6931-scaled.jpeg,,, +N1,108499,Sortie #108499,https://biolit.fr/sorties/sortie-108499/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6884-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6885-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6886-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6887-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6888-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6930-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6931-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6933-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6927-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399100000000,5.36230400000000,Planète Mer,Au bain des dames,108514,Observation #108514,https://biolit.fr/observations/observation-108514/,",",,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6933-scaled.jpeg,,,, +N1,108499,Sortie #108499,https://biolit.fr/sorties/sortie-108499/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6884-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6885-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6886-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6887-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6888-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6930-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6931-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6933-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6927-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399100000000,5.36230400000000,Planète Mer,Au bain des dames,108516,Observation #108516,https://biolit.fr/observations/observation-108516/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6927-scaled.jpeg,,, +N1,108524,Sortie #108524,https://biolit.fr/sorties/sortie-108524/,clouet chrystele,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/712cf221d4e64d1f30abab900ed1a85c/2025/11/IMG_1066-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/712cf221d4e64d1f30abab900ed1a85c/2025/11/IMG_1063-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/712cf221d4e64d1f30abab900ed1a85c/2025/11/IMG_1067-1-scaled.jpeg,11/01/2025,16.0000000,16.0:44,47.8004870000000,-4.20433000000000,Communauté de communes du Haut Pays Bigouden,Plage des Sables Blancs Lesconil,108525,Observation #108525,https://biolit.fr/observations/observation-108525/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/712cf221d4e64d1f30abab900ed1a85c/2025/11/IMG_1066-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/712cf221d4e64d1f30abab900ed1a85c/2025/11/IMG_1067-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/712cf221d4e64d1f30abab900ed1a85c/2025/11/IMG_1063-1-scaled.jpeg,,TRUE,Ne sais pas +N1,108524,Sortie #108524,https://biolit.fr/sorties/sortie-108524/,clouet chrystele,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/712cf221d4e64d1f30abab900ed1a85c/2025/11/IMG_1066-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/712cf221d4e64d1f30abab900ed1a85c/2025/11/IMG_1063-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/712cf221d4e64d1f30abab900ed1a85c/2025/11/IMG_1067-1-scaled.jpeg,11/01/2025,16.0000000,16.0:44,47.8004870000000,-4.20433000000000,Communauté de communes du Haut Pays Bigouden,Plage des Sables Blancs Lesconil,108527,Observation #108527,https://biolit.fr/?post_type=observations&p=108527,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/712cf221d4e64d1f30abab900ed1a85c/2025/11/IMG_1066-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/712cf221d4e64d1f30abab900ed1a85c/2025/11/IMG_1063-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/712cf221d4e64d1f30abab900ed1a85c/2025/11/IMG_1067-1-scaled.jpeg,,,Ne sais pas +N1,108533,Sortie #108533,https://biolit.fr/sorties/sortie-108533/,DENEFLE MARIE CLARISSE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/57e3899a3a7e3ffc66db9cf1c74cc8fb/2025/11/IMG20251101085149-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/57e3899a3a7e3ffc66db9cf1c74cc8fb/2025/11/IMG20251101085132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/57e3899a3a7e3ffc66db9cf1c74cc8fb/2025/11/IMG20251101084658-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/57e3899a3a7e3ffc66db9cf1c74cc8fb/2025/11/IMG20251101084617-scaled.jpg,10/31/2025 0:00,13.0:14,22.0:14,48.9215000,2.2986210,,Plage du pouldu Audierne 29,108534,Observation #108534,https://biolit.fr/observations/observation-108534/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/57e3899a3a7e3ffc66db9cf1c74cc8fb/2025/11/IMG20251101085149-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/57e3899a3a7e3ffc66db9cf1c74cc8fb/2025/11/IMG20251101085132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/57e3899a3a7e3ffc66db9cf1c74cc8fb/2025/11/IMG20251101084658-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/57e3899a3a7e3ffc66db9cf1c74cc8fb/2025/11/IMG20251101084617-scaled.jpg,,TRUE,Identifiable +N1,108550,Sortie #108550,https://biolit.fr/sorties/sortie-108550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250529_100438937_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250529_112231666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250530_1423322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_093934-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_094132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_094454-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_095700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_102745-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_103824-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_110904-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_172138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_172234-scaled.jpg,5/30/2025 0:00,10.0000000,10.0000000,43.0345370000000,6.15694000000000,Planète Mer,Giens - Plage de l'Estanci,108551,Observation #108551,https://biolit.fr/observations/observation-108551/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250529_100438937_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250529_112231666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_094132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_094454-scaled.jpg,,,Identifiable +N1,108550,Sortie #108550,https://biolit.fr/sorties/sortie-108550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250529_100438937_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250529_112231666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250530_1423322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_093934-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_094132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_094454-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_095700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_102745-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_103824-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_110904-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_172138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_172234-scaled.jpg,5/30/2025 0:00,10.0000000,10.0000000,43.0345370000000,6.15694000000000,Planète Mer,Giens - Plage de l'Estanci,108553,Observation #108553,https://biolit.fr/observations/observation-108553/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250530_1423322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_093934-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_095700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_102745-scaled.jpg,,,Identifiable +N1,108550,Sortie #108550,https://biolit.fr/sorties/sortie-108550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250529_100438937_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250529_112231666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250530_1423322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_093934-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_094132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_094454-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_095700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_102745-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_103824-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_110904-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_172138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_172234-scaled.jpg,5/30/2025 0:00,10.0000000,10.0000000,43.0345370000000,6.15694000000000,Planète Mer,Giens - Plage de l'Estanci,108555,Observation #108555,https://biolit.fr/observations/observation-108555/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_103824-scaled.jpg,,,Identifiable +N1,108550,Sortie #108550,https://biolit.fr/sorties/sortie-108550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250529_100438937_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250529_112231666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250530_1423322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_093934-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_094132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_094454-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_095700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_102745-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_103824-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_110904-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_172138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_172234-scaled.jpg,5/30/2025 0:00,10.0000000,10.0000000,43.0345370000000,6.15694000000000,Planète Mer,Giens - Plage de l'Estanci,108557,Observation #108557,https://biolit.fr/observations/observation-108557/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_110904-scaled.jpg,,,Identifiable +N1,108550,Sortie #108550,https://biolit.fr/sorties/sortie-108550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250529_100438937_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250529_112231666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250530_1423322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_093934-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_094132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_094454-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_095700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_102745-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_103824-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_110904-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_172138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_172234-scaled.jpg,5/30/2025 0:00,10.0000000,10.0000000,43.0345370000000,6.15694000000000,Planète Mer,Giens - Plage de l'Estanci,108559,Observation #108559,https://biolit.fr/observations/observation-108559/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_172138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_172234-scaled.jpg,,,Identifiable +N1,108563,Sortie #108563,https://biolit.fr/sorties/sortie-108563/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250601_094128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250530_152845-scaled.jpg,5/30/2025 0:00,15.0000000,15.0000000,43.0352630000000,6.15510100000000,Planète Mer,Giens,108564,Observation #108564,https://biolit.fr/observations/observation-108564/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250601_094128-scaled.jpg,,,Identifiable +N1,108563,Sortie #108563,https://biolit.fr/sorties/sortie-108563/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250601_094128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250530_152845-scaled.jpg,5/30/2025 0:00,15.0000000,15.0000000,43.0352630000000,6.15510100000000,Planète Mer,Giens,108566,Observation #108566,https://biolit.fr/observations/observation-108566/,Tritia mutabilis,Noisette de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250530_152845-scaled.jpg,,,Identifiable +N1,108569,Sortie #108569,https://biolit.fr/sorties/sortie-108569/,cloarec gisèle,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0a7e3e8c90bad55b44019f07a3da5a4b/2025/11/20251102_145925-scaled.jpg,11/02/2025,15.0000000,15.0:45,48.4278120000000,-4.78625400000000,,Trézien (Plouarzel),,,,,,,,,, +N1,108571,Sortie #108571,https://biolit.fr/sorties/sortie-108571/,POCHAT FLORENT,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d2d6e9462ecf867e5a52be19607d655c/2025/11/IMG_3595-scaled.jpeg,11/02/2025,15.000003,17.000004,47.7102620000000,-3.34743100000000,Escale Bretagne,Port Louis plage du LOHIC,108572,Observation #108572,https://biolit.fr/observations/observation-108572/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d2d6e9462ecf867e5a52be19607d655c/2025/11/IMG_3595-scaled.jpeg,,TRUE,Identifiable +N1,108575,Sortie #108575,https://biolit.fr/sorties/sortie-108575/,POCHAT FLORENT,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d2d6e9462ecf867e5a52be19607d655c/2025/11/IMG_3596-scaled.jpeg,11/02/2025,16.0:11,17.0:11,47.7034290000000,-3.35481500000000,Escale Bretagne,Port Louis plage du LOHIC,,,,,,,,,, +N1,108577,Sortie #108577,https://biolit.fr/sorties/sortie-108577/,POCHAT FLORENT,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d2d6e9462ecf867e5a52be19607d655c/2025/11/IMG_3619-scaled.jpeg,11/02/2025,16.0:11,17.0:11,47.7034290000000,-3.35481500000000,Escale Bretagne,Port Louis plage du LOHIC,108578,Observation #108578,https://biolit.fr/observations/observation-108578/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d2d6e9462ecf867e5a52be19607d655c/2025/11/IMG_3619-scaled.jpeg,,,Ne sais pas +N1,108581,Sortie #108581,https://biolit.fr/sorties/sortie-108581/,POCHAT FLORENT,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d2d6e9462ecf867e5a52be19607d655c/2025/11/IMG_3617-scaled.jpeg,11/02/2025,16.0:17,17.0:17,47.704269000000,-3.35568200000000,Escale Bretagne,Port Louis plage du LOHIC,108582,Observation #108582,https://biolit.fr/observations/observation-108582/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d2d6e9462ecf867e5a52be19607d655c/2025/11/IMG_3617-scaled.jpeg,,TRUE,Ne sais pas +N1,108585,Sortie #108585,https://biolit.fr/sorties/sortie-108585/,POCHAT FLORENT,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d2d6e9462ecf867e5a52be19607d655c/2025/11/IMG_3617-1-scaled.jpeg,11/02/2025,16.0:21,17.0000000,47.7042390000000,-3.35575500000000,Escale Bretagne,Port Louis plage du LOHIC,108586,Observation #108586,https://biolit.fr/?post_type=observations&p=108586,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d2d6e9462ecf867e5a52be19607d655c/2025/11/IMG_3617-1-scaled.jpeg,,, +N1,108585,Sortie #108585,https://biolit.fr/sorties/sortie-108585/,POCHAT FLORENT,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d2d6e9462ecf867e5a52be19607d655c/2025/11/IMG_3617-1-scaled.jpeg,11/02/2025,16.0:21,17.0000000,47.7042390000000,-3.35575500000000,Escale Bretagne,Port Louis plage du LOHIC,108588,Observation #108588,https://biolit.fr/?post_type=observations&p=108588,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d2d6e9462ecf867e5a52be19607d655c/2025/11/IMG_3617-1-scaled.jpeg,,,Ne sais pas +N1,108592,Sortie #108592,https://biolit.fr/sorties/sortie-108592/,POCHAT FLORENT,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d2d6e9462ecf867e5a52be19607d655c/2025/11/IMG_3597-scaled.jpeg,11/02/2025,16.000004,17.0:23,48.0466900000000,-2.73339800000000,Escale Bretagne,Port Louis plage du LOHIC,108593,Observation #108593,https://biolit.fr/observations/observation-108593/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d2d6e9462ecf867e5a52be19607d655c/2025/11/IMG_3597-scaled.jpeg,,FALSE,Ne sais pas +N1,108597,Sortie #108597,https://biolit.fr/sorties/sortie-108597/,POCHAT FLORENT,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d2d6e9462ecf867e5a52be19607d655c/2025/11/IMG_3600-scaled.jpeg,11/02/2025,16.0:28,0.0:22,47.7042710000000,-3.35564800000000,Escale Bretagne,Port Louis plage du LOHIC,108598,Observation #108598,https://biolit.fr/observations/observation-108598/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d2d6e9462ecf867e5a52be19607d655c/2025/11/IMG_3600-scaled.jpeg,,,Ne sais pas +N1,108641,Sortie #108641,https://biolit.fr/sorties/sortie-108641/,RAVERTA Mariano,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0067-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0068-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0069-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0070-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0072-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0076-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0079-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0103-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0104-1-scaled.jpg,10/09/2025,14.0000000,18.0000000,44.656817,-1.239036,,Cap Ferret,108642,Observation #108642,https://biolit.fr/observations/observation-108642/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0067-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0068-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0069-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0070-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0072-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0079-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0076-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0103-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0104-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0102-scaled.jpg,,,Ne sais pas +N1,108641,Sortie #108641,https://biolit.fr/sorties/sortie-108641/,RAVERTA Mariano,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0067-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0068-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0069-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0070-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0072-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0076-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0079-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0103-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0104-1-scaled.jpg,10/09/2025,14.0000000,18.0000000,44.656817,-1.239036,,Cap Ferret,108645,Observation #108645,https://biolit.fr/observations/observation-108645/,Eriocheir sinensis,Crabe chinois à mitaines,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0068-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0069-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0070-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0072-scaled.jpg,,,Identifiable +N1,108717,Sortie #108717,https://biolit.fr/sorties/sortie-108717/,Groupe Associatif Estuaire,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135624-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135848-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135934-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_140937-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141002-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141017-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141037-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141047-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141058-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120254-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120256-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120258-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120262-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120263-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120264-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120266-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120267-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120268-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120269-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120271-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120272-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120274-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120277-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/Zone-1-K1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/Zone-1-K1-N2-1-scaled.jpg,8/13/2025 0:00,13.0000000,15.0000000,46.435112,-1.66685,Groupe Associatif Estuaire (Association Estuaire),Anse de la République,108718,Observation #108718,https://biolit.fr/observations/observation-108718/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135848-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135934-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_140937-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141002-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141037-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141047-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120254-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120256-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120258-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120262-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120263-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120272-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120277-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/Zone-1-K1-N2-1-scaled.jpg,,,Identifiable +N1,108717,Sortie #108717,https://biolit.fr/sorties/sortie-108717/,Groupe Associatif Estuaire,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135624-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135848-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135934-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_140937-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141002-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141017-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141037-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141047-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141058-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120254-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120256-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120258-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120262-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120263-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120264-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120266-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120267-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120268-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120269-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120271-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120272-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120274-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120277-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/Zone-1-K1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/Zone-1-K1-N2-1-scaled.jpg,8/13/2025 0:00,13.0000000,15.0000000,46.435112,-1.66685,Groupe Associatif Estuaire (Association Estuaire),Anse de la République,108720,Observation #108720,https://biolit.fr/?post_type=observations&p=108720,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135934-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120272-1-scaled.jpg,,,Identifiable +N1,108717,Sortie #108717,https://biolit.fr/sorties/sortie-108717/,Groupe Associatif Estuaire,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135624-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135848-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135934-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_140937-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141002-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141017-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141037-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141047-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141058-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120254-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120256-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120258-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120262-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120263-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120264-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120266-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120267-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120268-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120269-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120271-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120272-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120274-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120277-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/Zone-1-K1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/Zone-1-K1-N2-1-scaled.jpg,8/13/2025 0:00,13.0000000,15.0000000,46.435112,-1.66685,Groupe Associatif Estuaire (Association Estuaire),Anse de la République,108722,Observation #108722,https://biolit.fr/?post_type=observations&p=108722,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_140937-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120254-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120256-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120258-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120262-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120263-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120277-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/Zone-1-K1-N2-1-scaled.jpg,,,Identifiable +N1,108717,Sortie #108717,https://biolit.fr/sorties/sortie-108717/,Groupe Associatif Estuaire,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135624-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135848-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135934-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_140937-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141002-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141017-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141037-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141047-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141058-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120254-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120256-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120258-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120262-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120263-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120264-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120266-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120267-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120268-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120269-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120271-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120272-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120274-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120277-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/Zone-1-K1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/Zone-1-K1-N2-1-scaled.jpg,8/13/2025 0:00,13.0000000,15.0000000,46.435112,-1.66685,Groupe Associatif Estuaire (Association Estuaire),Anse de la République,108724,Observation #108724,https://biolit.fr/?post_type=observations&p=108724,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141002-1-scaled.jpg,,,Identifiable +N1,108717,Sortie #108717,https://biolit.fr/sorties/sortie-108717/,Groupe Associatif Estuaire,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135624-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135848-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135934-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_140937-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141002-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141017-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141037-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141047-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141058-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120254-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120256-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120258-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120262-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120263-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120264-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120266-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120267-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120268-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120269-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120271-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120272-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120274-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120277-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/Zone-1-K1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/Zone-1-K1-N2-1-scaled.jpg,8/13/2025 0:00,13.0000000,15.0000000,46.435112,-1.66685,Groupe Associatif Estuaire (Association Estuaire),Anse de la République,108726,Observation #108726,https://biolit.fr/observations/observation-108726/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141037-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141047-1-scaled.jpg,,,Identifiable +N1,108717,Sortie #108717,https://biolit.fr/sorties/sortie-108717/,Groupe Associatif Estuaire,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135624-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135848-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135934-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_140937-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141002-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141017-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141037-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141047-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141058-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120254-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120256-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120258-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120262-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120263-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120264-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120266-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120267-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120268-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120269-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120271-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120272-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120274-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120277-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/Zone-1-K1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/Zone-1-K1-N2-1-scaled.jpg,8/13/2025 0:00,13.0000000,15.0000000,46.435112,-1.66685,Groupe Associatif Estuaire (Association Estuaire),Anse de la République,108728,Observation #108728,https://biolit.fr/observations/observation-108728/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141017-1-scaled.jpg,,,Identifiable +N1,108730,Sortie #108730,https://biolit.fr/sorties/sortie-108730/,Observe la nature,,11/03/2025,16.0000000,16.0:29,45.5495720000000,-1.09542500000000,Observe la nature,Soulac sur mer,,,,,,,,,, +N1,108732,Sortie #108732,https://biolit.fr/sorties/sortie-108732/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6737384134b446c20bfdfec199a5df9a/2025/11/20251103_171434-scaled.jpg,11/03/2025,16.0000000,16.0000000,45.5315810000000,-1.11142200000000,Observe la nature,Soulac sur mer,108733,Observation #108733,https://biolit.fr/observations/observation-108733/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6737384134b446c20bfdfec199a5df9a/2025/11/20251103_171434-scaled.jpg,,,Ne sais pas +N1,108743,Sortie #108743,https://biolit.fr/sorties/sortie-108743/,LE JALLE NORIG,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_143646736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144051736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144101188-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144133175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144145194-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144204316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144328093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_145005853-scaled.jpg,11/03/2025,14.0000000,17.0000000,43.483856,-1.562935,,Biarritz,108744,Observation #108744,https://biolit.fr/observations/observation-108744/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_143646736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144051736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144101188-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144133175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144145194-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144204316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144328093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_145005853-scaled.jpg,,,Ne sais pas +N1,108743,Sortie #108743,https://biolit.fr/sorties/sortie-108743/,LE JALLE NORIG,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_143646736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144051736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144101188-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144133175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144145194-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144204316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144328093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_145005853-scaled.jpg,11/03/2025,14.0000000,17.0000000,43.483856,-1.562935,,Biarritz,108746,Observation #108746,https://biolit.fr/observations/observation-108746/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144051736-scaled.jpg,,TRUE,Ne sais pas +N1,108743,Sortie #108743,https://biolit.fr/sorties/sortie-108743/,LE JALLE NORIG,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_143646736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144051736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144101188-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144133175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144145194-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144204316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144328093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_145005853-scaled.jpg,11/03/2025,14.0000000,17.0000000,43.483856,-1.562935,,Biarritz,108748,Observation #108748,https://biolit.fr/observations/observation-108748/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144101188-scaled.jpg,,TRUE,Ne sais pas +N1,108743,Sortie #108743,https://biolit.fr/sorties/sortie-108743/,LE JALLE NORIG,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_143646736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144051736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144101188-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144133175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144145194-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144204316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144328093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_145005853-scaled.jpg,11/03/2025,14.0000000,17.0000000,43.483856,-1.562935,,Biarritz,108750,Observation #108750,https://biolit.fr/observations/observation-108750/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144133175-scaled.jpg,,,Ne sais pas +N1,108743,Sortie #108743,https://biolit.fr/sorties/sortie-108743/,LE JALLE NORIG,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_143646736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144051736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144101188-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144133175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144145194-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144204316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144328093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_145005853-scaled.jpg,11/03/2025,14.0000000,17.0000000,43.483856,-1.562935,,Biarritz,108752,Observation #108752,https://biolit.fr/observations/observation-108752/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144145194-scaled.jpg,,,Ne sais pas +N1,108743,Sortie #108743,https://biolit.fr/sorties/sortie-108743/,LE JALLE NORIG,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_143646736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144051736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144101188-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144133175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144145194-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144204316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144328093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_145005853-scaled.jpg,11/03/2025,14.0000000,17.0000000,43.483856,-1.562935,,Biarritz,108754,Observation #108754,https://biolit.fr/observations/observation-108754/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144204316-scaled.jpg,,,Ne sais pas +N1,108743,Sortie #108743,https://biolit.fr/sorties/sortie-108743/,LE JALLE NORIG,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_143646736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144051736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144101188-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144133175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144145194-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144204316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144328093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_145005853-scaled.jpg,11/03/2025,14.0000000,17.0000000,43.483856,-1.562935,,Biarritz,108756,Observation #108756,https://biolit.fr/observations/observation-108756/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144328093-scaled.jpg,,TRUE,Ne sais pas +N1,108743,Sortie #108743,https://biolit.fr/sorties/sortie-108743/,LE JALLE NORIG,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_143646736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144051736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144101188-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144133175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144145194-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144204316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144328093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_145005853-scaled.jpg,11/03/2025,14.0000000,17.0000000,43.483856,-1.562935,,Biarritz,108758,Observation #108758,https://biolit.fr/observations/observation-108758/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_145005853-scaled.jpg,,,non-identifiable +N1,108796,Sortie #108796,https://biolit.fr/sorties/sortie-108796/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-scaled.jpg,10/16/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.846604000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108797,Observation #108797,https://biolit.fr/observations/observation-108797/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-2-scaled.jpg,,,non-identifiable +N1,108796,Sortie #108796,https://biolit.fr/sorties/sortie-108796/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-scaled.jpg,10/16/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.846604000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108799,Observation #108799,https://biolit.fr/observations/observation-108799/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-3-scaled.jpg,,TRUE,Identifiable +N1,108796,Sortie #108796,https://biolit.fr/sorties/sortie-108796/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-scaled.jpg,10/16/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.846604000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108801,Observation #108801,https://biolit.fr/observations/observation-108801/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-scaled.jpg,,TRUE,Identifiable +N1,108796,Sortie #108796,https://biolit.fr/sorties/sortie-108796/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-scaled.jpg,10/16/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.846604000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108803,Observation #108803,https://biolit.fr/observations/observation-108803/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-scaled.jpg,,TRUE,Identifiable +N1,108796,Sortie #108796,https://biolit.fr/sorties/sortie-108796/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-scaled.jpg,10/16/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.846604000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108805,Observation #108805,https://biolit.fr/observations/observation-108805/,Crangon crangon,Crevette grise européenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-scaled.jpg,,,Identifiable +N1,108796,Sortie #108796,https://biolit.fr/sorties/sortie-108796/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-scaled.jpg,10/16/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.846604000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108807,Observation #108807,https://biolit.fr/observations/observation-108807/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-2-scaled.jpg,,TRUE,Identifiable +N1,108796,Sortie #108796,https://biolit.fr/sorties/sortie-108796/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-scaled.jpg,10/16/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.846604000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108809,Observation #108809,https://biolit.fr/observations/observation-108809/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-2-scaled.jpg,,TRUE,Identifiable +N1,108796,Sortie #108796,https://biolit.fr/sorties/sortie-108796/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-scaled.jpg,10/16/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.846604000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108811,Observation #108811,https://biolit.fr/observations/observation-108811/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-scaled.jpg,,TRUE,Identifiable +N1,108796,Sortie #108796,https://biolit.fr/sorties/sortie-108796/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-scaled.jpg,10/16/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.846604000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108813,Observation #108813,https://biolit.fr/observations/observation-108813/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-scaled.jpg,,TRUE,Identifiable +N1,108796,Sortie #108796,https://biolit.fr/sorties/sortie-108796/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-scaled.jpg,10/16/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.846604000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108815,Observation #108815,https://biolit.fr/observations/observation-108815/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-2-scaled.jpg,,TRUE,Identifiable +N1,108796,Sortie #108796,https://biolit.fr/sorties/sortie-108796/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-scaled.jpg,10/16/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.846604000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108817,Observation #108817,https://biolit.fr/observations/observation-108817/,Hediste diversicolor,Néréis multicolore,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-2-scaled.jpg,,TRUE,Identifiable +N1,108796,Sortie #108796,https://biolit.fr/sorties/sortie-108796/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-scaled.jpg,10/16/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.846604000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108819,Observation #108819,https://biolit.fr/observations/observation-108819/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/palourde-scaled.jpg,,,Identifiable +N1,108796,Sortie #108796,https://biolit.fr/sorties/sortie-108796/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-scaled.jpg,10/16/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.846604000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108821,Observation #108821,https://biolit.fr/observations/observation-108821/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-scaled.jpg,,TRUE,Identifiable +N1,108859,Sortie #108859,https://biolit.fr/sorties/sortie-108859/,YAHIAOUI Sofiane,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0576-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0578-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0581-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0583-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0592-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0593-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0594-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0597-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0601-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0605-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0606-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0607-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0608-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0609-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0610-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0611-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0612-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0613-scaled.jpg,8/26/2025 0:00,9.0:47,16.0:47,49.6466660000000,0.153709000000000,,st jouin,,,,,,,,,, +N1,108962,Sortie #108962,https://biolit.fr/sorties/sortie-108962/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-ideterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-de-san-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/nereis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Sacculine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-scaled.jpg,11/04/2025,10.0000000,11.0000000,48.7025210000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108963,Observation #108963,https://biolit.fr/observations/observation-108963/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-ideterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-indeterminee-2-scaled.jpg,,,Ne sais pas +N1,108962,Sortie #108962,https://biolit.fr/sorties/sortie-108962/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-ideterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-de-san-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/nereis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Sacculine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-scaled.jpg,11/04/2025,10.0000000,11.0000000,48.7025210000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108965,Observation #108965,https://biolit.fr/observations/observation-108965/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-2-scaled.jpg,,,Identifiable +N1,108962,Sortie #108962,https://biolit.fr/sorties/sortie-108962/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-ideterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-de-san-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/nereis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Sacculine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-scaled.jpg,11/04/2025,10.0000000,11.0000000,48.7025210000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108967,Observation #108967,https://biolit.fr/observations/observation-108967/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-2-scaled.jpg,,TRUE,Identifiable +N1,108962,Sortie #108962,https://biolit.fr/sorties/sortie-108962/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-ideterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-de-san-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/nereis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Sacculine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-scaled.jpg,11/04/2025,10.0000000,11.0000000,48.7025210000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108969,Observation #108969,https://biolit.fr/observations/observation-108969/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-scaled.jpg,,TRUE,Identifiable +N1,108962,Sortie #108962,https://biolit.fr/sorties/sortie-108962/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-ideterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-de-san-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/nereis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Sacculine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-scaled.jpg,11/04/2025,10.0000000,11.0000000,48.7025210000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108971,Observation #108971,https://biolit.fr/observations/observation-108971/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-scaled.jpg,,TRUE,Identifiable +N1,108962,Sortie #108962,https://biolit.fr/sorties/sortie-108962/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-ideterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-de-san-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/nereis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Sacculine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-scaled.jpg,11/04/2025,10.0000000,11.0000000,48.7025210000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108973,Observation #108973,https://biolit.fr/observations/observation-108973/,Botrylloides diegensis,Botrylle de San Diego,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-de-san-diego-scaled.jpg,,,Identifiable +N1,108962,Sortie #108962,https://biolit.fr/sorties/sortie-108962/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-ideterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-de-san-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/nereis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Sacculine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-scaled.jpg,11/04/2025,10.0000000,11.0000000,48.7025210000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108975,Observation #108975,https://biolit.fr/observations/observation-108975/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-scaled.jpg,,TRUE,Identifiable +N1,108962,Sortie #108962,https://biolit.fr/sorties/sortie-108962/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-ideterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-de-san-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/nereis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Sacculine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-scaled.jpg,11/04/2025,10.0000000,11.0000000,48.7025210000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108977,Observation #108977,https://biolit.fr/observations/observation-108977/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-1-scaled.jpg,,TRUE,Identifiable +N1,108962,Sortie #108962,https://biolit.fr/sorties/sortie-108962/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-ideterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-de-san-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/nereis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Sacculine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-scaled.jpg,11/04/2025,10.0000000,11.0000000,48.7025210000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108979,Observation #108979,https://biolit.fr/observations/observation-108979/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/moule-scaled.jpg,,TRUE,Identifiable +N1,108962,Sortie #108962,https://biolit.fr/sorties/sortie-108962/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-ideterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-de-san-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/nereis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Sacculine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-scaled.jpg,11/04/2025,10.0000000,11.0000000,48.7025210000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108981,Observation #108981,https://biolit.fr/observations/observation-108981/,Hediste diversicolor,Néréis multicolore,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/nereis-1-1-scaled.jpg,,TRUE,Identifiable +N1,108962,Sortie #108962,https://biolit.fr/sorties/sortie-108962/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-ideterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-de-san-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/nereis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Sacculine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-scaled.jpg,11/04/2025,10.0000000,11.0000000,48.7025210000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108983,Observation #108983,https://biolit.fr/observations/observation-108983/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-2-scaled.jpg,,,Identifiable +N1,108962,Sortie #108962,https://biolit.fr/sorties/sortie-108962/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-ideterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-de-san-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/nereis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Sacculine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-scaled.jpg,11/04/2025,10.0000000,11.0000000,48.7025210000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108985,Observation #108985,https://biolit.fr/observations/observation-108985/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/porcellane-scaled.jpg,,TRUE,Identifiable +N1,108962,Sortie #108962,https://biolit.fr/sorties/sortie-108962/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-ideterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-de-san-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/nereis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Sacculine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-scaled.jpg,11/04/2025,10.0000000,11.0000000,48.7025210000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108987,Observation #108987,https://biolit.fr/observations/observation-108987/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-2-scaled.jpg,,TRUE,Identifiable +N1,108962,Sortie #108962,https://biolit.fr/sorties/sortie-108962/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-ideterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-de-san-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/nereis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Sacculine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-scaled.jpg,11/04/2025,10.0000000,11.0000000,48.7025210000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108989,Observation #108989,https://biolit.fr/observations/observation-108989/,Sacculina carcini,Sacculine du crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Sacculine-scaled.jpg,,TRUE,Identifiable +N1,108962,Sortie #108962,https://biolit.fr/sorties/sortie-108962/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-ideterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-de-san-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/nereis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Sacculine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-scaled.jpg,11/04/2025,10.0000000,11.0000000,48.7025210000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108991,Observation #108991,https://biolit.fr/observations/observation-108991/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-scaled.jpg,,TRUE,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109016,Observation #109016,https://biolit.fr/observations/observation-109016/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg,,,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109018,Observation #109018,https://biolit.fr/observations/observation-109018/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg,,TRUE,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109020,Observation #109020,https://biolit.fr/observations/observation-109020/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg,,TRUE,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109022,Observation #109022,https://biolit.fr/observations/observation-109022/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg,,TRUE,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109024,Observation #109024,https://biolit.fr/observations/observation-109024/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg,,TRUE,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109026,Observation #109026,https://biolit.fr/observations/observation-109026/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg,,TRUE,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109028,Observation #109028,https://biolit.fr/observations/observation-109028/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg,,TRUE,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109030,Observation #109030,https://biolit.fr/observations/observation-109030/,Botrylloides spp. (leachii violaceus diegensis),Botrylles,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg,,TRUE,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109032,Observation #109032,https://biolit.fr/observations/observation-109032/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg,,,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109034,Observation #109034,https://biolit.fr/observations/observation-109034/,Ciona intestinalis,Cione intestinale,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg,,,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109036,Observation #109036,https://biolit.fr/observations/observation-109036/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg,,TRUE,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109038,Observation #109038,https://biolit.fr/observations/observation-109038/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg,,TRUE,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109040,Observation #109040,https://biolit.fr/observations/observation-109040/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg,,TRUE,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109042,Observation #109042,https://biolit.fr/observations/observation-109042/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg,,,Ne sais pas +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109044,Observation #109044,https://biolit.fr/observations/observation-109044/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg,,TRUE,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109046,Observation #109046,https://biolit.fr/observations/observation-109046/,Nerophis ophidion,Nérophis ophidion,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg,,,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109048,Observation #109048,https://biolit.fr/observations/observation-109048/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg,,TRUE,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109050,Observation #109050,https://biolit.fr/observations/observation-109050/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg,,TRUE,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109052,Observation #109052,https://biolit.fr/observations/observation-109052/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,,TRUE,Identifiable +N1,109065,Sortie #109065,https://biolit.fr/sorties/sortie-109065/,Marie Claude GOUIN,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e98b497a9c25303f40702ab429f57337/2025/11/IMG_0322-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e98b497a9c25303f40702ab429f57337/2025/11/IMG_0319-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e98b497a9c25303f40702ab429f57337/2025/11/IMG_0321-scaled.jpeg,11/09/2025,9.0000000,10.0:15,48.1945720000000,-4.0869140000,,LOCTUDY,,,,,,,,,, +N1,109070,Sortie #109070,https://biolit.fr/sorties/sortie-109070/,Philippe Feron,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c9b0496b455c2a9c0c8f7d3c5af3d7c4/2025/11/20251109_111808-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c9b0496b455c2a9c0c8f7d3c5af3d7c4/2025/11/20251109_111812-1-scaled.jpg,11/09/2025,10.0000000,12.000003,47.5706910000000,-3.05422100000000,,Plage de la guerite,,,,,,,,,, +N1,109166,Sortie #109166,https://biolit.fr/sorties/sortie-109166/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2467-2-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32118,0.35572,,Luc sur mer,109167,Observation #109167,https://biolit.fr/observations/observation-109167/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2467-2-scaled.jpg,,TRUE,Identifiable +N1,109179,Sortie #109179,https://biolit.fr/sorties/sortie-109179/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2476-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2478-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2481-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2482-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2484-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2489-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2490-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2495-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2500-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2502-1-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32385,0.36218,,Langrune,109180,Observation #109180,https://biolit.fr/observations/observation-109180/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2476-1-scaled.jpg,,FALSE, +N1,109179,Sortie #109179,https://biolit.fr/sorties/sortie-109179/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2476-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2478-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2481-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2482-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2484-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2489-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2490-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2495-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2500-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2502-1-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32385,0.36218,,Langrune,109182,Observation #109182,https://biolit.fr/observations/observation-109182/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2481-1-scaled.jpg,,TRUE,Identifiable +N1,109179,Sortie #109179,https://biolit.fr/sorties/sortie-109179/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2476-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2478-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2481-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2482-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2484-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2489-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2490-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2495-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2500-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2502-1-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32385,0.36218,,Langrune,109184,Observation #109184,https://biolit.fr/observations/observation-109184/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2478-1-scaled.jpg,,TRUE,non-identifiable +N1,109179,Sortie #109179,https://biolit.fr/sorties/sortie-109179/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2476-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2478-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2481-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2482-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2484-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2489-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2490-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2495-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2500-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2502-1-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32385,0.36218,,Langrune,109186,Observation #109186,https://biolit.fr/observations/observation-109186/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2482-1-scaled.jpg,,FALSE,Ne sais pas +N1,109179,Sortie #109179,https://biolit.fr/sorties/sortie-109179/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2476-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2478-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2481-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2482-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2484-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2489-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2490-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2495-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2500-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2502-1-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32385,0.36218,,Langrune,109188,Observation #109188,https://biolit.fr/observations/observation-109188/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2484-1-scaled.jpg,,TRUE,Ne sais pas +N1,109179,Sortie #109179,https://biolit.fr/sorties/sortie-109179/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2476-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2478-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2481-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2482-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2484-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2489-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2490-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2495-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2500-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2502-1-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32385,0.36218,,Langrune,109190,Observation #109190,https://biolit.fr/observations/observation-109190/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2489-1-scaled.jpg,,FALSE,Ne sais pas +N1,109179,Sortie #109179,https://biolit.fr/sorties/sortie-109179/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2476-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2478-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2481-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2482-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2484-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2489-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2490-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2495-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2500-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2502-1-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32385,0.36218,,Langrune,109192,Observation #109192,https://biolit.fr/observations/observation-109192/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2495-1-scaled.jpg,,FALSE,Ne sais pas +N1,109179,Sortie #109179,https://biolit.fr/sorties/sortie-109179/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2476-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2478-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2481-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2482-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2484-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2489-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2490-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2495-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2500-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2502-1-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32385,0.36218,,Langrune,109727,Observation #109727,https://biolit.fr/observations/observation-109727/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2502-1-scaled.jpg,,FALSE,Ne sais pas +N1,109179,Sortie #109179,https://biolit.fr/sorties/sortie-109179/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2476-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2478-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2481-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2482-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2484-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2489-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2490-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2495-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2500-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2502-1-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32385,0.36218,,Langrune,109729,Observation #109729,https://biolit.fr/observations/observation-109729/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2500-1-scaled.jpg,,TRUE,Ne sais pas +N1,109179,Sortie #109179,https://biolit.fr/sorties/sortie-109179/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2476-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2478-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2481-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2482-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2484-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2489-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2490-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2495-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2500-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2502-1-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32385,0.36218,,Langrune,109731,Observation #109731,https://biolit.fr/observations/observation-109731/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2490-1-scaled.jpg,,TRUE,Ne sais pas +N1,109197,Sortie #109197,https://biolit.fr/sorties/sortie-109197/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2507-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2514-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2516-1-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32193,0.35568,,Luc sur mer,109198,Observation #109198,https://biolit.fr/observations/observation-109198/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2507-1-scaled.jpg,,TRUE,Ne sais pas +N1,109197,Sortie #109197,https://biolit.fr/sorties/sortie-109197/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2507-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2514-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2516-1-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32193,0.35568,,Luc sur mer,109200,Observation #109200,https://biolit.fr/observations/observation-109200/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2514-1-scaled.jpg,,FALSE,Ne sais pas +N1,109197,Sortie #109197,https://biolit.fr/sorties/sortie-109197/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2507-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2514-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2516-1-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32193,0.35568,,Luc sur mer,109202,Observation #109202,https://biolit.fr/?post_type=observations&p=109202,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2514-1-scaled.jpg,,, +N1,109197,Sortie #109197,https://biolit.fr/sorties/sortie-109197/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2507-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2514-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2516-1-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32193,0.35568,,Luc sur mer,109204,Observation #109204,https://biolit.fr/observations/observation-109204/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2516-1-scaled.jpg,,FALSE,Ne sais pas +N1,109206,Sortie #109206,https://biolit.fr/sorties/sortie-109206/,Myriam GOURMAND-ARNAUD,,11/09/2025,14.0000000,17.0000000,49.32193,0.35568,,Luc sur mer,,,,,,,,,, +N1,109210,Sortie #109210,https://biolit.fr/sorties/sortie-109210/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2507-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2514-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2516-2-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32193,0.35568,,Luc sur mer,109211,Observation #109211,https://biolit.fr/?post_type=observations&p=109211,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2507-2-scaled.jpg,,,Ne sais pas +N1,109210,Sortie #109210,https://biolit.fr/sorties/sortie-109210/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2507-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2514-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2516-2-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32193,0.35568,,Luc sur mer,109213,Observation #109213,https://biolit.fr/?post_type=observations&p=109213,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2514-2-scaled.jpg,,,Ne sais pas +N1,109210,Sortie #109210,https://biolit.fr/sorties/sortie-109210/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2507-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2514-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2516-2-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32193,0.35568,,Luc sur mer,109215,Observation #109215,https://biolit.fr/?post_type=observations&p=109215,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2516-2-scaled.jpg,,,Ne sais pas +N1,109223,Sortie #109223,https://biolit.fr/sorties/sortie-109223/,Dominique ROUSSEAU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f7e5c8afb376e528e9a29d4ad7143963/2025/11/IMG_20251110_173135-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f7e5c8afb376e528e9a29d4ad7143963/2025/11/IMG_20251110_173105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f7e5c8afb376e528e9a29d4ad7143963/2025/11/IMG_20251110_173043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f7e5c8afb376e528e9a29d4ad7143963/2025/11/IMG_20251110_173021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f7e5c8afb376e528e9a29d4ad7143963/2025/11/IMG_20251110_172958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f7e5c8afb376e528e9a29d4ad7143963/2025/11/IMG_20251110_172916-scaled.jpg,11/10/2025,5.0:24,5.0:35,47.7849710000000,-3.69306700000000,,Moelan sur mer Kerliguet,109224,Observation #109224,https://biolit.fr/observations/observation-109224/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f7e5c8afb376e528e9a29d4ad7143963/2025/11/IMG_20251110_173135-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f7e5c8afb376e528e9a29d4ad7143963/2025/11/IMG_20251110_173043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f7e5c8afb376e528e9a29d4ad7143963/2025/11/IMG_20251110_173021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f7e5c8afb376e528e9a29d4ad7143963/2025/11/IMG_20251110_172958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f7e5c8afb376e528e9a29d4ad7143963/2025/11/IMG_20251110_172916-scaled.jpg,,TRUE,Identifiable +N1,109229,Sortie #109229,https://biolit.fr/sorties/sortie-109229/,Caroline Le Grand,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e2d3bc0d96dbc3444e21e9754e7cbd58/2025/11/8ba73a15-906e-4964-ab3b-01450beef092.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e2d3bc0d96dbc3444e21e9754e7cbd58/2025/11/ff011ab9-a451-47bc-9e68-95ddd44546ff.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e2d3bc0d96dbc3444e21e9754e7cbd58/2025/11/bd38d6d2-201f-4c0d-b18c-73bc2259769e.jpeg,11/10/2025,9.0000000,22.0000000,47.796006000000,-3.81938000000000,,Kersidan,109230,Observation #109230,https://biolit.fr/observations/observation-109230/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e2d3bc0d96dbc3444e21e9754e7cbd58/2025/11/8ba73a15-906e-4964-ab3b-01450beef092.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e2d3bc0d96dbc3444e21e9754e7cbd58/2025/11/ff011ab9-a451-47bc-9e68-95ddd44546ff.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e2d3bc0d96dbc3444e21e9754e7cbd58/2025/11/bd38d6d2-201f-4c0d-b18c-73bc2259769e.jpeg,,TRUE,Identifiable +N1,109233,Sortie #109233,https://biolit.fr/sorties/sortie-109233/,Maëlle Lepetit,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a24e928c5a31e48eb7f294dac0823458/2025/11/3F217D08-B045-462D-BCBA-EB8F3191CEB8-scaled.jpeg,11/10/2025,15.0000000,15.0000000,47.8986510000000,-3.94872700000000,,Anse Saint Jean Concarneau,109234,Observation #109234,https://biolit.fr/observations/observation-109234/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a24e928c5a31e48eb7f294dac0823458/2025/11/3F217D08-B045-462D-BCBA-EB8F3191CEB8-scaled.jpeg,,TRUE,Identifiable +N1,109236,Sortie #109236,https://biolit.fr/sorties/sortie-109236/,Gwenaël PHILIPPE,,11/10/2025,16.0000000,16.0:45,47.788933,-3.671697,,plage Poulguen - Moelan-sur-Mer,,,,,,,,,, +N1,109238,Sortie #109238,https://biolit.fr/sorties/sortie-109238/,Gwenaël PHILIPPE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/2ffd001518bf57e1a8d35e3267decdad/2025/11/velelle.jpg,11/10/2025,16.0000000,16.0:45,47.788933,-3.671697,,plage Poulguen à Moelan-sur-Mer,,,,,,,,,, +N1,109239,Sortie #109239,https://biolit.fr/sorties/sortie-109239/,Laurent THIBAUDEAU,,11/10/2025,13.0000000,16.0000000,46.8744450000000,-2.15543500000000,,Plage de la grande côte,,,,,,,,,, +N1,109242,Sortie #109242,https://biolit.fr/sorties/sortie-109242/,Laure Mo,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4f9c71a137daef3ca4ecf73520ba097c/2025/11/IMG_3266-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4f9c71a137daef3ca4ecf73520ba097c/2025/11/IMG_3265-scaled.jpeg,11/10/2025,12.000005,12.000005,46.1964330000000,-1.44549500000000,,Plage de la couarde à l île de ré,109243,Observation #109243,https://biolit.fr/observations/observation-109243/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4f9c71a137daef3ca4ecf73520ba097c/2025/11/IMG_3266-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4f9c71a137daef3ca4ecf73520ba097c/2025/11/IMG_3265-scaled.jpeg,,TRUE,Identifiable +N1,109247,Sortie #109247,https://biolit.fr/sorties/sortie-109247/,Nelly Mansart,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/503c13d4f9cefe24df830e2cb5f4df66/2025/11/IMG_6077-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/503c13d4f9cefe24df830e2cb5f4df66/2025/11/IMG_6076-scaled.jpeg,11/11/2025,11.0000000,15.000007,47.5148960000000,-2.55226100000000,,Damgan,109248,Observation #109248,https://biolit.fr/observations/observation-109248/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/503c13d4f9cefe24df830e2cb5f4df66/2025/11/IMG_6077-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/503c13d4f9cefe24df830e2cb5f4df66/2025/11/IMG_6076-scaled.jpeg,,TRUE,Identifiable +N1,109251,Sortie #109251,https://biolit.fr/sorties/sortie-109251/,Olivier Dugast,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/19da0bdccd1bff93df7cf161f15efa8e/2025/11/IMG_0757-scaled.jpeg,11/11/2025,10.0:48,11.0:48,47.2633010000000,-2.4498440000000,CPIE Loire Oceane Environnement,Baie du Scall Le Pouliguen,109252,Observation #109252,https://biolit.fr/observations/observation-109252/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/19da0bdccd1bff93df7cf161f15efa8e/2025/11/IMG_0757-scaled.jpeg,,TRUE,Identifiable +N1,109254,Sortie #109254,https://biolit.fr/sorties/sortie-109254/,nicolas le coroller,,11/11/2025,10.0000000,12.0:15,47.6903740000000,-3.35186000000000,,Presqu'ile de Gavres,,,,,,,,,, +N1,109259,Sortie #109259,https://biolit.fr/sorties/sortie-109259/,Marie Claude GOUIN,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e98b497a9c25303f40702ab429f57337/2025/11/IMG_0331-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e98b497a9c25303f40702ab429f57337/2025/11/IMG_0329-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e98b497a9c25303f40702ab429f57337/2025/11/IMG_0334-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e98b497a9c25303f40702ab429f57337/2025/11/IMG_0335-scaled.jpeg,11/11/2025,10.0:34,16.0000000,47.8185580000000,-4.16519200000000,,LOCTUDY,,,,,,,,,, +N1,109262,Sortie #109262,https://biolit.fr/sorties/sortie-109262/,Christophe Duval,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/98d4eae984d5bbae591466419f162c5b/2025/11/IMG_8539-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/98d4eae984d5bbae591466419f162c5b/2025/11/IMG_8538-scaled.jpeg,11/12/2025,10.0000000,11.0000000,48.3460390000000,-4.71288300000000,,Plougonvelin,109263,Observation #109263,https://biolit.fr/observations/observation-109263/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/98d4eae984d5bbae591466419f162c5b/2025/11/IMG_8539-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/98d4eae984d5bbae591466419f162c5b/2025/11/IMG_8538-scaled.jpeg,,TRUE,Identifiable +N1,109293,Sortie #109293,https://biolit.fr/sorties/sortie-109293/,CHEVALIER MARIE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/15-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/14-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/13-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/12-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/11-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/10-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/9-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/8-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/7-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/5-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/4-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/3-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/1-1.jpg,10/30/2025 0:00,11.0000000,11.0000000,4757340,303255,,Men Du Carnac,109294,Observation #109294,https://biolit.fr/observations/observation-109294/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/15-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/14-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/13-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/12-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/11-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/10-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/9-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/3-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/4-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/5-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/7-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/8-1.jpg,,,Ne sais pas +N1,109299,Sortie #109299,https://biolit.fr/sorties/sortie-109299/,Emmanuelle POUPON,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/95650c903a1c0386c833e231130edc35/2025/11/velelles.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/95650c903a1c0386c833e231130edc35/2025/11/physalis.jpeg,11/11/2025,11.0000000,12.0:15,48.3065820000000,-4.39819300000000,,Plage de Kerhornou,109300,Observation #109300,https://biolit.fr/?post_type=observations&p=109300,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/95650c903a1c0386c833e231130edc35/2025/11/velelles.jpeg,,,Identifiable +N1,109299,Sortie #109299,https://biolit.fr/sorties/sortie-109299/,Emmanuelle POUPON,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/95650c903a1c0386c833e231130edc35/2025/11/velelles.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/95650c903a1c0386c833e231130edc35/2025/11/physalis.jpeg,11/11/2025,11.0000000,12.0:15,48.3065820000000,-4.39819300000000,,Plage de Kerhornou,109302,Observation #109302,https://biolit.fr/?post_type=observations&p=109302,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/95650c903a1c0386c833e231130edc35/2025/11/physalis.jpeg,,,Identifiable +N1,109306,Sortie #109306,https://biolit.fr/sorties/sortie-109306/,Emmanuelle POUPON,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/95650c903a1c0386c833e231130edc35/2025/11/physalis-scaled.jpg,11/11/2025,11.0000000,12.0:15,48.4060930000000,-4.77447500000000,,Plage de Kerhornou,109307,Observation #109307,https://biolit.fr/observations/observation-109307/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/95650c903a1c0386c833e231130edc35/2025/11/physalis-scaled.jpg,,TRUE,Identifiable +N1,109310,Sortie #109310,https://biolit.fr/sorties/sortie-109310/,Emmanuelle POUPON,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/95650c903a1c0386c833e231130edc35/2025/11/velelles-1-scaled.jpg,11/11/2025,11.0000000,12.0:15,48.4065120000000,-4.77547300000000,,Plage de Kerhornou,109311,Observation #109311,https://biolit.fr/observations/observation-109311/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/95650c903a1c0386c833e231130edc35/2025/11/velelles-1-scaled.jpg,,TRUE,Identifiable +N1,109357,Sortie #109357,https://biolit.fr/sorties/sortie-109357/,Julia Stanilovskaya,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_2003-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_2033-3-scaled.jpeg,7/25/2025 0:00,8.0:37,9.0:37,41.5245320000000,9.2724070000000,,Plage Santa Giulia,109358,Observation #109358,https://biolit.fr/observations/observation-109358/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_2003-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_2033-3-scaled.jpeg,,,Identifiable +N1,109361,Sortie #109361,https://biolit.fr/sorties/sortie-109361/,marie begkoyian,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/54116e944cfc73b0a9d83819d0b52a4a/2025/11/1000013104-scaled.jpg,11/12/2025,13.0:15,13.0000000,47.67625800000,-3.10932700000000,,Locmariaquer,109362,Observation #109362,https://biolit.fr/observations/observation-109362/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/54116e944cfc73b0a9d83819d0b52a4a/2025/11/1000013104-scaled.jpg,,TRUE,Identifiable +N1,109366,Sortie #109366,https://biolit.fr/sorties/sortie-109366/,Sabine Loeillot,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ca04ce3acaafb4287c982ae045ab9a0a/2025/11/IMG_7424-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ca04ce3acaafb4287c982ae045ab9a0a/2025/11/IMG_7423-scaled.jpeg,11/12/2025,12.000001,12.0:14,47.7997880000000,-4.30389400000000,,Penmarc’h,109367,Observation #109367,https://biolit.fr/observations/observation-109367/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ca04ce3acaafb4287c982ae045ab9a0a/2025/11/IMG_7424-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ca04ce3acaafb4287c982ae045ab9a0a/2025/11/IMG_7423-scaled.jpeg,,TRUE,Identifiable +N1,109371,Sortie #109371,https://biolit.fr/sorties/sortie-109371/,Lucie Vaillant,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d7bac26598f318af357cab63dfc89373/2025/11/IMG_0500-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d7bac26598f318af357cab63dfc89373/2025/11/IMG_0499-scaled.jpeg,11/10/2025,12.0000000,14.0000000,47.3878600000000,-3.25093100000000,,Phare des poulains Belle-Ile,109372,Observation #109372,https://biolit.fr/observations/observation-109372/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d7bac26598f318af357cab63dfc89373/2025/11/IMG_0500-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d7bac26598f318af357cab63dfc89373/2025/11/IMG_0499-scaled.jpeg,,TRUE,Identifiable +N1,109380,Sortie #109380,https://biolit.fr/sorties/sortie-109380/,Loumeaud Margot,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.49_a74d7a21.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.58_3c9b5f7a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.49_c4462d8a-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.58_a8f033df.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.39.05_da14dd79.jpg,10/22/2025 0:00,13.0000000,15.0000000,43.3362000000000,5.41714300000000,,Butte écologique St-Jérome,109381,Observation #109381,https://biolit.fr/observations/observation-109381/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.49_c4462d8a-1.jpg,,,Identifiable +N1,109380,Sortie #109380,https://biolit.fr/sorties/sortie-109380/,Loumeaud Margot,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.49_a74d7a21.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.58_3c9b5f7a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.49_c4462d8a-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.58_a8f033df.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.39.05_da14dd79.jpg,10/22/2025 0:00,13.0000000,15.0000000,43.3362000000000,5.41714300000000,,Butte écologique St-Jérome,109383,Observation #109383,https://biolit.fr/observations/observation-109383/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.49_a74d7a21.jpg,,,Identifiable +N1,109380,Sortie #109380,https://biolit.fr/sorties/sortie-109380/,Loumeaud Margot,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.49_a74d7a21.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.58_3c9b5f7a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.49_c4462d8a-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.58_a8f033df.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.39.05_da14dd79.jpg,10/22/2025 0:00,13.0000000,15.0000000,43.3362000000000,5.41714300000000,,Butte écologique St-Jérome,109385,Observation #109385,https://biolit.fr/observations/observation-109385/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.58_3c9b5f7a.jpg,,,Identifiable +N1,109380,Sortie #109380,https://biolit.fr/sorties/sortie-109380/,Loumeaud Margot,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.49_a74d7a21.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.58_3c9b5f7a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.49_c4462d8a-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.58_a8f033df.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.39.05_da14dd79.jpg,10/22/2025 0:00,13.0000000,15.0000000,43.3362000000000,5.41714300000000,,Butte écologique St-Jérome,109387,Observation #109387,https://biolit.fr/observations/observation-109387/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.39.05_da14dd79.jpg,,,Identifiable +N1,109380,Sortie #109380,https://biolit.fr/sorties/sortie-109380/,Loumeaud Margot,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.49_a74d7a21.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.58_3c9b5f7a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.49_c4462d8a-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.58_a8f033df.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.39.05_da14dd79.jpg,10/22/2025 0:00,13.0000000,15.0000000,43.3362000000000,5.41714300000000,,Butte écologique St-Jérome,109389,Observation #109389,https://biolit.fr/observations/observation-109389/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.58_a8f033df.jpg,,,Identifiable +N1,109396,Sortie #109396,https://biolit.fr/sorties/sortie-109396/,Loumeaud Margot,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-10.22.41_73bae43d.jpg,9/20/2025 0:00,9.0000000,12.0000000,43.2843420000000,5.31617400000000,Planète Mer,ile du Frioul,109397,Observation #109397,https://biolit.fr/observations/observation-109397/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F.jpg,,,Identifiable +N1,109396,Sortie #109396,https://biolit.fr/sorties/sortie-109396/,Loumeaud Margot,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-10.22.41_73bae43d.jpg,9/20/2025 0:00,9.0000000,12.0000000,43.2843420000000,5.31617400000000,Planète Mer,ile du Frioul,109399,Observation #109399,https://biolit.fr/observations/observation-109399/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F3.jpg,,,Identifiable +N1,109396,Sortie #109396,https://biolit.fr/sorties/sortie-109396/,Loumeaud Margot,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-10.22.41_73bae43d.jpg,9/20/2025 0:00,9.0000000,12.0000000,43.2843420000000,5.31617400000000,Planète Mer,ile du Frioul,109401,Observation #109401,https://biolit.fr/observations/observation-109401/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F2.jpg,,,Identifiable +N1,109396,Sortie #109396,https://biolit.fr/sorties/sortie-109396/,Loumeaud Margot,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-10.22.41_73bae43d.jpg,9/20/2025 0:00,9.0000000,12.0000000,43.2843420000000,5.31617400000000,Planète Mer,ile du Frioul,109403,Observation #109403,https://biolit.fr/observations/observation-109403/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-10.22.41_73bae43d.jpg,,,Identifiable +N1,109396,Sortie #109396,https://biolit.fr/sorties/sortie-109396/,Loumeaud Margot,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-10.22.41_73bae43d.jpg,9/20/2025 0:00,9.0000000,12.0000000,43.2843420000000,5.31617400000000,Planète Mer,ile du Frioul,109405,Observation #109405,https://biolit.fr/observations/observation-109405/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F4.jpg,,,Identifiable +N1,109545,Sortie #109545,https://biolit.fr/sorties/sortie-109545/,Julia Stanilovskaya,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_2076-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_2078-scaled.jpeg,7/23/2025 0:00,15.0000000,15.0000000,41.387532000000,9.14942300000000,,"‎⁨Corsica⁩, ⁨Bonifacio⁩",109546,Observation #109546,https://biolit.fr/observations/observation-109546/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_2076-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_2078-scaled.jpeg,,,Ne sais pas +N1,109551,Sortie #109551,https://biolit.fr/sorties/sortie-109551/,Julia Stanilovskaya,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_1922-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_1931-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_1930-scaled.jpeg,7/20/2025 0:00,16.0000000,17.0000000,42.1897080000000,8.57980700000000,,"‎⁨Porto Scandola Revellata Calvi Calanches de Piana Zone Terrestre et Marine⁩, ⁨Piana⁩, ⁨Port de Ficajola⁩",109552,Observation #109552,https://biolit.fr/observations/observation-109552/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_1922-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_1931-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_1930-scaled.jpeg,,,Identifiable +N1,109557,Sortie #109557,https://biolit.fr/sorties/sortie-109557/,Julia Stanilovskaya,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_1915-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_1914-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_1917-scaled.jpeg,7/20/2025 0:00,14.0000000,15.0000000,42.1485630000000,8.59060000000000,,"Cargèse⁩, ⁨‎⁨Corsica⁩,",109558,Observation #109558,https://biolit.fr/observations/observation-109558/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_1915-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_1914-scaled.jpeg,,,Identifiable +N1,109563,Sortie #109563,https://biolit.fr/sorties/sortie-109563/,Elodie Philiponet,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/decf28256c4d8eb44e1db7ce47887e64/2025/11/IMG_5188-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/decf28256c4d8eb44e1db7ce47887e64/2025/11/IMG_5190-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/decf28256c4d8eb44e1db7ce47887e64/2025/11/099772D3-2502-4D3C-AAB0-5B38856CBE47-scaled.jpeg,11/13/2025 0:00,9.0000000,9.0000000,47.7046470000000,-3.42747700000000,,Anse du stole à ploemeur 56,109564,Observation #109564,https://biolit.fr/observations/observation-109564/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/decf28256c4d8eb44e1db7ce47887e64/2025/11/099772D3-2502-4D3C-AAB0-5B38856CBE47-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/decf28256c4d8eb44e1db7ce47887e64/2025/11/IMG_5188-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/decf28256c4d8eb44e1db7ce47887e64/2025/11/IMG_5190-scaled.jpeg,,TRUE,Identifiable +N1,109604,Sortie #109604,https://biolit.fr/sorties/sortie-109604/,Hélène Barbier,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/68fdea3d30a7c345fc3de3ef9aa09663/2025/11/1000012134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/68fdea3d30a7c345fc3de3ef9aa09663/2025/11/1000012157-1-scaled.jpg,11/14/2025 0:00,15.0000000,16.0:47,46.7245790,-2.3483660,,Plage notre dame de monts,109605,Observation #109605,https://biolit.fr/observations/observation-109605/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/68fdea3d30a7c345fc3de3ef9aa09663/2025/11/1000012134-scaled.jpg,,TRUE,Identifiable +N1,109604,Sortie #109604,https://biolit.fr/sorties/sortie-109604/,Hélène Barbier,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/68fdea3d30a7c345fc3de3ef9aa09663/2025/11/1000012134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/68fdea3d30a7c345fc3de3ef9aa09663/2025/11/1000012157-1-scaled.jpg,11/14/2025 0:00,15.0000000,16.0:47,46.7245790,-2.3483660,,Plage notre dame de monts,109607,Observation #109607,https://biolit.fr/observations/observation-109607/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/68fdea3d30a7c345fc3de3ef9aa09663/2025/11/1000012157-1-scaled.jpg,,TRUE,Identifiable +N1,109611,Sortie #109611,https://biolit.fr/sorties/sortie-109611/,Hélène Barbier,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/68fdea3d30a7c345fc3de3ef9aa09663/2025/11/1000012057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/68fdea3d30a7c345fc3de3ef9aa09663/2025/11/1000012058-scaled.jpg,11/09/2025,9.0000000,10.0000000,46.7245790,-2.3483660,,Plage notre dame de monts,109612,Observation #109612,https://biolit.fr/observations/observation-109612/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/68fdea3d30a7c345fc3de3ef9aa09663/2025/11/1000012057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/68fdea3d30a7c345fc3de3ef9aa09663/2025/11/1000012058-scaled.jpg,,TRUE,Identifiable +N1,109615,Sortie #109615,https://biolit.fr/sorties/sortie-109615/,Leroux Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/11/1000026924-scaled.jpg,11/09/2025,11.0:33,12.0:33,50.8038860,1.619823,,Audresselles,,,,,,,,,, +N1,109617,Sortie #109617,https://biolit.fr/sorties/sortie-109617/,Leroux Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/11/1000026924-1-scaled.jpg,11/09/2025,11.0:35,12.0:36,50.803413,1.6169140,,Audresselles,109618,Observation #109618,https://biolit.fr/observations/observation-109618/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/11/1000026924-1-scaled.jpg,,TRUE,non-identifiable +N1,109634,Sortie #109634,https://biolit.fr/sorties/sortie-109634/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8029-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8032-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8021-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8024-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8025-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8028-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8027-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8026-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8031-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8022-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8023-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8019-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8016-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8030-scaled.jpeg,11/14/2025 0:00,14.0000000,16.0000000,43.2380570000000,5.36163100000000,Planète Mer,Plage de l’abris côtier,109635,Observation #109635,https://biolit.fr/observations/observation-109635/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8029-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8032-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8024-scaled.jpeg,,, +N1,109634,Sortie #109634,https://biolit.fr/sorties/sortie-109634/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8029-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8032-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8021-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8024-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8025-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8028-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8027-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8026-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8031-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8022-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8023-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8019-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8016-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8030-scaled.jpeg,11/14/2025 0:00,14.0000000,16.0000000,43.2380570000000,5.36163100000000,Planète Mer,Plage de l’abris côtier,109637,Observation #109637,https://biolit.fr/observations/observation-109637/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8028-scaled.jpeg,,, +N1,109634,Sortie #109634,https://biolit.fr/sorties/sortie-109634/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8029-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8032-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8021-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8024-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8025-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8028-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8027-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8026-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8031-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8022-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8023-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8019-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8016-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8030-scaled.jpeg,11/14/2025 0:00,14.0000000,16.0000000,43.2380570000000,5.36163100000000,Planète Mer,Plage de l’abris côtier,109639,Observation #109639,https://biolit.fr/observations/observation-109639/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8023-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8022-scaled.jpeg,,TRUE, +N1,109634,Sortie #109634,https://biolit.fr/sorties/sortie-109634/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8029-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8032-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8021-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8024-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8025-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8028-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8027-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8026-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8031-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8022-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8023-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8019-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8016-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8030-scaled.jpeg,11/14/2025 0:00,14.0000000,16.0000000,43.2380570000000,5.36163100000000,Planète Mer,Plage de l’abris côtier,109641,Observation #109641,https://biolit.fr/observations/observation-109641/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8019-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8016-scaled.jpeg,,TRUE, +N1,109634,Sortie #109634,https://biolit.fr/sorties/sortie-109634/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8029-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8032-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8021-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8024-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8025-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8028-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8027-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8026-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8031-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8022-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8023-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8019-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8016-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8030-scaled.jpeg,11/14/2025 0:00,14.0000000,16.0000000,43.2380570000000,5.36163100000000,Planète Mer,Plage de l’abris côtier,109643,Observation #109643,https://biolit.fr/observations/observation-109643/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8027-scaled.jpeg,,, +N1,109634,Sortie #109634,https://biolit.fr/sorties/sortie-109634/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8029-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8032-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8021-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8024-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8025-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8028-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8027-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8026-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8031-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8022-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8023-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8019-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8016-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8030-scaled.jpeg,11/14/2025 0:00,14.0000000,16.0000000,43.2380570000000,5.36163100000000,Planète Mer,Plage de l’abris côtier,109645,Observation #109645,https://biolit.fr/observations/observation-109645/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8021-scaled.jpeg,,, +N1,109634,Sortie #109634,https://biolit.fr/sorties/sortie-109634/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8029-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8032-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8021-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8024-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8025-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8028-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8027-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8026-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8031-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8022-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8023-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8019-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8016-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8030-scaled.jpeg,11/14/2025 0:00,14.0000000,16.0000000,43.2380570000000,5.36163100000000,Planète Mer,Plage de l’abris côtier,109647,Observation #109647,https://biolit.fr/observations/observation-109647/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8030-scaled.jpeg,,, +N1,109634,Sortie #109634,https://biolit.fr/sorties/sortie-109634/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8029-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8032-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8021-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8024-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8025-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8028-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8027-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8026-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8031-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8022-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8023-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8019-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8016-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8030-scaled.jpeg,11/14/2025 0:00,14.0000000,16.0000000,43.2380570000000,5.36163100000000,Planète Mer,Plage de l’abris côtier,109649,Observation #109649,https://biolit.fr/observations/observation-109649/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8026-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8031-scaled.jpeg,,, +N1,109634,Sortie #109634,https://biolit.fr/sorties/sortie-109634/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8029-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8032-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8021-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8024-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8025-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8028-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8027-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8026-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8031-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8022-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8023-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8019-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8016-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8030-scaled.jpeg,11/14/2025 0:00,14.0000000,16.0000000,43.2380570000000,5.36163100000000,Planète Mer,Plage de l’abris côtier,109651,Observation #109651,https://biolit.fr/observations/observation-109651/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8025-scaled.jpeg,,, +N1,109634,Sortie #109634,https://biolit.fr/sorties/sortie-109634/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8029-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8032-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8021-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8024-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8025-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8028-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8027-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8026-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8031-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8022-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8023-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8019-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8016-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8030-scaled.jpeg,11/14/2025 0:00,14.0000000,16.0000000,43.2380570000000,5.36163100000000,Planète Mer,Plage de l’abris côtier,109653,Observation #109653,https://biolit.fr/observations/observation-109653/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8021-scaled.jpeg,,, +N1,109658,Sortie #109658,https://biolit.fr/sorties/sortie-109658/,David guilleron,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a53fcea6b467eed2d14696c3fe2709e2/2025/11/1000012923-scaled.jpg,11/15/2025 0:00,12.000004,14.000005,47.5544510000000,-3.13673100000000,Escale Bretagne,Penthievre,109659,Observation #109659,https://biolit.fr/observations/observation-109659/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a53fcea6b467eed2d14696c3fe2709e2/2025/11/1000012923-scaled.jpg,,TRUE,Identifiable +N1,109662,Sortie #109662,https://biolit.fr/sorties/sortie-109662/,Cossard Manon,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0bc7b51b097e224e7ec95fda3bbfbc7e/2025/11/IMG-20251115-WA0018.jpg,11/15/2025 0:00,13.0:15,15.0:45,42.5906400000000,9.50883900000000,La Girelle,La marane,,,,,,,,,, +N1,109667,Sortie #109667,https://biolit.fr/sorties/sortie-109667/,Karine Drean,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7bea4f7ba24f1b26bb94d92462e7869d/2025/11/IMG_9046-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7bea4f7ba24f1b26bb94d92462e7869d/2025/11/IMG_9047-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7bea4f7ba24f1b26bb94d92462e7869d/2025/11/IMG_9038-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7bea4f7ba24f1b26bb94d92462e7869d/2025/11/IMG_9037-scaled.jpeg,11/16/2025 0:00,15.000001,23.0:32,47.7063580000000,-3.00766300000000,,Plage de saint colomban,109668,Observation #109668,https://biolit.fr/observations/observation-109668/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7bea4f7ba24f1b26bb94d92462e7869d/2025/11/IMG_9046-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7bea4f7ba24f1b26bb94d92462e7869d/2025/11/IMG_9047-scaled.jpeg,,TRUE,Identifiable +N1,109711,Sortie #109711,https://biolit.fr/sorties/sortie-109711/,BENEDICK JEROME,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo011-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/photo001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo016-scaled.jpg,11/10/2025,10.0000000,11.0:45,43.078,5.929,,Saint Mandrier sur MEr,109712,Observation #109712,https://biolit.fr/observations/observation-109712/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo013-scaled.jpg,,TRUE,Ne sais pas +N1,109711,Sortie #109711,https://biolit.fr/sorties/sortie-109711/,BENEDICK JEROME,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo011-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/photo001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo016-scaled.jpg,11/10/2025,10.0000000,11.0:45,43.078,5.929,,Saint Mandrier sur MEr,109714,Observation #109714,https://biolit.fr/observations/observation-109714/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo011-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo026-scaled.jpg,,,Ne sais pas +N1,109711,Sortie #109711,https://biolit.fr/sorties/sortie-109711/,BENEDICK JEROME,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo011-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/photo001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo016-scaled.jpg,11/10/2025,10.0000000,11.0:45,43.078,5.929,,Saint Mandrier sur MEr,109716,Observation #109716,https://biolit.fr/observations/observation-109716/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo013-scaled.jpg,,TRUE,Identifiable +N1,109711,Sortie #109711,https://biolit.fr/sorties/sortie-109711/,BENEDICK JEROME,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo011-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/photo001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo016-scaled.jpg,11/10/2025,10.0000000,11.0:45,43.078,5.929,,Saint Mandrier sur MEr,109718,Observation #109718,https://biolit.fr/observations/observation-109718/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/photo001-scaled.jpg,,,Ne sais pas +N1,109711,Sortie #109711,https://biolit.fr/sorties/sortie-109711/,BENEDICK JEROME,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo011-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/photo001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo016-scaled.jpg,11/10/2025,10.0000000,11.0:45,43.078,5.929,,Saint Mandrier sur MEr,109720,Observation #109720,https://biolit.fr/observations/observation-109720/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo009-scaled.jpg,,TRUE, +N1,109711,Sortie #109711,https://biolit.fr/sorties/sortie-109711/,BENEDICK JEROME,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo011-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/photo001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo016-scaled.jpg,11/10/2025,10.0000000,11.0:45,43.078,5.929,,Saint Mandrier sur MEr,109722,Observation #109722,https://biolit.fr/observations/observation-109722/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo007-scaled.jpg,,TRUE,Identifiable +N1,109711,Sortie #109711,https://biolit.fr/sorties/sortie-109711/,BENEDICK JEROME,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo011-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/photo001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo016-scaled.jpg,11/10/2025,10.0000000,11.0:45,43.078,5.929,,Saint Mandrier sur MEr,109724,Observation #109724,https://biolit.fr/observations/observation-109724/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo025-scaled.jpg,,,Ne sais pas +N1,109740,Sortie #109740,https://biolit.fr/sorties/sortie-109740/,Ali AHMIM,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a8a5063534f39687ac80c37fe2194580/2025/11/1109079331175614345.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a8a5063534f39687ac80c37fe2194580/2025/11/4695669677308848676.jpg,11/11/2025,11.0000000,15.0000000,43.4822620000000,5.18567600000000,,Berre l'Etang,109741,Observation #109741,https://biolit.fr/observations/observation-109741/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a8a5063534f39687ac80c37fe2194580/2025/11/1109079331175614345.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a8a5063534f39687ac80c37fe2194580/2025/11/4695669677308848676.jpg,,TRUE,non-identifiable +N1,109828,Sortie #109828,https://biolit.fr/sorties/sortie-109828/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.54_0c1e23bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.54_852db14c.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.53_674cf67a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.53_34b525fa.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.51_02debce6.jpg,10/18/2025 0:00,10.0000000,12.0000000,42.7673280000000,3.03824800000000,LABELBLEU,Plage de Torreilles,,,,,,,,,, +N1,109832,Sortie #109832,https://biolit.fr/sorties/sortie-109832/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.54_852db14c-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.54_d0137413.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.54_0c1e23bb-1.jpg,10/18/2025 0:00,10.0000000,12.0000000,42.7673280000000,3.03824800000000,LABELBLEU,Plage de Torreilles,109833,Observation #109833,https://biolit.fr/observations/observation-109833/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.54_852db14c-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.54_d0137413.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.54_0c1e23bb-1.jpg,,,Ne sais pas +N1,109832,Sortie #109832,https://biolit.fr/sorties/sortie-109832/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.54_852db14c-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.54_d0137413.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.54_0c1e23bb-1.jpg,10/18/2025 0:00,10.0000000,12.0000000,42.7673280000000,3.03824800000000,LABELBLEU,Plage de Torreilles,109836,Observation #109836,https://biolit.fr/observations/observation-109836/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.54_d0137413.jpg,,,Ne sais pas +N1,109832,Sortie #109832,https://biolit.fr/sorties/sortie-109832/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.54_852db14c-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.54_d0137413.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.54_0c1e23bb-1.jpg,10/18/2025 0:00,10.0000000,12.0000000,42.7673280000000,3.03824800000000,LABELBLEU,Plage de Torreilles,109838,Observation #109838,https://biolit.fr/observations/observation-109838/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.54_0c1e23bb-1.jpg,,,Ne sais pas +N1,109835,Sortie #109835,https://biolit.fr/sorties/sortie-109835/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/gibule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Patelle-scaled.jpg,11/18/2025 0:00,10.0000000,11.0000000,48.7024220000000,-1.84675900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109840,Observation #109840,https://biolit.fr/observations/observation-109840/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-2-1-scaled.jpg,,TRUE,Identifiable +N1,109835,Sortie #109835,https://biolit.fr/sorties/sortie-109835/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/gibule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Patelle-scaled.jpg,11/18/2025 0:00,10.0000000,11.0000000,48.7024220000000,-1.84675900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109842,Observation #109842,https://biolit.fr/observations/observation-109842/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-2-scaled.jpg,,TRUE,Identifiable +N1,109835,Sortie #109835,https://biolit.fr/sorties/sortie-109835/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/gibule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Patelle-scaled.jpg,11/18/2025 0:00,10.0000000,11.0000000,48.7024220000000,-1.84675900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109844,Observation #109844,https://biolit.fr/observations/observation-109844/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-3-scaled.jpg,,TRUE,Identifiable +N1,109835,Sortie #109835,https://biolit.fr/sorties/sortie-109835/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/gibule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Patelle-scaled.jpg,11/18/2025 0:00,10.0000000,11.0000000,48.7024220000000,-1.84675900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109846,Observation #109846,https://biolit.fr/observations/observation-109846/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-2-1-scaled.jpg,,TRUE,Identifiable +N1,109835,Sortie #109835,https://biolit.fr/sorties/sortie-109835/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/gibule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Patelle-scaled.jpg,11/18/2025 0:00,10.0000000,11.0000000,48.7024220000000,-1.84675900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109848,Observation #109848,https://biolit.fr/observations/observation-109848/,Crangon crangon,Crevette grise européenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-1-scaled.jpg,,,Identifiable +N1,109835,Sortie #109835,https://biolit.fr/sorties/sortie-109835/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/gibule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Patelle-scaled.jpg,11/18/2025 0:00,10.0000000,11.0000000,48.7024220000000,-1.84675900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109850,Observation #109850,https://biolit.fr/observations/observation-109850/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/gibule-2-scaled.jpg,,TRUE,Identifiable +N1,109835,Sortie #109835,https://biolit.fr/sorties/sortie-109835/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/gibule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Patelle-scaled.jpg,11/18/2025 0:00,10.0000000,11.0000000,48.7024220000000,-1.84675900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109852,Observation #109852,https://biolit.fr/observations/observation-109852/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-1-scaled.jpg,,TRUE,Identifiable +N1,109835,Sortie #109835,https://biolit.fr/sorties/sortie-109835/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/gibule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Patelle-scaled.jpg,11/18/2025 0:00,10.0000000,11.0000000,48.7024220000000,-1.84675900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109854,Observation #109854,https://biolit.fr/observations/observation-109854/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-1-scaled.jpg,,TRUE,Identifiable +N1,109835,Sortie #109835,https://biolit.fr/sorties/sortie-109835/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/gibule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Patelle-scaled.jpg,11/18/2025 0:00,10.0000000,11.0000000,48.7024220000000,-1.84675900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109856,Observation #109856,https://biolit.fr/observations/observation-109856/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-1-scaled.jpg,,TRUE,Identifiable +N1,109835,Sortie #109835,https://biolit.fr/sorties/sortie-109835/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/gibule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Patelle-scaled.jpg,11/18/2025 0:00,10.0000000,11.0000000,48.7024220000000,-1.84675900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109858,Observation #109858,https://biolit.fr/observations/observation-109858/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Patelle-scaled.jpg,,TRUE,Identifiable +N1,109876,Sortie #109876,https://biolit.fr/sorties/sortie-109876/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/11/Acanthocardia-tuberculata-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/11/Acanthocardia-tuberculata2-scaled.jpg,10/25/2025 0:00,16.0:54,17.000001,43.0654760000000,6.12957000000000,,Plage de l'Almanarre,109877,Observation #109877,https://biolit.fr/observations/observation-109877/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/11/Acanthocardia-tuberculata-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/11/Acanthocardia-tuberculata2-scaled.jpg,,,Identifiable +N1,109876,Sortie #109876,https://biolit.fr/sorties/sortie-109876/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/11/Acanthocardia-tuberculata-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/11/Acanthocardia-tuberculata2-scaled.jpg,10/25/2025 0:00,16.0:54,17.000001,43.0654760000000,6.12957000000000,,Plage de l'Almanarre,109879,Observation #109879,https://biolit.fr/observations/observation-109879/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/11/Acanthocardia-tuberculata2-scaled.jpg,,,Identifiable +N1,109904,Sortie #109904,https://biolit.fr/sorties/sortie-109904/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/11/IMG_8798-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/11/IMG_8788-scaled.jpg,11/07/2025,10.0000000,12.0000000,43.7757960000000,-1.41816300000000,Centre de la mer,soustons plage,109906,Observation #109906,https://biolit.fr/observations/observation-109906/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/11/IMG_8798-scaled.jpg,,,Identifiable +N1,109904,Sortie #109904,https://biolit.fr/sorties/sortie-109904/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/11/IMG_8798-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/11/IMG_8788-scaled.jpg,11/07/2025,10.0000000,12.0000000,43.7757960000000,-1.41816300000000,Centre de la mer,soustons plage,109908,Observation #109908,https://biolit.fr/observations/observation-109908/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/11/IMG_8788-scaled.jpg,,,Identifiable +N1,109929,Sortie #109929,https://biolit.fr/sorties/sortie-109929/,Katy Cornevin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020160-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020164-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020165-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020166-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020167-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020169-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020170-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020171-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020168-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020172-scaled.jpg,11/19/2025 0:00,9.0:15,11.0000000,43.4828890,3.6718000,LPO Occitanie (Dt Hérault),Frontignan,,,,,,,,,, +N1,109950,Sortie #109950,https://biolit.fr/sorties/sortie-109950/,Katy Cornevin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020159-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020160-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020161-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020162-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020164-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020165-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020166-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020171-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020172-1-scaled.jpg,11/19/2025 0:00,9.0:15,11.0000000,43.4828890,3.6718000,LPO Occitanie (Dt Hérault),Frontignan plage,109952,Observation #109952,https://biolit.fr/observations/observation-109952/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020159-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020160-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020161-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020162-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020164-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020166-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020165-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020171-1-scaled.jpg,,,Ne sais pas +N1,109950,Sortie #109950,https://biolit.fr/sorties/sortie-109950/,Katy Cornevin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020159-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020160-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020161-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020162-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020164-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020165-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020166-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020171-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020172-1-scaled.jpg,11/19/2025 0:00,9.0:15,11.0000000,43.4828890,3.6718000,LPO Occitanie (Dt Hérault),Frontignan plage,109954,Observation #109954,https://biolit.fr/observations/observation-109954/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020164-1-scaled.jpg,,,Identifiable +N1,109950,Sortie #109950,https://biolit.fr/sorties/sortie-109950/,Katy Cornevin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020159-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020160-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020161-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020162-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020164-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020165-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020166-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020171-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020172-1-scaled.jpg,11/19/2025 0:00,9.0:15,11.0000000,43.4828890,3.6718000,LPO Occitanie (Dt Hérault),Frontignan plage,109956,Observation #109956,https://biolit.fr/observations/observation-109956/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020170-1-scaled.jpg,,,Identifiable +N1,109950,Sortie #109950,https://biolit.fr/sorties/sortie-109950/,Katy Cornevin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020159-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020160-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020161-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020162-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020164-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020165-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020166-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020171-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020172-1-scaled.jpg,11/19/2025 0:00,9.0:15,11.0000000,43.4828890,3.6718000,LPO Occitanie (Dt Hérault),Frontignan plage,109958,Observation #109958,https://biolit.fr/observations/observation-109958/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020170-1-scaled.jpg,,,Identifiable +N1,109950,Sortie #109950,https://biolit.fr/sorties/sortie-109950/,Katy Cornevin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020159-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020160-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020161-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020162-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020164-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020165-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020166-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020171-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020172-1-scaled.jpg,11/19/2025 0:00,9.0:15,11.0000000,43.4828890,3.6718000,LPO Occitanie (Dt Hérault),Frontignan plage,109960,Observation #109960,https://biolit.fr/observations/observation-109960/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020160-1-scaled.jpg,,, +N1,109971,Sortie #109971,https://biolit.fr/sorties/sortie-109971/,Katy Cornevin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020172-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020171-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020168-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020165-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020163-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020161-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020160-2-scaled.jpg,11/19/2025 0:00,9.0:15,11.0000000,43.4828890,3.6718000,LPO Occitanie (Dt Hérault),Frontignan plage,109972,Observation #109972,https://biolit.fr/observations/observation-109972/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020172-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020171-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020168-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020165-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020163-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020161-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020160-2-scaled.jpg,,, +N1,109971,Sortie #109971,https://biolit.fr/sorties/sortie-109971/,Katy Cornevin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020172-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020171-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020168-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020165-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020163-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020161-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020160-2-scaled.jpg,11/19/2025 0:00,9.0:15,11.0000000,43.4828890,3.6718000,LPO Occitanie (Dt Hérault),Frontignan plage,109974,Observation #109974,https://biolit.fr/observations/observation-109974/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020172-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020171-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020168-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020165-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020161-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020163-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020160-2-scaled.jpg,,,Ne sais pas +N1,109971,Sortie #109971,https://biolit.fr/sorties/sortie-109971/,Katy Cornevin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020172-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020171-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020168-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020165-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020163-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020161-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020160-2-scaled.jpg,11/19/2025 0:00,9.0:15,11.0000000,43.4828890,3.6718000,LPO Occitanie (Dt Hérault),Frontignan plage,109976,Observation #109976,https://biolit.fr/observations/observation-109976/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020172-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020171-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020168-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020165-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020161-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020163-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020160-2-scaled.jpg,,,Ne sais pas +N1,109980,Sortie #109980,https://biolit.fr/sorties/sortie-109980/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3e0815970b4b9a2f53f21a809ea519d0/2025/11/IMG_20251031_120208_085-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3e0815970b4b9a2f53f21a809ea519d0/2025/11/IMG_20251031_100026_071-scaled.jpg,10/31/2025 0:00,9.0000000,10.0000000,43.4747580000000,3.83525800000000,LPO Occitanie (Dt Hérault),Plage des aresquiers,109981,Observation #109981,https://biolit.fr/observations/observation-109981/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3e0815970b4b9a2f53f21a809ea519d0/2025/11/IMG_20251031_120208_085-scaled.jpg,,,Identifiable +N1,109980,Sortie #109980,https://biolit.fr/sorties/sortie-109980/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3e0815970b4b9a2f53f21a809ea519d0/2025/11/IMG_20251031_120208_085-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3e0815970b4b9a2f53f21a809ea519d0/2025/11/IMG_20251031_100026_071-scaled.jpg,10/31/2025 0:00,9.0000000,10.0000000,43.4747580000000,3.83525800000000,LPO Occitanie (Dt Hérault),Plage des aresquiers,109983,Observation #109983,https://biolit.fr/observations/observation-109983/,Callinectes sapidus,Crabe bleu américain,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3e0815970b4b9a2f53f21a809ea519d0/2025/11/IMG_20251031_100026_071-scaled.jpg,,,Identifiable +N1,109990,Sortie #109990,https://biolit.fr/sorties/sortie-109990/,BENRAMDANE RACHIDA,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7643-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7642-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7640-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7639-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7638-scaled.jpeg,11/19/2025 0:00,9.0000000,11.0000000,43.420930000000,3.73930000000000,LPO Occitanie (Dt Hérault),Frontignan plage,109991,Observation #109991,https://biolit.fr/observations/observation-109991/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7638-scaled.jpeg,,,non-identifiable +N1,109990,Sortie #109990,https://biolit.fr/sorties/sortie-109990/,BENRAMDANE RACHIDA,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7643-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7642-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7640-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7639-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7638-scaled.jpeg,11/19/2025 0:00,9.0000000,11.0000000,43.420930000000,3.73930000000000,LPO Occitanie (Dt Hérault),Frontignan plage,109993,Observation #109993,https://biolit.fr/observations/observation-109993/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7643-scaled.jpeg,,,Identifiable +N1,109990,Sortie #109990,https://biolit.fr/sorties/sortie-109990/,BENRAMDANE RACHIDA,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7643-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7642-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7640-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7639-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7638-scaled.jpeg,11/19/2025 0:00,9.0000000,11.0000000,43.420930000000,3.73930000000000,LPO Occitanie (Dt Hérault),Frontignan plage,109995,Observation #109995,https://biolit.fr/observations/observation-109995/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7639-scaled.jpeg,,,Identifiable +N1,109990,Sortie #109990,https://biolit.fr/sorties/sortie-109990/,BENRAMDANE RACHIDA,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7643-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7642-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7640-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7639-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7638-scaled.jpeg,11/19/2025 0:00,9.0000000,11.0000000,43.420930000000,3.73930000000000,LPO Occitanie (Dt Hérault),Frontignan plage,109997,Observation #109997,https://biolit.fr/observations/observation-109997/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7642-scaled.jpeg,,TRUE,Identifiable +N1,109990,Sortie #109990,https://biolit.fr/sorties/sortie-109990/,BENRAMDANE RACHIDA,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7643-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7642-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7640-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7639-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7638-scaled.jpeg,11/19/2025 0:00,9.0000000,11.0000000,43.420930000000,3.73930000000000,LPO Occitanie (Dt Hérault),Frontignan plage,109999,Observation #109999,https://biolit.fr/observations/observation-109999/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7640-scaled.jpeg,,,Ne sais pas +N1,110017,Sortie #110017,https://biolit.fr/sorties/sortie-110017/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8090-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8091-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8092-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8093-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8094-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8096-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8097-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8102-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8101-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8095-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8100-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8099-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8098-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8103-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8104-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8105-scaled.jpeg,11/16/2025 0:00,9.0000000,10.0000000,43.2147650000000,5.34293800000000,Planète Mer,La baie des singes,110082,Observation #110082,https://biolit.fr/observations/observation-110082/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8094-scaled.jpeg,,,Identifiable +N1,110017,Sortie #110017,https://biolit.fr/sorties/sortie-110017/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8090-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8091-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8092-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8093-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8094-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8096-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8097-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8102-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8101-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8095-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8100-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8099-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8098-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8103-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8104-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8105-scaled.jpeg,11/16/2025 0:00,9.0000000,10.0000000,43.2147650000000,5.34293800000000,Planète Mer,La baie des singes,110084,Observation #110084,https://biolit.fr/observations/observation-110084/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8096-scaled.jpeg,,TRUE,Identifiable +N1,110017,Sortie #110017,https://biolit.fr/sorties/sortie-110017/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8090-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8091-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8092-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8093-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8094-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8096-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8097-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8102-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8101-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8095-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8100-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8099-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8098-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8103-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8104-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8105-scaled.jpeg,11/16/2025 0:00,9.0000000,10.0000000,43.2147650000000,5.34293800000000,Planète Mer,La baie des singes,110086,Observation #110086,https://biolit.fr/observations/observation-110086/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8090-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8091-scaled.jpeg,,, +N1,110020,Sortie #110020,https://biolit.fr/sorties/sortie-110020/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8139-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8134-scaled.jpeg,11/18/2025 0:00,11.0000000,12.0000000,43.2451180000000,5.36805100000000,Planète Mer,Plage de la pointe rouge,110080,Observation #110080,https://biolit.fr/observations/observation-110080/,Aurelia aurita,Aurélie,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8139-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8134-scaled.jpeg,,,Identifiable +N1,110038,Sortie #110038,https://biolit.fr/sorties/sortie-110038/,FRANCOIS MIGNE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/anatifes-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/velelle-rotated.jpg,11/07/2025,11.0000000,12.0000000,46.4887610000000,-1.79942500000000,,LES SABLES D'OLONNE - bassin Dombret,110039,Observation #110039,https://biolit.fr/observations/observation-110039/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/anatifes-1-scaled.jpg,,TRUE,Identifiable +N1,110038,Sortie #110038,https://biolit.fr/sorties/sortie-110038/,FRANCOIS MIGNE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/anatifes-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/velelle-rotated.jpg,11/07/2025,11.0000000,12.0000000,46.4887610000000,-1.79942500000000,,LES SABLES D'OLONNE - bassin Dombret,110041,Observation #110041,https://biolit.fr/observations/observation-110041/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/velelle-rotated.jpg,,TRUE,Identifiable +N1,110059,Sortie #110059,https://biolit.fr/sorties/sortie-110059/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-solaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-paon-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/coque-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-2-1-scaled.jpg,11/20/2025 0:00,10.0000000,11.0000000,48.7024620000000,-1.84644300000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110060,Observation #110060,https://biolit.fr/observations/observation-110060/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-solaire-3-scaled.jpg,,,Identifiable +N1,110059,Sortie #110059,https://biolit.fr/sorties/sortie-110059/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-solaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-paon-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/coque-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-2-1-scaled.jpg,11/20/2025 0:00,10.0000000,11.0000000,48.7024620000000,-1.84644300000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110062,Observation #110062,https://biolit.fr/observations/observation-110062/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-paon-scaled.jpg,,,Ne sais pas +N1,110059,Sortie #110059,https://biolit.fr/sorties/sortie-110059/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-solaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-paon-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/coque-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-2-1-scaled.jpg,11/20/2025 0:00,10.0000000,11.0000000,48.7024620000000,-1.84644300000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110064,Observation #110064,https://biolit.fr/observations/observation-110064/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/coque-scaled.jpg,,,Identifiable +N1,110059,Sortie #110059,https://biolit.fr/sorties/sortie-110059/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-solaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-paon-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/coque-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-2-1-scaled.jpg,11/20/2025 0:00,10.0000000,11.0000000,48.7024620000000,-1.84644300000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110066,Observation #110066,https://biolit.fr/observations/observation-110066/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-1-scaled.jpg,,,Identifiable +N1,110059,Sortie #110059,https://biolit.fr/sorties/sortie-110059/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-solaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-paon-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/coque-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-2-1-scaled.jpg,11/20/2025 0:00,10.0000000,11.0000000,48.7024620000000,-1.84644300000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110068,Observation #110068,https://biolit.fr/observations/observation-110068/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eponge-scaled.jpg,,,Ne sais pas +N1,110059,Sortie #110059,https://biolit.fr/sorties/sortie-110059/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-solaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-paon-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/coque-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-2-1-scaled.jpg,11/20/2025 0:00,10.0000000,11.0000000,48.7024620000000,-1.84644300000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110070,Observation #110070,https://biolit.fr/observations/observation-110070/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gobie-scaled.jpg,,,Ne sais pas +N1,110059,Sortie #110059,https://biolit.fr/sorties/sortie-110059/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-solaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-paon-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/coque-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-2-1-scaled.jpg,11/20/2025 0:00,10.0000000,11.0000000,48.7024620000000,-1.84644300000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110072,Observation #110072,https://biolit.fr/observations/observation-110072/,Gaidropsarus vulgaris,Motelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-2-scaled.jpg,,,Identifiable +N1,110059,Sortie #110059,https://biolit.fr/sorties/sortie-110059/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-solaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-paon-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/coque-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-2-1-scaled.jpg,11/20/2025 0:00,10.0000000,11.0000000,48.7024620000000,-1.84644300000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110074,Observation #110074,https://biolit.fr/observations/observation-110074/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-scaled.jpg,,TRUE,Identifiable +N1,110059,Sortie #110059,https://biolit.fr/sorties/sortie-110059/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-solaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-paon-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/coque-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-2-1-scaled.jpg,11/20/2025 0:00,10.0000000,11.0000000,48.7024620000000,-1.84644300000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110076,Observation #110076,https://biolit.fr/observations/observation-110076/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ponte-de-pourpre-1-scaled.jpg,,,Identifiable +N1,110059,Sortie #110059,https://biolit.fr/sorties/sortie-110059/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-solaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-paon-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/coque-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-2-1-scaled.jpg,11/20/2025 0:00,10.0000000,11.0000000,48.7024620000000,-1.84644300000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110078,Observation #110078,https://biolit.fr/observations/observation-110078/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-2-1-scaled.jpg,,TRUE,Identifiable +N1,110092,Sortie #110092,https://biolit.fr/sorties/sortie-110092/,Julie Vasseur,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d1427f8a85000dbc27c8f96ed90b0919/2025/11/IMG_0796-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d1427f8a85000dbc27c8f96ed90b0919/2025/11/IMG_0797-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d1427f8a85000dbc27c8f96ed90b0919/2025/11/IMG_0798-scaled.jpeg,11/23/2025 0:00,15.0000000,15.0000000,48.3666010000000,-4.76707900000000,,Les blancs sablons - le conquet,110093,Observation #110093,https://biolit.fr/observations/observation-110093/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d1427f8a85000dbc27c8f96ed90b0919/2025/11/IMG_0798-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d1427f8a85000dbc27c8f96ed90b0919/2025/11/IMG_0796-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d1427f8a85000dbc27c8f96ed90b0919/2025/11/IMG_0797-scaled.jpeg,",""true""",Identifiable, +N1,110097,Sortie #110097,https://biolit.fr/sorties/sortie-110097/,cigale33,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/86e13a5ef4a0614488dcaaddd746f397/2025/11/20251111_161636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/86e13a5ef4a0614488dcaaddd746f397/2025/11/20251111_161501.jpg,11/11/2025,15.0000000,17.0000000,43.3786800000000,-1.75707600000000,CPIE Littoral Basque - Euskal Itsasbazterra,plage des deux Jumeaux - Hendaye,110098,Observation #110098,https://biolit.fr/observations/observation-110098/,Symsagittifera roscoffensis,Ver plat de Roscoff,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/86e13a5ef4a0614488dcaaddd746f397/2025/11/20251111_161501.jpg,,TRUE,Identifiable +N1,110102,Sortie #110102,https://biolit.fr/sorties/sortie-110102/,LABE EMILIE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4b4794fa34d29d1a607fa9a3cfa0e0bb/2025/11/20251124_092129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4b4794fa34d29d1a607fa9a3cfa0e0bb/2025/11/20251124_091810-scaled.jpg,11/24/2025 0:00,9.0:15,9.0:25,46.8396880000000,-2.1458100000000,Association Hirondelle,Plage de la braie,110103,Observation #110103,https://biolit.fr/observations/observation-110103/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4b4794fa34d29d1a607fa9a3cfa0e0bb/2025/11/20251124_092129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4b4794fa34d29d1a607fa9a3cfa0e0bb/2025/11/20251124_091810-scaled.jpg,,TRUE,Identifiable +N1,110102,Sortie #110102,https://biolit.fr/sorties/sortie-110102/,LABE EMILIE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4b4794fa34d29d1a607fa9a3cfa0e0bb/2025/11/20251124_092129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4b4794fa34d29d1a607fa9a3cfa0e0bb/2025/11/20251124_091810-scaled.jpg,11/24/2025 0:00,9.0:15,9.0:25,46.8396880000000,-2.1458100000000,Association Hirondelle,Plage de la braie,110105,Observation #110105,https://biolit.fr/observations/observation-110105/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4b4794fa34d29d1a607fa9a3cfa0e0bb/2025/11/20251124_091810-scaled.jpg,,TRUE,Identifiable +N1,110108,Sortie #110108,https://biolit.fr/sorties/sortie-110108/,LABE EMILIE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4b4794fa34d29d1a607fa9a3cfa0e0bb/2025/11/20251107_093600-scaled.jpg,11/07/2025,9.0:59,10.0000000,46.8534350000000,-2.14583600000000,,Plage parée grollier,110109,Observation #110109,https://biolit.fr/observations/observation-110109/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4b4794fa34d29d1a607fa9a3cfa0e0bb/2025/11/20251107_093600-scaled.jpg,,TRUE,Identifiable +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110144,Observation #110144,https://biolit.fr/observations/observation-110144/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110146,Observation #110146,https://biolit.fr/observations/observation-110146/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110148,Observation #110148,https://biolit.fr/observations/observation-110148/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110150,Observation #110150,https://biolit.fr/observations/observation-110150/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg,,, +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110152,Observation #110152,https://biolit.fr/observations/observation-110152/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110154,Observation #110154,https://biolit.fr/observations/observation-110154/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110156,Observation #110156,https://biolit.fr/observations/observation-110156/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110158,Observation #110158,https://biolit.fr/observations/observation-110158/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110160,Observation #110160,https://biolit.fr/observations/observation-110160/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110162,Observation #110162,https://biolit.fr/observations/observation-110162/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110164,Observation #110164,https://biolit.fr/observations/observation-110164/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110166,Observation #110166,https://biolit.fr/observations/observation-110166/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110168,Observation #110168,https://biolit.fr/observations/observation-110168/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110170,Observation #110170,https://biolit.fr/observations/observation-110170/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110172,Observation #110172,https://biolit.fr/observations/observation-110172/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110174,Observation #110174,https://biolit.fr/observations/observation-110174/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110176,Observation #110176,https://biolit.fr/observations/observation-110176/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110178,Observation #110178,https://biolit.fr/observations/observation-110178/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110180,Observation #110180,https://biolit.fr/observations/observation-110180/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110182,Observation #110182,https://biolit.fr/observations/observation-110182/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg,,TRUE,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110184,Observation #110184,https://biolit.fr/observations/observation-110184/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110186,Observation #110186,https://biolit.fr/observations/observation-110186/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110188,Observation #110188,https://biolit.fr/observations/observation-110188/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg,,TRUE,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110190,Observation #110190,https://biolit.fr/observations/observation-110190/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110192,Observation #110192,https://biolit.fr/observations/observation-110192/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110194,Observation #110194,https://biolit.fr/observations/observation-110194/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,,,Ne sais pas +N1,110201,Sortie #110201,https://biolit.fr/sorties/sortie-110201/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/11/20250612_114337-scaled.jpg,11/24/2025 0:00,15.0000000,15.0000000,43.2449570000000,5.37208600000000,,Plage de la Pointe Rouge,,,,,,,,,, +N1,110205,Sortie #110205,https://biolit.fr/sorties/sortie-110205/,Grégoire LECLERC,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/acdda1ad1c78c274b647efb6736beb80/2025/11/IMGP1620r.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/acdda1ad1c78c274b647efb6736beb80/2025/11/IMGP1639r.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/acdda1ad1c78c274b647efb6736beb80/2025/11/IMGP1640r.jpg,2/22/2024 0:00,15.0000000,15.0000000,43.0373860000000,6.06761200000000,,Fourmigues - Giens,110206,Observation #110206,https://biolit.fr/observations/observation-110206/,Puffinus yelkouan,Puffin de Yelkouan,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/acdda1ad1c78c274b647efb6736beb80/2025/11/IMGP1620r.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/acdda1ad1c78c274b647efb6736beb80/2025/11/IMGP1639r.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/acdda1ad1c78c274b647efb6736beb80/2025/11/IMGP1640r.jpg,,,Identifiable +N1,110205,Sortie #110205,https://biolit.fr/sorties/sortie-110205/,Grégoire LECLERC,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/acdda1ad1c78c274b647efb6736beb80/2025/11/IMGP1620r.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/acdda1ad1c78c274b647efb6736beb80/2025/11/IMGP1639r.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/acdda1ad1c78c274b647efb6736beb80/2025/11/IMGP1640r.jpg,2/22/2024 0:00,15.0000000,15.0000000,43.0373860000000,6.06761200000000,,Fourmigues - Giens,110208,Observation #110208,https://biolit.fr/observations/observation-110208/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/acdda1ad1c78c274b647efb6736beb80/2025/11/IMGP1620r.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/acdda1ad1c78c274b647efb6736beb80/2025/11/IMGP1639r.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/acdda1ad1c78c274b647efb6736beb80/2025/11/IMGP1640r.jpg,,,Ne sais pas +N1,110297,Sortie #110297,https://biolit.fr/sorties/sortie-110297/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pontre-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Tomate-de-mer-2-scaled.jpg,11/24/2025 0:00,15.0000000,16.0000000,48.7024290000000,-1.846784000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110299,Observation #110299,https://biolit.fr/observations/observation-110299/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-3-scaled.jpg,,,Identifiable +N1,110297,Sortie #110297,https://biolit.fr/sorties/sortie-110297/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pontre-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Tomate-de-mer-2-scaled.jpg,11/24/2025 0:00,15.0000000,16.0000000,48.7024290000000,-1.846784000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110317,Observation #110317,https://biolit.fr/observations/observation-110317/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-scaled.jpg,,,Ne sais pas +N1,110297,Sortie #110297,https://biolit.fr/sorties/sortie-110297/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pontre-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Tomate-de-mer-2-scaled.jpg,11/24/2025 0:00,15.0000000,16.0000000,48.7024290000000,-1.846784000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110321,Observation #110321,https://biolit.fr/observations/observation-110321/,Ciona intestinalis,Cione intestinale,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-1-scaled.jpg,,,Identifiable +N1,110297,Sortie #110297,https://biolit.fr/sorties/sortie-110297/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pontre-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Tomate-de-mer-2-scaled.jpg,11/24/2025 0:00,15.0000000,16.0000000,48.7024290000000,-1.846784000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110323,Observation #110323,https://biolit.fr/observations/observation-110323/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-4-scaled.jpg,,TRUE,Identifiable +N1,110297,Sortie #110297,https://biolit.fr/sorties/sortie-110297/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pontre-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Tomate-de-mer-2-scaled.jpg,11/24/2025 0:00,15.0000000,16.0000000,48.7024290000000,-1.846784000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110325,Observation #110325,https://biolit.fr/observations/observation-110325/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-ponte-scaled.jpg,,TRUE,Identifiable +N1,110297,Sortie #110297,https://biolit.fr/sorties/sortie-110297/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pontre-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Tomate-de-mer-2-scaled.jpg,11/24/2025 0:00,15.0000000,16.0000000,48.7024290000000,-1.846784000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110327,Observation #110327,https://biolit.fr/observations/observation-110327/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-2-scaled.jpg,,,Identifiable +N1,110297,Sortie #110297,https://biolit.fr/sorties/sortie-110297/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pontre-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Tomate-de-mer-2-scaled.jpg,11/24/2025 0:00,15.0000000,16.0000000,48.7024290000000,-1.846784000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110329,Observation #110329,https://biolit.fr/observations/observation-110329/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-2-scaled.jpg,,,Identifiable +N1,110297,Sortie #110297,https://biolit.fr/sorties/sortie-110297/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pontre-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Tomate-de-mer-2-scaled.jpg,11/24/2025 0:00,15.0000000,16.0000000,48.7024290000000,-1.846784000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110331,Observation #110331,https://biolit.fr/observations/observation-110331/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Palourde-1-scaled.jpg,,,Identifiable +N1,110297,Sortie #110297,https://biolit.fr/sorties/sortie-110297/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pontre-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Tomate-de-mer-2-scaled.jpg,11/24/2025 0:00,15.0000000,16.0000000,48.7024290000000,-1.846784000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110333,Observation #110333,https://biolit.fr/observations/observation-110333/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pontre-pourpre-scaled.jpg,,,Identifiable +N1,110297,Sortie #110297,https://biolit.fr/sorties/sortie-110297/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pontre-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Tomate-de-mer-2-scaled.jpg,11/24/2025 0:00,15.0000000,16.0000000,48.7024290000000,-1.846784000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110335,Observation #110335,https://biolit.fr/observations/observation-110335/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-2-scaled.jpg,,TRUE,Identifiable +N1,110297,Sortie #110297,https://biolit.fr/sorties/sortie-110297/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pontre-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Tomate-de-mer-2-scaled.jpg,11/24/2025 0:00,15.0000000,16.0000000,48.7024290000000,-1.846784000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110337,Observation #110337,https://biolit.fr/observations/observation-110337/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-2-2-scaled.jpg,,TRUE,Identifiable +N1,110297,Sortie #110297,https://biolit.fr/sorties/sortie-110297/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pontre-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Tomate-de-mer-2-scaled.jpg,11/24/2025 0:00,15.0000000,16.0000000,48.7024290000000,-1.846784000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110339,Observation #110339,https://biolit.fr/observations/observation-110339/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Tomate-de-mer-2-scaled.jpg,,TRUE,Identifiable +N1,110392,Sortie #110392,https://biolit.fr/sorties/sortie-110392/,Vivu Mare,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/2060eee4d37f94c58f1a7b0a6fb5d9c4/2025/11/IMG_9577-scaled.jpg,11/13/2025 0:00,9.0:15,10.0:15,42.7407710000,9.46136400000000,Mare Vivu,Plage de Miomu,110393,Observation #110393,https://biolit.fr/observations/observation-110393/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/2060eee4d37f94c58f1a7b0a6fb5d9c4/2025/11/IMG_9577-scaled.jpg,,,non-identifiable +N1,110410,Sortie #110410,https://biolit.fr/sorties/sortie-110410/,Hippolyte RIQUET,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5a0653137bb49c4c6a63b0a715ef4a5d/2025/11/1000003497-scaled.jpg,11/25/2025 0:00,9.0000000,10.0000000,48.6544290000000,-4.40230600000000,,Guisseny - Boutrrouille,110411,Observation #110411,https://biolit.fr/observations/observation-110411/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5a0653137bb49c4c6a63b0a715ef4a5d/2025/11/1000003497-scaled.jpg,,TRUE,Identifiable +N1,110422,Sortie #110422,https://biolit.fr/sorties/sortie-110422/,Géraldine Béranger,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/428e475be22aa21b975e672a0e9ad2b9/2025/11/IMG_8515-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/428e475be22aa21b975e672a0e9ad2b9/2025/11/IMG_8512-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/428e475be22aa21b975e672a0e9ad2b9/2025/11/IMG_8513-scaled.jpeg,11/25/2025 0:00,16.0000000,16.0000000,48.0992670000000,-4.45770300000000,,Pors Peron Finistère,110423,Observation #110423,https://biolit.fr/observations/observation-110423/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/428e475be22aa21b975e672a0e9ad2b9/2025/11/IMG_8515-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/428e475be22aa21b975e672a0e9ad2b9/2025/11/IMG_8512-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/428e475be22aa21b975e672a0e9ad2b9/2025/11/IMG_8513-scaled.jpeg,,TRUE,Identifiable +N1,110439,Sortie #110439,https://biolit.fr/sorties/sortie-110439/,Solene Goulaouic,,11/04/2025,11.0000000,12.0000000,48.647768,-2.002871,Planète Mer (antenne Dinard),Fort national,,,,,,,,,, +N1,110441,Sortie #110441,https://biolit.fr/sorties/sortie-110441/,Solene Goulaouic,,11/04/2025,11.0000000,12.0000000,48.647748,-2.002853,Planète Mer (antenne Dinard),Fort national,,,,,,,,,, +N1,110443,Sortie #110443,https://biolit.fr/sorties/sortie-110443/,Solene Goulaouic,,11/04/2025,11.0000000,12.0000000,48.647748,-2.002853,Planète Mer (antenne Dinard),Fort national,,,,,,,,,, +N1,110454,Sortie #110454,https://biolit.fr/sorties/sortie-110454/,Solene Goulaouic,,11/04/2025,11.0000000,12.0000000,48.654460000000,-2.02383400000000,Planète Mer (antenne Dinard),Fort national,,,,,,,,,, +N1,110637,Sortie #110637,https://biolit.fr/sorties/sortie-110637/,FRANCOIS MIGNE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_122620059.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_125719766_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_133513911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_125649643_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_131530130_HDR-scaled.jpg,9/25/2025 0:00,11.0000000,13.0000000,46.5101890000000,-1.81913700000000,,Les Sables d'Olonne - anse chaillot,110638,Observation #110638,https://biolit.fr/observations/observation-110638/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_125719766_HDR.jpg,,,Identifiable +N1,110637,Sortie #110637,https://biolit.fr/sorties/sortie-110637/,FRANCOIS MIGNE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_122620059.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_125719766_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_133513911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_125649643_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_131530130_HDR-scaled.jpg,9/25/2025 0:00,11.0000000,13.0000000,46.5101890000000,-1.81913700000000,,Les Sables d'Olonne - anse chaillot,110640,Observation #110640,https://biolit.fr/observations/observation-110640/,Patella pellucida,Helcion,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_133513911-scaled.jpg,,,Identifiable +N1,110637,Sortie #110637,https://biolit.fr/sorties/sortie-110637/,FRANCOIS MIGNE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_122620059.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_125719766_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_133513911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_125649643_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_131530130_HDR-scaled.jpg,9/25/2025 0:00,11.0000000,13.0000000,46.5101890000000,-1.81913700000000,,Les Sables d'Olonne - anse chaillot,110642,Observation #110642,https://biolit.fr/observations/observation-110642/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_125649643_HDR-rotated.jpg,,,Identifiable +N1,110637,Sortie #110637,https://biolit.fr/sorties/sortie-110637/,FRANCOIS MIGNE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_122620059.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_125719766_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_133513911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_125649643_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_131530130_HDR-scaled.jpg,9/25/2025 0:00,11.0000000,13.0000000,46.5101890000000,-1.81913700000000,,Les Sables d'Olonne - anse chaillot,110644,Observation #110644,https://biolit.fr/observations/observation-110644/,Corynactis viridis,Anémone-bijou,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_122620059.jpg,,,Identifiable +N1,110637,Sortie #110637,https://biolit.fr/sorties/sortie-110637/,FRANCOIS MIGNE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_122620059.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_125719766_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_133513911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_125649643_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_131530130_HDR-scaled.jpg,9/25/2025 0:00,11.0000000,13.0000000,46.5101890000000,-1.81913700000000,,Les Sables d'Olonne - anse chaillot,110646,Observation #110646,https://biolit.fr/observations/observation-110646/,Chondria coerulescens,Chondria bleue,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_131530130_HDR-scaled.jpg,,,Identifiable +N1,110706,Sortie #110706,https://biolit.fr/sorties/sortie-110706/,CPIE Marennes-Oléron,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8bd08fa0eaf02755d3132ee7a7ba4988/2025/11/IMG_6970-rotated.jpg,11/02/2025,14.0000000,14.0:35,45.9279020000000,-1.35473500000000,Association IODDE - CPIE Marennes-Oléron,Passe des Bicles,110707,Observation #110707,https://biolit.fr/observations/observation-110707/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8bd08fa0eaf02755d3132ee7a7ba4988/2025/11/IMG_6970-rotated.jpg,,,Identifiable +N1,110709,Sortie #110709,https://biolit.fr/sorties/sortie-110709/,Nostra Mar,,11/14/2025 0:00,10.0000000,12.0000000,42.5235190000000,3.09905400000000,,Plage de l'Oli,,,,,,,,,, +N1,110715,Sortie #110715,https://biolit.fr/sorties/sortie-110715/,Nataliia Rozmet,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f24877fc4a2715c20a7845ae488f0c03/2025/11/IMG_6976-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f24877fc4a2715c20a7845ae488f0c03/2025/11/IMG_6532-scaled.jpeg,11/28/2025 0:00,17.000009,18.0:15,48.3693660000000,-4.76356000000000,,"Plage de Blancs Sablons, Le Conquet",,,,,,,,,, +N1,110719,Sortie #110719,https://biolit.fr/sorties/sortie-110719/,Nataliia Rozmet,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f24877fc4a2715c20a7845ae488f0c03/2025/11/IMG_7007.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f24877fc4a2715c20a7845ae488f0c03/2025/11/IMG_6976-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f24877fc4a2715c20a7845ae488f0c03/2025/11/IMG_6533-scaled.jpeg,11/28/2025 0:00,17.000009,18.0:15,48.368931000000,-4.76406500000000,,"Plage de Blancs Sablons, Le Conquet",110720,Observation #110720,https://biolit.fr/observations/observation-110720/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f24877fc4a2715c20a7845ae488f0c03/2025/11/IMG_7007.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f24877fc4a2715c20a7845ae488f0c03/2025/11/IMG_6976-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f24877fc4a2715c20a7845ae488f0c03/2025/11/IMG_6533-scaled.jpeg,,,Identifiable +N1,110728,Sortie #110728,https://biolit.fr/sorties/sortie-110728/,Fred LHERMINIER,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e1edda00dc2720d6ed39590de28529d0/2025/11/20251129_163708-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e1edda00dc2720d6ed39590de28529d0/2025/11/20251129_163705-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e1edda00dc2720d6ed39590de28529d0/2025/11/20251129_163703-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e1edda00dc2720d6ed39590de28529d0/2025/11/20251129_163657-scaled.jpg,11/29/2025 0:00,15.0000000,16.0000000,47.871209000000,-4.10469300000000,,Plage de Bénodet,110729,Observation #110729,https://biolit.fr/observations/observation-110729/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e1edda00dc2720d6ed39590de28529d0/2025/11/20251129_163708-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e1edda00dc2720d6ed39590de28529d0/2025/11/20251129_163705-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e1edda00dc2720d6ed39590de28529d0/2025/11/20251129_163657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e1edda00dc2720d6ed39590de28529d0/2025/11/20251129_163703-scaled.jpg,,,Identifiable diff --git a/ml/yolov8/build_dataset.py b/ml/yolov8/build_dataset.py new file mode 100644 index 0000000..9ebb33c --- /dev/null +++ b/ml/yolov8/build_dataset.py @@ -0,0 +1,247 @@ +import logging +import sys +import requests +import pandas as pd +from pathlib import Path +from tqdm import tqdm + + + +# LOGGING +LOG_FILE = Path("logs/build_dataset.log") +LOG_FILE.parent.mkdir(parents=True, exist_ok=True) + +logger = logging.getLogger("biolit") +logger.setLevel(logging.INFO) + +_stream_handler = logging.StreamHandler(sys.stdout) +_stream_handler.setLevel(logging.INFO) +_stream_handler.setFormatter( + logging.Formatter("%(asctime)s %(levelname)-8s %(message)s", "%H:%M:%S") +) + +_file_handler = logging.FileHandler(LOG_FILE, mode="w", encoding="utf-8") +_file_handler.setLevel(logging.INFO) +_file_handler.setFormatter( + logging.Formatter( + "%(asctime)s %(levelname)-8s %(message)s", + "%Y-%m-%d %H:%M:%S", + ) +) + +logger.addHandler(_stream_handler) +logger.addHandler(_file_handler) + + +# CONFIGS +DATA_PATH = "dataset_biolit/export_biolit.csv" +BASE_DIR = Path("dataset_biolit") +TIMEOUT = 10 +VALID_EXTS = {"jpg", "jpeg", "png", "webp"} + +USE_COLS = [ + "ID - N1", + "images - observation", + "Nom commun - observation", + "validee - observation", + "espece identifiable ? - observation", +] + +IDENTIFIABLE_VALUES = ["Identifiable", "Non identifiable"] + +SUBFOLDER_MAP = { + "Identifiable": "identifiable", + "Non identifiable": "non_identifiable", +} + + +# FONCTION UTILS +def load_and_filter(path: str) -> pd.DataFrame: + """Charge le CSV et filtre les observations validées.""" + logger.info("Chargement du CSV : %s", path) + data = pd.read_csv(path, usecols=USE_COLS) + total = len(data) + filtered = data[data["validee - observation"] == "TRUE"] + logger.info( + "CSV chargé — %d lignes totales, %d après filtrage (validée=TRUE)", + total, len(filtered), + ) + return filtered + + +def explode_image_urls(df: pd.DataFrame) -> pd.DataFrame: + """Split les URLs multiples (séparées par |) en une ligne par image.""" + logger.debug("Explosion des URLs multiples...") + result = ( + df.copy() + .assign(**{ + "images - observation": df["images - observation"] + .str.strip() + .str.split("|") + }) + .explode("images - observation") + .rename(columns={"images - observation": "image_url"}) + .assign(image_url=lambda d: d["image_url"].str.strip()) + .reset_index(drop=True) + ) + logger.info("Explosion terminée — %d lignes (une par image)", len(result)) + return result + + +def prepare_dataset(df: pd.DataFrame) -> pd.DataFrame: + """Sélectionne, renomme et enrichit les colonnes utiles.""" + logger.debug("Préparation du dataset...") + dataset = ( + df[[ + "ID - N1", + "Nom commun - observation", + "espece identifiable ? - observation", + "image_url", + ]] + .copy() + .rename(columns={"espece identifiable ? - observation": "identifiable"}) + .pipe(lambda d: d[d["identifiable"].isin(IDENTIFIABLE_VALUES)]) + .reset_index(drop=True) + ) + + dataset["filename"] = [_make_filename(row, i) for i, row in dataset.iterrows()] + dataset["subfolder"] = dataset["identifiable"].map(SUBFOLDER_MAP) + dataset["filepath"] = ( + str(BASE_DIR / "images") + "/" + dataset["subfolder"] + "/" + dataset["filename"] + ) + + counts = dataset["subfolder"].value_counts() + logger.info( + "Dataset préparé — identifiable: %d | non_identifiable: %d | total: %d", + counts.get("identifiable", 0), + counts.get("non_identifiable", 0), + len(dataset), + ) + return dataset + + +def _make_filename(row: pd.Series, idx: int) -> str: + id_n1 = str(row["ID - N1"]) + nom = str(row["Nom commun - observation"]) if pd.notna(row["Nom commun - observation"]) else "inconnu" + nom = nom.strip().replace(" ", "_").replace("/", "-") + ext = row["image_url"].split(".")[-1].split("?")[0].lower() + ext = ext if ext in VALID_EXTS else "jpg" + return f"{id_n1}_{nom}_{idx}.{ext}" + + +def create_folder_structure() -> None: + """Crée l'arborescence du dataset.""" + logger.debug("Création de l'arborescence des dossiers...") + for sub in [ + "images/identifiable", "images/non_identifiable", + "labels/identifiable", "labels/non_identifiable", + ]: + (BASE_DIR / sub).mkdir(parents=True, exist_ok=True) + logger.info("Arborescence créée dans : %s", BASE_DIR.resolve()) + + +def download_images(dataset: pd.DataFrame) -> list[dict]: + """Télécharge les images, skippe celles déjà présentes.""" + failed = [] + skipped = 0 + success = 0 + + logger.info("Démarrage du téléchargement (%d images)...", len(dataset)) + + for _, row in tqdm(dataset.iterrows(), total=len(dataset), desc="Téléchargement"): + dest = Path(row["filepath"]) + if dest.exists(): + skipped += 1 + logger.debug("Skipped (déjà présente) : %s", dest.name) + continue + try: + response = requests.get(row["image_url"], timeout=TIMEOUT) + response.raise_for_status() + dest.write_bytes(response.content) + success += 1 + logger.debug("OK %s", dest.name) + except Exception as e: + failed.append({"url": row["image_url"], "erreur": str(e)}) + logger.warning("ÉCHEC %s → %s", row["image_url"], e) + + logger.info( + "Téléchargement terminé — succès: %d | skipped: %d | échecs: %d", + success, skipped, len(failed), + ) + return failed + + +def save_metadata(dataset: pd.DataFrame) -> None: + dest = BASE_DIR / "metadata.csv" + dataset.to_csv(dest, index=False) + logger.info("Métadonnées sauvegardées : %s (%d lignes)", dest, len(dataset)) + + +def save_yaml(dataset: pd.DataFrame) -> None: + classes = sorted(dataset["Nom commun - observation"].dropna().unique().tolist()) + yaml_content = ( + f"# Dataset Biolit - config YOLO\n" + f"path: {BASE_DIR.resolve()}\n" + f"train: images/identifiable\n" + f"val: images/identifiable # à splitter train/val/test\n\n" + f"nc: {len(classes)}\n" + f"names: {classes}\n" + ) + dest = BASE_DIR / "data.yaml" + dest.write_text(yaml_content) + logger.info("data.yaml sauvegardé : %d classes", len(classes)) + + +def print_report(dataset: pd.DataFrame, failed: list[dict]) -> None: + counts = dataset["subfolder"].value_counts() + report = f""" + Dataset sauvegardé dans : {BASE_DIR.resolve()} + + images/identifiable/ -> {counts.get('identifiable', 0):>5} images + images/non_identifiable/ -> {counts.get('non_identifiable', 0):>5} images + labels/ -> prêt pour annotation YOLO + metadata.csv -> {len(dataset):>5} lignes + data.yaml -> {dataset['Nom commun - observation'].nunique():>5} classes + + Succès : {len(dataset) - len(failed)} + Échecs : {len(failed)} + """ + print(report) + logger.info("=== RAPPORT FINAL ===") + logger.info("identifiable: %d | non_identifiable: %d", counts.get("identifiable", 0), counts.get("non_identifiable", 0)) + logger.info("Total lignes metadata: %d | Classes: %d", len(dataset), dataset["Nom commun - observation"].nunique()) + logger.info("Succès: %d | Échecs: %d", len(dataset) - len(failed), len(failed)) + logger.info("Logs sauvegardés dans : %s", LOG_FILE.resolve()) + + +# RUNNER L'EXTRACT +def build_dataset(): + logger.info("════════ START build_dataset ════════") + + logger.info("Chargement et filtrage...") + raw = load_and_filter(DATA_PATH) + exploded = explode_image_urls(raw) + dataset = prepare_dataset(exploded) + + logger.info("%d images à traiter", len(dataset)) + + create_folder_structure() + + logger.info("Téléchargement des images...") + failed = download_images(dataset) + + logger.info("Sauvegarde des métadonnées...") + save_metadata(dataset) + save_yaml(dataset) + + if failed: + dest = BASE_DIR / "failed_downloads.csv" + pd.DataFrame(failed).to_csv(dest, index=False) + logger.warning("%d échec(s) enregistré(s) dans : %s", len(failed), dest) + + print_report(dataset, failed) + logger.info("════════ END build_dataset ════════") + + +if __name__ == "__main__": + build_dataset() diff --git a/ml/yolov8/crop_pipeline.py b/ml/yolov8/crop_pipeline.py new file mode 100644 index 0000000..dcd2b29 --- /dev/null +++ b/ml/yolov8/crop_pipeline.py @@ -0,0 +1,99 @@ +import os +from pathlib import Path + +import torch +from PIL import Image +from transformers import AutoModelForZeroShotObjectDetection, AutoProcessor + + +# Configuration de base TODO: Ajouter dans config.py +device = torch.device("cuda" if torch.cuda.is_available() else "cpu") +USE_SMALL_MODELS = os.environ.get("USE_SMALL_MODELS", "0") == "1" +ASSETS_DIR = Path(__file__).parent / "assets" + +# Récupération du modèle TODO: Ajouter dans config.py +GDINO_MODEL_ID = "IDEA-Research/grounding-dino-tiny" if USE_SMALL_MODELS else "IDEA-Research/grounding-dino-base" +gdino_processor = AutoProcessor.from_pretrained(GDINO_MODEL_ID) +gdino_model = AutoModelForZeroShotObjectDetection.from_pretrained(GDINO_MODEL_ID).eval().to(device) + +# Code détection avec GroundingDINO TODO: mettre dans detect.py +def _detect_gdino(image: Image.Image, labels: str, threshold: float) -> tuple[Image.Image, list[dict], dict, list]: + text = labels.strip().rstrip(".") + candidate_labels = [part.strip() for part in text.split(",") if part.strip()] + text_prompt = ". ".join(candidate_labels) + "." + + inputs = gdino_processor(images=image, text=text_prompt, return_tensors="pt").to(device) + outputs = gdino_model(**inputs) + results = gdino_processor.post_process_grounded_object_detection( + outputs, + input_ids=inputs["input_ids"], + target_sizes=[(image.height, image.width)], + threshold=threshold, + text_threshold=threshold, + )[0] + + return results + +# Code de crop et annotation TODO: mettre dans img_utils +def crop_and_anotate(image, results, threshold): + annotations = [] + crops = [] + + for score, label, box in zip(results["scores"], results["labels"], results["boxes"], strict=True): + x_min, y_min, x_max, y_max = box.tolist() + annotations.append( + { + "bbox": {"x": x_min, "y": y_min, "width": x_max - x_min, "height": y_max - y_min}, + "score": round(float(score), 3), + "label": label, + } + ) + # Crop de la région détectée + crop = image.crop((x_min, y_min, x_max, y_max)) + crops.append((crop, f"{label} {float(score):.1%}")) + + return image, annotations, {"score_threshold": (threshold, 1.0)}, crops + + +# Script d'inférence TODO: mettre dans main.py +@torch.inference_mode() +def run_detection(): + # Partie détection + detection = _detect_gdino( + image = Image.open(f"{ASSETS_DIR}/Biolit-Espece (12).webp"), + labels="animal, plant", + threshold=0.4 + ) + + # Partie crop + crop_anotation = crop_and_anotate( + image = Image.open(f"{ASSETS_DIR}/Biolit-Espece (12).webp"), + results=detection, + threshold=0.4 + ) + + # Afficher les infos et sauvegarder l'image TODO: afficher dans un DataFrame pour évaluer le modèle + print("Bbox : ", crop_anotation[1][0]["bbox"]) + print("Score : ", crop_anotation[1][0]["score"]) + print("Label : ", crop_anotation[1][0]["label"]) + # print(crop_anotation[2]) + crop_anotation[3][0][0].save("Biolit-Espece_(12)_crop.webp","WEBP") + +# def run_detection(image: Image.Image, labels: str, threshold: float) -> tuple | None: +# if image is None or not labels.strip(): +# return None, [] +# image, annotations, score_threshold, crops = _detect_gdino(image, labels, threshold) + # return (image, annotations, score_threshold), crops + + + +# Exécuter la fonction +if __name__ == "__main__": + run_detection() +# results = run_detection( +# image = Image.open(f"{ASSETS_DIR}/Biolit-Espece (12).webp"), +# labels="animal, plant", +# threshold=0.4 +# ) + +# print(results) \ No newline at end of file diff --git a/ml/yolov8/dataset_biolit/export_biolit.csv b/ml/yolov8/dataset_biolit/export_biolit.csv new file mode 100644 index 0000000..bfa70e5 --- /dev/null +++ b/ml/yolov8/dataset_biolit/export_biolit.csv @@ -0,0 +1,22093 @@ +protocole,ID - N1,titre - N1,lien - N1,auteur - N1,images - N1,date - N1,heure-de-debut - N1,heure-de-fin - N1,latitude - N1,longitude - N1,relais-local - N1,nom du lieu - N1,ID - observation,titre - observation,lien - observation,Nom scientifique - observation,Nom commun - observation,programme espèce,images - observation,nombre de mollusques - observation,validee - observation,espece identifiable ? - observation +N1,22217,sortie-c03952e1-cef4-457c-8cb4-dd48111398de,https://biolit.fr/sorties/sortie-c03952e1-cef4-457c-8cb4-dd48111398de/,Marine,,03/02/2023,14.0:35,15.000005,49.328136000000,-0.377498000000,Planète Mer,Plage de saint-Aubin,20791,observation-c03952e1-cef4-457c-8cb4-dd48111398de,https://biolit.fr/observations/observation-c03952e1-cef4-457c-8cb4-dd48111398de/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20230302_142332-scaled.jpg,,FALSE, +N1,22217,sortie-c03952e1-cef4-457c-8cb4-dd48111398de,https://biolit.fr/sorties/sortie-c03952e1-cef4-457c-8cb4-dd48111398de/,Marine,,03/02/2023,14.0:35,15.000005,49.328136000000,-0.377498000000,Planète Mer,Plage de saint-Aubin,20793,observation-c03952e1-cef4-457c-8cb4-dd48111398de-2,https://biolit.fr/observations/observation-c03952e1-cef4-457c-8cb4-dd48111398de-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20230302_142624-scaled.jpg,,FALSE, +N1,22217,sortie-c03952e1-cef4-457c-8cb4-dd48111398de,https://biolit.fr/sorties/sortie-c03952e1-cef4-457c-8cb4-dd48111398de/,Marine,,03/02/2023,14.0:35,15.000005,49.328136000000,-0.377498000000,Planète Mer,Plage de saint-Aubin,20795,observation-c03952e1-cef4-457c-8cb4-dd48111398de-3,https://biolit.fr/observations/observation-c03952e1-cef4-457c-8cb4-dd48111398de-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20230302_142332_0-scaled.jpg,,FALSE, +N1,22218,sortie-071b53f0-78bd-4d2f-90b5-0445df772601,https://biolit.fr/sorties/sortie-071b53f0-78bd-4d2f-90b5-0445df772601/,Hupp,,1/25/2023 0:00,16.0000000,18.0000000,48.255326000000,1.859333000000,,plzge,,,,,,,,,, +N1,22219,sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3,https://biolit.fr/sorties/sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3/,carodub,,7/15/2022 0:00,11.0000000,13.0000000,47.264180000000,-2.406967000000,,PLAGE LA BAULE ESCOUBLAC,20799,observation-80e0b530-5709-4c97-98a0-1a1abf9907a3,https://biolit.fr/observations/observation-80e0b530-5709-4c97-98a0-1a1abf9907a3/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/05/IMG_5457.JPG,,TRUE, +N1,22219,sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3,https://biolit.fr/sorties/sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3/,carodub,,7/15/2022 0:00,11.0000000,13.0000000,47.264180000000,-2.406967000000,,PLAGE LA BAULE ESCOUBLAC,20801,observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-2,https://biolit.fr/observations/observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-2/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/IMG_5458.JPG,,TRUE, +N1,22219,sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3,https://biolit.fr/sorties/sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3/,carodub,,7/15/2022 0:00,11.0000000,13.0000000,47.264180000000,-2.406967000000,,PLAGE LA BAULE ESCOUBLAC,20803,observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-3,https://biolit.fr/observations/observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_5459.JPG,,FALSE, +N1,22219,sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3,https://biolit.fr/sorties/sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3/,carodub,,7/15/2022 0:00,11.0000000,13.0000000,47.264180000000,-2.406967000000,,PLAGE LA BAULE ESCOUBLAC,20805,observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-4,https://biolit.fr/observations/observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-4/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/05/IMG_5464.JPG,,,on +N1,22219,sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3,https://biolit.fr/sorties/sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3/,carodub,,7/15/2022 0:00,11.0000000,13.0000000,47.264180000000,-2.406967000000,,PLAGE LA BAULE ESCOUBLAC,20807,observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-5,https://biolit.fr/observations/observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-5/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/05/IMG_5465.JPG,,TRUE, +N1,22219,sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3,https://biolit.fr/sorties/sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3/,carodub,,7/15/2022 0:00,11.0000000,13.0000000,47.264180000000,-2.406967000000,,PLAGE LA BAULE ESCOUBLAC,20809,observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-6,https://biolit.fr/observations/observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-6/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_5468.JPG,,FALSE, +N1,22219,sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3,https://biolit.fr/sorties/sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3/,carodub,,7/15/2022 0:00,11.0000000,13.0000000,47.264180000000,-2.406967000000,,PLAGE LA BAULE ESCOUBLAC,20811,observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-7,https://biolit.fr/observations/observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-7/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_5469.JPG,,FALSE, +N1,22219,sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3,https://biolit.fr/sorties/sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3/,carodub,,7/15/2022 0:00,11.0000000,13.0000000,47.264180000000,-2.406967000000,,PLAGE LA BAULE ESCOUBLAC,20813,observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-8,https://biolit.fr/observations/observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-8/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_5485.JPG,,FALSE, +N1,22219,sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3,https://biolit.fr/sorties/sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3/,carodub,,7/15/2022 0:00,11.0000000,13.0000000,47.264180000000,-2.406967000000,,PLAGE LA BAULE ESCOUBLAC,20815,observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-9,https://biolit.fr/observations/observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-9/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_5487.JPG,,FALSE, +N1,22219,sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3,https://biolit.fr/sorties/sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3/,carodub,,7/15/2022 0:00,11.0000000,13.0000000,47.264180000000,-2.406967000000,,PLAGE LA BAULE ESCOUBLAC,20817,observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-10,https://biolit.fr/observations/observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-10/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_5469_0.JPG,,FALSE, +N1,22219,sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3,https://biolit.fr/sorties/sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3/,carodub,,7/15/2022 0:00,11.0000000,13.0000000,47.264180000000,-2.406967000000,,PLAGE LA BAULE ESCOUBLAC,20819,observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-11,https://biolit.fr/observations/observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-11/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_5498.JPG,,FALSE, +N1,22219,sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3,https://biolit.fr/sorties/sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3/,carodub,,7/15/2022 0:00,11.0000000,13.0000000,47.264180000000,-2.406967000000,,PLAGE LA BAULE ESCOUBLAC,20821,observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-12,https://biolit.fr/observations/observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-12/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_5502.JPG,,FALSE, +N1,22219,sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3,https://biolit.fr/sorties/sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3/,carodub,,7/15/2022 0:00,11.0000000,13.0000000,47.264180000000,-2.406967000000,,PLAGE LA BAULE ESCOUBLAC,20825,observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-14,https://biolit.fr/observations/observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-14/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5504.JPG,,TRUE, +N1,22219,sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3,https://biolit.fr/sorties/sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3/,carodub,,7/15/2022 0:00,11.0000000,13.0000000,47.264180000000,-2.406967000000,,PLAGE LA BAULE ESCOUBLAC,20827,observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-15,https://biolit.fr/observations/observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-15/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/05/IMG_5505.JPG,,TRUE, +N1,22219,sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3,https://biolit.fr/sorties/sortie-80e0b530-5709-4c97-98a0-1a1abf9907a3/,carodub,,7/15/2022 0:00,11.0000000,13.0000000,47.264180000000,-2.406967000000,,PLAGE LA BAULE ESCOUBLAC,20829,observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-16,https://biolit.fr/observations/observation-80e0b530-5709-4c97-98a0-1a1abf9907a3-16/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/05/IMG_5510.JPG,,TRUE, +N1,22220,sortie-5fab034b-74dc-4e3d-9864-e21146cb2055,https://biolit.fr/sorties/sortie-5fab034b-74dc-4e3d-9864-e21146cb2055/,sunnyattitude,,8/16/2022 0:00,15.0000000,16.0000000,47.853086000000,-3.993693000000,Planète Mer,Beg-meil,20833,observation-5fab034b-74dc-4e3d-9864-e21146cb2055,https://biolit.fr/observations/observation-5fab034b-74dc-4e3d-9864-e21146cb2055/,,,,https://biolit.fr/wp-content/uploads/2023/05/306055177_1459764144451048_3296221070870805390_n.jpg,,FALSE, +N1,22220,sortie-5fab034b-74dc-4e3d-9864-e21146cb2055,https://biolit.fr/sorties/sortie-5fab034b-74dc-4e3d-9864-e21146cb2055/,sunnyattitude,,8/16/2022 0:00,15.0000000,16.0000000,47.853086000000,-3.993693000000,Planète Mer,Beg-meil,20835,observation-5fab034b-74dc-4e3d-9864-e21146cb2055-2,https://biolit.fr/observations/observation-5fab034b-74dc-4e3d-9864-e21146cb2055-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/305539870_525029322668190_7630357606170935480_n.jpg,,FALSE, +N1,22220,sortie-5fab034b-74dc-4e3d-9864-e21146cb2055,https://biolit.fr/sorties/sortie-5fab034b-74dc-4e3d-9864-e21146cb2055/,sunnyattitude,,8/16/2022 0:00,15.0000000,16.0000000,47.853086000000,-3.993693000000,Planète Mer,Beg-meil,20837,observation-5fab034b-74dc-4e3d-9864-e21146cb2055-3,https://biolit.fr/observations/observation-5fab034b-74dc-4e3d-9864-e21146cb2055-3/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/05/305433719_496381301823393_4197361325610774026_n.jpg,,TRUE, +N1,22220,sortie-5fab034b-74dc-4e3d-9864-e21146cb2055,https://biolit.fr/sorties/sortie-5fab034b-74dc-4e3d-9864-e21146cb2055/,sunnyattitude,,8/16/2022 0:00,15.0000000,16.0000000,47.853086000000,-3.993693000000,Planète Mer,Beg-meil,20839,observation-5fab034b-74dc-4e3d-9864-e21146cb2055-4,https://biolit.fr/observations/observation-5fab034b-74dc-4e3d-9864-e21146cb2055-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/305047341_1516571405448761_2356056680141978947_n.jpg,,FALSE, +N1,22221,sortie-8a8d1084-aebb-4f26-8a33-0416330fede1,https://biolit.fr/sorties/sortie-8a8d1084-aebb-4f26-8a33-0416330fede1/,OFB,,7/13/2022 0:00,10.0:25,12.0000000,47.53357500000,-3.145403000000,,Portivy,20843,observation-8a8d1084-aebb-4f26-8a33-0416330fede1,https://biolit.fr/observations/observation-8a8d1084-aebb-4f26-8a33-0416330fede1/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20220713_105503.jpg,,TRUE, +N1,22222,sortie-28216dd6-7d97-4e50-b9e9-9e1909c44ca1,https://biolit.fr/sorties/sortie-28216dd6-7d97-4e50-b9e9-9e1909c44ca1/,Anne,,7/29/2022 0:00,14.0000000,15.0000000,48.619133000000,-2.152903000000,,"Plage de l'Islet, Lancieux",20845,observation-28216dd6-7d97-4e50-b9e9-9e1909c44ca1,https://biolit.fr/observations/observation-28216dd6-7d97-4e50-b9e9-9e1909c44ca1/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Fucus vesiculeux et gibbule ombilique-scaled.jpg,,TRUE, +N1,22222,sortie-28216dd6-7d97-4e50-b9e9-9e1909c44ca1,https://biolit.fr/sorties/sortie-28216dd6-7d97-4e50-b9e9-9e1909c44ca1/,Anne,,7/29/2022 0:00,14.0000000,15.0000000,48.619133000000,-2.152903000000,,"Plage de l'Islet, Lancieux",20847,observation-28216dd6-7d97-4e50-b9e9-9e1909c44ca1-2,https://biolit.fr/observations/observation-28216dd6-7d97-4e50-b9e9-9e1909c44ca1-2/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Fucus vesiculeux et bernique-scaled.jpg,,TRUE, +N1,22222,sortie-28216dd6-7d97-4e50-b9e9-9e1909c44ca1,https://biolit.fr/sorties/sortie-28216dd6-7d97-4e50-b9e9-9e1909c44ca1/,Anne,,7/29/2022 0:00,14.0000000,15.0000000,48.619133000000,-2.152903000000,,"Plage de l'Islet, Lancieux",20849,observation-28216dd6-7d97-4e50-b9e9-9e1909c44ca1-3,https://biolit.fr/observations/observation-28216dd6-7d97-4e50-b9e9-9e1909c44ca1-3/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/Fucus dente et gibbule commune-scaled.jpg,,TRUE, +N1,22223,sortie-aec94ecb-52b1-4411-9b9f-b014d04dad28,https://biolit.fr/sorties/sortie-aec94ecb-52b1-4411-9b9f-b014d04dad28/,Ligue de l'enseignement 22,,2/28/2022 0:00,13.0000000,14.0000000,48.596886000000,-2.823316000000,,"Plage de la banche, Binic",20851,observation-aec94ecb-52b1-4411-9b9f-b014d04dad28,https://biolit.fr/observations/observation-aec94ecb-52b1-4411-9b9f-b014d04dad28/,,,,https://biolit.fr/wp-content/uploads/2022/06/bigorneau_0.jpg,,FALSE, +N1,22223,sortie-aec94ecb-52b1-4411-9b9f-b014d04dad28,https://biolit.fr/sorties/sortie-aec94ecb-52b1-4411-9b9f-b014d04dad28/,Ligue de l'enseignement 22,,2/28/2022 0:00,13.0000000,14.0000000,48.596886000000,-2.823316000000,,"Plage de la banche, Binic",20852,observation-aec94ecb-52b1-4411-9b9f-b014d04dad28-2,https://biolit.fr/observations/observation-aec94ecb-52b1-4411-9b9f-b014d04dad28-2/,,,,https://biolit.fr/wp-content/uploads/2022/06/Balanes.jpg,,FALSE, +N1,22223,sortie-aec94ecb-52b1-4411-9b9f-b014d04dad28,https://biolit.fr/sorties/sortie-aec94ecb-52b1-4411-9b9f-b014d04dad28/,Ligue de l'enseignement 22,,2/28/2022 0:00,13.0000000,14.0000000,48.596886000000,-2.823316000000,,"Plage de la banche, Binic",20853,observation-aec94ecb-52b1-4411-9b9f-b014d04dad28-3,https://biolit.fr/observations/observation-aec94ecb-52b1-4411-9b9f-b014d04dad28-3/,,,,https://biolit.fr/wp-content/uploads/2022/06/Actinie cheval.jpg,,FALSE, +N1,22223,sortie-aec94ecb-52b1-4411-9b9f-b014d04dad28,https://biolit.fr/sorties/sortie-aec94ecb-52b1-4411-9b9f-b014d04dad28/,Ligue de l'enseignement 22,,2/28/2022 0:00,13.0000000,14.0000000,48.596886000000,-2.823316000000,,"Plage de la banche, Binic",20854,observation-aec94ecb-52b1-4411-9b9f-b014d04dad28-4,https://biolit.fr/observations/observation-aec94ecb-52b1-4411-9b9f-b014d04dad28-4/,,,,https://biolit.fr/wp-content/uploads/2022/06/Littorine Fabalis.jpg,,FALSE, +N1,22223,sortie-aec94ecb-52b1-4411-9b9f-b014d04dad28,https://biolit.fr/sorties/sortie-aec94ecb-52b1-4411-9b9f-b014d04dad28/,Ligue de l'enseignement 22,,2/28/2022 0:00,13.0000000,14.0000000,48.596886000000,-2.823316000000,,"Plage de la banche, Binic",20855,observation-aec94ecb-52b1-4411-9b9f-b014d04dad28-5,https://biolit.fr/observations/observation-aec94ecb-52b1-4411-9b9f-b014d04dad28-5/,,,,https://biolit.fr/wp-content/uploads/2022/06/Littorine Obtuses.jpg,,FALSE, +N1,22223,sortie-aec94ecb-52b1-4411-9b9f-b014d04dad28,https://biolit.fr/sorties/sortie-aec94ecb-52b1-4411-9b9f-b014d04dad28/,Ligue de l'enseignement 22,,2/28/2022 0:00,13.0000000,14.0000000,48.596886000000,-2.823316000000,,"Plage de la banche, Binic",20856,observation-aec94ecb-52b1-4411-9b9f-b014d04dad28-6,https://biolit.fr/observations/observation-aec94ecb-52b1-4411-9b9f-b014d04dad28-6/,,,,https://biolit.fr/wp-content/uploads/2022/06/Moule_1-1.jpg,,FALSE, +N1,22224,sortie-3d79aef8-2789-4ee0-867f-31b63341ecf1,https://biolit.fr/sorties/sortie-3d79aef8-2789-4ee0-867f-31b63341ecf1/,Ligue de l'enseignement 22,,2/28/2022 0:00,13.0000000,14.0:15,48.597969000000,-2.82352100000,,"Plage de la Banche, Binic ",20857,observation-3d79aef8-2789-4ee0-867f-31b63341ecf1,https://biolit.fr/observations/observation-3d79aef8-2789-4ee0-867f-31b63341ecf1/,,,,https://biolit.fr/wp-content/uploads/2022/06/IMG_20220228_141033_0.jpg,,FALSE, +N1,22224,sortie-3d79aef8-2789-4ee0-867f-31b63341ecf1,https://biolit.fr/sorties/sortie-3d79aef8-2789-4ee0-867f-31b63341ecf1/,Ligue de l'enseignement 22,,2/28/2022 0:00,13.0000000,14.0:15,48.597969000000,-2.82352100000,,"Plage de la Banche, Binic ",20858,observation-3d79aef8-2789-4ee0-867f-31b63341ecf1-2,https://biolit.fr/observations/observation-3d79aef8-2789-4ee0-867f-31b63341ecf1-2/,,,,https://biolit.fr/wp-content/uploads/2022/06/IMG_20220228_141220.jpg,,FALSE, +N1,22224,sortie-3d79aef8-2789-4ee0-867f-31b63341ecf1,https://biolit.fr/sorties/sortie-3d79aef8-2789-4ee0-867f-31b63341ecf1/,Ligue de l'enseignement 22,,2/28/2022 0:00,13.0000000,14.0:15,48.597969000000,-2.82352100000,,"Plage de la Banche, Binic ",20859,observation-3d79aef8-2789-4ee0-867f-31b63341ecf1-3,https://biolit.fr/observations/observation-3d79aef8-2789-4ee0-867f-31b63341ecf1-3/,,,,https://biolit.fr/wp-content/uploads/2022/06/IMG_20220228_141520.jpg,,FALSE, +N1,22224,sortie-3d79aef8-2789-4ee0-867f-31b63341ecf1,https://biolit.fr/sorties/sortie-3d79aef8-2789-4ee0-867f-31b63341ecf1/,Ligue de l'enseignement 22,,2/28/2022 0:00,13.0000000,14.0:15,48.597969000000,-2.82352100000,,"Plage de la Banche, Binic ",20860,observation-3d79aef8-2789-4ee0-867f-31b63341ecf1-4,https://biolit.fr/observations/observation-3d79aef8-2789-4ee0-867f-31b63341ecf1-4/,,,,https://biolit.fr/wp-content/uploads/2022/06/IMG_20220228_141627.jpg,,FALSE, +N1,22225,sortie-0c4a6138-4c25-4bcc-bf47-911518116c1a,https://biolit.fr/sorties/sortie-0c4a6138-4c25-4bcc-bf47-911518116c1a/,collège paul Eluard,,1/25/2022 0:00,14.0000000,15.0000000,50.829169000000,1.59095800000,,Audreselles,20861,observation-0c4a6138-4c25-4bcc-bf47-911518116c1a,https://biolit.fr/observations/observation-0c4a6138-4c25-4bcc-bf47-911518116c1a/,,,,https://biolit.fr/wp-content/uploads/2022/06/GilliersLecleireJoachim5e6Bigorneau1.jpg.png,,FALSE, +N1,22226,sortie-75cbd5c8-d10b-46bb-88e0-d1c205ce5f00,https://biolit.fr/sorties/sortie-75cbd5c8-d10b-46bb-88e0-d1c205ce5f00/,collège paul Eluard,,01/11/2022,14.0000000,15.0000000,50.824114000000,1.596090000000,,Audresselles ,20862,observation-75cbd5c8-d10b-46bb-88e0-d1c205ce5f00,https://biolit.fr/observations/observation-75cbd5c8-d10b-46bb-88e0-d1c205ce5f00/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/208AF806-2587-4FE2-9E4F-CFCBD7CC4DE5-scaled.jpeg,,TRUE, +N1,22227,sortie-93b18f80-ec28-444a-932d-03e6d9614c7f,https://biolit.fr/sorties/sortie-93b18f80-ec28-444a-932d-03e6d9614c7f/,collège paul Eluard,,01/11/2022,14.0000000,15.0000000,50.828647000000,1.590607000000,,audresselles,20864,observation-93b18f80-ec28-444a-932d-03e6d9614c7f,https://biolit.fr/observations/observation-93b18f80-ec28-444a-932d-03e6d9614c7f/,,,,https://biolit.fr/wp-content/uploads/2022/06/20220111_151427[1]-scaled.jpg,,FALSE, +N1,22228,sortie-ec773291-6ce8-47bf-87d7-3468109e7e2b,https://biolit.fr/sorties/sortie-ec773291-6ce8-47bf-87d7-3468109e7e2b/,collège paul Eluard,,01/11/2022,14.0000000,15.0000000,50.830537000000,1.58978200000,,Audresselles,20865,observation-ec773291-6ce8-47bf-87d7-3468109e7e2b,https://biolit.fr/observations/observation-ec773291-6ce8-47bf-87d7-3468109e7e2b/,,,,https://biolit.fr/wp-content/uploads/2022/06/Lilian bernard.jpg,,FALSE, +N1,22229,sortie-54f166a5-283a-40f0-b39f-5416cc08437a,https://biolit.fr/sorties/sortie-54f166a5-283a-40f0-b39f-5416cc08437a/,collège paul Eluard,,01/11/2022,14.0000000,15.0000000,50.820200000000,1.594331000000,,Audresselles,20866,observation-54f166a5-283a-40f0-b39f-5416cc08437a,https://biolit.fr/observations/observation-54f166a5-283a-40f0-b39f-5416cc08437a/,,,,https://biolit.fr/wp-content/uploads/2022/06/C222441F-383C-45AF-A577-39E81F6FBCFA-scaled.jpeg,,FALSE, +N1,22230,sortie-ca7b9d02-6ac0-418b-aa08-54f9894d7eac,https://biolit.fr/sorties/sortie-ca7b9d02-6ac0-418b-aa08-54f9894d7eac/,collège paul Eluard,,01/11/2022,14.0000000,15.0000000,50.823385000000,1.594438000000,,Audresselles,20867,observation-ca7b9d02-6ac0-418b-aa08-54f9894d7eac,https://biolit.fr/observations/observation-ca7b9d02-6ac0-418b-aa08-54f9894d7eac/,,,,https://biolit.fr/wp-content/uploads/2022/06/IMG_20220111_150006[1]-scaled.jpg,,FALSE, +N1,22231,sortie-5ea7f50d-5f96-4c34-b1c8-65ecff949ae5,https://biolit.fr/sorties/sortie-5ea7f50d-5f96-4c34-b1c8-65ecff949ae5/,collège paul Eluard,,01/11/2022,14.0000000,15.0000000,44.354230000000,4.804969000000,,Audresselles,20868,observation-5ea7f50d-5f96-4c34-b1c8-65ecff949ae5,https://biolit.fr/observations/observation-5ea7f50d-5f96-4c34-b1c8-65ecff949ae5/,,,,https://biolit.fr/wp-content/uploads/2022/06/IMG_20220111_144914-scaled.jpg,,FALSE, +N1,22232,sortie-05b3ce1e-f30c-4dc9-9115-1bf6341a9e31,https://biolit.fr/sorties/sortie-05b3ce1e-f30c-4dc9-9115-1bf6341a9e31/,collège paul Eluard,,01/11/2022,14.0000000,15.0000000,50.635310000000,1.576371000000,Nausicaa,HARDELOT,20869,observation-05b3ce1e-f30c-4dc9-9115-1bf6341a9e31,https://biolit.fr/observations/observation-05b3ce1e-f30c-4dc9-9115-1bf6341a9e31/,,,,https://biolit.fr/wp-content/uploads/2022/06/un coquillage sur son algue.jpg,,FALSE, +N1,22233,sortie-bcb155e8-6d60-4eee-bf9d-47c801e3f1d2,https://biolit.fr/sorties/sortie-bcb155e8-6d60-4eee-bf9d-47c801e3f1d2/,collège paul Eluard,,01/11/2022,14.0000000,15.0000000,50.823643000000,1.592014000000,,Audresselle,20870,observation-bcb155e8-6d60-4eee-bf9d-47c801e3f1d2,https://biolit.fr/observations/observation-bcb155e8-6d60-4eee-bf9d-47c801e3f1d2/,,,,https://biolit.fr/wp-content/uploads/2022/06/272048826_357270412902684_1740025504187171953_n.jpg,,FALSE, +N1,22233,sortie-bcb155e8-6d60-4eee-bf9d-47c801e3f1d2,https://biolit.fr/sorties/sortie-bcb155e8-6d60-4eee-bf9d-47c801e3f1d2/,collège paul Eluard,,01/11/2022,14.0000000,15.0000000,50.823643000000,1.592014000000,,Audresselle,20871,observation-bcb155e8-6d60-4eee-bf9d-47c801e3f1d2-2,https://biolit.fr/observations/observation-bcb155e8-6d60-4eee-bf9d-47c801e3f1d2-2/,,,,https://biolit.fr/wp-content/uploads/2022/06/271940398_3172298306388949_7017236535389674198_n.jpg,,FALSE, +N1,22234,sortie-cb03d7ba-0521-49d4-be43-433a5f92748a,https://biolit.fr/sorties/sortie-cb03d7ba-0521-49d4-be43-433a5f92748a/,collège paul Eluard,,1/19/2022 0:00,14.0000000,15.0000000,50.828814000000,1.590451000000,,Audresselles,20872,observation-cb03d7ba-0521-49d4-be43-433a5f92748a,https://biolit.fr/observations/observation-cb03d7ba-0521-49d4-be43-433a5f92748a/,,,,https://biolit.fr/wp-content/uploads/2022/06/Snapchat-50754479.jpg,,FALSE, +N1,22235,sortie-03400d6d-0004-48b3-a770-bfa8390e8f45,https://biolit.fr/sorties/sortie-03400d6d-0004-48b3-a770-bfa8390e8f45/,Dorian ROULET,,01/04/2022,11.0000000,11.0:45,47.346432000000,-3.1520720000,Planète Mer,Plage du port,20873,observation-03400d6d-0004-48b3-a770-bfa8390e8f45,https://biolit.fr/observations/observation-03400d6d-0004-48b3-a770-bfa8390e8f45/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG20220104111033-scaled.jpg,,TRUE, +N1,22236,sortie-fa444e60-ede5-4703-8653-0070e7c216a4,https://biolit.fr/sorties/sortie-fa444e60-ede5-4703-8653-0070e7c216a4/,Valérie Eurin,,9/25/2021 0:00,18.0000000,20.0000000,49.375621000000,0.085658000000,,Plage des roches noires,20875,observation-fa444e60-ede5-4703-8653-0070e7c216a4,https://biolit.fr/observations/observation-fa444e60-ede5-4703-8653-0070e7c216a4/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1700.jpg,,TRUE, +N1,22236,sortie-fa444e60-ede5-4703-8653-0070e7c216a4,https://biolit.fr/sorties/sortie-fa444e60-ede5-4703-8653-0070e7c216a4/,Valérie Eurin,,9/25/2021 0:00,18.0000000,20.0000000,49.375621000000,0.085658000000,,Plage des roches noires,20877,observation-fa444e60-ede5-4703-8653-0070e7c216a4-2,https://biolit.fr/observations/observation-fa444e60-ede5-4703-8653-0070e7c216a4-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1755_0-scaled.jpg,,FALSE, +N1,22236,sortie-fa444e60-ede5-4703-8653-0070e7c216a4,https://biolit.fr/sorties/sortie-fa444e60-ede5-4703-8653-0070e7c216a4/,Valérie Eurin,,9/25/2021 0:00,18.0000000,20.0000000,49.375621000000,0.085658000000,,Plage des roches noires,20879,observation-fa444e60-ede5-4703-8653-0070e7c216a4-3,https://biolit.fr/observations/observation-fa444e60-ede5-4703-8653-0070e7c216a4-3/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1752-scaled.jpg,,TRUE, +N1,22237,sortie-b17fc0ad-4273-4ad4-a8ca-dd15b7a6c44d,https://biolit.fr/sorties/sortie-b17fc0ad-4273-4ad4-a8ca-dd15b7a6c44d/,Valérie Eurin,,9/25/2021 0:00,18.0000000,20.0000000,49.378855000000,0.087557000000,,"Plage des roches noires, Trouville",20881,observation-b17fc0ad-4273-4ad4-a8ca-dd15b7a6c44d,https://biolit.fr/observations/observation-b17fc0ad-4273-4ad4-a8ca-dd15b7a6c44d/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1753 redim-scaled.jpg,,FALSE, +N1,22237,sortie-b17fc0ad-4273-4ad4-a8ca-dd15b7a6c44d,https://biolit.fr/sorties/sortie-b17fc0ad-4273-4ad4-a8ca-dd15b7a6c44d/,Valérie Eurin,,9/25/2021 0:00,18.0000000,20.0000000,49.378855000000,0.087557000000,,"Plage des roches noires, Trouville",20883,observation-b17fc0ad-4273-4ad4-a8ca-dd15b7a6c44d-2,https://biolit.fr/observations/observation-b17fc0ad-4273-4ad4-a8ca-dd15b7a6c44d-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_1785 redim-scaled.jpg,,TRUE, +N1,22237,sortie-b17fc0ad-4273-4ad4-a8ca-dd15b7a6c44d,https://biolit.fr/sorties/sortie-b17fc0ad-4273-4ad4-a8ca-dd15b7a6c44d/,Valérie Eurin,,9/25/2021 0:00,18.0000000,20.0000000,49.378855000000,0.087557000000,,"Plage des roches noires, Trouville",20885,observation-b17fc0ad-4273-4ad4-a8ca-dd15b7a6c44d-3,https://biolit.fr/observations/observation-b17fc0ad-4273-4ad4-a8ca-dd15b7a6c44d-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_1779_redim-scaled.jpg,,TRUE, +N1,22238,sortie-9c6f7db5-fefc-4aa9-8a66-65cc83ffe43d,https://biolit.fr/sorties/sortie-9c6f7db5-fefc-4aa9-8a66-65cc83ffe43d/,CHRISTELLE LECAILLE,,7/29/2021 0:00,14.0000000,14.0000000,47.297112000000,-2.546253000000,,LE CROISIC,20889,observation-9c6f7db5-fefc-4aa9-8a66-65cc83ffe43d,https://biolit.fr/observations/observation-9c6f7db5-fefc-4aa9-8a66-65cc83ffe43d/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/Algues_1.jpg,,TRUE, +N1,22238,sortie-9c6f7db5-fefc-4aa9-8a66-65cc83ffe43d,https://biolit.fr/sorties/sortie-9c6f7db5-fefc-4aa9-8a66-65cc83ffe43d/,CHRISTELLE LECAILLE,,7/29/2021 0:00,14.0000000,14.0000000,47.297112000000,-2.546253000000,,LE CROISIC,20891,observation-9c6f7db5-fefc-4aa9-8a66-65cc83ffe43d-2,https://biolit.fr/observations/observation-9c6f7db5-fefc-4aa9-8a66-65cc83ffe43d-2/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/05/Algues 2_0.jpg,,TRUE, +N1,22239,sortie-ce941977-26c1-443b-921c-3a95f63537d3,https://biolit.fr/sorties/sortie-ce941977-26c1-443b-921c-3a95f63537d3/,AIEJE,,6/30/2021 0:00,11.0000000,12.0000000,43.330982000000,5.202953000000,AIEJE,plage des anthenors,20893,observation-ce941977-26c1-443b-921c-3a95f63537d3,https://biolit.fr/observations/observation-ce941977-26c1-443b-921c-3a95f63537d3/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/05/IMG_2987.JPG,,TRUE, +N1,22240,sortie-b1fc787c-e210-4992-8260-36ccfc443e9a,https://biolit.fr/sorties/sortie-b1fc787c-e210-4992-8260-36ccfc443e9a/,Environat,,05/01/2021,14.0000000,15.0000000,45.630458000000,-1.064403000000,Environat,conche de Saint Sordelin,20895,observation-b1fc787c-e210-4992-8260-36ccfc443e9a,https://biolit.fr/observations/observation-b1fc787c-e210-4992-8260-36ccfc443e9a/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1030283.jpg,,TRUE, +N1,22240,sortie-b1fc787c-e210-4992-8260-36ccfc443e9a,https://biolit.fr/sorties/sortie-b1fc787c-e210-4992-8260-36ccfc443e9a/,Environat,,05/01/2021,14.0000000,15.0000000,45.630458000000,-1.064403000000,Environat,conche de Saint Sordelin,20897,observation-b1fc787c-e210-4992-8260-36ccfc443e9a-2,https://biolit.fr/observations/observation-b1fc787c-e210-4992-8260-36ccfc443e9a-2/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1030278.jpg,,TRUE, +N1,22240,sortie-b1fc787c-e210-4992-8260-36ccfc443e9a,https://biolit.fr/sorties/sortie-b1fc787c-e210-4992-8260-36ccfc443e9a/,Environat,,05/01/2021,14.0000000,15.0000000,45.630458000000,-1.064403000000,Environat,conche de Saint Sordelin,20899,observation-b1fc787c-e210-4992-8260-36ccfc443e9a-3,https://biolit.fr/observations/observation-b1fc787c-e210-4992-8260-36ccfc443e9a-3/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1030277.jpg,,TRUE, +N1,22240,sortie-b1fc787c-e210-4992-8260-36ccfc443e9a,https://biolit.fr/sorties/sortie-b1fc787c-e210-4992-8260-36ccfc443e9a/,Environat,,05/01/2021,14.0000000,15.0000000,45.630458000000,-1.064403000000,Environat,conche de Saint Sordelin,20901,observation-b1fc787c-e210-4992-8260-36ccfc443e9a-4,https://biolit.fr/observations/observation-b1fc787c-e210-4992-8260-36ccfc443e9a-4/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1030275.jpg,,TRUE, +N1,22240,sortie-b1fc787c-e210-4992-8260-36ccfc443e9a,https://biolit.fr/sorties/sortie-b1fc787c-e210-4992-8260-36ccfc443e9a/,Environat,,05/01/2021,14.0000000,15.0000000,45.630458000000,-1.064403000000,Environat,conche de Saint Sordelin,20903,observation-b1fc787c-e210-4992-8260-36ccfc443e9a-5,https://biolit.fr/observations/observation-b1fc787c-e210-4992-8260-36ccfc443e9a-5/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1030273.jpg,,TRUE, +N1,22240,sortie-b1fc787c-e210-4992-8260-36ccfc443e9a,https://biolit.fr/sorties/sortie-b1fc787c-e210-4992-8260-36ccfc443e9a/,Environat,,05/01/2021,14.0000000,15.0000000,45.630458000000,-1.064403000000,Environat,conche de Saint Sordelin,20905,observation-b1fc787c-e210-4992-8260-36ccfc443e9a-6,https://biolit.fr/observations/observation-b1fc787c-e210-4992-8260-36ccfc443e9a-6/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/P1030272.jpg,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20915,observation-eb185631-6714-4180-8214-9b7bcb43598d-5,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-5/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4918.PNG,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20917,observation-eb185631-6714-4180-8214-9b7bcb43598d-6,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-6/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4917.PNG,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20919,observation-eb185631-6714-4180-8214-9b7bcb43598d-7,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-7/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4919.PNG,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20927,observation-eb185631-6714-4180-8214-9b7bcb43598d-11,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-11/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4859.jpg,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20933,observation-eb185631-6714-4180-8214-9b7bcb43598d-14,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-14/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4912.PNG,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20935,observation-eb185631-6714-4180-8214-9b7bcb43598d-15,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-15/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4913.PNG,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20937,observation-eb185631-6714-4180-8214-9b7bcb43598d-16,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-16/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4920.PNG,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20941,observation-eb185631-6714-4180-8214-9b7bcb43598d-18,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-18/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4896.JPG,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20943,observation-eb185631-6714-4180-8214-9b7bcb43598d-19,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-19/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4897.JPG,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20945,observation-eb185631-6714-4180-8214-9b7bcb43598d-20,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-20/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4898.JPG,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20949,observation-eb185631-6714-4180-8214-9b7bcb43598d-22,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-22/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4900.JPG,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20957,observation-eb185631-6714-4180-8214-9b7bcb43598d-26,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-26/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4866.jpg,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20959,observation-eb185631-6714-4180-8214-9b7bcb43598d-27,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-27/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4868.jpg,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20961,observation-eb185631-6714-4180-8214-9b7bcb43598d-28,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-28/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4869.jpg,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20963,observation-eb185631-6714-4180-8214-9b7bcb43598d-29,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-29/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4891.jpg,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20977,observation-eb185631-6714-4180-8214-9b7bcb43598d-36,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-36/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4904.JPG,,TRUE, +N1,22241,sortie-eb185631-6714-4180-8214-9b7bcb43598d,https://biolit.fr/sorties/sortie-eb185631-6714-4180-8214-9b7bcb43598d/,Axelle.bllm,,3/15/2021 0:00,14.0000000,16.0:45,48.654490000000,-2.024135000000,,"Saint-Malo, plage du Sillon",20979,observation-eb185631-6714-4180-8214-9b7bcb43598d-37,https://biolit.fr/observations/observation-eb185631-6714-4180-8214-9b7bcb43598d-37/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG-4910.JPG,,TRUE, +N1,22242,sortie-ec44943b-6a77-4830-b3cb-6541b71ffeb9,https://biolit.fr/sorties/sortie-ec44943b-6a77-4830-b3cb-6541b71ffeb9/,CPIE Loire Océane,,7/16/2020 0:00,10.0000000,11.0:15,47.374044000000,-2.560195000000,CPIE Loire Oceane Environnement,Piriac-sur-Mer,20983,observation-ec44943b-6a77-4830-b3cb-6541b71ffeb9,https://biolit.fr/observations/observation-ec44943b-6a77-4830-b3cb-6541b71ffeb9/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/05/fiche 6 le castelli Piriac.jpg,,TRUE, +N1,22243,sortie-a1b281cb-6c23-4623-b46f-109235330f8b,https://biolit.fr/sorties/sortie-a1b281cb-6c23-4623-b46f-109235330f8b/,Les glénans animateurs environnement 2020,,1/28/2020 0:00,11.0000000,11.0000000,47.870024000000,-3.922050000000,,"Plage CAC, Concarneau",20985,observation-a1b281cb-6c23-4623-b46f-109235330f8b,https://biolit.fr/observations/observation-a1b281cb-6c23-4623-b46f-109235330f8b/,,,,https://biolit.fr/wp-content/uploads/2023/05/Fucus denté - gastéropode inconnu-scaled.jpg,,FALSE, +N1,22243,sortie-a1b281cb-6c23-4623-b46f-109235330f8b,https://biolit.fr/sorties/sortie-a1b281cb-6c23-4623-b46f-109235330f8b/,Les glénans animateurs environnement 2020,,1/28/2020 0:00,11.0000000,11.0000000,47.870024000000,-3.922050000000,,"Plage CAC, Concarneau",20987,observation-a1b281cb-6c23-4623-b46f-109235330f8b-2,https://biolit.fr/observations/observation-a1b281cb-6c23-4623-b46f-109235330f8b-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/Fucus denté ponte littorine-scaled.jpg,,FALSE, +N1,22243,sortie-a1b281cb-6c23-4623-b46f-109235330f8b,https://biolit.fr/sorties/sortie-a1b281cb-6c23-4623-b46f-109235330f8b/,Les glénans animateurs environnement 2020,,1/28/2020 0:00,11.0000000,11.0000000,47.870024000000,-3.922050000000,,"Plage CAC, Concarneau",20989,observation-a1b281cb-6c23-4623-b46f-109235330f8b-3,https://biolit.fr/observations/observation-a1b281cb-6c23-4623-b46f-109235330f8b-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/Fucus denté littorine avec des oeufs-scaled.jpg,,FALSE, +N1,22243,sortie-a1b281cb-6c23-4623-b46f-109235330f8b,https://biolit.fr/sorties/sortie-a1b281cb-6c23-4623-b46f-109235330f8b/,Les glénans animateurs environnement 2020,,1/28/2020 0:00,11.0000000,11.0000000,47.870024000000,-3.922050000000,,"Plage CAC, Concarneau",20991,observation-a1b281cb-6c23-4623-b46f-109235330f8b-4,https://biolit.fr/observations/observation-a1b281cb-6c23-4623-b46f-109235330f8b-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/Fucus denté avec moule-scaled.jpg,,FALSE, +N1,22243,sortie-a1b281cb-6c23-4623-b46f-109235330f8b,https://biolit.fr/sorties/sortie-a1b281cb-6c23-4623-b46f-109235330f8b/,Les glénans animateurs environnement 2020,,1/28/2020 0:00,11.0000000,11.0000000,47.870024000000,-3.922050000000,,"Plage CAC, Concarneau",20993,observation-a1b281cb-6c23-4623-b46f-109235330f8b-5,https://biolit.fr/observations/observation-a1b281cb-6c23-4623-b46f-109235330f8b-5/,,,,https://biolit.fr/wp-content/uploads/2023/05/ascophylle noueux vellèle-scaled.jpg,,FALSE, +N1,22244,sortie-b063bf9f-41f3-4a75-a0ae-817a3800b078,https://biolit.fr/sorties/sortie-b063bf9f-41f3-4a75-a0ae-817a3800b078/,enzo2007,,11/05/2019,9.000005,10.000005,43.407860000000,5.057427000000,,plage de ferreieres,20995,observation-b063bf9f-41f3-4a75-a0ae-817a3800b078,https://biolit.fr/observations/observation-b063bf9f-41f3-4a75-a0ae-817a3800b078/,,,,https://biolit.fr/wp-content/uploads/2023/05/plage2.jpg,,FALSE, +N1,22244,sortie-b063bf9f-41f3-4a75-a0ae-817a3800b078,https://biolit.fr/sorties/sortie-b063bf9f-41f3-4a75-a0ae-817a3800b078/,enzo2007,,11/05/2019,9.000005,10.000005,43.407860000000,5.057427000000,,plage de ferreieres,20997,observation-b063bf9f-41f3-4a75-a0ae-817a3800b078-2,https://biolit.fr/observations/observation-b063bf9f-41f3-4a75-a0ae-817a3800b078-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/plage3.jpg,,FALSE, +N1,22244,sortie-b063bf9f-41f3-4a75-a0ae-817a3800b078,https://biolit.fr/sorties/sortie-b063bf9f-41f3-4a75-a0ae-817a3800b078/,enzo2007,,11/05/2019,9.000005,10.000005,43.407860000000,5.057427000000,,plage de ferreieres,20999,observation-b063bf9f-41f3-4a75-a0ae-817a3800b078-3,https://biolit.fr/observations/observation-b063bf9f-41f3-4a75-a0ae-817a3800b078-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/plage6.jpg,,FALSE, +N1,22244,sortie-b063bf9f-41f3-4a75-a0ae-817a3800b078,https://biolit.fr/sorties/sortie-b063bf9f-41f3-4a75-a0ae-817a3800b078/,enzo2007,,11/05/2019,9.000005,10.000005,43.407860000000,5.057427000000,,plage de ferreieres,21001,observation-b063bf9f-41f3-4a75-a0ae-817a3800b078-4,https://biolit.fr/observations/observation-b063bf9f-41f3-4a75-a0ae-817a3800b078-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/plage11.jpg,,FALSE, +N1,22245,sortie-dad4c959-8e2e-42d8-a74c-d6aa26bda79c,https://biolit.fr/sorties/sortie-dad4c959-8e2e-42d8-a74c-d6aa26bda79c/,Emeline 44240,,08/05/2019,17.0000000,17.0:45,47.489315000000,-2.821097000000,,"Plage de kercambre,56730,Saint-Glidas-De-Rhuys,France",21003,observation-dad4c959-8e2e-42d8-a74c-d6aa26bda79c,https://biolit.fr/observations/observation-dad4c959-8e2e-42d8-a74c-d6aa26bda79c/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/Algue brune.png,,TRUE, +N1,22246,sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9,https://biolit.fr/sorties/sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9/,laetimiq,,07/04/2019,17.0000000,17.0000000,48.640085000000,-2.072088000000,Planète Mer,Plage de Saint-Enogat,21005,observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9,https://biolit.fr/observations/observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P7040085-scaled.jpg,,TRUE, +N1,22246,sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9,https://biolit.fr/sorties/sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9/,laetimiq,,07/04/2019,17.0000000,17.0000000,48.640085000000,-2.072088000000,Planète Mer,Plage de Saint-Enogat,21007,observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-2,https://biolit.fr/observations/observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-2/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P7040087-scaled.jpg,,TRUE, +N1,22246,sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9,https://biolit.fr/sorties/sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9/,laetimiq,,07/04/2019,17.0000000,17.0000000,48.640085000000,-2.072088000000,Planète Mer,Plage de Saint-Enogat,21009,observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-3,https://biolit.fr/observations/observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-3/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P7040090-scaled.jpg,,TRUE, +N1,22246,sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9,https://biolit.fr/sorties/sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9/,laetimiq,,07/04/2019,17.0000000,17.0000000,48.640085000000,-2.072088000000,Planète Mer,Plage de Saint-Enogat,21011,observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-4,https://biolit.fr/observations/observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P7040091-scaled.jpg,,TRUE, +N1,22246,sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9,https://biolit.fr/sorties/sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9/,laetimiq,,07/04/2019,17.0000000,17.0000000,48.640085000000,-2.072088000000,Planète Mer,Plage de Saint-Enogat,21013,observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-5,https://biolit.fr/observations/observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-5/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P7040094-scaled.jpg,,TRUE, +N1,22246,sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9,https://biolit.fr/sorties/sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9/,laetimiq,,07/04/2019,17.0000000,17.0000000,48.640085000000,-2.072088000000,Planète Mer,Plage de Saint-Enogat,21015,observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-6,https://biolit.fr/observations/observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-6/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P7040095-scaled.jpg,,TRUE, +N1,22246,sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9,https://biolit.fr/sorties/sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9/,laetimiq,,07/04/2019,17.0000000,17.0000000,48.640085000000,-2.072088000000,Planète Mer,Plage de Saint-Enogat,21017,observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-7,https://biolit.fr/observations/observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-7/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P7040096-scaled.jpg,,TRUE, +N1,22246,sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9,https://biolit.fr/sorties/sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9/,laetimiq,,07/04/2019,17.0000000,17.0000000,48.640085000000,-2.072088000000,Planète Mer,Plage de Saint-Enogat,21019,observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-8,https://biolit.fr/observations/observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-8/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P7040097-scaled.jpg,,TRUE, +N1,22246,sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9,https://biolit.fr/sorties/sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9/,laetimiq,,07/04/2019,17.0000000,17.0000000,48.640085000000,-2.072088000000,Planète Mer,Plage de Saint-Enogat,21021,observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-9,https://biolit.fr/observations/observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-9/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P7040098-scaled.jpg,,TRUE, +N1,22246,sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9,https://biolit.fr/sorties/sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9/,laetimiq,,07/04/2019,17.0000000,17.0000000,48.640085000000,-2.072088000000,Planète Mer,Plage de Saint-Enogat,21023,observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-10,https://biolit.fr/observations/observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-10/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P7040099-scaled.jpg,,TRUE, +N1,22246,sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9,https://biolit.fr/sorties/sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9/,laetimiq,,07/04/2019,17.0000000,17.0000000,48.640085000000,-2.072088000000,Planète Mer,Plage de Saint-Enogat,21025,observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-11,https://biolit.fr/observations/observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-11/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P7040100-scaled.jpg,,TRUE, +N1,22246,sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9,https://biolit.fr/sorties/sortie-1e44172e-ae0a-4e48-8045-526aaed2c2d9/,laetimiq,,07/04/2019,17.0000000,17.0000000,48.640085000000,-2.072088000000,Planète Mer,Plage de Saint-Enogat,21027,observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-12,https://biolit.fr/observations/observation-1e44172e-ae0a-4e48-8045-526aaed2c2d9-12/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P7040102-scaled.jpg,,TRUE, +N1,22247,sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1,https://biolit.fr/sorties/sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1/,ymf-saillard@orange.fr,,5/25/2019 0:00,14.0:45,16.0000000,47.857757000000,-3.978398000000,,Pointe de Beg Meil,21029,observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1,https://biolit.fr/observations/observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/IMGP1.gif,,TRUE, +N1,22247,sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1,https://biolit.fr/sorties/sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1/,ymf-saillard@orange.fr,,5/25/2019 0:00,14.0:45,16.0000000,47.857757000000,-3.978398000000,,Pointe de Beg Meil,21031,observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1-2,https://biolit.fr/observations/observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1-2/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/IMGP2.gif,,TRUE, +N1,22247,sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1,https://biolit.fr/sorties/sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1/,ymf-saillard@orange.fr,,5/25/2019 0:00,14.0:45,16.0000000,47.857757000000,-3.978398000000,,Pointe de Beg Meil,21033,observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1-3,https://biolit.fr/observations/observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMGP3.gif,,TRUE, +N1,22247,sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1,https://biolit.fr/sorties/sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1/,ymf-saillard@orange.fr,,5/25/2019 0:00,14.0:45,16.0000000,47.857757000000,-3.978398000000,,Pointe de Beg Meil,21035,observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1-4,https://biolit.fr/observations/observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMGP4.gif,,TRUE, +N1,22247,sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1,https://biolit.fr/sorties/sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1/,ymf-saillard@orange.fr,,5/25/2019 0:00,14.0:45,16.0000000,47.857757000000,-3.978398000000,,Pointe de Beg Meil,21037,observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1-5,https://biolit.fr/observations/observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMGP5.gif,,TRUE, +N1,22247,sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1,https://biolit.fr/sorties/sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1/,ymf-saillard@orange.fr,,5/25/2019 0:00,14.0:45,16.0000000,47.857757000000,-3.978398000000,,Pointe de Beg Meil,21039,observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1-6,https://biolit.fr/observations/observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1-6/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMGP9.gif,,FALSE, +N1,22247,sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1,https://biolit.fr/sorties/sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1/,ymf-saillard@orange.fr,,5/25/2019 0:00,14.0:45,16.0000000,47.857757000000,-3.978398000000,,Pointe de Beg Meil,21041,observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1-7,https://biolit.fr/observations/observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1-7/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMGP10.gif,,TRUE, +N1,22247,sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1,https://biolit.fr/sorties/sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1/,ymf-saillard@orange.fr,,5/25/2019 0:00,14.0:45,16.0000000,47.857757000000,-3.978398000000,,Pointe de Beg Meil,21043,observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1-8,https://biolit.fr/observations/observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1-8/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/05/IMGP12.gif,,TRUE, +N1,22247,sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1,https://biolit.fr/sorties/sortie-bad47b2e-4540-4dfb-b3dc-09a7aec166b1/,ymf-saillard@orange.fr,,5/25/2019 0:00,14.0:45,16.0000000,47.857757000000,-3.978398000000,,Pointe de Beg Meil,21045,observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1-9,https://biolit.fr/observations/observation-bad47b2e-4540-4dfb-b3dc-09a7aec166b1-9/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/IMGP13.gif,,TRUE, +N1,22248,sortie-243fc707-bfe8-43f9-b385-893ecfd555a4,https://biolit.fr/sorties/sortie-243fc707-bfe8-43f9-b385-893ecfd555a4/,Environat,,4/24/2019 0:00,14.0000000,16.0000000,45.604199000000,-1.013034000000,Environat,ile aux mouettes,21047,observation-243fc707-bfe8-43f9-b385-893ecfd555a4,https://biolit.fr/observations/observation-243fc707-bfe8-43f9-b385-893ecfd555a4/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_0003_1.JPG,,TRUE, +N1,22248,sortie-243fc707-bfe8-43f9-b385-893ecfd555a4,https://biolit.fr/sorties/sortie-243fc707-bfe8-43f9-b385-893ecfd555a4/,Environat,,4/24/2019 0:00,14.0000000,16.0000000,45.604199000000,-1.013034000000,Environat,ile aux mouettes,21049,observation-243fc707-bfe8-43f9-b385-893ecfd555a4-2,https://biolit.fr/observations/observation-243fc707-bfe8-43f9-b385-893ecfd555a4-2/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_0004_1.JPG,,TRUE, +N1,22248,sortie-243fc707-bfe8-43f9-b385-893ecfd555a4,https://biolit.fr/sorties/sortie-243fc707-bfe8-43f9-b385-893ecfd555a4/,Environat,,4/24/2019 0:00,14.0000000,16.0000000,45.604199000000,-1.013034000000,Environat,ile aux mouettes,21051,observation-243fc707-bfe8-43f9-b385-893ecfd555a4-3,https://biolit.fr/observations/observation-243fc707-bfe8-43f9-b385-893ecfd555a4-3/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_0007_1.JPG,,TRUE, +N1,22248,sortie-243fc707-bfe8-43f9-b385-893ecfd555a4,https://biolit.fr/sorties/sortie-243fc707-bfe8-43f9-b385-893ecfd555a4/,Environat,,4/24/2019 0:00,14.0000000,16.0000000,45.604199000000,-1.013034000000,Environat,ile aux mouettes,21053,observation-243fc707-bfe8-43f9-b385-893ecfd555a4-4,https://biolit.fr/observations/observation-243fc707-bfe8-43f9-b385-893ecfd555a4-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_0011.JPG,,TRUE, +N1,22249,sortie-3efb9b3f-3464-41b5-b64d-0986c403222d,https://biolit.fr/sorties/sortie-3efb9b3f-3464-41b5-b64d-0986c403222d/,LesGlénans,,04/08/2019,13.0000000,14.0000000,47.718992000000,-3.958357000000,,Ile de Penfret,21055,observation-3efb9b3f-3464-41b5-b64d-0986c403222d,https://biolit.fr/observations/observation-3efb9b3f-3464-41b5-b64d-0986c403222d/,,,,https://biolit.fr/wp-content/uploads/2023/05/20190408_132309_0-scaled.jpg,,FALSE, +N1,22249,sortie-3efb9b3f-3464-41b5-b64d-0986c403222d,https://biolit.fr/sorties/sortie-3efb9b3f-3464-41b5-b64d-0986c403222d/,LesGlénans,,04/08/2019,13.0000000,14.0000000,47.718992000000,-3.958357000000,,Ile de Penfret,21057,observation-3efb9b3f-3464-41b5-b64d-0986c403222d-2,https://biolit.fr/observations/observation-3efb9b3f-3464-41b5-b64d-0986c403222d-2/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20190408_134305_0-scaled.jpg,,TRUE, +N1,22249,sortie-3efb9b3f-3464-41b5-b64d-0986c403222d,https://biolit.fr/sorties/sortie-3efb9b3f-3464-41b5-b64d-0986c403222d/,LesGlénans,,04/08/2019,13.0000000,14.0000000,47.718992000000,-3.958357000000,,Ile de Penfret,21059,observation-3efb9b3f-3464-41b5-b64d-0986c403222d-3,https://biolit.fr/observations/observation-3efb9b3f-3464-41b5-b64d-0986c403222d-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20190408_134314_0-scaled.jpg,,TRUE, +N1,22250,sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144,https://biolit.fr/sorties/sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869639000000,-3.923713000000,,"concarneau, estran rocheux de la corniche",21061,observation-bd1cf7c2-6141-47c1-9a1e-e40922677144,https://biolit.fr/observations/observation-bd1cf7c2-6141-47c1-9a1e-e40922677144/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190421_121314-scaled.jpg,,FALSE, +N1,22250,sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144,https://biolit.fr/sorties/sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869639000000,-3.923713000000,,"concarneau, estran rocheux de la corniche",21063,observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-2,https://biolit.fr/observations/observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-2/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190421_123158-scaled.jpg,,TRUE, +N1,22250,sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144,https://biolit.fr/sorties/sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869639000000,-3.923713000000,,"concarneau, estran rocheux de la corniche",21065,observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-3,https://biolit.fr/observations/observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-3/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190421_123121-scaled.jpg,,TRUE, +N1,22250,sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144,https://biolit.fr/sorties/sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869639000000,-3.923713000000,,"concarneau, estran rocheux de la corniche",21067,observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-4,https://biolit.fr/observations/observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-4/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190421_123255-scaled.jpg,,TRUE, +N1,22250,sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144,https://biolit.fr/sorties/sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869639000000,-3.923713000000,,"concarneau, estran rocheux de la corniche",21069,observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-5,https://biolit.fr/observations/observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-5/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190421_123515-scaled.jpg,,TRUE, +N1,22250,sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144,https://biolit.fr/sorties/sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869639000000,-3.923713000000,,"concarneau, estran rocheux de la corniche",21071,observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-6,https://biolit.fr/observations/observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-6/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190421_124650-scaled.jpg,,TRUE, +N1,22250,sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144,https://biolit.fr/sorties/sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869639000000,-3.923713000000,,"concarneau, estran rocheux de la corniche",21073,observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-7,https://biolit.fr/observations/observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-7/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190421_124826-scaled.jpg,,FALSE, +N1,22250,sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144,https://biolit.fr/sorties/sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869639000000,-3.923713000000,,"concarneau, estran rocheux de la corniche",21075,observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-8,https://biolit.fr/observations/observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-8/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190421_125248-scaled.jpg,,TRUE, +N1,22250,sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144,https://biolit.fr/sorties/sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869639000000,-3.923713000000,,"concarneau, estran rocheux de la corniche",21077,observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-9,https://biolit.fr/observations/observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-9/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190421_125355-scaled.jpg,,TRUE, +N1,22250,sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144,https://biolit.fr/sorties/sortie-bd1cf7c2-6141-47c1-9a1e-e40922677144/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869639000000,-3.923713000000,,"concarneau, estran rocheux de la corniche",21079,observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-10,https://biolit.fr/observations/observation-bd1cf7c2-6141-47c1-9a1e-e40922677144-10/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190421_125438-scaled.jpg,,TRUE, +N1,22251,sortie-95fcb117-719f-459a-82d1-b809221dbf2c,https://biolit.fr/sorties/sortie-95fcb117-719f-459a-82d1-b809221dbf2c/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869707000000,-3.923956000000,,"Concarneau, estran rocheux de la corniche",21081,observation-95fcb117-719f-459a-82d1-b809221dbf2c,https://biolit.fr/observations/observation-95fcb117-719f-459a-82d1-b809221dbf2c/,,,,https://biolit.fr/wp-content/uploads/2023/05/Ceinture_pelvetie[1]-scaled.jpg,,FALSE, +N1,22251,sortie-95fcb117-719f-459a-82d1-b809221dbf2c,https://biolit.fr/sorties/sortie-95fcb117-719f-459a-82d1-b809221dbf2c/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869707000000,-3.923956000000,,"Concarneau, estran rocheux de la corniche",21083,observation-95fcb117-719f-459a-82d1-b809221dbf2c-2,https://biolit.fr/observations/observation-95fcb117-719f-459a-82d1-b809221dbf2c-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/Quadra1-scaled.jpg,,FALSE, +N1,22251,sortie-95fcb117-719f-459a-82d1-b809221dbf2c,https://biolit.fr/sorties/sortie-95fcb117-719f-459a-82d1-b809221dbf2c/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869707000000,-3.923956000000,,"Concarneau, estran rocheux de la corniche",21085,observation-95fcb117-719f-459a-82d1-b809221dbf2c-3,https://biolit.fr/observations/observation-95fcb117-719f-459a-82d1-b809221dbf2c-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_0648[1]-scaled.jpg,,TRUE, +N1,22251,sortie-95fcb117-719f-459a-82d1-b809221dbf2c,https://biolit.fr/sorties/sortie-95fcb117-719f-459a-82d1-b809221dbf2c/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869707000000,-3.923956000000,,"Concarneau, estran rocheux de la corniche",21087,observation-95fcb117-719f-459a-82d1-b809221dbf2c-4,https://biolit.fr/observations/observation-95fcb117-719f-459a-82d1-b809221dbf2c-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_0649[1]-scaled.jpg,,TRUE, +N1,22251,sortie-95fcb117-719f-459a-82d1-b809221dbf2c,https://biolit.fr/sorties/sortie-95fcb117-719f-459a-82d1-b809221dbf2c/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869707000000,-3.923956000000,,"Concarneau, estran rocheux de la corniche",21089,observation-95fcb117-719f-459a-82d1-b809221dbf2c-5,https://biolit.fr/observations/observation-95fcb117-719f-459a-82d1-b809221dbf2c-5/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_0650[1]-scaled.jpg,,FALSE, +N1,22251,sortie-95fcb117-719f-459a-82d1-b809221dbf2c,https://biolit.fr/sorties/sortie-95fcb117-719f-459a-82d1-b809221dbf2c/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869707000000,-3.923956000000,,"Concarneau, estran rocheux de la corniche",21091,observation-95fcb117-719f-459a-82d1-b809221dbf2c-6,https://biolit.fr/observations/observation-95fcb117-719f-459a-82d1-b809221dbf2c-6/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_0651[1]-scaled.jpg,,FALSE, +N1,22251,sortie-95fcb117-719f-459a-82d1-b809221dbf2c,https://biolit.fr/sorties/sortie-95fcb117-719f-459a-82d1-b809221dbf2c/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869707000000,-3.923956000000,,"Concarneau, estran rocheux de la corniche",21093,observation-95fcb117-719f-459a-82d1-b809221dbf2c-7,https://biolit.fr/observations/observation-95fcb117-719f-459a-82d1-b809221dbf2c-7/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_0652[1]-scaled.jpg,,FALSE, +N1,22251,sortie-95fcb117-719f-459a-82d1-b809221dbf2c,https://biolit.fr/sorties/sortie-95fcb117-719f-459a-82d1-b809221dbf2c/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869707000000,-3.923956000000,,"Concarneau, estran rocheux de la corniche",21095,observation-95fcb117-719f-459a-82d1-b809221dbf2c-8,https://biolit.fr/observations/observation-95fcb117-719f-459a-82d1-b809221dbf2c-8/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_0653[1]-scaled.jpg,,FALSE, +N1,22251,sortie-95fcb117-719f-459a-82d1-b809221dbf2c,https://biolit.fr/sorties/sortie-95fcb117-719f-459a-82d1-b809221dbf2c/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869707000000,-3.923956000000,,"Concarneau, estran rocheux de la corniche",21097,observation-95fcb117-719f-459a-82d1-b809221dbf2c-9,https://biolit.fr/observations/observation-95fcb117-719f-459a-82d1-b809221dbf2c-9/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_0654[1]-scaled.jpg,,FALSE, +N1,22251,sortie-95fcb117-719f-459a-82d1-b809221dbf2c,https://biolit.fr/sorties/sortie-95fcb117-719f-459a-82d1-b809221dbf2c/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869707000000,-3.923956000000,,"Concarneau, estran rocheux de la corniche",21099,observation-95fcb117-719f-459a-82d1-b809221dbf2c-10,https://biolit.fr/observations/observation-95fcb117-719f-459a-82d1-b809221dbf2c-10/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_0655[1]-scaled.jpg,,FALSE, +N1,22251,sortie-95fcb117-719f-459a-82d1-b809221dbf2c,https://biolit.fr/sorties/sortie-95fcb117-719f-459a-82d1-b809221dbf2c/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869707000000,-3.923956000000,,"Concarneau, estran rocheux de la corniche",21101,observation-95fcb117-719f-459a-82d1-b809221dbf2c-11,https://biolit.fr/observations/observation-95fcb117-719f-459a-82d1-b809221dbf2c-11/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_0656[1]-scaled.jpg,,FALSE, +N1,22251,sortie-95fcb117-719f-459a-82d1-b809221dbf2c,https://biolit.fr/sorties/sortie-95fcb117-719f-459a-82d1-b809221dbf2c/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869707000000,-3.923956000000,,"Concarneau, estran rocheux de la corniche",21103,observation-95fcb117-719f-459a-82d1-b809221dbf2c-12,https://biolit.fr/observations/observation-95fcb117-719f-459a-82d1-b809221dbf2c-12/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_0657[1]-scaled.jpg,,FALSE, +N1,22251,sortie-95fcb117-719f-459a-82d1-b809221dbf2c,https://biolit.fr/sorties/sortie-95fcb117-719f-459a-82d1-b809221dbf2c/,LesGlénans,,4/21/2019 0:00,12.0000000,13.0000000,47.869707000000,-3.923956000000,,"Concarneau, estran rocheux de la corniche",21105,observation-95fcb117-719f-459a-82d1-b809221dbf2c-13,https://biolit.fr/observations/observation-95fcb117-719f-459a-82d1-b809221dbf2c-13/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_0658[1]-scaled.jpg,,FALSE, +N1,22252,sortie-6aea2b33-ef4e-47e6-976b-08ead2560d06,https://biolit.fr/sorties/sortie-6aea2b33-ef4e-47e6-976b-08ead2560d06/,DidierB,,04/08/2019,13.0000000,14.0000000,47.71889500000,-3.95840000000,,estran Ouest Île de Penfret,21107,observation-6aea2b33-ef4e-47e6-976b-08ead2560d06,https://biolit.fr/observations/observation-6aea2b33-ef4e-47e6-976b-08ead2560d06/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/_MG_2881.thumb_-scaled.jpg,,TRUE, +N1,22252,sortie-6aea2b33-ef4e-47e6-976b-08ead2560d06,https://biolit.fr/sorties/sortie-6aea2b33-ef4e-47e6-976b-08ead2560d06/,DidierB,,04/08/2019,13.0000000,14.0000000,47.71889500000,-3.95840000000,,estran Ouest Île de Penfret,21109,observation-6aea2b33-ef4e-47e6-976b-08ead2560d06-2,https://biolit.fr/observations/observation-6aea2b33-ef4e-47e6-976b-08ead2560d06-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/_MG_2882.thumb_-scaled.jpg,,TRUE, +N1,22252,sortie-6aea2b33-ef4e-47e6-976b-08ead2560d06,https://biolit.fr/sorties/sortie-6aea2b33-ef4e-47e6-976b-08ead2560d06/,DidierB,,04/08/2019,13.0000000,14.0000000,47.71889500000,-3.95840000000,,estran Ouest Île de Penfret,21111,observation-6aea2b33-ef4e-47e6-976b-08ead2560d06-3,https://biolit.fr/observations/observation-6aea2b33-ef4e-47e6-976b-08ead2560d06-3/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/_MG_2884.thumb_-scaled.jpg,,TRUE, +N1,22252,sortie-6aea2b33-ef4e-47e6-976b-08ead2560d06,https://biolit.fr/sorties/sortie-6aea2b33-ef4e-47e6-976b-08ead2560d06/,DidierB,,04/08/2019,13.0000000,14.0000000,47.71889500000,-3.95840000000,,estran Ouest Île de Penfret,21113,observation-6aea2b33-ef4e-47e6-976b-08ead2560d06-4,https://biolit.fr/observations/observation-6aea2b33-ef4e-47e6-976b-08ead2560d06-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/_MG_2885.thumb_-scaled.jpg,,TRUE, +N1,22253,sortie-7ea6aa41-0725-4931-a0aa-710b63aab1f7,https://biolit.fr/sorties/sortie-7ea6aa41-0725-4931-a0aa-710b63aab1f7/,DidierB,,04/08/2019,13.0000000,14.0000000,44.534868000000,-4.380601000000,,estran Ouest Île de Penfret,21115,observation-7ea6aa41-0725-4931-a0aa-710b63aab1f7,https://biolit.fr/observations/observation-7ea6aa41-0725-4931-a0aa-710b63aab1f7/,,,,https://biolit.fr/wp-content/uploads/2023/05/_MG_2872.thumb_-scaled.jpg,,FALSE, +N1,22253,sortie-7ea6aa41-0725-4931-a0aa-710b63aab1f7,https://biolit.fr/sorties/sortie-7ea6aa41-0725-4931-a0aa-710b63aab1f7/,DidierB,,04/08/2019,13.0000000,14.0000000,44.534868000000,-4.380601000000,,estran Ouest Île de Penfret,21117,observation-7ea6aa41-0725-4931-a0aa-710b63aab1f7-2,https://biolit.fr/observations/observation-7ea6aa41-0725-4931-a0aa-710b63aab1f7-2/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/_MG_2874.thumb_-scaled.jpg,,TRUE, +N1,22254,sortie-a9e05ad8-e27b-4ce1-8abf-470c0eccf6f6,https://biolit.fr/sorties/sortie-a9e05ad8-e27b-4ce1-8abf-470c0eccf6f6/,collège paul Eluard,,04/04/2019,14.0000000,16.0000000,50.722700000000,1.584975000000,,outreau,21119,observation-a9e05ad8-e27b-4ce1-8abf-470c0eccf6f6,https://biolit.fr/observations/observation-a9e05ad8-e27b-4ce1-8abf-470c0eccf6f6/,,,,https://biolit.fr/wp-content/uploads/2023/05/SVT LILOU 55 B 1-scaled.jpg,,FALSE, +N1,22255,sortie-c7ce037c-5c45-4c29-9308-e69fdab4fd40,https://biolit.fr/sorties/sortie-c7ce037c-5c45-4c29-9308-e69fdab4fd40/,collège paul Eluard,,04/04/2019,14.0:35,16.0:35,50.708262000000,1.570470000000,,outreau ,21121,observation-c7ce037c-5c45-4c29-9308-e69fdab4fd40,https://biolit.fr/observations/observation-c7ce037c-5c45-4c29-9308-e69fdab4fd40/,,,,https://biolit.fr/wp-content/uploads/2023/05/ALICIA 55 5-scaled.jpg,,FALSE, +N1,22256,sortie-c3605018-e54b-4826-8046-e1247166e18a,https://biolit.fr/sorties/sortie-c3605018-e54b-4826-8046-e1247166e18a/,Kevinlf,,04/01/2019,18.0000000,18.0000000,48.659211000000,-4.222885000000,,Plage de Porsmeur,21123,observation-c3605018-e54b-4826-8046-e1247166e18a,https://biolit.fr/observations/observation-c3605018-e54b-4826-8046-e1247166e18a/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190401_184530-min.png,,TRUE, +N1,22257,sortie-d0427a93-cf1b-4923-b537-7896696d530f,https://biolit.fr/sorties/sortie-d0427a93-cf1b-4923-b537-7896696d530f/,Alice BAUDOT,,2/28/2019 0:00,15.0000000,17.0000000,44.652667000000,-1.196266000000,,Perreire,21125,observation-d0427a93-cf1b-4923-b537-7896696d530f,https://biolit.fr/observations/observation-d0427a93-cf1b-4923-b537-7896696d530f/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190228_160721-scaled.jpg,,TRUE, +N1,22257,sortie-d0427a93-cf1b-4923-b537-7896696d530f,https://biolit.fr/sorties/sortie-d0427a93-cf1b-4923-b537-7896696d530f/,Alice BAUDOT,,2/28/2019 0:00,15.0000000,17.0000000,44.652667000000,-1.196266000000,,Perreire,21129,observation-d0427a93-cf1b-4923-b537-7896696d530f-3,https://biolit.fr/observations/observation-d0427a93-cf1b-4923-b537-7896696d530f-3/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190228_155446-scaled.jpg,,TRUE, +N1,22257,sortie-d0427a93-cf1b-4923-b537-7896696d530f,https://biolit.fr/sorties/sortie-d0427a93-cf1b-4923-b537-7896696d530f/,Alice BAUDOT,,2/28/2019 0:00,15.0000000,17.0000000,44.652667000000,-1.196266000000,,Perreire,21131,observation-d0427a93-cf1b-4923-b537-7896696d530f-4,https://biolit.fr/observations/observation-d0427a93-cf1b-4923-b537-7896696d530f-4/,Tritia neritea,Cyclope néritoïde,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190228_160025-scaled.jpg,,TRUE, +N1,22257,sortie-d0427a93-cf1b-4923-b537-7896696d530f,https://biolit.fr/sorties/sortie-d0427a93-cf1b-4923-b537-7896696d530f/,Alice BAUDOT,,2/28/2019 0:00,15.0000000,17.0000000,44.652667000000,-1.196266000000,,Perreire,21133,observation-d0427a93-cf1b-4923-b537-7896696d530f-5,https://biolit.fr/observations/observation-d0427a93-cf1b-4923-b537-7896696d530f-5/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190228_152531-scaled.jpg,,TRUE, +N1,22257,sortie-d0427a93-cf1b-4923-b537-7896696d530f,https://biolit.fr/sorties/sortie-d0427a93-cf1b-4923-b537-7896696d530f/,Alice BAUDOT,,2/28/2019 0:00,15.0000000,17.0000000,44.652667000000,-1.196266000000,,Perreire,21135,observation-d0427a93-cf1b-4923-b537-7896696d530f-6,https://biolit.fr/observations/observation-d0427a93-cf1b-4923-b537-7896696d530f-6/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190228_160447-scaled.jpg,,TRUE, +N1,22257,sortie-d0427a93-cf1b-4923-b537-7896696d530f,https://biolit.fr/sorties/sortie-d0427a93-cf1b-4923-b537-7896696d530f/,Alice BAUDOT,,2/28/2019 0:00,15.0000000,17.0000000,44.652667000000,-1.196266000000,,Perreire,21137,observation-d0427a93-cf1b-4923-b537-7896696d530f-7,https://biolit.fr/observations/observation-d0427a93-cf1b-4923-b537-7896696d530f-7/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190228_160019-scaled.jpg,,TRUE, +N1,22257,sortie-d0427a93-cf1b-4923-b537-7896696d530f,https://biolit.fr/sorties/sortie-d0427a93-cf1b-4923-b537-7896696d530f/,Alice BAUDOT,,2/28/2019 0:00,15.0000000,17.0000000,44.652667000000,-1.196266000000,,Perreire,21139,observation-d0427a93-cf1b-4923-b537-7896696d530f-8,https://biolit.fr/observations/observation-d0427a93-cf1b-4923-b537-7896696d530f-8/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20190228_151309-scaled.jpg,,TRUE, +N1,22258,sortie-40aaad65-7ccf-455c-8bd9-6fe4983926c9,https://biolit.fr/sorties/sortie-40aaad65-7ccf-455c-8bd9-6fe4983926c9/,Copépode56,,02/05/2019,11.0000000,12.0000000,47.527773000000,-3.152926000000,,"Plage du foso, Saint-Pierre Quiberon",21141,observation-40aaad65-7ccf-455c-8bd9-6fe4983926c9,https://biolit.fr/observations/observation-40aaad65-7ccf-455c-8bd9-6fe4983926c9/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Foso.omb_-scaled.jpg,,TRUE, +N1,22259,sortie-54733e27-05e2-4ddb-8519-24ba1dc5de94,https://biolit.fr/sorties/sortie-54733e27-05e2-4ddb-8519-24ba1dc5de94/,Copépode56,,02/05/2019,11.0000000,12.0000000,47.527781000000,-3.152983000000,,"Plage du foso, Saint-Pierre Quiberon",21143,observation-54733e27-05e2-4ddb-8519-24ba1dc5de94,https://biolit.fr/observations/observation-54733e27-05e2-4ddb-8519-24ba1dc5de94/,Mastocarpus stellatus,Gigartine,,https://biolit.fr/wp-content/uploads/2023/05/Foso.Chondrus.jpg,,TRUE, +N1,22260,sortie-53876800-5851-43c1-9794-f3f0fb4d2a89,https://biolit.fr/sorties/sortie-53876800-5851-43c1-9794-f3f0fb4d2a89/,Copépode56,,02/05/2019,11.0000000,12.0000000,47.527714000000,-3.153076000000,,"Plage du foso, Saint-Pierre Quiberon",21145,observation-53876800-5851-43c1-9794-f3f0fb4d2a89,https://biolit.fr/observations/observation-53876800-5851-43c1-9794-f3f0fb4d2a89/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Foso.L.Obtusata.jpg,,TRUE, +N1,22261,sortie-e0ec61ec-70ab-46ad-9e10-96c9c9f5ea1f,https://biolit.fr/sorties/sortie-e0ec61ec-70ab-46ad-9e10-96c9c9f5ea1f/,Environat,,1/13/2019 0:00,14.0000000,14.0000000,45.570293000000,-0.97680000000,,plage de l'Arnèche,21147,observation-e0ec61ec-70ab-46ad-9e10-96c9c9f5ea1f,https://biolit.fr/observations/observation-e0ec61ec-70ab-46ad-9e10-96c9c9f5ea1f/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSC_0003_0-rotated.jpg,,FALSE, +N1,22261,sortie-e0ec61ec-70ab-46ad-9e10-96c9c9f5ea1f,https://biolit.fr/sorties/sortie-e0ec61ec-70ab-46ad-9e10-96c9c9f5ea1f/,Environat,,1/13/2019 0:00,14.0000000,14.0000000,45.570293000000,-0.97680000000,,plage de l'Arnèche,21149,observation-e0ec61ec-70ab-46ad-9e10-96c9c9f5ea1f-2,https://biolit.fr/observations/observation-e0ec61ec-70ab-46ad-9e10-96c9c9f5ea1f-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSC_0007_0-rotated.jpg,,FALSE, +N1,22261,sortie-e0ec61ec-70ab-46ad-9e10-96c9c9f5ea1f,https://biolit.fr/sorties/sortie-e0ec61ec-70ab-46ad-9e10-96c9c9f5ea1f/,Environat,,1/13/2019 0:00,14.0000000,14.0000000,45.570293000000,-0.97680000000,,plage de l'Arnèche,21151,observation-e0ec61ec-70ab-46ad-9e10-96c9c9f5ea1f-3,https://biolit.fr/observations/observation-e0ec61ec-70ab-46ad-9e10-96c9c9f5ea1f-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSC_0012-rotated.jpg,,FALSE, +N1,22262,sortie-ea8fb374-de5b-4aad-a40d-13afd236b7b7,https://biolit.fr/sorties/sortie-ea8fb374-de5b-4aad-a40d-13afd236b7b7/,Guillaume D,,01/07/2019,10.0000000,12.0000000,46.110365000000,-1.139048000000,,"Angoulins, Pointe du Chay",21153,observation-ea8fb374-de5b-4aad-a40d-13afd236b7b7,https://biolit.fr/observations/observation-ea8fb374-de5b-4aad-a40d-13afd236b7b7/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20190107_111213_0-scaled.jpg,,TRUE, +N1,22262,sortie-ea8fb374-de5b-4aad-a40d-13afd236b7b7,https://biolit.fr/sorties/sortie-ea8fb374-de5b-4aad-a40d-13afd236b7b7/,Guillaume D,,01/07/2019,10.0000000,12.0000000,46.110365000000,-1.139048000000,,"Angoulins, Pointe du Chay",21155,observation-ea8fb374-de5b-4aad-a40d-13afd236b7b7-2,https://biolit.fr/observations/observation-ea8fb374-de5b-4aad-a40d-13afd236b7b7-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20190107_111233-scaled.jpg,,TRUE, +N1,22262,sortie-ea8fb374-de5b-4aad-a40d-13afd236b7b7,https://biolit.fr/sorties/sortie-ea8fb374-de5b-4aad-a40d-13afd236b7b7/,Guillaume D,,01/07/2019,10.0000000,12.0000000,46.110365000000,-1.139048000000,,"Angoulins, Pointe du Chay",21157,observation-ea8fb374-de5b-4aad-a40d-13afd236b7b7-3,https://biolit.fr/observations/observation-ea8fb374-de5b-4aad-a40d-13afd236b7b7-3/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20190107_112947-scaled.jpg,,TRUE, +N1,22262,sortie-ea8fb374-de5b-4aad-a40d-13afd236b7b7,https://biolit.fr/sorties/sortie-ea8fb374-de5b-4aad-a40d-13afd236b7b7/,Guillaume D,,01/07/2019,10.0000000,12.0000000,46.110365000000,-1.139048000000,,"Angoulins, Pointe du Chay",21159,observation-ea8fb374-de5b-4aad-a40d-13afd236b7b7-4,https://biolit.fr/observations/observation-ea8fb374-de5b-4aad-a40d-13afd236b7b7-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20190107_113006-scaled.jpg,,TRUE, +N1,22262,sortie-ea8fb374-de5b-4aad-a40d-13afd236b7b7,https://biolit.fr/sorties/sortie-ea8fb374-de5b-4aad-a40d-13afd236b7b7/,Guillaume D,,01/07/2019,10.0000000,12.0000000,46.110365000000,-1.139048000000,,"Angoulins, Pointe du Chay",21161,observation-ea8fb374-de5b-4aad-a40d-13afd236b7b7-5,https://biolit.fr/observations/observation-ea8fb374-de5b-4aad-a40d-13afd236b7b7-5/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20190107_113953-scaled.jpg,,TRUE, +N1,22262,sortie-ea8fb374-de5b-4aad-a40d-13afd236b7b7,https://biolit.fr/sorties/sortie-ea8fb374-de5b-4aad-a40d-13afd236b7b7/,Guillaume D,,01/07/2019,10.0000000,12.0000000,46.110365000000,-1.139048000000,,"Angoulins, Pointe du Chay",21163,observation-ea8fb374-de5b-4aad-a40d-13afd236b7b7-6,https://biolit.fr/observations/observation-ea8fb374-de5b-4aad-a40d-13afd236b7b7-6/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20190107_114003-scaled.jpg,,TRUE, +N1,22263,sortie-383f43bc-16f9-41e3-ae1d-ebd7dc85e6c6,https://biolit.fr/sorties/sortie-383f43bc-16f9-41e3-ae1d-ebd7dc85e6c6/,Classes 6A 6B 6C,,10/01/2018,14.000005,15.0000000,46.532391000000,0.771987000000,,"Logonna Daoulas, Moulin Mer",21165,observation-383f43bc-16f9-41e3-ae1d-ebd7dc85e6c6,https://biolit.fr/observations/observation-383f43bc-16f9-41e3-ae1d-ebd7dc85e6c6/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/05/IMG_0060 2-scaled.jpg,,TRUE, +N1,22264,sortie-9a583492-0240-4483-ae0e-caa65ea5f8d9,https://biolit.fr/sorties/sortie-9a583492-0240-4483-ae0e-caa65ea5f8d9/,Environat,,9/26/2018 0:00,10.0000000,12.0000000,45.630364000000,-1.064586000000,,saint sordelin,21167,observation-9a583492-0240-4483-ae0e-caa65ea5f8d9,https://biolit.fr/observations/observation-9a583492-0240-4483-ae0e-caa65ea5f8d9/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN0089bd.JPG,,TRUE, +N1,22264,sortie-9a583492-0240-4483-ae0e-caa65ea5f8d9,https://biolit.fr/sorties/sortie-9a583492-0240-4483-ae0e-caa65ea5f8d9/,Environat,,9/26/2018 0:00,10.0000000,12.0000000,45.630364000000,-1.064586000000,,saint sordelin,21169,observation-9a583492-0240-4483-ae0e-caa65ea5f8d9-2,https://biolit.fr/observations/observation-9a583492-0240-4483-ae0e-caa65ea5f8d9-2/,Calyptraea chinensis,Chapeau chinois,,https://biolit.fr/wp-content/uploads/2023/05/DSCN0095bd.JPG,,TRUE, +N1,22264,sortie-9a583492-0240-4483-ae0e-caa65ea5f8d9,https://biolit.fr/sorties/sortie-9a583492-0240-4483-ae0e-caa65ea5f8d9/,Environat,,9/26/2018 0:00,10.0000000,12.0000000,45.630364000000,-1.064586000000,,saint sordelin,21171,observation-9a583492-0240-4483-ae0e-caa65ea5f8d9-3,https://biolit.fr/observations/observation-9a583492-0240-4483-ae0e-caa65ea5f8d9-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN0091bd.JPG,,TRUE, +N1,22264,sortie-9a583492-0240-4483-ae0e-caa65ea5f8d9,https://biolit.fr/sorties/sortie-9a583492-0240-4483-ae0e-caa65ea5f8d9/,Environat,,9/26/2018 0:00,10.0000000,12.0000000,45.630364000000,-1.064586000000,,saint sordelin,21173,observation-9a583492-0240-4483-ae0e-caa65ea5f8d9-4,https://biolit.fr/observations/observation-9a583492-0240-4483-ae0e-caa65ea5f8d9-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN0079bd.JPG,,FALSE, +N1,22265,sortie-1834e505-234b-4e6c-9e6f-859bbc4b95cb,https://biolit.fr/sorties/sortie-1834e505-234b-4e6c-9e6f-859bbc4b95cb/,Environat,,8/25/2018 0:00,10.0000000,11.0000000,45.603912000000,-1.013275000000,,"ile aux mouettes, saint georges de didonne",21175,observation-1834e505-234b-4e6c-9e6f-859bbc4b95cb,https://biolit.fr/observations/observation-1834e505-234b-4e6c-9e6f-859bbc4b95cb/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN0010.JPG,,FALSE, +N1,22265,sortie-1834e505-234b-4e6c-9e6f-859bbc4b95cb,https://biolit.fr/sorties/sortie-1834e505-234b-4e6c-9e6f-859bbc4b95cb/,Environat,,8/25/2018 0:00,10.0000000,11.0000000,45.603912000000,-1.013275000000,,"ile aux mouettes, saint georges de didonne",21177,observation-1834e505-234b-4e6c-9e6f-859bbc4b95cb-2,https://biolit.fr/observations/observation-1834e505-234b-4e6c-9e6f-859bbc4b95cb-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN0012.JPG,,TRUE, +N1,22265,sortie-1834e505-234b-4e6c-9e6f-859bbc4b95cb,https://biolit.fr/sorties/sortie-1834e505-234b-4e6c-9e6f-859bbc4b95cb/,Environat,,8/25/2018 0:00,10.0000000,11.0000000,45.603912000000,-1.013275000000,,"ile aux mouettes, saint georges de didonne",21179,observation-1834e505-234b-4e6c-9e6f-859bbc4b95cb-3,https://biolit.fr/observations/observation-1834e505-234b-4e6c-9e6f-859bbc4b95cb-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN0028bd.JPG,,TRUE, +N1,22265,sortie-1834e505-234b-4e6c-9e6f-859bbc4b95cb,https://biolit.fr/sorties/sortie-1834e505-234b-4e6c-9e6f-859bbc4b95cb/,Environat,,8/25/2018 0:00,10.0000000,11.0000000,45.603912000000,-1.013275000000,,"ile aux mouettes, saint georges de didonne",21181,observation-1834e505-234b-4e6c-9e6f-859bbc4b95cb-4,https://biolit.fr/observations/observation-1834e505-234b-4e6c-9e6f-859bbc4b95cb-4/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN0030bd.JPG,,TRUE, +N1,22266,sortie-0b51776e-35df-4730-90aa-2dd414c4a6c5,https://biolit.fr/sorties/sortie-0b51776e-35df-4730-90aa-2dd414c4a6c5/,AMi42,,08/09/2018,8.0000000,10.0000000,46.142049000000,-1.171220000000,,"Estran plage des minimes, la Rochelle",21183,observation-0b51776e-35df-4730-90aa-2dd414c4a6c5,https://biolit.fr/observations/observation-0b51776e-35df-4730-90aa-2dd414c4a6c5/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20180809_093846-scaled.jpg,,TRUE, +N1,22266,sortie-0b51776e-35df-4730-90aa-2dd414c4a6c5,https://biolit.fr/sorties/sortie-0b51776e-35df-4730-90aa-2dd414c4a6c5/,AMi42,,08/09/2018,8.0000000,10.0000000,46.142049000000,-1.171220000000,,"Estran plage des minimes, la Rochelle",21185,observation-0b51776e-35df-4730-90aa-2dd414c4a6c5-2,https://biolit.fr/observations/observation-0b51776e-35df-4730-90aa-2dd414c4a6c5-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20180809_100302-scaled.jpg,,TRUE, +N1,22266,sortie-0b51776e-35df-4730-90aa-2dd414c4a6c5,https://biolit.fr/sorties/sortie-0b51776e-35df-4730-90aa-2dd414c4a6c5/,AMi42,,08/09/2018,8.0000000,10.0000000,46.142049000000,-1.171220000000,,"Estran plage des minimes, la Rochelle",21187,observation-0b51776e-35df-4730-90aa-2dd414c4a6c5-3,https://biolit.fr/observations/observation-0b51776e-35df-4730-90aa-2dd414c4a6c5-3/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20180809_094643-scaled.jpg,,TRUE, +N1,22266,sortie-0b51776e-35df-4730-90aa-2dd414c4a6c5,https://biolit.fr/sorties/sortie-0b51776e-35df-4730-90aa-2dd414c4a6c5/,AMi42,,08/09/2018,8.0000000,10.0000000,46.142049000000,-1.171220000000,,"Estran plage des minimes, la Rochelle",21189,observation-0b51776e-35df-4730-90aa-2dd414c4a6c5-4,https://biolit.fr/observations/observation-0b51776e-35df-4730-90aa-2dd414c4a6c5-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20180809_101719-scaled.jpg,,TRUE, +N1,22267,sortie-02de1144-1478-48d2-9b7f-38ce2a9c32c2,https://biolit.fr/sorties/sortie-02de1144-1478-48d2-9b7f-38ce2a9c32c2/,Guillaume D,,07/11/2018,9.0000000,11.0000000,46.110209000000,-1.138931000000,,"Angoulins, Pointe du Chay",21191,observation-02de1144-1478-48d2-9b7f-38ce2a9c32c2,https://biolit.fr/observations/observation-02de1144-1478-48d2-9b7f-38ce2a9c32c2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_8273-scaled.jpg,,TRUE, +N1,22267,sortie-02de1144-1478-48d2-9b7f-38ce2a9c32c2,https://biolit.fr/sorties/sortie-02de1144-1478-48d2-9b7f-38ce2a9c32c2/,Guillaume D,,07/11/2018,9.0000000,11.0000000,46.110209000000,-1.138931000000,,"Angoulins, Pointe du Chay",21193,observation-02de1144-1478-48d2-9b7f-38ce2a9c32c2-2,https://biolit.fr/observations/observation-02de1144-1478-48d2-9b7f-38ce2a9c32c2-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_8275_5mo-scaled.jpg,,TRUE, +N1,22267,sortie-02de1144-1478-48d2-9b7f-38ce2a9c32c2,https://biolit.fr/sorties/sortie-02de1144-1478-48d2-9b7f-38ce2a9c32c2/,Guillaume D,,07/11/2018,9.0000000,11.0000000,46.110209000000,-1.138931000000,,"Angoulins, Pointe du Chay",21195,observation-02de1144-1478-48d2-9b7f-38ce2a9c32c2-3,https://biolit.fr/observations/observation-02de1144-1478-48d2-9b7f-38ce2a9c32c2-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_8278_5mo-scaled.jpg,,TRUE, +N1,22267,sortie-02de1144-1478-48d2-9b7f-38ce2a9c32c2,https://biolit.fr/sorties/sortie-02de1144-1478-48d2-9b7f-38ce2a9c32c2/,Guillaume D,,07/11/2018,9.0000000,11.0000000,46.110209000000,-1.138931000000,,"Angoulins, Pointe du Chay",21197,observation-02de1144-1478-48d2-9b7f-38ce2a9c32c2-4,https://biolit.fr/observations/observation-02de1144-1478-48d2-9b7f-38ce2a9c32c2-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_8279-scaled.jpg,,TRUE, +N1,22267,sortie-02de1144-1478-48d2-9b7f-38ce2a9c32c2,https://biolit.fr/sorties/sortie-02de1144-1478-48d2-9b7f-38ce2a9c32c2/,Guillaume D,,07/11/2018,9.0000000,11.0000000,46.110209000000,-1.138931000000,,"Angoulins, Pointe du Chay",21199,observation-02de1144-1478-48d2-9b7f-38ce2a9c32c2-5,https://biolit.fr/observations/observation-02de1144-1478-48d2-9b7f-38ce2a9c32c2-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_8281-scaled.jpg,,TRUE, +N1,22268,sortie-17cc450a-87f2-4ce9-bd9b-a09a504a33ff,https://biolit.fr/sorties/sortie-17cc450a-87f2-4ce9-bd9b-a09a504a33ff/,polig,,06/06/2018,20.0000000,20.0000000,47.874018000000,-4.120016000000,,port de combrit ste marine ,21201,observation-17cc450a-87f2-4ce9-bd9b-a09a504a33ff,https://biolit.fr/observations/observation-17cc450a-87f2-4ce9-bd9b-a09a504a33ff/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSC_0214.JPG,,FALSE, +N1,22268,sortie-17cc450a-87f2-4ce9-bd9b-a09a504a33ff,https://biolit.fr/sorties/sortie-17cc450a-87f2-4ce9-bd9b-a09a504a33ff/,polig,,06/06/2018,20.0000000,20.0000000,47.874018000000,-4.120016000000,,port de combrit ste marine ,21203,observation-17cc450a-87f2-4ce9-bd9b-a09a504a33ff-2,https://biolit.fr/observations/observation-17cc450a-87f2-4ce9-bd9b-a09a504a33ff-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_0216_0.JPG,,TRUE, +N1,22268,sortie-17cc450a-87f2-4ce9-bd9b-a09a504a33ff,https://biolit.fr/sorties/sortie-17cc450a-87f2-4ce9-bd9b-a09a504a33ff/,polig,,06/06/2018,20.0000000,20.0000000,47.874018000000,-4.120016000000,,port de combrit ste marine ,21205,observation-17cc450a-87f2-4ce9-bd9b-a09a504a33ff-3,https://biolit.fr/observations/observation-17cc450a-87f2-4ce9-bd9b-a09a504a33ff-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_0217.JPG,,TRUE, +N1,22268,sortie-17cc450a-87f2-4ce9-bd9b-a09a504a33ff,https://biolit.fr/sorties/sortie-17cc450a-87f2-4ce9-bd9b-a09a504a33ff/,polig,,06/06/2018,20.0000000,20.0000000,47.874018000000,-4.120016000000,,port de combrit ste marine ,21207,observation-17cc450a-87f2-4ce9-bd9b-a09a504a33ff-4,https://biolit.fr/observations/observation-17cc450a-87f2-4ce9-bd9b-a09a504a33ff-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSC_0221.JPG,,FALSE, +N1,22268,sortie-17cc450a-87f2-4ce9-bd9b-a09a504a33ff,https://biolit.fr/sorties/sortie-17cc450a-87f2-4ce9-bd9b-a09a504a33ff/,polig,,06/06/2018,20.0000000,20.0000000,47.874018000000,-4.120016000000,,port de combrit ste marine ,21209,observation-17cc450a-87f2-4ce9-bd9b-a09a504a33ff-5,https://biolit.fr/observations/observation-17cc450a-87f2-4ce9-bd9b-a09a504a33ff-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_0224.jpg,,TRUE, +N1,22269,sortie-faa62854-5224-44d5-a9f7-aa45ba7adf37,https://biolit.fr/sorties/sortie-faa62854-5224-44d5-a9f7-aa45ba7adf37/,PEP44 La Marjolaine,,5/29/2018 0:00,11.0000000,11.0:15,47.348764000000,-2.518759000000,,la Turballe,21211,observation-faa62854-5224-44d5-a9f7-aa45ba7adf37,https://biolit.fr/observations/observation-faa62854-5224-44d5-a9f7-aa45ba7adf37/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/060.jpg,,TRUE, +N1,22270,sortie-aaef1bcd-5604-4dbd-900f-2dcd4ba0804e,https://biolit.fr/sorties/sortie-aaef1bcd-5604-4dbd-900f-2dcd4ba0804e/,saint louis,,5/27/2018 0:00,10.0000000,11.0000000,45.911519000000,-1.254287000000,,Dolus d'Oleron,21213,observation-aaef1bcd-5604-4dbd-900f-2dcd4ba0804e,https://biolit.fr/observations/observation-aaef1bcd-5604-4dbd-900f-2dcd4ba0804e/,,,,https://biolit.fr/wp-content/uploads/2023/05/20180517_101936-scaled.jpg,,FALSE, +N1,22271,sortie-94b94a5d-7cdf-4c58-b052-baffb0919b46,https://biolit.fr/sorties/sortie-94b94a5d-7cdf-4c58-b052-baffb0919b46/,saint louis,,5/27/2018 0:00,10.0000000,11.0000000,45.911519000000,-1.254287000000,,Dolus d'Oleron,21215,observation-94b94a5d-7cdf-4c58-b052-baffb0919b46,https://biolit.fr/observations/observation-94b94a5d-7cdf-4c58-b052-baffb0919b46/,,,,https://biolit.fr/wp-content/uploads/2023/05/20180517_101936-scaled.jpg,,FALSE, +N1,22272,sortie-5da4761e-62aa-47d7-a9b4-1d9a852d77d8,https://biolit.fr/sorties/sortie-5da4761e-62aa-47d7-a9b4-1d9a852d77d8/,polig,,4/20/2018 0:00,16.0000000,16.0000000,48.624606000000,-4.479657000000,,le zorn plouguerneau,21216,observation-5da4761e-62aa-47d7-a9b4-1d9a852d77d8,https://biolit.fr/observations/observation-5da4761e-62aa-47d7-a9b4-1d9a852d77d8/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_0674.jpg,,TRUE, +N1,22272,sortie-5da4761e-62aa-47d7-a9b4-1d9a852d77d8,https://biolit.fr/sorties/sortie-5da4761e-62aa-47d7-a9b4-1d9a852d77d8/,polig,,4/20/2018 0:00,16.0000000,16.0000000,48.624606000000,-4.479657000000,,le zorn plouguerneau,21218,observation-5da4761e-62aa-47d7-a9b4-1d9a852d77d8-2,https://biolit.fr/observations/observation-5da4761e-62aa-47d7-a9b4-1d9a852d77d8-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_0675_0.JPG,,TRUE, +N1,22272,sortie-5da4761e-62aa-47d7-a9b4-1d9a852d77d8,https://biolit.fr/sorties/sortie-5da4761e-62aa-47d7-a9b4-1d9a852d77d8/,polig,,4/20/2018 0:00,16.0000000,16.0000000,48.624606000000,-4.479657000000,,le zorn plouguerneau,21220,observation-5da4761e-62aa-47d7-a9b4-1d9a852d77d8-3,https://biolit.fr/observations/observation-5da4761e-62aa-47d7-a9b4-1d9a852d77d8-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSC_0677_0.JPG,,FALSE, +N1,22272,sortie-5da4761e-62aa-47d7-a9b4-1d9a852d77d8,https://biolit.fr/sorties/sortie-5da4761e-62aa-47d7-a9b4-1d9a852d77d8/,polig,,4/20/2018 0:00,16.0000000,16.0000000,48.624606000000,-4.479657000000,,le zorn plouguerneau,21222,observation-5da4761e-62aa-47d7-a9b4-1d9a852d77d8-4,https://biolit.fr/observations/observation-5da4761e-62aa-47d7-a9b4-1d9a852d77d8-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_0681.jpg,,TRUE, +N1,22272,sortie-5da4761e-62aa-47d7-a9b4-1d9a852d77d8,https://biolit.fr/sorties/sortie-5da4761e-62aa-47d7-a9b4-1d9a852d77d8/,polig,,4/20/2018 0:00,16.0000000,16.0000000,48.624606000000,-4.479657000000,,le zorn plouguerneau,21224,observation-5da4761e-62aa-47d7-a9b4-1d9a852d77d8-5,https://biolit.fr/observations/observation-5da4761e-62aa-47d7-a9b4-1d9a852d77d8-5/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_0682.jpg,,TRUE, +N1,22273,sortie-1e930f36-d288-4a31-a1b4-eaa5d59e491d,https://biolit.fr/sorties/sortie-1e930f36-d288-4a31-a1b4-eaa5d59e491d/,polig,,4/18/2018 0:00,11.0000000,12.0:15,48.630756000000,-4.533876000000,,la greve blanche plouguerneau,21226,observation-1e930f36-d288-4a31-a1b4-eaa5d59e491d,https://biolit.fr/observations/observation-1e930f36-d288-4a31-a1b4-eaa5d59e491d/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSC_0601.JPG,,FALSE, +N1,22273,sortie-1e930f36-d288-4a31-a1b4-eaa5d59e491d,https://biolit.fr/sorties/sortie-1e930f36-d288-4a31-a1b4-eaa5d59e491d/,polig,,4/18/2018 0:00,11.0000000,12.0:15,48.630756000000,-4.533876000000,,la greve blanche plouguerneau,21228,observation-1e930f36-d288-4a31-a1b4-eaa5d59e491d-2,https://biolit.fr/observations/observation-1e930f36-d288-4a31-a1b4-eaa5d59e491d-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSC_0607.JPG,,FALSE, +N1,22273,sortie-1e930f36-d288-4a31-a1b4-eaa5d59e491d,https://biolit.fr/sorties/sortie-1e930f36-d288-4a31-a1b4-eaa5d59e491d/,polig,,4/18/2018 0:00,11.0000000,12.0:15,48.630756000000,-4.533876000000,,la greve blanche plouguerneau,21230,observation-1e930f36-d288-4a31-a1b4-eaa5d59e491d-3,https://biolit.fr/observations/observation-1e930f36-d288-4a31-a1b4-eaa5d59e491d-3/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_0620.jpg,,TRUE, +N1,22274,sortie-18600084-61fb-422f-8f44-5b5ddb991003,https://biolit.fr/sorties/sortie-18600084-61fb-422f-8f44-5b5ddb991003/,PEP44 La Marjolaine,,04/05/2018,15.000005,15.0:35,47.349021000000,-2.515210000000,,plage de la Bastille,21232,observation-18600084-61fb-422f-8f44-5b5ddb991003,https://biolit.fr/observations/observation-18600084-61fb-422f-8f44-5b5ddb991003/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180405_152125-scaled.jpg,,FALSE, +N1,22274,sortie-18600084-61fb-422f-8f44-5b5ddb991003,https://biolit.fr/sorties/sortie-18600084-61fb-422f-8f44-5b5ddb991003/,PEP44 La Marjolaine,,04/05/2018,15.000005,15.0:35,47.349021000000,-2.515210000000,,plage de la Bastille,21234,observation-18600084-61fb-422f-8f44-5b5ddb991003-2,https://biolit.fr/observations/observation-18600084-61fb-422f-8f44-5b5ddb991003-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180405_151525_1-scaled.jpg,,FALSE, +N1,22274,sortie-18600084-61fb-422f-8f44-5b5ddb991003,https://biolit.fr/sorties/sortie-18600084-61fb-422f-8f44-5b5ddb991003/,PEP44 La Marjolaine,,04/05/2018,15.000005,15.0:35,47.349021000000,-2.515210000000,,plage de la Bastille,21236,observation-18600084-61fb-422f-8f44-5b5ddb991003-3,https://biolit.fr/observations/observation-18600084-61fb-422f-8f44-5b5ddb991003-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180405_150828_1-scaled.jpg,,FALSE, +N1,22275,sortie-12ce3700-c800-4f9f-b91a-5541211555e5,https://biolit.fr/sorties/sortie-12ce3700-c800-4f9f-b91a-5541211555e5/,polig,,04/07/2018,14.0000000,15.0000000,47.795563000000,-4.366589000000,,penmarc'h,21238,observation-12ce3700-c800-4f9f-b91a-5541211555e5,https://biolit.fr/observations/observation-12ce3700-c800-4f9f-b91a-5541211555e5/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_0525_2.jpg,,TRUE, +N1,22275,sortie-12ce3700-c800-4f9f-b91a-5541211555e5,https://biolit.fr/sorties/sortie-12ce3700-c800-4f9f-b91a-5541211555e5/,polig,,04/07/2018,14.0000000,15.0000000,47.795563000000,-4.366589000000,,penmarc'h,21240,observation-12ce3700-c800-4f9f-b91a-5541211555e5-2,https://biolit.fr/observations/observation-12ce3700-c800-4f9f-b91a-5541211555e5-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSC_0526.jpg,,FALSE, +N1,22275,sortie-12ce3700-c800-4f9f-b91a-5541211555e5,https://biolit.fr/sorties/sortie-12ce3700-c800-4f9f-b91a-5541211555e5/,polig,,04/07/2018,14.0000000,15.0000000,47.795563000000,-4.366589000000,,penmarc'h,21242,observation-12ce3700-c800-4f9f-b91a-5541211555e5-3,https://biolit.fr/observations/observation-12ce3700-c800-4f9f-b91a-5541211555e5-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_0492.JPG,,TRUE, +N1,22275,sortie-12ce3700-c800-4f9f-b91a-5541211555e5,https://biolit.fr/sorties/sortie-12ce3700-c800-4f9f-b91a-5541211555e5/,polig,,04/07/2018,14.0000000,15.0000000,47.795563000000,-4.366589000000,,penmarc'h,21244,observation-12ce3700-c800-4f9f-b91a-5541211555e5-4,https://biolit.fr/observations/observation-12ce3700-c800-4f9f-b91a-5541211555e5-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSC_0501.jpg,,FALSE, +N1,22275,sortie-12ce3700-c800-4f9f-b91a-5541211555e5,https://biolit.fr/sorties/sortie-12ce3700-c800-4f9f-b91a-5541211555e5/,polig,,04/07/2018,14.0000000,15.0000000,47.795563000000,-4.366589000000,,penmarc'h,21246,observation-12ce3700-c800-4f9f-b91a-5541211555e5-5,https://biolit.fr/observations/observation-12ce3700-c800-4f9f-b91a-5541211555e5-5/,Littorina compressa,Littorine à lignes noires,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_0502.JPG,,TRUE, +N1,22276,sortie-d1880882-2944-447f-a748-ea743e2850c8,https://biolit.fr/sorties/sortie-d1880882-2944-447f-a748-ea743e2850c8/,collège paul Eluard,,3/26/2018 0:00,13.0000000,14.0000000,50.694058000000,1.56203700000,,outreau plage ningles,21248,observation-d1880882-2944-447f-a748-ea743e2850c8,https://biolit.fr/observations/observation-d1880882-2944-447f-a748-ea743e2850c8/,,,,https://biolit.fr/wp-content/uploads/2023/05/20180326_145925-rotated.jpg,,FALSE, +N1,22276,sortie-d1880882-2944-447f-a748-ea743e2850c8,https://biolit.fr/sorties/sortie-d1880882-2944-447f-a748-ea743e2850c8/,collège paul Eluard,,3/26/2018 0:00,13.0000000,14.0000000,50.694058000000,1.56203700000,,outreau plage ningles,21250,observation-d1880882-2944-447f-a748-ea743e2850c8-2,https://biolit.fr/observations/observation-d1880882-2944-447f-a748-ea743e2850c8-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/20180326_145143-rotated.jpg,,FALSE, +N1,22276,sortie-d1880882-2944-447f-a748-ea743e2850c8,https://biolit.fr/sorties/sortie-d1880882-2944-447f-a748-ea743e2850c8/,collège paul Eluard,,3/26/2018 0:00,13.0000000,14.0000000,50.694058000000,1.56203700000,,outreau plage ningles,21252,observation-d1880882-2944-447f-a748-ea743e2850c8-3,https://biolit.fr/observations/observation-d1880882-2944-447f-a748-ea743e2850c8-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/20180326_144316.jpg,,FALSE, +N1,22277,sortie-5bbd33a9-2114-4c5e-b4a0-337399277f1f,https://biolit.fr/sorties/sortie-5bbd33a9-2114-4c5e-b4a0-337399277f1f/,collège paul Eluard,,3/26/2018 0:00,14.0000000,15.0000000,50.693935000000,1.56214500000,,"Outreau, plage de Ningles ",21254,observation-5bbd33a9-2114-4c5e-b4a0-337399277f1f,https://biolit.fr/observations/observation-5bbd33a9-2114-4c5e-b4a0-337399277f1f/,,,,https://biolit.fr/wp-content/uploads/2023/05/1522072045265.jpg,,FALSE, +N1,22278,sortie-7b1cf0ba-97d6-4567-a5d0-788b71dfc8fd,https://biolit.fr/sorties/sortie-7b1cf0ba-97d6-4567-a5d0-788b71dfc8fd/,collège paul Eluard,,3/26/2018 0:00,14.0000000,15.0000000,50.693935000000,1.56214500000,,"Outreau, plage de Ningles ",21256,observation-7b1cf0ba-97d6-4567-a5d0-788b71dfc8fd,https://biolit.fr/observations/observation-7b1cf0ba-97d6-4567-a5d0-788b71dfc8fd/,,,,https://biolit.fr/wp-content/uploads/2023/05/1522067746603.jpg,,FALSE, +N1,22279,sortie-cafb1931-1549-43db-b5a7-5b61f5256bc9,https://biolit.fr/sorties/sortie-cafb1931-1549-43db-b5a7-5b61f5256bc9/,collège paul Eluard,,3/27/2018 0:00,14.0000000,15.0000000,50.693487000000,1.56214500000,,outreau.plage de ningles,21258,observation-cafb1931-1549-43db-b5a7-5b61f5256bc9,https://biolit.fr/observations/observation-cafb1931-1549-43db-b5a7-5b61f5256bc9/,,,,https://biolit.fr/wp-content/uploads/2023/05/20180327_143655_0-rotated.jpg,,FALSE, +N1,22280,sortie-6025c94a-e86f-4973-b670-05050678e4b1,https://biolit.fr/sorties/sortie-6025c94a-e86f-4973-b670-05050678e4b1/,collège paul Eluard,,3/27/2018 0:00,14.0000000,15.0000000,50.69415100000,1.563979000000,,"outreau, plage de ninge",21260,observation-6025c94a-e86f-4973-b670-05050678e4b1,https://biolit.fr/observations/observation-6025c94a-e86f-4973-b670-05050678e4b1/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1862-scaled.jpg,,FALSE, +N1,22281,sortie-6e2b800d-12d4-4883-b5a4-48d760cdeb38,https://biolit.fr/sorties/sortie-6e2b800d-12d4-4883-b5a4-48d760cdeb38/,collège paul Eluard,,3/27/2018 0:00,14.0000000,15.0000000,50.958838000000,1.594589000000,,"outreau, plage de ningle",21262,observation-6e2b800d-12d4-4883-b5a4-48d760cdeb38,https://biolit.fr/observations/observation-6e2b800d-12d4-4883-b5a4-48d760cdeb38/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1932.JPG,,FALSE, +N1,22281,sortie-6e2b800d-12d4-4883-b5a4-48d760cdeb38,https://biolit.fr/sorties/sortie-6e2b800d-12d4-4883-b5a4-48d760cdeb38/,collège paul Eluard,,3/27/2018 0:00,14.0000000,15.0000000,50.958838000000,1.594589000000,,"outreau, plage de ningle",21264,observation-6e2b800d-12d4-4883-b5a4-48d760cdeb38-2,https://biolit.fr/observations/observation-6e2b800d-12d4-4883-b5a4-48d760cdeb38-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1936-rotated.jpg,,FALSE, +N1,22281,sortie-6e2b800d-12d4-4883-b5a4-48d760cdeb38,https://biolit.fr/sorties/sortie-6e2b800d-12d4-4883-b5a4-48d760cdeb38/,collège paul Eluard,,3/27/2018 0:00,14.0000000,15.0000000,50.958838000000,1.594589000000,,"outreau, plage de ningle",21266,observation-6e2b800d-12d4-4883-b5a4-48d760cdeb38-3,https://biolit.fr/observations/observation-6e2b800d-12d4-4883-b5a4-48d760cdeb38-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1940-rotated.jpg,,FALSE, +N1,22282,sortie-f8a56dc6-9f78-4010-8881-879630899e5e,https://biolit.fr/sorties/sortie-f8a56dc6-9f78-4010-8881-879630899e5e/,collège paul Eluard,,3/27/2018 0:00,14.0000000,15.0000000,50.67337900000,1.567820000000,,"Outreau,plage de ningle ",21268,observation-f8a56dc6-9f78-4010-8881-879630899e5e,https://biolit.fr/observations/observation-f8a56dc6-9f78-4010-8881-879630899e5e/,,,,https://biolit.fr/wp-content/uploads/2023/05/monodonte-scaled.jpg,,FALSE, +N1,22283,sortie-d20a2e8f-83fa-4705-bed1-24cf032bef92,https://biolit.fr/sorties/sortie-d20a2e8f-83fa-4705-bed1-24cf032bef92/,collège paul Eluard,,04/03/2018,14.0000000,15.0000000,50.682251000000,1.566231000000,,"outreau,la plage de ningles",21270,observation-d20a2e8f-83fa-4705-bed1-24cf032bef92,https://biolit.fr/observations/observation-d20a2e8f-83fa-4705-bed1-24cf032bef92/,,,,https://biolit.fr/wp-content/uploads/2023/05/20180327_144113-scaled.jpg,,FALSE, +N1,22283,sortie-d20a2e8f-83fa-4705-bed1-24cf032bef92,https://biolit.fr/sorties/sortie-d20a2e8f-83fa-4705-bed1-24cf032bef92/,collège paul Eluard,,04/03/2018,14.0000000,15.0000000,50.682251000000,1.566231000000,,"outreau,la plage de ningles",21272,observation-d20a2e8f-83fa-4705-bed1-24cf032bef92-2,https://biolit.fr/observations/observation-d20a2e8f-83fa-4705-bed1-24cf032bef92-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20180327_145742-scaled.jpg,,TRUE, +N1,22283,sortie-d20a2e8f-83fa-4705-bed1-24cf032bef92,https://biolit.fr/sorties/sortie-d20a2e8f-83fa-4705-bed1-24cf032bef92/,collège paul Eluard,,04/03/2018,14.0000000,15.0000000,50.682251000000,1.566231000000,,"outreau,la plage de ningles",21274,observation-d20a2e8f-83fa-4705-bed1-24cf032bef92-3,https://biolit.fr/observations/observation-d20a2e8f-83fa-4705-bed1-24cf032bef92-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20180327_151620-scaled.jpg,,TRUE, +N1,22283,sortie-d20a2e8f-83fa-4705-bed1-24cf032bef92,https://biolit.fr/sorties/sortie-d20a2e8f-83fa-4705-bed1-24cf032bef92/,collège paul Eluard,,04/03/2018,14.0000000,15.0000000,50.682251000000,1.566231000000,,"outreau,la plage de ningles",21276,observation-d20a2e8f-83fa-4705-bed1-24cf032bef92-4,https://biolit.fr/observations/observation-d20a2e8f-83fa-4705-bed1-24cf032bef92-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/20180327_143724-scaled.jpg,,FALSE, +N1,22284,sortie-50382179-0099-46bb-b5ad-ca805eee8fdf,https://biolit.fr/sorties/sortie-50382179-0099-46bb-b5ad-ca805eee8fdf/,collège paul Eluard,,3/27/2018 0:00,14.0000000,15.0000000,50.685731000000,1.563389000000,,"outreau,la plage de ningle",21278,observation-50382179-0099-46bb-b5ad-ca805eee8fdf,https://biolit.fr/observations/observation-50382179-0099-46bb-b5ad-ca805eee8fdf/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180327_143901_resized_20180402_050601260_0.jpg,,FALSE, +N1,22284,sortie-50382179-0099-46bb-b5ad-ca805eee8fdf,https://biolit.fr/sorties/sortie-50382179-0099-46bb-b5ad-ca805eee8fdf/,collège paul Eluard,,3/27/2018 0:00,14.0000000,15.0000000,50.685731000000,1.563389000000,,"outreau,la plage de ningle",21280,observation-50382179-0099-46bb-b5ad-ca805eee8fdf-2,https://biolit.fr/observations/observation-50382179-0099-46bb-b5ad-ca805eee8fdf-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180327_145449_resized_20180402_050559187_0.jpg,,FALSE, +N1,22284,sortie-50382179-0099-46bb-b5ad-ca805eee8fdf,https://biolit.fr/sorties/sortie-50382179-0099-46bb-b5ad-ca805eee8fdf/,collège paul Eluard,,3/27/2018 0:00,14.0000000,15.0000000,50.685731000000,1.563389000000,,"outreau,la plage de ningle",21282,observation-50382179-0099-46bb-b5ad-ca805eee8fdf-3,https://biolit.fr/observations/observation-50382179-0099-46bb-b5ad-ca805eee8fdf-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180327_150004_resized_20180402_050558265_1.jpg,,FALSE, +N1,22284,sortie-50382179-0099-46bb-b5ad-ca805eee8fdf,https://biolit.fr/sorties/sortie-50382179-0099-46bb-b5ad-ca805eee8fdf/,collège paul Eluard,,3/27/2018 0:00,14.0000000,15.0000000,50.685731000000,1.563389000000,,"outreau,la plage de ningle",21284,observation-50382179-0099-46bb-b5ad-ca805eee8fdf-4,https://biolit.fr/observations/observation-50382179-0099-46bb-b5ad-ca805eee8fdf-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180327_160155_resized_20180402_050600508.jpg,,FALSE, +N1,22284,sortie-50382179-0099-46bb-b5ad-ca805eee8fdf,https://biolit.fr/sorties/sortie-50382179-0099-46bb-b5ad-ca805eee8fdf/,collège paul Eluard,,3/27/2018 0:00,14.0000000,15.0000000,50.685731000000,1.563389000000,,"outreau,la plage de ningle",21286,observation-50382179-0099-46bb-b5ad-ca805eee8fdf-5,https://biolit.fr/observations/observation-50382179-0099-46bb-b5ad-ca805eee8fdf-5/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180327_160214_resized_20180402_050559760_0.jpg,,FALSE, +N1,22285,sortie-60bd23ec-2e59-42c1-babf-0f774ac86e9a,https://biolit.fr/sorties/sortie-60bd23ec-2e59-42c1-babf-0f774ac86e9a/,collège paul Eluard,,3/27/2018 0:00,14.0000000,15.0000000,50.691907000000,1.562842000000,,"outreu, plage de ningle",21288,observation-60bd23ec-2e59-42c1-babf-0f774ac86e9a,https://biolit.fr/observations/observation-60bd23ec-2e59-42c1-babf-0f774ac86e9a/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0010_0-scaled.jpg,,FALSE, +N1,22285,sortie-60bd23ec-2e59-42c1-babf-0f774ac86e9a,https://biolit.fr/sorties/sortie-60bd23ec-2e59-42c1-babf-0f774ac86e9a/,collège paul Eluard,,3/27/2018 0:00,14.0000000,15.0000000,50.691907000000,1.562842000000,,"outreu, plage de ningle",21290,observation-60bd23ec-2e59-42c1-babf-0f774ac86e9a-2,https://biolit.fr/observations/observation-60bd23ec-2e59-42c1-babf-0f774ac86e9a-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0014_1-scaled.jpg,,FALSE, +N1,22286,sortie-6bb3db68-9a57-4ef8-8a94-82c7012fc14a,https://biolit.fr/sorties/sortie-6bb3db68-9a57-4ef8-8a94-82c7012fc14a/,collège paul Eluard,,3/27/2018 0:00,14.0000000,15.0000000,50.6931910000,1.56223700000,,"outreau, plage de ningles",21292,observation-6bb3db68-9a57-4ef8-8a94-82c7012fc14a,https://biolit.fr/observations/observation-6bb3db68-9a57-4ef8-8a94-82c7012fc14a/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0021_0-scaled.jpg,,FALSE, +N1,22287,sortie-b6f7730a-ff5b-4262-83e7-bbb60ccb664b,https://biolit.fr/sorties/sortie-b6f7730a-ff5b-4262-83e7-bbb60ccb664b/,collège paul Eluard,,04/03/2018,14.0000000,15.0000000,50.69195500000,1.562843000000,,cap d'aleprech,21294,observation-b6f7730a-ff5b-4262-83e7-bbb60ccb664b,https://biolit.fr/observations/observation-b6f7730a-ff5b-4262-83e7-bbb60ccb664b/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0008-scaled.jpg,,FALSE, +N1,22287,sortie-b6f7730a-ff5b-4262-83e7-bbb60ccb664b,https://biolit.fr/sorties/sortie-b6f7730a-ff5b-4262-83e7-bbb60ccb664b/,collège paul Eluard,,04/03/2018,14.0000000,15.0000000,50.69195500000,1.562843000000,,cap d'aleprech,21296,observation-b6f7730a-ff5b-4262-83e7-bbb60ccb664b-2,https://biolit.fr/observations/observation-b6f7730a-ff5b-4262-83e7-bbb60ccb664b-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0009-scaled.jpg,,FALSE, +N1,22287,sortie-b6f7730a-ff5b-4262-83e7-bbb60ccb664b,https://biolit.fr/sorties/sortie-b6f7730a-ff5b-4262-83e7-bbb60ccb664b/,collège paul Eluard,,04/03/2018,14.0000000,15.0000000,50.69195500000,1.562843000000,,cap d'aleprech,21298,observation-b6f7730a-ff5b-4262-83e7-bbb60ccb664b-3,https://biolit.fr/observations/observation-b6f7730a-ff5b-4262-83e7-bbb60ccb664b-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0014_2-scaled.jpg,,FALSE, +N1,22288,sortie-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017,https://biolit.fr/sorties/sortie-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017/,Observe la nature,,04/01/2018,13.0000000,14.0:15,48.815533000000,-3.427140000000,,Plage de Pors-ar-goret perros guirec,21300,observation-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017,https://biolit.fr/observations/observation-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4010572-scaled.jpg,,TRUE, +N1,22288,sortie-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017,https://biolit.fr/sorties/sortie-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017/,Observe la nature,,04/01/2018,13.0000000,14.0:15,48.815533000000,-3.427140000000,,Plage de Pors-ar-goret perros guirec,21302,observation-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017-2,https://biolit.fr/observations/observation-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4010576-scaled.jpg,,TRUE, +N1,22288,sortie-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017,https://biolit.fr/sorties/sortie-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017/,Observe la nature,,04/01/2018,13.0000000,14.0:15,48.815533000000,-3.427140000000,,Plage de Pors-ar-goret perros guirec,21304,observation-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017-3,https://biolit.fr/observations/observation-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017-3/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4010588-scaled.jpg,,TRUE, +N1,22288,sortie-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017,https://biolit.fr/sorties/sortie-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017/,Observe la nature,,04/01/2018,13.0000000,14.0:15,48.815533000000,-3.427140000000,,Plage de Pors-ar-goret perros guirec,21306,observation-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017-4,https://biolit.fr/observations/observation-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017-4/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4010584-scaled.jpg,,TRUE, +N1,22288,sortie-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017,https://biolit.fr/sorties/sortie-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017/,Observe la nature,,04/01/2018,13.0000000,14.0:15,48.815533000000,-3.427140000000,,Plage de Pors-ar-goret perros guirec,21308,observation-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017-5,https://biolit.fr/observations/observation-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017-5/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4010583-scaled.jpg,,TRUE, +N1,22288,sortie-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017,https://biolit.fr/sorties/sortie-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017/,Observe la nature,,04/01/2018,13.0000000,14.0:15,48.815533000000,-3.427140000000,,Plage de Pors-ar-goret perros guirec,21310,observation-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017-6,https://biolit.fr/observations/observation-4425a3fe-0ec5-4f2d-ab73-dde8a19cc017-6/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4010578-scaled.jpg,,TRUE, +N1,22289,sortie-b183972d-ee72-47ca-b909-ac672479dd4b,https://biolit.fr/sorties/sortie-b183972d-ee72-47ca-b909-ac672479dd4b/,collège paul Eluard,,3/26/2018 0:00,14.0000000,15.0000000,50.692196000000,1.562745000000,,"outreau , plage de ningles ",21312,observation-b183972d-ee72-47ca-b909-ac672479dd4b,https://biolit.fr/observations/observation-b183972d-ee72-47ca-b909-ac672479dd4b/,,,,https://biolit.fr/wp-content/uploads/2023/05/photo plage animaux.jpeg,,FALSE, +N1,22290,sortie-4e0558ad-0c60-4f1c-9c4a-60c2bf785d98,https://biolit.fr/sorties/sortie-4e0558ad-0c60-4f1c-9c4a-60c2bf785d98/,collège paul Eluard,,3/26/2018 0:00,14.0000000,15.0000000,50.692087000000,1.562488000000,,"outreau, plage de ningles",21314,observation-4e0558ad-0c60-4f1c-9c4a-60c2bf785d98,https://biolit.fr/observations/observation-4e0558ad-0c60-4f1c-9c4a-60c2bf785d98/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0025-scaled.jpg,,FALSE, +N1,22291,sortie-0d53e9c5-481e-46e4-af07-a258c65c0d0c,https://biolit.fr/sorties/sortie-0d53e9c5-481e-46e4-af07-a258c65c0d0c/,collège paul Eluard,,3/26/2018 0:00,14.0000000,15.0000000,50.707091000000,1.590040000000,,"Outreau, plage de Ningles",21316,observation-0d53e9c5-481e-46e4-af07-a258c65c0d0c,https://biolit.fr/observations/observation-0d53e9c5-481e-46e4-af07-a258c65c0d0c/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_2613_1-scaled.jpg,,FALSE, +N1,22292,sortie-dd3aeb1b-7433-4efd-bfc1-00fc055635c3,https://biolit.fr/sorties/sortie-dd3aeb1b-7433-4efd-bfc1-00fc055635c3/,collège paul Eluard,,3/26/2018 0:00,14.0000000,15.0000000,48.618816000000,5.062835000000,,outreau plage de ningles ,21318,observation-dd3aeb1b-7433-4efd-bfc1-00fc055635c3,https://biolit.fr/observations/observation-dd3aeb1b-7433-4efd-bfc1-00fc055635c3/,,,,https://biolit.fr/wp-content/uploads/2023/05/20180326_143513-scaled.jpg,,FALSE, +N1,22293,sortie-6b448e0f-cfd9-4740-9265-c9eb9b1ac9d2,https://biolit.fr/sorties/sortie-6b448e0f-cfd9-4740-9265-c9eb9b1ac9d2/,collège paul Eluard,,3/26/2018 0:00,14.0000000,15.0000000,46.396180000000,-0.810044000000,,"outreau, plage de Ningles",21320,observation-6b448e0f-cfd9-4740-9265-c9eb9b1ac9d2,https://biolit.fr/observations/observation-6b448e0f-cfd9-4740-9265-c9eb9b1ac9d2/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180326_143642_1-scaled.jpg,,FALSE, +N1,22294,sortie-78be8137-2f4a-4978-b839-20e168dd5024,https://biolit.fr/sorties/sortie-78be8137-2f4a-4978-b839-20e168dd5024/,collège paul Eluard,,3/26/2018 0:00,14.0:25,15.0000000,50.462729000000,2.455642000000,,"Outreau,plage de Ningles",21322,observation-78be8137-2f4a-4978-b839-20e168dd5024,https://biolit.fr/observations/observation-78be8137-2f4a-4978-b839-20e168dd5024/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0021-scaled.jpg,,FALSE, +N1,22295,sortie-44f3d82b-2cbe-4b5f-a2a4-d47428b514ac,https://biolit.fr/sorties/sortie-44f3d82b-2cbe-4b5f-a2a4-d47428b514ac/,Morice,,3/19/2018 0:00,11.0000000,13.0000000,48.641954000000,-2.072184000000,,Saint-Enogat,21324,observation-44f3d82b-2cbe-4b5f-a2a4-d47428b514ac,https://biolit.fr/observations/observation-44f3d82b-2cbe-4b5f-a2a4-d47428b514ac/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_0271.jpg,,TRUE, +N1,22296,sortie-1b7cbda1-c4dd-48da-83f5-23cc241324d8,https://biolit.fr/sorties/sortie-1b7cbda1-c4dd-48da-83f5-23cc241324d8/,Morice,,2/19/2018 0:00,14.0000000,16.0000000,48.643131000000,-2.112364000000,,Pointe du Décollé,21326,observation-1b7cbda1-c4dd-48da-83f5-23cc241324d8,https://biolit.fr/observations/observation-1b7cbda1-c4dd-48da-83f5-23cc241324d8/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20180219_144258-scaled.jpg,,TRUE, +N1,22296,sortie-1b7cbda1-c4dd-48da-83f5-23cc241324d8,https://biolit.fr/sorties/sortie-1b7cbda1-c4dd-48da-83f5-23cc241324d8/,Morice,,2/19/2018 0:00,14.0000000,16.0000000,48.643131000000,-2.112364000000,,Pointe du Décollé,21328,observation-1b7cbda1-c4dd-48da-83f5-23cc241324d8-2,https://biolit.fr/observations/observation-1b7cbda1-c4dd-48da-83f5-23cc241324d8-2/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20180219_144454-scaled.jpg,,TRUE, +N1,22296,sortie-1b7cbda1-c4dd-48da-83f5-23cc241324d8,https://biolit.fr/sorties/sortie-1b7cbda1-c4dd-48da-83f5-23cc241324d8/,Morice,,2/19/2018 0:00,14.0000000,16.0000000,48.643131000000,-2.112364000000,,Pointe du Décollé,21330,observation-1b7cbda1-c4dd-48da-83f5-23cc241324d8-3,https://biolit.fr/observations/observation-1b7cbda1-c4dd-48da-83f5-23cc241324d8-3/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20180219_144603-scaled.jpg,,TRUE, +N1,22296,sortie-1b7cbda1-c4dd-48da-83f5-23cc241324d8,https://biolit.fr/sorties/sortie-1b7cbda1-c4dd-48da-83f5-23cc241324d8/,Morice,,2/19/2018 0:00,14.0000000,16.0000000,48.643131000000,-2.112364000000,,Pointe du Décollé,21332,observation-1b7cbda1-c4dd-48da-83f5-23cc241324d8-4,https://biolit.fr/observations/observation-1b7cbda1-c4dd-48da-83f5-23cc241324d8-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20180219_144619-scaled.jpg,,TRUE, +N1,22296,sortie-1b7cbda1-c4dd-48da-83f5-23cc241324d8,https://biolit.fr/sorties/sortie-1b7cbda1-c4dd-48da-83f5-23cc241324d8/,Morice,,2/19/2018 0:00,14.0000000,16.0000000,48.643131000000,-2.112364000000,,Pointe du Décollé,21334,observation-1b7cbda1-c4dd-48da-83f5-23cc241324d8-5,https://biolit.fr/observations/observation-1b7cbda1-c4dd-48da-83f5-23cc241324d8-5/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20180219_144630-scaled.jpg,,TRUE, +N1,22296,sortie-1b7cbda1-c4dd-48da-83f5-23cc241324d8,https://biolit.fr/sorties/sortie-1b7cbda1-c4dd-48da-83f5-23cc241324d8/,Morice,,2/19/2018 0:00,14.0000000,16.0000000,48.643131000000,-2.112364000000,,Pointe du Décollé,21336,observation-1b7cbda1-c4dd-48da-83f5-23cc241324d8-6,https://biolit.fr/observations/observation-1b7cbda1-c4dd-48da-83f5-23cc241324d8-6/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20180219_144657-scaled.jpg,,TRUE, +N1,22296,sortie-1b7cbda1-c4dd-48da-83f5-23cc241324d8,https://biolit.fr/sorties/sortie-1b7cbda1-c4dd-48da-83f5-23cc241324d8/,Morice,,2/19/2018 0:00,14.0000000,16.0000000,48.643131000000,-2.112364000000,,Pointe du Décollé,21338,observation-1b7cbda1-c4dd-48da-83f5-23cc241324d8-7,https://biolit.fr/observations/observation-1b7cbda1-c4dd-48da-83f5-23cc241324d8-7/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20180219_144750-scaled.jpg,,TRUE, +N1,22296,sortie-1b7cbda1-c4dd-48da-83f5-23cc241324d8,https://biolit.fr/sorties/sortie-1b7cbda1-c4dd-48da-83f5-23cc241324d8/,Morice,,2/19/2018 0:00,14.0000000,16.0000000,48.643131000000,-2.112364000000,,Pointe du Décollé,21340,observation-1b7cbda1-c4dd-48da-83f5-23cc241324d8-8,https://biolit.fr/observations/observation-1b7cbda1-c4dd-48da-83f5-23cc241324d8-8/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20180219_150210-scaled.jpg,,TRUE, +N1,22297,sortie-82c7facf-53ed-4d9d-adba-44bf01daa5ef,https://biolit.fr/sorties/sortie-82c7facf-53ed-4d9d-adba-44bf01daa5ef/,polig,,03/04/2018,11.0000000,11.0000000,47.869788000000,-4.114446000000,,combrit Sainte Marine,21342,observation-82c7facf-53ed-4d9d-adba-44bf01daa5ef,https://biolit.fr/observations/observation-82c7facf-53ed-4d9d-adba-44bf01daa5ef/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1190127 - Version 2.JPG,,TRUE, +N1,22298,sortie-6428f918-89fe-4cf6-8fcd-7cd3b22a45b2,https://biolit.fr/sorties/sortie-6428f918-89fe-4cf6-8fcd-7cd3b22a45b2/,Observe la nature,,03/03/2018,13.0000000,14.0000000,48.815468000000,-3.427204000000,,PORS AR GORET Perros Guirec,21344,observation-6428f918-89fe-4cf6-8fcd-7cd3b22a45b2,https://biolit.fr/observations/observation-6428f918-89fe-4cf6-8fcd-7cd3b22a45b2/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P3030471-scaled.jpg,,TRUE, +N1,22299,sortie-fe2a7929-bafe-494a-a163-953c55220f96,https://biolit.fr/sorties/sortie-fe2a7929-bafe-494a-a163-953c55220f96/,Observe la nature,,03/04/2018,14.0000000,15.0000000,48.830090000000,-3.34679700000,,Le Royau,21346,observation-fe2a7929-bafe-494a-a163-953c55220f96,https://biolit.fr/observations/observation-fe2a7929-bafe-494a-a163-953c55220f96/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P3040491-scaled.jpg,,TRUE, +N1,22300,sortie-671e6ba3-8e79-4234-9d5a-ddaeaeabec9d,https://biolit.fr/sorties/sortie-671e6ba3-8e79-4234-9d5a-ddaeaeabec9d/,Morice,,03/02/2018,12.0000000,14.0000000,47.351086000000,-2.51817300000,,Plage de la Bastille,21348,observation-671e6ba3-8e79-4234-9d5a-ddaeaeabec9d,https://biolit.fr/observations/observation-671e6ba3-8e79-4234-9d5a-ddaeaeabec9d/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC04899.JPG,,TRUE, +N1,22300,sortie-671e6ba3-8e79-4234-9d5a-ddaeaeabec9d,https://biolit.fr/sorties/sortie-671e6ba3-8e79-4234-9d5a-ddaeaeabec9d/,Morice,,03/02/2018,12.0000000,14.0000000,47.351086000000,-2.51817300000,,Plage de la Bastille,21350,observation-671e6ba3-8e79-4234-9d5a-ddaeaeabec9d-2,https://biolit.fr/observations/observation-671e6ba3-8e79-4234-9d5a-ddaeaeabec9d-2/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC04913-rotated.jpg,,TRUE, +N1,22301,sortie-ad3497f1-3876-4038-a681-8dfcfec1d6b3,https://biolit.fr/sorties/sortie-ad3497f1-3876-4038-a681-8dfcfec1d6b3/,RIEM,,02/03/2018,15.0000000,15.0000000,47.493108000000,-2.681668000000,,PENVINS ,21352,observation-ad3497f1-3876-4038-a681-8dfcfec1d6b3,https://biolit.fr/observations/observation-ad3497f1-3876-4038-a681-8dfcfec1d6b3/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1040339.JPG,,FALSE, +N1,22301,sortie-ad3497f1-3876-4038-a681-8dfcfec1d6b3,https://biolit.fr/sorties/sortie-ad3497f1-3876-4038-a681-8dfcfec1d6b3/,RIEM,,02/03/2018,15.0000000,15.0000000,47.493108000000,-2.681668000000,,PENVINS ,21354,observation-ad3497f1-3876-4038-a681-8dfcfec1d6b3-2,https://biolit.fr/observations/observation-ad3497f1-3876-4038-a681-8dfcfec1d6b3-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1040341.JPG,,TRUE, +N1,22302,sortie-68f1097c-c75b-49a2-af6f-18d2e9f40fb9,https://biolit.fr/sorties/sortie-68f1097c-c75b-49a2-af6f-18d2e9f40fb9/,collège paul Eluard,,01/11/2018,13.0000000,16.0:15,50.687121000000,1.563111000000,,Plage de ningle,21356,observation-68f1097c-c75b-49a2-af6f-18d2e9f40fb9,https://biolit.fr/observations/observation-68f1097c-c75b-49a2-af6f-18d2e9f40fb9/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180214_152250_0.jpg,,FALSE, +N1,22303,sortie-32cb0c18-32e7-42d6-97b4-463094e51d61,https://biolit.fr/sorties/sortie-32cb0c18-32e7-42d6-97b4-463094e51d61/,collège paul Eluard,,01/12/2018,14.0000000,15.0:45,50.692074000000,1.562864000000,,plage de Ningle,21358,observation-32cb0c18-32e7-42d6-97b4-463094e51d61,https://biolit.fr/observations/observation-32cb0c18-32e7-42d6-97b4-463094e51d61/,,,,https://biolit.fr/wp-content/uploads/2023/05/PICT1990_0.JPG,,FALSE, +N1,22304,sortie-d4f83e48-495e-49bf-a379-a6f7fb95c8a3,https://biolit.fr/sorties/sortie-d4f83e48-495e-49bf-a379-a6f7fb95c8a3/,Association Avril - Vigie des havres,,1/22/2018 0:00,14.0000000,15.0000000,49.029303000000,-1.598034000000,,agon coutainville,21360,observation-d4f83e48-495e-49bf-a379-a6f7fb95c8a3,https://biolit.fr/observations/observation-d4f83e48-495e-49bf-a379-a6f7fb95c8a3/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20180122_151047-scaled.jpg,,TRUE, +N1,22305,sortie-6960ecc9-a991-46b4-8f79-00839b0f7e47,https://biolit.fr/sorties/sortie-6960ecc9-a991-46b4-8f79-00839b0f7e47/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.692931000000,1.562239000000,,plage de Ningle,21362,observation-6960ecc9-a991-46b4-8f79-00839b0f7e47,https://biolit.fr/observations/observation-6960ecc9-a991-46b4-8f79-00839b0f7e47/,,,,https://biolit.fr/wp-content/uploads/2023/05/PICT1990.JPG,,FALSE, +N1,22305,sortie-6960ecc9-a991-46b4-8f79-00839b0f7e47,https://biolit.fr/sorties/sortie-6960ecc9-a991-46b4-8f79-00839b0f7e47/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.692931000000,1.562239000000,,plage de Ningle,21364,observation-6960ecc9-a991-46b4-8f79-00839b0f7e47-2,https://biolit.fr/observations/observation-6960ecc9-a991-46b4-8f79-00839b0f7e47-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/PICT1993.JPG,,FALSE, +N1,22306,sortie-e8b9f15d-ef68-4b75-9a89-95b36d9328db,https://biolit.fr/sorties/sortie-e8b9f15d-ef68-4b75-9a89-95b36d9328db/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.691839000000,1.562964000000,,plage de ningle ,21366,observation-e8b9f15d-ef68-4b75-9a89-95b36d9328db,https://biolit.fr/observations/observation-e8b9f15d-ef68-4b75-9a89-95b36d9328db/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_0489.jpg,,FALSE, +N1,22307,sortie-8b60096d-eb9f-4c43-b16b-481d8839565b,https://biolit.fr/sorties/sortie-8b60096d-eb9f-4c43-b16b-481d8839565b/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.691891000000,1.562926000000,,Plage de Ningle,21368,observation-8b60096d-eb9f-4c43-b16b-481d8839565b,https://biolit.fr/observations/observation-8b60096d-eb9f-4c43-b16b-481d8839565b/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_0064-scaled.jpg,,FALSE, +N1,22308,sortie-7a9ecbef-95de-48c0-ac89-e9e808eaecd4,https://biolit.fr/sorties/sortie-7a9ecbef-95de-48c0-ac89-e9e808eaecd4/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.691818000000,1.562640000000,,plage de Ningles,21370,observation-7a9ecbef-95de-48c0-ac89-e9e808eaecd4,https://biolit.fr/observations/observation-7a9ecbef-95de-48c0-ac89-e9e808eaecd4/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_0180-scaled.jpg,,FALSE, +N1,22308,sortie-7a9ecbef-95de-48c0-ac89-e9e808eaecd4,https://biolit.fr/sorties/sortie-7a9ecbef-95de-48c0-ac89-e9e808eaecd4/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.691818000000,1.562640000000,,plage de Ningles,21372,observation-7a9ecbef-95de-48c0-ac89-e9e808eaecd4-2,https://biolit.fr/observations/observation-7a9ecbef-95de-48c0-ac89-e9e808eaecd4-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_0186-scaled.jpg,,FALSE, +N1,22309,sortie-afe4af33-4b21-4012-a44f-316e85269f2a,https://biolit.fr/sorties/sortie-afe4af33-4b21-4012-a44f-316e85269f2a/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.691758000000,1.562831000000,,Plage de Ningles,21374,observation-afe4af33-4b21-4012-a44f-316e85269f2a,https://biolit.fr/observations/observation-afe4af33-4b21-4012-a44f-316e85269f2a/,,,,https://biolit.fr/wp-content/uploads/2023/05/P_20180112_142848_1[1]_0-scaled.jpg,,FALSE, +N1,22310,sortie-700e54ee-9118-4c01-bc07-7fbfe310bbae,https://biolit.fr/sorties/sortie-700e54ee-9118-4c01-bc07-7fbfe310bbae/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.691758000000,1.562831000000,,Plage de Ningles,21376,observation-700e54ee-9118-4c01-bc07-7fbfe310bbae,https://biolit.fr/observations/observation-700e54ee-9118-4c01-bc07-7fbfe310bbae/,,,,https://biolit.fr/wp-content/uploads/2023/05/P_20180112_142848_1[1]_0-scaled.jpg,,FALSE, +N1,22311,sortie-4d2cbd22-04de-4b66-9491-19c5fe994ba2,https://biolit.fr/sorties/sortie-4d2cbd22-04de-4b66-9491-19c5fe994ba2/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.692055000000,1.562640000000,,Plage de Ningles,21377,observation-4d2cbd22-04de-4b66-9491-19c5fe994ba2,https://biolit.fr/observations/observation-4d2cbd22-04de-4b66-9491-19c5fe994ba2/,,,,https://biolit.fr/wp-content/uploads/2023/05/20180112_142427-scaled.jpg,,FALSE, +N1,22311,sortie-4d2cbd22-04de-4b66-9491-19c5fe994ba2,https://biolit.fr/sorties/sortie-4d2cbd22-04de-4b66-9491-19c5fe994ba2/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.692055000000,1.562640000000,,Plage de Ningles,21379,observation-4d2cbd22-04de-4b66-9491-19c5fe994ba2-2,https://biolit.fr/observations/observation-4d2cbd22-04de-4b66-9491-19c5fe994ba2-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/20180112_142738-scaled.jpg,,FALSE, +N1,22312,sortie-984c8c1b-3d4d-4b05-a6ad-b5cf5bed77e3,https://biolit.fr/sorties/sortie-984c8c1b-3d4d-4b05-a6ad-b5cf5bed77e3/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.691943000000,1.562864000000,,plage de Ningles ,21381,observation-984c8c1b-3d4d-4b05-a6ad-b5cf5bed77e3,https://biolit.fr/observations/observation-984c8c1b-3d4d-4b05-a6ad-b5cf5bed77e3/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMAG0060[1]-scaled.jpg,,FALSE, +N1,22312,sortie-984c8c1b-3d4d-4b05-a6ad-b5cf5bed77e3,https://biolit.fr/sorties/sortie-984c8c1b-3d4d-4b05-a6ad-b5cf5bed77e3/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.691943000000,1.562864000000,,plage de Ningles ,21383,observation-984c8c1b-3d4d-4b05-a6ad-b5cf5bed77e3-2,https://biolit.fr/observations/observation-984c8c1b-3d4d-4b05-a6ad-b5cf5bed77e3-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMAG0073[1]-scaled.jpg,,FALSE, +N1,22313,sortie-38606b94-633b-4c58-a945-8d1018c7dc4e,https://biolit.fr/sorties/sortie-38606b94-633b-4c58-a945-8d1018c7dc4e/,collège paul Eluard,,1/19/2018 0:00,14.0000000,15.0000000,50.69159900000,1.562861000000,,Plage de Ningles,21385,observation-38606b94-633b-4c58-a945-8d1018c7dc4e,https://biolit.fr/observations/observation-38606b94-633b-4c58-a945-8d1018c7dc4e/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180112_142838[1]-scaled.jpg,,FALSE, +N1,22314,sortie-19530ac9-8aea-45bb-963b-2ce1f8d9ca35,https://biolit.fr/sorties/sortie-19530ac9-8aea-45bb-963b-2ce1f8d9ca35/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.691937000000,1.563297000000,,Plage de Ningles,21387,observation-19530ac9-8aea-45bb-963b-2ce1f8d9ca35,https://biolit.fr/observations/observation-19530ac9-8aea-45bb-963b-2ce1f8d9ca35/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0015-scaled.jpg,,FALSE, +N1,22314,sortie-19530ac9-8aea-45bb-963b-2ce1f8d9ca35,https://biolit.fr/sorties/sortie-19530ac9-8aea-45bb-963b-2ce1f8d9ca35/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.691937000000,1.563297000000,,Plage de Ningles,21389,observation-19530ac9-8aea-45bb-963b-2ce1f8d9ca35-2,https://biolit.fr/observations/observation-19530ac9-8aea-45bb-963b-2ce1f8d9ca35-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0011-scaled.jpg,,FALSE, +N1,22315,sortie-3396adf5-39a1-46a0-b995-992e98a7337c,https://biolit.fr/sorties/sortie-3396adf5-39a1-46a0-b995-992e98a7337c/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.691937000000,1.563297000000,,Plage de Ningles,21391,observation-3396adf5-39a1-46a0-b995-992e98a7337c,https://biolit.fr/observations/observation-3396adf5-39a1-46a0-b995-992e98a7337c/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0015-scaled.jpg,,FALSE, +N1,22315,sortie-3396adf5-39a1-46a0-b995-992e98a7337c,https://biolit.fr/sorties/sortie-3396adf5-39a1-46a0-b995-992e98a7337c/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.691937000000,1.563297000000,,Plage de Ningles,21392,observation-3396adf5-39a1-46a0-b995-992e98a7337c-2,https://biolit.fr/observations/observation-3396adf5-39a1-46a0-b995-992e98a7337c-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0011-scaled.jpg,,FALSE, +N1,22316,sortie-2757d1f2-b3de-45a7-9d61-a93ea5b2230a,https://biolit.fr/sorties/sortie-2757d1f2-b3de-45a7-9d61-a93ea5b2230a/,collège paul Eluard,,01/12/2018,14.0000000,15.0000000,50.691919000000,1.562683000000,,plage de Ningles,21393,observation-2757d1f2-b3de-45a7-9d61-a93ea5b2230a,https://biolit.fr/observations/observation-2757d1f2-b3de-45a7-9d61-a93ea5b2230a/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180112_144047[1].jpg,,FALSE, +N1,22317,sortie-c1e80808-0652-4c1e-b78a-0c7886ba4e69,https://biolit.fr/sorties/sortie-c1e80808-0652-4c1e-b78a-0c7886ba4e69/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.691849000000,1.562598000000,,plage de Ningles,21395,observation-c1e80808-0652-4c1e-b78a-0c7886ba4e69,https://biolit.fr/observations/observation-c1e80808-0652-4c1e-b78a-0c7886ba4e69/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180111_144222-scaled.jpg,,FALSE, +N1,22317,sortie-c1e80808-0652-4c1e-b78a-0c7886ba4e69,https://biolit.fr/sorties/sortie-c1e80808-0652-4c1e-b78a-0c7886ba4e69/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.691849000000,1.562598000000,,plage de Ningles,21397,observation-c1e80808-0652-4c1e-b78a-0c7886ba4e69-2,https://biolit.fr/observations/observation-c1e80808-0652-4c1e-b78a-0c7886ba4e69-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180111_144353-scaled.jpg,,FALSE, +N1,22318,sortie-4b66bebf-b757-47e8-b950-1a23630a9636,https://biolit.fr/sorties/sortie-4b66bebf-b757-47e8-b950-1a23630a9636/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.695461000000,1.562316000000,,plage de ningles,21399,observation-4b66bebf-b757-47e8-b950-1a23630a9636,https://biolit.fr/observations/observation-4b66bebf-b757-47e8-b950-1a23630a9636/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180111_144345-scaled.jpg,,FALSE, +N1,22318,sortie-4b66bebf-b757-47e8-b950-1a23630a9636,https://biolit.fr/sorties/sortie-4b66bebf-b757-47e8-b950-1a23630a9636/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.695461000000,1.562316000000,,plage de ningles,21401,observation-4b66bebf-b757-47e8-b950-1a23630a9636-2,https://biolit.fr/observations/observation-4b66bebf-b757-47e8-b950-1a23630a9636-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180111_145825-scaled.jpg,,FALSE, +N1,22318,sortie-4b66bebf-b757-47e8-b950-1a23630a9636,https://biolit.fr/sorties/sortie-4b66bebf-b757-47e8-b950-1a23630a9636/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.695461000000,1.562316000000,,plage de ningles,21403,observation-4b66bebf-b757-47e8-b950-1a23630a9636-3,https://biolit.fr/observations/observation-4b66bebf-b757-47e8-b950-1a23630a9636-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180111_150152-scaled.jpg,,FALSE, +N1,22318,sortie-4b66bebf-b757-47e8-b950-1a23630a9636,https://biolit.fr/sorties/sortie-4b66bebf-b757-47e8-b950-1a23630a9636/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.695461000000,1.562316000000,,plage de ningles,21405,observation-4b66bebf-b757-47e8-b950-1a23630a9636-4,https://biolit.fr/observations/observation-4b66bebf-b757-47e8-b950-1a23630a9636-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20180111_150203-scaled.jpg,,FALSE, +N1,22319,sortie-84ad3242-5f82-4735-b242-f9f66b5ff59e,https://biolit.fr/sorties/sortie-84ad3242-5f82-4735-b242-f9f66b5ff59e/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.691946000000,1.562865000000,,Plage de Ningles,21407,observation-84ad3242-5f82-4735-b242-f9f66b5ff59e,https://biolit.fr/observations/observation-84ad3242-5f82-4735-b242-f9f66b5ff59e/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0098-scaled.jpg,,FALSE, +N1,22319,sortie-84ad3242-5f82-4735-b242-f9f66b5ff59e,https://biolit.fr/sorties/sortie-84ad3242-5f82-4735-b242-f9f66b5ff59e/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.691946000000,1.562865000000,,Plage de Ningles,21409,observation-84ad3242-5f82-4735-b242-f9f66b5ff59e-2,https://biolit.fr/observations/observation-84ad3242-5f82-4735-b242-f9f66b5ff59e-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0100-scaled.jpg,,FALSE, +N1,22319,sortie-84ad3242-5f82-4735-b242-f9f66b5ff59e,https://biolit.fr/sorties/sortie-84ad3242-5f82-4735-b242-f9f66b5ff59e/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.691946000000,1.562865000000,,Plage de Ningles,21411,observation-84ad3242-5f82-4735-b242-f9f66b5ff59e-3,https://biolit.fr/observations/observation-84ad3242-5f82-4735-b242-f9f66b5ff59e-3/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/05/100_0093-scaled.jpg,,TRUE, +N1,22320,sortie-6f5dd35e-50dc-438d-ac14-cf022aa5ed57,https://biolit.fr/sorties/sortie-6f5dd35e-50dc-438d-ac14-cf022aa5ed57/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.682382000000,1.567528000000,,plage de Ningles,21413,observation-6f5dd35e-50dc-438d-ac14-cf022aa5ed57,https://biolit.fr/observations/observation-6f5dd35e-50dc-438d-ac14-cf022aa5ed57/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMAG0301-scaled.jpg,,FALSE, +N1,22321,sortie-0a74df8f-2988-49dc-8d37-69dc7b69c5bf,https://biolit.fr/sorties/sortie-0a74df8f-2988-49dc-8d37-69dc7b69c5bf/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.694282000000,1.563475000000,,Plage de Ningles,21415,observation-0a74df8f-2988-49dc-8d37-69dc7b69c5bf,https://biolit.fr/observations/observation-0a74df8f-2988-49dc-8d37-69dc7b69c5bf/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMAG0299-scaled.jpg,,FALSE, +N1,22322,sortie-f024d46e-29b4-42ac-8446-ebbb8bc2fdb0,https://biolit.fr/sorties/sortie-f024d46e-29b4-42ac-8446-ebbb8bc2fdb0/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,48.712207000000,1.920059000000,,plage de Ningles ,21417,observation-f024d46e-29b4-42ac-8446-ebbb8bc2fdb0,https://biolit.fr/observations/observation-f024d46e-29b4-42ac-8446-ebbb8bc2fdb0/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/05/IMAG0311-scaled.jpg,,TRUE, +N1,22323,sortie-01752621-2ad0-479e-b91f-cd06bf2fb01b,https://biolit.fr/sorties/sortie-01752621-2ad0-479e-b91f-cd06bf2fb01b/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.670449000000,1.557510000000,,plage de ningles,21419,observation-01752621-2ad0-479e-b91f-cd06bf2fb01b,https://biolit.fr/observations/observation-01752621-2ad0-479e-b91f-cd06bf2fb01b/,,,,https://biolit.fr/wp-content/uploads/2023/05/20170203_221611-scaled.jpg,,FALSE, +N1,22323,sortie-01752621-2ad0-479e-b91f-cd06bf2fb01b,https://biolit.fr/sorties/sortie-01752621-2ad0-479e-b91f-cd06bf2fb01b/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.670449000000,1.557510000000,,plage de ningles,21421,observation-01752621-2ad0-479e-b91f-cd06bf2fb01b-2,https://biolit.fr/observations/observation-01752621-2ad0-479e-b91f-cd06bf2fb01b-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/20170203_221611_1-scaled.jpg,,FALSE, +N1,22324,sortie-55c819ca-0260-4226-a9c6-2034304161f5,https://biolit.fr/sorties/sortie-55c819ca-0260-4226-a9c6-2034304161f5/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.691856000000,1.562979000000,,plage de Ningles,21423,observation-55c819ca-0260-4226-a9c6-2034304161f5,https://biolit.fr/observations/observation-55c819ca-0260-4226-a9c6-2034304161f5/,,,,https://biolit.fr/wp-content/uploads/2023/05/007-scaled.jpg,,FALSE, +N1,22324,sortie-55c819ca-0260-4226-a9c6-2034304161f5,https://biolit.fr/sorties/sortie-55c819ca-0260-4226-a9c6-2034304161f5/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.691856000000,1.562979000000,,plage de Ningles,21425,observation-55c819ca-0260-4226-a9c6-2034304161f5-2,https://biolit.fr/observations/observation-55c819ca-0260-4226-a9c6-2034304161f5-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/005-scaled.jpg,,FALSE, +N1,22324,sortie-55c819ca-0260-4226-a9c6-2034304161f5,https://biolit.fr/sorties/sortie-55c819ca-0260-4226-a9c6-2034304161f5/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.691856000000,1.562979000000,,plage de Ningles,21427,observation-55c819ca-0260-4226-a9c6-2034304161f5-3,https://biolit.fr/observations/observation-55c819ca-0260-4226-a9c6-2034304161f5-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/003-scaled.jpg,,FALSE, +N1,22324,sortie-55c819ca-0260-4226-a9c6-2034304161f5,https://biolit.fr/sorties/sortie-55c819ca-0260-4226-a9c6-2034304161f5/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.691856000000,1.562979000000,,plage de Ningles,21429,observation-55c819ca-0260-4226-a9c6-2034304161f5-4,https://biolit.fr/observations/observation-55c819ca-0260-4226-a9c6-2034304161f5-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/008-scaled.jpg,,FALSE, +N1,22324,sortie-55c819ca-0260-4226-a9c6-2034304161f5,https://biolit.fr/sorties/sortie-55c819ca-0260-4226-a9c6-2034304161f5/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.691856000000,1.562979000000,,plage de Ningles,21431,observation-55c819ca-0260-4226-a9c6-2034304161f5-5,https://biolit.fr/observations/observation-55c819ca-0260-4226-a9c6-2034304161f5-5/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/004-scaled.jpg,,TRUE, +N1,22324,sortie-55c819ca-0260-4226-a9c6-2034304161f5,https://biolit.fr/sorties/sortie-55c819ca-0260-4226-a9c6-2034304161f5/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.691856000000,1.562979000000,,plage de Ningles,21433,observation-55c819ca-0260-4226-a9c6-2034304161f5-6,https://biolit.fr/observations/observation-55c819ca-0260-4226-a9c6-2034304161f5-6/,,,,https://biolit.fr/wp-content/uploads/2023/05/006-scaled.jpg,,FALSE, +N1,22325,sortie-a421dbcb-c2d8-4402-8a09-fc455d06a3fe,https://biolit.fr/sorties/sortie-a421dbcb-c2d8-4402-8a09-fc455d06a3fe/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.691966000000,1.562871000000,,Plage de Ningles,21435,observation-a421dbcb-c2d8-4402-8a09-fc455d06a3fe,https://biolit.fr/observations/observation-a421dbcb-c2d8-4402-8a09-fc455d06a3fe/,,,,https://biolit.fr/wp-content/uploads/2023/05/20180111_135728[1]-scaled.jpg,,FALSE, +N1,22326,sortie-946ef71a-a2d4-4c9c-94d1-bec02eb64b18,https://biolit.fr/sorties/sortie-946ef71a-a2d4-4c9c-94d1-bec02eb64b18/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.800741000000,1.595793000000,,Plage de Ningles,21437,observation-946ef71a-a2d4-4c9c-94d1-bec02eb64b18,https://biolit.fr/observations/observation-946ef71a-a2d4-4c9c-94d1-bec02eb64b18/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0078-scaled.jpg,,FALSE, +N1,22327,sortie-2945e111-a6c4-48d7-bb77-5f01a770026a,https://biolit.fr/sorties/sortie-2945e111-a6c4-48d7-bb77-5f01a770026a/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.691946000000,1.562865000000,,Plage de Ningles,21439,observation-2945e111-a6c4-48d7-bb77-5f01a770026a,https://biolit.fr/observations/observation-2945e111-a6c4-48d7-bb77-5f01a770026a/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0098-scaled.jpg,,FALSE, +N1,22327,sortie-2945e111-a6c4-48d7-bb77-5f01a770026a,https://biolit.fr/sorties/sortie-2945e111-a6c4-48d7-bb77-5f01a770026a/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.691946000000,1.562865000000,,Plage de Ningles,21440,observation-2945e111-a6c4-48d7-bb77-5f01a770026a-2,https://biolit.fr/observations/observation-2945e111-a6c4-48d7-bb77-5f01a770026a-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/100_0100-scaled.jpg,,FALSE, +N1,22327,sortie-2945e111-a6c4-48d7-bb77-5f01a770026a,https://biolit.fr/sorties/sortie-2945e111-a6c4-48d7-bb77-5f01a770026a/,collège paul Eluard,,01/11/2018,14.0000000,15.0000000,50.691946000000,1.562865000000,,Plage de Ningles,21441,observation-2945e111-a6c4-48d7-bb77-5f01a770026a-3,https://biolit.fr/observations/observation-2945e111-a6c4-48d7-bb77-5f01a770026a-3/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/05/100_0093-scaled.jpg,,TRUE, +N1,22328,sortie-d4cdd274-fdd9-4190-bc92-bd0c612a65f4,https://biolit.fr/sorties/sortie-d4cdd274-fdd9-4190-bc92-bd0c612a65f4/,RIEM,,8/22/2017 0:00,11.0000000,11.0000000,47.493297000000,-2.682188000000,,PLAGE DE PENVINS 56240 SARZEAU,21442,observation-d4cdd274-fdd9-4190-bc92-bd0c612a65f4,https://biolit.fr/observations/observation-d4cdd274-fdd9-4190-bc92-bd0c612a65f4/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1040118.JPG,,FALSE, +N1,22328,sortie-d4cdd274-fdd9-4190-bc92-bd0c612a65f4,https://biolit.fr/sorties/sortie-d4cdd274-fdd9-4190-bc92-bd0c612a65f4/,RIEM,,8/22/2017 0:00,11.0000000,11.0000000,47.493297000000,-2.682188000000,,PLAGE DE PENVINS 56240 SARZEAU,21444,observation-d4cdd274-fdd9-4190-bc92-bd0c612a65f4-2,https://biolit.fr/observations/observation-d4cdd274-fdd9-4190-bc92-bd0c612a65f4-2/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/P1040119.JPG,,TRUE, +N1,22328,sortie-d4cdd274-fdd9-4190-bc92-bd0c612a65f4,https://biolit.fr/sorties/sortie-d4cdd274-fdd9-4190-bc92-bd0c612a65f4/,RIEM,,8/22/2017 0:00,11.0000000,11.0000000,47.493297000000,-2.682188000000,,PLAGE DE PENVINS 56240 SARZEAU,21446,observation-d4cdd274-fdd9-4190-bc92-bd0c612a65f4-3,https://biolit.fr/observations/observation-d4cdd274-fdd9-4190-bc92-bd0c612a65f4-3/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1040120.JPG,,TRUE, +N1,22328,sortie-d4cdd274-fdd9-4190-bc92-bd0c612a65f4,https://biolit.fr/sorties/sortie-d4cdd274-fdd9-4190-bc92-bd0c612a65f4/,RIEM,,8/22/2017 0:00,11.0000000,11.0000000,47.493297000000,-2.682188000000,,PLAGE DE PENVINS 56240 SARZEAU,21448,observation-d4cdd274-fdd9-4190-bc92-bd0c612a65f4-4,https://biolit.fr/observations/observation-d4cdd274-fdd9-4190-bc92-bd0c612a65f4-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1040121.JPG,,FALSE, +N1,22328,sortie-d4cdd274-fdd9-4190-bc92-bd0c612a65f4,https://biolit.fr/sorties/sortie-d4cdd274-fdd9-4190-bc92-bd0c612a65f4/,RIEM,,8/22/2017 0:00,11.0000000,11.0000000,47.493297000000,-2.682188000000,,PLAGE DE PENVINS 56240 SARZEAU,21450,observation-d4cdd274-fdd9-4190-bc92-bd0c612a65f4-5,https://biolit.fr/observations/observation-d4cdd274-fdd9-4190-bc92-bd0c612a65f4-5/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1040122.JPG,,FALSE, +N1,22328,sortie-d4cdd274-fdd9-4190-bc92-bd0c612a65f4,https://biolit.fr/sorties/sortie-d4cdd274-fdd9-4190-bc92-bd0c612a65f4/,RIEM,,8/22/2017 0:00,11.0000000,11.0000000,47.493297000000,-2.682188000000,,PLAGE DE PENVINS 56240 SARZEAU,21452,observation-d4cdd274-fdd9-4190-bc92-bd0c612a65f4-6,https://biolit.fr/observations/observation-d4cdd274-fdd9-4190-bc92-bd0c612a65f4-6/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/P1040123.JPG,,TRUE, +N1,22329,sortie-6bcecd2b-f6f1-473f-9102-d5332425b3ed,https://biolit.fr/sorties/sortie-6bcecd2b-f6f1-473f-9102-d5332425b3ed/,Nicolas,,7/24/2017 0:00,12.0000000,13.0000000,46.20182900000,-1.202942000000,,Pointe du plomb,21454,observation-6bcecd2b-f6f1-473f-9102-d5332425b3ed,https://biolit.fr/observations/observation-6bcecd2b-f6f1-473f-9102-d5332425b3ed/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_20170724_131138_0-scaled.jpg,,TRUE, +N1,22329,sortie-6bcecd2b-f6f1-473f-9102-d5332425b3ed,https://biolit.fr/sorties/sortie-6bcecd2b-f6f1-473f-9102-d5332425b3ed/,Nicolas,,7/24/2017 0:00,12.0000000,13.0000000,46.20182900000,-1.202942000000,,Pointe du plomb,21456,observation-6bcecd2b-f6f1-473f-9102-d5332425b3ed-2,https://biolit.fr/observations/observation-6bcecd2b-f6f1-473f-9102-d5332425b3ed-2/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20170724_131412-scaled.jpg,,TRUE, +N1,22330,sortie-546b7c91-e88a-432b-87d8-212fae62cebe,https://biolit.fr/sorties/sortie-546b7c91-e88a-432b-87d8-212fae62cebe/,LucileA,,07/04/2017,11.0:35,11.0:55,48.640681000000,-2.072721000000,,Estran de St Enogat,21458,observation-546b7c91-e88a-432b-87d8-212fae62cebe,https://biolit.fr/observations/observation-546b7c91-e88a-432b-87d8-212fae62cebe/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_6671-scaled.jpg,,TRUE, +N1,22330,sortie-546b7c91-e88a-432b-87d8-212fae62cebe,https://biolit.fr/sorties/sortie-546b7c91-e88a-432b-87d8-212fae62cebe/,LucileA,,07/04/2017,11.0:35,11.0:55,48.640681000000,-2.072721000000,,Estran de St Enogat,21460,observation-546b7c91-e88a-432b-87d8-212fae62cebe-2,https://biolit.fr/observations/observation-546b7c91-e88a-432b-87d8-212fae62cebe-2/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_6672-scaled.jpg,,TRUE, +N1,22330,sortie-546b7c91-e88a-432b-87d8-212fae62cebe,https://biolit.fr/sorties/sortie-546b7c91-e88a-432b-87d8-212fae62cebe/,LucileA,,07/04/2017,11.0:35,11.0:55,48.640681000000,-2.072721000000,,Estran de St Enogat,21462,observation-546b7c91-e88a-432b-87d8-212fae62cebe-3,https://biolit.fr/observations/observation-546b7c91-e88a-432b-87d8-212fae62cebe-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_6673-scaled.jpg,,TRUE, +N1,22330,sortie-546b7c91-e88a-432b-87d8-212fae62cebe,https://biolit.fr/sorties/sortie-546b7c91-e88a-432b-87d8-212fae62cebe/,LucileA,,07/04/2017,11.0:35,11.0:55,48.640681000000,-2.072721000000,,Estran de St Enogat,21464,observation-546b7c91-e88a-432b-87d8-212fae62cebe-4,https://biolit.fr/observations/observation-546b7c91-e88a-432b-87d8-212fae62cebe-4/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_6674-scaled.jpg,,TRUE, +N1,22331,sortie-5aa6b0c6-dd1f-4464-b917-88552882edc3,https://biolit.fr/sorties/sortie-5aa6b0c6-dd1f-4464-b917-88552882edc3/,PEP44 La Marjolaine,,05/08/2017,10.0:15,11.0000000,47.351536000000,-2.517506000000,,La Turballe,21466,observation-5aa6b0c6-dd1f-4464-b917-88552882edc3,https://biolit.fr/observations/observation-5aa6b0c6-dd1f-4464-b917-88552882edc3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC04925.JPG,,TRUE, +N1,22331,sortie-5aa6b0c6-dd1f-4464-b917-88552882edc3,https://biolit.fr/sorties/sortie-5aa6b0c6-dd1f-4464-b917-88552882edc3/,PEP44 La Marjolaine,,05/08/2017,10.0:15,11.0000000,47.351536000000,-2.517506000000,,La Turballe,21468,observation-5aa6b0c6-dd1f-4464-b917-88552882edc3-2,https://biolit.fr/observations/observation-5aa6b0c6-dd1f-4464-b917-88552882edc3-2/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC04927.JPG,,TRUE, +N1,22332,sortie-6d09883e-a24d-41c3-9f40-648bb41aa65f,https://biolit.fr/sorties/sortie-6d09883e-a24d-41c3-9f40-648bb41aa65f/,ESTRAN Cité de la Mer,,05/04/2017,14.0000000,15.0000000,49.925471000000,1.058953000000,,Dieppe,21470,observation-6d09883e-a24d-41c3-9f40-648bb41aa65f,https://biolit.fr/observations/observation-6d09883e-a24d-41c3-9f40-648bb41aa65f/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20170504_143307-scaled.jpg,,TRUE, +N1,22332,sortie-6d09883e-a24d-41c3-9f40-648bb41aa65f,https://biolit.fr/sorties/sortie-6d09883e-a24d-41c3-9f40-648bb41aa65f/,ESTRAN Cité de la Mer,,05/04/2017,14.0000000,15.0000000,49.925471000000,1.058953000000,,Dieppe,21472,observation-6d09883e-a24d-41c3-9f40-648bb41aa65f-2,https://biolit.fr/observations/observation-6d09883e-a24d-41c3-9f40-648bb41aa65f-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/20170504_143641-scaled.jpg,,FALSE, +N1,22332,sortie-6d09883e-a24d-41c3-9f40-648bb41aa65f,https://biolit.fr/sorties/sortie-6d09883e-a24d-41c3-9f40-648bb41aa65f/,ESTRAN Cité de la Mer,,05/04/2017,14.0000000,15.0000000,49.925471000000,1.058953000000,,Dieppe,21474,observation-6d09883e-a24d-41c3-9f40-648bb41aa65f-3,https://biolit.fr/observations/observation-6d09883e-a24d-41c3-9f40-648bb41aa65f-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20170504_143722-scaled.jpg,,TRUE, +N1,22332,sortie-6d09883e-a24d-41c3-9f40-648bb41aa65f,https://biolit.fr/sorties/sortie-6d09883e-a24d-41c3-9f40-648bb41aa65f/,ESTRAN Cité de la Mer,,05/04/2017,14.0000000,15.0000000,49.925471000000,1.058953000000,,Dieppe,21476,observation-6d09883e-a24d-41c3-9f40-648bb41aa65f-4,https://biolit.fr/observations/observation-6d09883e-a24d-41c3-9f40-648bb41aa65f-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20170504_143838-scaled.jpg,,TRUE, +N1,22332,sortie-6d09883e-a24d-41c3-9f40-648bb41aa65f,https://biolit.fr/sorties/sortie-6d09883e-a24d-41c3-9f40-648bb41aa65f/,ESTRAN Cité de la Mer,,05/04/2017,14.0000000,15.0000000,49.925471000000,1.058953000000,,Dieppe,21478,observation-6d09883e-a24d-41c3-9f40-648bb41aa65f-5,https://biolit.fr/observations/observation-6d09883e-a24d-41c3-9f40-648bb41aa65f-5/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20170504_144006-scaled.jpg,,TRUE, +N1,22332,sortie-6d09883e-a24d-41c3-9f40-648bb41aa65f,https://biolit.fr/sorties/sortie-6d09883e-a24d-41c3-9f40-648bb41aa65f/,ESTRAN Cité de la Mer,,05/04/2017,14.0000000,15.0000000,49.925471000000,1.058953000000,,Dieppe,21480,observation-6d09883e-a24d-41c3-9f40-648bb41aa65f-6,https://biolit.fr/observations/observation-6d09883e-a24d-41c3-9f40-648bb41aa65f-6/,,,,https://biolit.fr/wp-content/uploads/2023/05/20170504_144156-scaled.jpg,,FALSE, +N1,22332,sortie-6d09883e-a24d-41c3-9f40-648bb41aa65f,https://biolit.fr/sorties/sortie-6d09883e-a24d-41c3-9f40-648bb41aa65f/,ESTRAN Cité de la Mer,,05/04/2017,14.0000000,15.0000000,49.925471000000,1.058953000000,,Dieppe,21482,observation-6d09883e-a24d-41c3-9f40-648bb41aa65f-7,https://biolit.fr/observations/observation-6d09883e-a24d-41c3-9f40-648bb41aa65f-7/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20170504_144242-scaled.jpg,,TRUE, +N1,22333,sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80,https://biolit.fr/sorties/sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80/,RIEM,,4/27/2017 0:00,11.0000000,11.0:45,47.484479000000,-2.673622000000,,Plage de PENVINS 56240 SARZEAU,21484,observation-43bd5cff-2b95-4e64-b15d-951d417f7f80,https://biolit.fr/observations/observation-43bd5cff-2b95-4e64-b15d-951d417f7f80/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/P1020425.JPG,,TRUE, +N1,22333,sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80,https://biolit.fr/sorties/sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80/,RIEM,,4/27/2017 0:00,11.0000000,11.0:45,47.484479000000,-2.673622000000,,Plage de PENVINS 56240 SARZEAU,21486,observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-2,https://biolit.fr/observations/observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1020427.JPG,,FALSE, +N1,22333,sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80,https://biolit.fr/sorties/sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80/,RIEM,,4/27/2017 0:00,11.0000000,11.0:45,47.484479000000,-2.673622000000,,Plage de PENVINS 56240 SARZEAU,21488,observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-3,https://biolit.fr/observations/observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1020429.JPG,,FALSE, +N1,22333,sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80,https://biolit.fr/sorties/sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80/,RIEM,,4/27/2017 0:00,11.0000000,11.0:45,47.484479000000,-2.673622000000,,Plage de PENVINS 56240 SARZEAU,21490,observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-4,https://biolit.fr/observations/observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1020430.JPG,,FALSE, +N1,22333,sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80,https://biolit.fr/sorties/sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80/,RIEM,,4/27/2017 0:00,11.0000000,11.0:45,47.484479000000,-2.673622000000,,Plage de PENVINS 56240 SARZEAU,21492,observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-5,https://biolit.fr/observations/observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-5/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1020432.JPG,,FALSE, +N1,22333,sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80,https://biolit.fr/sorties/sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80/,RIEM,,4/27/2017 0:00,11.0000000,11.0:45,47.484479000000,-2.673622000000,,Plage de PENVINS 56240 SARZEAU,21494,observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-6,https://biolit.fr/observations/observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-6/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1020433.JPG,,FALSE, +N1,22333,sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80,https://biolit.fr/sorties/sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80/,RIEM,,4/27/2017 0:00,11.0000000,11.0:45,47.484479000000,-2.673622000000,,Plage de PENVINS 56240 SARZEAU,21496,observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-7,https://biolit.fr/observations/observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-7/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/P1020434.JPG,,TRUE, +N1,22333,sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80,https://biolit.fr/sorties/sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80/,RIEM,,4/27/2017 0:00,11.0000000,11.0:45,47.484479000000,-2.673622000000,,Plage de PENVINS 56240 SARZEAU,21498,observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-8,https://biolit.fr/observations/observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-8/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/P1020435.JPG,,TRUE, +N1,22333,sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80,https://biolit.fr/sorties/sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80/,RIEM,,4/27/2017 0:00,11.0000000,11.0:45,47.484479000000,-2.673622000000,,Plage de PENVINS 56240 SARZEAU,21500,observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-9,https://biolit.fr/observations/observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-9/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1020436.JPG,,FALSE, +N1,22333,sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80,https://biolit.fr/sorties/sortie-43bd5cff-2b95-4e64-b15d-951d417f7f80/,RIEM,,4/27/2017 0:00,11.0000000,11.0:45,47.484479000000,-2.673622000000,,Plage de PENVINS 56240 SARZEAU,21502,observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-10,https://biolit.fr/observations/observation-43bd5cff-2b95-4e64-b15d-951d417f7f80-10/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1020443.JPG,,FALSE, +N1,22334,sortie-745239f5-043e-4f84-b04e-27be585de301,https://biolit.fr/sorties/sortie-745239f5-043e-4f84-b04e-27be585de301/,RIEM,,3/28/2017 0:00,11.0:15,11.0000000,47.488943000000,-2.636864000000,,PLAGE DE PENVINS 56240 SARZEAU,21504,observation-745239f5-043e-4f84-b04e-27be585de301,https://biolit.fr/observations/observation-745239f5-043e-4f84-b04e-27be585de301/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1020342_0.JPG,,TRUE, +N1,22334,sortie-745239f5-043e-4f84-b04e-27be585de301,https://biolit.fr/sorties/sortie-745239f5-043e-4f84-b04e-27be585de301/,RIEM,,3/28/2017 0:00,11.0:15,11.0000000,47.488943000000,-2.636864000000,,PLAGE DE PENVINS 56240 SARZEAU,21506,observation-745239f5-043e-4f84-b04e-27be585de301-2,https://biolit.fr/observations/observation-745239f5-043e-4f84-b04e-27be585de301-2/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/05/P1020343.JPG,,TRUE, +N1,22335,sortie-4b72c588-be9f-427b-858d-2ae0db1a2a97,https://biolit.fr/sorties/sortie-4b72c588-be9f-427b-858d-2ae0db1a2a97/,tridimeg,,2/24/2017 0:00,10.0000000,11.0000000,47.350260000000,-2.519137000000,,Plage de la Bastille,21508,observation-4b72c588-be9f-427b-858d-2ae0db1a2a97,https://biolit.fr/observations/observation-4b72c588-be9f-427b-858d-2ae0db1a2a97/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_0233.jpg,,TRUE, +N1,22335,sortie-4b72c588-be9f-427b-858d-2ae0db1a2a97,https://biolit.fr/sorties/sortie-4b72c588-be9f-427b-858d-2ae0db1a2a97/,tridimeg,,2/24/2017 0:00,10.0000000,11.0000000,47.350260000000,-2.519137000000,,Plage de la Bastille,21510,observation-4b72c588-be9f-427b-858d-2ae0db1a2a97-2,https://biolit.fr/observations/observation-4b72c588-be9f-427b-858d-2ae0db1a2a97-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_0236.jpg,,TRUE, +N1,22335,sortie-4b72c588-be9f-427b-858d-2ae0db1a2a97,https://biolit.fr/sorties/sortie-4b72c588-be9f-427b-858d-2ae0db1a2a97/,tridimeg,,2/24/2017 0:00,10.0000000,11.0000000,47.350260000000,-2.519137000000,,Plage de la Bastille,21512,observation-4b72c588-be9f-427b-858d-2ae0db1a2a97-3,https://biolit.fr/observations/observation-4b72c588-be9f-427b-858d-2ae0db1a2a97-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_0238.jpg,,TRUE, +N1,22335,sortie-4b72c588-be9f-427b-858d-2ae0db1a2a97,https://biolit.fr/sorties/sortie-4b72c588-be9f-427b-858d-2ae0db1a2a97/,tridimeg,,2/24/2017 0:00,10.0000000,11.0000000,47.350260000000,-2.519137000000,,Plage de la Bastille,21514,observation-4b72c588-be9f-427b-858d-2ae0db1a2a97-4,https://biolit.fr/observations/observation-4b72c588-be9f-427b-858d-2ae0db1a2a97-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_0241.jpg,,TRUE, +N1,22336,sortie-6d081084-50cc-41a9-9e4f-81d2aaea8ea9,https://biolit.fr/sorties/sortie-6d081084-50cc-41a9-9e4f-81d2aaea8ea9/,PEP44 La Marjolaine,,2/24/2017 0:00,10.0000000,11.0000000,47.350338000000,-2.519048000000,,Plage de la Bastille,21516,observation-6d081084-50cc-41a9-9e4f-81d2aaea8ea9,https://biolit.fr/observations/observation-6d081084-50cc-41a9-9e4f-81d2aaea8ea9/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1160135-scaled.jpg,,TRUE, +N1,22336,sortie-6d081084-50cc-41a9-9e4f-81d2aaea8ea9,https://biolit.fr/sorties/sortie-6d081084-50cc-41a9-9e4f-81d2aaea8ea9/,PEP44 La Marjolaine,,2/24/2017 0:00,10.0000000,11.0000000,47.350338000000,-2.519048000000,,Plage de la Bastille,21518,observation-6d081084-50cc-41a9-9e4f-81d2aaea8ea9-2,https://biolit.fr/observations/observation-6d081084-50cc-41a9-9e4f-81d2aaea8ea9-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1160136-scaled.jpg,,FALSE, +N1,22336,sortie-6d081084-50cc-41a9-9e4f-81d2aaea8ea9,https://biolit.fr/sorties/sortie-6d081084-50cc-41a9-9e4f-81d2aaea8ea9/,PEP44 La Marjolaine,,2/24/2017 0:00,10.0000000,11.0000000,47.350338000000,-2.519048000000,,Plage de la Bastille,21520,observation-6d081084-50cc-41a9-9e4f-81d2aaea8ea9-3,https://biolit.fr/observations/observation-6d081084-50cc-41a9-9e4f-81d2aaea8ea9-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1160154-scaled.jpg,,FALSE, +N1,22337,sortie-26743db5-29ba-496f-bdf8-c133cdafad82,https://biolit.fr/sorties/sortie-26743db5-29ba-496f-bdf8-c133cdafad82/,Marine,,07/05/2016,9.0000000,11.0000000,50.829434000000,1.589846000000,,Plage du Noirda,21522,observation-26743db5-29ba-496f-bdf8-c133cdafad82,https://biolit.fr/observations/observation-26743db5-29ba-496f-bdf8-c133cdafad82/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1465_0.jpg,,FALSE, +N1,22337,sortie-26743db5-29ba-496f-bdf8-c133cdafad82,https://biolit.fr/sorties/sortie-26743db5-29ba-496f-bdf8-c133cdafad82/,Marine,,07/05/2016,9.0000000,11.0000000,50.829434000000,1.589846000000,,Plage du Noirda,21524,observation-26743db5-29ba-496f-bdf8-c133cdafad82-2,https://biolit.fr/observations/observation-26743db5-29ba-496f-bdf8-c133cdafad82-2/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1466.jpg,,TRUE, +N1,22337,sortie-26743db5-29ba-496f-bdf8-c133cdafad82,https://biolit.fr/sorties/sortie-26743db5-29ba-496f-bdf8-c133cdafad82/,Marine,,07/05/2016,9.0000000,11.0000000,50.829434000000,1.589846000000,,Plage du Noirda,21526,observation-26743db5-29ba-496f-bdf8-c133cdafad82-3,https://biolit.fr/observations/observation-26743db5-29ba-496f-bdf8-c133cdafad82-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_1467.JPG,,TRUE, +N1,22337,sortie-26743db5-29ba-496f-bdf8-c133cdafad82,https://biolit.fr/sorties/sortie-26743db5-29ba-496f-bdf8-c133cdafad82/,Marine,,07/05/2016,9.0000000,11.0000000,50.829434000000,1.589846000000,,Plage du Noirda,21528,observation-26743db5-29ba-496f-bdf8-c133cdafad82-4,https://biolit.fr/observations/observation-26743db5-29ba-496f-bdf8-c133cdafad82-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_1468.JPG,,TRUE, +N1,22338,sortie-47df0897-04dc-4f05-8667-28effce804a9,https://biolit.fr/sorties/sortie-47df0897-04dc-4f05-8667-28effce804a9/,Marine,,7/19/2016 0:00,9.0000000,11.0000000,50.829576000000,1.589782000000,,Plage du Noirda,21530,observation-47df0897-04dc-4f05-8667-28effce804a9,https://biolit.fr/observations/observation-47df0897-04dc-4f05-8667-28effce804a9/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1461.jpg,,FALSE, +N1,22338,sortie-47df0897-04dc-4f05-8667-28effce804a9,https://biolit.fr/sorties/sortie-47df0897-04dc-4f05-8667-28effce804a9/,Marine,,7/19/2016 0:00,9.0000000,11.0000000,50.829576000000,1.589782000000,,Plage du Noirda,21532,observation-47df0897-04dc-4f05-8667-28effce804a9-2,https://biolit.fr/observations/observation-47df0897-04dc-4f05-8667-28effce804a9-2/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_1462.jpg,,TRUE, +N1,22338,sortie-47df0897-04dc-4f05-8667-28effce804a9,https://biolit.fr/sorties/sortie-47df0897-04dc-4f05-8667-28effce804a9/,Marine,,7/19/2016 0:00,9.0000000,11.0000000,50.829576000000,1.589782000000,,Plage du Noirda,21534,observation-47df0897-04dc-4f05-8667-28effce804a9-3,https://biolit.fr/observations/observation-47df0897-04dc-4f05-8667-28effce804a9-3/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_1463.jpg,,TRUE, +N1,22338,sortie-47df0897-04dc-4f05-8667-28effce804a9,https://biolit.fr/sorties/sortie-47df0897-04dc-4f05-8667-28effce804a9/,Marine,,7/19/2016 0:00,9.0000000,11.0000000,50.829576000000,1.589782000000,,Plage du Noirda,21536,observation-47df0897-04dc-4f05-8667-28effce804a9-4,https://biolit.fr/observations/observation-47df0897-04dc-4f05-8667-28effce804a9-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1464.jpg,,FALSE, +N1,22339,sortie-3d0c77eb-3235-4605-8b3d-db5a9b575353,https://biolit.fr/sorties/sortie-3d0c77eb-3235-4605-8b3d-db5a9b575353/,Marine,,07/05/2016,9.0000000,11.0000000,50.829404000000,1.589868000000,,Plage du Noirda,21538,observation-3d0c77eb-3235-4605-8b3d-db5a9b575353,https://biolit.fr/observations/observation-3d0c77eb-3235-4605-8b3d-db5a9b575353/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1456.JPG,,FALSE, +N1,22339,sortie-3d0c77eb-3235-4605-8b3d-db5a9b575353,https://biolit.fr/sorties/sortie-3d0c77eb-3235-4605-8b3d-db5a9b575353/,Marine,,07/05/2016,9.0000000,11.0000000,50.829404000000,1.589868000000,,Plage du Noirda,21540,observation-3d0c77eb-3235-4605-8b3d-db5a9b575353-2,https://biolit.fr/observations/observation-3d0c77eb-3235-4605-8b3d-db5a9b575353-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1457.JPG,,FALSE, +N1,22339,sortie-3d0c77eb-3235-4605-8b3d-db5a9b575353,https://biolit.fr/sorties/sortie-3d0c77eb-3235-4605-8b3d-db5a9b575353/,Marine,,07/05/2016,9.0000000,11.0000000,50.829404000000,1.589868000000,,Plage du Noirda,21542,observation-3d0c77eb-3235-4605-8b3d-db5a9b575353-3,https://biolit.fr/observations/observation-3d0c77eb-3235-4605-8b3d-db5a9b575353-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1458.JPG,,FALSE, +N1,22339,sortie-3d0c77eb-3235-4605-8b3d-db5a9b575353,https://biolit.fr/sorties/sortie-3d0c77eb-3235-4605-8b3d-db5a9b575353/,Marine,,07/05/2016,9.0000000,11.0000000,50.829404000000,1.589868000000,,Plage du Noirda,21544,observation-3d0c77eb-3235-4605-8b3d-db5a9b575353-4,https://biolit.fr/observations/observation-3d0c77eb-3235-4605-8b3d-db5a9b575353-4/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1459.jpg,,TRUE, +N1,22339,sortie-3d0c77eb-3235-4605-8b3d-db5a9b575353,https://biolit.fr/sorties/sortie-3d0c77eb-3235-4605-8b3d-db5a9b575353/,Marine,,07/05/2016,9.0000000,11.0000000,50.829404000000,1.589868000000,,Plage du Noirda,21546,observation-3d0c77eb-3235-4605-8b3d-db5a9b575353-5,https://biolit.fr/observations/observation-3d0c77eb-3235-4605-8b3d-db5a9b575353-5/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1460.jpg,,TRUE, +N1,22340,sortie-20655a3b-e51d-488a-a33c-8a11da01a541,https://biolit.fr/sorties/sortie-20655a3b-e51d-488a-a33c-8a11da01a541/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829207000000,1.589431000000,,Audresselles,21548,observation-20655a3b-e51d-488a-a33c-8a11da01a541,https://biolit.fr/observations/observation-20655a3b-e51d-488a-a33c-8a11da01a541/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCF9833-scaled.jpg,,TRUE, +N1,22340,sortie-20655a3b-e51d-488a-a33c-8a11da01a541,https://biolit.fr/sorties/sortie-20655a3b-e51d-488a-a33c-8a11da01a541/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829207000000,1.589431000000,,Audresselles,21550,observation-20655a3b-e51d-488a-a33c-8a11da01a541-2,https://biolit.fr/observations/observation-20655a3b-e51d-488a-a33c-8a11da01a541-2/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1100134-scaled.jpg,,TRUE, +N1,22340,sortie-20655a3b-e51d-488a-a33c-8a11da01a541,https://biolit.fr/sorties/sortie-20655a3b-e51d-488a-a33c-8a11da01a541/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829207000000,1.589431000000,,Audresselles,21552,observation-20655a3b-e51d-488a-a33c-8a11da01a541-3,https://biolit.fr/observations/observation-20655a3b-e51d-488a-a33c-8a11da01a541-3/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCF9876-scaled.jpg,,TRUE, +N1,22340,sortie-20655a3b-e51d-488a-a33c-8a11da01a541,https://biolit.fr/sorties/sortie-20655a3b-e51d-488a-a33c-8a11da01a541/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829207000000,1.589431000000,,Audresselles,21554,observation-20655a3b-e51d-488a-a33c-8a11da01a541-4,https://biolit.fr/observations/observation-20655a3b-e51d-488a-a33c-8a11da01a541-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCF9809-scaled.jpg,,FALSE, +N1,22340,sortie-20655a3b-e51d-488a-a33c-8a11da01a541,https://biolit.fr/sorties/sortie-20655a3b-e51d-488a-a33c-8a11da01a541/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829207000000,1.589431000000,,Audresselles,21556,observation-20655a3b-e51d-488a-a33c-8a11da01a541-5,https://biolit.fr/observations/observation-20655a3b-e51d-488a-a33c-8a11da01a541-5/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCF9835-scaled.jpg,,TRUE, +N1,22340,sortie-20655a3b-e51d-488a-a33c-8a11da01a541,https://biolit.fr/sorties/sortie-20655a3b-e51d-488a-a33c-8a11da01a541/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829207000000,1.589431000000,,Audresselles,21558,observation-20655a3b-e51d-488a-a33c-8a11da01a541-6,https://biolit.fr/observations/observation-20655a3b-e51d-488a-a33c-8a11da01a541-6/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCF9839-scaled.jpg,,FALSE, +N1,22340,sortie-20655a3b-e51d-488a-a33c-8a11da01a541,https://biolit.fr/sorties/sortie-20655a3b-e51d-488a-a33c-8a11da01a541/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829207000000,1.589431000000,,Audresselles,21560,observation-20655a3b-e51d-488a-a33c-8a11da01a541-7,https://biolit.fr/observations/observation-20655a3b-e51d-488a-a33c-8a11da01a541-7/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1100092-scaled.jpg,,FALSE, +N1,22340,sortie-20655a3b-e51d-488a-a33c-8a11da01a541,https://biolit.fr/sorties/sortie-20655a3b-e51d-488a-a33c-8a11da01a541/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829207000000,1.589431000000,,Audresselles,21562,observation-20655a3b-e51d-488a-a33c-8a11da01a541-8,https://biolit.fr/observations/observation-20655a3b-e51d-488a-a33c-8a11da01a541-8/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1100094-scaled.jpg,,FALSE, +N1,22340,sortie-20655a3b-e51d-488a-a33c-8a11da01a541,https://biolit.fr/sorties/sortie-20655a3b-e51d-488a-a33c-8a11da01a541/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829207000000,1.589431000000,,Audresselles,21564,observation-20655a3b-e51d-488a-a33c-8a11da01a541-9,https://biolit.fr/observations/observation-20655a3b-e51d-488a-a33c-8a11da01a541-9/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1100133-scaled.jpg,,TRUE, +N1,22341,sortie-24ced503-6972-4a64-bdbf-67b1f78d5699,https://biolit.fr/sorties/sortie-24ced503-6972-4a64-bdbf-67b1f78d5699/,azelie,,4/15/2016 0:00,16.0000000,16.0:15,48.629224000000,-2.471313000000,,"Plage du centre, Erquy, Côtes-d'Armor",21566,observation-24ced503-6972-4a64-bdbf-67b1f78d5699,https://biolit.fr/observations/observation-24ced503-6972-4a64-bdbf-67b1f78d5699/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_2459.jpg,,TRUE, +N1,22341,sortie-24ced503-6972-4a64-bdbf-67b1f78d5699,https://biolit.fr/sorties/sortie-24ced503-6972-4a64-bdbf-67b1f78d5699/,azelie,,4/15/2016 0:00,16.0000000,16.0:15,48.629224000000,-2.471313000000,,"Plage du centre, Erquy, Côtes-d'Armor",21568,observation-24ced503-6972-4a64-bdbf-67b1f78d5699-2,https://biolit.fr/observations/observation-24ced503-6972-4a64-bdbf-67b1f78d5699-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_2457.jpg,,TRUE, +N1,22341,sortie-24ced503-6972-4a64-bdbf-67b1f78d5699,https://biolit.fr/sorties/sortie-24ced503-6972-4a64-bdbf-67b1f78d5699/,azelie,,4/15/2016 0:00,16.0000000,16.0:15,48.629224000000,-2.471313000000,,"Plage du centre, Erquy, Côtes-d'Armor",21570,observation-24ced503-6972-4a64-bdbf-67b1f78d5699-3,https://biolit.fr/observations/observation-24ced503-6972-4a64-bdbf-67b1f78d5699-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_2458.jpg,,TRUE, +N1,22341,sortie-24ced503-6972-4a64-bdbf-67b1f78d5699,https://biolit.fr/sorties/sortie-24ced503-6972-4a64-bdbf-67b1f78d5699/,azelie,,4/15/2016 0:00,16.0000000,16.0:15,48.629224000000,-2.471313000000,,"Plage du centre, Erquy, Côtes-d'Armor",21572,observation-24ced503-6972-4a64-bdbf-67b1f78d5699-4,https://biolit.fr/observations/observation-24ced503-6972-4a64-bdbf-67b1f78d5699-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_2455.jpg,,FALSE, +N1,22341,sortie-24ced503-6972-4a64-bdbf-67b1f78d5699,https://biolit.fr/sorties/sortie-24ced503-6972-4a64-bdbf-67b1f78d5699/,azelie,,4/15/2016 0:00,16.0000000,16.0:15,48.629224000000,-2.471313000000,,"Plage du centre, Erquy, Côtes-d'Armor",21574,observation-24ced503-6972-4a64-bdbf-67b1f78d5699-5,https://biolit.fr/observations/observation-24ced503-6972-4a64-bdbf-67b1f78d5699-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_2453.jpg,,TRUE, +N1,22341,sortie-24ced503-6972-4a64-bdbf-67b1f78d5699,https://biolit.fr/sorties/sortie-24ced503-6972-4a64-bdbf-67b1f78d5699/,azelie,,4/15/2016 0:00,16.0000000,16.0:15,48.629224000000,-2.471313000000,,"Plage du centre, Erquy, Côtes-d'Armor",21576,observation-24ced503-6972-4a64-bdbf-67b1f78d5699-6,https://biolit.fr/observations/observation-24ced503-6972-4a64-bdbf-67b1f78d5699-6/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_2452.jpg,,TRUE, +N1,22341,sortie-24ced503-6972-4a64-bdbf-67b1f78d5699,https://biolit.fr/sorties/sortie-24ced503-6972-4a64-bdbf-67b1f78d5699/,azelie,,4/15/2016 0:00,16.0000000,16.0:15,48.629224000000,-2.471313000000,,"Plage du centre, Erquy, Côtes-d'Armor",21578,observation-24ced503-6972-4a64-bdbf-67b1f78d5699-7,https://biolit.fr/observations/observation-24ced503-6972-4a64-bdbf-67b1f78d5699-7/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_2450.jpg,,TRUE, +N1,22341,sortie-24ced503-6972-4a64-bdbf-67b1f78d5699,https://biolit.fr/sorties/sortie-24ced503-6972-4a64-bdbf-67b1f78d5699/,azelie,,4/15/2016 0:00,16.0000000,16.0:15,48.629224000000,-2.471313000000,,"Plage du centre, Erquy, Côtes-d'Armor",21580,observation-24ced503-6972-4a64-bdbf-67b1f78d5699-8,https://biolit.fr/observations/observation-24ced503-6972-4a64-bdbf-67b1f78d5699-8/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_2449.jpg,,TRUE, +N1,22341,sortie-24ced503-6972-4a64-bdbf-67b1f78d5699,https://biolit.fr/sorties/sortie-24ced503-6972-4a64-bdbf-67b1f78d5699/,azelie,,4/15/2016 0:00,16.0000000,16.0:15,48.629224000000,-2.471313000000,,"Plage du centre, Erquy, Côtes-d'Armor",21582,observation-24ced503-6972-4a64-bdbf-67b1f78d5699-9,https://biolit.fr/observations/observation-24ced503-6972-4a64-bdbf-67b1f78d5699-9/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_2448-scaled.jpg,,TRUE, +N1,22341,sortie-24ced503-6972-4a64-bdbf-67b1f78d5699,https://biolit.fr/sorties/sortie-24ced503-6972-4a64-bdbf-67b1f78d5699/,azelie,,4/15/2016 0:00,16.0000000,16.0:15,48.629224000000,-2.471313000000,,"Plage du centre, Erquy, Côtes-d'Armor",21584,observation-24ced503-6972-4a64-bdbf-67b1f78d5699-10,https://biolit.fr/observations/observation-24ced503-6972-4a64-bdbf-67b1f78d5699-10/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/IMG_2460-scaled.jpg,,TRUE, +N1,22342,sortie-519b90d6-a067-4cff-a831-e058ad38947e,https://biolit.fr/sorties/sortie-519b90d6-a067-4cff-a831-e058ad38947e/,nicole bunel,,3/20/2016 0:00,12.0000000,13.0:15,48.641477000000,-2.070988000000,,Dinard - Plage de Saint Enogat,21586,observation-519b90d6-a067-4cff-a831-e058ad38947e,https://biolit.fr/observations/observation-519b90d6-a067-4cff-a831-e058ad38947e/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/05/Quadrat 2-ascophylle.jpg,,TRUE, +N1,22342,sortie-519b90d6-a067-4cff-a831-e058ad38947e,https://biolit.fr/sorties/sortie-519b90d6-a067-4cff-a831-e058ad38947e/,nicole bunel,,3/20/2016 0:00,12.0000000,13.0:15,48.641477000000,-2.070988000000,,Dinard - Plage de Saint Enogat,21588,observation-519b90d6-a067-4cff-a831-e058ad38947e-2,https://biolit.fr/observations/observation-519b90d6-a067-4cff-a831-e058ad38947e-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/littorines obtuses.jpg,,TRUE, +N1,22342,sortie-519b90d6-a067-4cff-a831-e058ad38947e,https://biolit.fr/sorties/sortie-519b90d6-a067-4cff-a831-e058ad38947e/,nicole bunel,,3/20/2016 0:00,12.0000000,13.0:15,48.641477000000,-2.070988000000,,Dinard - Plage de Saint Enogat,21590,observation-519b90d6-a067-4cff-a831-e058ad38947e-3,https://biolit.fr/observations/observation-519b90d6-a067-4cff-a831-e058ad38947e-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/pourpre.jpg,,TRUE, +N1,22342,sortie-519b90d6-a067-4cff-a831-e058ad38947e,https://biolit.fr/sorties/sortie-519b90d6-a067-4cff-a831-e058ad38947e/,nicole bunel,,3/20/2016 0:00,12.0000000,13.0:15,48.641477000000,-2.070988000000,,Dinard - Plage de Saint Enogat,21592,observation-519b90d6-a067-4cff-a831-e058ad38947e-4,https://biolit.fr/observations/observation-519b90d6-a067-4cff-a831-e058ad38947e-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/pourpre ouverture.jpg,,TRUE, +N1,22342,sortie-519b90d6-a067-4cff-a831-e058ad38947e,https://biolit.fr/sorties/sortie-519b90d6-a067-4cff-a831-e058ad38947e/,nicole bunel,,3/20/2016 0:00,12.0000000,13.0:15,48.641477000000,-2.070988000000,,Dinard - Plage de Saint Enogat,21594,observation-519b90d6-a067-4cff-a831-e058ad38947e-5,https://biolit.fr/observations/observation-519b90d6-a067-4cff-a831-e058ad38947e-5/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/patelles.jpg,,TRUE, +N1,22343,sortie-ad471d44-f5ea-4c62-b52a-53a1f7377c4e,https://biolit.fr/sorties/sortie-ad471d44-f5ea-4c62-b52a-53a1f7377c4e/,nicole bunel,,3/20/2016 0:00,12.0000000,13.0000000,48.641463000000,-2.0706390000,,Dinard - Plage de Saint Enogat,21598,observation-ad471d44-f5ea-4c62-b52a-53a1f7377c4e,https://biolit.fr/observations/observation-ad471d44-f5ea-4c62-b52a-53a1f7377c4e/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/IMGP6545_tn.jpg,,TRUE, +N1,22343,sortie-ad471d44-f5ea-4c62-b52a-53a1f7377c4e,https://biolit.fr/sorties/sortie-ad471d44-f5ea-4c62-b52a-53a1f7377c4e/,nicole bunel,,3/20/2016 0:00,12.0000000,13.0000000,48.641463000000,-2.0706390000,,Dinard - Plage de Saint Enogat,21600,observation-ad471d44-f5ea-4c62-b52a-53a1f7377c4e-2,https://biolit.fr/observations/observation-ad471d44-f5ea-4c62-b52a-53a1f7377c4e-2/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMGP6547_tn.jpg,,TRUE, +N1,22343,sortie-ad471d44-f5ea-4c62-b52a-53a1f7377c4e,https://biolit.fr/sorties/sortie-ad471d44-f5ea-4c62-b52a-53a1f7377c4e/,nicole bunel,,3/20/2016 0:00,12.0000000,13.0000000,48.641463000000,-2.0706390000,,Dinard - Plage de Saint Enogat,21602,observation-ad471d44-f5ea-4c62-b52a-53a1f7377c4e-3,https://biolit.fr/observations/observation-ad471d44-f5ea-4c62-b52a-53a1f7377c4e-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMGP6554_tn.jpg,,FALSE, +N1,22343,sortie-ad471d44-f5ea-4c62-b52a-53a1f7377c4e,https://biolit.fr/sorties/sortie-ad471d44-f5ea-4c62-b52a-53a1f7377c4e/,nicole bunel,,3/20/2016 0:00,12.0000000,13.0000000,48.641463000000,-2.0706390000,,Dinard - Plage de Saint Enogat,21604,observation-ad471d44-f5ea-4c62-b52a-53a1f7377c4e-4,https://biolit.fr/observations/observation-ad471d44-f5ea-4c62-b52a-53a1f7377c4e-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMGP6564_tn.jpg,,FALSE, +N1,22344,sortie-1df0d270-9321-454e-84c3-e18ad3049e95,https://biolit.fr/sorties/sortie-1df0d270-9321-454e-84c3-e18ad3049e95/,Alain Paitry,,04/09/2016,16.0:45,17.0000000,48.628596000000,-2.187077000000,,St Jacut de la mer,21606,observation-1df0d270-9321-454e-84c3-e18ad3049e95,https://biolit.fr/observations/observation-1df0d270-9321-454e-84c3-e18ad3049e95/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/IMGP3760-scaled.jpg,,TRUE, +N1,22344,sortie-1df0d270-9321-454e-84c3-e18ad3049e95,https://biolit.fr/sorties/sortie-1df0d270-9321-454e-84c3-e18ad3049e95/,Alain Paitry,,04/09/2016,16.0:45,17.0000000,48.628596000000,-2.187077000000,,St Jacut de la mer,21608,observation-1df0d270-9321-454e-84c3-e18ad3049e95-2,https://biolit.fr/observations/observation-1df0d270-9321-454e-84c3-e18ad3049e95-2/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMGP3765-scaled.jpg,,TRUE, +N1,22345,sortie-4bce129a-7405-4001-a4f6-5cf78b3e7fb5,https://biolit.fr/sorties/sortie-4bce129a-7405-4001-a4f6-5cf78b3e7fb5/,Alain Paitry,,04/09/2016,16.000005,16.0000000,48.617268000000,-2.204570000000,,St Jacut de la mer,21610,observation-4bce129a-7405-4001-a4f6-5cf78b3e7fb5,https://biolit.fr/observations/observation-4bce129a-7405-4001-a4f6-5cf78b3e7fb5/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/IMGP3733-scaled.jpg,,TRUE, +N1,22345,sortie-4bce129a-7405-4001-a4f6-5cf78b3e7fb5,https://biolit.fr/sorties/sortie-4bce129a-7405-4001-a4f6-5cf78b3e7fb5/,Alain Paitry,,04/09/2016,16.000005,16.0000000,48.617268000000,-2.204570000000,,St Jacut de la mer,21612,observation-4bce129a-7405-4001-a4f6-5cf78b3e7fb5-2,https://biolit.fr/observations/observation-4bce129a-7405-4001-a4f6-5cf78b3e7fb5-2/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/IMGP3736-scaled.jpg,,TRUE, +N1,22346,sortie-ed91dc86-78ea-43aa-912c-5245e262f2f3,https://biolit.fr/sorties/sortie-ed91dc86-78ea-43aa-912c-5245e262f2f3/,Alain Paitry,,04/09/2016,15.0:45,15.0:55,48.621697000000,-2.207402000000,,St Jacut de la mer,21614,observation-ed91dc86-78ea-43aa-912c-5245e262f2f3,https://biolit.fr/observations/observation-ed91dc86-78ea-43aa-912c-5245e262f2f3/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/IMGP3745-scaled.jpg,,TRUE, +N1,22346,sortie-ed91dc86-78ea-43aa-912c-5245e262f2f3,https://biolit.fr/sorties/sortie-ed91dc86-78ea-43aa-912c-5245e262f2f3/,Alain Paitry,,04/09/2016,15.0:45,15.0:55,48.621697000000,-2.207402000000,,St Jacut de la mer,21616,observation-ed91dc86-78ea-43aa-912c-5245e262f2f3-2,https://biolit.fr/observations/observation-ed91dc86-78ea-43aa-912c-5245e262f2f3-2/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/IMGP3747-scaled.jpg,,TRUE, +N1,22347,sortie-27f08ddd-65c0-4201-98f2-b307f1df60cb,https://biolit.fr/sorties/sortie-27f08ddd-65c0-4201-98f2-b307f1df60cb/,mikme,,3/20/2016 0:00,11.0000000,13.0000000,48.640508000000,-2.07230200000,,plage Saint Enogat,21618,observation-27f08ddd-65c0-4201-98f2-b307f1df60cb,https://biolit.fr/observations/observation-27f08ddd-65c0-4201-98f2-b307f1df60cb/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1060510-scaled.jpg,,TRUE, +N1,22348,sortie-e1b357fa-2e4d-4e7a-83ca-883ff1c8a3b0,https://biolit.fr/sorties/sortie-e1b357fa-2e4d-4e7a-83ca-883ff1c8a3b0/,Bistif74,,2/19/2016 0:00,11.0000000,12.0000000,48.639489000000,-2.055791000000,,Dinard,21620,observation-e1b357fa-2e4d-4e7a-83ca-883ff1c8a3b0,https://biolit.fr/observations/observation-e1b357fa-2e4d-4e7a-83ca-883ff1c8a3b0/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_0021-scaled.jpg,,FALSE, +N1,22349,sortie-07764e8e-8065-4524-a0f7-778e8e98a95c,https://biolit.fr/sorties/sortie-07764e8e-8065-4524-a0f7-778e8e98a95c/,Bistif74,,2/19/2016 0:00,11.0000000,12.0000000,48.640742000000,-2.07317100000,,Dinard ,21622,observation-07764e8e-8065-4524-a0f7-778e8e98a95c,https://biolit.fr/observations/observation-07764e8e-8065-4524-a0f7-778e8e98a95c/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/05/IMG_0012-scaled.jpg,,TRUE, +N1,22350,sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb,https://biolit.fr/sorties/sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb/,Alicia,,9/21/2015 0:00,16.0000000,17.0000000,47.642485000000,-3.429865000000,,Port Mélite ,21624,observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb,https://biolit.fr/observations/observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb/,Littorina compressa,Littorine à lignes noires,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1110882-scaled.jpg,,TRUE, +N1,22350,sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb,https://biolit.fr/sorties/sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb/,Alicia,,9/21/2015 0:00,16.0000000,17.0000000,47.642485000000,-3.429865000000,,Port Mélite ,21626,observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-2,https://biolit.fr/observations/observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-2/,Littorina compressa,Littorine à lignes noires,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1110874-scaled.jpg,,TRUE, +N1,22350,sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb,https://biolit.fr/sorties/sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb/,Alicia,,9/21/2015 0:00,16.0000000,17.0000000,47.642485000000,-3.429865000000,,Port Mélite ,21628,observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-3,https://biolit.fr/observations/observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1110871-scaled.jpg,,TRUE, +N1,22350,sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb,https://biolit.fr/sorties/sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb/,Alicia,,9/21/2015 0:00,16.0000000,17.0000000,47.642485000000,-3.429865000000,,Port Mélite ,21630,observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-4,https://biolit.fr/observations/observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-4/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1110870-scaled.jpg,,TRUE, +N1,22350,sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb,https://biolit.fr/sorties/sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb/,Alicia,,9/21/2015 0:00,16.0000000,17.0000000,47.642485000000,-3.429865000000,,Port Mélite ,21632,observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-5,https://biolit.fr/observations/observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1110869-scaled.jpg,,TRUE, +N1,22350,sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb,https://biolit.fr/sorties/sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb/,Alicia,,9/21/2015 0:00,16.0000000,17.0000000,47.642485000000,-3.429865000000,,Port Mélite ,21634,observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-6,https://biolit.fr/observations/observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-6/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1110861-scaled.jpg,,TRUE, +N1,22350,sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb,https://biolit.fr/sorties/sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb/,Alicia,,9/21/2015 0:00,16.0000000,17.0000000,47.642485000000,-3.429865000000,,Port Mélite ,21636,observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-7,https://biolit.fr/observations/observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-7/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1110860-scaled.jpg,,FALSE, +N1,22350,sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb,https://biolit.fr/sorties/sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb/,Alicia,,9/21/2015 0:00,16.0000000,17.0000000,47.642485000000,-3.429865000000,,Port Mélite ,21638,observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-8,https://biolit.fr/observations/observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-8/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1110858-scaled.jpg,,TRUE, +N1,22350,sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb,https://biolit.fr/sorties/sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb/,Alicia,,9/21/2015 0:00,16.0000000,17.0000000,47.642485000000,-3.429865000000,,Port Mélite ,21640,observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-9,https://biolit.fr/observations/observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-9/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1110857-scaled.jpg,,FALSE, +N1,22350,sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb,https://biolit.fr/sorties/sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb/,Alicia,,9/21/2015 0:00,16.0000000,17.0000000,47.642485000000,-3.429865000000,,Port Mélite ,21642,observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-10,https://biolit.fr/observations/observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-10/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1110854-scaled.jpg,,TRUE, +N1,22350,sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb,https://biolit.fr/sorties/sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb/,Alicia,,9/21/2015 0:00,16.0000000,17.0000000,47.642485000000,-3.429865000000,,Port Mélite ,21644,observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-11,https://biolit.fr/observations/observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-11/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1110853-scaled.jpg,,FALSE, +N1,22350,sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb,https://biolit.fr/sorties/sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb/,Alicia,,9/21/2015 0:00,16.0000000,17.0000000,47.642485000000,-3.429865000000,,Port Mélite ,21646,observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-12,https://biolit.fr/observations/observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-12/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1110852-scaled.jpg,,FALSE, +N1,22350,sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb,https://biolit.fr/sorties/sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb/,Alicia,,9/21/2015 0:00,16.0000000,17.0000000,47.642485000000,-3.429865000000,,Port Mélite ,21648,observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-13,https://biolit.fr/observations/observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-13/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1110850-scaled.jpg,,FALSE, +N1,22350,sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb,https://biolit.fr/sorties/sortie-98c00150-7b78-4ae6-8d4e-4bb796c25bdb/,Alicia,,9/21/2015 0:00,16.0000000,17.0000000,47.642485000000,-3.429865000000,,Port Mélite ,21650,observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-14,https://biolit.fr/observations/observation-98c00150-7b78-4ae6-8d4e-4bb796c25bdb-14/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1110848-scaled.jpg,,TRUE, +N1,22351,sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6,https://biolit.fr/sorties/sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6/,Alicia,,9/17/2015 0:00,12.0000000,14.0000000,47.625326000000,-3.436385000000,,Locmaria,21652,observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6,https://biolit.fr/observations/observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1110705-scaled.jpg,,TRUE, +N1,22351,sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6,https://biolit.fr/sorties/sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6/,Alicia,,9/17/2015 0:00,12.0000000,14.0000000,47.625326000000,-3.436385000000,,Locmaria,21654,observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6-2,https://biolit.fr/observations/observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1110707-scaled.jpg,,TRUE, +N1,22351,sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6,https://biolit.fr/sorties/sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6/,Alicia,,9/17/2015 0:00,12.0000000,14.0000000,47.625326000000,-3.436385000000,,Locmaria,21656,observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6-3,https://biolit.fr/observations/observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1110766-scaled.jpg,,FALSE, +N1,22351,sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6,https://biolit.fr/sorties/sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6/,Alicia,,9/17/2015 0:00,12.0000000,14.0000000,47.625326000000,-3.436385000000,,Locmaria,21658,observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6-4,https://biolit.fr/observations/observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1110767-scaled.jpg,,FALSE, +N1,22351,sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6,https://biolit.fr/sorties/sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6/,Alicia,,9/17/2015 0:00,12.0000000,14.0000000,47.625326000000,-3.436385000000,,Locmaria,21660,observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6-5,https://biolit.fr/observations/observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6-5/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1110780-scaled.jpg,,FALSE, +N1,22351,sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6,https://biolit.fr/sorties/sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6/,Alicia,,9/17/2015 0:00,12.0000000,14.0000000,47.625326000000,-3.436385000000,,Locmaria,21662,observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6-6,https://biolit.fr/observations/observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6-6/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1110783-scaled.jpg,,FALSE, +N1,22351,sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6,https://biolit.fr/sorties/sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6/,Alicia,,9/17/2015 0:00,12.0000000,14.0000000,47.625326000000,-3.436385000000,,Locmaria,21664,observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6-7,https://biolit.fr/observations/observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6-7/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1110793-scaled.jpg,,TRUE, +N1,22351,sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6,https://biolit.fr/sorties/sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6/,Alicia,,9/17/2015 0:00,12.0000000,14.0000000,47.625326000000,-3.436385000000,,Locmaria,21666,observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6-8,https://biolit.fr/observations/observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6-8/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1110794-scaled.jpg,,FALSE, +N1,22351,sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6,https://biolit.fr/sorties/sortie-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6/,Alicia,,9/17/2015 0:00,12.0000000,14.0000000,47.625326000000,-3.436385000000,,Locmaria,21668,observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6-9,https://biolit.fr/observations/observation-4a67e05d-62f6-41f7-bf5c-f10bafd07ed6-9/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1110811-scaled.jpg,,FALSE, +N1,22352,sortie-15ae4740-1d80-4e67-bd7d-adf40692ccf5,https://biolit.fr/sorties/sortie-15ae4740-1d80-4e67-bd7d-adf40692ccf5/,JF P,,08/04/2015,9.0000000,11.0000000,48.637197000000,-2.070725000000,,35800 St Enogat,21670,observation-15ae4740-1d80-4e67-bd7d-adf40692ccf5,https://biolit.fr/observations/observation-15ae4740-1d80-4e67-bd7d-adf40692ccf5/,,,,https://biolit.fr/wp-content/uploads/2023/05/WP_20150801_006-scaled.jpg,,FALSE, +N1,22353,sortie-d80136ed-182d-4448-b754-c17b483fff37,https://biolit.fr/sorties/sortie-d80136ed-182d-4448-b754-c17b483fff37/,ESTRAN Cité de la Mer,,6/15/2015 0:00,12.0000000,14.0000000,49.895570000000,0.876770000000,,Saint Aubin sur Mer,21672,observation-d80136ed-182d-4448-b754-c17b483fff37,https://biolit.fr/observations/observation-d80136ed-182d-4448-b754-c17b483fff37/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1020858-scaled.jpg,,TRUE, +N1,22354,sortie-a560660b-ed04-4c42-aa54-f008dbfe38b2,https://biolit.fr/sorties/sortie-a560660b-ed04-4c42-aa54-f008dbfe38b2/,ESTRAN Cité de la Mer,,5/23/2015 0:00,11.0000000,12.0000000,49.925898000000,1.065056000000,,bas fort blanc,21674,observation-a560660b-ed04-4c42-aa54-f008dbfe38b2,https://biolit.fr/observations/observation-a560660b-ed04-4c42-aa54-f008dbfe38b2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN0991.JPG,,TRUE, +N1,22354,sortie-a560660b-ed04-4c42-aa54-f008dbfe38b2,https://biolit.fr/sorties/sortie-a560660b-ed04-4c42-aa54-f008dbfe38b2/,ESTRAN Cité de la Mer,,5/23/2015 0:00,11.0000000,12.0000000,49.925898000000,1.065056000000,,bas fort blanc,21676,observation-a560660b-ed04-4c42-aa54-f008dbfe38b2-2,https://biolit.fr/observations/observation-a560660b-ed04-4c42-aa54-f008dbfe38b2-2/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN0992.JPG,,TRUE, +N1,22354,sortie-a560660b-ed04-4c42-aa54-f008dbfe38b2,https://biolit.fr/sorties/sortie-a560660b-ed04-4c42-aa54-f008dbfe38b2/,ESTRAN Cité de la Mer,,5/23/2015 0:00,11.0000000,12.0000000,49.925898000000,1.065056000000,,bas fort blanc,21678,observation-a560660b-ed04-4c42-aa54-f008dbfe38b2-3,https://biolit.fr/observations/observation-a560660b-ed04-4c42-aa54-f008dbfe38b2-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN0994.JPG,,FALSE, +N1,22354,sortie-a560660b-ed04-4c42-aa54-f008dbfe38b2,https://biolit.fr/sorties/sortie-a560660b-ed04-4c42-aa54-f008dbfe38b2/,ESTRAN Cité de la Mer,,5/23/2015 0:00,11.0000000,12.0000000,49.925898000000,1.065056000000,,bas fort blanc,21680,observation-a560660b-ed04-4c42-aa54-f008dbfe38b2-4,https://biolit.fr/observations/observation-a560660b-ed04-4c42-aa54-f008dbfe38b2-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN0995.JPG,,TRUE, +N1,22355,sortie-f8a7ce2e-4823-4a02-bfbe-204a2ecd34d0,https://biolit.fr/sorties/sortie-f8a7ce2e-4823-4a02-bfbe-204a2ecd34d0/,Emmanuelle,,5/24/2015 0:00,16.0000000,23.0000000,47.85362900000,-3.978055000000,,BEG MEIL Finistère,21682,observation-f8a7ce2e-4823-4a02-bfbe-204a2ecd34d0,https://biolit.fr/observations/observation-f8a7ce2e-4823-4a02-bfbe-204a2ecd34d0/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/SAM_0363_3-scaled.jpg,,TRUE, +N1,22356,sortie-e2835a4e-fc74-40bf-b5c0-54cbfa664425,https://biolit.fr/sorties/sortie-e2835a4e-fc74-40bf-b5c0-54cbfa664425/,Emmanuelle,,5/24/2015 0:00,18.0000000,20.0000000,47.854695000000,-3.975437000000,,BEG MEIL Finistère,21684,observation-e2835a4e-fc74-40bf-b5c0-54cbfa664425,https://biolit.fr/observations/observation-e2835a4e-fc74-40bf-b5c0-54cbfa664425/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/05/SAM_0361-scaled.jpg,,TRUE, +N1,22356,sortie-e2835a4e-fc74-40bf-b5c0-54cbfa664425,https://biolit.fr/sorties/sortie-e2835a4e-fc74-40bf-b5c0-54cbfa664425/,Emmanuelle,,5/24/2015 0:00,18.0000000,20.0000000,47.854695000000,-3.975437000000,,BEG MEIL Finistère,21686,observation-e2835a4e-fc74-40bf-b5c0-54cbfa664425-2,https://biolit.fr/observations/observation-e2835a4e-fc74-40bf-b5c0-54cbfa664425-2/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/05/SAM_0363_2-scaled.jpg,,TRUE, +N1,22357,sortie-adcf155d-f277-4f59-be36-5e6374c089d8,https://biolit.fr/sorties/sortie-adcf155d-f277-4f59-be36-5e6374c089d8/,Parc de l'Estuaire,,4/25/2015 0:00,14.0000000,15.0000000,45.581975000000,-0.989988000000,,"Saint-Georges-de-Didonne, concheau de Suzac",21688,observation-adcf155d-f277-4f59-be36-5e6374c089d8,https://biolit.fr/observations/observation-adcf155d-f277-4f59-be36-5e6374c089d8/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/BigorneauRED.jpg,,TRUE, +N1,22357,sortie-adcf155d-f277-4f59-be36-5e6374c089d8,https://biolit.fr/sorties/sortie-adcf155d-f277-4f59-be36-5e6374c089d8/,Parc de l'Estuaire,,4/25/2015 0:00,14.0000000,15.0000000,45.581975000000,-0.989988000000,,"Saint-Georges-de-Didonne, concheau de Suzac",21690,observation-adcf155d-f277-4f59-be36-5e6374c089d8-2,https://biolit.fr/observations/observation-adcf155d-f277-4f59-be36-5e6374c089d8-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/Idotée granuleuse concheau Suzac 25.04.15RED.jpg,,FALSE, +N1,22357,sortie-adcf155d-f277-4f59-be36-5e6374c089d8,https://biolit.fr/sorties/sortie-adcf155d-f277-4f59-be36-5e6374c089d8/,Parc de l'Estuaire,,4/25/2015 0:00,14.0000000,15.0000000,45.581975000000,-0.989988000000,,"Saint-Georges-de-Didonne, concheau de Suzac",21692,observation-adcf155d-f277-4f59-be36-5e6374c089d8-3,https://biolit.fr/observations/observation-adcf155d-f277-4f59-be36-5e6374c089d8-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/littorinefabalisfucusdenté1RED.JPG,,TRUE, +N1,22357,sortie-adcf155d-f277-4f59-be36-5e6374c089d8,https://biolit.fr/sorties/sortie-adcf155d-f277-4f59-be36-5e6374c089d8/,Parc de l'Estuaire,,4/25/2015 0:00,14.0000000,15.0000000,45.581975000000,-0.989988000000,,"Saint-Georges-de-Didonne, concheau de Suzac",21694,observation-adcf155d-f277-4f59-be36-5e6374c089d8-4,https://biolit.fr/observations/observation-adcf155d-f277-4f59-be36-5e6374c089d8-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Bigorneaufucusdenté2red.jpg,,TRUE, +N1,22357,sortie-adcf155d-f277-4f59-be36-5e6374c089d8,https://biolit.fr/sorties/sortie-adcf155d-f277-4f59-be36-5e6374c089d8/,Parc de l'Estuaire,,4/25/2015 0:00,14.0000000,15.0000000,45.581975000000,-0.989988000000,,"Saint-Georges-de-Didonne, concheau de Suzac",21696,observation-adcf155d-f277-4f59-be36-5e6374c089d8-5,https://biolit.fr/observations/observation-adcf155d-f277-4f59-be36-5e6374c089d8-5/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Littorine fabalisredsurfucusdente.jpg,,TRUE, +N1,22357,sortie-adcf155d-f277-4f59-be36-5e6374c089d8,https://biolit.fr/sorties/sortie-adcf155d-f277-4f59-be36-5e6374c089d8/,Parc de l'Estuaire,,4/25/2015 0:00,14.0000000,15.0000000,45.581975000000,-0.989988000000,,"Saint-Georges-de-Didonne, concheau de Suzac",21698,observation-adcf155d-f277-4f59-be36-5e6374c089d8-6,https://biolit.fr/observations/observation-adcf155d-f277-4f59-be36-5e6374c089d8-6/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Littorinefabalisfucusdente2Red.jpg,,TRUE, +N1,22357,sortie-adcf155d-f277-4f59-be36-5e6374c089d8,https://biolit.fr/sorties/sortie-adcf155d-f277-4f59-be36-5e6374c089d8/,Parc de l'Estuaire,,4/25/2015 0:00,14.0000000,15.0000000,45.581975000000,-0.989988000000,,"Saint-Georges-de-Didonne, concheau de Suzac",21700,observation-adcf155d-f277-4f59-be36-5e6374c089d8-7,https://biolit.fr/observations/observation-adcf155d-f277-4f59-be36-5e6374c089d8-7/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/littorinefabalisfucusdente3red.jpg,,TRUE, +N1,22357,sortie-adcf155d-f277-4f59-be36-5e6374c089d8,https://biolit.fr/sorties/sortie-adcf155d-f277-4f59-be36-5e6374c089d8/,Parc de l'Estuaire,,4/25/2015 0:00,14.0000000,15.0000000,45.581975000000,-0.989988000000,,"Saint-Georges-de-Didonne, concheau de Suzac",21702,observation-adcf155d-f277-4f59-be36-5e6374c089d8-8,https://biolit.fr/observations/observation-adcf155d-f277-4f59-be36-5e6374c089d8-8/,,,,https://biolit.fr/wp-content/uploads/2023/05/versnereis à verifierred.jpg,,FALSE, +N1,22358,sortie-1e1d353b-19fe-477e-9006-6cca2808ab13,https://biolit.fr/sorties/sortie-1e1d353b-19fe-477e-9006-6cca2808ab13/,Phil,,4/23/2015 0:00,10.0000000,10.0000000,47.829441000000,-4.363237000000,,Pointe au bout Rue des Flots Penmarc'h 29,21704,observation-1e1d353b-19fe-477e-9006-6cca2808ab13,https://biolit.fr/observations/observation-1e1d353b-19fe-477e-9006-6cca2808ab13/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC03567.JPG,,TRUE, +N1,22359,sortie-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9,https://biolit.fr/sorties/sortie-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9/,figuier,,04/11/2015,8.0000000,9.0000000,50.416783000000,1.562107000000,,Berck sur mer 62,21706,observation-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9,https://biolit.fr/observations/observation-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9/,,,,https://biolit.fr/wp-content/uploads/2023/05/image.jpg,,FALSE, +N1,22359,sortie-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9,https://biolit.fr/sorties/sortie-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9/,figuier,,04/11/2015,8.0000000,9.0000000,50.416783000000,1.562107000000,,Berck sur mer 62,21708,observation-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9-2,https://biolit.fr/observations/observation-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/image_0.jpg,,TRUE, +N1,22359,sortie-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9,https://biolit.fr/sorties/sortie-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9/,figuier,,04/11/2015,8.0000000,9.0000000,50.416783000000,1.562107000000,,Berck sur mer 62,21710,observation-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9-3,https://biolit.fr/observations/observation-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/image_1.jpg,,FALSE, +N1,22359,sortie-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9,https://biolit.fr/sorties/sortie-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9/,figuier,,04/11/2015,8.0000000,9.0000000,50.416783000000,1.562107000000,,Berck sur mer 62,21712,observation-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9-4,https://biolit.fr/observations/observation-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/image_2.jpg,,FALSE, +N1,22359,sortie-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9,https://biolit.fr/sorties/sortie-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9/,figuier,,04/11/2015,8.0000000,9.0000000,50.416783000000,1.562107000000,,Berck sur mer 62,21714,observation-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9-5,https://biolit.fr/observations/observation-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9-5/,,,,https://biolit.fr/wp-content/uploads/2023/05/image_3.jpg,,FALSE, +N1,22359,sortie-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9,https://biolit.fr/sorties/sortie-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9/,figuier,,04/11/2015,8.0000000,9.0000000,50.416783000000,1.562107000000,,Berck sur mer 62,21716,observation-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9-6,https://biolit.fr/observations/observation-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9-6/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/image_4.jpg,,TRUE, +N1,22359,sortie-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9,https://biolit.fr/sorties/sortie-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9/,figuier,,04/11/2015,8.0000000,9.0000000,50.416783000000,1.562107000000,,Berck sur mer 62,21718,observation-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9-7,https://biolit.fr/observations/observation-9d1473fd-fdb8-4fd1-9fb9-01fde01c0de9-7/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/image_5.jpg,,TRUE, +N1,22360,sortie-e76e755a-1f8d-4349-80da-e3900e0953fd,https://biolit.fr/sorties/sortie-e76e755a-1f8d-4349-80da-e3900e0953fd/,Anne D,,04/04/2015,11.0000000,12.0000000,50.83198900000,1.588752000000,,Audresselles,21720,observation-e76e755a-1f8d-4349-80da-e3900e0953fd,https://biolit.fr/observations/observation-e76e755a-1f8d-4349-80da-e3900e0953fd/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN9081-scaled.jpg,,FALSE, +N1,22361,sortie-108a7af0-8892-4826-8b24-268377644634,https://biolit.fr/sorties/sortie-108a7af0-8892-4826-8b24-268377644634/,ESTRAN Cité de la Mer,,3/30/2015 0:00,14.0000000,15.0000000,49.916484000000,1.023696000000,,plage pourville ouest,21722,observation-108a7af0-8892-4826-8b24-268377644634,https://biolit.fr/observations/observation-108a7af0-8892-4826-8b24-268377644634/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN0814.JPG,,TRUE, +N1,22361,sortie-108a7af0-8892-4826-8b24-268377644634,https://biolit.fr/sorties/sortie-108a7af0-8892-4826-8b24-268377644634/,ESTRAN Cité de la Mer,,3/30/2015 0:00,14.0000000,15.0000000,49.916484000000,1.023696000000,,plage pourville ouest,21724,observation-108a7af0-8892-4826-8b24-268377644634-2,https://biolit.fr/observations/observation-108a7af0-8892-4826-8b24-268377644634-2/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN0815.JPG,,TRUE, +N1,22361,sortie-108a7af0-8892-4826-8b24-268377644634,https://biolit.fr/sorties/sortie-108a7af0-8892-4826-8b24-268377644634/,ESTRAN Cité de la Mer,,3/30/2015 0:00,14.0000000,15.0000000,49.916484000000,1.023696000000,,plage pourville ouest,21726,observation-108a7af0-8892-4826-8b24-268377644634-3,https://biolit.fr/observations/observation-108a7af0-8892-4826-8b24-268377644634-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN0816.JPG,,TRUE, +N1,22362,sortie-74fc7747-452e-41e5-9421-2c64f17344b0,https://biolit.fr/sorties/sortie-74fc7747-452e-41e5-9421-2c64f17344b0/,Morice,,3/27/2015 0:00,10.0000000,12.0000000,50.828546000000,1.589632000000,,Audresselles,21728,observation-74fc7747-452e-41e5-9421-2c64f17344b0,https://biolit.fr/observations/observation-74fc7747-452e-41e5-9421-2c64f17344b0/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1080878-scaled.jpg,,FALSE, +N1,22363,sortie-f70a8ef4-a066-43fe-8e9f-db113f8ca058,https://biolit.fr/sorties/sortie-f70a8ef4-a066-43fe-8e9f-db113f8ca058/,Parc de l'Estuaire,,3/22/2015 0:00,13.0000000,14.0000000,45.604009000000,-1.013506000000,,"Saint-Georges-de-Didonne,Pointe de Vallières",21730,observation-f70a8ef4-a066-43fe-8e9f-db113f8ca058,https://biolit.fr/observations/observation-f70a8ef4-a066-43fe-8e9f-db113f8ca058/,,,,https://biolit.fr/wp-content/uploads/2023/05/Patella vulgata Fucus denté.JPG,,FALSE, +N1,22364,sortie-269e3f24-298b-44da-9aca-23e89f28f1d5,https://biolit.fr/sorties/sortie-269e3f24-298b-44da-9aca-23e89f28f1d5/,Parc de l'Estuaire,,3/22/2015 0:00,13.0000000,14.0000000,45.604039000000,-1.013452000000,,"Saint-Georges-de-Didonne,Pointe de Vallières",21732,observation-269e3f24-298b-44da-9aca-23e89f28f1d5,https://biolit.fr/observations/observation-269e3f24-298b-44da-9aca-23e89f28f1d5/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Littorine fabalis dessous.JPG,,TRUE, +N1,22365,sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f,https://biolit.fr/sorties/sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f/,Anne D,,3/22/2015 0:00,8.0000000,11.0000000,50.871952000000,1.588344000000,,Audinghen Plage de la Sirène,21734,observation-b440c653-c967-42fe-bf95-7f8b8d55b15f,https://biolit.fr/observations/observation-b440c653-c967-42fe-bf95-7f8b8d55b15f/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN8912-scaled.jpg,,FALSE, +N1,22365,sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f,https://biolit.fr/sorties/sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f/,Anne D,,3/22/2015 0:00,8.0000000,11.0000000,50.871952000000,1.588344000000,,Audinghen Plage de la Sirène,21736,observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-2,https://biolit.fr/observations/observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN8917-scaled.jpg,,FALSE, +N1,22365,sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f,https://biolit.fr/sorties/sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f/,Anne D,,3/22/2015 0:00,8.0000000,11.0000000,50.871952000000,1.588344000000,,Audinghen Plage de la Sirène,21738,observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-3,https://biolit.fr/observations/observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN8932-scaled.jpg,,FALSE, +N1,22365,sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f,https://biolit.fr/sorties/sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f/,Anne D,,3/22/2015 0:00,8.0000000,11.0000000,50.871952000000,1.588344000000,,Audinghen Plage de la Sirène,21740,observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-4,https://biolit.fr/observations/observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN8943-scaled.jpg,,FALSE, +N1,22365,sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f,https://biolit.fr/sorties/sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f/,Anne D,,3/22/2015 0:00,8.0000000,11.0000000,50.871952000000,1.588344000000,,Audinghen Plage de la Sirène,21742,observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-5,https://biolit.fr/observations/observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-5/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/05/DSCN8945-scaled.jpg,,TRUE, +N1,22365,sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f,https://biolit.fr/sorties/sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f/,Anne D,,3/22/2015 0:00,8.0000000,11.0000000,50.871952000000,1.588344000000,,Audinghen Plage de la Sirène,21744,observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-6,https://biolit.fr/observations/observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-6/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/05/DSCN8957-scaled.jpg,,TRUE, +N1,22365,sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f,https://biolit.fr/sorties/sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f/,Anne D,,3/22/2015 0:00,8.0000000,11.0000000,50.871952000000,1.588344000000,,Audinghen Plage de la Sirène,21746,observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-7,https://biolit.fr/observations/observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-7/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN8949-scaled.jpg,,FALSE, +N1,22365,sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f,https://biolit.fr/sorties/sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f/,Anne D,,3/22/2015 0:00,8.0000000,11.0000000,50.871952000000,1.588344000000,,Audinghen Plage de la Sirène,21748,observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-8,https://biolit.fr/observations/observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-8/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN8955-scaled.jpg,,FALSE, +N1,22365,sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f,https://biolit.fr/sorties/sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f/,Anne D,,3/22/2015 0:00,8.0000000,11.0000000,50.871952000000,1.588344000000,,Audinghen Plage de la Sirène,21750,observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-9,https://biolit.fr/observations/observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-9/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN8990-scaled.jpg,,FALSE, +N1,22365,sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f,https://biolit.fr/sorties/sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f/,Anne D,,3/22/2015 0:00,8.0000000,11.0000000,50.871952000000,1.588344000000,,Audinghen Plage de la Sirène,21752,observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-10,https://biolit.fr/observations/observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-10/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN8930-scaled.jpg,,TRUE, +N1,22365,sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f,https://biolit.fr/sorties/sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f/,Anne D,,3/22/2015 0:00,8.0000000,11.0000000,50.871952000000,1.588344000000,,Audinghen Plage de la Sirène,21754,observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-11,https://biolit.fr/observations/observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-11/,Chondrus crispus,Goémon frisé,,https://biolit.fr/wp-content/uploads/2023/05/DSCN8937-scaled.jpg,,TRUE, +N1,22365,sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f,https://biolit.fr/sorties/sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f/,Anne D,,3/22/2015 0:00,8.0000000,11.0000000,50.871952000000,1.588344000000,,Audinghen Plage de la Sirène,21756,observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-12,https://biolit.fr/observations/observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-12/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN8915-scaled.jpg,,FALSE, +N1,22365,sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f,https://biolit.fr/sorties/sortie-b440c653-c967-42fe-bf95-7f8b8d55b15f/,Anne D,,3/22/2015 0:00,8.0000000,11.0000000,50.871952000000,1.588344000000,,Audinghen Plage de la Sirène,21758,observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-13,https://biolit.fr/observations/observation-b440c653-c967-42fe-bf95-7f8b8d55b15f-13/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/05/DSCN8946-scaled.jpg,,TRUE, +N1,22366,sortie-5f8ac968-e8d1-4568-872c-ee98f8197fcc,https://biolit.fr/sorties/sortie-5f8ac968-e8d1-4568-872c-ee98f8197fcc/,KatSea,,03/08/2015,18.0000000,18.0000000,50.682093000000,1.565479000000,,"equihen plage, lieu ""la crevasse""",21760,observation-5f8ac968-e8d1-4568-872c-ee98f8197fcc,https://biolit.fr/observations/observation-5f8ac968-e8d1-4568-872c-ee98f8197fcc/,,,,https://biolit.fr/wp-content/uploads/2023/05/equihen (75)-scaled.jpg,,FALSE, +N1,22367,sortie-8e4e1ecd-d06a-4c70-9d58-4376b3461b5d,https://biolit.fr/sorties/sortie-8e4e1ecd-d06a-4c70-9d58-4376b3461b5d/,Anne D,,2/22/2015 0:00,9.0000000,11.0000000,50.837762000000,1.584568000000,,Nord d'Audresselles,21762,observation-8e4e1ecd-d06a-4c70-9d58-4376b3461b5d,https://biolit.fr/observations/observation-8e4e1ecd-d06a-4c70-9d58-4376b3461b5d/,Barnea candida,Pholade blanche,,https://biolit.fr/wp-content/uploads/2023/05/Pholade-scaled.jpg,,TRUE, +N1,22368,sortie-5941df3c-84d1-4027-8ca6-d568dd1a1cd4,https://biolit.fr/sorties/sortie-5941df3c-84d1-4027-8ca6-d568dd1a1cd4/,Anne D,,2/22/2015 0:00,9.0000000,11.0000000,50.8371930000,1.584718000000,,Nord d'Audresselles,21764,observation-5941df3c-84d1-4027-8ca6-d568dd1a1cd4,https://biolit.fr/observations/observation-5941df3c-84d1-4027-8ca6-d568dd1a1cd4/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/05/Algues rouges éponge bigorneaux gibules patelles et balanes-scaled.jpg,,TRUE, +N1,22369,sortie-1baefff9-bd27-4503-840f-1c083458bbaa,https://biolit.fr/sorties/sortie-1baefff9-bd27-4503-840f-1c083458bbaa/,Anne D,,2/22/2015 0:00,9.0000000,11.0000000,50.831555000000,1.588108000000,,Nord d'Audresselles,21766,observation-1baefff9-bd27-4503-840f-1c083458bbaa,https://biolit.fr/observations/observation-1baefff9-bd27-4503-840f-1c083458bbaa/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/2023/05/Laminaria sachaccharina-scaled.jpg,,TRUE, +N1,22370,sortie-2b79f70a-1956-4d57-8c3f-4d5cc5a41ab6,https://biolit.fr/sorties/sortie-2b79f70a-1956-4d57-8c3f-4d5cc5a41ab6/,La Huppe du Paradou,,02/04/2015,11.0:15,12.0000000,47.085501000000,-2.047122000000,,plage Maxence 44760 la Bernerie en Retz,21768,observation-2b79f70a-1956-4d57-8c3f-4d5cc5a41ab6,https://biolit.fr/observations/observation-2b79f70a-1956-4d57-8c3f-4d5cc5a41ab6/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1070747-scaled.jpg,,FALSE, +N1,22370,sortie-2b79f70a-1956-4d57-8c3f-4d5cc5a41ab6,https://biolit.fr/sorties/sortie-2b79f70a-1956-4d57-8c3f-4d5cc5a41ab6/,La Huppe du Paradou,,02/04/2015,11.0:15,12.0000000,47.085501000000,-2.047122000000,,plage Maxence 44760 la Bernerie en Retz,21770,observation-2b79f70a-1956-4d57-8c3f-4d5cc5a41ab6-2,https://biolit.fr/observations/observation-2b79f70a-1956-4d57-8c3f-4d5cc5a41ab6-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1070746-scaled.jpg,,FALSE, +N1,22371,sortie-9fb6ceae-3171-4bb9-99c3-469d4e151bc9,https://biolit.fr/sorties/sortie-9fb6ceae-3171-4bb9-99c3-469d4e151bc9/,Katy M,,1/23/2015 0:00,10.0000000,11.0000000,50.829284000000,1.589608000000,,Audresselles,21772,observation-9fb6ceae-3171-4bb9-99c3-469d4e151bc9,https://biolit.fr/observations/observation-9fb6ceae-3171-4bb9-99c3-469d4e151bc9/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/05/DSCN2064.JPG,,TRUE, +N1,22371,sortie-9fb6ceae-3171-4bb9-99c3-469d4e151bc9,https://biolit.fr/sorties/sortie-9fb6ceae-3171-4bb9-99c3-469d4e151bc9/,Katy M,,1/23/2015 0:00,10.0000000,11.0000000,50.829284000000,1.589608000000,,Audresselles,21774,observation-9fb6ceae-3171-4bb9-99c3-469d4e151bc9-2,https://biolit.fr/observations/observation-9fb6ceae-3171-4bb9-99c3-469d4e151bc9-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN2069.JPG,,TRUE, +N1,22371,sortie-9fb6ceae-3171-4bb9-99c3-469d4e151bc9,https://biolit.fr/sorties/sortie-9fb6ceae-3171-4bb9-99c3-469d4e151bc9/,Katy M,,1/23/2015 0:00,10.0000000,11.0000000,50.829284000000,1.589608000000,,Audresselles,21776,observation-9fb6ceae-3171-4bb9-99c3-469d4e151bc9-3,https://biolit.fr/observations/observation-9fb6ceae-3171-4bb9-99c3-469d4e151bc9-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN2070.JPG,,TRUE, +N1,22371,sortie-9fb6ceae-3171-4bb9-99c3-469d4e151bc9,https://biolit.fr/sorties/sortie-9fb6ceae-3171-4bb9-99c3-469d4e151bc9/,Katy M,,1/23/2015 0:00,10.0000000,11.0000000,50.829284000000,1.589608000000,,Audresselles,21778,observation-9fb6ceae-3171-4bb9-99c3-469d4e151bc9-4,https://biolit.fr/observations/observation-9fb6ceae-3171-4bb9-99c3-469d4e151bc9-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN2071.JPG,,TRUE, +N1,22372,sortie-5565d5dc-473f-4c69-acdf-d5cabdfa3d99,https://biolit.fr/sorties/sortie-5565d5dc-473f-4c69-acdf-d5cabdfa3d99/,Katy M,,1/23/2015 0:00,9.0000000,10.0000000,50.871426000000,1.590654000000,,Cap gris nez,21780,observation-5565d5dc-473f-4c69-acdf-d5cabdfa3d99,https://biolit.fr/observations/observation-5565d5dc-473f-4c69-acdf-d5cabdfa3d99/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/05/DSCN2015.JPG,,TRUE, +N1,22372,sortie-5565d5dc-473f-4c69-acdf-d5cabdfa3d99,https://biolit.fr/sorties/sortie-5565d5dc-473f-4c69-acdf-d5cabdfa3d99/,Katy M,,1/23/2015 0:00,9.0000000,10.0000000,50.871426000000,1.590654000000,,Cap gris nez,21782,observation-5565d5dc-473f-4c69-acdf-d5cabdfa3d99-2,https://biolit.fr/observations/observation-5565d5dc-473f-4c69-acdf-d5cabdfa3d99-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN2045.JPG,,FALSE, +N1,22372,sortie-5565d5dc-473f-4c69-acdf-d5cabdfa3d99,https://biolit.fr/sorties/sortie-5565d5dc-473f-4c69-acdf-d5cabdfa3d99/,Katy M,,1/23/2015 0:00,9.0000000,10.0000000,50.871426000000,1.590654000000,,Cap gris nez,21784,observation-5565d5dc-473f-4c69-acdf-d5cabdfa3d99-3,https://biolit.fr/observations/observation-5565d5dc-473f-4c69-acdf-d5cabdfa3d99-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN2046.JPG,,FALSE, +N1,22372,sortie-5565d5dc-473f-4c69-acdf-d5cabdfa3d99,https://biolit.fr/sorties/sortie-5565d5dc-473f-4c69-acdf-d5cabdfa3d99/,Katy M,,1/23/2015 0:00,9.0000000,10.0000000,50.871426000000,1.590654000000,,Cap gris nez,21786,observation-5565d5dc-473f-4c69-acdf-d5cabdfa3d99-4,https://biolit.fr/observations/observation-5565d5dc-473f-4c69-acdf-d5cabdfa3d99-4/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/05/DSCN2048.JPG,,TRUE, +N1,22373,sortie-7e4e8cd4-8222-411d-97e4-038eeb3216e7,https://biolit.fr/sorties/sortie-7e4e8cd4-8222-411d-97e4-038eeb3216e7/,marine lemaire,,12/26/2014 0:00,15.0:45,16.0000000,48.596903000000,-2.537794000000,,"Pléneuf Val-André, Plage des vallées",21788,observation-7e4e8cd4-8222-411d-97e4-038eeb3216e7,https://biolit.fr/observations/observation-7e4e8cd4-8222-411d-97e4-038eeb3216e7/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1509-scaled.jpg,,TRUE, +N1,22373,sortie-7e4e8cd4-8222-411d-97e4-038eeb3216e7,https://biolit.fr/sorties/sortie-7e4e8cd4-8222-411d-97e4-038eeb3216e7/,marine lemaire,,12/26/2014 0:00,15.0:45,16.0000000,48.596903000000,-2.537794000000,,"Pléneuf Val-André, Plage des vallées",21790,observation-7e4e8cd4-8222-411d-97e4-038eeb3216e7-2,https://biolit.fr/observations/observation-7e4e8cd4-8222-411d-97e4-038eeb3216e7-2/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/05/DSCN1512_0-scaled.jpg,,TRUE, +N1,22374,sortie-532afef4-aa75-45dd-964d-45cec7c04633,https://biolit.fr/sorties/sortie-532afef4-aa75-45dd-964d-45cec7c04633/,Katy M,,4/18/2014 0:00,9.0000000,10.0000000,50.829228000000,1.589712000000,,Audresselles,21792,observation-532afef4-aa75-45dd-964d-45cec7c04633,https://biolit.fr/observations/observation-532afef4-aa75-45dd-964d-45cec7c04633/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1297.jpg,,TRUE, +N1,22374,sortie-532afef4-aa75-45dd-964d-45cec7c04633,https://biolit.fr/sorties/sortie-532afef4-aa75-45dd-964d-45cec7c04633/,Katy M,,4/18/2014 0:00,9.0000000,10.0000000,50.829228000000,1.589712000000,,Audresselles,21794,observation-532afef4-aa75-45dd-964d-45cec7c04633-2,https://biolit.fr/observations/observation-532afef4-aa75-45dd-964d-45cec7c04633-2/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1301.jpg,,TRUE, +N1,22374,sortie-532afef4-aa75-45dd-964d-45cec7c04633,https://biolit.fr/sorties/sortie-532afef4-aa75-45dd-964d-45cec7c04633/,Katy M,,4/18/2014 0:00,9.0000000,10.0000000,50.829228000000,1.589712000000,,Audresselles,21796,observation-532afef4-aa75-45dd-964d-45cec7c04633-3,https://biolit.fr/observations/observation-532afef4-aa75-45dd-964d-45cec7c04633-3/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1302.jpg,,TRUE, +N1,22374,sortie-532afef4-aa75-45dd-964d-45cec7c04633,https://biolit.fr/sorties/sortie-532afef4-aa75-45dd-964d-45cec7c04633/,Katy M,,4/18/2014 0:00,9.0000000,10.0000000,50.829228000000,1.589712000000,,Audresselles,21798,observation-532afef4-aa75-45dd-964d-45cec7c04633-4,https://biolit.fr/observations/observation-532afef4-aa75-45dd-964d-45cec7c04633-4/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1303.jpg,,TRUE, +N1,22374,sortie-532afef4-aa75-45dd-964d-45cec7c04633,https://biolit.fr/sorties/sortie-532afef4-aa75-45dd-964d-45cec7c04633/,Katy M,,4/18/2014 0:00,9.0000000,10.0000000,50.829228000000,1.589712000000,,Audresselles,21800,observation-532afef4-aa75-45dd-964d-45cec7c04633-5,https://biolit.fr/observations/observation-532afef4-aa75-45dd-964d-45cec7c04633-5/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1305.jpg,,TRUE, +N1,22374,sortie-532afef4-aa75-45dd-964d-45cec7c04633,https://biolit.fr/sorties/sortie-532afef4-aa75-45dd-964d-45cec7c04633/,Katy M,,4/18/2014 0:00,9.0000000,10.0000000,50.829228000000,1.589712000000,,Audresselles,21802,observation-532afef4-aa75-45dd-964d-45cec7c04633-6,https://biolit.fr/observations/observation-532afef4-aa75-45dd-964d-45cec7c04633-6/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1306.jpg,,TRUE, +N1,22374,sortie-532afef4-aa75-45dd-964d-45cec7c04633,https://biolit.fr/sorties/sortie-532afef4-aa75-45dd-964d-45cec7c04633/,Katy M,,4/18/2014 0:00,9.0000000,10.0000000,50.829228000000,1.589712000000,,Audresselles,21804,observation-532afef4-aa75-45dd-964d-45cec7c04633-7,https://biolit.fr/observations/observation-532afef4-aa75-45dd-964d-45cec7c04633-7/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1307.jpg,,TRUE, +N1,22374,sortie-532afef4-aa75-45dd-964d-45cec7c04633,https://biolit.fr/sorties/sortie-532afef4-aa75-45dd-964d-45cec7c04633/,Katy M,,4/18/2014 0:00,9.0000000,10.0000000,50.829228000000,1.589712000000,,Audresselles,21806,observation-532afef4-aa75-45dd-964d-45cec7c04633-8,https://biolit.fr/observations/observation-532afef4-aa75-45dd-964d-45cec7c04633-8/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1308.jpg,,TRUE, +N1,22375,sortie-ccde6dca-c776-416a-a5ed-16c2d224d269,https://biolit.fr/sorties/sortie-ccde6dca-c776-416a-a5ed-16c2d224d269/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828494000000,1.589913000000,,"plage du Noirda, Audresselles",21808,observation-ccde6dca-c776-416a-a5ed-16c2d224d269,https://biolit.fr/observations/observation-ccde6dca-c776-416a-a5ed-16c2d224d269/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/05/IMG_2663-scaled.jpg,,TRUE, +N1,22375,sortie-ccde6dca-c776-416a-a5ed-16c2d224d269,https://biolit.fr/sorties/sortie-ccde6dca-c776-416a-a5ed-16c2d224d269/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828494000000,1.589913000000,,"plage du Noirda, Audresselles",21810,observation-ccde6dca-c776-416a-a5ed-16c2d224d269-2,https://biolit.fr/observations/observation-ccde6dca-c776-416a-a5ed-16c2d224d269-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/05/IMG_2667-scaled.jpg,,TRUE, +N1,22375,sortie-ccde6dca-c776-416a-a5ed-16c2d224d269,https://biolit.fr/sorties/sortie-ccde6dca-c776-416a-a5ed-16c2d224d269/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828494000000,1.589913000000,,"plage du Noirda, Audresselles",21812,observation-ccde6dca-c776-416a-a5ed-16c2d224d269-3,https://biolit.fr/observations/observation-ccde6dca-c776-416a-a5ed-16c2d224d269-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_2669-scaled.jpg,,FALSE, +N1,22375,sortie-ccde6dca-c776-416a-a5ed-16c2d224d269,https://biolit.fr/sorties/sortie-ccde6dca-c776-416a-a5ed-16c2d224d269/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828494000000,1.589913000000,,"plage du Noirda, Audresselles",21814,observation-ccde6dca-c776-416a-a5ed-16c2d224d269-4,https://biolit.fr/observations/observation-ccde6dca-c776-416a-a5ed-16c2d224d269-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_2670-scaled.jpg,,FALSE, +N1,22375,sortie-ccde6dca-c776-416a-a5ed-16c2d224d269,https://biolit.fr/sorties/sortie-ccde6dca-c776-416a-a5ed-16c2d224d269/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828494000000,1.589913000000,,"plage du Noirda, Audresselles",21816,observation-ccde6dca-c776-416a-a5ed-16c2d224d269-5,https://biolit.fr/observations/observation-ccde6dca-c776-416a-a5ed-16c2d224d269-5/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/05/IMG_2671-scaled.jpg,,TRUE, +N1,22376,sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6,https://biolit.fr/sorties/sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828476000000,1.58991600000,,"plage du Noirda, Audresselles",21818,observation-bc6ee21a-119e-4080-9f68-a48b9587dab6,https://biolit.fr/observations/observation-bc6ee21a-119e-4080-9f68-a48b9587dab6/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1847.jpg,,TRUE, +N1,22376,sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6,https://biolit.fr/sorties/sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828476000000,1.58991600000,,"plage du Noirda, Audresselles",21820,observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-2,https://biolit.fr/observations/observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1848.jpg,,TRUE, +N1,22376,sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6,https://biolit.fr/sorties/sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828476000000,1.58991600000,,"plage du Noirda, Audresselles",21822,observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-3,https://biolit.fr/observations/observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1849.jpg,,TRUE, +N1,22376,sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6,https://biolit.fr/sorties/sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828476000000,1.58991600000,,"plage du Noirda, Audresselles",21824,observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-4,https://biolit.fr/observations/observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1851.jpg,,FALSE, +N1,22376,sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6,https://biolit.fr/sorties/sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828476000000,1.58991600000,,"plage du Noirda, Audresselles",21826,observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-5,https://biolit.fr/observations/observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1852.jpg,,TRUE, +N1,22376,sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6,https://biolit.fr/sorties/sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828476000000,1.58991600000,,"plage du Noirda, Audresselles",21828,observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-6,https://biolit.fr/observations/observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-6/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1853.jpg,,TRUE, +N1,22376,sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6,https://biolit.fr/sorties/sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828476000000,1.58991600000,,"plage du Noirda, Audresselles",21830,observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-7,https://biolit.fr/observations/observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-7/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1854.jpg,,TRUE, +N1,22376,sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6,https://biolit.fr/sorties/sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828476000000,1.58991600000,,"plage du Noirda, Audresselles",21832,observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-8,https://biolit.fr/observations/observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-8/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1858.jpg,,TRUE, +N1,22376,sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6,https://biolit.fr/sorties/sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828476000000,1.58991600000,,"plage du Noirda, Audresselles",21834,observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-9,https://biolit.fr/observations/observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-9/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1859.jpg,,TRUE, +N1,22376,sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6,https://biolit.fr/sorties/sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828476000000,1.58991600000,,"plage du Noirda, Audresselles",21836,observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-10,https://biolit.fr/observations/observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-10/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1860.jpg,,TRUE, +N1,22376,sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6,https://biolit.fr/sorties/sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828476000000,1.58991600000,,"plage du Noirda, Audresselles",21838,observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-11,https://biolit.fr/observations/observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-11/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1861.jpg,,FALSE, +N1,22376,sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6,https://biolit.fr/sorties/sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828476000000,1.58991600000,,"plage du Noirda, Audresselles",21840,observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-12,https://biolit.fr/observations/observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-12/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1862.jpg,,FALSE, +N1,22376,sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6,https://biolit.fr/sorties/sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828476000000,1.58991600000,,"plage du Noirda, Audresselles",21842,observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-13,https://biolit.fr/observations/observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-13/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1863.jpg,,FALSE, +N1,22376,sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6,https://biolit.fr/sorties/sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828476000000,1.58991600000,,"plage du Noirda, Audresselles",21844,observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-14,https://biolit.fr/observations/observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-14/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1864.jpg,,FALSE, +N1,22376,sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6,https://biolit.fr/sorties/sortie-bc6ee21a-119e-4080-9f68-a48b9587dab6/,NAUSICAA,,10/12/2014,11.0000000,12.0000000,50.828476000000,1.58991600000,,"plage du Noirda, Audresselles",21846,observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-15,https://biolit.fr/observations/observation-bc6ee21a-119e-4080-9f68-a48b9587dab6-15/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1865.jpg,,FALSE, +N1,22377,sortie-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c,https://biolit.fr/sorties/sortie-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c/,Hippolyte,,10/02/2014,14.0000000,16.0000000,49.892926000000,0.862193000000,,Plage de Saussemare,21848,observation-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c,https://biolit.fr/observations/observation-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_1715.jpg,,TRUE, +N1,22377,sortie-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c,https://biolit.fr/sorties/sortie-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c/,Hippolyte,,10/02/2014,14.0000000,16.0000000,49.892926000000,0.862193000000,,Plage de Saussemare,21850,observation-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c-2,https://biolit.fr/observations/observation-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c-2/,Littorina compressa,Littorine à lignes noires,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_1717.jpg,,TRUE, +N1,22377,sortie-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c,https://biolit.fr/sorties/sortie-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c/,Hippolyte,,10/02/2014,14.0000000,16.0000000,49.892926000000,0.862193000000,,Plage de Saussemare,21852,observation-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c-3,https://biolit.fr/observations/observation-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1720.jpg,,FALSE, +N1,22377,sortie-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c,https://biolit.fr/sorties/sortie-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c/,Hippolyte,,10/02/2014,14.0000000,16.0000000,49.892926000000,0.862193000000,,Plage de Saussemare,21854,observation-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c-4,https://biolit.fr/observations/observation-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1721.jpg,,FALSE, +N1,22377,sortie-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c,https://biolit.fr/sorties/sortie-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c/,Hippolyte,,10/02/2014,14.0000000,16.0000000,49.892926000000,0.862193000000,,Plage de Saussemare,21856,observation-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c-5,https://biolit.fr/observations/observation-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c-5/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1724.jpg,,FALSE, +N1,22377,sortie-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c,https://biolit.fr/sorties/sortie-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c/,Hippolyte,,10/02/2014,14.0000000,16.0000000,49.892926000000,0.862193000000,,Plage de Saussemare,21858,observation-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c-6,https://biolit.fr/observations/observation-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c-6/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1725.jpg,,FALSE, +N1,22377,sortie-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c,https://biolit.fr/sorties/sortie-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c/,Hippolyte,,10/02/2014,14.0000000,16.0000000,49.892926000000,0.862193000000,,Plage de Saussemare,21860,observation-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c-7,https://biolit.fr/observations/observation-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c-7/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_1726.jpg,,TRUE, +N1,22377,sortie-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c,https://biolit.fr/sorties/sortie-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c/,Hippolyte,,10/02/2014,14.0000000,16.0000000,49.892926000000,0.862193000000,,Plage de Saussemare,21862,observation-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c-8,https://biolit.fr/observations/observation-e592ea46-9ea6-4ac4-908a-2d7317a9cc3c-8/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_1728.jpg,,TRUE, +N1,22378,sortie-d583e589-a2ed-4fbc-8078-039ea1c5faeb,https://biolit.fr/sorties/sortie-d583e589-a2ed-4fbc-8078-039ea1c5faeb/,marion Delporte,,09/11/2014,8.0000000,11.0000000,50.750439000000,1.594417000000,,Boulogne sur Mer,21864,observation-d583e589-a2ed-4fbc-8078-039ea1c5faeb,https://biolit.fr/observations/observation-d583e589-a2ed-4fbc-8078-039ea1c5faeb/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Pelvetia caniculata (pelvétie) Littorina saxatilis (bigorneau)_2-scaled.jpg,,TRUE, +N1,22379,sortie-d545a23d-3a69-42de-b611-12c5671aa1ff,https://biolit.fr/sorties/sortie-d545a23d-3a69-42de-b611-12c5671aa1ff/,Juh,,09/11/2014,8.0000000,11.0000000,50.750982000000,1.588495000000,,Pointe de la Crêche Boulogne Sur Mer,21866,observation-d545a23d-3a69-42de-b611-12c5671aa1ff,https://biolit.fr/observations/observation-d545a23d-3a69-42de-b611-12c5671aa1ff/,,,,https://biolit.fr/wp-content/uploads/2023/05/mytilus edulis fucus vesiculosus ulva lactuca.jpg,,FALSE, +N1,22380,sortie-02ca30f4-16cc-4b62-8aa8-087d96229f12,https://biolit.fr/sorties/sortie-02ca30f4-16cc-4b62-8aa8-087d96229f12/,Juh,,09/11/2014,8.0000000,11.0000000,50.751200000000,1.590211000000,,Pointe de la Crêche Boulogne Sur Mer,21868,observation-02ca30f4-16cc-4b62-8aa8-087d96229f12,https://biolit.fr/observations/observation-02ca30f4-16cc-4b62-8aa8-087d96229f12/,,,,https://biolit.fr/wp-content/uploads/2023/05/littorina saxtilis ulva lactuca.jpg,,FALSE, +N1,22381,sortie-a5684bcd-455d-459c-ac96-03b3cca03589,https://biolit.fr/sorties/sortie-a5684bcd-455d-459c-ac96-03b3cca03589/,Juh,,09/11/2014,8.0000000,11.0000000,50.751091000000,1.590769000000,,Pointe de la Crêche Boulogne Sur Mer,21870,observation-a5684bcd-455d-459c-ac96-03b3cca03589,https://biolit.fr/observations/observation-a5684bcd-455d-459c-ac96-03b3cca03589/,,,,https://biolit.fr/wp-content/uploads/2023/05/littorina littorea ulva lactuca.jpg,,FALSE, +N1,22382,sortie-d2c71ffa-4b2b-4b7e-a71a-d44a1edd1065,https://biolit.fr/sorties/sortie-d2c71ffa-4b2b-4b7e-a71a-d44a1edd1065/,marion Delporte,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593816000000,,Boulogne sur Mer,21872,observation-d2c71ffa-4b2b-4b7e-a71a-d44a1edd1065,https://biolit.fr/observations/observation-d2c71ffa-4b2b-4b7e-a71a-d44a1edd1065/,,,,https://biolit.fr/wp-content/uploads/2023/05/Pelvetia caniculata (pelvétie) Littorina saxatilis(bigorneau) (2)-scaled.jpg,,FALSE, +N1,22382,sortie-d2c71ffa-4b2b-4b7e-a71a-d44a1edd1065,https://biolit.fr/sorties/sortie-d2c71ffa-4b2b-4b7e-a71a-d44a1edd1065/,marion Delporte,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593816000000,,Boulogne sur Mer,21874,observation-d2c71ffa-4b2b-4b7e-a71a-d44a1edd1065-2,https://biolit.fr/observations/observation-d2c71ffa-4b2b-4b7e-a71a-d44a1edd1065-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/ulva lactuca (laitue de mer) ulva intestinalis littorina littorea (bigorneau)-scaled.jpg,,TRUE, +N1,22383,sortie-ab1edce2-5b5f-44ce-a66d-089f4439db5e,https://biolit.fr/sorties/sortie-ab1edce2-5b5f-44ce-a66d-089f4439db5e/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.751268000000,1.59231400000,,Boulogne/mer,21876,observation-ab1edce2-5b5f-44ce-a66d-089f4439db5e,https://biolit.fr/observations/observation-ab1edce2-5b5f-44ce-a66d-089f4439db5e/,,,,https://biolit.fr/wp-content/uploads/2023/05/SAM_0134-scaled.jpg,,FALSE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21878,observation-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8/,,,,https://biolit.fr/wp-content/uploads/2023/05/082_0-scaled.jpg,,FALSE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21880,observation-f883c73b-a64a-4351-853b-1350cae3cca8-2,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/088-scaled.jpg,,FALSE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21882,observation-f883c73b-a64a-4351-853b-1350cae3cca8-3,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/092-scaled.jpg,,FALSE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21884,observation-f883c73b-a64a-4351-853b-1350cae3cca8-4,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-4/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/05/095-scaled.jpg,,TRUE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21886,observation-f883c73b-a64a-4351-853b-1350cae3cca8-5,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-5/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/05/107-scaled.jpg,,TRUE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21888,observation-f883c73b-a64a-4351-853b-1350cae3cca8-6,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-6/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/05/108-scaled.jpg,,TRUE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21890,observation-f883c73b-a64a-4351-853b-1350cae3cca8-7,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-7/,Crangon crangon,Crevette grise européenne,,https://biolit.fr/wp-content/uploads/2023/05/111-scaled.jpg,,TRUE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21892,observation-f883c73b-a64a-4351-853b-1350cae3cca8-8,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-8/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/2023/05/112-scaled.jpg,,TRUE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21894,observation-f883c73b-a64a-4351-853b-1350cae3cca8-9,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-9/,Phycis phycis,Mostelle de roche,,https://biolit.fr/wp-content/uploads/2023/05/113-scaled.jpg,,TRUE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21896,observation-f883c73b-a64a-4351-853b-1350cae3cca8-10,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-10/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/05/114-scaled.jpg,,TRUE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21898,observation-f883c73b-a64a-4351-853b-1350cae3cca8-11,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-11/,,,,https://biolit.fr/wp-content/uploads/2023/05/115-scaled.jpg,,FALSE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21900,observation-f883c73b-a64a-4351-853b-1350cae3cca8-12,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-12/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/05/116-scaled.jpg,,TRUE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21902,observation-f883c73b-a64a-4351-853b-1350cae3cca8-13,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-13/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/05/117-scaled.jpg,,TRUE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21904,observation-f883c73b-a64a-4351-853b-1350cae3cca8-14,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-14/,,,,https://biolit.fr/wp-content/uploads/2023/05/120-scaled.jpg,,FALSE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21906,observation-f883c73b-a64a-4351-853b-1350cae3cca8-15,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-15/,,,,https://biolit.fr/wp-content/uploads/2023/05/118-scaled.jpg,,FALSE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21908,observation-f883c73b-a64a-4351-853b-1350cae3cca8-16,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-16/,,,,https://biolit.fr/wp-content/uploads/2023/05/121-scaled.jpg,,FALSE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21910,observation-f883c73b-a64a-4351-853b-1350cae3cca8-17,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-17/,,,,https://biolit.fr/wp-content/uploads/2023/05/122-scaled.jpg,,FALSE, +N1,22384,sortie-f883c73b-a64a-4351-853b-1350cae3cca8,https://biolit.fr/sorties/sortie-f883c73b-a64a-4351-853b-1350cae3cca8/,Tom,,09/11/2014,8.0000000,11.0000000,50.750765000000,1.593644000000,,Wimereux,21912,observation-f883c73b-a64a-4351-853b-1350cae3cca8-18,https://biolit.fr/observations/observation-f883c73b-a64a-4351-853b-1350cae3cca8-18/,,,,https://biolit.fr/wp-content/uploads/2023/05/089-scaled.jpg,,FALSE, +N1,22385,sortie-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1,https://biolit.fr/sorties/sortie-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1/,reinette,,9/14/2014 0:00,15.0:25,18.0:25,48.636301000000,-2.084098000000,,devant la thalassothérapie de Dinard,21914,observation-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1,https://biolit.fr/observations/observation-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1020670.JPG,,FALSE, +N1,22385,sortie-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1,https://biolit.fr/sorties/sortie-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1/,reinette,,9/14/2014 0:00,15.0:25,18.0:25,48.636301000000,-2.084098000000,,devant la thalassothérapie de Dinard,21916,observation-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1-2,https://biolit.fr/observations/observation-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1020671.JPG,,FALSE, +N1,22385,sortie-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1,https://biolit.fr/sorties/sortie-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1/,reinette,,9/14/2014 0:00,15.0:25,18.0:25,48.636301000000,-2.084098000000,,devant la thalassothérapie de Dinard,21918,observation-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1-3,https://biolit.fr/observations/observation-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1020672.JPG,,FALSE, +N1,22385,sortie-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1,https://biolit.fr/sorties/sortie-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1/,reinette,,9/14/2014 0:00,15.0:25,18.0:25,48.636301000000,-2.084098000000,,devant la thalassothérapie de Dinard,21920,observation-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1-4,https://biolit.fr/observations/observation-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1-4/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/05/P1020674.JPG,,TRUE, +N1,22385,sortie-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1,https://biolit.fr/sorties/sortie-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1/,reinette,,9/14/2014 0:00,15.0:25,18.0:25,48.636301000000,-2.084098000000,,devant la thalassothérapie de Dinard,21922,observation-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1-5,https://biolit.fr/observations/observation-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1-5/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/05/P1020676.JPG,,TRUE, +N1,22385,sortie-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1,https://biolit.fr/sorties/sortie-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1/,reinette,,9/14/2014 0:00,15.0:25,18.0:25,48.636301000000,-2.084098000000,,devant la thalassothérapie de Dinard,21924,observation-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1-6,https://biolit.fr/observations/observation-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1-6/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/P1020677.JPG,,TRUE, +N1,22385,sortie-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1,https://biolit.fr/sorties/sortie-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1/,reinette,,9/14/2014 0:00,15.0:25,18.0:25,48.636301000000,-2.084098000000,,devant la thalassothérapie de Dinard,21926,observation-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1-7,https://biolit.fr/observations/observation-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1-7/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1020678.JPG,,TRUE, +N1,22385,sortie-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1,https://biolit.fr/sorties/sortie-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1/,reinette,,9/14/2014 0:00,15.0:25,18.0:25,48.636301000000,-2.084098000000,,devant la thalassothérapie de Dinard,21928,observation-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1-8,https://biolit.fr/observations/observation-5f0a3fc5-4ed3-4577-85b7-f7ec6a50cfd1-8/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1020679.JPG,,TRUE, +N1,22386,sortie-702fc8d7-d4fd-45c2-ad85-c44c4b7f1195,https://biolit.fr/sorties/sortie-702fc8d7-d4fd-45c2-ad85-c44c4b7f1195/,leajoly,,09/11/2014,8.0000000,11.0000000,50.751393000000,1.589693000000,,plage de Boulogne-sur-mer,21930,observation-702fc8d7-d4fd-45c2-ad85-c44c4b7f1195,https://biolit.fr/observations/observation-702fc8d7-d4fd-45c2-ad85-c44c4b7f1195/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Pelvetia caniculata-scaled.jpg,,TRUE, +N1,22386,sortie-702fc8d7-d4fd-45c2-ad85-c44c4b7f1195,https://biolit.fr/sorties/sortie-702fc8d7-d4fd-45c2-ad85-c44c4b7f1195/,leajoly,,09/11/2014,8.0000000,11.0000000,50.751393000000,1.589693000000,,plage de Boulogne-sur-mer,21932,observation-702fc8d7-d4fd-45c2-ad85-c44c4b7f1195-2,https://biolit.fr/observations/observation-702fc8d7-d4fd-45c2-ad85-c44c4b7f1195-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Pelvetia caniculata-scaled.jpg,,TRUE, +N1,22386,sortie-702fc8d7-d4fd-45c2-ad85-c44c4b7f1195,https://biolit.fr/sorties/sortie-702fc8d7-d4fd-45c2-ad85-c44c4b7f1195/,leajoly,,09/11/2014,8.0000000,11.0000000,50.751393000000,1.589693000000,,plage de Boulogne-sur-mer,21933,observation-702fc8d7-d4fd-45c2-ad85-c44c4b7f1195-3,https://biolit.fr/observations/observation-702fc8d7-d4fd-45c2-ad85-c44c4b7f1195-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Fucus serratus-scaled.jpg,,TRUE, +N1,22387,sortie-369282ee-a5c3-4d2e-bfa6-2f0761f7f377,https://biolit.fr/sorties/sortie-369282ee-a5c3-4d2e-bfa6-2f0761f7f377/,M.DAO-CASTES Corentin,,09/11/2014,9.0000000,11.0000000,50.750657000000,1.594749000000,,Boulogne-sur-mer,21935,observation-369282ee-a5c3-4d2e-bfa6-2f0761f7f377,https://biolit.fr/observations/observation-369282ee-a5c3-4d2e-bfa6-2f0761f7f377/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Pelvetia caniculata -Littorina saxatilis-scaled.jpg,,TRUE, +N1,22387,sortie-369282ee-a5c3-4d2e-bfa6-2f0761f7f377,https://biolit.fr/sorties/sortie-369282ee-a5c3-4d2e-bfa6-2f0761f7f377/,M.DAO-CASTES Corentin,,09/11/2014,9.0000000,11.0000000,50.750657000000,1.594749000000,,Boulogne-sur-mer,21937,observation-369282ee-a5c3-4d2e-bfa6-2f0761f7f377-2,https://biolit.fr/observations/observation-369282ee-a5c3-4d2e-bfa6-2f0761f7f377-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Fucus spiralus-Littorina saxatilis-scaled.jpg,,TRUE, +N1,22387,sortie-369282ee-a5c3-4d2e-bfa6-2f0761f7f377,https://biolit.fr/sorties/sortie-369282ee-a5c3-4d2e-bfa6-2f0761f7f377/,M.DAO-CASTES Corentin,,09/11/2014,9.0000000,11.0000000,50.750657000000,1.594749000000,,Boulogne-sur-mer,21939,observation-369282ee-a5c3-4d2e-bfa6-2f0761f7f377-3,https://biolit.fr/observations/observation-369282ee-a5c3-4d2e-bfa6-2f0761f7f377-3/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Fucus serratus-Gibbula umbilicalis-scaled.jpg,,TRUE, +N1,22388,sortie-8e5f5c18-9aca-4ab1-9bca-641b44f429d7,https://biolit.fr/sorties/sortie-8e5f5c18-9aca-4ab1-9bca-641b44f429d7/,Mel-Mei,,09/11/2014,8.0000000,11.0000000,50.750494000000,1.593687000000,,boulogne sur mer,21941,observation-8e5f5c18-9aca-4ab1-9bca-641b44f429d7,https://biolit.fr/observations/observation-8e5f5c18-9aca-4ab1-9bca-641b44f429d7/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/DSC00442 bis.jpg,,TRUE, +N1,22388,sortie-8e5f5c18-9aca-4ab1-9bca-641b44f429d7,https://biolit.fr/sorties/sortie-8e5f5c18-9aca-4ab1-9bca-641b44f429d7/,Mel-Mei,,09/11/2014,8.0000000,11.0000000,50.750494000000,1.593687000000,,boulogne sur mer,21943,observation-8e5f5c18-9aca-4ab1-9bca-641b44f429d7-2,https://biolit.fr/observations/observation-8e5f5c18-9aca-4ab1-9bca-641b44f429d7-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSC00445 bis.jpg,,FALSE, +N1,22389,sortie-4074b9cc-adeb-4b47-800b-6049136e8296,https://biolit.fr/sorties/sortie-4074b9cc-adeb-4b47-800b-6049136e8296/,Centre La Sapinière,,8/19/2014 0:00,16.0000000,17.0000000,46.102026000000,-1.113339000000,,Angoulins sur mer,21945,observation-4074b9cc-adeb-4b47-800b-6049136e8296,https://biolit.fr/observations/observation-4074b9cc-adeb-4b47-800b-6049136e8296/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1040498.JPG,,FALSE, +N1,22389,sortie-4074b9cc-adeb-4b47-800b-6049136e8296,https://biolit.fr/sorties/sortie-4074b9cc-adeb-4b47-800b-6049136e8296/,Centre La Sapinière,,8/19/2014 0:00,16.0000000,17.0000000,46.102026000000,-1.113339000000,,Angoulins sur mer,21947,observation-4074b9cc-adeb-4b47-800b-6049136e8296-2,https://biolit.fr/observations/observation-4074b9cc-adeb-4b47-800b-6049136e8296-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1040497_2.JPG,,FALSE, +N1,22389,sortie-4074b9cc-adeb-4b47-800b-6049136e8296,https://biolit.fr/sorties/sortie-4074b9cc-adeb-4b47-800b-6049136e8296/,Centre La Sapinière,,8/19/2014 0:00,16.0000000,17.0000000,46.102026000000,-1.113339000000,,Angoulins sur mer,21949,observation-4074b9cc-adeb-4b47-800b-6049136e8296-3,https://biolit.fr/observations/observation-4074b9cc-adeb-4b47-800b-6049136e8296-3/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1040496.JPG,,TRUE, +N1,22389,sortie-4074b9cc-adeb-4b47-800b-6049136e8296,https://biolit.fr/sorties/sortie-4074b9cc-adeb-4b47-800b-6049136e8296/,Centre La Sapinière,,8/19/2014 0:00,16.0000000,17.0000000,46.102026000000,-1.113339000000,,Angoulins sur mer,21951,observation-4074b9cc-adeb-4b47-800b-6049136e8296-4,https://biolit.fr/observations/observation-4074b9cc-adeb-4b47-800b-6049136e8296-4/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1040495.JPG,,TRUE, +N1,22389,sortie-4074b9cc-adeb-4b47-800b-6049136e8296,https://biolit.fr/sorties/sortie-4074b9cc-adeb-4b47-800b-6049136e8296/,Centre La Sapinière,,8/19/2014 0:00,16.0000000,17.0000000,46.102026000000,-1.113339000000,,Angoulins sur mer,21953,observation-4074b9cc-adeb-4b47-800b-6049136e8296-5,https://biolit.fr/observations/observation-4074b9cc-adeb-4b47-800b-6049136e8296-5/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1040499.JPG,,FALSE, +N1,22389,sortie-4074b9cc-adeb-4b47-800b-6049136e8296,https://biolit.fr/sorties/sortie-4074b9cc-adeb-4b47-800b-6049136e8296/,Centre La Sapinière,,8/19/2014 0:00,16.0000000,17.0000000,46.102026000000,-1.113339000000,,Angoulins sur mer,21955,observation-4074b9cc-adeb-4b47-800b-6049136e8296-6,https://biolit.fr/observations/observation-4074b9cc-adeb-4b47-800b-6049136e8296-6/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1040500.JPG,,FALSE, +N1,22390,sortie-98a6433f-2d97-47c2-8d7a-427abad9348e,https://biolit.fr/sorties/sortie-98a6433f-2d97-47c2-8d7a-427abad9348e/,Centre La Sapinière,,8/13/2014 0:00,10.0:45,12.0000000,46.102065000000,-1.113342000000,,Angoulins sur mer,21957,observation-98a6433f-2d97-47c2-8d7a-427abad9348e,https://biolit.fr/observations/observation-98a6433f-2d97-47c2-8d7a-427abad9348e/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMGP0301-scaled.jpg,,FALSE, +N1,22390,sortie-98a6433f-2d97-47c2-8d7a-427abad9348e,https://biolit.fr/sorties/sortie-98a6433f-2d97-47c2-8d7a-427abad9348e/,Centre La Sapinière,,8/13/2014 0:00,10.0:45,12.0000000,46.102065000000,-1.113342000000,,Angoulins sur mer,21959,observation-98a6433f-2d97-47c2-8d7a-427abad9348e-2,https://biolit.fr/observations/observation-98a6433f-2d97-47c2-8d7a-427abad9348e-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMGP0302-scaled.jpg,,FALSE, +N1,22390,sortie-98a6433f-2d97-47c2-8d7a-427abad9348e,https://biolit.fr/sorties/sortie-98a6433f-2d97-47c2-8d7a-427abad9348e/,Centre La Sapinière,,8/13/2014 0:00,10.0:45,12.0000000,46.102065000000,-1.113342000000,,Angoulins sur mer,21961,observation-98a6433f-2d97-47c2-8d7a-427abad9348e-3,https://biolit.fr/observations/observation-98a6433f-2d97-47c2-8d7a-427abad9348e-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMGP0304-scaled.jpg,,TRUE, +N1,22390,sortie-98a6433f-2d97-47c2-8d7a-427abad9348e,https://biolit.fr/sorties/sortie-98a6433f-2d97-47c2-8d7a-427abad9348e/,Centre La Sapinière,,8/13/2014 0:00,10.0:45,12.0000000,46.102065000000,-1.113342000000,,Angoulins sur mer,21963,observation-98a6433f-2d97-47c2-8d7a-427abad9348e-4,https://biolit.fr/observations/observation-98a6433f-2d97-47c2-8d7a-427abad9348e-4/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMGP0305-scaled.jpg,,TRUE, +N1,22390,sortie-98a6433f-2d97-47c2-8d7a-427abad9348e,https://biolit.fr/sorties/sortie-98a6433f-2d97-47c2-8d7a-427abad9348e/,Centre La Sapinière,,8/13/2014 0:00,10.0:45,12.0000000,46.102065000000,-1.113342000000,,Angoulins sur mer,21965,observation-98a6433f-2d97-47c2-8d7a-427abad9348e-5,https://biolit.fr/observations/observation-98a6433f-2d97-47c2-8d7a-427abad9348e-5/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMGP0306-scaled.jpg,,FALSE, +N1,22390,sortie-98a6433f-2d97-47c2-8d7a-427abad9348e,https://biolit.fr/sorties/sortie-98a6433f-2d97-47c2-8d7a-427abad9348e/,Centre La Sapinière,,8/13/2014 0:00,10.0:45,12.0000000,46.102065000000,-1.113342000000,,Angoulins sur mer,21967,observation-98a6433f-2d97-47c2-8d7a-427abad9348e-6,https://biolit.fr/observations/observation-98a6433f-2d97-47c2-8d7a-427abad9348e-6/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMGP0309-scaled.jpg,,FALSE, +N1,22390,sortie-98a6433f-2d97-47c2-8d7a-427abad9348e,https://biolit.fr/sorties/sortie-98a6433f-2d97-47c2-8d7a-427abad9348e/,Centre La Sapinière,,8/13/2014 0:00,10.0:45,12.0000000,46.102065000000,-1.113342000000,,Angoulins sur mer,21969,observation-98a6433f-2d97-47c2-8d7a-427abad9348e-7,https://biolit.fr/observations/observation-98a6433f-2d97-47c2-8d7a-427abad9348e-7/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMGP0308-scaled.jpg,,TRUE,non-identifiable +N1,22391,sortie-0c9f4078-850a-4135-aaf7-519957f1047f,https://biolit.fr/sorties/sortie-0c9f4078-850a-4135-aaf7-519957f1047f/,franck garel,,08/02/2014,15.0:15,16.0:15,48.648943000000,-2.030018000000,,saint-malo bon secours,21971,observation-0c9f4078-850a-4135-aaf7-519957f1047f,https://biolit.fr/observations/observation-0c9f4078-850a-4135-aaf7-519957f1047f/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_1639-scaled.jpg,,TRUE, +N1,22391,sortie-0c9f4078-850a-4135-aaf7-519957f1047f,https://biolit.fr/sorties/sortie-0c9f4078-850a-4135-aaf7-519957f1047f/,franck garel,,08/02/2014,15.0:15,16.0:15,48.648943000000,-2.030018000000,,saint-malo bon secours,21973,observation-0c9f4078-850a-4135-aaf7-519957f1047f-2,https://biolit.fr/observations/observation-0c9f4078-850a-4135-aaf7-519957f1047f-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSC_1641-scaled.jpg,,FALSE, +N1,22391,sortie-0c9f4078-850a-4135-aaf7-519957f1047f,https://biolit.fr/sorties/sortie-0c9f4078-850a-4135-aaf7-519957f1047f/,franck garel,,08/02/2014,15.0:15,16.0:15,48.648943000000,-2.030018000000,,saint-malo bon secours,21975,observation-0c9f4078-850a-4135-aaf7-519957f1047f-3,https://biolit.fr/observations/observation-0c9f4078-850a-4135-aaf7-519957f1047f-3/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC_1643-scaled.jpg,,TRUE, +N1,22392,sortie-e433047b-734e-4c2e-a9af-8c4e953fc5bd,https://biolit.fr/sorties/sortie-e433047b-734e-4c2e-a9af-8c4e953fc5bd/,Isa923,,08/05/2014,15.0000000,15.0000000,46.101842000000,-1.113284000000,,Angoulins,21977,observation-e433047b-734e-4c2e-a9af-8c4e953fc5bd,https://biolit.fr/observations/observation-e433047b-734e-4c2e-a9af-8c4e953fc5bd/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/05/test-3.jpg,,TRUE, +N1,22393,sortie-b05e3164-7238-40fa-abf1-48cb03d9a45a,https://biolit.fr/sorties/sortie-b05e3164-7238-40fa-abf1-48cb03d9a45a/,Isa923,,08/05/2014,15.0000000,15.0000000,46.101842000000,-1.113284000000,,Angoulins,21986,observation-b05e3164-7238-40fa-abf1-48cb03d9a45a,https://biolit.fr/observations/observation-b05e3164-7238-40fa-abf1-48cb03d9a45a/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/05/test-7.jpg,,TRUE, +N1,22394,sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac,https://biolit.fr/sorties/sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac/,Ondinec,,08/02/2014,15.0000000,17.0000000,48.649014000000,-2.030084000000,,Bon Secours,21995,observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac,https://biolit.fr/observations/observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5377_0-scaled.jpg,,TRUE, +N1,22394,sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac,https://biolit.fr/sorties/sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac/,Ondinec,,08/02/2014,15.0000000,17.0000000,48.649014000000,-2.030084000000,,Bon Secours,21997,observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac-2,https://biolit.fr/observations/observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5382_0-scaled.jpg,,TRUE, +N1,22394,sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac,https://biolit.fr/sorties/sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac/,Ondinec,,08/02/2014,15.0000000,17.0000000,48.649014000000,-2.030084000000,,Bon Secours,21999,observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac-3,https://biolit.fr/observations/observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5383_0-scaled.jpg,,TRUE, +N1,22394,sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac,https://biolit.fr/sorties/sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac/,Ondinec,,08/02/2014,15.0000000,17.0000000,48.649014000000,-2.030084000000,,Bon Secours,22001,observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac-4,https://biolit.fr/observations/observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac-4/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5385-scaled.jpg,,TRUE, +N1,22394,sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac,https://biolit.fr/sorties/sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac/,Ondinec,,08/02/2014,15.0000000,17.0000000,48.649014000000,-2.030084000000,,Bon Secours,22003,observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac-5,https://biolit.fr/observations/observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac-5/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5386_0-scaled.jpg,,TRUE, +N1,22394,sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac,https://biolit.fr/sorties/sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac/,Ondinec,,08/02/2014,15.0000000,17.0000000,48.649014000000,-2.030084000000,,Bon Secours,22005,observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac-6,https://biolit.fr/observations/observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac-6/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5387-scaled.jpg,,TRUE,Identifiable +N1,22394,sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac,https://biolit.fr/sorties/sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac/,Ondinec,,08/02/2014,15.0000000,17.0000000,48.649014000000,-2.030084000000,,Bon Secours,22007,observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac-7,https://biolit.fr/observations/observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac-7/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5393-scaled.jpg,,TRUE, +N1,22394,sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac,https://biolit.fr/sorties/sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac/,Ondinec,,08/02/2014,15.0000000,17.0000000,48.649014000000,-2.030084000000,,Bon Secours,22009,observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac-8,https://biolit.fr/observations/observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac-8/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5395-scaled.jpg,,TRUE, +N1,22394,sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac,https://biolit.fr/sorties/sortie-99abbaee-2a64-474d-aa2c-f8ee587cfdac/,Ondinec,,08/02/2014,15.0000000,17.0000000,48.649014000000,-2.030084000000,,Bon Secours,22011,observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac-9,https://biolit.fr/observations/observation-99abbaee-2a64-474d-aa2c-f8ee587cfdac-9/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5398-scaled.jpg,,TRUE, +N1,22395,sortie-021824fd-5d71-43b5-85d0-118148eec9b4,https://biolit.fr/sorties/sortie-021824fd-5d71-43b5-85d0-118148eec9b4/,Centre La Sapinière,,7/28/2014 0:00,10.0:45,11.0:45,46.10200700000,-1.113332000000,,"Angoulins sur mer, Pont de la Chaume",22013,observation-021824fd-5d71-43b5-85d0-118148eec9b4,https://biolit.fr/observations/observation-021824fd-5d71-43b5-85d0-118148eec9b4/,,,,https://biolit.fr/wp-content/uploads/2023/05/relevé-scaled.jpg,,TRUE,non-identifiable +N1,22395,sortie-021824fd-5d71-43b5-85d0-118148eec9b4,https://biolit.fr/sorties/sortie-021824fd-5d71-43b5-85d0-118148eec9b4/,Centre La Sapinière,,7/28/2014 0:00,10.0:45,11.0:45,46.10200700000,-1.113332000000,,"Angoulins sur mer, Pont de la Chaume",22015,observation-021824fd-5d71-43b5-85d0-118148eec9b4-2,https://biolit.fr/observations/observation-021824fd-5d71-43b5-85d0-118148eec9b4-2/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/algue-scaled.jpg,,TRUE,Identifiable +N1,22395,sortie-021824fd-5d71-43b5-85d0-118148eec9b4,https://biolit.fr/sorties/sortie-021824fd-5d71-43b5-85d0-118148eec9b4/,Centre La Sapinière,,7/28/2014 0:00,10.0:45,11.0:45,46.10200700000,-1.113332000000,,"Angoulins sur mer, Pont de la Chaume",22017,observation-021824fd-5d71-43b5-85d0-118148eec9b4-3,https://biolit.fr/observations/observation-021824fd-5d71-43b5-85d0-118148eec9b4-3/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/algues-scaled.jpg,,TRUE,Identifiable +N1,22395,sortie-021824fd-5d71-43b5-85d0-118148eec9b4,https://biolit.fr/sorties/sortie-021824fd-5d71-43b5-85d0-118148eec9b4/,Centre La Sapinière,,7/28/2014 0:00,10.0:45,11.0:45,46.10200700000,-1.113332000000,,"Angoulins sur mer, Pont de la Chaume",22019,observation-021824fd-5d71-43b5-85d0-118148eec9b4-4,https://biolit.fr/observations/observation-021824fd-5d71-43b5-85d0-118148eec9b4-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1040413-scaled.jpg,,TRUE, +N1,22396,sortie-e1ffd781-ca65-44c8-a7c3-9dcb77f097f5,https://biolit.fr/sorties/sortie-e1ffd781-ca65-44c8-a7c3-9dcb77f097f5/,Centre La Sapinière,,7/21/2014 0:00,16.0000000,17.0:15,46.102007000000,-1.113329000000,,"Angoulins sur mer, Pont de la Chaume",22021,observation-e1ffd781-ca65-44c8-a7c3-9dcb77f097f5,https://biolit.fr/observations/observation-e1ffd781-ca65-44c8-a7c3-9dcb77f097f5/,,,,https://biolit.fr/wp-content/uploads/2023/05/P1040348.JPG,,FALSE, +N1,22396,sortie-e1ffd781-ca65-44c8-a7c3-9dcb77f097f5,https://biolit.fr/sorties/sortie-e1ffd781-ca65-44c8-a7c3-9dcb77f097f5/,Centre La Sapinière,,7/21/2014 0:00,16.0000000,17.0:15,46.102007000000,-1.113329000000,,"Angoulins sur mer, Pont de la Chaume",22023,observation-e1ffd781-ca65-44c8-a7c3-9dcb77f097f5-2,https://biolit.fr/observations/observation-e1ffd781-ca65-44c8-a7c3-9dcb77f097f5-2/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/05/P1040338.JPG,,TRUE, +N1,22396,sortie-e1ffd781-ca65-44c8-a7c3-9dcb77f097f5,https://biolit.fr/sorties/sortie-e1ffd781-ca65-44c8-a7c3-9dcb77f097f5/,Centre La Sapinière,,7/21/2014 0:00,16.0000000,17.0:15,46.102007000000,-1.113329000000,,"Angoulins sur mer, Pont de la Chaume",22025,observation-e1ffd781-ca65-44c8-a7c3-9dcb77f097f5-3,https://biolit.fr/observations/observation-e1ffd781-ca65-44c8-a7c3-9dcb77f097f5-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P1040343.JPG,,TRUE, +N1,22397,sortie-46f32e20-d566-49e4-af75-a6bd3aaed8d1,https://biolit.fr/sorties/sortie-46f32e20-d566-49e4-af75-a6bd3aaed8d1/,tridimeg,,07/07/2014,18.0000000,19.0000000,48.639841000000,-2.078541000000,,La roche pelée,22027,observation-46f32e20-d566-49e4-af75-a6bd3aaed8d1,https://biolit.fr/observations/observation-46f32e20-d566-49e4-af75-a6bd3aaed8d1/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20140707_190135-rotated.jpg,,TRUE, +N1,22397,sortie-46f32e20-d566-49e4-af75-a6bd3aaed8d1,https://biolit.fr/sorties/sortie-46f32e20-d566-49e4-af75-a6bd3aaed8d1/,tridimeg,,07/07/2014,18.0000000,19.0000000,48.639841000000,-2.078541000000,,La roche pelée,22029,observation-46f32e20-d566-49e4-af75-a6bd3aaed8d1-2,https://biolit.fr/observations/observation-46f32e20-d566-49e4-af75-a6bd3aaed8d1-2/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/05/20140707_190224.jpg,,TRUE, +N1,22397,sortie-46f32e20-d566-49e4-af75-a6bd3aaed8d1,https://biolit.fr/sorties/sortie-46f32e20-d566-49e4-af75-a6bd3aaed8d1/,tridimeg,,07/07/2014,18.0000000,19.0000000,48.639841000000,-2.078541000000,,La roche pelée,22031,observation-46f32e20-d566-49e4-af75-a6bd3aaed8d1-3,https://biolit.fr/observations/observation-46f32e20-d566-49e4-af75-a6bd3aaed8d1-3/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20140707_190310.jpg,,TRUE, +N1,22397,sortie-46f32e20-d566-49e4-af75-a6bd3aaed8d1,https://biolit.fr/sorties/sortie-46f32e20-d566-49e4-af75-a6bd3aaed8d1/,tridimeg,,07/07/2014,18.0000000,19.0000000,48.639841000000,-2.078541000000,,La roche pelée,22033,observation-46f32e20-d566-49e4-af75-a6bd3aaed8d1-4,https://biolit.fr/observations/observation-46f32e20-d566-49e4-af75-a6bd3aaed8d1-4/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20140707_190358.jpg,,TRUE, +N1,22397,sortie-46f32e20-d566-49e4-af75-a6bd3aaed8d1,https://biolit.fr/sorties/sortie-46f32e20-d566-49e4-af75-a6bd3aaed8d1/,tridimeg,,07/07/2014,18.0000000,19.0000000,48.639841000000,-2.078541000000,,La roche pelée,22035,observation-46f32e20-d566-49e4-af75-a6bd3aaed8d1-5,https://biolit.fr/observations/observation-46f32e20-d566-49e4-af75-a6bd3aaed8d1-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20140707_190443-rotated.jpg,,TRUE, +N1,22397,sortie-46f32e20-d566-49e4-af75-a6bd3aaed8d1,https://biolit.fr/sorties/sortie-46f32e20-d566-49e4-af75-a6bd3aaed8d1/,tridimeg,,07/07/2014,18.0000000,19.0000000,48.639841000000,-2.078541000000,,La roche pelée,22037,observation-46f32e20-d566-49e4-af75-a6bd3aaed8d1-6,https://biolit.fr/observations/observation-46f32e20-d566-49e4-af75-a6bd3aaed8d1-6/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20140707_190832-rotated.jpg,,TRUE, +N1,22397,sortie-46f32e20-d566-49e4-af75-a6bd3aaed8d1,https://biolit.fr/sorties/sortie-46f32e20-d566-49e4-af75-a6bd3aaed8d1/,tridimeg,,07/07/2014,18.0000000,19.0000000,48.639841000000,-2.078541000000,,La roche pelée,22039,observation-46f32e20-d566-49e4-af75-a6bd3aaed8d1-7,https://biolit.fr/observations/observation-46f32e20-d566-49e4-af75-a6bd3aaed8d1-7/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/20140707_190945-rotated.jpg,,TRUE, +N1,22398,sortie-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc,https://biolit.fr/sorties/sortie-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc/,Planète Mer,,7/19/2014 0:00,15.0000000,16.0000000,48.64907100000,-2.02991000000,,Estran de bon secours,22041,observation-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc,https://biolit.fr/observations/observation-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5368-scaled.jpg,,TRUE, +N1,22398,sortie-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc,https://biolit.fr/sorties/sortie-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc/,Planète Mer,,7/19/2014 0:00,15.0000000,16.0000000,48.64907100000,-2.02991000000,,Estran de bon secours,22043,observation-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc-2,https://biolit.fr/observations/observation-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc-2/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5369-scaled.jpg,,TRUE, +N1,22398,sortie-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc,https://biolit.fr/sorties/sortie-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc/,Planète Mer,,7/19/2014 0:00,15.0000000,16.0000000,48.64907100000,-2.02991000000,,Estran de bon secours,22045,observation-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc-3,https://biolit.fr/observations/observation-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5370-scaled.jpg,,TRUE, +N1,22398,sortie-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc,https://biolit.fr/sorties/sortie-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc/,Planète Mer,,7/19/2014 0:00,15.0000000,16.0000000,48.64907100000,-2.02991000000,,Estran de bon secours,22047,observation-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc-4,https://biolit.fr/observations/observation-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc-4/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5371-scaled.jpg,,TRUE, +N1,22398,sortie-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc,https://biolit.fr/sorties/sortie-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc/,Planète Mer,,7/19/2014 0:00,15.0000000,16.0000000,48.64907100000,-2.02991000000,,Estran de bon secours,22049,observation-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc-5,https://biolit.fr/observations/observation-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5372-scaled.jpg,,TRUE, +N1,22398,sortie-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc,https://biolit.fr/sorties/sortie-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc/,Planète Mer,,7/19/2014 0:00,15.0000000,16.0000000,48.64907100000,-2.02991000000,,Estran de bon secours,22051,observation-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc-6,https://biolit.fr/observations/observation-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc-6/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5373-scaled.jpg,,TRUE, +N1,22398,sortie-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc,https://biolit.fr/sorties/sortie-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc/,Planète Mer,,7/19/2014 0:00,15.0000000,16.0000000,48.64907100000,-2.02991000000,,Estran de bon secours,22053,observation-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc-7,https://biolit.fr/observations/observation-2dd76f82-6d27-4996-a4bf-4d5e4f254cfc-7/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5374-scaled.jpg,,TRUE, +N1,22399,sortie-b95264a3-7ecb-4279-82b6-fcdd9b8f7b36,https://biolit.fr/sorties/sortie-b95264a3-7ecb-4279-82b6-fcdd9b8f7b36/,Planète Mer,,7/15/2014 0:00,14.0:45,17.0000000,46.11032000000,-1.138625000000,,Estran pointe du Chay,22055,observation-b95264a3-7ecb-4279-82b6-fcdd9b8f7b36,https://biolit.fr/observations/observation-b95264a3-7ecb-4279-82b6-fcdd9b8f7b36/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_5346-scaled.jpg,,FALSE, +N1,22399,sortie-b95264a3-7ecb-4279-82b6-fcdd9b8f7b36,https://biolit.fr/sorties/sortie-b95264a3-7ecb-4279-82b6-fcdd9b8f7b36/,Planète Mer,,7/15/2014 0:00,14.0:45,17.0000000,46.11032000000,-1.138625000000,,Estran pointe du Chay,22057,observation-b95264a3-7ecb-4279-82b6-fcdd9b8f7b36-2,https://biolit.fr/observations/observation-b95264a3-7ecb-4279-82b6-fcdd9b8f7b36-2/,Ocinebrellus inornatus,Bigorneau perceur japonais,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5351-scaled.jpg,,TRUE, +N1,22400,sortie-d2491b1a-11ec-4ff5-ab06-a1d3d46bd34b,https://biolit.fr/sorties/sortie-d2491b1a-11ec-4ff5-ab06-a1d3d46bd34b/,NAUSICAA,,07/05/2014,11.0000000,12.0000000,50.828499000000,1.589854000000,,plage du Noirda Audresselles,22059,observation-d2491b1a-11ec-4ff5-ab06-a1d3d46bd34b,https://biolit.fr/observations/observation-d2491b1a-11ec-4ff5-ab06-a1d3d46bd34b/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1315-scaled.jpg,,TRUE, +N1,22400,sortie-d2491b1a-11ec-4ff5-ab06-a1d3d46bd34b,https://biolit.fr/sorties/sortie-d2491b1a-11ec-4ff5-ab06-a1d3d46bd34b/,NAUSICAA,,07/05/2014,11.0000000,12.0000000,50.828499000000,1.589854000000,,plage du Noirda Audresselles,22061,observation-d2491b1a-11ec-4ff5-ab06-a1d3d46bd34b-2,https://biolit.fr/observations/observation-d2491b1a-11ec-4ff5-ab06-a1d3d46bd34b-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1329-scaled.jpg,,FALSE, +N1,22400,sortie-d2491b1a-11ec-4ff5-ab06-a1d3d46bd34b,https://biolit.fr/sorties/sortie-d2491b1a-11ec-4ff5-ab06-a1d3d46bd34b/,NAUSICAA,,07/05/2014,11.0000000,12.0000000,50.828499000000,1.589854000000,,plage du Noirda Audresselles,22063,observation-d2491b1a-11ec-4ff5-ab06-a1d3d46bd34b-3,https://biolit.fr/observations/observation-d2491b1a-11ec-4ff5-ab06-a1d3d46bd34b-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_3622.jpg,,FALSE, +N1,22401,sortie-9a0fb047-9eac-4215-ae66-d6ab5acb9880,https://biolit.fr/sorties/sortie-9a0fb047-9eac-4215-ae66-d6ab5acb9880/,NAUSICAA,,07/04/2014,11.0000000,12.0000000,50.828523000000,1.58990400000,,Plage du Noirda Audresselles,22065,observation-9a0fb047-9eac-4215-ae66-d6ab5acb9880,https://biolit.fr/observations/observation-9a0fb047-9eac-4215-ae66-d6ab5acb9880/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1268-scaled.jpg,,TRUE, +N1,22402,sortie-470566ad-14ab-47eb-b508-1d8566e46d09,https://biolit.fr/sorties/sortie-470566ad-14ab-47eb-b508-1d8566e46d09/,NAUSICAA,,07/04/2014,11.0000000,12.0000000,50.828528000000,1.589872000000,,"Plage du Noirda, Audresselles",22067,observation-470566ad-14ab-47eb-b508-1d8566e46d09,https://biolit.fr/observations/observation-470566ad-14ab-47eb-b508-1d8566e46d09/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1267-scaled.jpg,,TRUE, +N1,22402,sortie-470566ad-14ab-47eb-b508-1d8566e46d09,https://biolit.fr/sorties/sortie-470566ad-14ab-47eb-b508-1d8566e46d09/,NAUSICAA,,07/04/2014,11.0000000,12.0000000,50.828528000000,1.589872000000,,"Plage du Noirda, Audresselles",22069,observation-470566ad-14ab-47eb-b508-1d8566e46d09-2,https://biolit.fr/observations/observation-470566ad-14ab-47eb-b508-1d8566e46d09-2/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1269-scaled.jpg,,TRUE, +N1,22403,sortie-9826eae9-c992-44ba-99fe-7634470a63c1,https://biolit.fr/sorties/sortie-9826eae9-c992-44ba-99fe-7634470a63c1/,NAUSICAA,,07/05/2014,11.0000000,12.0000000,50.828479000000,1.589867000000,,Plage du Noirda,22071,observation-9826eae9-c992-44ba-99fe-7634470a63c1,https://biolit.fr/observations/observation-9826eae9-c992-44ba-99fe-7634470a63c1/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_3640-scaled.jpg,,TRUE, +N1,22404,sortie-607a51e6-7ab6-4ab2-8343-5a40df9e6c5a,https://biolit.fr/sorties/sortie-607a51e6-7ab6-4ab2-8343-5a40df9e6c5a/,NAUSICAA,,07/04/2014,11.0000000,12.0000000,50.828499000000,1.589897000000,,Plage du Noirda,22073,observation-607a51e6-7ab6-4ab2-8343-5a40df9e6c5a,https://biolit.fr/observations/observation-607a51e6-7ab6-4ab2-8343-5a40df9e6c5a/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1509_0.jpg,,TRUE, +N1,22405,sortie-acc706f3-4f63-41c1-bcd8-462ebcebfcc5,https://biolit.fr/sorties/sortie-acc706f3-4f63-41c1-bcd8-462ebcebfcc5/,Anne Bronnec,,5/29/2014 0:00,10.0000000,11.0000000,48.362272000000,-4.553335000000,,"Brest, Ste Anne du Portzic",22075,observation-acc706f3-4f63-41c1-bcd8-462ebcebfcc5,https://biolit.fr/observations/observation-acc706f3-4f63-41c1-bcd8-462ebcebfcc5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Fucus-spirale_Monodonte.jpg,,TRUE, +N1,22405,sortie-acc706f3-4f63-41c1-bcd8-462ebcebfcc5,https://biolit.fr/sorties/sortie-acc706f3-4f63-41c1-bcd8-462ebcebfcc5/,Anne Bronnec,,5/29/2014 0:00,10.0000000,11.0000000,48.362272000000,-4.553335000000,,"Brest, Ste Anne du Portzic",22077,observation-acc706f3-4f63-41c1-bcd8-462ebcebfcc5-2,https://biolit.fr/observations/observation-acc706f3-4f63-41c1-bcd8-462ebcebfcc5-2/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Fucus-spirale_Gibule-ombiliquee.jpg,,TRUE, +N1,22405,sortie-acc706f3-4f63-41c1-bcd8-462ebcebfcc5,https://biolit.fr/sorties/sortie-acc706f3-4f63-41c1-bcd8-462ebcebfcc5/,Anne Bronnec,,5/29/2014 0:00,10.0000000,11.0000000,48.362272000000,-4.553335000000,,"Brest, Ste Anne du Portzic",22079,observation-acc706f3-4f63-41c1-bcd8-462ebcebfcc5-3,https://biolit.fr/observations/observation-acc706f3-4f63-41c1-bcd8-462ebcebfcc5-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Fucus-serratus_Littorine-obtuse.jpg,,TRUE, +N1,22405,sortie-acc706f3-4f63-41c1-bcd8-462ebcebfcc5,https://biolit.fr/sorties/sortie-acc706f3-4f63-41c1-bcd8-462ebcebfcc5/,Anne Bronnec,,5/29/2014 0:00,10.0000000,11.0000000,48.362272000000,-4.553335000000,,"Brest, Ste Anne du Portzic",22081,observation-acc706f3-4f63-41c1-bcd8-462ebcebfcc5-4,https://biolit.fr/observations/observation-acc706f3-4f63-41c1-bcd8-462ebcebfcc5-4/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Fucus-serratus_Gibule-ombiliquee.jpg,,TRUE, +N1,22405,sortie-acc706f3-4f63-41c1-bcd8-462ebcebfcc5,https://biolit.fr/sorties/sortie-acc706f3-4f63-41c1-bcd8-462ebcebfcc5/,Anne Bronnec,,5/29/2014 0:00,10.0000000,11.0000000,48.362272000000,-4.553335000000,,"Brest, Ste Anne du Portzic",22083,observation-acc706f3-4f63-41c1-bcd8-462ebcebfcc5-5,https://biolit.fr/observations/observation-acc706f3-4f63-41c1-bcd8-462ebcebfcc5-5/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Fucus-serratus_Bigorneau.jpg,,TRUE, +N1,22405,sortie-acc706f3-4f63-41c1-bcd8-462ebcebfcc5,https://biolit.fr/sorties/sortie-acc706f3-4f63-41c1-bcd8-462ebcebfcc5/,Anne Bronnec,,5/29/2014 0:00,10.0000000,11.0000000,48.362272000000,-4.553335000000,,"Brest, Ste Anne du Portzic",22085,observation-acc706f3-4f63-41c1-bcd8-462ebcebfcc5-6,https://biolit.fr/observations/observation-acc706f3-4f63-41c1-bcd8-462ebcebfcc5-6/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Fucus serratus-scaled.jpg,,TRUE, +N1,22405,sortie-acc706f3-4f63-41c1-bcd8-462ebcebfcc5,https://biolit.fr/sorties/sortie-acc706f3-4f63-41c1-bcd8-462ebcebfcc5/,Anne Bronnec,,5/29/2014 0:00,10.0000000,11.0000000,48.362272000000,-4.553335000000,,"Brest, Ste Anne du Portzic",22086,observation-acc706f3-4f63-41c1-bcd8-462ebcebfcc5-7,https://biolit.fr/observations/observation-acc706f3-4f63-41c1-bcd8-462ebcebfcc5-7/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Fucus-serratus2.jpg,,TRUE, +N1,22406,sortie-f97cf7e7-6afc-4097-a49e-78a89d5065c6,https://biolit.fr/sorties/sortie-f97cf7e7-6afc-4097-a49e-78a89d5065c6/,Guigui Nature,,6/26/2014 0:00,14.0000000,15.0000000,48.642124000000,-2.074427000000,,Estran de Saint Enogat,22088,observation-f97cf7e7-6afc-4097-a49e-78a89d5065c6,https://biolit.fr/observations/observation-f97cf7e7-6afc-4097-a49e-78a89d5065c6/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5312-scaled.jpg,,TRUE, +N1,22406,sortie-f97cf7e7-6afc-4097-a49e-78a89d5065c6,https://biolit.fr/sorties/sortie-f97cf7e7-6afc-4097-a49e-78a89d5065c6/,Guigui Nature,,6/26/2014 0:00,14.0000000,15.0000000,48.642124000000,-2.074427000000,,Estran de Saint Enogat,22090,observation-f97cf7e7-6afc-4097-a49e-78a89d5065c6-2,https://biolit.fr/observations/observation-f97cf7e7-6afc-4097-a49e-78a89d5065c6-2/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5313-scaled.jpg,,TRUE, +N1,22407,sortie-9c9ce6b2-eb25-4574-b8e1-14a42d120e72,https://biolit.fr/sorties/sortie-9c9ce6b2-eb25-4574-b8e1-14a42d120e72/,Guigui Nature,,6/26/2014 0:00,14.0000000,15.0000000,48.642124000000,-2.074427000000,,Estran de Saint Enogat,22092,observation-9c9ce6b2-eb25-4574-b8e1-14a42d120e72,https://biolit.fr/observations/observation-9c9ce6b2-eb25-4574-b8e1-14a42d120e72/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5312-scaled.jpg,,TRUE, +N1,22407,sortie-9c9ce6b2-eb25-4574-b8e1-14a42d120e72,https://biolit.fr/sorties/sortie-9c9ce6b2-eb25-4574-b8e1-14a42d120e72/,Guigui Nature,,6/26/2014 0:00,14.0000000,15.0000000,48.642124000000,-2.074427000000,,Estran de Saint Enogat,22093,observation-9c9ce6b2-eb25-4574-b8e1-14a42d120e72-2,https://biolit.fr/observations/observation-9c9ce6b2-eb25-4574-b8e1-14a42d120e72-2/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5313-scaled.jpg,,TRUE, +N1,22408,sortie-f230b22f-4a14-4c8b-8275-d1092e78bae4,https://biolit.fr/sorties/sortie-f230b22f-4a14-4c8b-8275-d1092e78bae4/,Guigui Nature,,6/25/2014 0:00,14.0000000,15.0000000,48.642138000000,-2.074448000000,,estran de saint enogat,22094,observation-f230b22f-4a14-4c8b-8275-d1092e78bae4,https://biolit.fr/observations/observation-f230b22f-4a14-4c8b-8275-d1092e78bae4/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5325-scaled.jpg,,TRUE, +N1,22408,sortie-f230b22f-4a14-4c8b-8275-d1092e78bae4,https://biolit.fr/sorties/sortie-f230b22f-4a14-4c8b-8275-d1092e78bae4/,Guigui Nature,,6/25/2014 0:00,14.0000000,15.0000000,48.642138000000,-2.074448000000,,estran de saint enogat,22096,observation-f230b22f-4a14-4c8b-8275-d1092e78bae4-2,https://biolit.fr/observations/observation-f230b22f-4a14-4c8b-8275-d1092e78bae4-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5326-scaled.jpg,,TRUE, +N1,22408,sortie-f230b22f-4a14-4c8b-8275-d1092e78bae4,https://biolit.fr/sorties/sortie-f230b22f-4a14-4c8b-8275-d1092e78bae4/,Guigui Nature,,6/25/2014 0:00,14.0000000,15.0000000,48.642138000000,-2.074448000000,,estran de saint enogat,22098,observation-f230b22f-4a14-4c8b-8275-d1092e78bae4-3,https://biolit.fr/observations/observation-f230b22f-4a14-4c8b-8275-d1092e78bae4-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5327-scaled.jpg,,TRUE, +N1,22408,sortie-f230b22f-4a14-4c8b-8275-d1092e78bae4,https://biolit.fr/sorties/sortie-f230b22f-4a14-4c8b-8275-d1092e78bae4/,Guigui Nature,,6/25/2014 0:00,14.0000000,15.0000000,48.642138000000,-2.074448000000,,estran de saint enogat,22100,observation-f230b22f-4a14-4c8b-8275-d1092e78bae4-4,https://biolit.fr/observations/observation-f230b22f-4a14-4c8b-8275-d1092e78bae4-4/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5328-scaled.jpg,,TRUE, +N1,22408,sortie-f230b22f-4a14-4c8b-8275-d1092e78bae4,https://biolit.fr/sorties/sortie-f230b22f-4a14-4c8b-8275-d1092e78bae4/,Guigui Nature,,6/25/2014 0:00,14.0000000,15.0000000,48.642138000000,-2.074448000000,,estran de saint enogat,22102,observation-f230b22f-4a14-4c8b-8275-d1092e78bae4-5,https://biolit.fr/observations/observation-f230b22f-4a14-4c8b-8275-d1092e78bae4-5/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5329-scaled.jpg,,TRUE, +N1,22408,sortie-f230b22f-4a14-4c8b-8275-d1092e78bae4,https://biolit.fr/sorties/sortie-f230b22f-4a14-4c8b-8275-d1092e78bae4/,Guigui Nature,,6/25/2014 0:00,14.0000000,15.0000000,48.642138000000,-2.074448000000,,estran de saint enogat,22104,observation-f230b22f-4a14-4c8b-8275-d1092e78bae4-6,https://biolit.fr/observations/observation-f230b22f-4a14-4c8b-8275-d1092e78bae4-6/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5330-scaled.jpg,,TRUE, +N1,22408,sortie-f230b22f-4a14-4c8b-8275-d1092e78bae4,https://biolit.fr/sorties/sortie-f230b22f-4a14-4c8b-8275-d1092e78bae4/,Guigui Nature,,6/25/2014 0:00,14.0000000,15.0000000,48.642138000000,-2.074448000000,,estran de saint enogat,22106,observation-f230b22f-4a14-4c8b-8275-d1092e78bae4-7,https://biolit.fr/observations/observation-f230b22f-4a14-4c8b-8275-d1092e78bae4-7/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5331-scaled.jpg,,TRUE, +N1,22409,sortie-ee037877-a161-4019-9cf4-3b8496dddc22,https://biolit.fr/sorties/sortie-ee037877-a161-4019-9cf4-3b8496dddc22/,PBLOT,,6/13/2014 0:00,10.0000000,12.0000000,47.301223000000,-2.529383000000,,Le Croisic,22108,observation-ee037877-a161-4019-9cf4-3b8496dddc22,https://biolit.fr/observations/observation-ee037877-a161-4019-9cf4-3b8496dddc22/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/patelle.jpg,,TRUE, +N1,22410,sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0,https://biolit.fr/sorties/sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0/,NAUSICAA,,06/08/2014,16.0000000,17.0000000,50.828885000000,1.590479000000,,Audresselles,22110,observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0,https://biolit.fr/observations/observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1500.JPG,,TRUE, +N1,22410,sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0,https://biolit.fr/sorties/sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0/,NAUSICAA,,06/08/2014,16.0000000,17.0000000,50.828885000000,1.590479000000,,Audresselles,22112,observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-2,https://biolit.fr/observations/observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-2/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1519.JPG,,TRUE, +N1,22410,sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0,https://biolit.fr/sorties/sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0/,NAUSICAA,,06/08/2014,16.0000000,17.0000000,50.828885000000,1.590479000000,,Audresselles,22114,observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-3,https://biolit.fr/observations/observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1514.jpg,,TRUE, +N1,22410,sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0,https://biolit.fr/sorties/sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0/,NAUSICAA,,06/08/2014,16.0000000,17.0000000,50.828885000000,1.590479000000,,Audresselles,22116,observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-4,https://biolit.fr/observations/observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-4/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1498.JPG,,TRUE, +N1,22410,sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0,https://biolit.fr/sorties/sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0/,NAUSICAA,,06/08/2014,16.0000000,17.0000000,50.828885000000,1.590479000000,,Audresselles,22118,observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-5,https://biolit.fr/observations/observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-5/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1502.JPG,,TRUE, +N1,22410,sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0,https://biolit.fr/sorties/sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0/,NAUSICAA,,06/08/2014,16.0000000,17.0000000,50.828885000000,1.590479000000,,Audresselles,22120,observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-6,https://biolit.fr/observations/observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-6/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1503.JPG,,TRUE, +N1,22410,sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0,https://biolit.fr/sorties/sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0/,NAUSICAA,,06/08/2014,16.0000000,17.0000000,50.828885000000,1.590479000000,,Audresselles,22122,observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-7,https://biolit.fr/observations/observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-7/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1506.JPG,,TRUE, +N1,22410,sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0,https://biolit.fr/sorties/sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0/,NAUSICAA,,06/08/2014,16.0000000,17.0000000,50.828885000000,1.590479000000,,Audresselles,22124,observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-8,https://biolit.fr/observations/observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-8/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1508.JPG,,TRUE, +N1,22410,sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0,https://biolit.fr/sorties/sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0/,NAUSICAA,,06/08/2014,16.0000000,17.0000000,50.828885000000,1.590479000000,,Audresselles,22126,observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-9,https://biolit.fr/observations/observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-9/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1509-scaled.jpg,,FALSE, +N1,22410,sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0,https://biolit.fr/sorties/sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0/,NAUSICAA,,06/08/2014,16.0000000,17.0000000,50.828885000000,1.590479000000,,Audresselles,22127,observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-10,https://biolit.fr/observations/observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-10/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1510.JPG,,TRUE, +N1,22410,sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0,https://biolit.fr/sorties/sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0/,NAUSICAA,,06/08/2014,16.0000000,17.0000000,50.828885000000,1.590479000000,,Audresselles,22129,observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-11,https://biolit.fr/observations/observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-11/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1511.JPG,,FALSE, +N1,22410,sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0,https://biolit.fr/sorties/sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0/,NAUSICAA,,06/08/2014,16.0000000,17.0000000,50.828885000000,1.590479000000,,Audresselles,22131,observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-12,https://biolit.fr/observations/observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-12/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1512.JPG,,FALSE, +N1,22410,sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0,https://biolit.fr/sorties/sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0/,NAUSICAA,,06/08/2014,16.0000000,17.0000000,50.828885000000,1.590479000000,,Audresselles,22133,observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-13,https://biolit.fr/observations/observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-13/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1513.JPG,,TRUE, +N1,22410,sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0,https://biolit.fr/sorties/sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0/,NAUSICAA,,06/08/2014,16.0000000,17.0000000,50.828885000000,1.590479000000,,Audresselles,22135,observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-14,https://biolit.fr/observations/observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-14/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSCN1514_0.jpg,,TRUE, +N1,22410,sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0,https://biolit.fr/sorties/sortie-78ab31b8-a13e-4206-b83f-687d5e5e74a0/,NAUSICAA,,06/08/2014,16.0000000,17.0000000,50.828885000000,1.590479000000,,Audresselles,22137,observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-15,https://biolit.fr/observations/observation-78ab31b8-a13e-4206-b83f-687d5e5e74a0-15/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN1516.JPG,,FALSE, +N1,22411,sortie-23caf513-bf32-407b-b16e-a923d14da7bd,https://biolit.fr/sorties/sortie-23caf513-bf32-407b-b16e-a923d14da7bd/,Observe la nature,,06/03/2014,16.0000000,16.0:35,48.599088000000,-2.555720000000,,Plage de Piegu Pleneuf val andré,22139,observation-23caf513-bf32-407b-b16e-a923d14da7bd,https://biolit.fr/observations/observation-23caf513-bf32-407b-b16e-a923d14da7bd/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC04063_0-scaled.jpg,,TRUE, +N1,22411,sortie-23caf513-bf32-407b-b16e-a923d14da7bd,https://biolit.fr/sorties/sortie-23caf513-bf32-407b-b16e-a923d14da7bd/,Observe la nature,,06/03/2014,16.0000000,16.0:35,48.599088000000,-2.555720000000,,Plage de Piegu Pleneuf val andré,22141,observation-23caf513-bf32-407b-b16e-a923d14da7bd-2,https://biolit.fr/observations/observation-23caf513-bf32-407b-b16e-a923d14da7bd-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/DSC04058_0-scaled.jpg,,TRUE, +N1,22411,sortie-23caf513-bf32-407b-b16e-a923d14da7bd,https://biolit.fr/sorties/sortie-23caf513-bf32-407b-b16e-a923d14da7bd/,Observe la nature,,06/03/2014,16.0000000,16.0:35,48.599088000000,-2.555720000000,,Plage de Piegu Pleneuf val andré,22143,observation-23caf513-bf32-407b-b16e-a923d14da7bd-3,https://biolit.fr/observations/observation-23caf513-bf32-407b-b16e-a923d14da7bd-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/POURPRE_0-scaled.jpg,,TRUE, +N1,22412,sortie-6de21c1f-842d-43b0-9654-675738a928e5,https://biolit.fr/sorties/sortie-6de21c1f-842d-43b0-9654-675738a928e5/,NAUSICAA,,5/24/2014 0:00,17.0000000,18.0000000,50.828844000000,1.590276000000,,Noirda Audresselles,22145,observation-6de21c1f-842d-43b0-9654-675738a928e5,https://biolit.fr/observations/observation-6de21c1f-842d-43b0-9654-675738a928e5/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/05/DSCN6520_1.JPG,,TRUE, +N1,22412,sortie-6de21c1f-842d-43b0-9654-675738a928e5,https://biolit.fr/sorties/sortie-6de21c1f-842d-43b0-9654-675738a928e5/,NAUSICAA,,5/24/2014 0:00,17.0000000,18.0000000,50.828844000000,1.590276000000,,Noirda Audresselles,22147,observation-6de21c1f-842d-43b0-9654-675738a928e5-2,https://biolit.fr/observations/observation-6de21c1f-842d-43b0-9654-675738a928e5-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/DSCN6518.JPG,,FALSE, +N1,22412,sortie-6de21c1f-842d-43b0-9654-675738a928e5,https://biolit.fr/sorties/sortie-6de21c1f-842d-43b0-9654-675738a928e5/,NAUSICAA,,5/24/2014 0:00,17.0000000,18.0000000,50.828844000000,1.590276000000,,Noirda Audresselles,22149,observation-6de21c1f-842d-43b0-9654-675738a928e5-3,https://biolit.fr/observations/observation-6de21c1f-842d-43b0-9654-675738a928e5-3/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/DSCN6510.JPG,,TRUE, +N1,22412,sortie-6de21c1f-842d-43b0-9654-675738a928e5,https://biolit.fr/sorties/sortie-6de21c1f-842d-43b0-9654-675738a928e5/,NAUSICAA,,5/24/2014 0:00,17.0000000,18.0000000,50.828844000000,1.590276000000,,Noirda Audresselles,22151,observation-6de21c1f-842d-43b0-9654-675738a928e5-4,https://biolit.fr/observations/observation-6de21c1f-842d-43b0-9654-675738a928e5-4/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/DSCN6509.JPG,,TRUE, +N1,22412,sortie-6de21c1f-842d-43b0-9654-675738a928e5,https://biolit.fr/sorties/sortie-6de21c1f-842d-43b0-9654-675738a928e5/,NAUSICAA,,5/24/2014 0:00,17.0000000,18.0000000,50.828844000000,1.590276000000,,Noirda Audresselles,22153,observation-6de21c1f-842d-43b0-9654-675738a928e5-5,https://biolit.fr/observations/observation-6de21c1f-842d-43b0-9654-675738a928e5-5/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/DSCN6508.JPG,,TRUE, +N1,22412,sortie-6de21c1f-842d-43b0-9654-675738a928e5,https://biolit.fr/sorties/sortie-6de21c1f-842d-43b0-9654-675738a928e5/,NAUSICAA,,5/24/2014 0:00,17.0000000,18.0000000,50.828844000000,1.590276000000,,Noirda Audresselles,22155,observation-6de21c1f-842d-43b0-9654-675738a928e5-6,https://biolit.fr/observations/observation-6de21c1f-842d-43b0-9654-675738a928e5-6/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/DSCN6507.JPG,,TRUE, +N1,22413,sortie-b182ad22-e341-47a8-aa51-3b49cea98bb5,https://biolit.fr/sorties/sortie-b182ad22-e341-47a8-aa51-3b49cea98bb5/,ESTRAN Cité de la Mer,,5/19/2014 0:00,9.0000000,11.0000000,49.925626000000,1.064163000000,,"Dieppe, bas fort blanc",22157,observation-b182ad22-e341-47a8-aa51-3b49cea98bb5,https://biolit.fr/observations/observation-b182ad22-e341-47a8-aa51-3b49cea98bb5/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P5190056.JPG,,TRUE, +N1,22413,sortie-b182ad22-e341-47a8-aa51-3b49cea98bb5,https://biolit.fr/sorties/sortie-b182ad22-e341-47a8-aa51-3b49cea98bb5/,ESTRAN Cité de la Mer,,5/19/2014 0:00,9.0000000,11.0000000,49.925626000000,1.064163000000,,"Dieppe, bas fort blanc",22159,observation-b182ad22-e341-47a8-aa51-3b49cea98bb5-2,https://biolit.fr/observations/observation-b182ad22-e341-47a8-aa51-3b49cea98bb5-2/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P5190057.JPG,,TRUE, +N1,22413,sortie-b182ad22-e341-47a8-aa51-3b49cea98bb5,https://biolit.fr/sorties/sortie-b182ad22-e341-47a8-aa51-3b49cea98bb5/,ESTRAN Cité de la Mer,,5/19/2014 0:00,9.0000000,11.0000000,49.925626000000,1.064163000000,,"Dieppe, bas fort blanc",22161,observation-b182ad22-e341-47a8-aa51-3b49cea98bb5-3,https://biolit.fr/observations/observation-b182ad22-e341-47a8-aa51-3b49cea98bb5-3/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P5190072.JPG,,TRUE, +N1,22413,sortie-b182ad22-e341-47a8-aa51-3b49cea98bb5,https://biolit.fr/sorties/sortie-b182ad22-e341-47a8-aa51-3b49cea98bb5/,ESTRAN Cité de la Mer,,5/19/2014 0:00,9.0000000,11.0000000,49.925626000000,1.064163000000,,"Dieppe, bas fort blanc",22163,observation-b182ad22-e341-47a8-aa51-3b49cea98bb5-4,https://biolit.fr/observations/observation-b182ad22-e341-47a8-aa51-3b49cea98bb5-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P5190077.JPG,,TRUE, +N1,22413,sortie-b182ad22-e341-47a8-aa51-3b49cea98bb5,https://biolit.fr/sorties/sortie-b182ad22-e341-47a8-aa51-3b49cea98bb5/,ESTRAN Cité de la Mer,,5/19/2014 0:00,9.0000000,11.0000000,49.925626000000,1.064163000000,,"Dieppe, bas fort blanc",22165,observation-b182ad22-e341-47a8-aa51-3b49cea98bb5-5,https://biolit.fr/observations/observation-b182ad22-e341-47a8-aa51-3b49cea98bb5-5/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P5190078.JPG,,TRUE, +N1,22414,sortie-2ffe57c3-75a1-4b23-86b1-3abb38f4d5fd,https://biolit.fr/sorties/sortie-2ffe57c3-75a1-4b23-86b1-3abb38f4d5fd/,Anne Bronnec,,05/10/2014,18.0000000,18.0000000,48.520642000000,-4.765288000000,,Argenton en Landunvez,22167,observation-2ffe57c3-75a1-4b23-86b1-3abb38f4d5fd,https://biolit.fr/observations/observation-2ffe57c3-75a1-4b23-86b1-3abb38f4d5fd/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Ascophyllum-Littorine fabilis_1.jpg,,TRUE, +N1,22415,sortie-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0,https://biolit.fr/sorties/sortie-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0/,Anne Bronnec,,5/19/2014 0:00,20.0000000,22.0000000,48.362145000000,-4.551929000000,,Brest Ste Anne du Portzic,22169,observation-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0,https://biolit.fr/observations/observation-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Ascophyllum-Littorine fabilis.jpg,,TRUE, +N1,22415,sortie-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0,https://biolit.fr/sorties/sortie-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0/,Anne Bronnec,,5/19/2014 0:00,20.0000000,22.0000000,48.362145000000,-4.551929000000,,Brest Ste Anne du Portzic,22171,observation-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0-2,https://biolit.fr/observations/observation-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Ascophyllum-Littorine obtuse.jpg,,TRUE, +N1,22415,sortie-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0,https://biolit.fr/sorties/sortie-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0/,Anne Bronnec,,5/19/2014 0:00,20.0000000,22.0000000,48.362145000000,-4.551929000000,,Brest Ste Anne du Portzic,22173,observation-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0-3,https://biolit.fr/observations/observation-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Fucus spirale-Littorine fabilis.jpg,,TRUE, +N1,22415,sortie-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0,https://biolit.fr/sorties/sortie-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0/,Anne Bronnec,,5/19/2014 0:00,20.0000000,22.0000000,48.362145000000,-4.551929000000,,Brest Ste Anne du Portzic,22175,observation-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0-4,https://biolit.fr/observations/observation-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0-4/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Pelvétie-Littorine obtuse_0.jpg,,TRUE, +N1,22415,sortie-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0,https://biolit.fr/sorties/sortie-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0/,Anne Bronnec,,5/19/2014 0:00,20.0000000,22.0000000,48.362145000000,-4.551929000000,,Brest Ste Anne du Portzic,22177,observation-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0-5,https://biolit.fr/observations/observation-abaad8d1-32b5-43ef-86f7-88dd8c9bcbd0-5/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Ascophyllum-.jpg,,TRUE, +N1,22416,sortie-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26,https://biolit.fr/sorties/sortie-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26/,tridimeg,,04/10/2014,9.0000000,10.0000000,48.353938000000,-4.566177000000,,Petit Dellec,22179,observation-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26,https://biolit.fr/observations/observation-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5058_0-scaled.jpg,,TRUE, +N1,22416,sortie-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26,https://biolit.fr/sorties/sortie-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26/,tridimeg,,04/10/2014,9.0000000,10.0000000,48.353938000000,-4.566177000000,,Petit Dellec,22181,observation-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26-2,https://biolit.fr/observations/observation-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26-2/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5063-scaled.jpg,,TRUE, +N1,22416,sortie-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26,https://biolit.fr/sorties/sortie-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26/,tridimeg,,04/10/2014,9.0000000,10.0000000,48.353938000000,-4.566177000000,,Petit Dellec,22183,observation-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26-3,https://biolit.fr/observations/observation-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26-3/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5078-scaled.jpg,,TRUE, +N1,22416,sortie-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26,https://biolit.fr/sorties/sortie-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26/,tridimeg,,04/10/2014,9.0000000,10.0000000,48.353938000000,-4.566177000000,,Petit Dellec,22185,observation-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26-4,https://biolit.fr/observations/observation-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26-4/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5088-scaled.jpg,,TRUE, +N1,22416,sortie-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26,https://biolit.fr/sorties/sortie-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26/,tridimeg,,04/10/2014,9.0000000,10.0000000,48.353938000000,-4.566177000000,,Petit Dellec,22187,observation-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26-5,https://biolit.fr/observations/observation-dfb86db0-bb0f-4d37-8dfd-aa3f2b89be26-5/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_5133-scaled.jpg,,TRUE, +N1,22417,sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60,https://biolit.fr/sorties/sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60/,ESTRAN Cité de la Mer,,04/06/2014,11.0000000,11.0:45,49.910010000000,0.937415000000,,Plage de Sainte Marguerite sur mer,22189,observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60,https://biolit.fr/observations/observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4060016.JPG,,TRUE, +N1,22417,sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60,https://biolit.fr/sorties/sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60/,ESTRAN Cité de la Mer,,04/06/2014,11.0000000,11.0:45,49.910010000000,0.937415000000,,Plage de Sainte Marguerite sur mer,22191,observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-2,https://biolit.fr/observations/observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4060017.JPG,,TRUE, +N1,22417,sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60,https://biolit.fr/sorties/sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60/,ESTRAN Cité de la Mer,,04/06/2014,11.0000000,11.0:45,49.910010000000,0.937415000000,,Plage de Sainte Marguerite sur mer,22193,observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-3,https://biolit.fr/observations/observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-3/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4060018.JPG,,TRUE, +N1,22417,sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60,https://biolit.fr/sorties/sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60/,ESTRAN Cité de la Mer,,04/06/2014,11.0000000,11.0:45,49.910010000000,0.937415000000,,Plage de Sainte Marguerite sur mer,22195,observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-4,https://biolit.fr/observations/observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-4/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4060019.JPG,,TRUE, +N1,22417,sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60,https://biolit.fr/sorties/sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60/,ESTRAN Cité de la Mer,,04/06/2014,11.0000000,11.0:45,49.910010000000,0.937415000000,,Plage de Sainte Marguerite sur mer,22197,observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-5,https://biolit.fr/observations/observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-5/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4060020.JPG,,TRUE, +N1,22417,sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60,https://biolit.fr/sorties/sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60/,ESTRAN Cité de la Mer,,04/06/2014,11.0000000,11.0:45,49.910010000000,0.937415000000,,Plage de Sainte Marguerite sur mer,22199,observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-6,https://biolit.fr/observations/observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-6/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4060021.JPG,,TRUE, +N1,22417,sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60,https://biolit.fr/sorties/sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60/,ESTRAN Cité de la Mer,,04/06/2014,11.0000000,11.0:45,49.910010000000,0.937415000000,,Plage de Sainte Marguerite sur mer,22201,observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-7,https://biolit.fr/observations/observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-7/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4060022.JPG,,TRUE, +N1,22417,sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60,https://biolit.fr/sorties/sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60/,ESTRAN Cité de la Mer,,04/06/2014,11.0000000,11.0:45,49.910010000000,0.937415000000,,Plage de Sainte Marguerite sur mer,22203,observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-8,https://biolit.fr/observations/observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-8/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4060023.JPG,,TRUE, +N1,22417,sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60,https://biolit.fr/sorties/sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60/,ESTRAN Cité de la Mer,,04/06/2014,11.0000000,11.0:45,49.910010000000,0.937415000000,,Plage de Sainte Marguerite sur mer,22205,observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-9,https://biolit.fr/observations/observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-9/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4060024.JPG,,TRUE, +N1,22417,sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60,https://biolit.fr/sorties/sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60/,ESTRAN Cité de la Mer,,04/06/2014,11.0000000,11.0:45,49.910010000000,0.937415000000,,Plage de Sainte Marguerite sur mer,22207,observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-10,https://biolit.fr/observations/observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-10/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4060025.JPG,,TRUE, +N1,22417,sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60,https://biolit.fr/sorties/sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60/,ESTRAN Cité de la Mer,,04/06/2014,11.0000000,11.0:45,49.910010000000,0.937415000000,,Plage de Sainte Marguerite sur mer,22209,observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-11,https://biolit.fr/observations/observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-11/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4060026.JPG,,TRUE, +N1,22417,sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60,https://biolit.fr/sorties/sortie-a91cca5b-9459-46fb-951d-bc4e1f7fda60/,ESTRAN Cité de la Mer,,04/06/2014,11.0000000,11.0:45,49.910010000000,0.937415000000,,Plage de Sainte Marguerite sur mer,22211,observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-12,https://biolit.fr/observations/observation-a91cca5b-9459-46fb-951d-bc4e1f7fda60-12/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/P4060027.JPG,,TRUE, +N1,25774,sortie-b6faf542-426e-40df-b7f8-b53b743cff31,https://biolit.fr/sorties/sortie-b6faf542-426e-40df-b7f8-b53b743cff31/,Skol Gwital CM,,6/16/2023 0:00,13.0000000,14.0000000,48.574560000000,-4.667332000000,,"Pen ar Pont, Gwitalmeze",25738,observation-b6faf542-426e-40df-b7f8-b53b743cff31,https://biolit.fr/observations/observation-b6faf542-426e-40df-b7f8-b53b743cff31/,,,,https://biolit.fr/wp-content/uploads/2023/07/Balane et brennig - Fucus denté-scaled.jpg,,FALSE, +N1,25774,sortie-b6faf542-426e-40df-b7f8-b53b743cff31,https://biolit.fr/sorties/sortie-b6faf542-426e-40df-b7f8-b53b743cff31/,Skol Gwital CM,,6/16/2023 0:00,13.0000000,14.0000000,48.574560000000,-4.667332000000,,"Pen ar Pont, Gwitalmeze",25740,observation-b6faf542-426e-40df-b7f8-b53b743cff31-2,https://biolit.fr/observations/observation-b6faf542-426e-40df-b7f8-b53b743cff31-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Bennig - Ascophylle-scaled.jpg,,FALSE, +N1,25774,sortie-b6faf542-426e-40df-b7f8-b53b743cff31,https://biolit.fr/sorties/sortie-b6faf542-426e-40df-b7f8-b53b743cff31/,Skol Gwital CM,,6/16/2023 0:00,13.0000000,14.0000000,48.574560000000,-4.667332000000,,"Pen ar Pont, Gwitalmeze",25742,observation-b6faf542-426e-40df-b7f8-b53b743cff31-3,https://biolit.fr/observations/observation-b6faf542-426e-40df-b7f8-b53b743cff31-3/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Gibbule - Fucus spiralée-scaled.jpg,,TRUE, +N1,25774,sortie-b6faf542-426e-40df-b7f8-b53b743cff31,https://biolit.fr/sorties/sortie-b6faf542-426e-40df-b7f8-b53b743cff31/,Skol Gwital CM,,6/16/2023 0:00,13.0000000,14.0000000,48.574560000000,-4.667332000000,,"Pen ar Pont, Gwitalmeze",25744,observation-b6faf542-426e-40df-b7f8-b53b743cff31-4,https://biolit.fr/observations/observation-b6faf542-426e-40df-b7f8-b53b743cff31-4/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorine - Ascophylle Noueux-scaled.jpg,,TRUE, +N1,25774,sortie-b6faf542-426e-40df-b7f8-b53b743cff31,https://biolit.fr/sorties/sortie-b6faf542-426e-40df-b7f8-b53b743cff31/,Skol Gwital CM,,6/16/2023 0:00,13.0000000,14.0000000,48.574560000000,-4.667332000000,,"Pen ar Pont, Gwitalmeze",25746,observation-b6faf542-426e-40df-b7f8-b53b743cff31-5,https://biolit.fr/observations/observation-b6faf542-426e-40df-b7f8-b53b743cff31-5/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorine - Fucus spiralé-scaled.jpg,,TRUE, +N1,25774,sortie-b6faf542-426e-40df-b7f8-b53b743cff31,https://biolit.fr/sorties/sortie-b6faf542-426e-40df-b7f8-b53b743cff31/,Skol Gwital CM,,6/16/2023 0:00,13.0000000,14.0000000,48.574560000000,-4.667332000000,,"Pen ar Pont, Gwitalmeze",25748,observation-b6faf542-426e-40df-b7f8-b53b743cff31-6,https://biolit.fr/observations/observation-b6faf542-426e-40df-b7f8-b53b743cff31-6/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorine sur fucus denté-scaled.jpg,,TRUE, +N1,25774,sortie-b6faf542-426e-40df-b7f8-b53b743cff31,https://biolit.fr/sorties/sortie-b6faf542-426e-40df-b7f8-b53b743cff31/,Skol Gwital CM,,6/16/2023 0:00,13.0000000,14.0000000,48.574560000000,-4.667332000000,,"Pen ar Pont, Gwitalmeze",25750,observation-b6faf542-426e-40df-b7f8-b53b743cff31-7,https://biolit.fr/observations/observation-b6faf542-426e-40df-b7f8-b53b743cff31-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Monodonte - Ascophylle-scaled.jpg,,FALSE, +N1,25774,sortie-b6faf542-426e-40df-b7f8-b53b743cff31,https://biolit.fr/sorties/sortie-b6faf542-426e-40df-b7f8-b53b743cff31/,Skol Gwital CM,,6/16/2023 0:00,13.0000000,14.0000000,48.574560000000,-4.667332000000,,"Pen ar Pont, Gwitalmeze",25752,observation-b6faf542-426e-40df-b7f8-b53b743cff31-8,https://biolit.fr/observations/observation-b6faf542-426e-40df-b7f8-b53b743cff31-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Moule - Ascophylle-scaled.jpg,,FALSE, +N1,25774,sortie-b6faf542-426e-40df-b7f8-b53b743cff31,https://biolit.fr/sorties/sortie-b6faf542-426e-40df-b7f8-b53b743cff31/,Skol Gwital CM,,6/16/2023 0:00,13.0000000,14.0000000,48.574560000000,-4.667332000000,,"Pen ar Pont, Gwitalmeze",25754,observation-b6faf542-426e-40df-b7f8-b53b743cff31-9,https://biolit.fr/observations/observation-b6faf542-426e-40df-b7f8-b53b743cff31-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Balane - Ascophylle noueux-scaled.jpg,,FALSE, +N1,25774,sortie-b6faf542-426e-40df-b7f8-b53b743cff31,https://biolit.fr/sorties/sortie-b6faf542-426e-40df-b7f8-b53b743cff31/,Skol Gwital CM,,6/16/2023 0:00,13.0000000,14.0000000,48.574560000000,-4.667332000000,,"Pen ar Pont, Gwitalmeze",25756,observation-b6faf542-426e-40df-b7f8-b53b743cff31-10,https://biolit.fr/observations/observation-b6faf542-426e-40df-b7f8-b53b743cff31-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule commune - Ascophylle-scaled.jpg,,FALSE, +N1,25774,sortie-b6faf542-426e-40df-b7f8-b53b743cff31,https://biolit.fr/sorties/sortie-b6faf542-426e-40df-b7f8-b53b743cff31/,Skol Gwital CM,,6/16/2023 0:00,13.0000000,14.0000000,48.574560000000,-4.667332000000,,"Pen ar Pont, Gwitalmeze",25758,observation-b6faf542-426e-40df-b7f8-b53b743cff31-11,https://biolit.fr/observations/observation-b6faf542-426e-40df-b7f8-b53b743cff31-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule commune - Fucus spriralé-scaled.jpg,,FALSE, +N1,25775,sortie-db143bd4-2ae4-447e-ad85-ad6095694f1b,https://biolit.fr/sorties/sortie-db143bd4-2ae4-447e-ad85-ad6095694f1b/,egaborit@donbosco.asso.fr,,6/20/2023 0:00,15.0000000,16.0000000,48.318576000000,-4.282370000000,,Grève du Rohou,25760,observation-db143bd4-2ae4-447e-ad85-ad6095694f1b,https://biolit.fr/observations/observation-db143bd4-2ae4-447e-ad85-ad6095694f1b/,,,,https://biolit.fr/wp-content/uploads/2023/07/230620 - st urbain - bigorneau-scaled.jpg,,FALSE, +N1,25775,sortie-db143bd4-2ae4-447e-ad85-ad6095694f1b,https://biolit.fr/sorties/sortie-db143bd4-2ae4-447e-ad85-ad6095694f1b/,egaborit@donbosco.asso.fr,,6/20/2023 0:00,15.0000000,16.0000000,48.318576000000,-4.282370000000,,Grève du Rohou,25762,observation-db143bd4-2ae4-447e-ad85-ad6095694f1b-2,https://biolit.fr/observations/observation-db143bd4-2ae4-447e-ad85-ad6095694f1b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/230620 - st urbain - huitre-scaled.jpg,,FALSE, +N1,25775,sortie-db143bd4-2ae4-447e-ad85-ad6095694f1b,https://biolit.fr/sorties/sortie-db143bd4-2ae4-447e-ad85-ad6095694f1b/,egaborit@donbosco.asso.fr,,6/20/2023 0:00,15.0000000,16.0000000,48.318576000000,-4.282370000000,,Grève du Rohou,25764,observation-db143bd4-2ae4-447e-ad85-ad6095694f1b-3,https://biolit.fr/observations/observation-db143bd4-2ae4-447e-ad85-ad6095694f1b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/230620 - st urbain - littorine obtuse-scaled.jpg,,FALSE, +N1,25776,sortie-538bb231-ed4b-4825-92e3-e10f1ff274c3,https://biolit.fr/sorties/sortie-538bb231-ed4b-4825-92e3-e10f1ff274c3/,Agathe Bouet,,5/25/2023 0:00,16.0000000,17.0000000,48.636481000000,-2.055563000000,Planète Mer,"Dinard, Saint Enogat",25766,observation-538bb231-ed4b-4825-92e3-e10f1ff274c3,https://biolit.fr/observations/observation-538bb231-ed4b-4825-92e3-e10f1ff274c3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/©A.Bouet (3)-scaled.jpg,,TRUE, +N1,25777,sortie-bed71260-66a7-4851-9e72-8d590bffc342,https://biolit.fr/sorties/sortie-bed71260-66a7-4851-9e72-8d590bffc342/,marion.nourry.auditeur@lecnam.net,,5/18/2023 0:00,10.0000000,11.0000000,46.694192000000,-1.959409000000,,Plage de la Pelle à Porteau,25767,observation-bed71260-66a7-4851-9e72-8d590bffc342,https://biolit.fr/observations/observation-bed71260-66a7-4851-9e72-8d590bffc342/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20230518_110540-scaled.jpg,,FALSE, +N1,25777,sortie-bed71260-66a7-4851-9e72-8d590bffc342,https://biolit.fr/sorties/sortie-bed71260-66a7-4851-9e72-8d590bffc342/,marion.nourry.auditeur@lecnam.net,,5/18/2023 0:00,10.0000000,11.0000000,46.694192000000,-1.959409000000,,Plage de la Pelle à Porteau,25768,observation-bed71260-66a7-4851-9e72-8d590bffc342-2,https://biolit.fr/observations/observation-bed71260-66a7-4851-9e72-8d590bffc342-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20230518_112128-scaled.jpg,,FALSE, +N1,25777,sortie-bed71260-66a7-4851-9e72-8d590bffc342,https://biolit.fr/sorties/sortie-bed71260-66a7-4851-9e72-8d590bffc342/,marion.nourry.auditeur@lecnam.net,,5/18/2023 0:00,10.0000000,11.0000000,46.694192000000,-1.959409000000,,Plage de la Pelle à Porteau,25769,observation-bed71260-66a7-4851-9e72-8d590bffc342-3,https://biolit.fr/observations/observation-bed71260-66a7-4851-9e72-8d590bffc342-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/Snapchat-1701675889-scaled.jpg,,FALSE, +N1,25777,sortie-bed71260-66a7-4851-9e72-8d590bffc342,https://biolit.fr/sorties/sortie-bed71260-66a7-4851-9e72-8d590bffc342/,marion.nourry.auditeur@lecnam.net,,5/18/2023 0:00,10.0000000,11.0000000,46.694192000000,-1.959409000000,,Plage de la Pelle à Porteau,25770,observation-bed71260-66a7-4851-9e72-8d590bffc342-4,https://biolit.fr/observations/observation-bed71260-66a7-4851-9e72-8d590bffc342-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20230518_113008-scaled.jpg,,FALSE, +N1,25777,sortie-bed71260-66a7-4851-9e72-8d590bffc342,https://biolit.fr/sorties/sortie-bed71260-66a7-4851-9e72-8d590bffc342/,marion.nourry.auditeur@lecnam.net,,5/18/2023 0:00,10.0000000,11.0000000,46.694192000000,-1.959409000000,,Plage de la Pelle à Porteau,25771,observation-bed71260-66a7-4851-9e72-8d590bffc342-5,https://biolit.fr/observations/observation-bed71260-66a7-4851-9e72-8d590bffc342-5/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_20230518_112618-scaled.jpg,,FALSE, +N1,25778,sortie-f08e6292-3fd5-4b0c-ab49-4ecc558f1105,https://biolit.fr/sorties/sortie-f08e6292-3fd5-4b0c-ab49-4ecc558f1105/,Marine,,5/15/2023 0:00,17.0000000,17.0000000,48.638602000000,-2.069496000000,Planète Mer,Plage de saint Enogat,25772,observation-f08e6292-3fd5-4b0c-ab49-4ecc558f1105,https://biolit.fr/observations/observation-f08e6292-3fd5-4b0c-ab49-4ecc558f1105/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/IMG_20230427_145118_0-scaled.jpg,,TRUE, +N1,25779,sortie-0278946e-ba06-41e6-bcb9-c4a877b188bf,https://biolit.fr/sorties/sortie-0278946e-ba06-41e6-bcb9-c4a877b188bf/,ecole.0350508m@ac-rennes.fr,,05/02/2023,14.0000000,15.0000000,48.653834000000,-2.023699000000,Planète Mer,Saint-Malo,25773,observation-0278946e-ba06-41e6-bcb9-c4a877b188bf,https://biolit.fr/observations/observation-0278946e-ba06-41e6-bcb9-c4a877b188bf/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG-4749-scaled.jpg,,FALSE, +N1,26207,sortie-fc55b738-f48a-4a96-bc1e-4960b026aeab,https://biolit.fr/sorties/sortie-fc55b738-f48a-4a96-bc1e-4960b026aeab/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209487000000,5.372619000000,,"Marseille, Parc National des Calanques",25780,observation-fc55b738-f48a-4a96-bc1e-4960b026aeab,https://biolit.fr/observations/observation-fc55b738-f48a-4a96-bc1e-4960b026aeab/,Pallenis maritima,Astérolide maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6884-scaled.jpg,,TRUE, +N1,26207,sortie-fc55b738-f48a-4a96-bc1e-4960b026aeab,https://biolit.fr/sorties/sortie-fc55b738-f48a-4a96-bc1e-4960b026aeab/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209487000000,5.372619000000,,"Marseille, Parc National des Calanques",25782,observation-fc55b738-f48a-4a96-bc1e-4960b026aeab-2,https://biolit.fr/observations/observation-fc55b738-f48a-4a96-bc1e-4960b026aeab-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6896-scaled.jpg,,FALSE, +N1,26207,sortie-fc55b738-f48a-4a96-bc1e-4960b026aeab,https://biolit.fr/sorties/sortie-fc55b738-f48a-4a96-bc1e-4960b026aeab/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209487000000,5.372619000000,,"Marseille, Parc National des Calanques",25784,observation-fc55b738-f48a-4a96-bc1e-4960b026aeab-3,https://biolit.fr/observations/observation-fc55b738-f48a-4a96-bc1e-4960b026aeab-3/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6942-scaled.jpg,,TRUE, +N1,26208,sortie-b6d40ec8-451b-4885-9490-19dbb59cb06b,https://biolit.fr/sorties/sortie-b6d40ec8-451b-4885-9490-19dbb59cb06b/,Axel,,4/22/2021 0:00,13.0000000,15.0000000,43.21315400000,5.398299000000,,"Marseille, Parc National des Calanques",25786,observation-b6d40ec8-451b-4885-9490-19dbb59cb06b,https://biolit.fr/observations/observation-b6d40ec8-451b-4885-9490-19dbb59cb06b/,Pallenis maritima,Astérolide maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6791-scaled.jpg,,TRUE, +N1,26208,sortie-b6d40ec8-451b-4885-9490-19dbb59cb06b,https://biolit.fr/sorties/sortie-b6d40ec8-451b-4885-9490-19dbb59cb06b/,Axel,,4/22/2021 0:00,13.0000000,15.0000000,43.21315400000,5.398299000000,,"Marseille, Parc National des Calanques",25788,observation-b6d40ec8-451b-4885-9490-19dbb59cb06b-2,https://biolit.fr/observations/observation-b6d40ec8-451b-4885-9490-19dbb59cb06b-2/,Pallenis maritima,Astérolide maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6795-scaled.jpg,,TRUE, +N1,26208,sortie-b6d40ec8-451b-4885-9490-19dbb59cb06b,https://biolit.fr/sorties/sortie-b6d40ec8-451b-4885-9490-19dbb59cb06b/,Axel,,4/22/2021 0:00,13.0000000,15.0000000,43.21315400000,5.398299000000,,"Marseille, Parc National des Calanques",25790,observation-b6d40ec8-451b-4885-9490-19dbb59cb06b-3,https://biolit.fr/observations/observation-b6d40ec8-451b-4885-9490-19dbb59cb06b-3/,Limonium vulgare,Lavande de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6799-scaled.jpg,,TRUE, +N1,26208,sortie-b6d40ec8-451b-4885-9490-19dbb59cb06b,https://biolit.fr/sorties/sortie-b6d40ec8-451b-4885-9490-19dbb59cb06b/,Axel,,4/22/2021 0:00,13.0000000,15.0000000,43.21315400000,5.398299000000,,"Marseille, Parc National des Calanques",25792,observation-b6d40ec8-451b-4885-9490-19dbb59cb06b-4,https://biolit.fr/observations/observation-b6d40ec8-451b-4885-9490-19dbb59cb06b-4/,Limonium vulgare,Lavande de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6804-scaled.jpg,,TRUE, +N1,26208,sortie-b6d40ec8-451b-4885-9490-19dbb59cb06b,https://biolit.fr/sorties/sortie-b6d40ec8-451b-4885-9490-19dbb59cb06b/,Axel,,4/22/2021 0:00,13.0000000,15.0000000,43.21315400000,5.398299000000,,"Marseille, Parc National des Calanques",25794,observation-b6d40ec8-451b-4885-9490-19dbb59cb06b-5,https://biolit.fr/observations/observation-b6d40ec8-451b-4885-9490-19dbb59cb06b-5/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6813-scaled.jpg,,TRUE, +N1,26209,sortie-cf92ec55-7e24-42dd-ae30-db1065ad4db2,https://biolit.fr/sorties/sortie-cf92ec55-7e24-42dd-ae30-db1065ad4db2/,Association NACOMED,,9/19/2020 0:00,17.0000000,19.0000000,41.472772000000,9.270502000000,,baie de rondinara,25796,observation-cf92ec55-7e24-42dd-ae30-db1065ad4db2,https://biolit.fr/observations/observation-cf92ec55-7e24-42dd-ae30-db1065ad4db2/,Pancratium maritimum,Lis de mer,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6525.JPG,,TRUE, +N1,26210,sortie-b6a062e4-e37d-4d2f-9daa-d2a206309449,https://biolit.fr/sorties/sortie-b6a062e4-e37d-4d2f-9daa-d2a206309449/,guydemarseille,,1/29/2020 0:00,16.0:45,18.0:45,43.213997000000,5.34116800000,,"marseille 13008, rue désiré pelaprat",25798,observation-b6a062e4-e37d-4d2f-9daa-d2a206309449,https://biolit.fr/observations/observation-b6a062e4-e37d-4d2f-9daa-d2a206309449/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-5207 seneçon à feuille de marguerite senecio leucanthemifolius-scaled.jpg,,FALSE, +N1,26210,sortie-b6a062e4-e37d-4d2f-9daa-d2a206309449,https://biolit.fr/sorties/sortie-b6a062e4-e37d-4d2f-9daa-d2a206309449/,guydemarseille,,1/29/2020 0:00,16.0:45,18.0:45,43.213997000000,5.34116800000,,"marseille 13008, rue désiré pelaprat",25800,observation-b6a062e4-e37d-4d2f-9daa-d2a206309449-2,https://biolit.fr/observations/observation-b6a062e4-e37d-4d2f-9daa-d2a206309449-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-5208-scaled.jpg,,FALSE, +N1,26210,sortie-b6a062e4-e37d-4d2f-9daa-d2a206309449,https://biolit.fr/sorties/sortie-b6a062e4-e37d-4d2f-9daa-d2a206309449/,guydemarseille,,1/29/2020 0:00,16.0:45,18.0:45,43.213997000000,5.34116800000,,"marseille 13008, rue désiré pelaprat",25802,observation-b6a062e4-e37d-4d2f-9daa-d2a206309449-3,https://biolit.fr/observations/observation-b6a062e4-e37d-4d2f-9daa-d2a206309449-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-5210-scaled.jpg,,FALSE, +N1,26210,sortie-b6a062e4-e37d-4d2f-9daa-d2a206309449,https://biolit.fr/sorties/sortie-b6a062e4-e37d-4d2f-9daa-d2a206309449/,guydemarseille,,1/29/2020 0:00,16.0:45,18.0:45,43.213997000000,5.34116800000,,"marseille 13008, rue désiré pelaprat",25804,observation-b6a062e4-e37d-4d2f-9daa-d2a206309449-4,https://biolit.fr/observations/observation-b6a062e4-e37d-4d2f-9daa-d2a206309449-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-5217.JPG,,FALSE, +N1,26210,sortie-b6a062e4-e37d-4d2f-9daa-d2a206309449,https://biolit.fr/sorties/sortie-b6a062e4-e37d-4d2f-9daa-d2a206309449/,guydemarseille,,1/29/2020 0:00,16.0:45,18.0:45,43.213997000000,5.34116800000,,"marseille 13008, rue désiré pelaprat",25806,observation-b6a062e4-e37d-4d2f-9daa-d2a206309449-5,https://biolit.fr/observations/observation-b6a062e4-e37d-4d2f-9daa-d2a206309449-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-5218.JPG,,FALSE, +N1,26211,sortie-59649df3-7621-45d4-bc5e-e25cfee29274,https://biolit.fr/sorties/sortie-59649df3-7621-45d4-bc5e-e25cfee29274/,Associu Mare Vivu,,08/04/2019,10.0:15,10.0000000,41.535230000000,8.856860000000,,Plage de Tizzano,25808,observation-59649df3-7621-45d4-bc5e-e25cfee29274,https://biolit.fr/observations/observation-59649df3-7621-45d4-bc5e-e25cfee29274/,Pancratium maritimum,Lis de mer,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6655 (1)-scaled.jpg,,TRUE, +N1,26212,sortie-379cb499-820d-444a-814d-ecf881553e5f,https://biolit.fr/sorties/sortie-379cb499-820d-444a-814d-ecf881553e5f/,Associu Mare Vivu,,9/15/2019 0:00,11.0000000,13.0000000,41.90097700000,8.617479000000,,Plage des îles sanguinaires,25810,observation-379cb499-820d-444a-814d-ecf881553e5f,https://biolit.fr/observations/observation-379cb499-820d-444a-814d-ecf881553e5f/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6626-scaled.jpg,,FALSE, +N1,26212,sortie-379cb499-820d-444a-814d-ecf881553e5f,https://biolit.fr/sorties/sortie-379cb499-820d-444a-814d-ecf881553e5f/,Associu Mare Vivu,,9/15/2019 0:00,11.0000000,13.0000000,41.90097700000,8.617479000000,,Plage des îles sanguinaires,25812,observation-379cb499-820d-444a-814d-ecf881553e5f-2,https://biolit.fr/observations/observation-379cb499-820d-444a-814d-ecf881553e5f-2/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6629-scaled.jpg,,TRUE, +N1,26213,sortie-3f210b80-3eb6-4e71-b8a4-a9dc7cb0b16a,https://biolit.fr/sorties/sortie-3f210b80-3eb6-4e71-b8a4-a9dc7cb0b16a/,Associu Mare Vivu,,9/15/2019 0:00,11.0000000,13.0000000,41.90097700000,8.617479000000,,Plage des îles sanguinaires,25814,observation-3f210b80-3eb6-4e71-b8a4-a9dc7cb0b16a,https://biolit.fr/observations/observation-3f210b80-3eb6-4e71-b8a4-a9dc7cb0b16a/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6626-scaled.jpg,,FALSE, +N1,26213,sortie-3f210b80-3eb6-4e71-b8a4-a9dc7cb0b16a,https://biolit.fr/sorties/sortie-3f210b80-3eb6-4e71-b8a4-a9dc7cb0b16a/,Associu Mare Vivu,,9/15/2019 0:00,11.0000000,13.0000000,41.90097700000,8.617479000000,,Plage des îles sanguinaires,25815,observation-3f210b80-3eb6-4e71-b8a4-a9dc7cb0b16a-2,https://biolit.fr/observations/observation-3f210b80-3eb6-4e71-b8a4-a9dc7cb0b16a-2/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6629-scaled.jpg,,TRUE, +N1,26214,sortie-ce4287d5-8326-4738-b128-d6bf30f61035,https://biolit.fr/sorties/sortie-ce4287d5-8326-4738-b128-d6bf30f61035/,Associu Mare Vivu,,7/15/2019 0:00,18.0000000,18.0:45,42.728660000000,9.132360000000,,plage de ghignu,25816,observation-ce4287d5-8326-4738-b128-d6bf30f61035,https://biolit.fr/observations/observation-ce4287d5-8326-4738-b128-d6bf30f61035/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6460-scaled.jpg,,FALSE, +N1,26215,sortie-88164066-33e6-4622-82a0-7eb30e91970f,https://biolit.fr/sorties/sortie-88164066-33e6-4622-82a0-7eb30e91970f/,Associu Mare Vivu,,7/15/2019 0:00,18.0000000,18.0:45,42.728748000000,9.136942000000,,plage de ghignu,25818,observation-88164066-33e6-4622-82a0-7eb30e91970f,https://biolit.fr/observations/observation-88164066-33e6-4622-82a0-7eb30e91970f/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6381_0-scaled.jpg,,TRUE, +N1,26216,sortie-95d76cb4-96d9-48bb-88d8-b68e03d1c807,https://biolit.fr/sorties/sortie-95d76cb4-96d9-48bb-88d8-b68e03d1c807/,Associu Mare Vivu,,07/08/2019,16.0:45,17.0:25,42.965833000000,9.457383000000,,Macinaggio,25820,observation-95d76cb4-96d9-48bb-88d8-b68e03d1c807,https://biolit.fr/observations/observation-95d76cb4-96d9-48bb-88d8-b68e03d1c807/,Jacobaea maritima,Cinéraire maritime,,https://biolit.fr/wp-content/uploads/2023/07/Cinéraire maritime-scaled.jpg,,TRUE, +N1,26217,sortie-a4299ae3-41ae-4ddb-b966-d2b0fbe1d373,https://biolit.fr/sorties/sortie-a4299ae3-41ae-4ddb-b966-d2b0fbe1d373/,Associu Mare Vivu,,7/26/2019 0:00,16.0000000,17.0000000,41.89830000000,8.614144000000,,Iles sanguinaires,25822,observation-a4299ae3-41ae-4ddb-b966-d2b0fbe1d373,https://biolit.fr/observations/observation-a4299ae3-41ae-4ddb-b966-d2b0fbe1d373/,,,,https://biolit.fr/wp-content/uploads/2023/07/Criste marine-scaled.jpg,,FALSE, +N1,26218,sortie-1d1db19d-2ce3-4301-aa89-b20fa404d14e,https://biolit.fr/sorties/sortie-1d1db19d-2ce3-4301-aa89-b20fa404d14e/,Emeline 44240,,08/05/2019,17.0000000,17.0:45,47.489331000000,-2.820927000000,,"Plage de kercambre,56730,Saint-Gildas-De-Rhuys,France",25824,observation-1d1db19d-2ce3-4301-aa89-b20fa404d14e,https://biolit.fr/observations/observation-1d1db19d-2ce3-4301-aa89-b20fa404d14e/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/20190805_174337 (2).jpg,,TRUE, +N1,26218,sortie-1d1db19d-2ce3-4301-aa89-b20fa404d14e,https://biolit.fr/sorties/sortie-1d1db19d-2ce3-4301-aa89-b20fa404d14e/,Emeline 44240,,08/05/2019,17.0000000,17.0:45,47.489331000000,-2.820927000000,,"Plage de kercambre,56730,Saint-Gildas-De-Rhuys,France",25826,observation-1d1db19d-2ce3-4301-aa89-b20fa404d14e-2,https://biolit.fr/observations/observation-1d1db19d-2ce3-4301-aa89-b20fa404d14e-2/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/20190805_174327 (2).jpg,,TRUE, +N1,26218,sortie-1d1db19d-2ce3-4301-aa89-b20fa404d14e,https://biolit.fr/sorties/sortie-1d1db19d-2ce3-4301-aa89-b20fa404d14e/,Emeline 44240,,08/05/2019,17.0000000,17.0:45,47.489331000000,-2.820927000000,,"Plage de kercambre,56730,Saint-Gildas-De-Rhuys,France",25828,observation-1d1db19d-2ce3-4301-aa89-b20fa404d14e-3,https://biolit.fr/observations/observation-1d1db19d-2ce3-4301-aa89-b20fa404d14e-3/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/20190805_174258 (2).jpg,,TRUE, +N1,26219,sortie-fb2e200c-6504-4a4e-b71c-0ca4157cc7f9,https://biolit.fr/sorties/sortie-fb2e200c-6504-4a4e-b71c-0ca4157cc7f9/,Associu Mare Vivu,,7/22/2019 0:00,17.0000000,19.0000000,42.349821000000,8.614063000000,,Girolata,25830,observation-fb2e200c-6504-4a4e-b71c-0ca4157cc7f9,https://biolit.fr/observations/observation-fb2e200c-6504-4a4e-b71c-0ca4157cc7f9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6539-scaled.jpg,,FALSE, +N1,26220,sortie-e8e711eb-a7ab-40d3-a932-c687cc3504b1,https://biolit.fr/sorties/sortie-e8e711eb-a7ab-40d3-a932-c687cc3504b1/,Associu Mare Vivu,,7/24/2019 0:00,17.0000000,19.0000000,42.350091000000,8.614183000000,,Girolata,25832,observation-e8e711eb-a7ab-40d3-a932-c687cc3504b1,https://biolit.fr/observations/observation-e8e711eb-a7ab-40d3-a932-c687cc3504b1/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6535-scaled.jpg,,FALSE, +N1,26221,sortie-50a1e045-9da3-4fa2-a77b-7b58784b6269,https://biolit.fr/sorties/sortie-50a1e045-9da3-4fa2-a77b-7b58784b6269/,Associu Mare Vivu,,7/22/2019 0:00,16.0:55,18.0:55,42.34998800000,8.614324000000,,Girolata,25834,observation-50a1e045-9da3-4fa2-a77b-7b58784b6269,https://biolit.fr/observations/observation-50a1e045-9da3-4fa2-a77b-7b58784b6269/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6531-scaled.jpg,,TRUE, +N1,26222,sortie-834b787b-6085-4ad6-ba2e-f1141e13253a,https://biolit.fr/sorties/sortie-834b787b-6085-4ad6-ba2e-f1141e13253a/,Associu Mare Vivu,,7/19/2019 0:00,18.0000000,20.0000000,42.923773000000,9.360584000000,Mare Vivu,Anse d'aliso,25836,observation-834b787b-6085-4ad6-ba2e-f1141e13253a,https://biolit.fr/observations/observation-834b787b-6085-4ad6-ba2e-f1141e13253a/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6307-scaled.jpg,,FALSE, +N1,26222,sortie-834b787b-6085-4ad6-ba2e-f1141e13253a,https://biolit.fr/sorties/sortie-834b787b-6085-4ad6-ba2e-f1141e13253a/,Associu Mare Vivu,,7/19/2019 0:00,18.0000000,20.0000000,42.923773000000,9.360584000000,Mare Vivu,Anse d'aliso,25838,observation-834b787b-6085-4ad6-ba2e-f1141e13253a-2,https://biolit.fr/observations/observation-834b787b-6085-4ad6-ba2e-f1141e13253a-2/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6305-scaled.jpg,,TRUE, +N1,26223,sortie-82c3b949-d1da-4b8d-8d7a-d7b13dc94867,https://biolit.fr/sorties/sortie-82c3b949-d1da-4b8d-8d7a-d7b13dc94867/,Associu Mare Vivu,,07/08/2019,16.0:45,17.0:25,42.96432400000,9.451581000000,,Macinaggio,25840,observation-82c3b949-d1da-4b8d-8d7a-d7b13dc94867,https://biolit.fr/observations/observation-82c3b949-d1da-4b8d-8d7a-d7b13dc94867/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6246-scaled.jpg,,TRUE, +N1,26224,sortie-ccd3fc78-3a43-4097-9ae3-b9999243bcd1,https://biolit.fr/sorties/sortie-ccd3fc78-3a43-4097-9ae3-b9999243bcd1/,Associu Mare Vivu,,7/22/2018 0:00,13.0000000,13.0000000,42.207762000000,8.576357000000,,plage d'arone,25842,observation-ccd3fc78-3a43-4097-9ae3-b9999243bcd1,https://biolit.fr/observations/observation-ccd3fc78-3a43-4097-9ae3-b9999243bcd1/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-30-scaled.jpg,,FALSE, +N1,26225,sortie-d32b8dac-4b16-4ca5-b389-d793576f68d5,https://biolit.fr/sorties/sortie-d32b8dac-4b16-4ca5-b389-d793576f68d5/,Associu Mare Vivu,,7/22/2018 0:00,13.0000000,13.0000000,42.207635000000,8.576250000000,,plage d'arone,25844,observation-d32b8dac-4b16-4ca5-b389-d793576f68d5,https://biolit.fr/observations/observation-d32b8dac-4b16-4ca5-b389-d793576f68d5/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-28-scaled.jpg,,FALSE, +N1,26226,sortie-e2c8c399-019c-4c5d-94ad-12e40347483a,https://biolit.fr/sorties/sortie-e2c8c399-019c-4c5d-94ad-12e40347483a/,Associu Mare Vivu,,7/22/2018 0:00,13.0000000,13.0000000,42.207666000000,8.576250000000,,plage d'arone,25846,observation-e2c8c399-019c-4c5d-94ad-12e40347483a,https://biolit.fr/observations/observation-e2c8c399-019c-4c5d-94ad-12e40347483a/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-27_0-scaled.jpg,,FALSE, +N1,26227,sortie-f4c1c253-ed0f-4c1d-8e57-c7f0c09052a3,https://biolit.fr/sorties/sortie-f4c1c253-ed0f-4c1d-8e57-c7f0c09052a3/,Associu Mare Vivu,,7/22/2018 0:00,13.0000000,13.0000000,42.208048000000,8.578267000000,,plage d'arone,25848,observation-f4c1c253-ed0f-4c1d-8e57-c7f0c09052a3,https://biolit.fr/observations/observation-f4c1c253-ed0f-4c1d-8e57-c7f0c09052a3/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-24-scaled.jpg,,FALSE, +N1,26228,sortie-42604ca3-0ee5-4b43-9815-68b64f23fe85,https://biolit.fr/sorties/sortie-42604ca3-0ee5-4b43-9815-68b64f23fe85/,Associu Mare Vivu,,7/22/2018 0:00,13.0000000,13.0000000,42.208016000000,8.578503000000,,plage d'arone,25850,observation-42604ca3-0ee5-4b43-9815-68b64f23fe85,https://biolit.fr/observations/observation-42604ca3-0ee5-4b43-9815-68b64f23fe85/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-21-scaled.jpg,,FALSE, +N1,26229,sortie-37495aea-67b3-4114-a70b-ae821235d409,https://biolit.fr/sorties/sortie-37495aea-67b3-4114-a70b-ae821235d409/,Associu Mare Vivu,,7/22/2018 0:00,13.0000000,13.0000000,42.207857000000,8.578825000000,,plage d'arone,25852,observation-37495aea-67b3-4114-a70b-ae821235d409,https://biolit.fr/observations/observation-37495aea-67b3-4114-a70b-ae821235d409/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-22-scaled.jpg,,FALSE, +N1,26230,sortie-202db6a7-c8bc-4745-a25d-1f61a884baa0,https://biolit.fr/sorties/sortie-202db6a7-c8bc-4745-a25d-1f61a884baa0/,Associu Mare Vivu,,7/22/2018 0:00,13.0000000,13.0000000,42.207984000000,8.578771000000,,plage d'arone,25854,observation-202db6a7-c8bc-4745-a25d-1f61a884baa0,https://biolit.fr/observations/observation-202db6a7-c8bc-4745-a25d-1f61a884baa0/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-19_0-scaled.jpg,,FALSE, +N1,26231,sortie-4f53abb6-8511-42fc-a010-b7c99f7a0b5d,https://biolit.fr/sorties/sortie-4f53abb6-8511-42fc-a010-b7c99f7a0b5d/,Associu Mare Vivu,,7/22/2018 0:00,13.0000000,13.0000000,42.207793000000,8.579254000000,,plage d'arone,25856,observation-4f53abb6-8511-42fc-a010-b7c99f7a0b5d,https://biolit.fr/observations/observation-4f53abb6-8511-42fc-a010-b7c99f7a0b5d/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-16_0-scaled.jpg,,FALSE, +N1,26232,sortie-2ae4885d-0362-42d1-99e1-ff37ac1df922,https://biolit.fr/sorties/sortie-2ae4885d-0362-42d1-99e1-ff37ac1df922/,Associu Mare Vivu,,7/22/2018 0:00,13.0000000,13.0000000,42.207857000000,8.578825000000,,plage d'arone,25858,observation-2ae4885d-0362-42d1-99e1-ff37ac1df922,https://biolit.fr/observations/observation-2ae4885d-0362-42d1-99e1-ff37ac1df922/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-15_1-scaled.jpg,,FALSE, +N1,26233,sortie-1adf0d18-eb70-4cb8-832c-e9d37138afc5,https://biolit.fr/sorties/sortie-1adf0d18-eb70-4cb8-832c-e9d37138afc5/,Associu Mare Vivu,,7/22/2018 0:00,12.0000000,13.0000000,42.207762000000,8.579190000000,,plage d'arone,25860,observation-1adf0d18-eb70-4cb8-832c-e9d37138afc5,https://biolit.fr/observations/observation-1adf0d18-eb70-4cb8-832c-e9d37138afc5/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-17-scaled.jpg,,FALSE, +N1,26234,sortie-39fbfc1e-2e55-4f6e-8543-e7deabcc8940,https://biolit.fr/sorties/sortie-39fbfc1e-2e55-4f6e-8543-e7deabcc8940/,Associu Mare Vivu,,7/22/2018 0:00,12.0000000,13.0000000,42.20788900000,8.578868000000,,plage d'arone,25862,observation-39fbfc1e-2e55-4f6e-8543-e7deabcc8940,https://biolit.fr/observations/observation-39fbfc1e-2e55-4f6e-8543-e7deabcc8940/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-13-scaled.jpg,,FALSE, +N1,26235,sortie-38f1b1b3-176c-4674-856e-a5d19c33fca3,https://biolit.fr/sorties/sortie-38f1b1b3-176c-4674-856e-a5d19c33fca3/,Associu Mare Vivu,,7/22/2018 0:00,12.000005,13.000005,42.207952000000,8.579168000000,,plage d'arone,25864,observation-38f1b1b3-176c-4674-856e-a5d19c33fca3,https://biolit.fr/observations/observation-38f1b1b3-176c-4674-856e-a5d19c33fca3/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-12-scaled.jpg,,FALSE, +N1,26236,sortie-40ae1222-c8eb-4e42-902a-84e3f77720ef,https://biolit.fr/sorties/sortie-40ae1222-c8eb-4e42-902a-84e3f77720ef/,Associu Mare Vivu,,7/22/2018 0:00,13.0000000,13.0000000,42.207984000000,8.578782000000,,plage d'arone,25866,observation-40ae1222-c8eb-4e42-902a-84e3f77720ef,https://biolit.fr/observations/observation-40ae1222-c8eb-4e42-902a-84e3f77720ef/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-11_2-scaled.jpg,,FALSE, +N1,26237,sortie-0bf5a0dd-7bdb-4f87-9a86-a9b9a89b4280,https://biolit.fr/sorties/sortie-0bf5a0dd-7bdb-4f87-9a86-a9b9a89b4280/,Associu Mare Vivu,,7/22/2018 0:00,13.0000000,13.0000000,42.208143000000,8.577816000000,,plage d'arone,25868,observation-0bf5a0dd-7bdb-4f87-9a86-a9b9a89b4280,https://biolit.fr/observations/observation-0bf5a0dd-7bdb-4f87-9a86-a9b9a89b4280/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-10-scaled.jpg,,FALSE, +N1,26238,sortie-85e91281-a251-472a-a722-7a544b966b75,https://biolit.fr/sorties/sortie-85e91281-a251-472a-a722-7a544b966b75/,Associu Mare Vivu,,7/22/2018 0:00,12.0000000,13.0000000,42.20808000000,8.577022000000,,plage d'arone,25870,observation-85e91281-a251-472a-a722-7a544b966b75,https://biolit.fr/observations/observation-85e91281-a251-472a-a722-7a544b966b75/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-8_1-scaled.jpg,,FALSE, +N1,26239,sortie-16f52e72-653e-4825-bef6-894d4230b88e,https://biolit.fr/sorties/sortie-16f52e72-653e-4825-bef6-894d4230b88e/,Associu Mare Vivu,,7/22/2018 0:00,12.0000000,13.0000000,42.207921000000,8.576550000000,,plage d'arone,25872,observation-16f52e72-653e-4825-bef6-894d4230b88e,https://biolit.fr/observations/observation-16f52e72-653e-4825-bef6-894d4230b88e/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-6_0-scaled.jpg,,FALSE, +N1,26240,sortie-e4325a0d-b472-4a2d-843d-7f16c1a4cec0,https://biolit.fr/sorties/sortie-e4325a0d-b472-4a2d-843d-7f16c1a4cec0/,Associu Mare Vivu,,7/22/2018 0:00,12.0000000,13.0000000,42.20774600000,8.576368000000,,plage d'arone,25874,observation-e4325a0d-b472-4a2d-843d-7f16c1a4cec0,https://biolit.fr/observations/observation-e4325a0d-b472-4a2d-843d-7f16c1a4cec0/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-2_0-scaled.jpg,,FALSE, +N1,26241,sortie-262fe96e-e29f-47ad-b52e-c90b251c65fb,https://biolit.fr/sorties/sortie-262fe96e-e29f-47ad-b52e-c90b251c65fb/,Associu Mare Vivu,,7/22/2018 0:00,11.0000000,11.0000000,42.261842000000,8.677165000000,,le port de castagna,25876,observation-262fe96e-e29f-47ad-b52e-c90b251c65fb,https://biolit.fr/observations/observation-262fe96e-e29f-47ad-b52e-c90b251c65fb/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-11_0-scaled.jpg,,FALSE, +N1,26242,sortie-d6e2e862-b78a-4fba-b63e-8e7ca2d118ac,https://biolit.fr/sorties/sortie-d6e2e862-b78a-4fba-b63e-8e7ca2d118ac/,Associu Mare Vivu,,7/22/2018 0:00,11.0000000,11.0000000,42.261897000000,8.677273000000,,le port de castagna,25878,observation-d6e2e862-b78a-4fba-b63e-8e7ca2d118ac,https://biolit.fr/observations/observation-d6e2e862-b78a-4fba-b63e-8e7ca2d118ac/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-9_0-scaled.jpg,,FALSE, +N1,26243,sortie-ef33b664-1b24-4ddc-9180-e1e3c192d0b6,https://biolit.fr/sorties/sortie-ef33b664-1b24-4ddc-9180-e1e3c192d0b6/,Associu Mare Vivu,,7/22/2018 0:00,11.0000000,11.0000000,42.261865000000,8.677197000000,,le port de castagna,25880,observation-ef33b664-1b24-4ddc-9180-e1e3c192d0b6,https://biolit.fr/observations/observation-ef33b664-1b24-4ddc-9180-e1e3c192d0b6/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-5_0-scaled.jpg,,FALSE, +N1,26244,sortie-e2201389-7fba-45c7-a164-e98763fa58dc,https://biolit.fr/sorties/sortie-e2201389-7fba-45c7-a164-e98763fa58dc/,Associu Mare Vivu,,7/22/2018 0:00,11.0000000,11.0000000,42.26181000000,8.677138000000,,le port de castagna,25882,observation-e2201389-7fba-45c7-a164-e98763fa58dc,https://biolit.fr/observations/observation-e2201389-7fba-45c7-a164-e98763fa58dc/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-4_0-scaled.jpg,,FALSE, +N1,26245,sortie-ebe59b97-1b5b-4aea-b88f-07429525fed8,https://biolit.fr/sorties/sortie-ebe59b97-1b5b-4aea-b88f-07429525fed8/,Associu Mare Vivu,,7/22/2018 0:00,11.0000000,11.0000000,42.261782000000,8.677144000000,,le port de castagna,25884,observation-ebe59b97-1b5b-4aea-b88f-07429525fed8,https://biolit.fr/observations/observation-ebe59b97-1b5b-4aea-b88f-07429525fed8/,,,,https://biolit.fr/wp-content/uploads/2023/07/sans titre-2-scaled.jpg,,FALSE, +N1,26246,sortie-8cc6d022-8d4d-4229-aeb1-e3493cec45b8,https://biolit.fr/sorties/sortie-8cc6d022-8d4d-4229-aeb1-e3493cec45b8/,Associu Mare Vivu,,7/16/2018 0:00,9.0000000,11.0000000,41.548030000000,8.805899000000,,phare de Senetosa,25886,observation-8cc6d022-8d4d-4229-aeb1-e3493cec45b8,https://biolit.fr/observations/observation-8cc6d022-8d4d-4229-aeb1-e3493cec45b8/,,,,https://biolit.fr/wp-content/uploads/2023/07/1-4-scaled.jpg,,FALSE, +N1,26247,sortie-010320ab-e04c-474c-b207-3d8435de9263,https://biolit.fr/sorties/sortie-010320ab-e04c-474c-b207-3d8435de9263/,Associu Mare Vivu,,7/16/2018 0:00,9.0000000,11.0000000,41.558507000000,8.794024000000,,phare de Senetosa,25888,observation-010320ab-e04c-474c-b207-3d8435de9263,https://biolit.fr/observations/observation-010320ab-e04c-474c-b207-3d8435de9263/,,,,https://biolit.fr/wp-content/uploads/2023/07/1-3-scaled.jpg,,FALSE, +N1,26248,sortie-cf037316-f218-4d2d-b64a-edc310e65daa,https://biolit.fr/sorties/sortie-cf037316-f218-4d2d-b64a-edc310e65daa/,Associu Mare Vivu,,7/17/2018 0:00,17.0000000,17.0000000,41.738367000000,8.782222000000,,plage de cupabia,25890,observation-cf037316-f218-4d2d-b64a-edc310e65daa,https://biolit.fr/observations/observation-cf037316-f218-4d2d-b64a-edc310e65daa/,,,,https://biolit.fr/wp-content/uploads/2023/07/2-21_0-scaled.jpg,,FALSE, +N1,26249,sortie-713f36f2-4a7b-43d4-8a0a-96de978dabe3,https://biolit.fr/sorties/sortie-713f36f2-4a7b-43d4-8a0a-96de978dabe3/,Associu Mare Vivu,,7/17/2018 0:00,17.0000000,17.0000000,41.738367000000,8.782565000000,,plage de cupabia,25892,observation-713f36f2-4a7b-43d4-8a0a-96de978dabe3,https://biolit.fr/observations/observation-713f36f2-4a7b-43d4-8a0a-96de978dabe3/,,,,https://biolit.fr/wp-content/uploads/2023/07/2-19-scaled.jpg,,FALSE, +N1,26250,sortie-eb26cf79-d793-4bdb-ab7f-c8eb4d6fe6de,https://biolit.fr/sorties/sortie-eb26cf79-d793-4bdb-ab7f-c8eb4d6fe6de/,Associu Mare Vivu,,7/17/2018 0:00,18.0000000,18.0000000,41.73798300000,8.782308000000,,plage de cupabia,25894,observation-eb26cf79-d793-4bdb-ab7f-c8eb4d6fe6de,https://biolit.fr/observations/observation-eb26cf79-d793-4bdb-ab7f-c8eb4d6fe6de/,,,,https://biolit.fr/wp-content/uploads/2023/07/2-16_0-scaled.jpg,,FALSE, +N1,26251,sortie-ae42f75e-00d6-4bd1-a644-b035f3035eb7,https://biolit.fr/sorties/sortie-ae42f75e-00d6-4bd1-a644-b035f3035eb7/,Associu Mare Vivu,,7/17/2018 0:00,18.0000000,20.0000000,41.737854000000,8.782050000000,,plage de cupabia,25896,observation-ae42f75e-00d6-4bd1-a644-b035f3035eb7,https://biolit.fr/observations/observation-ae42f75e-00d6-4bd1-a644-b035f3035eb7/,,,,https://biolit.fr/wp-content/uploads/2023/07/2-12-scaled.jpg,,FALSE, +N1,26252,sortie-48bd38a2-7230-45c7-8fc2-dea0b5517e94,https://biolit.fr/sorties/sortie-48bd38a2-7230-45c7-8fc2-dea0b5517e94/,Associu Mare Vivu,,7/17/2018 0:00,18.0000000,18.0000000,41.737854000000,8.782050000000,,plage de cupabia,25898,observation-48bd38a2-7230-45c7-8fc2-dea0b5517e94,https://biolit.fr/observations/observation-48bd38a2-7230-45c7-8fc2-dea0b5517e94/,,,,https://biolit.fr/wp-content/uploads/2023/07/2-10-scaled.jpg,,FALSE, +N1,26253,sortie-c35cf965-d6ee-4c80-88c3-a981a4cedde2,https://biolit.fr/sorties/sortie-c35cf965-d6ee-4c80-88c3-a981a4cedde2/,Associu Mare Vivu,,7/17/2018 0:00,17.0:35,17.0:35,41.738111000000,8.782909000000,,plage de cupabia,25900,observation-c35cf965-d6ee-4c80-88c3-a981a4cedde2,https://biolit.fr/observations/observation-c35cf965-d6ee-4c80-88c3-a981a4cedde2/,Lagurus ovatus,Queue de lièvre,,https://biolit.fr/wp-content/uploads/2023/07/2-8-scaled.jpg,,TRUE, +N1,26254,sortie-d9c33983-780f-4cb0-9c51-0ace12bcdccc,https://biolit.fr/sorties/sortie-d9c33983-780f-4cb0-9c51-0ace12bcdccc/,Associu Mare Vivu,,7/17/2018 0:00,18.0000000,18.0000000,41.738239000000,8.782995000000,,plage de cupabia,25902,observation-d9c33983-780f-4cb0-9c51-0ace12bcdccc,https://biolit.fr/observations/observation-d9c33983-780f-4cb0-9c51-0ace12bcdccc/,,,,https://biolit.fr/wp-content/uploads/2023/07/2-3-scaled.jpg,,FALSE, +N1,26255,sortie-2ac49f47-d3e9-4db6-a73b-835a34a1e5d7,https://biolit.fr/sorties/sortie-2ac49f47-d3e9-4db6-a73b-835a34a1e5d7/,Associu Mare Vivu,,7/17/2018 0:00,15.0000000,15.0000000,41.73849500000,8.782533000000,,plage de cupabia,25904,observation-2ac49f47-d3e9-4db6-a73b-835a34a1e5d7,https://biolit.fr/observations/observation-2ac49f47-d3e9-4db6-a73b-835a34a1e5d7/,,,,https://biolit.fr/wp-content/uploads/2023/07/2-2-scaled.jpg,,FALSE, +N1,26256,sortie-5d969e2d-104c-4fcc-81cc-1ce84eeefc18,https://biolit.fr/sorties/sortie-5d969e2d-104c-4fcc-81cc-1ce84eeefc18/,Associu Mare Vivu,,7/15/2018 0:00,18.0000000,18.0000000,41.535975000000,8.855554000000,,plage de tizzano,25906,observation-5d969e2d-104c-4fcc-81cc-1ce84eeefc18,https://biolit.fr/observations/observation-5d969e2d-104c-4fcc-81cc-1ce84eeefc18/,,,,https://biolit.fr/wp-content/uploads/2023/07/0-3-scaled.jpg,,FALSE, +N1,26257,sortie-ee78c477-7118-4c80-adff-9fa28e317f06,https://biolit.fr/sorties/sortie-ee78c477-7118-4c80-adff-9fa28e317f06/,Associu Mare Vivu,,7/15/2018 0:00,18.0000000,18.0000000,41.536047000000,8.85564500000,,plage de tizzano,25908,observation-ee78c477-7118-4c80-adff-9fa28e317f06,https://biolit.fr/observations/observation-ee78c477-7118-4c80-adff-9fa28e317f06/,Lagurus ovatus,Queue de lièvre,,https://biolit.fr/wp-content/uploads/2023/07/3-16-scaled.jpg,,TRUE, +N1,26258,sortie-05d121ad-05eb-4171-be7d-b10acc823e04,https://biolit.fr/sorties/sortie-05d121ad-05eb-4171-be7d-b10acc823e04/,Associu Mare Vivu,,7/15/2018 0:00,18.0000000,18.0000000,41.536100000000,8.855732000000,,plage tizzano,25910,observation-05d121ad-05eb-4171-be7d-b10acc823e04,https://biolit.fr/observations/observation-05d121ad-05eb-4171-be7d-b10acc823e04/,,,,https://biolit.fr/wp-content/uploads/2023/07/3-13-scaled.jpg,,FALSE, +N1,26259,sortie-040b4ebc-e019-4411-b46c-7a87f59be8b5,https://biolit.fr/sorties/sortie-040b4ebc-e019-4411-b46c-7a87f59be8b5/,Domaine du Rayol,,4/21/2018 0:00,10.0:55,11.0000000,43.152990000000,6.481702000000,,Domaine du Rayol,25912,observation-040b4ebc-e019-4411-b46c-7a87f59be8b5,https://biolit.fr/observations/observation-040b4ebc-e019-4411-b46c-7a87f59be8b5/,Anthyllis barba-jovis,Anthyllide barbe-de-Jupiter,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180421_105801.jpg,,TRUE, +N1,26259,sortie-040b4ebc-e019-4411-b46c-7a87f59be8b5,https://biolit.fr/sorties/sortie-040b4ebc-e019-4411-b46c-7a87f59be8b5/,Domaine du Rayol,,4/21/2018 0:00,10.0:55,11.0000000,43.152990000000,6.481702000000,,Domaine du Rayol,25914,observation-040b4ebc-e019-4411-b46c-7a87f59be8b5-2,https://biolit.fr/observations/observation-040b4ebc-e019-4411-b46c-7a87f59be8b5-2/,Anthyllis barba-jovis,Anthyllide barbe-de-Jupiter,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180421_105400.jpg,,TRUE, +N1,26260,sortie-bde5a34f-aa5b-4201-b581-f42cd713d910,https://biolit.fr/sorties/sortie-bde5a34f-aa5b-4201-b581-f42cd713d910/,Centre de Découverte Mer et Montagne,,3/22/2018 0:00,14.0000000,16.0000000,43.686159000000,7.297888000000,,"Sentier littoral, Nice",25916,observation-bde5a34f-aa5b-4201-b581-f42cd713d910,https://biolit.fr/observations/observation-bde5a34f-aa5b-4201-b581-f42cd713d910/,,,,https://biolit.fr/wp-content/uploads/2023/07/180322_CALY_De_croisset_STlitto (6)-scaled.jpg,,FALSE, +N1,26261,sortie-e0f8fedd-ffc3-427a-8a67-3b63490219d6,https://biolit.fr/sorties/sortie-e0f8fedd-ffc3-427a-8a67-3b63490219d6/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284067000000,5.316333000000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",25918,observation-e0f8fedd-ffc3-427a-8a67-3b63490219d6,https://biolit.fr/observations/observation-e0f8fedd-ffc3-427a-8a67-3b63490219d6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9617-scaled.jpg,,FALSE, +N1,26261,sortie-e0f8fedd-ffc3-427a-8a67-3b63490219d6,https://biolit.fr/sorties/sortie-e0f8fedd-ffc3-427a-8a67-3b63490219d6/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284067000000,5.316333000000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",25920,observation-e0f8fedd-ffc3-427a-8a67-3b63490219d6-2,https://biolit.fr/observations/observation-e0f8fedd-ffc3-427a-8a67-3b63490219d6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9603-scaled.jpg,,FALSE, +N1,26262,sortie-2eab3821-bf75-431f-bdc7-d0382bbf1a1d,https://biolit.fr/sorties/sortie-2eab3821-bf75-431f-bdc7-d0382bbf1a1d/,Dodode,,10/20/2017 0:00,11.0000000,17.0000000,43.294804000000,5.359096000000,,Palais du congrès du Pharo,25922,observation-2eab3821-bf75-431f-bdc7-d0382bbf1a1d,https://biolit.fr/observations/observation-2eab3821-bf75-431f-bdc7-d0382bbf1a1d/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171020_12_50_51_Pro.jpg,,FALSE, +N1,26263,sortie-945655df-8d08-4bfe-88e2-b07ecc902f12,https://biolit.fr/sorties/sortie-945655df-8d08-4bfe-88e2-b07ecc902f12/,Fleur,,10/20/2017 0:00,15.0000000,15.0000000,43.214658000000,5.342634000000,,Anse de la Maronaise,25924,observation-945655df-8d08-4bfe-88e2-b07ecc902f12,https://biolit.fr/observations/observation-945655df-8d08-4bfe-88e2-b07ecc902f12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9461-scaled.jpg,,FALSE, +N1,26263,sortie-945655df-8d08-4bfe-88e2-b07ecc902f12,https://biolit.fr/sorties/sortie-945655df-8d08-4bfe-88e2-b07ecc902f12/,Fleur,,10/20/2017 0:00,15.0000000,15.0000000,43.214658000000,5.342634000000,,Anse de la Maronaise,25926,observation-945655df-8d08-4bfe-88e2-b07ecc902f12-2,https://biolit.fr/observations/observation-945655df-8d08-4bfe-88e2-b07ecc902f12-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9481-scaled.jpg,,FALSE, +N1,26263,sortie-945655df-8d08-4bfe-88e2-b07ecc902f12,https://biolit.fr/sorties/sortie-945655df-8d08-4bfe-88e2-b07ecc902f12/,Fleur,,10/20/2017 0:00,15.0000000,15.0000000,43.214658000000,5.342634000000,,Anse de la Maronaise,25928,observation-945655df-8d08-4bfe-88e2-b07ecc902f12-3,https://biolit.fr/observations/observation-945655df-8d08-4bfe-88e2-b07ecc902f12-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9482-scaled.jpg,,FALSE, +N1,26264,sortie-a4e91ba7-7bff-4da1-9718-15cbe308449a,https://biolit.fr/sorties/sortie-a4e91ba7-7bff-4da1-9718-15cbe308449a/,Fleur,,9/17/2017 0:00,10.0000000,12.0:15,43.284114000000,5.316344000000,,"Plage St Estève (Ile de Ratonneau, Archipel du Frioul)",25930,observation-a4e91ba7-7bff-4da1-9718-15cbe308449a,https://biolit.fr/observations/observation-a4e91ba7-7bff-4da1-9718-15cbe308449a/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9392-scaled.jpg,,FALSE, +N1,26265,sortie-48db0164-f32f-4343-acaf-4632e0206c13,https://biolit.fr/sorties/sortie-48db0164-f32f-4343-acaf-4632e0206c13/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236015000000,5.360092000000,,plage de la Bonne brise,25932,observation-48db0164-f32f-4343-acaf-4632e0206c13,https://biolit.fr/observations/observation-48db0164-f32f-4343-acaf-4632e0206c13/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6290468-scaled.jpg,,FALSE, +N1,26266,sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d,https://biolit.fr/sorties/sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.2546860000,5.374456000000,,plage de Borely,25934,observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d,https://biolit.fr/observations/observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0036.JPG,,FALSE, +N1,26266,sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d,https://biolit.fr/sorties/sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.2546860000,5.374456000000,,plage de Borely,25936,observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d-2,https://biolit.fr/observations/observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0037_0.JPG,,FALSE, +N1,26266,sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d,https://biolit.fr/sorties/sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.2546860000,5.374456000000,,plage de Borely,25938,observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d-3,https://biolit.fr/observations/observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0038.JPG,,FALSE, +N1,26266,sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d,https://biolit.fr/sorties/sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.2546860000,5.374456000000,,plage de Borely,25940,observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d-4,https://biolit.fr/observations/observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0039_0.JPG,,FALSE, +N1,26266,sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d,https://biolit.fr/sorties/sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.2546860000,5.374456000000,,plage de Borely,25942,observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d-5,https://biolit.fr/observations/observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0040_0.JPG,,FALSE, +N1,26266,sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d,https://biolit.fr/sorties/sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.2546860000,5.374456000000,,plage de Borely,25944,observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d-6,https://biolit.fr/observations/observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0041.JPG,,FALSE, +N1,26266,sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d,https://biolit.fr/sorties/sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.2546860000,5.374456000000,,plage de Borely,25946,observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d-7,https://biolit.fr/observations/observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0042_4.JPG,,FALSE, +N1,26266,sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d,https://biolit.fr/sorties/sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.2546860000,5.374456000000,,plage de Borely,25948,observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d-8,https://biolit.fr/observations/observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0043_1.JPG,,FALSE, +N1,26266,sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d,https://biolit.fr/sorties/sortie-825f9f0f-d3e0-4a1d-b404-a8449bfd492d/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.2546860000,5.374456000000,,plage de Borely,25950,observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d-9,https://biolit.fr/observations/observation-825f9f0f-d3e0-4a1d-b404-a8449bfd492d-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0044_1.JPG,,FALSE, +N1,26267,sortie-14a49712-ebdb-4a8d-b776-2b23cb16ed97,https://biolit.fr/sorties/sortie-14a49712-ebdb-4a8d-b776-2b23cb16ed97/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214891000000,5.342836000000,,Anse de la maronaise,25952,observation-14a49712-ebdb-4a8d-b776-2b23cb16ed97,https://biolit.fr/observations/observation-14a49712-ebdb-4a8d-b776-2b23cb16ed97/,,,,https://biolit.fr/wp-content/uploads/2023/07/P4120248-scaled.jpg,,FALSE, +N1,26267,sortie-14a49712-ebdb-4a8d-b776-2b23cb16ed97,https://biolit.fr/sorties/sortie-14a49712-ebdb-4a8d-b776-2b23cb16ed97/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214891000000,5.342836000000,,Anse de la maronaise,25954,observation-14a49712-ebdb-4a8d-b776-2b23cb16ed97-2,https://biolit.fr/observations/observation-14a49712-ebdb-4a8d-b776-2b23cb16ed97-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P4120249-scaled.jpg,,FALSE, +N1,26267,sortie-14a49712-ebdb-4a8d-b776-2b23cb16ed97,https://biolit.fr/sorties/sortie-14a49712-ebdb-4a8d-b776-2b23cb16ed97/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214891000000,5.342836000000,,Anse de la maronaise,25956,observation-14a49712-ebdb-4a8d-b776-2b23cb16ed97-3,https://biolit.fr/observations/observation-14a49712-ebdb-4a8d-b776-2b23cb16ed97-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P4120250-scaled.jpg,,FALSE, +N1,26267,sortie-14a49712-ebdb-4a8d-b776-2b23cb16ed97,https://biolit.fr/sorties/sortie-14a49712-ebdb-4a8d-b776-2b23cb16ed97/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214891000000,5.342836000000,,Anse de la maronaise,25958,observation-14a49712-ebdb-4a8d-b776-2b23cb16ed97-4,https://biolit.fr/observations/observation-14a49712-ebdb-4a8d-b776-2b23cb16ed97-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P4120251-scaled.jpg,,FALSE, +N1,26268,sortie-e38eb175-51d9-46aa-a62a-7f8024ba6537,https://biolit.fr/sorties/sortie-e38eb175-51d9-46aa-a62a-7f8024ba6537/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.20965600000,5.3725760000,,plage de la Calanque de Marseilleveyre,25960,observation-e38eb175-51d9-46aa-a62a-7f8024ba6537,https://biolit.fr/observations/observation-e38eb175-51d9-46aa-a62a-7f8024ba6537/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/P1110694.JPG,,TRUE, +N1,26268,sortie-e38eb175-51d9-46aa-a62a-7f8024ba6537,https://biolit.fr/sorties/sortie-e38eb175-51d9-46aa-a62a-7f8024ba6537/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.20965600000,5.3725760000,,plage de la Calanque de Marseilleveyre,25962,observation-e38eb175-51d9-46aa-a62a-7f8024ba6537-2,https://biolit.fr/observations/observation-e38eb175-51d9-46aa-a62a-7f8024ba6537-2/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/P1110698.JPG,,TRUE, +N1,26269,sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f,https://biolit.fr/sorties/sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214759000000,5.3429680000,,anse de la Maronaise,25964,observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f,https://biolit.fr/observations/observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0980-scaled.jpg,,FALSE, +N1,26269,sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f,https://biolit.fr/sorties/sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214759000000,5.3429680000,,anse de la Maronaise,25966,observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-2,https://biolit.fr/observations/observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0981-scaled.jpg,,FALSE, +N1,26269,sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f,https://biolit.fr/sorties/sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214759000000,5.3429680000,,anse de la Maronaise,25968,observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-3,https://biolit.fr/observations/observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0986-scaled.jpg,,FALSE, +N1,26269,sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f,https://biolit.fr/sorties/sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214759000000,5.3429680000,,anse de la Maronaise,25970,observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-4,https://biolit.fr/observations/observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-4/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0987-scaled.jpg,,TRUE, +N1,26269,sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f,https://biolit.fr/sorties/sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214759000000,5.3429680000,,anse de la Maronaise,25972,observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-5,https://biolit.fr/observations/observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0988-scaled.jpg,,FALSE, +N1,26269,sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f,https://biolit.fr/sorties/sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214759000000,5.3429680000,,anse de la Maronaise,25974,observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-6,https://biolit.fr/observations/observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0992-scaled.jpg,,FALSE, +N1,26269,sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f,https://biolit.fr/sorties/sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214759000000,5.3429680000,,anse de la Maronaise,25976,observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-7,https://biolit.fr/observations/observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0993-scaled.jpg,,FALSE, +N1,26269,sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f,https://biolit.fr/sorties/sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214759000000,5.3429680000,,anse de la Maronaise,25978,observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-8,https://biolit.fr/observations/observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0994-scaled.jpg,,FALSE, +N1,26269,sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f,https://biolit.fr/sorties/sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214759000000,5.3429680000,,anse de la Maronaise,25980,observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-9,https://biolit.fr/observations/observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0997-scaled.jpg,,FALSE, +N1,26269,sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f,https://biolit.fr/sorties/sortie-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214759000000,5.3429680000,,anse de la Maronaise,25982,observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-10,https://biolit.fr/observations/observation-1c79bde5-25ce-46ad-a7d1-3bf5e6a8d98f-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1013-scaled.jpg,,FALSE, +N1,26270,sortie-068c6e4e-eb3d-410f-bc60-5734b12f5c89,https://biolit.fr/sorties/sortie-068c6e4e-eb3d-410f-bc60-5734b12f5c89/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215235000000,5.342707000000,,Anse de la maronaise,25984,observation-068c6e4e-eb3d-410f-bc60-5734b12f5c89,https://biolit.fr/observations/observation-068c6e4e-eb3d-410f-bc60-5734b12f5c89/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0147_0-scaled.jpg,,FALSE, +N1,26270,sortie-068c6e4e-eb3d-410f-bc60-5734b12f5c89,https://biolit.fr/sorties/sortie-068c6e4e-eb3d-410f-bc60-5734b12f5c89/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215235000000,5.342707000000,,Anse de la maronaise,25986,observation-068c6e4e-eb3d-410f-bc60-5734b12f5c89-2,https://biolit.fr/observations/observation-068c6e4e-eb3d-410f-bc60-5734b12f5c89-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0148-scaled.jpg,,FALSE, +N1,26271,sortie-c2c0a4ae-fe8a-419e-9926-d4fdb48b6023,https://biolit.fr/sorties/sortie-c2c0a4ae-fe8a-419e-9926-d4fdb48b6023/,SofiaManuel,,02/07/2017,16.0:55,18.0:55,43.333367000000,5.197171000000,,la redonne,25988,observation-c2c0a4ae-fe8a-419e-9926-d4fdb48b6023,https://biolit.fr/observations/observation-c2c0a4ae-fe8a-419e-9926-d4fdb48b6023/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 4_9-scaled.jpg,,FALSE, +N1,26272,sortie-000cca3a-21f7-4651-888d-b9618754c9a4,https://biolit.fr/sorties/sortie-000cca3a-21f7-4651-888d-b9618754c9a4/,yanis bennadji,,1/24/2017 0:00,14.0000000,17.0000000,43.333757000000,5.197718000000,,Calanque de la Redonne,25990,observation-000cca3a-21f7-4651-888d-b9618754c9a4,https://biolit.fr/observations/observation-000cca3a-21f7-4651-888d-b9618754c9a4/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 1_2-scaled.jpg,,FALSE, +N1,26273,sortie-6294e661-193b-4a8e-97cd-5f0706816fb0,https://biolit.fr/sorties/sortie-6294e661-193b-4a8e-97cd-5f0706816fb0/,dana,,1/23/2017 0:00,14.0000000,17.0000000,43.341730000000,5.260959000000,,plage des prébraies,25992,observation-6294e661-193b-4a8e-97cd-5f0706816fb0,https://biolit.fr/observations/observation-6294e661-193b-4a8e-97cd-5f0706816fb0/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 2_7.JPG,,FALSE, +N1,26274,sortie-20799116-e825-4e11-a478-4db54393a357,https://biolit.fr/sorties/sortie-20799116-e825-4e11-a478-4db54393a357/,Joaronchin,,1/30/2017 0:00,16.0000000,18.0000000,43.330148000000,5.198104000000,,Ensuès la Redonne,25994,observation-20799116-e825-4e11-a478-4db54393a357,https://biolit.fr/observations/observation-20799116-e825-4e11-a478-4db54393a357/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 1_6-scaled.jpg,,FALSE, +N1,26275,sortie-269d7903-0a37-4dc5-8f2a-a697a7fbb492,https://biolit.fr/sorties/sortie-269d7903-0a37-4dc5-8f2a-a697a7fbb492/,justine_camille,,1/30/2017 0:00,14.0000000,17.0000000,43.333574000000,5.197675000000,,Ensuès la Redone,25996,observation-269d7903-0a37-4dc5-8f2a-a697a7fbb492,https://biolit.fr/observations/observation-269d7903-0a37-4dc5-8f2a-a697a7fbb492/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 1_5-scaled.jpg,,FALSE, +N1,26276,sortie-ad581e78-dd45-47c2-bc07-33c9bb41c32b,https://biolit.fr/sorties/sortie-ad581e78-dd45-47c2-bc07-33c9bb41c32b/,azerty123,,02/06/2017,14.0000000,17.0000000,43.333940000000,5.197667000000,,Plage des pébraïres,25998,observation-ad581e78-dd45-47c2-bc07-33c9bb41c32b,https://biolit.fr/observations/observation-ad581e78-dd45-47c2-bc07-33c9bb41c32b/,Opuntia ficus,Figuier de barbarie,,https://biolit.fr/wp-content/uploads/2023/07/photo 2_1.JPG,,TRUE, +N1,26276,sortie-ad581e78-dd45-47c2-bc07-33c9bb41c32b,https://biolit.fr/sorties/sortie-ad581e78-dd45-47c2-bc07-33c9bb41c32b/,azerty123,,02/06/2017,14.0000000,17.0000000,43.333940000000,5.197667000000,,Plage des pébraïres,26000,observation-ad581e78-dd45-47c2-bc07-33c9bb41c32b-2,https://biolit.fr/observations/observation-ad581e78-dd45-47c2-bc07-33c9bb41c32b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 4-scaled.jpg,,FALSE, +N1,26277,sortie-1d0d3a1b-97d9-424d-a16d-b476fd3bb8c0,https://biolit.fr/sorties/sortie-1d0d3a1b-97d9-424d-a16d-b476fd3bb8c0/,Joaronchin,,1/30/2017 0:00,14.0000000,17.0000000,43.321157000000,5.562026000000,,Ensuès la Redonne,,,,,,,,,, +N1,26278,sortie-4dd199d0-d541-4201-b940-b2af17d3f6ec,https://biolit.fr/sorties/sortie-4dd199d0-d541-4201-b940-b2af17d3f6ec/,Linda,,1/23/2017 0:00,13.0000000,17.0000000,43.355117000000,5.209090000000,,La redonne,26004,observation-4dd199d0-d541-4201-b940-b2af17d3f6ec,https://biolit.fr/observations/observation-4dd199d0-d541-4201-b940-b2af17d3f6ec/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 2_0-scaled.jpg,,FALSE, +N1,26279,sortie-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275,https://biolit.fr/sorties/sortie-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275/,ludovic,,01/12/2017,16.000005,17.000005,43.255282000000,5.373767000000,,plage borely,26006,observation-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275,https://biolit.fr/observations/observation-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0693-scaled.jpg,,FALSE, +N1,26279,sortie-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275,https://biolit.fr/sorties/sortie-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275/,ludovic,,01/12/2017,16.000005,17.000005,43.255282000000,5.373767000000,,plage borely,26008,observation-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275-2,https://biolit.fr/observations/observation-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0694-scaled.jpg,,FALSE, +N1,26279,sortie-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275,https://biolit.fr/sorties/sortie-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275/,ludovic,,01/12/2017,16.000005,17.000005,43.255282000000,5.373767000000,,plage borely,26010,observation-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275-3,https://biolit.fr/observations/observation-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0698-scaled.jpg,,FALSE, +N1,26279,sortie-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275,https://biolit.fr/sorties/sortie-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275/,ludovic,,01/12/2017,16.000005,17.000005,43.255282000000,5.373767000000,,plage borely,26012,observation-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275-4,https://biolit.fr/observations/observation-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0707-scaled.jpg,,FALSE, +N1,26279,sortie-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275,https://biolit.fr/sorties/sortie-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275/,ludovic,,01/12/2017,16.000005,17.000005,43.255282000000,5.373767000000,,plage borely,26014,observation-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275-5,https://biolit.fr/observations/observation-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0708-scaled.jpg,,FALSE, +N1,26279,sortie-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275,https://biolit.fr/sorties/sortie-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275/,ludovic,,01/12/2017,16.000005,17.000005,43.255282000000,5.373767000000,,plage borely,26016,observation-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275-6,https://biolit.fr/observations/observation-e16f3cd7-6ea3-4e33-a446-ca6c17a9a275-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0709-scaled.jpg,,FALSE, +N1,26280,sortie-ec697428-8213-4d03-8132-d1b643865482,https://biolit.fr/sorties/sortie-ec697428-8213-4d03-8132-d1b643865482/,romisseu,,12/13/2016 0:00,14.0000000,17.0000000,43.333436000000,5.197112000000,,plage des pébraires,26018,observation-ec697428-8213-4d03-8132-d1b643865482,https://biolit.fr/observations/observation-ec697428-8213-4d03-8132-d1b643865482/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic2_8-scaled.jpg,,FALSE, +N1,26281,sortie-b058e0ad-067d-4476-ab2e-f6ddfe98cf27,https://biolit.fr/sorties/sortie-b058e0ad-067d-4476-ab2e-f6ddfe98cf27/,thomas,,12/13/2016 0:00,14.0000000,17.0000000,43.33343700000,5.197734000000,,ensues-la-redonne,26020,observation-b058e0ad-067d-4476-ab2e-f6ddfe98cf27,https://biolit.fr/observations/observation-b058e0ad-067d-4476-ab2e-f6ddfe98cf27/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic-scaled.jpg,,FALSE, +N1,26282,sortie-5fd345cf-5640-4f12-addf-04b1ea6201c2,https://biolit.fr/sorties/sortie-5fd345cf-5640-4f12-addf-04b1ea6201c2/,Ville de Marseille,,11/14/2016 0:00,11.0000000,12.0000000,43.280462000000,5.352738000000,,"Anse de la fausse monnaie, Marseille",26022,observation-5fd345cf-5640-4f12-addf-04b1ea6201c2,https://biolit.fr/observations/observation-5fd345cf-5640-4f12-addf-04b1ea6201c2/,,,,https://biolit.fr/wp-content/uploads/2023/07/épinard de nelle zélande.JPG,,FALSE, +N1,26283,sortie-2900271e-0d09-4727-a0c3-a419edf157cd,https://biolit.fr/sorties/sortie-2900271e-0d09-4727-a0c3-a419edf157cd/,Marine,,10/16/2016 0:00,9.0000000,10.0000000,43.072562000000,5.784553000000,,Ile des Embiez,26024,observation-2900271e-0d09-4727-a0c3-a419edf157cd,https://biolit.fr/observations/observation-2900271e-0d09-4727-a0c3-a419edf157cd/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1902-rotated.jpg,,FALSE, +N1,26283,sortie-2900271e-0d09-4727-a0c3-a419edf157cd,https://biolit.fr/sorties/sortie-2900271e-0d09-4727-a0c3-a419edf157cd/,Marine,,10/16/2016 0:00,9.0000000,10.0000000,43.072562000000,5.784553000000,,Ile des Embiez,26026,observation-2900271e-0d09-4727-a0c3-a419edf157cd-2,https://biolit.fr/observations/observation-2900271e-0d09-4727-a0c3-a419edf157cd-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1903-rotated.jpg,,FALSE, +N1,26283,sortie-2900271e-0d09-4727-a0c3-a419edf157cd,https://biolit.fr/sorties/sortie-2900271e-0d09-4727-a0c3-a419edf157cd/,Marine,,10/16/2016 0:00,9.0000000,10.0000000,43.072562000000,5.784553000000,,Ile des Embiez,26028,observation-2900271e-0d09-4727-a0c3-a419edf157cd-3,https://biolit.fr/observations/observation-2900271e-0d09-4727-a0c3-a419edf157cd-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1904-rotated.jpg,,FALSE, +N1,26284,sortie-843f715b-a41e-44da-a4ab-944c1feac6cd,https://biolit.fr/sorties/sortie-843f715b-a41e-44da-a4ab-944c1feac6cd/,Ecole de la mer,,8/29/2016 0:00,20.0000000,22.0000000,16.213718000000,-61.536479000000,,Ilet cochon ,26030,observation-843f715b-a41e-44da-a4ab-944c1feac6cd,https://biolit.fr/observations/observation-843f715b-a41e-44da-a4ab-944c1feac6cd/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN1147-001.JPG,,FALSE, +N1,26285,sortie-11b357c4-3c47-4f60-a842-e59b515af1a8,https://biolit.fr/sorties/sortie-11b357c4-3c47-4f60-a842-e59b515af1a8/,Ecole de la mer,,08/01/2016,9.0000000,10.0000000,16.215363000000,-61.536994000000,,Ilet cochon ,26032,observation-11b357c4-3c47-4f60-a842-e59b515af1a8,https://biolit.fr/observations/observation-11b357c4-3c47-4f60-a842-e59b515af1a8/,Avicennia germinans,Palétuvier noir,,https://biolit.fr/wp-content/uploads/2023/07/DSCN1159-001_0.JPG,,TRUE, +N1,26286,sortie-cd073ab8-427f-487e-91b7-a561b386b94f,https://biolit.fr/sorties/sortie-cd073ab8-427f-487e-91b7-a561b386b94f/,Valie,,6/26/2016 0:00,13.0000000,13.0000000,43.289384000000,3.435118000000,,Plage de la Tamarissière,26034,observation-cd073ab8-427f-487e-91b7-a561b386b94f,https://biolit.fr/observations/observation-cd073ab8-427f-487e-91b7-a561b386b94f/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02682.JPG,,FALSE, +N1,26286,sortie-cd073ab8-427f-487e-91b7-a561b386b94f,https://biolit.fr/sorties/sortie-cd073ab8-427f-487e-91b7-a561b386b94f/,Valie,,6/26/2016 0:00,13.0000000,13.0000000,43.289384000000,3.435118000000,,Plage de la Tamarissière,26036,observation-cd073ab8-427f-487e-91b7-a561b386b94f-2,https://biolit.fr/observations/observation-cd073ab8-427f-487e-91b7-a561b386b94f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02726-scaled.jpg,,FALSE, +N1,26286,sortie-cd073ab8-427f-487e-91b7-a561b386b94f,https://biolit.fr/sorties/sortie-cd073ab8-427f-487e-91b7-a561b386b94f/,Valie,,6/26/2016 0:00,13.0000000,13.0000000,43.289384000000,3.435118000000,,Plage de la Tamarissière,26038,observation-cd073ab8-427f-487e-91b7-a561b386b94f-3,https://biolit.fr/observations/observation-cd073ab8-427f-487e-91b7-a561b386b94f-3/,Convolvulus soldanella,Liseron des dunes,,https://biolit.fr/wp-content/uploads/2023/07/DSC02716.JPG,,TRUE, +N1,26286,sortie-cd073ab8-427f-487e-91b7-a561b386b94f,https://biolit.fr/sorties/sortie-cd073ab8-427f-487e-91b7-a561b386b94f/,Valie,,6/26/2016 0:00,13.0000000,13.0000000,43.289384000000,3.435118000000,,Plage de la Tamarissière,26040,observation-cd073ab8-427f-487e-91b7-a561b386b94f-4,https://biolit.fr/observations/observation-cd073ab8-427f-487e-91b7-a561b386b94f-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02733.JPG,,FALSE, +N1,26286,sortie-cd073ab8-427f-487e-91b7-a561b386b94f,https://biolit.fr/sorties/sortie-cd073ab8-427f-487e-91b7-a561b386b94f/,Valie,,6/26/2016 0:00,13.0000000,13.0000000,43.289384000000,3.435118000000,,Plage de la Tamarissière,26042,observation-cd073ab8-427f-487e-91b7-a561b386b94f-5,https://biolit.fr/observations/observation-cd073ab8-427f-487e-91b7-a561b386b94f-5/,Anthemis maritima,Anthémis maritime,,https://biolit.fr/wp-content/uploads/2023/07/DSC02734-scaled.jpg,,TRUE, +N1,26286,sortie-cd073ab8-427f-487e-91b7-a561b386b94f,https://biolit.fr/sorties/sortie-cd073ab8-427f-487e-91b7-a561b386b94f/,Valie,,6/26/2016 0:00,13.0000000,13.0000000,43.289384000000,3.435118000000,,Plage de la Tamarissière,26044,observation-cd073ab8-427f-487e-91b7-a561b386b94f-6,https://biolit.fr/observations/observation-cd073ab8-427f-487e-91b7-a561b386b94f-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02735.JPG,,FALSE, +N1,26286,sortie-cd073ab8-427f-487e-91b7-a561b386b94f,https://biolit.fr/sorties/sortie-cd073ab8-427f-487e-91b7-a561b386b94f/,Valie,,6/26/2016 0:00,13.0000000,13.0000000,43.289384000000,3.435118000000,,Plage de la Tamarissière,26046,observation-cd073ab8-427f-487e-91b7-a561b386b94f-7,https://biolit.fr/observations/observation-cd073ab8-427f-487e-91b7-a561b386b94f-7/,Matthiola sinuata,Giroflée des dunes,,https://biolit.fr/wp-content/uploads/2023/07/DSC02736.JPG,,TRUE, +N1,26286,sortie-cd073ab8-427f-487e-91b7-a561b386b94f,https://biolit.fr/sorties/sortie-cd073ab8-427f-487e-91b7-a561b386b94f/,Valie,,6/26/2016 0:00,13.0000000,13.0000000,43.289384000000,3.435118000000,,Plage de la Tamarissière,26048,observation-cd073ab8-427f-487e-91b7-a561b386b94f-8,https://biolit.fr/observations/observation-cd073ab8-427f-487e-91b7-a561b386b94f-8/,Lagurus ovatus,Queue de lièvre,,https://biolit.fr/wp-content/uploads/2023/07/DSC02737.JPG,,TRUE, +N1,26286,sortie-cd073ab8-427f-487e-91b7-a561b386b94f,https://biolit.fr/sorties/sortie-cd073ab8-427f-487e-91b7-a561b386b94f/,Valie,,6/26/2016 0:00,13.0000000,13.0000000,43.289384000000,3.435118000000,,Plage de la Tamarissière,26050,observation-cd073ab8-427f-487e-91b7-a561b386b94f-9,https://biolit.fr/observations/observation-cd073ab8-427f-487e-91b7-a561b386b94f-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02741.JPG,,FALSE, +N1,26286,sortie-cd073ab8-427f-487e-91b7-a561b386b94f,https://biolit.fr/sorties/sortie-cd073ab8-427f-487e-91b7-a561b386b94f/,Valie,,6/26/2016 0:00,13.0000000,13.0000000,43.289384000000,3.435118000000,,Plage de la Tamarissière,26052,observation-cd073ab8-427f-487e-91b7-a561b386b94f-10,https://biolit.fr/observations/observation-cd073ab8-427f-487e-91b7-a561b386b94f-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02741_0.JPG,,FALSE, +N1,26286,sortie-cd073ab8-427f-487e-91b7-a561b386b94f,https://biolit.fr/sorties/sortie-cd073ab8-427f-487e-91b7-a561b386b94f/,Valie,,6/26/2016 0:00,13.0000000,13.0000000,43.289384000000,3.435118000000,,Plage de la Tamarissière,26054,observation-cd073ab8-427f-487e-91b7-a561b386b94f-11,https://biolit.fr/observations/observation-cd073ab8-427f-487e-91b7-a561b386b94f-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02746-scaled.jpg,,FALSE, +N1,26286,sortie-cd073ab8-427f-487e-91b7-a561b386b94f,https://biolit.fr/sorties/sortie-cd073ab8-427f-487e-91b7-a561b386b94f/,Valie,,6/26/2016 0:00,13.0000000,13.0000000,43.289384000000,3.435118000000,,Plage de la Tamarissière,26056,observation-cd073ab8-427f-487e-91b7-a561b386b94f-12,https://biolit.fr/observations/observation-cd073ab8-427f-487e-91b7-a561b386b94f-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02738-scaled.jpg,,FALSE, +N1,26286,sortie-cd073ab8-427f-487e-91b7-a561b386b94f,https://biolit.fr/sorties/sortie-cd073ab8-427f-487e-91b7-a561b386b94f/,Valie,,6/26/2016 0:00,13.0000000,13.0000000,43.289384000000,3.435118000000,,Plage de la Tamarissière,26058,observation-cd073ab8-427f-487e-91b7-a561b386b94f-13,https://biolit.fr/observations/observation-cd073ab8-427f-487e-91b7-a561b386b94f-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02743-scaled.jpg,,FALSE, +N1,26287,sortie-1eb7f8a2-0e70-4949-be88-89f618f2fa13,https://biolit.fr/sorties/sortie-1eb7f8a2-0e70-4949-be88-89f618f2fa13/,Ecole de la mer,,3/30/2016 0:00,9.0000000,10.0:15,16.198696000000,-61.491043000000,,Ilet gosier ,26060,observation-1eb7f8a2-0e70-4949-be88-89f618f2fa13,https://biolit.fr/observations/observation-1eb7f8a2-0e70-4949-be88-89f618f2fa13/,,,,https://biolit.fr/wp-content/uploads/2023/07/GOPR3006.JPG,,FALSE, +N1,26287,sortie-1eb7f8a2-0e70-4949-be88-89f618f2fa13,https://biolit.fr/sorties/sortie-1eb7f8a2-0e70-4949-be88-89f618f2fa13/,Ecole de la mer,,3/30/2016 0:00,9.0000000,10.0:15,16.198696000000,-61.491043000000,,Ilet gosier ,26062,observation-1eb7f8a2-0e70-4949-be88-89f618f2fa13-2,https://biolit.fr/observations/observation-1eb7f8a2-0e70-4949-be88-89f618f2fa13-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/GOPR3005-001.JPG,,FALSE, +N1,26288,sortie-b3c7d47a-7548-4c0a-9cab-b276c18dfa8c,https://biolit.fr/sorties/sortie-b3c7d47a-7548-4c0a-9cab-b276c18dfa8c/,Ecole de la mer,,3/29/2016 0:00,9.0000000,10.0:15,16.213876000000,-61.535315000000,,Ilet cochon,26064,observation-b3c7d47a-7548-4c0a-9cab-b276c18dfa8c,https://biolit.fr/observations/observation-b3c7d47a-7548-4c0a-9cab-b276c18dfa8c/,,,,https://biolit.fr/wp-content/uploads/2023/07/GOPR3053.JPG,,FALSE, +N1,26288,sortie-b3c7d47a-7548-4c0a-9cab-b276c18dfa8c,https://biolit.fr/sorties/sortie-b3c7d47a-7548-4c0a-9cab-b276c18dfa8c/,Ecole de la mer,,3/29/2016 0:00,9.0000000,10.0:15,16.213876000000,-61.535315000000,,Ilet cochon,26066,observation-b3c7d47a-7548-4c0a-9cab-b276c18dfa8c-2,https://biolit.fr/observations/observation-b3c7d47a-7548-4c0a-9cab-b276c18dfa8c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/GOPR3055.JPG,,FALSE, +N1,26289,sortie-87776a5c-7644-4dbe-b772-d109fe59471e,https://biolit.fr/sorties/sortie-87776a5c-7644-4dbe-b772-d109fe59471e/,Marine,,03/08/2016,13.0000000,15.0000000,43.419847000000,5.173589000000,,Lido du Jai,26068,observation-87776a5c-7644-4dbe-b772-d109fe59471e,https://biolit.fr/observations/observation-87776a5c-7644-4dbe-b772-d109fe59471e/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1218-rotated.jpg,,FALSE, +N1,26290,sortie-9f0546a0-377d-4aab-b4e1-b15055bebb99,https://biolit.fr/sorties/sortie-9f0546a0-377d-4aab-b4e1-b15055bebb99/,Ecole de la mer,,3/21/2016 0:00,9.0:45,10.0000000,16.21568900000,-61.537688000000,,Ilet cochon,26070,observation-9f0546a0-377d-4aab-b4e1-b15055bebb99,https://biolit.fr/observations/observation-9f0546a0-377d-4aab-b4e1-b15055bebb99/,,,,https://biolit.fr/wp-content/uploads/2023/07/raisinier 2.JPG,,FALSE, +N1,26290,sortie-9f0546a0-377d-4aab-b4e1-b15055bebb99,https://biolit.fr/sorties/sortie-9f0546a0-377d-4aab-b4e1-b15055bebb99/,Ecole de la mer,,3/21/2016 0:00,9.0:45,10.0000000,16.21568900000,-61.537688000000,,Ilet cochon,26072,observation-9f0546a0-377d-4aab-b4e1-b15055bebb99-2,https://biolit.fr/observations/observation-9f0546a0-377d-4aab-b4e1-b15055bebb99-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/raisinier.JPG,,FALSE, +N1,26290,sortie-9f0546a0-377d-4aab-b4e1-b15055bebb99,https://biolit.fr/sorties/sortie-9f0546a0-377d-4aab-b4e1-b15055bebb99/,Ecole de la mer,,3/21/2016 0:00,9.0:45,10.0000000,16.21568900000,-61.537688000000,,Ilet cochon,26074,observation-9f0546a0-377d-4aab-b4e1-b15055bebb99-3,https://biolit.fr/observations/observation-9f0546a0-377d-4aab-b4e1-b15055bebb99-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/catalpa.JPG,,FALSE, +N1,26290,sortie-9f0546a0-377d-4aab-b4e1-b15055bebb99,https://biolit.fr/sorties/sortie-9f0546a0-377d-4aab-b4e1-b15055bebb99/,Ecole de la mer,,3/21/2016 0:00,9.0:45,10.0000000,16.21568900000,-61.537688000000,,Ilet cochon,26076,observation-9f0546a0-377d-4aab-b4e1-b15055bebb99-4,https://biolit.fr/observations/observation-9f0546a0-377d-4aab-b4e1-b15055bebb99-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/GOPR3159.JPG,,FALSE, +N1,26290,sortie-9f0546a0-377d-4aab-b4e1-b15055bebb99,https://biolit.fr/sorties/sortie-9f0546a0-377d-4aab-b4e1-b15055bebb99/,Ecole de la mer,,3/21/2016 0:00,9.0:45,10.0000000,16.21568900000,-61.537688000000,,Ilet cochon,26078,observation-9f0546a0-377d-4aab-b4e1-b15055bebb99-5,https://biolit.fr/observations/observation-9f0546a0-377d-4aab-b4e1-b15055bebb99-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/badanier 2.JPG,,FALSE, +N1,26291,sortie-4307f415-8883-48c8-b5ca-67029980755b,https://biolit.fr/sorties/sortie-4307f415-8883-48c8-b5ca-67029980755b/,Marine,,1/31/2016 0:00,12.0000000,14.0000000,43.093140000000,6.024675000000,,Plage de la Garonne,26080,observation-4307f415-8883-48c8-b5ca-67029980755b,https://biolit.fr/observations/observation-4307f415-8883-48c8-b5ca-67029980755b/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1088-scaled.jpg,,FALSE, +N1,26292,sortie-6cda2832-7bbf-4f81-bb4c-72057c106bf2,https://biolit.fr/sorties/sortie-6cda2832-7bbf-4f81-bb4c-72057c106bf2/,Centre de Découverte Mer et Montagne,,11/04/2015,14.0000000,16.0000000,43.689868000000,7.294454000000,,Sentier littoral de Nice,26082,observation-6cda2832-7bbf-4f81-bb4c-72057c106bf2,https://biolit.fr/observations/observation-6cda2832-7bbf-4f81-bb4c-72057c106bf2/,,,,https://biolit.fr/wp-content/uploads/2023/07/151104_CN_biolit_ClA (4)euphorbe arborescente-scaled.jpg,,FALSE, +N1,26292,sortie-6cda2832-7bbf-4f81-bb4c-72057c106bf2,https://biolit.fr/sorties/sortie-6cda2832-7bbf-4f81-bb4c-72057c106bf2/,Centre de Découverte Mer et Montagne,,11/04/2015,14.0000000,16.0000000,43.689868000000,7.294454000000,,Sentier littoral de Nice,26084,observation-6cda2832-7bbf-4f81-bb4c-72057c106bf2-2,https://biolit.fr/observations/observation-6cda2832-7bbf-4f81-bb4c-72057c106bf2-2/,Lobularia maritima,Alysson maritime,,https://biolit.fr/wp-content/uploads/2023/07/151104_CN_biolit_ClA (6)alysson-scaled.jpg,,TRUE, +N1,26292,sortie-6cda2832-7bbf-4f81-bb4c-72057c106bf2,https://biolit.fr/sorties/sortie-6cda2832-7bbf-4f81-bb4c-72057c106bf2/,Centre de Découverte Mer et Montagne,,11/04/2015,14.0000000,16.0000000,43.689868000000,7.294454000000,,Sentier littoral de Nice,26086,observation-6cda2832-7bbf-4f81-bb4c-72057c106bf2-3,https://biolit.fr/observations/observation-6cda2832-7bbf-4f81-bb4c-72057c106bf2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/151104_CN_biolit_ClA (9)acanthe à feuille molle et figuier de barbarie-scaled.jpg,,FALSE, +N1,26292,sortie-6cda2832-7bbf-4f81-bb4c-72057c106bf2,https://biolit.fr/sorties/sortie-6cda2832-7bbf-4f81-bb4c-72057c106bf2/,Centre de Découverte Mer et Montagne,,11/04/2015,14.0000000,16.0000000,43.689868000000,7.294454000000,,Sentier littoral de Nice,26088,observation-6cda2832-7bbf-4f81-bb4c-72057c106bf2-4,https://biolit.fr/observations/observation-6cda2832-7bbf-4f81-bb4c-72057c106bf2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/151104_CN_biolit_ClA (14)criste marine-scaled.jpg,,FALSE, +N1,26292,sortie-6cda2832-7bbf-4f81-bb4c-72057c106bf2,https://biolit.fr/sorties/sortie-6cda2832-7bbf-4f81-bb4c-72057c106bf2/,Centre de Découverte Mer et Montagne,,11/04/2015,14.0000000,16.0000000,43.689868000000,7.294454000000,,Sentier littoral de Nice,26090,observation-6cda2832-7bbf-4f81-bb4c-72057c106bf2-5,https://biolit.fr/observations/observation-6cda2832-7bbf-4f81-bb4c-72057c106bf2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/151104_CN_biolit_ClA (16)statice a feuille cordée-scaled.jpg,,FALSE, +N1,26292,sortie-6cda2832-7bbf-4f81-bb4c-72057c106bf2,https://biolit.fr/sorties/sortie-6cda2832-7bbf-4f81-bb4c-72057c106bf2/,Centre de Découverte Mer et Montagne,,11/04/2015,14.0000000,16.0000000,43.689868000000,7.294454000000,,Sentier littoral de Nice,26092,observation-6cda2832-7bbf-4f81-bb4c-72057c106bf2-6,https://biolit.fr/observations/observation-6cda2832-7bbf-4f81-bb4c-72057c106bf2-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/151104_CN_biolit_ClA (19)-scaled.jpg,,FALSE, +N1,26292,sortie-6cda2832-7bbf-4f81-bb4c-72057c106bf2,https://biolit.fr/sorties/sortie-6cda2832-7bbf-4f81-bb4c-72057c106bf2/,Centre de Découverte Mer et Montagne,,11/04/2015,14.0000000,16.0000000,43.689868000000,7.294454000000,,Sentier littoral de Nice,26094,observation-6cda2832-7bbf-4f81-bb4c-72057c106bf2-7,https://biolit.fr/observations/observation-6cda2832-7bbf-4f81-bb4c-72057c106bf2-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/151104_CN_biolit_ClA (32)maceron-scaled.jpg,,FALSE, +N1,26292,sortie-6cda2832-7bbf-4f81-bb4c-72057c106bf2,https://biolit.fr/sorties/sortie-6cda2832-7bbf-4f81-bb4c-72057c106bf2/,Centre de Découverte Mer et Montagne,,11/04/2015,14.0000000,16.0000000,43.689868000000,7.294454000000,,Sentier littoral de Nice,26096,observation-6cda2832-7bbf-4f81-bb4c-72057c106bf2-8,https://biolit.fr/observations/observation-6cda2832-7bbf-4f81-bb4c-72057c106bf2-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/151104_CN_biolit_ClA (33)carpobrotus-scaled.jpg,,FALSE, +N1,26293,sortie-9d9ecf08-ab19-4e5a-8d62-a9b1ee62c85f,https://biolit.fr/sorties/sortie-9d9ecf08-ab19-4e5a-8d62-a9b1ee62c85f/,Planète Mer,,9/21/2015 0:00,14.0000000,16.0000000,43.521018000000,7.032667000000,,île Sainte Marguerite,26098,observation-9d9ecf08-ab19-4e5a-8d62-a9b1ee62c85f,https://biolit.fr/observations/observation-9d9ecf08-ab19-4e5a-8d62-a9b1ee62c85f/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0020_0-scaled.jpg,,FALSE, +N1,26293,sortie-9d9ecf08-ab19-4e5a-8d62-a9b1ee62c85f,https://biolit.fr/sorties/sortie-9d9ecf08-ab19-4e5a-8d62-a9b1ee62c85f/,Planète Mer,,9/21/2015 0:00,14.0000000,16.0000000,43.521018000000,7.032667000000,,île Sainte Marguerite,26100,observation-9d9ecf08-ab19-4e5a-8d62-a9b1ee62c85f-2,https://biolit.fr/observations/observation-9d9ecf08-ab19-4e5a-8d62-a9b1ee62c85f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0021-scaled.jpg,,FALSE, +N1,26294,sortie-ae803e3e-a31b-4683-a47d-8469a13b8aca,https://biolit.fr/sorties/sortie-ae803e3e-a31b-4683-a47d-8469a13b8aca/,Centre de Découverte Mer et Montagne,,7/22/2015 0:00,15.0000000,15.0000000,43.692160000000,7.290585000000,,Nice,26102,observation-ae803e3e-a31b-4683-a47d-8469a13b8aca,https://biolit.fr/observations/observation-ae803e3e-a31b-4683-a47d-8469a13b8aca/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP2560-scaled.jpg,,FALSE, +N1,26295,sortie-09603699-706a-4aab-b0ce-6de0c54a9b87,https://biolit.fr/sorties/sortie-09603699-706a-4aab-b0ce-6de0c54a9b87/,Marine,,07/02/2015,16.0000000,19.0000000,43.209586000000,5.372984000000,,Calanques de Marseilleverye,26104,observation-09603699-706a-4aab-b0ce-6de0c54a9b87,https://biolit.fr/observations/observation-09603699-706a-4aab-b0ce-6de0c54a9b87/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0706-scaled.jpg,,FALSE, +N1,26295,sortie-09603699-706a-4aab-b0ce-6de0c54a9b87,https://biolit.fr/sorties/sortie-09603699-706a-4aab-b0ce-6de0c54a9b87/,Marine,,07/02/2015,16.0000000,19.0000000,43.209586000000,5.372984000000,,Calanques de Marseilleverye,26106,observation-09603699-706a-4aab-b0ce-6de0c54a9b87-2,https://biolit.fr/observations/observation-09603699-706a-4aab-b0ce-6de0c54a9b87-2/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0707-scaled.jpg,,TRUE, +N1,26295,sortie-09603699-706a-4aab-b0ce-6de0c54a9b87,https://biolit.fr/sorties/sortie-09603699-706a-4aab-b0ce-6de0c54a9b87/,Marine,,07/02/2015,16.0000000,19.0000000,43.209586000000,5.372984000000,,Calanques de Marseilleverye,26108,observation-09603699-706a-4aab-b0ce-6de0c54a9b87-3,https://biolit.fr/observations/observation-09603699-706a-4aab-b0ce-6de0c54a9b87-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0710-scaled.jpg,,FALSE, +N1,26296,sortie-1a640a35-a961-416b-abf0-6f2a39a5ef69,https://biolit.fr/sorties/sortie-1a640a35-a961-416b-abf0-6f2a39a5ef69/,Marine,,6/25/2015 0:00,17.0000000,18.0000000,43.156106000000,6.503254000000,,Hameau du Dattier,26110,observation-1a640a35-a961-416b-abf0-6f2a39a5ef69,https://biolit.fr/observations/observation-1a640a35-a961-416b-abf0-6f2a39a5ef69/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0689-scaled.jpg,,TRUE,Identifiable +N1,26296,sortie-1a640a35-a961-416b-abf0-6f2a39a5ef69,https://biolit.fr/sorties/sortie-1a640a35-a961-416b-abf0-6f2a39a5ef69/,Marine,,6/25/2015 0:00,17.0000000,18.0000000,43.156106000000,6.503254000000,,Hameau du Dattier,26112,observation-1a640a35-a961-416b-abf0-6f2a39a5ef69-2,https://biolit.fr/observations/observation-1a640a35-a961-416b-abf0-6f2a39a5ef69-2/,Anthyllis barba-jovis,Anthyllide barbe-de-Jupiter,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0688-scaled.jpg,,TRUE, +N1,26297,sortie-9219fd6b-a106-41e1-900d-1252196aaaa4,https://biolit.fr/sorties/sortie-9219fd6b-a106-41e1-900d-1252196aaaa4/,Marine,,06/05/2015,18.0000000,20.0000000,43.32591800000,5.054005000000,,Plage de la Couronne Vieille,26114,observation-9219fd6b-a106-41e1-900d-1252196aaaa4,https://biolit.fr/observations/observation-9219fd6b-a106-41e1-900d-1252196aaaa4/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0653-scaled.jpg,,TRUE, +N1,26298,sortie-4816ba5a-c1e1-4da9-ae36-b828b27e7615,https://biolit.fr/sorties/sortie-4816ba5a-c1e1-4da9-ae36-b828b27e7615/,SIBOJAÏ - Syndicat Intercommunal du Bolmon et du Jaï,,5/21/2015 0:00,15.0000000,16.0:15,43.419620000000,5.173878000000,,Lido du Jaï,26116,observation-4816ba5a-c1e1-4da9-ae36-b828b27e7615,https://biolit.fr/observations/observation-4816ba5a-c1e1-4da9-ae36-b828b27e7615/,Zostera noltei,Zostère naine,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0034-scaled.jpg,,TRUE, +N1,26299,sortie-208c9679-5e05-41ae-9104-e85e58f1af16,https://biolit.fr/sorties/sortie-208c9679-5e05-41ae-9104-e85e58f1af16/,SIBOJAÏ - Syndicat Intercommunal du Bolmon et du Jaï,,5/21/2015 0:00,15.0000000,16.0:15,43.419355000000,5.174157000000,,Lido du Jaï - Marignane,26118,observation-208c9679-5e05-41ae-9104-e85e58f1af16,https://biolit.fr/observations/observation-208c9679-5e05-41ae-9104-e85e58f1af16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lys des sables.JPG,,FALSE, +N1,26300,sortie-4ce1db86-76e6-4888-a42e-f9902600e228,https://biolit.fr/sorties/sortie-4ce1db86-76e6-4888-a42e-f9902600e228/,Marine,,5/19/2015 0:00,9.0000000,10.0000000,43.273244000000,5.362813000000,,Corniche Kennedy,26120,observation-4ce1db86-76e6-4888-a42e-f9902600e228,https://biolit.fr/observations/observation-4ce1db86-76e6-4888-a42e-f9902600e228/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0007_2-scaled.jpg,,TRUE, +N1,26301,sortie-3e375acd-0498-4e1f-a43c-b95a350eccf5,https://biolit.fr/sorties/sortie-3e375acd-0498-4e1f-a43c-b95a350eccf5/,Malori,,5/24/2015 0:00,12.0000000,12.0000000,43.280305000000,5.352793000000,,Anse de la fausse monnaie,26122,observation-3e375acd-0498-4e1f-a43c-b95a350eccf5,https://biolit.fr/observations/observation-3e375acd-0498-4e1f-a43c-b95a350eccf5/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/11022517_10155487940450408_4960961901641815163_o.jpg,,TRUE, +N1,26302,sortie-b8de20b6-c1f5-4ea0-ac08-97b717fd6d9d,https://biolit.fr/sorties/sortie-b8de20b6-c1f5-4ea0-ac08-97b717fd6d9d/,Marine,,5/22/2015 0:00,15.0000000,18.0000000,43.419925000000,5.173900000000,,Le Lido du Jaï,26124,observation-b8de20b6-c1f5-4ea0-ac08-97b717fd6d9d,https://biolit.fr/observations/observation-b8de20b6-c1f5-4ea0-ac08-97b717fd6d9d/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0634-scaled.jpg,,FALSE, +N1,26303,sortie-b2fa53c1-995d-479a-ab03-19fb32d4b1d4,https://biolit.fr/sorties/sortie-b2fa53c1-995d-479a-ab03-19fb32d4b1d4/,ugomad,,5/21/2015 0:00,14.0000000,15.0000000,43.278642000000,5.353452000000,,"Marégraphe, Corniche Kennedy, Marseille",26126,observation-b2fa53c1-995d-479a-ab03-19fb32d4b1d4,https://biolit.fr/observations/observation-b2fa53c1-995d-479a-ab03-19fb32d4b1d4/,Pallenis maritima,Astérolide maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8328-scaled.jpg,,TRUE, +N1,26303,sortie-b2fa53c1-995d-479a-ab03-19fb32d4b1d4,https://biolit.fr/sorties/sortie-b2fa53c1-995d-479a-ab03-19fb32d4b1d4/,ugomad,,5/21/2015 0:00,14.0000000,15.0000000,43.278642000000,5.353452000000,,"Marégraphe, Corniche Kennedy, Marseille",26128,observation-b2fa53c1-995d-479a-ab03-19fb32d4b1d4-2,https://biolit.fr/observations/observation-b2fa53c1-995d-479a-ab03-19fb32d4b1d4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8330-scaled.jpg,,FALSE, +N1,26304,sortie-474bfeae-4378-44d3-a1d1-31b701f1713f,https://biolit.fr/sorties/sortie-474bfeae-4378-44d3-a1d1-31b701f1713f/,ugomad,,5/20/2015 0:00,16.0000000,16.0:45,43.28032900000,5.352750000000,,"Anse de la Fausse Monnaie, Marseille",26130,observation-474bfeae-4378-44d3-a1d1-31b701f1713f,https://biolit.fr/observations/observation-474bfeae-4378-44d3-a1d1-31b701f1713f/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8267-scaled.jpg,,TRUE, +N1,26304,sortie-474bfeae-4378-44d3-a1d1-31b701f1713f,https://biolit.fr/sorties/sortie-474bfeae-4378-44d3-a1d1-31b701f1713f/,ugomad,,5/20/2015 0:00,16.0000000,16.0:45,43.28032900000,5.352750000000,,"Anse de la Fausse Monnaie, Marseille",26132,observation-474bfeae-4378-44d3-a1d1-31b701f1713f-2,https://biolit.fr/observations/observation-474bfeae-4378-44d3-a1d1-31b701f1713f-2/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8268-scaled.jpg,,TRUE, +N1,26304,sortie-474bfeae-4378-44d3-a1d1-31b701f1713f,https://biolit.fr/sorties/sortie-474bfeae-4378-44d3-a1d1-31b701f1713f/,ugomad,,5/20/2015 0:00,16.0000000,16.0:45,43.28032900000,5.352750000000,,"Anse de la Fausse Monnaie, Marseille",26134,observation-474bfeae-4378-44d3-a1d1-31b701f1713f-3,https://biolit.fr/observations/observation-474bfeae-4378-44d3-a1d1-31b701f1713f-3/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8269-scaled.jpg,,TRUE, +N1,26305,sortie-0edf27d4-306b-46b3-bb98-2e96c6a2441e,https://biolit.fr/sorties/sortie-0edf27d4-306b-46b3-bb98-2e96c6a2441e/,Marine,,05/09/2015,16.0000000,18.0000000,43.096313000000,6.020437000000,,Plage du Pradet,26136,observation-0edf27d4-306b-46b3-bb98-2e96c6a2441e,https://biolit.fr/observations/observation-0edf27d4-306b-46b3-bb98-2e96c6a2441e/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9713_2-scaled.jpg,,TRUE, +N1,26305,sortie-0edf27d4-306b-46b3-bb98-2e96c6a2441e,https://biolit.fr/sorties/sortie-0edf27d4-306b-46b3-bb98-2e96c6a2441e/,Marine,,05/09/2015,16.0000000,18.0000000,43.096313000000,6.020437000000,,Plage du Pradet,26138,observation-0edf27d4-306b-46b3-bb98-2e96c6a2441e-2,https://biolit.fr/observations/observation-0edf27d4-306b-46b3-bb98-2e96c6a2441e-2/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9714_2-scaled.jpg,,TRUE, +N1,26306,sortie-46639a9c-8a68-43bc-9d2c-4c743ae4e5b9,https://biolit.fr/sorties/sortie-46639a9c-8a68-43bc-9d2c-4c743ae4e5b9/,Céline,,11/16/2014 0:00,15.0:15,16.0:15,43.331404000000,5.071321000000,,Plage de Ste Croix,26140,observation-46639a9c-8a68-43bc-9d2c-4c743ae4e5b9,https://biolit.fr/observations/observation-46639a9c-8a68-43bc-9d2c-4c743ae4e5b9/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/DSCN8414-scaled.jpg,,TRUE, +N1,26306,sortie-46639a9c-8a68-43bc-9d2c-4c743ae4e5b9,https://biolit.fr/sorties/sortie-46639a9c-8a68-43bc-9d2c-4c743ae4e5b9/,Céline,,11/16/2014 0:00,15.0:15,16.0:15,43.331404000000,5.071321000000,,Plage de Ste Croix,26142,observation-46639a9c-8a68-43bc-9d2c-4c743ae4e5b9-2,https://biolit.fr/observations/observation-46639a9c-8a68-43bc-9d2c-4c743ae4e5b9-2/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/DSCN8416-scaled.jpg,,TRUE, +N1,26307,sortie-ea2a3d83-a3f5-4990-a6cc-68f363a52cfc,https://biolit.fr/sorties/sortie-ea2a3d83-a3f5-4990-a6cc-68f363a52cfc/,Marine,,09/03/2014,9.0000000,10.0000000,43.282341000000,5.348691000000,,Malmousque,26145,observation-ea2a3d83-a3f5-4990-a6cc-68f363a52cfc,https://biolit.fr/observations/observation-ea2a3d83-a3f5-4990-a6cc-68f363a52cfc/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9019-scaled.jpg,,TRUE, +N1,26307,sortie-ea2a3d83-a3f5-4990-a6cc-68f363a52cfc,https://biolit.fr/sorties/sortie-ea2a3d83-a3f5-4990-a6cc-68f363a52cfc/,Marine,,09/03/2014,9.0000000,10.0000000,43.282341000000,5.348691000000,,Malmousque,26147,observation-ea2a3d83-a3f5-4990-a6cc-68f363a52cfc-2,https://biolit.fr/observations/observation-ea2a3d83-a3f5-4990-a6cc-68f363a52cfc-2/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9020-scaled.jpg,,TRUE, +N1,26308,sortie-d289172c-ac25-4d0a-8819-dd711f428b3f,https://biolit.fr/sorties/sortie-d289172c-ac25-4d0a-8819-dd711f428b3f/,Observe la nature,,09/08/2014,17.0000000,18.0000000,41.338764000000,9.253604000000,,Iles Lavezzi,26149,observation-d289172c-ac25-4d0a-8819-dd711f428b3f,https://biolit.fr/observations/observation-d289172c-ac25-4d0a-8819-dd711f428b3f/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/C VU CRISTE DSC02949.jpg,,TRUE, +N1,26309,sortie-420153e9-2cc7-4117-9907-3b8f7c744d36,https://biolit.fr/sorties/sortie-420153e9-2cc7-4117-9907-3b8f7c744d36/,Observe la nature,,09/05/2014,19.0000000,20.0000000,41.735533000000,8.785151000000,,Cupabia en Corse,26151,observation-420153e9-2cc7-4117-9907-3b8f7c744d36,https://biolit.fr/observations/observation-420153e9-2cc7-4117-9907-3b8f7c744d36/,Carpobrotus edulis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/C IMGP4991.jpg,,TRUE, +N1,26310,sortie-a10f7410-c1a3-4175-8fca-af9bbb35efb4,https://biolit.fr/sorties/sortie-a10f7410-c1a3-4175-8fca-af9bbb35efb4/,Observe la nature,,09/05/2014,17.0000000,18.0000000,41.338007000000,9.257241000000,,Iles Lavezzi,26153,observation-a10f7410-c1a3-4175-8fca-af9bbb35efb4,https://biolit.fr/observations/observation-a10f7410-c1a3-4175-8fca-af9bbb35efb4/,Carpobrotus edulis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/C GRIF LAVEZI DSC02877.jpg,,TRUE, +N1,26310,sortie-a10f7410-c1a3-4175-8fca-af9bbb35efb4,https://biolit.fr/sorties/sortie-a10f7410-c1a3-4175-8fca-af9bbb35efb4/,Observe la nature,,09/05/2014,17.0000000,18.0000000,41.338007000000,9.257241000000,,Iles Lavezzi,26155,observation-a10f7410-c1a3-4175-8fca-af9bbb35efb4-2,https://biolit.fr/observations/observation-a10f7410-c1a3-4175-8fca-af9bbb35efb4-2/,Carpobrotus edulis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/C grif lavezi DSC02878.jpg,,TRUE, +N1,26311,sortie-4d05feb7-6f45-4064-a67c-11ce8d85753f,https://biolit.fr/sorties/sortie-4d05feb7-6f45-4064-a67c-11ce8d85753f/,Observe la nature,,09/04/2014,17.0000000,18.0000000,42.350011000000,8.613930000000,,Girolata en Corse,26157,observation-4d05feb7-6f45-4064-a67c-11ce8d85753f,https://biolit.fr/observations/observation-4d05feb7-6f45-4064-a67c-11ce8d85753f/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/C PAVOT GIROLATA DSC02510.jpg,,TRUE, +N1,26311,sortie-4d05feb7-6f45-4064-a67c-11ce8d85753f,https://biolit.fr/sorties/sortie-4d05feb7-6f45-4064-a67c-11ce8d85753f/,Observe la nature,,09/04/2014,17.0000000,18.0000000,42.350011000000,8.613930000000,,Girolata en Corse,26159,observation-4d05feb7-6f45-4064-a67c-11ce8d85753f-2,https://biolit.fr/observations/observation-4d05feb7-6f45-4064-a67c-11ce8d85753f-2/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/C PAVOT DSC02511.jpg,,TRUE, +N1,26311,sortie-4d05feb7-6f45-4064-a67c-11ce8d85753f,https://biolit.fr/sorties/sortie-4d05feb7-6f45-4064-a67c-11ce8d85753f/,Observe la nature,,09/04/2014,17.0000000,18.0000000,42.350011000000,8.613930000000,,Girolata en Corse,26161,observation-4d05feb7-6f45-4064-a67c-11ce8d85753f-3,https://biolit.fr/observations/observation-4d05feb7-6f45-4064-a67c-11ce8d85753f-3/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/C PAVOT GIROLATA DSC02510_0.jpg,,TRUE, +N1,26312,sortie-e231b5b8-1094-42b9-82f6-56c648a6722f,https://biolit.fr/sorties/sortie-e231b5b8-1094-42b9-82f6-56c648a6722f/,Observe la nature,,8/30/2014 0:00,10.0000000,11.0000000,42.555608000000,8.767395000000,,CORSE Calvi,26163,observation-e231b5b8-1094-42b9-82f6-56c648a6722f,https://biolit.fr/observations/observation-e231b5b8-1094-42b9-82f6-56c648a6722f/,Carpobrotus acinaciformis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/C DSC02311 GRIFFE CALVI.jpg,,TRUE,Identifiable +N1,26312,sortie-e231b5b8-1094-42b9-82f6-56c648a6722f,https://biolit.fr/sorties/sortie-e231b5b8-1094-42b9-82f6-56c648a6722f/,Observe la nature,,8/30/2014 0:00,10.0000000,11.0000000,42.555608000000,8.767395000000,,CORSE Calvi,26165,observation-e231b5b8-1094-42b9-82f6-56c648a6722f-2,https://biolit.fr/observations/observation-e231b5b8-1094-42b9-82f6-56c648a6722f-2/,Carpobrotus edulis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/C DSC02309 CALVI GRIFFES DE SOR.jpg,,TRUE, +N1,26312,sortie-e231b5b8-1094-42b9-82f6-56c648a6722f,https://biolit.fr/sorties/sortie-e231b5b8-1094-42b9-82f6-56c648a6722f/,Observe la nature,,8/30/2014 0:00,10.0000000,11.0000000,42.555608000000,8.767395000000,,CORSE Calvi,26167,observation-e231b5b8-1094-42b9-82f6-56c648a6722f-3,https://biolit.fr/observations/observation-e231b5b8-1094-42b9-82f6-56c648a6722f-3/,Carpobrotus edulis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/C DSC02310 CALVI GRIFFE de sorciere.jpg,,TRUE, +N1,26313,sortie-c81d96c4-d01c-4699-aba9-a245f7cb7ac7,https://biolit.fr/sorties/sortie-c81d96c4-d01c-4699-aba9-a245f7cb7ac7/,Observe la nature,,8/26/2014 0:00,17.0000000,18.0000000,43.516096000000,7.04376400000,,îles de Lérins sur île Marguerite ,26169,observation-c81d96c4-d01c-4699-aba9-a245f7cb7ac7,https://biolit.fr/observations/observation-c81d96c4-d01c-4699-aba9-a245f7cb7ac7/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/C CRISTE LERINS DSC01727.jpg,,TRUE, +N1,26314,sortie-40d20da4-1453-41f8-a6e2-7087f572908d,https://biolit.fr/sorties/sortie-40d20da4-1453-41f8-a6e2-7087f572908d/,Observe la nature,,08/09/2014,11.0000000,12.0000000,43.271267000000,5.300581000000,,Iles du Frioul,26171,observation-40d20da4-1453-41f8-a6e2-7087f572908d,https://biolit.fr/observations/observation-40d20da4-1453-41f8-a6e2-7087f572908d/,Pancratium maritimum,Lis de mer,,https://biolit.fr/wp-content/uploads/2023/07/C LIS PLUSIEURS FRIOUL VIMGP4848.jpg,,TRUE, +N1,26314,sortie-40d20da4-1453-41f8-a6e2-7087f572908d,https://biolit.fr/sorties/sortie-40d20da4-1453-41f8-a6e2-7087f572908d/,Observe la nature,,08/09/2014,11.0000000,12.0000000,43.271267000000,5.300581000000,,Iles du Frioul,26173,observation-40d20da4-1453-41f8-a6e2-7087f572908d-2,https://biolit.fr/observations/observation-40d20da4-1453-41f8-a6e2-7087f572908d-2/,Pancratium maritimum,Lis de mer,,https://biolit.fr/wp-content/uploads/2023/07/C LIS FRIOUL IMGP4843.jpg,,TRUE, +N1,26314,sortie-40d20da4-1453-41f8-a6e2-7087f572908d,https://biolit.fr/sorties/sortie-40d20da4-1453-41f8-a6e2-7087f572908d/,Observe la nature,,08/09/2014,11.0000000,12.0000000,43.271267000000,5.300581000000,,Iles du Frioul,26175,observation-40d20da4-1453-41f8-a6e2-7087f572908d-3,https://biolit.fr/observations/observation-40d20da4-1453-41f8-a6e2-7087f572908d-3/,Pancratium maritimum,Lis de mer,,https://biolit.fr/wp-content/uploads/2023/07/C LIS GRAINES IMGP4845.jpg,,TRUE, +N1,26315,sortie-d5920fd2-0a2f-4de6-87e0-3c4e703c14d7,https://biolit.fr/sorties/sortie-d5920fd2-0a2f-4de6-87e0-3c4e703c14d7/,AIEJE,,8/20/2014 0:00,9.0000000,15.0000000,43.358752000000,5.294117000000,,Plages de Corbières,26177,observation-d5920fd2-0a2f-4de6-87e0-3c4e703c14d7,https://biolit.fr/observations/observation-d5920fd2-0a2f-4de6-87e0-3c4e703c14d7/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20140818_140627.jpg,,TRUE, +N1,26316,sortie-e3fec488-7f71-45fa-91e6-0d3433c38d75,https://biolit.fr/sorties/sortie-e3fec488-7f71-45fa-91e6-0d3433c38d75/,AIEJE,,08/12/2014,11.0000000,12.0000000,43.443423000000,5.054252000000,,Parc de Figuerolles - Etang de Berre,26179,observation-e3fec488-7f71-45fa-91e6-0d3433c38d75,https://biolit.fr/observations/observation-e3fec488-7f71-45fa-91e6-0d3433c38d75/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20140812_112344.jpg,,TRUE, +N1,26317,sortie-d46e3162-3978-42f5-a46a-0a2c3e9e7e7d,https://biolit.fr/sorties/sortie-d46e3162-3978-42f5-a46a-0a2c3e9e7e7d/,AIEJE,,7/31/2014 0:00,14.0000000,16.0000000,43.340293000000,5.260428000000,,La Vesse,26181,observation-d46e3162-3978-42f5-a46a-0a2c3e9e7e7d,https://biolit.fr/observations/observation-d46e3162-3978-42f5-a46a-0a2c3e9e7e7d/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20140729_160923.jpg,,TRUE, +N1,26318,sortie-45e5acd2-dbc2-4e45-be16-2cbcb7d9f486,https://biolit.fr/sorties/sortie-45e5acd2-dbc2-4e45-be16-2cbcb7d9f486/,Observe la nature,,7/29/2014 0:00,15.0000000,15.0000000,43.447929000000,3.656255000000,,Bouzigues,26183,observation-45e5acd2-dbc2-4e45-be16-2cbcb7d9f486,https://biolit.fr/observations/observation-45e5acd2-dbc2-4e45-be16-2cbcb7d9f486/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/C CRISTE B.jpg,,TRUE, +N1,26318,sortie-45e5acd2-dbc2-4e45-be16-2cbcb7d9f486,https://biolit.fr/sorties/sortie-45e5acd2-dbc2-4e45-be16-2cbcb7d9f486/,Observe la nature,,7/29/2014 0:00,15.0000000,15.0000000,43.447929000000,3.656255000000,,Bouzigues,26185,observation-45e5acd2-dbc2-4e45-be16-2cbcb7d9f486-2,https://biolit.fr/observations/observation-45e5acd2-dbc2-4e45-be16-2cbcb7d9f486-2/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/C coupolle.jpg,,TRUE, +N1,26318,sortie-45e5acd2-dbc2-4e45-be16-2cbcb7d9f486,https://biolit.fr/sorties/sortie-45e5acd2-dbc2-4e45-be16-2cbcb7d9f486/,Observe la nature,,7/29/2014 0:00,15.0000000,15.0000000,43.447929000000,3.656255000000,,Bouzigues,26187,observation-45e5acd2-dbc2-4e45-be16-2cbcb7d9f486-3,https://biolit.fr/observations/observation-45e5acd2-dbc2-4e45-be16-2cbcb7d9f486-3/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/C criste feuille.jpg,,TRUE, +N1,26319,sortie-070813f4-cd04-4210-a8f2-78311420c837,https://biolit.fr/sorties/sortie-070813f4-cd04-4210-a8f2-78311420c837/,AIEJE,,7/24/2014 0:00,9.0000000,10.0000000,43.326619000000,5.151715000000,,Carry le rouet,26189,observation-070813f4-cd04-4210-a8f2-78311420c837,https://biolit.fr/observations/observation-070813f4-cd04-4210-a8f2-78311420c837/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20140724_094726.jpg,,TRUE, +N1,26320,sortie-646a5ad8-4cf3-4266-98bc-027d8783eff8,https://biolit.fr/sorties/sortie-646a5ad8-4cf3-4266-98bc-027d8783eff8/,AIEJE,,07/04/2014,10.0000000,12.0000000,43.329680000000,5.22068800000,,Chemin des Douaniers,26191,observation-646a5ad8-4cf3-4266-98bc-027d8783eff8,https://biolit.fr/observations/observation-646a5ad8-4cf3-4266-98bc-027d8783eff8/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20140704_103147[2].jpg,,TRUE, +N1,26321,sortie-728f8dd7-90a2-43b2-946e-add3b4a66163,https://biolit.fr/sorties/sortie-728f8dd7-90a2-43b2-946e-add3b4a66163/,Laurent Debas,,6/30/2014 0:00,9.0000000,11.0000000,43.210035000000,5.419992000000,,Marseille - Calanque de Sormiou,26193,observation-728f8dd7-90a2-43b2-946e-add3b4a66163,https://biolit.fr/observations/observation-728f8dd7-90a2-43b2-946e-add3b4a66163/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0061_0-scaled.jpg,,TRUE, +N1,26321,sortie-728f8dd7-90a2-43b2-946e-add3b4a66163,https://biolit.fr/sorties/sortie-728f8dd7-90a2-43b2-946e-add3b4a66163/,Laurent Debas,,6/30/2014 0:00,9.0000000,11.0000000,43.210035000000,5.419992000000,,Marseille - Calanque de Sormiou,26195,observation-728f8dd7-90a2-43b2-946e-add3b4a66163-2,https://biolit.fr/observations/observation-728f8dd7-90a2-43b2-946e-add3b4a66163-2/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0069-scaled.jpg,,TRUE, +N1,26322,sortie-edddb06b-d45e-433a-ab56-1d2c30fec2ca,https://biolit.fr/sorties/sortie-edddb06b-d45e-433a-ab56-1d2c30fec2ca/,Marine,,6/13/2014 0:00,14.0000000,16.0000000,43.328599000000,5.220270000000,,Cap Méjean,26197,observation-edddb06b-d45e-433a-ab56-1d2c30fec2ca,https://biolit.fr/observations/observation-edddb06b-d45e-433a-ab56-1d2c30fec2ca/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20140613_150958[1].jpg,,TRUE, +N1,26323,sortie-8eef62df-6543-4d7d-9024-c9ece0a8fef4,https://biolit.fr/sorties/sortie-8eef62df-6543-4d7d-9024-c9ece0a8fef4/,Marine,,5/29/2014 0:00,10.0000000,11.0000000,43.094449000000,6.0237040000,,plage du Pradet,26199,observation-8eef62df-6543-4d7d-9024-c9ece0a8fef4,https://biolit.fr/observations/observation-8eef62df-6543-4d7d-9024-c9ece0a8fef4/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8392-scaled.jpg,,TRUE, +N1,26323,sortie-8eef62df-6543-4d7d-9024-c9ece0a8fef4,https://biolit.fr/sorties/sortie-8eef62df-6543-4d7d-9024-c9ece0a8fef4/,Marine,,5/29/2014 0:00,10.0000000,11.0000000,43.094449000000,6.0237040000,,plage du Pradet,26201,observation-8eef62df-6543-4d7d-9024-c9ece0a8fef4-2,https://biolit.fr/observations/observation-8eef62df-6543-4d7d-9024-c9ece0a8fef4-2/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8393-scaled.jpg,,TRUE, +N1,26324,sortie-e5baed62-6b0f-44a1-8c32-144d6c19dc7d,https://biolit.fr/sorties/sortie-e5baed62-6b0f-44a1-8c32-144d6c19dc7d/,Marine,,5/23/2014 0:00,11.0000000,12.0000000,43.331364000000,5.203310000000,,Calanques des Anthénors,26203,observation-e5baed62-6b0f-44a1-8c32-144d6c19dc7d,https://biolit.fr/observations/observation-e5baed62-6b0f-44a1-8c32-144d6c19dc7d/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20140523_115458.jpg,,TRUE, +N1,26325,sortie-168badcc-8b0f-4767-894f-0f7db0cf41b4,https://biolit.fr/sorties/sortie-168badcc-8b0f-4767-894f-0f7db0cf41b4/,Marine,,5/22/2014 0:00,11.0000000,12.0000000,43.333937000000,5.197739000000,,Plage des Pébraïres,26205,observation-168badcc-8b0f-4767-894f-0f7db0cf41b4,https://biolit.fr/observations/observation-168badcc-8b0f-4767-894f-0f7db0cf41b4/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20140522_113543.jpg,,TRUE, +N1,26872,sortie-236f2b90-7583-470f-b0b3-46a55d586bb5,https://biolit.fr/sorties/sortie-236f2b90-7583-470f-b0b3-46a55d586bb5/,AILERONS,,5/25/2023 0:00,19.0000000,21.0000000,43.417342000000,3.593958000000,Ailerons,Plage de la Conque,26326,observation-236f2b90-7583-470f-b0b3-46a55d586bb5,https://biolit.fr/observations/observation-236f2b90-7583-470f-b0b3-46a55d586bb5/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20230525_154336.jpg,,TRUE, +N1,26872,sortie-236f2b90-7583-470f-b0b3-46a55d586bb5,https://biolit.fr/sorties/sortie-236f2b90-7583-470f-b0b3-46a55d586bb5/,AILERONS,,5/25/2023 0:00,19.0000000,21.0000000,43.417342000000,3.593958000000,Ailerons,Plage de la Conque,26328,observation-236f2b90-7583-470f-b0b3-46a55d586bb5-2,https://biolit.fr/observations/observation-236f2b90-7583-470f-b0b3-46a55d586bb5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230615_185754.jpg,,FALSE, +N1,26873,sortie-cc77e094-50a5-4ed2-bb8f-7cab8b418c00,https://biolit.fr/sorties/sortie-cc77e094-50a5-4ed2-bb8f-7cab8b418c00/,LABELBLEU,,5/27/2023 0:00,14.0000000,16.0000000,42.502058000000,3.124811000000,,Site classé de l'anse de Paulilles,26330,observation-cc77e094-50a5-4ed2-bb8f-7cab8b418c00,https://biolit.fr/observations/observation-cc77e094-50a5-4ed2-bb8f-7cab8b418c00/,,,,https://biolit.fr/wp-content/uploads/2023/07/Design sans titre-scaled.jpg,,FALSE, +N1,26874,sortie-8e7ace7a-b4b4-46c4-bd4a-9b0158df7e43,https://biolit.fr/sorties/sortie-8e7ace7a-b4b4-46c4-bd4a-9b0158df7e43/,AILERONS,,5/20/2023 0:00,9.0000000,11.0000000,43.524817000000,3.927327000000,Ailerons,Palavas,26332,observation-8e7ace7a-b4b4-46c4-bd4a-9b0158df7e43,https://biolit.fr/observations/observation-8e7ace7a-b4b4-46c4-bd4a-9b0158df7e43/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230520_104531-scaled.jpg,,FALSE, +N1,26875,sortie-b58a2cdb-08b8-48c2-bfc2-4880bd4371af,https://biolit.fr/sorties/sortie-b58a2cdb-08b8-48c2-bfc2-4880bd4371af/,AILERONS,,5/13/2023 0:00,10.0000000,12.0000000,43.541881000000,3.971004000000,Ailerons,Plage de Carnon,26334,observation-b58a2cdb-08b8-48c2-bfc2-4880bd4371af,https://biolit.fr/observations/observation-b58a2cdb-08b8-48c2-bfc2-4880bd4371af/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230513_115059-scaled.jpg,,FALSE, +N1,26876,sortie-9f033016-0303-4f7f-b1b8-31e0f2a3d287,https://biolit.fr/sorties/sortie-9f033016-0303-4f7f-b1b8-31e0f2a3d287/,LPO Occitanie - Aude,,1/28/2023 0:00,18.0000000,20.0000000,42.886416000000,3.051350000000,LPO Occitanie (Dt Aude),Leucate,26336,observation-9f033016-0303-4f7f-b1b8-31e0f2a3d287,https://biolit.fr/observations/observation-9f033016-0303-4f7f-b1b8-31e0f2a3d287/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20230421180317.jpg,,FALSE, +N1,26876,sortie-9f033016-0303-4f7f-b1b8-31e0f2a3d287,https://biolit.fr/sorties/sortie-9f033016-0303-4f7f-b1b8-31e0f2a3d287/,LPO Occitanie - Aude,,1/28/2023 0:00,18.0000000,20.0000000,42.886416000000,3.051350000000,LPO Occitanie (Dt Aude),Leucate,26338,observation-9f033016-0303-4f7f-b1b8-31e0f2a3d287-2,https://biolit.fr/observations/observation-9f033016-0303-4f7f-b1b8-31e0f2a3d287-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20230421180505.jpg,,FALSE, +N1,26876,sortie-9f033016-0303-4f7f-b1b8-31e0f2a3d287,https://biolit.fr/sorties/sortie-9f033016-0303-4f7f-b1b8-31e0f2a3d287/,LPO Occitanie - Aude,,1/28/2023 0:00,18.0000000,20.0000000,42.886416000000,3.051350000000,LPO Occitanie (Dt Aude),Leucate,26340,observation-9f033016-0303-4f7f-b1b8-31e0f2a3d287-3,https://biolit.fr/observations/observation-9f033016-0303-4f7f-b1b8-31e0f2a3d287-3/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230128_104351-scaled.jpg,,TRUE, +N1,26877,sortie-b81c123a-14c9-4d15-8434-5c835ddfebe8,https://biolit.fr/sorties/sortie-b81c123a-14c9-4d15-8434-5c835ddfebe8/,LPO Occitanie - Aude,,2/18/2023 0:00,10.0000000,12.0000000,43.012197000000,3.063152000000,LPO Occitanie (Dt Aude),Port la nouvelle,26342,observation-b81c123a-14c9-4d15-8434-5c835ddfebe8,https://biolit.fr/observations/observation-b81c123a-14c9-4d15-8434-5c835ddfebe8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20230421180038.jpg,,FALSE, +N1,26877,sortie-b81c123a-14c9-4d15-8434-5c835ddfebe8,https://biolit.fr/sorties/sortie-b81c123a-14c9-4d15-8434-5c835ddfebe8/,LPO Occitanie - Aude,,2/18/2023 0:00,10.0000000,12.0000000,43.012197000000,3.063152000000,LPO Occitanie (Dt Aude),Port la nouvelle,26344,observation-b81c123a-14c9-4d15-8434-5c835ddfebe8-2,https://biolit.fr/observations/observation-b81c123a-14c9-4d15-8434-5c835ddfebe8-2/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/1677064466634.jpg,,TRUE, +N1,26877,sortie-b81c123a-14c9-4d15-8434-5c835ddfebe8,https://biolit.fr/sorties/sortie-b81c123a-14c9-4d15-8434-5c835ddfebe8/,LPO Occitanie - Aude,,2/18/2023 0:00,10.0000000,12.0000000,43.012197000000,3.063152000000,LPO Occitanie (Dt Aude),Port la nouvelle,26346,observation-b81c123a-14c9-4d15-8434-5c835ddfebe8-3,https://biolit.fr/observations/observation-b81c123a-14c9-4d15-8434-5c835ddfebe8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20230421180114.jpg,,FALSE, +N1,26878,sortie-d9056f9a-14b2-4455-a06b-03c1a73d344e,https://biolit.fr/sorties/sortie-d9056f9a-14b2-4455-a06b-03c1a73d344e/,LPO Occitanie - Aude,,3/15/2023 0:00,14.0000000,16.0000000,43.117205000000,3.129670000000,LPO Occitanie (Dt Aude),"Gruissan, plage de mateille",26348,observation-d9056f9a-14b2-4455-a06b-03c1a73d344e,https://biolit.fr/observations/observation-d9056f9a-14b2-4455-a06b-03c1a73d344e/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20230421175838.jpg,,FALSE, +N1,26879,sortie-b443c6ea-5290-4ebd-8283-9c5c3f42a68d,https://biolit.fr/sorties/sortie-b443c6ea-5290-4ebd-8283-9c5c3f42a68d/,LPO Occitanie - Aude,,04/12/2023,14.0000000,16.0000000,43.169428000000,3.183624000000,LPO Occitanie (Dt Aude),Saint pierre la mer,26350,observation-b443c6ea-5290-4ebd-8283-9c5c3f42a68d,https://biolit.fr/observations/observation-b443c6ea-5290-4ebd-8283-9c5c3f42a68d/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG20230412151042_0-scaled.jpg,,TRUE, +N1,26879,sortie-b443c6ea-5290-4ebd-8283-9c5c3f42a68d,https://biolit.fr/sorties/sortie-b443c6ea-5290-4ebd-8283-9c5c3f42a68d/,LPO Occitanie - Aude,,04/12/2023,14.0000000,16.0000000,43.169428000000,3.183624000000,LPO Occitanie (Dt Aude),Saint pierre la mer,26352,observation-b443c6ea-5290-4ebd-8283-9c5c3f42a68d-2,https://biolit.fr/observations/observation-b443c6ea-5290-4ebd-8283-9c5c3f42a68d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20230412151716-scaled.jpg,,FALSE, +N1,26879,sortie-b443c6ea-5290-4ebd-8283-9c5c3f42a68d,https://biolit.fr/sorties/sortie-b443c6ea-5290-4ebd-8283-9c5c3f42a68d/,LPO Occitanie - Aude,,04/12/2023,14.0000000,16.0000000,43.169428000000,3.183624000000,LPO Occitanie (Dt Aude),Saint pierre la mer,26354,observation-b443c6ea-5290-4ebd-8283-9c5c3f42a68d-3,https://biolit.fr/observations/observation-b443c6ea-5290-4ebd-8283-9c5c3f42a68d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20230414171849-scaled.jpg,,FALSE, +N1,26880,sortie-f6b19836-c2d0-4afe-aeb0-15330003d35c,https://biolit.fr/sorties/sortie-f6b19836-c2d0-4afe-aeb0-15330003d35c/,Club subaquatique Narbonnais,,3/25/2023 0:00,10.0000000,11.0000000,43.167949000000,3.179913000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne plage,26356,observation-f6b19836-c2d0-4afe-aeb0-15330003d35c,https://biolit.fr/observations/observation-f6b19836-c2d0-4afe-aeb0-15330003d35c/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6598.JPG,,FALSE, +N1,26880,sortie-f6b19836-c2d0-4afe-aeb0-15330003d35c,https://biolit.fr/sorties/sortie-f6b19836-c2d0-4afe-aeb0-15330003d35c/,Club subaquatique Narbonnais,,3/25/2023 0:00,10.0000000,11.0000000,43.167949000000,3.179913000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne plage,26358,observation-f6b19836-c2d0-4afe-aeb0-15330003d35c-2,https://biolit.fr/observations/observation-f6b19836-c2d0-4afe-aeb0-15330003d35c-2/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_6608_0.JPG,,TRUE, +N1,26881,sortie-9957912c-2516-4804-96ed-ee91d8f8b112,https://biolit.fr/sorties/sortie-9957912c-2516-4804-96ed-ee91d8f8b112/,AILERONS,,3/18/2023 0:00,10.0000000,12.0000000,43.525027000000,3.928010000000,Ailerons,Palavas-Les-Flôts,26360,observation-9957912c-2516-4804-96ed-ee91d8f8b112,https://biolit.fr/observations/observation-9957912c-2516-4804-96ed-ee91d8f8b112/,,,,https://biolit.fr/wp-content/uploads/2023/07/feuille_biolit_18-03-23.jpg,,FALSE, +N1,26881,sortie-9957912c-2516-4804-96ed-ee91d8f8b112,https://biolit.fr/sorties/sortie-9957912c-2516-4804-96ed-ee91d8f8b112/,AILERONS,,3/18/2023 0:00,10.0000000,12.0000000,43.525027000000,3.928010000000,Ailerons,Palavas-Les-Flôts,26362,observation-9957912c-2516-4804-96ed-ee91d8f8b112-2,https://biolit.fr/observations/observation-9957912c-2516-4804-96ed-ee91d8f8b112-2/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/336350161_1392455868179663_4909182647477761488_n (1).jpg,,TRUE,Identifiable +N1,26881,sortie-9957912c-2516-4804-96ed-ee91d8f8b112,https://biolit.fr/sorties/sortie-9957912c-2516-4804-96ed-ee91d8f8b112/,AILERONS,,3/18/2023 0:00,10.0000000,12.0000000,43.525027000000,3.928010000000,Ailerons,Palavas-Les-Flôts,26364,observation-9957912c-2516-4804-96ed-ee91d8f8b112-3,https://biolit.fr/observations/observation-9957912c-2516-4804-96ed-ee91d8f8b112-3/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/336212907_1580150165829277_3163736130909872852_n (1).jpg,,TRUE,Identifiable +N1,26881,sortie-9957912c-2516-4804-96ed-ee91d8f8b112,https://biolit.fr/sorties/sortie-9957912c-2516-4804-96ed-ee91d8f8b112/,AILERONS,,3/18/2023 0:00,10.0000000,12.0000000,43.525027000000,3.928010000000,Ailerons,Palavas-Les-Flôts,26366,observation-9957912c-2516-4804-96ed-ee91d8f8b112-4,https://biolit.fr/observations/observation-9957912c-2516-4804-96ed-ee91d8f8b112-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/335682377_1039330754089945_4071618949806602401_n (1).jpg,,TRUE,non-identifiable +N1,26882,sortie-72e281d9-e64b-46e2-8b90-12c92ca32480,https://biolit.fr/sorties/sortie-72e281d9-e64b-46e2-8b90-12c92ca32480/,Marine,,3/15/2023 0:00,10.0000000,10.0000000,43.214882000000,5.342882000000,Planète Mer,Anse de la maronaise,26368,observation-72e281d9-e64b-46e2-8b90-12c92ca32480,https://biolit.fr/observations/observation-72e281d9-e64b-46e2-8b90-12c92ca32480/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230315_101446_W0AZNier4W.jpeg,,FALSE, +N1,26882,sortie-72e281d9-e64b-46e2-8b90-12c92ca32480,https://biolit.fr/sorties/sortie-72e281d9-e64b-46e2-8b90-12c92ca32480/,Marine,,3/15/2023 0:00,10.0000000,10.0000000,43.214882000000,5.342882000000,Planète Mer,Anse de la maronaise,26370,observation-72e281d9-e64b-46e2-8b90-12c92ca32480-2,https://biolit.fr/observations/observation-72e281d9-e64b-46e2-8b90-12c92ca32480-2/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230315_102534_AsyygMZO5W.jpeg,,TRUE, +N1,26882,sortie-72e281d9-e64b-46e2-8b90-12c92ca32480,https://biolit.fr/sorties/sortie-72e281d9-e64b-46e2-8b90-12c92ca32480/,Marine,,3/15/2023 0:00,10.0000000,10.0000000,43.214882000000,5.342882000000,Planète Mer,Anse de la maronaise,26372,observation-72e281d9-e64b-46e2-8b90-12c92ca32480-3,https://biolit.fr/observations/observation-72e281d9-e64b-46e2-8b90-12c92ca32480-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230315_103623_n3OT9oAE0W.jpeg,,FALSE, +N1,26882,sortie-72e281d9-e64b-46e2-8b90-12c92ca32480,https://biolit.fr/sorties/sortie-72e281d9-e64b-46e2-8b90-12c92ca32480/,Marine,,3/15/2023 0:00,10.0000000,10.0000000,43.214882000000,5.342882000000,Planète Mer,Anse de la maronaise,26374,observation-72e281d9-e64b-46e2-8b90-12c92ca32480-4,https://biolit.fr/observations/observation-72e281d9-e64b-46e2-8b90-12c92ca32480-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230315_104759_EFtZrO3C59.jpeg,,FALSE, +N1,26883,sortie-414759ad-93ce-4eaf-ae10-03acc47da179,https://biolit.fr/sorties/sortie-414759ad-93ce-4eaf-ae10-03acc47da179/,AILERONS,,03/11/2023,10.0000000,18.0000000,43.541171000000,3.971494000000,Ailerons,"Plage des Roquilles, Carnon",26376,observation-414759ad-93ce-4eaf-ae10-03acc47da179,https://biolit.fr/observations/observation-414759ad-93ce-4eaf-ae10-03acc47da179/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230311_173707.jpg,,FALSE, +N1,26883,sortie-414759ad-93ce-4eaf-ae10-03acc47da179,https://biolit.fr/sorties/sortie-414759ad-93ce-4eaf-ae10-03acc47da179/,AILERONS,,03/11/2023,10.0000000,18.0000000,43.541171000000,3.971494000000,Ailerons,"Plage des Roquilles, Carnon",26378,observation-414759ad-93ce-4eaf-ae10-03acc47da179-2,https://biolit.fr/observations/observation-414759ad-93ce-4eaf-ae10-03acc47da179-2/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/huitres_creuses-scaled.jpg,,TRUE, +N1,26883,sortie-414759ad-93ce-4eaf-ae10-03acc47da179,https://biolit.fr/sorties/sortie-414759ad-93ce-4eaf-ae10-03acc47da179/,AILERONS,,03/11/2023,10.0000000,18.0000000,43.541171000000,3.971494000000,Ailerons,"Plage des Roquilles, Carnon",26380,observation-414759ad-93ce-4eaf-ae10-03acc47da179-3,https://biolit.fr/observations/observation-414759ad-93ce-4eaf-ae10-03acc47da179-3/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/huitre_noires-scaled.jpg,,TRUE, +N1,26883,sortie-414759ad-93ce-4eaf-ae10-03acc47da179,https://biolit.fr/sorties/sortie-414759ad-93ce-4eaf-ae10-03acc47da179/,AILERONS,,03/11/2023,10.0000000,18.0000000,43.541171000000,3.971494000000,Ailerons,"Plage des Roquilles, Carnon",26382,observation-414759ad-93ce-4eaf-ae10-03acc47da179-4,https://biolit.fr/observations/observation-414759ad-93ce-4eaf-ae10-03acc47da179-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/cascail-scaled.jpg,,FALSE, +N1,26883,sortie-414759ad-93ce-4eaf-ae10-03acc47da179,https://biolit.fr/sorties/sortie-414759ad-93ce-4eaf-ae10-03acc47da179/,AILERONS,,03/11/2023,10.0000000,18.0000000,43.541171000000,3.971494000000,Ailerons,"Plage des Roquilles, Carnon",26384,observation-414759ad-93ce-4eaf-ae10-03acc47da179-5,https://biolit.fr/observations/observation-414759ad-93ce-4eaf-ae10-03acc47da179-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/groupe_fin-scaled.jpg,,TRUE,non-identifiable +N1,26884,sortie-cbbab9a3-b15e-4258-a3eb-c6522774dcea,https://biolit.fr/sorties/sortie-cbbab9a3-b15e-4258-a3eb-c6522774dcea/,AILERONS,,03/08/2023,14.0:15,20.0000000,43.525080000000,3.928721000000,Ailerons,Palavas-les-flots,26386,observation-cbbab9a3-b15e-4258-a3eb-c6522774dcea,https://biolit.fr/observations/observation-cbbab9a3-b15e-4258-a3eb-c6522774dcea/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230308_201655.jpg,,FALSE, +N1,26884,sortie-cbbab9a3-b15e-4258-a3eb-c6522774dcea,https://biolit.fr/sorties/sortie-cbbab9a3-b15e-4258-a3eb-c6522774dcea/,AILERONS,,03/08/2023,14.0:15,20.0000000,43.525080000000,3.928721000000,Ailerons,Palavas-les-flots,26388,observation-cbbab9a3-b15e-4258-a3eb-c6522774dcea-2,https://biolit.fr/observations/observation-cbbab9a3-b15e-4258-a3eb-c6522774dcea-2/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20230308_162651-scaled.jpg,,TRUE, +N1,26885,sortie-1182bb2d-9479-463d-aa7e-58f9efa1111d,https://biolit.fr/sorties/sortie-1182bb2d-9479-463d-aa7e-58f9efa1111d/,AILERONS,,03/04/2023,10.0000000,12.0000000,43.524607000000,3.92654000,CPIE Littoral d'Occitanie,Palavas,26390,observation-1182bb2d-9479-463d-aa7e-58f9efa1111d,https://biolit.fr/observations/observation-1182bb2d-9479-463d-aa7e-58f9efa1111d/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230304_114533-scaled.jpg,,FALSE, +N1,26886,sortie-d2f96cc6-72d7-4759-8ff5-a9506b8b9250,https://biolit.fr/sorties/sortie-d2f96cc6-72d7-4759-8ff5-a9506b8b9250/,AILERONS,,2/25/2023 0:00,10.0000000,12.0000000,43.541174000000,3.971237000000,CPIE Littoral d'Occitanie,Plage de Carnon,26392,observation-d2f96cc6-72d7-4759-8ff5-a9506b8b9250,https://biolit.fr/observations/observation-d2f96cc6-72d7-4759-8ff5-a9506b8b9250/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20230225_124113-scaled.jpg,,TRUE, +N1,26886,sortie-d2f96cc6-72d7-4759-8ff5-a9506b8b9250,https://biolit.fr/sorties/sortie-d2f96cc6-72d7-4759-8ff5-a9506b8b9250/,AILERONS,,2/25/2023 0:00,10.0000000,12.0000000,43.541174000000,3.971237000000,CPIE Littoral d'Occitanie,Plage de Carnon,26394,observation-d2f96cc6-72d7-4759-8ff5-a9506b8b9250-2,https://biolit.fr/observations/observation-d2f96cc6-72d7-4759-8ff5-a9506b8b9250-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230225_121812-scaled.jpg,,FALSE, +N1,26886,sortie-d2f96cc6-72d7-4759-8ff5-a9506b8b9250,https://biolit.fr/sorties/sortie-d2f96cc6-72d7-4759-8ff5-a9506b8b9250/,AILERONS,,2/25/2023 0:00,10.0000000,12.0000000,43.541174000000,3.971237000000,CPIE Littoral d'Occitanie,Plage de Carnon,26396,observation-d2f96cc6-72d7-4759-8ff5-a9506b8b9250-3,https://biolit.fr/observations/observation-d2f96cc6-72d7-4759-8ff5-a9506b8b9250-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230225_121729-scaled.jpg,,FALSE, +N1,26886,sortie-d2f96cc6-72d7-4759-8ff5-a9506b8b9250,https://biolit.fr/sorties/sortie-d2f96cc6-72d7-4759-8ff5-a9506b8b9250/,AILERONS,,2/25/2023 0:00,10.0000000,12.0000000,43.541174000000,3.971237000000,CPIE Littoral d'Occitanie,Plage de Carnon,26398,observation-d2f96cc6-72d7-4759-8ff5-a9506b8b9250-4,https://biolit.fr/observations/observation-d2f96cc6-72d7-4759-8ff5-a9506b8b9250-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230225_121635-scaled.jpg,,FALSE, +N1,26886,sortie-d2f96cc6-72d7-4759-8ff5-a9506b8b9250,https://biolit.fr/sorties/sortie-d2f96cc6-72d7-4759-8ff5-a9506b8b9250/,AILERONS,,2/25/2023 0:00,10.0000000,12.0000000,43.541174000000,3.971237000000,CPIE Littoral d'Occitanie,Plage de Carnon,26400,observation-d2f96cc6-72d7-4759-8ff5-a9506b8b9250-5,https://biolit.fr/observations/observation-d2f96cc6-72d7-4759-8ff5-a9506b8b9250-5/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20230225_191722-scaled.jpg,,TRUE, +N1,26886,sortie-d2f96cc6-72d7-4759-8ff5-a9506b8b9250,https://biolit.fr/sorties/sortie-d2f96cc6-72d7-4759-8ff5-a9506b8b9250/,AILERONS,,2/25/2023 0:00,10.0000000,12.0000000,43.541174000000,3.971237000000,CPIE Littoral d'Occitanie,Plage de Carnon,26402,observation-d2f96cc6-72d7-4759-8ff5-a9506b8b9250-6,https://biolit.fr/observations/observation-d2f96cc6-72d7-4759-8ff5-a9506b8b9250-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230227_163550-rotated.jpg,,FALSE, +N1,26887,sortie-13c31892-c21a-4216-8e85-5ccec9922bcc,https://biolit.fr/sorties/sortie-13c31892-c21a-4216-8e85-5ccec9922bcc/,Camille Benyamine,,2/16/2023 0:00,16.0000000,16.0000000,43.257343000000,5.3751670000,Planète Mer,Plage Borely,26404,observation-13c31892-c21a-4216-8e85-5ccec9922bcc,https://biolit.fr/observations/observation-13c31892-c21a-4216-8e85-5ccec9922bcc/,,,,https://biolit.fr/wp-content/uploads/2023/07/fiche obs borely.jpg,,FALSE, +N1,26887,sortie-13c31892-c21a-4216-8e85-5ccec9922bcc,https://biolit.fr/sorties/sortie-13c31892-c21a-4216-8e85-5ccec9922bcc/,Camille Benyamine,,2/16/2023 0:00,16.0000000,16.0000000,43.257343000000,5.3751670000,Planète Mer,Plage Borely,26406,observation-13c31892-c21a-4216-8e85-5ccec9922bcc-2,https://biolit.fr/observations/observation-13c31892-c21a-4216-8e85-5ccec9922bcc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/huitre borely.jpg,,FALSE, +N1,26888,sortie-b7fd603d-5c9b-47a7-bc3c-8b786ba45ed4,https://biolit.fr/sorties/sortie-b7fd603d-5c9b-47a7-bc3c-8b786ba45ed4/,Camille Benyamine,,2/16/2023 0:00,15.0000000,15.0000000,43.239903000000,5.362540000000,Planète Mer,Bain des dames,26408,observation-b7fd603d-5c9b-47a7-bc3c-8b786ba45ed4,https://biolit.fr/observations/observation-b7fd603d-5c9b-47a7-bc3c-8b786ba45ed4/,,,,https://biolit.fr/wp-content/uploads/2023/07/huitre bain des dames.jpg,,FALSE, +N1,26888,sortie-b7fd603d-5c9b-47a7-bc3c-8b786ba45ed4,https://biolit.fr/sorties/sortie-b7fd603d-5c9b-47a7-bc3c-8b786ba45ed4/,Camille Benyamine,,2/16/2023 0:00,15.0000000,15.0000000,43.239903000000,5.362540000000,Planète Mer,Bain des dames,26410,observation-b7fd603d-5c9b-47a7-bc3c-8b786ba45ed4-2,https://biolit.fr/observations/observation-b7fd603d-5c9b-47a7-bc3c-8b786ba45ed4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/fiche obs bain des dames.jpg,,FALSE, +N1,26889,sortie-58f67ede-4dab-4b6b-803a-362d8894e0c3,https://biolit.fr/sorties/sortie-58f67ede-4dab-4b6b-803a-362d8894e0c3/,AILERONS,,10/15/2022 0:00,17.0000000,17.0000000,43.528114000000,3.935102000000,Ailerons,Palavas-Les-Flots,26412,observation-58f67ede-4dab-4b6b-803a-362d8894e0c3,https://biolit.fr/observations/observation-58f67ede-4dab-4b6b-803a-362d8894e0c3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221018_083835.jpg,,FALSE, +N1,26889,sortie-58f67ede-4dab-4b6b-803a-362d8894e0c3,https://biolit.fr/sorties/sortie-58f67ede-4dab-4b6b-803a-362d8894e0c3/,AILERONS,,10/15/2022 0:00,17.0000000,17.0000000,43.528114000000,3.935102000000,Ailerons,Palavas-Les-Flots,26414,observation-58f67ede-4dab-4b6b-803a-362d8894e0c3-2,https://biolit.fr/observations/observation-58f67ede-4dab-4b6b-803a-362d8894e0c3-2/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20221015_170802-rotated.jpg,,TRUE, +N1,26889,sortie-58f67ede-4dab-4b6b-803a-362d8894e0c3,https://biolit.fr/sorties/sortie-58f67ede-4dab-4b6b-803a-362d8894e0c3/,AILERONS,,10/15/2022 0:00,17.0000000,17.0000000,43.528114000000,3.935102000000,Ailerons,Palavas-Les-Flots,26416,observation-58f67ede-4dab-4b6b-803a-362d8894e0c3-3,https://biolit.fr/observations/observation-58f67ede-4dab-4b6b-803a-362d8894e0c3-3/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20221015_165847-rotated.jpg,,TRUE,Identifiable +N1,26890,sortie-ac318d12-d895-4634-88df-e27cec750cdf,https://biolit.fr/sorties/sortie-ac318d12-d895-4634-88df-e27cec750cdf/,AILERONS,,07/02/2022,17.0:45,18.000005,43.528120000000,3.935102000000,Ailerons,Palavas-Les-Flots,,,,,,,,,, +N1,26891,sortie-9ceddff0-38ce-40bf-966c-06a0f67ff7e4,https://biolit.fr/sorties/sortie-9ceddff0-38ce-40bf-966c-06a0f67ff7e4/,Camille Benyamine,,1/25/2023 0:00,9.0000000,10.0000000,43.239905000000,5.362395000000,Planète Mer,Bain des dames,26420,observation-9ceddff0-38ce-40bf-966c-06a0f67ff7e4,https://biolit.fr/observations/observation-9ceddff0-38ce-40bf-966c-06a0f67ff7e4/,,,,https://biolit.fr/wp-content/uploads/2023/07/331068580_709323580901197_1613023781573248351_n_0.jpg,,FALSE, +N1,26891,sortie-9ceddff0-38ce-40bf-966c-06a0f67ff7e4,https://biolit.fr/sorties/sortie-9ceddff0-38ce-40bf-966c-06a0f67ff7e4/,Camille Benyamine,,1/25/2023 0:00,9.0000000,10.0000000,43.239905000000,5.362395000000,Planète Mer,Bain des dames,26422,observation-9ceddff0-38ce-40bf-966c-06a0f67ff7e4-2,https://biolit.fr/observations/observation-9ceddff0-38ce-40bf-966c-06a0f67ff7e4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/330867328_1100967354638144_96870539135830680_n.jpg,,FALSE, +N1,26891,sortie-9ceddff0-38ce-40bf-966c-06a0f67ff7e4,https://biolit.fr/sorties/sortie-9ceddff0-38ce-40bf-966c-06a0f67ff7e4/,Camille Benyamine,,1/25/2023 0:00,9.0000000,10.0000000,43.239905000000,5.362395000000,Planète Mer,Bain des dames,26424,observation-9ceddff0-38ce-40bf-966c-06a0f67ff7e4-3,https://biolit.fr/observations/observation-9ceddff0-38ce-40bf-966c-06a0f67ff7e4-3/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/2023/07/330923600_1655683214860602_2803079927667974416_n.jpg,,TRUE, +N1,26891,sortie-9ceddff0-38ce-40bf-966c-06a0f67ff7e4,https://biolit.fr/sorties/sortie-9ceddff0-38ce-40bf-966c-06a0f67ff7e4/,Camille Benyamine,,1/25/2023 0:00,9.0000000,10.0000000,43.239905000000,5.362395000000,Planète Mer,Bain des dames,26426,observation-9ceddff0-38ce-40bf-966c-06a0f67ff7e4-4,https://biolit.fr/observations/observation-9ceddff0-38ce-40bf-966c-06a0f67ff7e4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/331129510_1811287012587781_2349721424005803763_n.jpg,,FALSE, +N1,26891,sortie-9ceddff0-38ce-40bf-966c-06a0f67ff7e4,https://biolit.fr/sorties/sortie-9ceddff0-38ce-40bf-966c-06a0f67ff7e4/,Camille Benyamine,,1/25/2023 0:00,9.0000000,10.0000000,43.239905000000,5.362395000000,Planète Mer,Bain des dames,26428,observation-9ceddff0-38ce-40bf-966c-06a0f67ff7e4-5,https://biolit.fr/observations/observation-9ceddff0-38ce-40bf-966c-06a0f67ff7e4-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/MicrosoftTeams-image_0-scaled.png,,FALSE, +N1,26892,sortie-df8fa951-e0ad-4fac-8a8c-6b897468c89d,https://biolit.fr/sorties/sortie-df8fa951-e0ad-4fac-8a8c-6b897468c89d/,LABELBLEU,,11/02/2022,15.0000000,17.0000000,42.746530000000,3.034827000000,LABELBLEU,Toreilles,26430,observation-df8fa951-e0ad-4fac-8a8c-6b897468c89d,https://biolit.fr/observations/observation-df8fa951-e0ad-4fac-8a8c-6b897468c89d/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2022-12-02 142306_1.png,,FALSE, +N1,26893,sortie-407db9d2-71c9-4486-a3ca-be80f274f36e,https://biolit.fr/sorties/sortie-407db9d2-71c9-4486-a3ca-be80f274f36e/,LABELBLEU,,11/16/2022 0:00,14.0000000,16.0000000,42.755412000000,3.035857000000,LABELBLEU, Torreilles,26432,observation-407db9d2-71c9-4486-a3ca-be80f274f36e,https://biolit.fr/observations/observation-407db9d2-71c9-4486-a3ca-be80f274f36e/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2022-12-02 142306_0.png,,FALSE, +N1,26894,sortie-21a1207b-4a91-46db-9d0d-0f679cb69497,https://biolit.fr/sorties/sortie-21a1207b-4a91-46db-9d0d-0f679cb69497/,LABELBLEU,,10/26/2022 0:00,14.0:25,16.0:25,42.724217000000,3.030708000000,LABELBLEU,plage de Sainte Marie-La-Mer,26434,observation-21a1207b-4a91-46db-9d0d-0f679cb69497,https://biolit.fr/observations/observation-21a1207b-4a91-46db-9d0d-0f679cb69497/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2022-12-02 142306.png,,FALSE, +N1,26895,sortie-a891f8ca-7652-4fe0-9809-2ca65b77f863,https://biolit.fr/sorties/sortie-a891f8ca-7652-4fe0-9809-2ca65b77f863/,Institut Marin du Seaquarium,,8/18/2022 0:00,17.0000000,19.0000000,43.525962000000,4.138204000000,Institut Marin du Seaquarium,Plage du Seaquarium,26436,observation-a891f8ca-7652-4fe0-9809-2ca65b77f863,https://biolit.fr/observations/observation-a891f8ca-7652-4fe0-9809-2ca65b77f863/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221201_165931-scaled.jpg,,FALSE, +N1,26895,sortie-a891f8ca-7652-4fe0-9809-2ca65b77f863,https://biolit.fr/sorties/sortie-a891f8ca-7652-4fe0-9809-2ca65b77f863/,Institut Marin du Seaquarium,,8/18/2022 0:00,17.0000000,19.0000000,43.525962000000,4.138204000000,Institut Marin du Seaquarium,Plage du Seaquarium,26438,observation-a891f8ca-7652-4fe0-9809-2ca65b77f863-2,https://biolit.fr/observations/observation-a891f8ca-7652-4fe0-9809-2ca65b77f863-2/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220825_193038-scaled.jpg,,TRUE, +N1,26896,sortie-763cb626-f51b-415e-885f-210ff933f4cf,https://biolit.fr/sorties/sortie-763cb626-f51b-415e-885f-210ff933f4cf/,Institut Marin du Seaquarium,,08/04/2022,17.0000000,19.0000000,43.52594400000,4.138204000000,Institut Marin du Seaquarium,Plage du Seaquarium,26440,observation-763cb626-f51b-415e-885f-210ff933f4cf,https://biolit.fr/observations/observation-763cb626-f51b-415e-885f-210ff933f4cf/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220804_191226-scaled.jpg,,FALSE, +N1,26896,sortie-763cb626-f51b-415e-885f-210ff933f4cf,https://biolit.fr/sorties/sortie-763cb626-f51b-415e-885f-210ff933f4cf/,Institut Marin du Seaquarium,,08/04/2022,17.0000000,19.0000000,43.52594400000,4.138204000000,Institut Marin du Seaquarium,Plage du Seaquarium,26442,observation-763cb626-f51b-415e-885f-210ff933f4cf-2,https://biolit.fr/observations/observation-763cb626-f51b-415e-885f-210ff933f4cf-2/,Grateloupia turuturu,Grateloupe du Pacifique,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20220804_185003-scaled.jpg,,TRUE, +N1,26896,sortie-763cb626-f51b-415e-885f-210ff933f4cf,https://biolit.fr/sorties/sortie-763cb626-f51b-415e-885f-210ff933f4cf/,Institut Marin du Seaquarium,,08/04/2022,17.0000000,19.0000000,43.52594400000,4.138204000000,Institut Marin du Seaquarium,Plage du Seaquarium,26444,observation-763cb626-f51b-415e-885f-210ff933f4cf-3,https://biolit.fr/observations/observation-763cb626-f51b-415e-885f-210ff933f4cf-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220804_184916-scaled.jpg,,FALSE, +N1,26897,sortie-3369106c-b804-4318-bbeb-affeee65bcc2,https://biolit.fr/sorties/sortie-3369106c-b804-4318-bbeb-affeee65bcc2/,Institut Marin du Seaquarium,,7/28/2022 0:00,17.0000000,19.0000000,43.525951000000,4.138241000000,Institut Marin du Seaquarium,Plage du Seaquarium,26446,observation-3369106c-b804-4318-bbeb-affeee65bcc2,https://biolit.fr/observations/observation-3369106c-b804-4318-bbeb-affeee65bcc2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221201_165218-scaled.jpg,,FALSE, +N1,26897,sortie-3369106c-b804-4318-bbeb-affeee65bcc2,https://biolit.fr/sorties/sortie-3369106c-b804-4318-bbeb-affeee65bcc2/,Institut Marin du Seaquarium,,7/28/2022 0:00,17.0000000,19.0000000,43.525951000000,4.138241000000,Institut Marin du Seaquarium,Plage du Seaquarium,26448,observation-3369106c-b804-4318-bbeb-affeee65bcc2-2,https://biolit.fr/observations/observation-3369106c-b804-4318-bbeb-affeee65bcc2-2/,Grateloupia turuturu,Grateloupe du Pacifique,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220728_191533-scaled.jpg,,TRUE, +N1,26897,sortie-3369106c-b804-4318-bbeb-affeee65bcc2,https://biolit.fr/sorties/sortie-3369106c-b804-4318-bbeb-affeee65bcc2/,Institut Marin du Seaquarium,,7/28/2022 0:00,17.0000000,19.0000000,43.525951000000,4.138241000000,Institut Marin du Seaquarium,Plage du Seaquarium,26450,observation-3369106c-b804-4318-bbeb-affeee65bcc2-3,https://biolit.fr/observations/observation-3369106c-b804-4318-bbeb-affeee65bcc2-3/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220728_191512-scaled.jpg,,TRUE, +N1,26898,sortie-9fab1dba-f5f2-460f-8c6e-7fa304388c67,https://biolit.fr/sorties/sortie-9fab1dba-f5f2-460f-8c6e-7fa304388c67/,Institut Marin du Seaquarium,,7/21/2022 0:00,17.0000000,19.0000000,43.525964000000,4.138226000000,Institut Marin du Seaquarium,Plage du Seaquarium,26452,observation-9fab1dba-f5f2-460f-8c6e-7fa304388c67,https://biolit.fr/observations/observation-9fab1dba-f5f2-460f-8c6e-7fa304388c67/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221201_164121-scaled.jpg,,FALSE, +N1,26898,sortie-9fab1dba-f5f2-460f-8c6e-7fa304388c67,https://biolit.fr/sorties/sortie-9fab1dba-f5f2-460f-8c6e-7fa304388c67/,Institut Marin du Seaquarium,,7/21/2022 0:00,17.0000000,19.0000000,43.525964000000,4.138226000000,Institut Marin du Seaquarium,Plage du Seaquarium,26454,observation-9fab1dba-f5f2-460f-8c6e-7fa304388c67-2,https://biolit.fr/observations/observation-9fab1dba-f5f2-460f-8c6e-7fa304388c67-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220721_193558-scaled.jpg,,FALSE, +N1,26898,sortie-9fab1dba-f5f2-460f-8c6e-7fa304388c67,https://biolit.fr/sorties/sortie-9fab1dba-f5f2-460f-8c6e-7fa304388c67/,Institut Marin du Seaquarium,,7/21/2022 0:00,17.0000000,19.0000000,43.525964000000,4.138226000000,Institut Marin du Seaquarium,Plage du Seaquarium,26456,observation-9fab1dba-f5f2-460f-8c6e-7fa304388c67-3,https://biolit.fr/observations/observation-9fab1dba-f5f2-460f-8c6e-7fa304388c67-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220721_193615.jpg,,FALSE, +N1,26898,sortie-9fab1dba-f5f2-460f-8c6e-7fa304388c67,https://biolit.fr/sorties/sortie-9fab1dba-f5f2-460f-8c6e-7fa304388c67/,Institut Marin du Seaquarium,,7/21/2022 0:00,17.0000000,19.0000000,43.525964000000,4.138226000000,Institut Marin du Seaquarium,Plage du Seaquarium,26458,observation-9fab1dba-f5f2-460f-8c6e-7fa304388c67-4,https://biolit.fr/observations/observation-9fab1dba-f5f2-460f-8c6e-7fa304388c67-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220721_193626-scaled.jpg,,FALSE, +N1,26898,sortie-9fab1dba-f5f2-460f-8c6e-7fa304388c67,https://biolit.fr/sorties/sortie-9fab1dba-f5f2-460f-8c6e-7fa304388c67/,Institut Marin du Seaquarium,,7/21/2022 0:00,17.0000000,19.0000000,43.525964000000,4.138226000000,Institut Marin du Seaquarium,Plage du Seaquarium,26460,observation-9fab1dba-f5f2-460f-8c6e-7fa304388c67-5,https://biolit.fr/observations/observation-9fab1dba-f5f2-460f-8c6e-7fa304388c67-5/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220721_193551.jpg,,TRUE, +N1,26899,sortie-b24734be-f9e7-451c-b554-1764090e9edf,https://biolit.fr/sorties/sortie-b24734be-f9e7-451c-b554-1764090e9edf/,Institut Marin du Seaquarium,,7/14/2022 0:00,17.0000000,19.0000000,43.525954000000,4.138119000000,Institut Marin du Seaquarium,Plage du Seaquarium,26462,observation-b24734be-f9e7-451c-b554-1764090e9edf,https://biolit.fr/observations/observation-b24734be-f9e7-451c-b554-1764090e9edf/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220714_191033-scaled.jpg,,TRUE, +N1,26899,sortie-b24734be-f9e7-451c-b554-1764090e9edf,https://biolit.fr/sorties/sortie-b24734be-f9e7-451c-b554-1764090e9edf/,Institut Marin du Seaquarium,,7/14/2022 0:00,17.0000000,19.0000000,43.525954000000,4.138119000000,Institut Marin du Seaquarium,Plage du Seaquarium,26464,observation-b24734be-f9e7-451c-b554-1764090e9edf-2,https://biolit.fr/observations/observation-b24734be-f9e7-451c-b554-1764090e9edf-2/,Ficopomatus enigmaticus,Cascail,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220714_190947-scaled.jpg,,TRUE, +N1,26900,sortie-e29d0f44-2ee0-4d35-bee2-317dda2475fd,https://biolit.fr/sorties/sortie-e29d0f44-2ee0-4d35-bee2-317dda2475fd/,Institut Marin du Seaquarium,,07/08/2022,18.0000000,19.0000000,43.525951000000,4.138164000000,Institut Marin du Seaquarium,Plage du Seaquarium,,,,,,,,,, +N1,26901,sortie-711b386b-d9fc-4d32-bcd4-036eee95b320,https://biolit.fr/sorties/sortie-711b386b-d9fc-4d32-bcd4-036eee95b320/,LABELBLEU,,11/23/2022 0:00,14.0000000,16.0000000,42.775962000000,3.03863600000,LABELBLEU,Plage de Torreilles,,,,,,,,,, +N1,26902,sortie-87848061-49c4-4c90-8e0e-05c6c5337b87,https://biolit.fr/sorties/sortie-87848061-49c4-4c90-8e0e-05c6c5337b87/,Marine,,10/30/2022 0:00,16.000005,16.0:15,46.14619600000,-1.207320000000,,Chef de Baie,26470,observation-87848061-49c4-4c90-8e0e-05c6c5337b87,https://biolit.fr/observations/observation-87848061-49c4-4c90-8e0e-05c6c5337b87/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221030_152847_compress14-scaled.jpg,,TRUE, +N1,26902,sortie-87848061-49c4-4c90-8e0e-05c6c5337b87,https://biolit.fr/sorties/sortie-87848061-49c4-4c90-8e0e-05c6c5337b87/,Marine,,10/30/2022 0:00,16.000005,16.0:15,46.14619600000,-1.207320000000,,Chef de Baie,26472,observation-87848061-49c4-4c90-8e0e-05c6c5337b87-2,https://biolit.fr/observations/observation-87848061-49c4-4c90-8e0e-05c6c5337b87-2/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221030_152852_compress7-scaled.jpg,,TRUE, +N1,26902,sortie-87848061-49c4-4c90-8e0e-05c6c5337b87,https://biolit.fr/sorties/sortie-87848061-49c4-4c90-8e0e-05c6c5337b87/,Marine,,10/30/2022 0:00,16.000005,16.0:15,46.14619600000,-1.207320000000,,Chef de Baie,26474,observation-87848061-49c4-4c90-8e0e-05c6c5337b87-3,https://biolit.fr/observations/observation-87848061-49c4-4c90-8e0e-05c6c5337b87-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221030_152751_compress16-scaled.jpg,,FALSE, +N1,26903,sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834,https://biolit.fr/sorties/sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834/,AIEJE,,10/28/2022 0:00,14.0000000,15.0000000,43.331389000000,5.20325400000,AIEJE,ENSUES LA REDONNE,26476,observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834,https://biolit.fr/observations/observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834/,,,,https://biolit.fr/wp-content/uploads/2023/07/MicrosoftTeams-image-rotated.png,,FALSE, +N1,26903,sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834,https://biolit.fr/sorties/sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834/,AIEJE,,10/28/2022 0:00,14.0000000,15.0000000,43.331389000000,5.20325400000,AIEJE,ENSUES LA REDONNE,26478,observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834-2,https://biolit.fr/observations/observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2576-scaled.jpg,,FALSE, +N1,26903,sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834,https://biolit.fr/sorties/sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834/,AIEJE,,10/28/2022 0:00,14.0000000,15.0000000,43.331389000000,5.20325400000,AIEJE,ENSUES LA REDONNE,26480,observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834-3,https://biolit.fr/observations/observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2578-scaled.jpg,,FALSE, +N1,26903,sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834,https://biolit.fr/sorties/sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834/,AIEJE,,10/28/2022 0:00,14.0000000,15.0000000,43.331389000000,5.20325400000,AIEJE,ENSUES LA REDONNE,26482,observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834-4,https://biolit.fr/observations/observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2580-scaled.jpg,,FALSE, +N1,26903,sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834,https://biolit.fr/sorties/sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834/,AIEJE,,10/28/2022 0:00,14.0000000,15.0000000,43.331389000000,5.20325400000,AIEJE,ENSUES LA REDONNE,26484,observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834-5,https://biolit.fr/observations/observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2582-scaled.jpg,,FALSE, +N1,26903,sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834,https://biolit.fr/sorties/sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834/,AIEJE,,10/28/2022 0:00,14.0000000,15.0000000,43.331389000000,5.20325400000,AIEJE,ENSUES LA REDONNE,26486,observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834-6,https://biolit.fr/observations/observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2585-scaled.jpg,,FALSE, +N1,26903,sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834,https://biolit.fr/sorties/sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834/,AIEJE,,10/28/2022 0:00,14.0000000,15.0000000,43.331389000000,5.20325400000,AIEJE,ENSUES LA REDONNE,26488,observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834-7,https://biolit.fr/observations/observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2579-scaled.jpg,,FALSE, +N1,26903,sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834,https://biolit.fr/sorties/sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834/,AIEJE,,10/28/2022 0:00,14.0000000,15.0000000,43.331389000000,5.20325400000,AIEJE,ENSUES LA REDONNE,26490,observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834-8,https://biolit.fr/observations/observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2583-scaled.jpg,,FALSE, +N1,26903,sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834,https://biolit.fr/sorties/sortie-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834/,AIEJE,,10/28/2022 0:00,14.0000000,15.0000000,43.331389000000,5.20325400000,AIEJE,ENSUES LA REDONNE,26492,observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834-9,https://biolit.fr/observations/observation-e1a0d4fd-610f-4df4-b0b7-27ca8ea2f834-9/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2581-scaled.jpg,,TRUE, +N1,26904,sortie-af8898e6-aac8-4c90-a9a4-684a3abef757,https://biolit.fr/sorties/sortie-af8898e6-aac8-4c90-a9a4-684a3abef757/,Institut Marin du Seaquarium,,10/26/2022 0:00,16.0000000,17.0000000,43.525961000000,4.138228000000,Institut Marin du Seaquarium,Plage du Seaquarium,26494,observation-af8898e6-aac8-4c90-a9a4-684a3abef757,https://biolit.fr/observations/observation-af8898e6-aac8-4c90-a9a4-684a3abef757/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221027_101851-scaled.jpg,,FALSE, +N1,26904,sortie-af8898e6-aac8-4c90-a9a4-684a3abef757,https://biolit.fr/sorties/sortie-af8898e6-aac8-4c90-a9a4-684a3abef757/,Institut Marin du Seaquarium,,10/26/2022 0:00,16.0000000,17.0000000,43.525961000000,4.138228000000,Institut Marin du Seaquarium,Plage du Seaquarium,26496,observation-af8898e6-aac8-4c90-a9a4-684a3abef757-2,https://biolit.fr/observations/observation-af8898e6-aac8-4c90-a9a4-684a3abef757-2/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220825_193056-scaled.jpg,,TRUE, +N1,26905,sortie-e642fbf5-be3b-4d8f-822f-11280d0c6afa,https://biolit.fr/sorties/sortie-e642fbf5-be3b-4d8f-822f-11280d0c6afa/,Institut Marin du Seaquarium,,10/25/2022 0:00,16.0000000,17.0000000,43.525937000000,4.138239000000,Institut Marin du Seaquarium,Plage du Seaquarium,26498,observation-e642fbf5-be3b-4d8f-822f-11280d0c6afa,https://biolit.fr/observations/observation-e642fbf5-be3b-4d8f-822f-11280d0c6afa/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221025_173440-scaled.jpg,,TRUE, +N1,26906,sortie-239329b0-40a9-4b1d-9b7a-e2a0b9b24a6d,https://biolit.fr/sorties/sortie-239329b0-40a9-4b1d-9b7a-e2a0b9b24a6d/,Camille Benyamine,,10/25/2022 0:00,10.0:15,10.0000000,43.213716000000,5.345518000000,Planète Mer,Anse de la Maronaise,26500,observation-239329b0-40a9-4b1d-9b7a-e2a0b9b24a6d,https://biolit.fr/observations/observation-239329b0-40a9-4b1d-9b7a-e2a0b9b24a6d/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221025 FICHE NA.jpg,,FALSE, +N1,26906,sortie-239329b0-40a9-4b1d-9b7a-e2a0b9b24a6d,https://biolit.fr/sorties/sortie-239329b0-40a9-4b1d-9b7a-e2a0b9b24a6d/,Camille Benyamine,,10/25/2022 0:00,10.0:15,10.0000000,43.213716000000,5.345518000000,Planète Mer,Anse de la Maronaise,26502,observation-239329b0-40a9-4b1d-9b7a-e2a0b9b24a6d-2,https://biolit.fr/observations/observation-239329b0-40a9-4b1d-9b7a-e2a0b9b24a6d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/MicrosoftTeams-image(1).jpg,,FALSE, +N1,26907,sortie-90689286-d85a-4752-a0d8-5f4fa43f67a1,https://biolit.fr/sorties/sortie-90689286-d85a-4752-a0d8-5f4fa43f67a1/,Watch The Sea,,9/30/2022 0:00,10.0:15,10.0000000,43.284843000000,5.321314000000,Watch The Sea,Calanque de Ratonneau,26504,observation-90689286-d85a-4752-a0d8-5f4fa43f67a1,https://biolit.fr/observations/observation-90689286-d85a-4752-a0d8-5f4fa43f67a1/,,,,https://biolit.fr/wp-content/uploads/2023/07/72119_0.jpg,,FALSE, +N1,26908,sortie-880d6f04-e48c-4d06-801b-3c79936b2c0f,https://biolit.fr/sorties/sortie-880d6f04-e48c-4d06-801b-3c79936b2c0f/,Watch The Sea,,10/21/2022 0:00,16.0000000,18.0000000,43.284581000000,5.321142000000,,Calanque de Ratonneau,26506,observation-880d6f04-e48c-4d06-801b-3c79936b2c0f,https://biolit.fr/observations/observation-880d6f04-e48c-4d06-801b-3c79936b2c0f/,,,,https://biolit.fr/wp-content/uploads/2023/07/10784.jpg,,FALSE, +N1,26909,sortie-661b7c5f-e21b-41a2-8508-a1ccacd0eb62,https://biolit.fr/sorties/sortie-661b7c5f-e21b-41a2-8508-a1ccacd0eb62/,LABELBLEU,,10/19/2022 0:00,10.0000000,12.0000000,42.535186000000,3.06449300000,LABELBLEU,Criques de Porteils,26508,observation-661b7c5f-e21b-41a2-8508-a1ccacd0eb62,https://biolit.fr/observations/observation-661b7c5f-e21b-41a2-8508-a1ccacd0eb62/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/codium fragile.jpg,,TRUE, +N1,26910,sortie-fb2f9a58-8473-4102-a9f7-a1a11213c17b,https://biolit.fr/sorties/sortie-fb2f9a58-8473-4102-a9f7-a1a11213c17b/,LABELBLEU,,10/08/2022,10.0000000,12.0000000,42.535288000000,3.064074000000,LABELBLEU,Criques de Porteils,26510,observation-fb2f9a58-8473-4102-a9f7-a1a11213c17b,https://biolit.fr/observations/observation-fb2f9a58-8473-4102-a9f7-a1a11213c17b/,,,,https://biolit.fr/wp-content/uploads/2023/07/espèces NA-scaled.jpg,,FALSE, +N1,26911,sortie-01e73f71-5ae4-4189-96fe-851d334f9637,https://biolit.fr/sorties/sortie-01e73f71-5ae4-4189-96fe-851d334f9637/,AILERONS,,9/18/2022 0:00,17.0000000,19.0000000,43.541245000000,3.97124200000,Ailerons,"Plage des Roquilles, 34 280 Carnon-Mauguio",26512,observation-01e73f71-5ae4-4189-96fe-851d334f9637,https://biolit.fr/observations/observation-01e73f71-5ae4-4189-96fe-851d334f9637/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220918_191426-scaled.jpg,,FALSE, +N1,26911,sortie-01e73f71-5ae4-4189-96fe-851d334f9637,https://biolit.fr/sorties/sortie-01e73f71-5ae4-4189-96fe-851d334f9637/,AILERONS,,9/18/2022 0:00,17.0000000,19.0000000,43.541245000000,3.97124200000,Ailerons,"Plage des Roquilles, 34 280 Carnon-Mauguio",26514,observation-01e73f71-5ae4-4189-96fe-851d334f9637-2,https://biolit.fr/observations/observation-01e73f71-5ae4-4189-96fe-851d334f9637-2/,Ficopomatus enigmaticus,Cascail,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20220918_190340-scaled.jpg,,TRUE, +N1,26911,sortie-01e73f71-5ae4-4189-96fe-851d334f9637,https://biolit.fr/sorties/sortie-01e73f71-5ae4-4189-96fe-851d334f9637/,AILERONS,,9/18/2022 0:00,17.0000000,19.0000000,43.541245000000,3.97124200000,Ailerons,"Plage des Roquilles, 34 280 Carnon-Mauguio",26516,observation-01e73f71-5ae4-4189-96fe-851d334f9637-3,https://biolit.fr/observations/observation-01e73f71-5ae4-4189-96fe-851d334f9637-3/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20220918_185604-scaled.jpg,,TRUE, +N1,26911,sortie-01e73f71-5ae4-4189-96fe-851d334f9637,https://biolit.fr/sorties/sortie-01e73f71-5ae4-4189-96fe-851d334f9637/,AILERONS,,9/18/2022 0:00,17.0000000,19.0000000,43.541245000000,3.97124200000,Ailerons,"Plage des Roquilles, 34 280 Carnon-Mauguio",26518,observation-01e73f71-5ae4-4189-96fe-851d334f9637-4,https://biolit.fr/observations/observation-01e73f71-5ae4-4189-96fe-851d334f9637-4/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20220918_185310-scaled.jpg,,TRUE, +N1,26912,sortie-0a3fba34-6553-42f6-a7ab-a7529d3141e9,https://biolit.fr/sorties/sortie-0a3fba34-6553-42f6-a7ab-a7529d3141e9/,AILERONS,,10/01/2022,16.0000000,18.0000000,43.528211000000,3.934028000000,Ailerons,"Palavas, plage de l'Hotel de Ville ",26520,observation-0a3fba34-6553-42f6-a7ab-a7529d3141e9,https://biolit.fr/observations/observation-0a3fba34-6553-42f6-a7ab-a7529d3141e9/,,,,https://biolit.fr/wp-content/uploads/2023/07/received_1333444414066298.jpeg,,FALSE, +N1,26912,sortie-0a3fba34-6553-42f6-a7ab-a7529d3141e9,https://biolit.fr/sorties/sortie-0a3fba34-6553-42f6-a7ab-a7529d3141e9/,AILERONS,,10/01/2022,16.0000000,18.0000000,43.528211000000,3.934028000000,Ailerons,"Palavas, plage de l'Hotel de Ville ",26522,observation-0a3fba34-6553-42f6-a7ab-a7529d3141e9-2,https://biolit.fr/observations/observation-0a3fba34-6553-42f6-a7ab-a7529d3141e9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Asparagopsis armata.jpg,,FALSE, +N1,26912,sortie-0a3fba34-6553-42f6-a7ab-a7529d3141e9,https://biolit.fr/sorties/sortie-0a3fba34-6553-42f6-a7ab-a7529d3141e9/,AILERONS,,10/01/2022,16.0000000,18.0000000,43.528211000000,3.934028000000,Ailerons,"Palavas, plage de l'Hotel de Ville ",26524,observation-0a3fba34-6553-42f6-a7ab-a7529d3141e9-3,https://biolit.fr/observations/observation-0a3fba34-6553-42f6-a7ab-a7529d3141e9-3/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crassostrea gigas.jpg,,TRUE, +N1,26912,sortie-0a3fba34-6553-42f6-a7ab-a7529d3141e9,https://biolit.fr/sorties/sortie-0a3fba34-6553-42f6-a7ab-a7529d3141e9/,AILERONS,,10/01/2022,16.0000000,18.0000000,43.528211000000,3.934028000000,Ailerons,"Palavas, plage de l'Hotel de Ville ",26526,observation-0a3fba34-6553-42f6-a7ab-a7529d3141e9-4,https://biolit.fr/observations/observation-0a3fba34-6553-42f6-a7ab-a7529d3141e9-4/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Codium fragile_1.jpg,,TRUE, +N1,26913,sortie-75941036-9081-4edc-a7b3-0a1d0e8f9545,https://biolit.fr/sorties/sortie-75941036-9081-4edc-a7b3-0a1d0e8f9545/,Marine,,9/17/2022 0:00,13.0:45,13.0:55,43.280516000000,5.352967000000,Planète Mer,Anse fausse monnaie ,26528,observation-75941036-9081-4edc-a7b3-0a1d0e8f9545,https://biolit.fr/observations/observation-75941036-9081-4edc-a7b3-0a1d0e8f9545/,Caulerpa cylindracea,Caulerpe cylindracée,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220917_124459_compress98-scaled.jpg,,TRUE, +N1,26913,sortie-75941036-9081-4edc-a7b3-0a1d0e8f9545,https://biolit.fr/sorties/sortie-75941036-9081-4edc-a7b3-0a1d0e8f9545/,Marine,,9/17/2022 0:00,13.0:45,13.0:55,43.280516000000,5.352967000000,Planète Mer,Anse fausse monnaie ,26530,observation-75941036-9081-4edc-a7b3-0a1d0e8f9545-2,https://biolit.fr/observations/observation-75941036-9081-4edc-a7b3-0a1d0e8f9545-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220918_083926_compress64-scaled.jpg,,FALSE, +N1,26914,sortie-a3d3a32f-3d71-487c-94c3-f43dc5f6126c,https://biolit.fr/sorties/sortie-a3d3a32f-3d71-487c-94c3-f43dc5f6126c/,LABELBLEU,,9/14/2022 0:00,15.0000000,17.0000000,42.729612000000,3.038282000000,LABELBLEU,Sainte-marie-la-mer,26532,observation-a3d3a32f-3d71-487c-94c3-f43dc5f6126c,https://biolit.fr/observations/observation-a3d3a32f-3d71-487c-94c3-f43dc5f6126c/,,,,https://biolit.fr/wp-content/uploads/2023/07/Biolit pas de NA.jpg,,FALSE, +N1,26915,sortie-d83a5727-6a9b-474e-b90a-a185004c16b5,https://biolit.fr/sorties/sortie-d83a5727-6a9b-474e-b90a-a185004c16b5/,LABELBLEU,,8/17/2022 0:00,10.0000000,12.0000000,42.544143000000,3.051725000000,LABELBLEU,Port-Argelès,26534,observation-d83a5727-6a9b-474e-b90a-a185004c16b5,https://biolit.fr/observations/observation-d83a5727-6a9b-474e-b90a-a185004c16b5/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/huitre creuse-scaled.jpg,,TRUE, +N1,26916,sortie-ce6f0540-6993-4bcf-b6c4-c52fbc84ca89,https://biolit.fr/sorties/sortie-ce6f0540-6993-4bcf-b6c4-c52fbc84ca89/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.853660000000,-3.981947000000,,Plage des dunes ( Beg-meil),26536,observation-ce6f0540-6993-4bcf-b6c4-c52fbc84ca89,https://biolit.fr/observations/observation-ce6f0540-6993-4bcf-b6c4-c52fbc84ca89/,,,,https://biolit.fr/wp-content/uploads/2023/07/305949545_619788366201830_6842376493550192176_n_0.jpg,,FALSE, +N1,26916,sortie-ce6f0540-6993-4bcf-b6c4-c52fbc84ca89,https://biolit.fr/sorties/sortie-ce6f0540-6993-4bcf-b6c4-c52fbc84ca89/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.853660000000,-3.981947000000,,Plage des dunes ( Beg-meil),26538,observation-ce6f0540-6993-4bcf-b6c4-c52fbc84ca89-2,https://biolit.fr/observations/observation-ce6f0540-6993-4bcf-b6c4-c52fbc84ca89-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/306398389_495162315325320_8126500358242817747_n.jpg,,FALSE, +N1,26916,sortie-ce6f0540-6993-4bcf-b6c4-c52fbc84ca89,https://biolit.fr/sorties/sortie-ce6f0540-6993-4bcf-b6c4-c52fbc84ca89/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.853660000000,-3.981947000000,,Plage des dunes ( Beg-meil),26540,observation-ce6f0540-6993-4bcf-b6c4-c52fbc84ca89-3,https://biolit.fr/observations/observation-ce6f0540-6993-4bcf-b6c4-c52fbc84ca89-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/305529410_617000053413261_4920154097195251455_n.jpg,,FALSE, +N1,26917,sortie-9d5288ff-b90f-4d71-8ff2-baef62218501,https://biolit.fr/sorties/sortie-9d5288ff-b90f-4d71-8ff2-baef62218501/,Projet Azur - Philo,,09/05/2022,10.0000000,12.0000000,43.570550000000,7.119086000000,,Golf Juan,26542,observation-9d5288ff-b90f-4d71-8ff2-baef62218501,https://biolit.fr/observations/observation-9d5288ff-b90f-4d71-8ff2-baef62218501/,Caulerpa taxifolia,Caulerpe à feuilles d'if,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Caulerpe_0.jpg,,TRUE, +N1,26918,sortie-336dd18b-2380-444a-bb24-029dce919699,https://biolit.fr/sorties/sortie-336dd18b-2380-444a-bb24-029dce919699/,Projet Azur - Philo,,8/28/2022 0:00,16.0000000,17.0000000,43.404458000000,6.67938200000,,Roquebrune,26544,observation-336dd18b-2380-444a-bb24-029dce919699,https://biolit.fr/observations/observation-336dd18b-2380-444a-bb24-029dce919699/,Percnon gibbesi,Crabe plat des oursins,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crabe plat à oursins 28.08.22_0.png,,TRUE, +N1,26919,sortie-39b6f3fa-1697-4f96-9228-f1be119634af,https://biolit.fr/sorties/sortie-39b6f3fa-1697-4f96-9228-f1be119634af/,Litt'Obs,,08/11/2022,21.0:45,22.0000000,48.555909000000,-2.720348000000,,"Martin-plage, Plérin",26546,observation-39b6f3fa-1697-4f96-9228-f1be119634af,https://biolit.fr/observations/observation-39b6f3fa-1697-4f96-9228-f1be119634af/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crabe marbré©F.BARGAT.jpg,,TRUE, +N1,26920,sortie-a34dd820-378b-4c48-a4dd-0a0387fd274b,https://biolit.fr/sorties/sortie-a34dd820-378b-4c48-a4dd-0a0387fd274b/,LPO Occitanie - Aude,,08/10/2022,10.0000000,11.0000000,42.895352000000,3.053501000000,LPO Occitanie (Dt Aude),Leucate plage,26548,observation-a34dd820-378b-4c48-a4dd-0a0387fd274b,https://biolit.fr/observations/observation-a34dd820-378b-4c48-a4dd-0a0387fd274b/,,,,https://biolit.fr/wp-content/uploads/2023/07/16602261444829125077007856691979-scaled.jpg,,FALSE, +N1,26920,sortie-a34dd820-378b-4c48-a4dd-0a0387fd274b,https://biolit.fr/sorties/sortie-a34dd820-378b-4c48-a4dd-0a0387fd274b/,LPO Occitanie - Aude,,08/10/2022,10.0000000,11.0000000,42.895352000000,3.053501000000,LPO Occitanie (Dt Aude),Leucate plage,26550,observation-a34dd820-378b-4c48-a4dd-0a0387fd274b-2,https://biolit.fr/observations/observation-a34dd820-378b-4c48-a4dd-0a0387fd274b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/16602262364813962806167463556070-scaled.jpg,,FALSE, +N1,26920,sortie-a34dd820-378b-4c48-a4dd-0a0387fd274b,https://biolit.fr/sorties/sortie-a34dd820-378b-4c48-a4dd-0a0387fd274b/,LPO Occitanie - Aude,,08/10/2022,10.0000000,11.0000000,42.895352000000,3.053501000000,LPO Occitanie (Dt Aude),Leucate plage,26552,observation-a34dd820-378b-4c48-a4dd-0a0387fd274b-3,https://biolit.fr/observations/observation-a34dd820-378b-4c48-a4dd-0a0387fd274b-3/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220810_103552-scaled.jpg,,TRUE, +N1,26921,sortie-cb50cff2-5f45-4b49-8c4a-eab764fe2582,https://biolit.fr/sorties/sortie-cb50cff2-5f45-4b49-8c4a-eab764fe2582/,LABELBLEU,,08/04/2022,10.0000000,12.0000000,42.535268000000,3.064096000000,LABELBLEU,"Criques de Porteils, Argelès-sur-mer",26554,observation-cb50cff2-5f45-4b49-8c4a-eab764fe2582,https://biolit.fr/observations/observation-cb50cff2-5f45-4b49-8c4a-eab764fe2582/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/296635966_426574346160151_4647479717521645600_n-scaled.jpg,,TRUE, +N1,26921,sortie-cb50cff2-5f45-4b49-8c4a-eab764fe2582,https://biolit.fr/sorties/sortie-cb50cff2-5f45-4b49-8c4a-eab764fe2582/,LABELBLEU,,08/04/2022,10.0000000,12.0000000,42.535268000000,3.064096000000,LABELBLEU,"Criques de Porteils, Argelès-sur-mer",26556,observation-cb50cff2-5f45-4b49-8c4a-eab764fe2582-2,https://biolit.fr/observations/observation-cb50cff2-5f45-4b49-8c4a-eab764fe2582-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/296779895_362995766037862_5910574748420860194_n-scaled.jpg,,FALSE, +N1,26922,sortie-c9abba18-7d43-4491-a20f-666621404b24,https://biolit.fr/sorties/sortie-c9abba18-7d43-4491-a20f-666621404b24/,LABELBLEU,,7/29/2022 0:00,10.0000000,12.0000000,42.543510000000,3.052142000000,LABELBLEU,Port d'Argelès-sur-mer,26558,observation-c9abba18-7d43-4491-a20f-666621404b24,https://biolit.fr/observations/observation-c9abba18-7d43-4491-a20f-666621404b24/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Crabe_bleu-scaled.jpg,,TRUE, +N1,26922,sortie-c9abba18-7d43-4491-a20f-666621404b24,https://biolit.fr/sorties/sortie-c9abba18-7d43-4491-a20f-666621404b24/,LABELBLEU,,7/29/2022 0:00,10.0000000,12.0000000,42.543510000000,3.052142000000,LABELBLEU,Port d'Argelès-sur-mer,26560,observation-c9abba18-7d43-4491-a20f-666621404b24-2,https://biolit.fr/observations/observation-c9abba18-7d43-4491-a20f-666621404b24-2/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Crabe_mitaine-scaled.jpg,,TRUE, +N1,26922,sortie-c9abba18-7d43-4491-a20f-666621404b24,https://biolit.fr/sorties/sortie-c9abba18-7d43-4491-a20f-666621404b24/,LABELBLEU,,7/29/2022 0:00,10.0000000,12.0000000,42.543510000000,3.052142000000,LABELBLEU,Port d'Argelès-sur-mer,26562,observation-c9abba18-7d43-4491-a20f-666621404b24-3,https://biolit.fr/observations/observation-c9abba18-7d43-4491-a20f-666621404b24-3/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Huitre_creuse-scaled.jpg,,TRUE, +N1,26922,sortie-c9abba18-7d43-4491-a20f-666621404b24,https://biolit.fr/sorties/sortie-c9abba18-7d43-4491-a20f-666621404b24/,LABELBLEU,,7/29/2022 0:00,10.0000000,12.0000000,42.543510000000,3.052142000000,LABELBLEU,Port d'Argelès-sur-mer,26564,observation-c9abba18-7d43-4491-a20f-666621404b24-4,https://biolit.fr/observations/observation-c9abba18-7d43-4491-a20f-666621404b24-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/290722_tableau.jpg,,,non-identifiable +N1,26923,sortie-19786e84-728f-4ccb-b4b2-69b4a13766a6,https://biolit.fr/sorties/sortie-19786e84-728f-4ccb-b4b2-69b4a13766a6/,LPO Occitanie - Aude,,08/03/2022,9.0000000,10.0000000,42.937114000000,3.030740000000,LPO Occitanie (Dt Aude),Grau de la Franqui,26566,observation-19786e84-728f-4ccb-b4b2-69b4a13766a6,https://biolit.fr/observations/observation-19786e84-728f-4ccb-b4b2-69b4a13766a6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220803_103901-scaled.jpg,,FALSE, +N1,26923,sortie-19786e84-728f-4ccb-b4b2-69b4a13766a6,https://biolit.fr/sorties/sortie-19786e84-728f-4ccb-b4b2-69b4a13766a6/,LPO Occitanie - Aude,,08/03/2022,9.0000000,10.0000000,42.937114000000,3.030740000000,LPO Occitanie (Dt Aude),Grau de la Franqui,26568,observation-19786e84-728f-4ccb-b4b2-69b4a13766a6-2,https://biolit.fr/observations/observation-19786e84-728f-4ccb-b4b2-69b4a13766a6-2/,Arcuatula senhousia,Moule asiatique,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220803_104001-scaled.jpg,,TRUE, +N1,26923,sortie-19786e84-728f-4ccb-b4b2-69b4a13766a6,https://biolit.fr/sorties/sortie-19786e84-728f-4ccb-b4b2-69b4a13766a6/,LPO Occitanie - Aude,,08/03/2022,9.0000000,10.0000000,42.937114000000,3.030740000000,LPO Occitanie (Dt Aude),Grau de la Franqui,26570,observation-19786e84-728f-4ccb-b4b2-69b4a13766a6-3,https://biolit.fr/observations/observation-19786e84-728f-4ccb-b4b2-69b4a13766a6-3/,Arcuatula senhousia,Moule asiatique,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220803_103955-scaled.jpg,,TRUE, +N1,26923,sortie-19786e84-728f-4ccb-b4b2-69b4a13766a6,https://biolit.fr/sorties/sortie-19786e84-728f-4ccb-b4b2-69b4a13766a6/,LPO Occitanie - Aude,,08/03/2022,9.0000000,10.0000000,42.937114000000,3.030740000000,LPO Occitanie (Dt Aude),Grau de la Franqui,26572,observation-19786e84-728f-4ccb-b4b2-69b4a13766a6-4,https://biolit.fr/observations/observation-19786e84-728f-4ccb-b4b2-69b4a13766a6-4/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220803_103920-scaled.jpg,,TRUE, +N1,26923,sortie-19786e84-728f-4ccb-b4b2-69b4a13766a6,https://biolit.fr/sorties/sortie-19786e84-728f-4ccb-b4b2-69b4a13766a6/,LPO Occitanie - Aude,,08/03/2022,9.0000000,10.0000000,42.937114000000,3.030740000000,LPO Occitanie (Dt Aude),Grau de la Franqui,26574,observation-19786e84-728f-4ccb-b4b2-69b4a13766a6-5,https://biolit.fr/observations/observation-19786e84-728f-4ccb-b4b2-69b4a13766a6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220803_103908-scaled.jpg,,FALSE, +N1,26924,sortie-cd704770-3be0-402d-ac03-9a56c7b164d9,https://biolit.fr/sorties/sortie-cd704770-3be0-402d-ac03-9a56c7b164d9/,LPO Occitanie - Aude,,7/27/2022 0:00,9.0:15,10.0000000,42.886295000000,3.051247000000,LPO Occitanie (Dt Aude),"Plage de la maison de l'étang, Leucate",26576,observation-cd704770-3be0-402d-ac03-9a56c7b164d9,https://biolit.fr/observations/observation-cd704770-3be0-402d-ac03-9a56c7b164d9/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220727_100004-scaled.jpg,,TRUE, +N1,26924,sortie-cd704770-3be0-402d-ac03-9a56c7b164d9,https://biolit.fr/sorties/sortie-cd704770-3be0-402d-ac03-9a56c7b164d9/,LPO Occitanie - Aude,,7/27/2022 0:00,9.0:15,10.0000000,42.886295000000,3.051247000000,LPO Occitanie (Dt Aude),"Plage de la maison de l'étang, Leucate",26578,observation-cd704770-3be0-402d-ac03-9a56c7b164d9-2,https://biolit.fr/observations/observation-cd704770-3be0-402d-ac03-9a56c7b164d9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220727_095917-scaled.jpg,,FALSE, +N1,26924,sortie-cd704770-3be0-402d-ac03-9a56c7b164d9,https://biolit.fr/sorties/sortie-cd704770-3be0-402d-ac03-9a56c7b164d9/,LPO Occitanie - Aude,,7/27/2022 0:00,9.0:15,10.0000000,42.886295000000,3.051247000000,LPO Occitanie (Dt Aude),"Plage de la maison de l'étang, Leucate",26580,observation-cd704770-3be0-402d-ac03-9a56c7b164d9-3,https://biolit.fr/observations/observation-cd704770-3be0-402d-ac03-9a56c7b164d9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220802_155443-scaled.jpg,,FALSE, +N1,26925,sortie-57b30a88-1033-4396-ab22-f04c5b8b3133,https://biolit.fr/sorties/sortie-57b30a88-1033-4396-ab22-f04c5b8b3133/,LPO Occitanie - Aude,,07/08/2022,10.0000000,11.0000000,43.083333000000,3.051856000000,LPO Occitanie (Dt Aude),"Gruissan, plage des Goules ",,,,,,,,,, +N1,26926,sortie-f1ec57e2-7c14-4001-bfb5-f127f766c71b,https://biolit.fr/sorties/sortie-f1ec57e2-7c14-4001-bfb5-f127f766c71b/,Axel,,5/23/2022 0:00,15.0000000,16.0000000,43.280210000000,5.352776000000,,"Marseille, Anse de La Fausse Monnaie",26586,observation-f1ec57e2-7c14-4001-bfb5-f127f766c71b,https://biolit.fr/observations/observation-f1ec57e2-7c14-4001-bfb5-f127f766c71b/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_7455.JPG,,TRUE, +N1,26926,sortie-f1ec57e2-7c14-4001-bfb5-f127f766c71b,https://biolit.fr/sorties/sortie-f1ec57e2-7c14-4001-bfb5-f127f766c71b/,Axel,,5/23/2022 0:00,15.0000000,16.0000000,43.280210000000,5.352776000000,,"Marseille, Anse de La Fausse Monnaie",26588,observation-f1ec57e2-7c14-4001-bfb5-f127f766c71b-2,https://biolit.fr/observations/observation-f1ec57e2-7c14-4001-bfb5-f127f766c71b-2/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_7456_0.JPG,,TRUE, +N1,26926,sortie-f1ec57e2-7c14-4001-bfb5-f127f766c71b,https://biolit.fr/sorties/sortie-f1ec57e2-7c14-4001-bfb5-f127f766c71b/,Axel,,5/23/2022 0:00,15.0000000,16.0000000,43.280210000000,5.352776000000,,"Marseille, Anse de La Fausse Monnaie",26590,observation-f1ec57e2-7c14-4001-bfb5-f127f766c71b-3,https://biolit.fr/observations/observation-f1ec57e2-7c14-4001-bfb5-f127f766c71b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7469.JPG,,FALSE, +N1,26927,sortie-a76f2ae4-dda2-4d8c-9dee-ed534191ea38,https://biolit.fr/sorties/sortie-a76f2ae4-dda2-4d8c-9dee-ed534191ea38/,Institut Marin du Seaquarium,,05/05/2022,17.0000000,19.0000000,43.526009000000,4.138058000000,Institut Marin du Seaquarium,Plage du Seaquarium - Grau du Roi,26592,observation-a76f2ae4-dda2-4d8c-9dee-ed534191ea38,https://biolit.fr/observations/observation-a76f2ae4-dda2-4d8c-9dee-ed534191ea38/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220505_185211-scaled.jpg,,TRUE, +N1,26927,sortie-a76f2ae4-dda2-4d8c-9dee-ed534191ea38,https://biolit.fr/sorties/sortie-a76f2ae4-dda2-4d8c-9dee-ed534191ea38/,Institut Marin du Seaquarium,,05/05/2022,17.0000000,19.0000000,43.526009000000,4.138058000000,Institut Marin du Seaquarium,Plage du Seaquarium - Grau du Roi,26594,observation-a76f2ae4-dda2-4d8c-9dee-ed534191ea38-2,https://biolit.fr/observations/observation-a76f2ae4-dda2-4d8c-9dee-ed534191ea38-2/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220505_185254-scaled.jpg,,TRUE, +N1,26927,sortie-a76f2ae4-dda2-4d8c-9dee-ed534191ea38,https://biolit.fr/sorties/sortie-a76f2ae4-dda2-4d8c-9dee-ed534191ea38/,Institut Marin du Seaquarium,,05/05/2022,17.0000000,19.0000000,43.526009000000,4.138058000000,Institut Marin du Seaquarium,Plage du Seaquarium - Grau du Roi,26596,observation-a76f2ae4-dda2-4d8c-9dee-ed534191ea38-3,https://biolit.fr/observations/observation-a76f2ae4-dda2-4d8c-9dee-ed534191ea38-3/,Grateloupia turuturu,Grateloupe du Pacifique,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220505_185328-scaled.jpg,,TRUE, +N1,26927,sortie-a76f2ae4-dda2-4d8c-9dee-ed534191ea38,https://biolit.fr/sorties/sortie-a76f2ae4-dda2-4d8c-9dee-ed534191ea38/,Institut Marin du Seaquarium,,05/05/2022,17.0000000,19.0000000,43.526009000000,4.138058000000,Institut Marin du Seaquarium,Plage du Seaquarium - Grau du Roi,26598,observation-a76f2ae4-dda2-4d8c-9dee-ed534191ea38-4,https://biolit.fr/observations/observation-a76f2ae4-dda2-4d8c-9dee-ed534191ea38-4/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220505_185356-scaled.jpg,,TRUE, +N1,26928,sortie-6889a916-9c0e-4f29-a381-edfdcdfc1e1c,https://biolit.fr/sorties/sortie-6889a916-9c0e-4f29-a381-edfdcdfc1e1c/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284075000000,5.316336000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Esteve ",26602,observation-6889a916-9c0e-4f29-a381-edfdcdfc1e1c-2,https://biolit.fr/observations/observation-6889a916-9c0e-4f29-a381-edfdcdfc1e1c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7367.JPG,,FALSE, +N1,26928,sortie-6889a916-9c0e-4f29-a381-edfdcdfc1e1c,https://biolit.fr/sorties/sortie-6889a916-9c0e-4f29-a381-edfdcdfc1e1c/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284075000000,5.316336000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Esteve ",26604,observation-6889a916-9c0e-4f29-a381-edfdcdfc1e1c-3,https://biolit.fr/observations/observation-6889a916-9c0e-4f29-a381-edfdcdfc1e1c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7368.JPG,,FALSE, +N1,26928,sortie-6889a916-9c0e-4f29-a381-edfdcdfc1e1c,https://biolit.fr/sorties/sortie-6889a916-9c0e-4f29-a381-edfdcdfc1e1c/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284075000000,5.316336000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Esteve ",26606,observation-6889a916-9c0e-4f29-a381-edfdcdfc1e1c-4,https://biolit.fr/observations/observation-6889a916-9c0e-4f29-a381-edfdcdfc1e1c-4/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7420.JPG,,TRUE, +N1,26928,sortie-6889a916-9c0e-4f29-a381-edfdcdfc1e1c,https://biolit.fr/sorties/sortie-6889a916-9c0e-4f29-a381-edfdcdfc1e1c/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284075000000,5.316336000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Esteve ",26608,observation-6889a916-9c0e-4f29-a381-edfdcdfc1e1c-5,https://biolit.fr/observations/observation-6889a916-9c0e-4f29-a381-edfdcdfc1e1c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7369.JPG,,FALSE, +N1,26928,sortie-6889a916-9c0e-4f29-a381-edfdcdfc1e1c,https://biolit.fr/sorties/sortie-6889a916-9c0e-4f29-a381-edfdcdfc1e1c/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284075000000,5.316336000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Esteve ",26610,observation-6889a916-9c0e-4f29-a381-edfdcdfc1e1c-6,https://biolit.fr/observations/observation-6889a916-9c0e-4f29-a381-edfdcdfc1e1c-6/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7403.JPG,,TRUE, +N1,26929,sortie-b6665417-20b9-4711-902c-6fe07f0f2322,https://biolit.fr/sorties/sortie-b6665417-20b9-4711-902c-6fe07f0f2322/,Dorian ROULET,,4/14/2022 0:00,10.0:45,11.0:15,43.256004000000,5.375184000000,Planète Mer,Escale borély,26612,observation-b6665417-20b9-4711-902c-6fe07f0f2322,https://biolit.fr/observations/observation-b6665417-20b9-4711-902c-6fe07f0f2322/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8835_0-scaled.jpg,,FALSE, +N1,26930,sortie-c2c7a0a1-0128-4f1f-aa07-528ab6f603de,https://biolit.fr/sorties/sortie-c2c7a0a1-0128-4f1f-aa07-528ab6f603de/,Dorian ROULET,,4/14/2022 0:00,9.0000000,9.0000000,43.239815000000,5.362448000000,Planète Mer,Bain des Dames,26614,observation-c2c7a0a1-0128-4f1f-aa07-528ab6f603de,https://biolit.fr/observations/observation-c2c7a0a1-0128-4f1f-aa07-528ab6f603de/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8820-scaled.jpg,,FALSE, +N1,26931,sortie-ace74d8d-5578-4647-9c74-0825fefcd396,https://biolit.fr/sorties/sortie-ace74d8d-5578-4647-9c74-0825fefcd396/,Marine,,3/17/2022 0:00,14.0000000,14.0:45,43.429364000000,3.767017000000,CPIE Littoral d'Occitanie,Plage du poisson rouge,26618,observation-ace74d8d-5578-4647-9c74-0825fefcd396-2,https://biolit.fr/observations/observation-ace74d8d-5578-4647-9c74-0825fefcd396-2/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220317_145743-scaled.jpg,,TRUE, +N1,26931,sortie-ace74d8d-5578-4647-9c74-0825fefcd396,https://biolit.fr/sorties/sortie-ace74d8d-5578-4647-9c74-0825fefcd396/,Marine,,3/17/2022 0:00,14.0000000,14.0:45,43.429364000000,3.767017000000,CPIE Littoral d'Occitanie,Plage du poisson rouge,26620,observation-ace74d8d-5578-4647-9c74-0825fefcd396-3,https://biolit.fr/observations/observation-ace74d8d-5578-4647-9c74-0825fefcd396-3/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220317_145012-scaled.jpg,,TRUE, +N1,26931,sortie-ace74d8d-5578-4647-9c74-0825fefcd396,https://biolit.fr/sorties/sortie-ace74d8d-5578-4647-9c74-0825fefcd396/,Marine,,3/17/2022 0:00,14.0000000,14.0:45,43.429364000000,3.767017000000,CPIE Littoral d'Occitanie,Plage du poisson rouge,26622,observation-ace74d8d-5578-4647-9c74-0825fefcd396-4,https://biolit.fr/observations/observation-ace74d8d-5578-4647-9c74-0825fefcd396-4/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220317_145431-scaled.jpg,,TRUE, +N1,26931,sortie-ace74d8d-5578-4647-9c74-0825fefcd396,https://biolit.fr/sorties/sortie-ace74d8d-5578-4647-9c74-0825fefcd396/,Marine,,3/17/2022 0:00,14.0000000,14.0:45,43.429364000000,3.767017000000,CPIE Littoral d'Occitanie,Plage du poisson rouge,26624,observation-ace74d8d-5578-4647-9c74-0825fefcd396-5,https://biolit.fr/observations/observation-ace74d8d-5578-4647-9c74-0825fefcd396-5/,Ficopomatus enigmaticus,Cascail,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220317_151747-scaled.jpg,,TRUE, +N1,26932,sortie-1c253b21-cf3c-4f2c-ac64-af56e98489db,https://biolit.fr/sorties/sortie-1c253b21-cf3c-4f2c-ac64-af56e98489db/,Marine,,12/14/2021 0:00,15.0000000,15.0:15,43.240920000,5.362098000000,Planète Mer,Plage du bain des dames,26626,observation-1c253b21-cf3c-4f2c-ac64-af56e98489db,https://biolit.fr/observations/observation-1c253b21-cf3c-4f2c-ac64-af56e98489db/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211214_154927_compress70-scaled.jpg,,TRUE, +N1,26932,sortie-1c253b21-cf3c-4f2c-ac64-af56e98489db,https://biolit.fr/sorties/sortie-1c253b21-cf3c-4f2c-ac64-af56e98489db/,Marine,,12/14/2021 0:00,15.0000000,15.0:15,43.240920000,5.362098000000,Planète Mer,Plage du bain des dames,26628,observation-1c253b21-cf3c-4f2c-ac64-af56e98489db-2,https://biolit.fr/observations/observation-1c253b21-cf3c-4f2c-ac64-af56e98489db-2/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211214_154901_compress17-scaled.jpg,,TRUE, +N1,26933,sortie-53a60d6c-4b0b-4bf2-8201-235750bf70b7,https://biolit.fr/sorties/sortie-53a60d6c-4b0b-4bf2-8201-235750bf70b7/,AIEJE,,12/14/2021 0:00,17.0000000,19.0000000,43.32839200000,5.054981000000,AIEJE,Plage de la vieille Couronne,26630,observation-53a60d6c-4b0b-4bf2-8201-235750bf70b7,https://biolit.fr/observations/observation-53a60d6c-4b0b-4bf2-8201-235750bf70b7/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1636[1]-scaled.jpg,,TRUE, +N1,26933,sortie-53a60d6c-4b0b-4bf2-8201-235750bf70b7,https://biolit.fr/sorties/sortie-53a60d6c-4b0b-4bf2-8201-235750bf70b7/,AIEJE,,12/14/2021 0:00,17.0000000,19.0000000,43.32839200000,5.054981000000,AIEJE,Plage de la vieille Couronne,26632,observation-53a60d6c-4b0b-4bf2-8201-235750bf70b7-2,https://biolit.fr/observations/observation-53a60d6c-4b0b-4bf2-8201-235750bf70b7-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1637[1]-scaled.jpg,,TRUE, +N1,26933,sortie-53a60d6c-4b0b-4bf2-8201-235750bf70b7,https://biolit.fr/sorties/sortie-53a60d6c-4b0b-4bf2-8201-235750bf70b7/,AIEJE,,12/14/2021 0:00,17.0000000,19.0000000,43.32839200000,5.054981000000,AIEJE,Plage de la vieille Couronne,26634,observation-53a60d6c-4b0b-4bf2-8201-235750bf70b7-3,https://biolit.fr/observations/observation-53a60d6c-4b0b-4bf2-8201-235750bf70b7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1642[1]-scaled.jpg,,FALSE, +N1,26933,sortie-53a60d6c-4b0b-4bf2-8201-235750bf70b7,https://biolit.fr/sorties/sortie-53a60d6c-4b0b-4bf2-8201-235750bf70b7/,AIEJE,,12/14/2021 0:00,17.0000000,19.0000000,43.32839200000,5.054981000000,AIEJE,Plage de la vieille Couronne,26636,observation-53a60d6c-4b0b-4bf2-8201-235750bf70b7-4,https://biolit.fr/observations/observation-53a60d6c-4b0b-4bf2-8201-235750bf70b7-4/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_1639[1]-scaled.jpg,,TRUE, +N1,26934,sortie-469bd302-7490-4dd5-8aa0-74a2a648137f,https://biolit.fr/sorties/sortie-469bd302-7490-4dd5-8aa0-74a2a648137f/,Dorian ROULET,,11/26/2021 0:00,10.0000000,10.0000000,43.280582000000,5.353050000000,Planète Mer,Anse de la fausse monnaie,26638,observation-469bd302-7490-4dd5-8aa0-74a2a648137f,https://biolit.fr/observations/observation-469bd302-7490-4dd5-8aa0-74a2a648137f/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20211102090640_1-scaled.jpg,,FALSE, +N1,26935,sortie-2ffa3ca7-2d9f-4ec3-ac0f-28df8cce43ed,https://biolit.fr/sorties/sortie-2ffa3ca7-2d9f-4ec3-ac0f-28df8cce43ed/,Marine,,9/18/2021 0:00,9.0000000,10.0000000,43.214893000000,5.343016000000,Planète Mer,Anse de la maronaise,26640,observation-2ffa3ca7-2d9f-4ec3-ac0f-28df8cce43ed,https://biolit.fr/observations/observation-2ffa3ca7-2d9f-4ec3-ac0f-28df8cce43ed/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210918_094042-scaled.jpg,,FALSE, +N1,26935,sortie-2ffa3ca7-2d9f-4ec3-ac0f-28df8cce43ed,https://biolit.fr/sorties/sortie-2ffa3ca7-2d9f-4ec3-ac0f-28df8cce43ed/,Marine,,9/18/2021 0:00,9.0000000,10.0000000,43.214893000000,5.343016000000,Planète Mer,Anse de la maronaise,26642,observation-2ffa3ca7-2d9f-4ec3-ac0f-28df8cce43ed-2,https://biolit.fr/observations/observation-2ffa3ca7-2d9f-4ec3-ac0f-28df8cce43ed-2/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210918_094022-scaled.jpg,,TRUE, +N1,26936,sortie-8a1f86b7-7956-4472-9a08-64fc4fc91ef3,https://biolit.fr/sorties/sortie-8a1f86b7-7956-4472-9a08-64fc4fc91ef3/,Eric barbier,,09/10/2021,8.0:45,12.0:45,49.42473800000,0.213508000000,,honfleur plage,26658,observation-8a1f86b7-7956-4472-9a08-64fc4fc91ef3-8,https://biolit.fr/observations/observation-8a1f86b7-7956-4472-9a08-64fc4fc91ef3-8/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/plante piquante-rotated.jpg,,TRUE, +N1,26937,sortie-80f344bf-e6ca-419c-b95a-d30466c54e29,https://biolit.fr/sorties/sortie-80f344bf-e6ca-419c-b95a-d30466c54e29/,Eric barbier,,09/10/2021,8.0:45,12.0:45,49.42473800000,0.213508000000,,honfleur plage,26666,observation-80f344bf-e6ca-419c-b95a-d30466c54e29,https://biolit.fr/observations/observation-80f344bf-e6ca-419c-b95a-d30466c54e29/,Chrysaora hysoscella,Méduse rayonnée,,https://biolit.fr/wp-content/uploads/2023/07/méduse_0.jpg,,TRUE, +N1,26937,sortie-80f344bf-e6ca-419c-b95a-d30466c54e29,https://biolit.fr/sorties/sortie-80f344bf-e6ca-419c-b95a-d30466c54e29/,Eric barbier,,09/10/2021,8.0:45,12.0:45,49.42473800000,0.213508000000,,honfleur plage,26667,observation-80f344bf-e6ca-419c-b95a-d30466c54e29-2,https://biolit.fr/observations/observation-80f344bf-e6ca-419c-b95a-d30466c54e29-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabe rose-rotated.jpg,,FALSE, +N1,26937,sortie-80f344bf-e6ca-419c-b95a-d30466c54e29,https://biolit.fr/sorties/sortie-80f344bf-e6ca-419c-b95a-d30466c54e29/,Eric barbier,,09/10/2021,8.0:45,12.0:45,49.42473800000,0.213508000000,,honfleur plage,26668,observation-80f344bf-e6ca-419c-b95a-d30466c54e29-3,https://biolit.fr/observations/observation-80f344bf-e6ca-419c-b95a-d30466c54e29-3/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/algue jaune-rotated.jpg,,TRUE, +N1,26937,sortie-80f344bf-e6ca-419c-b95a-d30466c54e29,https://biolit.fr/sorties/sortie-80f344bf-e6ca-419c-b95a-d30466c54e29/,Eric barbier,,09/10/2021,8.0:45,12.0:45,49.42473800000,0.213508000000,,honfleur plage,26669,observation-80f344bf-e6ca-419c-b95a-d30466c54e29-4,https://biolit.fr/observations/observation-80f344bf-e6ca-419c-b95a-d30466c54e29-4/,Ensis ensis,Couteau-sabre,,https://biolit.fr/wp-content/uploads/2023/07/couteau-rotated.jpg,,TRUE, +N1,26937,sortie-80f344bf-e6ca-419c-b95a-d30466c54e29,https://biolit.fr/sorties/sortie-80f344bf-e6ca-419c-b95a-d30466c54e29/,Eric barbier,,09/10/2021,8.0:45,12.0:45,49.42473800000,0.213508000000,,honfleur plage,26670,observation-80f344bf-e6ca-419c-b95a-d30466c54e29-5,https://biolit.fr/observations/observation-80f344bf-e6ca-419c-b95a-d30466c54e29-5/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/goemon-rotated.jpg,,TRUE, +N1,26937,sortie-80f344bf-e6ca-419c-b95a-d30466c54e29,https://biolit.fr/sorties/sortie-80f344bf-e6ca-419c-b95a-d30466c54e29/,Eric barbier,,09/10/2021,8.0:45,12.0:45,49.42473800000,0.213508000000,,honfleur plage,26671,observation-80f344bf-e6ca-419c-b95a-d30466c54e29-6,https://biolit.fr/observations/observation-80f344bf-e6ca-419c-b95a-d30466c54e29-6/,Honckenya peploides,Pourpier de mer,,https://biolit.fr/wp-content/uploads/2023/07/plante verte-rotated.jpg,,TRUE, +N1,26937,sortie-80f344bf-e6ca-419c-b95a-d30466c54e29,https://biolit.fr/sorties/sortie-80f344bf-e6ca-419c-b95a-d30466c54e29/,Eric barbier,,09/10/2021,8.0:45,12.0:45,49.42473800000,0.213508000000,,honfleur plage,26672,observation-80f344bf-e6ca-419c-b95a-d30466c54e29-7,https://biolit.fr/observations/observation-80f344bf-e6ca-419c-b95a-d30466c54e29-7/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/chapeau chinois-rotated.jpg,,TRUE, +N1,26937,sortie-80f344bf-e6ca-419c-b95a-d30466c54e29,https://biolit.fr/sorties/sortie-80f344bf-e6ca-419c-b95a-d30466c54e29/,Eric barbier,,09/10/2021,8.0:45,12.0:45,49.42473800000,0.213508000000,,honfleur plage,26673,observation-80f344bf-e6ca-419c-b95a-d30466c54e29-8,https://biolit.fr/observations/observation-80f344bf-e6ca-419c-b95a-d30466c54e29-8/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/plante piquante-rotated.jpg,,TRUE, +N1,26937,sortie-80f344bf-e6ca-419c-b95a-d30466c54e29,https://biolit.fr/sorties/sortie-80f344bf-e6ca-419c-b95a-d30466c54e29/,Eric barbier,,09/10/2021,8.0:45,12.0:45,49.42473800000,0.213508000000,,honfleur plage,26674,observation-80f344bf-e6ca-419c-b95a-d30466c54e29-9,https://biolit.fr/observations/observation-80f344bf-e6ca-419c-b95a-d30466c54e29-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/plante rouge et petits trous ds sable-rotated.jpg,,FALSE, +N1,26937,sortie-80f344bf-e6ca-419c-b95a-d30466c54e29,https://biolit.fr/sorties/sortie-80f344bf-e6ca-419c-b95a-d30466c54e29/,Eric barbier,,09/10/2021,8.0:45,12.0:45,49.42473800000,0.213508000000,,honfleur plage,26675,observation-80f344bf-e6ca-419c-b95a-d30466c54e29-10,https://biolit.fr/observations/observation-80f344bf-e6ca-419c-b95a-d30466c54e29-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/oiseau echassier chevalier sylvain peut etre-rotated.jpg,,FALSE, +N1,26937,sortie-80f344bf-e6ca-419c-b95a-d30466c54e29,https://biolit.fr/sorties/sortie-80f344bf-e6ca-419c-b95a-d30466c54e29/,Eric barbier,,09/10/2021,8.0:45,12.0:45,49.42473800000,0.213508000000,,honfleur plage,26676,observation-80f344bf-e6ca-419c-b95a-d30466c54e29-11,https://biolit.fr/observations/observation-80f344bf-e6ca-419c-b95a-d30466c54e29-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/monticules de sables et petits trous-rotated.jpg,,FALSE, +N1,26938,sortie-3aa471b3-cef4-4550-a43e-f39bc9929001,https://biolit.fr/sorties/sortie-3aa471b3-cef4-4550-a43e-f39bc9929001/,Marine,,09/04/2021,10.0000000,10.0000000,43.256458000000,5.375144000000,Planète Mer,Plage borely,26677,observation-3aa471b3-cef4-4550-a43e-f39bc9929001,https://biolit.fr/observations/observation-3aa471b3-cef4-4550-a43e-f39bc9929001/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_07041.jpg,,FALSE, +N1,26938,sortie-3aa471b3-cef4-4550-a43e-f39bc9929001,https://biolit.fr/sorties/sortie-3aa471b3-cef4-4550-a43e-f39bc9929001/,Marine,,09/04/2021,10.0000000,10.0000000,43.256458000000,5.375144000000,Planète Mer,Plage borely,26679,observation-3aa471b3-cef4-4550-a43e-f39bc9929001-2,https://biolit.fr/observations/observation-3aa471b3-cef4-4550-a43e-f39bc9929001-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_07061.jpg,,FALSE, +N1,26938,sortie-3aa471b3-cef4-4550-a43e-f39bc9929001,https://biolit.fr/sorties/sortie-3aa471b3-cef4-4550-a43e-f39bc9929001/,Marine,,09/04/2021,10.0000000,10.0000000,43.256458000000,5.375144000000,Planète Mer,Plage borely,26681,observation-3aa471b3-cef4-4550-a43e-f39bc9929001-3,https://biolit.fr/observations/observation-3aa471b3-cef4-4550-a43e-f39bc9929001-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_07051.jpg,,FALSE, +N1,26939,sortie-5e26689d-14e4-4400-b787-41e033344c71,https://biolit.fr/sorties/sortie-5e26689d-14e4-4400-b787-41e033344c71/,fl0r3nt,,09/02/2021,18.0000000,20.0000000,35.225921000000,23.682848000000,,"Paleochora, Crète",26683,observation-5e26689d-14e4-4400-b787-41e033344c71,https://biolit.fr/observations/observation-5e26689d-14e4-4400-b787-41e033344c71/,Pterois volitans/miles,Rascasse volante du Pacifique/de l'océan Indien,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20210902-WA0003.jpg,,TRUE, +N1,26940,sortie-c185be23-4cc5-4dd5-bcc7-fa3e6d750326,https://biolit.fr/sorties/sortie-c185be23-4cc5-4dd5-bcc7-fa3e6d750326/,doudou76,,7/27/2021 0:00,9.0000000,16.0000000,49.646131000000,0.153191000000,,plage de st jouin de bruneval,26685,observation-c185be23-4cc5-4dd5-bcc7-fa3e6d750326,https://biolit.fr/observations/observation-c185be23-4cc5-4dd5-bcc7-fa3e6d750326/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/20210803_114431-scaled.jpg,,TRUE, +N1,26941,sortie-b82f8297-ac4f-4156-9747-7ce096ede31f,https://biolit.fr/sorties/sortie-b82f8297-ac4f-4156-9747-7ce096ede31f/,Marine,,06/04/2021,14.0000000,14.0000000,43.209479000000,5.372424000000,Planète Mer,Calanques de Marseilleveyre,26687,observation-b82f8297-ac4f-4156-9747-7ce096ede31f,https://biolit.fr/observations/observation-b82f8297-ac4f-4156-9747-7ce096ede31f/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210604_132725_compress68-scaled.jpg,,TRUE, +N1,26941,sortie-b82f8297-ac4f-4156-9747-7ce096ede31f,https://biolit.fr/sorties/sortie-b82f8297-ac4f-4156-9747-7ce096ede31f/,Marine,,06/04/2021,14.0000000,14.0000000,43.209479000000,5.372424000000,Planète Mer,Calanques de Marseilleveyre,26689,observation-b82f8297-ac4f-4156-9747-7ce096ede31f-2,https://biolit.fr/observations/observation-b82f8297-ac4f-4156-9747-7ce096ede31f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210604_132355_compress23-scaled.jpg,,FALSE, +N1,26941,sortie-b82f8297-ac4f-4156-9747-7ce096ede31f,https://biolit.fr/sorties/sortie-b82f8297-ac4f-4156-9747-7ce096ede31f/,Marine,,06/04/2021,14.0000000,14.0000000,43.209479000000,5.372424000000,Planète Mer,Calanques de Marseilleveyre,26691,observation-b82f8297-ac4f-4156-9747-7ce096ede31f-3,https://biolit.fr/observations/observation-b82f8297-ac4f-4156-9747-7ce096ede31f-3/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210604_132425_compress20-scaled.jpg,,TRUE, +N1,26941,sortie-b82f8297-ac4f-4156-9747-7ce096ede31f,https://biolit.fr/sorties/sortie-b82f8297-ac4f-4156-9747-7ce096ede31f/,Marine,,06/04/2021,14.0000000,14.0000000,43.209479000000,5.372424000000,Planète Mer,Calanques de Marseilleveyre,26693,observation-b82f8297-ac4f-4156-9747-7ce096ede31f-4,https://biolit.fr/observations/observation-b82f8297-ac4f-4156-9747-7ce096ede31f-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210604_132716_compress69-scaled.jpg,,FALSE, +N1,26941,sortie-b82f8297-ac4f-4156-9747-7ce096ede31f,https://biolit.fr/sorties/sortie-b82f8297-ac4f-4156-9747-7ce096ede31f/,Marine,,06/04/2021,14.0000000,14.0000000,43.209479000000,5.372424000000,Planète Mer,Calanques de Marseilleveyre,26695,observation-b82f8297-ac4f-4156-9747-7ce096ede31f-5,https://biolit.fr/observations/observation-b82f8297-ac4f-4156-9747-7ce096ede31f-5/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210604_132203_compress49-scaled.jpg,,TRUE, +N1,26942,sortie-ac6fe086-6c77-4697-8338-7c42b90b33de,https://biolit.fr/sorties/sortie-ac6fe086-6c77-4697-8338-7c42b90b33de/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209559000000,5.372684000000,,"Marseille, Parc National des Calanques",26697,observation-ac6fe086-6c77-4697-8338-7c42b90b33de,https://biolit.fr/observations/observation-ac6fe086-6c77-4697-8338-7c42b90b33de/,Carpobrotus acinaciformis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6877-scaled.jpg,,TRUE, +N1,26942,sortie-ac6fe086-6c77-4697-8338-7c42b90b33de,https://biolit.fr/sorties/sortie-ac6fe086-6c77-4697-8338-7c42b90b33de/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209559000000,5.372684000000,,"Marseille, Parc National des Calanques",26699,observation-ac6fe086-6c77-4697-8338-7c42b90b33de-2,https://biolit.fr/observations/observation-ac6fe086-6c77-4697-8338-7c42b90b33de-2/,Carpobrotus acinaciformis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6878-scaled.jpg,,TRUE, +N1,26942,sortie-ac6fe086-6c77-4697-8338-7c42b90b33de,https://biolit.fr/sorties/sortie-ac6fe086-6c77-4697-8338-7c42b90b33de/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209559000000,5.372684000000,,"Marseille, Parc National des Calanques",26701,observation-ac6fe086-6c77-4697-8338-7c42b90b33de-3,https://biolit.fr/observations/observation-ac6fe086-6c77-4697-8338-7c42b90b33de-3/,Alca torda,Pingouin torda,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6882-scaled.jpeg,,TRUE, +N1,26942,sortie-ac6fe086-6c77-4697-8338-7c42b90b33de,https://biolit.fr/sorties/sortie-ac6fe086-6c77-4697-8338-7c42b90b33de/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209559000000,5.372684000000,,"Marseille, Parc National des Calanques",26702,observation-ac6fe086-6c77-4697-8338-7c42b90b33de-4,https://biolit.fr/observations/observation-ac6fe086-6c77-4697-8338-7c42b90b33de-4/,Opuntia ficus,Figuier de barbarie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6944-scaled.jpg,,TRUE, +N1,26942,sortie-ac6fe086-6c77-4697-8338-7c42b90b33de,https://biolit.fr/sorties/sortie-ac6fe086-6c77-4697-8338-7c42b90b33de/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209559000000,5.372684000000,,"Marseille, Parc National des Calanques",26704,observation-ac6fe086-6c77-4697-8338-7c42b90b33de-5,https://biolit.fr/observations/observation-ac6fe086-6c77-4697-8338-7c42b90b33de-5/,Opuntia ficus,Figuier de barbarie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6945-scaled.jpg,,TRUE, +N1,26943,sortie-482824bc-81e7-4fa0-a081-cdcacc0ae67b,https://biolit.fr/sorties/sortie-482824bc-81e7-4fa0-a081-cdcacc0ae67b/,Pierre Corbrion,,3/24/2021 0:00,14.0000000,16.0000000,48.673413000000,-1.847984000000,,Cancale,26706,observation-482824bc-81e7-4fa0-a081-cdcacc0ae67b,https://biolit.fr/observations/observation-482824bc-81e7-4fa0-a081-cdcacc0ae67b/,Diadumene lineata,Anémone asiatique lignée,,https://biolit.fr/wp-content/uploads/2023/07/P3242215-scaled.jpg,,TRUE, +N1,26943,sortie-482824bc-81e7-4fa0-a081-cdcacc0ae67b,https://biolit.fr/sorties/sortie-482824bc-81e7-4fa0-a081-cdcacc0ae67b/,Pierre Corbrion,,3/24/2021 0:00,14.0000000,16.0000000,48.673413000000,-1.847984000000,,Cancale,26708,observation-482824bc-81e7-4fa0-a081-cdcacc0ae67b-2,https://biolit.fr/observations/observation-482824bc-81e7-4fa0-a081-cdcacc0ae67b-2/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P3242179-scaled.jpg,,TRUE, +N1,26943,sortie-482824bc-81e7-4fa0-a081-cdcacc0ae67b,https://biolit.fr/sorties/sortie-482824bc-81e7-4fa0-a081-cdcacc0ae67b/,Pierre Corbrion,,3/24/2021 0:00,14.0000000,16.0000000,48.673413000000,-1.847984000000,,Cancale,26710,observation-482824bc-81e7-4fa0-a081-cdcacc0ae67b-3,https://biolit.fr/observations/observation-482824bc-81e7-4fa0-a081-cdcacc0ae67b-3/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P3242252-scaled.jpg,,TRUE, +N1,26944,sortie-aeebffaf-7d89-483b-b46f-cf49f9d3ca5f,https://biolit.fr/sorties/sortie-aeebffaf-7d89-483b-b46f-cf49f9d3ca5f/,Pierre Corbrion,,1/28/2021 0:00,17.0000000,18.0000000,48.57181900000,-1.9806520000,,Saint-Suliac,26712,observation-aeebffaf-7d89-483b-b46f-cf49f9d3ca5f,https://biolit.fr/observations/observation-aeebffaf-7d89-483b-b46f-cf49f9d3ca5f/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/P1280493.jpg,,TRUE, +N1,26945,sortie-c271b19f-584b-4ae9-918d-c2053250d768,https://biolit.fr/sorties/sortie-c271b19f-584b-4ae9-918d-c2053250d768/,Pierre Corbrion,,01/10/2021,14.0000000,18.0:25,48.579428000000,-1.967720000000,,Les Guettes,26714,observation-c271b19f-584b-4ae9-918d-c2053250d768,https://biolit.fr/observations/observation-c271b19f-584b-4ae9-918d-c2053250d768/,Ficopomatus enigmaticus,Cascail,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1102160-scaled.jpg,,TRUE, +N1,26946,sortie-f4c9243f-32ab-46c7-9818-10f9204cfe9d,https://biolit.fr/sorties/sortie-f4c9243f-32ab-46c7-9818-10f9204cfe9d/,Atlantique Landes Recifs,,7/31/2018 0:00,10.0000000,12.0000000,43.782356000000,-1.410108000000,,"lac de Port d'Albret, Vieux Boucau",26716,observation-f4c9243f-32ab-46c7-9818-10f9204cfe9d,https://biolit.fr/observations/observation-f4c9243f-32ab-46c7-9818-10f9204cfe9d/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/crabe sanguin (2)-scaled.jpg,,TRUE, +N1,26947,sortie-10e30021-ab51-428c-93ee-024d77db7e91,https://biolit.fr/sorties/sortie-10e30021-ab51-428c-93ee-024d77db7e91/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0000000,11.0000000,43.173936000000,3.192209000000,,Saint-Pierre la mer,26718,observation-10e30021-ab51-428c-93ee-024d77db7e91,https://biolit.fr/observations/observation-10e30021-ab51-428c-93ee-024d77db7e91/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/etrille gros plan.JPG,,TRUE, +N1,26948,sortie-60906797-2dc2-439b-b42a-714b3f7a0a97,https://biolit.fr/sorties/sortie-60906797-2dc2-439b-b42a-714b3f7a0a97/,polig,,6/19/2018 0:00,16.0000000,16.0000000,48.677211000000,-4.346523000000,,brignogan pointe de pontusval,26720,observation-60906797-2dc2-439b-b42a-714b3f7a0a97,https://biolit.fr/observations/observation-60906797-2dc2-439b-b42a-714b3f7a0a97/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0271_0.jpg,,TRUE, +N1,26948,sortie-60906797-2dc2-439b-b42a-714b3f7a0a97,https://biolit.fr/sorties/sortie-60906797-2dc2-439b-b42a-714b3f7a0a97/,polig,,6/19/2018 0:00,16.0000000,16.0000000,48.677211000000,-4.346523000000,,brignogan pointe de pontusval,26722,observation-60906797-2dc2-439b-b42a-714b3f7a0a97-2,https://biolit.fr/observations/observation-60906797-2dc2-439b-b42a-714b3f7a0a97-2/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/P1190374.jpg,,TRUE, +N1,26948,sortie-60906797-2dc2-439b-b42a-714b3f7a0a97,https://biolit.fr/sorties/sortie-60906797-2dc2-439b-b42a-714b3f7a0a97/,polig,,6/19/2018 0:00,16.0000000,16.0000000,48.677211000000,-4.346523000000,,brignogan pointe de pontusval,26724,observation-60906797-2dc2-439b-b42a-714b3f7a0a97-3,https://biolit.fr/observations/observation-60906797-2dc2-439b-b42a-714b3f7a0a97-3/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/P1190377.jpg,,TRUE, +N1,26948,sortie-60906797-2dc2-439b-b42a-714b3f7a0a97,https://biolit.fr/sorties/sortie-60906797-2dc2-439b-b42a-714b3f7a0a97/,polig,,6/19/2018 0:00,16.0000000,16.0000000,48.677211000000,-4.346523000000,,brignogan pointe de pontusval,26726,observation-60906797-2dc2-439b-b42a-714b3f7a0a97-4,https://biolit.fr/observations/observation-60906797-2dc2-439b-b42a-714b3f7a0a97-4/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/P1190375.jpg,,TRUE, +N1,26949,sortie-ca54a38c-bd3c-4821-8a30-4eb84971cf40,https://biolit.fr/sorties/sortie-ca54a38c-bd3c-4821-8a30-4eb84971cf40/,polig,,06/12/2018,14.0000000,16.0000000,47.798899000000,-4.347513000000,,plage du ster kerity penmarc'h,26728,observation-ca54a38c-bd3c-4821-8a30-4eb84971cf40,https://biolit.fr/observations/observation-ca54a38c-bd3c-4821-8a30-4eb84971cf40/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0264_0.JPG,,TRUE, +N1,26949,sortie-ca54a38c-bd3c-4821-8a30-4eb84971cf40,https://biolit.fr/sorties/sortie-ca54a38c-bd3c-4821-8a30-4eb84971cf40/,polig,,06/12/2018,14.0000000,16.0000000,47.798899000000,-4.347513000000,,plage du ster kerity penmarc'h,26730,observation-ca54a38c-bd3c-4821-8a30-4eb84971cf40-2,https://biolit.fr/observations/observation-ca54a38c-bd3c-4821-8a30-4eb84971cf40-2/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0266.JPG,,TRUE, +N1,26949,sortie-ca54a38c-bd3c-4821-8a30-4eb84971cf40,https://biolit.fr/sorties/sortie-ca54a38c-bd3c-4821-8a30-4eb84971cf40/,polig,,06/12/2018,14.0000000,16.0000000,47.798899000000,-4.347513000000,,plage du ster kerity penmarc'h,26732,observation-ca54a38c-bd3c-4821-8a30-4eb84971cf40-3,https://biolit.fr/observations/observation-ca54a38c-bd3c-4821-8a30-4eb84971cf40-3/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0267.JPG,,TRUE, +N1,26949,sortie-ca54a38c-bd3c-4821-8a30-4eb84971cf40,https://biolit.fr/sorties/sortie-ca54a38c-bd3c-4821-8a30-4eb84971cf40/,polig,,06/12/2018,14.0000000,16.0000000,47.798899000000,-4.347513000000,,plage du ster kerity penmarc'h,26734,observation-ca54a38c-bd3c-4821-8a30-4eb84971cf40-4,https://biolit.fr/observations/observation-ca54a38c-bd3c-4821-8a30-4eb84971cf40-4/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0250-scaled.jpg,,TRUE, +N1,26950,sortie-066abc00-297e-46fd-8401-1ccb0fb45478,https://biolit.fr/sorties/sortie-066abc00-297e-46fd-8401-1ccb0fb45478/,Club subaquatique Narbonnais,,4/28/2018 0:00,11.0000000,11.0000000,43.174676000000,3.19136100000,,Saint-Pierre la mer,26736,observation-066abc00-297e-46fd-8401-1ccb0fb45478,https://biolit.fr/observations/observation-066abc00-297e-46fd-8401-1ccb0fb45478/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/face etrille.jpg,,TRUE, +N1,26951,sortie-51470d28-4850-4867-a065-dc756bd38cc3,https://biolit.fr/sorties/sortie-51470d28-4850-4867-a065-dc756bd38cc3/,ESTRAN Cité de la Mer,,11/03/2017,12.0000000,14.0000000,49.900196000000,0.870033000000,,Saint Aubin sur mer,26738,observation-51470d28-4850-4867-a065-dc756bd38cc3,https://biolit.fr/observations/observation-51470d28-4850-4867-a065-dc756bd38cc3/,Callinectes sapidus,Crabe bleu américain,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20171026 crabe bleu.jpg,,TRUE, +N1,26952,sortie-4dc04b23-c4e4-428a-ad66-812479b10c02,https://biolit.fr/sorties/sortie-4dc04b23-c4e4-428a-ad66-812479b10c02/,CarpeDiem,,8/13/2017 0:00,17.0000000,18.0000000,42.963036000000,9.347707000000,,"centuri, petite crique",26740,observation-4dc04b23-c4e4-428a-ad66-812479b10c02,https://biolit.fr/observations/observation-4dc04b23-c4e4-428a-ad66-812479b10c02/,,,,https://biolit.fr/wp-content/uploads/2023/07/Caulerpa racemosa_2-scaled.jpg,,FALSE, +N1,26953,sortie-5353e131-68de-4d4e-9c1d-3b8377c59d29,https://biolit.fr/sorties/sortie-5353e131-68de-4d4e-9c1d-3b8377c59d29/,ESTRAN Cité de la Mer,,05/04/2017,14.0000000,15.0000000,49.92533200000,1.059940000000,,Dieppe,26742,observation-5353e131-68de-4d4e-9c1d-3b8377c59d29,https://biolit.fr/observations/observation-5353e131-68de-4d4e-9c1d-3b8377c59d29/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20170504_151500-scaled.jpg,,TRUE, +N1,26953,sortie-5353e131-68de-4d4e-9c1d-3b8377c59d29,https://biolit.fr/sorties/sortie-5353e131-68de-4d4e-9c1d-3b8377c59d29/,ESTRAN Cité de la Mer,,05/04/2017,14.0000000,15.0000000,49.92533200000,1.059940000000,,Dieppe,26744,observation-5353e131-68de-4d4e-9c1d-3b8377c59d29-2,https://biolit.fr/observations/observation-5353e131-68de-4d4e-9c1d-3b8377c59d29-2/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20170504_151502-scaled.jpg,,TRUE, +N1,26953,sortie-5353e131-68de-4d4e-9c1d-3b8377c59d29,https://biolit.fr/sorties/sortie-5353e131-68de-4d4e-9c1d-3b8377c59d29/,ESTRAN Cité de la Mer,,05/04/2017,14.0000000,15.0000000,49.92533200000,1.059940000000,,Dieppe,26746,observation-5353e131-68de-4d4e-9c1d-3b8377c59d29-3,https://biolit.fr/observations/observation-5353e131-68de-4d4e-9c1d-3b8377c59d29-3/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20170504_151505-scaled.jpg,,TRUE, +N1,26954,sortie-15617f25-94ec-4b16-8a26-4814bdf0dde1,https://biolit.fr/sorties/sortie-15617f25-94ec-4b16-8a26-4814bdf0dde1/,Joaronchin,,02/06/2017,16.0000000,18.0000000,43.33248300000,5.197407000000,,ensuès-la-redonne,26748,observation-15617f25-94ec-4b16-8a26-4814bdf0dde1,https://biolit.fr/observations/observation-15617f25-94ec-4b16-8a26-4814bdf0dde1/,Xantho poressa,Xanthe de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/photo 4_5-scaled.jpg,,TRUE, +N1,26955,sortie-4436423a-6a15-481e-8019-beaa3e913127,https://biolit.fr/sorties/sortie-4436423a-6a15-481e-8019-beaa3e913127/,Marine,,9/17/2016 0:00,9.0000000,11.0000000,43.236201000000,5.359857000000,,Plage de la bonne brise,26750,observation-4436423a-6a15-481e-8019-beaa3e913127,https://biolit.fr/observations/observation-4436423a-6a15-481e-8019-beaa3e913127/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_1727.JPG,,TRUE, +N1,26956,sortie-9d4144ca-dc2a-418e-8226-aec970919b51,https://biolit.fr/sorties/sortie-9d4144ca-dc2a-418e-8226-aec970919b51/,MouleFrite,,10/10/2016,9.0000000,11.0000000,43.041809000000,6.150299000000,,Giens,26752,observation-9d4144ca-dc2a-418e-8226-aec970919b51,https://biolit.fr/observations/observation-9d4144ca-dc2a-418e-8226-aec970919b51/,Opuntia ficus,Figuier de barbarie,,https://biolit.fr/wp-content/uploads/2023/07/barbarie.jpg,,TRUE, +N1,26957,sortie-2f997430-5d4e-4300-9637-1e44e64a2e4c,https://biolit.fr/sorties/sortie-2f997430-5d4e-4300-9637-1e44e64a2e4c/,ecole publique CAVALIERE,,9/23/2016 0:00,9.0000000,12.0000000,43.129395000000,6.372268000000,, Cavalière LE LAVANDOU,26754,observation-2f997430-5d4e-4300-9637-1e44e64a2e4c,https://biolit.fr/observations/observation-2f997430-5d4e-4300-9637-1e44e64a2e4c/,,,,https://biolit.fr/wp-content/uploads/2023/07/P9180053-scaled.jpg,,FALSE, +N1,26958,sortie-816ee021-805c-46de-a26d-c68794e1802b,https://biolit.fr/sorties/sortie-816ee021-805c-46de-a26d-c68794e1802b/,Ecole de la mer,,4/18/2016 0:00,10.0000000,12.0000000,16.213029000000,-61.536544000000,,Pointe à Pitre,26756,observation-816ee021-805c-46de-a26d-c68794e1802b,https://biolit.fr/observations/observation-816ee021-805c-46de-a26d-c68794e1802b/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2016-04-18 à 16.41.26.png,,FALSE, +N1,26959,sortie-e6b6e1a5-9ad9-4903-a52b-3b21e3b8295d,https://biolit.fr/sorties/sortie-e6b6e1a5-9ad9-4903-a52b-3b21e3b8295d/,Ecole de la mer,,3/21/2016 0:00,9.0:45,10.0000000,16.215741000000,-61.537509000000,,Ilet cochons ,26758,observation-e6b6e1a5-9ad9-4903-a52b-3b21e3b8295d,https://biolit.fr/observations/observation-e6b6e1a5-9ad9-4903-a52b-3b21e3b8295d/,,,,https://biolit.fr/wp-content/uploads/2023/07/GOPR1924.JPG,,FALSE, +N1,26959,sortie-e6b6e1a5-9ad9-4903-a52b-3b21e3b8295d,https://biolit.fr/sorties/sortie-e6b6e1a5-9ad9-4903-a52b-3b21e3b8295d/,Ecole de la mer,,3/21/2016 0:00,9.0:45,10.0000000,16.215741000000,-61.537509000000,,Ilet cochons ,26760,observation-e6b6e1a5-9ad9-4903-a52b-3b21e3b8295d-2,https://biolit.fr/observations/observation-e6b6e1a5-9ad9-4903-a52b-3b21e3b8295d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/GOPR1961-001.JPG,,FALSE, +N1,26960,sortie-d0dd4380-4131-4b13-8851-e4d9786c1871,https://biolit.fr/sorties/sortie-d0dd4380-4131-4b13-8851-e4d9786c1871/,Centre de Découverte Mer et Montagne,,11/04/2015,15.0000000,16.0000000,43.689334000000,7.294495000000,,Sentier littoral Cap de Nie,26762,observation-d0dd4380-4131-4b13-8851-e4d9786c1871,https://biolit.fr/observations/observation-d0dd4380-4131-4b13-8851-e4d9786c1871/,,,,https://biolit.fr/wp-content/uploads/2023/07/151104_CN_biolit_ClA (10)figuier de barbarie-scaled.jpg,,FALSE, +N1,26960,sortie-d0dd4380-4131-4b13-8851-e4d9786c1871,https://biolit.fr/sorties/sortie-d0dd4380-4131-4b13-8851-e4d9786c1871/,Centre de Découverte Mer et Montagne,,11/04/2015,15.0000000,16.0000000,43.689334000000,7.294495000000,,Sentier littoral Cap de Nie,26764,observation-d0dd4380-4131-4b13-8851-e4d9786c1871-2,https://biolit.fr/observations/observation-d0dd4380-4131-4b13-8851-e4d9786c1871-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/151104_CN_biolit_ClA (34)-scaled.jpg,,FALSE, +N1,26961,sortie-515bf970-a26c-4ad9-8fa9-a8d06edf4e78,https://biolit.fr/sorties/sortie-515bf970-a26c-4ad9-8fa9-a8d06edf4e78/,Centre de Découverte Mer et Montagne,,8/26/2015 0:00,15.0000000,15.0:45,43.693037000000,7.320783000000,,Rade de Villefranche sur Mer,26766,observation-515bf970-a26c-4ad9-8fa9-a8d06edf4e78,https://biolit.fr/observations/observation-515bf970-a26c-4ad9-8fa9-a8d06edf4e78/,Percnon gibbesi,Crabe plat des oursins,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/150824_enquete_PMT_10-12_MR (21) [1600x1200].JPG,,TRUE, +N1,26962,sortie-f1e07a6d-8c7b-44b9-b34a-f6c0c6342d19,https://biolit.fr/sorties/sortie-f1e07a6d-8c7b-44b9-b34a-f6c0c6342d19/,Marine,,10/04/2015,10.0000000,17.0000000,43.154247000000,6.481978000000,,Baie du Figier,26768,observation-f1e07a6d-8c7b-44b9-b34a-f6c0c6342d19,https://biolit.fr/observations/observation-f1e07a6d-8c7b-44b9-b34a-f6c0c6342d19/,,,,https://biolit.fr/wp-content/uploads/2023/07/PA040021-scaled.jpg,,FALSE, +N1,26963,sortie-f54f2c68-8502-4542-95ad-5a052314ebbb,https://biolit.fr/sorties/sortie-f54f2c68-8502-4542-95ad-5a052314ebbb/,NAUSICAA,,6/27/2015 0:00,15.0000000,16.0000000,50.828527000000,1.589782000000,,Audresselles,26770,observation-f54f2c68-8502-4542-95ad-5a052314ebbb,https://biolit.fr/observations/observation-f54f2c68-8502-4542-95ad-5a052314ebbb/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/DSCF9597-scaled.jpg,,TRUE, +N1,26964,sortie-5426d991-3edb-4836-869f-339335bf3c4a,https://biolit.fr/sorties/sortie-5426d991-3edb-4836-869f-339335bf3c4a/,Marine,,07/02/2015,16.0000000,19.0000000,43.209448000000,5.372823000000,,Calanque de Marseilleveyre,26772,observation-5426d991-3edb-4836-869f-339335bf3c4a,https://biolit.fr/observations/observation-5426d991-3edb-4836-869f-339335bf3c4a/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0704-scaled.jpg,,FALSE, +N1,26964,sortie-5426d991-3edb-4836-869f-339335bf3c4a,https://biolit.fr/sorties/sortie-5426d991-3edb-4836-869f-339335bf3c4a/,Marine,,07/02/2015,16.0000000,19.0000000,43.209448000000,5.372823000000,,Calanque de Marseilleveyre,26774,observation-5426d991-3edb-4836-869f-339335bf3c4a-2,https://biolit.fr/observations/observation-5426d991-3edb-4836-869f-339335bf3c4a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0709-scaled.jpg,,FALSE, +N1,26965,sortie-b8ededb0-a73d-495c-9516-177b64809ba4,https://biolit.fr/sorties/sortie-b8ededb0-a73d-495c-9516-177b64809ba4/,Pierre THIRIET,,05/12/2015,15.0000000,16.0000000,48.452166000000,-5.123122000000,,Baie de Lampaul - Loqueltas,26776,observation-b8ededb0-a73d-495c-9516-177b64809ba4,https://biolit.fr/observations/observation-b8ededb0-a73d-495c-9516-177b64809ba4/,Undaria pinnatifida,Wakamé,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/2015_05_Plongee_Oussant_selection_P1060270-scaled.jpg,,TRUE, +N1,26966,sortie-8822ab23-87cd-48d8-a51d-0320ea96be99,https://biolit.fr/sorties/sortie-8822ab23-87cd-48d8-a51d-0320ea96be99/,Marine,,5/22/2015 0:00,15.0000000,17.0:35,43.419164000000,5.174415000000,,Le Lido du Jaï,26778,observation-8822ab23-87cd-48d8-a51d-0320ea96be99,https://biolit.fr/observations/observation-8822ab23-87cd-48d8-a51d-0320ea96be99/,Arcuatula senhousia,Moule asiatique,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_0628-scaled.jpg,,TRUE, +N1,26967,sortie-9741830d-89d9-42de-b2a2-c3b6fc5aeb39,https://biolit.fr/sorties/sortie-9741830d-89d9-42de-b2a2-c3b6fc5aeb39/,wiem.boussellaa@hotmail.com,,01/01/2014,7.0000000,15.0000000,34.568032000000,11.362808000000,,Golfe de Gabès,26780,observation-9741830d-89d9-42de-b2a2-c3b6fc5aeb39,https://biolit.fr/observations/observation-9741830d-89d9-42de-b2a2-c3b6fc5aeb39/,Fistularia commersonii,Poisson-flûte,,https://biolit.fr/wp-content/uploads/2023/07/fistularia.jpg,,TRUE, +N1,26967,sortie-9741830d-89d9-42de-b2a2-c3b6fc5aeb39,https://biolit.fr/sorties/sortie-9741830d-89d9-42de-b2a2-c3b6fc5aeb39/,wiem.boussellaa@hotmail.com,,01/01/2014,7.0000000,15.0000000,34.568032000000,11.362808000000,,Golfe de Gabès,26782,observation-9741830d-89d9-42de-b2a2-c3b6fc5aeb39-2,https://biolit.fr/observations/observation-9741830d-89d9-42de-b2a2-c3b6fc5aeb39-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/images (1).jpg,,FALSE, +N1,26967,sortie-9741830d-89d9-42de-b2a2-c3b6fc5aeb39,https://biolit.fr/sorties/sortie-9741830d-89d9-42de-b2a2-c3b6fc5aeb39/,wiem.boussellaa@hotmail.com,,01/01/2014,7.0000000,15.0000000,34.568032000000,11.362808000000,,Golfe de Gabès,26784,observation-9741830d-89d9-42de-b2a2-c3b6fc5aeb39-3,https://biolit.fr/observations/observation-9741830d-89d9-42de-b2a2-c3b6fc5aeb39-3/,Siganus rivulatus,Poisson-lapin à ventre strié,,https://biolit.fr/wp-content/uploads/2023/07/images_0.jpg,,TRUE, +N1,26967,sortie-9741830d-89d9-42de-b2a2-c3b6fc5aeb39,https://biolit.fr/sorties/sortie-9741830d-89d9-42de-b2a2-c3b6fc5aeb39/,wiem.boussellaa@hotmail.com,,01/01/2014,7.0000000,15.0000000,34.568032000000,11.362808000000,,Golfe de Gabès,26786,observation-9741830d-89d9-42de-b2a2-c3b6fc5aeb39-4,https://biolit.fr/observations/observation-9741830d-89d9-42de-b2a2-c3b6fc5aeb39-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/téléchargement (1).jpg,,FALSE, +N1,26968,sortie-976b3389-13e0-4a21-8d00-e53950f2975b,https://biolit.fr/sorties/sortie-976b3389-13e0-4a21-8d00-e53950f2975b/,Anne D,,2/22/2015 0:00,8.0000000,10.0000000,50.840784000000,1.58553300000,,Audresselles,26788,observation-976b3389-13e0-4a21-8d00-e53950f2975b,https://biolit.fr/observations/observation-976b3389-13e0-4a21-8d00-e53950f2975b/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/DSCN8762-scaled.jpg,,TRUE, +N1,26969,sortie-a827938b-68c4-40ec-846e-5df0f82dd34a,https://biolit.fr/sorties/sortie-a827938b-68c4-40ec-846e-5df0f82dd34a/,Morice,,3/31/2015 0:00,10.0000000,11.0000000,48.64110700000,-2.072817000000,,Pointe de la roche Pelée,26790,observation-a827938b-68c4-40ec-846e-5df0f82dd34a,https://biolit.fr/observations/observation-a827938b-68c4-40ec-846e-5df0f82dd34a/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_0571-scaled.jpg,,TRUE, +N1,26970,sortie-b1147376-d62c-4bc3-ac75-3bc59a92469f,https://biolit.fr/sorties/sortie-b1147376-d62c-4bc3-ac75-3bc59a92469f/,mdf55000,,2/21/2015 0:00,8.0000000,10.0000000,51.053344000000,2.345667000000,,"Plage entre l'écluse Trystram et l'écluse Charles de Gaulle, Dunkerque",26792,observation-b1147376-d62c-4bc3-ac75-3bc59a92469f,https://biolit.fr/observations/observation-b1147376-d62c-4bc3-ac75-3bc59a92469f/,Styela clava,Ascidie japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Ascidie japonaise-scaled.jpg,,TRUE, +N1,26970,sortie-b1147376-d62c-4bc3-ac75-3bc59a92469f,https://biolit.fr/sorties/sortie-b1147376-d62c-4bc3-ac75-3bc59a92469f/,mdf55000,,2/21/2015 0:00,8.0000000,10.0000000,51.053344000000,2.345667000000,,"Plage entre l'écluse Trystram et l'écluse Charles de Gaulle, Dunkerque",26794,observation-b1147376-d62c-4bc3-ac75-3bc59a92469f-2,https://biolit.fr/observations/observation-b1147376-d62c-4bc3-ac75-3bc59a92469f-2/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Huître japonaise-scaled.jpg,,TRUE, +N1,26970,sortie-b1147376-d62c-4bc3-ac75-3bc59a92469f,https://biolit.fr/sorties/sortie-b1147376-d62c-4bc3-ac75-3bc59a92469f/,mdf55000,,2/21/2015 0:00,8.0000000,10.0000000,51.053344000000,2.345667000000,,"Plage entre l'écluse Trystram et l'écluse Charles de Gaulle, Dunkerque",26796,observation-b1147376-d62c-4bc3-ac75-3bc59a92469f-3,https://biolit.fr/observations/observation-b1147376-d62c-4bc3-ac75-3bc59a92469f-3/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crépidules-scaled.jpg,,TRUE, +N1,26970,sortie-b1147376-d62c-4bc3-ac75-3bc59a92469f,https://biolit.fr/sorties/sortie-b1147376-d62c-4bc3-ac75-3bc59a92469f/,mdf55000,,2/21/2015 0:00,8.0000000,10.0000000,51.053344000000,2.345667000000,,"Plage entre l'écluse Trystram et l'écluse Charles de Gaulle, Dunkerque",26798,observation-b1147376-d62c-4bc3-ac75-3bc59a92469f-4,https://biolit.fr/observations/observation-b1147376-d62c-4bc3-ac75-3bc59a92469f-4/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Hemigrapsus takanoï-scaled.jpg,,TRUE, +N1,26971,sortie-a33f3109-713b-4faf-b739-8d471ca101e8,https://biolit.fr/sorties/sortie-a33f3109-713b-4faf-b739-8d471ca101e8/,Katy M,,1/23/2015 0:00,9.0000000,10.0000000,50.87156500000,1.590174000000,,Cap Gris Nez,26800,observation-a33f3109-713b-4faf-b739-8d471ca101e8,https://biolit.fr/observations/observation-a33f3109-713b-4faf-b739-8d471ca101e8/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2017.JPG,,TRUE, +N1,26971,sortie-a33f3109-713b-4faf-b739-8d471ca101e8,https://biolit.fr/sorties/sortie-a33f3109-713b-4faf-b739-8d471ca101e8/,Katy M,,1/23/2015 0:00,9.0000000,10.0000000,50.87156500000,1.590174000000,,Cap Gris Nez,26802,observation-a33f3109-713b-4faf-b739-8d471ca101e8-2,https://biolit.fr/observations/observation-a33f3109-713b-4faf-b739-8d471ca101e8-2/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/DSCN2018.JPG,,TRUE, +N1,26971,sortie-a33f3109-713b-4faf-b739-8d471ca101e8,https://biolit.fr/sorties/sortie-a33f3109-713b-4faf-b739-8d471ca101e8/,Katy M,,1/23/2015 0:00,9.0000000,10.0000000,50.87156500000,1.590174000000,,Cap Gris Nez,26804,observation-a33f3109-713b-4faf-b739-8d471ca101e8-3,https://biolit.fr/observations/observation-a33f3109-713b-4faf-b739-8d471ca101e8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2050.JPG,,FALSE, +N1,26972,sortie-2c69bda8-66a1-4f82-80d4-61655111da5e,https://biolit.fr/sorties/sortie-2c69bda8-66a1-4f82-80d4-61655111da5e/,alicemalouine,,10/28/2014 0:00,14.0000000,16.0000000,48.641737000000,-2.073617000000,,plage st énogat,26806,observation-2c69bda8-66a1-4f82-80d4-61655111da5e,https://biolit.fr/observations/observation-2c69bda8-66a1-4f82-80d4-61655111da5e/,,,,https://biolit.fr/wp-content/uploads/2023/07/SAM_0550-scaled.jpg,,FALSE, +N1,26973,sortie-e2dd3f40-0d66-4fce-b95b-74fa0ada2a03,https://biolit.fr/sorties/sortie-e2dd3f40-0d66-4fce-b95b-74fa0ada2a03/,tridimeg,,10/28/2014 0:00,14.0000000,16.0000000,48.642098000000,-2.074078000000,,plage st énogat,26808,observation-e2dd3f40-0d66-4fce-b95b-74fa0ada2a03,https://biolit.fr/observations/observation-e2dd3f40-0d66-4fce-b95b-74fa0ada2a03/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/SAM_0554-scaled.jpg,,TRUE, +N1,26973,sortie-e2dd3f40-0d66-4fce-b95b-74fa0ada2a03,https://biolit.fr/sorties/sortie-e2dd3f40-0d66-4fce-b95b-74fa0ada2a03/,tridimeg,,10/28/2014 0:00,14.0000000,16.0000000,48.642098000000,-2.074078000000,,plage st énogat,26810,observation-e2dd3f40-0d66-4fce-b95b-74fa0ada2a03-2,https://biolit.fr/observations/observation-e2dd3f40-0d66-4fce-b95b-74fa0ada2a03-2/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/SAM_0551-scaled.jpg,,TRUE, +N1,26974,sortie-dc34f4df-e9c0-489f-81ef-e4e8b9f86037,https://biolit.fr/sorties/sortie-dc34f4df-e9c0-489f-81ef-e4e8b9f86037/,tridimeg,,10/28/2014 0:00,14.0000000,16.0000000,48.641575000000,-2.074148000000,,Estran de saint enogat,26812,observation-dc34f4df-e9c0-489f-81ef-e4e8b9f86037,https://biolit.fr/observations/observation-dc34f4df-e9c0-489f-81ef-e4e8b9f86037/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5709-scaled.jpg,,FALSE, +N1,26975,sortie-8527564b-8924-4fa5-af34-1bef87ebdc03,https://biolit.fr/sorties/sortie-8527564b-8924-4fa5-af34-1bef87ebdc03/,Marine,,10/07/2014,10.0000000,11.0000000,43.333969000000,5.197873000000,,Plage des Pebraires,26814,observation-8527564b-8924-4fa5-af34-1bef87ebdc03,https://biolit.fr/observations/observation-8527564b-8924-4fa5-af34-1bef87ebdc03/,Opuntia ficus,Figuier de barbarie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0335-scaled.jpg,,TRUE, +N1,26976,sortie-b034eb4b-82a3-4d6d-9461-26326a0c4ca5,https://biolit.fr/sorties/sortie-b034eb4b-82a3-4d6d-9461-26326a0c4ca5/,Planète Mer,,10/07/2014,12.0000000,14.0000000,48.641743000000,-2.074373000000,,Estran de saint enogat,26816,observation-b034eb4b-82a3-4d6d-9461-26326a0c4ca5,https://biolit.fr/observations/observation-b034eb4b-82a3-4d6d-9461-26326a0c4ca5/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_5531.JPG,,TRUE, +N1,26976,sortie-b034eb4b-82a3-4d6d-9461-26326a0c4ca5,https://biolit.fr/sorties/sortie-b034eb4b-82a3-4d6d-9461-26326a0c4ca5/,Planète Mer,,10/07/2014,12.0000000,14.0000000,48.641743000000,-2.074373000000,,Estran de saint enogat,26818,observation-b034eb4b-82a3-4d6d-9461-26326a0c4ca5-2,https://biolit.fr/observations/observation-b034eb4b-82a3-4d6d-9461-26326a0c4ca5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5552.JPG,,FALSE, +N1,26976,sortie-b034eb4b-82a3-4d6d-9461-26326a0c4ca5,https://biolit.fr/sorties/sortie-b034eb4b-82a3-4d6d-9461-26326a0c4ca5/,Planète Mer,,10/07/2014,12.0000000,14.0000000,48.641743000000,-2.074373000000,,Estran de saint enogat,26820,observation-b034eb4b-82a3-4d6d-9461-26326a0c4ca5-3,https://biolit.fr/observations/observation-b034eb4b-82a3-4d6d-9461-26326a0c4ca5-3/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_5574.JPG,,TRUE, +N1,26976,sortie-b034eb4b-82a3-4d6d-9461-26326a0c4ca5,https://biolit.fr/sorties/sortie-b034eb4b-82a3-4d6d-9461-26326a0c4ca5/,Planète Mer,,10/07/2014,12.0000000,14.0000000,48.641743000000,-2.074373000000,,Estran de saint enogat,26822,observation-b034eb4b-82a3-4d6d-9461-26326a0c4ca5-4,https://biolit.fr/observations/observation-b034eb4b-82a3-4d6d-9461-26326a0c4ca5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5602.JPG,,FALSE, +N1,26976,sortie-b034eb4b-82a3-4d6d-9461-26326a0c4ca5,https://biolit.fr/sorties/sortie-b034eb4b-82a3-4d6d-9461-26326a0c4ca5/,Planète Mer,,10/07/2014,12.0000000,14.0000000,48.641743000000,-2.074373000000,,Estran de saint enogat,26824,observation-b034eb4b-82a3-4d6d-9461-26326a0c4ca5-5,https://biolit.fr/observations/observation-b034eb4b-82a3-4d6d-9461-26326a0c4ca5-5/,Styela clava,Ascidie japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_5605.JPG,,TRUE, +N1,26977,sortie-bb8cc3ac-f6a7-4a9f-9956-7259d7e451cb,https://biolit.fr/sorties/sortie-bb8cc3ac-f6a7-4a9f-9956-7259d7e451cb/,Planète Mer,,10/07/2014,12.0000000,14.0000000,48.641788000000,-2.074169000000,,Estran de Saint Enogat,26826,observation-bb8cc3ac-f6a7-4a9f-9956-7259d7e451cb,https://biolit.fr/observations/observation-bb8cc3ac-f6a7-4a9f-9956-7259d7e451cb/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_5561.JPG,,TRUE, +N1,26978,sortie-b5f1ca68-2425-4c5d-972e-1f371b03fa7f,https://biolit.fr/sorties/sortie-b5f1ca68-2425-4c5d-972e-1f371b03fa7f/,Juh,,09/11/2014,8.0000000,11.0000000,50.751122000000,1.589353000000,,Pointe de la Crêche Boulogne Sur Mer,26828,observation-b5f1ca68-2425-4c5d-972e-1f371b03fa7f,https://biolit.fr/observations/observation-b5f1ca68-2425-4c5d-972e-1f371b03fa7f/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/porcellana platycheles.jpg,,TRUE, +N1,26979,sortie-d666a04a-1c29-4819-85da-35c038449279,https://biolit.fr/sorties/sortie-d666a04a-1c29-4819-85da-35c038449279/,Juh,,09/11/2014,8.0000000,11.0000000,50.7511220000,1.589696000000,,Pointe de la Crêche Boulogne Sur Mer,26830,observation-d666a04a-1c29-4819-85da-35c038449279,https://biolit.fr/observations/observation-d666a04a-1c29-4819-85da-35c038449279/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ligia oceanica.jpg,,FALSE, +N1,26980,sortie-3db25626-8c02-4ae7-a4c9-08bb9285cd5f,https://biolit.fr/sorties/sortie-3db25626-8c02-4ae7-a4c9-08bb9285cd5f/,marion Delporte,,09/11/2014,8.0000000,11.0000000,50.750796000000,1.593988000000,,Boulogne sur Mer,26832,observation-3db25626-8c02-4ae7-a4c9-08bb9285cd5f,https://biolit.fr/observations/observation-3db25626-8c02-4ae7-a4c9-08bb9285cd5f/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Sargassum muticum (Sargasse) 2.png,,TRUE, +N1,26980,sortie-3db25626-8c02-4ae7-a4c9-08bb9285cd5f,https://biolit.fr/sorties/sortie-3db25626-8c02-4ae7-a4c9-08bb9285cd5f/,marion Delporte,,09/11/2014,8.0000000,11.0000000,50.750796000000,1.593988000000,,Boulogne sur Mer,26834,observation-3db25626-8c02-4ae7-a4c9-08bb9285cd5f-2,https://biolit.fr/observations/observation-3db25626-8c02-4ae7-a4c9-08bb9285cd5f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Hemigrapsus sanguineus (crabe sanguin).JPG,,FALSE, +N1,26981,sortie-43e85eef-c74b-4fd2-bfb4-eed1f6b010a2,https://biolit.fr/sorties/sortie-43e85eef-c74b-4fd2-bfb4-eed1f6b010a2/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.751573000000,1.592915000000,,Boulogne / Mer,26836,observation-43e85eef-c74b-4fd2-bfb4-eed1f6b010a2,https://biolit.fr/observations/observation-43e85eef-c74b-4fd2-bfb4-eed1f6b010a2/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/SAM_0103-scaled.jpg,,TRUE, +N1,26981,sortie-43e85eef-c74b-4fd2-bfb4-eed1f6b010a2,https://biolit.fr/sorties/sortie-43e85eef-c74b-4fd2-bfb4-eed1f6b010a2/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.751573000000,1.592915000000,,Boulogne / Mer,26838,observation-43e85eef-c74b-4fd2-bfb4-eed1f6b010a2-2,https://biolit.fr/observations/observation-43e85eef-c74b-4fd2-bfb4-eed1f6b010a2-2/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/SAM_0239-scaled.jpg,,TRUE, +N1,26982,sortie-4cbc4d14-fd8a-4712-b926-6d31f49d7f7c,https://biolit.fr/sorties/sortie-4cbc4d14-fd8a-4712-b926-6d31f49d7f7c/,leajoly,,09/11/2014,8.0000000,11.0000000,50.751106000000,1.591724000000,,plage Boulogne-sur-mer,26840,observation-4cbc4d14-fd8a-4712-b926-6d31f49d7f7c,https://biolit.fr/observations/observation-4cbc4d14-fd8a-4712-b926-6d31f49d7f7c/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Hemigrapsus sanguineus-scaled.jpg,,TRUE, +N1,26982,sortie-4cbc4d14-fd8a-4712-b926-6d31f49d7f7c,https://biolit.fr/sorties/sortie-4cbc4d14-fd8a-4712-b926-6d31f49d7f7c/,leajoly,,09/11/2014,8.0000000,11.0000000,50.751106000000,1.591724000000,,plage Boulogne-sur-mer,26842,observation-4cbc4d14-fd8a-4712-b926-6d31f49d7f7c-2,https://biolit.fr/observations/observation-4cbc4d14-fd8a-4712-b926-6d31f49d7f7c-2/,Diadumene lineata,Anémone asiatique lignée,,https://biolit.fr/wp-content/uploads/2023/07/Diadumene lineata-scaled.jpg,,TRUE, +N1,26982,sortie-4cbc4d14-fd8a-4712-b926-6d31f49d7f7c,https://biolit.fr/sorties/sortie-4cbc4d14-fd8a-4712-b926-6d31f49d7f7c/,leajoly,,09/11/2014,8.0000000,11.0000000,50.751106000000,1.591724000000,,plage Boulogne-sur-mer,26844,observation-4cbc4d14-fd8a-4712-b926-6d31f49d7f7c-3,https://biolit.fr/observations/observation-4cbc4d14-fd8a-4712-b926-6d31f49d7f7c-3/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Sargassum muticum-scaled.jpg,,TRUE, +N1,26983,sortie-750e59b5-2a42-4767-bf7b-eb98983607a0,https://biolit.fr/sorties/sortie-750e59b5-2a42-4767-bf7b-eb98983607a0/,M.DAO-CASTES Corentin,,09/11/2014,9.0000000,11.0000000,50.750728000000,1.594363000000,,Boulogne-sur-mer,26846,observation-750e59b5-2a42-4767-bf7b-eb98983607a0,https://biolit.fr/observations/observation-750e59b5-2a42-4767-bf7b-eb98983607a0/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Sarcasum miticum-scaled.jpg,,TRUE, +N1,26984,sortie-f41dcad7-20bf-4940-b75f-d319bd78e2a1,https://biolit.fr/sorties/sortie-f41dcad7-20bf-4940-b75f-d319bd78e2a1/,M.DAO-CASTES Corentin,,09/11/2014,9.0000000,11.0000000,50.75076900000,1.594277000000,,Boulogne-sur-mer,26848,observation-f41dcad7-20bf-4940-b75f-d319bd78e2a1,https://biolit.fr/observations/observation-f41dcad7-20bf-4940-b75f-d319bd78e2a1/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Hemigraspus sanguineus-scaled.jpg,,TRUE, +N1,26985,sortie-f32acd40-72d1-49c9-9a24-1550db3644dc,https://biolit.fr/sorties/sortie-f32acd40-72d1-49c9-9a24-1550db3644dc/,Mel-Mei,,09/11/2014,8.0000000,11.0000000,50.749601000000,1.59484600000,,Boulogne sur Mer,26850,observation-f32acd40-72d1-49c9-9a24-1550db3644dc,https://biolit.fr/observations/observation-f32acd40-72d1-49c9-9a24-1550db3644dc/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC00478 bis.jpg,,FALSE, +N1,26986,sortie-8b4cef3c-8c83-4831-ae8e-fc36590247a7,https://biolit.fr/sorties/sortie-8b4cef3c-8c83-4831-ae8e-fc36590247a7/,Laurent Debas,,6/30/2014 0:00,9.0000000,11.0000000,43.21008500000,5.420012000000,,Marseille - Calanque de Sormiou,26852,observation-8b4cef3c-8c83-4831-ae8e-fc36590247a7,https://biolit.fr/observations/observation-8b4cef3c-8c83-4831-ae8e-fc36590247a7/,Atriplex halimus,Arroche marine,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0064-scaled.jpg,,TRUE,Identifiable +N1,26987,sortie-54f7ab6a-821c-4d28-b703-fa59b730633f,https://biolit.fr/sorties/sortie-54f7ab6a-821c-4d28-b703-fa59b730633f/,Marine,,5/30/2014 0:00,16.0000000,18.0000000,43.079468000000,5.778604000000,,Les Embiez,26854,observation-54f7ab6a-821c-4d28-b703-fa59b730633f,https://biolit.fr/observations/observation-54f7ab6a-821c-4d28-b703-fa59b730633f/,Carpobrotus edulis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8527-scaled.jpg,,TRUE, +N1,26988,sortie-9005ea79-1a03-4678-b35e-d5138117d4c7,https://biolit.fr/sorties/sortie-9005ea79-1a03-4678-b35e-d5138117d4c7/,Marine,,5/29/2014 0:00,10.0000000,11.0000000,43.094460000000,6.023706000000,,Plage du Pradet,26856,observation-9005ea79-1a03-4678-b35e-d5138117d4c7,https://biolit.fr/observations/observation-9005ea79-1a03-4678-b35e-d5138117d4c7/,Carpobrotus edulis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8395-scaled.jpg,,TRUE, +N1,26988,sortie-9005ea79-1a03-4678-b35e-d5138117d4c7,https://biolit.fr/sorties/sortie-9005ea79-1a03-4678-b35e-d5138117d4c7/,Marine,,5/29/2014 0:00,10.0000000,11.0000000,43.094460000000,6.023706000000,,Plage du Pradet,26858,observation-9005ea79-1a03-4678-b35e-d5138117d4c7-2,https://biolit.fr/observations/observation-9005ea79-1a03-4678-b35e-d5138117d4c7-2/,Carpobrotus acinaciformis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8394-scaled.jpg,,TRUE, +N1,26989,sortie-373031db-2f6b-4fa4-83a4-0b77aa5712a3,https://biolit.fr/sorties/sortie-373031db-2f6b-4fa4-83a4-0b77aa5712a3/,Marine,,5/23/2014 0:00,21.0000000,23.0000000,43.331943000000,5.20015900000,,Calanque des Anthénors,26860,observation-373031db-2f6b-4fa4-83a4-0b77aa5712a3,https://biolit.fr/observations/observation-373031db-2f6b-4fa4-83a4-0b77aa5712a3/,Opuntia ficus,Figuier de barbarie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20140523_133015.jpg,,TRUE, +N1,26990,sortie-123a1069-dc2f-4a3b-abe6-737c49ed3415,https://biolit.fr/sorties/sortie-123a1069-dc2f-4a3b-abe6-737c49ed3415/,Blue eyes,,4/17/2014 0:00,15.0000000,16.0000000,43.418603000000,6.829421000000,,Plage d'Aiguebonne (Saint-Raphaël - Var),26862,observation-123a1069-dc2f-4a3b-abe6-737c49ed3415,https://biolit.fr/observations/observation-123a1069-dc2f-4a3b-abe6-737c49ed3415/,Opuntia ficus,Figuier de barbarie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0080-scaled.jpg,,TRUE, +N1,26990,sortie-123a1069-dc2f-4a3b-abe6-737c49ed3415,https://biolit.fr/sorties/sortie-123a1069-dc2f-4a3b-abe6-737c49ed3415/,Blue eyes,,4/17/2014 0:00,15.0000000,16.0000000,43.418603000000,6.829421000000,,Plage d'Aiguebonne (Saint-Raphaël - Var),26864,observation-123a1069-dc2f-4a3b-abe6-737c49ed3415-2,https://biolit.fr/observations/observation-123a1069-dc2f-4a3b-abe6-737c49ed3415-2/,Opuntia ficus,Figuier de barbarie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0081-scaled.jpg,,TRUE, +N1,26991,sortie-7fa28120-9d65-4127-a288-23a653c5ef7d,https://biolit.fr/sorties/sortie-7fa28120-9d65-4127-a288-23a653c5ef7d/,Laurent Debas,,3/28/2014 0:00,11.0000000,12.0000000,43.438639000000,3.672179000000,,Etang de Thau - Balaruc les Bains,26866,observation-7fa28120-9d65-4127-a288-23a653c5ef7d,https://biolit.fr/observations/observation-7fa28120-9d65-4127-a288-23a653c5ef7d/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/DSC_0116-scaled.jpg,,TRUE, +N1,26992,sortie-4960c279-4b7f-44ad-9016-1ed8240c6fe7,https://biolit.fr/sorties/sortie-4960c279-4b7f-44ad-9016-1ed8240c6fe7/,Robert,,3/19/2014 0:00,14.0000000,16.0000000,43.281687000000,5.30531200000,,Marseille - Îles du Frioul,26868,observation-4960c279-4b7f-44ad-9016-1ed8240c6fe7,https://biolit.fr/observations/observation-4960c279-4b7f-44ad-9016-1ed8240c6fe7/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P3194018-scaled.jpg,,TRUE, +N1,26993,sortie-f0fd2586-ade6-48c2-a6dd-0d5254a7004f,https://biolit.fr/sorties/sortie-f0fd2586-ade6-48c2-a6dd-0d5254a7004f/,Robert,,3/21/2014 0:00,11.0000000,16.0000000,43.281297000000,5.311830000000,,Marseille - Îles du Frioul,26870,observation-f0fd2586-ade6-48c2-a6dd-0d5254a7004f,https://biolit.fr/observations/observation-f0fd2586-ade6-48c2-a6dd-0d5254a7004f/,Opuntia ficus,Figuier de barbarie,,https://biolit.fr/wp-content/uploads/2023/07/P3194004-scaled.jpg,,TRUE, +N1,28406,sortie-6cd45a79-5233-4766-bd92-b7dc56f87313,https://biolit.fr/sorties/sortie-6cd45a79-5233-4766-bd92-b7dc56f87313/,ecoleclaudedebussy,,06/06/2023,14.0000000,16.0000000,48.625503000000,-2.053109000000,Planète Mer,Plage du prieuré ,26994,observation-6cd45a79-5233-4766-bd92-b7dc56f87313,https://biolit.fr/observations/observation-6cd45a79-5233-4766-bd92-b7dc56f87313/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capsule raie.PNG,,FALSE, +N1,28406,sortie-6cd45a79-5233-4766-bd92-b7dc56f87313,https://biolit.fr/sorties/sortie-6cd45a79-5233-4766-bd92-b7dc56f87313/,ecoleclaudedebussy,,06/06/2023,14.0000000,16.0000000,48.625503000000,-2.053109000000,Planète Mer,Plage du prieuré ,26996,observation-6cd45a79-5233-4766-bd92-b7dc56f87313-2,https://biolit.fr/observations/observation-6cd45a79-5233-4766-bd92-b7dc56f87313-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/capsule rousette.PNG,,FALSE, +N1,28407,sortie-3b67650b-bf0d-4c68-9536-a48252a82d47,https://biolit.fr/sorties/sortie-3b67650b-bf0d-4c68-9536-a48252a82d47/,Marine,,5/24/2023 0:00,13.0000000,14.0:45,46.146769000000,-1.209267000000,Planète Mer,Chef de baie,26998,observation-3b67650b-bf0d-4c68-9536-a48252a82d47,https://biolit.fr/observations/observation-3b67650b-bf0d-4c68-9536-a48252a82d47/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230524_144832-scaled.jpg,,TRUE, +N1,28407,sortie-3b67650b-bf0d-4c68-9536-a48252a82d47,https://biolit.fr/sorties/sortie-3b67650b-bf0d-4c68-9536-a48252a82d47/,Marine,,5/24/2023 0:00,13.0000000,14.0:45,46.146769000000,-1.209267000000,Planète Mer,Chef de baie,27000,observation-3b67650b-bf0d-4c68-9536-a48252a82d47-2,https://biolit.fr/observations/observation-3b67650b-bf0d-4c68-9536-a48252a82d47-2/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230524_144839-scaled.jpg,,TRUE, +N1,28408,sortie-de701e3e-f96a-422f-adef-75c848a82611,https://biolit.fr/sorties/sortie-de701e3e-f96a-422f-adef-75c848a82611/,Marine,,5/19/2023 0:00,16.0000000,16.0000000,46.147728000000,-1.210227000000,,Chef de baie,27002,observation-de701e3e-f96a-422f-adef-75c848a82611,https://biolit.fr/observations/observation-de701e3e-f96a-422f-adef-75c848a82611/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230519_160601_compress89-scaled.jpg,,TRUE, +N1,28408,sortie-de701e3e-f96a-422f-adef-75c848a82611,https://biolit.fr/sorties/sortie-de701e3e-f96a-422f-adef-75c848a82611/,Marine,,5/19/2023 0:00,16.0000000,16.0000000,46.147728000000,-1.210227000000,,Chef de baie,27004,observation-de701e3e-f96a-422f-adef-75c848a82611-2,https://biolit.fr/observations/observation-de701e3e-f96a-422f-adef-75c848a82611-2/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230519_161056_compress25-scaled.jpg,,TRUE, +N1,28408,sortie-de701e3e-f96a-422f-adef-75c848a82611,https://biolit.fr/sorties/sortie-de701e3e-f96a-422f-adef-75c848a82611/,Marine,,5/19/2023 0:00,16.0000000,16.0000000,46.147728000000,-1.210227000000,,Chef de baie,27006,observation-de701e3e-f96a-422f-adef-75c848a82611-3,https://biolit.fr/observations/observation-de701e3e-f96a-422f-adef-75c848a82611-3/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230519_161127_compress69-scaled.jpg,,TRUE, +N1,28408,sortie-de701e3e-f96a-422f-adef-75c848a82611,https://biolit.fr/sorties/sortie-de701e3e-f96a-422f-adef-75c848a82611/,Marine,,5/19/2023 0:00,16.0000000,16.0000000,46.147728000000,-1.210227000000,,Chef de baie,27008,observation-de701e3e-f96a-422f-adef-75c848a82611-4,https://biolit.fr/observations/observation-de701e3e-f96a-422f-adef-75c848a82611-4/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230519_160709_compress29-scaled.jpg,,TRUE, +N1,28408,sortie-de701e3e-f96a-422f-adef-75c848a82611,https://biolit.fr/sorties/sortie-de701e3e-f96a-422f-adef-75c848a82611/,Marine,,5/19/2023 0:00,16.0000000,16.0000000,46.147728000000,-1.210227000000,,Chef de baie,27010,observation-de701e3e-f96a-422f-adef-75c848a82611-5,https://biolit.fr/observations/observation-de701e3e-f96a-422f-adef-75c848a82611-5/,Pleurobrachia pileus,Groseille de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230519_160613_compress14-scaled.jpg,,TRUE, +N1,28409,sortie-2257d2ea-2ca2-4ec3-8045-268ce8690b6f,https://biolit.fr/sorties/sortie-2257d2ea-2ca2-4ec3-8045-268ce8690b6f/,Marine,,5/15/2023 0:00,17.0000000,17.0000000,48.638474000000,-2.069499000000,Planète Mer,plage de saint enogat,27012,observation-2257d2ea-2ca2-4ec3-8045-268ce8690b6f,https://biolit.fr/observations/observation-2257d2ea-2ca2-4ec3-8045-268ce8690b6f/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230427_150600_1-scaled.jpg,,TRUE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27014,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_141618-scaled.jpg,,FALSE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27016,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-2,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_141911-scaled.jpg,,FALSE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27018,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-3,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_142052-scaled.jpg,,FALSE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27020,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-4,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_142651-scaled.jpg,,FALSE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27022,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-5,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-5/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_144434-scaled.jpg,,TRUE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27024,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-6,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-6/,Rhombosepion elegans,Os de seiche élégante,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_144710-scaled.jpg,,TRUE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27026,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-7,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-7/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_151514-scaled.jpg,,TRUE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27028,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-8,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_152659-scaled.jpg,,FALSE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27030,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-9,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-9/,Phoenicopterus roseus,Flamant rose,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_170224-scaled.jpg,,TRUE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27032,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-10,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_142509-scaled.jpg,,FALSE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27034,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-11,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_144621-scaled.jpg,,FALSE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27036,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-12,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_150311-scaled.jpg,,FALSE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27038,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-13,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_144813-scaled.jpg,,FALSE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27040,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-14,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_151213-scaled.jpg,,FALSE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27042,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-15,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_142454-scaled.jpg,,FALSE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27044,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-16,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_142259-scaled.jpg,,FALSE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27046,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-17,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_142621-scaled.jpg,,FALSE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27048,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-18,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_142832-scaled.jpg,,FALSE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27050,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-19,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_143922-scaled.jpg,,FALSE, +N1,28410,sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f,https://biolit.fr/sorties/sortie-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f/,nathalie.brouzes@tlsp-trucks.com,,3/24/2023 0:00,14.0000000,17.0000000,43.484959000000,4.143245000000,,espiguette,27052,observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-20,https://biolit.fr/observations/observation-d9d5d7af-9f9c-49cc-ba3c-1e7bfdf80e1f-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230324_150925-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27054,observation-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1147-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27056,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-2,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1148_0-scaled.jpg,,TRUE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27058,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-3,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1149-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27060,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-4,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1150-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27062,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-5,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-5/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1151-scaled.jpg,,TRUE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27064,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-6,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1152_0-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27066,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-7,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1153-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27068,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-8,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1154_0-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27070,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-9,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1155_0-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27072,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-10,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1156_0-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27074,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-11,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1157_0-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27076,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-12,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1158_0-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27078,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-13,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1159_0-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27080,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-14,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1161_0-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27082,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-15,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1162_0-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27084,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-16,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1163_0-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27086,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-17,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1164_0-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27088,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-18,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1166_1-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27090,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-19,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1168_0-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27092,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-20,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1169_0-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27094,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-21,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1170-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27096,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-22,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1171-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27098,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-23,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-23/,Ericaria amentacea,Cystoseire stricte,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1175-scaled.jpg,,TRUE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27100,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-24,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-24/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1173-scaled.jpg,,TRUE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27102,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-25,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1178-scaled.jpg,,FALSE, +N1,28411,sortie-7afe00ff-21ee-489b-877c-d1df9d10a513,https://biolit.fr/sorties/sortie-7afe00ff-21ee-489b-877c-d1df9d10a513/,Manon P,,3/29/2023 0:00,10.0:15,10.0:35,43.833508000000,6.744326000000,,Plage du bain des dames,27104,observation-7afe00ff-21ee-489b-877c-d1df9d10a513-26,https://biolit.fr/observations/observation-7afe00ff-21ee-489b-877c-d1df9d10a513-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1174-scaled.jpg,,FALSE, +N1,28412,sortie-2fd34195-cc77-4680-b637-c58dc544d444,https://biolit.fr/sorties/sortie-2fd34195-cc77-4680-b637-c58dc544d444/,Club subaquatique Narbonnais,,3/25/2023 0:00,10.0000000,11.0000000,43.168062000000,3.179913000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,27106,observation-2fd34195-cc77-4680-b637-c58dc544d444,https://biolit.fr/observations/observation-2fd34195-cc77-4680-b637-c58dc544d444/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6559.JPG,,FALSE, +N1,28412,sortie-2fd34195-cc77-4680-b637-c58dc544d444,https://biolit.fr/sorties/sortie-2fd34195-cc77-4680-b637-c58dc544d444/,Club subaquatique Narbonnais,,3/25/2023 0:00,10.0000000,11.0000000,43.168062000000,3.179913000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,27108,observation-2fd34195-cc77-4680-b637-c58dc544d444-2,https://biolit.fr/observations/observation-2fd34195-cc77-4680-b637-c58dc544d444-2/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_6564.JPG,,TRUE, +N1,28412,sortie-2fd34195-cc77-4680-b637-c58dc544d444,https://biolit.fr/sorties/sortie-2fd34195-cc77-4680-b637-c58dc544d444/,Club subaquatique Narbonnais,,3/25/2023 0:00,10.0000000,11.0000000,43.168062000000,3.179913000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,27110,observation-2fd34195-cc77-4680-b637-c58dc544d444-3,https://biolit.fr/observations/observation-2fd34195-cc77-4680-b637-c58dc544d444-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6568.JPG,,FALSE, +N1,28412,sortie-2fd34195-cc77-4680-b637-c58dc544d444,https://biolit.fr/sorties/sortie-2fd34195-cc77-4680-b637-c58dc544d444/,Club subaquatique Narbonnais,,3/25/2023 0:00,10.0000000,11.0000000,43.168062000000,3.179913000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,27112,observation-2fd34195-cc77-4680-b637-c58dc544d444-4,https://biolit.fr/observations/observation-2fd34195-cc77-4680-b637-c58dc544d444-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6571.JPG,,FALSE, +N1,28412,sortie-2fd34195-cc77-4680-b637-c58dc544d444,https://biolit.fr/sorties/sortie-2fd34195-cc77-4680-b637-c58dc544d444/,Club subaquatique Narbonnais,,3/25/2023 0:00,10.0000000,11.0000000,43.168062000000,3.179913000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,27114,observation-2fd34195-cc77-4680-b637-c58dc544d444-5,https://biolit.fr/observations/observation-2fd34195-cc77-4680-b637-c58dc544d444-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6575.JPG,,FALSE, +N1,28412,sortie-2fd34195-cc77-4680-b637-c58dc544d444,https://biolit.fr/sorties/sortie-2fd34195-cc77-4680-b637-c58dc544d444/,Club subaquatique Narbonnais,,3/25/2023 0:00,10.0000000,11.0000000,43.168062000000,3.179913000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,27116,observation-2fd34195-cc77-4680-b637-c58dc544d444-6,https://biolit.fr/observations/observation-2fd34195-cc77-4680-b637-c58dc544d444-6/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_6589.JPG,,TRUE, +N1,28412,sortie-2fd34195-cc77-4680-b637-c58dc544d444,https://biolit.fr/sorties/sortie-2fd34195-cc77-4680-b637-c58dc544d444/,Club subaquatique Narbonnais,,3/25/2023 0:00,10.0000000,11.0000000,43.168062000000,3.179913000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,27118,observation-2fd34195-cc77-4680-b637-c58dc544d444-7,https://biolit.fr/observations/observation-2fd34195-cc77-4680-b637-c58dc544d444-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6594.JPG,,FALSE, +N1,28412,sortie-2fd34195-cc77-4680-b637-c58dc544d444,https://biolit.fr/sorties/sortie-2fd34195-cc77-4680-b637-c58dc544d444/,Club subaquatique Narbonnais,,3/25/2023 0:00,10.0000000,11.0000000,43.168062000000,3.179913000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,27120,observation-2fd34195-cc77-4680-b637-c58dc544d444-8,https://biolit.fr/observations/observation-2fd34195-cc77-4680-b637-c58dc544d444-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6595.JPG,,FALSE, +N1,28412,sortie-2fd34195-cc77-4680-b637-c58dc544d444,https://biolit.fr/sorties/sortie-2fd34195-cc77-4680-b637-c58dc544d444/,Club subaquatique Narbonnais,,3/25/2023 0:00,10.0000000,11.0000000,43.168062000000,3.179913000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,27122,observation-2fd34195-cc77-4680-b637-c58dc544d444-9,https://biolit.fr/observations/observation-2fd34195-cc77-4680-b637-c58dc544d444-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6596.JPG,,FALSE, +N1,28412,sortie-2fd34195-cc77-4680-b637-c58dc544d444,https://biolit.fr/sorties/sortie-2fd34195-cc77-4680-b637-c58dc544d444/,Club subaquatique Narbonnais,,3/25/2023 0:00,10.0000000,11.0000000,43.168062000000,3.179913000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,27124,observation-2fd34195-cc77-4680-b637-c58dc544d444-10,https://biolit.fr/observations/observation-2fd34195-cc77-4680-b637-c58dc544d444-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6597.JPG,,FALSE, +N1,28412,sortie-2fd34195-cc77-4680-b637-c58dc544d444,https://biolit.fr/sorties/sortie-2fd34195-cc77-4680-b637-c58dc544d444/,Club subaquatique Narbonnais,,3/25/2023 0:00,10.0000000,11.0000000,43.168062000000,3.179913000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,27126,observation-2fd34195-cc77-4680-b637-c58dc544d444-11,https://biolit.fr/observations/observation-2fd34195-cc77-4680-b637-c58dc544d444-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6598_0.JPG,,FALSE, +N1,28412,sortie-2fd34195-cc77-4680-b637-c58dc544d444,https://biolit.fr/sorties/sortie-2fd34195-cc77-4680-b637-c58dc544d444/,Club subaquatique Narbonnais,,3/25/2023 0:00,10.0000000,11.0000000,43.168062000000,3.179913000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,27128,observation-2fd34195-cc77-4680-b637-c58dc544d444-12,https://biolit.fr/observations/observation-2fd34195-cc77-4680-b637-c58dc544d444-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6600.JPG,,FALSE, +N1,28412,sortie-2fd34195-cc77-4680-b637-c58dc544d444,https://biolit.fr/sorties/sortie-2fd34195-cc77-4680-b637-c58dc544d444/,Club subaquatique Narbonnais,,3/25/2023 0:00,10.0000000,11.0000000,43.168062000000,3.179913000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,27130,observation-2fd34195-cc77-4680-b637-c58dc544d444-13,https://biolit.fr/observations/observation-2fd34195-cc77-4680-b637-c58dc544d444-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6601.JPG,,FALSE, +N1,28412,sortie-2fd34195-cc77-4680-b637-c58dc544d444,https://biolit.fr/sorties/sortie-2fd34195-cc77-4680-b637-c58dc544d444/,Club subaquatique Narbonnais,,3/25/2023 0:00,10.0000000,11.0000000,43.168062000000,3.179913000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,27132,observation-2fd34195-cc77-4680-b637-c58dc544d444-14,https://biolit.fr/observations/observation-2fd34195-cc77-4680-b637-c58dc544d444-14/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_6602.JPG,,TRUE, +N1,28413,sortie-1d39bf8b-4b9a-413e-be18-4f73a9676bf8,https://biolit.fr/sorties/sortie-1d39bf8b-4b9a-413e-be18-4f73a9676bf8/,Marine,,3/15/2023 0:00,10.0000000,10.0000000,43.214890000000,5.34291400000,Planète Mer,Anse de la Maronaise,27134,observation-1d39bf8b-4b9a-413e-be18-4f73a9676bf8,https://biolit.fr/observations/observation-1d39bf8b-4b9a-413e-be18-4f73a9676bf8/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230315_105534_6filjnOP1f.jpeg,,TRUE, +N1,28413,sortie-1d39bf8b-4b9a-413e-be18-4f73a9676bf8,https://biolit.fr/sorties/sortie-1d39bf8b-4b9a-413e-be18-4f73a9676bf8/,Marine,,3/15/2023 0:00,10.0000000,10.0000000,43.214890000000,5.34291400000,Planète Mer,Anse de la Maronaise,27136,observation-1d39bf8b-4b9a-413e-be18-4f73a9676bf8-2,https://biolit.fr/observations/observation-1d39bf8b-4b9a-413e-be18-4f73a9676bf8-2/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG-20230315-WA0014.jpg,,TRUE, +N1,28414,sortie-00c3e5b9-d8d2-49d8-8c4c-7aa059fce067,https://biolit.fr/sorties/sortie-00c3e5b9-d8d2-49d8-8c4c-7aa059fce067/,Marine,,03/02/2023,14.0:35,15.000005,49.328052000000,-0.377412000000,Planète Mer,Plage de Saint-Aubin,27138,observation-00c3e5b9-d8d2-49d8-8c4c-7aa059fce067,https://biolit.fr/observations/observation-00c3e5b9-d8d2-49d8-8c4c-7aa059fce067/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230302_140125-scaled.jpg,,FALSE, +N1,28414,sortie-00c3e5b9-d8d2-49d8-8c4c-7aa059fce067,https://biolit.fr/sorties/sortie-00c3e5b9-d8d2-49d8-8c4c-7aa059fce067/,Marine,,03/02/2023,14.0:35,15.000005,49.328052000000,-0.377412000000,Planète Mer,Plage de Saint-Aubin,27140,observation-00c3e5b9-d8d2-49d8-8c4c-7aa059fce067-2,https://biolit.fr/observations/observation-00c3e5b9-d8d2-49d8-8c4c-7aa059fce067-2/,Loligo spp.,Ponte de Calmar,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230302_135655-scaled.jpg,,TRUE, +N1,28415,sortie-9831b50b-89fe-4473-aef1-1562856df937,https://biolit.fr/sorties/sortie-9831b50b-89fe-4473-aef1-1562856df937/,Camille Benyamine,,2/14/2023 0:00,8.0000000,10.0000000,43.239792000000,5.362395000000,Planète Mer,Bain des Dames,27142,observation-9831b50b-89fe-4473-aef1-1562856df937,https://biolit.fr/observations/observation-9831b50b-89fe-4473-aef1-1562856df937/,,,,https://biolit.fr/wp-content/uploads/2023/07/330798595_1150672962262852_3443912666821141741_n.jpg,,FALSE, +N1,28415,sortie-9831b50b-89fe-4473-aef1-1562856df937,https://biolit.fr/sorties/sortie-9831b50b-89fe-4473-aef1-1562856df937/,Camille Benyamine,,2/14/2023 0:00,8.0000000,10.0000000,43.239792000000,5.362395000000,Planète Mer,Bain des Dames,27144,observation-9831b50b-89fe-4473-aef1-1562856df937-2,https://biolit.fr/observations/observation-9831b50b-89fe-4473-aef1-1562856df937-2/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/330824166_911079103644487_1566738228441481161_n.jpg,,TRUE, +N1,28415,sortie-9831b50b-89fe-4473-aef1-1562856df937,https://biolit.fr/sorties/sortie-9831b50b-89fe-4473-aef1-1562856df937/,Camille Benyamine,,2/14/2023 0:00,8.0000000,10.0000000,43.239792000000,5.362395000000,Planète Mer,Bain des Dames,27146,observation-9831b50b-89fe-4473-aef1-1562856df937-3,https://biolit.fr/observations/observation-9831b50b-89fe-4473-aef1-1562856df937-3/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/331227727_934090620952569_1438078857820519900_n.jpg,,TRUE, +N1,28415,sortie-9831b50b-89fe-4473-aef1-1562856df937,https://biolit.fr/sorties/sortie-9831b50b-89fe-4473-aef1-1562856df937/,Camille Benyamine,,2/14/2023 0:00,8.0000000,10.0000000,43.239792000000,5.362395000000,Planète Mer,Bain des Dames,27148,observation-9831b50b-89fe-4473-aef1-1562856df937-4,https://biolit.fr/observations/observation-9831b50b-89fe-4473-aef1-1562856df937-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/330930215_670230494898894_5070991189777937198_n.jpg,,FALSE, +N1,28415,sortie-9831b50b-89fe-4473-aef1-1562856df937,https://biolit.fr/sorties/sortie-9831b50b-89fe-4473-aef1-1562856df937/,Camille Benyamine,,2/14/2023 0:00,8.0000000,10.0000000,43.239792000000,5.362395000000,Planète Mer,Bain des Dames,27150,observation-9831b50b-89fe-4473-aef1-1562856df937-5,https://biolit.fr/observations/observation-9831b50b-89fe-4473-aef1-1562856df937-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/331068580_709323580901197_1613023781573248351_n.jpg,,FALSE, +N1,28416,sortie-35922f19-0555-4351-80fc-d850d2008f89,https://biolit.fr/sorties/sortie-35922f19-0555-4351-80fc-d850d2008f89/,Marine,,1/21/2023 0:00,17.0000000,17.0000000,46.306579000000,-1.312966000000,,Plage de la Barrique,27152,observation-35922f19-0555-4351-80fc-d850d2008f89,https://biolit.fr/observations/observation-35922f19-0555-4351-80fc-d850d2008f89/,,,,https://biolit.fr/wp-content/uploads/2023/07/1674560076520-scaled.jpg,,FALSE, +N1,28416,sortie-35922f19-0555-4351-80fc-d850d2008f89,https://biolit.fr/sorties/sortie-35922f19-0555-4351-80fc-d850d2008f89/,Marine,,1/21/2023 0:00,17.0000000,17.0000000,46.306579000000,-1.312966000000,,Plage de la Barrique,27154,observation-35922f19-0555-4351-80fc-d850d2008f89-2,https://biolit.fr/observations/observation-35922f19-0555-4351-80fc-d850d2008f89-2/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/1674560076530-scaled.jpg,,TRUE, +N1,28417,sortie-f76fb9f2-f57b-420f-8ff6-633c1a3d3944,https://biolit.fr/sorties/sortie-f76fb9f2-f57b-420f-8ff6-633c1a3d3944/,Observe la nature,,01/05/2023,14.0000000,16.0000000,41.712897000000,8.818386000000,,Porto Pollo plage,27156,observation-f76fb9f2-f57b-420f-8ff6-633c1a3d3944,https://biolit.fr/observations/observation-f76fb9f2-f57b-420f-8ff6-633c1a3d3944/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/321502381_2379126948917737_2788687876471827993_n.jpg,,TRUE, +N1,28418,sortie-481d0cd2-1c8d-4d95-b4c6-c972220fad74,https://biolit.fr/sorties/sortie-481d0cd2-1c8d-4d95-b4c6-c972220fad74/,Camille Benyamine,,11/24/2022 0:00,10.0000000,12.0000000,43.239831000000,5.362405000000,,Bain des Dames,27158,observation-481d0cd2-1c8d-4d95-b4c6-c972220fad74,https://biolit.fr/observations/observation-481d0cd2-1c8d-4d95-b4c6-c972220fad74/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/316514157_2116523898532716_1982054198504790836_n(1)-scaled.jpg,,TRUE, +N1,28418,sortie-481d0cd2-1c8d-4d95-b4c6-c972220fad74,https://biolit.fr/sorties/sortie-481d0cd2-1c8d-4d95-b4c6-c972220fad74/,Camille Benyamine,,11/24/2022 0:00,10.0000000,12.0000000,43.239831000000,5.362405000000,,Bain des Dames,27160,observation-481d0cd2-1c8d-4d95-b4c6-c972220fad74-2,https://biolit.fr/observations/observation-481d0cd2-1c8d-4d95-b4c6-c972220fad74-2/,Posidonia oceanica,Fleur de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/316962423_1238552720062497_9135367134901084027_n(1)-scaled.jpg,,TRUE, +N1,28418,sortie-481d0cd2-1c8d-4d95-b4c6-c972220fad74,https://biolit.fr/sorties/sortie-481d0cd2-1c8d-4d95-b4c6-c972220fad74/,Camille Benyamine,,11/24/2022 0:00,10.0000000,12.0000000,43.239831000000,5.362405000000,,Bain des Dames,27162,observation-481d0cd2-1c8d-4d95-b4c6-c972220fad74-3,https://biolit.fr/observations/observation-481d0cd2-1c8d-4d95-b4c6-c972220fad74-3/,Posidonia oceanica,Fleur de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/313499207_844763753312138_954460083479780131_n-scaled.jpg,,TRUE, +N1,28418,sortie-481d0cd2-1c8d-4d95-b4c6-c972220fad74,https://biolit.fr/sorties/sortie-481d0cd2-1c8d-4d95-b4c6-c972220fad74/,Camille Benyamine,,11/24/2022 0:00,10.0000000,12.0000000,43.239831000000,5.362405000000,,Bain des Dames,27164,observation-481d0cd2-1c8d-4d95-b4c6-c972220fad74-4,https://biolit.fr/observations/observation-481d0cd2-1c8d-4d95-b4c6-c972220fad74-4/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/316186071_700855934789731_8097555739698690075_n-scaled.jpg,,TRUE, +N1,28418,sortie-481d0cd2-1c8d-4d95-b4c6-c972220fad74,https://biolit.fr/sorties/sortie-481d0cd2-1c8d-4d95-b4c6-c972220fad74/,Camille Benyamine,,11/24/2022 0:00,10.0000000,12.0000000,43.239831000000,5.362405000000,,Bain des Dames,27166,observation-481d0cd2-1c8d-4d95-b4c6-c972220fad74-5,https://biolit.fr/observations/observation-481d0cd2-1c8d-4d95-b4c6-c972220fad74-5/,Posidonia oceanica,Fleur de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/316335767_1173531370259600_2795216559149940946_n(2)-scaled.jpg,,TRUE, +N1,28418,sortie-481d0cd2-1c8d-4d95-b4c6-c972220fad74,https://biolit.fr/sorties/sortie-481d0cd2-1c8d-4d95-b4c6-c972220fad74/,Camille Benyamine,,11/24/2022 0:00,10.0000000,12.0000000,43.239831000000,5.362405000000,,Bain des Dames,27168,observation-481d0cd2-1c8d-4d95-b4c6-c972220fad74-6,https://biolit.fr/observations/observation-481d0cd2-1c8d-4d95-b4c6-c972220fad74-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/313342787_2568974623245522_8257198668653415165_n(1)-scaled.jpg,,FALSE, +N1,28418,sortie-481d0cd2-1c8d-4d95-b4c6-c972220fad74,https://biolit.fr/sorties/sortie-481d0cd2-1c8d-4d95-b4c6-c972220fad74/,Camille Benyamine,,11/24/2022 0:00,10.0000000,12.0000000,43.239831000000,5.362405000000,,Bain des Dames,27170,observation-481d0cd2-1c8d-4d95-b4c6-c972220fad74-7,https://biolit.fr/observations/observation-481d0cd2-1c8d-4d95-b4c6-c972220fad74-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/313493770_934833450989414_2666185091710113582_n(1)-scaled.jpg,,FALSE, +N1,28419,sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c,https://biolit.fr/sorties/sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c/,LABELBLEU,,11/23/2022 0:00,14.0000000,16.0000000,42.774973000000,3.0387430000,LABELBLEU,Plage de Torreilles,27172,observation-0e5c16be-688c-49e3-845e-f88a6f87d54c,https://biolit.fr/observations/observation-0e5c16be-688c-49e3-845e-f88a6f87d54c/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/IMG20221123151753-scaled.jpg,,TRUE, +N1,28419,sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c,https://biolit.fr/sorties/sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c/,LABELBLEU,,11/23/2022 0:00,14.0000000,16.0000000,42.774973000000,3.0387430000,LABELBLEU,Plage de Torreilles,27174,observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-2,https://biolit.fr/observations/observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-2/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/IMG20221123151800-scaled.jpg,,TRUE, +N1,28419,sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c,https://biolit.fr/sorties/sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c/,LABELBLEU,,11/23/2022 0:00,14.0000000,16.0000000,42.774973000000,3.0387430000,LABELBLEU,Plage de Torreilles,27176,observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-3,https://biolit.fr/observations/observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20221123153544-scaled.jpg,,FALSE, +N1,28419,sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c,https://biolit.fr/sorties/sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c/,LABELBLEU,,11/23/2022 0:00,14.0000000,16.0000000,42.774973000000,3.0387430000,LABELBLEU,Plage de Torreilles,27178,observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-4,https://biolit.fr/observations/observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-4/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG20221123153553-scaled.jpg,,TRUE, +N1,28419,sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c,https://biolit.fr/sorties/sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c/,LABELBLEU,,11/23/2022 0:00,14.0000000,16.0000000,42.774973000000,3.0387430000,LABELBLEU,Plage de Torreilles,27180,observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-5,https://biolit.fr/observations/observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-5/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/IMG20221123153557-scaled.jpg,,TRUE, +N1,28419,sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c,https://biolit.fr/sorties/sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c/,LABELBLEU,,11/23/2022 0:00,14.0000000,16.0000000,42.774973000000,3.0387430000,LABELBLEU,Plage de Torreilles,27182,observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-6,https://biolit.fr/observations/observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-6/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG20221123153602-scaled.jpg,,TRUE, +N1,28419,sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c,https://biolit.fr/sorties/sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c/,LABELBLEU,,11/23/2022 0:00,14.0000000,16.0000000,42.774973000000,3.0387430000,LABELBLEU,Plage de Torreilles,27184,observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-7,https://biolit.fr/observations/observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20221123153607-scaled.jpg,,FALSE, +N1,28419,sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c,https://biolit.fr/sorties/sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c/,LABELBLEU,,11/23/2022 0:00,14.0000000,16.0000000,42.774973000000,3.0387430000,LABELBLEU,Plage de Torreilles,27186,observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-8,https://biolit.fr/observations/observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20221123153611-scaled.jpg,,FALSE, +N1,28419,sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c,https://biolit.fr/sorties/sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c/,LABELBLEU,,11/23/2022 0:00,14.0000000,16.0000000,42.774973000000,3.0387430000,LABELBLEU,Plage de Torreilles,27188,observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-9,https://biolit.fr/observations/observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20221123153616-scaled.jpg,,FALSE, +N1,28419,sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c,https://biolit.fr/sorties/sortie-0e5c16be-688c-49e3-845e-f88a6f87d54c/,LABELBLEU,,11/23/2022 0:00,14.0000000,16.0000000,42.774973000000,3.0387430000,LABELBLEU,Plage de Torreilles,27190,observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-10,https://biolit.fr/observations/observation-0e5c16be-688c-49e3-845e-f88a6f87d54c-10/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/IMG20221123153618-scaled.jpg,,TRUE, +N1,28420,sortie-6e7f3e7a-ec0f-4075-a77c-ccbb6c9dc058,https://biolit.fr/sorties/sortie-6e7f3e7a-ec0f-4075-a77c-ccbb6c9dc058/,AIEJE,,10/26/2022 0:00,10.0000000,11.0000000,43.329086000000,5.160435000000,AIEJE,CARRY LE ROUET ,27192,observation-6e7f3e7a-ec0f-4075-a77c-ccbb6c9dc058,https://biolit.fr/observations/observation-6e7f3e7a-ec0f-4075-a77c-ccbb6c9dc058/,Posidonia oceanica,Fleur de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_2562-scaled.jpg,,TRUE, +N1,28420,sortie-6e7f3e7a-ec0f-4075-a77c-ccbb6c9dc058,https://biolit.fr/sorties/sortie-6e7f3e7a-ec0f-4075-a77c-ccbb6c9dc058/,AIEJE,,10/26/2022 0:00,10.0000000,11.0000000,43.329086000000,5.160435000000,AIEJE,CARRY LE ROUET ,27194,observation-6e7f3e7a-ec0f-4075-a77c-ccbb6c9dc058-2,https://biolit.fr/observations/observation-6e7f3e7a-ec0f-4075-a77c-ccbb6c9dc058-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2563-scaled.jpg,,FALSE, +N1,28420,sortie-6e7f3e7a-ec0f-4075-a77c-ccbb6c9dc058,https://biolit.fr/sorties/sortie-6e7f3e7a-ec0f-4075-a77c-ccbb6c9dc058/,AIEJE,,10/26/2022 0:00,10.0000000,11.0000000,43.329086000000,5.160435000000,AIEJE,CARRY LE ROUET ,27196,observation-6e7f3e7a-ec0f-4075-a77c-ccbb6c9dc058-3,https://biolit.fr/observations/observation-6e7f3e7a-ec0f-4075-a77c-ccbb6c9dc058-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2555-scaled.jpg,,FALSE, +N1,28420,sortie-6e7f3e7a-ec0f-4075-a77c-ccbb6c9dc058,https://biolit.fr/sorties/sortie-6e7f3e7a-ec0f-4075-a77c-ccbb6c9dc058/,AIEJE,,10/26/2022 0:00,10.0000000,11.0000000,43.329086000000,5.160435000000,AIEJE,CARRY LE ROUET ,27198,observation-6e7f3e7a-ec0f-4075-a77c-ccbb6c9dc058-4,https://biolit.fr/observations/observation-6e7f3e7a-ec0f-4075-a77c-ccbb6c9dc058-4/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2561-scaled.jpg,,TRUE, +N1,28421,sortie-187961d2-bd51-4bdd-84d7-84b445bbb89d,https://biolit.fr/sorties/sortie-187961d2-bd51-4bdd-84d7-84b445bbb89d/,AIEJE,,10/24/2022 0:00,10.0000000,11.0000000,43.329024000000,5.160457000000,AIEJE,CARRY LE ROUET ,27200,observation-187961d2-bd51-4bdd-84d7-84b445bbb89d,https://biolit.fr/observations/observation-187961d2-bd51-4bdd-84d7-84b445bbb89d/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2551-scaled.jpg,,FALSE, +N1,28421,sortie-187961d2-bd51-4bdd-84d7-84b445bbb89d,https://biolit.fr/sorties/sortie-187961d2-bd51-4bdd-84d7-84b445bbb89d/,AIEJE,,10/24/2022 0:00,10.0000000,11.0000000,43.329024000000,5.160457000000,AIEJE,CARRY LE ROUET ,27202,observation-187961d2-bd51-4bdd-84d7-84b445bbb89d-2,https://biolit.fr/observations/observation-187961d2-bd51-4bdd-84d7-84b445bbb89d-2/,Posidonia oceanica,Fleur de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_2553-scaled.jpg,,TRUE, +N1,28421,sortie-187961d2-bd51-4bdd-84d7-84b445bbb89d,https://biolit.fr/sorties/sortie-187961d2-bd51-4bdd-84d7-84b445bbb89d/,AIEJE,,10/24/2022 0:00,10.0000000,11.0000000,43.329024000000,5.160457000000,AIEJE,CARRY LE ROUET ,27204,observation-187961d2-bd51-4bdd-84d7-84b445bbb89d-3,https://biolit.fr/observations/observation-187961d2-bd51-4bdd-84d7-84b445bbb89d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2554-scaled.jpg,,FALSE, +N1,28421,sortie-187961d2-bd51-4bdd-84d7-84b445bbb89d,https://biolit.fr/sorties/sortie-187961d2-bd51-4bdd-84d7-84b445bbb89d/,AIEJE,,10/24/2022 0:00,10.0000000,11.0000000,43.329024000000,5.160457000000,AIEJE,CARRY LE ROUET ,27206,observation-187961d2-bd51-4bdd-84d7-84b445bbb89d-4,https://biolit.fr/observations/observation-187961d2-bd51-4bdd-84d7-84b445bbb89d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1113-scaled.jpg,,FALSE, +N1,28422,sortie-d2a73318-2070-462e-b7c0-b8e64059ec80,https://biolit.fr/sorties/sortie-d2a73318-2070-462e-b7c0-b8e64059ec80/,Institut Marin du Seaquarium,,10/31/2022 0:00,10.0000000,11.0000000,43.525931000000,4.138297000000,Institut Marin du Seaquarium,Plage du Seaquarium,27208,observation-d2a73318-2070-462e-b7c0-b8e64059ec80,https://biolit.fr/observations/observation-d2a73318-2070-462e-b7c0-b8e64059ec80/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221031_110713-scaled.jpg,,FALSE, +N1,28423,sortie-ebf38e54-2e52-46c4-aacb-682e10ee32ad,https://biolit.fr/sorties/sortie-ebf38e54-2e52-46c4-aacb-682e10ee32ad/,Institut Marin du Seaquarium,,10/26/2022 0:00,10.0000000,11.0000000,43.526024000000,4.138207000000,Institut Marin du Seaquarium,Plage du Seaquarium,27210,observation-ebf38e54-2e52-46c4-aacb-682e10ee32ad,https://biolit.fr/observations/observation-ebf38e54-2e52-46c4-aacb-682e10ee32ad/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture_5.PNG,,FALSE, +N1,28424,sortie-68899bd2-0535-4c38-af3f-bebbd2b13fb8,https://biolit.fr/sorties/sortie-68899bd2-0535-4c38-af3f-bebbd2b13fb8/,Institut Marin du Seaquarium,,10/25/2022 0:00,10.0000000,12.0000000,43.526224000000,4.13849000000,Institut Marin du Seaquarium,Plage Seaquarium,27212,observation-68899bd2-0535-4c38-af3f-bebbd2b13fb8,https://biolit.fr/observations/observation-68899bd2-0535-4c38-af3f-bebbd2b13fb8/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221025_115012-scaled.jpg,,TRUE, +N1,28424,sortie-68899bd2-0535-4c38-af3f-bebbd2b13fb8,https://biolit.fr/sorties/sortie-68899bd2-0535-4c38-af3f-bebbd2b13fb8/,Institut Marin du Seaquarium,,10/25/2022 0:00,10.0000000,12.0000000,43.526224000000,4.13849000000,Institut Marin du Seaquarium,Plage Seaquarium,27214,observation-68899bd2-0535-4c38-af3f-bebbd2b13fb8-2,https://biolit.fr/observations/observation-68899bd2-0535-4c38-af3f-bebbd2b13fb8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221025_115129-scaled.jpg,,FALSE, +N1,28425,sortie-a8d7c760-1300-4c46-9739-d862bc36821f,https://biolit.fr/sorties/sortie-a8d7c760-1300-4c46-9739-d862bc36821f/,LABELBLEU,,10/08/2022,10.0000000,12.0000000,42.535086000000,3.064418000000,LABELBLEU,Criques de porteils,27216,observation-a8d7c760-1300-4c46-9739-d862bc36821f,https://biolit.fr/observations/observation-a8d7c760-1300-4c46-9739-d862bc36821f/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/codium en boule-scaled.jpg,,TRUE, +N1,28425,sortie-a8d7c760-1300-4c46-9739-d862bc36821f,https://biolit.fr/sorties/sortie-a8d7c760-1300-4c46-9739-d862bc36821f/,LABELBLEU,,10/08/2022,10.0000000,12.0000000,42.535086000000,3.064418000000,LABELBLEU,Criques de porteils,27218,observation-a8d7c760-1300-4c46-9739-d862bc36821f-2,https://biolit.fr/observations/observation-a8d7c760-1300-4c46-9739-d862bc36821f-2/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/2023/07/couteau_0-scaled.jpg,,TRUE, +N1,28425,sortie-a8d7c760-1300-4c46-9739-d862bc36821f,https://biolit.fr/sorties/sortie-a8d7c760-1300-4c46-9739-d862bc36821f/,LABELBLEU,,10/08/2022,10.0000000,12.0000000,42.535086000000,3.064418000000,LABELBLEU,Criques de porteils,27220,observation-a8d7c760-1300-4c46-9739-d862bc36821f-3,https://biolit.fr/observations/observation-a8d7c760-1300-4c46-9739-d862bc36821f-3/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/crabe poilu-scaled.jpg,,TRUE, +N1,28425,sortie-a8d7c760-1300-4c46-9739-d862bc36821f,https://biolit.fr/sorties/sortie-a8d7c760-1300-4c46-9739-d862bc36821f/,LABELBLEU,,10/08/2022,10.0000000,12.0000000,42.535086000000,3.064418000000,LABELBLEU,Criques de porteils,27222,observation-a8d7c760-1300-4c46-9739-d862bc36821f-4,https://biolit.fr/observations/observation-a8d7c760-1300-4c46-9739-d862bc36821f-4/,Eunicella singularis,Gorgone blanche,,https://biolit.fr/wp-content/uploads/2023/07/gorgone blanche-scaled.jpg,,TRUE, +N1,28425,sortie-a8d7c760-1300-4c46-9739-d862bc36821f,https://biolit.fr/sorties/sortie-a8d7c760-1300-4c46-9739-d862bc36821f/,LABELBLEU,,10/08/2022,10.0000000,12.0000000,42.535086000000,3.064418000000,LABELBLEU,Criques de porteils,27224,observation-a8d7c760-1300-4c46-9739-d862bc36821f-5,https://biolit.fr/observations/observation-a8d7c760-1300-4c46-9739-d862bc36821f-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20221008114124-scaled.jpg,,FALSE, +N1,28425,sortie-a8d7c760-1300-4c46-9739-d862bc36821f,https://biolit.fr/sorties/sortie-a8d7c760-1300-4c46-9739-d862bc36821f/,LABELBLEU,,10/08/2022,10.0000000,12.0000000,42.535086000000,3.064418000000,LABELBLEU,Criques de porteils,27226,observation-a8d7c760-1300-4c46-9739-d862bc36821f-6,https://biolit.fr/observations/observation-a8d7c760-1300-4c46-9739-d862bc36821f-6/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/crabe marbre-scaled.jpg,,TRUE, +N1,28425,sortie-a8d7c760-1300-4c46-9739-d862bc36821f,https://biolit.fr/sorties/sortie-a8d7c760-1300-4c46-9739-d862bc36821f/,LABELBLEU,,10/08/2022,10.0000000,12.0000000,42.535086000000,3.064418000000,LABELBLEU,Criques de porteils,27228,observation-a8d7c760-1300-4c46-9739-d862bc36821f-7,https://biolit.fr/observations/observation-a8d7c760-1300-4c46-9739-d862bc36821f-7/,Halimeda tuna,Monnaie de Poséidon,,https://biolit.fr/wp-content/uploads/2023/07/Halimede-scaled.jpg,,TRUE, +N1,28425,sortie-a8d7c760-1300-4c46-9739-d862bc36821f,https://biolit.fr/sorties/sortie-a8d7c760-1300-4c46-9739-d862bc36821f/,LABELBLEU,,10/08/2022,10.0000000,12.0000000,42.535086000000,3.064418000000,LABELBLEU,Criques de porteils,27230,observation-a8d7c760-1300-4c46-9739-d862bc36821f-8,https://biolit.fr/observations/observation-a8d7c760-1300-4c46-9739-d862bc36821f-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Liagore_0-scaled.jpg,,FALSE, +N1,28425,sortie-a8d7c760-1300-4c46-9739-d862bc36821f,https://biolit.fr/sorties/sortie-a8d7c760-1300-4c46-9739-d862bc36821f/,LABELBLEU,,10/08/2022,10.0000000,12.0000000,42.535086000000,3.064418000000,LABELBLEU,Criques de porteils,27232,observation-a8d7c760-1300-4c46-9739-d862bc36821f-9,https://biolit.fr/observations/observation-a8d7c760-1300-4c46-9739-d862bc36821f-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/moule_0-scaled.jpg,,FALSE, +N1,28425,sortie-a8d7c760-1300-4c46-9739-d862bc36821f,https://biolit.fr/sorties/sortie-a8d7c760-1300-4c46-9739-d862bc36821f/,LABELBLEU,,10/08/2022,10.0000000,12.0000000,42.535086000000,3.064418000000,LABELBLEU,Criques de porteils,27234,observation-a8d7c760-1300-4c46-9739-d862bc36821f-10,https://biolit.fr/observations/observation-a8d7c760-1300-4c46-9739-d862bc36821f-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/porcelaine-scaled.jpg,,FALSE, +N1,28425,sortie-a8d7c760-1300-4c46-9739-d862bc36821f,https://biolit.fr/sorties/sortie-a8d7c760-1300-4c46-9739-d862bc36821f/,LABELBLEU,,10/08/2022,10.0000000,12.0000000,42.535086000000,3.064418000000,LABELBLEU,Criques de porteils,27236,observation-a8d7c760-1300-4c46-9739-d862bc36821f-11,https://biolit.fr/observations/observation-a8d7c760-1300-4c46-9739-d862bc36821f-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/spondylus gaederopus-scaled.jpg,,FALSE, +N1,28425,sortie-a8d7c760-1300-4c46-9739-d862bc36821f,https://biolit.fr/sorties/sortie-a8d7c760-1300-4c46-9739-d862bc36821f/,LABELBLEU,,10/08/2022,10.0000000,12.0000000,42.535086000000,3.064418000000,LABELBLEU,Criques de porteils,27238,observation-a8d7c760-1300-4c46-9739-d862bc36821f-12,https://biolit.fr/observations/observation-a8d7c760-1300-4c46-9739-d862bc36821f-12/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/test oursin-scaled.jpg,,TRUE, +N1,28425,sortie-a8d7c760-1300-4c46-9739-d862bc36821f,https://biolit.fr/sorties/sortie-a8d7c760-1300-4c46-9739-d862bc36821f/,LABELBLEU,,10/08/2022,10.0000000,12.0000000,42.535086000000,3.064418000000,LABELBLEU,Criques de porteils,27240,observation-a8d7c760-1300-4c46-9739-d862bc36821f-13,https://biolit.fr/observations/observation-a8d7c760-1300-4c46-9739-d862bc36821f-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/non identifie2-scaled.jpg,,FALSE, +N1,28425,sortie-a8d7c760-1300-4c46-9739-d862bc36821f,https://biolit.fr/sorties/sortie-a8d7c760-1300-4c46-9739-d862bc36821f/,LABELBLEU,,10/08/2022,10.0000000,12.0000000,42.535086000000,3.064418000000,LABELBLEU,Criques de porteils,27242,observation-a8d7c760-1300-4c46-9739-d862bc36821f-14,https://biolit.fr/observations/observation-a8d7c760-1300-4c46-9739-d862bc36821f-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ulve_0-scaled.jpg,,FALSE, +N1,28426,sortie-2c033447-96d8-4198-b68e-c4de49ea98ce,https://biolit.fr/sorties/sortie-2c033447-96d8-4198-b68e-c4de49ea98ce/,Marine,,10/08/2022,11.0000000,11.0:15,43.284218000000,5.315710000000,Planète Mer,Plage st Estève ,27244,observation-2c033447-96d8-4198-b68e-c4de49ea98ce,https://biolit.fr/observations/observation-2c033447-96d8-4198-b68e-c4de49ea98ce/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/1665660991219_compress94-scaled.jpg,,TRUE, +N1,28426,sortie-2c033447-96d8-4198-b68e-c4de49ea98ce,https://biolit.fr/sorties/sortie-2c033447-96d8-4198-b68e-c4de49ea98ce/,Marine,,10/08/2022,11.0000000,11.0:15,43.284218000000,5.315710000000,Planète Mer,Plage st Estève ,27246,observation-2c033447-96d8-4198-b68e-c4de49ea98ce-2,https://biolit.fr/observations/observation-2c033447-96d8-4198-b68e-c4de49ea98ce-2/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/1665660991131_compress34-scaled.jpg,,TRUE, +N1,28426,sortie-2c033447-96d8-4198-b68e-c4de49ea98ce,https://biolit.fr/sorties/sortie-2c033447-96d8-4198-b68e-c4de49ea98ce/,Marine,,10/08/2022,11.0000000,11.0:15,43.284218000000,5.315710000000,Planète Mer,Plage st Estève ,27248,observation-2c033447-96d8-4198-b68e-c4de49ea98ce-3,https://biolit.fr/observations/observation-2c033447-96d8-4198-b68e-c4de49ea98ce-3/,Posidonia oceanica,Fleur de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/1665660991164_compress5-scaled.jpg,,TRUE, +N1,28426,sortie-2c033447-96d8-4198-b68e-c4de49ea98ce,https://biolit.fr/sorties/sortie-2c033447-96d8-4198-b68e-c4de49ea98ce/,Marine,,10/08/2022,11.0000000,11.0:15,43.284218000000,5.315710000000,Planète Mer,Plage st Estève ,27250,observation-2c033447-96d8-4198-b68e-c4de49ea98ce-4,https://biolit.fr/observations/observation-2c033447-96d8-4198-b68e-c4de49ea98ce-4/,Posidonia oceanica,Fleur de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/1665660991113_compress73-scaled.jpg,,TRUE, +N1,28427,sortie-254d7deb-6f3a-471b-9655-9249c17984b8,https://biolit.fr/sorties/sortie-254d7deb-6f3a-471b-9655-9249c17984b8/,Institut Marin du Seaquarium,,9/18/2022 0:00,16.0000000,18.0000000,43.557372000000,4.0696770000,Institut Marin du Seaquarium,Plage du Couchant La Grande Motte,27252,observation-254d7deb-6f3a-471b-9655-9249c17984b8,https://biolit.fr/observations/observation-254d7deb-6f3a-471b-9655-9249c17984b8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mactre_18092022-scaled.jpg,,FALSE, +N1,28428,sortie-1c727099-e5f9-4036-89a8-a283a016dfdf,https://biolit.fr/sorties/sortie-1c727099-e5f9-4036-89a8-a283a016dfdf/,Institut Marin du Seaquarium,,9/18/2022 0:00,16.0000000,18.0000000,43.557372000000,4.0696770000,Institut Marin du Seaquarium,Plage du Couchant La Grande Motte,27254,observation-1c727099-e5f9-4036-89a8-a283a016dfdf,https://biolit.fr/observations/observation-1c727099-e5f9-4036-89a8-a283a016dfdf/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mactre_18092022-scaled.jpg,,FALSE, +N1,28428,sortie-1c727099-e5f9-4036-89a8-a283a016dfdf,https://biolit.fr/sorties/sortie-1c727099-e5f9-4036-89a8-a283a016dfdf/,Institut Marin du Seaquarium,,9/18/2022 0:00,16.0000000,18.0000000,43.557372000000,4.0696770000,Institut Marin du Seaquarium,Plage du Couchant La Grande Motte,27255,observation-1c727099-e5f9-4036-89a8-a283a016dfdf-2,https://biolit.fr/observations/observation-1c727099-e5f9-4036-89a8-a283a016dfdf-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/posidonie zostere-scaled.jpg,,FALSE, +N1,28428,sortie-1c727099-e5f9-4036-89a8-a283a016dfdf,https://biolit.fr/sorties/sortie-1c727099-e5f9-4036-89a8-a283a016dfdf/,Institut Marin du Seaquarium,,9/18/2022 0:00,16.0000000,18.0000000,43.557372000000,4.0696770000,Institut Marin du Seaquarium,Plage du Couchant La Grande Motte,27257,observation-1c727099-e5f9-4036-89a8-a283a016dfdf-3,https://biolit.fr/observations/observation-1c727099-e5f9-4036-89a8-a283a016dfdf-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/couteau silique-scaled.jpg,,FALSE, +N1,28428,sortie-1c727099-e5f9-4036-89a8-a283a016dfdf,https://biolit.fr/sorties/sortie-1c727099-e5f9-4036-89a8-a283a016dfdf/,Institut Marin du Seaquarium,,9/18/2022 0:00,16.0000000,18.0000000,43.557372000000,4.0696770000,Institut Marin du Seaquarium,Plage du Couchant La Grande Motte,27259,observation-1c727099-e5f9-4036-89a8-a283a016dfdf-4,https://biolit.fr/observations/observation-1c727099-e5f9-4036-89a8-a283a016dfdf-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Turitelle commune-scaled.jpg,,FALSE, +N1,28429,sortie-685373a0-78c1-4ae6-b817-b97762d1a5fa,https://biolit.fr/sorties/sortie-685373a0-78c1-4ae6-b817-b97762d1a5fa/,LABELBLEU,,8/30/2022 0:00,9.0000000,11.0000000,42.641226000000,3.035160000000,,Plage Saint-Cyprien,27261,observation-685373a0-78c1-4ae6-b817-b97762d1a5fa,https://biolit.fr/observations/observation-685373a0-78c1-4ae6-b817-b97762d1a5fa/,,,,https://biolit.fr/wp-content/uploads/2023/07/Biolit Telline.jpg,,FALSE, +N1,28429,sortie-685373a0-78c1-4ae6-b817-b97762d1a5fa,https://biolit.fr/sorties/sortie-685373a0-78c1-4ae6-b817-b97762d1a5fa/,LABELBLEU,,8/30/2022 0:00,9.0000000,11.0000000,42.641226000000,3.035160000000,,Plage Saint-Cyprien,27263,observation-685373a0-78c1-4ae6-b817-b97762d1a5fa-2,https://biolit.fr/observations/observation-685373a0-78c1-4ae6-b817-b97762d1a5fa-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Biolit coque.jpg,,FALSE, +N1,28429,sortie-685373a0-78c1-4ae6-b817-b97762d1a5fa,https://biolit.fr/sorties/sortie-685373a0-78c1-4ae6-b817-b97762d1a5fa/,LABELBLEU,,8/30/2022 0:00,9.0000000,11.0000000,42.641226000000,3.035160000000,,Plage Saint-Cyprien,27265,observation-685373a0-78c1-4ae6-b817-b97762d1a5fa-3,https://biolit.fr/observations/observation-685373a0-78c1-4ae6-b817-b97762d1a5fa-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Biolit anomie.jpg,,FALSE, +N1,28429,sortie-685373a0-78c1-4ae6-b817-b97762d1a5fa,https://biolit.fr/sorties/sortie-685373a0-78c1-4ae6-b817-b97762d1a5fa/,LABELBLEU,,8/30/2022 0:00,9.0000000,11.0000000,42.641226000000,3.035160000000,,Plage Saint-Cyprien,27267,observation-685373a0-78c1-4ae6-b817-b97762d1a5fa-4,https://biolit.fr/observations/observation-685373a0-78c1-4ae6-b817-b97762d1a5fa-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Biolit couteau.jpg,,FALSE, +N1,28429,sortie-685373a0-78c1-4ae6-b817-b97762d1a5fa,https://biolit.fr/sorties/sortie-685373a0-78c1-4ae6-b817-b97762d1a5fa/,LABELBLEU,,8/30/2022 0:00,9.0000000,11.0000000,42.641226000000,3.035160000000,,Plage Saint-Cyprien,27269,observation-685373a0-78c1-4ae6-b817-b97762d1a5fa-5,https://biolit.fr/observations/observation-685373a0-78c1-4ae6-b817-b97762d1a5fa-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Biolit Lucine.jpg,,FALSE, +N1,28429,sortie-685373a0-78c1-4ae6-b817-b97762d1a5fa,https://biolit.fr/sorties/sortie-685373a0-78c1-4ae6-b817-b97762d1a5fa/,LABELBLEU,,8/30/2022 0:00,9.0000000,11.0000000,42.641226000000,3.035160000000,,Plage Saint-Cyprien,27271,observation-685373a0-78c1-4ae6-b817-b97762d1a5fa-6,https://biolit.fr/observations/observation-685373a0-78c1-4ae6-b817-b97762d1a5fa-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Biolit Telline 2.jpg,,FALSE, +N1,28429,sortie-685373a0-78c1-4ae6-b817-b97762d1a5fa,https://biolit.fr/sorties/sortie-685373a0-78c1-4ae6-b817-b97762d1a5fa/,LABELBLEU,,8/30/2022 0:00,9.0000000,11.0000000,42.641226000000,3.035160000000,,Plage Saint-Cyprien,27273,observation-685373a0-78c1-4ae6-b817-b97762d1a5fa-7,https://biolit.fr/observations/observation-685373a0-78c1-4ae6-b817-b97762d1a5fa-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Biolit morceau nasse reticulee.jpg,,FALSE, +N1,28429,sortie-685373a0-78c1-4ae6-b817-b97762d1a5fa,https://biolit.fr/sorties/sortie-685373a0-78c1-4ae6-b817-b97762d1a5fa/,LABELBLEU,,8/30/2022 0:00,9.0000000,11.0000000,42.641226000000,3.035160000000,,Plage Saint-Cyprien,27275,observation-685373a0-78c1-4ae6-b817-b97762d1a5fa-8,https://biolit.fr/observations/observation-685373a0-78c1-4ae6-b817-b97762d1a5fa-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Biolit scrobiculaire.jpg,,FALSE, +N1,28430,sortie-6d847e85-5c99-4904-8db9-403a6e0536be,https://biolit.fr/sorties/sortie-6d847e85-5c99-4904-8db9-403a6e0536be/,Andromede,,5/21/2022 0:00,9.0000000,11.0000000,43.239894000000,5.362450000000,Planète Mer,"Plage du Bain des Dames, Marseille pointe rouge",27277,observation-6d847e85-5c99-4904-8db9-403a6e0536be,https://biolit.fr/observations/observation-6d847e85-5c99-4904-8db9-403a6e0536be/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_5005-scaled.jpg,,FALSE, +N1,28430,sortie-6d847e85-5c99-4904-8db9-403a6e0536be,https://biolit.fr/sorties/sortie-6d847e85-5c99-4904-8db9-403a6e0536be/,Andromede,,5/21/2022 0:00,9.0000000,11.0000000,43.239894000000,5.362450000000,Planète Mer,"Plage du Bain des Dames, Marseille pointe rouge",27279,observation-6d847e85-5c99-4904-8db9-403a6e0536be-2,https://biolit.fr/observations/observation-6d847e85-5c99-4904-8db9-403a6e0536be-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_5006-scaled.jpg,,FALSE, +N1,28430,sortie-6d847e85-5c99-4904-8db9-403a6e0536be,https://biolit.fr/sorties/sortie-6d847e85-5c99-4904-8db9-403a6e0536be/,Andromede,,5/21/2022 0:00,9.0000000,11.0000000,43.239894000000,5.362450000000,Planète Mer,"Plage du Bain des Dames, Marseille pointe rouge",27281,observation-6d847e85-5c99-4904-8db9-403a6e0536be-3,https://biolit.fr/observations/observation-6d847e85-5c99-4904-8db9-403a6e0536be-3/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/_MG_5008.JPG,,TRUE, +N1,28430,sortie-6d847e85-5c99-4904-8db9-403a6e0536be,https://biolit.fr/sorties/sortie-6d847e85-5c99-4904-8db9-403a6e0536be/,Andromede,,5/21/2022 0:00,9.0000000,11.0000000,43.239894000000,5.362450000000,Planète Mer,"Plage du Bain des Dames, Marseille pointe rouge",27283,observation-6d847e85-5c99-4904-8db9-403a6e0536be-4,https://biolit.fr/observations/observation-6d847e85-5c99-4904-8db9-403a6e0536be-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_5010.JPG,,FALSE, +N1,28430,sortie-6d847e85-5c99-4904-8db9-403a6e0536be,https://biolit.fr/sorties/sortie-6d847e85-5c99-4904-8db9-403a6e0536be/,Andromede,,5/21/2022 0:00,9.0000000,11.0000000,43.239894000000,5.362450000000,Planète Mer,"Plage du Bain des Dames, Marseille pointe rouge",27285,observation-6d847e85-5c99-4904-8db9-403a6e0536be-5,https://biolit.fr/observations/observation-6d847e85-5c99-4904-8db9-403a6e0536be-5/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/_MG_5012.JPG,,TRUE, +N1,28430,sortie-6d847e85-5c99-4904-8db9-403a6e0536be,https://biolit.fr/sorties/sortie-6d847e85-5c99-4904-8db9-403a6e0536be/,Andromede,,5/21/2022 0:00,9.0000000,11.0000000,43.239894000000,5.362450000000,Planète Mer,"Plage du Bain des Dames, Marseille pointe rouge",27287,observation-6d847e85-5c99-4904-8db9-403a6e0536be-6,https://biolit.fr/observations/observation-6d847e85-5c99-4904-8db9-403a6e0536be-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_5015.JPG,,FALSE, +N1,28430,sortie-6d847e85-5c99-4904-8db9-403a6e0536be,https://biolit.fr/sorties/sortie-6d847e85-5c99-4904-8db9-403a6e0536be/,Andromede,,5/21/2022 0:00,9.0000000,11.0000000,43.239894000000,5.362450000000,Planète Mer,"Plage du Bain des Dames, Marseille pointe rouge",27289,observation-6d847e85-5c99-4904-8db9-403a6e0536be-7,https://biolit.fr/observations/observation-6d847e85-5c99-4904-8db9-403a6e0536be-7/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/_MG_5022.JPG,,TRUE, +N1,28430,sortie-6d847e85-5c99-4904-8db9-403a6e0536be,https://biolit.fr/sorties/sortie-6d847e85-5c99-4904-8db9-403a6e0536be/,Andromede,,5/21/2022 0:00,9.0000000,11.0000000,43.239894000000,5.362450000000,Planète Mer,"Plage du Bain des Dames, Marseille pointe rouge",27291,observation-6d847e85-5c99-4904-8db9-403a6e0536be-8,https://biolit.fr/observations/observation-6d847e85-5c99-4904-8db9-403a6e0536be-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_5023.JPG,,FALSE, +N1,28430,sortie-6d847e85-5c99-4904-8db9-403a6e0536be,https://biolit.fr/sorties/sortie-6d847e85-5c99-4904-8db9-403a6e0536be/,Andromede,,5/21/2022 0:00,9.0000000,11.0000000,43.239894000000,5.362450000000,Planète Mer,"Plage du Bain des Dames, Marseille pointe rouge",27293,observation-6d847e85-5c99-4904-8db9-403a6e0536be-9,https://biolit.fr/observations/observation-6d847e85-5c99-4904-8db9-403a6e0536be-9/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/_MG_5025.JPG,,TRUE, +N1,28430,sortie-6d847e85-5c99-4904-8db9-403a6e0536be,https://biolit.fr/sorties/sortie-6d847e85-5c99-4904-8db9-403a6e0536be/,Andromede,,5/21/2022 0:00,9.0000000,11.0000000,43.239894000000,5.362450000000,Planète Mer,"Plage du Bain des Dames, Marseille pointe rouge",27295,observation-6d847e85-5c99-4904-8db9-403a6e0536be-10,https://biolit.fr/observations/observation-6d847e85-5c99-4904-8db9-403a6e0536be-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_5026.JPG,,FALSE, +N1,28430,sortie-6d847e85-5c99-4904-8db9-403a6e0536be,https://biolit.fr/sorties/sortie-6d847e85-5c99-4904-8db9-403a6e0536be/,Andromede,,5/21/2022 0:00,9.0000000,11.0000000,43.239894000000,5.362450000000,Planète Mer,"Plage du Bain des Dames, Marseille pointe rouge",27297,observation-6d847e85-5c99-4904-8db9-403a6e0536be-11,https://biolit.fr/observations/observation-6d847e85-5c99-4904-8db9-403a6e0536be-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_5027.JPG,,FALSE, +N1,28431,sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b,https://biolit.fr/sorties/sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b/,Institut Marin du Seaquarium,,4/29/2022 0:00,10.0000000,12.0000000,43.526306000000,4.138452000000,Institut Marin du Seaquarium,Plage Seaquarium - Grau du Roi,27299,observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b,https://biolit.fr/observations/observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220429_114932-scaled.jpg,,TRUE, +N1,28431,sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b,https://biolit.fr/sorties/sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b/,Institut Marin du Seaquarium,,4/29/2022 0:00,10.0000000,12.0000000,43.526306000000,4.138452000000,Institut Marin du Seaquarium,Plage Seaquarium - Grau du Roi,27301,observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-2,https://biolit.fr/observations/observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-2/,Grateloupia turuturu,Grateloupe du Pacifique,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220429_115006-scaled.jpg,,TRUE, +N1,28431,sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b,https://biolit.fr/sorties/sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b/,Institut Marin du Seaquarium,,4/29/2022 0:00,10.0000000,12.0000000,43.526306000000,4.138452000000,Institut Marin du Seaquarium,Plage Seaquarium - Grau du Roi,27303,observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-3,https://biolit.fr/observations/observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-3/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220429_114810-scaled.jpg,,TRUE, +N1,28431,sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b,https://biolit.fr/sorties/sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b/,Institut Marin du Seaquarium,,4/29/2022 0:00,10.0000000,12.0000000,43.526306000000,4.138452000000,Institut Marin du Seaquarium,Plage Seaquarium - Grau du Roi,27305,observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-4,https://biolit.fr/observations/observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-4/,Turritellinella tricarinata,Turritelle commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220429_113842-scaled.jpg,,TRUE, +N1,28431,sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b,https://biolit.fr/sorties/sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b/,Institut Marin du Seaquarium,,4/29/2022 0:00,10.0000000,12.0000000,43.526306000000,4.138452000000,Institut Marin du Seaquarium,Plage Seaquarium - Grau du Roi,27307,observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-5,https://biolit.fr/observations/observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220429_113815-scaled.jpg,,FALSE, +N1,28431,sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b,https://biolit.fr/sorties/sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b/,Institut Marin du Seaquarium,,4/29/2022 0:00,10.0000000,12.0000000,43.526306000000,4.138452000000,Institut Marin du Seaquarium,Plage Seaquarium - Grau du Roi,27309,observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-6,https://biolit.fr/observations/observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-6/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220429_113802-scaled.jpg,,TRUE, +N1,28431,sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b,https://biolit.fr/sorties/sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b/,Institut Marin du Seaquarium,,4/29/2022 0:00,10.0000000,12.0000000,43.526306000000,4.138452000000,Institut Marin du Seaquarium,Plage Seaquarium - Grau du Roi,27311,observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-7,https://biolit.fr/observations/observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-7/,Tritia neritea,Cyclope néritoïde,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220429_113732-scaled.jpg,,TRUE, +N1,28431,sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b,https://biolit.fr/sorties/sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b/,Institut Marin du Seaquarium,,4/29/2022 0:00,10.0000000,12.0000000,43.526306000000,4.138452000000,Institut Marin du Seaquarium,Plage Seaquarium - Grau du Roi,27313,observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-8,https://biolit.fr/observations/observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-8/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220429_113627-scaled.jpg,,TRUE, +N1,28431,sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b,https://biolit.fr/sorties/sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b/,Institut Marin du Seaquarium,,4/29/2022 0:00,10.0000000,12.0000000,43.526306000000,4.138452000000,Institut Marin du Seaquarium,Plage Seaquarium - Grau du Roi,27315,observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-9,https://biolit.fr/observations/observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-9/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220429_113559-scaled.jpg,,TRUE, +N1,28431,sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b,https://biolit.fr/sorties/sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b/,Institut Marin du Seaquarium,,4/29/2022 0:00,10.0000000,12.0000000,43.526306000000,4.138452000000,Institut Marin du Seaquarium,Plage Seaquarium - Grau du Roi,27317,observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-10,https://biolit.fr/observations/observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220429_113545-scaled.jpg,,FALSE, +N1,28431,sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b,https://biolit.fr/sorties/sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b/,Institut Marin du Seaquarium,,4/29/2022 0:00,10.0000000,12.0000000,43.526306000000,4.138452000000,Institut Marin du Seaquarium,Plage Seaquarium - Grau du Roi,27319,observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-11,https://biolit.fr/observations/observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-11/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220429_113459-scaled.jpg,,TRUE, +N1,28431,sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b,https://biolit.fr/sorties/sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b/,Institut Marin du Seaquarium,,4/29/2022 0:00,10.0000000,12.0000000,43.526306000000,4.138452000000,Institut Marin du Seaquarium,Plage Seaquarium - Grau du Roi,27321,observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-12,https://biolit.fr/observations/observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-12/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220429_113402-scaled.jpg,,TRUE, +N1,28431,sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b,https://biolit.fr/sorties/sortie-6c3cdb53-1051-42ff-b1b3-dec4e5de640b/,Institut Marin du Seaquarium,,4/29/2022 0:00,10.0000000,12.0000000,43.526306000000,4.138452000000,Institut Marin du Seaquarium,Plage Seaquarium - Grau du Roi,27323,observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-13,https://biolit.fr/observations/observation-6c3cdb53-1051-42ff-b1b3-dec4e5de640b-13/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220429_113349-scaled.jpg,,TRUE, +N1,28432,sortie-0cd0e671-272b-413a-8c79-bd8ceba4d206,https://biolit.fr/sorties/sortie-0cd0e671-272b-413a-8c79-bd8ceba4d206/,Marine,,05/07/2022,17.0000000,17.000005,43.202272000000,5.498210000000,,Calanque d'En Vau,27325,observation-0cd0e671-272b-413a-8c79-bd8ceba4d206,https://biolit.fr/observations/observation-0cd0e671-272b-413a-8c79-bd8ceba4d206/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220507_171620_compress40-scaled.jpg,,TRUE, +N1,28432,sortie-0cd0e671-272b-413a-8c79-bd8ceba4d206,https://biolit.fr/sorties/sortie-0cd0e671-272b-413a-8c79-bd8ceba4d206/,Marine,,05/07/2022,17.0000000,17.000005,43.202272000000,5.498210000000,,Calanque d'En Vau,27327,observation-0cd0e671-272b-413a-8c79-bd8ceba4d206-2,https://biolit.fr/observations/observation-0cd0e671-272b-413a-8c79-bd8ceba4d206-2/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220507_171617_compress2-scaled.jpg,,TRUE, +N1,28433,sortie-70c8db60-829b-456c-86f3-6237c0925ee3,https://biolit.fr/sorties/sortie-70c8db60-829b-456c-86f3-6237c0925ee3/,Marine,,4/30/2022 0:00,19.0:15,19.0000000,43.142506000000,6.382592000000,,Plage saint clair,27329,observation-70c8db60-829b-456c-86f3-6237c0925ee3,https://biolit.fr/observations/observation-70c8db60-829b-456c-86f3-6237c0925ee3/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220430_192515-scaled.jpg,,TRUE, +N1,28433,sortie-70c8db60-829b-456c-86f3-6237c0925ee3,https://biolit.fr/sorties/sortie-70c8db60-829b-456c-86f3-6237c0925ee3/,Marine,,4/30/2022 0:00,19.0:15,19.0000000,43.142506000000,6.382592000000,,Plage saint clair,27331,observation-70c8db60-829b-456c-86f3-6237c0925ee3-2,https://biolit.fr/observations/observation-70c8db60-829b-456c-86f3-6237c0925ee3-2/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220430_192519-scaled.jpg,,TRUE, +N1,28434,sortie-feb88219-badd-4393-b53f-56c56ebfc645,https://biolit.fr/sorties/sortie-feb88219-badd-4393-b53f-56c56ebfc645/,CarpeDiem,,4/17/2022 0:00,16.0000000,17.0000000,43.437370000000,6.892520000000,,Calanque d'Anthéor ,27333,observation-feb88219-badd-4393-b53f-56c56ebfc645,https://biolit.fr/observations/observation-feb88219-badd-4393-b53f-56c56ebfc645/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Cymbulia peronii-scaled.jpg,,TRUE, +N1,28434,sortie-feb88219-badd-4393-b53f-56c56ebfc645,https://biolit.fr/sorties/sortie-feb88219-badd-4393-b53f-56c56ebfc645/,CarpeDiem,,4/17/2022 0:00,16.0000000,17.0000000,43.437370000000,6.892520000000,,Calanque d'Anthéor ,27335,observation-feb88219-badd-4393-b53f-56c56ebfc645-2,https://biolit.fr/observations/observation-feb88219-badd-4393-b53f-56c56ebfc645-2/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Cymbulia peronii-scaled.jpg,,TRUE, +N1,28434,sortie-feb88219-badd-4393-b53f-56c56ebfc645,https://biolit.fr/sorties/sortie-feb88219-badd-4393-b53f-56c56ebfc645/,CarpeDiem,,4/17/2022 0:00,16.0000000,17.0000000,43.437370000000,6.892520000000,,Calanque d'Anthéor ,27336,observation-feb88219-badd-4393-b53f-56c56ebfc645-3,https://biolit.fr/observations/observation-feb88219-badd-4393-b53f-56c56ebfc645-3/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Posidonie_3-scaled.jpg,,TRUE, +N1,28434,sortie-feb88219-badd-4393-b53f-56c56ebfc645,https://biolit.fr/sorties/sortie-feb88219-badd-4393-b53f-56c56ebfc645/,CarpeDiem,,4/17/2022 0:00,16.0000000,17.0000000,43.437370000000,6.892520000000,,Calanque d'Anthéor ,27338,observation-feb88219-badd-4393-b53f-56c56ebfc645-4,https://biolit.fr/observations/observation-feb88219-badd-4393-b53f-56c56ebfc645-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220417_161329-scaled.jpg,,FALSE, +N1,28434,sortie-feb88219-badd-4393-b53f-56c56ebfc645,https://biolit.fr/sorties/sortie-feb88219-badd-4393-b53f-56c56ebfc645/,CarpeDiem,,4/17/2022 0:00,16.0000000,17.0000000,43.437370000000,6.892520000000,,Calanque d'Anthéor ,27340,observation-feb88219-badd-4393-b53f-56c56ebfc645-5,https://biolit.fr/observations/observation-feb88219-badd-4393-b53f-56c56ebfc645-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220417_161402-scaled.jpg,,FALSE, +N1,28435,sortie-e9787914-da2d-4832-ae63-b599863d9bfc,https://biolit.fr/sorties/sortie-e9787914-da2d-4832-ae63-b599863d9bfc/,Marine,,3/17/2022 0:00,14.0000000,14.0:45,43.429376000000,3.767065000000,CPIE Littoral d'Occitanie,Plage du Poisson rouge,27342,observation-e9787914-da2d-4832-ae63-b599863d9bfc,https://biolit.fr/observations/observation-e9787914-da2d-4832-ae63-b599863d9bfc/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220317_144048-scaled.jpg,,FALSE, +N1,28435,sortie-e9787914-da2d-4832-ae63-b599863d9bfc,https://biolit.fr/sorties/sortie-e9787914-da2d-4832-ae63-b599863d9bfc/,Marine,,3/17/2022 0:00,14.0000000,14.0:45,43.429376000000,3.767065000000,CPIE Littoral d'Occitanie,Plage du Poisson rouge,27344,observation-e9787914-da2d-4832-ae63-b599863d9bfc-2,https://biolit.fr/observations/observation-e9787914-da2d-4832-ae63-b599863d9bfc-2/,Ocenebra erinaceus,Ponte de Bigorneau perceur,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220317_150757-scaled.jpg,,TRUE, +N1,28435,sortie-e9787914-da2d-4832-ae63-b599863d9bfc,https://biolit.fr/sorties/sortie-e9787914-da2d-4832-ae63-b599863d9bfc/,Marine,,3/17/2022 0:00,14.0000000,14.0:45,43.429376000000,3.767065000000,CPIE Littoral d'Occitanie,Plage du Poisson rouge,27346,observation-e9787914-da2d-4832-ae63-b599863d9bfc-3,https://biolit.fr/observations/observation-e9787914-da2d-4832-ae63-b599863d9bfc-3/,Ocenebra erinaceus,Ponte de Bigorneau perceur,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220317_150819-scaled.jpg,,TRUE, +N1,28435,sortie-e9787914-da2d-4832-ae63-b599863d9bfc,https://biolit.fr/sorties/sortie-e9787914-da2d-4832-ae63-b599863d9bfc/,Marine,,3/17/2022 0:00,14.0000000,14.0:45,43.429376000000,3.767065000000,CPIE Littoral d'Occitanie,Plage du Poisson rouge,27348,observation-e9787914-da2d-4832-ae63-b599863d9bfc-4,https://biolit.fr/observations/observation-e9787914-da2d-4832-ae63-b599863d9bfc-4/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220317_150834-scaled.jpg,,TRUE, +N1,28435,sortie-e9787914-da2d-4832-ae63-b599863d9bfc,https://biolit.fr/sorties/sortie-e9787914-da2d-4832-ae63-b599863d9bfc/,Marine,,3/17/2022 0:00,14.0000000,14.0:45,43.429376000000,3.767065000000,CPIE Littoral d'Occitanie,Plage du Poisson rouge,27350,observation-e9787914-da2d-4832-ae63-b599863d9bfc-5,https://biolit.fr/observations/observation-e9787914-da2d-4832-ae63-b599863d9bfc-5/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220317_150840-scaled.jpg,,TRUE, +N1,28435,sortie-e9787914-da2d-4832-ae63-b599863d9bfc,https://biolit.fr/sorties/sortie-e9787914-da2d-4832-ae63-b599863d9bfc/,Marine,,3/17/2022 0:00,14.0000000,14.0:45,43.429376000000,3.767065000000,CPIE Littoral d'Occitanie,Plage du Poisson rouge,27352,observation-e9787914-da2d-4832-ae63-b599863d9bfc-6,https://biolit.fr/observations/observation-e9787914-da2d-4832-ae63-b599863d9bfc-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220317_150843-scaled.jpg,,FALSE, +N1,28435,sortie-e9787914-da2d-4832-ae63-b599863d9bfc,https://biolit.fr/sorties/sortie-e9787914-da2d-4832-ae63-b599863d9bfc/,Marine,,3/17/2022 0:00,14.0000000,14.0:45,43.429376000000,3.767065000000,CPIE Littoral d'Occitanie,Plage du Poisson rouge,27354,observation-e9787914-da2d-4832-ae63-b599863d9bfc-7,https://biolit.fr/observations/observation-e9787914-da2d-4832-ae63-b599863d9bfc-7/,Eunicella singularis,Gorgone blanche,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220317_150849-scaled.jpg,,TRUE, +N1,28435,sortie-e9787914-da2d-4832-ae63-b599863d9bfc,https://biolit.fr/sorties/sortie-e9787914-da2d-4832-ae63-b599863d9bfc/,Marine,,3/17/2022 0:00,14.0000000,14.0:45,43.429376000000,3.767065000000,CPIE Littoral d'Occitanie,Plage du Poisson rouge,27356,observation-e9787914-da2d-4832-ae63-b599863d9bfc-8,https://biolit.fr/observations/observation-e9787914-da2d-4832-ae63-b599863d9bfc-8/,Bolinus brandaris,Murex épineux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220317_150902-scaled.jpg,,TRUE, +N1,28435,sortie-e9787914-da2d-4832-ae63-b599863d9bfc,https://biolit.fr/sorties/sortie-e9787914-da2d-4832-ae63-b599863d9bfc/,Marine,,3/17/2022 0:00,14.0000000,14.0:45,43.429376000000,3.767065000000,CPIE Littoral d'Occitanie,Plage du Poisson rouge,27358,observation-e9787914-da2d-4832-ae63-b599863d9bfc-9,https://biolit.fr/observations/observation-e9787914-da2d-4832-ae63-b599863d9bfc-9/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220317_150912-scaled.jpg,,TRUE, +N1,28435,sortie-e9787914-da2d-4832-ae63-b599863d9bfc,https://biolit.fr/sorties/sortie-e9787914-da2d-4832-ae63-b599863d9bfc/,Marine,,3/17/2022 0:00,14.0000000,14.0:45,43.429376000000,3.767065000000,CPIE Littoral d'Occitanie,Plage du Poisson rouge,27360,observation-e9787914-da2d-4832-ae63-b599863d9bfc-10,https://biolit.fr/observations/observation-e9787914-da2d-4832-ae63-b599863d9bfc-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220317_151422-scaled.jpg,,FALSE, +N1,28435,sortie-e9787914-da2d-4832-ae63-b599863d9bfc,https://biolit.fr/sorties/sortie-e9787914-da2d-4832-ae63-b599863d9bfc/,Marine,,3/17/2022 0:00,14.0000000,14.0:45,43.429376000000,3.767065000000,CPIE Littoral d'Occitanie,Plage du Poisson rouge,27362,observation-e9787914-da2d-4832-ae63-b599863d9bfc-11,https://biolit.fr/observations/observation-e9787914-da2d-4832-ae63-b599863d9bfc-11/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220317_150938-scaled.jpg,,TRUE, +N1,28436,sortie-4b847ac5-477e-4220-8596-4d2894b22118,https://biolit.fr/sorties/sortie-4b847ac5-477e-4220-8596-4d2894b22118/,Institut Marin du Seaquarium,,2/24/2022 0:00,10.0000000,12.0000000,43.525799000000,4.137945000000,,Plage Seaquarium,27364,observation-4b847ac5-477e-4220-8596-4d2894b22118,https://biolit.fr/observations/observation-4b847ac5-477e-4220-8596-4d2894b22118/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220223_112543_0-scaled.jpg,,FALSE, +N1,28437,sortie-7354496a-e39b-437c-8344-67f205dfc0f4,https://biolit.fr/sorties/sortie-7354496a-e39b-437c-8344-67f205dfc0f4/,Institut Marin du Seaquarium,,2/23/2020 0:00,10.0000000,12.0000000,43.525905000000,4.137720000000,,Plage Seaquarium,27366,observation-7354496a-e39b-437c-8344-67f205dfc0f4,https://biolit.fr/observations/observation-7354496a-e39b-437c-8344-67f205dfc0f4/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220223_112607-scaled.jpg,,TRUE, +N1,28437,sortie-7354496a-e39b-437c-8344-67f205dfc0f4,https://biolit.fr/sorties/sortie-7354496a-e39b-437c-8344-67f205dfc0f4/,Institut Marin du Seaquarium,,2/23/2020 0:00,10.0000000,12.0000000,43.525905000000,4.137720000000,,Plage Seaquarium,27368,observation-7354496a-e39b-437c-8344-67f205dfc0f4-2,https://biolit.fr/observations/observation-7354496a-e39b-437c-8344-67f205dfc0f4-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220223_112626-scaled.jpg,,TRUE, +N1,28438,sortie-42ee676e-dbfe-44f0-9459-fa843f27d9ae,https://biolit.fr/sorties/sortie-42ee676e-dbfe-44f0-9459-fa843f27d9ae/,Institut Marin du Seaquarium,,2/22/2022 0:00,10.0000000,11.0:45,43.525920000000,4.137741000000,,Plage Seaquarium,27370,observation-42ee676e-dbfe-44f0-9459-fa843f27d9ae,https://biolit.fr/observations/observation-42ee676e-dbfe-44f0-9459-fa843f27d9ae/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220223_112543-scaled.jpg,,TRUE, +N1,28439,sortie-122e1ee0-b580-42dc-976b-f3df3a71da7a,https://biolit.fr/sorties/sortie-122e1ee0-b580-42dc-976b-f3df3a71da7a/,AIEJE,,12/14/2021 0:00,17.0000000,19.0000000,43.328450000000,5.055239000000,AIEJE,plage de la vieille couronne,27372,observation-122e1ee0-b580-42dc-976b-f3df3a71da7a,https://biolit.fr/observations/observation-122e1ee0-b580-42dc-976b-f3df3a71da7a/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_3261[1]-scaled.jpg,,TRUE, +N1,28439,sortie-122e1ee0-b580-42dc-976b-f3df3a71da7a,https://biolit.fr/sorties/sortie-122e1ee0-b580-42dc-976b-f3df3a71da7a/,AIEJE,,12/14/2021 0:00,17.0000000,19.0000000,43.328450000000,5.055239000000,AIEJE,plage de la vieille couronne,27374,observation-122e1ee0-b580-42dc-976b-f3df3a71da7a-2,https://biolit.fr/observations/observation-122e1ee0-b580-42dc-976b-f3df3a71da7a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/oeuf-scaled.jpg,,FALSE, +N1,28440,sortie-053f1c02-1b2b-4df6-9a64-5baf051e6703,https://biolit.fr/sorties/sortie-053f1c02-1b2b-4df6-9a64-5baf051e6703/,AIEJE,,12/14/2021 0:00,17.0000000,18.0000000,43.328349000000,5.05489600000,AIEJE,la vieille couronne ,27376,observation-053f1c02-1b2b-4df6-9a64-5baf051e6703,https://biolit.fr/observations/observation-053f1c02-1b2b-4df6-9a64-5baf051e6703/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/26AA0A62-1271-4800-B70B-AF8A52491999.jpeg,,TRUE, +N1,28440,sortie-053f1c02-1b2b-4df6-9a64-5baf051e6703,https://biolit.fr/sorties/sortie-053f1c02-1b2b-4df6-9a64-5baf051e6703/,AIEJE,,12/14/2021 0:00,17.0000000,18.0000000,43.328349000000,5.05489600000,AIEJE,la vieille couronne ,27378,observation-053f1c02-1b2b-4df6-9a64-5baf051e6703-2,https://biolit.fr/observations/observation-053f1c02-1b2b-4df6-9a64-5baf051e6703-2/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Snapchat-337779907.jpg,,TRUE, +N1,28441,sortie-f26a2c3d-fae5-4d75-afec-43eded221f97,https://biolit.fr/sorties/sortie-f26a2c3d-fae5-4d75-afec-43eded221f97/,larkemsalwa,,12/14/2021 0:00,16.0000000,18.0000000,43.326,5.051,,La vieille couronne,27380,observation-f26a2c3d-fae5-4d75-afec-43eded221f97,https://biolit.fr/observations/observation-f26a2c3d-fae5-4d75-afec-43eded221f97/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/20211207_160532-scaled.jpg,,TRUE, +N1,28441,sortie-f26a2c3d-fae5-4d75-afec-43eded221f97,https://biolit.fr/sorties/sortie-f26a2c3d-fae5-4d75-afec-43eded221f97/,larkemsalwa,,12/14/2021 0:00,16.0000000,18.0000000,43.326,5.051,,La vieille couronne,27382,observation-f26a2c3d-fae5-4d75-afec-43eded221f97-2,https://biolit.fr/observations/observation-f26a2c3d-fae5-4d75-afec-43eded221f97-2/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_6872.JPG,,TRUE, +N1,28441,sortie-f26a2c3d-fae5-4d75-afec-43eded221f97,https://biolit.fr/sorties/sortie-f26a2c3d-fae5-4d75-afec-43eded221f97/,larkemsalwa,,12/14/2021 0:00,16.0000000,18.0000000,43.326,5.051,,La vieille couronne,27384,observation-f26a2c3d-fae5-4d75-afec-43eded221f97-3,https://biolit.fr/observations/observation-f26a2c3d-fae5-4d75-afec-43eded221f97-3/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6875.JPG,,TRUE, +N1,28441,sortie-f26a2c3d-fae5-4d75-afec-43eded221f97,https://biolit.fr/sorties/sortie-f26a2c3d-fae5-4d75-afec-43eded221f97/,larkemsalwa,,12/14/2021 0:00,16.0000000,18.0000000,43.326,5.051,,La vieille couronne,27386,observation-f26a2c3d-fae5-4d75-afec-43eded221f97-4,https://biolit.fr/observations/observation-f26a2c3d-fae5-4d75-afec-43eded221f97-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6876.JPG,,FALSE, +N1,28441,sortie-f26a2c3d-fae5-4d75-afec-43eded221f97,https://biolit.fr/sorties/sortie-f26a2c3d-fae5-4d75-afec-43eded221f97/,larkemsalwa,,12/14/2021 0:00,16.0000000,18.0000000,43.326,5.051,,La vieille couronne,27388,observation-f26a2c3d-fae5-4d75-afec-43eded221f97-5,https://biolit.fr/observations/observation-f26a2c3d-fae5-4d75-afec-43eded221f97-5/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6877_0.JPG,,TRUE, +N1,28442,sortie-fa234748-6c7b-4c5c-ad4f-607ae5b43ad9,https://biolit.fr/sorties/sortie-fa234748-6c7b-4c5c-ad4f-607ae5b43ad9/,Dorian ROULET,,11/26/2021 0:00,10.0000000,10.0000000,43.273026000000,5.361882000000,Planète Mer,Plage du prophète,27390,observation-fa234748-6c7b-4c5c-ad4f-607ae5b43ad9,https://biolit.fr/observations/observation-fa234748-6c7b-4c5c-ad4f-607ae5b43ad9/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG20211126105633-scaled.jpg,,TRUE, +N1,28443,sortie-775f41c0-9a78-4c2f-8ba9-81bfd0e7d772,https://biolit.fr/sorties/sortie-775f41c0-9a78-4c2f-8ba9-81bfd0e7d772/,Evang,,10/05/2021,16.0000000,17.0000000,43.421272000000,5.060904000000,AIEJE,plage de tholon,,,,,,,,,, +N1,28444,sortie-47778a80-6777-4bf1-8fd7-73505a3c27ab,https://biolit.fr/sorties/sortie-47778a80-6777-4bf1-8fd7-73505a3c27ab/,yasmine mehdi,,10/19/2021 0:00,17.0:15,19.0:15,43.419605000000,5.061032000000,AIEJE,Plage Tholon,27394,observation-47778a80-6777-4bf1-8fd7-73505a3c27ab,https://biolit.fr/observations/observation-47778a80-6777-4bf1-8fd7-73505a3c27ab/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1922[1]-scaled.jpg,,FALSE, +N1,28444,sortie-47778a80-6777-4bf1-8fd7-73505a3c27ab,https://biolit.fr/sorties/sortie-47778a80-6777-4bf1-8fd7-73505a3c27ab/,yasmine mehdi,,10/19/2021 0:00,17.0:15,19.0:15,43.419605000000,5.061032000000,AIEJE,Plage Tholon,27396,observation-47778a80-6777-4bf1-8fd7-73505a3c27ab-2,https://biolit.fr/observations/observation-47778a80-6777-4bf1-8fd7-73505a3c27ab-2/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1926[1]-scaled.jpg,,FALSE, +N1,28445,sortie-ba44b6e7-8602-4f29-94fd-bbd9ff496ec7,https://biolit.fr/sorties/sortie-ba44b6e7-8602-4f29-94fd-bbd9ff496ec7/,kaïna.188,,10/05/2021,15.0:55,17.0000000,43.422195000000,5.061392000000,,Etang de Berre,27398,observation-ba44b6e7-8602-4f29-94fd-bbd9ff496ec7,https://biolit.fr/observations/observation-ba44b6e7-8602-4f29-94fd-bbd9ff496ec7/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/odium branchu-scaled.jpg,,TRUE, +N1,28446,sortie-822baafd-d248-4d18-b86d-aa5c42406fc2,https://biolit.fr/sorties/sortie-822baafd-d248-4d18-b86d-aa5c42406fc2/,larkemsalwa,,10/05/2021,16.0000000,17.0000000,43.423936000000,5.060724000000,AIEJE,plage de tolon,27400,observation-822baafd-d248-4d18-b86d-aa5c42406fc2,https://biolit.fr/observations/observation-822baafd-d248-4d18-b86d-aa5c42406fc2/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/20211005_164434(1).jpg,,TRUE, +N1,28446,sortie-822baafd-d248-4d18-b86d-aa5c42406fc2,https://biolit.fr/sorties/sortie-822baafd-d248-4d18-b86d-aa5c42406fc2/,larkemsalwa,,10/05/2021,16.0000000,17.0000000,43.423936000000,5.060724000000,AIEJE,plage de tolon,27402,observation-822baafd-d248-4d18-b86d-aa5c42406fc2-2,https://biolit.fr/observations/observation-822baafd-d248-4d18-b86d-aa5c42406fc2-2/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20211005_164638(1).jpg,,TRUE, +N1,28446,sortie-822baafd-d248-4d18-b86d-aa5c42406fc2,https://biolit.fr/sorties/sortie-822baafd-d248-4d18-b86d-aa5c42406fc2/,larkemsalwa,,10/05/2021,16.0000000,17.0000000,43.423936000000,5.060724000000,AIEJE,plage de tolon,27404,observation-822baafd-d248-4d18-b86d-aa5c42406fc2-3,https://biolit.fr/observations/observation-822baafd-d248-4d18-b86d-aa5c42406fc2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211005_164605(1).jpg,,FALSE, +N1,28447,sortie-ab68adaf-67eb-49bd-b94e-54fab883a65d,https://biolit.fr/sorties/sortie-ab68adaf-67eb-49bd-b94e-54fab883a65d/,AIEJE,,6/30/2021 0:00,11.0000000,12.0000000,43.331345000000,5.20398400000,AIEJE,plage des anthenors,27406,observation-ab68adaf-67eb-49bd-b94e-54fab883a65d,https://biolit.fr/observations/observation-ab68adaf-67eb-49bd-b94e-54fab883a65d/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2981.JPG,,FALSE, +N1,28448,sortie-130fe938-16cd-492a-ad93-a15bbebd2875,https://biolit.fr/sorties/sortie-130fe938-16cd-492a-ad93-a15bbebd2875/,AIEJE,,6/30/2021 0:00,11.0000000,12.0000000,43.33042700000,5.208833000000,AIEJE,plage des anthenors,27408,observation-130fe938-16cd-492a-ad93-a15bbebd2875,https://biolit.fr/observations/observation-130fe938-16cd-492a-ad93-a15bbebd2875/,Peyssonnelia squamaria,Peyssonnelia,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2977.JPG,,TRUE, +N1,28449,sortie-b856c361-fbef-434c-9903-054257abb9fd,https://biolit.fr/sorties/sortie-b856c361-fbef-434c-9903-054257abb9fd/,AIEJE,,6/30/2021 0:00,11.0000000,12.0000000,43.330845000000,5.203640000000,AIEJE,plage des anthenors,27410,observation-b856c361-fbef-434c-9903-054257abb9fd,https://biolit.fr/observations/observation-b856c361-fbef-434c-9903-054257abb9fd/,Ophioderma longicaudum,Ophiure lisse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2986-scaled.jpg,,TRUE, +N1,28450,sortie-f69f4242-40b8-4eff-b83e-43612f4c8c6a,https://biolit.fr/sorties/sortie-f69f4242-40b8-4eff-b83e-43612f4c8c6a/,AIEJE,,6/30/2021 0:00,11.0000000,12.0000000,43.331126000000,5.202954000000,AIEJE,plage des anthenors,27412,observation-f69f4242-40b8-4eff-b83e-43612f4c8c6a,https://biolit.fr/observations/observation-f69f4242-40b8-4eff-b83e-43612f4c8c6a/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2982.JPG,,TRUE, +N1,28451,sortie-5486fbc2-ec28-4764-9bed-215ede427538,https://biolit.fr/sorties/sortie-5486fbc2-ec28-4764-9bed-215ede427538/,Marine,,5/22/2021 0:00,9.0:15,10.0:15,43.24095800000,5.362461000000,Planète Mer,Plage du bain des dames,27414,observation-5486fbc2-ec28-4764-9bed-215ede427538,https://biolit.fr/observations/observation-5486fbc2-ec28-4764-9bed-215ede427538/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_100205_compress14-scaled.jpg,,TRUE, +N1,28451,sortie-5486fbc2-ec28-4764-9bed-215ede427538,https://biolit.fr/sorties/sortie-5486fbc2-ec28-4764-9bed-215ede427538/,Marine,,5/22/2021 0:00,9.0:15,10.0:15,43.24095800000,5.362461000000,Planète Mer,Plage du bain des dames,27416,observation-5486fbc2-ec28-4764-9bed-215ede427538-2,https://biolit.fr/observations/observation-5486fbc2-ec28-4764-9bed-215ede427538-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_095133_compress7-scaled.jpg,,TRUE, +N1,28451,sortie-5486fbc2-ec28-4764-9bed-215ede427538,https://biolit.fr/sorties/sortie-5486fbc2-ec28-4764-9bed-215ede427538/,Marine,,5/22/2021 0:00,9.0:15,10.0:15,43.24095800000,5.362461000000,Planète Mer,Plage du bain des dames,27418,observation-5486fbc2-ec28-4764-9bed-215ede427538-3,https://biolit.fr/observations/observation-5486fbc2-ec28-4764-9bed-215ede427538-3/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_094820_compress10-scaled.jpg,,TRUE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27420,observation-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0001.JPG,,TRUE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27422,observation-008ba672-3d03-4bca-85df-321bb9066f08-2,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0002.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27424,observation-008ba672-3d03-4bca-85df-321bb9066f08-3,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0003.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27426,observation-008ba672-3d03-4bca-85df-321bb9066f08-4,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0005.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27428,observation-008ba672-3d03-4bca-85df-321bb9066f08-5,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-5/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0006.JPG,,TRUE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27430,observation-008ba672-3d03-4bca-85df-321bb9066f08-6,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0009.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27432,observation-008ba672-3d03-4bca-85df-321bb9066f08-7,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0007.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27434,observation-008ba672-3d03-4bca-85df-321bb9066f08-8,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0008.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27436,observation-008ba672-3d03-4bca-85df-321bb9066f08-9,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0010.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27438,observation-008ba672-3d03-4bca-85df-321bb9066f08-10,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0011.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27440,observation-008ba672-3d03-4bca-85df-321bb9066f08-11,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0012.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27442,observation-008ba672-3d03-4bca-85df-321bb9066f08-12,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0014.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27444,observation-008ba672-3d03-4bca-85df-321bb9066f08-13,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-13/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0015.JPG,,TRUE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27446,observation-008ba672-3d03-4bca-85df-321bb9066f08-14,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0016.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27448,observation-008ba672-3d03-4bca-85df-321bb9066f08-15,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0017.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27450,observation-008ba672-3d03-4bca-85df-321bb9066f08-16,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0018.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27452,observation-008ba672-3d03-4bca-85df-321bb9066f08-17,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0019.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27454,observation-008ba672-3d03-4bca-85df-321bb9066f08-18,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0021.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27456,observation-008ba672-3d03-4bca-85df-321bb9066f08-19,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0022.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27458,observation-008ba672-3d03-4bca-85df-321bb9066f08-20,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0023.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27460,observation-008ba672-3d03-4bca-85df-321bb9066f08-21,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0024.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27462,observation-008ba672-3d03-4bca-85df-321bb9066f08-22,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0025.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27464,observation-008ba672-3d03-4bca-85df-321bb9066f08-23,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0026.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27466,observation-008ba672-3d03-4bca-85df-321bb9066f08-24,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0027.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27468,observation-008ba672-3d03-4bca-85df-321bb9066f08-25,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-25/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0028.JPG,,TRUE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27470,observation-008ba672-3d03-4bca-85df-321bb9066f08-26,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-26/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0029.JPG,,TRUE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27472,observation-008ba672-3d03-4bca-85df-321bb9066f08-27,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0031.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27474,observation-008ba672-3d03-4bca-85df-321bb9066f08-28,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0032.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27476,observation-008ba672-3d03-4bca-85df-321bb9066f08-29,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0033.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27478,observation-008ba672-3d03-4bca-85df-321bb9066f08-30,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-30/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0036.JPG,,TRUE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27480,observation-008ba672-3d03-4bca-85df-321bb9066f08-31,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0038.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27482,observation-008ba672-3d03-4bca-85df-321bb9066f08-32,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0041.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27484,observation-008ba672-3d03-4bca-85df-321bb9066f08-33,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0042.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27486,observation-008ba672-3d03-4bca-85df-321bb9066f08-34,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0043.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27488,observation-008ba672-3d03-4bca-85df-321bb9066f08-35,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/B.Cavelier_0044.JPG,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27490,observation-008ba672-3d03-4bca-85df-321bb9066f08-36,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-36/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/E.Cousin_0001-scaled.jpg,,TRUE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27492,observation-008ba672-3d03-4bca-85df-321bb9066f08-37,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/E.Cousin_0002-scaled.jpg,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27494,observation-008ba672-3d03-4bca-85df-321bb9066f08-38,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-38/,Pecten jacobaeus,Coquille Saint-Jacques de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/E.Cousin_0003-scaled.jpg,,TRUE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27496,observation-008ba672-3d03-4bca-85df-321bb9066f08-39,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-39/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/E.Cousin_0004-scaled.jpg,,TRUE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27498,observation-008ba672-3d03-4bca-85df-321bb9066f08-40,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-40/,,,,https://biolit.fr/wp-content/uploads/2023/07/E.Cousin_0005-scaled.jpg,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27500,observation-008ba672-3d03-4bca-85df-321bb9066f08-41,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-41/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/E.Cousin_0006-scaled.jpg,,TRUE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27502,observation-008ba672-3d03-4bca-85df-321bb9066f08-42,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-42/,,,,https://biolit.fr/wp-content/uploads/2023/07/CPIEBT_0002-scaled.jpg,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27504,observation-008ba672-3d03-4bca-85df-321bb9066f08-43,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-43/,,,,https://biolit.fr/wp-content/uploads/2023/07/CPIEBT_0003-scaled.jpg,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27506,observation-008ba672-3d03-4bca-85df-321bb9066f08-44,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-44/,,,,https://biolit.fr/wp-content/uploads/2023/07/CPIEBT_0006-scaled.jpg,,FALSE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27508,observation-008ba672-3d03-4bca-85df-321bb9066f08-45,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-45/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/CPIEBT_0007-scaled.jpg,,TRUE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27510,observation-008ba672-3d03-4bca-85df-321bb9066f08-46,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-46/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/CPIEBT_0020-scaled.jpg,,TRUE, +N1,28452,sortie-008ba672-3d03-4bca-85df-321bb9066f08,https://biolit.fr/sorties/sortie-008ba672-3d03-4bca-85df-321bb9066f08/,CPIE Bassin de Thau,,5/15/2021 0:00,9.0000000,12.0000000,43.453447000000,3.812507000000,CPIE Littoral d'Occitanie,Plage des Aresquiers Frontignan,27512,observation-008ba672-3d03-4bca-85df-321bb9066f08-47,https://biolit.fr/observations/observation-008ba672-3d03-4bca-85df-321bb9066f08-47/,,,,https://biolit.fr/wp-content/uploads/2023/07/CPIEBT_0012-scaled.jpg,,FALSE, +N1,28453,sortie-1c20bd0d-7622-4625-a278-32449450a560,https://biolit.fr/sorties/sortie-1c20bd0d-7622-4625-a278-32449450a560/,CPIE Cote Provencale Atelier Bleu,,4/17/2021 0:00,14.0:15,16.0:15,43.161576000000,5.617526000000,CPIE Côte Provençale,"Plage de Saint-Pierre de l'île verte, La Ciotat",27514,observation-1c20bd0d-7622-4625-a278-32449450a560,https://biolit.fr/observations/observation-1c20bd0d-7622-4625-a278-32449450a560/,Aequorea forskalea,Equorée,,https://biolit.fr/wp-content/uploads/2023/07/20210417_161350.jpg,,TRUE, +N1,28453,sortie-1c20bd0d-7622-4625-a278-32449450a560,https://biolit.fr/sorties/sortie-1c20bd0d-7622-4625-a278-32449450a560/,CPIE Cote Provencale Atelier Bleu,,4/17/2021 0:00,14.0:15,16.0:15,43.161576000000,5.617526000000,CPIE Côte Provençale,"Plage de Saint-Pierre de l'île verte, La Ciotat",27516,observation-1c20bd0d-7622-4625-a278-32449450a560-2,https://biolit.fr/observations/observation-1c20bd0d-7622-4625-a278-32449450a560-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210417_141738.jpg,,FALSE, +N1,28453,sortie-1c20bd0d-7622-4625-a278-32449450a560,https://biolit.fr/sorties/sortie-1c20bd0d-7622-4625-a278-32449450a560/,CPIE Cote Provencale Atelier Bleu,,4/17/2021 0:00,14.0:15,16.0:15,43.161576000000,5.617526000000,CPIE Côte Provençale,"Plage de Saint-Pierre de l'île verte, La Ciotat",27518,observation-1c20bd0d-7622-4625-a278-32449450a560-3,https://biolit.fr/observations/observation-1c20bd0d-7622-4625-a278-32449450a560-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210417_160532.jpg,,FALSE, +N1,28454,sortie-b640762f-31ff-458d-95f5-4523c9f91d27,https://biolit.fr/sorties/sortie-b640762f-31ff-458d-95f5-4523c9f91d27/,Axel,,4/15/2021 0:00,12.0000000,14.0000000,43.25467600000,5.372201000000,,Plage de l'Escale Borély,27520,observation-b640762f-31ff-458d-95f5-4523c9f91d27,https://biolit.fr/observations/observation-b640762f-31ff-458d-95f5-4523c9f91d27/,Phalacrocorax aristotelis,Cormoran huppé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6759-scaled.jpg,,TRUE, +N1,28454,sortie-b640762f-31ff-458d-95f5-4523c9f91d27,https://biolit.fr/sorties/sortie-b640762f-31ff-458d-95f5-4523c9f91d27/,Axel,,4/15/2021 0:00,12.0000000,14.0000000,43.25467600000,5.372201000000,,Plage de l'Escale Borély,27522,observation-b640762f-31ff-458d-95f5-4523c9f91d27-2,https://biolit.fr/observations/observation-b640762f-31ff-458d-95f5-4523c9f91d27-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6767-scaled.jpg,,FALSE, +N1,28454,sortie-b640762f-31ff-458d-95f5-4523c9f91d27,https://biolit.fr/sorties/sortie-b640762f-31ff-458d-95f5-4523c9f91d27/,Axel,,4/15/2021 0:00,12.0000000,14.0000000,43.25467600000,5.372201000000,,Plage de l'Escale Borély,27524,observation-b640762f-31ff-458d-95f5-4523c9f91d27-3,https://biolit.fr/observations/observation-b640762f-31ff-458d-95f5-4523c9f91d27-3/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6771-scaled.jpg,,TRUE, +N1,28454,sortie-b640762f-31ff-458d-95f5-4523c9f91d27,https://biolit.fr/sorties/sortie-b640762f-31ff-458d-95f5-4523c9f91d27/,Axel,,4/15/2021 0:00,12.0000000,14.0000000,43.25467600000,5.372201000000,,Plage de l'Escale Borély,27526,observation-b640762f-31ff-458d-95f5-4523c9f91d27-4,https://biolit.fr/observations/observation-b640762f-31ff-458d-95f5-4523c9f91d27-4/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6772-scaled.jpg,,TRUE, +N1,28454,sortie-b640762f-31ff-458d-95f5-4523c9f91d27,https://biolit.fr/sorties/sortie-b640762f-31ff-458d-95f5-4523c9f91d27/,Axel,,4/15/2021 0:00,12.0000000,14.0000000,43.25467600000,5.372201000000,,Plage de l'Escale Borély,27528,observation-b640762f-31ff-458d-95f5-4523c9f91d27-5,https://biolit.fr/observations/observation-b640762f-31ff-458d-95f5-4523c9f91d27-5/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6773-scaled.jpg,,TRUE, +N1,28455,sortie-7682998e-d1e6-4f07-947b-0018b2f4d110,https://biolit.fr/sorties/sortie-7682998e-d1e6-4f07-947b-0018b2f4d110/,Axel,,4/15/2021 0:00,12.0000000,14.0000000,43.259583000000,5.374819000000,,"Marseille, plage de l'Huveaune et plage Borély",27530,observation-7682998e-d1e6-4f07-947b-0018b2f4d110,https://biolit.fr/observations/observation-7682998e-d1e6-4f07-947b-0018b2f4d110/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6735-scaled.jpg,,FALSE, +N1,28455,sortie-7682998e-d1e6-4f07-947b-0018b2f4d110,https://biolit.fr/sorties/sortie-7682998e-d1e6-4f07-947b-0018b2f4d110/,Axel,,4/15/2021 0:00,12.0000000,14.0000000,43.259583000000,5.374819000000,,"Marseille, plage de l'Huveaune et plage Borély",27532,observation-7682998e-d1e6-4f07-947b-0018b2f4d110-2,https://biolit.fr/observations/observation-7682998e-d1e6-4f07-947b-0018b2f4d110-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6737-scaled.jpg,,FALSE, +N1,28455,sortie-7682998e-d1e6-4f07-947b-0018b2f4d110,https://biolit.fr/sorties/sortie-7682998e-d1e6-4f07-947b-0018b2f4d110/,Axel,,4/15/2021 0:00,12.0000000,14.0000000,43.259583000000,5.374819000000,,"Marseille, plage de l'Huveaune et plage Borély",27534,observation-7682998e-d1e6-4f07-947b-0018b2f4d110-3,https://biolit.fr/observations/observation-7682998e-d1e6-4f07-947b-0018b2f4d110-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6738-scaled.jpg,,FALSE, +N1,28455,sortie-7682998e-d1e6-4f07-947b-0018b2f4d110,https://biolit.fr/sorties/sortie-7682998e-d1e6-4f07-947b-0018b2f4d110/,Axel,,4/15/2021 0:00,12.0000000,14.0000000,43.259583000000,5.374819000000,,"Marseille, plage de l'Huveaune et plage Borély",27536,observation-7682998e-d1e6-4f07-947b-0018b2f4d110-4,https://biolit.fr/observations/observation-7682998e-d1e6-4f07-947b-0018b2f4d110-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6744-scaled.jpg,,FALSE, +N1,28455,sortie-7682998e-d1e6-4f07-947b-0018b2f4d110,https://biolit.fr/sorties/sortie-7682998e-d1e6-4f07-947b-0018b2f4d110/,Axel,,4/15/2021 0:00,12.0000000,14.0000000,43.259583000000,5.374819000000,,"Marseille, plage de l'Huveaune et plage Borély",27538,observation-7682998e-d1e6-4f07-947b-0018b2f4d110-5,https://biolit.fr/observations/observation-7682998e-d1e6-4f07-947b-0018b2f4d110-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6747-scaled.jpg,,FALSE, +N1,28455,sortie-7682998e-d1e6-4f07-947b-0018b2f4d110,https://biolit.fr/sorties/sortie-7682998e-d1e6-4f07-947b-0018b2f4d110/,Axel,,4/15/2021 0:00,12.0000000,14.0000000,43.259583000000,5.374819000000,,"Marseille, plage de l'Huveaune et plage Borély",27540,observation-7682998e-d1e6-4f07-947b-0018b2f4d110-6,https://biolit.fr/observations/observation-7682998e-d1e6-4f07-947b-0018b2f4d110-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6748-scaled.jpg,,FALSE, +N1,28455,sortie-7682998e-d1e6-4f07-947b-0018b2f4d110,https://biolit.fr/sorties/sortie-7682998e-d1e6-4f07-947b-0018b2f4d110/,Axel,,4/15/2021 0:00,12.0000000,14.0000000,43.259583000000,5.374819000000,,"Marseille, plage de l'Huveaune et plage Borély",27542,observation-7682998e-d1e6-4f07-947b-0018b2f4d110-7,https://biolit.fr/observations/observation-7682998e-d1e6-4f07-947b-0018b2f4d110-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6753-scaled.jpg,,FALSE, +N1,28455,sortie-7682998e-d1e6-4f07-947b-0018b2f4d110,https://biolit.fr/sorties/sortie-7682998e-d1e6-4f07-947b-0018b2f4d110/,Axel,,4/15/2021 0:00,12.0000000,14.0000000,43.259583000000,5.374819000000,,"Marseille, plage de l'Huveaune et plage Borély",27544,observation-7682998e-d1e6-4f07-947b-0018b2f4d110-8,https://biolit.fr/observations/observation-7682998e-d1e6-4f07-947b-0018b2f4d110-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6754-scaled.jpg,,FALSE, +N1,28455,sortie-7682998e-d1e6-4f07-947b-0018b2f4d110,https://biolit.fr/sorties/sortie-7682998e-d1e6-4f07-947b-0018b2f4d110/,Axel,,4/15/2021 0:00,12.0000000,14.0000000,43.259583000000,5.374819000000,,"Marseille, plage de l'Huveaune et plage Borély",27546,observation-7682998e-d1e6-4f07-947b-0018b2f4d110-9,https://biolit.fr/observations/observation-7682998e-d1e6-4f07-947b-0018b2f4d110-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6743bis-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27548,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/R.Maquis_0956-scaled.jpg,,TRUE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27550,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-2,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-2/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/R.Maquis_0955-scaled.jpg,,TRUE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27552,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-3,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-3/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/R.Maquis_0926-scaled.jpg,,TRUE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27556,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-5,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-5/,Naticarius hebraeus,Natice hébraïque,,https://biolit.fr/wp-content/uploads/2023/07/R.Maquis_0923-scaled.jpg | https://biolit.fr/wp-content/uploads/2021/03/R.Maquis_0924-scaled-1.jpg,,TRUE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27558,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-6,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/R.Maquis_0920-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27560,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-7,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-7/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/R.Maquis_0918-scaled.jpg,,TRUE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27562,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-8,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/R.Maquis_0916-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27564,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-9,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/R.Maquis_0914-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27566,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-10,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/R.Maquis_0912-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27568,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-11,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/R.Maquis_0911-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27572,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-13,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-13/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/R.Maquis_0908-scaled.jpg | https://biolit.fr/wp-content/uploads/2021/03/R.Maquis_0909-scaled-1.jpg,,TRUE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27574,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-14,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-14/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/R.Maquis_0907-scaled.jpg,,TRUE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27576,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-15,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/R.Maquis_0906-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27578,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-16,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/R.Maquis_0905-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27580,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-17,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-17/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/R.Maquis_0903-scaled.jpg,,TRUE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27582,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-18,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/Larderet_14-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27584,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-19,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/Larderet_8-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27586,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-20,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Larderet_13-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27588,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-21,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-21/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Larderet_12-scaled.jpg,,TRUE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27590,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-22,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/Larderet_10-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27592,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-23,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/Larderet_9-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27594,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-24,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/Larderet_7-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27596,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-25,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas6.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27598,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-26,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/Larderet_6-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27600,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-27,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/Larderet_5-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27602,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-28,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/Larderet_4-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27604,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-29,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/Larderet_3-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27606,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-30,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/Larderet_1-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27608,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-31,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/Larderet_2-scaled.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27610,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-32,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas33.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27612,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-33,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-33/,Pecten jacobaeus,Coquille Saint-Jacques de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas31.jpg,,TRUE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27614,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-34,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-34/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas29.jpg,,TRUE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27616,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-35,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas27.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27618,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-36,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-36/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas25.jpg,,TRUE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27620,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-37,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-37/,Bittium reticulatum,Cérithe réticulé,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas24.jpg,,TRUE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27622,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-38,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-38/,,,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas22.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27624,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-39,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-39/,,,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas20.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27626,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-40,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-40/,,,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas18.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27632,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-43,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-43/,,,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas15.jpg | https://biolit.fr/wp-content/uploads/2021/03/L.Thomas16.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27634,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-44,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-44/,,,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas14.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27636,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-45,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-45/,,,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas12.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27638,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-46,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-46/,Talochlamys multistriata,Pétoncle strié,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas11.jpg,,TRUE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27640,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-47,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-47/,,,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas7.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27642,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-48,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-48/,,,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas5.jpg,,FALSE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27644,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-49,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-49/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas3.jpg,,TRUE, +N1,28456,sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b,https://biolit.fr/sorties/sortie-92e2fbe9-1005-49b2-9ab3-40f821233f0b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.452578000000,3.811252000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27648,observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-51,https://biolit.fr/observations/observation-92e2fbe9-1005-49b2-9ab3-40f821233f0b-51/,,,,https://biolit.fr/wp-content/uploads/2023/07/L.Thomas4.jpg | https://biolit.fr/wp-content/uploads/2021/03/L.Thomas2.jpg,,FALSE, +N1,28457,sortie-254dd4b1-b5e0-433e-9541-b928f3db707b,https://biolit.fr/sorties/sortie-254dd4b1-b5e0-433e-9541-b928f3db707b/,CPIE Bassin de Thau,,3/27/2021 0:00,9.0000000,12.0000000,43.453924000000,3.813140000000,CPIE Littoral d'Occitanie," Frontignan, Plage des Aresquiers",27650,observation-254dd4b1-b5e0-433e-9541-b928f3db707b,https://biolit.fr/observations/observation-254dd4b1-b5e0-433e-9541-b928f3db707b/,Sepia officinalis,Seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/R.Maquis_0958-scaled.jpg,,TRUE, +N1,28458,sortie-91e83560-b377-4878-8ea7-eb70da7a94eb,https://biolit.fr/sorties/sortie-91e83560-b377-4878-8ea7-eb70da7a94eb/,sidali_king13,,02/05/2021,13.0000000,16.0000000,43.253365000000,5.374438000000,,Plage de l'Escale Borély ,27652,observation-91e83560-b377-4878-8ea7-eb70da7a94eb,https://biolit.fr/observations/observation-91e83560-b377-4878-8ea7-eb70da7a94eb/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2299_0.JPG,,TRUE, +N1,28458,sortie-91e83560-b377-4878-8ea7-eb70da7a94eb,https://biolit.fr/sorties/sortie-91e83560-b377-4878-8ea7-eb70da7a94eb/,sidali_king13,,02/05/2021,13.0000000,16.0000000,43.253365000000,5.374438000000,,Plage de l'Escale Borély ,27654,observation-91e83560-b377-4878-8ea7-eb70da7a94eb-2,https://biolit.fr/observations/observation-91e83560-b377-4878-8ea7-eb70da7a94eb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2300.JPG,,FALSE, +N1,28458,sortie-91e83560-b377-4878-8ea7-eb70da7a94eb,https://biolit.fr/sorties/sortie-91e83560-b377-4878-8ea7-eb70da7a94eb/,sidali_king13,,02/05/2021,13.0000000,16.0000000,43.253365000000,5.374438000000,,Plage de l'Escale Borély ,27656,observation-91e83560-b377-4878-8ea7-eb70da7a94eb-3,https://biolit.fr/observations/observation-91e83560-b377-4878-8ea7-eb70da7a94eb-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2301.JPG,,FALSE, +N1,28458,sortie-91e83560-b377-4878-8ea7-eb70da7a94eb,https://biolit.fr/sorties/sortie-91e83560-b377-4878-8ea7-eb70da7a94eb/,sidali_king13,,02/05/2021,13.0000000,16.0000000,43.253365000000,5.374438000000,,Plage de l'Escale Borély ,27658,observation-91e83560-b377-4878-8ea7-eb70da7a94eb-4,https://biolit.fr/observations/observation-91e83560-b377-4878-8ea7-eb70da7a94eb-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2302.JPG,,FALSE, +N1,28458,sortie-91e83560-b377-4878-8ea7-eb70da7a94eb,https://biolit.fr/sorties/sortie-91e83560-b377-4878-8ea7-eb70da7a94eb/,sidali_king13,,02/05/2021,13.0000000,16.0000000,43.253365000000,5.374438000000,,Plage de l'Escale Borély ,27660,observation-91e83560-b377-4878-8ea7-eb70da7a94eb-5,https://biolit.fr/observations/observation-91e83560-b377-4878-8ea7-eb70da7a94eb-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2303.JPG,,FALSE, +N1,28458,sortie-91e83560-b377-4878-8ea7-eb70da7a94eb,https://biolit.fr/sorties/sortie-91e83560-b377-4878-8ea7-eb70da7a94eb/,sidali_king13,,02/05/2021,13.0000000,16.0000000,43.253365000000,5.374438000000,,Plage de l'Escale Borély ,27662,observation-91e83560-b377-4878-8ea7-eb70da7a94eb-6,https://biolit.fr/observations/observation-91e83560-b377-4878-8ea7-eb70da7a94eb-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2304.JPG,,FALSE, +N1,28459,sortie-73887bb4-9e04-4a17-b484-f4171fe03c70,https://biolit.fr/sorties/sortie-73887bb4-9e04-4a17-b484-f4171fe03c70/,Mahee Albertini,,02/05/2021,14.0000000,16.0000000,43.253571000000,5.374336000000,,plage du Prado,27664,observation-73887bb4-9e04-4a17-b484-f4171fe03c70,https://biolit.fr/observations/observation-73887bb4-9e04-4a17-b484-f4171fe03c70/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4769-scaled.jpg,,FALSE, +N1,28459,sortie-73887bb4-9e04-4a17-b484-f4171fe03c70,https://biolit.fr/sorties/sortie-73887bb4-9e04-4a17-b484-f4171fe03c70/,Mahee Albertini,,02/05/2021,14.0000000,16.0000000,43.253571000000,5.374336000000,,plage du Prado,27666,observation-73887bb4-9e04-4a17-b484-f4171fe03c70-2,https://biolit.fr/observations/observation-73887bb4-9e04-4a17-b484-f4171fe03c70-2/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_4768-scaled.jpg,,TRUE, +N1,28459,sortie-73887bb4-9e04-4a17-b484-f4171fe03c70,https://biolit.fr/sorties/sortie-73887bb4-9e04-4a17-b484-f4171fe03c70/,Mahee Albertini,,02/05/2021,14.0000000,16.0000000,43.253571000000,5.374336000000,,plage du Prado,27668,observation-73887bb4-9e04-4a17-b484-f4171fe03c70-3,https://biolit.fr/observations/observation-73887bb4-9e04-4a17-b484-f4171fe03c70-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4766-scaled.jpg,,FALSE, +N1,28459,sortie-73887bb4-9e04-4a17-b484-f4171fe03c70,https://biolit.fr/sorties/sortie-73887bb4-9e04-4a17-b484-f4171fe03c70/,Mahee Albertini,,02/05/2021,14.0000000,16.0000000,43.253571000000,5.374336000000,,plage du Prado,27670,observation-73887bb4-9e04-4a17-b484-f4171fe03c70-4,https://biolit.fr/observations/observation-73887bb4-9e04-4a17-b484-f4171fe03c70-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4760.JPG,,FALSE, +N1,28460,sortie-49f031ac-3855-42c3-87de-0c5dc386e5f4,https://biolit.fr/sorties/sortie-49f031ac-3855-42c3-87de-0c5dc386e5f4/,joaomarques,,2/16/2021 0:00,14.0000000,16.0000000,43.332029000000,5.050593000000,AIEJE,La couronne,27672,observation-49f031ac-3855-42c3-87de-0c5dc386e5f4,https://biolit.fr/observations/observation-49f031ac-3855-42c3-87de-0c5dc386e5f4/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2676.PNG,,TRUE, +N1,28461,sortie-a370937a-86d6-4dc3-a3ad-eb74b298ed91,https://biolit.fr/sorties/sortie-a370937a-86d6-4dc3-a3ad-eb74b298ed91/,joaomarques,,2/16/2021 0:00,10.0000000,14.0000000,43.332060000000,5.050497000000,AIEJE,La couronne,27674,observation-a370937a-86d6-4dc3-a3ad-eb74b298ed91,https://biolit.fr/observations/observation-a370937a-86d6-4dc3-a3ad-eb74b298ed91/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2675.PNG,,TRUE, +N1,28462,sortie-51174d70-2f7e-48f5-9b67-232a8e3ab7ae,https://biolit.fr/sorties/sortie-51174d70-2f7e-48f5-9b67-232a8e3ab7ae/,joaomarques,,2/16/2021 0:00,10.0000000,14.0000000,43.331940000000,5.050636000000,AIEJE,La couronne,27676,observation-51174d70-2f7e-48f5-9b67-232a8e3ab7ae,https://biolit.fr/observations/observation-51174d70-2f7e-48f5-9b67-232a8e3ab7ae/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2674.PNG,,FALSE, +N1,28463,sortie-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07,https://biolit.fr/sorties/sortie-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07/,Giluc13,,2/22/2021 0:00,10.0000000,11.0000000,43.165157000000,5.596347000000,CPIE Côte Provençale,"La Ciotat, Calanque de Figueroles",27678,observation-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07,https://biolit.fr/observations/observation-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/2021 02 Oursins-scaled.jpg,,TRUE, +N1,28463,sortie-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07,https://biolit.fr/sorties/sortie-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07/,Giluc13,,2/22/2021 0:00,10.0000000,11.0000000,43.165157000000,5.596347000000,CPIE Côte Provençale,"La Ciotat, Calanque de Figueroles",27680,observation-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07-2,https://biolit.fr/observations/observation-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/2021 02-cerithe-scaled.jpg,,FALSE, +N1,28463,sortie-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07,https://biolit.fr/sorties/sortie-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07/,Giluc13,,2/22/2021 0:00,10.0000000,11.0000000,43.165157000000,5.596347000000,CPIE Côte Provençale,"La Ciotat, Calanque de Figueroles",27682,observation-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07-3,https://biolit.fr/observations/observation-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07-3/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/2021 02-codium en boule-scaled.jpg,,TRUE, +N1,28463,sortie-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07,https://biolit.fr/sorties/sortie-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07/,Giluc13,,2/22/2021 0:00,10.0000000,11.0000000,43.165157000000,5.596347000000,CPIE Côte Provençale,"La Ciotat, Calanque de Figueroles",27684,observation-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07-4,https://biolit.fr/observations/observation-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07-4/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/2021 02-codium en boule 2-scaled.jpg,,TRUE, +N1,28463,sortie-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07,https://biolit.fr/sorties/sortie-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07/,Giluc13,,2/22/2021 0:00,10.0000000,11.0000000,43.165157000000,5.596347000000,CPIE Côte Provençale,"La Ciotat, Calanque de Figueroles",27686,observation-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07-5,https://biolit.fr/observations/observation-1a2de2e9-27a9-4e5f-bb91-5b10c9ff0e07-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/2021 02-Ircinia (éponge) et cérithes.jpg,,FALSE, +N1,28464,sortie-f991cc75-a52b-41e9-8ecb-08ec0c208604,https://biolit.fr/sorties/sortie-f991cc75-a52b-41e9-8ecb-08ec0c208604/,Club subaquatique Narbonnais,,2/21/2021 0:00,11.0000000,12.0000000,43.168363000000,3.180563000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne plage,27688,observation-f991cc75-a52b-41e9-8ecb-08ec0c208604,https://biolit.fr/observations/observation-f991cc75-a52b-41e9-8ecb-08ec0c208604/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/mini vélelle.jpg,,TRUE, +N1,28464,sortie-f991cc75-a52b-41e9-8ecb-08ec0c208604,https://biolit.fr/sorties/sortie-f991cc75-a52b-41e9-8ecb-08ec0c208604/,Club subaquatique Narbonnais,,2/21/2021 0:00,11.0000000,12.0000000,43.168363000000,3.180563000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne plage,27690,observation-f991cc75-a52b-41e9-8ecb-08ec0c208604-2,https://biolit.fr/observations/observation-f991cc75-a52b-41e9-8ecb-08ec0c208604-2/,Scyliorhinus canicula,Capsule de petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/mini vélelle2.jpg,,TRUE, +N1,28464,sortie-f991cc75-a52b-41e9-8ecb-08ec0c208604,https://biolit.fr/sorties/sortie-f991cc75-a52b-41e9-8ecb-08ec0c208604/,Club subaquatique Narbonnais,,2/21/2021 0:00,11.0000000,12.0000000,43.168363000000,3.180563000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne plage,27692,observation-f991cc75-a52b-41e9-8ecb-08ec0c208604-3,https://biolit.fr/observations/observation-f991cc75-a52b-41e9-8ecb-08ec0c208604-3/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/sabot (Cymbulia peronii).jpg,,TRUE, +N1,28464,sortie-f991cc75-a52b-41e9-8ecb-08ec0c208604,https://biolit.fr/sorties/sortie-f991cc75-a52b-41e9-8ecb-08ec0c208604/,Club subaquatique Narbonnais,,2/21/2021 0:00,11.0000000,12.0000000,43.168363000000,3.180563000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne plage,27694,observation-f991cc75-a52b-41e9-8ecb-08ec0c208604-4,https://biolit.fr/observations/observation-f991cc75-a52b-41e9-8ecb-08ec0c208604-4/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/sabot3.jpg,,TRUE, +N1,28465,sortie-01b422a8-14eb-442c-8447-b8d49758b8d4,https://biolit.fr/sorties/sortie-01b422a8-14eb-442c-8447-b8d49758b8d4/,lycée latecoere,,1/29/2021 0:00,11.0000000,13.0000000,43.509878000000,5.000216000000,AIEJE,la romaniquette,27696,observation-01b422a8-14eb-442c-8447-b8d49758b8d4,https://biolit.fr/observations/observation-01b422a8-14eb-442c-8447-b8d49758b8d4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210129_112557-scaled.jpg,,FALSE, +N1,28465,sortie-01b422a8-14eb-442c-8447-b8d49758b8d4,https://biolit.fr/sorties/sortie-01b422a8-14eb-442c-8447-b8d49758b8d4/,lycée latecoere,,1/29/2021 0:00,11.0000000,13.0000000,43.509878000000,5.000216000000,AIEJE,la romaniquette,27698,observation-01b422a8-14eb-442c-8447-b8d49758b8d4-2,https://biolit.fr/observations/observation-01b422a8-14eb-442c-8447-b8d49758b8d4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210129_112607-scaled.jpg,,FALSE, +N1,28465,sortie-01b422a8-14eb-442c-8447-b8d49758b8d4,https://biolit.fr/sorties/sortie-01b422a8-14eb-442c-8447-b8d49758b8d4/,lycée latecoere,,1/29/2021 0:00,11.0000000,13.0000000,43.509878000000,5.000216000000,AIEJE,la romaniquette,27700,observation-01b422a8-14eb-442c-8447-b8d49758b8d4-3,https://biolit.fr/observations/observation-01b422a8-14eb-442c-8447-b8d49758b8d4-3/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/20210129_112541-scaled.jpg,,TRUE, +N1,28465,sortie-01b422a8-14eb-442c-8447-b8d49758b8d4,https://biolit.fr/sorties/sortie-01b422a8-14eb-442c-8447-b8d49758b8d4/,lycée latecoere,,1/29/2021 0:00,11.0000000,13.0000000,43.509878000000,5.000216000000,AIEJE,la romaniquette,27702,observation-01b422a8-14eb-442c-8447-b8d49758b8d4-4,https://biolit.fr/observations/observation-01b422a8-14eb-442c-8447-b8d49758b8d4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210129_112510-scaled.jpg,,FALSE, +N1,28466,sortie-da6fc40f-04e9-4ce6-8b40-68684846a249,https://biolit.fr/sorties/sortie-da6fc40f-04e9-4ce6-8b40-68684846a249/,lycée latecoere,,1/29/2021 0:00,9.0000000,11.0000000,43.50999000000,5.000270000,AIEJE,la romaniquette,27704,observation-da6fc40f-04e9-4ce6-8b40-68684846a249,https://biolit.fr/observations/observation-da6fc40f-04e9-4ce6-8b40-68684846a249/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210129_112445-scaled.jpg,,FALSE, +N1,28467,sortie-51a603f7-aaa7-49c1-89fa-11a0fa439dd1,https://biolit.fr/sorties/sortie-51a603f7-aaa7-49c1-89fa-11a0fa439dd1/,collegedalzongrauduoi,,10/08/2020,14.0000000,15.0000000,43.551942000000,4.109632000000,,"Plage du Boucanet, Le Grau du Roi",27706,observation-51a603f7-aaa7-49c1-89fa-11a0fa439dd1,https://biolit.fr/observations/observation-51a603f7-aaa7-49c1-89fa-11a0fa439dd1/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1814-rotated.jpg,,FALSE, +N1,28467,sortie-51a603f7-aaa7-49c1-89fa-11a0fa439dd1,https://biolit.fr/sorties/sortie-51a603f7-aaa7-49c1-89fa-11a0fa439dd1/,collegedalzongrauduoi,,10/08/2020,14.0000000,15.0000000,43.551942000000,4.109632000000,,"Plage du Boucanet, Le Grau du Roi",27708,observation-51a603f7-aaa7-49c1-89fa-11a0fa439dd1-2,https://biolit.fr/observations/observation-51a603f7-aaa7-49c1-89fa-11a0fa439dd1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1815-rotated.jpg,,FALSE, +N1,28467,sortie-51a603f7-aaa7-49c1-89fa-11a0fa439dd1,https://biolit.fr/sorties/sortie-51a603f7-aaa7-49c1-89fa-11a0fa439dd1/,collegedalzongrauduoi,,10/08/2020,14.0000000,15.0000000,43.551942000000,4.109632000000,,"Plage du Boucanet, Le Grau du Roi",27710,observation-51a603f7-aaa7-49c1-89fa-11a0fa439dd1-3,https://biolit.fr/observations/observation-51a603f7-aaa7-49c1-89fa-11a0fa439dd1-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1819-rotated.jpg,,FALSE, +N1,28467,sortie-51a603f7-aaa7-49c1-89fa-11a0fa439dd1,https://biolit.fr/sorties/sortie-51a603f7-aaa7-49c1-89fa-11a0fa439dd1/,collegedalzongrauduoi,,10/08/2020,14.0000000,15.0000000,43.551942000000,4.109632000000,,"Plage du Boucanet, Le Grau du Roi",27712,observation-51a603f7-aaa7-49c1-89fa-11a0fa439dd1-4,https://biolit.fr/observations/observation-51a603f7-aaa7-49c1-89fa-11a0fa439dd1-4/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1822-rotated.jpg,,TRUE, +N1,28467,sortie-51a603f7-aaa7-49c1-89fa-11a0fa439dd1,https://biolit.fr/sorties/sortie-51a603f7-aaa7-49c1-89fa-11a0fa439dd1/,collegedalzongrauduoi,,10/08/2020,14.0000000,15.0000000,43.551942000000,4.109632000000,,"Plage du Boucanet, Le Grau du Roi",27714,observation-51a603f7-aaa7-49c1-89fa-11a0fa439dd1-5,https://biolit.fr/observations/observation-51a603f7-aaa7-49c1-89fa-11a0fa439dd1-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1824-rotated.jpg,,FALSE, +N1,28467,sortie-51a603f7-aaa7-49c1-89fa-11a0fa439dd1,https://biolit.fr/sorties/sortie-51a603f7-aaa7-49c1-89fa-11a0fa439dd1/,collegedalzongrauduoi,,10/08/2020,14.0000000,15.0000000,43.551942000000,4.109632000000,,"Plage du Boucanet, Le Grau du Roi",27716,observation-51a603f7-aaa7-49c1-89fa-11a0fa439dd1-6,https://biolit.fr/observations/observation-51a603f7-aaa7-49c1-89fa-11a0fa439dd1-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1821-rotated.jpg,,FALSE, +N1,28467,sortie-51a603f7-aaa7-49c1-89fa-11a0fa439dd1,https://biolit.fr/sorties/sortie-51a603f7-aaa7-49c1-89fa-11a0fa439dd1/,collegedalzongrauduoi,,10/08/2020,14.0000000,15.0000000,43.551942000000,4.109632000000,,"Plage du Boucanet, Le Grau du Roi",27718,observation-51a603f7-aaa7-49c1-89fa-11a0fa439dd1-7,https://biolit.fr/observations/observation-51a603f7-aaa7-49c1-89fa-11a0fa439dd1-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1823-rotated.jpg,,FALSE, +N1,28468,sortie-265d76ee-b9dd-4b43-ad84-4834ce9dd358,https://biolit.fr/sorties/sortie-265d76ee-b9dd-4b43-ad84-4834ce9dd358/,e.detrez,,10/21/2020 0:00,13.0000000,13.0000000,43.459300000000,3.819148000000,CPIE Littoral d'Occitanie,Frontignan,27720,observation-265d76ee-b9dd-4b43-ad84-4834ce9dd358,https://biolit.fr/observations/observation-265d76ee-b9dd-4b43-ad84-4834ce9dd358/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/122379192_2719359644970208_1545030587083608712_n.jpg,,TRUE, +N1,28468,sortie-265d76ee-b9dd-4b43-ad84-4834ce9dd358,https://biolit.fr/sorties/sortie-265d76ee-b9dd-4b43-ad84-4834ce9dd358/,e.detrez,,10/21/2020 0:00,13.0000000,13.0000000,43.459300000000,3.819148000000,CPIE Littoral d'Occitanie,Frontignan,27722,observation-265d76ee-b9dd-4b43-ad84-4834ce9dd358-2,https://biolit.fr/observations/observation-265d76ee-b9dd-4b43-ad84-4834ce9dd358-2/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/122320394_2138143649654145_5497984118596794563_n.jpg,,TRUE, +N1,28468,sortie-265d76ee-b9dd-4b43-ad84-4834ce9dd358,https://biolit.fr/sorties/sortie-265d76ee-b9dd-4b43-ad84-4834ce9dd358/,e.detrez,,10/21/2020 0:00,13.0000000,13.0000000,43.459300000000,3.819148000000,CPIE Littoral d'Occitanie,Frontignan,27724,observation-265d76ee-b9dd-4b43-ad84-4834ce9dd358-3,https://biolit.fr/observations/observation-265d76ee-b9dd-4b43-ad84-4834ce9dd358-3/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/122456336_1306249069712195_3688789281781766063_n.jpg,,TRUE, +N1,28468,sortie-265d76ee-b9dd-4b43-ad84-4834ce9dd358,https://biolit.fr/sorties/sortie-265d76ee-b9dd-4b43-ad84-4834ce9dd358/,e.detrez,,10/21/2020 0:00,13.0000000,13.0000000,43.459300000000,3.819148000000,CPIE Littoral d'Occitanie,Frontignan,27726,observation-265d76ee-b9dd-4b43-ad84-4834ce9dd358-4,https://biolit.fr/observations/observation-265d76ee-b9dd-4b43-ad84-4834ce9dd358-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/122439983_823550388469693_4406279492045489489_n.jpg,,FALSE, +N1,28468,sortie-265d76ee-b9dd-4b43-ad84-4834ce9dd358,https://biolit.fr/sorties/sortie-265d76ee-b9dd-4b43-ad84-4834ce9dd358/,e.detrez,,10/21/2020 0:00,13.0000000,13.0000000,43.459300000000,3.819148000000,CPIE Littoral d'Occitanie,Frontignan,27728,observation-265d76ee-b9dd-4b43-ad84-4834ce9dd358-5,https://biolit.fr/observations/observation-265d76ee-b9dd-4b43-ad84-4834ce9dd358-5/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/122460500_391848795169490_2328172510581274035_n.jpg,,TRUE, +N1,28468,sortie-265d76ee-b9dd-4b43-ad84-4834ce9dd358,https://biolit.fr/sorties/sortie-265d76ee-b9dd-4b43-ad84-4834ce9dd358/,e.detrez,,10/21/2020 0:00,13.0000000,13.0000000,43.459300000000,3.819148000000,CPIE Littoral d'Occitanie,Frontignan,27730,observation-265d76ee-b9dd-4b43-ad84-4834ce9dd358-6,https://biolit.fr/observations/observation-265d76ee-b9dd-4b43-ad84-4834ce9dd358-6/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/122465753_2491554204478891_8900691495877609362_n.jpg,,TRUE, +N1,28469,sortie-57a701b9-61a9-4cd1-b7c8-05ce71f2935e,https://biolit.fr/sorties/sortie-57a701b9-61a9-4cd1-b7c8-05ce71f2935e/,Emeline 44240,,2/17/2020 0:00,17.0:25,17.0000000,47.489222000000,-2.820291000000,,"plage de Kercambre, Saint-Gildas de Rhuys 56730",27732,observation-57a701b9-61a9-4cd1-b7c8-05ce71f2935e,https://biolit.fr/observations/observation-57a701b9-61a9-4cd1-b7c8-05ce71f2935e/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_0776 (2).JPG,,TRUE, +N1,28469,sortie-57a701b9-61a9-4cd1-b7c8-05ce71f2935e,https://biolit.fr/sorties/sortie-57a701b9-61a9-4cd1-b7c8-05ce71f2935e/,Emeline 44240,,2/17/2020 0:00,17.0:25,17.0000000,47.489222000000,-2.820291000000,,"plage de Kercambre, Saint-Gildas de Rhuys 56730",27734,observation-57a701b9-61a9-4cd1-b7c8-05ce71f2935e-2,https://biolit.fr/observations/observation-57a701b9-61a9-4cd1-b7c8-05ce71f2935e-2/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0763 (2).JPG,,TRUE, +N1,28469,sortie-57a701b9-61a9-4cd1-b7c8-05ce71f2935e,https://biolit.fr/sorties/sortie-57a701b9-61a9-4cd1-b7c8-05ce71f2935e/,Emeline 44240,,2/17/2020 0:00,17.0:25,17.0000000,47.489222000000,-2.820291000000,,"plage de Kercambre, Saint-Gildas de Rhuys 56730",27736,observation-57a701b9-61a9-4cd1-b7c8-05ce71f2935e-3,https://biolit.fr/observations/observation-57a701b9-61a9-4cd1-b7c8-05ce71f2935e-3/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_0766 (2).JPG,,TRUE, +N1,28470,sortie-7f1e7c5f-f5a9-43df-a1d7-153cd3466db3,https://biolit.fr/sorties/sortie-7f1e7c5f-f5a9-43df-a1d7-153cd3466db3/,Institut Marin du Seaquarium,,11/10/2018,10.0000000,12.0000000,43.509431000000,4.114105000000,Institut Marin du Seaquarium,Plage de L'Espiguette ,27738,observation-7f1e7c5f-f5a9-43df-a1d7-153cd3466db3,https://biolit.fr/observations/observation-7f1e7c5f-f5a9-43df-a1d7-153cd3466db3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181110_103651.jpg,,FALSE, +N1,28470,sortie-7f1e7c5f-f5a9-43df-a1d7-153cd3466db3,https://biolit.fr/sorties/sortie-7f1e7c5f-f5a9-43df-a1d7-153cd3466db3/,Institut Marin du Seaquarium,,11/10/2018,10.0000000,12.0000000,43.509431000000,4.114105000000,Institut Marin du Seaquarium,Plage de L'Espiguette ,27740,observation-7f1e7c5f-f5a9-43df-a1d7-153cd3466db3-2,https://biolit.fr/observations/observation-7f1e7c5f-f5a9-43df-a1d7-153cd3466db3-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181110_114213.jpg,,TRUE, +N1,28470,sortie-7f1e7c5f-f5a9-43df-a1d7-153cd3466db3,https://biolit.fr/sorties/sortie-7f1e7c5f-f5a9-43df-a1d7-153cd3466db3/,Institut Marin du Seaquarium,,11/10/2018,10.0000000,12.0000000,43.509431000000,4.114105000000,Institut Marin du Seaquarium,Plage de L'Espiguette ,27742,observation-7f1e7c5f-f5a9-43df-a1d7-153cd3466db3-3,https://biolit.fr/observations/observation-7f1e7c5f-f5a9-43df-a1d7-153cd3466db3-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181110_114223.jpg,,FALSE, +N1,28471,sortie-5b39833c-4bff-4209-ad3a-89dd341c58c3,https://biolit.fr/sorties/sortie-5b39833c-4bff-4209-ad3a-89dd341c58c3/,Institut Marin du Seaquarium,,10/24/2018 0:00,10.0000000,12.0000000,43.53697100000,4.133718000000,Institut Marin du Seaquarium,"Grau du Roi, plage Villa Parry",27744,observation-5b39833c-4bff-4209-ad3a-89dd341c58c3,https://biolit.fr/observations/observation-5b39833c-4bff-4209-ad3a-89dd341c58c3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181024_102102.jpg,,FALSE, +N1,28471,sortie-5b39833c-4bff-4209-ad3a-89dd341c58c3,https://biolit.fr/sorties/sortie-5b39833c-4bff-4209-ad3a-89dd341c58c3/,Institut Marin du Seaquarium,,10/24/2018 0:00,10.0000000,12.0000000,43.53697100000,4.133718000000,Institut Marin du Seaquarium,"Grau du Roi, plage Villa Parry",27746,observation-5b39833c-4bff-4209-ad3a-89dd341c58c3-2,https://biolit.fr/observations/observation-5b39833c-4bff-4209-ad3a-89dd341c58c3-2/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181024_102206.jpg,,TRUE, +N1,28471,sortie-5b39833c-4bff-4209-ad3a-89dd341c58c3,https://biolit.fr/sorties/sortie-5b39833c-4bff-4209-ad3a-89dd341c58c3/,Institut Marin du Seaquarium,,10/24/2018 0:00,10.0000000,12.0000000,43.53697100000,4.133718000000,Institut Marin du Seaquarium,"Grau du Roi, plage Villa Parry",27748,observation-5b39833c-4bff-4209-ad3a-89dd341c58c3-3,https://biolit.fr/observations/observation-5b39833c-4bff-4209-ad3a-89dd341c58c3-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181024_102328.jpg,,FALSE, +N1,28471,sortie-5b39833c-4bff-4209-ad3a-89dd341c58c3,https://biolit.fr/sorties/sortie-5b39833c-4bff-4209-ad3a-89dd341c58c3/,Institut Marin du Seaquarium,,10/24/2018 0:00,10.0000000,12.0000000,43.53697100000,4.133718000000,Institut Marin du Seaquarium,"Grau du Roi, plage Villa Parry",27750,observation-5b39833c-4bff-4209-ad3a-89dd341c58c3-4,https://biolit.fr/observations/observation-5b39833c-4bff-4209-ad3a-89dd341c58c3-4/,Tritia neritea,Cyclope néritoïde,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181024_102622.jpg,,TRUE, +N1,28471,sortie-5b39833c-4bff-4209-ad3a-89dd341c58c3,https://biolit.fr/sorties/sortie-5b39833c-4bff-4209-ad3a-89dd341c58c3/,Institut Marin du Seaquarium,,10/24/2018 0:00,10.0000000,12.0000000,43.53697100000,4.133718000000,Institut Marin du Seaquarium,"Grau du Roi, plage Villa Parry",27752,observation-5b39833c-4bff-4209-ad3a-89dd341c58c3-5,https://biolit.fr/observations/observation-5b39833c-4bff-4209-ad3a-89dd341c58c3-5/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181024_102658.jpg,,TRUE, +N1,28471,sortie-5b39833c-4bff-4209-ad3a-89dd341c58c3,https://biolit.fr/sorties/sortie-5b39833c-4bff-4209-ad3a-89dd341c58c3/,Institut Marin du Seaquarium,,10/24/2018 0:00,10.0000000,12.0000000,43.53697100000,4.133718000000,Institut Marin du Seaquarium,"Grau du Roi, plage Villa Parry",27754,observation-5b39833c-4bff-4209-ad3a-89dd341c58c3-6,https://biolit.fr/observations/observation-5b39833c-4bff-4209-ad3a-89dd341c58c3-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181024_102916.jpg,,FALSE, +N1,28471,sortie-5b39833c-4bff-4209-ad3a-89dd341c58c3,https://biolit.fr/sorties/sortie-5b39833c-4bff-4209-ad3a-89dd341c58c3/,Institut Marin du Seaquarium,,10/24/2018 0:00,10.0000000,12.0000000,43.53697100000,4.133718000000,Institut Marin du Seaquarium,"Grau du Roi, plage Villa Parry",27756,observation-5b39833c-4bff-4209-ad3a-89dd341c58c3-7,https://biolit.fr/observations/observation-5b39833c-4bff-4209-ad3a-89dd341c58c3-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181024_104411.jpg,,FALSE, +N1,28471,sortie-5b39833c-4bff-4209-ad3a-89dd341c58c3,https://biolit.fr/sorties/sortie-5b39833c-4bff-4209-ad3a-89dd341c58c3/,Institut Marin du Seaquarium,,10/24/2018 0:00,10.0000000,12.0000000,43.53697100000,4.133718000000,Institut Marin du Seaquarium,"Grau du Roi, plage Villa Parry",27758,observation-5b39833c-4bff-4209-ad3a-89dd341c58c3-8,https://biolit.fr/observations/observation-5b39833c-4bff-4209-ad3a-89dd341c58c3-8/,Aplysia depilans,Aplysie visqueuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181024_104742.jpg,,TRUE, +N1,28472,sortie-a5f0bfa8-aefd-4d9f-861f-3e89272aa6cb,https://biolit.fr/sorties/sortie-a5f0bfa8-aefd-4d9f-861f-3e89272aa6cb/,Institut Marin du Seaquarium,,05/07/2018,10.0000000,11.0000000,43.537087000000,4.133954000000,Institut Marin du Seaquarium,"Grau du Roi, plage Villa Parry",27760,observation-a5f0bfa8-aefd-4d9f-861f-3e89272aa6cb,https://biolit.fr/observations/observation-a5f0bfa8-aefd-4d9f-861f-3e89272aa6cb/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180509_115308-scaled.jpg,,FALSE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27762,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/81843883_592519731537363_5105247154524389376_n_1-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27764,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-2,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/81992507_2789335301087059_2049962159231729664_n_0-scaled.jpg,,FALSE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27766,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-3,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-3/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/81995354_824783414651651_4982829673076490240_n-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27768,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-4,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-4/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/81998073_875845979536772_4955752395356241920_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27772,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-6,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-6/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/82109252_872767053141330_4760168810286153728_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27776,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-8,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-8/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/82130892_506910286608933_6589282926523842560_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27778,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-9,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/82176420_2650218838379625_8715367097540018176_n_0-scaled.jpg,,FALSE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27780,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-10,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-10/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/82193981_487760182166972_3224230621962305536_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27782,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-11,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-11/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/82253700_483720765621182_7415341833468772352_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27784,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-12,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-12/,Bolinus brandaris,Murex épineux,,https://biolit.fr/wp-content/uploads/2023/07/82276430_2644558882265498_5398546979359817728_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27786,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-13,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-13/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/82307862_461817248061839_1547819433664184320_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27788,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-14,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/82310955_475054566760133_2353000912605151232_n_0-scaled.jpg,,FALSE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27790,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-15,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/82362779_553069288755237_1963277169304010752_n-scaled.jpg,,FALSE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27792,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-16,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-16/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/82369126_504917760158886_4504217737588899840_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27794,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-17,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-17/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/82382160_523814581822036_4090578929188864000_n-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27796,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-18,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-18/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/82391816_605331680033047_2339803972753162240_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27798,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-19,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-19/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/82452289_485276338803301_5031975450541293568_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27800,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-20,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-20/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/82464479_598026660993471_529599059921469440_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27802,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-21,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-21/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/2023/07/82493890_2497626257167032_6762065337673318400_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27804,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-22,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/82544205_477081546566631_20949184022577152_n_0-scaled.jpg,,FALSE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27806,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-23,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-23/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/82558763_658595214682011_6140974377606316032_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27808,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-24,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-24/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/82584335_631151437689092_3185936444443066368_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27810,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-25,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/82591782_560612204525381_8893346526491836416_n_0-scaled.jpg,,FALSE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27812,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-26,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/82634840_857283388081152_7811146073640009728_n-scaled.jpg,,FALSE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27816,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-28,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-28/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/82678449_3298996956793673_8155072675153182720_n-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27818,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-29,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/82751017_2461205090768226_4035382938668367872_n_0-scaled.jpg,,FALSE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27820,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-30,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/82759828_3402236396485371_7954111069473996800_n_0-scaled.jpg,,FALSE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27822,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-31,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-31/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/82799886_509977449876617_2300317138650398720_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27824,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-32,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-32/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/82816580_483069425978991_7777151063894786048_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27826,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-33,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-33/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/82929335_2501877469934679_8557505793618870272_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27828,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-34,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-34/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/83044424_795187097628446_3232907628426297344_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27830,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-35,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/83088178_1520452901450316_4654674651035729920_n_0-scaled.jpg,,FALSE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27832,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-36,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-36/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/83152888_2724056497642067_2422388737792016384_n_0-scaled.jpg,,TRUE, +N1,28473,sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8,https://biolit.fr/sorties/sortie-c219525d-4144-4d61-a1b6-e58ce09edfc8/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429240000000,3.765976000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan Plage",27834,observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-37,https://biolit.fr/observations/observation-c219525d-4144-4d61-a1b6-e58ce09edfc8-37/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/83729512_2608648482516624_3237094950956957696_n_0-scaled.jpg,,TRUE, +N1,28474,sortie-c53532e5-9ea7-46c4-9f05-e88b5a1f7f8c,https://biolit.fr/sorties/sortie-c53532e5-9ea7-46c4-9f05-e88b5a1f7f8c/,polig,,12/20/2019 0:00,15.0000000,16.0000000,47.864568000000,-4.119901000000,,Combrit sainte marine plage pen morvan,27836,observation-c53532e5-9ea7-46c4-9f05-e88b5a1f7f8c,https://biolit.fr/observations/observation-c53532e5-9ea7-46c4-9f05-e88b5a1f7f8c/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1078-scaled.jpg,,TRUE, +N1,28474,sortie-c53532e5-9ea7-46c4-9f05-e88b5a1f7f8c,https://biolit.fr/sorties/sortie-c53532e5-9ea7-46c4-9f05-e88b5a1f7f8c/,polig,,12/20/2019 0:00,15.0000000,16.0000000,47.864568000000,-4.119901000000,,Combrit sainte marine plage pen morvan,27838,observation-c53532e5-9ea7-46c4-9f05-e88b5a1f7f8c-2,https://biolit.fr/observations/observation-c53532e5-9ea7-46c4-9f05-e88b5a1f7f8c-2/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1090-scaled.jpg,,TRUE, +N1,28475,sortie-430c2a8d-e36c-4704-8b97-2536ee56629a,https://biolit.fr/sorties/sortie-430c2a8d-e36c-4704-8b97-2536ee56629a/,Emeline 44240,,08/05/2019,17.0000000,17.0:45,47.489243000000,-2.821313000000,,"Plage de kercambre,56730,Saint-Gildas-De-Rhuys,France",27840,observation-430c2a8d-e36c-4704-8b97-2536ee56629a,https://biolit.fr/observations/observation-430c2a8d-e36c-4704-8b97-2536ee56629a/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Oeufs de seiche-rotated.jpg,,TRUE, +N1,28476,sortie-a2bfeb6c-3f2b-486f-b70c-3ce4fe8de711,https://biolit.fr/sorties/sortie-a2bfeb6c-3f2b-486f-b70c-3ce4fe8de711/,cmercier,,4/30/2018 0:00,11.0000000,11.0:35,43.266474000000,6.697595000000,,Cap de Saint Tropez,27842,observation-a2bfeb6c-3f2b-486f-b70c-3ce4fe8de711,https://biolit.fr/observations/observation-a2bfeb6c-3f2b-486f-b70c-3ce4fe8de711/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20180427_Velella_CapStTropez_6.JPG,,TRUE, +N1,28476,sortie-a2bfeb6c-3f2b-486f-b70c-3ce4fe8de711,https://biolit.fr/sorties/sortie-a2bfeb6c-3f2b-486f-b70c-3ce4fe8de711/,cmercier,,4/30/2018 0:00,11.0000000,11.0:35,43.266474000000,6.697595000000,,Cap de Saint Tropez,27844,observation-a2bfeb6c-3f2b-486f-b70c-3ce4fe8de711-2,https://biolit.fr/observations/observation-a2bfeb6c-3f2b-486f-b70c-3ce4fe8de711-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20180427_Velella_CapStTropez_7.JPG,,TRUE, +N1,28476,sortie-a2bfeb6c-3f2b-486f-b70c-3ce4fe8de711,https://biolit.fr/sorties/sortie-a2bfeb6c-3f2b-486f-b70c-3ce4fe8de711/,cmercier,,4/30/2018 0:00,11.0000000,11.0:35,43.266474000000,6.697595000000,,Cap de Saint Tropez,27846,observation-a2bfeb6c-3f2b-486f-b70c-3ce4fe8de711-3,https://biolit.fr/observations/observation-a2bfeb6c-3f2b-486f-b70c-3ce4fe8de711-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20180427_Velella_CapStTropez_4.JPG,,TRUE, +N1,28477,sortie-b5ac154b-5254-476e-a8b7-6bd0cd11f77c,https://biolit.fr/sorties/sortie-b5ac154b-5254-476e-a8b7-6bd0cd11f77c/,Fleur,,06/09/2019,13.0000000,13.0:15,43.064080000000,6.150342000000,,Plage de la Capte - Hyères,27848,observation-b5ac154b-5254-476e-a8b7-6bd0cd11f77c,https://biolit.fr/observations/observation-b5ac154b-5254-476e-a8b7-6bd0cd11f77c/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190609_123621-scaled.jpg,,TRUE, +N1,28477,sortie-b5ac154b-5254-476e-a8b7-6bd0cd11f77c,https://biolit.fr/sorties/sortie-b5ac154b-5254-476e-a8b7-6bd0cd11f77c/,Fleur,,06/09/2019,13.0000000,13.0:15,43.064080000000,6.150342000000,,Plage de la Capte - Hyères,27850,observation-b5ac154b-5254-476e-a8b7-6bd0cd11f77c-2,https://biolit.fr/observations/observation-b5ac154b-5254-476e-a8b7-6bd0cd11f77c-2/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190609_123629-scaled.jpg,,TRUE, +N1,28478,sortie-d60fb788-d90d-440a-9283-7b0d3d12eb96,https://biolit.fr/sorties/sortie-d60fb788-d90d-440a-9283-7b0d3d12eb96/,Club subaquatique Narbonnais,,4/14/2019 0:00,11.0000000,12.0000000,43.168418000000,3.180337000000,Club Subaquatique Narbonnais CSN/FSGT,"plage de Narbonne-plage, promenade du port",27852,observation-d60fb788-d90d-440a-9283-7b0d3d12eb96,https://biolit.fr/observations/observation-d60fb788-d90d-440a-9283-7b0d3d12eb96/,,,,https://biolit.fr/wp-content/uploads/2023/07/capsules raie.JPG,,FALSE, +N1,28478,sortie-d60fb788-d90d-440a-9283-7b0d3d12eb96,https://biolit.fr/sorties/sortie-d60fb788-d90d-440a-9283-7b0d3d12eb96/,Club subaquatique Narbonnais,,4/14/2019 0:00,11.0000000,12.0000000,43.168418000000,3.180337000000,Club Subaquatique Narbonnais CSN/FSGT,"plage de Narbonne-plage, promenade du port",27854,observation-d60fb788-d90d-440a-9283-7b0d3d12eb96-2,https://biolit.fr/observations/observation-d60fb788-d90d-440a-9283-7b0d3d12eb96-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/divers.JPG,,FALSE, +N1,28478,sortie-d60fb788-d90d-440a-9283-7b0d3d12eb96,https://biolit.fr/sorties/sortie-d60fb788-d90d-440a-9283-7b0d3d12eb96/,Club subaquatique Narbonnais,,4/14/2019 0:00,11.0000000,12.0000000,43.168418000000,3.180337000000,Club Subaquatique Narbonnais CSN/FSGT,"plage de Narbonne-plage, promenade du port",27856,observation-d60fb788-d90d-440a-9283-7b0d3d12eb96-3,https://biolit.fr/observations/observation-d60fb788-d90d-440a-9283-7b0d3d12eb96-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/oeufs seiche_0.JPG,,FALSE, +N1,28478,sortie-d60fb788-d90d-440a-9283-7b0d3d12eb96,https://biolit.fr/sorties/sortie-d60fb788-d90d-440a-9283-7b0d3d12eb96/,Club subaquatique Narbonnais,,4/14/2019 0:00,11.0000000,12.0000000,43.168418000000,3.180337000000,Club Subaquatique Narbonnais CSN/FSGT,"plage de Narbonne-plage, promenade du port",27858,observation-d60fb788-d90d-440a-9283-7b0d3d12eb96-4,https://biolit.fr/observations/observation-d60fb788-d90d-440a-9283-7b0d3d12eb96-4/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/os seiche.JPG,,TRUE, +N1,28478,sortie-d60fb788-d90d-440a-9283-7b0d3d12eb96,https://biolit.fr/sorties/sortie-d60fb788-d90d-440a-9283-7b0d3d12eb96/,Club subaquatique Narbonnais,,4/14/2019 0:00,11.0000000,12.0000000,43.168418000000,3.180337000000,Club Subaquatique Narbonnais CSN/FSGT,"plage de Narbonne-plage, promenade du port",27860,observation-d60fb788-d90d-440a-9283-7b0d3d12eb96-5,https://biolit.fr/observations/observation-d60fb788-d90d-440a-9283-7b0d3d12eb96-5/,Hippocampus hippocampus,Hippocampe à museau court,,https://biolit.fr/wp-content/uploads/2023/07/hippo.JPG,,TRUE, +N1,28478,sortie-d60fb788-d90d-440a-9283-7b0d3d12eb96,https://biolit.fr/sorties/sortie-d60fb788-d90d-440a-9283-7b0d3d12eb96/,Club subaquatique Narbonnais,,4/14/2019 0:00,11.0000000,12.0000000,43.168418000000,3.180337000000,Club Subaquatique Narbonnais CSN/FSGT,"plage de Narbonne-plage, promenade du port",27862,observation-d60fb788-d90d-440a-9283-7b0d3d12eb96-6,https://biolit.fr/observations/observation-d60fb788-d90d-440a-9283-7b0d3d12eb96-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabepince.JPG,,FALSE, +N1,28478,sortie-d60fb788-d90d-440a-9283-7b0d3d12eb96,https://biolit.fr/sorties/sortie-d60fb788-d90d-440a-9283-7b0d3d12eb96/,Club subaquatique Narbonnais,,4/14/2019 0:00,11.0000000,12.0000000,43.168418000000,3.180337000000,Club Subaquatique Narbonnais CSN/FSGT,"plage de Narbonne-plage, promenade du port",27864,observation-d60fb788-d90d-440a-9283-7b0d3d12eb96-7,https://biolit.fr/observations/observation-d60fb788-d90d-440a-9283-7b0d3d12eb96-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/poisson.JPG,,FALSE, +N1,28478,sortie-d60fb788-d90d-440a-9283-7b0d3d12eb96,https://biolit.fr/sorties/sortie-d60fb788-d90d-440a-9283-7b0d3d12eb96/,Club subaquatique Narbonnais,,4/14/2019 0:00,11.0000000,12.0000000,43.168418000000,3.180337000000,Club Subaquatique Narbonnais CSN/FSGT,"plage de Narbonne-plage, promenade du port",27866,observation-d60fb788-d90d-440a-9283-7b0d3d12eb96-8,https://biolit.fr/observations/observation-d60fb788-d90d-440a-9283-7b0d3d12eb96-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/roussette.JPG,,FALSE, +N1,28479,sortie-af91e3bb-4127-46a6-ad66-942f4dc9e900,https://biolit.fr/sorties/sortie-af91e3bb-4127-46a6-ad66-942f4dc9e900/,Leonore Aubert,,3/14/2019 0:00,9.0000000,10.0000000,43.235903000000,5.359943000000,,Plage de la bonne brise 13008 Marseille,27868,observation-af91e3bb-4127-46a6-ad66-942f4dc9e900,https://biolit.fr/observations/observation-af91e3bb-4127-46a6-ad66-942f4dc9e900/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20190314_103516-scaled.jpg,,TRUE, +N1,28479,sortie-af91e3bb-4127-46a6-ad66-942f4dc9e900,https://biolit.fr/sorties/sortie-af91e3bb-4127-46a6-ad66-942f4dc9e900/,Leonore Aubert,,3/14/2019 0:00,9.0000000,10.0000000,43.235903000000,5.359943000000,,Plage de la bonne brise 13008 Marseille,27870,observation-af91e3bb-4127-46a6-ad66-942f4dc9e900-2,https://biolit.fr/observations/observation-af91e3bb-4127-46a6-ad66-942f4dc9e900-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190314_103355-scaled.jpg,,FALSE, +N1,28479,sortie-af91e3bb-4127-46a6-ad66-942f4dc9e900,https://biolit.fr/sorties/sortie-af91e3bb-4127-46a6-ad66-942f4dc9e900/,Leonore Aubert,,3/14/2019 0:00,9.0000000,10.0000000,43.235903000000,5.359943000000,,Plage de la bonne brise 13008 Marseille,27872,observation-af91e3bb-4127-46a6-ad66-942f4dc9e900-3,https://biolit.fr/observations/observation-af91e3bb-4127-46a6-ad66-942f4dc9e900-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190314_103425-scaled.jpg,,FALSE, +N1,28479,sortie-af91e3bb-4127-46a6-ad66-942f4dc9e900,https://biolit.fr/sorties/sortie-af91e3bb-4127-46a6-ad66-942f4dc9e900/,Leonore Aubert,,3/14/2019 0:00,9.0000000,10.0000000,43.235903000000,5.359943000000,,Plage de la bonne brise 13008 Marseille,27874,observation-af91e3bb-4127-46a6-ad66-942f4dc9e900-4,https://biolit.fr/observations/observation-af91e3bb-4127-46a6-ad66-942f4dc9e900-4/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/20190314_103407-min-scaled.jpg,,TRUE, +N1,28479,sortie-af91e3bb-4127-46a6-ad66-942f4dc9e900,https://biolit.fr/sorties/sortie-af91e3bb-4127-46a6-ad66-942f4dc9e900/,Leonore Aubert,,3/14/2019 0:00,9.0000000,10.0000000,43.235903000000,5.359943000000,,Plage de la bonne brise 13008 Marseille,27876,observation-af91e3bb-4127-46a6-ad66-942f4dc9e900-5,https://biolit.fr/observations/observation-af91e3bb-4127-46a6-ad66-942f4dc9e900-5/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/20190314_103419-scaled.jpg,,TRUE, +N1,28479,sortie-af91e3bb-4127-46a6-ad66-942f4dc9e900,https://biolit.fr/sorties/sortie-af91e3bb-4127-46a6-ad66-942f4dc9e900/,Leonore Aubert,,3/14/2019 0:00,9.0000000,10.0000000,43.235903000000,5.359943000000,,Plage de la bonne brise 13008 Marseille,27878,observation-af91e3bb-4127-46a6-ad66-942f4dc9e900-6,https://biolit.fr/observations/observation-af91e3bb-4127-46a6-ad66-942f4dc9e900-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190314_103535-scaled.jpg,,FALSE, +N1,28480,sortie-b83c4ae1-240e-411f-99d5-77a896931d16,https://biolit.fr/sorties/sortie-b83c4ae1-240e-411f-99d5-77a896931d16/,Club subaquatique Narbonnais,,03/09/2019,15.0000000,16.0000000,43.168193000000,3.181029000000,Club Subaquatique Narbonnais CSN/FSGT,"plage de Narbonne-plage, promenade du port",27880,observation-b83c4ae1-240e-411f-99d5-77a896931d16,https://biolit.fr/observations/observation-b83c4ae1-240e-411f-99d5-77a896931d16/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/oeufs seiche.JPG,,TRUE, +N1,28480,sortie-b83c4ae1-240e-411f-99d5-77a896931d16,https://biolit.fr/sorties/sortie-b83c4ae1-240e-411f-99d5-77a896931d16/,Club subaquatique Narbonnais,,03/09/2019,15.0000000,16.0000000,43.168193000000,3.181029000000,Club Subaquatique Narbonnais CSN/FSGT,"plage de Narbonne-plage, promenade du port",27882,observation-b83c4ae1-240e-411f-99d5-77a896931d16-2,https://biolit.fr/observations/observation-b83c4ae1-240e-411f-99d5-77a896931d16-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/capsules raies.JPG,,FALSE, +N1,28480,sortie-b83c4ae1-240e-411f-99d5-77a896931d16,https://biolit.fr/sorties/sortie-b83c4ae1-240e-411f-99d5-77a896931d16/,Club subaquatique Narbonnais,,03/09/2019,15.0000000,16.0000000,43.168193000000,3.181029000000,Club Subaquatique Narbonnais CSN/FSGT,"plage de Narbonne-plage, promenade du port",27884,observation-b83c4ae1-240e-411f-99d5-77a896931d16-3,https://biolit.fr/observations/observation-b83c4ae1-240e-411f-99d5-77a896931d16-3/,Pleurobrachia pileus,Groseille de mer,,https://biolit.fr/wp-content/uploads/2023/07/groseille.JPG,,TRUE, +N1,28481,sortie-bc79af47-a227-413d-a21e-aebdeba58412,https://biolit.fr/sorties/sortie-bc79af47-a227-413d-a21e-aebdeba58412/,Marine,,10/08/2018,9.0:25,9.0000000,43.236138000000,5.359962000000,,plage de la bonne brise,27886,observation-bc79af47-a227-413d-a21e-aebdeba58412,https://biolit.fr/observations/observation-bc79af47-a227-413d-a21e-aebdeba58412/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5554-rotated.jpg,,FALSE, +N1,28482,sortie-5c23d48b-b0a2-4ad8-a918-81ff851b5c83,https://biolit.fr/sorties/sortie-5c23d48b-b0a2-4ad8-a918-81ff851b5c83/,Fleur,,9/28/2018 0:00,13.0000000,14.0000000,43.078560000000,5.894808000000,,"Plage des Sablettes, La Seyne-sur-Mer",27888,observation-5c23d48b-b0a2-4ad8-a918-81ff851b5c83,https://biolit.fr/observations/observation-5c23d48b-b0a2-4ad8-a918-81ff851b5c83/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9686-min-scaled.jpg,,FALSE, +N1,28483,sortie-a77e4564-62ff-47a0-82a3-6b5b82da7575,https://biolit.fr/sorties/sortie-a77e4564-62ff-47a0-82a3-6b5b82da7575/,LPO Occitanie (délégation Hérault),,9/21/2018 0:00,10.0:15,10.0000000,43.453930000000,3.813569000000,,"Plage des Aresquiers, Frontignan",27890,observation-a77e4564-62ff-47a0-82a3-6b5b82da7575,https://biolit.fr/observations/observation-a77e4564-62ff-47a0-82a3-6b5b82da7575/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180921_112515 - Copie (2).jpg,,FALSE, +N1,28483,sortie-a77e4564-62ff-47a0-82a3-6b5b82da7575,https://biolit.fr/sorties/sortie-a77e4564-62ff-47a0-82a3-6b5b82da7575/,LPO Occitanie (délégation Hérault),,9/21/2018 0:00,10.0:15,10.0000000,43.453930000000,3.813569000000,,"Plage des Aresquiers, Frontignan",27892,observation-a77e4564-62ff-47a0-82a3-6b5b82da7575-2,https://biolit.fr/observations/observation-a77e4564-62ff-47a0-82a3-6b5b82da7575-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180921_112515 - Copie (3).jpg,,FALSE, +N1,28483,sortie-a77e4564-62ff-47a0-82a3-6b5b82da7575,https://biolit.fr/sorties/sortie-a77e4564-62ff-47a0-82a3-6b5b82da7575/,LPO Occitanie (délégation Hérault),,9/21/2018 0:00,10.0:15,10.0000000,43.453930000000,3.813569000000,,"Plage des Aresquiers, Frontignan",27894,observation-a77e4564-62ff-47a0-82a3-6b5b82da7575-3,https://biolit.fr/observations/observation-a77e4564-62ff-47a0-82a3-6b5b82da7575-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180921_112515 - Copie (5).jpg,,FALSE, +N1,28483,sortie-a77e4564-62ff-47a0-82a3-6b5b82da7575,https://biolit.fr/sorties/sortie-a77e4564-62ff-47a0-82a3-6b5b82da7575/,LPO Occitanie (délégation Hérault),,9/21/2018 0:00,10.0:15,10.0000000,43.453930000000,3.813569000000,,"Plage des Aresquiers, Frontignan",27896,observation-a77e4564-62ff-47a0-82a3-6b5b82da7575-4,https://biolit.fr/observations/observation-a77e4564-62ff-47a0-82a3-6b5b82da7575-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180921_112515 - Copie (4).jpg,,FALSE, +N1,28483,sortie-a77e4564-62ff-47a0-82a3-6b5b82da7575,https://biolit.fr/sorties/sortie-a77e4564-62ff-47a0-82a3-6b5b82da7575/,LPO Occitanie (délégation Hérault),,9/21/2018 0:00,10.0:15,10.0000000,43.453930000000,3.813569000000,,"Plage des Aresquiers, Frontignan",27898,observation-a77e4564-62ff-47a0-82a3-6b5b82da7575-5,https://biolit.fr/observations/observation-a77e4564-62ff-47a0-82a3-6b5b82da7575-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180921_112515 - Copie.jpg,,FALSE, +N1,28483,sortie-a77e4564-62ff-47a0-82a3-6b5b82da7575,https://biolit.fr/sorties/sortie-a77e4564-62ff-47a0-82a3-6b5b82da7575/,LPO Occitanie (délégation Hérault),,9/21/2018 0:00,10.0:15,10.0000000,43.453930000000,3.813569000000,,"Plage des Aresquiers, Frontignan",27900,observation-a77e4564-62ff-47a0-82a3-6b5b82da7575-6,https://biolit.fr/observations/observation-a77e4564-62ff-47a0-82a3-6b5b82da7575-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180921_112515 - Copie (6).jpg,,FALSE, +N1,28484,sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c,https://biolit.fr/sorties/sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c/,Morice,,6/27/2018 0:00,10.0000000,10.0:45,48.625845000000,-2.053248000000,,Plage du Prieuré,27902,observation-2667873c-0387-45f1-b440-e2fbf90b2a6c,https://biolit.fr/observations/observation-2667873c-0387-45f1-b440-e2fbf90b2a6c/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20180627_103819-scaled.jpg,,TRUE, +N1,28484,sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c,https://biolit.fr/sorties/sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c/,Morice,,6/27/2018 0:00,10.0000000,10.0:45,48.625845000000,-2.053248000000,,Plage du Prieuré,27904,observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-2,https://biolit.fr/observations/observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-2/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20180627_103843-scaled.jpg,,TRUE, +N1,28484,sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c,https://biolit.fr/sorties/sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c/,Morice,,6/27/2018 0:00,10.0000000,10.0:45,48.625845000000,-2.053248000000,,Plage du Prieuré,27906,observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-3,https://biolit.fr/observations/observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180627_103920-scaled.jpg,,FALSE, +N1,28484,sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c,https://biolit.fr/sorties/sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c/,Morice,,6/27/2018 0:00,10.0000000,10.0:45,48.625845000000,-2.053248000000,,Plage du Prieuré,27908,observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-4,https://biolit.fr/observations/observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20180627_103941-scaled.jpg,,TRUE, +N1,28484,sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c,https://biolit.fr/sorties/sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c/,Morice,,6/27/2018 0:00,10.0000000,10.0:45,48.625845000000,-2.053248000000,,Plage du Prieuré,27910,observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-5,https://biolit.fr/observations/observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180627_104105-scaled.jpg,,FALSE, +N1,28484,sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c,https://biolit.fr/sorties/sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c/,Morice,,6/27/2018 0:00,10.0000000,10.0:45,48.625845000000,-2.053248000000,,Plage du Prieuré,27912,observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-6,https://biolit.fr/observations/observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180627_104140-scaled.jpg,,FALSE, +N1,28484,sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c,https://biolit.fr/sorties/sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c/,Morice,,6/27/2018 0:00,10.0000000,10.0:45,48.625845000000,-2.053248000000,,Plage du Prieuré,27914,observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-7,https://biolit.fr/observations/observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-7/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/20180627_104223-scaled.jpg,,TRUE, +N1,28484,sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c,https://biolit.fr/sorties/sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c/,Morice,,6/27/2018 0:00,10.0000000,10.0:45,48.625845000000,-2.053248000000,,Plage du Prieuré,27916,observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-8,https://biolit.fr/observations/observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-8/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/20180627_104327-scaled.jpg,,TRUE, +N1,28484,sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c,https://biolit.fr/sorties/sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c/,Morice,,6/27/2018 0:00,10.0000000,10.0:45,48.625845000000,-2.053248000000,,Plage du Prieuré,27918,observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-9,https://biolit.fr/observations/observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180627_104348-scaled.jpg,,FALSE, +N1,28484,sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c,https://biolit.fr/sorties/sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c/,Morice,,6/27/2018 0:00,10.0000000,10.0:45,48.625845000000,-2.053248000000,,Plage du Prieuré,27920,observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-10,https://biolit.fr/observations/observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180627_104727-scaled.jpg,,FALSE, +N1,28484,sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c,https://biolit.fr/sorties/sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c/,Morice,,6/27/2018 0:00,10.0000000,10.0:45,48.625845000000,-2.053248000000,,Plage du Prieuré,27922,observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-11,https://biolit.fr/observations/observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180627_104806-scaled.jpg,,FALSE, +N1,28484,sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c,https://biolit.fr/sorties/sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c/,Morice,,6/27/2018 0:00,10.0000000,10.0:45,48.625845000000,-2.053248000000,,Plage du Prieuré,27924,observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-12,https://biolit.fr/observations/observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180627_104822-scaled.jpg,,FALSE, +N1,28484,sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c,https://biolit.fr/sorties/sortie-2667873c-0387-45f1-b440-e2fbf90b2a6c/,Morice,,6/27/2018 0:00,10.0000000,10.0:45,48.625845000000,-2.053248000000,,Plage du Prieuré,27926,observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-13,https://biolit.fr/observations/observation-2667873c-0387-45f1-b440-e2fbf90b2a6c-13/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/20180627_104750-scaled.jpg,,TRUE, +N1,28485,sortie-233a0b3e-d0ea-4d59-9722-85d6aa06f43e,https://biolit.fr/sorties/sortie-233a0b3e-d0ea-4d59-9722-85d6aa06f43e/,CarpeDiem,,5/20/2018 0:00,16.0000000,17.0000000,43.187944000000,6.645553000000,,Anse de l'Escalet,27928,observation-233a0b3e-d0ea-4d59-9722-85d6aa06f43e,https://biolit.fr/observations/observation-233a0b3e-d0ea-4d59-9722-85d6aa06f43e/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Velella velella_2-scaled.jpg,,TRUE, +N1,28486,sortie-4b26b509-cdec-4823-b41f-9b8afe9dabca,https://biolit.fr/sorties/sortie-4b26b509-cdec-4823-b41f-9b8afe9dabca/,Fleur,,4/19/2018 0:00,12.0000000,12.0000000,43.001881000000,6.2077410000,,"Plage de la Courtade, Porquerolles",27930,observation-4b26b509-cdec-4823-b41f-9b8afe9dabca,https://biolit.fr/observations/observation-4b26b509-cdec-4823-b41f-9b8afe9dabca/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_0768-scaled.jpg,,TRUE, +N1,28487,sortie-04e10c01-1ad9-4b92-911a-282eb1e2d8f3,https://biolit.fr/sorties/sortie-04e10c01-1ad9-4b92-911a-282eb1e2d8f3/,Fleur,,4/15/2018 0:00,15.0000000,15.0000000,43.07204700000,6.128573000000,,"Plage de l'Almanarre, Hyères",27932,observation-04e10c01-1ad9-4b92-911a-282eb1e2d8f3,https://biolit.fr/observations/observation-04e10c01-1ad9-4b92-911a-282eb1e2d8f3/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_0739-scaled.jpg,,TRUE, +N1,28488,sortie-e0a59da1-4bff-444b-b8dc-5a3254c4dbbf,https://biolit.fr/sorties/sortie-e0a59da1-4bff-444b-b8dc-5a3254c4dbbf/,Club subaquatique Narbonnais,,4/28/2018 0:00,11.0000000,11.0000000,43.173744000000,3.190964000000,,Saint-Pierre la mer,27934,observation-e0a59da1-4bff-444b-b8dc-5a3254c4dbbf,https://biolit.fr/observations/observation-e0a59da1-4bff-444b-b8dc-5a3254c4dbbf/,Sabella spallanzanii,Spirographe,,https://biolit.fr/wp-content/uploads/2023/07/TRioponte seiche.jpg,,TRUE, +N1,28488,sortie-e0a59da1-4bff-444b-b8dc-5a3254c4dbbf,https://biolit.fr/sorties/sortie-e0a59da1-4bff-444b-b8dc-5a3254c4dbbf/,Club subaquatique Narbonnais,,4/28/2018 0:00,11.0000000,11.0000000,43.173744000000,3.190964000000,,Saint-Pierre la mer,27936,observation-e0a59da1-4bff-444b-b8dc-5a3254c4dbbf-2,https://biolit.fr/observations/observation-e0a59da1-4bff-444b-b8dc-5a3254c4dbbf-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/ponte_0.jpg,,FALSE, +N1,28488,sortie-e0a59da1-4bff-444b-b8dc-5a3254c4dbbf,https://biolit.fr/sorties/sortie-e0a59da1-4bff-444b-b8dc-5a3254c4dbbf/,Club subaquatique Narbonnais,,4/28/2018 0:00,11.0000000,11.0000000,43.173744000000,3.190964000000,,Saint-Pierre la mer,27938,observation-e0a59da1-4bff-444b-b8dc-5a3254c4dbbf-3,https://biolit.fr/observations/observation-e0a59da1-4bff-444b-b8dc-5a3254c4dbbf-3/,Cratena peregrina,Hervia,,https://biolit.fr/wp-content/uploads/2023/07/Hervia et juvenil.jpg,,TRUE, +N1,28489,sortie-353d43e3-10a3-4746-8f01-3dcd3e690959,https://biolit.fr/sorties/sortie-353d43e3-10a3-4746-8f01-3dcd3e690959/,Club subaquatique Narbonnais,,4/15/2018 0:00,11.0000000,12.0000000,43.168173000000,3.180622000000,,"plage de Narbonne-plage, promenade du port",27940,observation-353d43e3-10a3-4746-8f01-3dcd3e690959,https://biolit.fr/observations/observation-353d43e3-10a3-4746-8f01-3dcd3e690959/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue 2-scaled.jpg,,FALSE, +N1,28489,sortie-353d43e3-10a3-4746-8f01-3dcd3e690959,https://biolit.fr/sorties/sortie-353d43e3-10a3-4746-8f01-3dcd3e690959/,Club subaquatique Narbonnais,,4/15/2018 0:00,11.0000000,12.0000000,43.168173000000,3.180622000000,,"plage de Narbonne-plage, promenade du port",27942,observation-353d43e3-10a3-4746-8f01-3dcd3e690959-2,https://biolit.fr/observations/observation-353d43e3-10a3-4746-8f01-3dcd3e690959-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/capsule-scaled.jpg,,FALSE, +N1,28489,sortie-353d43e3-10a3-4746-8f01-3dcd3e690959,https://biolit.fr/sorties/sortie-353d43e3-10a3-4746-8f01-3dcd3e690959/,Club subaquatique Narbonnais,,4/15/2018 0:00,11.0000000,12.0000000,43.168173000000,3.180622000000,,"plage de Narbonne-plage, promenade du port",27944,observation-353d43e3-10a3-4746-8f01-3dcd3e690959-3,https://biolit.fr/observations/observation-353d43e3-10a3-4746-8f01-3dcd3e690959-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/méduse_0.jpg,,FALSE, +N1,28489,sortie-353d43e3-10a3-4746-8f01-3dcd3e690959,https://biolit.fr/sorties/sortie-353d43e3-10a3-4746-8f01-3dcd3e690959/,Club subaquatique Narbonnais,,4/15/2018 0:00,11.0000000,12.0000000,43.168173000000,3.180622000000,,"plage de Narbonne-plage, promenade du port",27945,observation-353d43e3-10a3-4746-8f01-3dcd3e690959-4,https://biolit.fr/observations/observation-353d43e3-10a3-4746-8f01-3dcd3e690959-4/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/velella.JPG,,TRUE, +N1,28490,sortie-4a84d4fe-a9f8-448a-b125-bdf6afbf8ec0,https://biolit.fr/sorties/sortie-4a84d4fe-a9f8-448a-b125-bdf6afbf8ec0/,CPIE Cote Provencale Atelier Bleu,,04/10/2018,13.0000000,17.0:15,43.166254000000,5.605894000000,,"Plage du Mugel, LA CIOTAT",27947,observation-4a84d4fe-a9f8-448a-b125-bdf6afbf8ec0,https://biolit.fr/observations/observation-4a84d4fe-a9f8-448a-b125-bdf6afbf8ec0/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Velelle-scaled.jpg,,TRUE, +N1,28490,sortie-4a84d4fe-a9f8-448a-b125-bdf6afbf8ec0,https://biolit.fr/sorties/sortie-4a84d4fe-a9f8-448a-b125-bdf6afbf8ec0/,CPIE Cote Provencale Atelier Bleu,,04/10/2018,13.0000000,17.0:15,43.166254000000,5.605894000000,,"Plage du Mugel, LA CIOTAT",27949,observation-4a84d4fe-a9f8-448a-b125-bdf6afbf8ec0-2,https://biolit.fr/observations/observation-4a84d4fe-a9f8-448a-b125-bdf6afbf8ec0-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Velelle 2-scaled.jpg,,TRUE, +N1,28491,sortie-e0e053f5-25da-408e-bf59-9152d09df279,https://biolit.fr/sorties/sortie-e0e053f5-25da-408e-bf59-9152d09df279/,CPIE Cote Provencale Atelier Bleu,,03/09/2018,17.0000000,17.0000000,43.165930000000,5.605840000000,,La Ciotat,27951,observation-e0e053f5-25da-408e-bf59-9152d09df279,https://biolit.fr/observations/observation-e0e053f5-25da-408e-bf59-9152d09df279/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_0263-scaled.jpg,,TRUE, +N1,28492,sortie-441b4a18-5e4c-441b-858d-b2046a4af347,https://biolit.fr/sorties/sortie-441b4a18-5e4c-441b-858d-b2046a4af347/,Observe la nature,,04/01/2018,21.0000000,23.0000000,48.815538000000,-3.427140000000,,Pors ar Goret Perros Guirec,27953,observation-441b4a18-5e4c-441b-858d-b2046a4af347,https://biolit.fr/observations/observation-441b4a18-5e4c-441b-858d-b2046a4af347/,,,,https://biolit.fr/wp-content/uploads/2023/07/P4020647-scaled.jpg,,FALSE, +N1,28492,sortie-441b4a18-5e4c-441b-858d-b2046a4af347,https://biolit.fr/sorties/sortie-441b4a18-5e4c-441b-858d-b2046a4af347/,Observe la nature,,04/01/2018,21.0000000,23.0000000,48.815538000000,-3.427140000000,,Pors ar Goret Perros Guirec,27955,observation-441b4a18-5e4c-441b-858d-b2046a4af347-2,https://biolit.fr/observations/observation-441b4a18-5e4c-441b-858d-b2046a4af347-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P4020774-scaled.jpg,,FALSE, +N1,28492,sortie-441b4a18-5e4c-441b-858d-b2046a4af347,https://biolit.fr/sorties/sortie-441b4a18-5e4c-441b-858d-b2046a4af347/,Observe la nature,,04/01/2018,21.0000000,23.0000000,48.815538000000,-3.427140000000,,Pors ar Goret Perros Guirec,27957,observation-441b4a18-5e4c-441b-858d-b2046a4af347-3,https://biolit.fr/observations/observation-441b4a18-5e4c-441b-858d-b2046a4af347-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P4020754-scaled.jpg,,FALSE, +N1,28492,sortie-441b4a18-5e4c-441b-858d-b2046a4af347,https://biolit.fr/sorties/sortie-441b4a18-5e4c-441b-858d-b2046a4af347/,Observe la nature,,04/01/2018,21.0000000,23.0000000,48.815538000000,-3.427140000000,,Pors ar Goret Perros Guirec,27959,observation-441b4a18-5e4c-441b-858d-b2046a4af347-4,https://biolit.fr/observations/observation-441b4a18-5e4c-441b-858d-b2046a4af347-4/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/P4020732-scaled.jpg,,TRUE, +N1,28493,sortie-fa9a78ca-37bf-445f-81ad-9c1d6fb0c826,https://biolit.fr/sorties/sortie-fa9a78ca-37bf-445f-81ad-9c1d6fb0c826/,Morice,,3/18/2018 0:00,14.0000000,15.0000000,48.643216000000,-2.07271000000,,Saint-Enogat,27961,observation-fa9a78ca-37bf-445f-81ad-9c1d6fb0c826,https://biolit.fr/observations/observation-fa9a78ca-37bf-445f-81ad-9c1d6fb0c826/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC_0259.jpg,,TRUE, +N1,28493,sortie-fa9a78ca-37bf-445f-81ad-9c1d6fb0c826,https://biolit.fr/sorties/sortie-fa9a78ca-37bf-445f-81ad-9c1d6fb0c826/,Morice,,3/18/2018 0:00,14.0000000,15.0000000,48.643216000000,-2.07271000000,,Saint-Enogat,27963,observation-fa9a78ca-37bf-445f-81ad-9c1d6fb0c826-2,https://biolit.fr/observations/observation-fa9a78ca-37bf-445f-81ad-9c1d6fb0c826-2/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0388.jpg,,TRUE, +N1,28494,sortie-c298a983-dae4-4d0d-8422-23995a629a06,https://biolit.fr/sorties/sortie-c298a983-dae4-4d0d-8422-23995a629a06/,Morice,,03/06/2018,14.0000000,17.0000000,48.869809000000,-1.826269000000,,Chausey - Port Marie,27965,observation-c298a983-dae4-4d0d-8422-23995a629a06,https://biolit.fr/observations/observation-c298a983-dae4-4d0d-8422-23995a629a06/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180306_162016-scaled.jpg,,TRUE, +N1,28494,sortie-c298a983-dae4-4d0d-8422-23995a629a06,https://biolit.fr/sorties/sortie-c298a983-dae4-4d0d-8422-23995a629a06/,Morice,,03/06/2018,14.0000000,17.0000000,48.869809000000,-1.826269000000,,Chausey - Port Marie,27967,observation-c298a983-dae4-4d0d-8422-23995a629a06-2,https://biolit.fr/observations/observation-c298a983-dae4-4d0d-8422-23995a629a06-2/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20180305_165326-scaled.jpg,,TRUE, +N1,28495,sortie-5b757eb8-94fa-4e44-a259-fcda8405de27,https://biolit.fr/sorties/sortie-5b757eb8-94fa-4e44-a259-fcda8405de27/,club de la mer nice,,1/24/2018 0:00,10.0000000,12.0000000,43.685283000000,7.305891000000,,Villefranche sur Mer,27969,observation-5b757eb8-94fa-4e44-a259-fcda8405de27,https://biolit.fr/observations/observation-5b757eb8-94fa-4e44-a259-fcda8405de27/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180124_114350.jpg,,FALSE, +N1,28496,sortie-9ac1a736-8baf-4a23-b43b-f808b036806f,https://biolit.fr/sorties/sortie-9ac1a736-8baf-4a23-b43b-f808b036806f/,Club subaquatique Narbonnais,,1/13/2018 0:00,14.0:45,15.0000000,43.168380000000,3.180737000000,,"plage de Narbonne-plage, promenade du port",27971,observation-9ac1a736-8baf-4a23-b43b-f808b036806f,https://biolit.fr/observations/observation-9ac1a736-8baf-4a23-b43b-f808b036806f/,,,,https://biolit.fr/wp-content/uploads/2023/07/méduse pélagia-scaled.jpg,,FALSE, +N1,28496,sortie-9ac1a736-8baf-4a23-b43b-f808b036806f,https://biolit.fr/sorties/sortie-9ac1a736-8baf-4a23-b43b-f808b036806f/,Club subaquatique Narbonnais,,1/13/2018 0:00,14.0:45,15.0000000,43.168380000000,3.180737000000,,"plage de Narbonne-plage, promenade du port",27973,observation-9ac1a736-8baf-4a23-b43b-f808b036806f-2,https://biolit.fr/observations/observation-9ac1a736-8baf-4a23-b43b-f808b036806f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/oeuf raie étoilée.JPG,,FALSE, +N1,28496,sortie-9ac1a736-8baf-4a23-b43b-f808b036806f,https://biolit.fr/sorties/sortie-9ac1a736-8baf-4a23-b43b-f808b036806f/,Club subaquatique Narbonnais,,1/13/2018 0:00,14.0:45,15.0000000,43.168380000000,3.180737000000,,"plage de Narbonne-plage, promenade du port",27975,observation-9ac1a736-8baf-4a23-b43b-f808b036806f-3,https://biolit.fr/observations/observation-9ac1a736-8baf-4a23-b43b-f808b036806f-3/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/oeufs buccin-scaled.jpg,,TRUE, +N1,28496,sortie-9ac1a736-8baf-4a23-b43b-f808b036806f,https://biolit.fr/sorties/sortie-9ac1a736-8baf-4a23-b43b-f808b036806f/,Club subaquatique Narbonnais,,1/13/2018 0:00,14.0:45,15.0000000,43.168380000000,3.180737000000,,"plage de Narbonne-plage, promenade du port",27977,observation-9ac1a736-8baf-4a23-b43b-f808b036806f-4,https://biolit.fr/observations/observation-9ac1a736-8baf-4a23-b43b-f808b036806f-4/,Solecurtus strigilatus,Solécurte rose,,https://biolit.fr/wp-content/uploads/2023/07/Solecurtus-scaled.jpg,,TRUE, +N1,28497,sortie-072339fc-6425-4120-bb43-f804ddb76859,https://biolit.fr/sorties/sortie-072339fc-6425-4120-bb43-f804ddb76859/,LucileA,,12/12/2017,14.0000000,15.0000000,48.636445000000,-2.081416000000,,Plage de la rue Sergent Boulanger,27979,observation-072339fc-6425-4120-bb43-f804ddb76859,https://biolit.fr/observations/observation-072339fc-6425-4120-bb43-f804ddb76859/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_8174-scaled.jpg,,TRUE, +N1,28498,sortie-3e02a364-6989-4703-9805-931a7b3bfcf8,https://biolit.fr/sorties/sortie-3e02a364-6989-4703-9805-931a7b3bfcf8/,Institut Marin du Seaquarium,,10/18/2017 0:00,15.0000000,17.0000000,43.527400000000,4.139173000000,,plages du Grau du Roi,27981,observation-3e02a364-6989-4703-9805-931a7b3bfcf8,https://biolit.fr/observations/observation-3e02a364-6989-4703-9805-931a7b3bfcf8/,Tritia neritea,Cyclope néritoïde,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171008_103621_0-scaled.jpg,,TRUE, +N1,28498,sortie-3e02a364-6989-4703-9805-931a7b3bfcf8,https://biolit.fr/sorties/sortie-3e02a364-6989-4703-9805-931a7b3bfcf8/,Institut Marin du Seaquarium,,10/18/2017 0:00,15.0000000,17.0000000,43.527400000000,4.139173000000,,plages du Grau du Roi,27983,observation-3e02a364-6989-4703-9805-931a7b3bfcf8-2,https://biolit.fr/observations/observation-3e02a364-6989-4703-9805-931a7b3bfcf8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171008_105059-scaled.jpg,,FALSE, +N1,28498,sortie-3e02a364-6989-4703-9805-931a7b3bfcf8,https://biolit.fr/sorties/sortie-3e02a364-6989-4703-9805-931a7b3bfcf8/,Institut Marin du Seaquarium,,10/18/2017 0:00,15.0000000,17.0000000,43.527400000000,4.139173000000,,plages du Grau du Roi,27985,observation-3e02a364-6989-4703-9805-931a7b3bfcf8-3,https://biolit.fr/observations/observation-3e02a364-6989-4703-9805-931a7b3bfcf8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171008_104035-scaled.jpg,,FALSE, +N1,28499,sortie-0614698a-2755-497a-839e-19ad25265f8a,https://biolit.fr/sorties/sortie-0614698a-2755-497a-839e-19ad25265f8a/,LucileA,,07/04/2017,14.0:45,16.0:45,48.640798000000,-2.072506000000,,Plage de Saint Enogat,27987,observation-0614698a-2755-497a-839e-19ad25265f8a,https://biolit.fr/observations/observation-0614698a-2755-497a-839e-19ad25265f8a/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_6652-scaled.jpg,,TRUE, +N1,28499,sortie-0614698a-2755-497a-839e-19ad25265f8a,https://biolit.fr/sorties/sortie-0614698a-2755-497a-839e-19ad25265f8a/,LucileA,,07/04/2017,14.0:45,16.0:45,48.640798000000,-2.072506000000,,Plage de Saint Enogat,27989,observation-0614698a-2755-497a-839e-19ad25265f8a-2,https://biolit.fr/observations/observation-0614698a-2755-497a-839e-19ad25265f8a-2/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_6653-scaled.jpg,,TRUE, +N1,28500,sortie-35b712ee-649a-4acf-86df-a780a7fe6533,https://biolit.fr/sorties/sortie-35b712ee-649a-4acf-86df-a780a7fe6533/,NVanzu,,6/29/2017 0:00,11.0000000,13.0000000,43.233082000000,5.356246000000,,Plage de la bonne brise,27991,observation-35b712ee-649a-4acf-86df-a780a7fe6533,https://biolit.fr/observations/observation-35b712ee-649a-4acf-86df-a780a7fe6533/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0105-scaled.jpg,,FALSE, +N1,28500,sortie-35b712ee-649a-4acf-86df-a780a7fe6533,https://biolit.fr/sorties/sortie-35b712ee-649a-4acf-86df-a780a7fe6533/,NVanzu,,6/29/2017 0:00,11.0000000,13.0000000,43.233082000000,5.356246000000,,Plage de la bonne brise,27993,observation-35b712ee-649a-4acf-86df-a780a7fe6533-2,https://biolit.fr/observations/observation-35b712ee-649a-4acf-86df-a780a7fe6533-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0106-scaled.jpg,,FALSE, +N1,28500,sortie-35b712ee-649a-4acf-86df-a780a7fe6533,https://biolit.fr/sorties/sortie-35b712ee-649a-4acf-86df-a780a7fe6533/,NVanzu,,6/29/2017 0:00,11.0000000,13.0000000,43.233082000000,5.356246000000,,Plage de la bonne brise,27995,observation-35b712ee-649a-4acf-86df-a780a7fe6533-3,https://biolit.fr/observations/observation-35b712ee-649a-4acf-86df-a780a7fe6533-3/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_0108-scaled.jpg,,TRUE, +N1,28500,sortie-35b712ee-649a-4acf-86df-a780a7fe6533,https://biolit.fr/sorties/sortie-35b712ee-649a-4acf-86df-a780a7fe6533/,NVanzu,,6/29/2017 0:00,11.0000000,13.0000000,43.233082000000,5.356246000000,,Plage de la bonne brise,27997,observation-35b712ee-649a-4acf-86df-a780a7fe6533-4,https://biolit.fr/observations/observation-35b712ee-649a-4acf-86df-a780a7fe6533-4/,Janthina janthina,Janthine commune,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0117-scaled.jpg,,TRUE, +N1,28501,sortie-5fc839e8-6e67-4e38-b4d1-a951ecfe90db,https://biolit.fr/sorties/sortie-5fc839e8-6e67-4e38-b4d1-a951ecfe90db/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215240000000,5.342490000000,,Anse de la Maronaise ,27999,observation-5fc839e8-6e67-4e38-b4d1-a951ecfe90db,https://biolit.fr/observations/observation-5fc839e8-6e67-4e38-b4d1-a951ecfe90db/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0138_0-scaled.jpg,,FALSE, +N1,28502,sortie-f509b9e5-8d1b-4ad3-9d06-5597801a5b19,https://biolit.fr/sorties/sortie-f509b9e5-8d1b-4ad3-9d06-5597801a5b19/,ludovic,,4/26/2017 0:00,11.0000000,13.0000000,43.15437200000,6.481942000000,,plage Domaine du Rayol (le figuier),28001,observation-f509b9e5-8d1b-4ad3-9d06-5597801a5b19,https://biolit.fr/observations/observation-f509b9e5-8d1b-4ad3-9d06-5597801a5b19/,,,,https://biolit.fr/wp-content/uploads/2023/07/meduse-scaled.jpg,,FALSE, +N1,28502,sortie-f509b9e5-8d1b-4ad3-9d06-5597801a5b19,https://biolit.fr/sorties/sortie-f509b9e5-8d1b-4ad3-9d06-5597801a5b19/,ludovic,,4/26/2017 0:00,11.0000000,13.0000000,43.15437200000,6.481942000000,,plage Domaine du Rayol (le figuier),28003,observation-f509b9e5-8d1b-4ad3-9d06-5597801a5b19-2,https://biolit.fr/observations/observation-f509b9e5-8d1b-4ad3-9d06-5597801a5b19-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Velelle-scaled.jpg,,TRUE, +N1,28502,sortie-f509b9e5-8d1b-4ad3-9d06-5597801a5b19,https://biolit.fr/sorties/sortie-f509b9e5-8d1b-4ad3-9d06-5597801a5b19/,ludovic,,4/26/2017 0:00,11.0000000,13.0000000,43.15437200000,6.481942000000,,plage Domaine du Rayol (le figuier),28004,observation-f509b9e5-8d1b-4ad3-9d06-5597801a5b19-3,https://biolit.fr/observations/observation-f509b9e5-8d1b-4ad3-9d06-5597801a5b19-3/,Janthina janthina,Janthine commune,,https://biolit.fr/wp-content/uploads/2023/07/escargot-scaled.jpg,,TRUE, +N1,28503,sortie-ae725bf2-6c21-4484-ab4e-55bde4268f72,https://biolit.fr/sorties/sortie-ae725bf2-6c21-4484-ab4e-55bde4268f72/,jugo,,5/14/2017 0:00,16.0000000,17.0000000,43.157514000000,6.462734000000,,rayol canadel,28006,observation-ae725bf2-6c21-4484-ab4e-55bde4268f72,https://biolit.fr/observations/observation-ae725bf2-6c21-4484-ab4e-55bde4268f72/,Janthina janthina,Janthine commune,,https://biolit.fr/wp-content/uploads/2023/07/DSCF7672-scaled.jpg,,TRUE, +N1,28504,sortie-612d8d83-ffaa-4cca-9e2d-205cd44739ed,https://biolit.fr/sorties/sortie-612d8d83-ffaa-4cca-9e2d-205cd44739ed/,Marine,,5/19/2017 0:00,13.0000000,13.0:45,43.214820000000,5.342949000000,,Anse de la Maronaise,28008,observation-612d8d83-ffaa-4cca-9e2d-205cd44739ed,https://biolit.fr/observations/observation-612d8d83-ffaa-4cca-9e2d-205cd44739ed/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_2386_0-rotated.jpg,,TRUE, +N1,28504,sortie-612d8d83-ffaa-4cca-9e2d-205cd44739ed,https://biolit.fr/sorties/sortie-612d8d83-ffaa-4cca-9e2d-205cd44739ed/,Marine,,5/19/2017 0:00,13.0000000,13.0:45,43.214820000000,5.342949000000,,Anse de la Maronaise,28010,observation-612d8d83-ffaa-4cca-9e2d-205cd44739ed-2,https://biolit.fr/observations/observation-612d8d83-ffaa-4cca-9e2d-205cd44739ed-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_2387_1.JPG,,TRUE, +N1,28504,sortie-612d8d83-ffaa-4cca-9e2d-205cd44739ed,https://biolit.fr/sorties/sortie-612d8d83-ffaa-4cca-9e2d-205cd44739ed/,Marine,,5/19/2017 0:00,13.0000000,13.0:45,43.214820000000,5.342949000000,,Anse de la Maronaise,28012,observation-612d8d83-ffaa-4cca-9e2d-205cd44739ed-3,https://biolit.fr/observations/observation-612d8d83-ffaa-4cca-9e2d-205cd44739ed-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_2388_0.JPG,,TRUE, +N1,28504,sortie-612d8d83-ffaa-4cca-9e2d-205cd44739ed,https://biolit.fr/sorties/sortie-612d8d83-ffaa-4cca-9e2d-205cd44739ed/,Marine,,5/19/2017 0:00,13.0000000,13.0:45,43.214820000000,5.342949000000,,Anse de la Maronaise,28014,observation-612d8d83-ffaa-4cca-9e2d-205cd44739ed-4,https://biolit.fr/observations/observation-612d8d83-ffaa-4cca-9e2d-205cd44739ed-4/,Janthina janthina,Janthine commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2390_0-rotated.jpg,,TRUE, +N1,28504,sortie-612d8d83-ffaa-4cca-9e2d-205cd44739ed,https://biolit.fr/sorties/sortie-612d8d83-ffaa-4cca-9e2d-205cd44739ed/,Marine,,5/19/2017 0:00,13.0000000,13.0:45,43.214820000000,5.342949000000,,Anse de la Maronaise,28016,observation-612d8d83-ffaa-4cca-9e2d-205cd44739ed-5,https://biolit.fr/observations/observation-612d8d83-ffaa-4cca-9e2d-205cd44739ed-5/,Janthina janthina,Janthine commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2391_0.JPG,,TRUE, +N1,28505,sortie-8de0ebe2-ea2d-4692-b63a-fc3c1244f97a,https://biolit.fr/sorties/sortie-8de0ebe2-ea2d-4692-b63a-fc3c1244f97a/,Centre de Découverte Mer et Montagne,,05/10/2017,8.0:15,8.0:35,43.692001000000,7.290321000000,,plage des Bains militaires,28018,observation-8de0ebe2-ea2d-4692-b63a-fc3c1244f97a,https://biolit.fr/observations/observation-8de0ebe2-ea2d-4692-b63a-fc3c1244f97a/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/100517_echouage_BainsMilitaires_CDMM_CB_basse_def (23).JPG,,TRUE, +N1,28506,sortie-3bde59e7-c4ad-4bda-a504-52dd399f2be6,https://biolit.fr/sorties/sortie-3bde59e7-c4ad-4bda-a504-52dd399f2be6/,Centre de Découverte Mer et Montagne,,05/10/2017,8.0:15,8.0:35,43.692010000000,7.290363000000,,plage des Bains militaires,28020,observation-3bde59e7-c4ad-4bda-a504-52dd399f2be6,https://biolit.fr/observations/observation-3bde59e7-c4ad-4bda-a504-52dd399f2be6/,Janthina janthina,Janthine commune,,https://biolit.fr/wp-content/uploads/2023/07/100517_echouage_BainsMilitaires_CDMM_CB_basse_def (15).JPG,,TRUE, +N1,28506,sortie-3bde59e7-c4ad-4bda-a504-52dd399f2be6,https://biolit.fr/sorties/sortie-3bde59e7-c4ad-4bda-a504-52dd399f2be6/,Centre de Découverte Mer et Montagne,,05/10/2017,8.0:15,8.0:35,43.692010000000,7.290363000000,,plage des Bains militaires,28022,observation-3bde59e7-c4ad-4bda-a504-52dd399f2be6-2,https://biolit.fr/observations/observation-3bde59e7-c4ad-4bda-a504-52dd399f2be6-2/,Janthina janthina,Janthine commune,,https://biolit.fr/wp-content/uploads/2023/07/100517_echouage_BainsMilitaires_CDMM_CB_basse_def (1).JPG,,TRUE, +N1,28507,sortie-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e,https://biolit.fr/sorties/sortie-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e/,Marine,,4/26/2017 0:00,14.0000000,14.0:25,43.154373000000,6.481809000000,,Plage du Domaine du Rayol,28024,observation-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e,https://biolit.fr/observations/observation-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_2280-rotated.jpg,,TRUE, +N1,28507,sortie-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e,https://biolit.fr/sorties/sortie-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e/,Marine,,4/26/2017 0:00,14.0000000,14.0:25,43.154373000000,6.481809000000,,Plage du Domaine du Rayol,28026,observation-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e-2,https://biolit.fr/observations/observation-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_2283.JPG,,TRUE, +N1,28507,sortie-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e,https://biolit.fr/sorties/sortie-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e/,Marine,,4/26/2017 0:00,14.0000000,14.0:25,43.154373000000,6.481809000000,,Plage du Domaine du Rayol,28028,observation-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e-3,https://biolit.fr/observations/observation-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e-3/,Janthina janthina,Janthine commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2286-rotated.jpg,,TRUE, +N1,28507,sortie-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e,https://biolit.fr/sorties/sortie-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e/,Marine,,4/26/2017 0:00,14.0000000,14.0:25,43.154373000000,6.481809000000,,Plage du Domaine du Rayol,28030,observation-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e-4,https://biolit.fr/observations/observation-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e-4/,Janthina janthina,Janthine commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2288-rotated.jpg,,TRUE, +N1,28507,sortie-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e,https://biolit.fr/sorties/sortie-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e/,Marine,,4/26/2017 0:00,14.0000000,14.0:25,43.154373000000,6.481809000000,,Plage du Domaine du Rayol,28032,observation-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e-5,https://biolit.fr/observations/observation-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2289-rotated.jpg,,FALSE, +N1,28507,sortie-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e,https://biolit.fr/sorties/sortie-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e/,Marine,,4/26/2017 0:00,14.0000000,14.0:25,43.154373000000,6.481809000000,,Plage du Domaine du Rayol,28034,observation-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e-6,https://biolit.fr/observations/observation-9994ec45-fd9d-4c3c-95a8-d061ba1acd4e-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2290-rotated.jpg,,FALSE, +N1,28508,sortie-df42e089-3ac1-45c1-b20d-d9b620c67539,https://biolit.fr/sorties/sortie-df42e089-3ac1-45c1-b20d-d9b620c67539/,Audrey,,3/15/2017 0:00,14.0000000,15.0000000,47.839294000000,-4.346655000000,,Plage de la Torche,28036,observation-df42e089-3ac1-45c1-b20d-d9b620c67539,https://biolit.fr/observations/observation-df42e089-3ac1-45c1-b20d-d9b620c67539/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Saison_Mer_Velelle1.jpg,,TRUE, +N1,28508,sortie-df42e089-3ac1-45c1-b20d-d9b620c67539,https://biolit.fr/sorties/sortie-df42e089-3ac1-45c1-b20d-d9b620c67539/,Audrey,,3/15/2017 0:00,14.0000000,15.0000000,47.839294000000,-4.346655000000,,Plage de la Torche,28038,observation-df42e089-3ac1-45c1-b20d-d9b620c67539-2,https://biolit.fr/observations/observation-df42e089-3ac1-45c1-b20d-d9b620c67539-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Saison_Mer_Velelle2.jpg,,TRUE, +N1,28508,sortie-df42e089-3ac1-45c1-b20d-d9b620c67539,https://biolit.fr/sorties/sortie-df42e089-3ac1-45c1-b20d-d9b620c67539/,Audrey,,3/15/2017 0:00,14.0000000,15.0000000,47.839294000000,-4.346655000000,,Plage de la Torche,28040,observation-df42e089-3ac1-45c1-b20d-d9b620c67539-3,https://biolit.fr/observations/observation-df42e089-3ac1-45c1-b20d-d9b620c67539-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Saison_Mer_Velelle3.jpg,,TRUE, +N1,28509,sortie-ab7fabab-e6e1-4920-ae14-09f62d3ee7dc,https://biolit.fr/sorties/sortie-ab7fabab-e6e1-4920-ae14-09f62d3ee7dc/,Audrey,,3/15/2017 0:00,14.0000000,15.0000000,47.838181000000,-4.346856000000,,Plage de la Torche,28042,observation-ab7fabab-e6e1-4920-ae14-09f62d3ee7dc,https://biolit.fr/observations/observation-ab7fabab-e6e1-4920-ae14-09f62d3ee7dc/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Saison_Mer_Os_Seiche1.jpg,,TRUE, +N1,28509,sortie-ab7fabab-e6e1-4920-ae14-09f62d3ee7dc,https://biolit.fr/sorties/sortie-ab7fabab-e6e1-4920-ae14-09f62d3ee7dc/,Audrey,,3/15/2017 0:00,14.0000000,15.0000000,47.838181000000,-4.346856000000,,Plage de la Torche,28044,observation-ab7fabab-e6e1-4920-ae14-09f62d3ee7dc-2,https://biolit.fr/observations/observation-ab7fabab-e6e1-4920-ae14-09f62d3ee7dc-2/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Saison_Mer_Os_Seiche2.jpg,,TRUE, +N1,28509,sortie-ab7fabab-e6e1-4920-ae14-09f62d3ee7dc,https://biolit.fr/sorties/sortie-ab7fabab-e6e1-4920-ae14-09f62d3ee7dc/,Audrey,,3/15/2017 0:00,14.0000000,15.0000000,47.838181000000,-4.346856000000,,Plage de la Torche,28046,observation-ab7fabab-e6e1-4920-ae14-09f62d3ee7dc-3,https://biolit.fr/observations/observation-ab7fabab-e6e1-4920-ae14-09f62d3ee7dc-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Saison_Mer_Os_Seiche3.jpg,,FALSE, +N1,28510,sortie-17692feb-2eb1-410c-8d29-4f999c41600e,https://biolit.fr/sorties/sortie-17692feb-2eb1-410c-8d29-4f999c41600e/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236104000000,5.360040000000,,plage de la bonne brise,28048,observation-17692feb-2eb1-410c-8d29-4f999c41600e,https://biolit.fr/observations/observation-17692feb-2eb1-410c-8d29-4f999c41600e/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1021-scaled.jpg,,FALSE, +N1,28511,sortie-97aee746-7771-4655-8d56-fdba0b8bf509,https://biolit.fr/sorties/sortie-97aee746-7771-4655-8d56-fdba0b8bf509/,NVanzu,,03/02/2017,14.0:45,16.0000000,43.23311100000,5.356151000000,,Plage de la bonne brise,28050,observation-97aee746-7771-4655-8d56-fdba0b8bf509,https://biolit.fr/observations/observation-97aee746-7771-4655-8d56-fdba0b8bf509/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_0198-scaled.jpg,,TRUE, +N1,28511,sortie-97aee746-7771-4655-8d56-fdba0b8bf509,https://biolit.fr/sorties/sortie-97aee746-7771-4655-8d56-fdba0b8bf509/,NVanzu,,03/02/2017,14.0:45,16.0000000,43.23311100000,5.356151000000,,Plage de la bonne brise,28052,observation-97aee746-7771-4655-8d56-fdba0b8bf509-2,https://biolit.fr/observations/observation-97aee746-7771-4655-8d56-fdba0b8bf509-2/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_0199-scaled.jpg,,TRUE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28054,observation-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0196-scaled.jpg,,FALSE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28056,observation-f9064840-d923-46dd-920e-16ae5eb8793f-2,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-2/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0198-scaled.jpg,,TRUE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28058,observation-f9064840-d923-46dd-920e-16ae5eb8793f-3,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/scrobiculaire bon format.jpg,,FALSE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28060,observation-f9064840-d923-46dd-920e-16ae5eb8793f-4,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-4/,Ensis magnus,Couteau arqué,,https://biolit.fr/wp-content/uploads/2023/07/P1010006_0-scaled.jpg,,TRUE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28062,observation-f9064840-d923-46dd-920e-16ae5eb8793f-5,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010005-scaled.jpg,,FALSE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28064,observation-f9064840-d923-46dd-920e-16ae5eb8793f-6,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-6/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1010013-scaled.jpg,,TRUE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28066,observation-f9064840-d923-46dd-920e-16ae5eb8793f-7,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010015-scaled.jpg,,FALSE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28068,observation-f9064840-d923-46dd-920e-16ae5eb8793f-8,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010017-scaled.jpg,,FALSE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28070,observation-f9064840-d923-46dd-920e-16ae5eb8793f-9,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010023-scaled.jpg,,FALSE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28072,observation-f9064840-d923-46dd-920e-16ae5eb8793f-10,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010021-scaled.jpg,,FALSE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28074,observation-f9064840-d923-46dd-920e-16ae5eb8793f-11,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010024-scaled.jpg,,FALSE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28076,observation-f9064840-d923-46dd-920e-16ae5eb8793f-12,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010025-scaled.jpg,,FALSE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28078,observation-f9064840-d923-46dd-920e-16ae5eb8793f-13,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010027_0-scaled.jpg,,FALSE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28080,observation-f9064840-d923-46dd-920e-16ae5eb8793f-14,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010028-scaled.jpg,,FALSE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28082,observation-f9064840-d923-46dd-920e-16ae5eb8793f-15,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010029-scaled.jpg,,FALSE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28084,observation-f9064840-d923-46dd-920e-16ae5eb8793f-16,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-16/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1010031-scaled.jpg,,TRUE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28086,observation-f9064840-d923-46dd-920e-16ae5eb8793f-17,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010033-scaled.jpg,,FALSE, +N1,28512,sortie-f9064840-d923-46dd-920e-16ae5eb8793f,https://biolit.fr/sorties/sortie-f9064840-d923-46dd-920e-16ae5eb8793f/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,16.0000000,50.226968000000,1.610929000000,,AIRE MARINE EDUCATIVE LE CROTOY ,28088,observation-f9064840-d923-46dd-920e-16ae5eb8793f-18,https://biolit.fr/observations/observation-f9064840-d923-46dd-920e-16ae5eb8793f-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010034-scaled.jpg,,FALSE, +N1,28513,sortie-fa9a63ea-0b16-47f5-823e-cafeda53e001,https://biolit.fr/sorties/sortie-fa9a63ea-0b16-47f5-823e-cafeda53e001/,Marine,,2/14/2017 0:00,15.0000000,15.0:45,43.290708000000,5.355515000000,,Plage des Catalans,28090,observation-fa9a63ea-0b16-47f5-823e-cafeda53e001,https://biolit.fr/observations/observation-fa9a63ea-0b16-47f5-823e-cafeda53e001/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2181-rotated.jpg,,FALSE, +N1,28513,sortie-fa9a63ea-0b16-47f5-823e-cafeda53e001,https://biolit.fr/sorties/sortie-fa9a63ea-0b16-47f5-823e-cafeda53e001/,Marine,,2/14/2017 0:00,15.0000000,15.0:45,43.290708000000,5.355515000000,,Plage des Catalans,28092,observation-fa9a63ea-0b16-47f5-823e-cafeda53e001-2,https://biolit.fr/observations/observation-fa9a63ea-0b16-47f5-823e-cafeda53e001-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2188-rotated.jpg,,FALSE, +N1,28513,sortie-fa9a63ea-0b16-47f5-823e-cafeda53e001,https://biolit.fr/sorties/sortie-fa9a63ea-0b16-47f5-823e-cafeda53e001/,Marine,,2/14/2017 0:00,15.0000000,15.0:45,43.290708000000,5.355515000000,,Plage des Catalans,28094,observation-fa9a63ea-0b16-47f5-823e-cafeda53e001-3,https://biolit.fr/observations/observation-fa9a63ea-0b16-47f5-823e-cafeda53e001-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2183-rotated.jpg,,FALSE, +N1,28514,sortie-01627541-210a-4c67-b78f-fa2a75efece6,https://biolit.fr/sorties/sortie-01627541-210a-4c67-b78f-fa2a75efece6/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,15.0000000,50.223794000000,1.612743000000,,AIRE MARINE EDUCATIVE LE CROTOY,28096,observation-01627541-210a-4c67-b78f-fa2a75efece6,https://biolit.fr/observations/observation-01627541-210a-4c67-b78f-fa2a75efece6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040688-scaled.jpg,,FALSE, +N1,28515,sortie-08da9fc2-b95e-47da-aa74-6475482db054,https://biolit.fr/sorties/sortie-08da9fc2-b95e-47da-aa74-6475482db054/,Ecole Jules Verne Le Crotoy,,02/09/2017,14.0000000,15.0000000,50.223935000000,1.612742000000,,AIRE MARINE EDUCATIVE LE CROTOY,28098,observation-08da9fc2-b95e-47da-aa74-6475482db054,https://biolit.fr/observations/observation-08da9fc2-b95e-47da-aa74-6475482db054/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010006-scaled.jpg,,FALSE, +N1,28516,sortie-4d155011-568d-49cc-ba03-3a25c005445a,https://biolit.fr/sorties/sortie-4d155011-568d-49cc-ba03-3a25c005445a/,sofia loubna hanane,,1/24/2017 0:00,13.0000000,17.0000000,43.333399000000,5.197198000000,,La Redonne,28100,observation-4d155011-568d-49cc-ba03-3a25c005445a,https://biolit.fr/observations/observation-4d155011-568d-49cc-ba03-3a25c005445a/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/photo 4_6-scaled.jpg,,TRUE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28102,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170201_144305.jpg,,FALSE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28104,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-2,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170201_144319.jpg,,FALSE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28106,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-3,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170201_144335-rotated.jpg,,FALSE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28108,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-4,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-4/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/20170201_144423-rotated.jpg,,TRUE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28110,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-5,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170201_144402-rotated.jpg,,FALSE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28112,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-6,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-6/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/20170201_144348-rotated.jpg,,TRUE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28114,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-7,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170201_144519-rotated.jpg,,FALSE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28116,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-8,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170201_144536-rotated.jpg,,FALSE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28118,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-9,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170201_144608-rotated.jpg,,FALSE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28120,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-10,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-10/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/20170201_144621-rotated.jpg,,TRUE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28122,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-11,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-11/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/20170201_144637-rotated.jpg,,TRUE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28124,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-12,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-12/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/2023/07/20170201_144807-rotated.jpg,,TRUE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28126,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-13,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170201_144854-rotated.jpg,,FALSE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28128,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-14,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170201_145149-rotated.jpg,,FALSE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28130,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-15,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-15/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20170201_145420-rotated.jpg,,TRUE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28132,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-16,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170201_145238-rotated.jpg,,FALSE, +N1,28517,sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3,https://biolit.fr/sorties/sortie-0be2a229-12c4-4eb2-a270-9b12af5a22d3/,LPO Occitanie (délégation Hérault),,02/01/2017,13.0:55,14.0:15,43.393292000000,3.668057000000,,"sète, plage de la corniche",28134,observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-17,https://biolit.fr/observations/observation-0be2a229-12c4-4eb2-a270-9b12af5a22d3-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170201_145133-rotated.jpg,,FALSE, +N1,28518,sortie-01af170a-86c6-409a-862f-b6b9ddd6e8c2,https://biolit.fr/sorties/sortie-01af170a-86c6-409a-862f-b6b9ddd6e8c2/,Ines,,1/16/2017 0:00,10.000005,11.0000000,43.273260000000,5.361837000000,,le prophete ,28136,observation-01af170a-86c6-409a-862f-b6b9ddd6e8c2,https://biolit.fr/observations/observation-01af170a-86c6-409a-862f-b6b9ddd6e8c2/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0008-scaled.jpg,,TRUE, +N1,28518,sortie-01af170a-86c6-409a-862f-b6b9ddd6e8c2,https://biolit.fr/sorties/sortie-01af170a-86c6-409a-862f-b6b9ddd6e8c2/,Ines,,1/16/2017 0:00,10.000005,11.0000000,43.273260000000,5.361837000000,,le prophete ,28138,observation-01af170a-86c6-409a-862f-b6b9ddd6e8c2-2,https://biolit.fr/observations/observation-01af170a-86c6-409a-862f-b6b9ddd6e8c2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0009-scaled.jpg,,FALSE, +N1,28519,sortie-489a912f-94e3-47a1-8287-91f1854d26dc,https://biolit.fr/sorties/sortie-489a912f-94e3-47a1-8287-91f1854d26dc/,corinne vasseur,,1/27/2017 0:00,16.0000000,18.0000000,50.224434000000,1.611690000000,,Aire marine éducative du Crotoy,28140,observation-489a912f-94e3-47a1-8287-91f1854d26dc,https://biolit.fr/observations/observation-489a912f-94e3-47a1-8287-91f1854d26dc/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/IMGP5178.JPG,,TRUE, +N1,28519,sortie-489a912f-94e3-47a1-8287-91f1854d26dc,https://biolit.fr/sorties/sortie-489a912f-94e3-47a1-8287-91f1854d26dc/,corinne vasseur,,1/27/2017 0:00,16.0000000,18.0000000,50.224434000000,1.611690000000,,Aire marine éducative du Crotoy,28142,observation-489a912f-94e3-47a1-8287-91f1854d26dc-2,https://biolit.fr/observations/observation-489a912f-94e3-47a1-8287-91f1854d26dc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP5174.JPG,,FALSE, +N1,28519,sortie-489a912f-94e3-47a1-8287-91f1854d26dc,https://biolit.fr/sorties/sortie-489a912f-94e3-47a1-8287-91f1854d26dc/,corinne vasseur,,1/27/2017 0:00,16.0000000,18.0000000,50.224434000000,1.611690000000,,Aire marine éducative du Crotoy,28144,observation-489a912f-94e3-47a1-8287-91f1854d26dc-3,https://biolit.fr/observations/observation-489a912f-94e3-47a1-8287-91f1854d26dc-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP5220.JPG,,FALSE, +N1,28520,sortie-210542b4-e172-48a3-92ec-693b03050eca,https://biolit.fr/sorties/sortie-210542b4-e172-48a3-92ec-693b03050eca/,Audrey,,12/27/2016 0:00,14.0000000,15.0000000,49.567817000000,-1.843746000000,,Plage de Siouville-Hague,28146,observation-210542b4-e172-48a3-92ec-693b03050eca,https://biolit.fr/observations/observation-210542b4-e172-48a3-92ec-693b03050eca/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20161227_Siouville (18)-scaled.jpg,,TRUE, +N1,28520,sortie-210542b4-e172-48a3-92ec-693b03050eca,https://biolit.fr/sorties/sortie-210542b4-e172-48a3-92ec-693b03050eca/,Audrey,,12/27/2016 0:00,14.0000000,15.0000000,49.567817000000,-1.843746000000,,Plage de Siouville-Hague,28148,observation-210542b4-e172-48a3-92ec-693b03050eca-2,https://biolit.fr/observations/observation-210542b4-e172-48a3-92ec-693b03050eca-2/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20161227_Siouville (19)-scaled.jpg,,TRUE, +N1,28520,sortie-210542b4-e172-48a3-92ec-693b03050eca,https://biolit.fr/sorties/sortie-210542b4-e172-48a3-92ec-693b03050eca/,Audrey,,12/27/2016 0:00,14.0000000,15.0000000,49.567817000000,-1.843746000000,,Plage de Siouville-Hague,28150,observation-210542b4-e172-48a3-92ec-693b03050eca-3,https://biolit.fr/observations/observation-210542b4-e172-48a3-92ec-693b03050eca-3/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20161227_Siouville (20)-scaled.jpg,,TRUE, +N1,28520,sortie-210542b4-e172-48a3-92ec-693b03050eca,https://biolit.fr/sorties/sortie-210542b4-e172-48a3-92ec-693b03050eca/,Audrey,,12/27/2016 0:00,14.0000000,15.0000000,49.567817000000,-1.843746000000,,Plage de Siouville-Hague,28152,observation-210542b4-e172-48a3-92ec-693b03050eca-4,https://biolit.fr/observations/observation-210542b4-e172-48a3-92ec-693b03050eca-4/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20161227_Siouville (21)-scaled.jpg,,TRUE, +N1,28521,sortie-62eb00b8-e925-4913-824f-4b658b9b1689,https://biolit.fr/sorties/sortie-62eb00b8-e925-4913-824f-4b658b9b1689/,Audrey,,12/27/2016 0:00,14.0000000,15.0000000,49.56787300000,-1.843735000000,,Plage de Siouville-Hague,28154,observation-62eb00b8-e925-4913-824f-4b658b9b1689,https://biolit.fr/observations/observation-62eb00b8-e925-4913-824f-4b658b9b1689/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20161227_Siouville (22)-scaled.jpg,,TRUE, +N1,28521,sortie-62eb00b8-e925-4913-824f-4b658b9b1689,https://biolit.fr/sorties/sortie-62eb00b8-e925-4913-824f-4b658b9b1689/,Audrey,,12/27/2016 0:00,14.0000000,15.0000000,49.56787300000,-1.843735000000,,Plage de Siouville-Hague,28156,observation-62eb00b8-e925-4913-824f-4b658b9b1689-2,https://biolit.fr/observations/observation-62eb00b8-e925-4913-824f-4b658b9b1689-2/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20161227_Siouville (23)-scaled.jpg,,TRUE, +N1,28522,sortie-f6116023-c162-4e5f-8fd3-c23c59a59409,https://biolit.fr/sorties/sortie-f6116023-c162-4e5f-8fd3-c23c59a59409/,Audrey,,12/27/2016 0:00,14.0000000,15.0000000,49.568694000000,-1.843488000000,,Plage de Siouville-Hague,28158,observation-f6116023-c162-4e5f-8fd3-c23c59a59409,https://biolit.fr/observations/observation-f6116023-c162-4e5f-8fd3-c23c59a59409/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161227_Siouville (10)-scaled.jpg,,FALSE, +N1,28522,sortie-f6116023-c162-4e5f-8fd3-c23c59a59409,https://biolit.fr/sorties/sortie-f6116023-c162-4e5f-8fd3-c23c59a59409/,Audrey,,12/27/2016 0:00,14.0000000,15.0000000,49.568694000000,-1.843488000000,,Plage de Siouville-Hague,28160,observation-f6116023-c162-4e5f-8fd3-c23c59a59409-2,https://biolit.fr/observations/observation-f6116023-c162-4e5f-8fd3-c23c59a59409-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161227_Siouville (13)-scaled.jpg,,FALSE, +N1,28522,sortie-f6116023-c162-4e5f-8fd3-c23c59a59409,https://biolit.fr/sorties/sortie-f6116023-c162-4e5f-8fd3-c23c59a59409/,Audrey,,12/27/2016 0:00,14.0000000,15.0000000,49.568694000000,-1.843488000000,,Plage de Siouville-Hague,28162,observation-f6116023-c162-4e5f-8fd3-c23c59a59409-3,https://biolit.fr/observations/observation-f6116023-c162-4e5f-8fd3-c23c59a59409-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161227_Siouville (12)-scaled.jpg,,FALSE, +N1,28523,sortie-25b116ce-6f1f-4d97-9c80-66826dd8b2c5,https://biolit.fr/sorties/sortie-25b116ce-6f1f-4d97-9c80-66826dd8b2c5/,Audrey,,12/27/2016 0:00,14.0000000,15.0000000,49.569231000000,-1.843311000000,,Plage de Siouville-Hague,28164,observation-25b116ce-6f1f-4d97-9c80-66826dd8b2c5,https://biolit.fr/observations/observation-25b116ce-6f1f-4d97-9c80-66826dd8b2c5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161227_Siouville (9)-scaled.jpg,,FALSE, +N1,28523,sortie-25b116ce-6f1f-4d97-9c80-66826dd8b2c5,https://biolit.fr/sorties/sortie-25b116ce-6f1f-4d97-9c80-66826dd8b2c5/,Audrey,,12/27/2016 0:00,14.0000000,15.0000000,49.569231000000,-1.843311000000,,Plage de Siouville-Hague,28166,observation-25b116ce-6f1f-4d97-9c80-66826dd8b2c5-2,https://biolit.fr/observations/observation-25b116ce-6f1f-4d97-9c80-66826dd8b2c5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161227_Siouville (1)-scaled.jpg,,FALSE, +N1,28523,sortie-25b116ce-6f1f-4d97-9c80-66826dd8b2c5,https://biolit.fr/sorties/sortie-25b116ce-6f1f-4d97-9c80-66826dd8b2c5/,Audrey,,12/27/2016 0:00,14.0000000,15.0000000,49.569231000000,-1.843311000000,,Plage de Siouville-Hague,28168,observation-25b116ce-6f1f-4d97-9c80-66826dd8b2c5-3,https://biolit.fr/observations/observation-25b116ce-6f1f-4d97-9c80-66826dd8b2c5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161227_Siouville (3)-scaled.jpg,,FALSE, +N1,28523,sortie-25b116ce-6f1f-4d97-9c80-66826dd8b2c5,https://biolit.fr/sorties/sortie-25b116ce-6f1f-4d97-9c80-66826dd8b2c5/,Audrey,,12/27/2016 0:00,14.0000000,15.0000000,49.569231000000,-1.843311000000,,Plage de Siouville-Hague,28170,observation-25b116ce-6f1f-4d97-9c80-66826dd8b2c5-4,https://biolit.fr/observations/observation-25b116ce-6f1f-4d97-9c80-66826dd8b2c5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161227_Siouville (4)-scaled.jpg,,FALSE, +N1,28524,sortie-fa72aa60-5a8e-47a3-8ce2-13a7a7b47b2c,https://biolit.fr/sorties/sortie-fa72aa60-5a8e-47a3-8ce2-13a7a7b47b2c/,Marine,,9/22/2016 0:00,9.0000000,11.0000000,43.150603000000,6.434163000000,,Plage de Cavalière,28172,observation-fa72aa60-5a8e-47a3-8ce2-13a7a7b47b2c,https://biolit.fr/observations/observation-fa72aa60-5a8e-47a3-8ce2-13a7a7b47b2c/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1737-rotated.jpg,,FALSE, +N1,28524,sortie-fa72aa60-5a8e-47a3-8ce2-13a7a7b47b2c,https://biolit.fr/sorties/sortie-fa72aa60-5a8e-47a3-8ce2-13a7a7b47b2c/,Marine,,9/22/2016 0:00,9.0000000,11.0000000,43.150603000000,6.434163000000,,Plage de Cavalière,28174,observation-fa72aa60-5a8e-47a3-8ce2-13a7a7b47b2c-2,https://biolit.fr/observations/observation-fa72aa60-5a8e-47a3-8ce2-13a7a7b47b2c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1738-rotated.jpg,,FALSE, +N1,28525,sortie-c650b905-d53d-4c69-9a0f-c7bdbf90dc2a,https://biolit.fr/sorties/sortie-c650b905-d53d-4c69-9a0f-c7bdbf90dc2a/,Marine,,9/17/2016 0:00,9.0000000,11.0000000,43.236143000000,5.359970000000,,Plage de bonne brise,28176,observation-c650b905-d53d-4c69-9a0f-c7bdbf90dc2a,https://biolit.fr/observations/observation-c650b905-d53d-4c69-9a0f-c7bdbf90dc2a/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1728.jpg,,TRUE, +N1,28525,sortie-c650b905-d53d-4c69-9a0f-c7bdbf90dc2a,https://biolit.fr/sorties/sortie-c650b905-d53d-4c69-9a0f-c7bdbf90dc2a/,Marine,,9/17/2016 0:00,9.0000000,11.0000000,43.236143000000,5.359970000000,,Plage de bonne brise,28177,observation-c650b905-d53d-4c69-9a0f-c7bdbf90dc2a-2,https://biolit.fr/observations/observation-c650b905-d53d-4c69-9a0f-c7bdbf90dc2a-2/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1731.JPG,,TRUE, +N1,28526,sortie-6f457fd4-cdab-4cbc-81fb-124486e1f96b,https://biolit.fr/sorties/sortie-6f457fd4-cdab-4cbc-81fb-124486e1f96b/,Julie Bee,,9/18/2016 0:00,9.0000000,11.0000000,43.235982000000,5.359908000000,,Plage de la Bonne Brise ,28179,observation-6f457fd4-cdab-4cbc-81fb-124486e1f96b,https://biolit.fr/observations/observation-6f457fd4-cdab-4cbc-81fb-124486e1f96b/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/PICT0471-scaled.jpg,,TRUE, +N1,28527,sortie-74cf35eb-fad3-4f15-b0f7-0f21a0207441,https://biolit.fr/sorties/sortie-74cf35eb-fad3-4f15-b0f7-0f21a0207441/,KatSea,,9/15/2016 0:00,16.0000000,17.0000000,50.62710400000,1.575298000000,,hardelot,28181,observation-74cf35eb-fad3-4f15-b0f7-0f21a0207441,https://biolit.fr/observations/observation-74cf35eb-fad3-4f15-b0f7-0f21a0207441/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0566_0-scaled.jpg,,FALSE, +N1,28528,sortie-8509dfdf-d88a-490b-b507-34d08ef62025,https://biolit.fr/sorties/sortie-8509dfdf-d88a-490b-b507-34d08ef62025/,tridimeg,,4/22/2015 0:00,16.0000000,17.0:45,48.625561000000,-2.031391000000,,Pointe de la Vicomté,28183,observation-8509dfdf-d88a-490b-b507-34d08ef62025,https://biolit.fr/observations/observation-8509dfdf-d88a-490b-b507-34d08ef62025/,Loligo spp.,Ponte de Calmar,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20150422_172909.jpg,,TRUE, +N1,28529,sortie-910288a4-d28b-4862-ac70-b050f109bf12,https://biolit.fr/sorties/sortie-910288a4-d28b-4862-ac70-b050f109bf12/,Marine,,07/05/2016,9.0000000,11.0000000,50.829637000000,1.589793000000,,Plage du Noirda,28185,observation-910288a4-d28b-4862-ac70-b050f109bf12,https://biolit.fr/observations/observation-910288a4-d28b-4862-ac70-b050f109bf12/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1483-scaled.jpg,,TRUE, +N1,28530,sortie-9eae2f7b-9d60-4e3e-90aa-742d2cc32940,https://biolit.fr/sorties/sortie-9eae2f7b-9d60-4e3e-90aa-742d2cc32940/,Marine,,07/05/2016,9.0000000,11.0000000,50.82955900000,1.58980600000,,Plage du Noirda,28187,observation-9eae2f7b-9d60-4e3e-90aa-742d2cc32940,https://biolit.fr/observations/observation-9eae2f7b-9d60-4e3e-90aa-742d2cc32940/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1482-scaled.jpg,,FALSE, +N1,28531,sortie-06716f37-90c7-4535-9e7f-72b34b9eac32,https://biolit.fr/sorties/sortie-06716f37-90c7-4535-9e7f-72b34b9eac32/,Marine,,07/05/2016,9.0000000,11.0000000,50.829563000000,1.589921000000,,Plage du Noirda,28189,observation-06716f37-90c7-4535-9e7f-72b34b9eac32,https://biolit.fr/observations/observation-06716f37-90c7-4535-9e7f-72b34b9eac32/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1481-scaled.jpg,,FALSE, +N1,28532,sortie-39b738bf-b031-492b-ba3d-9e9e4b510051,https://biolit.fr/sorties/sortie-39b738bf-b031-492b-ba3d-9e9e4b510051/,Marine,,07/05/2016,9.0000000,11.0000000,50.829620000000,1.589775000000,,Plage du Noirda,28191,observation-39b738bf-b031-492b-ba3d-9e9e4b510051,https://biolit.fr/observations/observation-39b738bf-b031-492b-ba3d-9e9e4b510051/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1480-scaled.jpg,,TRUE, +N1,28532,sortie-39b738bf-b031-492b-ba3d-9e9e4b510051,https://biolit.fr/sorties/sortie-39b738bf-b031-492b-ba3d-9e9e4b510051/,Marine,,07/05/2016,9.0000000,11.0000000,50.829620000000,1.589775000000,,Plage du Noirda,28193,observation-39b738bf-b031-492b-ba3d-9e9e4b510051-2,https://biolit.fr/observations/observation-39b738bf-b031-492b-ba3d-9e9e4b510051-2/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1445-scaled.jpg,,TRUE, +N1,28533,sortie-870ab12f-6194-42ef-bdd6-757cb0890c9c,https://biolit.fr/sorties/sortie-870ab12f-6194-42ef-bdd6-757cb0890c9c/,Marine,,07/05/2016,9.0000000,11.0000000,50.829433000000,1.589826000000,,Plage du Noirda,28195,observation-870ab12f-6194-42ef-bdd6-757cb0890c9c,https://biolit.fr/observations/observation-870ab12f-6194-42ef-bdd6-757cb0890c9c/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1470.jpg,,FALSE, +N1,28533,sortie-870ab12f-6194-42ef-bdd6-757cb0890c9c,https://biolit.fr/sorties/sortie-870ab12f-6194-42ef-bdd6-757cb0890c9c/,Marine,,07/05/2016,9.0000000,11.0000000,50.829433000000,1.589826000000,,Plage du Noirda,28197,observation-870ab12f-6194-42ef-bdd6-757cb0890c9c-2,https://biolit.fr/observations/observation-870ab12f-6194-42ef-bdd6-757cb0890c9c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1471.jpg,,FALSE, +N1,28534,sortie-7e8b5903-951d-43c0-8d8f-a36265b4115e,https://biolit.fr/sorties/sortie-7e8b5903-951d-43c0-8d8f-a36265b4115e/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829420000000,1.590064000000,,Audresselles,28199,observation-7e8b5903-951d-43c0-8d8f-a36265b4115e,https://biolit.fr/observations/observation-7e8b5903-951d-43c0-8d8f-a36265b4115e/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF9856-scaled.jpg,,FALSE, +N1,28534,sortie-7e8b5903-951d-43c0-8d8f-a36265b4115e,https://biolit.fr/sorties/sortie-7e8b5903-951d-43c0-8d8f-a36265b4115e/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829420000000,1.590064000000,,Audresselles,28201,observation-7e8b5903-951d-43c0-8d8f-a36265b4115e-2,https://biolit.fr/observations/observation-7e8b5903-951d-43c0-8d8f-a36265b4115e-2/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/DSCF9863-scaled.jpg,,TRUE, +N1,28534,sortie-7e8b5903-951d-43c0-8d8f-a36265b4115e,https://biolit.fr/sorties/sortie-7e8b5903-951d-43c0-8d8f-a36265b4115e/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829420000000,1.590064000000,,Audresselles,28203,observation-7e8b5903-951d-43c0-8d8f-a36265b4115e-3,https://biolit.fr/observations/observation-7e8b5903-951d-43c0-8d8f-a36265b4115e-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1100137-scaled.jpg,,TRUE, +N1,28534,sortie-7e8b5903-951d-43c0-8d8f-a36265b4115e,https://biolit.fr/sorties/sortie-7e8b5903-951d-43c0-8d8f-a36265b4115e/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829420000000,1.590064000000,,Audresselles,28205,observation-7e8b5903-951d-43c0-8d8f-a36265b4115e-4,https://biolit.fr/observations/observation-7e8b5903-951d-43c0-8d8f-a36265b4115e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100136-scaled.jpg,,FALSE, +N1,28535,sortie-63facec5-3f37-48b3-ad84-347d0e552ea2,https://biolit.fr/sorties/sortie-63facec5-3f37-48b3-ad84-347d0e552ea2/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829780000000,1.590010000000,,Audreselles,28207,observation-63facec5-3f37-48b3-ad84-347d0e552ea2,https://biolit.fr/observations/observation-63facec5-3f37-48b3-ad84-347d0e552ea2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF9805-scaled.jpg,,FALSE, +N1,28535,sortie-63facec5-3f37-48b3-ad84-347d0e552ea2,https://biolit.fr/sorties/sortie-63facec5-3f37-48b3-ad84-347d0e552ea2/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829780000000,1.590010000000,,Audreselles,28209,observation-63facec5-3f37-48b3-ad84-347d0e552ea2-2,https://biolit.fr/observations/observation-63facec5-3f37-48b3-ad84-347d0e552ea2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF9847-scaled.jpg,,FALSE, +N1,28535,sortie-63facec5-3f37-48b3-ad84-347d0e552ea2,https://biolit.fr/sorties/sortie-63facec5-3f37-48b3-ad84-347d0e552ea2/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829780000000,1.590010000000,,Audreselles,28211,observation-63facec5-3f37-48b3-ad84-347d0e552ea2-3,https://biolit.fr/observations/observation-63facec5-3f37-48b3-ad84-347d0e552ea2-3/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/DSCF9848-scaled.jpg,,TRUE, +N1,28535,sortie-63facec5-3f37-48b3-ad84-347d0e552ea2,https://biolit.fr/sorties/sortie-63facec5-3f37-48b3-ad84-347d0e552ea2/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829780000000,1.590010000000,,Audreselles,28213,observation-63facec5-3f37-48b3-ad84-347d0e552ea2-4,https://biolit.fr/observations/observation-63facec5-3f37-48b3-ad84-347d0e552ea2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF9854-scaled.jpg,,FALSE, +N1,28535,sortie-63facec5-3f37-48b3-ad84-347d0e552ea2,https://biolit.fr/sorties/sortie-63facec5-3f37-48b3-ad84-347d0e552ea2/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829780000000,1.590010000000,,Audreselles,28215,observation-63facec5-3f37-48b3-ad84-347d0e552ea2-5,https://biolit.fr/observations/observation-63facec5-3f37-48b3-ad84-347d0e552ea2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF9843-scaled.jpg,,FALSE, +N1,28535,sortie-63facec5-3f37-48b3-ad84-347d0e552ea2,https://biolit.fr/sorties/sortie-63facec5-3f37-48b3-ad84-347d0e552ea2/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829780000000,1.590010000000,,Audreselles,28217,observation-63facec5-3f37-48b3-ad84-347d0e552ea2-6,https://biolit.fr/observations/observation-63facec5-3f37-48b3-ad84-347d0e552ea2-6/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/DSCF9850-scaled.jpg,,TRUE, +N1,28535,sortie-63facec5-3f37-48b3-ad84-347d0e552ea2,https://biolit.fr/sorties/sortie-63facec5-3f37-48b3-ad84-347d0e552ea2/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829780000000,1.590010000000,,Audreselles,28219,observation-63facec5-3f37-48b3-ad84-347d0e552ea2-7,https://biolit.fr/observations/observation-63facec5-3f37-48b3-ad84-347d0e552ea2-7/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/DSCF9864-scaled.jpg,,TRUE, +N1,28535,sortie-63facec5-3f37-48b3-ad84-347d0e552ea2,https://biolit.fr/sorties/sortie-63facec5-3f37-48b3-ad84-347d0e552ea2/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829780000000,1.590010000000,,Audreselles,28221,observation-63facec5-3f37-48b3-ad84-347d0e552ea2-8,https://biolit.fr/observations/observation-63facec5-3f37-48b3-ad84-347d0e552ea2-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF9837-scaled.jpg,,FALSE, +N1,28535,sortie-63facec5-3f37-48b3-ad84-347d0e552ea2,https://biolit.fr/sorties/sortie-63facec5-3f37-48b3-ad84-347d0e552ea2/,NAUSICAA,,07/05/2016,9.0000000,11.0000000,50.829780000000,1.590010000000,,Audreselles,28223,observation-63facec5-3f37-48b3-ad84-347d0e552ea2-9,https://biolit.fr/observations/observation-63facec5-3f37-48b3-ad84-347d0e552ea2-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF9857-scaled.jpg,,FALSE, +N1,28536,sortie-3b9326a0-a077-486e-a3de-faf8c5aba7d1,https://biolit.fr/sorties/sortie-3b9326a0-a077-486e-a3de-faf8c5aba7d1/,AIEJE,,5/30/2016 0:00,10.0:25,11.0:25,43.33392900000,5.197718000000,,"plage des pebraires, ensues la redonne",28225,observation-3b9326a0-a077-486e-a3de-faf8c5aba7d1,https://biolit.fr/observations/observation-3b9326a0-a077-486e-a3de-faf8c5aba7d1/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_3090.JPG,,TRUE, +N1,28537,sortie-b2002dee-3c7c-4718-81b9-7057b4739499,https://biolit.fr/sorties/sortie-b2002dee-3c7c-4718-81b9-7057b4739499/,Audrey,,5/22/2016 0:00,10.0000000,17.0000000,43.450539000000,6.919583000000,,Pointe de l'Observatoire,28227,observation-b2002dee-3c7c-4718-81b9-7057b4739499,https://biolit.fr/observations/observation-b2002dee-3c7c-4718-81b9-7057b4739499/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/20160522_Pelagia_CapRoux_5.jpg,,TRUE, +N1,28537,sortie-b2002dee-3c7c-4718-81b9-7057b4739499,https://biolit.fr/sorties/sortie-b2002dee-3c7c-4718-81b9-7057b4739499/,Audrey,,5/22/2016 0:00,10.0000000,17.0000000,43.450539000000,6.919583000000,,Pointe de l'Observatoire,28229,observation-b2002dee-3c7c-4718-81b9-7057b4739499-2,https://biolit.fr/observations/observation-b2002dee-3c7c-4718-81b9-7057b4739499-2/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/20160522_Pelagia_CapRoux_4.jpg,,TRUE, +N1,28537,sortie-b2002dee-3c7c-4718-81b9-7057b4739499,https://biolit.fr/sorties/sortie-b2002dee-3c7c-4718-81b9-7057b4739499/,Audrey,,5/22/2016 0:00,10.0000000,17.0000000,43.450539000000,6.919583000000,,Pointe de l'Observatoire,28231,observation-b2002dee-3c7c-4718-81b9-7057b4739499-3,https://biolit.fr/observations/observation-b2002dee-3c7c-4718-81b9-7057b4739499-3/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/20160522_Pelagia_CapRoux_1.jpg,,TRUE, +N1,28538,sortie-6074decb-0113-4500-868c-9aec5068f999,https://biolit.fr/sorties/sortie-6074decb-0113-4500-868c-9aec5068f999/,Audrey,,5/22/2016 0:00,10.0000000,17.0000000,43.450554000000,6.919567000000,,Pointe de l'Observatoire,28233,observation-6074decb-0113-4500-868c-9aec5068f999,https://biolit.fr/observations/observation-6074decb-0113-4500-868c-9aec5068f999/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20160522_SabotDeVenus_CapRoux_1.jpg,,TRUE, +N1,28538,sortie-6074decb-0113-4500-868c-9aec5068f999,https://biolit.fr/sorties/sortie-6074decb-0113-4500-868c-9aec5068f999/,Audrey,,5/22/2016 0:00,10.0000000,17.0000000,43.450554000000,6.919567000000,,Pointe de l'Observatoire,28235,observation-6074decb-0113-4500-868c-9aec5068f999-2,https://biolit.fr/observations/observation-6074decb-0113-4500-868c-9aec5068f999-2/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20160522_SabotDeVenus_CapRoux_3.jpg,,TRUE, +N1,28539,sortie-739a12f6-db27-487c-924b-cca878dca8f7,https://biolit.fr/sorties/sortie-739a12f6-db27-487c-924b-cca878dca8f7/,Marine,,5/17/2016 0:00,12.0000000,14.0000000,43.214910000000,5.342997000000,,Plage de la Maronaise,28237,observation-739a12f6-db27-487c-924b-cca878dca8f7,https://biolit.fr/observations/observation-739a12f6-db27-487c-924b-cca878dca8f7/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1362-scaled.jpg,,TRUE, +N1,28539,sortie-739a12f6-db27-487c-924b-cca878dca8f7,https://biolit.fr/sorties/sortie-739a12f6-db27-487c-924b-cca878dca8f7/,Marine,,5/17/2016 0:00,12.0000000,14.0000000,43.214910000000,5.342997000000,,Plage de la Maronaise,28239,observation-739a12f6-db27-487c-924b-cca878dca8f7-2,https://biolit.fr/observations/observation-739a12f6-db27-487c-924b-cca878dca8f7-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1363-scaled.jpg,,TRUE, +N1,28540,sortie-d089f8e9-17f3-4694-b121-304f86ae4572,https://biolit.fr/sorties/sortie-d089f8e9-17f3-4694-b121-304f86ae4572/,Marine,,5/17/2016 0:00,12.0000000,14.0000000,43.214859000000,5.342970000000,,Plage de la Maronaise,28241,observation-d089f8e9-17f3-4694-b121-304f86ae4572,https://biolit.fr/observations/observation-d089f8e9-17f3-4694-b121-304f86ae4572/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1360-scaled.jpg,,TRUE, +N1,28540,sortie-d089f8e9-17f3-4694-b121-304f86ae4572,https://biolit.fr/sorties/sortie-d089f8e9-17f3-4694-b121-304f86ae4572/,Marine,,5/17/2016 0:00,12.0000000,14.0000000,43.214859000000,5.342970000000,,Plage de la Maronaise,28243,observation-d089f8e9-17f3-4694-b121-304f86ae4572-2,https://biolit.fr/observations/observation-d089f8e9-17f3-4694-b121-304f86ae4572-2/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1361-scaled.jpg,,TRUE, +N1,28541,sortie-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39,https://biolit.fr/sorties/sortie-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.094774000000,6.023538000000,,Plage de la Garonne,28245,observation-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39,https://biolit.fr/observations/observation-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1343-scaled.jpg,,TRUE, +N1,28541,sortie-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39,https://biolit.fr/sorties/sortie-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.094774000000,6.023538000000,,Plage de la Garonne,28247,observation-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39-2,https://biolit.fr/observations/observation-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39-2/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1344-scaled.jpg,,TRUE, +N1,28541,sortie-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39,https://biolit.fr/sorties/sortie-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.094774000000,6.023538000000,,Plage de la Garonne,28249,observation-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39-3,https://biolit.fr/observations/observation-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39-3/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1345-scaled.jpg,,TRUE, +N1,28541,sortie-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39,https://biolit.fr/sorties/sortie-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.094774000000,6.023538000000,,Plage de la Garonne,28251,observation-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39-4,https://biolit.fr/observations/observation-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39-4/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1346-scaled.jpg,,TRUE, +N1,28541,sortie-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39,https://biolit.fr/sorties/sortie-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.094774000000,6.023538000000,,Plage de la Garonne,28253,observation-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39-5,https://biolit.fr/observations/observation-1d53e81d-f6e3-41e3-bee4-1bc11c8dce39-5/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1349-scaled.jpg,,TRUE, +N1,28542,sortie-acae5c7e-39a8-4643-ad2a-f4a1748ce7e3,https://biolit.fr/sorties/sortie-acae5c7e-39a8-4643-ad2a-f4a1748ce7e3/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.094722000000,6.023559000000,,Plage de la Garonne,28255,observation-acae5c7e-39a8-4643-ad2a-f4a1748ce7e3,https://biolit.fr/observations/observation-acae5c7e-39a8-4643-ad2a-f4a1748ce7e3/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1340-scaled.jpg,,TRUE, +N1,28542,sortie-acae5c7e-39a8-4643-ad2a-f4a1748ce7e3,https://biolit.fr/sorties/sortie-acae5c7e-39a8-4643-ad2a-f4a1748ce7e3/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.094722000000,6.023559000000,,Plage de la Garonne,28257,observation-acae5c7e-39a8-4643-ad2a-f4a1748ce7e3-2,https://biolit.fr/observations/observation-acae5c7e-39a8-4643-ad2a-f4a1748ce7e3-2/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1341-scaled.jpg,,TRUE, +N1,28542,sortie-acae5c7e-39a8-4643-ad2a-f4a1748ce7e3,https://biolit.fr/sorties/sortie-acae5c7e-39a8-4643-ad2a-f4a1748ce7e3/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.094722000000,6.023559000000,,Plage de la Garonne,28259,observation-acae5c7e-39a8-4643-ad2a-f4a1748ce7e3-3,https://biolit.fr/observations/observation-acae5c7e-39a8-4643-ad2a-f4a1748ce7e3-3/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1342-scaled.jpg,,TRUE, +N1,28543,sortie-2047d38d-a649-4d15-8c11-e56cb6479028,https://biolit.fr/sorties/sortie-2047d38d-a649-4d15-8c11-e56cb6479028/,Centre de Découverte Mer et Montagne,,4/28/2016 0:00,10.0000000,11.0000000,43.555240000000,7.140305000000,,"Antibes, plage de la pointe de la Garoupe",28261,observation-2047d38d-a649-4d15-8c11-e56cb6479028,https://biolit.fr/observations/observation-2047d38d-a649-4d15-8c11-e56cb6479028/,Argonauta argo,Argonaute,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Argonaute.jpg,,TRUE, +N1,28544,sortie-cd0ab0bf-50ca-430c-9865-4d75731a6ae7,https://biolit.fr/sorties/sortie-cd0ab0bf-50ca-430c-9865-4d75731a6ae7/,MarieSol,,3/26/2016 0:00,15.0000000,16.0000000,43.547270000000,3.989156000000,,Carnon plage,28263,observation-cd0ab0bf-50ca-430c-9865-4d75731a6ae7,https://biolit.fr/observations/observation-cd0ab0bf-50ca-430c-9865-4d75731a6ae7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Os de seiche.JPG,,FALSE, +N1,28545,sortie-afacb03b-9eb8-4ed8-9ea7-b0f2679514bc,https://biolit.fr/sorties/sortie-afacb03b-9eb8-4ed8-9ea7-b0f2679514bc/,Marine,,1/31/2016 0:00,12.0000000,14.0000000,43.093375000000,6.024289000000,,Plage de la Garonne,28265,observation-afacb03b-9eb8-4ed8-9ea7-b0f2679514bc,https://biolit.fr/observations/observation-afacb03b-9eb8-4ed8-9ea7-b0f2679514bc/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1091-scaled.jpg,,TRUE, +N1,28545,sortie-afacb03b-9eb8-4ed8-9ea7-b0f2679514bc,https://biolit.fr/sorties/sortie-afacb03b-9eb8-4ed8-9ea7-b0f2679514bc/,Marine,,1/31/2016 0:00,12.0000000,14.0000000,43.093375000000,6.024289000000,,Plage de la Garonne,28267,observation-afacb03b-9eb8-4ed8-9ea7-b0f2679514bc-2,https://biolit.fr/observations/observation-afacb03b-9eb8-4ed8-9ea7-b0f2679514bc-2/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1096-scaled.jpg,,TRUE, +N1,28546,sortie-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c,https://biolit.fr/sorties/sortie-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c/,Zarah Simard,,12/05/2015,9.0000000,11.0000000,43.454103000000,3.812732000000,,"Plage des Aresquiers, Frontignan-plage",28269,observation-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c,https://biolit.fr/observations/observation-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/IMGP7422-scaled.jpg,,TRUE, +N1,28546,sortie-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c,https://biolit.fr/sorties/sortie-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c/,Zarah Simard,,12/05/2015,9.0000000,11.0000000,43.454103000000,3.812732000000,,"Plage des Aresquiers, Frontignan-plage",28271,observation-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c-2,https://biolit.fr/observations/observation-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c-2/,Raja asterias,Raie étoilée,,https://biolit.fr/wp-content/uploads/2023/07/IMGP7423-scaled.jpg,,TRUE, +N1,28546,sortie-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c,https://biolit.fr/sorties/sortie-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c/,Zarah Simard,,12/05/2015,9.0000000,11.0000000,43.454103000000,3.812732000000,,"Plage des Aresquiers, Frontignan-plage",28273,observation-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c-3,https://biolit.fr/observations/observation-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP7400-scaled.jpg,,FALSE, +N1,28546,sortie-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c,https://biolit.fr/sorties/sortie-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c/,Zarah Simard,,12/05/2015,9.0000000,11.0000000,43.454103000000,3.812732000000,,"Plage des Aresquiers, Frontignan-plage",28275,observation-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c-4,https://biolit.fr/observations/observation-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP7392-scaled.jpg,,FALSE, +N1,28546,sortie-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c,https://biolit.fr/sorties/sortie-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c/,Zarah Simard,,12/05/2015,9.0000000,11.0000000,43.454103000000,3.812732000000,,"Plage des Aresquiers, Frontignan-plage",28277,observation-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c-5,https://biolit.fr/observations/observation-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP7424-scaled.jpg,,FALSE, +N1,28546,sortie-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c,https://biolit.fr/sorties/sortie-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c/,Zarah Simard,,12/05/2015,9.0000000,11.0000000,43.454103000000,3.812732000000,,"Plage des Aresquiers, Frontignan-plage",28279,observation-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c-6,https://biolit.fr/observations/observation-9738b72f-0e04-4db0-8fd9-9296a5c6fa5c-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP7385-scaled.jpg,,FALSE, +N1,28547,sortie-537a4dce-47c2-4754-9a50-53e7ffdf31e1,https://biolit.fr/sorties/sortie-537a4dce-47c2-4754-9a50-53e7ffdf31e1/,Zarah Simard,,11/07/2015,9.0000000,11.0000000,43.338962000000,3.581311000000,,"Plage du Castellas, Lido de Sete",28281,observation-537a4dce-47c2-4754-9a50-53e7ffdf31e1,https://biolit.fr/observations/observation-537a4dce-47c2-4754-9a50-53e7ffdf31e1/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP7380-scaled.jpg,,FALSE, +N1,28548,sortie-ffa44241-4afe-489c-8386-1258c36f6a6f,https://biolit.fr/sorties/sortie-ffa44241-4afe-489c-8386-1258c36f6a6f/,Josiane WACQUANT,,12/08/2015,9.0:45,11.0000000,43.433666000000,3.780514000000,,FRONTIGNAN,28283,observation-ffa44241-4afe-489c-8386-1258c36f6a6f,https://biolit.fr/observations/observation-ffa44241-4afe-489c-8386-1258c36f6a6f/,,,,https://biolit.fr/wp-content/uploads/2023/07/6-Pachygrapsus marmoratus vivant -scaled.jpg,,FALSE, +N1,28548,sortie-ffa44241-4afe-489c-8386-1258c36f6a6f,https://biolit.fr/sorties/sortie-ffa44241-4afe-489c-8386-1258c36f6a6f/,Josiane WACQUANT,,12/08/2015,9.0:45,11.0000000,43.433666000000,3.780514000000,,FRONTIGNAN,28285,observation-ffa44241-4afe-489c-8386-1258c36f6a6f-2,https://biolit.fr/observations/observation-ffa44241-4afe-489c-8386-1258c36f6a6f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/2-Posidonia oceanica -scaled.jpg,,FALSE, +N1,28548,sortie-ffa44241-4afe-489c-8386-1258c36f6a6f,https://biolit.fr/sorties/sortie-ffa44241-4afe-489c-8386-1258c36f6a6f/,Josiane WACQUANT,,12/08/2015,9.0:45,11.0000000,43.433666000000,3.780514000000,,FRONTIGNAN,28287,observation-ffa44241-4afe-489c-8386-1258c36f6a6f-3,https://biolit.fr/observations/observation-ffa44241-4afe-489c-8386-1258c36f6a6f-3/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/5-éponge et Arca noae -scaled.jpg,,TRUE, +N1,28548,sortie-ffa44241-4afe-489c-8386-1258c36f6a6f,https://biolit.fr/sorties/sortie-ffa44241-4afe-489c-8386-1258c36f6a6f/,Josiane WACQUANT,,12/08/2015,9.0:45,11.0000000,43.433666000000,3.780514000000,,FRONTIGNAN,28289,observation-ffa44241-4afe-489c-8386-1258c36f6a6f-4,https://biolit.fr/observations/observation-ffa44241-4afe-489c-8386-1258c36f6a6f-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/7-Scrobicularia -scaled.jpg,,FALSE, +N1,28548,sortie-ffa44241-4afe-489c-8386-1258c36f6a6f,https://biolit.fr/sorties/sortie-ffa44241-4afe-489c-8386-1258c36f6a6f/,Josiane WACQUANT,,12/08/2015,9.0:45,11.0000000,43.433666000000,3.780514000000,,FRONTIGNAN,28291,observation-ffa44241-4afe-489c-8386-1258c36f6a6f-5,https://biolit.fr/observations/observation-ffa44241-4afe-489c-8386-1258c36f6a6f-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/8-Tellina tenuis -scaled.jpg,,FALSE, +N1,28548,sortie-ffa44241-4afe-489c-8386-1258c36f6a6f,https://biolit.fr/sorties/sortie-ffa44241-4afe-489c-8386-1258c36f6a6f/,Josiane WACQUANT,,12/08/2015,9.0:45,11.0000000,43.433666000000,3.780514000000,,FRONTIGNAN,28293,observation-ffa44241-4afe-489c-8386-1258c36f6a6f-6,https://biolit.fr/observations/observation-ffa44241-4afe-489c-8386-1258c36f6a6f-6/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/9-os de seiche et pétoncle-scaled.jpg,,TRUE, +N1,28548,sortie-ffa44241-4afe-489c-8386-1258c36f6a6f,https://biolit.fr/sorties/sortie-ffa44241-4afe-489c-8386-1258c36f6a6f/,Josiane WACQUANT,,12/08/2015,9.0:45,11.0000000,43.433666000000,3.780514000000,,FRONTIGNAN,28295,observation-ffa44241-4afe-489c-8386-1258c36f6a6f-7,https://biolit.fr/observations/observation-ffa44241-4afe-489c-8386-1258c36f6a6f-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/10-Mytilus -scaled.jpg,,FALSE, +N1,28548,sortie-ffa44241-4afe-489c-8386-1258c36f6a6f,https://biolit.fr/sorties/sortie-ffa44241-4afe-489c-8386-1258c36f6a6f/,Josiane WACQUANT,,12/08/2015,9.0:45,11.0000000,43.433666000000,3.780514000000,,FRONTIGNAN,28297,observation-ffa44241-4afe-489c-8386-1258c36f6a6f-8,https://biolit.fr/observations/observation-ffa44241-4afe-489c-8386-1258c36f6a6f-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/11-Alg. rouge Sphaerococcus coronopifolius -scaled.jpg,,FALSE, +N1,28548,sortie-ffa44241-4afe-489c-8386-1258c36f6a6f,https://biolit.fr/sorties/sortie-ffa44241-4afe-489c-8386-1258c36f6a6f/,Josiane WACQUANT,,12/08/2015,9.0:45,11.0000000,43.433666000000,3.780514000000,,FRONTIGNAN,28299,observation-ffa44241-4afe-489c-8386-1258c36f6a6f-9,https://biolit.fr/observations/observation-ffa44241-4afe-489c-8386-1258c36f6a6f-9/,Pecten jacobaeus,Coquille Saint-Jacques de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/12-Pecten jacobeus-scaled.jpg,,TRUE, +N1,28548,sortie-ffa44241-4afe-489c-8386-1258c36f6a6f,https://biolit.fr/sorties/sortie-ffa44241-4afe-489c-8386-1258c36f6a6f/,Josiane WACQUANT,,12/08/2015,9.0:45,11.0000000,43.433666000000,3.780514000000,,FRONTIGNAN,28301,observation-ffa44241-4afe-489c-8386-1258c36f6a6f-10,https://biolit.fr/observations/observation-ffa44241-4afe-489c-8386-1258c36f6a6f-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/13-Donax trunculus _0-scaled.jpg,,FALSE, +N1,28548,sortie-ffa44241-4afe-489c-8386-1258c36f6a6f,https://biolit.fr/sorties/sortie-ffa44241-4afe-489c-8386-1258c36f6a6f/,Josiane WACQUANT,,12/08/2015,9.0:45,11.0000000,43.433666000000,3.780514000000,,FRONTIGNAN,28303,observation-ffa44241-4afe-489c-8386-1258c36f6a6f-11,https://biolit.fr/observations/observation-ffa44241-4afe-489c-8386-1258c36f6a6f-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/14-Ostrea 763 -scaled.jpg,,FALSE, +N1,28549,sortie-f570982d-5247-40b9-828c-745f2da733a4,https://biolit.fr/sorties/sortie-f570982d-5247-40b9-828c-745f2da733a4/,Marine,,11/26/2015 0:00,12.0000000,14.0000000,42.668181000000,9.447496000000,,Lido de la Marana,28305,observation-f570982d-5247-40b9-828c-745f2da733a4,https://biolit.fr/observations/observation-f570982d-5247-40b9-828c-745f2da733a4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0353-scaled.jpg,,FALSE, +N1,28549,sortie-f570982d-5247-40b9-828c-745f2da733a4,https://biolit.fr/sorties/sortie-f570982d-5247-40b9-828c-745f2da733a4/,Marine,,11/26/2015 0:00,12.0000000,14.0000000,42.668181000000,9.447496000000,,Lido de la Marana,28307,observation-f570982d-5247-40b9-828c-745f2da733a4-2,https://biolit.fr/observations/observation-f570982d-5247-40b9-828c-745f2da733a4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0354-scaled.jpg,,FALSE, +N1,28550,sortie-589dcfe8-062c-40c8-b145-c5c32dd51dc3,https://biolit.fr/sorties/sortie-589dcfe8-062c-40c8-b145-c5c32dd51dc3/,Morice,,11/26/2015 0:00,8.0:15,8.0:45,48.636077000000,-2.082924000000,,Plage du Port Blanc,28309,observation-589dcfe8-062c-40c8-b145-c5c32dd51dc3,https://biolit.fr/observations/observation-589dcfe8-062c-40c8-b145-c5c32dd51dc3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20151126_084609-scaled.jpg,,TRUE, +N1,28550,sortie-589dcfe8-062c-40c8-b145-c5c32dd51dc3,https://biolit.fr/sorties/sortie-589dcfe8-062c-40c8-b145-c5c32dd51dc3/,Morice,,11/26/2015 0:00,8.0:15,8.0:45,48.636077000000,-2.082924000000,,Plage du Port Blanc,28311,observation-589dcfe8-062c-40c8-b145-c5c32dd51dc3-2,https://biolit.fr/observations/observation-589dcfe8-062c-40c8-b145-c5c32dd51dc3-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20151126_084543-scaled.jpg,,TRUE, +N1,28551,sortie-b96fb005-05fc-4eb4-85d4-a0454d5a374d,https://biolit.fr/sorties/sortie-b96fb005-05fc-4eb4-85d4-a0454d5a374d/,Marine,,11/23/2015 0:00,8.0000000,9.0000000,41.922156000000,8.784121000000,,Plage U ricanto,28313,observation-b96fb005-05fc-4eb4-85d4-a0454d5a374d,https://biolit.fr/observations/observation-b96fb005-05fc-4eb4-85d4-a0454d5a374d/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_0171-scaled.jpg,,TRUE, +N1,28551,sortie-b96fb005-05fc-4eb4-85d4-a0454d5a374d,https://biolit.fr/sorties/sortie-b96fb005-05fc-4eb4-85d4-a0454d5a374d/,Marine,,11/23/2015 0:00,8.0000000,9.0000000,41.922156000000,8.784121000000,,Plage U ricanto,28315,observation-b96fb005-05fc-4eb4-85d4-a0454d5a374d-2,https://biolit.fr/observations/observation-b96fb005-05fc-4eb4-85d4-a0454d5a374d-2/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_0172-scaled.jpg,,TRUE, +N1,28551,sortie-b96fb005-05fc-4eb4-85d4-a0454d5a374d,https://biolit.fr/sorties/sortie-b96fb005-05fc-4eb4-85d4-a0454d5a374d/,Marine,,11/23/2015 0:00,8.0000000,9.0000000,41.922156000000,8.784121000000,,Plage U ricanto,28317,observation-b96fb005-05fc-4eb4-85d4-a0454d5a374d-3,https://biolit.fr/observations/observation-b96fb005-05fc-4eb4-85d4-a0454d5a374d-3/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_0173-scaled.jpg,,TRUE, +N1,28551,sortie-b96fb005-05fc-4eb4-85d4-a0454d5a374d,https://biolit.fr/sorties/sortie-b96fb005-05fc-4eb4-85d4-a0454d5a374d/,Marine,,11/23/2015 0:00,8.0000000,9.0000000,41.922156000000,8.784121000000,,Plage U ricanto,28319,observation-b96fb005-05fc-4eb4-85d4-a0454d5a374d-4,https://biolit.fr/observations/observation-b96fb005-05fc-4eb4-85d4-a0454d5a374d-4/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_0177-scaled.jpg,,TRUE, +N1,28551,sortie-b96fb005-05fc-4eb4-85d4-a0454d5a374d,https://biolit.fr/sorties/sortie-b96fb005-05fc-4eb4-85d4-a0454d5a374d/,Marine,,11/23/2015 0:00,8.0000000,9.0000000,41.922156000000,8.784121000000,,Plage U ricanto,28321,observation-b96fb005-05fc-4eb4-85d4-a0454d5a374d-5,https://biolit.fr/observations/observation-b96fb005-05fc-4eb4-85d4-a0454d5a374d-5/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_0178-scaled.jpg,,TRUE, +N1,28551,sortie-b96fb005-05fc-4eb4-85d4-a0454d5a374d,https://biolit.fr/sorties/sortie-b96fb005-05fc-4eb4-85d4-a0454d5a374d/,Marine,,11/23/2015 0:00,8.0000000,9.0000000,41.922156000000,8.784121000000,,Plage U ricanto,28323,observation-b96fb005-05fc-4eb4-85d4-a0454d5a374d-6,https://biolit.fr/observations/observation-b96fb005-05fc-4eb4-85d4-a0454d5a374d-6/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0175-scaled.jpg,,TRUE, +N1,28551,sortie-b96fb005-05fc-4eb4-85d4-a0454d5a374d,https://biolit.fr/sorties/sortie-b96fb005-05fc-4eb4-85d4-a0454d5a374d/,Marine,,11/23/2015 0:00,8.0000000,9.0000000,41.922156000000,8.784121000000,,Plage U ricanto,28325,observation-b96fb005-05fc-4eb4-85d4-a0454d5a374d-7,https://biolit.fr/observations/observation-b96fb005-05fc-4eb4-85d4-a0454d5a374d-7/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0176-scaled.jpg,,TRUE, +N1,28552,sortie-9dc62e7d-be2c-48cb-9861-f3f8f7356b38,https://biolit.fr/sorties/sortie-9dc62e7d-be2c-48cb-9861-f3f8f7356b38/,Planète Mer,,10/04/2015,14.0000000,17.0000000,43.154247000000,6.481935000000,,Baie du Figuier,28327,observation-9dc62e7d-be2c-48cb-9861-f3f8f7356b38,https://biolit.fr/observations/observation-9dc62e7d-be2c-48cb-9861-f3f8f7356b38/,,,,https://biolit.fr/wp-content/uploads/2023/07/PA040013_0-scaled.jpg,,FALSE, +N1,28553,sortie-15be3ce2-2841-465c-a910-bdaa96a1463b,https://biolit.fr/sorties/sortie-15be3ce2-2841-465c-a910-bdaa96a1463b/,Planète Mer,,9/21/2015 0:00,14.0000000,17.0000000,43.519751000000,7.033805000000,,île Sainte Marguerite,28329,observation-15be3ce2-2841-465c-a910-bdaa96a1463b,https://biolit.fr/observations/observation-15be3ce2-2841-465c-a910-bdaa96a1463b/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0047-scaled.jpg,,FALSE, +N1,28553,sortie-15be3ce2-2841-465c-a910-bdaa96a1463b,https://biolit.fr/sorties/sortie-15be3ce2-2841-465c-a910-bdaa96a1463b/,Planète Mer,,9/21/2015 0:00,14.0000000,17.0000000,43.519751000000,7.033805000000,,île Sainte Marguerite,28331,observation-15be3ce2-2841-465c-a910-bdaa96a1463b-2,https://biolit.fr/observations/observation-15be3ce2-2841-465c-a910-bdaa96a1463b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0051_0-scaled.jpg,,FALSE, +N1,28553,sortie-15be3ce2-2841-465c-a910-bdaa96a1463b,https://biolit.fr/sorties/sortie-15be3ce2-2841-465c-a910-bdaa96a1463b/,Planète Mer,,9/21/2015 0:00,14.0000000,17.0000000,43.519751000000,7.033805000000,,île Sainte Marguerite,28333,observation-15be3ce2-2841-465c-a910-bdaa96a1463b-3,https://biolit.fr/observations/observation-15be3ce2-2841-465c-a910-bdaa96a1463b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0037-scaled.jpg,,FALSE, +N1,28554,sortie-0b4af78c-cadf-44fd-a114-d53be86e8497,https://biolit.fr/sorties/sortie-0b4af78c-cadf-44fd-a114-d53be86e8497/,Marine,,06/05/2015,18.0000000,20.0000000,43.325903000000,5.054252000000,,Plage de la Couronne Vieille,28335,observation-0b4af78c-cadf-44fd-a114-d53be86e8497,https://biolit.fr/observations/observation-0b4af78c-cadf-44fd-a114-d53be86e8497/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_0656-scaled.jpg,,TRUE, +N1,28555,sortie-ca69ba0f-3a27-4736-9c79-7af5b9876d05,https://biolit.fr/sorties/sortie-ca69ba0f-3a27-4736-9c79-7af5b9876d05/,Audrey,,5/20/2015 0:00,14.0:15,15.0:15,43.273263000000,5.361569000000,,Plage du Prophète Marseille,28337,observation-ca69ba0f-3a27-4736-9c79-7af5b9876d05,https://biolit.fr/observations/observation-ca69ba0f-3a27-4736-9c79-7af5b9876d05/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/ponte.jpg,,TRUE, +N1,28556,sortie-3a60d38d-ad92-40e9-a584-93e86d00920a,https://biolit.fr/sorties/sortie-3a60d38d-ad92-40e9-a584-93e86d00920a/,Céline,,5/16/2015 0:00,18.0000000,18.0000000,47.512765000000,-2.847750000000,,"St Gildas, plage des govelins",28339,observation-3a60d38d-ad92-40e9-a584-93e86d00920a,https://biolit.fr/observations/observation-3a60d38d-ad92-40e9-a584-93e86d00920a/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/20150516 st gildas pontes_1-rotated.jpg,,TRUE, +N1,28557,sortie-67a14fe3-9802-48b4-a7f2-f6356e3b2a34,https://biolit.fr/sorties/sortie-67a14fe3-9802-48b4-a7f2-f6356e3b2a34/,Marine,,05/09/2015,16.0000000,18.0000000,43.094756000000,6.023482000000,,Plage du Pradet,28341,observation-67a14fe3-9802-48b4-a7f2-f6356e3b2a34,https://biolit.fr/observations/observation-67a14fe3-9802-48b4-a7f2-f6356e3b2a34/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_9702_2-scaled.jpg,,TRUE, +N1,28557,sortie-67a14fe3-9802-48b4-a7f2-f6356e3b2a34,https://biolit.fr/sorties/sortie-67a14fe3-9802-48b4-a7f2-f6356e3b2a34/,Marine,,05/09/2015,16.0000000,18.0000000,43.094756000000,6.023482000000,,Plage du Pradet,28343,observation-67a14fe3-9802-48b4-a7f2-f6356e3b2a34-2,https://biolit.fr/observations/observation-67a14fe3-9802-48b4-a7f2-f6356e3b2a34-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_9706_2-scaled.jpg,,TRUE, +N1,28558,sortie-c4493942-2aed-41c5-b904-10782f50a76b,https://biolit.fr/sorties/sortie-c4493942-2aed-41c5-b904-10782f50a76b/,Audrey,,05/03/2015,14.0000000,14.0:45,43.758627000000,7.482897000000,,Roquebrune-Cap-Martin,28345,observation-c4493942-2aed-41c5-b904-10782f50a76b,https://biolit.fr/observations/observation-c4493942-2aed-41c5-b904-10782f50a76b/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/velele.jpg,,TRUE, +N1,28558,sortie-c4493942-2aed-41c5-b904-10782f50a76b,https://biolit.fr/sorties/sortie-c4493942-2aed-41c5-b904-10782f50a76b/,Audrey,,05/03/2015,14.0000000,14.0:45,43.758627000000,7.482897000000,,Roquebrune-Cap-Martin,28347,observation-c4493942-2aed-41c5-b904-10782f50a76b-2,https://biolit.fr/observations/observation-c4493942-2aed-41c5-b904-10782f50a76b-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/velele1.jpg,,TRUE, +N1,28558,sortie-c4493942-2aed-41c5-b904-10782f50a76b,https://biolit.fr/sorties/sortie-c4493942-2aed-41c5-b904-10782f50a76b/,Audrey,,05/03/2015,14.0000000,14.0:45,43.758627000000,7.482897000000,,Roquebrune-Cap-Martin,28349,observation-c4493942-2aed-41c5-b904-10782f50a76b-3,https://biolit.fr/observations/observation-c4493942-2aed-41c5-b904-10782f50a76b-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/velele2.jpg,,TRUE, +N1,28560,sortie-66f921f7-780a-4027-8a86-068373481d34,https://biolit.fr/sorties/sortie-66f921f7-780a-4027-8a86-068373481d34/,Marine,,5/29/2014 0:00,10.0000000,11.0000000,43.094507000000,6.023674000000,,Plage du Pradet,28353,observation-66f921f7-780a-4027-8a86-068373481d34,https://biolit.fr/observations/observation-66f921f7-780a-4027-8a86-068373481d34/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_8399-scaled.jpg,,TRUE, +N1,28560,sortie-66f921f7-780a-4027-8a86-068373481d34,https://biolit.fr/sorties/sortie-66f921f7-780a-4027-8a86-068373481d34/,Marine,,5/29/2014 0:00,10.0000000,11.0000000,43.094507000000,6.023674000000,,Plage du Pradet,28355,observation-66f921f7-780a-4027-8a86-068373481d34-2,https://biolit.fr/observations/observation-66f921f7-780a-4027-8a86-068373481d34-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_8400-scaled.jpg,,TRUE, +N1,28560,sortie-66f921f7-780a-4027-8a86-068373481d34,https://biolit.fr/sorties/sortie-66f921f7-780a-4027-8a86-068373481d34/,Marine,,5/29/2014 0:00,10.0000000,11.0000000,43.094507000000,6.023674000000,,Plage du Pradet,28357,observation-66f921f7-780a-4027-8a86-068373481d34-3,https://biolit.fr/observations/observation-66f921f7-780a-4027-8a86-068373481d34-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_8401-scaled.jpg,,TRUE, +N1,28561,sortie-370b5a7e-1590-4866-a35e-bb2cb8fa10eb,https://biolit.fr/sorties/sortie-370b5a7e-1590-4866-a35e-bb2cb8fa10eb/,Marine,,5/23/2014 0:00,14.0000000,15.0000000,43.333936000000,5.197766000000,,Plage des Pébraïres,28359,observation-370b5a7e-1590-4866-a35e-bb2cb8fa10eb,https://biolit.fr/observations/observation-370b5a7e-1590-4866-a35e-bb2cb8fa10eb/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20140523_141122.jpg,,TRUE, +N1,28562,sortie-d80a213a-c77c-42ab-87d0-b76f4ee085fa,https://biolit.fr/sorties/sortie-d80a213a-c77c-42ab-87d0-b76f4ee085fa/,Marine,,5/22/2014 0:00,11.0000000,12.0000000,43.333935000000,5.197750000000,,Plage des Pebraïres,28361,observation-d80a213a-c77c-42ab-87d0-b76f4ee085fa,https://biolit.fr/observations/observation-d80a213a-c77c-42ab-87d0-b76f4ee085fa/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20140522_112128.jpg,,TRUE, +N1,28564,sortie-17619710-b39f-49da-89cf-78c3adf56d80,https://biolit.fr/sorties/sortie-17619710-b39f-49da-89cf-78c3adf56d80/,Ville de Marseille,,5/16/2014 0:00,10.0000000,11.0000000,43.280120000000,5.352684000000,,Anse de la Fausse-Monnaie Côte rocheuse,28365,observation-17619710-b39f-49da-89cf-78c3adf56d80,https://biolit.fr/observations/observation-17619710-b39f-49da-89cf-78c3adf56d80/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus P5167951-scaled.jpg,,TRUE, +N1,28564,sortie-17619710-b39f-49da-89cf-78c3adf56d80,https://biolit.fr/sorties/sortie-17619710-b39f-49da-89cf-78c3adf56d80/,Ville de Marseille,,5/16/2014 0:00,10.0000000,11.0000000,43.280120000000,5.352684000000,,Anse de la Fausse-Monnaie Côte rocheuse,28367,observation-17619710-b39f-49da-89cf-78c3adf56d80-2,https://biolit.fr/observations/observation-17619710-b39f-49da-89cf-78c3adf56d80-2/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus P5167952-scaled.jpg,,TRUE, +N1,28564,sortie-17619710-b39f-49da-89cf-78c3adf56d80,https://biolit.fr/sorties/sortie-17619710-b39f-49da-89cf-78c3adf56d80/,Ville de Marseille,,5/16/2014 0:00,10.0000000,11.0000000,43.280120000000,5.352684000000,,Anse de la Fausse-Monnaie Côte rocheuse,28369,observation-17619710-b39f-49da-89cf-78c3adf56d80-3,https://biolit.fr/observations/observation-17619710-b39f-49da-89cf-78c3adf56d80-3/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus P5167953-scaled.jpg,,TRUE, +N1,28565,sortie-6dee1878-2ba8-432c-a94c-3a7780a4f398,https://biolit.fr/sorties/sortie-6dee1878-2ba8-432c-a94c-3a7780a4f398/,Ville de Marseille,,5/16/2014 0:00,10.0000000,11.0000000,43.280589000000,5.352976000000,,Anse de la Fausse-Monnaie Côte rocheuse ,28371,observation-6dee1878-2ba8-432c-a94c-3a7780a4f398,https://biolit.fr/observations/observation-6dee1878-2ba8-432c-a94c-3a7780a4f398/,Acanthonyx lunulatus,Araignée de mer glabre,,https://biolit.fr/wp-content/uploads/2023/07/P5167939-scaled.jpg,,TRUE, +N1,28565,sortie-6dee1878-2ba8-432c-a94c-3a7780a4f398,https://biolit.fr/sorties/sortie-6dee1878-2ba8-432c-a94c-3a7780a4f398/,Ville de Marseille,,5/16/2014 0:00,10.0000000,11.0000000,43.280589000000,5.352976000000,,Anse de la Fausse-Monnaie Côte rocheuse ,28373,observation-6dee1878-2ba8-432c-a94c-3a7780a4f398-2,https://biolit.fr/observations/observation-6dee1878-2ba8-432c-a94c-3a7780a4f398-2/,Acanthonyx lunulatus,Araignée de mer glabre,,https://biolit.fr/wp-content/uploads/2023/07/P5167940-scaled.jpg,,TRUE, +N1,28565,sortie-6dee1878-2ba8-432c-a94c-3a7780a4f398,https://biolit.fr/sorties/sortie-6dee1878-2ba8-432c-a94c-3a7780a4f398/,Ville de Marseille,,5/16/2014 0:00,10.0000000,11.0000000,43.280589000000,5.352976000000,,Anse de la Fausse-Monnaie Côte rocheuse ,28375,observation-6dee1878-2ba8-432c-a94c-3a7780a4f398-3,https://biolit.fr/observations/observation-6dee1878-2ba8-432c-a94c-3a7780a4f398-3/,Acanthonyx lunulatus,Araignée de mer glabre,,https://biolit.fr/wp-content/uploads/2023/07/P5167945-scaled.jpg,,TRUE, +N1,28565,sortie-6dee1878-2ba8-432c-a94c-3a7780a4f398,https://biolit.fr/sorties/sortie-6dee1878-2ba8-432c-a94c-3a7780a4f398/,Ville de Marseille,,5/16/2014 0:00,10.0000000,11.0000000,43.280589000000,5.352976000000,,Anse de la Fausse-Monnaie Côte rocheuse ,28377,observation-6dee1878-2ba8-432c-a94c-3a7780a4f398-4,https://biolit.fr/observations/observation-6dee1878-2ba8-432c-a94c-3a7780a4f398-4/,Acanthonyx lunulatus,Araignée de mer glabre,,https://biolit.fr/wp-content/uploads/2023/07/P5167946-scaled.jpg,,TRUE, +N1,28566,sortie-92bdb1fe-e3d1-4b27-9914-73d2e8853f6b,https://biolit.fr/sorties/sortie-92bdb1fe-e3d1-4b27-9914-73d2e8853f6b/,Ville de Marseille,,05/02/2014,10.0000000,11.0000000,43.272835000000,5.362070000000,,"bassin du Roucas Blanc,13008 Marseille",28379,observation-92bdb1fe-e3d1-4b27-9914-73d2e8853f6b,https://biolit.fr/observations/observation-92bdb1fe-e3d1-4b27-9914-73d2e8853f6b/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/os de seiche (2)-scaled.jpg,,TRUE, +N1,28566,sortie-92bdb1fe-e3d1-4b27-9914-73d2e8853f6b,https://biolit.fr/sorties/sortie-92bdb1fe-e3d1-4b27-9914-73d2e8853f6b/,Ville de Marseille,,05/02/2014,10.0000000,11.0000000,43.272835000000,5.362070000000,,"bassin du Roucas Blanc,13008 Marseille",28381,observation-92bdb1fe-e3d1-4b27-9914-73d2e8853f6b-2,https://biolit.fr/observations/observation-92bdb1fe-e3d1-4b27-9914-73d2e8853f6b-2/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Os de seiche.JPG,,TRUE, +N1,28567,sortie-725447b1-5e9b-48e2-ba8f-c165354f44d0,https://biolit.fr/sorties/sortie-725447b1-5e9b-48e2-ba8f-c165354f44d0/,Audrey,,5/18/2014 0:00,15.0000000,16.0000000,43.040996000000,6.106383000000,,"Presqu'île de Giens, Plage de l'Ermitage",28382,observation-725447b1-5e9b-48e2-ba8f-c165354f44d0,https://biolit.fr/observations/observation-725447b1-5e9b-48e2-ba8f-c165354f44d0/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/2_PointeDeLermitage_Presquile_Gien_Hyeres_20140518 (1)-scaled.jpg,,TRUE, +N1,28567,sortie-725447b1-5e9b-48e2-ba8f-c165354f44d0,https://biolit.fr/sorties/sortie-725447b1-5e9b-48e2-ba8f-c165354f44d0/,Audrey,,5/18/2014 0:00,15.0000000,16.0000000,43.040996000000,6.106383000000,,"Presqu'île de Giens, Plage de l'Ermitage",28384,observation-725447b1-5e9b-48e2-ba8f-c165354f44d0-2,https://biolit.fr/observations/observation-725447b1-5e9b-48e2-ba8f-c165354f44d0-2/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/2_PointeDeLermitage_Presquile_Gien_Hyeres_20140518 (3)-scaled.jpg,,TRUE, +N1,28568,sortie-68450cef-85d5-4c42-8ebe-f11884be7b0f,https://biolit.fr/sorties/sortie-68450cef-85d5-4c42-8ebe-f11884be7b0f/,Audrey,,5/18/2014 0:00,15.0000000,16.0000000,43.041366000000,6.103389000000,,"Presqu'île de Giens, Pointe de l'Ermitage",28386,observation-68450cef-85d5-4c42-8ebe-f11884be7b0f,https://biolit.fr/observations/observation-68450cef-85d5-4c42-8ebe-f11884be7b0f/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1040578-scaled.jpg,,TRUE, +N1,28569,sortie-e276b23f-3d05-4e16-ae5b-487a300fb15b,https://biolit.fr/sorties/sortie-e276b23f-3d05-4e16-ae5b-487a300fb15b/,Audrey,,5/18/2014 0:00,10.0000000,11.0000000,43.141523000000,6.381896000000,,"Le Lavandou, Plage Saint Clair, ",28388,observation-e276b23f-3d05-4e16-ae5b-487a300fb15b,https://biolit.fr/observations/observation-e276b23f-3d05-4e16-ae5b-487a300fb15b/,,,,https://biolit.fr/wp-content/uploads/2023/07/1_Lavandou_Plage_SaintClair_20140518 (2)-scaled.jpg,,FALSE, +N1,28569,sortie-e276b23f-3d05-4e16-ae5b-487a300fb15b,https://biolit.fr/sorties/sortie-e276b23f-3d05-4e16-ae5b-487a300fb15b/,Audrey,,5/18/2014 0:00,10.0000000,11.0000000,43.141523000000,6.381896000000,,"Le Lavandou, Plage Saint Clair, ",28390,observation-e276b23f-3d05-4e16-ae5b-487a300fb15b-2,https://biolit.fr/observations/observation-e276b23f-3d05-4e16-ae5b-487a300fb15b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/1_Lavandou_Plage_SaintClair_20140518 (3)-scaled.jpg,,TRUE,non-identifiable +N1,28570,sortie-8a651ba0-cc41-47fb-bcf0-83d66237583a,https://biolit.fr/sorties/sortie-8a651ba0-cc41-47fb-bcf0-83d66237583a/,Julie Chabalier,,03/02/2014,10.0000000,12.0:45,43.482954000000,4.138540000000,,"Plage de l'Espiguette, Le Grau du Roi",28392,observation-8a651ba0-cc41-47fb-bcf0-83d66237583a,https://biolit.fr/observations/observation-8a651ba0-cc41-47fb-bcf0-83d66237583a/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Seiche-scaled.jpg,,TRUE, +N1,28570,sortie-8a651ba0-cc41-47fb-bcf0-83d66237583a,https://biolit.fr/sorties/sortie-8a651ba0-cc41-47fb-bcf0-83d66237583a/,Julie Chabalier,,03/02/2014,10.0000000,12.0:45,43.482954000000,4.138540000000,,"Plage de l'Espiguette, Le Grau du Roi",28394,observation-8a651ba0-cc41-47fb-bcf0-83d66237583a-2,https://biolit.fr/observations/observation-8a651ba0-cc41-47fb-bcf0-83d66237583a-2/,Raja asterias,Raie étoilée,,https://biolit.fr/wp-content/uploads/2023/07/Raie-scaled.jpg,,TRUE, +N1,28570,sortie-8a651ba0-cc41-47fb-bcf0-83d66237583a,https://biolit.fr/sorties/sortie-8a651ba0-cc41-47fb-bcf0-83d66237583a/,Julie Chabalier,,03/02/2014,10.0000000,12.0:45,43.482954000000,4.138540000000,,"Plage de l'Espiguette, Le Grau du Roi",28396,observation-8a651ba0-cc41-47fb-bcf0-83d66237583a-3,https://biolit.fr/observations/observation-8a651ba0-cc41-47fb-bcf0-83d66237583a-3/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/Moule-scaled.jpg,,TRUE, +N1,28571,sortie-5b8a6f7a-f217-4ee0-82a8-f5c36a4b4c2f,https://biolit.fr/sorties/sortie-5b8a6f7a-f217-4ee0-82a8-f5c36a4b4c2f/,Robert,,3/19/2014 0:00,11.0000000,13.0000000,43.267357000000,5.292094000000,,Marseille - Îles du Frioul,28398,observation-5b8a6f7a-f217-4ee0-82a8-f5c36a4b4c2f,https://biolit.fr/observations/observation-5b8a6f7a-f217-4ee0-82a8-f5c36a4b4c2f/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/P3193954-scaled.jpg,,TRUE, +N1,28572,sortie-460f4eb3-9881-430d-9016-66343d056cfa,https://biolit.fr/sorties/sortie-460f4eb3-9881-430d-9016-66343d056cfa/,Lisa Kundasamy,,3/21/2014 0:00,10.0000000,12.0000000,43.520939000000,7.032501000000,,ÎLes de Lérins - Sainte Marguerite,28400,observation-460f4eb3-9881-430d-9016-66343d056cfa,https://biolit.fr/observations/observation-460f4eb3-9881-430d-9016-66343d056cfa/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_0173-scaled.jpg,,TRUE, +N1,28572,sortie-460f4eb3-9881-430d-9016-66343d056cfa,https://biolit.fr/sorties/sortie-460f4eb3-9881-430d-9016-66343d056cfa/,Lisa Kundasamy,,3/21/2014 0:00,10.0000000,12.0000000,43.520939000000,7.032501000000,,ÎLes de Lérins - Sainte Marguerite,28402,observation-460f4eb3-9881-430d-9016-66343d056cfa-2,https://biolit.fr/observations/observation-460f4eb3-9881-430d-9016-66343d056cfa-2/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_0174-scaled.jpg,,TRUE, +N1,28573,sortie-6675ee89-886b-441b-a3a1-e1e9d5cd715f,https://biolit.fr/sorties/sortie-6675ee89-886b-441b-a3a1-e1e9d5cd715f/,Laurent Debas,,3/31/2014 0:00,9.0000000,11.0000000,43.284151000000,5.315503000000,,Frioul - Marseille - Calanque de Sainte Estève,28404,observation-6675ee89-886b-441b-a3a1-e1e9d5cd715f,https://biolit.fr/observations/observation-6675ee89-886b-441b-a3a1-e1e9d5cd715f/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_0084_0-scaled.jpg,,TRUE, +N1,58515,sortie-d2168b71-9aed-4682-9275-395b132f3982,https://biolit.fr/sorties/sortie-d2168b71-9aed-4682-9275-395b132f3982/,Watch The Sea,,6/16/2023 0:00,11.0000000,12.0000000,43.450237000000,6.922174000000,,Côte d'Esterel,28574,observation-d2168b71-9aed-4682-9275-395b132f3982,https://biolit.fr/observations/observation-d2168b71-9aed-4682-9275-395b132f3982/,,,,https://biolit.fr/wp-content/uploads/2023/07/1_6.jpg,,FALSE, +N1,58515,sortie-d2168b71-9aed-4682-9275-395b132f3982,https://biolit.fr/sorties/sortie-d2168b71-9aed-4682-9275-395b132f3982/,Watch The Sea,,6/16/2023 0:00,11.0000000,12.0000000,43.450237000000,6.922174000000,,Côte d'Esterel,28576,observation-d2168b71-9aed-4682-9275-395b132f3982-2,https://biolit.fr/observations/observation-d2168b71-9aed-4682-9275-395b132f3982-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/3_7.jpg,,FALSE, +N1,58515,sortie-d2168b71-9aed-4682-9275-395b132f3982,https://biolit.fr/sorties/sortie-d2168b71-9aed-4682-9275-395b132f3982/,Watch The Sea,,6/16/2023 0:00,11.0000000,12.0000000,43.450237000000,6.922174000000,,Côte d'Esterel,28578,observation-d2168b71-9aed-4682-9275-395b132f3982-3,https://biolit.fr/observations/observation-d2168b71-9aed-4682-9275-395b132f3982-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/4_6.jpg,,FALSE, +N1,58515,sortie-d2168b71-9aed-4682-9275-395b132f3982,https://biolit.fr/sorties/sortie-d2168b71-9aed-4682-9275-395b132f3982/,Watch The Sea,,6/16/2023 0:00,11.0000000,12.0000000,43.450237000000,6.922174000000,,Côte d'Esterel,28580,observation-d2168b71-9aed-4682-9275-395b132f3982-4,https://biolit.fr/observations/observation-d2168b71-9aed-4682-9275-395b132f3982-4/,Edmundsella pedata,Coryphelle mauve,,https://biolit.fr/wp-content/uploads/2023/07/5_4.jpg,,TRUE, +N1,58516,sortie-9be1c584-ef3e-427d-98e0-b68456f3073a,https://biolit.fr/sorties/sortie-9be1c584-ef3e-427d-98e0-b68456f3073a/,edgar.reverdy12@gmail.com,,4/17/2023 0:00,10.0000000,12.0000000,42.354302000000,3.175933000000,,"Cap de Bol, Llança ",28582,observation-9be1c584-ef3e-427d-98e0-b68456f3073a,https://biolit.fr/observations/observation-9be1c584-ef3e-427d-98e0-b68456f3073a/,,,,https://biolit.fr/wp-content/uploads/2023/07/meduse-scaled.jpg,,FALSE, +N1,58516,sortie-9be1c584-ef3e-427d-98e0-b68456f3073a,https://biolit.fr/sorties/sortie-9be1c584-ef3e-427d-98e0-b68456f3073a/,edgar.reverdy12@gmail.com,,4/17/2023 0:00,10.0000000,12.0000000,42.354302000000,3.175933000000,,"Cap de Bol, Llança ",28583,observation-9be1c584-ef3e-427d-98e0-b68456f3073a-2,https://biolit.fr/observations/observation-9be1c584-ef3e-427d-98e0-b68456f3073a-2/,Ophiura ophiura,Ophiure commune,,https://biolit.fr/wp-content/uploads/2023/07/OPHIURE.png,,TRUE, +N1,58516,sortie-9be1c584-ef3e-427d-98e0-b68456f3073a,https://biolit.fr/sorties/sortie-9be1c584-ef3e-427d-98e0-b68456f3073a/,edgar.reverdy12@gmail.com,,4/17/2023 0:00,10.0000000,12.0000000,42.354302000000,3.175933000000,,"Cap de Bol, Llança ",28585,observation-9be1c584-ef3e-427d-98e0-b68456f3073a-3,https://biolit.fr/observations/observation-9be1c584-ef3e-427d-98e0-b68456f3073a-3/,Serranus scriba,Serran-écriture,,https://biolit.fr/wp-content/uploads/2023/07/SERRAN.png,,TRUE, +N1,58517,sortie-03f3b38c-a92a-444d-af4f-a7c83baf9699,https://biolit.fr/sorties/sortie-03f3b38c-a92a-444d-af4f-a7c83baf9699/,ecoleclaudedebussy,,06/08/2023,14.0000000,16.0000000,48.625421000000,-2.052819000000,Planète Mer,"Plage du prieuré, Dinard",28587,observation-03f3b38c-a92a-444d-af4f-a7c83baf9699,https://biolit.fr/observations/observation-03f3b38c-a92a-444d-af4f-a7c83baf9699/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/oeufs de bulot.PNG,,TRUE, +N1,58518,sortie-91c2f30e-11e6-4669-a28d-e9be25d4cfde,https://biolit.fr/sorties/sortie-91c2f30e-11e6-4669-a28d-e9be25d4cfde/,okozlova@kyriba.com,,4/25/2023 0:00,12.0000000,14.0000000,41.90935900000,8.796075000000,,Ajaccio,28589,observation-91c2f30e-11e6-4669-a28d-e9be25d4cfde,https://biolit.fr/observations/observation-91c2f30e-11e6-4669-a28d-e9be25d4cfde/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo1685526926.jpeg,,FALSE, +N1,58519,sortie-363b6c2b-e225-4eb1-9548-5023c49b779f,https://biolit.fr/sorties/sortie-363b6c2b-e225-4eb1-9548-5023c49b779f/,okozlova@kyriba.com,,5/31/2023 0:00,11.0000000,13.0000000,41.904975000000,8.627246000000,,Ajaccio,28591,observation-363b6c2b-e225-4eb1-9548-5023c49b779f,https://biolit.fr/observations/observation-363b6c2b-e225-4eb1-9548-5023c49b779f/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo1685526834.jpeg,,FALSE, +N1,58519,sortie-363b6c2b-e225-4eb1-9548-5023c49b779f,https://biolit.fr/sorties/sortie-363b6c2b-e225-4eb1-9548-5023c49b779f/,okozlova@kyriba.com,,5/31/2023 0:00,11.0000000,13.0000000,41.904975000000,8.627246000000,,Ajaccio,28593,observation-363b6c2b-e225-4eb1-9548-5023c49b779f-2,https://biolit.fr/observations/observation-363b6c2b-e225-4eb1-9548-5023c49b779f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo1685526797.jpeg,,FALSE, +N1,58520,sortie-650cffda-f831-49e7-965e-194d63e04f3b,https://biolit.fr/sorties/sortie-650cffda-f831-49e7-965e-194d63e04f3b/,fabien.allemand@totalenergies.com,,5/20/2023 0:00,16.0000000,17.0000000,43.32863600000,5.083112000000,,"Anse de Boumandariel, Martigues (13)",28595,observation-650cffda-f831-49e7-965e-194d63e04f3b,https://biolit.fr/observations/observation-650cffda-f831-49e7-965e-194d63e04f3b/,,,,https://biolit.fr/wp-content/uploads/2023/07/230520-13_AnseBoumandariel_x6746_Posidonies & Padine Padina pavonica_DxO-scaled.jpg,,FALSE, +N1,58520,sortie-650cffda-f831-49e7-965e-194d63e04f3b,https://biolit.fr/sorties/sortie-650cffda-f831-49e7-965e-194d63e04f3b/,fabien.allemand@totalenergies.com,,5/20/2023 0:00,16.0000000,17.0000000,43.32863600000,5.083112000000,,"Anse de Boumandariel, Martigues (13)",28597,observation-650cffda-f831-49e7-965e-194d63e04f3b-2,https://biolit.fr/observations/observation-650cffda-f831-49e7-965e-194d63e04f3b-2/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/230520-13_AnseBoumandariel_x6742_Petelle & moules Mytilus galloprovincialis_DxO-scaled.jpg,,TRUE, +N1,58520,sortie-650cffda-f831-49e7-965e-194d63e04f3b,https://biolit.fr/sorties/sortie-650cffda-f831-49e7-965e-194d63e04f3b/,fabien.allemand@totalenergies.com,,5/20/2023 0:00,16.0000000,17.0000000,43.32863600000,5.083112000000,,"Anse de Boumandariel, Martigues (13)",28599,observation-650cffda-f831-49e7-965e-194d63e04f3b-3,https://biolit.fr/observations/observation-650cffda-f831-49e7-965e-194d63e04f3b-3/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/230520-13_AnseBoumandariel_x6741_Gibbule toupie Phorcus turbinatus_DxO-scaled.jpg,,TRUE, +N1,58520,sortie-650cffda-f831-49e7-965e-194d63e04f3b,https://biolit.fr/sorties/sortie-650cffda-f831-49e7-965e-194d63e04f3b/,fabien.allemand@totalenergies.com,,5/20/2023 0:00,16.0000000,17.0000000,43.32863600000,5.083112000000,,"Anse de Boumandariel, Martigues (13)",28601,observation-650cffda-f831-49e7-965e-194d63e04f3b-4,https://biolit.fr/observations/observation-650cffda-f831-49e7-965e-194d63e04f3b-4/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/230520-13_AnseBoumandariel_x6740_Gibbule et patelles Patella sp_DxO-scaled.jpg,,TRUE, +N1,58520,sortie-650cffda-f831-49e7-965e-194d63e04f3b,https://biolit.fr/sorties/sortie-650cffda-f831-49e7-965e-194d63e04f3b/,fabien.allemand@totalenergies.com,,5/20/2023 0:00,16.0000000,17.0000000,43.32863600000,5.083112000000,,"Anse de Boumandariel, Martigues (13)",28603,observation-650cffda-f831-49e7-965e-194d63e04f3b-5,https://biolit.fr/observations/observation-650cffda-f831-49e7-965e-194d63e04f3b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/230520-13_AnseBoumandariel_x6738_Etrille commune Necora puber_DxO-scaled.jpg,,FALSE, +N1,58520,sortie-650cffda-f831-49e7-965e-194d63e04f3b,https://biolit.fr/sorties/sortie-650cffda-f831-49e7-965e-194d63e04f3b/,fabien.allemand@totalenergies.com,,5/20/2023 0:00,16.0000000,17.0000000,43.32863600000,5.083112000000,,"Anse de Boumandariel, Martigues (13)",28605,observation-650cffda-f831-49e7-965e-194d63e04f3b-6,https://biolit.fr/observations/observation-650cffda-f831-49e7-965e-194d63e04f3b-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/230520-13_AnseBoumandariel_x6737_A identifier_DxO-scaled.jpg,,FALSE, +N1,58520,sortie-650cffda-f831-49e7-965e-194d63e04f3b,https://biolit.fr/sorties/sortie-650cffda-f831-49e7-965e-194d63e04f3b/,fabien.allemand@totalenergies.com,,5/20/2023 0:00,16.0000000,17.0000000,43.32863600000,5.083112000000,,"Anse de Boumandariel, Martigues (13)",28607,observation-650cffda-f831-49e7-965e-194d63e04f3b-7,https://biolit.fr/observations/observation-650cffda-f831-49e7-965e-194d63e04f3b-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/230520-13_AnseBoumandariel_x6733_DxO-scaled.jpg,,FALSE, +N1,58521,sortie-b1968df7-c524-4e6d-b06f-82bed50946df,https://biolit.fr/sorties/sortie-b1968df7-c524-4e6d-b06f-82bed50946df/,Marine,,5/24/2023 0:00,13.0000000,14.0:45,46.146676000000,-1.209353000000,Planète Mer,Chef de baie,28609,observation-b1968df7-c524-4e6d-b06f-82bed50946df,https://biolit.fr/observations/observation-b1968df7-c524-4e6d-b06f-82bed50946df/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230524_134802_6xsf0uFU8w.jpeg,,TRUE, +N1,58521,sortie-b1968df7-c524-4e6d-b06f-82bed50946df,https://biolit.fr/sorties/sortie-b1968df7-c524-4e6d-b06f-82bed50946df/,Marine,,5/24/2023 0:00,13.0000000,14.0:45,46.146676000000,-1.209353000000,Planète Mer,Chef de baie,28611,observation-b1968df7-c524-4e6d-b06f-82bed50946df-2,https://biolit.fr/observations/observation-b1968df7-c524-4e6d-b06f-82bed50946df-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230524_134437_z4qDijQR48.jpeg,,TRUE, +N1,58521,sortie-b1968df7-c524-4e6d-b06f-82bed50946df,https://biolit.fr/sorties/sortie-b1968df7-c524-4e6d-b06f-82bed50946df/,Marine,,5/24/2023 0:00,13.0000000,14.0:45,46.146676000000,-1.209353000000,Planète Mer,Chef de baie,28613,observation-b1968df7-c524-4e6d-b06f-82bed50946df-3,https://biolit.fr/observations/observation-b1968df7-c524-4e6d-b06f-82bed50946df-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230524_135255_8ieW4RQs9k.jpeg,,FALSE, +N1,58521,sortie-b1968df7-c524-4e6d-b06f-82bed50946df,https://biolit.fr/sorties/sortie-b1968df7-c524-4e6d-b06f-82bed50946df/,Marine,,5/24/2023 0:00,13.0000000,14.0:45,46.146676000000,-1.209353000000,Planète Mer,Chef de baie,28615,observation-b1968df7-c524-4e6d-b06f-82bed50946df-4,https://biolit.fr/observations/observation-b1968df7-c524-4e6d-b06f-82bed50946df-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230524_135247_svQ17gE847.jpeg,,FALSE, +N1,58521,sortie-b1968df7-c524-4e6d-b06f-82bed50946df,https://biolit.fr/sorties/sortie-b1968df7-c524-4e6d-b06f-82bed50946df/,Marine,,5/24/2023 0:00,13.0000000,14.0:45,46.146676000000,-1.209353000000,Planète Mer,Chef de baie,28617,observation-b1968df7-c524-4e6d-b06f-82bed50946df-5,https://biolit.fr/observations/observation-b1968df7-c524-4e6d-b06f-82bed50946df-5/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230524_145100-scaled.jpg,,TRUE, +N1,58521,sortie-b1968df7-c524-4e6d-b06f-82bed50946df,https://biolit.fr/sorties/sortie-b1968df7-c524-4e6d-b06f-82bed50946df/,Marine,,5/24/2023 0:00,13.0000000,14.0:45,46.146676000000,-1.209353000000,Planète Mer,Chef de baie,28619,observation-b1968df7-c524-4e6d-b06f-82bed50946df-6,https://biolit.fr/observations/observation-b1968df7-c524-4e6d-b06f-82bed50946df-6/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230524_134417-scaled.jpg,,TRUE, +N1,58522,sortie-3e385f60-2a07-460e-b531-afe89d49d383,https://biolit.fr/sorties/sortie-3e385f60-2a07-460e-b531-afe89d49d383/,Marine,,5/19/2023 0:00,16.0000000,16.0000000,46.147898000000,-1.210709000000,,Chef de baie,28621,observation-3e385f60-2a07-460e-b531-afe89d49d383,https://biolit.fr/observations/observation-3e385f60-2a07-460e-b531-afe89d49d383/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230519_161025_compress43-scaled.jpg,,TRUE, +N1,58522,sortie-3e385f60-2a07-460e-b531-afe89d49d383,https://biolit.fr/sorties/sortie-3e385f60-2a07-460e-b531-afe89d49d383/,Marine,,5/19/2023 0:00,16.0000000,16.0000000,46.147898000000,-1.210709000000,,Chef de baie,28623,observation-3e385f60-2a07-460e-b531-afe89d49d383-2,https://biolit.fr/observations/observation-3e385f60-2a07-460e-b531-afe89d49d383-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230519_161001_compress40-scaled.jpg,,FALSE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28625,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,,,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-89-min.jpg,,FALSE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28627,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-2,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-88-min.jpg,,FALSE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28629,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-3,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-87-min.jpg,,FALSE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28631,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-4,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-85-min.jpg,,FALSE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28633,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-5,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-31-min.jpg,,FALSE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28635,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-6,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-30-min.jpg,,FALSE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28637,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-7,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-73-min.jpg,,FALSE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28639,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-8,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-8/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-82-min.jpg,,TRUE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28641,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-9,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-9/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-80-min.jpg,,TRUE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28643,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-10,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-10/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-79-min.jpg,,TRUE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28645,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-11,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-11/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-78-min.jpg,,TRUE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28647,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-12,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-12/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-70-min.jpg,,TRUE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28649,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-13,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-49-min.jpg,,FALSE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28651,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-14,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-34-min.jpg,,FALSE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28653,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-15,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-23-min.jpg,,FALSE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28655,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-16,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-15-min.jpg,,FALSE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28657,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-17,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-39-scaled.jpg,,FALSE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28659,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-18,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-45-scaled.jpg,,FALSE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28661,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-19,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-71-min.jpg,,FALSE, +N1,58523,sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d,https://biolit.fr/sorties/sortie-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d/,divers@ecrivez-moi.com,,5/19/2023 0:00,10.0000000,13.0000000,47.693931000000,-3.322351000000,,Grande plage presqu'île de Gâvres,28663,observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-20,https://biolit.fr/observations/observation-c399ed27-f7a7-43cc-aa7b-32bc1b2c5e3d-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/gavres-2023-05-19-96-min.jpg,,FALSE, +N1,58524,sortie-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2,https://biolit.fr/sorties/sortie-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2/,merwan.lomri@totalenergies.com,,05/02/2023,11.0000000,14.0000000,47.489725000000,-2.533066000000,,Port Lin,28665,observation-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2,https://biolit.fr/observations/observation-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1704-scaled.jpg,,TRUE, +N1,58524,sortie-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2,https://biolit.fr/sorties/sortie-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2/,merwan.lomri@totalenergies.com,,05/02/2023,11.0000000,14.0000000,47.489725000000,-2.533066000000,,Port Lin,28667,observation-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2-2,https://biolit.fr/observations/observation-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1705-scaled.jpg,,FALSE, +N1,58524,sortie-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2,https://biolit.fr/sorties/sortie-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2/,merwan.lomri@totalenergies.com,,05/02/2023,11.0000000,14.0000000,47.489725000000,-2.533066000000,,Port Lin,28669,observation-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2-3,https://biolit.fr/observations/observation-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1707-scaled.jpg,,FALSE, +N1,58524,sortie-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2,https://biolit.fr/sorties/sortie-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2/,merwan.lomri@totalenergies.com,,05/02/2023,11.0000000,14.0000000,47.489725000000,-2.533066000000,,Port Lin,28671,observation-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2-4,https://biolit.fr/observations/observation-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2-4/,Pelvetia canaliculata,Pelvétie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1718-scaled.jpg,,TRUE, +N1,58524,sortie-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2,https://biolit.fr/sorties/sortie-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2/,merwan.lomri@totalenergies.com,,05/02/2023,11.0000000,14.0000000,47.489725000000,-2.533066000000,,Port Lin,28673,observation-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2-5,https://biolit.fr/observations/observation-f1fb9796-9a94-4d94-9489-c3fde3fbf2e2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1737-rotated.jpg,,FALSE, +N1,58525,sortie-e00c8f75-b850-4af2-a274-bff61cbcd05c,https://biolit.fr/sorties/sortie-e00c8f75-b850-4af2-a274-bff61cbcd05c/,Lexton,,4/20/2023 0:00,13.000005,13.0:25,48.287440000000,-4.507337000000,,"Crozon, Le Fret",28674,observation-e00c8f75-b850-4af2-a274-bff61cbcd05c,https://biolit.fr/observations/observation-e00c8f75-b850-4af2-a274-bff61cbcd05c/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230420_132222 Bourse de mer Codium bursa Algue verte-scaled.jpg,,FALSE, +N1,58526,sortie-fea3bf94-a243-4139-89b5-0f8d166e68c7,https://biolit.fr/sorties/sortie-fea3bf94-a243-4139-89b5-0f8d166e68c7/,Lexton,,4/20/2023 0:00,13.0000000,13.0:45,48.286996000000,-4.507283000000,,"Crozon, Le Fret",28676,observation-fea3bf94-a243-4139-89b5-0f8d166e68c7,https://biolit.fr/observations/observation-fea3bf94-a243-4139-89b5-0f8d166e68c7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230420_134539 Lièvre de mer Aplysia punctata-scaled.jpg,,FALSE, +N1,58527,sortie-2d476366-9262-46b3-9565-c242e294628d,https://biolit.fr/sorties/sortie-2d476366-9262-46b3-9565-c242e294628d/,Céline,,4/28/2023 0:00,15.0000000,16.0000000,43.3213330000,6.664951000000,,Plage de la nartelle Sainte Maxime,28678,observation-2d476366-9262-46b3-9565-c242e294628d,https://biolit.fr/observations/observation-2d476366-9262-46b3-9565-c242e294628d/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/velelles.jpg,,TRUE, +N1,58527,sortie-2d476366-9262-46b3-9565-c242e294628d,https://biolit.fr/sorties/sortie-2d476366-9262-46b3-9565-c242e294628d/,Céline,,4/28/2023 0:00,15.0000000,16.0000000,43.3213330000,6.664951000000,,Plage de la nartelle Sainte Maxime,28680,observation-2d476366-9262-46b3-9565-c242e294628d-2,https://biolit.fr/observations/observation-2d476366-9262-46b3-9565-c242e294628d-2/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Sabot de Venus.jpg,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28682,observation-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita_13.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28684,observation-e3240bd6-2e92-48e3-9e70-755495d00843-2,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_26.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28686,observation-e3240bd6-2e92-48e3-9e70-755495d00843-3,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue sp_3.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28688,observation-e3240bd6-2e92-48e3-9e70-755495d00843-4,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-4/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomium eppiphium.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28690,observation-e3240bd6-2e92-48e3-9e70-755495d00843-5,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-5/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/Armeria maritima_1.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28692,observation-e3240bd6-2e92-48e3-9e70-755495d00843-6,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/ascidie sp_9.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28694,observation-e3240bd6-2e92-48e3-9e70-755495d00843-7,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-7/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/Ascophyllum nodosum_2.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28696,observation-e3240bd6-2e92-48e3-9e70-755495d00843-8,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-8/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_25.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28698,observation-e3240bd6-2e92-48e3-9e70-755495d00843-9,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-9/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_30.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28700,observation-e3240bd6-2e92-48e3-9e70-755495d00843-10,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-10/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_17.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28702,observation-e3240bd6-2e92-48e3-9e70-755495d00843-11,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-11/,Atriplex halimus,Arroche marine,,https://biolit.fr/wp-content/uploads/2023/07/Atriplex marimus.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28704,observation-e3240bd6-2e92-48e3-9e70-755495d00843-12,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-12/,Bittium reticulatum,Cérithe réticulé,,https://biolit.fr/wp-content/uploads/2023/07/Bittium reticulatum.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28706,observation-e3240bd6-2e92-48e3-9e70-755495d00843-13,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-13/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_19.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28708,observation-e3240bd6-2e92-48e3-9e70-755495d00843-14,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-14/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28709,observation-e3240bd6-2e92-48e3-9e70-755495d00843-15,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Calliactis tuberculata.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28711,observation-e3240bd6-2e92-48e3-9e70-755495d00843-16,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-16/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_28.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28713,observation-e3240bd6-2e92-48e3-9e70-755495d00843-17,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-17/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_25.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28715,observation-e3240bd6-2e92-48e3-9e70-755495d00843-18,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-18/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/Clibanarius erythropus_5.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28717,observation-e3240bd6-2e92-48e3-9e70-755495d00843-19,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/crithmum maritimum.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28719,observation-e3240bd6-2e92-48e3-9e70-755495d00843-20,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-20/,Dysidea fragilis,Eponge mie de pain mouillée,,https://biolit.fr/wp-content/uploads/2023/07/Dysidea fragilis_4.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28721,observation-e3240bd6-2e92-48e3-9e70-755495d00843-21,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/Eolidia sp.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28723,observation-e3240bd6-2e92-48e3-9e70-755495d00843-22,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 1_13.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28725,observation-e3240bd6-2e92-48e3-9e70-755495d00843-23,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_40.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28727,observation-e3240bd6-2e92-48e3-9e70-755495d00843-24,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-24/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/Euphorbia maritimum sp.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28729,observation-e3240bd6-2e92-48e3-9e70-755495d00843-25,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-25/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/Fucus serratus_6.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28731,observation-e3240bd6-2e92-48e3-9e70-755495d00843-26,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-26/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/Fucus vesiculosus_0.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28733,observation-e3240bd6-2e92-48e3-9e70-755495d00843-27,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-27/,Gari depressa,Psammobie déprimée,,https://biolit.fr/wp-content/uploads/2023/07/Gari depressa_14.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28735,observation-e3240bd6-2e92-48e3-9e70-755495d00843-28,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-28/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Gibbula magus_2.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28737,observation-e3240bd6-2e92-48e3-9e70-755495d00843-29,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gobie sp_3.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28739,observation-e3240bd6-2e92-48e3-9e70-755495d00843-30,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/haliotis tuberculata_2.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28741,observation-e3240bd6-2e92-48e3-9e70-755495d00843-31,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/Heteranomia squamula_6.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28743,observation-e3240bd6-2e92-48e3-9e70-755495d00843-32,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-32/,Hiatella arctica,Hiatelle ridée,,https://biolit.fr/wp-content/uploads/2023/07/Hiatella arctica.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28745,observation-e3240bd6-2e92-48e3-9e70-755495d00843-33,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-33/,Isozoanthus sulcatus,Anémone chocolat,,https://biolit.fr/wp-content/uploads/2023/07/Isozoanthus sulcatus_9.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28747,observation-e3240bd6-2e92-48e3-9e70-755495d00843-34,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-34/,Lagurus ovatus,Queue de lièvre,,https://biolit.fr/wp-content/uploads/2023/07/Lagurus ovatus_1.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28749,observation-e3240bd6-2e92-48e3-9e70-755495d00843-35,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona spp.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28751,observation-e3240bd6-2e92-48e3-9e70-755495d00843-36,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-36/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_15.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28753,observation-e3240bd6-2e92-48e3-9e70-755495d00843-37,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-37/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/Lipophrys pholis_3.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28755,observation-e3240bd6-2e92-48e3-9e70-755495d00843-38,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-38/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lithophyllum incrustans_0.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28757,observation-e3240bd6-2e92-48e3-9e70-755495d00843-39,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-39/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_16.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28759,observation-e3240bd6-2e92-48e3-9e70-755495d00843-40,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-40/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina obtusata_4.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28761,observation-e3240bd6-2e92-48e3-9e70-755495d00843-41,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-41/,Lomentaria articulata,Algue saucisson,,https://biolit.fr/wp-content/uploads/2023/07/Lomentaria articulata_4.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28763,observation-e3240bd6-2e92-48e3-9e70-755495d00843-42,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-42/,Lutraria magna,Grande lutraire,,https://biolit.fr/wp-content/uploads/2023/07/Lutraria oblonga_0.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28765,observation-e3240bd6-2e92-48e3-9e70-755495d00843-43,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-43/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_34.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28767,observation-e3240bd6-2e92-48e3-9e70-755495d00843-44,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-44/,Metridium senile,Œillet de mer,,https://biolit.fr/wp-content/uploads/2023/07/metridium senile pe.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28769,observation-e3240bd6-2e92-48e3-9e70-755495d00843-45,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-45/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia_16.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28771,observation-e3240bd6-2e92-48e3-9e70-755495d00843-46,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-46/,Modiolus barbatus,Modiole barbue,,https://biolit.fr/wp-content/uploads/2023/07/Modiola barbatus.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28773,observation-e3240bd6-2e92-48e3-9e70-755495d00843-47,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-47/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_21.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28775,observation-e3240bd6-2e92-48e3-9e70-755495d00843-48,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-48/,,,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_24.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28777,observation-e3240bd6-2e92-48e3-9e70-755495d00843-49,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-49/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_25.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28779,observation-e3240bd6-2e92-48e3-9e70-755495d00843-50,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-50/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebra erinaceus_8.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28781,observation-e3240bd6-2e92-48e3-9e70-755495d00843-51,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-51/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ophiothrix sp_4.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28783,observation-e3240bd6-2e92-48e3-9e70-755495d00843-52,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-52/,,,,https://biolit.fr/wp-content/uploads/2023/07/Osilinus lineatus.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28785,observation-e3240bd6-2e92-48e3-9e70-755495d00843-53,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-53/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/Osmundea pinnitafida.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28787,observation-e3240bd6-2e92-48e3-9e70-755495d00843-54,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-54/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/Palaemon elegans.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28789,observation-e3240bd6-2e92-48e3-9e70-755495d00843-55,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-55/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Paracentrotus lividus_8.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28791,observation-e3240bd6-2e92-48e3-9e70-755495d00843-56,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-56/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patella intermedia.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28793,observation-e3240bd6-2e92-48e3-9e70-755495d00843-57,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-57/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/07/Patella vulgata_2.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28795,observation-e3240bd6-2e92-48e3-9e70-755495d00843-58,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-58/,,,,https://biolit.fr/wp-content/uploads/2023/05/Pelvetia caniculata-scaled.jpg,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28796,observation-e3240bd6-2e92-48e3-9e70-755495d00843-59,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-59/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/Perforatus perforatus_2.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28798,observation-e3240bd6-2e92-48e3-9e70-755495d00843-60,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-60/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/Pisidia longicornis_14.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28800,observation-e3240bd6-2e92-48e3-9e70-755495d00843-61,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-61/,,,,https://biolit.fr/wp-content/uploads/2023/07/Plante sp 2.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28802,observation-e3240bd6-2e92-48e3-9e70-755495d00843-62,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-62/,,,,https://biolit.fr/wp-content/uploads/2023/07/Plante sp 3.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28804,observation-e3240bd6-2e92-48e3-9e70-755495d00843-63,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-63/,,,,https://biolit.fr/wp-content/uploads/2023/07/Plante sp 4.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28806,observation-e3240bd6-2e92-48e3-9e70-755495d00843-64,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-64/,,,,https://biolit.fr/wp-content/uploads/2023/07/Plante sp 5.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28808,observation-e3240bd6-2e92-48e3-9e70-755495d00843-65,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-65/,,,,https://biolit.fr/wp-content/uploads/2023/07/plante sp_0.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28810,observation-e3240bd6-2e92-48e3-9e70-755495d00843-66,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-66/,,,,https://biolit.fr/wp-content/uploads/2023/07/plante sp1.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28812,observation-e3240bd6-2e92-48e3-9e70-755495d00843-67,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-67/,,,,https://biolit.fr/wp-content/uploads/2023/07/Plante sp6.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28814,observation-e3240bd6-2e92-48e3-9e70-755495d00843-68,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-68/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pleurobrachia pileus.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28816,observation-e3240bd6-2e92-48e3-9e70-755495d00843-69,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-69/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ponte gastéro.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28818,observation-e3240bd6-2e92-48e3-9e70-755495d00843-70,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-70/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/porcellana platycheles_7.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28820,observation-e3240bd6-2e92-48e3-9e70-755495d00843-71,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-71/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_34.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28822,observation-e3240bd6-2e92-48e3-9e70-755495d00843-72,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-72/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pycnogonide sp_3.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28824,observation-e3240bd6-2e92-48e3-9e70-755495d00843-73,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-73/,,,,https://biolit.fr/wp-content/uploads/2023/07/Raphanus raphanistrum.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28826,observation-e3240bd6-2e92-48e3-9e70-755495d00843-74,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-74/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes decussatus_5.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28828,observation-e3240bd6-2e92-48e3-9e70-755495d00843-75,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-75/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes phlippinarum.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28830,observation-e3240bd6-2e92-48e3-9e70-755495d00843-76,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-76/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sedum acre_0.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28832,observation-e3240bd6-2e92-48e3-9e70-755495d00843-77,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-77/,,,,https://biolit.fr/wp-content/uploads/2023/07/Spirobranchus triqueter_2.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28834,observation-e3240bd6-2e92-48e3-9e70-755495d00843-78,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-78/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Steromphala umbilicalis_6.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28836,observation-e3240bd6-2e92-48e3-9e70-755495d00843-79,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-79/,Tectura virginea,Acmée à damier rose,,https://biolit.fr/wp-content/uploads/2023/07/Tectura virginea_1.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28838,observation-e3240bd6-2e92-48e3-9e70-755495d00843-80,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-80/,,,,https://biolit.fr/wp-content/uploads/2023/07/Terpios gelatinosus_0.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28840,observation-e3240bd6-2e92-48e3-9e70-755495d00843-81,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-81/,,,,https://biolit.fr/wp-content/uploads/2023/07/Venerupis aurea_5.PNG,,FALSE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28842,observation-e3240bd6-2e92-48e3-9e70-755495d00843-82,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-82/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/venus verrucosa échouage.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28844,observation-e3240bd6-2e92-48e3-9e70-755495d00843-83,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-83/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa_13.PNG,,TRUE, +N1,58528,sortie-e3240bd6-2e92-48e3-9e70-755495d00843,https://biolit.fr/sorties/sortie-e3240bd6-2e92-48e3-9e70-755495d00843/,Roman,,4/22/2023 0:00,13.0:15,15.0000000,47.703297000000,-3.349592000000,Observatoire du Plancton,Port-Louis,28846,observation-e3240bd6-2e92-48e3-9e70-755495d00843-84,https://biolit.fr/observations/observation-e3240bd6-2e92-48e3-9e70-755495d00843-84/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_25.PNG,,TRUE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28848,observation-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38/,,,,https://biolit.fr/wp-content/uploads/2023/07/meduse-scaled.jpg,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28849,observation-2c2203d3-727c-4b05-a47a-e74027266d38-2,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Meduse2.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28851,observation-2c2203d3-727c-4b05-a47a-e74027266d38-3,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0200_0.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28853,observation-2c2203d3-727c-4b05-a47a-e74027266d38-4,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-4/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_0201_2.JPG,,TRUE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28855,observation-2c2203d3-727c-4b05-a47a-e74027266d38-5,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-5/,",",,https://biolit.fr/wp-content/uploads/2023/07/DSC_0208_2.JPG,,FALSE,, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28857,observation-2c2203d3-727c-4b05-a47a-e74027266d38-6,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0212_0.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28859,observation-2c2203d3-727c-4b05-a47a-e74027266d38-7,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0211.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28861,observation-2c2203d3-727c-4b05-a47a-e74027266d38-8,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0210.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28863,observation-2c2203d3-727c-4b05-a47a-e74027266d38-9,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0209.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28865,observation-2c2203d3-727c-4b05-a47a-e74027266d38-10,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0214_0.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28867,observation-2c2203d3-727c-4b05-a47a-e74027266d38-11,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0213.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28869,observation-2c2203d3-727c-4b05-a47a-e74027266d38-12,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0223_0.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28871,observation-2c2203d3-727c-4b05-a47a-e74027266d38-13,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230422_112348-rotated.jpg,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28873,observation-2c2203d3-727c-4b05-a47a-e74027266d38-14,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0226_0.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28875,observation-2c2203d3-727c-4b05-a47a-e74027266d38-15,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1580-rotated.jpg,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28877,observation-2c2203d3-727c-4b05-a47a-e74027266d38-16,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0231.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28879,observation-2c2203d3-727c-4b05-a47a-e74027266d38-17,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0217_0.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28881,observation-2c2203d3-727c-4b05-a47a-e74027266d38-18,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0230_0.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28883,observation-2c2203d3-727c-4b05-a47a-e74027266d38-19,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0229.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28885,observation-2c2203d3-727c-4b05-a47a-e74027266d38-20,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0234_0.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28887,observation-2c2203d3-727c-4b05-a47a-e74027266d38-21,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0242.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28889,observation-2c2203d3-727c-4b05-a47a-e74027266d38-22,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0243.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28891,observation-2c2203d3-727c-4b05-a47a-e74027266d38-23,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0239.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28893,observation-2c2203d3-727c-4b05-a47a-e74027266d38-24,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0241_0.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28895,observation-2c2203d3-727c-4b05-a47a-e74027266d38-25,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0245.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28897,observation-2c2203d3-727c-4b05-a47a-e74027266d38-26,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0246.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28899,observation-2c2203d3-727c-4b05-a47a-e74027266d38-27,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0247.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28901,observation-2c2203d3-727c-4b05-a47a-e74027266d38-28,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0252.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28903,observation-2c2203d3-727c-4b05-a47a-e74027266d38-29,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0251.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28905,observation-2c2203d3-727c-4b05-a47a-e74027266d38-30,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0253.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28907,observation-2c2203d3-727c-4b05-a47a-e74027266d38-31,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0254.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28909,observation-2c2203d3-727c-4b05-a47a-e74027266d38-32,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1444.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28911,observation-2c2203d3-727c-4b05-a47a-e74027266d38-33,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1443-rotated.jpg,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28913,observation-2c2203d3-727c-4b05-a47a-e74027266d38-34,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1449-rotated.jpg,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28915,observation-2c2203d3-727c-4b05-a47a-e74027266d38-35,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1448.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28917,observation-2c2203d3-727c-4b05-a47a-e74027266d38-36,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-36/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1518.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28919,observation-2c2203d3-727c-4b05-a47a-e74027266d38-37,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1519.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28921,observation-2c2203d3-727c-4b05-a47a-e74027266d38-38,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-38/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1546.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28923,observation-2c2203d3-727c-4b05-a47a-e74027266d38-39,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-39/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1549.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28925,observation-2c2203d3-727c-4b05-a47a-e74027266d38-40,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-40/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1561.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28927,observation-2c2203d3-727c-4b05-a47a-e74027266d38-41,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-41/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1566.JPG,,TRUE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28929,observation-2c2203d3-727c-4b05-a47a-e74027266d38-42,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-42/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1570.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28931,observation-2c2203d3-727c-4b05-a47a-e74027266d38-43,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-43/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1591-rotated.jpg,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28933,observation-2c2203d3-727c-4b05-a47a-e74027266d38-44,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-44/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1604.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28935,observation-2c2203d3-727c-4b05-a47a-e74027266d38-45,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-45/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1610.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28937,observation-2c2203d3-727c-4b05-a47a-e74027266d38-46,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-46/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1616.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28939,observation-2c2203d3-727c-4b05-a47a-e74027266d38-47,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-47/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1620-rotated.jpg,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28941,observation-2c2203d3-727c-4b05-a47a-e74027266d38-48,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-48/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1625.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28943,observation-2c2203d3-727c-4b05-a47a-e74027266d38-49,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-49/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1653-rotated.jpg,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28945,observation-2c2203d3-727c-4b05-a47a-e74027266d38-50,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-50/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1652.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28947,observation-2c2203d3-727c-4b05-a47a-e74027266d38-51,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-51/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1657.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28949,observation-2c2203d3-727c-4b05-a47a-e74027266d38-52,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-52/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0258.JPG,,FALSE, +N1,58529,sortie-2c2203d3-727c-4b05-a47a-e74027266d38,https://biolit.fr/sorties/sortie-2c2203d3-727c-4b05-a47a-e74027266d38/,mboyer@groupcls.com,,4/22/2023 0:00,10.0000000,12.0000000,42.944813000000,3.033958000000,,Leucate - La Franqui,28951,observation-2c2203d3-727c-4b05-a47a-e74027266d38-53,https://biolit.fr/observations/observation-2c2203d3-727c-4b05-a47a-e74027266d38-53/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0257.JPG,,FALSE, +N1,58530,sortie-c903631a-2345-4fd5-821a-61900e54611d,https://biolit.fr/sorties/sortie-c903631a-2345-4fd5-821a-61900e54611d/,julien.queinnec@gmail.com,,03/12/2023,15.0000000,15.0:45,47.474013000000,-2.489252000000,,Penestin,28953,observation-c903631a-2345-4fd5-821a-61900e54611d,https://biolit.fr/observations/observation-c903631a-2345-4fd5-821a-61900e54611d/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/20230312_143006-scaled.jpg,,TRUE, +N1,58530,sortie-c903631a-2345-4fd5-821a-61900e54611d,https://biolit.fr/sorties/sortie-c903631a-2345-4fd5-821a-61900e54611d/,julien.queinnec@gmail.com,,03/12/2023,15.0000000,15.0:45,47.474013000000,-2.489252000000,,Penestin,28955,observation-c903631a-2345-4fd5-821a-61900e54611d-2,https://biolit.fr/observations/observation-c903631a-2345-4fd5-821a-61900e54611d-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20230312_144853-scaled.jpg,,TRUE, +N1,58530,sortie-c903631a-2345-4fd5-821a-61900e54611d,https://biolit.fr/sorties/sortie-c903631a-2345-4fd5-821a-61900e54611d/,julien.queinnec@gmail.com,,03/12/2023,15.0000000,15.0:45,47.474013000000,-2.489252000000,,Penestin,28957,observation-c903631a-2345-4fd5-821a-61900e54611d-3,https://biolit.fr/observations/observation-c903631a-2345-4fd5-821a-61900e54611d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230312_145454-scaled.jpg,,FALSE, +N1,58531,sortie-66d1c5ab-630f-4573-854c-9eb74dc4c019,https://biolit.fr/sorties/sortie-66d1c5ab-630f-4573-854c-9eb74dc4c019/,Alain Denniel,,03/05/2023,8.0000000,9.0000000,47.333025000000,-2.488828000000,,Marais salants de Guérande,28959,observation-66d1c5ab-630f-4573-854c-9eb74dc4c019,https://biolit.fr/observations/observation-66d1c5ab-630f-4573-854c-9eb74dc4c019/,,,,https://biolit.fr/wp-content/uploads/2023/07/_DSC1206-01_2.jpg,,FALSE, +N1,58531,sortie-66d1c5ab-630f-4573-854c-9eb74dc4c019,https://biolit.fr/sorties/sortie-66d1c5ab-630f-4573-854c-9eb74dc4c019/,Alain Denniel,,03/05/2023,8.0000000,9.0000000,47.333025000000,-2.488828000000,,Marais salants de Guérande,28961,observation-66d1c5ab-630f-4573-854c-9eb74dc4c019-2,https://biolit.fr/observations/observation-66d1c5ab-630f-4573-854c-9eb74dc4c019-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/_DSC1161_2-scaled.jpg,,FALSE, +N1,58531,sortie-66d1c5ab-630f-4573-854c-9eb74dc4c019,https://biolit.fr/sorties/sortie-66d1c5ab-630f-4573-854c-9eb74dc4c019/,Alain Denniel,,03/05/2023,8.0000000,9.0000000,47.333025000000,-2.488828000000,,Marais salants de Guérande,28963,observation-66d1c5ab-630f-4573-854c-9eb74dc4c019-3,https://biolit.fr/observations/observation-66d1c5ab-630f-4573-854c-9eb74dc4c019-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/_DSC1158_2.jpg,,FALSE, +N1,58532,sortie-c6b6f6c9-0933-48f7-a894-7b1f8db7ccc3,https://biolit.fr/sorties/sortie-c6b6f6c9-0933-48f7-a894-7b1f8db7ccc3/,RIEM,,4/17/2023 0:00,10.0000000,10.0:45,47.587152000000,-2.874308000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Golfe du Morbihan - Ile aux moines -Creizic,28965,observation-c6b6f6c9-0933-48f7-a894-7b1f8db7ccc3,https://biolit.fr/observations/observation-c6b6f6c9-0933-48f7-a894-7b1f8db7ccc3/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/os de seiche_0.jpg,,TRUE, +N1,58533,sortie-182c1d37-9f0e-4d72-8259-559be6b654c0,https://biolit.fr/sorties/sortie-182c1d37-9f0e-4d72-8259-559be6b654c0/,philippe.solans@totalenergies.com,,04/07/2023,11.0000000,12.0000000,43.409209000000,-1.636440000000,,Erromardie Plage,28967,observation-182c1d37-9f0e-4d72-8259-559be6b654c0,https://biolit.fr/observations/observation-182c1d37-9f0e-4d72-8259-559be6b654c0/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/concombreMer-scaled.jpg,,TRUE, +N1,58533,sortie-182c1d37-9f0e-4d72-8259-559be6b654c0,https://biolit.fr/sorties/sortie-182c1d37-9f0e-4d72-8259-559be6b654c0/,philippe.solans@totalenergies.com,,04/07/2023,11.0000000,12.0000000,43.409209000000,-1.636440000000,,Erromardie Plage,28969,observation-182c1d37-9f0e-4d72-8259-559be6b654c0-2,https://biolit.fr/observations/observation-182c1d37-9f0e-4d72-8259-559be6b654c0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabe1-scaled.jpg,,FALSE, +N1,58533,sortie-182c1d37-9f0e-4d72-8259-559be6b654c0,https://biolit.fr/sorties/sortie-182c1d37-9f0e-4d72-8259-559be6b654c0/,philippe.solans@totalenergies.com,,04/07/2023,11.0000000,12.0000000,43.409209000000,-1.636440000000,,Erromardie Plage,28971,observation-182c1d37-9f0e-4d72-8259-559be6b654c0-3,https://biolit.fr/observations/observation-182c1d37-9f0e-4d72-8259-559be6b654c0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabe2_0-scaled.jpg,,FALSE, +N1,58534,sortie-606af2f1-009c-45d5-971a-2ac947592682,https://biolit.fr/sorties/sortie-606af2f1-009c-45d5-971a-2ac947592682/,philippe.solans@totalenergies.com,,04/07/2023,10.0000000,11.0000000,43.414174000000,-1.628061000000,,Lafitenia,28973,observation-606af2f1-009c-45d5-971a-2ac947592682,https://biolit.fr/observations/observation-606af2f1-009c-45d5-971a-2ac947592682/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/sabotVenus-scaled.jpg,,TRUE, +N1,58534,sortie-606af2f1-009c-45d5-971a-2ac947592682,https://biolit.fr/sorties/sortie-606af2f1-009c-45d5-971a-2ac947592682/,philippe.solans@totalenergies.com,,04/07/2023,10.0000000,11.0000000,43.414174000000,-1.628061000000,,Lafitenia,28975,observation-606af2f1-009c-45d5-971a-2ac947592682-2,https://biolit.fr/observations/observation-606af2f1-009c-45d5-971a-2ac947592682-2/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/sabotVenus2-scaled.jpg,,TRUE, +N1,58534,sortie-606af2f1-009c-45d5-971a-2ac947592682,https://biolit.fr/sorties/sortie-606af2f1-009c-45d5-971a-2ac947592682/,philippe.solans@totalenergies.com,,04/07/2023,10.0000000,11.0000000,43.414174000000,-1.628061000000,,Lafitenia,28977,observation-606af2f1-009c-45d5-971a-2ac947592682-3,https://biolit.fr/observations/observation-606af2f1-009c-45d5-971a-2ac947592682-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/algueBizarre-min-scaled.jpg,,FALSE, +N1,58535,sortie-62ec6745-507a-43b5-aeec-551b978823cd,https://biolit.fr/sorties/sortie-62ec6745-507a-43b5-aeec-551b978823cd/,philippe.solans@totalenergies.com,,04/07/2023,9.0000000,10.0000000,43.42275600000,-1.619220000000,,Senix plage,28979,observation-62ec6745-507a-43b5-aeec-551b978823cd,https://biolit.fr/observations/observation-62ec6745-507a-43b5-aeec-551b978823cd/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1635-scaled.jpg,,FALSE, +N1,58535,sortie-62ec6745-507a-43b5-aeec-551b978823cd,https://biolit.fr/sorties/sortie-62ec6745-507a-43b5-aeec-551b978823cd/,philippe.solans@totalenergies.com,,04/07/2023,9.0000000,10.0000000,43.42275600000,-1.619220000000,,Senix plage,28981,observation-62ec6745-507a-43b5-aeec-551b978823cd-2,https://biolit.fr/observations/observation-62ec6745-507a-43b5-aeec-551b978823cd-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1638-scaled.jpg,,FALSE, +N1,58535,sortie-62ec6745-507a-43b5-aeec-551b978823cd,https://biolit.fr/sorties/sortie-62ec6745-507a-43b5-aeec-551b978823cd/,philippe.solans@totalenergies.com,,04/07/2023,9.0000000,10.0000000,43.42275600000,-1.619220000000,,Senix plage,28983,observation-62ec6745-507a-43b5-aeec-551b978823cd-3,https://biolit.fr/observations/observation-62ec6745-507a-43b5-aeec-551b978823cd-3/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1642-scaled.jpg,,TRUE, +N1,58535,sortie-62ec6745-507a-43b5-aeec-551b978823cd,https://biolit.fr/sorties/sortie-62ec6745-507a-43b5-aeec-551b978823cd/,philippe.solans@totalenergies.com,,04/07/2023,9.0000000,10.0000000,43.42275600000,-1.619220000000,,Senix plage,28985,observation-62ec6745-507a-43b5-aeec-551b978823cd-4,https://biolit.fr/observations/observation-62ec6745-507a-43b5-aeec-551b978823cd-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/cenitz_algue-min-scaled.jpg,,FALSE, +N1,58536,sortie-11eb6bb9-30cb-450c-8f57-06e6e73a26cc,https://biolit.fr/sorties/sortie-11eb6bb9-30cb-450c-8f57-06e6e73a26cc/,Romuald VIALE - EXPENATURE,,3/22/2023 0:00,9.0000000,12.0000000,43.159091000000,5.620160000000,,La Ciotat,28987,observation-11eb6bb9-30cb-450c-8f57-06e6e73a26cc,https://biolit.fr/observations/observation-11eb6bb9-30cb-450c-8f57-06e6e73a26cc/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230322_114017-scaled.jpg,,FALSE, +N1,58536,sortie-11eb6bb9-30cb-450c-8f57-06e6e73a26cc,https://biolit.fr/sorties/sortie-11eb6bb9-30cb-450c-8f57-06e6e73a26cc/,Romuald VIALE - EXPENATURE,,3/22/2023 0:00,9.0000000,12.0000000,43.159091000000,5.620160000000,,La Ciotat,28989,observation-11eb6bb9-30cb-450c-8f57-06e6e73a26cc-2,https://biolit.fr/observations/observation-11eb6bb9-30cb-450c-8f57-06e6e73a26cc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230322_114011_0-scaled.jpg,,FALSE, +N1,58537,sortie-f49e72a3-cea5-48e2-87be-f1438e0968a8,https://biolit.fr/sorties/sortie-f49e72a3-cea5-48e2-87be-f1438e0968a8/,Romuald VIALE - EXPENATURE,,3/21/2023 0:00,11.0000000,15.0000000,43.163520000000,5.606739000000,,La Ciotat,28991,observation-f49e72a3-cea5-48e2-87be-f1438e0968a8,https://biolit.fr/observations/observation-f49e72a3-cea5-48e2-87be-f1438e0968a8/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_9464.jpeg,,TRUE, +N1,58537,sortie-f49e72a3-cea5-48e2-87be-f1438e0968a8,https://biolit.fr/sorties/sortie-f49e72a3-cea5-48e2-87be-f1438e0968a8/,Romuald VIALE - EXPENATURE,,3/21/2023 0:00,11.0000000,15.0000000,43.163520000000,5.606739000000,,La Ciotat,28993,observation-f49e72a3-cea5-48e2-87be-f1438e0968a8-2,https://biolit.fr/observations/observation-f49e72a3-cea5-48e2-87be-f1438e0968a8-2/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_9465.jpeg,,TRUE, +N1,58537,sortie-f49e72a3-cea5-48e2-87be-f1438e0968a8,https://biolit.fr/sorties/sortie-f49e72a3-cea5-48e2-87be-f1438e0968a8/,Romuald VIALE - EXPENATURE,,3/21/2023 0:00,11.0000000,15.0000000,43.163520000000,5.606739000000,,La Ciotat,28995,observation-f49e72a3-cea5-48e2-87be-f1438e0968a8-3,https://biolit.fr/observations/observation-f49e72a3-cea5-48e2-87be-f1438e0968a8-3/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_9467.jpeg,,TRUE, +N1,58537,sortie-f49e72a3-cea5-48e2-87be-f1438e0968a8,https://biolit.fr/sorties/sortie-f49e72a3-cea5-48e2-87be-f1438e0968a8/,Romuald VIALE - EXPENATURE,,3/21/2023 0:00,11.0000000,15.0000000,43.163520000000,5.606739000000,,La Ciotat,28997,observation-f49e72a3-cea5-48e2-87be-f1438e0968a8-4,https://biolit.fr/observations/observation-f49e72a3-cea5-48e2-87be-f1438e0968a8-4/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_9468.jpeg,,TRUE, +N1,58537,sortie-f49e72a3-cea5-48e2-87be-f1438e0968a8,https://biolit.fr/sorties/sortie-f49e72a3-cea5-48e2-87be-f1438e0968a8/,Romuald VIALE - EXPENATURE,,3/21/2023 0:00,11.0000000,15.0000000,43.163520000000,5.606739000000,,La Ciotat,28999,observation-f49e72a3-cea5-48e2-87be-f1438e0968a8-5,https://biolit.fr/observations/observation-f49e72a3-cea5-48e2-87be-f1438e0968a8-5/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_9469.jpeg,,TRUE, +N1,58538,sortie-3630cbe9-9ceb-49c6-b325-d09b4bc65d8e,https://biolit.fr/sorties/sortie-3630cbe9-9ceb-49c6-b325-d09b4bc65d8e/,Romuald VIALE - EXPENATURE,,3/21/2023 0:00,11.0000000,15.0000000,43.163413000000,5.606765000000,,La Ciotat,29001,observation-3630cbe9-9ceb-49c6-b325-d09b4bc65d8e,https://biolit.fr/observations/observation-3630cbe9-9ceb-49c6-b325-d09b4bc65d8e/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG-9445.JPG,,TRUE, +N1,58539,sortie-10796c24-8da3-439a-b674-3f411c62f9ea,https://biolit.fr/sorties/sortie-10796c24-8da3-439a-b674-3f411c62f9ea/,Agathe Bouet,,1/27/2023 0:00,16.0000000,17.0000000,48.641003000000,-2.111808000000,Planète Mer,Grande Plage de Saint-Lunaire,29003,observation-10796c24-8da3-439a-b674-3f411c62f9ea,https://biolit.fr/observations/observation-10796c24-8da3-439a-b674-3f411c62f9ea/,Aplidium pallidum,Flocon pédonculé blanc,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20230126_154512705-scaled.jpg,,TRUE, +N1,58540,sortie-a9e2099c-ecf3-4e8d-b044-690b2b321d49,https://biolit.fr/sorties/sortie-a9e2099c-ecf3-4e8d-b044-690b2b321d49/,Agathe Bouet,,1/27/2023 0:00,16.0000000,17.0000000,48.642065000000,-2.112189000000,Planète Mer,Grande Plage de Saint-Lunaire,29005,observation-a9e2099c-ecf3-4e8d-b044-690b2b321d49,https://biolit.fr/observations/observation-a9e2099c-ecf3-4e8d-b044-690b2b321d49/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20230126_153638267-scaled.jpg,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29007,observation-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_25.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29009,observation-9167eb0a-c164-4a50-9830-8b7f14941723-2,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea_10.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29011,observation-9167eb0a-c164-4a50-9830-8b7f14941723-3,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algue sp_1.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29013,observation-9167eb0a-c164-4a50-9830-8b7f14941723-4,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_18.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29015,observation-9167eb0a-c164-4a50-9830-8b7f14941723-5,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-5/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/Ascophyllum nodosum_1.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29017,observation-9167eb0a-c164-4a50-9830-8b7f14941723-6,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-6/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_24.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29019,observation-9167eb0a-c164-4a50-9830-8b7f14941723-7,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-7/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/Balanus Perforatus perforatus.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29021,observation-9167eb0a-c164-4a50-9830-8b7f14941723-8,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-8/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_27.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29023,observation-9167eb0a-c164-4a50-9830-8b7f14941723-9,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Corallina officinalis.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29025,observation-9167eb0a-c164-4a50-9830-8b7f14941723-10,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-10/,Corella eumyota,Ascidie cartilagineuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Corella eumyota.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29027,observation-9167eb0a-c164-4a50-9830-8b7f14941723-11,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-11/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crepidula fornicata_9.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29029,observation-9167eb0a-c164-4a50-9830-8b7f14941723-12,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Didemnide sp_0.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29031,observation-9167eb0a-c164-4a50-9830-8b7f14941723-13,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_39.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29033,observation-9167eb0a-c164-4a50-9830-8b7f14941723-14,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-14/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/Fucus serratus_5.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29035,observation-9167eb0a-c164-4a50-9830-8b7f14941723-15,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-15/,Grateloupia turuturu,Grateloupe du Pacifique,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Grateloupia turuturu.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29037,observation-9167eb0a-c164-4a50-9830-8b7f14941723-16,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Heteranomia squamula_5.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29039,observation-9167eb0a-c164-4a50-9830-8b7f14941723-17,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/lepadogaster sp_0.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29041,observation-9167eb0a-c164-4a50-9830-8b7f14941723-18,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona sp_2.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29043,observation-9167eb0a-c164-4a50-9830-8b7f14941723-19,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lithophyllum incrustans.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29045,observation-9167eb0a-c164-4a50-9830-8b7f14941723-20,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-20/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_15.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29047,observation-9167eb0a-c164-4a50-9830-8b7f14941723-21,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-21/,Lomentaria articulata,Algue saucisson,,https://biolit.fr/wp-content/uploads/2023/07/Lomentaria articulata_3.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29049,observation-9167eb0a-c164-4a50-9830-8b7f14941723-22,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/Magallana gigas_0.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29051,observation-9167eb0a-c164-4a50-9830-8b7f14941723-23,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_33.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29053,observation-9167eb0a-c164-4a50-9830-8b7f14941723-24,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/Nassarius reticulatus_1.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29055,observation-9167eb0a-c164-4a50-9830-8b7f14941723-25,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-25/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_23.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29057,observation-9167eb0a-c164-4a50-9830-8b7f14941723-26,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-26/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis lumbriciformis_4.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29059,observation-9167eb0a-c164-4a50-9830-8b7f14941723-27,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-27/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_24.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29061,observation-9167eb0a-c164-4a50-9830-8b7f14941723-28,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-28/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebra erinaceus_7.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29063,observation-9167eb0a-c164-4a50-9830-8b7f14941723-29,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-29/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/Osmundea pinnitifida.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29065,observation-9167eb0a-c164-4a50-9830-8b7f14941723-30,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-30/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/Ostrea edulis_1.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29067,observation-9167eb0a-c164-4a50-9830-8b7f14941723-31,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patella ulyssiponensis pe.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29069,observation-9167eb0a-c164-4a50-9830-8b7f14941723-32,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-32/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/07/Patella vulgata_1.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29071,observation-9167eb0a-c164-4a50-9830-8b7f14941723-33,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/ponte de poisson sp.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29073,observation-9167eb0a-c164-4a50-9830-8b7f14941723-34,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-34/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_29.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29075,observation-9167eb0a-c164-4a50-9830-8b7f14941723-35,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/pylaiella pe.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29077,observation-9167eb0a-c164-4a50-9830-8b7f14941723-36,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-36/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes decussatus_4.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29079,observation-9167eb0a-c164-4a50-9830-8b7f14941723-37,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sabellaria sp.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29081,observation-9167eb0a-c164-4a50-9830-8b7f14941723-38,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-38/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Sepia officinalis_0.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29083,observation-9167eb0a-c164-4a50-9830-8b7f14941723-39,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-39/,,,,https://biolit.fr/wp-content/uploads/2023/07/Spirobrancher triqueter.PNG,,FALSE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29085,observation-9167eb0a-c164-4a50-9830-8b7f14941723-40,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-40/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Steromphala umbilicalis_5.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29087,observation-9167eb0a-c164-4a50-9830-8b7f14941723-41,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-41/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/Urticina felina_7.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29089,observation-9167eb0a-c164-4a50-9830-8b7f14941723-42,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-42/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa_12.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29091,observation-9167eb0a-c164-4a50-9830-8b7f14941723-43,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-43/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Watersipora subatra_11.PNG,,TRUE, +N1,58541,sortie-9167eb0a-c164-4a50-9830-8b7f14941723,https://biolit.fr/sorties/sortie-9167eb0a-c164-4a50-9830-8b7f14941723/,Roman,,3/24/2023 0:00,12.0000000,13.0000000,47.708680000000,-3.363083000000,,Port-Louis,29093,observation-9167eb0a-c164-4a50-9830-8b7f14941723-44,https://biolit.fr/observations/observation-9167eb0a-c164-4a50-9830-8b7f14941723-44/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_24.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29095,observation-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona fascicularis_7.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29097,observation-c70492dc-1491-4102-b005-4b211c17fa09-2,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis.jpg,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29099,observation-c70492dc-1491-4102-b005-4b211c17fa09-3,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-3/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_17.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29101,observation-c70492dc-1491-4102-b005-4b211c17fa09-4,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Anthopluera balii.jpg,,FALSE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29103,observation-c70492dc-1491-4102-b005-4b211c17fa09-5,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-5/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_23.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29105,observation-c70492dc-1491-4102-b005-4b211c17fa09-6,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-6/,Atelecyclus undecimdentatus,Grand crabe circulaire,,https://biolit.fr/wp-content/uploads/2023/07/Atelecyclus undecimdentatus.jpg,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29107,observation-c70492dc-1491-4102-b005-4b211c17fa09-7,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-7/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_16.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29109,observation-c70492dc-1491-4102-b005-4b211c17fa09-8,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-8/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/2023/07/Calliactis parasitica_0.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29111,observation-c70492dc-1491-4102-b005-4b211c17fa09-9,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Calyptreae chinensis_1.PNG,,FALSE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29113,observation-c70492dc-1491-4102-b005-4b211c17fa09-10,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-10/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_1.jpg,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29115,observation-c70492dc-1491-4102-b005-4b211c17fa09-11,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-11/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_13.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29117,observation-c70492dc-1491-4102-b005-4b211c17fa09-12,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-12/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crepidula fornicata_8.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29119,observation-c70492dc-1491-4102-b005-4b211c17fa09-13,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-13/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/doris pseudoargus pe.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29121,observation-c70492dc-1491-4102-b005-4b211c17fa09-14,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-14/,Ensis ensis,Couteau-sabre,,https://biolit.fr/wp-content/uploads/2023/07/ensis ensis.jpg,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29123,observation-c70492dc-1491-4102-b005-4b211c17fa09-15,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-15/,Epitonium clathrus,Scalaire,,https://biolit.fr/wp-content/uploads/2023/07/Epitonium clathrus_0.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29125,observation-c70492dc-1491-4102-b005-4b211c17fa09-16,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-16/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/fucus vesiculosus.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29127,observation-c70492dc-1491-4102-b005-4b211c17fa09-17,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-17/,Gari depressa,Psammobie déprimée,,https://biolit.fr/wp-content/uploads/2023/07/Gari depressa.jpg,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29129,observation-c70492dc-1491-4102-b005-4b211c17fa09-18,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbula maguq.PNG,,FALSE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29131,observation-c70492dc-1491-4102-b005-4b211c17fa09-19,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/Heteranomia squamula_4.PNG,,FALSE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29133,observation-c70492dc-1491-4102-b005-4b211c17fa09-20,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona sp_1.PNG,,FALSE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29135,observation-c70492dc-1491-4102-b005-4b211c17fa09-21,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-21/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_14.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29137,observation-c70492dc-1491-4102-b005-4b211c17fa09-22,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-22/,Lutraria lutraria,Lutraire elliptique,,https://biolit.fr/wp-content/uploads/2023/07/Lutraria lutraria.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29139,observation-c70492dc-1491-4102-b005-4b211c17fa09-23,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-23/,Lutraria magna,Grande lutraire,,https://biolit.fr/wp-content/uploads/2023/07/Lutraria oblonga.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29141,observation-c70492dc-1491-4102-b005-4b211c17fa09-24,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/Macropoda sp_3.PNG,,FALSE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29143,observation-c70492dc-1491-4102-b005-4b211c17fa09-25,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/Magallana gigas.PNG,,FALSE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29145,observation-c70492dc-1491-4102-b005-4b211c17fa09-26,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-26/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia_15.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29147,observation-c70492dc-1491-4102-b005-4b211c17fa09-27,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-27/,Modiolus barbatus,Modiole barbue,,https://biolit.fr/wp-content/uploads/2023/07/Modiolus barbatus_7.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29149,observation-c70492dc-1491-4102-b005-4b211c17fa09-28,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/mytilus edule.PNG,,FALSE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29151,observation-c70492dc-1491-4102-b005-4b211c17fa09-29,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-29/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebra erinaceus_6.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29153,observation-c70492dc-1491-4102-b005-4b211c17fa09-30,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-30/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/Ostrea edulis_0.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29155,observation-c70492dc-1491-4102-b005-4b211c17fa09-31,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-31/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/Pisidia longicornis_13.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29157,observation-c70492dc-1491-4102-b005-4b211c17fa09-32,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-32/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_28.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29159,observation-c70492dc-1491-4102-b005-4b211c17fa09-33,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-33/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_33.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29161,observation-c70492dc-1491-4102-b005-4b211c17fa09-34,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes decussatus_3.PNG,,FALSE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29163,observation-c70492dc-1491-4102-b005-4b211c17fa09-35,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes philipinarum_1.PNG,,FALSE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29165,observation-c70492dc-1491-4102-b005-4b211c17fa09-36,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-36/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Sargassum jap.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29167,observation-c70492dc-1491-4102-b005-4b211c17fa09-37,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/Venerupis aurea_4.PNG,,FALSE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29169,observation-c70492dc-1491-4102-b005-4b211c17fa09-38,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-38/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa_11.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29171,observation-c70492dc-1491-4102-b005-4b211c17fa09-39,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-39/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_24.PNG,,TRUE, +N1,58542,sortie-c70492dc-1491-4102-b005-4b211c17fa09,https://biolit.fr/sorties/sortie-c70492dc-1491-4102-b005-4b211c17fa09/,Roman,,3/23/2023 0:00,11.0000000,12.0000000,47.706965000000,-3.334357000000,Observatoire du Plancton,Riantec,29173,observation-c70492dc-1491-4102-b005-4b211c17fa09-40,https://biolit.fr/observations/observation-c70492dc-1491-4102-b005-4b211c17fa09-40/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_23.PNG,,TRUE, +N1,58543,sortie-c4a0c593-afd8-4fd6-9608-a55fcfe27fc6,https://biolit.fr/sorties/sortie-c4a0c593-afd8-4fd6-9608-a55fcfe27fc6/,LPO Occitanie (délégation Hérault),,3/22/2023 0:00,7.0000000,11.0000000,43.451102000000,3.809364000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,29175,observation-c4a0c593-afd8-4fd6-9608-a55fcfe27fc6,https://biolit.fr/observations/observation-c4a0c593-afd8-4fd6-9608-a55fcfe27fc6/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/original.jpeg,,TRUE, +N1,58543,sortie-c4a0c593-afd8-4fd6-9608-a55fcfe27fc6,https://biolit.fr/sorties/sortie-c4a0c593-afd8-4fd6-9608-a55fcfe27fc6/,LPO Occitanie (délégation Hérault),,3/22/2023 0:00,7.0000000,11.0000000,43.451102000000,3.809364000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,29177,observation-c4a0c593-afd8-4fd6-9608-a55fcfe27fc6-2,https://biolit.fr/observations/observation-c4a0c593-afd8-4fd6-9608-a55fcfe27fc6-2/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20230322_083548-scaled.jpg,,TRUE, +N1,58543,sortie-c4a0c593-afd8-4fd6-9608-a55fcfe27fc6,https://biolit.fr/sorties/sortie-c4a0c593-afd8-4fd6-9608-a55fcfe27fc6/,LPO Occitanie (délégation Hérault),,3/22/2023 0:00,7.0000000,11.0000000,43.451102000000,3.809364000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,29179,observation-c4a0c593-afd8-4fd6-9608-a55fcfe27fc6-3,https://biolit.fr/observations/observation-c4a0c593-afd8-4fd6-9608-a55fcfe27fc6-3/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20230322_083605-scaled.jpg,,TRUE, +N1,58544,sortie-c13c560d-249f-4e64-9767-be81e1ac9908,https://biolit.fr/sorties/sortie-c13c560d-249f-4e64-9767-be81e1ac9908/,Romuald VIALE - EXPENATURE,,3/22/2023 0:00,9.0000000,12.0000000,43.159064000000,5.620134000000,,La Ciotat,29181,observation-c13c560d-249f-4e64-9767-be81e1ac9908,https://biolit.fr/observations/observation-c13c560d-249f-4e64-9767-be81e1ac9908/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230322_114549-scaled.jpg,,FALSE, +N1,58545,sortie-6a6ea092-4a94-493a-912d-c1dc44e54635,https://biolit.fr/sorties/sortie-6a6ea092-4a94-493a-912d-c1dc44e54635/,Romuald VIALE - EXPENATURE,,3/22/2023 0:00,9.0000000,12.0000000,43.159064000000,5.620117000000,,La Ciotat,29183,observation-6a6ea092-4a94-493a-912d-c1dc44e54635,https://biolit.fr/observations/observation-6a6ea092-4a94-493a-912d-c1dc44e54635/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230322_114011-scaled.jpg,,FALSE, +N1,58546,sortie-23a72e57-314d-4042-b548-e32a68ad8a97,https://biolit.fr/sorties/sortie-23a72e57-314d-4042-b548-e32a68ad8a97/,Pollen,,3/15/2023 0:00,10.0000000,13.0000000,43.2148700000,5.342990000000,Planète Mer,Marseille,29185,observation-23a72e57-314d-4042-b548-e32a68ad8a97,https://biolit.fr/observations/observation-23a72e57-314d-4042-b548-e32a68ad8a97/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230315_105051-scaled.jpg,,FALSE, +N1,58546,sortie-23a72e57-314d-4042-b548-e32a68ad8a97,https://biolit.fr/sorties/sortie-23a72e57-314d-4042-b548-e32a68ad8a97/,Pollen,,3/15/2023 0:00,10.0000000,13.0000000,43.2148700000,5.342990000000,Planète Mer,Marseille,29187,observation-23a72e57-314d-4042-b548-e32a68ad8a97-2,https://biolit.fr/observations/observation-23a72e57-314d-4042-b548-e32a68ad8a97-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230315_105141-scaled.jpg,,FALSE, +N1,58546,sortie-23a72e57-314d-4042-b548-e32a68ad8a97,https://biolit.fr/sorties/sortie-23a72e57-314d-4042-b548-e32a68ad8a97/,Pollen,,3/15/2023 0:00,10.0000000,13.0000000,43.2148700000,5.342990000000,Planète Mer,Marseille,29189,observation-23a72e57-314d-4042-b548-e32a68ad8a97-3,https://biolit.fr/observations/observation-23a72e57-314d-4042-b548-e32a68ad8a97-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230315_105205-scaled.jpg,,FALSE, +N1,58546,sortie-23a72e57-314d-4042-b548-e32a68ad8a97,https://biolit.fr/sorties/sortie-23a72e57-314d-4042-b548-e32a68ad8a97/,Pollen,,3/15/2023 0:00,10.0000000,13.0000000,43.2148700000,5.342990000000,Planète Mer,Marseille,29191,observation-23a72e57-314d-4042-b548-e32a68ad8a97-4,https://biolit.fr/observations/observation-23a72e57-314d-4042-b548-e32a68ad8a97-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230315_105642-scaled.jpg,,FALSE, +N1,58546,sortie-23a72e57-314d-4042-b548-e32a68ad8a97,https://biolit.fr/sorties/sortie-23a72e57-314d-4042-b548-e32a68ad8a97/,Pollen,,3/15/2023 0:00,10.0000000,13.0000000,43.2148700000,5.342990000000,Planète Mer,Marseille,29193,observation-23a72e57-314d-4042-b548-e32a68ad8a97-5,https://biolit.fr/observations/observation-23a72e57-314d-4042-b548-e32a68ad8a97-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230315_105647-scaled.jpg,,FALSE, +N1,58546,sortie-23a72e57-314d-4042-b548-e32a68ad8a97,https://biolit.fr/sorties/sortie-23a72e57-314d-4042-b548-e32a68ad8a97/,Pollen,,3/15/2023 0:00,10.0000000,13.0000000,43.2148700000,5.342990000000,Planète Mer,Marseille,29195,observation-23a72e57-314d-4042-b548-e32a68ad8a97-6,https://biolit.fr/observations/observation-23a72e57-314d-4042-b548-e32a68ad8a97-6/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20230315_105836-scaled.jpg,,TRUE, +N1,58547,sortie-12b30ae0-9288-4c77-b059-7c58e06cbd64,https://biolit.fr/sorties/sortie-12b30ae0-9288-4c77-b059-7c58e06cbd64/,valerie.fab@gmail.com,,2/20/2023 0:00,13.0000000,15.0000000,43.612290000000,7.128002000000,,"Biot, plage de Biot",29197,observation-12b30ae0-9288-4c77-b059-7c58e06cbd64,https://biolit.fr/observations/observation-12b30ae0-9288-4c77-b059-7c58e06cbd64/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_0051-rotated.jpg,,TRUE, +N1,58547,sortie-12b30ae0-9288-4c77-b059-7c58e06cbd64,https://biolit.fr/sorties/sortie-12b30ae0-9288-4c77-b059-7c58e06cbd64/,valerie.fab@gmail.com,,2/20/2023 0:00,13.0000000,15.0000000,43.612290000000,7.128002000000,,"Biot, plage de Biot",29199,observation-12b30ae0-9288-4c77-b059-7c58e06cbd64-2,https://biolit.fr/observations/observation-12b30ae0-9288-4c77-b059-7c58e06cbd64-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0052-rotated.jpg,,FALSE, +N1,58547,sortie-12b30ae0-9288-4c77-b059-7c58e06cbd64,https://biolit.fr/sorties/sortie-12b30ae0-9288-4c77-b059-7c58e06cbd64/,valerie.fab@gmail.com,,2/20/2023 0:00,13.0000000,15.0000000,43.612290000000,7.128002000000,,"Biot, plage de Biot",29201,observation-12b30ae0-9288-4c77-b059-7c58e06cbd64-3,https://biolit.fr/observations/observation-12b30ae0-9288-4c77-b059-7c58e06cbd64-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0116_0-rotated.jpg,,FALSE, +N1,58548,sortie-8518f38a-671e-4856-be3b-7dfa8bbe2b04,https://biolit.fr/sorties/sortie-8518f38a-671e-4856-be3b-7dfa8bbe2b04/,Agathe Bouet,,1/26/2023 0:00,16.0000000,17.0:15,48.640519000000,-2.111220000000,Planète Mer,Grande Plage de Saint-Lunaire,29203,observation-8518f38a-671e-4856-be3b-7dfa8bbe2b04,https://biolit.fr/observations/observation-8518f38a-671e-4856-be3b-7dfa8bbe2b04/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20230126_160250652-scaled.jpg,,TRUE, +N1,58549,sortie-1c19fc5c-3742-42cc-8714-e322da276f9d,https://biolit.fr/sorties/sortie-1c19fc5c-3742-42cc-8714-e322da276f9d/,Agathe Bouet,,1/26/2023 0:00,16.0000000,17.0:15,48.640212000000,-2.111423000000,Planète Mer,Grande Plage de Saint-Lunaire,29205,observation-1c19fc5c-3742-42cc-8714-e322da276f9d,https://biolit.fr/observations/observation-1c19fc5c-3742-42cc-8714-e322da276f9d/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/PXL_20230126_151616915-scaled.jpg,,TRUE, +N1,58550,sortie-203b9d79-fc22-4381-9a3d-c139887c966b,https://biolit.fr/sorties/sortie-203b9d79-fc22-4381-9a3d-c139887c966b/,Agathe Bouet,,1/26/2023 0:00,16.0000000,17.0:15,48.641515000000,-2.11162900000,Planète Mer,Grande Plage de Saint-Lunaire,29207,observation-203b9d79-fc22-4381-9a3d-c139887c966b,https://biolit.fr/observations/observation-203b9d79-fc22-4381-9a3d-c139887c966b/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20230126_151552481-scaled.jpg,,TRUE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29209,observation-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050426-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29211,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-2,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050429_0-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29213,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-3,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050430-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29215,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-4,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050431-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29217,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-5,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050433_0-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29219,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-6,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050434-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29221,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-7,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050435-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29223,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-8,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050436-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29225,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-9,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050437-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29227,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-10,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050438-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29229,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-11,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050439_0-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29231,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-12,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050440-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29233,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-13,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050441-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29235,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-14,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050442-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29237,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-15,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050443_0-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29239,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-16,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050444-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29241,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-17,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050445-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29243,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-18,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050446-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29245,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-19,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050447-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29247,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-20,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050448-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29249,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-21,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050449-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29251,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-22,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050450-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29253,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-23,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050451-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29255,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-24,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050452_0-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29257,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-25,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050453-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29259,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-26,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050454_0-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29261,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-27,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050455-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29263,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-28,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050456-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29265,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-29,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050457-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29267,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-30,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050458_0-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29269,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-31,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050459_0-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29271,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-32,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050460-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29273,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-33,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050461-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29275,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-34,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050462-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29277,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-35,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050463-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29279,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-36,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-36/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050464-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29281,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-37,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050465-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29283,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-38,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-38/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050466-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29285,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-39,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-39/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050467-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29287,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-40,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-40/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050468-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29289,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-41,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-41/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050469-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29291,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-42,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-42/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050470-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29293,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-43,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-43/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050471-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29295,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-44,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-44/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050472-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29297,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-45,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-45/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050473-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29299,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-46,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-46/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050474-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29301,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-47,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-47/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050475-scaled.jpg,,FALSE, +N1,58551,sortie-6d92e110-1eba-4c49-95fb-f07c05796d17,https://biolit.fr/sorties/sortie-6d92e110-1eba-4c49-95fb-f07c05796d17/,Virginie H,,2/27/2023 0:00,14.0000000,17.0000000,49.218168000000,-1.612497000000,,Créance,29303,observation-6d92e110-1eba-4c49-95fb-f07c05796d17-48,https://biolit.fr/observations/observation-6d92e110-1eba-4c49-95fb-f07c05796d17-48/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050476-scaled.jpg,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29305,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,,,,https://biolit.fr/wp-content/uploads/2023/07/50.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29307,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-2,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/52.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29309,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-3,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/actinia equina_5.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29311,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-4,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-4/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_16.PNG,,TRUE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29313,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-5,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/anser anser.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29315,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-6,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-6/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/asterias rubens_2.PNG,,TRUE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29317,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-7,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/asterina gibbosa_3.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29319,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-8,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_15.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29321,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-9,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Calyptrea chinensis.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29323,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-10,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-10/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/cancer pagurus_5.PNG,,TRUE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29325,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-11,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/cerastoderma edule_6.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29327,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-12,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-12/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/cereus pedunculatus_0.PNG,,TRUE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29329,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-13,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/crassostrea gigas_1.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29331,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-14,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/crepidula fornicata_3.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29333,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-15,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp1_4.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29335,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-16,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp2_1.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29337,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-17,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gari depressa_13.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29339,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-18,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/gibula albida.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29341,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-19,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/haliotis tuberculata_1.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29343,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-20,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/gibula magus.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29345,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-21,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/Hatriplex halimus pas sûr.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29347,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-22,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/Isozoanthus sulcatus_8.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29349,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-23,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/larus marinus pe.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29351,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-24,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/lepidochitona sp_0.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29353,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-25,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/limace de mer 1.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29355,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-26,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/limace de mer.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29357,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-27,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-27/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/lineus longissimus.PNG,,TRUE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29359,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-28,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-28/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/littorina littorea_6.PNG,,TRUE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29361,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-29,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_32.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29363,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-30,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/Metridium senile_2.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29365,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-31,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia_14.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29367,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-32,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-32/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/mytilus edulis_2.PNG,,TRUE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29369,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-33,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-33/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/nucella lapillus_5.PNG,,TRUE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29371,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-34,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-34/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebra erinaceus_5.PNG,,TRUE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29373,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-35,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ophiothrix sp_3.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29375,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-36,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-36/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_14.PNG,,TRUE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29377,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-37,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/palaemon serratus_0.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29379,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-38,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-38/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/patella vulgata_0.PNG,,TRUE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29381,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-39,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-39/,,,,https://biolit.fr/wp-content/uploads/2023/07/Phalacrocorax carbo_1.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29383,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-40,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-40/,,,,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus_10.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29385,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-41,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-41/,,,,https://biolit.fr/wp-content/uploads/2023/07/phyllodoce lamelligera.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29387,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-42,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-42/,Pilumnus hirtellus,Pilumne hirsute,,https://biolit.fr/wp-content/uploads/2023/07/Pilumnus hirtellus et porcellana platycheles.PNG,,TRUE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29389,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-43,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-43/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/Pisidia longicornis_11.PNG,,TRUE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29391,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-44,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-44/,,,,https://biolit.fr/wp-content/uploads/2023/07/plante sp.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29393,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-45,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-45/,,,,https://biolit.fr/wp-content/uploads/2023/07/Platalea leucorodia.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29395,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-46,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-46/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pycnogonide sp_2.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29397,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-47,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-47/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sedum anglicum.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29399,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-48,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-48/,,,,https://biolit.fr/wp-content/uploads/2023/07/Spirobranchus triqueter_1.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29401,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-49,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-49/,,,,https://biolit.fr/wp-content/uploads/2023/07/tectura virginea.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29403,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-50,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-50/,,,,https://biolit.fr/wp-content/uploads/2023/07/venerupis corrugata_0.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29405,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-51,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-51/,,,,https://biolit.fr/wp-content/uploads/2023/07/venus verrucosa_5.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29407,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-52,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-52/,,,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrohilus.PNG,,FALSE, +N1,58552,sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9,https://biolit.fr/sorties/sortie-3a9dbcd9-6217-4dea-bc38-9991233e50d9/,Roman,,2/23/2023 0:00,10.0000000,12.0000000,47.703482000000,-3.349812000000,Observatoire du Plancton,Port-Louis,29409,observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-53,https://biolit.fr/observations/observation-3a9dbcd9-6217-4dea-bc38-9991233e50d9-53/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_22.PNG,,TRUE, +N1,58553,sortie-489cab78-6730-4285-afa0-02a70c609e12,https://biolit.fr/sorties/sortie-489cab78-6730-4285-afa0-02a70c609e12/,charlene.didon,,2/22/2023 0:00,15.0000000,17.0000000,43.523709000000,3.923529000000,,Palavas,29411,observation-489cab78-6730-4285-afa0-02a70c609e12,https://biolit.fr/observations/observation-489cab78-6730-4285-afa0-02a70c609e12/,,,,https://biolit.fr/wp-content/uploads/2023/07/16770765711434702796352952910014-scaled.jpg,,FALSE, +N1,58553,sortie-489cab78-6730-4285-afa0-02a70c609e12,https://biolit.fr/sorties/sortie-489cab78-6730-4285-afa0-02a70c609e12/,charlene.didon,,2/22/2023 0:00,15.0000000,17.0000000,43.523709000000,3.923529000000,,Palavas,29413,observation-489cab78-6730-4285-afa0-02a70c609e12-2,https://biolit.fr/observations/observation-489cab78-6730-4285-afa0-02a70c609e12-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/16770770262248874176217959755828-scaled.jpg,,FALSE, +N1,58554,sortie-698e7e93-93e0-494a-a52a-0e5279d97b7c,https://biolit.fr/sorties/sortie-698e7e93-93e0-494a-a52a-0e5279d97b7c/,Camille Benyamine,,2/16/2023 0:00,15.0000000,15.0000000,43.239981000000,5.362389000000,,Bain des dames,29415,observation-698e7e93-93e0-494a-a52a-0e5279d97b7c,https://biolit.fr/observations/observation-698e7e93-93e0-494a-a52a-0e5279d97b7c/,,,,https://biolit.fr/wp-content/uploads/2023/07/autre 2 bain des dames.jpg,,FALSE, +N1,58554,sortie-698e7e93-93e0-494a-a52a-0e5279d97b7c,https://biolit.fr/sorties/sortie-698e7e93-93e0-494a-a52a-0e5279d97b7c/,Camille Benyamine,,2/16/2023 0:00,15.0000000,15.0000000,43.239981000000,5.362389000000,,Bain des dames,29417,observation-698e7e93-93e0-494a-a52a-0e5279d97b7c-2,https://biolit.fr/observations/observation-698e7e93-93e0-494a-a52a-0e5279d97b7c-2/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/arche bain des dames.jpg,,TRUE, +N1,58554,sortie-698e7e93-93e0-494a-a52a-0e5279d97b7c,https://biolit.fr/sorties/sortie-698e7e93-93e0-494a-a52a-0e5279d97b7c/,Camille Benyamine,,2/16/2023 0:00,15.0000000,15.0000000,43.239981000000,5.362389000000,,Bain des dames,29419,observation-698e7e93-93e0-494a-a52a-0e5279d97b7c-3,https://biolit.fr/observations/observation-698e7e93-93e0-494a-a52a-0e5279d97b7c-3/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/2023/07/autre bain des dames.jpg,,TRUE, +N1,58555,sortie-c0a82722-a826-418a-bd2d-8966670e9989,https://biolit.fr/sorties/sortie-c0a82722-a826-418a-bd2d-8966670e9989/,Marine,,02/05/2023,15.0000000,15.0000000,46.248109000000,-1.141512000000,,Pointe saint Clement ,29421,observation-c0a82722-a826-418a-bd2d-8966670e9989,https://biolit.fr/observations/observation-c0a82722-a826-418a-bd2d-8966670e9989/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230205_150442_compress75-scaled.jpg,,FALSE, +N1,58555,sortie-c0a82722-a826-418a-bd2d-8966670e9989,https://biolit.fr/sorties/sortie-c0a82722-a826-418a-bd2d-8966670e9989/,Marine,,02/05/2023,15.0000000,15.0000000,46.248109000000,-1.141512000000,,Pointe saint Clement ,29423,observation-c0a82722-a826-418a-bd2d-8966670e9989-2,https://biolit.fr/observations/observation-c0a82722-a826-418a-bd2d-8966670e9989-2/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230205_150031_compress14-scaled.jpg,,TRUE, +N1,58555,sortie-c0a82722-a826-418a-bd2d-8966670e9989,https://biolit.fr/sorties/sortie-c0a82722-a826-418a-bd2d-8966670e9989/,Marine,,02/05/2023,15.0000000,15.0000000,46.248109000000,-1.141512000000,,Pointe saint Clement ,29425,observation-c0a82722-a826-418a-bd2d-8966670e9989-3,https://biolit.fr/observations/observation-c0a82722-a826-418a-bd2d-8966670e9989-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20230205_151320_compress53-scaled.jpg,,FALSE, +N1,58556,sortie-88963246-854d-46b4-a20e-0e414c099c96,https://biolit.fr/sorties/sortie-88963246-854d-46b4-a20e-0e414c099c96/,Roman,,1/21/2023 0:00,16.0000000,16.0000000,47.695860000000,-3.354355000000,,Gâvres,29427,observation-88963246-854d-46b4-a20e-0e414c099c96,https://biolit.fr/observations/observation-88963246-854d-46b4-a20e-0e414c099c96/,,,,https://biolit.fr/wp-content/uploads/2023/07/Anatifera anatifera.PNG,,FALSE, +N1,58556,sortie-88963246-854d-46b4-a20e-0e414c099c96,https://biolit.fr/sorties/sortie-88963246-854d-46b4-a20e-0e414c099c96/,Roman,,1/21/2023 0:00,16.0000000,16.0000000,47.695860000000,-3.354355000000,,Gâvres,29429,observation-88963246-854d-46b4-a20e-0e414c099c96-2,https://biolit.fr/observations/observation-88963246-854d-46b4-a20e-0e414c099c96-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Physalia physalis_0.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29431,observation-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_24.PNG,,TRUE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29433,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-2,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-2/,Actinia striata,Actinie striée,,https://biolit.fr/wp-content/uploads/2023/07/Actinia striata.PNG,,TRUE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29435,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-3,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue sp un doute.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29437,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-4,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue sp_2.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29439,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-5,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/anémone sp_9.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29441,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-6,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Anthopleura balii_11.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29443,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-7,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-7/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_29.PNG,,TRUE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29445,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-8,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Aulactinia verrucosa_10.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29447,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-9,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-9/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_18.PNG,,TRUE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29449,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-10,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus sp.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29451,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-11,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-11/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_26.PNG,,TRUE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29453,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-12,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/carottage..PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29455,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-13,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_18.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29457,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-14,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Corralina officinalis.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29459,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-15,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crevette sp.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29461,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-16,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_38.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29463,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-17,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/flaque à lithophyllum incrustans.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29465,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-18,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-18/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/Haliotis tuberculata_13.PNG,,TRUE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29467,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-19,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/Helcion pelludica_0.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29469,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-20,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Himanthalia elongata_1.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29471,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-21,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/Laminaria sp_1.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29473,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-22,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lepadogaster sp.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29475,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-23,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-23/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_14.PNG,,TRUE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29477,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-24,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/Liocarcinus sp_2.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29479,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-25,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lomentaria artiulata.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29481,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-26,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/Macropodia sp_1.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29483,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-27,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-27/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_31.PNG,,TRUE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29485,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-28,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_20.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29487,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-29,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_22.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29489,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-30,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-30/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nuella lapillus.PNG,,TRUE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29491,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-31,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-31/,Ophiocomina nigra,Ophiure noire,,https://biolit.fr/wp-content/uploads/2023/07/Ophiocomina nigra.PNG,,TRUE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29493,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-32,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/Paracentrotus lividus_7.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29495,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-33,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-33/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/07/patella vulgata_0.PNG,,TRUE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29496,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-34,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-34/,Pilumnus hirtellus,Pilumne hirsute,,https://biolit.fr/wp-content/uploads/2023/07/Pilumnus hirtellus_9.PNG,,TRUE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29498,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-35,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-35/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/Pisidia longicornis_12.PNG,,TRUE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29500,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-36,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-36/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_27.PNG,,TRUE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29502,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-37,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_32.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29504,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-38,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-38/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sabellaria alveolata_10.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29506,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-39,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-39/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sargassum japonica_0.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29508,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-40,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-40/,,,,https://biolit.fr/wp-content/uploads/2023/07/Spatule blanche.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29510,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-41,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-41/,,,,https://biolit.fr/wp-content/uploads/2023/07/Tethya citrina_0.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29512,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-42,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-42/,,,,https://biolit.fr/wp-content/uploads/2023/07/ver sp_4.PNG,,FALSE, +N1,58557,sortie-7846e22e-7546-4c32-ab16-e6cab2de157c,https://biolit.fr/sorties/sortie-7846e22e-7546-4c32-ab16-e6cab2de157c/,Roman,,1/23/2023 0:00,11.0000000,12.0:15,47.686141000000,-3.356769000000,,Gâvres,29514,observation-7846e22e-7546-4c32-ab16-e6cab2de157c-43,https://biolit.fr/observations/observation-7846e22e-7546-4c32-ab16-e6cab2de157c-43/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_21.PNG,,TRUE, +N1,58558,sortie-2134375f-7e5a-4e18-9297-8cc5f942be9c,https://biolit.fr/sorties/sortie-2134375f-7e5a-4e18-9297-8cc5f942be9c/,chloehoez,,1/25/2023 0:00,16.0000000,18.0000000,46.188000000000,-1.314739000000,,Plage de l'Arnérault,29516,observation-2134375f-7e5a-4e18-9297-8cc5f942be9c,https://biolit.fr/observations/observation-2134375f-7e5a-4e18-9297-8cc5f942be9c/,,,,https://biolit.fr/wp-content/uploads/2023/07/MicrosoftTeams-image (12).png,,FALSE, +N1,58558,sortie-2134375f-7e5a-4e18-9297-8cc5f942be9c,https://biolit.fr/sorties/sortie-2134375f-7e5a-4e18-9297-8cc5f942be9c/,chloehoez,,1/25/2023 0:00,16.0000000,18.0000000,46.188000000000,-1.314739000000,,Plage de l'Arnérault,29518,observation-2134375f-7e5a-4e18-9297-8cc5f942be9c-2,https://biolit.fr/observations/observation-2134375f-7e5a-4e18-9297-8cc5f942be9c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/MicrosoftTeams-image (11).png,,FALSE, +N1,58558,sortie-2134375f-7e5a-4e18-9297-8cc5f942be9c,https://biolit.fr/sorties/sortie-2134375f-7e5a-4e18-9297-8cc5f942be9c/,chloehoez,,1/25/2023 0:00,16.0000000,18.0000000,46.188000000000,-1.314739000000,,Plage de l'Arnérault,29520,observation-2134375f-7e5a-4e18-9297-8cc5f942be9c-3,https://biolit.fr/observations/observation-2134375f-7e5a-4e18-9297-8cc5f942be9c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/MicrosoftTeams-image (9).png,,FALSE, +N1,58558,sortie-2134375f-7e5a-4e18-9297-8cc5f942be9c,https://biolit.fr/sorties/sortie-2134375f-7e5a-4e18-9297-8cc5f942be9c/,chloehoez,,1/25/2023 0:00,16.0000000,18.0000000,46.188000000000,-1.314739000000,,Plage de l'Arnérault,29522,observation-2134375f-7e5a-4e18-9297-8cc5f942be9c-4,https://biolit.fr/observations/observation-2134375f-7e5a-4e18-9297-8cc5f942be9c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/MicrosoftTeams-image (7).png,,FALSE, +N1,58559,sortie-914de4de-ede1-44c2-977f-26eb2ed46e18,https://biolit.fr/sorties/sortie-914de4de-ede1-44c2-977f-26eb2ed46e18/,Marine,,1/21/2023 0:00,17.0000000,17.0000000,46.305862000000,-1.312451000000,,Plage de la Barrique,29524,observation-914de4de-ede1-44c2-977f-26eb2ed46e18,https://biolit.fr/observations/observation-914de4de-ede1-44c2-977f-26eb2ed46e18/,,,,https://biolit.fr/wp-content/uploads/2023/07/1674560076540-scaled.jpg,,FALSE, +N1,58559,sortie-914de4de-ede1-44c2-977f-26eb2ed46e18,https://biolit.fr/sorties/sortie-914de4de-ede1-44c2-977f-26eb2ed46e18/,Marine,,1/21/2023 0:00,17.0000000,17.0000000,46.305862000000,-1.312451000000,,Plage de la Barrique,29526,observation-914de4de-ede1-44c2-977f-26eb2ed46e18-2,https://biolit.fr/observations/observation-914de4de-ede1-44c2-977f-26eb2ed46e18-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/1674560076549-scaled.jpg,,FALSE, +N1,58559,sortie-914de4de-ede1-44c2-977f-26eb2ed46e18,https://biolit.fr/sorties/sortie-914de4de-ede1-44c2-977f-26eb2ed46e18/,Marine,,1/21/2023 0:00,17.0000000,17.0000000,46.305862000000,-1.312451000000,,Plage de la Barrique,29528,observation-914de4de-ede1-44c2-977f-26eb2ed46e18-3,https://biolit.fr/observations/observation-914de4de-ede1-44c2-977f-26eb2ed46e18-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/1674560076557-scaled.jpg,,FALSE, +N1,58559,sortie-914de4de-ede1-44c2-977f-26eb2ed46e18,https://biolit.fr/sorties/sortie-914de4de-ede1-44c2-977f-26eb2ed46e18/,Marine,,1/21/2023 0:00,17.0000000,17.0000000,46.305862000000,-1.312451000000,,Plage de la Barrique,29530,observation-914de4de-ede1-44c2-977f-26eb2ed46e18-4,https://biolit.fr/observations/observation-914de4de-ede1-44c2-977f-26eb2ed46e18-4/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/1674560076565-scaled.jpg,,TRUE, +N1,58559,sortie-914de4de-ede1-44c2-977f-26eb2ed46e18,https://biolit.fr/sorties/sortie-914de4de-ede1-44c2-977f-26eb2ed46e18/,Marine,,1/21/2023 0:00,17.0000000,17.0000000,46.305862000000,-1.312451000000,,Plage de la Barrique,29532,observation-914de4de-ede1-44c2-977f-26eb2ed46e18-5,https://biolit.fr/observations/observation-914de4de-ede1-44c2-977f-26eb2ed46e18-5/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/1674560076573-scaled.jpg,,TRUE, +N1,58560,sortie-c41af137-af93-4f15-9f4f-1dba17d50733,https://biolit.fr/sorties/sortie-c41af137-af93-4f15-9f4f-1dba17d50733/,cyrille.mirgain@totalenergies.com,,01/09/2023,10.0000000,12.0000000,49.646842000000,0.153877000000,,saint jouin de bruneval,29534,observation-c41af137-af93-4f15-9f4f-1dba17d50733,https://biolit.fr/observations/observation-c41af137-af93-4f15-9f4f-1dba17d50733/,,,,https://biolit.fr/wp-content/uploads/2023/07/action - 01.jpg,,FALSE, +N1,58560,sortie-c41af137-af93-4f15-9f4f-1dba17d50733,https://biolit.fr/sorties/sortie-c41af137-af93-4f15-9f4f-1dba17d50733/,cyrille.mirgain@totalenergies.com,,01/09/2023,10.0000000,12.0000000,49.646842000000,0.153877000000,,saint jouin de bruneval,29536,observation-c41af137-af93-4f15-9f4f-1dba17d50733-2,https://biolit.fr/observations/observation-c41af137-af93-4f15-9f4f-1dba17d50733-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/action - 02.jpg,,FALSE, +N1,58560,sortie-c41af137-af93-4f15-9f4f-1dba17d50733,https://biolit.fr/sorties/sortie-c41af137-af93-4f15-9f4f-1dba17d50733/,cyrille.mirgain@totalenergies.com,,01/09/2023,10.0000000,12.0000000,49.646842000000,0.153877000000,,saint jouin de bruneval,29538,observation-c41af137-af93-4f15-9f4f-1dba17d50733-3,https://biolit.fr/observations/observation-c41af137-af93-4f15-9f4f-1dba17d50733-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/action - 03.jpg,,FALSE, +N1,58560,sortie-c41af137-af93-4f15-9f4f-1dba17d50733,https://biolit.fr/sorties/sortie-c41af137-af93-4f15-9f4f-1dba17d50733/,cyrille.mirgain@totalenergies.com,,01/09/2023,10.0000000,12.0000000,49.646842000000,0.153877000000,,saint jouin de bruneval,29540,observation-c41af137-af93-4f15-9f4f-1dba17d50733-4,https://biolit.fr/observations/observation-c41af137-af93-4f15-9f4f-1dba17d50733-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/action - 04.jpg,,FALSE, +N1,58560,sortie-c41af137-af93-4f15-9f4f-1dba17d50733,https://biolit.fr/sorties/sortie-c41af137-af93-4f15-9f4f-1dba17d50733/,cyrille.mirgain@totalenergies.com,,01/09/2023,10.0000000,12.0000000,49.646842000000,0.153877000000,,saint jouin de bruneval,29542,observation-c41af137-af93-4f15-9f4f-1dba17d50733-5,https://biolit.fr/observations/observation-c41af137-af93-4f15-9f4f-1dba17d50733-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/action - 05.jpg,,FALSE, +N1,58560,sortie-c41af137-af93-4f15-9f4f-1dba17d50733,https://biolit.fr/sorties/sortie-c41af137-af93-4f15-9f4f-1dba17d50733/,cyrille.mirgain@totalenergies.com,,01/09/2023,10.0000000,12.0000000,49.646842000000,0.153877000000,,saint jouin de bruneval,29544,observation-c41af137-af93-4f15-9f4f-1dba17d50733-6,https://biolit.fr/observations/observation-c41af137-af93-4f15-9f4f-1dba17d50733-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/action - 06.jpg,,FALSE, +N1,58560,sortie-c41af137-af93-4f15-9f4f-1dba17d50733,https://biolit.fr/sorties/sortie-c41af137-af93-4f15-9f4f-1dba17d50733/,cyrille.mirgain@totalenergies.com,,01/09/2023,10.0000000,12.0000000,49.646842000000,0.153877000000,,saint jouin de bruneval,29546,observation-c41af137-af93-4f15-9f4f-1dba17d50733-7,https://biolit.fr/observations/observation-c41af137-af93-4f15-9f4f-1dba17d50733-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/action - 07.jpg,,FALSE, +N1,58560,sortie-c41af137-af93-4f15-9f4f-1dba17d50733,https://biolit.fr/sorties/sortie-c41af137-af93-4f15-9f4f-1dba17d50733/,cyrille.mirgain@totalenergies.com,,01/09/2023,10.0000000,12.0000000,49.646842000000,0.153877000000,,saint jouin de bruneval,29548,observation-c41af137-af93-4f15-9f4f-1dba17d50733-8,https://biolit.fr/observations/observation-c41af137-af93-4f15-9f4f-1dba17d50733-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/action - 08.jpg,,FALSE, +N1,58560,sortie-c41af137-af93-4f15-9f4f-1dba17d50733,https://biolit.fr/sorties/sortie-c41af137-af93-4f15-9f4f-1dba17d50733/,cyrille.mirgain@totalenergies.com,,01/09/2023,10.0000000,12.0000000,49.646842000000,0.153877000000,,saint jouin de bruneval,29550,observation-c41af137-af93-4f15-9f4f-1dba17d50733-9,https://biolit.fr/observations/observation-c41af137-af93-4f15-9f4f-1dba17d50733-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/action - 09.jpg,,FALSE, +N1,58560,sortie-c41af137-af93-4f15-9f4f-1dba17d50733,https://biolit.fr/sorties/sortie-c41af137-af93-4f15-9f4f-1dba17d50733/,cyrille.mirgain@totalenergies.com,,01/09/2023,10.0000000,12.0000000,49.646842000000,0.153877000000,,saint jouin de bruneval,29552,observation-c41af137-af93-4f15-9f4f-1dba17d50733-10,https://biolit.fr/observations/observation-c41af137-af93-4f15-9f4f-1dba17d50733-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/action - 11.jpg,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29554,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3140.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29556,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-2,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3141.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29558,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-3,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3142_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29560,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-4,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3143.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29562,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-5,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3144.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29564,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-6,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3145.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29566,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-7,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3146.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29568,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-8,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3147-scaled.jpg,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29570,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-9,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3150.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29572,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-10,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3151.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29574,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-11,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3152.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29576,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-12,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3153.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29578,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-13,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3154.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29580,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-14,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3155.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29582,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-15,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3156.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29584,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-16,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3157.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29586,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-17,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3158.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29588,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-18,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3160.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29590,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-19,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3161.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29592,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-20,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3163_0-scaled.jpg,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29594,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-21,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3164_0-scaled.jpg,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29596,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-22,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3165_0-scaled.jpg,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29598,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-23,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3166.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29600,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-24,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3167.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29602,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-25,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3168_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29604,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-26,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3169.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29606,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-27,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3170.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29608,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-28,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3171.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29610,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-29,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3172.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29612,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-30,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3173.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29614,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-31,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3174_0-scaled.jpg,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29616,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-32,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3175.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29618,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-33,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3176.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29620,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-34,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6848_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29622,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-35,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6849.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29624,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-36,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-36/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6850_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29626,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-37,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6852.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29628,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-38,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-38/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6853.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29630,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-39,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-39/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6854.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29632,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-40,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-40/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6855.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29634,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-41,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-41/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6856.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29636,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-42,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-42/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6857.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29638,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-43,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-43/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6858.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29640,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-44,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-44/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6859.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29642,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-45,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-45/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6860.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29644,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-46,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-46/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6861.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29646,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-47,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-47/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6862.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29648,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-48,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-48/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6863.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29650,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-49,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-49/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6864.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29652,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-50,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-50/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6866_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29654,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-51,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-51/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6865.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29656,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-52,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-52/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6867.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29658,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-53,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-53/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6868.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29660,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-54,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-54/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6869_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29662,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-55,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-55/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6870.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29664,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-56,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-56/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6871.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29666,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-57,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-57/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6872_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29668,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-58,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-58/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6876_0-scaled.jpg,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29670,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-59,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-59/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6877_1.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29672,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-60,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-60/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6878_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29674,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-61,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-61/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6879.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29676,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-62,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-62/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6882_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29678,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-63,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-63/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6883_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29680,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-64,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-64/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6884_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29682,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-65,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-65/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6885.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29684,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-66,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-66/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6886.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29686,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-67,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-67/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6887.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29688,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-68,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-68/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7459_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29690,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-69,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-69/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7460_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29692,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-70,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-70/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7461_1.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29694,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-71,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-71/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7462_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29696,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-72,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-72/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7463_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29698,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-73,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-73/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7467_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29700,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-74,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-74/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7468_0.JPG,,FALSE, +N1,58561,sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199,https://biolit.fr/sorties/sortie-353d62b8-ef87-4d69-8f15-9d4115f3d199/,SV,,12/16/2022 0:00,13.0000000,17.0000000,43.211115000000,3.236379000000,,Plage des Cabanes de Fleury,29702,observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-75,https://biolit.fr/observations/observation-353d62b8-ef87-4d69-8f15-9d4115f3d199-75/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7469_0.JPG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29704,observation-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea/,,,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita_12.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29706,observation-b67e6bcc-785c-44aa-9034-79a039024eea-2,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_23.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29708,observation-b67e6bcc-785c-44aa-9034-79a039024eea-3,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-3/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragaceae_6.PNG,,TRUE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29710,observation-b67e6bcc-785c-44aa-9034-79a039024eea-4,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algue sp_1.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29711,observation-b67e6bcc-785c-44aa-9034-79a039024eea-5,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Anguilla anguilla_0.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29713,observation-b67e6bcc-785c-44aa-9034-79a039024eea-6,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-6/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_15.PNG,,TRUE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29715,observation-b67e6bcc-785c-44aa-9034-79a039024eea-7,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascophyllum nodosum_0.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29717,observation-b67e6bcc-785c-44aa-9034-79a039024eea-8,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-8/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_22.PNG,,TRUE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29719,observation-b67e6bcc-785c-44aa-9034-79a039024eea-9,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_14.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29721,observation-b67e6bcc-785c-44aa-9034-79a039024eea-10,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Austrominius modestus.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29723,observation-b67e6bcc-785c-44aa-9034-79a039024eea-11,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_12.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29725,observation-b67e6bcc-785c-44aa-9034-79a039024eea-12,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ciliata mustela_5.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29727,observation-b67e6bcc-785c-44aa-9034-79a039024eea-13,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-13/,Ciona intestinalis,Cione intestinale,,https://biolit.fr/wp-content/uploads/2023/07/Ciona intestinalis_4.PNG,,TRUE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29729,observation-b67e6bcc-785c-44aa-9034-79a039024eea-14,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crassostrea gigas_5.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29731,observation-b67e6bcc-785c-44aa-9034-79a039024eea-15,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Doridien sp_0.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29733,observation-b67e6bcc-785c-44aa-9034-79a039024eea-16,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Doridien sp1.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29735,observation-b67e6bcc-785c-44aa-9034-79a039024eea-17,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/Dysidea fragilis_3.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29737,observation-b67e6bcc-785c-44aa-9034-79a039024eea-18,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 1_12.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29739,observation-b67e6bcc-785c-44aa-9034-79a039024eea-19,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_37.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29741,observation-b67e6bcc-785c-44aa-9034-79a039024eea-20,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Fucus serratus_4.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29743,observation-b67e6bcc-785c-44aa-9034-79a039024eea-21,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/fucus vesiculosus.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29744,observation-b67e6bcc-785c-44aa-9034-79a039024eea-22,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-22/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/Haliotis tuberculata_12.PNG,,TRUE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29746,observation-b67e6bcc-785c-44aa-9034-79a039024eea-23,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/lepidochitona sp_0.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29747,observation-b67e6bcc-785c-44aa-9034-79a039024eea-24,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_13.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29749,observation-b67e6bcc-785c-44aa-9034-79a039024eea-25,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-25/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_13.PNG,,TRUE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29751,observation-b67e6bcc-785c-44aa-9034-79a039024eea-26,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia_13.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29753,observation-b67e6bcc-785c-44aa-9034-79a039024eea-27,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/Modiolula phaseolina.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29755,observation-b67e6bcc-785c-44aa-9034-79a039024eea-28,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/Murex doute.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29757,observation-b67e6bcc-785c-44aa-9034-79a039024eea-29,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ophiothrix sp_2.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29759,observation-b67e6bcc-785c-44aa-9034-79a039024eea-30,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ostrea edule.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29761,observation-b67e6bcc-785c-44aa-9034-79a039024eea-31,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patella intermedia picta pe.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29763,observation-b67e6bcc-785c-44aa-9034-79a039024eea-32,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-32/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus_9.PNG,,TRUE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29765,observation-b67e6bcc-785c-44aa-9034-79a039024eea-33,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_31.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29767,observation-b67e6bcc-785c-44aa-9034-79a039024eea-34,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes philipinarum_0.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29769,observation-b67e6bcc-785c-44aa-9034-79a039024eea-35,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sargassum sp.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29771,observation-b67e6bcc-785c-44aa-9034-79a039024eea-36,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-36/,,,,https://biolit.fr/wp-content/uploads/2023/07/Spurilla neapolitana_3.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29773,observation-b67e6bcc-785c-44aa-9034-79a039024eea-37,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/Steromphala umbilicalis_4.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29775,observation-b67e6bcc-785c-44aa-9034-79a039024eea-38,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-38/,,,,https://biolit.fr/wp-content/uploads/2023/07/Venerupis rhomboides.PNG,,FALSE, +N1,58562,sortie-b67e6bcc-785c-44aa-9034-79a039024eea,https://biolit.fr/sorties/sortie-b67e6bcc-785c-44aa-9034-79a039024eea/,Roman,,12/29/2022 0:00,16.0000000,17.0000000,47.705056000000,-3.34663600000,,Port-Louis,29777,observation-b67e6bcc-785c-44aa-9034-79a039024eea-39,https://biolit.fr/observations/observation-b67e6bcc-785c-44aa-9034-79a039024eea-39/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ver sp_5.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29779,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue sp_0.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29781,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-2,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_24.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29783,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-3,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-3/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_14.PNG,,TRUE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29785,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-4,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-4/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_21.PNG,,TRUE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29787,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-5,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_28.PNG,,TRUE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29789,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-6,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_24.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29791,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-7,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crepidula fornicata_7.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29793,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-8,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/dysidea pe 1.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29795,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-9,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/dysidea pe.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29797,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-10,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/epitnium clathrus.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29799,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-11,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 1_11.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29801,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-12,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 2_5.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29803,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-13,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 3_0.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29805,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-14,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp mix.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29807,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-15,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_36.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29809,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-16,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Fucus serratus_3.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29811,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-17,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbula magus_1.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29813,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-18,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/gobie sp_4.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29815,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-19,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/Haliotis tuberculata_11.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29817,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-20,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Heteranomia squamula_1.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29819,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-21,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/Labridé sp.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29821,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-22,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_12.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29823,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-23,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lomentaria articulata_2.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29825,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-24,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/macropodia sp.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29827,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-25,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-25/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_30.PNG,,TRUE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29829,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-26,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/Metridium sp_2.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29831,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-27,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia_12.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29833,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-28,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_19.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29835,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-29,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-29/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_23.PNG,,TRUE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29837,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-30,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ophiothrix sp_1.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29839,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-31,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-31/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/Pisidia longicornis_10.PNG,,TRUE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29841,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-32,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-32/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_26.PNG,,TRUE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29843,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-33,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-33/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/Trivia monacha_2.PNG,,TRUE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29845,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-34,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa_10.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29847,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-35,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/ver sp 1.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29849,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-36,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-36/,,,,https://biolit.fr/wp-content/uploads/2023/07/ver sp_4.PNG,,FALSE, +N1,58563,sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd,https://biolit.fr/sorties/sortie-332667e0-4b56-430e-a2e9-efe9d4a24edd/,Roman,,12/27/2022 0:00,14.0000000,15.0000000,47.703222000000,-3.349822000000,,Port-Louis,29850,observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-37,https://biolit.fr/observations/observation-332667e0-4b56-430e-a2e9-efe9d4a24edd-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_23.PNG,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29852,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Anémone tomate Actinia equina Damgan 26-12-2022 (2) copie.jpg,,TRUE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29854,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-2,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Anémone tomate Actinia equina Damgan 26-12-2022 (3) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29856,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-3,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-3/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/Ascophylle noueux Ascophyllum nodosum Damgan 23-12-22 copie.jpg,,TRUE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29858,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-4,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Bigorneau Littorina littorea Damgan 23-12-22 (7) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29860,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-5,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Bryozoaire Damgan 26-12-2022 (80) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29862,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-6,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Bryozoaire Damgan 26-12-2022 (81) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29864,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-7,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Calyptrée chapeau chinois Calyptrea chinensis Damgan 23-12-22 copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29866,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-8,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Canalisation rompue eau brune Damgan 23-12-22 (4) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29868,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-9,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Canalisation rompue eau brune Damgan 23-12-22 (5) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29870,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-10,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Carragahenn fucus crispus Damgan 26-12-2022 (29) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29872,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-11,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ceramium sp Damgan 23-12-22 copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29874,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-12,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cérithe réticulé Bittium reticulatum Damgan 26-12-2022 (75) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29876,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-13,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/Chiton cendré Lepidochitona cinerea Damgan 26-12-2022 copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29878,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-14,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Citron de mer Doris pseudoargus Damgan 23-12-22 (28) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29880,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-15,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Citron de mer Doris pseudoargus Damgan 23-12-22 (29) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29882,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-16,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Coque commune Cerastoderma edule Damgan 26-12-2022 (41) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29884,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-17,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/Corallina caespitosa Damgan 23-12-22 (50) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29886,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-18,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crépidule des moules Crepidula fornicataDamgan 26-12-2022 (12) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29888,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-19,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crustacé Damgan 23-12-22 (87) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29890,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-20,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Dulse poivrée Osmundea pinnatifida Damgan 23-12-22 copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29892,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-21,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/Eponge Damgan 23-12-22 (93) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29894,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-22,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/Fucus vesiculosus Damgan 23-12-22 1 copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29896,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-23,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule ombiliquée Steromphala umbilicalis Damgan 23-12-22 (1) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29898,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-24,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule ombiliquée Steromphala umbilicalis Damgan 23-12-22 (2) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29900,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-25,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gracillaire gracile Gracillaria gracillis Damgan 23-12-22 1 copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29902,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-26,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/Grain de café Trivia arctica Damgan 26-12-2022 (86) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29904,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-27,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/Huitre creuse Magallana gigas Damgan 23-12-22 copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29906,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-28,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/Laminaire digité Laminaria digitata Damgan 26-12-2022 (59) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29908,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-29,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lièvre de mer Aplysia fasciata Damgan 26-12-2022 (1) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29910,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-30,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lièvre de mer Aplysia fasciata Damgan 26-12-2022 (2) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29912,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-31,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/Littorina fabalis Damgan 26-12-2022 (86) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29914,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-32,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/Littorina fabalis Damgan 26-12-2022 (87) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29916,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-33,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/Modiole barbue Modiolus barbatus Damgan 23-12-22 (78)_0.JPG,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29918,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-34,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/Motelle à 5 barbillons Ciliata mustela Damgan 26-12-2022 (4).JPG,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29920,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-35,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mouettes rieuses Damgan 26-12-2022 (26) copie.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29922,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-36,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-36/,,,,https://biolit.fr/wp-content/uploads/2023/07/Modiole barbue Modiolus barbatus Damgan 23-12-22.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29924,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-37,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/Moule commune Mytylus edulis Damgan 23-12-22 1_0.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29926,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-38,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-38/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mye des sables Mya arenaria Damgan 23-12-22 (2)_0.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29928,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-39,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-39/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mye des sables Mya arenaria Damgan 23-12-22_0.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29930,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-40,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-40/,,,,https://biolit.fr/wp-content/uploads/2023/07/Nasse réticulée Nassaruis reticulatus Damgan 26-12-2022 (23).JPG,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29932,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-41,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-41/,,,,https://biolit.fr/wp-content/uploads/2023/07/Oies bernaches cravant Damgan 26-12-2022 (39).jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29934,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-42,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-42/,,,,https://biolit.fr/wp-content/uploads/2023/07/Palourde dorée Polititapes aureus Damgan 23-12-22 (64)_0.JPG,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29936,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-43,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-43/,,,,https://biolit.fr/wp-content/uploads/2023/07/Palourde Ruditapes phillipinarum Damgan 26-12-2022 (1).JPG,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29938,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-44,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-44/,,,,https://biolit.fr/wp-content/uploads/2023/07/Palourde Ruditapes phillipinarum Damgan 26-12-2022 (2).JPG,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29940,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-45,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-45/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle déprimée Patella depressa Damgan 23-12-22 (1)_0.JPG,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29942,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-46,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-46/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle déprimée Patella depressa Damgan 23-12-22 (4)_0.JPG,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29944,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-47,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-47/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle vulgaire Patella vulgata Damgan 23-12-22_0.JPG,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29946,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-48,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-48/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle vulgaire Patella vulgata Damgan 23-12-22 5_0.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29948,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-49,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-49/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pétoncle noir Mimachlamys varia Damgan 23-12-22_0.JPG,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29950,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-50,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-50/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ponte sur Fucus serratus Damgan 26-12-2022 (63).jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29952,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-51,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-51/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pourpre petite pierre Purpura lapillus Damgan 23-12-22 (22)_0.JPG,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29954,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-52,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-52/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Pourpre petite pierre Purpura lapillus Damgan 23-12-22 (24)_0.JPG,,TRUE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29956,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-53,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-53/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Pourpre petite pierre Purpura lapillus Damgan 23-12-22 3_0.jpg,,TRUE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29958,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-54,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-54/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Rocher hérisson Ocinebra erinaceus Damgan 26-12-2022.JPG,,TRUE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29960,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-55,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-55/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sargassum muticum Damgan 26-12-2022 (31).JPG,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29962,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-56,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-56/,,,,https://biolit.fr/wp-content/uploads/2023/07/Palourde Ruditapes phillipinarum Damgan 1.jpg,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29964,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-57,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-57/,,,,https://biolit.fr/wp-content/uploads/2023/07/Spirorbe Spirorbis spirorbis Damgan 26-12-2022 (6).JPG,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29966,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-58,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-58/,,,,https://biolit.fr/wp-content/uploads/2023/07/Telline de la Baltique Limecola balthica Damgan 26-12-2022 (79).JPG,,FALSE, +N1,58564,sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2,https://biolit.fr/sorties/sortie-58611cda-43c2-4df9-a6aa-0a85e37496c2/,Nadine Sabourin,,12/23/2022 0:00,14.0000000,16.0000000,47.506994000000,-2.617445000000,,Damgan Rue du Guervers Plage du Govet,29968,observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-59,https://biolit.fr/observations/observation-58611cda-43c2-4df9-a6aa-0a85e37496c2-59/,,,,https://biolit.fr/wp-content/uploads/2023/07/Vers Nereis Damgan 23-12-22 (8)_0.JPG,,FALSE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,29970,observation-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/Biolit Moule-scaled.jpg,,TRUE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,29972,observation-33991749-7102-475c-ae2c-cb92c6bc93ce-2,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Huitres-scaled.jpg,,FALSE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,29974,observation-33991749-7102-475c-ae2c-cb92c6bc93ce-3,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/chapeau chinois-rotated.jpg,,FALSE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,29975,observation-33991749-7102-475c-ae2c-cb92c6bc93ce-4,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce-4/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/Moules-scaled.jpg,,TRUE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,29977,observation-33991749-7102-475c-ae2c-cb92c6bc93ce-5,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Eau rocher-scaled.jpg,,FALSE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,29979,observation-33991749-7102-475c-ae2c-cb92c6bc93ce-6,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce-6/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/euphorbe-scaled.jpg,,TRUE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,29981,observation-33991749-7102-475c-ae2c-cb92c6bc93ce-7,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce-7/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/Chardon-scaled.jpg,,TRUE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,29983,observation-33991749-7102-475c-ae2c-cb92c6bc93ce-8,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Criste-scaled.jpg,,FALSE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,29985,observation-33991749-7102-475c-ae2c-cb92c6bc93ce-9,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Abre Hottentot-scaled.jpg,,FALSE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,29987,observation-33991749-7102-475c-ae2c-cb92c6bc93ce-10,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/bette-scaled.jpg,,FALSE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,29989,observation-33991749-7102-475c-ae2c-cb92c6bc93ce-11,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/plante-scaled.jpg,,FALSE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,29991,observation-33991749-7102-475c-ae2c-cb92c6bc93ce-12,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/fleur1-scaled.jpg,,FALSE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,29993,observation-33991749-7102-475c-ae2c-cb92c6bc93ce-13,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/Fleur 2-scaled.jpg,,FALSE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,29995,observation-33991749-7102-475c-ae2c-cb92c6bc93ce-14,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Becasseau-scaled.jpg,,FALSE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,29997,observation-33991749-7102-475c-ae2c-cb92c6bc93ce-15,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/moineau-scaled.jpg,,FALSE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,29999,observation-33991749-7102-475c-ae2c-cb92c6bc93ce-16,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/sable-scaled.jpg,,FALSE, +N1,58565,sortie-33991749-7102-475c-ae2c-cb92c6bc93ce,https://biolit.fr/sorties/sortie-33991749-7102-475c-ae2c-cb92c6bc93ce/,Sillieres,,12/06/2022,10.0000000,15.0000000,43.525893000000,-1.524327000000,,Anglet,30001,observation-33991749-7102-475c-ae2c-cb92c6bc93ce-17,https://biolit.fr/observations/observation-33991749-7102-475c-ae2c-cb92c6bc93ce-17/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/coquillage-scaled.jpg,,TRUE, +N1,58566,sortie-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17,https://biolit.fr/sorties/sortie-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17/,D-L,,12/06/2022,10.000005,15.0000000,43.527291000000,-1.523673000000,,Anglet,30003,observation-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17,https://biolit.fr/observations/observation-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221206_102410-scaled.jpg,,FALSE, +N1,58566,sortie-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17,https://biolit.fr/sorties/sortie-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17/,D-L,,12/06/2022,10.000005,15.0000000,43.527291000000,-1.523673000000,,Anglet,30005,observation-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17-2,https://biolit.fr/observations/observation-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221206_101914-scaled.jpg,,FALSE, +N1,58566,sortie-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17,https://biolit.fr/sorties/sortie-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17/,D-L,,12/06/2022,10.000005,15.0000000,43.527291000000,-1.523673000000,,Anglet,30007,observation-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17-3,https://biolit.fr/observations/observation-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221206_105402-scaled.jpg,,FALSE, +N1,58566,sortie-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17,https://biolit.fr/sorties/sortie-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17/,D-L,,12/06/2022,10.000005,15.0000000,43.527291000000,-1.523673000000,,Anglet,30009,observation-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17-4,https://biolit.fr/observations/observation-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221206_105426-scaled.jpg,,FALSE, +N1,58566,sortie-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17,https://biolit.fr/sorties/sortie-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17/,D-L,,12/06/2022,10.000005,15.0000000,43.527291000000,-1.523673000000,,Anglet,30011,observation-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17-5,https://biolit.fr/observations/observation-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221206_131748-scaled.jpg,,FALSE, +N1,58566,sortie-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17,https://biolit.fr/sorties/sortie-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17/,D-L,,12/06/2022,10.000005,15.0000000,43.527291000000,-1.523673000000,,Anglet,30013,observation-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17-6,https://biolit.fr/observations/observation-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221206_133746-scaled.jpg,,FALSE, +N1,58566,sortie-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17,https://biolit.fr/sorties/sortie-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17/,D-L,,12/06/2022,10.000005,15.0000000,43.527291000000,-1.523673000000,,Anglet,30015,observation-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17-7,https://biolit.fr/observations/observation-8b8d0dfa-81db-4769-8ce0-ca7ccb56cd17-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221206_135312-scaled.jpg,,FALSE, +N1,58567,sortie-bdcc4075-75d9-4a7d-976f-948916722004,https://biolit.fr/sorties/sortie-bdcc4075-75d9-4a7d-976f-948916722004/,Anne Embry,,12/02/2022,19.0000000,21.0000000,43.293495000000,5.37097800000,,Vieux port de Marseille ,30017,observation-bdcc4075-75d9-4a7d-976f-948916722004,https://biolit.fr/observations/observation-bdcc4075-75d9-4a7d-976f-948916722004/,,,,https://biolit.fr/wp-content/uploads/2023/07/Screenshot_20221202-193341_Gallery.jpg,,FALSE, +N1,58568,sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a,https://biolit.fr/sorties/sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a/,Magali LHOMMET CARPENTIER,,11/25/2022 0:00,15.0000000,16.0000000,49.855289000000,0.606162000000,,Plage de Veulettes sur Mer (76450),30019,observation-647a99af-0cdd-4f1c-b3b4-10899b84945a,https://biolit.fr/observations/observation-647a99af-0cdd-4f1c-b3b4-10899b84945a/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221125_photo algue 1-scaled.jpg,,FALSE, +N1,58568,sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a,https://biolit.fr/sorties/sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a/,Magali LHOMMET CARPENTIER,,11/25/2022 0:00,15.0000000,16.0000000,49.855289000000,0.606162000000,,Plage de Veulettes sur Mer (76450),30021,observation-647a99af-0cdd-4f1c-b3b4-10899b84945a-2,https://biolit.fr/observations/observation-647a99af-0cdd-4f1c-b3b4-10899b84945a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221125_photo algue 2-scaled.jpg,,FALSE, +N1,58568,sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a,https://biolit.fr/sorties/sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a/,Magali LHOMMET CARPENTIER,,11/25/2022 0:00,15.0000000,16.0000000,49.855289000000,0.606162000000,,Plage de Veulettes sur Mer (76450),30023,observation-647a99af-0cdd-4f1c-b3b4-10899b84945a-3,https://biolit.fr/observations/observation-647a99af-0cdd-4f1c-b3b4-10899b84945a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221125_photo algue 3-scaled.jpg,,FALSE, +N1,58568,sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a,https://biolit.fr/sorties/sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a/,Magali LHOMMET CARPENTIER,,11/25/2022 0:00,15.0000000,16.0000000,49.855289000000,0.606162000000,,Plage de Veulettes sur Mer (76450),30025,observation-647a99af-0cdd-4f1c-b3b4-10899b84945a-4,https://biolit.fr/observations/observation-647a99af-0cdd-4f1c-b3b4-10899b84945a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221125_photo coquillage 1-scaled.jpg,,FALSE, +N1,58568,sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a,https://biolit.fr/sorties/sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a/,Magali LHOMMET CARPENTIER,,11/25/2022 0:00,15.0000000,16.0000000,49.855289000000,0.606162000000,,Plage de Veulettes sur Mer (76450),30027,observation-647a99af-0cdd-4f1c-b3b4-10899b84945a-5,https://biolit.fr/observations/observation-647a99af-0cdd-4f1c-b3b4-10899b84945a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221125_photo coquillage 2-scaled.jpg,,FALSE, +N1,58568,sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a,https://biolit.fr/sorties/sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a/,Magali LHOMMET CARPENTIER,,11/25/2022 0:00,15.0000000,16.0000000,49.855289000000,0.606162000000,,Plage de Veulettes sur Mer (76450),30029,observation-647a99af-0cdd-4f1c-b3b4-10899b84945a-6,https://biolit.fr/observations/observation-647a99af-0cdd-4f1c-b3b4-10899b84945a-6/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20221125_photo os de seiche 2-scaled.jpg,,TRUE, +N1,58568,sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a,https://biolit.fr/sorties/sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a/,Magali LHOMMET CARPENTIER,,11/25/2022 0:00,15.0000000,16.0000000,49.855289000000,0.606162000000,,Plage de Veulettes sur Mer (76450),30031,observation-647a99af-0cdd-4f1c-b3b4-10899b84945a-7,https://biolit.fr/observations/observation-647a99af-0cdd-4f1c-b3b4-10899b84945a-7/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20221125_photo os de seiche-scaled.jpg,,TRUE, +N1,58568,sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a,https://biolit.fr/sorties/sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a/,Magali LHOMMET CARPENTIER,,11/25/2022 0:00,15.0000000,16.0000000,49.855289000000,0.606162000000,,Plage de Veulettes sur Mer (76450),30033,observation-647a99af-0cdd-4f1c-b3b4-10899b84945a-8,https://biolit.fr/observations/observation-647a99af-0cdd-4f1c-b3b4-10899b84945a-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221125_photo oeufs-scaled.jpg,,FALSE, +N1,58568,sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a,https://biolit.fr/sorties/sortie-647a99af-0cdd-4f1c-b3b4-10899b84945a/,Magali LHOMMET CARPENTIER,,11/25/2022 0:00,15.0000000,16.0000000,49.855289000000,0.606162000000,,Plage de Veulettes sur Mer (76450),30035,observation-647a99af-0cdd-4f1c-b3b4-10899b84945a-9,https://biolit.fr/observations/observation-647a99af-0cdd-4f1c-b3b4-10899b84945a-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221125_photo animal a determiner-scaled.jpg,,FALSE, +N1,58569,sortie-058556f1-56b9-4a9c-98f1-103dcdb4e02e,https://biolit.fr/sorties/sortie-058556f1-56b9-4a9c-98f1-103dcdb4e02e/,Jusup,,09/09/2022,12.0000000,12.0000000,47.612506000000,-3.171555000000,,Plage de Porh-Kehouet,30037,observation-058556f1-56b9-4a9c-98f1-103dcdb4e02e,https://biolit.fr/observations/observation-058556f1-56b9-4a9c-98f1-103dcdb4e02e/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0116-scaled.jpg,,FALSE, +N1,58569,sortie-058556f1-56b9-4a9c-98f1-103dcdb4e02e,https://biolit.fr/sorties/sortie-058556f1-56b9-4a9c-98f1-103dcdb4e02e/,Jusup,,09/09/2022,12.0000000,12.0000000,47.612506000000,-3.171555000000,,Plage de Porh-Kehouet,30039,observation-058556f1-56b9-4a9c-98f1-103dcdb4e02e-2,https://biolit.fr/observations/observation-058556f1-56b9-4a9c-98f1-103dcdb4e02e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0117-scaled.jpg,,FALSE, +N1,58569,sortie-058556f1-56b9-4a9c-98f1-103dcdb4e02e,https://biolit.fr/sorties/sortie-058556f1-56b9-4a9c-98f1-103dcdb4e02e/,Jusup,,09/09/2022,12.0000000,12.0000000,47.612506000000,-3.171555000000,,Plage de Porh-Kehouet,30041,observation-058556f1-56b9-4a9c-98f1-103dcdb4e02e-3,https://biolit.fr/observations/observation-058556f1-56b9-4a9c-98f1-103dcdb4e02e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0118-scaled.jpg,,FALSE, +N1,58569,sortie-058556f1-56b9-4a9c-98f1-103dcdb4e02e,https://biolit.fr/sorties/sortie-058556f1-56b9-4a9c-98f1-103dcdb4e02e/,Jusup,,09/09/2022,12.0000000,12.0000000,47.612506000000,-3.171555000000,,Plage de Porh-Kehouet,30043,observation-058556f1-56b9-4a9c-98f1-103dcdb4e02e-4,https://biolit.fr/observations/observation-058556f1-56b9-4a9c-98f1-103dcdb4e02e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0121-scaled.jpg,,FALSE, +N1,58569,sortie-058556f1-56b9-4a9c-98f1-103dcdb4e02e,https://biolit.fr/sorties/sortie-058556f1-56b9-4a9c-98f1-103dcdb4e02e/,Jusup,,09/09/2022,12.0000000,12.0000000,47.612506000000,-3.171555000000,,Plage de Porh-Kehouet,30045,observation-058556f1-56b9-4a9c-98f1-103dcdb4e02e-5,https://biolit.fr/observations/observation-058556f1-56b9-4a9c-98f1-103dcdb4e02e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0123-scaled.jpg,,FALSE, +N1,58569,sortie-058556f1-56b9-4a9c-98f1-103dcdb4e02e,https://biolit.fr/sorties/sortie-058556f1-56b9-4a9c-98f1-103dcdb4e02e/,Jusup,,09/09/2022,12.0000000,12.0000000,47.612506000000,-3.171555000000,,Plage de Porh-Kehouet,30047,observation-058556f1-56b9-4a9c-98f1-103dcdb4e02e-6,https://biolit.fr/observations/observation-058556f1-56b9-4a9c-98f1-103dcdb4e02e-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0124-scaled.jpg,,FALSE, +N1,58569,sortie-058556f1-56b9-4a9c-98f1-103dcdb4e02e,https://biolit.fr/sorties/sortie-058556f1-56b9-4a9c-98f1-103dcdb4e02e/,Jusup,,09/09/2022,12.0000000,12.0000000,47.612506000000,-3.171555000000,,Plage de Porh-Kehouet,30049,observation-058556f1-56b9-4a9c-98f1-103dcdb4e02e-7,https://biolit.fr/observations/observation-058556f1-56b9-4a9c-98f1-103dcdb4e02e-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0127-scaled.jpg,,FALSE, +N1,58569,sortie-058556f1-56b9-4a9c-98f1-103dcdb4e02e,https://biolit.fr/sorties/sortie-058556f1-56b9-4a9c-98f1-103dcdb4e02e/,Jusup,,09/09/2022,12.0000000,12.0000000,47.612506000000,-3.171555000000,,Plage de Porh-Kehouet,30051,observation-058556f1-56b9-4a9c-98f1-103dcdb4e02e-8,https://biolit.fr/observations/observation-058556f1-56b9-4a9c-98f1-103dcdb4e02e-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0126-scaled.jpg,,FALSE, +N1,58570,sortie-2fc3fb44-c26b-4303-b2a4-b74575092bc7,https://biolit.fr/sorties/sortie-2fc3fb44-c26b-4303-b2a4-b74575092bc7/,Jusup,,09/09/2022,10.0000000,11.0000000,47.541518000000,-3.133339000000,,plage de kerhostin,30053,observation-2fc3fb44-c26b-4303-b2a4-b74575092bc7,https://biolit.fr/observations/observation-2fc3fb44-c26b-4303-b2a4-b74575092bc7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0098-scaled.jpg,,FALSE, +N1,58570,sortie-2fc3fb44-c26b-4303-b2a4-b74575092bc7,https://biolit.fr/sorties/sortie-2fc3fb44-c26b-4303-b2a4-b74575092bc7/,Jusup,,09/09/2022,10.0000000,11.0000000,47.541518000000,-3.133339000000,,plage de kerhostin,30055,observation-2fc3fb44-c26b-4303-b2a4-b74575092bc7-2,https://biolit.fr/observations/observation-2fc3fb44-c26b-4303-b2a4-b74575092bc7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0103-scaled.jpg,,FALSE, +N1,58570,sortie-2fc3fb44-c26b-4303-b2a4-b74575092bc7,https://biolit.fr/sorties/sortie-2fc3fb44-c26b-4303-b2a4-b74575092bc7/,Jusup,,09/09/2022,10.0000000,11.0000000,47.541518000000,-3.133339000000,,plage de kerhostin,30057,observation-2fc3fb44-c26b-4303-b2a4-b74575092bc7-3,https://biolit.fr/observations/observation-2fc3fb44-c26b-4303-b2a4-b74575092bc7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0099-scaled.jpg,,FALSE, +N1,58570,sortie-2fc3fb44-c26b-4303-b2a4-b74575092bc7,https://biolit.fr/sorties/sortie-2fc3fb44-c26b-4303-b2a4-b74575092bc7/,Jusup,,09/09/2022,10.0000000,11.0000000,47.541518000000,-3.133339000000,,plage de kerhostin,30059,observation-2fc3fb44-c26b-4303-b2a4-b74575092bc7-4,https://biolit.fr/observations/observation-2fc3fb44-c26b-4303-b2a4-b74575092bc7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0100-scaled.jpg,,FALSE, +N1,58570,sortie-2fc3fb44-c26b-4303-b2a4-b74575092bc7,https://biolit.fr/sorties/sortie-2fc3fb44-c26b-4303-b2a4-b74575092bc7/,Jusup,,09/09/2022,10.0000000,11.0000000,47.541518000000,-3.133339000000,,plage de kerhostin,30061,observation-2fc3fb44-c26b-4303-b2a4-b74575092bc7-5,https://biolit.fr/observations/observation-2fc3fb44-c26b-4303-b2a4-b74575092bc7-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0104-scaled.jpg,,FALSE, +N1,58570,sortie-2fc3fb44-c26b-4303-b2a4-b74575092bc7,https://biolit.fr/sorties/sortie-2fc3fb44-c26b-4303-b2a4-b74575092bc7/,Jusup,,09/09/2022,10.0000000,11.0000000,47.541518000000,-3.133339000000,,plage de kerhostin,30063,observation-2fc3fb44-c26b-4303-b2a4-b74575092bc7-6,https://biolit.fr/observations/observation-2fc3fb44-c26b-4303-b2a4-b74575092bc7-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0107-scaled.jpg,,FALSE, +N1,58570,sortie-2fc3fb44-c26b-4303-b2a4-b74575092bc7,https://biolit.fr/sorties/sortie-2fc3fb44-c26b-4303-b2a4-b74575092bc7/,Jusup,,09/09/2022,10.0000000,11.0000000,47.541518000000,-3.133339000000,,plage de kerhostin,30065,observation-2fc3fb44-c26b-4303-b2a4-b74575092bc7-7,https://biolit.fr/observations/observation-2fc3fb44-c26b-4303-b2a4-b74575092bc7-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0112-scaled.jpg,,FALSE, +N1,58570,sortie-2fc3fb44-c26b-4303-b2a4-b74575092bc7,https://biolit.fr/sorties/sortie-2fc3fb44-c26b-4303-b2a4-b74575092bc7/,Jusup,,09/09/2022,10.0000000,11.0000000,47.541518000000,-3.133339000000,,plage de kerhostin,30067,observation-2fc3fb44-c26b-4303-b2a4-b74575092bc7-8,https://biolit.fr/observations/observation-2fc3fb44-c26b-4303-b2a4-b74575092bc7-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0113-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30069,observation-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0060-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30071,observation-69d49537-aab8-4ea0-91bd-1417586b979a-2,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0061-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30073,observation-69d49537-aab8-4ea0-91bd-1417586b979a-3,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0062-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30075,observation-69d49537-aab8-4ea0-91bd-1417586b979a-4,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0063-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30077,observation-69d49537-aab8-4ea0-91bd-1417586b979a-5,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-5/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_0064-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30078,observation-69d49537-aab8-4ea0-91bd-1417586b979a-6,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0065_0-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30080,observation-69d49537-aab8-4ea0-91bd-1417586b979a-7,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0067-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30082,observation-69d49537-aab8-4ea0-91bd-1417586b979a-8,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0069-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30084,observation-69d49537-aab8-4ea0-91bd-1417586b979a-9,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0070_0-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30086,observation-69d49537-aab8-4ea0-91bd-1417586b979a-10,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0073-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30088,observation-69d49537-aab8-4ea0-91bd-1417586b979a-11,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0076-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30090,observation-69d49537-aab8-4ea0-91bd-1417586b979a-12,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0074-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30092,observation-69d49537-aab8-4ea0-91bd-1417586b979a-13,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0077-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30094,observation-69d49537-aab8-4ea0-91bd-1417586b979a-14,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0079-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30096,observation-69d49537-aab8-4ea0-91bd-1417586b979a-15,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0081-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30098,observation-69d49537-aab8-4ea0-91bd-1417586b979a-16,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0080-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30100,observation-69d49537-aab8-4ea0-91bd-1417586b979a-17,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0084-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30102,observation-69d49537-aab8-4ea0-91bd-1417586b979a-18,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0088-scaled.jpg,,FALSE, +N1,58571,sortie-69d49537-aab8-4ea0-91bd-1417586b979a,https://biolit.fr/sorties/sortie-69d49537-aab8-4ea0-91bd-1417586b979a/,Jusup,,09/09/2022,9.0000000,10.0000000,47.533921000000,-3.141993000000,,Plage de Toul de bragne,30104,observation-69d49537-aab8-4ea0-91bd-1417586b979a-19,https://biolit.fr/observations/observation-69d49537-aab8-4ea0-91bd-1417586b979a-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0092-scaled.jpg,,FALSE, +N1,58573,sortie-b78be47b-627a-4647-a57e-91fa33b268e2,https://biolit.fr/sorties/sortie-b78be47b-627a-4647-a57e-91fa33b268e2/,Nat83,,11/24/2022 0:00,11.0000000,11.0000000,43.270916000000,6.579045000000,,Port Grimaud 83310,30112,observation-b78be47b-627a-4647-a57e-91fa33b268e2,https://biolit.fr/observations/observation-b78be47b-627a-4647-a57e-91fa33b268e2/,Alca torda,Pingouin torda,,https://biolit.fr/wp-content/uploads/2023/07/77E2F921-E47C-4636-9A63-1F1083937DC7.jpeg,,TRUE, +N1,58574,sortie-cbf71238-d3b3-4ace-bf27-608e5a48e262,https://biolit.fr/sorties/sortie-cbf71238-d3b3-4ace-bf27-608e5a48e262/,Nat83,,11/23/2022 0:00,12.0000000,12.0:15,43.271916000000,6.58210200000,,Port Grimaud 83310,30114,observation-cbf71238-d3b3-4ace-bf27-608e5a48e262,https://biolit.fr/observations/observation-cbf71238-d3b3-4ace-bf27-608e5a48e262/,Alca torda,Pingouin torda,,https://biolit.fr/wp-content/uploads/2023/07/1DE7765C-3049-415A-B0DD-EA64FF24D94F-scaled.jpeg,,TRUE, +N1,58575,sortie-2fe57a20-6710-421d-a025-218db1f5ea72,https://biolit.fr/sorties/sortie-2fe57a20-6710-421d-a025-218db1f5ea72/,Nat83,,11/21/2022 0:00,12.0:25,12.0:35,43.27056400000,6.586373000000,,Port Grimaud 83310,30116,observation-2fe57a20-6710-421d-a025-218db1f5ea72,https://biolit.fr/observations/observation-2fe57a20-6710-421d-a025-218db1f5ea72/,Alca torda,Pingouin torda,,https://biolit.fr/wp-content/uploads/2023/07/C3E2AEA7-85F0-4EE7-BBEB-E7198EC30D5A.jpeg,,TRUE, +N1,58576,sortie-de9a40d3-ba94-49ab-9495-02704079f5fb,https://biolit.fr/sorties/sortie-de9a40d3-ba94-49ab-9495-02704079f5fb/,Nat83,,11/20/2022 0:00,17.000005,17.0:15,43.272212000000,6.588175000000,,Port Grimaud 83310,30118,observation-de9a40d3-ba94-49ab-9495-02704079f5fb,https://biolit.fr/observations/observation-de9a40d3-ba94-49ab-9495-02704079f5fb/,Alca torda,Pingouin torda,,https://biolit.fr/wp-content/uploads/2023/07/31C41C5B-421E-4AE6-A2F4-A087F7A493FA-scaled.jpeg,,TRUE, +N1,58576,sortie-de9a40d3-ba94-49ab-9495-02704079f5fb,https://biolit.fr/sorties/sortie-de9a40d3-ba94-49ab-9495-02704079f5fb/,Nat83,,11/20/2022 0:00,17.000005,17.0:15,43.272212000000,6.588175000000,,Port Grimaud 83310,30120,observation-de9a40d3-ba94-49ab-9495-02704079f5fb-2,https://biolit.fr/observations/observation-de9a40d3-ba94-49ab-9495-02704079f5fb-2/,Alca torda,Pingouin torda,,https://biolit.fr/wp-content/uploads/2023/07/C61CC781-2BB3-427E-9BCF-2872AA1D58C6-scaled.jpeg,,TRUE, +N1,58577,sortie-3ad42e4b-8769-4b80-9d25-0d75db6f89b7,https://biolit.fr/sorties/sortie-3ad42e4b-8769-4b80-9d25-0d75db6f89b7/,Nat83,,11/20/2022 0:00,7.0:35,7.0000000,43.272607000000,6.58830400000,,Port Grimaud 83310,30122,observation-3ad42e4b-8769-4b80-9d25-0d75db6f89b7,https://biolit.fr/observations/observation-3ad42e4b-8769-4b80-9d25-0d75db6f89b7/,Alca torda,Pingouin torda,,https://biolit.fr/wp-content/uploads/2023/07/F6A5BB66-92B4-4451-B340-D393FAF9562A.jpeg,,TRUE, +N1,58578,sortie-9a491432-de3b-4e4f-8625-2141c6a8687b,https://biolit.fr/sorties/sortie-9a491432-de3b-4e4f-8625-2141c6a8687b/,Nat83,,11/19/2022 0:00,11.0000000,11.0000000,43.272673000000,6.588100000000,,Port Grimaud 83310,30124,observation-9a491432-de3b-4e4f-8625-2141c6a8687b,https://biolit.fr/observations/observation-9a491432-de3b-4e4f-8625-2141c6a8687b/,Alca torda,Pingouin torda,,https://biolit.fr/wp-content/uploads/2023/07/A403185C-FA4F-4154-A9C9-0DF78ED98436.jpeg,,TRUE, +N1,58579,sortie-963bdc1b-7149-46f0-88f0-2538a9b48308,https://biolit.fr/sorties/sortie-963bdc1b-7149-46f0-88f0-2538a9b48308/,Roman,,11/07/2022,17.0000000,18.0000000,47.708292000000,-3.361640000000,,Port-Louis,30126,observation-963bdc1b-7149-46f0-88f0-2538a9b48308,https://biolit.fr/observations/observation-963bdc1b-7149-46f0-88f0-2538a9b48308/,,,,https://biolit.fr/wp-content/uploads/2023/07/Arrivage de plastique.PNG,,FALSE, +N1,58579,sortie-963bdc1b-7149-46f0-88f0-2538a9b48308,https://biolit.fr/sorties/sortie-963bdc1b-7149-46f0-88f0-2538a9b48308/,Roman,,11/07/2022,17.0000000,18.0000000,47.708292000000,-3.361640000000,,Port-Louis,30128,observation-963bdc1b-7149-46f0-88f0-2538a9b48308-2,https://biolit.fr/observations/observation-963bdc1b-7149-46f0-88f0-2538a9b48308-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capsule d'oeuf de roussette.PNG,,FALSE, +N1,58579,sortie-963bdc1b-7149-46f0-88f0-2538a9b48308,https://biolit.fr/sorties/sortie-963bdc1b-7149-46f0-88f0-2538a9b48308/,Roman,,11/07/2022,17.0000000,18.0000000,47.708292000000,-3.361640000000,,Port-Louis,30130,observation-963bdc1b-7149-46f0-88f0-2538a9b48308-3,https://biolit.fr/observations/observation-963bdc1b-7149-46f0-88f0-2538a9b48308-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Laminaria sp_0.PNG,,FALSE, +N1,58579,sortie-963bdc1b-7149-46f0-88f0-2538a9b48308,https://biolit.fr/sorties/sortie-963bdc1b-7149-46f0-88f0-2538a9b48308/,Roman,,11/07/2022,17.0000000,18.0000000,47.708292000000,-3.361640000000,,Port-Louis,30132,observation-963bdc1b-7149-46f0-88f0-2538a9b48308-4,https://biolit.fr/observations/observation-963bdc1b-7149-46f0-88f0-2538a9b48308-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pelagia noctiluca.PNG,,FALSE, +N1,58579,sortie-963bdc1b-7149-46f0-88f0-2538a9b48308,https://biolit.fr/sorties/sortie-963bdc1b-7149-46f0-88f0-2538a9b48308/,Roman,,11/07/2022,17.0000000,18.0000000,47.708292000000,-3.361640000000,,Port-Louis,30134,observation-963bdc1b-7149-46f0-88f0-2538a9b48308-5,https://biolit.fr/observations/observation-963bdc1b-7149-46f0-88f0-2538a9b48308-5/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/Physalia physalis.jpg,,TRUE, +N1,58579,sortie-963bdc1b-7149-46f0-88f0-2538a9b48308,https://biolit.fr/sorties/sortie-963bdc1b-7149-46f0-88f0-2538a9b48308/,Roman,,11/07/2022,17.0000000,18.0000000,47.708292000000,-3.361640000000,,Port-Louis,30136,observation-963bdc1b-7149-46f0-88f0-2538a9b48308-6,https://biolit.fr/observations/observation-963bdc1b-7149-46f0-88f0-2538a9b48308-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sepia sp.PNG,,FALSE, +N1,58579,sortie-963bdc1b-7149-46f0-88f0-2538a9b48308,https://biolit.fr/sorties/sortie-963bdc1b-7149-46f0-88f0-2538a9b48308/,Roman,,11/07/2022,17.0000000,18.0000000,47.708292000000,-3.361640000000,,Port-Louis,30138,observation-963bdc1b-7149-46f0-88f0-2538a9b48308-7,https://biolit.fr/observations/observation-963bdc1b-7149-46f0-88f0-2538a9b48308-7/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Velella velella_4.PNG,,TRUE, +N1,58579,sortie-963bdc1b-7149-46f0-88f0-2538a9b48308,https://biolit.fr/sorties/sortie-963bdc1b-7149-46f0-88f0-2538a9b48308/,Roman,,11/07/2022,17.0000000,18.0000000,47.708292000000,-3.361640000000,,Port-Louis,30140,observation-963bdc1b-7149-46f0-88f0-2538a9b48308-8,https://biolit.fr/observations/observation-963bdc1b-7149-46f0-88f0-2538a9b48308-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Zostera marina_4.PNG,,FALSE, +N1,58580,sortie-9b60f20f-8912-43d0-af93-285abebc148f,https://biolit.fr/sorties/sortie-9b60f20f-8912-43d0-af93-285abebc148f/,Marine,,10/30/2022 0:00,16.0:15,16.0:25,46.148205000000,-1.211011000000,,Chef de Baie,30142,observation-9b60f20f-8912-43d0-af93-285abebc148f,https://biolit.fr/observations/observation-9b60f20f-8912-43d0-af93-285abebc148f/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221030_153301_compress97-scaled.jpg,,TRUE, +N1,58580,sortie-9b60f20f-8912-43d0-af93-285abebc148f,https://biolit.fr/sorties/sortie-9b60f20f-8912-43d0-af93-285abebc148f/,Marine,,10/30/2022 0:00,16.0:15,16.0:25,46.148205000000,-1.211011000000,,Chef de Baie,30144,observation-9b60f20f-8912-43d0-af93-285abebc148f-2,https://biolit.fr/observations/observation-9b60f20f-8912-43d0-af93-285abebc148f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221030_153323_compress93-scaled.jpg,,FALSE, +N1,58580,sortie-9b60f20f-8912-43d0-af93-285abebc148f,https://biolit.fr/sorties/sortie-9b60f20f-8912-43d0-af93-285abebc148f/,Marine,,10/30/2022 0:00,16.0:15,16.0:25,46.148205000000,-1.211011000000,,Chef de Baie,30146,observation-9b60f20f-8912-43d0-af93-285abebc148f-3,https://biolit.fr/observations/observation-9b60f20f-8912-43d0-af93-285abebc148f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221030_153915_compress98-scaled.jpg,,FALSE, +N1,58580,sortie-9b60f20f-8912-43d0-af93-285abebc148f,https://biolit.fr/sorties/sortie-9b60f20f-8912-43d0-af93-285abebc148f/,Marine,,10/30/2022 0:00,16.0:15,16.0:25,46.148205000000,-1.211011000000,,Chef de Baie,30148,observation-9b60f20f-8912-43d0-af93-285abebc148f-4,https://biolit.fr/observations/observation-9b60f20f-8912-43d0-af93-285abebc148f-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221030_154101_compress22-scaled.jpg,,TRUE, +N1,58580,sortie-9b60f20f-8912-43d0-af93-285abebc148f,https://biolit.fr/sorties/sortie-9b60f20f-8912-43d0-af93-285abebc148f/,Marine,,10/30/2022 0:00,16.0:15,16.0:25,46.148205000000,-1.211011000000,,Chef de Baie,30150,observation-9b60f20f-8912-43d0-af93-285abebc148f-5,https://biolit.fr/observations/observation-9b60f20f-8912-43d0-af93-285abebc148f-5/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221030_154155_compress61-scaled.jpg,,TRUE, +N1,58580,sortie-9b60f20f-8912-43d0-af93-285abebc148f,https://biolit.fr/sorties/sortie-9b60f20f-8912-43d0-af93-285abebc148f/,Marine,,10/30/2022 0:00,16.0:15,16.0:25,46.148205000000,-1.211011000000,,Chef de Baie,30152,observation-9b60f20f-8912-43d0-af93-285abebc148f-6,https://biolit.fr/observations/observation-9b60f20f-8912-43d0-af93-285abebc148f-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221030_154159_compress62-scaled.jpg,,FALSE, +N1,58581,sortie-9577f933-51e5-4d6c-93c4-f3feb02953c9,https://biolit.fr/sorties/sortie-9577f933-51e5-4d6c-93c4-f3feb02953c9/,Marine,,9/28/2022 0:00,10.0:35,10.0000000,43.284254000000,5.315855000000,Planète Mer,Plage de Saint Esteve,30154,observation-9577f933-51e5-4d6c-93c4-f3feb02953c9,https://biolit.fr/observations/observation-9577f933-51e5-4d6c-93c4-f3feb02953c9/,Larus michahellis,Goéland leucophée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220928_104531_compress99-scaled.jpg,,TRUE, +N1,58581,sortie-9577f933-51e5-4d6c-93c4-f3feb02953c9,https://biolit.fr/sorties/sortie-9577f933-51e5-4d6c-93c4-f3feb02953c9/,Marine,,9/28/2022 0:00,10.0:35,10.0000000,43.284254000000,5.315855000000,Planète Mer,Plage de Saint Esteve,30156,observation-9577f933-51e5-4d6c-93c4-f3feb02953c9-2,https://biolit.fr/observations/observation-9577f933-51e5-4d6c-93c4-f3feb02953c9-2/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220928_104753_compress47-scaled.jpg,,TRUE, +N1,58582,sortie-58f8019b-93e7-4054-a433-0c231d5de174,https://biolit.fr/sorties/sortie-58f8019b-93e7-4054-a433-0c231d5de174/,Groupe Associatif Estuaire,,11/09/2022,10.0000000,12.0000000,46.436816000000,-1.665476000000,,Anse de la République,30158,observation-58f8019b-93e7-4054-a433-0c231d5de174,https://biolit.fr/observations/observation-58f8019b-93e7-4054-a433-0c231d5de174/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20221109_100824-scaled.jpg,,TRUE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30160,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,,,,https://biolit.fr/wp-content/uploads/2023/07/Alentia gelatinosa_0.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30162,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-2,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-2/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_13.PNG,,TRUE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30164,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-3,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie sp_6.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30166,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-4,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-4/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_20.PNG,,TRUE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30168,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-5,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_13.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30170,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-6,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Bottrylloides sp.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30172,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-7,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Bottrylloides sp1.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30174,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-8,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Branta bernicla_3.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30176,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-9,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-9/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas précopulation.PNG,,TRUE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30178,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-10,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_11.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30180,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-11,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ciliata mustela_4.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30182,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-12,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ciona intestinalis_3.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30184,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-13,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-13/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crepidula fornicata_6.PNG,,TRUE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30186,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-14,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 1_10.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30188,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-15,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_35.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30190,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-16,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbula magus_0.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30192,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-17,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/Haematopus ostralagus.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30194,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-18,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-18/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/Haliotis tuberculata_10.PNG,,TRUE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30196,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-19,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/lepidochitona c et acanthochitona crinita.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30198,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-20,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lipophrys pholis_2.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30200,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-21,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_12.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30202,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-22,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_29.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30204,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-23,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia_11.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30206,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-24,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/Modiolus sp.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30208,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-25,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-25/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_22.PNG,,TRUE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30210,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-26,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-26/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebra erinaceus_4.PNG,,TRUE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30212,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-27,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ophiothrix fragilis_3.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30214,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-28,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ostrea edulis.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30216,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-29,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_30.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30218,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-30,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes decussatus_2.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30220,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-31,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes philippinarum_2.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30222,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-32,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sagartia sp pe.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30224,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-33,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/Venerupis aurea_3.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30226,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-34,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/Venerupis corrugata_1.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30228,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-35,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa_9.PNG,,FALSE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30230,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-36,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-36/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_20.PNG,,TRUE, +N1,58583,sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047,https://biolit.fr/sorties/sortie-dbf49ad7-0b39-4590-99c7-8b2ca6595047/,Roman,,10/30/2022 0:00,13.0000000,15.0000000,47.706821000000,-3.33474300000,,Riantec,30232,observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-37,https://biolit.fr/observations/observation-dbf49ad7-0b39-4590-99c7-8b2ca6595047-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/Zostera noltii.PNG,,FALSE, +N1,58584,sortie-cdb96b94-2ae4-42c0-8182-9c08f1075ade,https://biolit.fr/sorties/sortie-cdb96b94-2ae4-42c0-8182-9c08f1075ade/,Camille Benyamine,,10/25/2022 0:00,10.0000000,11.0000000,43.214703000000,5.34320100000,,Anse de la Maronaise,30234,observation-cdb96b94-2ae4-42c0-8182-9c08f1075ade,https://biolit.fr/observations/observation-cdb96b94-2ae4-42c0-8182-9c08f1075ade/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221025 OEUF MUREX.jpg,,FALSE, +N1,58584,sortie-cdb96b94-2ae4-42c0-8182-9c08f1075ade,https://biolit.fr/sorties/sortie-cdb96b94-2ae4-42c0-8182-9c08f1075ade/,Camille Benyamine,,10/25/2022 0:00,10.0000000,11.0000000,43.214703000000,5.34320100000,,Anse de la Maronaise,30236,observation-cdb96b94-2ae4-42c0-8182-9c08f1075ade-2,https://biolit.fr/observations/observation-cdb96b94-2ae4-42c0-8182-9c08f1075ade-2/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20221025 OEUFS DE SECHES.jpg,,TRUE, +N1,58585,sortie-6f334b31-a2e0-43e2-8d42-200e471d988a,https://biolit.fr/sorties/sortie-6f334b31-a2e0-43e2-8d42-200e471d988a/,Camille Benyamine,,10/25/2022 0:00,10.0000000,11.0000000,43.214366000000,5.342428000000,Planète Mer,Anse de la Maronaise,30238,observation-6f334b31-a2e0-43e2-8d42-200e471d988a,https://biolit.fr/observations/observation-6f334b31-a2e0-43e2-8d42-200e471d988a/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/20221025 2 ARCHES DE NOE_0-scaled.jpg,,TRUE, +N1,58585,sortie-6f334b31-a2e0-43e2-8d42-200e471d988a,https://biolit.fr/sorties/sortie-6f334b31-a2e0-43e2-8d42-200e471d988a/,Camille Benyamine,,10/25/2022 0:00,10.0000000,11.0000000,43.214366000000,5.342428000000,Planète Mer,Anse de la Maronaise,30240,observation-6f334b31-a2e0-43e2-8d42-200e471d988a-2,https://biolit.fr/observations/observation-6f334b31-a2e0-43e2-8d42-200e471d988a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221025 CRABE-scaled.jpg,,FALSE, +N1,58586,sortie-c35e7c7e-00a5-4493-82ba-a75b3ea09c00,https://biolit.fr/sorties/sortie-c35e7c7e-00a5-4493-82ba-a75b3ea09c00/,CPIE Flandre Maritime,,10/04/2022,8.0000000,12.0000000,51.072066000000,2.487657000000,,Plage de Zuydcoote,30242,observation-c35e7c7e-00a5-4493-82ba-a75b3ea09c00,https://biolit.fr/observations/observation-c35e7c7e-00a5-4493-82ba-a75b3ea09c00/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221004_111406-min-scaled.jpg,,FALSE, +N1,58586,sortie-c35e7c7e-00a5-4493-82ba-a75b3ea09c00,https://biolit.fr/sorties/sortie-c35e7c7e-00a5-4493-82ba-a75b3ea09c00/,CPIE Flandre Maritime,,10/04/2022,8.0000000,12.0000000,51.072066000000,2.487657000000,,Plage de Zuydcoote,30244,observation-c35e7c7e-00a5-4493-82ba-a75b3ea09c00-2,https://biolit.fr/observations/observation-c35e7c7e-00a5-4493-82ba-a75b3ea09c00-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221004_111407-min-scaled.jpg,,FALSE, +N1,58586,sortie-c35e7c7e-00a5-4493-82ba-a75b3ea09c00,https://biolit.fr/sorties/sortie-c35e7c7e-00a5-4493-82ba-a75b3ea09c00/,CPIE Flandre Maritime,,10/04/2022,8.0000000,12.0000000,51.072066000000,2.487657000000,,Plage de Zuydcoote,30246,observation-c35e7c7e-00a5-4493-82ba-a75b3ea09c00-3,https://biolit.fr/observations/observation-c35e7c7e-00a5-4493-82ba-a75b3ea09c00-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221004_111416-min-scaled.jpg,,FALSE, +N1,58586,sortie-c35e7c7e-00a5-4493-82ba-a75b3ea09c00,https://biolit.fr/sorties/sortie-c35e7c7e-00a5-4493-82ba-a75b3ea09c00/,CPIE Flandre Maritime,,10/04/2022,8.0000000,12.0000000,51.072066000000,2.487657000000,,Plage de Zuydcoote,30248,observation-c35e7c7e-00a5-4493-82ba-a75b3ea09c00-4,https://biolit.fr/observations/observation-c35e7c7e-00a5-4493-82ba-a75b3ea09c00-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221004_111419-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30250,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_105946-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30252,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-2,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_105949-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30254,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-3,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_105955-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30256,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-4,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_110007-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30258,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-5,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_110009-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30260,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-6,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111244-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30262,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-7,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111322-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30264,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-8,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111333-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30266,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-9,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111336-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30268,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-10,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111348-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30270,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-11,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111352-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30272,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-12,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_105957-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30274,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-13,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_113112-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30276,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-14,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_112925-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30278,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-15,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_112917-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30280,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-16,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_112849-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30282,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-17,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_112604-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30284,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-18,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_112411-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30286,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-19,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_112228-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30288,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-20,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_112227-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30290,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-21,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_112201-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30292,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-22,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_112053-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30294,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-23,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111805-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30296,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-24,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111800-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30298,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-25,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111757-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30300,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-26,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111423-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30302,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-27,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111412-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30304,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-28,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111427-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30306,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-29,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111453-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30308,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-30,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111504-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30310,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-31,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111511-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30312,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-32,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111524-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30314,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-33,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111532-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30316,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-34,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111550-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30318,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-35,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111606-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30320,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-36,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-36/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111610-min-scaled.jpg,,FALSE, +N1,58587,sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9,https://biolit.fr/sorties/sortie-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9/,CPIE Flandre Maritime,,9/29/2022 0:00,13.0000000,16.0000000,51.072080000000,2.487603000000,,Plage de Zuydcoote,30322,observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-37,https://biolit.fr/observations/observation-1963939e-1db8-4ddd-a9a3-0e1a8d715ba9-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_111623-min-scaled.jpg,,FALSE, +N1,58588,sortie-57a824dc-423f-47a4-bf77-7adbdd52887a,https://biolit.fr/sorties/sortie-57a824dc-423f-47a4-bf77-7adbdd52887a/,CPIE Flandre Maritime,,10/04/2022,14.0000000,17.0000000,51.070655000000,2.483397000000,,Plage de Zuydcoote,30324,observation-57a824dc-423f-47a4-bf77-7adbdd52887a,https://biolit.fr/observations/observation-57a824dc-423f-47a4-bf77-7adbdd52887a/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221004_160911-min-scaled.jpg,,FALSE, +N1,58588,sortie-57a824dc-423f-47a4-bf77-7adbdd52887a,https://biolit.fr/sorties/sortie-57a824dc-423f-47a4-bf77-7adbdd52887a/,CPIE Flandre Maritime,,10/04/2022,14.0000000,17.0000000,51.070655000000,2.483397000000,,Plage de Zuydcoote,30326,observation-57a824dc-423f-47a4-bf77-7adbdd52887a-2,https://biolit.fr/observations/observation-57a824dc-423f-47a4-bf77-7adbdd52887a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221004_160913-min-scaled.jpg,,FALSE, +N1,58588,sortie-57a824dc-423f-47a4-bf77-7adbdd52887a,https://biolit.fr/sorties/sortie-57a824dc-423f-47a4-bf77-7adbdd52887a/,CPIE Flandre Maritime,,10/04/2022,14.0000000,17.0000000,51.070655000000,2.483397000000,,Plage de Zuydcoote,30328,observation-57a824dc-423f-47a4-bf77-7adbdd52887a-3,https://biolit.fr/observations/observation-57a824dc-423f-47a4-bf77-7adbdd52887a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221004_160914-min-scaled.jpg,,FALSE, +N1,58589,sortie-a1d799e4-2132-4ad9-a75e-f5c3e7f1a5e2,https://biolit.fr/sorties/sortie-a1d799e4-2132-4ad9-a75e-f5c3e7f1a5e2/,CPIE Flandre Maritime,,10/03/2022,13.0000000,16.0000000,51.072018000000,2.487625000000,,Plage de Zuydcoote,30330,observation-a1d799e4-2132-4ad9-a75e-f5c3e7f1a5e2,https://biolit.fr/observations/observation-a1d799e4-2132-4ad9-a75e-f5c3e7f1a5e2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20221003_160857-min-scaled.jpg,,FALSE, +N1,58590,sortie-8c8a51d6-bec7-460a-b38d-438782278fa4,https://biolit.fr/sorties/sortie-8c8a51d6-bec7-460a-b38d-438782278fa4/,CPIE Flandre Maritime,,9/30/2022 0:00,8.0:55,11.0:55,51.072075000000,2.487635000000,,Plage de Zuydcoote,30332,observation-8c8a51d6-bec7-460a-b38d-438782278fa4,https://biolit.fr/observations/observation-8c8a51d6-bec7-460a-b38d-438782278fa4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220930_104925-min-scaled.jpg,,FALSE, +N1,58591,sortie-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63,https://biolit.fr/sorties/sortie-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63/,CPIE Flandre Maritime,,9/29/2022 0:00,8.0000000,11.0:35,51.072001000000,2.487689000000,,Plage de Zuydcoote,30334,observation-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63,https://biolit.fr/observations/observation-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_155007-min-scaled.jpg,,FALSE, +N1,58591,sortie-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63,https://biolit.fr/sorties/sortie-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63/,CPIE Flandre Maritime,,9/29/2022 0:00,8.0000000,11.0:35,51.072001000000,2.487689000000,,Plage de Zuydcoote,30336,observation-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63-2,https://biolit.fr/observations/observation-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_155010-min-scaled.jpg,,FALSE, +N1,58591,sortie-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63,https://biolit.fr/sorties/sortie-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63/,CPIE Flandre Maritime,,9/29/2022 0:00,8.0000000,11.0:35,51.072001000000,2.487689000000,,Plage de Zuydcoote,30338,observation-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63-3,https://biolit.fr/observations/observation-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_155015-min-scaled.jpg,,FALSE, +N1,58591,sortie-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63,https://biolit.fr/sorties/sortie-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63/,CPIE Flandre Maritime,,9/29/2022 0:00,8.0000000,11.0:35,51.072001000000,2.487689000000,,Plage de Zuydcoote,30340,observation-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63-4,https://biolit.fr/observations/observation-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_155023-min-scaled.jpg,,FALSE, +N1,58591,sortie-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63,https://biolit.fr/sorties/sortie-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63/,CPIE Flandre Maritime,,9/29/2022 0:00,8.0000000,11.0:35,51.072001000000,2.487689000000,,Plage de Zuydcoote,30342,observation-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63-5,https://biolit.fr/observations/observation-8afb7d9e-85b5-47f7-8cfa-cd6fcc731f63-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220929_155031-min-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30344,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_105134-min_0-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30346,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-2,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_105136-min_0-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30348,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-3,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_105138-min_0-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30350,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-4,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_105145-min_0-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30352,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-5,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_105203-min_0-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30354,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-6,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_105215-min_0-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30356,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-7,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_105219-min_0-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30358,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-8,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_105222-min_0-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30360,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-9,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_105240-min_0-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30362,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-10,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_105324-min_0-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30364,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-11,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_110330-min_0-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30366,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-12,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_110405-min_0-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30368,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-13,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_110411-min-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30370,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-14,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_110447-min-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30372,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-15,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_110456-min-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30374,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-16,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_110517-min-scaled.jpg,,FALSE, +N1,58592,sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad,https://biolit.fr/sorties/sortie-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad/,CPIE Flandre Maritime,,9/23/2022 0:00,8.0000000,11.0000000,51.072032000000,2.487667000000,,Plage de Zuydcoote,30376,observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-17,https://biolit.fr/observations/observation-c5c0e8ee-b6c2-4a6e-92d3-b6168ee576ad-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220923_111136-min-scaled.jpg,,FALSE, +N1,58593,sortie-e2bae3dd-9de9-485d-9fa2-517514f11665,https://biolit.fr/sorties/sortie-e2bae3dd-9de9-485d-9fa2-517514f11665/,CPIE Flandre Maritime,,9/22/2022 0:00,9.0000000,12.0000000,51.051570000000,2.400474000000,,Plage de Malo-les-Bains,30378,observation-e2bae3dd-9de9-485d-9fa2-517514f11665,https://biolit.fr/observations/observation-e2bae3dd-9de9-485d-9fa2-517514f11665/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220922_111312-min-scaled.jpg,,FALSE, +N1,58593,sortie-e2bae3dd-9de9-485d-9fa2-517514f11665,https://biolit.fr/sorties/sortie-e2bae3dd-9de9-485d-9fa2-517514f11665/,CPIE Flandre Maritime,,9/22/2022 0:00,9.0000000,12.0000000,51.051570000000,2.400474000000,,Plage de Malo-les-Bains,30380,observation-e2bae3dd-9de9-485d-9fa2-517514f11665-2,https://biolit.fr/observations/observation-e2bae3dd-9de9-485d-9fa2-517514f11665-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220922_111314-min-scaled.jpg,,FALSE, +N1,58593,sortie-e2bae3dd-9de9-485d-9fa2-517514f11665,https://biolit.fr/sorties/sortie-e2bae3dd-9de9-485d-9fa2-517514f11665/,CPIE Flandre Maritime,,9/22/2022 0:00,9.0000000,12.0000000,51.051570000000,2.400474000000,,Plage de Malo-les-Bains,30382,observation-e2bae3dd-9de9-485d-9fa2-517514f11665-3,https://biolit.fr/observations/observation-e2bae3dd-9de9-485d-9fa2-517514f11665-3/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/20220922_111436-min-scaled.jpg,,TRUE, +N1,58593,sortie-e2bae3dd-9de9-485d-9fa2-517514f11665,https://biolit.fr/sorties/sortie-e2bae3dd-9de9-485d-9fa2-517514f11665/,CPIE Flandre Maritime,,9/22/2022 0:00,9.0000000,12.0000000,51.051570000000,2.400474000000,,Plage de Malo-les-Bains,30384,observation-e2bae3dd-9de9-485d-9fa2-517514f11665-4,https://biolit.fr/observations/observation-e2bae3dd-9de9-485d-9fa2-517514f11665-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220922_111438-min-scaled.jpg,,FALSE, +N1,58594,sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629,https://biolit.fr/sorties/sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629/,CPIE Flandre Maritime,,9/20/2022 0:00,9.0000000,12.0000000,51.052070000000,2.404337000000,,Plage de Malo-les-Bains,30386,observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629,https://biolit.fr/observations/observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220920_113533-min-scaled.jpg,,FALSE, +N1,58594,sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629,https://biolit.fr/sorties/sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629/,CPIE Flandre Maritime,,9/20/2022 0:00,9.0000000,12.0000000,51.052070000000,2.404337000000,,Plage de Malo-les-Bains,30388,observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-2,https://biolit.fr/observations/observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220920_113541-min-scaled.jpg,,FALSE, +N1,58594,sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629,https://biolit.fr/sorties/sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629/,CPIE Flandre Maritime,,9/20/2022 0:00,9.0000000,12.0000000,51.052070000000,2.404337000000,,Plage de Malo-les-Bains,30390,observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-3,https://biolit.fr/observations/observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220920_113550-min-scaled.jpg,,FALSE, +N1,58594,sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629,https://biolit.fr/sorties/sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629/,CPIE Flandre Maritime,,9/20/2022 0:00,9.0000000,12.0000000,51.052070000000,2.404337000000,,Plage de Malo-les-Bains,30392,observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-4,https://biolit.fr/observations/observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220920_113609-min-scaled.jpg,,FALSE, +N1,58594,sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629,https://biolit.fr/sorties/sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629/,CPIE Flandre Maritime,,9/20/2022 0:00,9.0000000,12.0000000,51.052070000000,2.404337000000,,Plage de Malo-les-Bains,30394,observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-5,https://biolit.fr/observations/observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220920_113614-min-scaled.jpg,,FALSE, +N1,58594,sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629,https://biolit.fr/sorties/sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629/,CPIE Flandre Maritime,,9/20/2022 0:00,9.0000000,12.0000000,51.052070000000,2.404337000000,,Plage de Malo-les-Bains,30396,observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-6,https://biolit.fr/observations/observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220920_114020-min-scaled.jpg,,FALSE, +N1,58594,sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629,https://biolit.fr/sorties/sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629/,CPIE Flandre Maritime,,9/20/2022 0:00,9.0000000,12.0000000,51.052070000000,2.404337000000,,Plage de Malo-les-Bains,30398,observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-7,https://biolit.fr/observations/observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220920_114022-min-scaled.jpg,,FALSE, +N1,58594,sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629,https://biolit.fr/sorties/sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629/,CPIE Flandre Maritime,,9/20/2022 0:00,9.0000000,12.0000000,51.052070000000,2.404337000000,,Plage de Malo-les-Bains,30400,observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-8,https://biolit.fr/observations/observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220920_114024-min-scaled.jpg,,FALSE, +N1,58594,sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629,https://biolit.fr/sorties/sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629/,CPIE Flandre Maritime,,9/20/2022 0:00,9.0000000,12.0000000,51.052070000000,2.404337000000,,Plage de Malo-les-Bains,30402,observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-9,https://biolit.fr/observations/observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220920_114025-min-scaled.jpg,,FALSE, +N1,58594,sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629,https://biolit.fr/sorties/sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629/,CPIE Flandre Maritime,,9/20/2022 0:00,9.0000000,12.0000000,51.052070000000,2.404337000000,,Plage de Malo-les-Bains,30404,observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-10,https://biolit.fr/observations/observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220920_114027-min-scaled.jpg,,FALSE, +N1,58594,sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629,https://biolit.fr/sorties/sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629/,CPIE Flandre Maritime,,9/20/2022 0:00,9.0000000,12.0000000,51.052070000000,2.404337000000,,Plage de Malo-les-Bains,30406,observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-11,https://biolit.fr/observations/observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crabe ...-min-scaled.jpg,,FALSE, +N1,58594,sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629,https://biolit.fr/sorties/sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629/,CPIE Flandre Maritime,,9/20/2022 0:00,9.0000000,12.0000000,51.052070000000,2.404337000000,,Plage de Malo-les-Bains,30408,observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-12,https://biolit.fr/observations/observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Echinocyamus pusillus-min-scaled.jpg,,FALSE, +N1,58594,sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629,https://biolit.fr/sorties/sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629/,CPIE Flandre Maritime,,9/20/2022 0:00,9.0000000,12.0000000,51.052070000000,2.404337000000,,Plage de Malo-les-Bains,30410,observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-13,https://biolit.fr/observations/observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/Magallana gigas-min-scaled.jpg,,FALSE, +N1,58594,sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629,https://biolit.fr/sorties/sortie-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629/,CPIE Flandre Maritime,,9/20/2022 0:00,9.0000000,12.0000000,51.052070000000,2.404337000000,,Plage de Malo-les-Bains,30412,observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-14,https://biolit.fr/observations/observation-d3c7f4c3-7fa7-41b1-af74-a92c73f3c629-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sepia officinalis-min-scaled.jpg,,FALSE, +N1,58595,sortie-3f6b0d42-130c-4b7d-ba4f-926b3bc5a843,https://biolit.fr/sorties/sortie-3f6b0d42-130c-4b7d-ba4f-926b3bc5a843/,Watch The Sea,,10/01/2022,11.0000000,11.0000000,43.187305000000,5.38882000000,Watch The Sea,Côte Nord de l'Ile Plane,30414,observation-3f6b0d42-130c-4b7d-ba4f-926b3bc5a843,https://biolit.fr/observations/observation-3f6b0d42-130c-4b7d-ba4f-926b3bc5a843/,,,,https://biolit.fr/wp-content/uploads/2023/07/81796.jpg,,FALSE, +N1,58596,sortie-face8305-092b-458a-b7bd-ccef3c592d10,https://biolit.fr/sorties/sortie-face8305-092b-458a-b7bd-ccef3c592d10/,Watch The Sea,,10/01/2022,10.0000000,10.0000000,43.187368000000,5.388434000000,,Côte Nord de l'Ile Plane,30416,observation-face8305-092b-458a-b7bd-ccef3c592d10,https://biolit.fr/observations/observation-face8305-092b-458a-b7bd-ccef3c592d10/,,,,https://biolit.fr/wp-content/uploads/2023/07/28997_2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30418,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2907b2_0.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30420,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-2,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2909_0-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30422,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-3,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-3/,Salicornia spp.,Salicorne,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2908.2_0-scaled.jpg,,TRUE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30424,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-4,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2910.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30426,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-5,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2911-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30428,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-6,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2912.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30430,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-7,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2913.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30432,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-8,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2914.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30434,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-9,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2915.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30436,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-10,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2918.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30438,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-11,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2919.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30440,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-12,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2920.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30442,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-13,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2921.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30444,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-14,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2922-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30446,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-15,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2923-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30448,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-16,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2924.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30450,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-17,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-17/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2928.2.jpg,,TRUE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30452,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-18,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2929.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30454,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-19,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2930.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30456,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-20,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2936.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30458,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-21,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2934-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30460,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-22,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2937.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30462,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-23,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2938.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30464,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-24,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-24/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2939.2.jpg,,TRUE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30466,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-25,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2940.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30468,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-26,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2941.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30470,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-27,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2942.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30472,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-28,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2943-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30474,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-29,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2944-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30476,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-30,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2945-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30478,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-31,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-31/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_2952.2.jpg,,TRUE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30480,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-32,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-32/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_2953.2.jpg,,TRUE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30482,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-33,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-33/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2954.2.jpg,,TRUE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30484,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-34,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2955.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30486,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-35,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2958_0-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30488,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-36,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-36/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2960.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30490,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-37,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2962-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30492,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-38,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-38/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2963-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30494,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-39,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-39/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2964.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30496,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-40,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-40/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2965_2-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30498,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-41,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-41/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2967.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30500,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-42,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-42/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2968.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30502,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-43,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-43/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2971.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30504,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-44,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-44/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2972.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30506,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-45,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-45/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2973_0-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30508,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-46,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-46/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2977.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30510,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-47,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-47/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2978.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30512,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-48,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-48/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2981.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30514,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-49,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-49/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2982_0-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30516,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-50,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-50/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2983-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30518,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-51,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-51/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2984-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30520,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-52,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-52/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2985.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30522,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-53,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-53/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2986.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30524,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-54,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-54/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2987.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30526,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-55,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-55/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2988.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30528,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-56,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-56/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2989.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30530,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-57,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-57/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2990.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30532,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-58,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-58/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2994-scaled.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30534,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-59,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-59/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2997-scaled.jpg,,TRUE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30536,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-60,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-60/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2998-scaled.jpg,,TRUE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30538,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-61,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-61/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2999-scaled.jpg,,TRUE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30540,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-62,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-62/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3005.2.jpg,,TRUE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30542,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-63,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-63/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3006.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30544,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-64,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-64/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3009.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30546,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-65,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-65/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3010.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30548,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-66,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-66/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3014.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30550,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-67,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-67/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3015.2.jpg,,FALSE, +N1,58597,sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc,https://biolit.fr/sorties/sortie-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc/,SV,,10/14/2022 0:00,13.0000000,17.0000000,43.032038000000,3.070426000000,,"Plage de la Vieille Nouvelle, Port-La-Nouvelle",30552,observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-68,https://biolit.fr/observations/observation-bbf92961-6cf7-4b1e-8d37-1df2c513b7cc-68/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3016-scaled.jpg,,FALSE, +N1,58598,sortie-b04ad69e-9099-4110-9820-bd67dfa081d1,https://biolit.fr/sorties/sortie-b04ad69e-9099-4110-9820-bd67dfa081d1/,Julie Codognotto,,10/03/2022,12.0000000,14.0000000,16.49128100000,-61.48822500000,,Anse Castalia en Guadeloupe,30554,observation-b04ad69e-9099-4110-9820-bd67dfa081d1,https://biolit.fr/observations/observation-b04ad69e-9099-4110-9820-bd67dfa081d1/,,,,https://biolit.fr/wp-content/uploads/2023/07/dentfossilisée.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30556,observation-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30558,observation-da99cdbc-9f72-4145-9377-15e697492ac9-2,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragaceae.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30560,observation-da99cdbc-9f72-4145-9377-15e697492ac9-3,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue sp-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30562,observation-da99cdbc-9f72-4145-9377-15e697492ac9-4,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30563,observation-da99cdbc-9f72-4145-9377-15e697492ac9-5,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30565,observation-da99cdbc-9f72-4145-9377-15e697492ac9-6,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_1-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30567,observation-da99cdbc-9f72-4145-9377-15e697492ac9-7,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Balanus perforatus.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30569,observation-da99cdbc-9f72-4145-9377-15e697492ac9-8,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus shclosseri-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30571,observation-da99cdbc-9f72-4145-9377-15e697492ac9-9,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Bottryloides-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30573,observation-da99cdbc-9f72-4145-9377-15e697492ac9-10,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Bryo sp-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30575,observation-da99cdbc-9f72-4145-9377-15e697492ac9-11,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/bulot-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30577,observation-da99cdbc-9f72-4145-9377-15e697492ac9-12,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-12/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_0.jpg,,TRUE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30579,observation-da99cdbc-9f72-4145-9377-15e697492ac9-13,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-13/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas-scaled.jpg,,TRUE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30581,observation-da99cdbc-9f72-4145-9377-15e697492ac9-14,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30583,observation-da99cdbc-9f72-4145-9377-15e697492ac9-15,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Chthamalus stellatus-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30585,observation-da99cdbc-9f72-4145-9377-15e697492ac9-16,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crampon de laminaire-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30587,observation-da99cdbc-9f72-4145-9377-15e697492ac9-17,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/cupule d'haricot de mer.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30589,observation-da99cdbc-9f72-4145-9377-15e697492ac9-18,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30591,observation-da99cdbc-9f72-4145-9377-15e697492ac9-19,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-19/,,,,https://biolit.fr/wp-content/uploads/2023/05/Fucus serratus-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30592,observation-da99cdbc-9f72-4145-9377-15e697492ac9-20,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibulla magu_s-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30594,observation-da99cdbc-9f72-4145-9377-15e697492ac9-21,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/huître plate-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30596,observation-da99cdbc-9f72-4145-9377-15e697492ac9-22,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/laminaria sp-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30598,observation-da99cdbc-9f72-4145-9377-15e697492ac9-23,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30600,observation-da99cdbc-9f72-4145-9377-15e697492ac9-24,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-24/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/lineus longissimus.PNG,,TRUE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30601,observation-da99cdbc-9f72-4145-9377-15e697492ac9-25,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lipos pholis-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30603,observation-da99cdbc-9f72-4145-9377-15e697492ac9-26,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lithophyllum incrustans.PNG,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30604,observation-da99cdbc-9f72-4145-9377-15e697492ac9-27,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/Littorina obtusata_0-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30606,observation-da99cdbc-9f72-4145-9377-15e697492ac9-28,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/Magalla gigas-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30608,observation-da99cdbc-9f72-4145-9377-15e697492ac9-29,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterais glacialis 1-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30610,observation-da99cdbc-9f72-4145-9377-15e697492ac9-30,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/Melarhaphe neritoides-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30612,observation-da99cdbc-9f72-4145-9377-15e697492ac9-31,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_0-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30614,observation-da99cdbc-9f72-4145-9377-15e697492ac9-32,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30616,observation-da99cdbc-9f72-4145-9377-15e697492ac9-33,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis lumbriciformis.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30618,observation-da99cdbc-9f72-4145-9377-15e697492ac9-34,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_0-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30620,observation-da99cdbc-9f72-4145-9377-15e697492ac9-35,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ostrea edulis.PNG,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30621,observation-da99cdbc-9f72-4145-9377-15e697492ac9-36,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-36/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30623,observation-da99cdbc-9f72-4145-9377-15e697492ac9-37,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/Palaemon elegans.PNG,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30624,observation-da99cdbc-9f72-4145-9377-15e697492ac9-38,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-38/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patella vulgata-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30626,observation-da99cdbc-9f72-4145-9377-15e697492ac9-39,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-39/,,,,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30628,observation-da99cdbc-9f72-4145-9377-15e697492ac9-40,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-40/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pince d'eriphia verrucosa.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30630,observation-da99cdbc-9f72-4145-9377-15e697492ac9-41,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-41/,,,,https://biolit.fr/wp-content/uploads/2023/07/plomb de pêche-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30632,observation-da99cdbc-9f72-4145-9377-15e697492ac9-42,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-42/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ponte d'aplysie-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30634,observation-da99cdbc-9f72-4145-9377-15e697492ac9-43,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-43/,,,,https://biolit.fr/wp-content/uploads/2023/07/porcellana platycheles.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30635,observation-da99cdbc-9f72-4145-9377-15e697492ac9-44,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-44/,,,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris-rotated.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30637,observation-da99cdbc-9f72-4145-9377-15e697492ac9-45,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-45/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes decussatus-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30639,observation-da99cdbc-9f72-4145-9377-15e697492ac9-46,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-46/,,,,https://biolit.fr/wp-content/uploads/2023/07/Salaria pavo-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30641,observation-da99cdbc-9f72-4145-9377-15e697492ac9-47,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-47/,,,,https://biolit.fr/wp-content/uploads/2023/07/Spurilla neapolitana-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30643,observation-da99cdbc-9f72-4145-9377-15e697492ac9-48,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-48/,,,,https://biolit.fr/wp-content/uploads/2023/07/Steromphala umbilicalis-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30645,observation-da99cdbc-9f72-4145-9377-15e697492ac9-49,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-49/,,,,https://biolit.fr/wp-content/uploads/2023/07/tomate de mer et petit chiton épineux-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30647,observation-da99cdbc-9f72-4145-9377-15e697492ac9-50,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-50/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ver sp-scaled.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30649,observation-da99cdbc-9f72-4145-9377-15e697492ac9-51,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-51/,,,,https://biolit.fr/wp-content/uploads/2023/07/Watersipora subatra-rotated.jpg,,FALSE, +N1,58599,sortie-da99cdbc-9f72-4145-9377-15e697492ac9,https://biolit.fr/sorties/sortie-da99cdbc-9f72-4145-9377-15e697492ac9/,Roman,,9/15/2022 0:00,14.0000000,16.0000000,47.703211000000,-3.354006000000,Observatoire du Plancton,Port-Louis,30651,observation-da99cdbc-9f72-4145-9377-15e697492ac9-52,https://biolit.fr/observations/observation-da99cdbc-9f72-4145-9377-15e697492ac9-52/,,,,https://biolit.fr/wp-content/uploads/2023/07/xanthe-scaled.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30653,observation-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 01_0.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30655,observation-3e449323-3615-490f-af44-dde6577863ff-2,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 02_1.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30657,observation-3e449323-3615-490f-af44-dde6577863ff-3,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 03.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30659,observation-3e449323-3615-490f-af44-dde6577863ff-4,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 04.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30661,observation-3e449323-3615-490f-af44-dde6577863ff-5,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 05.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30663,observation-3e449323-3615-490f-af44-dde6577863ff-6,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 06.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30665,observation-3e449323-3615-490f-af44-dde6577863ff-7,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-7/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Image 07.jpg,,TRUE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30667,observation-3e449323-3615-490f-af44-dde6577863ff-8,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-8/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/Image 08.jpg,,TRUE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30669,observation-3e449323-3615-490f-af44-dde6577863ff-9,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 09.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30671,observation-3e449323-3615-490f-af44-dde6577863ff-10,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 10.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30673,observation-3e449323-3615-490f-af44-dde6577863ff-11,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 11.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30675,observation-3e449323-3615-490f-af44-dde6577863ff-12,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 12.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30677,observation-3e449323-3615-490f-af44-dde6577863ff-13,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 13.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30679,observation-3e449323-3615-490f-af44-dde6577863ff-14,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 14.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30681,observation-3e449323-3615-490f-af44-dde6577863ff-15,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 15.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30683,observation-3e449323-3615-490f-af44-dde6577863ff-16,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 16.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30685,observation-3e449323-3615-490f-af44-dde6577863ff-17,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 17.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30687,observation-3e449323-3615-490f-af44-dde6577863ff-18,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 18.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30689,observation-3e449323-3615-490f-af44-dde6577863ff-19,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-19/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Image 19.jpg,,TRUE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30691,observation-3e449323-3615-490f-af44-dde6577863ff-20,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 20.jpg,,FALSE, +N1,58600,sortie-3e449323-3615-490f-af44-dde6577863ff,https://biolit.fr/sorties/sortie-3e449323-3615-490f-af44-dde6577863ff/,Fyrno,,9/18/2022 0:00,9.0000000,12.0000000,43.241006000000,5.362550000000,,"Marseille, Plage du Bain des dames",30693,observation-3e449323-3615-490f-af44-dde6577863ff-21,https://biolit.fr/observations/observation-3e449323-3615-490f-af44-dde6577863ff-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image 21.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30695,observation-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_143655-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30697,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-2,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_143704-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30699,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-3,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_143710-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30701,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-4,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_143715-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30703,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-5,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_143719-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30705,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-6,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_143726-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30707,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-7,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_143811-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30709,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-8,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_143826-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30711,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-9,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_143843-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30713,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-10,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_143852-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30715,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-11,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_143923-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30717,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-12,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_143926-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30719,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-13,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_143927-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30721,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-14,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_143944-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30723,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-15,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_144147-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30725,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-16,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_144403-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30727,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-17,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_144441-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30729,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-18,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_144451-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30731,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-19,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_144454-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30733,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-20,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_144457-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30735,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-21,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_144514-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30737,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-22,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_144531-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30739,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-23,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_144541-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30741,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-24,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_144610-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30743,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-25,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_144721-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30745,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-26,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_144758-scaled.jpg,,FALSE, +N1,58601,sortie-fc71d47a-a0c5-48af-a444-a35efb74500e,https://biolit.fr/sorties/sortie-fc71d47a-a0c5-48af-a444-a35efb74500e/,CPIE Flandre Maritime,,9/21/2022 0:00,10.0000000,12.0000000,51.072025000000,2.487217000000,,Plage de Zuydcoote,30747,observation-fc71d47a-a0c5-48af-a444-a35efb74500e-27,https://biolit.fr/observations/observation-fc71d47a-a0c5-48af-a444-a35efb74500e-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220919_151048-scaled.jpg,,FALSE, +N1,58602,sortie-5637fca2-e15f-43c2-bc72-ebfcdb19f033,https://biolit.fr/sorties/sortie-5637fca2-e15f-43c2-bc72-ebfcdb19f033/,Phil,,05/01/2022,16.0000000,16.0000000,47.835065000000,-4.347974000000,,Penmarc'h - Finistère,30749,observation-5637fca2-e15f-43c2-bc72-ebfcdb19f033,https://biolit.fr/observations/observation-5637fca2-e15f-43c2-bc72-ebfcdb19f033/,Matthiola sinuata,Giroflée des dunes,,https://biolit.fr/wp-content/uploads/2023/07/20220501_155906-scaled.jpg,,TRUE, +N1,58602,sortie-5637fca2-e15f-43c2-bc72-ebfcdb19f033,https://biolit.fr/sorties/sortie-5637fca2-e15f-43c2-bc72-ebfcdb19f033/,Phil,,05/01/2022,16.0000000,16.0000000,47.835065000000,-4.347974000000,,Penmarc'h - Finistère,30751,observation-5637fca2-e15f-43c2-bc72-ebfcdb19f033-2,https://biolit.fr/observations/observation-5637fca2-e15f-43c2-bc72-ebfcdb19f033-2/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/20220501_161220.jpg,,TRUE, +N1,58602,sortie-5637fca2-e15f-43c2-bc72-ebfcdb19f033,https://biolit.fr/sorties/sortie-5637fca2-e15f-43c2-bc72-ebfcdb19f033/,Phil,,05/01/2022,16.0000000,16.0000000,47.835065000000,-4.347974000000,,Penmarc'h - Finistère,30753,observation-5637fca2-e15f-43c2-bc72-ebfcdb19f033-3,https://biolit.fr/observations/observation-5637fca2-e15f-43c2-bc72-ebfcdb19f033-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220501_161010(0).jpg,,FALSE, +N1,58603,sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e,https://biolit.fr/sorties/sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e/,Anne Dominique PECOT,,9/17/2022 0:00,14.0000000,16.0000000,48.606850000000,-2.161427000000,,LANCIEUX PLAGE DU CADUCET,30755,observation-07c2628d-8f7a-40db-88f1-c2a833c6555e,https://biolit.fr/observations/observation-07c2628d-8f7a-40db-88f1-c2a833c6555e/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220917-WA0010_0.jpg,,FALSE, +N1,58603,sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e,https://biolit.fr/sorties/sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e/,Anne Dominique PECOT,,9/17/2022 0:00,14.0000000,16.0000000,48.606850000000,-2.161427000000,,LANCIEUX PLAGE DU CADUCET,30757,observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-2,https://biolit.fr/observations/observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220917-WA0001.jpg,,FALSE, +N1,58603,sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e,https://biolit.fr/sorties/sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e/,Anne Dominique PECOT,,9/17/2022 0:00,14.0000000,16.0000000,48.606850000000,-2.161427000000,,LANCIEUX PLAGE DU CADUCET,30759,observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-3,https://biolit.fr/observations/observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220917-WA0018.jpg,,FALSE, +N1,58603,sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e,https://biolit.fr/sorties/sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e/,Anne Dominique PECOT,,9/17/2022 0:00,14.0000000,16.0000000,48.606850000000,-2.161427000000,,LANCIEUX PLAGE DU CADUCET,30761,observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-4,https://biolit.fr/observations/observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1062-scaled.jpg,,FALSE, +N1,58603,sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e,https://biolit.fr/sorties/sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e/,Anne Dominique PECOT,,9/17/2022 0:00,14.0000000,16.0000000,48.606850000000,-2.161427000000,,LANCIEUX PLAGE DU CADUCET,30763,observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-5,https://biolit.fr/observations/observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1079-scaled.jpg,,FALSE, +N1,58603,sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e,https://biolit.fr/sorties/sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e/,Anne Dominique PECOT,,9/17/2022 0:00,14.0000000,16.0000000,48.606850000000,-2.161427000000,,LANCIEUX PLAGE DU CADUCET,30765,observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-6,https://biolit.fr/observations/observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1087-scaled.jpg,,FALSE, +N1,58603,sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e,https://biolit.fr/sorties/sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e/,Anne Dominique PECOT,,9/17/2022 0:00,14.0000000,16.0000000,48.606850000000,-2.161427000000,,LANCIEUX PLAGE DU CADUCET,30767,observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-7,https://biolit.fr/observations/observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1085_0-scaled.jpg,,FALSE, +N1,58603,sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e,https://biolit.fr/sorties/sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e/,Anne Dominique PECOT,,9/17/2022 0:00,14.0000000,16.0000000,48.606850000000,-2.161427000000,,LANCIEUX PLAGE DU CADUCET,30769,observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-8,https://biolit.fr/observations/observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1100-scaled.jpg,,FALSE, +N1,58603,sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e,https://biolit.fr/sorties/sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e/,Anne Dominique PECOT,,9/17/2022 0:00,14.0000000,16.0000000,48.606850000000,-2.161427000000,,LANCIEUX PLAGE DU CADUCET,30771,observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-9,https://biolit.fr/observations/observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1126-scaled.jpg,,FALSE, +N1,58603,sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e,https://biolit.fr/sorties/sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e/,Anne Dominique PECOT,,9/17/2022 0:00,14.0000000,16.0000000,48.606850000000,-2.161427000000,,LANCIEUX PLAGE DU CADUCET,30773,observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-10,https://biolit.fr/observations/observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1110-scaled.jpg,,FALSE, +N1,58603,sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e,https://biolit.fr/sorties/sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e/,Anne Dominique PECOT,,9/17/2022 0:00,14.0000000,16.0000000,48.606850000000,-2.161427000000,,LANCIEUX PLAGE DU CADUCET,30775,observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-11,https://biolit.fr/observations/observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1146-scaled.jpg,,FALSE, +N1,58603,sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e,https://biolit.fr/sorties/sortie-07c2628d-8f7a-40db-88f1-c2a833c6555e/,Anne Dominique PECOT,,9/17/2022 0:00,14.0000000,16.0000000,48.606850000000,-2.161427000000,,LANCIEUX PLAGE DU CADUCET,30777,observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-12,https://biolit.fr/observations/observation-07c2628d-8f7a-40db-88f1-c2a833c6555e-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1132-scaled.jpg,,FALSE, +N1,58604,sortie-83a6f71e-f47d-4657-bc1f-09e816bff132,https://biolit.fr/sorties/sortie-83a6f71e-f47d-4657-bc1f-09e816bff132/,Phil,,09/10/2022,18.0000000,18.0000000,47.881812000000,-4.362512000000,,Plage de Kermabec - Tréguennec - Finistère,30779,observation-83a6f71e-f47d-4657-bc1f-09e816bff132,https://biolit.fr/observations/observation-83a6f71e-f47d-4657-bc1f-09e816bff132/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1130969.JPG,,TRUE, +N1,58604,sortie-83a6f71e-f47d-4657-bc1f-09e816bff132,https://biolit.fr/sorties/sortie-83a6f71e-f47d-4657-bc1f-09e816bff132/,Phil,,09/10/2022,18.0000000,18.0000000,47.881812000000,-4.362512000000,,Plage de Kermabec - Tréguennec - Finistère,30781,observation-83a6f71e-f47d-4657-bc1f-09e816bff132-2,https://biolit.fr/observations/observation-83a6f71e-f47d-4657-bc1f-09e816bff132-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130972.JPG,,FALSE, +N1,58604,sortie-83a6f71e-f47d-4657-bc1f-09e816bff132,https://biolit.fr/sorties/sortie-83a6f71e-f47d-4657-bc1f-09e816bff132/,Phil,,09/10/2022,18.0000000,18.0000000,47.881812000000,-4.362512000000,,Plage de Kermabec - Tréguennec - Finistère,30783,observation-83a6f71e-f47d-4657-bc1f-09e816bff132-3,https://biolit.fr/observations/observation-83a6f71e-f47d-4657-bc1f-09e816bff132-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130973.JPG,,FALSE, +N1,58604,sortie-83a6f71e-f47d-4657-bc1f-09e816bff132,https://biolit.fr/sorties/sortie-83a6f71e-f47d-4657-bc1f-09e816bff132/,Phil,,09/10/2022,18.0000000,18.0000000,47.881812000000,-4.362512000000,,Plage de Kermabec - Tréguennec - Finistère,30785,observation-83a6f71e-f47d-4657-bc1f-09e816bff132-4,https://biolit.fr/observations/observation-83a6f71e-f47d-4657-bc1f-09e816bff132-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130974.JPG,,FALSE, +N1,58604,sortie-83a6f71e-f47d-4657-bc1f-09e816bff132,https://biolit.fr/sorties/sortie-83a6f71e-f47d-4657-bc1f-09e816bff132/,Phil,,09/10/2022,18.0000000,18.0000000,47.881812000000,-4.362512000000,,Plage de Kermabec - Tréguennec - Finistère,30787,observation-83a6f71e-f47d-4657-bc1f-09e816bff132-5,https://biolit.fr/observations/observation-83a6f71e-f47d-4657-bc1f-09e816bff132-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130975.JPG,,FALSE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30789,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,,,,https://biolit.fr/wp-content/uploads/2023/07/305588560_666314197816267_1953876829319553967_n.jpg,,FALSE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30791,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-2,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/305949545_619788366201830_6842376493550192176_n.jpg,,FALSE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30793,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-3,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/306236012_502577811679312_191454333368951009_n.jpg,,FALSE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30795,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-4,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/305608015_617722003174336_5947928907487626923_n.jpg,,TRUE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30797,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-5,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/306055177_1459764144451048_3296221070870805390_n_0.jpg,,FALSE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30799,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-6,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/305709673_1248136745949738_3544101229785422067_n.jpg,,FALSE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30801,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-7,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/306553926_1242140893185175_435522029663659819_n.jpg,,FALSE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30803,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-8,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-8/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/305282039_5438797859580102_7240354752053102754_n.jpg,,TRUE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30805,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-9,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/305670492_1145138243087664_4609713403106986993_n(1).jpg,,FALSE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30807,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-10,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/305753071_765239944773793_2379731755399366165_n.jpg,,FALSE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30809,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-11,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/306092222_1086067128948876_1128595819120493288_n.jpg,,FALSE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30811,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-12,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/305561170_755231265580354_1202362877242840219_n.jpg,,FALSE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30813,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-13,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-13/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/305767082_616762976561204_7796862930687352221_n.jpg,,TRUE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30815,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-14,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-14/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/305464468_642612793837121_2022436790308567084_n.jpg,,TRUE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30817,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-15,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-15/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/305533467_629153605237335_76443199961043203_n.jpg,,TRUE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30819,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-16,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/305472826_578155904058024_5357845986476177309_n.jpg,,FALSE, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30821,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-17,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-17/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/305637925_1040727159834658_6427173863072743871_n.jpg,,, +N1,58605,sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca,https://biolit.fr/sorties/sortie-b978cbff-8884-4fca-bc1c-4b7cbc2785ca/,sunnyattitude,,8/30/2022 0:00,13.0000000,14.0000000,47.85353800000,-3.977484000000,,Beg-meil,30823,observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-18,https://biolit.fr/observations/observation-b978cbff-8884-4fca-bc1c-4b7cbc2785ca-18/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/305529410_617000053413261_4920154097195251455_n_0.jpg,,TRUE, +N1,58606,sortie-2deafc4e-c700-412f-90fa-fc616e6cd60a,https://biolit.fr/sorties/sortie-2deafc4e-c700-412f-90fa-fc616e6cd60a/,Projet Azur - Philo,,09/10/2022,10.0000000,11.0000000,43.430261000000,6.861640000000,,Bay d'Agay,30825,observation-2deafc4e-c700-412f-90fa-fc616e6cd60a,https://biolit.fr/observations/observation-2deafc4e-c700-412f-90fa-fc616e6cd60a/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/thumbnail_image3_0.jpg,,TRUE, +N1,58607,sortie-75c07652-46a5-4c55-af0e-36d07e1cde29,https://biolit.fr/sorties/sortie-75c07652-46a5-4c55-af0e-36d07e1cde29/,Observe la nature,,09/04/2022,10.0000000,12.0000000,48.638712000000,-2.025006000000,,Saint Malo,30827,observation-75c07652-46a5-4c55-af0e-36d07e1cde29,https://biolit.fr/observations/observation-75c07652-46a5-4c55-af0e-36d07e1cde29/,Balistes capriscus,Baliste commun,,https://biolit.fr/wp-content/uploads/2023/07/301696829_1522112161553239_6249772148132312556_n.jpg,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30829,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona fascicularis_6.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30831,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-2,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/anémone sp_8.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30833,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-3,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-3/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/Anthopleura balii_9.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30835,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-4,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-4/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/Arenaria interpres_5.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30837,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-5,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/ascidie sp_8.PNG,,FALSE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30839,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-6,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-6/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_27.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30841,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-7,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_12.PNG,,FALSE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30843,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-8,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-8/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/Balanus perforatus_0.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30845,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-9,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-9/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_17.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30847,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-10,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Bryo sp_1.PNG,,FALSE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30849,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-11,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-11/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_25.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30851,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-12,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-12/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_23.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30853,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-13,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_10.PNG,,FALSE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30855,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-14,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-14/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_17.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30857,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-15,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Doridien sp.PNG,,FALSE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30861,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-17,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-17/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_34.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30863,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-18,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-18/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Eriphia verrucosa_11.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30865,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-19,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-19/,Larus canus,Goéland cendré,,https://biolit.fr/wp-content/uploads/2023/07/Larus sp_1.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30867,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-20,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-20/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_11.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30869,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-21,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-21/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina sp.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30871,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-22,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-22/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_18.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30873,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-23,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-23/,Tritia incrassata,Nasse épaisse,,https://biolit.fr/wp-content/uploads/2023/07/Nassarius incrassatus_3.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30875,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-24,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-24/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_21.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30877,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-25,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-25/,Hediste diversicolor,Néréis multicolore,,https://biolit.fr/wp-content/uploads/2023/07/Nereis.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30879,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-26,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis sp.PNG,,FALSE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30881,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-27,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-27/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebrina erinaceus.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30883,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-28,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ophiothrix sp_0.PNG,,FALSE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30885,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-29,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-29/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_13.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30887,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-30,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-30/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_25.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30889,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-31,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-31/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_29.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30891,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-32,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-32/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/Sabellaria alveolata_9.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30893,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-33,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ver sp_3.PNG,,FALSE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30895,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-34,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-34/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Watersipora subatra_10.PNG,,TRUE, +N1,58608,sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94,https://biolit.fr/sorties/sortie-c023fb24-8e08-41bb-abf7-7af37ec52f94/,Roman,,8/30/2022 0:00,12.0000000,14.0000000,47.694167000000,-3.356056000000,,Gâvres,30897,observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-35,https://biolit.fr/observations/observation-c023fb24-8e08-41bb-abf7-7af37ec52f94-35/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_22.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30899,observation-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita.jpg,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30900,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-2,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea_9.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30902,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-3,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-3/,Actinia striata,Actinie striée,,https://biolit.fr/wp-content/uploads/2023/07/Actinia striatula_0.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30904,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-4,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/ascidie sp_7.PNG,,FALSE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30906,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-5,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-5/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/Balanus perforatus.jpg,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30907,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-6,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/bryo sp_6.PNG,,FALSE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30909,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-7,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-7/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/Clibanarius erythropus_4.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30911,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-8,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-8/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crepidula fornicata_5.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30913,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-9,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-9/,Donacilla cornea,Donacilla cornée,,https://biolit.fr/wp-content/uploads/2023/07/Donacilla cornea_2.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30915,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-10,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-10/,Doris verrucosa,Doris verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/Doris verrucosa_7.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30917,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-11,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-11/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 1_9.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30919,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-12,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_33.PNG,,FALSE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30921,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-13,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-13/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/Larus sp_0.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30923,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-14,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-14/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea 1.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30925,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-15,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-15/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_18.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30927,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-16,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-16/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_11.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30929,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-17,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-17/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_10.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30931,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-18,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-18/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_28.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30933,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-19,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-19/,Modiolus barbatus,Modiole barbue,,https://biolit.fr/wp-content/uploads/2023/07/Modiolus barbatus_4.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30935,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-20,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-20/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_20.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30937,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-21,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-21/,Onchidella celtica,Limace celtique,,https://biolit.fr/wp-content/uploads/2023/07/Onchidella celtica_0.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30939,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-22,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-22/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_12.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30941,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-23,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ponte de doridien.PNG,,FALSE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30943,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-24,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-24/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes decussatus_1.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30945,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-25,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-25/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/Sabellaria alveolata_8.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30947,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-26,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-26/,Sphaeromatidae (famille),Sphéromiens,,https://biolit.fr/wp-content/uploads/2023/07/Sphaeromatidae sp.PNG,,TRUE, +N1,58609,sortie-d7077352-72fc-45a9-a79c-9e4c76c919da,https://biolit.fr/sorties/sortie-d7077352-72fc-45a9-a79c-9e4c76c919da/,Roman,,8/16/2022 0:00,14.0000000,16.0000000,47.703205000000,-3.35604000000,Observatoire du Plancton,Port-Louis,30949,observation-d7077352-72fc-45a9-a79c-9e4c76c919da-27,https://biolit.fr/observations/observation-d7077352-72fc-45a9-a79c-9e4c76c919da-27/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_21.PNG,,TRUE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30951,observation-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220818_104514-scaled.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30953,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-2,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220818_112308-scaled.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30955,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-3,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220818_112509-scaled.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30957,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-4,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220818_112511-scaled.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30959,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-5,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220818_112513-scaled.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30961,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-6,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220818_112515-scaled.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30963,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-7,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220818_112517-scaled.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30965,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-8,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220818_112522-scaled.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30967,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-9,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220826-WA0000.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30969,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-10,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220826-WA0002.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30971,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-11,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220826-WA0008.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30973,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-12,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220826-WA0010.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30975,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-13,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220826-WA0011.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30977,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-14,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220826-WA0012.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30979,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-15,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220826-WA0017.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30981,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-16,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220826-WA0018.jpg,",""false""",, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30983,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-17,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220826-WA0019.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30985,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-18,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220826-WA0020.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30987,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-19,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-19/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220826-WA0021.jpg,,TRUE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30989,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-20,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-20/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220826-WA0023.jpg,,, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30991,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-21,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-21/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220826-WA0024.jpg,,TRUE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30993,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-22,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-22/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220826-WA0025.jpg,,TRUE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30995,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-23,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220826-WA0026.jpg,,FALSE, +N1,58610,sortie-3f74f636-6514-407d-bba8-43d5eefb57f4,https://biolit.fr/sorties/sortie-3f74f636-6514-407d-bba8-43d5eefb57f4/,LABELBLEU,,8/18/2022 0:00,10.0000000,12.0:45,42.73113400000,3.037674000000,,Plage de Sainte Marie La Mer (66),30997,observation-3f74f636-6514-407d-bba8-43d5eefb57f4-24,https://biolit.fr/observations/observation-3f74f636-6514-407d-bba8-43d5eefb57f4-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20220826-WA0027.jpg,,FALSE, +N1,58611,sortie-38c2c691-af45-43a0-b4be-b1d44589ea76,https://biolit.fr/sorties/sortie-38c2c691-af45-43a0-b4be-b1d44589ea76/,MichelB,,8/25/2022 0:00,8.0000000,10.0000000,48.821793000000,-3.066762000000,,Loguivy ,30999,observation-38c2c691-af45-43a0-b4be-b1d44589ea76,https://biolit.fr/observations/observation-38c2c691-af45-43a0-b4be-b1d44589ea76/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7210-scaled.jpg,,TRUE,on +N1,58611,sortie-38c2c691-af45-43a0-b4be-b1d44589ea76,https://biolit.fr/sorties/sortie-38c2c691-af45-43a0-b4be-b1d44589ea76/,MichelB,,8/25/2022 0:00,8.0000000,10.0000000,48.821793000000,-3.066762000000,,Loguivy ,31001,observation-38c2c691-af45-43a0-b4be-b1d44589ea76-2,https://biolit.fr/observations/observation-38c2c691-af45-43a0-b4be-b1d44589ea76-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7222-scaled.jpg,,FALSE, +N1,58611,sortie-38c2c691-af45-43a0-b4be-b1d44589ea76,https://biolit.fr/sorties/sortie-38c2c691-af45-43a0-b4be-b1d44589ea76/,MichelB,,8/25/2022 0:00,8.0000000,10.0000000,48.821793000000,-3.066762000000,,Loguivy ,31003,observation-38c2c691-af45-43a0-b4be-b1d44589ea76-3,https://biolit.fr/observations/observation-38c2c691-af45-43a0-b4be-b1d44589ea76-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7224-scaled.jpg,,FALSE, +N1,58611,sortie-38c2c691-af45-43a0-b4be-b1d44589ea76,https://biolit.fr/sorties/sortie-38c2c691-af45-43a0-b4be-b1d44589ea76/,MichelB,,8/25/2022 0:00,8.0000000,10.0000000,48.821793000000,-3.066762000000,,Loguivy ,31005,observation-38c2c691-af45-43a0-b4be-b1d44589ea76-4,https://biolit.fr/observations/observation-38c2c691-af45-43a0-b4be-b1d44589ea76-4/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7226-scaled.jpg,,, +N1,58611,sortie-38c2c691-af45-43a0-b4be-b1d44589ea76,https://biolit.fr/sorties/sortie-38c2c691-af45-43a0-b4be-b1d44589ea76/,MichelB,,8/25/2022 0:00,8.0000000,10.0000000,48.821793000000,-3.066762000000,,Loguivy ,31007,observation-38c2c691-af45-43a0-b4be-b1d44589ea76-5,https://biolit.fr/observations/observation-38c2c691-af45-43a0-b4be-b1d44589ea76-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7227-scaled.jpg,,FALSE, +N1,58611,sortie-38c2c691-af45-43a0-b4be-b1d44589ea76,https://biolit.fr/sorties/sortie-38c2c691-af45-43a0-b4be-b1d44589ea76/,MichelB,,8/25/2022 0:00,8.0000000,10.0000000,48.821793000000,-3.066762000000,,Loguivy ,31009,observation-38c2c691-af45-43a0-b4be-b1d44589ea76-6,https://biolit.fr/observations/observation-38c2c691-af45-43a0-b4be-b1d44589ea76-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7228-scaled.jpg,,FALSE, +N1,58611,sortie-38c2c691-af45-43a0-b4be-b1d44589ea76,https://biolit.fr/sorties/sortie-38c2c691-af45-43a0-b4be-b1d44589ea76/,MichelB,,8/25/2022 0:00,8.0000000,10.0000000,48.821793000000,-3.066762000000,,Loguivy ,31011,observation-38c2c691-af45-43a0-b4be-b1d44589ea76-7,https://biolit.fr/observations/observation-38c2c691-af45-43a0-b4be-b1d44589ea76-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7229-scaled.jpg,,TRUE, +N1,58611,sortie-38c2c691-af45-43a0-b4be-b1d44589ea76,https://biolit.fr/sorties/sortie-38c2c691-af45-43a0-b4be-b1d44589ea76/,MichelB,,8/25/2022 0:00,8.0000000,10.0000000,48.821793000000,-3.066762000000,,Loguivy ,31013,observation-38c2c691-af45-43a0-b4be-b1d44589ea76-8,https://biolit.fr/observations/observation-38c2c691-af45-43a0-b4be-b1d44589ea76-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7231-scaled.jpg,,FALSE, +N1,58611,sortie-38c2c691-af45-43a0-b4be-b1d44589ea76,https://biolit.fr/sorties/sortie-38c2c691-af45-43a0-b4be-b1d44589ea76/,MichelB,,8/25/2022 0:00,8.0000000,10.0000000,48.821793000000,-3.066762000000,,Loguivy ,31015,observation-38c2c691-af45-43a0-b4be-b1d44589ea76-9,https://biolit.fr/observations/observation-38c2c691-af45-43a0-b4be-b1d44589ea76-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7232-scaled.jpg,,FALSE, +N1,58612,sortie-568c7a7c-8ec8-4f33-93f5-f77b0791fdd8,https://biolit.fr/sorties/sortie-568c7a7c-8ec8-4f33-93f5-f77b0791fdd8/,Julia_mlv,,8/18/2022 0:00,14.0000000,14.0000000,47.693726000000,-3.357333000000,,Gavres - Goërem,31017,observation-568c7a7c-8ec8-4f33-93f5-f77b0791fdd8,https://biolit.fr/observations/observation-568c7a7c-8ec8-4f33-93f5-f77b0791fdd8/,,,,https://biolit.fr/wp-content/uploads/2023/07/415A4F3C-33B3-452F-8859-13E2CA491938-scaled.jpeg,,FALSE, +N1,58612,sortie-568c7a7c-8ec8-4f33-93f5-f77b0791fdd8,https://biolit.fr/sorties/sortie-568c7a7c-8ec8-4f33-93f5-f77b0791fdd8/,Julia_mlv,,8/18/2022 0:00,14.0000000,14.0000000,47.693726000000,-3.357333000000,,Gavres - Goërem,31019,observation-568c7a7c-8ec8-4f33-93f5-f77b0791fdd8-2,https://biolit.fr/observations/observation-568c7a7c-8ec8-4f33-93f5-f77b0791fdd8-2/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/2023/07/E4C8207A-99F9-4975-B463-0ECAC4447156.jpeg,,TRUE, +N1,58612,sortie-568c7a7c-8ec8-4f33-93f5-f77b0791fdd8,https://biolit.fr/sorties/sortie-568c7a7c-8ec8-4f33-93f5-f77b0791fdd8/,Julia_mlv,,8/18/2022 0:00,14.0000000,14.0000000,47.693726000000,-3.357333000000,,Gavres - Goërem,31021,observation-568c7a7c-8ec8-4f33-93f5-f77b0791fdd8-3,https://biolit.fr/observations/observation-568c7a7c-8ec8-4f33-93f5-f77b0791fdd8-3/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/2023/07/42225ACA-E8D1-4919-A0BB-B469B8611B2C-scaled.jpeg,,TRUE, +N1,58613,sortie-92c1f9f8-4c47-4df4-8aac-e8e18177a8a8,https://biolit.fr/sorties/sortie-92c1f9f8-4c47-4df4-8aac-e8e18177a8a8/,Julia_mlv,,8/16/2022 0:00,14.0000000,15.0000000,47.704255000000,-3.355755000000,,Port Louis - Lohic ,31023,observation-92c1f9f8-4c47-4df4-8aac-e8e18177a8a8,https://biolit.fr/observations/observation-92c1f9f8-4c47-4df4-8aac-e8e18177a8a8/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/9C1EE2DB-6385-4203-B975-D9673EC98EF5.jpeg,,TRUE, +N1,58613,sortie-92c1f9f8-4c47-4df4-8aac-e8e18177a8a8,https://biolit.fr/sorties/sortie-92c1f9f8-4c47-4df4-8aac-e8e18177a8a8/,Julia_mlv,,8/16/2022 0:00,14.0000000,15.0000000,47.704255000000,-3.355755000000,,Port Louis - Lohic ,31025,observation-92c1f9f8-4c47-4df4-8aac-e8e18177a8a8-2,https://biolit.fr/observations/observation-92c1f9f8-4c47-4df4-8aac-e8e18177a8a8-2/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/1D11CC48-C4DB-4D65-9751-49C972716954-scaled.jpeg,,TRUE, +N1,58614,sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6,https://biolit.fr/sorties/sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6/,Julia_mlv,,8/16/2022 0:00,14.0000000,15.0000000,47.70425500000,-3.355750000000,Observatoire du Plancton,Port Louis - Lohic ,31027,observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6,https://biolit.fr/observations/observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/0E4E2532-F5E2-4E74-8A1F-96453FD347BB-scaled.jpeg,,TRUE, +N1,58614,sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6,https://biolit.fr/sorties/sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6/,Julia_mlv,,8/16/2022 0:00,14.0000000,15.0000000,47.70425500000,-3.355750000000,Observatoire du Plancton,Port Louis - Lohic ,31029,observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-2,https://biolit.fr/observations/observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/2BFD87FB-A5AA-49F9-B19D-1934CB24A989-scaled.jpeg,,FALSE, +N1,58614,sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6,https://biolit.fr/sorties/sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6/,Julia_mlv,,8/16/2022 0:00,14.0000000,15.0000000,47.70425500000,-3.355750000000,Observatoire du Plancton,Port Louis - Lohic ,31031,observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-3,https://biolit.fr/observations/observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/319A3D7A-69EE-407B-9DBA-8E9E0D395EF5-scaled.jpeg,,FALSE, +N1,58614,sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6,https://biolit.fr/sorties/sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6/,Julia_mlv,,8/16/2022 0:00,14.0000000,15.0000000,47.70425500000,-3.355750000000,Observatoire du Plancton,Port Louis - Lohic ,31033,observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-4,https://biolit.fr/observations/observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/A27C86B4-E5F9-4FAA-A75C-9ED4FD9B3789-scaled.jpeg,,FALSE, +N1,58614,sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6,https://biolit.fr/sorties/sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6/,Julia_mlv,,8/16/2022 0:00,14.0000000,15.0000000,47.70425500000,-3.355750000000,Observatoire du Plancton,Port Louis - Lohic ,31035,observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-5,https://biolit.fr/observations/observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-5/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/A17DF853-DA37-4E78-AAD6-6CEBB4B6367D-scaled.jpeg,,TRUE, +N1,58614,sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6,https://biolit.fr/sorties/sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6/,Julia_mlv,,8/16/2022 0:00,14.0000000,15.0000000,47.70425500000,-3.355750000000,Observatoire du Plancton,Port Louis - Lohic ,31037,observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-6,https://biolit.fr/observations/observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-6/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/000FC84D-6AB6-4CA4-B489-C23990C529FA-scaled.jpeg,,TRUE, +N1,58614,sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6,https://biolit.fr/sorties/sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6/,Julia_mlv,,8/16/2022 0:00,14.0000000,15.0000000,47.70425500000,-3.355750000000,Observatoire du Plancton,Port Louis - Lohic ,31039,observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-7,https://biolit.fr/observations/observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-7/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/B1863060-F689-4EAA-AD44-F64A9F90515B-scaled.jpeg,,TRUE, +N1,58614,sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6,https://biolit.fr/sorties/sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6/,Julia_mlv,,8/16/2022 0:00,14.0000000,15.0000000,47.70425500000,-3.355750000000,Observatoire du Plancton,Port Louis - Lohic ,31041,observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-8,https://biolit.fr/observations/observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-8/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/F7B594A5-C353-4940-BD5B-4C85D2D81F7E-scaled.jpeg,,TRUE, +N1,58614,sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6,https://biolit.fr/sorties/sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6/,Julia_mlv,,8/16/2022 0:00,14.0000000,15.0000000,47.70425500000,-3.355750000000,Observatoire du Plancton,Port Louis - Lohic ,31043,observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-9,https://biolit.fr/observations/observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-9/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/6CA6E5E5-7B61-4415-A1A9-CD115FBC4677-scaled.jpeg,,TRUE, +N1,58614,sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6,https://biolit.fr/sorties/sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6/,Julia_mlv,,8/16/2022 0:00,14.0000000,15.0000000,47.70425500000,-3.355750000000,Observatoire du Plancton,Port Louis - Lohic ,31045,observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-10,https://biolit.fr/observations/observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-10/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/66663680-9615-41AD-AD4F-9D529004A37E.jpeg,,TRUE, +N1,58614,sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6,https://biolit.fr/sorties/sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6/,Julia_mlv,,8/16/2022 0:00,14.0000000,15.0000000,47.70425500000,-3.355750000000,Observatoire du Plancton,Port Louis - Lohic ,31047,observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-11,https://biolit.fr/observations/observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-11/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/2023/07/5E831BEE-52F3-4743-AC65-024203B22815-scaled.jpeg,,TRUE, +N1,58614,sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6,https://biolit.fr/sorties/sortie-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6/,Julia_mlv,,8/16/2022 0:00,14.0000000,15.0000000,47.70425500000,-3.355750000000,Observatoire du Plancton,Port Louis - Lohic ,31049,observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-12,https://biolit.fr/observations/observation-212d5b9b-d1bf-4ff0-acb7-df0f5af32cc6-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/0704432D-79D1-4EF4-B143-40E828172938-scaled.jpeg,,FALSE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31051,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita_11.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31053,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-2,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_22.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31055,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-3,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue sp 1_0.PNG,,FALSE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31057,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-4,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue sp_0.PNG,,FALSE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31058,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-5,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-5/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_12.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31060,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-6,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-6/,Aplidium elegans,Fraise de mer,,https://biolit.fr/wp-content/uploads/2023/07/Aplydium elegans_0.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31062,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-7,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie sp_5.PNG,,FALSE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31064,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-8,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-8/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_26.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31066,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-9,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-9/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/Aulactinia verrucosa_9.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31068,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-10,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-10/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_16.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31070,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-11,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-11/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Calliostoma zyziphinum_4.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31072,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-12,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-12/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_24.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31074,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-13,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-13/,Ciona intestinalis,Cione intestinale,,https://biolit.fr/wp-content/uploads/2023/07/Ciona intestinalis_2.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31076,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-14,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-14/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/Clibanarius erythropus_3.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31078,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-15,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-15/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Crassostreas gigas.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31080,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-16,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-16/,Doris verrucosa,Doris verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/Doris verrucosa_6.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31082,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-17,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-17/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Eriphia verrucosa_10.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31084,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-18,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-18/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/Haliotis tuberculata_9.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31086,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-19,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-19/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/Himanthalia elongata_0.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31088,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-20,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/laminaria sp-scaled.jpg,,FALSE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31089,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-21,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-21/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/Lipophrys pholis 1.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31091,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-22,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-22/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_27.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31093,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-23,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-23/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/2023/07/Mouette rieuse.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31095,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-24,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-24/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_19.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31097,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-25,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-25/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/Nrophis sp.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31099,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-26,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-26/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus 1.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31101,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-27,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-27/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_21.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31103,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-28,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-28/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebrena erinaceus.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31105,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-29,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-29/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_11.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31107,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-30,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-30/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus_8.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31109,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-31,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-31/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/Pisidia longicornis_7.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31111,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-32,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-32/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_24.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31113,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-33,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-33/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_28.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31115,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-34,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-34/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/Sabellaria alveolata_7.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31117,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-35,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-35/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Steromphala umbilicalis_3.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31119,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-36,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-36/,Trivia arctica,Grain de café rose,,https://biolit.fr/wp-content/uploads/2023/07/Trivia arctica_4.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31121,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-37,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-37/,Watersipora subtorquata,Bryozoaire rouge orange vif à points noirs,,https://biolit.fr/wp-content/uploads/2023/07/Watersipora subatra_9.PNG,,TRUE, +N1,58615,sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8,https://biolit.fr/sorties/sortie-5091bee7-a2ce-4c85-b27a-93791ed37ee8/,Roman,,7/16/2022 0:00,11.0:45,13.0000000,47.701333000000,-3.410532000000,,Larmor-Plage ,31123,observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-38,https://biolit.fr/observations/observation-5091bee7-a2ce-4c85-b27a-93791ed37ee8-38/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus et porcellana platycheles.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31125,observation-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita_10.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31127,observation-4a13fd10-72e0-4d95-9865-de1867426a17-2,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-2/,Aequipecten opercularis,Peigne operculé,,https://biolit.fr/wp-content/uploads/2023/07/Aequipecten opercularis pe.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31129,observation-4a13fd10-72e0-4d95-9865-de1867426a17-3,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/anémone sp_6.PNG,,FALSE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31131,observation-4a13fd10-72e0-4d95-9865-de1867426a17-4,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-4/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Anémone sp1.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31133,observation-4a13fd10-72e0-4d95-9865-de1867426a17-5,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-5/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_23.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31135,observation-4a13fd10-72e0-4d95-9865-de1867426a17-6,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Annélide sp 1.PNG,,FALSE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31137,observation-4a13fd10-72e0-4d95-9865-de1867426a17-7,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/annélide sp_1.PNG,,FALSE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31139,observation-4a13fd10-72e0-4d95-9865-de1867426a17-8,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-8/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_10.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31141,observation-4a13fd10-72e0-4d95-9865-de1867426a17-9,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-9/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/Anthopleura sp.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31143,observation-4a13fd10-72e0-4d95-9865-de1867426a17-10,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-10/,Aplidium elegans,Fraise de mer,,https://biolit.fr/wp-content/uploads/2023/07/Aplydium elegans.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31145,observation-4a13fd10-72e0-4d95-9865-de1867426a17-11,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie sp_4.PNG,,FALSE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31147,observation-4a13fd10-72e0-4d95-9865-de1867426a17-12,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-12/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_17.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31149,observation-4a13fd10-72e0-4d95-9865-de1867426a17-13,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-13/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_24.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31151,observation-4a13fd10-72e0-4d95-9865-de1867426a17-14,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-14/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_11.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31153,observation-4a13fd10-72e0-4d95-9865-de1867426a17-15,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/aucune idée mais c'est vivant.PNG,,FALSE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31155,observation-4a13fd10-72e0-4d95-9865-de1867426a17-16,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-16/,Calyptraea chinensis,Chapeau chinois,,https://biolit.fr/wp-content/uploads/2023/07/Calyptreae chinensis_0.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31157,observation-4a13fd10-72e0-4d95-9865-de1867426a17-17,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-17/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_23.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31159,observation-4a13fd10-72e0-4d95-9865-de1867426a17-18,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-18/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_22.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31161,observation-4a13fd10-72e0-4d95-9865-de1867426a17-19,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-19/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_9.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31163,observation-4a13fd10-72e0-4d95-9865-de1867426a17-20,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-20/,Ciona intestinalis,Cione intestinale,,https://biolit.fr/wp-content/uploads/2023/07/Ciona intestinalis_1.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31165,observation-4a13fd10-72e0-4d95-9865-de1867426a17-21,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-21/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/Clibanarius erythropus_2.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31167,observation-4a13fd10-72e0-4d95-9865-de1867426a17-22,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-22/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crepidula fornicata_4.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31169,observation-4a13fd10-72e0-4d95-9865-de1867426a17-23,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-23/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/Crithmum maritimum_1.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31171,observation-4a13fd10-72e0-4d95-9865-de1867426a17-24,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-24/,Dysidea fragilis,Eponge mie de pain mouillée,,https://biolit.fr/wp-content/uploads/2023/07/Disydea fragilis_0.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31173,observation-4a13fd10-72e0-4d95-9865-de1867426a17-25,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-25/,Doris verrucosa,Doris verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/Doris verruqueux.PNG,,,on +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31175,observation-4a13fd10-72e0-4d95-9865-de1867426a17-26,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_32.PNG,,FALSE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31177,observation-4a13fd10-72e0-4d95-9865-de1867426a17-27,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-27/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/Galathea squamifera_1.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31179,observation-4a13fd10-72e0-4d95-9865-de1867426a17-28,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-28/,Gari depressa,Psammobie déprimée,,https://biolit.fr/wp-content/uploads/2023/07/Gari depressa_11.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31181,observation-4a13fd10-72e0-4d95-9865-de1867426a17-29,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-29/,Isozoanthus sulcatus,Anémone chocolat,,https://biolit.fr/wp-content/uploads/2023/07/Isozoanthus sulcatus_6.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31183,observation-4a13fd10-72e0-4d95-9865-de1867426a17-30,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-30/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/Larus marinus_0.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31185,observation-4a13fd10-72e0-4d95-9865-de1867426a17-31,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-31/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_17.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31187,observation-4a13fd10-72e0-4d95-9865-de1867426a17-32,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/Limace sp_0.PNG,,FALSE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31189,observation-4a13fd10-72e0-4d95-9865-de1867426a17-33,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-33/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_8.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31191,observation-4a13fd10-72e0-4d95-9865-de1867426a17-34,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/Liocarcinus sp_1.PNG,,FALSE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31193,observation-4a13fd10-72e0-4d95-9865-de1867426a17-35,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-35/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina obtusata_3.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31195,observation-4a13fd10-72e0-4d95-9865-de1867426a17-36,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-36/,,,,https://biolit.fr/wp-content/uploads/2023/07/Macropoda sp_2.PNG,,FALSE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31197,observation-4a13fd10-72e0-4d95-9865-de1867426a17-37,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-37/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_26.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31199,observation-4a13fd10-72e0-4d95-9865-de1867426a17-38,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-38/,Metridium senile,Œillet de mer,,https://biolit.fr/wp-content/uploads/2023/07/metridium sp.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31201,observation-4a13fd10-72e0-4d95-9865-de1867426a17-39,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-39/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia_10.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31203,observation-4a13fd10-72e0-4d95-9865-de1867426a17-40,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-40/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_17.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31205,observation-4a13fd10-72e0-4d95-9865-de1867426a17-41,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-41/,Tritia incrassata,Nasse épaisse,,https://biolit.fr/wp-content/uploads/2023/07/Nassarius incrassatus_2.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31207,observation-4a13fd10-72e0-4d95-9865-de1867426a17-42,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-42/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_18.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31209,observation-4a13fd10-72e0-4d95-9865-de1867426a17-43,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-43/,Nereiphylla paretti,Néréiphylle de Paretto,,https://biolit.fr/wp-content/uploads/2023/07/Nereiphylla de paretti pe.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31211,observation-4a13fd10-72e0-4d95-9865-de1867426a17-44,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-44/,,,,https://biolit.fr/wp-content/uploads/2023/07/Non identifié 1.PNG,,FALSE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31213,observation-4a13fd10-72e0-4d95-9865-de1867426a17-45,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-45/,,,,https://biolit.fr/wp-content/uploads/2023/07/Non identifié 2.PNG,,FALSE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31215,observation-4a13fd10-72e0-4d95-9865-de1867426a17-46,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-46/,Sedum acre,Orpin âcre,,https://biolit.fr/wp-content/uploads/2023/07/Non identifié.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31217,observation-4a13fd10-72e0-4d95-9865-de1867426a17-47,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-47/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/Ophiothrix sp.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31219,observation-4a13fd10-72e0-4d95-9865-de1867426a17-48,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-48/,Pilumnus hirtellus,Pilumne hirsute,,https://biolit.fr/wp-content/uploads/2023/07/Pilumnus hirtellus_8.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31221,observation-4a13fd10-72e0-4d95-9865-de1867426a17-49,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-49/,Polychaeta spp,Ponte de polychète,,https://biolit.fr/wp-content/uploads/2023/07/Ponte de polychète_0.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31223,observation-4a13fd10-72e0-4d95-9865-de1867426a17-50,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-50/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_27.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31225,observation-4a13fd10-72e0-4d95-9865-de1867426a17-51,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-51/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pycnogonide sp_1.PNG,,FALSE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31227,observation-4a13fd10-72e0-4d95-9865-de1867426a17-52,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-52/,Venerupis corrugata,Palourde-poulette,,https://biolit.fr/wp-content/uploads/2023/07/venerupis corrugata_0.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31228,observation-4a13fd10-72e0-4d95-9865-de1867426a17-53,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-53/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa_8.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31230,observation-4a13fd10-72e0-4d95-9865-de1867426a17-54,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-54/,Prostheceraeus vittatus,Planaire blanche,,https://biolit.fr/wp-content/uploads/2023/07/Ver plat sp_0.PNG,,,on +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31232,observation-4a13fd10-72e0-4d95-9865-de1867426a17-55,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-55/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Watersipora subatra_7.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31234,observation-4a13fd10-72e0-4d95-9865-de1867426a17-56,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-56/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_19.PNG,,TRUE, +N1,58616,sortie-4a13fd10-72e0-4d95-9865-de1867426a17,https://biolit.fr/sorties/sortie-4a13fd10-72e0-4d95-9865-de1867426a17/,Roman,,7/15/2022 0:00,11.0000000,14.0000000,47.703468000000,-3.349758000000,,Port-Louis,31236,observation-4a13fd10-72e0-4d95-9865-de1867426a17-57,https://biolit.fr/observations/observation-4a13fd10-72e0-4d95-9865-de1867426a17-57/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_19.PNG,,TRUE, +N1,58617,sortie-89817cb7-bbf6-4a54-a90d-063a10f3fc00,https://biolit.fr/sorties/sortie-89817cb7-bbf6-4a54-a90d-063a10f3fc00/,ddewick,,2/23/2022 0:00,14.0000000,15.0000000,48.235440000000,-4.448493000000,,Plage de l'Aber - Parc naturel marin d'Iroise,31238,observation-89817cb7-bbf6-4a54-a90d-063a10f3fc00,https://biolit.fr/observations/observation-89817cb7-bbf6-4a54-a90d-063a10f3fc00/,,,,https://biolit.fr/wp-content/uploads/2023/07/crozon - sea weed 3.jpg,,FALSE, +N1,58617,sortie-89817cb7-bbf6-4a54-a90d-063a10f3fc00,https://biolit.fr/sorties/sortie-89817cb7-bbf6-4a54-a90d-063a10f3fc00/,ddewick,,2/23/2022 0:00,14.0000000,15.0000000,48.235440000000,-4.448493000000,,Plage de l'Aber - Parc naturel marin d'Iroise,31240,observation-89817cb7-bbf6-4a54-a90d-063a10f3fc00-2,https://biolit.fr/observations/observation-89817cb7-bbf6-4a54-a90d-063a10f3fc00-2/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/crozon - sea week 2.jpg,,TRUE, +N1,58618,sortie-bbd4c975-ae0a-496c-8147-a4497cc1c143,https://biolit.fr/sorties/sortie-bbd4c975-ae0a-496c-8147-a4497cc1c143/,ddewick,,2/23/2022 0:00,12.0000000,15.0000000,48.232010000000,-4.440081000000,,Plage de l'Aber - Parc naturel marin d'Iroise,31242,observation-bbd4c975-ae0a-496c-8147-a4497cc1c143,https://biolit.fr/observations/observation-bbd4c975-ae0a-496c-8147-a4497cc1c143/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/starfish1.jpg,,TRUE, +N1,58618,sortie-bbd4c975-ae0a-496c-8147-a4497cc1c143,https://biolit.fr/sorties/sortie-bbd4c975-ae0a-496c-8147-a4497cc1c143/,ddewick,,2/23/2022 0:00,12.0000000,15.0000000,48.232010000000,-4.440081000000,,Plage de l'Aber - Parc naturel marin d'Iroise,31244,observation-bbd4c975-ae0a-496c-8147-a4497cc1c143-2,https://biolit.fr/observations/observation-bbd4c975-ae0a-496c-8147-a4497cc1c143-2/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/starfish2.jpg,,TRUE, +N1,58618,sortie-bbd4c975-ae0a-496c-8147-a4497cc1c143,https://biolit.fr/sorties/sortie-bbd4c975-ae0a-496c-8147-a4497cc1c143/,ddewick,,2/23/2022 0:00,12.0000000,15.0000000,48.232010000000,-4.440081000000,,Plage de l'Aber - Parc naturel marin d'Iroise,31246,observation-bbd4c975-ae0a-496c-8147-a4497cc1c143-3,https://biolit.fr/observations/observation-bbd4c975-ae0a-496c-8147-a4497cc1c143-3/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/starfish3.jpg,,TRUE, +N1,58619,sortie-db7f2efb-0c31-4f1f-88b7-8a22331e95ca,https://biolit.fr/sorties/sortie-db7f2efb-0c31-4f1f-88b7-8a22331e95ca/,ddewick,,2/22/2022 0:00,12.0000000,14.0000000,48.230899000000,-4.43574700000,,Plage de l'Aber - Parc naturel marin d'Iroise,31248,observation-db7f2efb-0c31-4f1f-88b7-8a22331e95ca,https://biolit.fr/observations/observation-db7f2efb-0c31-4f1f-88b7-8a22331e95ca/,,,,https://biolit.fr/wp-content/uploads/2023/07/crozon - sea weed 1.jpg,,FALSE, +N1,58620,sortie-8d177c4f-6e49-4d25-81c9-96e3cc78df8c,https://biolit.fr/sorties/sortie-8d177c4f-6e49-4d25-81c9-96e3cc78df8c/,ddewick,,2/21/2022 0:00,11.0:45,13.0000000,48.234730000000,-4.441068000000,,Plage de l'Aber - Parc naturel marin d'Iroise,31250,observation-8d177c4f-6e49-4d25-81c9-96e3cc78df8c,https://biolit.fr/observations/observation-8d177c4f-6e49-4d25-81c9-96e3cc78df8c/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crozon - Sea grass_0.jpg,,FALSE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31252,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita_9.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31254,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-2,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_21.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31256,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-3,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Alevins sp.PNG,,FALSE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31258,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-4,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue sp 1.PNG,,FALSE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31260,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-5,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algue sp 2.PNG,,FALSE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31262,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-6,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-6/,Chondrus crispus,Goémon frisé,,https://biolit.fr/wp-content/uploads/2023/07/Algue sp 3.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31264,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-7,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algue sp 4.PNG,,FALSE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31266,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-8,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-8/,Corallina officinalis/caespitosa,Coralline,,https://biolit.fr/wp-content/uploads/2023/07/Algue sp 5.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31268,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-9,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-9/,Alvania lactea,Alvania lactea,,https://biolit.fr/wp-content/uploads/2023/07/Alvania lactea.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31270,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-10,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-10/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_22.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31272,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-11,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-11/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/Aplysia en nombre.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31274,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-12,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-12/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/Aplysia ponte.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31276,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-13,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-13/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/Aplysia sp_0.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31278,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-14,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-14/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/Armeria maritima_0.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31280,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-15,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie sp_5.PNG,,FALSE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31281,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-16,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-16/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_8.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31283,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-17,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-17/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/Aulactinia verrucosa_8.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31285,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-18,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-18/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_14.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31287,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-19,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-19/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Calliostoma zyziphinum_3.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31289,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-20,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-20/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_22.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31291,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-21,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-21/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_21.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31293,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-22,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-22/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_15.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31295,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-23,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-23/,Bittium reticulatum,Cérithe réticulé,,https://biolit.fr/wp-content/uploads/2023/07/Cerithium reticulatum.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31297,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-24,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-24/,Convolvulus soldanella,Liseron des dunes,,https://biolit.fr/wp-content/uploads/2023/07/convolvulus soldanella.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31299,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-25,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-25/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/Crithmum maritimum_0.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31301,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-26,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/Dynamaena magnitorata.PNG,,FALSE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31303,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-27,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_31.PNG,,FALSE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31305,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-28,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-28/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/Eryngium maritimum.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31307,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-29,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-29/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/Fucus serratus_2.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31309,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-30,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/Helichrysum stoechas.PNG,,FALSE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31311,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-31,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-31/,Lagurus ovatus,Queue de lièvre,,https://biolit.fr/wp-content/uploads/2023/07/Lagurus ovatus_0.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31313,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-32,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-32/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_16.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31315,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-33,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-33/,Lomentaria articulata,Algue saucisson,,https://biolit.fr/wp-content/uploads/2023/07/Lomentaria articulata_0.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31317,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-34,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-34/,Matthiola sinuata,Giroflée des dunes,,https://biolit.fr/wp-content/uploads/2023/07/matthiola sinuata.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31319,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-35,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-35/,Chrysaora hysoscella,Méduse rayonnée,,https://biolit.fr/wp-content/uploads/2023/07/Méduse sp 1.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31321,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-36,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-36/,Chrysaora hysoscella,Méduse rayonnée,,https://biolit.fr/wp-content/uploads/2023/07/méduse sp.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31323,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-37,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-37/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/Melaraphe neritoides.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31325,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-38,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-38/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia_8.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31327,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-39,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-39/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_16.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31329,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-40,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-40/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber-scaled.jpg,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31330,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-41,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-41/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/Ophiothrix fragilis_0.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31332,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-42,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-42/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_10.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31334,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-43,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-43/,,,,https://biolit.fr/wp-content/uploads/2023/07/ponte de limace sp.PNG,,FALSE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31336,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-44,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-44/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_22.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31338,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-45,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-45/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_24.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31340,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-46,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-46/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/Sabellaria alveolata_5.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31342,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-47,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-47/,Cilysta elegans,Sagartie élégante,,https://biolit.fr/wp-content/uploads/2023/07/Sagartia elegans pe.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31344,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-48,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-48/,Sedum acre,Orpin âcre,,https://biolit.fr/wp-content/uploads/2023/07/Sedum acre.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31346,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-49,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-49/,Spergularia rupicola,Spergulaire des rochers,,https://biolit.fr/wp-content/uploads/2023/07/Spergula rupicola_0.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31348,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-50,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-50/,Terpios gelatinosus,Eponge encroûtante bleue,,https://biolit.fr/wp-content/uploads/2023/07/Terpios gelatinosus.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31350,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-51,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-51/,Tricolia pullus,Phasianelle minuscule,,https://biolit.fr/wp-content/uploads/2023/07/Tricolia pullus.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31352,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-52,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-52/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa_6.PNG,,TRUE, +N1,58621,sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258,https://biolit.fr/sorties/sortie-ac8d2fd9-af71-41e9-aa8f-afc8384a8258/,Roman,,5/30/2022 0:00,12.0000000,14.0000000,47.533945000000,-3.146999000000,,St-Pierre Quiberon,31354,observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-53,https://biolit.fr/observations/observation-ac8d2fd9-af71-41e9-aa8f-afc8384a8258-53/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_18.PNG,,TRUE, +N1,58622,sortie-7ad55660-71e7-49b2-b07b-ead7261f8719,https://biolit.fr/sorties/sortie-7ad55660-71e7-49b2-b07b-ead7261f8719/,Axel,,5/30/2022 0:00,19.0000000,19.0:45,43.259493000000,5.373869000000,,"Marseille, Embouchure de l'Huveaune",31356,observation-7ad55660-71e7-49b2-b07b-ead7261f8719,https://biolit.fr/observations/observation-7ad55660-71e7-49b2-b07b-ead7261f8719/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7525_0.JPG,,FALSE, +N1,58622,sortie-7ad55660-71e7-49b2-b07b-ead7261f8719,https://biolit.fr/sorties/sortie-7ad55660-71e7-49b2-b07b-ead7261f8719/,Axel,,5/30/2022 0:00,19.0000000,19.0:45,43.259493000000,5.373869000000,,"Marseille, Embouchure de l'Huveaune",31358,observation-7ad55660-71e7-49b2-b07b-ead7261f8719-2,https://biolit.fr/observations/observation-7ad55660-71e7-49b2-b07b-ead7261f8719-2/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7532_0-rotated.jpg,,TRUE, +N1,58622,sortie-7ad55660-71e7-49b2-b07b-ead7261f8719,https://biolit.fr/sorties/sortie-7ad55660-71e7-49b2-b07b-ead7261f8719/,Axel,,5/30/2022 0:00,19.0000000,19.0:45,43.259493000000,5.373869000000,,"Marseille, Embouchure de l'Huveaune",31360,observation-7ad55660-71e7-49b2-b07b-ead7261f8719-3,https://biolit.fr/observations/observation-7ad55660-71e7-49b2-b07b-ead7261f8719-3/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7537_0.JPG,,FALSE, +N1,58623,sortie-b1851612-0598-40f2-a645-694f77b8f54f,https://biolit.fr/sorties/sortie-b1851612-0598-40f2-a645-694f77b8f54f/,Axel,,5/30/2022 0:00,18.0000000,19.0000000,43.259674000000,5.374470000000,,"Marseille, Plage de l'huveaune",31362,observation-b1851612-0598-40f2-a645-694f77b8f54f,https://biolit.fr/observations/observation-b1851612-0598-40f2-a645-694f77b8f54f/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7503_0.JPG | https://biolit.fr/wp-content/uploads/2022/05/IMG_7504_0.jpg,,FALSE, +N1,58623,sortie-b1851612-0598-40f2-a645-694f77b8f54f,https://biolit.fr/sorties/sortie-b1851612-0598-40f2-a645-694f77b8f54f/,Axel,,5/30/2022 0:00,18.0000000,19.0000000,43.259674000000,5.374470000000,,"Marseille, Plage de l'huveaune",31366,observation-b1851612-0598-40f2-a645-694f77b8f54f-3,https://biolit.fr/observations/observation-b1851612-0598-40f2-a645-694f77b8f54f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7505-rotated.jpg | https://biolit.fr/wp-content/uploads/2022/05/IMG_7506_0-rotated-1-scaled.jpg,,FALSE, +N1,58623,sortie-b1851612-0598-40f2-a645-694f77b8f54f,https://biolit.fr/sorties/sortie-b1851612-0598-40f2-a645-694f77b8f54f/,Axel,,5/30/2022 0:00,18.0000000,19.0000000,43.259674000000,5.374470000000,,"Marseille, Plage de l'huveaune",31370,observation-b1851612-0598-40f2-a645-694f77b8f54f-5,https://biolit.fr/observations/observation-b1851612-0598-40f2-a645-694f77b8f54f-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7507_0-rotated.jpg,,FALSE, +N1,58623,sortie-b1851612-0598-40f2-a645-694f77b8f54f,https://biolit.fr/sorties/sortie-b1851612-0598-40f2-a645-694f77b8f54f/,Axel,,5/30/2022 0:00,18.0000000,19.0000000,43.259674000000,5.374470000000,,"Marseille, Plage de l'huveaune",31372,observation-b1851612-0598-40f2-a645-694f77b8f54f-6,https://biolit.fr/observations/observation-b1851612-0598-40f2-a645-694f77b8f54f-6/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7511_0.JPG,,TRUE, +N1,58623,sortie-b1851612-0598-40f2-a645-694f77b8f54f,https://biolit.fr/sorties/sortie-b1851612-0598-40f2-a645-694f77b8f54f/,Axel,,5/30/2022 0:00,18.0000000,19.0000000,43.259674000000,5.374470000000,,"Marseille, Plage de l'huveaune",31374,observation-b1851612-0598-40f2-a645-694f77b8f54f-7,https://biolit.fr/observations/observation-b1851612-0598-40f2-a645-694f77b8f54f-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7513_0.JPG,,FALSE, +N1,58623,sortie-b1851612-0598-40f2-a645-694f77b8f54f,https://biolit.fr/sorties/sortie-b1851612-0598-40f2-a645-694f77b8f54f/,Axel,,5/30/2022 0:00,18.0000000,19.0000000,43.259674000000,5.374470000000,,"Marseille, Plage de l'huveaune",31376,observation-b1851612-0598-40f2-a645-694f77b8f54f-8,https://biolit.fr/observations/observation-b1851612-0598-40f2-a645-694f77b8f54f-8/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7519_0.JPG,,TRUE, +N1,58624,sortie-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756,https://biolit.fr/sorties/sortie-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0000000,48.649543000000,-4.273184000000,,Pointe de Guévroc,31378,observation-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756,https://biolit.fr/observations/observation-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Astérie bossue 1.JPG,,TRUE, +N1,58624,sortie-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756,https://biolit.fr/sorties/sortie-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0000000,48.649543000000,-4.273184000000,,Pointe de Guévroc,31380,observation-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756-2,https://biolit.fr/observations/observation-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756-2/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Astérie bossue 2-scaled.jpg,,TRUE, +N1,58624,sortie-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756,https://biolit.fr/sorties/sortie-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0000000,48.649543000000,-4.273184000000,,Pointe de Guévroc,31382,observation-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756-3,https://biolit.fr/observations/observation-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/lanice conchilega 1.JPG,,FALSE, +N1,58624,sortie-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756,https://biolit.fr/sorties/sortie-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0000000,48.649543000000,-4.273184000000,,Pointe de Guévroc,31384,observation-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756-4,https://biolit.fr/observations/observation-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/lanice conchilega 2-scaled.jpg,,FALSE, +N1,58624,sortie-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756,https://biolit.fr/sorties/sortie-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0000000,48.649543000000,-4.273184000000,,Pointe de Guévroc,31386,observation-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756-5,https://biolit.fr/observations/observation-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756-5/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nasse réticulée 1-scaled.jpg,,TRUE, +N1,58624,sortie-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756,https://biolit.fr/sorties/sortie-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0000000,48.649543000000,-4.273184000000,,Pointe de Guévroc,31388,observation-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756-6,https://biolit.fr/observations/observation-e6ec3d28-d2e8-4d29-9f60-2fc3495d5756-6/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nasse réticulée 2-scaled.jpg,,TRUE, +N1,58625,sortie-c988b8b9-c275-463e-8936-992b7d4414e7,https://biolit.fr/sorties/sortie-c988b8b9-c275-463e-8936-992b7d4414e7/,BLANCHET SVT,,06/02/2022,14.0:15,16.0000000,48.649531000000,-4.27416000000,,Pointe de Guévroc,31390,observation-c988b8b9-c275-463e-8936-992b7d4414e7,https://biolit.fr/observations/observation-c988b8b9-c275-463e-8936-992b7d4414e7/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/la patelle1.JPG,,TRUE, +N1,58625,sortie-c988b8b9-c275-463e-8936-992b7d4414e7,https://biolit.fr/sorties/sortie-c988b8b9-c275-463e-8936-992b7d4414e7/,BLANCHET SVT,,06/02/2022,14.0:15,16.0000000,48.649531000000,-4.27416000000,,Pointe de Guévroc,31392,observation-c988b8b9-c275-463e-8936-992b7d4414e7-2,https://biolit.fr/observations/observation-c988b8b9-c275-463e-8936-992b7d4414e7-2/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/la patelle2-scaled.jpg,,TRUE, +N1,58625,sortie-c988b8b9-c275-463e-8936-992b7d4414e7,https://biolit.fr/sorties/sortie-c988b8b9-c275-463e-8936-992b7d4414e7/,BLANCHET SVT,,06/02/2022,14.0:15,16.0000000,48.649531000000,-4.27416000000,,Pointe de Guévroc,31394,observation-c988b8b9-c275-463e-8936-992b7d4414e7-3,https://biolit.fr/observations/observation-c988b8b9-c275-463e-8936-992b7d4414e7-3/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/mordocet.JPG,,TRUE, +N1,58626,sortie-c60ac20d-3d80-475d-a6a3-3cdd525d55f6,https://biolit.fr/sorties/sortie-c60ac20d-3d80-475d-a6a3-3cdd525d55f6/,BLANCHET SVT,,06/02/2022,14.0000000,16.0:15,48.649952000000,-4.273189000000,,Pointe de Guevroc,31396,observation-c60ac20d-3d80-475d-a6a3-3cdd525d55f6,https://biolit.fr/observations/observation-c60ac20d-3d80-475d-a6a3-3cdd525d55f6/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/coquille_patelle-scaled.jpg,,TRUE, +N1,58626,sortie-c60ac20d-3d80-475d-a6a3-3cdd525d55f6,https://biolit.fr/sorties/sortie-c60ac20d-3d80-475d-a6a3-3cdd525d55f6/,BLANCHET SVT,,06/02/2022,14.0000000,16.0:15,48.649952000000,-4.273189000000,,Pointe de Guevroc,31398,observation-c60ac20d-3d80-475d-a6a3-3cdd525d55f6-2,https://biolit.fr/observations/observation-c60ac20d-3d80-475d-a6a3-3cdd525d55f6-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/crabe_vert_0.jpg,,TRUE, +N1,58626,sortie-c60ac20d-3d80-475d-a6a3-3cdd525d55f6,https://biolit.fr/sorties/sortie-c60ac20d-3d80-475d-a6a3-3cdd525d55f6/,BLANCHET SVT,,06/02/2022,14.0000000,16.0:15,48.649952000000,-4.273189000000,,Pointe de Guevroc,31400,observation-c60ac20d-3d80-475d-a6a3-3cdd525d55f6-3,https://biolit.fr/observations/observation-c60ac20d-3d80-475d-a6a3-3cdd525d55f6-3/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/littorine_des_rochers.JPG,,TRUE, +N1,58626,sortie-c60ac20d-3d80-475d-a6a3-3cdd525d55f6,https://biolit.fr/sorties/sortie-c60ac20d-3d80-475d-a6a3-3cdd525d55f6/,BLANCHET SVT,,06/02/2022,14.0000000,16.0:15,48.649952000000,-4.273189000000,,Pointe de Guevroc,31402,observation-c60ac20d-3d80-475d-a6a3-3cdd525d55f6-4,https://biolit.fr/observations/observation-c60ac20d-3d80-475d-a6a3-3cdd525d55f6-4/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/nasse_reticulee.jpg,,TRUE, +N1,58626,sortie-c60ac20d-3d80-475d-a6a3-3cdd525d55f6,https://biolit.fr/sorties/sortie-c60ac20d-3d80-475d-a6a3-3cdd525d55f6/,BLANCHET SVT,,06/02/2022,14.0000000,16.0:15,48.649952000000,-4.273189000000,,Pointe de Guevroc,31404,observation-c60ac20d-3d80-475d-a6a3-3cdd525d55f6-5,https://biolit.fr/observations/observation-c60ac20d-3d80-475d-a6a3-3cdd525d55f6-5/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/patelle_2-scaled.jpg,,TRUE, +N1,58626,sortie-c60ac20d-3d80-475d-a6a3-3cdd525d55f6,https://biolit.fr/sorties/sortie-c60ac20d-3d80-475d-a6a3-3cdd525d55f6/,BLANCHET SVT,,06/02/2022,14.0000000,16.0:15,48.649952000000,-4.273189000000,,Pointe de Guevroc,31406,observation-c60ac20d-3d80-475d-a6a3-3cdd525d55f6-6,https://biolit.fr/observations/observation-c60ac20d-3d80-475d-a6a3-3cdd525d55f6-6/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/troque_epais_0-scaled.jpg,,TRUE, +N1,58627,sortie-04818f91-c377-4daa-bd2d-e6daf5a168f4,https://biolit.fr/sorties/sortie-04818f91-c377-4daa-bd2d-e6daf5a168f4/,BLANCHET SVT,,5/17/2022 0:00,14.0000000,16.0:15,48.649851000000,-4.273715000000,,"Tréflez,Pointe du Guevroc",31408,observation-04818f91-c377-4daa-bd2d-e6daf5a168f4,https://biolit.fr/observations/observation-04818f91-c377-4daa-bd2d-e6daf5a168f4/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/Aulactinia_verrucosa-scaled.jpg,,TRUE, +N1,58627,sortie-04818f91-c377-4daa-bd2d-e6daf5a168f4,https://biolit.fr/sorties/sortie-04818f91-c377-4daa-bd2d-e6daf5a168f4/,BLANCHET SVT,,5/17/2022 0:00,14.0000000,16.0:15,48.649851000000,-4.273715000000,,"Tréflez,Pointe du Guevroc",31410,observation-04818f91-c377-4daa-bd2d-e6daf5a168f4-2,https://biolit.fr/observations/observation-04818f91-c377-4daa-bd2d-e6daf5a168f4-2/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Moule_commune-scaled.jpg,,TRUE, +N1,58627,sortie-04818f91-c377-4daa-bd2d-e6daf5a168f4,https://biolit.fr/sorties/sortie-04818f91-c377-4daa-bd2d-e6daf5a168f4/,BLANCHET SVT,,5/17/2022 0:00,14.0000000,16.0:15,48.649851000000,-4.273715000000,,"Tréflez,Pointe du Guevroc",31412,observation-04818f91-c377-4daa-bd2d-e6daf5a168f4-3,https://biolit.fr/observations/observation-04818f91-c377-4daa-bd2d-e6daf5a168f4-3/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/Aulactinia_verrucosa2-scaled.jpg,,TRUE, +N1,58627,sortie-04818f91-c377-4daa-bd2d-e6daf5a168f4,https://biolit.fr/sorties/sortie-04818f91-c377-4daa-bd2d-e6daf5a168f4/,BLANCHET SVT,,5/17/2022 0:00,14.0000000,16.0:15,48.649851000000,-4.273715000000,,"Tréflez,Pointe du Guevroc",31416,observation-04818f91-c377-4daa-bd2d-e6daf5a168f4-5,https://biolit.fr/observations/observation-04818f91-c377-4daa-bd2d-e6daf5a168f4-5/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/crabe_vert_2-scaled.jpg,,TRUE, +N1,58627,sortie-04818f91-c377-4daa-bd2d-e6daf5a168f4,https://biolit.fr/sorties/sortie-04818f91-c377-4daa-bd2d-e6daf5a168f4/,BLANCHET SVT,,5/17/2022 0:00,14.0000000,16.0:15,48.649851000000,-4.273715000000,,"Tréflez,Pointe du Guevroc",31418,observation-04818f91-c377-4daa-bd2d-e6daf5a168f4-6,https://biolit.fr/observations/observation-04818f91-c377-4daa-bd2d-e6daf5a168f4-6/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorine_obtusata-scaled.jpg,,TRUE, +N1,58628,sortie-06a89f95-7dfd-4348-b88e-1c1a2136e464,https://biolit.fr/sorties/sortie-06a89f95-7dfd-4348-b88e-1c1a2136e464/,BLANCHET SVT,,5/17/2022 0:00,14.0000000,16.0:15,48.650105000000,-4.272626000000,,pointe de Guevroc,31420,observation-06a89f95-7dfd-4348-b88e-1c1a2136e464,https://biolit.fr/observations/observation-06a89f95-7dfd-4348-b88e-1c1a2136e464/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Patelle commune-scaled.jpg,,TRUE, +N1,58628,sortie-06a89f95-7dfd-4348-b88e-1c1a2136e464,https://biolit.fr/sorties/sortie-06a89f95-7dfd-4348-b88e-1c1a2136e464/,BLANCHET SVT,,5/17/2022 0:00,14.0000000,16.0:15,48.650105000000,-4.272626000000,,pointe de Guevroc,31424,observation-06a89f95-7dfd-4348-b88e-1c1a2136e464-3,https://biolit.fr/observations/observation-06a89f95-7dfd-4348-b88e-1c1a2136e464-3/,Venerupis corrugata,Palourde-poulette,,https://biolit.fr/wp-content/uploads/2023/07/Palourde_Poulette2-scaled.jpg,,TRUE, +N1,58629,sortie-40ddbbf5-f683-410b-a4e8-94415b7dc239,https://biolit.fr/sorties/sortie-40ddbbf5-f683-410b-a4e8-94415b7dc239/,BLANCHET SVT,,5/17/2022 0:00,14.0000000,16.0000000,48.649981000000,-4.275131000000,,pointe de gevroc,31426,observation-40ddbbf5-f683-410b-a4e8-94415b7dc239,https://biolit.fr/observations/observation-40ddbbf5-f683-410b-a4e8-94415b7dc239/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/gasteropodes.jpg,,TRUE, +N1,58629,sortie-40ddbbf5-f683-410b-a4e8-94415b7dc239,https://biolit.fr/sorties/sortie-40ddbbf5-f683-410b-a4e8-94415b7dc239/,BLANCHET SVT,,5/17/2022 0:00,14.0000000,16.0000000,48.649981000000,-4.275131000000,,pointe de gevroc,31428,observation-40ddbbf5-f683-410b-a4e8-94415b7dc239-2,https://biolit.fr/observations/observation-40ddbbf5-f683-410b-a4e8-94415b7dc239-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/troc_epais.jpg,,TRUE, +N1,58630,sortie-4d2ce46f-5e0e-42a0-83ea-14b30b7fcf3d,https://biolit.fr/sorties/sortie-4d2ce46f-5e0e-42a0-83ea-14b30b7fcf3d/,BLANCHET SVT,,5/17/2022 0:00,14.0000000,16.0:15,48.649606000000,-4.274986000000,,baie de keremma,31430,observation-4d2ce46f-5e0e-42a0-83ea-14b30b7fcf3d,https://biolit.fr/observations/observation-4d2ce46f-5e0e-42a0-83ea-14b30b7fcf3d/,,,,https://biolit.fr/wp-content/uploads/2023/07/anemone_geme.jpg,,FALSE, +N1,58630,sortie-4d2ce46f-5e0e-42a0-83ea-14b30b7fcf3d,https://biolit.fr/sorties/sortie-4d2ce46f-5e0e-42a0-83ea-14b30b7fcf3d/,BLANCHET SVT,,5/17/2022 0:00,14.0000000,16.0:15,48.649606000000,-4.274986000000,,baie de keremma,31432,observation-4d2ce46f-5e0e-42a0-83ea-14b30b7fcf3d-2,https://biolit.fr/observations/observation-4d2ce46f-5e0e-42a0-83ea-14b30b7fcf3d-2/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/bernic.jpg,,TRUE, +N1,58630,sortie-4d2ce46f-5e0e-42a0-83ea-14b30b7fcf3d,https://biolit.fr/sorties/sortie-4d2ce46f-5e0e-42a0-83ea-14b30b7fcf3d/,BLANCHET SVT,,5/17/2022 0:00,14.0000000,16.0:15,48.649606000000,-4.274986000000,,baie de keremma,31434,observation-4d2ce46f-5e0e-42a0-83ea-14b30b7fcf3d-3,https://biolit.fr/observations/observation-4d2ce46f-5e0e-42a0-83ea-14b30b7fcf3d-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/bigorneau_1.jpg,,TRUE, +N1,58630,sortie-4d2ce46f-5e0e-42a0-83ea-14b30b7fcf3d,https://biolit.fr/sorties/sortie-4d2ce46f-5e0e-42a0-83ea-14b30b7fcf3d/,BLANCHET SVT,,5/17/2022 0:00,14.0000000,16.0:15,48.649606000000,-4.274986000000,,baie de keremma,31436,observation-4d2ce46f-5e0e-42a0-83ea-14b30b7fcf3d-4,https://biolit.fr/observations/observation-4d2ce46f-5e0e-42a0-83ea-14b30b7fcf3d-4/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Bigorneau2-scaled.jpg,,TRUE, +N1,58631,sortie-aa2d9e62-02c9-45d8-be97-9e8a332ec99c,https://biolit.fr/sorties/sortie-aa2d9e62-02c9-45d8-be97-9e8a332ec99c/,BLANCHET SVT,,5/17/2022 0:00,14.0000000,16.0:15,48.649804000000,-4.274814000000,,pointe de guevroc,31438,observation-aa2d9e62-02c9-45d8-be97-9e8a332ec99c,https://biolit.fr/observations/observation-aa2d9e62-02c9-45d8-be97-9e8a332ec99c/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/crabe_vert_-scaled.jpg,,TRUE, +N1,58631,sortie-aa2d9e62-02c9-45d8-be97-9e8a332ec99c,https://biolit.fr/sorties/sortie-aa2d9e62-02c9-45d8-be97-9e8a332ec99c/,BLANCHET SVT,,5/17/2022 0:00,14.0000000,16.0:15,48.649804000000,-4.274814000000,,pointe de guevroc,31439,observation-aa2d9e62-02c9-45d8-be97-9e8a332ec99c-2,https://biolit.fr/observations/observation-aa2d9e62-02c9-45d8-be97-9e8a332ec99c-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Troque_Epais-scaled.jpg,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31441,observation-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita_8.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31443,observation-12cfceae-ae7d-4770-b788-0554a21a52df-2,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea_7.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31445,observation-12cfceae-ae7d-4770-b788-0554a21a52df-3,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue sp-scaled.jpg,,FALSE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31446,observation-12cfceae-ae7d-4770-b788-0554a21a52df-4,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-4/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_19.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31448,observation-12cfceae-ae7d-4770-b788-0554a21a52df-5,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-5/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/Chthamalus stellatus-scaled.jpg,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31449,observation-12cfceae-ae7d-4770-b788-0554a21a52df-6,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-6/,Cingula trifasciata,Cingule trois faces,,https://biolit.fr/wp-content/uploads/2023/07/Cingula trifasciata pe.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31451,observation-12cfceae-ae7d-4770-b788-0554a21a52df-7,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-7/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/Clibanarius erythropus_1.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31453,observation-12cfceae-ae7d-4770-b788-0554a21a52df-8,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Dynamene magnitorata_0.PNG,,FALSE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31455,observation-12cfceae-ae7d-4770-b788-0554a21a52df-9,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-9/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/Fucus serratus_1.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31457,observation-12cfceae-ae7d-4770-b788-0554a21a52df-10,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-10/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/Gobie sp_2.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31459,observation-12cfceae-ae7d-4770-b788-0554a21a52df-11,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-11/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/Himanthalia elongata.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31461,observation-12cfceae-ae7d-4770-b788-0554a21a52df-12,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Laminaire sp.PNG,,FALSE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31463,observation-12cfceae-ae7d-4770-b788-0554a21a52df-13,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-13/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Litorrina obtusata.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31465,observation-12cfceae-ae7d-4770-b788-0554a21a52df-14,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Méduse sp_0.PNG,,FALSE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31467,observation-12cfceae-ae7d-4770-b788-0554a21a52df-15,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-15/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_15.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31469,observation-12cfceae-ae7d-4770-b788-0554a21a52df-16,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-16/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_20.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31471,observation-12cfceae-ae7d-4770-b788-0554a21a52df-17,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-17/,Onchidella celtica,Limace celtique,,https://biolit.fr/wp-content/uploads/2023/07/Onchidella celtica.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31473,observation-12cfceae-ae7d-4770-b788-0554a21a52df-18,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-18/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_9.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31475,observation-12cfceae-ae7d-4770-b788-0554a21a52df-19,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-19/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/palaemon serratus_0.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31476,observation-12cfceae-ae7d-4770-b788-0554a21a52df-20,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-20/,Pelvetia canaliculata,Pelvétie,,https://biolit.fr/wp-content/uploads/2023/07/Pelvetia canaliculata.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31478,observation-12cfceae-ae7d-4770-b788-0554a21a52df-21,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/Poisson sp.PNG,,FALSE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31480,observation-12cfceae-ae7d-4770-b788-0554a21a52df-22,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-22/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Sargassum japonica.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31482,observation-12cfceae-ae7d-4770-b788-0554a21a52df-23,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-23/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Steromphala umbilicalis_2.PNG,,TRUE, +N1,58632,sortie-12cfceae-ae7d-4770-b788-0554a21a52df,https://biolit.fr/sorties/sortie-12cfceae-ae7d-4770-b788-0554a21a52df/,Roman,,5/28/2022 0:00,10.0000000,12.0000000,47.643542000000,-3.444011000000,,Groix,31484,observation-12cfceae-ae7d-4770-b788-0554a21a52df-24,https://biolit.fr/observations/observation-12cfceae-ae7d-4770-b788-0554a21a52df-24/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/Urticina felina_5.PNG,,TRUE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31486,observation-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Aequipecten opercularis.PNG,,TRUE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31488,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-2,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-2/,Botrylloides spp. (leachii violaceus diegensis),Botrylles,,https://biolit.fr/wp-content/uploads/2023/07/Botrylloides spp_3.PNG,,TRUE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31490,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-3,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_20.PNG,,TRUE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31492,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-4,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-4/,Ciona intestinalis,Cione intestinale,,https://biolit.fr/wp-content/uploads/2023/07/Ciona intestinalis_0.PNG,,TRUE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31494,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-5,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-5/,Clavelina lepadiformis,Grande claveline,,https://biolit.fr/wp-content/uploads/2023/07/Clavelina lepadiformis.PNG,,TRUE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31496,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-6,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-6/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Crassostrea gigas_4.PNG,,TRUE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31498,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-7,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_28.PNG,,FALSE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31500,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-8,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-8/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_9.PNG,,TRUE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31502,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-9,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-9/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_24.PNG,,TRUE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31504,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-10,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-10/,Metridium senile,Œillet de mer,,https://biolit.fr/wp-content/uploads/2023/07/Metridium senile_1.PNG,,TRUE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31506,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-11,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-11/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus eudlis.PNG,,TRUE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31508,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-12,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-12/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_16.PNG,,TRUE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31510,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-13,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-13/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/Palaemon serratus.PNG,,TRUE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31512,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-14,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-14/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus_7.PNG,,TRUE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31514,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-15,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Poissons sp.PNG,,FALSE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31516,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-16,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-16/,Sedum acre,Orpin âcre,,https://biolit.fr/wp-content/uploads/2023/07/Sedum anglicum.PNG,,TRUE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31517,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-17,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/Umbilicus rupestris.PNG,,FALSE, +N1,58633,sortie-c78b4650-3e15-439a-bfff-dda624d9be1f,https://biolit.fr/sorties/sortie-c78b4650-3e15-439a-bfff-dda624d9be1f/,Roman,,5/27/2022 0:00,10.0000000,11.0000000,47.643556000000,-3.445878000000,,Groix,31519,observation-c78b4650-3e15-439a-bfff-dda624d9be1f-18,https://biolit.fr/observations/observation-c78b4650-3e15-439a-bfff-dda624d9be1f-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ver plat sp.PNG,,FALSE, +N1,58634,sortie-9ae2565a-9163-480a-9b52-07b3d76a50d9,https://biolit.fr/sorties/sortie-9ae2565a-9163-480a-9b52-07b3d76a50d9/,Axel,,5/25/2022 0:00,19.0:15,20.0000000,43.280267000000,5.34988000000,,"Marseille, Maldormé ",31521,observation-9ae2565a-9163-480a-9b52-07b3d76a50d9,https://biolit.fr/observations/observation-9ae2565a-9163-480a-9b52-07b3d76a50d9/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_7482_0-rotated.jpg,,TRUE, +N1,58634,sortie-9ae2565a-9163-480a-9b52-07b3d76a50d9,https://biolit.fr/sorties/sortie-9ae2565a-9163-480a-9b52-07b3d76a50d9/,Axel,,5/25/2022 0:00,19.0:15,20.0000000,43.280267000000,5.34988000000,,"Marseille, Maldormé ",31523,observation-9ae2565a-9163-480a-9b52-07b3d76a50d9-2,https://biolit.fr/observations/observation-9ae2565a-9163-480a-9b52-07b3d76a50d9-2/,Maja squinado,Grande araignée de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7485_0.JPG,,TRUE, +N1,58634,sortie-9ae2565a-9163-480a-9b52-07b3d76a50d9,https://biolit.fr/sorties/sortie-9ae2565a-9163-480a-9b52-07b3d76a50d9/,Axel,,5/25/2022 0:00,19.0:15,20.0000000,43.280267000000,5.34988000000,,"Marseille, Maldormé ",31525,observation-9ae2565a-9163-480a-9b52-07b3d76a50d9-3,https://biolit.fr/observations/observation-9ae2565a-9163-480a-9b52-07b3d76a50d9-3/,Maja squinado,Grande araignée de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7495_0.JPG,,TRUE, +N1,58634,sortie-9ae2565a-9163-480a-9b52-07b3d76a50d9,https://biolit.fr/sorties/sortie-9ae2565a-9163-480a-9b52-07b3d76a50d9/,Axel,,5/25/2022 0:00,19.0:15,20.0000000,43.280267000000,5.34988000000,,"Marseille, Maldormé ",31527,observation-9ae2565a-9163-480a-9b52-07b3d76a50d9-4,https://biolit.fr/observations/observation-9ae2565a-9163-480a-9b52-07b3d76a50d9-4/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7488_0-rotated.jpg,,TRUE, +N1,58634,sortie-9ae2565a-9163-480a-9b52-07b3d76a50d9,https://biolit.fr/sorties/sortie-9ae2565a-9163-480a-9b52-07b3d76a50d9/,Axel,,5/25/2022 0:00,19.0:15,20.0000000,43.280267000000,5.34988000000,,"Marseille, Maldormé ",31529,observation-9ae2565a-9163-480a-9b52-07b3d76a50d9-5,https://biolit.fr/observations/observation-9ae2565a-9163-480a-9b52-07b3d76a50d9-5/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7489_0-rotated.jpg,,TRUE, +N1,58635,sortie-5990db3f-3575-4597-9d82-e7e394f884c5,https://biolit.fr/sorties/sortie-5990db3f-3575-4597-9d82-e7e394f884c5/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0:15,48.648829000000,-4.272433000000,,la baie du kernic,31531,observation-5990db3f-3575-4597-9d82-e7e394f884c5,https://biolit.fr/observations/observation-5990db3f-3575-4597-9d82-e7e394f884c5/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/anémone gemme1.JPG,,TRUE, +N1,58635,sortie-5990db3f-3575-4597-9d82-e7e394f884c5,https://biolit.fr/sorties/sortie-5990db3f-3575-4597-9d82-e7e394f884c5/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0:15,48.648829000000,-4.272433000000,,la baie du kernic,31533,observation-5990db3f-3575-4597-9d82-e7e394f884c5-2,https://biolit.fr/observations/observation-5990db3f-3575-4597-9d82-e7e394f884c5-2/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/chitons.JPG,,TRUE, +N1,58635,sortie-5990db3f-3575-4597-9d82-e7e394f884c5,https://biolit.fr/sorties/sortie-5990db3f-3575-4597-9d82-e7e394f884c5/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0:15,48.648829000000,-4.272433000000,,la baie du kernic,31535,observation-5990db3f-3575-4597-9d82-e7e394f884c5-3,https://biolit.fr/observations/observation-5990db3f-3575-4597-9d82-e7e394f884c5-3/,Corallina officinalis/caespitosa,Coralline,,https://biolit.fr/wp-content/uploads/2023/07/coralline officinale-scaled.jpg,,TRUE, +N1,58635,sortie-5990db3f-3575-4597-9d82-e7e394f884c5,https://biolit.fr/sorties/sortie-5990db3f-3575-4597-9d82-e7e394f884c5/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0:15,48.648829000000,-4.272433000000,,la baie du kernic,31537,observation-5990db3f-3575-4597-9d82-e7e394f884c5-4,https://biolit.fr/observations/observation-5990db3f-3575-4597-9d82-e7e394f884c5-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/bigorneau commun_1.JPG,,TRUE, +N1,58635,sortie-5990db3f-3575-4597-9d82-e7e394f884c5,https://biolit.fr/sorties/sortie-5990db3f-3575-4597-9d82-e7e394f884c5/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0:15,48.648829000000,-4.272433000000,,la baie du kernic,31539,observation-5990db3f-3575-4597-9d82-e7e394f884c5-5,https://biolit.fr/observations/observation-5990db3f-3575-4597-9d82-e7e394f884c5-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Astérie bossue 2-scaled.jpg,,TRUE, +N1,58635,sortie-5990db3f-3575-4597-9d82-e7e394f884c5,https://biolit.fr/sorties/sortie-5990db3f-3575-4597-9d82-e7e394f884c5/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0:15,48.648829000000,-4.272433000000,,la baie du kernic,31540,observation-5990db3f-3575-4597-9d82-e7e394f884c5-6,https://biolit.fr/observations/observation-5990db3f-3575-4597-9d82-e7e394f884c5-6/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/asterie bossue1-scaled.jpg,,TRUE, +N1,58635,sortie-5990db3f-3575-4597-9d82-e7e394f884c5,https://biolit.fr/sorties/sortie-5990db3f-3575-4597-9d82-e7e394f884c5/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0:15,48.648829000000,-4.272433000000,,la baie du kernic,31542,observation-5990db3f-3575-4597-9d82-e7e394f884c5-7,https://biolit.fr/observations/observation-5990db3f-3575-4597-9d82-e7e394f884c5-7/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/anémone gemme2.JPG,,TRUE, +N1,58636,sortie-373f371b-c3bb-4afc-8d1e-164165bec7d3,https://biolit.fr/sorties/sortie-373f371b-c3bb-4afc-8d1e-164165bec7d3/,BLANCHET SVT,,5/16/2002 0:00,14.0:15,17.0:15,48.641071000000,-4.301851000000,,Tréflez,31544,observation-373f371b-c3bb-4afc-8d1e-164165bec7d3,https://biolit.fr/observations/observation-373f371b-c3bb-4afc-8d1e-164165bec7d3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas 1 -scaled.jpg,,TRUE, +N1,58636,sortie-373f371b-c3bb-4afc-8d1e-164165bec7d3,https://biolit.fr/sorties/sortie-373f371b-c3bb-4afc-8d1e-164165bec7d3/,BLANCHET SVT,,5/16/2002 0:00,14.0:15,17.0:15,48.641071000000,-4.301851000000,,Tréflez,31546,observation-373f371b-c3bb-4afc-8d1e-164165bec7d3-2,https://biolit.fr/observations/observation-373f371b-c3bb-4afc-8d1e-164165bec7d3-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas 2 -scaled.jpg,,TRUE, +N1,58636,sortie-373f371b-c3bb-4afc-8d1e-164165bec7d3,https://biolit.fr/sorties/sortie-373f371b-c3bb-4afc-8d1e-164165bec7d3/,BLANCHET SVT,,5/16/2002 0:00,14.0:15,17.0:15,48.641071000000,-4.301851000000,,Tréflez,31548,observation-373f371b-c3bb-4afc-8d1e-164165bec7d3-3,https://biolit.fr/observations/observation-373f371b-c3bb-4afc-8d1e-164165bec7d3-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lipophrys pholis-scaled.jpg,,FALSE, +N1,58636,sortie-373f371b-c3bb-4afc-8d1e-164165bec7d3,https://biolit.fr/sorties/sortie-373f371b-c3bb-4afc-8d1e-164165bec7d3/,BLANCHET SVT,,5/16/2002 0:00,14.0:15,17.0:15,48.641071000000,-4.301851000000,,Tréflez,31550,observation-373f371b-c3bb-4afc-8d1e-164165bec7d3-4,https://biolit.fr/observations/observation-373f371b-c3bb-4afc-8d1e-164165bec7d3-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea-scaled.jpg,,FALSE, +N1,58637,sortie-8471c401-2645-436a-be07-72d3ed91edf5,https://biolit.fr/sorties/sortie-8471c401-2645-436a-be07-72d3ed91edf5/,BLANCHET SVT,,5/16/2022 0:00,14.0000000,16.0:15,48.642910000000,-4.286959000000,,Dunes de Kerema,31552,observation-8471c401-2645-436a-be07-72d3ed91edf5,https://biolit.fr/observations/observation-8471c401-2645-436a-be07-72d3ed91edf5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/bigorneau commun_0.JPG,,TRUE, +N1,58637,sortie-8471c401-2645-436a-be07-72d3ed91edf5,https://biolit.fr/sorties/sortie-8471c401-2645-436a-be07-72d3ed91edf5/,BLANCHET SVT,,5/16/2022 0:00,14.0000000,16.0:15,48.642910000000,-4.286959000000,,Dunes de Kerema,31554,observation-8471c401-2645-436a-be07-72d3ed91edf5-2,https://biolit.fr/observations/observation-8471c401-2645-436a-be07-72d3ed91edf5-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/littorine des rochers2.JPG,,TRUE, +N1,58637,sortie-8471c401-2645-436a-be07-72d3ed91edf5,https://biolit.fr/sorties/sortie-8471c401-2645-436a-be07-72d3ed91edf5/,BLANCHET SVT,,5/16/2022 0:00,14.0000000,16.0:15,48.642910000000,-4.286959000000,,Dunes de Kerema,31556,observation-8471c401-2645-436a-be07-72d3ed91edf5-3,https://biolit.fr/observations/observation-8471c401-2645-436a-be07-72d3ed91edf5-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/crabe vert-scaled.jpg,,TRUE, +N1,58637,sortie-8471c401-2645-436a-be07-72d3ed91edf5,https://biolit.fr/sorties/sortie-8471c401-2645-436a-be07-72d3ed91edf5/,BLANCHET SVT,,5/16/2022 0:00,14.0000000,16.0:15,48.642910000000,-4.286959000000,,Dunes de Kerema,31558,observation-8471c401-2645-436a-be07-72d3ed91edf5-4,https://biolit.fr/observations/observation-8471c401-2645-436a-be07-72d3ed91edf5-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/crabe vert 2_0-scaled.jpg,,TRUE, +N1,58638,sortie-36f84a3d-efae-45ec-8e99-1d278940ab19,https://biolit.fr/sorties/sortie-36f84a3d-efae-45ec-8e99-1d278940ab19/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0:15,48.649812000000,-4.273055000000,,Dunes de Keremma,31560,observation-36f84a3d-efae-45ec-8e99-1d278940ab19,https://biolit.fr/observations/observation-36f84a3d-efae-45ec-8e99-1d278940ab19/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Astérie bossue.JPG,,TRUE, +N1,58638,sortie-36f84a3d-efae-45ec-8e99-1d278940ab19,https://biolit.fr/sorties/sortie-36f84a3d-efae-45ec-8e99-1d278940ab19/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0:15,48.649812000000,-4.273055000000,,Dunes de Keremma,31562,observation-36f84a3d-efae-45ec-8e99-1d278940ab19-2,https://biolit.fr/observations/observation-36f84a3d-efae-45ec-8e99-1d278940ab19-2/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/La coque commune-scaled.jpg,,TRUE, +N1,58638,sortie-36f84a3d-efae-45ec-8e99-1d278940ab19,https://biolit.fr/sorties/sortie-36f84a3d-efae-45ec-8e99-1d278940ab19/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0:15,48.649812000000,-4.273055000000,,Dunes de Keremma,31564,observation-36f84a3d-efae-45ec-8e99-1d278940ab19-3,https://biolit.fr/observations/observation-36f84a3d-efae-45ec-8e99-1d278940ab19-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/littorine des rochers.JPG,,TRUE, +N1,58638,sortie-36f84a3d-efae-45ec-8e99-1d278940ab19,https://biolit.fr/sorties/sortie-36f84a3d-efae-45ec-8e99-1d278940ab19/,BLANCHET SVT,,5/16/2022 0:00,14.0:15,16.0:15,48.649812000000,-4.273055000000,,Dunes de Keremma,31566,observation-36f84a3d-efae-45ec-8e99-1d278940ab19-4,https://biolit.fr/observations/observation-36f84a3d-efae-45ec-8e99-1d278940ab19-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Troque épais-scaled.jpg,,TRUE, +N1,58639,sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401,https://biolit.fr/sorties/sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401/,Axel,,5/23/2022 0:00,15.0000000,16.0000000,43.28019900000,5.352766000000,,"Marseille, Anse de La Fausse Monnaie",31568,observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401,https://biolit.fr/observations/observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7441.JPG,,FALSE, +N1,58639,sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401,https://biolit.fr/sorties/sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401/,Axel,,5/23/2022 0:00,15.0000000,16.0000000,43.28019900000,5.352766000000,,"Marseille, Anse de La Fausse Monnaie",31570,observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-2,https://biolit.fr/observations/observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7442.JPG,,FALSE, +N1,58639,sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401,https://biolit.fr/sorties/sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401/,Axel,,5/23/2022 0:00,15.0000000,16.0000000,43.28019900000,5.352766000000,,"Marseille, Anse de La Fausse Monnaie",31572,observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-3,https://biolit.fr/observations/observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-3/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7447.JPG,,TRUE, +N1,58639,sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401,https://biolit.fr/sorties/sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401/,Axel,,5/23/2022 0:00,15.0000000,16.0000000,43.28019900000,5.352766000000,,"Marseille, Anse de La Fausse Monnaie",31574,observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-4,https://biolit.fr/observations/observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7460.JPG,,FALSE, +N1,58639,sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401,https://biolit.fr/sorties/sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401/,Axel,,5/23/2022 0:00,15.0000000,16.0000000,43.28019900000,5.352766000000,,"Marseille, Anse de La Fausse Monnaie",31576,observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-5,https://biolit.fr/observations/observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7461_0.JPG,,FALSE, +N1,58639,sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401,https://biolit.fr/sorties/sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401/,Axel,,5/23/2022 0:00,15.0000000,16.0000000,43.28019900000,5.352766000000,,"Marseille, Anse de La Fausse Monnaie",31578,observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-6,https://biolit.fr/observations/observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7463.JPG,,FALSE, +N1,58639,sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401,https://biolit.fr/sorties/sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401/,Axel,,5/23/2022 0:00,15.0000000,16.0000000,43.28019900000,5.352766000000,,"Marseille, Anse de La Fausse Monnaie",31580,observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-7,https://biolit.fr/observations/observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-7/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_7464_0.JPG,,TRUE, +N1,58639,sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401,https://biolit.fr/sorties/sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401/,Axel,,5/23/2022 0:00,15.0000000,16.0000000,43.28019900000,5.352766000000,,"Marseille, Anse de La Fausse Monnaie",31582,observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-8,https://biolit.fr/observations/observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-8/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7467.JPG,,TRUE, +N1,58639,sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401,https://biolit.fr/sorties/sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401/,Axel,,5/23/2022 0:00,15.0000000,16.0000000,43.28019900000,5.352766000000,,"Marseille, Anse de La Fausse Monnaie",31584,observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-9,https://biolit.fr/observations/observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-9/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_7473_0.JPG,,TRUE, +N1,58639,sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401,https://biolit.fr/sorties/sortie-62b5df23-35a2-47d6-a7b2-01c57a7b6401/,Axel,,5/23/2022 0:00,15.0000000,16.0000000,43.28019900000,5.352766000000,,"Marseille, Anse de La Fausse Monnaie",31586,observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-10,https://biolit.fr/observations/observation-62b5df23-35a2-47d6-a7b2-01c57a7b6401-10/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7477.JPG,,TRUE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31588,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7364.JPG,,TRUE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31590,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-2,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7370.JPG,,FALSE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31592,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-3,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-3/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7373.JPG,,TRUE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31594,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-4,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-4/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7374.JPG,,TRUE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31596,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-5,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-5/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7375.JPG,,TRUE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31598,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-6,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-6/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_7377-rotated.jpg,,TRUE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31600,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-7,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7378.JPG,,FALSE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31602,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-8,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7387-rotated.jpg,,FALSE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31604,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-9,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-9/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7389-rotated.jpg,,TRUE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31606,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-10,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-10/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7391-rotated.jpg,,TRUE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31608,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-11,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-11/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7388.JPG,,TRUE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31610,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-12,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7398.JPG,,FALSE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31612,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-13,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-13/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7395.JPG,,TRUE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31614,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-14,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-14/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7412.JPG,,TRUE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31616,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-15,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7421.JPG,,FALSE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31618,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-16,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-16/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7423-rotated.jpg,,TRUE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31620,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-17,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-17/,Pallenis maritima,Astérolide maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7428.JPG,,TRUE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31622,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-18,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7429.JPG,,FALSE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31624,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-19,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-19/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7430.JPG,,TRUE, +N1,58640,sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0,https://biolit.fr/sorties/sortie-69998dea-4a85-412d-aa37-8c4673b4e9c0/,Axel,,5/18/2022 0:00,10.0000000,11.0000000,43.284108000000,5.316341000000,Planète Mer,"Marseille, Iles du Frioul, Plage de Saint Estève",31626,observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-20,https://biolit.fr/observations/observation-69998dea-4a85-412d-aa37-8c4673b4e9c0-20/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7431.JPG,,TRUE, +N1,58641,sortie-4546854f-c45b-4275-a993-70c5e19932af,https://biolit.fr/sorties/sortie-4546854f-c45b-4275-a993-70c5e19932af/,Marine Nature,,5/15/2022 0:00,13.0000000,14.0000000,43.011321000000,6.222676000000,Naturoscope (Antenne Var),"Plage de l'Alycastre, Porquerolles",31628,observation-4546854f-c45b-4275-a993-70c5e19932af,https://biolit.fr/observations/observation-4546854f-c45b-4275-a993-70c5e19932af/,,,,https://biolit.fr/wp-content/uploads/2023/07/image_67367425 (2)-scaled.jpg,,FALSE, +N1,58642,sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f,https://biolit.fr/sorties/sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f/,çg,,05/06/2022,11.0:15,13.0000000,43.465035000000,-1.574916000000,,Plage Milady (Biarritz),31630,observation-1a027ea1-18c2-401e-9884-305e8b72cc0f,https://biolit.fr/observations/observation-1a027ea1-18c2-401e-9884-305e8b72cc0f/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9073_low.JPG,,FALSE, +N1,58642,sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f,https://biolit.fr/sorties/sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f/,çg,,05/06/2022,11.0:15,13.0000000,43.465035000000,-1.574916000000,,Plage Milady (Biarritz),31632,observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-2,https://biolit.fr/observations/observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-2/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9076_low.JPG,,TRUE, +N1,58642,sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f,https://biolit.fr/sorties/sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f/,çg,,05/06/2022,11.0:15,13.0000000,43.465035000000,-1.574916000000,,Plage Milady (Biarritz),31634,observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-3,https://biolit.fr/observations/observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9078_low.JPG,,FALSE, +N1,58642,sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f,https://biolit.fr/sorties/sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f/,çg,,05/06/2022,11.0:15,13.0000000,43.465035000000,-1.574916000000,,Plage Milady (Biarritz),31636,observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-4,https://biolit.fr/observations/observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-4/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_9079_low.JPG,,TRUE, +N1,58642,sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f,https://biolit.fr/sorties/sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f/,çg,,05/06/2022,11.0:15,13.0000000,43.465035000000,-1.574916000000,,Plage Milady (Biarritz),31638,observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-5,https://biolit.fr/observations/observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-5/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9083_low-rotated.jpg,,TRUE, +N1,58642,sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f,https://biolit.fr/sorties/sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f/,çg,,05/06/2022,11.0:15,13.0000000,43.465035000000,-1.574916000000,,Plage Milady (Biarritz),31640,observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-6,https://biolit.fr/observations/observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-6/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9085_low-rotated.jpg,,TRUE, +N1,58642,sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f,https://biolit.fr/sorties/sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f/,çg,,05/06/2022,11.0:15,13.0000000,43.465035000000,-1.574916000000,,Plage Milady (Biarritz),31642,observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-7,https://biolit.fr/observations/observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-7/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9088_low-rotated.jpg,,TRUE, +N1,58642,sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f,https://biolit.fr/sorties/sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f/,çg,,05/06/2022,11.0:15,13.0000000,43.465035000000,-1.574916000000,,Plage Milady (Biarritz),31644,observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-8,https://biolit.fr/observations/observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9089_low-rotated.jpg,,FALSE, +N1,58642,sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f,https://biolit.fr/sorties/sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f/,çg,,05/06/2022,11.0:15,13.0000000,43.465035000000,-1.574916000000,,Plage Milady (Biarritz),31646,observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-9,https://biolit.fr/observations/observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-9/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9093_low-rotated.jpg,,TRUE, +N1,58642,sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f,https://biolit.fr/sorties/sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f/,çg,,05/06/2022,11.0:15,13.0000000,43.465035000000,-1.574916000000,,Plage Milady (Biarritz),31648,observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-10,https://biolit.fr/observations/observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9094_low-rotated.jpg,,FALSE, +N1,58642,sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f,https://biolit.fr/sorties/sortie-1a027ea1-18c2-401e-9884-305e8b72cc0f/,çg,,05/06/2022,11.0:15,13.0000000,43.465035000000,-1.574916000000,,Plage Milady (Biarritz),31650,observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-11,https://biolit.fr/observations/observation-1a027ea1-18c2-401e-9884-305e8b72cc0f-11/,Carpobrotus edulis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9086_low.JPG,,TRUE, +N1,58643,sortie-484e45c7-581a-4437-96ce-9849867f2f21,https://biolit.fr/sorties/sortie-484e45c7-581a-4437-96ce-9849867f2f21/,çg,,05/06/2022,10.0000000,11.0:15,43.460494000000,-1.57811300000,,Plage d'Ilbarritz,31652,observation-484e45c7-581a-4437-96ce-9849867f2f21,https://biolit.fr/observations/observation-484e45c7-581a-4437-96ce-9849867f2f21/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_9036_low-scaled.jpg,,TRUE, +N1,58643,sortie-484e45c7-581a-4437-96ce-9849867f2f21,https://biolit.fr/sorties/sortie-484e45c7-581a-4437-96ce-9849867f2f21/,çg,,05/06/2022,10.0000000,11.0:15,43.460494000000,-1.57811300000,,Plage d'Ilbarritz,31654,observation-484e45c7-581a-4437-96ce-9849867f2f21-2,https://biolit.fr/observations/observation-484e45c7-581a-4437-96ce-9849867f2f21-2/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9037_low.JPG,,TRUE, +N1,58643,sortie-484e45c7-581a-4437-96ce-9849867f2f21,https://biolit.fr/sorties/sortie-484e45c7-581a-4437-96ce-9849867f2f21/,çg,,05/06/2022,10.0000000,11.0:15,43.460494000000,-1.57811300000,,Plage d'Ilbarritz,31656,observation-484e45c7-581a-4437-96ce-9849867f2f21-3,https://biolit.fr/observations/observation-484e45c7-581a-4437-96ce-9849867f2f21-3/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9038_low.JPG,,TRUE, +N1,58643,sortie-484e45c7-581a-4437-96ce-9849867f2f21,https://biolit.fr/sorties/sortie-484e45c7-581a-4437-96ce-9849867f2f21/,çg,,05/06/2022,10.0000000,11.0:15,43.460494000000,-1.57811300000,,Plage d'Ilbarritz,31658,observation-484e45c7-581a-4437-96ce-9849867f2f21-4,https://biolit.fr/observations/observation-484e45c7-581a-4437-96ce-9849867f2f21-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9039_low.JPG,,FALSE, +N1,58643,sortie-484e45c7-581a-4437-96ce-9849867f2f21,https://biolit.fr/sorties/sortie-484e45c7-581a-4437-96ce-9849867f2f21/,çg,,05/06/2022,10.0000000,11.0:15,43.460494000000,-1.57811300000,,Plage d'Ilbarritz,31660,observation-484e45c7-581a-4437-96ce-9849867f2f21-5,https://biolit.fr/observations/observation-484e45c7-581a-4437-96ce-9849867f2f21-5/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9053_low-rotated.jpg,,TRUE, +N1,58643,sortie-484e45c7-581a-4437-96ce-9849867f2f21,https://biolit.fr/sorties/sortie-484e45c7-581a-4437-96ce-9849867f2f21/,çg,,05/06/2022,10.0000000,11.0:15,43.460494000000,-1.57811300000,,Plage d'Ilbarritz,31662,observation-484e45c7-581a-4437-96ce-9849867f2f21-6,https://biolit.fr/observations/observation-484e45c7-581a-4437-96ce-9849867f2f21-6/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9054_low-rotated.jpg,,TRUE, +N1,58643,sortie-484e45c7-581a-4437-96ce-9849867f2f21,https://biolit.fr/sorties/sortie-484e45c7-581a-4437-96ce-9849867f2f21/,çg,,05/06/2022,10.0000000,11.0:15,43.460494000000,-1.57811300000,,Plage d'Ilbarritz,31664,observation-484e45c7-581a-4437-96ce-9849867f2f21-7,https://biolit.fr/observations/observation-484e45c7-581a-4437-96ce-9849867f2f21-7/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_9057_low.JPG,,TRUE, +N1,58643,sortie-484e45c7-581a-4437-96ce-9849867f2f21,https://biolit.fr/sorties/sortie-484e45c7-581a-4437-96ce-9849867f2f21/,çg,,05/06/2022,10.0000000,11.0:15,43.460494000000,-1.57811300000,,Plage d'Ilbarritz,31666,observation-484e45c7-581a-4437-96ce-9849867f2f21-8,https://biolit.fr/observations/observation-484e45c7-581a-4437-96ce-9849867f2f21-8/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_9058_low.JPG,,TRUE, +N1,58643,sortie-484e45c7-581a-4437-96ce-9849867f2f21,https://biolit.fr/sorties/sortie-484e45c7-581a-4437-96ce-9849867f2f21/,çg,,05/06/2022,10.0000000,11.0:15,43.460494000000,-1.57811300000,,Plage d'Ilbarritz,31668,observation-484e45c7-581a-4437-96ce-9849867f2f21-9,https://biolit.fr/observations/observation-484e45c7-581a-4437-96ce-9849867f2f21-9/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9059_low-rotated.jpg,,TRUE, +N1,58643,sortie-484e45c7-581a-4437-96ce-9849867f2f21,https://biolit.fr/sorties/sortie-484e45c7-581a-4437-96ce-9849867f2f21/,çg,,05/06/2022,10.0000000,11.0:15,43.460494000000,-1.57811300000,,Plage d'Ilbarritz,31670,observation-484e45c7-581a-4437-96ce-9849867f2f21-10,https://biolit.fr/observations/observation-484e45c7-581a-4437-96ce-9849867f2f21-10/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9060_low-rotated.jpg,,TRUE, +N1,58643,sortie-484e45c7-581a-4437-96ce-9849867f2f21,https://biolit.fr/sorties/sortie-484e45c7-581a-4437-96ce-9849867f2f21/,çg,,05/06/2022,10.0000000,11.0:15,43.460494000000,-1.57811300000,,Plage d'Ilbarritz,31672,observation-484e45c7-581a-4437-96ce-9849867f2f21-11,https://biolit.fr/observations/observation-484e45c7-581a-4437-96ce-9849867f2f21-11/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_9062_low.JPG,,TRUE, +N1,58643,sortie-484e45c7-581a-4437-96ce-9849867f2f21,https://biolit.fr/sorties/sortie-484e45c7-581a-4437-96ce-9849867f2f21/,çg,,05/06/2022,10.0000000,11.0:15,43.460494000000,-1.57811300000,,Plage d'Ilbarritz,31674,observation-484e45c7-581a-4437-96ce-9849867f2f21-12,https://biolit.fr/observations/observation-484e45c7-581a-4437-96ce-9849867f2f21-12/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9070_low-rotated.jpg,,TRUE, +N1,58644,sortie-3e5681f3-bb2d-4de0-88f7-792499eae5b3,https://biolit.fr/sorties/sortie-3e5681f3-bb2d-4de0-88f7-792499eae5b3/,Phil,,4/27/2022 0:00,15.0000000,15.0000000,47.864563000000,-4.084796000000,,Bénodet - Finistère,31676,observation-3e5681f3-bb2d-4de0-88f7-792499eae5b3,https://biolit.fr/observations/observation-3e5681f3-bb2d-4de0-88f7-792499eae5b3/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/20220427_153202.jpg,,TRUE, +N1,58644,sortie-3e5681f3-bb2d-4de0-88f7-792499eae5b3,https://biolit.fr/sorties/sortie-3e5681f3-bb2d-4de0-88f7-792499eae5b3/,Phil,,4/27/2022 0:00,15.0000000,15.0000000,47.864563000000,-4.084796000000,,Bénodet - Finistère,31678,observation-3e5681f3-bb2d-4de0-88f7-792499eae5b3-2,https://biolit.fr/observations/observation-3e5681f3-bb2d-4de0-88f7-792499eae5b3-2/,Spergularia rupicola,Spergulaire des rochers,,https://biolit.fr/wp-content/uploads/2023/07/20220427_153156.jpg,,TRUE, +N1,58644,sortie-3e5681f3-bb2d-4de0-88f7-792499eae5b3,https://biolit.fr/sorties/sortie-3e5681f3-bb2d-4de0-88f7-792499eae5b3/,Phil,,4/27/2022 0:00,15.0000000,15.0000000,47.864563000000,-4.084796000000,,Bénodet - Finistère,31680,observation-3e5681f3-bb2d-4de0-88f7-792499eae5b3-3,https://biolit.fr/observations/observation-3e5681f3-bb2d-4de0-88f7-792499eae5b3-3/,Salicornia spp.,Salicorne,,https://biolit.fr/wp-content/uploads/2023/07/20220427_153053.jpg,,TRUE, +N1,58644,sortie-3e5681f3-bb2d-4de0-88f7-792499eae5b3,https://biolit.fr/sorties/sortie-3e5681f3-bb2d-4de0-88f7-792499eae5b3/,Phil,,4/27/2022 0:00,15.0000000,15.0000000,47.864563000000,-4.084796000000,,Bénodet - Finistère,31682,observation-3e5681f3-bb2d-4de0-88f7-792499eae5b3-4,https://biolit.fr/observations/observation-3e5681f3-bb2d-4de0-88f7-792499eae5b3-4/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/20220427_151353.jpg,,TRUE, +N1,58644,sortie-3e5681f3-bb2d-4de0-88f7-792499eae5b3,https://biolit.fr/sorties/sortie-3e5681f3-bb2d-4de0-88f7-792499eae5b3/,Phil,,4/27/2022 0:00,15.0000000,15.0000000,47.864563000000,-4.084796000000,,Bénodet - Finistère,31684,observation-3e5681f3-bb2d-4de0-88f7-792499eae5b3-5,https://biolit.fr/observations/observation-3e5681f3-bb2d-4de0-88f7-792499eae5b3-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220427_151244.jpg,,FALSE, +N1,58645,sortie-ce6eb2ad-df1c-4f63-9510-ff85d5f9b255,https://biolit.fr/sorties/sortie-ce6eb2ad-df1c-4f63-9510-ff85d5f9b255/,Phil,,08/08/2021,15.0:25,15.0000000,47.795880000000,-4.274122000000,,Léchiagat - Finistère,31686,observation-ce6eb2ad-df1c-4f63-9510-ff85d5f9b255,https://biolit.fr/observations/observation-ce6eb2ad-df1c-4f63-9510-ff85d5f9b255/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/2023/07/20210808_152646.jpg,,TRUE, +N1,58645,sortie-ce6eb2ad-df1c-4f63-9510-ff85d5f9b255,https://biolit.fr/sorties/sortie-ce6eb2ad-df1c-4f63-9510-ff85d5f9b255/,Phil,,08/08/2021,15.0:25,15.0000000,47.795880000000,-4.274122000000,,Léchiagat - Finistère,31690,observation-ce6eb2ad-df1c-4f63-9510-ff85d5f9b255-3,https://biolit.fr/observations/observation-ce6eb2ad-df1c-4f63-9510-ff85d5f9b255-3/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20210808_152426.jpg,,TRUE, +N1,58646,sortie-44fbf52e-621d-471e-bda6-1776d60a1b90,https://biolit.fr/sorties/sortie-44fbf52e-621d-471e-bda6-1776d60a1b90/,Phil,,05/01/2022,15.0:45,15.0000000,47.828727000000,-4.353516000000,,Penmarc'h - Finistère,31694,observation-44fbf52e-621d-471e-bda6-1776d60a1b90-2,https://biolit.fr/observations/observation-44fbf52e-621d-471e-bda6-1776d60a1b90-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220501_154903.jpg | https://biolit.fr/wp-content/uploads/2022/05/20220501_154845.jpg,,FALSE, +N1,58647,sortie-57b3b749-c98a-4690-b4d6-395cd946de91,https://biolit.fr/sorties/sortie-57b3b749-c98a-4690-b4d6-395cd946de91/,Dorian ROULET,,05/03/2022,9.0:45,10.0:45,43.239968000000,5.36246500000,Planète Mer,Bain des Dames,31696,observation-57b3b749-c98a-4690-b4d6-395cd946de91,https://biolit.fr/observations/observation-57b3b749-c98a-4690-b4d6-395cd946de91/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220503105620-scaled.jpg,,TRUE, +N1,58647,sortie-57b3b749-c98a-4690-b4d6-395cd946de91,https://biolit.fr/sorties/sortie-57b3b749-c98a-4690-b4d6-395cd946de91/,Dorian ROULET,,05/03/2022,9.0:45,10.0:45,43.239968000000,5.36246500000,Planète Mer,Bain des Dames,31698,observation-57b3b749-c98a-4690-b4d6-395cd946de91-2,https://biolit.fr/observations/observation-57b3b749-c98a-4690-b4d6-395cd946de91-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220503100248-scaled.jpg,,FALSE, +N1,58647,sortie-57b3b749-c98a-4690-b4d6-395cd946de91,https://biolit.fr/sorties/sortie-57b3b749-c98a-4690-b4d6-395cd946de91/,Dorian ROULET,,05/03/2022,9.0:45,10.0:45,43.239968000000,5.36246500000,Planète Mer,Bain des Dames,31700,observation-57b3b749-c98a-4690-b4d6-395cd946de91-3,https://biolit.fr/observations/observation-57b3b749-c98a-4690-b4d6-395cd946de91-3/,Tritia incrassata,Nasse épaisse,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220503100306-scaled.jpg,,TRUE, +N1,58648,sortie-7768a4be-12ff-41d2-90f5-8164e19fae0d,https://biolit.fr/sorties/sortie-7768a4be-12ff-41d2-90f5-8164e19fae0d/,Phil,,01/05/2022,15.0000000,15.000005,47.89609400000,-3.974654000000,,La Forêt-Fouesnant - Finistère,31702,observation-7768a4be-12ff-41d2-90f5-8164e19fae0d,https://biolit.fr/observations/observation-7768a4be-12ff-41d2-90f5-8164e19fae0d/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20220105_150151.jpg,,TRUE, +N1,58648,sortie-7768a4be-12ff-41d2-90f5-8164e19fae0d,https://biolit.fr/sorties/sortie-7768a4be-12ff-41d2-90f5-8164e19fae0d/,Phil,,01/05/2022,15.0000000,15.000005,47.89609400000,-3.974654000000,,La Forêt-Fouesnant - Finistère,31704,observation-7768a4be-12ff-41d2-90f5-8164e19fae0d-2,https://biolit.fr/observations/observation-7768a4be-12ff-41d2-90f5-8164e19fae0d-2/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20220105_150222.jpg,,TRUE, +N1,58648,sortie-7768a4be-12ff-41d2-90f5-8164e19fae0d,https://biolit.fr/sorties/sortie-7768a4be-12ff-41d2-90f5-8164e19fae0d/,Phil,,01/05/2022,15.0000000,15.000005,47.89609400000,-3.974654000000,,La Forêt-Fouesnant - Finistère,31706,observation-7768a4be-12ff-41d2-90f5-8164e19fae0d-3,https://biolit.fr/observations/observation-7768a4be-12ff-41d2-90f5-8164e19fae0d-3/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20220105_150212.jpg,,TRUE, +N1,58649,sortie-cc167af4-ebc9-411a-8b52-47b254966772,https://biolit.fr/sorties/sortie-cc167af4-ebc9-411a-8b52-47b254966772/,Phil,,4/27/2022 0:00,15.0000000,15.0000000,47.86454900000,-4.08492500000,,Bénodet - Finistère,31708,observation-cc167af4-ebc9-411a-8b52-47b254966772,https://biolit.fr/observations/observation-cc167af4-ebc9-411a-8b52-47b254966772/,Salicornia spp.,Salicorne,,https://biolit.fr/wp-content/uploads/2023/07/20220427_151223.jpg,,TRUE, +N1,58649,sortie-cc167af4-ebc9-411a-8b52-47b254966772,https://biolit.fr/sorties/sortie-cc167af4-ebc9-411a-8b52-47b254966772/,Phil,,4/27/2022 0:00,15.0000000,15.0000000,47.86454900000,-4.08492500000,,Bénodet - Finistère,31710,observation-cc167af4-ebc9-411a-8b52-47b254966772-2,https://biolit.fr/observations/observation-cc167af4-ebc9-411a-8b52-47b254966772-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20220427_151127.jpg,,TRUE, +N1,58650,sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5,https://biolit.fr/sorties/sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5/,Natan Torres Rejas,,4/16/2022 0:00,9.0000000,12.0000000,43.380697000000,-1.755711000000,,Hendaye,31716,observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-3,https://biolit.fr/observations/observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Quadrat especes - Caulacanthus - Enteromorpha - Ulva - Codium - Natan Torres Rejas.jpg,,FALSE, +N1,58650,sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5,https://biolit.fr/sorties/sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5/,Natan Torres Rejas,,4/16/2022 0:00,9.0000000,12.0000000,43.380697000000,-1.755711000000,,Hendaye,31718,observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-4,https://biolit.fr/observations/observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Corallina spp - Natan Torres Rejas-scaled.jpg,,FALSE, +N1,58650,sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5,https://biolit.fr/sorties/sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5/,Natan Torres Rejas,,4/16/2022 0:00,9.0000000,12.0000000,43.380697000000,-1.755711000000,,Hendaye,31720,observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-5,https://biolit.fr/observations/observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-5/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/Ulva lactuca - Natan Torres Rejas-scaled.jpg,,TRUE, +N1,58650,sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5,https://biolit.fr/sorties/sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5/,Natan Torres Rejas,,4/16/2022 0:00,9.0000000,12.0000000,43.380697000000,-1.755711000000,,Hendaye,31722,observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-6,https://biolit.fr/observations/observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Enteromorpha spp - Natan Torres Rejas-scaled.jpg,,FALSE, +N1,58650,sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5,https://biolit.fr/sorties/sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5/,Natan Torres Rejas,,4/16/2022 0:00,9.0000000,12.0000000,43.380697000000,-1.755711000000,,Hendaye,31724,observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-7,https://biolit.fr/observations/observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-7/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/cloporte - Natan Torres Rejas-scaled.jpg,,TRUE, +N1,58650,sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5,https://biolit.fr/sorties/sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5/,Natan Torres Rejas,,4/16/2022 0:00,9.0000000,12.0000000,43.380697000000,-1.755711000000,,Hendaye,31726,observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-8,https://biolit.fr/observations/observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-8/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri et Eponge - Natan Torres Rejas-scaled.jpg,,TRUE, +N1,58650,sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5,https://biolit.fr/sorties/sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5/,Natan Torres Rejas,,4/16/2022 0:00,9.0000000,12.0000000,43.380697000000,-1.755711000000,,Hendaye,31728,observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-9,https://biolit.fr/observations/observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-9/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Calyptraea chinensis2 - Natan Torres Rejas-scaled.jpg,,TRUE, +N1,58650,sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5,https://biolit.fr/sorties/sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5/,Natan Torres Rejas,,4/16/2022 0:00,9.0000000,12.0000000,43.380697000000,-1.755711000000,,Hendaye,31730,observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-10,https://biolit.fr/observations/observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-10/,Thysanozoon brocchii,Ver plat à papilles,,https://biolit.fr/wp-content/uploads/2023/07/Limace des mers - Natan Torres Rejas-scaled.jpg,,FALSE, +N1,58650,sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5,https://biolit.fr/sorties/sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5/,Natan Torres Rejas,,4/16/2022 0:00,9.0000000,12.0000000,43.380697000000,-1.755711000000,,Hendaye,31732,observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-11,https://biolit.fr/observations/observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-11/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Calyptraea chinensis - Natan Torres Rejas-scaled.jpg,,TRUE, +N1,58650,sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5,https://biolit.fr/sorties/sortie-09003367-a9b8-4f49-b32a-00de3c87b9c5/,Natan Torres Rejas,,4/16/2022 0:00,9.0000000,12.0000000,43.380697000000,-1.755711000000,,Hendaye,31734,observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-12,https://biolit.fr/observations/observation-09003367-a9b8-4f49-b32a-00de3c87b9c5-12/,Holothuria (Holothuria) tubulosa,Holothurie tubuleuse,,https://biolit.fr/wp-content/uploads/2023/07/Holothuroidea - Concombre de mer - Natan Torres Rejas-scaled.jpg,,TRUE, +N1,58651,sortie-5728830e-e9e0-4e3d-867a-83def3ac476a,https://biolit.fr/sorties/sortie-5728830e-e9e0-4e3d-867a-83def3ac476a/,Dorian ROULET,,4/21/2022 0:00,11.0000000,13.0000000,43.255842000000,5.374980000000,Planète Mer,Escale Borély,31736,observation-5728830e-e9e0-4e3d-867a-83def3ac476a,https://biolit.fr/observations/observation-5728830e-e9e0-4e3d-867a-83def3ac476a/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220421100318-scaled.jpg,,FALSE, +N1,58651,sortie-5728830e-e9e0-4e3d-867a-83def3ac476a,https://biolit.fr/sorties/sortie-5728830e-e9e0-4e3d-867a-83def3ac476a/,Dorian ROULET,,4/21/2022 0:00,11.0000000,13.0000000,43.255842000000,5.374980000000,Planète Mer,Escale Borély,31738,observation-5728830e-e9e0-4e3d-867a-83def3ac476a-2,https://biolit.fr/observations/observation-5728830e-e9e0-4e3d-867a-83def3ac476a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220421100230-scaled.jpg,,FALSE, +N1,58652,sortie-7968cc98-7a88-441e-8eab-8734b12fe5c1,https://biolit.fr/sorties/sortie-7968cc98-7a88-441e-8eab-8734b12fe5c1/,Marine Nature,,04/10/2022,16.0:35,16.0:35,43.181618000000,6.640516000000,Naturoscope (Antenne Var),"Plage de l'Escalet, Ramatuelle",31740,observation-7968cc98-7a88-441e-8eab-8734b12fe5c1,https://biolit.fr/observations/observation-7968cc98-7a88-441e-8eab-8734b12fe5c1/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-1334-scaled.jpg,,FALSE, +N1,58653,sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16,https://biolit.fr/sorties/sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16/,Marine Nature,,04/10/2022,12.0:45,13.0000000,43.174937000000,6.640682000000,Naturoscope (Antenne Var),"Plage des Douanes, Ramatuelle",31742,observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16,https://biolit.fr/observations/observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-1317-scaled.jpg,,FALSE, +N1,58653,sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16,https://biolit.fr/sorties/sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16/,Marine Nature,,04/10/2022,12.0:45,13.0000000,43.174937000000,6.640682000000,Naturoscope (Antenne Var),"Plage des Douanes, Ramatuelle",31744,observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-2,https://biolit.fr/observations/observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-1318-scaled.jpg,,FALSE, +N1,58653,sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16,https://biolit.fr/sorties/sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16/,Marine Nature,,04/10/2022,12.0:45,13.0000000,43.174937000000,6.640682000000,Naturoscope (Antenne Var),"Plage des Douanes, Ramatuelle",31746,observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-3,https://biolit.fr/observations/observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-1319-scaled.jpg,,FALSE, +N1,58653,sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16,https://biolit.fr/sorties/sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16/,Marine Nature,,04/10/2022,12.0:45,13.0000000,43.174937000000,6.640682000000,Naturoscope (Antenne Var),"Plage des Douanes, Ramatuelle",31748,observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-4,https://biolit.fr/observations/observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-1320-scaled.jpg,,FALSE, +N1,58653,sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16,https://biolit.fr/sorties/sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16/,Marine Nature,,04/10/2022,12.0:45,13.0000000,43.174937000000,6.640682000000,Naturoscope (Antenne Var),"Plage des Douanes, Ramatuelle",31750,observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-5,https://biolit.fr/observations/observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-1322-scaled.jpg,,FALSE, +N1,58653,sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16,https://biolit.fr/sorties/sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16/,Marine Nature,,04/10/2022,12.0:45,13.0000000,43.174937000000,6.640682000000,Naturoscope (Antenne Var),"Plage des Douanes, Ramatuelle",31752,observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-6,https://biolit.fr/observations/observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-1323-scaled.jpg,,FALSE, +N1,58653,sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16,https://biolit.fr/sorties/sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16/,Marine Nature,,04/10/2022,12.0:45,13.0000000,43.174937000000,6.640682000000,Naturoscope (Antenne Var),"Plage des Douanes, Ramatuelle",31754,observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-7,https://biolit.fr/observations/observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-1324-scaled.jpg,,FALSE, +N1,58653,sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16,https://biolit.fr/sorties/sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16/,Marine Nature,,04/10/2022,12.0:45,13.0000000,43.174937000000,6.640682000000,Naturoscope (Antenne Var),"Plage des Douanes, Ramatuelle",31756,observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-8,https://biolit.fr/observations/observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-1325-scaled.jpg,,FALSE, +N1,58653,sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16,https://biolit.fr/sorties/sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16/,Marine Nature,,04/10/2022,12.0:45,13.0000000,43.174937000000,6.640682000000,Naturoscope (Antenne Var),"Plage des Douanes, Ramatuelle",31758,observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-9,https://biolit.fr/observations/observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-1326-scaled.jpg,,FALSE, +N1,58653,sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16,https://biolit.fr/sorties/sortie-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16/,Marine Nature,,04/10/2022,12.0:45,13.0000000,43.174937000000,6.640682000000,Naturoscope (Antenne Var),"Plage des Douanes, Ramatuelle",31760,observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-10,https://biolit.fr/observations/observation-23f8dfa4-acf2-4ce5-8d03-b0623a6d5b16-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-1328-scaled.jpg,,FALSE, +N1,58654,sortie-f0b53420-dadc-420a-a192-b1fedf7373ed,https://biolit.fr/sorties/sortie-f0b53420-dadc-420a-a192-b1fedf7373ed/,Maxime Le Hen-Douchet,,04/10/2022,14.0:15,16.0000000,51.072012000000,2.487886000000,,plage de zuydcoote,31762,observation-f0b53420-dadc-420a-a192-b1fedf7373ed,https://biolit.fr/observations/observation-f0b53420-dadc-420a-a192-b1fedf7373ed/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220411_091136-scaled.jpg,,FALSE, +N1,58654,sortie-f0b53420-dadc-420a-a192-b1fedf7373ed,https://biolit.fr/sorties/sortie-f0b53420-dadc-420a-a192-b1fedf7373ed/,Maxime Le Hen-Douchet,,04/10/2022,14.0:15,16.0000000,51.072012000000,2.487886000000,,plage de zuydcoote,31764,observation-f0b53420-dadc-420a-a192-b1fedf7373ed-2,https://biolit.fr/observations/observation-f0b53420-dadc-420a-a192-b1fedf7373ed-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220411_091101-scaled.jpg,,FALSE, +N1,58654,sortie-f0b53420-dadc-420a-a192-b1fedf7373ed,https://biolit.fr/sorties/sortie-f0b53420-dadc-420a-a192-b1fedf7373ed/,Maxime Le Hen-Douchet,,04/10/2022,14.0:15,16.0000000,51.072012000000,2.487886000000,,plage de zuydcoote,31766,observation-f0b53420-dadc-420a-a192-b1fedf7373ed-3,https://biolit.fr/observations/observation-f0b53420-dadc-420a-a192-b1fedf7373ed-3/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220411_091037-scaled.jpg,,TRUE, +N1,58654,sortie-f0b53420-dadc-420a-a192-b1fedf7373ed,https://biolit.fr/sorties/sortie-f0b53420-dadc-420a-a192-b1fedf7373ed/,Maxime Le Hen-Douchet,,04/10/2022,14.0:15,16.0000000,51.072012000000,2.487886000000,,plage de zuydcoote,31768,observation-f0b53420-dadc-420a-a192-b1fedf7373ed-4,https://biolit.fr/observations/observation-f0b53420-dadc-420a-a192-b1fedf7373ed-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220411_090858-scaled.jpg,,FALSE, +N1,58654,sortie-f0b53420-dadc-420a-a192-b1fedf7373ed,https://biolit.fr/sorties/sortie-f0b53420-dadc-420a-a192-b1fedf7373ed/,Maxime Le Hen-Douchet,,04/10/2022,14.0:15,16.0000000,51.072012000000,2.487886000000,,plage de zuydcoote,31770,observation-f0b53420-dadc-420a-a192-b1fedf7373ed-5,https://biolit.fr/observations/observation-f0b53420-dadc-420a-a192-b1fedf7373ed-5/,Petricolaria pholadiformis,Fausse pholade,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220411_090637-scaled.jpg,,TRUE, +N1,58654,sortie-f0b53420-dadc-420a-a192-b1fedf7373ed,https://biolit.fr/sorties/sortie-f0b53420-dadc-420a-a192-b1fedf7373ed/,Maxime Le Hen-Douchet,,04/10/2022,14.0:15,16.0000000,51.072012000000,2.487886000000,,plage de zuydcoote,31772,observation-f0b53420-dadc-420a-a192-b1fedf7373ed-6,https://biolit.fr/observations/observation-f0b53420-dadc-420a-a192-b1fedf7373ed-6/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220411_085915-scaled.jpg,,TRUE, +N1,58654,sortie-f0b53420-dadc-420a-a192-b1fedf7373ed,https://biolit.fr/sorties/sortie-f0b53420-dadc-420a-a192-b1fedf7373ed/,Maxime Le Hen-Douchet,,04/10/2022,14.0:15,16.0000000,51.072012000000,2.487886000000,,plage de zuydcoote,31774,observation-f0b53420-dadc-420a-a192-b1fedf7373ed-7,https://biolit.fr/observations/observation-f0b53420-dadc-420a-a192-b1fedf7373ed-7/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220411_090753-scaled.jpg,,TRUE, +N1,58654,sortie-f0b53420-dadc-420a-a192-b1fedf7373ed,https://biolit.fr/sorties/sortie-f0b53420-dadc-420a-a192-b1fedf7373ed/,Maxime Le Hen-Douchet,,04/10/2022,14.0:15,16.0000000,51.072012000000,2.487886000000,,plage de zuydcoote,31776,observation-f0b53420-dadc-420a-a192-b1fedf7373ed-8,https://biolit.fr/observations/observation-f0b53420-dadc-420a-a192-b1fedf7373ed-8/,Epitonium clathrus,Scalaire,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220411_090731-scaled.jpg,,TRUE, +N1,58654,sortie-f0b53420-dadc-420a-a192-b1fedf7373ed,https://biolit.fr/sorties/sortie-f0b53420-dadc-420a-a192-b1fedf7373ed/,Maxime Le Hen-Douchet,,04/10/2022,14.0:15,16.0000000,51.072012000000,2.487886000000,,plage de zuydcoote,31778,observation-f0b53420-dadc-420a-a192-b1fedf7373ed-9,https://biolit.fr/observations/observation-f0b53420-dadc-420a-a192-b1fedf7373ed-9/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220411_085945-scaled.jpg,,TRUE, +N1,58654,sortie-f0b53420-dadc-420a-a192-b1fedf7373ed,https://biolit.fr/sorties/sortie-f0b53420-dadc-420a-a192-b1fedf7373ed/,Maxime Le Hen-Douchet,,04/10/2022,14.0:15,16.0000000,51.072012000000,2.487886000000,,plage de zuydcoote,31780,observation-f0b53420-dadc-420a-a192-b1fedf7373ed-10,https://biolit.fr/observations/observation-f0b53420-dadc-420a-a192-b1fedf7373ed-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220411_085335-scaled.jpg,,FALSE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31782,observation-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc/,,,,https://biolit.fr/wp-content/uploads/2023/07/Alentia gelatinosa_2.PNG,,FALSE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31784,observation-b169d806-f02d-4994-afd9-2c7694be38fc-2,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anomia viridis.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31786,observation-b169d806-f02d-4994-afd9-2c7694be38fc-3,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-3/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/Arenaria interpres_4.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31788,observation-b169d806-f02d-4994-afd9-2c7694be38fc-4,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-4/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_19.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31790,observation-b169d806-f02d-4994-afd9-2c7694be38fc-5,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-5/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_9.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31792,observation-b169d806-f02d-4994-afd9-2c7694be38fc-6,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-6/,Botrylloides spp. (leachii violaceus diegensis),Botrylles,,https://biolit.fr/wp-content/uploads/2023/07/Botrylloides sp.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31794,observation-b169d806-f02d-4994-afd9-2c7694be38fc-7,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-7/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_21.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31796,observation-b169d806-f02d-4994-afd9-2c7694be38fc-8,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-8/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_19.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31798,observation-b169d806-f02d-4994-afd9-2c7694be38fc-9,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-9/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_8.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31800,observation-b169d806-f02d-4994-afd9-2c7694be38fc-10,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-10/,Ciona intestinalis,Cione intestinale,,https://biolit.fr/wp-content/uploads/2023/07/Ciona intestinalis.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31802,observation-b169d806-f02d-4994-afd9-2c7694be38fc-11,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ciona sp.PNG,,FALSE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31804,observation-b169d806-f02d-4994-afd9-2c7694be38fc-12,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-12/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Crassostrea gigas_3.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31806,observation-b169d806-f02d-4994-afd9-2c7694be38fc-13,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-13/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/crepidula fornicata_3.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31807,observation-b169d806-f02d-4994-afd9-2c7694be38fc-14,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_30.PNG,,FALSE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31809,observation-b169d806-f02d-4994-afd9-2c7694be38fc-15,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Heteranomia squamula_3.PNG,,FALSE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31811,observation-b169d806-f02d-4994-afd9-2c7694be38fc-16,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-16/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_15.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31813,observation-b169d806-f02d-4994-afd9-2c7694be38fc-17,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-17/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_10.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31815,observation-b169d806-f02d-4994-afd9-2c7694be38fc-18,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-18/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_8.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31817,observation-b169d806-f02d-4994-afd9-2c7694be38fc-19,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/Macropoda sp_1.PNG,,FALSE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31819,observation-b169d806-f02d-4994-afd9-2c7694be38fc-20,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Metridium sp_1.PNG,,FALSE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31821,observation-b169d806-f02d-4994-afd9-2c7694be38fc-21,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-21/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Mimachalmys varia.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31823,observation-b169d806-f02d-4994-afd9-2c7694be38fc-22,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-22/,Modiolus barbatus,Modiole barbue,,https://biolit.fr/wp-content/uploads/2023/07/Modiolus barbatus_6.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31825,observation-b169d806-f02d-4994-afd9-2c7694be38fc-23,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-23/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/Ophiothrix fragilis_2.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31827,observation-b169d806-f02d-4994-afd9-2c7694be38fc-24,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-24/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ostreis edulis.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31829,observation-b169d806-f02d-4994-afd9-2c7694be38fc-25,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-25/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/Pisidia longicornis_9.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31831,observation-b169d806-f02d-4994-afd9-2c7694be38fc-26,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-26/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_26.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31833,observation-b169d806-f02d-4994-afd9-2c7694be38fc-27,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-27/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes philippinarum_1.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31835,observation-b169d806-f02d-4994-afd9-2c7694be38fc-28,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-28/,Spirobranchus triqueter / lamarcki,Serpule triangulaire,,https://biolit.fr/wp-content/uploads/2023/07/Spirobranchus triqueter_0.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31837,observation-b169d806-f02d-4994-afd9-2c7694be38fc-29,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-29/,Styela clava,Ascidie japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Stelya clava.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31839,observation-b169d806-f02d-4994-afd9-2c7694be38fc-30,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-30/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Steromphala umbilicalis_1.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31841,observation-b169d806-f02d-4994-afd9-2c7694be38fc-31,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-31/,Venerupis corrugata,Palourde-poulette,,https://biolit.fr/wp-content/uploads/2023/07/Venerupis aurea_2.PNG,,TRUE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31843,observation-b169d806-f02d-4994-afd9-2c7694be38fc-32,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/Vers tubicoles sp.PNG,,FALSE, +N1,58655,sortie-b169d806-f02d-4994-afd9-2c7694be38fc,https://biolit.fr/sorties/sortie-b169d806-f02d-4994-afd9-2c7694be38fc/,Roman,,04/02/2022,11.0000000,12.0000000,47.704950000000,-3.346105000000,,Port-Louis,31845,observation-b169d806-f02d-4994-afd9-2c7694be38fc-33,https://biolit.fr/observations/observation-b169d806-f02d-4994-afd9-2c7694be38fc-33/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes grainée_1.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31934,observation-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167/,,,,https://biolit.fr/wp-content/uploads/2023/07/Alentia gelatinosa.PNG,,FALSE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31936,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-2,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue sp-scaled.jpg,,FALSE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31937,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-3,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_21.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31939,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-4,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-4/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/Anthopleura balii_8.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31941,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-5,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie sp_3.PNG,,FALSE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31943,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-6,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-6/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_16.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31945,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-7,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-7/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_23.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31947,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-8,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-8/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_13.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31949,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-9,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-9/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_18.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31951,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-10,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-10/,Ciona intestinalis,Cione intestinale,,https://biolit.fr/wp-content/uploads/2023/07/Ciona intestinalis pe.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31953,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-11,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-11/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/Colpomenia peregrina_1.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31955,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-12,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-12/,Dysidea fragilis,Eponge mie de pain mouillée,,https://biolit.fr/wp-content/uploads/2023/07/Dysidea fragilis_2.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31957,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-13,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-13/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/Fucus serratus_0.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31959,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-14,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-14/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Glycymeris glycymeris_2.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31961,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-15,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-15/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/Himantalia elongata cupules.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31963,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-16,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-16/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/Himantalia elongata.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31965,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-17,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/hydraire sp.PNG,,FALSE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31967,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-18,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/Idothea sp.PNG,,FALSE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31969,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-19,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/Laminaria saccharina.PNG,,FALSE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31971,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-20,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Laminaria spp.PNG,,FALSE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31973,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-21,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-21/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/Larus argentatus.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31975,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-22,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-22/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_14.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31977,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-23,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-23/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_7.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31979,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-24,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-24/,Lomentaria articulata,Algue saucisson,,https://biolit.fr/wp-content/uploads/2023/07/Lomentaria articulata.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31981,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-25,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-25/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_23.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31983,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-26,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-26/,Mastocarpus stellatus,Gigartine,,https://biolit.fr/wp-content/uploads/2023/07/Mastocarpus stellatus.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31985,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-27,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mix d'éponge.PNG,,FALSE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31987,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-28,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-28/,Modiolus barbatus,Modiole barbue,,https://biolit.fr/wp-content/uploads/2023/07/Modiolus barbatus_3.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31989,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-29,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-29/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_15.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31991,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-30,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-30/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/Ophiothrix fragilis.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31993,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-31,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/Osmundea pinnatifida.PNG,,FALSE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31995,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-32,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-32/,Pilumnus hirtellus,Pilumne hirsute,,https://biolit.fr/wp-content/uploads/2023/07/Pilumnus hirtellus_7.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31997,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-33,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-33/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/Pisidia longicornis_6.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,31999,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-34,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-34/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_21.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,32001,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-35,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-35/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_23.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,32003,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-36,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-36/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Steromphala umbilicalis_0.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,32005,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-37,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-37/,Trivia arctica,Grain de café rose,,https://biolit.fr/wp-content/uploads/2023/07/Trivia arctica_3.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,32007,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-38,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-38/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ver sp_3.PNG,,FALSE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,32008,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-39,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-39/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Watersipora subatra_6.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,32010,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-40,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-40/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_18.PNG,,TRUE, +N1,58657,sortie-7e769e1e-6d2d-4516-a463-859bc05eb167,https://biolit.fr/sorties/sortie-7e769e1e-6d2d-4516-a463-859bc05eb167/,Roman,,3/19/2022 0:00,11.0000000,12.0000000,47.702841000000,-3.355332000000,,Port-Louis,32012,observation-7e769e1e-6d2d-4516-a463-859bc05eb167-41,https://biolit.fr/observations/observation-7e769e1e-6d2d-4516-a463-859bc05eb167-41/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_17.PNG,,TRUE, +N1,58658,sortie-2605423f-38ec-41ad-9e14-501452f5ebc1,https://biolit.fr/sorties/sortie-2605423f-38ec-41ad-9e14-501452f5ebc1/,Marine Nature,,2/27/2022 0:00,11.0000000,11.0000000,43.071629000000,5.906851000000,Naturoscope (Antenne Var),"Plage de Sainte-Asile, Saint-Mandrier-sur-Mer",,,,,,,,,, +N1,58659,sortie-1f36dd2b-b3a5-4bd0-aa4b-1fa475cb2d69,https://biolit.fr/sorties/sortie-1f36dd2b-b3a5-4bd0-aa4b-1fa475cb2d69/,Marine Nature,,2/27/2022 0:00,11.0000000,11.0000000,43.071629000000,5.906851000000,Naturoscope (Antenne Var),"Plage de Sainte-Asile, Saint-Mandrier-sur-Mer",32018,observation-1f36dd2b-b3a5-4bd0-aa4b-1fa475cb2d69,https://biolit.fr/observations/observation-1f36dd2b-b3a5-4bd0-aa4b-1fa475cb2d69/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-0438-scaled.jpg,,FALSE, +N1,58659,sortie-1f36dd2b-b3a5-4bd0-aa4b-1fa475cb2d69,https://biolit.fr/sorties/sortie-1f36dd2b-b3a5-4bd0-aa4b-1fa475cb2d69/,Marine Nature,,2/27/2022 0:00,11.0000000,11.0000000,43.071629000000,5.906851000000,Naturoscope (Antenne Var),"Plage de Sainte-Asile, Saint-Mandrier-sur-Mer",32019,observation-1f36dd2b-b3a5-4bd0-aa4b-1fa475cb2d69-2,https://biolit.fr/observations/observation-1f36dd2b-b3a5-4bd0-aa4b-1fa475cb2d69-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-0439-scaled.jpg,,FALSE, +N1,58660,sortie-0cc632a0-5d9c-4db9-96d1-d8ca7510758f,https://biolit.fr/sorties/sortie-0cc632a0-5d9c-4db9-96d1-d8ca7510758f/,Marine Nature,,3/27/2022 0:00,14.0:25,14.0000000,43.040383000000,6.094917000000,Naturoscope (Antenne Var),Presqu'ile de Giens,32022,observation-0cc632a0-5d9c-4db9-96d1-d8ca7510758f-2,https://biolit.fr/observations/observation-0cc632a0-5d9c-4db9-96d1-d8ca7510758f-2/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG-0966-scaled.jpg | https://biolit.fr/wp-content/uploads/2022/03/IMG-0964-scaled-1-scaled.jpg,,TRUE, +N1,58660,sortie-0cc632a0-5d9c-4db9-96d1-d8ca7510758f,https://biolit.fr/sorties/sortie-0cc632a0-5d9c-4db9-96d1-d8ca7510758f/,Marine Nature,,3/27/2022 0:00,14.0:25,14.0000000,43.040383000000,6.094917000000,Naturoscope (Antenne Var),Presqu'ile de Giens,32024,observation-0cc632a0-5d9c-4db9-96d1-d8ca7510758f-3,https://biolit.fr/observations/observation-0cc632a0-5d9c-4db9-96d1-d8ca7510758f-3/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG-0968-scaled.jpg,,TRUE, +N1,58660,sortie-0cc632a0-5d9c-4db9-96d1-d8ca7510758f,https://biolit.fr/sorties/sortie-0cc632a0-5d9c-4db9-96d1-d8ca7510758f/,Marine Nature,,3/27/2022 0:00,14.0:25,14.0000000,43.040383000000,6.094917000000,Naturoscope (Antenne Var),Presqu'ile de Giens,32026,observation-0cc632a0-5d9c-4db9-96d1-d8ca7510758f-4,https://biolit.fr/observations/observation-0cc632a0-5d9c-4db9-96d1-d8ca7510758f-4/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG-0969-scaled.jpg,,TRUE, +N1,58660,sortie-0cc632a0-5d9c-4db9-96d1-d8ca7510758f,https://biolit.fr/sorties/sortie-0cc632a0-5d9c-4db9-96d1-d8ca7510758f/,Marine Nature,,3/27/2022 0:00,14.0:25,14.0000000,43.040383000000,6.094917000000,Naturoscope (Antenne Var),Presqu'ile de Giens,32028,observation-0cc632a0-5d9c-4db9-96d1-d8ca7510758f-5,https://biolit.fr/observations/observation-0cc632a0-5d9c-4db9-96d1-d8ca7510758f-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-0970-scaled.jpg,,FALSE, +N1,58660,sortie-0cc632a0-5d9c-4db9-96d1-d8ca7510758f,https://biolit.fr/sorties/sortie-0cc632a0-5d9c-4db9-96d1-d8ca7510758f/,Marine Nature,,3/27/2022 0:00,14.0:25,14.0000000,43.040383000000,6.094917000000,Naturoscope (Antenne Var),Presqu'ile de Giens,32030,observation-0cc632a0-5d9c-4db9-96d1-d8ca7510758f-6,https://biolit.fr/observations/observation-0cc632a0-5d9c-4db9-96d1-d8ca7510758f-6/,Maja squinado,Grande araignée de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG-0972-scaled.jpg,,TRUE, +N1,58660,sortie-0cc632a0-5d9c-4db9-96d1-d8ca7510758f,https://biolit.fr/sorties/sortie-0cc632a0-5d9c-4db9-96d1-d8ca7510758f/,Marine Nature,,3/27/2022 0:00,14.0:25,14.0000000,43.040383000000,6.094917000000,Naturoscope (Antenne Var),Presqu'ile de Giens,32032,observation-0cc632a0-5d9c-4db9-96d1-d8ca7510758f-7,https://biolit.fr/observations/observation-0cc632a0-5d9c-4db9-96d1-d8ca7510758f-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-0973-scaled.jpg,,FALSE, +N1,58661,sortie-cbbe34e9-a18a-4844-9267-dc32d8defaeb,https://biolit.fr/sorties/sortie-cbbe34e9-a18a-4844-9267-dc32d8defaeb/,Marine Nature,,3/27/2022 0:00,11.0:25,11.0000000,43.031061000000,6.103264000000,Naturoscope (Antenne Var),Presqu'ile de Giens,32034,observation-cbbe34e9-a18a-4844-9267-dc32d8defaeb,https://biolit.fr/observations/observation-cbbe34e9-a18a-4844-9267-dc32d8defaeb/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-0950-scaled.jpg,,FALSE, +N1,58661,sortie-cbbe34e9-a18a-4844-9267-dc32d8defaeb,https://biolit.fr/sorties/sortie-cbbe34e9-a18a-4844-9267-dc32d8defaeb/,Marine Nature,,3/27/2022 0:00,11.0:25,11.0000000,43.031061000000,6.103264000000,Naturoscope (Antenne Var),Presqu'ile de Giens,32036,observation-cbbe34e9-a18a-4844-9267-dc32d8defaeb-2,https://biolit.fr/observations/observation-cbbe34e9-a18a-4844-9267-dc32d8defaeb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-0953-scaled.jpg,,FALSE, +N1,58661,sortie-cbbe34e9-a18a-4844-9267-dc32d8defaeb,https://biolit.fr/sorties/sortie-cbbe34e9-a18a-4844-9267-dc32d8defaeb/,Marine Nature,,3/27/2022 0:00,11.0:25,11.0000000,43.031061000000,6.103264000000,Naturoscope (Antenne Var),Presqu'ile de Giens,32038,observation-cbbe34e9-a18a-4844-9267-dc32d8defaeb-3,https://biolit.fr/observations/observation-cbbe34e9-a18a-4844-9267-dc32d8defaeb-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-0954-scaled.jpg,,FALSE, +N1,58661,sortie-cbbe34e9-a18a-4844-9267-dc32d8defaeb,https://biolit.fr/sorties/sortie-cbbe34e9-a18a-4844-9267-dc32d8defaeb/,Marine Nature,,3/27/2022 0:00,11.0:25,11.0000000,43.031061000000,6.103264000000,Naturoscope (Antenne Var),Presqu'ile de Giens,32040,observation-cbbe34e9-a18a-4844-9267-dc32d8defaeb-4,https://biolit.fr/observations/observation-cbbe34e9-a18a-4844-9267-dc32d8defaeb-4/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG-0955-scaled.jpg,,TRUE, +N1,58662,sortie-13ded2da-68a9-4f07-a51d-154fd8bf9005,https://biolit.fr/sorties/sortie-13ded2da-68a9-4f07-a51d-154fd8bf9005/,fg,,3/21/2022 0:00,14.0000000,16.0000000,48.654158000000,-2.024051000000,,Plage de l'éventail,,,,,,,,,, +N1,58663,sortie-515b12ea-418d-4b25-9004-d843e141f0bd,https://biolit.fr/sorties/sortie-515b12ea-418d-4b25-9004-d843e141f0bd/,RBBBM,,3/19/2022 0:00,10.0000000,12.0000000,47.788593000000,-3.703682000000,,L'île percée,32044,observation-515b12ea-418d-4b25-9004-d843e141f0bd,https://biolit.fr/observations/observation-515b12ea-418d-4b25-9004-d843e141f0bd/,Luidia ciliaris,Etoile à sept bras,,https://biolit.fr/wp-content/uploads/2023/07/Luidia ciliaris 19 mars 2022 Trenez paint.jpg,,TRUE, +N1,58663,sortie-515b12ea-418d-4b25-9004-d843e141f0bd,https://biolit.fr/sorties/sortie-515b12ea-418d-4b25-9004-d843e141f0bd/,RBBBM,,3/19/2022 0:00,10.0000000,12.0000000,47.788593000000,-3.703682000000,,L'île percée,32046,observation-515b12ea-418d-4b25-9004-d843e141f0bd-2,https://biolit.fr/observations/observation-515b12ea-418d-4b25-9004-d843e141f0bd-2/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P1040367.JPG,,TRUE, +N1,58663,sortie-515b12ea-418d-4b25-9004-d843e141f0bd,https://biolit.fr/sorties/sortie-515b12ea-418d-4b25-9004-d843e141f0bd/,RBBBM,,3/19/2022 0:00,10.0000000,12.0000000,47.788593000000,-3.703682000000,,L'île percée,32048,observation-515b12ea-418d-4b25-9004-d843e141f0bd-3,https://biolit.fr/observations/observation-515b12ea-418d-4b25-9004-d843e141f0bd-3/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/P1040515_0.JPG,,TRUE, +N1,58664,sortie-d7959de6-6c79-45ba-83f8-42486006c9b4,https://biolit.fr/sorties/sortie-d7959de6-6c79-45ba-83f8-42486006c9b4/,Dorian ROULET,,3/31/2022 0:00,9.000005,9.0000000,43.272952000000,5.362105000000,Planète Mer,Plage du prophète,32050,observation-d7959de6-6c79-45ba-83f8-42486006c9b4,https://biolit.fr/observations/observation-d7959de6-6c79-45ba-83f8-42486006c9b4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220331090930-scaled.jpg,,FALSE, +N1,58664,sortie-d7959de6-6c79-45ba-83f8-42486006c9b4,https://biolit.fr/sorties/sortie-d7959de6-6c79-45ba-83f8-42486006c9b4/,Dorian ROULET,,3/31/2022 0:00,9.000005,9.0000000,43.272952000000,5.362105000000,Planète Mer,Plage du prophète,32052,observation-d7959de6-6c79-45ba-83f8-42486006c9b4-2,https://biolit.fr/observations/observation-d7959de6-6c79-45ba-83f8-42486006c9b4-2/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG20220331091021-scaled.jpg,,TRUE, +N1,58664,sortie-d7959de6-6c79-45ba-83f8-42486006c9b4,https://biolit.fr/sorties/sortie-d7959de6-6c79-45ba-83f8-42486006c9b4/,Dorian ROULET,,3/31/2022 0:00,9.000005,9.0000000,43.272952000000,5.362105000000,Planète Mer,Plage du prophète,32054,observation-d7959de6-6c79-45ba-83f8-42486006c9b4-3,https://biolit.fr/observations/observation-d7959de6-6c79-45ba-83f8-42486006c9b4-3/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220331091111-scaled.jpg,,TRUE, +N1,58664,sortie-d7959de6-6c79-45ba-83f8-42486006c9b4,https://biolit.fr/sorties/sortie-d7959de6-6c79-45ba-83f8-42486006c9b4/,Dorian ROULET,,3/31/2022 0:00,9.000005,9.0000000,43.272952000000,5.362105000000,Planète Mer,Plage du prophète,32056,observation-d7959de6-6c79-45ba-83f8-42486006c9b4-4,https://biolit.fr/observations/observation-d7959de6-6c79-45ba-83f8-42486006c9b4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220331091514-scaled.jpg,,FALSE, +N1,58664,sortie-d7959de6-6c79-45ba-83f8-42486006c9b4,https://biolit.fr/sorties/sortie-d7959de6-6c79-45ba-83f8-42486006c9b4/,Dorian ROULET,,3/31/2022 0:00,9.000005,9.0000000,43.272952000000,5.362105000000,Planète Mer,Plage du prophète,32058,observation-d7959de6-6c79-45ba-83f8-42486006c9b4-5,https://biolit.fr/observations/observation-d7959de6-6c79-45ba-83f8-42486006c9b4-5/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220331091246-scaled.jpg,,TRUE, +N1,58664,sortie-d7959de6-6c79-45ba-83f8-42486006c9b4,https://biolit.fr/sorties/sortie-d7959de6-6c79-45ba-83f8-42486006c9b4/,Dorian ROULET,,3/31/2022 0:00,9.000005,9.0000000,43.272952000000,5.362105000000,Planète Mer,Plage du prophète,32060,observation-d7959de6-6c79-45ba-83f8-42486006c9b4-6,https://biolit.fr/observations/observation-d7959de6-6c79-45ba-83f8-42486006c9b4-6/,Maja squinado,Grande araignée de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220331091409-scaled.jpg,,FALSE, +N1,58665,sortie-2212577e-d1de-4703-b421-fb4bb2968919,https://biolit.fr/sorties/sortie-2212577e-d1de-4703-b421-fb4bb2968919/,Dorian ROULET,,3/24/2022 0:00,9.0000000,10.0000000,43.272892000000,5.362084000000,Planète Mer,Plage du prophète,32062,observation-2212577e-d1de-4703-b421-fb4bb2968919,https://biolit.fr/observations/observation-2212577e-d1de-4703-b421-fb4bb2968919/,Maja squinado,Grande araignée de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220324094533-scaled.jpg,,TRUE, +N1,58665,sortie-2212577e-d1de-4703-b421-fb4bb2968919,https://biolit.fr/sorties/sortie-2212577e-d1de-4703-b421-fb4bb2968919/,Dorian ROULET,,3/24/2022 0:00,9.0000000,10.0000000,43.272892000000,5.362084000000,Planète Mer,Plage du prophète,32066,observation-2212577e-d1de-4703-b421-fb4bb2968919-3,https://biolit.fr/observations/observation-2212577e-d1de-4703-b421-fb4bb2968919-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220324094815-scaled.jpg,,FALSE, +N1,58665,sortie-2212577e-d1de-4703-b421-fb4bb2968919,https://biolit.fr/sorties/sortie-2212577e-d1de-4703-b421-fb4bb2968919/,Dorian ROULET,,3/24/2022 0:00,9.0000000,10.0000000,43.272892000000,5.362084000000,Planète Mer,Plage du prophète,32068,observation-2212577e-d1de-4703-b421-fb4bb2968919-4,https://biolit.fr/observations/observation-2212577e-d1de-4703-b421-fb4bb2968919-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220324095342-scaled.jpg,,FALSE, +N1,58665,sortie-2212577e-d1de-4703-b421-fb4bb2968919,https://biolit.fr/sorties/sortie-2212577e-d1de-4703-b421-fb4bb2968919/,Dorian ROULET,,3/24/2022 0:00,9.0000000,10.0000000,43.272892000000,5.362084000000,Planète Mer,Plage du prophète,32070,observation-2212577e-d1de-4703-b421-fb4bb2968919-5,https://biolit.fr/observations/observation-2212577e-d1de-4703-b421-fb4bb2968919-5/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220324094124-scaled.jpg,,TRUE, +N1,58665,sortie-2212577e-d1de-4703-b421-fb4bb2968919,https://biolit.fr/sorties/sortie-2212577e-d1de-4703-b421-fb4bb2968919/,Dorian ROULET,,3/24/2022 0:00,9.0000000,10.0000000,43.272892000000,5.362084000000,Planète Mer,Plage du prophète,32072,observation-2212577e-d1de-4703-b421-fb4bb2968919-6,https://biolit.fr/observations/observation-2212577e-d1de-4703-b421-fb4bb2968919-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220324092308-scaled.jpg,,FALSE, +N1,58665,sortie-2212577e-d1de-4703-b421-fb4bb2968919,https://biolit.fr/sorties/sortie-2212577e-d1de-4703-b421-fb4bb2968919/,Dorian ROULET,,3/24/2022 0:00,9.0000000,10.0000000,43.272892000000,5.362084000000,Planète Mer,Plage du prophète,32074,observation-2212577e-d1de-4703-b421-fb4bb2968919-7,https://biolit.fr/observations/observation-2212577e-d1de-4703-b421-fb4bb2968919-7/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220324092222-scaled.jpg,,TRUE, +N1,58665,sortie-2212577e-d1de-4703-b421-fb4bb2968919,https://biolit.fr/sorties/sortie-2212577e-d1de-4703-b421-fb4bb2968919/,Dorian ROULET,,3/24/2022 0:00,9.0000000,10.0000000,43.272892000000,5.362084000000,Planète Mer,Plage du prophète,32076,observation-2212577e-d1de-4703-b421-fb4bb2968919-8,https://biolit.fr/observations/observation-2212577e-d1de-4703-b421-fb4bb2968919-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220324093850-scaled.jpg,,FALSE, +N1,58665,sortie-2212577e-d1de-4703-b421-fb4bb2968919,https://biolit.fr/sorties/sortie-2212577e-d1de-4703-b421-fb4bb2968919/,Dorian ROULET,,3/24/2022 0:00,9.0000000,10.0000000,43.272892000000,5.362084000000,Planète Mer,Plage du prophète,32078,observation-2212577e-d1de-4703-b421-fb4bb2968919-9,https://biolit.fr/observations/observation-2212577e-d1de-4703-b421-fb4bb2968919-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220324093805-scaled.jpg,,FALSE, +N1,58665,sortie-2212577e-d1de-4703-b421-fb4bb2968919,https://biolit.fr/sorties/sortie-2212577e-d1de-4703-b421-fb4bb2968919/,Dorian ROULET,,3/24/2022 0:00,9.0000000,10.0000000,43.272892000000,5.362084000000,Planète Mer,Plage du prophète,32080,observation-2212577e-d1de-4703-b421-fb4bb2968919-10,https://biolit.fr/observations/observation-2212577e-d1de-4703-b421-fb4bb2968919-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220324092335-scaled.jpg,,FALSE, +N1,58666,sortie-d4152028-ee35-4411-b42a-839aa7e6761a,https://biolit.fr/sorties/sortie-d4152028-ee35-4411-b42a-839aa7e6761a/,Roman,,03/06/2022,15.0000000,15.0000000,48.23377300000,-4.446776000000,,Crozon,32082,observation-d4152028-ee35-4411-b42a-839aa7e6761a,https://biolit.fr/observations/observation-d4152028-ee35-4411-b42a-839aa7e6761a/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/Acanthocardia spp.PNG,,TRUE, +N1,58666,sortie-d4152028-ee35-4411-b42a-839aa7e6761a,https://biolit.fr/sorties/sortie-d4152028-ee35-4411-b42a-839aa7e6761a/,Roman,,03/06/2022,15.0000000,15.0000000,48.23377300000,-4.446776000000,,Crozon,32084,observation-d4152028-ee35-4411-b42a-839aa7e6761a-2,https://biolit.fr/observations/observation-d4152028-ee35-4411-b42a-839aa7e6761a-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_20.PNG,,TRUE, +N1,58666,sortie-d4152028-ee35-4411-b42a-839aa7e6761a,https://biolit.fr/sorties/sortie-d4152028-ee35-4411-b42a-839aa7e6761a/,Roman,,03/06/2022,15.0000000,15.0000000,48.23377300000,-4.446776000000,,Crozon,32086,observation-d4152028-ee35-4411-b42a-839aa7e6761a-3,https://biolit.fr/observations/observation-d4152028-ee35-4411-b42a-839aa7e6761a-3/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/2023/07/Chamelea striatula.PNG,,TRUE, +N1,58666,sortie-d4152028-ee35-4411-b42a-839aa7e6761a,https://biolit.fr/sorties/sortie-d4152028-ee35-4411-b42a-839aa7e6761a/,Roman,,03/06/2022,15.0000000,15.0000000,48.23377300000,-4.446776000000,,Crozon,32088,observation-d4152028-ee35-4411-b42a-839aa7e6761a-4,https://biolit.fr/observations/observation-d4152028-ee35-4411-b42a-839aa7e6761a-4/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/Chtamalus montagui.PNG,,TRUE, +N1,58666,sortie-d4152028-ee35-4411-b42a-839aa7e6761a,https://biolit.fr/sorties/sortie-d4152028-ee35-4411-b42a-839aa7e6761a/,Roman,,03/06/2022,15.0000000,15.0000000,48.23377300000,-4.446776000000,,Crozon,32090,observation-d4152028-ee35-4411-b42a-839aa7e6761a-5,https://biolit.fr/observations/observation-d4152028-ee35-4411-b42a-839aa7e6761a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Donacina sp.PNG,,FALSE, +N1,58666,sortie-d4152028-ee35-4411-b42a-839aa7e6761a,https://biolit.fr/sorties/sortie-d4152028-ee35-4411-b42a-839aa7e6761a/,Roman,,03/06/2022,15.0000000,15.0000000,48.23377300000,-4.446776000000,,Crozon,32092,observation-d4152028-ee35-4411-b42a-839aa7e6761a-6,https://biolit.fr/observations/observation-d4152028-ee35-4411-b42a-839aa7e6761a-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gari fervensis_0.PNG,,FALSE, +N1,58666,sortie-d4152028-ee35-4411-b42a-839aa7e6761a,https://biolit.fr/sorties/sortie-d4152028-ee35-4411-b42a-839aa7e6761a/,Roman,,03/06/2022,15.0000000,15.0000000,48.23377300000,-4.446776000000,,Crozon,32094,observation-d4152028-ee35-4411-b42a-839aa7e6761a-7,https://biolit.fr/observations/observation-d4152028-ee35-4411-b42a-839aa7e6761a-7/,Laevicardium crassum,Bucarde de Norvège,,https://biolit.fr/wp-content/uploads/2023/07/Laevicardium crassum.PNG,,TRUE, +N1,58666,sortie-d4152028-ee35-4411-b42a-839aa7e6761a,https://biolit.fr/sorties/sortie-d4152028-ee35-4411-b42a-839aa7e6761a/,Roman,,03/06/2022,15.0000000,15.0000000,48.23377300000,-4.446776000000,,Crozon,32096,observation-d4152028-ee35-4411-b42a-839aa7e6761a-8,https://biolit.fr/observations/observation-d4152028-ee35-4411-b42a-839aa7e6761a-8/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina obtusata_2.PNG,,TRUE, +N1,58666,sortie-d4152028-ee35-4411-b42a-839aa7e6761a,https://biolit.fr/sorties/sortie-d4152028-ee35-4411-b42a-839aa7e6761a/,Roman,,03/06/2022,15.0000000,15.0000000,48.23377300000,-4.446776000000,,Crozon,32098,observation-d4152028-ee35-4411-b42a-839aa7e6761a-9,https://biolit.fr/observations/observation-d4152028-ee35-4411-b42a-839aa7e6761a-9/,Lutraria angustior,Lutraire étroite,,https://biolit.fr/wp-content/uploads/2023/07/Lutraria anguistor.PNG,,TRUE, +N1,58666,sortie-d4152028-ee35-4411-b42a-839aa7e6761a,https://biolit.fr/sorties/sortie-d4152028-ee35-4411-b42a-839aa7e6761a/,Roman,,03/06/2022,15.0000000,15.0000000,48.23377300000,-4.446776000000,,Crozon,32100,observation-d4152028-ee35-4411-b42a-839aa7e6761a-10,https://biolit.fr/observations/observation-d4152028-ee35-4411-b42a-839aa7e6761a-10/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/2023/07/Mactra stultorum_2.PNG,,TRUE, +N1,58666,sortie-d4152028-ee35-4411-b42a-839aa7e6761a,https://biolit.fr/sorties/sortie-d4152028-ee35-4411-b42a-839aa7e6761a/,Roman,,03/06/2022,15.0000000,15.0000000,48.23377300000,-4.446776000000,,Crozon,32102,observation-d4152028-ee35-4411-b42a-839aa7e6761a-11,https://biolit.fr/observations/observation-d4152028-ee35-4411-b42a-839aa7e6761a-11/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_19.PNG,,TRUE, +N1,58666,sortie-d4152028-ee35-4411-b42a-839aa7e6761a,https://biolit.fr/sorties/sortie-d4152028-ee35-4411-b42a-839aa7e6761a/,Roman,,03/06/2022,15.0000000,15.0000000,48.23377300000,-4.446776000000,,Crozon,32104,observation-d4152028-ee35-4411-b42a-839aa7e6761a-12,https://biolit.fr/observations/observation-d4152028-ee35-4411-b42a-839aa7e6761a-12/,Spisula solida,Mactre épaisse,,https://biolit.fr/wp-content/uploads/2023/07/Spisula subtruncata_0.PNG,,TRUE, +N1,58667,sortie-681df4ac-3202-46ae-8e14-48ae8993e3d3,https://biolit.fr/sorties/sortie-681df4ac-3202-46ae-8e14-48ae8993e3d3/,thomc69,,2/21/2022 0:00,16.0000000,18.0000000,47.243556000000,-2.262203000000,,"Saint-Nazaire, plage de port Charlotte",32106,observation-681df4ac-3202-46ae-8e14-48ae8993e3d3,https://biolit.fr/observations/observation-681df4ac-3202-46ae-8e14-48ae8993e3d3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220206_154602-scaled.jpg,,FALSE, +N1,58667,sortie-681df4ac-3202-46ae-8e14-48ae8993e3d3,https://biolit.fr/sorties/sortie-681df4ac-3202-46ae-8e14-48ae8993e3d3/,thomc69,,2/21/2022 0:00,16.0000000,18.0000000,47.243556000000,-2.262203000000,,"Saint-Nazaire, plage de port Charlotte",32108,observation-681df4ac-3202-46ae-8e14-48ae8993e3d3-2,https://biolit.fr/observations/observation-681df4ac-3202-46ae-8e14-48ae8993e3d3-2/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/20220206_155011-scaled.jpg,,TRUE, +N1,58667,sortie-681df4ac-3202-46ae-8e14-48ae8993e3d3,https://biolit.fr/sorties/sortie-681df4ac-3202-46ae-8e14-48ae8993e3d3/,thomc69,,2/21/2022 0:00,16.0000000,18.0000000,47.243556000000,-2.262203000000,,"Saint-Nazaire, plage de port Charlotte",32110,observation-681df4ac-3202-46ae-8e14-48ae8993e3d3-3,https://biolit.fr/observations/observation-681df4ac-3202-46ae-8e14-48ae8993e3d3-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220206_155715-scaled.jpg,,FALSE, +N1,58667,sortie-681df4ac-3202-46ae-8e14-48ae8993e3d3,https://biolit.fr/sorties/sortie-681df4ac-3202-46ae-8e14-48ae8993e3d3/,thomc69,,2/21/2022 0:00,16.0000000,18.0000000,47.243556000000,-2.262203000000,,"Saint-Nazaire, plage de port Charlotte",32112,observation-681df4ac-3202-46ae-8e14-48ae8993e3d3-4,https://biolit.fr/observations/observation-681df4ac-3202-46ae-8e14-48ae8993e3d3-4/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/20220206_155507-scaled.jpg,,TRUE, +N1,58667,sortie-681df4ac-3202-46ae-8e14-48ae8993e3d3,https://biolit.fr/sorties/sortie-681df4ac-3202-46ae-8e14-48ae8993e3d3/,thomc69,,2/21/2022 0:00,16.0000000,18.0000000,47.243556000000,-2.262203000000,,"Saint-Nazaire, plage de port Charlotte",32114,observation-681df4ac-3202-46ae-8e14-48ae8993e3d3-5,https://biolit.fr/observations/observation-681df4ac-3202-46ae-8e14-48ae8993e3d3-5/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/20220206_153718-scaled.jpg,,TRUE, +N1,58667,sortie-681df4ac-3202-46ae-8e14-48ae8993e3d3,https://biolit.fr/sorties/sortie-681df4ac-3202-46ae-8e14-48ae8993e3d3/,thomc69,,2/21/2022 0:00,16.0000000,18.0000000,47.243556000000,-2.262203000000,,"Saint-Nazaire, plage de port Charlotte",32116,observation-681df4ac-3202-46ae-8e14-48ae8993e3d3-6,https://biolit.fr/observations/observation-681df4ac-3202-46ae-8e14-48ae8993e3d3-6/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/20220206_155507_0-scaled.jpg,,TRUE, +N1,58668,sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0,https://biolit.fr/sorties/sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0/,marieduthoo,,2/17/2022 0:00,8.0:45,11.0:15,43.273188000000,5.362202000000,Planète Mer,Plage du Prophète,32118,observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0,https://biolit.fr/observations/observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2022-02-17 à 12.48.31.png,,TRUE, +N1,58668,sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0,https://biolit.fr/sorties/sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0/,marieduthoo,,2/17/2022 0:00,8.0:45,11.0:15,43.273188000000,5.362202000000,Planète Mer,Plage du Prophète,32120,observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-2,https://biolit.fr/observations/observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-2/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2022-02-17 à 12.48.24.png,,TRUE, +N1,58668,sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0,https://biolit.fr/sorties/sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0/,marieduthoo,,2/17/2022 0:00,8.0:45,11.0:15,43.273188000000,5.362202000000,Planète Mer,Plage du Prophète,32122,observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-3,https://biolit.fr/observations/observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-3/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2022-02-17 à 12.48.18.png,,TRUE, +N1,58668,sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0,https://biolit.fr/sorties/sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0/,marieduthoo,,2/17/2022 0:00,8.0:45,11.0:15,43.273188000000,5.362202000000,Planète Mer,Plage du Prophète,32124,observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-4,https://biolit.fr/observations/observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-4/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2022-02-17 à 12.47.58.png,,TRUE, +N1,58668,sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0,https://biolit.fr/sorties/sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0/,marieduthoo,,2/17/2022 0:00,8.0:45,11.0:15,43.273188000000,5.362202000000,Planète Mer,Plage du Prophète,32126,observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-5,https://biolit.fr/observations/observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-5/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2022-02-17 à 12.47.49.png,,TRUE, +N1,58668,sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0,https://biolit.fr/sorties/sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0/,marieduthoo,,2/17/2022 0:00,8.0:45,11.0:15,43.273188000000,5.362202000000,Planète Mer,Plage du Prophète,32128,observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-6,https://biolit.fr/observations/observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2022-02-17 à 12.47.39.png,,FALSE, +N1,58668,sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0,https://biolit.fr/sorties/sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0/,marieduthoo,,2/17/2022 0:00,8.0:45,11.0:15,43.273188000000,5.362202000000,Planète Mer,Plage du Prophète,32130,observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-7,https://biolit.fr/observations/observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2022-02-17 à 12.47.32.png,,FALSE, +N1,58668,sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0,https://biolit.fr/sorties/sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0/,marieduthoo,,2/17/2022 0:00,8.0:45,11.0:15,43.273188000000,5.362202000000,Planète Mer,Plage du Prophète,32132,observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-8,https://biolit.fr/observations/observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2022-02-17 à 12.47.24.png,,FALSE, +N1,58668,sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0,https://biolit.fr/sorties/sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0/,marieduthoo,,2/17/2022 0:00,8.0:45,11.0:15,43.273188000000,5.362202000000,Planète Mer,Plage du Prophète,32134,observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-9,https://biolit.fr/observations/observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-9/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2022-02-17 à 12.47.16.png,,TRUE, +N1,58668,sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0,https://biolit.fr/sorties/sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0/,marieduthoo,,2/17/2022 0:00,8.0:45,11.0:15,43.273188000000,5.362202000000,Planète Mer,Plage du Prophète,32136,observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-10,https://biolit.fr/observations/observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-10/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2022-02-17 à 12.47.11.png,,TRUE, +N1,58668,sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0,https://biolit.fr/sorties/sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0/,marieduthoo,,2/17/2022 0:00,8.0:45,11.0:15,43.273188000000,5.362202000000,Planète Mer,Plage du Prophète,32138,observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-11,https://biolit.fr/observations/observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2022-02-17 à 12.47.04.png,,FALSE, +N1,58668,sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0,https://biolit.fr/sorties/sortie-5027ba22-a9f2-462e-9b57-4accea6bc2f0/,marieduthoo,,2/17/2022 0:00,8.0:45,11.0:15,43.273188000000,5.362202000000,Planète Mer,Plage du Prophète,32140,observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-12,https://biolit.fr/observations/observation-5027ba22-a9f2-462e-9b57-4accea6bc2f0-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2022-02-17 à 12.46.53.png,,FALSE, +N1,58669,sortie-57bc31db-5000-43f7-8f97-00fe40042500,https://biolit.fr/sorties/sortie-57bc31db-5000-43f7-8f97-00fe40042500/,marieduthoo,,2/17/2022 0:00,8.0000000,11.0:15,43.280179000000,5.35303900000,Planète Mer,Anse de la Fausse Monnaie,32142,observation-57bc31db-5000-43f7-8f97-00fe40042500,https://biolit.fr/observations/observation-57bc31db-5000-43f7-8f97-00fe40042500/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3495_0-scaled.jpg,,FALSE, +N1,58669,sortie-57bc31db-5000-43f7-8f97-00fe40042500,https://biolit.fr/sorties/sortie-57bc31db-5000-43f7-8f97-00fe40042500/,marieduthoo,,2/17/2022 0:00,8.0000000,11.0:15,43.280179000000,5.35303900000,Planète Mer,Anse de la Fausse Monnaie,32144,observation-57bc31db-5000-43f7-8f97-00fe40042500-2,https://biolit.fr/observations/observation-57bc31db-5000-43f7-8f97-00fe40042500-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3494_0-scaled.jpg,,FALSE, +N1,58669,sortie-57bc31db-5000-43f7-8f97-00fe40042500,https://biolit.fr/sorties/sortie-57bc31db-5000-43f7-8f97-00fe40042500/,marieduthoo,,2/17/2022 0:00,8.0000000,11.0:15,43.280179000000,5.35303900000,Planète Mer,Anse de la Fausse Monnaie,32146,observation-57bc31db-5000-43f7-8f97-00fe40042500-3,https://biolit.fr/observations/observation-57bc31db-5000-43f7-8f97-00fe40042500-3/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_3492-scaled.jpg,,TRUE, +N1,58669,sortie-57bc31db-5000-43f7-8f97-00fe40042500,https://biolit.fr/sorties/sortie-57bc31db-5000-43f7-8f97-00fe40042500/,marieduthoo,,2/17/2022 0:00,8.0000000,11.0:15,43.280179000000,5.35303900000,Planète Mer,Anse de la Fausse Monnaie,32148,observation-57bc31db-5000-43f7-8f97-00fe40042500-4,https://biolit.fr/observations/observation-57bc31db-5000-43f7-8f97-00fe40042500-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3490-scaled.jpg,,FALSE, +N1,58669,sortie-57bc31db-5000-43f7-8f97-00fe40042500,https://biolit.fr/sorties/sortie-57bc31db-5000-43f7-8f97-00fe40042500/,marieduthoo,,2/17/2022 0:00,8.0000000,11.0:15,43.280179000000,5.35303900000,Planète Mer,Anse de la Fausse Monnaie,32150,observation-57bc31db-5000-43f7-8f97-00fe40042500-5,https://biolit.fr/observations/observation-57bc31db-5000-43f7-8f97-00fe40042500-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3488-scaled.jpg,,FALSE, +N1,58669,sortie-57bc31db-5000-43f7-8f97-00fe40042500,https://biolit.fr/sorties/sortie-57bc31db-5000-43f7-8f97-00fe40042500/,marieduthoo,,2/17/2022 0:00,8.0000000,11.0:15,43.280179000000,5.35303900000,Planète Mer,Anse de la Fausse Monnaie,32152,observation-57bc31db-5000-43f7-8f97-00fe40042500-6,https://biolit.fr/observations/observation-57bc31db-5000-43f7-8f97-00fe40042500-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3493_0-scaled.jpg,,FALSE, +N1,58669,sortie-57bc31db-5000-43f7-8f97-00fe40042500,https://biolit.fr/sorties/sortie-57bc31db-5000-43f7-8f97-00fe40042500/,marieduthoo,,2/17/2022 0:00,8.0000000,11.0:15,43.280179000000,5.35303900000,Planète Mer,Anse de la Fausse Monnaie,32154,observation-57bc31db-5000-43f7-8f97-00fe40042500-7,https://biolit.fr/observations/observation-57bc31db-5000-43f7-8f97-00fe40042500-7/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_3491-scaled.jpg,,TRUE, +N1,58669,sortie-57bc31db-5000-43f7-8f97-00fe40042500,https://biolit.fr/sorties/sortie-57bc31db-5000-43f7-8f97-00fe40042500/,marieduthoo,,2/17/2022 0:00,8.0000000,11.0:15,43.280179000000,5.35303900000,Planète Mer,Anse de la Fausse Monnaie,32156,observation-57bc31db-5000-43f7-8f97-00fe40042500-8,https://biolit.fr/observations/observation-57bc31db-5000-43f7-8f97-00fe40042500-8/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3489-scaled.jpg,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32158,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita_7.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32160,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-2,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacaea_1.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32162,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-3,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_20.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32164,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-4,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-4/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/Ascophyllum nodosum.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32166,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-5,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-5/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_15.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32168,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-6,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-6/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_22.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32170,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-7,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-7/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_12.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32172,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-8,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-8/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_17.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32174,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-9,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-9/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas copulation.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32176,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-10,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-10/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_14.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32178,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-11,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-11/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Crassostrea gigas_2.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32180,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-12,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 1_8.PNG,,FALSE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32182,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-13,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-13/,Pachymatisma johnstonia,Fesse d'éléphant,,https://biolit.fr/wp-content/uploads/2023/07/Eponge sp_0.PNG,,FALSE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32184,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-14,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_27.PNG,,FALSE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32186,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-15,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-15/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/Eulalia clavigera.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32188,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-16,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-16/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/Fucus serratus-scaled.jpg,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32189,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-17,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-17/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/Haliotis tuberculata_8.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32191,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-18,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/Larus sp.PNG,,FALSE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32193,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-19,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-19/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_22.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32195,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-20,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-20/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_14.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32197,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-21,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/nul en algue.PNG,,FALSE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32199,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-22,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-22/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_8.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32201,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-23,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-23/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/Pholis sp.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32203,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-24,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-24/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/porcellana platycheles_6.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32205,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-25,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-25/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_22.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32207,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-26,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-26/,Sargassum vulgare,Sargasse commune,,https://biolit.fr/wp-content/uploads/2023/07/Sargassum vulgare.PNG,,TRUE, +N1,58670,sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61,https://biolit.fr/sorties/sortie-eb8194ec-2a58-4079-b40b-7bf1285f4e61/,Roman,,02/08/2022,10.0000000,12.0000000,47.702738000000,-3.352741000000,Observatoire du Plancton,Port-Louis,32209,observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-27,https://biolit.fr/observations/observation-eb8194ec-2a58-4079-b40b-7bf1285f4e61-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ver plat.PNG,,FALSE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32211,observation-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_19.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32213,observation-9c234179-8296-491a-a958-02aa2af7dec2-2,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-2/,Actinia striata,Actinie striée,,https://biolit.fr/wp-content/uploads/2023/07/Actinia striata.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32214,observation-9c234179-8296-491a-a958-02aa2af7dec2-3,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_19.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32216,observation-9c234179-8296-491a-a958-02aa2af7dec2-4,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-4/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/Anthopleura balii_7.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32218,observation-9c234179-8296-491a-a958-02aa2af7dec2-5,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-5/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/Aplysia punctata_1.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32220,observation-9c234179-8296-491a-a958-02aa2af7dec2-6,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-6/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/Arenaria interpres_3.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32222,observation-9c234179-8296-491a-a958-02aa2af7dec2-7,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie sp_2.PNG,,FALSE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32224,observation-9c234179-8296-491a-a958-02aa2af7dec2-8,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-8/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_14.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32226,observation-9c234179-8296-491a-a958-02aa2af7dec2-9,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-9/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_21.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32228,observation-9c234179-8296-491a-a958-02aa2af7dec2-10,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-10/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/Aulactinia verrucosa_7.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32230,observation-9c234179-8296-491a-a958-02aa2af7dec2-11,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-11/,Berthella plumula,Berthelle plume,,https://biolit.fr/wp-content/uploads/2023/07/Berthella plumula_3.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32232,observation-9c234179-8296-491a-a958-02aa2af7dec2-12,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-12/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_11.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32234,observation-9c234179-8296-491a-a958-02aa2af7dec2-13,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-13/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_16.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32236,observation-9c234179-8296-491a-a958-02aa2af7dec2-14,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-14/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_13.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32238,observation-9c234179-8296-491a-a958-02aa2af7dec2-15,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-15/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/Colpomenia peregrina_0.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32240,observation-9c234179-8296-491a-a958-02aa2af7dec2-16,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_26.PNG,,FALSE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32242,observation-9c234179-8296-491a-a958-02aa2af7dec2-17,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-17/,Gari depressa,Psammobie déprimée,,https://biolit.fr/wp-content/uploads/2023/07/Gari depressa_10.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32244,observation-9c234179-8296-491a-a958-02aa2af7dec2-18,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-18/,Isozoanthus sulcatus,Anémone chocolat,,https://biolit.fr/wp-content/uploads/2023/07/Isozoanthus sulcatus_5.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32246,observation-9c234179-8296-491a-a958-02aa2af7dec2-19,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-19/,Lanice conchilega,Lanice,,https://biolit.fr/wp-content/uploads/2023/07/Lanice conchilega.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32248,observation-9c234179-8296-491a-a958-02aa2af7dec2-20,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Limace sp.PNG,,FALSE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32250,observation-9c234179-8296-491a-a958-02aa2af7dec2-21,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_6.PNG,,FALSE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32252,observation-9c234179-8296-491a-a958-02aa2af7dec2-22,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-22/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_7.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32254,observation-9c234179-8296-491a-a958-02aa2af7dec2-23,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-23/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_21.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32256,observation-9c234179-8296-491a-a958-02aa2af7dec2-24,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-24/,Chrysaora hysoscella,Méduse rayonnée,,https://biolit.fr/wp-content/uploads/2023/07/méduse sp.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32257,observation-9c234179-8296-491a-a958-02aa2af7dec2-25,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-25/,Dysidea fragilis,Eponge mie de pain mouillée,,https://biolit.fr/wp-content/uploads/2023/07/Mie de pain.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32259,observation-9c234179-8296-491a-a958-02aa2af7dec2-26,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-26/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_13.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32261,observation-9c234179-8296-491a-a958-02aa2af7dec2-27,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-27/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_18.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32263,observation-9c234179-8296-491a-a958-02aa2af7dec2-28,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-28/,Pilumnus hirtellus,Pilumne hirsute,,https://biolit.fr/wp-content/uploads/2023/07/Pilumnus hirtellus_6.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32265,observation-9c234179-8296-491a-a958-02aa2af7dec2-29,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-29/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/Pisidia longicornis_5.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32267,observation-9c234179-8296-491a-a958-02aa2af7dec2-30,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-30/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_20.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32269,observation-9c234179-8296-491a-a958-02aa2af7dec2-31,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-31/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_21.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32271,observation-9c234179-8296-491a-a958-02aa2af7dec2-32,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-32/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/Sabellaria alveolata_4.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32273,observation-9c234179-8296-491a-a958-02aa2af7dec2-33,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-33/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/Urticina felina_4.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32275,observation-9c234179-8296-491a-a958-02aa2af7dec2-34,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-34/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/venus verrucosa_5.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32276,observation-9c234179-8296-491a-a958-02aa2af7dec2-35,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-35/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Watersipora subatra_5.PNG,,TRUE, +N1,58671,sortie-9c234179-8296-491a-a958-02aa2af7dec2,https://biolit.fr/sorties/sortie-9c234179-8296-491a-a958-02aa2af7dec2/,Roman,,02/05/2022,14.0000000,16.0000000,47.70406000000,-3.355884000000,,Port-Louis,32278,observation-9c234179-8296-491a-a958-02aa2af7dec2-36,https://biolit.fr/observations/observation-9c234179-8296-491a-a958-02aa2af7dec2-36/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_16.PNG,,TRUE, +N1,58672,sortie-1a2653f6-8452-4ae8-b227-4e333cb00678,https://biolit.fr/sorties/sortie-1a2653f6-8452-4ae8-b227-4e333cb00678/,VALERIE MUFFAT,,1/24/2022 0:00,11.0000000,12.0000000,43.107247000000,5.979137000000,Naturoscope (Antenne Var),ANSE MAGAUD LA GARDE,32280,observation-1a2653f6-8452-4ae8-b227-4e333cb00678,https://biolit.fr/observations/observation-1a2653f6-8452-4ae8-b227-4e333cb00678/,,,,https://biolit.fr/wp-content/uploads/2023/07/ON MESURE LA LARGEUR DE MAGAUD AVEC MARION GEORGE DU NATUROSCOPE-scaled.jpg,,FALSE, +N1,58672,sortie-1a2653f6-8452-4ae8-b227-4e333cb00678,https://biolit.fr/sorties/sortie-1a2653f6-8452-4ae8-b227-4e333cb00678/,VALERIE MUFFAT,,1/24/2022 0:00,11.0000000,12.0000000,43.107247000000,5.979137000000,Naturoscope (Antenne Var),ANSE MAGAUD LA GARDE,32282,observation-1a2653f6-8452-4ae8-b227-4e333cb00678-2,https://biolit.fr/observations/observation-1a2653f6-8452-4ae8-b227-4e333cb00678-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/MARION NATUROSCOPE ECOLE P LANGEVIN AME MAGAUD-scaled.jpg,,FALSE, +N1,58672,sortie-1a2653f6-8452-4ae8-b227-4e333cb00678,https://biolit.fr/sorties/sortie-1a2653f6-8452-4ae8-b227-4e333cb00678/,VALERIE MUFFAT,,1/24/2022 0:00,11.0000000,12.0000000,43.107247000000,5.979137000000,Naturoscope (Antenne Var),ANSE MAGAUD LA GARDE,32284,observation-1a2653f6-8452-4ae8-b227-4e333cb00678-3,https://biolit.fr/observations/observation-1a2653f6-8452-4ae8-b227-4e333cb00678-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/LONGUEUR LARGEUR MAGAUD AME LA GARDE-scaled.jpg,,FALSE, +N1,58673,sortie-74a6f42f-e851-43a8-b44c-3849f2098205,https://biolit.fr/sorties/sortie-74a6f42f-e851-43a8-b44c-3849f2098205/,VALERIE MUFFAT,,1/18/2022 0:00,14.0000000,16.0000000,43.107298000000,5.979147000000,,ANSE MAGAUD LA GARDE,32286,observation-74a6f42f-e851-43a8-b44c-3849f2098205,https://biolit.fr/observations/observation-74a6f42f-e851-43a8-b44c-3849f2098205/,,,,https://biolit.fr/wp-content/uploads/2023/07/ON MESURE LARGEUR LONGUEUR EPAISSEUR POSIDONIE-scaled.jpg,,FALSE, +N1,58673,sortie-74a6f42f-e851-43a8-b44c-3849f2098205,https://biolit.fr/sorties/sortie-74a6f42f-e851-43a8-b44c-3849f2098205/,VALERIE MUFFAT,,1/18/2022 0:00,14.0000000,16.0000000,43.107298000000,5.979147000000,,ANSE MAGAUD LA GARDE,32288,observation-74a6f42f-e851-43a8-b44c-3849f2098205-2,https://biolit.fr/observations/observation-74a6f42f-e851-43a8-b44c-3849f2098205-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/ON MESURE LARGEUR LONGUEUR EPAISSEUR DE LA POSIDONIE-scaled.jpg,,FALSE, +N1,58674,sortie-9e1ee552-3cd6-4231-80a2-cbd1bd880a38,https://biolit.fr/sorties/sortie-9e1ee552-3cd6-4231-80a2-cbd1bd880a38/,VALERIE MUFFAT,,1/18/2022 0:00,14.0000000,16.0000000,43.107339000000,5.979528000000,,ANSE MAGAUD LA GARDE,32290,observation-9e1ee552-3cd6-4231-80a2-cbd1bd880a38,https://biolit.fr/observations/observation-9e1ee552-3cd6-4231-80a2-cbd1bd880a38/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/ANSE MAGAUD-scaled.jpg,,TRUE, +N1,58674,sortie-9e1ee552-3cd6-4231-80a2-cbd1bd880a38,https://biolit.fr/sorties/sortie-9e1ee552-3cd6-4231-80a2-cbd1bd880a38/,VALERIE MUFFAT,,1/18/2022 0:00,14.0000000,16.0000000,43.107339000000,5.979528000000,,ANSE MAGAUD LA GARDE,32292,observation-9e1ee552-3cd6-4231-80a2-cbd1bd880a38-2,https://biolit.fr/observations/observation-9e1ee552-3cd6-4231-80a2-cbd1bd880a38-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/ANSE MAGAUD OURSINS ECOLE P LANGEVIN LA GARDE-scaled.jpg,,TRUE, +N1,58674,sortie-9e1ee552-3cd6-4231-80a2-cbd1bd880a38,https://biolit.fr/sorties/sortie-9e1ee552-3cd6-4231-80a2-cbd1bd880a38/,VALERIE MUFFAT,,1/18/2022 0:00,14.0000000,16.0000000,43.107339000000,5.979528000000,,ANSE MAGAUD LA GARDE,32294,observation-9e1ee552-3cd6-4231-80a2-cbd1bd880a38-3,https://biolit.fr/observations/observation-9e1ee552-3cd6-4231-80a2-cbd1bd880a38-3/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/ANSE MAGAUD ECOLE PAUL LANGEVIN AMBASSADEURS DE MAGAUD AME-scaled.jpg,,TRUE, +N1,58674,sortie-9e1ee552-3cd6-4231-80a2-cbd1bd880a38,https://biolit.fr/sorties/sortie-9e1ee552-3cd6-4231-80a2-cbd1bd880a38/,VALERIE MUFFAT,,1/18/2022 0:00,14.0000000,16.0000000,43.107339000000,5.979528000000,,ANSE MAGAUD LA GARDE,32296,observation-9e1ee552-3cd6-4231-80a2-cbd1bd880a38-4,https://biolit.fr/observations/observation-9e1ee552-3cd6-4231-80a2-cbd1bd880a38-4/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/2023/07/ANSE MAGAUD AME ECOLE P LANGEVIN LA GARDE VAR-scaled.jpg,,TRUE, +N1,58675,sortie-0255d41b-294d-4f40-808b-aace20282f68,https://biolit.fr/sorties/sortie-0255d41b-294d-4f40-808b-aace20282f68/,enorabocher,,1/21/2022 0:00,12.0:55,13.0:15,48.357985000000,-4.533640000000,,Estran de la pointe du Portzic,32298,observation-0255d41b-294d-4f40-808b-aace20282f68,https://biolit.fr/observations/observation-0255d41b-294d-4f40-808b-aace20282f68/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220121_132101-scaled.jpg,,TRUE, +N1,58675,sortie-0255d41b-294d-4f40-808b-aace20282f68,https://biolit.fr/sorties/sortie-0255d41b-294d-4f40-808b-aace20282f68/,enorabocher,,1/21/2022 0:00,12.0:55,13.0:15,48.357985000000,-4.533640000000,,Estran de la pointe du Portzic,32300,observation-0255d41b-294d-4f40-808b-aace20282f68-2,https://biolit.fr/observations/observation-0255d41b-294d-4f40-808b-aace20282f68-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia_viridis (2)-scaled.jpg,,TRUE, +N1,58675,sortie-0255d41b-294d-4f40-808b-aace20282f68,https://biolit.fr/sorties/sortie-0255d41b-294d-4f40-808b-aace20282f68/,enorabocher,,1/21/2022 0:00,12.0:55,13.0:15,48.357985000000,-4.533640000000,,Estran de la pointe du Portzic,32302,observation-0255d41b-294d-4f40-808b-aace20282f68-3,https://biolit.fr/observations/observation-0255d41b-294d-4f40-808b-aace20282f68-3/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Calliostoma_zizyphinum (2)-scaled.jpg,,TRUE, +N1,58675,sortie-0255d41b-294d-4f40-808b-aace20282f68,https://biolit.fr/sorties/sortie-0255d41b-294d-4f40-808b-aace20282f68/,enorabocher,,1/21/2022 0:00,12.0:55,13.0:15,48.357985000000,-4.533640000000,,Estran de la pointe du Portzic,32304,observation-0255d41b-294d-4f40-808b-aace20282f68-4,https://biolit.fr/observations/observation-0255d41b-294d-4f40-808b-aace20282f68-4/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Eulalia_viridis_et_Watersipora_subatra (2)-scaled.jpg,,TRUE, +N1,58675,sortie-0255d41b-294d-4f40-808b-aace20282f68,https://biolit.fr/sorties/sortie-0255d41b-294d-4f40-808b-aace20282f68/,enorabocher,,1/21/2022 0:00,12.0:55,13.0:15,48.357985000000,-4.533640000000,,Estran de la pointe du Portzic,32306,observation-0255d41b-294d-4f40-808b-aace20282f68-5,https://biolit.fr/observations/observation-0255d41b-294d-4f40-808b-aace20282f68-5/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20220121_131049 (2)-scaled.jpg,,TRUE, +N1,58675,sortie-0255d41b-294d-4f40-808b-aace20282f68,https://biolit.fr/sorties/sortie-0255d41b-294d-4f40-808b-aace20282f68/,enorabocher,,1/21/2022 0:00,12.0:55,13.0:15,48.357985000000,-4.533640000000,,Estran de la pointe du Portzic,32308,observation-0255d41b-294d-4f40-808b-aace20282f68-6,https://biolit.fr/observations/observation-0255d41b-294d-4f40-808b-aace20282f68-6/,Limacia clavigera,Limacia clavigère,,https://biolit.fr/wp-content/uploads/2023/07/Limacia_clavigera2-scaled.jpg,,TRUE, +N1,58675,sortie-0255d41b-294d-4f40-808b-aace20282f68,https://biolit.fr/sorties/sortie-0255d41b-294d-4f40-808b-aace20282f68/,enorabocher,,1/21/2022 0:00,12.0:55,13.0:15,48.357985000000,-4.533640000000,,Estran de la pointe du Portzic,32310,observation-0255d41b-294d-4f40-808b-aace20282f68-7,https://biolit.fr/observations/observation-0255d41b-294d-4f40-808b-aace20282f68-7/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebra_erinaceus-scaled.jpg,,TRUE, +N1,58675,sortie-0255d41b-294d-4f40-808b-aace20282f68,https://biolit.fr/sorties/sortie-0255d41b-294d-4f40-808b-aace20282f68/,enorabocher,,1/21/2022 0:00,12.0:55,13.0:15,48.357985000000,-4.533640000000,,Estran de la pointe du Portzic,32312,observation-0255d41b-294d-4f40-808b-aace20282f68-8,https://biolit.fr/observations/observation-0255d41b-294d-4f40-808b-aace20282f68-8/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina_obtusata2 (2)-scaled.jpg,,TRUE, +N1,58676,sortie-a0b050f3-e965-46e6-b602-5f9a440cd902,https://biolit.fr/sorties/sortie-a0b050f3-e965-46e6-b602-5f9a440cd902/,Phil,,01/05/2022,11.0000000,11.0:45,47.792644000000,-4.289333000000,,Guilvinec - Finistère,32314,observation-a0b050f3-e965-46e6-b602-5f9a440cd902,https://biolit.fr/observations/observation-a0b050f3-e965-46e6-b602-5f9a440cd902/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/20220105_114245.jpg,,TRUE, +N1,58676,sortie-a0b050f3-e965-46e6-b602-5f9a440cd902,https://biolit.fr/sorties/sortie-a0b050f3-e965-46e6-b602-5f9a440cd902/,Phil,,01/05/2022,11.0000000,11.0:45,47.792644000000,-4.289333000000,,Guilvinec - Finistère,32316,observation-a0b050f3-e965-46e6-b602-5f9a440cd902-2,https://biolit.fr/observations/observation-a0b050f3-e965-46e6-b602-5f9a440cd902-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220105_114252.jpg,,FALSE, +N1,58676,sortie-a0b050f3-e965-46e6-b602-5f9a440cd902,https://biolit.fr/sorties/sortie-a0b050f3-e965-46e6-b602-5f9a440cd902/,Phil,,01/05/2022,11.0000000,11.0:45,47.792644000000,-4.289333000000,,Guilvinec - Finistère,32318,observation-a0b050f3-e965-46e6-b602-5f9a440cd902-3,https://biolit.fr/observations/observation-a0b050f3-e965-46e6-b602-5f9a440cd902-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220105_114328.jpg,,FALSE, +N1,58676,sortie-a0b050f3-e965-46e6-b602-5f9a440cd902,https://biolit.fr/sorties/sortie-a0b050f3-e965-46e6-b602-5f9a440cd902/,Phil,,01/05/2022,11.0000000,11.0:45,47.792644000000,-4.289333000000,,Guilvinec - Finistère,32320,observation-a0b050f3-e965-46e6-b602-5f9a440cd902-4,https://biolit.fr/observations/observation-a0b050f3-e965-46e6-b602-5f9a440cd902-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20220105_114145.jpg,,FALSE, +N1,58677,sortie-7cb7a3e0-df9e-4031-aa0b-95ac887568d5,https://biolit.fr/sorties/sortie-7cb7a3e0-df9e-4031-aa0b-95ac887568d5/,Phil,,01/05/2022,14.0:45,14.0:55,47.896797000000,-3.974456000000,,La Forêt-Fouesnant - Finistère,32322,observation-7cb7a3e0-df9e-4031-aa0b-95ac887568d5,https://biolit.fr/observations/observation-7cb7a3e0-df9e-4031-aa0b-95ac887568d5/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20220105_145340.jpg,,TRUE, +N1,58677,sortie-7cb7a3e0-df9e-4031-aa0b-95ac887568d5,https://biolit.fr/sorties/sortie-7cb7a3e0-df9e-4031-aa0b-95ac887568d5/,Phil,,01/05/2022,14.0:45,14.0:55,47.896797000000,-3.974456000000,,La Forêt-Fouesnant - Finistère,32324,observation-7cb7a3e0-df9e-4031-aa0b-95ac887568d5-2,https://biolit.fr/observations/observation-7cb7a3e0-df9e-4031-aa0b-95ac887568d5-2/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/20220105_144928.jpg,,TRUE, +N1,58678,sortie-76e72e13-45c9-45c5-852c-50061b5e961c,https://biolit.fr/sorties/sortie-76e72e13-45c9-45c5-852c-50061b5e961c/,ddewick,,12/30/2021 0:00,11.0:25,12.0:25,47.963830000000,-4.426992000000,,Menhir des Droits de l'Homme,32326,observation-76e72e13-45c9-45c5-852c-50061b5e961c,https://biolit.fr/observations/observation-76e72e13-45c9-45c5-852c-50061b5e961c/,,,,https://biolit.fr/wp-content/uploads/2023/07/2021-12-30 Bird Plozevet.jpg,,FALSE, +N1,58679,sortie-d0cbf652-aa06-44c0-b712-d4426b641aa7,https://biolit.fr/sorties/sortie-d0cbf652-aa06-44c0-b712-d4426b641aa7/,ddewick,,12/30/2021 0:00,14.0000000,15.0000000,48.038902000000,-4.736619000000,,Pointe du Raz - Cap Sizun,32328,observation-d0cbf652-aa06-44c0-b712-d4426b641aa7,https://biolit.fr/observations/observation-d0cbf652-aa06-44c0-b712-d4426b641aa7/,,,,https://biolit.fr/wp-content/uploads/2023/07/2021-12-30 Seaweed Pointe du Raz Cap Sizun.jpg,,FALSE, +N1,58680,sortie-d737dc48-774a-464b-8ce1-6e8568dbf932,https://biolit.fr/sorties/sortie-d737dc48-774a-464b-8ce1-6e8568dbf932/,ddewick,,12/29/2021 0:00,11.0000000,12.0000000,47.965182000000,-4.4289230000,,Menhir des Droits de l'Homme,32330,observation-d737dc48-774a-464b-8ce1-6e8568dbf932,https://biolit.fr/observations/observation-d737dc48-774a-464b-8ce1-6e8568dbf932/,,,,https://biolit.fr/wp-content/uploads/2023/07/2021-12-29 Shrub.jpg,,FALSE, +N1,58681,sortie-97ee40fd-0576-4f77-8de8-00d017007792,https://biolit.fr/sorties/sortie-97ee40fd-0576-4f77-8de8-00d017007792/,Dorian ROULET,,01/05/2022,12.0000000,12.0000000,47.300510000000,-3.198781000000,Planète Mer,plage de kerel,32332,observation-97ee40fd-0576-4f77-8de8-00d017007792,https://biolit.fr/observations/observation-97ee40fd-0576-4f77-8de8-00d017007792/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220105124143-scaled.jpg,,TRUE, +N1,58681,sortie-97ee40fd-0576-4f77-8de8-00d017007792,https://biolit.fr/sorties/sortie-97ee40fd-0576-4f77-8de8-00d017007792/,Dorian ROULET,,01/05/2022,12.0000000,12.0000000,47.300510000000,-3.198781000000,Planète Mer,plage de kerel,32334,observation-97ee40fd-0576-4f77-8de8-00d017007792-2,https://biolit.fr/observations/observation-97ee40fd-0576-4f77-8de8-00d017007792-2/,Electra pilosa,Ecorce pileuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220105125716-scaled.jpg,,TRUE, +N1,58681,sortie-97ee40fd-0576-4f77-8de8-00d017007792,https://biolit.fr/sorties/sortie-97ee40fd-0576-4f77-8de8-00d017007792/,Dorian ROULET,,01/05/2022,12.0000000,12.0000000,47.300510000000,-3.198781000000,Planète Mer,plage de kerel,32336,observation-97ee40fd-0576-4f77-8de8-00d017007792-3,https://biolit.fr/observations/observation-97ee40fd-0576-4f77-8de8-00d017007792-3/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220105125411-scaled.jpg,,TRUE, +N1,58681,sortie-97ee40fd-0576-4f77-8de8-00d017007792,https://biolit.fr/sorties/sortie-97ee40fd-0576-4f77-8de8-00d017007792/,Dorian ROULET,,01/05/2022,12.0000000,12.0000000,47.300510000000,-3.198781000000,Planète Mer,plage de kerel,32338,observation-97ee40fd-0576-4f77-8de8-00d017007792-4,https://biolit.fr/observations/observation-97ee40fd-0576-4f77-8de8-00d017007792-4/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG20220105125350-scaled.jpg,,TRUE, +N1,58682,sortie-9c9ea057-8359-491b-b6d2-a99786b4e0f3,https://biolit.fr/sorties/sortie-9c9ea057-8359-491b-b6d2-a99786b4e0f3/,Dorian ROULET,,01/04/2022,11.0000000,11.0:45,47.346409000000,-3.152074000000,Planète Mer,plage du port,32340,observation-9c9ea057-8359-491b-b6d2-a99786b4e0f3,https://biolit.fr/observations/observation-9c9ea057-8359-491b-b6d2-a99786b4e0f3/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220104112401-scaled.jpg,,TRUE, +N1,58682,sortie-9c9ea057-8359-491b-b6d2-a99786b4e0f3,https://biolit.fr/sorties/sortie-9c9ea057-8359-491b-b6d2-a99786b4e0f3/,Dorian ROULET,,01/04/2022,11.0000000,11.0:45,47.346409000000,-3.152074000000,Planète Mer,plage du port,32342,observation-9c9ea057-8359-491b-b6d2-a99786b4e0f3-2,https://biolit.fr/observations/observation-9c9ea057-8359-491b-b6d2-a99786b4e0f3-2/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/IMG20220104113758-scaled.jpg,,TRUE, +N1,58684,sortie-6f93f603-b386-43f0-81c0-f374ab476f3b,https://biolit.fr/sorties/sortie-6f93f603-b386-43f0-81c0-f374ab476f3b/,LYDIE BLOCH,,10/27/2021 0:00,14.0000000,14.0:45,43.39616300000,-1.681599000000,,"Plage du Fort de Socoa, 64500 Ciboure",32374,observation-6f93f603-b386-43f0-81c0-f374ab476f3b,https://biolit.fr/observations/observation-6f93f603-b386-43f0-81c0-f374ab476f3b/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/algue IMG_20211027_141749-scaled.jpg,,TRUE, +N1,58684,sortie-6f93f603-b386-43f0-81c0-f374ab476f3b,https://biolit.fr/sorties/sortie-6f93f603-b386-43f0-81c0-f374ab476f3b/,LYDIE BLOCH,,10/27/2021 0:00,14.0000000,14.0:45,43.39616300000,-1.681599000000,,"Plage du Fort de Socoa, 64500 Ciboure",32376,observation-6f93f603-b386-43f0-81c0-f374ab476f3b-2,https://biolit.fr/observations/observation-6f93f603-b386-43f0-81c0-f374ab476f3b-2/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/bernard IMG_20211027_143454-scaled.jpg,,TRUE, +N1,58684,sortie-6f93f603-b386-43f0-81c0-f374ab476f3b,https://biolit.fr/sorties/sortie-6f93f603-b386-43f0-81c0-f374ab476f3b/,LYDIE BLOCH,,10/27/2021 0:00,14.0000000,14.0:45,43.39616300000,-1.681599000000,,"Plage du Fort de Socoa, 64500 Ciboure",32380,observation-6f93f603-b386-43f0-81c0-f374ab476f3b-4,https://biolit.fr/observations/observation-6f93f603-b386-43f0-81c0-f374ab476f3b-4/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/crabe IMG_20211027_141409-scaled.jpg | https://biolit.fr/wp-content/uploads/2021/10/crabe-IMG_20211027_141402-scaled-1.jpg,,TRUE, +N1,58684,sortie-6f93f603-b386-43f0-81c0-f374ab476f3b,https://biolit.fr/sorties/sortie-6f93f603-b386-43f0-81c0-f374ab476f3b/,LYDIE BLOCH,,10/27/2021 0:00,14.0000000,14.0:45,43.39616300000,-1.681599000000,,"Plage du Fort de Socoa, 64500 Ciboure",32382,observation-6f93f603-b386-43f0-81c0-f374ab476f3b-5,https://biolit.fr/observations/observation-6f93f603-b386-43f0-81c0-f374ab476f3b-5/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/crabe IMG_20211027_142211-scaled.jpg,,TRUE, +N1,58684,sortie-6f93f603-b386-43f0-81c0-f374ab476f3b,https://biolit.fr/sorties/sortie-6f93f603-b386-43f0-81c0-f374ab476f3b/,LYDIE BLOCH,,10/27/2021 0:00,14.0000000,14.0:45,43.39616300000,-1.681599000000,,"Plage du Fort de Socoa, 64500 Ciboure",32384,observation-6f93f603-b386-43f0-81c0-f374ab476f3b-6,https://biolit.fr/observations/observation-6f93f603-b386-43f0-81c0-f374ab476f3b-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabe IMG_20211027_142349-scaled.jpg,,FALSE, +N1,58684,sortie-6f93f603-b386-43f0-81c0-f374ab476f3b,https://biolit.fr/sorties/sortie-6f93f603-b386-43f0-81c0-f374ab476f3b/,LYDIE BLOCH,,10/27/2021 0:00,14.0000000,14.0:45,43.39616300000,-1.681599000000,,"Plage du Fort de Socoa, 64500 Ciboure",32386,observation-6f93f603-b386-43f0-81c0-f374ab476f3b-7,https://biolit.fr/observations/observation-6f93f603-b386-43f0-81c0-f374ab476f3b-7/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211027_143527-scaled.jpg,,TRUE, +N1,58684,sortie-6f93f603-b386-43f0-81c0-f374ab476f3b,https://biolit.fr/sorties/sortie-6f93f603-b386-43f0-81c0-f374ab476f3b/,LYDIE BLOCH,,10/27/2021 0:00,14.0000000,14.0:45,43.39616300000,-1.681599000000,,"Plage du Fort de Socoa, 64500 Ciboure",32388,observation-6f93f603-b386-43f0-81c0-f374ab476f3b-8,https://biolit.fr/observations/observation-6f93f603-b386-43f0-81c0-f374ab476f3b-8/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/mouette IMG_20211027_143149-scaled.jpg,,TRUE, +N1,58684,sortie-6f93f603-b386-43f0-81c0-f374ab476f3b,https://biolit.fr/sorties/sortie-6f93f603-b386-43f0-81c0-f374ab476f3b/,LYDIE BLOCH,,10/27/2021 0:00,14.0000000,14.0:45,43.39616300000,-1.681599000000,,"Plage du Fort de Socoa, 64500 Ciboure",32390,observation-6f93f603-b386-43f0-81c0-f374ab476f3b-9,https://biolit.fr/observations/observation-6f93f603-b386-43f0-81c0-f374ab476f3b-9/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/os de seiche IMG_20211027_141124-scaled.jpg,,TRUE, +N1,58685,sortie-129ce6b7-6348-4ed5-8924-af8037cb2d48,https://biolit.fr/sorties/sortie-129ce6b7-6348-4ed5-8924-af8037cb2d48/,LYDIE BLOCH,,10/27/2021 0:00,13.0000000,14.000005,43.39579300000,-1.684460000000,,"Fort de Socoa, 64500 Ciboure",32392,observation-129ce6b7-6348-4ed5-8924-af8037cb2d48,https://biolit.fr/observations/observation-129ce6b7-6348-4ed5-8924-af8037cb2d48/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue IMG_20211027_134804-scaled.jpg,,FALSE, +N1,58685,sortie-129ce6b7-6348-4ed5-8924-af8037cb2d48,https://biolit.fr/sorties/sortie-129ce6b7-6348-4ed5-8924-af8037cb2d48/,LYDIE BLOCH,,10/27/2021 0:00,13.0000000,14.000005,43.39579300000,-1.684460000000,,"Fort de Socoa, 64500 Ciboure",32394,observation-129ce6b7-6348-4ed5-8924-af8037cb2d48-2,https://biolit.fr/observations/observation-129ce6b7-6348-4ed5-8924-af8037cb2d48-2/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/algue verte IMG_20211027_133724-scaled.jpg,,TRUE, +N1,58685,sortie-129ce6b7-6348-4ed5-8924-af8037cb2d48,https://biolit.fr/sorties/sortie-129ce6b7-6348-4ed5-8924-af8037cb2d48/,LYDIE BLOCH,,10/27/2021 0:00,13.0000000,14.000005,43.39579300000,-1.684460000000,,"Fort de Socoa, 64500 Ciboure",32396,observation-129ce6b7-6348-4ed5-8924-af8037cb2d48-3,https://biolit.fr/observations/observation-129ce6b7-6348-4ed5-8924-af8037cb2d48-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabe IMG_20211027_134431-scaled.jpg,,FALSE, +N1,58685,sortie-129ce6b7-6348-4ed5-8924-af8037cb2d48,https://biolit.fr/sorties/sortie-129ce6b7-6348-4ed5-8924-af8037cb2d48/,LYDIE BLOCH,,10/27/2021 0:00,13.0000000,14.000005,43.39579300000,-1.684460000000,,"Fort de Socoa, 64500 Ciboure",32398,observation-129ce6b7-6348-4ed5-8924-af8037cb2d48-4,https://biolit.fr/observations/observation-129ce6b7-6348-4ed5-8924-af8037cb2d48-4/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/crevette IMG_20211027_133056-scaled.jpg,,TRUE, +N1,58685,sortie-129ce6b7-6348-4ed5-8924-af8037cb2d48,https://biolit.fr/sorties/sortie-129ce6b7-6348-4ed5-8924-af8037cb2d48/,LYDIE BLOCH,,10/27/2021 0:00,13.0000000,14.000005,43.39579300000,-1.684460000000,,"Fort de Socoa, 64500 Ciboure",32400,observation-129ce6b7-6348-4ed5-8924-af8037cb2d48-5,https://biolit.fr/observations/observation-129ce6b7-6348-4ed5-8924-af8037cb2d48-5/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/crevette IMG_20211027_134613-scaled.jpg,,TRUE, +N1,58685,sortie-129ce6b7-6348-4ed5-8924-af8037cb2d48,https://biolit.fr/sorties/sortie-129ce6b7-6348-4ed5-8924-af8037cb2d48/,LYDIE BLOCH,,10/27/2021 0:00,13.0000000,14.000005,43.39579300000,-1.684460000000,,"Fort de Socoa, 64500 Ciboure",32402,observation-129ce6b7-6348-4ed5-8924-af8037cb2d48-6,https://biolit.fr/observations/observation-129ce6b7-6348-4ed5-8924-af8037cb2d48-6/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/plante terrestre IMG_20211027_140319-scaled.jpg,,TRUE, +N1,58685,sortie-129ce6b7-6348-4ed5-8924-af8037cb2d48,https://biolit.fr/sorties/sortie-129ce6b7-6348-4ed5-8924-af8037cb2d48/,LYDIE BLOCH,,10/27/2021 0:00,13.0000000,14.000005,43.39579300000,-1.684460000000,,"Fort de Socoa, 64500 Ciboure",32404,observation-129ce6b7-6348-4ed5-8924-af8037cb2d48-7,https://biolit.fr/observations/observation-129ce6b7-6348-4ed5-8924-af8037cb2d48-7/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/plante terrestre IMG_20211027_140323-scaled.jpg,,TRUE, +N1,58686,sortie-3bcc5cbd-05f4-432c-822b-3d1385367247,https://biolit.fr/sorties/sortie-3bcc5cbd-05f4-432c-822b-3d1385367247/,LYDIE BLOCH,,10/27/2021 0:00,11.0000000,11.0:55,43.393549000000,-1.683959000000,,Plage de Socoa,32406,observation-3bcc5cbd-05f4-432c-822b-3d1385367247,https://biolit.fr/observations/observation-3bcc5cbd-05f4-432c-822b-3d1385367247/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211027_113440-scaled.jpg,,TRUE, +N1,58686,sortie-3bcc5cbd-05f4-432c-822b-3d1385367247,https://biolit.fr/sorties/sortie-3bcc5cbd-05f4-432c-822b-3d1385367247/,LYDIE BLOCH,,10/27/2021 0:00,11.0000000,11.0:55,43.393549000000,-1.683959000000,,Plage de Socoa,32408,observation-3bcc5cbd-05f4-432c-822b-3d1385367247-2,https://biolit.fr/observations/observation-3bcc5cbd-05f4-432c-822b-3d1385367247-2/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211027_114202-scaled.jpg,,TRUE, +N1,58686,sortie-3bcc5cbd-05f4-432c-822b-3d1385367247,https://biolit.fr/sorties/sortie-3bcc5cbd-05f4-432c-822b-3d1385367247/,LYDIE BLOCH,,10/27/2021 0:00,11.0000000,11.0:55,43.393549000000,-1.683959000000,,Plage de Socoa,32410,observation-3bcc5cbd-05f4-432c-822b-3d1385367247-3,https://biolit.fr/observations/observation-3bcc5cbd-05f4-432c-822b-3d1385367247-3/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211027_114514-scaled.jpg,,TRUE, +N1,58686,sortie-3bcc5cbd-05f4-432c-822b-3d1385367247,https://biolit.fr/sorties/sortie-3bcc5cbd-05f4-432c-822b-3d1385367247/,LYDIE BLOCH,,10/27/2021 0:00,11.0000000,11.0:55,43.393549000000,-1.683959000000,,Plage de Socoa,32412,observation-3bcc5cbd-05f4-432c-822b-3d1385367247-4,https://biolit.fr/observations/observation-3bcc5cbd-05f4-432c-822b-3d1385367247-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211027_115447-scaled.jpg,,FALSE, +N1,58687,sortie-cc1bc18a-0ad1-442d-bb08-8a5ed7a7ca5f,https://biolit.fr/sorties/sortie-cc1bc18a-0ad1-442d-bb08-8a5ed7a7ca5f/,LYDIE BLOCH,,10/27/2021 0:00,9.0000000,10.0:15,43.445914000000,-1.589937000000,,"Plage d'Erretegia, 64210 Bidart",32416,observation-cc1bc18a-0ad1-442d-bb08-8a5ed7a7ca5f-2,https://biolit.fr/observations/observation-cc1bc18a-0ad1-442d-bb08-8a5ed7a7ca5f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211027_100651-scaled.jpg,,FALSE, +N1,58687,sortie-cc1bc18a-0ad1-442d-bb08-8a5ed7a7ca5f,https://biolit.fr/sorties/sortie-cc1bc18a-0ad1-442d-bb08-8a5ed7a7ca5f/,LYDIE BLOCH,,10/27/2021 0:00,9.0000000,10.0:15,43.445914000000,-1.589937000000,,"Plage d'Erretegia, 64210 Bidart",32418,observation-cc1bc18a-0ad1-442d-bb08-8a5ed7a7ca5f-3,https://biolit.fr/observations/observation-cc1bc18a-0ad1-442d-bb08-8a5ed7a7ca5f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211027_100709-scaled.jpg,,FALSE, +N1,58687,sortie-cc1bc18a-0ad1-442d-bb08-8a5ed7a7ca5f,https://biolit.fr/sorties/sortie-cc1bc18a-0ad1-442d-bb08-8a5ed7a7ca5f/,LYDIE BLOCH,,10/27/2021 0:00,9.0000000,10.0:15,43.445914000000,-1.589937000000,,"Plage d'Erretegia, 64210 Bidart",32420,observation-cc1bc18a-0ad1-442d-bb08-8a5ed7a7ca5f-4,https://biolit.fr/observations/observation-cc1bc18a-0ad1-442d-bb08-8a5ed7a7ca5f-4/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211027_100911-scaled.jpg,,TRUE, +N1,58687,sortie-cc1bc18a-0ad1-442d-bb08-8a5ed7a7ca5f,https://biolit.fr/sorties/sortie-cc1bc18a-0ad1-442d-bb08-8a5ed7a7ca5f/,LYDIE BLOCH,,10/27/2021 0:00,9.0000000,10.0:15,43.445914000000,-1.589937000000,,"Plage d'Erretegia, 64210 Bidart",32422,observation-cc1bc18a-0ad1-442d-bb08-8a5ed7a7ca5f-5,https://biolit.fr/observations/observation-cc1bc18a-0ad1-442d-bb08-8a5ed7a7ca5f-5/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211027_101504-scaled.jpg,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32424,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_18.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32426,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-2,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-2/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/anémone pas sûr.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32428,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-3,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_18.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32430,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-4,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-4/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/Anthopleura balii_6.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32432,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-5,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Blennie sp_4.PNG,,FALSE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32434,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-6,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-6/,Botrylloides diegensis,Botrylle de San Diego,,https://biolit.fr/wp-content/uploads/2023/07/botrylloides diegensis.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32436,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-7,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Bryo sp_0.PNG,,FALSE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32438,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-8,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-8/,Callista chione,Vernis,,https://biolit.fr/wp-content/uploads/2023/07/Callista chione_0.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32440,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-9,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-9/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_15.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32442,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-10,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-10/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_18.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32444,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-11,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-11/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_12.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32446,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-12,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Didemnide sp.PNG,,FALSE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32448,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-13,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-13/,Hiatella rugosa,Hiatelle rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/Hiatella rugosa_0.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32450,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-14,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-14/,Isozoanthus sulcatus,Anémone chocolat,,https://biolit.fr/wp-content/uploads/2023/07/Isozoanthus sulcatus_4.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32452,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-15,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-15/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_13.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32454,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-16,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-16/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/littorina littorea_6.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32455,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-17,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-17/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina obtusata_1.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32457,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-18,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-18/,Modiolus barbatus,Modiole barbue,,https://biolit.fr/wp-content/uploads/2023/07/Modiolus barbatus_2.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32459,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-19,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-19/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_14.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32461,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-20,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-20/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_17.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32463,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-21,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-21/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus_6.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32465,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-22,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-22/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/Pisidia longicornis_4.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32467,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-23,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-23/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_20.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32469,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-24,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-24/,Spirobranchus triqueter / lamarcki,Serpule triangulaire,,https://biolit.fr/wp-content/uploads/2023/07/Spirobranchus triqueter.PNG,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32471,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-25,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-25/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Steromphala umbilicalis-scaled.jpg,,TRUE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32472,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-26,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/Tunicier sp 1.PNG,,FALSE, +N1,58688,sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403,https://biolit.fr/sorties/sortie-5e3ac94f-cddb-48cd-9c7f-f50c29b52403/,Roman,,12/24/2021 0:00,14.0000000,14.0:45,47.702904000000,-3.351925000000,,Port-Louis,32474,observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-27,https://biolit.fr/observations/observation-5e3ac94f-cddb-48cd-9c7f-f50c29b52403-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/tunicier sp.PNG,,FALSE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32476,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_17.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32478,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-2,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacaea_0.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32480,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-3,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-3/,Astropecten irregularis,Etoile-peigne commune,,https://biolit.fr/wp-content/uploads/2023/07/Astropecten irregularis.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32482,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-4,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-4/,Atelecyclus undecimdentatus,Grand crabe circulaire,,https://biolit.fr/wp-content/uploads/2023/07/Atelecyclus undecimdentatus_2.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32484,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-5,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-5/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/Aulactinia verrucosa_6.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32486,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-6,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-6/,Calidris alba,Bécasseau sanderling,,https://biolit.fr/wp-content/uploads/2023/07/calidris alba.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32488,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-7,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-7/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_7.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32490,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-8,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-8/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_11.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32492,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-9,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-9/,Donacilla cornea,Donacilla cornée,,https://biolit.fr/wp-content/uploads/2023/07/Donacilla cornea_1.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32494,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-10,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-10/,Dosinia exoleta,Dosinie radiée,,https://biolit.fr/wp-content/uploads/2023/07/Dosinia exolata.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32496,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-11,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-11/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/Echinocardium cordatum_1.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32498,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-12,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-12/,Epitonium clathrus,Scalaire,,https://biolit.fr/wp-content/uploads/2023/07/Epitonium clathrus.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32500,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-13,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-13/,Euspira catena,Natice porte-chaîne,,https://biolit.fr/wp-content/uploads/2023/07/Eutice catena.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32502,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-14,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-14/,Gari depressa,Psammobie déprimée,,https://biolit.fr/wp-content/uploads/2023/07/Gari depressa_9.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32504,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-15,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbula magus.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32506,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-16,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-16/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Glycymeris glycymeris_1.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32508,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-17,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-17/,Patella pellucida,Helcion,,https://biolit.fr/wp-content/uploads/2023/07/Hlecion pelludica.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32510,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-18,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-18/,Isozoanthus sulcatus,Anémone chocolat,,https://biolit.fr/wp-content/uploads/2023/07/Isozoanthus sulcatus_3.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32512,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-19,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-19/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_5.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32514,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-20,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-20/,Lutraria angustior,Lutraire étroite,,https://biolit.fr/wp-content/uploads/2023/07/Lutraria angustior.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32516,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-21,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-21/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/2023/07/Mactra stultorum_1.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32518,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-22,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-22/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia_7.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32520,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-23,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-23/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_13.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32522,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-24,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-24/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/Oeuf de raie.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32524,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-25,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-25/,Scyliorhinus canicula,Capsule de petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/Oeuf de roussette.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32526,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-26,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-26/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_19.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32528,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-27,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-27/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes philippinarum_0.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32532,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-29,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-29/,Fabulina fabula,Telline striée,,https://biolit.fr/wp-content/uploads/2023/07/Tellina fabula.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32534,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-30,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-30/,Trivia arctica,Grain de café rose,,https://biolit.fr/wp-content/uploads/2023/07/Trivia arctica_2.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32536,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-31,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-31/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/Trivia monacha_3.PNG,,TRUE, +N1,58689,sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d,https://biolit.fr/sorties/sortie-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d/,Roman,,12/23/2021 0:00,16.0000000,17.0000000,47.651435000000,-3.20454300000,,étel,32538,observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-32,https://biolit.fr/observations/observation-44a92cd7-84c1-4d65-aa8d-9a6e73e6bc1d-32/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/Zostera marina_3.PNG,,TRUE, +N1,58690,sortie-daebef4f-aa04-469d-ac22-fb8a59823e9b,https://biolit.fr/sorties/sortie-daebef4f-aa04-469d-ac22-fb8a59823e9b/,Isabelle perrin,,12/26/2021 0:00,14.0000000,15.0000000,46.23535,-1.55973,,phare des baleines,32540,observation-daebef4f-aa04-469d-ac22-fb8a59823e9b,https://biolit.fr/observations/observation-daebef4f-aa04-469d-ac22-fb8a59823e9b/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0416[1]-scaled.jpg,,FALSE, +N1,58690,sortie-daebef4f-aa04-469d-ac22-fb8a59823e9b,https://biolit.fr/sorties/sortie-daebef4f-aa04-469d-ac22-fb8a59823e9b/,Isabelle perrin,,12/26/2021 0:00,14.0000000,15.0000000,46.23535,-1.55973,,phare des baleines,32542,observation-daebef4f-aa04-469d-ac22-fb8a59823e9b-2,https://biolit.fr/observations/observation-daebef4f-aa04-469d-ac22-fb8a59823e9b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0417[1]-scaled.jpg,,FALSE, +N1,58690,sortie-daebef4f-aa04-469d-ac22-fb8a59823e9b,https://biolit.fr/sorties/sortie-daebef4f-aa04-469d-ac22-fb8a59823e9b/,Isabelle perrin,,12/26/2021 0:00,14.0000000,15.0000000,46.23535,-1.55973,,phare des baleines,32544,observation-daebef4f-aa04-469d-ac22-fb8a59823e9b-3,https://biolit.fr/observations/observation-daebef4f-aa04-469d-ac22-fb8a59823e9b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0418[1]-scaled.jpg,,FALSE, +N1,58690,sortie-daebef4f-aa04-469d-ac22-fb8a59823e9b,https://biolit.fr/sorties/sortie-daebef4f-aa04-469d-ac22-fb8a59823e9b/,Isabelle perrin,,12/26/2021 0:00,14.0000000,15.0000000,46.23535,-1.55973,,phare des baleines,32546,observation-daebef4f-aa04-469d-ac22-fb8a59823e9b-4,https://biolit.fr/observations/observation-daebef4f-aa04-469d-ac22-fb8a59823e9b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0430[1]-scaled.jpg,,FALSE, +N1,58691,sortie-344e17d7-948c-4c6f-8f49-1a6b4070a964,https://biolit.fr/sorties/sortie-344e17d7-948c-4c6f-8f49-1a6b4070a964/,Yann,,12/26/2021 0:00,16.0:35,17.0:35,47.518096000000,-2.498591000000,,Pen Lan,32548,observation-344e17d7-948c-4c6f-8f49-1a6b4070a964,https://biolit.fr/observations/observation-344e17d7-948c-4c6f-8f49-1a6b4070a964/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/Goélands argentés et bécasseaux-scaled.jpg,,TRUE, +N1,58691,sortie-344e17d7-948c-4c6f-8f49-1a6b4070a964,https://biolit.fr/sorties/sortie-344e17d7-948c-4c6f-8f49-1a6b4070a964/,Yann,,12/26/2021 0:00,16.0:35,17.0:35,47.518096000000,-2.498591000000,,Pen Lan,32550,observation-344e17d7-948c-4c6f-8f49-1a6b4070a964-2,https://biolit.fr/observations/observation-344e17d7-948c-4c6f-8f49-1a6b4070a964-2/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Moules et chapeaux-scaled.jpg,,TRUE, +N1,58691,sortie-344e17d7-948c-4c6f-8f49-1a6b4070a964,https://biolit.fr/sorties/sortie-344e17d7-948c-4c6f-8f49-1a6b4070a964/,Yann,,12/26/2021 0:00,16.0:35,17.0:35,47.518096000000,-2.498591000000,,Pen Lan,32552,observation-344e17d7-948c-4c6f-8f49-1a6b4070a964-3,https://biolit.fr/observations/observation-344e17d7-948c-4c6f-8f49-1a6b4070a964-3/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Huitres-scaled.jpg,,TRUE, +N1,58691,sortie-344e17d7-948c-4c6f-8f49-1a6b4070a964,https://biolit.fr/sorties/sortie-344e17d7-948c-4c6f-8f49-1a6b4070a964/,Yann,,12/26/2021 0:00,16.0:35,17.0:35,47.518096000000,-2.498591000000,,Pen Lan,32553,observation-344e17d7-948c-4c6f-8f49-1a6b4070a964-4,https://biolit.fr/observations/observation-344e17d7-948c-4c6f-8f49-1a6b4070a964-4/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/Aigrette garzette en vol-scaled.jpg,,TRUE, +N1,58692,sortie-c0b06419-7292-4e76-a016-1f2b78f7d1c6,https://biolit.fr/sorties/sortie-c0b06419-7292-4e76-a016-1f2b78f7d1c6/,Phil,,06/05/2021,17.0:15,17.0000000,47.869956000000,-3.911585000000,,Concarneau - Finistère,32555,observation-c0b06419-7292-4e76-a016-1f2b78f7d1c6,https://biolit.fr/observations/observation-c0b06419-7292-4e76-a016-1f2b78f7d1c6/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210506_171642.jpg,,TRUE, +N1,58692,sortie-c0b06419-7292-4e76-a016-1f2b78f7d1c6,https://biolit.fr/sorties/sortie-c0b06419-7292-4e76-a016-1f2b78f7d1c6/,Phil,,06/05/2021,17.0:15,17.0000000,47.869956000000,-3.911585000000,,Concarneau - Finistère,32557,observation-c0b06419-7292-4e76-a016-1f2b78f7d1c6-2,https://biolit.fr/observations/observation-c0b06419-7292-4e76-a016-1f2b78f7d1c6-2/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/20210506_171657.jpg,,TRUE, +N1,58692,sortie-c0b06419-7292-4e76-a016-1f2b78f7d1c6,https://biolit.fr/sorties/sortie-c0b06419-7292-4e76-a016-1f2b78f7d1c6/,Phil,,06/05/2021,17.0:15,17.0000000,47.869956000000,-3.911585000000,,Concarneau - Finistère,32559,observation-c0b06419-7292-4e76-a016-1f2b78f7d1c6-3,https://biolit.fr/observations/observation-c0b06419-7292-4e76-a016-1f2b78f7d1c6-3/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/20210506_171544.jpg,,TRUE, +N1,58693,sortie-3e6cfe43-2db0-4446-b6df-c358a9deda91,https://biolit.fr/sorties/sortie-3e6cfe43-2db0-4446-b6df-c358a9deda91/,Phil,,02/11/2021,10.0:55,11.000005,47.89617000000,-3.96759600000,,La Forêt-Fouesnant - Finistère,32565,observation-3e6cfe43-2db0-4446-b6df-c358a9deda91-3,https://biolit.fr/observations/observation-3e6cfe43-2db0-4446-b6df-c358a9deda91-3/,Scyliorhinus canicula,Capsule de petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20210211_110213-scaled.jpg,,TRUE, +N1,58694,sortie-240d4ef9-c3e7-48c5-892e-2caa1bc8f498,https://biolit.fr/sorties/sortie-240d4ef9-c3e7-48c5-892e-2caa1bc8f498/,Phil,,06/11/2021,18.0:45,18.0000000,47.864149000000,-4.084210000000,,Bénodet - Finistère,32567,observation-240d4ef9-c3e7-48c5-892e-2caa1bc8f498,https://biolit.fr/observations/observation-240d4ef9-c3e7-48c5-892e-2caa1bc8f498/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20210611_184913.jpg,,TRUE, +N1,58695,sortie-f615fd4d-43e4-4fa8-9687-6adbd9d058a3,https://biolit.fr/sorties/sortie-f615fd4d-43e4-4fa8-9687-6adbd9d058a3/,Phil,,11/25/2021 0:00,11.0:35,11.0000000,47.792411000000,-4.279273000000,,Léchiagat - Finistère,32573,observation-f615fd4d-43e4-4fa8-9687-6adbd9d058a3-3,https://biolit.fr/observations/observation-f615fd4d-43e4-4fa8-9687-6adbd9d058a3-3/,,,,https://biolit.fr/wp-content/uploads/2021/11/20211125_113737.jpg | https://biolit.fr/wp-content/uploads/2023/07/20211125_113734.jpg | https://biolit.fr/wp-content/uploads/2021/11/20211125_113702.jpg,,FALSE, +N1,58696,sortie-15f7a37a-d5c1-41b6-86f5-fa743cee74f6,https://biolit.fr/sorties/sortie-15f7a37a-d5c1-41b6-86f5-fa743cee74f6/,Phil,,09/08/2021,10.0:55,11.0000000,47.895246000000,-3.964433000000,,La Forêt-Fouesnant - Finistère,32575,observation-15f7a37a-d5c1-41b6-86f5-fa743cee74f6,https://biolit.fr/observations/observation-15f7a37a-d5c1-41b6-86f5-fa743cee74f6/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/20210908_105608.jpg,,TRUE, +N1,58696,sortie-15f7a37a-d5c1-41b6-86f5-fa743cee74f6,https://biolit.fr/sorties/sortie-15f7a37a-d5c1-41b6-86f5-fa743cee74f6/,Phil,,09/08/2021,10.0:55,11.0000000,47.895246000000,-3.964433000000,,La Forêt-Fouesnant - Finistère,32577,observation-15f7a37a-d5c1-41b6-86f5-fa743cee74f6-2,https://biolit.fr/observations/observation-15f7a37a-d5c1-41b6-86f5-fa743cee74f6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210908_105616.jpg,,FALSE, +N1,58696,sortie-15f7a37a-d5c1-41b6-86f5-fa743cee74f6,https://biolit.fr/sorties/sortie-15f7a37a-d5c1-41b6-86f5-fa743cee74f6/,Phil,,09/08/2021,10.0:55,11.0000000,47.895246000000,-3.964433000000,,La Forêt-Fouesnant - Finistère,32579,observation-15f7a37a-d5c1-41b6-86f5-fa743cee74f6-3,https://biolit.fr/observations/observation-15f7a37a-d5c1-41b6-86f5-fa743cee74f6-3/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/20210908_105703.jpg,,TRUE, +N1,58696,sortie-15f7a37a-d5c1-41b6-86f5-fa743cee74f6,https://biolit.fr/sorties/sortie-15f7a37a-d5c1-41b6-86f5-fa743cee74f6/,Phil,,09/08/2021,10.0:55,11.0000000,47.895246000000,-3.964433000000,,La Forêt-Fouesnant - Finistère,32581,observation-15f7a37a-d5c1-41b6-86f5-fa743cee74f6-4,https://biolit.fr/observations/observation-15f7a37a-d5c1-41b6-86f5-fa743cee74f6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210908_105740.jpg,,FALSE, +N1,58696,sortie-15f7a37a-d5c1-41b6-86f5-fa743cee74f6,https://biolit.fr/sorties/sortie-15f7a37a-d5c1-41b6-86f5-fa743cee74f6/,Phil,,09/08/2021,10.0:55,11.0000000,47.895246000000,-3.964433000000,,La Forêt-Fouesnant - Finistère,32583,observation-15f7a37a-d5c1-41b6-86f5-fa743cee74f6-5,https://biolit.fr/observations/observation-15f7a37a-d5c1-41b6-86f5-fa743cee74f6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210908_110024.jpg,,FALSE, +N1,58697,sortie-7764029b-5f57-4960-8d68-59bacc2aabe1,https://biolit.fr/sorties/sortie-7764029b-5f57-4960-8d68-59bacc2aabe1/,PHG,,12/19/2021 0:00,9.0000000,16.0000000,43.418443000000,-1.625001000000,,Plage Mayarco,32585,observation-7764029b-5f57-4960-8d68-59bacc2aabe1,https://biolit.fr/observations/observation-7764029b-5f57-4960-8d68-59bacc2aabe1/,,,,https://biolit.fr/wp-content/uploads/2023/07/SJ-1-scaled.jpg,,FALSE, +N1,58697,sortie-7764029b-5f57-4960-8d68-59bacc2aabe1,https://biolit.fr/sorties/sortie-7764029b-5f57-4960-8d68-59bacc2aabe1/,PHG,,12/19/2021 0:00,9.0000000,16.0000000,43.418443000000,-1.625001000000,,Plage Mayarco,32587,observation-7764029b-5f57-4960-8d68-59bacc2aabe1-2,https://biolit.fr/observations/observation-7764029b-5f57-4960-8d68-59bacc2aabe1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/SJ-2-scaled.jpg,,FALSE, +N1,58697,sortie-7764029b-5f57-4960-8d68-59bacc2aabe1,https://biolit.fr/sorties/sortie-7764029b-5f57-4960-8d68-59bacc2aabe1/,PHG,,12/19/2021 0:00,9.0000000,16.0000000,43.418443000000,-1.625001000000,,Plage Mayarco,32589,observation-7764029b-5f57-4960-8d68-59bacc2aabe1-3,https://biolit.fr/observations/observation-7764029b-5f57-4960-8d68-59bacc2aabe1-3/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/SJ-3-scaled.jpg,,TRUE, +N1,58697,sortie-7764029b-5f57-4960-8d68-59bacc2aabe1,https://biolit.fr/sorties/sortie-7764029b-5f57-4960-8d68-59bacc2aabe1/,PHG,,12/19/2021 0:00,9.0000000,16.0000000,43.418443000000,-1.625001000000,,Plage Mayarco,32591,observation-7764029b-5f57-4960-8d68-59bacc2aabe1-4,https://biolit.fr/observations/observation-7764029b-5f57-4960-8d68-59bacc2aabe1-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/SJ-4-scaled.jpg,,FALSE, +N1,58698,sortie-6d998b53-9b33-4b71-8866-f9dfec3c6e61,https://biolit.fr/sorties/sortie-6d998b53-9b33-4b71-8866-f9dfec3c6e61/,PHG,,12/20/2021 0:00,8.0:35,16.0000000,43.431698000000,-1.600159000000,,Plage Uhabia,32593,observation-6d998b53-9b33-4b71-8866-f9dfec3c6e61,https://biolit.fr/observations/observation-6d998b53-9b33-4b71-8866-f9dfec3c6e61/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/Bidar-1-scaled.jpg,,TRUE, +N1,58698,sortie-6d998b53-9b33-4b71-8866-f9dfec3c6e61,https://biolit.fr/sorties/sortie-6d998b53-9b33-4b71-8866-f9dfec3c6e61/,PHG,,12/20/2021 0:00,8.0:35,16.0000000,43.431698000000,-1.600159000000,,Plage Uhabia,32595,observation-6d998b53-9b33-4b71-8866-f9dfec3c6e61-2,https://biolit.fr/observations/observation-6d998b53-9b33-4b71-8866-f9dfec3c6e61-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Bidart-2-scaled.jpg,,FALSE, +N1,58698,sortie-6d998b53-9b33-4b71-8866-f9dfec3c6e61,https://biolit.fr/sorties/sortie-6d998b53-9b33-4b71-8866-f9dfec3c6e61/,PHG,,12/20/2021 0:00,8.0:35,16.0000000,43.431698000000,-1.600159000000,,Plage Uhabia,32597,observation-6d998b53-9b33-4b71-8866-f9dfec3c6e61-3,https://biolit.fr/observations/observation-6d998b53-9b33-4b71-8866-f9dfec3c6e61-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Bidart-3-scaled.jpg,,FALSE, +N1,58698,sortie-6d998b53-9b33-4b71-8866-f9dfec3c6e61,https://biolit.fr/sorties/sortie-6d998b53-9b33-4b71-8866-f9dfec3c6e61/,PHG,,12/20/2021 0:00,8.0:35,16.0000000,43.431698000000,-1.600159000000,,Plage Uhabia,32599,observation-6d998b53-9b33-4b71-8866-f9dfec3c6e61-4,https://biolit.fr/observations/observation-6d998b53-9b33-4b71-8866-f9dfec3c6e61-4/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Bidart-4-scaled.jpg,,TRUE, +N1,58699,sortie-78d9df49-82e0-4a3c-8a60-f587484aa73e,https://biolit.fr/sorties/sortie-78d9df49-82e0-4a3c-8a60-f587484aa73e/,Phil,,9/23/2021 0:00,12.0:25,12.0000000,47.864511000000,-4.084223000000,,Bénodet - Finistère,32601,observation-78d9df49-82e0-4a3c-8a60-f587484aa73e,https://biolit.fr/observations/observation-78d9df49-82e0-4a3c-8a60-f587484aa73e/,Suaeda maritima,Soude maritime,,https://biolit.fr/wp-content/uploads/2023/07/20210923_123136.jpg,,TRUE, +N1,58699,sortie-78d9df49-82e0-4a3c-8a60-f587484aa73e,https://biolit.fr/sorties/sortie-78d9df49-82e0-4a3c-8a60-f587484aa73e/,Phil,,9/23/2021 0:00,12.0:25,12.0000000,47.864511000000,-4.084223000000,,Bénodet - Finistère,32603,observation-78d9df49-82e0-4a3c-8a60-f587484aa73e-2,https://biolit.fr/observations/observation-78d9df49-82e0-4a3c-8a60-f587484aa73e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210923_123132.jpg,,FALSE, +N1,58699,sortie-78d9df49-82e0-4a3c-8a60-f587484aa73e,https://biolit.fr/sorties/sortie-78d9df49-82e0-4a3c-8a60-f587484aa73e/,Phil,,9/23/2021 0:00,12.0:25,12.0000000,47.864511000000,-4.084223000000,,Bénodet - Finistère,32605,observation-78d9df49-82e0-4a3c-8a60-f587484aa73e-3,https://biolit.fr/observations/observation-78d9df49-82e0-4a3c-8a60-f587484aa73e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210923_123125.jpg,,FALSE, +N1,58700,sortie-d95639e5-c6ff-49d7-b229-7c630b99f5f0,https://biolit.fr/sorties/sortie-d95639e5-c6ff-49d7-b229-7c630b99f5f0/,Phil,,11/03/2021,12.0000000,12.0000000,47.792491000000,-4.28713800000,,Guilvinec - Finistère,32607,observation-d95639e5-c6ff-49d7-b229-7c630b99f5f0,https://biolit.fr/observations/observation-d95639e5-c6ff-49d7-b229-7c630b99f5f0/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211103_121700.jpg,,FALSE, +N1,58700,sortie-d95639e5-c6ff-49d7-b229-7c630b99f5f0,https://biolit.fr/sorties/sortie-d95639e5-c6ff-49d7-b229-7c630b99f5f0/,Phil,,11/03/2021,12.0000000,12.0000000,47.792491000000,-4.28713800000,,Guilvinec - Finistère,32609,observation-d95639e5-c6ff-49d7-b229-7c630b99f5f0-2,https://biolit.fr/observations/observation-d95639e5-c6ff-49d7-b229-7c630b99f5f0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211103_121335.jpg,,FALSE, +N1,58700,sortie-d95639e5-c6ff-49d7-b229-7c630b99f5f0,https://biolit.fr/sorties/sortie-d95639e5-c6ff-49d7-b229-7c630b99f5f0/,Phil,,11/03/2021,12.0000000,12.0000000,47.792491000000,-4.28713800000,,Guilvinec - Finistère,32611,observation-d95639e5-c6ff-49d7-b229-7c630b99f5f0-3,https://biolit.fr/observations/observation-d95639e5-c6ff-49d7-b229-7c630b99f5f0-3/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20211103_121639.jpg,,TRUE, +N1,58700,sortie-d95639e5-c6ff-49d7-b229-7c630b99f5f0,https://biolit.fr/sorties/sortie-d95639e5-c6ff-49d7-b229-7c630b99f5f0/,Phil,,11/03/2021,12.0000000,12.0000000,47.792491000000,-4.28713800000,,Guilvinec - Finistère,32613,observation-d95639e5-c6ff-49d7-b229-7c630b99f5f0-4,https://biolit.fr/observations/observation-d95639e5-c6ff-49d7-b229-7c630b99f5f0-4/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/20211103_121416.jpg,,TRUE, +N1,58701,sortie-63654f68-cb05-41c6-8ebd-76bf585a7387,https://biolit.fr/sorties/sortie-63654f68-cb05-41c6-8ebd-76bf585a7387/,Norbert,,12/21/2021 0:00,15.0000000,17.0000000,46.760491000000,-56.16963700000,,"Saint-Pierre (97500), Pointe Blanche",32615,observation-63654f68-cb05-41c6-8ebd-76bf585a7387,https://biolit.fr/observations/observation-63654f68-cb05-41c6-8ebd-76bf585a7387/,Pagurus bernhardus,Bernard-l'ermite commun,,https://biolit.fr/wp-content/uploads/2023/07/Pagurus acadianus_IMG_6558.jpeg,,TRUE, +N1,58702,sortie-7ce1754b-2b95-4387-8a0a-f2fcb95045b4,https://biolit.fr/sorties/sortie-7ce1754b-2b95-4387-8a0a-f2fcb95045b4/,Norbert,,12/20/2021 0:00,11.0:25,12.0000000,46.761079000000,-56.171010000000,,"Saint-Pierre (97500), Pointe Blanche",32617,observation-7ce1754b-2b95-4387-8a0a-f2fcb95045b4,https://biolit.fr/observations/observation-7ce1754b-2b95-4387-8a0a-f2fcb95045b4/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6658.jpeg,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32619,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_17.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32621,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-2,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-2/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_9.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32623,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-3,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-3/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_13.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32625,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-4,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-4/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_20.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32627,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-5,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-5/,Berthella plumula,Berthelle plume,,https://biolit.fr/wp-content/uploads/2023/07/Berthella plumula_2.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32629,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-6,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-6/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_14.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32631,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-7,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-7/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_17.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32633,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-8,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-8/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/cerastoderma edule_6.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32634,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-9,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-9/,Ciliata mustela,Motelle à 5 barbillons,,https://biolit.fr/wp-content/uploads/2023/07/Ciliata mustela_3.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32636,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-10,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-10/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Crassotreas gigas.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32638,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-11,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-11/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crepidula fornicata_2.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32640,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-12,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_25.PNG,,FALSE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32642,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-13,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-13/,Isozoanthus sulcatus,Anémone chocolat,,https://biolit.fr/wp-content/uploads/2023/07/Isozoanthus sulcatus_2.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32644,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-14,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-14/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_12.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32646,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-15,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-15/,Metridium senile,Œillet de mer,,https://biolit.fr/wp-content/uploads/2023/07/Metridium senile_0.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32648,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-16,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-16/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia_6.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32650,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-17,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-17/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/mordocet.JPG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32651,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-18,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-18/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebra erinaceus_3.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32653,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-19,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-19/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_7.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32655,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-20,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-20/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/Palaemon sp_0.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32657,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-21,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-21/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/Ponte de pourpre.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32659,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-22,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-22/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_19.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32661,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-23,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-23/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_18.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32663,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-24,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-24/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes decusattus.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32665,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-25,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ver sp_2.PNG,,FALSE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32667,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-26,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-26/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_17.PNG,,TRUE, +N1,58703,sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1,https://biolit.fr/sorties/sortie-fa89841d-9082-4b74-b3b6-b69d8a7b27a1/,Roman,,12/19/2021 0:00,11.0000000,12.0000000,47.70338800000,-3.349683000000,,Port-Louis,32669,observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-27,https://biolit.fr/observations/observation-fa89841d-9082-4b74-b3b6-b69d8a7b27a1-27/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_15.PNG,,TRUE, +N1,58704,sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582,https://biolit.fr/sorties/sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582/,Roman,,12/11/2021,11.0000000,12.0000000,48.750472000000,-1.57292300000,,Carolles,32671,observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582,https://biolit.fr/observations/observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_16.PNG,,TRUE, +N1,58704,sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582,https://biolit.fr/sorties/sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582/,Roman,,12/11/2021,11.0000000,12.0000000,48.750472000000,-1.57292300000,,Carolles,32673,observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-2,https://biolit.fr/observations/observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_16.PNG,,TRUE, +N1,58704,sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582,https://biolit.fr/sorties/sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582/,Roman,,12/11/2021,11.0000000,12.0000000,48.750472000000,-1.57292300000,,Carolles,32675,observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-3,https://biolit.fr/observations/observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capsule d'oeuf de raie.PNG,,FALSE, +N1,58704,sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582,https://biolit.fr/sorties/sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582/,Roman,,12/11/2021,11.0000000,12.0000000,48.750472000000,-1.57292300000,,Carolles,32677,observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-4,https://biolit.fr/observations/observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-4/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_5.PNG,,TRUE, +N1,58704,sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582,https://biolit.fr/sorties/sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582/,Roman,,12/11/2021,11.0000000,12.0000000,48.750472000000,-1.57292300000,,Carolles,32679,observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-5,https://biolit.fr/observations/observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-5/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crepidula fornicata_1.PNG,,TRUE, +N1,58704,sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582,https://biolit.fr/sorties/sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582/,Roman,,12/11/2021,11.0000000,12.0000000,48.750472000000,-1.57292300000,,Carolles,32681,observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-6,https://biolit.fr/observations/observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-6/,Glycymeris pilosa,Amande de mer velue,,https://biolit.fr/wp-content/uploads/2023/07/Glycymeris glycymeris_0.PNG,,TRUE, +N1,58704,sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582,https://biolit.fr/sorties/sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582/,Roman,,12/11/2021,11.0000000,12.0000000,48.750472000000,-1.57292300000,,Carolles,32683,observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-7,https://biolit.fr/observations/observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-7/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Hemigrapsus sanguineus-scaled.jpg,,TRUE, +N1,58704,sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582,https://biolit.fr/sorties/sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582/,Roman,,12/11/2021,11.0000000,12.0000000,48.750472000000,-1.57292300000,,Carolles,32684,observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-8,https://biolit.fr/observations/observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-8/,Myosotella myosotis,Grande ellobie,,https://biolit.fr/wp-content/uploads/2023/07/Myosotella myosotis.PNG,,TRUE, +N1,58704,sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582,https://biolit.fr/sorties/sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582/,Roman,,12/11/2021,11.0000000,12.0000000,48.750472000000,-1.57292300000,,Carolles,32686,observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-9,https://biolit.fr/observations/observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-9/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_16.PNG,,TRUE, +N1,58704,sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582,https://biolit.fr/sorties/sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582/,Roman,,12/11/2021,11.0000000,12.0000000,48.750472000000,-1.57292300000,,Carolles,32688,observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-10,https://biolit.fr/observations/observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-10/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus_5.PNG,,TRUE, +N1,58704,sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582,https://biolit.fr/sorties/sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582/,Roman,,12/11/2021,11.0000000,12.0000000,48.750472000000,-1.57292300000,,Carolles,32690,observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-11,https://biolit.fr/observations/observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-11/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/Ponte de buccinum undatum.PNG,,TRUE, +N1,58704,sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582,https://biolit.fr/sorties/sortie-8fae1e18-ae47-436a-af4c-2f7d7d30c582/,Roman,,12/11/2021,11.0000000,12.0000000,48.750472000000,-1.57292300000,,Carolles,32692,observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-12,https://biolit.fr/observations/observation-8fae1e18-ae47-436a-af4c-2f7d7d30c582-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/scarabée sp.PNG,,FALSE, +N1,58705,sortie-5f16663b-f3da-47fc-8f91-8a8424b684fb,https://biolit.fr/sorties/sortie-5f16663b-f3da-47fc-8f91-8a8424b684fb/,Marine,,12/14/2021 0:00,15.0000000,15.0:15,43.240995000000,5.362447000000,Planète Mer,Plage de la batterie,32694,observation-5f16663b-f3da-47fc-8f91-8a8424b684fb,https://biolit.fr/observations/observation-5f16663b-f3da-47fc-8f91-8a8424b684fb/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211214_151211_compress4-scaled.jpg,,FALSE, +N1,58705,sortie-5f16663b-f3da-47fc-8f91-8a8424b684fb,https://biolit.fr/sorties/sortie-5f16663b-f3da-47fc-8f91-8a8424b684fb/,Marine,,12/14/2021 0:00,15.0000000,15.0:15,43.240995000000,5.362447000000,Planète Mer,Plage de la batterie,32696,observation-5f16663b-f3da-47fc-8f91-8a8424b684fb-2,https://biolit.fr/observations/observation-5f16663b-f3da-47fc-8f91-8a8424b684fb-2/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211214_151349_compress97-scaled.jpg,,TRUE, +N1,58705,sortie-5f16663b-f3da-47fc-8f91-8a8424b684fb,https://biolit.fr/sorties/sortie-5f16663b-f3da-47fc-8f91-8a8424b684fb/,Marine,,12/14/2021 0:00,15.0000000,15.0:15,43.240995000000,5.362447000000,Planète Mer,Plage de la batterie,32698,observation-5f16663b-f3da-47fc-8f91-8a8424b684fb-3,https://biolit.fr/observations/observation-5f16663b-f3da-47fc-8f91-8a8424b684fb-3/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211214_151404_compress95-scaled.jpg,,TRUE, +N1,58705,sortie-5f16663b-f3da-47fc-8f91-8a8424b684fb,https://biolit.fr/sorties/sortie-5f16663b-f3da-47fc-8f91-8a8424b684fb/,Marine,,12/14/2021 0:00,15.0000000,15.0:15,43.240995000000,5.362447000000,Planète Mer,Plage de la batterie,32700,observation-5f16663b-f3da-47fc-8f91-8a8424b684fb-4,https://biolit.fr/observations/observation-5f16663b-f3da-47fc-8f91-8a8424b684fb-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211214_150936_compress27-scaled.jpg,,FALSE, +N1,58705,sortie-5f16663b-f3da-47fc-8f91-8a8424b684fb,https://biolit.fr/sorties/sortie-5f16663b-f3da-47fc-8f91-8a8424b684fb/,Marine,,12/14/2021 0:00,15.0000000,15.0:15,43.240995000000,5.362447000000,Planète Mer,Plage de la batterie,32704,observation-5f16663b-f3da-47fc-8f91-8a8424b684fb-6,https://biolit.fr/observations/observation-5f16663b-f3da-47fc-8f91-8a8424b684fb-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211214_151439_compress99-scaled.jpg | https://biolit.fr/wp-content/uploads/2021/12/IMG_20211214_151417_compress29-scaled-1-scaled.jpg,,FALSE, +N1,58706,sortie-c2ed56a2-b392-4787-877a-59852284c7d6,https://biolit.fr/sorties/sortie-c2ed56a2-b392-4787-877a-59852284c7d6/,PHG,,12/15/2021 0:00,9.0000000,16.0000000,43.685052000000,-1.440878000000,,Hossegor,32706,observation-c2ed56a2-b392-4787-877a-59852284c7d6,https://biolit.fr/observations/observation-c2ed56a2-b392-4787-877a-59852284c7d6/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/_A7R5575-scaled.jpg,,TRUE, +N1,58706,sortie-c2ed56a2-b392-4787-877a-59852284c7d6,https://biolit.fr/sorties/sortie-c2ed56a2-b392-4787-877a-59852284c7d6/,PHG,,12/15/2021 0:00,9.0000000,16.0000000,43.685052000000,-1.440878000000,,Hossegor,32708,observation-c2ed56a2-b392-4787-877a-59852284c7d6-2,https://biolit.fr/observations/observation-c2ed56a2-b392-4787-877a-59852284c7d6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/_A7R5579-scaled.jpg,,FALSE, +N1,58706,sortie-c2ed56a2-b392-4787-877a-59852284c7d6,https://biolit.fr/sorties/sortie-c2ed56a2-b392-4787-877a-59852284c7d6/,PHG,,12/15/2021 0:00,9.0000000,16.0000000,43.685052000000,-1.440878000000,,Hossegor,32710,observation-c2ed56a2-b392-4787-877a-59852284c7d6-3,https://biolit.fr/observations/observation-c2ed56a2-b392-4787-877a-59852284c7d6-3/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/_A7R5574-scaled.jpg,,TRUE, +N1,58707,sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c,https://biolit.fr/sorties/sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c/,marieduthoo,,12/14/2021 0:00,14.0000000,16.000005,43.239846000000,5.362459000000,,Bain des Dames,32712,observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c,https://biolit.fr/observations/observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/IMG-2064-scaled.jpg,,TRUE, +N1,58707,sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c,https://biolit.fr/sorties/sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c/,marieduthoo,,12/14/2021 0:00,14.0000000,16.000005,43.239846000000,5.362459000000,,Bain des Dames,32714,observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c-2,https://biolit.fr/observations/observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-2067-scaled.jpg,,FALSE, +N1,58707,sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c,https://biolit.fr/sorties/sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c/,marieduthoo,,12/14/2021 0:00,14.0000000,16.000005,43.239846000000,5.362459000000,,Bain des Dames,32716,observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c-3,https://biolit.fr/observations/observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-2070-scaled.jpg,,FALSE, +N1,58707,sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c,https://biolit.fr/sorties/sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c/,marieduthoo,,12/14/2021 0:00,14.0000000,16.000005,43.239846000000,5.362459000000,,Bain des Dames,32718,observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c-4,https://biolit.fr/observations/observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-2072-scaled.jpg,,FALSE, +N1,58707,sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c,https://biolit.fr/sorties/sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c/,marieduthoo,,12/14/2021 0:00,14.0000000,16.000005,43.239846000000,5.362459000000,,Bain des Dames,32720,observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c-5,https://biolit.fr/observations/observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-2078-scaled.jpg,,FALSE, +N1,58707,sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c,https://biolit.fr/sorties/sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c/,marieduthoo,,12/14/2021 0:00,14.0000000,16.000005,43.239846000000,5.362459000000,,Bain des Dames,32722,observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c-6,https://biolit.fr/observations/observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-2079-scaled.jpg,,FALSE, +N1,58707,sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c,https://biolit.fr/sorties/sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c/,marieduthoo,,12/14/2021 0:00,14.0000000,16.000005,43.239846000000,5.362459000000,,Bain des Dames,32724,observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c-7,https://biolit.fr/observations/observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c-7/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG-2080-scaled.jpg,,TRUE, +N1,58707,sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c,https://biolit.fr/sorties/sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c/,marieduthoo,,12/14/2021 0:00,14.0000000,16.000005,43.239846000000,5.362459000000,,Bain des Dames,32726,observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c-8,https://biolit.fr/observations/observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c-8/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/IMG-2088-scaled.jpg,,TRUE, +N1,58707,sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c,https://biolit.fr/sorties/sortie-bfa27580-66b5-4e1d-a48c-dbb33e3a904c/,marieduthoo,,12/14/2021 0:00,14.0000000,16.000005,43.239846000000,5.362459000000,,Bain des Dames,32728,observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c-9,https://biolit.fr/observations/observation-bfa27580-66b5-4e1d-a48c-dbb33e3a904c-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-2089-scaled.jpg,,FALSE, +N1,58708,sortie-acd40f84-0f6c-4b23-b335-a441bbf8e375,https://biolit.fr/sorties/sortie-acd40f84-0f6c-4b23-b335-a441bbf8e375/,RBBBM,,12/05/2021,10.0000000,12.0000000,47.788837000000,-3.703620000000,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),L'île percée,32730,observation-acd40f84-0f6c-4b23-b335-a441bbf8e375,https://biolit.fr/observations/observation-acd40f84-0f6c-4b23-b335-a441bbf8e375/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1040173_0.JPG,,TRUE, +N1,58708,sortie-acd40f84-0f6c-4b23-b335-a441bbf8e375,https://biolit.fr/sorties/sortie-acd40f84-0f6c-4b23-b335-a441bbf8e375/,RBBBM,,12/05/2021,10.0000000,12.0000000,47.788837000000,-3.703620000000,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),L'île percée,32732,observation-acd40f84-0f6c-4b23-b335-a441bbf8e375-2,https://biolit.fr/observations/observation-acd40f84-0f6c-4b23-b335-a441bbf8e375-2/,Dromia personata,Dromie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6517-rotated.jpg,,TRUE, +N1,58709,sortie-b9e46fce-9af5-4de2-a739-6554ddcbea74,https://biolit.fr/sorties/sortie-b9e46fce-9af5-4de2-a739-6554ddcbea74/,Marine,,12/10/2021,13.0:15,13.0000000,43.259545000000,5.374814000000,,Plage des surfeurs,32738,observation-b9e46fce-9af5-4de2-a739-6554ddcbea74-3,https://biolit.fr/observations/observation-b9e46fce-9af5-4de2-a739-6554ddcbea74-3/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211210_131254_compress43-scaled.jpg | https://biolit.fr/wp-content/uploads/2021/12/IMG_20211210_131259_compress24-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2021/12/IMG_20211210_131301_compress89-scaled-1.jpg,,TRUE, +N1,58710,sortie-6c67b421-b1a2-4831-b1e0-2fc3ae39d68d,https://biolit.fr/sorties/sortie-6c67b421-b1a2-4831-b1e0-2fc3ae39d68d/,marieduthoo,,12/09/2021,11.0:55,12.0:55,43.256559000000,5.375291000000,,Escale Borely,32740,observation-6c67b421-b1a2-4831-b1e0-2fc3ae39d68d,https://biolit.fr/observations/observation-6c67b421-b1a2-4831-b1e0-2fc3ae39d68d/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0062_1.JPG,,FALSE, +N1,58710,sortie-6c67b421-b1a2-4831-b1e0-2fc3ae39d68d,https://biolit.fr/sorties/sortie-6c67b421-b1a2-4831-b1e0-2fc3ae39d68d/,marieduthoo,,12/09/2021,11.0:55,12.0:55,43.256559000000,5.375291000000,,Escale Borely,32742,observation-6c67b421-b1a2-4831-b1e0-2fc3ae39d68d-2,https://biolit.fr/observations/observation-6c67b421-b1a2-4831-b1e0-2fc3ae39d68d-2/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_0061_2.JPG,,TRUE, +N1,58710,sortie-6c67b421-b1a2-4831-b1e0-2fc3ae39d68d,https://biolit.fr/sorties/sortie-6c67b421-b1a2-4831-b1e0-2fc3ae39d68d/,marieduthoo,,12/09/2021,11.0:55,12.0:55,43.256559000000,5.375291000000,,Escale Borely,32744,observation-6c67b421-b1a2-4831-b1e0-2fc3ae39d68d-3,https://biolit.fr/observations/observation-6c67b421-b1a2-4831-b1e0-2fc3ae39d68d-3/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC_0057.JPG,,TRUE, +N1,58710,sortie-6c67b421-b1a2-4831-b1e0-2fc3ae39d68d,https://biolit.fr/sorties/sortie-6c67b421-b1a2-4831-b1e0-2fc3ae39d68d/,marieduthoo,,12/09/2021,11.0:55,12.0:55,43.256559000000,5.375291000000,,Escale Borely,32746,observation-6c67b421-b1a2-4831-b1e0-2fc3ae39d68d-4,https://biolit.fr/observations/observation-6c67b421-b1a2-4831-b1e0-2fc3ae39d68d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0056_0.JPG,,FALSE, +N1,58711,sortie-6f019c83-c3e3-4ed0-9d41-b6c338993518,https://biolit.fr/sorties/sortie-6f019c83-c3e3-4ed0-9d41-b6c338993518/,marieduthoo,,12/09/2021,10.0000000,11.0000000,43.280308000000,5.353082000000,,Anse de la fausse monnaie,32748,observation-6f019c83-c3e3-4ed0-9d41-b6c338993518,https://biolit.fr/observations/observation-6f019c83-c3e3-4ed0-9d41-b6c338993518/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0055_0.JPG,,TRUE, +N1,58711,sortie-6f019c83-c3e3-4ed0-9d41-b6c338993518,https://biolit.fr/sorties/sortie-6f019c83-c3e3-4ed0-9d41-b6c338993518/,marieduthoo,,12/09/2021,10.0000000,11.0000000,43.280308000000,5.353082000000,,Anse de la fausse monnaie,32750,observation-6f019c83-c3e3-4ed0-9d41-b6c338993518-2,https://biolit.fr/observations/observation-6f019c83-c3e3-4ed0-9d41-b6c338993518-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0047_1.JPG,,FALSE, +N1,58711,sortie-6f019c83-c3e3-4ed0-9d41-b6c338993518,https://biolit.fr/sorties/sortie-6f019c83-c3e3-4ed0-9d41-b6c338993518/,marieduthoo,,12/09/2021,10.0000000,11.0000000,43.280308000000,5.353082000000,,Anse de la fausse monnaie,32752,observation-6f019c83-c3e3-4ed0-9d41-b6c338993518-3,https://biolit.fr/observations/observation-6f019c83-c3e3-4ed0-9d41-b6c338993518-3/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0045_0.JPG,,TRUE, +N1,58711,sortie-6f019c83-c3e3-4ed0-9d41-b6c338993518,https://biolit.fr/sorties/sortie-6f019c83-c3e3-4ed0-9d41-b6c338993518/,marieduthoo,,12/09/2021,10.0000000,11.0000000,43.280308000000,5.353082000000,,Anse de la fausse monnaie,32754,observation-6f019c83-c3e3-4ed0-9d41-b6c338993518-4,https://biolit.fr/observations/observation-6f019c83-c3e3-4ed0-9d41-b6c338993518-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0046_1.JPG,,FALSE, +N1,58711,sortie-6f019c83-c3e3-4ed0-9d41-b6c338993518,https://biolit.fr/sorties/sortie-6f019c83-c3e3-4ed0-9d41-b6c338993518/,marieduthoo,,12/09/2021,10.0000000,11.0000000,43.280308000000,5.353082000000,,Anse de la fausse monnaie,32756,observation-6f019c83-c3e3-4ed0-9d41-b6c338993518-5,https://biolit.fr/observations/observation-6f019c83-c3e3-4ed0-9d41-b6c338993518-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0043_2.JPG,,FALSE, +N1,58712,sortie-c1e5e9c4-9d14-4e34-8f9a-883f5299011d,https://biolit.fr/sorties/sortie-c1e5e9c4-9d14-4e34-8f9a-883f5299011d/,marieduthoo,,12/09/2021,9.0000000,10.0000000,43.272946000000,5.362137000000,,Plage du Prophète,32758,observation-c1e5e9c4-9d14-4e34-8f9a-883f5299011d,https://biolit.fr/observations/observation-c1e5e9c4-9d14-4e34-8f9a-883f5299011d/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_0009_0.jpg,,TRUE, +N1,58713,sortie-23c7311c-4054-43b0-aa57-0da72a7809d4,https://biolit.fr/sorties/sortie-23c7311c-4054-43b0-aa57-0da72a7809d4/,marieduthoo,,12/09/2021,9.0000000,11.0000000,43.273012000000,5.362191000000,,Plage du Prophète,32761,observation-23c7311c-4054-43b0-aa57-0da72a7809d4-2,https://biolit.fr/observations/observation-23c7311c-4054-43b0-aa57-0da72a7809d4-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0007.jpg,,TRUE, +N1,58713,sortie-23c7311c-4054-43b0-aa57-0da72a7809d4,https://biolit.fr/sorties/sortie-23c7311c-4054-43b0-aa57-0da72a7809d4/,marieduthoo,,12/09/2021,9.0000000,11.0000000,43.273012000000,5.362191000000,,Plage du Prophète,32763,observation-23c7311c-4054-43b0-aa57-0da72a7809d4-3,https://biolit.fr/observations/observation-23c7311c-4054-43b0-aa57-0da72a7809d4-3/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0025.jpg,,TRUE, +N1,58713,sortie-23c7311c-4054-43b0-aa57-0da72a7809d4,https://biolit.fr/sorties/sortie-23c7311c-4054-43b0-aa57-0da72a7809d4/,marieduthoo,,12/09/2021,9.0000000,11.0000000,43.273012000000,5.362191000000,,Plage du Prophète,32765,observation-23c7311c-4054-43b0-aa57-0da72a7809d4-4,https://biolit.fr/observations/observation-23c7311c-4054-43b0-aa57-0da72a7809d4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0032.jpg,,FALSE, +N1,58713,sortie-23c7311c-4054-43b0-aa57-0da72a7809d4,https://biolit.fr/sorties/sortie-23c7311c-4054-43b0-aa57-0da72a7809d4/,marieduthoo,,12/09/2021,9.0000000,11.0000000,43.273012000000,5.362191000000,,Plage du Prophète,32767,observation-23c7311c-4054-43b0-aa57-0da72a7809d4-5,https://biolit.fr/observations/observation-23c7311c-4054-43b0-aa57-0da72a7809d4-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0035.jpg,,FALSE, +N1,58713,sortie-23c7311c-4054-43b0-aa57-0da72a7809d4,https://biolit.fr/sorties/sortie-23c7311c-4054-43b0-aa57-0da72a7809d4/,marieduthoo,,12/09/2021,9.0000000,11.0000000,43.273012000000,5.362191000000,,Plage du Prophète,32769,observation-23c7311c-4054-43b0-aa57-0da72a7809d4-6,https://biolit.fr/observations/observation-23c7311c-4054-43b0-aa57-0da72a7809d4-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0040.jpg,,FALSE, +N1,58714,sortie-99f4891d-c5bf-43e4-837b-1523c1be7ad2,https://biolit.fr/sorties/sortie-99f4891d-c5bf-43e4-837b-1523c1be7ad2/,marieduthoo,,12/03/2021,14.0000000,16.0000000,43.258919000000,5.375430000000,,Escale Borely,32771,observation-99f4891d-c5bf-43e4-837b-1523c1be7ad2,https://biolit.fr/observations/observation-99f4891d-c5bf-43e4-837b-1523c1be7ad2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/262812454_576092877008303_7368882160766593810_n (1).jpg,,TRUE, +N1,58715,sortie-cc1118e8-ce8c-4d43-b7c4-d5a7d4ed66ca,https://biolit.fr/sorties/sortie-cc1118e8-ce8c-4d43-b7c4-d5a7d4ed66ca/,DELPY Emmanuelle,,11/28/2021 0:00,16.0000000,17.0000000,43.398155000000,5.124633000000,,chateauneuf-les-martigues,32773,observation-cc1118e8-ce8c-4d43-b7c4-d5a7d4ed66ca,https://biolit.fr/observations/observation-cc1118e8-ce8c-4d43-b7c4-d5a7d4ed66ca/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211128_170434-scaled.jpg,,FALSE, +N1,58716,sortie-dc21c98a-1016-46ab-96ab-64fc62b4342f,https://biolit.fr/sorties/sortie-dc21c98a-1016-46ab-96ab-64fc62b4342f/,DELPY Emmanuelle,,11/27/2021 0:00,11.0000000,12.0000000,43.418233000000,5.161025000000,,"chateauneuf-les-martigues, étang de Bolmon",32775,observation-dc21c98a-1016-46ab-96ab-64fc62b4342f,https://biolit.fr/observations/observation-dc21c98a-1016-46ab-96ab-64fc62b4342f/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211127_110230-scaled.jpg,,FALSE, +N1,58717,sortie-3cf77b3c-c312-493d-9669-dddb7cf4ecbd,https://biolit.fr/sorties/sortie-3cf77b3c-c312-493d-9669-dddb7cf4ecbd/,LABELBLEU,,6/13/2021 0:00,10.0000000,13.0000000,42.535462000000,3.065262000000,,Criques de Porteils,32777,observation-3cf77b3c-c312-493d-9669-dddb7cf4ecbd,https://biolit.fr/observations/observation-3cf77b3c-c312-493d-9669-dddb7cf4ecbd/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210613_110258-min-scaled.jpg,,FALSE, +N1,58717,sortie-3cf77b3c-c312-493d-9669-dddb7cf4ecbd,https://biolit.fr/sorties/sortie-3cf77b3c-c312-493d-9669-dddb7cf4ecbd/,LABELBLEU,,6/13/2021 0:00,10.0000000,13.0000000,42.535462000000,3.065262000000,,Criques de Porteils,32779,observation-3cf77b3c-c312-493d-9669-dddb7cf4ecbd-2,https://biolit.fr/observations/observation-3cf77b3c-c312-493d-9669-dddb7cf4ecbd-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210613_110509-min-scaled.jpg,,FALSE, +N1,58717,sortie-3cf77b3c-c312-493d-9669-dddb7cf4ecbd,https://biolit.fr/sorties/sortie-3cf77b3c-c312-493d-9669-dddb7cf4ecbd/,LABELBLEU,,6/13/2021 0:00,10.0000000,13.0000000,42.535462000000,3.065262000000,,Criques de Porteils,32781,observation-3cf77b3c-c312-493d-9669-dddb7cf4ecbd-3,https://biolit.fr/observations/observation-3cf77b3c-c312-493d-9669-dddb7cf4ecbd-3/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210613_110559-min-scaled.jpg,,TRUE, +N1,58717,sortie-3cf77b3c-c312-493d-9669-dddb7cf4ecbd,https://biolit.fr/sorties/sortie-3cf77b3c-c312-493d-9669-dddb7cf4ecbd/,LABELBLEU,,6/13/2021 0:00,10.0000000,13.0000000,42.535462000000,3.065262000000,,Criques de Porteils,32783,observation-3cf77b3c-c312-493d-9669-dddb7cf4ecbd-4,https://biolit.fr/observations/observation-3cf77b3c-c312-493d-9669-dddb7cf4ecbd-4/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210613_110707-min-scaled.jpg,,TRUE, +N1,58717,sortie-3cf77b3c-c312-493d-9669-dddb7cf4ecbd,https://biolit.fr/sorties/sortie-3cf77b3c-c312-493d-9669-dddb7cf4ecbd/,LABELBLEU,,6/13/2021 0:00,10.0000000,13.0000000,42.535462000000,3.065262000000,,Criques de Porteils,32787,observation-3cf77b3c-c312-493d-9669-dddb7cf4ecbd-6,https://biolit.fr/observations/observation-3cf77b3c-c312-493d-9669-dddb7cf4ecbd-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210613_111408-min-scaled.jpg,,FALSE, +N1,58717,sortie-3cf77b3c-c312-493d-9669-dddb7cf4ecbd,https://biolit.fr/sorties/sortie-3cf77b3c-c312-493d-9669-dddb7cf4ecbd/,LABELBLEU,,6/13/2021 0:00,10.0000000,13.0000000,42.535462000000,3.065262000000,,Criques de Porteils,32789,observation-3cf77b3c-c312-493d-9669-dddb7cf4ecbd-7,https://biolit.fr/observations/observation-3cf77b3c-c312-493d-9669-dddb7cf4ecbd-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210613_111413-min-scaled.jpg,,FALSE, +N1,58717,sortie-3cf77b3c-c312-493d-9669-dddb7cf4ecbd,https://biolit.fr/sorties/sortie-3cf77b3c-c312-493d-9669-dddb7cf4ecbd/,LABELBLEU,,6/13/2021 0:00,10.0000000,13.0000000,42.535462000000,3.065262000000,,Criques de Porteils,32791,observation-3cf77b3c-c312-493d-9669-dddb7cf4ecbd-8,https://biolit.fr/observations/observation-3cf77b3c-c312-493d-9669-dddb7cf4ecbd-8/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210613_111632-min-scaled.jpg,,TRUE, +N1,58717,sortie-3cf77b3c-c312-493d-9669-dddb7cf4ecbd,https://biolit.fr/sorties/sortie-3cf77b3c-c312-493d-9669-dddb7cf4ecbd/,LABELBLEU,,6/13/2021 0:00,10.0000000,13.0000000,42.535462000000,3.065262000000,,Criques de Porteils,32793,observation-3cf77b3c-c312-493d-9669-dddb7cf4ecbd-9,https://biolit.fr/observations/observation-3cf77b3c-c312-493d-9669-dddb7cf4ecbd-9/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210613_111636-min-scaled.jpg,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32795,observation-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actina equina.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32797,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-2,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-2/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_8.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32799,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-3,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-3/,Atelecyclus undecimdentatus,Grand crabe circulaire,,https://biolit.fr/wp-content/uploads/2023/07/Atelecyclus undecimdentatus_1.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32801,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-4,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-4/,Berthella plumula,Berthelle plume,,https://biolit.fr/wp-content/uploads/2023/07/Berthella plumula_1.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32803,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-5,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-5/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/Branta bernicla_2.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32805,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-6,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-6/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_4.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32807,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-7,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-7/,Dysidea fragilis,Eponge mie de pain mouillée,,https://biolit.fr/wp-content/uploads/2023/07/Disydea fragilis.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32809,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-8,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Doris sp_0.PNG,,FALSE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32811,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-9,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Emarginula rosea.PNG,,FALSE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32813,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-10,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_24.PNG,,FALSE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32815,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-11,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-11/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/Galathea squamifera_0.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32817,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-12,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-12/,Patella pellucida,Helcion,,https://biolit.fr/wp-content/uploads/2023/07/Helcion pelludica.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32819,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-13,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-13/,Isozoanthus sulcatus,Anémone chocolat,,https://biolit.fr/wp-content/uploads/2023/07/Isozoanthus sulcatus_1.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32821,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-14,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lepadogaster sp.PNG,,FALSE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32822,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-15,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-15/,Inachus phalangium,Araignée des anémones,,https://biolit.fr/wp-content/uploads/2023/07/Macropodia sp_0.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32824,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-16,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-16/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_20.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32826,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-17,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-17/,Membranipora membranacea,Membranipore,,https://biolit.fr/wp-content/uploads/2023/07/Membranipora membranacea.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32828,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-18,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-18/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia_5.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32830,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-19,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-19/,Tritia incrassata,Nasse épaisse,,https://biolit.fr/wp-content/uploads/2023/07/Nassarius incrassatus_1.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32832,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-20,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-20/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_12.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32834,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-21,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-21/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_15.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32836,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-22,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-22/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/Ophiotrix fragilis_5.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32838,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-23,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-23/,Pilumnus hirtellus,Pilumne hirsute,,https://biolit.fr/wp-content/uploads/2023/07/Pilumnus hirtellus_5.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32840,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-24,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/Polychète spp.PNG,,FALSE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32842,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-25,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-25/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/Ponte d'aplysie-scaled.jpg,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32843,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-26,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-26/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_17.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32845,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-27,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-27/,Trivia arctica,Grain de café rose,,https://biolit.fr/wp-content/uploads/2023/07/Trivia arctica_1.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32847,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-28,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-28/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/Urticina felina_3.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32849,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-29,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-29/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa_4.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32851,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-30,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-30/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Watersipora subatra_4.PNG,,TRUE, +N1,58718,sortie-5b3ca675-705a-413e-9449-8e6704c1d22e,https://biolit.fr/sorties/sortie-5b3ca675-705a-413e-9449-8e6704c1d22e/,Roman,,11/06/2021,12.0000000,12.0000000,47.700774000000,-3.353481000000,,Gâvres,32853,observation-5b3ca675-705a-413e-9449-8e6704c1d22e-31,https://biolit.fr/observations/observation-5b3ca675-705a-413e-9449-8e6704c1d22e-31/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho ydrophilus.PNG,,TRUE, +N1,58719,sortie-4d020c65-e661-430c-a431-c7b924557f62,https://biolit.fr/sorties/sortie-4d020c65-e661-430c-a431-c7b924557f62/,nicolasmorvezen,,11/18/2021 0:00,16.0000000,18.0000000,48.651467000000,-2.031200000000,,Saint-Malo - Plage de Bonsecours,32855,observation-4d020c65-e661-430c-a431-c7b924557f62,https://biolit.fr/observations/observation-4d020c65-e661-430c-a431-c7b924557f62/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/IMG20211104135940-scaled.jpg,,TRUE, +N1,58719,sortie-4d020c65-e661-430c-a431-c7b924557f62,https://biolit.fr/sorties/sortie-4d020c65-e661-430c-a431-c7b924557f62/,nicolasmorvezen,,11/18/2021 0:00,16.0000000,18.0000000,48.651467000000,-2.031200000000,,Saint-Malo - Plage de Bonsecours,32857,observation-4d020c65-e661-430c-a431-c7b924557f62-2,https://biolit.fr/observations/observation-4d020c65-e661-430c-a431-c7b924557f62-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20211104135408-scaled.jpg,,FALSE, +N1,58719,sortie-4d020c65-e661-430c-a431-c7b924557f62,https://biolit.fr/sorties/sortie-4d020c65-e661-430c-a431-c7b924557f62/,nicolasmorvezen,,11/18/2021 0:00,16.0000000,18.0000000,48.651467000000,-2.031200000000,,Saint-Malo - Plage de Bonsecours,32859,observation-4d020c65-e661-430c-a431-c7b924557f62-3,https://biolit.fr/observations/observation-4d020c65-e661-430c-a431-c7b924557f62-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG20211104144125-scaled.jpg,,TRUE, +N1,58720,sortie-c21c23ae-88d1-4b40-ba1c-805bcfd543d2,https://biolit.fr/sorties/sortie-c21c23ae-88d1-4b40-ba1c-805bcfd543d2/,RBBBM,,11/06/2021,10.0000000,12.0:15,47.806123000000,-3.715447000000,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),"Moëlan anse du Gorgen, le Bélon",32861,observation-c21c23ae-88d1-4b40-ba1c-805bcfd543d2,https://biolit.fr/observations/observation-c21c23ae-88d1-4b40-ba1c-805bcfd543d2/,Aplysia depilans,Aplysie visqueuse,,https://biolit.fr/wp-content/uploads/2023/07/aplysie paint.jpg,,TRUE, +N1,58720,sortie-c21c23ae-88d1-4b40-ba1c-805bcfd543d2,https://biolit.fr/sorties/sortie-c21c23ae-88d1-4b40-ba1c-805bcfd543d2/,RBBBM,,11/06/2021,10.0000000,12.0:15,47.806123000000,-3.715447000000,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),"Moëlan anse du Gorgen, le Bélon",32863,observation-c21c23ae-88d1-4b40-ba1c-805bcfd543d2-2,https://biolit.fr/observations/observation-c21c23ae-88d1-4b40-ba1c-805bcfd543d2-2/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/aplysie ponte paint.jpg,,TRUE, +N1,58720,sortie-c21c23ae-88d1-4b40-ba1c-805bcfd543d2,https://biolit.fr/sorties/sortie-c21c23ae-88d1-4b40-ba1c-805bcfd543d2/,RBBBM,,11/06/2021,10.0000000,12.0:15,47.806123000000,-3.715447000000,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),"Moëlan anse du Gorgen, le Bélon",32865,observation-c21c23ae-88d1-4b40-ba1c-805bcfd543d2-3,https://biolit.fr/observations/observation-c21c23ae-88d1-4b40-ba1c-805bcfd543d2-3/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/astérine bossue paint.jpg,,TRUE, +N1,58720,sortie-c21c23ae-88d1-4b40-ba1c-805bcfd543d2,https://biolit.fr/sorties/sortie-c21c23ae-88d1-4b40-ba1c-805bcfd543d2/,RBBBM,,11/06/2021,10.0000000,12.0:15,47.806123000000,-3.715447000000,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),"Moëlan anse du Gorgen, le Bélon",32867,observation-c21c23ae-88d1-4b40-ba1c-805bcfd543d2-4,https://biolit.fr/observations/observation-c21c23ae-88d1-4b40-ba1c-805bcfd543d2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/macropode paint.jpg,,FALSE, +N1,58721,sortie-91cddc84-166e-41cc-a163-3db4db95a24b,https://biolit.fr/sorties/sortie-91cddc84-166e-41cc-a163-3db4db95a24b/,chloe.bachelez,,11/04/2021,13.0000000,15.0000000,48.652621000000,-2.021150000000,,Plage de Bonsecours - Saint Malo,32871,observation-91cddc84-166e-41cc-a163-3db4db95a24b-2,https://biolit.fr/observations/observation-91cddc84-166e-41cc-a163-3db4db95a24b-2/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211104_140509 (1)-scaled.jpg,,TRUE, +N1,58721,sortie-91cddc84-166e-41cc-a163-3db4db95a24b,https://biolit.fr/sorties/sortie-91cddc84-166e-41cc-a163-3db4db95a24b/,chloe.bachelez,,11/04/2021,13.0000000,15.0000000,48.652621000000,-2.021150000000,,Plage de Bonsecours - Saint Malo,32873,observation-91cddc84-166e-41cc-a163-3db4db95a24b-3,https://biolit.fr/observations/observation-91cddc84-166e-41cc-a163-3db4db95a24b-3/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211104_140627 (1)-scaled.jpg,,TRUE, +N1,58721,sortie-91cddc84-166e-41cc-a163-3db4db95a24b,https://biolit.fr/sorties/sortie-91cddc84-166e-41cc-a163-3db4db95a24b/,chloe.bachelez,,11/04/2021,13.0000000,15.0000000,48.652621000000,-2.021150000000,,Plage de Bonsecours - Saint Malo,32875,observation-91cddc84-166e-41cc-a163-3db4db95a24b-4,https://biolit.fr/observations/observation-91cddc84-166e-41cc-a163-3db4db95a24b-4/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211104_135653_0-scaled.jpg,,TRUE, +N1,58722,sortie-e6d4af85-3e37-4f3f-aa1e-e81f8cfc6258,https://biolit.fr/sorties/sortie-e6d4af85-3e37-4f3f-aa1e-e81f8cfc6258/,EVAby,,11/04/2021,13.0000000,15.0000000,48.64839900000,-2.029805000000,,Plage de Bonsecours - St Malo,32877,observation-e6d4af85-3e37-4f3f-aa1e-e81f8cfc6258,https://biolit.fr/observations/observation-e6d4af85-3e37-4f3f-aa1e-e81f8cfc6258/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/St malo 1.jpg,,TRUE, +N1,58722,sortie-e6d4af85-3e37-4f3f-aa1e-e81f8cfc6258,https://biolit.fr/sorties/sortie-e6d4af85-3e37-4f3f-aa1e-e81f8cfc6258/,EVAby,,11/04/2021,13.0000000,15.0000000,48.64839900000,-2.029805000000,,Plage de Bonsecours - St Malo,32879,observation-e6d4af85-3e37-4f3f-aa1e-e81f8cfc6258-2,https://biolit.fr/observations/observation-e6d4af85-3e37-4f3f-aa1e-e81f8cfc6258-2/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/st malo 2.jpg,,TRUE, +N1,58722,sortie-e6d4af85-3e37-4f3f-aa1e-e81f8cfc6258,https://biolit.fr/sorties/sortie-e6d4af85-3e37-4f3f-aa1e-e81f8cfc6258/,EVAby,,11/04/2021,13.0000000,15.0000000,48.64839900000,-2.029805000000,,Plage de Bonsecours - St Malo,32883,observation-e6d4af85-3e37-4f3f-aa1e-e81f8cfc6258-4,https://biolit.fr/observations/observation-e6d4af85-3e37-4f3f-aa1e-e81f8cfc6258-4/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/st malo 4.jpg,,TRUE, +N1,58723,sortie-2b5c17c8-2437-41a3-b931-5e9208144914,https://biolit.fr/sorties/sortie-2b5c17c8-2437-41a3-b931-5e9208144914/,Vanessa Jaeger,,11/04/2021,12.0000000,17.0000000,48.659260000000,-2.070862000000,,Plage de Bonsecours saint malo,32885,observation-2b5c17c8-2437-41a3-b931-5e9208144914,https://biolit.fr/observations/observation-2b5c17c8-2437-41a3-b931-5e9208144914/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_0003-min[1]-scaled.jpg,,TRUE, +N1,58723,sortie-2b5c17c8-2437-41a3-b931-5e9208144914,https://biolit.fr/sorties/sortie-2b5c17c8-2437-41a3-b931-5e9208144914/,Vanessa Jaeger,,11/04/2021,12.0000000,17.0000000,48.659260000000,-2.070862000000,,Plage de Bonsecours saint malo,32887,observation-2b5c17c8-2437-41a3-b931-5e9208144914-2,https://biolit.fr/observations/observation-2b5c17c8-2437-41a3-b931-5e9208144914-2/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0006-min[1]-scaled.jpg,,TRUE, +N1,58723,sortie-2b5c17c8-2437-41a3-b931-5e9208144914,https://biolit.fr/sorties/sortie-2b5c17c8-2437-41a3-b931-5e9208144914/,Vanessa Jaeger,,11/04/2021,12.0000000,17.0000000,48.659260000000,-2.070862000000,,Plage de Bonsecours saint malo,32889,observation-2b5c17c8-2437-41a3-b931-5e9208144914-3,https://biolit.fr/observations/observation-2b5c17c8-2437-41a3-b931-5e9208144914-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0042-min[1]-scaled.jpg,,TRUE, +N1,58723,sortie-2b5c17c8-2437-41a3-b931-5e9208144914,https://biolit.fr/sorties/sortie-2b5c17c8-2437-41a3-b931-5e9208144914/,Vanessa Jaeger,,11/04/2021,12.0000000,17.0000000,48.659260000000,-2.070862000000,,Plage de Bonsecours saint malo,32891,observation-2b5c17c8-2437-41a3-b931-5e9208144914-4,https://biolit.fr/observations/observation-2b5c17c8-2437-41a3-b931-5e9208144914-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0052-min[1]-scaled.jpg,,TRUE, +N1,58723,sortie-2b5c17c8-2437-41a3-b931-5e9208144914,https://biolit.fr/sorties/sortie-2b5c17c8-2437-41a3-b931-5e9208144914/,Vanessa Jaeger,,11/04/2021,12.0000000,17.0000000,48.659260000000,-2.070862000000,,Plage de Bonsecours saint malo,32893,observation-2b5c17c8-2437-41a3-b931-5e9208144914-5,https://biolit.fr/observations/observation-2b5c17c8-2437-41a3-b931-5e9208144914-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0053-min[1]-scaled.jpg,,FALSE, +N1,58724,sortie-5fadd01f-6132-4645-ba8d-e77555b01de8,https://biolit.fr/sorties/sortie-5fadd01f-6132-4645-ba8d-e77555b01de8/,william.panchout,,11/09/2021,8.0000000,16.0000000,49.504400000000,0.076147000000,,"Sainte-adresse 76310, plage",32895,observation-5fadd01f-6132-4645-ba8d-e77555b01de8,https://biolit.fr/observations/observation-5fadd01f-6132-4645-ba8d-e77555b01de8/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4197-scaled.jpg,,TRUE, +N1,58724,sortie-5fadd01f-6132-4645-ba8d-e77555b01de8,https://biolit.fr/sorties/sortie-5fadd01f-6132-4645-ba8d-e77555b01de8/,william.panchout,,11/09/2021,8.0000000,16.0000000,49.504400000000,0.076147000000,,"Sainte-adresse 76310, plage",32897,observation-5fadd01f-6132-4645-ba8d-e77555b01de8-2,https://biolit.fr/observations/observation-5fadd01f-6132-4645-ba8d-e77555b01de8-2/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4200-scaled.jpg,,TRUE, +N1,58724,sortie-5fadd01f-6132-4645-ba8d-e77555b01de8,https://biolit.fr/sorties/sortie-5fadd01f-6132-4645-ba8d-e77555b01de8/,william.panchout,,11/09/2021,8.0000000,16.0000000,49.504400000000,0.076147000000,,"Sainte-adresse 76310, plage",32899,observation-5fadd01f-6132-4645-ba8d-e77555b01de8-3,https://biolit.fr/observations/observation-5fadd01f-6132-4645-ba8d-e77555b01de8-3/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4201-scaled.jpg,,TRUE, +N1,58724,sortie-5fadd01f-6132-4645-ba8d-e77555b01de8,https://biolit.fr/sorties/sortie-5fadd01f-6132-4645-ba8d-e77555b01de8/,william.panchout,,11/09/2021,8.0000000,16.0000000,49.504400000000,0.076147000000,,"Sainte-adresse 76310, plage",32901,observation-5fadd01f-6132-4645-ba8d-e77555b01de8-4,https://biolit.fr/observations/observation-5fadd01f-6132-4645-ba8d-e77555b01de8-4/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4202-scaled.jpg,,TRUE, +N1,58724,sortie-5fadd01f-6132-4645-ba8d-e77555b01de8,https://biolit.fr/sorties/sortie-5fadd01f-6132-4645-ba8d-e77555b01de8/,william.panchout,,11/09/2021,8.0000000,16.0000000,49.504400000000,0.076147000000,,"Sainte-adresse 76310, plage",32903,observation-5fadd01f-6132-4645-ba8d-e77555b01de8-5,https://biolit.fr/observations/observation-5fadd01f-6132-4645-ba8d-e77555b01de8-5/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4203-scaled.jpg,,TRUE, +N1,58724,sortie-5fadd01f-6132-4645-ba8d-e77555b01de8,https://biolit.fr/sorties/sortie-5fadd01f-6132-4645-ba8d-e77555b01de8/,william.panchout,,11/09/2021,8.0000000,16.0000000,49.504400000000,0.076147000000,,"Sainte-adresse 76310, plage",32905,observation-5fadd01f-6132-4645-ba8d-e77555b01de8-6,https://biolit.fr/observations/observation-5fadd01f-6132-4645-ba8d-e77555b01de8-6/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4207-scaled.jpg,,TRUE, +N1,58724,sortie-5fadd01f-6132-4645-ba8d-e77555b01de8,https://biolit.fr/sorties/sortie-5fadd01f-6132-4645-ba8d-e77555b01de8/,william.panchout,,11/09/2021,8.0000000,16.0000000,49.504400000000,0.076147000000,,"Sainte-adresse 76310, plage",32907,observation-5fadd01f-6132-4645-ba8d-e77555b01de8-7,https://biolit.fr/observations/observation-5fadd01f-6132-4645-ba8d-e77555b01de8-7/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4208-scaled.jpg,,TRUE, +N1,58724,sortie-5fadd01f-6132-4645-ba8d-e77555b01de8,https://biolit.fr/sorties/sortie-5fadd01f-6132-4645-ba8d-e77555b01de8/,william.panchout,,11/09/2021,8.0000000,16.0000000,49.504400000000,0.076147000000,,"Sainte-adresse 76310, plage",32909,observation-5fadd01f-6132-4645-ba8d-e77555b01de8-8,https://biolit.fr/observations/observation-5fadd01f-6132-4645-ba8d-e77555b01de8-8/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4209-scaled.jpg,,TRUE, +N1,58724,sortie-5fadd01f-6132-4645-ba8d-e77555b01de8,https://biolit.fr/sorties/sortie-5fadd01f-6132-4645-ba8d-e77555b01de8/,william.panchout,,11/09/2021,8.0000000,16.0000000,49.504400000000,0.076147000000,,"Sainte-adresse 76310, plage",32911,observation-5fadd01f-6132-4645-ba8d-e77555b01de8-9,https://biolit.fr/observations/observation-5fadd01f-6132-4645-ba8d-e77555b01de8-9/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4210-scaled.jpg,,TRUE, +N1,58724,sortie-5fadd01f-6132-4645-ba8d-e77555b01de8,https://biolit.fr/sorties/sortie-5fadd01f-6132-4645-ba8d-e77555b01de8/,william.panchout,,11/09/2021,8.0000000,16.0000000,49.504400000000,0.076147000000,,"Sainte-adresse 76310, plage",32913,observation-5fadd01f-6132-4645-ba8d-e77555b01de8-10,https://biolit.fr/observations/observation-5fadd01f-6132-4645-ba8d-e77555b01de8-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4228-scaled.jpg,,FALSE, +N1,58724,sortie-5fadd01f-6132-4645-ba8d-e77555b01de8,https://biolit.fr/sorties/sortie-5fadd01f-6132-4645-ba8d-e77555b01de8/,william.panchout,,11/09/2021,8.0000000,16.0000000,49.504400000000,0.076147000000,,"Sainte-adresse 76310, plage",32915,observation-5fadd01f-6132-4645-ba8d-e77555b01de8-11,https://biolit.fr/observations/observation-5fadd01f-6132-4645-ba8d-e77555b01de8-11/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4237-scaled.jpg,,TRUE, +N1,58724,sortie-5fadd01f-6132-4645-ba8d-e77555b01de8,https://biolit.fr/sorties/sortie-5fadd01f-6132-4645-ba8d-e77555b01de8/,william.panchout,,11/09/2021,8.0000000,16.0000000,49.504400000000,0.076147000000,,"Sainte-adresse 76310, plage",32917,observation-5fadd01f-6132-4645-ba8d-e77555b01de8-12,https://biolit.fr/observations/observation-5fadd01f-6132-4645-ba8d-e77555b01de8-12/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4238-scaled.jpg,,TRUE, +N1,58725,sortie-d425e2ea-5b75-4bc4-a5d3-aae96df74d73,https://biolit.fr/sorties/sortie-d425e2ea-5b75-4bc4-a5d3-aae96df74d73/,Marie-Anne Issa,,11/04/2021,13.0000000,15.0000000,48.646009000000,-2.011674000000,, Plage de Bonsecours - Saint Malo,32919,observation-d425e2ea-5b75-4bc4-a5d3-aae96df74d73,https://biolit.fr/observations/observation-d425e2ea-5b75-4bc4-a5d3-aae96df74d73/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3360.jpg,,TRUE, +N1,58725,sortie-d425e2ea-5b75-4bc4-a5d3-aae96df74d73,https://biolit.fr/sorties/sortie-d425e2ea-5b75-4bc4-a5d3-aae96df74d73/,Marie-Anne Issa,,11/04/2021,13.0000000,15.0000000,48.646009000000,-2.011674000000,, Plage de Bonsecours - Saint Malo,32921,observation-d425e2ea-5b75-4bc4-a5d3-aae96df74d73-2,https://biolit.fr/observations/observation-d425e2ea-5b75-4bc4-a5d3-aae96df74d73-2/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_3366-rotated.jpg,,TRUE, +N1,58725,sortie-d425e2ea-5b75-4bc4-a5d3-aae96df74d73,https://biolit.fr/sorties/sortie-d425e2ea-5b75-4bc4-a5d3-aae96df74d73/,Marie-Anne Issa,,11/04/2021,13.0000000,15.0000000,48.646009000000,-2.011674000000,, Plage de Bonsecours - Saint Malo,32923,observation-d425e2ea-5b75-4bc4-a5d3-aae96df74d73-3,https://biolit.fr/observations/observation-d425e2ea-5b75-4bc4-a5d3-aae96df74d73-3/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3375.jpg,,TRUE, +N1,58725,sortie-d425e2ea-5b75-4bc4-a5d3-aae96df74d73,https://biolit.fr/sorties/sortie-d425e2ea-5b75-4bc4-a5d3-aae96df74d73/,Marie-Anne Issa,,11/04/2021,13.0000000,15.0000000,48.646009000000,-2.011674000000,, Plage de Bonsecours - Saint Malo,32925,observation-d425e2ea-5b75-4bc4-a5d3-aae96df74d73-4,https://biolit.fr/observations/observation-d425e2ea-5b75-4bc4-a5d3-aae96df74d73-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3390.jpg,,FALSE, +N1,58726,sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677,https://biolit.fr/sorties/sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677/,alex06,,11/04/2021,13.0000000,15.0000000,48.649357000000,-2.029532000000,,Plage de Bon Secours - Saint Malo,32927,observation-f985fdf9-62a4-4449-81cf-95ef52ce2677,https://biolit.fr/observations/observation-f985fdf9-62a4-4449-81cf-95ef52ce2677/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/4_5.jpg,,TRUE, +N1,58726,sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677,https://biolit.fr/sorties/sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677/,alex06,,11/04/2021,13.0000000,15.0000000,48.649357000000,-2.029532000000,,Plage de Bon Secours - Saint Malo,32929,observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-2,https://biolit.fr/observations/observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-2/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/1_5.jpg,,TRUE, +N1,58726,sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677,https://biolit.fr/sorties/sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677/,alex06,,11/04/2021,13.0000000,15.0000000,48.649357000000,-2.029532000000,,Plage de Bon Secours - Saint Malo,32931,observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-3,https://biolit.fr/observations/observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/6_0.jpg,,FALSE, +N1,58726,sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677,https://biolit.fr/sorties/sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677/,alex06,,11/04/2021,13.0000000,15.0000000,48.649357000000,-2.029532000000,,Plage de Bon Secours - Saint Malo,32933,observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-4,https://biolit.fr/observations/observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/12_1.jpg,,FALSE, +N1,58726,sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677,https://biolit.fr/sorties/sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677/,alex06,,11/04/2021,13.0000000,15.0000000,48.649357000000,-2.029532000000,,Plage de Bon Secours - Saint Malo,32935,observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-5,https://biolit.fr/observations/observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-5/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/13_0.jpg,,TRUE, +N1,58726,sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677,https://biolit.fr/sorties/sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677/,alex06,,11/04/2021,13.0000000,15.0000000,48.649357000000,-2.029532000000,,Plage de Bon Secours - Saint Malo,32937,observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-6,https://biolit.fr/observations/observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-6/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/15_1.jpg,,TRUE, +N1,58726,sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677,https://biolit.fr/sorties/sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677/,alex06,,11/04/2021,13.0000000,15.0000000,48.649357000000,-2.029532000000,,Plage de Bon Secours - Saint Malo,32939,observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-7,https://biolit.fr/observations/observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/5_3.jpg,,FALSE, +N1,58726,sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677,https://biolit.fr/sorties/sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677/,alex06,,11/04/2021,13.0000000,15.0000000,48.649357000000,-2.029532000000,,Plage de Bon Secours - Saint Malo,32941,observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-8,https://biolit.fr/observations/observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-8/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/3_6.jpg,,TRUE, +N1,58726,sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677,https://biolit.fr/sorties/sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677/,alex06,,11/04/2021,13.0000000,15.0000000,48.649357000000,-2.029532000000,,Plage de Bon Secours - Saint Malo,32943,observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-9,https://biolit.fr/observations/observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-9/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/7_0.jpg,,TRUE, +N1,58726,sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677,https://biolit.fr/sorties/sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677/,alex06,,11/04/2021,13.0000000,15.0000000,48.649357000000,-2.029532000000,,Plage de Bon Secours - Saint Malo,32945,observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-10,https://biolit.fr/observations/observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/9_1.jpg,,FALSE, +N1,58726,sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677,https://biolit.fr/sorties/sortie-f985fdf9-62a4-4449-81cf-95ef52ce2677/,alex06,,11/04/2021,13.0000000,15.0000000,48.649357000000,-2.029532000000,,Plage de Bon Secours - Saint Malo,32947,observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-11,https://biolit.fr/observations/observation-f985fdf9-62a4-4449-81cf-95ef52ce2677-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/11_0.jpg,,FALSE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32949,observation-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/B71F30CC-7A1B-40B0-86E4-DA11BABE937E.jpeg,,TRUE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32951,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-2,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/3E78E8AD-7B8B-42B1-A14F-5B8A00372AE3.jpeg,,FALSE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32953,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-3,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/80B5BC79-3EAD-4BD1-81F8-3111482C21FD.jpeg,,FALSE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32955,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-4,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/EDBFB84E-FC4A-4F1B-BB5F-82506C066A8E.jpeg,,FALSE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32957,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-5,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DA62DFAF-D3D6-4E2A-87C6-7FFF0A5F4985.jpeg,,FALSE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32959,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-6,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-6/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/1CAA5739-8818-4BF9-8384-B9E6E0490E82.jpeg,,TRUE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32961,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-7,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/A64AA35E-A432-4E7C-A13D-322DFBD165EC.jpeg,,FALSE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32963,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-8,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/D75CED39-4561-4B77-A52A-BB5761CB6B60.jpeg,,FALSE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32965,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-9,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/BB285EFA-8DF6-4601-AFDB-8C4E215901E8.jpeg,,FALSE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32967,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-10,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-10/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/D9FC11FE-5DAE-46D0-9958-285CCC009339.jpeg,,TRUE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32969,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-11,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/5B2FB7F9-1BFE-44F3-BE22-90777A8CEB4D.jpeg,,FALSE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32971,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-12,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/6F814E8D-7B68-4F49-BECF-582EFFFEE65D.jpeg,,FALSE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32973,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-13,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-13/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/744141D4-5AE0-4D11-82E8-468A25CD7F8B.jpeg,,TRUE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32975,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-14,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/9F03B322-C628-4BF7-9C87-69A08B93A668.jpeg,,FALSE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32977,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-15,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-15/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/0E696CD4-D7C6-4456-80D0-37777DB1FA1F.jpeg,,TRUE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32979,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-16,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-16/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/2EABD766-D39C-41C6-B8C9-A4C5A9A63F7A.jpeg,,TRUE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32981,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-17,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/DC398B35-1208-4B70-9D56-12ABB2DC2806.jpeg,,FALSE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32983,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-18,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/3FD5B57A-6E62-4544-BB89-BF1FC3F8AA66.jpeg,,FALSE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32985,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-19,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/DA9BFD3B-3647-4429-8EAD-B608A10850D0.jpeg,,FALSE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32987,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-20,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/9C3A25CD-232A-4049-985F-C74552803DF2.jpeg,,FALSE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32989,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-21,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-21/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/1B83991B-E042-4501-BA16-8225EBAA7F54.jpeg,,TRUE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32991,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-22,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-22/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/29E7FA34-1A1A-4BD7-AA7B-BC8BCE5AC418.jpeg,,TRUE, +N1,58727,sortie-0d53d0c0-61f4-440e-833c-4adb9161d499,https://biolit.fr/sorties/sortie-0d53d0c0-61f4-440e-833c-4adb9161d499/,AZdrahal,,11/04/2021,13.0000000,15.0000000,48.651155000000,-2.031645000000,,Saint-Malo,32993,observation-0d53d0c0-61f4-440e-833c-4adb9161d499-23,https://biolit.fr/observations/observation-0d53d0c0-61f4-440e-833c-4adb9161d499-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/3E5FEDAD-099F-411D-8652-425E11B3A803.jpeg,,FALSE, +N1,58728,sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1,https://biolit.fr/sorties/sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1/,freeda,,11/04/2021,13.0:45,15.0:15,48.652202000000,-2.038078000000,,Saint Malo,32995,observation-732eee73-cb1d-4dc2-823a-d05f69554cd1,https://biolit.fr/observations/observation-732eee73-cb1d-4dc2-823a-d05f69554cd1/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211104_135814-scaled.jpg,,TRUE, +N1,58728,sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1,https://biolit.fr/sorties/sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1/,freeda,,11/04/2021,13.0:45,15.0:15,48.652202000000,-2.038078000000,,Saint Malo,32997,observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-2,https://biolit.fr/observations/observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-2/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211104_135821-scaled.jpg,,TRUE, +N1,58728,sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1,https://biolit.fr/sorties/sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1/,freeda,,11/04/2021,13.0:45,15.0:15,48.652202000000,-2.038078000000,,Saint Malo,32999,observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-3,https://biolit.fr/observations/observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211104_143046-scaled.jpg,,FALSE, +N1,58728,sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1,https://biolit.fr/sorties/sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1/,freeda,,11/04/2021,13.0:45,15.0:15,48.652202000000,-2.038078000000,,Saint Malo,33001,observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-4,https://biolit.fr/observations/observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-4/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211104_141431-scaled.jpg,,TRUE, +N1,58728,sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1,https://biolit.fr/sorties/sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1/,freeda,,11/04/2021,13.0:45,15.0:15,48.652202000000,-2.038078000000,,Saint Malo,33003,observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-5,https://biolit.fr/observations/observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-5/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211104_140318-scaled.jpg,,TRUE, +N1,58728,sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1,https://biolit.fr/sorties/sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1/,freeda,,11/04/2021,13.0:45,15.0:15,48.652202000000,-2.038078000000,,Saint Malo,33005,observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-6,https://biolit.fr/observations/observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-6/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211104_140238_0-scaled.jpg,,TRUE, +N1,58728,sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1,https://biolit.fr/sorties/sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1/,freeda,,11/04/2021,13.0:45,15.0:15,48.652202000000,-2.038078000000,,Saint Malo,33007,observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-7,https://biolit.fr/observations/observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-7/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211104_141607 -.jpg,,TRUE, +N1,58728,sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1,https://biolit.fr/sorties/sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1/,freeda,,11/04/2021,13.0:45,15.0:15,48.652202000000,-2.038078000000,,Saint Malo,33009,observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-8,https://biolit.fr/observations/observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211104_142459-.jpg,,FALSE, +N1,58728,sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1,https://biolit.fr/sorties/sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1/,freeda,,11/04/2021,13.0:45,15.0:15,48.652202000000,-2.038078000000,,Saint Malo,33011,observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-9,https://biolit.fr/observations/observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-9/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211104_140628-.jpg,,TRUE, +N1,58728,sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1,https://biolit.fr/sorties/sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1/,freeda,,11/04/2021,13.0:45,15.0:15,48.652202000000,-2.038078000000,,Saint Malo,33013,observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-10,https://biolit.fr/observations/observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211104_140255-.jpg,,FALSE, +N1,58728,sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1,https://biolit.fr/sorties/sortie-732eee73-cb1d-4dc2-823a-d05f69554cd1/,freeda,,11/04/2021,13.0:45,15.0:15,48.652202000000,-2.038078000000,,Saint Malo,33015,observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-11,https://biolit.fr/observations/observation-732eee73-cb1d-4dc2-823a-d05f69554cd1-11/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211104_140941-.jpg,,TRUE, +N1,58729,sortie-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06,https://biolit.fr/sorties/sortie-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06/,slequertier,,11/06/2021,8.0000000,12.0000000,50.257108000000,1.55761100000,,"Parc du Marquenterre, Saint-Quentin-en-Tourmont",33017,observation-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06,https://biolit.fr/observations/observation-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2968-scaled.jpg,,TRUE, +N1,58729,sortie-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06,https://biolit.fr/sorties/sortie-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06/,slequertier,,11/06/2021,8.0000000,12.0000000,50.257108000000,1.55761100000,,"Parc du Marquenterre, Saint-Quentin-en-Tourmont",33019,observation-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06-2,https://biolit.fr/observations/observation-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06-2/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2970-scaled.jpg,,TRUE, +N1,58729,sortie-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06,https://biolit.fr/sorties/sortie-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06/,slequertier,,11/06/2021,8.0000000,12.0000000,50.257108000000,1.55761100000,,"Parc du Marquenterre, Saint-Quentin-en-Tourmont",33021,observation-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06-3,https://biolit.fr/observations/observation-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06-3/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2972-scaled.jpg,,TRUE, +N1,58729,sortie-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06,https://biolit.fr/sorties/sortie-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06/,slequertier,,11/06/2021,8.0000000,12.0000000,50.257108000000,1.55761100000,,"Parc du Marquenterre, Saint-Quentin-en-Tourmont",33023,observation-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06-4,https://biolit.fr/observations/observation-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06-4/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2980-scaled.jpg,,TRUE, +N1,58729,sortie-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06,https://biolit.fr/sorties/sortie-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06/,slequertier,,11/06/2021,8.0000000,12.0000000,50.257108000000,1.55761100000,,"Parc du Marquenterre, Saint-Quentin-en-Tourmont",33025,observation-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06-5,https://biolit.fr/observations/observation-f27ba0f1-3d11-4755-a3bf-cbf1ff476c06-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2991-scaled.jpg,,FALSE, +N1,58730,sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c,https://biolit.fr/sorties/sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c/,Cecars,,11/07/2021,16.0:45,17.0000000,49.904732000000,0.924194000000,,Quiberville,33027,observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c,https://biolit.fr/observations/observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_9649-scaled.jpg,,TRUE, +N1,58730,sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c,https://biolit.fr/sorties/sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c/,Cecars,,11/07/2021,16.0:45,17.0000000,49.904732000000,0.924194000000,,Quiberville,33029,observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-2,https://biolit.fr/observations/observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-2/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9648-scaled.jpg,,TRUE, +N1,58730,sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c,https://biolit.fr/sorties/sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c/,Cecars,,11/07/2021,16.0:45,17.0000000,49.904732000000,0.924194000000,,Quiberville,33031,observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-3,https://biolit.fr/observations/observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9647-scaled.jpg,,FALSE, +N1,58730,sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c,https://biolit.fr/sorties/sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c/,Cecars,,11/07/2021,16.0:45,17.0000000,49.904732000000,0.924194000000,,Quiberville,33033,observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-4,https://biolit.fr/observations/observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_9646-scaled.jpg,,TRUE, +N1,58730,sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c,https://biolit.fr/sorties/sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c/,Cecars,,11/07/2021,16.0:45,17.0000000,49.904732000000,0.924194000000,,Quiberville,33035,observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-5,https://biolit.fr/observations/observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-5/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9654-scaled.jpg,,TRUE, +N1,58730,sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c,https://biolit.fr/sorties/sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c/,Cecars,,11/07/2021,16.0:45,17.0000000,49.904732000000,0.924194000000,,Quiberville,33037,observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-6,https://biolit.fr/observations/observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-6/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9653-scaled.jpg,,TRUE, +N1,58730,sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c,https://biolit.fr/sorties/sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c/,Cecars,,11/07/2021,16.0:45,17.0000000,49.904732000000,0.924194000000,,Quiberville,33039,observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-7,https://biolit.fr/observations/observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-7/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9652-scaled.jpg,,TRUE, +N1,58730,sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c,https://biolit.fr/sorties/sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c/,Cecars,,11/07/2021,16.0:45,17.0000000,49.904732000000,0.924194000000,,Quiberville,33041,observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-8,https://biolit.fr/observations/observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-8/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9650.jpg,,TRUE, +N1,58730,sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c,https://biolit.fr/sorties/sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c/,Cecars,,11/07/2021,16.0:45,17.0000000,49.904732000000,0.924194000000,,Quiberville,33043,observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-9,https://biolit.fr/observations/observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9659-scaled.jpg,,FALSE, +N1,58730,sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c,https://biolit.fr/sorties/sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c/,Cecars,,11/07/2021,16.0:45,17.0000000,49.904732000000,0.924194000000,,Quiberville,33045,observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-10,https://biolit.fr/observations/observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-10/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_9658-scaled.jpg,,TRUE, +N1,58730,sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c,https://biolit.fr/sorties/sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c/,Cecars,,11/07/2021,16.0:45,17.0000000,49.904732000000,0.924194000000,,Quiberville,33047,observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-11,https://biolit.fr/observations/observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-11/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_9657-scaled.jpg,,TRUE, +N1,58730,sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c,https://biolit.fr/sorties/sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c/,Cecars,,11/07/2021,16.0:45,17.0000000,49.904732000000,0.924194000000,,Quiberville,33049,observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-12,https://biolit.fr/observations/observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-12/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9656-scaled.jpg,,TRUE, +N1,58730,sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c,https://biolit.fr/sorties/sortie-dbe61193-7ba2-4f15-b7a8-b868b6921c3c/,Cecars,,11/07/2021,16.0:45,17.0000000,49.904732000000,0.924194000000,,Quiberville,33051,observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-13,https://biolit.fr/observations/observation-dbe61193-7ba2-4f15-b7a8-b868b6921c3c-13/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9655-scaled.jpg,,TRUE, +N1,58731,sortie-77c63e39-09b8-4b82-83cf-437477a94bca,https://biolit.fr/sorties/sortie-77c63e39-09b8-4b82-83cf-437477a94bca/,Cecars,,11/06/2021,17.0000000,19.0000000,49.916639000000,1.028678000000,,Pourville,33053,observation-77c63e39-09b8-4b82-83cf-437477a94bca,https://biolit.fr/observations/observation-77c63e39-09b8-4b82-83cf-437477a94bca/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_9634-scaled.jpg,,TRUE, +N1,58731,sortie-77c63e39-09b8-4b82-83cf-437477a94bca,https://biolit.fr/sorties/sortie-77c63e39-09b8-4b82-83cf-437477a94bca/,Cecars,,11/06/2021,17.0000000,19.0000000,49.916639000000,1.028678000000,,Pourville,33055,observation-77c63e39-09b8-4b82-83cf-437477a94bca-2,https://biolit.fr/observations/observation-77c63e39-09b8-4b82-83cf-437477a94bca-2/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9631-scaled.jpg,,TRUE, +N1,58731,sortie-77c63e39-09b8-4b82-83cf-437477a94bca,https://biolit.fr/sorties/sortie-77c63e39-09b8-4b82-83cf-437477a94bca/,Cecars,,11/06/2021,17.0000000,19.0000000,49.916639000000,1.028678000000,,Pourville,33057,observation-77c63e39-09b8-4b82-83cf-437477a94bca-3,https://biolit.fr/observations/observation-77c63e39-09b8-4b82-83cf-437477a94bca-3/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_9632-scaled.jpg,,TRUE, +N1,58731,sortie-77c63e39-09b8-4b82-83cf-437477a94bca,https://biolit.fr/sorties/sortie-77c63e39-09b8-4b82-83cf-437477a94bca/,Cecars,,11/06/2021,17.0000000,19.0000000,49.916639000000,1.028678000000,,Pourville,33059,observation-77c63e39-09b8-4b82-83cf-437477a94bca-4,https://biolit.fr/observations/observation-77c63e39-09b8-4b82-83cf-437477a94bca-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9639-scaled.jpg,,FALSE, +N1,58731,sortie-77c63e39-09b8-4b82-83cf-437477a94bca,https://biolit.fr/sorties/sortie-77c63e39-09b8-4b82-83cf-437477a94bca/,Cecars,,11/06/2021,17.0000000,19.0000000,49.916639000000,1.028678000000,,Pourville,33061,observation-77c63e39-09b8-4b82-83cf-437477a94bca-5,https://biolit.fr/observations/observation-77c63e39-09b8-4b82-83cf-437477a94bca-5/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9638-scaled.jpg,,TRUE, +N1,58731,sortie-77c63e39-09b8-4b82-83cf-437477a94bca,https://biolit.fr/sorties/sortie-77c63e39-09b8-4b82-83cf-437477a94bca/,Cecars,,11/06/2021,17.0000000,19.0000000,49.916639000000,1.028678000000,,Pourville,33063,observation-77c63e39-09b8-4b82-83cf-437477a94bca-6,https://biolit.fr/observations/observation-77c63e39-09b8-4b82-83cf-437477a94bca-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9641-scaled.jpg,,FALSE, +N1,58731,sortie-77c63e39-09b8-4b82-83cf-437477a94bca,https://biolit.fr/sorties/sortie-77c63e39-09b8-4b82-83cf-437477a94bca/,Cecars,,11/06/2021,17.0000000,19.0000000,49.916639000000,1.028678000000,,Pourville,33065,observation-77c63e39-09b8-4b82-83cf-437477a94bca-7,https://biolit.fr/observations/observation-77c63e39-09b8-4b82-83cf-437477a94bca-7/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_9640-scaled.jpg,,TRUE, +N1,58731,sortie-77c63e39-09b8-4b82-83cf-437477a94bca,https://biolit.fr/sorties/sortie-77c63e39-09b8-4b82-83cf-437477a94bca/,Cecars,,11/06/2021,17.0000000,19.0000000,49.916639000000,1.028678000000,,Pourville,33067,observation-77c63e39-09b8-4b82-83cf-437477a94bca-8,https://biolit.fr/observations/observation-77c63e39-09b8-4b82-83cf-437477a94bca-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9642-scaled.jpg,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33069,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080551_0-scaled.jpg,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33071,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-2,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080553_0-scaled.jpg,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33073,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-3,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080552_0-scaled.jpg,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33075,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-4,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-4/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080554_0.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33077,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-5,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080556_0.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33079,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-6,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080557_0.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33081,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-7,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-7/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1080558_0.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33083,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-8,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-8/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080559.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33085,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-9,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-9/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080560_0.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33087,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-10,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-10/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080561_1.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33089,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-11,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-11/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080562_0.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33091,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-12,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080563.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33093,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-13,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080564_0.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33095,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-14,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-14/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1080567_0.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33097,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-15,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080568.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33099,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-16,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-16/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1080569_0.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33101,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-17,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080570_0.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33103,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-18,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-18/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080571_0.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33105,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-19,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-19/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080572-rotated.jpg,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33107,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-20,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080573_0.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33109,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-21,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080575_0.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33111,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-22,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080576.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33113,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-23,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080578_0.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33115,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-24,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-24/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080579_0.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33117,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-25,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080582_0-scaled.jpg,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33119,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-26,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080584_1.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33121,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-27,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080590_0.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33123,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-28,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080591_0.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33125,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-29,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-29/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/P1080599_0.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33127,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-30,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-30/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/P1080600_0.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33129,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-31,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080601_0.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33131,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-32,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080602_0.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33133,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-33,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080603_0.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33135,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-34,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080604.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33137,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-35,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080607.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33139,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-36,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-36/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080609_0.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33141,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-37,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-37/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1080610.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33143,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-38,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-38/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080611.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33145,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-39,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-39/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080612_0.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33147,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-40,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-40/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080613_0.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33149,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-41,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-41/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080614.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33151,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-42,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-42/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080615.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33153,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-43,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-43/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/P1080616.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33155,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-44,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-44/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080618.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33157,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-45,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-45/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/P1080620.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33159,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-46,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-46/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/P1080623-rotated.jpg,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33161,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-47,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-47/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/P1080624.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33163,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-48,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-48/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1080625.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33165,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-49,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-49/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1080629.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33167,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-50,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-50/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/P1080632.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33169,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-51,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-51/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080633.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33171,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-52,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-52/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080637.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33173,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-53,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-53/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080639_0.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33175,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-54,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-54/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080641.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33177,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-55,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-55/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080642.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33179,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-56,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-56/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080644_0.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33181,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-57,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-57/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080645_0.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33183,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-58,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-58/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/P1080646_0.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33185,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-59,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-59/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080647.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33187,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-60,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-60/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080648.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33189,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-61,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-61/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080649_0.JPG,,FALSE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33191,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-62,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-62/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080650.JPG,,TRUE, +N1,58732,sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20,https://biolit.fr/sorties/sortie-c9233a2c-35bd-4e0e-b459-3c19dbfecf20/,YvesL,,11/04/2021,13.0000000,15.0:15,48.65181300000,-2.027456000000,,35400 Saint Malo,33193,observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-63,https://biolit.fr/observations/observation-c9233a2c-35bd-4e0e-b459-3c19dbfecf20-63/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1080651.JPG,,TRUE, +N1,58733,sortie-d93fe4dc-bff8-4f30-8882-a06aa3396669,https://biolit.fr/sorties/sortie-d93fe4dc-bff8-4f30-8882-a06aa3396669/,Cblondet,,11/05/2021,13.0000000,13.0:15,43.030285,6.1531960,,Porquerolles ,33195,observation-d93fe4dc-bff8-4f30-8882-a06aa3396669,https://biolit.fr/observations/observation-d93fe4dc-bff8-4f30-8882-a06aa3396669/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_2432-scaled.jpg,,TRUE, +N1,58734,sortie-957be56a-e09b-4614-8dc1-79e3bc9d5623,https://biolit.fr/sorties/sortie-957be56a-e09b-4614-8dc1-79e3bc9d5623/,tridimeg,",11/4/2021 0:00",12.0:25,12.0000000,47.663846000000,-3.250393000000,,Plage de Magouero,33197,observation-957be56a-e09b-4614-8dc1-79e3bc9d5623,https://biolit.fr/observations/observation-957be56a-e09b-4614-8dc1-79e3bc9d5623/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20211104_114000064.jpg,,TRUE,, +N1,58734,sortie-957be56a-e09b-4614-8dc1-79e3bc9d5623,https://biolit.fr/sorties/sortie-957be56a-e09b-4614-8dc1-79e3bc9d5623/,tridimeg,,11/04/2021,12.0:25,12.0000000,47.663846000000,-3.250393000000,,Plage de Magouero,33199,observation-957be56a-e09b-4614-8dc1-79e3bc9d5623-2,https://biolit.fr/observations/observation-957be56a-e09b-4614-8dc1-79e3bc9d5623-2/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20211104_114008891-scaled.jpg,,TRUE, +N1,58735,sortie-246c230f-0687-485d-a634-8ab0b7339252,https://biolit.fr/sorties/sortie-246c230f-0687-485d-a634-8ab0b7339252/,Lexton,,10/27/2021 0:00,18.0000000,18.0:15,49.353893000000,-0.797352000000,,"Sainte-Honorine-des-Pertes, Les Bateaux, Plage de Sainte-Honorine-des-Pertes",33201,observation-246c230f-0687-485d-a634-8ab0b7339252,https://biolit.fr/observations/observation-246c230f-0687-485d-a634-8ab0b7339252/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211027_180119-scaled.jpg,,FALSE, +N1,58736,sortie-5212da8f-2488-47ac-9d85-b2ce907b866f,https://biolit.fr/sorties/sortie-5212da8f-2488-47ac-9d85-b2ce907b866f/,patricia.guibert3@orange.fr,,10/27/2021 0:00,18.0:45,19.0:45,50.399101000000,1.561355000000,,calvaire de berck,33203,observation-5212da8f-2488-47ac-9d85-b2ce907b866f,https://biolit.fr/observations/observation-5212da8f-2488-47ac-9d85-b2ce907b866f/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110566-scaled.jpg,,FALSE, +N1,58736,sortie-5212da8f-2488-47ac-9d85-b2ce907b866f,https://biolit.fr/sorties/sortie-5212da8f-2488-47ac-9d85-b2ce907b866f/,patricia.guibert3@orange.fr,,10/27/2021 0:00,18.0:45,19.0:45,50.399101000000,1.561355000000,,calvaire de berck,33205,observation-5212da8f-2488-47ac-9d85-b2ce907b866f-2,https://biolit.fr/observations/observation-5212da8f-2488-47ac-9d85-b2ce907b866f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110549-min-scaled.jpg,,FALSE, +N1,58736,sortie-5212da8f-2488-47ac-9d85-b2ce907b866f,https://biolit.fr/sorties/sortie-5212da8f-2488-47ac-9d85-b2ce907b866f/,patricia.guibert3@orange.fr,,10/27/2021 0:00,18.0:45,19.0:45,50.399101000000,1.561355000000,,calvaire de berck,33207,observation-5212da8f-2488-47ac-9d85-b2ce907b866f-3,https://biolit.fr/observations/observation-5212da8f-2488-47ac-9d85-b2ce907b866f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110574-min-scaled.jpg,,FALSE, +N1,58736,sortie-5212da8f-2488-47ac-9d85-b2ce907b866f,https://biolit.fr/sorties/sortie-5212da8f-2488-47ac-9d85-b2ce907b866f/,patricia.guibert3@orange.fr,,10/27/2021 0:00,18.0:45,19.0:45,50.399101000000,1.561355000000,,calvaire de berck,33209,observation-5212da8f-2488-47ac-9d85-b2ce907b866f-4,https://biolit.fr/observations/observation-5212da8f-2488-47ac-9d85-b2ce907b866f-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110610-min-scaled.jpg,,FALSE, +N1,58736,sortie-5212da8f-2488-47ac-9d85-b2ce907b866f,https://biolit.fr/sorties/sortie-5212da8f-2488-47ac-9d85-b2ce907b866f/,patricia.guibert3@orange.fr,,10/27/2021 0:00,18.0:45,19.0:45,50.399101000000,1.561355000000,,calvaire de berck,33211,observation-5212da8f-2488-47ac-9d85-b2ce907b866f-5,https://biolit.fr/observations/observation-5212da8f-2488-47ac-9d85-b2ce907b866f-5/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/P1110547-min-scaled.jpg,,TRUE, +N1,58737,sortie-68eef03e-0a92-47d8-9a3e-8a5d27d70766,https://biolit.fr/sorties/sortie-68eef03e-0a92-47d8-9a3e-8a5d27d70766/,patricia.guibert3@orange.fr,,10/28/2021 0:00,14.0000000,15.0000000,50.404877000000,1.560256000000,,Baie d'authie,33213,observation-68eef03e-0a92-47d8-9a3e-8a5d27d70766,https://biolit.fr/observations/observation-68eef03e-0a92-47d8-9a3e-8a5d27d70766/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1110606_0-scaled.jpg,,TRUE, +N1,58738,sortie-dab993fb-2c2d-4f89-ae8d-4b305a48b531,https://biolit.fr/sorties/sortie-dab993fb-2c2d-4f89-ae8d-4b305a48b531/,CPIE Cote Provencale Atelier Bleu,,10/29/2021 0:00,14.0000000,15.0000000,43.166298000000,5.606014000000,,"La Ciotat, plage du grand Mugel",33215,observation-dab993fb-2c2d-4f89-ae8d-4b305a48b531,https://biolit.fr/observations/observation-dab993fb-2c2d-4f89-ae8d-4b305a48b531/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211029_145212[1]-scaled.jpg,,FALSE, +N1,58738,sortie-dab993fb-2c2d-4f89-ae8d-4b305a48b531,https://biolit.fr/sorties/sortie-dab993fb-2c2d-4f89-ae8d-4b305a48b531/,CPIE Cote Provencale Atelier Bleu,,10/29/2021 0:00,14.0000000,15.0000000,43.166298000000,5.606014000000,,"La Ciotat, plage du grand Mugel",33217,observation-dab993fb-2c2d-4f89-ae8d-4b305a48b531-2,https://biolit.fr/observations/observation-dab993fb-2c2d-4f89-ae8d-4b305a48b531-2/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20211029_144320[1]-scaled.jpg,,TRUE, +N1,58738,sortie-dab993fb-2c2d-4f89-ae8d-4b305a48b531,https://biolit.fr/sorties/sortie-dab993fb-2c2d-4f89-ae8d-4b305a48b531/,CPIE Cote Provencale Atelier Bleu,,10/29/2021 0:00,14.0000000,15.0000000,43.166298000000,5.606014000000,,"La Ciotat, plage du grand Mugel",33219,observation-dab993fb-2c2d-4f89-ae8d-4b305a48b531-3,https://biolit.fr/observations/observation-dab993fb-2c2d-4f89-ae8d-4b305a48b531-3/,Ocinebrellus inornatus,Bigorneau perceur japonais,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20211029_144741[1]-scaled.jpg,,TRUE, +N1,58738,sortie-dab993fb-2c2d-4f89-ae8d-4b305a48b531,https://biolit.fr/sorties/sortie-dab993fb-2c2d-4f89-ae8d-4b305a48b531/,CPIE Cote Provencale Atelier Bleu,,10/29/2021 0:00,14.0000000,15.0000000,43.166298000000,5.606014000000,,"La Ciotat, plage du grand Mugel",33221,observation-dab993fb-2c2d-4f89-ae8d-4b305a48b531-4,https://biolit.fr/observations/observation-dab993fb-2c2d-4f89-ae8d-4b305a48b531-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211029_144505[1]-scaled.jpg,,FALSE, +N1,58738,sortie-dab993fb-2c2d-4f89-ae8d-4b305a48b531,https://biolit.fr/sorties/sortie-dab993fb-2c2d-4f89-ae8d-4b305a48b531/,CPIE Cote Provencale Atelier Bleu,,10/29/2021 0:00,14.0000000,15.0000000,43.166298000000,5.606014000000,,"La Ciotat, plage du grand Mugel",33223,observation-dab993fb-2c2d-4f89-ae8d-4b305a48b531-5,https://biolit.fr/observations/observation-dab993fb-2c2d-4f89-ae8d-4b305a48b531-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211029_145113[1]-scaled.jpg,,FALSE, +N1,58738,sortie-dab993fb-2c2d-4f89-ae8d-4b305a48b531,https://biolit.fr/sorties/sortie-dab993fb-2c2d-4f89-ae8d-4b305a48b531/,CPIE Cote Provencale Atelier Bleu,,10/29/2021 0:00,14.0000000,15.0000000,43.166298000000,5.606014000000,,"La Ciotat, plage du grand Mugel",33225,observation-dab993fb-2c2d-4f89-ae8d-4b305a48b531-6,https://biolit.fr/observations/observation-dab993fb-2c2d-4f89-ae8d-4b305a48b531-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211029_145224[1]-scaled.jpg,,FALSE, +N1,58739,sortie-d4679a56-6455-4286-81db-926c32843a0a,https://biolit.fr/sorties/sortie-d4679a56-6455-4286-81db-926c32843a0a/,Dorian ROULET,,10/29/2021 0:00,14.0000000,16.0000000,43.280825000000,5.360000000000,Planète Mer,Escale Borély,33227,observation-d4679a56-6455-4286-81db-926c32843a0a,https://biolit.fr/observations/observation-d4679a56-6455-4286-81db-926c32843a0a/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG20211029115537[1]-scaled.jpg,,TRUE, +N1,58739,sortie-d4679a56-6455-4286-81db-926c32843a0a,https://biolit.fr/sorties/sortie-d4679a56-6455-4286-81db-926c32843a0a/,Dorian ROULET,,10/29/2021 0:00,14.0000000,16.0000000,43.280825000000,5.360000000000,Planète Mer,Escale Borély,33229,observation-d4679a56-6455-4286-81db-926c32843a0a-2,https://biolit.fr/observations/observation-d4679a56-6455-4286-81db-926c32843a0a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20211029111805[1]-scaled.jpg,,FALSE, +N1,58740,sortie-9185cc90-1d23-4db7-8aa1-dd4516dedeef,https://biolit.fr/sorties/sortie-9185cc90-1d23-4db7-8aa1-dd4516dedeef/,Dorian ROULET,,10/29/2021 0:00,9.0000000,10.0000000,43.260604000000,5.371291000000,Planète Mer,Plage du prophète,33231,observation-9185cc90-1d23-4db7-8aa1-dd4516dedeef,https://biolit.fr/observations/observation-9185cc90-1d23-4db7-8aa1-dd4516dedeef/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG20211029090731[1]-scaled.jpg,,TRUE, +N1,58740,sortie-9185cc90-1d23-4db7-8aa1-dd4516dedeef,https://biolit.fr/sorties/sortie-9185cc90-1d23-4db7-8aa1-dd4516dedeef/,Dorian ROULET,,10/29/2021 0:00,9.0000000,10.0000000,43.260604000000,5.371291000000,Planète Mer,Plage du prophète,33233,observation-9185cc90-1d23-4db7-8aa1-dd4516dedeef-2,https://biolit.fr/observations/observation-9185cc90-1d23-4db7-8aa1-dd4516dedeef-2/,Bolinus brandaris,Ponte de murex épineux,,https://biolit.fr/wp-content/uploads/2023/07/IMG20211029090437[1]-scaled.jpg,,TRUE, +N1,58740,sortie-9185cc90-1d23-4db7-8aa1-dd4516dedeef,https://biolit.fr/sorties/sortie-9185cc90-1d23-4db7-8aa1-dd4516dedeef/,Dorian ROULET,,10/29/2021 0:00,9.0000000,10.0000000,43.260604000000,5.371291000000,Planète Mer,Plage du prophète,33235,observation-9185cc90-1d23-4db7-8aa1-dd4516dedeef-3,https://biolit.fr/observations/observation-9185cc90-1d23-4db7-8aa1-dd4516dedeef-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG20211029085823[1]-scaled.jpg,,FALSE, +N1,58741,sortie-de71ba36-62c3-4ad9-9349-6db47c030579,https://biolit.fr/sorties/sortie-de71ba36-62c3-4ad9-9349-6db47c030579/,patricia.guibert3@orange.fr,,10/23/2021 0:00,19.0000000,20.0000000,50.403741000000,1.559432000000,,Plage de Berck,33237,observation-de71ba36-62c3-4ad9-9349-6db47c030579,https://biolit.fr/observations/observation-de71ba36-62c3-4ad9-9349-6db47c030579/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1110489-min_0-scaled.jpg,,TRUE, +N1,58741,sortie-de71ba36-62c3-4ad9-9349-6db47c030579,https://biolit.fr/sorties/sortie-de71ba36-62c3-4ad9-9349-6db47c030579/,patricia.guibert3@orange.fr,,10/23/2021 0:00,19.0000000,20.0000000,50.403741000000,1.559432000000,,Plage de Berck,33239,observation-de71ba36-62c3-4ad9-9349-6db47c030579-2,https://biolit.fr/observations/observation-de71ba36-62c3-4ad9-9349-6db47c030579-2/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/2023/07/P1110499-min-scaled.jpg,,TRUE, +N1,58741,sortie-de71ba36-62c3-4ad9-9349-6db47c030579,https://biolit.fr/sorties/sortie-de71ba36-62c3-4ad9-9349-6db47c030579/,patricia.guibert3@orange.fr,,10/23/2021 0:00,19.0000000,20.0000000,50.403741000000,1.559432000000,,Plage de Berck,33241,observation-de71ba36-62c3-4ad9-9349-6db47c030579-3,https://biolit.fr/observations/observation-de71ba36-62c3-4ad9-9349-6db47c030579-3/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1110490-min-scaled.jpg,,TRUE, +N1,58741,sortie-de71ba36-62c3-4ad9-9349-6db47c030579,https://biolit.fr/sorties/sortie-de71ba36-62c3-4ad9-9349-6db47c030579/,patricia.guibert3@orange.fr,,10/23/2021 0:00,19.0000000,20.0000000,50.403741000000,1.559432000000,,Plage de Berck,33243,observation-de71ba36-62c3-4ad9-9349-6db47c030579-4,https://biolit.fr/observations/observation-de71ba36-62c3-4ad9-9349-6db47c030579-4/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/P1110503-min-scaled.jpg,,TRUE, +N1,58741,sortie-de71ba36-62c3-4ad9-9349-6db47c030579,https://biolit.fr/sorties/sortie-de71ba36-62c3-4ad9-9349-6db47c030579/,patricia.guibert3@orange.fr,,10/23/2021 0:00,19.0000000,20.0000000,50.403741000000,1.559432000000,,Plage de Berck,33245,observation-de71ba36-62c3-4ad9-9349-6db47c030579-5,https://biolit.fr/observations/observation-de71ba36-62c3-4ad9-9349-6db47c030579-5/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/P1110464-min-scaled.jpg,,TRUE, +N1,58741,sortie-de71ba36-62c3-4ad9-9349-6db47c030579,https://biolit.fr/sorties/sortie-de71ba36-62c3-4ad9-9349-6db47c030579/,patricia.guibert3@orange.fr,,10/23/2021 0:00,19.0000000,20.0000000,50.403741000000,1.559432000000,,Plage de Berck,33247,observation-de71ba36-62c3-4ad9-9349-6db47c030579-6,https://biolit.fr/observations/observation-de71ba36-62c3-4ad9-9349-6db47c030579-6/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/P1110486-min-scaled.jpg,,TRUE, +N1,58742,sortie-893c741f-f3a8-4d55-85a8-1780c7531bde,https://biolit.fr/sorties/sortie-893c741f-f3a8-4d55-85a8-1780c7531bde/,patricia.guibert3@orange.fr,,10/19/2021 0:00,18.0:45,19.0000000,50.398051000000,1.558059000000,,Baie d'authie,33249,observation-893c741f-f3a8-4d55-85a8-1780c7531bde,https://biolit.fr/observations/observation-893c741f-f3a8-4d55-85a8-1780c7531bde/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/P1110399-min-scaled.jpg,,TRUE, +N1,58742,sortie-893c741f-f3a8-4d55-85a8-1780c7531bde,https://biolit.fr/sorties/sortie-893c741f-f3a8-4d55-85a8-1780c7531bde/,patricia.guibert3@orange.fr,,10/19/2021 0:00,18.0:45,19.0000000,50.398051000000,1.558059000000,,Baie d'authie,33251,observation-893c741f-f3a8-4d55-85a8-1780c7531bde-2,https://biolit.fr/observations/observation-893c741f-f3a8-4d55-85a8-1780c7531bde-2/,Pomatoschistus microps,Gobie tacheté,,https://biolit.fr/wp-content/uploads/2023/07/P1110400-min-scaled.jpg,,TRUE, +N1,58742,sortie-893c741f-f3a8-4d55-85a8-1780c7531bde,https://biolit.fr/sorties/sortie-893c741f-f3a8-4d55-85a8-1780c7531bde/,patricia.guibert3@orange.fr,,10/19/2021 0:00,18.0:45,19.0000000,50.398051000000,1.558059000000,,Baie d'authie,33253,observation-893c741f-f3a8-4d55-85a8-1780c7531bde-3,https://biolit.fr/observations/observation-893c741f-f3a8-4d55-85a8-1780c7531bde-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1110384-min-scaled.jpg,,TRUE, +N1,58742,sortie-893c741f-f3a8-4d55-85a8-1780c7531bde,https://biolit.fr/sorties/sortie-893c741f-f3a8-4d55-85a8-1780c7531bde/,patricia.guibert3@orange.fr,,10/19/2021 0:00,18.0:45,19.0000000,50.398051000000,1.558059000000,,Baie d'authie,33255,observation-893c741f-f3a8-4d55-85a8-1780c7531bde-4,https://biolit.fr/observations/observation-893c741f-f3a8-4d55-85a8-1780c7531bde-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110404-min-scaled.jpg,,FALSE, +N1,58743,sortie-653fa968-8d99-4fb1-bc45-957625ced279,https://biolit.fr/sorties/sortie-653fa968-8d99-4fb1-bc45-957625ced279/,patricia.guibert3@orange.fr,,10/20/2021 0:00,18.0000000,19.0000000,50.400765000000,1.552840000000,,calvaire de berck,33257,observation-653fa968-8d99-4fb1-bc45-957625ced279,https://biolit.fr/observations/observation-653fa968-8d99-4fb1-bc45-957625ced279/,Tritia reticulata,Ponte de nasse réticulée,,https://biolit.fr/wp-content/uploads/2023/07/P1110408-scaled.jpg,,TRUE, +N1,58744,sortie-357b7c9a-5b54-4846-83ab-833ed2f6cbe1,https://biolit.fr/sorties/sortie-357b7c9a-5b54-4846-83ab-833ed2f6cbe1/,patricia.guibert3@orange.fr,,10/21/2021 0:00,12.0000000,13.0000000,50.407406000000,1.559260000000,,calvaire de berck,33259,observation-357b7c9a-5b54-4846-83ab-833ed2f6cbe1,https://biolit.fr/observations/observation-357b7c9a-5b54-4846-83ab-833ed2f6cbe1/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110432_0-scaled.jpg,,FALSE, +N1,58745,sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e,https://biolit.fr/sorties/sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e/,Naëlle_Guilloux,,10/05/2021,16.0000000,17.0000000,43.420898000000,5.060858000000,Planète Mer,Martigues plage,33261,observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e,https://biolit.fr/observations/observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1181-scaled.jpeg,,FALSE, +N1,58745,sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e,https://biolit.fr/sorties/sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e/,Naëlle_Guilloux,,10/05/2021,16.0000000,17.0000000,43.420898000000,5.060858000000,Planète Mer,Martigues plage,33263,observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-2,https://biolit.fr/observations/observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-2/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_1182-scaled.jpeg,,TRUE, +N1,58745,sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e,https://biolit.fr/sorties/sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e/,Naëlle_Guilloux,,10/05/2021,16.0000000,17.0000000,43.420898000000,5.060858000000,Planète Mer,Martigues plage,33265,observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-3,https://biolit.fr/observations/observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1183-scaled.jpeg,,FALSE, +N1,58745,sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e,https://biolit.fr/sorties/sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e/,Naëlle_Guilloux,,10/05/2021,16.0000000,17.0000000,43.420898000000,5.060858000000,Planète Mer,Martigues plage,33267,observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-4,https://biolit.fr/observations/observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1185-scaled.jpeg,,FALSE, +N1,58745,sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e,https://biolit.fr/sorties/sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e/,Naëlle_Guilloux,,10/05/2021,16.0000000,17.0000000,43.420898000000,5.060858000000,Planète Mer,Martigues plage,33269,observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-5,https://biolit.fr/observations/observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-5/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1186-scaled.jpeg,,TRUE, +N1,58745,sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e,https://biolit.fr/sorties/sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e/,Naëlle_Guilloux,,10/05/2021,16.0000000,17.0000000,43.420898000000,5.060858000000,Planète Mer,Martigues plage,33271,observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-6,https://biolit.fr/observations/observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-6/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1187-scaled.jpeg,,TRUE, +N1,58745,sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e,https://biolit.fr/sorties/sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e/,Naëlle_Guilloux,,10/05/2021,16.0000000,17.0000000,43.420898000000,5.060858000000,Planète Mer,Martigues plage,33273,observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-7,https://biolit.fr/observations/observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1188-scaled.jpeg,,FALSE, +N1,58745,sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e,https://biolit.fr/sorties/sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e/,Naëlle_Guilloux,,10/05/2021,16.0000000,17.0000000,43.420898000000,5.060858000000,Planète Mer,Martigues plage,33275,observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-8,https://biolit.fr/observations/observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1189-scaled.jpeg,,FALSE, +N1,58745,sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e,https://biolit.fr/sorties/sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e/,Naëlle_Guilloux,,10/05/2021,16.0000000,17.0000000,43.420898000000,5.060858000000,Planète Mer,Martigues plage,33277,observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-9,https://biolit.fr/observations/observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1191-scaled.jpeg,,FALSE, +N1,58745,sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e,https://biolit.fr/sorties/sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e/,Naëlle_Guilloux,,10/05/2021,16.0000000,17.0000000,43.420898000000,5.060858000000,Planète Mer,Martigues plage,33279,observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-10,https://biolit.fr/observations/observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-10/,Pecten jacobaeus,Coquille Saint-Jacques de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1195-scaled.jpeg,,TRUE, +N1,58745,sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e,https://biolit.fr/sorties/sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e/,Naëlle_Guilloux,,10/05/2021,16.0000000,17.0000000,43.420898000000,5.060858000000,Planète Mer,Martigues plage,33281,observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-11,https://biolit.fr/observations/observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-11/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1196-scaled.jpeg,,TRUE, +N1,58745,sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e,https://biolit.fr/sorties/sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e/,Naëlle_Guilloux,,10/05/2021,16.0000000,17.0000000,43.420898000000,5.060858000000,Planète Mer,Martigues plage,33283,observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-12,https://biolit.fr/observations/observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1197-scaled.jpeg,,FALSE, +N1,58745,sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e,https://biolit.fr/sorties/sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e/,Naëlle_Guilloux,,10/05/2021,16.0000000,17.0000000,43.420898000000,5.060858000000,Planète Mer,Martigues plage,33285,observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-13,https://biolit.fr/observations/observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-13/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1198-scaled.jpeg,,TRUE, +N1,58745,sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e,https://biolit.fr/sorties/sortie-14c69f8c-38c1-4b0e-b50a-f0b25de2604e/,Naëlle_Guilloux,,10/05/2021,16.0000000,17.0000000,43.420898000000,5.060858000000,Planète Mer,Martigues plage,33287,observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-14,https://biolit.fr/observations/observation-14c69f8c-38c1-4b0e-b50a-f0b25de2604e-14/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1201-scaled.jpeg,,TRUE, +N1,58746,sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6,https://biolit.fr/sorties/sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6/,Watch The Sea,,10/20/2021 0:00,16.0000000,18.0000000,43.174517000000,5.382640000000,Watch The Sea,"îles des Calanques (Jarre, Riou, Plane)",33289,observation-36506fe3-9fd2-48c5-a67a-40cf360599d6,https://biolit.fr/observations/observation-36506fe3-9fd2-48c5-a67a-40cf360599d6/,Sabella spallanzanii,Spirographe,,https://biolit.fr/wp-content/uploads/2023/07/4_4.jpg,,TRUE, +N1,58746,sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6,https://biolit.fr/sorties/sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6/,Watch The Sea,,10/20/2021 0:00,16.0000000,18.0000000,43.174517000000,5.382640000000,Watch The Sea,"îles des Calanques (Jarre, Riou, Plane)",33291,observation-36506fe3-9fd2-48c5-a67a-40cf360599d6-2,https://biolit.fr/observations/observation-36506fe3-9fd2-48c5-a67a-40cf360599d6-2/,Sabella spallanzanii,Spirographe,,https://biolit.fr/wp-content/uploads/2023/07/3_5.jpg,,TRUE, +N1,58746,sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6,https://biolit.fr/sorties/sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6/,Watch The Sea,,10/20/2021 0:00,16.0000000,18.0000000,43.174517000000,5.382640000000,Watch The Sea,"îles des Calanques (Jarre, Riou, Plane)",33293,observation-36506fe3-9fd2-48c5-a67a-40cf360599d6-3,https://biolit.fr/observations/observation-36506fe3-9fd2-48c5-a67a-40cf360599d6-3/,Bolinopsis infundibulum,Bolinopsis,,https://biolit.fr/wp-content/uploads/2023/07/8_0.jpg,,TRUE, +N1,58746,sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6,https://biolit.fr/sorties/sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6/,Watch The Sea,,10/20/2021 0:00,16.0000000,18.0000000,43.174517000000,5.382640000000,Watch The Sea,"îles des Calanques (Jarre, Riou, Plane)",33295,observation-36506fe3-9fd2-48c5-a67a-40cf360599d6-4,https://biolit.fr/observations/observation-36506fe3-9fd2-48c5-a67a-40cf360599d6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/9_0.jpg,,FALSE, +N1,58746,sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6,https://biolit.fr/sorties/sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6/,Watch The Sea,,10/20/2021 0:00,16.0000000,18.0000000,43.174517000000,5.382640000000,Watch The Sea,"îles des Calanques (Jarre, Riou, Plane)",33297,observation-36506fe3-9fd2-48c5-a67a-40cf360599d6-5,https://biolit.fr/observations/observation-36506fe3-9fd2-48c5-a67a-40cf360599d6-5/,Scorpaena scrofa,Chapon,,https://biolit.fr/wp-content/uploads/2023/07/113_0.jpg,,TRUE, +N1,58746,sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6,https://biolit.fr/sorties/sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6/,Watch The Sea,,10/20/2021 0:00,16.0000000,18.0000000,43.174517000000,5.382640000000,Watch The Sea,"îles des Calanques (Jarre, Riou, Plane)",33299,observation-36506fe3-9fd2-48c5-a67a-40cf360599d6-6,https://biolit.fr/observations/observation-36506fe3-9fd2-48c5-a67a-40cf360599d6-6/,Pegea confoederata,Salpe Pégée,,https://biolit.fr/wp-content/uploads/2023/07/76.jpg,,TRUE, +N1,58746,sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6,https://biolit.fr/sorties/sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6/,Watch The Sea,,10/20/2021 0:00,16.0000000,18.0000000,43.174517000000,5.382640000000,Watch The Sea,"îles des Calanques (Jarre, Riou, Plane)",33301,observation-36506fe3-9fd2-48c5-a67a-40cf360599d6-7,https://biolit.fr/observations/observation-36506fe3-9fd2-48c5-a67a-40cf360599d6-7/,Palinurus elephas,Langouste rouge,,https://biolit.fr/wp-content/uploads/2023/07/61.jpg,,TRUE, +N1,58746,sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6,https://biolit.fr/sorties/sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6/,Watch The Sea,,10/20/2021 0:00,16.0000000,18.0000000,43.174517000000,5.382640000000,Watch The Sea,"îles des Calanques (Jarre, Riou, Plane)",33303,observation-36506fe3-9fd2-48c5-a67a-40cf360599d6-8,https://biolit.fr/observations/observation-36506fe3-9fd2-48c5-a67a-40cf360599d6-8/,Cotylorhiza tuberculata,Méduse œuf au plat,,https://biolit.fr/wp-content/uploads/2023/07/67.jpg,,TRUE, +N1,58746,sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6,https://biolit.fr/sorties/sortie-36506fe3-9fd2-48c5-a67a-40cf360599d6/,Watch The Sea,,10/20/2021 0:00,16.0000000,18.0000000,43.174517000000,5.382640000000,Watch The Sea,"îles des Calanques (Jarre, Riou, Plane)",33305,observation-36506fe3-9fd2-48c5-a67a-40cf360599d6-9,https://biolit.fr/observations/observation-36506fe3-9fd2-48c5-a67a-40cf360599d6-9/,Paramuricea clavata,Gorgone pourpre,,https://biolit.fr/wp-content/uploads/2023/07/93.jpg,,TRUE, +N1,58747,sortie-64892ddf-eedc-4a83-b3af-35b4245dec69,https://biolit.fr/sorties/sortie-64892ddf-eedc-4a83-b3af-35b4245dec69/,patricia.guibert3@orange.fr,,10/19/2021 0:00,18.0000000,20.0000000,50.423950000000,1.565856000000,,"Terminus, Berck 62600",33307,observation-64892ddf-eedc-4a83-b3af-35b4245dec69,https://biolit.fr/observations/observation-64892ddf-eedc-4a83-b3af-35b4245dec69/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/2023/07/P1110335-scaled.jpg,,TRUE, +N1,58747,sortie-64892ddf-eedc-4a83-b3af-35b4245dec69,https://biolit.fr/sorties/sortie-64892ddf-eedc-4a83-b3af-35b4245dec69/,patricia.guibert3@orange.fr,,10/19/2021 0:00,18.0000000,20.0000000,50.423950000000,1.565856000000,,"Terminus, Berck 62600",33309,observation-64892ddf-eedc-4a83-b3af-35b4245dec69-2,https://biolit.fr/observations/observation-64892ddf-eedc-4a83-b3af-35b4245dec69-2/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1100564_0-scaled.jpg,,TRUE, +N1,58747,sortie-64892ddf-eedc-4a83-b3af-35b4245dec69,https://biolit.fr/sorties/sortie-64892ddf-eedc-4a83-b3af-35b4245dec69/,patricia.guibert3@orange.fr,,10/19/2021 0:00,18.0000000,20.0000000,50.423950000000,1.565856000000,,"Terminus, Berck 62600",33311,observation-64892ddf-eedc-4a83-b3af-35b4245dec69-3,https://biolit.fr/observations/observation-64892ddf-eedc-4a83-b3af-35b4245dec69-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1110363-scaled.jpg,,TRUE, +N1,58747,sortie-64892ddf-eedc-4a83-b3af-35b4245dec69,https://biolit.fr/sorties/sortie-64892ddf-eedc-4a83-b3af-35b4245dec69/,patricia.guibert3@orange.fr,,10/19/2021 0:00,18.0000000,20.0000000,50.423950000000,1.565856000000,,"Terminus, Berck 62600",33313,observation-64892ddf-eedc-4a83-b3af-35b4245dec69-4,https://biolit.fr/observations/observation-64892ddf-eedc-4a83-b3af-35b4245dec69-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110362-min-scaled.jpg,,FALSE, +N1,58747,sortie-64892ddf-eedc-4a83-b3af-35b4245dec69,https://biolit.fr/sorties/sortie-64892ddf-eedc-4a83-b3af-35b4245dec69/,patricia.guibert3@orange.fr,,10/19/2021 0:00,18.0000000,20.0000000,50.423950000000,1.565856000000,,"Terminus, Berck 62600",33315,observation-64892ddf-eedc-4a83-b3af-35b4245dec69-5,https://biolit.fr/observations/observation-64892ddf-eedc-4a83-b3af-35b4245dec69-5/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/2023/07/P1100951-min-scaled.jpg,,TRUE, +N1,58748,sortie-1b450e8e-6715-49f0-b3d7-61d138a20fca,https://biolit.fr/sorties/sortie-1b450e8e-6715-49f0-b3d7-61d138a20fca/,leane-garcia,,10/05/2021,17.0000000,19.0000000,43.420976000000,5.060871000000,AIEJE,plage de Tholon,33317,observation-1b450e8e-6715-49f0-b3d7-61d138a20fca,https://biolit.fr/observations/observation-1b450e8e-6715-49f0-b3d7-61d138a20fca/,,,,https://biolit.fr/wp-content/uploads/2023/07/image8-scaled.jpeg,,FALSE, +N1,58749,sortie-4e25da91-1da9-4f1d-8081-434db490870e,https://biolit.fr/sorties/sortie-4e25da91-1da9-4f1d-8081-434db490870e/,leane-garcia,,10/05/2021,16.0000000,17.0000000,43.420696000000,5.060882000000,,plage du tolon,33319,observation-4e25da91-1da9-4f1d-8081-434db490870e,https://biolit.fr/observations/observation-4e25da91-1da9-4f1d-8081-434db490870e/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/image4-scaled.jpeg,,TRUE, +N1,58750,sortie-f144a5d6-fb97-47b3-9517-df18dd7256e9,https://biolit.fr/sorties/sortie-f144a5d6-fb97-47b3-9517-df18dd7256e9/,Dorian ROULET,,10/13/2021 0:00,9.0000000,10.0:15,43.214949000000,5.342893000000,,Anse de la Maronnaise,33321,observation-f144a5d6-fb97-47b3-9517-df18dd7256e9,https://biolit.fr/observations/observation-f144a5d6-fb97-47b3-9517-df18dd7256e9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211013_093732-min-scaled.jpg,,FALSE, +N1,58750,sortie-f144a5d6-fb97-47b3-9517-df18dd7256e9,https://biolit.fr/sorties/sortie-f144a5d6-fb97-47b3-9517-df18dd7256e9/,Dorian ROULET,,10/13/2021 0:00,9.0000000,10.0:15,43.214949000000,5.342893000000,,Anse de la Maronnaise,33323,observation-f144a5d6-fb97-47b3-9517-df18dd7256e9-2,https://biolit.fr/observations/observation-f144a5d6-fb97-47b3-9517-df18dd7256e9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211013_093754-min-scaled.jpg,,FALSE, +N1,58750,sortie-f144a5d6-fb97-47b3-9517-df18dd7256e9,https://biolit.fr/sorties/sortie-f144a5d6-fb97-47b3-9517-df18dd7256e9/,Dorian ROULET,,10/13/2021 0:00,9.0000000,10.0:15,43.214949000000,5.342893000000,,Anse de la Maronnaise,33325,observation-f144a5d6-fb97-47b3-9517-df18dd7256e9-3,https://biolit.fr/observations/observation-f144a5d6-fb97-47b3-9517-df18dd7256e9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211013_093900-min-scaled.jpg,,FALSE, +N1,58750,sortie-f144a5d6-fb97-47b3-9517-df18dd7256e9,https://biolit.fr/sorties/sortie-f144a5d6-fb97-47b3-9517-df18dd7256e9/,Dorian ROULET,,10/13/2021 0:00,9.0000000,10.0:15,43.214949000000,5.342893000000,,Anse de la Maronnaise,33327,observation-f144a5d6-fb97-47b3-9517-df18dd7256e9-4,https://biolit.fr/observations/observation-f144a5d6-fb97-47b3-9517-df18dd7256e9-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211013_094300-min-scaled.jpg,,FALSE, +N1,58750,sortie-f144a5d6-fb97-47b3-9517-df18dd7256e9,https://biolit.fr/sorties/sortie-f144a5d6-fb97-47b3-9517-df18dd7256e9/,Dorian ROULET,,10/13/2021 0:00,9.0000000,10.0:15,43.214949000000,5.342893000000,,Anse de la Maronnaise,33329,observation-f144a5d6-fb97-47b3-9517-df18dd7256e9-5,https://biolit.fr/observations/observation-f144a5d6-fb97-47b3-9517-df18dd7256e9-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211013_094950-min-scaled.jpg,,FALSE, +N1,58751,sortie-71c7303e-389b-4412-9b48-ad539eea64c7,https://biolit.fr/sorties/sortie-71c7303e-389b-4412-9b48-ad539eea64c7/,edith-charrier,,10/13/2021 0:00,9.0000000,10.0:15,43.214826000000,5.342981000000,Planète Mer,"Marseille, Anse de la Maronaise",33331,observation-71c7303e-389b-4412-9b48-ad539eea64c7,https://biolit.fr/observations/observation-71c7303e-389b-4412-9b48-ad539eea64c7/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20211013_093511-min-scaled.jpg,,TRUE, +N1,58751,sortie-71c7303e-389b-4412-9b48-ad539eea64c7,https://biolit.fr/sorties/sortie-71c7303e-389b-4412-9b48-ad539eea64c7/,edith-charrier,,10/13/2021 0:00,9.0000000,10.0:15,43.214826000000,5.342981000000,Planète Mer,"Marseille, Anse de la Maronaise",33333,observation-71c7303e-389b-4412-9b48-ad539eea64c7-2,https://biolit.fr/observations/observation-71c7303e-389b-4412-9b48-ad539eea64c7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211013_093628-min-scaled.jpg,,FALSE, +N1,58751,sortie-71c7303e-389b-4412-9b48-ad539eea64c7,https://biolit.fr/sorties/sortie-71c7303e-389b-4412-9b48-ad539eea64c7/,edith-charrier,,10/13/2021 0:00,9.0000000,10.0:15,43.214826000000,5.342981000000,Planète Mer,"Marseille, Anse de la Maronaise",33335,observation-71c7303e-389b-4412-9b48-ad539eea64c7-3,https://biolit.fr/observations/observation-71c7303e-389b-4412-9b48-ad539eea64c7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211013_094010-min-scaled.jpg,,FALSE, +N1,58751,sortie-71c7303e-389b-4412-9b48-ad539eea64c7,https://biolit.fr/sorties/sortie-71c7303e-389b-4412-9b48-ad539eea64c7/,edith-charrier,,10/13/2021 0:00,9.0000000,10.0:15,43.214826000000,5.342981000000,Planète Mer,"Marseille, Anse de la Maronaise",33337,observation-71c7303e-389b-4412-9b48-ad539eea64c7-4,https://biolit.fr/observations/observation-71c7303e-389b-4412-9b48-ad539eea64c7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211013_094055-min-scaled.jpg,,FALSE, +N1,58751,sortie-71c7303e-389b-4412-9b48-ad539eea64c7,https://biolit.fr/sorties/sortie-71c7303e-389b-4412-9b48-ad539eea64c7/,edith-charrier,,10/13/2021 0:00,9.0000000,10.0:15,43.214826000000,5.342981000000,Planète Mer,"Marseille, Anse de la Maronaise",33339,observation-71c7303e-389b-4412-9b48-ad539eea64c7-5,https://biolit.fr/observations/observation-71c7303e-389b-4412-9b48-ad539eea64c7-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20211013_094417-min-scaled.jpg,,FALSE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33341,observation-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona fascicularis_5.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33343,observation-26ac2801-a270-4deb-b70d-79227a24776c-2,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_15.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33345,observation-26ac2801-a270-4deb-b70d-79227a24776c-3,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-3/,Conger conger,Congre,,https://biolit.fr/wp-content/uploads/2023/07/Anguilla anguilla.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33347,observation-26ac2801-a270-4deb-b70d-79227a24776c-4,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-4/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/Anthopleura balii_5.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33349,observation-26ac2801-a270-4deb-b70d-79227a24776c-5,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/aplisium elegans pe.PNG,,FALSE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33351,observation-26ac2801-a270-4deb-b70d-79227a24776c-6,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie sp_1.PNG,,FALSE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33353,observation-26ac2801-a270-4deb-b70d-79227a24776c-7,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/aucune idée 1.PNG,,FALSE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33355,observation-26ac2801-a270-4deb-b70d-79227a24776c-8,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/aucune idée_2.PNG,,FALSE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33357,observation-26ac2801-a270-4deb-b70d-79227a24776c-9,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-9/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/Aulactinia verrucosa_5.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33359,observation-26ac2801-a270-4deb-b70d-79227a24776c-10,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-10/,Berthella plumula,Berthelle plume,,https://biolit.fr/wp-content/uploads/2023/07/Berthella plumula_0.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33361,observation-26ac2801-a270-4deb-b70d-79227a24776c-11,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-11/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_10.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33363,observation-26ac2801-a270-4deb-b70d-79227a24776c-12,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Bryo sp-scaled.jpg,,FALSE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33364,observation-26ac2801-a270-4deb-b70d-79227a24776c-13,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-13/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Calliostoma zyziphinum_2.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33366,observation-26ac2801-a270-4deb-b70d-79227a24776c-14,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-14/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_13.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33368,observation-26ac2801-a270-4deb-b70d-79227a24776c-15,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-15/,Ciliata mustela,Motelle à 5 barbillons,,https://biolit.fr/wp-content/uploads/2023/07/Ciliata mustela_2.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33370,observation-26ac2801-a270-4deb-b70d-79227a24776c-16,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Concombre de mer pe.PNG,,FALSE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33372,observation-26ac2801-a270-4deb-b70d-79227a24776c-17,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/Doris sp.PNG,,FALSE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33374,observation-26ac2801-a270-4deb-b70d-79227a24776c-18,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-18/,Dysidea fragilis,Eponge mie de pain mouillée,,https://biolit.fr/wp-content/uploads/2023/07/Dysidea fragilis_1.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33376,observation-26ac2801-a270-4deb-b70d-79227a24776c-19,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 1_7.PNG,,FALSE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33378,observation-26ac2801-a270-4deb-b70d-79227a24776c-20,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_23.PNG,,FALSE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33380,observation-26ac2801-a270-4deb-b70d-79227a24776c-21,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-21/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Eriphia verrucosa_9.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33382,observation-26ac2801-a270-4deb-b70d-79227a24776c-22,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-22/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/Gakathea squamifera.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33384,observation-26ac2801-a270-4deb-b70d-79227a24776c-23,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-23/,Gari depressa,Psammobie déprimée,,https://biolit.fr/wp-content/uploads/2023/07/Gari depressa_8.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33386,observation-26ac2801-a270-4deb-b70d-79227a24776c-24,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-24/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/Gobie sp_3.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33387,observation-26ac2801-a270-4deb-b70d-79227a24776c-25,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-25/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/Haliotis tuberculata_7.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33389,observation-26ac2801-a270-4deb-b70d-79227a24776c-26,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-26/,Isozoanthus sulcatus,Anémone chocolat,,https://biolit.fr/wp-content/uploads/2023/07/Isozoanthus sulcatus_0.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33391,observation-26ac2801-a270-4deb-b70d-79227a24776c-27,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lamellaria sp_1.PNG,,FALSE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33393,observation-26ac2801-a270-4deb-b70d-79227a24776c-28,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-28/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_5.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33395,observation-26ac2801-a270-4deb-b70d-79227a24776c-29,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/Macropodia sp 1.PNG,,FALSE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33397,observation-26ac2801-a270-4deb-b70d-79227a24776c-30,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-30/,Macropodia deflexa,Macropode à rostre plongeant,,https://biolit.fr/wp-content/uploads/2023/07/macropodia sp.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33398,observation-26ac2801-a270-4deb-b70d-79227a24776c-31,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-31/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_19.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33400,observation-26ac2801-a270-4deb-b70d-79227a24776c-32,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-32/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_12.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33402,observation-26ac2801-a270-4deb-b70d-79227a24776c-33,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-33/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_11.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33404,observation-26ac2801-a270-4deb-b70d-79227a24776c-34,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-34/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis lombriciformis_0.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33406,observation-26ac2801-a270-4deb-b70d-79227a24776c-35,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-35/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/Ophiotrix fragilis_4.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33408,observation-26ac2801-a270-4deb-b70d-79227a24776c-36,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-36/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/Phalacrocorax carbo_0.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33410,observation-26ac2801-a270-4deb-b70d-79227a24776c-37,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-37/,Pilumnus hirtellus,Pilumne hirsute,,https://biolit.fr/wp-content/uploads/2023/07/Pilumnus hirtellus_4.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33412,observation-26ac2801-a270-4deb-b70d-79227a24776c-38,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-38/,Pisa armata,Pise armée,,https://biolit.fr/wp-content/uploads/2023/07/Pisa armata_0.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33414,observation-26ac2801-a270-4deb-b70d-79227a24776c-39,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-39/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/Pisidia longicornis_3.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33416,observation-26ac2801-a270-4deb-b70d-79227a24776c-40,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-40/,,,,https://biolit.fr/wp-content/uploads/2023/07/Polychète sp_0.PNG,,FALSE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33418,observation-26ac2801-a270-4deb-b70d-79227a24776c-41,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-41/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_18.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33420,observation-26ac2801-a270-4deb-b70d-79227a24776c-42,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-42/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_16.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33422,observation-26ac2801-a270-4deb-b70d-79227a24776c-43,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-43/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pycnogonide sp_0.PNG,,FALSE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33424,observation-26ac2801-a270-4deb-b70d-79227a24776c-44,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-44/,Spurilla neapolitana,Limace à bigoudis,,https://biolit.fr/wp-content/uploads/2023/07/Spurilla neapolitana_1.PNG,,FALSE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33426,observation-26ac2801-a270-4deb-b70d-79227a24776c-45,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-45/,Tethya citrina,Orange de mer de Manche Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Tethya citrina.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33428,observation-26ac2801-a270-4deb-b70d-79227a24776c-46,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-46/,Trivia arctica,Grain de café rose,,https://biolit.fr/wp-content/uploads/2023/07/Trivia arctica_0.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33430,observation-26ac2801-a270-4deb-b70d-79227a24776c-47,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-47/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa_3.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33432,observation-26ac2801-a270-4deb-b70d-79227a24776c-48,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-48/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ver sp_1.PNG,,FALSE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33434,observation-26ac2801-a270-4deb-b70d-79227a24776c-49,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-49/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_16.PNG,,TRUE, +N1,58752,sortie-26ac2801-a270-4deb-b70d-79227a24776c,https://biolit.fr/sorties/sortie-26ac2801-a270-4deb-b70d-79227a24776c/,Roman,,10/09/2021,13.0000000,15.0000000,47.687568000000,-3.35566400000,,Gâvres,33436,observation-26ac2801-a270-4deb-b70d-79227a24776c-50,https://biolit.fr/observations/observation-26ac2801-a270-4deb-b70d-79227a24776c-50/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_14.PNG,,TRUE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33438,observation-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c/,Acteon tornatilis,Actéon enroulé,,https://biolit.fr/wp-content/uploads/2023/07/Acteon tornalitis_0.PNG,,TRUE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33440,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-2,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Arcopagia crassa_1.PNG,,FALSE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33442,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-3,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-3/,Barnea candida,Pholade blanche,,https://biolit.fr/wp-content/uploads/2023/07/Barnea candida_1.PNG,,TRUE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33444,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-4,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-4/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/Buccinum undatum.PNG,,TRUE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33446,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-5,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-5/,Callista chione,Vernis,,https://biolit.fr/wp-content/uploads/2023/07/Callista chione.PNG,,TRUE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33448,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-6,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-6/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_3.PNG,,TRUE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33450,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-7,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-7/,Dosinia exoleta,Dosinie radiée,,https://biolit.fr/wp-content/uploads/2023/07/Dosinia exoleta_1.PNG,,TRUE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33452,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-8,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-8/,Diodora graeca,Fissurelle,,https://biolit.fr/wp-content/uploads/2023/07/Fissurella graeca.PNG,,TRUE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33454,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-9,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gastéropode du littoral.PNG,,FALSE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33456,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-10,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-10/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/2023/07/Mactra stultorum_0.PNG,,TRUE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33458,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-11,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-11/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_18.PNG,,TRUE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33460,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-12,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-12/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia_4.PNG,,TRUE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33462,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-13,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-13/,Pholas dactylus,Pholade,,https://biolit.fr/wp-content/uploads/2023/07/Pholas dactyla.PNG,,TRUE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33464,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-14,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ponte de polychète.PNG,,FALSE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33466,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-15,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-15/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes decussatus_0.PNG,,TRUE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33468,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-16,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-16/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/Sabellaria alveolata_3.PNG,,TRUE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33470,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-17,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/Tellina incarnata.PNG,,FALSE, +N1,58753,sortie-66d4a606-dfbf-4a34-9172-3c260aad791c,https://biolit.fr/sorties/sortie-66d4a606-dfbf-4a34-9172-3c260aad791c/,Roman,,10/09/2021,12.0000000,12.0000000,47.69415900000,-3.348117000000,,Gâvres,33472,observation-66d4a606-dfbf-4a34-9172-3c260aad791c-18,https://biolit.fr/observations/observation-66d4a606-dfbf-4a34-9172-3c260aad791c-18/,Venerupis corrugata,Palourde-poulette,,https://biolit.fr/wp-content/uploads/2023/07/Venerupis aurea_1.PNG,,TRUE, +N1,58754,sortie-78f2555d-7386-4859-a2cd-01e7053c7608,https://biolit.fr/sorties/sortie-78f2555d-7386-4859-a2cd-01e7053c7608/,LABELBLEU,,10/03/2021,10.0000000,12.0000000,42.53521500000,3.064924000000,,"Anse de Porteils, Argeles sur Mer",33474,observation-78f2555d-7386-4859-a2cd-01e7053c7608,https://biolit.fr/observations/observation-78f2555d-7386-4859-a2cd-01e7053c7608/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1321-rotated.jpg,,TRUE, +N1,58754,sortie-78f2555d-7386-4859-a2cd-01e7053c7608,https://biolit.fr/sorties/sortie-78f2555d-7386-4859-a2cd-01e7053c7608/,LABELBLEU,,10/03/2021,10.0000000,12.0000000,42.53521500000,3.064924000000,,"Anse de Porteils, Argeles sur Mer",33476,observation-78f2555d-7386-4859-a2cd-01e7053c7608-2,https://biolit.fr/observations/observation-78f2555d-7386-4859-a2cd-01e7053c7608-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1323_0.JPG,,FALSE, +N1,58754,sortie-78f2555d-7386-4859-a2cd-01e7053c7608,https://biolit.fr/sorties/sortie-78f2555d-7386-4859-a2cd-01e7053c7608/,LABELBLEU,,10/03/2021,10.0000000,12.0000000,42.53521500000,3.064924000000,,"Anse de Porteils, Argeles sur Mer",33478,observation-78f2555d-7386-4859-a2cd-01e7053c7608-3,https://biolit.fr/observations/observation-78f2555d-7386-4859-a2cd-01e7053c7608-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1328-rotated.jpg,,FALSE, +N1,58754,sortie-78f2555d-7386-4859-a2cd-01e7053c7608,https://biolit.fr/sorties/sortie-78f2555d-7386-4859-a2cd-01e7053c7608/,LABELBLEU,,10/03/2021,10.0000000,12.0000000,42.53521500000,3.064924000000,,"Anse de Porteils, Argeles sur Mer",33480,observation-78f2555d-7386-4859-a2cd-01e7053c7608-4,https://biolit.fr/observations/observation-78f2555d-7386-4859-a2cd-01e7053c7608-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1319_0-rotated.jpg,,FALSE, +N1,58754,sortie-78f2555d-7386-4859-a2cd-01e7053c7608,https://biolit.fr/sorties/sortie-78f2555d-7386-4859-a2cd-01e7053c7608/,LABELBLEU,,10/03/2021,10.0000000,12.0000000,42.53521500000,3.064924000000,,"Anse de Porteils, Argeles sur Mer",33482,observation-78f2555d-7386-4859-a2cd-01e7053c7608-5,https://biolit.fr/observations/observation-78f2555d-7386-4859-a2cd-01e7053c7608-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1320-rotated.jpg,,FALSE, +N1,58754,sortie-78f2555d-7386-4859-a2cd-01e7053c7608,https://biolit.fr/sorties/sortie-78f2555d-7386-4859-a2cd-01e7053c7608/,LABELBLEU,,10/03/2021,10.0000000,12.0000000,42.53521500000,3.064924000000,,"Anse de Porteils, Argeles sur Mer",33484,observation-78f2555d-7386-4859-a2cd-01e7053c7608-6,https://biolit.fr/observations/observation-78f2555d-7386-4859-a2cd-01e7053c7608-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20211003_111044-scaled.jpg,,FALSE, +N1,58755,sortie-cf49eeeb-f919-4e52-990e-f9de07945b1c,https://biolit.fr/sorties/sortie-cf49eeeb-f919-4e52-990e-f9de07945b1c/,edith-charrier,,9/22/2021 0:00,10.0000000,11.0000000,43.284268000000,5.316341000000,Planète Mer,Plage de Saint-Estève (île du Frioul),33486,observation-cf49eeeb-f919-4e52-990e-f9de07945b1c,https://biolit.fr/observations/observation-cf49eeeb-f919-4e52-990e-f9de07945b1c/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20210922_102437-scaled.jpg,,TRUE, +N1,58755,sortie-cf49eeeb-f919-4e52-990e-f9de07945b1c,https://biolit.fr/sorties/sortie-cf49eeeb-f919-4e52-990e-f9de07945b1c/,edith-charrier,,9/22/2021 0:00,10.0000000,11.0000000,43.284268000000,5.316341000000,Planète Mer,Plage de Saint-Estève (île du Frioul),33488,observation-cf49eeeb-f919-4e52-990e-f9de07945b1c-2,https://biolit.fr/observations/observation-cf49eeeb-f919-4e52-990e-f9de07945b1c-2/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20210922_102518-scaled.jpg,,TRUE, +N1,58755,sortie-cf49eeeb-f919-4e52-990e-f9de07945b1c,https://biolit.fr/sorties/sortie-cf49eeeb-f919-4e52-990e-f9de07945b1c/,edith-charrier,,9/22/2021 0:00,10.0000000,11.0000000,43.284268000000,5.316341000000,Planète Mer,Plage de Saint-Estève (île du Frioul),33490,observation-cf49eeeb-f919-4e52-990e-f9de07945b1c-3,https://biolit.fr/observations/observation-cf49eeeb-f919-4e52-990e-f9de07945b1c-3/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20210922_102521-scaled.jpg,,TRUE, +N1,58755,sortie-cf49eeeb-f919-4e52-990e-f9de07945b1c,https://biolit.fr/sorties/sortie-cf49eeeb-f919-4e52-990e-f9de07945b1c/,edith-charrier,,9/22/2021 0:00,10.0000000,11.0000000,43.284268000000,5.316341000000,Planète Mer,Plage de Saint-Estève (île du Frioul),33492,observation-cf49eeeb-f919-4e52-990e-f9de07945b1c-4,https://biolit.fr/observations/observation-cf49eeeb-f919-4e52-990e-f9de07945b1c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210922_102645-scaled.jpg,,FALSE, +N1,58755,sortie-cf49eeeb-f919-4e52-990e-f9de07945b1c,https://biolit.fr/sorties/sortie-cf49eeeb-f919-4e52-990e-f9de07945b1c/,edith-charrier,,9/22/2021 0:00,10.0000000,11.0000000,43.284268000000,5.316341000000,Planète Mer,Plage de Saint-Estève (île du Frioul),33494,observation-cf49eeeb-f919-4e52-990e-f9de07945b1c-5,https://biolit.fr/observations/observation-cf49eeeb-f919-4e52-990e-f9de07945b1c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210922_102722-scaled.jpg,,FALSE, +N1,58755,sortie-cf49eeeb-f919-4e52-990e-f9de07945b1c,https://biolit.fr/sorties/sortie-cf49eeeb-f919-4e52-990e-f9de07945b1c/,edith-charrier,,9/22/2021 0:00,10.0000000,11.0000000,43.284268000000,5.316341000000,Planète Mer,Plage de Saint-Estève (île du Frioul),33496,observation-cf49eeeb-f919-4e52-990e-f9de07945b1c-6,https://biolit.fr/observations/observation-cf49eeeb-f919-4e52-990e-f9de07945b1c-6/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/20210922_102751-scaled.jpg,,TRUE, +N1,58755,sortie-cf49eeeb-f919-4e52-990e-f9de07945b1c,https://biolit.fr/sorties/sortie-cf49eeeb-f919-4e52-990e-f9de07945b1c/,edith-charrier,,9/22/2021 0:00,10.0000000,11.0000000,43.284268000000,5.316341000000,Planète Mer,Plage de Saint-Estève (île du Frioul),33498,observation-cf49eeeb-f919-4e52-990e-f9de07945b1c-7,https://biolit.fr/observations/observation-cf49eeeb-f919-4e52-990e-f9de07945b1c-7/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20210922_103033-scaled.jpg,,TRUE, +N1,58755,sortie-cf49eeeb-f919-4e52-990e-f9de07945b1c,https://biolit.fr/sorties/sortie-cf49eeeb-f919-4e52-990e-f9de07945b1c/,edith-charrier,,9/22/2021 0:00,10.0000000,11.0000000,43.284268000000,5.316341000000,Planète Mer,Plage de Saint-Estève (île du Frioul),33500,observation-cf49eeeb-f919-4e52-990e-f9de07945b1c-8,https://biolit.fr/observations/observation-cf49eeeb-f919-4e52-990e-f9de07945b1c-8/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20210922_103055-scaled.jpg,,TRUE, +N1,58756,sortie-9333368f-abde-44d7-8175-11fca0646e69,https://biolit.fr/sorties/sortie-9333368f-abde-44d7-8175-11fca0646e69/,Dbriard,,9/22/2021 0:00,13.0000000,16.0000000,43.325736000000,5.05287900000,,cap couronne,33502,observation-9333368f-abde-44d7-8175-11fca0646e69,https://biolit.fr/observations/observation-9333368f-abde-44d7-8175-11fca0646e69/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20210923_205816.jpg,,TRUE, +N1,58756,sortie-9333368f-abde-44d7-8175-11fca0646e69,https://biolit.fr/sorties/sortie-9333368f-abde-44d7-8175-11fca0646e69/,Dbriard,,9/22/2021 0:00,13.0000000,16.0000000,43.325736000000,5.05287900000,,cap couronne,33504,observation-9333368f-abde-44d7-8175-11fca0646e69-2,https://biolit.fr/observations/observation-9333368f-abde-44d7-8175-11fca0646e69-2/,Larus michahellis,Goéland leucophée,,https://biolit.fr/wp-content/uploads/2023/07/20210922_141222-scaled.jpg,,TRUE, +N1,58756,sortie-9333368f-abde-44d7-8175-11fca0646e69,https://biolit.fr/sorties/sortie-9333368f-abde-44d7-8175-11fca0646e69/,Dbriard,,9/22/2021 0:00,13.0000000,16.0000000,43.325736000000,5.05287900000,,cap couronne,33506,observation-9333368f-abde-44d7-8175-11fca0646e69-3,https://biolit.fr/observations/observation-9333368f-abde-44d7-8175-11fca0646e69-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20210923_210008-scaled.jpg,,TRUE, +N1,58756,sortie-9333368f-abde-44d7-8175-11fca0646e69,https://biolit.fr/sorties/sortie-9333368f-abde-44d7-8175-11fca0646e69/,Dbriard,,9/22/2021 0:00,13.0000000,16.0000000,43.325736000000,5.05287900000,,cap couronne,33508,observation-9333368f-abde-44d7-8175-11fca0646e69-4,https://biolit.fr/observations/observation-9333368f-abde-44d7-8175-11fca0646e69-4/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/20210922_133643-scaled.jpg,,TRUE, +N1,58756,sortie-9333368f-abde-44d7-8175-11fca0646e69,https://biolit.fr/sorties/sortie-9333368f-abde-44d7-8175-11fca0646e69/,Dbriard,,9/22/2021 0:00,13.0000000,16.0000000,43.325736000000,5.05287900000,,cap couronne,33510,observation-9333368f-abde-44d7-8175-11fca0646e69-5,https://biolit.fr/observations/observation-9333368f-abde-44d7-8175-11fca0646e69-5/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/20210922_154800.jpg,,TRUE, +N1,58757,sortie-393f119b-b493-4afb-9c59-234501c3d45f,https://biolit.fr/sorties/sortie-393f119b-b493-4afb-9c59-234501c3d45f/,Valérie Eurin,,9/25/2021 0:00,18.0000000,20.0000000,49.378256000000,0.087155000000,,"Plage des roches noires, Trouville",33512,observation-393f119b-b493-4afb-9c59-234501c3d45f,https://biolit.fr/observations/observation-393f119b-b493-4afb-9c59-234501c3d45f/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_1772 redim-scaled.jpg,,TRUE, +N1,58757,sortie-393f119b-b493-4afb-9c59-234501c3d45f,https://biolit.fr/sorties/sortie-393f119b-b493-4afb-9c59-234501c3d45f/,Valérie Eurin,,9/25/2021 0:00,18.0000000,20.0000000,49.378256000000,0.087155000000,,"Plage des roches noires, Trouville",33514,observation-393f119b-b493-4afb-9c59-234501c3d45f-2,https://biolit.fr/observations/observation-393f119b-b493-4afb-9c59-234501c3d45f-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1780-scaled.jpg,,TRUE, +N1,58757,sortie-393f119b-b493-4afb-9c59-234501c3d45f,https://biolit.fr/sorties/sortie-393f119b-b493-4afb-9c59-234501c3d45f/,Valérie Eurin,,9/25/2021 0:00,18.0000000,20.0000000,49.378256000000,0.087155000000,,"Plage des roches noires, Trouville",33516,observation-393f119b-b493-4afb-9c59-234501c3d45f-3,https://biolit.fr/observations/observation-393f119b-b493-4afb-9c59-234501c3d45f-3/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1783 redim-scaled.jpg,,TRUE, +N1,58757,sortie-393f119b-b493-4afb-9c59-234501c3d45f,https://biolit.fr/sorties/sortie-393f119b-b493-4afb-9c59-234501c3d45f/,Valérie Eurin,,9/25/2021 0:00,18.0000000,20.0000000,49.378256000000,0.087155000000,,"Plage des roches noires, Trouville",33518,observation-393f119b-b493-4afb-9c59-234501c3d45f-4,https://biolit.fr/observations/observation-393f119b-b493-4afb-9c59-234501c3d45f-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1767_0-scaled.jpg,,FALSE, +N1,58757,sortie-393f119b-b493-4afb-9c59-234501c3d45f,https://biolit.fr/sorties/sortie-393f119b-b493-4afb-9c59-234501c3d45f/,Valérie Eurin,,9/25/2021 0:00,18.0000000,20.0000000,49.378256000000,0.087155000000,,"Plage des roches noires, Trouville",33520,observation-393f119b-b493-4afb-9c59-234501c3d45f-5,https://biolit.fr/observations/observation-393f119b-b493-4afb-9c59-234501c3d45f-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1768_0.JPG,,FALSE, +N1,58757,sortie-393f119b-b493-4afb-9c59-234501c3d45f,https://biolit.fr/sorties/sortie-393f119b-b493-4afb-9c59-234501c3d45f/,Valérie Eurin,,9/25/2021 0:00,18.0000000,20.0000000,49.378256000000,0.087155000000,,"Plage des roches noires, Trouville",33522,observation-393f119b-b493-4afb-9c59-234501c3d45f-6,https://biolit.fr/observations/observation-393f119b-b493-4afb-9c59-234501c3d45f-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1769-scaled.jpg,,FALSE, +N1,58758,sortie-d5f284e4-1023-49e5-b0fa-0bed2747c46c,https://biolit.fr/sorties/sortie-d5f284e4-1023-49e5-b0fa-0bed2747c46c/,Valérie Eurin,,9/22/2021 0:00,19.0000000,20.0000000,49.424738000000,0.213299000000,,Honfleur plage du Butin,33524,observation-d5f284e4-1023-49e5-b0fa-0bed2747c46c,https://biolit.fr/observations/observation-d5f284e4-1023-49e5-b0fa-0bed2747c46c/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1743redim.jpg,,TRUE, +N1,58758,sortie-d5f284e4-1023-49e5-b0fa-0bed2747c46c,https://biolit.fr/sorties/sortie-d5f284e4-1023-49e5-b0fa-0bed2747c46c/,Valérie Eurin,,9/22/2021 0:00,19.0000000,20.0000000,49.424738000000,0.213299000000,,Honfleur plage du Butin,33526,observation-d5f284e4-1023-49e5-b0fa-0bed2747c46c-2,https://biolit.fr/observations/observation-d5f284e4-1023-49e5-b0fa-0bed2747c46c-2/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1740 redim.JPG,,TRUE, +N1,58758,sortie-d5f284e4-1023-49e5-b0fa-0bed2747c46c,https://biolit.fr/sorties/sortie-d5f284e4-1023-49e5-b0fa-0bed2747c46c/,Valérie Eurin,,9/22/2021 0:00,19.0000000,20.0000000,49.424738000000,0.213299000000,,Honfleur plage du Butin,33528,observation-d5f284e4-1023-49e5-b0fa-0bed2747c46c-3,https://biolit.fr/observations/observation-d5f284e4-1023-49e5-b0fa-0bed2747c46c-3/,Cygnus olor,Cygne tuberculé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1739 redim-scaled.jpg,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33530,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona fascicularis_4.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33532,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-2,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_15.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33534,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-3,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-3/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragaceae_5.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33536,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-4,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Anémone sp_0.PNG,,FALSE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33538,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-5,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-5/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_14.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33540,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-6,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-6/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_7.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33542,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-7,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-7/,Aplidium elegans,Fraise de mer,,https://biolit.fr/wp-content/uploads/2023/07/Aplidium elegans_0.PNG,,FALSE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33544,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-8,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie solitaire sp.PNG,,FALSE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33546,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-9,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-9/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_12.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33548,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-10,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-10/,Botrylloides spp. (leachii violaceus diegensis),Botrylles,,https://biolit.fr/wp-content/uploads/2023/07/Botrylloides spp_2.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33550,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-11,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-11/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_12.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33552,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-12,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-12/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_16.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33554,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-13,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-13/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_10.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33556,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-14,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-14/,Doris verrucosa,Doris verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/Doris verrucosa_5.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33558,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-15,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_22.PNG,,FALSE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33560,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-16,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp1_3.PNG,,FALSE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33562,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-17,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-17/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp2_0.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33564,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-18,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-18/,Gari depressa,Psammobie déprimée,,https://biolit.fr/wp-content/uploads/2023/07/Gari depressa_7.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33566,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-19,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-19/,Hiatella rugosa,Hiatelle rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/Hiatella rugosa.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33568,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-20,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-20/,Pleurobranchus membranaceus,Pleurobranche membraneux,,https://biolit.fr/wp-content/uploads/2023/07/Lamellaria sp_0.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33570,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-21,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-21/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/Lipophrys pholis_1.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33572,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-22,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-22/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_17.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33574,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-23,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-23/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_11.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33576,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-24,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-24/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_14.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33578,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-25,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-25/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_6.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33580,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-26,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-26/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_15.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33582,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-27,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-27/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes philippinarum pe.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33584,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-28,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/Spurilla neapolitana_0.PNG,,FALSE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33586,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-29,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-29/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/Urticina felina_2.PNG,,TRUE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33588,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-30,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ver sp_0.PNG,,FALSE, +N1,58759,sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14,https://biolit.fr/sorties/sortie-f2e290ae-a2b6-4a77-99a9-78468974bc14/,Roman,,9/25/2021 0:00,14.0000000,16.0000000,47.707460000000,-3.361098000000,,Port-Louis,33590,observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-31,https://biolit.fr/observations/observation-f2e290ae-a2b6-4a77-99a9-78468974bc14-31/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_13.PNG,,TRUE, +N1,58760,sortie-591276fd-e661-40cd-96b0-90fe3e65a7f2,https://biolit.fr/sorties/sortie-591276fd-e661-40cd-96b0-90fe3e65a7f2/,S DENIS,,9/20/2021 0:00,14.0000000,18.0000000,46.344011000000,-1.469696000000,,LA TRANCHE SUR MER,33592,observation-591276fd-e661-40cd-96b0-90fe3e65a7f2,https://biolit.fr/observations/observation-591276fd-e661-40cd-96b0-90fe3e65a7f2/,Calidris alba,Bécasseau sanderling,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0630[1]-scaled.jpg,,TRUE, +N1,58761,sortie-e7a24294-ab23-4f0a-8263-739a6aca5b98,https://biolit.fr/sorties/sortie-e7a24294-ab23-4f0a-8263-739a6aca5b98/,S DENIS,,9/20/2021 0:00,14.0000000,18.0000000,46.344307000000,-1.469867000000,,LA TRANCHE SUR MER,33594,observation-e7a24294-ab23-4f0a-8263-739a6aca5b98,https://biolit.fr/observations/observation-e7a24294-ab23-4f0a-8263-739a6aca5b98/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0633[1]-scaled.jpg,,TRUE, +N1,58762,sortie-2ed3da6e-b6ad-43a9-90f5-445c5d040524,https://biolit.fr/sorties/sortie-2ed3da6e-b6ad-43a9-90f5-445c5d040524/,S DENIS,,9/20/2021 0:00,14.0000000,18.0000000,46.34408700000,-1.469964000000,,LA TRANCHE SUR MER,33596,observation-2ed3da6e-b6ad-43a9-90f5-445c5d040524,https://biolit.fr/observations/observation-2ed3da6e-b6ad-43a9-90f5-445c5d040524/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0629[1]-scaled.jpg,,FALSE, +N1,58763,sortie-684b1f68-1943-4cef-b23d-61cae1ab0611,https://biolit.fr/sorties/sortie-684b1f68-1943-4cef-b23d-61cae1ab0611/,S DENIS,,9/20/2021 0:00,9.0000000,13.0000000,46.340752000000,-1.343096000000,,RESERVE NATURELLE CASSE DE LA BELLE HENRIETTE,,,,,,,,,, +N1,58764,sortie-a63ef4d9-4d91-4b66-802d-9bcb591824ec,https://biolit.fr/sorties/sortie-a63ef4d9-4d91-4b66-802d-9bcb591824ec/,S DENIS,,9/20/2021 0:00,14.0000000,18.0000000,46.34122600000,-1.34318100000,,RESERVE NATURELLE CASSE DE LA BELLE HENRIETTE,33600,observation-a63ef4d9-4d91-4b66-802d-9bcb591824ec,https://biolit.fr/observations/observation-a63ef4d9-4d91-4b66-802d-9bcb591824ec/,Tripolium pannonicum,Aster maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0614[1]-scaled.jpg,,TRUE, +N1,58765,sortie-f3766fa7-dcff-4b9f-a1e7-8d4f669258fd,https://biolit.fr/sorties/sortie-f3766fa7-dcff-4b9f-a1e7-8d4f669258fd/,S DENIS,,9/20/2021 0:00,9.0000000,13.0000000,46.340811000000,-1.343010000000,,RESERVE NATURELLE CASSE DE LA BELLE HENRIETTE,33602,observation-f3766fa7-dcff-4b9f-a1e7-8d4f669258fd,https://biolit.fr/observations/observation-f3766fa7-dcff-4b9f-a1e7-8d4f669258fd/,Leymus arenarius,Élyme des sables,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0626[1]-scaled.jpg,,TRUE, +N1,58766,sortie-5e9a79ce-582b-4824-bd9c-d65e53792bde,https://biolit.fr/sorties/sortie-5e9a79ce-582b-4824-bd9c-d65e53792bde/,S DENIS,,9/20/2021 0:00,9.0000000,13.0000000,46.340888000000,-1.343482000000,,RESERVE NATURELLE CASSE DE LA BELLE HENRIETTE,,,,,,,,,, +N1,58767,sortie-aeefe58d-c796-4b11-845a-373fe2b5dd45,https://biolit.fr/sorties/sortie-aeefe58d-c796-4b11-845a-373fe2b5dd45/,S DENIS,,9/20/2021 0:00,9.0000000,13.0000000,46.33792500000,-1.338504000000,,RESERVE NATURELLE CASSE DE LA BELLE HENRIETTE,33606,observation-aeefe58d-c796-4b11-845a-373fe2b5dd45,https://biolit.fr/observations/observation-aeefe58d-c796-4b11-845a-373fe2b5dd45/,Tripolium pannonicum,Aster maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0615[1]-scaled.jpg,,TRUE, +N1,58768,sortie-59ebb1b0-4e88-4c0c-885e-6d1c927ddda7,https://biolit.fr/sorties/sortie-59ebb1b0-4e88-4c0c-885e-6d1c927ddda7/,S DENIS,,9/20/2021 0:00,9.0000000,13.0000000,46.339922000000,-1.343525000000,,RESERVE NATURELLE CASSE DE LA BELLE HENRIETTE,,,,,,,,,, +N1,58769,sortie-509e5329-f516-464a-8dd9-e885b0af0e6a,https://biolit.fr/sorties/sortie-509e5329-f516-464a-8dd9-e885b0af0e6a/,S DENIS,,9/20/2021 0:00,9.0000000,13.0000000,46.338418000000,-1.339153000000,,RESERVE NATURELLE CASSE DE LA BELLE HENRIETTE,33610,observation-509e5329-f516-464a-8dd9-e885b0af0e6a,https://biolit.fr/observations/observation-509e5329-f516-464a-8dd9-e885b0af0e6a/,Salicornia spp.,Salicorne,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0606[1]-scaled.jpg,,TRUE, +N1,58770,sortie-ac11021e-bce5-411d-b814-6f3e6d512c90,https://biolit.fr/sorties/sortie-ac11021e-bce5-411d-b814-6f3e6d512c90/,S DENIS,,9/20/2021 0:00,9.0000000,13.0000000,46.33757000000,-1.337474000000,,RESERVE NATURELLE CASSE DE LA BELLE HENRIETTE,,,,,,,,,, +N1,58771,sortie-7041d2c7-7e7d-46e8-9c8d-ea5254abee65,https://biolit.fr/sorties/sortie-7041d2c7-7e7d-46e8-9c8d-ea5254abee65/,S DENIS,,9/20/2021 0:00,9.0:15,13.0:15,46.33713100000,-1.337216000000,,RESERVE NATURELLE CASSE DE LA BELLE HENRIETTE,,,,,,,,,, +N1,58772,sortie-55b414da-9e53-461a-8506-0834ee8cfab2,https://biolit.fr/sorties/sortie-55b414da-9e53-461a-8506-0834ee8cfab2/,S DENIS,,9/20/2021 0:00,9.0000000,13.0000000,46.336397000000,-1.33614300000,,RESERVE NATURELLE CASSE DE LA BELLE HENRIETTE,,,,,,,,,, +N1,58773,sortie-8df2efaf-207d-4d4d-ae6e-85064013eb4f,https://biolit.fr/sorties/sortie-8df2efaf-207d-4d4d-ae6e-85064013eb4f/,S DENIS,,9/20/2021 0:00,9.0000000,13.0000000,46.333285000000,-1.331508000000,,RESERVE NATURELLE CASSE DE LA BELLE HENRIETTE,33618,observation-8df2efaf-207d-4d4d-ae6e-85064013eb4f,https://biolit.fr/observations/observation-8df2efaf-207d-4d4d-ae6e-85064013eb4f/,Phragmites australis,Roseau,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0585[1]-scaled.jpg,,TRUE, +N1,58774,sortie-56d39597-3469-4895-ac34-2625ecb37bf7,https://biolit.fr/sorties/sortie-56d39597-3469-4895-ac34-2625ecb37bf7/,S DENIS,,9/24/2021 0:00,11.0000000,13.0000000,46.332864000000,-1.333096000000,,RESERVE NATURELLE CASSE DE LA BELLE HENRIETTE,33620,observation-56d39597-3469-4895-ac34-2625ecb37bf7,https://biolit.fr/observations/observation-56d39597-3469-4895-ac34-2625ecb37bf7/,Centaurea aspera,Centaurée rude,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0592[1]-scaled.jpg,,TRUE, +N1,58775,sortie-828478e0-fe6a-4b1d-8552-f3e0dfd4b4fa,https://biolit.fr/sorties/sortie-828478e0-fe6a-4b1d-8552-f3e0dfd4b4fa/,S DENIS,,9/24/2021 0:00,10.0000000,12.0000000,46.331644000000,-1.335757000000,,RESERVE NATURELLE CASSE DE LA BELLE HENRIETTE,,,,,,,,,, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33624,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita_6.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33626,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-2,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_14.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33628,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-3,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-3/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacaea.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33630,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-4,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_13.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33632,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-5,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-5/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/Anthopleura balli.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33634,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-6,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-6/,Lissoclinum weigelei,Ascidie coloniale beige,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie coloniale sp.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33636,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-7,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-7/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/asterias rubens_1.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33638,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-8,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-8/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_19.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33640,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-9,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/aucune idée_1.PNG,,FALSE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33642,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-10,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-10/,Berthella plumula,Berthelle plume,,https://biolit.fr/wp-content/uploads/2023/07/Berthella plumula.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33644,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-11,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-11/,Botrylloides spp. (leachii violaceus diegensis),Botrylles,,https://biolit.fr/wp-content/uploads/2023/07/botrylloides sp_1.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33646,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-12,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-12/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_9.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33648,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-13,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-13/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_9.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33650,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-14,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crassadoma pusio.PNG,,FALSE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33652,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-15,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge mie de pain.PNG,,FALSE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33654,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-16,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp pe_0.PNG,,FALSE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33656,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-17,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_21.PNG,,FALSE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33658,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-18,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp1_2.PNG,,FALSE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33660,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-19,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-19/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Eriphia verrucosa_8.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33662,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-20,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-20/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/Gobie sp_1.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33664,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-21,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-21/,Isozoanthus sulcatus,Anémone chocolat,,https://biolit.fr/wp-content/uploads/2023/07/Isozoanthus sulcatus.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33666,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-22,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lamellaria sp.PNG,,FALSE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33668,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-23,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-23/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_4.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33670,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-24,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-24/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_16.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33672,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-25,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-25/,Tritia incrassata,Nasse épaisse,,https://biolit.fr/wp-content/uploads/2023/07/Nassarius incrassatus_0.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33674,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-26,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-26/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_10.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33676,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-27,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-27/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_13.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33678,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-28,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-28/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/Pholacrocorax crabo.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33680,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-29,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-29/,Pilumnus hirtellus,Pilumne hirsute,,https://biolit.fr/wp-content/uploads/2023/07/Pilumnus hirtellus_3.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33682,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-30,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-30/,Spurilla neapolitana,Limace à bigoudis,,https://biolit.fr/wp-content/uploads/2023/07/Ponte de spurilla neapolitana.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33684,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-31,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-31/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_17.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33686,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-32,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-32/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_14.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33688,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-33,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-33/,Cilysta elegans,Sagartie élégante,,https://biolit.fr/wp-content/uploads/2023/07/Sagartia elegans.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33690,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-34,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-34/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/2023/07/Salaria pavo_1.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33692,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-35,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-35/,Serpula vermicularis,Serpule,,https://biolit.fr/wp-content/uploads/2023/07/Serpule sp.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33694,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-36,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-36/,,,,https://biolit.fr/wp-content/uploads/2023/07/siphon de bivalve sp.PNG,,FALSE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33696,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-37,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-37/,Spurilla neapolitana,Limace à bigoudis,,https://biolit.fr/wp-content/uploads/2023/07/Spurilla neapolitana-scaled.jpg,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33697,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-38,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-38/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/Urticina felina_1.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33699,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-39,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-39/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Watersipora subatra_3.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33701,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-40,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-40/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_15.PNG,,TRUE, +N1,58776,sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121,https://biolit.fr/sorties/sortie-f1d1cc3b-509c-428c-b0a3-3fd41a00a121/,Roman,,9/20/2021 0:00,11.0000000,13.0:15,47.703557000000,-3.355879000000,,Port-Louis,33703,observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-41,https://biolit.fr/observations/observation-f1d1cc3b-509c-428c-b0a3-3fd41a00a121-41/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_12.PNG,,TRUE, +N1,58777,sortie-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba,https://biolit.fr/sorties/sortie-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba/,Marine,,9/18/2021 0:00,9.0:25,10.0:25,43.214937000000,5.34298800000,Planète Mer,Anse de la Maronaise,33705,observation-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba,https://biolit.fr/observations/observation-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210918_095525-scaled.jpg,,TRUE, +N1,58777,sortie-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba,https://biolit.fr/sorties/sortie-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba/,Marine,,9/18/2021 0:00,9.0:25,10.0:25,43.214937000000,5.34298800000,Planète Mer,Anse de la Maronaise,33709,observation-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba-3,https://biolit.fr/observations/observation-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba-3/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210918_094648-scaled.jpg,,TRUE, +N1,58777,sortie-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba,https://biolit.fr/sorties/sortie-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba/,Marine,,9/18/2021 0:00,9.0:25,10.0:25,43.214937000000,5.34298800000,Planète Mer,Anse de la Maronaise,33711,observation-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba-4,https://biolit.fr/observations/observation-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba-4/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210918_104030-scaled.jpg,,TRUE, +N1,58777,sortie-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba,https://biolit.fr/sorties/sortie-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba/,Marine,,9/18/2021 0:00,9.0:25,10.0:25,43.214937000000,5.34298800000,Planète Mer,Anse de la Maronaise,33713,observation-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba-5,https://biolit.fr/observations/observation-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210918_094710-scaled.jpg,,FALSE, +N1,58777,sortie-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba,https://biolit.fr/sorties/sortie-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba/,Marine,,9/18/2021 0:00,9.0:25,10.0:25,43.214937000000,5.34298800000,Planète Mer,Anse de la Maronaise,33715,observation-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba-6,https://biolit.fr/observations/observation-7b5852e2-13de-4dad-a1f2-5227fbb2e1ba-6/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210918_095501-scaled.jpg,,TRUE, +N1,58778,sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3,https://biolit.fr/sorties/sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3/,do,,9/18/2021 0:00,9.0000000,12.0000000,43.214929000000,5.342935000000,Planète Mer,"marseille, Anse de la Maronaise",33727,observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-6,https://biolit.fr/observations/observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-6/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5562-rotated.jpg,,TRUE, +N1,58778,sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3,https://biolit.fr/sorties/sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3/,do,,9/18/2021 0:00,9.0000000,12.0000000,43.214929000000,5.342935000000,Planète Mer,"marseille, Anse de la Maronaise",33729,observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-7,https://biolit.fr/observations/observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5563-scaled.jpg,,FALSE, +N1,58778,sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3,https://biolit.fr/sorties/sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3/,do,,9/18/2021 0:00,9.0000000,12.0000000,43.214929000000,5.342935000000,Planète Mer,"marseille, Anse de la Maronaise",33731,observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-8,https://biolit.fr/observations/observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5564-scaled.jpg,,FALSE, +N1,58778,sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3,https://biolit.fr/sorties/sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3/,do,,9/18/2021 0:00,9.0000000,12.0000000,43.214929000000,5.342935000000,Planète Mer,"marseille, Anse de la Maronaise",33733,observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-9,https://biolit.fr/observations/observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5566-scaled.jpg,,FALSE, +N1,58778,sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3,https://biolit.fr/sorties/sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3/,do,,9/18/2021 0:00,9.0000000,12.0000000,43.214929000000,5.342935000000,Planète Mer,"marseille, Anse de la Maronaise",33735,observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-10,https://biolit.fr/observations/observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5567-scaled.jpg,,FALSE, +N1,58778,sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3,https://biolit.fr/sorties/sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3/,do,,9/18/2021 0:00,9.0000000,12.0000000,43.214929000000,5.342935000000,Planète Mer,"marseille, Anse de la Maronaise",33737,observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-11,https://biolit.fr/observations/observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5568-scaled.jpg,,FALSE, +N1,58778,sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3,https://biolit.fr/sorties/sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3/,do,,9/18/2021 0:00,9.0000000,12.0000000,43.214929000000,5.342935000000,Planète Mer,"marseille, Anse de la Maronaise",33739,observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-12,https://biolit.fr/observations/observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5569-scaled.jpg,,FALSE, +N1,58778,sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3,https://biolit.fr/sorties/sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3/,do,,9/18/2021 0:00,9.0000000,12.0000000,43.214929000000,5.342935000000,Planète Mer,"marseille, Anse de la Maronaise",33741,observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-13,https://biolit.fr/observations/observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5570-scaled.jpg,,FALSE, +N1,58778,sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3,https://biolit.fr/sorties/sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3/,do,,9/18/2021 0:00,9.0000000,12.0000000,43.214929000000,5.342935000000,Planète Mer,"marseille, Anse de la Maronaise",33743,observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-14,https://biolit.fr/observations/observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5571-scaled.jpg,,FALSE, +N1,58778,sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3,https://biolit.fr/sorties/sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3/,do,,9/18/2021 0:00,9.0000000,12.0000000,43.214929000000,5.342935000000,Planète Mer,"marseille, Anse de la Maronaise",33745,observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-15,https://biolit.fr/observations/observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5572-scaled.jpg,,FALSE, +N1,58778,sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3,https://biolit.fr/sorties/sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3/,do,,9/18/2021 0:00,9.0000000,12.0000000,43.214929000000,5.342935000000,Planète Mer,"marseille, Anse de la Maronaise",33747,observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-16,https://biolit.fr/observations/observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-16/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5573-scaled.jpg,,TRUE, +N1,58778,sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3,https://biolit.fr/sorties/sortie-3882bfaa-3935-4854-acc5-d01e6173e3f3/,do,,9/18/2021 0:00,9.0000000,12.0000000,43.214929000000,5.342935000000,Planète Mer,"marseille, Anse de la Maronaise",33749,observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-17,https://biolit.fr/observations/observation-3882bfaa-3935-4854-acc5-d01e6173e3f3-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5574.JPG,,FALSE, +N1,58779,sortie-3817e339-ec30-475d-a261-27bc1fd1b90d,https://biolit.fr/sorties/sortie-3817e339-ec30-475d-a261-27bc1fd1b90d/,edith-charrier,,09/11/2021,9.0:45,10.0000000,43.214885000000,5.342992000000,Planète Mer,"Marseille, Anse de la Maronaise",33750,observation-3817e339-ec30-475d-a261-27bc1fd1b90d,https://biolit.fr/observations/observation-3817e339-ec30-475d-a261-27bc1fd1b90d/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20210911_095705-min-scaled.jpg,,TRUE, +N1,58779,sortie-3817e339-ec30-475d-a261-27bc1fd1b90d,https://biolit.fr/sorties/sortie-3817e339-ec30-475d-a261-27bc1fd1b90d/,edith-charrier,,09/11/2021,9.0:45,10.0000000,43.214885000000,5.342992000000,Planète Mer,"Marseille, Anse de la Maronaise",33752,observation-3817e339-ec30-475d-a261-27bc1fd1b90d-2,https://biolit.fr/observations/observation-3817e339-ec30-475d-a261-27bc1fd1b90d-2/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210911_095725-min-scaled.jpg,,TRUE, +N1,58779,sortie-3817e339-ec30-475d-a261-27bc1fd1b90d,https://biolit.fr/sorties/sortie-3817e339-ec30-475d-a261-27bc1fd1b90d/,edith-charrier,,09/11/2021,9.0:45,10.0000000,43.214885000000,5.342992000000,Planète Mer,"Marseille, Anse de la Maronaise",33754,observation-3817e339-ec30-475d-a261-27bc1fd1b90d-3,https://biolit.fr/observations/observation-3817e339-ec30-475d-a261-27bc1fd1b90d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210911_095731-min-scaled.jpg,,FALSE, +N1,58779,sortie-3817e339-ec30-475d-a261-27bc1fd1b90d,https://biolit.fr/sorties/sortie-3817e339-ec30-475d-a261-27bc1fd1b90d/,edith-charrier,,09/11/2021,9.0:45,10.0000000,43.214885000000,5.342992000000,Planète Mer,"Marseille, Anse de la Maronaise",33756,observation-3817e339-ec30-475d-a261-27bc1fd1b90d-4,https://biolit.fr/observations/observation-3817e339-ec30-475d-a261-27bc1fd1b90d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210911_101908-min-scaled.jpg,,FALSE, +N1,58779,sortie-3817e339-ec30-475d-a261-27bc1fd1b90d,https://biolit.fr/sorties/sortie-3817e339-ec30-475d-a261-27bc1fd1b90d/,edith-charrier,,09/11/2021,9.0:45,10.0000000,43.214885000000,5.342992000000,Planète Mer,"Marseille, Anse de la Maronaise",33758,observation-3817e339-ec30-475d-a261-27bc1fd1b90d-5,https://biolit.fr/observations/observation-3817e339-ec30-475d-a261-27bc1fd1b90d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210911_101915-min-scaled.jpg,,FALSE, +N1,58779,sortie-3817e339-ec30-475d-a261-27bc1fd1b90d,https://biolit.fr/sorties/sortie-3817e339-ec30-475d-a261-27bc1fd1b90d/,edith-charrier,,09/11/2021,9.0:45,10.0000000,43.214885000000,5.342992000000,Planète Mer,"Marseille, Anse de la Maronaise",33760,observation-3817e339-ec30-475d-a261-27bc1fd1b90d-6,https://biolit.fr/observations/observation-3817e339-ec30-475d-a261-27bc1fd1b90d-6/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20210911_101920-min-scaled.jpg,,TRUE, +N1,58779,sortie-3817e339-ec30-475d-a261-27bc1fd1b90d,https://biolit.fr/sorties/sortie-3817e339-ec30-475d-a261-27bc1fd1b90d/,edith-charrier,,09/11/2021,9.0:45,10.0000000,43.214885000000,5.342992000000,Planète Mer,"Marseille, Anse de la Maronaise",33762,observation-3817e339-ec30-475d-a261-27bc1fd1b90d-7,https://biolit.fr/observations/observation-3817e339-ec30-475d-a261-27bc1fd1b90d-7/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/20210911_102530-min-scaled.jpg,,TRUE, +N1,58779,sortie-3817e339-ec30-475d-a261-27bc1fd1b90d,https://biolit.fr/sorties/sortie-3817e339-ec30-475d-a261-27bc1fd1b90d/,edith-charrier,,09/11/2021,9.0:45,10.0000000,43.214885000000,5.342992000000,Planète Mer,"Marseille, Anse de la Maronaise",33764,observation-3817e339-ec30-475d-a261-27bc1fd1b90d-8,https://biolit.fr/observations/observation-3817e339-ec30-475d-a261-27bc1fd1b90d-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210911_103236-min-scaled.jpg,,FALSE, +N1,58779,sortie-3817e339-ec30-475d-a261-27bc1fd1b90d,https://biolit.fr/sorties/sortie-3817e339-ec30-475d-a261-27bc1fd1b90d/,edith-charrier,,09/11/2021,9.0:45,10.0000000,43.214885000000,5.342992000000,Planète Mer,"Marseille, Anse de la Maronaise",33766,observation-3817e339-ec30-475d-a261-27bc1fd1b90d-9,https://biolit.fr/observations/observation-3817e339-ec30-475d-a261-27bc1fd1b90d-9/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/20210911_103357-min-scaled.jpg,,TRUE, +N1,58779,sortie-3817e339-ec30-475d-a261-27bc1fd1b90d,https://biolit.fr/sorties/sortie-3817e339-ec30-475d-a261-27bc1fd1b90d/,edith-charrier,,09/11/2021,9.0:45,10.0000000,43.214885000000,5.342992000000,Planète Mer,"Marseille, Anse de la Maronaise",33768,observation-3817e339-ec30-475d-a261-27bc1fd1b90d-10,https://biolit.fr/observations/observation-3817e339-ec30-475d-a261-27bc1fd1b90d-10/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20210911_104052-min-scaled.jpg,,TRUE, +N1,58779,sortie-3817e339-ec30-475d-a261-27bc1fd1b90d,https://biolit.fr/sorties/sortie-3817e339-ec30-475d-a261-27bc1fd1b90d/,edith-charrier,,09/11/2021,9.0:45,10.0000000,43.214885000000,5.342992000000,Planète Mer,"Marseille, Anse de la Maronaise",33770,observation-3817e339-ec30-475d-a261-27bc1fd1b90d-11,https://biolit.fr/observations/observation-3817e339-ec30-475d-a261-27bc1fd1b90d-11/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20210911_104054-min-scaled.jpg,,TRUE, +N1,58780,sortie-7bc896d1-1b40-4f4d-a791-29c034fcd71e,https://biolit.fr/sorties/sortie-7bc896d1-1b40-4f4d-a791-29c034fcd71e/,guisen,,9/13/2021 0:00,16.0:35,18.0:35,47.104917000000,-2.091555000000,,plage de la Birochère - Pornic ,33772,observation-7bc896d1-1b40-4f4d-a791-29c034fcd71e,https://biolit.fr/observations/observation-7bc896d1-1b40-4f4d-a791-29c034fcd71e/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4213[1]-scaled.jpg,,FALSE, +N1,58780,sortie-7bc896d1-1b40-4f4d-a791-29c034fcd71e,https://biolit.fr/sorties/sortie-7bc896d1-1b40-4f4d-a791-29c034fcd71e/,guisen,,9/13/2021 0:00,16.0:35,18.0:35,47.104917000000,-2.091555000000,,plage de la Birochère - Pornic ,33774,observation-7bc896d1-1b40-4f4d-a791-29c034fcd71e-2,https://biolit.fr/observations/observation-7bc896d1-1b40-4f4d-a791-29c034fcd71e-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4215[1]-scaled.jpg,,TRUE, +N1,58780,sortie-7bc896d1-1b40-4f4d-a791-29c034fcd71e,https://biolit.fr/sorties/sortie-7bc896d1-1b40-4f4d-a791-29c034fcd71e/,guisen,,9/13/2021 0:00,16.0:35,18.0:35,47.104917000000,-2.091555000000,,plage de la Birochère - Pornic ,33776,observation-7bc896d1-1b40-4f4d-a791-29c034fcd71e-3,https://biolit.fr/observations/observation-7bc896d1-1b40-4f4d-a791-29c034fcd71e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4216[1]-scaled.jpg,,FALSE, +N1,58780,sortie-7bc896d1-1b40-4f4d-a791-29c034fcd71e,https://biolit.fr/sorties/sortie-7bc896d1-1b40-4f4d-a791-29c034fcd71e/,guisen,,9/13/2021 0:00,16.0:35,18.0:35,47.104917000000,-2.091555000000,,plage de la Birochère - Pornic ,33778,observation-7bc896d1-1b40-4f4d-a791-29c034fcd71e-4,https://biolit.fr/observations/observation-7bc896d1-1b40-4f4d-a791-29c034fcd71e-4/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4218[1]-scaled.jpg,,TRUE, +N1,58780,sortie-7bc896d1-1b40-4f4d-a791-29c034fcd71e,https://biolit.fr/sorties/sortie-7bc896d1-1b40-4f4d-a791-29c034fcd71e/,guisen,,9/13/2021 0:00,16.0:35,18.0:35,47.104917000000,-2.091555000000,,plage de la Birochère - Pornic ,33780,observation-7bc896d1-1b40-4f4d-a791-29c034fcd71e-5,https://biolit.fr/observations/observation-7bc896d1-1b40-4f4d-a791-29c034fcd71e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4219[1]-scaled.jpg,,FALSE, +N1,58781,sortie-74dd8b3f-1961-4b3f-8635-c1b80160cf52,https://biolit.fr/sorties/sortie-74dd8b3f-1961-4b3f-8635-c1b80160cf52/,Alexandrine Choffat,,8/15/2021 0:00,9.0000000,11.0000000,49.513582000000,0.09018900000,,Saint Adresse ,33782,observation-74dd8b3f-1961-4b3f-8635-c1b80160cf52,https://biolit.fr/observations/observation-74dd8b3f-1961-4b3f-8635-c1b80160cf52/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20210815_tourteau-scaled.jpg,,TRUE, +N1,58781,sortie-74dd8b3f-1961-4b3f-8635-c1b80160cf52,https://biolit.fr/sorties/sortie-74dd8b3f-1961-4b3f-8635-c1b80160cf52/,Alexandrine Choffat,,8/15/2021 0:00,9.0000000,11.0000000,49.513582000000,0.09018900000,,Saint Adresse ,33784,observation-74dd8b3f-1961-4b3f-8635-c1b80160cf52-2,https://biolit.fr/observations/observation-74dd8b3f-1961-4b3f-8635-c1b80160cf52-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20210815_anémone-scaled.jpg,,TRUE, +N1,58781,sortie-74dd8b3f-1961-4b3f-8635-c1b80160cf52,https://biolit.fr/sorties/sortie-74dd8b3f-1961-4b3f-8635-c1b80160cf52/,Alexandrine Choffat,,8/15/2021 0:00,9.0000000,11.0000000,49.513582000000,0.09018900000,,Saint Adresse ,33786,observation-74dd8b3f-1961-4b3f-8635-c1b80160cf52-3,https://biolit.fr/observations/observation-74dd8b3f-1961-4b3f-8635-c1b80160cf52-3/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20210815_concombre-scaled.jpg,,TRUE, +N1,58781,sortie-74dd8b3f-1961-4b3f-8635-c1b80160cf52,https://biolit.fr/sorties/sortie-74dd8b3f-1961-4b3f-8635-c1b80160cf52/,Alexandrine Choffat,,8/15/2021 0:00,9.0000000,11.0000000,49.513582000000,0.09018900000,,Saint Adresse ,33788,observation-74dd8b3f-1961-4b3f-8635-c1b80160cf52-4,https://biolit.fr/observations/observation-74dd8b3f-1961-4b3f-8635-c1b80160cf52-4/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/20210815_goélands-scaled.jpg,,TRUE, +N1,58781,sortie-74dd8b3f-1961-4b3f-8635-c1b80160cf52,https://biolit.fr/sorties/sortie-74dd8b3f-1961-4b3f-8635-c1b80160cf52/,Alexandrine Choffat,,8/15/2021 0:00,9.0000000,11.0000000,49.513582000000,0.09018900000,,Saint Adresse ,33790,observation-74dd8b3f-1961-4b3f-8635-c1b80160cf52-5,https://biolit.fr/observations/observation-74dd8b3f-1961-4b3f-8635-c1b80160cf52-5/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/20210815_moules-scaled.jpg,,TRUE, +N1,58781,sortie-74dd8b3f-1961-4b3f-8635-c1b80160cf52,https://biolit.fr/sorties/sortie-74dd8b3f-1961-4b3f-8635-c1b80160cf52/,Alexandrine Choffat,,8/15/2021 0:00,9.0000000,11.0000000,49.513582000000,0.09018900000,,Saint Adresse ,33792,observation-74dd8b3f-1961-4b3f-8635-c1b80160cf52-6,https://biolit.fr/observations/observation-74dd8b3f-1961-4b3f-8635-c1b80160cf52-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210815_algue-scaled.jpg,,FALSE, +N1,58782,sortie-1dea3b99-73e7-472b-ac28-1b8d2135fcf7,https://biolit.fr/sorties/sortie-1dea3b99-73e7-472b-ac28-1b8d2135fcf7/,djulien,,09/04/2021,13.0000000,15.0000000,49.737876000000,0.289688000000,,Plage de Vaucottes,33794,observation-1dea3b99-73e7-472b-ac28-1b8d2135fcf7,https://biolit.fr/observations/observation-1dea3b99-73e7-472b-ac28-1b8d2135fcf7/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/10F38D57-83AD-4B01-99BC-EF3CEBB0E61D-scaled.jpeg,,TRUE, +N1,58782,sortie-1dea3b99-73e7-472b-ac28-1b8d2135fcf7,https://biolit.fr/sorties/sortie-1dea3b99-73e7-472b-ac28-1b8d2135fcf7/,djulien,,09/04/2021,13.0000000,15.0000000,49.737876000000,0.289688000000,,Plage de Vaucottes,33796,observation-1dea3b99-73e7-472b-ac28-1b8d2135fcf7-2,https://biolit.fr/observations/observation-1dea3b99-73e7-472b-ac28-1b8d2135fcf7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/64D8E1B3-59C2-4C02-AA76-9A946924E779-scaled.jpeg,,FALSE, +N1,58782,sortie-1dea3b99-73e7-472b-ac28-1b8d2135fcf7,https://biolit.fr/sorties/sortie-1dea3b99-73e7-472b-ac28-1b8d2135fcf7/,djulien,,09/04/2021,13.0000000,15.0000000,49.737876000000,0.289688000000,,Plage de Vaucottes,33798,observation-1dea3b99-73e7-472b-ac28-1b8d2135fcf7-3,https://biolit.fr/observations/observation-1dea3b99-73e7-472b-ac28-1b8d2135fcf7-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/884CE90F-9D3F-4663-8C64-586D689F84B2-scaled.jpeg,,TRUE, +N1,58782,sortie-1dea3b99-73e7-472b-ac28-1b8d2135fcf7,https://biolit.fr/sorties/sortie-1dea3b99-73e7-472b-ac28-1b8d2135fcf7/,djulien,,09/04/2021,13.0000000,15.0000000,49.737876000000,0.289688000000,,Plage de Vaucottes,33800,observation-1dea3b99-73e7-472b-ac28-1b8d2135fcf7-4,https://biolit.fr/observations/observation-1dea3b99-73e7-472b-ac28-1b8d2135fcf7-4/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/64B34226-23CA-4E9A-A537-4E3C0CCE2FD8-scaled.jpeg,,TRUE, +N1,58782,sortie-1dea3b99-73e7-472b-ac28-1b8d2135fcf7,https://biolit.fr/sorties/sortie-1dea3b99-73e7-472b-ac28-1b8d2135fcf7/,djulien,,09/04/2021,13.0000000,15.0000000,49.737876000000,0.289688000000,,Plage de Vaucottes,33802,observation-1dea3b99-73e7-472b-ac28-1b8d2135fcf7-5,https://biolit.fr/observations/observation-1dea3b99-73e7-472b-ac28-1b8d2135fcf7-5/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/65215A31-60FE-46C9-B1A9-E51053CA6F36-scaled.jpeg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33804,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_143546_1-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33806,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-2,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_143609-scaled.jpg,,FALSE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33808,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-3,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_143537-scaled.jpg,,FALSE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33810,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-4,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-4/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_160735_1-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33812,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-5,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-5/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_153433 (2)-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33814,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-6,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-6/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_163846_1-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33816,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-7,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-7/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_170102-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33818,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-8,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-8/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_165039-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33820,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-9,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_165044-scaled.jpg,,FALSE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33822,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-10,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_172150 (2)-scaled.jpg,,FALSE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33824,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-11,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_172151 (2)-scaled.jpg,,FALSE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33826,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-12,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_155913 (2)-scaled.jpg,,FALSE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33828,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-13,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-13/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/bis.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33830,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-14,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-14/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_165541_1-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33832,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-15,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-15/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_165630-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33834,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-16,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_165035 (2)-scaled.jpg,,,Identifiable +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33836,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-17,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_172109-scaled.jpg,,FALSE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33838,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-18,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_172100_1-scaled.jpg,,FALSE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33840,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-19,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_172006-scaled.jpg,,FALSE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33842,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-20,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-20/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_150328 (2)-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33844,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-21,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-21/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_150442-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33846,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-22,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-22/,Pelvetia canaliculata,Pelvétie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_144228-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33848,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-23,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-23/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_164924-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33850,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-24,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-24/,Ramalina siliquosa,Ramaline des rochers,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_143925-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33852,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-25,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-25/,Ramalina siliquosa,Ramaline des rochers,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_143929-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33854,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-26,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_154900-scaled.jpg,,FALSE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33856,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-27,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-27/,Rivularia bullata,Rivulaire en forme de bulle,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_154146-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33858,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-28,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-28/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_164032-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33860,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-29,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-29/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_164041-scaled.jpg,,TRUE, +N1,58783,sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636,https://biolit.fr/sorties/sortie-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636/,Gogol,,08/06/2019,14.0000000,17.0000000,48.662397000000,-2.841932000000,," St-Quay Portrieux, Grève de Fonteny",33862,observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-30,https://biolit.fr/observations/observation-f5e6bff5-e3ac-4de6-bbb7-17ad3ead1636-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190806_160230-scaled.jpg,,FALSE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33864,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_13.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33866,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-2,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragaceae_4.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33868,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-3,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-3/,Lissoclinum weigelei,Ascidie coloniale beige,,https://biolit.fr/wp-content/uploads/2023/07/ascidie coloniales et solitaire.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33870,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-4,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-4/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_18.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33872,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-5,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/aucune idée_0.PNG,,FALSE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33874,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-6,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-6/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_8.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33876,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-7,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-7/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_8.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33878,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-8,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-8/,Diodora graeca,Fissurelle,,https://biolit.fr/wp-content/uploads/2023/07/Diodora graeca_2.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33880,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-9,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-9/,Doris verrucosa,Doris verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/Doris verrucosa_4.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33882,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-10,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_20.PNG,,FALSE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33884,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-11,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-11/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Eriphia verrucosa_7.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33886,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-12,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-12/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/Haliotis tuberculata_6.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33888,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-13,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-13/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_3.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33890,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-14,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-14/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/Lipophrys pholis pe.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33892,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-15,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-15/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Maja pe.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33894,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-16,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-16/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_15.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33896,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-17,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-17/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis lumbriciformis_3.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33898,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-18,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-18/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/Ophiotrix fragilis_3.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33900,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-19,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-19/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_5.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33902,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-20,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-20/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/Palaemon sp.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33904,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-21,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-21/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/Phalacrocorax carbo.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33906,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-22,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/Polychète sp.PNG,,FALSE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33908,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-23,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-23/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_16.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33910,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-24,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-24/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_13.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33912,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-25,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-25/,Trivia arctica,Grain de café rose,,https://biolit.fr/wp-content/uploads/2023/07/Trivia monacha et arctica_0.PNG,,TRUE, +N1,58784,sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e,https://biolit.fr/sorties/sortie-70ba7aff-6d14-4485-b497-682f6c8eaf5e/,Roman,,8/28/2021 0:00,15.0000000,16.0000000,47.619633000000,-3.42248300000,,Groix,33914,observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-26,https://biolit.fr/observations/observation-70ba7aff-6d14-4485-b497-682f6c8eaf5e-26/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_14.PNG,,TRUE, +N1,58785,sortie-4812f228-6ac5-4a82-9f47-359ec99916b0,https://biolit.fr/sorties/sortie-4812f228-6ac5-4a82-9f47-359ec99916b0/,Sophie LOEHLE,,8/19/2021 0:00,12.0000000,14.0000000,48.26025400000,-4.602999000000,,"Plage de Veryac'h, Presqu'île de Crozon, GR34",33916,observation-4812f228-6ac5-4a82-9f47-359ec99916b0,https://biolit.fr/observations/observation-4812f228-6ac5-4a82-9f47-359ec99916b0/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Crozon1.JPG,,TRUE, +N1,58785,sortie-4812f228-6ac5-4a82-9f47-359ec99916b0,https://biolit.fr/sorties/sortie-4812f228-6ac5-4a82-9f47-359ec99916b0/,Sophie LOEHLE,,8/19/2021 0:00,12.0000000,14.0000000,48.26025400000,-4.602999000000,,"Plage de Veryac'h, Presqu'île de Crozon, GR34",33918,observation-4812f228-6ac5-4a82-9f47-359ec99916b0-2,https://biolit.fr/observations/observation-4812f228-6ac5-4a82-9f47-359ec99916b0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crozon2.JPG,,FALSE, +N1,58785,sortie-4812f228-6ac5-4a82-9f47-359ec99916b0,https://biolit.fr/sorties/sortie-4812f228-6ac5-4a82-9f47-359ec99916b0/,Sophie LOEHLE,,8/19/2021 0:00,12.0000000,14.0000000,48.26025400000,-4.602999000000,,"Plage de Veryac'h, Presqu'île de Crozon, GR34",33920,observation-4812f228-6ac5-4a82-9f47-359ec99916b0-3,https://biolit.fr/observations/observation-4812f228-6ac5-4a82-9f47-359ec99916b0-3/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/2023/07/Crozon3.JPG,,TRUE, +N1,58785,sortie-4812f228-6ac5-4a82-9f47-359ec99916b0,https://biolit.fr/sorties/sortie-4812f228-6ac5-4a82-9f47-359ec99916b0/,Sophie LOEHLE,,8/19/2021 0:00,12.0000000,14.0000000,48.26025400000,-4.602999000000,,"Plage de Veryac'h, Presqu'île de Crozon, GR34",33922,observation-4812f228-6ac5-4a82-9f47-359ec99916b0-4,https://biolit.fr/observations/observation-4812f228-6ac5-4a82-9f47-359ec99916b0-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210819_075747594-scaled.jpg,,FALSE, +N1,58785,sortie-4812f228-6ac5-4a82-9f47-359ec99916b0,https://biolit.fr/sorties/sortie-4812f228-6ac5-4a82-9f47-359ec99916b0/,Sophie LOEHLE,,8/19/2021 0:00,12.0000000,14.0000000,48.26025400000,-4.602999000000,,"Plage de Veryac'h, Presqu'île de Crozon, GR34",33924,observation-4812f228-6ac5-4a82-9f47-359ec99916b0-5,https://biolit.fr/observations/observation-4812f228-6ac5-4a82-9f47-359ec99916b0-5/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210819_103139976-scaled.jpg,,TRUE, +N1,58785,sortie-4812f228-6ac5-4a82-9f47-359ec99916b0,https://biolit.fr/sorties/sortie-4812f228-6ac5-4a82-9f47-359ec99916b0/,Sophie LOEHLE,,8/19/2021 0:00,12.0000000,14.0000000,48.26025400000,-4.602999000000,,"Plage de Veryac'h, Presqu'île de Crozon, GR34",33926,observation-4812f228-6ac5-4a82-9f47-359ec99916b0-6,https://biolit.fr/observations/observation-4812f228-6ac5-4a82-9f47-359ec99916b0-6/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210819_103258717-scaled.jpg,,TRUE, +N1,58785,sortie-4812f228-6ac5-4a82-9f47-359ec99916b0,https://biolit.fr/sorties/sortie-4812f228-6ac5-4a82-9f47-359ec99916b0/,Sophie LOEHLE,,8/19/2021 0:00,12.0000000,14.0000000,48.26025400000,-4.602999000000,,"Plage de Veryac'h, Presqu'île de Crozon, GR34",33928,observation-4812f228-6ac5-4a82-9f47-359ec99916b0-7,https://biolit.fr/observations/observation-4812f228-6ac5-4a82-9f47-359ec99916b0-7/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210819_103239743-scaled.jpg,,TRUE, +N1,58785,sortie-4812f228-6ac5-4a82-9f47-359ec99916b0,https://biolit.fr/sorties/sortie-4812f228-6ac5-4a82-9f47-359ec99916b0/,Sophie LOEHLE,,8/19/2021 0:00,12.0000000,14.0000000,48.26025400000,-4.602999000000,,"Plage de Veryac'h, Presqu'île de Crozon, GR34",33930,observation-4812f228-6ac5-4a82-9f47-359ec99916b0-8,https://biolit.fr/observations/observation-4812f228-6ac5-4a82-9f47-359ec99916b0-8/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210819_103218776-scaled.jpg,,TRUE, +N1,58786,sortie-3eb6e07d-e09e-43b1-ad40-b3a94557f710,https://biolit.fr/sorties/sortie-3eb6e07d-e09e-43b1-ad40-b3a94557f710/,Sophie LOEHLE,,8/17/2021 0:00,16.0000000,18.0000000,48.281829000000,-4.495077000000,,"Anse du Fret, presqu'île de Crozon, Lanveoc",33932,observation-3eb6e07d-e09e-43b1-ad40-b3a94557f710,https://biolit.fr/observations/observation-3eb6e07d-e09e-43b1-ad40-b3a94557f710/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210817_155204535-scaled.jpg,,TRUE, +N1,58786,sortie-3eb6e07d-e09e-43b1-ad40-b3a94557f710,https://biolit.fr/sorties/sortie-3eb6e07d-e09e-43b1-ad40-b3a94557f710/,Sophie LOEHLE,,8/17/2021 0:00,16.0000000,18.0000000,48.281829000000,-4.495077000000,,"Anse du Fret, presqu'île de Crozon, Lanveoc",33934,observation-3eb6e07d-e09e-43b1-ad40-b3a94557f710-2,https://biolit.fr/observations/observation-3eb6e07d-e09e-43b1-ad40-b3a94557f710-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210817_155224993-scaled.jpg,,FALSE, +N1,58786,sortie-3eb6e07d-e09e-43b1-ad40-b3a94557f710,https://biolit.fr/sorties/sortie-3eb6e07d-e09e-43b1-ad40-b3a94557f710/,Sophie LOEHLE,,8/17/2021 0:00,16.0000000,18.0000000,48.281829000000,-4.495077000000,,"Anse du Fret, presqu'île de Crozon, Lanveoc",33936,observation-3eb6e07d-e09e-43b1-ad40-b3a94557f710-3,https://biolit.fr/observations/observation-3eb6e07d-e09e-43b1-ad40-b3a94557f710-3/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210817_155511129-scaled.jpg,,TRUE, +N1,58786,sortie-3eb6e07d-e09e-43b1-ad40-b3a94557f710,https://biolit.fr/sorties/sortie-3eb6e07d-e09e-43b1-ad40-b3a94557f710/,Sophie LOEHLE,,8/17/2021 0:00,16.0000000,18.0000000,48.281829000000,-4.495077000000,,"Anse du Fret, presqu'île de Crozon, Lanveoc",33938,observation-3eb6e07d-e09e-43b1-ad40-b3a94557f710-4,https://biolit.fr/observations/observation-3eb6e07d-e09e-43b1-ad40-b3a94557f710-4/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210817_155605299-scaled.jpg,,TRUE, +N1,58786,sortie-3eb6e07d-e09e-43b1-ad40-b3a94557f710,https://biolit.fr/sorties/sortie-3eb6e07d-e09e-43b1-ad40-b3a94557f710/,Sophie LOEHLE,,8/17/2021 0:00,16.0000000,18.0000000,48.281829000000,-4.495077000000,,"Anse du Fret, presqu'île de Crozon, Lanveoc",33940,observation-3eb6e07d-e09e-43b1-ad40-b3a94557f710-5,https://biolit.fr/observations/observation-3eb6e07d-e09e-43b1-ad40-b3a94557f710-5/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210817_155818600-scaled.jpg,,TRUE, +N1,58787,sortie-e6a30948-aaa0-48b4-8aa4-9990e507fc16,https://biolit.fr/sorties/sortie-e6a30948-aaa0-48b4-8aa4-9990e507fc16/,Florian Martel,,8/21/2021 0:00,11.0:15,11.0000000,43.285819000000,3.392173000000,,Vias plage - camping roucan west,33942,observation-e6a30948-aaa0-48b4-8aa4-9990e507fc16,https://biolit.fr/observations/observation-e6a30948-aaa0-48b4-8aa4-9990e507fc16/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/12044BAC-D7B5-4030-B07B-8F545756942C-scaled.jpeg,,TRUE, +N1,58788,sortie-eb4c46d1-31a3-43b5-9430-f11301939f42,https://biolit.fr/sorties/sortie-eb4c46d1-31a3-43b5-9430-f11301939f42/,Laura_34,,8/25/2021 0:00,13.0000000,15.0000000,43.553155000000,4.009682000000,,Plage du Petit Travers - MAUGUIO (34),33944,observation-eb4c46d1-31a3-43b5-9430-f11301939f42,https://biolit.fr/observations/observation-eb4c46d1-31a3-43b5-9430-f11301939f42/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/Photo 8.jpg,,TRUE, +N1,58788,sortie-eb4c46d1-31a3-43b5-9430-f11301939f42,https://biolit.fr/sorties/sortie-eb4c46d1-31a3-43b5-9430-f11301939f42/,Laura_34,,8/25/2021 0:00,13.0000000,15.0000000,43.553155000000,4.009682000000,,Plage du Petit Travers - MAUGUIO (34),33946,observation-eb4c46d1-31a3-43b5-9430-f11301939f42-2,https://biolit.fr/observations/observation-eb4c46d1-31a3-43b5-9430-f11301939f42-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Photo 6.jpg,,FALSE, +N1,58788,sortie-eb4c46d1-31a3-43b5-9430-f11301939f42,https://biolit.fr/sorties/sortie-eb4c46d1-31a3-43b5-9430-f11301939f42/,Laura_34,,8/25/2021 0:00,13.0000000,15.0000000,43.553155000000,4.009682000000,,Plage du Petit Travers - MAUGUIO (34),33948,observation-eb4c46d1-31a3-43b5-9430-f11301939f42-3,https://biolit.fr/observations/observation-eb4c46d1-31a3-43b5-9430-f11301939f42-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Photo 9.jpg,,FALSE, +N1,58788,sortie-eb4c46d1-31a3-43b5-9430-f11301939f42,https://biolit.fr/sorties/sortie-eb4c46d1-31a3-43b5-9430-f11301939f42/,Laura_34,,8/25/2021 0:00,13.0000000,15.0000000,43.553155000000,4.009682000000,,Plage du Petit Travers - MAUGUIO (34),33950,observation-eb4c46d1-31a3-43b5-9430-f11301939f42-4,https://biolit.fr/observations/observation-eb4c46d1-31a3-43b5-9430-f11301939f42-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Photo 3.jpg,,FALSE, +N1,58788,sortie-eb4c46d1-31a3-43b5-9430-f11301939f42,https://biolit.fr/sorties/sortie-eb4c46d1-31a3-43b5-9430-f11301939f42/,Laura_34,,8/25/2021 0:00,13.0000000,15.0000000,43.553155000000,4.009682000000,,Plage du Petit Travers - MAUGUIO (34),33952,observation-eb4c46d1-31a3-43b5-9430-f11301939f42-5,https://biolit.fr/observations/observation-eb4c46d1-31a3-43b5-9430-f11301939f42-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Photo 11.jpg,,FALSE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33954,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie sp_4.PNG,,FALSE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33955,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-2,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-2/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_11.PNG,,TRUE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33957,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-3,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-3/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_17.PNG,,TRUE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33959,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-4,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-4/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Chlamys varia_2.PNG,,TRUE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33961,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-5,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-5/,Ciliata mustela,Motelle à 5 barbillons,,https://biolit.fr/wp-content/uploads/2023/07/Ciliata mustela_1.PNG,,TRUE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33963,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-6,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-6/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Doris pseudoargus et marthasterias glacialis.PNG,,TRUE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33965,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-7,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-7/,Dysidea fragilis,Eponge mie de pain mouillée,,https://biolit.fr/wp-content/uploads/2023/07/Dysidea fragilis_0.PNG,,TRUE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33967,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-8,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_19.PNG,,FALSE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33969,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-9,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-9/,Galeomma turtoni,Goutte de lait,,https://biolit.fr/wp-content/uploads/2023/07/Galeomma turtoni.PNG,,TRUE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33971,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-10,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-10/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/Haliotis tuberculata_5.PNG,,TRUE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33973,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-11,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-11/,Limaria hians,Lime bâillante,,https://biolit.fr/wp-content/uploads/2023/07/limaria loscombii pe.PNG,,TRUE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33975,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-12,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-12/,Inachus phalangium,Araignée des anémones,,https://biolit.fr/wp-content/uploads/2023/07/Macropoda sp_0.PNG,,TRUE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33977,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-13,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-13/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_9.PNG,,TRUE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33979,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-14,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-14/,Pilumnus hirtellus,Pilumne hirsute,,https://biolit.fr/wp-content/uploads/2023/07/Pilumnus hirtellus_2.PNG,,TRUE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33981,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-15,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ponte sp.PNG,,FALSE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33983,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-16,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pycnogonide sp.PNG,,FALSE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33985,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-17,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-17/,Styela clava,Ascidie japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Styela clava_0.PNG,,TRUE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33987,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-18,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-18/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/Trivia monacha_1.PNG,,TRUE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33989,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-19,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-19/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Watersipora subatra_2.PNG,,TRUE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33991,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-20,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-20/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_13.PNG,,TRUE, +N1,58789,sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec,https://biolit.fr/sorties/sortie-e26092ea-d8cd-49ad-9af6-9007993a25ec/,Roman,,8/22/2021 0:00,11.0:25,12.0000000,47.703315000000,-3.349962000000,,Port-Louis,33993,observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-21,https://biolit.fr/observations/observation-e26092ea-d8cd-49ad-9af6-9007993a25ec-21/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_11.PNG,,TRUE, +N1,58790,sortie-fbc69d2c-16db-42ac-a226-74ad043ce4a9,https://biolit.fr/sorties/sortie-fbc69d2c-16db-42ac-a226-74ad043ce4a9/,VAL DYS,,8/18/2021 0:00,17.0000000,18.0000000,47.250682000000,-2.329569000000,,PORNICHET,33995,observation-fbc69d2c-16db-42ac-a226-74ad043ce4a9,https://biolit.fr/observations/observation-fbc69d2c-16db-42ac-a226-74ad043ce4a9/,Yucca gloriosa,Yucca,,https://biolit.fr/wp-content/uploads/2023/07/escargot_0-scaled.jpg,,TRUE, +N1,58790,sortie-fbc69d2c-16db-42ac-a226-74ad043ce4a9,https://biolit.fr/sorties/sortie-fbc69d2c-16db-42ac-a226-74ad043ce4a9/,VAL DYS,,8/18/2021 0:00,17.0000000,18.0000000,47.250682000000,-2.329569000000,,PORNICHET,33997,observation-fbc69d2c-16db-42ac-a226-74ad043ce4a9-2,https://biolit.fr/observations/observation-fbc69d2c-16db-42ac-a226-74ad043ce4a9-2/,Gaillardia pulchella,Gaillarde jolie,,https://biolit.fr/wp-content/uploads/2023/07/fleur -scaled.jpg,,TRUE, +N1,58790,sortie-fbc69d2c-16db-42ac-a226-74ad043ce4a9,https://biolit.fr/sorties/sortie-fbc69d2c-16db-42ac-a226-74ad043ce4a9/,VAL DYS,,8/18/2021 0:00,17.0000000,18.0000000,47.250682000000,-2.329569000000,,PORNICHET,33999,observation-fbc69d2c-16db-42ac-a226-74ad043ce4a9-3,https://biolit.fr/observations/observation-fbc69d2c-16db-42ac-a226-74ad043ce4a9-3/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/algues_0.JPG,,TRUE, +N1,58790,sortie-fbc69d2c-16db-42ac-a226-74ad043ce4a9,https://biolit.fr/sorties/sortie-fbc69d2c-16db-42ac-a226-74ad043ce4a9/,VAL DYS,,8/18/2021 0:00,17.0000000,18.0000000,47.250682000000,-2.329569000000,,PORNICHET,34001,observation-fbc69d2c-16db-42ac-a226-74ad043ce4a9-4,https://biolit.fr/observations/observation-fbc69d2c-16db-42ac-a226-74ad043ce4a9-4/,Pancratium maritimum,Lis de mer,,https://biolit.fr/wp-content/uploads/2023/07/fleurs blanches.JPG,,TRUE, +N1,58790,sortie-fbc69d2c-16db-42ac-a226-74ad043ce4a9,https://biolit.fr/sorties/sortie-fbc69d2c-16db-42ac-a226-74ad043ce4a9/,VAL DYS,,8/18/2021 0:00,17.0000000,18.0000000,47.250682000000,-2.329569000000,,PORNICHET,34003,observation-fbc69d2c-16db-42ac-a226-74ad043ce4a9-5,https://biolit.fr/observations/observation-fbc69d2c-16db-42ac-a226-74ad043ce4a9-5/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/Chardon-scaled.jpg,,TRUE, +N1,58790,sortie-fbc69d2c-16db-42ac-a226-74ad043ce4a9,https://biolit.fr/sorties/sortie-fbc69d2c-16db-42ac-a226-74ad043ce4a9/,VAL DYS,,8/18/2021 0:00,17.0000000,18.0000000,47.250682000000,-2.329569000000,,PORNICHET,34004,observation-fbc69d2c-16db-42ac-a226-74ad043ce4a9-6,https://biolit.fr/observations/observation-fbc69d2c-16db-42ac-a226-74ad043ce4a9-6/,Gaillardia pulchella,Gaillarde jolie,,https://biolit.fr/wp-content/uploads/2023/07/fleur jaune-scaled.jpg,,TRUE, +N1,58791,sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161,https://biolit.fr/sorties/sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161/,LPO Occitanie DT Aude,,6/30/2021 0:00,9.0000000,12.0000000,43.212131000000,3.237559000000,LPO Occitanie (Dt Aude),Plage des cabanes de Fleury,34006,observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161,https://biolit.fr/observations/observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5922-scaled.jpg,,FALSE, +N1,58791,sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161,https://biolit.fr/sorties/sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161/,LPO Occitanie DT Aude,,6/30/2021 0:00,9.0000000,12.0000000,43.212131000000,3.237559000000,LPO Occitanie (Dt Aude),Plage des cabanes de Fleury,34008,observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-2,https://biolit.fr/observations/observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5921-scaled.jpg,,FALSE, +N1,58791,sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161,https://biolit.fr/sorties/sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161/,LPO Occitanie DT Aude,,6/30/2021 0:00,9.0000000,12.0000000,43.212131000000,3.237559000000,LPO Occitanie (Dt Aude),Plage des cabanes de Fleury,34010,observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-3,https://biolit.fr/observations/observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-3/,Pimelia muricata,Pimélie à deux points,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5923-scaled.jpg,,TRUE, +N1,58791,sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161,https://biolit.fr/sorties/sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161/,LPO Occitanie DT Aude,,6/30/2021 0:00,9.0000000,12.0000000,43.212131000000,3.237559000000,LPO Occitanie (Dt Aude),Plage des cabanes de Fleury,34012,observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-4,https://biolit.fr/observations/observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-4/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5924-scaled.jpg,,TRUE, +N1,58791,sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161,https://biolit.fr/sorties/sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161/,LPO Occitanie DT Aude,,6/30/2021 0:00,9.0000000,12.0000000,43.212131000000,3.237559000000,LPO Occitanie (Dt Aude),Plage des cabanes de Fleury,34014,observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-5,https://biolit.fr/observations/observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-5/,Medicago marina,Luzerne marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5925-scaled.jpg,,TRUE, +N1,58791,sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161,https://biolit.fr/sorties/sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161/,LPO Occitanie DT Aude,,6/30/2021 0:00,9.0000000,12.0000000,43.212131000000,3.237559000000,LPO Occitanie (Dt Aude),Plage des cabanes de Fleury,34016,observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-6,https://biolit.fr/observations/observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5926-scaled.jpg,,FALSE, +N1,58791,sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161,https://biolit.fr/sorties/sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161/,LPO Occitanie DT Aude,,6/30/2021 0:00,9.0000000,12.0000000,43.212131000000,3.237559000000,LPO Occitanie (Dt Aude),Plage des cabanes de Fleury,34018,observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-7,https://biolit.fr/observations/observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-7/,Pancratium maritimum,Lis de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5927-scaled.jpg,,TRUE, +N1,58791,sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161,https://biolit.fr/sorties/sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161/,LPO Occitanie DT Aude,,6/30/2021 0:00,9.0000000,12.0000000,43.212131000000,3.237559000000,LPO Occitanie (Dt Aude),Plage des cabanes de Fleury,34020,observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-8,https://biolit.fr/observations/observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5928-scaled.jpg,,FALSE, +N1,58791,sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161,https://biolit.fr/sorties/sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161/,LPO Occitanie DT Aude,,6/30/2021 0:00,9.0000000,12.0000000,43.212131000000,3.237559000000,LPO Occitanie (Dt Aude),Plage des cabanes de Fleury,34022,observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-9,https://biolit.fr/observations/observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5929-scaled.jpg,,FALSE, +N1,58791,sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161,https://biolit.fr/sorties/sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161/,LPO Occitanie DT Aude,,6/30/2021 0:00,9.0000000,12.0000000,43.212131000000,3.237559000000,LPO Occitanie (Dt Aude),Plage des cabanes de Fleury,34024,observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-10,https://biolit.fr/observations/observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5930-scaled.jpg,,FALSE, +N1,58791,sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161,https://biolit.fr/sorties/sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161/,LPO Occitanie DT Aude,,6/30/2021 0:00,9.0000000,12.0000000,43.212131000000,3.237559000000,LPO Occitanie (Dt Aude),Plage des cabanes de Fleury,34026,observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-11,https://biolit.fr/observations/observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-11/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_5931-scaled.jpg,,TRUE, +N1,58791,sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161,https://biolit.fr/sorties/sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161/,LPO Occitanie DT Aude,,6/30/2021 0:00,9.0000000,12.0000000,43.212131000000,3.237559000000,LPO Occitanie (Dt Aude),Plage des cabanes de Fleury,34028,observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-12,https://biolit.fr/observations/observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-12/,Aporrhais serresiana,Pied de pélican de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5932-scaled.jpg,,TRUE, +N1,58791,sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161,https://biolit.fr/sorties/sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161/,LPO Occitanie DT Aude,,6/30/2021 0:00,9.0000000,12.0000000,43.212131000000,3.237559000000,LPO Occitanie (Dt Aude),Plage des cabanes de Fleury,34030,observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-13,https://biolit.fr/observations/observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-13/,Turritellinella tricarinata,Turritelle commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5933-scaled.jpg,,TRUE, +N1,58791,sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161,https://biolit.fr/sorties/sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161/,LPO Occitanie DT Aude,,6/30/2021 0:00,9.0000000,12.0000000,43.212131000000,3.237559000000,LPO Occitanie (Dt Aude),Plage des cabanes de Fleury,34032,observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-14,https://biolit.fr/observations/observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5934-scaled.jpg,,FALSE, +N1,58791,sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161,https://biolit.fr/sorties/sortie-cdf96762-ca16-4e64-b3c3-9fb84eb89161/,LPO Occitanie DT Aude,,6/30/2021 0:00,9.0000000,12.0000000,43.212131000000,3.237559000000,LPO Occitanie (Dt Aude),Plage des cabanes de Fleury,34034,observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-15,https://biolit.fr/observations/observation-cdf96762-ca16-4e64-b3c3-9fb84eb89161-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5935-scaled.jpg,,FALSE, +N1,58792,sortie-1276e9bd-b484-4492-be46-09eaa304a580,https://biolit.fr/sorties/sortie-1276e9bd-b484-4492-be46-09eaa304a580/,Groupe addap13,,08/03/2021,7.0:35,8.0000000,43.271444000000,5.301240000000,,"marseille, frioul, calanque de Pomègues",34036,observation-1276e9bd-b484-4492-be46-09eaa304a580,https://biolit.fr/observations/observation-1276e9bd-b484-4492-be46-09eaa304a580/,Chromis chromis,Castagnole,,https://biolit.fr/wp-content/uploads/2023/07/VideoCapture_20210807-113639_0.jpg,,TRUE, +N1,58792,sortie-1276e9bd-b484-4492-be46-09eaa304a580,https://biolit.fr/sorties/sortie-1276e9bd-b484-4492-be46-09eaa304a580/,Groupe addap13,,08/03/2021,7.0:35,8.0000000,43.271444000000,5.301240000000,,"marseille, frioul, calanque de Pomègues",34038,observation-1276e9bd-b484-4492-be46-09eaa304a580-2,https://biolit.fr/observations/observation-1276e9bd-b484-4492-be46-09eaa304a580-2/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/2023/07/VideoCapture_20210807-113737.jpg,,TRUE, +N1,58792,sortie-1276e9bd-b484-4492-be46-09eaa304a580,https://biolit.fr/sorties/sortie-1276e9bd-b484-4492-be46-09eaa304a580/,Groupe addap13,,08/03/2021,7.0:35,8.0000000,43.271444000000,5.301240000000,,"marseille, frioul, calanque de Pomègues",34040,observation-1276e9bd-b484-4492-be46-09eaa304a580-3,https://biolit.fr/observations/observation-1276e9bd-b484-4492-be46-09eaa304a580-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/VideoCapture_20210807-114051_1.jpg,,FALSE, +N1,58792,sortie-1276e9bd-b484-4492-be46-09eaa304a580,https://biolit.fr/sorties/sortie-1276e9bd-b484-4492-be46-09eaa304a580/,Groupe addap13,,08/03/2021,7.0:35,8.0000000,43.271444000000,5.301240000000,,"marseille, frioul, calanque de Pomègues",34042,observation-1276e9bd-b484-4492-be46-09eaa304a580-4,https://biolit.fr/observations/observation-1276e9bd-b484-4492-be46-09eaa304a580-4/,Echinaster (Echinaster) sepositus,Etoile de mer rouge,,https://biolit.fr/wp-content/uploads/2023/07/VideoCapture_20210807-114136_1.jpg,,TRUE, +N1,58792,sortie-1276e9bd-b484-4492-be46-09eaa304a580,https://biolit.fr/sorties/sortie-1276e9bd-b484-4492-be46-09eaa304a580/,Groupe addap13,,08/03/2021,7.0:35,8.0000000,43.271444000000,5.301240000000,,"marseille, frioul, calanque de Pomègues",34044,observation-1276e9bd-b484-4492-be46-09eaa304a580-5,https://biolit.fr/observations/observation-1276e9bd-b484-4492-be46-09eaa304a580-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/VideoCapture_20210807-114302_1.jpg,,FALSE, +N1,58792,sortie-1276e9bd-b484-4492-be46-09eaa304a580,https://biolit.fr/sorties/sortie-1276e9bd-b484-4492-be46-09eaa304a580/,Groupe addap13,,08/03/2021,7.0:35,8.0000000,43.271444000000,5.301240000000,,"marseille, frioul, calanque de Pomègues",34046,observation-1276e9bd-b484-4492-be46-09eaa304a580-6,https://biolit.fr/observations/observation-1276e9bd-b484-4492-be46-09eaa304a580-6/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/2023/07/VideoCapture_20210807-114553_2.jpg,,TRUE, +N1,58792,sortie-1276e9bd-b484-4492-be46-09eaa304a580,https://biolit.fr/sorties/sortie-1276e9bd-b484-4492-be46-09eaa304a580/,Groupe addap13,,08/03/2021,7.0:35,8.0000000,43.271444000000,5.301240000000,,"marseille, frioul, calanque de Pomègues",34048,observation-1276e9bd-b484-4492-be46-09eaa304a580-7,https://biolit.fr/observations/observation-1276e9bd-b484-4492-be46-09eaa304a580-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/VideoCapture_20210807-114802_1.jpg,,FALSE, +N1,58792,sortie-1276e9bd-b484-4492-be46-09eaa304a580,https://biolit.fr/sorties/sortie-1276e9bd-b484-4492-be46-09eaa304a580/,Groupe addap13,,08/03/2021,7.0:35,8.0000000,43.271444000000,5.301240000000,,"marseille, frioul, calanque de Pomègues",34050,observation-1276e9bd-b484-4492-be46-09eaa304a580-8,https://biolit.fr/observations/observation-1276e9bd-b484-4492-be46-09eaa304a580-8/,Diplodus sargus,Sar commun de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/VideoCapture_20210807-114512_0.jpg,,TRUE, +N1,58792,sortie-1276e9bd-b484-4492-be46-09eaa304a580,https://biolit.fr/sorties/sortie-1276e9bd-b484-4492-be46-09eaa304a580/,Groupe addap13,,08/03/2021,7.0:35,8.0000000,43.271444000000,5.301240000000,,"marseille, frioul, calanque de Pomègues",34052,observation-1276e9bd-b484-4492-be46-09eaa304a580-9,https://biolit.fr/observations/observation-1276e9bd-b484-4492-be46-09eaa304a580-9/,Coris julis,Girelle commune,,https://biolit.fr/wp-content/uploads/2023/07/VideoCapture_20210807-114248_0.jpg,,TRUE, +N1,58793,sortie-6803c6de-802f-4d35-93ba-6c4f74000ddc,https://biolit.fr/sorties/sortie-6803c6de-802f-4d35-93ba-6c4f74000ddc/,Groupe addap13,,08/02/2021,10.0000000,11.0000000,43.271543000000,5.300967000000,,"marseille, frioul, calanque de Pomègues",34054,observation-6803c6de-802f-4d35-93ba-6c4f74000ddc,https://biolit.fr/observations/observation-6803c6de-802f-4d35-93ba-6c4f74000ddc/,Pancratium maritimum,Lis de mer,,https://biolit.fr/wp-content/uploads/2023/07/20210802_103618-scaled.jpg,,TRUE, +N1,58793,sortie-6803c6de-802f-4d35-93ba-6c4f74000ddc,https://biolit.fr/sorties/sortie-6803c6de-802f-4d35-93ba-6c4f74000ddc/,Groupe addap13,,08/02/2021,10.0000000,11.0000000,43.271543000000,5.300967000000,,"marseille, frioul, calanque de Pomègues",34056,observation-6803c6de-802f-4d35-93ba-6c4f74000ddc-2,https://biolit.fr/observations/observation-6803c6de-802f-4d35-93ba-6c4f74000ddc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210802_123135-scaled.jpg,,FALSE, +N1,58793,sortie-6803c6de-802f-4d35-93ba-6c4f74000ddc,https://biolit.fr/sorties/sortie-6803c6de-802f-4d35-93ba-6c4f74000ddc/,Groupe addap13,,08/02/2021,10.0000000,11.0000000,43.271543000000,5.300967000000,,"marseille, frioul, calanque de Pomègues",34058,observation-6803c6de-802f-4d35-93ba-6c4f74000ddc-3,https://biolit.fr/observations/observation-6803c6de-802f-4d35-93ba-6c4f74000ddc-3/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/20210802_123153-scaled.jpg,,TRUE, +N1,58793,sortie-6803c6de-802f-4d35-93ba-6c4f74000ddc,https://biolit.fr/sorties/sortie-6803c6de-802f-4d35-93ba-6c4f74000ddc/,Groupe addap13,,08/02/2021,10.0000000,11.0000000,43.271543000000,5.300967000000,,"marseille, frioul, calanque de Pomègues",34060,observation-6803c6de-802f-4d35-93ba-6c4f74000ddc-4,https://biolit.fr/observations/observation-6803c6de-802f-4d35-93ba-6c4f74000ddc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210802_104317-scaled.jpg,,FALSE, +N1,58794,sortie-115f9cb7-fa08-428e-9c32-44fe59a4c63c,https://biolit.fr/sorties/sortie-115f9cb7-fa08-428e-9c32-44fe59a4c63c/,Agent007,,08/03/2021,9.0000000,11.0000000,43.592466000000,7.129638000000,,"Antibes, plage de la Salis",34062,observation-115f9cb7-fa08-428e-9c32-44fe59a4c63c,https://biolit.fr/observations/observation-115f9cb7-fa08-428e-9c32-44fe59a4c63c/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_4652 2-scaled.jpeg,,TRUE, +N1,58795,sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9,https://biolit.fr/sorties/sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9/,Nicolas Petit,,08/04/2021,16.0000000,18.0000000,43.428465000000,-1.606285000000,,"Plage Parlementia, Guethary",34064,observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9,https://biolit.fr/observations/observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Bigorneau.jpg,,TRUE, +N1,58795,sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9,https://biolit.fr/sorties/sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9/,Nicolas Petit,,08/04/2021,16.0000000,18.0000000,43.428465000000,-1.606285000000,,"Plage Parlementia, Guethary",34066,observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-2,https://biolit.fr/observations/observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-2/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Crabe sanguin-scaled.jpg,,TRUE, +N1,58795,sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9,https://biolit.fr/sorties/sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9/,Nicolas Petit,,08/04/2021,16.0000000,18.0000000,43.428465000000,-1.606285000000,,"Plage Parlementia, Guethary",34068,observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-3,https://biolit.fr/observations/observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-3/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Pilumne Hirsute.jpg,,TRUE, +N1,58795,sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9,https://biolit.fr/sorties/sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9/,Nicolas Petit,,08/04/2021,16.0000000,18.0000000,43.428465000000,-1.606285000000,,"Plage Parlementia, Guethary",34070,observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-4,https://biolit.fr/observations/observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-4/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/codium fragile.jpg,,TRUE, +N1,58795,sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9,https://biolit.fr/sorties/sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9/,Nicolas Petit,,08/04/2021,16.0000000,18.0000000,43.428465000000,-1.606285000000,,"Plage Parlementia, Guethary",34071,observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-5,https://biolit.fr/observations/observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-5/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/Blennie_1-scaled.jpg,,TRUE, +N1,58795,sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9,https://biolit.fr/sorties/sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9/,Nicolas Petit,,08/04/2021,16.0000000,18.0000000,43.428465000000,-1.606285000000,,"Plage Parlementia, Guethary",34073,observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-6,https://biolit.fr/observations/observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-6/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/Criste marine-scaled.jpg,,TRUE, +N1,58795,sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9,https://biolit.fr/sorties/sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9/,Nicolas Petit,,08/04/2021,16.0000000,18.0000000,43.428465000000,-1.606285000000,,"Plage Parlementia, Guethary",34074,observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-7,https://biolit.fr/observations/observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-7/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/Crevette_0-scaled.jpg,,TRUE, +N1,58795,sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9,https://biolit.fr/sorties/sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9/,Nicolas Petit,,08/04/2021,16.0000000,18.0000000,43.428465000000,-1.606285000000,,"Plage Parlementia, Guethary",34076,observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-8,https://biolit.fr/observations/observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algue_1-scaled.jpg,,FALSE, +N1,58795,sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9,https://biolit.fr/sorties/sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9/,Nicolas Petit,,08/04/2021,16.0000000,18.0000000,43.428465000000,-1.606285000000,,"Plage Parlementia, Guethary",34078,observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-9,https://biolit.fr/observations/observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-9/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Crabe marbré_0.jpg,,TRUE, +N1,58795,sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9,https://biolit.fr/sorties/sortie-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9/,Nicolas Petit,,08/04/2021,16.0000000,18.0000000,43.428465000000,-1.606285000000,,"Plage Parlementia, Guethary",34080,observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-10,https://biolit.fr/observations/observation-3d3d1842-2e29-4f7e-ba3c-a45b486e0cd9-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lichen marin-scaled.jpg,,FALSE, +N1,58796,sortie-ea836f26-f8a5-4619-aaa0-8c10b2142ea5,https://biolit.fr/sorties/sortie-ea836f26-f8a5-4619-aaa0-8c10b2142ea5/,doudou76,,7/27/2021 0:00,9.0000000,16.0000000,49.646391000000,0.153255000000,,plage de st jouin de bruneval,34082,observation-ea836f26-f8a5-4619-aaa0-8c10b2142ea5,https://biolit.fr/observations/observation-ea836f26-f8a5-4619-aaa0-8c10b2142ea5/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/20210803_115417-scaled.jpg,,TRUE, +N1,58796,sortie-ea836f26-f8a5-4619-aaa0-8c10b2142ea5,https://biolit.fr/sorties/sortie-ea836f26-f8a5-4619-aaa0-8c10b2142ea5/,doudou76,,7/27/2021 0:00,9.0000000,16.0000000,49.646391000000,0.153255000000,,plage de st jouin de bruneval,34084,observation-ea836f26-f8a5-4619-aaa0-8c10b2142ea5-2,https://biolit.fr/observations/observation-ea836f26-f8a5-4619-aaa0-8c10b2142ea5-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20210803_115432-scaled.jpg,,TRUE, +N1,58796,sortie-ea836f26-f8a5-4619-aaa0-8c10b2142ea5,https://biolit.fr/sorties/sortie-ea836f26-f8a5-4619-aaa0-8c10b2142ea5/,doudou76,,7/27/2021 0:00,9.0000000,16.0000000,49.646391000000,0.153255000000,,plage de st jouin de bruneval,34086,observation-ea836f26-f8a5-4619-aaa0-8c10b2142ea5-3,https://biolit.fr/observations/observation-ea836f26-f8a5-4619-aaa0-8c10b2142ea5-3/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Snapchat-1482324377-scaled.jpg,,TRUE, +N1,58796,sortie-ea836f26-f8a5-4619-aaa0-8c10b2142ea5,https://biolit.fr/sorties/sortie-ea836f26-f8a5-4619-aaa0-8c10b2142ea5/,doudou76,,7/27/2021 0:00,9.0000000,16.0000000,49.646391000000,0.153255000000,,plage de st jouin de bruneval,34088,observation-ea836f26-f8a5-4619-aaa0-8c10b2142ea5-4,https://biolit.fr/observations/observation-ea836f26-f8a5-4619-aaa0-8c10b2142ea5-4/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Snapchat-1411804144-scaled.jpg,,TRUE, +N1,58796,sortie-ea836f26-f8a5-4619-aaa0-8c10b2142ea5,https://biolit.fr/sorties/sortie-ea836f26-f8a5-4619-aaa0-8c10b2142ea5/,doudou76,,7/27/2021 0:00,9.0000000,16.0000000,49.646391000000,0.153255000000,,plage de st jouin de bruneval,34090,observation-ea836f26-f8a5-4619-aaa0-8c10b2142ea5-5,https://biolit.fr/observations/observation-ea836f26-f8a5-4619-aaa0-8c10b2142ea5-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210803_115215(0)-scaled.jpg,,FALSE, +N1,58797,sortie-5bc3cd81-f9c8-4ddf-93fd-346dcbd7fdeb,https://biolit.fr/sorties/sortie-5bc3cd81-f9c8-4ddf-93fd-346dcbd7fdeb/,Agent007,,7/23/2021 0:00,9.0000000,10.0000000,43.685915000000,7.339236000000,,Saint Jean Cap Ferrat,34092,observation-5bc3cd81-f9c8-4ddf-93fd-346dcbd7fdeb,https://biolit.fr/observations/observation-5bc3cd81-f9c8-4ddf-93fd-346dcbd7fdeb/,Luria lurida,Porcelaine livide,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4149 2-scaled.jpeg,,TRUE, +N1,58797,sortie-5bc3cd81-f9c8-4ddf-93fd-346dcbd7fdeb,https://biolit.fr/sorties/sortie-5bc3cd81-f9c8-4ddf-93fd-346dcbd7fdeb/,Agent007,,7/23/2021 0:00,9.0000000,10.0000000,43.685915000000,7.339236000000,,Saint Jean Cap Ferrat,34094,observation-5bc3cd81-f9c8-4ddf-93fd-346dcbd7fdeb-2,https://biolit.fr/observations/observation-5bc3cd81-f9c8-4ddf-93fd-346dcbd7fdeb-2/,Luria lurida,Porcelaine livide,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4146-scaled.jpeg,,TRUE, +N1,58797,sortie-5bc3cd81-f9c8-4ddf-93fd-346dcbd7fdeb,https://biolit.fr/sorties/sortie-5bc3cd81-f9c8-4ddf-93fd-346dcbd7fdeb/,Agent007,,7/23/2021 0:00,9.0000000,10.0000000,43.685915000000,7.339236000000,,Saint Jean Cap Ferrat,34096,observation-5bc3cd81-f9c8-4ddf-93fd-346dcbd7fdeb-3,https://biolit.fr/observations/observation-5bc3cd81-f9c8-4ddf-93fd-346dcbd7fdeb-3/,Luria lurida,Porcelaine livide,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4156-scaled.jpeg,,TRUE, +N1,58798,sortie-c32f0870-5237-4cac-885c-5504b44f5e04,https://biolit.fr/sorties/sortie-c32f0870-5237-4cac-885c-5504b44f5e04/,Phil,,5/19/2021 0:00,12.0000000,12.0000000,47.864442000000,-4.084511000000,,Bénodet - Finistère,34098,observation-c32f0870-5237-4cac-885c-5504b44f5e04,https://biolit.fr/observations/observation-c32f0870-5237-4cac-885c-5504b44f5e04/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/20210519_121045.jpg,,TRUE, +N1,58799,sortie-5765472a-4071-43bf-b262-c8f532bb1dc4,https://biolit.fr/sorties/sortie-5765472a-4071-43bf-b262-c8f532bb1dc4/,edith-charrier,,7/19/2021 0:00,9.0000000,10.0000000,43.23988100000,5.362472000000,Planète Mer,Plage du Bain des Dames,34100,observation-5765472a-4071-43bf-b262-c8f532bb1dc4,https://biolit.fr/observations/observation-5765472a-4071-43bf-b262-c8f532bb1dc4/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20210719_080110-min-scaled.jpg,,TRUE, +N1,58799,sortie-5765472a-4071-43bf-b262-c8f532bb1dc4,https://biolit.fr/sorties/sortie-5765472a-4071-43bf-b262-c8f532bb1dc4/,edith-charrier,,7/19/2021 0:00,9.0000000,10.0000000,43.23988100000,5.362472000000,Planète Mer,Plage du Bain des Dames,34102,observation-5765472a-4071-43bf-b262-c8f532bb1dc4-2,https://biolit.fr/observations/observation-5765472a-4071-43bf-b262-c8f532bb1dc4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210719_093141-min-scaled.jpg,,FALSE, +N1,58799,sortie-5765472a-4071-43bf-b262-c8f532bb1dc4,https://biolit.fr/sorties/sortie-5765472a-4071-43bf-b262-c8f532bb1dc4/,edith-charrier,,7/19/2021 0:00,9.0000000,10.0000000,43.23988100000,5.362472000000,Planète Mer,Plage du Bain des Dames,34104,observation-5765472a-4071-43bf-b262-c8f532bb1dc4-3,https://biolit.fr/observations/observation-5765472a-4071-43bf-b262-c8f532bb1dc4-3/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/20210719_093229-min-scaled.jpg,,TRUE, +N1,58799,sortie-5765472a-4071-43bf-b262-c8f532bb1dc4,https://biolit.fr/sorties/sortie-5765472a-4071-43bf-b262-c8f532bb1dc4/,edith-charrier,,7/19/2021 0:00,9.0000000,10.0000000,43.23988100000,5.362472000000,Planète Mer,Plage du Bain des Dames,34106,observation-5765472a-4071-43bf-b262-c8f532bb1dc4-4,https://biolit.fr/observations/observation-5765472a-4071-43bf-b262-c8f532bb1dc4-4/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/20210719_093417-min-scaled.jpg,,TRUE, +N1,58799,sortie-5765472a-4071-43bf-b262-c8f532bb1dc4,https://biolit.fr/sorties/sortie-5765472a-4071-43bf-b262-c8f532bb1dc4/,edith-charrier,,7/19/2021 0:00,9.0000000,10.0000000,43.23988100000,5.362472000000,Planète Mer,Plage du Bain des Dames,34108,observation-5765472a-4071-43bf-b262-c8f532bb1dc4-5,https://biolit.fr/observations/observation-5765472a-4071-43bf-b262-c8f532bb1dc4-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210719_093631-min-scaled.jpg,,FALSE, +N1,58799,sortie-5765472a-4071-43bf-b262-c8f532bb1dc4,https://biolit.fr/sorties/sortie-5765472a-4071-43bf-b262-c8f532bb1dc4/,edith-charrier,,7/19/2021 0:00,9.0000000,10.0000000,43.23988100000,5.362472000000,Planète Mer,Plage du Bain des Dames,34110,observation-5765472a-4071-43bf-b262-c8f532bb1dc4-6,https://biolit.fr/observations/observation-5765472a-4071-43bf-b262-c8f532bb1dc4-6/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20210719_094122-min-scaled.jpg,,TRUE, +N1,58799,sortie-5765472a-4071-43bf-b262-c8f532bb1dc4,https://biolit.fr/sorties/sortie-5765472a-4071-43bf-b262-c8f532bb1dc4/,edith-charrier,,7/19/2021 0:00,9.0000000,10.0000000,43.23988100000,5.362472000000,Planète Mer,Plage du Bain des Dames,34112,observation-5765472a-4071-43bf-b262-c8f532bb1dc4-7,https://biolit.fr/observations/observation-5765472a-4071-43bf-b262-c8f532bb1dc4-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210719_094130-min-scaled.jpg,,FALSE, +N1,58800,sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a,https://biolit.fr/sorties/sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a/,buya,,7/15/2021 0:00,12.0:25,14.0:25,49.508489000000,0.067489000000,,cap de la heve,34114,observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a,https://biolit.fr/observations/observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210715_110433-min-scaled.jpg,,TRUE, +N1,58800,sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a,https://biolit.fr/sorties/sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a/,buya,,7/15/2021 0:00,12.0:25,14.0:25,49.508489000000,0.067489000000,,cap de la heve,34116,observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-2,https://biolit.fr/observations/observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210715_110306-min-scaled.jpg,,TRUE, +N1,58800,sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a,https://biolit.fr/sorties/sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a/,buya,,7/15/2021 0:00,12.0:25,14.0:25,49.508489000000,0.067489000000,,cap de la heve,34118,observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-3,https://biolit.fr/observations/observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-3/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/20210715_110544-min-scaled.jpg,,TRUE, +N1,58800,sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a,https://biolit.fr/sorties/sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a/,buya,,7/15/2021 0:00,12.0:25,14.0:25,49.508489000000,0.067489000000,,cap de la heve,34120,observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-4,https://biolit.fr/observations/observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-4/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20210715_110345-min-scaled.jpg,,TRUE, +N1,58800,sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a,https://biolit.fr/sorties/sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a/,buya,,7/15/2021 0:00,12.0:25,14.0:25,49.508489000000,0.067489000000,,cap de la heve,34122,observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-5,https://biolit.fr/observations/observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210715_111919-min-scaled.jpg,,FALSE, +N1,58800,sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a,https://biolit.fr/sorties/sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a/,buya,,7/15/2021 0:00,12.0:25,14.0:25,49.508489000000,0.067489000000,,cap de la heve,34124,observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-6,https://biolit.fr/observations/observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-6/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/20210715_112349-min-scaled.jpg,,TRUE, +N1,58800,sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a,https://biolit.fr/sorties/sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a/,buya,,7/15/2021 0:00,12.0:25,14.0:25,49.508489000000,0.067489000000,,cap de la heve,34126,observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-7,https://biolit.fr/observations/observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-7/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20210715_112234-min-scaled.jpg,,TRUE, +N1,58800,sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a,https://biolit.fr/sorties/sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a/,buya,,7/15/2021 0:00,12.0:25,14.0:25,49.508489000000,0.067489000000,,cap de la heve,34128,observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-8,https://biolit.fr/observations/observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-8/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20210715_112154-min-scaled.jpg,,TRUE, +N1,58800,sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a,https://biolit.fr/sorties/sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a/,buya,,7/15/2021 0:00,12.0:25,14.0:25,49.508489000000,0.067489000000,,cap de la heve,34130,observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-9,https://biolit.fr/observations/observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-9/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/20210715_111212-min-scaled.jpg,,TRUE, +N1,58800,sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a,https://biolit.fr/sorties/sortie-4c1fb9de-0fc8-4232-98d0-92a03d954e3a/,buya,,7/15/2021 0:00,12.0:25,14.0:25,49.508489000000,0.067489000000,,cap de la heve,34132,observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-10,https://biolit.fr/observations/observation-4c1fb9de-0fc8-4232-98d0-92a03d954e3a-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210715_110800-scaled.jpg,,FALSE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34134,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita_5.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34136,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-2,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_12.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34138,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-3,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie sp_0.PNG,,FALSE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34140,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-4,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-4/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_10.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34142,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-5,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_16.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34144,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-6,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-6/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_7.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34146,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-7,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-7/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_15.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34148,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-8,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-8/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_2.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34150,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-9,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-9/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/Clibanarius erythropus_0.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34152,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-10,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-10/,Doris verrucosa,Doris verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/Doris verrucosa_3.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34154,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-11,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_18.PNG,,FALSE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34156,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-12,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-12/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/Galathea squamifera.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34158,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-13,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-13/,Hediste diversicolor,Néréis multicolore,,https://biolit.fr/wp-content/uploads/2023/07/Gravelle sp.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34160,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-14,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-14/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/Lipophrys pholis_0.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34162,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-15,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-15/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_4.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34164,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-16,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-16/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_14.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34166,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-17,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-17/,Mya arenaria,Mye des sables,,https://biolit.fr/wp-content/uploads/2023/07/Mya arenaria.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34168,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-18,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-18/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis lumbriciformis_2.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34170,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-19,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-19/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_12.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34172,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-20,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-20/,Venerupis corrugata,Palourde-poulette,,https://biolit.fr/wp-content/uploads/2023/07/Venerupis corrugata.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34174,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-21,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ver sp-scaled.jpg,,FALSE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34175,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-22,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-22/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Watersipora subatra_1.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34177,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-23,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-23/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_12.PNG,,TRUE, +N1,58801,sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745,https://biolit.fr/sorties/sortie-215a23ce-8bc1-4d4c-8855-9f66078dc745/,Roman,,7/14/2021 0:00,14.0000000,15.0000000,47.706939000000,-3.334174000000,,Riantec,34179,observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-24,https://biolit.fr/observations/observation-215a23ce-8bc1-4d4c-8855-9f66078dc745-24/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes avec ponte.PNG,,TRUE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34181,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Ammophila arenaria,Oyat,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5183.JPG,,TRUE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34183,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-2,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-2/,Honckenya peploides,Pourpier de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5184.JPG,,TRUE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34185,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-3,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-3/,Honckenya peploides,Pourpier de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5185.JPG,,TRUE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34187,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-4,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-4/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5186.JPG,,TRUE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34189,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-5,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-5/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5187.JPG,,TRUE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34191,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-6,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5189.JPG,,FALSE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34193,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-7,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-7/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5194.JPG,,TRUE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34195,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-8,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-8/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5195.JPG,,TRUE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34197,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-9,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-9/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5200.JPG,,TRUE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34199,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-10,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-10/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_5203.JPG,,TRUE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34201,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-11,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-11/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5205.JPG,,TRUE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34203,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-12,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-12/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5206.JPG,,TRUE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34205,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-13,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-13/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5208_0.JPG,,TRUE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34207,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-14,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-14/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_5209.JPG,,TRUE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34209,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-15,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-15/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5211.JPG,,TRUE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34211,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-16,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-16/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5213.JPG,,TRUE, +N1,58802,sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee,https://biolit.fr/sorties/sortie-fde6e287-5f9b-4232-8f35-095d3a78f2ee/,Helenep,,7/14/2021 0:00,14.0000000,16.0:15,48.462660000000,-4.766946000000,,"Lampaul-Plouarzel, plage Pors Ar Goret",34213,observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-17,https://biolit.fr/observations/observation-fde6e287-5f9b-4232-8f35-095d3a78f2ee-17/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5217.JPG,,TRUE, +N1,58803,sortie-c1408200-a9fc-4388-a607-2c50f22659ca,https://biolit.fr/sorties/sortie-c1408200-a9fc-4388-a607-2c50f22659ca/,Fabrice P,,07/11/2021,6.0000000,11.0000000,49.512923000000,0.065917000000,,"Sainte-Adresse, Lieu-dit ""Le Bout du monde""",34215,observation-c1408200-a9fc-4388-a607-2c50f22659ca,https://biolit.fr/observations/observation-c1408200-a9fc-4388-a607-2c50f22659ca/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0298_4-scaled.jpg,,FALSE, +N1,58803,sortie-c1408200-a9fc-4388-a607-2c50f22659ca,https://biolit.fr/sorties/sortie-c1408200-a9fc-4388-a607-2c50f22659ca/,Fabrice P,,07/11/2021,6.0000000,11.0000000,49.512923000000,0.065917000000,,"Sainte-Adresse, Lieu-dit ""Le Bout du monde""",34217,observation-c1408200-a9fc-4388-a607-2c50f22659ca-2,https://biolit.fr/observations/observation-c1408200-a9fc-4388-a607-2c50f22659ca-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0309-scaled.jpg,,TRUE, +N1,58803,sortie-c1408200-a9fc-4388-a607-2c50f22659ca,https://biolit.fr/sorties/sortie-c1408200-a9fc-4388-a607-2c50f22659ca/,Fabrice P,,07/11/2021,6.0000000,11.0000000,49.512923000000,0.065917000000,,"Sainte-Adresse, Lieu-dit ""Le Bout du monde""",34219,observation-c1408200-a9fc-4388-a607-2c50f22659ca-3,https://biolit.fr/observations/observation-c1408200-a9fc-4388-a607-2c50f22659ca-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_0311-scaled.jpg,,TRUE, +N1,58803,sortie-c1408200-a9fc-4388-a607-2c50f22659ca,https://biolit.fr/sorties/sortie-c1408200-a9fc-4388-a607-2c50f22659ca/,Fabrice P,,07/11/2021,6.0000000,11.0000000,49.512923000000,0.065917000000,,"Sainte-Adresse, Lieu-dit ""Le Bout du monde""",34221,observation-c1408200-a9fc-4388-a607-2c50f22659ca-4,https://biolit.fr/observations/observation-c1408200-a9fc-4388-a607-2c50f22659ca-4/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0318-scaled.jpg,,TRUE, +N1,58803,sortie-c1408200-a9fc-4388-a607-2c50f22659ca,https://biolit.fr/sorties/sortie-c1408200-a9fc-4388-a607-2c50f22659ca/,Fabrice P,,07/11/2021,6.0000000,11.0000000,49.512923000000,0.065917000000,,"Sainte-Adresse, Lieu-dit ""Le Bout du monde""",34223,observation-c1408200-a9fc-4388-a607-2c50f22659ca-5,https://biolit.fr/observations/observation-c1408200-a9fc-4388-a607-2c50f22659ca-5/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_03281-scaled.jpg,,TRUE, +N1,58803,sortie-c1408200-a9fc-4388-a607-2c50f22659ca,https://biolit.fr/sorties/sortie-c1408200-a9fc-4388-a607-2c50f22659ca/,Fabrice P,,07/11/2021,6.0000000,11.0000000,49.512923000000,0.065917000000,,"Sainte-Adresse, Lieu-dit ""Le Bout du monde""",34225,observation-c1408200-a9fc-4388-a607-2c50f22659ca-6,https://biolit.fr/observations/observation-c1408200-a9fc-4388-a607-2c50f22659ca-6/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0306-scaled.jpg,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34227,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita_4.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34229,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-2,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragaceae_3.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34231,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-3,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/anemonia viridis_8.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34233,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-4,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-4/,Lissoclinum weigelei,Ascidie coloniale beige,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie coloniale sp.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34234,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-5,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-5/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_9.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34236,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-6,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-6/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_7.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34238,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-7,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-7/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_11.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34240,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-8,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-8/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_14.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34242,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-9,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-9/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/crassostrea gigas_1.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34243,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-10,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-10/,Doris verrucosa,Doris verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/Doris verrucosa_2.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34245,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-11,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-11/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 1_6.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34247,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-12,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-12/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_17.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34249,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-13,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-13/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_11.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34251,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-14,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-14/,Membranipora membranacea,Membranipore,,https://biolit.fr/wp-content/uploads/2023/07/membranipora sp_0.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34253,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-15,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-15/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis lombriciformis.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34255,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-16,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-16/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_15.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34257,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-17,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-17/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_11.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34259,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-18,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-18/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Steromphola umbilicalis.PNG,,TRUE, +N1,58804,sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82,https://biolit.fr/sorties/sortie-dbf19f21-24fd-409d-ba09-79c80f07dc82/,Roman,,07/09/2021,11.0000000,12.0000000,47.703684000000,-3.355568000000,,Port-Louis,34261,observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-19,https://biolit.fr/observations/observation-dbf19f21-24fd-409d-ba09-79c80f07dc82-19/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_11.PNG,,TRUE, +N1,58805,sortie-4ab0f136-4928-4702-a71c-c7342f105cbb,https://biolit.fr/sorties/sortie-4ab0f136-4928-4702-a71c-c7342f105cbb/,Sophie Lacombe,,6/25/2021 0:00,14.0000000,16.0000000,47.274337000000,-2.484579000000,,Boulevard de Mer à Batz sur Mer,34263,observation-4ab0f136-4928-4702-a71c-c7342f105cbb,https://biolit.fr/observations/observation-4ab0f136-4928-4702-a71c-c7342f105cbb/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_5432-rotated.jpg,,TRUE, +N1,58805,sortie-4ab0f136-4928-4702-a71c-c7342f105cbb,https://biolit.fr/sorties/sortie-4ab0f136-4928-4702-a71c-c7342f105cbb/,Sophie Lacombe,,6/25/2021 0:00,14.0000000,16.0000000,47.274337000000,-2.484579000000,,Boulevard de Mer à Batz sur Mer,34265,observation-4ab0f136-4928-4702-a71c-c7342f105cbb-2,https://biolit.fr/observations/observation-4ab0f136-4928-4702-a71c-c7342f105cbb-2/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5433-rotated.jpg,,TRUE, +N1,58805,sortie-4ab0f136-4928-4702-a71c-c7342f105cbb,https://biolit.fr/sorties/sortie-4ab0f136-4928-4702-a71c-c7342f105cbb/,Sophie Lacombe,,6/25/2021 0:00,14.0000000,16.0000000,47.274337000000,-2.484579000000,,Boulevard de Mer à Batz sur Mer,34267,observation-4ab0f136-4928-4702-a71c-c7342f105cbb-3,https://biolit.fr/observations/observation-4ab0f136-4928-4702-a71c-c7342f105cbb-3/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5434-rotated.jpg,,TRUE, +N1,58805,sortie-4ab0f136-4928-4702-a71c-c7342f105cbb,https://biolit.fr/sorties/sortie-4ab0f136-4928-4702-a71c-c7342f105cbb/,Sophie Lacombe,,6/25/2021 0:00,14.0000000,16.0000000,47.274337000000,-2.484579000000,,Boulevard de Mer à Batz sur Mer,34269,observation-4ab0f136-4928-4702-a71c-c7342f105cbb-4,https://biolit.fr/observations/observation-4ab0f136-4928-4702-a71c-c7342f105cbb-4/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_5435-rotated.jpg,,TRUE, +N1,58806,sortie-3f1f9a3c-01f4-42df-aa3c-8d00cbcaa151,https://biolit.fr/sorties/sortie-3f1f9a3c-01f4-42df-aa3c-8d00cbcaa151/,Sophie Lacombe,,6/25/2021 0:00,14.0000000,16.0000000,47.280979000000,-2.500254000000,,Plage Valentin,34271,observation-3f1f9a3c-01f4-42df-aa3c-8d00cbcaa151,https://biolit.fr/observations/observation-3f1f9a3c-01f4-42df-aa3c-8d00cbcaa151/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5428-rotated.jpg,,FALSE, +N1,58806,sortie-3f1f9a3c-01f4-42df-aa3c-8d00cbcaa151,https://biolit.fr/sorties/sortie-3f1f9a3c-01f4-42df-aa3c-8d00cbcaa151/,Sophie Lacombe,,6/25/2021 0:00,14.0000000,16.0000000,47.280979000000,-2.500254000000,,Plage Valentin,34273,observation-3f1f9a3c-01f4-42df-aa3c-8d00cbcaa151-2,https://biolit.fr/observations/observation-3f1f9a3c-01f4-42df-aa3c-8d00cbcaa151-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5429-rotated.jpg,,TRUE, +N1,58806,sortie-3f1f9a3c-01f4-42df-aa3c-8d00cbcaa151,https://biolit.fr/sorties/sortie-3f1f9a3c-01f4-42df-aa3c-8d00cbcaa151/,Sophie Lacombe,,6/25/2021 0:00,14.0000000,16.0000000,47.280979000000,-2.500254000000,,Plage Valentin,34275,observation-3f1f9a3c-01f4-42df-aa3c-8d00cbcaa151-3,https://biolit.fr/observations/observation-3f1f9a3c-01f4-42df-aa3c-8d00cbcaa151-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5430-rotated.jpg,,FALSE, +N1,58807,sortie-193b5a50-cf2a-4ccf-9e36-43fecb37a4ec,https://biolit.fr/sorties/sortie-193b5a50-cf2a-4ccf-9e36-43fecb37a4ec/,Sophie Lacombe,,6/25/2021 0:00,11.0000000,12.0000000,47.281653000000,-2.508011000000,,"Après Plage du Port Lin, Le Croisic",34277,observation-193b5a50-cf2a-4ccf-9e36-43fecb37a4ec,https://biolit.fr/observations/observation-193b5a50-cf2a-4ccf-9e36-43fecb37a4ec/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_5424_0-rotated.jpg,,TRUE, +N1,58807,sortie-193b5a50-cf2a-4ccf-9e36-43fecb37a4ec,https://biolit.fr/sorties/sortie-193b5a50-cf2a-4ccf-9e36-43fecb37a4ec/,Sophie Lacombe,,6/25/2021 0:00,11.0000000,12.0000000,47.281653000000,-2.508011000000,,"Après Plage du Port Lin, Le Croisic",34279,observation-193b5a50-cf2a-4ccf-9e36-43fecb37a4ec-2,https://biolit.fr/observations/observation-193b5a50-cf2a-4ccf-9e36-43fecb37a4ec-2/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5425_0-rotated.jpg,,TRUE, +N1,58807,sortie-193b5a50-cf2a-4ccf-9e36-43fecb37a4ec,https://biolit.fr/sorties/sortie-193b5a50-cf2a-4ccf-9e36-43fecb37a4ec/,Sophie Lacombe,,6/25/2021 0:00,11.0000000,12.0000000,47.281653000000,-2.508011000000,,"Après Plage du Port Lin, Le Croisic",34281,observation-193b5a50-cf2a-4ccf-9e36-43fecb37a4ec-3,https://biolit.fr/observations/observation-193b5a50-cf2a-4ccf-9e36-43fecb37a4ec-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_5427_0-rotated.jpg,,TRUE, +N1,58808,sortie-da3b4488-da1b-4018-a1c0-262e8ab7e838,https://biolit.fr/sorties/sortie-da3b4488-da1b-4018-a1c0-262e8ab7e838/,Sophie Lacombe,,6/25/2021 0:00,10.0000000,12.0000000,47.283798000000,-2.51442700000,,"Plage du Port Lin, Le Croisic",34283,observation-da3b4488-da1b-4018-a1c0-262e8ab7e838,https://biolit.fr/observations/observation-da3b4488-da1b-4018-a1c0-262e8ab7e838/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5417-rotated.jpg,,FALSE, +N1,58809,sortie-6eeeb246-0126-4747-9baa-e18117e00d14,https://biolit.fr/sorties/sortie-6eeeb246-0126-4747-9baa-e18117e00d14/,Sophie Lacombe,,07/06/2021,14.0000000,16.0000000,47.282903000000,-2.512743000000,,"Après Plage du Port Lin, Le Croisic",34285,observation-6eeeb246-0126-4747-9baa-e18117e00d14,https://biolit.fr/observations/observation-6eeeb246-0126-4747-9baa-e18117e00d14/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_5419-rotated.jpg,,TRUE, +N1,58809,sortie-6eeeb246-0126-4747-9baa-e18117e00d14,https://biolit.fr/sorties/sortie-6eeeb246-0126-4747-9baa-e18117e00d14/,Sophie Lacombe,,07/06/2021,14.0000000,16.0000000,47.282903000000,-2.512743000000,,"Après Plage du Port Lin, Le Croisic",34287,observation-6eeeb246-0126-4747-9baa-e18117e00d14-2,https://biolit.fr/observations/observation-6eeeb246-0126-4747-9baa-e18117e00d14-2/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5420-rotated.jpg,,TRUE, +N1,58809,sortie-6eeeb246-0126-4747-9baa-e18117e00d14,https://biolit.fr/sorties/sortie-6eeeb246-0126-4747-9baa-e18117e00d14/,Sophie Lacombe,,07/06/2021,14.0000000,16.0000000,47.282903000000,-2.512743000000,,"Après Plage du Port Lin, Le Croisic",34289,observation-6eeeb246-0126-4747-9baa-e18117e00d14-3,https://biolit.fr/observations/observation-6eeeb246-0126-4747-9baa-e18117e00d14-3/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5421-rotated.jpg,,TRUE, +N1,58809,sortie-6eeeb246-0126-4747-9baa-e18117e00d14,https://biolit.fr/sorties/sortie-6eeeb246-0126-4747-9baa-e18117e00d14/,Sophie Lacombe,,07/06/2021,14.0000000,16.0000000,47.282903000000,-2.512743000000,,"Après Plage du Port Lin, Le Croisic",34291,observation-6eeeb246-0126-4747-9baa-e18117e00d14-4,https://biolit.fr/observations/observation-6eeeb246-0126-4747-9baa-e18117e00d14-4/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5422-rotated.jpg,,TRUE, +N1,58809,sortie-6eeeb246-0126-4747-9baa-e18117e00d14,https://biolit.fr/sorties/sortie-6eeeb246-0126-4747-9baa-e18117e00d14/,Sophie Lacombe,,07/06/2021,14.0000000,16.0000000,47.282903000000,-2.512743000000,,"Après Plage du Port Lin, Le Croisic",34293,observation-6eeeb246-0126-4747-9baa-e18117e00d14-5,https://biolit.fr/observations/observation-6eeeb246-0126-4747-9baa-e18117e00d14-5/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5423-rotated.jpg,,TRUE, +N1,58809,sortie-6eeeb246-0126-4747-9baa-e18117e00d14,https://biolit.fr/sorties/sortie-6eeeb246-0126-4747-9baa-e18117e00d14/,Sophie Lacombe,,07/06/2021,14.0000000,16.0000000,47.282903000000,-2.512743000000,,"Après Plage du Port Lin, Le Croisic",34295,observation-6eeeb246-0126-4747-9baa-e18117e00d14-6,https://biolit.fr/observations/observation-6eeeb246-0126-4747-9baa-e18117e00d14-6/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5424-rotated.jpg,,TRUE, +N1,58809,sortie-6eeeb246-0126-4747-9baa-e18117e00d14,https://biolit.fr/sorties/sortie-6eeeb246-0126-4747-9baa-e18117e00d14/,Sophie Lacombe,,07/06/2021,14.0000000,16.0000000,47.282903000000,-2.512743000000,,"Après Plage du Port Lin, Le Croisic",34297,observation-6eeeb246-0126-4747-9baa-e18117e00d14-7,https://biolit.fr/observations/observation-6eeeb246-0126-4747-9baa-e18117e00d14-7/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5425-rotated.jpg,,TRUE, +N1,58810,sortie-784222d4-23cc-4a00-aaf8-52d3dca5b290,https://biolit.fr/sorties/sortie-784222d4-23cc-4a00-aaf8-52d3dca5b290/,Sophie Lacombe,,6/25/2021 0:00,10.0000000,12.0000000,47.283709000000,-2.514095000000,,"Plage du Port Lin, Le Croisic",34299,observation-784222d4-23cc-4a00-aaf8-52d3dca5b290,https://biolit.fr/observations/observation-784222d4-23cc-4a00-aaf8-52d3dca5b290/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5404-rotated.jpg,,TRUE, +N1,58810,sortie-784222d4-23cc-4a00-aaf8-52d3dca5b290,https://biolit.fr/sorties/sortie-784222d4-23cc-4a00-aaf8-52d3dca5b290/,Sophie Lacombe,,6/25/2021 0:00,10.0000000,12.0000000,47.283709000000,-2.514095000000,,"Plage du Port Lin, Le Croisic",34301,observation-784222d4-23cc-4a00-aaf8-52d3dca5b290-2,https://biolit.fr/observations/observation-784222d4-23cc-4a00-aaf8-52d3dca5b290-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5405-rotated.jpg,,TRUE, +N1,58810,sortie-784222d4-23cc-4a00-aaf8-52d3dca5b290,https://biolit.fr/sorties/sortie-784222d4-23cc-4a00-aaf8-52d3dca5b290/,Sophie Lacombe,,6/25/2021 0:00,10.0000000,12.0000000,47.283709000000,-2.514095000000,,"Plage du Port Lin, Le Croisic",34303,observation-784222d4-23cc-4a00-aaf8-52d3dca5b290-3,https://biolit.fr/observations/observation-784222d4-23cc-4a00-aaf8-52d3dca5b290-3/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5406-rotated.jpg,,TRUE, +N1,58810,sortie-784222d4-23cc-4a00-aaf8-52d3dca5b290,https://biolit.fr/sorties/sortie-784222d4-23cc-4a00-aaf8-52d3dca5b290/,Sophie Lacombe,,6/25/2021 0:00,10.0000000,12.0000000,47.283709000000,-2.514095000000,,"Plage du Port Lin, Le Croisic",34305,observation-784222d4-23cc-4a00-aaf8-52d3dca5b290-4,https://biolit.fr/observations/observation-784222d4-23cc-4a00-aaf8-52d3dca5b290-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_5407_2-rotated.jpg,,TRUE, +N1,58811,sortie-92e1371a-6bc8-4962-a176-425b3a344473,https://biolit.fr/sorties/sortie-92e1371a-6bc8-4962-a176-425b3a344473/,Fédération l'Air et Moi,,6/30/2021 0:00,11.0000000,11.0000000,43.284197000000,5.315612000000,Planète Mer,Plage de Saint-Estève,34307,observation-92e1371a-6bc8-4962-a176-425b3a344473,https://biolit.fr/observations/observation-92e1371a-6bc8-4962-a176-425b3a344473/,Malva arborea,Lavatère arborescente,,https://biolit.fr/wp-content/uploads/2023/07/207302246_980583859373088_1719065115760592442_n.jpg,,TRUE, +N1,58811,sortie-92e1371a-6bc8-4962-a176-425b3a344473,https://biolit.fr/sorties/sortie-92e1371a-6bc8-4962-a176-425b3a344473/,Fédération l'Air et Moi,,6/30/2021 0:00,11.0000000,11.0000000,43.284197000000,5.315612000000,Planète Mer,Plage de Saint-Estève,34309,observation-92e1371a-6bc8-4962-a176-425b3a344473-2,https://biolit.fr/observations/observation-92e1371a-6bc8-4962-a176-425b3a344473-2/,Opuntia ficus,Figuier de barbarie,,https://biolit.fr/wp-content/uploads/2023/07/205929174_2905989362973768_6824310987621903004_n.jpg,,TRUE, +N1,58811,sortie-92e1371a-6bc8-4962-a176-425b3a344473,https://biolit.fr/sorties/sortie-92e1371a-6bc8-4962-a176-425b3a344473/,Fédération l'Air et Moi,,6/30/2021 0:00,11.0000000,11.0000000,43.284197000000,5.315612000000,Planète Mer,Plage de Saint-Estève,34311,observation-92e1371a-6bc8-4962-a176-425b3a344473-3,https://biolit.fr/observations/observation-92e1371a-6bc8-4962-a176-425b3a344473-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/205611501_4065032486920676_4298187741079484196_n.jpg,,FALSE, +N1,58811,sortie-92e1371a-6bc8-4962-a176-425b3a344473,https://biolit.fr/sorties/sortie-92e1371a-6bc8-4962-a176-425b3a344473/,Fédération l'Air et Moi,,6/30/2021 0:00,11.0000000,11.0000000,43.284197000000,5.315612000000,Planète Mer,Plage de Saint-Estève,34313,observation-92e1371a-6bc8-4962-a176-425b3a344473-4,https://biolit.fr/observations/observation-92e1371a-6bc8-4962-a176-425b3a344473-4/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/206235854_4216434748418478_5778785240307774591_n.jpg,,TRUE, +N1,58811,sortie-92e1371a-6bc8-4962-a176-425b3a344473,https://biolit.fr/sorties/sortie-92e1371a-6bc8-4962-a176-425b3a344473/,Fédération l'Air et Moi,,6/30/2021 0:00,11.0000000,11.0000000,43.284197000000,5.315612000000,Planète Mer,Plage de Saint-Estève,34315,observation-92e1371a-6bc8-4962-a176-425b3a344473-5,https://biolit.fr/observations/observation-92e1371a-6bc8-4962-a176-425b3a344473-5/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/206356666_132612295643389_3994915632084453114_n.jpg,,TRUE, +N1,58811,sortie-92e1371a-6bc8-4962-a176-425b3a344473,https://biolit.fr/sorties/sortie-92e1371a-6bc8-4962-a176-425b3a344473/,Fédération l'Air et Moi,,6/30/2021 0:00,11.0000000,11.0000000,43.284197000000,5.315612000000,Planète Mer,Plage de Saint-Estève,34317,observation-92e1371a-6bc8-4962-a176-425b3a344473-6,https://biolit.fr/observations/observation-92e1371a-6bc8-4962-a176-425b3a344473-6/,Larus michahellis,Goéland leucophée,,https://biolit.fr/wp-content/uploads/2023/07/206968052_237803364559395_5846758407393224630_n.jpg,,TRUE, +N1,58811,sortie-92e1371a-6bc8-4962-a176-425b3a344473,https://biolit.fr/sorties/sortie-92e1371a-6bc8-4962-a176-425b3a344473/,Fédération l'Air et Moi,,6/30/2021 0:00,11.0000000,11.0000000,43.284197000000,5.315612000000,Planète Mer,Plage de Saint-Estève,34319,observation-92e1371a-6bc8-4962-a176-425b3a344473-7,https://biolit.fr/observations/observation-92e1371a-6bc8-4962-a176-425b3a344473-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/206369765_782868685729692_1920535679997872682_n.jpg,,FALSE, +N1,58811,sortie-92e1371a-6bc8-4962-a176-425b3a344473,https://biolit.fr/sorties/sortie-92e1371a-6bc8-4962-a176-425b3a344473/,Fédération l'Air et Moi,,6/30/2021 0:00,11.0000000,11.0000000,43.284197000000,5.315612000000,Planète Mer,Plage de Saint-Estève,34321,observation-92e1371a-6bc8-4962-a176-425b3a344473-8,https://biolit.fr/observations/observation-92e1371a-6bc8-4962-a176-425b3a344473-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/206369765_3827504860712360_2208807837340475607_n.jpg,,FALSE, +N1,58811,sortie-92e1371a-6bc8-4962-a176-425b3a344473,https://biolit.fr/sorties/sortie-92e1371a-6bc8-4962-a176-425b3a344473/,Fédération l'Air et Moi,,6/30/2021 0:00,11.0000000,11.0000000,43.284197000000,5.315612000000,Planète Mer,Plage de Saint-Estève,34323,observation-92e1371a-6bc8-4962-a176-425b3a344473-9,https://biolit.fr/observations/observation-92e1371a-6bc8-4962-a176-425b3a344473-9/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/206379138_243969500508603_7549609511567527741_n.jpg,,TRUE, +N1,58811,sortie-92e1371a-6bc8-4962-a176-425b3a344473,https://biolit.fr/sorties/sortie-92e1371a-6bc8-4962-a176-425b3a344473/,Fédération l'Air et Moi,,6/30/2021 0:00,11.0000000,11.0000000,43.284197000000,5.315612000000,Planète Mer,Plage de Saint-Estève,34325,observation-92e1371a-6bc8-4962-a176-425b3a344473-10,https://biolit.fr/observations/observation-92e1371a-6bc8-4962-a176-425b3a344473-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/207095689_502469914367709_429175979510162535_n.jpg,,FALSE, +N1,58812,sortie-d706edea-e6e9-441b-95cb-483e5babb810,https://biolit.fr/sorties/sortie-d706edea-e6e9-441b-95cb-483e5babb810/,Youenn Le Lorec,,6/25/2021 0:00,11.0000000,13.0000000,47.26666700000,-2.454871000000,,"BATZ SUR MER, plage de la govelle",34327,observation-d706edea-e6e9-441b-95cb-483e5babb810,https://biolit.fr/observations/observation-d706edea-e6e9-441b-95cb-483e5babb810/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/20210625_112445-scaled.jpg,,TRUE, +N1,58813,sortie-c751d606-87f3-4629-852d-090fb03f3571,https://biolit.fr/sorties/sortie-c751d606-87f3-4629-852d-090fb03f3571/,Youenn Le Lorec,,6/25/2021 0:00,9.0000000,11.0000000,47.283997000000,-2.513199000000,,"Le Croisic, plage du port Lin",34329,observation-c751d606-87f3-4629-852d-090fb03f3571,https://biolit.fr/observations/observation-c751d606-87f3-4629-852d-090fb03f3571/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20210625_092739_0-scaled.jpg,,TRUE, +N1,58813,sortie-c751d606-87f3-4629-852d-090fb03f3571,https://biolit.fr/sorties/sortie-c751d606-87f3-4629-852d-090fb03f3571/,Youenn Le Lorec,,6/25/2021 0:00,9.0000000,11.0000000,47.283997000000,-2.513199000000,,"Le Croisic, plage du port Lin",34331,observation-c751d606-87f3-4629-852d-090fb03f3571-2,https://biolit.fr/observations/observation-c751d606-87f3-4629-852d-090fb03f3571-2/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/20210625_092852_0-scaled.jpg,,TRUE, +N1,58813,sortie-c751d606-87f3-4629-852d-090fb03f3571,https://biolit.fr/sorties/sortie-c751d606-87f3-4629-852d-090fb03f3571/,Youenn Le Lorec,,6/25/2021 0:00,9.0000000,11.0000000,47.283997000000,-2.513199000000,,"Le Croisic, plage du port Lin",34333,observation-c751d606-87f3-4629-852d-090fb03f3571-3,https://biolit.fr/observations/observation-c751d606-87f3-4629-852d-090fb03f3571-3/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/20210625_093236_0-scaled.jpg,,TRUE, +N1,58813,sortie-c751d606-87f3-4629-852d-090fb03f3571,https://biolit.fr/sorties/sortie-c751d606-87f3-4629-852d-090fb03f3571/,Youenn Le Lorec,,6/25/2021 0:00,9.0000000,11.0000000,47.283997000000,-2.513199000000,,"Le Croisic, plage du port Lin",34335,observation-c751d606-87f3-4629-852d-090fb03f3571-4,https://biolit.fr/observations/observation-c751d606-87f3-4629-852d-090fb03f3571-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210625_094255_0-scaled.jpg,,FALSE, +N1,58813,sortie-c751d606-87f3-4629-852d-090fb03f3571,https://biolit.fr/sorties/sortie-c751d606-87f3-4629-852d-090fb03f3571/,Youenn Le Lorec,,6/25/2021 0:00,9.0000000,11.0000000,47.283997000000,-2.513199000000,,"Le Croisic, plage du port Lin",34337,observation-c751d606-87f3-4629-852d-090fb03f3571-5,https://biolit.fr/observations/observation-c751d606-87f3-4629-852d-090fb03f3571-5/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210625_094318(0)_0-scaled.jpg,,TRUE, +N1,58813,sortie-c751d606-87f3-4629-852d-090fb03f3571,https://biolit.fr/sorties/sortie-c751d606-87f3-4629-852d-090fb03f3571/,Youenn Le Lorec,,6/25/2021 0:00,9.0000000,11.0000000,47.283997000000,-2.513199000000,,"Le Croisic, plage du port Lin",34339,observation-c751d606-87f3-4629-852d-090fb03f3571-6,https://biolit.fr/observations/observation-c751d606-87f3-4629-852d-090fb03f3571-6/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/20210625_094835_0-scaled.jpg,,TRUE, +N1,58814,sortie-00839426-e379-4186-a672-e7870fbe3c30,https://biolit.fr/sorties/sortie-00839426-e379-4186-a672-e7870fbe3c30/,v.berting,,6/29/2021 0:00,10.0000000,10.000005,49.985309000000,1.211440000000,,plage de Dieppe,34341,observation-00839426-e379-4186-a672-e7870fbe3c30,https://biolit.fr/observations/observation-00839426-e379-4186-a672-e7870fbe3c30/,,,,https://biolit.fr/wp-content/uploads/2023/07/observation-du-29-juin-2021-ConvertImage.jpg,,FALSE, +N1,58815,sortie-83c57a9b-25bb-473e-a876-abcc978a2909,https://biolit.fr/sorties/sortie-83c57a9b-25bb-473e-a876-abcc978a2909/,MarineGoyallon,,6/26/2021 0:00,14.0000000,16.0000000,47.269540000000,-2.464624000000,,Batz sur Mer,34343,observation-83c57a9b-25bb-473e-a876-abcc978a2909,https://biolit.fr/observations/observation-83c57a9b-25bb-473e-a876-abcc978a2909/,,,,https://biolit.fr/wp-content/uploads/2023/07/52.PNG,,FALSE, +N1,58815,sortie-83c57a9b-25bb-473e-a876-abcc978a2909,https://biolit.fr/sorties/sortie-83c57a9b-25bb-473e-a876-abcc978a2909/,MarineGoyallon,,6/26/2021 0:00,14.0000000,16.0000000,47.269540000000,-2.464624000000,,Batz sur Mer,34344,observation-83c57a9b-25bb-473e-a876-abcc978a2909-2,https://biolit.fr/observations/observation-83c57a9b-25bb-473e-a876-abcc978a2909-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/53.jpg,,FALSE, +N1,58815,sortie-83c57a9b-25bb-473e-a876-abcc978a2909,https://biolit.fr/sorties/sortie-83c57a9b-25bb-473e-a876-abcc978a2909/,MarineGoyallon,,6/26/2021 0:00,14.0000000,16.0000000,47.269540000000,-2.464624000000,,Batz sur Mer,34346,observation-83c57a9b-25bb-473e-a876-abcc978a2909-3,https://biolit.fr/observations/observation-83c57a9b-25bb-473e-a876-abcc978a2909-3/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/54.jpg,,TRUE, +N1,58816,sortie-35726cbc-b3c5-45b9-8da3-4321f5e5fdc5,https://biolit.fr/sorties/sortie-35726cbc-b3c5-45b9-8da3-4321f5e5fdc5/,MarineGoyallon,,6/26/2021 0:00,11.0000000,13.0000000,47.270642000000,-2.474355000000,,Batz sur Mer,34348,observation-35726cbc-b3c5-45b9-8da3-4321f5e5fdc5,https://biolit.fr/observations/observation-35726cbc-b3c5-45b9-8da3-4321f5e5fdc5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/42.jpg,,TRUE, +N1,58816,sortie-35726cbc-b3c5-45b9-8da3-4321f5e5fdc5,https://biolit.fr/sorties/sortie-35726cbc-b3c5-45b9-8da3-4321f5e5fdc5/,MarineGoyallon,,6/26/2021 0:00,11.0000000,13.0000000,47.270642000000,-2.474355000000,,Batz sur Mer,34350,observation-35726cbc-b3c5-45b9-8da3-4321f5e5fdc5-2,https://biolit.fr/observations/observation-35726cbc-b3c5-45b9-8da3-4321f5e5fdc5-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/43.jpg,,TRUE, +N1,58816,sortie-35726cbc-b3c5-45b9-8da3-4321f5e5fdc5,https://biolit.fr/sorties/sortie-35726cbc-b3c5-45b9-8da3-4321f5e5fdc5/,MarineGoyallon,,6/26/2021 0:00,11.0000000,13.0000000,47.270642000000,-2.474355000000,,Batz sur Mer,34352,observation-35726cbc-b3c5-45b9-8da3-4321f5e5fdc5-3,https://biolit.fr/observations/observation-35726cbc-b3c5-45b9-8da3-4321f5e5fdc5-3/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/44_0.jpg,,TRUE, +N1,58816,sortie-35726cbc-b3c5-45b9-8da3-4321f5e5fdc5,https://biolit.fr/sorties/sortie-35726cbc-b3c5-45b9-8da3-4321f5e5fdc5/,MarineGoyallon,,6/26/2021 0:00,11.0000000,13.0000000,47.270642000000,-2.474355000000,,Batz sur Mer,34354,observation-35726cbc-b3c5-45b9-8da3-4321f5e5fdc5-4,https://biolit.fr/observations/observation-35726cbc-b3c5-45b9-8da3-4321f5e5fdc5-4/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/45.jpg,,TRUE, +N1,58817,sortie-51d993dd-8076-43a4-a8bd-497f29a4a4ef,https://biolit.fr/sorties/sortie-51d993dd-8076-43a4-a8bd-497f29a4a4ef/,MarineGoyallon,,6/26/2021 0:00,9.0000000,9.0000000,47.259326000000,-2.432646000000,,Plage du Guec,34356,observation-51d993dd-8076-43a4-a8bd-497f29a4a4ef,https://biolit.fr/observations/observation-51d993dd-8076-43a4-a8bd-497f29a4a4ef/,Allium sphaerocephalon,Ail à tête ronde,,https://biolit.fr/wp-content/uploads/2023/07/32.jpg,,TRUE, +N1,58818,sortie-b7083a69-abf1-46b0-9dda-e56f18122734,https://biolit.fr/sorties/sortie-b7083a69-abf1-46b0-9dda-e56f18122734/,MarineGoyallon,,6/26/2021 0:00,9.0000000,13.0000000,47.284143000000,-2.513617000000,,Plage du Port Lin,34358,observation-b7083a69-abf1-46b0-9dda-e56f18122734,https://biolit.fr/observations/observation-b7083a69-abf1-46b0-9dda-e56f18122734/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/22..jpg,,TRUE, +N1,58818,sortie-b7083a69-abf1-46b0-9dda-e56f18122734,https://biolit.fr/sorties/sortie-b7083a69-abf1-46b0-9dda-e56f18122734/,MarineGoyallon,,6/26/2021 0:00,9.0000000,13.0000000,47.284143000000,-2.513617000000,,Plage du Port Lin,34360,observation-b7083a69-abf1-46b0-9dda-e56f18122734-2,https://biolit.fr/observations/observation-b7083a69-abf1-46b0-9dda-e56f18122734-2/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/23.jpg,,TRUE, +N1,58818,sortie-b7083a69-abf1-46b0-9dda-e56f18122734,https://biolit.fr/sorties/sortie-b7083a69-abf1-46b0-9dda-e56f18122734/,MarineGoyallon,,6/26/2021 0:00,9.0000000,13.0000000,47.284143000000,-2.513617000000,,Plage du Port Lin,34362,observation-b7083a69-abf1-46b0-9dda-e56f18122734-3,https://biolit.fr/observations/observation-b7083a69-abf1-46b0-9dda-e56f18122734-3/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/24.jpg,,TRUE, +N1,58818,sortie-b7083a69-abf1-46b0-9dda-e56f18122734,https://biolit.fr/sorties/sortie-b7083a69-abf1-46b0-9dda-e56f18122734/,MarineGoyallon,,6/26/2021 0:00,9.0000000,13.0000000,47.284143000000,-2.513617000000,,Plage du Port Lin,34364,observation-b7083a69-abf1-46b0-9dda-e56f18122734-4,https://biolit.fr/observations/observation-b7083a69-abf1-46b0-9dda-e56f18122734-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/25.jpg,,TRUE, +N1,58818,sortie-b7083a69-abf1-46b0-9dda-e56f18122734,https://biolit.fr/sorties/sortie-b7083a69-abf1-46b0-9dda-e56f18122734/,MarineGoyallon,,6/26/2021 0:00,9.0000000,13.0000000,47.284143000000,-2.513617000000,,Plage du Port Lin,34366,observation-b7083a69-abf1-46b0-9dda-e56f18122734-5,https://biolit.fr/observations/observation-b7083a69-abf1-46b0-9dda-e56f18122734-5/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/26.jpg,,TRUE, +N1,58818,sortie-b7083a69-abf1-46b0-9dda-e56f18122734,https://biolit.fr/sorties/sortie-b7083a69-abf1-46b0-9dda-e56f18122734/,MarineGoyallon,,6/26/2021 0:00,9.0000000,13.0000000,47.284143000000,-2.513617000000,,Plage du Port Lin,34368,observation-b7083a69-abf1-46b0-9dda-e56f18122734-6,https://biolit.fr/observations/observation-b7083a69-abf1-46b0-9dda-e56f18122734-6/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/27.jpg,,TRUE, +N1,58819,sortie-533be709-5b54-48ec-954b-a7b04ea1c9c0,https://biolit.fr/sorties/sortie-533be709-5b54-48ec-954b-a7b04ea1c9c0/,MarineGoyallon,,6/26/2021 0:00,12.0000000,13.0000000,47.25611000000,-2.239930000000,,Plage de Kerlédé,34370,observation-533be709-5b54-48ec-954b-a7b04ea1c9c0,https://biolit.fr/observations/observation-533be709-5b54-48ec-954b-a7b04ea1c9c0/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8598[1]-scaled.jpg,,TRUE, +N1,58819,sortie-533be709-5b54-48ec-954b-a7b04ea1c9c0,https://biolit.fr/sorties/sortie-533be709-5b54-48ec-954b-a7b04ea1c9c0/,MarineGoyallon,,6/26/2021 0:00,12.0000000,13.0000000,47.25611000000,-2.239930000000,,Plage de Kerlédé,34372,observation-533be709-5b54-48ec-954b-a7b04ea1c9c0-2,https://biolit.fr/observations/observation-533be709-5b54-48ec-954b-a7b04ea1c9c0-2/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8599[1]-scaled.jpg,,TRUE, +N1,58819,sortie-533be709-5b54-48ec-954b-a7b04ea1c9c0,https://biolit.fr/sorties/sortie-533be709-5b54-48ec-954b-a7b04ea1c9c0/,MarineGoyallon,,6/26/2021 0:00,12.0000000,13.0000000,47.25611000000,-2.239930000000,,Plage de Kerlédé,34374,observation-533be709-5b54-48ec-954b-a7b04ea1c9c0-3,https://biolit.fr/observations/observation-533be709-5b54-48ec-954b-a7b04ea1c9c0-3/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/11.jpg,,TRUE, +N1,58819,sortie-533be709-5b54-48ec-954b-a7b04ea1c9c0,https://biolit.fr/sorties/sortie-533be709-5b54-48ec-954b-a7b04ea1c9c0/,MarineGoyallon,,6/26/2021 0:00,12.0000000,13.0000000,47.25611000000,-2.239930000000,,Plage de Kerlédé,34376,observation-533be709-5b54-48ec-954b-a7b04ea1c9c0-4,https://biolit.fr/observations/observation-533be709-5b54-48ec-954b-a7b04ea1c9c0-4/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/12_0.jpg,,TRUE, +N1,58819,sortie-533be709-5b54-48ec-954b-a7b04ea1c9c0,https://biolit.fr/sorties/sortie-533be709-5b54-48ec-954b-a7b04ea1c9c0/,MarineGoyallon,,6/26/2021 0:00,12.0000000,13.0000000,47.25611000000,-2.239930000000,,Plage de Kerlédé,34378,observation-533be709-5b54-48ec-954b-a7b04ea1c9c0-5,https://biolit.fr/observations/observation-533be709-5b54-48ec-954b-a7b04ea1c9c0-5/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/13.jpg,,TRUE, +N1,58819,sortie-533be709-5b54-48ec-954b-a7b04ea1c9c0,https://biolit.fr/sorties/sortie-533be709-5b54-48ec-954b-a7b04ea1c9c0/,MarineGoyallon,,6/26/2021 0:00,12.0000000,13.0000000,47.25611000000,-2.239930000000,,Plage de Kerlédé,34380,observation-533be709-5b54-48ec-954b-a7b04ea1c9c0-6,https://biolit.fr/observations/observation-533be709-5b54-48ec-954b-a7b04ea1c9c0-6/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/14.jpg,,TRUE, +N1,58819,sortie-533be709-5b54-48ec-954b-a7b04ea1c9c0,https://biolit.fr/sorties/sortie-533be709-5b54-48ec-954b-a7b04ea1c9c0/,MarineGoyallon,,6/26/2021 0:00,12.0000000,13.0000000,47.25611000000,-2.239930000000,,Plage de Kerlédé,34382,observation-533be709-5b54-48ec-954b-a7b04ea1c9c0-7,https://biolit.fr/observations/observation-533be709-5b54-48ec-954b-a7b04ea1c9c0-7/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/15_0.jpg,,TRUE, +N1,58820,sortie-0dc1501b-cf25-4f99-ab49-56b711dcc4cb,https://biolit.fr/sorties/sortie-0dc1501b-cf25-4f99-ab49-56b711dcc4cb/,S DENIS,,6/25/2021 0:00,13.0000000,17.0000000,45.805994000000,-1.239498000000,,Maumusson,34386,observation-0dc1501b-cf25-4f99-ab49-56b711dcc4cb,https://biolit.fr/observations/observation-0dc1501b-cf25-4f99-ab49-56b711dcc4cb/,Matthiola sinuata,Giroflée des dunes,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0501_1-scaled.jpg,,TRUE, +N1,58821,sortie-599012d7-2a25-40da-8eea-0f5d9b8d6012,https://biolit.fr/sorties/sortie-599012d7-2a25-40da-8eea-0f5d9b8d6012/,S DENIS,,6/25/2021 0:00,13.0000000,17.0000000,45.803682000000,-1.238618000000,,Maumusson,34388,observation-599012d7-2a25-40da-8eea-0f5d9b8d6012,https://biolit.fr/observations/observation-599012d7-2a25-40da-8eea-0f5d9b8d6012/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0500-scaled.jpg,,FALSE, +N1,58822,sortie-eaf057cb-4ecc-418a-ada7-6a6e74dabbf9,https://biolit.fr/sorties/sortie-eaf057cb-4ecc-418a-ada7-6a6e74dabbf9/,S DENIS,,6/25/2021 0:00,13.0000000,17.0000000,45.800729000000,-1.231601000000,,Plage de Gatseau,34390,observation-eaf057cb-4ecc-418a-ada7-6a6e74dabbf9,https://biolit.fr/observations/observation-eaf057cb-4ecc-418a-ada7-6a6e74dabbf9/,Chrysaora hysoscella,Méduse rayonnée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0499_0-scaled.jpg,,TRUE, +N1,58823,sortie-eac81380-089e-4b77-a62f-47b69900fa02,https://biolit.fr/sorties/sortie-eac81380-089e-4b77-a62f-47b69900fa02/,S DENIS,,6/25/2021 0:00,13.0000000,17.0000000,45.80888700000,-1.226130000000,,Plage de Gatseau,34392,observation-eac81380-089e-4b77-a62f-47b69900fa02,https://biolit.fr/observations/observation-eac81380-089e-4b77-a62f-47b69900fa02/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0493-scaled.jpg,,TRUE, +N1,58824,sortie-07bc9aec-558b-434b-acd4-fb5353bedba1,https://biolit.fr/sorties/sortie-07bc9aec-558b-434b-acd4-fb5353bedba1/,S DENIS,,6/25/2021 0:00,13.0000000,17.0000000,45.801208000000,-1.232460000000,,Plage de Gatseau,34394,observation-07bc9aec-558b-434b-acd4-fb5353bedba1,https://biolit.fr/observations/observation-07bc9aec-558b-434b-acd4-fb5353bedba1/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0496-scaled.jpg,,TRUE, +N1,58825,sortie-1f5d22a7-f3f7-4b0e-821a-f361fb4f709b,https://biolit.fr/sorties/sortie-1f5d22a7-f3f7-4b0e-821a-f361fb4f709b/,S DENIS,,6/25/2021 0:00,13.0000000,17.0000000,45.80299400000,-1.227031000000,,Plage de Gatseau,34396,observation-1f5d22a7-f3f7-4b0e-821a-f361fb4f709b,https://biolit.fr/observations/observation-1f5d22a7-f3f7-4b0e-821a-f361fb4f709b/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_0487-scaled.jpg,,TRUE, +N1,58826,sortie-509407fe-e748-4a6b-8537-c18c5f8f376e,https://biolit.fr/sorties/sortie-509407fe-e748-4a6b-8537-c18c5f8f376e/,S DENIS,,6/25/2021 0:00,13.0000000,17.0000000,45.810129000000,-1.225186000000,,Plage de Gatseau,34398,observation-509407fe-e748-4a6b-8537-c18c5f8f376e,https://biolit.fr/observations/observation-509407fe-e748-4a6b-8537-c18c5f8f376e/,Lotus corniculatus,Lotier corniculé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0484-scaled.jpg,,TRUE, +N1,58827,sortie-9da74cea-8981-4f1a-bc6d-5250849d8300,https://biolit.fr/sorties/sortie-9da74cea-8981-4f1a-bc6d-5250849d8300/,S DENIS,,6/25/2021 0:00,13.0000000,17.0000000,45.810682000000,-1.224499000000,,Plage de Ga,34400,observation-9da74cea-8981-4f1a-bc6d-5250849d8300,https://biolit.fr/observations/observation-9da74cea-8981-4f1a-bc6d-5250849d8300/,Yucca gloriosa,Yucca,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0483_0-scaled.jpg,,TRUE, +N1,58828,sortie-47a4c804-c847-4280-8542-d447db5f17fb,https://biolit.fr/sorties/sortie-47a4c804-c847-4280-8542-d447db5f17fb/,S DENIS,,6/25/2021 0:00,13.0000000,17.0000000,45.81062200000,-1.224714000000,,Plage de Gatseau,,,,,,,,,, +N1,58829,sortie-73e3e2ba-5a56-411a-9c72-edad2bde4042,https://biolit.fr/sorties/sortie-73e3e2ba-5a56-411a-9c72-edad2bde4042/,S DENIS,,6/25/2021 0:00,13.0000000,17.0000000,45.81062200000,-1.224714000000,,Plage de Gatseau,34404,observation-73e3e2ba-5a56-411a-9c72-edad2bde4042,https://biolit.fr/observations/observation-73e3e2ba-5a56-411a-9c72-edad2bde4042/,Oenothera glazioviana,Onagre à sépales rouges,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0478-scaled.jpg,,TRUE, +N1,58831,sortie-70b49989-49c4-4c00-91b1-5be7af50b99c,https://biolit.fr/sorties/sortie-70b49989-49c4-4c00-91b1-5be7af50b99c/,S DENIS,,6/25/2021 0:00,8.0000000,13.0000000,45.793610000000,-1.176187000000,,Plage de la Cèpe,34407,observation-70b49989-49c4-4c00-91b1-5be7af50b99c,https://biolit.fr/observations/observation-70b49989-49c4-4c00-91b1-5be7af50b99c/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0471-scaled.jpg,,FALSE, +N1,58832,sortie-3ddf2381-4032-4d84-8106-9781861d18d0,https://biolit.fr/sorties/sortie-3ddf2381-4032-4d84-8106-9781861d18d0/,S DENIS,,6/25/2021 0:00,8.0000000,13.0000000,45.793629000000,-1.176348000000,,Plage de la Cèpe,34409,observation-3ddf2381-4032-4d84-8106-9781861d18d0,https://biolit.fr/observations/observation-3ddf2381-4032-4d84-8106-9781861d18d0/,Tripleurospermum maritimum,Matricaire maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0468-scaled.jpg,,TRUE, +N1,58833,sortie-0741bb0f-0de1-42d8-ae0d-ba98d64390f5,https://biolit.fr/sorties/sortie-0741bb0f-0de1-42d8-ae0d-ba98d64390f5/,S DENIS,,6/25/2021 0:00,8.0000000,13.0000000,45.79377900000,-1.175318000000,,Plage de la Cèpe,34411,observation-0741bb0f-0de1-42d8-ae0d-ba98d64390f5,https://biolit.fr/observations/observation-0741bb0f-0de1-42d8-ae0d-ba98d64390f5/,Calystegia soldanella,Liseron des dunes,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0462-scaled.jpg,,TRUE, +N1,58834,sortie-529f222f-fee8-4fcb-b275-e04a14604b5a,https://biolit.fr/sorties/sortie-529f222f-fee8-4fcb-b275-e04a14604b5a/,S DENIS,,6/25/2021 0:00,8.0000000,13.0000000,45.794201000000,-1.173837000000,,Plage de la Cèpe,34413,observation-529f222f-fee8-4fcb-b275-e04a14604b5a,https://biolit.fr/observations/observation-529f222f-fee8-4fcb-b275-e04a14604b5a/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0458-scaled.jpg,,TRUE, +N1,58835,sortie-dda24bf5-d548-4294-b4d2-10782f8e5a16,https://biolit.fr/sorties/sortie-dda24bf5-d548-4294-b4d2-10782f8e5a16/,S DENIS,,6/25/2021 0:00,8.0000000,13.0000000,45.798853000000,-1.166660000000,,Plage de la Cèpe,34415,observation-dda24bf5-d548-4294-b4d2-10782f8e5a16,https://biolit.fr/observations/observation-dda24bf5-d548-4294-b4d2-10782f8e5a16/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0457-scaled.jpg,,FALSE, +N1,58836,sortie-762238b6-3970-4441-ac7a-3f9d08ee2468,https://biolit.fr/sorties/sortie-762238b6-3970-4441-ac7a-3f9d08ee2468/,S DENIS,,6/25/2021 0:00,8.0000000,13.0000000,45.799983000000,-1.165158000000,,Plage de la Cèpe,34417,observation-762238b6-3970-4441-ac7a-3f9d08ee2468,https://biolit.fr/observations/observation-762238b6-3970-4441-ac7a-3f9d08ee2468/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0456-scaled.jpg,,FALSE, +N1,58837,sortie-01b24eba-769a-4757-a682-95caef274cac,https://biolit.fr/sorties/sortie-01b24eba-769a-4757-a682-95caef274cac/,S DENIS,,6/25/2021 0:00,8.0000000,13.0000000,45.799908000000,-1.165115000000,,Plage de la Cèpe,34419,observation-01b24eba-769a-4757-a682-95caef274cac,https://biolit.fr/observations/observation-01b24eba-769a-4757-a682-95caef274cac/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0453-scaled.jpg,,TRUE, +N1,58838,sortie-37bf9015-8d0d-4a41-97c6-9668e6951597,https://biolit.fr/sorties/sortie-37bf9015-8d0d-4a41-97c6-9668e6951597/,S DENIS,,6/25/2021 0:00,8.0000000,13.0000000,45.799698000000,-1.16487900000,,Plage de la Cèpe,34421,observation-37bf9015-8d0d-4a41-97c6-9668e6951597,https://biolit.fr/observations/observation-37bf9015-8d0d-4a41-97c6-9668e6951597/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0450_0-scaled.jpg,,TRUE, +N1,58839,sortie-dd81bc1e-a858-4cbb-96e9-72d6cf98fa40,https://biolit.fr/sorties/sortie-dd81bc1e-a858-4cbb-96e9-72d6cf98fa40/,S DENIS,,6/25/2021 0:00,8.0000000,13.0000000,45.799733000000,-1.164761000000,,Plage de la Cèpe,34423,observation-dd81bc1e-a858-4cbb-96e9-72d6cf98fa40,https://biolit.fr/observations/observation-dd81bc1e-a858-4cbb-96e9-72d6cf98fa40/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0443-scaled.jpg,,TRUE, +N1,58840,sortie-1f44356f-a574-4f49-b208-24d9a83589c8,https://biolit.fr/sorties/sortie-1f44356f-a574-4f49-b208-24d9a83589c8/,S DENIS,,6/25/2021 0:00,9.0000000,11.0000000,45.799652000000,-1.164654000000,,Plage de la Cèpe,34425,observation-1f44356f-a574-4f49-b208-24d9a83589c8,https://biolit.fr/observations/observation-1f44356f-a574-4f49-b208-24d9a83589c8/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0440_0-scaled.jpg,,TRUE, +N1,58841,sortie-d345ceca-b154-44d6-bd8b-24a53b6a570c,https://biolit.fr/sorties/sortie-d345ceca-b154-44d6-bd8b-24a53b6a570c/,S DENIS,,6/25/2021 0:00,8.0000000,13.0000000,45.799672000000,-1.164927000000,,Plage de la Cèpe,34427,observation-d345ceca-b154-44d6-bd8b-24a53b6a570c,https://biolit.fr/observations/observation-d345ceca-b154-44d6-bd8b-24a53b6a570c/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0435-scaled.jpg,,TRUE, +N1,58842,sortie-936677dc-e98e-4339-afc8-5338ab3f608c,https://biolit.fr/sorties/sortie-936677dc-e98e-4339-afc8-5338ab3f608c/,BAQUE yves,,6/18/2021 0:00,14.0000000,15.0000000,43.401832000000,6.727354000000,,Saint-Aygulf 83600 FREJUS,,,,,,,,,, +N1,58843,sortie-ab681c95-a82c-45e0-9c78-6898b93d85e0,https://biolit.fr/sorties/sortie-ab681c95-a82c-45e0-9c78-6898b93d85e0/,BAQUE yves,,6/18/2021 0:00,9.0000000,11.0000000,43.4019140000,6.730542000000,,Saint-Aygulf 83600 FREJUS,34437,observation-ab681c95-a82c-45e0-9c78-6898b93d85e0,https://biolit.fr/observations/observation-ab681c95-a82c-45e0-9c78-6898b93d85e0/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1359-rotated.jpg,,FALSE, +N1,58843,sortie-ab681c95-a82c-45e0-9c78-6898b93d85e0,https://biolit.fr/sorties/sortie-ab681c95-a82c-45e0-9c78-6898b93d85e0/,BAQUE yves,,6/18/2021 0:00,9.0000000,11.0000000,43.4019140000,6.730542000000,,Saint-Aygulf 83600 FREJUS,34439,observation-ab681c95-a82c-45e0-9c78-6898b93d85e0-2,https://biolit.fr/observations/observation-ab681c95-a82c-45e0-9c78-6898b93d85e0-2/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1365-rotated.jpg,,TRUE, +N1,58843,sortie-ab681c95-a82c-45e0-9c78-6898b93d85e0,https://biolit.fr/sorties/sortie-ab681c95-a82c-45e0-9c78-6898b93d85e0/,BAQUE yves,,6/18/2021 0:00,9.0000000,11.0000000,43.4019140000,6.730542000000,,Saint-Aygulf 83600 FREJUS,34443,observation-ab681c95-a82c-45e0-9c78-6898b93d85e0-4,https://biolit.fr/observations/observation-ab681c95-a82c-45e0-9c78-6898b93d85e0-4/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1375-scaled.jpg,,TRUE, +N1,58843,sortie-ab681c95-a82c-45e0-9c78-6898b93d85e0,https://biolit.fr/sorties/sortie-ab681c95-a82c-45e0-9c78-6898b93d85e0/,BAQUE yves,,6/18/2021 0:00,9.0000000,11.0000000,43.4019140000,6.730542000000,,Saint-Aygulf 83600 FREJUS,34445,observation-ab681c95-a82c-45e0-9c78-6898b93d85e0-5,https://biolit.fr/observations/observation-ab681c95-a82c-45e0-9c78-6898b93d85e0-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1385-scaled.jpg,,FALSE, +N1,58844,sortie-318eb37d-9cab-4e54-a735-064d9b7ab1df,https://biolit.fr/sorties/sortie-318eb37d-9cab-4e54-a735-064d9b7ab1df/,Marine,,6/16/2021 0:00,10.0000000,10.0000000,43.214835000000,5.342970000000,Planète Mer,Anse de la maronaise,34447,observation-318eb37d-9cab-4e54-a735-064d9b7ab1df,https://biolit.fr/observations/observation-318eb37d-9cab-4e54-a735-064d9b7ab1df/,Ligia italica,Ligie italienne,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210616_102054_compress64-scaled.jpg,,TRUE, +N1,58844,sortie-318eb37d-9cab-4e54-a735-064d9b7ab1df,https://biolit.fr/sorties/sortie-318eb37d-9cab-4e54-a735-064d9b7ab1df/,Marine,,6/16/2021 0:00,10.0000000,10.0000000,43.214835000000,5.342970000000,Planète Mer,Anse de la maronaise,34449,observation-318eb37d-9cab-4e54-a735-064d9b7ab1df-2,https://biolit.fr/observations/observation-318eb37d-9cab-4e54-a735-064d9b7ab1df-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210616_102031_compress60-scaled.jpg,,FALSE, +N1,58844,sortie-318eb37d-9cab-4e54-a735-064d9b7ab1df,https://biolit.fr/sorties/sortie-318eb37d-9cab-4e54-a735-064d9b7ab1df/,Marine,,6/16/2021 0:00,10.0000000,10.0000000,43.214835000000,5.342970000000,Planète Mer,Anse de la maronaise,34451,observation-318eb37d-9cab-4e54-a735-064d9b7ab1df-3,https://biolit.fr/observations/observation-318eb37d-9cab-4e54-a735-064d9b7ab1df-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210616_102015_compress75-scaled.jpg,,FALSE, +N1,58844,sortie-318eb37d-9cab-4e54-a735-064d9b7ab1df,https://biolit.fr/sorties/sortie-318eb37d-9cab-4e54-a735-064d9b7ab1df/,Marine,,6/16/2021 0:00,10.0000000,10.0000000,43.214835000000,5.342970000000,Planète Mer,Anse de la maronaise,34453,observation-318eb37d-9cab-4e54-a735-064d9b7ab1df-4,https://biolit.fr/observations/observation-318eb37d-9cab-4e54-a735-064d9b7ab1df-4/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210616_105809_compress60-scaled.jpg,,TRUE, +N1,58844,sortie-318eb37d-9cab-4e54-a735-064d9b7ab1df,https://biolit.fr/sorties/sortie-318eb37d-9cab-4e54-a735-064d9b7ab1df/,Marine,,6/16/2021 0:00,10.0000000,10.0000000,43.214835000000,5.342970000000,Planète Mer,Anse de la maronaise,34455,observation-318eb37d-9cab-4e54-a735-064d9b7ab1df-5,https://biolit.fr/observations/observation-318eb37d-9cab-4e54-a735-064d9b7ab1df-5/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210616_102743_compress15-scaled.jpg,,TRUE, +N1,58844,sortie-318eb37d-9cab-4e54-a735-064d9b7ab1df,https://biolit.fr/sorties/sortie-318eb37d-9cab-4e54-a735-064d9b7ab1df/,Marine,,6/16/2021 0:00,10.0000000,10.0000000,43.214835000000,5.342970000000,Planète Mer,Anse de la maronaise,34457,observation-318eb37d-9cab-4e54-a735-064d9b7ab1df-6,https://biolit.fr/observations/observation-318eb37d-9cab-4e54-a735-064d9b7ab1df-6/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210616_102417_compress66-scaled.jpg,,TRUE, +N1,58844,sortie-318eb37d-9cab-4e54-a735-064d9b7ab1df,https://biolit.fr/sorties/sortie-318eb37d-9cab-4e54-a735-064d9b7ab1df/,Marine,,6/16/2021 0:00,10.0000000,10.0000000,43.214835000000,5.342970000000,Planète Mer,Anse de la maronaise,34459,observation-318eb37d-9cab-4e54-a735-064d9b7ab1df-7,https://biolit.fr/observations/observation-318eb37d-9cab-4e54-a735-064d9b7ab1df-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210616_102328_compress44-scaled.jpg,,FALSE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34461,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona fascicularis_3.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34463,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-2,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_12.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34465,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-3,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-3/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_6.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34467,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-4,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-4/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/Anthopleura balii_4.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34469,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-5,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-5/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/Arenaria interpres_2.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34471,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-6,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-6/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_8.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34473,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-7,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-7/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_15.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34475,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-8,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-8/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_6.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34477,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-9,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-9/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus spp.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34479,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-10,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-10/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_9.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34481,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-11,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-11/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_13.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34483,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-12,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-12/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_7.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34485,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-13,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-13/,Clavelina lepadiformis,Grande claveline,,https://biolit.fr/wp-content/uploads/2023/07/Clavelina padeliformis.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34487,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-14,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-14/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crepidula fornicata_0.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34489,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-15,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-15/,Doris verrucosa,Doris verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/Doris verrucosa_1.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34491,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-16,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_16.PNG,,FALSE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34493,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-17,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-17/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Eriphia verrucosa_6.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34495,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-18,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-18/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_10.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34497,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-19,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-19/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_13.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34499,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-20,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-20/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_8.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34501,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-21,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-21/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis lumbriciformis_1.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34503,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-22,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/non identifié 1_0.PNG,,FALSE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34505,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-23,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-23/,Berthella plumula,Berthelle plume,,https://biolit.fr/wp-content/uploads/2023/07/non identifié plus athanas nitescens.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34507,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-24,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-24/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_14.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34509,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-25,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-25/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_10.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34511,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-26,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-26/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/2023/07/Salaria pavo_0.PNG,,TRUE, +N1,58845,sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf,https://biolit.fr/sorties/sortie-f8804685-da8a-44f2-bfb9-9eac7d8e6caf/,Roman,,6/15/2021 0:00,14.0000000,16.0000000,47.704405000000,-3.356410000000,,Port-Louis,34513,observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-27,https://biolit.fr/observations/observation-f8804685-da8a-44f2-bfb9-9eac7d8e6caf-27/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_10.PNG,,TRUE, +N1,58846,sortie-675f2c51-2a01-494a-a350-4a976fd9f9e7,https://biolit.fr/sorties/sortie-675f2c51-2a01-494a-a350-4a976fd9f9e7/,Roman,,6/13/2021 0:00,11.0000000,11.0:45,47.649187000000,-3.479679000000,,Groix,34515,observation-675f2c51-2a01-494a-a350-4a976fd9f9e7,https://biolit.fr/observations/observation-675f2c51-2a01-494a-a350-4a976fd9f9e7/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_11.PNG,,TRUE, +N1,58846,sortie-675f2c51-2a01-494a-a350-4a976fd9f9e7,https://biolit.fr/sorties/sortie-675f2c51-2a01-494a-a350-4a976fd9f9e7/,Roman,,6/13/2021 0:00,11.0000000,11.0:45,47.649187000000,-3.479679000000,,Groix,34517,observation-675f2c51-2a01-494a-a350-4a976fd9f9e7-2,https://biolit.fr/observations/observation-675f2c51-2a01-494a-a350-4a976fd9f9e7-2/,Beroe cucumis,Beroe cucumis,,https://biolit.fr/wp-content/uploads/2023/07/Beroe sp.PNG,,TRUE, +N1,58846,sortie-675f2c51-2a01-494a-a350-4a976fd9f9e7,https://biolit.fr/sorties/sortie-675f2c51-2a01-494a-a350-4a976fd9f9e7/,Roman,,6/13/2021 0:00,11.0000000,11.0:45,47.649187000000,-3.479679000000,,Groix,34519,observation-675f2c51-2a01-494a-a350-4a976fd9f9e7-3,https://biolit.fr/observations/observation-675f2c51-2a01-494a-a350-4a976fd9f9e7-3/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Eriphia verrucosa_5.PNG,,TRUE, +N1,58846,sortie-675f2c51-2a01-494a-a350-4a976fd9f9e7,https://biolit.fr/sorties/sortie-675f2c51-2a01-494a-a350-4a976fd9f9e7/,Roman,,6/13/2021 0:00,11.0000000,11.0:45,47.649187000000,-3.479679000000,,Groix,34521,observation-675f2c51-2a01-494a-a350-4a976fd9f9e7-4,https://biolit.fr/observations/observation-675f2c51-2a01-494a-a350-4a976fd9f9e7-4/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_4.PNG,,TRUE, +N1,58846,sortie-675f2c51-2a01-494a-a350-4a976fd9f9e7,https://biolit.fr/sorties/sortie-675f2c51-2a01-494a-a350-4a976fd9f9e7/,Roman,,6/13/2021 0:00,11.0000000,11.0:45,47.649187000000,-3.479679000000,,Groix,34523,observation-675f2c51-2a01-494a-a350-4a976fd9f9e7-5,https://biolit.fr/observations/observation-675f2c51-2a01-494a-a350-4a976fd9f9e7-5/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/Pollicipes pollicipes_0.PNG,,TRUE, +N1,58847,sortie-21560e90-fa67-48b3-9ecc-1c04606884a2,https://biolit.fr/sorties/sortie-21560e90-fa67-48b3-9ecc-1c04606884a2/,patrick.caillon,,6/14/2021 0:00,11.0000000,13.0000000,47.228108000000,-2.176463000000,,Saint Brevin l'ocean,34527,observation-21560e90-fa67-48b3-9ecc-1c04606884a2-2,https://biolit.fr/observations/observation-21560e90-fa67-48b3-9ecc-1c04606884a2-2/,Ensis ensis,Couteau-sabre,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4306-min-scaled.jpg,,TRUE, +N1,58847,sortie-21560e90-fa67-48b3-9ecc-1c04606884a2,https://biolit.fr/sorties/sortie-21560e90-fa67-48b3-9ecc-1c04606884a2/,patrick.caillon,,6/14/2021 0:00,11.0000000,13.0000000,47.228108000000,-2.176463000000,,Saint Brevin l'ocean,34537,observation-21560e90-fa67-48b3-9ecc-1c04606884a2-7,https://biolit.fr/observations/observation-21560e90-fa67-48b3-9ecc-1c04606884a2-7/,Ensis ensis,Couteau-sabre,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4312-min-scaled.jpg,,TRUE, +N1,58847,sortie-21560e90-fa67-48b3-9ecc-1c04606884a2,https://biolit.fr/sorties/sortie-21560e90-fa67-48b3-9ecc-1c04606884a2/,patrick.caillon,,6/14/2021 0:00,11.0000000,13.0000000,47.228108000000,-2.176463000000,,Saint Brevin l'ocean,34539,observation-21560e90-fa67-48b3-9ecc-1c04606884a2-8,https://biolit.fr/observations/observation-21560e90-fa67-48b3-9ecc-1c04606884a2-8/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4313-min-scaled.jpg,,TRUE, +N1,58847,sortie-21560e90-fa67-48b3-9ecc-1c04606884a2,https://biolit.fr/sorties/sortie-21560e90-fa67-48b3-9ecc-1c04606884a2/,patrick.caillon,,6/14/2021 0:00,11.0000000,13.0000000,47.228108000000,-2.176463000000,,Saint Brevin l'ocean,34541,observation-21560e90-fa67-48b3-9ecc-1c04606884a2-9,https://biolit.fr/observations/observation-21560e90-fa67-48b3-9ecc-1c04606884a2-9/,Ensis ensis,Couteau-sabre,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4315-min-scaled.jpg,,TRUE, +N1,58847,sortie-21560e90-fa67-48b3-9ecc-1c04606884a2,https://biolit.fr/sorties/sortie-21560e90-fa67-48b3-9ecc-1c04606884a2/,patrick.caillon,,6/14/2021 0:00,11.0000000,13.0000000,47.228108000000,-2.176463000000,,Saint Brevin l'ocean,34543,observation-21560e90-fa67-48b3-9ecc-1c04606884a2-10,https://biolit.fr/observations/observation-21560e90-fa67-48b3-9ecc-1c04606884a2-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4316-min-scaled.jpg,,FALSE, +N1,58847,sortie-21560e90-fa67-48b3-9ecc-1c04606884a2,https://biolit.fr/sorties/sortie-21560e90-fa67-48b3-9ecc-1c04606884a2/,patrick.caillon,,6/14/2021 0:00,11.0000000,13.0000000,47.228108000000,-2.176463000000,,Saint Brevin l'ocean,34545,observation-21560e90-fa67-48b3-9ecc-1c04606884a2-11,https://biolit.fr/observations/observation-21560e90-fa67-48b3-9ecc-1c04606884a2-11/,Chrysaora hysoscella,Méduse rayonnée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4317-min-scaled.jpg,,TRUE, +N1,58847,sortie-21560e90-fa67-48b3-9ecc-1c04606884a2,https://biolit.fr/sorties/sortie-21560e90-fa67-48b3-9ecc-1c04606884a2/,patrick.caillon,,6/14/2021 0:00,11.0000000,13.0000000,47.228108000000,-2.176463000000,,Saint Brevin l'ocean,34549,observation-21560e90-fa67-48b3-9ecc-1c04606884a2-13,https://biolit.fr/observations/observation-21560e90-fa67-48b3-9ecc-1c04606884a2-13/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4319-min-scaled.jpg,,TRUE, +N1,58847,sortie-21560e90-fa67-48b3-9ecc-1c04606884a2,https://biolit.fr/sorties/sortie-21560e90-fa67-48b3-9ecc-1c04606884a2/,patrick.caillon,,6/14/2021 0:00,11.0000000,13.0000000,47.228108000000,-2.176463000000,,Saint Brevin l'ocean,34551,observation-21560e90-fa67-48b3-9ecc-1c04606884a2-14,https://biolit.fr/observations/observation-21560e90-fa67-48b3-9ecc-1c04606884a2-14/,Balistes capriscus,Baliste commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4322-min-scaled.jpg,,TRUE, +N1,58848,sortie-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d,https://biolit.fr/sorties/sortie-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d/,Marta,,06/07/2021,15.0000000,17.0000000,46.121702000000,-1.125077000000,,Plage d'Aytré,34553,observation-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d,https://biolit.fr/observations/observation-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d/,Sedum acre,Orpin âcre,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0018-scaled.jpg,,TRUE, +N1,58848,sortie-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d,https://biolit.fr/sorties/sortie-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d/,Marta,,06/07/2021,15.0000000,17.0000000,46.121702000000,-1.125077000000,,Plage d'Aytré,34555,observation-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d-2,https://biolit.fr/observations/observation-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0020-scaled.jpg,,FALSE, +N1,58848,sortie-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d,https://biolit.fr/sorties/sortie-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d/,Marta,,06/07/2021,15.0000000,17.0000000,46.121702000000,-1.125077000000,,Plage d'Aytré,34557,observation-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d-3,https://biolit.fr/observations/observation-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0024-scaled.jpg,,FALSE, +N1,58848,sortie-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d,https://biolit.fr/sorties/sortie-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d/,Marta,,06/07/2021,15.0000000,17.0000000,46.121702000000,-1.125077000000,,Plage d'Aytré,34559,observation-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d-4,https://biolit.fr/observations/observation-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0025-scaled.jpg,,FALSE, +N1,58848,sortie-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d,https://biolit.fr/sorties/sortie-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d/,Marta,,06/07/2021,15.0000000,17.0000000,46.121702000000,-1.125077000000,,Plage d'Aytré,34561,observation-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d-5,https://biolit.fr/observations/observation-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0028.jpg,,FALSE, +N1,58848,sortie-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d,https://biolit.fr/sorties/sortie-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d/,Marta,,06/07/2021,15.0000000,17.0000000,46.121702000000,-1.125077000000,,Plage d'Aytré,34563,observation-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d-6,https://biolit.fr/observations/observation-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d-6/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0030-scaled.jpg,,TRUE, +N1,58848,sortie-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d,https://biolit.fr/sorties/sortie-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d/,Marta,,06/07/2021,15.0000000,17.0000000,46.121702000000,-1.125077000000,,Plage d'Aytré,34565,observation-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d-7,https://biolit.fr/observations/observation-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d-7/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0031-scaled.jpg,,TRUE, +N1,58848,sortie-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d,https://biolit.fr/sorties/sortie-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d/,Marta,,06/07/2021,15.0000000,17.0000000,46.121702000000,-1.125077000000,,Plage d'Aytré,34567,observation-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d-8,https://biolit.fr/observations/observation-e435ffae-d24e-4a54-8ce3-2ef9b9ccf56d-8/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0034.jpg,,TRUE, +N1,58849,sortie-351552ee-dccb-4109-943c-5a0647ccb317,https://biolit.fr/sorties/sortie-351552ee-dccb-4109-943c-5a0647ccb317/,Marine,,5/22/2021 0:00,9.0:15,10.0:15,43.240955000000,5.362472000000,Planète Mer,Plage du bain des dames,34571,observation-351552ee-dccb-4109-943c-5a0647ccb317,https://biolit.fr/observations/observation-351552ee-dccb-4109-943c-5a0647ccb317/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_093022_compress48-scaled.jpg,,FALSE, +N1,58849,sortie-351552ee-dccb-4109-943c-5a0647ccb317,https://biolit.fr/sorties/sortie-351552ee-dccb-4109-943c-5a0647ccb317/,Marine,,5/22/2021 0:00,9.0:15,10.0:15,43.240955000000,5.362472000000,Planète Mer,Plage du bain des dames,34573,observation-351552ee-dccb-4109-943c-5a0647ccb317-2,https://biolit.fr/observations/observation-351552ee-dccb-4109-943c-5a0647ccb317-2/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_091747_compress34-scaled.jpg,,TRUE, +N1,58849,sortie-351552ee-dccb-4109-943c-5a0647ccb317,https://biolit.fr/sorties/sortie-351552ee-dccb-4109-943c-5a0647ccb317/,Marine,,5/22/2021 0:00,9.0:15,10.0:15,43.240955000000,5.362472000000,Planète Mer,Plage du bain des dames,34575,observation-351552ee-dccb-4109-943c-5a0647ccb317-3,https://biolit.fr/observations/observation-351552ee-dccb-4109-943c-5a0647ccb317-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_093204_compress61-scaled.jpg,,FALSE, +N1,58849,sortie-351552ee-dccb-4109-943c-5a0647ccb317,https://biolit.fr/sorties/sortie-351552ee-dccb-4109-943c-5a0647ccb317/,Marine,,5/22/2021 0:00,9.0:15,10.0:15,43.240955000000,5.362472000000,Planète Mer,Plage du bain des dames,34577,observation-351552ee-dccb-4109-943c-5a0647ccb317-4,https://biolit.fr/observations/observation-351552ee-dccb-4109-943c-5a0647ccb317-4/,Dynamena pumila,Petite dynamène,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_092852_compress35-scaled.jpg,,TRUE, +N1,58849,sortie-351552ee-dccb-4109-943c-5a0647ccb317,https://biolit.fr/sorties/sortie-351552ee-dccb-4109-943c-5a0647ccb317/,Marine,,5/22/2021 0:00,9.0:15,10.0:15,43.240955000000,5.362472000000,Planète Mer,Plage du bain des dames,34579,observation-351552ee-dccb-4109-943c-5a0647ccb317-5,https://biolit.fr/observations/observation-351552ee-dccb-4109-943c-5a0647ccb317-5/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_093029_compress83-scaled.jpg,,TRUE, +N1,58849,sortie-351552ee-dccb-4109-943c-5a0647ccb317,https://biolit.fr/sorties/sortie-351552ee-dccb-4109-943c-5a0647ccb317/,Marine,,5/22/2021 0:00,9.0:15,10.0:15,43.240955000000,5.362472000000,Planète Mer,Plage du bain des dames,34581,observation-351552ee-dccb-4109-943c-5a0647ccb317-6,https://biolit.fr/observations/observation-351552ee-dccb-4109-943c-5a0647ccb317-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_095033_compress10-scaled.jpg,,FALSE, +N1,58849,sortie-351552ee-dccb-4109-943c-5a0647ccb317,https://biolit.fr/sorties/sortie-351552ee-dccb-4109-943c-5a0647ccb317/,Marine,,5/22/2021 0:00,9.0:15,10.0:15,43.240955000000,5.362472000000,Planète Mer,Plage du bain des dames,34583,observation-351552ee-dccb-4109-943c-5a0647ccb317-7,https://biolit.fr/observations/observation-351552ee-dccb-4109-943c-5a0647ccb317-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_094726_compress68-scaled.jpg,,FALSE, +N1,58849,sortie-351552ee-dccb-4109-943c-5a0647ccb317,https://biolit.fr/sorties/sortie-351552ee-dccb-4109-943c-5a0647ccb317/,Marine,,5/22/2021 0:00,9.0:15,10.0:15,43.240955000000,5.362472000000,Planète Mer,Plage du bain des dames,34587,observation-351552ee-dccb-4109-943c-5a0647ccb317-9,https://biolit.fr/observations/observation-351552ee-dccb-4109-943c-5a0647ccb317-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_095329_compress14-scaled.jpg | https://biolit.fr/wp-content/uploads/2021/05/1623232118182-scaled-1-scaled.jpg,,FALSE, +N1,58849,sortie-351552ee-dccb-4109-943c-5a0647ccb317,https://biolit.fr/sorties/sortie-351552ee-dccb-4109-943c-5a0647ccb317/,Marine,,5/22/2021 0:00,9.0:15,10.0:15,43.240955000000,5.362472000000,Planète Mer,Plage du bain des dames,34589,observation-351552ee-dccb-4109-943c-5a0647ccb317-10,https://biolit.fr/observations/observation-351552ee-dccb-4109-943c-5a0647ccb317-10/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_093029_compress83_0-scaled.jpg,,TRUE, +N1,58850,sortie-5d12db93-139b-4575-a0c8-6ea5fa2e4381,https://biolit.fr/sorties/sortie-5d12db93-139b-4575-a0c8-6ea5fa2e4381/,BLANCHET SVT,,5/27/2021 0:00,14.0000000,16.0000000,48.650509000000,-4.272883000000,,Kerema pionte de guévroc,34591,observation-5d12db93-139b-4575-a0c8-6ea5fa2e4381,https://biolit.fr/observations/observation-5d12db93-139b-4575-a0c8-6ea5fa2e4381/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus_maenas-scaled.jpg,,TRUE, +N1,58850,sortie-5d12db93-139b-4575-a0c8-6ea5fa2e4381,https://biolit.fr/sorties/sortie-5d12db93-139b-4575-a0c8-6ea5fa2e4381/,BLANCHET SVT,,5/27/2021 0:00,14.0000000,16.0000000,48.650509000000,-4.272883000000,,Kerema pionte de guévroc,34593,observation-5d12db93-139b-4575-a0c8-6ea5fa2e4381-2,https://biolit.fr/observations/observation-5d12db93-139b-4575-a0c8-6ea5fa2e4381-2/,Ensis ensis,Couteau-sabre,,https://biolit.fr/wp-content/uploads/2023/07/couteau sabre-scaled.jpg,,TRUE, +N1,58850,sortie-5d12db93-139b-4575-a0c8-6ea5fa2e4381,https://biolit.fr/sorties/sortie-5d12db93-139b-4575-a0c8-6ea5fa2e4381/,BLANCHET SVT,,5/27/2021 0:00,14.0000000,16.0000000,48.650509000000,-4.272883000000,,Kerema pionte de guévroc,34595,observation-5d12db93-139b-4575-a0c8-6ea5fa2e4381-3,https://biolit.fr/observations/observation-5d12db93-139b-4575-a0c8-6ea5fa2e4381-3/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/mytilus edulis-scaled.jpg,,TRUE, +N1,58850,sortie-5d12db93-139b-4575-a0c8-6ea5fa2e4381,https://biolit.fr/sorties/sortie-5d12db93-139b-4575-a0c8-6ea5fa2e4381/,BLANCHET SVT,,5/27/2021 0:00,14.0000000,16.0000000,48.650509000000,-4.272883000000,,Kerema pionte de guévroc,34597,observation-5d12db93-139b-4575-a0c8-6ea5fa2e4381-4,https://biolit.fr/observations/observation-5d12db93-139b-4575-a0c8-6ea5fa2e4381-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina_littorea -scaled.jpg,,TRUE, +N1,58850,sortie-5d12db93-139b-4575-a0c8-6ea5fa2e4381,https://biolit.fr/sorties/sortie-5d12db93-139b-4575-a0c8-6ea5fa2e4381/,BLANCHET SVT,,5/27/2021 0:00,14.0000000,16.0000000,48.650509000000,-4.272883000000,,Kerema pionte de guévroc,34599,observation-5d12db93-139b-4575-a0c8-6ea5fa2e4381-5,https://biolit.fr/observations/observation-5d12db93-139b-4575-a0c8-6ea5fa2e4381-5/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/patella depressa-scaled.jpg,,TRUE, +N1,58850,sortie-5d12db93-139b-4575-a0c8-6ea5fa2e4381,https://biolit.fr/sorties/sortie-5d12db93-139b-4575-a0c8-6ea5fa2e4381/,BLANCHET SVT,,5/27/2021 0:00,14.0000000,16.0000000,48.650509000000,-4.272883000000,,Kerema pionte de guévroc,34601,observation-5d12db93-139b-4575-a0c8-6ea5fa2e4381-6,https://biolit.fr/observations/observation-5d12db93-139b-4575-a0c8-6ea5fa2e4381-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/anemone gemme-scaled.jpg,,FALSE, +N1,58851,sortie-7d55ae6d-f6ff-4620-b6f2-d76aa2b8e49e,https://biolit.fr/sorties/sortie-7d55ae6d-f6ff-4620-b6f2-d76aa2b8e49e/,BLANCHET SVT,,5/27/2021 0:00,14.0000000,17.0000000,48.648916000000,-4.27191400000,,pointe de Guévroc,34603,observation-7d55ae6d-f6ff-4620-b6f2-d76aa2b8e49e,https://biolit.fr/observations/observation-7d55ae6d-f6ff-4620-b6f2-d76aa2b8e49e/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/2023/07/Laminaire_lisse-scaled.jpg,,TRUE, +N1,58851,sortie-7d55ae6d-f6ff-4620-b6f2-d76aa2b8e49e,https://biolit.fr/sorties/sortie-7d55ae6d-f6ff-4620-b6f2-d76aa2b8e49e/,BLANCHET SVT,,5/27/2021 0:00,14.0000000,17.0000000,48.648916000000,-4.27191400000,,pointe de Guévroc,34605,observation-7d55ae6d-f6ff-4620-b6f2-d76aa2b8e49e-2,https://biolit.fr/observations/observation-7d55ae6d-f6ff-4620-b6f2-d76aa2b8e49e-2/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/Goélan argenté-scaled.jpg,,TRUE, +N1,58851,sortie-7d55ae6d-f6ff-4620-b6f2-d76aa2b8e49e,https://biolit.fr/sorties/sortie-7d55ae6d-f6ff-4620-b6f2-d76aa2b8e49e/,BLANCHET SVT,,5/27/2021 0:00,14.0000000,17.0000000,48.648916000000,-4.27191400000,,pointe de Guévroc,34607,observation-7d55ae6d-f6ff-4620-b6f2-d76aa2b8e49e-3,https://biolit.fr/observations/observation-7d55ae6d-f6ff-4620-b6f2-d76aa2b8e49e-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/crabe_vert_-scaled.jpg,,TRUE, +N1,58851,sortie-7d55ae6d-f6ff-4620-b6f2-d76aa2b8e49e,https://biolit.fr/sorties/sortie-7d55ae6d-f6ff-4620-b6f2-d76aa2b8e49e/,BLANCHET SVT,,5/27/2021 0:00,14.0000000,17.0000000,48.648916000000,-4.27191400000,,pointe de Guévroc,34608,observation-7d55ae6d-f6ff-4620-b6f2-d76aa2b8e49e-4,https://biolit.fr/observations/observation-7d55ae6d-f6ff-4620-b6f2-d76aa2b8e49e-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Actinia_fragacea-scaled.jpg,,TRUE, +N1,58852,sortie-7cec630a-1735-4b18-8a3b-5f8cbb549a7c,https://biolit.fr/sorties/sortie-7cec630a-1735-4b18-8a3b-5f8cbb549a7c/,BLANCHET SVT,,5/27/2021 0:00,14.0:25,16.0000000,48.649770000000,-4.272669000000,,dune de kerema pointe de guevroc,34610,observation-7cec630a-1735-4b18-8a3b-5f8cbb549a7c,https://biolit.fr/observations/observation-7cec630a-1735-4b18-8a3b-5f8cbb549a7c/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber-scaled.jpg,,TRUE, +N1,58852,sortie-7cec630a-1735-4b18-8a3b-5f8cbb549a7c,https://biolit.fr/sorties/sortie-7cec630a-1735-4b18-8a3b-5f8cbb549a7c/,BLANCHET SVT,,5/27/2021 0:00,14.0:25,16.0000000,48.649770000000,-4.272669000000,,dune de kerema pointe de guevroc,34611,observation-7cec630a-1735-4b18-8a3b-5f8cbb549a7c-2,https://biolit.fr/observations/observation-7cec630a-1735-4b18-8a3b-5f8cbb549a7c-2/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/2023/07/laminaire digitée-scaled.jpg,,TRUE, +N1,58852,sortie-7cec630a-1735-4b18-8a3b-5f8cbb549a7c,https://biolit.fr/sorties/sortie-7cec630a-1735-4b18-8a3b-5f8cbb549a7c/,BLANCHET SVT,,5/27/2021 0:00,14.0:25,16.0000000,48.649770000000,-4.272669000000,,dune de kerema pointe de guevroc,34613,observation-7cec630a-1735-4b18-8a3b-5f8cbb549a7c-3,https://biolit.fr/observations/observation-7cec630a-1735-4b18-8a3b-5f8cbb549a7c-3/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/cerastoderma edule-scaled.jpg,,TRUE, +N1,58852,sortie-7cec630a-1735-4b18-8a3b-5f8cbb549a7c,https://biolit.fr/sorties/sortie-7cec630a-1735-4b18-8a3b-5f8cbb549a7c/,BLANCHET SVT,,5/27/2021 0:00,14.0:25,16.0000000,48.649770000000,-4.272669000000,,dune de kerema pointe de guevroc,34615,observation-7cec630a-1735-4b18-8a3b-5f8cbb549a7c-4,https://biolit.fr/observations/observation-7cec630a-1735-4b18-8a3b-5f8cbb549a7c-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_0-scaled.jpg,,TRUE, +N1,58853,sortie-5c74bf53-51eb-49a8-a999-36fd4ed30e47,https://biolit.fr/sorties/sortie-5c74bf53-51eb-49a8-a999-36fd4ed30e47/,BLANCHET SVT,,5/27/2021 0:00,14.0:25,16.0000000,48.649503000000,-4.272003000000,,"tréflez ,Guievroc,kerema",34617,observation-5c74bf53-51eb-49a8-a999-36fd4ed30e47,https://biolit.fr/observations/observation-5c74bf53-51eb-49a8-a999-36fd4ed30e47/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas-scaled.jpg,,TRUE, +N1,58853,sortie-5c74bf53-51eb-49a8-a999-36fd4ed30e47,https://biolit.fr/sorties/sortie-5c74bf53-51eb-49a8-a999-36fd4ed30e47/,BLANCHET SVT,,5/27/2021 0:00,14.0:25,16.0000000,48.649503000000,-4.272003000000,,"tréflez ,Guievroc,kerema",34618,observation-5c74bf53-51eb-49a8-a999-36fd4ed30e47-2,https://biolit.fr/observations/observation-5c74bf53-51eb-49a8-a999-36fd4ed30e47-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma_edule-scaled.jpg,,FALSE, +N1,58853,sortie-5c74bf53-51eb-49a8-a999-36fd4ed30e47,https://biolit.fr/sorties/sortie-5c74bf53-51eb-49a8-a999-36fd4ed30e47/,BLANCHET SVT,,5/27/2021 0:00,14.0:25,16.0000000,48.649503000000,-4.272003000000,,"tréflez ,Guievroc,kerema",34620,observation-5c74bf53-51eb-49a8-a999-36fd4ed30e47-3,https://biolit.fr/observations/observation-5c74bf53-51eb-49a8-a999-36fd4ed30e47-3/,Ensis ensis,Couteau-sabre,,https://biolit.fr/wp-content/uploads/2023/07/couteau caummen-scaled.jpg,,TRUE, +N1,58853,sortie-5c74bf53-51eb-49a8-a999-36fd4ed30e47,https://biolit.fr/sorties/sortie-5c74bf53-51eb-49a8-a999-36fd4ed30e47/,BLANCHET SVT,,5/27/2021 0:00,14.0:25,16.0000000,48.649503000000,-4.272003000000,,"tréflez ,Guievroc,kerema",34622,observation-5c74bf53-51eb-49a8-a999-36fd4ed30e47-4,https://biolit.fr/observations/observation-5c74bf53-51eb-49a8-a999-36fd4ed30e47-4/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/patella depressa-scaled.jpg,,TRUE, +N1,58853,sortie-5c74bf53-51eb-49a8-a999-36fd4ed30e47,https://biolit.fr/sorties/sortie-5c74bf53-51eb-49a8-a999-36fd4ed30e47/,BLANCHET SVT,,5/27/2021 0:00,14.0:25,16.0000000,48.649503000000,-4.272003000000,,"tréflez ,Guievroc,kerema",34623,observation-5c74bf53-51eb-49a8-a999-36fd4ed30e47-5,https://biolit.fr/observations/observation-5c74bf53-51eb-49a8-a999-36fd4ed30e47-5/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Pisidia_longicornis-scaled.jpg,,TRUE, +N1,58854,sortie-09b8df85-8281-4644-a8dc-03d99714b18c,https://biolit.fr/sorties/sortie-09b8df85-8281-4644-a8dc-03d99714b18c/,BLANCHET SVT,,5/27/2021 0:00,14.0:25,16.0000000,48.649776000000,-4.2749000000,,Dunes de keremma/Pointe de Guévroc,34627,observation-09b8df85-8281-4644-a8dc-03d99714b18c,https://biolit.fr/observations/observation-09b8df85-8281-4644-a8dc-03d99714b18c/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus_maenas-scaled.jpg,,TRUE, +N1,58854,sortie-09b8df85-8281-4644-a8dc-03d99714b18c,https://biolit.fr/sorties/sortie-09b8df85-8281-4644-a8dc-03d99714b18c/,BLANCHET SVT,,5/27/2021 0:00,14.0:25,16.0000000,48.649776000000,-4.2749000000,,Dunes de keremma/Pointe de Guévroc,34628,observation-09b8df85-8281-4644-a8dc-03d99714b18c-2,https://biolit.fr/observations/observation-09b8df85-8281-4644-a8dc-03d99714b18c-2/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/2023/07/chaetogammarus_marinus-scaled.jpg,,TRUE, +N1,58854,sortie-09b8df85-8281-4644-a8dc-03d99714b18c,https://biolit.fr/sorties/sortie-09b8df85-8281-4644-a8dc-03d99714b18c/,BLANCHET SVT,,5/27/2021 0:00,14.0:25,16.0000000,48.649776000000,-4.2749000000,,Dunes de keremma/Pointe de Guévroc,34630,observation-09b8df85-8281-4644-a8dc-03d99714b18c-3,https://biolit.fr/observations/observation-09b8df85-8281-4644-a8dc-03d99714b18c-3/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/poisson_NI_1-scaled.jpg,,TRUE, +N1,58855,sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d,https://biolit.fr/sorties/sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d/,Guillaume LE BAIL,,06/07/2021,14.0000000,16.0000000,47.255648000000,-2.227688000000,,"Villès Martin , SAINT-NAZAIRE ,44600 ",34631,observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d,https://biolit.fr/observations/observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_170131[1].jpg,,TRUE, +N1,58855,sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d,https://biolit.fr/sorties/sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d/,Guillaume LE BAIL,,06/07/2021,14.0000000,16.0000000,47.255648000000,-2.227688000000,,"Villès Martin , SAINT-NAZAIRE ,44600 ",34633,observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-2,https://biolit.fr/observations/observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-2/,Hemigrapsus takanoi,Crabe à pinceaux de Takano,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_170345[1].jpg,,TRUE, +N1,58855,sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d,https://biolit.fr/sorties/sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d/,Guillaume LE BAIL,,06/07/2021,14.0000000,16.0000000,47.255648000000,-2.227688000000,,"Villès Martin , SAINT-NAZAIRE ,44600 ",34635,observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-3,https://biolit.fr/observations/observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_170732[1].jpg,,TRUE, +N1,58855,sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d,https://biolit.fr/sorties/sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d/,Guillaume LE BAIL,,06/07/2021,14.0000000,16.0000000,47.255648000000,-2.227688000000,,"Villès Martin , SAINT-NAZAIRE ,44600 ",34637,observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-4,https://biolit.fr/observations/observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-4/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_171446[1].jpg,,TRUE, +N1,58855,sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d,https://biolit.fr/sorties/sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d/,Guillaume LE BAIL,,06/07/2021,14.0000000,16.0000000,47.255648000000,-2.227688000000,,"Villès Martin , SAINT-NAZAIRE ,44600 ",34639,observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-5,https://biolit.fr/observations/observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-5/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_171744[1].jpg,,TRUE, +N1,58855,sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d,https://biolit.fr/sorties/sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d/,Guillaume LE BAIL,,06/07/2021,14.0000000,16.0000000,47.255648000000,-2.227688000000,,"Villès Martin , SAINT-NAZAIRE ,44600 ",34641,observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-6,https://biolit.fr/observations/observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-6/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_171846[1].jpg,,TRUE, +N1,58855,sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d,https://biolit.fr/sorties/sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d/,Guillaume LE BAIL,,06/07/2021,14.0000000,16.0000000,47.255648000000,-2.227688000000,,"Villès Martin , SAINT-NAZAIRE ,44600 ",34643,observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-7,https://biolit.fr/observations/observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-7/,Spergularia rupicola,Spergulaire des rochers,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_172421[1].jpg,,TRUE, +N1,58855,sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d,https://biolit.fr/sorties/sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d/,Guillaume LE BAIL,,06/07/2021,14.0000000,16.0000000,47.255648000000,-2.227688000000,,"Villès Martin , SAINT-NAZAIRE ,44600 ",34645,observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-8,https://biolit.fr/observations/observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-8/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_172438[1].jpg,,TRUE, +N1,58855,sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d,https://biolit.fr/sorties/sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d/,Guillaume LE BAIL,,06/07/2021,14.0000000,16.0000000,47.255648000000,-2.227688000000,,"Villès Martin , SAINT-NAZAIRE ,44600 ",34647,observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-9,https://biolit.fr/observations/observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-9/,Calystegia soldanella,Liseron des dunes,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_174338[1].jpg,,TRUE, +N1,58855,sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d,https://biolit.fr/sorties/sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d/,Guillaume LE BAIL,,06/07/2021,14.0000000,16.0000000,47.255648000000,-2.227688000000,,"Villès Martin , SAINT-NAZAIRE ,44600 ",34649,observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-10,https://biolit.fr/observations/observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-10/,Sedum acre,Orpin âcre,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_174425[1].jpg,,TRUE, +N1,58855,sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d,https://biolit.fr/sorties/sortie-28944515-c3fc-4f33-b767-cb0ff7cbfc5d/,Guillaume LE BAIL,,06/07/2021,14.0000000,16.0000000,47.255648000000,-2.227688000000,,"Villès Martin , SAINT-NAZAIRE ,44600 ",34651,observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-11,https://biolit.fr/observations/observation-28944515-c3fc-4f33-b767-cb0ff7cbfc5d-11/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_174506[1].jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34653,observation-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90/,Ensis ensis,Couteau-sabre,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_154827 (2)-scaled.jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34655,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-2,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-2/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_155435 (2)-scaled.jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34657,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-3,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-3/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_155729 (2)-scaled.jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34659,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-4,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-4/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_160453 (2)-scaled.jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34661,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-5,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-5/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_160658 (2)-scaled.jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34663,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-6,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-6/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_160908 (2)-scaled.jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34665,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-7,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-7/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_160945 (2)-scaled.jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34667,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-8,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-8/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_161239 (2)-scaled.jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34669,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-9,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-9/,Lutraria lutraria,Lutraire elliptique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_161343 (2)-scaled.jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34671,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-10,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-10/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_161505 (2)-scaled.jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34673,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-11,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-11/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_161535 (2)-scaled.jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34675,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-12,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-12/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_162050 (2)-scaled.jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34677,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-13,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-13/,Loligo spp.,Ponte de Calmar,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_162133 (2)-scaled.jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34679,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-14,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_162209 (2)-scaled.jpg,,FALSE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34681,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-15,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-15/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_162258 (2)-scaled.jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34683,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-16,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-16/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_162508 (2)-scaled.jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34685,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-17,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-17/,Anarhynchus alexandrinus,Pluvier à collier interrompu,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_164936 (2).jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34687,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-18,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-18/,Leymus arenarius,Élyme des sables,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_165025 (2)-scaled.jpg,,TRUE, +N1,58856,sortie-061dd60f-68c1-474e-88fe-2f5040e82a90,https://biolit.fr/sorties/sortie-061dd60f-68c1-474e-88fe-2f5040e82a90/,LAURENCE MARCON,,06/05/2021,15.0000000,18.0000000,49.298212000000,-0.302173000000,,"Hermanville sur Mer, plage",34689,observation-061dd60f-68c1-474e-88fe-2f5040e82a90-19,https://biolit.fr/observations/observation-061dd60f-68c1-474e-88fe-2f5040e82a90-19/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210605_171101 (2)-scaled.jpg,,TRUE, +N1,58857,sortie-16297a15-1630-48ea-8a6b-49a5348be52b,https://biolit.fr/sorties/sortie-16297a15-1630-48ea-8a6b-49a5348be52b/,L'île en bandoulière,,5/25/2021 0:00,12.0000000,13.0000000,46.688651000000,-2.332852000000,,"Anse des Fontaines, Ile d'Yeu",34691,observation-16297a15-1630-48ea-8a6b-49a5348be52b,https://biolit.fr/observations/observation-16297a15-1630-48ea-8a6b-49a5348be52b/,,,,https://biolit.fr/wp-content/uploads/2023/07/alguebleue-scaled.jpg,,FALSE, +N1,58857,sortie-16297a15-1630-48ea-8a6b-49a5348be52b,https://biolit.fr/sorties/sortie-16297a15-1630-48ea-8a6b-49a5348be52b/,L'île en bandoulière,,5/25/2021 0:00,12.0000000,13.0000000,46.688651000000,-2.332852000000,,"Anse des Fontaines, Ile d'Yeu",34693,observation-16297a15-1630-48ea-8a6b-49a5348be52b-2,https://biolit.fr/observations/observation-16297a15-1630-48ea-8a6b-49a5348be52b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5427-scaled.jpg,,FALSE, +N1,58857,sortie-16297a15-1630-48ea-8a6b-49a5348be52b,https://biolit.fr/sorties/sortie-16297a15-1630-48ea-8a6b-49a5348be52b/,L'île en bandoulière,,5/25/2021 0:00,12.0000000,13.0000000,46.688651000000,-2.332852000000,,"Anse des Fontaines, Ile d'Yeu",34695,observation-16297a15-1630-48ea-8a6b-49a5348be52b-3,https://biolit.fr/observations/observation-16297a15-1630-48ea-8a6b-49a5348be52b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5436.jpg,,FALSE, +N1,58858,sortie-26281b6f-37aa-4b4f-be6f-0ab9b101a336,https://biolit.fr/sorties/sortie-26281b6f-37aa-4b4f-be6f-0ab9b101a336/,BLANCHET SVT,,06/03/2021,14.0:15,16.0000000,48.649478000000,-4.27233100000,,Biolit.fr,34697,observation-26281b6f-37aa-4b4f-be6f-0ab9b101a336,https://biolit.fr/observations/observation-26281b6f-37aa-4b4f-be6f-0ab9b101a336/,,,,https://biolit.fr/wp-content/uploads/2023/07/bernar lermit -scaled.jpg,,FALSE, +N1,58858,sortie-26281b6f-37aa-4b4f-be6f-0ab9b101a336,https://biolit.fr/sorties/sortie-26281b6f-37aa-4b4f-be6f-0ab9b101a336/,BLANCHET SVT,,06/03/2021,14.0:15,16.0000000,48.649478000000,-4.27233100000,,Biolit.fr,34699,observation-26281b6f-37aa-4b4f-be6f-0ab9b101a336-2,https://biolit.fr/observations/observation-26281b6f-37aa-4b4f-be6f-0ab9b101a336-2/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/chiton. JPG.jpg,,TRUE, +N1,58858,sortie-26281b6f-37aa-4b4f-be6f-0ab9b101a336,https://biolit.fr/sorties/sortie-26281b6f-37aa-4b4f-be6f-0ab9b101a336/,BLANCHET SVT,,06/03/2021,14.0:15,16.0000000,48.649478000000,-4.27233100000,,Biolit.fr,34701,observation-26281b6f-37aa-4b4f-be6f-0ab9b101a336-3,https://biolit.fr/observations/observation-26281b6f-37aa-4b4f-be6f-0ab9b101a336-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Alevin_NI 2-scaled.jpg,,FALSE, +N1,58858,sortie-26281b6f-37aa-4b4f-be6f-0ab9b101a336,https://biolit.fr/sorties/sortie-26281b6f-37aa-4b4f-be6f-0ab9b101a336/,BLANCHET SVT,,06/03/2021,14.0:15,16.0000000,48.649478000000,-4.27233100000,,Biolit.fr,34703,observation-26281b6f-37aa-4b4f-be6f-0ab9b101a336-4,https://biolit.fr/observations/observation-26281b6f-37aa-4b4f-be6f-0ab9b101a336-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/crabe _ vert-scaled.jpg,,TRUE, +N1,58858,sortie-26281b6f-37aa-4b4f-be6f-0ab9b101a336,https://biolit.fr/sorties/sortie-26281b6f-37aa-4b4f-be6f-0ab9b101a336/,BLANCHET SVT,,06/03/2021,14.0:15,16.0000000,48.649478000000,-4.27233100000,,Biolit.fr,34705,observation-26281b6f-37aa-4b4f-be6f-0ab9b101a336-5,https://biolit.fr/observations/observation-26281b6f-37aa-4b4f-be6f-0ab9b101a336-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/caillou-scaled.jpg,,TRUE, +N1,58859,sortie-a85e69be-1816-4f79-ab98-a1c199f29809,https://biolit.fr/sorties/sortie-a85e69be-1816-4f79-ab98-a1c199f29809/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.648582000000,-4.268597000000,,dune de kerema pointe de Guévroc,34707,observation-a85e69be-1816-4f79-ab98-a1c199f29809,https://biolit.fr/observations/observation-a85e69be-1816-4f79-ab98-a1c199f29809/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidiella_ aspersa-scaled.jpg,,FALSE, +N1,58859,sortie-a85e69be-1816-4f79-ab98-a1c199f29809,https://biolit.fr/sorties/sortie-a85e69be-1816-4f79-ab98-a1c199f29809/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.648582000000,-4.268597000000,,dune de kerema pointe de Guévroc,34709,observation-a85e69be-1816-4f79-ab98-a1c199f29809-2,https://biolit.fr/observations/observation-a85e69be-1816-4f79-ab98-a1c199f29809-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/bernard-l'ermite_commun.jpg,,FALSE, +N1,58859,sortie-a85e69be-1816-4f79-ab98-a1c199f29809,https://biolit.fr/sorties/sortie-a85e69be-1816-4f79-ab98-a1c199f29809/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.648582000000,-4.268597000000,,dune de kerema pointe de Guévroc,34711,observation-a85e69be-1816-4f79-ab98-a1c199f29809-3,https://biolit.fr/observations/observation-a85e69be-1816-4f79-ab98-a1c199f29809-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/bigorneau_commun.jpg,,TRUE, +N1,58859,sortie-a85e69be-1816-4f79-ab98-a1c199f29809,https://biolit.fr/sorties/sortie-a85e69be-1816-4f79-ab98-a1c199f29809/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.648582000000,-4.268597000000,,dune de kerema pointe de Guévroc,34713,observation-a85e69be-1816-4f79-ab98-a1c199f29809-4,https://biolit.fr/observations/observation-a85e69be-1816-4f79-ab98-a1c199f29809-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/carcinus_maenas_0.jpg,,TRUE, +N1,58859,sortie-a85e69be-1816-4f79-ab98-a1c199f29809,https://biolit.fr/sorties/sortie-a85e69be-1816-4f79-ab98-a1c199f29809/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.648582000000,-4.268597000000,,dune de kerema pointe de Guévroc,34715,observation-a85e69be-1816-4f79-ab98-a1c199f29809-5,https://biolit.fr/observations/observation-a85e69be-1816-4f79-ab98-a1c199f29809-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/pagurus_bernhardus.jpg,,FALSE, +N1,58859,sortie-a85e69be-1816-4f79-ab98-a1c199f29809,https://biolit.fr/sorties/sortie-a85e69be-1816-4f79-ab98-a1c199f29809/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.648582000000,-4.268597000000,,dune de kerema pointe de Guévroc,34717,observation-a85e69be-1816-4f79-ab98-a1c199f29809-6,https://biolit.fr/observations/observation-a85e69be-1816-4f79-ab98-a1c199f29809-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/vers_ anneles.jpg,,FALSE, +N1,58859,sortie-a85e69be-1816-4f79-ab98-a1c199f29809,https://biolit.fr/sorties/sortie-a85e69be-1816-4f79-ab98-a1c199f29809/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.648582000000,-4.268597000000,,dune de kerema pointe de Guévroc,34719,observation-a85e69be-1816-4f79-ab98-a1c199f29809-7,https://biolit.fr/observations/observation-a85e69be-1816-4f79-ab98-a1c199f29809-7/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/patelle_communes.jpg,,TRUE, +N1,58860,sortie-801ca8e8-49cf-460a-9a31-f01c27680cf8,https://biolit.fr/sorties/sortie-801ca8e8-49cf-460a-9a31-f01c27680cf8/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.649762000000,-4.272320000000,,"Tréflez,Dune de Kerema pointe de Guèvroc",34721,observation-801ca8e8-49cf-460a-9a31-f01c27680cf8,https://biolit.fr/observations/observation-801ca8e8-49cf-460a-9a31-f01c27680cf8/,Pomatoschistus microps,Gobie tacheté,,https://biolit.fr/wp-content/uploads/2023/07/pomatoschistas_microps.jpg,,TRUE, +N1,58860,sortie-801ca8e8-49cf-460a-9a31-f01c27680cf8,https://biolit.fr/sorties/sortie-801ca8e8-49cf-460a-9a31-f01c27680cf8/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.649762000000,-4.272320000000,,"Tréflez,Dune de Kerema pointe de Guèvroc",34723,observation-801ca8e8-49cf-460a-9a31-f01c27680cf8-2,https://biolit.fr/observations/observation-801ca8e8-49cf-460a-9a31-f01c27680cf8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/poisson_N1.jpg,,FALSE, +N1,58860,sortie-801ca8e8-49cf-460a-9a31-f01c27680cf8,https://biolit.fr/sorties/sortie-801ca8e8-49cf-460a-9a31-f01c27680cf8/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.649762000000,-4.272320000000,,"Tréflez,Dune de Kerema pointe de Guèvroc",34725,observation-801ca8e8-49cf-460a-9a31-f01c27680cf8-3,https://biolit.fr/observations/observation-801ca8e8-49cf-460a-9a31-f01c27680cf8-3/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/patella_vulgata.jpg,,TRUE, +N1,58860,sortie-801ca8e8-49cf-460a-9a31-f01c27680cf8,https://biolit.fr/sorties/sortie-801ca8e8-49cf-460a-9a31-f01c27680cf8/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.649762000000,-4.272320000000,,"Tréflez,Dune de Kerema pointe de Guèvroc",34727,observation-801ca8e8-49cf-460a-9a31-f01c27680cf8-4,https://biolit.fr/observations/observation-801ca8e8-49cf-460a-9a31-f01c27680cf8-4/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/palaemon_elegans-scaled.jpg,,TRUE, +N1,58860,sortie-801ca8e8-49cf-460a-9a31-f01c27680cf8,https://biolit.fr/sorties/sortie-801ca8e8-49cf-460a-9a31-f01c27680cf8/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.649762000000,-4.272320000000,,"Tréflez,Dune de Kerema pointe de Guèvroc",34729,observation-801ca8e8-49cf-460a-9a31-f01c27680cf8-5,https://biolit.fr/observations/observation-801ca8e8-49cf-460a-9a31-f01c27680cf8-5/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/anemonia_sulcuta.jpg,,TRUE, +N1,58861,sortie-3747fa01-9710-4790-9e0e-dae40731279b,https://biolit.fr/sorties/sortie-3747fa01-9710-4790-9e0e-dae40731279b/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.650086000000,-4.272325000000,,dunes de Kerema,34735,observation-3747fa01-9710-4790-9e0e-dae40731279b-2,https://biolit.fr/observations/observation-3747fa01-9710-4790-9e0e-dae40731279b-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Monodonta_lineata1-scaled.jpg,,TRUE, +N1,58861,sortie-3747fa01-9710-4790-9e0e-dae40731279b,https://biolit.fr/sorties/sortie-3747fa01-9710-4790-9e0e-dae40731279b/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.650086000000,-4.272325000000,,dunes de Kerema,34737,observation-3747fa01-9710-4790-9e0e-dae40731279b-3,https://biolit.fr/observations/observation-3747fa01-9710-4790-9e0e-dae40731279b-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Monodonta_lineata2-scaled.jpg,,TRUE, +N1,58861,sortie-3747fa01-9710-4790-9e0e-dae40731279b,https://biolit.fr/sorties/sortie-3747fa01-9710-4790-9e0e-dae40731279b/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.650086000000,-4.272325000000,,dunes de Kerema,34739,observation-3747fa01-9710-4790-9e0e-dae40731279b-4,https://biolit.fr/observations/observation-3747fa01-9710-4790-9e0e-dae40731279b-4/,Liocarcinus vernalis,Etrille lisse,,https://biolit.fr/wp-content/uploads/2023/07/Necora_puber-scaled.jpg,,TRUE, +N1,58861,sortie-3747fa01-9710-4790-9e0e-dae40731279b,https://biolit.fr/sorties/sortie-3747fa01-9710-4790-9e0e-dae40731279b/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.650086000000,-4.272325000000,,dunes de Kerema,34741,observation-3747fa01-9710-4790-9e0e-dae40731279b-5,https://biolit.fr/observations/observation-3747fa01-9710-4790-9e0e-dae40731279b-5/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebra_erinacea-scaled.jpg,,TRUE, +N1,58862,sortie-903c8fed-3a57-4a25-ba29-4b50f3925c5c,https://biolit.fr/sorties/sortie-903c8fed-3a57-4a25-ba29-4b50f3925c5c/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.649818000000,-4.272380000000,,"Dune de keremma, Pointe de Guévroc",34743,observation-903c8fed-3a57-4a25-ba29-4b50f3925c5c,https://biolit.fr/observations/observation-903c8fed-3a57-4a25-ba29-4b50f3925c5c/,,,,https://biolit.fr/wp-content/uploads/2023/07/gobie_commun.JPG,,FALSE, +N1,58862,sortie-903c8fed-3a57-4a25-ba29-4b50f3925c5c,https://biolit.fr/sorties/sortie-903c8fed-3a57-4a25-ba29-4b50f3925c5c/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.649818000000,-4.272380000000,,"Dune de keremma, Pointe de Guévroc",34745,observation-903c8fed-3a57-4a25-ba29-4b50f3925c5c-2,https://biolit.fr/observations/observation-903c8fed-3a57-4a25-ba29-4b50f3925c5c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/isopode_NI.JPG,,FALSE, +N1,58862,sortie-903c8fed-3a57-4a25-ba29-4b50f3925c5c,https://biolit.fr/sorties/sortie-903c8fed-3a57-4a25-ba29-4b50f3925c5c/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.649818000000,-4.272380000000,,"Dune de keremma, Pointe de Guévroc",34747,observation-903c8fed-3a57-4a25-ba29-4b50f3925c5c-3,https://biolit.fr/observations/observation-903c8fed-3a57-4a25-ba29-4b50f3925c5c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidiella_aspersa.JPG,,FALSE, +N1,58862,sortie-903c8fed-3a57-4a25-ba29-4b50f3925c5c,https://biolit.fr/sorties/sortie-903c8fed-3a57-4a25-ba29-4b50f3925c5c/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.649818000000,-4.272380000000,,"Dune de keremma, Pointe de Guévroc",34749,observation-903c8fed-3a57-4a25-ba29-4b50f3925c5c-4,https://biolit.fr/observations/observation-903c8fed-3a57-4a25-ba29-4b50f3925c5c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/La motelle à 5 barbillon.JPG,,FALSE, +N1,58862,sortie-903c8fed-3a57-4a25-ba29-4b50f3925c5c,https://biolit.fr/sorties/sortie-903c8fed-3a57-4a25-ba29-4b50f3925c5c/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.649818000000,-4.272380000000,,"Dune de keremma, Pointe de Guévroc",34751,observation-903c8fed-3a57-4a25-ba29-4b50f3925c5c-5,https://biolit.fr/observations/observation-903c8fed-3a57-4a25-ba29-4b50f3925c5c-5/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/patelle_commune1-scaled.jpg,,TRUE, +N1,58862,sortie-903c8fed-3a57-4a25-ba29-4b50f3925c5c,https://biolit.fr/sorties/sortie-903c8fed-3a57-4a25-ba29-4b50f3925c5c/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.649818000000,-4.272380000000,,"Dune de keremma, Pointe de Guévroc",34753,observation-903c8fed-3a57-4a25-ba29-4b50f3925c5c-6,https://biolit.fr/observations/observation-903c8fed-3a57-4a25-ba29-4b50f3925c5c-6/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/patelle_commune2-scaled.jpg,,TRUE, +N1,58863,sortie-ce67e909-240e-4a78-a7f7-6c8184a399f2,https://biolit.fr/sorties/sortie-ce67e909-240e-4a78-a7f7-6c8184a399f2/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.649656000000,-4.272465000000,,"tréflez, dune de keremma, pointe de guévroc",34755,observation-ce67e909-240e-4a78-a7f7-6c8184a399f2,https://biolit.fr/observations/observation-ce67e909-240e-4a78-a7f7-6c8184a399f2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus_maenas1.JPG,,TRUE, +N1,58863,sortie-ce67e909-240e-4a78-a7f7-6c8184a399f2,https://biolit.fr/sorties/sortie-ce67e909-240e-4a78-a7f7-6c8184a399f2/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.649656000000,-4.272465000000,,"tréflez, dune de keremma, pointe de guévroc",34757,observation-ce67e909-240e-4a78-a7f7-6c8184a399f2-2,https://biolit.fr/observations/observation-ce67e909-240e-4a78-a7f7-6c8184a399f2-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus_maenas2.JPG,,TRUE, +N1,58863,sortie-ce67e909-240e-4a78-a7f7-6c8184a399f2,https://biolit.fr/sorties/sortie-ce67e909-240e-4a78-a7f7-6c8184a399f2/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.649656000000,-4.272465000000,,"tréflez, dune de keremma, pointe de guévroc",34759,observation-ce67e909-240e-4a78-a7f7-6c8184a399f2-3,https://biolit.fr/observations/observation-ce67e909-240e-4a78-a7f7-6c8184a399f2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crabe_NI (2).JPG,,FALSE, +N1,58863,sortie-ce67e909-240e-4a78-a7f7-6c8184a399f2,https://biolit.fr/sorties/sortie-ce67e909-240e-4a78-a7f7-6c8184a399f2/,BLANCHET SVT,,5/28/2021 0:00,14.0:15,16.0000000,48.649656000000,-4.272465000000,,"tréflez, dune de keremma, pointe de guévroc",34761,observation-ce67e909-240e-4a78-a7f7-6c8184a399f2-4,https://biolit.fr/observations/observation-ce67e909-240e-4a78-a7f7-6c8184a399f2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabe_NI-scaled.jpg,,FALSE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34763,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e/,Ammophila arenaria,Oyat,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0233-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34767,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-3,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-3/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/euphorbe maritime-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34769,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-4,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-4/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/euphorbe maritime2-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34771,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-5,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-5/,Phragmites australis,Roseau,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0239-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34775,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-7,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-7/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0242-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34777,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-8,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-8/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/chou marin-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34779,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-9,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-9/,Ammophila arenaria,Oyat,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0279-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34781,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-10,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-10/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0280-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34783,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-11,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-11/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/panicaut maritime-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34785,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-12,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-12/,Sedum acre,Orpin âcre,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0283-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34789,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-14,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/champignon1-scaled.jpg,,FALSE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34793,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-16,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-16/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/algue verte1-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34795,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-17,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-17/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/algue verte2-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34797,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-18,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-18/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/algue brune1-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34799,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-19,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-19/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/algue brune2-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34803,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-21,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-21/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/algues_0.JPG,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34804,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-22,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-22/,Ensis ensis,Couteau-sabre,,https://biolit.fr/wp-content/uploads/2023/07/couteau de mer-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34806,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-23,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-23/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Moule-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34807,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-24,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-24/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/coquillage1-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34809,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-25,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-25/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/coquillage2_0-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34811,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-26,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/coquillage3-scaled.jpg,,FALSE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34813,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-27,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-27/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/coquillage4-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34815,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-28,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-28/,Euspira catena,Natice porte-chaîne,,https://biolit.fr/wp-content/uploads/2023/07/coquillage5-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34817,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-29,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-29/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/coquillage6-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34819,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-30,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-30/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Bigorneau.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34820,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-31,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/arénicole-scaled.jpg,,FALSE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34822,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-32,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/hermelles1-scaled.jpg,,FALSE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34824,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-33,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-33/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0267-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34826,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-34,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-34/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/Oeuf de raie.PNG,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34827,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-35,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-35/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/oeuf de bulot-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34829,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-36,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-36/,Tritia reticulata,Ponte de nasse réticulée,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0245-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34831,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-37,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabe-scaled.jpg,,FALSE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34833,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-38,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-38/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/2023/07/talitre-scaled.jpg,,TRUE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34835,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-39,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-39/,,,,https://biolit.fr/wp-content/uploads/2023/07/insecte-scaled.jpg,,FALSE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34837,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-40,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-40/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabe2-scaled.jpg,,FALSE, +N1,58864,sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e,https://biolit.fr/sorties/sortie-d929f225-6e1e-4894-b22e-e2de73d8d64e/,guerindemanneville,,06/03/2021,8.0000000,12.0000000,49.424726000000,0.213626000000,,Honfleur,34839,observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-41,https://biolit.fr/observations/observation-d929f225-6e1e-4894-b22e-e2de73d8d64e-41/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/2023/07/Mouette rieuse.PNG,,TRUE, +N1,58865,sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b,https://biolit.fr/sorties/sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b/,LP Heinlex,,06/03/2021,9.0000000,11.0000000,47.254337000000,-2.248502000000,,"Saint-Nazaire, plage de Porcé",34840,observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b,https://biolit.fr/observations/observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1169-scaled.jpg,,TRUE, +N1,58865,sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b,https://biolit.fr/sorties/sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b/,LP Heinlex,,06/03/2021,9.0000000,11.0000000,47.254337000000,-2.248502000000,,"Saint-Nazaire, plage de Porcé",34842,observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-2,https://biolit.fr/observations/observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-2/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1168-scaled.jpg,,TRUE, +N1,58865,sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b,https://biolit.fr/sorties/sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b/,LP Heinlex,,06/03/2021,9.0000000,11.0000000,47.254337000000,-2.248502000000,,"Saint-Nazaire, plage de Porcé",34846,observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-4,https://biolit.fr/observations/observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1165-scaled.jpg | https://biolit.fr/wp-content/uploads/2021/06/IMG_1166_0-scaled-1-scaled.jpg,,FALSE, +N1,58865,sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b,https://biolit.fr/sorties/sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b/,LP Heinlex,,06/03/2021,9.0000000,11.0000000,47.254337000000,-2.248502000000,,"Saint-Nazaire, plage de Porcé",34848,observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-5,https://biolit.fr/observations/observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-5/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1164-scaled.jpg,,TRUE, +N1,58865,sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b,https://biolit.fr/sorties/sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b/,LP Heinlex,,06/03/2021,9.0000000,11.0000000,47.254337000000,-2.248502000000,,"Saint-Nazaire, plage de Porcé",34850,observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-6,https://biolit.fr/observations/observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-6/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_1163-scaled.jpg,,TRUE, +N1,58865,sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b,https://biolit.fr/sorties/sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b/,LP Heinlex,,06/03/2021,9.0000000,11.0000000,47.254337000000,-2.248502000000,,"Saint-Nazaire, plage de Porcé",34852,observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-7,https://biolit.fr/observations/observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-7/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_1161-scaled.jpg,,TRUE, +N1,58865,sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b,https://biolit.fr/sorties/sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b/,LP Heinlex,,06/03/2021,9.0000000,11.0000000,47.254337000000,-2.248502000000,,"Saint-Nazaire, plage de Porcé",34854,observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-8,https://biolit.fr/observations/observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-8/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_1160_0-scaled.jpg,,TRUE, +N1,58865,sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b,https://biolit.fr/sorties/sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b/,LP Heinlex,,06/03/2021,9.0000000,11.0000000,47.254337000000,-2.248502000000,,"Saint-Nazaire, plage de Porcé",34856,observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-9,https://biolit.fr/observations/observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1159-scaled.jpg,,FALSE, +N1,58865,sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b,https://biolit.fr/sorties/sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b/,LP Heinlex,,06/03/2021,9.0000000,11.0000000,47.254337000000,-2.248502000000,,"Saint-Nazaire, plage de Porcé",34858,observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-10,https://biolit.fr/observations/observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1158-scaled.jpg,,FALSE, +N1,58865,sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b,https://biolit.fr/sorties/sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b/,LP Heinlex,,06/03/2021,9.0000000,11.0000000,47.254337000000,-2.248502000000,,"Saint-Nazaire, plage de Porcé",34862,observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-12,https://biolit.fr/observations/observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-12/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1156-scaled.jpg,,TRUE, +N1,58865,sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b,https://biolit.fr/sorties/sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b/,LP Heinlex,,06/03/2021,9.0000000,11.0000000,47.254337000000,-2.248502000000,,"Saint-Nazaire, plage de Porcé",34864,observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-13,https://biolit.fr/observations/observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1154-scaled.jpg,,FALSE, +N1,58865,sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b,https://biolit.fr/sorties/sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b/,LP Heinlex,,06/03/2021,9.0000000,11.0000000,47.254337000000,-2.248502000000,,"Saint-Nazaire, plage de Porcé",34866,observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-14,https://biolit.fr/observations/observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1155-scaled.jpg,,FALSE, +N1,58865,sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b,https://biolit.fr/sorties/sortie-2c6d1738-09a1-4ef5-88c3-70272b935e8b/,LP Heinlex,,06/03/2021,9.0000000,11.0000000,47.254337000000,-2.248502000000,,"Saint-Nazaire, plage de Porcé",34868,observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-15,https://biolit.fr/observations/observation-2c6d1738-09a1-4ef5-88c3-70272b935e8b-15/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_1152-scaled.jpg,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34876,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/acanthochitona crinita_2.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34878,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-2,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_10.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34880,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-3,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/anemonia viridis_7.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34882,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-4,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-4/,Patella pellucida,Helcion,,https://biolit.fr/wp-content/uploads/2023/07/Ansates pelludica_1.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34884,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-5,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-5/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/Anthopleura balii_3.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34886,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-6,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-6/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/Aplysia sp.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34888,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-7,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/ascidies et bryo sp.PNG,,FALSE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34890,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-8,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-8/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_14.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34892,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-9,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-9/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/blennie sp_3.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34894,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-10,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-10/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_5.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34896,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-11,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-11/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Calliostoma zyziphinum_1.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34898,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-12,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-12/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_10.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34900,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-13,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-13/,Diodora graeca,Fissurelle,,https://biolit.fr/wp-content/uploads/2023/07/Diodora graeca_1.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34902,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-14,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-14/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/Doris pseudoargus pe_0.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34904,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-15,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-15/,Doris verrucosa,Doris verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/doris verrucosa pe.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34906,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-16,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_15.PNG,,FALSE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34908,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-17,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-17/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Eriphia verrucosa_4.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34910,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-18,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-18/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/Haliotis tuberculata_4.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34912,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-19,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-19/,Lepadogaster candolii,Porte-écuelle de Candolle,,https://biolit.fr/wp-content/uploads/2023/07/Lepadogaster candolii.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34914,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-20,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-20/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_9.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34916,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-21,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-21/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/Ligia oceanica_0.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34918,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-22,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-22/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_2.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34920,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-23,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-23/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_12.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34922,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-24,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-24/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/Melaraphes neritoides.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34924,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-25,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-25/,Ciliata mustela,Motelle à 5 barbillons,,https://biolit.fr/wp-content/uploads/2023/07/Mustela ciliata.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34926,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-26,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-26/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_7.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34928,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-27,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/non identifié_1.PNG,,FALSE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34930,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-28,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-28/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/Ophiotrix fragilis_2.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34932,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-29,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-29/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_3.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34934,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-30,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-30/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Patella ulyssiponensis_2.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34936,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-31,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-31/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_13.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34938,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-32,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-32/,Sphaeromatidae (famille),Sphéromiens,,https://biolit.fr/wp-content/uploads/2023/07/Sphaeromatidae_4.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34940,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-33,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/steromphola sp.PNG,,FALSE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34942,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-34,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-34/,Tricolia pullus,Phasianelle minuscule,,https://biolit.fr/wp-content/uploads/2023/07/Tricolia pulus.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34944,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-35,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-35/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/trivia monacha et arctica.PNG,,TRUE, +N1,58866,sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2,https://biolit.fr/sorties/sortie-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2/,Roman,,5/29/2021 0:00,13.0:45,16.0000000,47.619855000000,-3.422060000000,,Groix,34946,observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-36,https://biolit.fr/observations/observation-cca2eef0-d07a-4cab-92d6-0cfe6b832ea2-36/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_10.PNG,,TRUE, +N1,58867,sortie-84f4b0ce-881c-4c97-afdd-d0ef76018fc1,https://biolit.fr/sorties/sortie-84f4b0ce-881c-4c97-afdd-d0ef76018fc1/,Axel,,5/22/2021 0:00,17.0:45,18.0:35,43.32981600000,5.126725000000,,"Sausset-les-Pins, Anse du Grand Rouveau",34948,observation-84f4b0ce-881c-4c97-afdd-d0ef76018fc1,https://biolit.fr/observations/observation-84f4b0ce-881c-4c97-afdd-d0ef76018fc1/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_174913-scaled.jpg,,FALSE, +N1,58867,sortie-84f4b0ce-881c-4c97-afdd-d0ef76018fc1,https://biolit.fr/sorties/sortie-84f4b0ce-881c-4c97-afdd-d0ef76018fc1/,Axel,,5/22/2021 0:00,17.0:45,18.0:35,43.32981600000,5.126725000000,,"Sausset-les-Pins, Anse du Grand Rouveau",34950,observation-84f4b0ce-881c-4c97-afdd-d0ef76018fc1-2,https://biolit.fr/observations/observation-84f4b0ce-881c-4c97-afdd-d0ef76018fc1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_175051-scaled.jpg,,FALSE, +N1,58867,sortie-84f4b0ce-881c-4c97-afdd-d0ef76018fc1,https://biolit.fr/sorties/sortie-84f4b0ce-881c-4c97-afdd-d0ef76018fc1/,Axel,,5/22/2021 0:00,17.0:45,18.0:35,43.32981600000,5.126725000000,,"Sausset-les-Pins, Anse du Grand Rouveau",34952,observation-84f4b0ce-881c-4c97-afdd-d0ef76018fc1-3,https://biolit.fr/observations/observation-84f4b0ce-881c-4c97-afdd-d0ef76018fc1-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_175337-scaled.jpg,,FALSE, +N1,58867,sortie-84f4b0ce-881c-4c97-afdd-d0ef76018fc1,https://biolit.fr/sorties/sortie-84f4b0ce-881c-4c97-afdd-d0ef76018fc1/,Axel,,5/22/2021 0:00,17.0:45,18.0:35,43.32981600000,5.126725000000,,"Sausset-les-Pins, Anse du Grand Rouveau",34954,observation-84f4b0ce-881c-4c97-afdd-d0ef76018fc1-4,https://biolit.fr/observations/observation-84f4b0ce-881c-4c97-afdd-d0ef76018fc1-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_175433-scaled.jpg,,FALSE, +N1,58867,sortie-84f4b0ce-881c-4c97-afdd-d0ef76018fc1,https://biolit.fr/sorties/sortie-84f4b0ce-881c-4c97-afdd-d0ef76018fc1/,Axel,,5/22/2021 0:00,17.0:45,18.0:35,43.32981600000,5.126725000000,,"Sausset-les-Pins, Anse du Grand Rouveau",34956,observation-84f4b0ce-881c-4c97-afdd-d0ef76018fc1-5,https://biolit.fr/observations/observation-84f4b0ce-881c-4c97-afdd-d0ef76018fc1-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_175626-scaled.jpg,,FALSE, +N1,58867,sortie-84f4b0ce-881c-4c97-afdd-d0ef76018fc1,https://biolit.fr/sorties/sortie-84f4b0ce-881c-4c97-afdd-d0ef76018fc1/,Axel,,5/22/2021 0:00,17.0:45,18.0:35,43.32981600000,5.126725000000,,"Sausset-les-Pins, Anse du Grand Rouveau",34958,observation-84f4b0ce-881c-4c97-afdd-d0ef76018fc1-6,https://biolit.fr/observations/observation-84f4b0ce-881c-4c97-afdd-d0ef76018fc1-6/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_180238-scaled.jpg,,TRUE, +N1,58867,sortie-84f4b0ce-881c-4c97-afdd-d0ef76018fc1,https://biolit.fr/sorties/sortie-84f4b0ce-881c-4c97-afdd-d0ef76018fc1/,Axel,,5/22/2021 0:00,17.0:45,18.0:35,43.32981600000,5.126725000000,,"Sausset-les-Pins, Anse du Grand Rouveau",34960,observation-84f4b0ce-881c-4c97-afdd-d0ef76018fc1-7,https://biolit.fr/observations/observation-84f4b0ce-881c-4c97-afdd-d0ef76018fc1-7/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210522_183517-scaled.jpg,,TRUE, +N1,58868,sortie-f5a00958-64d2-492e-bc7f-0525b5f7063d,https://biolit.fr/sorties/sortie-f5a00958-64d2-492e-bc7f-0525b5f7063d/,Thomas DIEUZEIDE,,5/22/2021 0:00,12.0:15,12.0:45,43.663077000000,-1.443947000000,,Hossegor plage centrale,34962,observation-f5a00958-64d2-492e-bc7f-0525b5f7063d,https://biolit.fr/observations/observation-f5a00958-64d2-492e-bc7f-0525b5f7063d/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/13 S.Officinalis.jpg,,TRUE, +N1,58868,sortie-f5a00958-64d2-492e-bc7f-0525b5f7063d,https://biolit.fr/sorties/sortie-f5a00958-64d2-492e-bc7f-0525b5f7063d/,Thomas DIEUZEIDE,,5/22/2021 0:00,12.0:15,12.0:45,43.663077000000,-1.443947000000,,Hossegor plage centrale,34964,observation-f5a00958-64d2-492e-bc7f-0525b5f7063d-2,https://biolit.fr/observations/observation-f5a00958-64d2-492e-bc7f-0525b5f7063d-2/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/14 S.Officinalis.jpg,,TRUE, +N1,58868,sortie-f5a00958-64d2-492e-bc7f-0525b5f7063d,https://biolit.fr/sorties/sortie-f5a00958-64d2-492e-bc7f-0525b5f7063d/,Thomas DIEUZEIDE,,5/22/2021 0:00,12.0:15,12.0:45,43.663077000000,-1.443947000000,,Hossegor plage centrale,34966,observation-f5a00958-64d2-492e-bc7f-0525b5f7063d-3,https://biolit.fr/observations/observation-f5a00958-64d2-492e-bc7f-0525b5f7063d-3/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/15 S.Officinalis.jpg,,TRUE, +N1,58869,sortie-951ce66d-5d5d-4ddb-a184-f8ff0d8e41c6,https://biolit.fr/sorties/sortie-951ce66d-5d5d-4ddb-a184-f8ff0d8e41c6/,Thomas DIEUZEIDE,,05/06/2021,9.0000000,11.0000000,43.663574000000,-1.431244000000,,Hossegor Lac marin,34968,observation-951ce66d-5d5d-4ddb-a184-f8ff0d8e41c6,https://biolit.fr/observations/observation-951ce66d-5d5d-4ddb-a184-f8ff0d8e41c6/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/11 Crabe vert Atlantique 1.jpg,,TRUE, +N1,58869,sortie-951ce66d-5d5d-4ddb-a184-f8ff0d8e41c6,https://biolit.fr/sorties/sortie-951ce66d-5d5d-4ddb-a184-f8ff0d8e41c6/,Thomas DIEUZEIDE,,05/06/2021,9.0000000,11.0000000,43.663574000000,-1.431244000000,,Hossegor Lac marin,34970,observation-951ce66d-5d5d-4ddb-a184-f8ff0d8e41c6-2,https://biolit.fr/observations/observation-951ce66d-5d5d-4ddb-a184-f8ff0d8e41c6-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/10 Crabe vert Atlantique 2.jpg,,TRUE, +N1,58870,sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58,https://biolit.fr/sorties/sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58/,patrick.caillon,,5/22/2021 0:00,17.0000000,18.0000000,46.829979000000,-2.145033000000,,Notre dame des monts,34972,observation-34c26d0e-bea6-443c-8b66-89c9970b5d58,https://biolit.fr/observations/observation-34c26d0e-bea6-443c-8b66-89c9970b5d58/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4256-min-scaled.jpg,,FALSE, +N1,58870,sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58,https://biolit.fr/sorties/sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58/,patrick.caillon,,5/22/2021 0:00,17.0000000,18.0000000,46.829979000000,-2.145033000000,,Notre dame des monts,34974,observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-2,https://biolit.fr/observations/observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4257-min-scaled.jpg,,FALSE, +N1,58870,sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58,https://biolit.fr/sorties/sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58/,patrick.caillon,,5/22/2021 0:00,17.0000000,18.0000000,46.829979000000,-2.145033000000,,Notre dame des monts,34976,observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-3,https://biolit.fr/observations/observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-3/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4258-min-scaled.jpg,,TRUE, +N1,58870,sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58,https://biolit.fr/sorties/sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58/,patrick.caillon,,5/22/2021 0:00,17.0000000,18.0000000,46.829979000000,-2.145033000000,,Notre dame des monts,34978,observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-4,https://biolit.fr/observations/observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4259-min-scaled.jpg,,FALSE, +N1,58870,sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58,https://biolit.fr/sorties/sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58/,patrick.caillon,,5/22/2021 0:00,17.0000000,18.0000000,46.829979000000,-2.145033000000,,Notre dame des monts,34980,observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-5,https://biolit.fr/observations/observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4260-min-scaled.jpg,,FALSE, +N1,58870,sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58,https://biolit.fr/sorties/sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58/,patrick.caillon,,5/22/2021 0:00,17.0000000,18.0000000,46.829979000000,-2.145033000000,,Notre dame des monts,34982,observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-6,https://biolit.fr/observations/observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4261-min-scaled.jpg,,FALSE, +N1,58870,sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58,https://biolit.fr/sorties/sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58/,patrick.caillon,,5/22/2021 0:00,17.0000000,18.0000000,46.829979000000,-2.145033000000,,Notre dame des monts,34984,observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-7,https://biolit.fr/observations/observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4262-min-scaled.jpg,,FALSE, +N1,58870,sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58,https://biolit.fr/sorties/sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58/,patrick.caillon,,5/22/2021 0:00,17.0000000,18.0000000,46.829979000000,-2.145033000000,,Notre dame des monts,34986,observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-8,https://biolit.fr/observations/observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-8/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4263-min-scaled.jpg,,TRUE, +N1,58870,sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58,https://biolit.fr/sorties/sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58/,patrick.caillon,,5/22/2021 0:00,17.0000000,18.0000000,46.829979000000,-2.145033000000,,Notre dame des monts,34988,observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-9,https://biolit.fr/observations/observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4264-min-scaled.jpg,,FALSE, +N1,58870,sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58,https://biolit.fr/sorties/sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58/,patrick.caillon,,5/22/2021 0:00,17.0000000,18.0000000,46.829979000000,-2.145033000000,,Notre dame des monts,34990,observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-10,https://biolit.fr/observations/observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-10/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4265-min-scaled.jpg,,TRUE, +N1,58870,sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58,https://biolit.fr/sorties/sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58/,patrick.caillon,,5/22/2021 0:00,17.0000000,18.0000000,46.829979000000,-2.145033000000,,Notre dame des monts,34992,observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-11,https://biolit.fr/observations/observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4266-min-scaled.jpg,,FALSE, +N1,58870,sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58,https://biolit.fr/sorties/sortie-34c26d0e-bea6-443c-8b66-89c9970b5d58/,patrick.caillon,,5/22/2021 0:00,17.0000000,18.0000000,46.829979000000,-2.145033000000,,Notre dame des monts,34994,observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-12,https://biolit.fr/observations/observation-34c26d0e-bea6-443c-8b66-89c9970b5d58-12/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4267-min-scaled.jpg,,TRUE, +N1,58871,sortie-1db65452-cf0e-48fc-9b9b-31247a772b57,https://biolit.fr/sorties/sortie-1db65452-cf0e-48fc-9b9b-31247a772b57/,LPO Occitanie (délégation Hérault),,5/22/2021 0:00,10.0000000,11.0000000,43.463171000000,3.82263500000,CPIE Littoral d'Occitanie,Plage des Aresquiers,34996,observation-1db65452-cf0e-48fc-9b9b-31247a772b57,https://biolit.fr/observations/observation-1db65452-cf0e-48fc-9b9b-31247a772b57/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210522_114236_1.jpg,,FALSE, +N1,58871,sortie-1db65452-cf0e-48fc-9b9b-31247a772b57,https://biolit.fr/sorties/sortie-1db65452-cf0e-48fc-9b9b-31247a772b57/,LPO Occitanie (délégation Hérault),,5/22/2021 0:00,10.0000000,11.0000000,43.463171000000,3.82263500000,CPIE Littoral d'Occitanie,Plage des Aresquiers,34998,observation-1db65452-cf0e-48fc-9b9b-31247a772b57-2,https://biolit.fr/observations/observation-1db65452-cf0e-48fc-9b9b-31247a772b57-2/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/20210522_114251_1.jpg,,TRUE, +N1,58871,sortie-1db65452-cf0e-48fc-9b9b-31247a772b57,https://biolit.fr/sorties/sortie-1db65452-cf0e-48fc-9b9b-31247a772b57/,LPO Occitanie (délégation Hérault),,5/22/2021 0:00,10.0000000,11.0000000,43.463171000000,3.82263500000,CPIE Littoral d'Occitanie,Plage des Aresquiers,35000,observation-1db65452-cf0e-48fc-9b9b-31247a772b57-3,https://biolit.fr/observations/observation-1db65452-cf0e-48fc-9b9b-31247a772b57-3/,Aporrhais serresiana,Pied de pélican de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/20210522_114301_1.jpg,,TRUE, +N1,58871,sortie-1db65452-cf0e-48fc-9b9b-31247a772b57,https://biolit.fr/sorties/sortie-1db65452-cf0e-48fc-9b9b-31247a772b57/,LPO Occitanie (délégation Hérault),,5/22/2021 0:00,10.0000000,11.0000000,43.463171000000,3.82263500000,CPIE Littoral d'Occitanie,Plage des Aresquiers,35002,observation-1db65452-cf0e-48fc-9b9b-31247a772b57-4,https://biolit.fr/observations/observation-1db65452-cf0e-48fc-9b9b-31247a772b57-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210522_114309_1.jpg,,FALSE, +N1,58871,sortie-1db65452-cf0e-48fc-9b9b-31247a772b57,https://biolit.fr/sorties/sortie-1db65452-cf0e-48fc-9b9b-31247a772b57/,LPO Occitanie (délégation Hérault),,5/22/2021 0:00,10.0000000,11.0000000,43.463171000000,3.82263500000,CPIE Littoral d'Occitanie,Plage des Aresquiers,35004,observation-1db65452-cf0e-48fc-9b9b-31247a772b57-5,https://biolit.fr/observations/observation-1db65452-cf0e-48fc-9b9b-31247a772b57-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210522_114316_1.jpg,,FALSE, +N1,58871,sortie-1db65452-cf0e-48fc-9b9b-31247a772b57,https://biolit.fr/sorties/sortie-1db65452-cf0e-48fc-9b9b-31247a772b57/,LPO Occitanie (délégation Hérault),,5/22/2021 0:00,10.0000000,11.0000000,43.463171000000,3.82263500000,CPIE Littoral d'Occitanie,Plage des Aresquiers,35006,observation-1db65452-cf0e-48fc-9b9b-31247a772b57-6,https://biolit.fr/observations/observation-1db65452-cf0e-48fc-9b9b-31247a772b57-6/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/20210522_114326_1.jpg,,TRUE, +N1,58871,sortie-1db65452-cf0e-48fc-9b9b-31247a772b57,https://biolit.fr/sorties/sortie-1db65452-cf0e-48fc-9b9b-31247a772b57/,LPO Occitanie (délégation Hérault),,5/22/2021 0:00,10.0000000,11.0000000,43.463171000000,3.82263500000,CPIE Littoral d'Occitanie,Plage des Aresquiers,35008,observation-1db65452-cf0e-48fc-9b9b-31247a772b57-7,https://biolit.fr/observations/observation-1db65452-cf0e-48fc-9b9b-31247a772b57-7/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/2023/07/20210522_114330.jpg,,TRUE, +N1,58871,sortie-1db65452-cf0e-48fc-9b9b-31247a772b57,https://biolit.fr/sorties/sortie-1db65452-cf0e-48fc-9b9b-31247a772b57/,LPO Occitanie (délégation Hérault),,5/22/2021 0:00,10.0000000,11.0000000,43.463171000000,3.82263500000,CPIE Littoral d'Occitanie,Plage des Aresquiers,35010,observation-1db65452-cf0e-48fc-9b9b-31247a772b57-8,https://biolit.fr/observations/observation-1db65452-cf0e-48fc-9b9b-31247a772b57-8/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/2023/07/20210522_114341.jpg,,TRUE, +N1,58871,sortie-1db65452-cf0e-48fc-9b9b-31247a772b57,https://biolit.fr/sorties/sortie-1db65452-cf0e-48fc-9b9b-31247a772b57/,LPO Occitanie (délégation Hérault),,5/22/2021 0:00,10.0000000,11.0000000,43.463171000000,3.82263500000,CPIE Littoral d'Occitanie,Plage des Aresquiers,35012,observation-1db65452-cf0e-48fc-9b9b-31247a772b57-9,https://biolit.fr/observations/observation-1db65452-cf0e-48fc-9b9b-31247a772b57-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210522_114346.jpg,,FALSE, +N1,58871,sortie-1db65452-cf0e-48fc-9b9b-31247a772b57,https://biolit.fr/sorties/sortie-1db65452-cf0e-48fc-9b9b-31247a772b57/,LPO Occitanie (délégation Hérault),,5/22/2021 0:00,10.0000000,11.0000000,43.463171000000,3.82263500000,CPIE Littoral d'Occitanie,Plage des Aresquiers,35014,observation-1db65452-cf0e-48fc-9b9b-31247a772b57-10,https://biolit.fr/observations/observation-1db65452-cf0e-48fc-9b9b-31247a772b57-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210522_114353.jpg,,FALSE, +N1,58871,sortie-1db65452-cf0e-48fc-9b9b-31247a772b57,https://biolit.fr/sorties/sortie-1db65452-cf0e-48fc-9b9b-31247a772b57/,LPO Occitanie (délégation Hérault),,5/22/2021 0:00,10.0000000,11.0000000,43.463171000000,3.82263500000,CPIE Littoral d'Occitanie,Plage des Aresquiers,35016,observation-1db65452-cf0e-48fc-9b9b-31247a772b57-11,https://biolit.fr/observations/observation-1db65452-cf0e-48fc-9b9b-31247a772b57-11/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/20210522_114402.jpg,,TRUE, +N1,58871,sortie-1db65452-cf0e-48fc-9b9b-31247a772b57,https://biolit.fr/sorties/sortie-1db65452-cf0e-48fc-9b9b-31247a772b57/,LPO Occitanie (délégation Hérault),,5/22/2021 0:00,10.0000000,11.0000000,43.463171000000,3.82263500000,CPIE Littoral d'Occitanie,Plage des Aresquiers,35018,observation-1db65452-cf0e-48fc-9b9b-31247a772b57-12,https://biolit.fr/observations/observation-1db65452-cf0e-48fc-9b9b-31247a772b57-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210522_114413.jpg,,FALSE, +N1,58871,sortie-1db65452-cf0e-48fc-9b9b-31247a772b57,https://biolit.fr/sorties/sortie-1db65452-cf0e-48fc-9b9b-31247a772b57/,LPO Occitanie (délégation Hérault),,5/22/2021 0:00,10.0000000,11.0000000,43.463171000000,3.82263500000,CPIE Littoral d'Occitanie,Plage des Aresquiers,35020,observation-1db65452-cf0e-48fc-9b9b-31247a772b57-13,https://biolit.fr/observations/observation-1db65452-cf0e-48fc-9b9b-31247a772b57-13/,Pecten jacobaeus,Coquille Saint-Jacques de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/20210522_114423.jpg,,TRUE, +N1,58872,sortie-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124,https://biolit.fr/sorties/sortie-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124/,AléaNature,,5/24/2021 0:00,15.0000000,17.0000000,47.132498000000,-2.241035000000,,l'Anse du Sud,35022,observation-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124,https://biolit.fr/observations/observation-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210510_121228487_HDR-scaled.jpg,,TRUE, +N1,58872,sortie-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124,https://biolit.fr/sorties/sortie-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124/,AléaNature,,5/24/2021 0:00,15.0000000,17.0000000,47.132498000000,-2.241035000000,,l'Anse du Sud,35024,observation-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124-2,https://biolit.fr/observations/observation-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124-2/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210510_112655471-scaled.jpg,,TRUE, +N1,58872,sortie-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124,https://biolit.fr/sorties/sortie-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124/,AléaNature,,5/24/2021 0:00,15.0000000,17.0000000,47.132498000000,-2.241035000000,,l'Anse du Sud,35026,observation-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124-3,https://biolit.fr/observations/observation-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210510_122422942_HDR-scaled.jpg,,FALSE, +N1,58872,sortie-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124,https://biolit.fr/sorties/sortie-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124/,AléaNature,,5/24/2021 0:00,15.0000000,17.0000000,47.132498000000,-2.241035000000,,l'Anse du Sud,35028,observation-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124-4,https://biolit.fr/observations/observation-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210510_124034621-scaled.jpg,,FALSE, +N1,58872,sortie-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124,https://biolit.fr/sorties/sortie-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124/,AléaNature,,5/24/2021 0:00,15.0000000,17.0000000,47.132498000000,-2.241035000000,,l'Anse du Sud,35030,observation-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124-5,https://biolit.fr/observations/observation-c5c7dd5b-54b3-4ed7-97ee-98b3f8bdc124-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210511_122337065_HDR-scaled.jpg,,TRUE, +N1,58873,sortie-bb15205b-0380-4cd9-9754-fbd56362dc16,https://biolit.fr/sorties/sortie-bb15205b-0380-4cd9-9754-fbd56362dc16/,Olivier BILLON,,5/21/2021 0:00,10.0000000,12.0000000,43.775820000000,-1.418219000000,,plage de Soustons,35032,observation-bb15205b-0380-4cd9-9754-fbd56362dc16,https://biolit.fr/observations/observation-bb15205b-0380-4cd9-9754-fbd56362dc16/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7474_blanches_inconnues-scaled.jpg,,FALSE, +N1,58873,sortie-bb15205b-0380-4cd9-9754-fbd56362dc16,https://biolit.fr/sorties/sortie-bb15205b-0380-4cd9-9754-fbd56362dc16/,Olivier BILLON,,5/21/2021 0:00,10.0000000,12.0000000,43.775820000000,-1.418219000000,,plage de Soustons,35034,observation-bb15205b-0380-4cd9-9754-fbd56362dc16-2,https://biolit.fr/observations/observation-bb15205b-0380-4cd9-9754-fbd56362dc16-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7476_clam-scaled.jpg,,FALSE, +N1,58873,sortie-bb15205b-0380-4cd9-9754-fbd56362dc16,https://biolit.fr/sorties/sortie-bb15205b-0380-4cd9-9754-fbd56362dc16/,Olivier BILLON,,5/21/2021 0:00,10.0000000,12.0000000,43.775820000000,-1.418219000000,,plage de Soustons,35038,observation-bb15205b-0380-4cd9-9754-fbd56362dc16-4,https://biolit.fr/observations/observation-bb15205b-0380-4cd9-9754-fbd56362dc16-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7479_corail2-scaled.jpg | https://biolit.fr/wp-content/uploads/2021/05/IMG_7478_corail1-scaled-1.jpg,,FALSE, +N1,58873,sortie-bb15205b-0380-4cd9-9754-fbd56362dc16,https://biolit.fr/sorties/sortie-bb15205b-0380-4cd9-9754-fbd56362dc16/,Olivier BILLON,,5/21/2021 0:00,10.0000000,12.0000000,43.775820000000,-1.418219000000,,plage de Soustons,35040,observation-bb15205b-0380-4cd9-9754-fbd56362dc16-5,https://biolit.fr/observations/observation-bb15205b-0380-4cd9-9754-fbd56362dc16-5/,Anthemis maritima,Anthémis maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7480_anthemis_tomentosa-scaled.jpg,,TRUE, +N1,58873,sortie-bb15205b-0380-4cd9-9754-fbd56362dc16,https://biolit.fr/sorties/sortie-bb15205b-0380-4cd9-9754-fbd56362dc16/,Olivier BILLON,,5/21/2021 0:00,10.0000000,12.0000000,43.775820000000,-1.418219000000,,plage de Soustons,35042,observation-bb15205b-0380-4cd9-9754-fbd56362dc16-6,https://biolit.fr/observations/observation-bb15205b-0380-4cd9-9754-fbd56362dc16-6/,Calystegia soldanella,Liseron des dunes,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7482_calystegia_soldanella.JPG,,TRUE, +N1,58873,sortie-bb15205b-0380-4cd9-9754-fbd56362dc16,https://biolit.fr/sorties/sortie-bb15205b-0380-4cd9-9754-fbd56362dc16/,Olivier BILLON,,5/21/2021 0:00,10.0000000,12.0000000,43.775820000000,-1.418219000000,,plage de Soustons,35044,observation-bb15205b-0380-4cd9-9754-fbd56362dc16-7,https://biolit.fr/observations/observation-bb15205b-0380-4cd9-9754-fbd56362dc16-7/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7484_eryngium_maritimum-scaled.jpg,,TRUE, +N1,58873,sortie-bb15205b-0380-4cd9-9754-fbd56362dc16,https://biolit.fr/sorties/sortie-bb15205b-0380-4cd9-9754-fbd56362dc16/,Olivier BILLON,,5/21/2021 0:00,10.0000000,12.0000000,43.775820000000,-1.418219000000,,plage de Soustons,35046,observation-bb15205b-0380-4cd9-9754-fbd56362dc16-8,https://biolit.fr/observations/observation-bb15205b-0380-4cd9-9754-fbd56362dc16-8/,Yucca gloriosa,Yucca,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7485_yucca_gloriosa-scaled.jpg,,TRUE, +N1,58873,sortie-bb15205b-0380-4cd9-9754-fbd56362dc16,https://biolit.fr/sorties/sortie-bb15205b-0380-4cd9-9754-fbd56362dc16/,Olivier BILLON,,5/21/2021 0:00,10.0000000,12.0000000,43.775820000000,-1.418219000000,,plage de Soustons,35048,observation-bb15205b-0380-4cd9-9754-fbd56362dc16-9,https://biolit.fr/observations/observation-bb15205b-0380-4cd9-9754-fbd56362dc16-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7486_tamaris-scaled.jpg,,FALSE, +N1,58873,sortie-bb15205b-0380-4cd9-9754-fbd56362dc16,https://biolit.fr/sorties/sortie-bb15205b-0380-4cd9-9754-fbd56362dc16/,Olivier BILLON,,5/21/2021 0:00,10.0000000,12.0000000,43.775820000000,-1.418219000000,,plage de Soustons,35050,observation-bb15205b-0380-4cd9-9754-fbd56362dc16-10,https://biolit.fr/observations/observation-bb15205b-0380-4cd9-9754-fbd56362dc16-10/,Limbarda crithmoides,Inule fausse criste,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7487_immortelles-scaled.jpg,,TRUE, +N1,58874,sortie-d782886d-7c4a-47bf-978d-c42c638d4687,https://biolit.fr/sorties/sortie-d782886d-7c4a-47bf-978d-c42c638d4687/,Olivier BILLON,,5/21/2021 0:00,10.0000000,12.0000000,43.776401000000,-1.411224000000,,Lac marin de Soustons,35052,observation-d782886d-7c4a-47bf-978d-c42c638d4687,https://biolit.fr/observations/observation-d782886d-7c4a-47bf-978d-c42c638d4687/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7465_clam.JPG,,FALSE, +N1,58874,sortie-d782886d-7c4a-47bf-978d-c42c638d4687,https://biolit.fr/sorties/sortie-d782886d-7c4a-47bf-978d-c42c638d4687/,Olivier BILLON,,5/21/2021 0:00,10.0000000,12.0000000,43.776401000000,-1.411224000000,,Lac marin de Soustons,35054,observation-d782886d-7c4a-47bf-978d-c42c638d4687-2,https://biolit.fr/observations/observation-d782886d-7c4a-47bf-978d-c42c638d4687-2/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7466_algue_verte-scaled.jpg,,TRUE, +N1,58874,sortie-d782886d-7c4a-47bf-978d-c42c638d4687,https://biolit.fr/sorties/sortie-d782886d-7c4a-47bf-978d-c42c638d4687/,Olivier BILLON,,5/21/2021 0:00,10.0000000,12.0000000,43.776401000000,-1.411224000000,,Lac marin de Soustons,35056,observation-d782886d-7c4a-47bf-978d-c42c638d4687-3,https://biolit.fr/observations/observation-d782886d-7c4a-47bf-978d-c42c638d4687-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7468_buse.JPG,,FALSE, +N1,58874,sortie-d782886d-7c4a-47bf-978d-c42c638d4687,https://biolit.fr/sorties/sortie-d782886d-7c4a-47bf-978d-c42c638d4687/,Olivier BILLON,,5/21/2021 0:00,10.0000000,12.0000000,43.776401000000,-1.411224000000,,Lac marin de Soustons,35058,observation-d782886d-7c4a-47bf-978d-c42c638d4687-4,https://biolit.fr/observations/observation-d782886d-7c4a-47bf-978d-c42c638d4687-4/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7471_herons-scaled.jpg,,TRUE, +N1,58874,sortie-d782886d-7c4a-47bf-978d-c42c638d4687,https://biolit.fr/sorties/sortie-d782886d-7c4a-47bf-978d-c42c638d4687/,Olivier BILLON,,5/21/2021 0:00,10.0000000,12.0000000,43.776401000000,-1.411224000000,,Lac marin de Soustons,35060,observation-d782886d-7c4a-47bf-978d-c42c638d4687-5,https://biolit.fr/observations/observation-d782886d-7c4a-47bf-978d-c42c638d4687-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7490_merle-scaled.jpg,,FALSE, +N1,58874,sortie-d782886d-7c4a-47bf-978d-c42c638d4687,https://biolit.fr/sorties/sortie-d782886d-7c4a-47bf-978d-c42c638d4687/,Olivier BILLON,,5/21/2021 0:00,10.0000000,12.0000000,43.776401000000,-1.411224000000,,Lac marin de Soustons,35062,observation-d782886d-7c4a-47bf-978d-c42c638d4687-6,https://biolit.fr/observations/observation-d782886d-7c4a-47bf-978d-c42c638d4687-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7470_canards-scaled.jpg,,FALSE, +N1,58875,sortie-027b9104-46dc-4c63-bcde-1285317f52eb,https://biolit.fr/sorties/sortie-027b9104-46dc-4c63-bcde-1285317f52eb/,Marine,,5/20/2021 0:00,11.0000000,12.0000000,43.239909000000,5.362335000000,Planète Mer,Plage du bain des dames,35066,observation-027b9104-46dc-4c63-bcde-1285317f52eb,https://biolit.fr/observations/observation-027b9104-46dc-4c63-bcde-1285317f52eb/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210520_111315_compress27-scaled.jpg,,TRUE, +N1,58875,sortie-027b9104-46dc-4c63-bcde-1285317f52eb,https://biolit.fr/sorties/sortie-027b9104-46dc-4c63-bcde-1285317f52eb/,Marine,,5/20/2021 0:00,11.0000000,12.0000000,43.239909000000,5.362335000000,Planète Mer,Plage du bain des dames,35068,observation-027b9104-46dc-4c63-bcde-1285317f52eb-2,https://biolit.fr/observations/observation-027b9104-46dc-4c63-bcde-1285317f52eb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210520_113133_compress68-scaled.jpg,,FALSE, +N1,58875,sortie-027b9104-46dc-4c63-bcde-1285317f52eb,https://biolit.fr/sorties/sortie-027b9104-46dc-4c63-bcde-1285317f52eb/,Marine,,5/20/2021 0:00,11.0000000,12.0000000,43.239909000000,5.362335000000,Planète Mer,Plage du bain des dames,35070,observation-027b9104-46dc-4c63-bcde-1285317f52eb-3,https://biolit.fr/observations/observation-027b9104-46dc-4c63-bcde-1285317f52eb-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210520_112238_compress47-scaled.jpg,,FALSE, +N1,58875,sortie-027b9104-46dc-4c63-bcde-1285317f52eb,https://biolit.fr/sorties/sortie-027b9104-46dc-4c63-bcde-1285317f52eb/,Marine,,5/20/2021 0:00,11.0000000,12.0000000,43.239909000000,5.362335000000,Planète Mer,Plage du bain des dames,35072,observation-027b9104-46dc-4c63-bcde-1285317f52eb-4,https://biolit.fr/observations/observation-027b9104-46dc-4c63-bcde-1285317f52eb-4/,Caulerpa cylindracea,Caulerpe cylindracée,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210520_113723_compress89-scaled.jpg,,TRUE, +N1,58875,sortie-027b9104-46dc-4c63-bcde-1285317f52eb,https://biolit.fr/sorties/sortie-027b9104-46dc-4c63-bcde-1285317f52eb/,Marine,,5/20/2021 0:00,11.0000000,12.0000000,43.239909000000,5.362335000000,Planète Mer,Plage du bain des dames,35074,observation-027b9104-46dc-4c63-bcde-1285317f52eb-5,https://biolit.fr/observations/observation-027b9104-46dc-4c63-bcde-1285317f52eb-5/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210520_115418-scaled.jpg,,TRUE, +N1,58875,sortie-027b9104-46dc-4c63-bcde-1285317f52eb,https://biolit.fr/sorties/sortie-027b9104-46dc-4c63-bcde-1285317f52eb/,Marine,,5/20/2021 0:00,11.0000000,12.0000000,43.239909000000,5.362335000000,Planète Mer,Plage du bain des dames,35076,observation-027b9104-46dc-4c63-bcde-1285317f52eb-6,https://biolit.fr/observations/observation-027b9104-46dc-4c63-bcde-1285317f52eb-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210520_111531-scaled.jpg,,FALSE, +N1,58875,sortie-027b9104-46dc-4c63-bcde-1285317f52eb,https://biolit.fr/sorties/sortie-027b9104-46dc-4c63-bcde-1285317f52eb/,Marine,,5/20/2021 0:00,11.0000000,12.0000000,43.239909000000,5.362335000000,Planète Mer,Plage du bain des dames,35078,observation-027b9104-46dc-4c63-bcde-1285317f52eb-7,https://biolit.fr/observations/observation-027b9104-46dc-4c63-bcde-1285317f52eb-7/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210520_114619-scaled.jpg,,TRUE, +N1,58875,sortie-027b9104-46dc-4c63-bcde-1285317f52eb,https://biolit.fr/sorties/sortie-027b9104-46dc-4c63-bcde-1285317f52eb/,Marine,,5/20/2021 0:00,11.0000000,12.0000000,43.239909000000,5.362335000000,Planète Mer,Plage du bain des dames,35080,observation-027b9104-46dc-4c63-bcde-1285317f52eb-8,https://biolit.fr/observations/observation-027b9104-46dc-4c63-bcde-1285317f52eb-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210520_113246-scaled.jpg,,FALSE, +N1,58875,sortie-027b9104-46dc-4c63-bcde-1285317f52eb,https://biolit.fr/sorties/sortie-027b9104-46dc-4c63-bcde-1285317f52eb/,Marine,,5/20/2021 0:00,11.0000000,12.0000000,43.239909000000,5.362335000000,Planète Mer,Plage du bain des dames,35082,observation-027b9104-46dc-4c63-bcde-1285317f52eb-9,https://biolit.fr/observations/observation-027b9104-46dc-4c63-bcde-1285317f52eb-9/,Anurida maritima,Collembole marin,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210520_112710-scaled.jpg,,TRUE, +N1,58875,sortie-027b9104-46dc-4c63-bcde-1285317f52eb,https://biolit.fr/sorties/sortie-027b9104-46dc-4c63-bcde-1285317f52eb/,Marine,,5/20/2021 0:00,11.0000000,12.0000000,43.239909000000,5.362335000000,Planète Mer,Plage du bain des dames,35084,observation-027b9104-46dc-4c63-bcde-1285317f52eb-10,https://biolit.fr/observations/observation-027b9104-46dc-4c63-bcde-1285317f52eb-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210520_115231-scaled.jpg,,FALSE, +N1,58876,sortie-678f22fa-c95a-45fb-8b56-913748d3bc07,https://biolit.fr/sorties/sortie-678f22fa-c95a-45fb-8b56-913748d3bc07/,bpages,,5/17/2021 0:00,17.0000000,18.0000000,43.46122800000,-1.577531000000,,Plage d’Ilbarritz,35086,observation-678f22fa-c95a-45fb-8b56-913748d3bc07,https://biolit.fr/observations/observation-678f22fa-c95a-45fb-8b56-913748d3bc07/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/804752EF-D6F7-48AC-B9D5-EA9841CE7EDC.jpeg,,TRUE, +N1,58876,sortie-678f22fa-c95a-45fb-8b56-913748d3bc07,https://biolit.fr/sorties/sortie-678f22fa-c95a-45fb-8b56-913748d3bc07/,bpages,,5/17/2021 0:00,17.0000000,18.0000000,43.46122800000,-1.577531000000,,Plage d’Ilbarritz,35088,observation-678f22fa-c95a-45fb-8b56-913748d3bc07-2,https://biolit.fr/observations/observation-678f22fa-c95a-45fb-8b56-913748d3bc07-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/8F4C705B-9719-4E65-BB0E-9EC19423E5FD.jpeg,,FALSE, +N1,58876,sortie-678f22fa-c95a-45fb-8b56-913748d3bc07,https://biolit.fr/sorties/sortie-678f22fa-c95a-45fb-8b56-913748d3bc07/,bpages,,5/17/2021 0:00,17.0000000,18.0000000,43.46122800000,-1.577531000000,,Plage d’Ilbarritz,35090,observation-678f22fa-c95a-45fb-8b56-913748d3bc07-3,https://biolit.fr/observations/observation-678f22fa-c95a-45fb-8b56-913748d3bc07-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/F2FD3D1F-C9C4-4018-AF0A-9F00CD6976C9.jpeg,,FALSE, +N1,58877,sortie-e31df313-91cb-4245-af5b-26d1b74a19e2,https://biolit.fr/sorties/sortie-e31df313-91cb-4245-af5b-26d1b74a19e2/,CHRISTOPHE LIBERSE,,5/15/2021 0:00,15.0000000,16.0000000,49.689201000000,0.167782000000,,"La Poterie, Valleuse du Fourquet",35092,observation-e31df313-91cb-4245-af5b-26d1b74a19e2,https://biolit.fr/observations/observation-e31df313-91cb-4245-af5b-26d1b74a19e2/,,,,https://biolit.fr/wp-content/uploads/2023/07/1-scaled.jpg,,FALSE, +N1,58877,sortie-e31df313-91cb-4245-af5b-26d1b74a19e2,https://biolit.fr/sorties/sortie-e31df313-91cb-4245-af5b-26d1b74a19e2/,CHRISTOPHE LIBERSE,,5/15/2021 0:00,15.0000000,16.0000000,49.689201000000,0.167782000000,,"La Poterie, Valleuse du Fourquet",35094,observation-e31df313-91cb-4245-af5b-26d1b74a19e2-2,https://biolit.fr/observations/observation-e31df313-91cb-4245-af5b-26d1b74a19e2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/2-scaled.jpg,,FALSE, +N1,58877,sortie-e31df313-91cb-4245-af5b-26d1b74a19e2,https://biolit.fr/sorties/sortie-e31df313-91cb-4245-af5b-26d1b74a19e2/,CHRISTOPHE LIBERSE,,5/15/2021 0:00,15.0000000,16.0000000,49.689201000000,0.167782000000,,"La Poterie, Valleuse du Fourquet",35097,observation-e31df313-91cb-4245-af5b-26d1b74a19e2-4,https://biolit.fr/observations/observation-e31df313-91cb-4245-af5b-26d1b74a19e2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/4-scaled.jpg,,FALSE, +N1,58877,sortie-e31df313-91cb-4245-af5b-26d1b74a19e2,https://biolit.fr/sorties/sortie-e31df313-91cb-4245-af5b-26d1b74a19e2/,CHRISTOPHE LIBERSE,,5/15/2021 0:00,15.0000000,16.0000000,49.689201000000,0.167782000000,,"La Poterie, Valleuse du Fourquet",35099,observation-e31df313-91cb-4245-af5b-26d1b74a19e2-5,https://biolit.fr/observations/observation-e31df313-91cb-4245-af5b-26d1b74a19e2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/5_0-scaled.jpg,,FALSE, +N1,58877,sortie-e31df313-91cb-4245-af5b-26d1b74a19e2,https://biolit.fr/sorties/sortie-e31df313-91cb-4245-af5b-26d1b74a19e2/,CHRISTOPHE LIBERSE,,5/15/2021 0:00,15.0000000,16.0000000,49.689201000000,0.167782000000,,"La Poterie, Valleuse du Fourquet",35101,observation-e31df313-91cb-4245-af5b-26d1b74a19e2-6,https://biolit.fr/observations/observation-e31df313-91cb-4245-af5b-26d1b74a19e2-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/6_0.jpg,,FALSE, +N1,58877,sortie-e31df313-91cb-4245-af5b-26d1b74a19e2,https://biolit.fr/sorties/sortie-e31df313-91cb-4245-af5b-26d1b74a19e2/,CHRISTOPHE LIBERSE,,5/15/2021 0:00,15.0000000,16.0000000,49.689201000000,0.167782000000,,"La Poterie, Valleuse du Fourquet",35102,observation-e31df313-91cb-4245-af5b-26d1b74a19e2-7,https://biolit.fr/observations/observation-e31df313-91cb-4245-af5b-26d1b74a19e2-7/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/7_0.jpg,,TRUE, +N1,58877,sortie-e31df313-91cb-4245-af5b-26d1b74a19e2,https://biolit.fr/sorties/sortie-e31df313-91cb-4245-af5b-26d1b74a19e2/,CHRISTOPHE LIBERSE,,5/15/2021 0:00,15.0000000,16.0000000,49.689201000000,0.167782000000,,"La Poterie, Valleuse du Fourquet",35103,observation-e31df313-91cb-4245-af5b-26d1b74a19e2-8,https://biolit.fr/observations/observation-e31df313-91cb-4245-af5b-26d1b74a19e2-8/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/8-scaled.jpg,,TRUE, +N1,58877,sortie-e31df313-91cb-4245-af5b-26d1b74a19e2,https://biolit.fr/sorties/sortie-e31df313-91cb-4245-af5b-26d1b74a19e2/,CHRISTOPHE LIBERSE,,5/15/2021 0:00,15.0000000,16.0000000,49.689201000000,0.167782000000,,"La Poterie, Valleuse du Fourquet",35105,observation-e31df313-91cb-4245-af5b-26d1b74a19e2-9,https://biolit.fr/observations/observation-e31df313-91cb-4245-af5b-26d1b74a19e2-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/9-scaled.jpg,,FALSE, +N1,58877,sortie-e31df313-91cb-4245-af5b-26d1b74a19e2,https://biolit.fr/sorties/sortie-e31df313-91cb-4245-af5b-26d1b74a19e2/,CHRISTOPHE LIBERSE,,5/15/2021 0:00,15.0000000,16.0000000,49.689201000000,0.167782000000,,"La Poterie, Valleuse du Fourquet",35107,observation-e31df313-91cb-4245-af5b-26d1b74a19e2-10,https://biolit.fr/observations/observation-e31df313-91cb-4245-af5b-26d1b74a19e2-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/10-scaled.jpg,,FALSE, +N1,58877,sortie-e31df313-91cb-4245-af5b-26d1b74a19e2,https://biolit.fr/sorties/sortie-e31df313-91cb-4245-af5b-26d1b74a19e2/,CHRISTOPHE LIBERSE,,5/15/2021 0:00,15.0000000,16.0000000,49.689201000000,0.167782000000,,"La Poterie, Valleuse du Fourquet",35109,observation-e31df313-91cb-4245-af5b-26d1b74a19e2-11,https://biolit.fr/observations/observation-e31df313-91cb-4245-af5b-26d1b74a19e2-11/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/11.jpg,,TRUE, +N1,58878,sortie-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5,https://biolit.fr/sorties/sortie-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5/,patrick.caillon,,05/02/2021,14.0000000,15.0000000,47.263861000000,-2.345190000000,,"pornichet, plage des libraires",35110,observation-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5,https://biolit.fr/observations/observation-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4126-scaled.jpg | https://biolit.fr/wp-content/uploads/2021/05/IMG_4127-scaled-1.jpg,,FALSE, +N1,58878,sortie-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5,https://biolit.fr/sorties/sortie-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5/,patrick.caillon,,05/02/2021,14.0000000,15.0000000,47.263861000000,-2.345190000000,,"pornichet, plage des libraires",35114,observation-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5-3,https://biolit.fr/observations/observation-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5-3/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4129-scaled.jpg,,TRUE, +N1,58878,sortie-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5,https://biolit.fr/sorties/sortie-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5/,patrick.caillon,,05/02/2021,14.0000000,15.0000000,47.263861000000,-2.345190000000,,"pornichet, plage des libraires",35116,observation-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5-4,https://biolit.fr/observations/observation-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4131-scaled.jpg,,FALSE, +N1,58878,sortie-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5,https://biolit.fr/sorties/sortie-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5/,patrick.caillon,,05/02/2021,14.0000000,15.0000000,47.263861000000,-2.345190000000,,"pornichet, plage des libraires",35118,observation-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5-5,https://biolit.fr/observations/observation-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4128-min-scaled.jpg,,FALSE, +N1,58878,sortie-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5,https://biolit.fr/sorties/sortie-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5/,patrick.caillon,,05/02/2021,14.0000000,15.0000000,47.263861000000,-2.345190000000,,"pornichet, plage des libraires",35120,observation-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5-6,https://biolit.fr/observations/observation-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5-6/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4130-min-scaled.jpg,,TRUE, +N1,58878,sortie-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5,https://biolit.fr/sorties/sortie-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5/,patrick.caillon,,05/02/2021,14.0000000,15.0000000,47.263861000000,-2.345190000000,,"pornichet, plage des libraires",35122,observation-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5-7,https://biolit.fr/observations/observation-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5-7/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_4132-min-scaled.jpg,,TRUE, +N1,58878,sortie-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5,https://biolit.fr/sorties/sortie-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5/,patrick.caillon,,05/02/2021,14.0000000,15.0000000,47.263861000000,-2.345190000000,,"pornichet, plage des libraires",35124,observation-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5-8,https://biolit.fr/observations/observation-7ed68c7d-0b55-40a8-886f-fdaf5323b0e5-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4133-min-scaled.jpg,,FALSE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35126,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragaceae_2.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35128,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-2,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-2/,Aeolidiella alderi,Eolis d'Alder,,https://biolit.fr/wp-content/uploads/2023/07/Aeolidiella alderi.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35130,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-3,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_11.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35132,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-4,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-4/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_5.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35134,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-5,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-5/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/Aplysia fasciata.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35136,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-6,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-6/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/Armeria maritima.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35138,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-7,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-7/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_13.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35140,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-8,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-8/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_12.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35142,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-9,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-9/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_6.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35144,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-10,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-10/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/crithmum maritimum.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35145,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-11,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_14.PNG,,FALSE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35147,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-12,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-12/,Lagurus ovatus,Queue de lièvre,,https://biolit.fr/wp-content/uploads/2023/07/Lagurus ovatus.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35149,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-13,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-13/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_8.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35151,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-14,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-14/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina fabalis.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35153,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-15,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-15/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_3.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35155,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-16,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-16/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Patella ulyssiponensis_1.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35157,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-17,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-17/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus_4.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35159,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-18,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-18/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_12.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35161,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-19,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-19/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/2023/07/Salaria pavo-scaled.jpg,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35162,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-20,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-20/,Sparus aurata,Dorade (daurade) royale,,https://biolit.fr/wp-content/uploads/2023/07/Sparus aurata.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35164,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-21,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-21/,Spergularia rupicola,Spergulaire des rochers,,https://biolit.fr/wp-content/uploads/2023/07/Spergula rupicola.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35166,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-22,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-22/,Sphaeromatidae (famille),Sphéromiens,,https://biolit.fr/wp-content/uploads/2023/07/Sphaeromatidae_3.PNG,,TRUE, +N1,58879,sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5,https://biolit.fr/sorties/sortie-b6b438bf-4bc9-4948-9ed3-4e485184e6a5/,Roman,,5/14/2021 0:00,14.0000000,15.0000000,47.703093000000,-3.352188000000,,Port-Louis,35168,observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-23,https://biolit.fr/observations/observation-b6b438bf-4bc9-4948-9ed3-4e485184e6a5-23/,Spondyliosoma cantharus,Dorade grise,,https://biolit.fr/wp-content/uploads/2023/07/Spondilyosoma cantharus.PNG,,FALSE, +N1,58880,sortie-b956ed35-0411-4ced-be62-642bb6f8a405,https://biolit.fr/sorties/sortie-b956ed35-0411-4ced-be62-642bb6f8a405/,Marine,,5/13/2021 0:00,16.0000000,16.0:25,43.67899900000,-1.4406350000,,Hossegor,35170,observation-b956ed35-0411-4ced-be62-642bb6f8a405,https://biolit.fr/observations/observation-b956ed35-0411-4ced-be62-642bb6f8a405/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210513_170156_compress26-scaled.jpg,,TRUE, +N1,58880,sortie-b956ed35-0411-4ced-be62-642bb6f8a405,https://biolit.fr/sorties/sortie-b956ed35-0411-4ced-be62-642bb6f8a405/,Marine,,5/13/2021 0:00,16.0000000,16.0:25,43.67899900000,-1.4406350000,,Hossegor,35172,observation-b956ed35-0411-4ced-be62-642bb6f8a405-2,https://biolit.fr/observations/observation-b956ed35-0411-4ced-be62-642bb6f8a405-2/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210513_170139_compress34-scaled.jpg,,TRUE, +N1,58880,sortie-b956ed35-0411-4ced-be62-642bb6f8a405,https://biolit.fr/sorties/sortie-b956ed35-0411-4ced-be62-642bb6f8a405/,Marine,,5/13/2021 0:00,16.0000000,16.0:25,43.67899900000,-1.4406350000,,Hossegor,35174,observation-b956ed35-0411-4ced-be62-642bb6f8a405-3,https://biolit.fr/observations/observation-b956ed35-0411-4ced-be62-642bb6f8a405-3/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210513_170217_compress9-scaled.jpg,,TRUE, +N1,58880,sortie-b956ed35-0411-4ced-be62-642bb6f8a405,https://biolit.fr/sorties/sortie-b956ed35-0411-4ced-be62-642bb6f8a405/,Marine,,5/13/2021 0:00,16.0000000,16.0:25,43.67899900000,-1.4406350000,,Hossegor,35176,observation-b956ed35-0411-4ced-be62-642bb6f8a405-4,https://biolit.fr/observations/observation-b956ed35-0411-4ced-be62-642bb6f8a405-4/,Scyliorhinus canicula,Capsule de petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210513_170010_compress70-scaled.jpg,,TRUE, +N1,58880,sortie-b956ed35-0411-4ced-be62-642bb6f8a405,https://biolit.fr/sorties/sortie-b956ed35-0411-4ced-be62-642bb6f8a405/,Marine,,5/13/2021 0:00,16.0000000,16.0:25,43.67899900000,-1.4406350000,,Hossegor,35178,observation-b956ed35-0411-4ced-be62-642bb6f8a405-5,https://biolit.fr/observations/observation-b956ed35-0411-4ced-be62-642bb6f8a405-5/,Ocenebra erinaceus,Ponte de Bigorneau perceur,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210513_170621_compress43-scaled.jpg,,TRUE, +N1,58880,sortie-b956ed35-0411-4ced-be62-642bb6f8a405,https://biolit.fr/sorties/sortie-b956ed35-0411-4ced-be62-642bb6f8a405/,Marine,,5/13/2021 0:00,16.0000000,16.0:25,43.67899900000,-1.4406350000,,Hossegor,35180,observation-b956ed35-0411-4ced-be62-642bb6f8a405-6,https://biolit.fr/observations/observation-b956ed35-0411-4ced-be62-642bb6f8a405-6/,Ocenebra erinaceus,Ponte de Bigorneau perceur,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210513_170637-scaled.jpg,,TRUE, +N1,58881,sortie-5a5bc220-4bc1-41b7-803c-37f87ed7603a,https://biolit.fr/sorties/sortie-5a5bc220-4bc1-41b7-803c-37f87ed7603a/,Thomas DIEUZEIDE,,05/06/2021,11.0000000,16.0000000,43.659248000000,-1.444033000000,,"Hossegor, plage sud",35182,observation-5a5bc220-4bc1-41b7-803c-37f87ed7603a,https://biolit.fr/observations/observation-5a5bc220-4bc1-41b7-803c-37f87ed7603a/,,,,https://biolit.fr/wp-content/uploads/2023/07/1 Lys des sables 1-scaled.jpg,,FALSE, +N1,58881,sortie-5a5bc220-4bc1-41b7-803c-37f87ed7603a,https://biolit.fr/sorties/sortie-5a5bc220-4bc1-41b7-803c-37f87ed7603a/,Thomas DIEUZEIDE,,05/06/2021,11.0000000,16.0000000,43.659248000000,-1.444033000000,,"Hossegor, plage sud",35184,observation-5a5bc220-4bc1-41b7-803c-37f87ed7603a-2,https://biolit.fr/observations/observation-5a5bc220-4bc1-41b7-803c-37f87ed7603a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/2 Lys des sables 2-scaled.jpg,,FALSE, +N1,58881,sortie-5a5bc220-4bc1-41b7-803c-37f87ed7603a,https://biolit.fr/sorties/sortie-5a5bc220-4bc1-41b7-803c-37f87ed7603a/,Thomas DIEUZEIDE,,05/06/2021,11.0000000,16.0000000,43.659248000000,-1.444033000000,,"Hossegor, plage sud",35186,observation-5a5bc220-4bc1-41b7-803c-37f87ed7603a-3,https://biolit.fr/observations/observation-5a5bc220-4bc1-41b7-803c-37f87ed7603a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/3 Lys des sables 3-scaled.jpg,,FALSE, +N1,58881,sortie-5a5bc220-4bc1-41b7-803c-37f87ed7603a,https://biolit.fr/sorties/sortie-5a5bc220-4bc1-41b7-803c-37f87ed7603a/,Thomas DIEUZEIDE,,05/06/2021,11.0000000,16.0000000,43.659248000000,-1.444033000000,,"Hossegor, plage sud",35188,observation-5a5bc220-4bc1-41b7-803c-37f87ed7603a-4,https://biolit.fr/observations/observation-5a5bc220-4bc1-41b7-803c-37f87ed7603a-4/,Carpobrotus edulis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/4 Griffes de sorcière 1-scaled.jpg,,TRUE, +N1,58881,sortie-5a5bc220-4bc1-41b7-803c-37f87ed7603a,https://biolit.fr/sorties/sortie-5a5bc220-4bc1-41b7-803c-37f87ed7603a/,Thomas DIEUZEIDE,,05/06/2021,11.0000000,16.0000000,43.659248000000,-1.444033000000,,"Hossegor, plage sud",35190,observation-5a5bc220-4bc1-41b7-803c-37f87ed7603a-5,https://biolit.fr/observations/observation-5a5bc220-4bc1-41b7-803c-37f87ed7603a-5/,Carpobrotus edulis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/5 Griffes de sorcière 2-scaled.jpg,,TRUE, +N1,58881,sortie-5a5bc220-4bc1-41b7-803c-37f87ed7603a,https://biolit.fr/sorties/sortie-5a5bc220-4bc1-41b7-803c-37f87ed7603a/,Thomas DIEUZEIDE,,05/06/2021,11.0000000,16.0000000,43.659248000000,-1.444033000000,,"Hossegor, plage sud",35192,observation-5a5bc220-4bc1-41b7-803c-37f87ed7603a-6,https://biolit.fr/observations/observation-5a5bc220-4bc1-41b7-803c-37f87ed7603a-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/6 Immortelles-scaled.jpg,,FALSE, +N1,58881,sortie-5a5bc220-4bc1-41b7-803c-37f87ed7603a,https://biolit.fr/sorties/sortie-5a5bc220-4bc1-41b7-803c-37f87ed7603a/,Thomas DIEUZEIDE,,05/06/2021,11.0000000,16.0000000,43.659248000000,-1.444033000000,,"Hossegor, plage sud",35196,observation-5a5bc220-4bc1-41b7-803c-37f87ed7603a-8,https://biolit.fr/observations/observation-5a5bc220-4bc1-41b7-803c-37f87ed7603a-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/8 Oeillets des sables 2-scaled.jpg | https://biolit.fr/wp-content/uploads/2021/05/7-Oeillets-des-sables-1-scaled-1.jpg,,FALSE, +N1,58882,sortie-e27d8c67-a2a5-4be3-aff1-62521135e338,https://biolit.fr/sorties/sortie-e27d8c67-a2a5-4be3-aff1-62521135e338/,Jackie,,05/08/2021,15.0000000,16.0000000,51.050933000000,2.374060000000,,Dunkerque Plage des Alliés,35198,observation-e27d8c67-a2a5-4be3-aff1-62521135e338,https://biolit.fr/observations/observation-e27d8c67-a2a5-4be3-aff1-62521135e338/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8188-scaled.jpg,,FALSE, +N1,58882,sortie-e27d8c67-a2a5-4be3-aff1-62521135e338,https://biolit.fr/sorties/sortie-e27d8c67-a2a5-4be3-aff1-62521135e338/,Jackie,,05/08/2021,15.0000000,16.0000000,51.050933000000,2.374060000000,,Dunkerque Plage des Alliés,35200,observation-e27d8c67-a2a5-4be3-aff1-62521135e338-2,https://biolit.fr/observations/observation-e27d8c67-a2a5-4be3-aff1-62521135e338-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210508_161949-scaled.jpg,,FALSE, +N1,58882,sortie-e27d8c67-a2a5-4be3-aff1-62521135e338,https://biolit.fr/sorties/sortie-e27d8c67-a2a5-4be3-aff1-62521135e338/,Jackie,,05/08/2021,15.0000000,16.0000000,51.050933000000,2.374060000000,,Dunkerque Plage des Alliés,35202,observation-e27d8c67-a2a5-4be3-aff1-62521135e338-3,https://biolit.fr/observations/observation-e27d8c67-a2a5-4be3-aff1-62521135e338-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8170-scaled.jpg,,FALSE, +N1,58882,sortie-e27d8c67-a2a5-4be3-aff1-62521135e338,https://biolit.fr/sorties/sortie-e27d8c67-a2a5-4be3-aff1-62521135e338/,Jackie,,05/08/2021,15.0000000,16.0000000,51.050933000000,2.374060000000,,Dunkerque Plage des Alliés,35206,observation-e27d8c67-a2a5-4be3-aff1-62521135e338-5,https://biolit.fr/observations/observation-e27d8c67-a2a5-4be3-aff1-62521135e338-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8167.JPG,,FALSE, +N1,58882,sortie-e27d8c67-a2a5-4be3-aff1-62521135e338,https://biolit.fr/sorties/sortie-e27d8c67-a2a5-4be3-aff1-62521135e338/,Jackie,,05/08/2021,15.0000000,16.0000000,51.050933000000,2.374060000000,,Dunkerque Plage des Alliés,35208,observation-e27d8c67-a2a5-4be3-aff1-62521135e338-6,https://biolit.fr/observations/observation-e27d8c67-a2a5-4be3-aff1-62521135e338-6/,Ensis ensis,Couteau-sabre,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8181.JPG,,TRUE, +N1,58882,sortie-e27d8c67-a2a5-4be3-aff1-62521135e338,https://biolit.fr/sorties/sortie-e27d8c67-a2a5-4be3-aff1-62521135e338/,Jackie,,05/08/2021,15.0000000,16.0000000,51.050933000000,2.374060000000,,Dunkerque Plage des Alliés,35210,observation-e27d8c67-a2a5-4be3-aff1-62521135e338-7,https://biolit.fr/observations/observation-e27d8c67-a2a5-4be3-aff1-62521135e338-7/,Scyliorhinus canicula,Capsule de petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8185-scaled.jpg,,TRUE, +N1,58882,sortie-e27d8c67-a2a5-4be3-aff1-62521135e338,https://biolit.fr/sorties/sortie-e27d8c67-a2a5-4be3-aff1-62521135e338/,Jackie,,05/08/2021,15.0000000,16.0000000,51.050933000000,2.374060000000,,Dunkerque Plage des Alliés,35212,observation-e27d8c67-a2a5-4be3-aff1-62521135e338-8,https://biolit.fr/observations/observation-e27d8c67-a2a5-4be3-aff1-62521135e338-8/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210508_152340-scaled.jpg,,TRUE, +N1,58882,sortie-e27d8c67-a2a5-4be3-aff1-62521135e338,https://biolit.fr/sorties/sortie-e27d8c67-a2a5-4be3-aff1-62521135e338/,Jackie,,05/08/2021,15.0000000,16.0000000,51.050933000000,2.374060000000,,Dunkerque Plage des Alliés,35214,observation-e27d8c67-a2a5-4be3-aff1-62521135e338-9,https://biolit.fr/observations/observation-e27d8c67-a2a5-4be3-aff1-62521135e338-9/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20210508_155355-scaled.jpg,,TRUE, +N1,58882,sortie-e27d8c67-a2a5-4be3-aff1-62521135e338,https://biolit.fr/sorties/sortie-e27d8c67-a2a5-4be3-aff1-62521135e338/,Jackie,,05/08/2021,15.0000000,16.0000000,51.050933000000,2.374060000000,,Dunkerque Plage des Alliés,35216,observation-e27d8c67-a2a5-4be3-aff1-62521135e338-10,https://biolit.fr/observations/observation-e27d8c67-a2a5-4be3-aff1-62521135e338-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8160-scaled.jpg,,FALSE, +N1,58882,sortie-e27d8c67-a2a5-4be3-aff1-62521135e338,https://biolit.fr/sorties/sortie-e27d8c67-a2a5-4be3-aff1-62521135e338/,Jackie,,05/08/2021,15.0000000,16.0000000,51.050933000000,2.374060000000,,Dunkerque Plage des Alliés,35218,observation-e27d8c67-a2a5-4be3-aff1-62521135e338-11,https://biolit.fr/observations/observation-e27d8c67-a2a5-4be3-aff1-62521135e338-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210508_153916-scaled.jpg,,FALSE, +N1,58882,sortie-e27d8c67-a2a5-4be3-aff1-62521135e338,https://biolit.fr/sorties/sortie-e27d8c67-a2a5-4be3-aff1-62521135e338/,Jackie,,05/08/2021,15.0000000,16.0000000,51.050933000000,2.374060000000,,Dunkerque Plage des Alliés,35220,observation-e27d8c67-a2a5-4be3-aff1-62521135e338-12,https://biolit.fr/observations/observation-e27d8c67-a2a5-4be3-aff1-62521135e338-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8155-scaled.jpg,,FALSE, +N1,58882,sortie-e27d8c67-a2a5-4be3-aff1-62521135e338,https://biolit.fr/sorties/sortie-e27d8c67-a2a5-4be3-aff1-62521135e338/,Jackie,,05/08/2021,15.0000000,16.0000000,51.050933000000,2.374060000000,,Dunkerque Plage des Alliés,35222,observation-e27d8c67-a2a5-4be3-aff1-62521135e338-13,https://biolit.fr/observations/observation-e27d8c67-a2a5-4be3-aff1-62521135e338-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8187.JPG,,FALSE, +N1,58882,sortie-e27d8c67-a2a5-4be3-aff1-62521135e338,https://biolit.fr/sorties/sortie-e27d8c67-a2a5-4be3-aff1-62521135e338/,Jackie,,05/08/2021,15.0000000,16.0000000,51.050933000000,2.374060000000,,Dunkerque Plage des Alliés,35224,observation-e27d8c67-a2a5-4be3-aff1-62521135e338-14,https://biolit.fr/observations/observation-e27d8c67-a2a5-4be3-aff1-62521135e338-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8191-scaled.jpg,,FALSE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35226,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Isozoanthus sulcatus,Anémone chocolat,,https://biolit.fr/wp-content/uploads/2023/07/anémone sp_5.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35228,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-2,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_10.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35230,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-3,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-3/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_4.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35232,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-4,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-4/,Anthus petrosus,Pipit maritime,,https://biolit.fr/wp-content/uploads/2023/07/Anthus petrosus.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35234,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-5,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-5/,Aplysia fasciata,Aplysie fasciée,,https://biolit.fr/wp-content/uploads/2023/07/Aplysia spp.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35236,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-6,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/aplysie sp.PNG,,FALSE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35238,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-7,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-7/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/Arenaria interpres_1.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35240,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-8,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-8/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_7.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35242,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-9,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-9/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_12.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35244,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-10,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-10/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_6.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35246,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-11,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-11/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botrylloides schlosseri.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35248,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-12,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-12/,Botrylloides spp. (leachii violaceus diegensis),Botrylles,,https://biolit.fr/wp-content/uploads/2023/07/Botrylloides spp_1.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35250,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-13,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-13/,Calyptraea chinensis,Chapeau chinois,,https://biolit.fr/wp-content/uploads/2023/07/Calyptreae chinensis.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35252,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-14,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-14/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/cancer pagurus_4.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35254,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-15,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-15/,Dynamena pumila,Petite dynamène,,https://biolit.fr/wp-content/uploads/2023/07/Dynamene pumila.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35256,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-16,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-16/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 1_5.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35258,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-17,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-17/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 2_4.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35260,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-18,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_13.PNG,,FALSE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35262,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-19,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-19/,Ocenebra erinaceus,Ponte de Bigorneau perceur,,https://biolit.fr/wp-content/uploads/2023/07/erinaceus.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35264,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-20,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge spp.PNG,,FALSE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35266,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-21,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-21/,Gari depressa,Psammobie déprimée,,https://biolit.fr/wp-content/uploads/2023/07/Gari depressa_6.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35268,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-22,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-22/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/Haliotis tuberculata_3.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35270,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-23,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-23/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochiotona cinerea.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35272,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-24,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-24/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_11.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35274,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-25,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-25/,Metridium senile,Œillet de mer,,https://biolit.fr/wp-content/uploads/2023/07/Metridium sp_0.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35276,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-26,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-26/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia_3.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35278,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-27,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-27/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_6.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35280,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-28,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/Non identifié 1.PNG,,FALSE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35281,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-29,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/non identifié_0.PNG,,FALSE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35283,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-30,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-30/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/ophiotrix fragilis_1.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35285,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-31,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-31/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/Ponte d'aplysie-scaled.jpg,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35286,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-32,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ponte de doris.PNG,,FALSE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35288,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-33,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-33/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_11.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35290,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-34,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-34/,Sterna hirundo,Sterne pierregarin,,https://biolit.fr/wp-content/uploads/2023/07/Sterna hirundo.PNG,,TRUE, +N1,58883,sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2,https://biolit.fr/sorties/sortie-8a1d67dc-9d30-464a-9e4c-1b9378c916a2/,Roman,,4/30/2021 0:00,14.0000000,15.0000000,47.703315000000,-3.349726000000,,Port-Louis,35292,observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-35,https://biolit.fr/observations/observation-8a1d67dc-9d30-464a-9e4c-1b9378c916a2-35/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_9.PNG,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35296,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-2,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-2/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210418_02.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35298,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-3,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-3/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/20210418_03.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35300,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-4,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210418_04.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35302,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-5,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-5/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20210418_05.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35304,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-6,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-6/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/20210418_06.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35306,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-7,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-7/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210418_07.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35308,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-8,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210418_08.jpg,,FALSE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35310,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-9,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-9/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/20210418_09.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,"""https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/""",Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35312,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-10,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210418_10.jpg,,FALSE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35314,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-11,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210418_11.jpg,,FALSE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35316,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-12,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210418_12.jpg,,FALSE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35318,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-13,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210418_13.jpg,,FALSE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35320,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-14,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210418_14.jpg,,FALSE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35322,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-15,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-15/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/20210418_15.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35324,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-16,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-16/,Botrylloides diegensis,Botrylle de San Diego,,https://biolit.fr/wp-content/uploads/2023/07/20210418_16.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35326,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-17,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-17/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/20210418_17.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35328,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-18,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-18/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/20210418_21.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35330,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-19,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-19/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/20210418_22.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35332,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-20,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210418_24.jpg,,FALSE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35334,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-21,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210418_25.jpg,,FALSE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35336,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-22,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-22/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210418_26.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35338,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-23,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-23/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20210418_27.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35340,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-24,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-24/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/20210418_28.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35342,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-25,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210418_30.jpg,,FALSE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35344,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-26,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-26/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20210418_32.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35346,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-27,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210418_34.jpg,,FALSE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35348,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-28,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-28/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/20210418_35.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35350,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-29,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210418_36.jpg,,FALSE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35352,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-30,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-30/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210418_37.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35354,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-31,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-31/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/20210418_38.jpg,,TRUE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35356,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-32,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210418_39.jpg,,FALSE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35358,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-33,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210418_40.jpg,,FALSE, +N1,58884,sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735,https://biolit.fr/sorties/sortie-2a3081a2-bc83-4ce4-9153-1cf934ee1735/,Charlotte Bretin,,4/18/2021 0:00,15.0000000,17.0000000,47.441564000000,-2.480635000000,,"Pénestin, La pointe du Bile",35360,observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-34,https://biolit.fr/observations/observation-2a3081a2-bc83-4ce4-9153-1cf934ee1735-34/,Matthiola incana subsp. incana,Giroflée des jardins,,https://biolit.fr/wp-content/uploads/2023/07/20210418_41_0.jpg,,TRUE, +N1,58885,sortie-87bcbc25-2d13-48c5-b238-2cbe96333a64,https://biolit.fr/sorties/sortie-87bcbc25-2d13-48c5-b238-2cbe96333a64/,Marion.BioLit,,05/05/2021,10.0000000,10.0:45,43.28434500000,5.315757000000,,plage de saint-estève ,35362,observation-87bcbc25-2d13-48c5-b238-2cbe96333a64,https://biolit.fr/observations/observation-87bcbc25-2d13-48c5-b238-2cbe96333a64/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2021-05-06 à 18.36.52.png,,FALSE, +N1,58885,sortie-87bcbc25-2d13-48c5-b238-2cbe96333a64,https://biolit.fr/sorties/sortie-87bcbc25-2d13-48c5-b238-2cbe96333a64/,Marion.BioLit,,05/05/2021,10.0000000,10.0:45,43.28434500000,5.315757000000,,plage de saint-estève ,35364,observation-87bcbc25-2d13-48c5-b238-2cbe96333a64-2,https://biolit.fr/observations/observation-87bcbc25-2d13-48c5-b238-2cbe96333a64-2/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2021-05-06 à 18.37.32.png,,TRUE, +N1,58885,sortie-87bcbc25-2d13-48c5-b238-2cbe96333a64,https://biolit.fr/sorties/sortie-87bcbc25-2d13-48c5-b238-2cbe96333a64/,Marion.BioLit,,05/05/2021,10.0000000,10.0:45,43.28434500000,5.315757000000,,plage de saint-estève ,35366,observation-87bcbc25-2d13-48c5-b238-2cbe96333a64-3,https://biolit.fr/observations/observation-87bcbc25-2d13-48c5-b238-2cbe96333a64-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2021-05-06 à 18.37.43.png,,FALSE, +N1,58885,sortie-87bcbc25-2d13-48c5-b238-2cbe96333a64,https://biolit.fr/sorties/sortie-87bcbc25-2d13-48c5-b238-2cbe96333a64/,Marion.BioLit,,05/05/2021,10.0000000,10.0:45,43.28434500000,5.315757000000,,plage de saint-estève ,35368,observation-87bcbc25-2d13-48c5-b238-2cbe96333a64-4,https://biolit.fr/observations/observation-87bcbc25-2d13-48c5-b238-2cbe96333a64-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture d’écran 2021-05-06 à 18.37.54.png,,FALSE, +N1,58886,sortie-2ed2ea95-6b88-4420-8b63-c0a5ebebdfdd,https://biolit.fr/sorties/sortie-2ed2ea95-6b88-4420-8b63-c0a5ebebdfdd/,Romuald VIALE - EXPENATURE,,05/05/2021,10.0000000,12.0000000,43.284140000000,5.315784000000,ExpéNature,Plage Saint Estève ,35370,observation-2ed2ea95-6b88-4420-8b63-c0a5ebebdfdd,https://biolit.fr/observations/observation-2ed2ea95-6b88-4420-8b63-c0a5ebebdfdd/,,,,https://biolit.fr/wp-content/uploads/2023/07/183028580_3807425489363708_2265794656969356061_n.png,,FALSE, +N1,58887,sortie-28579743-ed11-4ab4-8e96-8f3d9f072eaa,https://biolit.fr/sorties/sortie-28579743-ed11-4ab4-8e96-8f3d9f072eaa/,Romuald VIALE - EXPENATURE,,05/05/2021,17.0000000,19.0000000,43.284244000000,5.315706000000,ExpéNature,Plage Saint Estève ,35372,observation-28579743-ed11-4ab4-8e96-8f3d9f072eaa,https://biolit.fr/observations/observation-28579743-ed11-4ab4-8e96-8f3d9f072eaa/,,,,https://biolit.fr/wp-content/uploads/2023/07/182726882_304387117881165_5528068588235173626_n.png,,FALSE, +N1,58888,sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03,https://biolit.fr/sorties/sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03/,FloVP,,4/29/2021 0:00,14.0000000,16.0000000,43.10374300000,3.118051000000,,"Gruissan, plage face aux chalets",35374,observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03,https://biolit.fr/observations/observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5271R.JPG,,FALSE, +N1,58888,sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03,https://biolit.fr/sorties/sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03/,FloVP,,4/29/2021 0:00,14.0000000,16.0000000,43.10374300000,3.118051000000,,"Gruissan, plage face aux chalets",35376,observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03-2,https://biolit.fr/observations/observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5273R-rotated.jpg,,FALSE, +N1,58888,sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03,https://biolit.fr/sorties/sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03/,FloVP,,4/29/2021 0:00,14.0000000,16.0000000,43.10374300000,3.118051000000,,"Gruissan, plage face aux chalets",35378,observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03-3,https://biolit.fr/observations/observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03-3/,Bolinus brandaris,Murex épineux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5279R-rotated.jpg,,TRUE, +N1,58888,sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03,https://biolit.fr/sorties/sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03/,FloVP,,4/29/2021 0:00,14.0000000,16.0000000,43.10374300000,3.118051000000,,"Gruissan, plage face aux chalets",35380,observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03-4,https://biolit.fr/observations/observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5280R-rotated.jpg,,FALSE, +N1,58888,sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03,https://biolit.fr/sorties/sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03/,FloVP,,4/29/2021 0:00,14.0000000,16.0000000,43.10374300000,3.118051000000,,"Gruissan, plage face aux chalets",35382,observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03-5,https://biolit.fr/observations/observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5282R.JPG,,FALSE, +N1,58888,sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03,https://biolit.fr/sorties/sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03/,FloVP,,4/29/2021 0:00,14.0000000,16.0000000,43.10374300000,3.118051000000,,"Gruissan, plage face aux chalets",35384,observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03-6,https://biolit.fr/observations/observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5283R.JPG,,FALSE, +N1,58888,sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03,https://biolit.fr/sorties/sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03/,FloVP,,4/29/2021 0:00,14.0000000,16.0000000,43.10374300000,3.118051000000,,"Gruissan, plage face aux chalets",35386,observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03-7,https://biolit.fr/observations/observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5284R.JPG,,FALSE, +N1,58888,sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03,https://biolit.fr/sorties/sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03/,FloVP,,4/29/2021 0:00,14.0000000,16.0000000,43.10374300000,3.118051000000,,"Gruissan, plage face aux chalets",35388,observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03-8,https://biolit.fr/observations/observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5285RR.JPG,,FALSE, +N1,58888,sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03,https://biolit.fr/sorties/sortie-5d9e22d6-7cad-4504-94e2-76e3b07a4d03/,FloVP,,4/29/2021 0:00,14.0000000,16.0000000,43.10374300000,3.118051000000,,"Gruissan, plage face aux chalets",35390,observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03-9,https://biolit.fr/observations/observation-5d9e22d6-7cad-4504-94e2-76e3b07a4d03-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5288R.JPG,,FALSE, +N1,58889,sortie-ae81491c-657d-4db4-bb14-d0f0bd846d5a,https://biolit.fr/sorties/sortie-ae81491c-657d-4db4-bb14-d0f0bd846d5a/,FloVP,,4/21/2021 0:00,15.0000000,16.0000000,43.182403000000,3.196962000000,,Saint Pierre la Mer (11560) ,35392,observation-ae81491c-657d-4db4-bb14-d0f0bd846d5a,https://biolit.fr/observations/observation-ae81491c-657d-4db4-bb14-d0f0bd846d5a/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5243R-rotated.jpg,,FALSE, +N1,58889,sortie-ae81491c-657d-4db4-bb14-d0f0bd846d5a,https://biolit.fr/sorties/sortie-ae81491c-657d-4db4-bb14-d0f0bd846d5a/,FloVP,,4/21/2021 0:00,15.0000000,16.0000000,43.182403000000,3.196962000000,,Saint Pierre la Mer (11560) ,35394,observation-ae81491c-657d-4db4-bb14-d0f0bd846d5a-2,https://biolit.fr/observations/observation-ae81491c-657d-4db4-bb14-d0f0bd846d5a-2/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5245R-rotated.jpg,,TRUE, +N1,58889,sortie-ae81491c-657d-4db4-bb14-d0f0bd846d5a,https://biolit.fr/sorties/sortie-ae81491c-657d-4db4-bb14-d0f0bd846d5a/,FloVP,,4/21/2021 0:00,15.0000000,16.0000000,43.182403000000,3.196962000000,,Saint Pierre la Mer (11560) ,35396,observation-ae81491c-657d-4db4-bb14-d0f0bd846d5a-3,https://biolit.fr/observations/observation-ae81491c-657d-4db4-bb14-d0f0bd846d5a-3/,Pecten jacobaeus,Coquille Saint-Jacques de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5250R-rotated.jpg,,TRUE, +N1,58889,sortie-ae81491c-657d-4db4-bb14-d0f0bd846d5a,https://biolit.fr/sorties/sortie-ae81491c-657d-4db4-bb14-d0f0bd846d5a/,FloVP,,4/21/2021 0:00,15.0000000,16.0000000,43.182403000000,3.196962000000,,Saint Pierre la Mer (11560) ,35398,observation-ae81491c-657d-4db4-bb14-d0f0bd846d5a-4,https://biolit.fr/observations/observation-ae81491c-657d-4db4-bb14-d0f0bd846d5a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5253R-rotated.jpg,,FALSE, +N1,58889,sortie-ae81491c-657d-4db4-bb14-d0f0bd846d5a,https://biolit.fr/sorties/sortie-ae81491c-657d-4db4-bb14-d0f0bd846d5a/,FloVP,,4/21/2021 0:00,15.0000000,16.0000000,43.182403000000,3.196962000000,,Saint Pierre la Mer (11560) ,35400,observation-ae81491c-657d-4db4-bb14-d0f0bd846d5a-5,https://biolit.fr/observations/observation-ae81491c-657d-4db4-bb14-d0f0bd846d5a-5/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_5255R-rotated.jpg,,TRUE, +N1,58889,sortie-ae81491c-657d-4db4-bb14-d0f0bd846d5a,https://biolit.fr/sorties/sortie-ae81491c-657d-4db4-bb14-d0f0bd846d5a/,FloVP,,4/21/2021 0:00,15.0000000,16.0000000,43.182403000000,3.196962000000,,Saint Pierre la Mer (11560) ,35402,observation-ae81491c-657d-4db4-bb14-d0f0bd846d5a-6,https://biolit.fr/observations/observation-ae81491c-657d-4db4-bb14-d0f0bd846d5a-6/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5256R-rotated.jpg,,TRUE, +N1,58889,sortie-ae81491c-657d-4db4-bb14-d0f0bd846d5a,https://biolit.fr/sorties/sortie-ae81491c-657d-4db4-bb14-d0f0bd846d5a/,FloVP,,4/21/2021 0:00,15.0000000,16.0000000,43.182403000000,3.196962000000,,Saint Pierre la Mer (11560) ,35404,observation-ae81491c-657d-4db4-bb14-d0f0bd846d5a-7,https://biolit.fr/observations/observation-ae81491c-657d-4db4-bb14-d0f0bd846d5a-7/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5240RR.JPG,,TRUE, +N1,58890,sortie-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8,https://biolit.fr/sorties/sortie-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8/,FloVP,,4/26/2021 0:00,15.0000000,16.0000000,43.176523000000,3.191619000000,,Saint Pierre la Mer (11560) Rocher de St Pierre La Mer ,35406,observation-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8,https://biolit.fr/observations/observation-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5231RM.JPG,,TRUE, +N1,58890,sortie-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8,https://biolit.fr/sorties/sortie-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8/,FloVP,,4/26/2021 0:00,15.0000000,16.0000000,43.176523000000,3.191619000000,,Saint Pierre la Mer (11560) Rocher de St Pierre La Mer ,35408,observation-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8-2,https://biolit.fr/observations/observation-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8-2/,Ammophila arenaria,Oyat,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5232RM.JPG,,TRUE, +N1,58890,sortie-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8,https://biolit.fr/sorties/sortie-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8/,FloVP,,4/26/2021 0:00,15.0000000,16.0000000,43.176523000000,3.191619000000,,Saint Pierre la Mer (11560) Rocher de St Pierre La Mer ,35410,observation-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8-3,https://biolit.fr/observations/observation-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8-3/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5233RM.JPG,,TRUE, +N1,58890,sortie-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8,https://biolit.fr/sorties/sortie-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8/,FloVP,,4/26/2021 0:00,15.0000000,16.0000000,43.176523000000,3.191619000000,,Saint Pierre la Mer (11560) Rocher de St Pierre La Mer ,35412,observation-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8-4,https://biolit.fr/observations/observation-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8-4/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5234RM-rotated.jpg,,TRUE, +N1,58890,sortie-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8,https://biolit.fr/sorties/sortie-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8/,FloVP,,4/26/2021 0:00,15.0000000,16.0000000,43.176523000000,3.191619000000,,Saint Pierre la Mer (11560) Rocher de St Pierre La Mer ,35414,observation-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8-5,https://biolit.fr/observations/observation-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8-5/,Medicago marina,Luzerne marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5237RM-rotated.jpg,,TRUE, +N1,58890,sortie-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8,https://biolit.fr/sorties/sortie-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8/,FloVP,,4/26/2021 0:00,15.0000000,16.0000000,43.176523000000,3.191619000000,,Saint Pierre la Mer (11560) Rocher de St Pierre La Mer ,35416,observation-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8-6,https://biolit.fr/observations/observation-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8-6/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5238RM1.JPG,,TRUE, +N1,58890,sortie-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8,https://biolit.fr/sorties/sortie-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8/,FloVP,,4/26/2021 0:00,15.0000000,16.0000000,43.176523000000,3.191619000000,,Saint Pierre la Mer (11560) Rocher de St Pierre La Mer ,35418,observation-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8-7,https://biolit.fr/observations/observation-3a0303d7-c5f8-4f0d-82a1-71c490d7fea8-7/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5239RM-rotated.jpg,,TRUE, +N1,58891,sortie-d72d6e0e-627f-4400-9557-e58b17bd5f9d,https://biolit.fr/sorties/sortie-d72d6e0e-627f-4400-9557-e58b17bd5f9d/,Sandy Hinchy,,4/29/2021 0:00,17.0000000,18.0000000,43.186948000000,5.623878000000,,Grande Plage ,35420,observation-d72d6e0e-627f-4400-9557-e58b17bd5f9d,https://biolit.fr/observations/observation-d72d6e0e-627f-4400-9557-e58b17bd5f9d/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/2_4-scaled.jpg,,TRUE, +N1,58891,sortie-d72d6e0e-627f-4400-9557-e58b17bd5f9d,https://biolit.fr/sorties/sortie-d72d6e0e-627f-4400-9557-e58b17bd5f9d/,Sandy Hinchy,,4/29/2021 0:00,17.0000000,18.0000000,43.186948000000,5.623878000000,,Grande Plage ,35422,observation-d72d6e0e-627f-4400-9557-e58b17bd5f9d-2,https://biolit.fr/observations/observation-d72d6e0e-627f-4400-9557-e58b17bd5f9d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/3_3-scaled.jpg,,FALSE, +N1,58892,sortie-5275b4ad-5831-4c2f-a2f5-6ac316fa928c,https://biolit.fr/sorties/sortie-5275b4ad-5831-4c2f-a2f5-6ac316fa928c/,Mélody L.,,4/25/2021 0:00,14.0000000,16.0000000,49.679981000000,-1.722093000000,,Estran Urville Nacqueville,35424,observation-5275b4ad-5831-4c2f-a2f5-6ac316fa928c,https://biolit.fr/observations/observation-5275b4ad-5831-4c2f-a2f5-6ac316fa928c/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/WBVT3922[1].JPG,,TRUE, +N1,58892,sortie-5275b4ad-5831-4c2f-a2f5-6ac316fa928c,https://biolit.fr/sorties/sortie-5275b4ad-5831-4c2f-a2f5-6ac316fa928c/,Mélody L.,,4/25/2021 0:00,14.0000000,16.0000000,49.679981000000,-1.722093000000,,Estran Urville Nacqueville,35426,observation-5275b4ad-5831-4c2f-a2f5-6ac316fa928c-2,https://biolit.fr/observations/observation-5275b4ad-5831-4c2f-a2f5-6ac316fa928c-2/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/UMMG3338[1].JPG,,TRUE, +N1,58892,sortie-5275b4ad-5831-4c2f-a2f5-6ac316fa928c,https://biolit.fr/sorties/sortie-5275b4ad-5831-4c2f-a2f5-6ac316fa928c/,Mélody L.,,4/25/2021 0:00,14.0000000,16.0000000,49.679981000000,-1.722093000000,,Estran Urville Nacqueville,35428,observation-5275b4ad-5831-4c2f-a2f5-6ac316fa928c-3,https://biolit.fr/observations/observation-5275b4ad-5831-4c2f-a2f5-6ac316fa928c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/UCPE6252[1].JPG,,FALSE, +N1,58892,sortie-5275b4ad-5831-4c2f-a2f5-6ac316fa928c,https://biolit.fr/sorties/sortie-5275b4ad-5831-4c2f-a2f5-6ac316fa928c/,Mélody L.,,4/25/2021 0:00,14.0000000,16.0000000,49.679981000000,-1.722093000000,,Estran Urville Nacqueville,35430,observation-5275b4ad-5831-4c2f-a2f5-6ac316fa928c-4,https://biolit.fr/observations/observation-5275b4ad-5831-4c2f-a2f5-6ac316fa928c-4/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/THVQ4562[1].JPG,,TRUE, +N1,58892,sortie-5275b4ad-5831-4c2f-a2f5-6ac316fa928c,https://biolit.fr/sorties/sortie-5275b4ad-5831-4c2f-a2f5-6ac316fa928c/,Mélody L.,,4/25/2021 0:00,14.0000000,16.0000000,49.679981000000,-1.722093000000,,Estran Urville Nacqueville,35432,observation-5275b4ad-5831-4c2f-a2f5-6ac316fa928c-5,https://biolit.fr/observations/observation-5275b4ad-5831-4c2f-a2f5-6ac316fa928c-5/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/SDMX5330[1].JPG,,TRUE, +N1,58892,sortie-5275b4ad-5831-4c2f-a2f5-6ac316fa928c,https://biolit.fr/sorties/sortie-5275b4ad-5831-4c2f-a2f5-6ac316fa928c/,Mélody L.,,4/25/2021 0:00,14.0000000,16.0000000,49.679981000000,-1.722093000000,,Estran Urville Nacqueville,35434,observation-5275b4ad-5831-4c2f-a2f5-6ac316fa928c-6,https://biolit.fr/observations/observation-5275b4ad-5831-4c2f-a2f5-6ac316fa928c-6/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/OGWD7532[1].JPG,,TRUE, +N1,58892,sortie-5275b4ad-5831-4c2f-a2f5-6ac316fa928c,https://biolit.fr/sorties/sortie-5275b4ad-5831-4c2f-a2f5-6ac316fa928c/,Mélody L.,,4/25/2021 0:00,14.0000000,16.0000000,49.679981000000,-1.722093000000,,Estran Urville Nacqueville,35436,observation-5275b4ad-5831-4c2f-a2f5-6ac316fa928c-7,https://biolit.fr/observations/observation-5275b4ad-5831-4c2f-a2f5-6ac316fa928c-7/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0798[1].jpg,,TRUE, +N1,58892,sortie-5275b4ad-5831-4c2f-a2f5-6ac316fa928c,https://biolit.fr/sorties/sortie-5275b4ad-5831-4c2f-a2f5-6ac316fa928c/,Mélody L.,,4/25/2021 0:00,14.0000000,16.0000000,49.679981000000,-1.722093000000,,Estran Urville Nacqueville,35438,observation-5275b4ad-5831-4c2f-a2f5-6ac316fa928c-8,https://biolit.fr/observations/observation-5275b4ad-5831-4c2f-a2f5-6ac316fa928c-8/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0807[1].jpg,,TRUE, +N1,58893,sortie-ff092de4-6995-4b20-963c-40378278d230,https://biolit.fr/sorties/sortie-ff092de4-6995-4b20-963c-40378278d230/,Gwentaz,,4/27/2021 0:00,15.0000000,15.0:15,48.6392990000,-2.067630000000,,Plage de St Enogat à Dinard,35440,observation-ff092de4-6995-4b20-963c-40378278d230,https://biolit.fr/observations/observation-ff092de4-6995-4b20-963c-40378278d230/,Corystes cassivelaunus,Crabe masqué,,https://biolit.fr/wp-content/uploads/2023/07/B6515F13-6624-4FD7-B145-F7C411C5E9BE.jpeg,,TRUE, +N1,58894,sortie-224023b5-5ec1-4950-b656-1064f23fdc3e,https://biolit.fr/sorties/sortie-224023b5-5ec1-4950-b656-1064f23fdc3e/,jean vaireaux,,4/24/2021 0:00,8.0:15,10.0000000,49.51003000000,0.066555000000,,Sainte adresse,35442,observation-224023b5-5ec1-4950-b656-1064f23fdc3e,https://biolit.fr/observations/observation-224023b5-5ec1-4950-b656-1064f23fdc3e/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/criste sainte adresse (1)-scaled.jpg,,TRUE, +N1,58895,sortie-6e410bbe-c544-45b2-b4ad-b11799032cb2,https://biolit.fr/sorties/sortie-6e410bbe-c544-45b2-b4ad-b11799032cb2/,jean vaireaux,,4/24/2021 0:00,8.0:15,10.0000000,49.493319000000,0.092712000000,,Le havre,35444,observation-6e410bbe-c544-45b2-b4ad-b11799032cb2,https://biolit.fr/observations/observation-6e410bbe-c544-45b2-b4ad-b11799032cb2/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/crambe plage (2)-scaled.jpg,,TRUE, +N1,58895,sortie-6e410bbe-c544-45b2-b4ad-b11799032cb2,https://biolit.fr/sorties/sortie-6e410bbe-c544-45b2-b4ad-b11799032cb2/,jean vaireaux,,4/24/2021 0:00,8.0:15,10.0000000,49.493319000000,0.092712000000,,Le havre,35446,observation-6e410bbe-c544-45b2-b4ad-b11799032cb2-2,https://biolit.fr/observations/observation-6e410bbe-c544-45b2-b4ad-b11799032cb2-2/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/crambe plage (3)-scaled.jpg,,TRUE, +N1,58895,sortie-6e410bbe-c544-45b2-b4ad-b11799032cb2,https://biolit.fr/sorties/sortie-6e410bbe-c544-45b2-b4ad-b11799032cb2/,jean vaireaux,,4/24/2021 0:00,8.0:15,10.0000000,49.493319000000,0.092712000000,,Le havre,35448,observation-6e410bbe-c544-45b2-b4ad-b11799032cb2-3,https://biolit.fr/observations/observation-6e410bbe-c544-45b2-b4ad-b11799032cb2-3/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/crambe plage (4)-scaled.jpg,,TRUE, +N1,58895,sortie-6e410bbe-c544-45b2-b4ad-b11799032cb2,https://biolit.fr/sorties/sortie-6e410bbe-c544-45b2-b4ad-b11799032cb2/,jean vaireaux,,4/24/2021 0:00,8.0:15,10.0000000,49.493319000000,0.092712000000,,Le havre,35450,observation-6e410bbe-c544-45b2-b4ad-b11799032cb2-4,https://biolit.fr/observations/observation-6e410bbe-c544-45b2-b4ad-b11799032cb2-4/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/crambe plage (5)-scaled.jpg,,TRUE, +N1,58895,sortie-6e410bbe-c544-45b2-b4ad-b11799032cb2,https://biolit.fr/sorties/sortie-6e410bbe-c544-45b2-b4ad-b11799032cb2/,jean vaireaux,,4/24/2021 0:00,8.0:15,10.0000000,49.493319000000,0.092712000000,,Le havre,35452,observation-6e410bbe-c544-45b2-b4ad-b11799032cb2-5,https://biolit.fr/observations/observation-6e410bbe-c544-45b2-b4ad-b11799032cb2-5/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/crambe plage (6)-scaled.jpg,,TRUE, +N1,58895,sortie-6e410bbe-c544-45b2-b4ad-b11799032cb2,https://biolit.fr/sorties/sortie-6e410bbe-c544-45b2-b4ad-b11799032cb2/,jean vaireaux,,4/24/2021 0:00,8.0:15,10.0000000,49.493319000000,0.092712000000,,Le havre,35454,observation-6e410bbe-c544-45b2-b4ad-b11799032cb2-6,https://biolit.fr/observations/observation-6e410bbe-c544-45b2-b4ad-b11799032cb2-6/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/crambe plage (7)-scaled.jpg,,TRUE, +N1,58896,sortie-8a62c2d0-49b3-440f-9089-9a1f005f7ca3,https://biolit.fr/sorties/sortie-8a62c2d0-49b3-440f-9089-9a1f005f7ca3/,jean vaireaux,,4/24/2021 0:00,8.0:15,10.0000000,49.492176000000,0.093614000000,,Le Havre,35458,observation-8a62c2d0-49b3-440f-9089-9a1f005f7ca3,https://biolit.fr/observations/observation-8a62c2d0-49b3-440f-9089-9a1f005f7ca3/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/Crambe digue nord (2)-scaled.jpg,,TRUE, +N1,58896,sortie-8a62c2d0-49b3-440f-9089-9a1f005f7ca3,https://biolit.fr/sorties/sortie-8a62c2d0-49b3-440f-9089-9a1f005f7ca3/,jean vaireaux,,4/24/2021 0:00,8.0:15,10.0000000,49.492176000000,0.093614000000,,Le Havre,35460,observation-8a62c2d0-49b3-440f-9089-9a1f005f7ca3-2,https://biolit.fr/observations/observation-8a62c2d0-49b3-440f-9089-9a1f005f7ca3-2/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/Crambe digue nord (3)-scaled.jpg,,TRUE, +N1,58896,sortie-8a62c2d0-49b3-440f-9089-9a1f005f7ca3,https://biolit.fr/sorties/sortie-8a62c2d0-49b3-440f-9089-9a1f005f7ca3/,jean vaireaux,,4/24/2021 0:00,8.0:15,10.0000000,49.492176000000,0.093614000000,,Le Havre,35462,observation-8a62c2d0-49b3-440f-9089-9a1f005f7ca3-3,https://biolit.fr/observations/observation-8a62c2d0-49b3-440f-9089-9a1f005f7ca3-3/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/Crambe digue nord (4)-scaled.jpg,,TRUE, +N1,58896,sortie-8a62c2d0-49b3-440f-9089-9a1f005f7ca3,https://biolit.fr/sorties/sortie-8a62c2d0-49b3-440f-9089-9a1f005f7ca3/,jean vaireaux,,4/24/2021 0:00,8.0:15,10.0000000,49.492176000000,0.093614000000,,Le Havre,35464,observation-8a62c2d0-49b3-440f-9089-9a1f005f7ca3-4,https://biolit.fr/observations/observation-8a62c2d0-49b3-440f-9089-9a1f005f7ca3-4/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/Crambe digue nord (5)-scaled.jpg,,TRUE, +N1,58896,sortie-8a62c2d0-49b3-440f-9089-9a1f005f7ca3,https://biolit.fr/sorties/sortie-8a62c2d0-49b3-440f-9089-9a1f005f7ca3/,jean vaireaux,,4/24/2021 0:00,8.0:15,10.0000000,49.492176000000,0.093614000000,,Le Havre,35466,observation-8a62c2d0-49b3-440f-9089-9a1f005f7ca3-5,https://biolit.fr/observations/observation-8a62c2d0-49b3-440f-9089-9a1f005f7ca3-5/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/Crambe digue nord (6)-scaled.jpg,,TRUE, +N1,58896,sortie-8a62c2d0-49b3-440f-9089-9a1f005f7ca3,https://biolit.fr/sorties/sortie-8a62c2d0-49b3-440f-9089-9a1f005f7ca3/,jean vaireaux,,4/24/2021 0:00,8.0:15,10.0000000,49.492176000000,0.093614000000,,Le Havre,35468,observation-8a62c2d0-49b3-440f-9089-9a1f005f7ca3-6,https://biolit.fr/observations/observation-8a62c2d0-49b3-440f-9089-9a1f005f7ca3-6/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/Crambe digue nord (7)-scaled.jpg,,TRUE, +N1,58897,sortie-80b3c354-a3fa-47f4-bece-5ae080aac525,https://biolit.fr/sorties/sortie-80b3c354-a3fa-47f4-bece-5ae080aac525/,jean vaireaux,,4/24/2021 0:00,8.0:15,10.0000000,49.492597000000,0.093125000000,,Le Havre,35470,observation-80b3c354-a3fa-47f4-bece-5ae080aac525,https://biolit.fr/observations/observation-80b3c354-a3fa-47f4-bece-5ae080aac525/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/les survivants-scaled.jpg,,TRUE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35474,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Carpobrotus edulis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6880-scaled.jpg,,TRUE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35476,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-2,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-2/,Carpobrotus acinaciformis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6889-scaled.jpg,,TRUE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35478,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-3,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-3/,Pallenis maritima,Astérolide maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6883-scaled.jpg,,TRUE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35480,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-4,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-4/,Agave americana,Agave d'Amérique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6892-scaled.jpg,,TRUE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35482,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-5,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-5/,Jacobaea maritima,Cinéraire maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6893 bis-scaled.jpg,,TRUE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35484,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-6,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-6/,Jacobaea maritima,Cinéraire maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6895-scaled.jpg,,TRUE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35490,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-9,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6915 bis-scaled.jpg,,FALSE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35498,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-13,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-13/,Lobularia maritima,Alysson maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6922-scaled.jpg,,TRUE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35500,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-14,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6926-scaled.jpg,,FALSE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35502,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-15,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6927-scaled.jpg,,FALSE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35504,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-16,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6928-scaled.jpg,,FALSE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35506,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-17,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6929 bis-scaled.jpg,,FALSE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35510,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-19,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6939-scaled.jpg,,FALSE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35512,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-20,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-20/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6940-scaled.jpg,,TRUE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35514,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-21,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6948-scaled.jpg,,FALSE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35516,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-22,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-22/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6951-scaled.jpg,,TRUE, +N1,58898,sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c,https://biolit.fr/sorties/sortie-d7a5a8d0-592b-4e17-bd43-d83be1fd409c/,Axel,,4/22/2021 0:00,16.0:15,17.0:15,43.209619000000,5.372566000000,,"Marseille, Parc National des Calanques",35518,observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-23,https://biolit.fr/observations/observation-d7a5a8d0-592b-4e17-bd43-d83be1fd409c-23/,Beta vulgaris subsp. maritima,Betterave maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6953-scaled.jpg,,TRUE, +N1,58899,sortie-811ab9b5-0de8-488e-92cc-96c7250aee10,https://biolit.fr/sorties/sortie-811ab9b5-0de8-488e-92cc-96c7250aee10/,Axel,,4/22/2021 0:00,13.0000000,15.0000000,43.213107000000,5.398251000000,,"Marseille, Parc National des Calanques",35530,observation-811ab9b5-0de8-488e-92cc-96c7250aee10-3,https://biolit.fr/observations/observation-811ab9b5-0de8-488e-92cc-96c7250aee10-3/,Lotus cytisoides,Lotier faux cytise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6814-scaled.jpg,,TRUE, +N1,58899,sortie-811ab9b5-0de8-488e-92cc-96c7250aee10,https://biolit.fr/sorties/sortie-811ab9b5-0de8-488e-92cc-96c7250aee10/,Axel,,4/22/2021 0:00,13.0000000,15.0000000,43.213107000000,5.398251000000,,"Marseille, Parc National des Calanques",35536,observation-811ab9b5-0de8-488e-92cc-96c7250aee10-6,https://biolit.fr/observations/observation-811ab9b5-0de8-488e-92cc-96c7250aee10-6/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6819-scaled.jpg,,TRUE, +N1,58899,sortie-811ab9b5-0de8-488e-92cc-96c7250aee10,https://biolit.fr/sorties/sortie-811ab9b5-0de8-488e-92cc-96c7250aee10/,Axel,,4/22/2021 0:00,13.0000000,15.0000000,43.213107000000,5.398251000000,,"Marseille, Parc National des Calanques",35538,observation-811ab9b5-0de8-488e-92cc-96c7250aee10-7,https://biolit.fr/observations/observation-811ab9b5-0de8-488e-92cc-96c7250aee10-7/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_6824-scaled.jpg,,TRUE, +N1,58899,sortie-811ab9b5-0de8-488e-92cc-96c7250aee10,https://biolit.fr/sorties/sortie-811ab9b5-0de8-488e-92cc-96c7250aee10/,Axel,,4/22/2021 0:00,13.0000000,15.0000000,43.213107000000,5.398251000000,,"Marseille, Parc National des Calanques",35542,observation-811ab9b5-0de8-488e-92cc-96c7250aee10-9,https://biolit.fr/observations/observation-811ab9b5-0de8-488e-92cc-96c7250aee10-9/,Jacobaea maritima,Cinéraire maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6830-scaled.jpg | https://biolit.fr/wp-content/uploads/2021/04/IMG_6828-scaled-1-scaled.jpg,,TRUE, +N1,58899,sortie-811ab9b5-0de8-488e-92cc-96c7250aee10,https://biolit.fr/sorties/sortie-811ab9b5-0de8-488e-92cc-96c7250aee10/,Axel,,4/22/2021 0:00,13.0000000,15.0000000,43.213107000000,5.398251000000,,"Marseille, Parc National des Calanques",35544,observation-811ab9b5-0de8-488e-92cc-96c7250aee10-10,https://biolit.fr/observations/observation-811ab9b5-0de8-488e-92cc-96c7250aee10-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6835-scaled.jpg,,FALSE, +N1,58899,sortie-811ab9b5-0de8-488e-92cc-96c7250aee10,https://biolit.fr/sorties/sortie-811ab9b5-0de8-488e-92cc-96c7250aee10/,Axel,,4/22/2021 0:00,13.0000000,15.0000000,43.213107000000,5.398251000000,,"Marseille, Parc National des Calanques",35546,observation-811ab9b5-0de8-488e-92cc-96c7250aee10-11,https://biolit.fr/observations/observation-811ab9b5-0de8-488e-92cc-96c7250aee10-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6836-scaled.jpg,,FALSE, +N1,58899,sortie-811ab9b5-0de8-488e-92cc-96c7250aee10,https://biolit.fr/sorties/sortie-811ab9b5-0de8-488e-92cc-96c7250aee10/,Axel,,4/22/2021 0:00,13.0000000,15.0000000,43.213107000000,5.398251000000,,"Marseille, Parc National des Calanques",35550,observation-811ab9b5-0de8-488e-92cc-96c7250aee10-13,https://biolit.fr/observations/observation-811ab9b5-0de8-488e-92cc-96c7250aee10-13/,Lotus cytisoides,Lotier faux cytise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6842-scaled.jpg | https://biolit.fr/wp-content/uploads/2021/04/IMG_6840-scaled-1.jpg,,TRUE, +N1,58900,sortie-fb8f27a1-49cb-49fd-8516-00023ca1b250,https://biolit.fr/sorties/sortie-fb8f27a1-49cb-49fd-8516-00023ca1b250/,Phil,,4/16/2021 0:00,12.0000000,12.0:45,47.870249000000,-3.911907000000,,Concarneau - Finistère,35562,observation-fb8f27a1-49cb-49fd-8516-00023ca1b250,https://biolit.fr/observations/observation-fb8f27a1-49cb-49fd-8516-00023ca1b250/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210416_123930.jpg,,TRUE, +N1,58900,sortie-fb8f27a1-49cb-49fd-8516-00023ca1b250,https://biolit.fr/sorties/sortie-fb8f27a1-49cb-49fd-8516-00023ca1b250/,Phil,,4/16/2021 0:00,12.0000000,12.0:45,47.870249000000,-3.911907000000,,Concarneau - Finistère,35564,observation-fb8f27a1-49cb-49fd-8516-00023ca1b250-2,https://biolit.fr/observations/observation-fb8f27a1-49cb-49fd-8516-00023ca1b250-2/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210416_124002.jpg,,TRUE, +N1,58900,sortie-fb8f27a1-49cb-49fd-8516-00023ca1b250,https://biolit.fr/sorties/sortie-fb8f27a1-49cb-49fd-8516-00023ca1b250/,Phil,,4/16/2021 0:00,12.0000000,12.0:45,47.870249000000,-3.911907000000,,Concarneau - Finistère,35566,observation-fb8f27a1-49cb-49fd-8516-00023ca1b250-3,https://biolit.fr/observations/observation-fb8f27a1-49cb-49fd-8516-00023ca1b250-3/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210416_124018.jpg,,TRUE, +N1,58901,sortie-9eb8124a-42ac-4b0b-a0ad-92494835faec,https://biolit.fr/sorties/sortie-9eb8124a-42ac-4b0b-a0ad-92494835faec/,Axel,,4/19/2021 0:00,17.0:45,18.0:15,43.259419000000,5.373869000000,,"Marseille, Embouchure de l'Huveaune",35568,observation-9eb8124a-42ac-4b0b-a0ad-92494835faec,https://biolit.fr/observations/observation-9eb8124a-42ac-4b0b-a0ad-92494835faec/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210419_174634-scaled.jpg,,TRUE, +N1,58901,sortie-9eb8124a-42ac-4b0b-a0ad-92494835faec,https://biolit.fr/sorties/sortie-9eb8124a-42ac-4b0b-a0ad-92494835faec/,Axel,,4/19/2021 0:00,17.0:45,18.0:15,43.259419000000,5.373869000000,,"Marseille, Embouchure de l'Huveaune",35570,observation-9eb8124a-42ac-4b0b-a0ad-92494835faec-2,https://biolit.fr/observations/observation-9eb8124a-42ac-4b0b-a0ad-92494835faec-2/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210419_174820-scaled.jpg,,TRUE, +N1,58901,sortie-9eb8124a-42ac-4b0b-a0ad-92494835faec,https://biolit.fr/sorties/sortie-9eb8124a-42ac-4b0b-a0ad-92494835faec/,Axel,,4/19/2021 0:00,17.0:45,18.0:15,43.259419000000,5.373869000000,,"Marseille, Embouchure de l'Huveaune",35572,observation-9eb8124a-42ac-4b0b-a0ad-92494835faec-3,https://biolit.fr/observations/observation-9eb8124a-42ac-4b0b-a0ad-92494835faec-3/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210419_174945 bis.jpg,,TRUE, +N1,58901,sortie-9eb8124a-42ac-4b0b-a0ad-92494835faec,https://biolit.fr/sorties/sortie-9eb8124a-42ac-4b0b-a0ad-92494835faec/,Axel,,4/19/2021 0:00,17.0:45,18.0:15,43.259419000000,5.373869000000,,"Marseille, Embouchure de l'Huveaune",35574,observation-9eb8124a-42ac-4b0b-a0ad-92494835faec-4,https://biolit.fr/observations/observation-9eb8124a-42ac-4b0b-a0ad-92494835faec-4/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210419_175034-scaled.jpg,,TRUE, +N1,58901,sortie-9eb8124a-42ac-4b0b-a0ad-92494835faec,https://biolit.fr/sorties/sortie-9eb8124a-42ac-4b0b-a0ad-92494835faec/,Axel,,4/19/2021 0:00,17.0:45,18.0:15,43.259419000000,5.373869000000,,"Marseille, Embouchure de l'Huveaune",35576,observation-9eb8124a-42ac-4b0b-a0ad-92494835faec-5,https://biolit.fr/observations/observation-9eb8124a-42ac-4b0b-a0ad-92494835faec-5/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210419_175416 bis.jpg,,TRUE, +N1,58901,sortie-9eb8124a-42ac-4b0b-a0ad-92494835faec,https://biolit.fr/sorties/sortie-9eb8124a-42ac-4b0b-a0ad-92494835faec/,Axel,,4/19/2021 0:00,17.0:45,18.0:15,43.259419000000,5.373869000000,,"Marseille, Embouchure de l'Huveaune",35580,observation-9eb8124a-42ac-4b0b-a0ad-92494835faec-7,https://biolit.fr/observations/observation-9eb8124a-42ac-4b0b-a0ad-92494835faec-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210419_181028-scaled.jpg,,FALSE, +N1,58902,sortie-ca32a30c-f908-4c04-a60b-f1d1311bcd76,https://biolit.fr/sorties/sortie-ca32a30c-f908-4c04-a60b-f1d1311bcd76/,Conrad Van Dorssen,,4/18/2021 0:00,20.0000000,22.0000000,47.839361000000,-4.34498100000,,Plomeur,35584,observation-ca32a30c-f908-4c04-a60b-f1d1311bcd76-2,https://biolit.fr/observations/observation-ca32a30c-f908-4c04-a60b-f1d1311bcd76-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0300.JPG | https://biolit.fr/wp-content/uploads/2021/04/IMG_02991-scaled-1-scaled.jpg,,FALSE, +N1,58903,sortie-ac42f724-43c1-4614-9ca6-d0440abbcc30,https://biolit.fr/sorties/sortie-ac42f724-43c1-4614-9ca6-d0440abbcc30/,Axel,,4/16/2021 0:00,14.0000000,14.0000000,43.273497000000,5.361939000000,,"Marseille, Plage du Prophète",35588,observation-ac42f724-43c1-4614-9ca6-d0440abbcc30-2,https://biolit.fr/observations/observation-ac42f724-43c1-4614-9ca6-d0440abbcc30-2/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210416_140406-scaled.jpg | https://biolit.fr/wp-content/uploads/2021/04/IMG_20210416_140352bis-scaled.jpg,,TRUE, +N1,58904,sortie-c5e32373-f156-41ec-8ab7-8dcc95ca1b73,https://biolit.fr/sorties/sortie-c5e32373-f156-41ec-8ab7-8dcc95ca1b73/,Phil,,2/22/2021 0:00,10.0:55,11.0000000,48.669277000000,-4.370844000000,,Kerlouan - Finistère,35590,observation-c5e32373-f156-41ec-8ab7-8dcc95ca1b73,https://biolit.fr/observations/observation-c5e32373-f156-41ec-8ab7-8dcc95ca1b73/,Littorina compressa,Littorine à lignes noires,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210227_105903.jpg,,TRUE, +N1,58904,sortie-c5e32373-f156-41ec-8ab7-8dcc95ca1b73,https://biolit.fr/sorties/sortie-c5e32373-f156-41ec-8ab7-8dcc95ca1b73/,Phil,,2/22/2021 0:00,10.0:55,11.0000000,48.669277000000,-4.370844000000,,Kerlouan - Finistère,35592,observation-c5e32373-f156-41ec-8ab7-8dcc95ca1b73-2,https://biolit.fr/observations/observation-c5e32373-f156-41ec-8ab7-8dcc95ca1b73-2/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210227_105849.jpg,,TRUE, +N1,58905,sortie-093ea724-8d16-466e-b785-d1b1fdd92c69,https://biolit.fr/sorties/sortie-093ea724-8d16-466e-b785-d1b1fdd92c69/,Phil,,5/22/2020 0:00,14.0000000,14.000005,47.799827000000,-4.180993000000,,Loctudy - Finistère,35594,observation-093ea724-8d16-466e-b785-d1b1fdd92c69,https://biolit.fr/observations/observation-093ea724-8d16-466e-b785-d1b1fdd92c69/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200522_140728.jpg,,TRUE, +N1,58905,sortie-093ea724-8d16-466e-b785-d1b1fdd92c69,https://biolit.fr/sorties/sortie-093ea724-8d16-466e-b785-d1b1fdd92c69/,Phil,,5/22/2020 0:00,14.0000000,14.000005,47.799827000000,-4.180993000000,,Loctudy - Finistère,35596,observation-093ea724-8d16-466e-b785-d1b1fdd92c69-2,https://biolit.fr/observations/observation-093ea724-8d16-466e-b785-d1b1fdd92c69-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200522_140859.jpg,,TRUE, +N1,58906,sortie-d53787e7-f882-4889-adef-a212086bed77,https://biolit.fr/sorties/sortie-d53787e7-f882-4889-adef-a212086bed77/,Phil,,4/16/2021 0:00,12.0:35,12.0000000,47.870546000000,-3.911628000000,,Concarneau - Finistère,35598,observation-d53787e7-f882-4889-adef-a212086bed77,https://biolit.fr/observations/observation-d53787e7-f882-4889-adef-a212086bed77/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210416_123918.jpg,,TRUE, +N1,58906,sortie-d53787e7-f882-4889-adef-a212086bed77,https://biolit.fr/sorties/sortie-d53787e7-f882-4889-adef-a212086bed77/,Phil,,4/16/2021 0:00,12.0:35,12.0000000,47.870546000000,-3.911628000000,,Concarneau - Finistère,35600,observation-d53787e7-f882-4889-adef-a212086bed77-2,https://biolit.fr/observations/observation-d53787e7-f882-4889-adef-a212086bed77-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210416_123907-scaled.jpg,,FALSE, +N1,58907,sortie-ca8d89d8-8db6-4718-879b-ec362446957b,https://biolit.fr/sorties/sortie-ca8d89d8-8db6-4718-879b-ec362446957b/,jean vaireaux,,4/17/2021 0:00,8.0000000,11.0:45,49.618633000000,0.135810000000,,entre cauville sur mer et heuqueville,35602,observation-ca8d89d8-8db6-4718-879b-ec362446957b,https://biolit.fr/observations/observation-ca8d89d8-8db6-4718-879b-ec362446957b/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/crambe heuqueville (1)-scaled.jpg,,TRUE, +N1,58907,sortie-ca8d89d8-8db6-4718-879b-ec362446957b,https://biolit.fr/sorties/sortie-ca8d89d8-8db6-4718-879b-ec362446957b/,jean vaireaux,,4/17/2021 0:00,8.0000000,11.0:45,49.618633000000,0.135810000000,,entre cauville sur mer et heuqueville,35604,observation-ca8d89d8-8db6-4718-879b-ec362446957b-2,https://biolit.fr/observations/observation-ca8d89d8-8db6-4718-879b-ec362446957b-2/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/crambe heuqueville (2)-scaled.jpg,,TRUE, +N1,58907,sortie-ca8d89d8-8db6-4718-879b-ec362446957b,https://biolit.fr/sorties/sortie-ca8d89d8-8db6-4718-879b-ec362446957b/,jean vaireaux,,4/17/2021 0:00,8.0000000,11.0:45,49.618633000000,0.135810000000,,entre cauville sur mer et heuqueville,35606,observation-ca8d89d8-8db6-4718-879b-ec362446957b-3,https://biolit.fr/observations/observation-ca8d89d8-8db6-4718-879b-ec362446957b-3/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/crambe heuqueville (3)-scaled.jpg,,TRUE, +N1,58907,sortie-ca8d89d8-8db6-4718-879b-ec362446957b,https://biolit.fr/sorties/sortie-ca8d89d8-8db6-4718-879b-ec362446957b/,jean vaireaux,,4/17/2021 0:00,8.0000000,11.0:45,49.618633000000,0.135810000000,,entre cauville sur mer et heuqueville,35608,observation-ca8d89d8-8db6-4718-879b-ec362446957b-4,https://biolit.fr/observations/observation-ca8d89d8-8db6-4718-879b-ec362446957b-4/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/crambe heuqueville (4)-scaled.jpg,,TRUE, +N1,58907,sortie-ca8d89d8-8db6-4718-879b-ec362446957b,https://biolit.fr/sorties/sortie-ca8d89d8-8db6-4718-879b-ec362446957b/,jean vaireaux,,4/17/2021 0:00,8.0000000,11.0:45,49.618633000000,0.135810000000,,entre cauville sur mer et heuqueville,35610,observation-ca8d89d8-8db6-4718-879b-ec362446957b-5,https://biolit.fr/observations/observation-ca8d89d8-8db6-4718-879b-ec362446957b-5/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/crambe heuqueville (5)-scaled.jpg,,TRUE, +N1,58907,sortie-ca8d89d8-8db6-4718-879b-ec362446957b,https://biolit.fr/sorties/sortie-ca8d89d8-8db6-4718-879b-ec362446957b/,jean vaireaux,,4/17/2021 0:00,8.0000000,11.0:45,49.618633000000,0.135810000000,,entre cauville sur mer et heuqueville,35612,observation-ca8d89d8-8db6-4718-879b-ec362446957b-6,https://biolit.fr/observations/observation-ca8d89d8-8db6-4718-879b-ec362446957b-6/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/crambe heuqueville (6)-scaled.jpg,,TRUE, +N1,58907,sortie-ca8d89d8-8db6-4718-879b-ec362446957b,https://biolit.fr/sorties/sortie-ca8d89d8-8db6-4718-879b-ec362446957b/,jean vaireaux,,4/17/2021 0:00,8.0000000,11.0:45,49.618633000000,0.135810000000,,entre cauville sur mer et heuqueville,35614,observation-ca8d89d8-8db6-4718-879b-ec362446957b-7,https://biolit.fr/observations/observation-ca8d89d8-8db6-4718-879b-ec362446957b-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/crambe heuqueville (7)-scaled.jpg,,FALSE, +N1,58907,sortie-ca8d89d8-8db6-4718-879b-ec362446957b,https://biolit.fr/sorties/sortie-ca8d89d8-8db6-4718-879b-ec362446957b/,jean vaireaux,,4/17/2021 0:00,8.0000000,11.0:45,49.618633000000,0.135810000000,,entre cauville sur mer et heuqueville,35616,observation-ca8d89d8-8db6-4718-879b-ec362446957b-8,https://biolit.fr/observations/observation-ca8d89d8-8db6-4718-879b-ec362446957b-8/,Euphorbia portlandica,Euphorbe des estuaires,,https://biolit.fr/wp-content/uploads/2023/07/euphorbe maritime (1)-scaled.jpg,,TRUE, +N1,58907,sortie-ca8d89d8-8db6-4718-879b-ec362446957b,https://biolit.fr/sorties/sortie-ca8d89d8-8db6-4718-879b-ec362446957b/,jean vaireaux,,4/17/2021 0:00,8.0000000,11.0:45,49.618633000000,0.135810000000,,entre cauville sur mer et heuqueville,35618,observation-ca8d89d8-8db6-4718-879b-ec362446957b-9,https://biolit.fr/observations/observation-ca8d89d8-8db6-4718-879b-ec362446957b-9/,Euphorbia portlandica,Euphorbe des estuaires,,https://biolit.fr/wp-content/uploads/2023/07/euphorbe maritime (2)-scaled.jpg,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35620,observation-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona fascicularis_2.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35622,observation-708998eb-90c2-4d20-be7e-576259ef6393-2,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_9.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35624,observation-708998eb-90c2-4d20-be7e-576259ef6393-3,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-3/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragaceae_1.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35626,observation-708998eb-90c2-4d20-be7e-576259ef6393-4,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Anémone sp.PNG,,FALSE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35628,observation-708998eb-90c2-4d20-be7e-576259ef6393-5,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-5/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_9.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35630,observation-708998eb-90c2-4d20-be7e-576259ef6393-6,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-6/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/Anthopleura balii_2.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35632,observation-708998eb-90c2-4d20-be7e-576259ef6393-7,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie sp_3.PNG,,FALSE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35633,observation-708998eb-90c2-4d20-be7e-576259ef6393-8,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-8/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_6.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35635,observation-708998eb-90c2-4d20-be7e-576259ef6393-9,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/bryo sp_5.PNG,,FALSE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35637,observation-708998eb-90c2-4d20-be7e-576259ef6393-10,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-10/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_8.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35639,observation-708998eb-90c2-4d20-be7e-576259ef6393-11,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-11/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_11.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35641,observation-708998eb-90c2-4d20-be7e-576259ef6393-12,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-12/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crepidula fornicata.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35643,observation-708998eb-90c2-4d20-be7e-576259ef6393-13,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/doris verrucosa pe.PNG,,FALSE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35644,observation-708998eb-90c2-4d20-be7e-576259ef6393-14,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-14/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_12.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35646,observation-708998eb-90c2-4d20-be7e-576259ef6393-15,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-15/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Eriphia verrucosa_3.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35648,observation-708998eb-90c2-4d20-be7e-576259ef6393-16,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-16/,Gari depressa,Psammobie déprimée,,https://biolit.fr/wp-content/uploads/2023/07/Gari depressa_5.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35650,observation-708998eb-90c2-4d20-be7e-576259ef6393-17,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-17/,Hiatella arctica,Hiatelle ridée,,https://biolit.fr/wp-content/uploads/2023/07/Hiatella arctica.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35651,observation-708998eb-90c2-4d20-be7e-576259ef6393-18,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-18/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_7.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35653,observation-708998eb-90c2-4d20-be7e-576259ef6393-19,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-19/,Modiolus barbatus,Modiole barbue,,https://biolit.fr/wp-content/uploads/2023/07/Modiolus barbatus_1.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35655,observation-708998eb-90c2-4d20-be7e-576259ef6393-20,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-20/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis lumbriciformis_0.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35657,observation-708998eb-90c2-4d20-be7e-576259ef6393-21,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-21/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_12.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35659,observation-708998eb-90c2-4d20-be7e-576259ef6393-22,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-22/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebra erinaceus_2.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35661,observation-708998eb-90c2-4d20-be7e-576259ef6393-23,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/ponte de limace.PNG,,FALSE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35663,observation-708998eb-90c2-4d20-be7e-576259ef6393-24,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-24/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_10.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35665,observation-708998eb-90c2-4d20-be7e-576259ef6393-25,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-25/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_8.PNG,,TRUE, +N1,58908,sortie-708998eb-90c2-4d20-be7e-576259ef6393,https://biolit.fr/sorties/sortie-708998eb-90c2-4d20-be7e-576259ef6393/,Roman,,4/17/2021 0:00,14.0:45,16.0:15,47.708340000000,-3.362450000000,,Port-Louis,35667,observation-708998eb-90c2-4d20-be7e-576259ef6393-26,https://biolit.fr/observations/observation-708998eb-90c2-4d20-be7e-576259ef6393-26/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_9.PNG,,TRUE, +N1,58909,sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a,https://biolit.fr/sorties/sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a/,Roman,,4/15/2021 0:00,14.0000000,15.0000000,47.653928000000,-3.230341000000,,Plouhinec,35669,observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a,https://biolit.fr/observations/observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_8.PNG,,TRUE, +N1,58909,sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a,https://biolit.fr/sorties/sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a/,Roman,,4/15/2021 0:00,14.0000000,15.0000000,47.653928000000,-3.230341000000,,Plouhinec,35671,observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-2,https://biolit.fr/observations/observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragaceae_0.PNG,,TRUE, +N1,58909,sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a,https://biolit.fr/sorties/sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a/,Roman,,4/15/2021 0:00,14.0000000,15.0000000,47.653928000000,-3.230341000000,,Plouhinec,35673,observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-3,https://biolit.fr/observations/observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-3/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/Echinocardium cordatum_0.PNG,,TRUE, +N1,58909,sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a,https://biolit.fr/sorties/sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a/,Roman,,4/15/2021 0:00,14.0000000,15.0000000,47.653928000000,-3.230341000000,,Plouhinec,35675,observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-4,https://biolit.fr/observations/observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Hydre sp.PNG,,FALSE, +N1,58909,sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a,https://biolit.fr/sorties/sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a/,Roman,,4/15/2021 0:00,14.0000000,15.0000000,47.653928000000,-3.230341000000,,Plouhinec,35677,observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-5,https://biolit.fr/observations/observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-5/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/2023/07/Mactra stultorum.PNG,,TRUE, +N1,58909,sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a,https://biolit.fr/sorties/sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a/,Roman,,4/15/2021 0:00,14.0000000,15.0000000,47.653928000000,-3.230341000000,,Plouhinec,35679,observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-6,https://biolit.fr/observations/observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-6/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_10.PNG,,TRUE, +N1,58909,sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a,https://biolit.fr/sorties/sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a/,Roman,,4/15/2021 0:00,14.0000000,15.0000000,47.653928000000,-3.230341000000,,Plouhinec,35681,observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-7,https://biolit.fr/observations/observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-7/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_10.PNG,,TRUE, +N1,58909,sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a,https://biolit.fr/sorties/sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a/,Roman,,4/15/2021 0:00,14.0000000,15.0000000,47.653928000000,-3.230341000000,,Plouhinec,35683,observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-8,https://biolit.fr/observations/observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-8/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_11.PNG,,TRUE, +N1,58909,sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a,https://biolit.fr/sorties/sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a/,Roman,,4/15/2021 0:00,14.0000000,15.0000000,47.653928000000,-3.230341000000,,Plouhinec,35685,observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-9,https://biolit.fr/observations/observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-9/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Paracentrotus lividus_6.PNG,,TRUE, +N1,58909,sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a,https://biolit.fr/sorties/sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a/,Roman,,4/15/2021 0:00,14.0000000,15.0000000,47.653928000000,-3.230341000000,,Plouhinec,35687,observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-10,https://biolit.fr/observations/observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-10/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/Ponte de nucella lapillus_1.PNG,,TRUE, +N1,58909,sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a,https://biolit.fr/sorties/sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a/,Roman,,4/15/2021 0:00,14.0000000,15.0000000,47.653928000000,-3.230341000000,,Plouhinec,35689,observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-11,https://biolit.fr/observations/observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Rhizostoma octopus pe.PNG,,FALSE, +N1,58909,sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a,https://biolit.fr/sorties/sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a/,Roman,,4/15/2021 0:00,14.0000000,15.0000000,47.653928000000,-3.230341000000,,Plouhinec,35691,observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-12,https://biolit.fr/observations/observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-12/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/Sabellaria alveolata_2.PNG,,TRUE, +N1,58909,sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a,https://biolit.fr/sorties/sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a/,Roman,,4/15/2021 0:00,14.0000000,15.0000000,47.653928000000,-3.230341000000,,Plouhinec,35693,observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-13,https://biolit.fr/observations/observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-13/,Symsagittifera roscoffensis,Ver plat de Roscoff,,https://biolit.fr/wp-content/uploads/2023/07/Symsagittifera roscoffensis.PNG,,TRUE, +N1,58909,sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a,https://biolit.fr/sorties/sortie-70b634fe-5cd2-4ca3-a7f6-046525e5b63a/,Roman,,4/15/2021 0:00,14.0000000,15.0000000,47.653928000000,-3.230341000000,,Plouhinec,35695,observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-14,https://biolit.fr/observations/observation-70b634fe-5cd2-4ca3-a7f6-046525e5b63a-14/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/Trivia monacha_0.PNG,,TRUE, +N1,58910,sortie-61abd291-c226-43fd-a9de-4bb159a03212,https://biolit.fr/sorties/sortie-61abd291-c226-43fd-a9de-4bb159a03212/,Anthony Palermo,,4/15/2021 0:00,15.0000000,18.0000000,43.561099000000,7.063763000000,,Cannes,35699,observation-61abd291-c226-43fd-a9de-4bb159a03212-2,https://biolit.fr/observations/observation-61abd291-c226-43fd-a9de-4bb159a03212-2/,Opuntia ficus,Figuier de barbarie,,https://biolit.fr/wp-content/uploads/2023/07/20210415_161342_resized_1.jpg,,TRUE, +N1,58910,sortie-61abd291-c226-43fd-a9de-4bb159a03212,https://biolit.fr/sorties/sortie-61abd291-c226-43fd-a9de-4bb159a03212/,Anthony Palermo,,4/15/2021 0:00,15.0000000,18.0000000,43.561099000000,7.063763000000,,Cannes,35705,observation-61abd291-c226-43fd-a9de-4bb159a03212-5,https://biolit.fr/observations/observation-61abd291-c226-43fd-a9de-4bb159a03212-5/,Tropaeolum majus,Grande capucine,,https://biolit.fr/wp-content/uploads/2023/07/20210415_155944_resized_1.jpg,,TRUE, +N1,58910,sortie-61abd291-c226-43fd-a9de-4bb159a03212,https://biolit.fr/sorties/sortie-61abd291-c226-43fd-a9de-4bb159a03212/,Anthony Palermo,,4/15/2021 0:00,15.0000000,18.0000000,43.561099000000,7.063763000000,,Cannes,35707,observation-61abd291-c226-43fd-a9de-4bb159a03212-6,https://biolit.fr/observations/observation-61abd291-c226-43fd-a9de-4bb159a03212-6/,Lavandula stoechas,Lavande papillon,,https://biolit.fr/wp-content/uploads/2023/07/20210415_153605_resized_1.jpg,,TRUE, +N1,58910,sortie-61abd291-c226-43fd-a9de-4bb159a03212,https://biolit.fr/sorties/sortie-61abd291-c226-43fd-a9de-4bb159a03212/,Anthony Palermo,,4/15/2021 0:00,15.0000000,18.0000000,43.561099000000,7.063763000000,,Cannes,35709,observation-61abd291-c226-43fd-a9de-4bb159a03212-7,https://biolit.fr/observations/observation-61abd291-c226-43fd-a9de-4bb159a03212-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210415_153313_resized_1.jpg,,FALSE, +N1,58910,sortie-61abd291-c226-43fd-a9de-4bb159a03212,https://biolit.fr/sorties/sortie-61abd291-c226-43fd-a9de-4bb159a03212/,Anthony Palermo,,4/15/2021 0:00,15.0000000,18.0000000,43.561099000000,7.063763000000,,Cannes,35711,observation-61abd291-c226-43fd-a9de-4bb159a03212-8,https://biolit.fr/observations/observation-61abd291-c226-43fd-a9de-4bb159a03212-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210415_154702_resized_1.jpg,,FALSE, +N1,58910,sortie-61abd291-c226-43fd-a9de-4bb159a03212,https://biolit.fr/sorties/sortie-61abd291-c226-43fd-a9de-4bb159a03212/,Anthony Palermo,,4/15/2021 0:00,15.0000000,18.0000000,43.561099000000,7.063763000000,,Cannes,35713,observation-61abd291-c226-43fd-a9de-4bb159a03212-9,https://biolit.fr/observations/observation-61abd291-c226-43fd-a9de-4bb159a03212-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210415_155731_resized_1.jpg,,FALSE, +N1,58911,sortie-1ca47eeb-aef9-4cf9-9f72-d73b7b59e991,https://biolit.fr/sorties/sortie-1ca47eeb-aef9-4cf9-9f72-d73b7b59e991/,Anthony Palermo,,4/15/2021 0:00,14.0000000,15.0000000,43.563898000000,7.069514000000,,Golfe-Juan,35717,observation-1ca47eeb-aef9-4cf9-9f72-d73b7b59e991,https://biolit.fr/observations/observation-1ca47eeb-aef9-4cf9-9f72-d73b7b59e991/,Carpobrotus edulis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/20210415_150309_resized_1.jpg,,TRUE, +N1,58911,sortie-1ca47eeb-aef9-4cf9-9f72-d73b7b59e991,https://biolit.fr/sorties/sortie-1ca47eeb-aef9-4cf9-9f72-d73b7b59e991/,Anthony Palermo,,4/15/2021 0:00,14.0000000,15.0000000,43.563898000000,7.069514000000,,Golfe-Juan,35719,observation-1ca47eeb-aef9-4cf9-9f72-d73b7b59e991-2,https://biolit.fr/observations/observation-1ca47eeb-aef9-4cf9-9f72-d73b7b59e991-2/,Carpobrotus edulis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/20210415_150422_resized_1.jpg,,TRUE, +N1,58911,sortie-1ca47eeb-aef9-4cf9-9f72-d73b7b59e991,https://biolit.fr/sorties/sortie-1ca47eeb-aef9-4cf9-9f72-d73b7b59e991/,Anthony Palermo,,4/15/2021 0:00,14.0000000,15.0000000,43.563898000000,7.069514000000,,Golfe-Juan,35723,observation-1ca47eeb-aef9-4cf9-9f72-d73b7b59e991-4,https://biolit.fr/observations/observation-1ca47eeb-aef9-4cf9-9f72-d73b7b59e991-4/,Malva arborea,Lavatère arborescente,,https://biolit.fr/wp-content/uploads/2023/07/20210415_150826_resized_1.jpg,,TRUE, +N1,58912,sortie-5608a670-d8c8-471d-9868-4f60657f4c91,https://biolit.fr/sorties/sortie-5608a670-d8c8-471d-9868-4f60657f4c91/,Phil,,04/01/2021,13.000005,13.0000000,47.795625000000,-4.274756000000,,Léchiagat - Finistère,35725,observation-5608a670-d8c8-471d-9868-4f60657f4c91,https://biolit.fr/observations/observation-5608a670-d8c8-471d-9868-4f60657f4c91/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210401_131023.jpg,,TRUE, +N1,58912,sortie-5608a670-d8c8-471d-9868-4f60657f4c91,https://biolit.fr/sorties/sortie-5608a670-d8c8-471d-9868-4f60657f4c91/,Phil,,04/01/2021,13.000005,13.0000000,47.795625000000,-4.274756000000,,Léchiagat - Finistère,35727,observation-5608a670-d8c8-471d-9868-4f60657f4c91-2,https://biolit.fr/observations/observation-5608a670-d8c8-471d-9868-4f60657f4c91-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210401_131015.jpg,,TRUE, +N1,58912,sortie-5608a670-d8c8-471d-9868-4f60657f4c91,https://biolit.fr/sorties/sortie-5608a670-d8c8-471d-9868-4f60657f4c91/,Phil,,04/01/2021,13.000005,13.0000000,47.795625000000,-4.274756000000,,Léchiagat - Finistère,35729,observation-5608a670-d8c8-471d-9868-4f60657f4c91-3,https://biolit.fr/observations/observation-5608a670-d8c8-471d-9868-4f60657f4c91-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210401_130955.jpg,,TRUE, +N1,58912,sortie-5608a670-d8c8-471d-9868-4f60657f4c91,https://biolit.fr/sorties/sortie-5608a670-d8c8-471d-9868-4f60657f4c91/,Phil,,04/01/2021,13.000005,13.0000000,47.795625000000,-4.274756000000,,Léchiagat - Finistère,35731,observation-5608a670-d8c8-471d-9868-4f60657f4c91-4,https://biolit.fr/observations/observation-5608a670-d8c8-471d-9868-4f60657f4c91-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210401_130942.jpg,,TRUE, +N1,58912,sortie-5608a670-d8c8-471d-9868-4f60657f4c91,https://biolit.fr/sorties/sortie-5608a670-d8c8-471d-9868-4f60657f4c91/,Phil,,04/01/2021,13.000005,13.0000000,47.795625000000,-4.274756000000,,Léchiagat - Finistère,35733,observation-5608a670-d8c8-471d-9868-4f60657f4c91-5,https://biolit.fr/observations/observation-5608a670-d8c8-471d-9868-4f60657f4c91-5/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210401_131051.jpg,,TRUE, +N1,58912,sortie-5608a670-d8c8-471d-9868-4f60657f4c91,https://biolit.fr/sorties/sortie-5608a670-d8c8-471d-9868-4f60657f4c91/,Phil,,04/01/2021,13.000005,13.0000000,47.795625000000,-4.274756000000,,Léchiagat - Finistère,35735,observation-5608a670-d8c8-471d-9868-4f60657f4c91-6,https://biolit.fr/observations/observation-5608a670-d8c8-471d-9868-4f60657f4c91-6/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210401_131119.jpg,,TRUE, +N1,58913,sortie-982391e6-9d58-4bcd-bf51-db52bf294ece,https://biolit.fr/sorties/sortie-982391e6-9d58-4bcd-bf51-db52bf294ece/,Phil,,5/22/2020 0:00,13.0000000,14.0000000,47.800239000000,-4.18107900000,,Loctudy - Finistère,35741,observation-982391e6-9d58-4bcd-bf51-db52bf294ece-3,https://biolit.fr/observations/observation-982391e6-9d58-4bcd-bf51-db52bf294ece-3/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/20200522_140508.jpg,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35743,observation-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_7.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35745,observation-49213f11-834c-4647-9c29-ebbcc823e13b-2,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea_6.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35747,observation-49213f11-834c-4647-9c29-ebbcc823e13b-3,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-3/,Aeolidiella glauca,Eolis brillante,,https://biolit.fr/wp-content/uploads/2023/07/Aeolidiella glauca.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35749,observation-49213f11-834c-4647-9c29-ebbcc823e13b-4,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/anemonia viridis_8.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35750,observation-49213f11-834c-4647-9c29-ebbcc823e13b-5,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-5/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_3.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35752,observation-49213f11-834c-4647-9c29-ebbcc823e13b-6,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-6/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/anthopleura balii_1.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35754,observation-49213f11-834c-4647-9c29-ebbcc823e13b-7,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-7/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_5.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35756,observation-49213f11-834c-4647-9c29-ebbcc823e13b-8,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-8/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_5.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35758,observation-49213f11-834c-4647-9c29-ebbcc823e13b-9,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/bryo sp_4.PNG,,FALSE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35760,observation-49213f11-834c-4647-9c29-ebbcc823e13b-10,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-10/,Calyptraea chinensis,Chapeau chinois,,https://biolit.fr/wp-content/uploads/2023/07/Calyptraea chinensis.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35762,observation-49213f11-834c-4647-9c29-ebbcc823e13b-11,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-11/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_7.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35764,observation-49213f11-834c-4647-9c29-ebbcc823e13b-12,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-12/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_10.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35766,observation-49213f11-834c-4647-9c29-ebbcc823e13b-13,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp pe.PNG,,FALSE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35768,observation-49213f11-834c-4647-9c29-ebbcc823e13b-14,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-14/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_11.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35770,observation-49213f11-834c-4647-9c29-ebbcc823e13b-15,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-15/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Eriphia verrucosa_2.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35772,observation-49213f11-834c-4647-9c29-ebbcc823e13b-16,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-16/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/Haematopus ostralegus_0.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35774,observation-49213f11-834c-4647-9c29-ebbcc823e13b-17,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-17/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_6.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35776,observation-49213f11-834c-4647-9c29-ebbcc823e13b-18,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-18/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/Lipophrys pholis-scaled.jpg,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35777,observation-49213f11-834c-4647-9c29-ebbcc823e13b-19,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lithophaga rugosa.PNG,,FALSE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35779,observation-49213f11-834c-4647-9c29-ebbcc823e13b-20,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-20/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_2.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35781,observation-49213f11-834c-4647-9c29-ebbcc823e13b-21,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-21/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_9.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35783,observation-49213f11-834c-4647-9c29-ebbcc823e13b-22,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-22/,Microporella pseudomarsupiata,Microporelle ciliée noire,,https://biolit.fr/wp-content/uploads/2023/07/Microporella pseudomarsupiata.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35785,observation-49213f11-834c-4647-9c29-ebbcc823e13b-23,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-23/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_9.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35787,observation-49213f11-834c-4647-9c29-ebbcc823e13b-24,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-24/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes philippinarum.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35789,observation-49213f11-834c-4647-9c29-ebbcc823e13b-25,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-25/,Venerupis corrugata,Palourde-poulette,,https://biolit.fr/wp-content/uploads/2023/07/Venerupis aurea_0.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35791,observation-49213f11-834c-4647-9c29-ebbcc823e13b-26,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-26/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Watersipora subatra_0.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35793,observation-49213f11-834c-4647-9c29-ebbcc823e13b-27,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-27/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_7.PNG,,TRUE, +N1,58914,sortie-49213f11-834c-4647-9c29-ebbcc823e13b,https://biolit.fr/sorties/sortie-49213f11-834c-4647-9c29-ebbcc823e13b/,Roman,,04/01/2021,14.0:45,16.0000000,47.708983000000,-3.363437000000,,Port-Louis,35795,observation-49213f11-834c-4647-9c29-ebbcc823e13b-28,https://biolit.fr/observations/observation-49213f11-834c-4647-9c29-ebbcc823e13b-28/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_8.PNG,,TRUE, +N1,58915,sortie-2855cf87-082c-489d-b704-682592c4cd28,https://biolit.fr/sorties/sortie-2855cf87-082c-489d-b704-682592c4cd28/,CamilleAgui,,04/01/2021,9.0000000,11.0000000,43.09300600000,6.015405000000,,Vers la Garonne au Pradet,35797,observation-2855cf87-082c-489d-b704-682592c4cd28,https://biolit.fr/observations/observation-2855cf87-082c-489d-b704-682592c4cd28/,Hippocampus guttulatus,Hippocampe moucheté,,https://biolit.fr/wp-content/uploads/2023/07/928C3925-7A18-4C77-9FD5-B4D12FE7745A-scaled.jpeg,,TRUE, +N1,58915,sortie-2855cf87-082c-489d-b704-682592c4cd28,https://biolit.fr/sorties/sortie-2855cf87-082c-489d-b704-682592c4cd28/,CamilleAgui,,04/01/2021,9.0000000,11.0000000,43.09300600000,6.015405000000,,Vers la Garonne au Pradet,35799,observation-2855cf87-082c-489d-b704-682592c4cd28-2,https://biolit.fr/observations/observation-2855cf87-082c-489d-b704-682592c4cd28-2/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/2742F497-0CCE-4C0D-B08D-95807666ECB2-scaled.jpeg,,TRUE, +N1,58916,sortie-0f9625f2-1710-4a6e-83c1-35cf43e831d5,https://biolit.fr/sorties/sortie-0f9625f2-1710-4a6e-83c1-35cf43e831d5/,Phil,,03/12/2021,16.0:15,16.0000000,47.7901640000,-4.249029000000,,Tréffiagat - Finistère,35801,observation-0f9625f2-1710-4a6e-83c1-35cf43e831d5,https://biolit.fr/observations/observation-0f9625f2-1710-4a6e-83c1-35cf43e831d5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130871.JPG,,FALSE, +N1,58916,sortie-0f9625f2-1710-4a6e-83c1-35cf43e831d5,https://biolit.fr/sorties/sortie-0f9625f2-1710-4a6e-83c1-35cf43e831d5/,Phil,,03/12/2021,16.0:15,16.0000000,47.7901640000,-4.249029000000,,Tréffiagat - Finistère,35803,observation-0f9625f2-1710-4a6e-83c1-35cf43e831d5-2,https://biolit.fr/observations/observation-0f9625f2-1710-4a6e-83c1-35cf43e831d5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130872.JPG,,FALSE, +N1,58916,sortie-0f9625f2-1710-4a6e-83c1-35cf43e831d5,https://biolit.fr/sorties/sortie-0f9625f2-1710-4a6e-83c1-35cf43e831d5/,Phil,,03/12/2021,16.0:15,16.0000000,47.7901640000,-4.249029000000,,Tréffiagat - Finistère,35805,observation-0f9625f2-1710-4a6e-83c1-35cf43e831d5-3,https://biolit.fr/observations/observation-0f9625f2-1710-4a6e-83c1-35cf43e831d5-3/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/P1130869.JPG,,TRUE, +N1,58916,sortie-0f9625f2-1710-4a6e-83c1-35cf43e831d5,https://biolit.fr/sorties/sortie-0f9625f2-1710-4a6e-83c1-35cf43e831d5/,Phil,,03/12/2021,16.0:15,16.0000000,47.7901640000,-4.249029000000,,Tréffiagat - Finistère,35807,observation-0f9625f2-1710-4a6e-83c1-35cf43e831d5-4,https://biolit.fr/observations/observation-0f9625f2-1710-4a6e-83c1-35cf43e831d5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130868.JPG,,FALSE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35809,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona fascicularis_1.PNG,,TRUE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35811,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-2,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_6.PNG,,TRUE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35813,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-3,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-3/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea_5.PNG,,TRUE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35815,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-4,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-4/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/anémone sp_4.PNG,,TRUE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35817,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-5,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-5/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/anemonia viridis_7.PNG,,TRUE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35818,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-6,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-6/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_4.PNG,,TRUE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35820,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-7,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-7/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_9.PNG,,TRUE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35822,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-8,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-8/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Crassotrea gigas.PNG,,TRUE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35824,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-9,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 1_4.PNG,,FALSE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35826,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-10,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_10.PNG,,FALSE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35828,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-11,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-11/,Gari depressa,Psammobie déprimée,,https://biolit.fr/wp-content/uploads/2023/07/Gari depressa_4.PNG,,TRUE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35830,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-12,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-12/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_5.PNG,,TRUE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35832,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-13,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-13/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_1.PNG,,TRUE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35834,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-14,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-14/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_9.PNG,,TRUE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35836,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-15,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-15/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_10.PNG,,TRUE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35838,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-16,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-16/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_2.PNG,,TRUE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35840,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-17,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-17/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus_3.PNG,,TRUE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35842,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-18,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-18/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/Sabellaria alveolata_1.PNG,,TRUE, +N1,58917,sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8,https://biolit.fr/sorties/sortie-2963ec3d-bff6-467a-a03d-7a1bf12b90c8/,Roman,,3/28/2021 0:00,10.0:25,12.0000000,47.709562000000,-3.363196000000,,Port-Louis,35844,observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-19,https://biolit.fr/observations/observation-2963ec3d-bff6-467a-a03d-7a1bf12b90c8-19/,Sphaeromatidae (famille),Sphéromiens,,https://biolit.fr/wp-content/uploads/2023/07/Sphaeromatidae_2.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35846,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,,,,https://biolit.fr/wp-content/uploads/2023/07/Aiptasia sp pe.PNG,,FALSE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35848,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-2,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_6.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35850,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-3,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-3/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/Aplysia punctata_0.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35852,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-4,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-4/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/Arenaria interpres_0.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35854,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-5,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-5/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_3.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35856,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-6,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-6/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_11.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35858,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-7,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-7/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_4.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35860,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-8,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-8/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/blennie sp_3.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35861,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-9,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-9/,Botrylloides spp. (leachii violaceus diegensis),Botrylles,,https://biolit.fr/wp-content/uploads/2023/07/Botrylloides spp_0.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35863,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-10,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-10/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_4.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35865,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-11,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Bryo sp pe alcydion.PNG,,FALSE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35867,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-12,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-12/,Conger conger,Congre,,https://biolit.fr/wp-content/uploads/2023/07/Conger conger_0.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35869,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-13,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-13/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/Doris pseudoargus_0.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35871,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-14,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-14/,Dysidea fragilis,Eponge mie de pain mouillée,,https://biolit.fr/wp-content/uploads/2023/07/Dysidea fragilis.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35873,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-15,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/épiphyte sp.PNG,,FALSE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35875,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-16,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp1_1.PNG,,FALSE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35877,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-17,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-17/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/haliotis tuberculata_2.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35878,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-18,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-18/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Hinia reticulata.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35880,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-19,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-19/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_4.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35882,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-20,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-20/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissiumus et porcellana platycheles.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35884,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-21,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-21/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina obtusata_0-scaled.jpg,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35885,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-22,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-22/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_8.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35887,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-23,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-23/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia_2.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35889,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-24,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-24/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebra erinaceus_1.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35891,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-25,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-25/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/ophiotrix fragilis_1.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35892,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-26,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-26/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/Perforatus perforatus_1.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35894,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-27,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-27/,Pilumnus hirtellus,Pilumne hirsute,,https://biolit.fr/wp-content/uploads/2023/07/Pilumnus hirtellus_1.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35896,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-28,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-28/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_8.PNG,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35898,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-29,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pycnogonide.PNG,,FALSE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35900,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-30,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-30/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Watersipora subatra-rotated.jpg,,TRUE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35901,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-31,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_6.PNG,,FALSE, +N1,58918,sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d,https://biolit.fr/sorties/sortie-3e9a9028-9de9-4044-9b00-4c91b20caf2d/,Roman,,3/27/2021 0:00,10.0:15,11.0000000,47.703416000000,-3.349361000000,,Port-Louis,35903,observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-32,https://biolit.fr/observations/observation-3e9a9028-9de9-4044-9b00-4c91b20caf2d-32/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_7.PNG,,TRUE, +N1,58919,sortie-c407f9f8-7bf0-468a-96a0-294dde524343,https://biolit.fr/sorties/sortie-c407f9f8-7bf0-468a-96a0-294dde524343/,Romuald VIALE - EXPENATURE,,3/24/2021 0:00,15.0000000,16.0000000,43.034197000000,6.160443000000,ExpéNature,Plage de la baume,,,,,,,,,, +N1,58920,sortie-413bf06d-ea7c-478b-a349-b8a0a5489347,https://biolit.fr/sorties/sortie-413bf06d-ea7c-478b-a349-b8a0a5489347/,Romuald VIALE - EXPENATURE,,3/24/2021 0:00,11.0000000,12.0000000,43.031878000000,6.094573000000,ExpéNature,Calanque du blé,,,,,,,,,, +N1,58921,sortie-3f1ab2a8-f530-4c00-81b0-6a33aeae0e92,https://biolit.fr/sorties/sortie-3f1ab2a8-f530-4c00-81b0-6a33aeae0e92/,Romuald VIALE - EXPENATURE,,3/24/2021 0:00,10.0000000,11.0000000,43.041375000000,6.1009520000,ExpéNature,Calanque du Four à Chaux,35909,observation-3f1ab2a8-f530-4c00-81b0-6a33aeae0e92,https://biolit.fr/observations/observation-3f1ab2a8-f530-4c00-81b0-6a33aeae0e92/,,,,https://biolit.fr/wp-content/uploads/2023/07/giens.JPG,,FALSE, +N1,58922,sortie-0254d470-ec04-4dfa-a97c-ae5eb45b5bcf,https://biolit.fr/sorties/sortie-0254d470-ec04-4dfa-a97c-ae5eb45b5bcf/,Agent007,,3/21/2021 0:00,13.0000000,13.0000000,43.698254000000,7.188003000000,,Saint Jean Cap Ferrat,35911,observation-0254d470-ec04-4dfa-a97c-ae5eb45b5bcf,https://biolit.fr/observations/observation-0254d470-ec04-4dfa-a97c-ae5eb45b5bcf/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_9579-scaled.jpeg,,TRUE, +N1,58922,sortie-0254d470-ec04-4dfa-a97c-ae5eb45b5bcf,https://biolit.fr/sorties/sortie-0254d470-ec04-4dfa-a97c-ae5eb45b5bcf/,Agent007,,3/21/2021 0:00,13.0000000,13.0000000,43.698254000000,7.188003000000,,Saint Jean Cap Ferrat,35913,observation-0254d470-ec04-4dfa-a97c-ae5eb45b5bcf-2,https://biolit.fr/observations/observation-0254d470-ec04-4dfa-a97c-ae5eb45b5bcf-2/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_9581-scaled.jpeg,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35915,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita_3.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35917,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-2,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-2/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona fascicularis_0.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35919,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-3,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Aiptasia mutabilis.PNG,,FALSE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35921,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-4,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/anémone sp_3.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35923,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-5,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-5/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_5.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35925,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-6,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-6/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/anthopleura balii_1.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35926,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-7,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-7/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/asterias rubens_2.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35927,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-8,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-8/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_10.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35929,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-9,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-9/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_3.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35931,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-10,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-10/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/bryo sp_3.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35933,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-11,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-11/,Aplysilla rosea,Aplysille rose,,https://biolit.fr/wp-content/uploads/2023/07/éponge pe_0.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35935,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-12,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-12/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_3.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35937,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-13,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-13/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_1.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35939,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-14,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-14/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_7.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35941,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-15,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-15/,Metridium senile,Œillet de mer,,https://biolit.fr/wp-content/uploads/2023/07/metridium senile pe.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35942,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-16,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-16/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia_1.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35944,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-17,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-17/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis lumbriciformis.jpg,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35945,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-18,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-18/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_9.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35947,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-19,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-19/,Nymphon gracile,Nymphon grêle,,https://biolit.fr/wp-content/uploads/2023/07/nymphon gracile pe.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35949,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-20,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-20/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebra erinaceus_0.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35951,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-21,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-21/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/Ophiotrix fragilis_0.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35953,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-22,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-22/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Paracentrotus lividus_5.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35955,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-23,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-23/,Pilumnus hirtellus,Pilumne hirsute,,https://biolit.fr/wp-content/uploads/2023/07/Pilumnus hirtellus_0.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35957,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-24,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-24/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/porcellana platycheles_7.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35958,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-25,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-25/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/Urticina sp pe.PNG,,TRUE, +N1,58923,sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c,https://biolit.fr/sorties/sortie-1c9f6873-fa71-4a89-ac20-eedc6527cb4c/,Roman,,3/22/2021 0:00,15.0:15,17.0000000,47.680735000000,-3.200118000000,,Ria d'étel,35960,observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-26,https://biolit.fr/observations/observation-1c9f6873-fa71-4a89-ac20-eedc6527cb4c-26/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_6.PNG,,TRUE, +N1,58924,sortie-e5267a32-da39-45a7-bafd-e55e3ba37b4a,https://biolit.fr/sorties/sortie-e5267a32-da39-45a7-bafd-e55e3ba37b4a/,Phil,,3/21/2021 0:00,16.0000000,16.0000000,47.791086000000,-4.26083700000,,Tréffiagat - Finistère,35961,observation-e5267a32-da39-45a7-bafd-e55e3ba37b4a,https://biolit.fr/observations/observation-e5267a32-da39-45a7-bafd-e55e3ba37b4a/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/P1130863-scaled.jpg,,TRUE, +N1,58924,sortie-e5267a32-da39-45a7-bafd-e55e3ba37b4a,https://biolit.fr/sorties/sortie-e5267a32-da39-45a7-bafd-e55e3ba37b4a/,Phil,,3/21/2021 0:00,16.0000000,16.0000000,47.791086000000,-4.26083700000,,Tréffiagat - Finistère,35963,observation-e5267a32-da39-45a7-bafd-e55e3ba37b4a-2,https://biolit.fr/observations/observation-e5267a32-da39-45a7-bafd-e55e3ba37b4a-2/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/2023/07/P1130860-scaled.jpg,,TRUE, +N1,58924,sortie-e5267a32-da39-45a7-bafd-e55e3ba37b4a,https://biolit.fr/sorties/sortie-e5267a32-da39-45a7-bafd-e55e3ba37b4a/,Phil,,3/21/2021 0:00,16.0000000,16.0000000,47.791086000000,-4.26083700000,,Tréffiagat - Finistère,35965,observation-e5267a32-da39-45a7-bafd-e55e3ba37b4a-3,https://biolit.fr/observations/observation-e5267a32-da39-45a7-bafd-e55e3ba37b4a-3/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/2023/07/P1130858-scaled.jpg,,TRUE, +N1,58924,sortie-e5267a32-da39-45a7-bafd-e55e3ba37b4a,https://biolit.fr/sorties/sortie-e5267a32-da39-45a7-bafd-e55e3ba37b4a/,Phil,,3/21/2021 0:00,16.0000000,16.0000000,47.791086000000,-4.26083700000,,Tréffiagat - Finistère,35967,observation-e5267a32-da39-45a7-bafd-e55e3ba37b4a-4,https://biolit.fr/observations/observation-e5267a32-da39-45a7-bafd-e55e3ba37b4a-4/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/2023/07/P1130857-scaled.jpg,,TRUE, +N1,58925,sortie-16a8105c-e444-4f8c-801e-809a1aba4867,https://biolit.fr/sorties/sortie-16a8105c-e444-4f8c-801e-809a1aba4867/,Phil,,2/27/2021 0:00,10.0:55,11.0000000,48.66943300000,-4.370833000000,,Kerlouan - Finistère,35969,observation-16a8105c-e444-4f8c-801e-809a1aba4867,https://biolit.fr/observations/observation-16a8105c-e444-4f8c-801e-809a1aba4867/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210227_105938.jpg,,TRUE, +N1,58925,sortie-16a8105c-e444-4f8c-801e-809a1aba4867,https://biolit.fr/sorties/sortie-16a8105c-e444-4f8c-801e-809a1aba4867/,Phil,,2/27/2021 0:00,10.0:55,11.0000000,48.66943300000,-4.370833000000,,Kerlouan - Finistère,35971,observation-16a8105c-e444-4f8c-801e-809a1aba4867-2,https://biolit.fr/observations/observation-16a8105c-e444-4f8c-801e-809a1aba4867-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210227_105944.jpg,,TRUE, +N1,58925,sortie-16a8105c-e444-4f8c-801e-809a1aba4867,https://biolit.fr/sorties/sortie-16a8105c-e444-4f8c-801e-809a1aba4867/,Phil,,2/27/2021 0:00,10.0:55,11.0000000,48.66943300000,-4.370833000000,,Kerlouan - Finistère,35973,observation-16a8105c-e444-4f8c-801e-809a1aba4867-3,https://biolit.fr/observations/observation-16a8105c-e444-4f8c-801e-809a1aba4867-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210227_105950.jpg,,TRUE, +N1,58926,sortie-ff4c198a-e212-4e84-b5a5-08cc63b5224c,https://biolit.fr/sorties/sortie-ff4c198a-e212-4e84-b5a5-08cc63b5224c/,Phil,,5/22/2020 0:00,13.0000000,14.0000000,47.798478000000,-4.179641000000,,Loctudy - Finistère,35975,observation-ff4c198a-e212-4e84-b5a5-08cc63b5224c,https://biolit.fr/observations/observation-ff4c198a-e212-4e84-b5a5-08cc63b5224c/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/20200522_140432.jpg,,TRUE, +N1,58927,sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8,https://biolit.fr/sorties/sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8/,Guazzelli Léo,,3/19/2021 0:00,15.0000000,17.0000000,43.256329000000,5.375202000000,,"Marseille, plage borely",35981,observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8,https://biolit.fr/observations/observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210205_143550_6-scaled.jpg,,TRUE, +N1,58927,sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8,https://biolit.fr/sorties/sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8/,Guazzelli Léo,,3/19/2021 0:00,15.0000000,17.0000000,43.256329000000,5.375202000000,,"Marseille, plage borely",35983,observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-2,https://biolit.fr/observations/observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210205_143713_4-scaled.jpg,,FALSE, +N1,58927,sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8,https://biolit.fr/sorties/sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8/,Guazzelli Léo,,3/19/2021 0:00,15.0000000,17.0000000,43.256329000000,5.375202000000,,"Marseille, plage borely",35985,observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-3,https://biolit.fr/observations/observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-3/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210205_143742_1-scaled.jpg,,TRUE, +N1,58927,sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8,https://biolit.fr/sorties/sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8/,Guazzelli Léo,,3/19/2021 0:00,15.0000000,17.0000000,43.256329000000,5.375202000000,,"Marseille, plage borely",35987,observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-4,https://biolit.fr/observations/observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-4/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210205_144020_5-scaled.jpg,,TRUE, +N1,58927,sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8,https://biolit.fr/sorties/sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8/,Guazzelli Léo,,3/19/2021 0:00,15.0000000,17.0000000,43.256329000000,5.375202000000,,"Marseille, plage borely",35989,observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-5,https://biolit.fr/observations/observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210205_144525_0-scaled.jpg,,FALSE, +N1,58927,sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8,https://biolit.fr/sorties/sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8/,Guazzelli Léo,,3/19/2021 0:00,15.0000000,17.0000000,43.256329000000,5.375202000000,,"Marseille, plage borely",35991,observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-6,https://biolit.fr/observations/observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210205_145100_3-scaled.jpg,,FALSE, +N1,58927,sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8,https://biolit.fr/sorties/sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8/,Guazzelli Léo,,3/19/2021 0:00,15.0000000,17.0000000,43.256329000000,5.375202000000,,"Marseille, plage borely",35993,observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-7,https://biolit.fr/observations/observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-7/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210205_145227_5-scaled.jpg,,FALSE, +N1,58927,sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8,https://biolit.fr/sorties/sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8/,Guazzelli Léo,,3/19/2021 0:00,15.0000000,17.0000000,43.256329000000,5.375202000000,,"Marseille, plage borely",35995,observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-8,https://biolit.fr/observations/observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210205_145239_4-scaled.jpg,,FALSE, +N1,58927,sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8,https://biolit.fr/sorties/sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8/,Guazzelli Léo,,3/19/2021 0:00,15.0000000,17.0000000,43.256329000000,5.375202000000,,"Marseille, plage borely",35997,observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-9,https://biolit.fr/observations/observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210205_145450_6-scaled.jpg,,FALSE, +N1,58927,sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8,https://biolit.fr/sorties/sortie-b1a5d3a8-3442-419f-8939-f01c59fb1ff8/,Guazzelli Léo,,3/19/2021 0:00,15.0000000,17.0000000,43.256329000000,5.375202000000,,"Marseille, plage borely",35999,observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-10,https://biolit.fr/observations/observation-b1a5d3a8-3442-419f-8939-f01c59fb1ff8-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20210205_145654_8-scaled.jpg,,FALSE, +N1,58928,sortie-7de82303-515c-4a70-b748-84da63dfdf9c,https://biolit.fr/sorties/sortie-7de82303-515c-4a70-b748-84da63dfdf9c/,Roman,,3/13/2021 0:00,11.0000000,12.0000000,47.701808000000,-3.315152000000,,Riantec,36001,observation-7de82303-515c-4a70-b748-84da63dfdf9c,https://biolit.fr/observations/observation-7de82303-515c-4a70-b748-84da63dfdf9c/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/Arenaria interpres.PNG,,TRUE, +N1,58928,sortie-7de82303-515c-4a70-b748-84da63dfdf9c,https://biolit.fr/sorties/sortie-7de82303-515c-4a70-b748-84da63dfdf9c/,Roman,,3/13/2021 0:00,11.0000000,12.0000000,47.701808000000,-3.315152000000,,Riantec,36003,observation-7de82303-515c-4a70-b748-84da63dfdf9c-2,https://biolit.fr/observations/observation-7de82303-515c-4a70-b748-84da63dfdf9c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Blennie sp_2.PNG,,FALSE, +N1,58928,sortie-7de82303-515c-4a70-b748-84da63dfdf9c,https://biolit.fr/sorties/sortie-7de82303-515c-4a70-b748-84da63dfdf9c/,Roman,,3/13/2021 0:00,11.0000000,12.0000000,47.701808000000,-3.315152000000,,Riantec,36005,observation-7de82303-515c-4a70-b748-84da63dfdf9c-3,https://biolit.fr/observations/observation-7de82303-515c-4a70-b748-84da63dfdf9c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_9.PNG,,FALSE, +N1,58928,sortie-7de82303-515c-4a70-b748-84da63dfdf9c,https://biolit.fr/sorties/sortie-7de82303-515c-4a70-b748-84da63dfdf9c/,Roman,,3/13/2021 0:00,11.0000000,12.0000000,47.701808000000,-3.315152000000,,Riantec,36007,observation-7de82303-515c-4a70-b748-84da63dfdf9c-4,https://biolit.fr/observations/observation-7de82303-515c-4a70-b748-84da63dfdf9c-4/,Gari depressa,Psammobie déprimée,,https://biolit.fr/wp-content/uploads/2023/07/Gari depressa_3.PNG,,TRUE, +N1,58928,sortie-7de82303-515c-4a70-b748-84da63dfdf9c,https://biolit.fr/sorties/sortie-7de82303-515c-4a70-b748-84da63dfdf9c/,Roman,,3/13/2021 0:00,11.0000000,12.0000000,47.701808000000,-3.315152000000,,Riantec,36009,observation-7de82303-515c-4a70-b748-84da63dfdf9c-5,https://biolit.fr/observations/observation-7de82303-515c-4a70-b748-84da63dfdf9c-5/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/Gobie sp_2.PNG,,TRUE, +N1,58928,sortie-7de82303-515c-4a70-b748-84da63dfdf9c,https://biolit.fr/sorties/sortie-7de82303-515c-4a70-b748-84da63dfdf9c/,Roman,,3/13/2021 0:00,11.0000000,12.0000000,47.701808000000,-3.315152000000,,Riantec,36010,observation-7de82303-515c-4a70-b748-84da63dfdf9c-6,https://biolit.fr/observations/observation-7de82303-515c-4a70-b748-84da63dfdf9c-6/,Larus canus,Goéland cendré,,https://biolit.fr/wp-content/uploads/2023/07/larus canus.PNG,,TRUE, +N1,58928,sortie-7de82303-515c-4a70-b748-84da63dfdf9c,https://biolit.fr/sorties/sortie-7de82303-515c-4a70-b748-84da63dfdf9c/,Roman,,3/13/2021 0:00,11.0000000,12.0000000,47.701808000000,-3.315152000000,,Riantec,36012,observation-7de82303-515c-4a70-b748-84da63dfdf9c-7,https://biolit.fr/observations/observation-7de82303-515c-4a70-b748-84da63dfdf9c-7/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia_0.PNG,,TRUE, +N1,58928,sortie-7de82303-515c-4a70-b748-84da63dfdf9c,https://biolit.fr/sorties/sortie-7de82303-515c-4a70-b748-84da63dfdf9c/,Roman,,3/13/2021 0:00,11.0000000,12.0000000,47.701808000000,-3.315152000000,,Riantec,36014,observation-7de82303-515c-4a70-b748-84da63dfdf9c-8,https://biolit.fr/observations/observation-7de82303-515c-4a70-b748-84da63dfdf9c-8/,Ocenebra erinaceus,Ponte de Bigorneau perceur,,https://biolit.fr/wp-content/uploads/2023/07/oeuf de gastéropode.PNG,,TRUE, +N1,58928,sortie-7de82303-515c-4a70-b748-84da63dfdf9c,https://biolit.fr/sorties/sortie-7de82303-515c-4a70-b748-84da63dfdf9c/,Roman,,3/13/2021 0:00,11.0000000,12.0000000,47.701808000000,-3.315152000000,,Riantec,36016,observation-7de82303-515c-4a70-b748-84da63dfdf9c-9,https://biolit.fr/observations/observation-7de82303-515c-4a70-b748-84da63dfdf9c-9/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/Pisidia longicornis_2.PNG,,TRUE, +N1,58928,sortie-7de82303-515c-4a70-b748-84da63dfdf9c,https://biolit.fr/sorties/sortie-7de82303-515c-4a70-b748-84da63dfdf9c/,Roman,,3/13/2021 0:00,11.0000000,12.0000000,47.701808000000,-3.315152000000,,Riantec,36018,observation-7de82303-515c-4a70-b748-84da63dfdf9c-10,https://biolit.fr/observations/observation-7de82303-515c-4a70-b748-84da63dfdf9c-10/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/Ponte de nucella lapillus_0.PNG,,TRUE, +N1,58928,sortie-7de82303-515c-4a70-b748-84da63dfdf9c,https://biolit.fr/sorties/sortie-7de82303-515c-4a70-b748-84da63dfdf9c/,Roman,,3/13/2021 0:00,11.0000000,12.0000000,47.701808000000,-3.315152000000,,Riantec,36020,observation-7de82303-515c-4a70-b748-84da63dfdf9c-11,https://biolit.fr/observations/observation-7de82303-515c-4a70-b748-84da63dfdf9c-11/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_9.PNG,,TRUE, +N1,58928,sortie-7de82303-515c-4a70-b748-84da63dfdf9c,https://biolit.fr/sorties/sortie-7de82303-515c-4a70-b748-84da63dfdf9c/,Roman,,3/13/2021 0:00,11.0000000,12.0000000,47.701808000000,-3.315152000000,,Riantec,36022,observation-7de82303-515c-4a70-b748-84da63dfdf9c-12,https://biolit.fr/observations/observation-7de82303-515c-4a70-b748-84da63dfdf9c-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Venerupis aurea.PNG,,FALSE, +N1,58929,sortie-9b820515-55e8-41f0-bb8f-77d7c0499ff5,https://biolit.fr/sorties/sortie-9b820515-55e8-41f0-bb8f-77d7c0499ff5/,Conrad Van Dorssen,,3/14/2021 0:00,10.0000000,12.0000000,47.799825000000,-4.343994000000,,penmarch,36024,observation-9b820515-55e8-41f0-bb8f-77d7c0499ff5,https://biolit.fr/observations/observation-9b820515-55e8-41f0-bb8f-77d7c0499ff5/,,,,https://biolit.fr/wp-content/uploads/2023/07/slak2_0-rotated.jpg,,FALSE, +N1,58929,sortie-9b820515-55e8-41f0-bb8f-77d7c0499ff5,https://biolit.fr/sorties/sortie-9b820515-55e8-41f0-bb8f-77d7c0499ff5/,Conrad Van Dorssen,,3/14/2021 0:00,10.0000000,12.0000000,47.799825000000,-4.343994000000,,penmarch,36026,observation-9b820515-55e8-41f0-bb8f-77d7c0499ff5-2,https://biolit.fr/observations/observation-9b820515-55e8-41f0-bb8f-77d7c0499ff5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/slak3_0-scaled.jpg,,FALSE, +N1,58929,sortie-9b820515-55e8-41f0-bb8f-77d7c0499ff5,https://biolit.fr/sorties/sortie-9b820515-55e8-41f0-bb8f-77d7c0499ff5/,Conrad Van Dorssen,,3/14/2021 0:00,10.0000000,12.0000000,47.799825000000,-4.343994000000,,penmarch,36028,observation-9b820515-55e8-41f0-bb8f-77d7c0499ff5-3,https://biolit.fr/observations/observation-9b820515-55e8-41f0-bb8f-77d7c0499ff5-3/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/slak4_0.JPG,,TRUE, +N1,58929,sortie-9b820515-55e8-41f0-bb8f-77d7c0499ff5,https://biolit.fr/sorties/sortie-9b820515-55e8-41f0-bb8f-77d7c0499ff5/,Conrad Van Dorssen,,3/14/2021 0:00,10.0000000,12.0000000,47.799825000000,-4.343994000000,,penmarch,36030,observation-9b820515-55e8-41f0-bb8f-77d7c0499ff5-4,https://biolit.fr/observations/observation-9b820515-55e8-41f0-bb8f-77d7c0499ff5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/slak5_0.JPG,,FALSE, +N1,58929,sortie-9b820515-55e8-41f0-bb8f-77d7c0499ff5,https://biolit.fr/sorties/sortie-9b820515-55e8-41f0-bb8f-77d7c0499ff5/,Conrad Van Dorssen,,3/14/2021 0:00,10.0000000,12.0000000,47.799825000000,-4.343994000000,,penmarch,36032,observation-9b820515-55e8-41f0-bb8f-77d7c0499ff5-5,https://biolit.fr/observations/observation-9b820515-55e8-41f0-bb8f-77d7c0499ff5-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/slak6.JPG,,FALSE, +N1,58929,sortie-9b820515-55e8-41f0-bb8f-77d7c0499ff5,https://biolit.fr/sorties/sortie-9b820515-55e8-41f0-bb8f-77d7c0499ff5/,Conrad Van Dorssen,,3/14/2021 0:00,10.0000000,12.0000000,47.799825000000,-4.343994000000,,penmarch,36034,observation-9b820515-55e8-41f0-bb8f-77d7c0499ff5-6,https://biolit.fr/observations/observation-9b820515-55e8-41f0-bb8f-77d7c0499ff5-6/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/slak7.JPG,,TRUE, +N1,58930,sortie-7f0e5002-902e-4e73-aa02-e29c9eef0642,https://biolit.fr/sorties/sortie-7f0e5002-902e-4e73-aa02-e29c9eef0642/,institution sainte trinite,,3/13/2021 0:00,14.0000000,16.0000000,43.333419000000,5.177194000000,,Carry le rouet,36036,observation-7f0e5002-902e-4e73-aa02-e29c9eef0642,https://biolit.fr/observations/observation-7f0e5002-902e-4e73-aa02-e29c9eef0642/,,,,https://biolit.fr/wp-content/uploads/2023/07/428F0D1D-A541-454C-BCED-C751E464C1C8.jpeg,,FALSE, +N1,58930,sortie-7f0e5002-902e-4e73-aa02-e29c9eef0642,https://biolit.fr/sorties/sortie-7f0e5002-902e-4e73-aa02-e29c9eef0642/,institution sainte trinite,,3/13/2021 0:00,14.0000000,16.0000000,43.333419000000,5.177194000000,,Carry le rouet,36038,observation-7f0e5002-902e-4e73-aa02-e29c9eef0642-2,https://biolit.fr/observations/observation-7f0e5002-902e-4e73-aa02-e29c9eef0642-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/4DEE1994-DC84-4684-90DB-A92EABC67737-scaled.jpeg,,FALSE, +N1,58931,sortie-93fa2e2b-1b84-4ef1-831c-607d4650f5f5,https://biolit.fr/sorties/sortie-93fa2e2b-1b84-4ef1-831c-607d4650f5f5/,Emiaa,,03/12/2021,8.0000000,10.0000000,43.25344100000,5.374570000000,,Marseille ,36040,observation-93fa2e2b-1b84-4ef1-831c-607d4650f5f5,https://biolit.fr/observations/observation-93fa2e2b-1b84-4ef1-831c-607d4650f5f5/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20210203_090304-scaled.jpg,,TRUE, +N1,58932,sortie-5a88018c-42a8-46b7-a9af-4d5b25b7dbc6,https://biolit.fr/sorties/sortie-5a88018c-42a8-46b7-a9af-4d5b25b7dbc6/,Phil,,5/22/2020 0:00,13.0000000,13.0:55,47.79685100000,-4.179164000000,,Loctudy - Finistère,36042,observation-5a88018c-42a8-46b7-a9af-4d5b25b7dbc6,https://biolit.fr/observations/observation-5a88018c-42a8-46b7-a9af-4d5b25b7dbc6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_135526.jpg,,FALSE, +N1,58932,sortie-5a88018c-42a8-46b7-a9af-4d5b25b7dbc6,https://biolit.fr/sorties/sortie-5a88018c-42a8-46b7-a9af-4d5b25b7dbc6/,Phil,,5/22/2020 0:00,13.0000000,13.0:55,47.79685100000,-4.179164000000,,Loctudy - Finistère,36044,observation-5a88018c-42a8-46b7-a9af-4d5b25b7dbc6-2,https://biolit.fr/observations/observation-5a88018c-42a8-46b7-a9af-4d5b25b7dbc6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_135539.jpg,,FALSE, +N1,58932,sortie-5a88018c-42a8-46b7-a9af-4d5b25b7dbc6,https://biolit.fr/sorties/sortie-5a88018c-42a8-46b7-a9af-4d5b25b7dbc6/,Phil,,5/22/2020 0:00,13.0000000,13.0:55,47.79685100000,-4.179164000000,,Loctudy - Finistère,36046,observation-5a88018c-42a8-46b7-a9af-4d5b25b7dbc6-3,https://biolit.fr/observations/observation-5a88018c-42a8-46b7-a9af-4d5b25b7dbc6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_135459.jpg,,FALSE, +N1,58932,sortie-5a88018c-42a8-46b7-a9af-4d5b25b7dbc6,https://biolit.fr/sorties/sortie-5a88018c-42a8-46b7-a9af-4d5b25b7dbc6/,Phil,,5/22/2020 0:00,13.0000000,13.0:55,47.79685100000,-4.179164000000,,Loctudy - Finistère,36048,observation-5a88018c-42a8-46b7-a9af-4d5b25b7dbc6-4,https://biolit.fr/observations/observation-5a88018c-42a8-46b7-a9af-4d5b25b7dbc6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_135502.jpg,,FALSE, +N1,58933,sortie-bad48abb-8759-47cd-85f1-320c7cb453dd,https://biolit.fr/sorties/sortie-bad48abb-8759-47cd-85f1-320c7cb453dd/,Thomas 06130,,2/26/2021 0:00,13.0000000,14.0000000,43.569880000000,7.131977000000,,plage de la salis,36050,observation-bad48abb-8759-47cd-85f1-320c7cb453dd,https://biolit.fr/observations/observation-bad48abb-8759-47cd-85f1-320c7cb453dd/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/20210226_131721-scaled.jpg,,TRUE, +N1,58933,sortie-bad48abb-8759-47cd-85f1-320c7cb453dd,https://biolit.fr/sorties/sortie-bad48abb-8759-47cd-85f1-320c7cb453dd/,Thomas 06130,,2/26/2021 0:00,13.0000000,14.0000000,43.569880000000,7.131977000000,,plage de la salis,36052,observation-bad48abb-8759-47cd-85f1-320c7cb453dd-2,https://biolit.fr/observations/observation-bad48abb-8759-47cd-85f1-320c7cb453dd-2/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/20210226_131733-scaled.jpg,,TRUE, +N1,58933,sortie-bad48abb-8759-47cd-85f1-320c7cb453dd,https://biolit.fr/sorties/sortie-bad48abb-8759-47cd-85f1-320c7cb453dd/,Thomas 06130,,2/26/2021 0:00,13.0000000,14.0000000,43.569880000000,7.131977000000,,plage de la salis,36054,observation-bad48abb-8759-47cd-85f1-320c7cb453dd-3,https://biolit.fr/observations/observation-bad48abb-8759-47cd-85f1-320c7cb453dd-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210226_131858-scaled.jpg,,FALSE, +N1,58933,sortie-bad48abb-8759-47cd-85f1-320c7cb453dd,https://biolit.fr/sorties/sortie-bad48abb-8759-47cd-85f1-320c7cb453dd/,Thomas 06130,,2/26/2021 0:00,13.0000000,14.0000000,43.569880000000,7.131977000000,,plage de la salis,36056,observation-bad48abb-8759-47cd-85f1-320c7cb453dd-4,https://biolit.fr/observations/observation-bad48abb-8759-47cd-85f1-320c7cb453dd-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210226_131903-scaled.jpg,,FALSE, +N1,58933,sortie-bad48abb-8759-47cd-85f1-320c7cb453dd,https://biolit.fr/sorties/sortie-bad48abb-8759-47cd-85f1-320c7cb453dd/,Thomas 06130,,2/26/2021 0:00,13.0000000,14.0000000,43.569880000000,7.131977000000,,plage de la salis,36058,observation-bad48abb-8759-47cd-85f1-320c7cb453dd-5,https://biolit.fr/observations/observation-bad48abb-8759-47cd-85f1-320c7cb453dd-5/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/20210226_131950-scaled.jpg,,TRUE, +N1,58933,sortie-bad48abb-8759-47cd-85f1-320c7cb453dd,https://biolit.fr/sorties/sortie-bad48abb-8759-47cd-85f1-320c7cb453dd/,Thomas 06130,,2/26/2021 0:00,13.0000000,14.0000000,43.569880000000,7.131977000000,,plage de la salis,36060,observation-bad48abb-8759-47cd-85f1-320c7cb453dd-6,https://biolit.fr/observations/observation-bad48abb-8759-47cd-85f1-320c7cb453dd-6/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/20210226_132041-scaled.jpg,,TRUE, +N1,58933,sortie-bad48abb-8759-47cd-85f1-320c7cb453dd,https://biolit.fr/sorties/sortie-bad48abb-8759-47cd-85f1-320c7cb453dd/,Thomas 06130,,2/26/2021 0:00,13.0000000,14.0000000,43.569880000000,7.131977000000,,plage de la salis,36062,observation-bad48abb-8759-47cd-85f1-320c7cb453dd-7,https://biolit.fr/observations/observation-bad48abb-8759-47cd-85f1-320c7cb453dd-7/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/20210226_132046-scaled.jpg,,TRUE, +N1,58933,sortie-bad48abb-8759-47cd-85f1-320c7cb453dd,https://biolit.fr/sorties/sortie-bad48abb-8759-47cd-85f1-320c7cb453dd/,Thomas 06130,,2/26/2021 0:00,13.0000000,14.0000000,43.569880000000,7.131977000000,,plage de la salis,36064,observation-bad48abb-8759-47cd-85f1-320c7cb453dd-8,https://biolit.fr/observations/observation-bad48abb-8759-47cd-85f1-320c7cb453dd-8/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210226_132344-scaled.jpg,,TRUE, +N1,58934,sortie-29d5458c-a720-49b4-b04d-3f55979605a4,https://biolit.fr/sorties/sortie-29d5458c-a720-49b4-b04d-3f55979605a4/,zoebernard31,,03/10/2021,8.0000000,10.0000000,43.253265000000,5.374513000000,,Plage de l'escale Borély,36066,observation-29d5458c-a720-49b4-b04d-3f55979605a4,https://biolit.fr/observations/observation-29d5458c-a720-49b4-b04d-3f55979605a4/,,,,https://biolit.fr/wp-content/uploads/2023/07/unnamed (1).jpg,,FALSE, +N1,58934,sortie-29d5458c-a720-49b4-b04d-3f55979605a4,https://biolit.fr/sorties/sortie-29d5458c-a720-49b4-b04d-3f55979605a4/,zoebernard31,,03/10/2021,8.0000000,10.0000000,43.253265000000,5.374513000000,,Plage de l'escale Borély,36068,observation-29d5458c-a720-49b4-b04d-3f55979605a4-2,https://biolit.fr/observations/observation-29d5458c-a720-49b4-b04d-3f55979605a4-2/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/unnamed.jpg,,TRUE, +N1,58935,sortie-9973f8bb-e675-4873-b84e-5b130949daae,https://biolit.fr/sorties/sortie-9973f8bb-e675-4873-b84e-5b130949daae/,Phil,,03/03/2021,10.0000000,10.0:45,47.88715400000,-3.982715000000,,Fouesnant - Finistère,36070,observation-9973f8bb-e675-4873-b84e-5b130949daae,https://biolit.fr/observations/observation-9973f8bb-e675-4873-b84e-5b130949daae/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/20210303_104534.jpg,,TRUE, +N1,58935,sortie-9973f8bb-e675-4873-b84e-5b130949daae,https://biolit.fr/sorties/sortie-9973f8bb-e675-4873-b84e-5b130949daae/,Phil,,03/03/2021,10.0000000,10.0:45,47.88715400000,-3.982715000000,,Fouesnant - Finistère,36072,observation-9973f8bb-e675-4873-b84e-5b130949daae-2,https://biolit.fr/observations/observation-9973f8bb-e675-4873-b84e-5b130949daae-2/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/20210303_104427.jpg,,TRUE, +N1,58935,sortie-9973f8bb-e675-4873-b84e-5b130949daae,https://biolit.fr/sorties/sortie-9973f8bb-e675-4873-b84e-5b130949daae/,Phil,,03/03/2021,10.0000000,10.0:45,47.88715400000,-3.982715000000,,Fouesnant - Finistère,36074,observation-9973f8bb-e675-4873-b84e-5b130949daae-3,https://biolit.fr/observations/observation-9973f8bb-e675-4873-b84e-5b130949daae-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210303_104302-scaled.jpg,,FALSE, +N1,58936,sortie-6761bf00-324c-4871-9ce8-c9903cec9003,https://biolit.fr/sorties/sortie-6761bf00-324c-4871-9ce8-c9903cec9003/,Phil,,2/27/2021 0:00,10.0:45,10.0000000,48.669586000000,-4.371301000000,,Kerlouan - Finistère,36076,observation-6761bf00-324c-4871-9ce8-c9903cec9003,https://biolit.fr/observations/observation-6761bf00-324c-4871-9ce8-c9903cec9003/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210227_104921.jpg,,TRUE, +N1,58936,sortie-6761bf00-324c-4871-9ce8-c9903cec9003,https://biolit.fr/sorties/sortie-6761bf00-324c-4871-9ce8-c9903cec9003/,Phil,,2/27/2021 0:00,10.0:45,10.0000000,48.669586000000,-4.371301000000,,Kerlouan - Finistère,36078,observation-6761bf00-324c-4871-9ce8-c9903cec9003-2,https://biolit.fr/observations/observation-6761bf00-324c-4871-9ce8-c9903cec9003-2/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/20210227_105118.jpg,,TRUE, +N1,58936,sortie-6761bf00-324c-4871-9ce8-c9903cec9003,https://biolit.fr/sorties/sortie-6761bf00-324c-4871-9ce8-c9903cec9003/,Phil,,2/27/2021 0:00,10.0:45,10.0000000,48.669586000000,-4.371301000000,,Kerlouan - Finistère,36080,observation-6761bf00-324c-4871-9ce8-c9903cec9003-3,https://biolit.fr/observations/observation-6761bf00-324c-4871-9ce8-c9903cec9003-3/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210227_104939.jpg,,TRUE, +N1,58936,sortie-6761bf00-324c-4871-9ce8-c9903cec9003,https://biolit.fr/sorties/sortie-6761bf00-324c-4871-9ce8-c9903cec9003/,Phil,,2/27/2021 0:00,10.0:45,10.0000000,48.669586000000,-4.371301000000,,Kerlouan - Finistère,36082,observation-6761bf00-324c-4871-9ce8-c9903cec9003-4,https://biolit.fr/observations/observation-6761bf00-324c-4871-9ce8-c9903cec9003-4/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210227_104905.jpg,,TRUE, +N1,58937,sortie-4026edd4-0c45-4381-8043-66bda6d34e72,https://biolit.fr/sorties/sortie-4026edd4-0c45-4381-8043-66bda6d34e72/,Phil,,5/22/2020 0:00,13.0000000,14.0000000,47.795568000000,-4.18192000000,,Loctudy - Finistère,36084,observation-4026edd4-0c45-4381-8043-66bda6d34e72,https://biolit.fr/observations/observation-4026edd4-0c45-4381-8043-66bda6d34e72/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_135930.jpg,,FALSE, +N1,58937,sortie-4026edd4-0c45-4381-8043-66bda6d34e72,https://biolit.fr/sorties/sortie-4026edd4-0c45-4381-8043-66bda6d34e72/,Phil,,5/22/2020 0:00,13.0000000,14.0000000,47.795568000000,-4.18192000000,,Loctudy - Finistère,36086,observation-4026edd4-0c45-4381-8043-66bda6d34e72-2,https://biolit.fr/observations/observation-4026edd4-0c45-4381-8043-66bda6d34e72-2/,Coryphoblennius galerita,Blennie coiffée,,https://biolit.fr/wp-content/uploads/2023/07/20200522_135939.jpg,,FALSE, +N1,58937,sortie-4026edd4-0c45-4381-8043-66bda6d34e72,https://biolit.fr/sorties/sortie-4026edd4-0c45-4381-8043-66bda6d34e72/,Phil,,5/22/2020 0:00,13.0000000,14.0000000,47.795568000000,-4.18192000000,,Loctudy - Finistère,36088,observation-4026edd4-0c45-4381-8043-66bda6d34e72-3,https://biolit.fr/observations/observation-4026edd4-0c45-4381-8043-66bda6d34e72-3/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20200522_140310.jpg,,TRUE, +N1,58938,sortie-7b092f44-ad98-4cde-aad8-e994f3b47dd3,https://biolit.fr/sorties/sortie-7b092f44-ad98-4cde-aad8-e994f3b47dd3/,institution sainte trinite,,03/04/2021,14.0000000,15.0000000,43.251547000000,5.373027000000,,Plage du prado,36090,observation-7b092f44-ad98-4cde-aad8-e994f3b47dd3,https://biolit.fr/observations/observation-7b092f44-ad98-4cde-aad8-e994f3b47dd3/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/DD4E85C2-1A60-4902-A96A-D5190C0586A1-scaled.jpeg,,TRUE, +N1,58938,sortie-7b092f44-ad98-4cde-aad8-e994f3b47dd3,https://biolit.fr/sorties/sortie-7b092f44-ad98-4cde-aad8-e994f3b47dd3/,institution sainte trinite,,03/04/2021,14.0000000,15.0000000,43.251547000000,5.373027000000,,Plage du prado,36092,observation-7b092f44-ad98-4cde-aad8-e994f3b47dd3-2,https://biolit.fr/observations/observation-7b092f44-ad98-4cde-aad8-e994f3b47dd3-2/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/44E65308-BE25-403A-ACCF-D34D286D1756-scaled.jpeg,,TRUE, +N1,58939,sortie-a0d61bd5-bea7-46a5-abbb-db0d7b95c5b9,https://biolit.fr/sorties/sortie-a0d61bd5-bea7-46a5-abbb-db0d7b95c5b9/,Phil,,03/03/2021,10.0000000,10.0:45,47.886437000000,-3.984346000000,,Fouesnant - Finistère,36094,observation-a0d61bd5-bea7-46a5-abbb-db0d7b95c5b9,https://biolit.fr/observations/observation-a0d61bd5-bea7-46a5-abbb-db0d7b95c5b9/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20210303_103912.jpg,,TRUE, +N1,58939,sortie-a0d61bd5-bea7-46a5-abbb-db0d7b95c5b9,https://biolit.fr/sorties/sortie-a0d61bd5-bea7-46a5-abbb-db0d7b95c5b9/,Phil,,03/03/2021,10.0000000,10.0:45,47.886437000000,-3.984346000000,,Fouesnant - Finistère,36096,observation-a0d61bd5-bea7-46a5-abbb-db0d7b95c5b9-2,https://biolit.fr/observations/observation-a0d61bd5-bea7-46a5-abbb-db0d7b95c5b9-2/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/20210303_104200.jpg,,TRUE, +N1,58939,sortie-a0d61bd5-bea7-46a5-abbb-db0d7b95c5b9,https://biolit.fr/sorties/sortie-a0d61bd5-bea7-46a5-abbb-db0d7b95c5b9/,Phil,,03/03/2021,10.0000000,10.0:45,47.886437000000,-3.984346000000,,Fouesnant - Finistère,36098,observation-a0d61bd5-bea7-46a5-abbb-db0d7b95c5b9-3,https://biolit.fr/observations/observation-a0d61bd5-bea7-46a5-abbb-db0d7b95c5b9-3/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20210303_104227.jpg,,TRUE, +N1,58940,sortie-282f09ec-be4c-4461-82ac-f7843e644bc1,https://biolit.fr/sorties/sortie-282f09ec-be4c-4461-82ac-f7843e644bc1/,Phil,,2/27/2021 0:00,10.0:45,10.0000000,48.669306000000,-4.371516000000,,Kerlouan - Finistère,36100,observation-282f09ec-be4c-4461-82ac-f7843e644bc1,https://biolit.fr/observations/observation-282f09ec-be4c-4461-82ac-f7843e644bc1/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20210227_104659.jpg,,TRUE, +N1,58940,sortie-282f09ec-be4c-4461-82ac-f7843e644bc1,https://biolit.fr/sorties/sortie-282f09ec-be4c-4461-82ac-f7843e644bc1/,Phil,,2/27/2021 0:00,10.0:45,10.0000000,48.669306000000,-4.371516000000,,Kerlouan - Finistère,36102,observation-282f09ec-be4c-4461-82ac-f7843e644bc1-2,https://biolit.fr/observations/observation-282f09ec-be4c-4461-82ac-f7843e644bc1-2/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210227_104735.jpg,,TRUE, +N1,58940,sortie-282f09ec-be4c-4461-82ac-f7843e644bc1,https://biolit.fr/sorties/sortie-282f09ec-be4c-4461-82ac-f7843e644bc1/,Phil,,2/27/2021 0:00,10.0:45,10.0000000,48.669306000000,-4.371516000000,,Kerlouan - Finistère,36104,observation-282f09ec-be4c-4461-82ac-f7843e644bc1-3,https://biolit.fr/observations/observation-282f09ec-be4c-4461-82ac-f7843e644bc1-3/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/2023/07/20210227_104802.jpg,,TRUE, +N1,58940,sortie-282f09ec-be4c-4461-82ac-f7843e644bc1,https://biolit.fr/sorties/sortie-282f09ec-be4c-4461-82ac-f7843e644bc1/,Phil,,2/27/2021 0:00,10.0:45,10.0000000,48.669306000000,-4.371516000000,,Kerlouan - Finistère,36106,observation-282f09ec-be4c-4461-82ac-f7843e644bc1-4,https://biolit.fr/observations/observation-282f09ec-be4c-4461-82ac-f7843e644bc1-4/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/2023/07/20210227_104818.jpg,,TRUE, +N1,58941,sortie-820400b7-03e4-4d47-a584-b59d533e3c61,https://biolit.fr/sorties/sortie-820400b7-03e4-4d47-a584-b59d533e3c61/,Phil,,5/22/2020 0:00,13.0:45,13.0000000,47.799621000000,-4.181542000000,,Loctudy - Finistère,36108,observation-820400b7-03e4-4d47-a584-b59d533e3c61,https://biolit.fr/observations/observation-820400b7-03e4-4d47-a584-b59d533e3c61/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_134521.jpg,,FALSE, +N1,58941,sortie-820400b7-03e4-4d47-a584-b59d533e3c61,https://biolit.fr/sorties/sortie-820400b7-03e4-4d47-a584-b59d533e3c61/,Phil,,5/22/2020 0:00,13.0:45,13.0000000,47.799621000000,-4.181542000000,,Loctudy - Finistère,36110,observation-820400b7-03e4-4d47-a584-b59d533e3c61-2,https://biolit.fr/observations/observation-820400b7-03e4-4d47-a584-b59d533e3c61-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_134551.jpg,,FALSE, +N1,58941,sortie-820400b7-03e4-4d47-a584-b59d533e3c61,https://biolit.fr/sorties/sortie-820400b7-03e4-4d47-a584-b59d533e3c61/,Phil,,5/22/2020 0:00,13.0:45,13.0000000,47.799621000000,-4.181542000000,,Loctudy - Finistère,36112,observation-820400b7-03e4-4d47-a584-b59d533e3c61-3,https://biolit.fr/observations/observation-820400b7-03e4-4d47-a584-b59d533e3c61-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_135045.jpg,,FALSE, +N1,58941,sortie-820400b7-03e4-4d47-a584-b59d533e3c61,https://biolit.fr/sorties/sortie-820400b7-03e4-4d47-a584-b59d533e3c61/,Phil,,5/22/2020 0:00,13.0:45,13.0000000,47.799621000000,-4.181542000000,,Loctudy - Finistère,36114,observation-820400b7-03e4-4d47-a584-b59d533e3c61-4,https://biolit.fr/observations/observation-820400b7-03e4-4d47-a584-b59d533e3c61-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_135053.jpg,,FALSE, +N1,58941,sortie-820400b7-03e4-4d47-a584-b59d533e3c61,https://biolit.fr/sorties/sortie-820400b7-03e4-4d47-a584-b59d533e3c61/,Phil,,5/22/2020 0:00,13.0:45,13.0000000,47.799621000000,-4.181542000000,,Loctudy - Finistère,36116,observation-820400b7-03e4-4d47-a584-b59d533e3c61-5,https://biolit.fr/observations/observation-820400b7-03e4-4d47-a584-b59d533e3c61-5/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20200522_134526.jpg,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36118,observation-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/actinia equina_5.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36119,observation-fbef4707-1231-4662-8ef8-b463931fcb55-2,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-2/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_2.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36121,observation-fbef4707-1231-4662-8ef8-b463931fcb55-3,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/anthopleura sp_0.PNG,,FALSE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36123,observation-fbef4707-1231-4662-8ef8-b463931fcb55-4,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-4/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asteria rubens_1.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36125,observation-fbef4707-1231-4662-8ef8-b463931fcb55-5,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-5/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/Blennie sp_1.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36127,observation-fbef4707-1231-4662-8ef8-b463931fcb55-6,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-6/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/Branta bernicla_1.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36129,observation-fbef4707-1231-4662-8ef8-b463931fcb55-7,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-7/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_6.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36131,observation-fbef4707-1231-4662-8ef8-b463931fcb55-8,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-8/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_8.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36133,observation-fbef4707-1231-4662-8ef8-b463931fcb55-9,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-9/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_5.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36135,observation-fbef4707-1231-4662-8ef8-b463931fcb55-10,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-10/,Ciliata mustela,Motelle à 5 barbillons,,https://biolit.fr/wp-content/uploads/2023/07/Ciliata mustela_0.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36137,observation-fbef4707-1231-4662-8ef8-b463931fcb55-11,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 1_3.PNG,,FALSE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36139,observation-fbef4707-1231-4662-8ef8-b463931fcb55-12,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-12/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_8.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36141,observation-fbef4707-1231-4662-8ef8-b463931fcb55-13,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-13/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Eriphia verrucosa_1.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36143,observation-fbef4707-1231-4662-8ef8-b463931fcb55-14,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-14/,Coryphoblennius galerita,Blennie coiffée,,https://biolit.fr/wp-content/uploads/2023/07/gobie sp pe.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36145,observation-fbef4707-1231-4662-8ef8-b463931fcb55-15,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Heteranomia squamula_0.PNG,,FALSE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36147,observation-fbef4707-1231-4662-8ef8-b463931fcb55-16,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-16/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_2.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36149,observation-fbef4707-1231-4662-8ef8-b463931fcb55-17,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-17/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_8.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36151,observation-fbef4707-1231-4662-8ef8-b463931fcb55-18,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-18/,Nerophis ophidion,Nérophis ophidion,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis ophidion_2.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36153,observation-fbef4707-1231-4662-8ef8-b463931fcb55-19,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-19/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_8.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36155,observation-fbef4707-1231-4662-8ef8-b463931fcb55-20,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Oeufs..PNG,,FALSE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36157,observation-fbef4707-1231-4662-8ef8-b463931fcb55-21,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-21/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/Perforatus perforatus_0.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36159,observation-fbef4707-1231-4662-8ef8-b463931fcb55-22,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-22/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/porcellana platycheles_6.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36160,observation-fbef4707-1231-4662-8ef8-b463931fcb55-23,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-23/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_8.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36162,observation-fbef4707-1231-4662-8ef8-b463931fcb55-24,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-24/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/Urticina felina_0.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36164,observation-fbef4707-1231-4662-8ef8-b463931fcb55-25,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-25/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_5.PNG,,TRUE, +N1,58942,sortie-fbef4707-1231-4662-8ef8-b463931fcb55,https://biolit.fr/sorties/sortie-fbef4707-1231-4662-8ef8-b463931fcb55/,Roman,,03/01/2021,11.0:45,14.0000000,47.704470000000,-3.356678000000,,Port-Louis,36166,observation-fbef4707-1231-4662-8ef8-b463931fcb55-26,https://biolit.fr/observations/observation-fbef4707-1231-4662-8ef8-b463931fcb55-26/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_6.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36168,observation-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/acanthochitona crinita_2.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36169,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-2,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_4.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36171,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-3,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragaceae.jpg,,FALSE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36172,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-4,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_4.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36174,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-5,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-5/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/2023/07/Anguille.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36176,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-6,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-6/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/Anthopleura balii_0.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36178,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-7,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-7/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/Aulactinia verrucosa_4.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36180,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-8,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-8/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_3.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36182,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-9,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-9/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Calliostoma zyziphinum_0.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36184,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-10,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-10/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/cancer pagurus_5.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36185,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-11,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-11/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_4.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36187,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-12,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-12/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/Doris pseudoargus.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36189,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-13,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_7.PNG,,FALSE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36191,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-14,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-14/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Eriphia verrucosa_0.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36193,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-15,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-15/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_6.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36195,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-16,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-16/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_7.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36197,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-17,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-17/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_5.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36199,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-18,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-18/,Hediste diversicolor,Néréis multicolore,,https://biolit.fr/wp-content/uploads/2023/07/Nereis sp.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36201,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-19,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-19/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/Ophiotrix fragilis.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36203,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-20,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-20/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_1.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36205,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-21,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-21/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Paracentrotus lividus_4.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36207,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-22,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-22/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/Pisidia longicornis_1.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36209,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-23,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-23/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_5.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36211,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-24,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-24/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/Sabellaria alveolata_0.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36213,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-25,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-25/,Sphaeromatidae (famille),Sphéromiens,,https://biolit.fr/wp-content/uploads/2023/07/Sphaeromatidae_1.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36215,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-26,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-26/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/Urticina felina.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36217,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-27,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ver sp_2.PNG,,FALSE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36218,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-28,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-28/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_4.PNG,,TRUE, +N1,58943,sortie-d7f25815-2ce0-4392-a43d-d6252966e23f,https://biolit.fr/sorties/sortie-d7f25815-2ce0-4392-a43d-d6252966e23f/,Roman,,2/27/2021 0:00,10.0000000,13.0000000,47.689417000000,-3.351909000000,,Gâvres,36220,observation-d7f25815-2ce0-4392-a43d-d6252966e23f-29,https://biolit.fr/observations/observation-d7f25815-2ce0-4392-a43d-d6252966e23f-29/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_5.PNG,,TRUE, +N1,58944,sortie-282858f5-e6a7-4cb9-a602-e282f85e784d,https://biolit.fr/sorties/sortie-282858f5-e6a7-4cb9-a602-e282f85e784d/,Zélie Auger,,03/01/2021,17.0000000,19.0000000,47.100656000000,-2.07262300000,,Pornic,36222,observation-282858f5-e6a7-4cb9-a602-e282f85e784d,https://biolit.fr/observations/observation-282858f5-e6a7-4cb9-a602-e282f85e784d/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/1614613887398-scaled.jpg,,TRUE, +N1,58944,sortie-282858f5-e6a7-4cb9-a602-e282f85e784d,https://biolit.fr/sorties/sortie-282858f5-e6a7-4cb9-a602-e282f85e784d/,Zélie Auger,,03/01/2021,17.0000000,19.0000000,47.100656000000,-2.07262300000,,Pornic,36224,observation-282858f5-e6a7-4cb9-a602-e282f85e784d-2,https://biolit.fr/observations/observation-282858f5-e6a7-4cb9-a602-e282f85e784d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/1614613909047-scaled.jpg,,FALSE, +N1,58944,sortie-282858f5-e6a7-4cb9-a602-e282f85e784d,https://biolit.fr/sorties/sortie-282858f5-e6a7-4cb9-a602-e282f85e784d/,Zélie Auger,,03/01/2021,17.0000000,19.0000000,47.100656000000,-2.07262300000,,Pornic,36226,observation-282858f5-e6a7-4cb9-a602-e282f85e784d-3,https://biolit.fr/observations/observation-282858f5-e6a7-4cb9-a602-e282f85e784d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/1614613832694-scaled.jpg,,FALSE, +N1,58944,sortie-282858f5-e6a7-4cb9-a602-e282f85e784d,https://biolit.fr/sorties/sortie-282858f5-e6a7-4cb9-a602-e282f85e784d/,Zélie Auger,,03/01/2021,17.0000000,19.0000000,47.100656000000,-2.07262300000,,Pornic,36228,observation-282858f5-e6a7-4cb9-a602-e282f85e784d-4,https://biolit.fr/observations/observation-282858f5-e6a7-4cb9-a602-e282f85e784d-4/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/1614613887393-scaled.jpg,,TRUE, +N1,58944,sortie-282858f5-e6a7-4cb9-a602-e282f85e784d,https://biolit.fr/sorties/sortie-282858f5-e6a7-4cb9-a602-e282f85e784d/,Zélie Auger,,03/01/2021,17.0000000,19.0000000,47.100656000000,-2.07262300000,,Pornic,36230,observation-282858f5-e6a7-4cb9-a602-e282f85e784d-5,https://biolit.fr/observations/observation-282858f5-e6a7-4cb9-a602-e282f85e784d-5/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/1614613887386-scaled.jpg,,TRUE, +N1,58944,sortie-282858f5-e6a7-4cb9-a602-e282f85e784d,https://biolit.fr/sorties/sortie-282858f5-e6a7-4cb9-a602-e282f85e784d/,Zélie Auger,,03/01/2021,17.0000000,19.0000000,47.100656000000,-2.07262300000,,Pornic,36232,observation-282858f5-e6a7-4cb9-a602-e282f85e784d-6,https://biolit.fr/observations/observation-282858f5-e6a7-4cb9-a602-e282f85e784d-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/1614613856323-scaled.jpg,,FALSE, +N1,58944,sortie-282858f5-e6a7-4cb9-a602-e282f85e784d,https://biolit.fr/sorties/sortie-282858f5-e6a7-4cb9-a602-e282f85e784d/,Zélie Auger,,03/01/2021,17.0000000,19.0000000,47.100656000000,-2.07262300000,,Pornic,36236,observation-282858f5-e6a7-4cb9-a602-e282f85e784d-8,https://biolit.fr/observations/observation-282858f5-e6a7-4cb9-a602-e282f85e784d-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/1614613832683_0-scaled.jpg | https://biolit.fr/wp-content/uploads/2021/03/1614613832687-scaled-1-scaled.jpg,,FALSE, +N1,58944,sortie-282858f5-e6a7-4cb9-a602-e282f85e784d,https://biolit.fr/sorties/sortie-282858f5-e6a7-4cb9-a602-e282f85e784d/,Zélie Auger,,03/01/2021,17.0000000,19.0000000,47.100656000000,-2.07262300000,,Pornic,36238,observation-282858f5-e6a7-4cb9-a602-e282f85e784d-9,https://biolit.fr/observations/observation-282858f5-e6a7-4cb9-a602-e282f85e784d-9/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/1614613935537-min-scaled.jpg,,TRUE, +N1,58944,sortie-282858f5-e6a7-4cb9-a602-e282f85e784d,https://biolit.fr/sorties/sortie-282858f5-e6a7-4cb9-a602-e282f85e784d/,Zélie Auger,,03/01/2021,17.0000000,19.0000000,47.100656000000,-2.07262300000,,Pornic,36240,observation-282858f5-e6a7-4cb9-a602-e282f85e784d-10,https://biolit.fr/observations/observation-282858f5-e6a7-4cb9-a602-e282f85e784d-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/1614613909063-min (1)-scaled.jpg,,FALSE, +N1,58944,sortie-282858f5-e6a7-4cb9-a602-e282f85e784d,https://biolit.fr/sorties/sortie-282858f5-e6a7-4cb9-a602-e282f85e784d/,Zélie Auger,,03/01/2021,17.0000000,19.0000000,47.100656000000,-2.07262300000,,Pornic,36242,observation-282858f5-e6a7-4cb9-a602-e282f85e784d-11,https://biolit.fr/observations/observation-282858f5-e6a7-4cb9-a602-e282f85e784d-11/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/1614613909055-min-scaled.jpg,,TRUE, +N1,58944,sortie-282858f5-e6a7-4cb9-a602-e282f85e784d,https://biolit.fr/sorties/sortie-282858f5-e6a7-4cb9-a602-e282f85e784d/,Zélie Auger,,03/01/2021,17.0000000,19.0000000,47.100656000000,-2.07262300000,,Pornic,36244,observation-282858f5-e6a7-4cb9-a602-e282f85e784d-12,https://biolit.fr/observations/observation-282858f5-e6a7-4cb9-a602-e282f85e784d-12/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/1614613887403-min-scaled.jpg,,TRUE, +N1,58944,sortie-282858f5-e6a7-4cb9-a602-e282f85e784d,https://biolit.fr/sorties/sortie-282858f5-e6a7-4cb9-a602-e282f85e784d/,Zélie Auger,,03/01/2021,17.0000000,19.0000000,47.100656000000,-2.07262300000,,Pornic,36246,observation-282858f5-e6a7-4cb9-a602-e282f85e784d-13,https://biolit.fr/observations/observation-282858f5-e6a7-4cb9-a602-e282f85e784d-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/1614613856330-min-scaled.jpg,,FALSE, +N1,58944,sortie-282858f5-e6a7-4cb9-a602-e282f85e784d,https://biolit.fr/sorties/sortie-282858f5-e6a7-4cb9-a602-e282f85e784d/,Zélie Auger,,03/01/2021,17.0000000,19.0000000,47.100656000000,-2.07262300000,,Pornic,36248,observation-282858f5-e6a7-4cb9-a602-e282f85e784d-14,https://biolit.fr/observations/observation-282858f5-e6a7-4cb9-a602-e282f85e784d-14/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/1614613856314-min-scaled.jpg,,TRUE, +N1,58944,sortie-282858f5-e6a7-4cb9-a602-e282f85e784d,https://biolit.fr/sorties/sortie-282858f5-e6a7-4cb9-a602-e282f85e784d/,Zélie Auger,,03/01/2021,17.0000000,19.0000000,47.100656000000,-2.07262300000,,Pornic,36250,observation-282858f5-e6a7-4cb9-a602-e282f85e784d-15,https://biolit.fr/observations/observation-282858f5-e6a7-4cb9-a602-e282f85e784d-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/1614613832690-min-scaled.jpg,,FALSE, +N1,58945,sortie-d5fe45b6-2997-4b5f-b5bb-f892ca9651d8,https://biolit.fr/sorties/sortie-d5fe45b6-2997-4b5f-b5bb-f892ca9651d8/,LECLERCQ,,2/22/2021 0:00,10.0000000,12.0000000,43.166818000000,5.597228000000,,LE MUGEL A LA CIOTA (13600),36252,observation-d5fe45b6-2997-4b5f-b5bb-f892ca9651d8,https://biolit.fr/observations/observation-d5fe45b6-2997-4b5f-b5bb-f892ca9651d8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lithophyllum 1 LECLERCQ-scaled.jpg,,FALSE, +N1,58946,sortie-47774bc4-af8b-43db-af01-fabd7afafb41,https://biolit.fr/sorties/sortie-47774bc4-af8b-43db-af01-fabd7afafb41/,Phil,,2/27/2021 0:00,10.0000000,10.0:45,48.669489000000,-4.371348000000,,Kerlouan - Finistère,36254,observation-47774bc4-af8b-43db-af01-fabd7afafb41,https://biolit.fr/observations/observation-47774bc4-af8b-43db-af01-fabd7afafb41/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210227_104608_1.jpg,,TRUE, +N1,58946,sortie-47774bc4-af8b-43db-af01-fabd7afafb41,https://biolit.fr/sorties/sortie-47774bc4-af8b-43db-af01-fabd7afafb41/,Phil,,2/27/2021 0:00,10.0000000,10.0:45,48.669489000000,-4.371348000000,,Kerlouan - Finistère,36256,observation-47774bc4-af8b-43db-af01-fabd7afafb41-2,https://biolit.fr/observations/observation-47774bc4-af8b-43db-af01-fabd7afafb41-2/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210227_104601.jpg,,TRUE, +N1,58947,sortie-ca4654a4-2049-4b4f-891e-9d3686c93e15,https://biolit.fr/sorties/sortie-ca4654a4-2049-4b4f-891e-9d3686c93e15/,Phil,,02/02/2021,15.0:35,15.0000000,47.895880000000,-3.967584000000,,La Forêt-Fouesnant - Finistère,36258,observation-ca4654a4-2049-4b4f-891e-9d3686c93e15,https://biolit.fr/observations/observation-ca4654a4-2049-4b4f-891e-9d3686c93e15/,Atelecyclus undecimdentatus,Grand crabe circulaire,,https://biolit.fr/wp-content/uploads/2023/07/20210202_153722.jpg | https://biolit.fr/wp-content/uploads/2021/02/20210202_153710_0.jpg,,TRUE, +N1,58947,sortie-ca4654a4-2049-4b4f-891e-9d3686c93e15,https://biolit.fr/sorties/sortie-ca4654a4-2049-4b4f-891e-9d3686c93e15/,Phil,,02/02/2021,15.0:35,15.0000000,47.895880000000,-3.967584000000,,La Forêt-Fouesnant - Finistère,36262,observation-ca4654a4-2049-4b4f-891e-9d3686c93e15-3,https://biolit.fr/observations/observation-ca4654a4-2049-4b4f-891e-9d3686c93e15-3/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/20210202_153955.jpg,,TRUE, +N1,58947,sortie-ca4654a4-2049-4b4f-891e-9d3686c93e15,https://biolit.fr/sorties/sortie-ca4654a4-2049-4b4f-891e-9d3686c93e15/,Phil,,02/02/2021,15.0:35,15.0000000,47.895880000000,-3.967584000000,,La Forêt-Fouesnant - Finistère,36264,observation-ca4654a4-2049-4b4f-891e-9d3686c93e15-4,https://biolit.fr/observations/observation-ca4654a4-2049-4b4f-891e-9d3686c93e15-4/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20210202_154024.jpg,,TRUE, +N1,58948,sortie-949c5e4d-0ffb-4f60-97d3-8790e8bea109,https://biolit.fr/sorties/sortie-949c5e4d-0ffb-4f60-97d3-8790e8bea109/,Phil,,5/22/2020 0:00,13.0:35,13.0:45,47.800159000000,-4.180504000000,,Loctudy - Finistère,36266,observation-949c5e4d-0ffb-4f60-97d3-8790e8bea109,https://biolit.fr/observations/observation-949c5e4d-0ffb-4f60-97d3-8790e8bea109/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/20200522_134151.jpg,,TRUE, +N1,58948,sortie-949c5e4d-0ffb-4f60-97d3-8790e8bea109,https://biolit.fr/sorties/sortie-949c5e4d-0ffb-4f60-97d3-8790e8bea109/,Phil,,5/22/2020 0:00,13.0:35,13.0:45,47.800159000000,-4.180504000000,,Loctudy - Finistère,36268,observation-949c5e4d-0ffb-4f60-97d3-8790e8bea109-2,https://biolit.fr/observations/observation-949c5e4d-0ffb-4f60-97d3-8790e8bea109-2/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/20200522_134215.jpg,,TRUE, +N1,58948,sortie-949c5e4d-0ffb-4f60-97d3-8790e8bea109,https://biolit.fr/sorties/sortie-949c5e4d-0ffb-4f60-97d3-8790e8bea109/,Phil,,5/22/2020 0:00,13.0:35,13.0:45,47.800159000000,-4.180504000000,,Loctudy - Finistère,36270,observation-949c5e4d-0ffb-4f60-97d3-8790e8bea109-3,https://biolit.fr/observations/observation-949c5e4d-0ffb-4f60-97d3-8790e8bea109-3/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/20200522_134209.jpg,,TRUE, +N1,58948,sortie-949c5e4d-0ffb-4f60-97d3-8790e8bea109,https://biolit.fr/sorties/sortie-949c5e4d-0ffb-4f60-97d3-8790e8bea109/,Phil,,5/22/2020 0:00,13.0:35,13.0:45,47.800159000000,-4.180504000000,,Loctudy - Finistère,36272,observation-949c5e4d-0ffb-4f60-97d3-8790e8bea109-4,https://biolit.fr/observations/observation-949c5e4d-0ffb-4f60-97d3-8790e8bea109-4/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200522_133841.jpg,,TRUE, +N1,58948,sortie-949c5e4d-0ffb-4f60-97d3-8790e8bea109,https://biolit.fr/sorties/sortie-949c5e4d-0ffb-4f60-97d3-8790e8bea109/,Phil,,5/22/2020 0:00,13.0:35,13.0:45,47.800159000000,-4.180504000000,,Loctudy - Finistère,36274,observation-949c5e4d-0ffb-4f60-97d3-8790e8bea109-5,https://biolit.fr/observations/observation-949c5e4d-0ffb-4f60-97d3-8790e8bea109-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20200522_133846.jpg,,TRUE, +N1,58949,sortie-c7db2524-c979-4b7c-a5ac-4b9de088ae3e,https://biolit.fr/sorties/sortie-c7db2524-c979-4b7c-a5ac-4b9de088ae3e/,Phil,,02/07/2021,10.0:55,11.0000000,47.861786000000,-3.983866000000,,Fouesnant - Finistère,36276,observation-c7db2524-c979-4b7c-a5ac-4b9de088ae3e,https://biolit.fr/observations/observation-c7db2524-c979-4b7c-a5ac-4b9de088ae3e/,Ceramium virgatum,Céramium rouge,,https://biolit.fr/wp-content/uploads/2023/07/20210207_105717.jpg,,TRUE, +N1,58949,sortie-c7db2524-c979-4b7c-a5ac-4b9de088ae3e,https://biolit.fr/sorties/sortie-c7db2524-c979-4b7c-a5ac-4b9de088ae3e/,Phil,,02/07/2021,10.0:55,11.0000000,47.861786000000,-3.983866000000,,Fouesnant - Finistère,36278,observation-c7db2524-c979-4b7c-a5ac-4b9de088ae3e-2,https://biolit.fr/observations/observation-c7db2524-c979-4b7c-a5ac-4b9de088ae3e-2/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20210207_105808.jpg,,TRUE, +N1,58950,sortie-e6317b2b-eadf-4327-ad3e-10140eebb30e,https://biolit.fr/sorties/sortie-e6317b2b-eadf-4327-ad3e-10140eebb30e/,Club subaquatique Narbonnais,,2/21/2021 0:00,11.0000000,12.0000000,43.168363000000,3.180552000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,36280,observation-e6317b2b-eadf-4327-ad3e-10140eebb30e,https://biolit.fr/observations/observation-e6317b2b-eadf-4327-ad3e-10140eebb30e/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/anatife (Lepas hillii).jpg,,TRUE, +N1,58950,sortie-e6317b2b-eadf-4327-ad3e-10140eebb30e,https://biolit.fr/sorties/sortie-e6317b2b-eadf-4327-ad3e-10140eebb30e/,Club subaquatique Narbonnais,,2/21/2021 0:00,11.0000000,12.0000000,43.168363000000,3.180552000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,36284,observation-e6317b2b-eadf-4327-ad3e-10140eebb30e-3,https://biolit.fr/observations/observation-e6317b2b-eadf-4327-ad3e-10140eebb30e-3/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/anatife3.jpg | https://biolit.fr/wp-content/uploads/2021/02/anatife2.jpg,,TRUE, +N1,58950,sortie-e6317b2b-eadf-4327-ad3e-10140eebb30e,https://biolit.fr/sorties/sortie-e6317b2b-eadf-4327-ad3e-10140eebb30e/,Club subaquatique Narbonnais,,2/21/2021 0:00,11.0000000,12.0000000,43.168363000000,3.180552000000,Club Subaquatique Narbonnais CSN/FSGT,Narbonne-plage,36286,observation-e6317b2b-eadf-4327-ad3e-10140eebb30e-4,https://biolit.fr/observations/observation-e6317b2b-eadf-4327-ad3e-10140eebb30e-4/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/capsules.jpg,,TRUE, +N1,58951,sortie-b71e10ee-9efd-448d-a4de-c3a12cb7a99e,https://biolit.fr/sorties/sortie-b71e10ee-9efd-448d-a4de-c3a12cb7a99e/,Phil,,02/02/2021,15.0:35,15.0000000,47.896034000000,-3.966981000000,,La Forêt-Fouesnant - Finistère,36288,observation-b71e10ee-9efd-448d-a4de-c3a12cb7a99e,https://biolit.fr/observations/observation-b71e10ee-9efd-448d-a4de-c3a12cb7a99e/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20210202_153446.jpg,,TRUE, +N1,58951,sortie-b71e10ee-9efd-448d-a4de-c3a12cb7a99e,https://biolit.fr/sorties/sortie-b71e10ee-9efd-448d-a4de-c3a12cb7a99e/,Phil,,02/02/2021,15.0:35,15.0000000,47.896034000000,-3.966981000000,,La Forêt-Fouesnant - Finistère,36290,observation-b71e10ee-9efd-448d-a4de-c3a12cb7a99e-2,https://biolit.fr/observations/observation-b71e10ee-9efd-448d-a4de-c3a12cb7a99e-2/,Dosinia exoleta,Dosinie radiée,,https://biolit.fr/wp-content/uploads/2023/07/20210202_153636.jpg,,TRUE, +N1,58951,sortie-b71e10ee-9efd-448d-a4de-c3a12cb7a99e,https://biolit.fr/sorties/sortie-b71e10ee-9efd-448d-a4de-c3a12cb7a99e/,Phil,,02/02/2021,15.0:35,15.0000000,47.896034000000,-3.966981000000,,La Forêt-Fouesnant - Finistère,36292,observation-b71e10ee-9efd-448d-a4de-c3a12cb7a99e-3,https://biolit.fr/observations/observation-b71e10ee-9efd-448d-a4de-c3a12cb7a99e-3/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/20210202_153616.jpg,,TRUE, +N1,58952,sortie-7a075c74-358d-45c2-8ea8-104846b1fc1b,https://biolit.fr/sorties/sortie-7a075c74-358d-45c2-8ea8-104846b1fc1b/,Phil,,02/11/2021,11.0000000,11.0000000,47.896096000000,-3.968025000000,,La Forêt-Fouesnant - Finistère,36294,observation-7a075c74-358d-45c2-8ea8-104846b1fc1b,https://biolit.fr/observations/observation-7a075c74-358d-45c2-8ea8-104846b1fc1b/,Mya arenaria,Mye des sables,,https://biolit.fr/wp-content/uploads/2023/07/20210211_110004.jpg,,TRUE, +N1,58952,sortie-7a075c74-358d-45c2-8ea8-104846b1fc1b,https://biolit.fr/sorties/sortie-7a075c74-358d-45c2-8ea8-104846b1fc1b/,Phil,,02/11/2021,11.0000000,11.0000000,47.896096000000,-3.968025000000,,La Forêt-Fouesnant - Finistère,36296,observation-7a075c74-358d-45c2-8ea8-104846b1fc1b-2,https://biolit.fr/observations/observation-7a075c74-358d-45c2-8ea8-104846b1fc1b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210211_110238.jpg,,FALSE, +N1,58953,sortie-7f19d8df-738e-4d36-80a9-ccf8f321aea4,https://biolit.fr/sorties/sortie-7f19d8df-738e-4d36-80a9-ccf8f321aea4/,Phil,,5/22/2020 0:00,13.0:35,13.0000000,47.799725000000,-4.181190000000,,Loctudy - Finistère,36298,observation-7f19d8df-738e-4d36-80a9-ccf8f321aea4,https://biolit.fr/observations/observation-7f19d8df-738e-4d36-80a9-ccf8f321aea4/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/20200522_133803.jpg,,TRUE, +N1,58953,sortie-7f19d8df-738e-4d36-80a9-ccf8f321aea4,https://biolit.fr/sorties/sortie-7f19d8df-738e-4d36-80a9-ccf8f321aea4/,Phil,,5/22/2020 0:00,13.0:35,13.0000000,47.799725000000,-4.181190000000,,Loctudy - Finistère,36302,observation-7f19d8df-738e-4d36-80a9-ccf8f321aea4-3,https://biolit.fr/observations/observation-7f19d8df-738e-4d36-80a9-ccf8f321aea4-3/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/20200522_133729.jpg,,TRUE, +N1,58953,sortie-7f19d8df-738e-4d36-80a9-ccf8f321aea4,https://biolit.fr/sorties/sortie-7f19d8df-738e-4d36-80a9-ccf8f321aea4/,Phil,,5/22/2020 0:00,13.0:35,13.0000000,47.799725000000,-4.181190000000,,Loctudy - Finistère,36304,observation-7f19d8df-738e-4d36-80a9-ccf8f321aea4-4,https://biolit.fr/observations/observation-7f19d8df-738e-4d36-80a9-ccf8f321aea4-4/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/20200522_133549.jpg,,TRUE, +N1,58953,sortie-7f19d8df-738e-4d36-80a9-ccf8f321aea4,https://biolit.fr/sorties/sortie-7f19d8df-738e-4d36-80a9-ccf8f321aea4/,Phil,,5/22/2020 0:00,13.0:35,13.0000000,47.799725000000,-4.181190000000,,Loctudy - Finistère,36306,observation-7f19d8df-738e-4d36-80a9-ccf8f321aea4-5,https://biolit.fr/observations/observation-7f19d8df-738e-4d36-80a9-ccf8f321aea4-5/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/20200522_133519.jpg,,TRUE, +N1,58954,sortie-ba6d3665-dd76-4ae7-b686-dc8b43239203,https://biolit.fr/sorties/sortie-ba6d3665-dd76-4ae7-b686-dc8b43239203/,Phil,,02/07/2021,10.0:35,10.0000000,47.854135000000,-3.981016000000,,Fouesnant - Finistère,36308,observation-ba6d3665-dd76-4ae7-b686-dc8b43239203,https://biolit.fr/observations/observation-ba6d3665-dd76-4ae7-b686-dc8b43239203/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20210207_103855.jpg,,TRUE, +N1,58954,sortie-ba6d3665-dd76-4ae7-b686-dc8b43239203,https://biolit.fr/sorties/sortie-ba6d3665-dd76-4ae7-b686-dc8b43239203/,Phil,,02/07/2021,10.0:35,10.0000000,47.854135000000,-3.981016000000,,Fouesnant - Finistère,36310,observation-ba6d3665-dd76-4ae7-b686-dc8b43239203-2,https://biolit.fr/observations/observation-ba6d3665-dd76-4ae7-b686-dc8b43239203-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20210207_104106.jpg,,FALSE, +N1,58955,sortie-19900bda-92a7-4b15-8660-86b472008f0f,https://biolit.fr/sorties/sortie-19900bda-92a7-4b15-8660-86b472008f0f/,Roman,,02/06/2021,16.0000000,17.0000000,47.70803700000,-3.343568000000,,Port-Louis,36312,observation-19900bda-92a7-4b15-8660-86b472008f0f,https://biolit.fr/observations/observation-19900bda-92a7-4b15-8660-86b472008f0f/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_7.PNG,,TRUE, +N1,58955,sortie-19900bda-92a7-4b15-8660-86b472008f0f,https://biolit.fr/sorties/sortie-19900bda-92a7-4b15-8660-86b472008f0f/,Roman,,02/06/2021,16.0000000,17.0000000,47.70803700000,-3.343568000000,,Port-Louis,36314,observation-19900bda-92a7-4b15-8660-86b472008f0f-2,https://biolit.fr/observations/observation-19900bda-92a7-4b15-8660-86b472008f0f-2/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_1.PNG,,TRUE, +N1,58955,sortie-19900bda-92a7-4b15-8660-86b472008f0f,https://biolit.fr/sorties/sortie-19900bda-92a7-4b15-8660-86b472008f0f/,Roman,,02/06/2021,16.0000000,17.0000000,47.70803700000,-3.343568000000,,Port-Louis,36316,observation-19900bda-92a7-4b15-8660-86b472008f0f-3,https://biolit.fr/observations/observation-19900bda-92a7-4b15-8660-86b472008f0f-3/,Ensis siliqua,Couteau-silique,,https://biolit.fr/wp-content/uploads/2023/07/Ensis siliqua_0.PNG,,TRUE, +N1,58955,sortie-19900bda-92a7-4b15-8660-86b472008f0f,https://biolit.fr/sorties/sortie-19900bda-92a7-4b15-8660-86b472008f0f/,Roman,,02/06/2021,16.0000000,17.0000000,47.70803700000,-3.343568000000,,Port-Louis,36318,observation-19900bda-92a7-4b15-8660-86b472008f0f-4,https://biolit.fr/observations/observation-19900bda-92a7-4b15-8660-86b472008f0f-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_0.PNG,,TRUE, +N1,58955,sortie-19900bda-92a7-4b15-8660-86b472008f0f,https://biolit.fr/sorties/sortie-19900bda-92a7-4b15-8660-86b472008f0f/,Roman,,02/06/2021,16.0000000,17.0000000,47.70803700000,-3.343568000000,,Port-Louis,36320,observation-19900bda-92a7-4b15-8660-86b472008f0f-5,https://biolit.fr/observations/observation-19900bda-92a7-4b15-8660-86b472008f0f-5/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nassarius reticulatus_0.PNG,,TRUE, +N1,58955,sortie-19900bda-92a7-4b15-8660-86b472008f0f,https://biolit.fr/sorties/sortie-19900bda-92a7-4b15-8660-86b472008f0f/,Roman,,02/06/2021,16.0000000,17.0000000,47.70803700000,-3.343568000000,,Port-Louis,36322,observation-19900bda-92a7-4b15-8660-86b472008f0f-6,https://biolit.fr/observations/observation-19900bda-92a7-4b15-8660-86b472008f0f-6/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/07/Patella vulgata-scaled.jpg,,TRUE, +N1,58955,sortie-19900bda-92a7-4b15-8660-86b472008f0f,https://biolit.fr/sorties/sortie-19900bda-92a7-4b15-8660-86b472008f0f/,Roman,,02/06/2021,16.0000000,17.0000000,47.70803700000,-3.343568000000,,Port-Louis,36323,observation-19900bda-92a7-4b15-8660-86b472008f0f-7,https://biolit.fr/observations/observation-19900bda-92a7-4b15-8660-86b472008f0f-7/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus_2.PNG,,TRUE, +N1,58955,sortie-19900bda-92a7-4b15-8660-86b472008f0f,https://biolit.fr/sorties/sortie-19900bda-92a7-4b15-8660-86b472008f0f/,Roman,,02/06/2021,16.0000000,17.0000000,47.70803700000,-3.343568000000,,Port-Louis,36325,observation-19900bda-92a7-4b15-8660-86b472008f0f-8,https://biolit.fr/observations/observation-19900bda-92a7-4b15-8660-86b472008f0f-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/ponte de polychète_2.PNG,,FALSE, +N1,58955,sortie-19900bda-92a7-4b15-8660-86b472008f0f,https://biolit.fr/sorties/sortie-19900bda-92a7-4b15-8660-86b472008f0f/,Roman,,02/06/2021,16.0000000,17.0000000,47.70803700000,-3.343568000000,,Port-Louis,36327,observation-19900bda-92a7-4b15-8660-86b472008f0f-9,https://biolit.fr/observations/observation-19900bda-92a7-4b15-8660-86b472008f0f-9/,Scrobicularia plana,Scrobiculaire,,https://biolit.fr/wp-content/uploads/2023/07/Scrobicularia plana.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36329,observation-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_3.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36331,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-2,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea_4.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36333,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-3,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/anthopleura sp pe.PNG,,FALSE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36335,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-4,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-4/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_9.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36337,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-5,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-5/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/Blennie sp_0.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36339,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-6,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-6/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_2.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36341,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-7,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-7/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/Branta bernicla_0.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36343,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-8,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-8/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/cancer pagurus_4.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36344,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-9,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-9/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_6.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36346,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-10,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-10/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/cereus ou sagartia.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36348,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-11,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-11/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Crassostrea gigas_0.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36350,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-12,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 1_2.PNG,,FALSE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36352,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-13,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 2_3.PNG,,FALSE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36354,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-14,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona sp.PNG,,FALSE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36356,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-15,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/marsouin.PNG,,FALSE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36358,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-16,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-16/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_6.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36360,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-17,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-17/,Tritia incrassata,Nasse épaisse,,https://biolit.fr/wp-content/uploads/2023/07/Nassarius incrassatus et pisidia longicornis.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36362,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-18,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-18/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus ponte.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36364,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-19,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-19/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_7.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36366,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-20,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-20/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Paracentrotus lividus_3.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36368,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-21,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-21/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus_1.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36370,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-22,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-22/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_4.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36372,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-23,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-23/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_7.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36374,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-24,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/Urticina eques 1.PNG,,FALSE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36376,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-25,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/urticina eques.PNG,,FALSE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36378,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-26,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-26/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa_2.PNG,,TRUE, +N1,58956,sortie-e3bd2095-dd70-465f-bacb-f806b8a38282,https://biolit.fr/sorties/sortie-e3bd2095-dd70-465f-bacb-f806b8a38282/,Roman,,02/02/2021,14.0000000,16.0000000,47.69852800000,-3.35556200000,,Gâvres,36380,observation-e3bd2095-dd70-465f-bacb-f806b8a38282-27,https://biolit.fr/observations/observation-e3bd2095-dd70-465f-bacb-f806b8a38282-27/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_4.PNG,,TRUE, +N1,58957,sortie-71b1ab59-c470-46a2-b77c-826cbfdf29d7,https://biolit.fr/sorties/sortie-71b1ab59-c470-46a2-b77c-826cbfdf29d7/,Anjelika,,02/05/2021,14.0000000,16.0000000,43.31,5.36,,Vieux port de Marseille ,36388,observation-71b1ab59-c470-46a2-b77c-826cbfdf29d7-4,https://biolit.fr/observations/observation-71b1ab59-c470-46a2-b77c-826cbfdf29d7-4/,,,,https://biolit.fr/wp-content/uploads/2021/02/IMG_3174-scaled-1-scaled.jpg | https://biolit.fr/wp-content/uploads/2021/02/IMG_3177-scaled-1-scaled.jpg | https://biolit.fr/wp-content/uploads/2021/02/IMG_3189_0-scaled-1-scaled.jpg | https://biolit.fr/wp-content/uploads/2023/07/IMG_3190-scaled.jpg,,FALSE, +N1,58958,sortie-26fb5b33-21ac-44bc-8459-1a0e3b24ec24,https://biolit.fr/sorties/sortie-26fb5b33-21ac-44bc-8459-1a0e3b24ec24/,Phil,,5/22/2020 0:00,13.0000000,13.0000000,47.797010000000,-4.179740000000,,Loctudy - Finistère,36392,observation-26fb5b33-21ac-44bc-8459-1a0e3b24ec24,https://biolit.fr/observations/observation-26fb5b33-21ac-44bc-8459-1a0e3b24ec24/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20200522_133501.jpg,,TRUE, +N1,58958,sortie-26fb5b33-21ac-44bc-8459-1a0e3b24ec24,https://biolit.fr/sorties/sortie-26fb5b33-21ac-44bc-8459-1a0e3b24ec24/,Phil,,5/22/2020 0:00,13.0000000,13.0000000,47.797010000000,-4.179740000000,,Loctudy - Finistère,36394,observation-26fb5b33-21ac-44bc-8459-1a0e3b24ec24-2,https://biolit.fr/observations/observation-26fb5b33-21ac-44bc-8459-1a0e3b24ec24-2/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20200522_133344.jpg,,TRUE, +N1,58958,sortie-26fb5b33-21ac-44bc-8459-1a0e3b24ec24,https://biolit.fr/sorties/sortie-26fb5b33-21ac-44bc-8459-1a0e3b24ec24/,Phil,,5/22/2020 0:00,13.0000000,13.0000000,47.797010000000,-4.179740000000,,Loctudy - Finistère,36396,observation-26fb5b33-21ac-44bc-8459-1a0e3b24ec24-3,https://biolit.fr/observations/observation-26fb5b33-21ac-44bc-8459-1a0e3b24ec24-3/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20200522_133419.jpg,,TRUE, +N1,58958,sortie-26fb5b33-21ac-44bc-8459-1a0e3b24ec24,https://biolit.fr/sorties/sortie-26fb5b33-21ac-44bc-8459-1a0e3b24ec24/,Phil,,5/22/2020 0:00,13.0000000,13.0000000,47.797010000000,-4.179740000000,,Loctudy - Finistère,36398,observation-26fb5b33-21ac-44bc-8459-1a0e3b24ec24-4,https://biolit.fr/observations/observation-26fb5b33-21ac-44bc-8459-1a0e3b24ec24-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_133404.jpg,,FALSE, +N1,58958,sortie-26fb5b33-21ac-44bc-8459-1a0e3b24ec24,https://biolit.fr/sorties/sortie-26fb5b33-21ac-44bc-8459-1a0e3b24ec24/,Phil,,5/22/2020 0:00,13.0000000,13.0000000,47.797010000000,-4.179740000000,,Loctudy - Finistère,36400,observation-26fb5b33-21ac-44bc-8459-1a0e3b24ec24-5,https://biolit.fr/observations/observation-26fb5b33-21ac-44bc-8459-1a0e3b24ec24-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_133410.jpg,,FALSE, +N1,58958,sortie-26fb5b33-21ac-44bc-8459-1a0e3b24ec24,https://biolit.fr/sorties/sortie-26fb5b33-21ac-44bc-8459-1a0e3b24ec24/,Phil,,5/22/2020 0:00,13.0000000,13.0000000,47.797010000000,-4.179740000000,,Loctudy - Finistère,36402,observation-26fb5b33-21ac-44bc-8459-1a0e3b24ec24-6,https://biolit.fr/observations/observation-26fb5b33-21ac-44bc-8459-1a0e3b24ec24-6/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/20200522_133455.jpg,,TRUE, +N1,58959,sortie-93f8ab25-a879-44b2-87a2-cf16d282292f,https://biolit.fr/sorties/sortie-93f8ab25-a879-44b2-87a2-cf16d282292f/,Phil,,02/02/2021,15.0000000,15.0:35,47.895534000000,-3.966708000000,,La Forêt-Fouesnant - Finistère,36404,observation-93f8ab25-a879-44b2-87a2-cf16d282292f,https://biolit.fr/observations/observation-93f8ab25-a879-44b2-87a2-cf16d282292f/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20210202_153148.jpg,,TRUE, +N1,58959,sortie-93f8ab25-a879-44b2-87a2-cf16d282292f,https://biolit.fr/sorties/sortie-93f8ab25-a879-44b2-87a2-cf16d282292f/,Phil,,02/02/2021,15.0000000,15.0:35,47.895534000000,-3.966708000000,,La Forêt-Fouesnant - Finistère,36406,observation-93f8ab25-a879-44b2-87a2-cf16d282292f-2,https://biolit.fr/observations/observation-93f8ab25-a879-44b2-87a2-cf16d282292f-2/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20210202_153313.jpg,,TRUE, +N1,58959,sortie-93f8ab25-a879-44b2-87a2-cf16d282292f,https://biolit.fr/sorties/sortie-93f8ab25-a879-44b2-87a2-cf16d282292f/,Phil,,02/02/2021,15.0000000,15.0:35,47.895534000000,-3.966708000000,,La Forêt-Fouesnant - Finistère,36408,observation-93f8ab25-a879-44b2-87a2-cf16d282292f-3,https://biolit.fr/observations/observation-93f8ab25-a879-44b2-87a2-cf16d282292f-3/,Callista chione,Vernis,,https://biolit.fr/wp-content/uploads/2023/07/20210202_153230.jpg,,TRUE, +N1,58959,sortie-93f8ab25-a879-44b2-87a2-cf16d282292f,https://biolit.fr/sorties/sortie-93f8ab25-a879-44b2-87a2-cf16d282292f/,Phil,,02/02/2021,15.0000000,15.0:35,47.895534000000,-3.966708000000,,La Forêt-Fouesnant - Finistère,36410,observation-93f8ab25-a879-44b2-87a2-cf16d282292f-4,https://biolit.fr/observations/observation-93f8ab25-a879-44b2-87a2-cf16d282292f-4/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20210202_153354.jpg,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36412,observation-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita_1.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36414,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-2,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_2.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36416,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-3,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis pe.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36418,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-4,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-4/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asteria rubens_0.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36420,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-5,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_8.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36422,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-6,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-6/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/Blennie sp.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36424,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-7,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-7/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_1.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36426,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-8,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-8/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_3.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36428,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-9,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-9/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_5.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36430,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-10,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Colus jeffreysianus.PNG,,FALSE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36432,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-11,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-11/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/doris pseudoargus pe.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36433,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-12,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp-scaled.jpg,,FALSE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36434,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-13,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-13/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_1.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36436,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-14,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-14/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea-scaled.jpg,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36437,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-15,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-15/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina obtusata.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36439,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-16,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-16/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_5.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36441,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-17,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-17/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis ophidion pe.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36443,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-18,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-18/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/nucella lapillus_6.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36444,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-19,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-19/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebra erinaceus.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36446,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-20,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-20/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/Perforatus perforatus.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36448,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-21,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-21/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ponte de Nucella lapillus.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36450,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-22,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-22/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_3.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36452,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-23,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-23/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_6.PNG,,TRUE, +N1,58960,sortie-0597802e-2e33-4040-b9c2-5dc910a30e84,https://biolit.fr/sorties/sortie-0597802e-2e33-4040-b9c2-5dc910a30e84/,Roman,,1/18/2021 0:00,16.0000000,17.0000000,47.703214000000,-3.353996000000,,Port-Louis,36454,observation-0597802e-2e33-4040-b9c2-5dc910a30e84-24,https://biolit.fr/observations/observation-0597802e-2e33-4040-b9c2-5dc910a30e84-24/,Hediste diversicolor,Néréis multicolore,,https://biolit.fr/wp-content/uploads/2023/07/Ver sp_1.PNG,,TRUE, +N1,58961,sortie-65b6002b-8566-438a-b0d0-f7f7b5cdaa34,https://biolit.fr/sorties/sortie-65b6002b-8566-438a-b0d0-f7f7b5cdaa34/,Phil,,5/22/2020 0:00,13.0:15,13.0000000,47.800352000000,-4.18097600000,,Loctudy - Finistère,36455,observation-65b6002b-8566-438a-b0d0-f7f7b5cdaa34,https://biolit.fr/observations/observation-65b6002b-8566-438a-b0d0-f7f7b5cdaa34/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20200522_132804.jpg,,TRUE, +N1,58961,sortie-65b6002b-8566-438a-b0d0-f7f7b5cdaa34,https://biolit.fr/sorties/sortie-65b6002b-8566-438a-b0d0-f7f7b5cdaa34/,Phil,,5/22/2020 0:00,13.0:15,13.0000000,47.800352000000,-4.18097600000,,Loctudy - Finistère,36457,observation-65b6002b-8566-438a-b0d0-f7f7b5cdaa34-2,https://biolit.fr/observations/observation-65b6002b-8566-438a-b0d0-f7f7b5cdaa34-2/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20200522_132840.jpg,,TRUE, +N1,58961,sortie-65b6002b-8566-438a-b0d0-f7f7b5cdaa34,https://biolit.fr/sorties/sortie-65b6002b-8566-438a-b0d0-f7f7b5cdaa34/,Phil,,5/22/2020 0:00,13.0:15,13.0000000,47.800352000000,-4.18097600000,,Loctudy - Finistère,36459,observation-65b6002b-8566-438a-b0d0-f7f7b5cdaa34-3,https://biolit.fr/observations/observation-65b6002b-8566-438a-b0d0-f7f7b5cdaa34-3/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20200522_132920.jpg,,TRUE, +N1,58961,sortie-65b6002b-8566-438a-b0d0-f7f7b5cdaa34,https://biolit.fr/sorties/sortie-65b6002b-8566-438a-b0d0-f7f7b5cdaa34/,Phil,,5/22/2020 0:00,13.0:15,13.0000000,47.800352000000,-4.18097600000,,Loctudy - Finistère,36461,observation-65b6002b-8566-438a-b0d0-f7f7b5cdaa34-4,https://biolit.fr/observations/observation-65b6002b-8566-438a-b0d0-f7f7b5cdaa34-4/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20200522_133007.jpg,,TRUE, +N1,58962,sortie-d0e203b9-c0d1-4fb3-887a-446d5efa50ab,https://biolit.fr/sorties/sortie-d0e203b9-c0d1-4fb3-887a-446d5efa50ab/,LCD,,1/23/2021 0:00,15.0000000,17.0000000,43.103975000000,5.967480000000,,"Chapelle Notre-Dame-du-Cap-Falcon, Toulon",36463,observation-d0e203b9-c0d1-4fb3-887a-446d5efa50ab,https://biolit.fr/observations/observation-d0e203b9-c0d1-4fb3-887a-446d5efa50ab/,,,,https://biolit.fr/wp-content/uploads/2023/07/Parazoanthus axinellae Phorbas tenacior Chondrosia reniformis.JPG,,FALSE, +N1,58962,sortie-d0e203b9-c0d1-4fb3-887a-446d5efa50ab,https://biolit.fr/sorties/sortie-d0e203b9-c0d1-4fb3-887a-446d5efa50ab/,LCD,,1/23/2021 0:00,15.0000000,17.0000000,43.103975000000,5.967480000000,,"Chapelle Notre-Dame-du-Cap-Falcon, Toulon",36465,observation-d0e203b9-c0d1-4fb3-887a-446d5efa50ab-2,https://biolit.fr/observations/observation-d0e203b9-c0d1-4fb3-887a-446d5efa50ab-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Parazoanthus axinellae.JPG,,FALSE, +N1,58962,sortie-d0e203b9-c0d1-4fb3-887a-446d5efa50ab,https://biolit.fr/sorties/sortie-d0e203b9-c0d1-4fb3-887a-446d5efa50ab/,LCD,,1/23/2021 0:00,15.0000000,17.0000000,43.103975000000,5.967480000000,,"Chapelle Notre-Dame-du-Cap-Falcon, Toulon",36467,observation-d0e203b9-c0d1-4fb3-887a-446d5efa50ab-3,https://biolit.fr/observations/observation-d0e203b9-c0d1-4fb3-887a-446d5efa50ab-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Spongia officinalis.JPG,,FALSE, +N1,58962,sortie-d0e203b9-c0d1-4fb3-887a-446d5efa50ab,https://biolit.fr/sorties/sortie-d0e203b9-c0d1-4fb3-887a-446d5efa50ab/,LCD,,1/23/2021 0:00,15.0000000,17.0000000,43.103975000000,5.967480000000,,"Chapelle Notre-Dame-du-Cap-Falcon, Toulon",36469,observation-d0e203b9-c0d1-4fb3-887a-446d5efa50ab-4,https://biolit.fr/observations/observation-d0e203b9-c0d1-4fb3-887a-446d5efa50ab-4/,Apogon imberbis,Apogon,,https://biolit.fr/wp-content/uploads/2023/07/Apogon imberbis.JPG,,TRUE, +N1,58963,sortie-4498ccdb-8bee-471b-845d-468968ca8eaa,https://biolit.fr/sorties/sortie-4498ccdb-8bee-471b-845d-468968ca8eaa/,Phil,,7/26/2020 0:00,16.0:15,16.0:35,47.798132000000,-4.180032000000,,Loctudy - Finistère,36471,observation-4498ccdb-8bee-471b-845d-468968ca8eaa,https://biolit.fr/observations/observation-4498ccdb-8bee-471b-845d-468968ca8eaa/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20200726_162910.jpg,,TRUE, +N1,58963,sortie-4498ccdb-8bee-471b-845d-468968ca8eaa,https://biolit.fr/sorties/sortie-4498ccdb-8bee-471b-845d-468968ca8eaa/,Phil,,7/26/2020 0:00,16.0:15,16.0:35,47.798132000000,-4.180032000000,,Loctudy - Finistère,36473,observation-4498ccdb-8bee-471b-845d-468968ca8eaa-2,https://biolit.fr/observations/observation-4498ccdb-8bee-471b-845d-468968ca8eaa-2/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20200726_162700.jpg,,TRUE, +N1,58963,sortie-4498ccdb-8bee-471b-845d-468968ca8eaa,https://biolit.fr/sorties/sortie-4498ccdb-8bee-471b-845d-468968ca8eaa/,Phil,,7/26/2020 0:00,16.0:15,16.0:35,47.798132000000,-4.180032000000,,Loctudy - Finistère,36475,observation-4498ccdb-8bee-471b-845d-468968ca8eaa-3,https://biolit.fr/observations/observation-4498ccdb-8bee-471b-845d-468968ca8eaa-3/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20200726_162637.jpg,,TRUE, +N1,58963,sortie-4498ccdb-8bee-471b-845d-468968ca8eaa,https://biolit.fr/sorties/sortie-4498ccdb-8bee-471b-845d-468968ca8eaa/,Phil,,7/26/2020 0:00,16.0:15,16.0:35,47.798132000000,-4.180032000000,,Loctudy - Finistère,36477,observation-4498ccdb-8bee-471b-845d-468968ca8eaa-4,https://biolit.fr/observations/observation-4498ccdb-8bee-471b-845d-468968ca8eaa-4/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200726_163415.jpg,,TRUE, +N1,58963,sortie-4498ccdb-8bee-471b-845d-468968ca8eaa,https://biolit.fr/sorties/sortie-4498ccdb-8bee-471b-845d-468968ca8eaa/,Phil,,7/26/2020 0:00,16.0:15,16.0:35,47.798132000000,-4.180032000000,,Loctudy - Finistère,36479,observation-4498ccdb-8bee-471b-845d-468968ca8eaa-5,https://biolit.fr/observations/observation-4498ccdb-8bee-471b-845d-468968ca8eaa-5/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20200726_163930.jpg,,TRUE, +N1,58964,sortie-a71fb58a-6297-425b-8227-8770e4aba9ad,https://biolit.fr/sorties/sortie-a71fb58a-6297-425b-8227-8770e4aba9ad/,Phil,,5/22/2020 0:00,13.0000000,13.0000000,47.800020000000,-4.180963000000,,Loctudy - Finistère,36481,observation-a71fb58a-6297-425b-8227-8770e4aba9ad,https://biolit.fr/observations/observation-a71fb58a-6297-425b-8227-8770e4aba9ad/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200522_132644.jpg,,TRUE, +N1,58964,sortie-a71fb58a-6297-425b-8227-8770e4aba9ad,https://biolit.fr/sorties/sortie-a71fb58a-6297-425b-8227-8770e4aba9ad/,Phil,,5/22/2020 0:00,13.0000000,13.0000000,47.800020000000,-4.180963000000,,Loctudy - Finistère,36483,observation-a71fb58a-6297-425b-8227-8770e4aba9ad-2,https://biolit.fr/observations/observation-a71fb58a-6297-425b-8227-8770e4aba9ad-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_132627.jpg,,FALSE, +N1,58964,sortie-a71fb58a-6297-425b-8227-8770e4aba9ad,https://biolit.fr/sorties/sortie-a71fb58a-6297-425b-8227-8770e4aba9ad/,Phil,,5/22/2020 0:00,13.0000000,13.0000000,47.800020000000,-4.180963000000,,Loctudy - Finistère,36485,observation-a71fb58a-6297-425b-8227-8770e4aba9ad-3,https://biolit.fr/observations/observation-a71fb58a-6297-425b-8227-8770e4aba9ad-3/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200522_132615.jpg,,TRUE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36487,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,,,,https://biolit.fr/wp-content/uploads/2023/07/139495044_445957766434076_1971277192232257432_n.jpg,,FALSE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36489,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-2,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-2/,Ammophila arenaria,Oyat,,https://biolit.fr/wp-content/uploads/2023/07/139722634_2913616095526334_2327790873469244375_n.jpg,,TRUE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36491,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-3,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-3/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/139770690_787582935445340_5886031011320725878_n.jpg,,TRUE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36493,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-4,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/139389423_490106979057067_2756968141103430650_n.jpg,,FALSE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36495,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-5,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-5/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/139521653_233494608349220_1272910810321620692_n.jpg,,TRUE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36497,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-6,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/139489322_1341433189566760_8921958939805332129_n.jpg,,FALSE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36499,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-7,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/139488729_418763705992420_5143935184930659431_n.jpg,,FALSE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36501,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-8,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/139496032_403220234293840_9131453023536328597_n.jpg,,FALSE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36503,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-9,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/139433608_3651768424858486_8023029805370478381_n.jpg,,FALSE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36505,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-10,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/139471697_2511385565821796_8298799480002607680_n.jpg,,FALSE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36507,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-11,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/139500286_454228392259628_9007399627640841517_n.jpg,,FALSE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36509,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-12,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/139824693_3851497244910222_5285225632336828436_n.jpg,,FALSE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36511,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-13,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/140306075_3500175916777972_8093638385389312580_n.jpg,,FALSE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36513,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-14,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/139399941_914970152376208_8933036482441773916_n.jpg,,FALSE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36515,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-15,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/139532595_241540477596037_4999259174173404059_n.jpg,,FALSE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36517,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-16,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/139599141_745280729696682_7652244480097880426_n.jpg,,FALSE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36521,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-18,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/139451126_2914004262257765_8219708979817677096_n.jpg,,FALSE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36529,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-22,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-22/,Beta vulgaris subsp. maritima,Betterave maritime,,https://biolit.fr/wp-content/uploads/2023/07/139452345_166558128568183_1600179492505329325_n.jpg,,TRUE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36531,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-23,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-23/,Ulex europaeus,Ajonc commun,,https://biolit.fr/wp-content/uploads/2023/07/139537939_729949667945359_1533583870383570255_n.jpg,,TRUE, +N1,58965,sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74,https://biolit.fr/sorties/sortie-e9d9b3f5-8f6c-41b9-b375-31b587daaf74/,Monique_PlanèteMer,,1/14/2021 0:00,15.0000000,16.0000000,47.854270000000,-4.34782200000,,Plage de Tronoën,36533,observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-24,https://biolit.fr/observations/observation-e9d9b3f5-8f6c-41b9-b375-31b587daaf74-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/139537939_796885704242077_4029875322068029793_n.jpg,,FALSE, +N1,58966,sortie-e22868f3-3278-422b-b267-7132896ae0af,https://biolit.fr/sorties/sortie-e22868f3-3278-422b-b267-7132896ae0af/,Pascalulu,,1/16/2021 0:00,10.0000000,11.0:45,43.326615000000,3.566533000000,,Plage de Robinson,36535,observation-e22868f3-3278-422b-b267-7132896ae0af,https://biolit.fr/observations/observation-e22868f3-3278-422b-b267-7132896ae0af/,,,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210116_094558556~2-scaled.jpg,,FALSE, +N1,58966,sortie-e22868f3-3278-422b-b267-7132896ae0af,https://biolit.fr/sorties/sortie-e22868f3-3278-422b-b267-7132896ae0af/,Pascalulu,,1/16/2021 0:00,10.0000000,11.0:45,43.326615000000,3.566533000000,,Plage de Robinson,36537,observation-e22868f3-3278-422b-b267-7132896ae0af-2,https://biolit.fr/observations/observation-e22868f3-3278-422b-b267-7132896ae0af-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210116_094352549-scaled.jpg,,FALSE, +N1,58966,sortie-e22868f3-3278-422b-b267-7132896ae0af,https://biolit.fr/sorties/sortie-e22868f3-3278-422b-b267-7132896ae0af/,Pascalulu,,1/16/2021 0:00,10.0000000,11.0:45,43.326615000000,3.566533000000,,Plage de Robinson,36539,observation-e22868f3-3278-422b-b267-7132896ae0af-3,https://biolit.fr/observations/observation-e22868f3-3278-422b-b267-7132896ae0af-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210116_094445695-scaled.jpg,,FALSE, +N1,58966,sortie-e22868f3-3278-422b-b267-7132896ae0af,https://biolit.fr/sorties/sortie-e22868f3-3278-422b-b267-7132896ae0af/,Pascalulu,,1/16/2021 0:00,10.0000000,11.0:45,43.326615000000,3.566533000000,,Plage de Robinson,36541,observation-e22868f3-3278-422b-b267-7132896ae0af-4,https://biolit.fr/observations/observation-e22868f3-3278-422b-b267-7132896ae0af-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210116_094504923-scaled.jpg,,FALSE, +N1,58966,sortie-e22868f3-3278-422b-b267-7132896ae0af,https://biolit.fr/sorties/sortie-e22868f3-3278-422b-b267-7132896ae0af/,Pascalulu,,1/16/2021 0:00,10.0000000,11.0:45,43.326615000000,3.566533000000,,Plage de Robinson,36543,observation-e22868f3-3278-422b-b267-7132896ae0af-5,https://biolit.fr/observations/observation-e22868f3-3278-422b-b267-7132896ae0af-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210116_094519184-scaled.jpg,,FALSE, +N1,58966,sortie-e22868f3-3278-422b-b267-7132896ae0af,https://biolit.fr/sorties/sortie-e22868f3-3278-422b-b267-7132896ae0af/,Pascalulu,,1/16/2021 0:00,10.0000000,11.0:45,43.326615000000,3.566533000000,,Plage de Robinson,36545,observation-e22868f3-3278-422b-b267-7132896ae0af-6,https://biolit.fr/observations/observation-e22868f3-3278-422b-b267-7132896ae0af-6/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210116_094728505-scaled.jpg,,TRUE, +N1,58966,sortie-e22868f3-3278-422b-b267-7132896ae0af,https://biolit.fr/sorties/sortie-e22868f3-3278-422b-b267-7132896ae0af/,Pascalulu,,1/16/2021 0:00,10.0000000,11.0:45,43.326615000000,3.566533000000,,Plage de Robinson,36547,observation-e22868f3-3278-422b-b267-7132896ae0af-7,https://biolit.fr/observations/observation-e22868f3-3278-422b-b267-7132896ae0af-7/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210116_100516009-scaled.jpg,,TRUE, +N1,58966,sortie-e22868f3-3278-422b-b267-7132896ae0af,https://biolit.fr/sorties/sortie-e22868f3-3278-422b-b267-7132896ae0af/,Pascalulu,,1/16/2021 0:00,10.0000000,11.0:45,43.326615000000,3.566533000000,,Plage de Robinson,36549,observation-e22868f3-3278-422b-b267-7132896ae0af-8,https://biolit.fr/observations/observation-e22868f3-3278-422b-b267-7132896ae0af-8/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/PXL_20210116_100547119-scaled.jpg,,TRUE, +N1,58967,sortie-e2dc0dbb-b817-4915-9872-f3f87f3caf90,https://biolit.fr/sorties/sortie-e2dc0dbb-b817-4915-9872-f3f87f3caf90/,Phil,,3/13/2020 0:00,14.0:35,15.0000000,47.799206000000,-4.179766000000,,Loctudy - Finistère,36551,observation-e2dc0dbb-b817-4915-9872-f3f87f3caf90,https://biolit.fr/observations/observation-e2dc0dbb-b817-4915-9872-f3f87f3caf90/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/20200313_143642.jpg,,TRUE, +N1,58967,sortie-e2dc0dbb-b817-4915-9872-f3f87f3caf90,https://biolit.fr/sorties/sortie-e2dc0dbb-b817-4915-9872-f3f87f3caf90/,Phil,,3/13/2020 0:00,14.0:35,15.0000000,47.799206000000,-4.179766000000,,Loctudy - Finistère,36553,observation-e2dc0dbb-b817-4915-9872-f3f87f3caf90-2,https://biolit.fr/observations/observation-e2dc0dbb-b817-4915-9872-f3f87f3caf90-2/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20200313_150413.jpg,,TRUE, +N1,58967,sortie-e2dc0dbb-b817-4915-9872-f3f87f3caf90,https://biolit.fr/sorties/sortie-e2dc0dbb-b817-4915-9872-f3f87f3caf90/,Phil,,3/13/2020 0:00,14.0:35,15.0000000,47.799206000000,-4.179766000000,,Loctudy - Finistère,36555,observation-e2dc0dbb-b817-4915-9872-f3f87f3caf90-3,https://biolit.fr/observations/observation-e2dc0dbb-b817-4915-9872-f3f87f3caf90-3/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200313_150114.jpg,,TRUE, +N1,58967,sortie-e2dc0dbb-b817-4915-9872-f3f87f3caf90,https://biolit.fr/sorties/sortie-e2dc0dbb-b817-4915-9872-f3f87f3caf90/,Phil,,3/13/2020 0:00,14.0:35,15.0000000,47.799206000000,-4.179766000000,,Loctudy - Finistère,36557,observation-e2dc0dbb-b817-4915-9872-f3f87f3caf90-4,https://biolit.fr/observations/observation-e2dc0dbb-b817-4915-9872-f3f87f3caf90-4/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/20200313_150026.jpg,,TRUE, +N1,58967,sortie-e2dc0dbb-b817-4915-9872-f3f87f3caf90,https://biolit.fr/sorties/sortie-e2dc0dbb-b817-4915-9872-f3f87f3caf90/,Phil,,3/13/2020 0:00,14.0:35,15.0000000,47.799206000000,-4.179766000000,,Loctudy - Finistère,36559,observation-e2dc0dbb-b817-4915-9872-f3f87f3caf90-5,https://biolit.fr/observations/observation-e2dc0dbb-b817-4915-9872-f3f87f3caf90-5/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200313_150020.jpg,,TRUE, +N1,58967,sortie-e2dc0dbb-b817-4915-9872-f3f87f3caf90,https://biolit.fr/sorties/sortie-e2dc0dbb-b817-4915-9872-f3f87f3caf90/,Phil,,3/13/2020 0:00,14.0:35,15.0000000,47.799206000000,-4.179766000000,,Loctudy - Finistère,36561,observation-e2dc0dbb-b817-4915-9872-f3f87f3caf90-6,https://biolit.fr/observations/observation-e2dc0dbb-b817-4915-9872-f3f87f3caf90-6/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200313_145842.jpg,,TRUE, +N1,58968,sortie-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955,https://biolit.fr/sorties/sortie-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955/,Phil,,7/26/2020 0:00,16.0:15,16.0:25,47.800363000000,-4.180727000000,,Loctudy - Finistère,36563,observation-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955,https://biolit.fr/observations/observation-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/20200726_162413.jpg,,TRUE, +N1,58968,sortie-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955,https://biolit.fr/sorties/sortie-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955/,Phil,,7/26/2020 0:00,16.0:15,16.0:25,47.800363000000,-4.180727000000,,Loctudy - Finistère,36565,observation-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955-2,https://biolit.fr/observations/observation-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955-2/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/20200726_162338.jpg,,TRUE, +N1,58968,sortie-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955,https://biolit.fr/sorties/sortie-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955/,Phil,,7/26/2020 0:00,16.0:15,16.0:25,47.800363000000,-4.180727000000,,Loctudy - Finistère,36567,observation-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955-3,https://biolit.fr/observations/observation-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955-3/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/20200726_162325.jpg,,TRUE, +N1,58968,sortie-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955,https://biolit.fr/sorties/sortie-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955/,Phil,,7/26/2020 0:00,16.0:15,16.0:25,47.800363000000,-4.180727000000,,Loctudy - Finistère,36571,observation-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955-5,https://biolit.fr/observations/observation-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955-5/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/20200726_162445.jpg,,TRUE, +N1,58968,sortie-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955,https://biolit.fr/sorties/sortie-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955/,Phil,,7/26/2020 0:00,16.0:15,16.0:25,47.800363000000,-4.180727000000,,Loctudy - Finistère,36573,observation-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955-6,https://biolit.fr/observations/observation-2b80cd2d-1f92-4aa4-b29c-dfe6d3e93955-6/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/20200726_162458.jpg,,FALSE, +N1,58969,sortie-2cb78c02-6614-42b8-81d3-2936dc697aca,https://biolit.fr/sorties/sortie-2cb78c02-6614-42b8-81d3-2936dc697aca/,Massadiver,,3/13/2016 0:00,15.0000000,15.0:25,48.358942000000,-4.554964000000,,Sainte Anne du Portzic,36575,observation-2cb78c02-6614-42b8-81d3-2936dc697aca,https://biolit.fr/observations/observation-2cb78c02-6614-42b8-81d3-2936dc697aca/,,,,https://biolit.fr/wp-content/uploads/2023/07/Idotee_image1200.png,,FALSE, +N1,58970,sortie-faa04b11-b75b-41ea-8d39-6a0effbc83b9,https://biolit.fr/sorties/sortie-faa04b11-b75b-41ea-8d39-6a0effbc83b9/,Phil,,01/07/2021,16.0000000,16.0000000,47.799041000000,-4.212448000000,,Plobannalec-Lesconil - Finistère,36577,observation-faa04b11-b75b-41ea-8d39-6a0effbc83b9,https://biolit.fr/observations/observation-faa04b11-b75b-41ea-8d39-6a0effbc83b9/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/20210107_161804.jpg,,TRUE, +N1,58970,sortie-faa04b11-b75b-41ea-8d39-6a0effbc83b9,https://biolit.fr/sorties/sortie-faa04b11-b75b-41ea-8d39-6a0effbc83b9/,Phil,,01/07/2021,16.0000000,16.0000000,47.799041000000,-4.212448000000,,Plobannalec-Lesconil - Finistère,36579,observation-faa04b11-b75b-41ea-8d39-6a0effbc83b9-2,https://biolit.fr/observations/observation-faa04b11-b75b-41ea-8d39-6a0effbc83b9-2/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/20210107_161822.jpg,,TRUE, +N1,58970,sortie-faa04b11-b75b-41ea-8d39-6a0effbc83b9,https://biolit.fr/sorties/sortie-faa04b11-b75b-41ea-8d39-6a0effbc83b9/,Phil,,01/07/2021,16.0000000,16.0000000,47.799041000000,-4.212448000000,,Plobannalec-Lesconil - Finistère,36581,observation-faa04b11-b75b-41ea-8d39-6a0effbc83b9-3,https://biolit.fr/observations/observation-faa04b11-b75b-41ea-8d39-6a0effbc83b9-3/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/20210107_161837.jpg,,TRUE, +N1,58970,sortie-faa04b11-b75b-41ea-8d39-6a0effbc83b9,https://biolit.fr/sorties/sortie-faa04b11-b75b-41ea-8d39-6a0effbc83b9/,Phil,,01/07/2021,16.0000000,16.0000000,47.799041000000,-4.212448000000,,Plobannalec-Lesconil - Finistère,36583,observation-faa04b11-b75b-41ea-8d39-6a0effbc83b9-4,https://biolit.fr/observations/observation-faa04b11-b75b-41ea-8d39-6a0effbc83b9-4/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/2023/07/20210107_162012.jpg,,TRUE, +N1,58971,sortie-fb7b7f2f-1953-4da8-ba7d-d5614b96d7a7,https://biolit.fr/sorties/sortie-fb7b7f2f-1953-4da8-ba7d-d5614b96d7a7/,Phil,,5/22/2020 0:00,12.0:55,13.0000000,47.797083000000,-4.177680000000,,Loctudy - Finistère,36585,observation-fb7b7f2f-1953-4da8-ba7d-d5614b96d7a7,https://biolit.fr/observations/observation-fb7b7f2f-1953-4da8-ba7d-d5614b96d7a7/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200522_130415.jpg,,TRUE, +N1,58971,sortie-fb7b7f2f-1953-4da8-ba7d-d5614b96d7a7,https://biolit.fr/sorties/sortie-fb7b7f2f-1953-4da8-ba7d-d5614b96d7a7/,Phil,,5/22/2020 0:00,12.0:55,13.0000000,47.797083000000,-4.177680000000,,Loctudy - Finistère,36587,observation-fb7b7f2f-1953-4da8-ba7d-d5614b96d7a7-2,https://biolit.fr/observations/observation-fb7b7f2f-1953-4da8-ba7d-d5614b96d7a7-2/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200522_130423.jpg,,TRUE, +N1,58971,sortie-fb7b7f2f-1953-4da8-ba7d-d5614b96d7a7,https://biolit.fr/sorties/sortie-fb7b7f2f-1953-4da8-ba7d-d5614b96d7a7/,Phil,,5/22/2020 0:00,12.0:55,13.0000000,47.797083000000,-4.177680000000,,Loctudy - Finistère,36591,observation-fb7b7f2f-1953-4da8-ba7d-d5614b96d7a7-4,https://biolit.fr/observations/observation-fb7b7f2f-1953-4da8-ba7d-d5614b96d7a7-4/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200522_132516.jpg,,TRUE, +N1,58972,sortie-5ed921a0-21d8-4743-9c7e-9546f410d99b,https://biolit.fr/sorties/sortie-5ed921a0-21d8-4743-9c7e-9546f410d99b/,Phil,,7/26/2020 0:00,16.0000000,16.0000000,47.798743000000,-4.178967000000,,Loctudy - Finistère,36595,observation-5ed921a0-21d8-4743-9c7e-9546f410d99b,https://biolit.fr/observations/observation-5ed921a0-21d8-4743-9c7e-9546f410d99b/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200726_160806.jpg,,FALSE, +N1,58972,sortie-5ed921a0-21d8-4743-9c7e-9546f410d99b,https://biolit.fr/sorties/sortie-5ed921a0-21d8-4743-9c7e-9546f410d99b/,Phil,,7/26/2020 0:00,16.0000000,16.0000000,47.798743000000,-4.178967000000,,Loctudy - Finistère,36597,observation-5ed921a0-21d8-4743-9c7e-9546f410d99b-2,https://biolit.fr/observations/observation-5ed921a0-21d8-4743-9c7e-9546f410d99b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200726_160826.jpg,,FALSE, +N1,58972,sortie-5ed921a0-21d8-4743-9c7e-9546f410d99b,https://biolit.fr/sorties/sortie-5ed921a0-21d8-4743-9c7e-9546f410d99b/,Phil,,7/26/2020 0:00,16.0000000,16.0000000,47.798743000000,-4.178967000000,,Loctudy - Finistère,36599,observation-5ed921a0-21d8-4743-9c7e-9546f410d99b-3,https://biolit.fr/observations/observation-5ed921a0-21d8-4743-9c7e-9546f410d99b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200726_161935.jpg,,FALSE, +N1,58973,sortie-39044c9e-844d-416e-b07c-578e1b8d0c5b,https://biolit.fr/sorties/sortie-39044c9e-844d-416e-b07c-578e1b8d0c5b/,Phil,,5/22/2020 0:00,12.0:55,13.000005,47.799758000000,-4.178843000000,,Loctudy - Finistère,36603,observation-39044c9e-844d-416e-b07c-578e1b8d0c5b-2,https://biolit.fr/observations/observation-39044c9e-844d-416e-b07c-578e1b8d0c5b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_125225.jpg,,FALSE, +N1,58973,sortie-39044c9e-844d-416e-b07c-578e1b8d0c5b,https://biolit.fr/sorties/sortie-39044c9e-844d-416e-b07c-578e1b8d0c5b/,Phil,,5/22/2020 0:00,12.0:55,13.000005,47.799758000000,-4.178843000000,,Loctudy - Finistère,36605,observation-39044c9e-844d-416e-b07c-578e1b8d0c5b-3,https://biolit.fr/observations/observation-39044c9e-844d-416e-b07c-578e1b8d0c5b-3/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/20200522_125246.jpg,,FALSE, +N1,58973,sortie-39044c9e-844d-416e-b07c-578e1b8d0c5b,https://biolit.fr/sorties/sortie-39044c9e-844d-416e-b07c-578e1b8d0c5b/,Phil,,5/22/2020 0:00,12.0:55,13.000005,47.799758000000,-4.178843000000,,Loctudy - Finistère,36607,observation-39044c9e-844d-416e-b07c-578e1b8d0c5b-4,https://biolit.fr/observations/observation-39044c9e-844d-416e-b07c-578e1b8d0c5b-4/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/20200522_125354.jpg,,TRUE, +N1,58974,sortie-6f1913f8-fe51-4441-a962-c836458c3e3f,https://biolit.fr/sorties/sortie-6f1913f8-fe51-4441-a962-c836458c3e3f/,Phil,,5/22/2020 0:00,12.0000000,13.0000000,47.797217000000,-4.181104000000,,Loctudy - Finistère,36609,observation-6f1913f8-fe51-4441-a962-c836458c3e3f,https://biolit.fr/observations/observation-6f1913f8-fe51-4441-a962-c836458c3e3f/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20200522_125853.jpg,,TRUE, +N1,58974,sortie-6f1913f8-fe51-4441-a962-c836458c3e3f,https://biolit.fr/sorties/sortie-6f1913f8-fe51-4441-a962-c836458c3e3f/,Phil,,5/22/2020 0:00,12.0000000,13.0000000,47.797217000000,-4.181104000000,,Loctudy - Finistère,36611,observation-6f1913f8-fe51-4441-a962-c836458c3e3f-2,https://biolit.fr/observations/observation-6f1913f8-fe51-4441-a962-c836458c3e3f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_125254.jpg,,FALSE, +N1,58974,sortie-6f1913f8-fe51-4441-a962-c836458c3e3f,https://biolit.fr/sorties/sortie-6f1913f8-fe51-4441-a962-c836458c3e3f/,Phil,,5/22/2020 0:00,12.0000000,13.0000000,47.797217000000,-4.181104000000,,Loctudy - Finistère,36613,observation-6f1913f8-fe51-4441-a962-c836458c3e3f-3,https://biolit.fr/observations/observation-6f1913f8-fe51-4441-a962-c836458c3e3f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_125208.jpg,,FALSE, +N1,58974,sortie-6f1913f8-fe51-4441-a962-c836458c3e3f,https://biolit.fr/sorties/sortie-6f1913f8-fe51-4441-a962-c836458c3e3f/,Phil,,5/22/2020 0:00,12.0000000,13.0000000,47.797217000000,-4.181104000000,,Loctudy - Finistère,36615,observation-6f1913f8-fe51-4441-a962-c836458c3e3f-4,https://biolit.fr/observations/observation-6f1913f8-fe51-4441-a962-c836458c3e3f-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_125200.jpg,,FALSE, +N1,58975,sortie-2d990a4c-9926-4b58-92b0-c44ea39a28d0,https://biolit.fr/sorties/sortie-2d990a4c-9926-4b58-92b0-c44ea39a28d0/,Phil,,01/07/2021,16.0000000,16.0:15,47.798456000000,-4.211862000000,,Plobannalec-Lesconil - Finistère,36617,observation-2d990a4c-9926-4b58-92b0-c44ea39a28d0,https://biolit.fr/observations/observation-2d990a4c-9926-4b58-92b0-c44ea39a28d0/,Membranipora membranacea,Membranipore,,https://biolit.fr/wp-content/uploads/2023/07/20210107_161439.jpg,,TRUE, +N1,58975,sortie-2d990a4c-9926-4b58-92b0-c44ea39a28d0,https://biolit.fr/sorties/sortie-2d990a4c-9926-4b58-92b0-c44ea39a28d0/,Phil,,01/07/2021,16.0000000,16.0:15,47.798456000000,-4.211862000000,,Plobannalec-Lesconil - Finistère,36619,observation-2d990a4c-9926-4b58-92b0-c44ea39a28d0-2,https://biolit.fr/observations/observation-2d990a4c-9926-4b58-92b0-c44ea39a28d0-2/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/20210107_161216.jpg,,TRUE, +N1,58976,sortie-e0a4ec9c-27e5-42c2-b43f-a2f48473a1b2,https://biolit.fr/sorties/sortie-e0a4ec9c-27e5-42c2-b43f-a2f48473a1b2/,Phil,,7/26/2020 0:00,15.0000000,16.0000000,47.795937000000,-4.17638400000,,Loctudy - Finistère,36621,observation-e0a4ec9c-27e5-42c2-b43f-a2f48473a1b2,https://biolit.fr/observations/observation-e0a4ec9c-27e5-42c2-b43f-a2f48473a1b2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200726_160601.jpg,,FALSE, +N1,58976,sortie-e0a4ec9c-27e5-42c2-b43f-a2f48473a1b2,https://biolit.fr/sorties/sortie-e0a4ec9c-27e5-42c2-b43f-a2f48473a1b2/,Phil,,7/26/2020 0:00,15.0000000,16.0000000,47.795937000000,-4.17638400000,,Loctudy - Finistère,36623,observation-e0a4ec9c-27e5-42c2-b43f-a2f48473a1b2-2,https://biolit.fr/observations/observation-e0a4ec9c-27e5-42c2-b43f-a2f48473a1b2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200726_160618.jpg,,FALSE, +N1,58976,sortie-e0a4ec9c-27e5-42c2-b43f-a2f48473a1b2,https://biolit.fr/sorties/sortie-e0a4ec9c-27e5-42c2-b43f-a2f48473a1b2/,Phil,,7/26/2020 0:00,15.0000000,16.0000000,47.795937000000,-4.17638400000,,Loctudy - Finistère,36625,observation-e0a4ec9c-27e5-42c2-b43f-a2f48473a1b2-3,https://biolit.fr/observations/observation-e0a4ec9c-27e5-42c2-b43f-a2f48473a1b2-3/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/20200726_160754.jpg,,TRUE, +N1,58976,sortie-e0a4ec9c-27e5-42c2-b43f-a2f48473a1b2,https://biolit.fr/sorties/sortie-e0a4ec9c-27e5-42c2-b43f-a2f48473a1b2/,Phil,,7/26/2020 0:00,15.0000000,16.0000000,47.795937000000,-4.17638400000,,Loctudy - Finistère,36627,observation-e0a4ec9c-27e5-42c2-b43f-a2f48473a1b2-4,https://biolit.fr/observations/observation-e0a4ec9c-27e5-42c2-b43f-a2f48473a1b2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200726_160758.jpg,,FALSE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36629,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/Acanthocardia tuberculata.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36631,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-2,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_1.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36633,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-3,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/anémone sp_2.PNG,,FALSE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36635,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-4,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_3.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36637,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-5,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-5/,Patella pellucida,Helcion,,https://biolit.fr/wp-content/uploads/2023/07/Ansates pelludica_0.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36639,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-6,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-6/,Atelecyclus undecimdentatus,Grand crabe circulaire,,https://biolit.fr/wp-content/uploads/2023/07/Atelecyclus undecimdentatus_0.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36641,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-7,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-7/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/Aulactinia verrucosa_3.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36643,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-8,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-8/,Calidris alba,Bécasseau sanderling,,https://biolit.fr/wp-content/uploads/2023/07/Bécasseau sanderling.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36645,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-9,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-9/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule prédominance en laisse de mer.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36647,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-10,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-10/,Donacilla cornea,Donacilla cornée,,https://biolit.fr/wp-content/uploads/2023/07/Donacilla cornea_0.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36649,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-11,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-11/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Glycymeris glycymeris.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36651,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-12,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Limaria loscombii.PNG,,FALSE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36653,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-13,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-13/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Mimachlamys varia.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36655,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-14,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-14/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_5.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36657,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-15,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-15/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/nucella lapillus_5.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36658,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-16,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-16/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Sepias elegans.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36660,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-17,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-17/,Striarca lactea,Striarca laiteuse,,https://biolit.fr/wp-content/uploads/2023/07/Striarca lactea_0.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36662,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-18,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/Telina tenuis.PNG,,FALSE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36666,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-20,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-20/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/trivia monacha et arctica.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36667,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-21,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-21/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Velella velella_3.PNG,,TRUE, +N1,58977,sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81,https://biolit.fr/sorties/sortie-f9fb763b-c88d-4b17-8b50-75c10548ef81/,Roman,,01/09/2021,15.0:35,17.0:35,47.650562000000,-3.204474000000,,Ria d'étel,36669,observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-22,https://biolit.fr/observations/observation-f9fb763b-c88d-4b17-8b50-75c10548ef81-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ver sp_0.PNG,,FALSE, +N1,58978,sortie-566e4bb6-2003-4ef5-9ac2-b52b08dc0a8c,https://biolit.fr/sorties/sortie-566e4bb6-2003-4ef5-9ac2-b52b08dc0a8c/,Massadiver,,6/13/2018 0:00,11.0000000,11.0000000,47.29967000000,-3.223567000000,,Domois,36670,observation-566e4bb6-2003-4ef5-9ac2-b52b08dc0a8c,https://biolit.fr/observations/observation-566e4bb6-2003-4ef5-9ac2-b52b08dc0a8c/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSCI1430.jpg,,TRUE, +N1,58978,sortie-566e4bb6-2003-4ef5-9ac2-b52b08dc0a8c,https://biolit.fr/sorties/sortie-566e4bb6-2003-4ef5-9ac2-b52b08dc0a8c/,Massadiver,,6/13/2018 0:00,11.0000000,11.0000000,47.29967000000,-3.223567000000,,Domois,36672,observation-566e4bb6-2003-4ef5-9ac2-b52b08dc0a8c-2,https://biolit.fr/observations/observation-566e4bb6-2003-4ef5-9ac2-b52b08dc0a8c-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSCI1434.jpg,,TRUE, +N1,58978,sortie-566e4bb6-2003-4ef5-9ac2-b52b08dc0a8c,https://biolit.fr/sorties/sortie-566e4bb6-2003-4ef5-9ac2-b52b08dc0a8c/,Massadiver,,6/13/2018 0:00,11.0000000,11.0000000,47.29967000000,-3.223567000000,,Domois,36674,observation-566e4bb6-2003-4ef5-9ac2-b52b08dc0a8c-3,https://biolit.fr/observations/observation-566e4bb6-2003-4ef5-9ac2-b52b08dc0a8c-3/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSCI1435.jpg,,TRUE, +N1,58978,sortie-566e4bb6-2003-4ef5-9ac2-b52b08dc0a8c,https://biolit.fr/sorties/sortie-566e4bb6-2003-4ef5-9ac2-b52b08dc0a8c/,Massadiver,,6/13/2018 0:00,11.0000000,11.0000000,47.29967000000,-3.223567000000,,Domois,36676,observation-566e4bb6-2003-4ef5-9ac2-b52b08dc0a8c-4,https://biolit.fr/observations/observation-566e4bb6-2003-4ef5-9ac2-b52b08dc0a8c-4/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSCI1436.jpg,,TRUE, +N1,58979,sortie-a9d1a00a-624d-4ca6-85ca-d923afd96f9b,https://biolit.fr/sorties/sortie-a9d1a00a-624d-4ca6-85ca-d923afd96f9b/,Massadiver,,3/15/2016 0:00,2.0:15,2.0000000,48.38156300000,-4.48731600000,,Bassin numéro 2 du port de Brest,36678,observation-a9d1a00a-624d-4ca6-85ca-d923afd96f9b,https://biolit.fr/observations/observation-a9d1a00a-624d-4ca6-85ca-d923afd96f9b/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN3425.jpg,,FALSE, +N1,58979,sortie-a9d1a00a-624d-4ca6-85ca-d923afd96f9b,https://biolit.fr/sorties/sortie-a9d1a00a-624d-4ca6-85ca-d923afd96f9b/,Massadiver,,3/15/2016 0:00,2.0:15,2.0000000,48.38156300000,-4.48731600000,,Bassin numéro 2 du port de Brest,36680,observation-a9d1a00a-624d-4ca6-85ca-d923afd96f9b-2,https://biolit.fr/observations/observation-a9d1a00a-624d-4ca6-85ca-d923afd96f9b-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/DSCN3426_0.jpg,,TRUE, +N1,58979,sortie-a9d1a00a-624d-4ca6-85ca-d923afd96f9b,https://biolit.fr/sorties/sortie-a9d1a00a-624d-4ca6-85ca-d923afd96f9b/,Massadiver,,3/15/2016 0:00,2.0:15,2.0000000,48.38156300000,-4.48731600000,,Bassin numéro 2 du port de Brest,36682,observation-a9d1a00a-624d-4ca6-85ca-d923afd96f9b-3,https://biolit.fr/observations/observation-a9d1a00a-624d-4ca6-85ca-d923afd96f9b-3/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/2023/07/DSCN3427.jpg,,TRUE, +N1,58979,sortie-a9d1a00a-624d-4ca6-85ca-d923afd96f9b,https://biolit.fr/sorties/sortie-a9d1a00a-624d-4ca6-85ca-d923afd96f9b/,Massadiver,,3/15/2016 0:00,2.0:15,2.0000000,48.38156300000,-4.48731600000,,Bassin numéro 2 du port de Brest,36684,observation-a9d1a00a-624d-4ca6-85ca-d923afd96f9b-4,https://biolit.fr/observations/observation-a9d1a00a-624d-4ca6-85ca-d923afd96f9b-4/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/2023/07/DSCN3428.jpg,,TRUE, +N1,58979,sortie-a9d1a00a-624d-4ca6-85ca-d923afd96f9b,https://biolit.fr/sorties/sortie-a9d1a00a-624d-4ca6-85ca-d923afd96f9b/,Massadiver,,3/15/2016 0:00,2.0:15,2.0000000,48.38156300000,-4.48731600000,,Bassin numéro 2 du port de Brest,36686,observation-a9d1a00a-624d-4ca6-85ca-d923afd96f9b-5,https://biolit.fr/observations/observation-a9d1a00a-624d-4ca6-85ca-d923afd96f9b-5/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/DSCN3504.jpg,,TRUE, +N1,58980,sortie-6b4afea5-2412-4728-9093-9397b611de76,https://biolit.fr/sorties/sortie-6b4afea5-2412-4728-9093-9397b611de76/,Roman,,12/25/2020 0:00,16.0000000,17.0000000,47.697214000000,-3.354452000000,,Gâvres,36688,observation-6b4afea5-2412-4728-9093-9397b611de76,https://biolit.fr/observations/observation-6b4afea5-2412-4728-9093-9397b611de76/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/Branta barnicla.PNG,,TRUE, +N1,58980,sortie-6b4afea5-2412-4728-9093-9397b611de76,https://biolit.fr/sorties/sortie-6b4afea5-2412-4728-9093-9397b611de76/,Roman,,12/25/2020 0:00,16.0000000,17.0000000,47.697214000000,-3.354452000000,,Gâvres,36690,observation-6b4afea5-2412-4728-9093-9397b611de76-2,https://biolit.fr/observations/observation-6b4afea5-2412-4728-9093-9397b611de76-2/,Conger conger,Congre,,https://biolit.fr/wp-content/uploads/2023/07/Conger conger.PNG,,TRUE, +N1,58980,sortie-6b4afea5-2412-4728-9093-9397b611de76,https://biolit.fr/sorties/sortie-6b4afea5-2412-4728-9093-9397b611de76/,Roman,,12/25/2020 0:00,16.0000000,17.0000000,47.697214000000,-3.354452000000,,Gâvres,36692,observation-6b4afea5-2412-4728-9093-9397b611de76-3,https://biolit.fr/observations/observation-6b4afea5-2412-4728-9093-9397b611de76-3/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/Echinocardium cordatum.PNG,,TRUE, +N1,58980,sortie-6b4afea5-2412-4728-9093-9397b611de76,https://biolit.fr/sorties/sortie-6b4afea5-2412-4728-9093-9397b611de76/,Roman,,12/25/2020 0:00,16.0000000,17.0000000,47.697214000000,-3.354452000000,,Gâvres,36696,observation-6b4afea5-2412-4728-9093-9397b611de76-5,https://biolit.fr/observations/observation-6b4afea5-2412-4728-9093-9397b611de76-5/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/Physalia physalis.jpg,,TRUE, +N1,58980,sortie-6b4afea5-2412-4728-9093-9397b611de76,https://biolit.fr/sorties/sortie-6b4afea5-2412-4728-9093-9397b611de76/,Roman,,12/25/2020 0:00,16.0000000,17.0000000,47.697214000000,-3.354452000000,,Gâvres,36697,observation-6b4afea5-2412-4728-9093-9397b611de76-6,https://biolit.fr/observations/observation-6b4afea5-2412-4728-9093-9397b611de76-6/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Velella velella_2-scaled.jpg,,TRUE, +N1,58980,sortie-6b4afea5-2412-4728-9093-9397b611de76,https://biolit.fr/sorties/sortie-6b4afea5-2412-4728-9093-9397b611de76/,Roman,,12/25/2020 0:00,16.0000000,17.0000000,47.697214000000,-3.354452000000,,Gâvres,36698,observation-6b4afea5-2412-4728-9093-9397b611de76-7,https://biolit.fr/observations/observation-6b4afea5-2412-4728-9093-9397b611de76-7/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/Zostera marina_1.PNG,,TRUE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36700,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_4.PNG,,TRUE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36701,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-2,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea_3.PNG,,TRUE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36703,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-3,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_6.PNG,,TRUE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36704,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-4,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-4/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/Anthopleura sp.PNG,,TRUE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36705,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-5,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-5/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/asterias rubens_1.PNG,,TRUE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36706,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-6,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-6/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_7.PNG,,TRUE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36708,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-7,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-7/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/Aulactinia verrucosa_2.PNG,,TRUE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36710,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-8,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-8/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_4.PNG,,TRUE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36712,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-9,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-9/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus pe.PNG,,TRUE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36714,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-10,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-10/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/Clibanarius erythropus.PNG,,TRUE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36716,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-11,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 1_1.PNG,,FALSE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36718,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-12,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_6.PNG,,FALSE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36720,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-13,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-13/,Hediste diversicolor,Néréis multicolore,,https://biolit.fr/wp-content/uploads/2023/07/Gravelle.PNG,,TRUE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36722,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-14,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-14/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_4.PNG,,TRUE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36724,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-15,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-15/,Nerophis ophidion,Nérophis ophidion,,https://biolit.fr/wp-content/uploads/2023/07/ophidion nerophis.PNG,,TRUE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36726,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-16,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-16/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_5.PNG,,TRUE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36727,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-17,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-17/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_5.PNG,,TRUE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36729,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-18,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/ruditapes decussatus pe.PNG,,FALSE, +N1,58981,sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc,https://biolit.fr/sorties/sortie-4dd5c06b-3e23-4b89-858d-ca835a5755dc/,Roman,,12/20/2020 0:00,14.000005,16.0000000,47.704971000000,-3.358003000000,,Port-Louis,36731,observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-19,https://biolit.fr/observations/observation-4dd5c06b-3e23-4b89-858d-ca835a5755dc-19/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/Zostera marina_0.PNG,,TRUE, +N1,58982,sortie-311e237f-5d18-447a-a61e-9a5ae20ce819,https://biolit.fr/sorties/sortie-311e237f-5d18-447a-a61e-9a5ae20ce819/,Phil,,5/22/2020 0:00,12.0:45,12.0000000,47.799305000000,-4.180156000000,,Loctudy - Finistère,36735,observation-311e237f-5d18-447a-a61e-9a5ae20ce819-2,https://biolit.fr/observations/observation-311e237f-5d18-447a-a61e-9a5ae20ce819-2/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20200522_124646.jpg,,TRUE, +N1,58982,sortie-311e237f-5d18-447a-a61e-9a5ae20ce819,https://biolit.fr/sorties/sortie-311e237f-5d18-447a-a61e-9a5ae20ce819/,Phil,,5/22/2020 0:00,12.0:45,12.0000000,47.799305000000,-4.180156000000,,Loctudy - Finistère,36737,observation-311e237f-5d18-447a-a61e-9a5ae20ce819-3,https://biolit.fr/observations/observation-311e237f-5d18-447a-a61e-9a5ae20ce819-3/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/20200522_124659.jpg,,TRUE, +N1,58982,sortie-311e237f-5d18-447a-a61e-9a5ae20ce819,https://biolit.fr/sorties/sortie-311e237f-5d18-447a-a61e-9a5ae20ce819/,Phil,,5/22/2020 0:00,12.0:45,12.0000000,47.799305000000,-4.180156000000,,Loctudy - Finistère,36739,observation-311e237f-5d18-447a-a61e-9a5ae20ce819-4,https://biolit.fr/observations/observation-311e237f-5d18-447a-a61e-9a5ae20ce819-4/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20200522_124744.jpg,,TRUE, +N1,58982,sortie-311e237f-5d18-447a-a61e-9a5ae20ce819,https://biolit.fr/sorties/sortie-311e237f-5d18-447a-a61e-9a5ae20ce819/,Phil,,5/22/2020 0:00,12.0:45,12.0000000,47.799305000000,-4.180156000000,,Loctudy - Finistère,36741,observation-311e237f-5d18-447a-a61e-9a5ae20ce819-5,https://biolit.fr/observations/observation-311e237f-5d18-447a-a61e-9a5ae20ce819-5/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20200522_124819.jpg,,TRUE, +N1,58983,sortie-21d6f73e-b678-43a8-9122-59a1c1f823f8,https://biolit.fr/sorties/sortie-21d6f73e-b678-43a8-9122-59a1c1f823f8/,evatravo,,01/02/2021,10.0000000,12.0000000,43.08290300000,6.118565000000,,Hyeres ,36743,observation-21d6f73e-b678-43a8-9122-59a1c1f823f8,https://biolit.fr/observations/observation-21d6f73e-b678-43a8-9122-59a1c1f823f8/,Larus michahellis,Goéland leucophée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0626-scaled.jpg,,TRUE, +N1,58984,sortie-bf7efe1d-48ca-493e-b1ba-beda360bc62e,https://biolit.fr/sorties/sortie-bf7efe1d-48ca-493e-b1ba-beda360bc62e/,evatravo,,01/02/2021,9.0000000,11.0000000,43.14481600000,6.282797000000,,Hyeres ,36745,observation-bf7efe1d-48ca-493e-b1ba-beda360bc62e,https://biolit.fr/observations/observation-bf7efe1d-48ca-493e-b1ba-beda360bc62e/,Phoenicopterus roseus,Flamant rose,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0145.png,,TRUE, +N1,58985,sortie-f9cd6d4d-2bf4-499f-83ee-a5dcb32ff7bc,https://biolit.fr/sorties/sortie-f9cd6d4d-2bf4-499f-83ee-a5dcb32ff7bc/,Phil,,7/26/2020 0:00,15.0000000,16.0000000,47.798718000000,-4.179137000000,,Loctudy - Finistère,36747,observation-f9cd6d4d-2bf4-499f-83ee-a5dcb32ff7bc,https://biolit.fr/observations/observation-f9cd6d4d-2bf4-499f-83ee-a5dcb32ff7bc/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20200726_155401.jpg,,TRUE, +N1,58985,sortie-f9cd6d4d-2bf4-499f-83ee-a5dcb32ff7bc,https://biolit.fr/sorties/sortie-f9cd6d4d-2bf4-499f-83ee-a5dcb32ff7bc/,Phil,,7/26/2020 0:00,15.0000000,16.0000000,47.798718000000,-4.179137000000,,Loctudy - Finistère,36749,observation-f9cd6d4d-2bf4-499f-83ee-a5dcb32ff7bc-2,https://biolit.fr/observations/observation-f9cd6d4d-2bf4-499f-83ee-a5dcb32ff7bc-2/,Phymatolithon lenormandii,Algue encroûtante rouge de Lenormand,,https://biolit.fr/wp-content/uploads/2023/07/20200726_160347.jpg,,TRUE, +N1,58985,sortie-f9cd6d4d-2bf4-499f-83ee-a5dcb32ff7bc,https://biolit.fr/sorties/sortie-f9cd6d4d-2bf4-499f-83ee-a5dcb32ff7bc/,Phil,,7/26/2020 0:00,15.0000000,16.0000000,47.798718000000,-4.179137000000,,Loctudy - Finistère,36751,observation-f9cd6d4d-2bf4-499f-83ee-a5dcb32ff7bc-3,https://biolit.fr/observations/observation-f9cd6d4d-2bf4-499f-83ee-a5dcb32ff7bc-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200726_160400.jpg,,FALSE, +N1,58985,sortie-f9cd6d4d-2bf4-499f-83ee-a5dcb32ff7bc,https://biolit.fr/sorties/sortie-f9cd6d4d-2bf4-499f-83ee-a5dcb32ff7bc/,Phil,,7/26/2020 0:00,15.0000000,16.0000000,47.798718000000,-4.179137000000,,Loctudy - Finistère,36753,observation-f9cd6d4d-2bf4-499f-83ee-a5dcb32ff7bc-4,https://biolit.fr/observations/observation-f9cd6d4d-2bf4-499f-83ee-a5dcb32ff7bc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200726_160427.jpg,,FALSE, +N1,58986,sortie-0df1841c-58a2-4d10-99e8-92e39ea436a9,https://biolit.fr/sorties/sortie-0df1841c-58a2-4d10-99e8-92e39ea436a9/,Céline,,12/30/2020 0:00,12.0000000,12.0:55,43.3879310,5.0167830,,Plage napoleon,36755,observation-0df1841c-58a2-4d10-99e8-92e39ea436a9,https://biolit.fr/observations/observation-0df1841c-58a2-4d10-99e8-92e39ea436a9/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/16093291684334513098518679153185-scaled.jpg,,TRUE, +N1,58986,sortie-0df1841c-58a2-4d10-99e8-92e39ea436a9,https://biolit.fr/sorties/sortie-0df1841c-58a2-4d10-99e8-92e39ea436a9/,Céline,,12/30/2020 0:00,12.0000000,12.0:55,43.3879310,5.0167830,,Plage napoleon,36757,observation-0df1841c-58a2-4d10-99e8-92e39ea436a9-2,https://biolit.fr/observations/observation-0df1841c-58a2-4d10-99e8-92e39ea436a9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1551(1)(1)-scaled.jpg,,FALSE, +N1,58987,sortie-2da31fb3-b7fc-4e73-831a-01a5815fdfdc,https://biolit.fr/sorties/sortie-2da31fb3-b7fc-4e73-831a-01a5815fdfdc/,Phil,,5/22/2020 0:00,12.0000000,12.0:45,47.798267000000,-4.178178000000,,Loctudy - Finistère,36759,observation-2da31fb3-b7fc-4e73-831a-01a5815fdfdc,https://biolit.fr/observations/observation-2da31fb3-b7fc-4e73-831a-01a5815fdfdc/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_124440.jpg,,FALSE, +N1,58987,sortie-2da31fb3-b7fc-4e73-831a-01a5815fdfdc,https://biolit.fr/sorties/sortie-2da31fb3-b7fc-4e73-831a-01a5815fdfdc/,Phil,,5/22/2020 0:00,12.0000000,12.0:45,47.798267000000,-4.178178000000,,Loctudy - Finistère,36761,observation-2da31fb3-b7fc-4e73-831a-01a5815fdfdc-2,https://biolit.fr/observations/observation-2da31fb3-b7fc-4e73-831a-01a5815fdfdc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_124507.jpg,,FALSE, +N1,58987,sortie-2da31fb3-b7fc-4e73-831a-01a5815fdfdc,https://biolit.fr/sorties/sortie-2da31fb3-b7fc-4e73-831a-01a5815fdfdc/,Phil,,5/22/2020 0:00,12.0000000,12.0:45,47.798267000000,-4.178178000000,,Loctudy - Finistère,36763,observation-2da31fb3-b7fc-4e73-831a-01a5815fdfdc-3,https://biolit.fr/observations/observation-2da31fb3-b7fc-4e73-831a-01a5815fdfdc-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_124518.jpg,,FALSE, +N1,58987,sortie-2da31fb3-b7fc-4e73-831a-01a5815fdfdc,https://biolit.fr/sorties/sortie-2da31fb3-b7fc-4e73-831a-01a5815fdfdc/,Phil,,5/22/2020 0:00,12.0000000,12.0:45,47.798267000000,-4.178178000000,,Loctudy - Finistère,36765,observation-2da31fb3-b7fc-4e73-831a-01a5815fdfdc-4,https://biolit.fr/observations/observation-2da31fb3-b7fc-4e73-831a-01a5815fdfdc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_124533.jpg,,FALSE, +N1,58987,sortie-2da31fb3-b7fc-4e73-831a-01a5815fdfdc,https://biolit.fr/sorties/sortie-2da31fb3-b7fc-4e73-831a-01a5815fdfdc/,Phil,,5/22/2020 0:00,12.0000000,12.0:45,47.798267000000,-4.178178000000,,Loctudy - Finistère,36767,observation-2da31fb3-b7fc-4e73-831a-01a5815fdfdc-5,https://biolit.fr/observations/observation-2da31fb3-b7fc-4e73-831a-01a5815fdfdc-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_124606.jpg,,FALSE, +N1,58987,sortie-2da31fb3-b7fc-4e73-831a-01a5815fdfdc,https://biolit.fr/sorties/sortie-2da31fb3-b7fc-4e73-831a-01a5815fdfdc/,Phil,,5/22/2020 0:00,12.0000000,12.0:45,47.798267000000,-4.178178000000,,Loctudy - Finistère,36769,observation-2da31fb3-b7fc-4e73-831a-01a5815fdfdc-6,https://biolit.fr/observations/observation-2da31fb3-b7fc-4e73-831a-01a5815fdfdc-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_123927.jpg,,FALSE, +N1,58988,sortie-99e8b7c2-c086-40b9-9082-d0ab776aa9ba,https://biolit.fr/sorties/sortie-99e8b7c2-c086-40b9-9082-d0ab776aa9ba/,Phil,,3/13/2020 0:00,14.0000000,14.0000000,47.800545000000,-4.181662000000,,Loctudy - Finistère,36771,observation-99e8b7c2-c086-40b9-9082-d0ab776aa9ba,https://biolit.fr/observations/observation-99e8b7c2-c086-40b9-9082-d0ab776aa9ba/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/20200313_143420.jpg,,TRUE, +N1,58988,sortie-99e8b7c2-c086-40b9-9082-d0ab776aa9ba,https://biolit.fr/sorties/sortie-99e8b7c2-c086-40b9-9082-d0ab776aa9ba/,Phil,,3/13/2020 0:00,14.0000000,14.0000000,47.800545000000,-4.181662000000,,Loctudy - Finistère,36773,observation-99e8b7c2-c086-40b9-9082-d0ab776aa9ba-2,https://biolit.fr/observations/observation-99e8b7c2-c086-40b9-9082-d0ab776aa9ba-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_143423.jpg,,FALSE, +N1,58988,sortie-99e8b7c2-c086-40b9-9082-d0ab776aa9ba,https://biolit.fr/sorties/sortie-99e8b7c2-c086-40b9-9082-d0ab776aa9ba/,Phil,,3/13/2020 0:00,14.0000000,14.0000000,47.800545000000,-4.181662000000,,Loctudy - Finistère,36775,observation-99e8b7c2-c086-40b9-9082-d0ab776aa9ba-3,https://biolit.fr/observations/observation-99e8b7c2-c086-40b9-9082-d0ab776aa9ba-3/,Palmaria palmata,Goémon à vache,,https://biolit.fr/wp-content/uploads/2023/07/20200313_142910.jpg,,TRUE, +N1,58988,sortie-99e8b7c2-c086-40b9-9082-d0ab776aa9ba,https://biolit.fr/sorties/sortie-99e8b7c2-c086-40b9-9082-d0ab776aa9ba/,Phil,,3/13/2020 0:00,14.0000000,14.0000000,47.800545000000,-4.181662000000,,Loctudy - Finistère,36777,observation-99e8b7c2-c086-40b9-9082-d0ab776aa9ba-4,https://biolit.fr/observations/observation-99e8b7c2-c086-40b9-9082-d0ab776aa9ba-4/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20200313_143448.jpg,,TRUE, +N1,58989,sortie-c2d58302-e0e6-405b-889a-70fec82c4773,https://biolit.fr/sorties/sortie-c2d58302-e0e6-405b-889a-70fec82c4773/,Massadiver,,12/18/2020 0:00,14.0:25,14.0000000,48.377135000000,-4.490011000000,,Port de Brest,36779,observation-c2d58302-e0e6-405b-889a-70fec82c4773,https://biolit.fr/observations/observation-c2d58302-e0e6-405b-889a-70fec82c4773/,Phronima sedentaria,Phronime sédentaire,,https://biolit.fr/wp-content/uploads/2023/07/131642702_748446002735978_1389420599461576132_n.png,,TRUE, +N1,58989,sortie-c2d58302-e0e6-405b-889a-70fec82c4773,https://biolit.fr/sorties/sortie-c2d58302-e0e6-405b-889a-70fec82c4773/,Massadiver,,12/18/2020 0:00,14.0:25,14.0000000,48.377135000000,-4.490011000000,,Port de Brest,36781,observation-c2d58302-e0e6-405b-889a-70fec82c4773-2,https://biolit.fr/observations/observation-c2d58302-e0e6-405b-889a-70fec82c4773-2/,Phronima sedentaria,Phronime sédentaire,,https://biolit.fr/wp-content/uploads/2023/07/131672015_2876928462632462_8218439598066852498_n.png,,TRUE, +N1,58989,sortie-c2d58302-e0e6-405b-889a-70fec82c4773,https://biolit.fr/sorties/sortie-c2d58302-e0e6-405b-889a-70fec82c4773/,Massadiver,,12/18/2020 0:00,14.0:25,14.0000000,48.377135000000,-4.490011000000,,Port de Brest,36783,observation-c2d58302-e0e6-405b-889a-70fec82c4773-3,https://biolit.fr/observations/observation-c2d58302-e0e6-405b-889a-70fec82c4773-3/,Phronima sedentaria,Phronime sédentaire,,https://biolit.fr/wp-content/uploads/2023/07/131894630_2795397814048191_7264743242978157559_n.jpg.png,,TRUE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36785,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita_0.PNG,,TRUE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36789,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-3,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-3/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea_2.PNG,,TRUE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36791,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-4,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_2.PNG,,TRUE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36793,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-5,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-5/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asteria rubens_1.PNG,,TRUE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36794,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-6,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-6/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_6.PNG,,TRUE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36796,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-7,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/bryo sp_2.PNG,,FALSE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36798,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-8,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-8/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus et botryllus schlosseri.PNG,,TRUE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36800,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-9,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-9/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_3.PNG,,TRUE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36802,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-10,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-10/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_3.PNG,,TRUE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36804,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-11,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_5.PNG,,FALSE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36806,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-12,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-12/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_0.PNG,,TRUE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36808,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-13,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-13/,Modiolus barbatus,Modiole barbue,,https://biolit.fr/wp-content/uploads/2023/07/Modiolus barbatus_0.PNG,,TRUE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36810,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-14,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-14/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_3.PNG,,TRUE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36812,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-15,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-15/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_0.PNG,,TRUE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36814,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-16,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-16/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_4.PNG,,TRUE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36816,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-17,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-17/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes decussatus-scaled.jpg,,TRUE, +N1,58990,sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387,https://biolit.fr/sorties/sortie-044f2a39-fe6a-45b5-aeb9-6da7d5b15387/,Roman,,12/06/2020,16.0000000,17.0000000,47.703108000000,-3.352896000000,,Port-Louis,36817,observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-18,https://biolit.fr/observations/observation-044f2a39-fe6a-45b5-aeb9-6da7d5b15387-18/,Sphaeromatidae (famille),Sphéromiens,,https://biolit.fr/wp-content/uploads/2023/07/Sphaeromatidae_0.PNG,,TRUE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36819,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_1.PNG,,TRUE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36821,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-2,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-2/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asteria rubens.PNG,,TRUE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36823,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-3,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-3/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_2.PNG,,TRUE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36825,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-4,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-4/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/Branta bernicla.PNG,,TRUE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36827,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-5,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-5/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_2.PNG,,TRUE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36829,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-6,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-6/,Ciliata mustela,Motelle à 5 barbillons,,https://biolit.fr/wp-content/uploads/2023/07/Ciliata mustela.PNG,,TRUE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36831,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-7,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-7/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/Colpomenia peregrina.PNG,,TRUE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36833,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-8,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-8/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/Egretta garzetta.PNG,,TRUE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36835,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-9,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-9/,Hymeniacidon perlevis,Eponge-miette de pain,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 1_0.PNG,,TRUE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36837,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-10,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-10/,Hymeniacidon perlevis,Eponge-miette de pain,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 2_2.PNG,,TRUE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36839,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-11,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 3.PNG,,FALSE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36841,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-12,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp-scaled.jpg,,FALSE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36842,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-13,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-13/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/Gobie sp_1.PNG,,TRUE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36843,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-14,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-14/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_4.PNG,,TRUE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36845,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-15,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-15/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/Ponte de Nucella lapillus.PNG,,TRUE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36846,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-16,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-16/,Styela clava,Ascidie japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Styela clava.PNG,,TRUE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36848,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-17,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-17/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Velella velella_1.PNG,,TRUE, +N1,58991,sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8,https://biolit.fr/sorties/sortie-858c5427-ee12-463d-8ca3-f3d7cf150fc8/,Roman,,12/18/2020 0:00,11.0000000,12.0000000,47.702268000000,-3.315769000000,,Riantec,36850,observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-18,https://biolit.fr/observations/observation-858c5427-ee12-463d-8ca3-f3d7cf150fc8-18/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_3.PNG,,TRUE, +N1,58992,sortie-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66,https://biolit.fr/sorties/sortie-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66/,Phil,,12/13/2020 0:00,16.0000000,16.0000000,47.793508000000,-4.226929000000,,Plobannalec-Lesconil - Finistère,36852,observation-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66,https://biolit.fr/observations/observation-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/IMG_82281.jpg,,TRUE, +N1,58992,sortie-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66,https://biolit.fr/sorties/sortie-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66/,Phil,,12/13/2020 0:00,16.0000000,16.0000000,47.793508000000,-4.226929000000,,Plobannalec-Lesconil - Finistère,36854,observation-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66-2,https://biolit.fr/observations/observation-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66-2/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/IMG_82291.jpg,,TRUE, +N1,58992,sortie-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66,https://biolit.fr/sorties/sortie-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66/,Phil,,12/13/2020 0:00,16.0000000,16.0000000,47.793508000000,-4.226929000000,,Plobannalec-Lesconil - Finistère,36856,observation-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66-3,https://biolit.fr/observations/observation-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66-3/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/IMG_82341.jpg,,TRUE, +N1,58992,sortie-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66,https://biolit.fr/sorties/sortie-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66/,Phil,,12/13/2020 0:00,16.0000000,16.0000000,47.793508000000,-4.226929000000,,Plobannalec-Lesconil - Finistère,36858,observation-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66-4,https://biolit.fr/observations/observation-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66-4/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/IMG_82371.jpg,,TRUE, +N1,58992,sortie-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66,https://biolit.fr/sorties/sortie-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66/,Phil,,12/13/2020 0:00,16.0000000,16.0000000,47.793508000000,-4.226929000000,,Plobannalec-Lesconil - Finistère,36860,observation-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66-5,https://biolit.fr/observations/observation-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66-5/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/IMG_82421.jpg,,TRUE, +N1,58992,sortie-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66,https://biolit.fr/sorties/sortie-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66/,Phil,,12/13/2020 0:00,16.0000000,16.0000000,47.793508000000,-4.226929000000,,Plobannalec-Lesconil - Finistère,36862,observation-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66-6,https://biolit.fr/observations/observation-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66-6/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/IMG_82401.jpg,,TRUE, +N1,58992,sortie-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66,https://biolit.fr/sorties/sortie-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66/,Phil,,12/13/2020 0:00,16.0000000,16.0000000,47.793508000000,-4.226929000000,,Plobannalec-Lesconil - Finistère,36864,observation-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66-7,https://biolit.fr/observations/observation-7afd7ebd-1e3e-4d66-9993-5cbc9f320a66-7/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/IMG_82461.jpg,,TRUE, +N1,58993,sortie-5e091f65-fe02-4431-a88b-6c859a532e81,https://biolit.fr/sorties/sortie-5e091f65-fe02-4431-a88b-6c859a532e81/,Phil,,5/22/2020 0:00,12.0000000,12.0:35,47.800245000000,-4.181298000000,,Locquirec - Finistère,36866,observation-5e091f65-fe02-4431-a88b-6c859a532e81,https://biolit.fr/observations/observation-5e091f65-fe02-4431-a88b-6c859a532e81/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/20200522_123019.jpg,,TRUE, +N1,58993,sortie-5e091f65-fe02-4431-a88b-6c859a532e81,https://biolit.fr/sorties/sortie-5e091f65-fe02-4431-a88b-6c859a532e81/,Phil,,5/22/2020 0:00,12.0000000,12.0:35,47.800245000000,-4.181298000000,,Locquirec - Finistère,36868,observation-5e091f65-fe02-4431-a88b-6c859a532e81-2,https://biolit.fr/observations/observation-5e091f65-fe02-4431-a88b-6c859a532e81-2/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/20200522_123037.jpg,,TRUE, +N1,58993,sortie-5e091f65-fe02-4431-a88b-6c859a532e81,https://biolit.fr/sorties/sortie-5e091f65-fe02-4431-a88b-6c859a532e81/,Phil,,5/22/2020 0:00,12.0000000,12.0:35,47.800245000000,-4.181298000000,,Locquirec - Finistère,36870,observation-5e091f65-fe02-4431-a88b-6c859a532e81-3,https://biolit.fr/observations/observation-5e091f65-fe02-4431-a88b-6c859a532e81-3/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20200522_123601.jpg,,TRUE, +N1,58993,sortie-5e091f65-fe02-4431-a88b-6c859a532e81,https://biolit.fr/sorties/sortie-5e091f65-fe02-4431-a88b-6c859a532e81/,Phil,,5/22/2020 0:00,12.0000000,12.0:35,47.800245000000,-4.181298000000,,Locquirec - Finistère,36872,observation-5e091f65-fe02-4431-a88b-6c859a532e81-4,https://biolit.fr/observations/observation-5e091f65-fe02-4431-a88b-6c859a532e81-4/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20200522_122227.jpg,,TRUE, +N1,58993,sortie-5e091f65-fe02-4431-a88b-6c859a532e81,https://biolit.fr/sorties/sortie-5e091f65-fe02-4431-a88b-6c859a532e81/,Phil,,5/22/2020 0:00,12.0000000,12.0:35,47.800245000000,-4.181298000000,,Locquirec - Finistère,36874,observation-5e091f65-fe02-4431-a88b-6c859a532e81-5,https://biolit.fr/observations/observation-5e091f65-fe02-4431-a88b-6c859a532e81-5/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20200522_122201.jpg,,TRUE, +N1,58994,sortie-f1a0e9cc-580e-4e29-92eb-a1b512a86062,https://biolit.fr/sorties/sortie-f1a0e9cc-580e-4e29-92eb-a1b512a86062/,Phil,,6/28/2020 0:00,16.0:45,16.0000000,48.688185000000,-3.676622000000,,Locquirec - Finistère,36876,observation-f1a0e9cc-580e-4e29-92eb-a1b512a86062,https://biolit.fr/observations/observation-f1a0e9cc-580e-4e29-92eb-a1b512a86062/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20200628_164725.jpg,,TRUE, +N1,58994,sortie-f1a0e9cc-580e-4e29-92eb-a1b512a86062,https://biolit.fr/sorties/sortie-f1a0e9cc-580e-4e29-92eb-a1b512a86062/,Phil,,6/28/2020 0:00,16.0:45,16.0000000,48.688185000000,-3.676622000000,,Locquirec - Finistère,36878,observation-f1a0e9cc-580e-4e29-92eb-a1b512a86062-2,https://biolit.fr/observations/observation-f1a0e9cc-580e-4e29-92eb-a1b512a86062-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200628_164554.jpg,,TRUE, +N1,58994,sortie-f1a0e9cc-580e-4e29-92eb-a1b512a86062,https://biolit.fr/sorties/sortie-f1a0e9cc-580e-4e29-92eb-a1b512a86062/,Phil,,6/28/2020 0:00,16.0:45,16.0000000,48.688185000000,-3.676622000000,,Locquirec - Finistère,36880,observation-f1a0e9cc-580e-4e29-92eb-a1b512a86062-3,https://biolit.fr/observations/observation-f1a0e9cc-580e-4e29-92eb-a1b512a86062-3/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/20200628_164927.jpg,,TRUE, +N1,58994,sortie-f1a0e9cc-580e-4e29-92eb-a1b512a86062,https://biolit.fr/sorties/sortie-f1a0e9cc-580e-4e29-92eb-a1b512a86062/,Phil,,6/28/2020 0:00,16.0:45,16.0000000,48.688185000000,-3.676622000000,,Locquirec - Finistère,36882,observation-f1a0e9cc-580e-4e29-92eb-a1b512a86062-4,https://biolit.fr/observations/observation-f1a0e9cc-580e-4e29-92eb-a1b512a86062-4/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20200628_164714.jpg,,TRUE, +N1,58995,sortie-bb724b11-0a34-418b-a09e-a91a1827f4fb,https://biolit.fr/sorties/sortie-bb724b11-0a34-418b-a09e-a91a1827f4fb/,Phil,,5/22/2020 0:00,12.0000000,12.0000000,47.800369000000,-4.180362000000,,Loctudy - Finistère,36884,observation-bb724b11-0a34-418b-a09e-a91a1827f4fb,https://biolit.fr/observations/observation-bb724b11-0a34-418b-a09e-a91a1827f4fb/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20200522_122151.jpg,,TRUE, +N1,58995,sortie-bb724b11-0a34-418b-a09e-a91a1827f4fb,https://biolit.fr/sorties/sortie-bb724b11-0a34-418b-a09e-a91a1827f4fb/,Phil,,5/22/2020 0:00,12.0000000,12.0000000,47.800369000000,-4.180362000000,,Loctudy - Finistère,36886,observation-bb724b11-0a34-418b-a09e-a91a1827f4fb-2,https://biolit.fr/observations/observation-bb724b11-0a34-418b-a09e-a91a1827f4fb-2/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20200522_122146.jpg,,TRUE, +N1,58995,sortie-bb724b11-0a34-418b-a09e-a91a1827f4fb,https://biolit.fr/sorties/sortie-bb724b11-0a34-418b-a09e-a91a1827f4fb/,Phil,,5/22/2020 0:00,12.0000000,12.0000000,47.800369000000,-4.180362000000,,Loctudy - Finistère,36888,observation-bb724b11-0a34-418b-a09e-a91a1827f4fb-3,https://biolit.fr/observations/observation-bb724b11-0a34-418b-a09e-a91a1827f4fb-3/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20200522_121814.jpg,,TRUE, +N1,58995,sortie-bb724b11-0a34-418b-a09e-a91a1827f4fb,https://biolit.fr/sorties/sortie-bb724b11-0a34-418b-a09e-a91a1827f4fb/,Phil,,5/22/2020 0:00,12.0000000,12.0000000,47.800369000000,-4.180362000000,,Loctudy - Finistère,36890,observation-bb724b11-0a34-418b-a09e-a91a1827f4fb-4,https://biolit.fr/observations/observation-bb724b11-0a34-418b-a09e-a91a1827f4fb-4/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20200522_121801.jpg,,TRUE, +N1,58995,sortie-bb724b11-0a34-418b-a09e-a91a1827f4fb,https://biolit.fr/sorties/sortie-bb724b11-0a34-418b-a09e-a91a1827f4fb/,Phil,,5/22/2020 0:00,12.0000000,12.0000000,47.800369000000,-4.180362000000,,Loctudy - Finistère,36892,observation-bb724b11-0a34-418b-a09e-a91a1827f4fb-5,https://biolit.fr/observations/observation-bb724b11-0a34-418b-a09e-a91a1827f4fb-5/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20200522_120542.jpg,,TRUE, +N1,58996,sortie-bf3d1008-8e16-4171-afff-986410553de7,https://biolit.fr/sorties/sortie-bf3d1008-8e16-4171-afff-986410553de7/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.794713000000,-4.178658000000,,Loctudy - Finistère,36894,observation-bf3d1008-8e16-4171-afff-986410553de7,https://biolit.fr/observations/observation-bf3d1008-8e16-4171-afff-986410553de7/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/20200726_154233.jpg,,TRUE, +N1,58996,sortie-bf3d1008-8e16-4171-afff-986410553de7,https://biolit.fr/sorties/sortie-bf3d1008-8e16-4171-afff-986410553de7/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.794713000000,-4.178658000000,,Loctudy - Finistère,36896,observation-bf3d1008-8e16-4171-afff-986410553de7-2,https://biolit.fr/observations/observation-bf3d1008-8e16-4171-afff-986410553de7-2/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/20200726_154213.jpg,,TRUE, +N1,58996,sortie-bf3d1008-8e16-4171-afff-986410553de7,https://biolit.fr/sorties/sortie-bf3d1008-8e16-4171-afff-986410553de7/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.794713000000,-4.178658000000,,Loctudy - Finistère,36898,observation-bf3d1008-8e16-4171-afff-986410553de7-3,https://biolit.fr/observations/observation-bf3d1008-8e16-4171-afff-986410553de7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200726_154923.jpg,,FALSE, +N1,58996,sortie-bf3d1008-8e16-4171-afff-986410553de7,https://biolit.fr/sorties/sortie-bf3d1008-8e16-4171-afff-986410553de7/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.794713000000,-4.178658000000,,Loctudy - Finistère,36900,observation-bf3d1008-8e16-4171-afff-986410553de7-4,https://biolit.fr/observations/observation-bf3d1008-8e16-4171-afff-986410553de7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200726_154927.jpg,,FALSE, +N1,58996,sortie-bf3d1008-8e16-4171-afff-986410553de7,https://biolit.fr/sorties/sortie-bf3d1008-8e16-4171-afff-986410553de7/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.794713000000,-4.178658000000,,Loctudy - Finistère,36902,observation-bf3d1008-8e16-4171-afff-986410553de7-5,https://biolit.fr/observations/observation-bf3d1008-8e16-4171-afff-986410553de7-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200726_154940.jpg,,FALSE, +N1,58996,sortie-bf3d1008-8e16-4171-afff-986410553de7,https://biolit.fr/sorties/sortie-bf3d1008-8e16-4171-afff-986410553de7/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.794713000000,-4.178658000000,,Loctudy - Finistère,36904,observation-bf3d1008-8e16-4171-afff-986410553de7-6,https://biolit.fr/observations/observation-bf3d1008-8e16-4171-afff-986410553de7-6/,Tritia incrassata,Nasse épaisse,,https://biolit.fr/wp-content/uploads/2023/07/20200726_154956.jpg,,TRUE, +N1,58997,sortie-5b5215c1-0fd4-4c87-94ab-b883197a97cb,https://biolit.fr/sorties/sortie-5b5215c1-0fd4-4c87-94ab-b883197a97cb/,Phil,,12/04/2020,13.0:45,13.0:45,47.791336000000,-4.277033000000,,Tréffiagat - Finistère,36906,observation-5b5215c1-0fd4-4c87-94ab-b883197a97cb,https://biolit.fr/observations/observation-5b5215c1-0fd4-4c87-94ab-b883197a97cb/,,,,https://biolit.fr/wp-content/uploads/2023/07/20201204_134519.jpg,,FALSE, +N1,58998,sortie-a15cfaef-7725-4908-a6e1-d33382365b3d,https://biolit.fr/sorties/sortie-a15cfaef-7725-4908-a6e1-d33382365b3d/,Phil,,10/22/2020 0:00,13.0000000,13.0:55,47.791581000000,-4.288427000000,,Guilvinec - Finistère,36908,observation-a15cfaef-7725-4908-a6e1-d33382365b3d,https://biolit.fr/observations/observation-a15cfaef-7725-4908-a6e1-d33382365b3d/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/20201022_135438.jpg,,TRUE, +N1,58998,sortie-a15cfaef-7725-4908-a6e1-d33382365b3d,https://biolit.fr/sorties/sortie-a15cfaef-7725-4908-a6e1-d33382365b3d/,Phil,,10/22/2020 0:00,13.0000000,13.0:55,47.791581000000,-4.288427000000,,Guilvinec - Finistère,36910,observation-a15cfaef-7725-4908-a6e1-d33382365b3d-2,https://biolit.fr/observations/observation-a15cfaef-7725-4908-a6e1-d33382365b3d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20201022_140050.jpg,,FALSE, +N1,58999,sortie-d7b67770-eeca-4d9e-9e89-832c4cad2b46,https://biolit.fr/sorties/sortie-d7b67770-eeca-4d9e-9e89-832c4cad2b46/,Phil,,10/22/2020 0:00,14.0000000,14.0000000,47.791745000000,-4.287054000000,,Guilvinec - Finistère,36912,observation-d7b67770-eeca-4d9e-9e89-832c4cad2b46,https://biolit.fr/observations/observation-d7b67770-eeca-4d9e-9e89-832c4cad2b46/,,,,https://biolit.fr/wp-content/uploads/2023/07/20201022_140121.jpg,,FALSE, +N1,59000,sortie-caf0a6a2-4b86-42e1-beaf-fa377b41f821,https://biolit.fr/sorties/sortie-caf0a6a2-4b86-42e1-beaf-fa377b41f821/,Phil,,3/13/2020 0:00,13.0000000,14.0000000,47.798507000000,-4.180156000000,,Loctudy - Finistère,36914,observation-caf0a6a2-4b86-42e1-beaf-fa377b41f821,https://biolit.fr/observations/observation-caf0a6a2-4b86-42e1-beaf-fa377b41f821/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20200313_142128.jpg,,TRUE, +N1,59000,sortie-caf0a6a2-4b86-42e1-beaf-fa377b41f821,https://biolit.fr/sorties/sortie-caf0a6a2-4b86-42e1-beaf-fa377b41f821/,Phil,,3/13/2020 0:00,13.0000000,14.0000000,47.798507000000,-4.180156000000,,Loctudy - Finistère,36916,observation-caf0a6a2-4b86-42e1-beaf-fa377b41f821-2,https://biolit.fr/observations/observation-caf0a6a2-4b86-42e1-beaf-fa377b41f821-2/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20200313_142050.jpg,,TRUE, +N1,59000,sortie-caf0a6a2-4b86-42e1-beaf-fa377b41f821,https://biolit.fr/sorties/sortie-caf0a6a2-4b86-42e1-beaf-fa377b41f821/,Phil,,3/13/2020 0:00,13.0000000,14.0000000,47.798507000000,-4.180156000000,,Loctudy - Finistère,36918,observation-caf0a6a2-4b86-42e1-beaf-fa377b41f821-3,https://biolit.fr/observations/observation-caf0a6a2-4b86-42e1-beaf-fa377b41f821-3/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20200313_142027.jpg,,TRUE, +N1,59000,sortie-caf0a6a2-4b86-42e1-beaf-fa377b41f821,https://biolit.fr/sorties/sortie-caf0a6a2-4b86-42e1-beaf-fa377b41f821/,Phil,,3/13/2020 0:00,13.0000000,14.0000000,47.798507000000,-4.180156000000,,Loctudy - Finistère,36920,observation-caf0a6a2-4b86-42e1-beaf-fa377b41f821-4,https://biolit.fr/observations/observation-caf0a6a2-4b86-42e1-beaf-fa377b41f821-4/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20200313_142026.jpg,,TRUE, +N1,59000,sortie-caf0a6a2-4b86-42e1-beaf-fa377b41f821,https://biolit.fr/sorties/sortie-caf0a6a2-4b86-42e1-beaf-fa377b41f821/,Phil,,3/13/2020 0:00,13.0000000,14.0000000,47.798507000000,-4.180156000000,,Loctudy - Finistère,36922,observation-caf0a6a2-4b86-42e1-beaf-fa377b41f821-5,https://biolit.fr/observations/observation-caf0a6a2-4b86-42e1-beaf-fa377b41f821-5/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/20200313_132559_0.jpg,,TRUE, +N1,59001,sortie-5aa90241-453b-47b2-9ebd-778091166621,https://biolit.fr/sorties/sortie-5aa90241-453b-47b2-9ebd-778091166621/,Phil,,5/22/2020 0:00,11.0000000,12.000005,47.798975000000,-4.179903000000,,Loctudy - Finistère,36924,observation-5aa90241-453b-47b2-9ebd-778091166621,https://biolit.fr/observations/observation-5aa90241-453b-47b2-9ebd-778091166621/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/20200522_120236.jpg,,TRUE, +N1,59001,sortie-5aa90241-453b-47b2-9ebd-778091166621,https://biolit.fr/sorties/sortie-5aa90241-453b-47b2-9ebd-778091166621/,Phil,,5/22/2020 0:00,11.0000000,12.000005,47.798975000000,-4.179903000000,,Loctudy - Finistère,36926,observation-5aa90241-453b-47b2-9ebd-778091166621-2,https://biolit.fr/observations/observation-5aa90241-453b-47b2-9ebd-778091166621-2/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/20200522_120334.jpg,,TRUE, +N1,59001,sortie-5aa90241-453b-47b2-9ebd-778091166621,https://biolit.fr/sorties/sortie-5aa90241-453b-47b2-9ebd-778091166621/,Phil,,5/22/2020 0:00,11.0000000,12.000005,47.798975000000,-4.179903000000,,Loctudy - Finistère,36928,observation-5aa90241-453b-47b2-9ebd-778091166621-3,https://biolit.fr/observations/observation-5aa90241-453b-47b2-9ebd-778091166621-3/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20200522_120248.jpg,,TRUE, +N1,59001,sortie-5aa90241-453b-47b2-9ebd-778091166621,https://biolit.fr/sorties/sortie-5aa90241-453b-47b2-9ebd-778091166621/,Phil,,5/22/2020 0:00,11.0000000,12.000005,47.798975000000,-4.179903000000,,Loctudy - Finistère,36930,observation-5aa90241-453b-47b2-9ebd-778091166621-4,https://biolit.fr/observations/observation-5aa90241-453b-47b2-9ebd-778091166621-4/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/20200522_120504.jpg,,TRUE, +N1,59001,sortie-5aa90241-453b-47b2-9ebd-778091166621,https://biolit.fr/sorties/sortie-5aa90241-453b-47b2-9ebd-778091166621/,Phil,,5/22/2020 0:00,11.0000000,12.000005,47.798975000000,-4.179903000000,,Loctudy - Finistère,36932,observation-5aa90241-453b-47b2-9ebd-778091166621-5,https://biolit.fr/observations/observation-5aa90241-453b-47b2-9ebd-778091166621-5/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/20200522_120520.jpg,,TRUE, +N1,59002,sortie-ab95018a-a031-4373-a953-95a5e5ee06c0,https://biolit.fr/sorties/sortie-ab95018a-a031-4373-a953-95a5e5ee06c0/,Phil,,06/12/2020,17.0000000,17.0:55,48.209472000000,-4.369692000000,,Telgruc-sur-Mer - Finistère,36934,observation-ab95018a-a031-4373-a953-95a5e5ee06c0,https://biolit.fr/observations/observation-ab95018a-a031-4373-a953-95a5e5ee06c0/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200612_175111_0.jpg,,FALSE, +N1,59002,sortie-ab95018a-a031-4373-a953-95a5e5ee06c0,https://biolit.fr/sorties/sortie-ab95018a-a031-4373-a953-95a5e5ee06c0/,Phil,,06/12/2020,17.0000000,17.0:55,48.209472000000,-4.369692000000,,Telgruc-sur-Mer - Finistère,36936,observation-ab95018a-a031-4373-a953-95a5e5ee06c0-2,https://biolit.fr/observations/observation-ab95018a-a031-4373-a953-95a5e5ee06c0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200612_175117.jpg,,FALSE, +N1,59002,sortie-ab95018a-a031-4373-a953-95a5e5ee06c0,https://biolit.fr/sorties/sortie-ab95018a-a031-4373-a953-95a5e5ee06c0/,Phil,,06/12/2020,17.0000000,17.0:55,48.209472000000,-4.369692000000,,Telgruc-sur-Mer - Finistère,36938,observation-ab95018a-a031-4373-a953-95a5e5ee06c0-3,https://biolit.fr/observations/observation-ab95018a-a031-4373-a953-95a5e5ee06c0-3/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/20200612_175212.jpg,,TRUE, +N1,59003,sortie-e5dab01a-2592-401e-9a19-b2a294ced101,https://biolit.fr/sorties/sortie-e5dab01a-2592-401e-9a19-b2a294ced101/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.798773000000,-4.180643000000,,Loctudy - Finistère,36940,observation-e5dab01a-2592-401e-9a19-b2a294ced101,https://biolit.fr/observations/observation-e5dab01a-2592-401e-9a19-b2a294ced101/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200726_153242.jpg,,FALSE, +N1,59003,sortie-e5dab01a-2592-401e-9a19-b2a294ced101,https://biolit.fr/sorties/sortie-e5dab01a-2592-401e-9a19-b2a294ced101/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.798773000000,-4.180643000000,,Loctudy - Finistère,36942,observation-e5dab01a-2592-401e-9a19-b2a294ced101-2,https://biolit.fr/observations/observation-e5dab01a-2592-401e-9a19-b2a294ced101-2/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/20200726_153452.jpg,,TRUE, +N1,59003,sortie-e5dab01a-2592-401e-9a19-b2a294ced101,https://biolit.fr/sorties/sortie-e5dab01a-2592-401e-9a19-b2a294ced101/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.798773000000,-4.180643000000,,Loctudy - Finistère,36944,observation-e5dab01a-2592-401e-9a19-b2a294ced101-3,https://biolit.fr/observations/observation-e5dab01a-2592-401e-9a19-b2a294ced101-3/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200726_153715.jpg,,TRUE, +N1,59003,sortie-e5dab01a-2592-401e-9a19-b2a294ced101,https://biolit.fr/sorties/sortie-e5dab01a-2592-401e-9a19-b2a294ced101/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.798773000000,-4.180643000000,,Loctudy - Finistère,36946,observation-e5dab01a-2592-401e-9a19-b2a294ced101-4,https://biolit.fr/observations/observation-e5dab01a-2592-401e-9a19-b2a294ced101-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200726_154115.jpg,,FALSE, +N1,59003,sortie-e5dab01a-2592-401e-9a19-b2a294ced101,https://biolit.fr/sorties/sortie-e5dab01a-2592-401e-9a19-b2a294ced101/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.798773000000,-4.180643000000,,Loctudy - Finistère,36948,observation-e5dab01a-2592-401e-9a19-b2a294ced101-5,https://biolit.fr/observations/observation-e5dab01a-2592-401e-9a19-b2a294ced101-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200726_154127.jpg,,FALSE, +N1,59004,sortie-649edf4c-6f02-4898-8f33-52ca5f376523,https://biolit.fr/sorties/sortie-649edf4c-6f02-4898-8f33-52ca5f376523/,Phil,,6/27/2020 0:00,14.000005,14.0000000,48.669988000000,-3.601266000000,,Plestin-les-Grèves - Côtes d'Armor,36950,observation-649edf4c-6f02-4898-8f33-52ca5f376523,https://biolit.fr/observations/observation-649edf4c-6f02-4898-8f33-52ca5f376523/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200627_140424.jpg,,FALSE, +N1,59004,sortie-649edf4c-6f02-4898-8f33-52ca5f376523,https://biolit.fr/sorties/sortie-649edf4c-6f02-4898-8f33-52ca5f376523/,Phil,,6/27/2020 0:00,14.000005,14.0000000,48.669988000000,-3.601266000000,,Plestin-les-Grèves - Côtes d'Armor,36952,observation-649edf4c-6f02-4898-8f33-52ca5f376523-2,https://biolit.fr/observations/observation-649edf4c-6f02-4898-8f33-52ca5f376523-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200627_140513.jpg,,FALSE, +N1,59004,sortie-649edf4c-6f02-4898-8f33-52ca5f376523,https://biolit.fr/sorties/sortie-649edf4c-6f02-4898-8f33-52ca5f376523/,Phil,,6/27/2020 0:00,14.000005,14.0000000,48.669988000000,-3.601266000000,,Plestin-les-Grèves - Côtes d'Armor,36954,observation-649edf4c-6f02-4898-8f33-52ca5f376523-3,https://biolit.fr/observations/observation-649edf4c-6f02-4898-8f33-52ca5f376523-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200627_140552.jpg,,FALSE, +N1,59005,sortie-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df,https://biolit.fr/sorties/sortie-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df/,Roman,,11/23/2020 0:00,15.0000000,16.0:45,47.701769000000,-3.311773000000,,Riantec,36956,observation-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df,https://biolit.fr/observations/observation-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df/,Atelecyclus undecimdentatus,Grand crabe circulaire,,https://biolit.fr/wp-content/uploads/2023/07/Atelecyclus undecimdentatus.jpg,,TRUE, +N1,59005,sortie-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df,https://biolit.fr/sorties/sortie-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df/,Roman,,11/23/2020 0:00,15.0000000,16.0:45,47.701769000000,-3.311773000000,,Riantec,36957,observation-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df-2,https://biolit.fr/observations/observation-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df-2/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/bernache cravant.PNG,,TRUE, +N1,59005,sortie-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df,https://biolit.fr/sorties/sortie-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df/,Roman,,11/23/2020 0:00,15.0000000,16.0:45,47.701769000000,-3.311773000000,,Riantec,36959,observation-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df-3,https://biolit.fr/observations/observation-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df-3/,Scyliorhinus canicula,Capsule de petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/Capsule d'oeuf de roussette.PNG,,TRUE, +N1,59005,sortie-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df,https://biolit.fr/sorties/sortie-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df/,Roman,,11/23/2020 0:00,15.0000000,16.0:45,47.701769000000,-3.311773000000,,Riantec,36960,observation-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df-4,https://biolit.fr/observations/observation-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df-4/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/Lepas anatifera_0.PNG,,TRUE, +N1,59005,sortie-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df,https://biolit.fr/sorties/sortie-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df/,Roman,,11/23/2020 0:00,15.0000000,16.0:45,47.701769000000,-3.311773000000,,Riantec,36961,observation-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df-5,https://biolit.fr/observations/observation-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df-5/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/tournpierre et bécasseau variable.PNG,,TRUE, +N1,59005,sortie-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df,https://biolit.fr/sorties/sortie-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df/,Roman,,11/23/2020 0:00,15.0000000,16.0:45,47.701769000000,-3.311773000000,,Riantec,36963,observation-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df-6,https://biolit.fr/observations/observation-2bd16f49-dbf3-4a29-9bf9-7ec5d30652df-6/,Zostera noltei,Zostère naine,,https://biolit.fr/wp-content/uploads/2023/07/zostera naine.PNG,,TRUE, +N1,59006,sortie-d261ce7d-c041-4024-b8e4-7885364e7a78,https://biolit.fr/sorties/sortie-d261ce7d-c041-4024-b8e4-7885364e7a78/,Roman,,11/18/2020 0:00,12.0000000,12.0:15,47.707314000000,-3.358808000000,,Port-Louis,36965,observation-d261ce7d-c041-4024-b8e4-7885364e7a78,https://biolit.fr/observations/observation-d261ce7d-c041-4024-b8e4-7885364e7a78/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/127216202_139444920881342_6941971831746324365_n-scaled.jpg,,TRUE, +N1,59006,sortie-d261ce7d-c041-4024-b8e4-7885364e7a78,https://biolit.fr/sorties/sortie-d261ce7d-c041-4024-b8e4-7885364e7a78/,Roman,,11/18/2020 0:00,12.0000000,12.0:15,47.707314000000,-3.358808000000,,Port-Louis,36967,observation-d261ce7d-c041-4024-b8e4-7885364e7a78-2,https://biolit.fr/observations/observation-d261ce7d-c041-4024-b8e4-7885364e7a78-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/127108928_1050397002090406_6280797003432600290_n-scaled.jpg,,TRUE, +N1,59007,sortie-31d490e0-8d02-4cc9-ac88-13bc7071ce6b,https://biolit.fr/sorties/sortie-31d490e0-8d02-4cc9-ac88-13bc7071ce6b/,Phil,,06/12/2020,17.0000000,17.0:55,48.208670000000,-4.371125000000,,Telgruc-sur-Mer - Finistère,36969,observation-31d490e0-8d02-4cc9-ac88-13bc7071ce6b,https://biolit.fr/observations/observation-31d490e0-8d02-4cc9-ac88-13bc7071ce6b/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/20200612_175045.jpg,,TRUE, +N1,59007,sortie-31d490e0-8d02-4cc9-ac88-13bc7071ce6b,https://biolit.fr/sorties/sortie-31d490e0-8d02-4cc9-ac88-13bc7071ce6b/,Phil,,06/12/2020,17.0000000,17.0:55,48.208670000000,-4.371125000000,,Telgruc-sur-Mer - Finistère,36971,observation-31d490e0-8d02-4cc9-ac88-13bc7071ce6b-2,https://biolit.fr/observations/observation-31d490e0-8d02-4cc9-ac88-13bc7071ce6b-2/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/20200612_175020.jpg,,TRUE, +N1,59007,sortie-31d490e0-8d02-4cc9-ac88-13bc7071ce6b,https://biolit.fr/sorties/sortie-31d490e0-8d02-4cc9-ac88-13bc7071ce6b/,Phil,,06/12/2020,17.0000000,17.0:55,48.208670000000,-4.371125000000,,Telgruc-sur-Mer - Finistère,36973,observation-31d490e0-8d02-4cc9-ac88-13bc7071ce6b-3,https://biolit.fr/observations/observation-31d490e0-8d02-4cc9-ac88-13bc7071ce6b-3/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/20200612_175005.jpg,,TRUE, +N1,59008,sortie-5d88a0c5-1aa1-48a4-9f68-fd9cd471d72f,https://biolit.fr/sorties/sortie-5d88a0c5-1aa1-48a4-9f68-fd9cd471d72f/,Phil,,7/26/2020 0:00,15.0000000,15.0:25,47.797942000000,-4.179718000000,,Loctudy - Finistère,36975,observation-5d88a0c5-1aa1-48a4-9f68-fd9cd471d72f,https://biolit.fr/observations/observation-5d88a0c5-1aa1-48a4-9f68-fd9cd471d72f/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20200726_152451.jpg,,TRUE, +N1,59008,sortie-5d88a0c5-1aa1-48a4-9f68-fd9cd471d72f,https://biolit.fr/sorties/sortie-5d88a0c5-1aa1-48a4-9f68-fd9cd471d72f/,Phil,,7/26/2020 0:00,15.0000000,15.0:25,47.797942000000,-4.179718000000,,Loctudy - Finistère,36977,observation-5d88a0c5-1aa1-48a4-9f68-fd9cd471d72f-2,https://biolit.fr/observations/observation-5d88a0c5-1aa1-48a4-9f68-fd9cd471d72f-2/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20200726_152521.jpg,,TRUE, +N1,59008,sortie-5d88a0c5-1aa1-48a4-9f68-fd9cd471d72f,https://biolit.fr/sorties/sortie-5d88a0c5-1aa1-48a4-9f68-fd9cd471d72f/,Phil,,7/26/2020 0:00,15.0000000,15.0:25,47.797942000000,-4.179718000000,,Loctudy - Finistère,36979,observation-5d88a0c5-1aa1-48a4-9f68-fd9cd471d72f-3,https://biolit.fr/observations/observation-5d88a0c5-1aa1-48a4-9f68-fd9cd471d72f-3/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200726_152803.jpg,,TRUE, +N1,59008,sortie-5d88a0c5-1aa1-48a4-9f68-fd9cd471d72f,https://biolit.fr/sorties/sortie-5d88a0c5-1aa1-48a4-9f68-fd9cd471d72f/,Phil,,7/26/2020 0:00,15.0000000,15.0:25,47.797942000000,-4.179718000000,,Loctudy - Finistère,36981,observation-5d88a0c5-1aa1-48a4-9f68-fd9cd471d72f-4,https://biolit.fr/observations/observation-5d88a0c5-1aa1-48a4-9f68-fd9cd471d72f-4/,Chondrus crispus,Goémon frisé,,https://biolit.fr/wp-content/uploads/2023/07/20200726_152846.jpg,,FALSE, +N1,59009,sortie-a2beac1a-6892-4b10-9aae-037334f22147,https://biolit.fr/sorties/sortie-a2beac1a-6892-4b10-9aae-037334f22147/,Phil,,10/22/2020 0:00,13.0000000,13.0:55,47.791473000000,-4.286693000000,,Guilvinec - Finistère,36983,observation-a2beac1a-6892-4b10-9aae-037334f22147,https://biolit.fr/observations/observation-a2beac1a-6892-4b10-9aae-037334f22147/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20201022_135254.jpg,,TRUE, +N1,59009,sortie-a2beac1a-6892-4b10-9aae-037334f22147,https://biolit.fr/sorties/sortie-a2beac1a-6892-4b10-9aae-037334f22147/,Phil,,10/22/2020 0:00,13.0000000,13.0:55,47.791473000000,-4.286693000000,,Guilvinec - Finistère,36985,observation-a2beac1a-6892-4b10-9aae-037334f22147-2,https://biolit.fr/observations/observation-a2beac1a-6892-4b10-9aae-037334f22147-2/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20201022_135402.jpg,,TRUE, +N1,59009,sortie-a2beac1a-6892-4b10-9aae-037334f22147,https://biolit.fr/sorties/sortie-a2beac1a-6892-4b10-9aae-037334f22147/,Phil,,10/22/2020 0:00,13.0000000,13.0:55,47.791473000000,-4.286693000000,,Guilvinec - Finistère,36987,observation-a2beac1a-6892-4b10-9aae-037334f22147-3,https://biolit.fr/observations/observation-a2beac1a-6892-4b10-9aae-037334f22147-3/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20201022_135409.jpg,,TRUE, +N1,59010,sortie-9bf3419c-7046-4542-8af6-36fb58cf2263,https://biolit.fr/sorties/sortie-9bf3419c-7046-4542-8af6-36fb58cf2263/,laetimiq,,11/10/2020,11.0000000,12.0000000,48.011825000000,-4.546540000000,,Audierne,36989,observation-9bf3419c-7046-4542-8af6-36fb58cf2263,https://biolit.fr/observations/observation-9bf3419c-7046-4542-8af6-36fb58cf2263/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20201110_114414_0-scaled.jpg,,FALSE, +N1,59011,sortie-559f3c8d-5049-400e-a4fe-68d2263ef134,https://biolit.fr/sorties/sortie-559f3c8d-5049-400e-a4fe-68d2263ef134/,laetimiq,,11/04/2020,12.0000000,12.0000000,48.282037000000,-4.59944000000,,Camaret-sur-mer,36991,observation-559f3c8d-5049-400e-a4fe-68d2263ef134,https://biolit.fr/observations/observation-559f3c8d-5049-400e-a4fe-68d2263ef134/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20201104_121506_1-scaled.jpg,,TRUE, +N1,59012,sortie-850fdf5f-6571-4bee-a9a7-d3bd71e0cded,https://biolit.fr/sorties/sortie-850fdf5f-6571-4bee-a9a7-d3bd71e0cded/,laetimiq,,11/04/2020,11.0000000,11.0000000,48.275897000000,-4.617111000000,,Camaret-sur-mer,36993,observation-850fdf5f-6571-4bee-a9a7-d3bd71e0cded,https://biolit.fr/observations/observation-850fdf5f-6571-4bee-a9a7-d3bd71e0cded/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20201104_130457_0-scaled.jpg,,TRUE, +N1,59013,sortie-1b0cfc57-0fb2-400b-ab87-1e08dabb26fd,https://biolit.fr/sorties/sortie-1b0cfc57-0fb2-400b-ab87-1e08dabb26fd/,laetimiq,,11/04/2020,11.0000000,11.0000000,48.276399000000,-4.617636000000,,Camaret-sur-mer,36995,observation-1b0cfc57-0fb2-400b-ab87-1e08dabb26fd,https://biolit.fr/observations/observation-1b0cfc57-0fb2-400b-ab87-1e08dabb26fd/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20201104_125225_1-scaled.jpg,,TRUE, +N1,59014,sortie-25391148-7015-45ef-a974-3ebc9b4f5781,https://biolit.fr/sorties/sortie-25391148-7015-45ef-a974-3ebc9b4f5781/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.800626000000,-4.181654000000,,Loctudy - Finistère,36997,observation-25391148-7015-45ef-a974-3ebc9b4f5781,https://biolit.fr/observations/observation-25391148-7015-45ef-a974-3ebc9b4f5781/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200726_151410.jpg,,TRUE, +N1,59014,sortie-25391148-7015-45ef-a974-3ebc9b4f5781,https://biolit.fr/sorties/sortie-25391148-7015-45ef-a974-3ebc9b4f5781/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.800626000000,-4.181654000000,,Loctudy - Finistère,36999,observation-25391148-7015-45ef-a974-3ebc9b4f5781-2,https://biolit.fr/observations/observation-25391148-7015-45ef-a974-3ebc9b4f5781-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200726_151651.jpg,,FALSE, +N1,59014,sortie-25391148-7015-45ef-a974-3ebc9b4f5781,https://biolit.fr/sorties/sortie-25391148-7015-45ef-a974-3ebc9b4f5781/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.800626000000,-4.181654000000,,Loctudy - Finistère,37001,observation-25391148-7015-45ef-a974-3ebc9b4f5781-3,https://biolit.fr/observations/observation-25391148-7015-45ef-a974-3ebc9b4f5781-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200726_151754.jpg,,FALSE, +N1,59014,sortie-25391148-7015-45ef-a974-3ebc9b4f5781,https://biolit.fr/sorties/sortie-25391148-7015-45ef-a974-3ebc9b4f5781/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.800626000000,-4.181654000000,,Loctudy - Finistère,37003,observation-25391148-7015-45ef-a974-3ebc9b4f5781-4,https://biolit.fr/observations/observation-25391148-7015-45ef-a974-3ebc9b4f5781-4/,Rivularia bullata,Rivulaire en forme de bulle,,https://biolit.fr/wp-content/uploads/2023/07/20200726_151813.jpg,,TRUE, +N1,59014,sortie-25391148-7015-45ef-a974-3ebc9b4f5781,https://biolit.fr/sorties/sortie-25391148-7015-45ef-a974-3ebc9b4f5781/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.800626000000,-4.181654000000,,Loctudy - Finistère,37005,observation-25391148-7015-45ef-a974-3ebc9b4f5781-5,https://biolit.fr/observations/observation-25391148-7015-45ef-a974-3ebc9b4f5781-5/,Rivularia bullata,Rivulaire en forme de bulle,,https://biolit.fr/wp-content/uploads/2023/07/20200726_151816.jpg,,TRUE, +N1,59014,sortie-25391148-7015-45ef-a974-3ebc9b4f5781,https://biolit.fr/sorties/sortie-25391148-7015-45ef-a974-3ebc9b4f5781/,Phil,,7/26/2020 0:00,15.0000000,15.0000000,47.800626000000,-4.181654000000,,Loctudy - Finistère,37007,observation-25391148-7015-45ef-a974-3ebc9b4f5781-6,https://biolit.fr/observations/observation-25391148-7015-45ef-a974-3ebc9b4f5781-6/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20200726_151855.jpg,,TRUE, +N1,59015,sortie-ef8c2ede-1f05-4fa6-a5cd-122ac1bb7b3d,https://biolit.fr/sorties/sortie-ef8c2ede-1f05-4fa6-a5cd-122ac1bb7b3d/,elsa.couaillier,,11/19/2020 0:00,14.0:45,15.0000000,44.756108000000,-1.13491300000,,plage d’arès ,37009,observation-ef8c2ede-1f05-4fa6-a5cd-122ac1bb7b3d,https://biolit.fr/observations/observation-ef8c2ede-1f05-4fa6-a5cd-122ac1bb7b3d/,,,,https://biolit.fr/wp-content/uploads/2023/07/2386957C-83B8-43AD-ABF7-34C56D9094ED-scaled.jpeg,,FALSE, +N1,59015,sortie-ef8c2ede-1f05-4fa6-a5cd-122ac1bb7b3d,https://biolit.fr/sorties/sortie-ef8c2ede-1f05-4fa6-a5cd-122ac1bb7b3d/,elsa.couaillier,,11/19/2020 0:00,14.0:45,15.0000000,44.756108000000,-1.13491300000,,plage d’arès ,37011,observation-ef8c2ede-1f05-4fa6-a5cd-122ac1bb7b3d-2,https://biolit.fr/observations/observation-ef8c2ede-1f05-4fa6-a5cd-122ac1bb7b3d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/D44EB31B-B049-4A20-97BC-AF27EE8AE212-scaled.jpeg,,FALSE, +N1,59016,sortie-44ca749d-1984-4c48-8e50-dd973fd1b992,https://biolit.fr/sorties/sortie-44ca749d-1984-4c48-8e50-dd973fd1b992/,Phil,,10/21/2020 0:00,15.0:45,15.0000000,48.097087000000,-4.336080000000,,Douarnenez - Finistère,37015,observation-44ca749d-1984-4c48-8e50-dd973fd1b992,https://biolit.fr/observations/observation-44ca749d-1984-4c48-8e50-dd973fd1b992/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20201021_154816.jpg,,TRUE, +N1,59016,sortie-44ca749d-1984-4c48-8e50-dd973fd1b992,https://biolit.fr/sorties/sortie-44ca749d-1984-4c48-8e50-dd973fd1b992/,Phil,,10/21/2020 0:00,15.0:45,15.0000000,48.097087000000,-4.336080000000,,Douarnenez - Finistère,37017,observation-44ca749d-1984-4c48-8e50-dd973fd1b992-2,https://biolit.fr/observations/observation-44ca749d-1984-4c48-8e50-dd973fd1b992-2/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20201021_154911.jpg,,TRUE, +N1,59016,sortie-44ca749d-1984-4c48-8e50-dd973fd1b992,https://biolit.fr/sorties/sortie-44ca749d-1984-4c48-8e50-dd973fd1b992/,Phil,,10/21/2020 0:00,15.0:45,15.0000000,48.097087000000,-4.336080000000,,Douarnenez - Finistère,37019,observation-44ca749d-1984-4c48-8e50-dd973fd1b992-3,https://biolit.fr/observations/observation-44ca749d-1984-4c48-8e50-dd973fd1b992-3/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20201021_155037.jpg,,TRUE, +N1,59016,sortie-44ca749d-1984-4c48-8e50-dd973fd1b992,https://biolit.fr/sorties/sortie-44ca749d-1984-4c48-8e50-dd973fd1b992/,Phil,,10/21/2020 0:00,15.0:45,15.0000000,48.097087000000,-4.336080000000,,Douarnenez - Finistère,37021,observation-44ca749d-1984-4c48-8e50-dd973fd1b992-4,https://biolit.fr/observations/observation-44ca749d-1984-4c48-8e50-dd973fd1b992-4/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/20201021_155115.jpg,,TRUE, +N1,59017,sortie-30d53143-602f-432b-9bda-2169c8770dc1,https://biolit.fr/sorties/sortie-30d53143-602f-432b-9bda-2169c8770dc1/,Phil,,3/13/2020 0:00,13.0000000,14.000005,47.799075000000,-4.179289000000,,Loctudy - Finistère,37023,observation-30d53143-602f-432b-9bda-2169c8770dc1,https://biolit.fr/observations/observation-30d53143-602f-432b-9bda-2169c8770dc1/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_140254.jpg,,FALSE, +N1,59017,sortie-30d53143-602f-432b-9bda-2169c8770dc1,https://biolit.fr/sorties/sortie-30d53143-602f-432b-9bda-2169c8770dc1/,Phil,,3/13/2020 0:00,13.0000000,14.000005,47.799075000000,-4.179289000000,,Loctudy - Finistère,37025,observation-30d53143-602f-432b-9bda-2169c8770dc1-2,https://biolit.fr/observations/observation-30d53143-602f-432b-9bda-2169c8770dc1-2/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/20200313_140415.jpg,,TRUE, +N1,59017,sortie-30d53143-602f-432b-9bda-2169c8770dc1,https://biolit.fr/sorties/sortie-30d53143-602f-432b-9bda-2169c8770dc1/,Phil,,3/13/2020 0:00,13.0000000,14.000005,47.799075000000,-4.179289000000,,Loctudy - Finistère,37027,observation-30d53143-602f-432b-9bda-2169c8770dc1-3,https://biolit.fr/observations/observation-30d53143-602f-432b-9bda-2169c8770dc1-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_140440.jpg,,FALSE, +N1,59017,sortie-30d53143-602f-432b-9bda-2169c8770dc1,https://biolit.fr/sorties/sortie-30d53143-602f-432b-9bda-2169c8770dc1/,Phil,,3/13/2020 0:00,13.0000000,14.000005,47.799075000000,-4.179289000000,,Loctudy - Finistère,37029,observation-30d53143-602f-432b-9bda-2169c8770dc1-4,https://biolit.fr/observations/observation-30d53143-602f-432b-9bda-2169c8770dc1-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_140744.jpg,,FALSE, +N1,59017,sortie-30d53143-602f-432b-9bda-2169c8770dc1,https://biolit.fr/sorties/sortie-30d53143-602f-432b-9bda-2169c8770dc1/,Phil,,3/13/2020 0:00,13.0000000,14.000005,47.799075000000,-4.179289000000,,Loctudy - Finistère,37031,observation-30d53143-602f-432b-9bda-2169c8770dc1-5,https://biolit.fr/observations/observation-30d53143-602f-432b-9bda-2169c8770dc1-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_140749.jpg,,FALSE, +N1,59018,sortie-8ac17185-be05-49ee-beda-191086c345f0,https://biolit.fr/sorties/sortie-8ac17185-be05-49ee-beda-191086c345f0/,Phil,,10/22/2020 0:00,13.0:45,13.0000000,47.791938000000,-4.28722600000,,Guilvinec - Finistère,37033,observation-8ac17185-be05-49ee-beda-191086c345f0,https://biolit.fr/observations/observation-8ac17185-be05-49ee-beda-191086c345f0/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/20201022_135200.jpg,,TRUE, +N1,59018,sortie-8ac17185-be05-49ee-beda-191086c345f0,https://biolit.fr/sorties/sortie-8ac17185-be05-49ee-beda-191086c345f0/,Phil,,10/22/2020 0:00,13.0:45,13.0000000,47.791938000000,-4.28722600000,,Guilvinec - Finistère,37035,observation-8ac17185-be05-49ee-beda-191086c345f0-2,https://biolit.fr/observations/observation-8ac17185-be05-49ee-beda-191086c345f0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20201022_135029.jpg,,FALSE, +N1,59018,sortie-8ac17185-be05-49ee-beda-191086c345f0,https://biolit.fr/sorties/sortie-8ac17185-be05-49ee-beda-191086c345f0/,Phil,,10/22/2020 0:00,13.0:45,13.0000000,47.791938000000,-4.28722600000,,Guilvinec - Finistère,37037,observation-8ac17185-be05-49ee-beda-191086c345f0-3,https://biolit.fr/observations/observation-8ac17185-be05-49ee-beda-191086c345f0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20201022_134844.jpg,,FALSE, +N1,59019,sortie-d380185d-ce30-4449-af9c-49e09e90559a,https://biolit.fr/sorties/sortie-d380185d-ce30-4449-af9c-49e09e90559a/,Phil,,7/26/2020 0:00,15.000005,15.0:15,47.800210000000,-4.182001000000,,Loctudy - Finistère,37039,observation-d380185d-ce30-4449-af9c-49e09e90559a,https://biolit.fr/observations/observation-d380185d-ce30-4449-af9c-49e09e90559a/,Rivularia bullata,Rivulaire en forme de bulle,,https://biolit.fr/wp-content/uploads/2023/07/20200726_151346.jpg,,TRUE, +N1,59019,sortie-d380185d-ce30-4449-af9c-49e09e90559a,https://biolit.fr/sorties/sortie-d380185d-ce30-4449-af9c-49e09e90559a/,Phil,,7/26/2020 0:00,15.000005,15.0:15,47.800210000000,-4.182001000000,,Loctudy - Finistère,37041,observation-d380185d-ce30-4449-af9c-49e09e90559a-2,https://biolit.fr/observations/observation-d380185d-ce30-4449-af9c-49e09e90559a-2/,Rivularia bullata,Rivulaire en forme de bulle,,https://biolit.fr/wp-content/uploads/2023/07/20200726_151340.jpg,,TRUE, +N1,59019,sortie-d380185d-ce30-4449-af9c-49e09e90559a,https://biolit.fr/sorties/sortie-d380185d-ce30-4449-af9c-49e09e90559a/,Phil,,7/26/2020 0:00,15.000005,15.0:15,47.800210000000,-4.182001000000,,Loctudy - Finistère,37043,observation-d380185d-ce30-4449-af9c-49e09e90559a-3,https://biolit.fr/observations/observation-d380185d-ce30-4449-af9c-49e09e90559a-3/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200726_151114.jpg,,TRUE, +N1,59019,sortie-d380185d-ce30-4449-af9c-49e09e90559a,https://biolit.fr/sorties/sortie-d380185d-ce30-4449-af9c-49e09e90559a/,Phil,,7/26/2020 0:00,15.000005,15.0:15,47.800210000000,-4.182001000000,,Loctudy - Finistère,37045,observation-d380185d-ce30-4449-af9c-49e09e90559a-4,https://biolit.fr/observations/observation-d380185d-ce30-4449-af9c-49e09e90559a-4/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/20200726_150753.jpg,,TRUE, +N1,59020,sortie-48b9a83b-e9e8-4db2-9af2-42f3dc0db70c,https://biolit.fr/sorties/sortie-48b9a83b-e9e8-4db2-9af2-42f3dc0db70c/,Ville de Marseille,,11/03/2020,16.0000000,16.0000000,43.253292000000,5.374314000000,,"plages du prado, Marseille",37047,observation-48b9a83b-e9e8-4db2-9af2-42f3dc0db70c,https://biolit.fr/observations/observation-48b9a83b-e9e8-4db2-9af2-42f3dc0db70c/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P1130049-scaled.jpg,,TRUE, +N1,59020,sortie-48b9a83b-e9e8-4db2-9af2-42f3dc0db70c,https://biolit.fr/sorties/sortie-48b9a83b-e9e8-4db2-9af2-42f3dc0db70c/,Ville de Marseille,,11/03/2020,16.0000000,16.0000000,43.253292000000,5.374314000000,,"plages du prado, Marseille",37049,observation-48b9a83b-e9e8-4db2-9af2-42f3dc0db70c-2,https://biolit.fr/observations/observation-48b9a83b-e9e8-4db2-9af2-42f3dc0db70c-2/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P1130056-scaled.jpg,,TRUE, +N1,59021,sortie-b4ed499c-52ed-4281-adef-4303a04c6290,https://biolit.fr/sorties/sortie-b4ed499c-52ed-4281-adef-4303a04c6290/,fchecler,,10/17/2020 0:00,12.0000000,17.0000000,43.284618000000,5.313096000000,,Iles du frioul 13007 marseille,37051,observation-b4ed499c-52ed-4281-adef-4303a04c6290,https://biolit.fr/observations/observation-b4ed499c-52ed-4281-adef-4303a04c6290/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20201020_194319-scaled.jpg,,FALSE, +N1,59021,sortie-b4ed499c-52ed-4281-adef-4303a04c6290,https://biolit.fr/sorties/sortie-b4ed499c-52ed-4281-adef-4303a04c6290/,fchecler,,10/17/2020 0:00,12.0000000,17.0000000,43.284618000000,5.313096000000,,Iles du frioul 13007 marseille,37053,observation-b4ed499c-52ed-4281-adef-4303a04c6290-2,https://biolit.fr/observations/observation-b4ed499c-52ed-4281-adef-4303a04c6290-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20201020_194351-scaled.jpg,,FALSE, +N1,59021,sortie-b4ed499c-52ed-4281-adef-4303a04c6290,https://biolit.fr/sorties/sortie-b4ed499c-52ed-4281-adef-4303a04c6290/,fchecler,,10/17/2020 0:00,12.0000000,17.0000000,43.284618000000,5.313096000000,,Iles du frioul 13007 marseille,37055,observation-b4ed499c-52ed-4281-adef-4303a04c6290-3,https://biolit.fr/observations/observation-b4ed499c-52ed-4281-adef-4303a04c6290-3/,Salvia rosmarinus,Romarin,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20201020_194411-scaled.jpg,,TRUE, +N1,59021,sortie-b4ed499c-52ed-4281-adef-4303a04c6290,https://biolit.fr/sorties/sortie-b4ed499c-52ed-4281-adef-4303a04c6290/,fchecler,,10/17/2020 0:00,12.0000000,17.0000000,43.284618000000,5.313096000000,,Iles du frioul 13007 marseille,37057,observation-b4ed499c-52ed-4281-adef-4303a04c6290-4,https://biolit.fr/observations/observation-b4ed499c-52ed-4281-adef-4303a04c6290-4/,Medicago arborea,Luzerne arborescente,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20201020_194427-scaled.jpg,,TRUE, +N1,59021,sortie-b4ed499c-52ed-4281-adef-4303a04c6290,https://biolit.fr/sorties/sortie-b4ed499c-52ed-4281-adef-4303a04c6290/,fchecler,,10/17/2020 0:00,12.0000000,17.0000000,43.284618000000,5.313096000000,,Iles du frioul 13007 marseille,37059,observation-b4ed499c-52ed-4281-adef-4303a04c6290-5,https://biolit.fr/observations/observation-b4ed499c-52ed-4281-adef-4303a04c6290-5/,Reichardia picroides,Cousteline,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20201020_194441-scaled.jpg,,TRUE, +N1,59021,sortie-b4ed499c-52ed-4281-adef-4303a04c6290,https://biolit.fr/sorties/sortie-b4ed499c-52ed-4281-adef-4303a04c6290/,fchecler,,10/17/2020 0:00,12.0000000,17.0000000,43.284618000000,5.313096000000,,Iles du frioul 13007 marseille,37061,observation-b4ed499c-52ed-4281-adef-4303a04c6290-6,https://biolit.fr/observations/observation-b4ed499c-52ed-4281-adef-4303a04c6290-6/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20201020_194634-scaled.jpg,,TRUE, +N1,59021,sortie-b4ed499c-52ed-4281-adef-4303a04c6290,https://biolit.fr/sorties/sortie-b4ed499c-52ed-4281-adef-4303a04c6290/,fchecler,,10/17/2020 0:00,12.0000000,17.0000000,43.284618000000,5.313096000000,,Iles du frioul 13007 marseille,37063,observation-b4ed499c-52ed-4281-adef-4303a04c6290-7,https://biolit.fr/observations/observation-b4ed499c-52ed-4281-adef-4303a04c6290-7/,Larus michahellis,Goéland leucophée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20201020_194936-scaled.jpg,,TRUE, +N1,59021,sortie-b4ed499c-52ed-4281-adef-4303a04c6290,https://biolit.fr/sorties/sortie-b4ed499c-52ed-4281-adef-4303a04c6290/,fchecler,,10/17/2020 0:00,12.0000000,17.0000000,43.284618000000,5.313096000000,,Iles du frioul 13007 marseille,37065,observation-b4ed499c-52ed-4281-adef-4303a04c6290-8,https://biolit.fr/observations/observation-b4ed499c-52ed-4281-adef-4303a04c6290-8/,Pistacia lentiscus,Pistachier lentisque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20201020_195056-scaled.jpg,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37069,observation-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37071,observation-e240f695-81d4-466f-82de-a51c839be202-2,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea_1.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37073,observation-e240f695-81d4-466f-82de-a51c839be202-3,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-3/,Actinia striata,Actinie striée,,https://biolit.fr/wp-content/uploads/2023/07/Actinia striatula.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37075,observation-e240f695-81d4-466f-82de-a51c839be202-4,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-4/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/anémone sp_1.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37077,observation-e240f695-81d4-466f-82de-a51c839be202-5,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-5/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/Anthopleura balii_0.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37078,observation-e240f695-81d4-466f-82de-a51c839be202-6,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-6/,Anthus petrosus,Pipit maritime,,https://biolit.fr/wp-content/uploads/2023/07/Antus petrosus.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37080,observation-e240f695-81d4-466f-82de-a51c839be202-7,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-7/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_5.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37082,observation-e240f695-81d4-466f-82de-a51c839be202-8,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-8/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_1.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37084,observation-e240f695-81d4-466f-82de-a51c839be202-9,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/aucune idée mais petricola lithophaga.PNG,,FALSE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37086,observation-e240f695-81d4-466f-82de-a51c839be202-10,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-10/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/Aulactinia verrucosa_1.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37088,observation-e240f695-81d4-466f-82de-a51c839be202-11,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-11/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_0.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37090,observation-e240f695-81d4-466f-82de-a51c839be202-12,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-12/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_2.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37092,observation-e240f695-81d4-466f-82de-a51c839be202-13,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-13/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_1.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37094,observation-e240f695-81d4-466f-82de-a51c839be202-14,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-14/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_2.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37096,observation-e240f695-81d4-466f-82de-a51c839be202-15,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-15/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/haliotis tuberculata_1.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37097,observation-e240f695-81d4-466f-82de-a51c839be202-16,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-16/,Idotea balthica,Idotée de la Baltique,,https://biolit.fr/wp-content/uploads/2023/07/Idotea sp.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37099,observation-e240f695-81d4-466f-82de-a51c839be202-17,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/laminaria sp-scaled.jpg,,FALSE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37101,observation-e240f695-81d4-466f-82de-a51c839be202-19,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-19/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Liocarcinus sp_0.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37103,observation-e240f695-81d4-466f-82de-a51c839be202-20,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-20/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_3.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37105,observation-e240f695-81d4-466f-82de-a51c839be202-21,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-21/,Metridium senile,Œillet de mer,,https://biolit.fr/wp-content/uploads/2023/07/metridium sp.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37106,observation-e240f695-81d4-466f-82de-a51c839be202-22,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-22/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_4.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37108,observation-e240f695-81d4-466f-82de-a51c839be202-23,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-23/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_4.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37110,observation-e240f695-81d4-466f-82de-a51c839be202-24,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-24/,Nerophis ophidion,Nérophis ophidion,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis ophidion_1.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37112,observation-e240f695-81d4-466f-82de-a51c839be202-25,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-25/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus avec ponte.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37114,observation-e240f695-81d4-466f-82de-a51c839be202-26,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-26/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Paracentrotus lividus_2.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37116,observation-e240f695-81d4-466f-82de-a51c839be202-27,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-27/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_2.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37118,observation-e240f695-81d4-466f-82de-a51c839be202-28,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-28/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Sagartia sp_0.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37120,observation-e240f695-81d4-466f-82de-a51c839be202-29,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-29/,Tectura virginea,Acmée à damier rose,,https://biolit.fr/wp-content/uploads/2023/07/Tectura virginea_0.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37122,observation-e240f695-81d4-466f-82de-a51c839be202-30,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-30/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa_1.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37124,observation-e240f695-81d4-466f-82de-a51c839be202-31,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ver sp-scaled.jpg,,FALSE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37125,observation-e240f695-81d4-466f-82de-a51c839be202-32,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-32/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_3.PNG,,TRUE, +N1,59022,sortie-e240f695-81d4-466f-82de-a51c839be202,https://biolit.fr/sorties/sortie-e240f695-81d4-466f-82de-a51c839be202/,Roman,,10/19/2020 0:00,12.0000000,14.0000000,47.68469300000,-3.360385000000,,Gâvres,37127,observation-e240f695-81d4-466f-82de-a51c839be202-33,https://biolit.fr/observations/observation-e240f695-81d4-466f-82de-a51c839be202-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/xantho sp.PNG,,FALSE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37129,observation-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e/,Chondria coerulescens,Chondria bleue,,https://biolit.fr/wp-content/uploads/2023/07/algue bleue.PNG,,TRUE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37131,observation-7896520f-e1ae-4f78-825f-d6883172d64e-2,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/anémone pe metridium.PNG,,FALSE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37133,observation-7896520f-e1ae-4f78-825f-d6883172d64e-3,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_1.PNG,,TRUE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37137,observation-7896520f-e1ae-4f78-825f-d6883172d64e-5,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie sp_2.PNG,,FALSE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37138,observation-7896520f-e1ae-4f78-825f-d6883172d64e-6,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-6/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_0.PNG,,TRUE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37140,observation-7896520f-e1ae-4f78-825f-d6883172d64e-7,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-7/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_4.PNG,,TRUE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37142,observation-7896520f-e1ae-4f78-825f-d6883172d64e-8,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge pe.PNG,,FALSE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37144,observation-7896520f-e1ae-4f78-825f-d6883172d64e-9,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 1.PNG,,FALSE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37146,observation-7896520f-e1ae-4f78-825f-d6883172d64e-10,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 2_1.PNG,,FALSE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37148,observation-7896520f-e1ae-4f78-825f-d6883172d64e-11,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_4.PNG,,FALSE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37150,observation-7896520f-e1ae-4f78-825f-d6883172d64e-12,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-12/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/Galatea squamifera.PNG,,TRUE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37154,observation-7896520f-e1ae-4f78-825f-d6883172d64e-14,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-14/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/Haliotis tuberculata_0.PNG,,TRUE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37156,observation-7896520f-e1ae-4f78-825f-d6883172d64e-15,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Heteranomia squamula.PNG,,FALSE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37160,observation-7896520f-e1ae-4f78-825f-d6883172d64e-17,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-17/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_2.PNG,,TRUE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37162,observation-7896520f-e1ae-4f78-825f-d6883172d64e-18,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/méduse_0.jpg,,FALSE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37165,observation-7896520f-e1ae-4f78-825f-d6883172d64e-20,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-20/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_3.PNG,,TRUE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37167,observation-7896520f-e1ae-4f78-825f-d6883172d64e-21,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-21/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis ophidion_0.PNG,,TRUE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37169,observation-7896520f-e1ae-4f78-825f-d6883172d64e-22,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-22/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/ophiure sp_0.PNG,,TRUE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37171,observation-7896520f-e1ae-4f78-825f-d6883172d64e-23,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-23/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/phorcus lineatus et cereus pedunculatus.PNG,,TRUE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37173,observation-7896520f-e1ae-4f78-825f-d6883172d64e-24,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-24/,Pilumnus hirtellus,Pilumne hirsute,,https://biolit.fr/wp-content/uploads/2023/07/Pilemnus hirtellus.PNG,,TRUE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37175,observation-7896520f-e1ae-4f78-825f-d6883172d64e-25,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-25/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/Pisidia longicornis_0.PNG,,TRUE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37177,observation-7896520f-e1ae-4f78-825f-d6883172d64e-26,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/Poisson sp.PNG,,FALSE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37178,observation-7896520f-e1ae-4f78-825f-d6883172d64e-27,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-27/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platy et athanas nitescens.PNG,,TRUE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37180,observation-7896520f-e1ae-4f78-825f-d6883172d64e-28,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-28/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_3.PNG,,TRUE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37182,observation-7896520f-e1ae-4f78-825f-d6883172d64e-29,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-29/,Tectura virginea,Acmée à damier rose,,https://biolit.fr/wp-content/uploads/2023/07/tectura virginea.PNG,,TRUE, +N1,59023,sortie-7896520f-e1ae-4f78-825f-d6883172d64e,https://biolit.fr/sorties/sortie-7896520f-e1ae-4f78-825f-d6883172d64e/,Roman,,10/18/2020 0:00,12.0:45,13.0000000,47.703791000000,-3.349238000000,,Port-Louis,37187,observation-7896520f-e1ae-4f78-825f-d6883172d64e-32,https://biolit.fr/observations/observation-7896520f-e1ae-4f78-825f-d6883172d64e-32/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/Zostera marina.PNG,,TRUE, +N1,59024,sortie-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747,https://biolit.fr/sorties/sortie-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747/,fchecler,,10/19/2020 0:00,12.0000000,14.0000000,43.214985000000,5.3429540000,,"Anse de la maronaise, Marseille 13008",37189,observation-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747,https://biolit.fr/observations/observation-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747/,Corvus corone,Corneille noire,,https://biolit.fr/wp-content/uploads/2023/07/169A4948-scaled.jpg,,TRUE, +N1,59024,sortie-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747,https://biolit.fr/sorties/sortie-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747/,fchecler,,10/19/2020 0:00,12.0000000,14.0000000,43.214985000000,5.3429540000,,"Anse de la maronaise, Marseille 13008",37191,observation-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747-2,https://biolit.fr/observations/observation-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747-2/,Salvia rosmarinus,Romarin,,https://biolit.fr/wp-content/uploads/2023/07/169A4955-scaled.jpg,,TRUE, +N1,59024,sortie-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747,https://biolit.fr/sorties/sortie-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747/,fchecler,,10/19/2020 0:00,12.0000000,14.0000000,43.214985000000,5.3429540000,,"Anse de la maronaise, Marseille 13008",37193,observation-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747-3,https://biolit.fr/observations/observation-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747-3/,Agave americana,Agave d'Amérique,,https://biolit.fr/wp-content/uploads/2023/07/169A4967-scaled.jpg,,TRUE, +N1,59024,sortie-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747,https://biolit.fr/sorties/sortie-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747/,fchecler,,10/19/2020 0:00,12.0000000,14.0000000,43.214985000000,5.3429540000,,"Anse de la maronaise, Marseille 13008",37195,observation-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747-4,https://biolit.fr/observations/observation-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747-4/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/169A4969-scaled.jpg,,TRUE, +N1,59024,sortie-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747,https://biolit.fr/sorties/sortie-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747/,fchecler,,10/19/2020 0:00,12.0000000,14.0000000,43.214985000000,5.3429540000,,"Anse de la maronaise, Marseille 13008",37197,observation-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747-5,https://biolit.fr/observations/observation-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747-5/,Alcedo atthis,Martin-pêcheur d'Europe,,https://biolit.fr/wp-content/uploads/2023/07/169A4979.JPG,,TRUE, +N1,59024,sortie-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747,https://biolit.fr/sorties/sortie-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747/,fchecler,,10/19/2020 0:00,12.0000000,14.0000000,43.214985000000,5.3429540000,,"Anse de la maronaise, Marseille 13008",37199,observation-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747-6,https://biolit.fr/observations/observation-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747-6/,Alcedo atthis,Martin-pêcheur d'Europe,,https://biolit.fr/wp-content/uploads/2023/07/169A4981.JPG,,TRUE, +N1,59024,sortie-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747,https://biolit.fr/sorties/sortie-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747/,fchecler,,10/19/2020 0:00,12.0000000,14.0000000,43.214985000000,5.3429540000,,"Anse de la maronaise, Marseille 13008",37201,observation-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747-7,https://biolit.fr/observations/observation-56ce3cbc-f39f-4d5d-b5ab-f6f442beb747-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/169A4992-scaled.jpg,,FALSE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37205,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-2,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea_0.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37207,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-3,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-3/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia sp 1.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37209,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-4,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Actinia sp.PNG,,FALSE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37211,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-5,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-5/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_0.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37213,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-6,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie sp.PNG,,FALSE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37215,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-7,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-7/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/asterina gibbosa_3.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37216,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-8,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-8/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37218,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-9,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-9/,Terpios gelatinosus,Eponge encroûtante bleue,,https://biolit.fr/wp-content/uploads/2023/07/éponge bleue.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37220,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-10,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-10/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/2023/07/Fort échouage de laminaria sp.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37222,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-11,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-11/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/Gobie sp_0.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37224,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-12,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-12/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_3.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37228,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-14,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-14/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_2.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37230,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-15,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-15/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/Pagurus sp.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37232,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-16,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-16/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Paracentrotus lividus_1.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37234,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-17,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-17/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Patella caerulea pe.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37236,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-18,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-18/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Patella ulyssiponensis_0.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37238,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-19,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-19/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus_0.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37240,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-20,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-20/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_1.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37242,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-21,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-21/,Sphaeromatidae (famille),Sphéromiens,,https://biolit.fr/wp-content/uploads/2023/07/Sphaeromatidae.PNG,,TRUE, +N1,59025,sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4,https://biolit.fr/sorties/sortie-a5fd3467-a2e3-4be2-890f-ca86c94146b4/,Roman,,10/10/2020,16.0:45,18.0000000,47.685415000000,-3.360600000000,,Gâvres,37244,observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-22,https://biolit.fr/observations/observation-a5fd3467-a2e3-4be2-890f-ca86c94146b4-22/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_1.PNG,,TRUE, +N1,59026,sortie-00dabd16-6719-41c0-badf-b95c2e077665,https://biolit.fr/sorties/sortie-00dabd16-6719-41c0-badf-b95c2e077665/,Roman,,10/10/2020,15.0000000,16.0000000,47.68955200000,-3.352215000000,,Gâvres,37246,observation-00dabd16-6719-41c0-badf-b95c2e077665,https://biolit.fr/observations/observation-00dabd16-6719-41c0-badf-b95c2e077665/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea.PNG,,TRUE, +N1,59026,sortie-00dabd16-6719-41c0-badf-b95c2e077665,https://biolit.fr/sorties/sortie-00dabd16-6719-41c0-badf-b95c2e077665/,Roman,,10/10/2020,15.0000000,16.0000000,47.68955200000,-3.352215000000,,Gâvres,37248,observation-00dabd16-6719-41c0-badf-b95c2e077665-2,https://biolit.fr/observations/observation-00dabd16-6719-41c0-badf-b95c2e077665-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis.jpg,,TRUE, +N1,59026,sortie-00dabd16-6719-41c0-badf-b95c2e077665,https://biolit.fr/sorties/sortie-00dabd16-6719-41c0-badf-b95c2e077665/,Roman,,10/10/2020,15.0000000,16.0000000,47.68955200000,-3.352215000000,,Gâvres,37249,observation-00dabd16-6719-41c0-badf-b95c2e077665-3,https://biolit.fr/observations/observation-00dabd16-6719-41c0-badf-b95c2e077665-3/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/Ardea cinerea.PNG,,TRUE, +N1,59026,sortie-00dabd16-6719-41c0-badf-b95c2e077665,https://biolit.fr/sorties/sortie-00dabd16-6719-41c0-badf-b95c2e077665/,Roman,,10/10/2020,15.0000000,16.0000000,47.68955200000,-3.352215000000,,Gâvres,37251,observation-00dabd16-6719-41c0-badf-b95c2e077665-4,https://biolit.fr/observations/observation-00dabd16-6719-41c0-badf-b95c2e077665-4/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/Aulactinia verrucosa_0.PNG,,TRUE, +N1,59026,sortie-00dabd16-6719-41c0-badf-b95c2e077665,https://biolit.fr/sorties/sortie-00dabd16-6719-41c0-badf-b95c2e077665/,Roman,,10/10/2020,15.0000000,16.0000000,47.68955200000,-3.352215000000,,Gâvres,37253,observation-00dabd16-6719-41c0-badf-b95c2e077665-5,https://biolit.fr/observations/observation-00dabd16-6719-41c0-badf-b95c2e077665-5/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_1.PNG,,TRUE, +N1,59026,sortie-00dabd16-6719-41c0-badf-b95c2e077665,https://biolit.fr/sorties/sortie-00dabd16-6719-41c0-badf-b95c2e077665/,Roman,,10/10/2020,15.0000000,16.0000000,47.68955200000,-3.352215000000,,Gâvres,37255,observation-00dabd16-6719-41c0-badf-b95c2e077665-6,https://biolit.fr/observations/observation-00dabd16-6719-41c0-badf-b95c2e077665-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Clavelina pe.PNG,,FALSE, +N1,59026,sortie-00dabd16-6719-41c0-badf-b95c2e077665,https://biolit.fr/sorties/sortie-00dabd16-6719-41c0-badf-b95c2e077665/,Roman,,10/10/2020,15.0000000,16.0000000,47.68955200000,-3.352215000000,,Gâvres,37257,observation-00dabd16-6719-41c0-badf-b95c2e077665-7,https://biolit.fr/observations/observation-00dabd16-6719-41c0-badf-b95c2e077665-7/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Gibbula cinerea.PNG,,TRUE, +N1,59026,sortie-00dabd16-6719-41c0-badf-b95c2e077665,https://biolit.fr/sorties/sortie-00dabd16-6719-41c0-badf-b95c2e077665/,Roman,,10/10/2020,15.0000000,16.0000000,47.68955200000,-3.352215000000,,Gâvres,37259,observation-00dabd16-6719-41c0-badf-b95c2e077665-8,https://biolit.fr/observations/observation-00dabd16-6719-41c0-badf-b95c2e077665-8/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/Haliotis tuberculata.PNG,,TRUE, +N1,59026,sortie-00dabd16-6719-41c0-badf-b95c2e077665,https://biolit.fr/sorties/sortie-00dabd16-6719-41c0-badf-b95c2e077665/,Roman,,10/10/2020,15.0000000,16.0000000,47.68955200000,-3.352215000000,,Gâvres,37261,observation-00dabd16-6719-41c0-badf-b95c2e077665-9,https://biolit.fr/observations/observation-00dabd16-6719-41c0-badf-b95c2e077665-9/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/mytilus edulis_2.PNG,,TRUE, +N1,59026,sortie-00dabd16-6719-41c0-badf-b95c2e077665,https://biolit.fr/sorties/sortie-00dabd16-6719-41c0-badf-b95c2e077665/,Roman,,10/10/2020,15.0000000,16.0000000,47.68955200000,-3.352215000000,,Gâvres,37262,observation-00dabd16-6719-41c0-badf-b95c2e077665-10,https://biolit.fr/observations/observation-00dabd16-6719-41c0-badf-b95c2e077665-10/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_1.PNG,,TRUE, +N1,59026,sortie-00dabd16-6719-41c0-badf-b95c2e077665,https://biolit.fr/sorties/sortie-00dabd16-6719-41c0-badf-b95c2e077665/,Roman,,10/10/2020,15.0000000,16.0000000,47.68955200000,-3.352215000000,,Gâvres,37264,observation-00dabd16-6719-41c0-badf-b95c2e077665-11,https://biolit.fr/observations/observation-00dabd16-6719-41c0-badf-b95c2e077665-11/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus.jpg,,TRUE, +N1,59026,sortie-00dabd16-6719-41c0-badf-b95c2e077665,https://biolit.fr/sorties/sortie-00dabd16-6719-41c0-badf-b95c2e077665/,Roman,,10/10/2020,15.0000000,16.0000000,47.68955200000,-3.352215000000,,Gâvres,37265,observation-00dabd16-6719-41c0-badf-b95c2e077665-12,https://biolit.fr/observations/observation-00dabd16-6719-41c0-badf-b95c2e077665-12/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Paracentrotus lividus_0.PNG,,TRUE, +N1,59026,sortie-00dabd16-6719-41c0-badf-b95c2e077665,https://biolit.fr/sorties/sortie-00dabd16-6719-41c0-badf-b95c2e077665/,Roman,,10/10/2020,15.0000000,16.0000000,47.68955200000,-3.352215000000,,Gâvres,37267,observation-00dabd16-6719-41c0-badf-b95c2e077665-13,https://biolit.fr/observations/observation-00dabd16-6719-41c0-badf-b95c2e077665-13/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Patella ulyssiponensis.PNG,,TRUE, +N1,59026,sortie-00dabd16-6719-41c0-badf-b95c2e077665,https://biolit.fr/sorties/sortie-00dabd16-6719-41c0-badf-b95c2e077665/,Roman,,10/10/2020,15.0000000,16.0000000,47.68955200000,-3.352215000000,,Gâvres,37269,observation-00dabd16-6719-41c0-badf-b95c2e077665-14,https://biolit.fr/observations/observation-00dabd16-6719-41c0-badf-b95c2e077665-14/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus-scaled.jpg,,TRUE, +N1,59026,sortie-00dabd16-6719-41c0-badf-b95c2e077665,https://biolit.fr/sorties/sortie-00dabd16-6719-41c0-badf-b95c2e077665/,Roman,,10/10/2020,15.0000000,16.0000000,47.68955200000,-3.352215000000,,Gâvres,37270,observation-00dabd16-6719-41c0-badf-b95c2e077665-15,https://biolit.fr/observations/observation-00dabd16-6719-41c0-badf-b95c2e077665-15/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_2.PNG,,TRUE, +N1,59027,sortie-487aa213-b88e-4944-a9b4-3a8cf1046053,https://biolit.fr/sorties/sortie-487aa213-b88e-4944-a9b4-3a8cf1046053/,Associu Mare Vivu,,7/25/2020 0:00,17.0000000,18.0000000,42.57594700000,8.723827000000,,Plage d'oscelluccia,37272,observation-487aa213-b88e-4944-a9b4-3a8cf1046053,https://biolit.fr/observations/observation-487aa213-b88e-4944-a9b4-3a8cf1046053/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_7724-scaled.jpg,,TRUE, +N1,59027,sortie-487aa213-b88e-4944-a9b4-3a8cf1046053,https://biolit.fr/sorties/sortie-487aa213-b88e-4944-a9b4-3a8cf1046053/,Associu Mare Vivu,,7/25/2020 0:00,17.0000000,18.0000000,42.57594700000,8.723827000000,,Plage d'oscelluccia,37274,observation-487aa213-b88e-4944-a9b4-3a8cf1046053-2,https://biolit.fr/observations/observation-487aa213-b88e-4944-a9b4-3a8cf1046053-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC_7722-scaled.jpg,,TRUE, +N1,59028,sortie-b74ce074-36bd-40ce-86cc-90538af0089b,https://biolit.fr/sorties/sortie-b74ce074-36bd-40ce-86cc-90538af0089b/,Caterina Casagranda,,8/28/2020 0:00,16.0000000,17.0000000,43.240887000000,5.362030000000,,Platier de la Batterie de Montredon à Marseille,37276,observation-b74ce074-36bd-40ce-86cc-90538af0089b,https://biolit.fr/observations/observation-b74ce074-36bd-40ce-86cc-90538af0089b/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algues filamenteuses3.jpg,,FALSE, +N1,59028,sortie-b74ce074-36bd-40ce-86cc-90538af0089b,https://biolit.fr/sorties/sortie-b74ce074-36bd-40ce-86cc-90538af0089b/,Caterina Casagranda,,8/28/2020 0:00,16.0000000,17.0000000,43.240887000000,5.362030000000,,Platier de la Batterie de Montredon à Marseille,37278,observation-b74ce074-36bd-40ce-86cc-90538af0089b-2,https://biolit.fr/observations/observation-b74ce074-36bd-40ce-86cc-90538af0089b-2/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/Balanes4.jpg,,TRUE, +N1,59028,sortie-b74ce074-36bd-40ce-86cc-90538af0089b,https://biolit.fr/sorties/sortie-b74ce074-36bd-40ce-86cc-90538af0089b/,Caterina Casagranda,,8/28/2020 0:00,16.0000000,17.0000000,43.240887000000,5.362030000000,,Platier de la Batterie de Montredon à Marseille,37280,observation-b74ce074-36bd-40ce-86cc-90538af0089b-3,https://biolit.fr/observations/observation-b74ce074-36bd-40ce-86cc-90538af0089b-3/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/Gibbules-scaled.jpg,,TRUE, +N1,59028,sortie-b74ce074-36bd-40ce-86cc-90538af0089b,https://biolit.fr/sorties/sortie-b74ce074-36bd-40ce-86cc-90538af0089b/,Caterina Casagranda,,8/28/2020 0:00,16.0000000,17.0000000,43.240887000000,5.362030000000,,Platier de la Batterie de Montredon à Marseille,37282,observation-b74ce074-36bd-40ce-86cc-90538af0089b-4,https://biolit.fr/observations/observation-b74ce074-36bd-40ce-86cc-90538af0089b-4/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/Mini Littorines2-scaled.jpg,,TRUE, +N1,59028,sortie-b74ce074-36bd-40ce-86cc-90538af0089b,https://biolit.fr/sorties/sortie-b74ce074-36bd-40ce-86cc-90538af0089b/,Caterina Casagranda,,8/28/2020 0:00,16.0000000,17.0000000,43.240887000000,5.362030000000,,Platier de la Batterie de Montredon à Marseille,37284,observation-b74ce074-36bd-40ce-86cc-90538af0089b-5,https://biolit.fr/observations/observation-b74ce074-36bd-40ce-86cc-90538af0089b-5/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/Oeil de Sainte Lucie.jpg,,TRUE, +N1,59028,sortie-b74ce074-36bd-40ce-86cc-90538af0089b,https://biolit.fr/sorties/sortie-b74ce074-36bd-40ce-86cc-90538af0089b/,Caterina Casagranda,,8/28/2020 0:00,16.0000000,17.0000000,43.240887000000,5.362030000000,,Platier de la Batterie de Montredon à Marseille,37286,observation-b74ce074-36bd-40ce-86cc-90538af0089b-6,https://biolit.fr/observations/observation-b74ce074-36bd-40ce-86cc-90538af0089b-6/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/Padines-scaled.jpg,,TRUE, +N1,59028,sortie-b74ce074-36bd-40ce-86cc-90538af0089b,https://biolit.fr/sorties/sortie-b74ce074-36bd-40ce-86cc-90538af0089b/,Caterina Casagranda,,8/28/2020 0:00,16.0000000,17.0000000,43.240887000000,5.362030000000,,Platier de la Batterie de Montredon à Marseille,37288,observation-b74ce074-36bd-40ce-86cc-90538af0089b-7,https://biolit.fr/observations/observation-b74ce074-36bd-40ce-86cc-90538af0089b-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelles4.jpg,,FALSE, +N1,59029,sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d,https://biolit.fr/sorties/sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d/,Guillaume Rinaldi,,9/30/2020 0:00,9.0000000,11.0000000,43.235903000000,5.359923000000,,Plage de la bonne brise ,37290,observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d,https://biolit.fr/observations/observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/117707464_456751101922934_2231301511349070754_n.jpg,,TRUE, +N1,59029,sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d,https://biolit.fr/sorties/sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d/,Guillaume Rinaldi,,9/30/2020 0:00,9.0000000,11.0000000,43.235903000000,5.359923000000,,Plage de la bonne brise ,37292,observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-2,https://biolit.fr/observations/observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-2/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/120344838_3636751869691837_1512371242321924422_n.jpg,,TRUE, +N1,59029,sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d,https://biolit.fr/sorties/sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d/,Guillaume Rinaldi,,9/30/2020 0:00,9.0000000,11.0000000,43.235903000000,5.359923000000,,Plage de la bonne brise ,37294,observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-3,https://biolit.fr/observations/observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/120391806_1462586300617534_6343817534726219243_n.jpg,,FALSE, +N1,59029,sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d,https://biolit.fr/sorties/sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d/,Guillaume Rinaldi,,9/30/2020 0:00,9.0000000,11.0000000,43.235903000000,5.359923000000,,Plage de la bonne brise ,37296,observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-4,https://biolit.fr/observations/observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/120461190_2786502508260169_5140468733552265046_n.jpg,,FALSE, +N1,59029,sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d,https://biolit.fr/sorties/sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d/,Guillaume Rinaldi,,9/30/2020 0:00,9.0000000,11.0000000,43.235903000000,5.359923000000,,Plage de la bonne brise ,37298,observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-5,https://biolit.fr/observations/observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/120508527_674609649851051_7688345427288328098_n.jpg,,FALSE, +N1,59029,sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d,https://biolit.fr/sorties/sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d/,Guillaume Rinaldi,,9/30/2020 0:00,9.0000000,11.0000000,43.235903000000,5.359923000000,,Plage de la bonne brise ,37300,observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-6,https://biolit.fr/observations/observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/120509454_3596588467038810_2058762975312796346_n.jpg,,FALSE, +N1,59029,sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d,https://biolit.fr/sorties/sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d/,Guillaume Rinaldi,,9/30/2020 0:00,9.0000000,11.0000000,43.235903000000,5.359923000000,,Plage de la bonne brise ,37302,observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-7,https://biolit.fr/observations/observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-7/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/120517241_659961921621500_6935626057980417151_n.jpg,,TRUE, +N1,59029,sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d,https://biolit.fr/sorties/sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d/,Guillaume Rinaldi,,9/30/2020 0:00,9.0000000,11.0000000,43.235903000000,5.359923000000,,Plage de la bonne brise ,37304,observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-8,https://biolit.fr/observations/observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/120562035_663516244275823_1692114345220822271_n.jpg,,FALSE, +N1,59029,sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d,https://biolit.fr/sorties/sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d/,Guillaume Rinaldi,,9/30/2020 0:00,9.0000000,11.0000000,43.235903000000,5.359923000000,,Plage de la bonne brise ,37306,observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-9,https://biolit.fr/observations/observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/120583646_984850175363696_6938570027173955154_n.jpg,,FALSE, +N1,59029,sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d,https://biolit.fr/sorties/sortie-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d/,Guillaume Rinaldi,,9/30/2020 0:00,9.0000000,11.0000000,43.235903000000,5.359923000000,,Plage de la bonne brise ,37308,observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-10,https://biolit.fr/observations/observation-7b19e345-1b32-44d5-b3ef-e5ec36bcdd4d-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/120597455_1113020122446162_8015756005964514008_n.jpg,,FALSE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37310,observation-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc/,,,,https://biolit.fr/wp-content/uploads/2023/07/Acanthocardia paucicostata.PNG,,FALSE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37312,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-2,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue rouge sp.PNG,,FALSE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37314,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-3,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-3/,Antalis vulgaris,Dentale,,https://biolit.fr/wp-content/uploads/2023/07/Antalis novemcostatum.PNG,,TRUE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37318,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-5,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Arcopagia crassa_0.PNG,,FALSE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37320,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-6,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capsella variegata_0.PNG,,FALSE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37322,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-7,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_0.PNG,,FALSE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37324,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-8,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Chlamys varia_1.PNG,,FALSE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37326,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-9,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Diodora graeca_0.PNG,,FALSE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37328,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-10,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Donax vittatus_0.PNG,,FALSE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37332,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-12,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gari depressa_2.PNG,,FALSE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37334,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-13,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gari fervensis.PNG,,FALSE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37336,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-14,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Laevicardium crassa.PNG,,FALSE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37338,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-15,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Limaria tuberculata.PNG,,FALSE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37342,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-17,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-17/,Mactra glauca,Mactre fauve,,https://biolit.fr/wp-content/uploads/2023/07/Mactra glauca.PNG,,TRUE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37344,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-18,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-18/,Pholas dactylus,Pholade,,https://biolit.fr/wp-content/uploads/2023/07/Pholas dactylus.PNG,,TRUE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37346,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-19,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/Spisula subtruncata.PNG,,FALSE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37348,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-20,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Striacta lactea.PNG,,FALSE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37350,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-21,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/Tellina donacina.PNG,,FALSE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37352,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-22,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-22/,Trivia arctica,Grain de café rose,,https://biolit.fr/wp-content/uploads/2023/07/Trivia arctica.PNG,,TRUE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37354,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-23,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-23/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/Trivia monacha.PNG,,TRUE, +N1,59030,sortie-8da2689b-4c7f-4f63-bac9-580b58062edc,https://biolit.fr/sorties/sortie-8da2689b-4c7f-4f63-bac9-580b58062edc/,Roman,,9/27/2020 0:00,14.0:45,17.0000000,47.694327000000,-3.349377000000,,Gâvres,37356,observation-8da2689b-4c7f-4f63-bac9-580b58062edc-24,https://biolit.fr/observations/observation-8da2689b-4c7f-4f63-bac9-580b58062edc-24/,Turritellinella tricarinata,Turritelle commune,,https://biolit.fr/wp-content/uploads/2023/07/Turitella communis.PNG,,TRUE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37358,observation-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_0.PNG,,TRUE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37360,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-2,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie sp_1.PNG,,FALSE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37361,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-3,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-3/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens-scaled.jpg,,TRUE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37362,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-4,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-4/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_2.PNG,,TRUE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37364,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-5,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-5/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_0.PNG,,TRUE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37366,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-6,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-6/,Botrylloides spp. (leachii violaceus diegensis),Botrylles,,https://biolit.fr/wp-content/uploads/2023/07/Botrylloides spp.PNG,,TRUE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37368,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-7,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_0-scaled.jpg,,FALSE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37372,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-10,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_3.PNG,,FALSE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37374,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-11,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp1_0.PNG,,FALSE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37376,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-12,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gari depressa_1.PNG,,FALSE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37378,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-13,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-13/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/Gobie sp.PNG,,TRUE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37380,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-14,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-14/,Macropodia rostrata,Macropode rostré,,https://biolit.fr/wp-content/uploads/2023/07/Macropoda sp.PNG,,TRUE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37381,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-15,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-15/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_1.PNG,,TRUE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37383,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-16,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-16/,Nerophis ophidion,Nérophis ophidion,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis ophidion.PNG,,TRUE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37385,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-17,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-17/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/pagurus bernhardus_1.PNG,,TRUE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37387,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-18,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-18/,Scrobicularia plana,Scrobiculaire,,https://biolit.fr/wp-content/uploads/2023/07/Politapes rhomboides.PNG,,TRUE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37389,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-19,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-19/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_1.PNG,,TRUE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37391,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-20,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-20/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_0.PNG,,TRUE, +N1,59031,sortie-9785e397-2e08-44ba-9c91-4ab7305e761e,https://biolit.fr/sorties/sortie-9785e397-2e08-44ba-9c91-4ab7305e761e/,Roman,,9/19/2020 0:00,14.0:15,15.0:15,47.70234800000,-3.315640000000,,Riantec,37393,observation-9785e397-2e08-44ba-9c91-4ab7305e761e-21,https://biolit.fr/observations/observation-9785e397-2e08-44ba-9c91-4ab7305e761e-21/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_2.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37395,observation-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674/,,,,https://biolit.fr/wp-content/uploads/2023/07/Alcyonidium spp.PNG,,FALSE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37399,observation-aaa65334-6180-4f4c-8936-415d72452674-3,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-3/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/anthopleura balii.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37400,observation-aaa65334-6180-4f4c-8936-415d72452674-4,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-4/,Aplidium elegans,Fraise de mer,,https://biolit.fr/wp-content/uploads/2023/07/Aplidium elegans.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37402,observation-aaa65334-6180-4f4c-8936-415d72452674-5,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie sp_0.PNG,,FALSE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37403,observation-aaa65334-6180-4f4c-8936-415d72452674-6,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/ascidie sp1.PNG,,FALSE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37405,observation-aaa65334-6180-4f4c-8936-415d72452674-7,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-7/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_1-scaled.jpg,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37406,observation-aaa65334-6180-4f4c-8936-415d72452674-8,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-8/,Atelecyclus undecimdentatus,Grand crabe circulaire,,https://biolit.fr/wp-content/uploads/2023/07/Atelecyclus undecimdentatus.jpg,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37407,observation-aaa65334-6180-4f4c-8936-415d72452674-9,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-9/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_0.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37408,observation-aaa65334-6180-4f4c-8936-415d72452674-10,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-10/,Tubulipora plumosa,Tubulipore plumeux,,https://biolit.fr/wp-content/uploads/2023/07/bryozoaire sp.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37410,observation-aaa65334-6180-4f4c-8936-415d72452674-11,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-11/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/2023/07/Calliactis parasitica.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37412,observation-aaa65334-6180-4f4c-8936-415d72452674-12,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-12/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_1.jpg,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37413,observation-aaa65334-6180-4f4c-8936-415d72452674-13,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-13/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/Colpomenia.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37415,observation-aaa65334-6180-4f4c-8936-415d72452674-14,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/concombre adhésif.PNG,,FALSE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37417,observation-aaa65334-6180-4f4c-8936-415d72452674-15,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-15/,Corynactis viridis,Anémone-bijou,,https://biolit.fr/wp-content/uploads/2023/07/Corynactis viridis.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37419,observation-aaa65334-6180-4f4c-8936-415d72452674-16,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-16/,Doris verrucosa,Doris verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/Doris verrucosa_0.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37421,observation-aaa65334-6180-4f4c-8936-415d72452674-17,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-17/,Dosinia exoleta,Dosinie radiée,,https://biolit.fr/wp-content/uploads/2023/07/Dosinia exoleta_0.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37423,observation-aaa65334-6180-4f4c-8936-415d72452674-18,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_2.PNG,,FALSE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37425,observation-aaa65334-6180-4f4c-8936-415d72452674-19,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-19/,Terpios gelatinosus,Eponge encroûtante bleue,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp1.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37427,observation-aaa65334-6180-4f4c-8936-415d72452674-20,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp2.PNG,,FALSE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37429,observation-aaa65334-6180-4f4c-8936-415d72452674-21,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp3.PNG,,FALSE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37431,observation-aaa65334-6180-4f4c-8936-415d72452674-22,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp4.PNG,,FALSE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37433,observation-aaa65334-6180-4f4c-8936-415d72452674-23,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-23/,Gari depressa,Psammobie déprimée,,https://biolit.fr/wp-content/uploads/2023/07/Gari depressa_0.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37435,observation-aaa65334-6180-4f4c-8936-415d72452674-24,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-24/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_0.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37437,observation-aaa65334-6180-4f4c-8936-415d72452674-25,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-25/,Liocarcinus navigator,Etrille arquée,,https://biolit.fr/wp-content/uploads/2023/07/Liocarcinus sp.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37439,observation-aaa65334-6180-4f4c-8936-415d72452674-26,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-26/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_0.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37441,observation-aaa65334-6180-4f4c-8936-415d72452674-27,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/Metridium senile.PNG,,FALSE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37443,observation-aaa65334-6180-4f4c-8936-415d72452674-28,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-28/,Modiolus barbatus,Modiole barbue,,https://biolit.fr/wp-content/uploads/2023/07/Modiolus barbatus.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37445,observation-aaa65334-6180-4f4c-8936-415d72452674-29,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-29/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_2.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37447,observation-aaa65334-6180-4f4c-8936-415d72452674-30,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-30/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocinebrena ericaneus.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37451,observation-aaa65334-6180-4f4c-8936-415d72452674-32,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-32/,Perophora japonica,Perophore japonaise,,https://biolit.fr/wp-content/uploads/2023/07/Perophora japonica.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37453,observation-aaa65334-6180-4f4c-8936-415d72452674-33,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-33/,Pilumnus hirtellus,Pilumne hirsute,,https://biolit.fr/wp-content/uploads/2023/07/Pilumnus hirtellus.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37455,observation-aaa65334-6180-4f4c-8936-415d72452674-34,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-34/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/pisidia longicornis.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37457,observation-aaa65334-6180-4f4c-8936-415d72452674-35,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-35/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris_0.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37459,observation-aaa65334-6180-4f4c-8936-415d72452674-36,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-36/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/Sabellaria alveolata.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37461,observation-aaa65334-6180-4f4c-8936-415d72452674-37,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-37/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/Sagartia sp.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37463,observation-aaa65334-6180-4f4c-8936-415d72452674-38,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-38/,Styela clava,Ascidie japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Stella clavata.PNG,,TRUE, +N1,59032,sortie-aaa65334-6180-4f4c-8936-415d72452674,https://biolit.fr/sorties/sortie-aaa65334-6180-4f4c-8936-415d72452674/,Roman,,9/18/2020 0:00,10.0000000,13.0000000,47.702413000000,-3.38337700000,,Larmor PLage,37465,observation-aaa65334-6180-4f4c-8936-415d72452674-39,https://biolit.fr/observations/observation-aaa65334-6180-4f4c-8936-415d72452674-39/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_1.PNG,,TRUE, +N1,59033,sortie-5b73e504-850d-4e83-9762-049ddc28e2ee,https://biolit.fr/sorties/sortie-5b73e504-850d-4e83-9762-049ddc28e2ee/,Romuald VIALE - EXPENATURE,,9/14/2020 0:00,10.0000000,12.0000000,43.179882000000,5.612527000000,ExpéNature,La Ciotat,37467,observation-5b73e504-850d-4e83-9762-049ddc28e2ee,https://biolit.fr/observations/observation-5b73e504-850d-4e83-9762-049ddc28e2ee/,Olindias muelleri,Olindias,,https://biolit.fr/wp-content/uploads/2023/07/119479206_3386135418133880_7271718259874152658_n.png,,TRUE, +N1,59033,sortie-5b73e504-850d-4e83-9762-049ddc28e2ee,https://biolit.fr/sorties/sortie-5b73e504-850d-4e83-9762-049ddc28e2ee/,Romuald VIALE - EXPENATURE,,9/14/2020 0:00,10.0000000,12.0000000,43.179882000000,5.612527000000,ExpéNature,La Ciotat,37469,observation-5b73e504-850d-4e83-9762-049ddc28e2ee-2,https://biolit.fr/observations/observation-5b73e504-850d-4e83-9762-049ddc28e2ee-2/,Olindias muelleri,Olindias,,https://biolit.fr/wp-content/uploads/2023/07/119474286_361092721565142_3420387653811057195_n.png,,TRUE, +N1,59033,sortie-5b73e504-850d-4e83-9762-049ddc28e2ee,https://biolit.fr/sorties/sortie-5b73e504-850d-4e83-9762-049ddc28e2ee/,"""Romuald VIALE - EXPENATURE""",,9/14/2020 0:00,10.0000000,12.0000000,43.179882000000,5.612527000000,ExpéNature,La Ciotat,37471,observation-5b73e504-850d-4e83-9762-049ddc28e2ee-3,https://biolit.fr/observations/observation-5b73e504-850d-4e83-9762-049ddc28e2ee-3/,Olindias muelleri,Olindias,,https://biolit.fr/wp-content/uploads/2023/07/119528974_2660053667579275_4505372671719482452_n.png,,TRUE, +N1,59034,sortie-c38797d9-a63a-4041-a8e1-8b4d7ec176ad,https://biolit.fr/sorties/sortie-c38797d9-a63a-4041-a8e1-8b4d7ec176ad/,Planète Mer,,09/09/2020,15.0000000,16.0000000,48.641559000000,-2.072823000000,,Dinard - Plage de Saint-Enogat,37473,observation-c38797d9-a63a-4041-a8e1-8b4d7ec176ad,https://biolit.fr/observations/observation-c38797d9-a63a-4041-a8e1-8b4d7ec176ad/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200909_154834-scaled.jpg,,TRUE, +N1,59034,sortie-c38797d9-a63a-4041-a8e1-8b4d7ec176ad,https://biolit.fr/sorties/sortie-c38797d9-a63a-4041-a8e1-8b4d7ec176ad/,Planète Mer,,09/09/2020,15.0000000,16.0000000,48.641559000000,-2.072823000000,,Dinard - Plage de Saint-Enogat,37475,observation-c38797d9-a63a-4041-a8e1-8b4d7ec176ad-2,https://biolit.fr/observations/observation-c38797d9-a63a-4041-a8e1-8b4d7ec176ad-2/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/20200909_155420-scaled.jpg,,TRUE, +N1,59034,sortie-c38797d9-a63a-4041-a8e1-8b4d7ec176ad,https://biolit.fr/sorties/sortie-c38797d9-a63a-4041-a8e1-8b4d7ec176ad/,Planète Mer,,09/09/2020,15.0000000,16.0000000,48.641559000000,-2.072823000000,,Dinard - Plage de Saint-Enogat,37477,observation-c38797d9-a63a-4041-a8e1-8b4d7ec176ad-3,https://biolit.fr/observations/observation-c38797d9-a63a-4041-a8e1-8b4d7ec176ad-3/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20200909_160707-scaled.jpg,,TRUE, +N1,59034,sortie-c38797d9-a63a-4041-a8e1-8b4d7ec176ad,https://biolit.fr/sorties/sortie-c38797d9-a63a-4041-a8e1-8b4d7ec176ad/,Planète Mer,,09/09/2020,15.0000000,16.0000000,48.641559000000,-2.072823000000,,Dinard - Plage de Saint-Enogat,37479,observation-c38797d9-a63a-4041-a8e1-8b4d7ec176ad-4,https://biolit.fr/observations/observation-c38797d9-a63a-4041-a8e1-8b4d7ec176ad-4/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20200909_161228-scaled.jpg,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37481,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona fascicularis.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37482,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-2,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/actinia equina pe_0.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37484,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-3,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-3/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea_4.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37485,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-4,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-4/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/anémone sp 2.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37487,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-5,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-5/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/anémone sp 3.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37489,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-6,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-6/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/Anémone sp_0.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37490,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-7,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-7/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_5.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37491,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-8,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-8/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/Aplysia punctata.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37493,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-9,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-9/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asteria rubens_0.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37494,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-10,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-10/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37496,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-11,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-11/,Botrylloides spp. (leachii violaceus diegensis),Botrylles,,https://biolit.fr/wp-content/uploads/2023/07/botrylloides sp_0.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37498,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-12,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-12/,Membranipora membranacea,Membranipore,,https://biolit.fr/wp-content/uploads/2023/07/Bryo sp_1.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37499,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-13,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-13/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_0.jpg,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37500,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-14,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-14/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas-scaled.jpg,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37501,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-15,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-15/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/cereus pedunculatus_0.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37502,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-16,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-16/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Crassostrea gigas.jpg,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37503,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-17,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-17/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 2_0.PNG,,FALSE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37505,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-18,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-18/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp_1.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37507,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-19,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-19/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/eriphia verrucosa pince.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37509,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-20,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-20/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/Gobie sp_0.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37510,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-21,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-21/,Spurilla neapolitana,Limace à bigoudis,,https://biolit.fr/wp-content/uploads/2023/07/Limace sp.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37511,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-22,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-22/,Lutraria magna,Grande lutraire,,https://biolit.fr/wp-content/uploads/2023/07/lutraria magna_2.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37513,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-23,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-23/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_1.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37515,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-24,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-24/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_1.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37517,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-25,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-25/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_0-scaled.jpg,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37518,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-26,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-26/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/pisidia longicornis.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37519,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-27,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/ponte de polychète_1.PNG,,FALSE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37521,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-28,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-28/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_0.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37523,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-29,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-29/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris-rotated.jpg,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37524,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-30,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-30/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes philipinarum.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37526,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-31,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-31/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/Syngnathidae sp.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37528,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-32,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-32/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa_4.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37529,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-33,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-33/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus.PNG,,TRUE, +N1,59035,sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4,https://biolit.fr/sorties/sortie-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4/,Roman,,09/07/2020,14.0000000,16.0000000,47.707568000000,-3.361549000000,,Port-Louis,37531,observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-34,https://biolit.fr/observations/observation-5fb42ef7-5d5a-48b4-b8bc-8f8aa0cfa7e4-34/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/Xantho pilipes_0.PNG,,TRUE, +N1,59036,sortie-11277065-f047-4aef-abc0-dadf840bf562,https://biolit.fr/sorties/sortie-11277065-f047-4aef-abc0-dadf840bf562/,Ilse,,8/29/2020 0:00,7.0000000,7.0000000,49.315311000000,-0.382676000000,,"Luc sur Mer, plage",37537,observation-11277065-f047-4aef-abc0-dadf840bf562-3,https://biolit.fr/observations/observation-11277065-f047-4aef-abc0-dadf840bf562-3/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/P8270472-scaled.jpg,,TRUE, +N1,59036,sortie-11277065-f047-4aef-abc0-dadf840bf562,https://biolit.fr/sorties/sortie-11277065-f047-4aef-abc0-dadf840bf562/,Ilse,,8/29/2020 0:00,7.0000000,7.0000000,49.315311000000,-0.382676000000,,"Luc sur Mer, plage",37539,observation-11277065-f047-4aef-abc0-dadf840bf562-4,https://biolit.fr/observations/observation-11277065-f047-4aef-abc0-dadf840bf562-4/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P8270463-scaled.jpg,,TRUE, +N1,59036,sortie-11277065-f047-4aef-abc0-dadf840bf562,https://biolit.fr/sorties/sortie-11277065-f047-4aef-abc0-dadf840bf562/,Ilse,,8/29/2020 0:00,7.0000000,7.0000000,49.315311000000,-0.382676000000,,"Luc sur Mer, plage",37541,observation-11277065-f047-4aef-abc0-dadf840bf562-5,https://biolit.fr/observations/observation-11277065-f047-4aef-abc0-dadf840bf562-5/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/P8270465-scaled.jpg,,TRUE, +N1,59037,sortie-828d4e96-bd96-4f2a-abc0-28f0e0e64411,https://biolit.fr/sorties/sortie-828d4e96-bd96-4f2a-abc0-28f0e0e64411/,Caterina Casagranda,,7/14/2019 0:00,15.0000000,16.0000000,42.239685000000,8.550243000000,,Cap Rosso en Corse,37545,observation-828d4e96-bd96-4f2a-abc0-28f0e0e64411,https://biolit.fr/observations/observation-828d4e96-bd96-4f2a-abc0-28f0e0e64411/,Patella ferruginea,Patelle ferrugineuse,,https://biolit.fr/wp-content/uploads/2023/07/Chapeau chinois corse.jpg,,TRUE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37549,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-2,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-2/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_113114-scaled.jpg,,TRUE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37551,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-3,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-3/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_113020-scaled.jpg,,TRUE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37553,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-4,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-4/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_113222-scaled.jpg,,TRUE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37555,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-5,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-5/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_113225-scaled.jpg,,TRUE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37557,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-6,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-6/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_113408-scaled.jpg,,TRUE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37559,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-7,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-7/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_113424-scaled.jpg,,TRUE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37561,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-8,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_113436-scaled.jpg,,FALSE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37563,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-9,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-9/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_113501-scaled.jpg,,TRUE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37565,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-10,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-10/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_113555-scaled.jpg,,TRUE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37567,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-11,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-11/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_113649-scaled.jpg,,TRUE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37569,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-12,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_113716-scaled.jpg,,FALSE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37571,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-13,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-13/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_113738-scaled.jpg,,TRUE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37575,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-15,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-15/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_114304-scaled.jpg,,TRUE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37577,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-16,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-16/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_115718-scaled.jpg,,TRUE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37579,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-17,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-17/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_115751-scaled.jpg,,TRUE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37581,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-18,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-18/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_120031-scaled.jpg,,TRUE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37583,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-19,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-19/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_120034-scaled.jpg,,TRUE, +N1,59038,sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6,https://biolit.fr/sorties/sortie-22c6a4a6-f92e-421e-a5d2-f3c8231387d6/,Groupe Associatif Estuaire,,08/04/2020,11.0000000,12.0:15,46.434338000000,-1.658851000000,,Plage du Veillon,37585,observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-20,https://biolit.fr/observations/observation-22c6a4a6-f92e-421e-a5d2-f3c8231387d6-20/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200804_120957-scaled.jpg,,TRUE, +N1,59039,sortie-152ccbdb-d5c8-4735-83c3-2198c9aff065,https://biolit.fr/sorties/sortie-152ccbdb-d5c8-4735-83c3-2198c9aff065/,Arraiatxu,,8/19/2020 0:00,9.0000000,11.0000000,43.409504000000,-1.638160000000,,"Plage d'Erromardi, Commune de Saint-Jean-de-Luz",37587,observation-152ccbdb-d5c8-4735-83c3-2198c9aff065,https://biolit.fr/observations/observation-152ccbdb-d5c8-4735-83c3-2198c9aff065/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200819_102315-scaled.jpg,,FALSE, +N1,59040,sortie-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b,https://biolit.fr/sorties/sortie-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.87170300000,1.598966000000,,tardinghen,37589,observation-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b,https://biolit.fr/observations/observation-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b/,Abietinaria abietina,Hydraire-sapin,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_161347134-min-scaled.jpg,,TRUE, +N1,59040,sortie-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b,https://biolit.fr/sorties/sortie-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.87170300000,1.598966000000,,tardinghen,37591,observation-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b-2,https://biolit.fr/observations/observation-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b-2/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_161356952-min-scaled.jpg,,TRUE, +N1,59040,sortie-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b,https://biolit.fr/sorties/sortie-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.87170300000,1.598966000000,,tardinghen,37593,observation-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b-3,https://biolit.fr/observations/observation-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b-3/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_161652737-min-scaled.jpg,,TRUE, +N1,59040,sortie-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b,https://biolit.fr/sorties/sortie-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.87170300000,1.598966000000,,tardinghen,37595,observation-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b-4,https://biolit.fr/observations/observation-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b-4/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_161700459-min-scaled.jpg,,TRUE, +N1,59040,sortie-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b,https://biolit.fr/sorties/sortie-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.87170300000,1.598966000000,,tardinghen,37597,observation-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b-5,https://biolit.fr/observations/observation-2b78fbd3-04c5-47a1-9c6c-b43d7c5c929b-5/,Catenella caespitosa,Caténelle en touffe,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162340559-min-scaled.jpg,,TRUE, +N1,59041,sortie-c96ea248-2b10-4d46-aa56-49babcf0b0ab,https://biolit.fr/sorties/sortie-c96ea248-2b10-4d46-aa56-49babcf0b0ab/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871694000000,1.598930000000,,tardinghen,37599,observation-c96ea248-2b10-4d46-aa56-49babcf0b0ab,https://biolit.fr/observations/observation-c96ea248-2b10-4d46-aa56-49babcf0b0ab/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_161321243-min-scaled.jpg,,FALSE, +N1,59041,sortie-c96ea248-2b10-4d46-aa56-49babcf0b0ab,https://biolit.fr/sorties/sortie-c96ea248-2b10-4d46-aa56-49babcf0b0ab/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871694000000,1.598930000000,,tardinghen,37601,observation-c96ea248-2b10-4d46-aa56-49babcf0b0ab-2,https://biolit.fr/observations/observation-c96ea248-2b10-4d46-aa56-49babcf0b0ab-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_161334878-min-scaled.jpg,,FALSE, +N1,59041,sortie-c96ea248-2b10-4d46-aa56-49babcf0b0ab,https://biolit.fr/sorties/sortie-c96ea248-2b10-4d46-aa56-49babcf0b0ab/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871694000000,1.598930000000,,tardinghen,37603,observation-c96ea248-2b10-4d46-aa56-49babcf0b0ab-3,https://biolit.fr/observations/observation-c96ea248-2b10-4d46-aa56-49babcf0b0ab-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_161412814-min-scaled.jpg,,FALSE, +N1,59041,sortie-c96ea248-2b10-4d46-aa56-49babcf0b0ab,https://biolit.fr/sorties/sortie-c96ea248-2b10-4d46-aa56-49babcf0b0ab/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871694000000,1.598930000000,,tardinghen,37605,observation-c96ea248-2b10-4d46-aa56-49babcf0b0ab-4,https://biolit.fr/observations/observation-c96ea248-2b10-4d46-aa56-49babcf0b0ab-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_161434879-min-scaled.jpg,,FALSE, +N1,59042,sortie-cb176923-a5bb-4440-afae-c8bd0a965956,https://biolit.fr/sorties/sortie-cb176923-a5bb-4440-afae-c8bd0a965956/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871694000000,1.598930000000,,tardinghen,37607,observation-cb176923-a5bb-4440-afae-c8bd0a965956,https://biolit.fr/observations/observation-cb176923-a5bb-4440-afae-c8bd0a965956/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162211815-scaled.jpg,,FALSE, +N1,59042,sortie-cb176923-a5bb-4440-afae-c8bd0a965956,https://biolit.fr/sorties/sortie-cb176923-a5bb-4440-afae-c8bd0a965956/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871694000000,1.598930000000,,tardinghen,37609,observation-cb176923-a5bb-4440-afae-c8bd0a965956-2,https://biolit.fr/observations/observation-cb176923-a5bb-4440-afae-c8bd0a965956-2/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162915822-scaled.jpg,,TRUE, +N1,59042,sortie-cb176923-a5bb-4440-afae-c8bd0a965956,https://biolit.fr/sorties/sortie-cb176923-a5bb-4440-afae-c8bd0a965956/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871694000000,1.598930000000,,tardinghen,37611,observation-cb176923-a5bb-4440-afae-c8bd0a965956-3,https://biolit.fr/observations/observation-cb176923-a5bb-4440-afae-c8bd0a965956-3/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_171033687-scaled.jpg,,TRUE, +N1,59042,sortie-cb176923-a5bb-4440-afae-c8bd0a965956,https://biolit.fr/sorties/sortie-cb176923-a5bb-4440-afae-c8bd0a965956/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871694000000,1.598930000000,,tardinghen,37613,observation-cb176923-a5bb-4440-afae-c8bd0a965956-4,https://biolit.fr/observations/observation-cb176923-a5bb-4440-afae-c8bd0a965956-4/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_171041434-scaled.jpg,,TRUE, +N1,59043,sortie-064a8cb2-b321-4da5-930a-e8364c086eea,https://biolit.fr/sorties/sortie-064a8cb2-b321-4da5-930a-e8364c086eea/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871708000000,1.59895200000,,tardinghen,37615,observation-064a8cb2-b321-4da5-930a-e8364c086eea,https://biolit.fr/observations/observation-064a8cb2-b321-4da5-930a-e8364c086eea/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162612145-scaled.jpg,,FALSE, +N1,59043,sortie-064a8cb2-b321-4da5-930a-e8364c086eea,https://biolit.fr/sorties/sortie-064a8cb2-b321-4da5-930a-e8364c086eea/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871708000000,1.59895200000,,tardinghen,37617,observation-064a8cb2-b321-4da5-930a-e8364c086eea-2,https://biolit.fr/observations/observation-064a8cb2-b321-4da5-930a-e8364c086eea-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162615850-scaled.jpg,,FALSE, +N1,59043,sortie-064a8cb2-b321-4da5-930a-e8364c086eea,https://biolit.fr/sorties/sortie-064a8cb2-b321-4da5-930a-e8364c086eea/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871708000000,1.59895200000,,tardinghen,37619,observation-064a8cb2-b321-4da5-930a-e8364c086eea-3,https://biolit.fr/observations/observation-064a8cb2-b321-4da5-930a-e8364c086eea-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162636933-scaled.jpg,,TRUE, +N1,59043,sortie-064a8cb2-b321-4da5-930a-e8364c086eea,https://biolit.fr/sorties/sortie-064a8cb2-b321-4da5-930a-e8364c086eea/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871708000000,1.59895200000,,tardinghen,37621,observation-064a8cb2-b321-4da5-930a-e8364c086eea-4,https://biolit.fr/observations/observation-064a8cb2-b321-4da5-930a-e8364c086eea-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162642237-scaled.jpg,,TRUE, +N1,59043,sortie-064a8cb2-b321-4da5-930a-e8364c086eea,https://biolit.fr/sorties/sortie-064a8cb2-b321-4da5-930a-e8364c086eea/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871708000000,1.59895200000,,tardinghen,37623,observation-064a8cb2-b321-4da5-930a-e8364c086eea-5,https://biolit.fr/observations/observation-064a8cb2-b321-4da5-930a-e8364c086eea-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_171433268-scaled.jpg,,FALSE, +N1,59044,sortie-1e1c3c63-a696-4172-8c7e-90f7a9853543,https://biolit.fr/sorties/sortie-1e1c3c63-a696-4172-8c7e-90f7a9853543/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871694000000,1.598909000000,,tardinghen,37625,observation-1e1c3c63-a696-4172-8c7e-90f7a9853543,https://biolit.fr/observations/observation-1e1c3c63-a696-4172-8c7e-90f7a9853543/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162446151-scaled.jpg,,TRUE, +N1,59044,sortie-1e1c3c63-a696-4172-8c7e-90f7a9853543,https://biolit.fr/sorties/sortie-1e1c3c63-a696-4172-8c7e-90f7a9853543/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871694000000,1.598909000000,,tardinghen,37627,observation-1e1c3c63-a696-4172-8c7e-90f7a9853543-2,https://biolit.fr/observations/observation-1e1c3c63-a696-4172-8c7e-90f7a9853543-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162450523-scaled.jpg,,TRUE, +N1,59044,sortie-1e1c3c63-a696-4172-8c7e-90f7a9853543,https://biolit.fr/sorties/sortie-1e1c3c63-a696-4172-8c7e-90f7a9853543/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871694000000,1.598909000000,,tardinghen,37629,observation-1e1c3c63-a696-4172-8c7e-90f7a9853543-3,https://biolit.fr/observations/observation-1e1c3c63-a696-4172-8c7e-90f7a9853543-3/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162505868-scaled.jpg,,TRUE, +N1,59044,sortie-1e1c3c63-a696-4172-8c7e-90f7a9853543,https://biolit.fr/sorties/sortie-1e1c3c63-a696-4172-8c7e-90f7a9853543/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871694000000,1.598909000000,,tardinghen,37631,observation-1e1c3c63-a696-4172-8c7e-90f7a9853543-4,https://biolit.fr/observations/observation-1e1c3c63-a696-4172-8c7e-90f7a9853543-4/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162514403-scaled.jpg,,TRUE, +N1,59044,sortie-1e1c3c63-a696-4172-8c7e-90f7a9853543,https://biolit.fr/sorties/sortie-1e1c3c63-a696-4172-8c7e-90f7a9853543/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871694000000,1.598909000000,,tardinghen,37633,observation-1e1c3c63-a696-4172-8c7e-90f7a9853543-5,https://biolit.fr/observations/observation-1e1c3c63-a696-4172-8c7e-90f7a9853543-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162601689-scaled.jpg,,FALSE, +N1,59044,sortie-1e1c3c63-a696-4172-8c7e-90f7a9853543,https://biolit.fr/sorties/sortie-1e1c3c63-a696-4172-8c7e-90f7a9853543/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871694000000,1.598909000000,,tardinghen,37635,observation-1e1c3c63-a696-4172-8c7e-90f7a9853543-6,https://biolit.fr/observations/observation-1e1c3c63-a696-4172-8c7e-90f7a9853543-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162606257-scaled.jpg,,FALSE, +N1,59045,sortie-39397ab7-908b-4b1c-acdc-33be1924088c,https://biolit.fr/sorties/sortie-39397ab7-908b-4b1c-acdc-33be1924088c/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871735000000,1.598887000000,,tardinghen,37637,observation-39397ab7-908b-4b1c-acdc-33be1924088c,https://biolit.fr/observations/observation-39397ab7-908b-4b1c-acdc-33be1924088c/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162127052-scaled.jpg,,TRUE, +N1,59045,sortie-39397ab7-908b-4b1c-acdc-33be1924088c,https://biolit.fr/sorties/sortie-39397ab7-908b-4b1c-acdc-33be1924088c/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871735000000,1.598887000000,,tardinghen,37639,observation-39397ab7-908b-4b1c-acdc-33be1924088c-2,https://biolit.fr/observations/observation-39397ab7-908b-4b1c-acdc-33be1924088c-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162407426-scaled.jpg,,TRUE, +N1,59045,sortie-39397ab7-908b-4b1c-acdc-33be1924088c,https://biolit.fr/sorties/sortie-39397ab7-908b-4b1c-acdc-33be1924088c/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871735000000,1.598887000000,,tardinghen,37641,observation-39397ab7-908b-4b1c-acdc-33be1924088c-3,https://biolit.fr/observations/observation-39397ab7-908b-4b1c-acdc-33be1924088c-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162423062-scaled.jpg,,TRUE, +N1,59045,sortie-39397ab7-908b-4b1c-acdc-33be1924088c,https://biolit.fr/sorties/sortie-39397ab7-908b-4b1c-acdc-33be1924088c/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871735000000,1.598887000000,,tardinghen,37643,observation-39397ab7-908b-4b1c-acdc-33be1924088c-4,https://biolit.fr/observations/observation-39397ab7-908b-4b1c-acdc-33be1924088c-4/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162431767-scaled.jpg,,TRUE, +N1,59045,sortie-39397ab7-908b-4b1c-acdc-33be1924088c,https://biolit.fr/sorties/sortie-39397ab7-908b-4b1c-acdc-33be1924088c/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871735000000,1.598887000000,,tardinghen,37645,observation-39397ab7-908b-4b1c-acdc-33be1924088c-5,https://biolit.fr/observations/observation-39397ab7-908b-4b1c-acdc-33be1924088c-5/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162435846-scaled.jpg,,TRUE, +N1,59046,sortie-0b894693-ac70-4ffc-8bf3-8d0835b1a75e,https://biolit.fr/sorties/sortie-0b894693-ac70-4ffc-8bf3-8d0835b1a75e/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871684000000,1.598919000000,,tardinghen,37647,observation-0b894693-ac70-4ffc-8bf3-8d0835b1a75e,https://biolit.fr/observations/observation-0b894693-ac70-4ffc-8bf3-8d0835b1a75e/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_161603216-scaled.jpg,,FALSE, +N1,59046,sortie-0b894693-ac70-4ffc-8bf3-8d0835b1a75e,https://biolit.fr/sorties/sortie-0b894693-ac70-4ffc-8bf3-8d0835b1a75e/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871684000000,1.598919000000,,tardinghen,37649,observation-0b894693-ac70-4ffc-8bf3-8d0835b1a75e-2,https://biolit.fr/observations/observation-0b894693-ac70-4ffc-8bf3-8d0835b1a75e-2/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_161954544-scaled.jpg,,TRUE, +N1,59046,sortie-0b894693-ac70-4ffc-8bf3-8d0835b1a75e,https://biolit.fr/sorties/sortie-0b894693-ac70-4ffc-8bf3-8d0835b1a75e/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871684000000,1.598919000000,,tardinghen,37651,observation-0b894693-ac70-4ffc-8bf3-8d0835b1a75e-3,https://biolit.fr/observations/observation-0b894693-ac70-4ffc-8bf3-8d0835b1a75e-3/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162004044-scaled.jpg,,TRUE, +N1,59046,sortie-0b894693-ac70-4ffc-8bf3-8d0835b1a75e,https://biolit.fr/sorties/sortie-0b894693-ac70-4ffc-8bf3-8d0835b1a75e/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871684000000,1.598919000000,,tardinghen,37653,observation-0b894693-ac70-4ffc-8bf3-8d0835b1a75e-4,https://biolit.fr/observations/observation-0b894693-ac70-4ffc-8bf3-8d0835b1a75e-4/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162012401-scaled.jpg,,TRUE, +N1,59046,sortie-0b894693-ac70-4ffc-8bf3-8d0835b1a75e,https://biolit.fr/sorties/sortie-0b894693-ac70-4ffc-8bf3-8d0835b1a75e/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871684000000,1.598919000000,,tardinghen,37655,observation-0b894693-ac70-4ffc-8bf3-8d0835b1a75e-5,https://biolit.fr/observations/observation-0b894693-ac70-4ffc-8bf3-8d0835b1a75e-5/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162058943-scaled.jpg,,TRUE, +N1,59046,sortie-0b894693-ac70-4ffc-8bf3-8d0835b1a75e,https://biolit.fr/sorties/sortie-0b894693-ac70-4ffc-8bf3-8d0835b1a75e/,ludovic,,3/15/2020 0:00,16.0000000,17.0000000,50.871684000000,1.598919000000,,tardinghen,37657,observation-0b894693-ac70-4ffc-8bf3-8d0835b1a75e-6,https://biolit.fr/observations/observation-0b894693-ac70-4ffc-8bf3-8d0835b1a75e-6/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200315_162107222-scaled.jpg,,TRUE, +N1,59047,sortie-5051d2f7-1602-49de-83fe-7a7fe18561c6,https://biolit.fr/sorties/sortie-5051d2f7-1602-49de-83fe-7a7fe18561c6/,Arraiatxu,,08/07/2020,13.0000000,15.0000000,43.409419000000,-1.638106000000,,"Plage d'Erromardi, Commune de Saint-Jean-de-Luz",37659,observation-5051d2f7-1602-49de-83fe-7a7fe18561c6,https://biolit.fr/observations/observation-5051d2f7-1602-49de-83fe-7a7fe18561c6/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/20200807_141754-scaled.jpg,,TRUE, +N1,59047,sortie-5051d2f7-1602-49de-83fe-7a7fe18561c6,https://biolit.fr/sorties/sortie-5051d2f7-1602-49de-83fe-7a7fe18561c6/,Arraiatxu,,08/07/2020,13.0000000,15.0000000,43.409419000000,-1.638106000000,,"Plage d'Erromardi, Commune de Saint-Jean-de-Luz",37661,observation-5051d2f7-1602-49de-83fe-7a7fe18561c6-2,https://biolit.fr/observations/observation-5051d2f7-1602-49de-83fe-7a7fe18561c6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/anemone-scaled.jpg,,FALSE, +N1,59048,sortie-dea9b7c4-66d5-4afa-8293-62fc511aa17a,https://biolit.fr/sorties/sortie-dea9b7c4-66d5-4afa-8293-62fc511aa17a/,Arraiatxu,,7/24/2020 0:00,13.0000000,15.0000000,43.407306000000,-1.642076000000,,"Plage d'Erromardi, Commune de Saint-Jean-de-Luz",37663,observation-dea9b7c4-66d5-4afa-8293-62fc511aa17a,https://biolit.fr/observations/observation-dea9b7c4-66d5-4afa-8293-62fc511aa17a/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200724_134548-scaled.jpg,,FALSE, +N1,59049,sortie-1e39d054-6afc-4d18-bbda-5e56fbcd29c1,https://biolit.fr/sorties/sortie-1e39d054-6afc-4d18-bbda-5e56fbcd29c1/,Club subaquatique Narbonnais,,08/02/2020,15.0:25,15.0:45,43.112156000000,3.12096900000,Club Subaquatique Narbonnais CSN/FSGT,"Etang du Grazel, Gruissan",37665,observation-1e39d054-6afc-4d18-bbda-5e56fbcd29c1,https://biolit.fr/observations/observation-1e39d054-6afc-4d18-bbda-5e56fbcd29c1/,Acetabularia acetabulum,Acétabulaire,,https://biolit.fr/wp-content/uploads/2023/07/acétabulaire.JPG,,TRUE, +N1,59049,sortie-1e39d054-6afc-4d18-bbda-5e56fbcd29c1,https://biolit.fr/sorties/sortie-1e39d054-6afc-4d18-bbda-5e56fbcd29c1/,Club subaquatique Narbonnais,,08/02/2020,15.0:25,15.0:45,43.112156000000,3.12096900000,Club Subaquatique Narbonnais CSN/FSGT,"Etang du Grazel, Gruissan",37667,observation-1e39d054-6afc-4d18-bbda-5e56fbcd29c1-2,https://biolit.fr/observations/observation-1e39d054-6afc-4d18-bbda-5e56fbcd29c1-2/,Pinna nobilis,Grande nacre,,https://biolit.fr/wp-content/uploads/2023/07/coquille.JPG,,TRUE, +N1,59049,sortie-1e39d054-6afc-4d18-bbda-5e56fbcd29c1,https://biolit.fr/sorties/sortie-1e39d054-6afc-4d18-bbda-5e56fbcd29c1/,Club subaquatique Narbonnais,,08/02/2020,15.0:25,15.0:45,43.112156000000,3.12096900000,Club Subaquatique Narbonnais CSN/FSGT,"Etang du Grazel, Gruissan",37669,observation-1e39d054-6afc-4d18-bbda-5e56fbcd29c1-3,https://biolit.fr/observations/observation-1e39d054-6afc-4d18-bbda-5e56fbcd29c1-3/,Bolinus brandaris,Murex épineux,,https://biolit.fr/wp-content/uploads/2023/07/Murex et botrylles.JPG,,TRUE, +N1,59049,sortie-1e39d054-6afc-4d18-bbda-5e56fbcd29c1,https://biolit.fr/sorties/sortie-1e39d054-6afc-4d18-bbda-5e56fbcd29c1/,Club subaquatique Narbonnais,,08/02/2020,15.0:25,15.0:45,43.112156000000,3.12096900000,Club Subaquatique Narbonnais CSN/FSGT,"Etang du Grazel, Gruissan",37671,observation-1e39d054-6afc-4d18-bbda-5e56fbcd29c1-4,https://biolit.fr/observations/observation-1e39d054-6afc-4d18-bbda-5e56fbcd29c1-4/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/padine.JPG,,TRUE, +N1,59049,sortie-1e39d054-6afc-4d18-bbda-5e56fbcd29c1,https://biolit.fr/sorties/sortie-1e39d054-6afc-4d18-bbda-5e56fbcd29c1/,Club subaquatique Narbonnais,,08/02/2020,15.0:25,15.0:45,43.112156000000,3.12096900000,Club Subaquatique Narbonnais CSN/FSGT,"Etang du Grazel, Gruissan",37673,observation-1e39d054-6afc-4d18-bbda-5e56fbcd29c1-5,https://biolit.fr/observations/observation-1e39d054-6afc-4d18-bbda-5e56fbcd29c1-5/,Pinna nobilis,Grande nacre,,https://biolit.fr/wp-content/uploads/2023/07/Pinna et botrylles.JPG,,TRUE, +N1,59049,sortie-1e39d054-6afc-4d18-bbda-5e56fbcd29c1,https://biolit.fr/sorties/sortie-1e39d054-6afc-4d18-bbda-5e56fbcd29c1/,Club subaquatique Narbonnais,,08/02/2020,15.0:25,15.0:45,43.112156000000,3.12096900000,Club Subaquatique Narbonnais CSN/FSGT,"Etang du Grazel, Gruissan",37675,observation-1e39d054-6afc-4d18-bbda-5e56fbcd29c1-6,https://biolit.fr/observations/observation-1e39d054-6afc-4d18-bbda-5e56fbcd29c1-6/,Zostera noltei,Zostère naine,,https://biolit.fr/wp-content/uploads/2023/07/Pinna zostère.JPG,,TRUE, +N1,59050,sortie-c75d0340-26ce-4675-b5a7-5e6ae4d71223,https://biolit.fr/sorties/sortie-c75d0340-26ce-4675-b5a7-5e6ae4d71223/,Provence,,7/27/2020 0:00,8.0000000,10.0000000,42.890726000000,3.052444000000,,Leucate Mourets,37677,observation-c75d0340-26ce-4675-b5a7-5e6ae4d71223,https://biolit.fr/observations/observation-c75d0340-26ce-4675-b5a7-5e6ae4d71223/,Achillea maritima,Diotis blanc,,https://biolit.fr/wp-content/uploads/2023/07/20200625_Mourets_diotis_blanc.jpg,,TRUE, +N1,59051,sortie-11d44d07-2d67-466c-8d29-e06101859c1c,https://biolit.fr/sorties/sortie-11d44d07-2d67-466c-8d29-e06101859c1c/,Arraiatxu,,7/20/2020 0:00,10.0000000,11.0:45,43.409419000000,-1.637956000000,,"Plage d'Erromardi, Commune de Saint-Jean-de-Luz",37679,observation-11d44d07-2d67-466c-8d29-e06101859c1c,https://biolit.fr/observations/observation-11d44d07-2d67-466c-8d29-e06101859c1c/,Hesione splendida,Ver léopard,,https://biolit.fr/wp-content/uploads/2023/07/20200720_112542-scaled.jpg,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37681,observation-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_3.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37682,observation-973d57dc-efd6-488e-a168-78816f3e93d6-2,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea_3.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37683,observation-973d57dc-efd6-488e-a168-78816f3e93d6-3,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_4.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37684,observation-973d57dc-efd6-488e-a168-78816f3e93d6-4,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-4/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_2.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37685,observation-973d57dc-efd6-488e-a168-78816f3e93d6-5,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-5/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens_0.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37686,observation-973d57dc-efd6-488e-a168-78816f3e93d6-6,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-6/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_2.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37687,observation-973d57dc-efd6-488e-a168-78816f3e93d6-7,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-7/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_2.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37688,observation-973d57dc-efd6-488e-a168-78816f3e93d6-8,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-8/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/2023/07/Blennie sp_2.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37689,observation-973d57dc-efd6-488e-a168-78816f3e93d6-9,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-9/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37690,observation-973d57dc-efd6-488e-a168-78816f3e93d6-10,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-10/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/bryo sp 1.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37692,observation-973d57dc-efd6-488e-a168-78816f3e93d6-11,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-11/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/bryo sp 2.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37694,observation-973d57dc-efd6-488e-a168-78816f3e93d6-12,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/bryo sp 3.PNG,,FALSE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37696,observation-973d57dc-efd6-488e-a168-78816f3e93d6-13,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-13/,Janua heterostropha,Spirorbe de Pagenstecher,,https://biolit.fr/wp-content/uploads/2023/07/Bryo sp_0.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37697,observation-973d57dc-efd6-488e-a168-78816f3e93d6-14,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-14/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_3.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37698,observation-973d57dc-efd6-488e-a168-78816f3e93d6-15,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-15/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_7.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37699,observation-973d57dc-efd6-488e-a168-78816f3e93d6-16,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-16/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/chthamalus montagui et stellatus.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37701,observation-973d57dc-efd6-488e-a168-78816f3e93d6-17,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-17/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crepidula fornicata_2.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37702,observation-973d57dc-efd6-488e-a168-78816f3e93d6-18,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-18/,Balanus crenatus,Balane crénelée,,https://biolit.fr/wp-content/uploads/2023/07/doris pe.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37704,observation-973d57dc-efd6-488e-a168-78816f3e93d6-19,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-19/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Gibbula magus.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37705,observation-973d57dc-efd6-488e-a168-78816f3e93d6-20,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-20/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/gibbula ombilicalis.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37707,observation-973d57dc-efd6-488e-a168-78816f3e93d6-21,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-21/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/Gobie sp.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37708,observation-973d57dc-efd6-488e-a168-78816f3e93d6-22,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-22/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_0.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37709,observation-973d57dc-efd6-488e-a168-78816f3e93d6-23,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/mycale subclavata pe.PNG,,FALSE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37711,observation-973d57dc-efd6-488e-a168-78816f3e93d6-24,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-24/,Tritia incrassata,Nasse épaisse,,https://biolit.fr/wp-content/uploads/2023/07/Nassarius incrassatus_0.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37712,observation-973d57dc-efd6-488e-a168-78816f3e93d6-25,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-25/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nassarius reticulatus_1.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37713,observation-973d57dc-efd6-488e-a168-78816f3e93d6-26,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-26/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis ophidion_0.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37714,observation-973d57dc-efd6-488e-a168-78816f3e93d6-27,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-27/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_4.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37715,observation-973d57dc-efd6-488e-a168-78816f3e93d6-28,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-28/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/ostreis edule_0.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37717,observation-973d57dc-efd6-488e-a168-78816f3e93d6-29,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-29/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/pagurus bernhardus_0.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37719,observation-973d57dc-efd6-488e-a168-78816f3e93d6-30,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-30/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Paracentrotus lividus_0.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37720,observation-973d57dc-efd6-488e-a168-78816f3e93d6-31,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-31/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/Perforatus perforatus_2.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37721,observation-973d57dc-efd6-488e-a168-78816f3e93d6-32,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-32/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus_1.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37722,observation-973d57dc-efd6-488e-a168-78816f3e93d6-33,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/polysyncraton sp.PNG,,FALSE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37724,observation-973d57dc-efd6-488e-a168-78816f3e93d6-34,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ponte de polychète_0.PNG,,FALSE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37725,observation-973d57dc-efd6-488e-a168-78816f3e93d6-35,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-35/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_4.PNG,,TRUE, +N1,59052,sortie-973d57dc-efd6-488e-a168-78816f3e93d6,https://biolit.fr/sorties/sortie-973d57dc-efd6-488e-a168-78816f3e93d6/,Roman,,7/19/2020 0:00,11.0000000,12.0:15,47.702983000000,-3.352869000000,,Port-Louis,37726,observation-973d57dc-efd6-488e-a168-78816f3e93d6-36,https://biolit.fr/observations/observation-973d57dc-efd6-488e-a168-78816f3e93d6-36/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_5.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37727,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita_1.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37728,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-2,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_2.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37729,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-3,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis pe.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37730,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-4,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-4/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_1.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37731,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-5,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-5/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asteria rubens.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37732,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-6,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-6/,Botrylloides spp. (leachii violaceus diegensis),Botrylles,,https://biolit.fr/wp-content/uploads/2023/07/Botrylloides sp.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37733,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-7,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/botryllus sp pe.PNG,,FALSE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37735,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-8,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-8/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_2.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37736,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-9,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-9/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_5.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37737,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-10,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-10/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus-scaled.jpg,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37738,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-11,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-11/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Chlamys varia_0.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37739,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-12,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-12/,Geitodoris planata,Geitodoris étoilé,,https://biolit.fr/wp-content/uploads/2023/07/doris verrucosa ponte.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37741,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-13,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-13/,Doris verrucosa,Doris verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/doris verrucosa.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37743,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-14,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-14/,Hymeniacidon perlevis,Eponge-miette de pain,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp 2.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37745,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-15,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Eponge sp_0.PNG,,FALSE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37746,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-16,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-16/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea_1.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37747,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-17,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-17/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_5.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37748,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-18,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-18/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nassarius reticulatus_0.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37749,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-19,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-19/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_3.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37750,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-20,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-20/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ostreis edule.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37751,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-21,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-21/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/pagurus bernhardus.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37753,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-22,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-22/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/Patella intermedia.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37754,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-23,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-23/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/Perforatus perforatus_1.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37755,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-24,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-24/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus_0.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37756,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-25,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ponte de polychète.PNG,,FALSE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37757,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-26,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-26/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_3.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37758,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-27,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-27/,Sphaerechinus granularis,Oursin granuleux,,https://biolit.fr/wp-content/uploads/2023/07/sphaerechinus granularis.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37760,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-28,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/stromphia sp.PNG,,FALSE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37762,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-29,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-29/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa_3.PNG,,TRUE, +N1,59053,sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518,https://biolit.fr/sorties/sortie-fe8a72a2-d9ee-4f2f-b403-8663aae39518/,Roman,,7/18/2020 0:00,10.0:45,12.0:15,47.703541000000,-3.349570000000,,Port-Louis,37763,observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-30,https://biolit.fr/observations/observation-fe8a72a2-d9ee-4f2f-b403-8663aae39518-30/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_4.PNG,,TRUE, +N1,59054,sortie-2b317e08-9d20-40c2-abe2-d98fe39f8e2a,https://biolit.fr/sorties/sortie-2b317e08-9d20-40c2-abe2-d98fe39f8e2a/,azelie,,7/16/2020 0:00,15.0:45,15.0000000,48.841737000000,-1.595770000000,,Plage de Granville,37764,observation-2b317e08-9d20-40c2-abe2-d98fe39f8e2a,https://biolit.fr/observations/observation-2b317e08-9d20-40c2-abe2-d98fe39f8e2a/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6196-scaled.jpg,,TRUE, +N1,59055,sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89,https://biolit.fr/sorties/sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89/,Objectif Sciences Internationale - France,,7/15/2020 0:00,15.0:45,16.0000000,48.470431000000,-4.757870000000,,Près du port de Lanildut,37766,observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89,https://biolit.fr/observations/observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Grosse-Actinia-Equina1-scaled.jpg,,TRUE, +N1,59055,sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89,https://biolit.fr/sorties/sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89/,Objectif Sciences Internationale - France,,7/15/2020 0:00,15.0:45,16.0000000,48.470431000000,-4.757870000000,,Près du port de Lanildut,37768,observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-2,https://biolit.fr/observations/observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-2/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/Grosse-Grangon-Grangon-scaled.jpg,,TRUE, +N1,59055,sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89,https://biolit.fr/sorties/sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89/,Objectif Sciences Internationale - France,,7/15/2020 0:00,15.0:45,16.0000000,48.470431000000,-4.757870000000,,Près du port de Lanildut,37770,observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-3,https://biolit.fr/observations/observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-3/,Littorina compressa,Littorine à lignes noires,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/littorina-nigrolineata-scaled.jpg,1,TRUE,Identifiable +N1,59055,sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89,https://biolit.fr/sorties/sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89/,Objectif Sciences Internationale - France,,7/15/2020 0:00,15.0:45,16.0000000,48.470431000000,-4.757870000000,,Près du port de Lanildut,37772,observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-4,https://biolit.fr/observations/observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-4/,Littorina compressa,Littorine à lignes noires,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/littorina-nigrolineata3-scaled.jpg,,TRUE, +N1,59055,sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89,https://biolit.fr/sorties/sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89/,Objectif Sciences Internationale - France,,7/15/2020 0:00,15.0:45,16.0000000,48.470431000000,-4.757870000000,,Près du port de Lanildut,37774,observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-5,https://biolit.fr/observations/observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-5/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Patella-Vulgata2-scaled.jpg,,TRUE, +N1,59055,sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89,https://biolit.fr/sorties/sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89/,Objectif Sciences Internationale - France,,7/15/2020 0:00,15.0:45,16.0000000,48.470431000000,-4.757870000000,,Près du port de Lanildut,37776,observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-6,https://biolit.fr/observations/observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-6/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Patella vulgata-scaled.jpg,,TRUE, +N1,59055,sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89,https://biolit.fr/sorties/sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89/,Objectif Sciences Internationale - France,,7/15/2020 0:00,15.0:45,16.0000000,48.470431000000,-4.757870000000,,Près du port de Lanildut,37777,observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-7,https://biolit.fr/observations/observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-7/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Petite-Actinia-Equina-scaled.jpg,,TRUE, +N1,59055,sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89,https://biolit.fr/sorties/sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89/,Objectif Sciences Internationale - France,,7/15/2020 0:00,15.0:45,16.0000000,48.470431000000,-4.757870000000,,Près du port de Lanildut,37779,observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-8,https://biolit.fr/observations/observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-8/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/Petite-Grangon-Grangon-scaled.jpg,,TRUE, +N1,59055,sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89,https://biolit.fr/sorties/sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89/,Objectif Sciences Internationale - France,,7/15/2020 0:00,15.0:45,16.0000000,48.470431000000,-4.757870000000,,Près du port de Lanildut,37781,observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-9,https://biolit.fr/observations/observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-9/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus_0.PNG,,TRUE, +N1,59055,sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89,https://biolit.fr/sorties/sortie-18ac42e6-43b7-41b4-9b6f-d718f6319f89/,Objectif Sciences Internationale - France,,7/15/2020 0:00,15.0:45,16.0000000,48.470431000000,-4.757870000000,,Près du port de Lanildut,37782,observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-10,https://biolit.fr/observations/observation-18ac42e6-43b7-41b4-9b6f-d718f6319f89-10/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/phorcus-lineatus2-scaled.jpg,,TRUE, +N1,59056,sortie-f97b6957-11b0-4cea-9004-b4ae5f6b55d8,https://biolit.fr/sorties/sortie-f97b6957-11b0-4cea-9004-b4ae5f6b55d8/,Arraiatxu,,07/09/2020,14.0:15,15.0:45,43.407054000000,-1.641795000000,,"Plage d'Erromardi, Commune de Saint-Jean-de-Luz",37784,observation-f97b6957-11b0-4cea-9004-b4ae5f6b55d8,https://biolit.fr/observations/observation-f97b6957-11b0-4cea-9004-b4ae5f6b55d8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Spirorbis sp.-scaled.jpg,,FALSE, +N1,59056,sortie-f97b6957-11b0-4cea-9004-b4ae5f6b55d8,https://biolit.fr/sorties/sortie-f97b6957-11b0-4cea-9004-b4ae5f6b55d8/,Arraiatxu,,07/09/2020,14.0:15,15.0:45,43.407054000000,-1.641795000000,,"Plage d'Erromardi, Commune de Saint-Jean-de-Luz",37786,observation-f97b6957-11b0-4cea-9004-b4ae5f6b55d8-2,https://biolit.fr/observations/observation-f97b6957-11b0-4cea-9004-b4ae5f6b55d8-2/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Codium spp..jpg,,TRUE, +N1,59057,sortie-84ff638f-3a3d-4d69-8c41-4991f403db63,https://biolit.fr/sorties/sortie-84ff638f-3a3d-4d69-8c41-4991f403db63/,Marine,,6/25/2020 0:00,10.0000000,10.0:15,43.239887000000,5.362408000000,Planète Mer,Plage de la bonne brise,37788,observation-84ff638f-3a3d-4d69-8c41-4991f403db63,https://biolit.fr/observations/observation-84ff638f-3a3d-4d69-8c41-4991f403db63/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1367.JPG,,FALSE, +N1,59058,sortie-c7b38f31-7992-4137-8330-d4976b05d8bf,https://biolit.fr/sorties/sortie-c7b38f31-7992-4137-8330-d4976b05d8bf/,Roman,,6/29/2020 0:00,16.0000000,17.0000000,47.708499000000,-3.326519000000,,Riantec,37790,observation-c7b38f31-7992-4137-8330-d4976b05d8bf,https://biolit.fr/observations/observation-c7b38f31-7992-4137-8330-d4976b05d8bf/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/actinia equina pe.PNG,,TRUE, +N1,59058,sortie-c7b38f31-7992-4137-8330-d4976b05d8bf,https://biolit.fr/sorties/sortie-c7b38f31-7992-4137-8330-d4976b05d8bf/,Roman,,6/29/2020 0:00,16.0000000,17.0000000,47.708499000000,-3.326519000000,,Riantec,37792,observation-c7b38f31-7992-4137-8330-d4976b05d8bf-2,https://biolit.fr/observations/observation-c7b38f31-7992-4137-8330-d4976b05d8bf-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_6.PNG,,TRUE, +N1,59058,sortie-c7b38f31-7992-4137-8330-d4976b05d8bf,https://biolit.fr/sorties/sortie-c7b38f31-7992-4137-8330-d4976b05d8bf/,Roman,,6/29/2020 0:00,16.0000000,17.0000000,47.708499000000,-3.326519000000,,Riantec,37793,observation-c7b38f31-7992-4137-8330-d4976b05d8bf-3,https://biolit.fr/observations/observation-c7b38f31-7992-4137-8330-d4976b05d8bf-3/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_4.PNG,,TRUE, +N1,59058,sortie-c7b38f31-7992-4137-8330-d4976b05d8bf,https://biolit.fr/sorties/sortie-c7b38f31-7992-4137-8330-d4976b05d8bf/,Roman,,6/29/2020 0:00,16.0000000,17.0000000,47.708499000000,-3.326519000000,,Riantec,37794,observation-c7b38f31-7992-4137-8330-d4976b05d8bf-4,https://biolit.fr/observations/observation-c7b38f31-7992-4137-8330-d4976b05d8bf-4/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crepidula fornicata_1.PNG,,TRUE, +N1,59058,sortie-c7b38f31-7992-4137-8330-d4976b05d8bf,https://biolit.fr/sorties/sortie-c7b38f31-7992-4137-8330-d4976b05d8bf/,Roman,,6/29/2020 0:00,16.0000000,17.0000000,47.708499000000,-3.326519000000,,Riantec,37795,observation-c7b38f31-7992-4137-8330-d4976b05d8bf-5,https://biolit.fr/observations/observation-c7b38f31-7992-4137-8330-d4976b05d8bf-5/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/Echinocardium cordatum_0.PNG,,TRUE, +N1,59058,sortie-c7b38f31-7992-4137-8330-d4976b05d8bf,https://biolit.fr/sorties/sortie-c7b38f31-7992-4137-8330-d4976b05d8bf/,Roman,,6/29/2020 0:00,16.0000000,17.0000000,47.708499000000,-3.326519000000,,Riantec,37796,observation-c7b38f31-7992-4137-8330-d4976b05d8bf-6,https://biolit.fr/observations/observation-c7b38f31-7992-4137-8330-d4976b05d8bf-6/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_4.PNG,,TRUE, +N1,59058,sortie-c7b38f31-7992-4137-8330-d4976b05d8bf,https://biolit.fr/sorties/sortie-c7b38f31-7992-4137-8330-d4976b05d8bf/,Roman,,6/29/2020 0:00,16.0000000,17.0000000,47.708499000000,-3.326519000000,,Riantec,37797,observation-c7b38f31-7992-4137-8330-d4976b05d8bf-7,https://biolit.fr/observations/observation-c7b38f31-7992-4137-8330-d4976b05d8bf-7/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina obtusata.PNG,,TRUE, +N1,59058,sortie-c7b38f31-7992-4137-8330-d4976b05d8bf,https://biolit.fr/sorties/sortie-c7b38f31-7992-4137-8330-d4976b05d8bf/,Roman,,6/29/2020 0:00,16.0000000,17.0000000,47.708499000000,-3.326519000000,,Riantec,37798,observation-c7b38f31-7992-4137-8330-d4976b05d8bf-8,https://biolit.fr/observations/observation-c7b38f31-7992-4137-8330-d4976b05d8bf-8/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/phorcus lineata.PNG,,TRUE, +N1,59058,sortie-c7b38f31-7992-4137-8330-d4976b05d8bf,https://biolit.fr/sorties/sortie-c7b38f31-7992-4137-8330-d4976b05d8bf/,Roman,,6/29/2020 0:00,16.0000000,17.0000000,47.708499000000,-3.326519000000,,Riantec,37800,observation-c7b38f31-7992-4137-8330-d4976b05d8bf-9,https://biolit.fr/observations/observation-c7b38f31-7992-4137-8330-d4976b05d8bf-9/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes decussatus-scaled.jpg,,TRUE, +N1,59058,sortie-c7b38f31-7992-4137-8330-d4976b05d8bf,https://biolit.fr/sorties/sortie-c7b38f31-7992-4137-8330-d4976b05d8bf/,Roman,,6/29/2020 0:00,16.0000000,17.0000000,47.708499000000,-3.326519000000,,Riantec,37801,observation-c7b38f31-7992-4137-8330-d4976b05d8bf-10,https://biolit.fr/observations/observation-c7b38f31-7992-4137-8330-d4976b05d8bf-10/,Scrobicularia plana,Scrobiculaire,,https://biolit.fr/wp-content/uploads/2023/07/scrobicularia plana_0.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37803,observation-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_3.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37804,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-2,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/annélide sp_0.PNG,,FALSE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37806,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-3,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-3/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_1-scaled.jpg,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37807,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-4,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-4/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens_1.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37808,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-5,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-5/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/2023/07/blennie sp 1.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37810,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-6,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-6/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/2023/07/Blennie sp_1.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37811,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-7,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-7/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_5.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37812,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-8,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-8/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_3.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37813,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-9,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-9/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/Chthamalus stellatus-scaled.jpg,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37814,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-10,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-10/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Crassostrea gigas_0.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37815,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-11,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-11/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_3.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37816,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-12,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/membranipora sp.PNG,,FALSE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37818,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-13,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-13/,Mya arenaria,Mye des sables,,https://biolit.fr/wp-content/uploads/2023/07/mya arenaria_0.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37820,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-14,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-14/,Tritia incrassata,Nasse épaisse,,https://biolit.fr/wp-content/uploads/2023/07/Nassarius incrassatus.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37821,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-15,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-15/,Sedum acre,Orpin âcre,,https://biolit.fr/wp-content/uploads/2023/07/Non identifié.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37822,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-16,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-16/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_2.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37823,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-17,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-17/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebra erinaceus_0.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37824,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-18,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-18/,Amphipholis squamata,Ophiure écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/ophiure sp.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37826,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-19,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-19/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/Perforatus perforatus_0.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37827,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-20,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-20/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus-scaled.jpg,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37828,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-21,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-21/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/reste de protection de pectinaria.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37830,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-22,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-22/,Scrobicularia plana,Scrobiculaire,,https://biolit.fr/wp-content/uploads/2023/07/Scrobicularia plana.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37831,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-23,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-23/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/solen marginatus_0.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37833,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-24,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-24/,Venerupis corrugata,Palourde-poulette,,https://biolit.fr/wp-content/uploads/2023/07/Venerupis aurea_0.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37834,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-25,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-25/,Venerupis corrugata,Palourde-poulette,,https://biolit.fr/wp-content/uploads/2023/07/Venerupis corrugata.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37835,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-26,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-26/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa_2.PNG,,TRUE, +N1,59059,sortie-1c181a4d-db68-4849-b044-c78d5c2a446f,https://biolit.fr/sorties/sortie-1c181a4d-db68-4849-b044-c78d5c2a446f/,Roman,,6/28/2020 0:00,17.0000000,18.0000000,47.706802000000,-3.334105000000,,Riantec,37836,observation-1c181a4d-db68-4849-b044-c78d5c2a446f-27,https://biolit.fr/observations/observation-1c181a4d-db68-4849-b044-c78d5c2a446f-27/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_3.PNG,,TRUE, +N1,59060,sortie-0aba5ad0-315d-4726-80c5-97452d6f93fb,https://biolit.fr/sorties/sortie-0aba5ad0-315d-4726-80c5-97452d6f93fb/,Guillaume Rinaldi,,6/25/2020 0:00,11.0000000,11.0000000,43.239731000000,5.362372000000,,Plage du bain des dames ,37837,observation-0aba5ad0-315d-4726-80c5-97452d6f93fb,https://biolit.fr/observations/observation-0aba5ad0-315d-4726-80c5-97452d6f93fb/,,,,https://biolit.fr/wp-content/uploads/2023/07/105588249_542637806619535_6824579639601241545_n_0.jpg,,FALSE, +N1,59061,sortie-6348c2df-3bee-47c1-abac-8c62c31f77fe,https://biolit.fr/sorties/sortie-6348c2df-3bee-47c1-abac-8c62c31f77fe/,Marine,,6/25/2020 0:00,9.0000000,10.0000000,43.239996000000,5.362518000000,Planète Mer,Plage du bain des dames,37839,observation-6348c2df-3bee-47c1-abac-8c62c31f77fe,https://biolit.fr/observations/observation-6348c2df-3bee-47c1-abac-8c62c31f77fe/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Paracentrotus lividus Malori-BioLit.jpg,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37841,observation-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea/,,,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona sp.PNG,,FALSE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37843,observation-a276da00-e214-437e-ac85-8407879a63ea-2,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_1.PNG,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37844,observation-a276da00-e214-437e-ac85-8407879a63ea-3,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_0.PNG,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37845,observation-a276da00-e214-437e-ac85-8407879a63ea-4,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-4/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/annélides sp.PNG,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37847,observation-a276da00-e214-437e-ac85-8407879a63ea-5,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-5/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/aurelia aurtita pe.PNG,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37849,observation-a276da00-e214-437e-ac85-8407879a63ea-6,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-6/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_1.jpg,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37850,observation-a276da00-e214-437e-ac85-8407879a63ea-7,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-7/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/cereus pe.PNG,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37852,observation-a276da00-e214-437e-ac85-8407879a63ea-8,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-8/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/chthmalus sp.PNG,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37854,observation-a276da00-e214-437e-ac85-8407879a63ea-9,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Dynamene magnitorata.PNG,,FALSE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37856,observation-a276da00-e214-437e-ac85-8407879a63ea-10,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-10/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/Ligia oceanica.jpg,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37857,observation-a276da00-e214-437e-ac85-8407879a63ea-11,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-11/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/Melarhaphe neritoides-scaled.jpg,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37858,observation-a276da00-e214-437e-ac85-8407879a63ea-12,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-12/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_1.PNG,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37859,observation-a276da00-e214-437e-ac85-8407879a63ea-13,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-13/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus.PNG,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37861,observation-a276da00-e214-437e-ac85-8407879a63ea-14,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-14/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_0.PNG,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37862,observation-a276da00-e214-437e-ac85-8407879a63ea-15,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-15/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/Pagurus sp.PNG,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37863,observation-a276da00-e214-437e-ac85-8407879a63ea-16,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-16/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/palaemon elegans_0.PNG,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37865,observation-a276da00-e214-437e-ac85-8407879a63ea-17,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-17/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/Perforatus perforatus.PNG,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37866,observation-a276da00-e214-437e-ac85-8407879a63ea-18,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-18/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/Pollicipes pollicipes.PNG,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37868,observation-a276da00-e214-437e-ac85-8407879a63ea-19,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/porifera sp.PNG,,FALSE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37870,observation-a276da00-e214-437e-ac85-8407879a63ea-20,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-20/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/Sabellaria alveolata_0.PNG,,TRUE, +N1,59062,sortie-a276da00-e214-437e-ac85-8407879a63ea,https://biolit.fr/sorties/sortie-a276da00-e214-437e-ac85-8407879a63ea/,Roman,,6/20/2020 0:00,10.000005,11.0:45,47.644047000000,-3.450341000000,,Groix,37871,observation-a276da00-e214-437e-ac85-8407879a63ea-21,https://biolit.fr/observations/observation-a276da00-e214-437e-ac85-8407879a63ea-21/,Cilysta elegans,Sagartie élégante,,https://biolit.fr/wp-content/uploads/2023/07/Sagartia elegans pe.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37872,observation-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita.jpg,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37873,observation-6a685efa-6b87-415b-820e-419a4e74c605-2,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_0.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37874,observation-6a685efa-6b87-415b-820e-419a4e74c605-3,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-3/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea_2.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37875,observation-6a685efa-6b87-415b-820e-419a4e74c605-4,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-4/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_0.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37877,observation-6a685efa-6b87-415b-820e-419a4e74c605-5,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-5/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/Aulactinia verrucosa.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37879,observation-6a685efa-6b87-415b-820e-419a4e74c605-6,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-6/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_4.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37880,observation-6a685efa-6b87-415b-820e-419a4e74c605-7,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-7/,Doris verrucosa,Doris verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/doris verrucosa.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37881,observation-6a685efa-6b87-415b-820e-419a4e74c605-8,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-8/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/éponge sp-scaled.jpg,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37882,observation-6a685efa-6b87-415b-820e-419a4e74c605-9,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-9/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/Gravelle.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37883,observation-6a685efa-6b87-415b-820e-419a4e74c605-10,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-10/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/indéterminé 1.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37885,observation-6a685efa-6b87-415b-820e-419a4e74c605-11,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/indéterminé 2.PNG,,FALSE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37887,observation-6a685efa-6b87-415b-820e-419a4e74c605-12,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-12/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/indéterminé 3.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37889,observation-6a685efa-6b87-415b-820e-419a4e74c605-13,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-13/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/indéterminé 4.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37891,observation-6a685efa-6b87-415b-820e-419a4e74c605-14,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-14/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/2023/07/indéterminé 5.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37893,observation-6a685efa-6b87-415b-820e-419a4e74c605-15,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/indéterminé 6.PNG,,FALSE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37895,observation-6a685efa-6b87-415b-820e-419a4e74c605-16,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/indéterminé 7.PNG,,FALSE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37897,observation-6a685efa-6b87-415b-820e-419a4e74c605-17,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-17/,Jorunna tomentosa,Jorunna blanche,,https://biolit.fr/wp-content/uploads/2023/07/indéterminé 8.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37899,observation-6a685efa-6b87-415b-820e-419a4e74c605-18,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/indéterminé_0.PNG,,FALSE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37901,observation-6a685efa-6b87-415b-820e-419a4e74c605-19,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-19/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_2.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37902,observation-6a685efa-6b87-415b-820e-419a4e74c605-20,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-20/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/meduse-scaled.jpg,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37903,observation-6a685efa-6b87-415b-820e-419a4e74c605-21,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-21/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_0-scaled.jpg,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37904,observation-6a685efa-6b87-415b-820e-419a4e74c605-22,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-22/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Paracentrotus lividus.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37906,observation-6a685efa-6b87-415b-820e-419a4e74c605-23,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-23/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Patella ulyssiponensis.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37907,observation-6a685efa-6b87-415b-820e-419a4e74c605-24,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-24/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus-scaled.jpg,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37908,observation-6a685efa-6b87-415b-820e-419a4e74c605-25,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-25/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_2.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37909,observation-6a685efa-6b87-415b-820e-419a4e74c605-26,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-26/,Cilysta elegans,Sagartie élégante,,https://biolit.fr/wp-content/uploads/2023/07/Sagartia elegans.PNG,,TRUE, +N1,59063,sortie-6a685efa-6b87-415b-820e-419a4e74c605,https://biolit.fr/sorties/sortie-6a685efa-6b87-415b-820e-419a4e74c605/,Roman,,6/14/2020 0:00,15.0000000,16.0000000,47.704665000000,-3.356163000000,,Port-Louis,37910,observation-6a685efa-6b87-415b-820e-419a4e74c605-27,https://biolit.fr/observations/observation-6a685efa-6b87-415b-820e-419a4e74c605-27/,Sphaeromatidae (famille),Sphéromiens,,https://biolit.fr/wp-content/uploads/2023/07/sphéromiens.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37912,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium_0.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37913,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-2,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-2/,Antalis vulgaris,Dentale,,https://biolit.fr/wp-content/uploads/2023/07/Antalis vulgaris_0.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37915,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-3,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-3/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/Aplysia punctata_0.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37916,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-4,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-4/,Barnea candida,Pholade blanche,,https://biolit.fr/wp-content/uploads/2023/07/Barnea candida_0.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37918,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-5,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-5/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/buccinum undatum_0.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37920,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-6,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-6/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Calliostoma zyziphinum.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37922,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-7,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-7/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus_0.jpg,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37923,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-8,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-8/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_3.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37924,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-9,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-9/,Donax vittatus,Donace des canards,,https://biolit.fr/wp-content/uploads/2023/07/Donax vittatus.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37926,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-10,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-10/,Dosinia exoleta,Dosinie radiée,,https://biolit.fr/wp-content/uploads/2023/07/Dosinia exoleta_0.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37927,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-11,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-11/,Echinocyamus pusillus,Fève de mer,,https://biolit.fr/wp-content/uploads/2023/07/echinocyamus pusillus_1.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37929,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-12,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-12/,Ensis siliqua,Couteau-silique,,https://biolit.fr/wp-content/uploads/2023/07/Ensis siliqua.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37931,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-13,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-13/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Eriphia verrucosa.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37933,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-14,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-14/,Euspira catena,Natice porte-chaîne,,https://biolit.fr/wp-content/uploads/2023/07/Eutice catena.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37934,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-15,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/indéterminé.PNG,,FALSE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37936,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-16,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-16/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/indéterminée.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37938,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-17,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-17/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/Larus argentatus.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37939,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-18,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-18/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/Larus marinus.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37941,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-19,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-19/,Lutraria magna,Grande lutraire,,https://biolit.fr/wp-content/uploads/2023/07/lutraria magna_1.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37943,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-20,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-20/,Macoma balthica,Telline de la Baltique,,https://biolit.fr/wp-content/uploads/2023/07/Macoma balthica.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37945,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-21,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-21/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/oeuf de seiche.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37947,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-22,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-22/,Pholas dactylus,Pholade,,https://biolit.fr/wp-content/uploads/2023/07/pholas dactylus_0.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37949,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-23,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-23/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/2023/07/rhizostoma octopus.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37951,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-24,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-24/,Trivia arctica,Grain de café rose,,https://biolit.fr/wp-content/uploads/2023/07/Trivia arctica_0.PNG,,TRUE, +N1,59064,sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83,https://biolit.fr/sorties/sortie-c094a34e-bbb7-40ad-9d7d-5b2453cebb83/,Roman,,6/13/2020 0:00,16.0000000,17.0:15,47.692536000000,-3.352403000000,,Le linès,37952,observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-25,https://biolit.fr/observations/observation-c094a34e-bbb7-40ad-9d7d-5b2453cebb83-25/,Turritellinella tricarinata,Turritelle commune,,https://biolit.fr/wp-content/uploads/2023/07/turitella communis_1.PNG,,TRUE, +N1,59066,sortie-c530b34b-2efd-416c-bef2-1b0ffd918770,https://biolit.fr/sorties/sortie-c530b34b-2efd-416c-bef2-1b0ffd918770/,Marine,,06/08/2020,10.0000000,10.000005,43.247579000000,5.402083000000,,Maison,37984,observation-c530b34b-2efd-416c-bef2-1b0ffd918770,https://biolit.fr/observations/observation-c530b34b-2efd-416c-bef2-1b0ffd918770/,,,,https://biolit.fr/wp-content/uploads/2023/07/E224E8E6-2482-4248-ABE0-8260761F91A9-scaled.jpeg,,FALSE, +N1,59067,sortie-12677b21-1519-41d2-bebc-0d337a599618,https://biolit.fr/sorties/sortie-12677b21-1519-41d2-bebc-0d337a599618/,Caterina Casagranda,,06/08/2020,10.0000000,10.0000000,43.291793000000,5.379142000000,,Marseille,,,,,,,,,, +N1,59068,sortie-651be0d6-d92f-494f-9d6e-950ce88b4069,https://biolit.fr/sorties/sortie-651be0d6-d92f-494f-9d6e-950ce88b4069/,Phil,,5/24/2020 0:00,13.0000000,13.0:35,48.207998000000,-4.373803000000,,Telgruc-sur-Mer - Finistère,37998,observation-651be0d6-d92f-494f-9d6e-950ce88b4069,https://biolit.fr/observations/observation-651be0d6-d92f-494f-9d6e-950ce88b4069/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/20200524_133722.jpg,,TRUE, +N1,59068,sortie-651be0d6-d92f-494f-9d6e-950ce88b4069,https://biolit.fr/sorties/sortie-651be0d6-d92f-494f-9d6e-950ce88b4069/,Phil,,5/24/2020 0:00,13.0000000,13.0:35,48.207998000000,-4.373803000000,,Telgruc-sur-Mer - Finistère,38000,observation-651be0d6-d92f-494f-9d6e-950ce88b4069-2,https://biolit.fr/observations/observation-651be0d6-d92f-494f-9d6e-950ce88b4069-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20200524_133734.jpg,,TRUE, +N1,59068,sortie-651be0d6-d92f-494f-9d6e-950ce88b4069,https://biolit.fr/sorties/sortie-651be0d6-d92f-494f-9d6e-950ce88b4069/,Phil,,5/24/2020 0:00,13.0000000,13.0:35,48.207998000000,-4.373803000000,,Telgruc-sur-Mer - Finistère,38002,observation-651be0d6-d92f-494f-9d6e-950ce88b4069-3,https://biolit.fr/observations/observation-651be0d6-d92f-494f-9d6e-950ce88b4069-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130766.JPG,,FALSE, +N1,59068,sortie-651be0d6-d92f-494f-9d6e-950ce88b4069,https://biolit.fr/sorties/sortie-651be0d6-d92f-494f-9d6e-950ce88b4069/,Phil,,5/24/2020 0:00,13.0000000,13.0:35,48.207998000000,-4.373803000000,,Telgruc-sur-Mer - Finistère,38004,observation-651be0d6-d92f-494f-9d6e-950ce88b4069-4,https://biolit.fr/observations/observation-651be0d6-d92f-494f-9d6e-950ce88b4069-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130767.JPG,,FALSE, +N1,59069,sortie-bc0881c2-a94c-4227-ad41-dc68a64df2a5,https://biolit.fr/sorties/sortie-bc0881c2-a94c-4227-ad41-dc68a64df2a5/,Romuald VIALE - EXPENATURE,,06/01/2020,12.0000000,14.0000000,43.180550000000,5.61281800000,,La Ciotat,38006,observation-bc0881c2-a94c-4227-ad41-dc68a64df2a5,https://biolit.fr/observations/observation-bc0881c2-a94c-4227-ad41-dc68a64df2a5/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/101277279_703298370405543_2451913098898964480_n.jpg,,TRUE, +N1,59070,sortie-b349292c-4a37-408b-93f1-45a3ab183406,https://biolit.fr/sorties/sortie-b349292c-4a37-408b-93f1-45a3ab183406/,Phil,,5/22/2020 0:00,11.0:45,12.0000000,47.799595000000,-4.178826000000,,Loctudy - Finistère,38008,observation-b349292c-4a37-408b-93f1-45a3ab183406,https://biolit.fr/observations/observation-b349292c-4a37-408b-93f1-45a3ab183406/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/20200522_120128.jpg,,TRUE, +N1,59070,sortie-b349292c-4a37-408b-93f1-45a3ab183406,https://biolit.fr/sorties/sortie-b349292c-4a37-408b-93f1-45a3ab183406/,Phil,,5/22/2020 0:00,11.0:45,12.0000000,47.799595000000,-4.178826000000,,Loctudy - Finistère,38010,observation-b349292c-4a37-408b-93f1-45a3ab183406-2,https://biolit.fr/observations/observation-b349292c-4a37-408b-93f1-45a3ab183406-2/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/20200522_120107.jpg,,TRUE, +N1,59070,sortie-b349292c-4a37-408b-93f1-45a3ab183406,https://biolit.fr/sorties/sortie-b349292c-4a37-408b-93f1-45a3ab183406/,Phil,,5/22/2020 0:00,11.0:45,12.0000000,47.799595000000,-4.178826000000,,Loctudy - Finistère,38012,observation-b349292c-4a37-408b-93f1-45a3ab183406-3,https://biolit.fr/observations/observation-b349292c-4a37-408b-93f1-45a3ab183406-3/,Callochiton septemvalvis,Callochiton,,https://biolit.fr/wp-content/uploads/2023/07/20200522_115246.jpg,,TRUE, +N1,59070,sortie-b349292c-4a37-408b-93f1-45a3ab183406,https://biolit.fr/sorties/sortie-b349292c-4a37-408b-93f1-45a3ab183406/,Phil,,5/22/2020 0:00,11.0:45,12.0000000,47.799595000000,-4.178826000000,,Loctudy - Finistère,38014,observation-b349292c-4a37-408b-93f1-45a3ab183406-4,https://biolit.fr/observations/observation-b349292c-4a37-408b-93f1-45a3ab183406-4/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/20200522_120100.jpg,,TRUE, +N1,59071,sortie-ba5f0e75-1ec8-4413-9dd9-f89aa734688b,https://biolit.fr/sorties/sortie-ba5f0e75-1ec8-4413-9dd9-f89aa734688b/,Phil,,5/24/2020 0:00,12.0000000,12.0:35,48.208471000000,-4.372395000000,,Telgruc-sur-Mer - Finistère,38016,observation-ba5f0e75-1ec8-4413-9dd9-f89aa734688b,https://biolit.fr/observations/observation-ba5f0e75-1ec8-4413-9dd9-f89aa734688b/,Spondyliosoma cantharus,Dorade grise,,https://biolit.fr/wp-content/uploads/2023/07/P1130831.JPG,,TRUE, +N1,59071,sortie-ba5f0e75-1ec8-4413-9dd9-f89aa734688b,https://biolit.fr/sorties/sortie-ba5f0e75-1ec8-4413-9dd9-f89aa734688b/,Phil,,5/24/2020 0:00,12.0000000,12.0:35,48.208471000000,-4.372395000000,,Telgruc-sur-Mer - Finistère,38018,observation-ba5f0e75-1ec8-4413-9dd9-f89aa734688b-2,https://biolit.fr/observations/observation-ba5f0e75-1ec8-4413-9dd9-f89aa734688b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130830.JPG,,FALSE, +N1,59072,sortie-303dd5c2-c14a-40ea-a754-e7817b45dd39,https://biolit.fr/sorties/sortie-303dd5c2-c14a-40ea-a754-e7817b45dd39/,Romuald VIALE - EXPENATURE,,5/26/2020 0:00,19.0000000,20.0000000,43.160390000000,5.614374000000,,La Ciotat,38020,observation-303dd5c2-c14a-40ea-a754-e7817b45dd39,https://biolit.fr/observations/observation-303dd5c2-c14a-40ea-a754-e7817b45dd39/,,,,https://biolit.fr/wp-content/uploads/2023/07/100501376_540476109964488_2525554174364483584_n.jpg,,FALSE, +N1,59073,sortie-c0b5a476-97b5-4443-a795-0362b7768e66,https://biolit.fr/sorties/sortie-c0b5a476-97b5-4443-a795-0362b7768e66/,Phil,,5/22/2020 0:00,11.0000000,11.0000000,47.798145000000,-4.180383000000,,Loctudy - Finistère,38022,observation-c0b5a476-97b5-4443-a795-0362b7768e66,https://biolit.fr/observations/observation-c0b5a476-97b5-4443-a795-0362b7768e66/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20200522_113940.jpg,,TRUE, +N1,59073,sortie-c0b5a476-97b5-4443-a795-0362b7768e66,https://biolit.fr/sorties/sortie-c0b5a476-97b5-4443-a795-0362b7768e66/,Phil,,5/22/2020 0:00,11.0000000,11.0000000,47.798145000000,-4.180383000000,,Loctudy - Finistère,38024,observation-c0b5a476-97b5-4443-a795-0362b7768e66-2,https://biolit.fr/observations/observation-c0b5a476-97b5-4443-a795-0362b7768e66-2/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200522_113801.jpg,,TRUE, +N1,59073,sortie-c0b5a476-97b5-4443-a795-0362b7768e66,https://biolit.fr/sorties/sortie-c0b5a476-97b5-4443-a795-0362b7768e66/,Phil,,5/22/2020 0:00,11.0000000,11.0000000,47.798145000000,-4.180383000000,,Loctudy - Finistère,38026,observation-c0b5a476-97b5-4443-a795-0362b7768e66-3,https://biolit.fr/observations/observation-c0b5a476-97b5-4443-a795-0362b7768e66-3/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200522_113741.jpg,,TRUE, +N1,59073,sortie-c0b5a476-97b5-4443-a795-0362b7768e66,https://biolit.fr/sorties/sortie-c0b5a476-97b5-4443-a795-0362b7768e66/,Phil,,5/22/2020 0:00,11.0000000,11.0000000,47.798145000000,-4.180383000000,,Loctudy - Finistère,38028,observation-c0b5a476-97b5-4443-a795-0362b7768e66-4,https://biolit.fr/observations/observation-c0b5a476-97b5-4443-a795-0362b7768e66-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200522_113544.jpg,,TRUE, +N1,59074,sortie-a83504b7-0dd3-4706-aa41-7b7727dd2650,https://biolit.fr/sorties/sortie-a83504b7-0dd3-4706-aa41-7b7727dd2650/,Phil,,5/24/2020 0:00,12.0000000,12.0000000,48.208816000000,-4.371056000000,,Telgruc-sur-Mer - Finistère,38030,observation-a83504b7-0dd3-4706-aa41-7b7727dd2650,https://biolit.fr/observations/observation-a83504b7-0dd3-4706-aa41-7b7727dd2650/,Anthus petrosus,Pipit maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1130847.JPG,,TRUE, +N1,59074,sortie-a83504b7-0dd3-4706-aa41-7b7727dd2650,https://biolit.fr/sorties/sortie-a83504b7-0dd3-4706-aa41-7b7727dd2650/,Phil,,5/24/2020 0:00,12.0000000,12.0000000,48.208816000000,-4.371056000000,,Telgruc-sur-Mer - Finistère,38032,observation-a83504b7-0dd3-4706-aa41-7b7727dd2650-2,https://biolit.fr/observations/observation-a83504b7-0dd3-4706-aa41-7b7727dd2650-2/,Anthus petrosus,Pipit maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1130850.JPG,,TRUE, +N1,59075,sortie-f82d13a9-8ff6-4a20-9a8f-98434bb7ee84,https://biolit.fr/sorties/sortie-f82d13a9-8ff6-4a20-9a8f-98434bb7ee84/,Phil,,5/22/2020 0:00,11.0000000,11.0000000,47.798940000000,-4.180193000000,,Loctudy - Finistère,38034,observation-f82d13a9-8ff6-4a20-9a8f-98434bb7ee84,https://biolit.fr/observations/observation-f82d13a9-8ff6-4a20-9a8f-98434bb7ee84/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/20200522_112323.jpg,,TRUE, +N1,59075,sortie-f82d13a9-8ff6-4a20-9a8f-98434bb7ee84,https://biolit.fr/sorties/sortie-f82d13a9-8ff6-4a20-9a8f-98434bb7ee84/,Phil,,5/22/2020 0:00,11.0000000,11.0000000,47.798940000000,-4.180193000000,,Loctudy - Finistère,38036,observation-f82d13a9-8ff6-4a20-9a8f-98434bb7ee84-2,https://biolit.fr/observations/observation-f82d13a9-8ff6-4a20-9a8f-98434bb7ee84-2/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/20200522_112329.jpg,,TRUE, +N1,59075,sortie-f82d13a9-8ff6-4a20-9a8f-98434bb7ee84,https://biolit.fr/sorties/sortie-f82d13a9-8ff6-4a20-9a8f-98434bb7ee84/,Phil,,5/22/2020 0:00,11.0000000,11.0000000,47.798940000000,-4.180193000000,,Loctudy - Finistère,38038,observation-f82d13a9-8ff6-4a20-9a8f-98434bb7ee84-3,https://biolit.fr/observations/observation-f82d13a9-8ff6-4a20-9a8f-98434bb7ee84-3/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/20200522_112613.jpg,,TRUE, +N1,59075,sortie-f82d13a9-8ff6-4a20-9a8f-98434bb7ee84,https://biolit.fr/sorties/sortie-f82d13a9-8ff6-4a20-9a8f-98434bb7ee84/,Phil,,5/22/2020 0:00,11.0000000,11.0000000,47.798940000000,-4.180193000000,,Loctudy - Finistère,38040,observation-f82d13a9-8ff6-4a20-9a8f-98434bb7ee84-4,https://biolit.fr/observations/observation-f82d13a9-8ff6-4a20-9a8f-98434bb7ee84-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_113036.jpg,,FALSE, +N1,59076,sortie-1353d8e3-3939-48fb-bba6-1e61e8ec2263,https://biolit.fr/sorties/sortie-1353d8e3-3939-48fb-bba6-1e61e8ec2263/,Phil,,5/22/2020 0:00,10.0000000,11.0:15,47.799982000000,-4.181499000000,,Loctudy - Finistère,38042,observation-1353d8e3-3939-48fb-bba6-1e61e8ec2263,https://biolit.fr/observations/observation-1353d8e3-3939-48fb-bba6-1e61e8ec2263/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_104037.jpg,,FALSE, +N1,59076,sortie-1353d8e3-3939-48fb-bba6-1e61e8ec2263,https://biolit.fr/sorties/sortie-1353d8e3-3939-48fb-bba6-1e61e8ec2263/,Phil,,5/22/2020 0:00,10.0000000,11.0:15,47.799982000000,-4.181499000000,,Loctudy - Finistère,38044,observation-1353d8e3-3939-48fb-bba6-1e61e8ec2263-2,https://biolit.fr/observations/observation-1353d8e3-3939-48fb-bba6-1e61e8ec2263-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_104050.jpg,,FALSE, +N1,59076,sortie-1353d8e3-3939-48fb-bba6-1e61e8ec2263,https://biolit.fr/sorties/sortie-1353d8e3-3939-48fb-bba6-1e61e8ec2263/,Phil,,5/22/2020 0:00,10.0000000,11.0:15,47.799982000000,-4.181499000000,,Loctudy - Finistère,38046,observation-1353d8e3-3939-48fb-bba6-1e61e8ec2263-3,https://biolit.fr/observations/observation-1353d8e3-3939-48fb-bba6-1e61e8ec2263-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200522_103608.jpg,,FALSE, +N1,59076,sortie-1353d8e3-3939-48fb-bba6-1e61e8ec2263,https://biolit.fr/sorties/sortie-1353d8e3-3939-48fb-bba6-1e61e8ec2263/,Phil,,5/22/2020 0:00,10.0000000,11.0:15,47.799982000000,-4.181499000000,,Loctudy - Finistère,38048,observation-1353d8e3-3939-48fb-bba6-1e61e8ec2263-4,https://biolit.fr/observations/observation-1353d8e3-3939-48fb-bba6-1e61e8ec2263-4/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200522_111615.jpg,,TRUE, +N1,59076,sortie-1353d8e3-3939-48fb-bba6-1e61e8ec2263,https://biolit.fr/sorties/sortie-1353d8e3-3939-48fb-bba6-1e61e8ec2263/,Phil,,5/22/2020 0:00,10.0000000,11.0:15,47.799982000000,-4.181499000000,,Loctudy - Finistère,38050,observation-1353d8e3-3939-48fb-bba6-1e61e8ec2263-5,https://biolit.fr/observations/observation-1353d8e3-3939-48fb-bba6-1e61e8ec2263-5/,Lichina pygmaea,Lichen pygmée,,https://biolit.fr/wp-content/uploads/2023/07/20200522_111821.jpg,,TRUE, +N1,59077,sortie-0a6e996c-1007-4321-b27e-0ea144645a12,https://biolit.fr/sorties/sortie-0a6e996c-1007-4321-b27e-0ea144645a12/,Phil,,5/22/2020 0:00,10.0:45,10.0:45,47.801718000000,-4.182409000000,,Loctudy - Finistère,38052,observation-0a6e996c-1007-4321-b27e-0ea144645a12,https://biolit.fr/observations/observation-0a6e996c-1007-4321-b27e-0ea144645a12/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/20200522_104459.jpg,,TRUE, +N1,59077,sortie-0a6e996c-1007-4321-b27e-0ea144645a12,https://biolit.fr/sorties/sortie-0a6e996c-1007-4321-b27e-0ea144645a12/,Phil,,5/22/2020 0:00,10.0:45,10.0:45,47.801718000000,-4.182409000000,,Loctudy - Finistère,38054,observation-0a6e996c-1007-4321-b27e-0ea144645a12-2,https://biolit.fr/observations/observation-0a6e996c-1007-4321-b27e-0ea144645a12-2/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/20200522_104455.jpg,,TRUE, +N1,59078,sortie-279c65ae-d995-4dc7-958a-d63b5499aabb,https://biolit.fr/sorties/sortie-279c65ae-d995-4dc7-958a-d63b5499aabb/,Céline,,5/21/2020 0:00,12.0000000,12.0:45,43.3260990,5.0544840,,Phare de carro,38056,observation-279c65ae-d995-4dc7-958a-d63b5499aabb,https://biolit.fr/observations/observation-279c65ae-d995-4dc7-958a-d63b5499aabb/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1255-scaled.jpg,,TRUE, +N1,59079,sortie-e07f6082-3eab-4f22-811a-44a852b40b44,https://biolit.fr/sorties/sortie-e07f6082-3eab-4f22-811a-44a852b40b44/,Phil,,3/13/2020 0:00,13.0000000,13.0000000,47.797722000000,-4.178937000000,,Loctudy - Finistère,38058,observation-e07f6082-3eab-4f22-811a-44a852b40b44,https://biolit.fr/observations/observation-e07f6082-3eab-4f22-811a-44a852b40b44/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20200313_150414.jpg,,TRUE, +N1,59079,sortie-e07f6082-3eab-4f22-811a-44a852b40b44,https://biolit.fr/sorties/sortie-e07f6082-3eab-4f22-811a-44a852b40b44/,Phil,,3/13/2020 0:00,13.0000000,13.0000000,47.797722000000,-4.178937000000,,Loctudy - Finistère,38060,observation-e07f6082-3eab-4f22-811a-44a852b40b44-2,https://biolit.fr/observations/observation-e07f6082-3eab-4f22-811a-44a852b40b44-2/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20200313_134102.jpg,,TRUE, +N1,59079,sortie-e07f6082-3eab-4f22-811a-44a852b40b44,https://biolit.fr/sorties/sortie-e07f6082-3eab-4f22-811a-44a852b40b44/,Phil,,3/13/2020 0:00,13.0000000,13.0000000,47.797722000000,-4.178937000000,,Loctudy - Finistère,38062,observation-e07f6082-3eab-4f22-811a-44a852b40b44-3,https://biolit.fr/observations/observation-e07f6082-3eab-4f22-811a-44a852b40b44-3/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20200313_134050.jpg,,TRUE, +N1,59079,sortie-e07f6082-3eab-4f22-811a-44a852b40b44,https://biolit.fr/sorties/sortie-e07f6082-3eab-4f22-811a-44a852b40b44/,Phil,,3/13/2020 0:00,13.0000000,13.0000000,47.797722000000,-4.178937000000,,Loctudy - Finistère,38064,observation-e07f6082-3eab-4f22-811a-44a852b40b44-4,https://biolit.fr/observations/observation-e07f6082-3eab-4f22-811a-44a852b40b44-4/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20200313_134123.jpg,,TRUE, +N1,59079,sortie-e07f6082-3eab-4f22-811a-44a852b40b44,https://biolit.fr/sorties/sortie-e07f6082-3eab-4f22-811a-44a852b40b44/,Phil,,3/13/2020 0:00,13.0000000,13.0000000,47.797722000000,-4.178937000000,,Loctudy - Finistère,38066,observation-e07f6082-3eab-4f22-811a-44a852b40b44-5,https://biolit.fr/observations/observation-e07f6082-3eab-4f22-811a-44a852b40b44-5/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20200313_134704.jpg,,TRUE, +N1,59080,sortie-bbecf124-b110-4123-91dd-3456b50cd29a,https://biolit.fr/sorties/sortie-bbecf124-b110-4123-91dd-3456b50cd29a/,Phil,,2/14/2020 0:00,14.0000000,14.0000000,47.800295000000,-4.179946000000,,Loctudy - Finistère,38068,observation-bbecf124-b110-4123-91dd-3456b50cd29a,https://biolit.fr/observations/observation-bbecf124-b110-4123-91dd-3456b50cd29a/,Aplysia depilans,Aplysie visqueuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4169.JPG,,TRUE, +N1,59080,sortie-bbecf124-b110-4123-91dd-3456b50cd29a,https://biolit.fr/sorties/sortie-bbecf124-b110-4123-91dd-3456b50cd29a/,Phil,,2/14/2020 0:00,14.0000000,14.0000000,47.800295000000,-4.179946000000,,Loctudy - Finistère,38070,observation-bbecf124-b110-4123-91dd-3456b50cd29a-2,https://biolit.fr/observations/observation-bbecf124-b110-4123-91dd-3456b50cd29a-2/,Aplysia depilans,Aplysie visqueuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4177.JPG,,TRUE, +N1,59080,sortie-bbecf124-b110-4123-91dd-3456b50cd29a,https://biolit.fr/sorties/sortie-bbecf124-b110-4123-91dd-3456b50cd29a/,Phil,,2/14/2020 0:00,14.0000000,14.0000000,47.800295000000,-4.179946000000,,Loctudy - Finistère,38072,observation-bbecf124-b110-4123-91dd-3456b50cd29a-3,https://biolit.fr/observations/observation-bbecf124-b110-4123-91dd-3456b50cd29a-3/,Aplysia depilans,Aplysie visqueuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4171.JPG,,TRUE, +N1,59080,sortie-bbecf124-b110-4123-91dd-3456b50cd29a,https://biolit.fr/sorties/sortie-bbecf124-b110-4123-91dd-3456b50cd29a/,Phil,,2/14/2020 0:00,14.0000000,14.0000000,47.800295000000,-4.179946000000,,Loctudy - Finistère,38076,observation-bbecf124-b110-4123-91dd-3456b50cd29a-5,https://biolit.fr/observations/observation-bbecf124-b110-4123-91dd-3456b50cd29a-5/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4186.JPG,,TRUE, +N1,59080,sortie-bbecf124-b110-4123-91dd-3456b50cd29a,https://biolit.fr/sorties/sortie-bbecf124-b110-4123-91dd-3456b50cd29a/,Phil,,2/14/2020 0:00,14.0000000,14.0000000,47.800295000000,-4.179946000000,,Loctudy - Finistère,38078,observation-bbecf124-b110-4123-91dd-3456b50cd29a-6,https://biolit.fr/observations/observation-bbecf124-b110-4123-91dd-3456b50cd29a-6/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2020/02/IMG_4179.jpg | https://biolit.fr/wp-content/uploads/2023/07/IMG_4180.JPG,,TRUE, +N1,59080,sortie-bbecf124-b110-4123-91dd-3456b50cd29a,https://biolit.fr/sorties/sortie-bbecf124-b110-4123-91dd-3456b50cd29a/,Phil,,2/14/2020 0:00,14.0000000,14.0000000,47.800295000000,-4.179946000000,,Loctudy - Finistère,38080,observation-bbecf124-b110-4123-91dd-3456b50cd29a-7,https://biolit.fr/observations/observation-bbecf124-b110-4123-91dd-3456b50cd29a-7/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4181.JPG,,TRUE, +N1,59081,sortie-34fd7c3f-f945-4dcc-8213-c7a86f9b904e,https://biolit.fr/sorties/sortie-34fd7c3f-f945-4dcc-8213-c7a86f9b904e/,Phil,,2/21/2020 0:00,12.0000000,12.0:45,47.796337000000,-4.356978000000,,Penmarc'h - Finistère,38082,observation-34fd7c3f-f945-4dcc-8213-c7a86f9b904e,https://biolit.fr/observations/observation-34fd7c3f-f945-4dcc-8213-c7a86f9b904e/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/P1130686.JPG,,TRUE, +N1,59081,sortie-34fd7c3f-f945-4dcc-8213-c7a86f9b904e,https://biolit.fr/sorties/sortie-34fd7c3f-f945-4dcc-8213-c7a86f9b904e/,Phil,,2/21/2020 0:00,12.0000000,12.0:45,47.796337000000,-4.356978000000,,Penmarc'h - Finistère,38084,observation-34fd7c3f-f945-4dcc-8213-c7a86f9b904e-2,https://biolit.fr/observations/observation-34fd7c3f-f945-4dcc-8213-c7a86f9b904e-2/,Conus textile,Cône drap-d'or,,https://biolit.fr/wp-content/uploads/2023/07/P1130692.JPG,,FALSE, +N1,59081,sortie-34fd7c3f-f945-4dcc-8213-c7a86f9b904e,https://biolit.fr/sorties/sortie-34fd7c3f-f945-4dcc-8213-c7a86f9b904e/,Phil,,2/21/2020 0:00,12.0000000,12.0:45,47.796337000000,-4.356978000000,,Penmarc'h - Finistère,38086,observation-34fd7c3f-f945-4dcc-8213-c7a86f9b904e-3,https://biolit.fr/observations/observation-34fd7c3f-f945-4dcc-8213-c7a86f9b904e-3/,Conus textile,Cône drap-d'or,,https://biolit.fr/wp-content/uploads/2023/07/P1130691.JPG,,FALSE, +N1,59081,sortie-34fd7c3f-f945-4dcc-8213-c7a86f9b904e,https://biolit.fr/sorties/sortie-34fd7c3f-f945-4dcc-8213-c7a86f9b904e/,Phil,,2/21/2020 0:00,12.0000000,12.0:45,47.796337000000,-4.356978000000,,Penmarc'h - Finistère,38088,observation-34fd7c3f-f945-4dcc-8213-c7a86f9b904e-4,https://biolit.fr/observations/observation-34fd7c3f-f945-4dcc-8213-c7a86f9b904e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130694.JPG,,FALSE, +N1,59081,sortie-34fd7c3f-f945-4dcc-8213-c7a86f9b904e,https://biolit.fr/sorties/sortie-34fd7c3f-f945-4dcc-8213-c7a86f9b904e/,Phil,,2/21/2020 0:00,12.0000000,12.0:45,47.796337000000,-4.356978000000,,Penmarc'h - Finistère,38090,observation-34fd7c3f-f945-4dcc-8213-c7a86f9b904e-5,https://biolit.fr/observations/observation-34fd7c3f-f945-4dcc-8213-c7a86f9b904e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130685.JPG,,FALSE, +N1,59082,sortie-5309e694-67d8-40da-bd38-3c32f9a5863d,https://biolit.fr/sorties/sortie-5309e694-67d8-40da-bd38-3c32f9a5863d/,Phil,,3/13/2020 0:00,12.0:55,13.000005,47.798700000000,-4.177882000000,,Loctudy - Finistère,38092,observation-5309e694-67d8-40da-bd38-3c32f9a5863d,https://biolit.fr/observations/observation-5309e694-67d8-40da-bd38-3c32f9a5863d/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_125949.jpg,,FALSE, +N1,59082,sortie-5309e694-67d8-40da-bd38-3c32f9a5863d,https://biolit.fr/sorties/sortie-5309e694-67d8-40da-bd38-3c32f9a5863d/,Phil,,3/13/2020 0:00,12.0:55,13.000005,47.798700000000,-4.177882000000,,Loctudy - Finistère,38094,observation-5309e694-67d8-40da-bd38-3c32f9a5863d-2,https://biolit.fr/observations/observation-5309e694-67d8-40da-bd38-3c32f9a5863d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_130101.jpg,,FALSE, +N1,59082,sortie-5309e694-67d8-40da-bd38-3c32f9a5863d,https://biolit.fr/sorties/sortie-5309e694-67d8-40da-bd38-3c32f9a5863d/,Phil,,3/13/2020 0:00,12.0:55,13.000005,47.798700000000,-4.177882000000,,Loctudy - Finistère,38096,observation-5309e694-67d8-40da-bd38-3c32f9a5863d-3,https://biolit.fr/observations/observation-5309e694-67d8-40da-bd38-3c32f9a5863d-3/,Holothuria (Holothuria) tubulosa,Holothurie tubuleuse,,https://biolit.fr/wp-content/uploads/2023/07/20200313_130217.jpg,,TRUE, +N1,59083,sortie-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c,https://biolit.fr/sorties/sortie-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c/,Phil,,3/13/2020 0:00,13.0:25,13.0000000,47.798322000000,-4.178740000000,,Loctudy - Finistère,38098,observation-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c,https://biolit.fr/observations/observation-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/20200313_132559.jpg,,TRUE, +N1,59083,sortie-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c,https://biolit.fr/sorties/sortie-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c/,Phil,,3/13/2020 0:00,13.0:25,13.0000000,47.798322000000,-4.178740000000,,Loctudy - Finistère,38100,observation-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c-2,https://biolit.fr/observations/observation-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c-2/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/20200313_132542.jpg,,TRUE, +N1,59083,sortie-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c,https://biolit.fr/sorties/sortie-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c/,Phil,,3/13/2020 0:00,13.0:25,13.0000000,47.798322000000,-4.178740000000,,Loctudy - Finistère,38102,observation-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c-3,https://biolit.fr/observations/observation-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c-3/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20200313_134042.jpg,,TRUE, +N1,59083,sortie-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c,https://biolit.fr/sorties/sortie-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c/,Phil,,3/13/2020 0:00,13.0:25,13.0000000,47.798322000000,-4.178740000000,,Loctudy - Finistère,38104,observation-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c-4,https://biolit.fr/observations/observation-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c-4/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/20200313_132418.jpg,,TRUE, +N1,59083,sortie-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c,https://biolit.fr/sorties/sortie-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c/,Phil,,3/13/2020 0:00,13.0:25,13.0000000,47.798322000000,-4.178740000000,,Loctudy - Finistère,38106,observation-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c-5,https://biolit.fr/observations/observation-413c1f50-9934-4ae6-b2ec-d6ccd1b30a0c-5/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/20200313_132427.jpg,,TRUE, +N1,59084,sortie-65c68103-bb8f-4181-9f8f-744a78da1825,https://biolit.fr/sorties/sortie-65c68103-bb8f-4181-9f8f-744a78da1825/,Phil,,2/21/2020 0:00,12.0:35,12.0000000,47.796718000000,-4.356156000000,,Penmarc'h - Finistère,38108,observation-65c68103-bb8f-4181-9f8f-744a78da1825,https://biolit.fr/observations/observation-65c68103-bb8f-4181-9f8f-744a78da1825/,Corvus corone,Corneille noire,,https://biolit.fr/wp-content/uploads/2023/07/P1130678.JPG,,TRUE, +N1,59084,sortie-65c68103-bb8f-4181-9f8f-744a78da1825,https://biolit.fr/sorties/sortie-65c68103-bb8f-4181-9f8f-744a78da1825/,Phil,,2/21/2020 0:00,12.0:35,12.0000000,47.796718000000,-4.356156000000,,Penmarc'h - Finistère,38110,observation-65c68103-bb8f-4181-9f8f-744a78da1825-2,https://biolit.fr/observations/observation-65c68103-bb8f-4181-9f8f-744a78da1825-2/,Corvus corone,Corneille noire,,https://biolit.fr/wp-content/uploads/2023/07/P1130676.JPG,,TRUE, +N1,59084,sortie-65c68103-bb8f-4181-9f8f-744a78da1825,https://biolit.fr/sorties/sortie-65c68103-bb8f-4181-9f8f-744a78da1825/,Phil,,2/21/2020 0:00,12.0:35,12.0000000,47.796718000000,-4.356156000000,,Penmarc'h - Finistère,38112,observation-65c68103-bb8f-4181-9f8f-744a78da1825-3,https://biolit.fr/observations/observation-65c68103-bb8f-4181-9f8f-744a78da1825-3/,Corvus corone,Corneille noire,,https://biolit.fr/wp-content/uploads/2023/07/P1130675.JPG,,TRUE, +N1,59084,sortie-65c68103-bb8f-4181-9f8f-744a78da1825,https://biolit.fr/sorties/sortie-65c68103-bb8f-4181-9f8f-744a78da1825/,Phil,,2/21/2020 0:00,12.0:35,12.0000000,47.796718000000,-4.356156000000,,Penmarc'h - Finistère,38114,observation-65c68103-bb8f-4181-9f8f-744a78da1825-4,https://biolit.fr/observations/observation-65c68103-bb8f-4181-9f8f-744a78da1825-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130671.JPG,,FALSE, +N1,59084,sortie-65c68103-bb8f-4181-9f8f-744a78da1825,https://biolit.fr/sorties/sortie-65c68103-bb8f-4181-9f8f-744a78da1825/,Phil,,2/21/2020 0:00,12.0:35,12.0000000,47.796718000000,-4.356156000000,,Penmarc'h - Finistère,38116,observation-65c68103-bb8f-4181-9f8f-744a78da1825-5,https://biolit.fr/observations/observation-65c68103-bb8f-4181-9f8f-744a78da1825-5/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/P1130666.JPG,,TRUE, +N1,59085,sortie-4238ee85-951a-4b40-b096-d6d5b0e27a08,https://biolit.fr/sorties/sortie-4238ee85-951a-4b40-b096-d6d5b0e27a08/,Phil,,3/13/2020 0:00,13.0000000,13.0000000,47.799103000000,-4.179173000000,,Loctudy - Finistère,38118,observation-4238ee85-951a-4b40-b096-d6d5b0e27a08,https://biolit.fr/observations/observation-4238ee85-951a-4b40-b096-d6d5b0e27a08/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_132202.jpg,,FALSE, +N1,59085,sortie-4238ee85-951a-4b40-b096-d6d5b0e27a08,https://biolit.fr/sorties/sortie-4238ee85-951a-4b40-b096-d6d5b0e27a08/,Phil,,3/13/2020 0:00,13.0000000,13.0000000,47.799103000000,-4.179173000000,,Loctudy - Finistère,38120,observation-4238ee85-951a-4b40-b096-d6d5b0e27a08-2,https://biolit.fr/observations/observation-4238ee85-951a-4b40-b096-d6d5b0e27a08-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_132209.jpg,,FALSE, +N1,59085,sortie-4238ee85-951a-4b40-b096-d6d5b0e27a08,https://biolit.fr/sorties/sortie-4238ee85-951a-4b40-b096-d6d5b0e27a08/,Phil,,3/13/2020 0:00,13.0000000,13.0000000,47.799103000000,-4.179173000000,,Loctudy - Finistère,38122,observation-4238ee85-951a-4b40-b096-d6d5b0e27a08-3,https://biolit.fr/observations/observation-4238ee85-951a-4b40-b096-d6d5b0e27a08-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_132303.jpg,,FALSE, +N1,59085,sortie-4238ee85-951a-4b40-b096-d6d5b0e27a08,https://biolit.fr/sorties/sortie-4238ee85-951a-4b40-b096-d6d5b0e27a08/,Phil,,3/13/2020 0:00,13.0000000,13.0000000,47.799103000000,-4.179173000000,,Loctudy - Finistère,38124,observation-4238ee85-951a-4b40-b096-d6d5b0e27a08-4,https://biolit.fr/observations/observation-4238ee85-951a-4b40-b096-d6d5b0e27a08-4/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/20200313_132320.jpg,,TRUE, +N1,59085,sortie-4238ee85-951a-4b40-b096-d6d5b0e27a08,https://biolit.fr/sorties/sortie-4238ee85-951a-4b40-b096-d6d5b0e27a08/,Phil,,3/13/2020 0:00,13.0000000,13.0000000,47.799103000000,-4.179173000000,,Loctudy - Finistère,38126,observation-4238ee85-951a-4b40-b096-d6d5b0e27a08-5,https://biolit.fr/observations/observation-4238ee85-951a-4b40-b096-d6d5b0e27a08-5/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/20200313_132401.jpg,,TRUE, +N1,59086,sortie-404c6f48-fa93-4aa3-919a-893a1f2ba0b2,https://biolit.fr/sorties/sortie-404c6f48-fa93-4aa3-919a-893a1f2ba0b2/,Phil,,03/06/2020,16.0:55,17.0000000,48.212294000000,-4.37358800000,,Telgruc-sur-Mer - Finistère,38128,observation-404c6f48-fa93-4aa3-919a-893a1f2ba0b2,https://biolit.fr/observations/observation-404c6f48-fa93-4aa3-919a-893a1f2ba0b2/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/2023/07/P1130752.JPG,,TRUE, +N1,59086,sortie-404c6f48-fa93-4aa3-919a-893a1f2ba0b2,https://biolit.fr/sorties/sortie-404c6f48-fa93-4aa3-919a-893a1f2ba0b2/,Phil,,03/06/2020,16.0:55,17.0000000,48.212294000000,-4.37358800000,,Telgruc-sur-Mer - Finistère,38130,observation-404c6f48-fa93-4aa3-919a-893a1f2ba0b2-2,https://biolit.fr/observations/observation-404c6f48-fa93-4aa3-919a-893a1f2ba0b2-2/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/2023/07/P1130753.JPG,,TRUE, +N1,59086,sortie-404c6f48-fa93-4aa3-919a-893a1f2ba0b2,https://biolit.fr/sorties/sortie-404c6f48-fa93-4aa3-919a-893a1f2ba0b2/,Phil,,03/06/2020,16.0:55,17.0000000,48.212294000000,-4.37358800000,,Telgruc-sur-Mer - Finistère,38132,observation-404c6f48-fa93-4aa3-919a-893a1f2ba0b2-3,https://biolit.fr/observations/observation-404c6f48-fa93-4aa3-919a-893a1f2ba0b2-3/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/2023/07/P1130754.JPG,,TRUE, +N1,59087,sortie-36677060-e696-4982-b6c1-1d27e90793a5,https://biolit.fr/sorties/sortie-36677060-e696-4982-b6c1-1d27e90793a5/,Pan Bagnat,,4/18/2020 0:00,18.0000000,18.0000000,43.395711000000,3.699108000000,,Port de Sète - Vieux Bassin (Môle Saint-Louis),38134,observation-36677060-e696-4982-b6c1-1d27e90793a5,https://biolit.fr/observations/observation-36677060-e696-4982-b6c1-1d27e90793a5/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Eriphia verrucosa.PNG,,TRUE, +N1,59087,sortie-36677060-e696-4982-b6c1-1d27e90793a5,https://biolit.fr/sorties/sortie-36677060-e696-4982-b6c1-1d27e90793a5/,Pan Bagnat,,4/18/2020 0:00,18.0000000,18.0000000,43.395711000000,3.699108000000,,Port de Sète - Vieux Bassin (Môle Saint-Louis),38135,observation-36677060-e696-4982-b6c1-1d27e90793a5-2,https://biolit.fr/observations/observation-36677060-e696-4982-b6c1-1d27e90793a5-2/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/Scyliorhinus canicula-scaled.jpg,,TRUE, +N1,59087,sortie-36677060-e696-4982-b6c1-1d27e90793a5,https://biolit.fr/sorties/sortie-36677060-e696-4982-b6c1-1d27e90793a5/,Pan Bagnat,,4/18/2020 0:00,18.0000000,18.0000000,43.395711000000,3.699108000000,,Port de Sète - Vieux Bassin (Môle Saint-Louis),38137,observation-36677060-e696-4982-b6c1-1d27e90793a5-3,https://biolit.fr/observations/observation-36677060-e696-4982-b6c1-1d27e90793a5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Plathelminthe-scaled.jpg,,FALSE, +N1,59088,sortie-b8c82892-1921-48e5-a2b4-9d7d6def6199,https://biolit.fr/sorties/sortie-b8c82892-1921-48e5-a2b4-9d7d6def6199/,Phil,,3/13/2020 0:00,12.0000000,13.0000000,47.799139000000,-4.17936600000,,Loctudy - Finistère,38141,observation-b8c82892-1921-48e5-a2b4-9d7d6def6199-2,https://biolit.fr/observations/observation-b8c82892-1921-48e5-a2b4-9d7d6def6199-2/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/20200313_130913.jpg | https://biolit.fr/wp-content/uploads/2020/03/20200313_130839.jpg,,TRUE, +N1,59088,sortie-b8c82892-1921-48e5-a2b4-9d7d6def6199,https://biolit.fr/sorties/sortie-b8c82892-1921-48e5-a2b4-9d7d6def6199/,Phil,,3/13/2020 0:00,12.0000000,13.0000000,47.799139000000,-4.17936600000,,Loctudy - Finistère,38143,observation-b8c82892-1921-48e5-a2b4-9d7d6def6199-3,https://biolit.fr/observations/observation-b8c82892-1921-48e5-a2b4-9d7d6def6199-3/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20200313_130842.jpg,,TRUE, +N1,59088,sortie-b8c82892-1921-48e5-a2b4-9d7d6def6199,https://biolit.fr/sorties/sortie-b8c82892-1921-48e5-a2b4-9d7d6def6199/,Phil,,3/13/2020 0:00,12.0000000,13.0000000,47.799139000000,-4.17936600000,,Loctudy - Finistère,38145,observation-b8c82892-1921-48e5-a2b4-9d7d6def6199-4,https://biolit.fr/observations/observation-b8c82892-1921-48e5-a2b4-9d7d6def6199-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_131849.jpg,,FALSE, +N1,59089,sortie-f0f5d210-644f-41d3-a35c-c79058b2a3aa,https://biolit.fr/sorties/sortie-f0f5d210-644f-41d3-a35c-c79058b2a3aa/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.796426000000,-4.355834000000,,Penmarc'h - Finistère,38147,observation-f0f5d210-644f-41d3-a35c-c79058b2a3aa,https://biolit.fr/observations/observation-f0f5d210-644f-41d3-a35c-c79058b2a3aa/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1130650.JPG,,TRUE, +N1,59089,sortie-f0f5d210-644f-41d3-a35c-c79058b2a3aa,https://biolit.fr/sorties/sortie-f0f5d210-644f-41d3-a35c-c79058b2a3aa/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.796426000000,-4.355834000000,,Penmarc'h - Finistère,38149,observation-f0f5d210-644f-41d3-a35c-c79058b2a3aa-2,https://biolit.fr/observations/observation-f0f5d210-644f-41d3-a35c-c79058b2a3aa-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1130651.JPG,,TRUE, +N1,59089,sortie-f0f5d210-644f-41d3-a35c-c79058b2a3aa,https://biolit.fr/sorties/sortie-f0f5d210-644f-41d3-a35c-c79058b2a3aa/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.796426000000,-4.355834000000,,Penmarc'h - Finistère,38151,observation-f0f5d210-644f-41d3-a35c-c79058b2a3aa-3,https://biolit.fr/observations/observation-f0f5d210-644f-41d3-a35c-c79058b2a3aa-3/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1130655.JPG,,TRUE, +N1,59089,sortie-f0f5d210-644f-41d3-a35c-c79058b2a3aa,https://biolit.fr/sorties/sortie-f0f5d210-644f-41d3-a35c-c79058b2a3aa/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.796426000000,-4.355834000000,,Penmarc'h - Finistère,38153,observation-f0f5d210-644f-41d3-a35c-c79058b2a3aa-4,https://biolit.fr/observations/observation-f0f5d210-644f-41d3-a35c-c79058b2a3aa-4/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1130661.JPG,,TRUE, +N1,59089,sortie-f0f5d210-644f-41d3-a35c-c79058b2a3aa,https://biolit.fr/sorties/sortie-f0f5d210-644f-41d3-a35c-c79058b2a3aa/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.796426000000,-4.355834000000,,Penmarc'h - Finistère,38155,observation-f0f5d210-644f-41d3-a35c-c79058b2a3aa-5,https://biolit.fr/observations/observation-f0f5d210-644f-41d3-a35c-c79058b2a3aa-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130662.JPG,,FALSE, +N1,59089,sortie-f0f5d210-644f-41d3-a35c-c79058b2a3aa,https://biolit.fr/sorties/sortie-f0f5d210-644f-41d3-a35c-c79058b2a3aa/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.796426000000,-4.355834000000,,Penmarc'h - Finistère,38157,observation-f0f5d210-644f-41d3-a35c-c79058b2a3aa-6,https://biolit.fr/observations/observation-f0f5d210-644f-41d3-a35c-c79058b2a3aa-6/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/P1130663.JPG,,TRUE, +N1,59089,sortie-f0f5d210-644f-41d3-a35c-c79058b2a3aa,https://biolit.fr/sorties/sortie-f0f5d210-644f-41d3-a35c-c79058b2a3aa/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.796426000000,-4.355834000000,,Penmarc'h - Finistère,38159,observation-f0f5d210-644f-41d3-a35c-c79058b2a3aa-7,https://biolit.fr/observations/observation-f0f5d210-644f-41d3-a35c-c79058b2a3aa-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130664.JPG,,FALSE, +N1,59090,sortie-8032007a-4d96-4491-b651-d3ccb30674cc,https://biolit.fr/sorties/sortie-8032007a-4d96-4491-b651-d3ccb30674cc/,Phil,,3/13/2020 0:00,12.0000000,13.0000000,47.799153000000,-4.179641000000,,Loctudy - Finistère,38161,observation-8032007a-4d96-4491-b651-d3ccb30674cc,https://biolit.fr/observations/observation-8032007a-4d96-4491-b651-d3ccb30674cc/,Holothuria (Holothuria) tubulosa,Holothurie tubuleuse,,https://biolit.fr/wp-content/uploads/2023/07/20200313_125850.jpg,,TRUE, +N1,59090,sortie-8032007a-4d96-4491-b651-d3ccb30674cc,https://biolit.fr/sorties/sortie-8032007a-4d96-4491-b651-d3ccb30674cc/,Phil,,3/13/2020 0:00,12.0000000,13.0000000,47.799153000000,-4.179641000000,,Loctudy - Finistère,38163,observation-8032007a-4d96-4491-b651-d3ccb30674cc-2,https://biolit.fr/observations/observation-8032007a-4d96-4491-b651-d3ccb30674cc-2/,Holothuria (Holothuria) tubulosa,Holothurie tubuleuse,,https://biolit.fr/wp-content/uploads/2023/07/20200313_125909.jpg,,TRUE, +N1,59090,sortie-8032007a-4d96-4491-b651-d3ccb30674cc,https://biolit.fr/sorties/sortie-8032007a-4d96-4491-b651-d3ccb30674cc/,Phil,,3/13/2020 0:00,12.0000000,13.0000000,47.799153000000,-4.179641000000,,Loctudy - Finistère,38165,observation-8032007a-4d96-4491-b651-d3ccb30674cc-3,https://biolit.fr/observations/observation-8032007a-4d96-4491-b651-d3ccb30674cc-3/,Holothuria (Holothuria) tubulosa,Holothurie tubuleuse,,https://biolit.fr/wp-content/uploads/2023/07/20200313_125915.jpg,,TRUE, +N1,59091,sortie-81785c23-9312-45d6-9250-27e999961dd3,https://biolit.fr/sorties/sortie-81785c23-9312-45d6-9250-27e999961dd3/,Phil,,2/16/2020 0:00,13.000005,13.0000000,47.891637000000,-3.987350000000,,Fouesnant - Finistère,38167,observation-81785c23-9312-45d6-9250-27e999961dd3,https://biolit.fr/observations/observation-81785c23-9312-45d6-9250-27e999961dd3/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1130533.JPG,,TRUE, +N1,59091,sortie-81785c23-9312-45d6-9250-27e999961dd3,https://biolit.fr/sorties/sortie-81785c23-9312-45d6-9250-27e999961dd3/,Phil,,2/16/2020 0:00,13.000005,13.0000000,47.891637000000,-3.987350000000,,Fouesnant - Finistère,38169,observation-81785c23-9312-45d6-9250-27e999961dd3-2,https://biolit.fr/observations/observation-81785c23-9312-45d6-9250-27e999961dd3-2/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/P1130536.JPG,,TRUE, +N1,59091,sortie-81785c23-9312-45d6-9250-27e999961dd3,https://biolit.fr/sorties/sortie-81785c23-9312-45d6-9250-27e999961dd3/,Phil,,2/16/2020 0:00,13.000005,13.0000000,47.891637000000,-3.987350000000,,Fouesnant - Finistère,38171,observation-81785c23-9312-45d6-9250-27e999961dd3-3,https://biolit.fr/observations/observation-81785c23-9312-45d6-9250-27e999961dd3-3/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1130537.JPG,,TRUE, +N1,59092,sortie-e83018ca-d94e-42cb-b372-d470eb1f4c2d,https://biolit.fr/sorties/sortie-e83018ca-d94e-42cb-b372-d470eb1f4c2d/,Phil,,3/13/2020 0:00,12.0000000,12.0:55,47.798187000000,-4.180929000000,,Loctudy - Finistère,38173,observation-e83018ca-d94e-42cb-b372-d470eb1f4c2d,https://biolit.fr/observations/observation-e83018ca-d94e-42cb-b372-d470eb1f4c2d/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_125149.jpg,,FALSE, +N1,59092,sortie-e83018ca-d94e-42cb-b372-d470eb1f4c2d,https://biolit.fr/sorties/sortie-e83018ca-d94e-42cb-b372-d470eb1f4c2d/,Phil,,3/13/2020 0:00,12.0000000,12.0:55,47.798187000000,-4.180929000000,,Loctudy - Finistère,38175,observation-e83018ca-d94e-42cb-b372-d470eb1f4c2d-2,https://biolit.fr/observations/observation-e83018ca-d94e-42cb-b372-d470eb1f4c2d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_125201.jpg,,FALSE, +N1,59092,sortie-e83018ca-d94e-42cb-b372-d470eb1f4c2d,https://biolit.fr/sorties/sortie-e83018ca-d94e-42cb-b372-d470eb1f4c2d/,Phil,,3/13/2020 0:00,12.0000000,12.0:55,47.798187000000,-4.180929000000,,Loctudy - Finistère,38177,observation-e83018ca-d94e-42cb-b372-d470eb1f4c2d-3,https://biolit.fr/observations/observation-e83018ca-d94e-42cb-b372-d470eb1f4c2d-3/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20200313_125508.jpg,,TRUE, +N1,59092,sortie-e83018ca-d94e-42cb-b372-d470eb1f4c2d,https://biolit.fr/sorties/sortie-e83018ca-d94e-42cb-b372-d470eb1f4c2d/,Phil,,3/13/2020 0:00,12.0000000,12.0:55,47.798187000000,-4.180929000000,,Loctudy - Finistère,38179,observation-e83018ca-d94e-42cb-b372-d470eb1f4c2d-4,https://biolit.fr/observations/observation-e83018ca-d94e-42cb-b372-d470eb1f4c2d-4/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20200313_125824.jpg,,TRUE, +N1,59093,sortie-cd417d82-3805-47d4-9846-22902d33dafb,https://biolit.fr/sorties/sortie-cd417d82-3805-47d4-9846-22902d33dafb/,Phil,,2/21/2020 0:00,12.0000000,12.0:25,47.795595000000,-4.358448000000,,Penmarc'h - Finistère,38181,observation-cd417d82-3805-47d4-9846-22902d33dafb,https://biolit.fr/observations/observation-cd417d82-3805-47d4-9846-22902d33dafb/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1130641.JPG,,TRUE, +N1,59093,sortie-cd417d82-3805-47d4-9846-22902d33dafb,https://biolit.fr/sorties/sortie-cd417d82-3805-47d4-9846-22902d33dafb/,Phil,,2/21/2020 0:00,12.0000000,12.0:25,47.795595000000,-4.358448000000,,Penmarc'h - Finistère,38183,observation-cd417d82-3805-47d4-9846-22902d33dafb-2,https://biolit.fr/observations/observation-cd417d82-3805-47d4-9846-22902d33dafb-2/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1130642.JPG,,TRUE, +N1,59093,sortie-cd417d82-3805-47d4-9846-22902d33dafb,https://biolit.fr/sorties/sortie-cd417d82-3805-47d4-9846-22902d33dafb/,Phil,,2/21/2020 0:00,12.0000000,12.0:25,47.795595000000,-4.358448000000,,Penmarc'h - Finistère,38185,observation-cd417d82-3805-47d4-9846-22902d33dafb-3,https://biolit.fr/observations/observation-cd417d82-3805-47d4-9846-22902d33dafb-3/,Lomentaria articulata,Algue saucisson,,https://biolit.fr/wp-content/uploads/2023/07/P1130644.JPG,,TRUE, +N1,59093,sortie-cd417d82-3805-47d4-9846-22902d33dafb,https://biolit.fr/sorties/sortie-cd417d82-3805-47d4-9846-22902d33dafb/,Phil,,2/21/2020 0:00,12.0000000,12.0:25,47.795595000000,-4.358448000000,,Penmarc'h - Finistère,38187,observation-cd417d82-3805-47d4-9846-22902d33dafb-4,https://biolit.fr/observations/observation-cd417d82-3805-47d4-9846-22902d33dafb-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1130646.JPG,,TRUE, +N1,59093,sortie-cd417d82-3805-47d4-9846-22902d33dafb,https://biolit.fr/sorties/sortie-cd417d82-3805-47d4-9846-22902d33dafb/,Phil,,2/21/2020 0:00,12.0000000,12.0:25,47.795595000000,-4.358448000000,,Penmarc'h - Finistère,38189,observation-cd417d82-3805-47d4-9846-22902d33dafb-5,https://biolit.fr/observations/observation-cd417d82-3805-47d4-9846-22902d33dafb-5/,Lichina pygmaea,Lichen pygmée,,https://biolit.fr/wp-content/uploads/2023/07/P1130648.JPG,,TRUE, +N1,59094,sortie-b9c40e96-c235-46b5-bb6d-75ae57c45c71,https://biolit.fr/sorties/sortie-b9c40e96-c235-46b5-bb6d-75ae57c45c71/,Phil,,3/13/2020 0:00,12.0:35,12.0:45,47.797793000000,-4.179416000000,,Loctudy - Finistère,38191,observation-b9c40e96-c235-46b5-bb6d-75ae57c45c71,https://biolit.fr/observations/observation-b9c40e96-c235-46b5-bb6d-75ae57c45c71/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20200313_123804.jpg,,TRUE, +N1,59094,sortie-b9c40e96-c235-46b5-bb6d-75ae57c45c71,https://biolit.fr/sorties/sortie-b9c40e96-c235-46b5-bb6d-75ae57c45c71/,Phil,,3/13/2020 0:00,12.0:35,12.0:45,47.797793000000,-4.179416000000,,Loctudy - Finistère,38193,observation-b9c40e96-c235-46b5-bb6d-75ae57c45c71-2,https://biolit.fr/observations/observation-b9c40e96-c235-46b5-bb6d-75ae57c45c71-2/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20200313_123812.jpg,,TRUE, +N1,59094,sortie-b9c40e96-c235-46b5-bb6d-75ae57c45c71,https://biolit.fr/sorties/sortie-b9c40e96-c235-46b5-bb6d-75ae57c45c71/,Phil,,3/13/2020 0:00,12.0:35,12.0:45,47.797793000000,-4.179416000000,,Loctudy - Finistère,38195,observation-b9c40e96-c235-46b5-bb6d-75ae57c45c71-3,https://biolit.fr/observations/observation-b9c40e96-c235-46b5-bb6d-75ae57c45c71-3/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20200313_123753.jpg,,TRUE, +N1,59094,sortie-b9c40e96-c235-46b5-bb6d-75ae57c45c71,https://biolit.fr/sorties/sortie-b9c40e96-c235-46b5-bb6d-75ae57c45c71/,Phil,,3/13/2020 0:00,12.0:35,12.0:45,47.797793000000,-4.179416000000,,Loctudy - Finistère,38197,observation-b9c40e96-c235-46b5-bb6d-75ae57c45c71-4,https://biolit.fr/observations/observation-b9c40e96-c235-46b5-bb6d-75ae57c45c71-4/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/20200313_124824.jpg,,TRUE, +N1,59094,sortie-b9c40e96-c235-46b5-bb6d-75ae57c45c71,https://biolit.fr/sorties/sortie-b9c40e96-c235-46b5-bb6d-75ae57c45c71/,Phil,,3/13/2020 0:00,12.0:35,12.0:45,47.797793000000,-4.179416000000,,Loctudy - Finistère,38199,observation-b9c40e96-c235-46b5-bb6d-75ae57c45c71-5,https://biolit.fr/observations/observation-b9c40e96-c235-46b5-bb6d-75ae57c45c71-5/,Lomentaria articulata,Algue saucisson,,https://biolit.fr/wp-content/uploads/2023/07/20200313_124833.jpg,,TRUE, +N1,59095,sortie-562dfab8-0755-4683-9a52-abc69156234b,https://biolit.fr/sorties/sortie-562dfab8-0755-4683-9a52-abc69156234b/,Phil,,03/06/2020,15.0:45,15.0:55,48.209158000000,-4.370029000000,,Telgruc-sur-Mer - Finistère,38201,observation-562dfab8-0755-4683-9a52-abc69156234b,https://biolit.fr/observations/observation-562dfab8-0755-4683-9a52-abc69156234b/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130747.JPG,,FALSE, +N1,59095,sortie-562dfab8-0755-4683-9a52-abc69156234b,https://biolit.fr/sorties/sortie-562dfab8-0755-4683-9a52-abc69156234b/,Phil,,03/06/2020,15.0:45,15.0:55,48.209158000000,-4.370029000000,,Telgruc-sur-Mer - Finistère,38203,observation-562dfab8-0755-4683-9a52-abc69156234b-2,https://biolit.fr/observations/observation-562dfab8-0755-4683-9a52-abc69156234b-2/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/P1130740.JPG,,TRUE, +N1,59095,sortie-562dfab8-0755-4683-9a52-abc69156234b,https://biolit.fr/sorties/sortie-562dfab8-0755-4683-9a52-abc69156234b/,Phil,,03/06/2020,15.0:45,15.0:55,48.209158000000,-4.370029000000,,Telgruc-sur-Mer - Finistère,38205,observation-562dfab8-0755-4683-9a52-abc69156234b-3,https://biolit.fr/observations/observation-562dfab8-0755-4683-9a52-abc69156234b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130742.JPG,,FALSE, +N1,59095,sortie-562dfab8-0755-4683-9a52-abc69156234b,https://biolit.fr/sorties/sortie-562dfab8-0755-4683-9a52-abc69156234b/,Phil,,03/06/2020,15.0:45,15.0:55,48.209158000000,-4.370029000000,,Telgruc-sur-Mer - Finistère,38207,observation-562dfab8-0755-4683-9a52-abc69156234b-4,https://biolit.fr/observations/observation-562dfab8-0755-4683-9a52-abc69156234b-4/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/P1130743.JPG,,TRUE, +N1,59095,sortie-562dfab8-0755-4683-9a52-abc69156234b,https://biolit.fr/sorties/sortie-562dfab8-0755-4683-9a52-abc69156234b/,Phil,,03/06/2020,15.0:45,15.0:55,48.209158000000,-4.370029000000,,Telgruc-sur-Mer - Finistère,38209,observation-562dfab8-0755-4683-9a52-abc69156234b-5,https://biolit.fr/observations/observation-562dfab8-0755-4683-9a52-abc69156234b-5/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/P1130744.JPG,,TRUE, +N1,59095,sortie-562dfab8-0755-4683-9a52-abc69156234b,https://biolit.fr/sorties/sortie-562dfab8-0755-4683-9a52-abc69156234b/,Phil,,03/06/2020,15.0:45,15.0:55,48.209158000000,-4.370029000000,,Telgruc-sur-Mer - Finistère,38211,observation-562dfab8-0755-4683-9a52-abc69156234b-6,https://biolit.fr/observations/observation-562dfab8-0755-4683-9a52-abc69156234b-6/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/P1130745.JPG,,TRUE, +N1,59095,sortie-562dfab8-0755-4683-9a52-abc69156234b,https://biolit.fr/sorties/sortie-562dfab8-0755-4683-9a52-abc69156234b/,Phil,,03/06/2020,15.0:45,15.0:55,48.209158000000,-4.370029000000,,Telgruc-sur-Mer - Finistère,38213,observation-562dfab8-0755-4683-9a52-abc69156234b-7,https://biolit.fr/observations/observation-562dfab8-0755-4683-9a52-abc69156234b-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130746.JPG,,FALSE, +N1,59096,sortie-5f34ba94-8dc4-4078-ae32-5f7d43f09834,https://biolit.fr/sorties/sortie-5f34ba94-8dc4-4078-ae32-5f7d43f09834/,Phil,,2/21/2020 0:00,12.0:15,12.0000000,47.795828000000,-4.358568000000,,Penmarc'h - Finistère,38215,observation-5f34ba94-8dc4-4078-ae32-5f7d43f09834,https://biolit.fr/observations/observation-5f34ba94-8dc4-4078-ae32-5f7d43f09834/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1130631.JPG,,TRUE, +N1,59096,sortie-5f34ba94-8dc4-4078-ae32-5f7d43f09834,https://biolit.fr/sorties/sortie-5f34ba94-8dc4-4078-ae32-5f7d43f09834/,Phil,,2/21/2020 0:00,12.0:15,12.0000000,47.795828000000,-4.358568000000,,Penmarc'h - Finistère,38217,observation-5f34ba94-8dc4-4078-ae32-5f7d43f09834-2,https://biolit.fr/observations/observation-5f34ba94-8dc4-4078-ae32-5f7d43f09834-2/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/P1130632.JPG,,TRUE, +N1,59096,sortie-5f34ba94-8dc4-4078-ae32-5f7d43f09834,https://biolit.fr/sorties/sortie-5f34ba94-8dc4-4078-ae32-5f7d43f09834/,Phil,,2/21/2020 0:00,12.0:15,12.0000000,47.795828000000,-4.358568000000,,Penmarc'h - Finistère,38219,observation-5f34ba94-8dc4-4078-ae32-5f7d43f09834-3,https://biolit.fr/observations/observation-5f34ba94-8dc4-4078-ae32-5f7d43f09834-3/,Cladophora rupestris,Cladophore des rochers,,https://biolit.fr/wp-content/uploads/2023/07/P1130633.JPG,,TRUE, +N1,59096,sortie-5f34ba94-8dc4-4078-ae32-5f7d43f09834,https://biolit.fr/sorties/sortie-5f34ba94-8dc4-4078-ae32-5f7d43f09834/,Phil,,2/21/2020 0:00,12.0:15,12.0000000,47.795828000000,-4.358568000000,,Penmarc'h - Finistère,38221,observation-5f34ba94-8dc4-4078-ae32-5f7d43f09834-4,https://biolit.fr/observations/observation-5f34ba94-8dc4-4078-ae32-5f7d43f09834-4/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/P1130638.JPG,,TRUE, +N1,59096,sortie-5f34ba94-8dc4-4078-ae32-5f7d43f09834,https://biolit.fr/sorties/sortie-5f34ba94-8dc4-4078-ae32-5f7d43f09834/,Phil,,2/21/2020 0:00,12.0:15,12.0000000,47.795828000000,-4.358568000000,,Penmarc'h - Finistère,38223,observation-5f34ba94-8dc4-4078-ae32-5f7d43f09834-5,https://biolit.fr/observations/observation-5f34ba94-8dc4-4078-ae32-5f7d43f09834-5/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/P1130639.JPG,,TRUE, +N1,59097,sortie-4042007b-6f32-4f98-8817-18499c455647,https://biolit.fr/sorties/sortie-4042007b-6f32-4f98-8817-18499c455647/,Phil,,3/13/2020 0:00,12.0000000,12.0000000,47.798445000000,-4.181405000000,,Loctudy - Finistère,38225,observation-4042007b-6f32-4f98-8817-18499c455647,https://biolit.fr/observations/observation-4042007b-6f32-4f98-8817-18499c455647/,Aplysilla sulfurea,Aplysille jaune soufre,,https://biolit.fr/wp-content/uploads/2023/07/20200313_122149.jpg,,TRUE, +N1,59097,sortie-4042007b-6f32-4f98-8817-18499c455647,https://biolit.fr/sorties/sortie-4042007b-6f32-4f98-8817-18499c455647/,Phil,,3/13/2020 0:00,12.0000000,12.0000000,47.798445000000,-4.181405000000,,Loctudy - Finistère,38227,observation-4042007b-6f32-4f98-8817-18499c455647-2,https://biolit.fr/observations/observation-4042007b-6f32-4f98-8817-18499c455647-2/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/20200313_122750.jpg,,TRUE, +N1,59097,sortie-4042007b-6f32-4f98-8817-18499c455647,https://biolit.fr/sorties/sortie-4042007b-6f32-4f98-8817-18499c455647/,Phil,,3/13/2020 0:00,12.0000000,12.0000000,47.798445000000,-4.181405000000,,Loctudy - Finistère,38229,observation-4042007b-6f32-4f98-8817-18499c455647-3,https://biolit.fr/observations/observation-4042007b-6f32-4f98-8817-18499c455647-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_123303.jpg,,FALSE, +N1,59097,sortie-4042007b-6f32-4f98-8817-18499c455647,https://biolit.fr/sorties/sortie-4042007b-6f32-4f98-8817-18499c455647/,Phil,,3/13/2020 0:00,12.0000000,12.0000000,47.798445000000,-4.181405000000,,Loctudy - Finistère,38231,observation-4042007b-6f32-4f98-8817-18499c455647-4,https://biolit.fr/observations/observation-4042007b-6f32-4f98-8817-18499c455647-4/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20200313_123544.jpg,,TRUE, +N1,59097,sortie-4042007b-6f32-4f98-8817-18499c455647,https://biolit.fr/sorties/sortie-4042007b-6f32-4f98-8817-18499c455647/,Phil,,3/13/2020 0:00,12.0000000,12.0000000,47.798445000000,-4.181405000000,,Loctudy - Finistère,38233,observation-4042007b-6f32-4f98-8817-18499c455647-5,https://biolit.fr/observations/observation-4042007b-6f32-4f98-8817-18499c455647-5/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20200313_123629.jpg,,TRUE, +N1,59098,sortie-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e,https://biolit.fr/sorties/sortie-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e/,Phil,,2/21/2020 0:00,12.0:55,13.0000000,47.802102000000,-4.344500000000,,Penmarc'h - Finistère,38235,observation-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e,https://biolit.fr/observations/observation-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/2023/07/P1130697.JPG,,TRUE, +N1,59098,sortie-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e,https://biolit.fr/sorties/sortie-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e/,Phil,,2/21/2020 0:00,12.0:55,13.0000000,47.802102000000,-4.344500000000,,Penmarc'h - Finistère,38237,observation-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e-2,https://biolit.fr/observations/observation-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e-2/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/2023/07/P1130695.JPG,,TRUE, +N1,59098,sortie-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e,https://biolit.fr/sorties/sortie-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e/,Phil,,2/21/2020 0:00,12.0:55,13.0000000,47.802102000000,-4.344500000000,,Penmarc'h - Finistère,38239,observation-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e-3,https://biolit.fr/observations/observation-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e-3/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/2023/07/P1130703.JPG,,TRUE, +N1,59098,sortie-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e,https://biolit.fr/sorties/sortie-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e/,Phil,,2/21/2020 0:00,12.0:55,13.0000000,47.802102000000,-4.344500000000,,Penmarc'h - Finistère,38241,observation-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e-4,https://biolit.fr/observations/observation-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e-4/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/2023/07/P1130704.JPG,,TRUE, +N1,59098,sortie-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e,https://biolit.fr/sorties/sortie-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e/,Phil,,2/21/2020 0:00,12.0:55,13.0000000,47.802102000000,-4.344500000000,,Penmarc'h - Finistère,38243,observation-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e-5,https://biolit.fr/observations/observation-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e-5/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/2023/07/P1130708.JPG,,TRUE, +N1,59098,sortie-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e,https://biolit.fr/sorties/sortie-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e/,Phil,,2/21/2020 0:00,12.0:55,13.0000000,47.802102000000,-4.344500000000,,Penmarc'h - Finistère,38245,observation-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e-6,https://biolit.fr/observations/observation-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e-6/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/2023/07/P1130710.JPG,,TRUE, +N1,59098,sortie-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e,https://biolit.fr/sorties/sortie-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e/,Phil,,2/21/2020 0:00,12.0:55,13.0000000,47.802102000000,-4.344500000000,,Penmarc'h - Finistère,38247,observation-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e-7,https://biolit.fr/observations/observation-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e-7/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/2023/07/P1130711.JPG,,TRUE, +N1,59098,sortie-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e,https://biolit.fr/sorties/sortie-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e/,Phil,,2/21/2020 0:00,12.0:55,13.0000000,47.802102000000,-4.344500000000,,Penmarc'h - Finistère,38249,observation-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e-8,https://biolit.fr/observations/observation-e3b646ca-13a9-40f2-b1a1-ef3d79d6f21e-8/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/2023/07/P1130713.JPG,,TRUE, +N1,59099,sortie-a5a81ac3-185e-46f0-b690-5d977a17f967,https://biolit.fr/sorties/sortie-a5a81ac3-185e-46f0-b690-5d977a17f967/,Phil,,3/13/2020 0:00,12.0:15,12.0000000,47.800039000000,-4.18047100000,,Loctudy - Finistère,38251,observation-a5a81ac3-185e-46f0-b690-5d977a17f967,https://biolit.fr/observations/observation-a5a81ac3-185e-46f0-b690-5d977a17f967/,Terpios gelatinosus,Eponge encroûtante bleue,,https://biolit.fr/wp-content/uploads/2023/07/20200313_121455.jpg,,TRUE, +N1,59099,sortie-a5a81ac3-185e-46f0-b690-5d977a17f967,https://biolit.fr/sorties/sortie-a5a81ac3-185e-46f0-b690-5d977a17f967/,Phil,,3/13/2020 0:00,12.0:15,12.0000000,47.800039000000,-4.18047100000,,Loctudy - Finistère,38253,observation-a5a81ac3-185e-46f0-b690-5d977a17f967-2,https://biolit.fr/observations/observation-a5a81ac3-185e-46f0-b690-5d977a17f967-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_121445.jpg,,FALSE, +N1,59099,sortie-a5a81ac3-185e-46f0-b690-5d977a17f967,https://biolit.fr/sorties/sortie-a5a81ac3-185e-46f0-b690-5d977a17f967/,Phil,,3/13/2020 0:00,12.0:15,12.0000000,47.800039000000,-4.18047100000,,Loctudy - Finistère,38255,observation-a5a81ac3-185e-46f0-b690-5d977a17f967-3,https://biolit.fr/observations/observation-a5a81ac3-185e-46f0-b690-5d977a17f967-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_121449.jpg,,FALSE, +N1,59099,sortie-a5a81ac3-185e-46f0-b690-5d977a17f967,https://biolit.fr/sorties/sortie-a5a81ac3-185e-46f0-b690-5d977a17f967/,Phil,,3/13/2020 0:00,12.0:15,12.0000000,47.800039000000,-4.18047100000,,Loctudy - Finistère,38257,observation-a5a81ac3-185e-46f0-b690-5d977a17f967-4,https://biolit.fr/observations/observation-a5a81ac3-185e-46f0-b690-5d977a17f967-4/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/20200313_121839.jpg,,TRUE, +N1,59099,sortie-a5a81ac3-185e-46f0-b690-5d977a17f967,https://biolit.fr/sorties/sortie-a5a81ac3-185e-46f0-b690-5d977a17f967/,Phil,,3/13/2020 0:00,12.0:15,12.0000000,47.800039000000,-4.18047100000,,Loctudy - Finistère,38259,observation-a5a81ac3-185e-46f0-b690-5d977a17f967-5,https://biolit.fr/observations/observation-a5a81ac3-185e-46f0-b690-5d977a17f967-5/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20200313_121854.jpg,,TRUE, +N1,59100,sortie-98224b30-d2de-457f-becb-4d51c1f2607e,https://biolit.fr/sorties/sortie-98224b30-d2de-457f-becb-4d51c1f2607e/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.795519000000,-4.357991000000,,Penmarc'h - Finistère,38261,observation-98224b30-d2de-457f-becb-4d51c1f2607e,https://biolit.fr/observations/observation-98224b30-d2de-457f-becb-4d51c1f2607e/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1130606.JPG,,TRUE, +N1,59100,sortie-98224b30-d2de-457f-becb-4d51c1f2607e,https://biolit.fr/sorties/sortie-98224b30-d2de-457f-becb-4d51c1f2607e/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.795519000000,-4.357991000000,,Penmarc'h - Finistère,38263,observation-98224b30-d2de-457f-becb-4d51c1f2607e-2,https://biolit.fr/observations/observation-98224b30-d2de-457f-becb-4d51c1f2607e-2/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1130607.JPG,,TRUE, +N1,59100,sortie-98224b30-d2de-457f-becb-4d51c1f2607e,https://biolit.fr/sorties/sortie-98224b30-d2de-457f-becb-4d51c1f2607e/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.795519000000,-4.357991000000,,Penmarc'h - Finistère,38265,observation-98224b30-d2de-457f-becb-4d51c1f2607e-3,https://biolit.fr/observations/observation-98224b30-d2de-457f-becb-4d51c1f2607e-3/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1130622.JPG,,TRUE, +N1,59100,sortie-98224b30-d2de-457f-becb-4d51c1f2607e,https://biolit.fr/sorties/sortie-98224b30-d2de-457f-becb-4d51c1f2607e/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.795519000000,-4.357991000000,,Penmarc'h - Finistère,38267,observation-98224b30-d2de-457f-becb-4d51c1f2607e-4,https://biolit.fr/observations/observation-98224b30-d2de-457f-becb-4d51c1f2607e-4/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1130624.JPG,,TRUE, +N1,59100,sortie-98224b30-d2de-457f-becb-4d51c1f2607e,https://biolit.fr/sorties/sortie-98224b30-d2de-457f-becb-4d51c1f2607e/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.795519000000,-4.357991000000,,Penmarc'h - Finistère,38269,observation-98224b30-d2de-457f-becb-4d51c1f2607e-5,https://biolit.fr/observations/observation-98224b30-d2de-457f-becb-4d51c1f2607e-5/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1130630.JPG,,TRUE, +N1,59101,sortie-6e334f19-153c-4ece-a748-6741a1334ef7,https://biolit.fr/sorties/sortie-6e334f19-153c-4ece-a748-6741a1334ef7/,Phil,,3/13/2020 0:00,12.0000000,12.0:15,47.799323000000,-4.179892000000,,Loctudy - Finistère,38271,observation-6e334f19-153c-4ece-a748-6741a1334ef7,https://biolit.fr/observations/observation-6e334f19-153c-4ece-a748-6741a1334ef7/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20200313_121215.jpg,,TRUE, +N1,59101,sortie-6e334f19-153c-4ece-a748-6741a1334ef7,https://biolit.fr/sorties/sortie-6e334f19-153c-4ece-a748-6741a1334ef7/,Phil,,3/13/2020 0:00,12.0000000,12.0:15,47.799323000000,-4.179892000000,,Loctudy - Finistère,38273,observation-6e334f19-153c-4ece-a748-6741a1334ef7-2,https://biolit.fr/observations/observation-6e334f19-153c-4ece-a748-6741a1334ef7-2/,Terpios gelatinosus,Eponge encroûtante bleue,,https://biolit.fr/wp-content/uploads/2023/07/20200313_121227.jpg,,TRUE, +N1,59101,sortie-6e334f19-153c-4ece-a748-6741a1334ef7,https://biolit.fr/sorties/sortie-6e334f19-153c-4ece-a748-6741a1334ef7/,Phil,,3/13/2020 0:00,12.0000000,12.0:15,47.799323000000,-4.179892000000,,Loctudy - Finistère,38275,observation-6e334f19-153c-4ece-a748-6741a1334ef7-3,https://biolit.fr/observations/observation-6e334f19-153c-4ece-a748-6741a1334ef7-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200313_121305.jpg,,TRUE, +N1,59101,sortie-6e334f19-153c-4ece-a748-6741a1334ef7,https://biolit.fr/sorties/sortie-6e334f19-153c-4ece-a748-6741a1334ef7/,Phil,,3/13/2020 0:00,12.0000000,12.0:15,47.799323000000,-4.179892000000,,Loctudy - Finistère,38277,observation-6e334f19-153c-4ece-a748-6741a1334ef7-4,https://biolit.fr/observations/observation-6e334f19-153c-4ece-a748-6741a1334ef7-4/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200313_121310.jpg,,TRUE, +N1,59101,sortie-6e334f19-153c-4ece-a748-6741a1334ef7,https://biolit.fr/sorties/sortie-6e334f19-153c-4ece-a748-6741a1334ef7/,Phil,,3/13/2020 0:00,12.0000000,12.0:15,47.799323000000,-4.179892000000,,Loctudy - Finistère,38279,observation-6e334f19-153c-4ece-a748-6741a1334ef7-5,https://biolit.fr/observations/observation-6e334f19-153c-4ece-a748-6741a1334ef7-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_121221.jpg,,FALSE, +N1,59102,sortie-8ba98d21-3a35-43d1-8d67-f4afed8d76b6,https://biolit.fr/sorties/sortie-8ba98d21-3a35-43d1-8d67-f4afed8d76b6/,Phil,,3/16/2020 0:00,16.0000000,16.0:45,48.603442000000,-4.549898000000,,Plouguerneau - Finistère,38281,observation-8ba98d21-3a35-43d1-8d67-f4afed8d76b6,https://biolit.fr/observations/observation-8ba98d21-3a35-43d1-8d67-f4afed8d76b6/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/20200316_164404.jpg,,TRUE, +N1,59102,sortie-8ba98d21-3a35-43d1-8d67-f4afed8d76b6,https://biolit.fr/sorties/sortie-8ba98d21-3a35-43d1-8d67-f4afed8d76b6/,Phil,,3/16/2020 0:00,16.0000000,16.0:45,48.603442000000,-4.549898000000,,Plouguerneau - Finistère,38283,observation-8ba98d21-3a35-43d1-8d67-f4afed8d76b6-2,https://biolit.fr/observations/observation-8ba98d21-3a35-43d1-8d67-f4afed8d76b6-2/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/20200316_164346.jpg,,TRUE, +N1,59102,sortie-8ba98d21-3a35-43d1-8d67-f4afed8d76b6,https://biolit.fr/sorties/sortie-8ba98d21-3a35-43d1-8d67-f4afed8d76b6/,Phil,,3/16/2020 0:00,16.0000000,16.0:45,48.603442000000,-4.549898000000,,Plouguerneau - Finistère,38285,observation-8ba98d21-3a35-43d1-8d67-f4afed8d76b6-3,https://biolit.fr/observations/observation-8ba98d21-3a35-43d1-8d67-f4afed8d76b6-3/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20200316_164041.jpg,,TRUE, +N1,59102,sortie-8ba98d21-3a35-43d1-8d67-f4afed8d76b6,https://biolit.fr/sorties/sortie-8ba98d21-3a35-43d1-8d67-f4afed8d76b6/,Phil,,3/16/2020 0:00,16.0000000,16.0:45,48.603442000000,-4.549898000000,,Plouguerneau - Finistère,38287,observation-8ba98d21-3a35-43d1-8d67-f4afed8d76b6-4,https://biolit.fr/observations/observation-8ba98d21-3a35-43d1-8d67-f4afed8d76b6-4/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20200316_164550.jpg,,TRUE, +N1,59102,sortie-8ba98d21-3a35-43d1-8d67-f4afed8d76b6,https://biolit.fr/sorties/sortie-8ba98d21-3a35-43d1-8d67-f4afed8d76b6/,Phil,,3/16/2020 0:00,16.0000000,16.0:45,48.603442000000,-4.549898000000,,Plouguerneau - Finistère,38289,observation-8ba98d21-3a35-43d1-8d67-f4afed8d76b6-5,https://biolit.fr/observations/observation-8ba98d21-3a35-43d1-8d67-f4afed8d76b6-5/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20200316_163815.jpg,,TRUE, +N1,59103,sortie-1975e0e8-4809-4a45-8bc6-aa55807db7d7,https://biolit.fr/sorties/sortie-1975e0e8-4809-4a45-8bc6-aa55807db7d7/,Phil,,3/13/2020 0:00,12.000005,12.0000000,47.798995000000,-4.179021000000,,Loctudy - Finistère,38291,observation-1975e0e8-4809-4a45-8bc6-aa55807db7d7,https://biolit.fr/observations/observation-1975e0e8-4809-4a45-8bc6-aa55807db7d7/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20200313_120930.jpg,,TRUE, +N1,59103,sortie-1975e0e8-4809-4a45-8bc6-aa55807db7d7,https://biolit.fr/sorties/sortie-1975e0e8-4809-4a45-8bc6-aa55807db7d7/,Phil,,3/13/2020 0:00,12.000005,12.0000000,47.798995000000,-4.179021000000,,Loctudy - Finistère,38293,observation-1975e0e8-4809-4a45-8bc6-aa55807db7d7-2,https://biolit.fr/observations/observation-1975e0e8-4809-4a45-8bc6-aa55807db7d7-2/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20200313_120950.jpg,,TRUE, +N1,59103,sortie-1975e0e8-4809-4a45-8bc6-aa55807db7d7,https://biolit.fr/sorties/sortie-1975e0e8-4809-4a45-8bc6-aa55807db7d7/,Phil,,3/13/2020 0:00,12.000005,12.0000000,47.798995000000,-4.179021000000,,Loctudy - Finistère,38295,observation-1975e0e8-4809-4a45-8bc6-aa55807db7d7-3,https://biolit.fr/observations/observation-1975e0e8-4809-4a45-8bc6-aa55807db7d7-3/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20200313_120719.jpg,,TRUE, +N1,59103,sortie-1975e0e8-4809-4a45-8bc6-aa55807db7d7,https://biolit.fr/sorties/sortie-1975e0e8-4809-4a45-8bc6-aa55807db7d7/,Phil,,3/13/2020 0:00,12.000005,12.0000000,47.798995000000,-4.179021000000,,Loctudy - Finistère,38297,observation-1975e0e8-4809-4a45-8bc6-aa55807db7d7-4,https://biolit.fr/observations/observation-1975e0e8-4809-4a45-8bc6-aa55807db7d7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_120936.jpg,,FALSE, +N1,59103,sortie-1975e0e8-4809-4a45-8bc6-aa55807db7d7,https://biolit.fr/sorties/sortie-1975e0e8-4809-4a45-8bc6-aa55807db7d7/,Phil,,3/13/2020 0:00,12.000005,12.0000000,47.798995000000,-4.179021000000,,Loctudy - Finistère,38299,observation-1975e0e8-4809-4a45-8bc6-aa55807db7d7-5,https://biolit.fr/observations/observation-1975e0e8-4809-4a45-8bc6-aa55807db7d7-5/,Phymatolithon lenormandii,Algue encroûtante rouge de Lenormand,,https://biolit.fr/wp-content/uploads/2023/07/20200313_121058.jpg,,TRUE, +N1,59103,sortie-1975e0e8-4809-4a45-8bc6-aa55807db7d7,https://biolit.fr/sorties/sortie-1975e0e8-4809-4a45-8bc6-aa55807db7d7/,Phil,,3/13/2020 0:00,12.000005,12.0000000,47.798995000000,-4.179021000000,,Loctudy - Finistère,38301,observation-1975e0e8-4809-4a45-8bc6-aa55807db7d7-6,https://biolit.fr/observations/observation-1975e0e8-4809-4a45-8bc6-aa55807db7d7-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_121050.jpg,,FALSE, +N1,59104,sortie-4d106ca1-f2e5-465c-b5da-a8406f8e016e,https://biolit.fr/sorties/sortie-4d106ca1-f2e5-465c-b5da-a8406f8e016e/,Phil,,2/14/2020 0:00,11.0000000,11.0:45,47.793180000000,-4.226427000000,,Lesconil - Finistère,38303,observation-4d106ca1-f2e5-465c-b5da-a8406f8e016e,https://biolit.fr/observations/observation-4d106ca1-f2e5-465c-b5da-a8406f8e016e/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200214_114110.jpg,,TRUE, +N1,59104,sortie-4d106ca1-f2e5-465c-b5da-a8406f8e016e,https://biolit.fr/sorties/sortie-4d106ca1-f2e5-465c-b5da-a8406f8e016e/,Phil,,2/14/2020 0:00,11.0000000,11.0:45,47.793180000000,-4.226427000000,,Lesconil - Finistère,38305,observation-4d106ca1-f2e5-465c-b5da-a8406f8e016e-2,https://biolit.fr/observations/observation-4d106ca1-f2e5-465c-b5da-a8406f8e016e-2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200214_114211.jpg,,TRUE, +N1,59104,sortie-4d106ca1-f2e5-465c-b5da-a8406f8e016e,https://biolit.fr/sorties/sortie-4d106ca1-f2e5-465c-b5da-a8406f8e016e/,Phil,,2/14/2020 0:00,11.0000000,11.0:45,47.793180000000,-4.226427000000,,Lesconil - Finistère,38307,observation-4d106ca1-f2e5-465c-b5da-a8406f8e016e-3,https://biolit.fr/observations/observation-4d106ca1-f2e5-465c-b5da-a8406f8e016e-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200214_114233.jpg,,TRUE, +N1,59104,sortie-4d106ca1-f2e5-465c-b5da-a8406f8e016e,https://biolit.fr/sorties/sortie-4d106ca1-f2e5-465c-b5da-a8406f8e016e/,Phil,,2/14/2020 0:00,11.0000000,11.0:45,47.793180000000,-4.226427000000,,Lesconil - Finistère,38309,observation-4d106ca1-f2e5-465c-b5da-a8406f8e016e-4,https://biolit.fr/observations/observation-4d106ca1-f2e5-465c-b5da-a8406f8e016e-4/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200214_114305.jpg,,TRUE, +N1,59104,sortie-4d106ca1-f2e5-465c-b5da-a8406f8e016e,https://biolit.fr/sorties/sortie-4d106ca1-f2e5-465c-b5da-a8406f8e016e/,Phil,,2/14/2020 0:00,11.0000000,11.0:45,47.793180000000,-4.226427000000,,Lesconil - Finistère,38311,observation-4d106ca1-f2e5-465c-b5da-a8406f8e016e-5,https://biolit.fr/observations/observation-4d106ca1-f2e5-465c-b5da-a8406f8e016e-5/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200214_114342.jpg,,TRUE, +N1,59104,sortie-4d106ca1-f2e5-465c-b5da-a8406f8e016e,https://biolit.fr/sorties/sortie-4d106ca1-f2e5-465c-b5da-a8406f8e016e/,Phil,,2/14/2020 0:00,11.0000000,11.0:45,47.793180000000,-4.226427000000,,Lesconil - Finistère,38313,observation-4d106ca1-f2e5-465c-b5da-a8406f8e016e-6,https://biolit.fr/observations/observation-4d106ca1-f2e5-465c-b5da-a8406f8e016e-6/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200214_114409.jpg,,TRUE, +N1,59105,sortie-4e3b2fd3-4f63-49b3-831a-5a796946c8c8,https://biolit.fr/sorties/sortie-4e3b2fd3-4f63-49b3-831a-5a796946c8c8/,Romuald VIALE - EXPENATURE,,3/24/2020 0:00,12.0000000,13.0000000,43.180243000000,5.612917000000,ExpéNature,La Ciotat,38315,observation-4e3b2fd3-4f63-49b3-831a-5a796946c8c8,https://biolit.fr/observations/observation-4e3b2fd3-4f63-49b3-831a-5a796946c8c8/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/90766729_900183893743898_8304569148013281280_n-scaled.jpg,,TRUE, +N1,59105,sortie-4e3b2fd3-4f63-49b3-831a-5a796946c8c8,https://biolit.fr/sorties/sortie-4e3b2fd3-4f63-49b3-831a-5a796946c8c8/,Romuald VIALE - EXPENATURE,,3/24/2020 0:00,12.0000000,13.0000000,43.180243000000,5.612917000000,ExpéNature,La Ciotat,38317,observation-4e3b2fd3-4f63-49b3-831a-5a796946c8c8-2,https://biolit.fr/observations/observation-4e3b2fd3-4f63-49b3-831a-5a796946c8c8-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/90844605_2877217192371701_9110057339158790144_n-scaled.jpg,,TRUE, +N1,59106,sortie-ec0a7799-3a7d-4a9f-90c1-f80739df8de7,https://biolit.fr/sorties/sortie-ec0a7799-3a7d-4a9f-90c1-f80739df8de7/,Phil,,3/13/2020 0:00,12.0000000,12.0000000,47.798958000000,-4.178849000000,,Loctudy - Finistère,38319,observation-ec0a7799-3a7d-4a9f-90c1-f80739df8de7,https://biolit.fr/observations/observation-ec0a7799-3a7d-4a9f-90c1-f80739df8de7/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200313_120200.jpg,,TRUE, +N1,59106,sortie-ec0a7799-3a7d-4a9f-90c1-f80739df8de7,https://biolit.fr/sorties/sortie-ec0a7799-3a7d-4a9f-90c1-f80739df8de7/,Phil,,3/13/2020 0:00,12.0000000,12.0000000,47.798958000000,-4.178849000000,,Loctudy - Finistère,38321,observation-ec0a7799-3a7d-4a9f-90c1-f80739df8de7-2,https://biolit.fr/observations/observation-ec0a7799-3a7d-4a9f-90c1-f80739df8de7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_120154.jpg,,FALSE, +N1,59106,sortie-ec0a7799-3a7d-4a9f-90c1-f80739df8de7,https://biolit.fr/sorties/sortie-ec0a7799-3a7d-4a9f-90c1-f80739df8de7/,Phil,,3/13/2020 0:00,12.0000000,12.0000000,47.798958000000,-4.178849000000,,Loctudy - Finistère,38323,observation-ec0a7799-3a7d-4a9f-90c1-f80739df8de7-3,https://biolit.fr/observations/observation-ec0a7799-3a7d-4a9f-90c1-f80739df8de7-3/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/20200313_120324.jpg,,TRUE, +N1,59107,sortie-d8c2b98e-e92b-40cc-9a32-17dc8b11aa44,https://biolit.fr/sorties/sortie-d8c2b98e-e92b-40cc-9a32-17dc8b11aa44/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.7948050000,-4.358620000000,,Penmarc'h - Finistère,38325,observation-d8c2b98e-e92b-40cc-9a32-17dc8b11aa44,https://biolit.fr/observations/observation-d8c2b98e-e92b-40cc-9a32-17dc8b11aa44/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/P1130617_0.JPG,,TRUE, +N1,59107,sortie-d8c2b98e-e92b-40cc-9a32-17dc8b11aa44,https://biolit.fr/sorties/sortie-d8c2b98e-e92b-40cc-9a32-17dc8b11aa44/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.7948050000,-4.358620000000,,Penmarc'h - Finistère,38331,observation-d8c2b98e-e92b-40cc-9a32-17dc8b11aa44-4,https://biolit.fr/observations/observation-d8c2b98e-e92b-40cc-9a32-17dc8b11aa44-4/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/P1130611.JPG,,TRUE, +N1,59107,sortie-d8c2b98e-e92b-40cc-9a32-17dc8b11aa44,https://biolit.fr/sorties/sortie-d8c2b98e-e92b-40cc-9a32-17dc8b11aa44/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.7948050000,-4.358620000000,,Penmarc'h - Finistère,38333,observation-d8c2b98e-e92b-40cc-9a32-17dc8b11aa44-5,https://biolit.fr/observations/observation-d8c2b98e-e92b-40cc-9a32-17dc8b11aa44-5/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/P1130608.JPG,,TRUE, +N1,59108,sortie-64faab4d-555b-4dfb-b4a0-c0878557bbac,https://biolit.fr/sorties/sortie-64faab4d-555b-4dfb-b4a0-c0878557bbac/,Phil,,2/16/2020 0:00,13.0000000,13.0000000,47.890297000000,-3.977896000000,,Fouesnant - Finistère,38335,observation-64faab4d-555b-4dfb-b4a0-c0878557bbac,https://biolit.fr/observations/observation-64faab4d-555b-4dfb-b4a0-c0878557bbac/,Tadorna tadorna,Tadorne de Belon,,https://biolit.fr/wp-content/uploads/2023/07/P1130516.JPG,,TRUE, +N1,59108,sortie-64faab4d-555b-4dfb-b4a0-c0878557bbac,https://biolit.fr/sorties/sortie-64faab4d-555b-4dfb-b4a0-c0878557bbac/,Phil,,2/16/2020 0:00,13.0000000,13.0000000,47.890297000000,-3.977896000000,,Fouesnant - Finistère,38337,observation-64faab4d-555b-4dfb-b4a0-c0878557bbac-2,https://biolit.fr/observations/observation-64faab4d-555b-4dfb-b4a0-c0878557bbac-2/,Tadorna tadorna,Tadorne de Belon,,https://biolit.fr/wp-content/uploads/2023/07/P1130518.JPG,,TRUE, +N1,59108,sortie-64faab4d-555b-4dfb-b4a0-c0878557bbac,https://biolit.fr/sorties/sortie-64faab4d-555b-4dfb-b4a0-c0878557bbac/,Phil,,2/16/2020 0:00,13.0000000,13.0000000,47.890297000000,-3.977896000000,,Fouesnant - Finistère,38339,observation-64faab4d-555b-4dfb-b4a0-c0878557bbac-3,https://biolit.fr/observations/observation-64faab4d-555b-4dfb-b4a0-c0878557bbac-3/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1130525.JPG,,TRUE, +N1,59108,sortie-64faab4d-555b-4dfb-b4a0-c0878557bbac,https://biolit.fr/sorties/sortie-64faab4d-555b-4dfb-b4a0-c0878557bbac/,Phil,,2/16/2020 0:00,13.0000000,13.0000000,47.890297000000,-3.977896000000,,Fouesnant - Finistère,38341,observation-64faab4d-555b-4dfb-b4a0-c0878557bbac-4,https://biolit.fr/observations/observation-64faab4d-555b-4dfb-b4a0-c0878557bbac-4/,Tadorna tadorna,Tadorne de Belon,,https://biolit.fr/wp-content/uploads/2023/07/P1130526.JPG,,TRUE, +N1,59108,sortie-64faab4d-555b-4dfb-b4a0-c0878557bbac,https://biolit.fr/sorties/sortie-64faab4d-555b-4dfb-b4a0-c0878557bbac/,Phil,,2/16/2020 0:00,13.0000000,13.0000000,47.890297000000,-3.977896000000,,Fouesnant - Finistère,38343,observation-64faab4d-555b-4dfb-b4a0-c0878557bbac-5,https://biolit.fr/observations/observation-64faab4d-555b-4dfb-b4a0-c0878557bbac-5/,Tadorna tadorna,Tadorne de Belon,,https://biolit.fr/wp-content/uploads/2023/07/P1130535.JPG,,TRUE, +N1,59109,sortie-0f128da0-5346-4195-82bf-fd4be68302b3,https://biolit.fr/sorties/sortie-0f128da0-5346-4195-82bf-fd4be68302b3/,Phil,,3/13/2020 0:00,12.000005,12.0000000,47.799491000000,-4.179944000000,,Loctudy - Finistère,38345,observation-0f128da0-5346-4195-82bf-fd4be68302b3,https://biolit.fr/observations/observation-0f128da0-5346-4195-82bf-fd4be68302b3/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20200313_120524.jpg,,TRUE, +N1,59109,sortie-0f128da0-5346-4195-82bf-fd4be68302b3,https://biolit.fr/sorties/sortie-0f128da0-5346-4195-82bf-fd4be68302b3/,Phil,,3/13/2020 0:00,12.000005,12.0000000,47.799491000000,-4.179944000000,,Loctudy - Finistère,38347,observation-0f128da0-5346-4195-82bf-fd4be68302b3-2,https://biolit.fr/observations/observation-0f128da0-5346-4195-82bf-fd4be68302b3-2/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/20200313_120434.jpg,,TRUE, +N1,59109,sortie-0f128da0-5346-4195-82bf-fd4be68302b3,https://biolit.fr/sorties/sortie-0f128da0-5346-4195-82bf-fd4be68302b3/,Phil,,3/13/2020 0:00,12.000005,12.0000000,47.799491000000,-4.179944000000,,Loctudy - Finistère,38349,observation-0f128da0-5346-4195-82bf-fd4be68302b3-3,https://biolit.fr/observations/observation-0f128da0-5346-4195-82bf-fd4be68302b3-3/,Terpios gelatinosus,Eponge encroûtante bleue,,https://biolit.fr/wp-content/uploads/2023/07/20200313_120439.jpg,,TRUE, +N1,59109,sortie-0f128da0-5346-4195-82bf-fd4be68302b3,https://biolit.fr/sorties/sortie-0f128da0-5346-4195-82bf-fd4be68302b3/,Phil,,3/13/2020 0:00,12.000005,12.0000000,47.799491000000,-4.179944000000,,Loctudy - Finistère,38351,observation-0f128da0-5346-4195-82bf-fd4be68302b3-4,https://biolit.fr/observations/observation-0f128da0-5346-4195-82bf-fd4be68302b3-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_120443.jpg,,FALSE, +N1,59109,sortie-0f128da0-5346-4195-82bf-fd4be68302b3,https://biolit.fr/sorties/sortie-0f128da0-5346-4195-82bf-fd4be68302b3/,Phil,,3/13/2020 0:00,12.000005,12.0000000,47.799491000000,-4.179944000000,,Loctudy - Finistère,38353,observation-0f128da0-5346-4195-82bf-fd4be68302b3-5,https://biolit.fr/observations/observation-0f128da0-5346-4195-82bf-fd4be68302b3-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200313_120516.jpg,,FALSE, +N1,59110,sortie-ebc6ef0e-841b-4907-9852-011059a27eab,https://biolit.fr/sorties/sortie-ebc6ef0e-841b-4907-9852-011059a27eab/,Phil,,2/21/2020 0:00,12.0000000,12.000005,47.793779000000,-4.359804000000,,Penmarc'h - Finistère,38355,observation-ebc6ef0e-841b-4907-9852-011059a27eab,https://biolit.fr/observations/observation-ebc6ef0e-841b-4907-9852-011059a27eab/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1130596.JPG,,TRUE, +N1,59110,sortie-ebc6ef0e-841b-4907-9852-011059a27eab,https://biolit.fr/sorties/sortie-ebc6ef0e-841b-4907-9852-011059a27eab/,Phil,,2/21/2020 0:00,12.0000000,12.000005,47.793779000000,-4.359804000000,,Penmarc'h - Finistère,38357,observation-ebc6ef0e-841b-4907-9852-011059a27eab-2,https://biolit.fr/observations/observation-ebc6ef0e-841b-4907-9852-011059a27eab-2/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1130597.JPG,,TRUE, +N1,59110,sortie-ebc6ef0e-841b-4907-9852-011059a27eab,https://biolit.fr/sorties/sortie-ebc6ef0e-841b-4907-9852-011059a27eab/,Phil,,2/21/2020 0:00,12.0000000,12.000005,47.793779000000,-4.359804000000,,Penmarc'h - Finistère,38359,observation-ebc6ef0e-841b-4907-9852-011059a27eab-3,https://biolit.fr/observations/observation-ebc6ef0e-841b-4907-9852-011059a27eab-3/,Tringa totanus,Chevalier gambette,,https://biolit.fr/wp-content/uploads/2023/07/P1130592.JPG,,TRUE, +N1,59110,sortie-ebc6ef0e-841b-4907-9852-011059a27eab,https://biolit.fr/sorties/sortie-ebc6ef0e-841b-4907-9852-011059a27eab/,Phil,,2/21/2020 0:00,12.0000000,12.000005,47.793779000000,-4.359804000000,,Penmarc'h - Finistère,38361,observation-ebc6ef0e-841b-4907-9852-011059a27eab-4,https://biolit.fr/observations/observation-ebc6ef0e-841b-4907-9852-011059a27eab-4/,Tringa totanus,Chevalier gambette,,https://biolit.fr/wp-content/uploads/2023/07/P1130598.JPG,,TRUE, +N1,59111,sortie-1b7b4a25-4c75-44d8-b004-62da7e182b52,https://biolit.fr/sorties/sortie-1b7b4a25-4c75-44d8-b004-62da7e182b52/,Phil,,03/06/2020,15.0000000,15.0000000,48.208965000000,-4.370104000000,,Telgruc-sur-Mer - Finistère,38363,observation-1b7b4a25-4c75-44d8-b004-62da7e182b52,https://biolit.fr/observations/observation-1b7b4a25-4c75-44d8-b004-62da7e182b52/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130725.JPG,,FALSE, +N1,59111,sortie-1b7b4a25-4c75-44d8-b004-62da7e182b52,https://biolit.fr/sorties/sortie-1b7b4a25-4c75-44d8-b004-62da7e182b52/,Phil,,03/06/2020,15.0000000,15.0000000,48.208965000000,-4.370104000000,,Telgruc-sur-Mer - Finistère,38365,observation-1b7b4a25-4c75-44d8-b004-62da7e182b52-2,https://biolit.fr/observations/observation-1b7b4a25-4c75-44d8-b004-62da7e182b52-2/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/P1130732.JPG,,TRUE, +N1,59111,sortie-1b7b4a25-4c75-44d8-b004-62da7e182b52,https://biolit.fr/sorties/sortie-1b7b4a25-4c75-44d8-b004-62da7e182b52/,Phil,,03/06/2020,15.0000000,15.0000000,48.208965000000,-4.370104000000,,Telgruc-sur-Mer - Finistère,38367,observation-1b7b4a25-4c75-44d8-b004-62da7e182b52-3,https://biolit.fr/observations/observation-1b7b4a25-4c75-44d8-b004-62da7e182b52-3/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1130733.JPG,,TRUE, +N1,59111,sortie-1b7b4a25-4c75-44d8-b004-62da7e182b52,https://biolit.fr/sorties/sortie-1b7b4a25-4c75-44d8-b004-62da7e182b52/,Phil,,03/06/2020,15.0000000,15.0000000,48.208965000000,-4.370104000000,,Telgruc-sur-Mer - Finistère,38369,observation-1b7b4a25-4c75-44d8-b004-62da7e182b52-4,https://biolit.fr/observations/observation-1b7b4a25-4c75-44d8-b004-62da7e182b52-4/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/P1130738.JPG,,TRUE, +N1,59111,sortie-1b7b4a25-4c75-44d8-b004-62da7e182b52,https://biolit.fr/sorties/sortie-1b7b4a25-4c75-44d8-b004-62da7e182b52/,Phil,,03/06/2020,15.0000000,15.0000000,48.208965000000,-4.370104000000,,Telgruc-sur-Mer - Finistère,38371,observation-1b7b4a25-4c75-44d8-b004-62da7e182b52-5,https://biolit.fr/observations/observation-1b7b4a25-4c75-44d8-b004-62da7e182b52-5/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1130739.JPG,,TRUE, +N1,59112,sortie-8c47daeb-7278-4257-82fb-d462e59b6981,https://biolit.fr/sorties/sortie-8c47daeb-7278-4257-82fb-d462e59b6981/,Phil,,3/16/2020 0:00,16.0000000,16.0000000,48.603584000000,-4.550660000000,,Plouguerneau - Finistère,38373,observation-8c47daeb-7278-4257-82fb-d462e59b6981,https://biolit.fr/observations/observation-8c47daeb-7278-4257-82fb-d462e59b6981/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200316_163501.jpg,,FALSE, +N1,59112,sortie-8c47daeb-7278-4257-82fb-d462e59b6981,https://biolit.fr/sorties/sortie-8c47daeb-7278-4257-82fb-d462e59b6981/,Phil,,3/16/2020 0:00,16.0000000,16.0000000,48.603584000000,-4.550660000000,,Plouguerneau - Finistère,38375,observation-8c47daeb-7278-4257-82fb-d462e59b6981-2,https://biolit.fr/observations/observation-8c47daeb-7278-4257-82fb-d462e59b6981-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200316_163610.jpg,,TRUE, +N1,59112,sortie-8c47daeb-7278-4257-82fb-d462e59b6981,https://biolit.fr/sorties/sortie-8c47daeb-7278-4257-82fb-d462e59b6981/,Phil,,3/16/2020 0:00,16.0000000,16.0000000,48.603584000000,-4.550660000000,,Plouguerneau - Finistère,38377,observation-8c47daeb-7278-4257-82fb-d462e59b6981-3,https://biolit.fr/observations/observation-8c47daeb-7278-4257-82fb-d462e59b6981-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200316_163621.jpg,,TRUE, +N1,59112,sortie-8c47daeb-7278-4257-82fb-d462e59b6981,https://biolit.fr/sorties/sortie-8c47daeb-7278-4257-82fb-d462e59b6981/,Phil,,3/16/2020 0:00,16.0000000,16.0000000,48.603584000000,-4.550660000000,,Plouguerneau - Finistère,38379,observation-8c47daeb-7278-4257-82fb-d462e59b6981-4,https://biolit.fr/observations/observation-8c47daeb-7278-4257-82fb-d462e59b6981-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200316_163630.jpg,,TRUE, +N1,59112,sortie-8c47daeb-7278-4257-82fb-d462e59b6981,https://biolit.fr/sorties/sortie-8c47daeb-7278-4257-82fb-d462e59b6981/,Phil,,3/16/2020 0:00,16.0000000,16.0000000,48.603584000000,-4.550660000000,,Plouguerneau - Finistère,38381,observation-8c47daeb-7278-4257-82fb-d462e59b6981-5,https://biolit.fr/observations/observation-8c47daeb-7278-4257-82fb-d462e59b6981-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200316_163647.jpg,,FALSE, +N1,59113,sortie-5bf7171a-3498-4ca1-bf7b-a762118a2eb1,https://biolit.fr/sorties/sortie-5bf7171a-3498-4ca1-bf7b-a762118a2eb1/,Phil,,3/13/2020 0:00,11.0000000,12.0000000,47.799040000000,-4.179617000000,,Loctudy - Finistère,38383,observation-5bf7171a-3498-4ca1-bf7b-a762118a2eb1,https://biolit.fr/observations/observation-5bf7171a-3498-4ca1-bf7b-a762118a2eb1/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200313_115343.jpg,,TRUE, +N1,59113,sortie-5bf7171a-3498-4ca1-bf7b-a762118a2eb1,https://biolit.fr/sorties/sortie-5bf7171a-3498-4ca1-bf7b-a762118a2eb1/,Phil,,3/13/2020 0:00,11.0000000,12.0000000,47.799040000000,-4.179617000000,,Loctudy - Finistère,38385,observation-5bf7171a-3498-4ca1-bf7b-a762118a2eb1-2,https://biolit.fr/observations/observation-5bf7171a-3498-4ca1-bf7b-a762118a2eb1-2/,Hediste diversicolor,Néréis multicolore,,https://biolit.fr/wp-content/uploads/2023/07/20200313_115924.jpg,,TRUE, +N1,59113,sortie-5bf7171a-3498-4ca1-bf7b-a762118a2eb1,https://biolit.fr/sorties/sortie-5bf7171a-3498-4ca1-bf7b-a762118a2eb1/,Phil,,3/13/2020 0:00,11.0000000,12.0000000,47.799040000000,-4.179617000000,,Loctudy - Finistère,38387,observation-5bf7171a-3498-4ca1-bf7b-a762118a2eb1-3,https://biolit.fr/observations/observation-5bf7171a-3498-4ca1-bf7b-a762118a2eb1-3/,Terpios gelatinosus,Eponge encroûtante bleue,,https://biolit.fr/wp-content/uploads/2023/07/20200313_115932.jpg,,TRUE, +N1,59113,sortie-5bf7171a-3498-4ca1-bf7b-a762118a2eb1,https://biolit.fr/sorties/sortie-5bf7171a-3498-4ca1-bf7b-a762118a2eb1/,Phil,,3/13/2020 0:00,11.0000000,12.0000000,47.799040000000,-4.179617000000,,Loctudy - Finistère,38389,observation-5bf7171a-3498-4ca1-bf7b-a762118a2eb1-4,https://biolit.fr/observations/observation-5bf7171a-3498-4ca1-bf7b-a762118a2eb1-4/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20200313_120317.jpg,,TRUE, +N1,59113,sortie-5bf7171a-3498-4ca1-bf7b-a762118a2eb1,https://biolit.fr/sorties/sortie-5bf7171a-3498-4ca1-bf7b-a762118a2eb1/,Phil,,3/13/2020 0:00,11.0000000,12.0000000,47.799040000000,-4.179617000000,,Loctudy - Finistère,38391,observation-5bf7171a-3498-4ca1-bf7b-a762118a2eb1-5,https://biolit.fr/observations/observation-5bf7171a-3498-4ca1-bf7b-a762118a2eb1-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20200313_120331.jpg,,TRUE, +N1,59114,sortie-7de97bbe-19a4-4252-bbbd-59dde82035bd,https://biolit.fr/sorties/sortie-7de97bbe-19a4-4252-bbbd-59dde82035bd/,Phil,,2/18/2020 0:00,17.0:35,17.0000000,47.796273000000,-3.851459000000,,Trégunc - Finistère,38393,observation-7de97bbe-19a4-4252-bbbd-59dde82035bd,https://biolit.fr/observations/observation-7de97bbe-19a4-4252-bbbd-59dde82035bd/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130570.JPG,,FALSE, +N1,59114,sortie-7de97bbe-19a4-4252-bbbd-59dde82035bd,https://biolit.fr/sorties/sortie-7de97bbe-19a4-4252-bbbd-59dde82035bd/,Phil,,2/18/2020 0:00,17.0:35,17.0000000,47.796273000000,-3.851459000000,,Trégunc - Finistère,38395,observation-7de97bbe-19a4-4252-bbbd-59dde82035bd-2,https://biolit.fr/observations/observation-7de97bbe-19a4-4252-bbbd-59dde82035bd-2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1130576.JPG,,TRUE, +N1,59114,sortie-7de97bbe-19a4-4252-bbbd-59dde82035bd,https://biolit.fr/sorties/sortie-7de97bbe-19a4-4252-bbbd-59dde82035bd/,Phil,,2/18/2020 0:00,17.0:35,17.0000000,47.796273000000,-3.851459000000,,Trégunc - Finistère,38397,observation-7de97bbe-19a4-4252-bbbd-59dde82035bd-3,https://biolit.fr/observations/observation-7de97bbe-19a4-4252-bbbd-59dde82035bd-3/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1130579.JPG,,TRUE, +N1,59114,sortie-7de97bbe-19a4-4252-bbbd-59dde82035bd,https://biolit.fr/sorties/sortie-7de97bbe-19a4-4252-bbbd-59dde82035bd/,Phil,,2/18/2020 0:00,17.0:35,17.0000000,47.796273000000,-3.851459000000,,Trégunc - Finistère,38399,observation-7de97bbe-19a4-4252-bbbd-59dde82035bd-4,https://biolit.fr/observations/observation-7de97bbe-19a4-4252-bbbd-59dde82035bd-4/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1130580.JPG,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38401,observation-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona crinita.jpg,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38402,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-2,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-2/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona fascicularis_1.PNG,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38403,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-3,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/ammotheidae.PNG,,FALSE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38405,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-4,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Anémone sp.PNG,,FALSE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38406,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-5,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-5/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_2.PNG,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38407,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-6,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-6/,Nereiphylla paretti,Néréiphylle de Paretto,,https://biolit.fr/wp-content/uploads/2023/07/annélide sp.PNG,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38409,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-7,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-7/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/asterina gibbosa.PNG,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38411,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-8,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-8/,Aslia lefevrei,Lèche-doigts de Lefèvre,,https://biolit.fr/wp-content/uploads/2023/07/aucune idée.PNG,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38413,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-9,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-9/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/Blennie sp.PNG,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38414,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-10,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-10/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_1.PNG,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38415,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-11,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Heteranomia squamula.PNG,,FALSE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38416,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-12,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-12/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona cinerea-scaled.jpg,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38417,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-13,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-13/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_1.PNG,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38418,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-14,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-14/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/marthasterias glacialis.PNG,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38420,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-15,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-15/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_1.PNG,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38421,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-16,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-16/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/Ophiotrix fragilis_0.PNG,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38422,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-17,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-17/,Berghia coerulescens,Berghia azurée,,https://biolit.fr/wp-content/uploads/2023/07/opisthobranche sp.PNG,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38424,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-18,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-18/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Paracentrotus lividus.PNG,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38425,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-19,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-19/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_0.PNG,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38426,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-20,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-20/,Serpula vermicularis,Serpule,,https://biolit.fr/wp-content/uploads/2023/07/spirographe sp.PNG,,TRUE, +N1,59115,sortie-03004c1c-d026-4074-a58c-4d07fdfb7233,https://biolit.fr/sorties/sortie-03004c1c-d026-4074-a58c-4d07fdfb7233/,Roman,,3/13/2020 0:00,14.0000000,16.0000000,47.680314000000,-3.200166000000,,Ria d'étel,38428,observation-03004c1c-d026-4074-a58c-4d07fdfb7233-21,https://biolit.fr/observations/observation-03004c1c-d026-4074-a58c-4d07fdfb7233-21/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_2.PNG,,TRUE, +N1,59116,sortie-1d2dc0af-304c-469c-9a7b-654b773801bc,https://biolit.fr/sorties/sortie-1d2dc0af-304c-469c-9a7b-654b773801bc/,Roman,,03/12/2020,12.0000000,14.0000000,47.701135000000,-3.388586000000,,Larmor PLage,38429,observation-1d2dc0af-304c-469c-9a7b-654b773801bc,https://biolit.fr/observations/observation-1d2dc0af-304c-469c-9a7b-654b773801bc/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/Acanthochitona fascicularis_0.PNG,,TRUE, +N1,59116,sortie-1d2dc0af-304c-469c-9a7b-654b773801bc,https://biolit.fr/sorties/sortie-1d2dc0af-304c-469c-9a7b-654b773801bc/,Roman,,03/12/2020,12.0000000,14.0000000,47.701135000000,-3.388586000000,,Larmor PLage,38430,observation-1d2dc0af-304c-469c-9a7b-654b773801bc-2,https://biolit.fr/observations/observation-1d2dc0af-304c-469c-9a7b-654b773801bc-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis_1.PNG,,TRUE, +N1,59116,sortie-1d2dc0af-304c-469c-9a7b-654b773801bc,https://biolit.fr/sorties/sortie-1d2dc0af-304c-469c-9a7b-654b773801bc/,Roman,,03/12/2020,12.0000000,14.0000000,47.701135000000,-3.388586000000,,Larmor PLage,38431,observation-1d2dc0af-304c-469c-9a7b-654b773801bc-3,https://biolit.fr/observations/observation-1d2dc0af-304c-469c-9a7b-654b773801bc-3/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/callisotoma zizyphynum_0.PNG,,TRUE, +N1,59116,sortie-1d2dc0af-304c-469c-9a7b-654b773801bc,https://biolit.fr/sorties/sortie-1d2dc0af-304c-469c-9a7b-654b773801bc/,Roman,,03/12/2020,12.0000000,14.0000000,47.701135000000,-3.388586000000,,Larmor PLage,38435,observation-1d2dc0af-304c-469c-9a7b-654b773801bc-5,https://biolit.fr/observations/observation-1d2dc0af-304c-469c-9a7b-654b773801bc-5/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/Galathea squamifera.PNG,,TRUE, +N1,59116,sortie-1d2dc0af-304c-469c-9a7b-654b773801bc,https://biolit.fr/sorties/sortie-1d2dc0af-304c-469c-9a7b-654b773801bc/,Roman,,03/12/2020,12.0000000,14.0000000,47.701135000000,-3.388586000000,,Larmor PLage,38436,observation-1d2dc0af-304c-469c-9a7b-654b773801bc-6,https://biolit.fr/observations/observation-1d2dc0af-304c-469c-9a7b-654b773801bc-6/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/Lineus longissimus_0.PNG,,TRUE, +N1,59116,sortie-1d2dc0af-304c-469c-9a7b-654b773801bc,https://biolit.fr/sorties/sortie-1d2dc0af-304c-469c-9a7b-654b773801bc/,Roman,,03/12/2020,12.0000000,14.0000000,47.701135000000,-3.388586000000,,Larmor PLage,38437,observation-1d2dc0af-304c-469c-9a7b-654b773801bc-7,https://biolit.fr/observations/observation-1d2dc0af-304c-469c-9a7b-654b773801bc-7/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/marthasterias glacialis.PNG,,TRUE, +N1,59116,sortie-1d2dc0af-304c-469c-9a7b-654b773801bc,https://biolit.fr/sorties/sortie-1d2dc0af-304c-469c-9a7b-654b773801bc/,Roman,,03/12/2020,12.0000000,14.0000000,47.701135000000,-3.388586000000,,Larmor PLage,38438,observation-1d2dc0af-304c-469c-9a7b-654b773801bc-8,https://biolit.fr/observations/observation-1d2dc0af-304c-469c-9a7b-654b773801bc-8/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber_0.PNG,,TRUE, +N1,59116,sortie-1d2dc0af-304c-469c-9a7b-654b773801bc,https://biolit.fr/sorties/sortie-1d2dc0af-304c-469c-9a7b-654b773801bc/,Roman,,03/12/2020,12.0000000,14.0000000,47.701135000000,-3.388586000000,,Larmor PLage,38440,observation-1d2dc0af-304c-469c-9a7b-654b773801bc-9,https://biolit.fr/observations/observation-1d2dc0af-304c-469c-9a7b-654b773801bc-9/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/Nerophis ophidion.PNG,,TRUE, +N1,59116,sortie-1d2dc0af-304c-469c-9a7b-654b773801bc,https://biolit.fr/sorties/sortie-1d2dc0af-304c-469c-9a7b-654b773801bc/,Roman,,03/12/2020,12.0000000,14.0000000,47.701135000000,-3.388586000000,,Larmor PLage,38443,observation-1d2dc0af-304c-469c-9a7b-654b773801bc-11,https://biolit.fr/observations/observation-1d2dc0af-304c-469c-9a7b-654b773801bc-11/,Polymastia boletiformis,Eponge mamelles,,https://biolit.fr/wp-content/uploads/2023/07/polymastia boliteformis.PNG,,TRUE, +N1,59116,sortie-1d2dc0af-304c-469c-9a7b-654b773801bc,https://biolit.fr/sorties/sortie-1d2dc0af-304c-469c-9a7b-654b773801bc/,Roman,,03/12/2020,12.0000000,14.0000000,47.701135000000,-3.388586000000,,Larmor PLage,38445,observation-1d2dc0af-304c-469c-9a7b-654b773801bc-12,https://biolit.fr/observations/observation-1d2dc0af-304c-469c-9a7b-654b773801bc-12/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/porcellana platycheles.jpg,,TRUE, +N1,59116,sortie-1d2dc0af-304c-469c-9a7b-654b773801bc,https://biolit.fr/sorties/sortie-1d2dc0af-304c-469c-9a7b-654b773801bc/,Roman,,03/12/2020,12.0000000,14.0000000,47.701135000000,-3.388586000000,,Larmor PLage,38446,observation-1d2dc0af-304c-469c-9a7b-654b773801bc-13,https://biolit.fr/observations/observation-1d2dc0af-304c-469c-9a7b-654b773801bc-13/,Spisula solida,Mactre épaisse,,https://biolit.fr/wp-content/uploads/2023/07/spisula solida.PNG,,TRUE, +N1,59116,sortie-1d2dc0af-304c-469c-9a7b-654b773801bc,https://biolit.fr/sorties/sortie-1d2dc0af-304c-469c-9a7b-654b773801bc/,Roman,,03/12/2020,12.0000000,14.0000000,47.701135000000,-3.388586000000,,Larmor PLage,38448,observation-1d2dc0af-304c-469c-9a7b-654b773801bc-14,https://biolit.fr/observations/observation-1d2dc0af-304c-469c-9a7b-654b773801bc-14/,Tethya citrina,Orange de mer de Manche Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Tethya citrina.PNG,,TRUE, +N1,59116,sortie-1d2dc0af-304c-469c-9a7b-654b773801bc,https://biolit.fr/sorties/sortie-1d2dc0af-304c-469c-9a7b-654b773801bc/,Roman,,03/12/2020,12.0000000,14.0000000,47.701135000000,-3.388586000000,,Larmor PLage,38449,observation-1d2dc0af-304c-469c-9a7b-654b773801bc-15,https://biolit.fr/observations/observation-1d2dc0af-304c-469c-9a7b-654b773801bc-15/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_1.PNG,,TRUE, +N1,59116,sortie-1d2dc0af-304c-469c-9a7b-654b773801bc,https://biolit.fr/sorties/sortie-1d2dc0af-304c-469c-9a7b-654b773801bc/,Roman,,03/12/2020,12.0000000,14.0000000,47.701135000000,-3.388586000000,,Larmor PLage,38450,observation-1d2dc0af-304c-469c-9a7b-654b773801bc-16,https://biolit.fr/observations/observation-1d2dc0af-304c-469c-9a7b-654b773801bc-16/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/xantho pilipes.PNG,,TRUE, +N1,59117,sortie-99243728-e996-4232-a71e-c8653c0f882f,https://biolit.fr/sorties/sortie-99243728-e996-4232-a71e-c8653c0f882f/,Phil,,2/14/2020 0:00,11.0000000,11.0000000,47.793152000000,-4.226560000000,,Lesconil - Finistère,38451,observation-99243728-e996-4232-a71e-c8653c0f882f,https://biolit.fr/observations/observation-99243728-e996-4232-a71e-c8653c0f882f/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200214_113144.jpg,,TRUE, +N1,59117,sortie-99243728-e996-4232-a71e-c8653c0f882f,https://biolit.fr/sorties/sortie-99243728-e996-4232-a71e-c8653c0f882f/,Phil,,2/14/2020 0:00,11.0000000,11.0000000,47.793152000000,-4.226560000000,,Lesconil - Finistère,38453,observation-99243728-e996-4232-a71e-c8653c0f882f-2,https://biolit.fr/observations/observation-99243728-e996-4232-a71e-c8653c0f882f-2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200214_113451.jpg,,TRUE, +N1,59117,sortie-99243728-e996-4232-a71e-c8653c0f882f,https://biolit.fr/sorties/sortie-99243728-e996-4232-a71e-c8653c0f882f/,Phil,,2/14/2020 0:00,11.0000000,11.0000000,47.793152000000,-4.226560000000,,Lesconil - Finistère,38455,observation-99243728-e996-4232-a71e-c8653c0f882f-3,https://biolit.fr/observations/observation-99243728-e996-4232-a71e-c8653c0f882f-3/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200214_113532.jpg,,TRUE, +N1,59117,sortie-99243728-e996-4232-a71e-c8653c0f882f,https://biolit.fr/sorties/sortie-99243728-e996-4232-a71e-c8653c0f882f/,Phil,,2/14/2020 0:00,11.0000000,11.0000000,47.793152000000,-4.226560000000,,Lesconil - Finistère,38457,observation-99243728-e996-4232-a71e-c8653c0f882f-4,https://biolit.fr/observations/observation-99243728-e996-4232-a71e-c8653c0f882f-4/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200214_113747.jpg,,TRUE, +N1,59117,sortie-99243728-e996-4232-a71e-c8653c0f882f,https://biolit.fr/sorties/sortie-99243728-e996-4232-a71e-c8653c0f882f/,Phil,,2/14/2020 0:00,11.0000000,11.0000000,47.793152000000,-4.226560000000,,Lesconil - Finistère,38459,observation-99243728-e996-4232-a71e-c8653c0f882f-5,https://biolit.fr/observations/observation-99243728-e996-4232-a71e-c8653c0f882f-5/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200214_113818.jpg,,TRUE, +N1,59117,sortie-99243728-e996-4232-a71e-c8653c0f882f,https://biolit.fr/sorties/sortie-99243728-e996-4232-a71e-c8653c0f882f/,Phil,,2/14/2020 0:00,11.0000000,11.0000000,47.793152000000,-4.226560000000,,Lesconil - Finistère,38461,observation-99243728-e996-4232-a71e-c8653c0f882f-6,https://biolit.fr/observations/observation-99243728-e996-4232-a71e-c8653c0f882f-6/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/20200214_113044.jpg,,TRUE, +N1,59118,sortie-5749ef49-0552-4c15-aaf6-06891af46b19,https://biolit.fr/sorties/sortie-5749ef49-0552-4c15-aaf6-06891af46b19/,Phil,,2/14/2020 0:00,12.000005,12.0000000,47.79293900000,-4.279091000000,,Tréffiagat - Finistère,38463,observation-5749ef49-0552-4c15-aaf6-06891af46b19,https://biolit.fr/observations/observation-5749ef49-0552-4c15-aaf6-06891af46b19/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200214_121023.jpg,,TRUE, +N1,59118,sortie-5749ef49-0552-4c15-aaf6-06891af46b19,https://biolit.fr/sorties/sortie-5749ef49-0552-4c15-aaf6-06891af46b19/,Phil,,2/14/2020 0:00,12.000005,12.0000000,47.79293900000,-4.279091000000,,Tréffiagat - Finistère,38465,observation-5749ef49-0552-4c15-aaf6-06891af46b19-2,https://biolit.fr/observations/observation-5749ef49-0552-4c15-aaf6-06891af46b19-2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200214_121051.jpg,,TRUE, +N1,59118,sortie-5749ef49-0552-4c15-aaf6-06891af46b19,https://biolit.fr/sorties/sortie-5749ef49-0552-4c15-aaf6-06891af46b19/,Phil,,2/14/2020 0:00,12.000005,12.0000000,47.79293900000,-4.279091000000,,Tréffiagat - Finistère,38467,observation-5749ef49-0552-4c15-aaf6-06891af46b19-3,https://biolit.fr/observations/observation-5749ef49-0552-4c15-aaf6-06891af46b19-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200214_121136.jpg,,TRUE, +N1,59118,sortie-5749ef49-0552-4c15-aaf6-06891af46b19,https://biolit.fr/sorties/sortie-5749ef49-0552-4c15-aaf6-06891af46b19/,Phil,,2/14/2020 0:00,12.000005,12.0000000,47.79293900000,-4.279091000000,,Tréffiagat - Finistère,38469,observation-5749ef49-0552-4c15-aaf6-06891af46b19-4,https://biolit.fr/observations/observation-5749ef49-0552-4c15-aaf6-06891af46b19-4/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200214_121222.jpg,,TRUE, +N1,59119,sortie-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2,https://biolit.fr/sorties/sortie-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2/,Phil,,2/20/2020 0:00,16.0000000,17.0000000,47.889761000000,-3.982672000000,,Fouesnant - Finistère,38471,observation-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2,https://biolit.fr/observations/observation-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20200220_164855.jpg,,TRUE, +N1,59119,sortie-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2,https://biolit.fr/sorties/sortie-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2/,Phil,,2/20/2020 0:00,16.0000000,17.0000000,47.889761000000,-3.982672000000,,Fouesnant - Finistère,38473,observation-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2-2,https://biolit.fr/observations/observation-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2-2/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/20200220_165126.jpg,,TRUE, +N1,59119,sortie-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2,https://biolit.fr/sorties/sortie-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2/,Phil,,2/20/2020 0:00,16.0000000,17.0000000,47.889761000000,-3.982672000000,,Fouesnant - Finistère,38475,observation-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2-3,https://biolit.fr/observations/observation-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2-3/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20200220_164940.jpg,,TRUE, +N1,59119,sortie-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2,https://biolit.fr/sorties/sortie-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2/,Phil,,2/20/2020 0:00,16.0000000,17.0000000,47.889761000000,-3.982672000000,,Fouesnant - Finistère,38477,observation-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2-4,https://biolit.fr/observations/observation-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2-4/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20200220_165851.jpg,,TRUE, +N1,59119,sortie-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2,https://biolit.fr/sorties/sortie-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2/,Phil,,2/20/2020 0:00,16.0000000,17.0000000,47.889761000000,-3.982672000000,,Fouesnant - Finistère,38479,observation-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2-5,https://biolit.fr/observations/observation-97b30e63-9abe-4d20-ba4b-6c4bfa1521b2-5/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200220_165902.jpg,,TRUE, +N1,59120,sortie-b83114c8-17b0-400e-b87d-844395b479cf,https://biolit.fr/sorties/sortie-b83114c8-17b0-400e-b87d-844395b479cf/,Phil,,2/17/2020 0:00,11.0000000,11.0:45,48.674607000000,-3.923359000000,,Carantec - Finistère,38481,observation-b83114c8-17b0-400e-b87d-844395b479cf,https://biolit.fr/observations/observation-b83114c8-17b0-400e-b87d-844395b479cf/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1130549.JPG,,TRUE, +N1,59120,sortie-b83114c8-17b0-400e-b87d-844395b479cf,https://biolit.fr/sorties/sortie-b83114c8-17b0-400e-b87d-844395b479cf/,Phil,,2/17/2020 0:00,11.0000000,11.0:45,48.674607000000,-3.923359000000,,Carantec - Finistère,38483,observation-b83114c8-17b0-400e-b87d-844395b479cf-2,https://biolit.fr/observations/observation-b83114c8-17b0-400e-b87d-844395b479cf-2/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1130552.JPG,,TRUE, +N1,59120,sortie-b83114c8-17b0-400e-b87d-844395b479cf,https://biolit.fr/sorties/sortie-b83114c8-17b0-400e-b87d-844395b479cf/,Phil,,2/17/2020 0:00,11.0000000,11.0:45,48.674607000000,-3.923359000000,,Carantec - Finistère,38485,observation-b83114c8-17b0-400e-b87d-844395b479cf-3,https://biolit.fr/observations/observation-b83114c8-17b0-400e-b87d-844395b479cf-3/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1130538.JPG,,TRUE, +N1,59120,sortie-b83114c8-17b0-400e-b87d-844395b479cf,https://biolit.fr/sorties/sortie-b83114c8-17b0-400e-b87d-844395b479cf/,Phil,,2/17/2020 0:00,11.0000000,11.0:45,48.674607000000,-3.923359000000,,Carantec - Finistère,38487,observation-b83114c8-17b0-400e-b87d-844395b479cf-4,https://biolit.fr/observations/observation-b83114c8-17b0-400e-b87d-844395b479cf-4/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1130553.JPG,,TRUE, +N1,59121,sortie-61b053ff-e283-404c-bd35-2cc918fc8a73,https://biolit.fr/sorties/sortie-61b053ff-e283-404c-bd35-2cc918fc8a73/,Phil,,03/06/2020,15.0:35,15.0000000,48.209029000000,-4.369713000000,,Telgruc-sur-Mer - Finistère,38489,observation-61b053ff-e283-404c-bd35-2cc918fc8a73,https://biolit.fr/observations/observation-61b053ff-e283-404c-bd35-2cc918fc8a73/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1130721.JPG,,TRUE, +N1,59121,sortie-61b053ff-e283-404c-bd35-2cc918fc8a73,https://biolit.fr/sorties/sortie-61b053ff-e283-404c-bd35-2cc918fc8a73/,Phil,,03/06/2020,15.0:35,15.0000000,48.209029000000,-4.369713000000,,Telgruc-sur-Mer - Finistère,38491,observation-61b053ff-e283-404c-bd35-2cc918fc8a73-2,https://biolit.fr/observations/observation-61b053ff-e283-404c-bd35-2cc918fc8a73-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1130719.JPG,,TRUE, +N1,59121,sortie-61b053ff-e283-404c-bd35-2cc918fc8a73,https://biolit.fr/sorties/sortie-61b053ff-e283-404c-bd35-2cc918fc8a73/,Phil,,03/06/2020,15.0:35,15.0000000,48.209029000000,-4.369713000000,,Telgruc-sur-Mer - Finistère,38493,observation-61b053ff-e283-404c-bd35-2cc918fc8a73-3,https://biolit.fr/observations/observation-61b053ff-e283-404c-bd35-2cc918fc8a73-3/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/P1130715.JPG,,TRUE, +N1,59121,sortie-61b053ff-e283-404c-bd35-2cc918fc8a73,https://biolit.fr/sorties/sortie-61b053ff-e283-404c-bd35-2cc918fc8a73/,Phil,,03/06/2020,15.0:35,15.0000000,48.209029000000,-4.369713000000,,Telgruc-sur-Mer - Finistère,38495,observation-61b053ff-e283-404c-bd35-2cc918fc8a73-4,https://biolit.fr/observations/observation-61b053ff-e283-404c-bd35-2cc918fc8a73-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130714.JPG,,FALSE, +N1,59122,sortie-0b43063d-0c95-4203-ba42-aa92cb0b2853,https://biolit.fr/sorties/sortie-0b43063d-0c95-4203-ba42-aa92cb0b2853/,Phil,,2/14/2020 0:00,11.0:45,11.0000000,47.793650000000,-4.228429000000,,Tréffiagat - Finistère,38497,observation-0b43063d-0c95-4203-ba42-aa92cb0b2853,https://biolit.fr/observations/observation-0b43063d-0c95-4203-ba42-aa92cb0b2853/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200214_114516.jpg,,TRUE, +N1,59122,sortie-0b43063d-0c95-4203-ba42-aa92cb0b2853,https://biolit.fr/sorties/sortie-0b43063d-0c95-4203-ba42-aa92cb0b2853/,Phil,,2/14/2020 0:00,11.0:45,11.0000000,47.793650000000,-4.228429000000,,Tréffiagat - Finistère,38499,observation-0b43063d-0c95-4203-ba42-aa92cb0b2853-2,https://biolit.fr/observations/observation-0b43063d-0c95-4203-ba42-aa92cb0b2853-2/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200214_114647.jpg,,TRUE, +N1,59122,sortie-0b43063d-0c95-4203-ba42-aa92cb0b2853,https://biolit.fr/sorties/sortie-0b43063d-0c95-4203-ba42-aa92cb0b2853/,Phil,,2/14/2020 0:00,11.0:45,11.0000000,47.793650000000,-4.228429000000,,Tréffiagat - Finistère,38501,observation-0b43063d-0c95-4203-ba42-aa92cb0b2853-3,https://biolit.fr/observations/observation-0b43063d-0c95-4203-ba42-aa92cb0b2853-3/,Ammophila arenaria,Oyat,,https://biolit.fr/wp-content/uploads/2023/07/20200214_114831.jpg,,TRUE, +N1,59122,sortie-0b43063d-0c95-4203-ba42-aa92cb0b2853,https://biolit.fr/sorties/sortie-0b43063d-0c95-4203-ba42-aa92cb0b2853/,Phil,,2/14/2020 0:00,11.0:45,11.0000000,47.793650000000,-4.228429000000,,Tréffiagat - Finistère,38503,observation-0b43063d-0c95-4203-ba42-aa92cb0b2853-4,https://biolit.fr/observations/observation-0b43063d-0c95-4203-ba42-aa92cb0b2853-4/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/20200214_114954.jpg,,TRUE, +N1,59123,sortie-00eb4fae-547d-4bd3-9709-e750629fdf19,https://biolit.fr/sorties/sortie-00eb4fae-547d-4bd3-9709-e750629fdf19/,Phil,,2/16/2020 0:00,13.0000000,13.000005,47.891023000000,-3.975851000000,,Fouesnant - Finistère,38505,observation-00eb4fae-547d-4bd3-9709-e750629fdf19,https://biolit.fr/observations/observation-00eb4fae-547d-4bd3-9709-e750629fdf19/,Charadrius hiaticula,Grand gravelot,,https://biolit.fr/wp-content/uploads/2023/07/P1130511.JPG,,TRUE, +N1,59123,sortie-00eb4fae-547d-4bd3-9709-e750629fdf19,https://biolit.fr/sorties/sortie-00eb4fae-547d-4bd3-9709-e750629fdf19/,Phil,,2/16/2020 0:00,13.0000000,13.000005,47.891023000000,-3.975851000000,,Fouesnant - Finistère,38507,observation-00eb4fae-547d-4bd3-9709-e750629fdf19-2,https://biolit.fr/observations/observation-00eb4fae-547d-4bd3-9709-e750629fdf19-2/,Charadrius hiaticula,Grand gravelot,,https://biolit.fr/wp-content/uploads/2023/07/P1130512.JPG,,TRUE, +N1,59123,sortie-00eb4fae-547d-4bd3-9709-e750629fdf19,https://biolit.fr/sorties/sortie-00eb4fae-547d-4bd3-9709-e750629fdf19/,Phil,,2/16/2020 0:00,13.0000000,13.000005,47.891023000000,-3.975851000000,,Fouesnant - Finistère,38509,observation-00eb4fae-547d-4bd3-9709-e750629fdf19-3,https://biolit.fr/observations/observation-00eb4fae-547d-4bd3-9709-e750629fdf19-3/,Calidris alba,Bécasseau sanderling,,https://biolit.fr/wp-content/uploads/2023/07/P1130513.JPG,,TRUE, +N1,59124,sortie-69956a6e-0968-417b-9623-c7d7292c0dff,https://biolit.fr/sorties/sortie-69956a6e-0968-417b-9623-c7d7292c0dff/,Phil,,2/14/2020 0:00,12.000005,12.0000000,47.792429000000,-4.279145000000,,Tréffiagat - Finistère,38511,observation-69956a6e-0968-417b-9623-c7d7292c0dff,https://biolit.fr/observations/observation-69956a6e-0968-417b-9623-c7d7292c0dff/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200214_120737.jpg,,TRUE, +N1,59124,sortie-69956a6e-0968-417b-9623-c7d7292c0dff,https://biolit.fr/sorties/sortie-69956a6e-0968-417b-9623-c7d7292c0dff/,Phil,,2/14/2020 0:00,12.000005,12.0000000,47.792429000000,-4.279145000000,,Tréffiagat - Finistère,38513,observation-69956a6e-0968-417b-9623-c7d7292c0dff-2,https://biolit.fr/observations/observation-69956a6e-0968-417b-9623-c7d7292c0dff-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200214_120613.jpg,,TRUE, +N1,59124,sortie-69956a6e-0968-417b-9623-c7d7292c0dff,https://biolit.fr/sorties/sortie-69956a6e-0968-417b-9623-c7d7292c0dff/,Phil,,2/14/2020 0:00,12.000005,12.0000000,47.792429000000,-4.279145000000,,Tréffiagat - Finistère,38515,observation-69956a6e-0968-417b-9623-c7d7292c0dff-3,https://biolit.fr/observations/observation-69956a6e-0968-417b-9623-c7d7292c0dff-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200214_120640.jpg,,TRUE, +N1,59124,sortie-69956a6e-0968-417b-9623-c7d7292c0dff,https://biolit.fr/sorties/sortie-69956a6e-0968-417b-9623-c7d7292c0dff/,Phil,,2/14/2020 0:00,12.000005,12.0000000,47.792429000000,-4.279145000000,,Tréffiagat - Finistère,38517,observation-69956a6e-0968-417b-9623-c7d7292c0dff-4,https://biolit.fr/observations/observation-69956a6e-0968-417b-9623-c7d7292c0dff-4/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200214_120658.jpg,,TRUE, +N1,59124,sortie-69956a6e-0968-417b-9623-c7d7292c0dff,https://biolit.fr/sorties/sortie-69956a6e-0968-417b-9623-c7d7292c0dff/,Phil,,2/14/2020 0:00,12.000005,12.0000000,47.792429000000,-4.279145000000,,Tréffiagat - Finistère,38519,observation-69956a6e-0968-417b-9623-c7d7292c0dff-5,https://biolit.fr/observations/observation-69956a6e-0968-417b-9623-c7d7292c0dff-5/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200214_120812.jpg,,TRUE, +N1,59125,sortie-cd7e703f-2f6f-4834-ac1b-6a167206c793,https://biolit.fr/sorties/sortie-cd7e703f-2f6f-4834-ac1b-6a167206c793/,Phil,,2/14/2020 0:00,11.0:15,11.0000000,47.79972400000,-4.213173000000,,Lesconil - Finistère,38521,observation-cd7e703f-2f6f-4834-ac1b-6a167206c793,https://biolit.fr/observations/observation-cd7e703f-2f6f-4834-ac1b-6a167206c793/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200214_111908.jpg,,FALSE, +N1,59125,sortie-cd7e703f-2f6f-4834-ac1b-6a167206c793,https://biolit.fr/sorties/sortie-cd7e703f-2f6f-4834-ac1b-6a167206c793/,Phil,,2/14/2020 0:00,11.0:15,11.0000000,47.79972400000,-4.213173000000,,Lesconil - Finistère,38523,observation-cd7e703f-2f6f-4834-ac1b-6a167206c793-2,https://biolit.fr/observations/observation-cd7e703f-2f6f-4834-ac1b-6a167206c793-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200214_111836.jpg,,FALSE, +N1,59126,sortie-f994d244-1e1d-4c62-8aa5-d252104d5e2a,https://biolit.fr/sorties/sortie-f994d244-1e1d-4c62-8aa5-d252104d5e2a/,Roman,,03/01/2020,16.0000000,16.0000000,47.65375600000,-3.203551000000,,Etel,38525,observation-f994d244-1e1d-4c62-8aa5-d252104d5e2a,https://biolit.fr/observations/observation-f994d244-1e1d-4c62-8aa5-d252104d5e2a/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_2.PNG,,TRUE, +N1,59126,sortie-f994d244-1e1d-4c62-8aa5-d252104d5e2a,https://biolit.fr/sorties/sortie-f994d244-1e1d-4c62-8aa5-d252104d5e2a/,Roman,,03/01/2020,16.0000000,16.0000000,47.65375600000,-3.203551000000,,Etel,38526,observation-f994d244-1e1d-4c62-8aa5-d252104d5e2a-2,https://biolit.fr/observations/observation-f994d244-1e1d-4c62-8aa5-d252104d5e2a-2/,Tritia neritea,Cyclope néritoïde,,https://biolit.fr/wp-content/uploads/2023/07/cyclope neritea.PNG,,TRUE, +N1,59126,sortie-f994d244-1e1d-4c62-8aa5-d252104d5e2a,https://biolit.fr/sorties/sortie-f994d244-1e1d-4c62-8aa5-d252104d5e2a/,Roman,,03/01/2020,16.0000000,16.0000000,47.65375600000,-3.203551000000,,Etel,38528,observation-f994d244-1e1d-4c62-8aa5-d252104d5e2a-3,https://biolit.fr/observations/observation-f994d244-1e1d-4c62-8aa5-d252104d5e2a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/88056964_311605933133433_5548491782381109248_n-scaled.jpg,,FALSE, +N1,59127,sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd,https://biolit.fr/sorties/sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd/,Roman,,03/01/2020,15.0000000,16.0000000,47.651578000000,-3.205042000000,,Etel,38530,observation-2d608acc-e272-4bea-9dfd-65e87776bdbd,https://biolit.fr/observations/observation-2d608acc-e272-4bea-9dfd-65e87776bdbd/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea_1.PNG,,TRUE, +N1,59127,sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd,https://biolit.fr/sorties/sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd/,Roman,,03/01/2020,15.0000000,16.0000000,47.651578000000,-3.205042000000,,Etel,38531,observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-2,https://biolit.fr/observations/observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/anemonia equina_0.PNG,,TRUE, +N1,59127,sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd,https://biolit.fr/sorties/sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd/,Roman,,03/01/2020,15.0000000,16.0000000,47.651578000000,-3.205042000000,,Etel,38533,observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-3,https://biolit.fr/observations/observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-3/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/Anomia eppiphium.PNG,,TRUE, +N1,59127,sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd,https://biolit.fr/sorties/sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd/,Roman,,03/01/2020,15.0000000,16.0000000,47.651578000000,-3.205042000000,,Etel,38534,observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-4,https://biolit.fr/observations/observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-4/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/aulactinia verrucosa 1.PNG,,TRUE, +N1,59127,sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd,https://biolit.fr/sorties/sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd/,Roman,,03/01/2020,15.0000000,16.0000000,47.651578000000,-3.205042000000,,Etel,38536,observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-5,https://biolit.fr/observations/observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-5/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/Buccinum undatum.PNG,,TRUE, +N1,59127,sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd,https://biolit.fr/sorties/sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd/,Roman,,03/01/2020,15.0000000,16.0000000,47.651578000000,-3.205042000000,,Etel,38537,observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-6,https://biolit.fr/observations/observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-6/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_1.PNG,,TRUE, +N1,59127,sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd,https://biolit.fr/sorties/sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd/,Roman,,03/01/2020,15.0000000,16.0000000,47.651578000000,-3.205042000000,,Etel,38538,observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-7,https://biolit.fr/observations/observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-7/,Donacilla cornea,Donacilla cornée,,https://biolit.fr/wp-content/uploads/2023/07/Donacilla cornea.PNG,,TRUE, +N1,59127,sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd,https://biolit.fr/sorties/sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd/,Roman,,03/01/2020,15.0000000,16.0000000,47.651578000000,-3.205042000000,,Etel,38540,observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-8,https://biolit.fr/observations/observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-8/,Euspira catena,Natice porte-chaîne,,https://biolit.fr/wp-content/uploads/2023/07/euspira catena.PNG,,TRUE, +N1,59127,sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd,https://biolit.fr/sorties/sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd/,Roman,,03/01/2020,15.0000000,16.0000000,47.651578000000,-3.205042000000,,Etel,38542,observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-9,https://biolit.fr/observations/observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-9/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/lepas anatifera.PNG,,TRUE, +N1,59127,sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd,https://biolit.fr/sorties/sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd/,Roman,,03/01/2020,15.0000000,16.0000000,47.651578000000,-3.205042000000,,Etel,38544,observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-10,https://biolit.fr/observations/observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-10/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/lepas anatifera1.PNG,,TRUE, +N1,59127,sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd,https://biolit.fr/sorties/sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd/,Roman,,03/01/2020,15.0000000,16.0000000,47.651578000000,-3.205042000000,,Etel,38546,observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-11,https://biolit.fr/observations/observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-11/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_1.PNG,,TRUE, +N1,59127,sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd,https://biolit.fr/sorties/sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd/,Roman,,03/01/2020,15.0000000,16.0000000,47.651578000000,-3.205042000000,,Etel,38547,observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-12,https://biolit.fr/observations/observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-12/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes philippinarum_0.PNG,,TRUE, +N1,59127,sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd,https://biolit.fr/sorties/sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd/,Roman,,03/01/2020,15.0000000,16.0000000,47.651578000000,-3.205042000000,,Etel,38548,observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-13,https://biolit.fr/observations/observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-13/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Sepia officinalis.PNG,,TRUE, +N1,59127,sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd,https://biolit.fr/sorties/sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd/,Roman,,03/01/2020,15.0000000,16.0000000,47.651578000000,-3.205042000000,,Etel,38550,observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-14,https://biolit.fr/observations/observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-14/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Sepia orbignyana.PNG,,TRUE, +N1,59127,sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd,https://biolit.fr/sorties/sortie-2d608acc-e272-4bea-9dfd-65e87776bdbd/,Roman,,03/01/2020,15.0000000,16.0000000,47.651578000000,-3.205042000000,,Etel,38552,observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-15,https://biolit.fr/observations/observation-2d608acc-e272-4bea-9dfd-65e87776bdbd-15/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Velella velella_0.PNG,,TRUE, +N1,59128,sortie-245aa861-51cf-4832-9d76-d95a4858a5c8,https://biolit.fr/sorties/sortie-245aa861-51cf-4832-9d76-d95a4858a5c8/,Roman,,2/29/2020 0:00,14.0000000,15.0000000,47.735314000000,-3.337339000000,,"Locmiquélic, Pen mané ",38554,observation-245aa861-51cf-4832-9d76-d95a4858a5c8,https://biolit.fr/observations/observation-245aa861-51cf-4832-9d76-d95a4858a5c8/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/Arenaria interpres.PNG,,TRUE, +N1,59128,sortie-245aa861-51cf-4832-9d76-d95a4858a5c8,https://biolit.fr/sorties/sortie-245aa861-51cf-4832-9d76-d95a4858a5c8/,Roman,,2/29/2020 0:00,14.0000000,15.0000000,47.735314000000,-3.337339000000,,"Locmiquélic, Pen mané ",38555,observation-245aa861-51cf-4832-9d76-d95a4858a5c8-2,https://biolit.fr/observations/observation-245aa861-51cf-4832-9d76-d95a4858a5c8-2/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_0.PNG,,TRUE, +N1,59128,sortie-245aa861-51cf-4832-9d76-d95a4858a5c8,https://biolit.fr/sorties/sortie-245aa861-51cf-4832-9d76-d95a4858a5c8/,Roman,,2/29/2020 0:00,14.0000000,15.0000000,47.735314000000,-3.337339000000,,"Locmiquélic, Pen mané ",38556,observation-245aa861-51cf-4832-9d76-d95a4858a5c8-3,https://biolit.fr/observations/observation-245aa861-51cf-4832-9d76-d95a4858a5c8-3/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Crassostrea gigas.jpg,,TRUE, +N1,59128,sortie-245aa861-51cf-4832-9d76-d95a4858a5c8,https://biolit.fr/sorties/sortie-245aa861-51cf-4832-9d76-d95a4858a5c8/,Roman,,2/29/2020 0:00,14.0000000,15.0000000,47.735314000000,-3.337339000000,,"Locmiquélic, Pen mané ",38557,observation-245aa861-51cf-4832-9d76-d95a4858a5c8-4,https://biolit.fr/observations/observation-245aa861-51cf-4832-9d76-d95a4858a5c8-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_0.PNG,,TRUE, +N1,59128,sortie-245aa861-51cf-4832-9d76-d95a4858a5c8,https://biolit.fr/sorties/sortie-245aa861-51cf-4832-9d76-d95a4858a5c8/,Roman,,2/29/2020 0:00,14.0000000,15.0000000,47.735314000000,-3.337339000000,,"Locmiquélic, Pen mané ",38558,observation-245aa861-51cf-4832-9d76-d95a4858a5c8-5,https://biolit.fr/observations/observation-245aa861-51cf-4832-9d76-d95a4858a5c8-5/,Mya arenaria,Mye des sables,,https://biolit.fr/wp-content/uploads/2023/07/Mya arenaria.PNG,,TRUE, +N1,59128,sortie-245aa861-51cf-4832-9d76-d95a4858a5c8,https://biolit.fr/sorties/sortie-245aa861-51cf-4832-9d76-d95a4858a5c8/,Roman,,2/29/2020 0:00,14.0000000,15.0000000,47.735314000000,-3.337339000000,,"Locmiquélic, Pen mané ",38559,observation-245aa861-51cf-4832-9d76-d95a4858a5c8-6,https://biolit.fr/observations/observation-245aa861-51cf-4832-9d76-d95a4858a5c8-6/,Turritellinella tricarinata,Turritelle commune,,https://biolit.fr/wp-content/uploads/2023/07/turitella communis_0.PNG,,TRUE, +N1,59129,sortie-001b26ce-c999-4a6e-83fd-28ab1bce9ef1,https://biolit.fr/sorties/sortie-001b26ce-c999-4a6e-83fd-28ab1bce9ef1/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.796093000000,-4.357881000000,,Penmarc'h - Finistère,38561,observation-001b26ce-c999-4a6e-83fd-28ab1bce9ef1,https://biolit.fr/observations/observation-001b26ce-c999-4a6e-83fd-28ab1bce9ef1/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1130585.JPG,,TRUE, +N1,59129,sortie-001b26ce-c999-4a6e-83fd-28ab1bce9ef1,https://biolit.fr/sorties/sortie-001b26ce-c999-4a6e-83fd-28ab1bce9ef1/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.796093000000,-4.357881000000,,Penmarc'h - Finistère,38563,observation-001b26ce-c999-4a6e-83fd-28ab1bce9ef1-2,https://biolit.fr/observations/observation-001b26ce-c999-4a6e-83fd-28ab1bce9ef1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130582.JPG,,FALSE, +N1,59129,sortie-001b26ce-c999-4a6e-83fd-28ab1bce9ef1,https://biolit.fr/sorties/sortie-001b26ce-c999-4a6e-83fd-28ab1bce9ef1/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.796093000000,-4.357881000000,,Penmarc'h - Finistère,38565,observation-001b26ce-c999-4a6e-83fd-28ab1bce9ef1-3,https://biolit.fr/observations/observation-001b26ce-c999-4a6e-83fd-28ab1bce9ef1-3/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1130583.JPG,,TRUE, +N1,59129,sortie-001b26ce-c999-4a6e-83fd-28ab1bce9ef1,https://biolit.fr/sorties/sortie-001b26ce-c999-4a6e-83fd-28ab1bce9ef1/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.796093000000,-4.357881000000,,Penmarc'h - Finistère,38567,observation-001b26ce-c999-4a6e-83fd-28ab1bce9ef1-4,https://biolit.fr/observations/observation-001b26ce-c999-4a6e-83fd-28ab1bce9ef1-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1130589.JPG,,TRUE, +N1,59129,sortie-001b26ce-c999-4a6e-83fd-28ab1bce9ef1,https://biolit.fr/sorties/sortie-001b26ce-c999-4a6e-83fd-28ab1bce9ef1/,Phil,,2/21/2020 0:00,12.0000000,12.0000000,47.796093000000,-4.357881000000,,Penmarc'h - Finistère,38569,observation-001b26ce-c999-4a6e-83fd-28ab1bce9ef1-5,https://biolit.fr/observations/observation-001b26ce-c999-4a6e-83fd-28ab1bce9ef1-5/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1130658.JPG,,TRUE, +N1,59130,sortie-176a62b9-74e8-4f72-a934-0ccf38ca1542,https://biolit.fr/sorties/sortie-176a62b9-74e8-4f72-a934-0ccf38ca1542/,club de la mer nice,,2/27/2020 0:00,16.0000000,18.0000000,28.575839000000,-16.143955000000,,Tenerife,38571,observation-176a62b9-74e8-4f72-a934-0ccf38ca1542,https://biolit.fr/observations/observation-176a62b9-74e8-4f72-a934-0ccf38ca1542/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200227_155506.jpg,,TRUE, +N1,59131,sortie-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94,https://biolit.fr/sorties/sortie-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94/,Phil,,2/20/2020 0:00,16.0000000,16.0:45,47.889874000000,-3.973583000000,,Fouesnant - Finistère,38573,observation-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94,https://biolit.fr/observations/observation-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20200220_164027.jpg,,TRUE, +N1,59131,sortie-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94,https://biolit.fr/sorties/sortie-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94/,Phil,,2/20/2020 0:00,16.0000000,16.0:45,47.889874000000,-3.973583000000,,Fouesnant - Finistère,38575,observation-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94-2,https://biolit.fr/observations/observation-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94-2/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20200220_164318.jpg,,TRUE, +N1,59131,sortie-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94,https://biolit.fr/sorties/sortie-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94/,Phil,,2/20/2020 0:00,16.0000000,16.0:45,47.889874000000,-3.973583000000,,Fouesnant - Finistère,38577,observation-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94-3,https://biolit.fr/observations/observation-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200220_164353.jpg,,FALSE, +N1,59131,sortie-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94,https://biolit.fr/sorties/sortie-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94/,Phil,,2/20/2020 0:00,16.0000000,16.0:45,47.889874000000,-3.973583000000,,Fouesnant - Finistère,38579,observation-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94-4,https://biolit.fr/observations/observation-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94-4/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/20200220_164500-scaled.jpg,,TRUE, +N1,59131,sortie-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94,https://biolit.fr/sorties/sortie-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94/,Phil,,2/20/2020 0:00,16.0000000,16.0:45,47.889874000000,-3.973583000000,,Fouesnant - Finistère,38581,observation-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94-5,https://biolit.fr/observations/observation-b019fe4f-3c29-4e96-b85a-aa5a1d60ea94-5/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/20200220_164538.jpg,,TRUE, +N1,59132,sortie-6c9a67c4-8910-4001-ae50-986c9506d6e0,https://biolit.fr/sorties/sortie-6c9a67c4-8910-4001-ae50-986c9506d6e0/,Phil,,2/14/2020 0:00,11.0000000,11.0000000,47.799588000000,-4.212948000000,,Lesconil - Finistère,38583,observation-6c9a67c4-8910-4001-ae50-986c9506d6e0,https://biolit.fr/observations/observation-6c9a67c4-8910-4001-ae50-986c9506d6e0/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200214_111734.jpg,,TRUE, +N1,59132,sortie-6c9a67c4-8910-4001-ae50-986c9506d6e0,https://biolit.fr/sorties/sortie-6c9a67c4-8910-4001-ae50-986c9506d6e0/,Phil,,2/14/2020 0:00,11.0000000,11.0000000,47.799588000000,-4.212948000000,,Lesconil - Finistère,38585,observation-6c9a67c4-8910-4001-ae50-986c9506d6e0-2,https://biolit.fr/observations/observation-6c9a67c4-8910-4001-ae50-986c9506d6e0-2/,Venerupis corrugata,Palourde-poulette,,https://biolit.fr/wp-content/uploads/2023/07/20200214_111803.jpg,,TRUE, +N1,59133,sortie-68bd290c-8682-4bb7-b9ea-4563e8be2ef4,https://biolit.fr/sorties/sortie-68bd290c-8682-4bb7-b9ea-4563e8be2ef4/,Phil,,2/16/2020 0:00,12.0000000,13.0000000,47.886216000000,-3.985419000000,,Fouesnant - Finistère,38587,observation-68bd290c-8682-4bb7-b9ea-4563e8be2ef4,https://biolit.fr/observations/observation-68bd290c-8682-4bb7-b9ea-4563e8be2ef4/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20200216_125128.jpg,,TRUE, +N1,59133,sortie-68bd290c-8682-4bb7-b9ea-4563e8be2ef4,https://biolit.fr/sorties/sortie-68bd290c-8682-4bb7-b9ea-4563e8be2ef4/,Phil,,2/16/2020 0:00,12.0000000,13.0000000,47.886216000000,-3.985419000000,,Fouesnant - Finistère,38589,observation-68bd290c-8682-4bb7-b9ea-4563e8be2ef4-2,https://biolit.fr/observations/observation-68bd290c-8682-4bb7-b9ea-4563e8be2ef4-2/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20200216_125145.jpg,,TRUE, +N1,59133,sortie-68bd290c-8682-4bb7-b9ea-4563e8be2ef4,https://biolit.fr/sorties/sortie-68bd290c-8682-4bb7-b9ea-4563e8be2ef4/,Phil,,2/16/2020 0:00,12.0000000,13.0000000,47.886216000000,-3.985419000000,,Fouesnant - Finistère,38591,observation-68bd290c-8682-4bb7-b9ea-4563e8be2ef4-3,https://biolit.fr/observations/observation-68bd290c-8682-4bb7-b9ea-4563e8be2ef4-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200216_125233.jpg,,FALSE, +N1,59133,sortie-68bd290c-8682-4bb7-b9ea-4563e8be2ef4,https://biolit.fr/sorties/sortie-68bd290c-8682-4bb7-b9ea-4563e8be2ef4/,Phil,,2/16/2020 0:00,12.0000000,13.0000000,47.886216000000,-3.985419000000,,Fouesnant - Finistère,38593,observation-68bd290c-8682-4bb7-b9ea-4563e8be2ef4-4,https://biolit.fr/observations/observation-68bd290c-8682-4bb7-b9ea-4563e8be2ef4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200216_125237.jpg,,FALSE, +N1,59133,sortie-68bd290c-8682-4bb7-b9ea-4563e8be2ef4,https://biolit.fr/sorties/sortie-68bd290c-8682-4bb7-b9ea-4563e8be2ef4/,Phil,,2/16/2020 0:00,12.0000000,13.0000000,47.886216000000,-3.985419000000,,Fouesnant - Finistère,38595,observation-68bd290c-8682-4bb7-b9ea-4563e8be2ef4-5,https://biolit.fr/observations/observation-68bd290c-8682-4bb7-b9ea-4563e8be2ef4-5/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/20200216_125333.jpg,,TRUE, +N1,59133,sortie-68bd290c-8682-4bb7-b9ea-4563e8be2ef4,https://biolit.fr/sorties/sortie-68bd290c-8682-4bb7-b9ea-4563e8be2ef4/,Phil,,2/16/2020 0:00,12.0000000,13.0000000,47.886216000000,-3.985419000000,,Fouesnant - Finistère,38597,observation-68bd290c-8682-4bb7-b9ea-4563e8be2ef4-6,https://biolit.fr/observations/observation-68bd290c-8682-4bb7-b9ea-4563e8be2ef4-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200216_125619.jpg,,FALSE, +N1,59134,sortie-b3dc0066-43a8-46db-b089-6c388d25cadf,https://biolit.fr/sorties/sortie-b3dc0066-43a8-46db-b089-6c388d25cadf/,Phil,,12/29/2019 0:00,12.0000000,12.0000000,47.870867000000,-4.103009000000,,Bénodet - Finistère,38607,observation-b3dc0066-43a8-46db-b089-6c388d25cadf-5,https://biolit.fr/observations/observation-b3dc0066-43a8-46db-b089-6c388d25cadf-5/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/20191229_122716.jpg,,TRUE, +N1,59134,sortie-b3dc0066-43a8-46db-b089-6c388d25cadf,https://biolit.fr/sorties/sortie-b3dc0066-43a8-46db-b089-6c388d25cadf/,Phil,,12/29/2019 0:00,12.0000000,12.0000000,47.870867000000,-4.103009000000,,Bénodet - Finistère,38609,observation-b3dc0066-43a8-46db-b089-6c388d25cadf-6,https://biolit.fr/observations/observation-b3dc0066-43a8-46db-b089-6c388d25cadf-6/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/20191229_122805.jpg,,TRUE, +N1,59135,sortie-8f47171f-fba8-4f2f-a7e2-d6986e466eda,https://biolit.fr/sorties/sortie-8f47171f-fba8-4f2f-a7e2-d6986e466eda/,Phil,,2/18/2020 0:00,17.0000000,17.0:35,47.796437000000,-3.851146000000,,Trégunc - Finistère,38611,observation-8f47171f-fba8-4f2f-a7e2-d6986e466eda,https://biolit.fr/observations/observation-8f47171f-fba8-4f2f-a7e2-d6986e466eda/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/P1130567.JPG,,TRUE, +N1,59135,sortie-8f47171f-fba8-4f2f-a7e2-d6986e466eda,https://biolit.fr/sorties/sortie-8f47171f-fba8-4f2f-a7e2-d6986e466eda/,Phil,,2/18/2020 0:00,17.0000000,17.0:35,47.796437000000,-3.851146000000,,Trégunc - Finistère,38613,observation-8f47171f-fba8-4f2f-a7e2-d6986e466eda-2,https://biolit.fr/observations/observation-8f47171f-fba8-4f2f-a7e2-d6986e466eda-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1130572.JPG,,TRUE, +N1,59135,sortie-8f47171f-fba8-4f2f-a7e2-d6986e466eda,https://biolit.fr/sorties/sortie-8f47171f-fba8-4f2f-a7e2-d6986e466eda/,Phil,,2/18/2020 0:00,17.0000000,17.0:35,47.796437000000,-3.851146000000,,Trégunc - Finistère,38615,observation-8f47171f-fba8-4f2f-a7e2-d6986e466eda-3,https://biolit.fr/observations/observation-8f47171f-fba8-4f2f-a7e2-d6986e466eda-3/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/P1130566.JPG,,TRUE, +N1,59135,sortie-8f47171f-fba8-4f2f-a7e2-d6986e466eda,https://biolit.fr/sorties/sortie-8f47171f-fba8-4f2f-a7e2-d6986e466eda/,Phil,,2/18/2020 0:00,17.0000000,17.0:35,47.796437000000,-3.851146000000,,Trégunc - Finistère,38617,observation-8f47171f-fba8-4f2f-a7e2-d6986e466eda-4,https://biolit.fr/observations/observation-8f47171f-fba8-4f2f-a7e2-d6986e466eda-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1130562.JPG,,TRUE, +N1,59135,sortie-8f47171f-fba8-4f2f-a7e2-d6986e466eda,https://biolit.fr/sorties/sortie-8f47171f-fba8-4f2f-a7e2-d6986e466eda/,Phil,,2/18/2020 0:00,17.0000000,17.0:35,47.796437000000,-3.851146000000,,Trégunc - Finistère,38619,observation-8f47171f-fba8-4f2f-a7e2-d6986e466eda-5,https://biolit.fr/observations/observation-8f47171f-fba8-4f2f-a7e2-d6986e466eda-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130555.JPG,,FALSE, +N1,59136,sortie-8a3fdbaf-71e0-49e7-92de-1267c3bfed7d,https://biolit.fr/sorties/sortie-8a3fdbaf-71e0-49e7-92de-1267c3bfed7d/,Phil,,2/17/2020 0:00,11.0000000,11.0:35,48.674684000000,-3.923022000000,,Carantec - Finistère,38621,observation-8a3fdbaf-71e0-49e7-92de-1267c3bfed7d,https://biolit.fr/observations/observation-8a3fdbaf-71e0-49e7-92de-1267c3bfed7d/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200217_113344.jpg,,TRUE, +N1,59136,sortie-8a3fdbaf-71e0-49e7-92de-1267c3bfed7d,https://biolit.fr/sorties/sortie-8a3fdbaf-71e0-49e7-92de-1267c3bfed7d/,Phil,,2/17/2020 0:00,11.0000000,11.0:35,48.674684000000,-3.923022000000,,Carantec - Finistère,38623,observation-8a3fdbaf-71e0-49e7-92de-1267c3bfed7d-2,https://biolit.fr/observations/observation-8a3fdbaf-71e0-49e7-92de-1267c3bfed7d-2/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200217_113358.jpg,,TRUE, +N1,59136,sortie-8a3fdbaf-71e0-49e7-92de-1267c3bfed7d,https://biolit.fr/sorties/sortie-8a3fdbaf-71e0-49e7-92de-1267c3bfed7d/,Phil,,2/17/2020 0:00,11.0000000,11.0:35,48.674684000000,-3.923022000000,,Carantec - Finistère,38625,observation-8a3fdbaf-71e0-49e7-92de-1267c3bfed7d-3,https://biolit.fr/observations/observation-8a3fdbaf-71e0-49e7-92de-1267c3bfed7d-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200217_113040.jpg,,TRUE, +N1,59136,sortie-8a3fdbaf-71e0-49e7-92de-1267c3bfed7d,https://biolit.fr/sorties/sortie-8a3fdbaf-71e0-49e7-92de-1267c3bfed7d/,Phil,,2/17/2020 0:00,11.0000000,11.0:35,48.674684000000,-3.923022000000,,Carantec - Finistère,38627,observation-8a3fdbaf-71e0-49e7-92de-1267c3bfed7d-4,https://biolit.fr/observations/observation-8a3fdbaf-71e0-49e7-92de-1267c3bfed7d-4/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20200217_113301.jpg,,TRUE, +N1,59137,sortie-6c2b833e-e5ee-4a18-899e-0c333ec573eb,https://biolit.fr/sorties/sortie-6c2b833e-e5ee-4a18-899e-0c333ec573eb/,Phil,,2/16/2020 0:00,13.0000000,13.000005,47.890628000000,-3.986629000000,,Fouesnant - Finistère,38629,observation-6c2b833e-e5ee-4a18-899e-0c333ec573eb,https://biolit.fr/observations/observation-6c2b833e-e5ee-4a18-899e-0c333ec573eb/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1130523.JPG,,TRUE, +N1,59137,sortie-6c2b833e-e5ee-4a18-899e-0c333ec573eb,https://biolit.fr/sorties/sortie-6c2b833e-e5ee-4a18-899e-0c333ec573eb/,Phil,,2/16/2020 0:00,13.0000000,13.000005,47.890628000000,-3.986629000000,,Fouesnant - Finistère,38631,observation-6c2b833e-e5ee-4a18-899e-0c333ec573eb-2,https://biolit.fr/observations/observation-6c2b833e-e5ee-4a18-899e-0c333ec573eb-2/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1130522.JPG,,TRUE, +N1,59137,sortie-6c2b833e-e5ee-4a18-899e-0c333ec573eb,https://biolit.fr/sorties/sortie-6c2b833e-e5ee-4a18-899e-0c333ec573eb/,Phil,,2/16/2020 0:00,13.0000000,13.000005,47.890628000000,-3.986629000000,,Fouesnant - Finistère,38633,observation-6c2b833e-e5ee-4a18-899e-0c333ec573eb-3,https://biolit.fr/observations/observation-6c2b833e-e5ee-4a18-899e-0c333ec573eb-3/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1130520.JPG,,TRUE, +N1,59137,sortie-6c2b833e-e5ee-4a18-899e-0c333ec573eb,https://biolit.fr/sorties/sortie-6c2b833e-e5ee-4a18-899e-0c333ec573eb/,Phil,,2/16/2020 0:00,13.0000000,13.000005,47.890628000000,-3.986629000000,,Fouesnant - Finistère,38635,observation-6c2b833e-e5ee-4a18-899e-0c333ec573eb-4,https://biolit.fr/observations/observation-6c2b833e-e5ee-4a18-899e-0c333ec573eb-4/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1130507.JPG,,TRUE, +N1,59138,sortie-daf9d1b6-dd73-4372-934a-c1edc39ba06c,https://biolit.fr/sorties/sortie-daf9d1b6-dd73-4372-934a-c1edc39ba06c/,Phil,,2/14/2020 0:00,11.0:25,11.0000000,47.792326000000,-4.224363000000,,Lesconil - Finistère,38637,observation-daf9d1b6-dd73-4372-934a-c1edc39ba06c,https://biolit.fr/observations/observation-daf9d1b6-dd73-4372-934a-c1edc39ba06c/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200214_112840.jpg,,FALSE, +N1,59138,sortie-daf9d1b6-dd73-4372-934a-c1edc39ba06c,https://biolit.fr/sorties/sortie-daf9d1b6-dd73-4372-934a-c1edc39ba06c/,Phil,,2/14/2020 0:00,11.0:25,11.0000000,47.792326000000,-4.224363000000,,Lesconil - Finistère,38639,observation-daf9d1b6-dd73-4372-934a-c1edc39ba06c-2,https://biolit.fr/observations/observation-daf9d1b6-dd73-4372-934a-c1edc39ba06c-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200214_112844.jpg,,TRUE, +N1,59138,sortie-daf9d1b6-dd73-4372-934a-c1edc39ba06c,https://biolit.fr/sorties/sortie-daf9d1b6-dd73-4372-934a-c1edc39ba06c/,Phil,,2/14/2020 0:00,11.0:25,11.0000000,47.792326000000,-4.224363000000,,Lesconil - Finistère,38641,observation-daf9d1b6-dd73-4372-934a-c1edc39ba06c-3,https://biolit.fr/observations/observation-daf9d1b6-dd73-4372-934a-c1edc39ba06c-3/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200214_112940.jpg,,TRUE, +N1,59138,sortie-daf9d1b6-dd73-4372-934a-c1edc39ba06c,https://biolit.fr/sorties/sortie-daf9d1b6-dd73-4372-934a-c1edc39ba06c/,Phil,,2/14/2020 0:00,11.0:25,11.0000000,47.792326000000,-4.224363000000,,Lesconil - Finistère,38643,observation-daf9d1b6-dd73-4372-934a-c1edc39ba06c-4,https://biolit.fr/observations/observation-daf9d1b6-dd73-4372-934a-c1edc39ba06c-4/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200214_113055.jpg,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38645,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea_0.PNG,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38646,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-2,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/anemonia equina.PNG,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38648,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-3,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-3/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/Balanus perforatus_0.PNG,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38649,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-4,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Bryo sp-scaled.jpg,,FALSE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38650,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-5,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-5/,Calyptraea chinensis,Chapeau chinois,,https://biolit.fr/wp-content/uploads/2023/07/calyptraea chinensis_0.PNG,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38652,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-6,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-6/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas_0-scaled.jpg,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38653,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-7,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-7/,Epitonium clathrus,Scalaire,,https://biolit.fr/wp-content/uploads/2023/07/Epitonium clathrus_0.PNG,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38654,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-8,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-8/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/exuvie de cancer pagurus.PNG,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38656,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-9,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-9/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/Haematopus ostralegus.PNG,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38657,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-10,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona sp.PNG,,FALSE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38658,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-11,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-11/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/littorina fabalis_0.PNG,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38660,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-12,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-12/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_0-scaled.jpg,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38661,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-13,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-13/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus_0-scaled.jpg,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38662,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-14,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-14/,Platichthys flesus,Flet,,https://biolit.fr/wp-content/uploads/2023/07/platichthys flesus.PNG,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38664,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-15,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-15/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/porcellana platycheles.jpg,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38665,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-16,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-16/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/Sabellaria alveolata.PNG,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38666,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-17,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-17/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Velella velella_0.PNG,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38667,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-18,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-18/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa_1.PNG,,TRUE, +N1,59139,sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7,https://biolit.fr/sorties/sortie-226d6b94-37f3-406f-85ae-a1f52cf7ddf7/,Roman,,2/14/2020 0:00,14.0:15,16.0000000,47.694123000000,-3.347902000000,,Gâvres,38668,observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-19,https://biolit.fr/observations/observation-226d6b94-37f3-406f-85ae-a1f52cf7ddf7-19/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_0.PNG,,TRUE, +N1,59140,sortie-833e3785-ad2d-4ed8-93cb-4ac01745322a,https://biolit.fr/sorties/sortie-833e3785-ad2d-4ed8-93cb-4ac01745322a/,Phil,,2/14/2020 0:00,11.0000000,11.0:15,47.799557000000,-4.212862000000,,Lesconil - Finistère,38669,observation-833e3785-ad2d-4ed8-93cb-4ac01745322a,https://biolit.fr/observations/observation-833e3785-ad2d-4ed8-93cb-4ac01745322a/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20200214_111321.jpg,,TRUE, +N1,59140,sortie-833e3785-ad2d-4ed8-93cb-4ac01745322a,https://biolit.fr/sorties/sortie-833e3785-ad2d-4ed8-93cb-4ac01745322a/,Phil,,2/14/2020 0:00,11.0000000,11.0:15,47.799557000000,-4.212862000000,,Lesconil - Finistère,38671,observation-833e3785-ad2d-4ed8-93cb-4ac01745322a-2,https://biolit.fr/observations/observation-833e3785-ad2d-4ed8-93cb-4ac01745322a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200214_111251.jpg,,FALSE, +N1,59140,sortie-833e3785-ad2d-4ed8-93cb-4ac01745322a,https://biolit.fr/sorties/sortie-833e3785-ad2d-4ed8-93cb-4ac01745322a/,Phil,,2/14/2020 0:00,11.0000000,11.0:15,47.799557000000,-4.212862000000,,Lesconil - Finistère,38673,observation-833e3785-ad2d-4ed8-93cb-4ac01745322a-3,https://biolit.fr/observations/observation-833e3785-ad2d-4ed8-93cb-4ac01745322a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200214_111435.jpg,,FALSE, +N1,59141,sortie-df6d2332-f1d3-4eda-a7cf-5d3cfbeb3936,https://biolit.fr/sorties/sortie-df6d2332-f1d3-4eda-a7cf-5d3cfbeb3936/,Phil,,2/13/2020 0:00,11.0:25,11.0000000,47.831324000000,-3.89124300000,,Trégunc - Finistère,38675,observation-df6d2332-f1d3-4eda-a7cf-5d3cfbeb3936,https://biolit.fr/observations/observation-df6d2332-f1d3-4eda-a7cf-5d3cfbeb3936/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200213_112658.jpg,,FALSE, +N1,59141,sortie-df6d2332-f1d3-4eda-a7cf-5d3cfbeb3936,https://biolit.fr/sorties/sortie-df6d2332-f1d3-4eda-a7cf-5d3cfbeb3936/,Phil,,2/13/2020 0:00,11.0:25,11.0000000,47.831324000000,-3.89124300000,,Trégunc - Finistère,38677,observation-df6d2332-f1d3-4eda-a7cf-5d3cfbeb3936-2,https://biolit.fr/observations/observation-df6d2332-f1d3-4eda-a7cf-5d3cfbeb3936-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200213_112708.jpg,,TRUE, +N1,59141,sortie-df6d2332-f1d3-4eda-a7cf-5d3cfbeb3936,https://biolit.fr/sorties/sortie-df6d2332-f1d3-4eda-a7cf-5d3cfbeb3936/,Phil,,2/13/2020 0:00,11.0:25,11.0000000,47.831324000000,-3.89124300000,,Trégunc - Finistère,38679,observation-df6d2332-f1d3-4eda-a7cf-5d3cfbeb3936-3,https://biolit.fr/observations/observation-df6d2332-f1d3-4eda-a7cf-5d3cfbeb3936-3/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200213_112837.jpg,,TRUE, +N1,59141,sortie-df6d2332-f1d3-4eda-a7cf-5d3cfbeb3936,https://biolit.fr/sorties/sortie-df6d2332-f1d3-4eda-a7cf-5d3cfbeb3936/,Phil,,2/13/2020 0:00,11.0:25,11.0000000,47.831324000000,-3.89124300000,,Trégunc - Finistère,38681,observation-df6d2332-f1d3-4eda-a7cf-5d3cfbeb3936-4,https://biolit.fr/observations/observation-df6d2332-f1d3-4eda-a7cf-5d3cfbeb3936-4/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200213_112854.jpg,,TRUE, +N1,59142,sortie-678629f9-b1a5-4743-ad59-a25f3c7ae5be,https://biolit.fr/sorties/sortie-678629f9-b1a5-4743-ad59-a25f3c7ae5be/,Phil,,2/13/2020 0:00,11.0:35,11.0000000,47.833883000000,-3.895546000000,,Trégunc - Finistère,38683,observation-678629f9-b1a5-4743-ad59-a25f3c7ae5be,https://biolit.fr/observations/observation-678629f9-b1a5-4743-ad59-a25f3c7ae5be/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200213_113727.jpg,,FALSE, +N1,59143,sortie-52a50b84-1c1c-4620-987d-97404100d49b,https://biolit.fr/sorties/sortie-52a50b84-1c1c-4620-987d-97404100d49b/,Centre de Découverte Mer et Montagne,,02/06/2020,11.0000000,11.0000000,43.546058000000,7.047155000000,CDMM (Centre de Découverte Mer et Montagne),Boulevard de la Gazanaire,38685,observation-52a50b84-1c1c-4620-987d-97404100d49b,https://biolit.fr/observations/observation-52a50b84-1c1c-4620-987d-97404100d49b/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200206_112102-scaled.jpg,,FALSE, +N1,59144,sortie-3523ff0c-b159-45a1-b391-65cbb28068c1,https://biolit.fr/sorties/sortie-3523ff0c-b159-45a1-b391-65cbb28068c1/,Centre de Découverte Mer et Montagne,,02/06/2020,11.0000000,18.0000000,43.546223000000,7.047262000000,CDMM (Centre de Découverte Mer et Montagne),boulevard de la gazagnaire,38687,observation-3523ff0c-b159-45a1-b391-65cbb28068c1,https://biolit.fr/observations/observation-3523ff0c-b159-45a1-b391-65cbb28068c1/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3339-scaled.jpg,,TRUE, +N1,59145,sortie-d0a919ac-3cc3-40a7-a7ec-0863ebef2b4a,https://biolit.fr/sorties/sortie-d0a919ac-3cc3-40a7-a7ec-0863ebef2b4a/,Centre de Découverte Mer et Montagne,,02/06/2020,11.0000000,11.0000000,43.546115000000,7.047117000000,CDMM (Centre de Découverte Mer et Montagne),boulevard de la Gazagnaire,38689,observation-d0a919ac-3cc3-40a7-a7ec-0863ebef2b4a,https://biolit.fr/observations/observation-d0a919ac-3cc3-40a7-a7ec-0863ebef2b4a/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1180-scaled.jpg,,FALSE, +N1,59146,sortie-de6d5c0d-d505-4eeb-8ddf-4d7225bd3b02,https://biolit.fr/sorties/sortie-de6d5c0d-d505-4eeb-8ddf-4d7225bd3b02/,Centre de Découverte Mer et Montagne,,02/06/2020,11.0000000,11.0000000,43.546249000000,7.047315000000,CDMM (Centre de Découverte Mer et Montagne),Boulevard de la Gazagnaire,38691,observation-de6d5c0d-d505-4eeb-8ddf-4d7225bd3b02,https://biolit.fr/observations/observation-de6d5c0d-d505-4eeb-8ddf-4d7225bd3b02/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/20200206_111711-scaled.jpg,,TRUE, +N1,59147,sortie-67e0c943-dabc-4421-a596-362e942b3a6d,https://biolit.fr/sorties/sortie-67e0c943-dabc-4421-a596-362e942b3a6d/,Centre de Découverte Mer et Montagne,,02/06/2020,10.0000000,13.0000000,43.546023000000,7.047144000000,CDMM (Centre de Découverte Mer et Montagne),boulevard de la gazagnaire,38693,observation-67e0c943-dabc-4421-a596-362e942b3a6d,https://biolit.fr/observations/observation-67e0c943-dabc-4421-a596-362e942b3a6d/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20200206_111650-scaled.jpg,,TRUE, +N1,59148,sortie-4c8258ef-3688-468b-837c-7f719c57dca7,https://biolit.fr/sorties/sortie-4c8258ef-3688-468b-837c-7f719c57dca7/,Centre de Découverte Mer et Montagne,,02/06/2020,9.0:35,14.0:15,43.546029000000,7.047171000000,CDMM (Centre de Découverte Mer et Montagne),"Cannes, Boulevard de la Gazagnaire",38695,observation-4c8258ef-3688-468b-837c-7f719c57dca7,https://biolit.fr/observations/observation-4c8258ef-3688-468b-837c-7f719c57dca7/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_E0942.JPG,,TRUE, +N1,59149,sortie-97f80231-c01c-4398-a54e-0e1603a4c4df,https://biolit.fr/sorties/sortie-97f80231-c01c-4398-a54e-0e1603a4c4df/,Centre de Découverte Mer et Montagne,,02/06/2020,10.0:15,13.0000000,43.546066000000,7.047230000000,CDMM (Centre de Découverte Mer et Montagne),boulevard de la Gazagnaire,38697,observation-97f80231-c01c-4398-a54e-0e1603a4c4df,https://biolit.fr/observations/observation-97f80231-c01c-4398-a54e-0e1603a4c4df/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9361-scaled.jpg,,FALSE, +N1,59150,sortie-eb254f24-194c-447b-a48d-36b6ad017008,https://biolit.fr/sorties/sortie-eb254f24-194c-447b-a48d-36b6ad017008/,Centre de Découverte Mer et Montagne,,02/06/2020,11.0000000,11.0000000,43.552870000000,7.017715000000,CDMM (Centre de Découverte Mer et Montagne),"Cannes, le boulevard de la Gazagnaire ",38699,observation-eb254f24-194c-447b-a48d-36b6ad017008,https://biolit.fr/observations/observation-eb254f24-194c-447b-a48d-36b6ad017008/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/20200206_111726-scaled.jpg,,TRUE, +N1,59151,sortie-b61a3e73-8408-4667-be65-54db89607984,https://biolit.fr/sorties/sortie-b61a3e73-8408-4667-be65-54db89607984/,Phil,,12/22/2019 0:00,17.0000000,17.0:45,47.801417000000,-4.182478000000,,Loctudy - Finistère,38701,observation-b61a3e73-8408-4667-be65-54db89607984,https://biolit.fr/observations/observation-b61a3e73-8408-4667-be65-54db89607984/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/P1130462.JPG,,TRUE, +N1,59151,sortie-b61a3e73-8408-4667-be65-54db89607984,https://biolit.fr/sorties/sortie-b61a3e73-8408-4667-be65-54db89607984/,Phil,,12/22/2019 0:00,17.0000000,17.0:45,47.801417000000,-4.182478000000,,Loctudy - Finistère,38703,observation-b61a3e73-8408-4667-be65-54db89607984-2,https://biolit.fr/observations/observation-b61a3e73-8408-4667-be65-54db89607984-2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191222_174458.jpg,,TRUE, +N1,59151,sortie-b61a3e73-8408-4667-be65-54db89607984,https://biolit.fr/sorties/sortie-b61a3e73-8408-4667-be65-54db89607984/,Phil,,12/22/2019 0:00,17.0000000,17.0:45,47.801417000000,-4.182478000000,,Loctudy - Finistère,38705,observation-b61a3e73-8408-4667-be65-54db89607984-3,https://biolit.fr/observations/observation-b61a3e73-8408-4667-be65-54db89607984-3/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/P1130491.JPG,,TRUE, +N1,59151,sortie-b61a3e73-8408-4667-be65-54db89607984,https://biolit.fr/sorties/sortie-b61a3e73-8408-4667-be65-54db89607984/,Phil,,12/22/2019 0:00,17.0000000,17.0:45,47.801417000000,-4.182478000000,,Loctudy - Finistère,38707,observation-b61a3e73-8408-4667-be65-54db89607984-4,https://biolit.fr/observations/observation-b61a3e73-8408-4667-be65-54db89607984-4/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1130496.JPG,,TRUE, +N1,59152,sortie-016c4e31-2f5c-496b-af0a-904e6ef8314d,https://biolit.fr/sorties/sortie-016c4e31-2f5c-496b-af0a-904e6ef8314d/,Phil,,1/23/2020 0:00,17.0000000,17.0000000,47.830486000000,-4.15880600000,,Loctudy - Finistère,38709,observation-016c4e31-2f5c-496b-af0a-904e6ef8314d,https://biolit.fr/observations/observation-016c4e31-2f5c-496b-af0a-904e6ef8314d/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200123_170743.jpg,,FALSE, +N1,59152,sortie-016c4e31-2f5c-496b-af0a-904e6ef8314d,https://biolit.fr/sorties/sortie-016c4e31-2f5c-496b-af0a-904e6ef8314d/,Phil,,1/23/2020 0:00,17.0000000,17.0000000,47.830486000000,-4.15880600000,,Loctudy - Finistère,38711,observation-016c4e31-2f5c-496b-af0a-904e6ef8314d-2,https://biolit.fr/observations/observation-016c4e31-2f5c-496b-af0a-904e6ef8314d-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200123_170119.jpg,,TRUE, +N1,59152,sortie-016c4e31-2f5c-496b-af0a-904e6ef8314d,https://biolit.fr/sorties/sortie-016c4e31-2f5c-496b-af0a-904e6ef8314d/,Phil,,1/23/2020 0:00,17.0000000,17.0000000,47.830486000000,-4.15880600000,,Loctudy - Finistère,38713,observation-016c4e31-2f5c-496b-af0a-904e6ef8314d-3,https://biolit.fr/observations/observation-016c4e31-2f5c-496b-af0a-904e6ef8314d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200123_170905.jpg,,FALSE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38715,observation-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328/,Antalis vulgaris,Dentale,,https://biolit.fr/wp-content/uploads/2023/07/antalis vulgaris.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38717,observation-4748dea9-a65b-4582-a957-bd4151c79328-2,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-2/,Aporrhais pespelecani,Pied de pélican commun,,https://biolit.fr/wp-content/uploads/2023/07/apporhais pespelecani.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38719,observation-4748dea9-a65b-4582-a957-bd4151c79328-3,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-3/,Arcopagia crassa,Telline épaisse,,https://biolit.fr/wp-content/uploads/2023/07/Arcopagia crassa.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38721,observation-4748dea9-a65b-4582-a957-bd4151c79328-4,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-4/,Calyptraea chinensis,Chapeau chinois,,https://biolit.fr/wp-content/uploads/2023/07/Calyptraea chinensis.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38722,observation-4748dea9-a65b-4582-a957-bd4151c79328-5,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-5/,Scyliorhinus canicula,Capsule de petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/capsule d'oeuf de petite roussette.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38724,observation-4748dea9-a65b-4582-a957-bd4151c79328-6,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capsule d'oeuf de raie.PNG,,FALSE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38725,observation-4748dea9-a65b-4582-a957-bd4151c79328-7,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-7/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/chlamys varia.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38727,observation-4748dea9-a65b-4582-a957-bd4151c79328-8,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crassadoma pusio.PNG,,FALSE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38728,observation-4748dea9-a65b-4582-a957-bd4151c79328-9,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-9/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crepidula fornicata_0.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38729,observation-4748dea9-a65b-4582-a957-bd4151c79328-10,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-10/,Diodora graeca,Fissurelle,,https://biolit.fr/wp-content/uploads/2023/07/diodora graeca.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38731,observation-4748dea9-a65b-4582-a957-bd4151c79328-11,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-11/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/2023/07/donax trunculus.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38733,observation-4748dea9-a65b-4582-a957-bd4151c79328-12,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-12/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/Echinocardium cordatum.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38734,observation-4748dea9-a65b-4582-a957-bd4151c79328-13,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-13/,Dosinia exoleta,Dosinie radiée,,https://biolit.fr/wp-content/uploads/2023/07/dosinia exoleta.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38736,observation-4748dea9-a65b-4582-a957-bd4151c79328-14,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-14/,Echinocyamus pusillus,Fève de mer,,https://biolit.fr/wp-content/uploads/2023/07/Echinocyamus pusillus_0.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38737,observation-4748dea9-a65b-4582-a957-bd4151c79328-15,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-15/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Glycymeris glycymeris_0.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38738,observation-4748dea9-a65b-4582-a957-bd4151c79328-16,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-16/,Laevicardium crassum,Bucarde de Norvège,,https://biolit.fr/wp-content/uploads/2023/07/laevicardium crassum_0.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38740,observation-4748dea9-a65b-4582-a957-bd4151c79328-17,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/lutraria magna_0.PNG,,FALSE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38742,observation-4748dea9-a65b-4582-a957-bd4151c79328-18,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-18/,Macoma balthica,Telline de la Baltique,,https://biolit.fr/wp-content/uploads/2023/07/Macoma balthica.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38743,observation-4748dea9-a65b-4582-a957-bd4151c79328-19,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-19/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/oeuf de buccin.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38745,observation-4748dea9-a65b-4582-a957-bd4151c79328-20,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-20/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/pecten maximus.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38747,observation-4748dea9-a65b-4582-a957-bd4151c79328-21,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-21/,Aequipecten opercularis,Peigne operculé,,https://biolit.fr/wp-content/uploads/2023/07/pecten opercularis.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38749,observation-4748dea9-a65b-4582-a957-bd4151c79328-22,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-22/,Pholas dactylus,Pholade,,https://biolit.fr/wp-content/uploads/2023/07/Pholas dactylus.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38750,observation-4748dea9-a65b-4582-a957-bd4151c79328-23,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-23/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/2023/07/solen marginatus.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38752,observation-4748dea9-a65b-4582-a957-bd4151c79328-24,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-24/,Turritellinella tricarinata,Turritelle commune,,https://biolit.fr/wp-content/uploads/2023/07/Turitella communis.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38753,observation-4748dea9-a65b-4582-a957-bd4151c79328-25,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-25/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/velella velella.PNG,,TRUE, +N1,59153,sortie-4748dea9-a65b-4582-a957-bd4151c79328,https://biolit.fr/sorties/sortie-4748dea9-a65b-4582-a957-bd4151c79328/,Roman,,02/08/2020,14.0:45,16.0:45,47.69528100000,-3.3445280000,,Gâvres,38755,observation-4748dea9-a65b-4582-a957-bd4151c79328-26,https://biolit.fr/observations/observation-4748dea9-a65b-4582-a957-bd4151c79328-26/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa_0.PNG,,TRUE, +N1,59154,sortie-d97d3c52-6261-4781-bf48-609da2e3024b,https://biolit.fr/sorties/sortie-d97d3c52-6261-4781-bf48-609da2e3024b/,Phil,,1/19/2020 0:00,11.0:45,11.0:55,47.852756000000,-3.995341000000,,Fouesnant - Finistère,38756,observation-d97d3c52-6261-4781-bf48-609da2e3024b,https://biolit.fr/observations/observation-d97d3c52-6261-4781-bf48-609da2e3024b/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200119_115134.jpg,,TRUE, +N1,59154,sortie-d97d3c52-6261-4781-bf48-609da2e3024b,https://biolit.fr/sorties/sortie-d97d3c52-6261-4781-bf48-609da2e3024b/,Phil,,1/19/2020 0:00,11.0:45,11.0:55,47.852756000000,-3.995341000000,,Fouesnant - Finistère,38758,observation-d97d3c52-6261-4781-bf48-609da2e3024b-2,https://biolit.fr/observations/observation-d97d3c52-6261-4781-bf48-609da2e3024b-2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200119_115117.jpg,,TRUE, +N1,59154,sortie-d97d3c52-6261-4781-bf48-609da2e3024b,https://biolit.fr/sorties/sortie-d97d3c52-6261-4781-bf48-609da2e3024b/,Phil,,1/19/2020 0:00,11.0:45,11.0:55,47.852756000000,-3.995341000000,,Fouesnant - Finistère,38760,observation-d97d3c52-6261-4781-bf48-609da2e3024b-3,https://biolit.fr/observations/observation-d97d3c52-6261-4781-bf48-609da2e3024b-3/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200119_115214.jpg,,TRUE, +N1,59154,sortie-d97d3c52-6261-4781-bf48-609da2e3024b,https://biolit.fr/sorties/sortie-d97d3c52-6261-4781-bf48-609da2e3024b/,Phil,,1/19/2020 0:00,11.0:45,11.0:55,47.852756000000,-3.995341000000,,Fouesnant - Finistère,38762,observation-d97d3c52-6261-4781-bf48-609da2e3024b-4,https://biolit.fr/observations/observation-d97d3c52-6261-4781-bf48-609da2e3024b-4/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200119_115419.jpg,,TRUE, +N1,59154,sortie-d97d3c52-6261-4781-bf48-609da2e3024b,https://biolit.fr/sorties/sortie-d97d3c52-6261-4781-bf48-609da2e3024b/,Phil,,1/19/2020 0:00,11.0:45,11.0:55,47.852756000000,-3.995341000000,,Fouesnant - Finistère,38764,observation-d97d3c52-6261-4781-bf48-609da2e3024b-5,https://biolit.fr/observations/observation-d97d3c52-6261-4781-bf48-609da2e3024b-5/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200119_115326.jpg,,TRUE, +N1,59155,sortie-e7f59352-842b-424f-9f89-328466ee8755,https://biolit.fr/sorties/sortie-e7f59352-842b-424f-9f89-328466ee8755/,Centre de Découverte Mer et Montagne,,02/06/2020,11.0000000,11.0000000,43.546109000000,7.04714100000,CDMM (Centre de Découverte Mer et Montagne),Plage de cannes,38766,observation-e7f59352-842b-424f-9f89-328466ee8755,https://biolit.fr/observations/observation-e7f59352-842b-424f-9f89-328466ee8755/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200206_112349-scaled.jpg,,FALSE, +N1,59155,sortie-e7f59352-842b-424f-9f89-328466ee8755,https://biolit.fr/sorties/sortie-e7f59352-842b-424f-9f89-328466ee8755/,Centre de Découverte Mer et Montagne,,02/06/2020,11.0000000,11.0000000,43.546109000000,7.04714100000,CDMM (Centre de Découverte Mer et Montagne),Plage de cannes,38768,observation-e7f59352-842b-424f-9f89-328466ee8755-2,https://biolit.fr/observations/observation-e7f59352-842b-424f-9f89-328466ee8755-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200206_112236-scaled.jpg,,FALSE, +N1,59155,sortie-e7f59352-842b-424f-9f89-328466ee8755,https://biolit.fr/sorties/sortie-e7f59352-842b-424f-9f89-328466ee8755/,Centre de Découverte Mer et Montagne,,02/06/2020,11.0000000,11.0000000,43.546109000000,7.04714100000,CDMM (Centre de Découverte Mer et Montagne),Plage de cannes,38770,observation-e7f59352-842b-424f-9f89-328466ee8755-3,https://biolit.fr/observations/observation-e7f59352-842b-424f-9f89-328466ee8755-3/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200206_112038-scaled.jpg,,TRUE, +N1,59155,sortie-e7f59352-842b-424f-9f89-328466ee8755,https://biolit.fr/sorties/sortie-e7f59352-842b-424f-9f89-328466ee8755/,Centre de Découverte Mer et Montagne,,02/06/2020,11.0000000,11.0000000,43.546109000000,7.04714100000,CDMM (Centre de Découverte Mer et Montagne),Plage de cannes,38772,observation-e7f59352-842b-424f-9f89-328466ee8755-4,https://biolit.fr/observations/observation-e7f59352-842b-424f-9f89-328466ee8755-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200206_112116-scaled.jpg,,FALSE, +N1,59155,sortie-e7f59352-842b-424f-9f89-328466ee8755,https://biolit.fr/sorties/sortie-e7f59352-842b-424f-9f89-328466ee8755/,Centre de Découverte Mer et Montagne,,02/06/2020,11.0000000,11.0000000,43.546109000000,7.04714100000,CDMM (Centre de Découverte Mer et Montagne),Plage de cannes,38774,observation-e7f59352-842b-424f-9f89-328466ee8755-5,https://biolit.fr/observations/observation-e7f59352-842b-424f-9f89-328466ee8755-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200206_112153-scaled.jpg,,FALSE, +N1,59156,sortie-89d69e82-7259-4e54-add8-d286ef5c3ca3,https://biolit.fr/sorties/sortie-89d69e82-7259-4e54-add8-d286ef5c3ca3/,Centre de Découverte Mer et Montagne,,02/06/2020,10.0000000,10.0000000,43.54619300000,7.047254000000,CDMM (Centre de Découverte Mer et Montagne),Plage de cannes,38776,observation-89d69e82-7259-4e54-add8-d286ef5c3ca3,https://biolit.fr/observations/observation-89d69e82-7259-4e54-add8-d286ef5c3ca3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200206_104758-scaled.jpg,,FALSE, +N1,59157,sortie-f04ac046-bab1-4e50-8177-3d612ea728af,https://biolit.fr/sorties/sortie-f04ac046-bab1-4e50-8177-3d612ea728af/,Centre de Découverte Mer et Montagne,,02/06/2020,10.000005,10.0000000,43.545981000000,7.047130000000,,Plage de cannes,38778,observation-f04ac046-bab1-4e50-8177-3d612ea728af,https://biolit.fr/observations/observation-f04ac046-bab1-4e50-8177-3d612ea728af/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200206_104010-scaled.jpg,,FALSE, +N1,59157,sortie-f04ac046-bab1-4e50-8177-3d612ea728af,https://biolit.fr/sorties/sortie-f04ac046-bab1-4e50-8177-3d612ea728af/,Centre de Découverte Mer et Montagne,,02/06/2020,10.000005,10.0000000,43.545981000000,7.047130000000,,Plage de cannes,38780,observation-f04ac046-bab1-4e50-8177-3d612ea728af-2,https://biolit.fr/observations/observation-f04ac046-bab1-4e50-8177-3d612ea728af-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200206_104025-scaled.jpg,,FALSE, +N1,59158,sortie-4ede3b7d-f53f-43df-8466-27b5111643ca,https://biolit.fr/sorties/sortie-4ede3b7d-f53f-43df-8466-27b5111643ca/,Phil,,1/23/2020 0:00,16.000005,16.0:15,47.792990000000,-4.279209000000,,Tréffiagat - Finistère,38782,observation-4ede3b7d-f53f-43df-8466-27b5111643ca,https://biolit.fr/observations/observation-4ede3b7d-f53f-43df-8466-27b5111643ca/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200123_160838_1.jpg,,TRUE, +N1,59158,sortie-4ede3b7d-f53f-43df-8466-27b5111643ca,https://biolit.fr/sorties/sortie-4ede3b7d-f53f-43df-8466-27b5111643ca/,Phil,,1/23/2020 0:00,16.000005,16.0:15,47.792990000000,-4.279209000000,,Tréffiagat - Finistère,38784,observation-4ede3b7d-f53f-43df-8466-27b5111643ca-2,https://biolit.fr/observations/observation-4ede3b7d-f53f-43df-8466-27b5111643ca-2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200123_160926_0.jpg,,TRUE, +N1,59158,sortie-4ede3b7d-f53f-43df-8466-27b5111643ca,https://biolit.fr/sorties/sortie-4ede3b7d-f53f-43df-8466-27b5111643ca/,Phil,,1/23/2020 0:00,16.000005,16.0:15,47.792990000000,-4.279209000000,,Tréffiagat - Finistère,38786,observation-4ede3b7d-f53f-43df-8466-27b5111643ca-3,https://biolit.fr/observations/observation-4ede3b7d-f53f-43df-8466-27b5111643ca-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200123_161005_0.jpg,,FALSE, +N1,59158,sortie-4ede3b7d-f53f-43df-8466-27b5111643ca,https://biolit.fr/sorties/sortie-4ede3b7d-f53f-43df-8466-27b5111643ca/,Phil,,1/23/2020 0:00,16.000005,16.0:15,47.792990000000,-4.279209000000,,Tréffiagat - Finistère,38788,observation-4ede3b7d-f53f-43df-8466-27b5111643ca-4,https://biolit.fr/observations/observation-4ede3b7d-f53f-43df-8466-27b5111643ca-4/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200123_161200_0.jpg,,TRUE, +N1,59158,sortie-4ede3b7d-f53f-43df-8466-27b5111643ca,https://biolit.fr/sorties/sortie-4ede3b7d-f53f-43df-8466-27b5111643ca/,Phil,,1/23/2020 0:00,16.000005,16.0:15,47.792990000000,-4.279209000000,,Tréffiagat - Finistère,38790,observation-4ede3b7d-f53f-43df-8466-27b5111643ca-5,https://biolit.fr/observations/observation-4ede3b7d-f53f-43df-8466-27b5111643ca-5/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200123_161300_0.jpg,,TRUE, +N1,59158,sortie-4ede3b7d-f53f-43df-8466-27b5111643ca,https://biolit.fr/sorties/sortie-4ede3b7d-f53f-43df-8466-27b5111643ca/,Phil,,1/23/2020 0:00,16.000005,16.0:15,47.792990000000,-4.279209000000,,Tréffiagat - Finistère,38792,observation-4ede3b7d-f53f-43df-8466-27b5111643ca-6,https://biolit.fr/observations/observation-4ede3b7d-f53f-43df-8466-27b5111643ca-6/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200123_161343_0.jpg,,TRUE, +N1,59158,sortie-4ede3b7d-f53f-43df-8466-27b5111643ca,https://biolit.fr/sorties/sortie-4ede3b7d-f53f-43df-8466-27b5111643ca/,Phil,,1/23/2020 0:00,16.000005,16.0:15,47.792990000000,-4.279209000000,,Tréffiagat - Finistère,38794,observation-4ede3b7d-f53f-43df-8466-27b5111643ca-7,https://biolit.fr/observations/observation-4ede3b7d-f53f-43df-8466-27b5111643ca-7/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200123_161415_0.jpg,,TRUE, +N1,59159,sortie-254a2674-8842-4132-9dd6-f5bcc2afea8c,https://biolit.fr/sorties/sortie-254a2674-8842-4132-9dd6-f5bcc2afea8c/,Phil,,1/26/2020 0:00,12.0000000,12.0000000,47.854213000000,-3.979660000000,,Fouesnant - Finistère,38796,observation-254a2674-8842-4132-9dd6-f5bcc2afea8c,https://biolit.fr/observations/observation-254a2674-8842-4132-9dd6-f5bcc2afea8c/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200126_123232.jpg,,TRUE, +N1,59159,sortie-254a2674-8842-4132-9dd6-f5bcc2afea8c,https://biolit.fr/sorties/sortie-254a2674-8842-4132-9dd6-f5bcc2afea8c/,Phil,,1/26/2020 0:00,12.0000000,12.0000000,47.854213000000,-3.979660000000,,Fouesnant - Finistère,38798,observation-254a2674-8842-4132-9dd6-f5bcc2afea8c-2,https://biolit.fr/observations/observation-254a2674-8842-4132-9dd6-f5bcc2afea8c-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200126_123212.jpg,,TRUE, +N1,59159,sortie-254a2674-8842-4132-9dd6-f5bcc2afea8c,https://biolit.fr/sorties/sortie-254a2674-8842-4132-9dd6-f5bcc2afea8c/,Phil,,1/26/2020 0:00,12.0000000,12.0000000,47.854213000000,-3.979660000000,,Fouesnant - Finistère,38800,observation-254a2674-8842-4132-9dd6-f5bcc2afea8c-3,https://biolit.fr/observations/observation-254a2674-8842-4132-9dd6-f5bcc2afea8c-3/,Membranipora membranacea,Membranipore,,https://biolit.fr/wp-content/uploads/2023/07/20200126_123506.jpg,,TRUE, +N1,59159,sortie-254a2674-8842-4132-9dd6-f5bcc2afea8c,https://biolit.fr/sorties/sortie-254a2674-8842-4132-9dd6-f5bcc2afea8c/,Phil,,1/26/2020 0:00,12.0000000,12.0000000,47.854213000000,-3.979660000000,,Fouesnant - Finistère,38802,observation-254a2674-8842-4132-9dd6-f5bcc2afea8c-4,https://biolit.fr/observations/observation-254a2674-8842-4132-9dd6-f5bcc2afea8c-4/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200126_123750.jpg,,TRUE, +N1,59159,sortie-254a2674-8842-4132-9dd6-f5bcc2afea8c,https://biolit.fr/sorties/sortie-254a2674-8842-4132-9dd6-f5bcc2afea8c/,Phil,,1/26/2020 0:00,12.0000000,12.0000000,47.854213000000,-3.979660000000,,Fouesnant - Finistère,38804,observation-254a2674-8842-4132-9dd6-f5bcc2afea8c-5,https://biolit.fr/observations/observation-254a2674-8842-4132-9dd6-f5bcc2afea8c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200126_123401.jpg,,FALSE, +N1,59160,sortie-4ea45f29-9a45-4297-8f0a-eb9e6c685afd,https://biolit.fr/sorties/sortie-4ea45f29-9a45-4297-8f0a-eb9e6c685afd/,Roman,,02/01/2020,16.0000000,17.0000000,47.704059000000,-3.355981000000,,Port-louis,38806,observation-4ea45f29-9a45-4297-8f0a-eb9e6c685afd,https://biolit.fr/observations/observation-4ea45f29-9a45-4297-8f0a-eb9e6c685afd/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/actinia equina2.PNG,,TRUE, +N1,59160,sortie-4ea45f29-9a45-4297-8f0a-eb9e6c685afd,https://biolit.fr/sorties/sortie-4ea45f29-9a45-4297-8f0a-eb9e6c685afd/,Roman,,02/01/2020,16.0000000,17.0000000,47.704059000000,-3.355981000000,,Port-louis,38808,observation-4ea45f29-9a45-4297-8f0a-eb9e6c685afd-2,https://biolit.fr/observations/observation-4ea45f29-9a45-4297-8f0a-eb9e6c685afd-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/carcinus maenas3.PNG,,TRUE, +N1,59160,sortie-4ea45f29-9a45-4297-8f0a-eb9e6c685afd,https://biolit.fr/sorties/sortie-4ea45f29-9a45-4297-8f0a-eb9e6c685afd/,Roman,,02/01/2020,16.0000000,17.0000000,47.704059000000,-3.355981000000,,Port-louis,38810,observation-4ea45f29-9a45-4297-8f0a-eb9e6c685afd-3,https://biolit.fr/observations/observation-4ea45f29-9a45-4297-8f0a-eb9e6c685afd-3/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/cerastoderma edule3.PNG,,TRUE, +N1,59160,sortie-4ea45f29-9a45-4297-8f0a-eb9e6c685afd,https://biolit.fr/sorties/sortie-4ea45f29-9a45-4297-8f0a-eb9e6c685afd/,Roman,,02/01/2020,16.0000000,17.0000000,47.704059000000,-3.355981000000,,Port-louis,38812,observation-4ea45f29-9a45-4297-8f0a-eb9e6c685afd-4,https://biolit.fr/observations/observation-4ea45f29-9a45-4297-8f0a-eb9e6c685afd-4/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/chthamalus m et s.PNG,,TRUE, +N1,59160,sortie-4ea45f29-9a45-4297-8f0a-eb9e6c685afd,https://biolit.fr/sorties/sortie-4ea45f29-9a45-4297-8f0a-eb9e6c685afd/,Roman,,02/01/2020,16.0000000,17.0000000,47.704059000000,-3.355981000000,,Port-louis,38814,observation-4ea45f29-9a45-4297-8f0a-eb9e6c685afd-5,https://biolit.fr/observations/observation-4ea45f29-9a45-4297-8f0a-eb9e6c685afd-5/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/littorina littorea3.PNG,,TRUE, +N1,59160,sortie-4ea45f29-9a45-4297-8f0a-eb9e6c685afd,https://biolit.fr/sorties/sortie-4ea45f29-9a45-4297-8f0a-eb9e6c685afd/,Roman,,02/01/2020,16.0000000,17.0000000,47.704059000000,-3.355981000000,,Port-louis,38816,observation-4ea45f29-9a45-4297-8f0a-eb9e6c685afd-6,https://biolit.fr/observations/observation-4ea45f29-9a45-4297-8f0a-eb9e6c685afd-6/,Cilysta elegans,Sagartie élégante,,https://biolit.fr/wp-content/uploads/2023/07/Sagartia elegans.PNG,,TRUE, +N1,59160,sortie-4ea45f29-9a45-4297-8f0a-eb9e6c685afd,https://biolit.fr/sorties/sortie-4ea45f29-9a45-4297-8f0a-eb9e6c685afd/,Roman,,02/01/2020,16.0000000,17.0000000,47.704059000000,-3.355981000000,,Port-louis,38817,observation-4ea45f29-9a45-4297-8f0a-eb9e6c685afd-7,https://biolit.fr/observations/observation-4ea45f29-9a45-4297-8f0a-eb9e6c685afd-7/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/venus verrucosa1.PNG,,TRUE, +N1,59161,sortie-4533bcc1-94cc-4bc3-8fbe-5c3f948ce2af,https://biolit.fr/sorties/sortie-4533bcc1-94cc-4bc3-8fbe-5c3f948ce2af/,Soso40230,,1/31/2020 0:00,16.0000000,18.0000000,43.576476000000,-1.487654000000,,Ondres,38819,observation-4533bcc1-94cc-4bc3-8fbe-5c3f948ce2af,https://biolit.fr/observations/observation-4533bcc1-94cc-4bc3-8fbe-5c3f948ce2af/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200131_160021-scaled.jpg,,TRUE, +N1,59162,sortie-9ffd0ea9-8794-428c-af46-ff58477649b8,https://biolit.fr/sorties/sortie-9ffd0ea9-8794-428c-af46-ff58477649b8/,Phil,,1/19/2020 0:00,11.0:35,11.0000000,47.852626000000,-3.993732000000,,Fouesnant - Finistère,38821,observation-9ffd0ea9-8794-428c-af46-ff58477649b8,https://biolit.fr/observations/observation-9ffd0ea9-8794-428c-af46-ff58477649b8/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/20200119_114851.jpg,,TRUE, +N1,59162,sortie-9ffd0ea9-8794-428c-af46-ff58477649b8,https://biolit.fr/sorties/sortie-9ffd0ea9-8794-428c-af46-ff58477649b8/,Phil,,1/19/2020 0:00,11.0:35,11.0000000,47.852626000000,-3.993732000000,,Fouesnant - Finistère,38823,observation-9ffd0ea9-8794-428c-af46-ff58477649b8-2,https://biolit.fr/observations/observation-9ffd0ea9-8794-428c-af46-ff58477649b8-2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200119_114218.jpg,,TRUE, +N1,59162,sortie-9ffd0ea9-8794-428c-af46-ff58477649b8,https://biolit.fr/sorties/sortie-9ffd0ea9-8794-428c-af46-ff58477649b8/,Phil,,1/19/2020 0:00,11.0:35,11.0000000,47.852626000000,-3.993732000000,,Fouesnant - Finistère,38825,observation-9ffd0ea9-8794-428c-af46-ff58477649b8-3,https://biolit.fr/observations/observation-9ffd0ea9-8794-428c-af46-ff58477649b8-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200119_114016.jpg,,TRUE, +N1,59162,sortie-9ffd0ea9-8794-428c-af46-ff58477649b8,https://biolit.fr/sorties/sortie-9ffd0ea9-8794-428c-af46-ff58477649b8/,Phil,,1/19/2020 0:00,11.0:35,11.0000000,47.852626000000,-3.993732000000,,Fouesnant - Finistère,38827,observation-9ffd0ea9-8794-428c-af46-ff58477649b8-4,https://biolit.fr/observations/observation-9ffd0ea9-8794-428c-af46-ff58477649b8-4/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20200119_113950.jpg,,TRUE, +N1,59162,sortie-9ffd0ea9-8794-428c-af46-ff58477649b8,https://biolit.fr/sorties/sortie-9ffd0ea9-8794-428c-af46-ff58477649b8/,Phil,,1/19/2020 0:00,11.0:35,11.0000000,47.852626000000,-3.993732000000,,Fouesnant - Finistère,38829,observation-9ffd0ea9-8794-428c-af46-ff58477649b8-5,https://biolit.fr/observations/observation-9ffd0ea9-8794-428c-af46-ff58477649b8-5/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200119_113601.jpg,,TRUE, +N1,59162,sortie-9ffd0ea9-8794-428c-af46-ff58477649b8,https://biolit.fr/sorties/sortie-9ffd0ea9-8794-428c-af46-ff58477649b8/,Phil,,1/19/2020 0:00,11.0:35,11.0000000,47.852626000000,-3.993732000000,,Fouesnant - Finistère,38831,observation-9ffd0ea9-8794-428c-af46-ff58477649b8-6,https://biolit.fr/observations/observation-9ffd0ea9-8794-428c-af46-ff58477649b8-6/,Laevicardium crassum,Bucarde de Norvège,,https://biolit.fr/wp-content/uploads/2023/07/20200119_113718.jpg,,TRUE, +N1,59163,sortie-06a28fcf-1335-4b79-9a31-c61b137d678f,https://biolit.fr/sorties/sortie-06a28fcf-1335-4b79-9a31-c61b137d678f/,Phil,,1/23/2020 0:00,16.0:55,17.0000000,47.828087000000,-4.162376000000,,Loctudy - Finistère,38833,observation-06a28fcf-1335-4b79-9a31-c61b137d678f,https://biolit.fr/observations/observation-06a28fcf-1335-4b79-9a31-c61b137d678f/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200123_165826.jpg,,FALSE, +N1,59163,sortie-06a28fcf-1335-4b79-9a31-c61b137d678f,https://biolit.fr/sorties/sortie-06a28fcf-1335-4b79-9a31-c61b137d678f/,Phil,,1/23/2020 0:00,16.0:55,17.0000000,47.828087000000,-4.162376000000,,Loctudy - Finistère,38835,observation-06a28fcf-1335-4b79-9a31-c61b137d678f-2,https://biolit.fr/observations/observation-06a28fcf-1335-4b79-9a31-c61b137d678f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200123_165909.jpg,,FALSE, +N1,59163,sortie-06a28fcf-1335-4b79-9a31-c61b137d678f,https://biolit.fr/sorties/sortie-06a28fcf-1335-4b79-9a31-c61b137d678f/,Phil,,1/23/2020 0:00,16.0:55,17.0000000,47.828087000000,-4.162376000000,,Loctudy - Finistère,38837,observation-06a28fcf-1335-4b79-9a31-c61b137d678f-3,https://biolit.fr/observations/observation-06a28fcf-1335-4b79-9a31-c61b137d678f-3/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/20200123_165938.jpg,,TRUE, +N1,59163,sortie-06a28fcf-1335-4b79-9a31-c61b137d678f,https://biolit.fr/sorties/sortie-06a28fcf-1335-4b79-9a31-c61b137d678f/,Phil,,1/23/2020 0:00,16.0:55,17.0000000,47.828087000000,-4.162376000000,,Loctudy - Finistère,38839,observation-06a28fcf-1335-4b79-9a31-c61b137d678f-4,https://biolit.fr/observations/observation-06a28fcf-1335-4b79-9a31-c61b137d678f-4/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20200123_170054.jpg,,TRUE, +N1,59164,sortie-1599b97a-8554-4674-b7c2-72d951d528a7,https://biolit.fr/sorties/sortie-1599b97a-8554-4674-b7c2-72d951d528a7/,Phil,,1/23/2020 0:00,16.0000000,16.0000000,47.792588000000,-4.279183000000,,Léchiagat - Finistère,38841,observation-1599b97a-8554-4674-b7c2-72d951d528a7,https://biolit.fr/observations/observation-1599b97a-8554-4674-b7c2-72d951d528a7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200123_160614.jpg,,FALSE, +N1,59164,sortie-1599b97a-8554-4674-b7c2-72d951d528a7,https://biolit.fr/sorties/sortie-1599b97a-8554-4674-b7c2-72d951d528a7/,Phil,,1/23/2020 0:00,16.0000000,16.0000000,47.792588000000,-4.279183000000,,Léchiagat - Finistère,38843,observation-1599b97a-8554-4674-b7c2-72d951d528a7-2,https://biolit.fr/observations/observation-1599b97a-8554-4674-b7c2-72d951d528a7-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200123_160732.jpg,,TRUE, +N1,59164,sortie-1599b97a-8554-4674-b7c2-72d951d528a7,https://biolit.fr/sorties/sortie-1599b97a-8554-4674-b7c2-72d951d528a7/,Phil,,1/23/2020 0:00,16.0000000,16.0000000,47.792588000000,-4.279183000000,,Léchiagat - Finistère,38845,observation-1599b97a-8554-4674-b7c2-72d951d528a7-3,https://biolit.fr/observations/observation-1599b97a-8554-4674-b7c2-72d951d528a7-3/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200123_160634.jpg,,TRUE, +N1,59164,sortie-1599b97a-8554-4674-b7c2-72d951d528a7,https://biolit.fr/sorties/sortie-1599b97a-8554-4674-b7c2-72d951d528a7/,Phil,,1/23/2020 0:00,16.0000000,16.0000000,47.792588000000,-4.279183000000,,Léchiagat - Finistère,38847,observation-1599b97a-8554-4674-b7c2-72d951d528a7-4,https://biolit.fr/observations/observation-1599b97a-8554-4674-b7c2-72d951d528a7-4/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200123_160529.jpg,,TRUE, +N1,59164,sortie-1599b97a-8554-4674-b7c2-72d951d528a7,https://biolit.fr/sorties/sortie-1599b97a-8554-4674-b7c2-72d951d528a7/,Phil,,1/23/2020 0:00,16.0000000,16.0000000,47.792588000000,-4.279183000000,,Léchiagat - Finistère,38849,observation-1599b97a-8554-4674-b7c2-72d951d528a7-5,https://biolit.fr/observations/observation-1599b97a-8554-4674-b7c2-72d951d528a7-5/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200123_160245.jpg,,TRUE, +N1,59164,sortie-1599b97a-8554-4674-b7c2-72d951d528a7,https://biolit.fr/sorties/sortie-1599b97a-8554-4674-b7c2-72d951d528a7/,Phil,,1/23/2020 0:00,16.0000000,16.0000000,47.792588000000,-4.279183000000,,Léchiagat - Finistère,38851,observation-1599b97a-8554-4674-b7c2-72d951d528a7-6,https://biolit.fr/observations/observation-1599b97a-8554-4674-b7c2-72d951d528a7-6/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200123_160239.jpg,,TRUE, +N1,59165,sortie-1b2229f2-9f15-4d8b-aaa6-bb058003ca31,https://biolit.fr/sorties/sortie-1b2229f2-9f15-4d8b-aaa6-bb058003ca31/,Phil,,1/26/2020 0:00,12.0000000,12.0:35,47.854377000000,-3.975343000000,,Fouesnant - Finistère,38853,observation-1b2229f2-9f15-4d8b-aaa6-bb058003ca31,https://biolit.fr/observations/observation-1b2229f2-9f15-4d8b-aaa6-bb058003ca31/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200126_122802.jpg,,FALSE, +N1,59165,sortie-1b2229f2-9f15-4d8b-aaa6-bb058003ca31,https://biolit.fr/sorties/sortie-1b2229f2-9f15-4d8b-aaa6-bb058003ca31/,Phil,,1/26/2020 0:00,12.0000000,12.0:35,47.854377000000,-3.975343000000,,Fouesnant - Finistère,38855,observation-1b2229f2-9f15-4d8b-aaa6-bb058003ca31-2,https://biolit.fr/observations/observation-1b2229f2-9f15-4d8b-aaa6-bb058003ca31-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200126_122808.jpg,,FALSE, +N1,59165,sortie-1b2229f2-9f15-4d8b-aaa6-bb058003ca31,https://biolit.fr/sorties/sortie-1b2229f2-9f15-4d8b-aaa6-bb058003ca31/,Phil,,1/26/2020 0:00,12.0000000,12.0:35,47.854377000000,-3.975343000000,,Fouesnant - Finistère,38857,observation-1b2229f2-9f15-4d8b-aaa6-bb058003ca31-3,https://biolit.fr/observations/observation-1b2229f2-9f15-4d8b-aaa6-bb058003ca31-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200126_122713.jpg,,TRUE, +N1,59165,sortie-1b2229f2-9f15-4d8b-aaa6-bb058003ca31,https://biolit.fr/sorties/sortie-1b2229f2-9f15-4d8b-aaa6-bb058003ca31/,Phil,,1/26/2020 0:00,12.0000000,12.0:35,47.854377000000,-3.975343000000,,Fouesnant - Finistère,38859,observation-1b2229f2-9f15-4d8b-aaa6-bb058003ca31-4,https://biolit.fr/observations/observation-1b2229f2-9f15-4d8b-aaa6-bb058003ca31-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200126_122914.jpg,,FALSE, +N1,59165,sortie-1b2229f2-9f15-4d8b-aaa6-bb058003ca31,https://biolit.fr/sorties/sortie-1b2229f2-9f15-4d8b-aaa6-bb058003ca31/,Phil,,1/26/2020 0:00,12.0000000,12.0:35,47.854377000000,-3.975343000000,,Fouesnant - Finistère,38861,observation-1b2229f2-9f15-4d8b-aaa6-bb058003ca31-5,https://biolit.fr/observations/observation-1b2229f2-9f15-4d8b-aaa6-bb058003ca31-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200126_122958.jpg,,FALSE, +N1,59165,sortie-1b2229f2-9f15-4d8b-aaa6-bb058003ca31,https://biolit.fr/sorties/sortie-1b2229f2-9f15-4d8b-aaa6-bb058003ca31/,Phil,,1/26/2020 0:00,12.0000000,12.0:35,47.854377000000,-3.975343000000,,Fouesnant - Finistère,38863,observation-1b2229f2-9f15-4d8b-aaa6-bb058003ca31-6,https://biolit.fr/observations/observation-1b2229f2-9f15-4d8b-aaa6-bb058003ca31-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200126_123040.jpg,,FALSE, +N1,59165,sortie-1b2229f2-9f15-4d8b-aaa6-bb058003ca31,https://biolit.fr/sorties/sortie-1b2229f2-9f15-4d8b-aaa6-bb058003ca31/,Phil,,1/26/2020 0:00,12.0000000,12.0:35,47.854377000000,-3.975343000000,,Fouesnant - Finistère,38865,observation-1b2229f2-9f15-4d8b-aaa6-bb058003ca31-7,https://biolit.fr/observations/observation-1b2229f2-9f15-4d8b-aaa6-bb058003ca31-7/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200126_123123.jpg,,TRUE, +N1,59166,sortie-75c3233b-5f5d-415f-b04c-8f16882fd399,https://biolit.fr/sorties/sortie-75c3233b-5f5d-415f-b04c-8f16882fd399/,Roman,,1/25/2020 0:00,11.0000000,13.0000000,46.437214000000,-1.668115000000,,Plage du Veillon,38867,observation-75c3233b-5f5d-415f-b04c-8f16882fd399,https://biolit.fr/observations/observation-75c3233b-5f5d-415f-b04c-8f16882fd399/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/Aplysia punctata.PNG,,TRUE, +N1,59166,sortie-75c3233b-5f5d-415f-b04c-8f16882fd399,https://biolit.fr/sorties/sortie-75c3233b-5f5d-415f-b04c-8f16882fd399/,Roman,,1/25/2020 0:00,11.0000000,13.0000000,46.437214000000,-1.668115000000,,Plage du Veillon,38868,observation-75c3233b-5f5d-415f-b04c-8f16882fd399-2,https://biolit.fr/observations/observation-75c3233b-5f5d-415f-b04c-8f16882fd399-2/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/chiton sp.PNG,,TRUE, +N1,59166,sortie-75c3233b-5f5d-415f-b04c-8f16882fd399,https://biolit.fr/sorties/sortie-75c3233b-5f5d-415f-b04c-8f16882fd399/,Roman,,1/25/2020 0:00,11.0000000,13.0000000,46.437214000000,-1.668115000000,,Plage du Veillon,38870,observation-75c3233b-5f5d-415f-b04c-8f16882fd399-3,https://biolit.fr/observations/observation-75c3233b-5f5d-415f-b04c-8f16882fd399-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Osilinus lineatus.PNG,,TRUE, +N1,59166,sortie-75c3233b-5f5d-415f-b04c-8f16882fd399,https://biolit.fr/sorties/sortie-75c3233b-5f5d-415f-b04c-8f16882fd399/,Roman,,1/25/2020 0:00,11.0000000,13.0000000,46.437214000000,-1.668115000000,,Plage du Veillon,38871,observation-75c3233b-5f5d-415f-b04c-8f16882fd399-4,https://biolit.fr/observations/observation-75c3233b-5f5d-415f-b04c-8f16882fd399-4/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus.jpg,,TRUE, +N1,59166,sortie-75c3233b-5f5d-415f-b04c-8f16882fd399,https://biolit.fr/sorties/sortie-75c3233b-5f5d-415f-b04c-8f16882fd399/,Roman,,1/25/2020 0:00,11.0000000,13.0000000,46.437214000000,-1.668115000000,,Plage du Veillon,38872,observation-75c3233b-5f5d-415f-b04c-8f16882fd399-5,https://biolit.fr/observations/observation-75c3233b-5f5d-415f-b04c-8f16882fd399-5/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/eriphia sp.PNG,,TRUE, +N1,59166,sortie-75c3233b-5f5d-415f-b04c-8f16882fd399,https://biolit.fr/sorties/sortie-75c3233b-5f5d-415f-b04c-8f16882fd399/,Roman,,1/25/2020 0:00,11.0000000,13.0000000,46.437214000000,-1.668115000000,,Plage du Veillon,38874,observation-75c3233b-5f5d-415f-b04c-8f16882fd399-6,https://biolit.fr/observations/observation-75c3233b-5f5d-415f-b04c-8f16882fd399-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/tricolia pullus_0.PNG,,FALSE, +N1,59167,sortie-7d280f6b-fbc6-4012-a645-dae1666185fb,https://biolit.fr/sorties/sortie-7d280f6b-fbc6-4012-a645-dae1666185fb/,Phil,,12/29/2019 0:00,12.0:25,12.0000000,47.870491000000,-4.102297000000,,Bénodet - Finistère,38876,observation-7d280f6b-fbc6-4012-a645-dae1666185fb,https://biolit.fr/observations/observation-7d280f6b-fbc6-4012-a645-dae1666185fb/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20191229_123046.jpg,,TRUE, +N1,59167,sortie-7d280f6b-fbc6-4012-a645-dae1666185fb,https://biolit.fr/sorties/sortie-7d280f6b-fbc6-4012-a645-dae1666185fb/,Phil,,12/29/2019 0:00,12.0:25,12.0000000,47.870491000000,-4.102297000000,,Bénodet - Finistère,38878,observation-7d280f6b-fbc6-4012-a645-dae1666185fb-2,https://biolit.fr/observations/observation-7d280f6b-fbc6-4012-a645-dae1666185fb-2/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20191229_123025.jpg,,TRUE, +N1,59167,sortie-7d280f6b-fbc6-4012-a645-dae1666185fb,https://biolit.fr/sorties/sortie-7d280f6b-fbc6-4012-a645-dae1666185fb/,Phil,,12/29/2019 0:00,12.0:25,12.0000000,47.870491000000,-4.102297000000,,Bénodet - Finistère,38880,observation-7d280f6b-fbc6-4012-a645-dae1666185fb-3,https://biolit.fr/observations/observation-7d280f6b-fbc6-4012-a645-dae1666185fb-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191229_122748.jpg,,FALSE, +N1,59168,sortie-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c,https://biolit.fr/sorties/sortie-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c/,Phil,,12/22/2019 0:00,17.0000000,17.0:35,47.800339000000,-4.183132000000,,Loctudy - Finistère,38882,observation-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c,https://biolit.fr/observations/observation-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191222_174424.jpg,,TRUE, +N1,59168,sortie-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c,https://biolit.fr/sorties/sortie-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c/,Phil,,12/22/2019 0:00,17.0000000,17.0:35,47.800339000000,-4.183132000000,,Loctudy - Finistère,38884,observation-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c-2,https://biolit.fr/observations/observation-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c-2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1130441.JPG,,TRUE, +N1,59168,sortie-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c,https://biolit.fr/sorties/sortie-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c/,Phil,,12/22/2019 0:00,17.0000000,17.0:35,47.800339000000,-4.183132000000,,Loctudy - Finistère,38886,observation-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c-3,https://biolit.fr/observations/observation-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c-3/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1130454.JPG,,TRUE, +N1,59168,sortie-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c,https://biolit.fr/sorties/sortie-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c/,Phil,,12/22/2019 0:00,17.0000000,17.0:35,47.800339000000,-4.183132000000,,Loctudy - Finistère,38888,observation-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c-4,https://biolit.fr/observations/observation-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c-4/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1130458.JPG,,TRUE, +N1,59168,sortie-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c,https://biolit.fr/sorties/sortie-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c/,Phil,,12/22/2019 0:00,17.0000000,17.0:35,47.800339000000,-4.183132000000,,Loctudy - Finistère,38890,observation-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c-5,https://biolit.fr/observations/observation-da4baf70-d38f-4ca7-81d1-77cc2ed3b24c-5/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1130482.JPG,,TRUE, +N1,59169,sortie-c744908b-af74-40b3-afea-615ab316306e,https://biolit.fr/sorties/sortie-c744908b-af74-40b3-afea-615ab316306e/,Phil,,1/23/2020 0:00,16.0:35,16.0:45,47.835411000000,-4.167136000000,,Loctudy - Finistère,38892,observation-c744908b-af74-40b3-afea-615ab316306e,https://biolit.fr/observations/observation-c744908b-af74-40b3-afea-615ab316306e/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200123_163944.jpg,,FALSE, +N1,59169,sortie-c744908b-af74-40b3-afea-615ab316306e,https://biolit.fr/sorties/sortie-c744908b-af74-40b3-afea-615ab316306e/,Phil,,1/23/2020 0:00,16.0:35,16.0:45,47.835411000000,-4.167136000000,,Loctudy - Finistère,38896,observation-c744908b-af74-40b3-afea-615ab316306e-3,https://biolit.fr/observations/observation-c744908b-af74-40b3-afea-615ab316306e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200123_164008.jpg,,FALSE, +N1,59169,sortie-c744908b-af74-40b3-afea-615ab316306e,https://biolit.fr/sorties/sortie-c744908b-af74-40b3-afea-615ab316306e/,Phil,,1/23/2020 0:00,16.0:35,16.0:45,47.835411000000,-4.167136000000,,Loctudy - Finistère,38898,observation-c744908b-af74-40b3-afea-615ab316306e-4,https://biolit.fr/observations/observation-c744908b-af74-40b3-afea-615ab316306e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200123_164319.jpg,,FALSE, +N1,59169,sortie-c744908b-af74-40b3-afea-615ab316306e,https://biolit.fr/sorties/sortie-c744908b-af74-40b3-afea-615ab316306e/,Phil,,1/23/2020 0:00,16.0:35,16.0:45,47.835411000000,-4.167136000000,,Loctudy - Finistère,38900,observation-c744908b-af74-40b3-afea-615ab316306e-5,https://biolit.fr/observations/observation-c744908b-af74-40b3-afea-615ab316306e-5/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/20200123_164351.jpg,,TRUE, +N1,59169,sortie-c744908b-af74-40b3-afea-615ab316306e,https://biolit.fr/sorties/sortie-c744908b-af74-40b3-afea-615ab316306e/,Phil,,1/23/2020 0:00,16.0:35,16.0:45,47.835411000000,-4.167136000000,,Loctudy - Finistère,38902,observation-c744908b-af74-40b3-afea-615ab316306e-6,https://biolit.fr/observations/observation-c744908b-af74-40b3-afea-615ab316306e-6/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/20200123_164420.jpg,,TRUE, +N1,59170,sortie-e377913f-0d2d-4ec9-ab69-925d6cc36afb,https://biolit.fr/sorties/sortie-e377913f-0d2d-4ec9-ab69-925d6cc36afb/,Phil,,1/23/2020 0:00,17.0:15,17.0000000,47.830760000000,-4.157510000000,,Loctudy - Finistère,38904,observation-e377913f-0d2d-4ec9-ab69-925d6cc36afb,https://biolit.fr/observations/observation-e377913f-0d2d-4ec9-ab69-925d6cc36afb/,Bittium reticulatum,Cérithe réticulé,,https://biolit.fr/wp-content/uploads/2023/07/20200123_171709.jpg,,TRUE, +N1,59170,sortie-e377913f-0d2d-4ec9-ab69-925d6cc36afb,https://biolit.fr/sorties/sortie-e377913f-0d2d-4ec9-ab69-925d6cc36afb/,Phil,,1/23/2020 0:00,17.0:15,17.0000000,47.830760000000,-4.157510000000,,Loctudy - Finistère,38906,observation-e377913f-0d2d-4ec9-ab69-925d6cc36afb-2,https://biolit.fr/observations/observation-e377913f-0d2d-4ec9-ab69-925d6cc36afb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200123_171637.jpg,,FALSE, +N1,59170,sortie-e377913f-0d2d-4ec9-ab69-925d6cc36afb,https://biolit.fr/sorties/sortie-e377913f-0d2d-4ec9-ab69-925d6cc36afb/,Phil,,1/23/2020 0:00,17.0:15,17.0000000,47.830760000000,-4.157510000000,,Loctudy - Finistère,38908,observation-e377913f-0d2d-4ec9-ab69-925d6cc36afb-3,https://biolit.fr/observations/observation-e377913f-0d2d-4ec9-ab69-925d6cc36afb-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200123_172034.jpg,,TRUE, +N1,59171,sortie-951852f5-f966-428d-a2ea-750b59febd98,https://biolit.fr/sorties/sortie-951852f5-f966-428d-a2ea-750b59febd98/,Phil,,1/19/2020 0:00,11.0000000,11.0:35,47.853149000000,-3.993401000000,,Fouesnant - Finistère,38910,observation-951852f5-f966-428d-a2ea-750b59febd98,https://biolit.fr/observations/observation-951852f5-f966-428d-a2ea-750b59febd98/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200119_113140.jpg,,TRUE, +N1,59171,sortie-951852f5-f966-428d-a2ea-750b59febd98,https://biolit.fr/sorties/sortie-951852f5-f966-428d-a2ea-750b59febd98/,Phil,,1/19/2020 0:00,11.0000000,11.0:35,47.853149000000,-3.993401000000,,Fouesnant - Finistère,38912,observation-951852f5-f966-428d-a2ea-750b59febd98-2,https://biolit.fr/observations/observation-951852f5-f966-428d-a2ea-750b59febd98-2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200119_113217.jpg,,TRUE, +N1,59171,sortie-951852f5-f966-428d-a2ea-750b59febd98,https://biolit.fr/sorties/sortie-951852f5-f966-428d-a2ea-750b59febd98/,Phil,,1/19/2020 0:00,11.0000000,11.0:35,47.853149000000,-3.993401000000,,Fouesnant - Finistère,38914,observation-951852f5-f966-428d-a2ea-750b59febd98-3,https://biolit.fr/observations/observation-951852f5-f966-428d-a2ea-750b59febd98-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200119_113234.jpg,,TRUE, +N1,59171,sortie-951852f5-f966-428d-a2ea-750b59febd98,https://biolit.fr/sorties/sortie-951852f5-f966-428d-a2ea-750b59febd98/,Phil,,1/19/2020 0:00,11.0000000,11.0:35,47.853149000000,-3.993401000000,,Fouesnant - Finistère,38916,observation-951852f5-f966-428d-a2ea-750b59febd98-4,https://biolit.fr/observations/observation-951852f5-f966-428d-a2ea-750b59febd98-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200119_113318.jpg,,FALSE, +N1,59171,sortie-951852f5-f966-428d-a2ea-750b59febd98,https://biolit.fr/sorties/sortie-951852f5-f966-428d-a2ea-750b59febd98/,Phil,,1/19/2020 0:00,11.0000000,11.0:35,47.853149000000,-3.993401000000,,Fouesnant - Finistère,38918,observation-951852f5-f966-428d-a2ea-750b59febd98-5,https://biolit.fr/observations/observation-951852f5-f966-428d-a2ea-750b59febd98-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200119_113336.jpg,,FALSE, +N1,59171,sortie-951852f5-f966-428d-a2ea-750b59febd98,https://biolit.fr/sorties/sortie-951852f5-f966-428d-a2ea-750b59febd98/,Phil,,1/19/2020 0:00,11.0000000,11.0:35,47.853149000000,-3.993401000000,,Fouesnant - Finistère,38920,observation-951852f5-f966-428d-a2ea-750b59febd98-6,https://biolit.fr/observations/observation-951852f5-f966-428d-a2ea-750b59febd98-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200119_113414.jpg,,FALSE, +N1,59171,sortie-951852f5-f966-428d-a2ea-750b59febd98,https://biolit.fr/sorties/sortie-951852f5-f966-428d-a2ea-750b59febd98/,Phil,,1/19/2020 0:00,11.0000000,11.0:35,47.853149000000,-3.993401000000,,Fouesnant - Finistère,38922,observation-951852f5-f966-428d-a2ea-750b59febd98-7,https://biolit.fr/observations/observation-951852f5-f966-428d-a2ea-750b59febd98-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200119_113436.jpg,,FALSE, +N1,59172,sortie-9ce4fdbf-0e72-459e-9905-67dbadd0a15e,https://biolit.fr/sorties/sortie-9ce4fdbf-0e72-459e-9905-67dbadd0a15e/,Phil,,6/14/2019 0:00,12.0:15,12.0000000,47.892435000000,-4.128482000000,,Gouesnach - Finistère,38924,observation-9ce4fdbf-0e72-459e-9905-67dbadd0a15e,https://biolit.fr/observations/observation-9ce4fdbf-0e72-459e-9905-67dbadd0a15e/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190614_121859.jpg,,TRUE, +N1,59172,sortie-9ce4fdbf-0e72-459e-9905-67dbadd0a15e,https://biolit.fr/sorties/sortie-9ce4fdbf-0e72-459e-9905-67dbadd0a15e/,Phil,,6/14/2019 0:00,12.0:15,12.0000000,47.892435000000,-4.128482000000,,Gouesnach - Finistère,38926,observation-9ce4fdbf-0e72-459e-9905-67dbadd0a15e-2,https://biolit.fr/observations/observation-9ce4fdbf-0e72-459e-9905-67dbadd0a15e-2/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190614_121853.jpg,,TRUE, +N1,59172,sortie-9ce4fdbf-0e72-459e-9905-67dbadd0a15e,https://biolit.fr/sorties/sortie-9ce4fdbf-0e72-459e-9905-67dbadd0a15e/,Phil,,6/14/2019 0:00,12.0:15,12.0000000,47.892435000000,-4.128482000000,,Gouesnach - Finistère,38928,observation-9ce4fdbf-0e72-459e-9905-67dbadd0a15e-3,https://biolit.fr/observations/observation-9ce4fdbf-0e72-459e-9905-67dbadd0a15e-3/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190614_121706.jpg,,TRUE, +N1,59172,sortie-9ce4fdbf-0e72-459e-9905-67dbadd0a15e,https://biolit.fr/sorties/sortie-9ce4fdbf-0e72-459e-9905-67dbadd0a15e/,Phil,,6/14/2019 0:00,12.0:15,12.0000000,47.892435000000,-4.128482000000,,Gouesnach - Finistère,38930,observation-9ce4fdbf-0e72-459e-9905-67dbadd0a15e-4,https://biolit.fr/observations/observation-9ce4fdbf-0e72-459e-9905-67dbadd0a15e-4/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190614_121702.jpg,,TRUE, +N1,59172,sortie-9ce4fdbf-0e72-459e-9905-67dbadd0a15e,https://biolit.fr/sorties/sortie-9ce4fdbf-0e72-459e-9905-67dbadd0a15e/,Phil,,6/14/2019 0:00,12.0:15,12.0000000,47.892435000000,-4.128482000000,,Gouesnach - Finistère,38932,observation-9ce4fdbf-0e72-459e-9905-67dbadd0a15e-5,https://biolit.fr/observations/observation-9ce4fdbf-0e72-459e-9905-67dbadd0a15e-5/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20190614_121653_0.jpg,,TRUE, +N1,59173,sortie-76bd9a32-0b91-433f-bb0f-d19450419270,https://biolit.fr/sorties/sortie-76bd9a32-0b91-433f-bb0f-d19450419270/,Phil,,05/05/2019,14.0000000,14.0:25,47.80032500000,-4.183561000000,,Loctudy - Finistère,38934,observation-76bd9a32-0b91-433f-bb0f-d19450419270,https://biolit.fr/observations/observation-76bd9a32-0b91-433f-bb0f-d19450419270/,Carpobrotus acinaciformis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/20190505_142400.jpg,,TRUE, +N1,59173,sortie-76bd9a32-0b91-433f-bb0f-d19450419270,https://biolit.fr/sorties/sortie-76bd9a32-0b91-433f-bb0f-d19450419270/,Phil,,05/05/2019,14.0000000,14.0:25,47.80032500000,-4.183561000000,,Loctudy - Finistère,38936,observation-76bd9a32-0b91-433f-bb0f-d19450419270-2,https://biolit.fr/observations/observation-76bd9a32-0b91-433f-bb0f-d19450419270-2/,Carpobrotus acinaciformis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/20190505_142423.jpg,,TRUE, +N1,59173,sortie-76bd9a32-0b91-433f-bb0f-d19450419270,https://biolit.fr/sorties/sortie-76bd9a32-0b91-433f-bb0f-d19450419270/,Phil,,05/05/2019,14.0000000,14.0:25,47.80032500000,-4.183561000000,,Loctudy - Finistère,38938,observation-76bd9a32-0b91-433f-bb0f-d19450419270-3,https://biolit.fr/observations/observation-76bd9a32-0b91-433f-bb0f-d19450419270-3/,Carpobrotus acinaciformis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/20190505_142426.jpg,,TRUE, +N1,59173,sortie-76bd9a32-0b91-433f-bb0f-d19450419270,https://biolit.fr/sorties/sortie-76bd9a32-0b91-433f-bb0f-d19450419270/,Phil,,05/05/2019,14.0000000,14.0:25,47.80032500000,-4.183561000000,,Loctudy - Finistère,38940,observation-76bd9a32-0b91-433f-bb0f-d19450419270-4,https://biolit.fr/observations/observation-76bd9a32-0b91-433f-bb0f-d19450419270-4/,Carpobrotus edulis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/20190505_142431.jpg,,TRUE, +N1,59174,sortie-ee6ef706-ea50-4372-bdd5-48fff99ac9c2,https://biolit.fr/sorties/sortie-ee6ef706-ea50-4372-bdd5-48fff99ac9c2/,Phil,,12/22/2019 0:00,17.0000000,17.0000000,47.801187000000,-4.182649000000,,Loctudy - Finistère,38942,observation-ee6ef706-ea50-4372-bdd5-48fff99ac9c2,https://biolit.fr/observations/observation-ee6ef706-ea50-4372-bdd5-48fff99ac9c2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191222_172704.jpg,,TRUE, +N1,59174,sortie-ee6ef706-ea50-4372-bdd5-48fff99ac9c2,https://biolit.fr/sorties/sortie-ee6ef706-ea50-4372-bdd5-48fff99ac9c2/,Phil,,12/22/2019 0:00,17.0000000,17.0000000,47.801187000000,-4.182649000000,,Loctudy - Finistère,38944,observation-ee6ef706-ea50-4372-bdd5-48fff99ac9c2-2,https://biolit.fr/observations/observation-ee6ef706-ea50-4372-bdd5-48fff99ac9c2-2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191222_172814.jpg,,TRUE, +N1,59174,sortie-ee6ef706-ea50-4372-bdd5-48fff99ac9c2,https://biolit.fr/sorties/sortie-ee6ef706-ea50-4372-bdd5-48fff99ac9c2/,Phil,,12/22/2019 0:00,17.0000000,17.0000000,47.801187000000,-4.182649000000,,Loctudy - Finistère,38946,observation-ee6ef706-ea50-4372-bdd5-48fff99ac9c2-3,https://biolit.fr/observations/observation-ee6ef706-ea50-4372-bdd5-48fff99ac9c2-3/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191222_172921.jpg,,TRUE, +N1,59174,sortie-ee6ef706-ea50-4372-bdd5-48fff99ac9c2,https://biolit.fr/sorties/sortie-ee6ef706-ea50-4372-bdd5-48fff99ac9c2/,Phil,,12/22/2019 0:00,17.0000000,17.0000000,47.801187000000,-4.182649000000,,Loctudy - Finistère,38948,observation-ee6ef706-ea50-4372-bdd5-48fff99ac9c2-4,https://biolit.fr/observations/observation-ee6ef706-ea50-4372-bdd5-48fff99ac9c2-4/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191222_173004.jpg,,TRUE, +N1,59174,sortie-ee6ef706-ea50-4372-bdd5-48fff99ac9c2,https://biolit.fr/sorties/sortie-ee6ef706-ea50-4372-bdd5-48fff99ac9c2/,Phil,,12/22/2019 0:00,17.0000000,17.0000000,47.801187000000,-4.182649000000,,Loctudy - Finistère,38950,observation-ee6ef706-ea50-4372-bdd5-48fff99ac9c2-5,https://biolit.fr/observations/observation-ee6ef706-ea50-4372-bdd5-48fff99ac9c2-5/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191222_172935.jpg,,TRUE, +N1,59175,sortie-0c7fefc2-35c5-40a4-a159-c66166499c99,https://biolit.fr/sorties/sortie-0c7fefc2-35c5-40a4-a159-c66166499c99/,Phil,,5/19/2019 0:00,13.0:15,13.0:25,47.800988000000,-4.180901000000,,Loctudy - Finistère,38952,observation-0c7fefc2-35c5-40a4-a159-c66166499c99,https://biolit.fr/observations/observation-0c7fefc2-35c5-40a4-a159-c66166499c99/,Saccharina latissima,Laminaire sucrée,,https://biolit.fr/wp-content/uploads/2023/07/20190519_131711.jpg,,TRUE, +N1,59175,sortie-0c7fefc2-35c5-40a4-a159-c66166499c99,https://biolit.fr/sorties/sortie-0c7fefc2-35c5-40a4-a159-c66166499c99/,Phil,,5/19/2019 0:00,13.0:15,13.0:25,47.800988000000,-4.180901000000,,Loctudy - Finistère,38954,observation-0c7fefc2-35c5-40a4-a159-c66166499c99-2,https://biolit.fr/observations/observation-0c7fefc2-35c5-40a4-a159-c66166499c99-2/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/20190519_131844.jpg,,TRUE, +N1,59175,sortie-0c7fefc2-35c5-40a4-a159-c66166499c99,https://biolit.fr/sorties/sortie-0c7fefc2-35c5-40a4-a159-c66166499c99/,Phil,,5/19/2019 0:00,13.0:15,13.0:25,47.800988000000,-4.180901000000,,Loctudy - Finistère,38956,observation-0c7fefc2-35c5-40a4-a159-c66166499c99-3,https://biolit.fr/observations/observation-0c7fefc2-35c5-40a4-a159-c66166499c99-3/,Labrus bergylta,Grande vieille,,https://biolit.fr/wp-content/uploads/2023/07/20190519_132408.jpg,,TRUE, +N1,59175,sortie-0c7fefc2-35c5-40a4-a159-c66166499c99,https://biolit.fr/sorties/sortie-0c7fefc2-35c5-40a4-a159-c66166499c99/,Phil,,5/19/2019 0:00,13.0:15,13.0:25,47.800988000000,-4.180901000000,,Loctudy - Finistère,38958,observation-0c7fefc2-35c5-40a4-a159-c66166499c99-4,https://biolit.fr/observations/observation-0c7fefc2-35c5-40a4-a159-c66166499c99-4/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20190519_132604.jpg,,TRUE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38960,observation-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900/,,,,https://biolit.fr/wp-content/uploads/2023/07/81992507_2789335301087059_2049962159231729664_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38962,observation-6917fad3-bd81-47bc-853d-369be3b19900-2,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/81843883_592519731537363_5105247154524389376_n_0-scaled.jpg,,TRUE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38964,observation-6917fad3-bd81-47bc-853d-369be3b19900-3,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/81998073_875845979536772_4955752395356241920_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38966,observation-6917fad3-bd81-47bc-853d-369be3b19900-4,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/82030007_799654277112176_5408546367599542272_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38968,observation-6917fad3-bd81-47bc-853d-369be3b19900-5,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/82109252_872767053141330_4760168810286153728_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38970,observation-6917fad3-bd81-47bc-853d-369be3b19900-6,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/82130892_506910286608933_6589282926523842560_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38974,observation-6917fad3-bd81-47bc-853d-369be3b19900-8,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/82193981_487760182166972_3224230621962305536_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38976,observation-6917fad3-bd81-47bc-853d-369be3b19900-9,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/82253700_483720765621182_7415341833468772352_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38978,observation-6917fad3-bd81-47bc-853d-369be3b19900-10,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-10/,Bolinus brandaris,Murex épineux,,https://biolit.fr/wp-content/uploads/2023/07/82276430_2644558882265498_5398546979359817728_n-scaled.jpg,,TRUE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38980,observation-6917fad3-bd81-47bc-853d-369be3b19900-11,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-11/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/82307862_461817248061839_1547819433664184320_n-scaled.jpg,,TRUE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38982,observation-6917fad3-bd81-47bc-853d-369be3b19900-12,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/82310955_475054566760133_2353000912605151232_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38984,observation-6917fad3-bd81-47bc-853d-369be3b19900-13,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/82369126_504917760158886_4504217737588899840_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38986,observation-6917fad3-bd81-47bc-853d-369be3b19900-14,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-14/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/82391816_605331680033047_2339803972753162240_n-scaled.jpg,,TRUE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38988,observation-6917fad3-bd81-47bc-853d-369be3b19900-15,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-15/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/82452289_485276338803301_5031975450541293568_n-scaled.jpg,,TRUE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38990,observation-6917fad3-bd81-47bc-853d-369be3b19900-16,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/82464479_598026660993471_529599059921469440_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38992,observation-6917fad3-bd81-47bc-853d-369be3b19900-17,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/82493890_2497626257167032_6762065337673318400_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38994,observation-6917fad3-bd81-47bc-853d-369be3b19900-18,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/82544205_477081546566631_20949184022577152_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38996,observation-6917fad3-bd81-47bc-853d-369be3b19900-19,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/82558763_658595214682011_6140974377606316032_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",38998,observation-6917fad3-bd81-47bc-853d-369be3b19900-20,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/82584335_631151437689092_3185936444443066368_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",39000,observation-6917fad3-bd81-47bc-853d-369be3b19900-21,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/82591782_560612204525381_8893346526491836416_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",39002,observation-6917fad3-bd81-47bc-853d-369be3b19900-22,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-22/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/2023/07/82645872_2967941209897101_3630600082249744384_n-scaled.jpg,,TRUE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",39008,observation-6917fad3-bd81-47bc-853d-369be3b19900-25,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/82799886_509977449876617_2300317138650398720_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",39010,observation-6917fad3-bd81-47bc-853d-369be3b19900-26,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/82816580_483069425978991_7777151063894786048_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",39012,observation-6917fad3-bd81-47bc-853d-369be3b19900-27,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-27/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/82929335_2501877469934679_8557505793618870272_n-scaled.jpg,,TRUE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",39014,observation-6917fad3-bd81-47bc-853d-369be3b19900-28,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/83044424_795187097628446_3232907628426297344_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",39018,observation-6917fad3-bd81-47bc-853d-369be3b19900-30,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/83099295_865648503894985_1989876713516957696_n-scaled.jpg,,FALSE, +N1,59176,sortie-6917fad3-bd81-47bc-853d-369be3b19900,https://biolit.fr/sorties/sortie-6917fad3-bd81-47bc-853d-369be3b19900/,Lpetit,,01/11/2020,10.000005,11.0000000,43.429208000000,3.766062000000,CPIE Littoral d'Occitanie,"Plage des Sarcelles, Frontignan plage",39022,observation-6917fad3-bd81-47bc-853d-369be3b19900-32,https://biolit.fr/observations/observation-6917fad3-bd81-47bc-853d-369be3b19900-32/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/83729512_2608648482516624_3237094950956957696_n-scaled.jpg,,TRUE, +N1,59177,sortie-fcbecf70-07a8-46ea-abcf-d28e7e2fc159,https://biolit.fr/sorties/sortie-fcbecf70-07a8-46ea-abcf-d28e7e2fc159/,Phil,,12/26/2019 0:00,11.0000000,11.0:55,47.889938000000,-3.974034000000,,Fouesnant - Finistère,39024,observation-fcbecf70-07a8-46ea-abcf-d28e7e2fc159,https://biolit.fr/observations/observation-fcbecf70-07a8-46ea-abcf-d28e7e2fc159/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20191226_115325.jpg,,TRUE, +N1,59177,sortie-fcbecf70-07a8-46ea-abcf-d28e7e2fc159,https://biolit.fr/sorties/sortie-fcbecf70-07a8-46ea-abcf-d28e7e2fc159/,Phil,,12/26/2019 0:00,11.0000000,11.0:55,47.889938000000,-3.974034000000,,Fouesnant - Finistère,39026,observation-fcbecf70-07a8-46ea-abcf-d28e7e2fc159-2,https://biolit.fr/observations/observation-fcbecf70-07a8-46ea-abcf-d28e7e2fc159-2/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20191226_115439.jpg,,TRUE, +N1,59177,sortie-fcbecf70-07a8-46ea-abcf-d28e7e2fc159,https://biolit.fr/sorties/sortie-fcbecf70-07a8-46ea-abcf-d28e7e2fc159/,Phil,,12/26/2019 0:00,11.0000000,11.0:55,47.889938000000,-3.974034000000,,Fouesnant - Finistère,39028,observation-fcbecf70-07a8-46ea-abcf-d28e7e2fc159-3,https://biolit.fr/observations/observation-fcbecf70-07a8-46ea-abcf-d28e7e2fc159-3/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20191226_115455.jpg,,TRUE, +N1,59177,sortie-fcbecf70-07a8-46ea-abcf-d28e7e2fc159,https://biolit.fr/sorties/sortie-fcbecf70-07a8-46ea-abcf-d28e7e2fc159/,Phil,,12/26/2019 0:00,11.0000000,11.0:55,47.889938000000,-3.974034000000,,Fouesnant - Finistère,39030,observation-fcbecf70-07a8-46ea-abcf-d28e7e2fc159-4,https://biolit.fr/observations/observation-fcbecf70-07a8-46ea-abcf-d28e7e2fc159-4/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/20191226_115212-scaled.jpg,,TRUE, +N1,59177,sortie-fcbecf70-07a8-46ea-abcf-d28e7e2fc159,https://biolit.fr/sorties/sortie-fcbecf70-07a8-46ea-abcf-d28e7e2fc159/,Phil,,12/26/2019 0:00,11.0000000,11.0:55,47.889938000000,-3.974034000000,,Fouesnant - Finistère,39032,observation-fcbecf70-07a8-46ea-abcf-d28e7e2fc159-5,https://biolit.fr/observations/observation-fcbecf70-07a8-46ea-abcf-d28e7e2fc159-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191226_115340-scaled.jpg,,FALSE, +N1,59178,sortie-92368020-5f5f-4562-9f43-3886a0182ad7,https://biolit.fr/sorties/sortie-92368020-5f5f-4562-9f43-3886a0182ad7/,Phil,,01/10/2020,13.0000000,14.0000000,47.791886000000,-4.287268000000,,Guilvinec - Finistère,39034,observation-92368020-5f5f-4562-9f43-3886a0182ad7,https://biolit.fr/observations/observation-92368020-5f5f-4562-9f43-3886a0182ad7/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200110_135715.jpg,,TRUE, +N1,59178,sortie-92368020-5f5f-4562-9f43-3886a0182ad7,https://biolit.fr/sorties/sortie-92368020-5f5f-4562-9f43-3886a0182ad7/,Phil,,01/10/2020,13.0000000,14.0000000,47.791886000000,-4.287268000000,,Guilvinec - Finistère,39036,observation-92368020-5f5f-4562-9f43-3886a0182ad7-2,https://biolit.fr/observations/observation-92368020-5f5f-4562-9f43-3886a0182ad7-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200110_135838.jpg,,TRUE, +N1,59178,sortie-92368020-5f5f-4562-9f43-3886a0182ad7,https://biolit.fr/sorties/sortie-92368020-5f5f-4562-9f43-3886a0182ad7/,Phil,,01/10/2020,13.0000000,14.0000000,47.791886000000,-4.287268000000,,Guilvinec - Finistère,39038,observation-92368020-5f5f-4562-9f43-3886a0182ad7-3,https://biolit.fr/observations/observation-92368020-5f5f-4562-9f43-3886a0182ad7-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200110_135852.jpg,,TRUE, +N1,59178,sortie-92368020-5f5f-4562-9f43-3886a0182ad7,https://biolit.fr/sorties/sortie-92368020-5f5f-4562-9f43-3886a0182ad7/,Phil,,01/10/2020,13.0000000,14.0000000,47.791886000000,-4.287268000000,,Guilvinec - Finistère,39040,observation-92368020-5f5f-4562-9f43-3886a0182ad7-4,https://biolit.fr/observations/observation-92368020-5f5f-4562-9f43-3886a0182ad7-4/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200110_135919.jpg,,TRUE, +N1,59178,sortie-92368020-5f5f-4562-9f43-3886a0182ad7,https://biolit.fr/sorties/sortie-92368020-5f5f-4562-9f43-3886a0182ad7/,Phil,,01/10/2020,13.0000000,14.0000000,47.791886000000,-4.287268000000,,Guilvinec - Finistère,39042,observation-92368020-5f5f-4562-9f43-3886a0182ad7-5,https://biolit.fr/observations/observation-92368020-5f5f-4562-9f43-3886a0182ad7-5/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200110_140106.jpg,,TRUE, +N1,59179,sortie-97644655-1408-4db6-9c44-06d433ebb572,https://biolit.fr/sorties/sortie-97644655-1408-4db6-9c44-06d433ebb572/,corlazo,,01/12/2020,16.0000000,18.0000000,47.363117000000,-2.527774000000,,"Piriac sur mer, plage de port Nabé + plages de Piriac orientées sud-ouest ",39044,observation-97644655-1408-4db6-9c44-06d433ebb572,https://biolit.fr/observations/observation-97644655-1408-4db6-9c44-06d433ebb572/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Vélèles et physalies.jpg,,TRUE, +N1,59180,sortie-f8a95221-489c-4c72-b650-897a0bdcdd7f,https://biolit.fr/sorties/sortie-f8a95221-489c-4c72-b650-897a0bdcdd7f/,michelGavres,,01/11/2020,10.0000000,12.0000000,47.695029000000,-3.343423000000,,gavres,39046,observation-f8a95221-489c-4c72-b650-897a0bdcdd7f,https://biolit.fr/observations/observation-f8a95221-489c-4c72-b650-897a0bdcdd7f/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/galere.png,,TRUE, +N1,59181,sortie-9b450bf4-def7-4cbc-a44e-5aa8d7c34c1c,https://biolit.fr/sorties/sortie-9b450bf4-def7-4cbc-a44e-5aa8d7c34c1c/,Phil,,11/16/2019 0:00,12.0000000,12.000005,48.06040200000,-4.671380000000,,Cléden-Cap-Sizun - Finistère,39048,observation-9b450bf4-def7-4cbc-a44e-5aa8d7c34c1c,https://biolit.fr/observations/observation-9b450bf4-def7-4cbc-a44e-5aa8d7c34c1c/,Uria aalge,Guillemot de Troïl,,https://biolit.fr/wp-content/uploads/2023/07/20191116_120113.jpg,,TRUE, +N1,59181,sortie-9b450bf4-def7-4cbc-a44e-5aa8d7c34c1c,https://biolit.fr/sorties/sortie-9b450bf4-def7-4cbc-a44e-5aa8d7c34c1c/,Phil,,11/16/2019 0:00,12.0000000,12.000005,48.06040200000,-4.671380000000,,Cléden-Cap-Sizun - Finistère,39050,observation-9b450bf4-def7-4cbc-a44e-5aa8d7c34c1c-2,https://biolit.fr/observations/observation-9b450bf4-def7-4cbc-a44e-5aa8d7c34c1c-2/,Uria aalge,Guillemot de Troïl,,https://biolit.fr/wp-content/uploads/2023/07/20191116_120119.jpg,,TRUE, +N1,59181,sortie-9b450bf4-def7-4cbc-a44e-5aa8d7c34c1c,https://biolit.fr/sorties/sortie-9b450bf4-def7-4cbc-a44e-5aa8d7c34c1c/,Phil,,11/16/2019 0:00,12.0000000,12.000005,48.06040200000,-4.671380000000,,Cléden-Cap-Sizun - Finistère,39052,observation-9b450bf4-def7-4cbc-a44e-5aa8d7c34c1c-3,https://biolit.fr/observations/observation-9b450bf4-def7-4cbc-a44e-5aa8d7c34c1c-3/,Uria aalge,Guillemot de Troïl,,https://biolit.fr/wp-content/uploads/2023/07/20191116_120502-scaled.jpg,,TRUE, +N1,59182,sortie-94833996-c4d2-466a-ae37-fc4084e90a75,https://biolit.fr/sorties/sortie-94833996-c4d2-466a-ae37-fc4084e90a75/,Roman,,01/11/2020,16.0000000,17.0000000,47.701604000000,-3.309906000000,,Riantec,39054,observation-94833996-c4d2-466a-ae37-fc4084e90a75,https://biolit.fr/observations/observation-94833996-c4d2-466a-ae37-fc4084e90a75/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/Lepas anatifera (1)-scaled.jpg,,TRUE, +N1,59182,sortie-94833996-c4d2-466a-ae37-fc4084e90a75,https://biolit.fr/sorties/sortie-94833996-c4d2-466a-ae37-fc4084e90a75/,Roman,,01/11/2020,16.0000000,17.0000000,47.701604000000,-3.309906000000,,Riantec,39056,observation-94833996-c4d2-466a-ae37-fc4084e90a75-2,https://biolit.fr/observations/observation-94833996-c4d2-466a-ae37-fc4084e90a75-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Velella velella_0.PNG,,TRUE, +N1,59183,sortie-4431d1bd-b0d4-43e1-96d0-7b704029fcff,https://biolit.fr/sorties/sortie-4431d1bd-b0d4-43e1-96d0-7b704029fcff/,Phil,,01/10/2020,13.0000000,13.0:55,47.792654000000,-4.286715000000,,Guilvinec - Finistère,39057,observation-4431d1bd-b0d4-43e1-96d0-7b704029fcff,https://biolit.fr/observations/observation-4431d1bd-b0d4-43e1-96d0-7b704029fcff/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200110_135001.jpg,,FALSE, +N1,59183,sortie-4431d1bd-b0d4-43e1-96d0-7b704029fcff,https://biolit.fr/sorties/sortie-4431d1bd-b0d4-43e1-96d0-7b704029fcff/,Phil,,01/10/2020,13.0000000,13.0:55,47.792654000000,-4.286715000000,,Guilvinec - Finistère,39059,observation-4431d1bd-b0d4-43e1-96d0-7b704029fcff-2,https://biolit.fr/observations/observation-4431d1bd-b0d4-43e1-96d0-7b704029fcff-2/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20200110_135030.jpg,,TRUE, +N1,59183,sortie-4431d1bd-b0d4-43e1-96d0-7b704029fcff,https://biolit.fr/sorties/sortie-4431d1bd-b0d4-43e1-96d0-7b704029fcff/,Phil,,01/10/2020,13.0000000,13.0:55,47.792654000000,-4.286715000000,,Guilvinec - Finistère,39061,observation-4431d1bd-b0d4-43e1-96d0-7b704029fcff-3,https://biolit.fr/observations/observation-4431d1bd-b0d4-43e1-96d0-7b704029fcff-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20200110_135109.jpg,,FALSE, +N1,59183,sortie-4431d1bd-b0d4-43e1-96d0-7b704029fcff,https://biolit.fr/sorties/sortie-4431d1bd-b0d4-43e1-96d0-7b704029fcff/,Phil,,01/10/2020,13.0000000,13.0:55,47.792654000000,-4.286715000000,,Guilvinec - Finistère,39063,observation-4431d1bd-b0d4-43e1-96d0-7b704029fcff-4,https://biolit.fr/observations/observation-4431d1bd-b0d4-43e1-96d0-7b704029fcff-4/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/20200110_135323.jpg,,TRUE, +N1,59183,sortie-4431d1bd-b0d4-43e1-96d0-7b704029fcff,https://biolit.fr/sorties/sortie-4431d1bd-b0d4-43e1-96d0-7b704029fcff/,Phil,,01/10/2020,13.0000000,13.0:55,47.792654000000,-4.286715000000,,Guilvinec - Finistère,39065,observation-4431d1bd-b0d4-43e1-96d0-7b704029fcff-5,https://biolit.fr/observations/observation-4431d1bd-b0d4-43e1-96d0-7b704029fcff-5/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200110_135347.jpg,,TRUE, +N1,59183,sortie-4431d1bd-b0d4-43e1-96d0-7b704029fcff,https://biolit.fr/sorties/sortie-4431d1bd-b0d4-43e1-96d0-7b704029fcff/,Phil,,01/10/2020,13.0000000,13.0:55,47.792654000000,-4.286715000000,,Guilvinec - Finistère,39067,observation-4431d1bd-b0d4-43e1-96d0-7b704029fcff-6,https://biolit.fr/observations/observation-4431d1bd-b0d4-43e1-96d0-7b704029fcff-6/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200110_135351.jpg,,TRUE, +N1,59183,sortie-4431d1bd-b0d4-43e1-96d0-7b704029fcff,https://biolit.fr/sorties/sortie-4431d1bd-b0d4-43e1-96d0-7b704029fcff/,Phil,,01/10/2020,13.0000000,13.0:55,47.792654000000,-4.286715000000,,Guilvinec - Finistère,39069,observation-4431d1bd-b0d4-43e1-96d0-7b704029fcff-7,https://biolit.fr/observations/observation-4431d1bd-b0d4-43e1-96d0-7b704029fcff-7/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200110_135441.jpg,,TRUE, +N1,59184,sortie-4ca58226-8dc0-4543-b75e-4db2988fa03a,https://biolit.fr/sorties/sortie-4ca58226-8dc0-4543-b75e-4db2988fa03a/,Phil,,12/26/2019 0:00,11.0000000,12.0000000,47.889748000000,-3.973622000000,,Fouesnant - Finistère,39071,observation-4ca58226-8dc0-4543-b75e-4db2988fa03a,https://biolit.fr/observations/observation-4ca58226-8dc0-4543-b75e-4db2988fa03a/,Scyliorhinus canicula,Capsule de petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20191226_115116_1.jpg,,TRUE, +N1,59184,sortie-4ca58226-8dc0-4543-b75e-4db2988fa03a,https://biolit.fr/sorties/sortie-4ca58226-8dc0-4543-b75e-4db2988fa03a/,Phil,,12/26/2019 0:00,11.0000000,12.0000000,47.889748000000,-3.973622000000,,Fouesnant - Finistère,39073,observation-4ca58226-8dc0-4543-b75e-4db2988fa03a-2,https://biolit.fr/observations/observation-4ca58226-8dc0-4543-b75e-4db2988fa03a-2/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20191226_115056_0.jpg,,TRUE, +N1,59184,sortie-4ca58226-8dc0-4543-b75e-4db2988fa03a,https://biolit.fr/sorties/sortie-4ca58226-8dc0-4543-b75e-4db2988fa03a/,Phil,,12/26/2019 0:00,11.0000000,12.0000000,47.889748000000,-3.973622000000,,Fouesnant - Finistère,39075,observation-4ca58226-8dc0-4543-b75e-4db2988fa03a-3,https://biolit.fr/observations/observation-4ca58226-8dc0-4543-b75e-4db2988fa03a-3/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20191226_115714.jpg,,TRUE, +N1,59184,sortie-4ca58226-8dc0-4543-b75e-4db2988fa03a,https://biolit.fr/sorties/sortie-4ca58226-8dc0-4543-b75e-4db2988fa03a/,Phil,,12/26/2019 0:00,11.0000000,12.0000000,47.889748000000,-3.973622000000,,Fouesnant - Finistère,39077,observation-4ca58226-8dc0-4543-b75e-4db2988fa03a-4,https://biolit.fr/observations/observation-4ca58226-8dc0-4543-b75e-4db2988fa03a-4/,Scyliorhinus canicula,Capsule de petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20191226_120245.jpg,,TRUE, +N1,59184,sortie-4ca58226-8dc0-4543-b75e-4db2988fa03a,https://biolit.fr/sorties/sortie-4ca58226-8dc0-4543-b75e-4db2988fa03a/,Phil,,12/26/2019 0:00,11.0000000,12.0000000,47.889748000000,-3.973622000000,,Fouesnant - Finistère,39079,observation-4ca58226-8dc0-4543-b75e-4db2988fa03a-5,https://biolit.fr/observations/observation-4ca58226-8dc0-4543-b75e-4db2988fa03a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191226_114916.jpg,,FALSE, +N1,59184,sortie-4ca58226-8dc0-4543-b75e-4db2988fa03a,https://biolit.fr/sorties/sortie-4ca58226-8dc0-4543-b75e-4db2988fa03a/,Phil,,12/26/2019 0:00,11.0000000,12.0000000,47.889748000000,-3.973622000000,,Fouesnant - Finistère,39081,observation-4ca58226-8dc0-4543-b75e-4db2988fa03a-6,https://biolit.fr/observations/observation-4ca58226-8dc0-4543-b75e-4db2988fa03a-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191226_114941.jpg,,FALSE, +N1,59184,sortie-4ca58226-8dc0-4543-b75e-4db2988fa03a,https://biolit.fr/sorties/sortie-4ca58226-8dc0-4543-b75e-4db2988fa03a/,Phil,,12/26/2019 0:00,11.0000000,12.0000000,47.889748000000,-3.973622000000,,Fouesnant - Finistère,39083,observation-4ca58226-8dc0-4543-b75e-4db2988fa03a-7,https://biolit.fr/observations/observation-4ca58226-8dc0-4543-b75e-4db2988fa03a-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191226_114949.jpg,,FALSE, +N1,59184,sortie-4ca58226-8dc0-4543-b75e-4db2988fa03a,https://biolit.fr/sorties/sortie-4ca58226-8dc0-4543-b75e-4db2988fa03a/,Phil,,12/26/2019 0:00,11.0000000,12.0000000,47.889748000000,-3.973622000000,,Fouesnant - Finistère,39085,observation-4ca58226-8dc0-4543-b75e-4db2988fa03a-8,https://biolit.fr/observations/observation-4ca58226-8dc0-4543-b75e-4db2988fa03a-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191226_115025.jpg,,FALSE, +N1,59185,sortie-a14eb64b-5374-4e21-8fc6-f5ec2b88147e,https://biolit.fr/sorties/sortie-a14eb64b-5374-4e21-8fc6-f5ec2b88147e/,Phil,,01/09/2020,15.0000000,15.0:55,47.854363000000,-3.980422000000,,Fouesnant - Finistère,39087,observation-a14eb64b-5374-4e21-8fc6-f5ec2b88147e,https://biolit.fr/observations/observation-a14eb64b-5374-4e21-8fc6-f5ec2b88147e/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200109_155302.jpg,,TRUE, +N1,59185,sortie-a14eb64b-5374-4e21-8fc6-f5ec2b88147e,https://biolit.fr/sorties/sortie-a14eb64b-5374-4e21-8fc6-f5ec2b88147e/,Phil,,01/09/2020,15.0000000,15.0:55,47.854363000000,-3.980422000000,,Fouesnant - Finistère,39089,observation-a14eb64b-5374-4e21-8fc6-f5ec2b88147e-2,https://biolit.fr/observations/observation-a14eb64b-5374-4e21-8fc6-f5ec2b88147e-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200109_155155.jpg,,TRUE, +N1,59185,sortie-a14eb64b-5374-4e21-8fc6-f5ec2b88147e,https://biolit.fr/sorties/sortie-a14eb64b-5374-4e21-8fc6-f5ec2b88147e/,Phil,,01/09/2020,15.0000000,15.0:55,47.854363000000,-3.980422000000,,Fouesnant - Finistère,39091,observation-a14eb64b-5374-4e21-8fc6-f5ec2b88147e-3,https://biolit.fr/observations/observation-a14eb64b-5374-4e21-8fc6-f5ec2b88147e-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200109_155126.jpg,,TRUE, +N1,59185,sortie-a14eb64b-5374-4e21-8fc6-f5ec2b88147e,https://biolit.fr/sorties/sortie-a14eb64b-5374-4e21-8fc6-f5ec2b88147e/,Phil,,01/09/2020,15.0000000,15.0:55,47.854363000000,-3.980422000000,,Fouesnant - Finistère,39093,observation-a14eb64b-5374-4e21-8fc6-f5ec2b88147e-4,https://biolit.fr/observations/observation-a14eb64b-5374-4e21-8fc6-f5ec2b88147e-4/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200109_155101.jpg,,TRUE, +N1,59185,sortie-a14eb64b-5374-4e21-8fc6-f5ec2b88147e,https://biolit.fr/sorties/sortie-a14eb64b-5374-4e21-8fc6-f5ec2b88147e/,Phil,,01/09/2020,15.0000000,15.0:55,47.854363000000,-3.980422000000,,Fouesnant - Finistère,39095,observation-a14eb64b-5374-4e21-8fc6-f5ec2b88147e-5,https://biolit.fr/observations/observation-a14eb64b-5374-4e21-8fc6-f5ec2b88147e-5/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200109_155027.jpg,,TRUE, +N1,59185,sortie-a14eb64b-5374-4e21-8fc6-f5ec2b88147e,https://biolit.fr/sorties/sortie-a14eb64b-5374-4e21-8fc6-f5ec2b88147e/,Phil,,01/09/2020,15.0000000,15.0:55,47.854363000000,-3.980422000000,,Fouesnant - Finistère,39097,observation-a14eb64b-5374-4e21-8fc6-f5ec2b88147e-6,https://biolit.fr/observations/observation-a14eb64b-5374-4e21-8fc6-f5ec2b88147e-6/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200109_155020.jpg,,TRUE, +N1,59186,sortie-ac48a5d9-436b-448f-b535-6925b3038792,https://biolit.fr/sorties/sortie-ac48a5d9-436b-448f-b535-6925b3038792/,Roman,,01/08/2020,15.0000000,15.0000000,47.687789000000,-3.295808000000,,Gâvres,39099,observation-ac48a5d9-436b-448f-b535-6925b3038792,https://biolit.fr/observations/observation-ac48a5d9-436b-448f-b535-6925b3038792/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/Oeuf de raie.PNG,,TRUE, +N1,59186,sortie-ac48a5d9-436b-448f-b535-6925b3038792,https://biolit.fr/sorties/sortie-ac48a5d9-436b-448f-b535-6925b3038792/,Roman,,01/08/2020,15.0000000,15.0000000,47.687789000000,-3.295808000000,,Gâvres,39100,observation-ac48a5d9-436b-448f-b535-6925b3038792-2,https://biolit.fr/observations/observation-ac48a5d9-436b-448f-b535-6925b3038792-2/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/Oeuf de roussette.PNG,,TRUE, +N1,59186,sortie-ac48a5d9-436b-448f-b535-6925b3038792,https://biolit.fr/sorties/sortie-ac48a5d9-436b-448f-b535-6925b3038792/,Roman,,01/08/2020,15.0000000,15.0000000,47.687789000000,-3.295808000000,,Gâvres,39101,observation-ac48a5d9-436b-448f-b535-6925b3038792-3,https://biolit.fr/observations/observation-ac48a5d9-436b-448f-b535-6925b3038792-3/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/physalie1.PNG,,TRUE, +N1,59186,sortie-ac48a5d9-436b-448f-b535-6925b3038792,https://biolit.fr/sorties/sortie-ac48a5d9-436b-448f-b535-6925b3038792/,Roman,,01/08/2020,15.0000000,15.0000000,47.687789000000,-3.295808000000,,Gâvres,39103,observation-ac48a5d9-436b-448f-b535-6925b3038792-4,https://biolit.fr/observations/observation-ac48a5d9-436b-448f-b535-6925b3038792-4/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Velella velella3.PNG,,TRUE, +N1,59187,sortie-5494f096-e253-4787-ac6d-8f05e8ec926e,https://biolit.fr/sorties/sortie-5494f096-e253-4787-ac6d-8f05e8ec926e/,Phil,,5/19/2019 0:00,13.0000000,13.0000000,47.800510000000,-4.180435000000,,Loctudy - Finistère,39105,observation-5494f096-e253-4787-ac6d-8f05e8ec926e,https://biolit.fr/observations/observation-5494f096-e253-4787-ac6d-8f05e8ec926e/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190519_130117.jpg,,TRUE, +N1,59187,sortie-5494f096-e253-4787-ac6d-8f05e8ec926e,https://biolit.fr/sorties/sortie-5494f096-e253-4787-ac6d-8f05e8ec926e/,Phil,,5/19/2019 0:00,13.0000000,13.0000000,47.800510000000,-4.180435000000,,Loctudy - Finistère,39107,observation-5494f096-e253-4787-ac6d-8f05e8ec926e-2,https://biolit.fr/observations/observation-5494f096-e253-4787-ac6d-8f05e8ec926e-2/,Ocenebra erinaceus,Ponte de Bigorneau perceur,,https://biolit.fr/wp-content/uploads/2023/07/20190519_130131.jpg,,TRUE, +N1,59187,sortie-5494f096-e253-4787-ac6d-8f05e8ec926e,https://biolit.fr/sorties/sortie-5494f096-e253-4787-ac6d-8f05e8ec926e/,Phil,,5/19/2019 0:00,13.0000000,13.0000000,47.800510000000,-4.180435000000,,Loctudy - Finistère,39109,observation-5494f096-e253-4787-ac6d-8f05e8ec926e-3,https://biolit.fr/observations/observation-5494f096-e253-4787-ac6d-8f05e8ec926e-3/,Ocenebra erinaceus,Ponte de Bigorneau perceur,,https://biolit.fr/wp-content/uploads/2023/07/20190519_130124.jpg,,TRUE, +N1,59187,sortie-5494f096-e253-4787-ac6d-8f05e8ec926e,https://biolit.fr/sorties/sortie-5494f096-e253-4787-ac6d-8f05e8ec926e/,Phil,,5/19/2019 0:00,13.0000000,13.0000000,47.800510000000,-4.180435000000,,Loctudy - Finistère,39111,observation-5494f096-e253-4787-ac6d-8f05e8ec926e-4,https://biolit.fr/observations/observation-5494f096-e253-4787-ac6d-8f05e8ec926e-4/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190519_130229.jpg,,TRUE, +N1,59187,sortie-5494f096-e253-4787-ac6d-8f05e8ec926e,https://biolit.fr/sorties/sortie-5494f096-e253-4787-ac6d-8f05e8ec926e/,Phil,,5/19/2019 0:00,13.0000000,13.0000000,47.800510000000,-4.180435000000,,Loctudy - Finistère,39113,observation-5494f096-e253-4787-ac6d-8f05e8ec926e-5,https://biolit.fr/observations/observation-5494f096-e253-4787-ac6d-8f05e8ec926e-5/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190519_130241.jpg,,TRUE, +N1,59187,sortie-5494f096-e253-4787-ac6d-8f05e8ec926e,https://biolit.fr/sorties/sortie-5494f096-e253-4787-ac6d-8f05e8ec926e/,Phil,,5/19/2019 0:00,13.0000000,13.0000000,47.800510000000,-4.180435000000,,Loctudy - Finistère,39115,observation-5494f096-e253-4787-ac6d-8f05e8ec926e-6,https://biolit.fr/observations/observation-5494f096-e253-4787-ac6d-8f05e8ec926e-6/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20190519_130251.jpg,,TRUE, +N1,59187,sortie-5494f096-e253-4787-ac6d-8f05e8ec926e,https://biolit.fr/sorties/sortie-5494f096-e253-4787-ac6d-8f05e8ec926e/,Phil,,5/19/2019 0:00,13.0000000,13.0000000,47.800510000000,-4.180435000000,,Loctudy - Finistère,39117,observation-5494f096-e253-4787-ac6d-8f05e8ec926e-7,https://biolit.fr/observations/observation-5494f096-e253-4787-ac6d-8f05e8ec926e-7/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190519_130300.jpg,,TRUE, +N1,59188,sortie-59d7f257-802c-451f-8b4f-1186a7ae6c62,https://biolit.fr/sorties/sortie-59d7f257-802c-451f-8b4f-1186a7ae6c62/,Phil,,01/06/2020,12.0000000,12.0:15,47.861173000000,-3.983818000000,,Fouesnant - Finistère,39119,observation-59d7f257-802c-451f-8b4f-1186a7ae6c62,https://biolit.fr/observations/observation-59d7f257-802c-451f-8b4f-1186a7ae6c62/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200106_121045.jpg,,TRUE, +N1,59188,sortie-59d7f257-802c-451f-8b4f-1186a7ae6c62,https://biolit.fr/sorties/sortie-59d7f257-802c-451f-8b4f-1186a7ae6c62/,Phil,,01/06/2020,12.0000000,12.0:15,47.861173000000,-3.983818000000,,Fouesnant - Finistère,39121,observation-59d7f257-802c-451f-8b4f-1186a7ae6c62-2,https://biolit.fr/observations/observation-59d7f257-802c-451f-8b4f-1186a7ae6c62-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20200106_121105.jpg,,TRUE, +N1,59188,sortie-59d7f257-802c-451f-8b4f-1186a7ae6c62,https://biolit.fr/sorties/sortie-59d7f257-802c-451f-8b4f-1186a7ae6c62/,Phil,,01/06/2020,12.0000000,12.0:15,47.861173000000,-3.983818000000,,Fouesnant - Finistère,39123,observation-59d7f257-802c-451f-8b4f-1186a7ae6c62-3,https://biolit.fr/observations/observation-59d7f257-802c-451f-8b4f-1186a7ae6c62-3/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200106_121210.jpg,,TRUE, +N1,59188,sortie-59d7f257-802c-451f-8b4f-1186a7ae6c62,https://biolit.fr/sorties/sortie-59d7f257-802c-451f-8b4f-1186a7ae6c62/,Phil,,01/06/2020,12.0000000,12.0:15,47.861173000000,-3.983818000000,,Fouesnant - Finistère,39125,observation-59d7f257-802c-451f-8b4f-1186a7ae6c62-4,https://biolit.fr/observations/observation-59d7f257-802c-451f-8b4f-1186a7ae6c62-4/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200106_120935.jpg,,TRUE, +N1,59188,sortie-59d7f257-802c-451f-8b4f-1186a7ae6c62,https://biolit.fr/sorties/sortie-59d7f257-802c-451f-8b4f-1186a7ae6c62/,Phil,,01/06/2020,12.0000000,12.0:15,47.861173000000,-3.983818000000,,Fouesnant - Finistère,39127,observation-59d7f257-802c-451f-8b4f-1186a7ae6c62-5,https://biolit.fr/observations/observation-59d7f257-802c-451f-8b4f-1186a7ae6c62-5/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200106_120948.jpg,,TRUE, +N1,59188,sortie-59d7f257-802c-451f-8b4f-1186a7ae6c62,https://biolit.fr/sorties/sortie-59d7f257-802c-451f-8b4f-1186a7ae6c62/,Phil,,01/06/2020,12.0000000,12.0:15,47.861173000000,-3.983818000000,,Fouesnant - Finistère,39129,observation-59d7f257-802c-451f-8b4f-1186a7ae6c62-6,https://biolit.fr/observations/observation-59d7f257-802c-451f-8b4f-1186a7ae6c62-6/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20200106_121448.jpg,,TRUE, +N1,59189,sortie-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/sorties/sortie-20e82ee6-9311-412a-a754-b70dbf69089f/,Roman,,01/05/2020,16.0:15,17.0000000,47.704860000000,-3.356850000000,,Port-Louis,39131,observation-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/observations/observation-20e82ee6-9311-412a-a754-b70dbf69089f/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/actinia equina1.PNG,,TRUE, +N1,59189,sortie-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/sorties/sortie-20e82ee6-9311-412a-a754-b70dbf69089f/,Roman,,01/05/2020,16.0:15,17.0000000,47.704860000000,-3.356850000000,,Port-Louis,39133,observation-20e82ee6-9311-412a-a754-b70dbf69089f-2,https://biolit.fr/observations/observation-20e82ee6-9311-412a-a754-b70dbf69089f-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/actinia fragacea1.PNG,,TRUE, +N1,59189,sortie-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/sorties/sortie-20e82ee6-9311-412a-a754-b70dbf69089f/,Roman,,01/05/2020,16.0:15,17.0000000,47.704860000000,-3.356850000000,,Port-Louis,39135,observation-20e82ee6-9311-412a-a754-b70dbf69089f-3,https://biolit.fr/observations/observation-20e82ee6-9311-412a-a754-b70dbf69089f-3/,Aeolidia filomenae,Eolis de Filomène,,https://biolit.fr/wp-content/uploads/2023/07/Aeolidia papillosa.PNG,,TRUE, +N1,59189,sortie-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/sorties/sortie-20e82ee6-9311-412a-a754-b70dbf69089f/,Roman,,01/05/2020,16.0:15,17.0000000,47.704860000000,-3.356850000000,,Port-Louis,39137,observation-20e82ee6-9311-412a-a754-b70dbf69089f-4,https://biolit.fr/observations/observation-20e82ee6-9311-412a-a754-b70dbf69089f-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/anemonia viridis1.PNG,,TRUE, +N1,59189,sortie-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/sorties/sortie-20e82ee6-9311-412a-a754-b70dbf69089f/,Roman,,01/05/2020,16.0:15,17.0000000,47.704860000000,-3.356850000000,,Port-Louis,39139,observation-20e82ee6-9311-412a-a754-b70dbf69089f-5,https://biolit.fr/observations/observation-20e82ee6-9311-412a-a754-b70dbf69089f-5/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/Aulactinia verrucosa.PNG,,TRUE, +N1,59189,sortie-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/sorties/sortie-20e82ee6-9311-412a-a754-b70dbf69089f/,Roman,,01/05/2020,16.0:15,17.0000000,47.704860000000,-3.356850000000,,Port-Louis,39140,observation-20e82ee6-9311-412a-a754-b70dbf69089f-6,https://biolit.fr/observations/observation-20e82ee6-9311-412a-a754-b70dbf69089f-6/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/carcinus maenas2.PNG,,TRUE, +N1,59189,sortie-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/sorties/sortie-20e82ee6-9311-412a-a754-b70dbf69089f/,Roman,,01/05/2020,16.0:15,17.0000000,47.704860000000,-3.356850000000,,Port-Louis,39142,observation-20e82ee6-9311-412a-a754-b70dbf69089f-7,https://biolit.fr/observations/observation-20e82ee6-9311-412a-a754-b70dbf69089f-7/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/cerastoderma edule2.PNG,,TRUE, +N1,59189,sortie-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/sorties/sortie-20e82ee6-9311-412a-a754-b70dbf69089f/,Roman,,01/05/2020,16.0:15,17.0000000,47.704860000000,-3.356850000000,,Port-Louis,39144,observation-20e82ee6-9311-412a-a754-b70dbf69089f-8,https://biolit.fr/observations/observation-20e82ee6-9311-412a-a754-b70dbf69089f-8/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus3.PNG,,TRUE, +N1,59189,sortie-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/sorties/sortie-20e82ee6-9311-412a-a754-b70dbf69089f/,Roman,,01/05/2020,16.0:15,17.0000000,47.704860000000,-3.356850000000,,Port-Louis,39146,observation-20e82ee6-9311-412a-a754-b70dbf69089f-9,https://biolit.fr/observations/observation-20e82ee6-9311-412a-a754-b70dbf69089f-9/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/chthmalus stellatus et montagui.PNG,,TRUE, +N1,59189,sortie-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/sorties/sortie-20e82ee6-9311-412a-a754-b70dbf69089f/,Roman,,01/05/2020,16.0:15,17.0000000,47.704860000000,-3.356850000000,,Port-Louis,39148,observation-20e82ee6-9311-412a-a754-b70dbf69089f-10,https://biolit.fr/observations/observation-20e82ee6-9311-412a-a754-b70dbf69089f-10/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/littorina littorea2.PNG,,TRUE, +N1,59189,sortie-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/sorties/sortie-20e82ee6-9311-412a-a754-b70dbf69089f/,Roman,,01/05/2020,16.0:15,17.0000000,47.704860000000,-3.356850000000,,Port-Louis,39150,observation-20e82ee6-9311-412a-a754-b70dbf69089f-11,https://biolit.fr/observations/observation-20e82ee6-9311-412a-a754-b70dbf69089f-11/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/littorina saxatilis.PNG,,TRUE, +N1,59189,sortie-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/sorties/sortie-20e82ee6-9311-412a-a754-b70dbf69089f/,Roman,,01/05/2020,16.0:15,17.0000000,47.704860000000,-3.356850000000,,Port-Louis,39152,observation-20e82ee6-9311-412a-a754-b70dbf69089f-12,https://biolit.fr/observations/observation-20e82ee6-9311-412a-a754-b70dbf69089f-12/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis3.PNG,,TRUE, +N1,59189,sortie-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/sorties/sortie-20e82ee6-9311-412a-a754-b70dbf69089f/,Roman,,01/05/2020,16.0:15,17.0000000,47.704860000000,-3.356850000000,,Port-Louis,39154,observation-20e82ee6-9311-412a-a754-b70dbf69089f-13,https://biolit.fr/observations/observation-20e82ee6-9311-412a-a754-b70dbf69089f-13/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/nereidae sp.PNG,,TRUE, +N1,59189,sortie-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/sorties/sortie-20e82ee6-9311-412a-a754-b70dbf69089f/,Roman,,01/05/2020,16.0:15,17.0000000,47.704860000000,-3.356850000000,,Port-Louis,39156,observation-20e82ee6-9311-412a-a754-b70dbf69089f-14,https://biolit.fr/observations/observation-20e82ee6-9311-412a-a754-b70dbf69089f-14/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/osilinus lineatus3.PNG,,TRUE, +N1,59189,sortie-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/sorties/sortie-20e82ee6-9311-412a-a754-b70dbf69089f/,Roman,,01/05/2020,16.0:15,17.0000000,47.704860000000,-3.356850000000,,Port-Louis,39158,observation-20e82ee6-9311-412a-a754-b70dbf69089f-15,https://biolit.fr/observations/observation-20e82ee6-9311-412a-a754-b70dbf69089f-15/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris2.PNG,,TRUE, +N1,59189,sortie-20e82ee6-9311-412a-a754-b70dbf69089f,https://biolit.fr/sorties/sortie-20e82ee6-9311-412a-a754-b70dbf69089f/,Roman,,01/05/2020,16.0:15,17.0000000,47.704860000000,-3.356850000000,,Port-Louis,39160,observation-20e82ee6-9311-412a-a754-b70dbf69089f-16,https://biolit.fr/observations/observation-20e82ee6-9311-412a-a754-b70dbf69089f-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/ruditapes philippinarum1.PNG,,FALSE, +N1,59190,sortie-fb412a78-67c3-4846-adca-376508fb2411,https://biolit.fr/sorties/sortie-fb412a78-67c3-4846-adca-376508fb2411/,Roman,,01/04/2020,16.0000000,17.0000000,47.707553000000,-3.360916000000,,Port-louis,39162,observation-fb412a78-67c3-4846-adca-376508fb2411,https://biolit.fr/observations/observation-fb412a78-67c3-4846-adca-376508fb2411/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Actinia fragacea.PNG,,TRUE, +N1,59190,sortie-fb412a78-67c3-4846-adca-376508fb2411,https://biolit.fr/sorties/sortie-fb412a78-67c3-4846-adca-376508fb2411/,Roman,,01/04/2020,16.0000000,17.0000000,47.707553000000,-3.360916000000,,Port-louis,39163,observation-fb412a78-67c3-4846-adca-376508fb2411-2,https://biolit.fr/observations/observation-fb412a78-67c3-4846-adca-376508fb2411-2/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis2.PNG,,TRUE, +N1,59190,sortie-fb412a78-67c3-4846-adca-376508fb2411,https://biolit.fr/sorties/sortie-fb412a78-67c3-4846-adca-376508fb2411/,Roman,,01/04/2020,16.0000000,17.0000000,47.707553000000,-3.360916000000,,Port-louis,39165,observation-fb412a78-67c3-4846-adca-376508fb2411-3,https://biolit.fr/observations/observation-fb412a78-67c3-4846-adca-376508fb2411-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis.jpg,,TRUE, +N1,59190,sortie-fb412a78-67c3-4846-adca-376508fb2411,https://biolit.fr/sorties/sortie-fb412a78-67c3-4846-adca-376508fb2411/,Roman,,01/04/2020,16.0000000,17.0000000,47.707553000000,-3.360916000000,,Port-louis,39166,observation-fb412a78-67c3-4846-adca-376508fb2411-4,https://biolit.fr/observations/observation-fb412a78-67c3-4846-adca-376508fb2411-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/osilinus lineatus2.PNG,,TRUE, +N1,59190,sortie-fb412a78-67c3-4846-adca-376508fb2411,https://biolit.fr/sorties/sortie-fb412a78-67c3-4846-adca-376508fb2411/,Roman,,01/04/2020,16.0000000,17.0000000,47.707553000000,-3.360916000000,,Port-louis,39168,observation-fb412a78-67c3-4846-adca-376508fb2411-5,https://biolit.fr/observations/observation-fb412a78-67c3-4846-adca-376508fb2411-5/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/ostrea edulis1.PNG,,TRUE, +N1,59190,sortie-fb412a78-67c3-4846-adca-376508fb2411,https://biolit.fr/sorties/sortie-fb412a78-67c3-4846-adca-376508fb2411/,Roman,,01/04/2020,16.0000000,17.0000000,47.707553000000,-3.360916000000,,Port-louis,39170,observation-fb412a78-67c3-4846-adca-376508fb2411-6,https://biolit.fr/observations/observation-fb412a78-67c3-4846-adca-376508fb2411-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Venus verrucosa.PNG,,FALSE, +N1,59191,sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8,https://biolit.fr/sorties/sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8/,Roman,,01/04/2020,16.0000000,17.0000000,47.707568000,-3.361013000000,,Port-louis,39171,observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8,https://biolit.fr/observations/observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/anémone sp2.PNG,,TRUE, +N1,59191,sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8,https://biolit.fr/sorties/sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8/,Roman,,01/04/2020,16.0000000,17.0000000,47.707568000,-3.361013000000,,Port-louis,39173,observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-2,https://biolit.fr/observations/observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie sp.PNG,,FALSE, +N1,59191,sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8,https://biolit.fr/sorties/sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8/,Roman,,01/04/2020,16.0000000,17.0000000,47.707568000,-3.361013000000,,Port-louis,39174,observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-3,https://biolit.fr/observations/observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-3/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus2.PNG,,TRUE, +N1,59191,sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8,https://biolit.fr/sorties/sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8/,Roman,,01/04/2020,16.0000000,17.0000000,47.707568000,-3.361013000000,,Port-louis,39176,observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-4,https://biolit.fr/observations/observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/carcinus maenas1.PNG,,TRUE, +N1,59191,sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8,https://biolit.fr/sorties/sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8/,Roman,,01/04/2020,16.0000000,17.0000000,47.707568000,-3.361013000000,,Port-louis,39178,observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-5,https://biolit.fr/observations/observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-5/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus2.PNG,,TRUE, +N1,59191,sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8,https://biolit.fr/sorties/sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8/,Roman,,01/04/2020,16.0000000,17.0000000,47.707568000,-3.361013000000,,Port-louis,39180,observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-6,https://biolit.fr/observations/observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/chlamys varia.PNG,,FALSE, +N1,59191,sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8,https://biolit.fr/sorties/sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8/,Roman,,01/04/2020,16.0000000,17.0000000,47.707568000,-3.361013000000,,Port-louis,39181,observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-7,https://biolit.fr/observations/observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-7/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/chthmalus stellatus4.PNG,,TRUE, +N1,59191,sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8,https://biolit.fr/sorties/sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8/,Roman,,01/04/2020,16.0000000,17.0000000,47.707568000,-3.361013000000,,Port-louis,39183,observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-8,https://biolit.fr/observations/observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/tapes rhomboides.PNG,,FALSE, +N1,59191,sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8,https://biolit.fr/sorties/sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8/,Roman,,01/04/2020,16.0000000,17.0000000,47.707568000,-3.361013000000,,Port-louis,39185,observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-9,https://biolit.fr/observations/observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-9/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Velella velella2.PNG,,TRUE, +N1,59191,sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8,https://biolit.fr/sorties/sortie-1fbd45c5-c586-4312-aa96-8e14ee3437c8/,Roman,,01/04/2020,16.0000000,17.0000000,47.707568000,-3.361013000000,,Port-louis,39187,observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-10,https://biolit.fr/observations/observation-1fbd45c5-c586-4312-aa96-8e14ee3437c8-10/,Pisa armata,Pise armée,,https://biolit.fr/wp-content/uploads/2023/07/pisa armata.PNG,,TRUE, +N1,59192,sortie-95d34d79-279b-45b8-8c0d-ef7a5290b24b,https://biolit.fr/sorties/sortie-95d34d79-279b-45b8-8c0d-ef7a5290b24b/,Phil,,12/22/2019 0:00,17.0000000,17.0:45,47.801579000000,-4.182538000000,,Loctudy - Finistère,39188,observation-95d34d79-279b-45b8-8c0d-ef7a5290b24b,https://biolit.fr/observations/observation-95d34d79-279b-45b8-8c0d-ef7a5290b24b/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20191222_172753.jpg,,TRUE, +N1,59192,sortie-95d34d79-279b-45b8-8c0d-ef7a5290b24b,https://biolit.fr/sorties/sortie-95d34d79-279b-45b8-8c0d-ef7a5290b24b/,Phil,,12/22/2019 0:00,17.0000000,17.0:45,47.801579000000,-4.182538000000,,Loctudy - Finistère,39190,observation-95d34d79-279b-45b8-8c0d-ef7a5290b24b-2,https://biolit.fr/observations/observation-95d34d79-279b-45b8-8c0d-ef7a5290b24b-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20191222_172840.jpg,,TRUE, +N1,59192,sortie-95d34d79-279b-45b8-8c0d-ef7a5290b24b,https://biolit.fr/sorties/sortie-95d34d79-279b-45b8-8c0d-ef7a5290b24b/,Phil,,12/22/2019 0:00,17.0000000,17.0:45,47.801579000000,-4.182538000000,,Loctudy - Finistère,39192,observation-95d34d79-279b-45b8-8c0d-ef7a5290b24b-3,https://biolit.fr/observations/observation-95d34d79-279b-45b8-8c0d-ef7a5290b24b-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20191222_174252.jpg,,TRUE, +N1,59192,sortie-95d34d79-279b-45b8-8c0d-ef7a5290b24b,https://biolit.fr/sorties/sortie-95d34d79-279b-45b8-8c0d-ef7a5290b24b/,Phil,,12/22/2019 0:00,17.0000000,17.0:45,47.801579000000,-4.182538000000,,Loctudy - Finistère,39194,observation-95d34d79-279b-45b8-8c0d-ef7a5290b24b-4,https://biolit.fr/observations/observation-95d34d79-279b-45b8-8c0d-ef7a5290b24b-4/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1130450.JPG,,TRUE, +N1,59192,sortie-95d34d79-279b-45b8-8c0d-ef7a5290b24b,https://biolit.fr/sorties/sortie-95d34d79-279b-45b8-8c0d-ef7a5290b24b/,Phil,,12/22/2019 0:00,17.0000000,17.0:45,47.801579000000,-4.182538000000,,Loctudy - Finistère,39196,observation-95d34d79-279b-45b8-8c0d-ef7a5290b24b-5,https://biolit.fr/observations/observation-95d34d79-279b-45b8-8c0d-ef7a5290b24b-5/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1130452.JPG,,TRUE, +N1,59192,sortie-95d34d79-279b-45b8-8c0d-ef7a5290b24b,https://biolit.fr/sorties/sortie-95d34d79-279b-45b8-8c0d-ef7a5290b24b/,Phil,,12/22/2019 0:00,17.0000000,17.0:45,47.801579000000,-4.182538000000,,Loctudy - Finistère,39198,observation-95d34d79-279b-45b8-8c0d-ef7a5290b24b-6,https://biolit.fr/observations/observation-95d34d79-279b-45b8-8c0d-ef7a5290b24b-6/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1130492.JPG,,TRUE, +N1,59192,sortie-95d34d79-279b-45b8-8c0d-ef7a5290b24b,https://biolit.fr/sorties/sortie-95d34d79-279b-45b8-8c0d-ef7a5290b24b/,Phil,,12/22/2019 0:00,17.0000000,17.0:45,47.801579000000,-4.182538000000,,Loctudy - Finistère,39200,observation-95d34d79-279b-45b8-8c0d-ef7a5290b24b-7,https://biolit.fr/observations/observation-95d34d79-279b-45b8-8c0d-ef7a5290b24b-7/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1130504.JPG,,TRUE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39202,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture1_3.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39204,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-2,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture2_3.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39206,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-3,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture3_3.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39208,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-4,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture4_3.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39210,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-5,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture5_3.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39212,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-6,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-6/,Cocos nucifera,Cocotier,,https://biolit.fr/wp-content/uploads/2023/07/Capture6_3.PNG,,TRUE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39214,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-7,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture7_3.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39216,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-8,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture8_3.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39218,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-9,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture9_3.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39220,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-10,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture10_2.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39222,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-11,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture12_2.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39224,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-12,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture13_2.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39226,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-13,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture14_2.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39228,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-14,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture15_2.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39230,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-15,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture16_2.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39232,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-16,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture17_1.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39234,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-17,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture18_1.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39236,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-18,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture19_0.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39238,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-19,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture20_0.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39240,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-20,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture21.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39242,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-21,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture22.PNG,,FALSE, +N1,59193,sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800,https://biolit.fr/sorties/sortie-b4acc14d-6298-4b98-b360-fdd4a0a63800/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332941000000,-61.328342000000,,"Plage de l'autre bord, Le Moule",39244,observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-22,https://biolit.fr/observations/observation-b4acc14d-6298-4b98-b360-fdd4a0a63800-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture23.PNG,,FALSE, +N1,59194,sortie-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183,https://biolit.fr/sorties/sortie-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183/,Phil,,12/26/2019 0:00,11.0:45,11.0000000,47.888098000000,-3.979952000000,,Fouesnant - Finistère,39246,observation-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183,https://biolit.fr/observations/observation-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191226_114412.jpg,,FALSE, +N1,59194,sortie-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183,https://biolit.fr/sorties/sortie-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183/,Phil,,12/26/2019 0:00,11.0:45,11.0000000,47.888098000000,-3.979952000000,,Fouesnant - Finistère,39248,observation-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183-2,https://biolit.fr/observations/observation-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191226_114841.jpg,,FALSE, +N1,59194,sortie-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183,https://biolit.fr/sorties/sortie-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183/,Phil,,12/26/2019 0:00,11.0:45,11.0000000,47.888098000000,-3.979952000000,,Fouesnant - Finistère,39250,observation-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183-3,https://biolit.fr/observations/observation-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191226_114848.jpg,,FALSE, +N1,59194,sortie-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183,https://biolit.fr/sorties/sortie-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183/,Phil,,12/26/2019 0:00,11.0:45,11.0000000,47.888098000000,-3.979952000000,,Fouesnant - Finistère,39252,observation-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183-4,https://biolit.fr/observations/observation-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191226_114910.jpg,,FALSE, +N1,59194,sortie-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183,https://biolit.fr/sorties/sortie-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183/,Phil,,12/26/2019 0:00,11.0:45,11.0000000,47.888098000000,-3.979952000000,,Fouesnant - Finistère,39254,observation-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183-5,https://biolit.fr/observations/observation-c10a2ff7-8bf4-43d1-b7d6-b5288e18a183-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191226_114551-scaled.jpg,,FALSE, +N1,59195,sortie-2692a8ed-e145-43b8-b18c-429954a44227,https://biolit.fr/sorties/sortie-2692a8ed-e145-43b8-b18c-429954a44227/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332972000000,-61.328316000000,,"Plage de l'autre bord, Le Moule",39256,observation-2692a8ed-e145-43b8-b18c-429954a44227,https://biolit.fr/observations/observation-2692a8ed-e145-43b8-b18c-429954a44227/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture1_2.PNG,,FALSE, +N1,59195,sortie-2692a8ed-e145-43b8-b18c-429954a44227,https://biolit.fr/sorties/sortie-2692a8ed-e145-43b8-b18c-429954a44227/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332972000000,-61.328316000000,,"Plage de l'autre bord, Le Moule",39258,observation-2692a8ed-e145-43b8-b18c-429954a44227-2,https://biolit.fr/observations/observation-2692a8ed-e145-43b8-b18c-429954a44227-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture2_2.PNG,,FALSE, +N1,59195,sortie-2692a8ed-e145-43b8-b18c-429954a44227,https://biolit.fr/sorties/sortie-2692a8ed-e145-43b8-b18c-429954a44227/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332972000000,-61.328316000000,,"Plage de l'autre bord, Le Moule",39260,observation-2692a8ed-e145-43b8-b18c-429954a44227-3,https://biolit.fr/observations/observation-2692a8ed-e145-43b8-b18c-429954a44227-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture3_2.PNG,,FALSE, +N1,59195,sortie-2692a8ed-e145-43b8-b18c-429954a44227,https://biolit.fr/sorties/sortie-2692a8ed-e145-43b8-b18c-429954a44227/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332972000000,-61.328316000000,,"Plage de l'autre bord, Le Moule",39262,observation-2692a8ed-e145-43b8-b18c-429954a44227-4,https://biolit.fr/observations/observation-2692a8ed-e145-43b8-b18c-429954a44227-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture4_2.PNG,,FALSE, +N1,59195,sortie-2692a8ed-e145-43b8-b18c-429954a44227,https://biolit.fr/sorties/sortie-2692a8ed-e145-43b8-b18c-429954a44227/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332972000000,-61.328316000000,,"Plage de l'autre bord, Le Moule",39264,observation-2692a8ed-e145-43b8-b18c-429954a44227-5,https://biolit.fr/observations/observation-2692a8ed-e145-43b8-b18c-429954a44227-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture5_2.PNG,,FALSE, +N1,59195,sortie-2692a8ed-e145-43b8-b18c-429954a44227,https://biolit.fr/sorties/sortie-2692a8ed-e145-43b8-b18c-429954a44227/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332972000000,-61.328316000000,,"Plage de l'autre bord, Le Moule",39266,observation-2692a8ed-e145-43b8-b18c-429954a44227-6,https://biolit.fr/observations/observation-2692a8ed-e145-43b8-b18c-429954a44227-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture6_2.PNG,,FALSE, +N1,59195,sortie-2692a8ed-e145-43b8-b18c-429954a44227,https://biolit.fr/sorties/sortie-2692a8ed-e145-43b8-b18c-429954a44227/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332972000000,-61.328316000000,,"Plage de l'autre bord, Le Moule",39268,observation-2692a8ed-e145-43b8-b18c-429954a44227-7,https://biolit.fr/observations/observation-2692a8ed-e145-43b8-b18c-429954a44227-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture7_2.PNG,,FALSE, +N1,59195,sortie-2692a8ed-e145-43b8-b18c-429954a44227,https://biolit.fr/sorties/sortie-2692a8ed-e145-43b8-b18c-429954a44227/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332972000000,-61.328316000000,,"Plage de l'autre bord, Le Moule",39270,observation-2692a8ed-e145-43b8-b18c-429954a44227-8,https://biolit.fr/observations/observation-2692a8ed-e145-43b8-b18c-429954a44227-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture8_2.PNG,,FALSE, +N1,59195,sortie-2692a8ed-e145-43b8-b18c-429954a44227,https://biolit.fr/sorties/sortie-2692a8ed-e145-43b8-b18c-429954a44227/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332972000000,-61.328316000000,,"Plage de l'autre bord, Le Moule",39272,observation-2692a8ed-e145-43b8-b18c-429954a44227-9,https://biolit.fr/observations/observation-2692a8ed-e145-43b8-b18c-429954a44227-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture9_2.PNG,,FALSE, +N1,59196,sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/sorties/sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332948000000,-61.328317000000,,"Plage de l'autre bord, Le Moule",39274,observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/observations/observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture1_1.PNG,,FALSE, +N1,59196,sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/sorties/sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332948000000,-61.328317000000,,"Plage de l'autre bord, Le Moule",39276,observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-2,https://biolit.fr/observations/observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture2_1.PNG,,FALSE, +N1,59196,sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/sorties/sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332948000000,-61.328317000000,,"Plage de l'autre bord, Le Moule",39278,observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-3,https://biolit.fr/observations/observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture3_1.PNG,,FALSE, +N1,59196,sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/sorties/sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332948000000,-61.328317000000,,"Plage de l'autre bord, Le Moule",39280,observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-4,https://biolit.fr/observations/observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture4_1.PNG,,FALSE, +N1,59196,sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/sorties/sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332948000000,-61.328317000000,,"Plage de l'autre bord, Le Moule",39282,observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-5,https://biolit.fr/observations/observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture5_1.PNG,,FALSE, +N1,59196,sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/sorties/sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332948000000,-61.328317000000,,"Plage de l'autre bord, Le Moule",39284,observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-6,https://biolit.fr/observations/observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture6_1.PNG,,FALSE, +N1,59196,sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/sorties/sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332948000000,-61.328317000000,,"Plage de l'autre bord, Le Moule",39286,observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-7,https://biolit.fr/observations/observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture7_1.PNG,,FALSE, +N1,59196,sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/sorties/sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332948000000,-61.328317000000,,"Plage de l'autre bord, Le Moule",39288,observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-8,https://biolit.fr/observations/observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture8_1.PNG,,FALSE, +N1,59196,sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/sorties/sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332948000000,-61.328317000000,,"Plage de l'autre bord, Le Moule",39290,observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-9,https://biolit.fr/observations/observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture9_1.PNG,,FALSE, +N1,59196,sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/sorties/sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332948000000,-61.328317000000,,"Plage de l'autre bord, Le Moule",39292,observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-10,https://biolit.fr/observations/observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture10_1.PNG,,FALSE, +N1,59196,sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/sorties/sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332948000000,-61.328317000000,,"Plage de l'autre bord, Le Moule",39294,observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-11,https://biolit.fr/observations/observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture11_1.PNG,,FALSE, +N1,59196,sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/sorties/sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332948000000,-61.328317000000,,"Plage de l'autre bord, Le Moule",39296,observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-12,https://biolit.fr/observations/observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture12_1.PNG,,FALSE, +N1,59196,sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/sorties/sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332948000000,-61.328317000000,,"Plage de l'autre bord, Le Moule",39298,observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-13,https://biolit.fr/observations/observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture13_1.PNG,,FALSE, +N1,59196,sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/sorties/sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332948000000,-61.328317000000,,"Plage de l'autre bord, Le Moule",39300,observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-14,https://biolit.fr/observations/observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture14_1.PNG,,FALSE, +N1,59196,sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/sorties/sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332948000000,-61.328317000000,,"Plage de l'autre bord, Le Moule",39302,observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-15,https://biolit.fr/observations/observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture15_1.PNG,,FALSE, +N1,59196,sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f,https://biolit.fr/sorties/sortie-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f/,Ecole de la mer,,11/19/2019 0:00,14.0000000,16.0000000,16.332948000000,-61.328317000000,,"Plage de l'autre bord, Le Moule",39304,observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-16,https://biolit.fr/observations/observation-4ccc553b-f557-44ce-97e8-ec7a8f5f7c1f-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture16_1.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39306,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture1_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39308,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-2,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture2_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39310,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-3,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture3_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39312,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-4,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture4_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39314,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-5,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture5_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39316,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-6,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture6_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39318,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-7,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture7_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39320,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-8,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture8_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39322,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-9,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture9_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39324,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-10,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture10_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39326,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-11,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture11_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39328,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-12,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture12_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39330,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-13,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture13_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39332,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-14,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture14_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39334,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-15,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture15_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39336,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-16,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture16_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39338,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-17,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture17_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39340,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-18,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture18_0.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39342,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-19,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture19.PNG,,FALSE, +N1,59197,sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676,https://biolit.fr/sorties/sortie-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.33292900000,-61.328357000000,,"Plage de l'autre bord, Le Moule",39344,observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-20,https://biolit.fr/observations/observation-0a9b4cb6-bd03-4eb9-8c0a-ca5a1c917676-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture20.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39346,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture_0.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39348,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-2,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture1.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39350,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-3,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture2.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39352,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-4,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture3.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39354,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-5,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture4.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39356,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-6,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture5.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39358,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-7,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture6.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39360,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-8,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture7.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39362,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-9,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture8.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39364,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-10,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture9.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39366,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-11,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture10.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39368,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-12,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture11.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39370,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-13,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture12.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39372,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-14,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture13.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39374,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-15,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture14.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39376,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-16,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture15.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39378,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-17,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture16.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39380,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-18,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture17.PNG,,FALSE, +N1,59198,sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7,https://biolit.fr/sorties/sortie-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332899000000,-61.328319000000,,"Plage de l'autre bord, Le Moule",39382,observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-19,https://biolit.fr/observations/observation-9f1fe99e-36d6-4fef-9eb4-59c554f2d3a7-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capture18.PNG,,FALSE, +N1,59199,sortie-cf587e37-78d9-4548-954f-d30578db26d5,https://biolit.fr/sorties/sortie-cf587e37-78d9-4548-954f-d30578db26d5/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332957000000,-61.328380000000,,"Plage de l'autre bord, Le Moule",39384,observation-cf587e37-78d9-4548-954f-d30578db26d5,https://biolit.fr/observations/observation-cf587e37-78d9-4548-954f-d30578db26d5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03778-ConvertImage-scaled.jpg,,FALSE, +N1,59199,sortie-cf587e37-78d9-4548-954f-d30578db26d5,https://biolit.fr/sorties/sortie-cf587e37-78d9-4548-954f-d30578db26d5/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332957000000,-61.328380000000,,"Plage de l'autre bord, Le Moule",39386,observation-cf587e37-78d9-4548-954f-d30578db26d5-2,https://biolit.fr/observations/observation-cf587e37-78d9-4548-954f-d30578db26d5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03781-ConvertImage-scaled.jpg,,FALSE, +N1,59199,sortie-cf587e37-78d9-4548-954f-d30578db26d5,https://biolit.fr/sorties/sortie-cf587e37-78d9-4548-954f-d30578db26d5/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332957000000,-61.328380000000,,"Plage de l'autre bord, Le Moule",39388,observation-cf587e37-78d9-4548-954f-d30578db26d5-3,https://biolit.fr/observations/observation-cf587e37-78d9-4548-954f-d30578db26d5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03783-ConvertImage-scaled.jpg,,FALSE, +N1,59199,sortie-cf587e37-78d9-4548-954f-d30578db26d5,https://biolit.fr/sorties/sortie-cf587e37-78d9-4548-954f-d30578db26d5/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332957000000,-61.328380000000,,"Plage de l'autre bord, Le Moule",39390,observation-cf587e37-78d9-4548-954f-d30578db26d5-4,https://biolit.fr/observations/observation-cf587e37-78d9-4548-954f-d30578db26d5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03794-ConvertImage-scaled.jpg,,FALSE, +N1,59199,sortie-cf587e37-78d9-4548-954f-d30578db26d5,https://biolit.fr/sorties/sortie-cf587e37-78d9-4548-954f-d30578db26d5/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332957000000,-61.328380000000,,"Plage de l'autre bord, Le Moule",39392,observation-cf587e37-78d9-4548-954f-d30578db26d5-5,https://biolit.fr/observations/observation-cf587e37-78d9-4548-954f-d30578db26d5-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03802-ConvertImage (1)-scaled.jpg,,FALSE, +N1,59199,sortie-cf587e37-78d9-4548-954f-d30578db26d5,https://biolit.fr/sorties/sortie-cf587e37-78d9-4548-954f-d30578db26d5/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332957000000,-61.328380000000,,"Plage de l'autre bord, Le Moule",39394,observation-cf587e37-78d9-4548-954f-d30578db26d5-6,https://biolit.fr/observations/observation-cf587e37-78d9-4548-954f-d30578db26d5-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03809-ConvertImage-scaled.jpg,,FALSE, +N1,59199,sortie-cf587e37-78d9-4548-954f-d30578db26d5,https://biolit.fr/sorties/sortie-cf587e37-78d9-4548-954f-d30578db26d5/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332957000000,-61.328380000000,,"Plage de l'autre bord, Le Moule",39396,observation-cf587e37-78d9-4548-954f-d30578db26d5-7,https://biolit.fr/observations/observation-cf587e37-78d9-4548-954f-d30578db26d5-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03804-ConvertImage-scaled.jpg,,FALSE, +N1,59199,sortie-cf587e37-78d9-4548-954f-d30578db26d5,https://biolit.fr/sorties/sortie-cf587e37-78d9-4548-954f-d30578db26d5/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332957000000,-61.328380000000,,"Plage de l'autre bord, Le Moule",39398,observation-cf587e37-78d9-4548-954f-d30578db26d5-8,https://biolit.fr/observations/observation-cf587e37-78d9-4548-954f-d30578db26d5-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03791-ConvertImage-scaled.jpg,,FALSE, +N1,59199,sortie-cf587e37-78d9-4548-954f-d30578db26d5,https://biolit.fr/sorties/sortie-cf587e37-78d9-4548-954f-d30578db26d5/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332957000000,-61.328380000000,,"Plage de l'autre bord, Le Moule",39400,observation-cf587e37-78d9-4548-954f-d30578db26d5-9,https://biolit.fr/observations/observation-cf587e37-78d9-4548-954f-d30578db26d5-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03792-ConvertImage-scaled.jpg,,FALSE, +N1,59199,sortie-cf587e37-78d9-4548-954f-d30578db26d5,https://biolit.fr/sorties/sortie-cf587e37-78d9-4548-954f-d30578db26d5/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332957000000,-61.328380000000,,"Plage de l'autre bord, Le Moule",39402,observation-cf587e37-78d9-4548-954f-d30578db26d5-10,https://biolit.fr/observations/observation-cf587e37-78d9-4548-954f-d30578db26d5-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03810-ConvertImage-scaled.jpg,,FALSE, +N1,59199,sortie-cf587e37-78d9-4548-954f-d30578db26d5,https://biolit.fr/sorties/sortie-cf587e37-78d9-4548-954f-d30578db26d5/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332957000000,-61.328380000000,,"Plage de l'autre bord, Le Moule",39404,observation-cf587e37-78d9-4548-954f-d30578db26d5-11,https://biolit.fr/observations/observation-cf587e37-78d9-4548-954f-d30578db26d5-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03798-ConvertImage-scaled.jpg,,FALSE, +N1,59199,sortie-cf587e37-78d9-4548-954f-d30578db26d5,https://biolit.fr/sorties/sortie-cf587e37-78d9-4548-954f-d30578db26d5/,Ecole de la mer,,11/19/2019 0:00,9.0000000,11.0000000,16.332957000000,-61.328380000000,,"Plage de l'autre bord, Le Moule",39406,observation-cf587e37-78d9-4548-954f-d30578db26d5-12,https://biolit.fr/observations/observation-cf587e37-78d9-4548-954f-d30578db26d5-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03806-ConvertImage-scaled.jpg,,FALSE, +N1,59200,sortie-d703fc00-d3ca-4b56-a54b-b4fed8d322f5,https://biolit.fr/sorties/sortie-d703fc00-d3ca-4b56-a54b-b4fed8d322f5/,michelGavres,,01/01/2020,9.0000000,11.0000000,47.696415000000,-3.337929000000,,Grande plage GAVRES 56680,39408,observation-d703fc00-d3ca-4b56-a54b-b4fed8d322f5,https://biolit.fr/observations/observation-d703fc00-d3ca-4b56-a54b-b4fed8d322f5/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20200101_092957_resized_20200102_083807504.jpg,,TRUE, +N1,59201,sortie-5d8d37a3-cb43-4b54-b248-ce97db0f8fb8,https://biolit.fr/sorties/sortie-5d8d37a3-cb43-4b54-b248-ce97db0f8fb8/,Phil,,11/16/2019 0:00,11.0:55,12.0000000,48.060694000000,-4.671670000000,,Cléden-Cap-Sizun - Finistère,39410,observation-5d8d37a3-cb43-4b54-b248-ce97db0f8fb8,https://biolit.fr/observations/observation-5d8d37a3-cb43-4b54-b248-ce97db0f8fb8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191116_120615.jpg,,FALSE, +N1,59201,sortie-5d8d37a3-cb43-4b54-b248-ce97db0f8fb8,https://biolit.fr/sorties/sortie-5d8d37a3-cb43-4b54-b248-ce97db0f8fb8/,Phil,,11/16/2019 0:00,11.0:55,12.0000000,48.060694000000,-4.671670000000,,Cléden-Cap-Sizun - Finistère,39412,observation-5d8d37a3-cb43-4b54-b248-ce97db0f8fb8-2,https://biolit.fr/observations/observation-5d8d37a3-cb43-4b54-b248-ce97db0f8fb8-2/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20191116_115347.jpg,,TRUE, +N1,59201,sortie-5d8d37a3-cb43-4b54-b248-ce97db0f8fb8,https://biolit.fr/sorties/sortie-5d8d37a3-cb43-4b54-b248-ce97db0f8fb8/,Phil,,11/16/2019 0:00,11.0:55,12.0000000,48.060694000000,-4.671670000000,,Cléden-Cap-Sizun - Finistère,39414,observation-5d8d37a3-cb43-4b54-b248-ce97db0f8fb8-3,https://biolit.fr/observations/observation-5d8d37a3-cb43-4b54-b248-ce97db0f8fb8-3/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/20191116_115333.jpg,,TRUE, +N1,59202,sortie-9be682da-8e8b-4986-ab4f-646a9d932cb3,https://biolit.fr/sorties/sortie-9be682da-8e8b-4986-ab4f-646a9d932cb3/,Phil,,8/13/2019 0:00,19.0:35,19.0:45,47.796819000000,-4.32104700000,,Penmarc'h - Finistère,39416,observation-9be682da-8e8b-4986-ab4f-646a9d932cb3,https://biolit.fr/observations/observation-9be682da-8e8b-4986-ab4f-646a9d932cb3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120812.JPG,,FALSE, +N1,59202,sortie-9be682da-8e8b-4986-ab4f-646a9d932cb3,https://biolit.fr/sorties/sortie-9be682da-8e8b-4986-ab4f-646a9d932cb3/,Phil,,8/13/2019 0:00,19.0:35,19.0:45,47.796819000000,-4.32104700000,,Penmarc'h - Finistère,39418,observation-9be682da-8e8b-4986-ab4f-646a9d932cb3-2,https://biolit.fr/observations/observation-9be682da-8e8b-4986-ab4f-646a9d932cb3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120833.JPG,,FALSE, +N1,59203,sortie-d9e3113d-1747-407c-b826-f8c8e206b53a,https://biolit.fr/sorties/sortie-d9e3113d-1747-407c-b826-f8c8e206b53a/,Phil,,09/03/2019,15.0000000,15.0000000,47.893897000000,-3.966442000000,,La Forêt-Fouesnant - Finistère,39420,observation-d9e3113d-1747-407c-b826-f8c8e206b53a,https://biolit.fr/observations/observation-d9e3113d-1747-407c-b826-f8c8e206b53a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120871.JPG,,FALSE, +N1,59203,sortie-d9e3113d-1747-407c-b826-f8c8e206b53a,https://biolit.fr/sorties/sortie-d9e3113d-1747-407c-b826-f8c8e206b53a/,Phil,,09/03/2019,15.0000000,15.0000000,47.893897000000,-3.966442000000,,La Forêt-Fouesnant - Finistère,39422,observation-d9e3113d-1747-407c-b826-f8c8e206b53a-2,https://biolit.fr/observations/observation-d9e3113d-1747-407c-b826-f8c8e206b53a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120872.JPG,,FALSE, +N1,59203,sortie-d9e3113d-1747-407c-b826-f8c8e206b53a,https://biolit.fr/sorties/sortie-d9e3113d-1747-407c-b826-f8c8e206b53a/,Phil,,09/03/2019,15.0000000,15.0000000,47.893897000000,-3.966442000000,,La Forêt-Fouesnant - Finistère,39424,observation-d9e3113d-1747-407c-b826-f8c8e206b53a-3,https://biolit.fr/observations/observation-d9e3113d-1747-407c-b826-f8c8e206b53a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120876.JPG,,FALSE, +N1,59203,sortie-d9e3113d-1747-407c-b826-f8c8e206b53a,https://biolit.fr/sorties/sortie-d9e3113d-1747-407c-b826-f8c8e206b53a/,Phil,,09/03/2019,15.0000000,15.0000000,47.893897000000,-3.966442000000,,La Forêt-Fouesnant - Finistère,39426,observation-d9e3113d-1747-407c-b826-f8c8e206b53a-4,https://biolit.fr/observations/observation-d9e3113d-1747-407c-b826-f8c8e206b53a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120878.JPG,",""false""",, +N1,59203,sortie-d9e3113d-1747-407c-b826-f8c8e206b53a,https://biolit.fr/sorties/sortie-d9e3113d-1747-407c-b826-f8c8e206b53a/,Phil,,09/03/2019,15.0000000,15.0000000,47.893897000000,-3.966442000000,,La Forêt-Fouesnant - Finistère,39428,observation-d9e3113d-1747-407c-b826-f8c8e206b53a-5,https://biolit.fr/observations/observation-d9e3113d-1747-407c-b826-f8c8e206b53a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120880.JPG,,FALSE, +N1,59203,sortie-d9e3113d-1747-407c-b826-f8c8e206b53a,https://biolit.fr/sorties/sortie-d9e3113d-1747-407c-b826-f8c8e206b53a/,Phil,,09/03/2019,15.0000000,15.0000000,47.893897000000,-3.966442000000,,La Forêt-Fouesnant - Finistère,39430,observation-d9e3113d-1747-407c-b826-f8c8e206b53a-6,https://biolit.fr/observations/observation-d9e3113d-1747-407c-b826-f8c8e206b53a-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120885.JPG,,FALSE, +N1,59204,sortie-bbbd0e9c-0d0f-40a1-b073-65f9d16709cc,https://biolit.fr/sorties/sortie-bbbd0e9c-0d0f-40a1-b073-65f9d16709cc/,Louisclaire,,12/31/2019 0:00,9.0000000,11.0000000,45.851714000000,-1.252051000000,,Grand plage,39432,observation-bbbd0e9c-0d0f-40a1-b073-65f9d16709cc,https://biolit.fr/observations/observation-bbbd0e9c-0d0f-40a1-b073-65f9d16709cc/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/20191222_171739-scaled.jpg,,TRUE, +N1,59205,sortie-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2,https://biolit.fr/sorties/sortie-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2/,Phil,,12/29/2019 0:00,12.0000000,12.0000000,47.87090400000,-4.103428000000,,Bénodet - Finistère,39434,observation-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2,https://biolit.fr/observations/observation-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191229_122520.jpg,,TRUE, +N1,59205,sortie-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2,https://biolit.fr/sorties/sortie-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2/,Phil,,12/29/2019 0:00,12.0000000,12.0000000,47.87090400000,-4.103428000000,,Bénodet - Finistère,39436,observation-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2-2,https://biolit.fr/observations/observation-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20191229_122558.jpg,,TRUE, +N1,59205,sortie-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2,https://biolit.fr/sorties/sortie-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2/,Phil,,12/29/2019 0:00,12.0000000,12.0000000,47.87090400000,-4.103428000000,,Bénodet - Finistère,39438,observation-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2-3,https://biolit.fr/observations/observation-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20191229_122833.jpg,,TRUE, +N1,59205,sortie-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2,https://biolit.fr/sorties/sortie-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2/,Phil,,12/29/2019 0:00,12.0000000,12.0000000,47.87090400000,-4.103428000000,,Bénodet - Finistère,39440,observation-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2-4,https://biolit.fr/observations/observation-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2-4/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191229_122843.jpg,,TRUE, +N1,59205,sortie-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2,https://biolit.fr/sorties/sortie-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2/,Phil,,12/29/2019 0:00,12.0000000,12.0000000,47.87090400000,-4.103428000000,,Bénodet - Finistère,39442,observation-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2-5,https://biolit.fr/observations/observation-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2-5/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191229_123009.jpg,,TRUE, +N1,59205,sortie-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2,https://biolit.fr/sorties/sortie-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2/,Phil,,12/29/2019 0:00,12.0000000,12.0000000,47.87090400000,-4.103428000000,,Bénodet - Finistère,39444,observation-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2-6,https://biolit.fr/observations/observation-1ea6fe7e-05c2-482c-b6ca-6f69f81dfca2-6/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191229_123143.jpg,,TRUE, +N1,59206,sortie-35820b5f-3d24-46d3-80e9-83f1d8235296,https://biolit.fr/sorties/sortie-35820b5f-3d24-46d3-80e9-83f1d8235296/,Phil,,12/26/2019 0:00,11.0:35,11.0000000,47.884708000000,-3.987479000000,,Fouesnant - Finistère,39446,observation-35820b5f-3d24-46d3-80e9-83f1d8235296,https://biolit.fr/observations/observation-35820b5f-3d24-46d3-80e9-83f1d8235296/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20191226_113837.jpg,,TRUE, +N1,59206,sortie-35820b5f-3d24-46d3-80e9-83f1d8235296,https://biolit.fr/sorties/sortie-35820b5f-3d24-46d3-80e9-83f1d8235296/,Phil,,12/26/2019 0:00,11.0:35,11.0000000,47.884708000000,-3.987479000000,,Fouesnant - Finistère,39448,observation-35820b5f-3d24-46d3-80e9-83f1d8235296-2,https://biolit.fr/observations/observation-35820b5f-3d24-46d3-80e9-83f1d8235296-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20191226_113904.jpg,,TRUE, +N1,59206,sortie-35820b5f-3d24-46d3-80e9-83f1d8235296,https://biolit.fr/sorties/sortie-35820b5f-3d24-46d3-80e9-83f1d8235296/,Phil,,12/26/2019 0:00,11.0:35,11.0000000,47.884708000000,-3.987479000000,,Fouesnant - Finistère,39450,observation-35820b5f-3d24-46d3-80e9-83f1d8235296-3,https://biolit.fr/observations/observation-35820b5f-3d24-46d3-80e9-83f1d8235296-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20191226_113945.jpg,,TRUE, +N1,59206,sortie-35820b5f-3d24-46d3-80e9-83f1d8235296,https://biolit.fr/sorties/sortie-35820b5f-3d24-46d3-80e9-83f1d8235296/,Phil,,12/26/2019 0:00,11.0:35,11.0000000,47.884708000000,-3.987479000000,,Fouesnant - Finistère,39452,observation-35820b5f-3d24-46d3-80e9-83f1d8235296-4,https://biolit.fr/observations/observation-35820b5f-3d24-46d3-80e9-83f1d8235296-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191226_114022.jpg,,FALSE, +N1,59206,sortie-35820b5f-3d24-46d3-80e9-83f1d8235296,https://biolit.fr/sorties/sortie-35820b5f-3d24-46d3-80e9-83f1d8235296/,Phil,,12/26/2019 0:00,11.0:35,11.0000000,47.884708000000,-3.987479000000,,Fouesnant - Finistère,39454,observation-35820b5f-3d24-46d3-80e9-83f1d8235296-5,https://biolit.fr/observations/observation-35820b5f-3d24-46d3-80e9-83f1d8235296-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191226_114026.jpg,,FALSE, +N1,59206,sortie-35820b5f-3d24-46d3-80e9-83f1d8235296,https://biolit.fr/sorties/sortie-35820b5f-3d24-46d3-80e9-83f1d8235296/,Phil,,12/26/2019 0:00,11.0:35,11.0000000,47.884708000000,-3.987479000000,,Fouesnant - Finistère,39456,observation-35820b5f-3d24-46d3-80e9-83f1d8235296-6,https://biolit.fr/observations/observation-35820b5f-3d24-46d3-80e9-83f1d8235296-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191226_114034.jpg,,FALSE, +N1,59206,sortie-35820b5f-3d24-46d3-80e9-83f1d8235296,https://biolit.fr/sorties/sortie-35820b5f-3d24-46d3-80e9-83f1d8235296/,Phil,,12/26/2019 0:00,11.0:35,11.0000000,47.884708000000,-3.987479000000,,Fouesnant - Finistère,39458,observation-35820b5f-3d24-46d3-80e9-83f1d8235296-7,https://biolit.fr/observations/observation-35820b5f-3d24-46d3-80e9-83f1d8235296-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191226_114135.jpg,,FALSE, +N1,59207,sortie-ead29971-7b19-46db-9594-7a43ece13198,https://biolit.fr/sorties/sortie-ead29971-7b19-46db-9594-7a43ece13198/,Cécile Kergal,,12/27/2019 0:00,10.0000000,12.0000000,47.57343400000,-2.860972000000,,île aux moines,39460,observation-ead29971-7b19-46db-9594-7a43ece13198,https://biolit.fr/observations/observation-ead29971-7b19-46db-9594-7a43ece13198/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20191226_160157-scaled.jpg,,TRUE, +N1,59207,sortie-ead29971-7b19-46db-9594-7a43ece13198,https://biolit.fr/sorties/sortie-ead29971-7b19-46db-9594-7a43ece13198/,Cécile Kergal,,12/27/2019 0:00,10.0000000,12.0000000,47.57343400000,-2.860972000000,,île aux moines,39462,observation-ead29971-7b19-46db-9594-7a43ece13198-2,https://biolit.fr/observations/observation-ead29971-7b19-46db-9594-7a43ece13198-2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20191226_160148-scaled.jpg,,TRUE, +N1,59207,sortie-ead29971-7b19-46db-9594-7a43ece13198,https://biolit.fr/sorties/sortie-ead29971-7b19-46db-9594-7a43ece13198/,Cécile Kergal,,12/27/2019 0:00,10.0000000,12.0000000,47.57343400000,-2.860972000000,,île aux moines,39464,observation-ead29971-7b19-46db-9594-7a43ece13198-3,https://biolit.fr/observations/observation-ead29971-7b19-46db-9594-7a43ece13198-3/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20191226_155751-scaled.jpg,,TRUE, +N1,59207,sortie-ead29971-7b19-46db-9594-7a43ece13198,https://biolit.fr/sorties/sortie-ead29971-7b19-46db-9594-7a43ece13198/,Cécile Kergal,,12/27/2019 0:00,10.0000000,12.0000000,47.57343400000,-2.860972000000,,île aux moines,39466,observation-ead29971-7b19-46db-9594-7a43ece13198-4,https://biolit.fr/observations/observation-ead29971-7b19-46db-9594-7a43ece13198-4/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20191226_155731-scaled.jpg,,TRUE, +N1,59208,sortie-4ff05703-13f6-4527-bd1e-5490d84b10e4,https://biolit.fr/sorties/sortie-4ff05703-13f6-4527-bd1e-5490d84b10e4/,Phil,,5/19/2019 0:00,12.0000000,12.0:55,47.800429000000,-4.180072000000,,Loctudy - Finistère,39468,observation-4ff05703-13f6-4527-bd1e-5490d84b10e4,https://biolit.fr/observations/observation-4ff05703-13f6-4527-bd1e-5490d84b10e4/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20190519_123802.jpg,,TRUE, +N1,59208,sortie-4ff05703-13f6-4527-bd1e-5490d84b10e4,https://biolit.fr/sorties/sortie-4ff05703-13f6-4527-bd1e-5490d84b10e4/,Phil,,5/19/2019 0:00,12.0000000,12.0:55,47.800429000000,-4.180072000000,,Loctudy - Finistère,39470,observation-4ff05703-13f6-4527-bd1e-5490d84b10e4-2,https://biolit.fr/observations/observation-4ff05703-13f6-4527-bd1e-5490d84b10e4-2/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20190519_123808.jpg,,TRUE, +N1,59208,sortie-4ff05703-13f6-4527-bd1e-5490d84b10e4,https://biolit.fr/sorties/sortie-4ff05703-13f6-4527-bd1e-5490d84b10e4/,Phil,,5/19/2019 0:00,12.0000000,12.0:55,47.800429000000,-4.180072000000,,Loctudy - Finistère,39472,observation-4ff05703-13f6-4527-bd1e-5490d84b10e4-3,https://biolit.fr/observations/observation-4ff05703-13f6-4527-bd1e-5490d84b10e4-3/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/20190519_125706.jpg,,TRUE, +N1,59208,sortie-4ff05703-13f6-4527-bd1e-5490d84b10e4,https://biolit.fr/sorties/sortie-4ff05703-13f6-4527-bd1e-5490d84b10e4/,Phil,,5/19/2019 0:00,12.0000000,12.0:55,47.800429000000,-4.180072000000,,Loctudy - Finistère,39474,observation-4ff05703-13f6-4527-bd1e-5490d84b10e4-4,https://biolit.fr/observations/observation-4ff05703-13f6-4527-bd1e-5490d84b10e4-4/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/20190519_125709.jpg,,TRUE, +N1,59208,sortie-4ff05703-13f6-4527-bd1e-5490d84b10e4,https://biolit.fr/sorties/sortie-4ff05703-13f6-4527-bd1e-5490d84b10e4/,Phil,,5/19/2019 0:00,12.0000000,12.0:55,47.800429000000,-4.180072000000,,Loctudy - Finistère,39476,observation-4ff05703-13f6-4527-bd1e-5490d84b10e4-5,https://biolit.fr/observations/observation-4ff05703-13f6-4527-bd1e-5490d84b10e4-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190519_125712.jpg,,FALSE, +N1,59209,sortie-f29ffc6a-b8db-49f9-8fa4-61e88e754e44,https://biolit.fr/sorties/sortie-f29ffc6a-b8db-49f9-8fa4-61e88e754e44/,Louisclaire,,12/24/2019 0:00,17.0000000,18.0000000,45.854016000000,-1.2524800000,,Grand plage,39478,observation-f29ffc6a-b8db-49f9-8fa4-61e88e754e44,https://biolit.fr/observations/observation-f29ffc6a-b8db-49f9-8fa4-61e88e754e44/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20191224_171105-scaled.jpg,,TRUE, +N1,59210,sortie-f9b8484b-0909-4a4a-89d6-8fb13034aaca,https://biolit.fr/sorties/sortie-f9b8484b-0909-4a4a-89d6-8fb13034aaca/,Elodie_LS,,11/28/2019 0:00,18.0000000,19.0000000,47.273463000000,-2.48129600000,,Plage Saint-Michel,39480,observation-f9b8484b-0909-4a4a-89d6-8fb13034aaca,https://biolit.fr/observations/observation-f9b8484b-0909-4a4a-89d6-8fb13034aaca/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20191224_114728-scaled.jpg,,TRUE, +N1,59210,sortie-f9b8484b-0909-4a4a-89d6-8fb13034aaca,https://biolit.fr/sorties/sortie-f9b8484b-0909-4a4a-89d6-8fb13034aaca/,Elodie_LS,,11/28/2019 0:00,18.0000000,19.0000000,47.273463000000,-2.48129600000,,Plage Saint-Michel,39482,observation-f9b8484b-0909-4a4a-89d6-8fb13034aaca-2,https://biolit.fr/observations/observation-f9b8484b-0909-4a4a-89d6-8fb13034aaca-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20191224_114708-scaled.jpg,,TRUE, +N1,59210,sortie-f9b8484b-0909-4a4a-89d6-8fb13034aaca,https://biolit.fr/sorties/sortie-f9b8484b-0909-4a4a-89d6-8fb13034aaca/,Elodie_LS,,11/28/2019 0:00,18.0000000,19.0000000,47.273463000000,-2.48129600000,,Plage Saint-Michel,39484,observation-f9b8484b-0909-4a4a-89d6-8fb13034aaca-3,https://biolit.fr/observations/observation-f9b8484b-0909-4a4a-89d6-8fb13034aaca-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20191224_114719-scaled.jpg,,TRUE, +N1,59211,sortie-0e72161a-d68a-41f9-9688-403aa699f5be,https://biolit.fr/sorties/sortie-0e72161a-d68a-41f9-9688-403aa699f5be/,Roman,,12/22/2019 0:00,15.0000000,17.0000000,47.687667000000,-3.35921000000,,Gâvres,39486,observation-0e72161a-d68a-41f9-9688-403aa699f5be,https://biolit.fr/observations/observation-0e72161a-d68a-41f9-9688-403aa699f5be/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/physalie.jpeg,,TRUE, +N1,59211,sortie-0e72161a-d68a-41f9-9688-403aa699f5be,https://biolit.fr/sorties/sortie-0e72161a-d68a-41f9-9688-403aa699f5be/,Roman,,12/22/2019 0:00,15.0000000,17.0000000,47.687667000000,-3.35921000000,,Gâvres,39487,observation-0e72161a-d68a-41f9-9688-403aa699f5be-2,https://biolit.fr/observations/observation-0e72161a-d68a-41f9-9688-403aa699f5be-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/vélelle1.PNG,,TRUE, +N1,59212,sortie-2f86cd49-2039-4051-9416-28fdf42820a0,https://biolit.fr/sorties/sortie-2f86cd49-2039-4051-9416-28fdf42820a0/,Phil,,11/16/2019 0:00,11.0:55,12.000005,48.06061800000,-4.671648000000,,Cléden-Cap-Sizun - Finistère,39489,observation-2f86cd49-2039-4051-9416-28fdf42820a0,https://biolit.fr/observations/observation-2f86cd49-2039-4051-9416-28fdf42820a0/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191116_120049.jpg,,TRUE, +N1,59212,sortie-2f86cd49-2039-4051-9416-28fdf42820a0,https://biolit.fr/sorties/sortie-2f86cd49-2039-4051-9416-28fdf42820a0/,Phil,,11/16/2019 0:00,11.0:55,12.000005,48.06061800000,-4.671648000000,,Cléden-Cap-Sizun - Finistère,39491,observation-2f86cd49-2039-4051-9416-28fdf42820a0-2,https://biolit.fr/observations/observation-2f86cd49-2039-4051-9416-28fdf42820a0-2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191116_120011.jpg,,TRUE, +N1,59212,sortie-2f86cd49-2039-4051-9416-28fdf42820a0,https://biolit.fr/sorties/sortie-2f86cd49-2039-4051-9416-28fdf42820a0/,Phil,,11/16/2019 0:00,11.0:55,12.000005,48.06061800000,-4.671648000000,,Cléden-Cap-Sizun - Finistère,39493,observation-2f86cd49-2039-4051-9416-28fdf42820a0-3,https://biolit.fr/observations/observation-2f86cd49-2039-4051-9416-28fdf42820a0-3/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191116_115621.jpg,,TRUE, +N1,59212,sortie-2f86cd49-2039-4051-9416-28fdf42820a0,https://biolit.fr/sorties/sortie-2f86cd49-2039-4051-9416-28fdf42820a0/,Phil,,11/16/2019 0:00,11.0:55,12.000005,48.06061800000,-4.671648000000,,Cléden-Cap-Sizun - Finistère,39495,observation-2f86cd49-2039-4051-9416-28fdf42820a0-4,https://biolit.fr/observations/observation-2f86cd49-2039-4051-9416-28fdf42820a0-4/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191116_115635.jpg,,TRUE, +N1,59212,sortie-2f86cd49-2039-4051-9416-28fdf42820a0,https://biolit.fr/sorties/sortie-2f86cd49-2039-4051-9416-28fdf42820a0/,Phil,,11/16/2019 0:00,11.0:55,12.000005,48.06061800000,-4.671648000000,,Cléden-Cap-Sizun - Finistère,39497,observation-2f86cd49-2039-4051-9416-28fdf42820a0-5,https://biolit.fr/observations/observation-2f86cd49-2039-4051-9416-28fdf42820a0-5/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191116_115927.jpg,,TRUE, +N1,59212,sortie-2f86cd49-2039-4051-9416-28fdf42820a0,https://biolit.fr/sorties/sortie-2f86cd49-2039-4051-9416-28fdf42820a0/,Phil,,11/16/2019 0:00,11.0:55,12.000005,48.06061800000,-4.671648000000,,Cléden-Cap-Sizun - Finistère,39499,observation-2f86cd49-2039-4051-9416-28fdf42820a0-6,https://biolit.fr/observations/observation-2f86cd49-2039-4051-9416-28fdf42820a0-6/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191116_115949.jpg,,TRUE, +N1,59212,sortie-2f86cd49-2039-4051-9416-28fdf42820a0,https://biolit.fr/sorties/sortie-2f86cd49-2039-4051-9416-28fdf42820a0/,Phil,,11/16/2019 0:00,11.0:55,12.000005,48.06061800000,-4.671648000000,,Cléden-Cap-Sizun - Finistère,39501,observation-2f86cd49-2039-4051-9416-28fdf42820a0-7,https://biolit.fr/observations/observation-2f86cd49-2039-4051-9416-28fdf42820a0-7/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191116_120032.jpg,,TRUE, +N1,59212,sortie-2f86cd49-2039-4051-9416-28fdf42820a0,https://biolit.fr/sorties/sortie-2f86cd49-2039-4051-9416-28fdf42820a0/,Phil,,11/16/2019 0:00,11.0:55,12.000005,48.06061800000,-4.671648000000,,Cléden-Cap-Sizun - Finistère,39503,observation-2f86cd49-2039-4051-9416-28fdf42820a0-8,https://biolit.fr/observations/observation-2f86cd49-2039-4051-9416-28fdf42820a0-8/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191116_120339.jpg,,TRUE, +N1,59213,sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58,https://biolit.fr/sorties/sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58/,Roman,,12/19/2019 0:00,15.0000000,17.0000000,47.622235000000,-3.194206000000,,Erdeven,39505,observation-791b09cf-42fb-48a3-bfd9-a889d4846c58,https://biolit.fr/observations/observation-791b09cf-42fb-48a3-bfd9-a889d4846c58/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina.PNG,,TRUE, +N1,59213,sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58,https://biolit.fr/sorties/sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58/,Roman,,12/19/2019 0:00,15.0000000,17.0000000,47.622235000000,-3.194206000000,,Erdeven,39506,observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-2,https://biolit.fr/observations/observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-2/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Cancer pagurus1.PNG,,TRUE, +N1,59213,sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58,https://biolit.fr/sorties/sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58/,Roman,,12/19/2019 0:00,15.0000000,17.0000000,47.622235000000,-3.194206000000,,Erdeven,39508,observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-3,https://biolit.fr/observations/observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-3/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/chthmalus stellatus3.PNG,,TRUE, +N1,59213,sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58,https://biolit.fr/sorties/sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58/,Roman,,12/19/2019 0:00,15.0000000,17.0000000,47.622235000000,-3.194206000000,,Erdeven,39510,observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-4,https://biolit.fr/observations/observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Diodora graeca1.PNG,,FALSE, +N1,59213,sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58,https://biolit.fr/sorties/sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58/,Roman,,12/19/2019 0:00,15.0000000,17.0000000,47.622235000000,-3.194206000000,,Erdeven,39512,observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-5,https://biolit.fr/observations/observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Donax vittatus1.PNG,,FALSE, +N1,59213,sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58,https://biolit.fr/sorties/sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58/,Roman,,12/19/2019 0:00,15.0000000,17.0000000,47.622235000000,-3.194206000000,,Erdeven,39514,observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-6,https://biolit.fr/observations/observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-6/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/lepas anatifera.PNG,,TRUE, +N1,59213,sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58,https://biolit.fr/sorties/sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58/,Roman,,12/19/2019 0:00,15.0000000,17.0000000,47.622235000000,-3.194206000000,,Erdeven,39515,observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-7,https://biolit.fr/observations/observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-7/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/moulière.PNG,,TRUE, +N1,59213,sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58,https://biolit.fr/sorties/sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58/,Roman,,12/19/2019 0:00,15.0000000,17.0000000,47.622235000000,-3.194206000000,,Erdeven,39517,observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-8,https://biolit.fr/observations/observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-8/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/nucella lapillus4.PNG,,TRUE, +N1,59213,sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58,https://biolit.fr/sorties/sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58/,Roman,,12/19/2019 0:00,15.0000000,17.0000000,47.622235000000,-3.194206000000,,Erdeven,39519,observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-9,https://biolit.fr/observations/observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-9/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/Tournepierre à collier.PNG,,TRUE, +N1,59213,sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58,https://biolit.fr/sorties/sortie-791b09cf-42fb-48a3-bfd9-a889d4846c58/,Roman,,12/19/2019 0:00,15.0000000,17.0000000,47.622235000000,-3.194206000000,,Erdeven,39520,observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-10,https://biolit.fr/observations/observation-791b09cf-42fb-48a3-bfd9-a889d4846c58-10/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Velella velella1.PNG,,TRUE, +N1,59214,sortie-d88c3886-cedb-4b90-b3bd-ecfd18103d78,https://biolit.fr/sorties/sortie-d88c3886-cedb-4b90-b3bd-ecfd18103d78/,Phil,,5/19/2019 0:00,12.0000000,12.0000000,47.800119000000,-4.180600000000,,Loctudy - Finistère,39522,observation-d88c3886-cedb-4b90-b3bd-ecfd18103d78,https://biolit.fr/observations/observation-d88c3886-cedb-4b90-b3bd-ecfd18103d78/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/20190519_123040.jpg,,TRUE, +N1,59214,sortie-d88c3886-cedb-4b90-b3bd-ecfd18103d78,https://biolit.fr/sorties/sortie-d88c3886-cedb-4b90-b3bd-ecfd18103d78/,Phil,,5/19/2019 0:00,12.0000000,12.0000000,47.800119000000,-4.180600000000,,Loctudy - Finistère,39524,observation-d88c3886-cedb-4b90-b3bd-ecfd18103d78-2,https://biolit.fr/observations/observation-d88c3886-cedb-4b90-b3bd-ecfd18103d78-2/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/20190519_123034.jpg,,TRUE, +N1,59214,sortie-d88c3886-cedb-4b90-b3bd-ecfd18103d78,https://biolit.fr/sorties/sortie-d88c3886-cedb-4b90-b3bd-ecfd18103d78/,Phil,,5/19/2019 0:00,12.0000000,12.0000000,47.800119000000,-4.180600000000,,Loctudy - Finistère,39526,observation-d88c3886-cedb-4b90-b3bd-ecfd18103d78-3,https://biolit.fr/observations/observation-d88c3886-cedb-4b90-b3bd-ecfd18103d78-3/,Aplidium elegans,Fraise de mer,,https://biolit.fr/wp-content/uploads/2023/07/20190519_122246.jpg,,TRUE, +N1,59214,sortie-d88c3886-cedb-4b90-b3bd-ecfd18103d78,https://biolit.fr/sorties/sortie-d88c3886-cedb-4b90-b3bd-ecfd18103d78/,Phil,,5/19/2019 0:00,12.0000000,12.0000000,47.800119000000,-4.180600000000,,Loctudy - Finistère,39528,observation-d88c3886-cedb-4b90-b3bd-ecfd18103d78-4,https://biolit.fr/observations/observation-d88c3886-cedb-4b90-b3bd-ecfd18103d78-4/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/20190519_120925.jpg,,TRUE, +N1,59214,sortie-d88c3886-cedb-4b90-b3bd-ecfd18103d78,https://biolit.fr/sorties/sortie-d88c3886-cedb-4b90-b3bd-ecfd18103d78/,Phil,,5/19/2019 0:00,12.0000000,12.0000000,47.800119000000,-4.180600000000,,Loctudy - Finistère,39530,observation-d88c3886-cedb-4b90-b3bd-ecfd18103d78-5,https://biolit.fr/observations/observation-d88c3886-cedb-4b90-b3bd-ecfd18103d78-5/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/20190519_120923.jpg,,TRUE, +N1,59215,sortie-b4db0f9e-1a39-4b16-864b-70e0bbee64ed,https://biolit.fr/sorties/sortie-b4db0f9e-1a39-4b16-864b-70e0bbee64ed/,Elodie_LS,,11/28/2019 0:00,18.0000000,19.0000000,47.273443000000,-2.481286000000,,Plage Saint-Michel,39532,observation-b4db0f9e-1a39-4b16-864b-70e0bbee64ed,https://biolit.fr/observations/observation-b4db0f9e-1a39-4b16-864b-70e0bbee64ed/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/2023/07/P1002393-scaled.jpg,,TRUE, +N1,59216,sortie-b2793478-3e07-4b53-8d16-7c5b4661ff97,https://biolit.fr/sorties/sortie-b2793478-3e07-4b53-8d16-7c5b4661ff97/,Phil,,12/14/2019 0:00,12.0000000,12.0:15,47.794841000000,-4.215769000000,,Lesconil - Finistère,39534,observation-b2793478-3e07-4b53-8d16-7c5b4661ff97,https://biolit.fr/observations/observation-b2793478-3e07-4b53-8d16-7c5b4661ff97/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191214_121255.jpg,,FALSE, +N1,59216,sortie-b2793478-3e07-4b53-8d16-7c5b4661ff97,https://biolit.fr/sorties/sortie-b2793478-3e07-4b53-8d16-7c5b4661ff97/,Phil,,12/14/2019 0:00,12.0000000,12.0:15,47.794841000000,-4.215769000000,,Lesconil - Finistère,39536,observation-b2793478-3e07-4b53-8d16-7c5b4661ff97-2,https://biolit.fr/observations/observation-b2793478-3e07-4b53-8d16-7c5b4661ff97-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191214_121259.jpg,,FALSE, +N1,59216,sortie-b2793478-3e07-4b53-8d16-7c5b4661ff97,https://biolit.fr/sorties/sortie-b2793478-3e07-4b53-8d16-7c5b4661ff97/,Phil,,12/14/2019 0:00,12.0000000,12.0:15,47.794841000000,-4.215769000000,,Lesconil - Finistère,39538,observation-b2793478-3e07-4b53-8d16-7c5b4661ff97-3,https://biolit.fr/observations/observation-b2793478-3e07-4b53-8d16-7c5b4661ff97-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191214_121314.jpg,,FALSE, +N1,59216,sortie-b2793478-3e07-4b53-8d16-7c5b4661ff97,https://biolit.fr/sorties/sortie-b2793478-3e07-4b53-8d16-7c5b4661ff97/,Phil,,12/14/2019 0:00,12.0000000,12.0:15,47.794841000000,-4.215769000000,,Lesconil - Finistère,39540,observation-b2793478-3e07-4b53-8d16-7c5b4661ff97-4,https://biolit.fr/observations/observation-b2793478-3e07-4b53-8d16-7c5b4661ff97-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191214_121404.jpg,,FALSE, +N1,59216,sortie-b2793478-3e07-4b53-8d16-7c5b4661ff97,https://biolit.fr/sorties/sortie-b2793478-3e07-4b53-8d16-7c5b4661ff97/,Phil,,12/14/2019 0:00,12.0000000,12.0:15,47.794841000000,-4.215769000000,,Lesconil - Finistère,39542,observation-b2793478-3e07-4b53-8d16-7c5b4661ff97-5,https://biolit.fr/observations/observation-b2793478-3e07-4b53-8d16-7c5b4661ff97-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191214_121450.jpg,,FALSE, +N1,59217,sortie-7815b9b6-8399-4044-be3f-45c18d3280b6,https://biolit.fr/sorties/sortie-7815b9b6-8399-4044-be3f-45c18d3280b6/,Roman,,12/13/2019 0:00,14.0:15,15.0000000,47.696407000000,-3.3542910000,,Gâvres,39544,observation-7815b9b6-8399-4044-be3f-45c18d3280b6,https://biolit.fr/observations/observation-7815b9b6-8399-4044-be3f-45c18d3280b6/,Antalis vulgaris,Dentale,,https://biolit.fr/wp-content/uploads/2023/07/Antalis vulgaris1.PNG,,TRUE, +N1,59217,sortie-7815b9b6-8399-4044-be3f-45c18d3280b6,https://biolit.fr/sorties/sortie-7815b9b6-8399-4044-be3f-45c18d3280b6/,Roman,,12/13/2019 0:00,14.0:15,15.0000000,47.696407000000,-3.3542910000,,Gâvres,39546,observation-7815b9b6-8399-4044-be3f-45c18d3280b6-2,https://biolit.fr/observations/observation-7815b9b6-8399-4044-be3f-45c18d3280b6-2/,Antalis vulgaris,Dentale,,https://biolit.fr/wp-content/uploads/2023/07/Antalis novemcostata.PNG,,TRUE, +N1,59217,sortie-7815b9b6-8399-4044-be3f-45c18d3280b6,https://biolit.fr/sorties/sortie-7815b9b6-8399-4044-be3f-45c18d3280b6/,Roman,,12/13/2019 0:00,14.0:15,15.0000000,47.696407000000,-3.3542910000,,Gâvres,39548,observation-7815b9b6-8399-4044-be3f-45c18d3280b6-3,https://biolit.fr/observations/observation-7815b9b6-8399-4044-be3f-45c18d3280b6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/arcopagia crassa1.PNG,,FALSE, +N1,59217,sortie-7815b9b6-8399-4044-be3f-45c18d3280b6,https://biolit.fr/sorties/sortie-7815b9b6-8399-4044-be3f-45c18d3280b6/,Roman,,12/13/2019 0:00,14.0:15,15.0000000,47.696407000000,-3.3542910000,,Gâvres,39550,observation-7815b9b6-8399-4044-be3f-45c18d3280b6-4,https://biolit.fr/observations/observation-7815b9b6-8399-4044-be3f-45c18d3280b6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capsella variegata1.PNG,,FALSE, +N1,59217,sortie-7815b9b6-8399-4044-be3f-45c18d3280b6,https://biolit.fr/sorties/sortie-7815b9b6-8399-4044-be3f-45c18d3280b6/,Roman,,12/13/2019 0:00,14.0:15,15.0000000,47.696407000000,-3.3542910000,,Gâvres,39552,observation-7815b9b6-8399-4044-be3f-45c18d3280b6-5,https://biolit.fr/observations/observation-7815b9b6-8399-4044-be3f-45c18d3280b6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/cerastoderma edule1.PNG,,FALSE, +N1,59217,sortie-7815b9b6-8399-4044-be3f-45c18d3280b6,https://biolit.fr/sorties/sortie-7815b9b6-8399-4044-be3f-45c18d3280b6/,Roman,,12/13/2019 0:00,14.0:15,15.0000000,47.696407000000,-3.3542910000,,Gâvres,39554,observation-7815b9b6-8399-4044-be3f-45c18d3280b6-6,https://biolit.fr/observations/observation-7815b9b6-8399-4044-be3f-45c18d3280b6-6/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/chthmalus stellatus2.PNG,,TRUE, +N1,59217,sortie-7815b9b6-8399-4044-be3f-45c18d3280b6,https://biolit.fr/sorties/sortie-7815b9b6-8399-4044-be3f-45c18d3280b6/,Roman,,12/13/2019 0:00,14.0:15,15.0000000,47.696407000000,-3.3542910000,,Gâvres,39556,observation-7815b9b6-8399-4044-be3f-45c18d3280b6-7,https://biolit.fr/observations/observation-7815b9b6-8399-4044-be3f-45c18d3280b6-7/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/littorina littorea1.PNG,,TRUE, +N1,59217,sortie-7815b9b6-8399-4044-be3f-45c18d3280b6,https://biolit.fr/sorties/sortie-7815b9b6-8399-4044-be3f-45c18d3280b6/,Roman,,12/13/2019 0:00,14.0:15,15.0000000,47.696407000000,-3.3542910000,,Gâvres,39558,observation-7815b9b6-8399-4044-be3f-45c18d3280b6-8,https://biolit.fr/observations/observation-7815b9b6-8399-4044-be3f-45c18d3280b6-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes philippinarum.PNG,,FALSE, +N1,59217,sortie-7815b9b6-8399-4044-be3f-45c18d3280b6,https://biolit.fr/sorties/sortie-7815b9b6-8399-4044-be3f-45c18d3280b6/,Roman,,12/13/2019 0:00,14.0:15,15.0000000,47.696407000000,-3.3542910000,,Gâvres,39559,observation-7815b9b6-8399-4044-be3f-45c18d3280b6-9,https://biolit.fr/observations/observation-7815b9b6-8399-4044-be3f-45c18d3280b6-9/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/velella velella.PNG,,TRUE, +N1,59218,sortie-999322e8-8e29-4b98-a03e-52a45fe2dd50,https://biolit.fr/sorties/sortie-999322e8-8e29-4b98-a03e-52a45fe2dd50/,Phil,,05/05/2019,13.0:55,14.0000000,47.800039000000,-4.180675000000,,Loctudy - Finistère,39560,observation-999322e8-8e29-4b98-a03e-52a45fe2dd50,https://biolit.fr/observations/observation-999322e8-8e29-4b98-a03e-52a45fe2dd50/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20190505_135833.jpg,,TRUE, +N1,59218,sortie-999322e8-8e29-4b98-a03e-52a45fe2dd50,https://biolit.fr/sorties/sortie-999322e8-8e29-4b98-a03e-52a45fe2dd50/,Phil,,05/05/2019,13.0:55,14.0000000,47.800039000000,-4.180675000000,,Loctudy - Finistère,39562,observation-999322e8-8e29-4b98-a03e-52a45fe2dd50-2,https://biolit.fr/observations/observation-999322e8-8e29-4b98-a03e-52a45fe2dd50-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_135935.jpg,,FALSE, +N1,59218,sortie-999322e8-8e29-4b98-a03e-52a45fe2dd50,https://biolit.fr/sorties/sortie-999322e8-8e29-4b98-a03e-52a45fe2dd50/,Phil,,05/05/2019,13.0:55,14.0000000,47.800039000000,-4.180675000000,,Loctudy - Finistère,39564,observation-999322e8-8e29-4b98-a03e-52a45fe2dd50-3,https://biolit.fr/observations/observation-999322e8-8e29-4b98-a03e-52a45fe2dd50-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_135942.jpg,,FALSE, +N1,59218,sortie-999322e8-8e29-4b98-a03e-52a45fe2dd50,https://biolit.fr/sorties/sortie-999322e8-8e29-4b98-a03e-52a45fe2dd50/,Phil,,05/05/2019,13.0:55,14.0000000,47.800039000000,-4.180675000000,,Loctudy - Finistère,39566,observation-999322e8-8e29-4b98-a03e-52a45fe2dd50-4,https://biolit.fr/observations/observation-999322e8-8e29-4b98-a03e-52a45fe2dd50-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_135952.jpg,,FALSE, +N1,59218,sortie-999322e8-8e29-4b98-a03e-52a45fe2dd50,https://biolit.fr/sorties/sortie-999322e8-8e29-4b98-a03e-52a45fe2dd50/,Phil,,05/05/2019,13.0:55,14.0000000,47.800039000000,-4.180675000000,,Loctudy - Finistère,39568,observation-999322e8-8e29-4b98-a03e-52a45fe2dd50-5,https://biolit.fr/observations/observation-999322e8-8e29-4b98-a03e-52a45fe2dd50-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_140005.jpg,,FALSE, +N1,59218,sortie-999322e8-8e29-4b98-a03e-52a45fe2dd50,https://biolit.fr/sorties/sortie-999322e8-8e29-4b98-a03e-52a45fe2dd50/,Phil,,05/05/2019,13.0:55,14.0000000,47.800039000000,-4.180675000000,,Loctudy - Finistère,39570,observation-999322e8-8e29-4b98-a03e-52a45fe2dd50-6,https://biolit.fr/observations/observation-999322e8-8e29-4b98-a03e-52a45fe2dd50-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_141234.jpg,,FALSE, +N1,59219,sortie-3cda6d3c-ed17-4cba-b4c6-16e706379728,https://biolit.fr/sorties/sortie-3cda6d3c-ed17-4cba-b4c6-16e706379728/,Phil,,05/05/2018,17.0000000,17.0:15,48.576019000000,-4.62590100000,,Saint-Pabu - Finistère,39572,observation-3cda6d3c-ed17-4cba-b4c6-16e706379728,https://biolit.fr/observations/observation-3cda6d3c-ed17-4cba-b4c6-16e706379728/,Littorina compressa,Littorine à lignes noires,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110216.JPG,,TRUE, +N1,59219,sortie-3cda6d3c-ed17-4cba-b4c6-16e706379728,https://biolit.fr/sorties/sortie-3cda6d3c-ed17-4cba-b4c6-16e706379728/,Phil,,05/05/2018,17.0000000,17.0:15,48.576019000000,-4.62590100000,,Saint-Pabu - Finistère,39574,observation-3cda6d3c-ed17-4cba-b4c6-16e706379728-2,https://biolit.fr/observations/observation-3cda6d3c-ed17-4cba-b4c6-16e706379728-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110215.JPG,,FALSE, +N1,59219,sortie-3cda6d3c-ed17-4cba-b4c6-16e706379728,https://biolit.fr/sorties/sortie-3cda6d3c-ed17-4cba-b4c6-16e706379728/,Phil,,05/05/2018,17.0000000,17.0:15,48.576019000000,-4.62590100000,,Saint-Pabu - Finistère,39576,observation-3cda6d3c-ed17-4cba-b4c6-16e706379728-3,https://biolit.fr/observations/observation-3cda6d3c-ed17-4cba-b4c6-16e706379728-3/,Littorina compressa,Littorine à lignes noires,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110217.JPG,,TRUE, +N1,59220,sortie-84fd3505-4651-43e0-a8c7-266de9167153,https://biolit.fr/sorties/sortie-84fd3505-4651-43e0-a8c7-266de9167153/,LABELBLEU,,11/19/2019 0:00,15.0000000,16.0000000,42.581605000000,3.045427000000,LABELBLEU,Réserve naturelle du Mas Larrieu,39578,observation-84fd3505-4651-43e0-a8c7-266de9167153,https://biolit.fr/observations/observation-84fd3505-4651-43e0-a8c7-266de9167153/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_0413-scaled.jpg,,FALSE, +N1,59220,sortie-84fd3505-4651-43e0-a8c7-266de9167153,https://biolit.fr/sorties/sortie-84fd3505-4651-43e0-a8c7-266de9167153/,LABELBLEU,,11/19/2019 0:00,15.0000000,16.0000000,42.581605000000,3.045427000000,LABELBLEU,Réserve naturelle du Mas Larrieu,39580,observation-84fd3505-4651-43e0-a8c7-266de9167153-2,https://biolit.fr/observations/observation-84fd3505-4651-43e0-a8c7-266de9167153-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_0412-scaled.jpg,,FALSE, +N1,59220,sortie-84fd3505-4651-43e0-a8c7-266de9167153,https://biolit.fr/sorties/sortie-84fd3505-4651-43e0-a8c7-266de9167153/,LABELBLEU,,11/19/2019 0:00,15.0000000,16.0000000,42.581605000000,3.045427000000,LABELBLEU,Réserve naturelle du Mas Larrieu,39582,observation-84fd3505-4651-43e0-a8c7-266de9167153-3,https://biolit.fr/observations/observation-84fd3505-4651-43e0-a8c7-266de9167153-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_0411-scaled.jpg,,FALSE, +N1,59220,sortie-84fd3505-4651-43e0-a8c7-266de9167153,https://biolit.fr/sorties/sortie-84fd3505-4651-43e0-a8c7-266de9167153/,LABELBLEU,,11/19/2019 0:00,15.0000000,16.0000000,42.581605000000,3.045427000000,LABELBLEU,Réserve naturelle du Mas Larrieu,39584,observation-84fd3505-4651-43e0-a8c7-266de9167153-4,https://biolit.fr/observations/observation-84fd3505-4651-43e0-a8c7-266de9167153-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_0410-scaled.jpg,,FALSE, +N1,59220,sortie-84fd3505-4651-43e0-a8c7-266de9167153,https://biolit.fr/sorties/sortie-84fd3505-4651-43e0-a8c7-266de9167153/,LABELBLEU,,11/19/2019 0:00,15.0000000,16.0000000,42.581605000000,3.045427000000,LABELBLEU,Réserve naturelle du Mas Larrieu,39586,observation-84fd3505-4651-43e0-a8c7-266de9167153-5,https://biolit.fr/observations/observation-84fd3505-4651-43e0-a8c7-266de9167153-5/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/100_0408-scaled.jpg,,TRUE, +N1,59220,sortie-84fd3505-4651-43e0-a8c7-266de9167153,https://biolit.fr/sorties/sortie-84fd3505-4651-43e0-a8c7-266de9167153/,LABELBLEU,,11/19/2019 0:00,15.0000000,16.0000000,42.581605000000,3.045427000000,LABELBLEU,Réserve naturelle du Mas Larrieu,39588,observation-84fd3505-4651-43e0-a8c7-266de9167153-6,https://biolit.fr/observations/observation-84fd3505-4651-43e0-a8c7-266de9167153-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_0407-scaled.jpg,,FALSE, +N1,59220,sortie-84fd3505-4651-43e0-a8c7-266de9167153,https://biolit.fr/sorties/sortie-84fd3505-4651-43e0-a8c7-266de9167153/,LABELBLEU,,11/19/2019 0:00,15.0000000,16.0000000,42.581605000000,3.045427000000,LABELBLEU,Réserve naturelle du Mas Larrieu,39590,observation-84fd3505-4651-43e0-a8c7-266de9167153-7,https://biolit.fr/observations/observation-84fd3505-4651-43e0-a8c7-266de9167153-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4516[1]-scaled.jpg,,FALSE, +N1,59221,sortie-cb90b489-4b86-4da7-8c83-5de54b93b600,https://biolit.fr/sorties/sortie-cb90b489-4b86-4da7-8c83-5de54b93b600/,vautrin.matthieu,,12/01/2019,15.0000000,16.0000000,51.0332930,2.3830920,,Plage de leffrinckoucke ,39592,observation-cb90b489-4b86-4da7-8c83-5de54b93b600,https://biolit.fr/observations/observation-cb90b489-4b86-4da7-8c83-5de54b93b600/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20191130_161636-scaled.jpg,,TRUE, +N1,59222,sortie-f1243e53-ae3b-40dd-afd1-5ed5af8b0153,https://biolit.fr/sorties/sortie-f1243e53-ae3b-40dd-afd1-5ed5af8b0153/,Phil,,05/05/2019,13.0:45,13.0:55,47.80008700000,-4.179538000000,,Loctudy - Finistère,39594,observation-f1243e53-ae3b-40dd-afd1-5ed5af8b0153,https://biolit.fr/observations/observation-f1243e53-ae3b-40dd-afd1-5ed5af8b0153/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_134759.jpg,,FALSE, +N1,59222,sortie-f1243e53-ae3b-40dd-afd1-5ed5af8b0153,https://biolit.fr/sorties/sortie-f1243e53-ae3b-40dd-afd1-5ed5af8b0153/,Phil,,05/05/2019,13.0:45,13.0:55,47.80008700000,-4.179538000000,,Loctudy - Finistère,39596,observation-f1243e53-ae3b-40dd-afd1-5ed5af8b0153-2,https://biolit.fr/observations/observation-f1243e53-ae3b-40dd-afd1-5ed5af8b0153-2/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20190505_134803.jpg,,TRUE, +N1,59222,sortie-f1243e53-ae3b-40dd-afd1-5ed5af8b0153,https://biolit.fr/sorties/sortie-f1243e53-ae3b-40dd-afd1-5ed5af8b0153/,Phil,,05/05/2019,13.0:45,13.0:55,47.80008700000,-4.179538000000,,Loctudy - Finistère,39598,observation-f1243e53-ae3b-40dd-afd1-5ed5af8b0153-3,https://biolit.fr/observations/observation-f1243e53-ae3b-40dd-afd1-5ed5af8b0153-3/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20190505_135650.jpg,,TRUE, +N1,59222,sortie-f1243e53-ae3b-40dd-afd1-5ed5af8b0153,https://biolit.fr/sorties/sortie-f1243e53-ae3b-40dd-afd1-5ed5af8b0153/,Phil,,05/05/2019,13.0:45,13.0:55,47.80008700000,-4.179538000000,,Loctudy - Finistère,39600,observation-f1243e53-ae3b-40dd-afd1-5ed5af8b0153-4,https://biolit.fr/observations/observation-f1243e53-ae3b-40dd-afd1-5ed5af8b0153-4/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20190505_135707.jpg,,TRUE, +N1,59223,sortie-20b9649e-9fb2-4f35-9282-b1aca8bde030,https://biolit.fr/sorties/sortie-20b9649e-9fb2-4f35-9282-b1aca8bde030/,Phil,,10/22/2019 0:00,12.0000000,12.0:35,48.092890000000,-4.297637000000,,Douarnenez - Finistère,39602,observation-20b9649e-9fb2-4f35-9282-b1aca8bde030,https://biolit.fr/observations/observation-20b9649e-9fb2-4f35-9282-b1aca8bde030/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130438.JPG,,FALSE, +N1,59223,sortie-20b9649e-9fb2-4f35-9282-b1aca8bde030,https://biolit.fr/sorties/sortie-20b9649e-9fb2-4f35-9282-b1aca8bde030/,Phil,,10/22/2019 0:00,12.0000000,12.0:35,48.092890000000,-4.297637000000,,Douarnenez - Finistère,39604,observation-20b9649e-9fb2-4f35-9282-b1aca8bde030-2,https://biolit.fr/observations/observation-20b9649e-9fb2-4f35-9282-b1aca8bde030-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130435.JPG,,FALSE, +N1,59223,sortie-20b9649e-9fb2-4f35-9282-b1aca8bde030,https://biolit.fr/sorties/sortie-20b9649e-9fb2-4f35-9282-b1aca8bde030/,Phil,,10/22/2019 0:00,12.0000000,12.0:35,48.092890000000,-4.297637000000,,Douarnenez - Finistère,39606,observation-20b9649e-9fb2-4f35-9282-b1aca8bde030-3,https://biolit.fr/observations/observation-20b9649e-9fb2-4f35-9282-b1aca8bde030-3/,Pharus legumen,Couteau-gousse,,https://biolit.fr/wp-content/uploads/2023/07/P1130434.JPG,,TRUE, +N1,59223,sortie-20b9649e-9fb2-4f35-9282-b1aca8bde030,https://biolit.fr/sorties/sortie-20b9649e-9fb2-4f35-9282-b1aca8bde030/,Phil,,10/22/2019 0:00,12.0000000,12.0:35,48.092890000000,-4.297637000000,,Douarnenez - Finistère,39608,observation-20b9649e-9fb2-4f35-9282-b1aca8bde030-4,https://biolit.fr/observations/observation-20b9649e-9fb2-4f35-9282-b1aca8bde030-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130433.JPG,,FALSE, +N1,59223,sortie-20b9649e-9fb2-4f35-9282-b1aca8bde030,https://biolit.fr/sorties/sortie-20b9649e-9fb2-4f35-9282-b1aca8bde030/,Phil,,10/22/2019 0:00,12.0000000,12.0:35,48.092890000000,-4.297637000000,,Douarnenez - Finistère,39610,observation-20b9649e-9fb2-4f35-9282-b1aca8bde030-5,https://biolit.fr/observations/observation-20b9649e-9fb2-4f35-9282-b1aca8bde030-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130432.JPG,,FALSE, +N1,59224,sortie-3e67c690-9832-49b4-9094-a99e90cd488f,https://biolit.fr/sorties/sortie-3e67c690-9832-49b4-9094-a99e90cd488f/,Phil,,11/01/2019,13.0000000,13.000005,47.796354000000,-3.851783000000,,Trévignon - Finistère,39612,observation-3e67c690-9832-49b4-9094-a99e90cd488f,https://biolit.fr/observations/observation-3e67c690-9832-49b4-9094-a99e90cd488f/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20191101_125933.jpg,,TRUE, +N1,59224,sortie-3e67c690-9832-49b4-9094-a99e90cd488f,https://biolit.fr/sorties/sortie-3e67c690-9832-49b4-9094-a99e90cd488f/,Phil,,11/01/2019,13.0000000,13.000005,47.796354000000,-3.851783000000,,Trévignon - Finistère,39614,observation-3e67c690-9832-49b4-9094-a99e90cd488f-2,https://biolit.fr/observations/observation-3e67c690-9832-49b4-9094-a99e90cd488f-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20191101_130020.jpg,,TRUE, +N1,59224,sortie-3e67c690-9832-49b4-9094-a99e90cd488f,https://biolit.fr/sorties/sortie-3e67c690-9832-49b4-9094-a99e90cd488f/,Phil,,11/01/2019,13.0000000,13.000005,47.796354000000,-3.851783000000,,Trévignon - Finistère,39616,observation-3e67c690-9832-49b4-9094-a99e90cd488f-3,https://biolit.fr/observations/observation-3e67c690-9832-49b4-9094-a99e90cd488f-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20191101_130034.jpg,,TRUE, +N1,59224,sortie-3e67c690-9832-49b4-9094-a99e90cd488f,https://biolit.fr/sorties/sortie-3e67c690-9832-49b4-9094-a99e90cd488f/,Phil,,11/01/2019,13.0000000,13.000005,47.796354000000,-3.851783000000,,Trévignon - Finistère,39618,observation-3e67c690-9832-49b4-9094-a99e90cd488f-4,https://biolit.fr/observations/observation-3e67c690-9832-49b4-9094-a99e90cd488f-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20191101_130105.jpg,,TRUE, +N1,59225,sortie-2bfda373-c560-4022-a263-8f44c8addfe7,https://biolit.fr/sorties/sortie-2bfda373-c560-4022-a263-8f44c8addfe7/,Bigoudie,,12/02/2019,12.000005,12.0000000,47.09439500000,-2.053119000000,,Plage de la Boutinardière,39620,observation-2bfda373-c560-4022-a263-8f44c8addfe7,https://biolit.fr/observations/observation-2bfda373-c560-4022-a263-8f44c8addfe7/,,,,https://biolit.fr/wp-content/uploads/2023/07/PC020045-scaled.jpg,,FALSE, +N1,59225,sortie-2bfda373-c560-4022-a263-8f44c8addfe7,https://biolit.fr/sorties/sortie-2bfda373-c560-4022-a263-8f44c8addfe7/,Bigoudie,,12/02/2019,12.000005,12.0000000,47.09439500000,-2.053119000000,,Plage de la Boutinardière,39622,observation-2bfda373-c560-4022-a263-8f44c8addfe7-2,https://biolit.fr/observations/observation-2bfda373-c560-4022-a263-8f44c8addfe7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/PC020048-scaled.jpg,,FALSE, +N1,59225,sortie-2bfda373-c560-4022-a263-8f44c8addfe7,https://biolit.fr/sorties/sortie-2bfda373-c560-4022-a263-8f44c8addfe7/,Bigoudie,,12/02/2019,12.000005,12.0000000,47.09439500000,-2.053119000000,,Plage de la Boutinardière,39624,observation-2bfda373-c560-4022-a263-8f44c8addfe7-3,https://biolit.fr/observations/observation-2bfda373-c560-4022-a263-8f44c8addfe7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/PC020041-scaled.jpg,,FALSE, +N1,59225,sortie-2bfda373-c560-4022-a263-8f44c8addfe7,https://biolit.fr/sorties/sortie-2bfda373-c560-4022-a263-8f44c8addfe7/,Bigoudie,,12/02/2019,12.000005,12.0000000,47.09439500000,-2.053119000000,,Plage de la Boutinardière,39626,observation-2bfda373-c560-4022-a263-8f44c8addfe7-4,https://biolit.fr/observations/observation-2bfda373-c560-4022-a263-8f44c8addfe7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/PC020046-scaled.jpg,,FALSE, +N1,59225,sortie-2bfda373-c560-4022-a263-8f44c8addfe7,https://biolit.fr/sorties/sortie-2bfda373-c560-4022-a263-8f44c8addfe7/,Bigoudie,,12/02/2019,12.000005,12.0000000,47.09439500000,-2.053119000000,,Plage de la Boutinardière,39628,observation-2bfda373-c560-4022-a263-8f44c8addfe7-5,https://biolit.fr/observations/observation-2bfda373-c560-4022-a263-8f44c8addfe7-5/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/PC020038-scaled.jpg,,TRUE, +N1,59226,sortie-cd6dec87-773f-4c4b-90b2-ffab9c1a1b96,https://biolit.fr/sorties/sortie-cd6dec87-773f-4c4b-90b2-ffab9c1a1b96/,Bigoudie,,12/02/2019,12.000005,12.0000000,47.094395000000,-2.053168000000,,Plage de la Boutinardière,39630,observation-cd6dec87-773f-4c4b-90b2-ffab9c1a1b96,https://biolit.fr/observations/observation-cd6dec87-773f-4c4b-90b2-ffab9c1a1b96/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/PC020028-scaled.jpg,,TRUE, +N1,59226,sortie-cd6dec87-773f-4c4b-90b2-ffab9c1a1b96,https://biolit.fr/sorties/sortie-cd6dec87-773f-4c4b-90b2-ffab9c1a1b96/,Bigoudie,,12/02/2019,12.000005,12.0000000,47.094395000000,-2.053168000000,,Plage de la Boutinardière,39632,observation-cd6dec87-773f-4c4b-90b2-ffab9c1a1b96-2,https://biolit.fr/observations/observation-cd6dec87-773f-4c4b-90b2-ffab9c1a1b96-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/PC020021-scaled.jpg,,TRUE, +N1,59226,sortie-cd6dec87-773f-4c4b-90b2-ffab9c1a1b96,https://biolit.fr/sorties/sortie-cd6dec87-773f-4c4b-90b2-ffab9c1a1b96/,Bigoudie,,12/02/2019,12.000005,12.0000000,47.094395000000,-2.053168000000,,Plage de la Boutinardière,39634,observation-cd6dec87-773f-4c4b-90b2-ffab9c1a1b96-3,https://biolit.fr/observations/observation-cd6dec87-773f-4c4b-90b2-ffab9c1a1b96-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/PC020022-scaled.jpg,,TRUE, +N1,59226,sortie-cd6dec87-773f-4c4b-90b2-ffab9c1a1b96,https://biolit.fr/sorties/sortie-cd6dec87-773f-4c4b-90b2-ffab9c1a1b96/,Bigoudie,,12/02/2019,12.000005,12.0000000,47.094395000000,-2.053168000000,,Plage de la Boutinardière,39636,observation-cd6dec87-773f-4c4b-90b2-ffab9c1a1b96-4,https://biolit.fr/observations/observation-cd6dec87-773f-4c4b-90b2-ffab9c1a1b96-4/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/PC020010-scaled.jpg,,TRUE, +N1,59227,sortie-4cda50b3-4c03-479e-885a-33eedf4d1b03,https://biolit.fr/sorties/sortie-4cda50b3-4c03-479e-885a-33eedf4d1b03/,Phil,,05/05/2019,13.0000000,13.0:45,47.800750000000,-4.180718000000,,Loctudy - Finistère,39638,observation-4cda50b3-4c03-479e-885a-33eedf4d1b03,https://biolit.fr/observations/observation-4cda50b3-4c03-479e-885a-33eedf4d1b03/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20190505_134242.jpg,,TRUE, +N1,59227,sortie-4cda50b3-4c03-479e-885a-33eedf4d1b03,https://biolit.fr/sorties/sortie-4cda50b3-4c03-479e-885a-33eedf4d1b03/,Phil,,05/05/2019,13.0000000,13.0:45,47.800750000000,-4.180718000000,,Loctudy - Finistère,39640,observation-4cda50b3-4c03-479e-885a-33eedf4d1b03-2,https://biolit.fr/observations/observation-4cda50b3-4c03-479e-885a-33eedf4d1b03-2/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20190505_134235.jpg,,TRUE, +N1,59227,sortie-4cda50b3-4c03-479e-885a-33eedf4d1b03,https://biolit.fr/sorties/sortie-4cda50b3-4c03-479e-885a-33eedf4d1b03/,Phil,,05/05/2019,13.0000000,13.0:45,47.800750000000,-4.180718000000,,Loctudy - Finistère,39642,observation-4cda50b3-4c03-479e-885a-33eedf4d1b03-3,https://biolit.fr/observations/observation-4cda50b3-4c03-479e-885a-33eedf4d1b03-3/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20190505_134118.jpg,,TRUE, +N1,59227,sortie-4cda50b3-4c03-479e-885a-33eedf4d1b03,https://biolit.fr/sorties/sortie-4cda50b3-4c03-479e-885a-33eedf4d1b03/,Phil,,05/05/2019,13.0000000,13.0:45,47.800750000000,-4.180718000000,,Loctudy - Finistère,39644,observation-4cda50b3-4c03-479e-885a-33eedf4d1b03-4,https://biolit.fr/observations/observation-4cda50b3-4c03-479e-885a-33eedf4d1b03-4/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20190505_134304.jpg,,TRUE, +N1,59228,sortie-c9d4b3dc-78b1-4691-9a52-6cf547091814,https://biolit.fr/sorties/sortie-c9d4b3dc-78b1-4691-9a52-6cf547091814/,Phil,,10/29/2019 0:00,11.0:45,11.0000000,47.844735000000,-4.166026000000,,Île-Tudy - Finistère,39646,observation-c9d4b3dc-78b1-4691-9a52-6cf547091814,https://biolit.fr/observations/observation-c9d4b3dc-78b1-4691-9a52-6cf547091814/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191029_114829.jpg,,FALSE, +N1,59228,sortie-c9d4b3dc-78b1-4691-9a52-6cf547091814,https://biolit.fr/sorties/sortie-c9d4b3dc-78b1-4691-9a52-6cf547091814/,Phil,,10/29/2019 0:00,11.0:45,11.0000000,47.844735000000,-4.166026000000,,Île-Tudy - Finistère,39648,observation-c9d4b3dc-78b1-4691-9a52-6cf547091814-2,https://biolit.fr/observations/observation-c9d4b3dc-78b1-4691-9a52-6cf547091814-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191029_114757.jpg,,FALSE, +N1,59228,sortie-c9d4b3dc-78b1-4691-9a52-6cf547091814,https://biolit.fr/sorties/sortie-c9d4b3dc-78b1-4691-9a52-6cf547091814/,Phil,,10/29/2019 0:00,11.0:45,11.0000000,47.844735000000,-4.166026000000,,Île-Tudy - Finistère,39650,observation-c9d4b3dc-78b1-4691-9a52-6cf547091814-3,https://biolit.fr/observations/observation-c9d4b3dc-78b1-4691-9a52-6cf547091814-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191029_114854.jpg,,FALSE, +N1,59228,sortie-c9d4b3dc-78b1-4691-9a52-6cf547091814,https://biolit.fr/sorties/sortie-c9d4b3dc-78b1-4691-9a52-6cf547091814/,Phil,,10/29/2019 0:00,11.0:45,11.0000000,47.844735000000,-4.166026000000,,Île-Tudy - Finistère,39652,observation-c9d4b3dc-78b1-4691-9a52-6cf547091814-4,https://biolit.fr/observations/observation-c9d4b3dc-78b1-4691-9a52-6cf547091814-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191029_114929.jpg,,FALSE, +N1,59228,sortie-c9d4b3dc-78b1-4691-9a52-6cf547091814,https://biolit.fr/sorties/sortie-c9d4b3dc-78b1-4691-9a52-6cf547091814/,Phil,,10/29/2019 0:00,11.0:45,11.0000000,47.844735000000,-4.166026000000,,Île-Tudy - Finistère,39654,observation-c9d4b3dc-78b1-4691-9a52-6cf547091814-5,https://biolit.fr/observations/observation-c9d4b3dc-78b1-4691-9a52-6cf547091814-5/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20191029_115008.jpg,,TRUE, +N1,59228,sortie-c9d4b3dc-78b1-4691-9a52-6cf547091814,https://biolit.fr/sorties/sortie-c9d4b3dc-78b1-4691-9a52-6cf547091814/,Phil,,10/29/2019 0:00,11.0:45,11.0000000,47.844735000000,-4.166026000000,,Île-Tudy - Finistère,39656,observation-c9d4b3dc-78b1-4691-9a52-6cf547091814-6,https://biolit.fr/observations/observation-c9d4b3dc-78b1-4691-9a52-6cf547091814-6/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20191029_115014.jpg,,TRUE, +N1,59228,sortie-c9d4b3dc-78b1-4691-9a52-6cf547091814,https://biolit.fr/sorties/sortie-c9d4b3dc-78b1-4691-9a52-6cf547091814/,Phil,,10/29/2019 0:00,11.0:45,11.0000000,47.844735000000,-4.166026000000,,Île-Tudy - Finistère,39658,observation-c9d4b3dc-78b1-4691-9a52-6cf547091814-7,https://biolit.fr/observations/observation-c9d4b3dc-78b1-4691-9a52-6cf547091814-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191029_115022.jpg,,FALSE, +N1,59229,sortie-78a8e94f-0dee-4545-9c08-f5df336e9bf5,https://biolit.fr/sorties/sortie-78a8e94f-0dee-4545-9c08-f5df336e9bf5/,nathalie,,12/02/2019,14.0000000,16.0000000,46.093470000000,-1.100331000000,,Saint Jean des Sables ,39660,observation-78a8e94f-0dee-4545-9c08-f5df336e9bf5,https://biolit.fr/observations/observation-78a8e94f-0dee-4545-9c08-f5df336e9bf5/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20191202_145413-scaled.jpg,,TRUE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39662,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/Acanthocardia tuberculata.PNG,,TRUE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39663,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-2,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-2/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/Balanus perforatus.jpg,,TRUE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39664,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-3,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-3/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/calliostoma zizyphynum.PNG,,TRUE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39666,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-4,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Callista chione.PNG,,FALSE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39667,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-5,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/cerastoderma edule-scaled.jpg,,FALSE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39668,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-6,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-6/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crepidula fornicata.PNG,,TRUE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39669,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-7,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-7/,Epitonium clathrus,Scalaire,,https://biolit.fr/wp-content/uploads/2023/07/epitonium clathrus1.PNG,,TRUE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39671,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-8,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-8/,Echinocyamus pusillus,Fève de mer,,https://biolit.fr/wp-content/uploads/2023/07/Echinocyamus pusillus.PNG,,TRUE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39672,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-9,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-9/,Euspira catena,Natice porte-chaîne,,https://biolit.fr/wp-content/uploads/2023/07/eutice catena1.PNG,,TRUE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39674,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-10,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-10/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/2023/07/Mactra stultorum.PNG,,TRUE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39675,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-11,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-11/,Gari depressa,Psammobie déprimée,,https://biolit.fr/wp-content/uploads/2023/07/gari depressa 1.PNG,,TRUE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39677,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-12,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-12/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/nucella lapillus 3.PNG,,TRUE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39679,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-13,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-13/,Tricolia pullus,Phasianelle minuscule,,https://biolit.fr/wp-content/uploads/2023/07/Tricolia pullus.PNG,,TRUE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39680,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-14,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-14/,Trivia arctica,Grain de café rose,,https://biolit.fr/wp-content/uploads/2023/07/Trivia arctica.PNG,,TRUE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39681,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-15,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-15/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/Trivia monacha.PNG,,TRUE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39682,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-16,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-16/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Velelle-scaled.jpg,,TRUE, +N1,59230,sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56,https://biolit.fr/sorties/sortie-e30533fd-47d5-48c5-a8e7-aeeb04311d56/,Roman,,12/01/2019,14.0000000,16.0000000,47.693017000000,-3.351727000000,,Gâvres,39683,observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-17,https://biolit.fr/observations/observation-e30533fd-47d5-48c5-a8e7-aeeb04311d56-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/Venerupis aurea.PNG,,FALSE, +N1,59231,sortie-3b2b9f08-7cec-46e4-8df0-1ff8656f211d,https://biolit.fr/sorties/sortie-3b2b9f08-7cec-46e4-8df0-1ff8656f211d/,Phil,,10/22/2019 0:00,12.0:45,12.0:55,48.100735000000,-4.345481000000,,Tréboul - Finistère,39684,observation-3b2b9f08-7cec-46e4-8df0-1ff8656f211d,https://biolit.fr/observations/observation-3b2b9f08-7cec-46e4-8df0-1ff8656f211d/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/2023/07/P1130411.JPG,,TRUE, +N1,59231,sortie-3b2b9f08-7cec-46e4-8df0-1ff8656f211d,https://biolit.fr/sorties/sortie-3b2b9f08-7cec-46e4-8df0-1ff8656f211d/,Phil,,10/22/2019 0:00,12.0:45,12.0:55,48.100735000000,-4.345481000000,,Tréboul - Finistère,39686,observation-3b2b9f08-7cec-46e4-8df0-1ff8656f211d-2,https://biolit.fr/observations/observation-3b2b9f08-7cec-46e4-8df0-1ff8656f211d-2/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/2023/07/P1130413.JPG,,TRUE, +N1,59231,sortie-3b2b9f08-7cec-46e4-8df0-1ff8656f211d,https://biolit.fr/sorties/sortie-3b2b9f08-7cec-46e4-8df0-1ff8656f211d/,Phil,,10/22/2019 0:00,12.0:45,12.0:55,48.100735000000,-4.345481000000,,Tréboul - Finistère,39688,observation-3b2b9f08-7cec-46e4-8df0-1ff8656f211d-3,https://biolit.fr/observations/observation-3b2b9f08-7cec-46e4-8df0-1ff8656f211d-3/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/P1130409.JPG,,TRUE, +N1,59232,sortie-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6,https://biolit.fr/sorties/sortie-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6/,Phil,,05/05/2019,13.0000000,13.0:35,47.800388000000,-4.179281000000,,Loctudy - Finistère,39690,observation-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6,https://biolit.fr/observations/observation-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/20190505_132922.jpg,,TRUE, +N1,59232,sortie-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6,https://biolit.fr/sorties/sortie-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6/,Phil,,05/05/2019,13.0000000,13.0:35,47.800388000000,-4.179281000000,,Loctudy - Finistère,39692,observation-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6-2,https://biolit.fr/observations/observation-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190505_132935.jpg,,TRUE, +N1,59232,sortie-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6,https://biolit.fr/sorties/sortie-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6/,Phil,,05/05/2019,13.0000000,13.0:35,47.800388000000,-4.179281000000,,Loctudy - Finistère,39694,observation-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6-3,https://biolit.fr/observations/observation-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6-3/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/20190505_133009.jpg,,TRUE, +N1,59232,sortie-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6,https://biolit.fr/sorties/sortie-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6/,Phil,,05/05/2019,13.0000000,13.0:35,47.800388000000,-4.179281000000,,Loctudy - Finistère,39696,observation-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6-4,https://biolit.fr/observations/observation-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6-4/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/20190505_133018.jpg,,TRUE, +N1,59232,sortie-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6,https://biolit.fr/sorties/sortie-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6/,Phil,,05/05/2019,13.0000000,13.0:35,47.800388000000,-4.179281000000,,Loctudy - Finistère,39698,observation-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6-5,https://biolit.fr/observations/observation-bf08bed6-6149-4d5f-83e6-b6b075b6e4b6-5/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/20190505_133656.jpg,,TRUE, +N1,59233,sortie-b5ff7cbf-5976-4533-822a-ae07570a2e22,https://biolit.fr/sorties/sortie-b5ff7cbf-5976-4533-822a-ae07570a2e22/,Phil,,10/22/2019 0:00,12.0000000,12.0:35,48.093003000000,-4.297008000000,,Douarnenez - Finistère,39700,observation-b5ff7cbf-5976-4533-822a-ae07570a2e22,https://biolit.fr/observations/observation-b5ff7cbf-5976-4533-822a-ae07570a2e22/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130427.JPG,,FALSE, +N1,59233,sortie-b5ff7cbf-5976-4533-822a-ae07570a2e22,https://biolit.fr/sorties/sortie-b5ff7cbf-5976-4533-822a-ae07570a2e22/,Phil,,10/22/2019 0:00,12.0000000,12.0:35,48.093003000000,-4.297008000000,,Douarnenez - Finistère,39702,observation-b5ff7cbf-5976-4533-822a-ae07570a2e22-2,https://biolit.fr/observations/observation-b5ff7cbf-5976-4533-822a-ae07570a2e22-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130428.JPG,,FALSE, +N1,59233,sortie-b5ff7cbf-5976-4533-822a-ae07570a2e22,https://biolit.fr/sorties/sortie-b5ff7cbf-5976-4533-822a-ae07570a2e22/,Phil,,10/22/2019 0:00,12.0000000,12.0:35,48.093003000000,-4.297008000000,,Douarnenez - Finistère,39704,observation-b5ff7cbf-5976-4533-822a-ae07570a2e22-3,https://biolit.fr/observations/observation-b5ff7cbf-5976-4533-822a-ae07570a2e22-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130429.JPG,,FALSE, +N1,59233,sortie-b5ff7cbf-5976-4533-822a-ae07570a2e22,https://biolit.fr/sorties/sortie-b5ff7cbf-5976-4533-822a-ae07570a2e22/,Phil,,10/22/2019 0:00,12.0000000,12.0:35,48.093003000000,-4.297008000000,,Douarnenez - Finistère,39706,observation-b5ff7cbf-5976-4533-822a-ae07570a2e22-4,https://biolit.fr/observations/observation-b5ff7cbf-5976-4533-822a-ae07570a2e22-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1130431.JPG,,FALSE, +N1,59234,sortie-3ab0ba1e-fead-4119-aa8a-79ff8c183639,https://biolit.fr/sorties/sortie-3ab0ba1e-fead-4119-aa8a-79ff8c183639/,Phil,,11/01/2019,12.0:55,13.0000000,47.796426000000,-3.851997000000,,Trévignon - Finistère,39708,observation-3ab0ba1e-fead-4119-aa8a-79ff8c183639,https://biolit.fr/observations/observation-3ab0ba1e-fead-4119-aa8a-79ff8c183639/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191101_125741.jpg,,FALSE, +N1,59234,sortie-3ab0ba1e-fead-4119-aa8a-79ff8c183639,https://biolit.fr/sorties/sortie-3ab0ba1e-fead-4119-aa8a-79ff8c183639/,Phil,,11/01/2019,12.0:55,13.0000000,47.796426000000,-3.851997000000,,Trévignon - Finistère,39710,observation-3ab0ba1e-fead-4119-aa8a-79ff8c183639-2,https://biolit.fr/observations/observation-3ab0ba1e-fead-4119-aa8a-79ff8c183639-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191101_125747.jpg,,FALSE, +N1,59234,sortie-3ab0ba1e-fead-4119-aa8a-79ff8c183639,https://biolit.fr/sorties/sortie-3ab0ba1e-fead-4119-aa8a-79ff8c183639/,Phil,,11/01/2019,12.0:55,13.0000000,47.796426000000,-3.851997000000,,Trévignon - Finistère,39712,observation-3ab0ba1e-fead-4119-aa8a-79ff8c183639-3,https://biolit.fr/observations/observation-3ab0ba1e-fead-4119-aa8a-79ff8c183639-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191101_130133.jpg,,FALSE, +N1,59234,sortie-3ab0ba1e-fead-4119-aa8a-79ff8c183639,https://biolit.fr/sorties/sortie-3ab0ba1e-fead-4119-aa8a-79ff8c183639/,Phil,,11/01/2019,12.0:55,13.0000000,47.796426000000,-3.851997000000,,Trévignon - Finistère,39714,observation-3ab0ba1e-fead-4119-aa8a-79ff8c183639-4,https://biolit.fr/observations/observation-3ab0ba1e-fead-4119-aa8a-79ff8c183639-4/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/20191101_130203.jpg,,TRUE, +N1,59234,sortie-3ab0ba1e-fead-4119-aa8a-79ff8c183639,https://biolit.fr/sorties/sortie-3ab0ba1e-fead-4119-aa8a-79ff8c183639/,Phil,,11/01/2019,12.0:55,13.0000000,47.796426000000,-3.851997000000,,Trévignon - Finistère,39716,observation-3ab0ba1e-fead-4119-aa8a-79ff8c183639-5,https://biolit.fr/observations/observation-3ab0ba1e-fead-4119-aa8a-79ff8c183639-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191101_125751-scaled.jpg,,FALSE, +N1,59235,sortie-83b2db0a-e54d-475f-8f8d-45257e77172b,https://biolit.fr/sorties/sortie-83b2db0a-e54d-475f-8f8d-45257e77172b/,cigale33,,11/25/2019 0:00,10.0:15,11.0:15,43.375738000000,-1.765994000000,,plage d'Hendaye,39718,observation-83b2db0a-e54d-475f-8f8d-45257e77172b,https://biolit.fr/observations/observation-83b2db0a-e54d-475f-8f8d-45257e77172b/,,,,https://biolit.fr/wp-content/uploads/2023/07/029.jpg,,FALSE, +N1,59235,sortie-83b2db0a-e54d-475f-8f8d-45257e77172b,https://biolit.fr/sorties/sortie-83b2db0a-e54d-475f-8f8d-45257e77172b/,cigale33,,11/25/2019 0:00,10.0:15,11.0:15,43.375738000000,-1.765994000000,,plage d'Hendaye,39720,observation-83b2db0a-e54d-475f-8f8d-45257e77172b-2,https://biolit.fr/observations/observation-83b2db0a-e54d-475f-8f8d-45257e77172b-2/,Pharus legumen,Couteau-gousse,,https://biolit.fr/wp-content/uploads/2023/07/048.jpg,,TRUE, +N1,59235,sortie-83b2db0a-e54d-475f-8f8d-45257e77172b,https://biolit.fr/sorties/sortie-83b2db0a-e54d-475f-8f8d-45257e77172b/,cigale33,,11/25/2019 0:00,10.0:15,11.0:15,43.375738000000,-1.765994000000,,plage d'Hendaye,39722,observation-83b2db0a-e54d-475f-8f8d-45257e77172b-3,https://biolit.fr/observations/observation-83b2db0a-e54d-475f-8f8d-45257e77172b-3/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/049-scaled.jpg,,TRUE, +N1,59235,sortie-83b2db0a-e54d-475f-8f8d-45257e77172b,https://biolit.fr/sorties/sortie-83b2db0a-e54d-475f-8f8d-45257e77172b/,cigale33,,11/25/2019 0:00,10.0:15,11.0:15,43.375738000000,-1.765994000000,,plage d'Hendaye,39724,observation-83b2db0a-e54d-475f-8f8d-45257e77172b-4,https://biolit.fr/observations/observation-83b2db0a-e54d-475f-8f8d-45257e77172b-4/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/052-scaled.jpg,,TRUE, +N1,59235,sortie-83b2db0a-e54d-475f-8f8d-45257e77172b,https://biolit.fr/sorties/sortie-83b2db0a-e54d-475f-8f8d-45257e77172b/,cigale33,,11/25/2019 0:00,10.0:15,11.0:15,43.375738000000,-1.765994000000,,plage d'Hendaye,39726,observation-83b2db0a-e54d-475f-8f8d-45257e77172b-5,https://biolit.fr/observations/observation-83b2db0a-e54d-475f-8f8d-45257e77172b-5/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/050-scaled.jpg,,TRUE, +N1,59236,sortie-d49ee94a-8807-4308-ab86-26ca17374b5d,https://biolit.fr/sorties/sortie-d49ee94a-8807-4308-ab86-26ca17374b5d/,Phil,,5/19/2019 0:00,11.0000000,12.000005,47.799526000000,-4.179817000000,,Loctudy - Finistère,39728,observation-d49ee94a-8807-4308-ab86-26ca17374b5d,https://biolit.fr/observations/observation-d49ee94a-8807-4308-ab86-26ca17374b5d/,Tritia reticulata,Ponte de nasse réticulée,,https://biolit.fr/wp-content/uploads/2023/07/20190519_112924.jpg,,TRUE, +N1,59236,sortie-d49ee94a-8807-4308-ab86-26ca17374b5d,https://biolit.fr/sorties/sortie-d49ee94a-8807-4308-ab86-26ca17374b5d/,Phil,,5/19/2019 0:00,11.0000000,12.000005,47.799526000000,-4.179817000000,,Loctudy - Finistère,39730,observation-d49ee94a-8807-4308-ab86-26ca17374b5d-2,https://biolit.fr/observations/observation-d49ee94a-8807-4308-ab86-26ca17374b5d-2/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/20190519_112954.jpg,,TRUE, +N1,59236,sortie-d49ee94a-8807-4308-ab86-26ca17374b5d,https://biolit.fr/sorties/sortie-d49ee94a-8807-4308-ab86-26ca17374b5d/,Phil,,5/19/2019 0:00,11.0000000,12.000005,47.799526000000,-4.179817000000,,Loctudy - Finistère,39732,observation-d49ee94a-8807-4308-ab86-26ca17374b5d-3,https://biolit.fr/observations/observation-d49ee94a-8807-4308-ab86-26ca17374b5d-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20190519_114313.jpg,,TRUE, +N1,59236,sortie-d49ee94a-8807-4308-ab86-26ca17374b5d,https://biolit.fr/sorties/sortie-d49ee94a-8807-4308-ab86-26ca17374b5d/,Phil,,5/19/2019 0:00,11.0000000,12.000005,47.799526000000,-4.179817000000,,Loctudy - Finistère,39734,observation-d49ee94a-8807-4308-ab86-26ca17374b5d-4,https://biolit.fr/observations/observation-d49ee94a-8807-4308-ab86-26ca17374b5d-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20190519_114341.jpg,,TRUE, +N1,59236,sortie-d49ee94a-8807-4308-ab86-26ca17374b5d,https://biolit.fr/sorties/sortie-d49ee94a-8807-4308-ab86-26ca17374b5d/,Phil,,5/19/2019 0:00,11.0000000,12.000005,47.799526000000,-4.179817000000,,Loctudy - Finistère,39736,observation-d49ee94a-8807-4308-ab86-26ca17374b5d-5,https://biolit.fr/observations/observation-d49ee94a-8807-4308-ab86-26ca17374b5d-5/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/20190519_114747.jpg,,TRUE, +N1,59236,sortie-d49ee94a-8807-4308-ab86-26ca17374b5d,https://biolit.fr/sorties/sortie-d49ee94a-8807-4308-ab86-26ca17374b5d/,Phil,,5/19/2019 0:00,11.0000000,12.000005,47.799526000000,-4.179817000000,,Loctudy - Finistère,39738,observation-d49ee94a-8807-4308-ab86-26ca17374b5d-6,https://biolit.fr/observations/observation-d49ee94a-8807-4308-ab86-26ca17374b5d-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190519_120657.jpg,,FALSE, +N1,59237,sortie-1457b15b-96bd-4f6b-822e-7d38d6b750c4,https://biolit.fr/sorties/sortie-1457b15b-96bd-4f6b-822e-7d38d6b750c4/,Roman,,11/21/2019 0:00,16.0:45,17.0000000,47.699430000000,-3.354924000000,,Gâvres,39740,observation-1457b15b-96bd-4f6b-822e-7d38d6b750c4,https://biolit.fr/observations/observation-1457b15b-96bd-4f6b-822e-7d38d6b750c4/,Patella pellucida,Helcion,,https://biolit.fr/wp-content/uploads/2023/07/Ansates pelludica.PNG,,TRUE, +N1,59237,sortie-1457b15b-96bd-4f6b-822e-7d38d6b750c4,https://biolit.fr/sorties/sortie-1457b15b-96bd-4f6b-822e-7d38d6b750c4/,Roman,,11/21/2019 0:00,16.0:45,17.0000000,47.699430000000,-3.354924000000,,Gâvres,39741,observation-1457b15b-96bd-4f6b-822e-7d38d6b750c4-2,https://biolit.fr/observations/observation-1457b15b-96bd-4f6b-822e-7d38d6b750c4-2/,Antalis vulgaris,Dentale,,https://biolit.fr/wp-content/uploads/2023/07/antalis vulgaris.PNG,,TRUE, +N1,59237,sortie-1457b15b-96bd-4f6b-822e-7d38d6b750c4,https://biolit.fr/sorties/sortie-1457b15b-96bd-4f6b-822e-7d38d6b750c4/,Roman,,11/21/2019 0:00,16.0:45,17.0000000,47.699430000000,-3.354924000000,,Gâvres,39742,observation-1457b15b-96bd-4f6b-822e-7d38d6b750c4-3,https://biolit.fr/observations/observation-1457b15b-96bd-4f6b-822e-7d38d6b750c4-3/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus1.PNG,,TRUE, +N1,59237,sortie-1457b15b-96bd-4f6b-822e-7d38d6b750c4,https://biolit.fr/sorties/sortie-1457b15b-96bd-4f6b-822e-7d38d6b750c4/,Roman,,11/21/2019 0:00,16.0:45,17.0000000,47.699430000000,-3.354924000000,,Gâvres,39744,observation-1457b15b-96bd-4f6b-822e-7d38d6b750c4-4,https://biolit.fr/observations/observation-1457b15b-96bd-4f6b-822e-7d38d6b750c4-4/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/chthmalus stellatus1.PNG,,TRUE, +N1,59237,sortie-1457b15b-96bd-4f6b-822e-7d38d6b750c4,https://biolit.fr/sorties/sortie-1457b15b-96bd-4f6b-822e-7d38d6b750c4/,Roman,,11/21/2019 0:00,16.0:45,17.0000000,47.699430000000,-3.354924000000,,Gâvres,39746,observation-1457b15b-96bd-4f6b-822e-7d38d6b750c4-5,https://biolit.fr/observations/observation-1457b15b-96bd-4f6b-822e-7d38d6b750c4-5/,Diodora graeca,Fissurelle,,https://biolit.fr/wp-content/uploads/2023/07/diodora graeca.PNG,,TRUE, +N1,59237,sortie-1457b15b-96bd-4f6b-822e-7d38d6b750c4,https://biolit.fr/sorties/sortie-1457b15b-96bd-4f6b-822e-7d38d6b750c4/,Roman,,11/21/2019 0:00,16.0:45,17.0000000,47.699430000000,-3.354924000000,,Gâvres,39747,observation-1457b15b-96bd-4f6b-822e-7d38d6b750c4-6,https://biolit.fr/observations/observation-1457b15b-96bd-4f6b-822e-7d38d6b750c4-6/,Laevicardium crassum,Bucarde de Norvège,,https://biolit.fr/wp-content/uploads/2023/07/Laevicardium crassum.PNG,,TRUE, +N1,59237,sortie-1457b15b-96bd-4f6b-822e-7d38d6b750c4,https://biolit.fr/sorties/sortie-1457b15b-96bd-4f6b-822e-7d38d6b750c4/,Roman,,11/21/2019 0:00,16.0:45,17.0000000,47.699430000000,-3.354924000000,,Gâvres,39748,observation-1457b15b-96bd-4f6b-822e-7d38d6b750c4-7,https://biolit.fr/observations/observation-1457b15b-96bd-4f6b-822e-7d38d6b750c4-7/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/mytilus edulis-scaled.jpg,,TRUE, +N1,59237,sortie-1457b15b-96bd-4f6b-822e-7d38d6b750c4,https://biolit.fr/sorties/sortie-1457b15b-96bd-4f6b-822e-7d38d6b750c4/,Roman,,11/21/2019 0:00,16.0:45,17.0000000,47.699430000000,-3.354924000000,,Gâvres,39749,observation-1457b15b-96bd-4f6b-822e-7d38d6b750c4-8,https://biolit.fr/observations/observation-1457b15b-96bd-4f6b-822e-7d38d6b750c4-8/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/nucella lapillus2 .PNG,,TRUE, +N1,59238,sortie-3986c6fd-a0eb-41aa-a90b-66653700271a,https://biolit.fr/sorties/sortie-3986c6fd-a0eb-41aa-a90b-66653700271a/,Phil,,11/16/2019 0:00,12.0000000,12.000005,48.061048000000,-4.672363000000,,Cléden-Cap-Sizun - Finistère,39753,observation-3986c6fd-a0eb-41aa-a90b-66653700271a-2,https://biolit.fr/observations/observation-3986c6fd-a0eb-41aa-a90b-66653700271a-2/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/20191116_115702.jpg,,TRUE, +N1,59239,sortie-62cec3a1-b38a-45ff-a8d7-dbb1a5c654d6,https://biolit.fr/sorties/sortie-62cec3a1-b38a-45ff-a8d7-dbb1a5c654d6/,Phil,,10/22/2019 0:00,12.0000000,12.0000000,48.093438000000,-4.298564000000,,Douarnenez - Finistère,39757,observation-62cec3a1-b38a-45ff-a8d7-dbb1a5c654d6,https://biolit.fr/observations/observation-62cec3a1-b38a-45ff-a8d7-dbb1a5c654d6/,Lutraria lutraria,Lutraire elliptique,,https://biolit.fr/wp-content/uploads/2023/07/P1130426.JPG,,TRUE, +N1,59239,sortie-62cec3a1-b38a-45ff-a8d7-dbb1a5c654d6,https://biolit.fr/sorties/sortie-62cec3a1-b38a-45ff-a8d7-dbb1a5c654d6/,Phil,,10/22/2019 0:00,12.0000000,12.0000000,48.093438000000,-4.298564000000,,Douarnenez - Finistère,39759,observation-62cec3a1-b38a-45ff-a8d7-dbb1a5c654d6-2,https://biolit.fr/observations/observation-62cec3a1-b38a-45ff-a8d7-dbb1a5c654d6-2/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/P1130420.JPG,,TRUE, +N1,59239,sortie-62cec3a1-b38a-45ff-a8d7-dbb1a5c654d6,https://biolit.fr/sorties/sortie-62cec3a1-b38a-45ff-a8d7-dbb1a5c654d6/,Phil,,10/22/2019 0:00,12.0000000,12.0000000,48.093438000000,-4.298564000000,,Douarnenez - Finistère,39761,observation-62cec3a1-b38a-45ff-a8d7-dbb1a5c654d6-3,https://biolit.fr/observations/observation-62cec3a1-b38a-45ff-a8d7-dbb1a5c654d6-3/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1130422.JPG,,TRUE, +N1,59239,sortie-62cec3a1-b38a-45ff-a8d7-dbb1a5c654d6,https://biolit.fr/sorties/sortie-62cec3a1-b38a-45ff-a8d7-dbb1a5c654d6/,Phil,,10/22/2019 0:00,12.0000000,12.0000000,48.093438000000,-4.298564000000,,Douarnenez - Finistère,39763,observation-62cec3a1-b38a-45ff-a8d7-dbb1a5c654d6-4,https://biolit.fr/observations/observation-62cec3a1-b38a-45ff-a8d7-dbb1a5c654d6-4/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/P1130421.JPG,,TRUE, +N1,59240,sortie-2e237374-e0a4-464a-a8ba-80d194b80d55,https://biolit.fr/sorties/sortie-2e237374-e0a4-464a-a8ba-80d194b80d55/,Phil,,10/22/2019 0:00,12.0000000,12.0:55,48.100908000000,-4.346082000000,,Tréboul - Finistère,39765,observation-2e237374-e0a4-464a-a8ba-80d194b80d55,https://biolit.fr/observations/observation-2e237374-e0a4-464a-a8ba-80d194b80d55/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20191022_125753.jpg,,TRUE, +N1,59240,sortie-2e237374-e0a4-464a-a8ba-80d194b80d55,https://biolit.fr/sorties/sortie-2e237374-e0a4-464a-a8ba-80d194b80d55/,Phil,,10/22/2019 0:00,12.0000000,12.0:55,48.100908000000,-4.346082000000,,Tréboul - Finistère,39767,observation-2e237374-e0a4-464a-a8ba-80d194b80d55-2,https://biolit.fr/observations/observation-2e237374-e0a4-464a-a8ba-80d194b80d55-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20191022_124411.jpg,,TRUE, +N1,59240,sortie-2e237374-e0a4-464a-a8ba-80d194b80d55,https://biolit.fr/sorties/sortie-2e237374-e0a4-464a-a8ba-80d194b80d55/,Phil,,10/22/2019 0:00,12.0000000,12.0:55,48.100908000000,-4.346082000000,,Tréboul - Finistère,39769,observation-2e237374-e0a4-464a-a8ba-80d194b80d55-3,https://biolit.fr/observations/observation-2e237374-e0a4-464a-a8ba-80d194b80d55-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20191022_124356.jpg,,TRUE, +N1,59241,sortie-c1587ecf-a122-43d4-a761-caf67b71b280,https://biolit.fr/sorties/sortie-c1587ecf-a122-43d4-a761-caf67b71b280/,Phil,,11/01/2019,12.0:55,13.0000000,47.796347000000,-3.851568000000,,Trégunc - Finistère,39771,observation-c1587ecf-a122-43d4-a761-caf67b71b280,https://biolit.fr/observations/observation-c1587ecf-a122-43d4-a761-caf67b71b280/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20191101_125544.jpg,,TRUE, +N1,59241,sortie-c1587ecf-a122-43d4-a761-caf67b71b280,https://biolit.fr/sorties/sortie-c1587ecf-a122-43d4-a761-caf67b71b280/,Phil,,11/01/2019,12.0:55,13.0000000,47.796347000000,-3.851568000000,,Trégunc - Finistère,39773,observation-c1587ecf-a122-43d4-a761-caf67b71b280-2,https://biolit.fr/observations/observation-c1587ecf-a122-43d4-a761-caf67b71b280-2/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20191101_125550.jpg,,TRUE, +N1,59241,sortie-c1587ecf-a122-43d4-a761-caf67b71b280,https://biolit.fr/sorties/sortie-c1587ecf-a122-43d4-a761-caf67b71b280/,Phil,,11/01/2019,12.0:55,13.0000000,47.796347000000,-3.851568000000,,Trégunc - Finistère,39775,observation-c1587ecf-a122-43d4-a761-caf67b71b280-3,https://biolit.fr/observations/observation-c1587ecf-a122-43d4-a761-caf67b71b280-3/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20191101_125603.jpg,,TRUE, +N1,59241,sortie-c1587ecf-a122-43d4-a761-caf67b71b280,https://biolit.fr/sorties/sortie-c1587ecf-a122-43d4-a761-caf67b71b280/,Phil,,11/01/2019,12.0:55,13.0000000,47.796347000000,-3.851568000000,,Trégunc - Finistère,39777,observation-c1587ecf-a122-43d4-a761-caf67b71b280-4,https://biolit.fr/observations/observation-c1587ecf-a122-43d4-a761-caf67b71b280-4/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/20191101_125621.jpg,,TRUE, +N1,59242,sortie-81bfae6a-551a-43c9-8c41-96edf2712b43,https://biolit.fr/sorties/sortie-81bfae6a-551a-43c9-8c41-96edf2712b43/,Phil,,05/05/2019,13.0:15,13.0000000,47.799323000000,-4.179040000000,,Loctudy - Finistère,39779,observation-81bfae6a-551a-43c9-8c41-96edf2712b43,https://biolit.fr/observations/observation-81bfae6a-551a-43c9-8c41-96edf2712b43/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20190505_131444.jpg,,TRUE, +N1,59242,sortie-81bfae6a-551a-43c9-8c41-96edf2712b43,https://biolit.fr/sorties/sortie-81bfae6a-551a-43c9-8c41-96edf2712b43/,Phil,,05/05/2019,13.0:15,13.0000000,47.799323000000,-4.179040000000,,Loctudy - Finistère,39781,observation-81bfae6a-551a-43c9-8c41-96edf2712b43-2,https://biolit.fr/observations/observation-81bfae6a-551a-43c9-8c41-96edf2712b43-2/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/20190505_132505.jpg,,TRUE, +N1,59242,sortie-81bfae6a-551a-43c9-8c41-96edf2712b43,https://biolit.fr/sorties/sortie-81bfae6a-551a-43c9-8c41-96edf2712b43/,Phil,,05/05/2019,13.0:15,13.0000000,47.799323000000,-4.179040000000,,Loctudy - Finistère,39783,observation-81bfae6a-551a-43c9-8c41-96edf2712b43-3,https://biolit.fr/observations/observation-81bfae6a-551a-43c9-8c41-96edf2712b43-3/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/20190505_132658.jpg,,TRUE, +N1,59242,sortie-81bfae6a-551a-43c9-8c41-96edf2712b43,https://biolit.fr/sorties/sortie-81bfae6a-551a-43c9-8c41-96edf2712b43/,Phil,,05/05/2019,13.0:15,13.0000000,47.799323000000,-4.179040000000,,Loctudy - Finistère,39785,observation-81bfae6a-551a-43c9-8c41-96edf2712b43-4,https://biolit.fr/observations/observation-81bfae6a-551a-43c9-8c41-96edf2712b43-4/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/20190505_132722.jpg,,TRUE, +N1,59243,sortie-07929acc-bf1a-49af-b8a7-93015693dbf9,https://biolit.fr/sorties/sortie-07929acc-bf1a-49af-b8a7-93015693dbf9/,Florian Martel,,11/16/2019 0:00,12.0:15,12.0000000,43.422799000000,3.677394000000,CPIE Littoral d'Occitanie,"Sète, barou, ",39787,observation-07929acc-bf1a-49af-b8a7-93015693dbf9,https://biolit.fr/observations/observation-07929acc-bf1a-49af-b8a7-93015693dbf9/,Raja montagui,Raie douce,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2847-scaled.jpg,,TRUE, +N1,59244,sortie-30cb46a0-9508-4973-bfec-9c67c790b337,https://biolit.fr/sorties/sortie-30cb46a0-9508-4973-bfec-9c67c790b337/,Phil,,10/28/2019 0:00,10.0:45,11.0000000,47.79677400000,-4.328214000000,,Penmarc'h - Finistère,39789,observation-30cb46a0-9508-4973-bfec-9c67c790b337,https://biolit.fr/observations/observation-30cb46a0-9508-4973-bfec-9c67c790b337/,Raja brachyura,Raie lisse,,https://biolit.fr/wp-content/uploads/2023/07/20191028_105014.jpg,,TRUE, +N1,59244,sortie-30cb46a0-9508-4973-bfec-9c67c790b337,https://biolit.fr/sorties/sortie-30cb46a0-9508-4973-bfec-9c67c790b337/,Phil,,10/28/2019 0:00,10.0:45,11.0000000,47.79677400000,-4.328214000000,,Penmarc'h - Finistère,39791,observation-30cb46a0-9508-4973-bfec-9c67c790b337-2,https://biolit.fr/observations/observation-30cb46a0-9508-4973-bfec-9c67c790b337-2/,Raja brachyura,Raie lisse,,https://biolit.fr/wp-content/uploads/2023/07/20191028_105021.jpg,,TRUE, +N1,59244,sortie-30cb46a0-9508-4973-bfec-9c67c790b337,https://biolit.fr/sorties/sortie-30cb46a0-9508-4973-bfec-9c67c790b337/,Phil,,10/28/2019 0:00,10.0:45,11.0000000,47.79677400000,-4.328214000000,,Penmarc'h - Finistère,39793,observation-30cb46a0-9508-4973-bfec-9c67c790b337-3,https://biolit.fr/observations/observation-30cb46a0-9508-4973-bfec-9c67c790b337-3/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191028_105145.jpg,,TRUE, +N1,59244,sortie-30cb46a0-9508-4973-bfec-9c67c790b337,https://biolit.fr/sorties/sortie-30cb46a0-9508-4973-bfec-9c67c790b337/,Phil,,10/28/2019 0:00,10.0:45,11.0000000,47.79677400000,-4.328214000000,,Penmarc'h - Finistère,39795,observation-30cb46a0-9508-4973-bfec-9c67c790b337-4,https://biolit.fr/observations/observation-30cb46a0-9508-4973-bfec-9c67c790b337-4/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20191028_105834.jpg,,TRUE, +N1,59245,sortie-4bad3aa7-5d06-4558-8599-29a20f17d0f9,https://biolit.fr/sorties/sortie-4bad3aa7-5d06-4558-8599-29a20f17d0f9/,Phil,,11/16/2019 0:00,12.0000000,12.0:15,48.06066400000,-4.671629000000,,Cléden-Cap-Sizun - Finistère,39797,observation-4bad3aa7-5d06-4558-8599-29a20f17d0f9,https://biolit.fr/observations/observation-4bad3aa7-5d06-4558-8599-29a20f17d0f9/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191116_121022.jpg,,TRUE, +N1,59245,sortie-4bad3aa7-5d06-4558-8599-29a20f17d0f9,https://biolit.fr/sorties/sortie-4bad3aa7-5d06-4558-8599-29a20f17d0f9/,Phil,,11/16/2019 0:00,12.0000000,12.0:15,48.06066400000,-4.671629000000,,Cléden-Cap-Sizun - Finistère,39799,observation-4bad3aa7-5d06-4558-8599-29a20f17d0f9-2,https://biolit.fr/observations/observation-4bad3aa7-5d06-4558-8599-29a20f17d0f9-2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191116_121029.jpg,,TRUE, +N1,59245,sortie-4bad3aa7-5d06-4558-8599-29a20f17d0f9,https://biolit.fr/sorties/sortie-4bad3aa7-5d06-4558-8599-29a20f17d0f9/,Phil,,11/16/2019 0:00,12.0000000,12.0:15,48.06066400000,-4.671629000000,,Cléden-Cap-Sizun - Finistère,39801,observation-4bad3aa7-5d06-4558-8599-29a20f17d0f9-3,https://biolit.fr/observations/observation-4bad3aa7-5d06-4558-8599-29a20f17d0f9-3/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191116_121220.jpg,,TRUE, +N1,59245,sortie-4bad3aa7-5d06-4558-8599-29a20f17d0f9,https://biolit.fr/sorties/sortie-4bad3aa7-5d06-4558-8599-29a20f17d0f9/,Phil,,11/16/2019 0:00,12.0000000,12.0:15,48.06066400000,-4.671629000000,,Cléden-Cap-Sizun - Finistère,39803,observation-4bad3aa7-5d06-4558-8599-29a20f17d0f9-4,https://biolit.fr/observations/observation-4bad3aa7-5d06-4558-8599-29a20f17d0f9-4/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/20191116_121216.jpg,,TRUE, +N1,59246,sortie-0b73ac0f-1aca-444e-a22f-d1d72c628af6,https://biolit.fr/sorties/sortie-0b73ac0f-1aca-444e-a22f-d1d72c628af6/,Phil,,11/08/2019,12.0000000,12.0:15,48.628617000000,-3.844459000000,,Plouezoc'h - Finistère,39805,observation-0b73ac0f-1aca-444e-a22f-d1d72c628af6,https://biolit.fr/observations/observation-0b73ac0f-1aca-444e-a22f-d1d72c628af6/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20191108_121203.jpg,,TRUE, +N1,59246,sortie-0b73ac0f-1aca-444e-a22f-d1d72c628af6,https://biolit.fr/sorties/sortie-0b73ac0f-1aca-444e-a22f-d1d72c628af6/,Phil,,11/08/2019,12.0000000,12.0:15,48.628617000000,-3.844459000000,,Plouezoc'h - Finistère,39807,observation-0b73ac0f-1aca-444e-a22f-d1d72c628af6-2,https://biolit.fr/observations/observation-0b73ac0f-1aca-444e-a22f-d1d72c628af6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191108_121133.jpg,,FALSE, +N1,59246,sortie-0b73ac0f-1aca-444e-a22f-d1d72c628af6,https://biolit.fr/sorties/sortie-0b73ac0f-1aca-444e-a22f-d1d72c628af6/,Phil,,11/08/2019,12.0000000,12.0:15,48.628617000000,-3.844459000000,,Plouezoc'h - Finistère,39809,observation-0b73ac0f-1aca-444e-a22f-d1d72c628af6-3,https://biolit.fr/observations/observation-0b73ac0f-1aca-444e-a22f-d1d72c628af6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191108_121129.jpg,,FALSE, +N1,59246,sortie-0b73ac0f-1aca-444e-a22f-d1d72c628af6,https://biolit.fr/sorties/sortie-0b73ac0f-1aca-444e-a22f-d1d72c628af6/,Phil,,11/08/2019,12.0000000,12.0:15,48.628617000000,-3.844459000000,,Plouezoc'h - Finistère,39811,observation-0b73ac0f-1aca-444e-a22f-d1d72c628af6-4,https://biolit.fr/observations/observation-0b73ac0f-1aca-444e-a22f-d1d72c628af6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191108_121059.jpg,,FALSE, +N1,59247,sortie-83abba39-0ed9-4537-9eb3-74ff284e4897,https://biolit.fr/sorties/sortie-83abba39-0ed9-4537-9eb3-74ff284e4897/,Phil,,10/22/2019 0:00,12.0000000,12.0:55,48.10074600000,-4.345824000000,,Tréboul - Finistère,39813,observation-83abba39-0ed9-4537-9eb3-74ff284e4897,https://biolit.fr/observations/observation-83abba39-0ed9-4537-9eb3-74ff284e4897/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191022_124006.jpg,,FALSE, +N1,59247,sortie-83abba39-0ed9-4537-9eb3-74ff284e4897,https://biolit.fr/sorties/sortie-83abba39-0ed9-4537-9eb3-74ff284e4897/,Phil,,10/22/2019 0:00,12.0000000,12.0:55,48.10074600000,-4.345824000000,,Tréboul - Finistère,39815,observation-83abba39-0ed9-4537-9eb3-74ff284e4897-2,https://biolit.fr/observations/observation-83abba39-0ed9-4537-9eb3-74ff284e4897-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191022_124013.jpg,,FALSE, +N1,59247,sortie-83abba39-0ed9-4537-9eb3-74ff284e4897,https://biolit.fr/sorties/sortie-83abba39-0ed9-4537-9eb3-74ff284e4897/,Phil,,10/22/2019 0:00,12.0000000,12.0:55,48.10074600000,-4.345824000000,,Tréboul - Finistère,39817,observation-83abba39-0ed9-4537-9eb3-74ff284e4897-3,https://biolit.fr/observations/observation-83abba39-0ed9-4537-9eb3-74ff284e4897-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191022_124050.jpg,,FALSE, +N1,59248,sortie-f73dabe1-b60c-4b6e-aae7-7ac3c934ade0,https://biolit.fr/sorties/sortie-f73dabe1-b60c-4b6e-aae7-7ac3c934ade0/,Phil,,05/05/2019,12.0:55,13.0000000,47.799724000000,-4.179774000000,,Loctudy - Finistère,39819,observation-f73dabe1-b60c-4b6e-aae7-7ac3c934ade0,https://biolit.fr/observations/observation-f73dabe1-b60c-4b6e-aae7-7ac3c934ade0/,Aeolidia filomenae,Eolis de Filomène,,https://biolit.fr/wp-content/uploads/2023/07/20190505_125708.jpg,,TRUE, +N1,59248,sortie-f73dabe1-b60c-4b6e-aae7-7ac3c934ade0,https://biolit.fr/sorties/sortie-f73dabe1-b60c-4b6e-aae7-7ac3c934ade0/,Phil,,05/05/2019,12.0:55,13.0000000,47.799724000000,-4.179774000000,,Loctudy - Finistère,39821,observation-f73dabe1-b60c-4b6e-aae7-7ac3c934ade0-2,https://biolit.fr/observations/observation-f73dabe1-b60c-4b6e-aae7-7ac3c934ade0-2/,Aeolidia filomenae,Eolis de Filomène,,https://biolit.fr/wp-content/uploads/2023/07/20190505_125634.jpg,,TRUE, +N1,59248,sortie-f73dabe1-b60c-4b6e-aae7-7ac3c934ade0,https://biolit.fr/sorties/sortie-f73dabe1-b60c-4b6e-aae7-7ac3c934ade0/,Phil,,05/05/2019,12.0:55,13.0000000,47.799724000000,-4.179774000000,,Loctudy - Finistère,39823,observation-f73dabe1-b60c-4b6e-aae7-7ac3c934ade0-3,https://biolit.fr/observations/observation-f73dabe1-b60c-4b6e-aae7-7ac3c934ade0-3/,Aeolidia filomenae,Eolis de Filomène,,https://biolit.fr/wp-content/uploads/2023/07/20190505_125552.jpg,,TRUE, +N1,59248,sortie-f73dabe1-b60c-4b6e-aae7-7ac3c934ade0,https://biolit.fr/sorties/sortie-f73dabe1-b60c-4b6e-aae7-7ac3c934ade0/,Phil,,05/05/2019,12.0:55,13.0000000,47.799724000000,-4.179774000000,,Loctudy - Finistère,39825,observation-f73dabe1-b60c-4b6e-aae7-7ac3c934ade0-4,https://biolit.fr/observations/observation-f73dabe1-b60c-4b6e-aae7-7ac3c934ade0-4/,Aeolidia filomenae,Eolis de Filomène,,https://biolit.fr/wp-content/uploads/2023/07/20190505_125419.jpg,,TRUE, +N1,59249,sortie-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a,https://biolit.fr/sorties/sortie-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a/,Phil,,10/29/2019 0:00,11.0:45,11.0000000,47.845077000000,-4.166316000000,,ÎleTudy - Finistère,39827,observation-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a,https://biolit.fr/observations/observation-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20191029_114710.jpg,,TRUE, +N1,59249,sortie-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a,https://biolit.fr/sorties/sortie-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a/,Phil,,10/29/2019 0:00,11.0:45,11.0000000,47.845077000000,-4.166316000000,,ÎleTudy - Finistère,39829,observation-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a-2,https://biolit.fr/observations/observation-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a-2/,Calliblepharis ciliata,Algue ciliée,,https://biolit.fr/wp-content/uploads/2023/07/20191029_114615.jpg,,TRUE, +N1,59249,sortie-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a,https://biolit.fr/sorties/sortie-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a/,Phil,,10/29/2019 0:00,11.0:45,11.0000000,47.845077000000,-4.166316000000,,ÎleTudy - Finistère,39831,observation-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a-3,https://biolit.fr/observations/observation-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191029_114620.jpg,,FALSE, +N1,59249,sortie-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a,https://biolit.fr/sorties/sortie-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a/,Phil,,10/29/2019 0:00,11.0:45,11.0000000,47.845077000000,-4.166316000000,,ÎleTudy - Finistère,39833,observation-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a-4,https://biolit.fr/observations/observation-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a-4/,Dosinia exoleta,Dosinie radiée,,https://biolit.fr/wp-content/uploads/2023/07/20191029_114558.jpg,,TRUE, +N1,59249,sortie-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a,https://biolit.fr/sorties/sortie-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a/,Phil,,10/29/2019 0:00,11.0:45,11.0000000,47.845077000000,-4.166316000000,,ÎleTudy - Finistère,39835,observation-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a-5,https://biolit.fr/observations/observation-d29e1dd8-c1f3-40d0-8dde-3d0e884fb36a-5/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/20191029_114739-scaled.jpg,,TRUE, +N1,59250,sortie-fc4ec33b-2c2f-4336-8c16-c4610a3cf321,https://biolit.fr/sorties/sortie-fc4ec33b-2c2f-4336-8c16-c4610a3cf321/,Bigoudie,,10/22/2019 0:00,17.0000000,19.0000000,47.367892000000,-2.546764000000,,"Plage du Grand Lanroué, Piriac sur Mer (44)",39837,observation-fc4ec33b-2c2f-4336-8c16-c4610a3cf321,https://biolit.fr/observations/observation-fc4ec33b-2c2f-4336-8c16-c4610a3cf321/,Lissoclinum perforatum,Didemne lisse perforé,,https://biolit.fr/wp-content/uploads/2023/07/Synascidie-scaled.jpg,,TRUE, +N1,59250,sortie-fc4ec33b-2c2f-4336-8c16-c4610a3cf321,https://biolit.fr/sorties/sortie-fc4ec33b-2c2f-4336-8c16-c4610a3cf321/,Bigoudie,,10/22/2019 0:00,17.0000000,19.0000000,47.367892000000,-2.546764000000,,"Plage du Grand Lanroué, Piriac sur Mer (44)",39839,observation-fc4ec33b-2c2f-4336-8c16-c4610a3cf321-2,https://biolit.fr/observations/observation-fc4ec33b-2c2f-4336-8c16-c4610a3cf321-2/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botrylle etoile (1)-scaled.jpg,,TRUE, +N1,59250,sortie-fc4ec33b-2c2f-4336-8c16-c4610a3cf321,https://biolit.fr/sorties/sortie-fc4ec33b-2c2f-4336-8c16-c4610a3cf321/,Bigoudie,,10/22/2019 0:00,17.0000000,19.0000000,47.367892000000,-2.546764000000,,"Plage du Grand Lanroué, Piriac sur Mer (44)",39841,observation-fc4ec33b-2c2f-4336-8c16-c4610a3cf321-3,https://biolit.fr/observations/observation-fc4ec33b-2c2f-4336-8c16-c4610a3cf321-3/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botrylle etoile (2)-scaled.jpg,,TRUE, +N1,59250,sortie-fc4ec33b-2c2f-4336-8c16-c4610a3cf321,https://biolit.fr/sorties/sortie-fc4ec33b-2c2f-4336-8c16-c4610a3cf321/,Bigoudie,,10/22/2019 0:00,17.0000000,19.0000000,47.367892000000,-2.546764000000,,"Plage du Grand Lanroué, Piriac sur Mer (44)",39843,observation-fc4ec33b-2c2f-4336-8c16-c4610a3cf321-4,https://biolit.fr/observations/observation-fc4ec33b-2c2f-4336-8c16-c4610a3cf321-4/,Dysidea fragilis,Eponge mie de pain mouillée,,https://biolit.fr/wp-content/uploads/2023/07/eponge epineuse blanche-scaled.jpg,,TRUE, +N1,59250,sortie-fc4ec33b-2c2f-4336-8c16-c4610a3cf321,https://biolit.fr/sorties/sortie-fc4ec33b-2c2f-4336-8c16-c4610a3cf321/,Bigoudie,,10/22/2019 0:00,17.0000000,19.0000000,47.367892000000,-2.546764000000,,"Plage du Grand Lanroué, Piriac sur Mer (44)",39845,observation-fc4ec33b-2c2f-4336-8c16-c4610a3cf321-5,https://biolit.fr/observations/observation-fc4ec33b-2c2f-4336-8c16-c4610a3cf321-5/,Sabella spallanzanii,Spirographe,,https://biolit.fr/wp-content/uploads/2023/07/Spirographe-scaled.jpg,,TRUE, +N1,59251,sortie-77349209-23ec-48ad-88b2-91800e87de13,https://biolit.fr/sorties/sortie-77349209-23ec-48ad-88b2-91800e87de13/,carmin89,,10/26/2019 0:00,9.0000000,10.0000000,43.036322000000,6.127436000000,,Plage du Niel,39847,observation-77349209-23ec-48ad-88b2-91800e87de13,https://biolit.fr/observations/observation-77349209-23ec-48ad-88b2-91800e87de13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20191026_091023b-scaled.jpg,,FALSE, +N1,59251,sortie-77349209-23ec-48ad-88b2-91800e87de13,https://biolit.fr/sorties/sortie-77349209-23ec-48ad-88b2-91800e87de13/,carmin89,,10/26/2019 0:00,9.0000000,10.0000000,43.036322000000,6.127436000000,,Plage du Niel,39849,observation-77349209-23ec-48ad-88b2-91800e87de13-2,https://biolit.fr/observations/observation-77349209-23ec-48ad-88b2-91800e87de13-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20191026_091040b.jpg,,FALSE, +N1,59251,sortie-77349209-23ec-48ad-88b2-91800e87de13,https://biolit.fr/sorties/sortie-77349209-23ec-48ad-88b2-91800e87de13/,carmin89,,10/26/2019 0:00,9.0000000,10.0000000,43.036322000000,6.127436000000,,Plage du Niel,39851,observation-77349209-23ec-48ad-88b2-91800e87de13-3,https://biolit.fr/observations/observation-77349209-23ec-48ad-88b2-91800e87de13-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20191026_091052b.jpg,,FALSE, +N1,59251,sortie-77349209-23ec-48ad-88b2-91800e87de13,https://biolit.fr/sorties/sortie-77349209-23ec-48ad-88b2-91800e87de13/,carmin89,,10/26/2019 0:00,9.0000000,10.0000000,43.036322000000,6.127436000000,,Plage du Niel,39853,observation-77349209-23ec-48ad-88b2-91800e87de13-4,https://biolit.fr/observations/observation-77349209-23ec-48ad-88b2-91800e87de13-4/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20191026_091136b.jpg,,TRUE, +N1,59251,sortie-77349209-23ec-48ad-88b2-91800e87de13,https://biolit.fr/sorties/sortie-77349209-23ec-48ad-88b2-91800e87de13/,carmin89,,10/26/2019 0:00,9.0000000,10.0000000,43.036322000000,6.127436000000,,Plage du Niel,39855,observation-77349209-23ec-48ad-88b2-91800e87de13-5,https://biolit.fr/observations/observation-77349209-23ec-48ad-88b2-91800e87de13-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20191026_091151b.jpg,,FALSE, +N1,59251,sortie-77349209-23ec-48ad-88b2-91800e87de13,https://biolit.fr/sorties/sortie-77349209-23ec-48ad-88b2-91800e87de13/,carmin89,,10/26/2019 0:00,9.0000000,10.0000000,43.036322000000,6.127436000000,,Plage du Niel,39857,observation-77349209-23ec-48ad-88b2-91800e87de13-6,https://biolit.fr/observations/observation-77349209-23ec-48ad-88b2-91800e87de13-6/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20191026_091211b.jpg,,TRUE, +N1,59251,sortie-77349209-23ec-48ad-88b2-91800e87de13,https://biolit.fr/sorties/sortie-77349209-23ec-48ad-88b2-91800e87de13/,carmin89,,10/26/2019 0:00,9.0000000,10.0000000,43.036322000000,6.127436000000,,Plage du Niel,39859,observation-77349209-23ec-48ad-88b2-91800e87de13-7,https://biolit.fr/observations/observation-77349209-23ec-48ad-88b2-91800e87de13-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20191026_091219b-scaled.jpg,,FALSE, +N1,59251,sortie-77349209-23ec-48ad-88b2-91800e87de13,https://biolit.fr/sorties/sortie-77349209-23ec-48ad-88b2-91800e87de13/,carmin89,,10/26/2019 0:00,9.0000000,10.0000000,43.036322000000,6.127436000000,,Plage du Niel,39861,observation-77349209-23ec-48ad-88b2-91800e87de13-8,https://biolit.fr/observations/observation-77349209-23ec-48ad-88b2-91800e87de13-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20191026_091245b-scaled.jpg,,FALSE, +N1,59251,sortie-77349209-23ec-48ad-88b2-91800e87de13,https://biolit.fr/sorties/sortie-77349209-23ec-48ad-88b2-91800e87de13/,carmin89,,10/26/2019 0:00,9.0000000,10.0000000,43.036322000000,6.127436000000,,Plage du Niel,39863,observation-77349209-23ec-48ad-88b2-91800e87de13-9,https://biolit.fr/observations/observation-77349209-23ec-48ad-88b2-91800e87de13-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20191026_091443b-scaled.jpg,,FALSE, +N1,59251,sortie-77349209-23ec-48ad-88b2-91800e87de13,https://biolit.fr/sorties/sortie-77349209-23ec-48ad-88b2-91800e87de13/,carmin89,,10/26/2019 0:00,9.0000000,10.0000000,43.036322000000,6.127436000000,,Plage du Niel,39865,observation-77349209-23ec-48ad-88b2-91800e87de13-10,https://biolit.fr/observations/observation-77349209-23ec-48ad-88b2-91800e87de13-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20191026_091744b-scaled.jpg,,FALSE, +N1,59251,sortie-77349209-23ec-48ad-88b2-91800e87de13,https://biolit.fr/sorties/sortie-77349209-23ec-48ad-88b2-91800e87de13/,carmin89,,10/26/2019 0:00,9.0000000,10.0000000,43.036322000000,6.127436000000,,Plage du Niel,39867,observation-77349209-23ec-48ad-88b2-91800e87de13-11,https://biolit.fr/observations/observation-77349209-23ec-48ad-88b2-91800e87de13-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20191026_092006b-scaled.jpg,,FALSE, +N1,59252,sortie-8c73c3cc-9e21-4d58-8393-701941a925b6,https://biolit.fr/sorties/sortie-8c73c3cc-9e21-4d58-8393-701941a925b6/,Phil,,9/19/2019 0:00,12.000005,12.0000000,47.792072000000,-4.286608000000,,Guilvinec - Finistère,39869,observation-8c73c3cc-9e21-4d58-8393-701941a925b6,https://biolit.fr/observations/observation-8c73c3cc-9e21-4d58-8393-701941a925b6/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20190919_120922.jpg,,TRUE, +N1,59252,sortie-8c73c3cc-9e21-4d58-8393-701941a925b6,https://biolit.fr/sorties/sortie-8c73c3cc-9e21-4d58-8393-701941a925b6/,Phil,,9/19/2019 0:00,12.000005,12.0000000,47.792072000000,-4.286608000000,,Guilvinec - Finistère,39871,observation-8c73c3cc-9e21-4d58-8393-701941a925b6-2,https://biolit.fr/observations/observation-8c73c3cc-9e21-4d58-8393-701941a925b6-2/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20190919_120944.jpg,,TRUE, +N1,59252,sortie-8c73c3cc-9e21-4d58-8393-701941a925b6,https://biolit.fr/sorties/sortie-8c73c3cc-9e21-4d58-8393-701941a925b6/,Phil,,9/19/2019 0:00,12.000005,12.0000000,47.792072000000,-4.286608000000,,Guilvinec - Finistère,39873,observation-8c73c3cc-9e21-4d58-8393-701941a925b6-3,https://biolit.fr/observations/observation-8c73c3cc-9e21-4d58-8393-701941a925b6-3/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20190919_120930.jpg,,TRUE, +N1,59252,sortie-8c73c3cc-9e21-4d58-8393-701941a925b6,https://biolit.fr/sorties/sortie-8c73c3cc-9e21-4d58-8393-701941a925b6/,Phil,,9/19/2019 0:00,12.000005,12.0000000,47.792072000000,-4.286608000000,,Guilvinec - Finistère,39875,observation-8c73c3cc-9e21-4d58-8393-701941a925b6-4,https://biolit.fr/observations/observation-8c73c3cc-9e21-4d58-8393-701941a925b6-4/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20190919_121006.jpg,,TRUE, +N1,59253,sortie-3685a256-6140-4076-9e97-ec8439683132,https://biolit.fr/sorties/sortie-3685a256-6140-4076-9e97-ec8439683132/,Phil,,10/28/2019 0:00,10.0:45,10.0000000,47.797824000000,-4.330527000000,,Penmarc'h - Finistère,39877,observation-3685a256-6140-4076-9e97-ec8439683132,https://biolit.fr/observations/observation-3685a256-6140-4076-9e97-ec8439683132/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20191028_104839.jpg,,TRUE, +N1,59253,sortie-3685a256-6140-4076-9e97-ec8439683132,https://biolit.fr/sorties/sortie-3685a256-6140-4076-9e97-ec8439683132/,Phil,,10/28/2019 0:00,10.0:45,10.0000000,47.797824000000,-4.330527000000,,Penmarc'h - Finistère,39879,observation-3685a256-6140-4076-9e97-ec8439683132-2,https://biolit.fr/observations/observation-3685a256-6140-4076-9e97-ec8439683132-2/,Matthiola sinuata,Giroflée des dunes,,https://biolit.fr/wp-content/uploads/2023/07/20191028_104748.jpg,,TRUE, +N1,59253,sortie-3685a256-6140-4076-9e97-ec8439683132,https://biolit.fr/sorties/sortie-3685a256-6140-4076-9e97-ec8439683132/,Phil,,10/28/2019 0:00,10.0:45,10.0000000,47.797824000000,-4.330527000000,,Penmarc'h - Finistère,39881,observation-3685a256-6140-4076-9e97-ec8439683132-3,https://biolit.fr/observations/observation-3685a256-6140-4076-9e97-ec8439683132-3/,Lutraria lutraria,Lutraire elliptique,,https://biolit.fr/wp-content/uploads/2023/07/20191028_104709.jpg,,TRUE, +N1,59253,sortie-3685a256-6140-4076-9e97-ec8439683132,https://biolit.fr/sorties/sortie-3685a256-6140-4076-9e97-ec8439683132/,Phil,,10/28/2019 0:00,10.0:45,10.0000000,47.797824000000,-4.330527000000,,Penmarc'h - Finistère,39883,observation-3685a256-6140-4076-9e97-ec8439683132-4,https://biolit.fr/observations/observation-3685a256-6140-4076-9e97-ec8439683132-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20191028_104631.jpg,,FALSE, +N1,59254,sortie-7c26a98a-82c9-435d-a95c-7e2162482b10,https://biolit.fr/sorties/sortie-7c26a98a-82c9-435d-a95c-7e2162482b10/,Phil,,05/05/2019,12.0:25,12.0:55,47.800276000000,-4.179813000000,,Loctudy - Finistère,39885,observation-7c26a98a-82c9-435d-a95c-7e2162482b10,https://biolit.fr/observations/observation-7c26a98a-82c9-435d-a95c-7e2162482b10/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20190505_122307.jpg,,TRUE, +N1,59254,sortie-7c26a98a-82c9-435d-a95c-7e2162482b10,https://biolit.fr/sorties/sortie-7c26a98a-82c9-435d-a95c-7e2162482b10/,Phil,,05/05/2019,12.0:25,12.0:55,47.800276000000,-4.179813000000,,Loctudy - Finistère,39887,observation-7c26a98a-82c9-435d-a95c-7e2162482b10-2,https://biolit.fr/observations/observation-7c26a98a-82c9-435d-a95c-7e2162482b10-2/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20190505_122319.jpg,,TRUE, +N1,59254,sortie-7c26a98a-82c9-435d-a95c-7e2162482b10,https://biolit.fr/sorties/sortie-7c26a98a-82c9-435d-a95c-7e2162482b10/,Phil,,05/05/2019,12.0:25,12.0:55,47.800276000000,-4.179813000000,,Loctudy - Finistère,39889,observation-7c26a98a-82c9-435d-a95c-7e2162482b10-3,https://biolit.fr/observations/observation-7c26a98a-82c9-435d-a95c-7e2162482b10-3/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20190505_123731.jpg,,TRUE, +N1,59254,sortie-7c26a98a-82c9-435d-a95c-7e2162482b10,https://biolit.fr/sorties/sortie-7c26a98a-82c9-435d-a95c-7e2162482b10/,Phil,,05/05/2019,12.0:25,12.0:55,47.800276000000,-4.179813000000,,Loctudy - Finistère,39891,observation-7c26a98a-82c9-435d-a95c-7e2162482b10-4,https://biolit.fr/observations/observation-7c26a98a-82c9-435d-a95c-7e2162482b10-4/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20190505_123749.jpg,,TRUE, +N1,59254,sortie-7c26a98a-82c9-435d-a95c-7e2162482b10,https://biolit.fr/sorties/sortie-7c26a98a-82c9-435d-a95c-7e2162482b10/,Phil,,05/05/2019,12.0:25,12.0:55,47.800276000000,-4.179813000000,,Loctudy - Finistère,39893,observation-7c26a98a-82c9-435d-a95c-7e2162482b10-5,https://biolit.fr/observations/observation-7c26a98a-82c9-435d-a95c-7e2162482b10-5/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20190505_123852.jpg,,TRUE, +N1,59254,sortie-7c26a98a-82c9-435d-a95c-7e2162482b10,https://biolit.fr/sorties/sortie-7c26a98a-82c9-435d-a95c-7e2162482b10/,Phil,,05/05/2019,12.0:25,12.0:55,47.800276000000,-4.179813000000,,Loctudy - Finistère,39895,observation-7c26a98a-82c9-435d-a95c-7e2162482b10-6,https://biolit.fr/observations/observation-7c26a98a-82c9-435d-a95c-7e2162482b10-6/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20190505_123829.jpg,,TRUE, +N1,59255,sortie-ce9ec24f-944a-437b-a3d3-9cc210f4d5fd,https://biolit.fr/sorties/sortie-ce9ec24f-944a-437b-a3d3-9cc210f4d5fd/,Caterina Casagranda,,11/02/2018,14.0000000,17.0000000,43.316403000000,5.280502000000,,Rade nord de Marseille,39897,observation-ce9ec24f-944a-437b-a3d3-9cc210f4d5fd,https://biolit.fr/observations/observation-ce9ec24f-944a-437b-a3d3-9cc210f4d5fd/,Xiphias gladius,Espadon,,https://biolit.fr/wp-content/uploads/2023/07/Espadon photo Frédéric Larrey.jpg,,TRUE, +N1,59256,sortie-eb013d12-64c8-4778-8646-915002e69f1f,https://biolit.fr/sorties/sortie-eb013d12-64c8-4778-8646-915002e69f1f/,CPIE Littoral Basque,,10/30/2019 0:00,10.0000000,12.0000000,43.383254000000,-1.755131000000,CPIE Littoral Basque - Euskal Itsasbazterra,Hendaye ,39899,observation-eb013d12-64c8-4778-8646-915002e69f1f,https://biolit.fr/observations/observation-eb013d12-64c8-4778-8646-915002e69f1f/,Dictyota dichotoma,Dictyote,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4417-scaled.jpg,,TRUE, +N1,59256,sortie-eb013d12-64c8-4778-8646-915002e69f1f,https://biolit.fr/sorties/sortie-eb013d12-64c8-4778-8646-915002e69f1f/,CPIE Littoral Basque,,10/30/2019 0:00,10.0000000,12.0000000,43.383254000000,-1.755131000000,CPIE Littoral Basque - Euskal Itsasbazterra,Hendaye ,39901,observation-eb013d12-64c8-4778-8646-915002e69f1f-2,https://biolit.fr/observations/observation-eb013d12-64c8-4778-8646-915002e69f1f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4426.JPG,,FALSE, +N1,59256,sortie-eb013d12-64c8-4778-8646-915002e69f1f,https://biolit.fr/sorties/sortie-eb013d12-64c8-4778-8646-915002e69f1f/,CPIE Littoral Basque,,10/30/2019 0:00,10.0000000,12.0000000,43.383254000000,-1.755131000000,CPIE Littoral Basque - Euskal Itsasbazterra,Hendaye ,39903,observation-eb013d12-64c8-4778-8646-915002e69f1f-3,https://biolit.fr/observations/observation-eb013d12-64c8-4778-8646-915002e69f1f-3/,Apletodon dentatus,Porte-écuelle à petite tête,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4428.JPG,,TRUE, +N1,59256,sortie-eb013d12-64c8-4778-8646-915002e69f1f,https://biolit.fr/sorties/sortie-eb013d12-64c8-4778-8646-915002e69f1f/,CPIE Littoral Basque,,10/30/2019 0:00,10.0000000,12.0000000,43.383254000000,-1.755131000000,CPIE Littoral Basque - Euskal Itsasbazterra,Hendaye ,39905,observation-eb013d12-64c8-4778-8646-915002e69f1f-4,https://biolit.fr/observations/observation-eb013d12-64c8-4778-8646-915002e69f1f-4/,Janua heterostropha,Spirorbe de Pagenstecher,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4430.JPG,,TRUE, +N1,59256,sortie-eb013d12-64c8-4778-8646-915002e69f1f,https://biolit.fr/sorties/sortie-eb013d12-64c8-4778-8646-915002e69f1f/,CPIE Littoral Basque,,10/30/2019 0:00,10.0000000,12.0000000,43.383254000000,-1.755131000000,CPIE Littoral Basque - Euskal Itsasbazterra,Hendaye ,39907,observation-eb013d12-64c8-4778-8646-915002e69f1f-5,https://biolit.fr/observations/observation-eb013d12-64c8-4778-8646-915002e69f1f-5/,Chondria coerulescens,Chondria bleue,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4457-scaled.jpg,,TRUE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39909,observation-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234/,,,,https://biolit.fr/wp-content/uploads/2023/07/Acteon tornalitis.PNG,,FALSE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39911,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-2,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-2/,Aporrhais pespelecani,Pied de pélican commun,,https://biolit.fr/wp-content/uploads/2023/07/Apporhais pespelicani.PNG,,TRUE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39913,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-3,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Arcopagia crassa.PNG,,FALSE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39914,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-4,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-4/,Barnea candida,Pholade blanche,,https://biolit.fr/wp-content/uploads/2023/07/Barnea candida.PNG,,TRUE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39916,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-5,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Calyptreae chinensis.PNG,,FALSE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39917,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-6,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-6/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/cancer pagurus.PNG,,TRUE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39918,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-7,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Capsella variegata.PNG,,FALSE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39920,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-8,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Chamelea striatula.PNG,,FALSE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39921,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-9,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/clausinella fasciata.PNG,,FALSE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39923,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-10,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mangelia attenuata.PNG,,FALSE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39925,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-11,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-11/,Dosinia exoleta,Dosinie radiée,,https://biolit.fr/wp-content/uploads/2023/07/dosinia exoleta.PNG,,TRUE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39926,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-12,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Dosisnia lupinus.PNG,,FALSE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39928,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-13,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gari tellinella.PNG,,FALSE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39930,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-14,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-14/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Glycymeris glycymeris.PNG,,TRUE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39931,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-15,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/lucinoma borealis.PNG,,FALSE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39933,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-16,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-16/,Lutraria magna,Grande lutraire,,https://biolit.fr/wp-content/uploads/2023/07/Lutraria magna.PNG,,TRUE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39934,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-17,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-17/,Mactra glauca,Mactre fauve,,https://biolit.fr/wp-content/uploads/2023/07/Mactra glauca.PNG,,TRUE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39935,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-18,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-18/,Striarca lactea,Striarca laiteuse,,https://biolit.fr/wp-content/uploads/2023/07/Striarca lactea.PNG,,TRUE, +N1,59257,sortie-a325c0b3-1271-4ff9-8350-4740ffb75234,https://biolit.fr/sorties/sortie-a325c0b3-1271-4ff9-8350-4740ffb75234/,Roman,,10/22/2019 0:00,15.0000000,17.0000000,47.69548100000,-3.344152000000,,Le linès,39937,observation-a325c0b3-1271-4ff9-8350-4740ffb75234-19,https://biolit.fr/observations/observation-a325c0b3-1271-4ff9-8350-4740ffb75234-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/Tellina incarnata.PNG,,FALSE, +N1,59258,sortie-1922ab7a-9974-4e87-9184-32aeb514e4b5,https://biolit.fr/sorties/sortie-1922ab7a-9974-4e87-9184-32aeb514e4b5/,helemog,,10/30/2019 0:00,16.0000000,18.0000000,43.46255800000,-1.576748000000,,Plage de Milady à Biarritz,39938,observation-1922ab7a-9974-4e87-9184-32aeb514e4b5,https://biolit.fr/observations/observation-1922ab7a-9974-4e87-9184-32aeb514e4b5/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue_Milady_25-10-19.jpg,,FALSE, +N1,59259,sortie-83857262-26ad-4a4d-aaa7-7cd62fb52949,https://biolit.fr/sorties/sortie-83857262-26ad-4a4d-aaa7-7cd62fb52949/,Roman,,10/23/2019 0:00,15.0000000,17.0000000,47.689894000000,-3.195193000000,,Pont-lorois,39940,observation-83857262-26ad-4a4d-aaa7-7cd62fb52949,https://biolit.fr/observations/observation-83857262-26ad-4a4d-aaa7-7cd62fb52949/,,,,https://biolit.fr/wp-content/uploads/2023/07/Aiptasia mutabilis.PNG,,FALSE, +N1,59259,sortie-83857262-26ad-4a4d-aaa7-7cd62fb52949,https://biolit.fr/sorties/sortie-83857262-26ad-4a4d-aaa7-7cd62fb52949/,Roman,,10/23/2019 0:00,15.0000000,17.0000000,47.689894000000,-3.195193000000,,Pont-lorois,39941,observation-83857262-26ad-4a4d-aaa7-7cd62fb52949-2,https://biolit.fr/observations/observation-83857262-26ad-4a4d-aaa7-7cd62fb52949-2/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/Athanas nitescens.PNG,,TRUE, +N1,59259,sortie-83857262-26ad-4a4d-aaa7-7cd62fb52949,https://biolit.fr/sorties/sortie-83857262-26ad-4a4d-aaa7-7cd62fb52949/,Roman,,10/23/2019 0:00,15.0000000,17.0000000,47.689894000000,-3.195193000000,,Pont-lorois,39942,observation-83857262-26ad-4a4d-aaa7-7cd62fb52949-3,https://biolit.fr/observations/observation-83857262-26ad-4a4d-aaa7-7cd62fb52949-3/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/asterias rubens 1.PNG,,TRUE, +N1,59259,sortie-83857262-26ad-4a4d-aaa7-7cd62fb52949,https://biolit.fr/sorties/sortie-83857262-26ad-4a4d-aaa7-7cd62fb52949/,Roman,,10/23/2019 0:00,15.0000000,17.0000000,47.689894000000,-3.195193000000,,Pont-lorois,39944,observation-83857262-26ad-4a4d-aaa7-7cd62fb52949-4,https://biolit.fr/observations/observation-83857262-26ad-4a4d-aaa7-7cd62fb52949-4/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus-scaled.jpg,,TRUE, +N1,59259,sortie-83857262-26ad-4a4d-aaa7-7cd62fb52949,https://biolit.fr/sorties/sortie-83857262-26ad-4a4d-aaa7-7cd62fb52949/,Roman,,10/23/2019 0:00,15.0000000,17.0000000,47.689894000000,-3.195193000000,,Pont-lorois,39945,observation-83857262-26ad-4a4d-aaa7-7cd62fb52949-5,https://biolit.fr/observations/observation-83857262-26ad-4a4d-aaa7-7cd62fb52949-5/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/chthmalus stellatus.PNG,,TRUE, +N1,59259,sortie-83857262-26ad-4a4d-aaa7-7cd62fb52949,https://biolit.fr/sorties/sortie-83857262-26ad-4a4d-aaa7-7cd62fb52949/,Roman,,10/23/2019 0:00,15.0000000,17.0000000,47.689894000000,-3.195193000000,,Pont-lorois,39947,observation-83857262-26ad-4a4d-aaa7-7cd62fb52949-6,https://biolit.fr/observations/observation-83857262-26ad-4a4d-aaa7-7cd62fb52949-6/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/elimnius modestus.PNG,,TRUE, +N1,59259,sortie-83857262-26ad-4a4d-aaa7-7cd62fb52949,https://biolit.fr/sorties/sortie-83857262-26ad-4a4d-aaa7-7cd62fb52949/,Roman,,10/23/2019 0:00,15.0000000,17.0000000,47.689894000000,-3.195193000000,,Pont-lorois,39949,observation-83857262-26ad-4a4d-aaa7-7cd62fb52949-7,https://biolit.fr/observations/observation-83857262-26ad-4a4d-aaa7-7cd62fb52949-7/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber-scaled.jpg,,TRUE, +N1,59259,sortie-83857262-26ad-4a4d-aaa7-7cd62fb52949,https://biolit.fr/sorties/sortie-83857262-26ad-4a4d-aaa7-7cd62fb52949/,Roman,,10/23/2019 0:00,15.0000000,17.0000000,47.689894000000,-3.195193000000,,Pont-lorois,39950,observation-83857262-26ad-4a4d-aaa7-7cd62fb52949-8,https://biolit.fr/observations/observation-83857262-26ad-4a4d-aaa7-7cd62fb52949-8/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/xantho hydrophilus 1.PNG,,TRUE, +N1,59260,sortie-bdb15666-f3ba-4577-9b35-65e663a5ef12,https://biolit.fr/sorties/sortie-bdb15666-f3ba-4577-9b35-65e663a5ef12/,Valornitho,,10/12/2019,14.0000000,17.0000000,48.685574000000,-2.316888000000,,Cap Fréhel,39952,observation-bdb15666-f3ba-4577-9b35-65e663a5ef12,https://biolit.fr/observations/observation-bdb15666-f3ba-4577-9b35-65e663a5ef12/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0410_0.JPG,,FALSE, +N1,59260,sortie-bdb15666-f3ba-4577-9b35-65e663a5ef12,https://biolit.fr/sorties/sortie-bdb15666-f3ba-4577-9b35-65e663a5ef12/,Valornitho,,10/12/2019,14.0000000,17.0000000,48.685574000000,-2.316888000000,,Cap Fréhel,39954,observation-bdb15666-f3ba-4577-9b35-65e663a5ef12-2,https://biolit.fr/observations/observation-bdb15666-f3ba-4577-9b35-65e663a5ef12-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0411_0.JPG,,FALSE, +N1,59261,sortie-402a36d9-38fb-4b13-b7b4-d45db58be8de,https://biolit.fr/sorties/sortie-402a36d9-38fb-4b13-b7b4-d45db58be8de/,Phil,,8/13/2019 0:00,19.0000000,19.0000000,47.796424000000,-4.327014000000,,Penmarc'h - Finistère,39956,observation-402a36d9-38fb-4b13-b7b4-d45db58be8de,https://biolit.fr/observations/observation-402a36d9-38fb-4b13-b7b4-d45db58be8de/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120798.JPG,,TRUE, +N1,59261,sortie-402a36d9-38fb-4b13-b7b4-d45db58be8de,https://biolit.fr/sorties/sortie-402a36d9-38fb-4b13-b7b4-d45db58be8de/,Phil,,8/13/2019 0:00,19.0000000,19.0000000,47.796424000000,-4.327014000000,,Penmarc'h - Finistère,39958,observation-402a36d9-38fb-4b13-b7b4-d45db58be8de-2,https://biolit.fr/observations/observation-402a36d9-38fb-4b13-b7b4-d45db58be8de-2/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120788.JPG,,TRUE, +N1,59261,sortie-402a36d9-38fb-4b13-b7b4-d45db58be8de,https://biolit.fr/sorties/sortie-402a36d9-38fb-4b13-b7b4-d45db58be8de/,Phil,,8/13/2019 0:00,19.0000000,19.0000000,47.796424000000,-4.327014000000,,Penmarc'h - Finistère,39960,observation-402a36d9-38fb-4b13-b7b4-d45db58be8de-3,https://biolit.fr/observations/observation-402a36d9-38fb-4b13-b7b4-d45db58be8de-3/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120803.JPG,,TRUE, +N1,59261,sortie-402a36d9-38fb-4b13-b7b4-d45db58be8de,https://biolit.fr/sorties/sortie-402a36d9-38fb-4b13-b7b4-d45db58be8de/,Phil,,8/13/2019 0:00,19.0000000,19.0000000,47.796424000000,-4.327014000000,,Penmarc'h - Finistère,39962,observation-402a36d9-38fb-4b13-b7b4-d45db58be8de-4,https://biolit.fr/observations/observation-402a36d9-38fb-4b13-b7b4-d45db58be8de-4/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120806.JPG,,TRUE, +N1,59261,sortie-402a36d9-38fb-4b13-b7b4-d45db58be8de,https://biolit.fr/sorties/sortie-402a36d9-38fb-4b13-b7b4-d45db58be8de/,Phil,,8/13/2019 0:00,19.0000000,19.0000000,47.796424000000,-4.327014000000,,Penmarc'h - Finistère,39964,observation-402a36d9-38fb-4b13-b7b4-d45db58be8de-5,https://biolit.fr/observations/observation-402a36d9-38fb-4b13-b7b4-d45db58be8de-5/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120807.JPG,,TRUE, +N1,59261,sortie-402a36d9-38fb-4b13-b7b4-d45db58be8de,https://biolit.fr/sorties/sortie-402a36d9-38fb-4b13-b7b4-d45db58be8de/,Phil,,8/13/2019 0:00,19.0000000,19.0000000,47.796424000000,-4.327014000000,,Penmarc'h - Finistère,39966,observation-402a36d9-38fb-4b13-b7b4-d45db58be8de-6,https://biolit.fr/observations/observation-402a36d9-38fb-4b13-b7b4-d45db58be8de-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120809.JPG,,FALSE, +N1,59262,sortie-ff036e76-f687-4813-8886-d21cb47ce006,https://biolit.fr/sorties/sortie-ff036e76-f687-4813-8886-d21cb47ce006/,Phil,,7/22/2018 0:00,14.0:55,15.0000000,47.725045000000,-3.974092000000,,Fouesnant - Finistère,39968,observation-ff036e76-f687-4813-8886-d21cb47ce006,https://biolit.fr/observations/observation-ff036e76-f687-4813-8886-d21cb47ce006/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120032.JPG,,FALSE, +N1,59262,sortie-ff036e76-f687-4813-8886-d21cb47ce006,https://biolit.fr/sorties/sortie-ff036e76-f687-4813-8886-d21cb47ce006/,Phil,,7/22/2018 0:00,14.0:55,15.0000000,47.725045000000,-3.974092000000,,Fouesnant - Finistère,39970,observation-ff036e76-f687-4813-8886-d21cb47ce006-2,https://biolit.fr/observations/observation-ff036e76-f687-4813-8886-d21cb47ce006-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120034.JPG,,FALSE, +N1,59262,sortie-ff036e76-f687-4813-8886-d21cb47ce006,https://biolit.fr/sorties/sortie-ff036e76-f687-4813-8886-d21cb47ce006/,Phil,,7/22/2018 0:00,14.0:55,15.0000000,47.725045000000,-3.974092000000,,Fouesnant - Finistère,39972,observation-ff036e76-f687-4813-8886-d21cb47ce006-3,https://biolit.fr/observations/observation-ff036e76-f687-4813-8886-d21cb47ce006-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120031.JPG,,FALSE, +N1,59262,sortie-ff036e76-f687-4813-8886-d21cb47ce006,https://biolit.fr/sorties/sortie-ff036e76-f687-4813-8886-d21cb47ce006/,Phil,,7/22/2018 0:00,14.0:55,15.0000000,47.725045000000,-3.974092000000,,Fouesnant - Finistère,39974,observation-ff036e76-f687-4813-8886-d21cb47ce006-4,https://biolit.fr/observations/observation-ff036e76-f687-4813-8886-d21cb47ce006-4/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1120028.JPG,,TRUE, +N1,59263,sortie-0ef5c5b8-3af5-4b7d-a592-f7424c8461da,https://biolit.fr/sorties/sortie-0ef5c5b8-3af5-4b7d-a592-f7424c8461da/,Phil,,05/05/2019,12.0000000,12.0000000,47.799259000000,-4.178053000000,,Loctudy - Finistère,39976,observation-0ef5c5b8-3af5-4b7d-a592-f7424c8461da,https://biolit.fr/observations/observation-0ef5c5b8-3af5-4b7d-a592-f7424c8461da/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20190505_122137.jpg,,TRUE, +N1,59263,sortie-0ef5c5b8-3af5-4b7d-a592-f7424c8461da,https://biolit.fr/sorties/sortie-0ef5c5b8-3af5-4b7d-a592-f7424c8461da/,Phil,,05/05/2019,12.0000000,12.0000000,47.799259000000,-4.178053000000,,Loctudy - Finistère,39978,observation-0ef5c5b8-3af5-4b7d-a592-f7424c8461da-2,https://biolit.fr/observations/observation-0ef5c5b8-3af5-4b7d-a592-f7424c8461da-2/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20190505_122155.jpg,,TRUE, +N1,59263,sortie-0ef5c5b8-3af5-4b7d-a592-f7424c8461da,https://biolit.fr/sorties/sortie-0ef5c5b8-3af5-4b7d-a592-f7424c8461da/,Phil,,05/05/2019,12.0000000,12.0000000,47.799259000000,-4.178053000000,,Loctudy - Finistère,39980,observation-0ef5c5b8-3af5-4b7d-a592-f7424c8461da-3,https://biolit.fr/observations/observation-0ef5c5b8-3af5-4b7d-a592-f7424c8461da-3/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20190505_122215.jpg,,TRUE, +N1,59263,sortie-0ef5c5b8-3af5-4b7d-a592-f7424c8461da,https://biolit.fr/sorties/sortie-0ef5c5b8-3af5-4b7d-a592-f7424c8461da/,Phil,,05/05/2019,12.0000000,12.0000000,47.799259000000,-4.178053000000,,Loctudy - Finistère,39982,observation-0ef5c5b8-3af5-4b7d-a592-f7424c8461da-4,https://biolit.fr/observations/observation-0ef5c5b8-3af5-4b7d-a592-f7424c8461da-4/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20190505_122233.jpg,,TRUE, +N1,59263,sortie-0ef5c5b8-3af5-4b7d-a592-f7424c8461da,https://biolit.fr/sorties/sortie-0ef5c5b8-3af5-4b7d-a592-f7424c8461da/,Phil,,05/05/2019,12.0000000,12.0000000,47.799259000000,-4.178053000000,,Loctudy - Finistère,39984,observation-0ef5c5b8-3af5-4b7d-a592-f7424c8461da-5,https://biolit.fr/observations/observation-0ef5c5b8-3af5-4b7d-a592-f7424c8461da-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20190505_121211.jpg,,TRUE, +N1,59264,sortie-facde69a-035e-43dd-a6ba-c0d91d817db2,https://biolit.fr/sorties/sortie-facde69a-035e-43dd-a6ba-c0d91d817db2/,Phil,,09/03/2019,15.000005,15.0000000,47.894434000000,-3.967953000000,,La Forêt-Fouesnant - Finistère,39986,observation-facde69a-035e-43dd-a6ba-c0d91d817db2,https://biolit.fr/observations/observation-facde69a-035e-43dd-a6ba-c0d91d817db2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120869.JPG,,FALSE, +N1,59264,sortie-facde69a-035e-43dd-a6ba-c0d91d817db2,https://biolit.fr/sorties/sortie-facde69a-035e-43dd-a6ba-c0d91d817db2/,Phil,,09/03/2019,15.000005,15.0000000,47.894434000000,-3.967953000000,,La Forêt-Fouesnant - Finistère,39988,observation-facde69a-035e-43dd-a6ba-c0d91d817db2-2,https://biolit.fr/observations/observation-facde69a-035e-43dd-a6ba-c0d91d817db2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120863.JPG,,FALSE, +N1,59265,sortie-315afe24-8c6b-433e-8a11-451cfb3b671e,https://biolit.fr/sorties/sortie-315afe24-8c6b-433e-8a11-451cfb3b671e/,Phil,,09/03/2019,14.0:35,14.0000000,47.880146000000,-3.932174000000,,Concarneau - Finistère,39990,observation-315afe24-8c6b-433e-8a11-451cfb3b671e,https://biolit.fr/observations/observation-315afe24-8c6b-433e-8a11-451cfb3b671e/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/P1120859.JPG,,TRUE, +N1,59265,sortie-315afe24-8c6b-433e-8a11-451cfb3b671e,https://biolit.fr/sorties/sortie-315afe24-8c6b-433e-8a11-451cfb3b671e/,Phil,,09/03/2019,14.0:35,14.0000000,47.880146000000,-3.932174000000,,Concarneau - Finistère,39992,observation-315afe24-8c6b-433e-8a11-451cfb3b671e-2,https://biolit.fr/observations/observation-315afe24-8c6b-433e-8a11-451cfb3b671e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120858.JPG,,FALSE, +N1,59265,sortie-315afe24-8c6b-433e-8a11-451cfb3b671e,https://biolit.fr/sorties/sortie-315afe24-8c6b-433e-8a11-451cfb3b671e/,Phil,,09/03/2019,14.0:35,14.0000000,47.880146000000,-3.932174000000,,Concarneau - Finistère,39994,observation-315afe24-8c6b-433e-8a11-451cfb3b671e-3,https://biolit.fr/observations/observation-315afe24-8c6b-433e-8a11-451cfb3b671e-3/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/P1120856.JPG,,TRUE, +N1,59266,sortie-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5,https://biolit.fr/sorties/sortie-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5/,Phil,,5/19/2019 0:00,11.0000000,11.0000000,47.799403000000,-4.179313000000,,Loctudy - Finistère,39996,observation-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5,https://biolit.fr/observations/observation-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20190519_110807.jpg,,TRUE, +N1,59266,sortie-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5,https://biolit.fr/sorties/sortie-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5/,Phil,,5/19/2019 0:00,11.0000000,11.0000000,47.799403000000,-4.179313000000,,Loctudy - Finistère,39998,observation-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5-2,https://biolit.fr/observations/observation-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190519_111030.jpg,,TRUE, +N1,59266,sortie-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5,https://biolit.fr/sorties/sortie-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5/,Phil,,5/19/2019 0:00,11.0000000,11.0000000,47.799403000000,-4.179313000000,,Loctudy - Finistère,40000,observation-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5-3,https://biolit.fr/observations/observation-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5-3/,Sycon ciliatum,Eponge petit œuf,,https://biolit.fr/wp-content/uploads/2023/07/20190519_111439.jpg,,TRUE, +N1,59266,sortie-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5,https://biolit.fr/sorties/sortie-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5/,Phil,,5/19/2019 0:00,11.0000000,11.0000000,47.799403000000,-4.179313000000,,Loctudy - Finistère,40002,observation-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5-4,https://biolit.fr/observations/observation-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5-4/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20190519_111504.jpg,,TRUE, +N1,59266,sortie-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5,https://biolit.fr/sorties/sortie-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5/,Phil,,5/19/2019 0:00,11.0000000,11.0000000,47.799403000000,-4.179313000000,,Loctudy - Finistère,40004,observation-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5-5,https://biolit.fr/observations/observation-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5-5/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/20190519_112020.jpg,,TRUE, +N1,59266,sortie-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5,https://biolit.fr/sorties/sortie-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5/,Phil,,5/19/2019 0:00,11.0000000,11.0000000,47.799403000000,-4.179313000000,,Loctudy - Finistère,40006,observation-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5-6,https://biolit.fr/observations/observation-2bdfa70c-63fd-4f4f-b3b1-8d70433f9bf5-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190519_112929.jpg,,FALSE, +N1,59267,sortie-bfd65706-73ae-45c4-95e2-9dc18632b0f0,https://biolit.fr/sorties/sortie-bfd65706-73ae-45c4-95e2-9dc18632b0f0/,Phil,,9/19/2019 0:00,12.000005,12.0000000,47.791859000000,-4.286436000000,,Guilvinec - Finistère,40008,observation-bfd65706-73ae-45c4-95e2-9dc18632b0f0,https://biolit.fr/observations/observation-bfd65706-73ae-45c4-95e2-9dc18632b0f0/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20190919_120644.jpg,,TRUE, +N1,59267,sortie-bfd65706-73ae-45c4-95e2-9dc18632b0f0,https://biolit.fr/sorties/sortie-bfd65706-73ae-45c4-95e2-9dc18632b0f0/,Phil,,9/19/2019 0:00,12.000005,12.0000000,47.791859000000,-4.286436000000,,Guilvinec - Finistère,40010,observation-bfd65706-73ae-45c4-95e2-9dc18632b0f0-2,https://biolit.fr/observations/observation-bfd65706-73ae-45c4-95e2-9dc18632b0f0-2/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20190919_120733.jpg,,TRUE, +N1,59267,sortie-bfd65706-73ae-45c4-95e2-9dc18632b0f0,https://biolit.fr/sorties/sortie-bfd65706-73ae-45c4-95e2-9dc18632b0f0/,Phil,,9/19/2019 0:00,12.000005,12.0000000,47.791859000000,-4.286436000000,,Guilvinec - Finistère,40012,observation-bfd65706-73ae-45c4-95e2-9dc18632b0f0-3,https://biolit.fr/observations/observation-bfd65706-73ae-45c4-95e2-9dc18632b0f0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190919_120832.jpg,,FALSE, +N1,59268,sortie-df40b7b5-47c9-4beb-8c34-627c5b50e2bc,https://biolit.fr/sorties/sortie-df40b7b5-47c9-4beb-8c34-627c5b50e2bc/,Phil,,09/09/2019,16.0000000,16.0:35,47.861092000000,-3.983833000000,,Fouesnant - Finistère,40014,observation-df40b7b5-47c9-4beb-8c34-627c5b50e2bc,https://biolit.fr/observations/observation-df40b7b5-47c9-4beb-8c34-627c5b50e2bc/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190909_163727.jpg,,FALSE, +N1,59269,sortie-eff7f20a-c264-4c7b-95f2-1f9044469500,https://biolit.fr/sorties/sortie-eff7f20a-c264-4c7b-95f2-1f9044469500/,eumétazoaire,,9/19/2019 0:00,11.0000000,11.0000000,50.750490000000,1.594975000000,,Boulogne sur mer,40016,observation-eff7f20a-c264-4c7b-95f2-1f9044469500,https://biolit.fr/observations/observation-eff7f20a-c264-4c7b-95f2-1f9044469500/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorine à lignes noires-scaled.jpg,,TRUE, +N1,59269,sortie-eff7f20a-c264-4c7b-95f2-1f9044469500,https://biolit.fr/sorties/sortie-eff7f20a-c264-4c7b-95f2-1f9044469500/,eumétazoaire,,9/19/2019 0:00,11.0000000,11.0000000,50.750490000000,1.594975000000,,Boulogne sur mer,40018,observation-eff7f20a-c264-4c7b-95f2-1f9044469500-2,https://biolit.fr/observations/observation-eff7f20a-c264-4c7b-95f2-1f9044469500-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Bigorneaux_0-scaled.jpg,,TRUE, +N1,59269,sortie-eff7f20a-c264-4c7b-95f2-1f9044469500,https://biolit.fr/sorties/sortie-eff7f20a-c264-4c7b-95f2-1f9044469500/,eumétazoaire,,9/19/2019 0:00,11.0000000,11.0000000,50.750490000000,1.594975000000,,Boulogne sur mer,40020,observation-eff7f20a-c264-4c7b-95f2-1f9044469500-3,https://biolit.fr/observations/observation-eff7f20a-c264-4c7b-95f2-1f9044469500-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/nasse réticulée-scaled.jpg,,TRUE, +N1,59270,sortie-d40a420b-26ad-4536-8a4c-127d35bcc220,https://biolit.fr/sorties/sortie-d40a420b-26ad-4536-8a4c-127d35bcc220/,Phil,,05/05/2019,11.0:35,12.000005,47.79887900000,-4.179233000000,,Loctudy - Finistère,40022,observation-d40a420b-26ad-4536-8a4c-127d35bcc220,https://biolit.fr/observations/observation-d40a420b-26ad-4536-8a4c-127d35bcc220/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/20190505_120524.jpg,,TRUE, +N1,59270,sortie-d40a420b-26ad-4536-8a4c-127d35bcc220,https://biolit.fr/sorties/sortie-d40a420b-26ad-4536-8a4c-127d35bcc220/,Phil,,05/05/2019,11.0:35,12.000005,47.79887900000,-4.179233000000,,Loctudy - Finistère,40024,observation-d40a420b-26ad-4536-8a4c-127d35bcc220-2,https://biolit.fr/observations/observation-d40a420b-26ad-4536-8a4c-127d35bcc220-2/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20190505_120615.jpg,,TRUE, +N1,59270,sortie-d40a420b-26ad-4536-8a4c-127d35bcc220,https://biolit.fr/sorties/sortie-d40a420b-26ad-4536-8a4c-127d35bcc220/,Phil,,05/05/2019,11.0:35,12.000005,47.79887900000,-4.179233000000,,Loctudy - Finistère,40026,observation-d40a420b-26ad-4536-8a4c-127d35bcc220-3,https://biolit.fr/observations/observation-d40a420b-26ad-4536-8a4c-127d35bcc220-3/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20190505_120629.jpg,,TRUE, +N1,59270,sortie-d40a420b-26ad-4536-8a4c-127d35bcc220,https://biolit.fr/sorties/sortie-d40a420b-26ad-4536-8a4c-127d35bcc220/,Phil,,05/05/2019,11.0:35,12.000005,47.79887900000,-4.179233000000,,Loctudy - Finistère,40028,observation-d40a420b-26ad-4536-8a4c-127d35bcc220-4,https://biolit.fr/observations/observation-d40a420b-26ad-4536-8a4c-127d35bcc220-4/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20190505_120807.jpg,,TRUE, +N1,59270,sortie-d40a420b-26ad-4536-8a4c-127d35bcc220,https://biolit.fr/sorties/sortie-d40a420b-26ad-4536-8a4c-127d35bcc220/,Phil,,05/05/2019,11.0:35,12.000005,47.79887900000,-4.179233000000,,Loctudy - Finistère,40030,observation-d40a420b-26ad-4536-8a4c-127d35bcc220-5,https://biolit.fr/observations/observation-d40a420b-26ad-4536-8a4c-127d35bcc220-5/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20190505_120816.jpg,,TRUE, +N1,59270,sortie-d40a420b-26ad-4536-8a4c-127d35bcc220,https://biolit.fr/sorties/sortie-d40a420b-26ad-4536-8a4c-127d35bcc220/,Phil,,05/05/2019,11.0:35,12.000005,47.79887900000,-4.179233000000,,Loctudy - Finistère,40032,observation-d40a420b-26ad-4536-8a4c-127d35bcc220-6,https://biolit.fr/observations/observation-d40a420b-26ad-4536-8a4c-127d35bcc220-6/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20190505_120911.jpg,,TRUE, +N1,59271,sortie-3b16669f-9a91-4565-b610-63b9b6b188f0,https://biolit.fr/sorties/sortie-3b16669f-9a91-4565-b610-63b9b6b188f0/,Phil,,09/03/2019,14.0000000,14.0000000,47.882467000000,-3.936755000000,,Concarneau - Finistère,40034,observation-3b16669f-9a91-4565-b610-63b9b6b188f0,https://biolit.fr/observations/observation-3b16669f-9a91-4565-b610-63b9b6b188f0/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/P1120837.JPG,,TRUE, +N1,59271,sortie-3b16669f-9a91-4565-b610-63b9b6b188f0,https://biolit.fr/sorties/sortie-3b16669f-9a91-4565-b610-63b9b6b188f0/,Phil,,09/03/2019,14.0000000,14.0000000,47.882467000000,-3.936755000000,,Concarneau - Finistère,40036,observation-3b16669f-9a91-4565-b610-63b9b6b188f0-2,https://biolit.fr/observations/observation-3b16669f-9a91-4565-b610-63b9b6b188f0-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/P1120839.JPG,,TRUE, +N1,59271,sortie-3b16669f-9a91-4565-b610-63b9b6b188f0,https://biolit.fr/sorties/sortie-3b16669f-9a91-4565-b610-63b9b6b188f0/,Phil,,09/03/2019,14.0000000,14.0000000,47.882467000000,-3.936755000000,,Concarneau - Finistère,40038,observation-3b16669f-9a91-4565-b610-63b9b6b188f0-3,https://biolit.fr/observations/observation-3b16669f-9a91-4565-b610-63b9b6b188f0-3/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1120847.JPG,,TRUE, +N1,59271,sortie-3b16669f-9a91-4565-b610-63b9b6b188f0,https://biolit.fr/sorties/sortie-3b16669f-9a91-4565-b610-63b9b6b188f0/,Phil,,09/03/2019,14.0000000,14.0000000,47.882467000000,-3.936755000000,,Concarneau - Finistère,40040,observation-3b16669f-9a91-4565-b610-63b9b6b188f0-4,https://biolit.fr/observations/observation-3b16669f-9a91-4565-b610-63b9b6b188f0-4/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/P1120851.JPG,,TRUE, +N1,59271,sortie-3b16669f-9a91-4565-b610-63b9b6b188f0,https://biolit.fr/sorties/sortie-3b16669f-9a91-4565-b610-63b9b6b188f0/,Phil,,09/03/2019,14.0000000,14.0000000,47.882467000000,-3.936755000000,,Concarneau - Finistère,40042,observation-3b16669f-9a91-4565-b610-63b9b6b188f0-5,https://biolit.fr/observations/observation-3b16669f-9a91-4565-b610-63b9b6b188f0-5/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/P1120854.JPG,,TRUE, +N1,59272,sortie-3bf1a7d6-2d11-4771-97ac-173de0ba4e79,https://biolit.fr/sorties/sortie-3bf1a7d6-2d11-4771-97ac-173de0ba4e79/,Phil,,5/19/2019 0:00,10.0:45,11.000005,47.799706000000,-4.179815000000,,Loctudy - Finistère,40044,observation-3bf1a7d6-2d11-4771-97ac-173de0ba4e79,https://biolit.fr/observations/observation-3bf1a7d6-2d11-4771-97ac-173de0ba4e79/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190519_104947.jpg,,FALSE, +N1,59272,sortie-3bf1a7d6-2d11-4771-97ac-173de0ba4e79,https://biolit.fr/sorties/sortie-3bf1a7d6-2d11-4771-97ac-173de0ba4e79/,Phil,,5/19/2019 0:00,10.0:45,11.000005,47.799706000000,-4.179815000000,,Loctudy - Finistère,40046,observation-3bf1a7d6-2d11-4771-97ac-173de0ba4e79-2,https://biolit.fr/observations/observation-3bf1a7d6-2d11-4771-97ac-173de0ba4e79-2/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/20190519_105408.jpg,,TRUE, +N1,59272,sortie-3bf1a7d6-2d11-4771-97ac-173de0ba4e79,https://biolit.fr/sorties/sortie-3bf1a7d6-2d11-4771-97ac-173de0ba4e79/,Phil,,5/19/2019 0:00,10.0:45,11.000005,47.799706000000,-4.179815000000,,Loctudy - Finistère,40048,observation-3bf1a7d6-2d11-4771-97ac-173de0ba4e79-3,https://biolit.fr/observations/observation-3bf1a7d6-2d11-4771-97ac-173de0ba4e79-3/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/20190519_105426.jpg,,TRUE, +N1,59272,sortie-3bf1a7d6-2d11-4771-97ac-173de0ba4e79,https://biolit.fr/sorties/sortie-3bf1a7d6-2d11-4771-97ac-173de0ba4e79/,Phil,,5/19/2019 0:00,10.0:45,11.000005,47.799706000000,-4.179815000000,,Loctudy - Finistère,40050,observation-3bf1a7d6-2d11-4771-97ac-173de0ba4e79-4,https://biolit.fr/observations/observation-3bf1a7d6-2d11-4771-97ac-173de0ba4e79-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190519_105006.jpg,,FALSE, +N1,59272,sortie-3bf1a7d6-2d11-4771-97ac-173de0ba4e79,https://biolit.fr/sorties/sortie-3bf1a7d6-2d11-4771-97ac-173de0ba4e79/,Phil,,5/19/2019 0:00,10.0:45,11.000005,47.799706000000,-4.179815000000,,Loctudy - Finistère,40052,observation-3bf1a7d6-2d11-4771-97ac-173de0ba4e79-5,https://biolit.fr/observations/observation-3bf1a7d6-2d11-4771-97ac-173de0ba4e79-5/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20190519_105840.jpg,,TRUE, +N1,59272,sortie-3bf1a7d6-2d11-4771-97ac-173de0ba4e79,https://biolit.fr/sorties/sortie-3bf1a7d6-2d11-4771-97ac-173de0ba4e79/,Phil,,5/19/2019 0:00,10.0:45,11.000005,47.799706000000,-4.179815000000,,Loctudy - Finistère,40054,observation-3bf1a7d6-2d11-4771-97ac-173de0ba4e79-6,https://biolit.fr/observations/observation-3bf1a7d6-2d11-4771-97ac-173de0ba4e79-6/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20190519_110044.jpg,,TRUE, +N1,59272,sortie-3bf1a7d6-2d11-4771-97ac-173de0ba4e79,https://biolit.fr/sorties/sortie-3bf1a7d6-2d11-4771-97ac-173de0ba4e79/,Phil,,5/19/2019 0:00,10.0:45,11.000005,47.799706000000,-4.179815000000,,Loctudy - Finistère,40056,observation-3bf1a7d6-2d11-4771-97ac-173de0ba4e79-7,https://biolit.fr/observations/observation-3bf1a7d6-2d11-4771-97ac-173de0ba4e79-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190519_110357.jpg,,FALSE, +N1,59273,sortie-065b4b50-d0c2-4fa4-984d-8cf6e2f09983,https://biolit.fr/sorties/sortie-065b4b50-d0c2-4fa4-984d-8cf6e2f09983/,helemog,,9/15/2019 0:00,10.0000000,12.0000000,50.407213000000,1.55751000000,,Berck-plage,40058,observation-065b4b50-d0c2-4fa4-984d-8cf6e2f09983,https://biolit.fr/observations/observation-065b4b50-d0c2-4fa4-984d-8cf6e2f09983/,,,,https://biolit.fr/wp-content/uploads/2023/07/Berck_15_09_19_11h30am-scaled.jpg,,FALSE, +N1,59274,sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60,https://biolit.fr/sorties/sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60/,Roman,,9/22/2019 0:00,17.0000000,18.0000000,47.677916000000,-3.202188000000,,Pont-lorois,40060,observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60,https://biolit.fr/observations/observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis.jpg,,TRUE, +N1,59274,sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60,https://biolit.fr/sorties/sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60/,Roman,,9/22/2019 0:00,17.0000000,18.0000000,47.677916000000,-3.202188000000,,Pont-lorois,40061,observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-2,https://biolit.fr/observations/observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-2/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asterias rubens-scaled.jpg,,TRUE, +N1,59274,sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60,https://biolit.fr/sorties/sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60/,Roman,,9/22/2019 0:00,17.0000000,18.0000000,47.677916000000,-3.202188000000,,Pont-lorois,40062,observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-3,https://biolit.fr/observations/observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-3/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/asterina gibbosa.PNG,,TRUE, +N1,59274,sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60,https://biolit.fr/sorties/sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60/,Roman,,9/22/2019 0:00,17.0000000,18.0000000,47.677916000000,-3.202188000000,,Pont-lorois,40063,observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-4,https://biolit.fr/observations/observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-4/,Epitonium clathrus,Scalaire,,https://biolit.fr/wp-content/uploads/2023/07/Epitonium clathrus.PNG,,TRUE, +N1,59274,sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60,https://biolit.fr/sorties/sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60/,Roman,,9/22/2019 0:00,17.0000000,18.0000000,47.677916000000,-3.202188000000,,Pont-lorois,40064,observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-5,https://biolit.fr/observations/observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-5/,Gari depressa,Psammobie déprimée,,https://biolit.fr/wp-content/uploads/2023/07/Gari depressa.jpg,,TRUE, +N1,59274,sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60,https://biolit.fr/sorties/sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60/,Roman,,9/22/2019 0:00,17.0000000,18.0000000,47.677916000000,-3.202188000000,,Pont-lorois,40065,observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-6,https://biolit.fr/observations/observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-6/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/Haliotis tuberculata.PNG,,TRUE, +N1,59274,sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60,https://biolit.fr/sorties/sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60/,Roman,,9/22/2019 0:00,17.0000000,18.0000000,47.677916000000,-3.202188000000,,Pont-lorois,40066,observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-7,https://biolit.fr/observations/observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-7/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina fabalis.PNG,,TRUE, +N1,59274,sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60,https://biolit.fr/sorties/sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60/,Roman,,9/22/2019 0:00,17.0000000,18.0000000,47.677916000000,-3.202188000000,,Pont-lorois,40067,observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-8,https://biolit.fr/observations/observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-8/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/Ophiotrix fragilis.PNG,,TRUE, +N1,59274,sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60,https://biolit.fr/sorties/sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60/,Roman,,9/22/2019 0:00,17.0000000,18.0000000,47.677916000000,-3.202188000000,,Pont-lorois,40068,observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-9,https://biolit.fr/observations/observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-9/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/porcellana platycheles 1.PNG,,TRUE, +N1,59274,sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60,https://biolit.fr/sorties/sortie-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60/,Roman,,9/22/2019 0:00,17.0000000,18.0000000,47.677916000000,-3.202188000000,,Pont-lorois,40070,observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-10,https://biolit.fr/observations/observation-a9a1dadb-72dd-4449-b2d9-0e41b5a3bf60-10/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris1.PNG,,TRUE, +N1,59275,sortie-c80aefdf-45cd-452f-9432-acc65f6d3850,https://biolit.fr/sorties/sortie-c80aefdf-45cd-452f-9432-acc65f6d3850/,Phil,,9/19/2019 0:00,12.000005,12.0000000,47.791818000000,-4.286543000000,,Guilvinec - Finistère,40072,observation-c80aefdf-45cd-452f-9432-acc65f6d3850,https://biolit.fr/observations/observation-c80aefdf-45cd-452f-9432-acc65f6d3850/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190919_120505.jpg,,TRUE, +N1,59275,sortie-c80aefdf-45cd-452f-9432-acc65f6d3850,https://biolit.fr/sorties/sortie-c80aefdf-45cd-452f-9432-acc65f6d3850/,Phil,,9/19/2019 0:00,12.000005,12.0000000,47.791818000000,-4.286543000000,,Guilvinec - Finistère,40074,observation-c80aefdf-45cd-452f-9432-acc65f6d3850-2,https://biolit.fr/observations/observation-c80aefdf-45cd-452f-9432-acc65f6d3850-2/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/20190919_120524.jpg,,TRUE, +N1,59275,sortie-c80aefdf-45cd-452f-9432-acc65f6d3850,https://biolit.fr/sorties/sortie-c80aefdf-45cd-452f-9432-acc65f6d3850/,Phil,,9/19/2019 0:00,12.000005,12.0000000,47.791818000000,-4.286543000000,,Guilvinec - Finistère,40076,observation-c80aefdf-45cd-452f-9432-acc65f6d3850-3,https://biolit.fr/observations/observation-c80aefdf-45cd-452f-9432-acc65f6d3850-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190919_120421.jpg,,TRUE, +N1,59275,sortie-c80aefdf-45cd-452f-9432-acc65f6d3850,https://biolit.fr/sorties/sortie-c80aefdf-45cd-452f-9432-acc65f6d3850/,Phil,,9/19/2019 0:00,12.000005,12.0000000,47.791818000000,-4.286543000000,,Guilvinec - Finistère,40078,observation-c80aefdf-45cd-452f-9432-acc65f6d3850-4,https://biolit.fr/observations/observation-c80aefdf-45cd-452f-9432-acc65f6d3850-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190919_120423.jpg,,TRUE, +N1,59275,sortie-c80aefdf-45cd-452f-9432-acc65f6d3850,https://biolit.fr/sorties/sortie-c80aefdf-45cd-452f-9432-acc65f6d3850/,Phil,,9/19/2019 0:00,12.000005,12.0000000,47.791818000000,-4.286543000000,,Guilvinec - Finistère,40080,observation-c80aefdf-45cd-452f-9432-acc65f6d3850-5,https://biolit.fr/observations/observation-c80aefdf-45cd-452f-9432-acc65f6d3850-5/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190919_120433.jpg,,TRUE, +N1,59276,sortie-07fd2951-477a-40e6-90b5-95557880249c,https://biolit.fr/sorties/sortie-07fd2951-477a-40e6-90b5-95557880249c/,Roman,,9/20/2019 0:00,15.0000000,16.0000000,47.704030000000,-3.35016000000,,Port-louis,40082,observation-07fd2951-477a-40e6-90b5-95557880249c,https://biolit.fr/observations/observation-07fd2951-477a-40e6-90b5-95557880249c/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus.PNG,,TRUE, +N1,59276,sortie-07fd2951-477a-40e6-90b5-95557880249c,https://biolit.fr/sorties/sortie-07fd2951-477a-40e6-90b5-95557880249c/,Roman,,9/20/2019 0:00,15.0000000,16.0000000,47.704030000000,-3.35016000000,,Port-louis,40083,observation-07fd2951-477a-40e6-90b5-95557880249c-2,https://biolit.fr/observations/observation-07fd2951-477a-40e6-90b5-95557880249c-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas-scaled.jpg,,TRUE, +N1,59276,sortie-07fd2951-477a-40e6-90b5-95557880249c,https://biolit.fr/sorties/sortie-07fd2951-477a-40e6-90b5-95557880249c/,Roman,,9/20/2019 0:00,15.0000000,16.0000000,47.704030000000,-3.35016000000,,Port-louis,40084,observation-07fd2951-477a-40e6-90b5-95557880249c-3,https://biolit.fr/observations/observation-07fd2951-477a-40e6-90b5-95557880249c-3/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebra erinaceus.PNG,,TRUE, +N1,59276,sortie-07fd2951-477a-40e6-90b5-95557880249c,https://biolit.fr/sorties/sortie-07fd2951-477a-40e6-90b5-95557880249c/,Roman,,9/20/2019 0:00,15.0000000,16.0000000,47.704030000000,-3.35016000000,,Port-louis,40085,observation-07fd2951-477a-40e6-90b5-95557880249c-4,https://biolit.fr/observations/observation-07fd2951-477a-40e6-90b5-95557880249c-4/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/Palaemon elegans.PNG,,TRUE, +N1,59276,sortie-07fd2951-477a-40e6-90b5-95557880249c,https://biolit.fr/sorties/sortie-07fd2951-477a-40e6-90b5-95557880249c/,Roman,,9/20/2019 0:00,15.0000000,16.0000000,47.704030000000,-3.35016000000,,Port-louis,40086,observation-07fd2951-477a-40e6-90b5-95557880249c-5,https://biolit.fr/observations/observation-07fd2951-477a-40e6-90b5-95557880249c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/pododesmus patelliformis.PNG,,FALSE, +N1,59276,sortie-07fd2951-477a-40e6-90b5-95557880249c,https://biolit.fr/sorties/sortie-07fd2951-477a-40e6-90b5-95557880249c/,Roman,,9/20/2019 0:00,15.0000000,16.0000000,47.704030000000,-3.35016000000,,Port-louis,40088,observation-07fd2951-477a-40e6-90b5-95557880249c-6,https://biolit.fr/observations/observation-07fd2951-477a-40e6-90b5-95557880249c-6/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus.PNG,,TRUE, +N1,59276,sortie-07fd2951-477a-40e6-90b5-95557880249c,https://biolit.fr/sorties/sortie-07fd2951-477a-40e6-90b5-95557880249c/,Roman,,9/20/2019 0:00,15.0000000,16.0000000,47.704030000000,-3.35016000000,,Port-louis,40090,observation-07fd2951-477a-40e6-90b5-95557880249c-8,https://biolit.fr/observations/observation-07fd2951-477a-40e6-90b5-95557880249c-8/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea-scaled.jpg,,TRUE, +N1,59276,sortie-07fd2951-477a-40e6-90b5-95557880249c,https://biolit.fr/sorties/sortie-07fd2951-477a-40e6-90b5-95557880249c/,Roman,,9/20/2019 0:00,15.0000000,16.0000000,47.704030000000,-3.35016000000,,Port-louis,40091,observation-07fd2951-477a-40e6-90b5-95557880249c-9,https://biolit.fr/observations/observation-07fd2951-477a-40e6-90b5-95557880249c-9/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammechinus miliaris-rotated.jpg,,TRUE, +N1,59277,sortie-14999eef-242a-4c79-831c-406affb52b85,https://biolit.fr/sorties/sortie-14999eef-242a-4c79-831c-406affb52b85/,Phil,,5/19/2019 0:00,10.0:35,10.0000000,47.799369000000,-4.181189000000,,Loctudy - Finistère,40092,observation-14999eef-242a-4c79-831c-406affb52b85,https://biolit.fr/observations/observation-14999eef-242a-4c79-831c-406affb52b85/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190519_103956.jpg,,FALSE, +N1,59277,sortie-14999eef-242a-4c79-831c-406affb52b85,https://biolit.fr/sorties/sortie-14999eef-242a-4c79-831c-406affb52b85/,Phil,,5/19/2019 0:00,10.0:35,10.0000000,47.799369000000,-4.181189000000,,Loctudy - Finistère,40094,observation-14999eef-242a-4c79-831c-406affb52b85-2,https://biolit.fr/observations/observation-14999eef-242a-4c79-831c-406affb52b85-2/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20190519_104208.jpg,,TRUE, +N1,59277,sortie-14999eef-242a-4c79-831c-406affb52b85,https://biolit.fr/sorties/sortie-14999eef-242a-4c79-831c-406affb52b85/,Phil,,5/19/2019 0:00,10.0:35,10.0000000,47.799369000000,-4.181189000000,,Loctudy - Finistère,40096,observation-14999eef-242a-4c79-831c-406affb52b85-3,https://biolit.fr/observations/observation-14999eef-242a-4c79-831c-406affb52b85-3/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190519_104444.jpg,,TRUE, +N1,59277,sortie-14999eef-242a-4c79-831c-406affb52b85,https://biolit.fr/sorties/sortie-14999eef-242a-4c79-831c-406affb52b85/,Phil,,5/19/2019 0:00,10.0:35,10.0000000,47.799369000000,-4.181189000000,,Loctudy - Finistère,40098,observation-14999eef-242a-4c79-831c-406affb52b85-4,https://biolit.fr/observations/observation-14999eef-242a-4c79-831c-406affb52b85-4/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20190519_104943.jpg,,TRUE, +N1,59278,sortie-3f71aef7-85ea-438b-9973-f9eee4c5af00,https://biolit.fr/sorties/sortie-3f71aef7-85ea-438b-9973-f9eee4c5af00/,Phil,,4/13/2019 0:00,14.0:35,14.0:45,48.625926000000,-4.546563000000,,Plouguerneau - Finistère,40100,observation-3f71aef7-85ea-438b-9973-f9eee4c5af00,https://biolit.fr/observations/observation-3f71aef7-85ea-438b-9973-f9eee4c5af00/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20190413_144543.jpg,,TRUE, +N1,59278,sortie-3f71aef7-85ea-438b-9973-f9eee4c5af00,https://biolit.fr/sorties/sortie-3f71aef7-85ea-438b-9973-f9eee4c5af00/,Phil,,4/13/2019 0:00,14.0:35,14.0:45,48.625926000000,-4.546563000000,,Plouguerneau - Finistère,40102,observation-3f71aef7-85ea-438b-9973-f9eee4c5af00-2,https://biolit.fr/observations/observation-3f71aef7-85ea-438b-9973-f9eee4c5af00-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20190413_144551.jpg,,TRUE, +N1,59278,sortie-3f71aef7-85ea-438b-9973-f9eee4c5af00,https://biolit.fr/sorties/sortie-3f71aef7-85ea-438b-9973-f9eee4c5af00/,Phil,,4/13/2019 0:00,14.0:35,14.0:45,48.625926000000,-4.546563000000,,Plouguerneau - Finistère,40104,observation-3f71aef7-85ea-438b-9973-f9eee4c5af00-3,https://biolit.fr/observations/observation-3f71aef7-85ea-438b-9973-f9eee4c5af00-3/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/20190413_144601.jpg,,TRUE, +N1,59279,sortie-19d8b716-230a-422b-a699-a13cb1f72278,https://biolit.fr/sorties/sortie-19d8b716-230a-422b-a699-a13cb1f72278/,Phil,,05/05/2019,11.0:25,12.0000000,47.798683000000,-4.179066000000,,Loctudy - Finistère,40106,observation-19d8b716-230a-422b-a699-a13cb1f72278,https://biolit.fr/observations/observation-19d8b716-230a-422b-a699-a13cb1f72278/,Atherina presbyter,Prêtre,,https://biolit.fr/wp-content/uploads/2023/07/20190505_115858.jpg,,TRUE, +N1,59279,sortie-19d8b716-230a-422b-a699-a13cb1f72278,https://biolit.fr/sorties/sortie-19d8b716-230a-422b-a699-a13cb1f72278/,Phil,,05/05/2019,11.0:25,12.0000000,47.798683000000,-4.179066000000,,Loctudy - Finistère,40108,observation-19d8b716-230a-422b-a699-a13cb1f72278-2,https://biolit.fr/observations/observation-19d8b716-230a-422b-a699-a13cb1f72278-2/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/2023/07/20190505_115903.jpg,,TRUE, +N1,59279,sortie-19d8b716-230a-422b-a699-a13cb1f72278,https://biolit.fr/sorties/sortie-19d8b716-230a-422b-a699-a13cb1f72278/,Phil,,05/05/2019,11.0:25,12.0000000,47.798683000000,-4.179066000000,,Loctudy - Finistère,40110,observation-19d8b716-230a-422b-a699-a13cb1f72278-3,https://biolit.fr/observations/observation-19d8b716-230a-422b-a699-a13cb1f72278-3/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20190505_115913.jpg,,TRUE, +N1,59279,sortie-19d8b716-230a-422b-a699-a13cb1f72278,https://biolit.fr/sorties/sortie-19d8b716-230a-422b-a699-a13cb1f72278/,Phil,,05/05/2019,11.0:25,12.0000000,47.798683000000,-4.179066000000,,Loctudy - Finistère,40112,observation-19d8b716-230a-422b-a699-a13cb1f72278-4,https://biolit.fr/observations/observation-19d8b716-230a-422b-a699-a13cb1f72278-4/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20190505_115917.jpg,,TRUE, +N1,59279,sortie-19d8b716-230a-422b-a699-a13cb1f72278,https://biolit.fr/sorties/sortie-19d8b716-230a-422b-a699-a13cb1f72278/,Phil,,05/05/2019,11.0:25,12.0000000,47.798683000000,-4.179066000000,,Loctudy - Finistère,40114,observation-19d8b716-230a-422b-a699-a13cb1f72278-5,https://biolit.fr/observations/observation-19d8b716-230a-422b-a699-a13cb1f72278-5/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/2023/07/20190505_115921.jpg,,TRUE, +N1,59279,sortie-19d8b716-230a-422b-a699-a13cb1f72278,https://biolit.fr/sorties/sortie-19d8b716-230a-422b-a699-a13cb1f72278/,Phil,,05/05/2019,11.0:25,12.0000000,47.798683000000,-4.179066000000,,Loctudy - Finistère,40116,observation-19d8b716-230a-422b-a699-a13cb1f72278-6,https://biolit.fr/observations/observation-19d8b716-230a-422b-a699-a13cb1f72278-6/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/2023/07/20190505_115937.jpg,,TRUE, +N1,59279,sortie-19d8b716-230a-422b-a699-a13cb1f72278,https://biolit.fr/sorties/sortie-19d8b716-230a-422b-a699-a13cb1f72278/,Phil,,05/05/2019,11.0:25,12.0000000,47.798683000000,-4.179066000000,,Loctudy - Finistère,40118,observation-19d8b716-230a-422b-a699-a13cb1f72278-7,https://biolit.fr/observations/observation-19d8b716-230a-422b-a699-a13cb1f72278-7/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/2023/07/20190505_120013.jpg,,TRUE, +N1,59280,sortie-574cd770-dc84-4b95-a650-51494aad589b,https://biolit.fr/sorties/sortie-574cd770-dc84-4b95-a650-51494aad589b/,Phil,,6/14/2019 0:00,12.0:15,12.0000000,47.892998000000,-4.129357000000,,Gouesnach - Finistère,40120,observation-574cd770-dc84-4b95-a650-51494aad589b,https://biolit.fr/observations/observation-574cd770-dc84-4b95-a650-51494aad589b/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20190614_122029.jpg,,TRUE, +N1,59280,sortie-574cd770-dc84-4b95-a650-51494aad589b,https://biolit.fr/sorties/sortie-574cd770-dc84-4b95-a650-51494aad589b/,Phil,,6/14/2019 0:00,12.0:15,12.0000000,47.892998000000,-4.129357000000,,Gouesnach - Finistère,40122,observation-574cd770-dc84-4b95-a650-51494aad589b-2,https://biolit.fr/observations/observation-574cd770-dc84-4b95-a650-51494aad589b-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20190614_122011.jpg,,TRUE, +N1,59280,sortie-574cd770-dc84-4b95-a650-51494aad589b,https://biolit.fr/sorties/sortie-574cd770-dc84-4b95-a650-51494aad589b/,Phil,,6/14/2019 0:00,12.0:15,12.0000000,47.892998000000,-4.129357000000,,Gouesnach - Finistère,40124,observation-574cd770-dc84-4b95-a650-51494aad589b-3,https://biolit.fr/observations/observation-574cd770-dc84-4b95-a650-51494aad589b-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20190614_121948.jpg,,TRUE, +N1,59281,sortie-b851170f-4e70-4f42-a35d-7186f9ae93d1,https://biolit.fr/sorties/sortie-b851170f-4e70-4f42-a35d-7186f9ae93d1/,Marie Bergé-Lefranc,,09/09/2019,15.0000000,15.0000000,43.445325000000,-1.589387000000,,Bidart (64),40126,observation-b851170f-4e70-4f42-a35d-7186f9ae93d1,https://biolit.fr/observations/observation-b851170f-4e70-4f42-a35d-7186f9ae93d1/,Chelidonichthys cuculus,Grondin rouge,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190909_151511_0-scaled.jpg,,TRUE, +N1,59281,sortie-b851170f-4e70-4f42-a35d-7186f9ae93d1,https://biolit.fr/sorties/sortie-b851170f-4e70-4f42-a35d-7186f9ae93d1/,Marie Bergé-Lefranc,,09/09/2019,15.0000000,15.0000000,43.445325000000,-1.589387000000,,Bidart (64),40128,observation-b851170f-4e70-4f42-a35d-7186f9ae93d1-2,https://biolit.fr/observations/observation-b851170f-4e70-4f42-a35d-7186f9ae93d1-2/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190909_152043-scaled.jpg,,TRUE, +N1,59281,sortie-b851170f-4e70-4f42-a35d-7186f9ae93d1,https://biolit.fr/sorties/sortie-b851170f-4e70-4f42-a35d-7186f9ae93d1/,Marie Bergé-Lefranc,,09/09/2019,15.0000000,15.0000000,43.445325000000,-1.589387000000,,Bidart (64),40130,observation-b851170f-4e70-4f42-a35d-7186f9ae93d1-3,https://biolit.fr/observations/observation-b851170f-4e70-4f42-a35d-7186f9ae93d1-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190909_152318-scaled.jpg,,FALSE, +N1,59281,sortie-b851170f-4e70-4f42-a35d-7186f9ae93d1,https://biolit.fr/sorties/sortie-b851170f-4e70-4f42-a35d-7186f9ae93d1/,Marie Bergé-Lefranc,,09/09/2019,15.0000000,15.0000000,43.445325000000,-1.589387000000,,Bidart (64),40132,observation-b851170f-4e70-4f42-a35d-7186f9ae93d1-4,https://biolit.fr/observations/observation-b851170f-4e70-4f42-a35d-7186f9ae93d1-4/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190909_152419-scaled.jpg,,TRUE, +N1,59281,sortie-b851170f-4e70-4f42-a35d-7186f9ae93d1,https://biolit.fr/sorties/sortie-b851170f-4e70-4f42-a35d-7186f9ae93d1/,Marie Bergé-Lefranc,,09/09/2019,15.0000000,15.0000000,43.445325000000,-1.589387000000,,Bidart (64),40134,observation-b851170f-4e70-4f42-a35d-7186f9ae93d1-5,https://biolit.fr/observations/observation-b851170f-4e70-4f42-a35d-7186f9ae93d1-5/,Solieria chordalis,Cordes de Solier,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190909_152438-scaled.jpg,,TRUE, +N1,59281,sortie-b851170f-4e70-4f42-a35d-7186f9ae93d1,https://biolit.fr/sorties/sortie-b851170f-4e70-4f42-a35d-7186f9ae93d1/,Marie Bergé-Lefranc,,09/09/2019,15.0000000,15.0000000,43.445325000000,-1.589387000000,,Bidart (64),40136,observation-b851170f-4e70-4f42-a35d-7186f9ae93d1-6,https://biolit.fr/observations/observation-b851170f-4e70-4f42-a35d-7186f9ae93d1-6/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190909_152644-scaled.jpg,,TRUE, +N1,59281,sortie-b851170f-4e70-4f42-a35d-7186f9ae93d1,https://biolit.fr/sorties/sortie-b851170f-4e70-4f42-a35d-7186f9ae93d1/,Marie Bergé-Lefranc,,09/09/2019,15.0000000,15.0000000,43.445325000000,-1.589387000000,,Bidart (64),40138,observation-b851170f-4e70-4f42-a35d-7186f9ae93d1-7,https://biolit.fr/observations/observation-b851170f-4e70-4f42-a35d-7186f9ae93d1-7/,Rhombosepion elegans,Os de seiche élégante,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190909_153453-scaled.jpg,,TRUE, +N1,59282,sortie-1e6903a4-e447-4cbb-b7a3-31e6f705b516,https://biolit.fr/sorties/sortie-1e6903a4-e447-4cbb-b7a3-31e6f705b516/,Caterina Casagranda,,09/08/2018,14.0000000,17.0000000,43.199403000000,5.229797000000,,Ile de Planier face nord,40140,observation-1e6903a4-e447-4cbb-b7a3-31e6f705b516,https://biolit.fr/observations/observation-1e6903a4-e447-4cbb-b7a3-31e6f705b516/,Calappa granulata,Crabe honteux,,https://biolit.fr/wp-content/uploads/2023/07/Crabe honteux Photo Bernat Garrigós.jpg,,TRUE, +N1,59282,sortie-1e6903a4-e447-4cbb-b7a3-31e6f705b516,https://biolit.fr/sorties/sortie-1e6903a4-e447-4cbb-b7a3-31e6f705b516/,Caterina Casagranda,,09/08/2018,14.0000000,17.0000000,43.199403000000,5.229797000000,,Ile de Planier face nord,40142,observation-1e6903a4-e447-4cbb-b7a3-31e6f705b516-2,https://biolit.fr/observations/observation-1e6903a4-e447-4cbb-b7a3-31e6f705b516-2/,Calappa granulata,Crabe honteux,,https://biolit.fr/wp-content/uploads/2023/07/Crabe honteux 2 Photo Bernat Garrigós.jpg,,TRUE, +N1,59283,sortie-d734c78b-a8f7-4cd5-9215-4807ce824b86,https://biolit.fr/sorties/sortie-d734c78b-a8f7-4cd5-9215-4807ce824b86/,Micka Green,,09/03/2019,16.0:45,17.0000000,48.639676000000,-2.071383000000,,"Dinard, plage Saint-Enogat",40144,observation-d734c78b-a8f7-4cd5-9215-4807ce824b86,https://biolit.fr/observations/observation-d734c78b-a8f7-4cd5-9215-4807ce824b86/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190903_164901_2-scaled.jpg,,TRUE, +N1,59283,sortie-d734c78b-a8f7-4cd5-9215-4807ce824b86,https://biolit.fr/sorties/sortie-d734c78b-a8f7-4cd5-9215-4807ce824b86/,Micka Green,,09/03/2019,16.0:45,17.0000000,48.639676000000,-2.071383000000,,"Dinard, plage Saint-Enogat",40146,observation-d734c78b-a8f7-4cd5-9215-4807ce824b86-2,https://biolit.fr/observations/observation-d734c78b-a8f7-4cd5-9215-4807ce824b86-2/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190903_165131_4-scaled.jpg,,TRUE, +N1,59283,sortie-d734c78b-a8f7-4cd5-9215-4807ce824b86,https://biolit.fr/sorties/sortie-d734c78b-a8f7-4cd5-9215-4807ce824b86/,Micka Green,,09/03/2019,16.0:45,17.0000000,48.639676000000,-2.071383000000,,"Dinard, plage Saint-Enogat",40148,observation-d734c78b-a8f7-4cd5-9215-4807ce824b86-3,https://biolit.fr/observations/observation-d734c78b-a8f7-4cd5-9215-4807ce824b86-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190903_165334_6-scaled.jpg,,FALSE, +N1,59283,sortie-d734c78b-a8f7-4cd5-9215-4807ce824b86,https://biolit.fr/sorties/sortie-d734c78b-a8f7-4cd5-9215-4807ce824b86/,Micka Green,,09/03/2019,16.0:45,17.0000000,48.639676000000,-2.071383000000,,"Dinard, plage Saint-Enogat",40150,observation-d734c78b-a8f7-4cd5-9215-4807ce824b86-4,https://biolit.fr/observations/observation-d734c78b-a8f7-4cd5-9215-4807ce824b86-4/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190903_165722_7-scaled.jpg,,TRUE, +N1,59283,sortie-d734c78b-a8f7-4cd5-9215-4807ce824b86,https://biolit.fr/sorties/sortie-d734c78b-a8f7-4cd5-9215-4807ce824b86/,Micka Green,,09/03/2019,16.0:45,17.0000000,48.639676000000,-2.071383000000,,"Dinard, plage Saint-Enogat",40152,observation-d734c78b-a8f7-4cd5-9215-4807ce824b86-5,https://biolit.fr/observations/observation-d734c78b-a8f7-4cd5-9215-4807ce824b86-5/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190903_170306_6-scaled.jpg,,TRUE, +N1,59284,sortie-ee63a825-635c-4f49-b1d2-ee618bdd3d3f,https://biolit.fr/sorties/sortie-ee63a825-635c-4f49-b1d2-ee618bdd3d3f/,LPO Occitanie (délégation Hérault),,8/30/2019 0:00,9.0:45,10.0:45,43.439787000000,3.681825000000,LPO Occitanie (Dt Hérault),Balaruc-les-Bains,40154,observation-ee63a825-635c-4f49-b1d2-ee618bdd3d3f,https://biolit.fr/observations/observation-ee63a825-635c-4f49-b1d2-ee618bdd3d3f/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/2023/07/20190830_095527.jpg,,TRUE, +N1,59284,sortie-ee63a825-635c-4f49-b1d2-ee618bdd3d3f,https://biolit.fr/sorties/sortie-ee63a825-635c-4f49-b1d2-ee618bdd3d3f/,LPO Occitanie (délégation Hérault),,8/30/2019 0:00,9.0:45,10.0:45,43.439787000000,3.681825000000,LPO Occitanie (Dt Hérault),Balaruc-les-Bains,40156,observation-ee63a825-635c-4f49-b1d2-ee618bdd3d3f-2,https://biolit.fr/observations/observation-ee63a825-635c-4f49-b1d2-ee618bdd3d3f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190830_101703.jpg,,FALSE, +N1,59284,sortie-ee63a825-635c-4f49-b1d2-ee618bdd3d3f,https://biolit.fr/sorties/sortie-ee63a825-635c-4f49-b1d2-ee618bdd3d3f/,LPO Occitanie (délégation Hérault),,8/30/2019 0:00,9.0:45,10.0:45,43.439787000000,3.681825000000,LPO Occitanie (Dt Hérault),Balaruc-les-Bains,40158,observation-ee63a825-635c-4f49-b1d2-ee618bdd3d3f-3,https://biolit.fr/observations/observation-ee63a825-635c-4f49-b1d2-ee618bdd3d3f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190830_101841.jpg,,FALSE, +N1,59285,sortie-e93dc79c-aee4-4924-8b53-e69cfbb7850c,https://biolit.fr/sorties/sortie-e93dc79c-aee4-4924-8b53-e69cfbb7850c/,Alice Caspar,,8/30/2019 0:00,14.0000000,18.0000000,49.333997000000,-0.396233000000,,Réserve naturelle des falaises du Cap Romain,40160,observation-e93dc79c-aee4-4924-8b53-e69cfbb7850c,https://biolit.fr/observations/observation-e93dc79c-aee4-4924-8b53-e69cfbb7850c/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Ocenebra erinaceus.PNG,,TRUE, +N1,59286,sortie-b1c0bc50-7e41-42b3-9366-fd0c55c977ba,https://biolit.fr/sorties/sortie-b1c0bc50-7e41-42b3-9366-fd0c55c977ba/,Lexton,,8/21/2019 0:00,16.0000000,17.0000000,49.361345000000,-0.846080000000,,Plage de Colleville-sur-Mer,40161,observation-b1c0bc50-7e41-42b3-9366-fd0c55c977ba,https://biolit.fr/observations/observation-b1c0bc50-7e41-42b3-9366-fd0c55c977ba/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190821_170820-scaled.jpg,,TRUE, +N1,59287,sortie-6417990c-8e25-4df3-9d38-0a8b9d90da52,https://biolit.fr/sorties/sortie-6417990c-8e25-4df3-9d38-0a8b9d90da52/,Associu Mare Vivu,,7/24/2019 0:00,18.0000000,18.0:35,42.348629000000,8.612783000000,,Girolata,40163,observation-6417990c-8e25-4df3-9d38-0a8b9d90da52,https://biolit.fr/observations/observation-6417990c-8e25-4df3-9d38-0a8b9d90da52/,Ligia italica,Ligie italienne,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20190722-WA0010-rotated.jpg,,TRUE, +N1,59287,sortie-6417990c-8e25-4df3-9d38-0a8b9d90da52,https://biolit.fr/sorties/sortie-6417990c-8e25-4df3-9d38-0a8b9d90da52/,Associu Mare Vivu,,7/24/2019 0:00,18.0000000,18.0:35,42.348629000000,8.612783000000,,Girolata,40165,observation-6417990c-8e25-4df3-9d38-0a8b9d90da52-2,https://biolit.fr/observations/observation-6417990c-8e25-4df3-9d38-0a8b9d90da52-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20190722-WA0016.jpg,,FALSE, +N1,59288,sortie-123d2b28-b9d0-4fe3-8304-424787cdc773,https://biolit.fr/sorties/sortie-123d2b28-b9d0-4fe3-8304-424787cdc773/,Associu Mare Vivu,,8/26/2019 0:00,17.0000000,19.0000000,42.348675000000,8.61275200000,,Girolata,40167,observation-123d2b28-b9d0-4fe3-8304-424787cdc773,https://biolit.fr/observations/observation-123d2b28-b9d0-4fe3-8304-424787cdc773/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20190722-WA0005.jpg,,FALSE, +N1,59288,sortie-123d2b28-b9d0-4fe3-8304-424787cdc773,https://biolit.fr/sorties/sortie-123d2b28-b9d0-4fe3-8304-424787cdc773/,Associu Mare Vivu,,8/26/2019 0:00,17.0000000,19.0000000,42.348675000000,8.61275200000,,Girolata,40169,observation-123d2b28-b9d0-4fe3-8304-424787cdc773-2,https://biolit.fr/observations/observation-123d2b28-b9d0-4fe3-8304-424787cdc773-2/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20190722-WA0008.jpg,,TRUE, +N1,59289,sortie-b85d7ec8-df8e-47dc-b749-aac50d9b1baf,https://biolit.fr/sorties/sortie-b85d7ec8-df8e-47dc-b749-aac50d9b1baf/,Associu Mare Vivu,,7/15/2019 0:00,18.0000000,18.0:45,42.729103000000,9.131218000000,,Désert des Agriates,40171,observation-b85d7ec8-df8e-47dc-b749-aac50d9b1baf,https://biolit.fr/observations/observation-b85d7ec8-df8e-47dc-b749-aac50d9b1baf/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6433-scaled.jpg,,FALSE, +N1,59290,sortie-51a093ac-6191-440b-af50-77c82db979c3,https://biolit.fr/sorties/sortie-51a093ac-6191-440b-af50-77c82db979c3/,Phil,,05/05/2019,11.0:25,11.0:55,47.799606000000,-4.179281000000,,Loctudy - Finistère,40173,observation-51a093ac-6191-440b-af50-77c82db979c3,https://biolit.fr/observations/observation-51a093ac-6191-440b-af50-77c82db979c3/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/2023/07/20190505_115705.jpg,,TRUE, +N1,59290,sortie-51a093ac-6191-440b-af50-77c82db979c3,https://biolit.fr/sorties/sortie-51a093ac-6191-440b-af50-77c82db979c3/,Phil,,05/05/2019,11.0:25,11.0:55,47.799606000000,-4.179281000000,,Loctudy - Finistère,40175,observation-51a093ac-6191-440b-af50-77c82db979c3-2,https://biolit.fr/observations/observation-51a093ac-6191-440b-af50-77c82db979c3-2/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/2023/07/20190505_115717.jpg,,TRUE, +N1,59290,sortie-51a093ac-6191-440b-af50-77c82db979c3,https://biolit.fr/sorties/sortie-51a093ac-6191-440b-af50-77c82db979c3/,Phil,,05/05/2019,11.0:25,11.0:55,47.799606000000,-4.179281000000,,Loctudy - Finistère,40177,observation-51a093ac-6191-440b-af50-77c82db979c3-3,https://biolit.fr/observations/observation-51a093ac-6191-440b-af50-77c82db979c3-3/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/2023/07/20190505_115753.jpg,,TRUE, +N1,59290,sortie-51a093ac-6191-440b-af50-77c82db979c3,https://biolit.fr/sorties/sortie-51a093ac-6191-440b-af50-77c82db979c3/,Phil,,05/05/2019,11.0:25,11.0:55,47.799606000000,-4.179281000000,,Loctudy - Finistère,40179,observation-51a093ac-6191-440b-af50-77c82db979c3-4,https://biolit.fr/observations/observation-51a093ac-6191-440b-af50-77c82db979c3-4/,Mastocarpus stellatus,Gigartine,,https://biolit.fr/wp-content/uploads/2023/07/20190505_115436.jpg,,TRUE, +N1,59290,sortie-51a093ac-6191-440b-af50-77c82db979c3,https://biolit.fr/sorties/sortie-51a093ac-6191-440b-af50-77c82db979c3/,Phil,,05/05/2019,11.0:25,11.0:55,47.799606000000,-4.179281000000,,Loctudy - Finistère,40181,observation-51a093ac-6191-440b-af50-77c82db979c3-5,https://biolit.fr/observations/observation-51a093ac-6191-440b-af50-77c82db979c3-5/,Lomentaria articulata,Algue saucisson,,https://biolit.fr/wp-content/uploads/2023/07/20190505_115449.jpg,,TRUE, +N1,59290,sortie-51a093ac-6191-440b-af50-77c82db979c3,https://biolit.fr/sorties/sortie-51a093ac-6191-440b-af50-77c82db979c3/,Phil,,05/05/2019,11.0:25,11.0:55,47.799606000000,-4.179281000000,,Loctudy - Finistère,40183,observation-51a093ac-6191-440b-af50-77c82db979c3-6,https://biolit.fr/observations/observation-51a093ac-6191-440b-af50-77c82db979c3-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_115500.jpg,,FALSE, +N1,59291,sortie-d526a326-28ed-4702-a86a-90f5b16fe976,https://biolit.fr/sorties/sortie-d526a326-28ed-4702-a86a-90f5b16fe976/,pamatelo,,8/20/2019 0:00,9.0000000,11.0000000,43.333936000000,5.197811000000,,ensues calanque de la redonne,40185,observation-d526a326-28ed-4702-a86a-90f5b16fe976,https://biolit.fr/observations/observation-d526a326-28ed-4702-a86a-90f5b16fe976/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190820_101323-scaled.jpg,,FALSE, +N1,59291,sortie-d526a326-28ed-4702-a86a-90f5b16fe976,https://biolit.fr/sorties/sortie-d526a326-28ed-4702-a86a-90f5b16fe976/,pamatelo,,8/20/2019 0:00,9.0000000,11.0000000,43.333936000000,5.197811000000,,ensues calanque de la redonne,40187,observation-d526a326-28ed-4702-a86a-90f5b16fe976-2,https://biolit.fr/observations/observation-d526a326-28ed-4702-a86a-90f5b16fe976-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190820_102530_0-scaled.jpg,,FALSE, +N1,59292,sortie-168b0393-f7df-4312-a5c1-0bf5932f3147,https://biolit.fr/sorties/sortie-168b0393-f7df-4312-a5c1-0bf5932f3147/,Phil,,8/13/2019 0:00,19.0000000,19.0000000,47.799164000000,-4.316627000000,,Penmarc'h - Finistère,40189,observation-168b0393-f7df-4312-a5c1-0bf5932f3147,https://biolit.fr/observations/observation-168b0393-f7df-4312-a5c1-0bf5932f3147/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120707.JPG,,FALSE, +N1,59292,sortie-168b0393-f7df-4312-a5c1-0bf5932f3147,https://biolit.fr/sorties/sortie-168b0393-f7df-4312-a5c1-0bf5932f3147/,Phil,,8/13/2019 0:00,19.0000000,19.0000000,47.799164000000,-4.316627000000,,Penmarc'h - Finistère,40191,observation-168b0393-f7df-4312-a5c1-0bf5932f3147-2,https://biolit.fr/observations/observation-168b0393-f7df-4312-a5c1-0bf5932f3147-2/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120685.JPG,,TRUE, +N1,59292,sortie-168b0393-f7df-4312-a5c1-0bf5932f3147,https://biolit.fr/sorties/sortie-168b0393-f7df-4312-a5c1-0bf5932f3147/,Phil,,8/13/2019 0:00,19.0000000,19.0000000,47.799164000000,-4.316627000000,,Penmarc'h - Finistère,40193,observation-168b0393-f7df-4312-a5c1-0bf5932f3147-3,https://biolit.fr/observations/observation-168b0393-f7df-4312-a5c1-0bf5932f3147-3/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120696.JPG,,TRUE, +N1,59292,sortie-168b0393-f7df-4312-a5c1-0bf5932f3147,https://biolit.fr/sorties/sortie-168b0393-f7df-4312-a5c1-0bf5932f3147/,Phil,,8/13/2019 0:00,19.0000000,19.0000000,47.799164000000,-4.316627000000,,Penmarc'h - Finistère,40195,observation-168b0393-f7df-4312-a5c1-0bf5932f3147-4,https://biolit.fr/observations/observation-168b0393-f7df-4312-a5c1-0bf5932f3147-4/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120699.JPG,,TRUE, +N1,59292,sortie-168b0393-f7df-4312-a5c1-0bf5932f3147,https://biolit.fr/sorties/sortie-168b0393-f7df-4312-a5c1-0bf5932f3147/,Phil,,8/13/2019 0:00,19.0000000,19.0000000,47.799164000000,-4.316627000000,,Penmarc'h - Finistère,40197,observation-168b0393-f7df-4312-a5c1-0bf5932f3147-5,https://biolit.fr/observations/observation-168b0393-f7df-4312-a5c1-0bf5932f3147-5/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120755.JPG,,TRUE, +N1,59292,sortie-168b0393-f7df-4312-a5c1-0bf5932f3147,https://biolit.fr/sorties/sortie-168b0393-f7df-4312-a5c1-0bf5932f3147/,Phil,,8/13/2019 0:00,19.0000000,19.0000000,47.799164000000,-4.316627000000,,Penmarc'h - Finistère,40199,observation-168b0393-f7df-4312-a5c1-0bf5932f3147-6,https://biolit.fr/observations/observation-168b0393-f7df-4312-a5c1-0bf5932f3147-6/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120771.JPG,,TRUE, +N1,59292,sortie-168b0393-f7df-4312-a5c1-0bf5932f3147,https://biolit.fr/sorties/sortie-168b0393-f7df-4312-a5c1-0bf5932f3147/,Phil,,8/13/2019 0:00,19.0000000,19.0000000,47.799164000000,-4.316627000000,,Penmarc'h - Finistère,40201,observation-168b0393-f7df-4312-a5c1-0bf5932f3147-7,https://biolit.fr/observations/observation-168b0393-f7df-4312-a5c1-0bf5932f3147-7/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120781.JPG,,TRUE, +N1,59292,sortie-168b0393-f7df-4312-a5c1-0bf5932f3147,https://biolit.fr/sorties/sortie-168b0393-f7df-4312-a5c1-0bf5932f3147/,Phil,,8/13/2019 0:00,19.0000000,19.0000000,47.799164000000,-4.316627000000,,Penmarc'h - Finistère,40203,observation-168b0393-f7df-4312-a5c1-0bf5932f3147-8,https://biolit.fr/observations/observation-168b0393-f7df-4312-a5c1-0bf5932f3147-8/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120799.JPG,,TRUE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40205,observation-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382/,Felimare cantabrica,Doris cantabrique,,https://biolit.fr/wp-content/uploads/2023/07/P8020604-scaled.jpg,,TRUE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40207,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-2,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-2/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P8020606-scaled.jpg,,TRUE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40209,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-3,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-3/,Botrylloides spp. (leachii violaceus diegensis),Botrylles,,https://biolit.fr/wp-content/uploads/2023/07/P8020608-scaled.jpg,,TRUE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40211,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-4,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-4/,Cryptosula pallasiana,Cryptosule cloche,,https://biolit.fr/wp-content/uploads/2023/07/P8020609-scaled.jpg,,TRUE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40213,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-5,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-5/,Spondyliosoma cantharus,Dorade grise,,https://biolit.fr/wp-content/uploads/2023/07/P8020611-scaled.jpg,,TRUE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40215,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-6,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-6/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P8020613-scaled.jpg,,TRUE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40217,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-7,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-7/,Thysanozoon brocchii,Ver plat à papilles,,https://biolit.fr/wp-content/uploads/2023/07/P8020614-scaled.jpg,,TRUE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40219,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-8,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8020615-scaled.jpg,,FALSE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40221,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-9,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-9/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P8020617-scaled.jpg,,TRUE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40223,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-10,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8020619-scaled.jpg,,FALSE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40225,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-11,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-11/,Spurilla neapolitana,Limace à bigoudis,,https://biolit.fr/wp-content/uploads/2023/07/P8020621-scaled.jpg,,TRUE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40227,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-12,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-12/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P8020626-scaled.jpg,,TRUE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40229,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-13,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8020627-scaled.jpg,,FALSE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40231,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-14,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8020632-scaled.jpg,,FALSE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40233,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-15,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-15/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P8020633-scaled.jpg,,TRUE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40235,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-16,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8020638-scaled.jpg,,FALSE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40237,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-17,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-17/,Doriopsilla areolata,Doris aréolée,,https://biolit.fr/wp-content/uploads/2023/07/P8020639-scaled.jpg,,TRUE, +N1,59293,sortie-c6fd5b83-39f9-4484-acdc-35296b21a382,https://biolit.fr/sorties/sortie-c6fd5b83-39f9-4484-acdc-35296b21a382/,CPIE Littoral Basque,,08/02/2019,11.0000000,13.0000000,43.381860000000,-1.756306000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux jumeaux,40239,observation-c6fd5b83-39f9-4484-acdc-35296b21a382-18,https://biolit.fr/observations/observation-c6fd5b83-39f9-4484-acdc-35296b21a382-18/,Ophioderma longicaudum,Ophiure lisse,,https://biolit.fr/wp-content/uploads/2023/07/P8020641-scaled.jpg,,TRUE, +N1,59294,sortie-b9dfc00e-7a11-4268-bf51-8de5f012001a,https://biolit.fr/sorties/sortie-b9dfc00e-7a11-4268-bf51-8de5f012001a/,Emeline 44240,,08/03/2019,14.0000000,15.0000000,47.488840000000,-2.819596000000,,"plage de kercambre,56730 Saint-Gildas-De-Rhuys,France",40241,observation-b9dfc00e-7a11-4268-bf51-8de5f012001a,https://biolit.fr/observations/observation-b9dfc00e-7a11-4268-bf51-8de5f012001a/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/20190803_143700-rotated.jpg,,TRUE, +N1,59294,sortie-b9dfc00e-7a11-4268-bf51-8de5f012001a,https://biolit.fr/sorties/sortie-b9dfc00e-7a11-4268-bf51-8de5f012001a/,Emeline 44240,,08/03/2019,14.0000000,15.0000000,47.488840000000,-2.819596000000,,"plage de kercambre,56730 Saint-Gildas-De-Rhuys,France",40243,observation-b9dfc00e-7a11-4268-bf51-8de5f012001a-2,https://biolit.fr/observations/observation-b9dfc00e-7a11-4268-bf51-8de5f012001a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190803_153805-rotated.jpg,,FALSE, +N1,59294,sortie-b9dfc00e-7a11-4268-bf51-8de5f012001a,https://biolit.fr/sorties/sortie-b9dfc00e-7a11-4268-bf51-8de5f012001a/,Emeline 44240,,08/03/2019,14.0000000,15.0000000,47.488840000000,-2.819596000000,,"plage de kercambre,56730 Saint-Gildas-De-Rhuys,France",40245,observation-b9dfc00e-7a11-4268-bf51-8de5f012001a-3,https://biolit.fr/observations/observation-b9dfc00e-7a11-4268-bf51-8de5f012001a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190803_143704-rotated.jpg,,FALSE, +N1,59294,sortie-b9dfc00e-7a11-4268-bf51-8de5f012001a,https://biolit.fr/sorties/sortie-b9dfc00e-7a11-4268-bf51-8de5f012001a/,Emeline 44240,,08/03/2019,14.0000000,15.0000000,47.488840000000,-2.819596000000,,"plage de kercambre,56730 Saint-Gildas-De-Rhuys,France",40247,observation-b9dfc00e-7a11-4268-bf51-8de5f012001a-4,https://biolit.fr/observations/observation-b9dfc00e-7a11-4268-bf51-8de5f012001a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190803_153147-rotated.jpg,,FALSE, +N1,59294,sortie-b9dfc00e-7a11-4268-bf51-8de5f012001a,https://biolit.fr/sorties/sortie-b9dfc00e-7a11-4268-bf51-8de5f012001a/,Emeline 44240,,08/03/2019,14.0000000,15.0000000,47.488840000000,-2.819596000000,,"plage de kercambre,56730 Saint-Gildas-De-Rhuys,France",40249,observation-b9dfc00e-7a11-4268-bf51-8de5f012001a-5,https://biolit.fr/observations/observation-b9dfc00e-7a11-4268-bf51-8de5f012001a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190803_153928-rotated.jpg,,FALSE, +N1,59295,sortie-45af1514-980e-4cc1-9459-da9a391549e5,https://biolit.fr/sorties/sortie-45af1514-980e-4cc1-9459-da9a391549e5/,Phil,,05/05/2019,11.0000000,11.0000000,47.799518000000,-4.1796450000,,Loctudy - Finistère,40253,observation-45af1514-980e-4cc1-9459-da9a391549e5-2,https://biolit.fr/observations/observation-45af1514-980e-4cc1-9459-da9a391549e5-2/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/20190505_115145.jpg | https://biolit.fr/wp-content/uploads/2019/05/20190505_115121.jpg,,TRUE, +N1,59295,sortie-45af1514-980e-4cc1-9459-da9a391549e5,https://biolit.fr/sorties/sortie-45af1514-980e-4cc1-9459-da9a391549e5/,Phil,,05/05/2019,11.0000000,11.0000000,47.799518000000,-4.1796450000,,Loctudy - Finistère,40255,observation-45af1514-980e-4cc1-9459-da9a391549e5-3,https://biolit.fr/observations/observation-45af1514-980e-4cc1-9459-da9a391549e5-3/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/2023/07/20190505_115244.jpg,,TRUE, +N1,59295,sortie-45af1514-980e-4cc1-9459-da9a391549e5,https://biolit.fr/sorties/sortie-45af1514-980e-4cc1-9459-da9a391549e5/,Phil,,05/05/2019,11.0000000,11.0000000,47.799518000000,-4.1796450000,,Loctudy - Finistère,40257,observation-45af1514-980e-4cc1-9459-da9a391549e5-4,https://biolit.fr/observations/observation-45af1514-980e-4cc1-9459-da9a391549e5-4/,Lomentaria articulata,Algue saucisson,,https://biolit.fr/wp-content/uploads/2023/07/20190505_115317.jpg,,TRUE, +N1,59295,sortie-45af1514-980e-4cc1-9459-da9a391549e5,https://biolit.fr/sorties/sortie-45af1514-980e-4cc1-9459-da9a391549e5/,Phil,,05/05/2019,11.0000000,11.0000000,47.799518000000,-4.1796450000,,Loctudy - Finistère,40259,observation-45af1514-980e-4cc1-9459-da9a391549e5-5,https://biolit.fr/observations/observation-45af1514-980e-4cc1-9459-da9a391549e5-5/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/2023/07/20190505_115328.jpg,,TRUE, +N1,59296,sortie-79eba2be-df1a-4f85-8d18-69241c8d42fe,https://biolit.fr/sorties/sortie-79eba2be-df1a-4f85-8d18-69241c8d42fe/,CPIE Littoral Basque,,7/31/2019 0:00,9.0000000,11.0000000,43.379848000000,-1.756510000000,,Deux jumeaux,40261,observation-79eba2be-df1a-4f85-8d18-69241c8d42fe,https://biolit.fr/observations/observation-79eba2be-df1a-4f85-8d18-69241c8d42fe/,,,,https://biolit.fr/wp-content/uploads/2023/07/P7310588-scaled.jpg,,FALSE, +N1,59296,sortie-79eba2be-df1a-4f85-8d18-69241c8d42fe,https://biolit.fr/sorties/sortie-79eba2be-df1a-4f85-8d18-69241c8d42fe/,CPIE Littoral Basque,,7/31/2019 0:00,9.0000000,11.0000000,43.379848000000,-1.756510000000,,Deux jumeaux,40263,observation-79eba2be-df1a-4f85-8d18-69241c8d42fe-2,https://biolit.fr/observations/observation-79eba2be-df1a-4f85-8d18-69241c8d42fe-2/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/P7310596-scaled.jpg,,TRUE, +N1,59296,sortie-79eba2be-df1a-4f85-8d18-69241c8d42fe,https://biolit.fr/sorties/sortie-79eba2be-df1a-4f85-8d18-69241c8d42fe/,CPIE Littoral Basque,,7/31/2019 0:00,9.0000000,11.0000000,43.379848000000,-1.756510000000,,Deux jumeaux,40265,observation-79eba2be-df1a-4f85-8d18-69241c8d42fe-3,https://biolit.fr/observations/observation-79eba2be-df1a-4f85-8d18-69241c8d42fe-3/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2711-scaled.jpg,,TRUE, +N1,59296,sortie-79eba2be-df1a-4f85-8d18-69241c8d42fe,https://biolit.fr/sorties/sortie-79eba2be-df1a-4f85-8d18-69241c8d42fe/,CPIE Littoral Basque,,7/31/2019 0:00,9.0000000,11.0000000,43.379848000000,-1.756510000000,,Deux jumeaux,40267,observation-79eba2be-df1a-4f85-8d18-69241c8d42fe-4,https://biolit.fr/observations/observation-79eba2be-df1a-4f85-8d18-69241c8d42fe-4/,Botrylloides spp. (leachii violaceus diegensis),Botrylles,,https://biolit.fr/wp-content/uploads/2023/07/P7310600-scaled.jpg,,TRUE, +N1,59296,sortie-79eba2be-df1a-4f85-8d18-69241c8d42fe,https://biolit.fr/sorties/sortie-79eba2be-df1a-4f85-8d18-69241c8d42fe/,CPIE Littoral Basque,,7/31/2019 0:00,9.0000000,11.0000000,43.379848000000,-1.756510000000,,Deux jumeaux,40269,observation-79eba2be-df1a-4f85-8d18-69241c8d42fe-5,https://biolit.fr/observations/observation-79eba2be-df1a-4f85-8d18-69241c8d42fe-5/,Janua heterostropha,Spirorbe de Pagenstecher,,https://biolit.fr/wp-content/uploads/2023/07/P7310601-scaled.jpg,,TRUE, +N1,59297,sortie-f031b9fe-e149-4e49-8145-d5a364bd0c93,https://biolit.fr/sorties/sortie-f031b9fe-e149-4e49-8145-d5a364bd0c93/,Centre de Découverte Mer et Montagne,,07/08/2019,13.0000000,16.0000000,43.506322000000,6.950867000000,,Sentier sous marin,40271,observation-f031b9fe-e149-4e49-8145-d5a364bd0c93,https://biolit.fr/observations/observation-f031b9fe-e149-4e49-8145-d5a364bd0c93/,Chromis chromis,Castagnole,,https://biolit.fr/wp-content/uploads/2023/07/CASTAGNOLE-Chromis chromis-scaled.jpg,,TRUE, +N1,59297,sortie-f031b9fe-e149-4e49-8145-d5a364bd0c93,https://biolit.fr/sorties/sortie-f031b9fe-e149-4e49-8145-d5a364bd0c93/,Centre de Découverte Mer et Montagne,,07/08/2019,13.0000000,16.0000000,43.506322000000,6.950867000000,,Sentier sous marin,40273,observation-f031b9fe-e149-4e49-8145-d5a364bd0c93-2,https://biolit.fr/observations/observation-f031b9fe-e149-4e49-8145-d5a364bd0c93-2/,Acetabularia acetabulum,Acétabulaire,,https://biolit.fr/wp-content/uploads/2023/07/ACETABULAIRE-Acetabularia acetabulum-scaled.jpg,,TRUE, +N1,59297,sortie-f031b9fe-e149-4e49-8145-d5a364bd0c93,https://biolit.fr/sorties/sortie-f031b9fe-e149-4e49-8145-d5a364bd0c93/,Centre de Découverte Mer et Montagne,,07/08/2019,13.0000000,16.0000000,43.506322000000,6.950867000000,,Sentier sous marin,40275,observation-f031b9fe-e149-4e49-8145-d5a364bd0c93-3,https://biolit.fr/observations/observation-f031b9fe-e149-4e49-8145-d5a364bd0c93-3/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/POSIDONIE-Posidonia oceanica-scaled.jpg,,TRUE, +N1,59297,sortie-f031b9fe-e149-4e49-8145-d5a364bd0c93,https://biolit.fr/sorties/sortie-f031b9fe-e149-4e49-8145-d5a364bd0c93/,Centre de Découverte Mer et Montagne,,07/08/2019,13.0000000,16.0000000,43.506322000000,6.950867000000,,Sentier sous marin,40277,observation-f031b9fe-e149-4e49-8145-d5a364bd0c93-4,https://biolit.fr/observations/observation-f031b9fe-e149-4e49-8145-d5a364bd0c93-4/,Diplodus sargus,Sar commun de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/SPARAILLON-Diplodus annularis.jpg,,TRUE, +N1,59297,sortie-f031b9fe-e149-4e49-8145-d5a364bd0c93,https://biolit.fr/sorties/sortie-f031b9fe-e149-4e49-8145-d5a364bd0c93/,Centre de Découverte Mer et Montagne,,07/08/2019,13.0000000,16.0000000,43.506322000000,6.950867000000,,Sentier sous marin,40279,observation-f031b9fe-e149-4e49-8145-d5a364bd0c93-5,https://biolit.fr/observations/observation-f031b9fe-e149-4e49-8145-d5a364bd0c93-5/,Mullus surmuletus,Rouget-barbet de roche,,https://biolit.fr/wp-content/uploads/2023/07/ROUGET_DE_ROCHE-Mullus surmuletus-scaled.jpg,,TRUE, +N1,59298,sortie-4fecbed6-1888-4d52-b573-fc3ae39800f5,https://biolit.fr/sorties/sortie-4fecbed6-1888-4d52-b573-fc3ae39800f5/,CPIE Littoral Basque,,7/18/2019 0:00,11.0000000,13.0000000,43.38777800000,-1.711223000000,,Les vivier basque ,40281,observation-4fecbed6-1888-4d52-b573-fc3ae39800f5,https://biolit.fr/observations/observation-4fecbed6-1888-4d52-b573-fc3ae39800f5/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/P7180560-scaled.jpg,,TRUE, +N1,59298,sortie-4fecbed6-1888-4d52-b573-fc3ae39800f5,https://biolit.fr/sorties/sortie-4fecbed6-1888-4d52-b573-fc3ae39800f5/,CPIE Littoral Basque,,7/18/2019 0:00,11.0000000,13.0000000,43.38777800000,-1.711223000000,,Les vivier basque ,40283,observation-4fecbed6-1888-4d52-b573-fc3ae39800f5-2,https://biolit.fr/observations/observation-4fecbed6-1888-4d52-b573-fc3ae39800f5-2/,Chondria coerulescens,Chondria bleue,,https://biolit.fr/wp-content/uploads/2023/07/P7180561-scaled.jpg,,TRUE, +N1,59298,sortie-4fecbed6-1888-4d52-b573-fc3ae39800f5,https://biolit.fr/sorties/sortie-4fecbed6-1888-4d52-b573-fc3ae39800f5/,CPIE Littoral Basque,,7/18/2019 0:00,11.0000000,13.0000000,43.38777800000,-1.711223000000,,Les vivier basque ,40285,observation-4fecbed6-1888-4d52-b573-fc3ae39800f5-3,https://biolit.fr/observations/observation-4fecbed6-1888-4d52-b573-fc3ae39800f5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P7180565-scaled.jpg,,FALSE, +N1,59298,sortie-4fecbed6-1888-4d52-b573-fc3ae39800f5,https://biolit.fr/sorties/sortie-4fecbed6-1888-4d52-b573-fc3ae39800f5/,CPIE Littoral Basque,,7/18/2019 0:00,11.0000000,13.0000000,43.38777800000,-1.711223000000,,Les vivier basque ,40287,observation-4fecbed6-1888-4d52-b573-fc3ae39800f5-4,https://biolit.fr/observations/observation-4fecbed6-1888-4d52-b573-fc3ae39800f5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P7180569.JPG,,FALSE, +N1,59298,sortie-4fecbed6-1888-4d52-b573-fc3ae39800f5,https://biolit.fr/sorties/sortie-4fecbed6-1888-4d52-b573-fc3ae39800f5/,CPIE Littoral Basque,,7/18/2019 0:00,11.0000000,13.0000000,43.38777800000,-1.711223000000,,Les vivier basque ,40289,observation-4fecbed6-1888-4d52-b573-fc3ae39800f5-5,https://biolit.fr/observations/observation-4fecbed6-1888-4d52-b573-fc3ae39800f5-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P7180574-scaled.jpg,,FALSE, +N1,59298,sortie-4fecbed6-1888-4d52-b573-fc3ae39800f5,https://biolit.fr/sorties/sortie-4fecbed6-1888-4d52-b573-fc3ae39800f5/,CPIE Littoral Basque,,7/18/2019 0:00,11.0000000,13.0000000,43.38777800000,-1.711223000000,,Les vivier basque ,40291,observation-4fecbed6-1888-4d52-b573-fc3ae39800f5-6,https://biolit.fr/observations/observation-4fecbed6-1888-4d52-b573-fc3ae39800f5-6/,Calliblepharis jubata,Algue à crinière,,https://biolit.fr/wp-content/uploads/2023/07/P7180581-scaled.jpg,,TRUE, +N1,59299,sortie-97ee9344-af80-4204-9340-79aec79a938a,https://biolit.fr/sorties/sortie-97ee9344-af80-4204-9340-79aec79a938a/,Associu Mare Vivu,,7/15/2019 0:00,17.0000000,19.0000000,42.728790000000,9.136908000000,,plage de ghignu,40293,observation-97ee9344-af80-4204-9340-79aec79a938a,https://biolit.fr/observations/observation-97ee9344-af80-4204-9340-79aec79a938a/,Calomera littoralis,Cicindèle des plages,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6386-scaled.jpg,,TRUE, +N1,59300,sortie-6179e561-5392-4f03-b9a6-b04cb1b37f01,https://biolit.fr/sorties/sortie-6179e561-5392-4f03-b9a6-b04cb1b37f01/,Associu Mare Vivu,,7/15/2019 0:00,17.0000000,19.0000000,42.728959000000,9.137213000000,,plage ghignu,40295,observation-6179e561-5392-4f03-b9a6-b04cb1b37f01,https://biolit.fr/observations/observation-6179e561-5392-4f03-b9a6-b04cb1b37f01/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6378-scaled.jpg,,FALSE, +N1,59301,sortie-d831262d-5f01-4800-bb5e-36b588e5b112,https://biolit.fr/sorties/sortie-d831262d-5f01-4800-bb5e-36b588e5b112/,CPIE Littoral Basque,,7/17/2019 0:00,10.0000000,12.0000000,43.379716000000,-1.756671000000,CPIE Littoral Basque - Euskal Itsasbazterra,Plage d'Hendaye,40297,observation-d831262d-5f01-4800-bb5e-36b588e5b112,https://biolit.fr/observations/observation-d831262d-5f01-4800-bb5e-36b588e5b112/,,,,https://biolit.fr/wp-content/uploads/2023/07/P7170548-scaled.jpg,,FALSE, +N1,59301,sortie-d831262d-5f01-4800-bb5e-36b588e5b112,https://biolit.fr/sorties/sortie-d831262d-5f01-4800-bb5e-36b588e5b112/,CPIE Littoral Basque,,7/17/2019 0:00,10.0000000,12.0000000,43.379716000000,-1.756671000000,CPIE Littoral Basque - Euskal Itsasbazterra,Plage d'Hendaye,40299,observation-d831262d-5f01-4800-bb5e-36b588e5b112-2,https://biolit.fr/observations/observation-d831262d-5f01-4800-bb5e-36b588e5b112-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P7170551-scaled.jpg,,TRUE, +N1,59301,sortie-d831262d-5f01-4800-bb5e-36b588e5b112,https://biolit.fr/sorties/sortie-d831262d-5f01-4800-bb5e-36b588e5b112/,CPIE Littoral Basque,,7/17/2019 0:00,10.0000000,12.0000000,43.379716000000,-1.756671000000,CPIE Littoral Basque - Euskal Itsasbazterra,Plage d'Hendaye,40301,observation-d831262d-5f01-4800-bb5e-36b588e5b112-3,https://biolit.fr/observations/observation-d831262d-5f01-4800-bb5e-36b588e5b112-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P7170553-scaled.jpg,,FALSE, +N1,59301,sortie-d831262d-5f01-4800-bb5e-36b588e5b112,https://biolit.fr/sorties/sortie-d831262d-5f01-4800-bb5e-36b588e5b112/,CPIE Littoral Basque,,7/17/2019 0:00,10.0000000,12.0000000,43.379716000000,-1.756671000000,CPIE Littoral Basque - Euskal Itsasbazterra,Plage d'Hendaye,40303,observation-d831262d-5f01-4800-bb5e-36b588e5b112-4,https://biolit.fr/observations/observation-d831262d-5f01-4800-bb5e-36b588e5b112-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P7170554-scaled.jpg,,FALSE, +N1,59301,sortie-d831262d-5f01-4800-bb5e-36b588e5b112,https://biolit.fr/sorties/sortie-d831262d-5f01-4800-bb5e-36b588e5b112/,CPIE Littoral Basque,,7/17/2019 0:00,10.0000000,12.0000000,43.379716000000,-1.756671000000,CPIE Littoral Basque - Euskal Itsasbazterra,Plage d'Hendaye,40305,observation-d831262d-5f01-4800-bb5e-36b588e5b112-5,https://biolit.fr/observations/observation-d831262d-5f01-4800-bb5e-36b588e5b112-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P7170556-scaled.jpg,,FALSE, +N1,59302,sortie-c352ec84-aa21-4ea1-b01a-b6dba6513aad,https://biolit.fr/sorties/sortie-c352ec84-aa21-4ea1-b01a-b6dba6513aad/,Phil,,05/05/2019,11.0000000,11.0:35,47.800016000000,-4.179141000000,,Loctudy - Finistère,40307,observation-c352ec84-aa21-4ea1-b01a-b6dba6513aad,https://biolit.fr/observations/observation-c352ec84-aa21-4ea1-b01a-b6dba6513aad/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190505_112520.jpg,,TRUE, +N1,59302,sortie-c352ec84-aa21-4ea1-b01a-b6dba6513aad,https://biolit.fr/sorties/sortie-c352ec84-aa21-4ea1-b01a-b6dba6513aad/,Phil,,05/05/2019,11.0000000,11.0:35,47.800016000000,-4.179141000000,,Loctudy - Finistère,40309,observation-c352ec84-aa21-4ea1-b01a-b6dba6513aad-2,https://biolit.fr/observations/observation-c352ec84-aa21-4ea1-b01a-b6dba6513aad-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_112510.jpg,,FALSE, +N1,59302,sortie-c352ec84-aa21-4ea1-b01a-b6dba6513aad,https://biolit.fr/sorties/sortie-c352ec84-aa21-4ea1-b01a-b6dba6513aad/,Phil,,05/05/2019,11.0000000,11.0:35,47.800016000000,-4.179141000000,,Loctudy - Finistère,40311,observation-c352ec84-aa21-4ea1-b01a-b6dba6513aad-3,https://biolit.fr/observations/observation-c352ec84-aa21-4ea1-b01a-b6dba6513aad-3/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/20190505_113430.jpg,,TRUE, +N1,59302,sortie-c352ec84-aa21-4ea1-b01a-b6dba6513aad,https://biolit.fr/sorties/sortie-c352ec84-aa21-4ea1-b01a-b6dba6513aad/,Phil,,05/05/2019,11.0000000,11.0:35,47.800016000000,-4.179141000000,,Loctudy - Finistère,40313,observation-c352ec84-aa21-4ea1-b01a-b6dba6513aad-4,https://biolit.fr/observations/observation-c352ec84-aa21-4ea1-b01a-b6dba6513aad-4/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/20190505_113435.jpg,,TRUE, +N1,59302,sortie-c352ec84-aa21-4ea1-b01a-b6dba6513aad,https://biolit.fr/sorties/sortie-c352ec84-aa21-4ea1-b01a-b6dba6513aad/,Phil,,05/05/2019,11.0000000,11.0:35,47.800016000000,-4.179141000000,,Loctudy - Finistère,40315,observation-c352ec84-aa21-4ea1-b01a-b6dba6513aad-5,https://biolit.fr/observations/observation-c352ec84-aa21-4ea1-b01a-b6dba6513aad-5/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/20190505_113642.jpg,,TRUE, +N1,59303,sortie-92d463fa-7a81-4cc8-a61f-fa320c099b8f,https://biolit.fr/sorties/sortie-92d463fa-7a81-4cc8-a61f-fa320c099b8f/,tridimeg,,7/14/2019 0:00,17.0000000,17.0000000,48.62125,-1.9913810,,Montmarin,40317,observation-92d463fa-7a81-4cc8-a61f-fa320c099b8f,https://biolit.fr/observations/observation-92d463fa-7a81-4cc8-a61f-fa320c099b8f/,,,,https://biolit.fr/wp-content/uploads/2023/07/15631162225312154692098366404715-rotated.jpg,,FALSE, +N1,59304,sortie-dc805873-0eba-4ffe-aa00-e09cdf5a93b8,https://biolit.fr/sorties/sortie-dc805873-0eba-4ffe-aa00-e09cdf5a93b8/,Ilse,,07/01/2019,9.0000000,10.0000000,49.341089000000,-0.432114000000,,"Luc sur Mer, plage",40319,observation-dc805873-0eba-4ffe-aa00-e09cdf5a93b8,https://biolit.fr/observations/observation-dc805873-0eba-4ffe-aa00-e09cdf5a93b8/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Sargasse micitum a verifier-scaled.jpg,,TRUE, +N1,59304,sortie-dc805873-0eba-4ffe-aa00-e09cdf5a93b8,https://biolit.fr/sorties/sortie-dc805873-0eba-4ffe-aa00-e09cdf5a93b8/,Ilse,,07/01/2019,9.0000000,10.0000000,49.341089000000,-0.432114000000,,"Luc sur Mer, plage",40321,observation-dc805873-0eba-4ffe-aa00-e09cdf5a93b8-2,https://biolit.fr/observations/observation-dc805873-0eba-4ffe-aa00-e09cdf5a93b8-2/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P7010698-scaled.jpg,,TRUE, +N1,59304,sortie-dc805873-0eba-4ffe-aa00-e09cdf5a93b8,https://biolit.fr/sorties/sortie-dc805873-0eba-4ffe-aa00-e09cdf5a93b8/,Ilse,,07/01/2019,9.0000000,10.0000000,49.341089000000,-0.432114000000,,"Luc sur Mer, plage",40323,observation-dc805873-0eba-4ffe-aa00-e09cdf5a93b8-3,https://biolit.fr/observations/observation-dc805873-0eba-4ffe-aa00-e09cdf5a93b8-3/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P7010699-scaled.jpg,,TRUE, +N1,59304,sortie-dc805873-0eba-4ffe-aa00-e09cdf5a93b8,https://biolit.fr/sorties/sortie-dc805873-0eba-4ffe-aa00-e09cdf5a93b8/,Ilse,,07/01/2019,9.0000000,10.0000000,49.341089000000,-0.432114000000,,"Luc sur Mer, plage",40325,observation-dc805873-0eba-4ffe-aa00-e09cdf5a93b8-4,https://biolit.fr/observations/observation-dc805873-0eba-4ffe-aa00-e09cdf5a93b8-4/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P7080713-scaled.jpg,,TRUE, +N1,59304,sortie-dc805873-0eba-4ffe-aa00-e09cdf5a93b8,https://biolit.fr/sorties/sortie-dc805873-0eba-4ffe-aa00-e09cdf5a93b8/,Ilse,,07/01/2019,9.0000000,10.0000000,49.341089000000,-0.432114000000,,"Luc sur Mer, plage",40327,observation-dc805873-0eba-4ffe-aa00-e09cdf5a93b8-5,https://biolit.fr/observations/observation-dc805873-0eba-4ffe-aa00-e09cdf5a93b8-5/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P7100731-scaled.jpg,,TRUE, +N1,59304,sortie-dc805873-0eba-4ffe-aa00-e09cdf5a93b8,https://biolit.fr/sorties/sortie-dc805873-0eba-4ffe-aa00-e09cdf5a93b8/,Ilse,,07/01/2019,9.0000000,10.0000000,49.341089000000,-0.432114000000,,"Luc sur Mer, plage",40329,observation-dc805873-0eba-4ffe-aa00-e09cdf5a93b8-6,https://biolit.fr/observations/observation-dc805873-0eba-4ffe-aa00-e09cdf5a93b8-6/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P7100730-scaled.jpg,,TRUE, +N1,59304,sortie-dc805873-0eba-4ffe-aa00-e09cdf5a93b8,https://biolit.fr/sorties/sortie-dc805873-0eba-4ffe-aa00-e09cdf5a93b8/,Ilse,,07/01/2019,9.0000000,10.0000000,49.341089000000,-0.432114000000,,"Luc sur Mer, plage",40331,observation-dc805873-0eba-4ffe-aa00-e09cdf5a93b8-7,https://biolit.fr/observations/observation-dc805873-0eba-4ffe-aa00-e09cdf5a93b8-7/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P7100718-scaled.jpg,,TRUE, +N1,59304,sortie-dc805873-0eba-4ffe-aa00-e09cdf5a93b8,https://biolit.fr/sorties/sortie-dc805873-0eba-4ffe-aa00-e09cdf5a93b8/,Ilse,,07/01/2019,9.0000000,10.0000000,49.341089000000,-0.432114000000,,"Luc sur Mer, plage",40333,observation-dc805873-0eba-4ffe-aa00-e09cdf5a93b8-8,https://biolit.fr/observations/observation-dc805873-0eba-4ffe-aa00-e09cdf5a93b8-8/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P7100724-scaled.jpg,,TRUE, +N1,59305,sortie-ff42611f-c822-46a3-adcc-38d564f62967,https://biolit.fr/sorties/sortie-ff42611f-c822-46a3-adcc-38d564f62967/,CPIE Littoral Basque,,07/04/2019,12.0000000,13.0000000,43.383443000000,-1.755544000000,,Deux-Jumeaux ,40335,observation-ff42611f-c822-46a3-adcc-38d564f62967,https://biolit.fr/observations/observation-ff42611f-c822-46a3-adcc-38d564f62967/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/P7040497-scaled.jpg,,TRUE, +N1,59305,sortie-ff42611f-c822-46a3-adcc-38d564f62967,https://biolit.fr/sorties/sortie-ff42611f-c822-46a3-adcc-38d564f62967/,CPIE Littoral Basque,,07/04/2019,12.0000000,13.0000000,43.383443000000,-1.755544000000,,Deux-Jumeaux ,40337,observation-ff42611f-c822-46a3-adcc-38d564f62967-2,https://biolit.fr/observations/observation-ff42611f-c822-46a3-adcc-38d564f62967-2/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/P7040498.jpg,,TRUE, +N1,59306,sortie-74933470-541d-4bcb-9ebf-8ab09468c308,https://biolit.fr/sorties/sortie-74933470-541d-4bcb-9ebf-8ab09468c308/,CPIE Littoral Basque,,07/03/2019,10.0000000,11.0000000,43.381244000000,-1.754428000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux-Jumeaux ,40339,observation-74933470-541d-4bcb-9ebf-8ab09468c308,https://biolit.fr/observations/observation-74933470-541d-4bcb-9ebf-8ab09468c308/,,,,https://biolit.fr/wp-content/uploads/2023/07/P7030474-scaled.jpg,,FALSE, +N1,59306,sortie-74933470-541d-4bcb-9ebf-8ab09468c308,https://biolit.fr/sorties/sortie-74933470-541d-4bcb-9ebf-8ab09468c308/,CPIE Littoral Basque,,07/03/2019,10.0000000,11.0000000,43.381244000000,-1.754428000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux-Jumeaux ,40341,observation-74933470-541d-4bcb-9ebf-8ab09468c308-2,https://biolit.fr/observations/observation-74933470-541d-4bcb-9ebf-8ab09468c308-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P7030480-scaled.jpg,,TRUE, +N1,59306,sortie-74933470-541d-4bcb-9ebf-8ab09468c308,https://biolit.fr/sorties/sortie-74933470-541d-4bcb-9ebf-8ab09468c308/,CPIE Littoral Basque,,07/03/2019,10.0000000,11.0000000,43.381244000000,-1.754428000000,CPIE Littoral Basque - Euskal Itsasbazterra,Deux-Jumeaux ,40343,observation-74933470-541d-4bcb-9ebf-8ab09468c308-3,https://biolit.fr/observations/observation-74933470-541d-4bcb-9ebf-8ab09468c308-3/,Dictyota dichotoma,Dictyote,,https://biolit.fr/wp-content/uploads/2023/07/P7030486-scaled.jpg,,TRUE, +N1,59307,sortie-07c38a01-5c81-4332-9441-fccb9fa43ef0,https://biolit.fr/sorties/sortie-07c38a01-5c81-4332-9441-fccb9fa43ef0/,CPIE Littoral Basque,,4/28/2018 0:00,10.0000000,11.0000000,43.381065000000,-1.734290000000,,Haiçabia,40345,observation-07c38a01-5c81-4332-9441-fccb9fa43ef0,https://biolit.fr/observations/observation-07c38a01-5c81-4332-9441-fccb9fa43ef0/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/18 avrl Haiçabia-Balanes-scaled.jpg,,TRUE, +N1,59307,sortie-07c38a01-5c81-4332-9441-fccb9fa43ef0,https://biolit.fr/sorties/sortie-07c38a01-5c81-4332-9441-fccb9fa43ef0/,CPIE Littoral Basque,,4/28/2018 0:00,10.0000000,11.0000000,43.381065000000,-1.734290000000,,Haiçabia,40347,observation-07c38a01-5c81-4332-9441-fccb9fa43ef0-2,https://biolit.fr/observations/observation-07c38a01-5c81-4332-9441-fccb9fa43ef0-2/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/P4180024- 18 avril Haiçabia- Balanes-scaled.jpg,,TRUE, +N1,59307,sortie-07c38a01-5c81-4332-9441-fccb9fa43ef0,https://biolit.fr/sorties/sortie-07c38a01-5c81-4332-9441-fccb9fa43ef0/,CPIE Littoral Basque,,4/28/2018 0:00,10.0000000,11.0000000,43.381065000000,-1.734290000000,,Haiçabia,40349,observation-07c38a01-5c81-4332-9441-fccb9fa43ef0-3,https://biolit.fr/observations/observation-07c38a01-5c81-4332-9441-fccb9fa43ef0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P4180029- 18 avril Haiçabia-Anémone tomate-scaled.jpg,,FALSE, +N1,59307,sortie-07c38a01-5c81-4332-9441-fccb9fa43ef0,https://biolit.fr/sorties/sortie-07c38a01-5c81-4332-9441-fccb9fa43ef0/,CPIE Littoral Basque,,4/28/2018 0:00,10.0000000,11.0000000,43.381065000000,-1.734290000000,,Haiçabia,40351,observation-07c38a01-5c81-4332-9441-fccb9fa43ef0-4,https://biolit.fr/observations/observation-07c38a01-5c81-4332-9441-fccb9fa43ef0-4/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/P4180025- 18 avril Haiçabia- Crabe verruqueux-scaled.jpg,,TRUE, +N1,59308,sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf,https://biolit.fr/sorties/sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf/,CPIE Littoral Basque,,5/16/2018 0:00,10.0000000,12.0000000,43.381034000000,-1.734441000000,CPIE Littoral Basque - Euskal Itsasbazterra,Haiçabia,40353,observation-10107c7e-1132-43b9-843e-7bbed18ed5bf,https://biolit.fr/observations/observation-10107c7e-1132-43b9-843e-7bbed18ed5bf/,Stramonita haemastoma,Bouche de sang,,https://biolit.fr/wp-content/uploads/2023/07/P5160075-16 mai Haiçabia- Pourpre bouche de sang-scaled.jpg,,TRUE, +N1,59308,sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf,https://biolit.fr/sorties/sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf/,CPIE Littoral Basque,,5/16/2018 0:00,10.0000000,12.0000000,43.381034000000,-1.734441000000,CPIE Littoral Basque - Euskal Itsasbazterra,Haiçabia,40355,observation-10107c7e-1132-43b9-843e-7bbed18ed5bf-2,https://biolit.fr/observations/observation-10107c7e-1132-43b9-843e-7bbed18ed5bf-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/P5160077-16 mai Haiçabia- Anémone fraise-scaled.jpg,,TRUE, +N1,59308,sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf,https://biolit.fr/sorties/sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf/,CPIE Littoral Basque,,5/16/2018 0:00,10.0000000,12.0000000,43.381034000000,-1.734441000000,CPIE Littoral Basque - Euskal Itsasbazterra,Haiçabia,40357,observation-10107c7e-1132-43b9-843e-7bbed18ed5bf-3,https://biolit.fr/observations/observation-10107c7e-1132-43b9-843e-7bbed18ed5bf-3/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/P5160081-16 mai Haiçabia- Balanes et Patelles-scaled.jpg,,TRUE, +N1,59308,sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf,https://biolit.fr/sorties/sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf/,CPIE Littoral Basque,,5/16/2018 0:00,10.0000000,12.0000000,43.381034000000,-1.734441000000,CPIE Littoral Basque - Euskal Itsasbazterra,Haiçabia,40359,observation-10107c7e-1132-43b9-843e-7bbed18ed5bf-4,https://biolit.fr/observations/observation-10107c7e-1132-43b9-843e-7bbed18ed5bf-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P5160083-16 mai Haiçabia-Cystoseire stricte (jeune)-scaled.jpg,,FALSE, +N1,59308,sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf,https://biolit.fr/sorties/sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf/,CPIE Littoral Basque,,5/16/2018 0:00,10.0000000,12.0000000,43.381034000000,-1.734441000000,CPIE Littoral Basque - Euskal Itsasbazterra,Haiçabia,40361,observation-10107c7e-1132-43b9-843e-7bbed18ed5bf-5,https://biolit.fr/observations/observation-10107c7e-1132-43b9-843e-7bbed18ed5bf-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P5160090- 16 mai Haiçabia- Cystoseira sp-scaled.jpg,,FALSE, +N1,59308,sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf,https://biolit.fr/sorties/sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf/,CPIE Littoral Basque,,5/16/2018 0:00,10.0000000,12.0000000,43.381034000000,-1.734441000000,CPIE Littoral Basque - Euskal Itsasbazterra,Haiçabia,40363,observation-10107c7e-1132-43b9-843e-7bbed18ed5bf-6,https://biolit.fr/observations/observation-10107c7e-1132-43b9-843e-7bbed18ed5bf-6/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/P5160093-16 mai Haiçabia- crevette bouquet-scaled.jpg,,TRUE, +N1,59308,sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf,https://biolit.fr/sorties/sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf/,CPIE Littoral Basque,,5/16/2018 0:00,10.0000000,12.0000000,43.381034000000,-1.734441000000,CPIE Littoral Basque - Euskal Itsasbazterra,Haiçabia,40365,observation-10107c7e-1132-43b9-843e-7bbed18ed5bf-7,https://biolit.fr/observations/observation-10107c7e-1132-43b9-843e-7bbed18ed5bf-7/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P5160096-16 mai Haiçabia- Gibbule de Penant-scaled.jpg,,TRUE, +N1,59308,sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf,https://biolit.fr/sorties/sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf/,CPIE Littoral Basque,,5/16/2018 0:00,10.0000000,12.0000000,43.381034000000,-1.734441000000,CPIE Littoral Basque - Euskal Itsasbazterra,Haiçabia,40367,observation-10107c7e-1132-43b9-843e-7bbed18ed5bf-8,https://biolit.fr/observations/observation-10107c7e-1132-43b9-843e-7bbed18ed5bf-8/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/P5160098- 16 mai Haiçabia- Crabe verruqueux-scaled.jpg,,TRUE, +N1,59308,sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf,https://biolit.fr/sorties/sortie-10107c7e-1132-43b9-843e-7bbed18ed5bf/,CPIE Littoral Basque,,5/16/2018 0:00,10.0000000,12.0000000,43.381034000000,-1.734441000000,CPIE Littoral Basque - Euskal Itsasbazterra,Haiçabia,40369,observation-10107c7e-1132-43b9-843e-7bbed18ed5bf-9,https://biolit.fr/observations/observation-10107c7e-1132-43b9-843e-7bbed18ed5bf-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P5160099- 16 mai Haiçabia- Crabe marbré-scaled.jpg,,FALSE, +N1,59309,sortie-01bcbbfa-c288-4253-b0df-4a8723768aa9,https://biolit.fr/sorties/sortie-01bcbbfa-c288-4253-b0df-4a8723768aa9/,CPIE Littoral Basque,,2/16/2018 0:00,11.0000000,12.0000000,43.381010000000,-1.734484000000,,Haiçabia,40371,observation-01bcbbfa-c288-4253-b0df-4a8723768aa9,https://biolit.fr/observations/observation-01bcbbfa-c288-4253-b0df-4a8723768aa9/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/P2160023-16 février Haiçabia- Crabe verruqueux-scaled.jpg,,TRUE, +N1,59309,sortie-01bcbbfa-c288-4253-b0df-4a8723768aa9,https://biolit.fr/sorties/sortie-01bcbbfa-c288-4253-b0df-4a8723768aa9/,CPIE Littoral Basque,,2/16/2018 0:00,11.0000000,12.0000000,43.381010000000,-1.734484000000,,Haiçabia,40373,observation-01bcbbfa-c288-4253-b0df-4a8723768aa9-2,https://biolit.fr/observations/observation-01bcbbfa-c288-4253-b0df-4a8723768aa9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P2160024-16 février Haiçabia- Gibbule ombiliquée-scaled.jpg,,FALSE, +N1,59309,sortie-01bcbbfa-c288-4253-b0df-4a8723768aa9,https://biolit.fr/sorties/sortie-01bcbbfa-c288-4253-b0df-4a8723768aa9/,CPIE Littoral Basque,,2/16/2018 0:00,11.0000000,12.0000000,43.381010000000,-1.734484000000,,Haiçabia,40375,observation-01bcbbfa-c288-4253-b0df-4a8723768aa9-3,https://biolit.fr/observations/observation-01bcbbfa-c288-4253-b0df-4a8723768aa9-3/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/P2160030- 16 février Haiçabia- Balanes-scaled.jpg,,TRUE, +N1,59309,sortie-01bcbbfa-c288-4253-b0df-4a8723768aa9,https://biolit.fr/sorties/sortie-01bcbbfa-c288-4253-b0df-4a8723768aa9/,CPIE Littoral Basque,,2/16/2018 0:00,11.0000000,12.0000000,43.381010000000,-1.734484000000,,Haiçabia,40377,observation-01bcbbfa-c288-4253-b0df-4a8723768aa9-4,https://biolit.fr/observations/observation-01bcbbfa-c288-4253-b0df-4a8723768aa9-4/,Parablennius gattorugine,Cabot,,https://biolit.fr/wp-content/uploads/2023/07/P2160032-16 février Haiçabia- Blennie gattorugine-scaled.jpg,,TRUE, +N1,59309,sortie-01bcbbfa-c288-4253-b0df-4a8723768aa9,https://biolit.fr/sorties/sortie-01bcbbfa-c288-4253-b0df-4a8723768aa9/,CPIE Littoral Basque,,2/16/2018 0:00,11.0000000,12.0000000,43.381010000000,-1.734484000000,,Haiçabia,40379,observation-01bcbbfa-c288-4253-b0df-4a8723768aa9-5,https://biolit.fr/observations/observation-01bcbbfa-c288-4253-b0df-4a8723768aa9-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P2160034-16 février Haiçabia- crabe marbré-scaled.jpg,,FALSE, +N1,59309,sortie-01bcbbfa-c288-4253-b0df-4a8723768aa9,https://biolit.fr/sorties/sortie-01bcbbfa-c288-4253-b0df-4a8723768aa9/,CPIE Littoral Basque,,2/16/2018 0:00,11.0000000,12.0000000,43.381010000000,-1.734484000000,,Haiçabia,40381,observation-01bcbbfa-c288-4253-b0df-4a8723768aa9-6,https://biolit.fr/observations/observation-01bcbbfa-c288-4253-b0df-4a8723768aa9-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P2160036- 16 février Haiçabia- Patelles-scaled.jpg,,FALSE, +N1,59309,sortie-01bcbbfa-c288-4253-b0df-4a8723768aa9,https://biolit.fr/sorties/sortie-01bcbbfa-c288-4253-b0df-4a8723768aa9/,CPIE Littoral Basque,,2/16/2018 0:00,11.0000000,12.0000000,43.381010000000,-1.734484000000,,Haiçabia,40383,observation-01bcbbfa-c288-4253-b0df-4a8723768aa9-7,https://biolit.fr/observations/observation-01bcbbfa-c288-4253-b0df-4a8723768aa9-7/,Janua heterostropha,Spirorbe de Pagenstecher,,https://biolit.fr/wp-content/uploads/2023/07/P2160039- 16 février Haiçabia- (puce de sable)-scaled.jpg,,TRUE, +N1,59309,sortie-01bcbbfa-c288-4253-b0df-4a8723768aa9,https://biolit.fr/sorties/sortie-01bcbbfa-c288-4253-b0df-4a8723768aa9/,CPIE Littoral Basque,,2/16/2018 0:00,11.0000000,12.0000000,43.381010000000,-1.734484000000,,Haiçabia,40385,observation-01bcbbfa-c288-4253-b0df-4a8723768aa9-8,https://biolit.fr/observations/observation-01bcbbfa-c288-4253-b0df-4a8723768aa9-8/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/P2160041-16 février Haiçabia- Enteromorpha et Ulva lactuca-scaled.jpg,,TRUE, +N1,59310,sortie-c9829643-2ef1-43a2-b44a-04629ec1b253,https://biolit.fr/sorties/sortie-c9829643-2ef1-43a2-b44a-04629ec1b253/,laetimiq,,07/04/2019,16.0000000,17.0000000,48.640350000000,-2.072293000000,Planète Mer,Plage de Saint-Enogat,40387,observation-c9829643-2ef1-43a2-b44a-04629ec1b253,https://biolit.fr/observations/observation-c9829643-2ef1-43a2-b44a-04629ec1b253/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/P7040065-scaled.jpg,,TRUE, +N1,59310,sortie-c9829643-2ef1-43a2-b44a-04629ec1b253,https://biolit.fr/sorties/sortie-c9829643-2ef1-43a2-b44a-04629ec1b253/,laetimiq,,07/04/2019,16.0000000,17.0000000,48.640350000000,-2.072293000000,Planète Mer,Plage de Saint-Enogat,40389,observation-c9829643-2ef1-43a2-b44a-04629ec1b253-2,https://biolit.fr/observations/observation-c9829643-2ef1-43a2-b44a-04629ec1b253-2/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/P7040064-scaled.jpg,,TRUE, +N1,59310,sortie-c9829643-2ef1-43a2-b44a-04629ec1b253,https://biolit.fr/sorties/sortie-c9829643-2ef1-43a2-b44a-04629ec1b253/,laetimiq,,07/04/2019,16.0000000,17.0000000,48.640350000000,-2.072293000000,Planète Mer,Plage de Saint-Enogat,40391,observation-c9829643-2ef1-43a2-b44a-04629ec1b253-3,https://biolit.fr/observations/observation-c9829643-2ef1-43a2-b44a-04629ec1b253-3/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P7040068-scaled.jpg,,TRUE, +N1,59310,sortie-c9829643-2ef1-43a2-b44a-04629ec1b253,https://biolit.fr/sorties/sortie-c9829643-2ef1-43a2-b44a-04629ec1b253/,laetimiq,,07/04/2019,16.0000000,17.0000000,48.640350000000,-2.072293000000,Planète Mer,Plage de Saint-Enogat,40393,observation-c9829643-2ef1-43a2-b44a-04629ec1b253-4,https://biolit.fr/observations/observation-c9829643-2ef1-43a2-b44a-04629ec1b253-4/,Lepadogaster candolii,Porte-écuelle de Candolle,,https://biolit.fr/wp-content/uploads/2023/07/P7040071-scaled.jpg,,TRUE, +N1,59310,sortie-c9829643-2ef1-43a2-b44a-04629ec1b253,https://biolit.fr/sorties/sortie-c9829643-2ef1-43a2-b44a-04629ec1b253/,laetimiq,,07/04/2019,16.0000000,17.0000000,48.640350000000,-2.072293000000,Planète Mer,Plage de Saint-Enogat,40395,observation-c9829643-2ef1-43a2-b44a-04629ec1b253-5,https://biolit.fr/observations/observation-c9829643-2ef1-43a2-b44a-04629ec1b253-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P7040072-scaled.jpg,,FALSE, +N1,59310,sortie-c9829643-2ef1-43a2-b44a-04629ec1b253,https://biolit.fr/sorties/sortie-c9829643-2ef1-43a2-b44a-04629ec1b253/,laetimiq,,07/04/2019,16.0000000,17.0000000,48.640350000000,-2.072293000000,Planète Mer,Plage de Saint-Enogat,40397,observation-c9829643-2ef1-43a2-b44a-04629ec1b253-6,https://biolit.fr/observations/observation-c9829643-2ef1-43a2-b44a-04629ec1b253-6/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P7040077-scaled.jpg,,TRUE, +N1,59310,sortie-c9829643-2ef1-43a2-b44a-04629ec1b253,https://biolit.fr/sorties/sortie-c9829643-2ef1-43a2-b44a-04629ec1b253/,laetimiq,,07/04/2019,16.0000000,17.0000000,48.640350000000,-2.072293000000,Planète Mer,Plage de Saint-Enogat,40399,observation-c9829643-2ef1-43a2-b44a-04629ec1b253-7,https://biolit.fr/observations/observation-c9829643-2ef1-43a2-b44a-04629ec1b253-7/,Aplidium elegans,Fraise de mer,,https://biolit.fr/wp-content/uploads/2023/07/P7040078-scaled.jpg,,TRUE, +N1,59310,sortie-c9829643-2ef1-43a2-b44a-04629ec1b253,https://biolit.fr/sorties/sortie-c9829643-2ef1-43a2-b44a-04629ec1b253/,laetimiq,,07/04/2019,16.0000000,17.0000000,48.640350000000,-2.072293000000,Planète Mer,Plage de Saint-Enogat,40401,observation-c9829643-2ef1-43a2-b44a-04629ec1b253-8,https://biolit.fr/observations/observation-c9829643-2ef1-43a2-b44a-04629ec1b253-8/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/P7040080-scaled.jpg,,TRUE, +N1,59310,sortie-c9829643-2ef1-43a2-b44a-04629ec1b253,https://biolit.fr/sorties/sortie-c9829643-2ef1-43a2-b44a-04629ec1b253/,laetimiq,,07/04/2019,16.0000000,17.0000000,48.640350000000,-2.072293000000,Planète Mer,Plage de Saint-Enogat,40403,observation-c9829643-2ef1-43a2-b44a-04629ec1b253-9,https://biolit.fr/observations/observation-c9829643-2ef1-43a2-b44a-04629ec1b253-9/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/bryo-scaled.jpg,,TRUE, +N1,59310,sortie-c9829643-2ef1-43a2-b44a-04629ec1b253,https://biolit.fr/sorties/sortie-c9829643-2ef1-43a2-b44a-04629ec1b253/,laetimiq,,07/04/2019,16.0000000,17.0000000,48.640350000000,-2.072293000000,Planète Mer,Plage de Saint-Enogat,40405,observation-c9829643-2ef1-43a2-b44a-04629ec1b253-10,https://biolit.fr/observations/observation-c9829643-2ef1-43a2-b44a-04629ec1b253-10/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/P7040082-scaled.jpg,,TRUE, +N1,59311,sortie-3ba28a7a-e6c5-48d0-b6fe-01b931ebb099,https://biolit.fr/sorties/sortie-3ba28a7a-e6c5-48d0-b6fe-01b931ebb099/,Associu Mare Vivu,,07/08/2019,16.0000000,17.0000000,42.964554000000,9.451860000000,,Macinaggio,40407,observation-3ba28a7a-e6c5-48d0-b6fe-01b931ebb099,https://biolit.fr/observations/observation-3ba28a7a-e6c5-48d0-b6fe-01b931ebb099/,Podarcis siculus,Lézard des ruines,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6288-scaled.jpg,,TRUE, +N1,59312,sortie-d65a5313-6a57-4cbe-9884-02bea9521025,https://biolit.fr/sorties/sortie-d65a5313-6a57-4cbe-9884-02bea9521025/,Associu Mare Vivu,,07/09/2019,16.0000000,18.0000000,42.966193000000,9.454207000000,,Macinaggio,40409,observation-d65a5313-6a57-4cbe-9884-02bea9521025,https://biolit.fr/observations/observation-d65a5313-6a57-4cbe-9884-02bea9521025/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6277-scaled.jpg,,FALSE, +N1,59312,sortie-d65a5313-6a57-4cbe-9884-02bea9521025,https://biolit.fr/sorties/sortie-d65a5313-6a57-4cbe-9884-02bea9521025/,Associu Mare Vivu,,07/09/2019,16.0000000,18.0000000,42.966193000000,9.454207000000,,Macinaggio,40411,observation-d65a5313-6a57-4cbe-9884-02bea9521025-2,https://biolit.fr/observations/observation-d65a5313-6a57-4cbe-9884-02bea9521025-2/,Milabris variabilis,Mylabre à bandes,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6249-scaled.jpg,,TRUE, +N1,59312,sortie-d65a5313-6a57-4cbe-9884-02bea9521025,https://biolit.fr/sorties/sortie-d65a5313-6a57-4cbe-9884-02bea9521025/,Associu Mare Vivu,,07/09/2019,16.0000000,18.0000000,42.966193000000,9.454207000000,,Macinaggio,40413,observation-d65a5313-6a57-4cbe-9884-02bea9521025-3,https://biolit.fr/observations/observation-d65a5313-6a57-4cbe-9884-02bea9521025-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_6256-scaled.jpg,,FALSE, +N1,59313,sortie-dcb8c422-28bb-43cb-bd60-af92ee612db8,https://biolit.fr/sorties/sortie-dcb8c422-28bb-43cb-bd60-af92ee612db8/,Club subaquatique Narbonnais,,07/06/2019,15.0000000,17.0000000,43.168293000000,3.181689000000,Club Subaquatique Narbonnais CSN/FSGT,Port de Narbonne-plage,40415,observation-dcb8c422-28bb-43cb-bd60-af92ee612db8,https://biolit.fr/observations/observation-dcb8c422-28bb-43cb-bd60-af92ee612db8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Atherine.jpg,,FALSE, +N1,59313,sortie-dcb8c422-28bb-43cb-bd60-af92ee612db8,https://biolit.fr/sorties/sortie-dcb8c422-28bb-43cb-bd60-af92ee612db8/,Club subaquatique Narbonnais,,07/06/2019,15.0000000,17.0000000,43.168293000000,3.181689000000,Club Subaquatique Narbonnais CSN/FSGT,Port de Narbonne-plage,40417,observation-dcb8c422-28bb-43cb-bd60-af92ee612db8-2,https://biolit.fr/observations/observation-dcb8c422-28bb-43cb-bd60-af92ee612db8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/bécune12.jpg,,FALSE, +N1,59313,sortie-dcb8c422-28bb-43cb-bd60-af92ee612db8,https://biolit.fr/sorties/sortie-dcb8c422-28bb-43cb-bd60-af92ee612db8/,Club subaquatique Narbonnais,,07/06/2019,15.0000000,17.0000000,43.168293000000,3.181689000000,Club Subaquatique Narbonnais CSN/FSGT,Port de Narbonne-plage,40419,observation-dcb8c422-28bb-43cb-bd60-af92ee612db8-3,https://biolit.fr/observations/observation-dcb8c422-28bb-43cb-bd60-af92ee612db8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/bécune 2.jpg,,FALSE, +N1,59314,sortie-4c2518cc-d285-4afd-a737-58e55e558a9e,https://biolit.fr/sorties/sortie-4c2518cc-d285-4afd-a737-58e55e558a9e/,Phil,,05/05/2019,11.0000000,11.0:25,47.799029000000,-4.179205000000,,Loctudy - Finistère,40421,observation-4c2518cc-d285-4afd-a737-58e55e558a9e,https://biolit.fr/observations/observation-4c2518cc-d285-4afd-a737-58e55e558a9e/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_111902.jpg,,FALSE, +N1,59314,sortie-4c2518cc-d285-4afd-a737-58e55e558a9e,https://biolit.fr/sorties/sortie-4c2518cc-d285-4afd-a737-58e55e558a9e/,Phil,,05/05/2019,11.0000000,11.0:25,47.799029000000,-4.179205000000,,Loctudy - Finistère,40423,observation-4c2518cc-d285-4afd-a737-58e55e558a9e-2,https://biolit.fr/observations/observation-4c2518cc-d285-4afd-a737-58e55e558a9e-2/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20190505_111951.jpg,,TRUE, +N1,59314,sortie-4c2518cc-d285-4afd-a737-58e55e558a9e,https://biolit.fr/sorties/sortie-4c2518cc-d285-4afd-a737-58e55e558a9e/,Phil,,05/05/2019,11.0000000,11.0:25,47.799029000000,-4.179205000000,,Loctudy - Finistère,40425,observation-4c2518cc-d285-4afd-a737-58e55e558a9e-3,https://biolit.fr/observations/observation-4c2518cc-d285-4afd-a737-58e55e558a9e-3/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20190505_112154.jpg,,TRUE, +N1,59314,sortie-4c2518cc-d285-4afd-a737-58e55e558a9e,https://biolit.fr/sorties/sortie-4c2518cc-d285-4afd-a737-58e55e558a9e/,Phil,,05/05/2019,11.0000000,11.0:25,47.799029000000,-4.179205000000,,Loctudy - Finistère,40427,observation-4c2518cc-d285-4afd-a737-58e55e558a9e-4,https://biolit.fr/observations/observation-4c2518cc-d285-4afd-a737-58e55e558a9e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_112329.jpg,,FALSE, +N1,59314,sortie-4c2518cc-d285-4afd-a737-58e55e558a9e,https://biolit.fr/sorties/sortie-4c2518cc-d285-4afd-a737-58e55e558a9e/,Phil,,05/05/2019,11.0000000,11.0:25,47.799029000000,-4.179205000000,,Loctudy - Finistère,40429,observation-4c2518cc-d285-4afd-a737-58e55e558a9e-5,https://biolit.fr/observations/observation-4c2518cc-d285-4afd-a737-58e55e558a9e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_112343.jpg,,FALSE, +N1,59315,sortie-22b13e8e-a6f6-4115-ada2-927e94615cdb,https://biolit.fr/sorties/sortie-22b13e8e-a6f6-4115-ada2-927e94615cdb/,tridimeg,,07/02/2019,14.0000000,15.0000000,48.6465100,-2.02819,,bon secours,40431,observation-22b13e8e-a6f6-4115-ada2-927e94615cdb,https://biolit.fr/observations/observation-22b13e8e-a6f6-4115-ada2-927e94615cdb/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/15620723124166103706641321128455-rotated.jpg,,TRUE, +N1,59316,sortie-72dc4bf6-5925-4e79-94b4-18ff2781d9e2,https://biolit.fr/sorties/sortie-72dc4bf6-5925-4e79-94b4-18ff2781d9e2/,Céline,,07/02/2019,15.0000000,15.0000000,48.6486530,-2.0309100,,Saint malo bonsecours,40433,observation-72dc4bf6-5925-4e79-94b4-18ff2781d9e2,https://biolit.fr/observations/observation-72dc4bf6-5925-4e79-94b4-18ff2781d9e2/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0368_0-scaled.jpg,,TRUE, +N1,59317,sortie-db6ad8ed-1c43-4548-96ed-6f0d72cc2140,https://biolit.fr/sorties/sortie-db6ad8ed-1c43-4548-96ed-6f0d72cc2140/,Céline,,07/02/2019,14.0000000,14.0000000,48.6475000,-2.0312220,Planète Mer,Saint malo bonsrcours,40435,observation-db6ad8ed-1c43-4548-96ed-6f0d72cc2140,https://biolit.fr/observations/observation-db6ad8ed-1c43-4548-96ed-6f0d72cc2140/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0361-scaled.jpg,,TRUE, +N1,59318,sortie-f34f046b-b742-4f9d-aa53-5a18f30eaa4f,https://biolit.fr/sorties/sortie-f34f046b-b742-4f9d-aa53-5a18f30eaa4f/,Céline,,07/02/2019,14.0000000,14.0000000,48.6472660,-2.0314720,,Saint malo bonsecours,40437,observation-f34f046b-b742-4f9d-aa53-5a18f30eaa4f,https://biolit.fr/observations/observation-f34f046b-b742-4f9d-aa53-5a18f30eaa4f/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0359-scaled.jpg,,TRUE, +N1,59319,sortie-5c50e3dd-fcdb-4ba0-b25f-f3d434379f8c,https://biolit.fr/sorties/sortie-5c50e3dd-fcdb-4ba0-b25f-f3d434379f8c/,Céline,,07/02/2019,14.0000000,14.0000000,48.6480100,-2.0282190,,Saint malo bonsecours,40439,observation-5c50e3dd-fcdb-4ba0-b25f-f3d434379f8c,https://biolit.fr/observations/observation-5c50e3dd-fcdb-4ba0-b25f-f3d434379f8c/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0356-scaled.jpg,,TRUE, +N1,59320,sortie-b6905165-8432-446c-ae45-414b400b5ca9,https://biolit.fr/sorties/sortie-b6905165-8432-446c-ae45-414b400b5ca9/,Céline,,07/02/2019,14.0000000,14.0000000,48.6478590,-2.0289180,,Saint-Malo beausejour,40441,observation-b6905165-8432-446c-ae45-414b400b5ca9,https://biolit.fr/observations/observation-b6905165-8432-446c-ae45-414b400b5ca9/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0354_0-scaled.jpg,,TRUE, +N1,59321,sortie-6c731701-ef8f-4121-af6b-b467c88d1e47,https://biolit.fr/sorties/sortie-6c731701-ef8f-4121-af6b-b467c88d1e47/,Noëlla M,,6/17/2019 0:00,15.0000000,16.0000000,41.912476000000,8.726722000000,,Plage du trottel ,40443,observation-6c731701-ef8f-4121-af6b-b467c88d1e47,https://biolit.fr/observations/observation-6c731701-ef8f-4121-af6b-b467c88d1e47/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190617_163657-min-scaled.jpg,,TRUE, +N1,59321,sortie-6c731701-ef8f-4121-af6b-b467c88d1e47,https://biolit.fr/sorties/sortie-6c731701-ef8f-4121-af6b-b467c88d1e47/,Noëlla M,,6/17/2019 0:00,15.0000000,16.0000000,41.912476000000,8.726722000000,,Plage du trottel ,40445,observation-6c731701-ef8f-4121-af6b-b467c88d1e47-2,https://biolit.fr/observations/observation-6c731701-ef8f-4121-af6b-b467c88d1e47-2/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190617_163720-min-scaled.jpg,,TRUE, +N1,59321,sortie-6c731701-ef8f-4121-af6b-b467c88d1e47,https://biolit.fr/sorties/sortie-6c731701-ef8f-4121-af6b-b467c88d1e47/,Noëlla M,,6/17/2019 0:00,15.0000000,16.0000000,41.912476000000,8.726722000000,,Plage du trottel ,40447,observation-6c731701-ef8f-4121-af6b-b467c88d1e47-3,https://biolit.fr/observations/observation-6c731701-ef8f-4121-af6b-b467c88d1e47-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190617_163756-min-scaled.jpg,,FALSE, +N1,59321,sortie-6c731701-ef8f-4121-af6b-b467c88d1e47,https://biolit.fr/sorties/sortie-6c731701-ef8f-4121-af6b-b467c88d1e47/,Noëlla M,,6/17/2019 0:00,15.0000000,16.0000000,41.912476000000,8.726722000000,,Plage du trottel ,40449,observation-6c731701-ef8f-4121-af6b-b467c88d1e47-4,https://biolit.fr/observations/observation-6c731701-ef8f-4121-af6b-b467c88d1e47-4/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190617_170607-min-scaled.jpg,,TRUE, +N1,59321,sortie-6c731701-ef8f-4121-af6b-b467c88d1e47,https://biolit.fr/sorties/sortie-6c731701-ef8f-4121-af6b-b467c88d1e47/,Noëlla M,,6/17/2019 0:00,15.0000000,16.0000000,41.912476000000,8.726722000000,,Plage du trottel ,40451,observation-6c731701-ef8f-4121-af6b-b467c88d1e47-5,https://biolit.fr/observations/observation-6c731701-ef8f-4121-af6b-b467c88d1e47-5/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190617_170543-min-scaled.jpg,,TRUE, +N1,59321,sortie-6c731701-ef8f-4121-af6b-b467c88d1e47,https://biolit.fr/sorties/sortie-6c731701-ef8f-4121-af6b-b467c88d1e47/,Noëlla M,,6/17/2019 0:00,15.0000000,16.0000000,41.912476000000,8.726722000000,,Plage du trottel ,40453,observation-6c731701-ef8f-4121-af6b-b467c88d1e47-6,https://biolit.fr/observations/observation-6c731701-ef8f-4121-af6b-b467c88d1e47-6/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190617_170825-min-scaled.jpg,,TRUE, +N1,59322,sortie-4869324f-8c26-4f9f-8367-7e7a58913cf6,https://biolit.fr/sorties/sortie-4869324f-8c26-4f9f-8367-7e7a58913cf6/,Observe la nature,,06/03/2019,10.0:45,12.0:45,48.818979000000,-3.454295000000,,Plage de trestrignel,40455,observation-4869324f-8c26-4f9f-8367-7e7a58913cf6,https://biolit.fr/observations/observation-4869324f-8c26-4f9f-8367-7e7a58913cf6/,Pleurobrachia pileus,Groseille de mer,,https://biolit.fr/wp-content/uploads/2023/07/62077932_684158922015238_1331489481517170688_o.jpg,,TRUE, +N1,59323,sortie-ac304f86-f6ff-4d81-a59e-841ab179854c,https://biolit.fr/sorties/sortie-ac304f86-f6ff-4d81-a59e-841ab179854c/,Observe la nature,,6/28/2019 0:00,10.0000000,12.0000000,48.834263000000,-3.40826900000,,PERROS GUIREC,40457,observation-ac304f86-f6ff-4d81-a59e-841ab179854c,https://biolit.fr/observations/observation-ac304f86-f6ff-4d81-a59e-841ab179854c/,,,,https://biolit.fr/wp-content/uploads/2023/07/65275877_701561306941666_1675112609231142912_n.jpg,,FALSE, +N1,59324,sortie-72a9c139-e6fc-4a5a-a0a8-eca03ca99701,https://biolit.fr/sorties/sortie-72a9c139-e6fc-4a5a-a0a8-eca03ca99701/,Marine,,6/20/2019 0:00,14.0000000,14.0000000,43.210763000000,5.420779000000,,Plage de sormiou,40459,observation-72a9c139-e6fc-4a5a-a0a8-eca03ca99701,https://biolit.fr/observations/observation-72a9c139-e6fc-4a5a-a0a8-eca03ca99701/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/E1F2B592-B8E2-40BD-848C-22788C2F63DA-scaled.jpeg,,TRUE, +N1,59325,sortie-38a814f3-3bea-4129-8679-765980b80f18,https://biolit.fr/sorties/sortie-38a814f3-3bea-4129-8679-765980b80f18/,Phil,,7/22/2018 0:00,14.0:45,14.0:55,47.708349000000,-3.992968000000,,Fouesnant - Finistère,40461,observation-38a814f3-3bea-4129-8679-765980b80f18,https://biolit.fr/observations/observation-38a814f3-3bea-4129-8679-765980b80f18/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120015.JPG,,FALSE, +N1,59325,sortie-38a814f3-3bea-4129-8679-765980b80f18,https://biolit.fr/sorties/sortie-38a814f3-3bea-4129-8679-765980b80f18/,Phil,,7/22/2018 0:00,14.0:45,14.0:55,47.708349000000,-3.992968000000,,Fouesnant - Finistère,40463,observation-38a814f3-3bea-4129-8679-765980b80f18-2,https://biolit.fr/observations/observation-38a814f3-3bea-4129-8679-765980b80f18-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120016.JPG,,FALSE, +N1,59325,sortie-38a814f3-3bea-4129-8679-765980b80f18,https://biolit.fr/sorties/sortie-38a814f3-3bea-4129-8679-765980b80f18/,Phil,,7/22/2018 0:00,14.0:45,14.0:55,47.708349000000,-3.992968000000,,Fouesnant - Finistère,40465,observation-38a814f3-3bea-4129-8679-765980b80f18-3,https://biolit.fr/observations/observation-38a814f3-3bea-4129-8679-765980b80f18-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120014.JPG,,FALSE, +N1,59325,sortie-38a814f3-3bea-4129-8679-765980b80f18,https://biolit.fr/sorties/sortie-38a814f3-3bea-4129-8679-765980b80f18/,Phil,,7/22/2018 0:00,14.0:45,14.0:55,47.708349000000,-3.992968000000,,Fouesnant - Finistère,40467,observation-38a814f3-3bea-4129-8679-765980b80f18-4,https://biolit.fr/observations/observation-38a814f3-3bea-4129-8679-765980b80f18-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120013.JPG,,FALSE, +N1,59325,sortie-38a814f3-3bea-4129-8679-765980b80f18,https://biolit.fr/sorties/sortie-38a814f3-3bea-4129-8679-765980b80f18/,Phil,,7/22/2018 0:00,14.0:45,14.0:55,47.708349000000,-3.992968000000,,Fouesnant - Finistère,40469,observation-38a814f3-3bea-4129-8679-765980b80f18-5,https://biolit.fr/observations/observation-38a814f3-3bea-4129-8679-765980b80f18-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120010.JPG,,FALSE, +N1,59325,sortie-38a814f3-3bea-4129-8679-765980b80f18,https://biolit.fr/sorties/sortie-38a814f3-3bea-4129-8679-765980b80f18/,Phil,,7/22/2018 0:00,14.0:45,14.0:55,47.708349000000,-3.992968000000,,Fouesnant - Finistère,40471,observation-38a814f3-3bea-4129-8679-765980b80f18-6,https://biolit.fr/observations/observation-38a814f3-3bea-4129-8679-765980b80f18-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120009.JPG,,FALSE, +N1,59326,sortie-298921fd-b326-458d-b231-9330c28bd85c,https://biolit.fr/sorties/sortie-298921fd-b326-458d-b231-9330c28bd85c/,Club subaquatique Narbonnais,,6/22/2019 0:00,11.0000000,12.0000000,43.168178000000,3.18195200000,Club Subaquatique Narbonnais CSN/FSGT,Port de Narbonne-plage,40473,observation-298921fd-b326-458d-b231-9330c28bd85c,https://biolit.fr/observations/observation-298921fd-b326-458d-b231-9330c28bd85c/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/algues-scaled.jpg,,TRUE, +N1,59326,sortie-298921fd-b326-458d-b231-9330c28bd85c,https://biolit.fr/sorties/sortie-298921fd-b326-458d-b231-9330c28bd85c/,Club subaquatique Narbonnais,,6/22/2019 0:00,11.0000000,12.0000000,43.168178000000,3.18195200000,Club Subaquatique Narbonnais CSN/FSGT,Port de Narbonne-plage,40474,observation-298921fd-b326-458d-b231-9330c28bd85c-2,https://biolit.fr/observations/observation-298921fd-b326-458d-b231-9330c28bd85c-2/,Okenia elegans,Okénia élégante,,https://biolit.fr/wp-content/uploads/2023/07/limace2.JPG,,TRUE, +N1,59326,sortie-298921fd-b326-458d-b231-9330c28bd85c,https://biolit.fr/sorties/sortie-298921fd-b326-458d-b231-9330c28bd85c/,Club subaquatique Narbonnais,,6/22/2019 0:00,11.0000000,12.0000000,43.168178000000,3.18195200000,Club Subaquatique Narbonnais CSN/FSGT,Port de Narbonne-plage,40476,observation-298921fd-b326-458d-b231-9330c28bd85c-3,https://biolit.fr/observations/observation-298921fd-b326-458d-b231-9330c28bd85c-3/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/P6200074-scaled.jpg,,TRUE, +N1,59327,sortie-06e4d4c1-69e7-4203-b183-f9b9260e6126,https://biolit.fr/sorties/sortie-06e4d4c1-69e7-4203-b183-f9b9260e6126/,Phil,,05/05/2019,11.000005,11.0000000,47.799727000000,-4.179060000000,,Loctudy - Finistère,40478,observation-06e4d4c1-69e7-4203-b183-f9b9260e6126,https://biolit.fr/observations/observation-06e4d4c1-69e7-4203-b183-f9b9260e6126/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_111504.jpg,,FALSE, +N1,59327,sortie-06e4d4c1-69e7-4203-b183-f9b9260e6126,https://biolit.fr/sorties/sortie-06e4d4c1-69e7-4203-b183-f9b9260e6126/,Phil,,05/05/2019,11.000005,11.0000000,47.799727000000,-4.179060000000,,Loctudy - Finistère,40480,observation-06e4d4c1-69e7-4203-b183-f9b9260e6126-2,https://biolit.fr/observations/observation-06e4d4c1-69e7-4203-b183-f9b9260e6126-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_111711.jpg,,FALSE, +N1,59327,sortie-06e4d4c1-69e7-4203-b183-f9b9260e6126,https://biolit.fr/sorties/sortie-06e4d4c1-69e7-4203-b183-f9b9260e6126/,Phil,,05/05/2019,11.000005,11.0000000,47.799727000000,-4.179060000000,,Loctudy - Finistère,40482,observation-06e4d4c1-69e7-4203-b183-f9b9260e6126-3,https://biolit.fr/observations/observation-06e4d4c1-69e7-4203-b183-f9b9260e6126-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_111716.jpg,,FALSE, +N1,59327,sortie-06e4d4c1-69e7-4203-b183-f9b9260e6126,https://biolit.fr/sorties/sortie-06e4d4c1-69e7-4203-b183-f9b9260e6126/,Phil,,05/05/2019,11.000005,11.0000000,47.799727000000,-4.179060000000,,Loctudy - Finistère,40484,observation-06e4d4c1-69e7-4203-b183-f9b9260e6126-4,https://biolit.fr/observations/observation-06e4d4c1-69e7-4203-b183-f9b9260e6126-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_111705.jpg,,FALSE, +N1,59327,sortie-06e4d4c1-69e7-4203-b183-f9b9260e6126,https://biolit.fr/sorties/sortie-06e4d4c1-69e7-4203-b183-f9b9260e6126/,Phil,,05/05/2019,11.000005,11.0000000,47.799727000000,-4.179060000000,,Loctudy - Finistère,40486,observation-06e4d4c1-69e7-4203-b183-f9b9260e6126-5,https://biolit.fr/observations/observation-06e4d4c1-69e7-4203-b183-f9b9260e6126-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_111644.jpg,,FALSE, +N1,59327,sortie-06e4d4c1-69e7-4203-b183-f9b9260e6126,https://biolit.fr/sorties/sortie-06e4d4c1-69e7-4203-b183-f9b9260e6126/,Phil,,05/05/2019,11.000005,11.0000000,47.799727000000,-4.179060000000,,Loctudy - Finistère,40488,observation-06e4d4c1-69e7-4203-b183-f9b9260e6126-6,https://biolit.fr/observations/observation-06e4d4c1-69e7-4203-b183-f9b9260e6126-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_111631.jpg,,FALSE, +N1,59328,sortie-998e9e22-1388-469e-95e1-40ab2535329e,https://biolit.fr/sorties/sortie-998e9e22-1388-469e-95e1-40ab2535329e/,Phil,,5/19/2019 0:00,10.0000000,10.0000000,47.799579000000,-4.18079500000,,Loctudy - Finistère,40490,observation-998e9e22-1388-469e-95e1-40ab2535329e,https://biolit.fr/observations/observation-998e9e22-1388-469e-95e1-40ab2535329e/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190519_102812.jpg,,FALSE, +N1,59328,sortie-998e9e22-1388-469e-95e1-40ab2535329e,https://biolit.fr/sorties/sortie-998e9e22-1388-469e-95e1-40ab2535329e/,Phil,,5/19/2019 0:00,10.0000000,10.0000000,47.799579000000,-4.18079500000,,Loctudy - Finistère,40492,observation-998e9e22-1388-469e-95e1-40ab2535329e-2,https://biolit.fr/observations/observation-998e9e22-1388-469e-95e1-40ab2535329e-2/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20190519_103505.jpg,,TRUE, +N1,59328,sortie-998e9e22-1388-469e-95e1-40ab2535329e,https://biolit.fr/sorties/sortie-998e9e22-1388-469e-95e1-40ab2535329e/,Phil,,5/19/2019 0:00,10.0000000,10.0000000,47.799579000000,-4.18079500000,,Loctudy - Finistère,40494,observation-998e9e22-1388-469e-95e1-40ab2535329e-3,https://biolit.fr/observations/observation-998e9e22-1388-469e-95e1-40ab2535329e-3/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20190519_103511.jpg,,TRUE, +N1,59328,sortie-998e9e22-1388-469e-95e1-40ab2535329e,https://biolit.fr/sorties/sortie-998e9e22-1388-469e-95e1-40ab2535329e/,Phil,,5/19/2019 0:00,10.0000000,10.0000000,47.799579000000,-4.18079500000,,Loctudy - Finistère,40496,observation-998e9e22-1388-469e-95e1-40ab2535329e-4,https://biolit.fr/observations/observation-998e9e22-1388-469e-95e1-40ab2535329e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190519_103618.jpg,,FALSE, +N1,59328,sortie-998e9e22-1388-469e-95e1-40ab2535329e,https://biolit.fr/sorties/sortie-998e9e22-1388-469e-95e1-40ab2535329e/,Phil,,5/19/2019 0:00,10.0000000,10.0000000,47.799579000000,-4.18079500000,,Loctudy - Finistère,40498,observation-998e9e22-1388-469e-95e1-40ab2535329e-5,https://biolit.fr/observations/observation-998e9e22-1388-469e-95e1-40ab2535329e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190519_103625.jpg,,FALSE, +N1,59328,sortie-998e9e22-1388-469e-95e1-40ab2535329e,https://biolit.fr/sorties/sortie-998e9e22-1388-469e-95e1-40ab2535329e/,Phil,,5/19/2019 0:00,10.0000000,10.0000000,47.799579000000,-4.18079500000,,Loctudy - Finistère,40500,observation-998e9e22-1388-469e-95e1-40ab2535329e-6,https://biolit.fr/observations/observation-998e9e22-1388-469e-95e1-40ab2535329e-6/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20190519_103632.jpg,,TRUE, +N1,59328,sortie-998e9e22-1388-469e-95e1-40ab2535329e,https://biolit.fr/sorties/sortie-998e9e22-1388-469e-95e1-40ab2535329e/,Phil,,5/19/2019 0:00,10.0000000,10.0000000,47.799579000000,-4.18079500000,,Loctudy - Finistère,40502,observation-998e9e22-1388-469e-95e1-40ab2535329e-7,https://biolit.fr/observations/observation-998e9e22-1388-469e-95e1-40ab2535329e-7/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/20190519_103949.jpg,,TRUE, +N1,59329,sortie-e23955a6-ada5-443f-a080-4c9d69fe52cc,https://biolit.fr/sorties/sortie-e23955a6-ada5-443f-a080-4c9d69fe52cc/,Phil,,6/15/2019 0:00,15.0:35,15.0000000,48.191459000000,-4.304752000000,,Saint-Nic - Finistère,40504,observation-e23955a6-ada5-443f-a080-4c9d69fe52cc,https://biolit.fr/observations/observation-e23955a6-ada5-443f-a080-4c9d69fe52cc/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190615_153702.jpg,,FALSE, +N1,59329,sortie-e23955a6-ada5-443f-a080-4c9d69fe52cc,https://biolit.fr/sorties/sortie-e23955a6-ada5-443f-a080-4c9d69fe52cc/,Phil,,6/15/2019 0:00,15.0:35,15.0000000,48.191459000000,-4.304752000000,,Saint-Nic - Finistère,40506,observation-e23955a6-ada5-443f-a080-4c9d69fe52cc-2,https://biolit.fr/observations/observation-e23955a6-ada5-443f-a080-4c9d69fe52cc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190615_153724.jpg,,FALSE, +N1,59329,sortie-e23955a6-ada5-443f-a080-4c9d69fe52cc,https://biolit.fr/sorties/sortie-e23955a6-ada5-443f-a080-4c9d69fe52cc/,Phil,,6/15/2019 0:00,15.0:35,15.0000000,48.191459000000,-4.304752000000,,Saint-Nic - Finistère,40508,observation-e23955a6-ada5-443f-a080-4c9d69fe52cc-3,https://biolit.fr/observations/observation-e23955a6-ada5-443f-a080-4c9d69fe52cc-3/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/20190615_153741.jpg,,TRUE, +N1,59329,sortie-e23955a6-ada5-443f-a080-4c9d69fe52cc,https://biolit.fr/sorties/sortie-e23955a6-ada5-443f-a080-4c9d69fe52cc/,Phil,,6/15/2019 0:00,15.0:35,15.0000000,48.191459000000,-4.304752000000,,Saint-Nic - Finistère,40510,observation-e23955a6-ada5-443f-a080-4c9d69fe52cc-4,https://biolit.fr/observations/observation-e23955a6-ada5-443f-a080-4c9d69fe52cc-4/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/20190615_153914.jpg,,TRUE, +N1,59329,sortie-e23955a6-ada5-443f-a080-4c9d69fe52cc,https://biolit.fr/sorties/sortie-e23955a6-ada5-443f-a080-4c9d69fe52cc/,Phil,,6/15/2019 0:00,15.0:35,15.0000000,48.191459000000,-4.304752000000,,Saint-Nic - Finistère,40512,observation-e23955a6-ada5-443f-a080-4c9d69fe52cc-5,https://biolit.fr/observations/observation-e23955a6-ada5-443f-a080-4c9d69fe52cc-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190615_154031.jpg,,FALSE, +N1,59329,sortie-e23955a6-ada5-443f-a080-4c9d69fe52cc,https://biolit.fr/sorties/sortie-e23955a6-ada5-443f-a080-4c9d69fe52cc/,Phil,,6/15/2019 0:00,15.0:35,15.0000000,48.191459000000,-4.304752000000,,Saint-Nic - Finistère,40514,observation-e23955a6-ada5-443f-a080-4c9d69fe52cc-6,https://biolit.fr/observations/observation-e23955a6-ada5-443f-a080-4c9d69fe52cc-6/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/20190615_153840-scaled.jpg,,TRUE, +N1,59330,sortie-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b,https://biolit.fr/sorties/sortie-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b/,Phil,,6/14/2019 0:00,12.0:15,12.0000000,47.892812000000,-4.127220000000,,Gouesnach - Finistère,40516,observation-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b,https://biolit.fr/observations/observation-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190614_121643.jpg,,FALSE, +N1,59330,sortie-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b,https://biolit.fr/sorties/sortie-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b/,Phil,,6/14/2019 0:00,12.0:15,12.0000000,47.892812000000,-4.127220000000,,Gouesnach - Finistère,40518,observation-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b-2,https://biolit.fr/observations/observation-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190614_121622.jpg,,FALSE, +N1,59330,sortie-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b,https://biolit.fr/sorties/sortie-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b/,Phil,,6/14/2019 0:00,12.0:15,12.0000000,47.892812000000,-4.127220000000,,Gouesnach - Finistère,40520,observation-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b-3,https://biolit.fr/observations/observation-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190614_121611.jpg,,FALSE, +N1,59330,sortie-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b,https://biolit.fr/sorties/sortie-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b/,Phil,,6/14/2019 0:00,12.0:15,12.0000000,47.892812000000,-4.127220000000,,Gouesnach - Finistère,40522,observation-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b-4,https://biolit.fr/observations/observation-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190614_121600.jpg,,FALSE, +N1,59330,sortie-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b,https://biolit.fr/sorties/sortie-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b/,Phil,,6/14/2019 0:00,12.0:15,12.0000000,47.892812000000,-4.127220000000,,Gouesnach - Finistère,40524,observation-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b-5,https://biolit.fr/observations/observation-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190614_121553.jpg,,FALSE, +N1,59330,sortie-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b,https://biolit.fr/sorties/sortie-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b/,Phil,,6/14/2019 0:00,12.0:15,12.0000000,47.892812000000,-4.127220000000,,Gouesnach - Finistère,40526,observation-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b-6,https://biolit.fr/observations/observation-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190614_121453.jpg,,FALSE, +N1,59330,sortie-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b,https://biolit.fr/sorties/sortie-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b/,Phil,,6/14/2019 0:00,12.0:15,12.0000000,47.892812000000,-4.127220000000,,Gouesnach - Finistère,40528,observation-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b-7,https://biolit.fr/observations/observation-2e3f9279-2927-4ca5-b3e8-e9dc1f23628b-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190614_121653.jpg,,FALSE, +N1,59331,sortie-8f9ccfa8-f8eb-4b5e-91f3-4423c064e05a,https://biolit.fr/sorties/sortie-8f9ccfa8-f8eb-4b5e-91f3-4423c064e05a/,Club subaquatique Narbonnais,,6/16/2019 0:00,12.0000000,13.0000000,43.168397000000,3.18165200000,Club Subaquatique Narbonnais CSN/FSGT,Port de Narbonne-plage,40530,observation-8f9ccfa8-f8eb-4b5e-91f3-4423c064e05a,https://biolit.fr/observations/observation-8f9ccfa8-f8eb-4b5e-91f3-4423c064e05a/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P6160046.JPG,,TRUE, +N1,59331,sortie-8f9ccfa8-f8eb-4b5e-91f3-4423c064e05a,https://biolit.fr/sorties/sortie-8f9ccfa8-f8eb-4b5e-91f3-4423c064e05a/,Club subaquatique Narbonnais,,6/16/2019 0:00,12.0000000,13.0000000,43.168397000000,3.18165200000,Club Subaquatique Narbonnais CSN/FSGT,Port de Narbonne-plage,40532,observation-8f9ccfa8-f8eb-4b5e-91f3-4423c064e05a-2,https://biolit.fr/observations/observation-8f9ccfa8-f8eb-4b5e-91f3-4423c064e05a-2/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P6160049.JPG,,TRUE, +N1,59331,sortie-8f9ccfa8-f8eb-4b5e-91f3-4423c064e05a,https://biolit.fr/sorties/sortie-8f9ccfa8-f8eb-4b5e-91f3-4423c064e05a/,Club subaquatique Narbonnais,,6/16/2019 0:00,12.0000000,13.0000000,43.168397000000,3.18165200000,Club Subaquatique Narbonnais CSN/FSGT,Port de Narbonne-plage,40534,observation-8f9ccfa8-f8eb-4b5e-91f3-4423c064e05a-3,https://biolit.fr/observations/observation-8f9ccfa8-f8eb-4b5e-91f3-4423c064e05a-3/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P6160053.JPG,,TRUE, +N1,59331,sortie-8f9ccfa8-f8eb-4b5e-91f3-4423c064e05a,https://biolit.fr/sorties/sortie-8f9ccfa8-f8eb-4b5e-91f3-4423c064e05a/,Club subaquatique Narbonnais,,6/16/2019 0:00,12.0000000,13.0000000,43.168397000000,3.18165200000,Club Subaquatique Narbonnais CSN/FSGT,Port de Narbonne-plage,40536,observation-8f9ccfa8-f8eb-4b5e-91f3-4423c064e05a-4,https://biolit.fr/observations/observation-8f9ccfa8-f8eb-4b5e-91f3-4423c064e05a-4/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P6160081-scaled.jpg,,TRUE, +N1,59332,sortie-e43512a7-d2e6-4462-ab06-3f6c60d630a1,https://biolit.fr/sorties/sortie-e43512a7-d2e6-4462-ab06-3f6c60d630a1/,Phil,,05/05/2019,11.0000000,11.0:15,47.799879000000,-4.179602000000,,Loctudy - Finistère,40538,observation-e43512a7-d2e6-4462-ab06-3f6c60d630a1,https://biolit.fr/observations/observation-e43512a7-d2e6-4462-ab06-3f6c60d630a1/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/20190505_110005.jpg,,TRUE, +N1,59332,sortie-e43512a7-d2e6-4462-ab06-3f6c60d630a1,https://biolit.fr/sorties/sortie-e43512a7-d2e6-4462-ab06-3f6c60d630a1/,Phil,,05/05/2019,11.0000000,11.0:15,47.799879000000,-4.179602000000,,Loctudy - Finistère,40540,observation-e43512a7-d2e6-4462-ab06-3f6c60d630a1-2,https://biolit.fr/observations/observation-e43512a7-d2e6-4462-ab06-3f6c60d630a1-2/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/20190505_110018.jpg,,TRUE, +N1,59332,sortie-e43512a7-d2e6-4462-ab06-3f6c60d630a1,https://biolit.fr/sorties/sortie-e43512a7-d2e6-4462-ab06-3f6c60d630a1/,Phil,,05/05/2019,11.0000000,11.0:15,47.799879000000,-4.179602000000,,Loctudy - Finistère,40542,observation-e43512a7-d2e6-4462-ab06-3f6c60d630a1-3,https://biolit.fr/observations/observation-e43512a7-d2e6-4462-ab06-3f6c60d630a1-3/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/07/20190505_110207.jpg,,TRUE, +N1,59332,sortie-e43512a7-d2e6-4462-ab06-3f6c60d630a1,https://biolit.fr/sorties/sortie-e43512a7-d2e6-4462-ab06-3f6c60d630a1/,Phil,,05/05/2019,11.0000000,11.0:15,47.799879000000,-4.179602000000,,Loctudy - Finistère,40544,observation-e43512a7-d2e6-4462-ab06-3f6c60d630a1-4,https://biolit.fr/observations/observation-e43512a7-d2e6-4462-ab06-3f6c60d630a1-4/,Aplidium turbinatum,Flocon pédonculé trompette,,https://biolit.fr/wp-content/uploads/2023/07/20190505_111452.jpg,,TRUE, +N1,59332,sortie-e43512a7-d2e6-4462-ab06-3f6c60d630a1,https://biolit.fr/sorties/sortie-e43512a7-d2e6-4462-ab06-3f6c60d630a1/,Phil,,05/05/2019,11.0000000,11.0:15,47.799879000000,-4.179602000000,,Loctudy - Finistère,40546,observation-e43512a7-d2e6-4462-ab06-3f6c60d630a1-5,https://biolit.fr/observations/observation-e43512a7-d2e6-4462-ab06-3f6c60d630a1-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190505_110124-scaled.jpg,,TRUE, +N1,59333,sortie-13e0f1f5-5098-4e27-900b-037503814f94,https://biolit.fr/sorties/sortie-13e0f1f5-5098-4e27-900b-037503814f94/,Septentrion Environnement,,06/08/2019,14.0000000,15.0000000,43.18858600000,5.385627000000,,Calanque de Pouars (Ile Plane - Riou Marseille),40548,observation-13e0f1f5-5098-4e27-900b-037503814f94,https://biolit.fr/observations/observation-13e0f1f5-5098-4e27-900b-037503814f94/,Clavelina lepadiformis,Grande claveline,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4277-2-scaled.jpg,,TRUE, +N1,59334,sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704,https://biolit.fr/sorties/sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704/,Phil,,06/04/2019,12.0000000,13.0:25,48.194447000000,-4.550043000000,,Crozon - Finistère,40550,observation-ca8e976b-41c9-49ca-84c0-be5df00e1704,https://biolit.fr/observations/observation-ca8e976b-41c9-49ca-84c0-be5df00e1704/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120514.JPG,,TRUE, +N1,59334,sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704,https://biolit.fr/sorties/sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704/,Phil,,06/04/2019,12.0000000,13.0:25,48.194447000000,-4.550043000000,,Crozon - Finistère,40552,observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-2,https://biolit.fr/observations/observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-2/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120545.JPG,,TRUE, +N1,59334,sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704,https://biolit.fr/sorties/sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704/,Phil,,06/04/2019,12.0000000,13.0:25,48.194447000000,-4.550043000000,,Crozon - Finistère,40554,observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-3,https://biolit.fr/observations/observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-3/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120547.JPG,,TRUE, +N1,59334,sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704,https://biolit.fr/sorties/sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704/,Phil,,06/04/2019,12.0000000,13.0:25,48.194447000000,-4.550043000000,,Crozon - Finistère,40556,observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-4,https://biolit.fr/observations/observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-4/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120553.JPG,,TRUE, +N1,59334,sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704,https://biolit.fr/sorties/sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704/,Phil,,06/04/2019,12.0000000,13.0:25,48.194447000000,-4.550043000000,,Crozon - Finistère,40558,observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-5,https://biolit.fr/observations/observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-5/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120554.JPG,,TRUE, +N1,59334,sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704,https://biolit.fr/sorties/sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704/,Phil,,06/04/2019,12.0000000,13.0:25,48.194447000000,-4.550043000000,,Crozon - Finistère,40560,observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-6,https://biolit.fr/observations/observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-6/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120571.JPG,,TRUE, +N1,59334,sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704,https://biolit.fr/sorties/sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704/,Phil,,06/04/2019,12.0000000,13.0:25,48.194447000000,-4.550043000000,,Crozon - Finistère,40562,observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-7,https://biolit.fr/observations/observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-7/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120572.JPG,,TRUE, +N1,59334,sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704,https://biolit.fr/sorties/sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704/,Phil,,06/04/2019,12.0000000,13.0:25,48.194447000000,-4.550043000000,,Crozon - Finistère,40564,observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-8,https://biolit.fr/observations/observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-8/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120586.JPG,,TRUE, +N1,59334,sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704,https://biolit.fr/sorties/sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704/,Phil,,06/04/2019,12.0000000,13.0:25,48.194447000000,-4.550043000000,,Crozon - Finistère,40566,observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-9,https://biolit.fr/observations/observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-9/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120591.JPG,,TRUE, +N1,59334,sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704,https://biolit.fr/sorties/sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704/,Phil,,06/04/2019,12.0000000,13.0:25,48.194447000000,-4.550043000000,,Crozon - Finistère,40568,observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-10,https://biolit.fr/observations/observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-10/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120640.JPG,,TRUE, +N1,59334,sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704,https://biolit.fr/sorties/sortie-ca8e976b-41c9-49ca-84c0-be5df00e1704/,Phil,,06/04/2019,12.0000000,13.0:25,48.194447000000,-4.550043000000,,Crozon - Finistère,40570,observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-11,https://biolit.fr/observations/observation-ca8e976b-41c9-49ca-84c0-be5df00e1704-11/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120653.JPG,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40572,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Alconium.jpg,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40574,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-2,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-2/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Amande de mer.jpg,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40576,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-3,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Anémone Metridium sp. (2).jpg,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40578,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-4,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-4/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asteria rubens.PNG,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40579,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-5,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/asterina gibbosa.PNG,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40580,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-6,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-6/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/Bouquet Palaemon serratus.jpg,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40582,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-7,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-7/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/Blennius pholis.jpg,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40584,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-8,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Corella emyota.jpg,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40586,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-9,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-9/,Cyclopterus lumpus,Lompe,,https://biolit.fr/wp-content/uploads/2023/07/Cyclopterus lumpus.jpg,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40588,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-10,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-10/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibbosa_0.PNG,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40589,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-11,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-11/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/cancer pagurus.PNG,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40590,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-12,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-12/,Dromia personata,Dromie,,https://biolit.fr/wp-content/uploads/2023/07/Dromia personata.jpg,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40592,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-13,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-13/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Cerastoderma edule_0.PNG,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40593,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-14,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-14/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea-scaled.jpg,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40594,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-15,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Doridien sp.PNG,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40595,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-16,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Balanus crenatus.jpg,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40597,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-17,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-17/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Elminius modestus.jpg,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40599,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-18,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-18/,Diodora graeca,Fissurelle,,https://biolit.fr/wp-content/uploads/2023/07/diodora graeca.PNG,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40600,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-19,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-19/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Psammecchinus miliaris.jpg,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40602,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-20,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lanice conchilega1.jpg,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40604,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-21,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-21/,Mercenaria mercenaria,Clam,,https://biolit.fr/wp-content/uploads/2023/07/Venerupis decussata.jpg,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40606,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-22,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/Murex Ocenebra orinacea.jpg,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40608,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-23,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-23/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/Oeufs de Nucelle.jpg,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40610,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-24,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/Laminaire sucrée.jpg,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40612,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-25,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/Halichondria sp.jpg,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40614,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-26,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-26/,,,,https://biolit.fr/wp-content/uploads/2023/05/gibbule ombiliquée.jpg,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40615,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-27,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-27/,,,,https://biolit.fr/wp-content/uploads/2023/05/Pholade-scaled.jpg,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40616,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-28,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mulet.jpg,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40618,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-29,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/Eponge Halicondria panicea.jpg,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40620,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-30,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-30/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nucella lapillus.PNG,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40621,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-31,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-31/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crepidula fornicata.PNG,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40622,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-32,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-32/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina obtusata.PNG,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40623,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-33,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-33/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_0.PNG,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40624,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-34,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-34/,Ensis magnus,Couteau arqué,,https://biolit.fr/wp-content/uploads/2023/07/Ensis magnus.jpg,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40626,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-35,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-35/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Etrille Necora puber.jpg,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40628,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-36,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-36/,,,,https://biolit.fr/wp-content/uploads/2023/07/Méduse boussole.jpg,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40630,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-37,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-37/,Scyliorhinus canicula,Capsule de petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/Oeuf de roussette.PNG,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40631,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-38,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-38/,,,,https://biolit.fr/wp-content/uploads/2023/07/Oeufs de Lompe.jpg,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40633,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-39,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-39/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/Galathée (3).jpg,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40635,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-40,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-40/,,,,https://biolit.fr/wp-content/uploads/2023/07/Serpule.jpg,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40637,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-41,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-41/,,,,https://biolit.fr/wp-content/uploads/2023/07/Talitrus saltator.jpg,,FALSE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40639,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-42,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-42/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Nassarius reticulatus.PNG,,TRUE, +N1,59335,sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14,https://biolit.fr/sorties/sortie-22f73c8e-5c79-4612-810e-0637f0cc8b14/,CPIE Vallée de l'Orne,,4/18/2019 0:00,16.0000000,18.0000000,49.333563000000,-0.396469000000,,"Réserve naturelle de la Falaise du Cap Romain, Saint-Aubin-sur-Mer",40640,observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-43,https://biolit.fr/observations/observation-22f73c8e-5c79-4612-810e-0637f0cc8b14-43/,,,,https://biolit.fr/wp-content/uploads/2023/07/mytilus edulis-scaled.jpg,,FALSE, +N1,59336,sortie-95e16bd2-cd19-45bd-bcca-20289f6bfa9e,https://biolit.fr/sorties/sortie-95e16bd2-cd19-45bd-bcca-20289f6bfa9e/,Phil,,04/11/2019,13.0:15,13.0000000,47.794802000000,-4.213930000000,,Lesconil - Finistère,40641,observation-95e16bd2-cd19-45bd-bcca-20289f6bfa9e,https://biolit.fr/observations/observation-95e16bd2-cd19-45bd-bcca-20289f6bfa9e/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190411_131938.jpg,,FALSE, +N1,59336,sortie-95e16bd2-cd19-45bd-bcca-20289f6bfa9e,https://biolit.fr/sorties/sortie-95e16bd2-cd19-45bd-bcca-20289f6bfa9e/,Phil,,04/11/2019,13.0:15,13.0000000,47.794802000000,-4.213930000000,,Lesconil - Finistère,40643,observation-95e16bd2-cd19-45bd-bcca-20289f6bfa9e-2,https://biolit.fr/observations/observation-95e16bd2-cd19-45bd-bcca-20289f6bfa9e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190411_131943.jpg,,FALSE, +N1,59336,sortie-95e16bd2-cd19-45bd-bcca-20289f6bfa9e,https://biolit.fr/sorties/sortie-95e16bd2-cd19-45bd-bcca-20289f6bfa9e/,Phil,,04/11/2019,13.0:15,13.0000000,47.794802000000,-4.213930000000,,Lesconil - Finistère,40645,observation-95e16bd2-cd19-45bd-bcca-20289f6bfa9e-3,https://biolit.fr/observations/observation-95e16bd2-cd19-45bd-bcca-20289f6bfa9e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190411_131959.jpg,,FALSE, +N1,59336,sortie-95e16bd2-cd19-45bd-bcca-20289f6bfa9e,https://biolit.fr/sorties/sortie-95e16bd2-cd19-45bd-bcca-20289f6bfa9e/,Phil,,04/11/2019,13.0:15,13.0000000,47.794802000000,-4.213930000000,,Lesconil - Finistère,40647,observation-95e16bd2-cd19-45bd-bcca-20289f6bfa9e-4,https://biolit.fr/observations/observation-95e16bd2-cd19-45bd-bcca-20289f6bfa9e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190411_132026.jpg,,FALSE, +N1,59336,sortie-95e16bd2-cd19-45bd-bcca-20289f6bfa9e,https://biolit.fr/sorties/sortie-95e16bd2-cd19-45bd-bcca-20289f6bfa9e/,Phil,,04/11/2019,13.0:15,13.0000000,47.794802000000,-4.213930000000,,Lesconil - Finistère,40649,observation-95e16bd2-cd19-45bd-bcca-20289f6bfa9e-5,https://biolit.fr/observations/observation-95e16bd2-cd19-45bd-bcca-20289f6bfa9e-5/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20190411_132040.jpg,,TRUE, +N1,59337,sortie-016d23d1-5d42-484f-b05b-489539c42df5,https://biolit.fr/sorties/sortie-016d23d1-5d42-484f-b05b-489539c42df5/,Phil,,05/05/2019,10.0000000,11.0000000,47.798749000000,-4.18058900000,,Loctudy - Finistère,40651,observation-016d23d1-5d42-484f-b05b-489539c42df5,https://biolit.fr/observations/observation-016d23d1-5d42-484f-b05b-489539c42df5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20190505_105130.jpg,,TRUE, +N1,59337,sortie-016d23d1-5d42-484f-b05b-489539c42df5,https://biolit.fr/sorties/sortie-016d23d1-5d42-484f-b05b-489539c42df5/,Phil,,05/05/2019,10.0000000,11.0000000,47.798749000000,-4.18058900000,,Loctudy - Finistère,40653,observation-016d23d1-5d42-484f-b05b-489539c42df5-2,https://biolit.fr/observations/observation-016d23d1-5d42-484f-b05b-489539c42df5-2/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20190505_105139.jpg,,TRUE, +N1,59337,sortie-016d23d1-5d42-484f-b05b-489539c42df5,https://biolit.fr/sorties/sortie-016d23d1-5d42-484f-b05b-489539c42df5/,Phil,,05/05/2019,10.0000000,11.0000000,47.798749000000,-4.18058900000,,Loctudy - Finistère,40655,observation-016d23d1-5d42-484f-b05b-489539c42df5-3,https://biolit.fr/observations/observation-016d23d1-5d42-484f-b05b-489539c42df5-3/,Aplidium turbinatum,Flocon pédonculé trompette,,https://biolit.fr/wp-content/uploads/2023/07/20190505_105257.jpg,,TRUE, +N1,59337,sortie-016d23d1-5d42-484f-b05b-489539c42df5,https://biolit.fr/sorties/sortie-016d23d1-5d42-484f-b05b-489539c42df5/,Phil,,05/05/2019,10.0000000,11.0000000,47.798749000000,-4.18058900000,,Loctudy - Finistère,40657,observation-016d23d1-5d42-484f-b05b-489539c42df5-4,https://biolit.fr/observations/observation-016d23d1-5d42-484f-b05b-489539c42df5-4/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20190505_105327.jpg,,TRUE, +N1,59337,sortie-016d23d1-5d42-484f-b05b-489539c42df5,https://biolit.fr/sorties/sortie-016d23d1-5d42-484f-b05b-489539c42df5/,Phil,,05/05/2019,10.0000000,11.0000000,47.798749000000,-4.18058900000,,Loctudy - Finistère,40659,observation-016d23d1-5d42-484f-b05b-489539c42df5-5,https://biolit.fr/observations/observation-016d23d1-5d42-484f-b05b-489539c42df5-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_105422-scaled.jpg,,FALSE, +N1,59338,sortie-70867b1d-3bee-4cba-b386-716a981fa4af,https://biolit.fr/sorties/sortie-70867b1d-3bee-4cba-b386-716a981fa4af/,Epi Pidou,,5/31/2019 0:00,15.0000000,17.0000000,51.049308000000,2.381141000000,,leffrinckoucke,40661,observation-70867b1d-3bee-4cba-b386-716a981fa4af,https://biolit.fr/observations/observation-70867b1d-3bee-4cba-b386-716a981fa4af/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1107_0-scaled.jpg,,FALSE, +N1,59339,sortie-6e2db40b-c154-4095-bea0-49d954e46aa0,https://biolit.fr/sorties/sortie-6e2db40b-c154-4095-bea0-49d954e46aa0/,Epi Pidou,,5/31/2019 0:00,15.0000000,17.0000000,51.049524000000,2.382171000000,,Leffrinckoucke,40663,observation-6e2db40b-c154-4095-bea0-49d954e46aa0,https://biolit.fr/observations/observation-6e2db40b-c154-4095-bea0-49d954e46aa0/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1110-scaled.jpg,,FALSE, +N1,59340,sortie-f9e25857-03d0-42cb-a63e-0b08b9a0e9da,https://biolit.fr/sorties/sortie-f9e25857-03d0-42cb-a63e-0b08b9a0e9da/,Baudouin Vynck,,5/22/2019 0:00,10.0000000,10.000005,51.056551000000,2.424700000000,,plage de dunkerque ,40664,observation-f9e25857-03d0-42cb-a63e-0b08b9a0e9da,https://biolit.fr/observations/observation-f9e25857-03d0-42cb-a63e-0b08b9a0e9da/,Loligo spp.,Ponte de Calmar,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/meduse_baudouin-scaled.jpg,,TRUE, +N1,59341,sortie-d555798e-737d-4108-9184-b6559b4ecdef,https://biolit.fr/sorties/sortie-d555798e-737d-4108-9184-b6559b4ecdef/,Phil,,05/05/2019,10.0000000,10.0000000,47.79976600000,-4.181040000000,,Loctudy - Finistère,40666,observation-d555798e-737d-4108-9184-b6559b4ecdef,https://biolit.fr/observations/observation-d555798e-737d-4108-9184-b6559b4ecdef/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_104954.jpg,,FALSE, +N1,59341,sortie-d555798e-737d-4108-9184-b6559b4ecdef,https://biolit.fr/sorties/sortie-d555798e-737d-4108-9184-b6559b4ecdef/,Phil,,05/05/2019,10.0000000,10.0000000,47.79976600000,-4.181040000000,,Loctudy - Finistère,40668,observation-d555798e-737d-4108-9184-b6559b4ecdef-2,https://biolit.fr/observations/observation-d555798e-737d-4108-9184-b6559b4ecdef-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_104845.jpg,,FALSE, +N1,59341,sortie-d555798e-737d-4108-9184-b6559b4ecdef,https://biolit.fr/sorties/sortie-d555798e-737d-4108-9184-b6559b4ecdef/,Phil,,05/05/2019,10.0000000,10.0000000,47.79976600000,-4.181040000000,,Loctudy - Finistère,40670,observation-d555798e-737d-4108-9184-b6559b4ecdef-3,https://biolit.fr/observations/observation-d555798e-737d-4108-9184-b6559b4ecdef-3/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20190505_104834.jpg,,TRUE, +N1,59341,sortie-d555798e-737d-4108-9184-b6559b4ecdef,https://biolit.fr/sorties/sortie-d555798e-737d-4108-9184-b6559b4ecdef/,Phil,,05/05/2019,10.0000000,10.0000000,47.79976600000,-4.181040000000,,Loctudy - Finistère,40672,observation-d555798e-737d-4108-9184-b6559b4ecdef-4,https://biolit.fr/observations/observation-d555798e-737d-4108-9184-b6559b4ecdef-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_104809.jpg,,FALSE, +N1,59341,sortie-d555798e-737d-4108-9184-b6559b4ecdef,https://biolit.fr/sorties/sortie-d555798e-737d-4108-9184-b6559b4ecdef/,Phil,,05/05/2019,10.0000000,10.0000000,47.79976600000,-4.181040000000,,Loctudy - Finistère,40674,observation-d555798e-737d-4108-9184-b6559b4ecdef-5,https://biolit.fr/observations/observation-d555798e-737d-4108-9184-b6559b4ecdef-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_104758.jpg,,FALSE, +N1,59341,sortie-d555798e-737d-4108-9184-b6559b4ecdef,https://biolit.fr/sorties/sortie-d555798e-737d-4108-9184-b6559b4ecdef/,Phil,,05/05/2019,10.0000000,10.0000000,47.79976600000,-4.181040000000,,Loctudy - Finistère,40676,observation-d555798e-737d-4108-9184-b6559b4ecdef-6,https://biolit.fr/observations/observation-d555798e-737d-4108-9184-b6559b4ecdef-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_104208.jpg,,FALSE, +N1,59342,sortie-6065dc79-c640-4416-9b9e-1cebff645a3a,https://biolit.fr/sorties/sortie-6065dc79-c640-4416-9b9e-1cebff645a3a/,Phil,,04/11/2019,13.000005,13.0000000,47.794888000000,-4.213909000000,,Lesconil - Finistère,40678,observation-6065dc79-c640-4416-9b9e-1cebff645a3a,https://biolit.fr/observations/observation-6065dc79-c640-4416-9b9e-1cebff645a3a/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190411_131841.jpg,,FALSE, +N1,59342,sortie-6065dc79-c640-4416-9b9e-1cebff645a3a,https://biolit.fr/sorties/sortie-6065dc79-c640-4416-9b9e-1cebff645a3a/,Phil,,04/11/2019,13.000005,13.0000000,47.794888000000,-4.213909000000,,Lesconil - Finistère,40680,observation-6065dc79-c640-4416-9b9e-1cebff645a3a-2,https://biolit.fr/observations/observation-6065dc79-c640-4416-9b9e-1cebff645a3a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190411_131641.jpg,,FALSE, +N1,59343,sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa,https://biolit.fr/sorties/sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa/,Phil,,05/05/2019,10.0:35,10.0:45,47.799147000000,-4.180225000000,,Loctudy - Finistère,40682,observation-d788fb5e-ab24-45a5-bd11-2fd910195daa,https://biolit.fr/observations/observation-d788fb5e-ab24-45a5-bd11-2fd910195daa/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_104151.jpg,,FALSE, +N1,59343,sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa,https://biolit.fr/sorties/sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa/,Phil,,05/05/2019,10.0:35,10.0:45,47.799147000000,-4.180225000000,,Loctudy - Finistère,40684,observation-d788fb5e-ab24-45a5-bd11-2fd910195daa-2,https://biolit.fr/observations/observation-d788fb5e-ab24-45a5-bd11-2fd910195daa-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_104146.jpg,,FALSE, +N1,59343,sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa,https://biolit.fr/sorties/sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa/,Phil,,05/05/2019,10.0:35,10.0:45,47.799147000000,-4.180225000000,,Loctudy - Finistère,40686,observation-d788fb5e-ab24-45a5-bd11-2fd910195daa-3,https://biolit.fr/observations/observation-d788fb5e-ab24-45a5-bd11-2fd910195daa-3/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190505_104137.jpg,,TRUE, +N1,59343,sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa,https://biolit.fr/sorties/sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa/,Phil,,05/05/2019,10.0:35,10.0:45,47.799147000000,-4.180225000000,,Loctudy - Finistère,40688,observation-d788fb5e-ab24-45a5-bd11-2fd910195daa-4,https://biolit.fr/observations/observation-d788fb5e-ab24-45a5-bd11-2fd910195daa-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_104124.jpg,,FALSE, +N1,59343,sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa,https://biolit.fr/sorties/sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa/,Phil,,05/05/2019,10.0:35,10.0:45,47.799147000000,-4.180225000000,,Loctudy - Finistère,40690,observation-d788fb5e-ab24-45a5-bd11-2fd910195daa-5,https://biolit.fr/observations/observation-d788fb5e-ab24-45a5-bd11-2fd910195daa-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_104114.jpg,,FALSE, +N1,59343,sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa,https://biolit.fr/sorties/sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa/,Phil,,05/05/2019,10.0:35,10.0:45,47.799147000000,-4.180225000000,,Loctudy - Finistère,40692,observation-d788fb5e-ab24-45a5-bd11-2fd910195daa-6,https://biolit.fr/observations/observation-d788fb5e-ab24-45a5-bd11-2fd910195daa-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_104106.jpg,,FALSE, +N1,59343,sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa,https://biolit.fr/sorties/sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa/,Phil,,05/05/2019,10.0:35,10.0:45,47.799147000000,-4.180225000000,,Loctudy - Finistère,40694,observation-d788fb5e-ab24-45a5-bd11-2fd910195daa-7,https://biolit.fr/observations/observation-d788fb5e-ab24-45a5-bd11-2fd910195daa-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_104102.jpg,,FALSE, +N1,59343,sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa,https://biolit.fr/sorties/sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa/,Phil,,05/05/2019,10.0:35,10.0:45,47.799147000000,-4.180225000000,,Loctudy - Finistère,40696,observation-d788fb5e-ab24-45a5-bd11-2fd910195daa-8,https://biolit.fr/observations/observation-d788fb5e-ab24-45a5-bd11-2fd910195daa-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_104057.jpg,,FALSE, +N1,59343,sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa,https://biolit.fr/sorties/sortie-d788fb5e-ab24-45a5-bd11-2fd910195daa/,Phil,,05/05/2019,10.0:35,10.0:45,47.799147000000,-4.180225000000,,Loctudy - Finistère,40698,observation-d788fb5e-ab24-45a5-bd11-2fd910195daa-9,https://biolit.fr/observations/observation-d788fb5e-ab24-45a5-bd11-2fd910195daa-9/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20190505_103754.jpg,,TRUE, +N1,59344,sortie-2c531398-89c9-4447-a92f-b5eeb1a68615,https://biolit.fr/sorties/sortie-2c531398-89c9-4447-a92f-b5eeb1a68615/,Phil,,7/22/2018 0:00,14.0:45,14.0000000,47.708233000000,-3.993089000000,,Fouesnant - Finistère,40700,observation-2c531398-89c9-4447-a92f-b5eeb1a68615,https://biolit.fr/observations/observation-2c531398-89c9-4447-a92f-b5eeb1a68615/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110999.JPG,,FALSE, +N1,59344,sortie-2c531398-89c9-4447-a92f-b5eeb1a68615,https://biolit.fr/sorties/sortie-2c531398-89c9-4447-a92f-b5eeb1a68615/,Phil,,7/22/2018 0:00,14.0:45,14.0000000,47.708233000000,-3.993089000000,,Fouesnant - Finistère,40702,observation-2c531398-89c9-4447-a92f-b5eeb1a68615-2,https://biolit.fr/observations/observation-2c531398-89c9-4447-a92f-b5eeb1a68615-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120001.JPG,,FALSE, +N1,59344,sortie-2c531398-89c9-4447-a92f-b5eeb1a68615,https://biolit.fr/sorties/sortie-2c531398-89c9-4447-a92f-b5eeb1a68615/,Phil,,7/22/2018 0:00,14.0:45,14.0000000,47.708233000000,-3.993089000000,,Fouesnant - Finistère,40704,observation-2c531398-89c9-4447-a92f-b5eeb1a68615-3,https://biolit.fr/observations/observation-2c531398-89c9-4447-a92f-b5eeb1a68615-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120004.JPG,,FALSE, +N1,59344,sortie-2c531398-89c9-4447-a92f-b5eeb1a68615,https://biolit.fr/sorties/sortie-2c531398-89c9-4447-a92f-b5eeb1a68615/,Phil,,7/22/2018 0:00,14.0:45,14.0000000,47.708233000000,-3.993089000000,,Fouesnant - Finistère,40706,observation-2c531398-89c9-4447-a92f-b5eeb1a68615-4,https://biolit.fr/observations/observation-2c531398-89c9-4447-a92f-b5eeb1a68615-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120006.JPG,,FALSE, +N1,59344,sortie-2c531398-89c9-4447-a92f-b5eeb1a68615,https://biolit.fr/sorties/sortie-2c531398-89c9-4447-a92f-b5eeb1a68615/,Phil,,7/22/2018 0:00,14.0:45,14.0000000,47.708233000000,-3.993089000000,,Fouesnant - Finistère,40708,observation-2c531398-89c9-4447-a92f-b5eeb1a68615-5,https://biolit.fr/observations/observation-2c531398-89c9-4447-a92f-b5eeb1a68615-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120007.JPG,,FALSE, +N1,59345,sortie-0437da57-5100-4416-bb17-b219cbac7684,https://biolit.fr/sorties/sortie-0437da57-5100-4416-bb17-b219cbac7684/,Phil,,05/05/2019,10.0000000,10.0000000,47.799477000000,-4.179731000000,,Loctudy - Finistère,40710,observation-0437da57-5100-4416-bb17-b219cbac7684,https://biolit.fr/observations/observation-0437da57-5100-4416-bb17-b219cbac7684/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20190505_103238.jpg,,TRUE, +N1,59345,sortie-0437da57-5100-4416-bb17-b219cbac7684,https://biolit.fr/sorties/sortie-0437da57-5100-4416-bb17-b219cbac7684/,Phil,,05/05/2019,10.0000000,10.0000000,47.799477000000,-4.179731000000,,Loctudy - Finistère,40712,observation-0437da57-5100-4416-bb17-b219cbac7684-2,https://biolit.fr/observations/observation-0437da57-5100-4416-bb17-b219cbac7684-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_103254.jpg,,FALSE, +N1,59345,sortie-0437da57-5100-4416-bb17-b219cbac7684,https://biolit.fr/sorties/sortie-0437da57-5100-4416-bb17-b219cbac7684/,Phil,,05/05/2019,10.0000000,10.0000000,47.799477000000,-4.179731000000,,Loctudy - Finistère,40714,observation-0437da57-5100-4416-bb17-b219cbac7684-3,https://biolit.fr/observations/observation-0437da57-5100-4416-bb17-b219cbac7684-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_103258.jpg,,FALSE, +N1,59345,sortie-0437da57-5100-4416-bb17-b219cbac7684,https://biolit.fr/sorties/sortie-0437da57-5100-4416-bb17-b219cbac7684/,Phil,,05/05/2019,10.0000000,10.0000000,47.799477000000,-4.179731000000,,Loctudy - Finistère,40716,observation-0437da57-5100-4416-bb17-b219cbac7684-4,https://biolit.fr/observations/observation-0437da57-5100-4416-bb17-b219cbac7684-4/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20190505_103611.jpg,,TRUE, +N1,59345,sortie-0437da57-5100-4416-bb17-b219cbac7684,https://biolit.fr/sorties/sortie-0437da57-5100-4416-bb17-b219cbac7684/,Phil,,05/05/2019,10.0000000,10.0000000,47.799477000000,-4.179731000000,,Loctudy - Finistère,40718,observation-0437da57-5100-4416-bb17-b219cbac7684-5,https://biolit.fr/observations/observation-0437da57-5100-4416-bb17-b219cbac7684-5/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20190505_103618.jpg,,TRUE, +N1,59345,sortie-0437da57-5100-4416-bb17-b219cbac7684,https://biolit.fr/sorties/sortie-0437da57-5100-4416-bb17-b219cbac7684/,Phil,,05/05/2019,10.0000000,10.0000000,47.799477000000,-4.179731000000,,Loctudy - Finistère,40720,observation-0437da57-5100-4416-bb17-b219cbac7684-6,https://biolit.fr/observations/observation-0437da57-5100-4416-bb17-b219cbac7684-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_103643.jpg,,FALSE, +N1,59346,sortie-88bc4e10-857b-4ff4-9c33-84adba84906c,https://biolit.fr/sorties/sortie-88bc4e10-857b-4ff4-9c33-84adba84906c/,Céline,,5/16/2019 0:00,19.0000000,19.0000000,42.6074980,3.0393830,,Saint cyprien,40722,observation-88bc4e10-857b-4ff4-9c33-84adba84906c,https://biolit.fr/observations/observation-88bc4e10-857b-4ff4-9c33-84adba84906c/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_0306_0-scaled.jpg,,TRUE, +N1,59347,sortie-f0dcd8b4-82f1-466b-8060-dafaf2217a82,https://biolit.fr/sorties/sortie-f0dcd8b4-82f1-466b-8060-dafaf2217a82/,Laurent Debas,,5/16/2019 0:00,20.0000000,20.0000000,42.60731000,3.03337300,,Saint Cyprien,40724,observation-f0dcd8b4-82f1-466b-8060-dafaf2217a82,https://biolit.fr/observations/observation-f0dcd8b4-82f1-466b-8060-dafaf2217a82/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/image_121-scaled.jpg,,TRUE, +N1,59348,sortie-e8bb09df-09be-44d1-b069-dd315e395cc5,https://biolit.fr/sorties/sortie-e8bb09df-09be-44d1-b069-dd315e395cc5/,Phil,,05/05/2019,10.0000000,10.0:35,47.799529000000,-4.180654000000,,Loctudy - Finistère,40726,observation-e8bb09df-09be-44d1-b069-dd315e395cc5,https://biolit.fr/observations/observation-e8bb09df-09be-44d1-b069-dd315e395cc5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102959.jpg,,FALSE, +N1,59348,sortie-e8bb09df-09be-44d1-b069-dd315e395cc5,https://biolit.fr/sorties/sortie-e8bb09df-09be-44d1-b069-dd315e395cc5/,Phil,,05/05/2019,10.0000000,10.0:35,47.799529000000,-4.180654000000,,Loctudy - Finistère,40728,observation-e8bb09df-09be-44d1-b069-dd315e395cc5-2,https://biolit.fr/observations/observation-e8bb09df-09be-44d1-b069-dd315e395cc5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_103004.jpg,,FALSE, +N1,59348,sortie-e8bb09df-09be-44d1-b069-dd315e395cc5,https://biolit.fr/sorties/sortie-e8bb09df-09be-44d1-b069-dd315e395cc5/,Phil,,05/05/2019,10.0000000,10.0:35,47.799529000000,-4.180654000000,,Loctudy - Finistère,40730,observation-e8bb09df-09be-44d1-b069-dd315e395cc5-3,https://biolit.fr/observations/observation-e8bb09df-09be-44d1-b069-dd315e395cc5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_103021.jpg,,FALSE, +N1,59348,sortie-e8bb09df-09be-44d1-b069-dd315e395cc5,https://biolit.fr/sorties/sortie-e8bb09df-09be-44d1-b069-dd315e395cc5/,Phil,,05/05/2019,10.0000000,10.0:35,47.799529000000,-4.180654000000,,Loctudy - Finistère,40732,observation-e8bb09df-09be-44d1-b069-dd315e395cc5-4,https://biolit.fr/observations/observation-e8bb09df-09be-44d1-b069-dd315e395cc5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_103204.jpg,,FALSE, +N1,59348,sortie-e8bb09df-09be-44d1-b069-dd315e395cc5,https://biolit.fr/sorties/sortie-e8bb09df-09be-44d1-b069-dd315e395cc5/,Phil,,05/05/2019,10.0000000,10.0:35,47.799529000000,-4.180654000000,,Loctudy - Finistère,40734,observation-e8bb09df-09be-44d1-b069-dd315e395cc5-5,https://biolit.fr/observations/observation-e8bb09df-09be-44d1-b069-dd315e395cc5-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_103208.jpg,,FALSE, +N1,59348,sortie-e8bb09df-09be-44d1-b069-dd315e395cc5,https://biolit.fr/sorties/sortie-e8bb09df-09be-44d1-b069-dd315e395cc5/,Phil,,05/05/2019,10.0000000,10.0:35,47.799529000000,-4.180654000000,,Loctudy - Finistère,40736,observation-e8bb09df-09be-44d1-b069-dd315e395cc5-6,https://biolit.fr/observations/observation-e8bb09df-09be-44d1-b069-dd315e395cc5-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_103214.jpg,,FALSE, +N1,59349,sortie-c7758947-8efd-42c5-9c99-eaee78a59fd1,https://biolit.fr/sorties/sortie-c7758947-8efd-42c5-9c99-eaee78a59fd1/,Françoise,,2/16/2006 0:00,17.0000000,19.0000000,49.333468000000,-0.400906000000,,St Aubin sur Mer,40738,observation-c7758947-8efd-42c5-9c99-eaee78a59fd1,https://biolit.fr/observations/observation-c7758947-8efd-42c5-9c99-eaee78a59fd1/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/AMANDE.JPG,,TRUE, +N1,59349,sortie-c7758947-8efd-42c5-9c99-eaee78a59fd1,https://biolit.fr/sorties/sortie-c7758947-8efd-42c5-9c99-eaee78a59fd1/,Françoise,,2/16/2006 0:00,17.0000000,19.0000000,49.333468000000,-0.400906000000,,St Aubin sur Mer,40740,observation-c7758947-8efd-42c5-9c99-eaee78a59fd1-2,https://biolit.fr/observations/observation-c7758947-8efd-42c5-9c99-eaee78a59fd1-2/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crépidules_0.JPG,,TRUE, +N1,59349,sortie-c7758947-8efd-42c5-9c99-eaee78a59fd1,https://biolit.fr/sorties/sortie-c7758947-8efd-42c5-9c99-eaee78a59fd1/,Françoise,,2/16/2006 0:00,17.0000000,19.0000000,49.333468000000,-0.400906000000,,St Aubin sur Mer,40742,observation-c7758947-8efd-42c5-9c99-eaee78a59fd1-3,https://biolit.fr/observations/observation-c7758947-8efd-42c5-9c99-eaee78a59fd1-3/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/meduse-scaled.jpg,,TRUE, +N1,59349,sortie-c7758947-8efd-42c5-9c99-eaee78a59fd1,https://biolit.fr/sorties/sortie-c7758947-8efd-42c5-9c99-eaee78a59fd1/,Françoise,,2/16/2006 0:00,17.0000000,19.0000000,49.333468000000,-0.400906000000,,St Aubin sur Mer,40743,observation-c7758947-8efd-42c5-9c99-eaee78a59fd1-4,https://biolit.fr/observations/observation-c7758947-8efd-42c5-9c99-eaee78a59fd1-4/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/Oeufs de buccin.JPG,,TRUE, +N1,59349,sortie-c7758947-8efd-42c5-9c99-eaee78a59fd1,https://biolit.fr/sorties/sortie-c7758947-8efd-42c5-9c99-eaee78a59fd1/,Françoise,,2/16/2006 0:00,17.0000000,19.0000000,49.333468000000,-0.400906000000,,St Aubin sur Mer,40745,observation-c7758947-8efd-42c5-9c99-eaee78a59fd1-5,https://biolit.fr/observations/observation-c7758947-8efd-42c5-9c99-eaee78a59fd1-5/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/Oeuf de roussette.PNG,,TRUE, +N1,59349,sortie-c7758947-8efd-42c5-9c99-eaee78a59fd1,https://biolit.fr/sorties/sortie-c7758947-8efd-42c5-9c99-eaee78a59fd1/,Françoise,,2/16/2006 0:00,17.0000000,19.0000000,49.333468000000,-0.400906000000,,St Aubin sur Mer,40746,observation-c7758947-8efd-42c5-9c99-eaee78a59fd1-6,https://biolit.fr/observations/observation-c7758947-8efd-42c5-9c99-eaee78a59fd1-6/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Oeufs de seiche-rotated.jpg,,TRUE, +N1,59349,sortie-c7758947-8efd-42c5-9c99-eaee78a59fd1,https://biolit.fr/sorties/sortie-c7758947-8efd-42c5-9c99-eaee78a59fd1/,Françoise,,2/16/2006 0:00,17.0000000,19.0000000,49.333468000000,-0.400906000000,,St Aubin sur Mer,40747,observation-c7758947-8efd-42c5-9c99-eaee78a59fd1-7,https://biolit.fr/observations/observation-c7758947-8efd-42c5-9c99-eaee78a59fd1-7/,Dicentrarchus labrax,Bar commun loup,,https://biolit.fr/wp-content/uploads/2023/07/P1550461-scaled.jpg,,TRUE, +N1,59349,sortie-c7758947-8efd-42c5-9c99-eaee78a59fd1,https://biolit.fr/sorties/sortie-c7758947-8efd-42c5-9c99-eaee78a59fd1/,Françoise,,2/16/2006 0:00,17.0000000,19.0000000,49.333468000000,-0.400906000000,,St Aubin sur Mer,40749,observation-c7758947-8efd-42c5-9c99-eaee78a59fd1-8,https://biolit.fr/observations/observation-c7758947-8efd-42c5-9c99-eaee78a59fd1-8/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Serpule.jpg,,TRUE, +N1,59350,sortie-6d9b381a-58ba-4be4-b771-7fd680ca0153,https://biolit.fr/sorties/sortie-6d9b381a-58ba-4be4-b771-7fd680ca0153/,Françoise,,3/22/2019 0:00,17.0000000,19.0000000,49.335468000000,-0.397610000000,,St Aubin sur Mer,40750,observation-6d9b381a-58ba-4be4-b771-7fd680ca0153,https://biolit.fr/observations/observation-6d9b381a-58ba-4be4-b771-7fd680ca0153/,,,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina (2)_opt.jpg,,FALSE, +N1,59350,sortie-6d9b381a-58ba-4be4-b771-7fd680ca0153,https://biolit.fr/sorties/sortie-6d9b381a-58ba-4be4-b771-7fd680ca0153/,Françoise,,3/22/2019 0:00,17.0000000,19.0000000,49.335468000000,-0.397610000000,,St Aubin sur Mer,40752,observation-6d9b381a-58ba-4be4-b771-7fd680ca0153-2,https://biolit.fr/observations/observation-6d9b381a-58ba-4be4-b771-7fd680ca0153-2/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Asteria rubens (2)_opt.jpg,,TRUE, +N1,59350,sortie-6d9b381a-58ba-4be4-b771-7fd680ca0153,https://biolit.fr/sorties/sortie-6d9b381a-58ba-4be4-b771-7fd680ca0153/,Françoise,,3/22/2019 0:00,17.0000000,19.0000000,49.335468000000,-0.397610000000,,St Aubin sur Mer,40754,observation-6d9b381a-58ba-4be4-b771-7fd680ca0153-3,https://biolit.fr/observations/observation-6d9b381a-58ba-4be4-b771-7fd680ca0153-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina littorea_opt.jpg,,TRUE, +N1,59350,sortie-6d9b381a-58ba-4be4-b771-7fd680ca0153,https://biolit.fr/sorties/sortie-6d9b381a-58ba-4be4-b771-7fd680ca0153/,Françoise,,3/22/2019 0:00,17.0000000,19.0000000,49.335468000000,-0.397610000000,,St Aubin sur Mer,40756,observation-6d9b381a-58ba-4be4-b771-7fd680ca0153-4,https://biolit.fr/observations/observation-6d9b381a-58ba-4be4-b771-7fd680ca0153-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Oeufs de calmar_opt.jpg,,FALSE, +N1,59351,sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c,https://biolit.fr/sorties/sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c/,Phil,,05/05/2019,10.0:25,10.0000000,47.800076000000,-4.179489000000,,Loctudy - Finistère,40758,observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c,https://biolit.fr/observations/observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102630.jpg,,FALSE, +N1,59351,sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c,https://biolit.fr/sorties/sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c/,Phil,,05/05/2019,10.0:25,10.0000000,47.800076000000,-4.179489000000,,Loctudy - Finistère,40760,observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c-2,https://biolit.fr/observations/observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102652.jpg,,FALSE, +N1,59351,sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c,https://biolit.fr/sorties/sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c/,Phil,,05/05/2019,10.0:25,10.0000000,47.800076000000,-4.179489000000,,Loctudy - Finistère,40762,observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c-3,https://biolit.fr/observations/observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102705.jpg,,FALSE, +N1,59351,sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c,https://biolit.fr/sorties/sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c/,Phil,,05/05/2019,10.0:25,10.0000000,47.800076000000,-4.179489000000,,Loctudy - Finistère,40764,observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c-4,https://biolit.fr/observations/observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102717.jpg,,FALSE, +N1,59351,sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c,https://biolit.fr/sorties/sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c/,Phil,,05/05/2019,10.0:25,10.0000000,47.800076000000,-4.179489000000,,Loctudy - Finistère,40766,observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c-5,https://biolit.fr/observations/observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102732.jpg,,FALSE, +N1,59351,sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c,https://biolit.fr/sorties/sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c/,Phil,,05/05/2019,10.0:25,10.0000000,47.800076000000,-4.179489000000,,Loctudy - Finistère,40768,observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c-6,https://biolit.fr/observations/observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102746.jpg,,FALSE, +N1,59351,sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c,https://biolit.fr/sorties/sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c/,Phil,,05/05/2019,10.0:25,10.0000000,47.800076000000,-4.179489000000,,Loctudy - Finistère,40770,observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c-7,https://biolit.fr/observations/observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102906.jpg,,FALSE, +N1,59351,sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c,https://biolit.fr/sorties/sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c/,Phil,,05/05/2019,10.0:25,10.0000000,47.800076000000,-4.179489000000,,Loctudy - Finistère,40772,observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c-8,https://biolit.fr/observations/observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102914.jpg,,FALSE, +N1,59351,sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c,https://biolit.fr/sorties/sortie-e4a7cf39-b862-4d25-9a75-4765d4dad31c/,Phil,,05/05/2019,10.0:25,10.0000000,47.800076000000,-4.179489000000,,Loctudy - Finistère,40774,observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c-9,https://biolit.fr/observations/observation-e4a7cf39-b862-4d25-9a75-4765d4dad31c-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102911.jpg,,FALSE, +N1,59352,sortie-21150c52-a43a-4fc1-8bb9-cf2689df5193,https://biolit.fr/sorties/sortie-21150c52-a43a-4fc1-8bb9-cf2689df5193/,Phil,,7/16/2018 0:00,13.0000000,13.0:45,47.807125000000,-3.71301600000,,Moëlan-sur-Mer - Finistère,40776,observation-21150c52-a43a-4fc1-8bb9-cf2689df5193,https://biolit.fr/observations/observation-21150c52-a43a-4fc1-8bb9-cf2689df5193/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110839.JPG,,FALSE, +N1,59352,sortie-21150c52-a43a-4fc1-8bb9-cf2689df5193,https://biolit.fr/sorties/sortie-21150c52-a43a-4fc1-8bb9-cf2689df5193/,Phil,,7/16/2018 0:00,13.0000000,13.0:45,47.807125000000,-3.71301600000,,Moëlan-sur-Mer - Finistère,40778,observation-21150c52-a43a-4fc1-8bb9-cf2689df5193-2,https://biolit.fr/observations/observation-21150c52-a43a-4fc1-8bb9-cf2689df5193-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110842.JPG,,FALSE, +N1,59352,sortie-21150c52-a43a-4fc1-8bb9-cf2689df5193,https://biolit.fr/sorties/sortie-21150c52-a43a-4fc1-8bb9-cf2689df5193/,Phil,,7/16/2018 0:00,13.0000000,13.0:45,47.807125000000,-3.71301600000,,Moëlan-sur-Mer - Finistère,40780,observation-21150c52-a43a-4fc1-8bb9-cf2689df5193-3,https://biolit.fr/observations/observation-21150c52-a43a-4fc1-8bb9-cf2689df5193-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110836.JPG,,FALSE, +N1,59352,sortie-21150c52-a43a-4fc1-8bb9-cf2689df5193,https://biolit.fr/sorties/sortie-21150c52-a43a-4fc1-8bb9-cf2689df5193/,Phil,,7/16/2018 0:00,13.0000000,13.0:45,47.807125000000,-3.71301600000,,Moëlan-sur-Mer - Finistère,40782,observation-21150c52-a43a-4fc1-8bb9-cf2689df5193-4,https://biolit.fr/observations/observation-21150c52-a43a-4fc1-8bb9-cf2689df5193-4/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1110845.JPG,,TRUE, +N1,59352,sortie-21150c52-a43a-4fc1-8bb9-cf2689df5193,https://biolit.fr/sorties/sortie-21150c52-a43a-4fc1-8bb9-cf2689df5193/,Phil,,7/16/2018 0:00,13.0000000,13.0:45,47.807125000000,-3.71301600000,,Moëlan-sur-Mer - Finistère,40784,observation-21150c52-a43a-4fc1-8bb9-cf2689df5193-5,https://biolit.fr/observations/observation-21150c52-a43a-4fc1-8bb9-cf2689df5193-5/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/P1110848_0.JPG,,TRUE, +N1,59352,sortie-21150c52-a43a-4fc1-8bb9-cf2689df5193,https://biolit.fr/sorties/sortie-21150c52-a43a-4fc1-8bb9-cf2689df5193/,Phil,,7/16/2018 0:00,13.0000000,13.0:45,47.807125000000,-3.71301600000,,Moëlan-sur-Mer - Finistère,40786,observation-21150c52-a43a-4fc1-8bb9-cf2689df5193-6,https://biolit.fr/observations/observation-21150c52-a43a-4fc1-8bb9-cf2689df5193-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110850_1.JPG,,FALSE, +N1,59352,sortie-21150c52-a43a-4fc1-8bb9-cf2689df5193,https://biolit.fr/sorties/sortie-21150c52-a43a-4fc1-8bb9-cf2689df5193/,Phil,,7/16/2018 0:00,13.0000000,13.0:45,47.807125000000,-3.71301600000,,Moëlan-sur-Mer - Finistère,40788,observation-21150c52-a43a-4fc1-8bb9-cf2689df5193-7,https://biolit.fr/observations/observation-21150c52-a43a-4fc1-8bb9-cf2689df5193-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110854_1.JPG,,FALSE, +N1,59353,sortie-68b6edf2-5351-483d-8c2f-d7f6141d8fdf,https://biolit.fr/sorties/sortie-68b6edf2-5351-483d-8c2f-d7f6141d8fdf/,Phil,,12/26/2018 0:00,14.0000000,14.0:55,47.800041000000,-4.180933000000,,Loctudy - Finistère,40790,observation-68b6edf2-5351-483d-8c2f-d7f6141d8fdf,https://biolit.fr/observations/observation-68b6edf2-5351-483d-8c2f-d7f6141d8fdf/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_145243.jpg,,FALSE, +N1,59353,sortie-68b6edf2-5351-483d-8c2f-d7f6141d8fdf,https://biolit.fr/sorties/sortie-68b6edf2-5351-483d-8c2f-d7f6141d8fdf/,Phil,,12/26/2018 0:00,14.0000000,14.0:55,47.800041000000,-4.180933000000,,Loctudy - Finistère,40792,observation-68b6edf2-5351-483d-8c2f-d7f6141d8fdf-2,https://biolit.fr/observations/observation-68b6edf2-5351-483d-8c2f-d7f6141d8fdf-2/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20181226_145414.jpg,,TRUE, +N1,59353,sortie-68b6edf2-5351-483d-8c2f-d7f6141d8fdf,https://biolit.fr/sorties/sortie-68b6edf2-5351-483d-8c2f-d7f6141d8fdf/,Phil,,12/26/2018 0:00,14.0000000,14.0:55,47.800041000000,-4.180933000000,,Loctudy - Finistère,40794,observation-68b6edf2-5351-483d-8c2f-d7f6141d8fdf-3,https://biolit.fr/observations/observation-68b6edf2-5351-483d-8c2f-d7f6141d8fdf-3/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20181226_145452.jpg,,TRUE, +N1,59353,sortie-68b6edf2-5351-483d-8c2f-d7f6141d8fdf,https://biolit.fr/sorties/sortie-68b6edf2-5351-483d-8c2f-d7f6141d8fdf/,Phil,,12/26/2018 0:00,14.0000000,14.0:55,47.800041000000,-4.180933000000,,Loctudy - Finistère,40796,observation-68b6edf2-5351-483d-8c2f-d7f6141d8fdf-4,https://biolit.fr/observations/observation-68b6edf2-5351-483d-8c2f-d7f6141d8fdf-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_145505.jpg,,FALSE, +N1,59353,sortie-68b6edf2-5351-483d-8c2f-d7f6141d8fdf,https://biolit.fr/sorties/sortie-68b6edf2-5351-483d-8c2f-d7f6141d8fdf/,Phil,,12/26/2018 0:00,14.0000000,14.0:55,47.800041000000,-4.180933000000,,Loctudy - Finistère,40798,observation-68b6edf2-5351-483d-8c2f-d7f6141d8fdf-5,https://biolit.fr/observations/observation-68b6edf2-5351-483d-8c2f-d7f6141d8fdf-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_145510.jpg,,FALSE, +N1,59354,sortie-24435898-1bc2-4b28-a4c1-2420df6d8b93,https://biolit.fr/sorties/sortie-24435898-1bc2-4b28-a4c1-2420df6d8b93/,Françoise,,3/22/2019 0:00,16.0000000,18.0000000,49.335270000000,-0.397856000000,,St Aubin sur Mer,40800,observation-24435898-1bc2-4b28-a4c1-2420df6d8b93,https://biolit.fr/observations/observation-24435898-1bc2-4b28-a4c1-2420df6d8b93/,,,,https://biolit.fr/wp-content/uploads/2023/07/anemone-scaled.jpg,,FALSE, +N1,59354,sortie-24435898-1bc2-4b28-a4c1-2420df6d8b93,https://biolit.fr/sorties/sortie-24435898-1bc2-4b28-a4c1-2420df6d8b93/,Françoise,,3/22/2019 0:00,16.0000000,18.0000000,49.335270000000,-0.397856000000,,St Aubin sur Mer,40801,observation-24435898-1bc2-4b28-a4c1-2420df6d8b93-2,https://biolit.fr/observations/observation-24435898-1bc2-4b28-a4c1-2420df6d8b93-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus maenas-scaled.jpg,,TRUE, +N1,59354,sortie-24435898-1bc2-4b28-a4c1-2420df6d8b93,https://biolit.fr/sorties/sortie-24435898-1bc2-4b28-a4c1-2420df6d8b93/,Françoise,,3/22/2019 0:00,16.0000000,18.0000000,49.335270000000,-0.397856000000,,St Aubin sur Mer,40802,observation-24435898-1bc2-4b28-a4c1-2420df6d8b93-3,https://biolit.fr/observations/observation-24435898-1bc2-4b28-a4c1-2420df6d8b93-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Eponge mie de pain Dysidea fragilis-scaled.jpg,,FALSE, +N1,59354,sortie-24435898-1bc2-4b28-a4c1-2420df6d8b93,https://biolit.fr/sorties/sortie-24435898-1bc2-4b28-a4c1-2420df6d8b93/,Françoise,,3/22/2019 0:00,16.0000000,18.0000000,49.335270000000,-0.397856000000,,St Aubin sur Mer,40804,observation-24435898-1bc2-4b28-a4c1-2420df6d8b93-4,https://biolit.fr/observations/observation-24435898-1bc2-4b28-a4c1-2420df6d8b93-4/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/Tealia felina (3)-scaled.jpg,,TRUE, +N1,59354,sortie-24435898-1bc2-4b28-a4c1-2420df6d8b93,https://biolit.fr/sorties/sortie-24435898-1bc2-4b28-a4c1-2420df6d8b93/,Françoise,,3/22/2019 0:00,16.0000000,18.0000000,49.335270000000,-0.397856000000,,St Aubin sur Mer,40806,observation-24435898-1bc2-4b28-a4c1-2420df6d8b93-5,https://biolit.fr/observations/observation-24435898-1bc2-4b28-a4c1-2420df6d8b93-5/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/Urticina 4-scaled.jpg,,TRUE, +N1,59355,sortie-323f55a1-c372-4202-8e32-53f8c0718111,https://biolit.fr/sorties/sortie-323f55a1-c372-4202-8e32-53f8c0718111/,tridimeg,,05/07/2019,14.0000000,15.0000000,48.6313230,-2.0776250,,saint-enogat,40808,observation-323f55a1-c372-4202-8e32-53f8c0718111,https://biolit.fr/observations/observation-323f55a1-c372-4202-8e32-53f8c0718111/,Ocenebra erinaceus,Ponte de Bigorneau perceur,,https://biolit.fr/wp-content/uploads/2023/07/20190507_144853-scaled.jpg,,TRUE, +N1,59356,sortie-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37,https://biolit.fr/sorties/sortie-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37/,Phil,,05/05/2019,10.0:25,10.0000000,47.800102000000,-4.179613000000,,Loctudy - Finistère,40810,observation-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37,https://biolit.fr/observations/observation-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102304.jpg,,TRUE, +N1,59356,sortie-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37,https://biolit.fr/sorties/sortie-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37/,Phil,,05/05/2019,10.0:25,10.0000000,47.800102000000,-4.179613000000,,Loctudy - Finistère,40812,observation-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37-2,https://biolit.fr/observations/observation-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37-2/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102311.jpg,,TRUE, +N1,59356,sortie-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37,https://biolit.fr/sorties/sortie-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37/,Phil,,05/05/2019,10.0:25,10.0000000,47.800102000000,-4.179613000000,,Loctudy - Finistère,40814,observation-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37-3,https://biolit.fr/observations/observation-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37-3/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102326.jpg,,TRUE, +N1,59356,sortie-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37,https://biolit.fr/sorties/sortie-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37/,Phil,,05/05/2019,10.0:25,10.0000000,47.800102000000,-4.179613000000,,Loctudy - Finistère,40816,observation-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37-4,https://biolit.fr/observations/observation-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37-4/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102331.jpg,,TRUE, +N1,59356,sortie-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37,https://biolit.fr/sorties/sortie-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37/,Phil,,05/05/2019,10.0:25,10.0000000,47.800102000000,-4.179613000000,,Loctudy - Finistère,40818,observation-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37-5,https://biolit.fr/observations/observation-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37-5/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102552.jpg,,TRUE, +N1,59356,sortie-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37,https://biolit.fr/sorties/sortie-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37/,Phil,,05/05/2019,10.0:25,10.0000000,47.800102000000,-4.179613000000,,Loctudy - Finistère,40820,observation-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37-6,https://biolit.fr/observations/observation-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102608.jpg,,FALSE, +N1,59356,sortie-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37,https://biolit.fr/sorties/sortie-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37/,Phil,,05/05/2019,10.0:25,10.0000000,47.800102000000,-4.179613000000,,Loctudy - Finistère,40822,observation-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37-7,https://biolit.fr/observations/observation-7e4fdf6c-e369-4ee4-8ee5-a2f3f854bb37-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190505_102612.jpg,,FALSE, +N1,59357,sortie-b0a1c400-e5d1-4e73-821f-d7987ff40d30,https://biolit.fr/sorties/sortie-b0a1c400-e5d1-4e73-821f-d7987ff40d30/,Phil,,05/03/2019,17.0:45,17.0000000,47.791634000000,-4.286221000000,,Guilvinec - Finistère,40824,observation-b0a1c400-e5d1-4e73-821f-d7987ff40d30,https://biolit.fr/observations/observation-b0a1c400-e5d1-4e73-821f-d7987ff40d30/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190503_174729.jpg,,FALSE, +N1,59357,sortie-b0a1c400-e5d1-4e73-821f-d7987ff40d30,https://biolit.fr/sorties/sortie-b0a1c400-e5d1-4e73-821f-d7987ff40d30/,Phil,,05/03/2019,17.0:45,17.0000000,47.791634000000,-4.286221000000,,Guilvinec - Finistère,40826,observation-b0a1c400-e5d1-4e73-821f-d7987ff40d30-2,https://biolit.fr/observations/observation-b0a1c400-e5d1-4e73-821f-d7987ff40d30-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190503_174724.jpg,,FALSE, +N1,59357,sortie-b0a1c400-e5d1-4e73-821f-d7987ff40d30,https://biolit.fr/sorties/sortie-b0a1c400-e5d1-4e73-821f-d7987ff40d30/,Phil,,05/03/2019,17.0:45,17.0000000,47.791634000000,-4.286221000000,,Guilvinec - Finistère,40828,observation-b0a1c400-e5d1-4e73-821f-d7987ff40d30-3,https://biolit.fr/observations/observation-b0a1c400-e5d1-4e73-821f-d7987ff40d30-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190503_174621.jpg,,FALSE, +N1,59358,sortie-4ebfd23a-83b3-4b60-b528-87d0f0c35815,https://biolit.fr/sorties/sortie-4ebfd23a-83b3-4b60-b528-87d0f0c35815/,Phil,,4/30/2019 0:00,11.0:15,11.0:25,48.216852000000,-4.375532000000,,Telgruc-sur-Mer - Finistère,40830,observation-4ebfd23a-83b3-4b60-b528-87d0f0c35815,https://biolit.fr/observations/observation-4ebfd23a-83b3-4b60-b528-87d0f0c35815/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190430_111947.jpg,,FALSE, +N1,59358,sortie-4ebfd23a-83b3-4b60-b528-87d0f0c35815,https://biolit.fr/sorties/sortie-4ebfd23a-83b3-4b60-b528-87d0f0c35815/,Phil,,4/30/2019 0:00,11.0:15,11.0:25,48.216852000000,-4.375532000000,,Telgruc-sur-Mer - Finistère,40832,observation-4ebfd23a-83b3-4b60-b528-87d0f0c35815-2,https://biolit.fr/observations/observation-4ebfd23a-83b3-4b60-b528-87d0f0c35815-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190430_112111.jpg,,FALSE, +N1,59358,sortie-4ebfd23a-83b3-4b60-b528-87d0f0c35815,https://biolit.fr/sorties/sortie-4ebfd23a-83b3-4b60-b528-87d0f0c35815/,Phil,,4/30/2019 0:00,11.0:15,11.0:25,48.216852000000,-4.375532000000,,Telgruc-sur-Mer - Finistère,40834,observation-4ebfd23a-83b3-4b60-b528-87d0f0c35815-3,https://biolit.fr/observations/observation-4ebfd23a-83b3-4b60-b528-87d0f0c35815-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190430_112116.jpg,,FALSE, +N1,59358,sortie-4ebfd23a-83b3-4b60-b528-87d0f0c35815,https://biolit.fr/sorties/sortie-4ebfd23a-83b3-4b60-b528-87d0f0c35815/,Phil,,4/30/2019 0:00,11.0:15,11.0:25,48.216852000000,-4.375532000000,,Telgruc-sur-Mer - Finistère,40836,observation-4ebfd23a-83b3-4b60-b528-87d0f0c35815-4,https://biolit.fr/observations/observation-4ebfd23a-83b3-4b60-b528-87d0f0c35815-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190430_112126.jpg,,FALSE, +N1,59358,sortie-4ebfd23a-83b3-4b60-b528-87d0f0c35815,https://biolit.fr/sorties/sortie-4ebfd23a-83b3-4b60-b528-87d0f0c35815/,Phil,,4/30/2019 0:00,11.0:15,11.0:25,48.216852000000,-4.375532000000,,Telgruc-sur-Mer - Finistère,40838,observation-4ebfd23a-83b3-4b60-b528-87d0f0c35815-5,https://biolit.fr/observations/observation-4ebfd23a-83b3-4b60-b528-87d0f0c35815-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190430_112157.jpg,,FALSE, +N1,59358,sortie-4ebfd23a-83b3-4b60-b528-87d0f0c35815,https://biolit.fr/sorties/sortie-4ebfd23a-83b3-4b60-b528-87d0f0c35815/,Phil,,4/30/2019 0:00,11.0:15,11.0:25,48.216852000000,-4.375532000000,,Telgruc-sur-Mer - Finistère,40840,observation-4ebfd23a-83b3-4b60-b528-87d0f0c35815-6,https://biolit.fr/observations/observation-4ebfd23a-83b3-4b60-b528-87d0f0c35815-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190430_112228.jpg,,FALSE, +N1,59359,sortie-68320d9e-78a1-4946-8c39-451c931612ef,https://biolit.fr/sorties/sortie-68320d9e-78a1-4946-8c39-451c931612ef/,Phil,,04/11/2019,13.0000000,13.0:15,47.794940000000,-4.213162000000,,Lesconil - Finistère,40842,observation-68320d9e-78a1-4946-8c39-451c931612ef,https://biolit.fr/observations/observation-68320d9e-78a1-4946-8c39-451c931612ef/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190411_131159.jpg,,FALSE, +N1,59359,sortie-68320d9e-78a1-4946-8c39-451c931612ef,https://biolit.fr/sorties/sortie-68320d9e-78a1-4946-8c39-451c931612ef/,Phil,,04/11/2019,13.0000000,13.0:15,47.794940000000,-4.213162000000,,Lesconil - Finistère,40844,observation-68320d9e-78a1-4946-8c39-451c931612ef-2,https://biolit.fr/observations/observation-68320d9e-78a1-4946-8c39-451c931612ef-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190411_130955.jpg,,FALSE, +N1,59359,sortie-68320d9e-78a1-4946-8c39-451c931612ef,https://biolit.fr/sorties/sortie-68320d9e-78a1-4946-8c39-451c931612ef/,Phil,,04/11/2019,13.0000000,13.0:15,47.794940000000,-4.213162000000,,Lesconil - Finistère,40846,observation-68320d9e-78a1-4946-8c39-451c931612ef-3,https://biolit.fr/observations/observation-68320d9e-78a1-4946-8c39-451c931612ef-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190411_131038.jpg,,FALSE, +N1,59359,sortie-68320d9e-78a1-4946-8c39-451c931612ef,https://biolit.fr/sorties/sortie-68320d9e-78a1-4946-8c39-451c931612ef/,Phil,,04/11/2019,13.0000000,13.0:15,47.794940000000,-4.213162000000,,Lesconil - Finistère,40848,observation-68320d9e-78a1-4946-8c39-451c931612ef-4,https://biolit.fr/observations/observation-68320d9e-78a1-4946-8c39-451c931612ef-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190411_131232.jpg,,FALSE, +N1,59359,sortie-68320d9e-78a1-4946-8c39-451c931612ef,https://biolit.fr/sorties/sortie-68320d9e-78a1-4946-8c39-451c931612ef/,Phil,,04/11/2019,13.0000000,13.0:15,47.794940000000,-4.213162000000,,Lesconil - Finistère,40850,observation-68320d9e-78a1-4946-8c39-451c931612ef-5,https://biolit.fr/observations/observation-68320d9e-78a1-4946-8c39-451c931612ef-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190411_131429.jpg,,FALSE, +N1,59359,sortie-68320d9e-78a1-4946-8c39-451c931612ef,https://biolit.fr/sorties/sortie-68320d9e-78a1-4946-8c39-451c931612ef/,Phil,,04/11/2019,13.0000000,13.0:15,47.794940000000,-4.213162000000,,Lesconil - Finistère,40852,observation-68320d9e-78a1-4946-8c39-451c931612ef-6,https://biolit.fr/observations/observation-68320d9e-78a1-4946-8c39-451c931612ef-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190411_131515.jpg,,FALSE, +N1,59360,sortie-e3a7afe4-c695-4524-9da8-fc874281a03d,https://biolit.fr/sorties/sortie-e3a7afe4-c695-4524-9da8-fc874281a03d/,Lola CANIZARES,,4/26/2019 0:00,16.0000000,16.0:35,43.25836,5.3969800,,Plage de la maronaise,40854,observation-e3a7afe4-c695-4524-9da8-fc874281a03d,https://biolit.fr/observations/observation-e3a7afe4-c695-4524-9da8-fc874281a03d/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190427_162754-scaled.jpg,,FALSE, +N1,59361,sortie-2a0eab19-e5dc-4827-969d-13a27fc13f64,https://biolit.fr/sorties/sortie-2a0eab19-e5dc-4827-969d-13a27fc13f64/,Environat,,4/24/2019 0:00,14.0000000,16.0000000,45.604170000000,-1.012884000000,Environat,ile aux mouettes,40856,observation-2a0eab19-e5dc-4827-969d-13a27fc13f64,https://biolit.fr/observations/observation-2a0eab19-e5dc-4827-969d-13a27fc13f64/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0006_1.JPG,,FALSE, +N1,59361,sortie-2a0eab19-e5dc-4827-969d-13a27fc13f64,https://biolit.fr/sorties/sortie-2a0eab19-e5dc-4827-969d-13a27fc13f64/,Environat,,4/24/2019 0:00,14.0000000,16.0000000,45.604170000000,-1.012884000000,Environat,ile aux mouettes,40858,observation-2a0eab19-e5dc-4827-969d-13a27fc13f64-2,https://biolit.fr/observations/observation-2a0eab19-e5dc-4827-969d-13a27fc13f64-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0008-scaled.jpg,,FALSE, +N1,59361,sortie-2a0eab19-e5dc-4827-969d-13a27fc13f64,https://biolit.fr/sorties/sortie-2a0eab19-e5dc-4827-969d-13a27fc13f64/,Environat,,4/24/2019 0:00,14.0000000,16.0000000,45.604170000000,-1.012884000000,Environat,ile aux mouettes,40859,observation-2a0eab19-e5dc-4827-969d-13a27fc13f64-3,https://biolit.fr/observations/observation-2a0eab19-e5dc-4827-969d-13a27fc13f64-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0012_0.JPG,,FALSE, +N1,59361,sortie-2a0eab19-e5dc-4827-969d-13a27fc13f64,https://biolit.fr/sorties/sortie-2a0eab19-e5dc-4827-969d-13a27fc13f64/,Environat,,4/24/2019 0:00,14.0000000,16.0000000,45.604170000000,-1.012884000000,Environat,ile aux mouettes,40861,observation-2a0eab19-e5dc-4827-969d-13a27fc13f64-4,https://biolit.fr/observations/observation-2a0eab19-e5dc-4827-969d-13a27fc13f64-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0010_0.JPG,,FALSE, +N1,59362,sortie-09068967-4b77-48e5-b360-e64f023c3ae6,https://biolit.fr/sorties/sortie-09068967-4b77-48e5-b360-e64f023c3ae6/,Lola CANIZARES,,4/27/2019 0:00,16.0000000,16.0:35,43.215219,5.342027,,La marronaise,40863,observation-09068967-4b77-48e5-b360-e64f023c3ae6,https://biolit.fr/observations/observation-09068967-4b77-48e5-b360-e64f023c3ae6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190427_162732-scaled.jpg,,FALSE, +N1,59363,sortie-cffbcf86-58e0-419f-972b-13006f932706,https://biolit.fr/sorties/sortie-cffbcf86-58e0-419f-972b-13006f932706/,Phil,,12/26/2018 0:00,14.0:35,14.0000000,47.800463000000,-4.180999000000,,Loctudy - Finistère,40865,observation-cffbcf86-58e0-419f-972b-13006f932706,https://biolit.fr/observations/observation-cffbcf86-58e0-419f-972b-13006f932706/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20181226_144928.jpg,,TRUE, +N1,59363,sortie-cffbcf86-58e0-419f-972b-13006f932706,https://biolit.fr/sorties/sortie-cffbcf86-58e0-419f-972b-13006f932706/,Phil,,12/26/2018 0:00,14.0:35,14.0000000,47.800463000000,-4.180999000000,,Loctudy - Finistère,40867,observation-cffbcf86-58e0-419f-972b-13006f932706-2,https://biolit.fr/observations/observation-cffbcf86-58e0-419f-972b-13006f932706-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_143538.jpg,,FALSE, +N1,59363,sortie-cffbcf86-58e0-419f-972b-13006f932706,https://biolit.fr/sorties/sortie-cffbcf86-58e0-419f-972b-13006f932706/,Phil,,12/26/2018 0:00,14.0:35,14.0000000,47.800463000000,-4.180999000000,,Loctudy - Finistère,40869,observation-cffbcf86-58e0-419f-972b-13006f932706-3,https://biolit.fr/observations/observation-cffbcf86-58e0-419f-972b-13006f932706-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_145155.jpg,,FALSE, +N1,59363,sortie-cffbcf86-58e0-419f-972b-13006f932706,https://biolit.fr/sorties/sortie-cffbcf86-58e0-419f-972b-13006f932706/,Phil,,12/26/2018 0:00,14.0:35,14.0000000,47.800463000000,-4.180999000000,,Loctudy - Finistère,40871,observation-cffbcf86-58e0-419f-972b-13006f932706-4,https://biolit.fr/observations/observation-cffbcf86-58e0-419f-972b-13006f932706-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_145135-scaled.jpg,,FALSE, +N1,59363,sortie-cffbcf86-58e0-419f-972b-13006f932706,https://biolit.fr/sorties/sortie-cffbcf86-58e0-419f-972b-13006f932706/,Phil,,12/26/2018 0:00,14.0:35,14.0000000,47.800463000000,-4.180999000000,,Loctudy - Finistère,40873,observation-cffbcf86-58e0-419f-972b-13006f932706-5,https://biolit.fr/observations/observation-cffbcf86-58e0-419f-972b-13006f932706-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_143434-scaled.jpg,,FALSE, +N1,59364,sortie-1adf269e-4e89-4008-a114-87da3f67d4a5,https://biolit.fr/sorties/sortie-1adf269e-4e89-4008-a114-87da3f67d4a5/,ThomPoutch,,4/26/2019 0:00,12.0000000,12.0000000,43.2148800,5.343133,,Anse de la Maraunaise,40875,observation-1adf269e-4e89-4008-a114-87da3f67d4a5,https://biolit.fr/observations/observation-1adf269e-4e89-4008-a114-87da3f67d4a5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190426_115927-scaled.jpg,,FALSE, +N1,59365,sortie-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74,https://biolit.fr/sorties/sortie-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74/,Phil,,03/08/2019,13.000005,13.0000000,47.791691000000,-4.287337000000,,Guilvinec - Finistère,40877,observation-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74,https://biolit.fr/observations/observation-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190308_130511.jpg,,FALSE, +N1,59365,sortie-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74,https://biolit.fr/sorties/sortie-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74/,Phil,,03/08/2019,13.000005,13.0000000,47.791691000000,-4.287337000000,,Guilvinec - Finistère,40879,observation-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74-2,https://biolit.fr/observations/observation-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190308_130521.jpg,,FALSE, +N1,59365,sortie-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74,https://biolit.fr/sorties/sortie-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74/,Phil,,03/08/2019,13.000005,13.0000000,47.791691000000,-4.287337000000,,Guilvinec - Finistère,40881,observation-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74-3,https://biolit.fr/observations/observation-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190308_130523.jpg,,FALSE, +N1,59365,sortie-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74,https://biolit.fr/sorties/sortie-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74/,Phil,,03/08/2019,13.000005,13.0000000,47.791691000000,-4.287337000000,,Guilvinec - Finistère,40883,observation-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74-4,https://biolit.fr/observations/observation-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190308_130540.jpg,,FALSE, +N1,59365,sortie-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74,https://biolit.fr/sorties/sortie-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74/,Phil,,03/08/2019,13.000005,13.0000000,47.791691000000,-4.287337000000,,Guilvinec - Finistère,40885,observation-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74-5,https://biolit.fr/observations/observation-ec0a1c73-0c99-42b1-a75d-92c5e5bdad74-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190308_130544.jpg,,FALSE, +N1,59366,sortie-4b5324d6-93f3-4f0a-b68d-068077ceda84,https://biolit.fr/sorties/sortie-4b5324d6-93f3-4f0a-b68d-068077ceda84/,Phil,,04/11/2019,13.000005,13.0000000,47.794935000000,-4.213100000000,,Lesconil - Finistère,40887,observation-4b5324d6-93f3-4f0a-b68d-068077ceda84,https://biolit.fr/observations/observation-4b5324d6-93f3-4f0a-b68d-068077ceda84/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190411_130458.jpg,,TRUE, +N1,59366,sortie-4b5324d6-93f3-4f0a-b68d-068077ceda84,https://biolit.fr/sorties/sortie-4b5324d6-93f3-4f0a-b68d-068077ceda84/,Phil,,04/11/2019,13.000005,13.0000000,47.794935000000,-4.213100000000,,Lesconil - Finistère,40889,observation-4b5324d6-93f3-4f0a-b68d-068077ceda84-2,https://biolit.fr/observations/observation-4b5324d6-93f3-4f0a-b68d-068077ceda84-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190411_130505.jpg,,TRUE, +N1,59366,sortie-4b5324d6-93f3-4f0a-b68d-068077ceda84,https://biolit.fr/sorties/sortie-4b5324d6-93f3-4f0a-b68d-068077ceda84/,Phil,,04/11/2019,13.000005,13.0000000,47.794935000000,-4.213100000000,,Lesconil - Finistère,40891,observation-4b5324d6-93f3-4f0a-b68d-068077ceda84-3,https://biolit.fr/observations/observation-4b5324d6-93f3-4f0a-b68d-068077ceda84-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190411_130713.jpg,,FALSE, +N1,59366,sortie-4b5324d6-93f3-4f0a-b68d-068077ceda84,https://biolit.fr/sorties/sortie-4b5324d6-93f3-4f0a-b68d-068077ceda84/,Phil,,04/11/2019,13.000005,13.0000000,47.794935000000,-4.213100000000,,Lesconil - Finistère,40893,observation-4b5324d6-93f3-4f0a-b68d-068077ceda84-4,https://biolit.fr/observations/observation-4b5324d6-93f3-4f0a-b68d-068077ceda84-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190411_130854.jpg,,FALSE, +N1,59366,sortie-4b5324d6-93f3-4f0a-b68d-068077ceda84,https://biolit.fr/sorties/sortie-4b5324d6-93f3-4f0a-b68d-068077ceda84/,Phil,,04/11/2019,13.000005,13.0000000,47.794935000000,-4.213100000000,,Lesconil - Finistère,40895,observation-4b5324d6-93f3-4f0a-b68d-068077ceda84-5,https://biolit.fr/observations/observation-4b5324d6-93f3-4f0a-b68d-068077ceda84-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190411_130927.jpg,,FALSE, +N1,59367,sortie-2bbfd34f-2fb2-4c85-a372-52fd6d656b0a,https://biolit.fr/sorties/sortie-2bbfd34f-2fb2-4c85-a372-52fd6d656b0a/,LPO Occitanie (délégation Hérault),,04/05/2019,14.0000000,15.0000000,43.391804000000,3.672759000000,LPO Occitanie (Dt Hérault),"Plage du Lazaret, Sète",40897,observation-2bbfd34f-2fb2-4c85-a372-52fd6d656b0a,https://biolit.fr/observations/observation-2bbfd34f-2fb2-4c85-a372-52fd6d656b0a/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20190405_150633.jpg,,TRUE, +N1,59368,sortie-ac73d621-642b-4286-b090-0f448a34e954,https://biolit.fr/sorties/sortie-ac73d621-642b-4286-b090-0f448a34e954/,Phil,,12/26/2018 0:00,14.0000000,14.0:35,47.800257000000,-4.180611000000,,Loctudy - Finistère,40899,observation-ac73d621-642b-4286-b090-0f448a34e954,https://biolit.fr/observations/observation-ac73d621-642b-4286-b090-0f448a34e954/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_142246.jpg,,FALSE, +N1,59368,sortie-ac73d621-642b-4286-b090-0f448a34e954,https://biolit.fr/sorties/sortie-ac73d621-642b-4286-b090-0f448a34e954/,Phil,,12/26/2018 0:00,14.0000000,14.0:35,47.800257000000,-4.180611000000,,Loctudy - Finistère,40901,observation-ac73d621-642b-4286-b090-0f448a34e954-2,https://biolit.fr/observations/observation-ac73d621-642b-4286-b090-0f448a34e954-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_142313.jpg,,FALSE, +N1,59368,sortie-ac73d621-642b-4286-b090-0f448a34e954,https://biolit.fr/sorties/sortie-ac73d621-642b-4286-b090-0f448a34e954/,Phil,,12/26/2018 0:00,14.0000000,14.0:35,47.800257000000,-4.180611000000,,Loctudy - Finistère,40903,observation-ac73d621-642b-4286-b090-0f448a34e954-3,https://biolit.fr/observations/observation-ac73d621-642b-4286-b090-0f448a34e954-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_142541.jpg,,FALSE, +N1,59368,sortie-ac73d621-642b-4286-b090-0f448a34e954,https://biolit.fr/sorties/sortie-ac73d621-642b-4286-b090-0f448a34e954/,Phil,,12/26/2018 0:00,14.0000000,14.0:35,47.800257000000,-4.180611000000,,Loctudy - Finistère,40905,observation-ac73d621-642b-4286-b090-0f448a34e954-4,https://biolit.fr/observations/observation-ac73d621-642b-4286-b090-0f448a34e954-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_143132.jpg,,FALSE, +N1,59368,sortie-ac73d621-642b-4286-b090-0f448a34e954,https://biolit.fr/sorties/sortie-ac73d621-642b-4286-b090-0f448a34e954/,Phil,,12/26/2018 0:00,14.0000000,14.0:35,47.800257000000,-4.180611000000,,Loctudy - Finistère,40907,observation-ac73d621-642b-4286-b090-0f448a34e954-5,https://biolit.fr/observations/observation-ac73d621-642b-4286-b090-0f448a34e954-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_143416.jpg,,FALSE, +N1,59368,sortie-ac73d621-642b-4286-b090-0f448a34e954,https://biolit.fr/sorties/sortie-ac73d621-642b-4286-b090-0f448a34e954/,Phil,,12/26/2018 0:00,14.0000000,14.0:35,47.800257000000,-4.180611000000,,Loctudy - Finistère,40909,observation-ac73d621-642b-4286-b090-0f448a34e954-6,https://biolit.fr/observations/observation-ac73d621-642b-4286-b090-0f448a34e954-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_143426.jpg,,FALSE, +N1,59369,sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2,https://biolit.fr/sorties/sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2/,chloe_cpie,,3/30/2019 0:00,14.0:35,15.0:55,51.071533000000,2.485586000000,,Plage de Zuydcoote,40911,observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2,https://biolit.fr/observations/observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4240-scaled.jpg,,FALSE, +N1,59369,sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2,https://biolit.fr/sorties/sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2/,chloe_cpie,,3/30/2019 0:00,14.0:35,15.0:55,51.071533000000,2.485586000000,,Plage de Zuydcoote,40913,observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-2,https://biolit.fr/observations/observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4236-scaled.jpg,,FALSE, +N1,59369,sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2,https://biolit.fr/sorties/sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2/,chloe_cpie,,3/30/2019 0:00,14.0:35,15.0:55,51.071533000000,2.485586000000,,Plage de Zuydcoote,40915,observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-3,https://biolit.fr/observations/observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4241-scaled.jpg,,FALSE, +N1,59369,sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2,https://biolit.fr/sorties/sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2/,chloe_cpie,,3/30/2019 0:00,14.0:35,15.0:55,51.071533000000,2.485586000000,,Plage de Zuydcoote,40917,observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-4,https://biolit.fr/observations/observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4250_0-scaled.jpg,,FALSE, +N1,59369,sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2,https://biolit.fr/sorties/sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2/,chloe_cpie,,3/30/2019 0:00,14.0:35,15.0:55,51.071533000000,2.485586000000,,Plage de Zuydcoote,40919,observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-5,https://biolit.fr/observations/observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4253-scaled.jpg,,FALSE, +N1,59369,sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2,https://biolit.fr/sorties/sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2/,chloe_cpie,,3/30/2019 0:00,14.0:35,15.0:55,51.071533000000,2.485586000000,,Plage de Zuydcoote,40921,observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-6,https://biolit.fr/observations/observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4261-scaled.jpg,,FALSE, +N1,59369,sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2,https://biolit.fr/sorties/sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2/,chloe_cpie,,3/30/2019 0:00,14.0:35,15.0:55,51.071533000000,2.485586000000,,Plage de Zuydcoote,40923,observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-7,https://biolit.fr/observations/observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4257_0-scaled.jpg,,FALSE, +N1,59369,sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2,https://biolit.fr/sorties/sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2/,chloe_cpie,,3/30/2019 0:00,14.0:35,15.0:55,51.071533000000,2.485586000000,,Plage de Zuydcoote,40925,observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-8,https://biolit.fr/observations/observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4262-scaled.jpg,,FALSE, +N1,59369,sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2,https://biolit.fr/sorties/sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2/,chloe_cpie,,3/30/2019 0:00,14.0:35,15.0:55,51.071533000000,2.485586000000,,Plage de Zuydcoote,40927,observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-9,https://biolit.fr/observations/observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4270_0-scaled.jpg,,FALSE, +N1,59369,sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2,https://biolit.fr/sorties/sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2/,chloe_cpie,,3/30/2019 0:00,14.0:35,15.0:55,51.071533000000,2.485586000000,,Plage de Zuydcoote,40929,observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-10,https://biolit.fr/observations/observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4271-scaled.jpg,,FALSE, +N1,59369,sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2,https://biolit.fr/sorties/sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2/,chloe_cpie,,3/30/2019 0:00,14.0:35,15.0:55,51.071533000000,2.485586000000,,Plage de Zuydcoote,40931,observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-11,https://biolit.fr/observations/observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4274-scaled.jpg,,FALSE, +N1,59369,sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2,https://biolit.fr/sorties/sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2/,chloe_cpie,,3/30/2019 0:00,14.0:35,15.0:55,51.071533000000,2.485586000000,,Plage de Zuydcoote,40933,observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-12,https://biolit.fr/observations/observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4272_comp.JPG,,FALSE, +N1,59369,sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2,https://biolit.fr/sorties/sortie-a070ce9e-c792-40d6-bb3a-e62a3a13bed2/,chloe_cpie,,3/30/2019 0:00,14.0:35,15.0:55,51.071533000000,2.485586000000,,Plage de Zuydcoote,40935,observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-13,https://biolit.fr/observations/observation-a070ce9e-c792-40d6-bb3a-e62a3a13bed2-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4273-scaled.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40937,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_124912 petit.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40939,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-2,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_124740 petit.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40941,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-3,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_124818 petit.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40943,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-4,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_124949 petit.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40945,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-5,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_125135 petit.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40947,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-6,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_125031 petit.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40949,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-7,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_125219 petit.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40951,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-8,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_125249 petit.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40953,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-9,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_125508 petit.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40955,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-10,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_125632 petit.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40957,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-11,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_130120 petit.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40959,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-12,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_130326 petit.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40961,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-13,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_151306 petit.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40963,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-14,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_151844 petit.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40965,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-15,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_151938 petit.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40967,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-16,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_152047 petit.jpg,,FALSE, +N1,59370,sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd,https://biolit.fr/sorties/sortie-d7cf4605-75c2-4c9d-b551-7055331fdccd/,severoques,,04/06/2019,12.0000000,13.0000000,43.373170000000,-1.763220000000,,Plage d'Hendaye,40969,observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-17,https://biolit.fr/observations/observation-d7cf4605-75c2-4c9d-b551-7055331fdccd-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190406_152145 petit.jpg,,FALSE, +N1,59371,sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373,https://biolit.fr/sorties/sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373/,severoques,,3/21/2019 0:00,10.0000000,12.0000000,43.381544000000,-1.734539000000,,Haiçabia,40971,observation-91c2fe7f-14f4-478d-9fd2-7d645038b373,https://biolit.fr/observations/observation-91c2fe7f-14f4-478d-9fd2-7d645038b373/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190321_111950-scaled.jpg,,FALSE, +N1,59371,sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373,https://biolit.fr/sorties/sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373/,severoques,,3/21/2019 0:00,10.0000000,12.0000000,43.381544000000,-1.734539000000,,Haiçabia,40973,observation-91c2fe7f-14f4-478d-9fd2-7d645038b373-2,https://biolit.fr/observations/observation-91c2fe7f-14f4-478d-9fd2-7d645038b373-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/20190321_140341.jpg,,TRUE, +N1,59371,sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373,https://biolit.fr/sorties/sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373/,severoques,,3/21/2019 0:00,10.0000000,12.0000000,43.381544000000,-1.734539000000,,Haiçabia,40975,observation-91c2fe7f-14f4-478d-9fd2-7d645038b373-3,https://biolit.fr/observations/observation-91c2fe7f-14f4-478d-9fd2-7d645038b373-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190321_114320-scaled.jpg,,FALSE, +N1,59371,sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373,https://biolit.fr/sorties/sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373/,severoques,,3/21/2019 0:00,10.0000000,12.0000000,43.381544000000,-1.734539000000,,Haiçabia,40977,observation-91c2fe7f-14f4-478d-9fd2-7d645038b373-4,https://biolit.fr/observations/observation-91c2fe7f-14f4-478d-9fd2-7d645038b373-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190321_112812-scaled.jpg,,FALSE, +N1,59371,sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373,https://biolit.fr/sorties/sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373/,severoques,,3/21/2019 0:00,10.0000000,12.0000000,43.381544000000,-1.734539000000,,Haiçabia,40979,observation-91c2fe7f-14f4-478d-9fd2-7d645038b373-5,https://biolit.fr/observations/observation-91c2fe7f-14f4-478d-9fd2-7d645038b373-5/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20190321_140839.jpg,,TRUE, +N1,59371,sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373,https://biolit.fr/sorties/sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373/,severoques,,3/21/2019 0:00,10.0000000,12.0000000,43.381544000000,-1.734539000000,,Haiçabia,40981,observation-91c2fe7f-14f4-478d-9fd2-7d645038b373-6,https://biolit.fr/observations/observation-91c2fe7f-14f4-478d-9fd2-7d645038b373-6/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/20190321_140446.jpg,,TRUE, +N1,59371,sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373,https://biolit.fr/sorties/sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373/,severoques,,3/21/2019 0:00,10.0000000,12.0000000,43.381544000000,-1.734539000000,,Haiçabia,40983,observation-91c2fe7f-14f4-478d-9fd2-7d645038b373-7,https://biolit.fr/observations/observation-91c2fe7f-14f4-478d-9fd2-7d645038b373-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190321_105042-scaled.jpg,,FALSE, +N1,59371,sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373,https://biolit.fr/sorties/sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373/,severoques,,3/21/2019 0:00,10.0000000,12.0000000,43.381544000000,-1.734539000000,,Haiçabia,40985,observation-91c2fe7f-14f4-478d-9fd2-7d645038b373-8,https://biolit.fr/observations/observation-91c2fe7f-14f4-478d-9fd2-7d645038b373-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190321_110936 (2)-scaled.jpg,,FALSE, +N1,59371,sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373,https://biolit.fr/sorties/sortie-91c2fe7f-14f4-478d-9fd2-7d645038b373/,severoques,,3/21/2019 0:00,10.0000000,12.0000000,43.381544000000,-1.734539000000,,Haiçabia,40987,observation-91c2fe7f-14f4-478d-9fd2-7d645038b373-9,https://biolit.fr/observations/observation-91c2fe7f-14f4-478d-9fd2-7d645038b373-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190321_112833-scaled.jpg,,FALSE, +N1,59372,sortie-84acbba1-5f1a-47d4-9b59-2aa275d3146d,https://biolit.fr/sorties/sortie-84acbba1-5f1a-47d4-9b59-2aa275d3146d/,collège paul Eluard,,3/28/2019 0:00,14.0000000,16.0000000,50.692297000000,1.562895000000,,Ningles,40989,observation-84acbba1-5f1a-47d4-9b59-2aa275d3146d,https://biolit.fr/observations/observation-84acbba1-5f1a-47d4-9b59-2aa275d3146d/,,,,https://biolit.fr/wp-content/uploads/2023/07/Adonys-55-5[1].jpg,,FALSE, +N1,59372,sortie-84acbba1-5f1a-47d4-9b59-2aa275d3146d,https://biolit.fr/sorties/sortie-84acbba1-5f1a-47d4-9b59-2aa275d3146d/,collège paul Eluard,,3/28/2019 0:00,14.0000000,16.0000000,50.692297000000,1.562895000000,,Ningles,40991,observation-84acbba1-5f1a-47d4-9b59-2aa275d3146d-2,https://biolit.fr/observations/observation-84acbba1-5f1a-47d4-9b59-2aa275d3146d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Adonys-55-6[1].jpg,,FALSE, +N1,59373,sortie-5d21ca23-8066-44b7-a639-d1816b3adb24,https://biolit.fr/sorties/sortie-5d21ca23-8066-44b7-a639-d1816b3adb24/,Phil,,03/08/2019,13.0000000,13.000005,47.792005000000,-4.286515000000,,Guilvinec - Finistère,40993,observation-5d21ca23-8066-44b7-a639-d1816b3adb24,https://biolit.fr/observations/observation-5d21ca23-8066-44b7-a639-d1816b3adb24/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190308_125930.jpg,,FALSE, +N1,59373,sortie-5d21ca23-8066-44b7-a639-d1816b3adb24,https://biolit.fr/sorties/sortie-5d21ca23-8066-44b7-a639-d1816b3adb24/,Phil,,03/08/2019,13.0000000,13.000005,47.792005000000,-4.286515000000,,Guilvinec - Finistère,40995,observation-5d21ca23-8066-44b7-a639-d1816b3adb24-2,https://biolit.fr/observations/observation-5d21ca23-8066-44b7-a639-d1816b3adb24-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190308_125935.jpg,,FALSE, +N1,59373,sortie-5d21ca23-8066-44b7-a639-d1816b3adb24,https://biolit.fr/sorties/sortie-5d21ca23-8066-44b7-a639-d1816b3adb24/,Phil,,03/08/2019,13.0000000,13.000005,47.792005000000,-4.286515000000,,Guilvinec - Finistère,40997,observation-5d21ca23-8066-44b7-a639-d1816b3adb24-3,https://biolit.fr/observations/observation-5d21ca23-8066-44b7-a639-d1816b3adb24-3/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190308_130010.jpg,,TRUE, +N1,59373,sortie-5d21ca23-8066-44b7-a639-d1816b3adb24,https://biolit.fr/sorties/sortie-5d21ca23-8066-44b7-a639-d1816b3adb24/,Phil,,03/08/2019,13.0000000,13.000005,47.792005000000,-4.286515000000,,Guilvinec - Finistère,40999,observation-5d21ca23-8066-44b7-a639-d1816b3adb24-4,https://biolit.fr/observations/observation-5d21ca23-8066-44b7-a639-d1816b3adb24-4/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190308_130137.jpg,,TRUE, +N1,59374,sortie-2f3f29cb-74e4-4296-940e-e3775eec830b,https://biolit.fr/sorties/sortie-2f3f29cb-74e4-4296-940e-e3775eec830b/,Kevinlf,,04/01/2019,18.0000000,18.0000000,48.659125000000,-4.222853000000,,Plage de Porsmeur,41001,observation-2f3f29cb-74e4-4296-940e-e3775eec830b,https://biolit.fr/observations/observation-2f3f29cb-74e4-4296-940e-e3775eec830b/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190401_183140-min.png,,FALSE, +N1,59374,sortie-2f3f29cb-74e4-4296-940e-e3775eec830b,https://biolit.fr/sorties/sortie-2f3f29cb-74e4-4296-940e-e3775eec830b/,Kevinlf,,04/01/2019,18.0000000,18.0000000,48.659125000000,-4.222853000000,,Plage de Porsmeur,41003,observation-2f3f29cb-74e4-4296-940e-e3775eec830b-2,https://biolit.fr/observations/observation-2f3f29cb-74e4-4296-940e-e3775eec830b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190401_184012-min.png,,FALSE, +N1,59374,sortie-2f3f29cb-74e4-4296-940e-e3775eec830b,https://biolit.fr/sorties/sortie-2f3f29cb-74e4-4296-940e-e3775eec830b/,Kevinlf,,04/01/2019,18.0000000,18.0000000,48.659125000000,-4.222853000000,,Plage de Porsmeur,41005,observation-2f3f29cb-74e4-4296-940e-e3775eec830b-3,https://biolit.fr/observations/observation-2f3f29cb-74e4-4296-940e-e3775eec830b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190401_183212-min.png,,FALSE, +N1,59374,sortie-2f3f29cb-74e4-4296-940e-e3775eec830b,https://biolit.fr/sorties/sortie-2f3f29cb-74e4-4296-940e-e3775eec830b/,Kevinlf,,04/01/2019,18.0000000,18.0000000,48.659125000000,-4.222853000000,,Plage de Porsmeur,41007,observation-2f3f29cb-74e4-4296-940e-e3775eec830b-4,https://biolit.fr/observations/observation-2f3f29cb-74e4-4296-940e-e3775eec830b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190401_183219-min.png,,FALSE, +N1,59374,sortie-2f3f29cb-74e4-4296-940e-e3775eec830b,https://biolit.fr/sorties/sortie-2f3f29cb-74e4-4296-940e-e3775eec830b/,Kevinlf,,04/01/2019,18.0000000,18.0000000,48.659125000000,-4.222853000000,,Plage de Porsmeur,41009,observation-2f3f29cb-74e4-4296-940e-e3775eec830b-5,https://biolit.fr/observations/observation-2f3f29cb-74e4-4296-940e-e3775eec830b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190401_183227-min.png,,FALSE, +N1,59374,sortie-2f3f29cb-74e4-4296-940e-e3775eec830b,https://biolit.fr/sorties/sortie-2f3f29cb-74e4-4296-940e-e3775eec830b/,Kevinlf,,04/01/2019,18.0000000,18.0000000,48.659125000000,-4.222853000000,,Plage de Porsmeur,41011,observation-2f3f29cb-74e4-4296-940e-e3775eec830b-6,https://biolit.fr/observations/observation-2f3f29cb-74e4-4296-940e-e3775eec830b-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190401_183250-min.png,,FALSE, +N1,59374,sortie-2f3f29cb-74e4-4296-940e-e3775eec830b,https://biolit.fr/sorties/sortie-2f3f29cb-74e4-4296-940e-e3775eec830b/,Kevinlf,,04/01/2019,18.0000000,18.0000000,48.659125000000,-4.222853000000,,Plage de Porsmeur,41013,observation-2f3f29cb-74e4-4296-940e-e3775eec830b-7,https://biolit.fr/observations/observation-2f3f29cb-74e4-4296-940e-e3775eec830b-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190401_183335-min.png,,FALSE, +N1,59374,sortie-2f3f29cb-74e4-4296-940e-e3775eec830b,https://biolit.fr/sorties/sortie-2f3f29cb-74e4-4296-940e-e3775eec830b/,Kevinlf,,04/01/2019,18.0000000,18.0000000,48.659125000000,-4.222853000000,,Plage de Porsmeur,41015,observation-2f3f29cb-74e4-4296-940e-e3775eec830b-8,https://biolit.fr/observations/observation-2f3f29cb-74e4-4296-940e-e3775eec830b-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190401_183516-min.png,,FALSE, +N1,59374,sortie-2f3f29cb-74e4-4296-940e-e3775eec830b,https://biolit.fr/sorties/sortie-2f3f29cb-74e4-4296-940e-e3775eec830b/,Kevinlf,,04/01/2019,18.0000000,18.0000000,48.659125000000,-4.222853000000,,Plage de Porsmeur,41017,observation-2f3f29cb-74e4-4296-940e-e3775eec830b-9,https://biolit.fr/observations/observation-2f3f29cb-74e4-4296-940e-e3775eec830b-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190401_183524-min.png,,FALSE, +N1,59374,sortie-2f3f29cb-74e4-4296-940e-e3775eec830b,https://biolit.fr/sorties/sortie-2f3f29cb-74e4-4296-940e-e3775eec830b/,Kevinlf,,04/01/2019,18.0000000,18.0000000,48.659125000000,-4.222853000000,,Plage de Porsmeur,41019,observation-2f3f29cb-74e4-4296-940e-e3775eec830b-10,https://biolit.fr/observations/observation-2f3f29cb-74e4-4296-940e-e3775eec830b-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190401_183556-min.png,,FALSE, +N1,59374,sortie-2f3f29cb-74e4-4296-940e-e3775eec830b,https://biolit.fr/sorties/sortie-2f3f29cb-74e4-4296-940e-e3775eec830b/,Kevinlf,,04/01/2019,18.0000000,18.0000000,48.659125000000,-4.222853000000,,Plage de Porsmeur,41021,observation-2f3f29cb-74e4-4296-940e-e3775eec830b-11,https://biolit.fr/observations/observation-2f3f29cb-74e4-4296-940e-e3775eec830b-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190401_184158-min.png,,FALSE, +N1,59375,sortie-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946,https://biolit.fr/sorties/sortie-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946/,Phil,,12/26/2018 0:00,13.0000000,14.0000000,47.800400000000,-4.180160000000,,Loctudy - Finistère,41023,observation-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946,https://biolit.fr/observations/observation-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/2023/07/20181226_135540.jpg,,TRUE, +N1,59375,sortie-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946,https://biolit.fr/sorties/sortie-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946/,Phil,,12/26/2018 0:00,13.0000000,14.0000000,47.800400000000,-4.180160000000,,Loctudy - Finistère,41025,observation-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946-2,https://biolit.fr/observations/observation-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946-2/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/2023/07/20181226_135544.jpg,,TRUE, +N1,59375,sortie-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946,https://biolit.fr/sorties/sortie-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946/,Phil,,12/26/2018 0:00,13.0000000,14.0000000,47.800400000000,-4.180160000000,,Loctudy - Finistère,41027,observation-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946-3,https://biolit.fr/observations/observation-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946-3/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_135158.jpg,,TRUE, +N1,59375,sortie-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946,https://biolit.fr/sorties/sortie-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946/,Phil,,12/26/2018 0:00,13.0000000,14.0000000,47.800400000000,-4.180160000000,,Loctudy - Finistère,41029,observation-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946-4,https://biolit.fr/observations/observation-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946-4/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_135228.jpg,,TRUE, +N1,59375,sortie-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946,https://biolit.fr/sorties/sortie-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946/,Phil,,12/26/2018 0:00,13.0000000,14.0000000,47.800400000000,-4.180160000000,,Loctudy - Finistère,41031,observation-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946-5,https://biolit.fr/observations/observation-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946-5/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20181226_142019.jpg,,TRUE, +N1,59375,sortie-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946,https://biolit.fr/sorties/sortie-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946/,Phil,,12/26/2018 0:00,13.0000000,14.0000000,47.800400000000,-4.180160000000,,Loctudy - Finistère,41033,observation-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946-6,https://biolit.fr/observations/observation-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946-6/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181226_141952.jpg,,TRUE, +N1,59375,sortie-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946,https://biolit.fr/sorties/sortie-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946/,Phil,,12/26/2018 0:00,13.0000000,14.0000000,47.800400000000,-4.180160000000,,Loctudy - Finistère,41035,observation-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946-7,https://biolit.fr/observations/observation-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946-7/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181226_141851.jpg,,TRUE, +N1,59375,sortie-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946,https://biolit.fr/sorties/sortie-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946/,Phil,,12/26/2018 0:00,13.0000000,14.0000000,47.800400000000,-4.180160000000,,Loctudy - Finistère,41037,observation-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946-8,https://biolit.fr/observations/observation-b72d9af0-7b13-4f5b-8ebb-6fd5fc424946-8/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20181226_141712.jpg,,TRUE, +N1,59376,sortie-eb086225-3f95-413f-b670-2e5387d0a328,https://biolit.fr/sorties/sortie-eb086225-3f95-413f-b670-2e5387d0a328/,Phil,,3/30/2019 0:00,12.0000000,12.0:35,47.845026000000,-4.038304000000,,Mousterlin - Finistère,41039,observation-eb086225-3f95-413f-b670-2e5387d0a328,https://biolit.fr/observations/observation-eb086225-3f95-413f-b670-2e5387d0a328/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190330_123017.jpg,,FALSE, +N1,59376,sortie-eb086225-3f95-413f-b670-2e5387d0a328,https://biolit.fr/sorties/sortie-eb086225-3f95-413f-b670-2e5387d0a328/,Phil,,3/30/2019 0:00,12.0000000,12.0:35,47.845026000000,-4.038304000000,,Mousterlin - Finistère,41041,observation-eb086225-3f95-413f-b670-2e5387d0a328-2,https://biolit.fr/observations/observation-eb086225-3f95-413f-b670-2e5387d0a328-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190330_123022.jpg,,FALSE, +N1,59376,sortie-eb086225-3f95-413f-b670-2e5387d0a328,https://biolit.fr/sorties/sortie-eb086225-3f95-413f-b670-2e5387d0a328/,Phil,,3/30/2019 0:00,12.0000000,12.0:35,47.845026000000,-4.038304000000,,Mousterlin - Finistère,41043,observation-eb086225-3f95-413f-b670-2e5387d0a328-3,https://biolit.fr/observations/observation-eb086225-3f95-413f-b670-2e5387d0a328-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190330_123059.jpg,,FALSE, +N1,59376,sortie-eb086225-3f95-413f-b670-2e5387d0a328,https://biolit.fr/sorties/sortie-eb086225-3f95-413f-b670-2e5387d0a328/,Phil,,3/30/2019 0:00,12.0000000,12.0:35,47.845026000000,-4.038304000000,,Mousterlin - Finistère,41045,observation-eb086225-3f95-413f-b670-2e5387d0a328-4,https://biolit.fr/observations/observation-eb086225-3f95-413f-b670-2e5387d0a328-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190330_123156.jpg,,FALSE, +N1,59377,sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d,https://biolit.fr/sorties/sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d/,Kevinlf,,3/30/2019 0:00,18.0:15,18.0000000,48.688516000000,-4.166344000000,,Poulfoën,41047,observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d,https://biolit.fr/observations/observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190330_181545-scaled.jpg,,TRUE, +N1,59377,sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d,https://biolit.fr/sorties/sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d/,Kevinlf,,3/30/2019 0:00,18.0:15,18.0000000,48.688516000000,-4.166344000000,,Poulfoën,41049,observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-2,https://biolit.fr/observations/observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-2/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190330_181552-scaled.jpg,,TRUE, +N1,59377,sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d,https://biolit.fr/sorties/sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d/,Kevinlf,,3/30/2019 0:00,18.0:15,18.0000000,48.688516000000,-4.166344000000,,Poulfoën,41051,observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-3,https://biolit.fr/observations/observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-3/,Palmaria palmata,Goémon à vache,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190330_181645-scaled.jpg,,TRUE, +N1,59377,sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d,https://biolit.fr/sorties/sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d/,Kevinlf,,3/30/2019 0:00,18.0:15,18.0000000,48.688516000000,-4.166344000000,,Poulfoën,41053,observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-4,https://biolit.fr/observations/observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190330_182352-scaled.jpg,,FALSE, +N1,59377,sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d,https://biolit.fr/sorties/sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d/,Kevinlf,,3/30/2019 0:00,18.0:15,18.0000000,48.688516000000,-4.166344000000,,Poulfoën,41055,observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-5,https://biolit.fr/observations/observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-5/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190330_182409-scaled.jpg,,TRUE, +N1,59377,sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d,https://biolit.fr/sorties/sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d/,Kevinlf,,3/30/2019 0:00,18.0:15,18.0000000,48.688516000000,-4.166344000000,,Poulfoën,41057,observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-6,https://biolit.fr/observations/observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-6/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190330_182758-scaled.jpg,,TRUE, +N1,59377,sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d,https://biolit.fr/sorties/sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d/,Kevinlf,,3/30/2019 0:00,18.0:15,18.0000000,48.688516000000,-4.166344000000,,Poulfoën,41059,observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-7,https://biolit.fr/observations/observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190330_182537-scaled.jpg,,FALSE, +N1,59377,sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d,https://biolit.fr/sorties/sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d/,Kevinlf,,3/30/2019 0:00,18.0:15,18.0000000,48.688516000000,-4.166344000000,,Poulfoën,41061,observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-8,https://biolit.fr/observations/observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-8/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190330_181608-scaled.jpg,,TRUE, +N1,59377,sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d,https://biolit.fr/sorties/sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d/,Kevinlf,,3/30/2019 0:00,18.0:15,18.0000000,48.688516000000,-4.166344000000,,Poulfoën,41063,observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-9,https://biolit.fr/observations/observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-9/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190330_181847-scaled.jpg,,TRUE, +N1,59377,sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d,https://biolit.fr/sorties/sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d/,Kevinlf,,3/30/2019 0:00,18.0:15,18.0000000,48.688516000000,-4.166344000000,,Poulfoën,41065,observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-10,https://biolit.fr/observations/observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-10/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190330_183050-scaled.jpg,,TRUE, +N1,59377,sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d,https://biolit.fr/sorties/sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d/,Kevinlf,,3/30/2019 0:00,18.0:15,18.0000000,48.688516000000,-4.166344000000,,Poulfoën,41067,observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-11,https://biolit.fr/observations/observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190330_183340-scaled.jpg,,FALSE, +N1,59377,sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d,https://biolit.fr/sorties/sortie-e83685e6-57e4-4273-9b4e-f8ec81a0167d/,Kevinlf,,3/30/2019 0:00,18.0:15,18.0000000,48.688516000000,-4.166344000000,,Poulfoën,41069,observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-12,https://biolit.fr/observations/observation-e83685e6-57e4-4273-9b4e-f8ec81a0167d-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190330_183444-scaled.jpg,,FALSE, +N1,59378,sortie-b45d2620-70ff-4d4c-830b-7a23e50c137b,https://biolit.fr/sorties/sortie-b45d2620-70ff-4d4c-830b-7a23e50c137b/,salamandre,,3/30/2019 0:00,14.0:35,15.0:25,51.070685000000,2.482421000000,,plage de zuycoote,41071,observation-b45d2620-70ff-4d4c-830b-7a23e50c137b,https://biolit.fr/observations/observation-b45d2620-70ff-4d4c-830b-7a23e50c137b/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3301939-scaled.jpg,,FALSE, +N1,59379,sortie-52d0c9fc-b4e3-4af1-b20d-101097b87d9a,https://biolit.fr/sorties/sortie-52d0c9fc-b4e3-4af1-b20d-101097b87d9a/,chloe_cpie,,3/27/2019 0:00,17.0000000,17.0000000,51.050637000000,2.394434000000,,"Malo-les-Bains, Dunkerque",41073,observation-52d0c9fc-b4e3-4af1-b20d-101097b87d9a,https://biolit.fr/observations/observation-52d0c9fc-b4e3-4af1-b20d-101097b87d9a/,Spisula solida,Mactre épaisse,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0092[1].JPG,,TRUE, +N1,59380,sortie-f916a241-4e16-4682-9544-863f711df568,https://biolit.fr/sorties/sortie-f916a241-4e16-4682-9544-863f711df568/,Phil,,7/16/2018 0:00,13.0:25,13.0:35,47.80937900000,-3.712038000000,,Moëllan-sur-Mer - Finistère,41075,observation-f916a241-4e16-4682-9544-863f711df568,https://biolit.fr/observations/observation-f916a241-4e16-4682-9544-863f711df568/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/P1110814.JPG,,TRUE, +N1,59380,sortie-f916a241-4e16-4682-9544-863f711df568,https://biolit.fr/sorties/sortie-f916a241-4e16-4682-9544-863f711df568/,Phil,,7/16/2018 0:00,13.0:25,13.0:35,47.80937900000,-3.712038000000,,Moëllan-sur-Mer - Finistère,41077,observation-f916a241-4e16-4682-9544-863f711df568-2,https://biolit.fr/observations/observation-f916a241-4e16-4682-9544-863f711df568-2/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/P1110820.JPG,,TRUE, +N1,59380,sortie-f916a241-4e16-4682-9544-863f711df568,https://biolit.fr/sorties/sortie-f916a241-4e16-4682-9544-863f711df568/,Phil,,7/16/2018 0:00,13.0:25,13.0:35,47.80937900000,-3.712038000000,,Moëllan-sur-Mer - Finistère,41079,observation-f916a241-4e16-4682-9544-863f711df568-3,https://biolit.fr/observations/observation-f916a241-4e16-4682-9544-863f711df568-3/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1110821.JPG,,TRUE, +N1,59380,sortie-f916a241-4e16-4682-9544-863f711df568,https://biolit.fr/sorties/sortie-f916a241-4e16-4682-9544-863f711df568/,Phil,,7/16/2018 0:00,13.0:25,13.0:35,47.80937900000,-3.712038000000,,Moëllan-sur-Mer - Finistère,41081,observation-f916a241-4e16-4682-9544-863f711df568-4,https://biolit.fr/observations/observation-f916a241-4e16-4682-9544-863f711df568-4/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1110823.JPG,,TRUE, +N1,59380,sortie-f916a241-4e16-4682-9544-863f711df568,https://biolit.fr/sorties/sortie-f916a241-4e16-4682-9544-863f711df568/,Phil,,7/16/2018 0:00,13.0:25,13.0:35,47.80937900000,-3.712038000000,,Moëllan-sur-Mer - Finistère,41083,observation-f916a241-4e16-4682-9544-863f711df568-5,https://biolit.fr/observations/observation-f916a241-4e16-4682-9544-863f711df568-5/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/P1110824.JPG,,TRUE, +N1,59380,sortie-f916a241-4e16-4682-9544-863f711df568,https://biolit.fr/sorties/sortie-f916a241-4e16-4682-9544-863f711df568/,Phil,,7/16/2018 0:00,13.0:25,13.0:35,47.80937900000,-3.712038000000,,Moëllan-sur-Mer - Finistère,41085,observation-f916a241-4e16-4682-9544-863f711df568-6,https://biolit.fr/observations/observation-f916a241-4e16-4682-9544-863f711df568-6/,Clavelina lepadiformis,Grande claveline,,https://biolit.fr/wp-content/uploads/2023/07/P1110829.JPG,,TRUE, +N1,59380,sortie-f916a241-4e16-4682-9544-863f711df568,https://biolit.fr/sorties/sortie-f916a241-4e16-4682-9544-863f711df568/,Phil,,7/16/2018 0:00,13.0:25,13.0:35,47.80937900000,-3.712038000000,,Moëllan-sur-Mer - Finistère,41087,observation-f916a241-4e16-4682-9544-863f711df568-7,https://biolit.fr/observations/observation-f916a241-4e16-4682-9544-863f711df568-7/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110830.JPG,,TRUE, +N1,59380,sortie-f916a241-4e16-4682-9544-863f711df568,https://biolit.fr/sorties/sortie-f916a241-4e16-4682-9544-863f711df568/,Phil,,7/16/2018 0:00,13.0:25,13.0:35,47.80937900000,-3.712038000000,,Moëllan-sur-Mer - Finistère,41089,observation-f916a241-4e16-4682-9544-863f711df568-8,https://biolit.fr/observations/observation-f916a241-4e16-4682-9544-863f711df568-8/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/P1110832.JPG,,TRUE, +N1,59381,sortie-15fce93f-fa5b-4b7c-9960-f494aaf607a3,https://biolit.fr/sorties/sortie-15fce93f-fa5b-4b7c-9960-f494aaf607a3/,Phil,,12/20/2018 0:00,17.0000000,17.0:45,48.211554000000,-4.371640000000,,Telgruc-sur-Mer Finistère,41091,observation-15fce93f-fa5b-4b7c-9960-f494aaf607a3,https://biolit.fr/observations/observation-15fce93f-fa5b-4b7c-9960-f494aaf607a3/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20181220_172029.jpg,,TRUE, +N1,59381,sortie-15fce93f-fa5b-4b7c-9960-f494aaf607a3,https://biolit.fr/sorties/sortie-15fce93f-fa5b-4b7c-9960-f494aaf607a3/,Phil,,12/20/2018 0:00,17.0000000,17.0:45,48.211554000000,-4.371640000000,,Telgruc-sur-Mer Finistère,41093,observation-15fce93f-fa5b-4b7c-9960-f494aaf607a3-2,https://biolit.fr/observations/observation-15fce93f-fa5b-4b7c-9960-f494aaf607a3-2/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/20181220_172244.jpg,,TRUE, +N1,59381,sortie-15fce93f-fa5b-4b7c-9960-f494aaf607a3,https://biolit.fr/sorties/sortie-15fce93f-fa5b-4b7c-9960-f494aaf607a3/,Phil,,12/20/2018 0:00,17.0000000,17.0:45,48.211554000000,-4.371640000000,,Telgruc-sur-Mer Finistère,41095,observation-15fce93f-fa5b-4b7c-9960-f494aaf607a3-3,https://biolit.fr/observations/observation-15fce93f-fa5b-4b7c-9960-f494aaf607a3-3/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20181220_172443.jpg,,TRUE, +N1,59381,sortie-15fce93f-fa5b-4b7c-9960-f494aaf607a3,https://biolit.fr/sorties/sortie-15fce93f-fa5b-4b7c-9960-f494aaf607a3/,Phil,,12/20/2018 0:00,17.0000000,17.0:45,48.211554000000,-4.371640000000,,Telgruc-sur-Mer Finistère,41097,observation-15fce93f-fa5b-4b7c-9960-f494aaf607a3-4,https://biolit.fr/observations/observation-15fce93f-fa5b-4b7c-9960-f494aaf607a3-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181220_174121.jpg,,FALSE, +N1,59381,sortie-15fce93f-fa5b-4b7c-9960-f494aaf607a3,https://biolit.fr/sorties/sortie-15fce93f-fa5b-4b7c-9960-f494aaf607a3/,Phil,,12/20/2018 0:00,17.0000000,17.0:45,48.211554000000,-4.371640000000,,Telgruc-sur-Mer Finistère,41099,observation-15fce93f-fa5b-4b7c-9960-f494aaf607a3-5,https://biolit.fr/observations/observation-15fce93f-fa5b-4b7c-9960-f494aaf607a3-5/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/20181220_174434.jpg,,TRUE, +N1,59382,sortie-22a39c88-c375-4be0-9183-96afa95c0f05,https://biolit.fr/sorties/sortie-22a39c88-c375-4be0-9183-96afa95c0f05/,Classe env St Jo les Maristes,,03/12/2019,8.0000000,10.0000000,43.236067000000,5.359933000000,,plage de la bonne brise,41101,observation-22a39c88-c375-4be0-9183-96afa95c0f05,https://biolit.fr/observations/observation-22a39c88-c375-4be0-9183-96afa95c0f05/,,,,https://biolit.fr/wp-content/uploads/2023/07/image posidonie.jpg,,FALSE, +N1,59382,sortie-22a39c88-c375-4be0-9183-96afa95c0f05,https://biolit.fr/sorties/sortie-22a39c88-c375-4be0-9183-96afa95c0f05/,Classe env St Jo les Maristes,,03/12/2019,8.0000000,10.0000000,43.236067000000,5.359933000000,,plage de la bonne brise,41103,observation-22a39c88-c375-4be0-9183-96afa95c0f05-2,https://biolit.fr/observations/observation-22a39c88-c375-4be0-9183-96afa95c0f05-2/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/image algue rouge.jpg,,TRUE, +N1,59382,sortie-22a39c88-c375-4be0-9183-96afa95c0f05,https://biolit.fr/sorties/sortie-22a39c88-c375-4be0-9183-96afa95c0f05/,Classe env St Jo les Maristes,,03/12/2019,8.0000000,10.0000000,43.236067000000,5.359933000000,,plage de la bonne brise,41105,observation-22a39c88-c375-4be0-9183-96afa95c0f05-3,https://biolit.fr/observations/observation-22a39c88-c375-4be0-9183-96afa95c0f05-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/image de plume.jpg,,FALSE, +N1,59382,sortie-22a39c88-c375-4be0-9183-96afa95c0f05,https://biolit.fr/sorties/sortie-22a39c88-c375-4be0-9183-96afa95c0f05/,Classe env St Jo les Maristes,,03/12/2019,8.0000000,10.0000000,43.236067000000,5.359933000000,,plage de la bonne brise,41107,observation-22a39c88-c375-4be0-9183-96afa95c0f05-4,https://biolit.fr/observations/observation-22a39c88-c375-4be0-9183-96afa95c0f05-4/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/image algue verte.jpg,,TRUE, +N1,59382,sortie-22a39c88-c375-4be0-9183-96afa95c0f05,https://biolit.fr/sorties/sortie-22a39c88-c375-4be0-9183-96afa95c0f05/,Classe env St Jo les Maristes,,03/12/2019,8.0000000,10.0000000,43.236067000000,5.359933000000,,plage de la bonne brise,41109,observation-22a39c88-c375-4be0-9183-96afa95c0f05-5,https://biolit.fr/observations/observation-22a39c88-c375-4be0-9183-96afa95c0f05-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/image coquillage.jpg,,FALSE, +N1,59383,sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f,https://biolit.fr/sorties/sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f/,Classe env St Jo les Maristes,,03/06/2019,9.0000000,12.0000000,43.236054000000,5.360051000000,,"Plage de la Bonne Brise, Marseille 13008",41111,observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f,https://biolit.fr/observations/observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/DSCN4999-scaled.jpg,,TRUE, +N1,59383,sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f,https://biolit.fr/sorties/sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f/,Classe env St Jo les Maristes,,03/06/2019,9.0000000,12.0000000,43.236054000000,5.360051000000,,"Plage de la Bonne Brise, Marseille 13008",41113,observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-2,https://biolit.fr/observations/observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-2/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/DSCN5000-scaled.jpg,,TRUE, +N1,59383,sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f,https://biolit.fr/sorties/sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f/,Classe env St Jo les Maristes,,03/06/2019,9.0000000,12.0000000,43.236054000000,5.360051000000,,"Plage de la Bonne Brise, Marseille 13008",41115,observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-3,https://biolit.fr/observations/observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-3/,Tritia mutabilis,Noisette de mer,,https://biolit.fr/wp-content/uploads/2023/07/DSCN4952-scaled.jpg,,TRUE, +N1,59383,sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f,https://biolit.fr/sorties/sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f/,Classe env St Jo les Maristes,,03/06/2019,9.0000000,12.0000000,43.236054000000,5.360051000000,,"Plage de la Bonne Brise, Marseille 13008",41117,observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-4,https://biolit.fr/observations/observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN4967-scaled.jpg,,FALSE, +N1,59383,sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f,https://biolit.fr/sorties/sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f/,Classe env St Jo les Maristes,,03/06/2019,9.0000000,12.0000000,43.236054000000,5.360051000000,,"Plage de la Bonne Brise, Marseille 13008",41119,observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-5,https://biolit.fr/observations/observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-5/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSCN4968-scaled.jpg,,TRUE, +N1,59383,sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f,https://biolit.fr/sorties/sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f/,Classe env St Jo les Maristes,,03/06/2019,9.0000000,12.0000000,43.236054000000,5.360051000000,,"Plage de la Bonne Brise, Marseille 13008",41121,observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-6,https://biolit.fr/observations/observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-6/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/DSCN4986-scaled.jpg,,TRUE, +N1,59383,sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f,https://biolit.fr/sorties/sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f/,Classe env St Jo les Maristes,,03/06/2019,9.0000000,12.0000000,43.236054000000,5.360051000000,,"Plage de la Bonne Brise, Marseille 13008",41123,observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-7,https://biolit.fr/observations/observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-7/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/DSCN4989-scaled.jpg,,TRUE, +N1,59383,sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f,https://biolit.fr/sorties/sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f/,Classe env St Jo les Maristes,,03/06/2019,9.0000000,12.0000000,43.236054000000,5.360051000000,,"Plage de la Bonne Brise, Marseille 13008",41125,observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-8,https://biolit.fr/observations/observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-8/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSCN4963-scaled.jpg,,TRUE, +N1,59383,sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f,https://biolit.fr/sorties/sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f/,Classe env St Jo les Maristes,,03/06/2019,9.0000000,12.0000000,43.236054000000,5.360051000000,,"Plage de la Bonne Brise, Marseille 13008",41127,observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-9,https://biolit.fr/observations/observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN5006-scaled.jpg,,FALSE, +N1,59383,sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f,https://biolit.fr/sorties/sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f/,Classe env St Jo les Maristes,,03/06/2019,9.0000000,12.0000000,43.236054000000,5.360051000000,,"Plage de la Bonne Brise, Marseille 13008",41129,observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-10,https://biolit.fr/observations/observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-10/,Amphisbetia operculata,Tamaris de mer,,https://biolit.fr/wp-content/uploads/2023/07/DSCN5002-scaled.jpg,,TRUE, +N1,59383,sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f,https://biolit.fr/sorties/sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f/,Classe env St Jo les Maristes,,03/06/2019,9.0000000,12.0000000,43.236054000000,5.360051000000,,"Plage de la Bonne Brise, Marseille 13008",41131,observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-11,https://biolit.fr/observations/observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-11/,Electra posidoniae,Bryozoaire de la posidonie,,https://biolit.fr/wp-content/uploads/2023/07/DSCN4997-scaled.jpg,,TRUE, +N1,59383,sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f,https://biolit.fr/sorties/sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f/,Classe env St Jo les Maristes,,03/06/2019,9.0000000,12.0000000,43.236054000000,5.360051000000,,"Plage de la Bonne Brise, Marseille 13008",41133,observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-12,https://biolit.fr/observations/observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN4958-scaled.jpg,,FALSE, +N1,59383,sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f,https://biolit.fr/sorties/sortie-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f/,Classe env St Jo les Maristes,,03/06/2019,9.0000000,12.0000000,43.236054000000,5.360051000000,,"Plage de la Bonne Brise, Marseille 13008",41135,observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-13,https://biolit.fr/observations/observation-ccfa322c-7a2b-43f4-bb0a-7a7f680dcc0f-13/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/DSCN4961-scaled.jpg,,TRUE, +N1,59384,sortie-1b72c781-6f61-4a23-967d-9bc8bc963ff2,https://biolit.fr/sorties/sortie-1b72c781-6f61-4a23-967d-9bc8bc963ff2/,ESCALE BRETAGNE,,3/21/2019 0:00,13.0000000,16.0000000,48.639363000000,-2.071455000000,Escale Bretagne,plage de saint Énogat,41137,observation-1b72c781-6f61-4a23-967d-9bc8bc963ff2,https://biolit.fr/observations/observation-1b72c781-6f61-4a23-967d-9bc8bc963ff2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3808.JPG,,FALSE, +N1,59384,sortie-1b72c781-6f61-4a23-967d-9bc8bc963ff2,https://biolit.fr/sorties/sortie-1b72c781-6f61-4a23-967d-9bc8bc963ff2/,ESCALE BRETAGNE,,3/21/2019 0:00,13.0000000,16.0000000,48.639363000000,-2.071455000000,Escale Bretagne,plage de saint Énogat,41139,observation-1b72c781-6f61-4a23-967d-9bc8bc963ff2-2,https://biolit.fr/observations/observation-1b72c781-6f61-4a23-967d-9bc8bc963ff2-2/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3810.JPG,,TRUE, +N1,59384,sortie-1b72c781-6f61-4a23-967d-9bc8bc963ff2,https://biolit.fr/sorties/sortie-1b72c781-6f61-4a23-967d-9bc8bc963ff2/,ESCALE BRETAGNE,,3/21/2019 0:00,13.0000000,16.0000000,48.639363000000,-2.071455000000,Escale Bretagne,plage de saint Énogat,41141,observation-1b72c781-6f61-4a23-967d-9bc8bc963ff2-3,https://biolit.fr/observations/observation-1b72c781-6f61-4a23-967d-9bc8bc963ff2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3811.JPG,,FALSE, +N1,59384,sortie-1b72c781-6f61-4a23-967d-9bc8bc963ff2,https://biolit.fr/sorties/sortie-1b72c781-6f61-4a23-967d-9bc8bc963ff2/,ESCALE BRETAGNE,,3/21/2019 0:00,13.0000000,16.0000000,48.639363000000,-2.071455000000,Escale Bretagne,plage de saint Énogat,41143,observation-1b72c781-6f61-4a23-967d-9bc8bc963ff2-4,https://biolit.fr/observations/observation-1b72c781-6f61-4a23-967d-9bc8bc963ff2-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3812.JPG,,TRUE, +N1,59384,sortie-1b72c781-6f61-4a23-967d-9bc8bc963ff2,https://biolit.fr/sorties/sortie-1b72c781-6f61-4a23-967d-9bc8bc963ff2/,ESCALE BRETAGNE,,3/21/2019 0:00,13.0000000,16.0000000,48.639363000000,-2.071455000000,Escale Bretagne,plage de saint Énogat,41145,observation-1b72c781-6f61-4a23-967d-9bc8bc963ff2-5,https://biolit.fr/observations/observation-1b72c781-6f61-4a23-967d-9bc8bc963ff2-5/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3813.JPG,,TRUE, +N1,59385,sortie-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7,https://biolit.fr/sorties/sortie-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7/,Classe env St Jo les Maristes,,03/12/2019,8.0000000,12.0000000,43.236092000000,5.360045000000,,Plage de le Bonne Brise,41147,observation-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7,https://biolit.fr/observations/observation-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2539c-scaled.jpg,,FALSE, +N1,59385,sortie-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7,https://biolit.fr/sorties/sortie-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7/,Classe env St Jo les Maristes,,03/12/2019,8.0000000,12.0000000,43.236092000000,5.360045000000,,Plage de le Bonne Brise,41149,observation-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7-2,https://biolit.fr/observations/observation-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2531a-scaled.jpg,,FALSE, +N1,59385,sortie-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7,https://biolit.fr/sorties/sortie-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7/,Classe env St Jo les Maristes,,03/12/2019,8.0000000,12.0000000,43.236092000000,5.360045000000,,Plage de le Bonne Brise,41151,observation-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7-3,https://biolit.fr/observations/observation-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7-3/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2540a-scaled.jpg,,TRUE, +N1,59385,sortie-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7,https://biolit.fr/sorties/sortie-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7/,Classe env St Jo les Maristes,,03/12/2019,8.0000000,12.0000000,43.236092000000,5.360045000000,,Plage de le Bonne Brise,41153,observation-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7-4,https://biolit.fr/observations/observation-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2543a-scaled.jpg,,FALSE, +N1,59385,sortie-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7,https://biolit.fr/sorties/sortie-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7/,Classe env St Jo les Maristes,,03/12/2019,8.0000000,12.0000000,43.236092000000,5.360045000000,,Plage de le Bonne Brise,41155,observation-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7-5,https://biolit.fr/observations/observation-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7-5/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2544a-scaled.jpg,,TRUE, +N1,59385,sortie-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7,https://biolit.fr/sorties/sortie-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7/,Classe env St Jo les Maristes,,03/12/2019,8.0000000,12.0000000,43.236092000000,5.360045000000,,Plage de le Bonne Brise,41157,observation-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7-6,https://biolit.fr/observations/observation-e6c99043-2ec4-489e-b2b0-7c4f6f8ca4f7-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2535b-scaled.jpg,,FALSE, +N1,59386,sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90,https://biolit.fr/sorties/sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90/,Classe env St Jo les Maristes,,3/21/2019 0:00,21.0000000,23.0000000,43.235668000000,5.359680000000,,plage bonne brise,41159,observation-256f712a-5de3-4931-8e2a-4b54fccd2b90,https://biolit.fr/observations/observation-256f712a-5de3-4931-8e2a-4b54fccd2b90/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3120313-scaled.jpg,,FALSE, +N1,59386,sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90,https://biolit.fr/sorties/sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90/,Classe env St Jo les Maristes,,3/21/2019 0:00,21.0000000,23.0000000,43.235668000000,5.359680000000,,plage bonne brise,41161,observation-256f712a-5de3-4931-8e2a-4b54fccd2b90-2,https://biolit.fr/observations/observation-256f712a-5de3-4931-8e2a-4b54fccd2b90-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3120315-scaled.jpg,,FALSE, +N1,59386,sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90,https://biolit.fr/sorties/sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90/,Classe env St Jo les Maristes,,3/21/2019 0:00,21.0000000,23.0000000,43.235668000000,5.359680000000,,plage bonne brise,41163,observation-256f712a-5de3-4931-8e2a-4b54fccd2b90-3,https://biolit.fr/observations/observation-256f712a-5de3-4931-8e2a-4b54fccd2b90-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3120316-scaled.jpg,,FALSE, +N1,59386,sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90,https://biolit.fr/sorties/sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90/,Classe env St Jo les Maristes,,3/21/2019 0:00,21.0000000,23.0000000,43.235668000000,5.359680000000,,plage bonne brise,41165,observation-256f712a-5de3-4931-8e2a-4b54fccd2b90-4,https://biolit.fr/observations/observation-256f712a-5de3-4931-8e2a-4b54fccd2b90-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3120312-scaled.jpg,,FALSE, +N1,59386,sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90,https://biolit.fr/sorties/sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90/,Classe env St Jo les Maristes,,3/21/2019 0:00,21.0000000,23.0000000,43.235668000000,5.359680000000,,plage bonne brise,41167,observation-256f712a-5de3-4931-8e2a-4b54fccd2b90-5,https://biolit.fr/observations/observation-256f712a-5de3-4931-8e2a-4b54fccd2b90-5/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/P3120321-scaled.jpg,,TRUE, +N1,59386,sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90,https://biolit.fr/sorties/sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90/,Classe env St Jo les Maristes,,3/21/2019 0:00,21.0000000,23.0000000,43.235668000000,5.359680000000,,plage bonne brise,41169,observation-256f712a-5de3-4931-8e2a-4b54fccd2b90-6,https://biolit.fr/observations/observation-256f712a-5de3-4931-8e2a-4b54fccd2b90-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3120322-scaled.jpg,,FALSE, +N1,59386,sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90,https://biolit.fr/sorties/sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90/,Classe env St Jo les Maristes,,3/21/2019 0:00,21.0000000,23.0000000,43.235668000000,5.359680000000,,plage bonne brise,41171,observation-256f712a-5de3-4931-8e2a-4b54fccd2b90-7,https://biolit.fr/observations/observation-256f712a-5de3-4931-8e2a-4b54fccd2b90-7/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/P3120320-scaled.jpg,,TRUE, +N1,59386,sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90,https://biolit.fr/sorties/sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90/,Classe env St Jo les Maristes,,3/21/2019 0:00,21.0000000,23.0000000,43.235668000000,5.359680000000,,plage bonne brise,41173,observation-256f712a-5de3-4931-8e2a-4b54fccd2b90-8,https://biolit.fr/observations/observation-256f712a-5de3-4931-8e2a-4b54fccd2b90-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3120319-scaled.jpg,,FALSE, +N1,59386,sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90,https://biolit.fr/sorties/sortie-256f712a-5de3-4931-8e2a-4b54fccd2b90/,Classe env St Jo les Maristes,,3/21/2019 0:00,21.0000000,23.0000000,43.235668000000,5.359680000000,,plage bonne brise,41175,observation-256f712a-5de3-4931-8e2a-4b54fccd2b90-9,https://biolit.fr/observations/observation-256f712a-5de3-4931-8e2a-4b54fccd2b90-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3120318-scaled.jpg,,FALSE, +N1,59387,sortie-049f42db-c253-4b31-8d4f-4b4fc387c60f,https://biolit.fr/sorties/sortie-049f42db-c253-4b31-8d4f-4b4fc387c60f/,Classe env St Jo les Maristes,,03/12/2019,8.0000000,12.0000000,43.236046000000,5.359916000000,,Plage de le Bonne Brise,41177,observation-049f42db-c253-4b31-8d4f-4b4fc387c60f,https://biolit.fr/observations/observation-049f42db-c253-4b31-8d4f-4b4fc387c60f/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20190321-WA0026.jpg,,FALSE, +N1,59387,sortie-049f42db-c253-4b31-8d4f-4b4fc387c60f,https://biolit.fr/sorties/sortie-049f42db-c253-4b31-8d4f-4b4fc387c60f/,Classe env St Jo les Maristes,,03/12/2019,8.0000000,12.0000000,43.236046000000,5.359916000000,,Plage de le Bonne Brise,41179,observation-049f42db-c253-4b31-8d4f-4b4fc387c60f-2,https://biolit.fr/observations/observation-049f42db-c253-4b31-8d4f-4b4fc387c60f-2/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20190321-WA0024.jpg,,TRUE, +N1,59387,sortie-049f42db-c253-4b31-8d4f-4b4fc387c60f,https://biolit.fr/sorties/sortie-049f42db-c253-4b31-8d4f-4b4fc387c60f/,Classe env St Jo les Maristes,,03/12/2019,8.0000000,12.0000000,43.236046000000,5.359916000000,,Plage de le Bonne Brise,41181,observation-049f42db-c253-4b31-8d4f-4b4fc387c60f-3,https://biolit.fr/observations/observation-049f42db-c253-4b31-8d4f-4b4fc387c60f-3/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20190321-WA0004.jpg,,TRUE, +N1,59388,sortie-4273bb1e-6836-4f16-878a-b12a2b407559,https://biolit.fr/sorties/sortie-4273bb1e-6836-4f16-878a-b12a2b407559/,Classe env St Jo les Maristes,,03/12/2019,9.000005,11.0000000,43.299789000000,5.463149000000,,Plage de la Bonne Brise,,,,,,,,,, +N1,59389,sortie-558b771c-1705-4f90-ab80-a496c64ae4d0,https://biolit.fr/sorties/sortie-558b771c-1705-4f90-ab80-a496c64ae4d0/,Classe env St Jo les Maristes,,03/12/2019,9.000005,11.0000000,43.299789000000,5.375259000000,,Plage de la Bonne Brise,41185,observation-558b771c-1705-4f90-ab80-a496c64ae4d0,https://biolit.fr/observations/observation-558b771c-1705-4f90-ab80-a496c64ae4d0/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7978-scaled.jpg,,FALSE, +N1,59390,sortie-2e7f5ef2-978b-4306-82c0-5312b9cc6724,https://biolit.fr/sorties/sortie-2e7f5ef2-978b-4306-82c0-5312b9cc6724/,Classe env St Jo les Maristes,,03/12/2019,9.000005,11.0000000,43.236099000000,5.359884000000,,"Plage de la bonne Brise,Marseille",41187,observation-2e7f5ef2-978b-4306-82c0-5312b9cc6724,https://biolit.fr/observations/observation-2e7f5ef2-978b-4306-82c0-5312b9cc6724/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7977-scaled.jpg,,FALSE, +N1,59391,sortie-9fdde111-296c-47f1-83d7-cfad0bd306a8,https://biolit.fr/sorties/sortie-9fdde111-296c-47f1-83d7-cfad0bd306a8/,Classe env St Jo les Maristes,,3/20/2019 0:00,15.0000000,17.0000000,43.236042000000,5.360002000000,,Plage de la Bonne Brise,41189,observation-9fdde111-296c-47f1-83d7-cfad0bd306a8,https://biolit.fr/observations/observation-9fdde111-296c-47f1-83d7-cfad0bd306a8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190312_093328-scaled.jpg,,FALSE, +N1,59391,sortie-9fdde111-296c-47f1-83d7-cfad0bd306a8,https://biolit.fr/sorties/sortie-9fdde111-296c-47f1-83d7-cfad0bd306a8/,Classe env St Jo les Maristes,,3/20/2019 0:00,15.0000000,17.0000000,43.236042000000,5.360002000000,,Plage de la Bonne Brise,41191,observation-9fdde111-296c-47f1-83d7-cfad0bd306a8-2,https://biolit.fr/observations/observation-9fdde111-296c-47f1-83d7-cfad0bd306a8-2/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190312_093354-scaled.jpg,,TRUE, +N1,59391,sortie-9fdde111-296c-47f1-83d7-cfad0bd306a8,https://biolit.fr/sorties/sortie-9fdde111-296c-47f1-83d7-cfad0bd306a8/,Classe env St Jo les Maristes,,3/20/2019 0:00,15.0000000,17.0000000,43.236042000000,5.360002000000,,Plage de la Bonne Brise,41193,observation-9fdde111-296c-47f1-83d7-cfad0bd306a8-3,https://biolit.fr/observations/observation-9fdde111-296c-47f1-83d7-cfad0bd306a8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0093.JPG,,FALSE, +N1,59391,sortie-9fdde111-296c-47f1-83d7-cfad0bd306a8,https://biolit.fr/sorties/sortie-9fdde111-296c-47f1-83d7-cfad0bd306a8/,Classe env St Jo les Maristes,,3/20/2019 0:00,15.0000000,17.0000000,43.236042000000,5.360002000000,,Plage de la Bonne Brise,41195,observation-9fdde111-296c-47f1-83d7-cfad0bd306a8-4,https://biolit.fr/observations/observation-9fdde111-296c-47f1-83d7-cfad0bd306a8-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0097.JPG,,FALSE, +N1,59392,sortie-e069d964-df36-4e42-a881-89e29ea18e82,https://biolit.fr/sorties/sortie-e069d964-df36-4e42-a881-89e29ea18e82/,Phil,,11/24/2018 0:00,11.0000000,12.0:15,47.80027200000,-4.18023500000,,Loctudy - Finistère,41197,observation-e069d964-df36-4e42-a881-89e29ea18e82,https://biolit.fr/observations/observation-e069d964-df36-4e42-a881-89e29ea18e82/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181124_121547.jpg,,FALSE, +N1,59392,sortie-e069d964-df36-4e42-a881-89e29ea18e82,https://biolit.fr/sorties/sortie-e069d964-df36-4e42-a881-89e29ea18e82/,Phil,,11/24/2018 0:00,11.0000000,12.0:15,47.80027200000,-4.18023500000,,Loctudy - Finistère,41199,observation-e069d964-df36-4e42-a881-89e29ea18e82-2,https://biolit.fr/observations/observation-e069d964-df36-4e42-a881-89e29ea18e82-2/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/20181124_120629.jpg,,TRUE, +N1,59392,sortie-e069d964-df36-4e42-a881-89e29ea18e82,https://biolit.fr/sorties/sortie-e069d964-df36-4e42-a881-89e29ea18e82/,Phil,,11/24/2018 0:00,11.0000000,12.0:15,47.80027200000,-4.18023500000,,Loctudy - Finistère,41201,observation-e069d964-df36-4e42-a881-89e29ea18e82-3,https://biolit.fr/observations/observation-e069d964-df36-4e42-a881-89e29ea18e82-3/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/20181124_120927.jpg,,TRUE, +N1,59392,sortie-e069d964-df36-4e42-a881-89e29ea18e82,https://biolit.fr/sorties/sortie-e069d964-df36-4e42-a881-89e29ea18e82/,Phil,,11/24/2018 0:00,11.0000000,12.0:15,47.80027200000,-4.18023500000,,Loctudy - Finistère,41203,observation-e069d964-df36-4e42-a881-89e29ea18e82-4,https://biolit.fr/observations/observation-e069d964-df36-4e42-a881-89e29ea18e82-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181124_120842.jpg,,TRUE, +N1,59392,sortie-e069d964-df36-4e42-a881-89e29ea18e82,https://biolit.fr/sorties/sortie-e069d964-df36-4e42-a881-89e29ea18e82/,Phil,,11/24/2018 0:00,11.0000000,12.0:15,47.80027200000,-4.18023500000,,Loctudy - Finistère,41205,observation-e069d964-df36-4e42-a881-89e29ea18e82-5,https://biolit.fr/observations/observation-e069d964-df36-4e42-a881-89e29ea18e82-5/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20181124_115713.jpg,,TRUE, +N1,59392,sortie-e069d964-df36-4e42-a881-89e29ea18e82,https://biolit.fr/sorties/sortie-e069d964-df36-4e42-a881-89e29ea18e82/,Phil,,11/24/2018 0:00,11.0000000,12.0:15,47.80027200000,-4.18023500000,,Loctudy - Finistère,41207,observation-e069d964-df36-4e42-a881-89e29ea18e82-6,https://biolit.fr/observations/observation-e069d964-df36-4e42-a881-89e29ea18e82-6/,Balanus crenatus,Balane crénelée,,https://biolit.fr/wp-content/uploads/2023/07/20181124_120215.jpg,,TRUE, +N1,59392,sortie-e069d964-df36-4e42-a881-89e29ea18e82,https://biolit.fr/sorties/sortie-e069d964-df36-4e42-a881-89e29ea18e82/,Phil,,11/24/2018 0:00,11.0000000,12.0:15,47.80027200000,-4.18023500000,,Loctudy - Finistère,41209,observation-e069d964-df36-4e42-a881-89e29ea18e82-7,https://biolit.fr/observations/observation-e069d964-df36-4e42-a881-89e29ea18e82-7/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20181124_120230.jpg,,TRUE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41211,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC00132-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41213,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-2,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02016-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41215,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-3,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC00145-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41217,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-4,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02017-min_0-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41219,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-5,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02018-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41221,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-6,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02019-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41223,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-7,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02024-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41225,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-8,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02027-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41227,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-9,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02028-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41229,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-10,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02030-min_0-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41231,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-11,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02040-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41233,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-12,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02044-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41235,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-13,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02045-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41237,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-14,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02046-min_0-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41239,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-15,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02049-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41241,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-16,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02050-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41243,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-17,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02051-min_0-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41245,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-18,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02053-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41247,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-19,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02054-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41249,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-20,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02061-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41251,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-21,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02062-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41253,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-22,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02064-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41255,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-23,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02066-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41257,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-24,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02072-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41259,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-25,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02073-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41261,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-26,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02074-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41263,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-27,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02075-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41265,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-28,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02076-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41267,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-29,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0714-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41269,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-30,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0725-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41271,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-31,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0729-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41273,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-32,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0731-min-scaled.jpg,,FALSE, +N1,59393,sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc,https://biolit.fr/sorties/sortie-5b57319c-c3f9-488f-8f45-9c5a27013fcc/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333348000000,-61.328791000000,,"Le Moule, Plage de Morel",41275,observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-33,https://biolit.fr/observations/observation-5b57319c-c3f9-488f-8f45-9c5a27013fcc-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_E0709-min-scaled.jpg,,FALSE, +N1,59394,sortie-e0be0345-2398-463f-9a1e-3f107f8084ec,https://biolit.fr/sorties/sortie-e0be0345-2398-463f-9a1e-3f107f8084ec/,Phil,,12/26/2018 0:00,13.0:35,13.0:45,47.800019000000,-4.181023000000,,Loctudy - Finistère,41277,observation-e0be0345-2398-463f-9a1e-3f107f8084ec,https://biolit.fr/observations/observation-e0be0345-2398-463f-9a1e-3f107f8084ec/,Tethya citrina,Orange de mer de Manche Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20181226_133526.jpg,,TRUE, +N1,59394,sortie-e0be0345-2398-463f-9a1e-3f107f8084ec,https://biolit.fr/sorties/sortie-e0be0345-2398-463f-9a1e-3f107f8084ec/,Phil,,12/26/2018 0:00,13.0:35,13.0:45,47.800019000000,-4.181023000000,,Loctudy - Finistère,41279,observation-e0be0345-2398-463f-9a1e-3f107f8084ec-2,https://biolit.fr/observations/observation-e0be0345-2398-463f-9a1e-3f107f8084ec-2/,Tethya citrina,Orange de mer de Manche Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20181226_133555.jpg,,TRUE, +N1,59394,sortie-e0be0345-2398-463f-9a1e-3f107f8084ec,https://biolit.fr/sorties/sortie-e0be0345-2398-463f-9a1e-3f107f8084ec/,Phil,,12/26/2018 0:00,13.0:35,13.0:45,47.800019000000,-4.181023000000,,Loctudy - Finistère,41281,observation-e0be0345-2398-463f-9a1e-3f107f8084ec-3,https://biolit.fr/observations/observation-e0be0345-2398-463f-9a1e-3f107f8084ec-3/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20181226_134023.jpg,,TRUE, +N1,59394,sortie-e0be0345-2398-463f-9a1e-3f107f8084ec,https://biolit.fr/sorties/sortie-e0be0345-2398-463f-9a1e-3f107f8084ec/,Phil,,12/26/2018 0:00,13.0:35,13.0:45,47.800019000000,-4.181023000000,,Loctudy - Finistère,41283,observation-e0be0345-2398-463f-9a1e-3f107f8084ec-4,https://biolit.fr/observations/observation-e0be0345-2398-463f-9a1e-3f107f8084ec-4/,Aplysilla rosea,Aplysille rose,,https://biolit.fr/wp-content/uploads/2023/07/20181226_134037.jpg,,TRUE, +N1,59394,sortie-e0be0345-2398-463f-9a1e-3f107f8084ec,https://biolit.fr/sorties/sortie-e0be0345-2398-463f-9a1e-3f107f8084ec/,Phil,,12/26/2018 0:00,13.0:35,13.0:45,47.800019000000,-4.181023000000,,Loctudy - Finistère,41285,observation-e0be0345-2398-463f-9a1e-3f107f8084ec-5,https://biolit.fr/observations/observation-e0be0345-2398-463f-9a1e-3f107f8084ec-5/,Lomentaria articulata,Algue saucisson,,https://biolit.fr/wp-content/uploads/2023/07/20181226_134052.jpg,,TRUE, +N1,59394,sortie-e0be0345-2398-463f-9a1e-3f107f8084ec,https://biolit.fr/sorties/sortie-e0be0345-2398-463f-9a1e-3f107f8084ec/,Phil,,12/26/2018 0:00,13.0:35,13.0:45,47.800019000000,-4.181023000000,,Loctudy - Finistère,41287,observation-e0be0345-2398-463f-9a1e-3f107f8084ec-6,https://biolit.fr/observations/observation-e0be0345-2398-463f-9a1e-3f107f8084ec-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_134458.jpg,,FALSE, +N1,59395,sortie-c681d1b0-369d-4e09-b781-a24dd9314426,https://biolit.fr/sorties/sortie-c681d1b0-369d-4e09-b781-a24dd9314426/,Classe env St Jo les Maristes,,03/12/2019,9.0:25,10.0000000,43.231618000000,5.352932000000,,Plage de la Bonne Brise (ou de la Verrerie),41289,observation-c681d1b0-369d-4e09-b781-a24dd9314426,https://biolit.fr/observations/observation-c681d1b0-369d-4e09-b781-a24dd9314426/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5697-scaled.jpeg,,FALSE, +N1,59396,sortie-6df1b849-8035-4133-84c2-3e581b35f47c,https://biolit.fr/sorties/sortie-6df1b849-8035-4133-84c2-3e581b35f47c/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333310000000,-61.328780000000,,"AME les profs de la nature sur la plage de Morel, Le Moule",41291,observation-6df1b849-8035-4133-84c2-3e581b35f47c,https://biolit.fr/observations/observation-6df1b849-8035-4133-84c2-3e581b35f47c/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02017-min-scaled.jpg,,FALSE, +N1,59396,sortie-6df1b849-8035-4133-84c2-3e581b35f47c,https://biolit.fr/sorties/sortie-6df1b849-8035-4133-84c2-3e581b35f47c/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333310000000,-61.328780000000,,"AME les profs de la nature sur la plage de Morel, Le Moule",41293,observation-6df1b849-8035-4133-84c2-3e581b35f47c-2,https://biolit.fr/observations/observation-6df1b849-8035-4133-84c2-3e581b35f47c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02030-min-scaled.jpg,,FALSE, +N1,59396,sortie-6df1b849-8035-4133-84c2-3e581b35f47c,https://biolit.fr/sorties/sortie-6df1b849-8035-4133-84c2-3e581b35f47c/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333310000000,-61.328780000000,,"AME les profs de la nature sur la plage de Morel, Le Moule",41295,observation-6df1b849-8035-4133-84c2-3e581b35f47c-3,https://biolit.fr/observations/observation-6df1b849-8035-4133-84c2-3e581b35f47c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02046-min-scaled.jpg,,FALSE, +N1,59396,sortie-6df1b849-8035-4133-84c2-3e581b35f47c,https://biolit.fr/sorties/sortie-6df1b849-8035-4133-84c2-3e581b35f47c/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333310000000,-61.328780000000,,"AME les profs de la nature sur la plage de Morel, Le Moule",41297,observation-6df1b849-8035-4133-84c2-3e581b35f47c-4,https://biolit.fr/observations/observation-6df1b849-8035-4133-84c2-3e581b35f47c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02051-min-scaled.jpg,,TRUE,non-identifiable +N1,59396,sortie-6df1b849-8035-4133-84c2-3e581b35f47c,https://biolit.fr/sorties/sortie-6df1b849-8035-4133-84c2-3e581b35f47c/,Ecole de la mer,,2/21/2019 0:00,13.0000000,15.0:25,16.333310000000,-61.328780000000,,"AME les profs de la nature sur la plage de Morel, Le Moule",41299,observation-6df1b849-8035-4133-84c2-3e581b35f47c-5,https://biolit.fr/observations/observation-6df1b849-8035-4133-84c2-3e581b35f47c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02063-min-scaled.jpg,,FALSE, +N1,59397,sortie-21c55830-87eb-4a65-989b-76f4e97ce9dd,https://biolit.fr/sorties/sortie-21c55830-87eb-4a65-989b-76f4e97ce9dd/,Ecole de la mer,,2/21/2019 0:00,9.0:15,11.0:15,16.333186000000,-61.328549000000,,AME Les profs de la nature à la plage de morel,41301,observation-21c55830-87eb-4a65-989b-76f4e97ce9dd,https://biolit.fr/observations/observation-21c55830-87eb-4a65-989b-76f4e97ce9dd/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC01973-min-scaled.jpg,,FALSE, +N1,59397,sortie-21c55830-87eb-4a65-989b-76f4e97ce9dd,https://biolit.fr/sorties/sortie-21c55830-87eb-4a65-989b-76f4e97ce9dd/,Ecole de la mer,,2/21/2019 0:00,9.0:15,11.0:15,16.333186000000,-61.328549000000,,AME Les profs de la nature à la plage de morel,41303,observation-21c55830-87eb-4a65-989b-76f4e97ce9dd-2,https://biolit.fr/observations/observation-21c55830-87eb-4a65-989b-76f4e97ce9dd-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC01987-min-scaled.jpg,,FALSE, +N1,59397,sortie-21c55830-87eb-4a65-989b-76f4e97ce9dd,https://biolit.fr/sorties/sortie-21c55830-87eb-4a65-989b-76f4e97ce9dd/,Ecole de la mer,,2/21/2019 0:00,9.0:15,11.0:15,16.333186000000,-61.328549000000,,AME Les profs de la nature à la plage de morel,41305,observation-21c55830-87eb-4a65-989b-76f4e97ce9dd-3,https://biolit.fr/observations/observation-21c55830-87eb-4a65-989b-76f4e97ce9dd-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC01990-min-scaled.jpg,,FALSE, +N1,59397,sortie-21c55830-87eb-4a65-989b-76f4e97ce9dd,https://biolit.fr/sorties/sortie-21c55830-87eb-4a65-989b-76f4e97ce9dd/,Ecole de la mer,,2/21/2019 0:00,9.0:15,11.0:15,16.333186000000,-61.328549000000,,AME Les profs de la nature à la plage de morel,41307,observation-21c55830-87eb-4a65-989b-76f4e97ce9dd-4,https://biolit.fr/observations/observation-21c55830-87eb-4a65-989b-76f4e97ce9dd-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC01991-min-scaled.jpg,,FALSE, +N1,59397,sortie-21c55830-87eb-4a65-989b-76f4e97ce9dd,https://biolit.fr/sorties/sortie-21c55830-87eb-4a65-989b-76f4e97ce9dd/,Ecole de la mer,,2/21/2019 0:00,9.0:15,11.0:15,16.333186000000,-61.328549000000,,AME Les profs de la nature à la plage de morel,41309,observation-21c55830-87eb-4a65-989b-76f4e97ce9dd-5,https://biolit.fr/observations/observation-21c55830-87eb-4a65-989b-76f4e97ce9dd-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02011-min_0-scaled.jpg,,FALSE, +N1,59398,sortie-6ba18c8c-72ae-43d6-a8a8-0e9da0ccacc1,https://biolit.fr/sorties/sortie-6ba18c8c-72ae-43d6-a8a8-0e9da0ccacc1/,Phil,,03/08/2019,12.0:55,13.0000000,47.792315000000,-4.286097000000,,Guilvinec - Finistère,41311,observation-6ba18c8c-72ae-43d6-a8a8-0e9da0ccacc1,https://biolit.fr/observations/observation-6ba18c8c-72ae-43d6-a8a8-0e9da0ccacc1/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190308_125839.jpg,,FALSE, +N1,59398,sortie-6ba18c8c-72ae-43d6-a8a8-0e9da0ccacc1,https://biolit.fr/sorties/sortie-6ba18c8c-72ae-43d6-a8a8-0e9da0ccacc1/,Phil,,03/08/2019,12.0:55,13.0000000,47.792315000000,-4.286097000000,,Guilvinec - Finistère,41313,observation-6ba18c8c-72ae-43d6-a8a8-0e9da0ccacc1-2,https://biolit.fr/observations/observation-6ba18c8c-72ae-43d6-a8a8-0e9da0ccacc1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190308_125845.jpg,,FALSE, +N1,59398,sortie-6ba18c8c-72ae-43d6-a8a8-0e9da0ccacc1,https://biolit.fr/sorties/sortie-6ba18c8c-72ae-43d6-a8a8-0e9da0ccacc1/,Phil,,03/08/2019,12.0:55,13.0000000,47.792315000000,-4.286097000000,,Guilvinec - Finistère,41315,observation-6ba18c8c-72ae-43d6-a8a8-0e9da0ccacc1-3,https://biolit.fr/observations/observation-6ba18c8c-72ae-43d6-a8a8-0e9da0ccacc1-3/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20190308_125711.jpg,,TRUE, +N1,59398,sortie-6ba18c8c-72ae-43d6-a8a8-0e9da0ccacc1,https://biolit.fr/sorties/sortie-6ba18c8c-72ae-43d6-a8a8-0e9da0ccacc1/,Phil,,03/08/2019,12.0:55,13.0000000,47.792315000000,-4.286097000000,,Guilvinec - Finistère,41317,observation-6ba18c8c-72ae-43d6-a8a8-0e9da0ccacc1-4,https://biolit.fr/observations/observation-6ba18c8c-72ae-43d6-a8a8-0e9da0ccacc1-4/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20190308_125916.jpg,,TRUE, +N1,59399,sortie-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73,https://biolit.fr/sorties/sortie-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73/,Phil,,12/26/2018 0:00,13.0000000,13.0:35,47.797377000000,-4.177431000000,,Loctudy - Finistère,41319,observation-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73,https://biolit.fr/observations/observation-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73/,Aplysilla sulfurea,Aplysille jaune soufre,,https://biolit.fr/wp-content/uploads/2023/07/20181226_132959.jpg,,TRUE, +N1,59399,sortie-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73,https://biolit.fr/sorties/sortie-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73/,Phil,,12/26/2018 0:00,13.0000000,13.0:35,47.797377000000,-4.177431000000,,Loctudy - Finistère,41321,observation-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73-2,https://biolit.fr/observations/observation-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73-2/,Aplysilla rosea,Aplysille rose,,https://biolit.fr/wp-content/uploads/2023/07/20181226_133007.jpg,,TRUE, +N1,59399,sortie-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73,https://biolit.fr/sorties/sortie-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73/,Phil,,12/26/2018 0:00,13.0000000,13.0:35,47.797377000000,-4.177431000000,,Loctudy - Finistère,41323,observation-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73-3,https://biolit.fr/observations/observation-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73-3/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20181226_133251.jpg,,TRUE, +N1,59399,sortie-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73,https://biolit.fr/sorties/sortie-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73/,Phil,,12/26/2018 0:00,13.0000000,13.0:35,47.797377000000,-4.177431000000,,Loctudy - Finistère,41325,observation-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73-4,https://biolit.fr/observations/observation-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73-4/,Mastocarpus stellatus,Gigartine,,https://biolit.fr/wp-content/uploads/2023/07/20181226_133325.jpg,,TRUE, +N1,59399,sortie-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73,https://biolit.fr/sorties/sortie-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73/,Phil,,12/26/2018 0:00,13.0000000,13.0:35,47.797377000000,-4.177431000000,,Loctudy - Finistère,41327,observation-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73-5,https://biolit.fr/observations/observation-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73-5/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20181226_133425.jpg,,TRUE, +N1,59399,sortie-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73,https://biolit.fr/sorties/sortie-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73/,Phil,,12/26/2018 0:00,13.0000000,13.0:35,47.797377000000,-4.177431000000,,Loctudy - Finistère,41329,observation-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73-6,https://biolit.fr/observations/observation-cd8b8dee-fcae-47ae-b57a-8183b2bb8c73-6/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/20181226_133449.jpg,,TRUE, +N1,59400,sortie-83223cff-0364-4334-bbb0-856f1d7b2df5,https://biolit.fr/sorties/sortie-83223cff-0364-4334-bbb0-856f1d7b2df5/,RBBBM,,2/23/2019 0:00,13.0000000,15.0000000,50.958175000000,-2.24925300000,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),Moëlan sur mer plage de Trenez,41331,observation-83223cff-0364-4334-bbb0-856f1d7b2df5,https://biolit.fr/observations/observation-83223cff-0364-4334-bbb0-856f1d7b2df5/,Patella pellucida,Helcion,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3402.JPG,,TRUE, +N1,59400,sortie-83223cff-0364-4334-bbb0-856f1d7b2df5,https://biolit.fr/sorties/sortie-83223cff-0364-4334-bbb0-856f1d7b2df5/,RBBBM,,2/23/2019 0:00,13.0000000,15.0000000,50.958175000000,-2.24925300000,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),Moëlan sur mer plage de Trenez,41333,observation-83223cff-0364-4334-bbb0-856f1d7b2df5-2,https://biolit.fr/observations/observation-83223cff-0364-4334-bbb0-856f1d7b2df5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/ponte jaune mollsque TR .JPG,,FALSE, +N1,59400,sortie-83223cff-0364-4334-bbb0-856f1d7b2df5,https://biolit.fr/sorties/sortie-83223cff-0364-4334-bbb0-856f1d7b2df5/,RBBBM,,2/23/2019 0:00,13.0000000,15.0000000,50.958175000000,-2.24925300000,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),Moëlan sur mer plage de Trenez,41335,observation-83223cff-0364-4334-bbb0-856f1d7b2df5-3,https://biolit.fr/observations/observation-83223cff-0364-4334-bbb0-856f1d7b2df5-3/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/pousses d'Himanthalle .JPG,,TRUE, +N1,59400,sortie-83223cff-0364-4334-bbb0-856f1d7b2df5,https://biolit.fr/sorties/sortie-83223cff-0364-4334-bbb0-856f1d7b2df5/,RBBBM,,2/23/2019 0:00,13.0000000,15.0000000,50.958175000000,-2.24925300000,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),Moëlan sur mer plage de Trenez,41337,observation-83223cff-0364-4334-bbb0-856f1d7b2df5-4,https://biolit.fr/observations/observation-83223cff-0364-4334-bbb0-856f1d7b2df5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3424.JPG,,FALSE, +N1,59400,sortie-83223cff-0364-4334-bbb0-856f1d7b2df5,https://biolit.fr/sorties/sortie-83223cff-0364-4334-bbb0-856f1d7b2df5/,RBBBM,,2/23/2019 0:00,13.0000000,15.0000000,50.958175000000,-2.24925300000,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),Moëlan sur mer plage de Trenez,41339,observation-83223cff-0364-4334-bbb0-856f1d7b2df5-5,https://biolit.fr/observations/observation-83223cff-0364-4334-bbb0-856f1d7b2df5-5/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3416.JPG,,TRUE, +N1,59400,sortie-83223cff-0364-4334-bbb0-856f1d7b2df5,https://biolit.fr/sorties/sortie-83223cff-0364-4334-bbb0-856f1d7b2df5/,RBBBM,,2/23/2019 0:00,13.0000000,15.0000000,50.958175000000,-2.24925300000,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),Moëlan sur mer plage de Trenez,41341,observation-83223cff-0364-4334-bbb0-856f1d7b2df5-6,https://biolit.fr/observations/observation-83223cff-0364-4334-bbb0-856f1d7b2df5-6/,Schizoporella unicornis,Schizoporella unicorne,,https://biolit.fr/wp-content/uploads/2023/07/ponte Limace Tr .JPG,,TRUE, +N1,59401,sortie-3360666e-562a-4b05-b74f-340b6adc6cb5,https://biolit.fr/sorties/sortie-3360666e-562a-4b05-b74f-340b6adc6cb5/,Phil,,03/06/2019,13.0:25,13.0000000,47.850874000000,-4.021725000000,,Mousterlin - Finistère,41343,observation-3360666e-562a-4b05-b74f-340b6adc6cb5,https://biolit.fr/observations/observation-3360666e-562a-4b05-b74f-340b6adc6cb5/,Delphinus delphis,Dauphin commun,,https://biolit.fr/wp-content/uploads/2023/07/Image3.jpg,,TRUE, +N1,59401,sortie-3360666e-562a-4b05-b74f-340b6adc6cb5,https://biolit.fr/sorties/sortie-3360666e-562a-4b05-b74f-340b6adc6cb5/,Phil,,03/06/2019,13.0:25,13.0000000,47.850874000000,-4.021725000000,,Mousterlin - Finistère,41345,observation-3360666e-562a-4b05-b74f-340b6adc6cb5-2,https://biolit.fr/observations/observation-3360666e-562a-4b05-b74f-340b6adc6cb5-2/,Delphinus delphis,Dauphin commun,,https://biolit.fr/wp-content/uploads/2023/07/20190306_132756.jpg,,TRUE, +N1,59401,sortie-3360666e-562a-4b05-b74f-340b6adc6cb5,https://biolit.fr/sorties/sortie-3360666e-562a-4b05-b74f-340b6adc6cb5/,Phil,,03/06/2019,13.0:25,13.0000000,47.850874000000,-4.021725000000,,Mousterlin - Finistère,41347,observation-3360666e-562a-4b05-b74f-340b6adc6cb5-3,https://biolit.fr/observations/observation-3360666e-562a-4b05-b74f-340b6adc6cb5-3/,Delphinus delphis,Dauphin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120435.JPG,,TRUE, +N1,59401,sortie-3360666e-562a-4b05-b74f-340b6adc6cb5,https://biolit.fr/sorties/sortie-3360666e-562a-4b05-b74f-340b6adc6cb5/,Phil,,03/06/2019,13.0:25,13.0000000,47.850874000000,-4.021725000000,,Mousterlin - Finistère,41349,observation-3360666e-562a-4b05-b74f-340b6adc6cb5-4,https://biolit.fr/observations/observation-3360666e-562a-4b05-b74f-340b6adc6cb5-4/,Delphinus delphis,Dauphin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120468.JPG,,TRUE, +N1,59401,sortie-3360666e-562a-4b05-b74f-340b6adc6cb5,https://biolit.fr/sorties/sortie-3360666e-562a-4b05-b74f-340b6adc6cb5/,Phil,,03/06/2019,13.0:25,13.0000000,47.850874000000,-4.021725000000,,Mousterlin - Finistère,41351,observation-3360666e-562a-4b05-b74f-340b6adc6cb5-5,https://biolit.fr/observations/observation-3360666e-562a-4b05-b74f-340b6adc6cb5-5/,Delphinus delphis,Dauphin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120457.JPG,,TRUE, +N1,59401,sortie-3360666e-562a-4b05-b74f-340b6adc6cb5,https://biolit.fr/sorties/sortie-3360666e-562a-4b05-b74f-340b6adc6cb5/,Phil,,03/06/2019,13.0:25,13.0000000,47.850874000000,-4.021725000000,,Mousterlin - Finistère,41353,observation-3360666e-562a-4b05-b74f-340b6adc6cb5-6,https://biolit.fr/observations/observation-3360666e-562a-4b05-b74f-340b6adc6cb5-6/,Delphinus delphis,Dauphin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120463.JPG,,TRUE, +N1,59401,sortie-3360666e-562a-4b05-b74f-340b6adc6cb5,https://biolit.fr/sorties/sortie-3360666e-562a-4b05-b74f-340b6adc6cb5/,Phil,,03/06/2019,13.0:25,13.0000000,47.850874000000,-4.021725000000,,Mousterlin - Finistère,41355,observation-3360666e-562a-4b05-b74f-340b6adc6cb5-7,https://biolit.fr/observations/observation-3360666e-562a-4b05-b74f-340b6adc6cb5-7/,Delphinus delphis,Dauphin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1120448.JPG,,TRUE, +N1,59403,sortie-46481756-c9ee-4af0-a776-37aedeba208e,https://biolit.fr/sorties/sortie-46481756-c9ee-4af0-a776-37aedeba208e/,Phil,,11/24/2018 0:00,11.0000000,11.0000000,47.798815000000,-4.18009600000,,Loctudy - Finistère,41395,observation-46481756-c9ee-4af0-a776-37aedeba208e,https://biolit.fr/observations/observation-46481756-c9ee-4af0-a776-37aedeba208e/,Mesophyllum lichenoides,Mésophylle lichenoïde,,https://biolit.fr/wp-content/uploads/2023/07/20181124_115030.jpg,,TRUE, +N1,59403,sortie-46481756-c9ee-4af0-a776-37aedeba208e,https://biolit.fr/sorties/sortie-46481756-c9ee-4af0-a776-37aedeba208e/,Phil,,11/24/2018 0:00,11.0000000,11.0000000,47.798815000000,-4.18009600000,,Loctudy - Finistère,41397,observation-46481756-c9ee-4af0-a776-37aedeba208e-2,https://biolit.fr/observations/observation-46481756-c9ee-4af0-a776-37aedeba208e-2/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/20181124_114036.jpg,,TRUE, +N1,59403,sortie-46481756-c9ee-4af0-a776-37aedeba208e,https://biolit.fr/sorties/sortie-46481756-c9ee-4af0-a776-37aedeba208e/,Phil,,11/24/2018 0:00,11.0000000,11.0000000,47.798815000000,-4.18009600000,,Loctudy - Finistère,41399,observation-46481756-c9ee-4af0-a776-37aedeba208e-3,https://biolit.fr/observations/observation-46481756-c9ee-4af0-a776-37aedeba208e-3/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/20181124_113956.jpg,,TRUE, +N1,59403,sortie-46481756-c9ee-4af0-a776-37aedeba208e,https://biolit.fr/sorties/sortie-46481756-c9ee-4af0-a776-37aedeba208e/,Phil,,11/24/2018 0:00,11.0000000,11.0000000,47.798815000000,-4.18009600000,,Loctudy - Finistère,41401,observation-46481756-c9ee-4af0-a776-37aedeba208e-4,https://biolit.fr/observations/observation-46481756-c9ee-4af0-a776-37aedeba208e-4/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181124_113915.jpg,,TRUE, +N1,59404,sortie-88e152da-8159-48fa-bb9f-31acf1325d4b,https://biolit.fr/sorties/sortie-88e152da-8159-48fa-bb9f-31acf1325d4b/,Epi Pidou,,7/29/2018 0:00,15.0000000,17.0000000,51.055199000000,2.444312000000,,Malo-les-bains,41403,observation-88e152da-8159-48fa-bb9f-31acf1325d4b,https://biolit.fr/observations/observation-88e152da-8159-48fa-bb9f-31acf1325d4b/,,,,https://biolit.fr/wp-content/uploads/2023/07/mouette.PNG,,FALSE, +N1,59405,sortie-1499b493-9e44-4d4c-93c9-5ebced510313,https://biolit.fr/sorties/sortie-1499b493-9e44-4d4c-93c9-5ebced510313/,Phil,,12/26/2018 0:00,13.0000000,13.0000000,47.796375000000,-4.177929000000,,Loctudy - Finistère,41405,observation-1499b493-9e44-4d4c-93c9-5ebced510313,https://biolit.fr/observations/observation-1499b493-9e44-4d4c-93c9-5ebced510313/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_130842.jpg,,TRUE, +N1,59405,sortie-1499b493-9e44-4d4c-93c9-5ebced510313,https://biolit.fr/sorties/sortie-1499b493-9e44-4d4c-93c9-5ebced510313/,Phil,,12/26/2018 0:00,13.0000000,13.0000000,47.796375000000,-4.177929000000,,Loctudy - Finistère,41407,observation-1499b493-9e44-4d4c-93c9-5ebced510313-2,https://biolit.fr/observations/observation-1499b493-9e44-4d4c-93c9-5ebced510313-2/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_130943.jpg,,TRUE, +N1,59405,sortie-1499b493-9e44-4d4c-93c9-5ebced510313,https://biolit.fr/sorties/sortie-1499b493-9e44-4d4c-93c9-5ebced510313/,Phil,,12/26/2018 0:00,13.0000000,13.0000000,47.796375000000,-4.177929000000,,Loctudy - Finistère,41409,observation-1499b493-9e44-4d4c-93c9-5ebced510313-3,https://biolit.fr/observations/observation-1499b493-9e44-4d4c-93c9-5ebced510313-3/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_131012.jpg,,TRUE, +N1,59405,sortie-1499b493-9e44-4d4c-93c9-5ebced510313,https://biolit.fr/sorties/sortie-1499b493-9e44-4d4c-93c9-5ebced510313/,Phil,,12/26/2018 0:00,13.0000000,13.0000000,47.796375000000,-4.177929000000,,Loctudy - Finistère,41411,observation-1499b493-9e44-4d4c-93c9-5ebced510313-4,https://biolit.fr/observations/observation-1499b493-9e44-4d4c-93c9-5ebced510313-4/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20181226_131051.jpg,,TRUE, +N1,59405,sortie-1499b493-9e44-4d4c-93c9-5ebced510313,https://biolit.fr/sorties/sortie-1499b493-9e44-4d4c-93c9-5ebced510313/,Phil,,12/26/2018 0:00,13.0000000,13.0000000,47.796375000000,-4.177929000000,,Loctudy - Finistère,41413,observation-1499b493-9e44-4d4c-93c9-5ebced510313-5,https://biolit.fr/observations/observation-1499b493-9e44-4d4c-93c9-5ebced510313-5/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_131119.jpg,,TRUE, +N1,59405,sortie-1499b493-9e44-4d4c-93c9-5ebced510313,https://biolit.fr/sorties/sortie-1499b493-9e44-4d4c-93c9-5ebced510313/,Phil,,12/26/2018 0:00,13.0000000,13.0000000,47.796375000000,-4.177929000000,,Loctudy - Finistère,41415,observation-1499b493-9e44-4d4c-93c9-5ebced510313-6,https://biolit.fr/observations/observation-1499b493-9e44-4d4c-93c9-5ebced510313-6/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_131149.jpg,,TRUE, +N1,59405,sortie-1499b493-9e44-4d4c-93c9-5ebced510313,https://biolit.fr/sorties/sortie-1499b493-9e44-4d4c-93c9-5ebced510313/,Phil,,12/26/2018 0:00,13.0000000,13.0000000,47.796375000000,-4.177929000000,,Loctudy - Finistère,41417,observation-1499b493-9e44-4d4c-93c9-5ebced510313-7,https://biolit.fr/observations/observation-1499b493-9e44-4d4c-93c9-5ebced510313-7/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181226_131219.jpg,,TRUE, +N1,59405,sortie-1499b493-9e44-4d4c-93c9-5ebced510313,https://biolit.fr/sorties/sortie-1499b493-9e44-4d4c-93c9-5ebced510313/,Phil,,12/26/2018 0:00,13.0000000,13.0000000,47.796375000000,-4.177929000000,,Loctudy - Finistère,41419,observation-1499b493-9e44-4d4c-93c9-5ebced510313-8,https://biolit.fr/observations/observation-1499b493-9e44-4d4c-93c9-5ebced510313-8/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_131258.jpg,,TRUE, +N1,59406,sortie-811d2916-f07c-4496-bf70-0259f6aabd2b,https://biolit.fr/sorties/sortie-811d2916-f07c-4496-bf70-0259f6aabd2b/,Alice BAUDOT,,2/28/2019 0:00,14.0000000,18.0000000,46.894087000000,0.511561000000,,Perreire,41421,observation-811d2916-f07c-4496-bf70-0259f6aabd2b,https://biolit.fr/observations/observation-811d2916-f07c-4496-bf70-0259f6aabd2b/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190228_161215-scaled.jpg,,TRUE, +N1,59406,sortie-811d2916-f07c-4496-bf70-0259f6aabd2b,https://biolit.fr/sorties/sortie-811d2916-f07c-4496-bf70-0259f6aabd2b/,Alice BAUDOT,,2/28/2019 0:00,14.0000000,18.0000000,46.894087000000,0.511561000000,,Perreire,41423,observation-811d2916-f07c-4496-bf70-0259f6aabd2b-2,https://biolit.fr/observations/observation-811d2916-f07c-4496-bf70-0259f6aabd2b-2/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190228_161058_0-scaled.jpg,,TRUE, +N1,59406,sortie-811d2916-f07c-4496-bf70-0259f6aabd2b,https://biolit.fr/sorties/sortie-811d2916-f07c-4496-bf70-0259f6aabd2b/,Alice BAUDOT,,2/28/2019 0:00,14.0000000,18.0000000,46.894087000000,0.511561000000,,Perreire,41425,observation-811d2916-f07c-4496-bf70-0259f6aabd2b-3,https://biolit.fr/observations/observation-811d2916-f07c-4496-bf70-0259f6aabd2b-3/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190228_153051-scaled.jpg,,TRUE, +N1,59406,sortie-811d2916-f07c-4496-bf70-0259f6aabd2b,https://biolit.fr/sorties/sortie-811d2916-f07c-4496-bf70-0259f6aabd2b/,Alice BAUDOT,,2/28/2019 0:00,14.0000000,18.0000000,46.894087000000,0.511561000000,,Perreire,41427,observation-811d2916-f07c-4496-bf70-0259f6aabd2b-4,https://biolit.fr/observations/observation-811d2916-f07c-4496-bf70-0259f6aabd2b-4/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190228_152053-scaled.jpg,,TRUE, +N1,59406,sortie-811d2916-f07c-4496-bf70-0259f6aabd2b,https://biolit.fr/sorties/sortie-811d2916-f07c-4496-bf70-0259f6aabd2b/,Alice BAUDOT,,2/28/2019 0:00,14.0000000,18.0000000,46.894087000000,0.511561000000,,Perreire,41429,observation-811d2916-f07c-4496-bf70-0259f6aabd2b-5,https://biolit.fr/observations/observation-811d2916-f07c-4496-bf70-0259f6aabd2b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190219_171746-scaled.jpg,,FALSE, +N1,59406,sortie-811d2916-f07c-4496-bf70-0259f6aabd2b,https://biolit.fr/sorties/sortie-811d2916-f07c-4496-bf70-0259f6aabd2b/,Alice BAUDOT,,2/28/2019 0:00,14.0000000,18.0000000,46.894087000000,0.511561000000,,Perreire,41431,observation-811d2916-f07c-4496-bf70-0259f6aabd2b-6,https://biolit.fr/observations/observation-811d2916-f07c-4496-bf70-0259f6aabd2b-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190228_152851-scaled.jpg,,FALSE, +N1,59407,sortie-e56df07b-292e-4466-ba44-ba9904105375,https://biolit.fr/sorties/sortie-e56df07b-292e-4466-ba44-ba9904105375/,Alice BAUDOT,,2/21/2019 0:00,14.0:15,18.0:15,45.529251000000,0.542814000000,,Perreire,41433,observation-e56df07b-292e-4466-ba44-ba9904105375,https://biolit.fr/observations/observation-e56df07b-292e-4466-ba44-ba9904105375/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20190228_153433-scaled.jpg,,TRUE, +N1,59408,sortie-101f06a0-6742-4d8e-b85b-5285ee3dd7cf,https://biolit.fr/sorties/sortie-101f06a0-6742-4d8e-b85b-5285ee3dd7cf/,Phil,,7/16/2018 0:00,13.0000000,13.0000000,47.809394000000,-3.711962000000,,Moëllan-sur-Mer - Finistère,41435,observation-101f06a0-6742-4d8e-b85b-5285ee3dd7cf,https://biolit.fr/observations/observation-101f06a0-6742-4d8e-b85b-5285ee3dd7cf/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1110810.JPG,,TRUE, +N1,59408,sortie-101f06a0-6742-4d8e-b85b-5285ee3dd7cf,https://biolit.fr/sorties/sortie-101f06a0-6742-4d8e-b85b-5285ee3dd7cf/,Phil,,7/16/2018 0:00,13.0000000,13.0000000,47.809394000000,-3.711962000000,,Moëllan-sur-Mer - Finistère,41437,observation-101f06a0-6742-4d8e-b85b-5285ee3dd7cf-2,https://biolit.fr/observations/observation-101f06a0-6742-4d8e-b85b-5285ee3dd7cf-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110804.JPG,,FALSE, +N1,59408,sortie-101f06a0-6742-4d8e-b85b-5285ee3dd7cf,https://biolit.fr/sorties/sortie-101f06a0-6742-4d8e-b85b-5285ee3dd7cf/,Phil,,7/16/2018 0:00,13.0000000,13.0000000,47.809394000000,-3.711962000000,,Moëllan-sur-Mer - Finistère,41439,observation-101f06a0-6742-4d8e-b85b-5285ee3dd7cf-3,https://biolit.fr/observations/observation-101f06a0-6742-4d8e-b85b-5285ee3dd7cf-3/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/P1110802.JPG,,TRUE, +N1,59408,sortie-101f06a0-6742-4d8e-b85b-5285ee3dd7cf,https://biolit.fr/sorties/sortie-101f06a0-6742-4d8e-b85b-5285ee3dd7cf/,Phil,,7/16/2018 0:00,13.0000000,13.0000000,47.809394000000,-3.711962000000,,Moëllan-sur-Mer - Finistère,41441,observation-101f06a0-6742-4d8e-b85b-5285ee3dd7cf-4,https://biolit.fr/observations/observation-101f06a0-6742-4d8e-b85b-5285ee3dd7cf-4/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/P1110800.JPG,,TRUE, +N1,59408,sortie-101f06a0-6742-4d8e-b85b-5285ee3dd7cf,https://biolit.fr/sorties/sortie-101f06a0-6742-4d8e-b85b-5285ee3dd7cf/,Phil,,7/16/2018 0:00,13.0000000,13.0000000,47.809394000000,-3.711962000000,,Moëllan-sur-Mer - Finistère,41443,observation-101f06a0-6742-4d8e-b85b-5285ee3dd7cf-5,https://biolit.fr/observations/observation-101f06a0-6742-4d8e-b85b-5285ee3dd7cf-5/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110798.JPG,,TRUE, +N1,59408,sortie-101f06a0-6742-4d8e-b85b-5285ee3dd7cf,https://biolit.fr/sorties/sortie-101f06a0-6742-4d8e-b85b-5285ee3dd7cf/,Phil,,7/16/2018 0:00,13.0000000,13.0000000,47.809394000000,-3.711962000000,,Moëllan-sur-Mer - Finistère,41445,observation-101f06a0-6742-4d8e-b85b-5285ee3dd7cf-6,https://biolit.fr/observations/observation-101f06a0-6742-4d8e-b85b-5285ee3dd7cf-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110797.JPG,,FALSE, +N1,59409,sortie-13538699-32b1-45c2-856d-883059d0ef05,https://biolit.fr/sorties/sortie-13538699-32b1-45c2-856d-883059d0ef05/,Jessica bourcillier,,2/26/2019 0:00,15.0000000,15.0000000,44.549286000000,-1.249154000000,,plage du Petit Nice à la Teste de Buch,41447,observation-13538699-32b1-45c2-856d-883059d0ef05,https://biolit.fr/observations/observation-13538699-32b1-45c2-856d-883059d0ef05/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/sabot.jpg,,TRUE, +N1,59409,sortie-13538699-32b1-45c2-856d-883059d0ef05,https://biolit.fr/sorties/sortie-13538699-32b1-45c2-856d-883059d0ef05/,Jessica bourcillier,,2/26/2019 0:00,15.0000000,15.0000000,44.549286000000,-1.249154000000,,plage du Petit Nice à la Teste de Buch,41449,observation-13538699-32b1-45c2-856d-883059d0ef05-2,https://biolit.fr/observations/observation-13538699-32b1-45c2-856d-883059d0ef05-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue 4.jpg,,FALSE, +N1,59409,sortie-13538699-32b1-45c2-856d-883059d0ef05,https://biolit.fr/sorties/sortie-13538699-32b1-45c2-856d-883059d0ef05/,Jessica bourcillier,,2/26/2019 0:00,15.0000000,15.0000000,44.549286000000,-1.249154000000,,plage du Petit Nice à la Teste de Buch,41451,observation-13538699-32b1-45c2-856d-883059d0ef05-3,https://biolit.fr/observations/observation-13538699-32b1-45c2-856d-883059d0ef05-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue 3.jpg,,FALSE, +N1,59409,sortie-13538699-32b1-45c2-856d-883059d0ef05,https://biolit.fr/sorties/sortie-13538699-32b1-45c2-856d-883059d0ef05/,Jessica bourcillier,,2/26/2019 0:00,15.0000000,15.0000000,44.549286000000,-1.249154000000,,plage du Petit Nice à la Teste de Buch,41453,observation-13538699-32b1-45c2-856d-883059d0ef05-4,https://biolit.fr/observations/observation-13538699-32b1-45c2-856d-883059d0ef05-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/méduse_0.jpg,,FALSE, +N1,59410,sortie-b1ebeda3-0f75-4830-b535-099d726a6c05,https://biolit.fr/sorties/sortie-b1ebeda3-0f75-4830-b535-099d726a6c05/,Phil,,12/26/2018 0:00,13.0000000,13.0000000,47.797096000000,-4.177088000000,,Loctudy - Finistère,41454,observation-b1ebeda3-0f75-4830-b535-099d726a6c05,https://biolit.fr/observations/observation-b1ebeda3-0f75-4830-b535-099d726a6c05/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_125946.jpg,,FALSE, +N1,59410,sortie-b1ebeda3-0f75-4830-b535-099d726a6c05,https://biolit.fr/sorties/sortie-b1ebeda3-0f75-4830-b535-099d726a6c05/,Phil,,12/26/2018 0:00,13.0000000,13.0000000,47.797096000000,-4.177088000000,,Loctudy - Finistère,41456,observation-b1ebeda3-0f75-4830-b535-099d726a6c05-2,https://biolit.fr/observations/observation-b1ebeda3-0f75-4830-b535-099d726a6c05-2/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/2023/07/20181226_130745.jpg,,TRUE, +N1,59410,sortie-b1ebeda3-0f75-4830-b535-099d726a6c05,https://biolit.fr/sorties/sortie-b1ebeda3-0f75-4830-b535-099d726a6c05/,Phil,,12/26/2018 0:00,13.0000000,13.0000000,47.797096000000,-4.177088000000,,Loctudy - Finistère,41458,observation-b1ebeda3-0f75-4830-b535-099d726a6c05-3,https://biolit.fr/observations/observation-b1ebeda3-0f75-4830-b535-099d726a6c05-3/,Lomentaria articulata,Algue saucisson,,https://biolit.fr/wp-content/uploads/2023/07/20181226_130747.jpg,,TRUE, +N1,59410,sortie-b1ebeda3-0f75-4830-b535-099d726a6c05,https://biolit.fr/sorties/sortie-b1ebeda3-0f75-4830-b535-099d726a6c05/,Phil,,12/26/2018 0:00,13.0000000,13.0000000,47.797096000000,-4.177088000000,,Loctudy - Finistère,41460,observation-b1ebeda3-0f75-4830-b535-099d726a6c05-4,https://biolit.fr/observations/observation-b1ebeda3-0f75-4830-b535-099d726a6c05-4/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/2023/07/20181226_130810.jpg,,TRUE, +N1,59410,sortie-b1ebeda3-0f75-4830-b535-099d726a6c05,https://biolit.fr/sorties/sortie-b1ebeda3-0f75-4830-b535-099d726a6c05/,Phil,,12/26/2018 0:00,13.0000000,13.0000000,47.797096000000,-4.177088000000,,Loctudy - Finistère,41462,observation-b1ebeda3-0f75-4830-b535-099d726a6c05-5,https://biolit.fr/observations/observation-b1ebeda3-0f75-4830-b535-099d726a6c05-5/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20181226_130957.jpg,,TRUE, +N1,59411,sortie-796a1532-6f9c-4139-8280-7566192bd9c3,https://biolit.fr/sorties/sortie-796a1532-6f9c-4139-8280-7566192bd9c3/,Nina Colin,,2/20/2019 0:00,14.0000000,16.0000000,48.654051000000,-2.01920500000,,Fort National St Malo,41464,observation-796a1532-6f9c-4139-8280-7566192bd9c3,https://biolit.fr/observations/observation-796a1532-6f9c-4139-8280-7566192bd9c3/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0626-scaled.jpg,,TRUE, +N1,59411,sortie-796a1532-6f9c-4139-8280-7566192bd9c3,https://biolit.fr/sorties/sortie-796a1532-6f9c-4139-8280-7566192bd9c3/,Nina Colin,,2/20/2019 0:00,14.0000000,16.0000000,48.654051000000,-2.01920500000,,Fort National St Malo,41465,observation-796a1532-6f9c-4139-8280-7566192bd9c3-2,https://biolit.fr/observations/observation-796a1532-6f9c-4139-8280-7566192bd9c3-2/,Homarus gammarus,Homard européen,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0634_0-scaled.jpg,,TRUE, +N1,59411,sortie-796a1532-6f9c-4139-8280-7566192bd9c3,https://biolit.fr/sorties/sortie-796a1532-6f9c-4139-8280-7566192bd9c3/,Nina Colin,,2/20/2019 0:00,14.0000000,16.0000000,48.654051000000,-2.01920500000,,Fort National St Malo,41467,observation-796a1532-6f9c-4139-8280-7566192bd9c3-3,https://biolit.fr/observations/observation-796a1532-6f9c-4139-8280-7566192bd9c3-3/,Plagioecia patina,Plagioécie-assiette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0638-scaled.jpg,,TRUE, +N1,59411,sortie-796a1532-6f9c-4139-8280-7566192bd9c3,https://biolit.fr/sorties/sortie-796a1532-6f9c-4139-8280-7566192bd9c3/,Nina Colin,,2/20/2019 0:00,14.0000000,16.0000000,48.654051000000,-2.01920500000,,Fort National St Malo,41469,observation-796a1532-6f9c-4139-8280-7566192bd9c3-4,https://biolit.fr/observations/observation-796a1532-6f9c-4139-8280-7566192bd9c3-4/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0651-scaled.jpg,,TRUE, +N1,59411,sortie-796a1532-6f9c-4139-8280-7566192bd9c3,https://biolit.fr/sorties/sortie-796a1532-6f9c-4139-8280-7566192bd9c3/,Nina Colin,,2/20/2019 0:00,14.0000000,16.0000000,48.654051000000,-2.01920500000,,Fort National St Malo,41471,observation-796a1532-6f9c-4139-8280-7566192bd9c3-5,https://biolit.fr/observations/observation-796a1532-6f9c-4139-8280-7566192bd9c3-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0645-scaled.jpg,,TRUE, +N1,59411,sortie-796a1532-6f9c-4139-8280-7566192bd9c3,https://biolit.fr/sorties/sortie-796a1532-6f9c-4139-8280-7566192bd9c3/,Nina Colin,,2/20/2019 0:00,14.0000000,16.0000000,48.654051000000,-2.01920500000,,Fort National St Malo,41473,observation-796a1532-6f9c-4139-8280-7566192bd9c3-6,https://biolit.fr/observations/observation-796a1532-6f9c-4139-8280-7566192bd9c3-6/,Lomentaria articulata,Algue saucisson,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0649-scaled.jpg,,TRUE, +N1,59411,sortie-796a1532-6f9c-4139-8280-7566192bd9c3,https://biolit.fr/sorties/sortie-796a1532-6f9c-4139-8280-7566192bd9c3/,Nina Colin,,2/20/2019 0:00,14.0000000,16.0000000,48.654051000000,-2.01920500000,,Fort National St Malo,41475,observation-796a1532-6f9c-4139-8280-7566192bd9c3-7,https://biolit.fr/observations/observation-796a1532-6f9c-4139-8280-7566192bd9c3-7/,Mastocarpus stellatus,Gigartine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0648-scaled.jpg,,TRUE, +N1,59411,sortie-796a1532-6f9c-4139-8280-7566192bd9c3,https://biolit.fr/sorties/sortie-796a1532-6f9c-4139-8280-7566192bd9c3/,Nina Colin,,2/20/2019 0:00,14.0000000,16.0000000,48.654051000000,-2.01920500000,,Fort National St Malo,41477,observation-796a1532-6f9c-4139-8280-7566192bd9c3-8,https://biolit.fr/observations/observation-796a1532-6f9c-4139-8280-7566192bd9c3-8/,Parablennius gattorugine,Cabot,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0647-scaled.jpg,",""true""",, +N1,59412,sortie-86832cbe-c01f-4643-8dc9-e3437f083221,https://biolit.fr/sorties/sortie-86832cbe-c01f-4643-8dc9-e3437f083221/,Phil,,02/06/2019,11.0000000,11.0:35,47.797289000000,-4.213125000000,,Lesconil - Finistère,41479,observation-86832cbe-c01f-4643-8dc9-e3437f083221,https://biolit.fr/observations/observation-86832cbe-c01f-4643-8dc9-e3437f083221/,Vertebrata lanosa,Pompon des ascophylles,,https://biolit.fr/wp-content/uploads/2023/07/20190206_113140_1.jpg,,TRUE, +N1,59412,sortie-86832cbe-c01f-4643-8dc9-e3437f083221,https://biolit.fr/sorties/sortie-86832cbe-c01f-4643-8dc9-e3437f083221/,Phil,,02/06/2019,11.0000000,11.0:35,47.797289000000,-4.213125000000,,Lesconil - Finistère,41481,observation-86832cbe-c01f-4643-8dc9-e3437f083221-2,https://biolit.fr/observations/observation-86832cbe-c01f-4643-8dc9-e3437f083221-2/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190206_113138_0.jpg,,TRUE, +N1,59412,sortie-86832cbe-c01f-4643-8dc9-e3437f083221,https://biolit.fr/sorties/sortie-86832cbe-c01f-4643-8dc9-e3437f083221/,Phil,,02/06/2019,11.0000000,11.0:35,47.797289000000,-4.213125000000,,Lesconil - Finistère,41483,observation-86832cbe-c01f-4643-8dc9-e3437f083221-3,https://biolit.fr/observations/observation-86832cbe-c01f-4643-8dc9-e3437f083221-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190206_113113_0.jpg,,TRUE, +N1,59412,sortie-86832cbe-c01f-4643-8dc9-e3437f083221,https://biolit.fr/sorties/sortie-86832cbe-c01f-4643-8dc9-e3437f083221/,Phil,,02/06/2019,11.0000000,11.0:35,47.797289000000,-4.213125000000,,Lesconil - Finistère,41485,observation-86832cbe-c01f-4643-8dc9-e3437f083221-4,https://biolit.fr/observations/observation-86832cbe-c01f-4643-8dc9-e3437f083221-4/,Janua heterostropha,Spirorbe de Pagenstecher,,https://biolit.fr/wp-content/uploads/2023/07/20190206_113152.jpg,,TRUE, +N1,59412,sortie-86832cbe-c01f-4643-8dc9-e3437f083221,https://biolit.fr/sorties/sortie-86832cbe-c01f-4643-8dc9-e3437f083221/,Phil,,02/06/2019,11.0000000,11.0:35,47.797289000000,-4.213125000000,,Lesconil - Finistère,41487,observation-86832cbe-c01f-4643-8dc9-e3437f083221-5,https://biolit.fr/observations/observation-86832cbe-c01f-4643-8dc9-e3437f083221-5/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190206_113229.jpg,,TRUE, +N1,59413,sortie-e9c25f32-f32c-4a6f-bd61-d7e894741de7,https://biolit.fr/sorties/sortie-e9c25f32-f32c-4a6f-bd61-d7e894741de7/,Phil,,12/26/2018 0:00,12.0:55,13.000005,47.798117000000,-4.176684000000,,Loctudy - Finistère,41489,observation-e9c25f32-f32c-4a6f-bd61-d7e894741de7,https://biolit.fr/observations/observation-e9c25f32-f32c-4a6f-bd61-d7e894741de7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_125928.jpg,,FALSE, +N1,59413,sortie-e9c25f32-f32c-4a6f-bd61-d7e894741de7,https://biolit.fr/sorties/sortie-e9c25f32-f32c-4a6f-bd61-d7e894741de7/,Phil,,12/26/2018 0:00,12.0:55,13.000005,47.798117000000,-4.176684000000,,Loctudy - Finistère,41491,observation-e9c25f32-f32c-4a6f-bd61-d7e894741de7-2,https://biolit.fr/observations/observation-e9c25f32-f32c-4a6f-bd61-d7e894741de7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_125858.jpg,,FALSE, +N1,59413,sortie-e9c25f32-f32c-4a6f-bd61-d7e894741de7,https://biolit.fr/sorties/sortie-e9c25f32-f32c-4a6f-bd61-d7e894741de7/,Phil,,12/26/2018 0:00,12.0:55,13.000005,47.798117000000,-4.176684000000,,Loctudy - Finistère,41493,observation-e9c25f32-f32c-4a6f-bd61-d7e894741de7-3,https://biolit.fr/observations/observation-e9c25f32-f32c-4a6f-bd61-d7e894741de7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_125830.jpg,,FALSE, +N1,59413,sortie-e9c25f32-f32c-4a6f-bd61-d7e894741de7,https://biolit.fr/sorties/sortie-e9c25f32-f32c-4a6f-bd61-d7e894741de7/,Phil,,12/26/2018 0:00,12.0:55,13.000005,47.798117000000,-4.176684000000,,Loctudy - Finistère,41495,observation-e9c25f32-f32c-4a6f-bd61-d7e894741de7-4,https://biolit.fr/observations/observation-e9c25f32-f32c-4a6f-bd61-d7e894741de7-4/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20181226_125413.jpg,,TRUE, +N1,59413,sortie-e9c25f32-f32c-4a6f-bd61-d7e894741de7,https://biolit.fr/sorties/sortie-e9c25f32-f32c-4a6f-bd61-d7e894741de7/,Phil,,12/26/2018 0:00,12.0:55,13.000005,47.798117000000,-4.176684000000,,Loctudy - Finistère,41497,observation-e9c25f32-f32c-4a6f-bd61-d7e894741de7-5,https://biolit.fr/observations/observation-e9c25f32-f32c-4a6f-bd61-d7e894741de7-5/,Aplysilla rosea,Aplysille rose,,https://biolit.fr/wp-content/uploads/2023/07/20181226_125406.jpg,,TRUE, +N1,59413,sortie-e9c25f32-f32c-4a6f-bd61-d7e894741de7,https://biolit.fr/sorties/sortie-e9c25f32-f32c-4a6f-bd61-d7e894741de7/,Phil,,12/26/2018 0:00,12.0:55,13.000005,47.798117000000,-4.176684000000,,Loctudy - Finistère,41499,observation-e9c25f32-f32c-4a6f-bd61-d7e894741de7-6,https://biolit.fr/observations/observation-e9c25f32-f32c-4a6f-bd61-d7e894741de7-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_125351.jpg,,FALSE, +N1,59414,sortie-453ec557-a2fd-4764-b4f4-1b56880efbfb,https://biolit.fr/sorties/sortie-453ec557-a2fd-4764-b4f4-1b56880efbfb/,Phil,,02/12/2019,17.0:25,17.0000000,47.795543000000,-4.275401000000,,Léchiagat - Finistère,41501,observation-453ec557-a2fd-4764-b4f4-1b56880efbfb,https://biolit.fr/observations/observation-453ec557-a2fd-4764-b4f4-1b56880efbfb/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190212_172657.jpg,,TRUE, +N1,59414,sortie-453ec557-a2fd-4764-b4f4-1b56880efbfb,https://biolit.fr/sorties/sortie-453ec557-a2fd-4764-b4f4-1b56880efbfb/,Phil,,02/12/2019,17.0:25,17.0000000,47.795543000000,-4.275401000000,,Léchiagat - Finistère,41503,observation-453ec557-a2fd-4764-b4f4-1b56880efbfb-2,https://biolit.fr/observations/observation-453ec557-a2fd-4764-b4f4-1b56880efbfb-2/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20190212_172715.jpg,,TRUE, +N1,59414,sortie-453ec557-a2fd-4764-b4f4-1b56880efbfb,https://biolit.fr/sorties/sortie-453ec557-a2fd-4764-b4f4-1b56880efbfb/,Phil,,02/12/2019,17.0:25,17.0000000,47.795543000000,-4.275401000000,,Léchiagat - Finistère,41505,observation-453ec557-a2fd-4764-b4f4-1b56880efbfb-3,https://biolit.fr/observations/observation-453ec557-a2fd-4764-b4f4-1b56880efbfb-3/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/20190212_172754.jpg,,TRUE, +N1,59414,sortie-453ec557-a2fd-4764-b4f4-1b56880efbfb,https://biolit.fr/sorties/sortie-453ec557-a2fd-4764-b4f4-1b56880efbfb/,Phil,,02/12/2019,17.0:25,17.0000000,47.795543000000,-4.275401000000,,Léchiagat - Finistère,41507,observation-453ec557-a2fd-4764-b4f4-1b56880efbfb-4,https://biolit.fr/observations/observation-453ec557-a2fd-4764-b4f4-1b56880efbfb-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190212_172804.jpg,,TRUE, +N1,59414,sortie-453ec557-a2fd-4764-b4f4-1b56880efbfb,https://biolit.fr/sorties/sortie-453ec557-a2fd-4764-b4f4-1b56880efbfb/,Phil,,02/12/2019,17.0:25,17.0000000,47.795543000000,-4.275401000000,,Léchiagat - Finistère,41509,observation-453ec557-a2fd-4764-b4f4-1b56880efbfb-5,https://biolit.fr/observations/observation-453ec557-a2fd-4764-b4f4-1b56880efbfb-5/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190212_172826.jpg,,TRUE, +N1,59414,sortie-453ec557-a2fd-4764-b4f4-1b56880efbfb,https://biolit.fr/sorties/sortie-453ec557-a2fd-4764-b4f4-1b56880efbfb/,Phil,,02/12/2019,17.0:25,17.0000000,47.795543000000,-4.275401000000,,Léchiagat - Finistère,41511,observation-453ec557-a2fd-4764-b4f4-1b56880efbfb-6,https://biolit.fr/observations/observation-453ec557-a2fd-4764-b4f4-1b56880efbfb-6/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20190212_173052.jpg,,TRUE, +N1,59415,sortie-cec65dd6-c36b-4538-a26d-50d4c6c6f08d,https://biolit.fr/sorties/sortie-cec65dd6-c36b-4538-a26d-50d4c6c6f08d/,Phil,,12/26/2018 0:00,12.0000000,13.0000000,47.797695000000,-4.176934000000,,Loctudy - Finistère,41513,observation-cec65dd6-c36b-4538-a26d-50d4c6c6f08d,https://biolit.fr/observations/observation-cec65dd6-c36b-4538-a26d-50d4c6c6f08d/,Lissoclinum perforatum,Didemne lisse perforé,,https://biolit.fr/wp-content/uploads/2023/07/20181226_124922(0).jpg,,TRUE, +N1,59415,sortie-cec65dd6-c36b-4538-a26d-50d4c6c6f08d,https://biolit.fr/sorties/sortie-cec65dd6-c36b-4538-a26d-50d4c6c6f08d/,Phil,,12/26/2018 0:00,12.0000000,13.0000000,47.797695000000,-4.176934000000,,Loctudy - Finistère,41515,observation-cec65dd6-c36b-4538-a26d-50d4c6c6f08d-2,https://biolit.fr/observations/observation-cec65dd6-c36b-4538-a26d-50d4c6c6f08d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_124933.jpg,,FALSE, +N1,59415,sortie-cec65dd6-c36b-4538-a26d-50d4c6c6f08d,https://biolit.fr/sorties/sortie-cec65dd6-c36b-4538-a26d-50d4c6c6f08d/,Phil,,12/26/2018 0:00,12.0000000,13.0000000,47.797695000000,-4.176934000000,,Loctudy - Finistère,41517,observation-cec65dd6-c36b-4538-a26d-50d4c6c6f08d-3,https://biolit.fr/observations/observation-cec65dd6-c36b-4538-a26d-50d4c6c6f08d-3/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_124953.jpg,,TRUE, +N1,59415,sortie-cec65dd6-c36b-4538-a26d-50d4c6c6f08d,https://biolit.fr/sorties/sortie-cec65dd6-c36b-4538-a26d-50d4c6c6f08d/,Phil,,12/26/2018 0:00,12.0000000,13.0000000,47.797695000000,-4.176934000000,,Loctudy - Finistère,41519,observation-cec65dd6-c36b-4538-a26d-50d4c6c6f08d-4,https://biolit.fr/observations/observation-cec65dd6-c36b-4538-a26d-50d4c6c6f08d-4/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/20181226_125053.jpg,,TRUE, +N1,59415,sortie-cec65dd6-c36b-4538-a26d-50d4c6c6f08d,https://biolit.fr/sorties/sortie-cec65dd6-c36b-4538-a26d-50d4c6c6f08d/,Phil,,12/26/2018 0:00,12.0000000,13.0000000,47.797695000000,-4.176934000000,,Loctudy - Finistère,41521,observation-cec65dd6-c36b-4538-a26d-50d4c6c6f08d-5,https://biolit.fr/observations/observation-cec65dd6-c36b-4538-a26d-50d4c6c6f08d-5/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181226_125106.jpg,,TRUE, +N1,59415,sortie-cec65dd6-c36b-4538-a26d-50d4c6c6f08d,https://biolit.fr/sorties/sortie-cec65dd6-c36b-4538-a26d-50d4c6c6f08d/,Phil,,12/26/2018 0:00,12.0000000,13.0000000,47.797695000000,-4.176934000000,,Loctudy - Finistère,41523,observation-cec65dd6-c36b-4538-a26d-50d4c6c6f08d-6,https://biolit.fr/observations/observation-cec65dd6-c36b-4538-a26d-50d4c6c6f08d-6/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/20181226_125143.jpg,,TRUE, +N1,59415,sortie-cec65dd6-c36b-4538-a26d-50d4c6c6f08d,https://biolit.fr/sorties/sortie-cec65dd6-c36b-4538-a26d-50d4c6c6f08d/,Phil,,12/26/2018 0:00,12.0000000,13.0000000,47.797695000000,-4.176934000000,,Loctudy - Finistère,41525,observation-cec65dd6-c36b-4538-a26d-50d4c6c6f08d-7,https://biolit.fr/observations/observation-cec65dd6-c36b-4538-a26d-50d4c6c6f08d-7/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/20181226_125230.jpg,,TRUE, +N1,59416,sortie-49d567d0-fbca-4f58-8371-a7ba0c9c373e,https://biolit.fr/sorties/sortie-49d567d0-fbca-4f58-8371-a7ba0c9c373e/,Phil,,7/22/2018 0:00,14.0:45,14.0000000,47.707963000000,-3.992054000000,,Fouesnant - Finistère,41527,observation-49d567d0-fbca-4f58-8371-a7ba0c9c373e,https://biolit.fr/observations/observation-49d567d0-fbca-4f58-8371-a7ba0c9c373e/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/P1110991.JPG,,TRUE, +N1,59416,sortie-49d567d0-fbca-4f58-8371-a7ba0c9c373e,https://biolit.fr/sorties/sortie-49d567d0-fbca-4f58-8371-a7ba0c9c373e/,Phil,,7/22/2018 0:00,14.0:45,14.0000000,47.707963000000,-3.992054000000,,Fouesnant - Finistère,41529,observation-49d567d0-fbca-4f58-8371-a7ba0c9c373e-2,https://biolit.fr/observations/observation-49d567d0-fbca-4f58-8371-a7ba0c9c373e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110993.JPG,,FALSE, +N1,59416,sortie-49d567d0-fbca-4f58-8371-a7ba0c9c373e,https://biolit.fr/sorties/sortie-49d567d0-fbca-4f58-8371-a7ba0c9c373e/,Phil,,7/22/2018 0:00,14.0:45,14.0000000,47.707963000000,-3.992054000000,,Fouesnant - Finistère,41531,observation-49d567d0-fbca-4f58-8371-a7ba0c9c373e-3,https://biolit.fr/observations/observation-49d567d0-fbca-4f58-8371-a7ba0c9c373e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110994.JPG,,FALSE, +N1,59416,sortie-49d567d0-fbca-4f58-8371-a7ba0c9c373e,https://biolit.fr/sorties/sortie-49d567d0-fbca-4f58-8371-a7ba0c9c373e/,Phil,,7/22/2018 0:00,14.0:45,14.0000000,47.707963000000,-3.992054000000,,Fouesnant - Finistère,41533,observation-49d567d0-fbca-4f58-8371-a7ba0c9c373e-4,https://biolit.fr/observations/observation-49d567d0-fbca-4f58-8371-a7ba0c9c373e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110995.JPG,,FALSE, +N1,59416,sortie-49d567d0-fbca-4f58-8371-a7ba0c9c373e,https://biolit.fr/sorties/sortie-49d567d0-fbca-4f58-8371-a7ba0c9c373e/,Phil,,7/22/2018 0:00,14.0:45,14.0000000,47.707963000000,-3.992054000000,,Fouesnant - Finistère,41535,observation-49d567d0-fbca-4f58-8371-a7ba0c9c373e-5,https://biolit.fr/observations/observation-49d567d0-fbca-4f58-8371-a7ba0c9c373e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110996.JPG,,FALSE, +N1,59416,sortie-49d567d0-fbca-4f58-8371-a7ba0c9c373e,https://biolit.fr/sorties/sortie-49d567d0-fbca-4f58-8371-a7ba0c9c373e/,Phil,,7/22/2018 0:00,14.0:45,14.0000000,47.707963000000,-3.992054000000,,Fouesnant - Finistère,41537,observation-49d567d0-fbca-4f58-8371-a7ba0c9c373e-6,https://biolit.fr/observations/observation-49d567d0-fbca-4f58-8371-a7ba0c9c373e-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110997.JPG,,FALSE, +N1,59416,sortie-49d567d0-fbca-4f58-8371-a7ba0c9c373e,https://biolit.fr/sorties/sortie-49d567d0-fbca-4f58-8371-a7ba0c9c373e/,Phil,,7/22/2018 0:00,14.0:45,14.0000000,47.707963000000,-3.992054000000,,Fouesnant - Finistère,41539,observation-49d567d0-fbca-4f58-8371-a7ba0c9c373e-7,https://biolit.fr/observations/observation-49d567d0-fbca-4f58-8371-a7ba0c9c373e-7/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1110998.JPG,,TRUE, +N1,59417,sortie-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5,https://biolit.fr/sorties/sortie-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5/,Phil,,12/26/2018 0:00,12.0:45,12.0000000,47.797454000000,-4.177027000000,,Loctudy - Finistère,41541,observation-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5,https://biolit.fr/observations/observation-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_124744.jpg,,TRUE, +N1,59417,sortie-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5,https://biolit.fr/sorties/sortie-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5/,Phil,,12/26/2018 0:00,12.0:45,12.0000000,47.797454000000,-4.177027000000,,Loctudy - Finistère,41543,observation-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5-2,https://biolit.fr/observations/observation-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5-2/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181226_124754.jpg,,TRUE, +N1,59417,sortie-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5,https://biolit.fr/sorties/sortie-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5/,Phil,,12/26/2018 0:00,12.0:45,12.0000000,47.797454000000,-4.177027000000,,Loctudy - Finistère,41545,observation-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5-3,https://biolit.fr/observations/observation-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_124802.jpg,,FALSE, +N1,59417,sortie-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5,https://biolit.fr/sorties/sortie-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5/,Phil,,12/26/2018 0:00,12.0:45,12.0000000,47.797454000000,-4.177027000000,,Loctudy - Finistère,41547,observation-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5-4,https://biolit.fr/observations/observation-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5-4/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/20181226_124835.jpg,,TRUE, +N1,59417,sortie-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5,https://biolit.fr/sorties/sortie-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5/,Phil,,12/26/2018 0:00,12.0:45,12.0000000,47.797454000000,-4.177027000000,,Loctudy - Finistère,41549,observation-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5-5,https://biolit.fr/observations/observation-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5-5/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181226_124807.jpg,,TRUE, +N1,59417,sortie-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5,https://biolit.fr/sorties/sortie-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5/,Phil,,12/26/2018 0:00,12.0:45,12.0000000,47.797454000000,-4.177027000000,,Loctudy - Finistère,41551,observation-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5-6,https://biolit.fr/observations/observation-aad6e1da-91f9-43e8-a28b-539fbc7a8ce5-6/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20181226_124855.jpg,,TRUE, +N1,59418,sortie-40fc67d5-9ed8-47e8-b7c1-7cb35b74c9eb,https://biolit.fr/sorties/sortie-40fc67d5-9ed8-47e8-b7c1-7cb35b74c9eb/,Phil,,02/12/2019,17.0:25,17.0000000,47.795478000000,-4.275620000000,,Léchiagat - Finistère,41553,observation-40fc67d5-9ed8-47e8-b7c1-7cb35b74c9eb,https://biolit.fr/observations/observation-40fc67d5-9ed8-47e8-b7c1-7cb35b74c9eb/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190212_172624.jpg,,TRUE, +N1,59418,sortie-40fc67d5-9ed8-47e8-b7c1-7cb35b74c9eb,https://biolit.fr/sorties/sortie-40fc67d5-9ed8-47e8-b7c1-7cb35b74c9eb/,Phil,,02/12/2019,17.0:25,17.0000000,47.795478000000,-4.275620000000,,Léchiagat - Finistère,41555,observation-40fc67d5-9ed8-47e8-b7c1-7cb35b74c9eb-2,https://biolit.fr/observations/observation-40fc67d5-9ed8-47e8-b7c1-7cb35b74c9eb-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190212_172601.jpg,,TRUE, +N1,59418,sortie-40fc67d5-9ed8-47e8-b7c1-7cb35b74c9eb,https://biolit.fr/sorties/sortie-40fc67d5-9ed8-47e8-b7c1-7cb35b74c9eb/,Phil,,02/12/2019,17.0:25,17.0000000,47.795478000000,-4.275620000000,,Léchiagat - Finistère,41557,observation-40fc67d5-9ed8-47e8-b7c1-7cb35b74c9eb-3,https://biolit.fr/observations/observation-40fc67d5-9ed8-47e8-b7c1-7cb35b74c9eb-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190212_172612.jpg,,TRUE, +N1,59418,sortie-40fc67d5-9ed8-47e8-b7c1-7cb35b74c9eb,https://biolit.fr/sorties/sortie-40fc67d5-9ed8-47e8-b7c1-7cb35b74c9eb/,Phil,,02/12/2019,17.0:25,17.0000000,47.795478000000,-4.275620000000,,Léchiagat - Finistère,41559,observation-40fc67d5-9ed8-47e8-b7c1-7cb35b74c9eb-4,https://biolit.fr/observations/observation-40fc67d5-9ed8-47e8-b7c1-7cb35b74c9eb-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190212_172529.jpg,,FALSE, +N1,59419,sortie-eb908e0f-d929-428b-805e-330ee3392f9f,https://biolit.fr/sorties/sortie-eb908e0f-d929-428b-805e-330ee3392f9f/,Phil,,02/06/2019,11.0:25,11.0000000,47.797453000000,-4.213349000000,,Lesconil - Finistère,41561,observation-eb908e0f-d929-428b-805e-330ee3392f9f,https://biolit.fr/observations/observation-eb908e0f-d929-428b-805e-330ee3392f9f/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20190206_112659.jpg,,TRUE, +N1,59419,sortie-eb908e0f-d929-428b-805e-330ee3392f9f,https://biolit.fr/sorties/sortie-eb908e0f-d929-428b-805e-330ee3392f9f/,Phil,,02/06/2019,11.0:25,11.0000000,47.797453000000,-4.213349000000,,Lesconil - Finistère,41563,observation-eb908e0f-d929-428b-805e-330ee3392f9f-2,https://biolit.fr/observations/observation-eb908e0f-d929-428b-805e-330ee3392f9f-2/,Hymeniacidon perlevis,Eponge-miette de pain,,https://biolit.fr/wp-content/uploads/2023/07/20190206_112823.jpg,,TRUE, +N1,59419,sortie-eb908e0f-d929-428b-805e-330ee3392f9f,https://biolit.fr/sorties/sortie-eb908e0f-d929-428b-805e-330ee3392f9f/,Phil,,02/06/2019,11.0:25,11.0000000,47.797453000000,-4.213349000000,,Lesconil - Finistère,41565,observation-eb908e0f-d929-428b-805e-330ee3392f9f-3,https://biolit.fr/observations/observation-eb908e0f-d929-428b-805e-330ee3392f9f-3/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/20190206_112521.jpg,,TRUE, +N1,59419,sortie-eb908e0f-d929-428b-805e-330ee3392f9f,https://biolit.fr/sorties/sortie-eb908e0f-d929-428b-805e-330ee3392f9f/,Phil,,02/06/2019,11.0:25,11.0000000,47.797453000000,-4.213349000000,,Lesconil - Finistère,41567,observation-eb908e0f-d929-428b-805e-330ee3392f9f-4,https://biolit.fr/observations/observation-eb908e0f-d929-428b-805e-330ee3392f9f-4/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20190206_112848.jpg,,TRUE, +N1,59420,sortie-9346dadf-ff31-470a-83b0-3afb5f02217e,https://biolit.fr/sorties/sortie-9346dadf-ff31-470a-83b0-3afb5f02217e/,Phil,,5/20/2018 0:00,16.0000000,16.0:15,47.800670000000,-4.180997000000,,Loctudy - Finistère,41569,observation-9346dadf-ff31-470a-83b0-3afb5f02217e,https://biolit.fr/observations/observation-9346dadf-ff31-470a-83b0-3afb5f02217e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110571_0.JPG,,FALSE, +N1,59420,sortie-9346dadf-ff31-470a-83b0-3afb5f02217e,https://biolit.fr/sorties/sortie-9346dadf-ff31-470a-83b0-3afb5f02217e/,Phil,,5/20/2018 0:00,16.0000000,16.0:15,47.800670000000,-4.180997000000,,Loctudy - Finistère,41571,observation-9346dadf-ff31-470a-83b0-3afb5f02217e-2,https://biolit.fr/observations/observation-9346dadf-ff31-470a-83b0-3afb5f02217e-2/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1110569.JPG,,TRUE, +N1,59420,sortie-9346dadf-ff31-470a-83b0-3afb5f02217e,https://biolit.fr/sorties/sortie-9346dadf-ff31-470a-83b0-3afb5f02217e/,Phil,,5/20/2018 0:00,16.0000000,16.0:15,47.800670000000,-4.180997000000,,Loctudy - Finistère,41573,observation-9346dadf-ff31-470a-83b0-3afb5f02217e-3,https://biolit.fr/observations/observation-9346dadf-ff31-470a-83b0-3afb5f02217e-3/,Schizoporella unicornis,Schizoporella unicorne,,https://biolit.fr/wp-content/uploads/2023/07/P1110574.JPG,,TRUE, +N1,59420,sortie-9346dadf-ff31-470a-83b0-3afb5f02217e,https://biolit.fr/sorties/sortie-9346dadf-ff31-470a-83b0-3afb5f02217e/,Phil,,5/20/2018 0:00,16.0000000,16.0:15,47.800670000000,-4.180997000000,,Loctudy - Finistère,41575,observation-9346dadf-ff31-470a-83b0-3afb5f02217e-4,https://biolit.fr/observations/observation-9346dadf-ff31-470a-83b0-3afb5f02217e-4/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110575.JPG,,TRUE, +N1,59420,sortie-9346dadf-ff31-470a-83b0-3afb5f02217e,https://biolit.fr/sorties/sortie-9346dadf-ff31-470a-83b0-3afb5f02217e/,Phil,,5/20/2018 0:00,16.0000000,16.0:15,47.800670000000,-4.180997000000,,Loctudy - Finistère,41577,observation-9346dadf-ff31-470a-83b0-3afb5f02217e-5,https://biolit.fr/observations/observation-9346dadf-ff31-470a-83b0-3afb5f02217e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110578.JPG,,FALSE, +N1,59420,sortie-9346dadf-ff31-470a-83b0-3afb5f02217e,https://biolit.fr/sorties/sortie-9346dadf-ff31-470a-83b0-3afb5f02217e/,Phil,,5/20/2018 0:00,16.0000000,16.0:15,47.800670000000,-4.180997000000,,Loctudy - Finistère,41579,observation-9346dadf-ff31-470a-83b0-3afb5f02217e-6,https://biolit.fr/observations/observation-9346dadf-ff31-470a-83b0-3afb5f02217e-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110579.JPG,,FALSE, +N1,59421,sortie-46f30fac-778f-4a65-9f53-0541a473013b,https://biolit.fr/sorties/sortie-46f30fac-778f-4a65-9f53-0541a473013b/,pamatelo,,02/10/2019,8.0000000,10.0000000,43.333857000000,5.197719000000,,"Ensues la redonne ,",41581,observation-46f30fac-778f-4a65-9f53-0541a473013b,https://biolit.fr/observations/observation-46f30fac-778f-4a65-9f53-0541a473013b/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190209_110334.1-scaled.jpg,,FALSE, +N1,59422,sortie-71c4178c-531b-4aae-969d-d08ed39652bb,https://biolit.fr/sorties/sortie-71c4178c-531b-4aae-969d-d08ed39652bb/,Phil,,12/26/2018 0:00,12.0000000,12.0:45,47.798615000000,-4.178057000000,,Loctudy - Finistère,41583,observation-71c4178c-531b-4aae-969d-d08ed39652bb,https://biolit.fr/observations/observation-71c4178c-531b-4aae-969d-d08ed39652bb/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_123951.jpg,,TRUE, +N1,59422,sortie-71c4178c-531b-4aae-969d-d08ed39652bb,https://biolit.fr/sorties/sortie-71c4178c-531b-4aae-969d-d08ed39652bb/,Phil,,12/26/2018 0:00,12.0000000,12.0:45,47.798615000000,-4.178057000000,,Loctudy - Finistère,41585,observation-71c4178c-531b-4aae-969d-d08ed39652bb-2,https://biolit.fr/observations/observation-71c4178c-531b-4aae-969d-d08ed39652bb-2/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_123956.jpg,,TRUE, +N1,59422,sortie-71c4178c-531b-4aae-969d-d08ed39652bb,https://biolit.fr/sorties/sortie-71c4178c-531b-4aae-969d-d08ed39652bb/,Phil,,12/26/2018 0:00,12.0000000,12.0:45,47.798615000000,-4.178057000000,,Loctudy - Finistère,41587,observation-71c4178c-531b-4aae-969d-d08ed39652bb-3,https://biolit.fr/observations/observation-71c4178c-531b-4aae-969d-d08ed39652bb-3/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_124009.jpg,,TRUE, +N1,59422,sortie-71c4178c-531b-4aae-969d-d08ed39652bb,https://biolit.fr/sorties/sortie-71c4178c-531b-4aae-969d-d08ed39652bb/,Phil,,12/26/2018 0:00,12.0000000,12.0:45,47.798615000000,-4.178057000000,,Loctudy - Finistère,41589,observation-71c4178c-531b-4aae-969d-d08ed39652bb-4,https://biolit.fr/observations/observation-71c4178c-531b-4aae-969d-d08ed39652bb-4/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_124017.jpg,,TRUE, +N1,59422,sortie-71c4178c-531b-4aae-969d-d08ed39652bb,https://biolit.fr/sorties/sortie-71c4178c-531b-4aae-969d-d08ed39652bb/,Phil,,12/26/2018 0:00,12.0000000,12.0:45,47.798615000000,-4.178057000000,,Loctudy - Finistère,41591,observation-71c4178c-531b-4aae-969d-d08ed39652bb-5,https://biolit.fr/observations/observation-71c4178c-531b-4aae-969d-d08ed39652bb-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20181226_124030.jpg,,TRUE, +N1,59422,sortie-71c4178c-531b-4aae-969d-d08ed39652bb,https://biolit.fr/sorties/sortie-71c4178c-531b-4aae-969d-d08ed39652bb/,Phil,,12/26/2018 0:00,12.0000000,12.0:45,47.798615000000,-4.178057000000,,Loctudy - Finistère,41593,observation-71c4178c-531b-4aae-969d-d08ed39652bb-6,https://biolit.fr/observations/observation-71c4178c-531b-4aae-969d-d08ed39652bb-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_124046.jpg,,FALSE, +N1,59422,sortie-71c4178c-531b-4aae-969d-d08ed39652bb,https://biolit.fr/sorties/sortie-71c4178c-531b-4aae-969d-d08ed39652bb/,Phil,,12/26/2018 0:00,12.0000000,12.0:45,47.798615000000,-4.178057000000,,Loctudy - Finistère,41595,observation-71c4178c-531b-4aae-969d-d08ed39652bb-7,https://biolit.fr/observations/observation-71c4178c-531b-4aae-969d-d08ed39652bb-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_124735.jpg,,FALSE, +N1,59423,sortie-03c7d241-d867-4af0-b3d2-1d6dca1a207c,https://biolit.fr/sorties/sortie-03c7d241-d867-4af0-b3d2-1d6dca1a207c/,Phil,,02/06/2019,11.0000000,11.0:25,47.797447000000,-4.213356000000,,Lesconil - Finistère,41597,observation-03c7d241-d867-4af0-b3d2-1d6dca1a207c,https://biolit.fr/observations/observation-03c7d241-d867-4af0-b3d2-1d6dca1a207c/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190206_112410.jpg,,FALSE, +N1,59423,sortie-03c7d241-d867-4af0-b3d2-1d6dca1a207c,https://biolit.fr/sorties/sortie-03c7d241-d867-4af0-b3d2-1d6dca1a207c/,Phil,,02/06/2019,11.0000000,11.0:25,47.797447000000,-4.213356000000,,Lesconil - Finistère,41599,observation-03c7d241-d867-4af0-b3d2-1d6dca1a207c-2,https://biolit.fr/observations/observation-03c7d241-d867-4af0-b3d2-1d6dca1a207c-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20190206_112445.jpg,,TRUE, +N1,59423,sortie-03c7d241-d867-4af0-b3d2-1d6dca1a207c,https://biolit.fr/sorties/sortie-03c7d241-d867-4af0-b3d2-1d6dca1a207c/,Phil,,02/06/2019,11.0000000,11.0:25,47.797447000000,-4.213356000000,,Lesconil - Finistère,41601,observation-03c7d241-d867-4af0-b3d2-1d6dca1a207c-3,https://biolit.fr/observations/observation-03c7d241-d867-4af0-b3d2-1d6dca1a207c-3/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/20190206_112458.jpg,,TRUE, +N1,59423,sortie-03c7d241-d867-4af0-b3d2-1d6dca1a207c,https://biolit.fr/sorties/sortie-03c7d241-d867-4af0-b3d2-1d6dca1a207c/,Phil,,02/06/2019,11.0000000,11.0:25,47.797447000000,-4.213356000000,,Lesconil - Finistère,41603,observation-03c7d241-d867-4af0-b3d2-1d6dca1a207c-4,https://biolit.fr/observations/observation-03c7d241-d867-4af0-b3d2-1d6dca1a207c-4/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20190206_112022.jpg,,TRUE, +N1,59424,sortie-e389806b-b189-4c12-bf6d-a325a849d43a,https://biolit.fr/sorties/sortie-e389806b-b189-4c12-bf6d-a325a849d43a/,LPO Occitanie (délégation Hérault),,1/30/2019 0:00,9.0000000,10.0000000,43.371676000000,3.543299000000,,"Marseillan, Mas Ultra Marine",41605,observation-e389806b-b189-4c12-bf6d-a325a849d43a,https://biolit.fr/observations/observation-e389806b-b189-4c12-bf6d-a325a849d43a/,Pinna nobilis,Grande nacre,,https://biolit.fr/wp-content/uploads/2023/07/20190205_180946-scaled.jpg,,TRUE, +N1,59425,sortie-dc40e1df-1215-4909-9998-5d3019f80be6,https://biolit.fr/sorties/sortie-dc40e1df-1215-4909-9998-5d3019f80be6/,Phil,,7/16/2018 0:00,13.0:15,13.0000000,47.80866000000,-3.712378000000,,Moëlan-sur-Mer - Finistère,41607,observation-dc40e1df-1215-4909-9998-5d3019f80be6,https://biolit.fr/observations/observation-dc40e1df-1215-4909-9998-5d3019f80be6/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/P1110789.JPG,,TRUE, +N1,59425,sortie-dc40e1df-1215-4909-9998-5d3019f80be6,https://biolit.fr/sorties/sortie-dc40e1df-1215-4909-9998-5d3019f80be6/,Phil,,7/16/2018 0:00,13.0:15,13.0000000,47.80866000000,-3.712378000000,,Moëlan-sur-Mer - Finistère,41609,observation-dc40e1df-1215-4909-9998-5d3019f80be6-2,https://biolit.fr/observations/observation-dc40e1df-1215-4909-9998-5d3019f80be6-2/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/P1110790.JPG,,TRUE, +N1,59425,sortie-dc40e1df-1215-4909-9998-5d3019f80be6,https://biolit.fr/sorties/sortie-dc40e1df-1215-4909-9998-5d3019f80be6/,Phil,,7/16/2018 0:00,13.0:15,13.0000000,47.80866000000,-3.712378000000,,Moëlan-sur-Mer - Finistère,41611,observation-dc40e1df-1215-4909-9998-5d3019f80be6-3,https://biolit.fr/observations/observation-dc40e1df-1215-4909-9998-5d3019f80be6-3/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/P1110793_0.JPG,,TRUE, +N1,59425,sortie-dc40e1df-1215-4909-9998-5d3019f80be6,https://biolit.fr/sorties/sortie-dc40e1df-1215-4909-9998-5d3019f80be6/,Phil,,7/16/2018 0:00,13.0:15,13.0000000,47.80866000000,-3.712378000000,,Moëlan-sur-Mer - Finistère,41613,observation-dc40e1df-1215-4909-9998-5d3019f80be6-4,https://biolit.fr/observations/observation-dc40e1df-1215-4909-9998-5d3019f80be6-4/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1110795.JPG,,TRUE, +N1,59425,sortie-dc40e1df-1215-4909-9998-5d3019f80be6,https://biolit.fr/sorties/sortie-dc40e1df-1215-4909-9998-5d3019f80be6/,Phil,,7/16/2018 0:00,13.0:15,13.0000000,47.80866000000,-3.712378000000,,Moëlan-sur-Mer - Finistère,41615,observation-dc40e1df-1215-4909-9998-5d3019f80be6-5,https://biolit.fr/observations/observation-dc40e1df-1215-4909-9998-5d3019f80be6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110786.JPG,,FALSE, +N1,59425,sortie-dc40e1df-1215-4909-9998-5d3019f80be6,https://biolit.fr/sorties/sortie-dc40e1df-1215-4909-9998-5d3019f80be6/,Phil,,7/16/2018 0:00,13.0:15,13.0000000,47.80866000000,-3.712378000000,,Moëlan-sur-Mer - Finistère,41617,observation-dc40e1df-1215-4909-9998-5d3019f80be6-6,https://biolit.fr/observations/observation-dc40e1df-1215-4909-9998-5d3019f80be6-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110782.JPG,,FALSE, +N1,59425,sortie-dc40e1df-1215-4909-9998-5d3019f80be6,https://biolit.fr/sorties/sortie-dc40e1df-1215-4909-9998-5d3019f80be6/,Phil,,7/16/2018 0:00,13.0:15,13.0000000,47.80866000000,-3.712378000000,,Moëlan-sur-Mer - Finistère,41619,observation-dc40e1df-1215-4909-9998-5d3019f80be6-7,https://biolit.fr/observations/observation-dc40e1df-1215-4909-9998-5d3019f80be6-7/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/P1110779.JPG,,TRUE, +N1,59426,sortie-036305dd-2b0f-403e-b119-06232474233a,https://biolit.fr/sorties/sortie-036305dd-2b0f-403e-b119-06232474233a/,Phil,,12/26/2018 0:00,12.0000000,12.0000000,47.798324000000,-4.177079000000,,Loctudy - Finistère,41621,observation-036305dd-2b0f-403e-b119-06232474233a,https://biolit.fr/observations/observation-036305dd-2b0f-403e-b119-06232474233a/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20181226_123844.jpg,,TRUE, +N1,59426,sortie-036305dd-2b0f-403e-b119-06232474233a,https://biolit.fr/sorties/sortie-036305dd-2b0f-403e-b119-06232474233a/,Phil,,12/26/2018 0:00,12.0000000,12.0000000,47.798324000000,-4.177079000000,,Loctudy - Finistère,41623,observation-036305dd-2b0f-403e-b119-06232474233a-2,https://biolit.fr/observations/observation-036305dd-2b0f-403e-b119-06232474233a-2/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20181226_123851.jpg,,TRUE, +N1,59426,sortie-036305dd-2b0f-403e-b119-06232474233a,https://biolit.fr/sorties/sortie-036305dd-2b0f-403e-b119-06232474233a/,Phil,,12/26/2018 0:00,12.0000000,12.0000000,47.798324000000,-4.177079000000,,Loctudy - Finistère,41625,observation-036305dd-2b0f-403e-b119-06232474233a-3,https://biolit.fr/observations/observation-036305dd-2b0f-403e-b119-06232474233a-3/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/20181226_123157.jpg,,TRUE, +N1,59426,sortie-036305dd-2b0f-403e-b119-06232474233a,https://biolit.fr/sorties/sortie-036305dd-2b0f-403e-b119-06232474233a/,Phil,,12/26/2018 0:00,12.0000000,12.0000000,47.798324000000,-4.177079000000,,Loctudy - Finistère,41627,observation-036305dd-2b0f-403e-b119-06232474233a-4,https://biolit.fr/observations/observation-036305dd-2b0f-403e-b119-06232474233a-4/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/20181226_123944.jpg,,TRUE, +N1,59426,sortie-036305dd-2b0f-403e-b119-06232474233a,https://biolit.fr/sorties/sortie-036305dd-2b0f-403e-b119-06232474233a/,Phil,,12/26/2018 0:00,12.0000000,12.0000000,47.798324000000,-4.177079000000,,Loctudy - Finistère,41629,observation-036305dd-2b0f-403e-b119-06232474233a-5,https://biolit.fr/observations/observation-036305dd-2b0f-403e-b119-06232474233a-5/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/20181226_123259.jpg,,TRUE, +N1,59427,sortie-b8522b05-f2b0-4e37-9245-39a5fc67e7a9,https://biolit.fr/sorties/sortie-b8522b05-f2b0-4e37-9245-39a5fc67e7a9/,Environat,,1/13/2019 0:00,14.0000000,14.0000000,45.57023600000,-0.976126000000,,plage Arnèche,41631,observation-b8522b05-f2b0-4e37-9245-39a5fc67e7a9,https://biolit.fr/observations/observation-b8522b05-f2b0-4e37-9245-39a5fc67e7a9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0006_0-rotated.jpg,,FALSE, +N1,59427,sortie-b8522b05-f2b0-4e37-9245-39a5fc67e7a9,https://biolit.fr/sorties/sortie-b8522b05-f2b0-4e37-9245-39a5fc67e7a9/,Environat,,1/13/2019 0:00,14.0000000,14.0000000,45.57023600000,-0.976126000000,,plage Arnèche,41633,observation-b8522b05-f2b0-4e37-9245-39a5fc67e7a9-2,https://biolit.fr/observations/observation-b8522b05-f2b0-4e37-9245-39a5fc67e7a9-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0004_0-rotated.jpg,,TRUE, +N1,59427,sortie-b8522b05-f2b0-4e37-9245-39a5fc67e7a9,https://biolit.fr/sorties/sortie-b8522b05-f2b0-4e37-9245-39a5fc67e7a9/,Environat,,1/13/2019 0:00,14.0000000,14.0000000,45.57023600000,-0.976126000000,,plage Arnèche,41635,observation-b8522b05-f2b0-4e37-9245-39a5fc67e7a9-3,https://biolit.fr/observations/observation-b8522b05-f2b0-4e37-9245-39a5fc67e7a9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0009_1-rotated.jpg,,FALSE, +N1,59428,sortie-15c4696a-04cf-4b33-b08b-76a7c80d120d,https://biolit.fr/sorties/sortie-15c4696a-04cf-4b33-b08b-76a7c80d120d/,Phil,,9/16/2018 0:00,16.0000000,16.0:55,47.872877000000,-3.930683000000,,Concarneau - Finistère,41637,observation-15c4696a-04cf-4b33-b08b-76a7c80d120d,https://biolit.fr/observations/observation-15c4696a-04cf-4b33-b08b-76a7c80d120d/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180916_165459.jpg,,FALSE, +N1,59428,sortie-15c4696a-04cf-4b33-b08b-76a7c80d120d,https://biolit.fr/sorties/sortie-15c4696a-04cf-4b33-b08b-76a7c80d120d/,Phil,,9/16/2018 0:00,16.0000000,16.0:55,47.872877000000,-3.930683000000,,Concarneau - Finistère,41639,observation-15c4696a-04cf-4b33-b08b-76a7c80d120d-2,https://biolit.fr/observations/observation-15c4696a-04cf-4b33-b08b-76a7c80d120d-2/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/20180916_165445.jpg,,TRUE, +N1,59428,sortie-15c4696a-04cf-4b33-b08b-76a7c80d120d,https://biolit.fr/sorties/sortie-15c4696a-04cf-4b33-b08b-76a7c80d120d/,Phil,,9/16/2018 0:00,16.0000000,16.0:55,47.872877000000,-3.930683000000,,Concarneau - Finistère,41641,observation-15c4696a-04cf-4b33-b08b-76a7c80d120d-3,https://biolit.fr/observations/observation-15c4696a-04cf-4b33-b08b-76a7c80d120d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180916_165438.jpg,,FALSE, +N1,59429,sortie-3ecb6028-6c43-4495-8382-9e152c053873,https://biolit.fr/sorties/sortie-3ecb6028-6c43-4495-8382-9e152c053873/,Phil,,12/26/2018 0:00,12.0:25,12.0000000,47.799391000000,-4.178667000000,,Loctudy - Finistère,41643,observation-3ecb6028-6c43-4495-8382-9e152c053873,https://biolit.fr/observations/observation-3ecb6028-6c43-4495-8382-9e152c053873/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_122720.jpg,,FALSE, +N1,59429,sortie-3ecb6028-6c43-4495-8382-9e152c053873,https://biolit.fr/sorties/sortie-3ecb6028-6c43-4495-8382-9e152c053873/,Phil,,12/26/2018 0:00,12.0:25,12.0000000,47.799391000000,-4.178667000000,,Loctudy - Finistère,41645,observation-3ecb6028-6c43-4495-8382-9e152c053873-2,https://biolit.fr/observations/observation-3ecb6028-6c43-4495-8382-9e152c053873-2/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/20181226_123025.jpg,,TRUE, +N1,59429,sortie-3ecb6028-6c43-4495-8382-9e152c053873,https://biolit.fr/sorties/sortie-3ecb6028-6c43-4495-8382-9e152c053873/,Phil,,12/26/2018 0:00,12.0:25,12.0000000,47.799391000000,-4.178667000000,,Loctudy - Finistère,41647,observation-3ecb6028-6c43-4495-8382-9e152c053873-3,https://biolit.fr/observations/observation-3ecb6028-6c43-4495-8382-9e152c053873-3/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/20181226_123101.jpg,,TRUE, +N1,59429,sortie-3ecb6028-6c43-4495-8382-9e152c053873,https://biolit.fr/sorties/sortie-3ecb6028-6c43-4495-8382-9e152c053873/,Phil,,12/26/2018 0:00,12.0:25,12.0000000,47.799391000000,-4.178667000000,,Loctudy - Finistère,41649,observation-3ecb6028-6c43-4495-8382-9e152c053873-4,https://biolit.fr/observations/observation-3ecb6028-6c43-4495-8382-9e152c053873-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_123032.jpg,,FALSE, +N1,59429,sortie-3ecb6028-6c43-4495-8382-9e152c053873,https://biolit.fr/sorties/sortie-3ecb6028-6c43-4495-8382-9e152c053873/,Phil,,12/26/2018 0:00,12.0:25,12.0000000,47.799391000000,-4.178667000000,,Loctudy - Finistère,41651,observation-3ecb6028-6c43-4495-8382-9e152c053873-5,https://biolit.fr/observations/observation-3ecb6028-6c43-4495-8382-9e152c053873-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_123042.jpg,,FALSE, +N1,59429,sortie-3ecb6028-6c43-4495-8382-9e152c053873,https://biolit.fr/sorties/sortie-3ecb6028-6c43-4495-8382-9e152c053873/,Phil,,12/26/2018 0:00,12.0:25,12.0000000,47.799391000000,-4.178667000000,,Loctudy - Finistère,41653,observation-3ecb6028-6c43-4495-8382-9e152c053873-6,https://biolit.fr/observations/observation-3ecb6028-6c43-4495-8382-9e152c053873-6/,Janua heterostropha,Spirorbe de Pagenstecher,,https://biolit.fr/wp-content/uploads/2023/07/20181226_123037.jpg,,TRUE, +N1,59430,sortie-8c77ccb4-faac-4ea5-8c8b-fbbf7c567bc0,https://biolit.fr/sorties/sortie-8c77ccb4-faac-4ea5-8c8b-fbbf7c567bc0/,Phil,,12/26/2018 0:00,12.0000000,12.0:25,47.797692000000,-4.17761200000,,Loctudy - Finistère,41655,observation-8c77ccb4-faac-4ea5-8c8b-fbbf7c567bc0,https://biolit.fr/observations/observation-8c77ccb4-faac-4ea5-8c8b-fbbf7c567bc0/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_122556.jpg,,TRUE, +N1,59430,sortie-8c77ccb4-faac-4ea5-8c8b-fbbf7c567bc0,https://biolit.fr/sorties/sortie-8c77ccb4-faac-4ea5-8c8b-fbbf7c567bc0/,Phil,,12/26/2018 0:00,12.0000000,12.0:25,47.797692000000,-4.17761200000,,Loctudy - Finistère,41657,observation-8c77ccb4-faac-4ea5-8c8b-fbbf7c567bc0-2,https://biolit.fr/observations/observation-8c77ccb4-faac-4ea5-8c8b-fbbf7c567bc0-2/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_122543.jpg,,TRUE, +N1,59430,sortie-8c77ccb4-faac-4ea5-8c8b-fbbf7c567bc0,https://biolit.fr/sorties/sortie-8c77ccb4-faac-4ea5-8c8b-fbbf7c567bc0/,Phil,,12/26/2018 0:00,12.0000000,12.0:25,47.797692000000,-4.17761200000,,Loctudy - Finistère,41659,observation-8c77ccb4-faac-4ea5-8c8b-fbbf7c567bc0-3,https://biolit.fr/observations/observation-8c77ccb4-faac-4ea5-8c8b-fbbf7c567bc0-3/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181226_122532.jpg,,TRUE, +N1,59430,sortie-8c77ccb4-faac-4ea5-8c8b-fbbf7c567bc0,https://biolit.fr/sorties/sortie-8c77ccb4-faac-4ea5-8c8b-fbbf7c567bc0/,Phil,,12/26/2018 0:00,12.0000000,12.0:25,47.797692000000,-4.17761200000,,Loctudy - Finistère,41661,observation-8c77ccb4-faac-4ea5-8c8b-fbbf7c567bc0-4,https://biolit.fr/observations/observation-8c77ccb4-faac-4ea5-8c8b-fbbf7c567bc0-4/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20181226_122418.jpg,,TRUE, +N1,59431,sortie-7092ac8c-c225-43e5-bac8-eaa5c716e24b,https://biolit.fr/sorties/sortie-7092ac8c-c225-43e5-bac8-eaa5c716e24b/,Phil,,12/20/2018 0:00,17.0:15,17.0000000,48.210045000000,-4.369031000000,,Telgruc-sur-Mer Finistère,41663,observation-7092ac8c-c225-43e5-bac8-eaa5c716e24b,https://biolit.fr/observations/observation-7092ac8c-c225-43e5-bac8-eaa5c716e24b/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20181220_171517.jpg,,TRUE, +N1,59431,sortie-7092ac8c-c225-43e5-bac8-eaa5c716e24b,https://biolit.fr/sorties/sortie-7092ac8c-c225-43e5-bac8-eaa5c716e24b/,Phil,,12/20/2018 0:00,17.0:15,17.0000000,48.210045000000,-4.369031000000,,Telgruc-sur-Mer Finistère,41665,observation-7092ac8c-c225-43e5-bac8-eaa5c716e24b-2,https://biolit.fr/observations/observation-7092ac8c-c225-43e5-bac8-eaa5c716e24b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181220_171459.jpg,,FALSE, +N1,59431,sortie-7092ac8c-c225-43e5-bac8-eaa5c716e24b,https://biolit.fr/sorties/sortie-7092ac8c-c225-43e5-bac8-eaa5c716e24b/,Phil,,12/20/2018 0:00,17.0:15,17.0000000,48.210045000000,-4.369031000000,,Telgruc-sur-Mer Finistère,41667,observation-7092ac8c-c225-43e5-bac8-eaa5c716e24b-3,https://biolit.fr/observations/observation-7092ac8c-c225-43e5-bac8-eaa5c716e24b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181220_171548.jpg,,FALSE, +N1,59431,sortie-7092ac8c-c225-43e5-bac8-eaa5c716e24b,https://biolit.fr/sorties/sortie-7092ac8c-c225-43e5-bac8-eaa5c716e24b/,Phil,,12/20/2018 0:00,17.0:15,17.0000000,48.210045000000,-4.369031000000,,Telgruc-sur-Mer Finistère,41669,observation-7092ac8c-c225-43e5-bac8-eaa5c716e24b-4,https://biolit.fr/observations/observation-7092ac8c-c225-43e5-bac8-eaa5c716e24b-4/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/20181220_171848.jpg,,TRUE, +N1,59432,sortie-ec0cb9ab-2ab6-4a71-b24c-ef0515a4817e,https://biolit.fr/sorties/sortie-ec0cb9ab-2ab6-4a71-b24c-ef0515a4817e/,Phil,,12/26/2018 0:00,12.0:15,12.0:25,47.797878000000,-4.177491000000,,Loctudy - Finistère,41671,observation-ec0cb9ab-2ab6-4a71-b24c-ef0515a4817e,https://biolit.fr/observations/observation-ec0cb9ab-2ab6-4a71-b24c-ef0515a4817e/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/20181226_122149.jpg,,TRUE, +N1,59432,sortie-ec0cb9ab-2ab6-4a71-b24c-ef0515a4817e,https://biolit.fr/sorties/sortie-ec0cb9ab-2ab6-4a71-b24c-ef0515a4817e/,Phil,,12/26/2018 0:00,12.0:15,12.0:25,47.797878000000,-4.177491000000,,Loctudy - Finistère,41673,observation-ec0cb9ab-2ab6-4a71-b24c-ef0515a4817e-2,https://biolit.fr/observations/observation-ec0cb9ab-2ab6-4a71-b24c-ef0515a4817e-2/,Hildenbrandia rubra,Algue-velours rouge,,https://biolit.fr/wp-content/uploads/2023/07/20181226_122222.jpg,,TRUE, +N1,59432,sortie-ec0cb9ab-2ab6-4a71-b24c-ef0515a4817e,https://biolit.fr/sorties/sortie-ec0cb9ab-2ab6-4a71-b24c-ef0515a4817e/,Phil,,12/26/2018 0:00,12.0:15,12.0:25,47.797878000000,-4.177491000000,,Loctudy - Finistère,41675,observation-ec0cb9ab-2ab6-4a71-b24c-ef0515a4817e-3,https://biolit.fr/observations/observation-ec0cb9ab-2ab6-4a71-b24c-ef0515a4817e-3/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/20181226_122357.jpg,,TRUE, +N1,59433,sortie-1f07d7b8-8aa0-4de9-bbd1-0c53c90833f4,https://biolit.fr/sorties/sortie-1f07d7b8-8aa0-4de9-bbd1-0c53c90833f4/,Phil,,11/25/2018 0:00,14.0:35,14.0000000,47.89612800000,-3.968062000000,,La Forêt-Fouesnant - Finistère,41677,observation-1f07d7b8-8aa0-4de9-bbd1-0c53c90833f4,https://biolit.fr/observations/observation-1f07d7b8-8aa0-4de9-bbd1-0c53c90833f4/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/P1120345.JPG,,TRUE, +N1,59433,sortie-1f07d7b8-8aa0-4de9-bbd1-0c53c90833f4,https://biolit.fr/sorties/sortie-1f07d7b8-8aa0-4de9-bbd1-0c53c90833f4/,Phil,,11/25/2018 0:00,14.0:35,14.0000000,47.89612800000,-3.968062000000,,La Forêt-Fouesnant - Finistère,41679,observation-1f07d7b8-8aa0-4de9-bbd1-0c53c90833f4-2,https://biolit.fr/observations/observation-1f07d7b8-8aa0-4de9-bbd1-0c53c90833f4-2/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1120348.JPG,,TRUE, +N1,59434,sortie-c2290ea3-a707-4da2-8d83-222dc50e4670,https://biolit.fr/sorties/sortie-c2290ea3-a707-4da2-8d83-222dc50e4670/,Phil,,12/26/2018 0:00,12.0000000,12.0:15,47.798808000000,-4.17720800000,,Loctudy - Finistère,41681,observation-c2290ea3-a707-4da2-8d83-222dc50e4670,https://biolit.fr/observations/observation-c2290ea3-a707-4da2-8d83-222dc50e4670/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/20181226_121202.jpg,,TRUE, +N1,59434,sortie-c2290ea3-a707-4da2-8d83-222dc50e4670,https://biolit.fr/sorties/sortie-c2290ea3-a707-4da2-8d83-222dc50e4670/,Phil,,12/26/2018 0:00,12.0000000,12.0:15,47.798808000000,-4.17720800000,,Loctudy - Finistère,41683,observation-c2290ea3-a707-4da2-8d83-222dc50e4670-2,https://biolit.fr/observations/observation-c2290ea3-a707-4da2-8d83-222dc50e4670-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_121559.jpg,,FALSE, +N1,59434,sortie-c2290ea3-a707-4da2-8d83-222dc50e4670,https://biolit.fr/sorties/sortie-c2290ea3-a707-4da2-8d83-222dc50e4670/,Phil,,12/26/2018 0:00,12.0000000,12.0:15,47.798808000000,-4.17720800000,,Loctudy - Finistère,41685,observation-c2290ea3-a707-4da2-8d83-222dc50e4670-3,https://biolit.fr/observations/observation-c2290ea3-a707-4da2-8d83-222dc50e4670-3/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181226_121552.jpg,,TRUE, +N1,59434,sortie-c2290ea3-a707-4da2-8d83-222dc50e4670,https://biolit.fr/sorties/sortie-c2290ea3-a707-4da2-8d83-222dc50e4670/,Phil,,12/26/2018 0:00,12.0000000,12.0:15,47.798808000000,-4.17720800000,,Loctudy - Finistère,41687,observation-c2290ea3-a707-4da2-8d83-222dc50e4670-4,https://biolit.fr/observations/observation-c2290ea3-a707-4da2-8d83-222dc50e4670-4/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/20181226_121143.jpg,,TRUE, +N1,59434,sortie-c2290ea3-a707-4da2-8d83-222dc50e4670,https://biolit.fr/sorties/sortie-c2290ea3-a707-4da2-8d83-222dc50e4670/,Phil,,12/26/2018 0:00,12.0000000,12.0:15,47.798808000000,-4.17720800000,,Loctudy - Finistère,41689,observation-c2290ea3-a707-4da2-8d83-222dc50e4670-5,https://biolit.fr/observations/observation-c2290ea3-a707-4da2-8d83-222dc50e4670-5/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20181226_121138.jpg,,TRUE, +N1,59434,sortie-c2290ea3-a707-4da2-8d83-222dc50e4670,https://biolit.fr/sorties/sortie-c2290ea3-a707-4da2-8d83-222dc50e4670/,Phil,,12/26/2018 0:00,12.0000000,12.0:15,47.798808000000,-4.17720800000,,Loctudy - Finistère,41691,observation-c2290ea3-a707-4da2-8d83-222dc50e4670-6,https://biolit.fr/observations/observation-c2290ea3-a707-4da2-8d83-222dc50e4670-6/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20181226_121002.jpg,,TRUE, +N1,59434,sortie-c2290ea3-a707-4da2-8d83-222dc50e4670,https://biolit.fr/sorties/sortie-c2290ea3-a707-4da2-8d83-222dc50e4670/,Phil,,12/26/2018 0:00,12.0000000,12.0:15,47.798808000000,-4.17720800000,,Loctudy - Finistère,41693,observation-c2290ea3-a707-4da2-8d83-222dc50e4670-7,https://biolit.fr/observations/observation-c2290ea3-a707-4da2-8d83-222dc50e4670-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181226_120949.jpg,,FALSE, +N1,59435,sortie-a6dc0269-a33c-451c-b4fb-3014c851819b,https://biolit.fr/sorties/sortie-a6dc0269-a33c-451c-b4fb-3014c851819b/,RBBBM,,1/21/2019 0:00,21.0000000,23.0000000,47.784535000000,-3.701508000000,,Moëlan plage de Trenez,41695,observation-a6dc0269-a33c-451c-b4fb-3014c851819b,https://biolit.fr/observations/observation-a6dc0269-a33c-451c-b4fb-3014c851819b/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3231-scaled.jpg,,TRUE, +N1,59435,sortie-a6dc0269-a33c-451c-b4fb-3014c851819b,https://biolit.fr/sorties/sortie-a6dc0269-a33c-451c-b4fb-3014c851819b/,RBBBM,,1/21/2019 0:00,21.0000000,23.0000000,47.784535000000,-3.701508000000,,Moëlan plage de Trenez,41697,observation-a6dc0269-a33c-451c-b4fb-3014c851819b-2,https://biolit.fr/observations/observation-a6dc0269-a33c-451c-b4fb-3014c851819b-2/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_3222-scaled.jpg,,TRUE, +N1,59435,sortie-a6dc0269-a33c-451c-b4fb-3014c851819b,https://biolit.fr/sorties/sortie-a6dc0269-a33c-451c-b4fb-3014c851819b/,RBBBM,,1/21/2019 0:00,21.0000000,23.0000000,47.784535000000,-3.701508000000,,Moëlan plage de Trenez,41699,observation-a6dc0269-a33c-451c-b4fb-3014c851819b-3,https://biolit.fr/observations/observation-a6dc0269-a33c-451c-b4fb-3014c851819b-3/,Patella pellucida,Helcion,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3244-scaled.jpg,,TRUE, +N1,59435,sortie-a6dc0269-a33c-451c-b4fb-3014c851819b,https://biolit.fr/sorties/sortie-a6dc0269-a33c-451c-b4fb-3014c851819b/,RBBBM,,1/21/2019 0:00,21.0000000,23.0000000,47.784535000000,-3.701508000000,,Moëlan plage de Trenez,41701,observation-a6dc0269-a33c-451c-b4fb-3014c851819b-4,https://biolit.fr/observations/observation-a6dc0269-a33c-451c-b4fb-3014c851819b-4/,Tethya citrina,Orange de mer de Manche Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3256-scaled.jpg,,TRUE, +N1,59435,sortie-a6dc0269-a33c-451c-b4fb-3014c851819b,https://biolit.fr/sorties/sortie-a6dc0269-a33c-451c-b4fb-3014c851819b/,RBBBM,,1/21/2019 0:00,21.0000000,23.0000000,47.784535000000,-3.701508000000,,Moëlan plage de Trenez,41703,observation-a6dc0269-a33c-451c-b4fb-3014c851819b-5,https://biolit.fr/observations/observation-a6dc0269-a33c-451c-b4fb-3014c851819b-5/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3257-scaled.jpg,,TRUE, +N1,59435,sortie-a6dc0269-a33c-451c-b4fb-3014c851819b,https://biolit.fr/sorties/sortie-a6dc0269-a33c-451c-b4fb-3014c851819b/,RBBBM,,1/21/2019 0:00,21.0000000,23.0000000,47.784535000000,-3.701508000000,,Moëlan plage de Trenez,41705,observation-a6dc0269-a33c-451c-b4fb-3014c851819b-6,https://biolit.fr/observations/observation-a6dc0269-a33c-451c-b4fb-3014c851819b-6/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3247-scaled.jpg,,TRUE, +N1,59436,sortie-4f416cee-e967-44bc-8472-48d79c5ade45,https://biolit.fr/sorties/sortie-4f416cee-e967-44bc-8472-48d79c5ade45/,pamatelo,,01/12/2019,11.0000000,12.0000000,46.190456000000,2.355849000000,,"Ensues la redonne ,",41707,observation-4f416cee-e967-44bc-8472-48d79c5ade45,https://biolit.fr/observations/observation-4f416cee-e967-44bc-8472-48d79c5ade45/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190112_115708 (2)-scaled.jpg,,FALSE, +N1,59436,sortie-4f416cee-e967-44bc-8472-48d79c5ade45,https://biolit.fr/sorties/sortie-4f416cee-e967-44bc-8472-48d79c5ade45/,pamatelo,,01/12/2019,11.0000000,12.0000000,46.190456000000,2.355849000000,,"Ensues la redonne ,",41709,observation-4f416cee-e967-44bc-8472-48d79c5ade45-2,https://biolit.fr/observations/observation-4f416cee-e967-44bc-8472-48d79c5ade45-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20190112_121552-scaled.jpg,,FALSE, +N1,59437,sortie-5a703b67-32b3-4b56-ba1c-488b58d96635,https://biolit.fr/sorties/sortie-5a703b67-32b3-4b56-ba1c-488b58d96635/,collège paul Eluard,,01/08/2019,14.0000000,16.0000000,50.688389000000,1.549227000000,,ningles,41711,observation-5a703b67-32b3-4b56-ba1c-488b58d96635,https://biolit.fr/observations/observation-5a703b67-32b3-4b56-ba1c-488b58d96635/,,,,https://biolit.fr/wp-content/uploads/2023/07/kyllian2-scaled.jpg,,FALSE, +N1,59438,sortie-215869e9-85cf-43cc-8978-834f3b0aaacd,https://biolit.fr/sorties/sortie-215869e9-85cf-43cc-8978-834f3b0aaacd/,collège paul Eluard,,12/18/2018 0:00,14.0000000,16.0000000,50.341933000000,1.541030000000,,ningles,41713,observation-215869e9-85cf-43cc-8978-834f3b0aaacd,https://biolit.fr/observations/observation-215869e9-85cf-43cc-8978-834f3b0aaacd/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/07/lucas2.jpg,,TRUE, +N1,59439,sortie-70e965bc-7ec7-4a36-b022-789747163873,https://biolit.fr/sorties/sortie-70e965bc-7ec7-4a36-b022-789747163873/,collège paul Eluard,,12/18/2018 0:00,15.0000000,15.0000000,50.13112800000,1.62342800000,,ningles,41715,observation-70e965bc-7ec7-4a36-b022-789747163873,https://biolit.fr/observations/observation-70e965bc-7ec7-4a36-b022-789747163873/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/jessie4-scaled.jpg,,TRUE, +N1,59440,sortie-aa58e000-f917-4d3f-9672-8e40c5a0b465,https://biolit.fr/sorties/sortie-aa58e000-f917-4d3f-9672-8e40c5a0b465/,ChristineSG,,01/01/2019,14.0000000,15.0000000,44.1841870000,-1.304236000000,,Mimizan plage,41717,observation-aa58e000-f917-4d3f-9672-8e40c5a0b465,https://biolit.fr/observations/observation-aa58e000-f917-4d3f-9672-8e40c5a0b465/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/étoile 1.png,,TRUE, +N1,59440,sortie-aa58e000-f917-4d3f-9672-8e40c5a0b465,https://biolit.fr/sorties/sortie-aa58e000-f917-4d3f-9672-8e40c5a0b465/,ChristineSG,,01/01/2019,14.0000000,15.0000000,44.1841870000,-1.304236000000,,Mimizan plage,41719,observation-aa58e000-f917-4d3f-9672-8e40c5a0b465-2,https://biolit.fr/observations/observation-aa58e000-f917-4d3f-9672-8e40c5a0b465-2/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/étoile 2.png,,TRUE, +N1,59440,sortie-aa58e000-f917-4d3f-9672-8e40c5a0b465,https://biolit.fr/sorties/sortie-aa58e000-f917-4d3f-9672-8e40c5a0b465/,ChristineSG,,01/01/2019,14.0000000,15.0000000,44.1841870000,-1.304236000000,,Mimizan plage,41721,observation-aa58e000-f917-4d3f-9672-8e40c5a0b465-3,https://biolit.fr/observations/observation-aa58e000-f917-4d3f-9672-8e40c5a0b465-3/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/étoile 3.png,,TRUE, +N1,59441,sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc,https://biolit.fr/sorties/sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc/,Guillaume D,,11/07/2018,10.0000000,12.0000000,46.110357000000,-1.139154000000,,"Angoulins, Pointe du Chay",41723,observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc,https://biolit.fr/observations/observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181107_101103_5mo.jpg,,FALSE, +N1,59441,sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc,https://biolit.fr/sorties/sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc/,Guillaume D,,11/07/2018,10.0000000,12.0000000,46.110357000000,-1.139154000000,,"Angoulins, Pointe du Chay",41725,observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-2,https://biolit.fr/observations/observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181107_101410_5mo.jpg,,FALSE, +N1,59441,sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc,https://biolit.fr/sorties/sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc/,Guillaume D,,11/07/2018,10.0000000,12.0000000,46.110357000000,-1.139154000000,,"Angoulins, Pointe du Chay",41727,observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-3,https://biolit.fr/observations/observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-3/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181107_102402-scaled.jpg,,TRUE, +N1,59441,sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc,https://biolit.fr/sorties/sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc/,Guillaume D,,11/07/2018,10.0000000,12.0000000,46.110357000000,-1.139154000000,,"Angoulins, Pointe du Chay",41729,observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-4,https://biolit.fr/observations/observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181107_102445-scaled.jpg,,FALSE, +N1,59441,sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc,https://biolit.fr/sorties/sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc/,Guillaume D,,11/07/2018,10.0000000,12.0000000,46.110357000000,-1.139154000000,,"Angoulins, Pointe du Chay",41731,observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-5,https://biolit.fr/observations/observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-5/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181107_102804_5mo.jpg,,TRUE, +N1,59441,sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc,https://biolit.fr/sorties/sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc/,Guillaume D,,11/07/2018,10.0000000,12.0000000,46.110357000000,-1.139154000000,,"Angoulins, Pointe du Chay",41733,observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-6,https://biolit.fr/observations/observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-6/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181107_103052-scaled.jpg,,TRUE, +N1,59441,sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc,https://biolit.fr/sorties/sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc/,Guillaume D,,11/07/2018,10.0000000,12.0000000,46.110357000000,-1.139154000000,,"Angoulins, Pointe du Chay",41735,observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-7,https://biolit.fr/observations/observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-7/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181107_104309-scaled.jpg,,TRUE, +N1,59441,sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc,https://biolit.fr/sorties/sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc/,Guillaume D,,11/07/2018,10.0000000,12.0000000,46.110357000000,-1.139154000000,,"Angoulins, Pointe du Chay",41737,observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-8,https://biolit.fr/observations/observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-8/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181107_104709-scaled.jpg,,TRUE, +N1,59441,sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc,https://biolit.fr/sorties/sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc/,Guillaume D,,11/07/2018,10.0000000,12.0000000,46.110357000000,-1.139154000000,,"Angoulins, Pointe du Chay",41739,observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-9,https://biolit.fr/observations/observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-9/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181107_110807-scaled.jpg,,TRUE, +N1,59441,sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc,https://biolit.fr/sorties/sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc/,Guillaume D,,11/07/2018,10.0000000,12.0000000,46.110357000000,-1.139154000000,,"Angoulins, Pointe du Chay",41741,observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-10,https://biolit.fr/observations/observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-10/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181107_111203-scaled.jpg,,TRUE, +N1,59441,sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc,https://biolit.fr/sorties/sortie-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc/,Guillaume D,,11/07/2018,10.0000000,12.0000000,46.110357000000,-1.139154000000,,"Angoulins, Pointe du Chay",41743,observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-11,https://biolit.fr/observations/observation-a62fdc82-e1dd-4708-9ffb-0a2d46981ebc-11/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181107_111803-scaled.jpg,,TRUE, +N1,59442,sortie-d96fb581-f232-46b8-9036-e29f1be504fc,https://biolit.fr/sorties/sortie-d96fb581-f232-46b8-9036-e29f1be504fc/,Phil,,11/24/2018 0:00,11.0000000,11.0000000,47.796733000000,-4.17992000000,,Loctudy - Finistère,41745,observation-d96fb581-f232-46b8-9036-e29f1be504fc,https://biolit.fr/observations/observation-d96fb581-f232-46b8-9036-e29f1be504fc/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/20181124_113041.jpg,,TRUE, +N1,59442,sortie-d96fb581-f232-46b8-9036-e29f1be504fc,https://biolit.fr/sorties/sortie-d96fb581-f232-46b8-9036-e29f1be504fc/,Phil,,11/24/2018 0:00,11.0000000,11.0000000,47.796733000000,-4.17992000000,,Loctudy - Finistère,41747,observation-d96fb581-f232-46b8-9036-e29f1be504fc-2,https://biolit.fr/observations/observation-d96fb581-f232-46b8-9036-e29f1be504fc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181124_112920.jpg,,FALSE, +N1,59442,sortie-d96fb581-f232-46b8-9036-e29f1be504fc,https://biolit.fr/sorties/sortie-d96fb581-f232-46b8-9036-e29f1be504fc/,Phil,,11/24/2018 0:00,11.0000000,11.0000000,47.796733000000,-4.17992000000,,Loctudy - Finistère,41749,observation-d96fb581-f232-46b8-9036-e29f1be504fc-3,https://biolit.fr/observations/observation-d96fb581-f232-46b8-9036-e29f1be504fc-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181124_113050.jpg,,FALSE, +N1,59442,sortie-d96fb581-f232-46b8-9036-e29f1be504fc,https://biolit.fr/sorties/sortie-d96fb581-f232-46b8-9036-e29f1be504fc/,Phil,,11/24/2018 0:00,11.0000000,11.0000000,47.796733000000,-4.17992000000,,Loctudy - Finistère,41751,observation-d96fb581-f232-46b8-9036-e29f1be504fc-4,https://biolit.fr/observations/observation-d96fb581-f232-46b8-9036-e29f1be504fc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181124_113112.jpg,,FALSE, +N1,59442,sortie-d96fb581-f232-46b8-9036-e29f1be504fc,https://biolit.fr/sorties/sortie-d96fb581-f232-46b8-9036-e29f1be504fc/,Phil,,11/24/2018 0:00,11.0000000,11.0000000,47.796733000000,-4.17992000000,,Loctudy - Finistère,41753,observation-d96fb581-f232-46b8-9036-e29f1be504fc-5,https://biolit.fr/observations/observation-d96fb581-f232-46b8-9036-e29f1be504fc-5/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20181124_113318.jpg,,TRUE, +N1,59442,sortie-d96fb581-f232-46b8-9036-e29f1be504fc,https://biolit.fr/sorties/sortie-d96fb581-f232-46b8-9036-e29f1be504fc/,Phil,,11/24/2018 0:00,11.0000000,11.0000000,47.796733000000,-4.17992000000,,Loctudy - Finistère,41755,observation-d96fb581-f232-46b8-9036-e29f1be504fc-6,https://biolit.fr/observations/observation-d96fb581-f232-46b8-9036-e29f1be504fc-6/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/20181124_113324.jpg,,TRUE, +N1,59442,sortie-d96fb581-f232-46b8-9036-e29f1be504fc,https://biolit.fr/sorties/sortie-d96fb581-f232-46b8-9036-e29f1be504fc/,Phil,,11/24/2018 0:00,11.0000000,11.0000000,47.796733000000,-4.17992000000,,Loctudy - Finistère,41757,observation-d96fb581-f232-46b8-9036-e29f1be504fc-7,https://biolit.fr/observations/observation-d96fb581-f232-46b8-9036-e29f1be504fc-7/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20181124_113350.jpg,,TRUE, +N1,59443,sortie-7b071301-91a5-43d5-ac29-4263324cd01a,https://biolit.fr/sorties/sortie-7b071301-91a5-43d5-ac29-4263324cd01a/,Phil,,7/16/2018 0:00,13.0:15,13.0000000,47.809569000000,-3.712063000000,,Moëlan-sur-Mer - Finistère,41759,observation-7b071301-91a5-43d5-ac29-4263324cd01a,https://biolit.fr/observations/observation-7b071301-91a5-43d5-ac29-4263324cd01a/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/P1110767_0.JPG,,TRUE, +N1,59443,sortie-7b071301-91a5-43d5-ac29-4263324cd01a,https://biolit.fr/sorties/sortie-7b071301-91a5-43d5-ac29-4263324cd01a/,Phil,,7/16/2018 0:00,13.0:15,13.0000000,47.809569000000,-3.712063000000,,Moëlan-sur-Mer - Finistère,41761,observation-7b071301-91a5-43d5-ac29-4263324cd01a-2,https://biolit.fr/observations/observation-7b071301-91a5-43d5-ac29-4263324cd01a-2/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/P1110768.JPG,,TRUE, +N1,59443,sortie-7b071301-91a5-43d5-ac29-4263324cd01a,https://biolit.fr/sorties/sortie-7b071301-91a5-43d5-ac29-4263324cd01a/,Phil,,7/16/2018 0:00,13.0:15,13.0000000,47.809569000000,-3.712063000000,,Moëlan-sur-Mer - Finistère,41763,observation-7b071301-91a5-43d5-ac29-4263324cd01a-3,https://biolit.fr/observations/observation-7b071301-91a5-43d5-ac29-4263324cd01a-3/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/P1110770.JPG,,TRUE, +N1,59443,sortie-7b071301-91a5-43d5-ac29-4263324cd01a,https://biolit.fr/sorties/sortie-7b071301-91a5-43d5-ac29-4263324cd01a/,Phil,,7/16/2018 0:00,13.0:15,13.0000000,47.809569000000,-3.712063000000,,Moëlan-sur-Mer - Finistère,41765,observation-7b071301-91a5-43d5-ac29-4263324cd01a-4,https://biolit.fr/observations/observation-7b071301-91a5-43d5-ac29-4263324cd01a-4/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/P1110771.JPG,,TRUE, +N1,59443,sortie-7b071301-91a5-43d5-ac29-4263324cd01a,https://biolit.fr/sorties/sortie-7b071301-91a5-43d5-ac29-4263324cd01a/,Phil,,7/16/2018 0:00,13.0:15,13.0000000,47.809569000000,-3.712063000000,,Moëlan-sur-Mer - Finistère,41767,observation-7b071301-91a5-43d5-ac29-4263324cd01a-5,https://biolit.fr/observations/observation-7b071301-91a5-43d5-ac29-4263324cd01a-5/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110772.JPG,,TRUE, +N1,59444,sortie-faf88f5a-e603-4bb5-8925-537359bca1e0,https://biolit.fr/sorties/sortie-faf88f5a-e603-4bb5-8925-537359bca1e0/,Phil,,11/24/2018 0:00,11.0000000,11.0000000,47.797407000000,-4.178195000000,,Loctudy - Finistère,41769,observation-faf88f5a-e603-4bb5-8925-537359bca1e0,https://biolit.fr/observations/observation-faf88f5a-e603-4bb5-8925-537359bca1e0/,Aplysilla rosea,Aplysille rose,,https://biolit.fr/wp-content/uploads/2023/07/20181124_112742.jpg,,TRUE, +N1,59444,sortie-faf88f5a-e603-4bb5-8925-537359bca1e0,https://biolit.fr/sorties/sortie-faf88f5a-e603-4bb5-8925-537359bca1e0/,Phil,,11/24/2018 0:00,11.0000000,11.0000000,47.797407000000,-4.178195000000,,Loctudy - Finistère,41771,observation-faf88f5a-e603-4bb5-8925-537359bca1e0-2,https://biolit.fr/observations/observation-faf88f5a-e603-4bb5-8925-537359bca1e0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181124_112748.jpg,,FALSE, +N1,59444,sortie-faf88f5a-e603-4bb5-8925-537359bca1e0,https://biolit.fr/sorties/sortie-faf88f5a-e603-4bb5-8925-537359bca1e0/,Phil,,11/24/2018 0:00,11.0000000,11.0000000,47.797407000000,-4.178195000000,,Loctudy - Finistère,41773,observation-faf88f5a-e603-4bb5-8925-537359bca1e0-3,https://biolit.fr/observations/observation-faf88f5a-e603-4bb5-8925-537359bca1e0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181124_112751.jpg,,FALSE, +N1,59444,sortie-faf88f5a-e603-4bb5-8925-537359bca1e0,https://biolit.fr/sorties/sortie-faf88f5a-e603-4bb5-8925-537359bca1e0/,Phil,,11/24/2018 0:00,11.0000000,11.0000000,47.797407000000,-4.178195000000,,Loctudy - Finistère,41775,observation-faf88f5a-e603-4bb5-8925-537359bca1e0-4,https://biolit.fr/observations/observation-faf88f5a-e603-4bb5-8925-537359bca1e0-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181124_112503.jpg,,FALSE, +N1,59444,sortie-faf88f5a-e603-4bb5-8925-537359bca1e0,https://biolit.fr/sorties/sortie-faf88f5a-e603-4bb5-8925-537359bca1e0/,Phil,,11/24/2018 0:00,11.0000000,11.0000000,47.797407000000,-4.178195000000,,Loctudy - Finistère,41777,observation-faf88f5a-e603-4bb5-8925-537359bca1e0-5,https://biolit.fr/observations/observation-faf88f5a-e603-4bb5-8925-537359bca1e0-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181124_112453.jpg,,FALSE, +N1,59445,sortie-cc85d2e5-7744-44b9-84fc-3314f8a52176,https://biolit.fr/sorties/sortie-cc85d2e5-7744-44b9-84fc-3314f8a52176/,Phil,,7/22/2018 0:00,11.0000000,14.0000000,47.708393000000,-3.991951000000,,Fouesnant - Finistère,41779,observation-cc85d2e5-7744-44b9-84fc-3314f8a52176,https://biolit.fr/observations/observation-cc85d2e5-7744-44b9-84fc-3314f8a52176/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/P1110988.JPG,,TRUE, +N1,59445,sortie-cc85d2e5-7744-44b9-84fc-3314f8a52176,https://biolit.fr/sorties/sortie-cc85d2e5-7744-44b9-84fc-3314f8a52176/,Phil,,7/22/2018 0:00,11.0000000,14.0000000,47.708393000000,-3.991951000000,,Fouesnant - Finistère,41781,observation-cc85d2e5-7744-44b9-84fc-3314f8a52176-2,https://biolit.fr/observations/observation-cc85d2e5-7744-44b9-84fc-3314f8a52176-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110985.JPG,,FALSE, +N1,59445,sortie-cc85d2e5-7744-44b9-84fc-3314f8a52176,https://biolit.fr/sorties/sortie-cc85d2e5-7744-44b9-84fc-3314f8a52176/,Phil,,7/22/2018 0:00,11.0000000,14.0000000,47.708393000000,-3.991951000000,,Fouesnant - Finistère,41783,observation-cc85d2e5-7744-44b9-84fc-3314f8a52176-3,https://biolit.fr/observations/observation-cc85d2e5-7744-44b9-84fc-3314f8a52176-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110984.JPG,,FALSE, +N1,59445,sortie-cc85d2e5-7744-44b9-84fc-3314f8a52176,https://biolit.fr/sorties/sortie-cc85d2e5-7744-44b9-84fc-3314f8a52176/,Phil,,7/22/2018 0:00,11.0000000,14.0000000,47.708393000000,-3.991951000000,,Fouesnant - Finistère,41785,observation-cc85d2e5-7744-44b9-84fc-3314f8a52176-4,https://biolit.fr/observations/observation-cc85d2e5-7744-44b9-84fc-3314f8a52176-4/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110983.JPG,,TRUE, +N1,59445,sortie-cc85d2e5-7744-44b9-84fc-3314f8a52176,https://biolit.fr/sorties/sortie-cc85d2e5-7744-44b9-84fc-3314f8a52176/,Phil,,7/22/2018 0:00,11.0000000,14.0000000,47.708393000000,-3.991951000000,,Fouesnant - Finistère,41787,observation-cc85d2e5-7744-44b9-84fc-3314f8a52176-5,https://biolit.fr/observations/observation-cc85d2e5-7744-44b9-84fc-3314f8a52176-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110977.JPG,,FALSE, +N1,59445,sortie-cc85d2e5-7744-44b9-84fc-3314f8a52176,https://biolit.fr/sorties/sortie-cc85d2e5-7744-44b9-84fc-3314f8a52176/,Phil,,7/22/2018 0:00,11.0000000,14.0000000,47.708393000000,-3.991951000000,,Fouesnant - Finistère,41789,observation-cc85d2e5-7744-44b9-84fc-3314f8a52176-6,https://biolit.fr/observations/observation-cc85d2e5-7744-44b9-84fc-3314f8a52176-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110973.JPG,,FALSE, +N1,59446,sortie-d87059a6-16c9-4369-8867-a0ba759d72b9,https://biolit.fr/sorties/sortie-d87059a6-16c9-4369-8867-a0ba759d72b9/,Phil,,11/24/2018 0:00,11.000005,11.0000000,47.797740000000,-4.178452000000,,Loctudy - Finistère,41791,observation-d87059a6-16c9-4369-8867-a0ba759d72b9,https://biolit.fr/observations/observation-d87059a6-16c9-4369-8867-a0ba759d72b9/,Symphodus melops,Crénilabre commun,,https://biolit.fr/wp-content/uploads/2023/07/20181124_110501.jpg,,TRUE, +N1,59446,sortie-d87059a6-16c9-4369-8867-a0ba759d72b9,https://biolit.fr/sorties/sortie-d87059a6-16c9-4369-8867-a0ba759d72b9/,Phil,,11/24/2018 0:00,11.000005,11.0000000,47.797740000000,-4.178452000000,,Loctudy - Finistère,41793,observation-d87059a6-16c9-4369-8867-a0ba759d72b9-2,https://biolit.fr/observations/observation-d87059a6-16c9-4369-8867-a0ba759d72b9-2/,Symphodus melops,Crénilabre commun,,https://biolit.fr/wp-content/uploads/2023/07/20181124_110427.jpg,,TRUE, +N1,59446,sortie-d87059a6-16c9-4369-8867-a0ba759d72b9,https://biolit.fr/sorties/sortie-d87059a6-16c9-4369-8867-a0ba759d72b9/,Phil,,11/24/2018 0:00,11.000005,11.0000000,47.797740000000,-4.178452000000,,Loctudy - Finistère,41795,observation-d87059a6-16c9-4369-8867-a0ba759d72b9-3,https://biolit.fr/observations/observation-d87059a6-16c9-4369-8867-a0ba759d72b9-3/,Symphodus melops,Crénilabre commun,,https://biolit.fr/wp-content/uploads/2023/07/20181124_110627.jpg,,TRUE, +N1,59447,sortie-bee454f0-6be3-46f3-9e7f-69771b70e02b,https://biolit.fr/sorties/sortie-bee454f0-6be3-46f3-9e7f-69771b70e02b/,Phil,,11/25/2018 0:00,14.0000000,14.0000000,47.895794000000,-3.96669100000,,La Forêt-Fouesnant - Finistère,41797,observation-bee454f0-6be3-46f3-9e7f-69771b70e02b,https://biolit.fr/observations/observation-bee454f0-6be3-46f3-9e7f-69771b70e02b/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/P1120316.JPG,,TRUE, +N1,59447,sortie-bee454f0-6be3-46f3-9e7f-69771b70e02b,https://biolit.fr/sorties/sortie-bee454f0-6be3-46f3-9e7f-69771b70e02b/,Phil,,11/25/2018 0:00,14.0000000,14.0000000,47.895794000000,-3.96669100000,,La Forêt-Fouesnant - Finistère,41799,observation-bee454f0-6be3-46f3-9e7f-69771b70e02b-2,https://biolit.fr/observations/observation-bee454f0-6be3-46f3-9e7f-69771b70e02b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120313.JPG,,FALSE, +N1,59447,sortie-bee454f0-6be3-46f3-9e7f-69771b70e02b,https://biolit.fr/sorties/sortie-bee454f0-6be3-46f3-9e7f-69771b70e02b/,Phil,,11/25/2018 0:00,14.0000000,14.0000000,47.895794000000,-3.96669100000,,La Forêt-Fouesnant - Finistère,41801,observation-bee454f0-6be3-46f3-9e7f-69771b70e02b-3,https://biolit.fr/observations/observation-bee454f0-6be3-46f3-9e7f-69771b70e02b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120312.JPG,,FALSE, +N1,59447,sortie-bee454f0-6be3-46f3-9e7f-69771b70e02b,https://biolit.fr/sorties/sortie-bee454f0-6be3-46f3-9e7f-69771b70e02b/,Phil,,11/25/2018 0:00,14.0000000,14.0000000,47.895794000000,-3.96669100000,,La Forêt-Fouesnant - Finistère,41803,observation-bee454f0-6be3-46f3-9e7f-69771b70e02b-4,https://biolit.fr/observations/observation-bee454f0-6be3-46f3-9e7f-69771b70e02b-4/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/P1120317.JPG,,TRUE, +N1,59447,sortie-bee454f0-6be3-46f3-9e7f-69771b70e02b,https://biolit.fr/sorties/sortie-bee454f0-6be3-46f3-9e7f-69771b70e02b/,Phil,,11/25/2018 0:00,14.0000000,14.0000000,47.895794000000,-3.96669100000,,La Forêt-Fouesnant - Finistère,41805,observation-bee454f0-6be3-46f3-9e7f-69771b70e02b-5,https://biolit.fr/observations/observation-bee454f0-6be3-46f3-9e7f-69771b70e02b-5/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/P1120319.JPG,,TRUE, +N1,59448,sortie-63b07bb6-42df-458b-876d-d9a65ef34dbd,https://biolit.fr/sorties/sortie-63b07bb6-42df-458b-876d-d9a65ef34dbd/,Phil,,11/24/2018 0:00,11.0000000,11.0:25,47.799066000000,-4.177585000000,,Loctudy - Finistère,41807,observation-63b07bb6-42df-458b-876d-d9a65ef34dbd,https://biolit.fr/observations/observation-63b07bb6-42df-458b-876d-d9a65ef34dbd/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20181124_112206-scaled.jpg,,TRUE, +N1,59448,sortie-63b07bb6-42df-458b-876d-d9a65ef34dbd,https://biolit.fr/sorties/sortie-63b07bb6-42df-458b-876d-d9a65ef34dbd/,Phil,,11/24/2018 0:00,11.0000000,11.0:25,47.799066000000,-4.177585000000,,Loctudy - Finistère,41809,observation-63b07bb6-42df-458b-876d-d9a65ef34dbd-2,https://biolit.fr/observations/observation-63b07bb6-42df-458b-876d-d9a65ef34dbd-2/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20181124_112232.jpg,,TRUE, +N1,59448,sortie-63b07bb6-42df-458b-876d-d9a65ef34dbd,https://biolit.fr/sorties/sortie-63b07bb6-42df-458b-876d-d9a65ef34dbd/,Phil,,11/24/2018 0:00,11.0000000,11.0:25,47.799066000000,-4.177585000000,,Loctudy - Finistère,41811,observation-63b07bb6-42df-458b-876d-d9a65ef34dbd-3,https://biolit.fr/observations/observation-63b07bb6-42df-458b-876d-d9a65ef34dbd-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181124_112324.jpg,,FALSE, +N1,59448,sortie-63b07bb6-42df-458b-876d-d9a65ef34dbd,https://biolit.fr/sorties/sortie-63b07bb6-42df-458b-876d-d9a65ef34dbd/,Phil,,11/24/2018 0:00,11.0000000,11.0:25,47.799066000000,-4.177585000000,,Loctudy - Finistère,41813,observation-63b07bb6-42df-458b-876d-d9a65ef34dbd-4,https://biolit.fr/observations/observation-63b07bb6-42df-458b-876d-d9a65ef34dbd-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181124_112104.jpg,,FALSE, +N1,59448,sortie-63b07bb6-42df-458b-876d-d9a65ef34dbd,https://biolit.fr/sorties/sortie-63b07bb6-42df-458b-876d-d9a65ef34dbd/,Phil,,11/24/2018 0:00,11.0000000,11.0:25,47.799066000000,-4.177585000000,,Loctudy - Finistère,41815,observation-63b07bb6-42df-458b-876d-d9a65ef34dbd-5,https://biolit.fr/observations/observation-63b07bb6-42df-458b-876d-d9a65ef34dbd-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181124_112051.jpg,,FALSE, +N1,59448,sortie-63b07bb6-42df-458b-876d-d9a65ef34dbd,https://biolit.fr/sorties/sortie-63b07bb6-42df-458b-876d-d9a65ef34dbd/,Phil,,11/24/2018 0:00,11.0000000,11.0:25,47.799066000000,-4.177585000000,,Loctudy - Finistère,41817,observation-63b07bb6-42df-458b-876d-d9a65ef34dbd-6,https://biolit.fr/observations/observation-63b07bb6-42df-458b-876d-d9a65ef34dbd-6/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/20181124_111255.jpg,,TRUE, +N1,59449,sortie-f2407619-e6a8-4cb4-8993-8932d20f7a59,https://biolit.fr/sorties/sortie-f2407619-e6a8-4cb4-8993-8932d20f7a59/,Phil,,11/18/2018 0:00,12.0000000,12.0000000,47.854072000000,-3.981076000000,,Fouesnant - Finistère,41819,observation-f2407619-e6a8-4cb4-8993-8932d20f7a59,https://biolit.fr/observations/observation-f2407619-e6a8-4cb4-8993-8932d20f7a59/,Membranipora membranacea,Membranipore,,https://biolit.fr/wp-content/uploads/2023/07/20181118_124053.jpg,,TRUE, +N1,59449,sortie-f2407619-e6a8-4cb4-8993-8932d20f7a59,https://biolit.fr/sorties/sortie-f2407619-e6a8-4cb4-8993-8932d20f7a59/,Phil,,11/18/2018 0:00,12.0000000,12.0000000,47.854072000000,-3.981076000000,,Fouesnant - Finistère,41821,observation-f2407619-e6a8-4cb4-8993-8932d20f7a59-2,https://biolit.fr/observations/observation-f2407619-e6a8-4cb4-8993-8932d20f7a59-2/,Membranipora membranacea,Membranipore,,https://biolit.fr/wp-content/uploads/2023/07/20181118_124105.jpg,,TRUE, +N1,59449,sortie-f2407619-e6a8-4cb4-8993-8932d20f7a59,https://biolit.fr/sorties/sortie-f2407619-e6a8-4cb4-8993-8932d20f7a59/,Phil,,11/18/2018 0:00,12.0000000,12.0000000,47.854072000000,-3.981076000000,,Fouesnant - Finistère,41823,observation-f2407619-e6a8-4cb4-8993-8932d20f7a59-3,https://biolit.fr/observations/observation-f2407619-e6a8-4cb4-8993-8932d20f7a59-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181118_124154.jpg,,FALSE, +N1,59449,sortie-f2407619-e6a8-4cb4-8993-8932d20f7a59,https://biolit.fr/sorties/sortie-f2407619-e6a8-4cb4-8993-8932d20f7a59/,Phil,,11/18/2018 0:00,12.0000000,12.0000000,47.854072000000,-3.981076000000,,Fouesnant - Finistère,41825,observation-f2407619-e6a8-4cb4-8993-8932d20f7a59-4,https://biolit.fr/observations/observation-f2407619-e6a8-4cb4-8993-8932d20f7a59-4/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/20181118_123616.jpg,,TRUE, +N1,59449,sortie-f2407619-e6a8-4cb4-8993-8932d20f7a59,https://biolit.fr/sorties/sortie-f2407619-e6a8-4cb4-8993-8932d20f7a59/,Phil,,11/18/2018 0:00,12.0000000,12.0000000,47.854072000000,-3.981076000000,,Fouesnant - Finistère,41827,observation-f2407619-e6a8-4cb4-8993-8932d20f7a59-5,https://biolit.fr/observations/observation-f2407619-e6a8-4cb4-8993-8932d20f7a59-5/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20181118_123941.jpg,,TRUE, +N1,59450,sortie-104af9e2-911b-4c34-be32-c432ca5f21fe,https://biolit.fr/sorties/sortie-104af9e2-911b-4c34-be32-c432ca5f21fe/,Phil,,11/25/2018 0:00,14.0000000,14.0000000,47.896117000000,-3.963464000000,,La Forêt-Fouesnant - Finistère,41829,observation-104af9e2-911b-4c34-be32-c432ca5f21fe,https://biolit.fr/observations/observation-104af9e2-911b-4c34-be32-c432ca5f21fe/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1120294.JPG,,TRUE, +N1,59450,sortie-104af9e2-911b-4c34-be32-c432ca5f21fe,https://biolit.fr/sorties/sortie-104af9e2-911b-4c34-be32-c432ca5f21fe/,Phil,,11/25/2018 0:00,14.0000000,14.0000000,47.896117000000,-3.963464000000,,La Forêt-Fouesnant - Finistère,41831,observation-104af9e2-911b-4c34-be32-c432ca5f21fe-2,https://biolit.fr/observations/observation-104af9e2-911b-4c34-be32-c432ca5f21fe-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120304.JPG,,FALSE, +N1,59450,sortie-104af9e2-911b-4c34-be32-c432ca5f21fe,https://biolit.fr/sorties/sortie-104af9e2-911b-4c34-be32-c432ca5f21fe/,Phil,,11/25/2018 0:00,14.0000000,14.0000000,47.896117000000,-3.963464000000,,La Forêt-Fouesnant - Finistère,41833,observation-104af9e2-911b-4c34-be32-c432ca5f21fe-3,https://biolit.fr/observations/observation-104af9e2-911b-4c34-be32-c432ca5f21fe-3/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1120305.JPG,,TRUE, +N1,59450,sortie-104af9e2-911b-4c34-be32-c432ca5f21fe,https://biolit.fr/sorties/sortie-104af9e2-911b-4c34-be32-c432ca5f21fe/,Phil,,11/25/2018 0:00,14.0000000,14.0000000,47.896117000000,-3.963464000000,,La Forêt-Fouesnant - Finistère,41835,observation-104af9e2-911b-4c34-be32-c432ca5f21fe-4,https://biolit.fr/observations/observation-104af9e2-911b-4c34-be32-c432ca5f21fe-4/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1120308.JPG,,TRUE, +N1,59450,sortie-104af9e2-911b-4c34-be32-c432ca5f21fe,https://biolit.fr/sorties/sortie-104af9e2-911b-4c34-be32-c432ca5f21fe/,Phil,,11/25/2018 0:00,14.0000000,14.0000000,47.896117000000,-3.963464000000,,La Forêt-Fouesnant - Finistère,41837,observation-104af9e2-911b-4c34-be32-c432ca5f21fe-5,https://biolit.fr/observations/observation-104af9e2-911b-4c34-be32-c432ca5f21fe-5/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1120330.JPG,,TRUE, +N1,59450,sortie-104af9e2-911b-4c34-be32-c432ca5f21fe,https://biolit.fr/sorties/sortie-104af9e2-911b-4c34-be32-c432ca5f21fe/,Phil,,11/25/2018 0:00,14.0000000,14.0000000,47.896117000000,-3.963464000000,,La Forêt-Fouesnant - Finistère,41839,observation-104af9e2-911b-4c34-be32-c432ca5f21fe-6,https://biolit.fr/observations/observation-104af9e2-911b-4c34-be32-c432ca5f21fe-6/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1120340.JPG,,TRUE, +N1,59451,sortie-6366fb54-d802-4445-ba48-0dd99a93f824,https://biolit.fr/sorties/sortie-6366fb54-d802-4445-ba48-0dd99a93f824/,herve laurent,,11/28/2018 0:00,9.0:35,19.0000000,48.496849000000,-4.77828600000,,"kerizela, Porspoder 29840",41841,observation-6366fb54-d802-4445-ba48-0dd99a93f824,https://biolit.fr/observations/observation-6366fb54-d802-4445-ba48-0dd99a93f824/,Soestia zonaria,Soestia zonaria,,https://biolit.fr/wp-content/uploads/2023/07/20181128_180930-scaled.jpg,,TRUE, +N1,59451,sortie-6366fb54-d802-4445-ba48-0dd99a93f824,https://biolit.fr/sorties/sortie-6366fb54-d802-4445-ba48-0dd99a93f824/,herve laurent,,11/28/2018 0:00,9.0:35,19.0000000,48.496849000000,-4.77828600000,,"kerizela, Porspoder 29840",41843,observation-6366fb54-d802-4445-ba48-0dd99a93f824-2,https://biolit.fr/observations/observation-6366fb54-d802-4445-ba48-0dd99a93f824-2/,Soestia zonaria,Soestia zonaria,,https://biolit.fr/wp-content/uploads/2023/07/20181128_180900-scaled.jpg,,TRUE, +N1,59451,sortie-6366fb54-d802-4445-ba48-0dd99a93f824,https://biolit.fr/sorties/sortie-6366fb54-d802-4445-ba48-0dd99a93f824/,herve laurent,,11/28/2018 0:00,9.0:35,19.0000000,48.496849000000,-4.77828600000,,"kerizela, Porspoder 29840",41845,observation-6366fb54-d802-4445-ba48-0dd99a93f824-3,https://biolit.fr/observations/observation-6366fb54-d802-4445-ba48-0dd99a93f824-3/,Soestia zonaria,Soestia zonaria,,https://biolit.fr/wp-content/uploads/2023/07/20181128_181005-scaled.jpg,,TRUE, +N1,59452,sortie-5e993227-83fc-4ccc-837c-926e635a76cc,https://biolit.fr/sorties/sortie-5e993227-83fc-4ccc-837c-926e635a76cc/,Phil,,11/24/2018 0:00,11.000005,11.0000000,47.799112000000,-4.177972000000,,Loctudy - Finistère,41847,observation-5e993227-83fc-4ccc-837c-926e635a76cc,https://biolit.fr/observations/observation-5e993227-83fc-4ccc-837c-926e635a76cc/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181124_110328.jpg,,TRUE, +N1,59452,sortie-5e993227-83fc-4ccc-837c-926e635a76cc,https://biolit.fr/sorties/sortie-5e993227-83fc-4ccc-837c-926e635a76cc/,Phil,,11/24/2018 0:00,11.000005,11.0000000,47.799112000000,-4.177972000000,,Loctudy - Finistère,41849,observation-5e993227-83fc-4ccc-837c-926e635a76cc-2,https://biolit.fr/observations/observation-5e993227-83fc-4ccc-837c-926e635a76cc-2/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181124_110552.jpg,,TRUE, +N1,59452,sortie-5e993227-83fc-4ccc-837c-926e635a76cc,https://biolit.fr/sorties/sortie-5e993227-83fc-4ccc-837c-926e635a76cc/,Phil,,11/24/2018 0:00,11.000005,11.0000000,47.799112000000,-4.177972000000,,Loctudy - Finistère,41851,observation-5e993227-83fc-4ccc-837c-926e635a76cc-3,https://biolit.fr/observations/observation-5e993227-83fc-4ccc-837c-926e635a76cc-3/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181124_110707.jpg,,TRUE, +N1,59452,sortie-5e993227-83fc-4ccc-837c-926e635a76cc,https://biolit.fr/sorties/sortie-5e993227-83fc-4ccc-837c-926e635a76cc/,Phil,,11/24/2018 0:00,11.000005,11.0000000,47.799112000000,-4.177972000000,,Loctudy - Finistère,41853,observation-5e993227-83fc-4ccc-837c-926e635a76cc-4,https://biolit.fr/observations/observation-5e993227-83fc-4ccc-837c-926e635a76cc-4/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/20181124_110851.jpg,,TRUE, +N1,59453,sortie-28e708c9-e17c-4021-ae1c-85f43b979617,https://biolit.fr/sorties/sortie-28e708c9-e17c-4021-ae1c-85f43b979617/,Phil,,11/18/2018 0:00,12.0000000,12.0:35,47.854480000000,-3.980799000000,,Fouesnant - Finistère,41855,observation-28e708c9-e17c-4021-ae1c-85f43b979617,https://biolit.fr/observations/observation-28e708c9-e17c-4021-ae1c-85f43b979617/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181118_122912-scaled.jpg,,FALSE, +N1,59453,sortie-28e708c9-e17c-4021-ae1c-85f43b979617,https://biolit.fr/sorties/sortie-28e708c9-e17c-4021-ae1c-85f43b979617/,Phil,,11/18/2018 0:00,12.0000000,12.0:35,47.854480000000,-3.980799000000,,Fouesnant - Finistère,41857,observation-28e708c9-e17c-4021-ae1c-85f43b979617-2,https://biolit.fr/observations/observation-28e708c9-e17c-4021-ae1c-85f43b979617-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181118_123030-scaled.jpg,,FALSE, +N1,59453,sortie-28e708c9-e17c-4021-ae1c-85f43b979617,https://biolit.fr/sorties/sortie-28e708c9-e17c-4021-ae1c-85f43b979617/,Phil,,11/18/2018 0:00,12.0000000,12.0:35,47.854480000000,-3.980799000000,,Fouesnant - Finistère,41859,observation-28e708c9-e17c-4021-ae1c-85f43b979617-3,https://biolit.fr/observations/observation-28e708c9-e17c-4021-ae1c-85f43b979617-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181118_122953-scaled.jpg,,FALSE, +N1,59453,sortie-28e708c9-e17c-4021-ae1c-85f43b979617,https://biolit.fr/sorties/sortie-28e708c9-e17c-4021-ae1c-85f43b979617/,Phil,,11/18/2018 0:00,12.0000000,12.0:35,47.854480000000,-3.980799000000,,Fouesnant - Finistère,41861,observation-28e708c9-e17c-4021-ae1c-85f43b979617-4,https://biolit.fr/observations/observation-28e708c9-e17c-4021-ae1c-85f43b979617-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181118_123245.jpg,,FALSE, +N1,59453,sortie-28e708c9-e17c-4021-ae1c-85f43b979617,https://biolit.fr/sorties/sortie-28e708c9-e17c-4021-ae1c-85f43b979617/,Phil,,11/18/2018 0:00,12.0000000,12.0:35,47.854480000000,-3.980799000000,,Fouesnant - Finistère,41863,observation-28e708c9-e17c-4021-ae1c-85f43b979617-5,https://biolit.fr/observations/observation-28e708c9-e17c-4021-ae1c-85f43b979617-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181118_123449.jpg,,FALSE, +N1,59454,sortie-7ed30687-fa66-453e-ac3c-be56c55a445e,https://biolit.fr/sorties/sortie-7ed30687-fa66-453e-ac3c-be56c55a445e/,Phil,,7/22/2018 0:00,11.0000000,11.0000000,47.708283000000,-3.991667000000,,Fouesnant - Finistère,41865,observation-7ed30687-fa66-453e-ac3c-be56c55a445e,https://biolit.fr/observations/observation-7ed30687-fa66-453e-ac3c-be56c55a445e/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110963.JPG,,TRUE, +N1,59454,sortie-7ed30687-fa66-453e-ac3c-be56c55a445e,https://biolit.fr/sorties/sortie-7ed30687-fa66-453e-ac3c-be56c55a445e/,Phil,,7/22/2018 0:00,11.0000000,11.0000000,47.708283000000,-3.991667000000,,Fouesnant - Finistère,41867,observation-7ed30687-fa66-453e-ac3c-be56c55a445e-2,https://biolit.fr/observations/observation-7ed30687-fa66-453e-ac3c-be56c55a445e-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1110964.JPG,,TRUE, +N1,59454,sortie-7ed30687-fa66-453e-ac3c-be56c55a445e,https://biolit.fr/sorties/sortie-7ed30687-fa66-453e-ac3c-be56c55a445e/,Phil,,7/22/2018 0:00,11.0000000,11.0000000,47.708283000000,-3.991667000000,,Fouesnant - Finistère,41869,observation-7ed30687-fa66-453e-ac3c-be56c55a445e-3,https://biolit.fr/observations/observation-7ed30687-fa66-453e-ac3c-be56c55a445e-3/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/P1110966.JPG,,TRUE, +N1,59454,sortie-7ed30687-fa66-453e-ac3c-be56c55a445e,https://biolit.fr/sorties/sortie-7ed30687-fa66-453e-ac3c-be56c55a445e/,Phil,,7/22/2018 0:00,11.0000000,11.0000000,47.708283000000,-3.991667000000,,Fouesnant - Finistère,41871,observation-7ed30687-fa66-453e-ac3c-be56c55a445e-4,https://biolit.fr/observations/observation-7ed30687-fa66-453e-ac3c-be56c55a445e-4/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1110968.JPG,,TRUE, +N1,59454,sortie-7ed30687-fa66-453e-ac3c-be56c55a445e,https://biolit.fr/sorties/sortie-7ed30687-fa66-453e-ac3c-be56c55a445e/,Phil,,7/22/2018 0:00,11.0000000,11.0000000,47.708283000000,-3.991667000000,,Fouesnant - Finistère,41873,observation-7ed30687-fa66-453e-ac3c-be56c55a445e-5,https://biolit.fr/observations/observation-7ed30687-fa66-453e-ac3c-be56c55a445e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110970.JPG,,FALSE, +N1,59455,sortie-3dfc16ef-a521-49a6-92be-6eb2a4235a68,https://biolit.fr/sorties/sortie-3dfc16ef-a521-49a6-92be-6eb2a4235a68/,Phil,,11/24/2018 0:00,10.0:55,11.0000000,47.798422000000,-4.176744000000,,Loctudy - Finistère,41875,observation-3dfc16ef-a521-49a6-92be-6eb2a4235a68,https://biolit.fr/observations/observation-3dfc16ef-a521-49a6-92be-6eb2a4235a68/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20181124_105631.jpg,,TRUE, +N1,59455,sortie-3dfc16ef-a521-49a6-92be-6eb2a4235a68,https://biolit.fr/sorties/sortie-3dfc16ef-a521-49a6-92be-6eb2a4235a68/,Phil,,11/24/2018 0:00,10.0:55,11.0000000,47.798422000000,-4.176744000000,,Loctudy - Finistère,41877,observation-3dfc16ef-a521-49a6-92be-6eb2a4235a68-2,https://biolit.fr/observations/observation-3dfc16ef-a521-49a6-92be-6eb2a4235a68-2/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20181124_105555.jpg,,TRUE, +N1,59455,sortie-3dfc16ef-a521-49a6-92be-6eb2a4235a68,https://biolit.fr/sorties/sortie-3dfc16ef-a521-49a6-92be-6eb2a4235a68/,Phil,,11/24/2018 0:00,10.0:55,11.0000000,47.798422000000,-4.176744000000,,Loctudy - Finistère,41879,observation-3dfc16ef-a521-49a6-92be-6eb2a4235a68-3,https://biolit.fr/observations/observation-3dfc16ef-a521-49a6-92be-6eb2a4235a68-3/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20181124_105522.jpg,,TRUE, +N1,59455,sortie-3dfc16ef-a521-49a6-92be-6eb2a4235a68,https://biolit.fr/sorties/sortie-3dfc16ef-a521-49a6-92be-6eb2a4235a68/,Phil,,11/24/2018 0:00,10.0:55,11.0000000,47.798422000000,-4.176744000000,,Loctudy - Finistère,41881,observation-3dfc16ef-a521-49a6-92be-6eb2a4235a68-4,https://biolit.fr/observations/observation-3dfc16ef-a521-49a6-92be-6eb2a4235a68-4/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20181124_105405.jpg,,TRUE, +N1,59456,sortie-a9fe03c8-b0be-45c6-882c-180299669ac9,https://biolit.fr/sorties/sortie-a9fe03c8-b0be-45c6-882c-180299669ac9/,Phil,,11/12/2018,12.0000000,12.0000000,47.792629000000,-4.286689000000,,Gulivinec - Finistère,41883,observation-a9fe03c8-b0be-45c6-882c-180299669ac9,https://biolit.fr/observations/observation-a9fe03c8-b0be-45c6-882c-180299669ac9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181112_122301.jpg,,FALSE, +N1,59456,sortie-a9fe03c8-b0be-45c6-882c-180299669ac9,https://biolit.fr/sorties/sortie-a9fe03c8-b0be-45c6-882c-180299669ac9/,Phil,,11/12/2018,12.0000000,12.0000000,47.792629000000,-4.286689000000,,Gulivinec - Finistère,41885,observation-a9fe03c8-b0be-45c6-882c-180299669ac9-2,https://biolit.fr/observations/observation-a9fe03c8-b0be-45c6-882c-180299669ac9-2/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/20181112_122127.jpg,,TRUE, +N1,59456,sortie-a9fe03c8-b0be-45c6-882c-180299669ac9,https://biolit.fr/sorties/sortie-a9fe03c8-b0be-45c6-882c-180299669ac9/,Phil,,11/12/2018,12.0000000,12.0000000,47.792629000000,-4.286689000000,,Gulivinec - Finistère,41887,observation-a9fe03c8-b0be-45c6-882c-180299669ac9-3,https://biolit.fr/observations/observation-a9fe03c8-b0be-45c6-882c-180299669ac9-3/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/20181112_122046.jpg,,TRUE, +N1,59457,sortie-4a0ab20d-9f50-453e-a5d6-d83bcd523f07,https://biolit.fr/sorties/sortie-4a0ab20d-9f50-453e-a5d6-d83bcd523f07/,Phil,,10/26/2018 0:00,13.0000000,13.0000000,47.79668700000,-4.178890000000,,Loctudy - Finistère,41889,observation-4a0ab20d-9f50-453e-a5d6-d83bcd523f07,https://biolit.fr/observations/observation-4a0ab20d-9f50-453e-a5d6-d83bcd523f07/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181026_134524.jpg,,FALSE, +N1,59457,sortie-4a0ab20d-9f50-453e-a5d6-d83bcd523f07,https://biolit.fr/sorties/sortie-4a0ab20d-9f50-453e-a5d6-d83bcd523f07/,Phil,,10/26/2018 0:00,13.0000000,13.0000000,47.79668700000,-4.178890000000,,Loctudy - Finistère,41891,observation-4a0ab20d-9f50-453e-a5d6-d83bcd523f07-2,https://biolit.fr/observations/observation-4a0ab20d-9f50-453e-a5d6-d83bcd523f07-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181026_130902.jpg,,FALSE, +N1,59458,sortie-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/sorties/sortie-7ea0399e-87d8-458c-b036-582825d643b6/,Fleur,,11/18/2018 0:00,11.0000000,11.0000000,43.030911000000,6.103381000000,,"Plage avant Escampo-Barriou, Madrague, Presqu'île de Giens",41893,observation-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/observations/observation-7ea0399e-87d8-458c-b036-582825d643b6/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181118_111842-scaled.jpg,,TRUE, +N1,59458,sortie-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/sorties/sortie-7ea0399e-87d8-458c-b036-582825d643b6/,Fleur,,11/18/2018 0:00,11.0000000,11.0000000,43.030911000000,6.103381000000,,"Plage avant Escampo-Barriou, Madrague, Presqu'île de Giens",41895,observation-7ea0399e-87d8-458c-b036-582825d643b6-2,https://biolit.fr/observations/observation-7ea0399e-87d8-458c-b036-582825d643b6-2/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181118_111944-scaled.jpg,,TRUE, +N1,59458,sortie-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/sorties/sortie-7ea0399e-87d8-458c-b036-582825d643b6/,Fleur,,11/18/2018 0:00,11.0000000,11.0000000,43.030911000000,6.103381000000,,"Plage avant Escampo-Barriou, Madrague, Presqu'île de Giens",41897,observation-7ea0399e-87d8-458c-b036-582825d643b6-3,https://biolit.fr/observations/observation-7ea0399e-87d8-458c-b036-582825d643b6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181118_112047-scaled.jpg,,FALSE, +N1,59458,sortie-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/sorties/sortie-7ea0399e-87d8-458c-b036-582825d643b6/,Fleur,,11/18/2018 0:00,11.0000000,11.0000000,43.030911000000,6.103381000000,,"Plage avant Escampo-Barriou, Madrague, Presqu'île de Giens",41899,observation-7ea0399e-87d8-458c-b036-582825d643b6-4,https://biolit.fr/observations/observation-7ea0399e-87d8-458c-b036-582825d643b6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181118_112214-scaled.jpg,,FALSE, +N1,59458,sortie-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/sorties/sortie-7ea0399e-87d8-458c-b036-582825d643b6/,Fleur,,11/18/2018 0:00,11.0000000,11.0000000,43.030911000000,6.103381000000,,"Plage avant Escampo-Barriou, Madrague, Presqu'île de Giens",41901,observation-7ea0399e-87d8-458c-b036-582825d643b6-5,https://biolit.fr/observations/observation-7ea0399e-87d8-458c-b036-582825d643b6-5/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181118_112301-scaled.jpg,,TRUE, +N1,59458,sortie-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/sorties/sortie-7ea0399e-87d8-458c-b036-582825d643b6/,Fleur,,11/18/2018 0:00,11.0000000,11.0000000,43.030911000000,6.103381000000,,"Plage avant Escampo-Barriou, Madrague, Presqu'île de Giens",41903,observation-7ea0399e-87d8-458c-b036-582825d643b6-6,https://biolit.fr/observations/observation-7ea0399e-87d8-458c-b036-582825d643b6-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181118_112314-scaled.jpg,,FALSE, +N1,59458,sortie-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/sorties/sortie-7ea0399e-87d8-458c-b036-582825d643b6/,Fleur,,11/18/2018 0:00,11.0000000,11.0000000,43.030911000000,6.103381000000,,"Plage avant Escampo-Barriou, Madrague, Presqu'île de Giens",41905,observation-7ea0399e-87d8-458c-b036-582825d643b6-7,https://biolit.fr/observations/observation-7ea0399e-87d8-458c-b036-582825d643b6-7/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181118_112403-scaled.jpg,,TRUE, +N1,59458,sortie-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/sorties/sortie-7ea0399e-87d8-458c-b036-582825d643b6/,Fleur,,11/18/2018 0:00,11.0000000,11.0000000,43.030911000000,6.103381000000,,"Plage avant Escampo-Barriou, Madrague, Presqu'île de Giens",41907,observation-7ea0399e-87d8-458c-b036-582825d643b6-8,https://biolit.fr/observations/observation-7ea0399e-87d8-458c-b036-582825d643b6-8/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181118_112418-scaled.jpg,,TRUE, +N1,59458,sortie-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/sorties/sortie-7ea0399e-87d8-458c-b036-582825d643b6/,Fleur,,11/18/2018 0:00,11.0000000,11.0000000,43.030911000000,6.103381000000,,"Plage avant Escampo-Barriou, Madrague, Presqu'île de Giens",41909,observation-7ea0399e-87d8-458c-b036-582825d643b6-9,https://biolit.fr/observations/observation-7ea0399e-87d8-458c-b036-582825d643b6-9/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181118_112431-scaled.jpg,,TRUE, +N1,59458,sortie-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/sorties/sortie-7ea0399e-87d8-458c-b036-582825d643b6/,Fleur,,11/18/2018 0:00,11.0000000,11.0000000,43.030911000000,6.103381000000,,"Plage avant Escampo-Barriou, Madrague, Presqu'île de Giens",41911,observation-7ea0399e-87d8-458c-b036-582825d643b6-10,https://biolit.fr/observations/observation-7ea0399e-87d8-458c-b036-582825d643b6-10/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181118_112439-scaled.jpg,,TRUE, +N1,59458,sortie-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/sorties/sortie-7ea0399e-87d8-458c-b036-582825d643b6/,Fleur,,11/18/2018 0:00,11.0000000,11.0000000,43.030911000000,6.103381000000,,"Plage avant Escampo-Barriou, Madrague, Presqu'île de Giens",41913,observation-7ea0399e-87d8-458c-b036-582825d643b6-11,https://biolit.fr/observations/observation-7ea0399e-87d8-458c-b036-582825d643b6-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181118_112507-scaled.jpg,,FALSE, +N1,59458,sortie-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/sorties/sortie-7ea0399e-87d8-458c-b036-582825d643b6/,Fleur,,11/18/2018 0:00,11.0000000,11.0000000,43.030911000000,6.103381000000,,"Plage avant Escampo-Barriou, Madrague, Presqu'île de Giens",41915,observation-7ea0399e-87d8-458c-b036-582825d643b6-12,https://biolit.fr/observations/observation-7ea0399e-87d8-458c-b036-582825d643b6-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181118_112512-scaled.jpg,,FALSE, +N1,59458,sortie-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/sorties/sortie-7ea0399e-87d8-458c-b036-582825d643b6/,Fleur,,11/18/2018 0:00,11.0000000,11.0000000,43.030911000000,6.103381000000,,"Plage avant Escampo-Barriou, Madrague, Presqu'île de Giens",41917,observation-7ea0399e-87d8-458c-b036-582825d643b6-13,https://biolit.fr/observations/observation-7ea0399e-87d8-458c-b036-582825d643b6-13/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181118_112929-scaled.jpg,,TRUE, +N1,59458,sortie-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/sorties/sortie-7ea0399e-87d8-458c-b036-582825d643b6/,Fleur,,11/18/2018 0:00,11.0000000,11.0000000,43.030911000000,6.103381000000,,"Plage avant Escampo-Barriou, Madrague, Presqu'île de Giens",41919,observation-7ea0399e-87d8-458c-b036-582825d643b6-14,https://biolit.fr/observations/observation-7ea0399e-87d8-458c-b036-582825d643b6-14/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181118_112958-scaled.jpg,,TRUE, +N1,59458,sortie-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/sorties/sortie-7ea0399e-87d8-458c-b036-582825d643b6/,Fleur,,11/18/2018 0:00,11.0000000,11.0000000,43.030911000000,6.103381000000,,"Plage avant Escampo-Barriou, Madrague, Presqu'île de Giens",41921,observation-7ea0399e-87d8-458c-b036-582825d643b6-15,https://biolit.fr/observations/observation-7ea0399e-87d8-458c-b036-582825d643b6-15/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181118_113242-scaled.jpg,,TRUE, +N1,59458,sortie-7ea0399e-87d8-458c-b036-582825d643b6,https://biolit.fr/sorties/sortie-7ea0399e-87d8-458c-b036-582825d643b6/,Fleur,,11/18/2018 0:00,11.0000000,11.0000000,43.030911000000,6.103381000000,,"Plage avant Escampo-Barriou, Madrague, Presqu'île de Giens",41923,observation-7ea0399e-87d8-458c-b036-582825d643b6-16,https://biolit.fr/observations/observation-7ea0399e-87d8-458c-b036-582825d643b6-16/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20181118_113248-scaled.jpg,,TRUE, +N1,59459,sortie-0eccac41-6200-49c1-89f0-e59b092db8c0,https://biolit.fr/sorties/sortie-0eccac41-6200-49c1-89f0-e59b092db8c0/,Phil,,7/16/2018 0:00,14.0:15,14.0:25,47.809902000000,-3.712087000000,,Moëlan-sur-Mer - Finistère,41925,observation-0eccac41-6200-49c1-89f0-e59b092db8c0,https://biolit.fr/observations/observation-0eccac41-6200-49c1-89f0-e59b092db8c0/,Brissus unicolor,Oursin de sable gris,,https://biolit.fr/wp-content/uploads/2023/07/P1110858_0.JPG,,TRUE, +N1,59459,sortie-0eccac41-6200-49c1-89f0-e59b092db8c0,https://biolit.fr/sorties/sortie-0eccac41-6200-49c1-89f0-e59b092db8c0/,Phil,,7/16/2018 0:00,14.0:15,14.0:25,47.809902000000,-3.712087000000,,Moëlan-sur-Mer - Finistère,41927,observation-0eccac41-6200-49c1-89f0-e59b092db8c0-2,https://biolit.fr/observations/observation-0eccac41-6200-49c1-89f0-e59b092db8c0-2/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1110860_0.JPG,,TRUE, +N1,59459,sortie-0eccac41-6200-49c1-89f0-e59b092db8c0,https://biolit.fr/sorties/sortie-0eccac41-6200-49c1-89f0-e59b092db8c0/,Phil,,7/16/2018 0:00,14.0:15,14.0:25,47.809902000000,-3.712087000000,,Moëlan-sur-Mer - Finistère,41929,observation-0eccac41-6200-49c1-89f0-e59b092db8c0-3,https://biolit.fr/observations/observation-0eccac41-6200-49c1-89f0-e59b092db8c0-3/,Ensis siliqua,Couteau-silique,,https://biolit.fr/wp-content/uploads/2023/07/P1110861_0.JPG,,TRUE, +N1,59459,sortie-0eccac41-6200-49c1-89f0-e59b092db8c0,https://biolit.fr/sorties/sortie-0eccac41-6200-49c1-89f0-e59b092db8c0/,Phil,,7/16/2018 0:00,14.0:15,14.0:25,47.809902000000,-3.712087000000,,Moëlan-sur-Mer - Finistère,41931,observation-0eccac41-6200-49c1-89f0-e59b092db8c0-4,https://biolit.fr/observations/observation-0eccac41-6200-49c1-89f0-e59b092db8c0-4/,Ensis siliqua,Couteau-silique,,https://biolit.fr/wp-content/uploads/2023/07/P1110862.JPG,,TRUE, +N1,59460,sortie-6c64346f-deab-4ed6-8ee0-a8c21016cb6a,https://biolit.fr/sorties/sortie-6c64346f-deab-4ed6-8ee0-a8c21016cb6a/,Phil,,10/26/2018 0:00,12.0:55,13.0000000,47.796854000000,-4.177285000000,,Loctudy - Finistère,41933,observation-6c64346f-deab-4ed6-8ee0-a8c21016cb6a,https://biolit.fr/observations/observation-6c64346f-deab-4ed6-8ee0-a8c21016cb6a/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/20181026_125645.jpg,,TRUE, +N1,59460,sortie-6c64346f-deab-4ed6-8ee0-a8c21016cb6a,https://biolit.fr/sorties/sortie-6c64346f-deab-4ed6-8ee0-a8c21016cb6a/,Phil,,10/26/2018 0:00,12.0:55,13.0000000,47.796854000000,-4.177285000000,,Loctudy - Finistère,41935,observation-6c64346f-deab-4ed6-8ee0-a8c21016cb6a-2,https://biolit.fr/observations/observation-6c64346f-deab-4ed6-8ee0-a8c21016cb6a-2/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/20181026_125627.jpg,,TRUE, +N1,59460,sortie-6c64346f-deab-4ed6-8ee0-a8c21016cb6a,https://biolit.fr/sorties/sortie-6c64346f-deab-4ed6-8ee0-a8c21016cb6a/,Phil,,10/26/2018 0:00,12.0:55,13.0000000,47.796854000000,-4.177285000000,,Loctudy - Finistère,41937,observation-6c64346f-deab-4ed6-8ee0-a8c21016cb6a-3,https://biolit.fr/observations/observation-6c64346f-deab-4ed6-8ee0-a8c21016cb6a-3/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/20181026_125613.jpg,,TRUE, +N1,59460,sortie-6c64346f-deab-4ed6-8ee0-a8c21016cb6a,https://biolit.fr/sorties/sortie-6c64346f-deab-4ed6-8ee0-a8c21016cb6a/,Phil,,10/26/2018 0:00,12.0:55,13.0000000,47.796854000000,-4.177285000000,,Loctudy - Finistère,41939,observation-6c64346f-deab-4ed6-8ee0-a8c21016cb6a-4,https://biolit.fr/observations/observation-6c64346f-deab-4ed6-8ee0-a8c21016cb6a-4/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/20181026_125502.jpg,,TRUE, +N1,59460,sortie-6c64346f-deab-4ed6-8ee0-a8c21016cb6a,https://biolit.fr/sorties/sortie-6c64346f-deab-4ed6-8ee0-a8c21016cb6a/,Phil,,10/26/2018 0:00,12.0:55,13.0000000,47.796854000000,-4.177285000000,,Loctudy - Finistère,41941,observation-6c64346f-deab-4ed6-8ee0-a8c21016cb6a-5,https://biolit.fr/observations/observation-6c64346f-deab-4ed6-8ee0-a8c21016cb6a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181026_125521.jpg,,FALSE, +N1,59461,sortie-b39054f9-b7ef-45f6-a055-b71ce7cf44a7,https://biolit.fr/sorties/sortie-b39054f9-b7ef-45f6-a055-b71ce7cf44a7/,Phil,,11/18/2018 0:00,12.0:15,12.0000000,47.854206000000,-3.980508000000,,Fouesnant - Finistère,41943,observation-b39054f9-b7ef-45f6-a055-b71ce7cf44a7,https://biolit.fr/observations/observation-b39054f9-b7ef-45f6-a055-b71ce7cf44a7/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20181118_121806.jpg,,TRUE, +N1,59461,sortie-b39054f9-b7ef-45f6-a055-b71ce7cf44a7,https://biolit.fr/sorties/sortie-b39054f9-b7ef-45f6-a055-b71ce7cf44a7/,Phil,,11/18/2018 0:00,12.0:15,12.0000000,47.854206000000,-3.980508000000,,Fouesnant - Finistère,41945,observation-b39054f9-b7ef-45f6-a055-b71ce7cf44a7-2,https://biolit.fr/observations/observation-b39054f9-b7ef-45f6-a055-b71ce7cf44a7-2/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20181118_121745.jpg,,TRUE, +N1,59461,sortie-b39054f9-b7ef-45f6-a055-b71ce7cf44a7,https://biolit.fr/sorties/sortie-b39054f9-b7ef-45f6-a055-b71ce7cf44a7/,Phil,,11/18/2018 0:00,12.0:15,12.0000000,47.854206000000,-3.980508000000,,Fouesnant - Finistère,41947,observation-b39054f9-b7ef-45f6-a055-b71ce7cf44a7-3,https://biolit.fr/observations/observation-b39054f9-b7ef-45f6-a055-b71ce7cf44a7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181118_122622.jpg,,FALSE, +N1,59461,sortie-b39054f9-b7ef-45f6-a055-b71ce7cf44a7,https://biolit.fr/sorties/sortie-b39054f9-b7ef-45f6-a055-b71ce7cf44a7/,Phil,,11/18/2018 0:00,12.0:15,12.0000000,47.854206000000,-3.980508000000,,Fouesnant - Finistère,41949,observation-b39054f9-b7ef-45f6-a055-b71ce7cf44a7-4,https://biolit.fr/observations/observation-b39054f9-b7ef-45f6-a055-b71ce7cf44a7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181118_122647.jpg,,FALSE, +N1,59461,sortie-b39054f9-b7ef-45f6-a055-b71ce7cf44a7,https://biolit.fr/sorties/sortie-b39054f9-b7ef-45f6-a055-b71ce7cf44a7/,Phil,,11/18/2018 0:00,12.0:15,12.0000000,47.854206000000,-3.980508000000,,Fouesnant - Finistère,41951,observation-b39054f9-b7ef-45f6-a055-b71ce7cf44a7-5,https://biolit.fr/observations/observation-b39054f9-b7ef-45f6-a055-b71ce7cf44a7-5/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20181118_121908.jpg,,TRUE, +N1,59462,sortie-fac895c4-5823-455d-aa06-1eeecee2211c,https://biolit.fr/sorties/sortie-fac895c4-5823-455d-aa06-1eeecee2211c/,Phil,,10/26/2018 0:00,12.0:45,12.0000000,47.797122000000,-4.178006000000,,Loctudy - Finistère,41953,observation-fac895c4-5823-455d-aa06-1eeecee2211c,https://biolit.fr/observations/observation-fac895c4-5823-455d-aa06-1eeecee2211c/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20181026_124649.jpg,,TRUE, +N1,59462,sortie-fac895c4-5823-455d-aa06-1eeecee2211c,https://biolit.fr/sorties/sortie-fac895c4-5823-455d-aa06-1eeecee2211c/,Phil,,10/26/2018 0:00,12.0:45,12.0000000,47.797122000000,-4.178006000000,,Loctudy - Finistère,41955,observation-fac895c4-5823-455d-aa06-1eeecee2211c-2,https://biolit.fr/observations/observation-fac895c4-5823-455d-aa06-1eeecee2211c-2/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20181026_124621.jpg,,TRUE, +N1,59462,sortie-fac895c4-5823-455d-aa06-1eeecee2211c,https://biolit.fr/sorties/sortie-fac895c4-5823-455d-aa06-1eeecee2211c/,Phil,,10/26/2018 0:00,12.0:45,12.0000000,47.797122000000,-4.178006000000,,Loctudy - Finistère,41957,observation-fac895c4-5823-455d-aa06-1eeecee2211c-3,https://biolit.fr/observations/observation-fac895c4-5823-455d-aa06-1eeecee2211c-3/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20181026_124545.jpg,,TRUE, +N1,59462,sortie-fac895c4-5823-455d-aa06-1eeecee2211c,https://biolit.fr/sorties/sortie-fac895c4-5823-455d-aa06-1eeecee2211c/,Phil,,10/26/2018 0:00,12.0:45,12.0000000,47.797122000000,-4.178006000000,,Loctudy - Finistère,41959,observation-fac895c4-5823-455d-aa06-1eeecee2211c-4,https://biolit.fr/observations/observation-fac895c4-5823-455d-aa06-1eeecee2211c-4/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20181026_124707.jpg,,TRUE, +N1,59463,sortie-89bd0afd-91b6-426c-9e07-fff2965b6563,https://biolit.fr/sorties/sortie-89bd0afd-91b6-426c-9e07-fff2965b6563/,Phil,,11/18/2018 0:00,12.000005,12.0:15,47.853920000000,-3.9814150000,,Fouesnant - Finistère,41961,observation-89bd0afd-91b6-426c-9e07-fff2965b6563,https://biolit.fr/observations/observation-89bd0afd-91b6-426c-9e07-fff2965b6563/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/20181118_121042.jpg,,TRUE, +N1,59463,sortie-89bd0afd-91b6-426c-9e07-fff2965b6563,https://biolit.fr/sorties/sortie-89bd0afd-91b6-426c-9e07-fff2965b6563/,Phil,,11/18/2018 0:00,12.000005,12.0:15,47.853920000000,-3.9814150000,,Fouesnant - Finistère,41963,observation-89bd0afd-91b6-426c-9e07-fff2965b6563-2,https://biolit.fr/observations/observation-89bd0afd-91b6-426c-9e07-fff2965b6563-2/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/20181118_120558.jpg,,TRUE, +N1,59463,sortie-89bd0afd-91b6-426c-9e07-fff2965b6563,https://biolit.fr/sorties/sortie-89bd0afd-91b6-426c-9e07-fff2965b6563/,Phil,,11/18/2018 0:00,12.000005,12.0:15,47.853920000000,-3.9814150000,,Fouesnant - Finistère,41965,observation-89bd0afd-91b6-426c-9e07-fff2965b6563-3,https://biolit.fr/observations/observation-89bd0afd-91b6-426c-9e07-fff2965b6563-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181118_121535.jpg,,FALSE, +N1,59464,sortie-263cb134-bf94-4f39-a064-d2e79b0bbb43,https://biolit.fr/sorties/sortie-263cb134-bf94-4f39-a064-d2e79b0bbb43/,Phil,,10/26/2018 0:00,12.0000000,12.0000000,47.796508000000,-4.179328000000,,Loctudy - Finistère,41967,observation-263cb134-bf94-4f39-a064-d2e79b0bbb43,https://biolit.fr/observations/observation-263cb134-bf94-4f39-a064-d2e79b0bbb43/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181026_123944.jpg,,FALSE, +N1,59464,sortie-263cb134-bf94-4f39-a064-d2e79b0bbb43,https://biolit.fr/sorties/sortie-263cb134-bf94-4f39-a064-d2e79b0bbb43/,Phil,,10/26/2018 0:00,12.0000000,12.0000000,47.796508000000,-4.179328000000,,Loctudy - Finistère,41969,observation-263cb134-bf94-4f39-a064-d2e79b0bbb43-2,https://biolit.fr/observations/observation-263cb134-bf94-4f39-a064-d2e79b0bbb43-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181026_123959.jpg,,FALSE, +N1,59465,sortie-f1a6fae3-0fdb-467e-8f82-349872117202,https://biolit.fr/sorties/sortie-f1a6fae3-0fdb-467e-8f82-349872117202/,Phil,,11/12/2018,12.000005,12.0000000,47.792482000000,-4.28693200000,,Guilvinec - Finistère,41971,observation-f1a6fae3-0fdb-467e-8f82-349872117202,https://biolit.fr/observations/observation-f1a6fae3-0fdb-467e-8f82-349872117202/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181112_120819.jpg,,FALSE, +N1,59465,sortie-f1a6fae3-0fdb-467e-8f82-349872117202,https://biolit.fr/sorties/sortie-f1a6fae3-0fdb-467e-8f82-349872117202/,Phil,,11/12/2018,12.000005,12.0000000,47.792482000000,-4.28693200000,,Guilvinec - Finistère,41973,observation-f1a6fae3-0fdb-467e-8f82-349872117202-2,https://biolit.fr/observations/observation-f1a6fae3-0fdb-467e-8f82-349872117202-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181112_120924.jpg,,TRUE, +N1,59465,sortie-f1a6fae3-0fdb-467e-8f82-349872117202,https://biolit.fr/sorties/sortie-f1a6fae3-0fdb-467e-8f82-349872117202/,Phil,,11/12/2018,12.000005,12.0000000,47.792482000000,-4.28693200000,,Guilvinec - Finistère,41975,observation-f1a6fae3-0fdb-467e-8f82-349872117202-3,https://biolit.fr/observations/observation-f1a6fae3-0fdb-467e-8f82-349872117202-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181112_120949.jpg,,TRUE, +N1,59465,sortie-f1a6fae3-0fdb-467e-8f82-349872117202,https://biolit.fr/sorties/sortie-f1a6fae3-0fdb-467e-8f82-349872117202/,Phil,,11/12/2018,12.000005,12.0000000,47.792482000000,-4.28693200000,,Guilvinec - Finistère,41977,observation-f1a6fae3-0fdb-467e-8f82-349872117202-4,https://biolit.fr/observations/observation-f1a6fae3-0fdb-467e-8f82-349872117202-4/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/20181112_121008.jpg,,TRUE, +N1,59465,sortie-f1a6fae3-0fdb-467e-8f82-349872117202,https://biolit.fr/sorties/sortie-f1a6fae3-0fdb-467e-8f82-349872117202/,Phil,,11/12/2018,12.000005,12.0000000,47.792482000000,-4.28693200000,,Guilvinec - Finistère,41979,observation-f1a6fae3-0fdb-467e-8f82-349872117202-5,https://biolit.fr/observations/observation-f1a6fae3-0fdb-467e-8f82-349872117202-5/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/20181112_121057.jpg,,TRUE, +N1,59466,sortie-5d657cb6-ecae-44c2-9296-41ee14fc35e0,https://biolit.fr/sorties/sortie-5d657cb6-ecae-44c2-9296-41ee14fc35e0/,pamatelo,,7/26/2018 0:00,17.0000000,17.0:45,43.333745000000,5.197623000000,,ensues la redonne ,41981,observation-5d657cb6-ecae-44c2-9296-41ee14fc35e0,https://biolit.fr/observations/observation-5d657cb6-ecae-44c2-9296-41ee14fc35e0/,Hippocampus hippocampus,Hippocampe à museau court,,https://biolit.fr/wp-content/uploads/2023/07/Image1.png,,TRUE, +N1,59467,sortie-51bbb949-9849-4ad2-bf44-82389629d9aa,https://biolit.fr/sorties/sortie-51bbb949-9849-4ad2-bf44-82389629d9aa/,pamatelo,,10/07/2018,11.0000000,12.0000000,43.333852000000,5.197725000000,,ensues la redonne ,41982,observation-51bbb949-9849-4ad2-bf44-82389629d9aa,https://biolit.fr/observations/observation-51bbb949-9849-4ad2-bf44-82389629d9aa/,Loligo spp.,Ponte de Calmar,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20181007_114527-scaled.jpg,,TRUE, +N1,59467,sortie-51bbb949-9849-4ad2-bf44-82389629d9aa,https://biolit.fr/sorties/sortie-51bbb949-9849-4ad2-bf44-82389629d9aa/,pamatelo,,10/07/2018,11.0000000,12.0000000,43.333852000000,5.197725000000,,ensues la redonne ,41984,observation-51bbb949-9849-4ad2-bf44-82389629d9aa-2,https://biolit.fr/observations/observation-51bbb949-9849-4ad2-bf44-82389629d9aa-2/,Loligo spp.,Ponte de Calmar,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20181007_114530-scaled.jpg,,TRUE, +N1,59467,sortie-51bbb949-9849-4ad2-bf44-82389629d9aa,https://biolit.fr/sorties/sortie-51bbb949-9849-4ad2-bf44-82389629d9aa/,pamatelo,,10/07/2018,11.0000000,12.0000000,43.333852000000,5.197725000000,,ensues la redonne ,41986,observation-51bbb949-9849-4ad2-bf44-82389629d9aa-3,https://biolit.fr/observations/observation-51bbb949-9849-4ad2-bf44-82389629d9aa-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181007_121200-scaled.jpg,,FALSE, +N1,59468,sortie-88d715f4-d296-466d-bbef-4b3fd18987f5,https://biolit.fr/sorties/sortie-88d715f4-d296-466d-bbef-4b3fd18987f5/,Guillaume D,,11/16/2018 0:00,15.0000000,16.0000000,16.256366000000,-61.255201000000,,"Anse du Mancenillier, Saint-François, Guadeloupe",41988,observation-88d715f4-d296-466d-bbef-4b3fd18987f5,https://biolit.fr/observations/observation-88d715f4-d296-466d-bbef-4b3fd18987f5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181116_161850-scaled.jpg,,FALSE, +N1,59468,sortie-88d715f4-d296-466d-bbef-4b3fd18987f5,https://biolit.fr/sorties/sortie-88d715f4-d296-466d-bbef-4b3fd18987f5/,Guillaume D,,11/16/2018 0:00,15.0000000,16.0000000,16.256366000000,-61.255201000000,,"Anse du Mancenillier, Saint-François, Guadeloupe",41990,observation-88d715f4-d296-466d-bbef-4b3fd18987f5-2,https://biolit.fr/observations/observation-88d715f4-d296-466d-bbef-4b3fd18987f5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181116_161858-scaled.jpg,,FALSE, +N1,59468,sortie-88d715f4-d296-466d-bbef-4b3fd18987f5,https://biolit.fr/sorties/sortie-88d715f4-d296-466d-bbef-4b3fd18987f5/,Guillaume D,,11/16/2018 0:00,15.0000000,16.0000000,16.256366000000,-61.255201000000,,"Anse du Mancenillier, Saint-François, Guadeloupe",41992,observation-88d715f4-d296-466d-bbef-4b3fd18987f5-3,https://biolit.fr/observations/observation-88d715f4-d296-466d-bbef-4b3fd18987f5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181116_161937-scaled.jpg,,FALSE, +N1,59468,sortie-88d715f4-d296-466d-bbef-4b3fd18987f5,https://biolit.fr/sorties/sortie-88d715f4-d296-466d-bbef-4b3fd18987f5/,Guillaume D,,11/16/2018 0:00,15.0000000,16.0000000,16.256366000000,-61.255201000000,,"Anse du Mancenillier, Saint-François, Guadeloupe",41994,observation-88d715f4-d296-466d-bbef-4b3fd18987f5-4,https://biolit.fr/observations/observation-88d715f4-d296-466d-bbef-4b3fd18987f5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181116_162100-scaled.jpg,,FALSE, +N1,59468,sortie-88d715f4-d296-466d-bbef-4b3fd18987f5,https://biolit.fr/sorties/sortie-88d715f4-d296-466d-bbef-4b3fd18987f5/,Guillaume D,,11/16/2018 0:00,15.0000000,16.0000000,16.256366000000,-61.255201000000,,"Anse du Mancenillier, Saint-François, Guadeloupe",41996,observation-88d715f4-d296-466d-bbef-4b3fd18987f5-5,https://biolit.fr/observations/observation-88d715f4-d296-466d-bbef-4b3fd18987f5-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181116_162122-scaled.jpg,,FALSE, +N1,59468,sortie-88d715f4-d296-466d-bbef-4b3fd18987f5,https://biolit.fr/sorties/sortie-88d715f4-d296-466d-bbef-4b3fd18987f5/,Guillaume D,,11/16/2018 0:00,15.0000000,16.0000000,16.256366000000,-61.255201000000,,"Anse du Mancenillier, Saint-François, Guadeloupe",41998,observation-88d715f4-d296-466d-bbef-4b3fd18987f5-6,https://biolit.fr/observations/observation-88d715f4-d296-466d-bbef-4b3fd18987f5-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181116_162218-scaled.jpg,,FALSE, +N1,59469,sortie-76b49bdd-628c-48ca-b36c-74f1b1339a51,https://biolit.fr/sorties/sortie-76b49bdd-628c-48ca-b36c-74f1b1339a51/,Phil,,7/16/2018 0:00,13.0000000,13.0:45,47.808685000000,-3.7129750000,,Moëlan-sur-Mer - Finistère,42000,observation-76b49bdd-628c-48ca-b36c-74f1b1339a51,https://biolit.fr/observations/observation-76b49bdd-628c-48ca-b36c-74f1b1339a51/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110850_0.JPG,,FALSE, +N1,59469,sortie-76b49bdd-628c-48ca-b36c-74f1b1339a51,https://biolit.fr/sorties/sortie-76b49bdd-628c-48ca-b36c-74f1b1339a51/,Phil,,7/16/2018 0:00,13.0000000,13.0:45,47.808685000000,-3.7129750000,,Moëlan-sur-Mer - Finistère,42002,observation-76b49bdd-628c-48ca-b36c-74f1b1339a51-2,https://biolit.fr/observations/observation-76b49bdd-628c-48ca-b36c-74f1b1339a51-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110853_0.JPG,,FALSE, +N1,59469,sortie-76b49bdd-628c-48ca-b36c-74f1b1339a51,https://biolit.fr/sorties/sortie-76b49bdd-628c-48ca-b36c-74f1b1339a51/,Phil,,7/16/2018 0:00,13.0000000,13.0:45,47.808685000000,-3.7129750000,,Moëlan-sur-Mer - Finistère,42004,observation-76b49bdd-628c-48ca-b36c-74f1b1339a51-3,https://biolit.fr/observations/observation-76b49bdd-628c-48ca-b36c-74f1b1339a51-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110854_0.JPG,,FALSE, +N1,59469,sortie-76b49bdd-628c-48ca-b36c-74f1b1339a51,https://biolit.fr/sorties/sortie-76b49bdd-628c-48ca-b36c-74f1b1339a51/,Phil,,7/16/2018 0:00,13.0000000,13.0:45,47.808685000000,-3.7129750000,,Moëlan-sur-Mer - Finistère,42006,observation-76b49bdd-628c-48ca-b36c-74f1b1339a51-4,https://biolit.fr/observations/observation-76b49bdd-628c-48ca-b36c-74f1b1339a51-4/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/P1110763.JPG,,TRUE, +N1,59469,sortie-76b49bdd-628c-48ca-b36c-74f1b1339a51,https://biolit.fr/sorties/sortie-76b49bdd-628c-48ca-b36c-74f1b1339a51/,Phil,,7/16/2018 0:00,13.0000000,13.0:45,47.808685000000,-3.7129750000,,Moëlan-sur-Mer - Finistère,42008,observation-76b49bdd-628c-48ca-b36c-74f1b1339a51-5,https://biolit.fr/observations/observation-76b49bdd-628c-48ca-b36c-74f1b1339a51-5/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/P1110764.JPG,,TRUE, +N1,59470,sortie-7af2cb35-8121-4b01-881a-348ca3f67a60,https://biolit.fr/sorties/sortie-7af2cb35-8121-4b01-881a-348ca3f67a60/,Guillaume D,,11/14/2018 0:00,10.0000000,11.0000000,16.247216000000,-61.176644000000,,"Anse des Châteaux, Pointe des Châteaux, Guadeloupe",42010,observation-7af2cb35-8121-4b01-881a-348ca3f67a60,https://biolit.fr/observations/observation-7af2cb35-8121-4b01-881a-348ca3f67a60/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181114_092857_1-scaled.jpg,,FALSE, +N1,59470,sortie-7af2cb35-8121-4b01-881a-348ca3f67a60,https://biolit.fr/sorties/sortie-7af2cb35-8121-4b01-881a-348ca3f67a60/,Guillaume D,,11/14/2018 0:00,10.0000000,11.0000000,16.247216000000,-61.176644000000,,"Anse des Châteaux, Pointe des Châteaux, Guadeloupe",42012,observation-7af2cb35-8121-4b01-881a-348ca3f67a60-2,https://biolit.fr/observations/observation-7af2cb35-8121-4b01-881a-348ca3f67a60-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181114_102222_0-scaled.jpg,,FALSE, +N1,59470,sortie-7af2cb35-8121-4b01-881a-348ca3f67a60,https://biolit.fr/sorties/sortie-7af2cb35-8121-4b01-881a-348ca3f67a60/,Guillaume D,,11/14/2018 0:00,10.0000000,11.0000000,16.247216000000,-61.176644000000,,"Anse des Châteaux, Pointe des Châteaux, Guadeloupe",42014,observation-7af2cb35-8121-4b01-881a-348ca3f67a60-3,https://biolit.fr/observations/observation-7af2cb35-8121-4b01-881a-348ca3f67a60-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181114_102518_1-scaled.jpg,,FALSE, +N1,59470,sortie-7af2cb35-8121-4b01-881a-348ca3f67a60,https://biolit.fr/sorties/sortie-7af2cb35-8121-4b01-881a-348ca3f67a60/,Guillaume D,,11/14/2018 0:00,10.0000000,11.0000000,16.247216000000,-61.176644000000,,"Anse des Châteaux, Pointe des Châteaux, Guadeloupe",42016,observation-7af2cb35-8121-4b01-881a-348ca3f67a60-4,https://biolit.fr/observations/observation-7af2cb35-8121-4b01-881a-348ca3f67a60-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181114_102603_1-scaled.jpg,,FALSE, +N1,59471,sortie-42732e75-4228-4643-9c18-1ce972d3a3a4,https://biolit.fr/sorties/sortie-42732e75-4228-4643-9c18-1ce972d3a3a4/,Phil,,10/26/2018 0:00,12.0:15,12.0000000,47.796225000000,-4.17901900000,,Loctudy - Finistère,42018,observation-42732e75-4228-4643-9c18-1ce972d3a3a4,https://biolit.fr/observations/observation-42732e75-4228-4643-9c18-1ce972d3a3a4/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20181026_121624.jpg,,TRUE, +N1,59471,sortie-42732e75-4228-4643-9c18-1ce972d3a3a4,https://biolit.fr/sorties/sortie-42732e75-4228-4643-9c18-1ce972d3a3a4/,Phil,,10/26/2018 0:00,12.0:15,12.0000000,47.796225000000,-4.17901900000,,Loctudy - Finistère,42020,observation-42732e75-4228-4643-9c18-1ce972d3a3a4-2,https://biolit.fr/observations/observation-42732e75-4228-4643-9c18-1ce972d3a3a4-2/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20181026_121642.jpg,,TRUE, +N1,59471,sortie-42732e75-4228-4643-9c18-1ce972d3a3a4,https://biolit.fr/sorties/sortie-42732e75-4228-4643-9c18-1ce972d3a3a4/,Phil,,10/26/2018 0:00,12.0:15,12.0000000,47.796225000000,-4.17901900000,,Loctudy - Finistère,42022,observation-42732e75-4228-4643-9c18-1ce972d3a3a4-3,https://biolit.fr/observations/observation-42732e75-4228-4643-9c18-1ce972d3a3a4-3/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20181026_124044.jpg,,TRUE, +N1,59471,sortie-42732e75-4228-4643-9c18-1ce972d3a3a4,https://biolit.fr/sorties/sortie-42732e75-4228-4643-9c18-1ce972d3a3a4/,Phil,,10/26/2018 0:00,12.0:15,12.0000000,47.796225000000,-4.17901900000,,Loctudy - Finistère,42024,observation-42732e75-4228-4643-9c18-1ce972d3a3a4-4,https://biolit.fr/observations/observation-42732e75-4228-4643-9c18-1ce972d3a3a4-4/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20181026_123918.jpg,,TRUE, +N1,59471,sortie-42732e75-4228-4643-9c18-1ce972d3a3a4,https://biolit.fr/sorties/sortie-42732e75-4228-4643-9c18-1ce972d3a3a4/,Phil,,10/26/2018 0:00,12.0:15,12.0000000,47.796225000000,-4.17901900000,,Loctudy - Finistère,42026,observation-42732e75-4228-4643-9c18-1ce972d3a3a4-5,https://biolit.fr/observations/observation-42732e75-4228-4643-9c18-1ce972d3a3a4-5/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20181026_123900.jpg,,TRUE, +N1,59471,sortie-42732e75-4228-4643-9c18-1ce972d3a3a4,https://biolit.fr/sorties/sortie-42732e75-4228-4643-9c18-1ce972d3a3a4/,Phil,,10/26/2018 0:00,12.0:15,12.0000000,47.796225000000,-4.17901900000,,Loctudy - Finistère,42028,observation-42732e75-4228-4643-9c18-1ce972d3a3a4-6,https://biolit.fr/observations/observation-42732e75-4228-4643-9c18-1ce972d3a3a4-6/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20181026_124035.jpg,,TRUE, +N1,59471,sortie-42732e75-4228-4643-9c18-1ce972d3a3a4,https://biolit.fr/sorties/sortie-42732e75-4228-4643-9c18-1ce972d3a3a4/,Phil,,10/26/2018 0:00,12.0:15,12.0000000,47.796225000000,-4.17901900000,,Loctudy - Finistère,42030,observation-42732e75-4228-4643-9c18-1ce972d3a3a4-7,https://biolit.fr/observations/observation-42732e75-4228-4643-9c18-1ce972d3a3a4-7/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20181026_124041.jpg,,TRUE, +N1,59472,sortie-8a4d887b-ec06-4eb6-8a35-3688e07cc750,https://biolit.fr/sorties/sortie-8a4d887b-ec06-4eb6-8a35-3688e07cc750/,Maison du Littoral et de l'Environnement,,11/07/2018,14.0:15,15.0000000,49.657510000000,-1.567725000000,,Plage de collignon,42032,observation-8a4d887b-ec06-4eb6-8a35-3688e07cc750,https://biolit.fr/observations/observation-8a4d887b-ec06-4eb6-8a35-3688e07cc750/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2663_0-rotated.jpg,,TRUE, +N1,59472,sortie-8a4d887b-ec06-4eb6-8a35-3688e07cc750,https://biolit.fr/sorties/sortie-8a4d887b-ec06-4eb6-8a35-3688e07cc750/,Maison du Littoral et de l'Environnement,,11/07/2018,14.0:15,15.0000000,49.657510000000,-1.567725000000,,Plage de collignon,42034,observation-8a4d887b-ec06-4eb6-8a35-3688e07cc750-2,https://biolit.fr/observations/observation-8a4d887b-ec06-4eb6-8a35-3688e07cc750-2/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2795.JPG,,TRUE, +N1,59472,sortie-8a4d887b-ec06-4eb6-8a35-3688e07cc750,https://biolit.fr/sorties/sortie-8a4d887b-ec06-4eb6-8a35-3688e07cc750/,Maison du Littoral et de l'Environnement,,11/07/2018,14.0:15,15.0000000,49.657510000000,-1.567725000000,,Plage de collignon,42036,observation-8a4d887b-ec06-4eb6-8a35-3688e07cc750-3,https://biolit.fr/observations/observation-8a4d887b-ec06-4eb6-8a35-3688e07cc750-3/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2743.JPG,,TRUE, +N1,59472,sortie-8a4d887b-ec06-4eb6-8a35-3688e07cc750,https://biolit.fr/sorties/sortie-8a4d887b-ec06-4eb6-8a35-3688e07cc750/,Maison du Littoral et de l'Environnement,,11/07/2018,14.0:15,15.0000000,49.657510000000,-1.567725000000,,Plage de collignon,42038,observation-8a4d887b-ec06-4eb6-8a35-3688e07cc750-4,https://biolit.fr/observations/observation-8a4d887b-ec06-4eb6-8a35-3688e07cc750-4/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2791.JPG,,TRUE, +N1,59473,sortie-79975095-89f5-4693-938b-a5ea3d5987aa,https://biolit.fr/sorties/sortie-79975095-89f5-4693-938b-a5ea3d5987aa/,Phil,,7/16/2018 0:00,13.000005,13.0000000,47.810396000000,-3.711965000000,,Moëlan-sur-Mer - Finistère,42040,observation-79975095-89f5-4693-938b-a5ea3d5987aa,https://biolit.fr/observations/observation-79975095-89f5-4693-938b-a5ea3d5987aa/,Ramalina siliquosa,Ramaline des rochers,,https://biolit.fr/wp-content/uploads/2023/07/P1110759.JPG,,TRUE, +N1,59473,sortie-79975095-89f5-4693-938b-a5ea3d5987aa,https://biolit.fr/sorties/sortie-79975095-89f5-4693-938b-a5ea3d5987aa/,Phil,,7/16/2018 0:00,13.000005,13.0000000,47.810396000000,-3.711965000000,,Moëlan-sur-Mer - Finistère,42042,observation-79975095-89f5-4693-938b-a5ea3d5987aa-2,https://biolit.fr/observations/observation-79975095-89f5-4693-938b-a5ea3d5987aa-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110758.JPG,,FALSE, +N1,59473,sortie-79975095-89f5-4693-938b-a5ea3d5987aa,https://biolit.fr/sorties/sortie-79975095-89f5-4693-938b-a5ea3d5987aa/,Phil,,7/16/2018 0:00,13.000005,13.0000000,47.810396000000,-3.711965000000,,Moëlan-sur-Mer - Finistère,42044,observation-79975095-89f5-4693-938b-a5ea3d5987aa-3,https://biolit.fr/observations/observation-79975095-89f5-4693-938b-a5ea3d5987aa-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110760.JPG,,FALSE, +N1,59474,sortie-faf8962b-b293-4425-a1a9-aebd5c7bdde9,https://biolit.fr/sorties/sortie-faf8962b-b293-4425-a1a9-aebd5c7bdde9/,Phil,,10/26/2018 0:00,11.0000000,12.0:15,47.796887000000,-4.178229000000,,Loctudy - Finistère,42046,observation-faf8962b-b293-4425-a1a9-aebd5c7bdde9,https://biolit.fr/observations/observation-faf8962b-b293-4425-a1a9-aebd5c7bdde9/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/20181026_121329.jpg,,TRUE, +N1,59474,sortie-faf8962b-b293-4425-a1a9-aebd5c7bdde9,https://biolit.fr/sorties/sortie-faf8962b-b293-4425-a1a9-aebd5c7bdde9/,Phil,,10/26/2018 0:00,11.0000000,12.0:15,47.796887000000,-4.178229000000,,Loctudy - Finistère,42048,observation-faf8962b-b293-4425-a1a9-aebd5c7bdde9-2,https://biolit.fr/observations/observation-faf8962b-b293-4425-a1a9-aebd5c7bdde9-2/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20181026_121046.jpg,,TRUE, +N1,59474,sortie-faf8962b-b293-4425-a1a9-aebd5c7bdde9,https://biolit.fr/sorties/sortie-faf8962b-b293-4425-a1a9-aebd5c7bdde9/,Phil,,10/26/2018 0:00,11.0000000,12.0:15,47.796887000000,-4.178229000000,,Loctudy - Finistère,42050,observation-faf8962b-b293-4425-a1a9-aebd5c7bdde9-3,https://biolit.fr/observations/observation-faf8962b-b293-4425-a1a9-aebd5c7bdde9-3/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20181026_115528.jpg,,TRUE, +N1,59474,sortie-faf8962b-b293-4425-a1a9-aebd5c7bdde9,https://biolit.fr/sorties/sortie-faf8962b-b293-4425-a1a9-aebd5c7bdde9/,Phil,,10/26/2018 0:00,11.0000000,12.0:15,47.796887000000,-4.178229000000,,Loctudy - Finistère,42052,observation-faf8962b-b293-4425-a1a9-aebd5c7bdde9-4,https://biolit.fr/observations/observation-faf8962b-b293-4425-a1a9-aebd5c7bdde9-4/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181026_114258.jpg,,TRUE, +N1,59474,sortie-faf8962b-b293-4425-a1a9-aebd5c7bdde9,https://biolit.fr/sorties/sortie-faf8962b-b293-4425-a1a9-aebd5c7bdde9/,Phil,,10/26/2018 0:00,11.0000000,12.0:15,47.796887000000,-4.178229000000,,Loctudy - Finistère,42054,observation-faf8962b-b293-4425-a1a9-aebd5c7bdde9-5,https://biolit.fr/observations/observation-faf8962b-b293-4425-a1a9-aebd5c7bdde9-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20181026_114053.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42056,observation-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53/,,,,https://biolit.fr/wp-content/uploads/2023/07/1_3.jpg,,FALSE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42058,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-2,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-2/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/2_3.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42060,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-3,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-3/,Bifurcaria bifurcata,Bifurcaire,,https://biolit.fr/wp-content/uploads/2023/07/3_2.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42062,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-4,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-4/,Pelvetia canaliculata,Pelvétie,,https://biolit.fr/wp-content/uploads/2023/07/4_2.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42064,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-5,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-5/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/5_1.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42066,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-6,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-6/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/6.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42068,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-7,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-7/,Hydropunctaria maura,Verrucaire noire,,https://biolit.fr/wp-content/uploads/2023/07/7.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42070,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-8,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-8/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/z1.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42072,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-9,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-9/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/z2.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42074,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-10,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-10/,Pelvetia canaliculata,Pelvétie,,https://biolit.fr/wp-content/uploads/2023/07/z3.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42076,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-11,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-11/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/z4.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42078,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-12,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-12/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/z5.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42080,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-13,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-13/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/z6.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42082,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-14,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-14/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/z7.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42084,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-15,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-15/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/z8.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42086,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-16,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/z9.jpg,,FALSE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42088,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-17,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-17/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/z10.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42090,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-18,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/z11.jpg,,FALSE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42092,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-19,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/z12.jpg,,FALSE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42094,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-20,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-20/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/z13.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42096,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-21,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/z14.jpg,,FALSE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42098,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-22,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-22/,Bifurcaria bifurcata,Bifurcaire,,https://biolit.fr/wp-content/uploads/2023/07/z15.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42100,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-23,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-23/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/z16.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42102,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-24,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-24/,Mastocarpus stellatus,Gigartine,,https://biolit.fr/wp-content/uploads/2023/07/z17.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42104,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-25,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-25/,Lomentaria articulata,Algue saucisson,,https://biolit.fr/wp-content/uploads/2023/07/z18.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42106,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-26,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-26/,Mastocarpus stellatus,Gigartine,,https://biolit.fr/wp-content/uploads/2023/07/z19.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42108,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-27,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/z20.jpg,,FALSE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42110,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-28,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-28/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/z21.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42112,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-29,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-29/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/z22.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42114,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-30,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/z23.jpg,,FALSE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42116,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-31,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-31/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/z24.jpg,,TRUE, +N1,59475,sortie-4fba77a3-49a7-4ce8-8320-df850c928a53,https://biolit.fr/sorties/sortie-4fba77a3-49a7-4ce8-8320-df850c928a53/,julia beuvin,,10/09/2018,10.0000000,12.0000000,47.701259000000,-3.459792000000,,plage de Kerroch,42118,observation-4fba77a3-49a7-4ce8-8320-df850c928a53-32,https://biolit.fr/observations/observation-4fba77a3-49a7-4ce8-8320-df850c928a53-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/z25.jpg,,FALSE, +N1,59476,sortie-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba,https://biolit.fr/sorties/sortie-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba/,Phil,,7/22/2018 0:00,11.0:25,11.0000000,47.709291000000,-3.991835000000,,Fouesnant - Finistère,42120,observation-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba,https://biolit.fr/observations/observation-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110954_0.JPG,,FALSE, +N1,59476,sortie-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba,https://biolit.fr/sorties/sortie-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba/,Phil,,7/22/2018 0:00,11.0:25,11.0000000,47.709291000000,-3.991835000000,,Fouesnant - Finistère,42122,observation-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba-2,https://biolit.fr/observations/observation-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110952.JPG,,FALSE, +N1,59476,sortie-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba,https://biolit.fr/sorties/sortie-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba/,Phil,,7/22/2018 0:00,11.0:25,11.0000000,47.709291000000,-3.991835000000,,Fouesnant - Finistère,42124,observation-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba-3,https://biolit.fr/observations/observation-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba-3/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1110947.JPG,,TRUE, +N1,59476,sortie-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba,https://biolit.fr/sorties/sortie-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba/,Phil,,7/22/2018 0:00,11.0:25,11.0000000,47.709291000000,-3.991835000000,,Fouesnant - Finistère,42126,observation-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba-4,https://biolit.fr/observations/observation-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba-4/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1110944.JPG,,TRUE, +N1,59476,sortie-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba,https://biolit.fr/sorties/sortie-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba/,Phil,,7/22/2018 0:00,11.0:25,11.0000000,47.709291000000,-3.991835000000,,Fouesnant - Finistère,42128,observation-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba-5,https://biolit.fr/observations/observation-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba-5/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1110941.JPG,,TRUE, +N1,59476,sortie-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba,https://biolit.fr/sorties/sortie-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba/,Phil,,7/22/2018 0:00,11.0:25,11.0000000,47.709291000000,-3.991835000000,,Fouesnant - Finistère,42130,observation-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba-6,https://biolit.fr/observations/observation-726a1bff-2dc7-4b04-ba3e-a699fa4aaaba-6/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/P1110940.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42132,observation-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7450.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42134,observation-9508afeb-ee6d-4608-852f-a433c83505d2-2,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-2/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7451.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42136,observation-9508afeb-ee6d-4608-852f-a433c83505d2-3,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-3/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7452.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42138,observation-9508afeb-ee6d-4608-852f-a433c83505d2-4,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-4/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7454.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42140,observation-9508afeb-ee6d-4608-852f-a433c83505d2-5,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-5/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7456.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42142,observation-9508afeb-ee6d-4608-852f-a433c83505d2-6,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-6/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7457.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42144,observation-9508afeb-ee6d-4608-852f-a433c83505d2-7,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-7/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7458.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42146,observation-9508afeb-ee6d-4608-852f-a433c83505d2-8,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-8/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7459.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42148,observation-9508afeb-ee6d-4608-852f-a433c83505d2-9,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7461.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42150,observation-9508afeb-ee6d-4608-852f-a433c83505d2-10,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7462.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42152,observation-9508afeb-ee6d-4608-852f-a433c83505d2-11,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-11/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_7465_1.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42154,observation-9508afeb-ee6d-4608-852f-a433c83505d2-12,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-12/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_7464.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42156,observation-9508afeb-ee6d-4608-852f-a433c83505d2-13,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-13/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_7466_1.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42158,observation-9508afeb-ee6d-4608-852f-a433c83505d2-14,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7468.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42160,observation-9508afeb-ee6d-4608-852f-a433c83505d2-15,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7470.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42162,observation-9508afeb-ee6d-4608-852f-a433c83505d2-16,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7471.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42164,observation-9508afeb-ee6d-4608-852f-a433c83505d2-17,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7472.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42166,observation-9508afeb-ee6d-4608-852f-a433c83505d2-18,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-18/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7473.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42168,observation-9508afeb-ee6d-4608-852f-a433c83505d2-19,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-19/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7474.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42170,observation-9508afeb-ee6d-4608-852f-a433c83505d2-20,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-20/,Petricolaria pholadiformis,Fausse pholade,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7475.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42172,observation-9508afeb-ee6d-4608-852f-a433c83505d2-21,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-21/,Petricolaria pholadiformis,Fausse pholade,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7476.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42174,observation-9508afeb-ee6d-4608-852f-a433c83505d2-22,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-22/,Petricolaria pholadiformis,Fausse pholade,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7478.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42176,observation-9508afeb-ee6d-4608-852f-a433c83505d2-23,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-23/,Maja crispata,Petite araignée de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7479.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42178,observation-9508afeb-ee6d-4608-852f-a433c83505d2-24,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-24/,Maja crispata,Petite araignée de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7480.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42180,observation-9508afeb-ee6d-4608-852f-a433c83505d2-25,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7481.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42182,observation-9508afeb-ee6d-4608-852f-a433c83505d2-26,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7482.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42184,observation-9508afeb-ee6d-4608-852f-a433c83505d2-27,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7483.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42186,observation-9508afeb-ee6d-4608-852f-a433c83505d2-28,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7484.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42188,observation-9508afeb-ee6d-4608-852f-a433c83505d2-29,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-29/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7485.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42190,observation-9508afeb-ee6d-4608-852f-a433c83505d2-30,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-30/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7487.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42192,observation-9508afeb-ee6d-4608-852f-a433c83505d2-31,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-31/,Liocarcinus navigator,Etrille arquée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7488.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42194,observation-9508afeb-ee6d-4608-852f-a433c83505d2-32,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-32/,Liocarcinus navigator,Etrille arquée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7489.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42196,observation-9508afeb-ee6d-4608-852f-a433c83505d2-33,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7490.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42198,observation-9508afeb-ee6d-4608-852f-a433c83505d2-34,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7491.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42200,observation-9508afeb-ee6d-4608-852f-a433c83505d2-35,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-35/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7493.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42202,observation-9508afeb-ee6d-4608-852f-a433c83505d2-36,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-36/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7494.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42204,observation-9508afeb-ee6d-4608-852f-a433c83505d2-37,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-37/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7495.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42206,observation-9508afeb-ee6d-4608-852f-a433c83505d2-38,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-38/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7496.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42208,observation-9508afeb-ee6d-4608-852f-a433c83505d2-39,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-39/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7497.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42210,observation-9508afeb-ee6d-4608-852f-a433c83505d2-40,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-40/,Pisa nodipes,Pise à pattes noueuses,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7498.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42212,observation-9508afeb-ee6d-4608-852f-a433c83505d2-41,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-41/,Pisa nodipes,Pise à pattes noueuses,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7500.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42214,observation-9508afeb-ee6d-4608-852f-a433c83505d2-42,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-42/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7501.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42216,observation-9508afeb-ee6d-4608-852f-a433c83505d2-43,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-43/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7502.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42218,observation-9508afeb-ee6d-4608-852f-a433c83505d2-44,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-44/,Liocarcinus navigator,Etrille arquée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7503.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42220,observation-9508afeb-ee6d-4608-852f-a433c83505d2-45,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-45/,Liocarcinus navigator,Etrille arquée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7504.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42222,observation-9508afeb-ee6d-4608-852f-a433c83505d2-46,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-46/,Eriocheir sinensis,Crabe chinois à mitaines,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_7506.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42224,observation-9508afeb-ee6d-4608-852f-a433c83505d2-47,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-47/,Eriocheir sinensis,Crabe chinois à mitaines,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_7507.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42226,observation-9508afeb-ee6d-4608-852f-a433c83505d2-48,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-48/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7508.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42228,observation-9508afeb-ee6d-4608-852f-a433c83505d2-49,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-49/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7509.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42230,observation-9508afeb-ee6d-4608-852f-a433c83505d2-50,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-50/,Calliblepharis ciliata,Algue ciliée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7511.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42232,observation-9508afeb-ee6d-4608-852f-a433c83505d2-51,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-51/,Electra pilosa,Ecorce pileuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7513.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42234,observation-9508afeb-ee6d-4608-852f-a433c83505d2-52,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-52/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7514.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42236,observation-9508afeb-ee6d-4608-852f-a433c83505d2-53,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-53/,Calliblepharis ciliata,Algue ciliée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7515.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42238,observation-9508afeb-ee6d-4608-852f-a433c83505d2-54,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-54/,Calliblepharis ciliata,Algue ciliée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7516.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42240,observation-9508afeb-ee6d-4608-852f-a433c83505d2-55,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-55/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7517.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42242,observation-9508afeb-ee6d-4608-852f-a433c83505d2-56,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-56/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7518.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42244,observation-9508afeb-ee6d-4608-852f-a433c83505d2-57,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-57/,Chondrus crispus,Goémon frisé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7519.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42246,observation-9508afeb-ee6d-4608-852f-a433c83505d2-58,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-58/,Chondrus crispus,Goémon frisé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7520.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42248,observation-9508afeb-ee6d-4608-852f-a433c83505d2-59,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-59/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7521.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42250,observation-9508afeb-ee6d-4608-852f-a433c83505d2-60,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-60/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7522.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42252,observation-9508afeb-ee6d-4608-852f-a433c83505d2-61,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-61/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7524.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42254,observation-9508afeb-ee6d-4608-852f-a433c83505d2-62,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-62/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7525.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42256,observation-9508afeb-ee6d-4608-852f-a433c83505d2-63,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-63/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7526.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42258,observation-9508afeb-ee6d-4608-852f-a433c83505d2-64,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-64/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7527.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42260,observation-9508afeb-ee6d-4608-852f-a433c83505d2-65,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-65/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7528.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42262,observation-9508afeb-ee6d-4608-852f-a433c83505d2-66,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-66/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7529.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42264,observation-9508afeb-ee6d-4608-852f-a433c83505d2-67,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-67/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7532.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42266,observation-9508afeb-ee6d-4608-852f-a433c83505d2-68,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-68/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_7533.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42268,observation-9508afeb-ee6d-4608-852f-a433c83505d2-69,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-69/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_7534.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42270,observation-9508afeb-ee6d-4608-852f-a433c83505d2-70,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-70/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7536.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42272,observation-9508afeb-ee6d-4608-852f-a433c83505d2-71,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-71/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7537.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42274,observation-9508afeb-ee6d-4608-852f-a433c83505d2-72,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-72/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7538.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42276,observation-9508afeb-ee6d-4608-852f-a433c83505d2-73,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-73/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7539.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42278,observation-9508afeb-ee6d-4608-852f-a433c83505d2-74,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-74/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_7540.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42280,observation-9508afeb-ee6d-4608-852f-a433c83505d2-75,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-75/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_7541.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42282,observation-9508afeb-ee6d-4608-852f-a433c83505d2-76,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-76/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_7542.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42284,observation-9508afeb-ee6d-4608-852f-a433c83505d2-77,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-77/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_7543.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42286,observation-9508afeb-ee6d-4608-852f-a433c83505d2-78,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-78/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7544.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42288,observation-9508afeb-ee6d-4608-852f-a433c83505d2-79,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-79/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7545.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42290,observation-9508afeb-ee6d-4608-852f-a433c83505d2-80,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-80/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_7546.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42292,observation-9508afeb-ee6d-4608-852f-a433c83505d2-81,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-81/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_7547.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42294,observation-9508afeb-ee6d-4608-852f-a433c83505d2-82,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-82/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7548.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42296,observation-9508afeb-ee6d-4608-852f-a433c83505d2-83,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-83/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7551.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42298,observation-9508afeb-ee6d-4608-852f-a433c83505d2-84,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-84/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_7552.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42300,observation-9508afeb-ee6d-4608-852f-a433c83505d2-85,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-85/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_7553.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42302,observation-9508afeb-ee6d-4608-852f-a433c83505d2-86,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-86/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7554.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42304,observation-9508afeb-ee6d-4608-852f-a433c83505d2-87,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-87/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7555.JPG,,TRUE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42306,observation-9508afeb-ee6d-4608-852f-a433c83505d2-88,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-88/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7556.JPG,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42308,observation-9508afeb-ee6d-4608-852f-a433c83505d2-89,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-89/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7557_moule-scaled.jpg,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42310,observation-9508afeb-ee6d-4608-852f-a433c83505d2-90,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-90/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7642-scaled.jpg,,FALSE, +N1,59477,sortie-9508afeb-ee6d-4608-852f-a433c83505d2,https://biolit.fr/sorties/sortie-9508afeb-ee6d-4608-852f-a433c83505d2/,Stage_Normandie,,9/25/2018 0:00,9.0000000,16.0000000,49.344668000000,-0.515645000000,,ver-sur-mer,42312,observation-9508afeb-ee6d-4608-852f-a433c83505d2-91,https://biolit.fr/observations/observation-9508afeb-ee6d-4608-852f-a433c83505d2-91/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7644-scaled.jpg,,FALSE, +N1,59478,sortie-70cc785a-71ba-4581-8389-9a211d8be65c,https://biolit.fr/sorties/sortie-70cc785a-71ba-4581-8389-9a211d8be65c/,Phil,,10/26/2018 0:00,11.0000000,11.0:45,47.797755000000,-4.177388000000,,Loctudy - Finistère,42314,observation-70cc785a-71ba-4581-8389-9a211d8be65c,https://biolit.fr/observations/observation-70cc785a-71ba-4581-8389-9a211d8be65c/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20181026_114003.jpg,,TRUE, +N1,59478,sortie-70cc785a-71ba-4581-8389-9a211d8be65c,https://biolit.fr/sorties/sortie-70cc785a-71ba-4581-8389-9a211d8be65c/,Phil,,10/26/2018 0:00,11.0000000,11.0:45,47.797755000000,-4.177388000000,,Loctudy - Finistère,42316,observation-70cc785a-71ba-4581-8389-9a211d8be65c-2,https://biolit.fr/observations/observation-70cc785a-71ba-4581-8389-9a211d8be65c-2/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20181026_114008.jpg,,TRUE, +N1,59478,sortie-70cc785a-71ba-4581-8389-9a211d8be65c,https://biolit.fr/sorties/sortie-70cc785a-71ba-4581-8389-9a211d8be65c/,Phil,,10/26/2018 0:00,11.0000000,11.0:45,47.797755000000,-4.177388000000,,Loctudy - Finistère,42318,observation-70cc785a-71ba-4581-8389-9a211d8be65c-3,https://biolit.fr/observations/observation-70cc785a-71ba-4581-8389-9a211d8be65c-3/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20181026_113846.jpg,,TRUE, +N1,59478,sortie-70cc785a-71ba-4581-8389-9a211d8be65c,https://biolit.fr/sorties/sortie-70cc785a-71ba-4581-8389-9a211d8be65c/,Phil,,10/26/2018 0:00,11.0000000,11.0:45,47.797755000000,-4.177388000000,,Loctudy - Finistère,42320,observation-70cc785a-71ba-4581-8389-9a211d8be65c-4,https://biolit.fr/observations/observation-70cc785a-71ba-4581-8389-9a211d8be65c-4/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20181026_114019.jpg,,TRUE, +N1,59479,sortie-d9c29d48-3904-409d-b8f7-34511a628469,https://biolit.fr/sorties/sortie-d9c29d48-3904-409d-b8f7-34511a628469/,Phil,,5/17/2018 0:00,12.000005,12.0000000,47.89019600000,-3.965558000000,,La Forêt-Fouesnant - Finistère,42322,observation-d9c29d48-3904-409d-b8f7-34511a628469,https://biolit.fr/observations/observation-d9c29d48-3904-409d-b8f7-34511a628469/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110321.JPG,,FALSE, +N1,59479,sortie-d9c29d48-3904-409d-b8f7-34511a628469,https://biolit.fr/sorties/sortie-d9c29d48-3904-409d-b8f7-34511a628469/,Phil,,5/17/2018 0:00,12.000005,12.0000000,47.89019600000,-3.965558000000,,La Forêt-Fouesnant - Finistère,42324,observation-d9c29d48-3904-409d-b8f7-34511a628469-2,https://biolit.fr/observations/observation-d9c29d48-3904-409d-b8f7-34511a628469-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110318.JPG,,FALSE, +N1,59479,sortie-d9c29d48-3904-409d-b8f7-34511a628469,https://biolit.fr/sorties/sortie-d9c29d48-3904-409d-b8f7-34511a628469/,Phil,,5/17/2018 0:00,12.000005,12.0000000,47.89019600000,-3.965558000000,,La Forêt-Fouesnant - Finistère,42326,observation-d9c29d48-3904-409d-b8f7-34511a628469-3,https://biolit.fr/observations/observation-d9c29d48-3904-409d-b8f7-34511a628469-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110315.JPG,,FALSE, +N1,59480,sortie-d9521e16-0ebd-4c84-83f1-51cff717e40d,https://biolit.fr/sorties/sortie-d9521e16-0ebd-4c84-83f1-51cff717e40d/,Phil,,10/26/2018 0:00,11.0000000,11.0:35,47.797971000000,-4.179474000000,,Loctudy - Finistère,42328,observation-d9521e16-0ebd-4c84-83f1-51cff717e40d,https://biolit.fr/observations/observation-d9521e16-0ebd-4c84-83f1-51cff717e40d/,Chondrus crispus,Goémon frisé,,https://biolit.fr/wp-content/uploads/2023/07/20181026_112256.jpg,,TRUE, +N1,59480,sortie-d9521e16-0ebd-4c84-83f1-51cff717e40d,https://biolit.fr/sorties/sortie-d9521e16-0ebd-4c84-83f1-51cff717e40d/,Phil,,10/26/2018 0:00,11.0000000,11.0:35,47.797971000000,-4.179474000000,,Loctudy - Finistère,42330,observation-d9521e16-0ebd-4c84-83f1-51cff717e40d-2,https://biolit.fr/observations/observation-d9521e16-0ebd-4c84-83f1-51cff717e40d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181026_113323.jpg,,FALSE, +N1,59480,sortie-d9521e16-0ebd-4c84-83f1-51cff717e40d,https://biolit.fr/sorties/sortie-d9521e16-0ebd-4c84-83f1-51cff717e40d/,Phil,,10/26/2018 0:00,11.0000000,11.0:35,47.797971000000,-4.179474000000,,Loctudy - Finistère,42332,observation-d9521e16-0ebd-4c84-83f1-51cff717e40d-3,https://biolit.fr/observations/observation-d9521e16-0ebd-4c84-83f1-51cff717e40d-3/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20181026_113333.jpg,,TRUE, +N1,59480,sortie-d9521e16-0ebd-4c84-83f1-51cff717e40d,https://biolit.fr/sorties/sortie-d9521e16-0ebd-4c84-83f1-51cff717e40d/,Phil,,10/26/2018 0:00,11.0000000,11.0:35,47.797971000000,-4.179474000000,,Loctudy - Finistère,42334,observation-d9521e16-0ebd-4c84-83f1-51cff717e40d-4,https://biolit.fr/observations/observation-d9521e16-0ebd-4c84-83f1-51cff717e40d-4/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/20181026_113704.jpg,,TRUE, +N1,59481,sortie-b049e48a-4983-4c0d-9411-b9cfe8e6d98f,https://biolit.fr/sorties/sortie-b049e48a-4983-4c0d-9411-b9cfe8e6d98f/,Phil,,7/22/2018 0:00,11.0000000,11.0:25,47.70837200000,-3.992182000000,,Fouesnant - Finistère,42336,observation-b049e48a-4983-4c0d-9411-b9cfe8e6d98f,https://biolit.fr/observations/observation-b049e48a-4983-4c0d-9411-b9cfe8e6d98f/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110925.JPG,,TRUE, +N1,59481,sortie-b049e48a-4983-4c0d-9411-b9cfe8e6d98f,https://biolit.fr/sorties/sortie-b049e48a-4983-4c0d-9411-b9cfe8e6d98f/,Phil,,7/22/2018 0:00,11.0000000,11.0:25,47.70837200000,-3.992182000000,,Fouesnant - Finistère,42338,observation-b049e48a-4983-4c0d-9411-b9cfe8e6d98f-2,https://biolit.fr/observations/observation-b049e48a-4983-4c0d-9411-b9cfe8e6d98f-2/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110926.JPG,,TRUE, +N1,59481,sortie-b049e48a-4983-4c0d-9411-b9cfe8e6d98f,https://biolit.fr/sorties/sortie-b049e48a-4983-4c0d-9411-b9cfe8e6d98f/,Phil,,7/22/2018 0:00,11.0000000,11.0:25,47.70837200000,-3.992182000000,,Fouesnant - Finistère,42340,observation-b049e48a-4983-4c0d-9411-b9cfe8e6d98f-3,https://biolit.fr/observations/observation-b049e48a-4983-4c0d-9411-b9cfe8e6d98f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110927_0.JPG,,FALSE, +N1,59481,sortie-b049e48a-4983-4c0d-9411-b9cfe8e6d98f,https://biolit.fr/sorties/sortie-b049e48a-4983-4c0d-9411-b9cfe8e6d98f/,Phil,,7/22/2018 0:00,11.0000000,11.0:25,47.70837200000,-3.992182000000,,Fouesnant - Finistère,42342,observation-b049e48a-4983-4c0d-9411-b9cfe8e6d98f-4,https://biolit.fr/observations/observation-b049e48a-4983-4c0d-9411-b9cfe8e6d98f-4/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1110928.JPG,,TRUE, +N1,59481,sortie-b049e48a-4983-4c0d-9411-b9cfe8e6d98f,https://biolit.fr/sorties/sortie-b049e48a-4983-4c0d-9411-b9cfe8e6d98f/,Phil,,7/22/2018 0:00,11.0000000,11.0:25,47.70837200000,-3.992182000000,,Fouesnant - Finistère,42344,observation-b049e48a-4983-4c0d-9411-b9cfe8e6d98f-5,https://biolit.fr/observations/observation-b049e48a-4983-4c0d-9411-b9cfe8e6d98f-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110929.JPG,,FALSE, +N1,59481,sortie-b049e48a-4983-4c0d-9411-b9cfe8e6d98f,https://biolit.fr/sorties/sortie-b049e48a-4983-4c0d-9411-b9cfe8e6d98f/,Phil,,7/22/2018 0:00,11.0000000,11.0:25,47.70837200000,-3.992182000000,,Fouesnant - Finistère,42346,observation-b049e48a-4983-4c0d-9411-b9cfe8e6d98f-6,https://biolit.fr/observations/observation-b049e48a-4983-4c0d-9411-b9cfe8e6d98f-6/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/P1110931.JPG,,TRUE, +N1,59482,sortie-c6303bfd-3875-473f-81d4-4bb8da9a3f67,https://biolit.fr/sorties/sortie-c6303bfd-3875-473f-81d4-4bb8da9a3f67/,Phil,,10/26/2018 0:00,10.0:45,10.0:55,47.800565000000,-4.179954000000,,Loctudy - Finistère,42348,observation-c6303bfd-3875-473f-81d4-4bb8da9a3f67,https://biolit.fr/observations/observation-c6303bfd-3875-473f-81d4-4bb8da9a3f67/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181026_104337.jpg,,FALSE, +N1,59482,sortie-c6303bfd-3875-473f-81d4-4bb8da9a3f67,https://biolit.fr/sorties/sortie-c6303bfd-3875-473f-81d4-4bb8da9a3f67/,Phil,,10/26/2018 0:00,10.0:45,10.0:55,47.800565000000,-4.179954000000,,Loctudy - Finistère,42350,observation-c6303bfd-3875-473f-81d4-4bb8da9a3f67-2,https://biolit.fr/observations/observation-c6303bfd-3875-473f-81d4-4bb8da9a3f67-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181026_104406.jpg,,FALSE, +N1,59482,sortie-c6303bfd-3875-473f-81d4-4bb8da9a3f67,https://biolit.fr/sorties/sortie-c6303bfd-3875-473f-81d4-4bb8da9a3f67/,Phil,,10/26/2018 0:00,10.0:45,10.0:55,47.800565000000,-4.179954000000,,Loctudy - Finistère,42352,observation-c6303bfd-3875-473f-81d4-4bb8da9a3f67-3,https://biolit.fr/observations/observation-c6303bfd-3875-473f-81d4-4bb8da9a3f67-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20181026_104951.jpg,,TRUE, +N1,59482,sortie-c6303bfd-3875-473f-81d4-4bb8da9a3f67,https://biolit.fr/sorties/sortie-c6303bfd-3875-473f-81d4-4bb8da9a3f67/,Phil,,10/26/2018 0:00,10.0:45,10.0:55,47.800565000000,-4.179954000000,,Loctudy - Finistère,42354,observation-c6303bfd-3875-473f-81d4-4bb8da9a3f67-4,https://biolit.fr/observations/observation-c6303bfd-3875-473f-81d4-4bb8da9a3f67-4/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181026_104958.jpg,,TRUE, +N1,59482,sortie-c6303bfd-3875-473f-81d4-4bb8da9a3f67,https://biolit.fr/sorties/sortie-c6303bfd-3875-473f-81d4-4bb8da9a3f67/,Phil,,10/26/2018 0:00,10.0:45,10.0:55,47.800565000000,-4.179954000000,,Loctudy - Finistère,42356,observation-c6303bfd-3875-473f-81d4-4bb8da9a3f67-5,https://biolit.fr/observations/observation-c6303bfd-3875-473f-81d4-4bb8da9a3f67-5/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20181026_105206.jpg,,TRUE, +N1,59483,sortie-acdd3023-9b0c-4ba4-91cc-102cfd72aae8,https://biolit.fr/sorties/sortie-acdd3023-9b0c-4ba4-91cc-102cfd72aae8/,Phil,,7/16/2018 0:00,13.0000000,13.0000000,47.808705000000,-3.712281000000,,Moëlan-sur-Mer - Finistère,42358,observation-acdd3023-9b0c-4ba4-91cc-102cfd72aae8,https://biolit.fr/observations/observation-acdd3023-9b0c-4ba4-91cc-102cfd72aae8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110757.JPG,,FALSE, +N1,59483,sortie-acdd3023-9b0c-4ba4-91cc-102cfd72aae8,https://biolit.fr/sorties/sortie-acdd3023-9b0c-4ba4-91cc-102cfd72aae8/,Phil,,7/16/2018 0:00,13.0000000,13.0000000,47.808705000000,-3.712281000000,,Moëlan-sur-Mer - Finistère,42360,observation-acdd3023-9b0c-4ba4-91cc-102cfd72aae8-2,https://biolit.fr/observations/observation-acdd3023-9b0c-4ba4-91cc-102cfd72aae8-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110751.JPG,,TRUE, +N1,59483,sortie-acdd3023-9b0c-4ba4-91cc-102cfd72aae8,https://biolit.fr/sorties/sortie-acdd3023-9b0c-4ba4-91cc-102cfd72aae8/,Phil,,7/16/2018 0:00,13.0000000,13.0000000,47.808705000000,-3.712281000000,,Moëlan-sur-Mer - Finistère,42362,observation-acdd3023-9b0c-4ba4-91cc-102cfd72aae8-3,https://biolit.fr/observations/observation-acdd3023-9b0c-4ba4-91cc-102cfd72aae8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110752.JPG,,FALSE, +N1,59483,sortie-acdd3023-9b0c-4ba4-91cc-102cfd72aae8,https://biolit.fr/sorties/sortie-acdd3023-9b0c-4ba4-91cc-102cfd72aae8/,Phil,,7/16/2018 0:00,13.0000000,13.0000000,47.808705000000,-3.712281000000,,Moëlan-sur-Mer - Finistère,42364,observation-acdd3023-9b0c-4ba4-91cc-102cfd72aae8-4,https://biolit.fr/observations/observation-acdd3023-9b0c-4ba4-91cc-102cfd72aae8-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110755.JPG,,FALSE, +N1,59483,sortie-acdd3023-9b0c-4ba4-91cc-102cfd72aae8,https://biolit.fr/sorties/sortie-acdd3023-9b0c-4ba4-91cc-102cfd72aae8/,Phil,,7/16/2018 0:00,13.0000000,13.0000000,47.808705000000,-3.712281000000,,Moëlan-sur-Mer - Finistère,42366,observation-acdd3023-9b0c-4ba4-91cc-102cfd72aae8-5,https://biolit.fr/observations/observation-acdd3023-9b0c-4ba4-91cc-102cfd72aae8-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110756.JPG,,FALSE, +N1,59484,sortie-79a829a2-899b-4710-9fb7-51bc808a9f85,https://biolit.fr/sorties/sortie-79a829a2-899b-4710-9fb7-51bc808a9f85/,Phil,,06/02/2018,12.0000000,12.0000000,48.168117000000,-4.294433000000,,Plomodiern - Finistère,42368,observation-79a829a2-899b-4710-9fb7-51bc808a9f85,https://biolit.fr/observations/observation-79a829a2-899b-4710-9fb7-51bc808a9f85/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110676.JPG,,FALSE, +N1,59484,sortie-79a829a2-899b-4710-9fb7-51bc808a9f85,https://biolit.fr/sorties/sortie-79a829a2-899b-4710-9fb7-51bc808a9f85/,Phil,,06/02/2018,12.0000000,12.0000000,48.168117000000,-4.294433000000,,Plomodiern - Finistère,42370,observation-79a829a2-899b-4710-9fb7-51bc808a9f85-2,https://biolit.fr/observations/observation-79a829a2-899b-4710-9fb7-51bc808a9f85-2/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1110678.JPG,,TRUE, +N1,59484,sortie-79a829a2-899b-4710-9fb7-51bc808a9f85,https://biolit.fr/sorties/sortie-79a829a2-899b-4710-9fb7-51bc808a9f85/,Phil,,06/02/2018,12.0000000,12.0000000,48.168117000000,-4.294433000000,,Plomodiern - Finistère,42372,observation-79a829a2-899b-4710-9fb7-51bc808a9f85-3,https://biolit.fr/observations/observation-79a829a2-899b-4710-9fb7-51bc808a9f85-3/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1110674.JPG,,TRUE, +N1,59484,sortie-79a829a2-899b-4710-9fb7-51bc808a9f85,https://biolit.fr/sorties/sortie-79a829a2-899b-4710-9fb7-51bc808a9f85/,Phil,,06/02/2018,12.0000000,12.0000000,48.168117000000,-4.294433000000,,Plomodiern - Finistère,42374,observation-79a829a2-899b-4710-9fb7-51bc808a9f85-4,https://biolit.fr/observations/observation-79a829a2-899b-4710-9fb7-51bc808a9f85-4/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/2023/07/P1110672.JPG,,TRUE, +N1,59484,sortie-79a829a2-899b-4710-9fb7-51bc808a9f85,https://biolit.fr/sorties/sortie-79a829a2-899b-4710-9fb7-51bc808a9f85/,Phil,,06/02/2018,12.0000000,12.0000000,48.168117000000,-4.294433000000,,Plomodiern - Finistère,42376,observation-79a829a2-899b-4710-9fb7-51bc808a9f85-5,https://biolit.fr/observations/observation-79a829a2-899b-4710-9fb7-51bc808a9f85-5/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1110670.JPG,,TRUE, +N1,59485,sortie-cf63159f-4e7c-4f72-a817-abe42e54b059,https://biolit.fr/sorties/sortie-cf63159f-4e7c-4f72-a817-abe42e54b059/,naisf,,10/24/2018 0:00,10.0000000,12.0000000,46.139469000000,-1.173333000000,,"Plage des Minimes, La Rochelle",42378,observation-cf63159f-4e7c-4f72-a817-abe42e54b059,https://biolit.fr/observations/observation-cf63159f-4e7c-4f72-a817-abe42e54b059/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181024_103611_HDR-ConvertImage-scaled.jpg,,FALSE, +N1,59485,sortie-cf63159f-4e7c-4f72-a817-abe42e54b059,https://biolit.fr/sorties/sortie-cf63159f-4e7c-4f72-a817-abe42e54b059/,naisf,,10/24/2018 0:00,10.0000000,12.0000000,46.139469000000,-1.173333000000,,"Plage des Minimes, La Rochelle",42380,observation-cf63159f-4e7c-4f72-a817-abe42e54b059-2,https://biolit.fr/observations/observation-cf63159f-4e7c-4f72-a817-abe42e54b059-2/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181024_103600-ConvertImage-scaled.jpg,,TRUE, +N1,59485,sortie-cf63159f-4e7c-4f72-a817-abe42e54b059,https://biolit.fr/sorties/sortie-cf63159f-4e7c-4f72-a817-abe42e54b059/,naisf,,10/24/2018 0:00,10.0000000,12.0000000,46.139469000000,-1.173333000000,,"Plage des Minimes, La Rochelle",42382,observation-cf63159f-4e7c-4f72-a817-abe42e54b059-3,https://biolit.fr/observations/observation-cf63159f-4e7c-4f72-a817-abe42e54b059-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181024_103300_HDR-ConvertImage-scaled.jpg,,FALSE, +N1,59485,sortie-cf63159f-4e7c-4f72-a817-abe42e54b059,https://biolit.fr/sorties/sortie-cf63159f-4e7c-4f72-a817-abe42e54b059/,naisf,,10/24/2018 0:00,10.0000000,12.0000000,46.139469000000,-1.173333000000,,"Plage des Minimes, La Rochelle",42384,observation-cf63159f-4e7c-4f72-a817-abe42e54b059-4,https://biolit.fr/observations/observation-cf63159f-4e7c-4f72-a817-abe42e54b059-4/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/20181024_102449-ConvertImage-scaled.jpg,,TRUE, +N1,59485,sortie-cf63159f-4e7c-4f72-a817-abe42e54b059,https://biolit.fr/sorties/sortie-cf63159f-4e7c-4f72-a817-abe42e54b059/,naisf,,10/24/2018 0:00,10.0000000,12.0000000,46.139469000000,-1.173333000000,,"Plage des Minimes, La Rochelle",42386,observation-cf63159f-4e7c-4f72-a817-abe42e54b059-5,https://biolit.fr/observations/observation-cf63159f-4e7c-4f72-a817-abe42e54b059-5/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181024_104844-scaled.jpg,,TRUE, +N1,59485,sortie-cf63159f-4e7c-4f72-a817-abe42e54b059,https://biolit.fr/sorties/sortie-cf63159f-4e7c-4f72-a817-abe42e54b059/,naisf,,10/24/2018 0:00,10.0000000,12.0000000,46.139469000000,-1.173333000000,,"Plage des Minimes, La Rochelle",42388,observation-cf63159f-4e7c-4f72-a817-abe42e54b059-6,https://biolit.fr/observations/observation-cf63159f-4e7c-4f72-a817-abe42e54b059-6/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181024_105244-scaled.jpg,,TRUE, +N1,59485,sortie-cf63159f-4e7c-4f72-a817-abe42e54b059,https://biolit.fr/sorties/sortie-cf63159f-4e7c-4f72-a817-abe42e54b059/,naisf,,10/24/2018 0:00,10.0000000,12.0000000,46.139469000000,-1.173333000000,,"Plage des Minimes, La Rochelle",42390,observation-cf63159f-4e7c-4f72-a817-abe42e54b059-7,https://biolit.fr/observations/observation-cf63159f-4e7c-4f72-a817-abe42e54b059-7/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181024_105803-scaled.jpg,,TRUE, +N1,59485,sortie-cf63159f-4e7c-4f72-a817-abe42e54b059,https://biolit.fr/sorties/sortie-cf63159f-4e7c-4f72-a817-abe42e54b059/,naisf,,10/24/2018 0:00,10.0000000,12.0000000,46.139469000000,-1.173333000000,,"Plage des Minimes, La Rochelle",42392,observation-cf63159f-4e7c-4f72-a817-abe42e54b059-8,https://biolit.fr/observations/observation-cf63159f-4e7c-4f72-a817-abe42e54b059-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181024_112309-scaled.jpg,,FALSE, +N1,59485,sortie-cf63159f-4e7c-4f72-a817-abe42e54b059,https://biolit.fr/sorties/sortie-cf63159f-4e7c-4f72-a817-abe42e54b059/,naisf,,10/24/2018 0:00,10.0000000,12.0000000,46.139469000000,-1.173333000000,,"Plage des Minimes, La Rochelle",42394,observation-cf63159f-4e7c-4f72-a817-abe42e54b059-9,https://biolit.fr/observations/observation-cf63159f-4e7c-4f72-a817-abe42e54b059-9/,Phymatolithon lenormandii,Algue encroûtante rouge de Lenormand,,https://biolit.fr/wp-content/uploads/2023/07/20181024_112855-scaled.jpg,,TRUE, +N1,59485,sortie-cf63159f-4e7c-4f72-a817-abe42e54b059,https://biolit.fr/sorties/sortie-cf63159f-4e7c-4f72-a817-abe42e54b059/,naisf,,10/24/2018 0:00,10.0000000,12.0000000,46.139469000000,-1.173333000000,,"Plage des Minimes, La Rochelle",42396,observation-cf63159f-4e7c-4f72-a817-abe42e54b059-10,https://biolit.fr/observations/observation-cf63159f-4e7c-4f72-a817-abe42e54b059-10/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/20181024_111347_HDR-scaled.jpg,,TRUE, +N1,59485,sortie-cf63159f-4e7c-4f72-a817-abe42e54b059,https://biolit.fr/sorties/sortie-cf63159f-4e7c-4f72-a817-abe42e54b059/,naisf,,10/24/2018 0:00,10.0000000,12.0000000,46.139469000000,-1.173333000000,,"Plage des Minimes, La Rochelle",42398,observation-cf63159f-4e7c-4f72-a817-abe42e54b059-11,https://biolit.fr/observations/observation-cf63159f-4e7c-4f72-a817-abe42e54b059-11/,Lanice conchilega,Lanice,,https://biolit.fr/wp-content/uploads/2023/07/20181024_110619-scaled.jpg,,TRUE, +N1,59486,sortie-4a8f8e08-32db-4c90-b326-aedf285c1f0c,https://biolit.fr/sorties/sortie-4a8f8e08-32db-4c90-b326-aedf285c1f0c/,Phil,,9/28/2018 0:00,14.0:45,14.0000000,48.03880300000,-4.8478110000,,Île de Sein - Finistère,42400,observation-4a8f8e08-32db-4c90-b326-aedf285c1f0c,https://biolit.fr/observations/observation-4a8f8e08-32db-4c90-b326-aedf285c1f0c/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/P1120252.JPG,,TRUE, +N1,59486,sortie-4a8f8e08-32db-4c90-b326-aedf285c1f0c,https://biolit.fr/sorties/sortie-4a8f8e08-32db-4c90-b326-aedf285c1f0c/,Phil,,9/28/2018 0:00,14.0:45,14.0000000,48.03880300000,-4.8478110000,,Île de Sein - Finistère,42402,observation-4a8f8e08-32db-4c90-b326-aedf285c1f0c-2,https://biolit.fr/observations/observation-4a8f8e08-32db-4c90-b326-aedf285c1f0c-2/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/P1120277.JPG,,TRUE, +N1,59486,sortie-4a8f8e08-32db-4c90-b326-aedf285c1f0c,https://biolit.fr/sorties/sortie-4a8f8e08-32db-4c90-b326-aedf285c1f0c/,Phil,,9/28/2018 0:00,14.0:45,14.0000000,48.03880300000,-4.8478110000,,Île de Sein - Finistère,42404,observation-4a8f8e08-32db-4c90-b326-aedf285c1f0c-3,https://biolit.fr/observations/observation-4a8f8e08-32db-4c90-b326-aedf285c1f0c-3/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/P1120265.JPG,,TRUE, +N1,59487,sortie-295438be-8065-4acd-905b-d6dc8878ec78,https://biolit.fr/sorties/sortie-295438be-8065-4acd-905b-d6dc8878ec78/,Phil,,7/22/2018 0:00,11.0000000,11.0:25,47.709018000000,-3.992423000000,,Fouesnant - Finistère,42406,observation-295438be-8065-4acd-905b-d6dc8878ec78,https://biolit.fr/observations/observation-295438be-8065-4acd-905b-d6dc8878ec78/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110911.JPG,,FALSE, +N1,59487,sortie-295438be-8065-4acd-905b-d6dc8878ec78,https://biolit.fr/sorties/sortie-295438be-8065-4acd-905b-d6dc8878ec78/,Phil,,7/22/2018 0:00,11.0000000,11.0:25,47.709018000000,-3.992423000000,,Fouesnant - Finistère,42408,observation-295438be-8065-4acd-905b-d6dc8878ec78-2,https://biolit.fr/observations/observation-295438be-8065-4acd-905b-d6dc8878ec78-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110912_0.JPG,,FALSE, +N1,59487,sortie-295438be-8065-4acd-905b-d6dc8878ec78,https://biolit.fr/sorties/sortie-295438be-8065-4acd-905b-d6dc8878ec78/,Phil,,7/22/2018 0:00,11.0000000,11.0:25,47.709018000000,-3.992423000000,,Fouesnant - Finistère,42410,observation-295438be-8065-4acd-905b-d6dc8878ec78-3,https://biolit.fr/observations/observation-295438be-8065-4acd-905b-d6dc8878ec78-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110910.JPG,,FALSE, +N1,59487,sortie-295438be-8065-4acd-905b-d6dc8878ec78,https://biolit.fr/sorties/sortie-295438be-8065-4acd-905b-d6dc8878ec78/,Phil,,7/22/2018 0:00,11.0000000,11.0:25,47.709018000000,-3.992423000000,,Fouesnant - Finistère,42412,observation-295438be-8065-4acd-905b-d6dc8878ec78-4,https://biolit.fr/observations/observation-295438be-8065-4acd-905b-d6dc8878ec78-4/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/P1110916.JPG,,TRUE, +N1,59487,sortie-295438be-8065-4acd-905b-d6dc8878ec78,https://biolit.fr/sorties/sortie-295438be-8065-4acd-905b-d6dc8878ec78/,Phil,,7/22/2018 0:00,11.0000000,11.0:25,47.709018000000,-3.992423000000,,Fouesnant - Finistère,42414,observation-295438be-8065-4acd-905b-d6dc8878ec78-5,https://biolit.fr/observations/observation-295438be-8065-4acd-905b-d6dc8878ec78-5/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/P1110920_0.JPG,,TRUE, +N1,59487,sortie-295438be-8065-4acd-905b-d6dc8878ec78,https://biolit.fr/sorties/sortie-295438be-8065-4acd-905b-d6dc8878ec78/,Phil,,7/22/2018 0:00,11.0000000,11.0:25,47.709018000000,-3.992423000000,,Fouesnant - Finistère,42416,observation-295438be-8065-4acd-905b-d6dc8878ec78-6,https://biolit.fr/observations/observation-295438be-8065-4acd-905b-d6dc8878ec78-6/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/P1110923.JPG,,TRUE, +N1,59488,sortie-ff20b61d-f696-49fc-94dd-3fb32db0096d,https://biolit.fr/sorties/sortie-ff20b61d-f696-49fc-94dd-3fb32db0096d/,Nina Colin,,10/11/2018,15.0000000,17.0000000,48.874262000000,-1.841943000000,,Grande île Chausey,42418,observation-ff20b61d-f696-49fc-94dd-3fb32db0096d,https://biolit.fr/observations/observation-ff20b61d-f696-49fc-94dd-3fb32db0096d/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20181010_151421-scaled.jpg,,TRUE, +N1,59488,sortie-ff20b61d-f696-49fc-94dd-3fb32db0096d,https://biolit.fr/sorties/sortie-ff20b61d-f696-49fc-94dd-3fb32db0096d/,Nina Colin,,10/11/2018,15.0000000,17.0000000,48.874262000000,-1.841943000000,,Grande île Chausey,42420,observation-ff20b61d-f696-49fc-94dd-3fb32db0096d-2,https://biolit.fr/observations/observation-ff20b61d-f696-49fc-94dd-3fb32db0096d-2/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20181010_154644-scaled.jpg,,TRUE, +N1,59488,sortie-ff20b61d-f696-49fc-94dd-3fb32db0096d,https://biolit.fr/sorties/sortie-ff20b61d-f696-49fc-94dd-3fb32db0096d/,Nina Colin,,10/11/2018,15.0000000,17.0000000,48.874262000000,-1.841943000000,,Grande île Chausey,42422,observation-ff20b61d-f696-49fc-94dd-3fb32db0096d-3,https://biolit.fr/observations/observation-ff20b61d-f696-49fc-94dd-3fb32db0096d-3/,Patella pellucida,Helcion,,https://biolit.fr/wp-content/uploads/2023/07/20181010_154931.jpg,,TRUE, +N1,59489,sortie-5e7c3992-c4cd-4843-a143-26ff31f1e603,https://biolit.fr/sorties/sortie-5e7c3992-c4cd-4843-a143-26ff31f1e603/,Nina Colin,,10/08/2018,12.0000000,13.0000000,48.846787000000,-1.914513000000,,Large de Chausey,42424,observation-5e7c3992-c4cd-4843-a143-26ff31f1e603,https://biolit.fr/observations/observation-5e7c3992-c4cd-4843-a143-26ff31f1e603/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/20181008_121642-scaled.jpg,,TRUE, +N1,59490,sortie-6a0c642a-4784-4fbd-b918-b4a2219150ae,https://biolit.fr/sorties/sortie-6a0c642a-4784-4fbd-b918-b4a2219150ae/,Phil,,7/16/2018 0:00,12.0:55,13.000005,47.810014000000,-3.711954000000,,Moëlan-sur-Mer - Finistère,42426,observation-6a0c642a-4784-4fbd-b918-b4a2219150ae,https://biolit.fr/observations/observation-6a0c642a-4784-4fbd-b918-b4a2219150ae/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1110739.JPG,,TRUE, +N1,59490,sortie-6a0c642a-4784-4fbd-b918-b4a2219150ae,https://biolit.fr/sorties/sortie-6a0c642a-4784-4fbd-b918-b4a2219150ae/,Phil,,7/16/2018 0:00,12.0:55,13.000005,47.810014000000,-3.711954000000,,Moëlan-sur-Mer - Finistère,42428,observation-6a0c642a-4784-4fbd-b918-b4a2219150ae-2,https://biolit.fr/observations/observation-6a0c642a-4784-4fbd-b918-b4a2219150ae-2/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1110731_0.JPG,,TRUE, +N1,59490,sortie-6a0c642a-4784-4fbd-b918-b4a2219150ae,https://biolit.fr/sorties/sortie-6a0c642a-4784-4fbd-b918-b4a2219150ae/,Phil,,7/16/2018 0:00,12.0:55,13.000005,47.810014000000,-3.711954000000,,Moëlan-sur-Mer - Finistère,42430,observation-6a0c642a-4784-4fbd-b918-b4a2219150ae-3,https://biolit.fr/observations/observation-6a0c642a-4784-4fbd-b918-b4a2219150ae-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110741.JPG,,FALSE, +N1,59490,sortie-6a0c642a-4784-4fbd-b918-b4a2219150ae,https://biolit.fr/sorties/sortie-6a0c642a-4784-4fbd-b918-b4a2219150ae/,Phil,,7/16/2018 0:00,12.0:55,13.000005,47.810014000000,-3.711954000000,,Moëlan-sur-Mer - Finistère,42432,observation-6a0c642a-4784-4fbd-b918-b4a2219150ae-4,https://biolit.fr/observations/observation-6a0c642a-4784-4fbd-b918-b4a2219150ae-4/,Balanus crenatus,Balane crénelée,,https://biolit.fr/wp-content/uploads/2023/07/P1110744.JPG,,TRUE, +N1,59490,sortie-6a0c642a-4784-4fbd-b918-b4a2219150ae,https://biolit.fr/sorties/sortie-6a0c642a-4784-4fbd-b918-b4a2219150ae/,Phil,,7/16/2018 0:00,12.0:55,13.000005,47.810014000000,-3.711954000000,,Moëlan-sur-Mer - Finistère,42434,observation-6a0c642a-4784-4fbd-b918-b4a2219150ae-5,https://biolit.fr/observations/observation-6a0c642a-4784-4fbd-b918-b4a2219150ae-5/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1110745.JPG,,TRUE, +N1,59490,sortie-6a0c642a-4784-4fbd-b918-b4a2219150ae,https://biolit.fr/sorties/sortie-6a0c642a-4784-4fbd-b918-b4a2219150ae/,Phil,,7/16/2018 0:00,12.0:55,13.000005,47.810014000000,-3.711954000000,,Moëlan-sur-Mer - Finistère,42436,observation-6a0c642a-4784-4fbd-b918-b4a2219150ae-6,https://biolit.fr/observations/observation-6a0c642a-4784-4fbd-b918-b4a2219150ae-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110746.JPG,,FALSE, +N1,59490,sortie-6a0c642a-4784-4fbd-b918-b4a2219150ae,https://biolit.fr/sorties/sortie-6a0c642a-4784-4fbd-b918-b4a2219150ae/,Phil,,7/16/2018 0:00,12.0:55,13.000005,47.810014000000,-3.711954000000,,Moëlan-sur-Mer - Finistère,42438,observation-6a0c642a-4784-4fbd-b918-b4a2219150ae-7,https://biolit.fr/observations/observation-6a0c642a-4784-4fbd-b918-b4a2219150ae-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110748.JPG,,FALSE, +N1,59491,sortie-1935d840-b3b0-4809-8eaa-235cd248516b,https://biolit.fr/sorties/sortie-1935d840-b3b0-4809-8eaa-235cd248516b/,Phil,,9/16/2018 0:00,16.0000000,16.0000000,47.873339000000,-3.932287000000,,Concarneau - Finistère,42440,observation-1935d840-b3b0-4809-8eaa-235cd248516b,https://biolit.fr/observations/observation-1935d840-b3b0-4809-8eaa-235cd248516b/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20180916_164714_0.jpg,,TRUE, +N1,59491,sortie-1935d840-b3b0-4809-8eaa-235cd248516b,https://biolit.fr/sorties/sortie-1935d840-b3b0-4809-8eaa-235cd248516b/,Phil,,9/16/2018 0:00,16.0000000,16.0000000,47.873339000000,-3.932287000000,,Concarneau - Finistère,42442,observation-1935d840-b3b0-4809-8eaa-235cd248516b-2,https://biolit.fr/observations/observation-1935d840-b3b0-4809-8eaa-235cd248516b-2/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20180916_164743.jpg,,TRUE, +N1,59491,sortie-1935d840-b3b0-4809-8eaa-235cd248516b,https://biolit.fr/sorties/sortie-1935d840-b3b0-4809-8eaa-235cd248516b/,Phil,,9/16/2018 0:00,16.0000000,16.0000000,47.873339000000,-3.932287000000,,Concarneau - Finistère,42444,observation-1935d840-b3b0-4809-8eaa-235cd248516b-3,https://biolit.fr/observations/observation-1935d840-b3b0-4809-8eaa-235cd248516b-3/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20180916_164819.jpg,,TRUE, +N1,59491,sortie-1935d840-b3b0-4809-8eaa-235cd248516b,https://biolit.fr/sorties/sortie-1935d840-b3b0-4809-8eaa-235cd248516b/,Phil,,9/16/2018 0:00,16.0000000,16.0000000,47.873339000000,-3.932287000000,,Concarneau - Finistère,42446,observation-1935d840-b3b0-4809-8eaa-235cd248516b-4,https://biolit.fr/observations/observation-1935d840-b3b0-4809-8eaa-235cd248516b-4/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20180916_164826.jpg,,TRUE, +N1,59491,sortie-1935d840-b3b0-4809-8eaa-235cd248516b,https://biolit.fr/sorties/sortie-1935d840-b3b0-4809-8eaa-235cd248516b/,Phil,,9/16/2018 0:00,16.0000000,16.0000000,47.873339000000,-3.932287000000,,Concarneau - Finistère,42448,observation-1935d840-b3b0-4809-8eaa-235cd248516b-5,https://biolit.fr/observations/observation-1935d840-b3b0-4809-8eaa-235cd248516b-5/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20180916_164844.jpg,,TRUE, +N1,59492,sortie-acc7debe-2cef-4da4-8776-3ce0d228515b,https://biolit.fr/sorties/sortie-acc7debe-2cef-4da4-8776-3ce0d228515b/,Guillaume D,,10/09/2018,10.0000000,12.0000000,46.13954700000,-1.173687000000,,"La Rochelle, Plage des Minimes",42450,observation-acc7debe-2cef-4da4-8776-3ce0d228515b,https://biolit.fr/observations/observation-acc7debe-2cef-4da4-8776-3ce0d228515b/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/20181009_102337-scaled.jpg,,TRUE, +N1,59492,sortie-acc7debe-2cef-4da4-8776-3ce0d228515b,https://biolit.fr/sorties/sortie-acc7debe-2cef-4da4-8776-3ce0d228515b/,Guillaume D,,10/09/2018,10.0000000,12.0000000,46.13954700000,-1.173687000000,,"La Rochelle, Plage des Minimes",42452,observation-acc7debe-2cef-4da4-8776-3ce0d228515b-2,https://biolit.fr/observations/observation-acc7debe-2cef-4da4-8776-3ce0d228515b-2/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/20181009_102450_5mo.jpg,,TRUE, +N1,59492,sortie-acc7debe-2cef-4da4-8776-3ce0d228515b,https://biolit.fr/sorties/sortie-acc7debe-2cef-4da4-8776-3ce0d228515b/,Guillaume D,,10/09/2018,10.0000000,12.0000000,46.13954700000,-1.173687000000,,"La Rochelle, Plage des Minimes",42454,observation-acc7debe-2cef-4da4-8776-3ce0d228515b-3,https://biolit.fr/observations/observation-acc7debe-2cef-4da4-8776-3ce0d228515b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20181009_102454-scaled.jpg,,FALSE, +N1,59492,sortie-acc7debe-2cef-4da4-8776-3ce0d228515b,https://biolit.fr/sorties/sortie-acc7debe-2cef-4da4-8776-3ce0d228515b/,Guillaume D,,10/09/2018,10.0000000,12.0000000,46.13954700000,-1.173687000000,,"La Rochelle, Plage des Minimes",42456,observation-acc7debe-2cef-4da4-8776-3ce0d228515b-4,https://biolit.fr/observations/observation-acc7debe-2cef-4da4-8776-3ce0d228515b-4/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20181009_104256-scaled.jpg,,TRUE, +N1,59492,sortie-acc7debe-2cef-4da4-8776-3ce0d228515b,https://biolit.fr/sorties/sortie-acc7debe-2cef-4da4-8776-3ce0d228515b/,Guillaume D,,10/09/2018,10.0000000,12.0000000,46.13954700000,-1.173687000000,,"La Rochelle, Plage des Minimes",42458,observation-acc7debe-2cef-4da4-8776-3ce0d228515b-5,https://biolit.fr/observations/observation-acc7debe-2cef-4da4-8776-3ce0d228515b-5/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20181009_104244-scaled.jpg,,TRUE, +N1,59492,sortie-acc7debe-2cef-4da4-8776-3ce0d228515b,https://biolit.fr/sorties/sortie-acc7debe-2cef-4da4-8776-3ce0d228515b/,Guillaume D,,10/09/2018,10.0000000,12.0000000,46.13954700000,-1.173687000000,,"La Rochelle, Plage des Minimes",42460,observation-acc7debe-2cef-4da4-8776-3ce0d228515b-6,https://biolit.fr/observations/observation-acc7debe-2cef-4da4-8776-3ce0d228515b-6/,Gaidropsarus mediterraneus,Motelle à trois barbillons,,https://biolit.fr/wp-content/uploads/2023/07/20181009_112711-scaled.jpg,,TRUE, +N1,59492,sortie-acc7debe-2cef-4da4-8776-3ce0d228515b,https://biolit.fr/sorties/sortie-acc7debe-2cef-4da4-8776-3ce0d228515b/,Guillaume D,,10/09/2018,10.0000000,12.0000000,46.13954700000,-1.173687000000,,"La Rochelle, Plage des Minimes",42462,observation-acc7debe-2cef-4da4-8776-3ce0d228515b-7,https://biolit.fr/observations/observation-acc7debe-2cef-4da4-8776-3ce0d228515b-7/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/20181009_112803-scaled.jpg,,TRUE, +N1,59493,sortie-7fe74170-7ea5-4087-83db-427b588cdd82,https://biolit.fr/sorties/sortie-7fe74170-7ea5-4087-83db-427b588cdd82/,Phil,,9/28/2018 0:00,11.0000000,11.0000000,48.038775000000,-4.855156000000,,Île de Sein - Finistère,42464,observation-7fe74170-7ea5-4087-83db-427b588cdd82,https://biolit.fr/observations/observation-7fe74170-7ea5-4087-83db-427b588cdd82/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1120235.JPG,,TRUE, +N1,59493,sortie-7fe74170-7ea5-4087-83db-427b588cdd82,https://biolit.fr/sorties/sortie-7fe74170-7ea5-4087-83db-427b588cdd82/,Phil,,9/28/2018 0:00,11.0000000,11.0000000,48.038775000000,-4.855156000000,,Île de Sein - Finistère,42466,observation-7fe74170-7ea5-4087-83db-427b588cdd82-2,https://biolit.fr/observations/observation-7fe74170-7ea5-4087-83db-427b588cdd82-2/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1120226.JPG,,TRUE, +N1,59493,sortie-7fe74170-7ea5-4087-83db-427b588cdd82,https://biolit.fr/sorties/sortie-7fe74170-7ea5-4087-83db-427b588cdd82/,Phil,,9/28/2018 0:00,11.0000000,11.0000000,48.038775000000,-4.855156000000,,Île de Sein - Finistère,42468,observation-7fe74170-7ea5-4087-83db-427b588cdd82-3,https://biolit.fr/observations/observation-7fe74170-7ea5-4087-83db-427b588cdd82-3/,Bifurcaria bifurcata,Bifurcaire,,https://biolit.fr/wp-content/uploads/2023/07/P1120234.JPG,,TRUE, +N1,59493,sortie-7fe74170-7ea5-4087-83db-427b588cdd82,https://biolit.fr/sorties/sortie-7fe74170-7ea5-4087-83db-427b588cdd82/,Phil,,9/28/2018 0:00,11.0000000,11.0000000,48.038775000000,-4.855156000000,,Île de Sein - Finistère,42470,observation-7fe74170-7ea5-4087-83db-427b588cdd82-4,https://biolit.fr/observations/observation-7fe74170-7ea5-4087-83db-427b588cdd82-4/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1120227.JPG,,TRUE, +N1,59494,sortie-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0,https://biolit.fr/sorties/sortie-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0/,Phil,,06/02/2018,12.0:25,12.0000000,48.168876000000,-4.297276000000,,Plomodiern - Finistère,42472,observation-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0,https://biolit.fr/observations/observation-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1110661.JPG,,TRUE, +N1,59494,sortie-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0,https://biolit.fr/sorties/sortie-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0/,Phil,,06/02/2018,12.0:25,12.0000000,48.168876000000,-4.297276000000,,Plomodiern - Finistère,42474,observation-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0-2,https://biolit.fr/observations/observation-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110663.JPG,,TRUE, +N1,59494,sortie-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0,https://biolit.fr/sorties/sortie-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0/,Phil,,06/02/2018,12.0:25,12.0000000,48.168876000000,-4.297276000000,,Plomodiern - Finistère,42476,observation-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0-3,https://biolit.fr/observations/observation-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110664.JPG,,TRUE, +N1,59494,sortie-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0,https://biolit.fr/sorties/sortie-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0/,Phil,,06/02/2018,12.0:25,12.0000000,48.168876000000,-4.297276000000,,Plomodiern - Finistère,42478,observation-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0-4,https://biolit.fr/observations/observation-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0-4/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110666.JPG,,TRUE, +N1,59494,sortie-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0,https://biolit.fr/sorties/sortie-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0/,Phil,,06/02/2018,12.0:25,12.0000000,48.168876000000,-4.297276000000,,Plomodiern - Finistère,42480,observation-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0-5,https://biolit.fr/observations/observation-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0-5/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/P1110665.JPG,,TRUE, +N1,59494,sortie-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0,https://biolit.fr/sorties/sortie-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0/,Phil,,06/02/2018,12.0:25,12.0000000,48.168876000000,-4.297276000000,,Plomodiern - Finistère,42482,observation-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0-6,https://biolit.fr/observations/observation-8cf2e2de-6043-4a6f-9e00-3a5eda3d58d0-6/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P1110668.JPG,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42484,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/Aigrette garzette.JPG,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42486,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-2,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-2/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/cancer pagurus.PNG,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42487,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-3,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus aenas-scaled.jpg,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42489,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-4,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-4/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/Ceramium et Fucus serratus.JPG,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42491,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-5,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-5/,Chondrus crispus,Goémon frisé,,https://biolit.fr/wp-content/uploads/2023/07/Chondrus crispus.JPG,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42493,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-6,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-6/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Crepidula fornicata.PNG,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42494,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-7,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cyanea indet.JPG,,FALSE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42496,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-8,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-8/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/05/Fucus serratus-scaled.jpg,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42497,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-9,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-9/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/Goeland argente.JPG,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42499,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-10,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-10/,Homarus gammarus,Homard européen,,https://biolit.fr/wp-content/uploads/2023/07/Homarus gammarus.JPG,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42501,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-11,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-11/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina sp.PNG,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42502,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-12,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mouette rieuse.PNG,,FALSE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42503,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-13,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/mytilus edulis-scaled.jpg,,FALSE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42504,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-14,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-14/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Necora puber-scaled.jpg,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42505,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-15,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-15/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/Ostrea edulis.PNG,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42506,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-16,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-16/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/07/Patella vulgaris.JPG,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42508,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-17,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-17/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/pecten maximus.PNG,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42509,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-18,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/Raja undulata.JPG,,FALSE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42511,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-19,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ruditapes decussata.JPG,,FALSE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42513,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-20,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-20/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Sepia officinalis.PNG,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42514,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-21,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-21/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/2023/07/solen marginatus.PNG,,TRUE, +N1,59495,sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b,https://biolit.fr/sorties/sortie-6641ed68-2c6a-4bbd-bfd2-514d910bc55b/,Stage_Normandie,,9/24/2018 0:00,14.0000000,17.0000000,49.353978000000,-0.798543000000,,Sainte-Honorine-des-Pertes,42515,observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-22,https://biolit.fr/observations/observation-6641ed68-2c6a-4bbd-bfd2-514d910bc55b-22/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/Ulva lactuca.JPG,,TRUE, +N1,59496,sortie-d76aec0d-af91-4927-8894-34c76f68e581,https://biolit.fr/sorties/sortie-d76aec0d-af91-4927-8894-34c76f68e581/,Phil,,9/21/2018 0:00,11.0000000,11.0000000,47.79195300000,-4.286580000000,,Guilvinec - Finistère,42517,observation-d76aec0d-af91-4927-8894-34c76f68e581,https://biolit.fr/observations/observation-d76aec0d-af91-4927-8894-34c76f68e581/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180921_113733.jpg,,TRUE, +N1,59496,sortie-d76aec0d-af91-4927-8894-34c76f68e581,https://biolit.fr/sorties/sortie-d76aec0d-af91-4927-8894-34c76f68e581/,Phil,,9/21/2018 0:00,11.0000000,11.0000000,47.79195300000,-4.286580000000,,Guilvinec - Finistère,42519,observation-d76aec0d-af91-4927-8894-34c76f68e581-2,https://biolit.fr/observations/observation-d76aec0d-af91-4927-8894-34c76f68e581-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180921_113741.jpg,,TRUE, +N1,59496,sortie-d76aec0d-af91-4927-8894-34c76f68e581,https://biolit.fr/sorties/sortie-d76aec0d-af91-4927-8894-34c76f68e581/,Phil,,9/21/2018 0:00,11.0000000,11.0000000,47.79195300000,-4.286580000000,,Guilvinec - Finistère,42521,observation-d76aec0d-af91-4927-8894-34c76f68e581-3,https://biolit.fr/observations/observation-d76aec0d-af91-4927-8894-34c76f68e581-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180921_113946.jpg,,FALSE, +N1,59496,sortie-d76aec0d-af91-4927-8894-34c76f68e581,https://biolit.fr/sorties/sortie-d76aec0d-af91-4927-8894-34c76f68e581/,Phil,,9/21/2018 0:00,11.0000000,11.0000000,47.79195300000,-4.286580000000,,Guilvinec - Finistère,42523,observation-d76aec0d-af91-4927-8894-34c76f68e581-4,https://biolit.fr/observations/observation-d76aec0d-af91-4927-8894-34c76f68e581-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180921_114039.jpg,,FALSE, +N1,59497,sortie-09683541-750a-424e-a3cc-3063cb1710e6,https://biolit.fr/sorties/sortie-09683541-750a-424e-a3cc-3063cb1710e6/,Phil,,5/20/2018 0:00,16.0000000,16.0:15,47.800706000000,-4.180950000000,,Loctudy - Finistère,42525,observation-09683541-750a-424e-a3cc-3063cb1710e6,https://biolit.fr/observations/observation-09683541-750a-424e-a3cc-3063cb1710e6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110567.JPG,,FALSE, +N1,59497,sortie-09683541-750a-424e-a3cc-3063cb1710e6,https://biolit.fr/sorties/sortie-09683541-750a-424e-a3cc-3063cb1710e6/,Phil,,5/20/2018 0:00,16.0000000,16.0:15,47.800706000000,-4.180950000000,,Loctudy - Finistère,42527,observation-09683541-750a-424e-a3cc-3063cb1710e6-2,https://biolit.fr/observations/observation-09683541-750a-424e-a3cc-3063cb1710e6-2/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1110568.JPG,,TRUE, +N1,59497,sortie-09683541-750a-424e-a3cc-3063cb1710e6,https://biolit.fr/sorties/sortie-09683541-750a-424e-a3cc-3063cb1710e6/,Phil,,5/20/2018 0:00,16.0000000,16.0:15,47.800706000000,-4.180950000000,,Loctudy - Finistère,42529,observation-09683541-750a-424e-a3cc-3063cb1710e6-3,https://biolit.fr/observations/observation-09683541-750a-424e-a3cc-3063cb1710e6-3/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110570.JPG,,TRUE, +N1,59497,sortie-09683541-750a-424e-a3cc-3063cb1710e6,https://biolit.fr/sorties/sortie-09683541-750a-424e-a3cc-3063cb1710e6/,Phil,,5/20/2018 0:00,16.0000000,16.0:15,47.800706000000,-4.180950000000,,Loctudy - Finistère,42531,observation-09683541-750a-424e-a3cc-3063cb1710e6-4,https://biolit.fr/observations/observation-09683541-750a-424e-a3cc-3063cb1710e6-4/,Janua heterostropha,Spirorbe de Pagenstecher,,https://biolit.fr/wp-content/uploads/2023/07/P1110571.JPG,,TRUE, +N1,59498,sortie-ad8292c3-9abf-4db4-82b1-b27c6adabb7f,https://biolit.fr/sorties/sortie-ad8292c3-9abf-4db4-82b1-b27c6adabb7f/,Classes 6A 6B 6C,,10/01/2018,11.0:25,12.0:15,48.315646000000,-4.322459000000,,"Logonna Daoulas, MOULIN MER",42533,observation-ad8292c3-9abf-4db4-82b1-b27c6adabb7f,https://biolit.fr/observations/observation-ad8292c3-9abf-4db4-82b1-b27c6adabb7f/,Onchidella celtica,Limace celtique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0064_0-scaled.jpg,,TRUE, +N1,59498,sortie-ad8292c3-9abf-4db4-82b1-b27c6adabb7f,https://biolit.fr/sorties/sortie-ad8292c3-9abf-4db4-82b1-b27c6adabb7f/,Classes 6A 6B 6C,,10/01/2018,11.0:25,12.0:15,48.315646000000,-4.322459000000,,"Logonna Daoulas, MOULIN MER",42535,observation-ad8292c3-9abf-4db4-82b1-b27c6adabb7f-2,https://biolit.fr/observations/observation-ad8292c3-9abf-4db4-82b1-b27c6adabb7f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0037.jpg,,FALSE, +N1,59498,sortie-ad8292c3-9abf-4db4-82b1-b27c6adabb7f,https://biolit.fr/sorties/sortie-ad8292c3-9abf-4db4-82b1-b27c6adabb7f/,Classes 6A 6B 6C,,10/01/2018,11.0:25,12.0:15,48.315646000000,-4.322459000000,,"Logonna Daoulas, MOULIN MER",42537,observation-ad8292c3-9abf-4db4-82b1-b27c6adabb7f-3,https://biolit.fr/observations/observation-ad8292c3-9abf-4db4-82b1-b27c6adabb7f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0049 2.jpg,,FALSE, +N1,59498,sortie-ad8292c3-9abf-4db4-82b1-b27c6adabb7f,https://biolit.fr/sorties/sortie-ad8292c3-9abf-4db4-82b1-b27c6adabb7f/,Classes 6A 6B 6C,,10/01/2018,11.0:25,12.0:15,48.315646000000,-4.322459000000,,"Logonna Daoulas, MOULIN MER",42539,observation-ad8292c3-9abf-4db4-82b1-b27c6adabb7f-4,https://biolit.fr/observations/observation-ad8292c3-9abf-4db4-82b1-b27c6adabb7f-4/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0055_0.jpg,,TRUE, +N1,59498,sortie-ad8292c3-9abf-4db4-82b1-b27c6adabb7f,https://biolit.fr/sorties/sortie-ad8292c3-9abf-4db4-82b1-b27c6adabb7f/,Classes 6A 6B 6C,,10/01/2018,11.0:25,12.0:15,48.315646000000,-4.322459000000,,"Logonna Daoulas, MOULIN MER",42541,observation-ad8292c3-9abf-4db4-82b1-b27c6adabb7f-5,https://biolit.fr/observations/observation-ad8292c3-9abf-4db4-82b1-b27c6adabb7f-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0052 2-scaled.jpg,,FALSE, +N1,59498,sortie-ad8292c3-9abf-4db4-82b1-b27c6adabb7f,https://biolit.fr/sorties/sortie-ad8292c3-9abf-4db4-82b1-b27c6adabb7f/,Classes 6A 6B 6C,,10/01/2018,11.0:25,12.0:15,48.315646000000,-4.322459000000,,"Logonna Daoulas, MOULIN MER",42543,observation-ad8292c3-9abf-4db4-82b1-b27c6adabb7f-6,https://biolit.fr/observations/observation-ad8292c3-9abf-4db4-82b1-b27c6adabb7f-6/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0065.jpg,,TRUE, +N1,59499,sortie-73d50e1f-6e94-41c1-b67b-c0cf96d83a9e,https://biolit.fr/sorties/sortie-73d50e1f-6e94-41c1-b67b-c0cf96d83a9e/,Classes 6A 6B 6C,,10/01/2018,10.0:15,11.0000000,48.318265000000,-4.282722000000,,"Logonna Daoulas, MOULIN MER",42545,observation-73d50e1f-6e94-41c1-b67b-c0cf96d83a9e,https://biolit.fr/observations/observation-73d50e1f-6e94-41c1-b67b-c0cf96d83a9e/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0033.jpg,,TRUE, +N1,59499,sortie-73d50e1f-6e94-41c1-b67b-c0cf96d83a9e,https://biolit.fr/sorties/sortie-73d50e1f-6e94-41c1-b67b-c0cf96d83a9e/,Classes 6A 6B 6C,,10/01/2018,10.0:15,11.0000000,48.318265000000,-4.282722000000,,"Logonna Daoulas, MOULIN MER",42547,observation-73d50e1f-6e94-41c1-b67b-c0cf96d83a9e-2,https://biolit.fr/observations/observation-73d50e1f-6e94-41c1-b67b-c0cf96d83a9e-2/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0055.jpg,,TRUE, +N1,59499,sortie-73d50e1f-6e94-41c1-b67b-c0cf96d83a9e,https://biolit.fr/sorties/sortie-73d50e1f-6e94-41c1-b67b-c0cf96d83a9e/,Classes 6A 6B 6C,,10/01/2018,10.0:15,11.0000000,48.318265000000,-4.282722000000,,"Logonna Daoulas, MOULIN MER",42549,observation-73d50e1f-6e94-41c1-b67b-c0cf96d83a9e-3,https://biolit.fr/observations/observation-73d50e1f-6e94-41c1-b67b-c0cf96d83a9e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0075-scaled.jpg,,FALSE, +N1,59500,sortie-8143be75-13de-46fa-aaa0-248f30d1125a,https://biolit.fr/sorties/sortie-8143be75-13de-46fa-aaa0-248f30d1125a/,Classes 6A 6B 6C,,10/01/2018,11.0:25,12.0:15,48.317836000000,-4.282968000000,,moulin mer,42551,observation-8143be75-13de-46fa-aaa0-248f30d1125a,https://biolit.fr/observations/observation-8143be75-13de-46fa-aaa0-248f30d1125a/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0022-scaled.jpg,,TRUE, +N1,59500,sortie-8143be75-13de-46fa-aaa0-248f30d1125a,https://biolit.fr/sorties/sortie-8143be75-13de-46fa-aaa0-248f30d1125a/,Classes 6A 6B 6C,,10/01/2018,11.0:25,12.0:15,48.317836000000,-4.282968000000,,moulin mer,42553,observation-8143be75-13de-46fa-aaa0-248f30d1125a-2,https://biolit.fr/observations/observation-8143be75-13de-46fa-aaa0-248f30d1125a-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0032-scaled.jpg,,TRUE, +N1,59500,sortie-8143be75-13de-46fa-aaa0-248f30d1125a,https://biolit.fr/sorties/sortie-8143be75-13de-46fa-aaa0-248f30d1125a/,Classes 6A 6B 6C,,10/01/2018,11.0:25,12.0:15,48.317836000000,-4.282968000000,,moulin mer,42555,observation-8143be75-13de-46fa-aaa0-248f30d1125a-3,https://biolit.fr/observations/observation-8143be75-13de-46fa-aaa0-248f30d1125a-3/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0070.jpg,,TRUE, +N1,59500,sortie-8143be75-13de-46fa-aaa0-248f30d1125a,https://biolit.fr/sorties/sortie-8143be75-13de-46fa-aaa0-248f30d1125a/,Classes 6A 6B 6C,,10/01/2018,11.0:25,12.0:15,48.317836000000,-4.282968000000,,moulin mer,42557,observation-8143be75-13de-46fa-aaa0-248f30d1125a-4,https://biolit.fr/observations/observation-8143be75-13de-46fa-aaa0-248f30d1125a-4/,Zoarces viviparus,Blennie vivipare,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0076 2-scaled.jpg,,TRUE, +N1,59500,sortie-8143be75-13de-46fa-aaa0-248f30d1125a,https://biolit.fr/sorties/sortie-8143be75-13de-46fa-aaa0-248f30d1125a/,Classes 6A 6B 6C,,10/01/2018,11.0:25,12.0:15,48.317836000000,-4.282968000000,,moulin mer,42559,observation-8143be75-13de-46fa-aaa0-248f30d1125a-5,https://biolit.fr/observations/observation-8143be75-13de-46fa-aaa0-248f30d1125a-5/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0071.jpg,,TRUE, +N1,59501,sortie-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48,https://biolit.fr/sorties/sortie-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48/,Phil,,7/16/2018 0:00,12.0:55,13.0000000,47.810369000000,-3.7120850000,,Moëlan-sur-Mer - Finistère,42561,observation-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48,https://biolit.fr/observations/observation-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110736.JPG,,FALSE, +N1,59501,sortie-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48,https://biolit.fr/sorties/sortie-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48/,Phil,,7/16/2018 0:00,12.0:55,13.0000000,47.810369000000,-3.7120850000,,Moëlan-sur-Mer - Finistère,42563,observation-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48-2,https://biolit.fr/observations/observation-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110733_0.JPG,,FALSE, +N1,59501,sortie-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48,https://biolit.fr/sorties/sortie-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48/,Phil,,7/16/2018 0:00,12.0:55,13.0000000,47.810369000000,-3.7120850000,,Moëlan-sur-Mer - Finistère,42565,observation-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48-3,https://biolit.fr/observations/observation-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48-3/,Clavelina lepadiformis,Grande claveline,,https://biolit.fr/wp-content/uploads/2023/07/P1110725_0.JPG,,TRUE, +N1,59501,sortie-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48,https://biolit.fr/sorties/sortie-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48/,Phil,,7/16/2018 0:00,12.0:55,13.0000000,47.810369000000,-3.7120850000,,Moëlan-sur-Mer - Finistère,42567,observation-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48-4,https://biolit.fr/observations/observation-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48-4/,Clavelina lepadiformis,Grande claveline,,https://biolit.fr/wp-content/uploads/2023/07/P1110724.JPG,,TRUE, +N1,59501,sortie-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48,https://biolit.fr/sorties/sortie-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48/,Phil,,7/16/2018 0:00,12.0:55,13.0000000,47.810369000000,-3.7120850000,,Moëlan-sur-Mer - Finistère,42569,observation-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48-5,https://biolit.fr/observations/observation-af0d5b92-8f6e-4c0d-81d7-9f63ccac6c48-5/,Clavelina lepadiformis,Grande claveline,,https://biolit.fr/wp-content/uploads/2023/07/P1110722.JPG,,TRUE, +N1,59502,sortie-8d7dfb00-9107-4bf2-94cb-9a41424d6248,https://biolit.fr/sorties/sortie-8d7dfb00-9107-4bf2-94cb-9a41424d6248/,Phil,,9/16/2018 0:00,16.0:35,16.0:45,47.873787000000,-3.930088000000,,Concarneau - Finistère,42571,observation-8d7dfb00-9107-4bf2-94cb-9a41424d6248,https://biolit.fr/observations/observation-8d7dfb00-9107-4bf2-94cb-9a41424d6248/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180916_164127.jpg,,FALSE, +N1,59502,sortie-8d7dfb00-9107-4bf2-94cb-9a41424d6248,https://biolit.fr/sorties/sortie-8d7dfb00-9107-4bf2-94cb-9a41424d6248/,Phil,,9/16/2018 0:00,16.0:35,16.0:45,47.873787000000,-3.930088000000,,Concarneau - Finistère,42573,observation-8d7dfb00-9107-4bf2-94cb-9a41424d6248-2,https://biolit.fr/observations/observation-8d7dfb00-9107-4bf2-94cb-9a41424d6248-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180916_164059.jpg,,FALSE, +N1,59502,sortie-8d7dfb00-9107-4bf2-94cb-9a41424d6248,https://biolit.fr/sorties/sortie-8d7dfb00-9107-4bf2-94cb-9a41424d6248/,Phil,,9/16/2018 0:00,16.0:35,16.0:45,47.873787000000,-3.930088000000,,Concarneau - Finistère,42575,observation-8d7dfb00-9107-4bf2-94cb-9a41424d6248-3,https://biolit.fr/observations/observation-8d7dfb00-9107-4bf2-94cb-9a41424d6248-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180916_164020.jpg,,TRUE, +N1,59502,sortie-8d7dfb00-9107-4bf2-94cb-9a41424d6248,https://biolit.fr/sorties/sortie-8d7dfb00-9107-4bf2-94cb-9a41424d6248/,Phil,,9/16/2018 0:00,16.0:35,16.0:45,47.873787000000,-3.930088000000,,Concarneau - Finistère,42577,observation-8d7dfb00-9107-4bf2-94cb-9a41424d6248-4,https://biolit.fr/observations/observation-8d7dfb00-9107-4bf2-94cb-9a41424d6248-4/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20180916_164152.jpg,,TRUE, +N1,59502,sortie-8d7dfb00-9107-4bf2-94cb-9a41424d6248,https://biolit.fr/sorties/sortie-8d7dfb00-9107-4bf2-94cb-9a41424d6248/,Phil,,9/16/2018 0:00,16.0:35,16.0:45,47.873787000000,-3.930088000000,,Concarneau - Finistère,42579,observation-8d7dfb00-9107-4bf2-94cb-9a41424d6248-5,https://biolit.fr/observations/observation-8d7dfb00-9107-4bf2-94cb-9a41424d6248-5/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20180916_164613.jpg,,TRUE, +N1,59503,sortie-c27db5e2-e130-4d26-877e-8ec6ea181a3a,https://biolit.fr/sorties/sortie-c27db5e2-e130-4d26-877e-8ec6ea181a3a/,Environat,,9/26/2018 0:00,10.0000000,12.0000000,45.630225000000,-1.064602000000,,saint sordelin,42581,observation-c27db5e2-e130-4d26-877e-8ec6ea181a3a,https://biolit.fr/observations/observation-c27db5e2-e130-4d26-877e-8ec6ea181a3a/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSCN0083bd.JPG,,TRUE, +N1,59503,sortie-c27db5e2-e130-4d26-877e-8ec6ea181a3a,https://biolit.fr/sorties/sortie-c27db5e2-e130-4d26-877e-8ec6ea181a3a/,Environat,,9/26/2018 0:00,10.0000000,12.0000000,45.630225000000,-1.064602000000,,saint sordelin,42583,observation-c27db5e2-e130-4d26-877e-8ec6ea181a3a-2,https://biolit.fr/observations/observation-c27db5e2-e130-4d26-877e-8ec6ea181a3a-2/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0084bd.JPG,,TRUE, +N1,59503,sortie-c27db5e2-e130-4d26-877e-8ec6ea181a3a,https://biolit.fr/sorties/sortie-c27db5e2-e130-4d26-877e-8ec6ea181a3a/,Environat,,9/26/2018 0:00,10.0000000,12.0000000,45.630225000000,-1.064602000000,,saint sordelin,42585,observation-c27db5e2-e130-4d26-877e-8ec6ea181a3a-3,https://biolit.fr/observations/observation-c27db5e2-e130-4d26-877e-8ec6ea181a3a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0082bd.JPG,,FALSE, +N1,59503,sortie-c27db5e2-e130-4d26-877e-8ec6ea181a3a,https://biolit.fr/sorties/sortie-c27db5e2-e130-4d26-877e-8ec6ea181a3a/,Environat,,9/26/2018 0:00,10.0000000,12.0000000,45.630225000000,-1.064602000000,,saint sordelin,42587,observation-c27db5e2-e130-4d26-877e-8ec6ea181a3a-4,https://biolit.fr/observations/observation-c27db5e2-e130-4d26-877e-8ec6ea181a3a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0098bd-scaled.jpg,,FALSE, +N1,59504,sortie-c47a144d-970b-4cef-a605-ebc860d33021,https://biolit.fr/sorties/sortie-c47a144d-970b-4cef-a605-ebc860d33021/,Phil,,9/21/2018 0:00,11.0:25,11.0000000,47.791966000000,-4.286850000000,,Guilvinec - Finistère,42589,observation-c47a144d-970b-4cef-a605-ebc860d33021,https://biolit.fr/observations/observation-c47a144d-970b-4cef-a605-ebc860d33021/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20180921_113027.jpg,,TRUE, +N1,59504,sortie-c47a144d-970b-4cef-a605-ebc860d33021,https://biolit.fr/sorties/sortie-c47a144d-970b-4cef-a605-ebc860d33021/,Phil,,9/21/2018 0:00,11.0:25,11.0000000,47.791966000000,-4.286850000000,,Guilvinec - Finistère,42591,observation-c47a144d-970b-4cef-a605-ebc860d33021-2,https://biolit.fr/observations/observation-c47a144d-970b-4cef-a605-ebc860d33021-2/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20180921_113143.jpg,,TRUE, +N1,59505,sortie-236cada1-aa6a-453e-94cf-94da72df0abd,https://biolit.fr/sorties/sortie-236cada1-aa6a-453e-94cf-94da72df0abd/,Phil,,06/02/2018,12.0000000,12.0:15,48.168828000000,-4.296577000000,,Plomodiern - Finistère,42593,observation-236cada1-aa6a-453e-94cf-94da72df0abd,https://biolit.fr/observations/observation-236cada1-aa6a-453e-94cf-94da72df0abd/,Hymeniacidon perlevis,Eponge-miette de pain,,https://biolit.fr/wp-content/uploads/2023/07/P1110646.JPG,,TRUE, +N1,59505,sortie-236cada1-aa6a-453e-94cf-94da72df0abd,https://biolit.fr/sorties/sortie-236cada1-aa6a-453e-94cf-94da72df0abd/,Phil,,06/02/2018,12.0000000,12.0:15,48.168828000000,-4.296577000000,,Plomodiern - Finistère,42595,observation-236cada1-aa6a-453e-94cf-94da72df0abd-2,https://biolit.fr/observations/observation-236cada1-aa6a-453e-94cf-94da72df0abd-2/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/P1110650.JPG,,TRUE, +N1,59505,sortie-236cada1-aa6a-453e-94cf-94da72df0abd,https://biolit.fr/sorties/sortie-236cada1-aa6a-453e-94cf-94da72df0abd/,Phil,,06/02/2018,12.0000000,12.0:15,48.168828000000,-4.296577000000,,Plomodiern - Finistère,42599,observation-236cada1-aa6a-453e-94cf-94da72df0abd-4,https://biolit.fr/observations/observation-236cada1-aa6a-453e-94cf-94da72df0abd-4/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/P1110657.JPG,,TRUE, +N1,59506,sortie-d887bb7d-8e0e-42c6-a811-a9b9e8fd4576,https://biolit.fr/sorties/sortie-d887bb7d-8e0e-42c6-a811-a9b9e8fd4576/,Marine,,9/27/2018 0:00,15.0000000,16.0000000,43.093093000000,6.024504000000,,Plage de la garonne,42601,observation-d887bb7d-8e0e-42c6-a811-a9b9e8fd4576,https://biolit.fr/observations/observation-d887bb7d-8e0e-42c6-a811-a9b9e8fd4576/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/EED52646-C29B-4500-9C9F-53C8DB7FAF84-scaled.jpeg,,TRUE, +N1,59507,sortie-55b77f4f-7179-42e1-9621-06f7518802bd,https://biolit.fr/sorties/sortie-55b77f4f-7179-42e1-9621-06f7518802bd/,Phil,,7/22/2018 0:00,11.0:15,11.0000000,47.708795000000,-3.991921000000,,Fouesnant - Finistère,42603,observation-55b77f4f-7179-42e1-9621-06f7518802bd,https://biolit.fr/observations/observation-55b77f4f-7179-42e1-9621-06f7518802bd/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110905.JPG,,FALSE, +N1,59507,sortie-55b77f4f-7179-42e1-9621-06f7518802bd,https://biolit.fr/sorties/sortie-55b77f4f-7179-42e1-9621-06f7518802bd/,Phil,,7/22/2018 0:00,11.0:15,11.0000000,47.708795000000,-3.991921000000,,Fouesnant - Finistère,42605,observation-55b77f4f-7179-42e1-9621-06f7518802bd-2,https://biolit.fr/observations/observation-55b77f4f-7179-42e1-9621-06f7518802bd-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110903.JPG,,FALSE, +N1,59507,sortie-55b77f4f-7179-42e1-9621-06f7518802bd,https://biolit.fr/sorties/sortie-55b77f4f-7179-42e1-9621-06f7518802bd/,Phil,,7/22/2018 0:00,11.0:15,11.0000000,47.708795000000,-3.991921000000,,Fouesnant - Finistère,42607,observation-55b77f4f-7179-42e1-9621-06f7518802bd-3,https://biolit.fr/observations/observation-55b77f4f-7179-42e1-9621-06f7518802bd-3/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1110898.JPG,,TRUE, +N1,59507,sortie-55b77f4f-7179-42e1-9621-06f7518802bd,https://biolit.fr/sorties/sortie-55b77f4f-7179-42e1-9621-06f7518802bd/,Phil,,7/22/2018 0:00,11.0:15,11.0000000,47.708795000000,-3.991921000000,,Fouesnant - Finistère,42609,observation-55b77f4f-7179-42e1-9621-06f7518802bd-4,https://biolit.fr/observations/observation-55b77f4f-7179-42e1-9621-06f7518802bd-4/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1110900.JPG,,TRUE, +N1,59507,sortie-55b77f4f-7179-42e1-9621-06f7518802bd,https://biolit.fr/sorties/sortie-55b77f4f-7179-42e1-9621-06f7518802bd/,Phil,,7/22/2018 0:00,11.0:15,11.0000000,47.708795000000,-3.991921000000,,Fouesnant - Finistère,42611,observation-55b77f4f-7179-42e1-9621-06f7518802bd-5,https://biolit.fr/observations/observation-55b77f4f-7179-42e1-9621-06f7518802bd-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110904.JPG,,FALSE, +N1,59508,sortie-d437d589-c48b-46e4-a22e-5505f0e24734,https://biolit.fr/sorties/sortie-d437d589-c48b-46e4-a22e-5505f0e24734/,Phil,,7/16/2018 0:00,12.0000000,12.0:55,47.809671000000,-3.712271000000,,Moëlan-sur-Mer - Finistère,42613,observation-d437d589-c48b-46e4-a22e-5505f0e24734,https://biolit.fr/observations/observation-d437d589-c48b-46e4-a22e-5505f0e24734/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110716_0.JPG,,TRUE, +N1,59508,sortie-d437d589-c48b-46e4-a22e-5505f0e24734,https://biolit.fr/sorties/sortie-d437d589-c48b-46e4-a22e-5505f0e24734/,Phil,,7/16/2018 0:00,12.0000000,12.0:55,47.809671000000,-3.712271000000,,Moëlan-sur-Mer - Finistère,42615,observation-d437d589-c48b-46e4-a22e-5505f0e24734-2,https://biolit.fr/observations/observation-d437d589-c48b-46e4-a22e-5505f0e24734-2/,Pagurus bernhardus,Bernard-l'ermite commun,,https://biolit.fr/wp-content/uploads/2023/07/P1110717_0.JPG,,TRUE, +N1,59508,sortie-d437d589-c48b-46e4-a22e-5505f0e24734,https://biolit.fr/sorties/sortie-d437d589-c48b-46e4-a22e-5505f0e24734/,Phil,,7/16/2018 0:00,12.0000000,12.0:55,47.809671000000,-3.712271000000,,Moëlan-sur-Mer - Finistère,42617,observation-d437d589-c48b-46e4-a22e-5505f0e24734-3,https://biolit.fr/observations/observation-d437d589-c48b-46e4-a22e-5505f0e24734-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110718.JPG,,FALSE, +N1,59508,sortie-d437d589-c48b-46e4-a22e-5505f0e24734,https://biolit.fr/sorties/sortie-d437d589-c48b-46e4-a22e-5505f0e24734/,Phil,,7/16/2018 0:00,12.0000000,12.0:55,47.809671000000,-3.712271000000,,Moëlan-sur-Mer - Finistère,42619,observation-d437d589-c48b-46e4-a22e-5505f0e24734-4,https://biolit.fr/observations/observation-d437d589-c48b-46e4-a22e-5505f0e24734-4/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1110719_0.JPG,,TRUE, +N1,59508,sortie-d437d589-c48b-46e4-a22e-5505f0e24734,https://biolit.fr/sorties/sortie-d437d589-c48b-46e4-a22e-5505f0e24734/,Phil,,7/16/2018 0:00,12.0000000,12.0:55,47.809671000000,-3.712271000000,,Moëlan-sur-Mer - Finistère,42621,observation-d437d589-c48b-46e4-a22e-5505f0e24734-5,https://biolit.fr/observations/observation-d437d589-c48b-46e4-a22e-5505f0e24734-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110729.JPG,,FALSE, +N1,59508,sortie-d437d589-c48b-46e4-a22e-5505f0e24734,https://biolit.fr/sorties/sortie-d437d589-c48b-46e4-a22e-5505f0e24734/,Phil,,7/16/2018 0:00,12.0000000,12.0:55,47.809671000000,-3.712271000000,,Moëlan-sur-Mer - Finistère,42623,observation-d437d589-c48b-46e4-a22e-5505f0e24734-6,https://biolit.fr/observations/observation-d437d589-c48b-46e4-a22e-5505f0e24734-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110728_0.JPG,,FALSE, +N1,59509,sortie-f2ac3719-a625-49f3-a237-c3881327de11,https://biolit.fr/sorties/sortie-f2ac3719-a625-49f3-a237-c3881327de11/,Valentine W,,09/11/2018,8.0000000,11.0000000,50.717193000000,1.612441000000,,Boulogne-sur-Mer,42625,observation-f2ac3719-a625-49f3-a237-c3881327de11,https://biolit.fr/observations/observation-f2ac3719-a625-49f3-a237-c3881327de11/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/42447778_2484275341607249_7870940887507795968_n.jpg,,TRUE, +N1,59509,sortie-f2ac3719-a625-49f3-a237-c3881327de11,https://biolit.fr/sorties/sortie-f2ac3719-a625-49f3-a237-c3881327de11/,Valentine W,,09/11/2018,8.0000000,11.0000000,50.717193000000,1.612441000000,,Boulogne-sur-Mer,42627,observation-f2ac3719-a625-49f3-a237-c3881327de11-2,https://biolit.fr/observations/observation-f2ac3719-a625-49f3-a237-c3881327de11-2/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/42469893_250568928985984_783016660259831808_n.jpg,,TRUE, +N1,59509,sortie-f2ac3719-a625-49f3-a237-c3881327de11,https://biolit.fr/sorties/sortie-f2ac3719-a625-49f3-a237-c3881327de11/,Valentine W,,09/11/2018,8.0000000,11.0000000,50.717193000000,1.612441000000,,Boulogne-sur-Mer,42629,observation-f2ac3719-a625-49f3-a237-c3881327de11-3,https://biolit.fr/observations/observation-f2ac3719-a625-49f3-a237-c3881327de11-3/,Mya arenaria,Mye des sables,,https://biolit.fr/wp-content/uploads/2023/07/42478645_284783818794489_2501101692892741632_n.jpg,,TRUE, +N1,59509,sortie-f2ac3719-a625-49f3-a237-c3881327de11,https://biolit.fr/sorties/sortie-f2ac3719-a625-49f3-a237-c3881327de11/,Valentine W,,09/11/2018,8.0000000,11.0000000,50.717193000000,1.612441000000,,Boulogne-sur-Mer,42631,observation-f2ac3719-a625-49f3-a237-c3881327de11-4,https://biolit.fr/observations/observation-f2ac3719-a625-49f3-a237-c3881327de11-4/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/42498182_2742538999303887_6306831738106544128_n.jpg,,TRUE, +N1,59509,sortie-f2ac3719-a625-49f3-a237-c3881327de11,https://biolit.fr/sorties/sortie-f2ac3719-a625-49f3-a237-c3881327de11/,Valentine W,,09/11/2018,8.0000000,11.0000000,50.717193000000,1.612441000000,,Boulogne-sur-Mer,42633,observation-f2ac3719-a625-49f3-a237-c3881327de11-5,https://biolit.fr/observations/observation-f2ac3719-a625-49f3-a237-c3881327de11-5/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/42538750_440536283137130_3259386097511170048_n.jpg,,TRUE, +N1,59509,sortie-f2ac3719-a625-49f3-a237-c3881327de11,https://biolit.fr/sorties/sortie-f2ac3719-a625-49f3-a237-c3881327de11/,Valentine W,,09/11/2018,8.0000000,11.0000000,50.717193000000,1.612441000000,,Boulogne-sur-Mer,42635,observation-f2ac3719-a625-49f3-a237-c3881327de11-6,https://biolit.fr/observations/observation-f2ac3719-a625-49f3-a237-c3881327de11-6/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/42576566_298484197547910_216820789599535104_n.jpg,,TRUE, +N1,59509,sortie-f2ac3719-a625-49f3-a237-c3881327de11,https://biolit.fr/sorties/sortie-f2ac3719-a625-49f3-a237-c3881327de11/,Valentine W,,09/11/2018,8.0000000,11.0000000,50.717193000000,1.612441000000,,Boulogne-sur-Mer,42637,observation-f2ac3719-a625-49f3-a237-c3881327de11-7,https://biolit.fr/observations/observation-f2ac3719-a625-49f3-a237-c3881327de11-7/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/42653825_1486325184845024_2338399758965538816_n.jpg,,TRUE, +N1,59510,sortie-c21deb71-62bb-49b8-892e-684305447a5c,https://biolit.fr/sorties/sortie-c21deb71-62bb-49b8-892e-684305447a5c/,Phil,,8/24/2018 0:00,13.000005,13.0000000,48.031368000000,-4.844170000000,,Île de Sein - Finistère,42639,observation-c21deb71-62bb-49b8-892e-684305447a5c,https://biolit.fr/observations/observation-c21deb71-62bb-49b8-892e-684305447a5c/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120095.JPG,,FALSE, +N1,59510,sortie-c21deb71-62bb-49b8-892e-684305447a5c,https://biolit.fr/sorties/sortie-c21deb71-62bb-49b8-892e-684305447a5c/,Phil,,8/24/2018 0:00,13.000005,13.0000000,48.031368000000,-4.844170000000,,Île de Sein - Finistère,42641,observation-c21deb71-62bb-49b8-892e-684305447a5c-2,https://biolit.fr/observations/observation-c21deb71-62bb-49b8-892e-684305447a5c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120092_0.JPG,,FALSE, +N1,59510,sortie-c21deb71-62bb-49b8-892e-684305447a5c,https://biolit.fr/sorties/sortie-c21deb71-62bb-49b8-892e-684305447a5c/,Phil,,8/24/2018 0:00,13.000005,13.0000000,48.031368000000,-4.844170000000,,Île de Sein - Finistère,42643,observation-c21deb71-62bb-49b8-892e-684305447a5c-3,https://biolit.fr/observations/observation-c21deb71-62bb-49b8-892e-684305447a5c-3/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/P1120093.JPG,,TRUE, +N1,59510,sortie-c21deb71-62bb-49b8-892e-684305447a5c,https://biolit.fr/sorties/sortie-c21deb71-62bb-49b8-892e-684305447a5c/,Phil,,8/24/2018 0:00,13.000005,13.0000000,48.031368000000,-4.844170000000,,Île de Sein - Finistère,42645,observation-c21deb71-62bb-49b8-892e-684305447a5c-4,https://biolit.fr/observations/observation-c21deb71-62bb-49b8-892e-684305447a5c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120094.JPG,,FALSE, +N1,59510,sortie-c21deb71-62bb-49b8-892e-684305447a5c,https://biolit.fr/sorties/sortie-c21deb71-62bb-49b8-892e-684305447a5c/,Phil,,8/24/2018 0:00,13.000005,13.0000000,48.031368000000,-4.844170000000,,Île de Sein - Finistère,42647,observation-c21deb71-62bb-49b8-892e-684305447a5c-5,https://biolit.fr/observations/observation-c21deb71-62bb-49b8-892e-684305447a5c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120097.JPG,,FALSE, +N1,59510,sortie-c21deb71-62bb-49b8-892e-684305447a5c,https://biolit.fr/sorties/sortie-c21deb71-62bb-49b8-892e-684305447a5c/,Phil,,8/24/2018 0:00,13.000005,13.0000000,48.031368000000,-4.844170000000,,Île de Sein - Finistère,42649,observation-c21deb71-62bb-49b8-892e-684305447a5c-6,https://biolit.fr/observations/observation-c21deb71-62bb-49b8-892e-684305447a5c-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120101.JPG,,FALSE, +N1,59510,sortie-c21deb71-62bb-49b8-892e-684305447a5c,https://biolit.fr/sorties/sortie-c21deb71-62bb-49b8-892e-684305447a5c/,Phil,,8/24/2018 0:00,13.000005,13.0000000,48.031368000000,-4.844170000000,,Île de Sein - Finistère,42651,observation-c21deb71-62bb-49b8-892e-684305447a5c-7,https://biolit.fr/observations/observation-c21deb71-62bb-49b8-892e-684305447a5c-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120102.JPG,,FALSE, +N1,59510,sortie-c21deb71-62bb-49b8-892e-684305447a5c,https://biolit.fr/sorties/sortie-c21deb71-62bb-49b8-892e-684305447a5c/,Phil,,8/24/2018 0:00,13.000005,13.0000000,48.031368000000,-4.844170000000,,Île de Sein - Finistère,42653,observation-c21deb71-62bb-49b8-892e-684305447a5c-8,https://biolit.fr/observations/observation-c21deb71-62bb-49b8-892e-684305447a5c-8/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1120100.JPG,,TRUE, +N1,59511,sortie-e450e71b-eb65-49d1-8c12-c2b596b8b4a8,https://biolit.fr/sorties/sortie-e450e71b-eb65-49d1-8c12-c2b596b8b4a8/,Phil,,5/17/2018 0:00,12.0:25,12.0000000,47.894518000000,-3.964828000000,,La Forêt-Fouesnant - Finistère,42655,observation-e450e71b-eb65-49d1-8c12-c2b596b8b4a8,https://biolit.fr/observations/observation-e450e71b-eb65-49d1-8c12-c2b596b8b4a8/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1110357.JPG,,TRUE, +N1,59511,sortie-e450e71b-eb65-49d1-8c12-c2b596b8b4a8,https://biolit.fr/sorties/sortie-e450e71b-eb65-49d1-8c12-c2b596b8b4a8/,Phil,,5/17/2018 0:00,12.0:25,12.0000000,47.894518000000,-3.964828000000,,La Forêt-Fouesnant - Finistère,42657,observation-e450e71b-eb65-49d1-8c12-c2b596b8b4a8-2,https://biolit.fr/observations/observation-e450e71b-eb65-49d1-8c12-c2b596b8b4a8-2/,Mactra glauca,Mactre fauve,,https://biolit.fr/wp-content/uploads/2023/07/P1110356.JPG,,TRUE, +N1,59511,sortie-e450e71b-eb65-49d1-8c12-c2b596b8b4a8,https://biolit.fr/sorties/sortie-e450e71b-eb65-49d1-8c12-c2b596b8b4a8/,Phil,,5/17/2018 0:00,12.0:25,12.0000000,47.894518000000,-3.964828000000,,La Forêt-Fouesnant - Finistère,42659,observation-e450e71b-eb65-49d1-8c12-c2b596b8b4a8-3,https://biolit.fr/observations/observation-e450e71b-eb65-49d1-8c12-c2b596b8b4a8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110358.JPG,,FALSE, +N1,59511,sortie-e450e71b-eb65-49d1-8c12-c2b596b8b4a8,https://biolit.fr/sorties/sortie-e450e71b-eb65-49d1-8c12-c2b596b8b4a8/,Phil,,5/17/2018 0:00,12.0:25,12.0000000,47.894518000000,-3.964828000000,,La Forêt-Fouesnant - Finistère,42661,observation-e450e71b-eb65-49d1-8c12-c2b596b8b4a8-4,https://biolit.fr/observations/observation-e450e71b-eb65-49d1-8c12-c2b596b8b4a8-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110359.JPG,,FALSE, +N1,59512,sortie-ac14378a-87b6-45b0-a009-56f735b309ea,https://biolit.fr/sorties/sortie-ac14378a-87b6-45b0-a009-56f735b309ea/,Phil,,5/20/2018 0:00,15.0000000,16.0000000,47.798235000000,-4.177002000000,,Loctudy - Finistère,42663,observation-ac14378a-87b6-45b0-a009-56f735b309ea,https://biolit.fr/observations/observation-ac14378a-87b6-45b0-a009-56f735b309ea/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1110556.JPG,,TRUE, +N1,59512,sortie-ac14378a-87b6-45b0-a009-56f735b309ea,https://biolit.fr/sorties/sortie-ac14378a-87b6-45b0-a009-56f735b309ea/,Phil,,5/20/2018 0:00,15.0000000,16.0000000,47.798235000000,-4.177002000000,,Loctudy - Finistère,42665,observation-ac14378a-87b6-45b0-a009-56f735b309ea-2,https://biolit.fr/observations/observation-ac14378a-87b6-45b0-a009-56f735b309ea-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110557.JPG,,FALSE, +N1,59512,sortie-ac14378a-87b6-45b0-a009-56f735b309ea,https://biolit.fr/sorties/sortie-ac14378a-87b6-45b0-a009-56f735b309ea/,Phil,,5/20/2018 0:00,15.0000000,16.0000000,47.798235000000,-4.177002000000,,Loctudy - Finistère,42667,observation-ac14378a-87b6-45b0-a009-56f735b309ea-3,https://biolit.fr/observations/observation-ac14378a-87b6-45b0-a009-56f735b309ea-3/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1110558.JPG,,TRUE, +N1,59512,sortie-ac14378a-87b6-45b0-a009-56f735b309ea,https://biolit.fr/sorties/sortie-ac14378a-87b6-45b0-a009-56f735b309ea/,Phil,,5/20/2018 0:00,15.0000000,16.0000000,47.798235000000,-4.177002000000,,Loctudy - Finistère,42669,observation-ac14378a-87b6-45b0-a009-56f735b309ea-4,https://biolit.fr/observations/observation-ac14378a-87b6-45b0-a009-56f735b309ea-4/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/P1110555.JPG,,TRUE, +N1,59512,sortie-ac14378a-87b6-45b0-a009-56f735b309ea,https://biolit.fr/sorties/sortie-ac14378a-87b6-45b0-a009-56f735b309ea/,Phil,,5/20/2018 0:00,15.0000000,16.0000000,47.798235000000,-4.177002000000,,Loctudy - Finistère,42671,observation-ac14378a-87b6-45b0-a009-56f735b309ea-5,https://biolit.fr/observations/observation-ac14378a-87b6-45b0-a009-56f735b309ea-5/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/P1110565.JPG,,TRUE, +N1,59512,sortie-ac14378a-87b6-45b0-a009-56f735b309ea,https://biolit.fr/sorties/sortie-ac14378a-87b6-45b0-a009-56f735b309ea/,Phil,,5/20/2018 0:00,15.0000000,16.0000000,47.798235000000,-4.177002000000,,Loctudy - Finistère,42673,observation-ac14378a-87b6-45b0-a009-56f735b309ea-6,https://biolit.fr/observations/observation-ac14378a-87b6-45b0-a009-56f735b309ea-6/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1110560.JPG,,TRUE, +N1,59512,sortie-ac14378a-87b6-45b0-a009-56f735b309ea,https://biolit.fr/sorties/sortie-ac14378a-87b6-45b0-a009-56f735b309ea/,Phil,,5/20/2018 0:00,15.0000000,16.0000000,47.798235000000,-4.177002000000,,Loctudy - Finistère,42675,observation-ac14378a-87b6-45b0-a009-56f735b309ea-7,https://biolit.fr/observations/observation-ac14378a-87b6-45b0-a009-56f735b309ea-7/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/P1110561.JPG,,TRUE, +N1,59513,sortie-85cd95f8-1a2f-4020-961e-ae278907ba2a,https://biolit.fr/sorties/sortie-85cd95f8-1a2f-4020-961e-ae278907ba2a/,Phil,,7/22/2018 0:00,11.0:15,11.0000000,47.708080000000,-3.994419000000,,Fouesnant - Finistère,42677,observation-85cd95f8-1a2f-4020-961e-ae278907ba2a,https://biolit.fr/observations/observation-85cd95f8-1a2f-4020-961e-ae278907ba2a/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1110896.JPG,,TRUE, +N1,59513,sortie-85cd95f8-1a2f-4020-961e-ae278907ba2a,https://biolit.fr/sorties/sortie-85cd95f8-1a2f-4020-961e-ae278907ba2a/,Phil,,7/22/2018 0:00,11.0:15,11.0000000,47.708080000000,-3.994419000000,,Fouesnant - Finistère,42679,observation-85cd95f8-1a2f-4020-961e-ae278907ba2a-2,https://biolit.fr/observations/observation-85cd95f8-1a2f-4020-961e-ae278907ba2a-2/,Crambe maritima,Crambé maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1110894.JPG,,TRUE, +N1,59513,sortie-85cd95f8-1a2f-4020-961e-ae278907ba2a,https://biolit.fr/sorties/sortie-85cd95f8-1a2f-4020-961e-ae278907ba2a/,Phil,,7/22/2018 0:00,11.0:15,11.0000000,47.708080000000,-3.994419000000,,Fouesnant - Finistère,42681,observation-85cd95f8-1a2f-4020-961e-ae278907ba2a-3,https://biolit.fr/observations/observation-85cd95f8-1a2f-4020-961e-ae278907ba2a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110891.JPG,,FALSE, +N1,59513,sortie-85cd95f8-1a2f-4020-961e-ae278907ba2a,https://biolit.fr/sorties/sortie-85cd95f8-1a2f-4020-961e-ae278907ba2a/,Phil,,7/22/2018 0:00,11.0:15,11.0000000,47.708080000000,-3.994419000000,,Fouesnant - Finistère,42683,observation-85cd95f8-1a2f-4020-961e-ae278907ba2a-4,https://biolit.fr/observations/observation-85cd95f8-1a2f-4020-961e-ae278907ba2a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110892.JPG,,FALSE, +N1,59513,sortie-85cd95f8-1a2f-4020-961e-ae278907ba2a,https://biolit.fr/sorties/sortie-85cd95f8-1a2f-4020-961e-ae278907ba2a/,Phil,,7/22/2018 0:00,11.0:15,11.0000000,47.708080000000,-3.994419000000,,Fouesnant - Finistère,42685,observation-85cd95f8-1a2f-4020-961e-ae278907ba2a-5,https://biolit.fr/observations/observation-85cd95f8-1a2f-4020-961e-ae278907ba2a-5/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/P1110897.JPG,,TRUE, +N1,59514,sortie-61bb1ce9-bec7-47e9-99b1-99c24cea854a,https://biolit.fr/sorties/sortie-61bb1ce9-bec7-47e9-99b1-99c24cea854a/,Guillaume D,,09/02/2018,16.0000000,18.0000000,46.139611000000,-1.173309000000,,"La Rochelle, Plage des Minimes",42687,observation-61bb1ce9-bec7-47e9-99b1-99c24cea854a,https://biolit.fr/observations/observation-61bb1ce9-bec7-47e9-99b1-99c24cea854a/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20180902_162339_5mo.jpg,,TRUE, +N1,59514,sortie-61bb1ce9-bec7-47e9-99b1-99c24cea854a,https://biolit.fr/sorties/sortie-61bb1ce9-bec7-47e9-99b1-99c24cea854a/,Guillaume D,,09/02/2018,16.0000000,18.0000000,46.139611000000,-1.173309000000,,"La Rochelle, Plage des Minimes",42689,observation-61bb1ce9-bec7-47e9-99b1-99c24cea854a-2,https://biolit.fr/observations/observation-61bb1ce9-bec7-47e9-99b1-99c24cea854a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180902_162518-scaled.jpg,,FALSE, +N1,59514,sortie-61bb1ce9-bec7-47e9-99b1-99c24cea854a,https://biolit.fr/sorties/sortie-61bb1ce9-bec7-47e9-99b1-99c24cea854a/,Guillaume D,,09/02/2018,16.0000000,18.0000000,46.139611000000,-1.173309000000,,"La Rochelle, Plage des Minimes",42691,observation-61bb1ce9-bec7-47e9-99b1-99c24cea854a-3,https://biolit.fr/observations/observation-61bb1ce9-bec7-47e9-99b1-99c24cea854a-3/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20180902_163609_5mo-scaled.jpg,,TRUE, +N1,59514,sortie-61bb1ce9-bec7-47e9-99b1-99c24cea854a,https://biolit.fr/sorties/sortie-61bb1ce9-bec7-47e9-99b1-99c24cea854a/,Guillaume D,,09/02/2018,16.0000000,18.0000000,46.139611000000,-1.173309000000,,"La Rochelle, Plage des Minimes",42693,observation-61bb1ce9-bec7-47e9-99b1-99c24cea854a-4,https://biolit.fr/observations/observation-61bb1ce9-bec7-47e9-99b1-99c24cea854a-4/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180902_165037-scaled.jpg,,TRUE, +N1,59514,sortie-61bb1ce9-bec7-47e9-99b1-99c24cea854a,https://biolit.fr/sorties/sortie-61bb1ce9-bec7-47e9-99b1-99c24cea854a/,Guillaume D,,09/02/2018,16.0000000,18.0000000,46.139611000000,-1.173309000000,,"La Rochelle, Plage des Minimes",42695,observation-61bb1ce9-bec7-47e9-99b1-99c24cea854a-5,https://biolit.fr/observations/observation-61bb1ce9-bec7-47e9-99b1-99c24cea854a-5/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/20180902_165926-scaled.jpg,,TRUE, +N1,59514,sortie-61bb1ce9-bec7-47e9-99b1-99c24cea854a,https://biolit.fr/sorties/sortie-61bb1ce9-bec7-47e9-99b1-99c24cea854a/,Guillaume D,,09/02/2018,16.0000000,18.0000000,46.139611000000,-1.173309000000,,"La Rochelle, Plage des Minimes",42697,observation-61bb1ce9-bec7-47e9-99b1-99c24cea854a-6,https://biolit.fr/observations/observation-61bb1ce9-bec7-47e9-99b1-99c24cea854a-6/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/20180902_172930-scaled.jpg,,TRUE, +N1,59514,sortie-61bb1ce9-bec7-47e9-99b1-99c24cea854a,https://biolit.fr/sorties/sortie-61bb1ce9-bec7-47e9-99b1-99c24cea854a/,Guillaume D,,09/02/2018,16.0000000,18.0000000,46.139611000000,-1.173309000000,,"La Rochelle, Plage des Minimes",42699,observation-61bb1ce9-bec7-47e9-99b1-99c24cea854a-7,https://biolit.fr/observations/observation-61bb1ce9-bec7-47e9-99b1-99c24cea854a-7/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180902_174949_5mo.jpg,,TRUE, +N1,59515,sortie-3cbc6e3f-56ef-4df5-b900-00c63670ebfb,https://biolit.fr/sorties/sortie-3cbc6e3f-56ef-4df5-b900-00c63670ebfb/,Phil,,9/16/2018 0:00,16.0:35,16.0000000,47.873364000000,-3.932271000000,,Concarneau - Finistère,42701,observation-3cbc6e3f-56ef-4df5-b900-00c63670ebfb,https://biolit.fr/observations/observation-3cbc6e3f-56ef-4df5-b900-00c63670ebfb/,Aplidium pallidum,Flocon pédonculé blanc,,https://biolit.fr/wp-content/uploads/2023/07/20180916_163530.jpg,,TRUE, +N1,59515,sortie-3cbc6e3f-56ef-4df5-b900-00c63670ebfb,https://biolit.fr/sorties/sortie-3cbc6e3f-56ef-4df5-b900-00c63670ebfb/,Phil,,9/16/2018 0:00,16.0:35,16.0000000,47.873364000000,-3.932271000000,,Concarneau - Finistère,42703,observation-3cbc6e3f-56ef-4df5-b900-00c63670ebfb-2,https://biolit.fr/observations/observation-3cbc6e3f-56ef-4df5-b900-00c63670ebfb-2/,Aplidium pallidum,Flocon pédonculé blanc,,https://biolit.fr/wp-content/uploads/2023/07/20180916_163513.jpg,,TRUE, +N1,59515,sortie-3cbc6e3f-56ef-4df5-b900-00c63670ebfb,https://biolit.fr/sorties/sortie-3cbc6e3f-56ef-4df5-b900-00c63670ebfb/,Phil,,9/16/2018 0:00,16.0:35,16.0000000,47.873364000000,-3.932271000000,,Concarneau - Finistère,42705,observation-3cbc6e3f-56ef-4df5-b900-00c63670ebfb-3,https://biolit.fr/observations/observation-3cbc6e3f-56ef-4df5-b900-00c63670ebfb-3/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180916_163459.jpg,,TRUE, +N1,59515,sortie-3cbc6e3f-56ef-4df5-b900-00c63670ebfb,https://biolit.fr/sorties/sortie-3cbc6e3f-56ef-4df5-b900-00c63670ebfb/,Phil,,9/16/2018 0:00,16.0:35,16.0000000,47.873364000000,-3.932271000000,,Concarneau - Finistère,42707,observation-3cbc6e3f-56ef-4df5-b900-00c63670ebfb-4,https://biolit.fr/observations/observation-3cbc6e3f-56ef-4df5-b900-00c63670ebfb-4/,Aplidium pallidum,Flocon pédonculé blanc,,https://biolit.fr/wp-content/uploads/2023/07/20180916_163931.jpg,,TRUE, +N1,59516,sortie-224435a6-381f-44a2-9eea-dfa50f3067d3,https://biolit.fr/sorties/sortie-224435a6-381f-44a2-9eea-dfa50f3067d3/,Phil,,9/21/2018 0:00,11.0:25,11.0000000,47.792136000000,-4.286880000000,,Guilvinec - Finistère,42709,observation-224435a6-381f-44a2-9eea-dfa50f3067d3,https://biolit.fr/observations/observation-224435a6-381f-44a2-9eea-dfa50f3067d3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180921_112509.jpg,,FALSE, +N1,59516,sortie-224435a6-381f-44a2-9eea-dfa50f3067d3,https://biolit.fr/sorties/sortie-224435a6-381f-44a2-9eea-dfa50f3067d3/,Phil,,9/21/2018 0:00,11.0:25,11.0000000,47.792136000000,-4.286880000000,,Guilvinec - Finistère,42711,observation-224435a6-381f-44a2-9eea-dfa50f3067d3-2,https://biolit.fr/observations/observation-224435a6-381f-44a2-9eea-dfa50f3067d3-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180921_112715.jpg,,TRUE, +N1,59516,sortie-224435a6-381f-44a2-9eea-dfa50f3067d3,https://biolit.fr/sorties/sortie-224435a6-381f-44a2-9eea-dfa50f3067d3/,Phil,,9/21/2018 0:00,11.0:25,11.0000000,47.792136000000,-4.286880000000,,Guilvinec - Finistère,42713,observation-224435a6-381f-44a2-9eea-dfa50f3067d3-3,https://biolit.fr/observations/observation-224435a6-381f-44a2-9eea-dfa50f3067d3-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180921_112725.jpg,,TRUE, +N1,59516,sortie-224435a6-381f-44a2-9eea-dfa50f3067d3,https://biolit.fr/sorties/sortie-224435a6-381f-44a2-9eea-dfa50f3067d3/,Phil,,9/21/2018 0:00,11.0:25,11.0000000,47.792136000000,-4.286880000000,,Guilvinec - Finistère,42715,observation-224435a6-381f-44a2-9eea-dfa50f3067d3-4,https://biolit.fr/observations/observation-224435a6-381f-44a2-9eea-dfa50f3067d3-4/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20180921_112740.jpg,,TRUE, +N1,59517,sortie-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2,https://biolit.fr/sorties/sortie-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2/,Phil,,5/20/2018 0:00,15.0000000,15.0000000,47.799037000000,-4.176461000000,,Loctudy - Finistère,42717,observation-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2,https://biolit.fr/observations/observation-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110546.JPG,,FALSE, +N1,59517,sortie-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2,https://biolit.fr/sorties/sortie-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2/,Phil,,5/20/2018 0:00,15.0000000,15.0000000,47.799037000000,-4.176461000000,,Loctudy - Finistère,42719,observation-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2-2,https://biolit.fr/observations/observation-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110550.JPG,,FALSE, +N1,59517,sortie-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2,https://biolit.fr/sorties/sortie-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2/,Phil,,5/20/2018 0:00,15.0000000,15.0000000,47.799037000000,-4.176461000000,,Loctudy - Finistère,42721,observation-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2-3,https://biolit.fr/observations/observation-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110552.JPG,,FALSE, +N1,59517,sortie-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2,https://biolit.fr/sorties/sortie-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2/,Phil,,5/20/2018 0:00,15.0000000,15.0000000,47.799037000000,-4.176461000000,,Loctudy - Finistère,42723,observation-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2-4,https://biolit.fr/observations/observation-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110553.JPG,,FALSE, +N1,59517,sortie-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2,https://biolit.fr/sorties/sortie-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2/,Phil,,5/20/2018 0:00,15.0000000,15.0000000,47.799037000000,-4.176461000000,,Loctudy - Finistère,42725,observation-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2-5,https://biolit.fr/observations/observation-d73f08d9-7a4b-454c-8396-c6b5ea0b17b2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110554.JPG,,FALSE, +N1,59518,sortie-b8724f57-2726-4b78-8bc2-2ff8b14e2413,https://biolit.fr/sorties/sortie-b8724f57-2726-4b78-8bc2-2ff8b14e2413/,Phil,,4/28/2018 0:00,11.0000000,11.0:55,47.893466000000,-3.965661000000,,La Forêt-Fouesnant - Finistère,42727,observation-b8724f57-2726-4b78-8bc2-2ff8b14e2413,https://biolit.fr/observations/observation-b8724f57-2726-4b78-8bc2-2ff8b14e2413/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110167.JPG,,FALSE, +N1,59518,sortie-b8724f57-2726-4b78-8bc2-2ff8b14e2413,https://biolit.fr/sorties/sortie-b8724f57-2726-4b78-8bc2-2ff8b14e2413/,Phil,,4/28/2018 0:00,11.0000000,11.0:55,47.893466000000,-3.965661000000,,La Forêt-Fouesnant - Finistère,42729,observation-b8724f57-2726-4b78-8bc2-2ff8b14e2413-2,https://biolit.fr/observations/observation-b8724f57-2726-4b78-8bc2-2ff8b14e2413-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110171.JPG,,FALSE, +N1,59519,sortie-d00bf74c-bb6f-4354-b2de-b1a64122237e,https://biolit.fr/sorties/sortie-d00bf74c-bb6f-4354-b2de-b1a64122237e/,Phil,,9/16/2018 0:00,16.0:25,16.0000000,47.873246000000,-3.932689000000,,Concarneau - Finistère,42731,observation-d00bf74c-bb6f-4354-b2de-b1a64122237e,https://biolit.fr/observations/observation-d00bf74c-bb6f-4354-b2de-b1a64122237e/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20180916_163105.jpg,,TRUE, +N1,59519,sortie-d00bf74c-bb6f-4354-b2de-b1a64122237e,https://biolit.fr/sorties/sortie-d00bf74c-bb6f-4354-b2de-b1a64122237e/,Phil,,9/16/2018 0:00,16.0:25,16.0000000,47.873246000000,-3.932689000000,,Concarneau - Finistère,42733,observation-d00bf74c-bb6f-4354-b2de-b1a64122237e-2,https://biolit.fr/observations/observation-d00bf74c-bb6f-4354-b2de-b1a64122237e-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180916_163200.jpg,,TRUE, +N1,59519,sortie-d00bf74c-bb6f-4354-b2de-b1a64122237e,https://biolit.fr/sorties/sortie-d00bf74c-bb6f-4354-b2de-b1a64122237e/,Phil,,9/16/2018 0:00,16.0:25,16.0000000,47.873246000000,-3.932689000000,,Concarneau - Finistère,42735,observation-d00bf74c-bb6f-4354-b2de-b1a64122237e-3,https://biolit.fr/observations/observation-d00bf74c-bb6f-4354-b2de-b1a64122237e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180916_163220.jpg,,FALSE, +N1,59519,sortie-d00bf74c-bb6f-4354-b2de-b1a64122237e,https://biolit.fr/sorties/sortie-d00bf74c-bb6f-4354-b2de-b1a64122237e/,Phil,,9/16/2018 0:00,16.0:25,16.0000000,47.873246000000,-3.932689000000,,Concarneau - Finistère,42737,observation-d00bf74c-bb6f-4354-b2de-b1a64122237e-4,https://biolit.fr/observations/observation-d00bf74c-bb6f-4354-b2de-b1a64122237e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180916_163224.jpg,,FALSE, +N1,59519,sortie-d00bf74c-bb6f-4354-b2de-b1a64122237e,https://biolit.fr/sorties/sortie-d00bf74c-bb6f-4354-b2de-b1a64122237e/,Phil,,9/16/2018 0:00,16.0:25,16.0000000,47.873246000000,-3.932689000000,,Concarneau - Finistère,42739,observation-d00bf74c-bb6f-4354-b2de-b1a64122237e-5,https://biolit.fr/observations/observation-d00bf74c-bb6f-4354-b2de-b1a64122237e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180916_163234.jpg,,FALSE, +N1,59519,sortie-d00bf74c-bb6f-4354-b2de-b1a64122237e,https://biolit.fr/sorties/sortie-d00bf74c-bb6f-4354-b2de-b1a64122237e/,Phil,,9/16/2018 0:00,16.0:25,16.0000000,47.873246000000,-3.932689000000,,Concarneau - Finistère,42741,observation-d00bf74c-bb6f-4354-b2de-b1a64122237e-6,https://biolit.fr/observations/observation-d00bf74c-bb6f-4354-b2de-b1a64122237e-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180916_163239.jpg,,FALSE, +N1,59520,sortie-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4,https://biolit.fr/sorties/sortie-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4/,Phil,,7/22/2018 0:00,11.0000000,11.0:15,47.708141000000,-3.993667000000,,Fouesnant - Finistère,42743,observation-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4,https://biolit.fr/observations/observation-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110883.JPG,,FALSE, +N1,59520,sortie-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4,https://biolit.fr/sorties/sortie-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4/,Phil,,7/22/2018 0:00,11.0000000,11.0:15,47.708141000000,-3.993667000000,,Fouesnant - Finistère,42745,observation-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4-2,https://biolit.fr/observations/observation-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110884.JPG,,FALSE, +N1,59520,sortie-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4,https://biolit.fr/sorties/sortie-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4/,Phil,,7/22/2018 0:00,11.0000000,11.0:15,47.708141000000,-3.993667000000,,Fouesnant - Finistère,42747,observation-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4-3,https://biolit.fr/observations/observation-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110885.JPG,,FALSE, +N1,59520,sortie-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4,https://biolit.fr/sorties/sortie-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4/,Phil,,7/22/2018 0:00,11.0000000,11.0:15,47.708141000000,-3.993667000000,,Fouesnant - Finistère,42749,observation-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4-4,https://biolit.fr/observations/observation-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110886.JPG,,FALSE, +N1,59520,sortie-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4,https://biolit.fr/sorties/sortie-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4/,Phil,,7/22/2018 0:00,11.0000000,11.0:15,47.708141000000,-3.993667000000,,Fouesnant - Finistère,42751,observation-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4-5,https://biolit.fr/observations/observation-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110887.JPG,,FALSE, +N1,59520,sortie-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4,https://biolit.fr/sorties/sortie-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4/,Phil,,7/22/2018 0:00,11.0000000,11.0:15,47.708141000000,-3.993667000000,,Fouesnant - Finistère,42753,observation-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4-6,https://biolit.fr/observations/observation-5ffe0812-7937-4bfc-a9e2-8e3b8fa91ce4-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110888.JPG,,FALSE, +N1,59521,sortie-17d71f0e-3202-4ec9-8f0a-f0966e4ff6a2,https://biolit.fr/sorties/sortie-17d71f0e-3202-4ec9-8f0a-f0966e4ff6a2/,Phil,,09/08/2018,12.0:15,12.0000000,47.869183000000,-3.911682000000,,Concarneau - Finistère,42755,observation-17d71f0e-3202-4ec9-8f0a-f0966e4ff6a2,https://biolit.fr/observations/observation-17d71f0e-3202-4ec9-8f0a-f0966e4ff6a2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180908_122004-scaled.jpg,,FALSE, +N1,59521,sortie-17d71f0e-3202-4ec9-8f0a-f0966e4ff6a2,https://biolit.fr/sorties/sortie-17d71f0e-3202-4ec9-8f0a-f0966e4ff6a2/,Phil,,09/08/2018,12.0:15,12.0000000,47.869183000000,-3.911682000000,,Concarneau - Finistère,42757,observation-17d71f0e-3202-4ec9-8f0a-f0966e4ff6a2-2,https://biolit.fr/observations/observation-17d71f0e-3202-4ec9-8f0a-f0966e4ff6a2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180908_121936.jpg,,FALSE, +N1,59521,sortie-17d71f0e-3202-4ec9-8f0a-f0966e4ff6a2,https://biolit.fr/sorties/sortie-17d71f0e-3202-4ec9-8f0a-f0966e4ff6a2/,Phil,,09/08/2018,12.0:15,12.0000000,47.869183000000,-3.911682000000,,Concarneau - Finistère,42759,observation-17d71f0e-3202-4ec9-8f0a-f0966e4ff6a2-3,https://biolit.fr/observations/observation-17d71f0e-3202-4ec9-8f0a-f0966e4ff6a2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180908_121813.jpg,,FALSE, +N1,59521,sortie-17d71f0e-3202-4ec9-8f0a-f0966e4ff6a2,https://biolit.fr/sorties/sortie-17d71f0e-3202-4ec9-8f0a-f0966e4ff6a2/,Phil,,09/08/2018,12.0:15,12.0000000,47.869183000000,-3.911682000000,,Concarneau - Finistère,42761,observation-17d71f0e-3202-4ec9-8f0a-f0966e4ff6a2-4,https://biolit.fr/observations/observation-17d71f0e-3202-4ec9-8f0a-f0966e4ff6a2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180908_121810.jpg,,FALSE, +N1,59522,sortie-b7a6aba6-9151-498a-a3e4-a1dd7f59b40a,https://biolit.fr/sorties/sortie-b7a6aba6-9151-498a-a3e4-a1dd7f59b40a/,Clémentine,,9/19/2018 0:00,10.0000000,10.0:35,43.2843420,5.3160610,,Plage Saint Esteve,42763,observation-b7a6aba6-9151-498a-a3e4-a1dd7f59b40a,https://biolit.fr/observations/observation-b7a6aba6-9151-498a-a3e4-a1dd7f59b40a/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180919_103936-scaled.jpg,,FALSE, +N1,59523,sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06,https://biolit.fr/sorties/sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06/,CarpeDiem,,9/15/2018 0:00,18.0000000,19.0000000,43.325728000000,5.054649000000,,Phare de la couronne,42765,observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06,https://biolit.fr/observations/observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Pince crabe verruqueux-scaled.jpg,,TRUE, +N1,59523,sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06,https://biolit.fr/sorties/sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06/,CarpeDiem,,9/15/2018 0:00,18.0000000,19.0000000,43.325728000000,5.054649000000,,Phare de la couronne,42767,observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-2,https://biolit.fr/observations/observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pince crabe verruqueux verso-scaled.jpg,,FALSE, +N1,59523,sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06,https://biolit.fr/sorties/sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06/,CarpeDiem,,9/15/2018 0:00,18.0000000,19.0000000,43.325728000000,5.054649000000,,Phare de la couronne,42769,observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-3,https://biolit.fr/observations/observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/pontes-scaled.jpg,,FALSE, +N1,59523,sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06,https://biolit.fr/sorties/sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06/,CarpeDiem,,9/15/2018 0:00,18.0000000,19.0000000,43.325728000000,5.054649000000,,Phare de la couronne,42771,observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-4,https://biolit.fr/observations/observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/coquille habitée pagure-rotated.jpg,,FALSE, +N1,59523,sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06,https://biolit.fr/sorties/sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06/,CarpeDiem,,9/15/2018 0:00,18.0000000,19.0000000,43.325728000000,5.054649000000,,Phare de la couronne,42773,observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-5,https://biolit.fr/observations/observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crabe 1Recto-scaled.jpg,,FALSE, +N1,59523,sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06,https://biolit.fr/sorties/sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06/,CarpeDiem,,9/15/2018 0:00,18.0000000,19.0000000,43.325728000000,5.054649000000,,Phare de la couronne,42775,observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-6,https://biolit.fr/observations/observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crabe 1verso-scaled.jpg,,FALSE, +N1,59523,sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06,https://biolit.fr/sorties/sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06/,CarpeDiem,,9/15/2018 0:00,18.0000000,19.0000000,43.325728000000,5.054649000000,,Phare de la couronne,42777,observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-7,https://biolit.fr/observations/observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crabe marbré recto-scaled.jpg,,FALSE, +N1,59523,sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06,https://biolit.fr/sorties/sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06/,CarpeDiem,,9/15/2018 0:00,18.0000000,19.0000000,43.325728000000,5.054649000000,,Phare de la couronne,42779,observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-8,https://biolit.fr/observations/observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crabe marbré verso-scaled.jpg,,FALSE, +N1,59523,sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06,https://biolit.fr/sorties/sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06/,CarpeDiem,,9/15/2018 0:00,18.0000000,19.0000000,43.325728000000,5.054649000000,,Phare de la couronne,42781,observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-9,https://biolit.fr/observations/observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-9/,Felimare villafranca,Doris de Villefranche,,https://biolit.fr/wp-content/uploads/2023/07/Doris-scaled.jpg,,TRUE, +N1,59523,sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06,https://biolit.fr/sorties/sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06/,CarpeDiem,,9/15/2018 0:00,18.0000000,19.0000000,43.325728000000,5.054649000000,,Phare de la couronne,42783,observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-10,https://biolit.fr/observations/observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-10/,Lithophaga lithophaga,Datte de mer,,https://biolit.fr/wp-content/uploads/2023/07/datte de mer recto-scaled.jpg,,TRUE, +N1,59523,sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06,https://biolit.fr/sorties/sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06/,CarpeDiem,,9/15/2018 0:00,18.0000000,19.0000000,43.325728000000,5.054649000000,,Phare de la couronne,42785,observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-11,https://biolit.fr/observations/observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-11/,Lithophaga lithophaga,Datte de mer,,https://biolit.fr/wp-content/uploads/2023/07/Datte de mer verso-scaled.jpg,,TRUE, +N1,59523,sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06,https://biolit.fr/sorties/sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06/,CarpeDiem,,9/15/2018 0:00,18.0000000,19.0000000,43.325728000000,5.054649000000,,Phare de la couronne,42787,observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-12,https://biolit.fr/observations/observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/caulerpe raisin-scaled.jpg,,FALSE, +N1,59523,sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06,https://biolit.fr/sorties/sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06/,CarpeDiem,,9/15/2018 0:00,18.0000000,19.0000000,43.325728000000,5.054649000000,,Phare de la couronne,42789,observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-13,https://biolit.fr/observations/observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/Moule coquille.jpg,,FALSE, +N1,59523,sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06,https://biolit.fr/sorties/sortie-c5ac0ca5-3161-4e47-a376-eeb914a4aa06/,CarpeDiem,,9/15/2018 0:00,18.0000000,19.0000000,43.325728000000,5.054649000000,,Phare de la couronne,42791,observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-14,https://biolit.fr/observations/observation-c5ac0ca5-3161-4e47-a376-eeb914a4aa06-14/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/petit coquillage.jpg,,TRUE, +N1,59525,sortie-c7802337-a7c7-434d-aa74-80071df25f9a,https://biolit.fr/sorties/sortie-c7802337-a7c7-434d-aa74-80071df25f9a/,Phil,,5/20/2018 0:00,15.0000000,15.0000000,47.7983620000,-4.176478000000,,Loctudy - Finistère,42795,observation-c7802337-a7c7-434d-aa74-80071df25f9a,https://biolit.fr/observations/observation-c7802337-a7c7-434d-aa74-80071df25f9a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110540.JPG,,FALSE, +N1,59525,sortie-c7802337-a7c7-434d-aa74-80071df25f9a,https://biolit.fr/sorties/sortie-c7802337-a7c7-434d-aa74-80071df25f9a/,Phil,,5/20/2018 0:00,15.0000000,15.0000000,47.7983620000,-4.176478000000,,Loctudy - Finistère,42797,observation-c7802337-a7c7-434d-aa74-80071df25f9a-2,https://biolit.fr/observations/observation-c7802337-a7c7-434d-aa74-80071df25f9a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110543.JPG,,FALSE, +N1,59525,sortie-c7802337-a7c7-434d-aa74-80071df25f9a,https://biolit.fr/sorties/sortie-c7802337-a7c7-434d-aa74-80071df25f9a/,Phil,,5/20/2018 0:00,15.0000000,15.0000000,47.7983620000,-4.176478000000,,Loctudy - Finistère,42799,observation-c7802337-a7c7-434d-aa74-80071df25f9a-3,https://biolit.fr/observations/observation-c7802337-a7c7-434d-aa74-80071df25f9a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110537.JPG,,FALSE, +N1,59525,sortie-c7802337-a7c7-434d-aa74-80071df25f9a,https://biolit.fr/sorties/sortie-c7802337-a7c7-434d-aa74-80071df25f9a/,Phil,,5/20/2018 0:00,15.0000000,15.0000000,47.7983620000,-4.176478000000,,Loctudy - Finistère,42801,observation-c7802337-a7c7-434d-aa74-80071df25f9a-4,https://biolit.fr/observations/observation-c7802337-a7c7-434d-aa74-80071df25f9a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110533.JPG,,FALSE, +N1,59525,sortie-c7802337-a7c7-434d-aa74-80071df25f9a,https://biolit.fr/sorties/sortie-c7802337-a7c7-434d-aa74-80071df25f9a/,Phil,,5/20/2018 0:00,15.0000000,15.0000000,47.7983620000,-4.176478000000,,Loctudy - Finistère,42803,observation-c7802337-a7c7-434d-aa74-80071df25f9a-5,https://biolit.fr/observations/observation-c7802337-a7c7-434d-aa74-80071df25f9a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110530.JPG,,FALSE, +N1,59525,sortie-c7802337-a7c7-434d-aa74-80071df25f9a,https://biolit.fr/sorties/sortie-c7802337-a7c7-434d-aa74-80071df25f9a/,Phil,,5/20/2018 0:00,15.0000000,15.0000000,47.7983620000,-4.176478000000,,Loctudy - Finistère,42805,observation-c7802337-a7c7-434d-aa74-80071df25f9a-6,https://biolit.fr/observations/observation-c7802337-a7c7-434d-aa74-80071df25f9a-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110529.JPG,,FALSE, +N1,59525,sortie-c7802337-a7c7-434d-aa74-80071df25f9a,https://biolit.fr/sorties/sortie-c7802337-a7c7-434d-aa74-80071df25f9a/,Phil,,5/20/2018 0:00,15.0000000,15.0000000,47.7983620000,-4.176478000000,,Loctudy - Finistère,42807,observation-c7802337-a7c7-434d-aa74-80071df25f9a-7,https://biolit.fr/observations/observation-c7802337-a7c7-434d-aa74-80071df25f9a-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110523.JPG,,FALSE, +N1,59525,sortie-c7802337-a7c7-434d-aa74-80071df25f9a,https://biolit.fr/sorties/sortie-c7802337-a7c7-434d-aa74-80071df25f9a/,Phil,,5/20/2018 0:00,15.0000000,15.0000000,47.7983620000,-4.176478000000,,Loctudy - Finistère,42809,observation-c7802337-a7c7-434d-aa74-80071df25f9a-8,https://biolit.fr/observations/observation-c7802337-a7c7-434d-aa74-80071df25f9a-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110522.JPG,,FALSE, +N1,59526,sortie-9c423c56-5d58-4f9c-8e06-3bb6539c1793,https://biolit.fr/sorties/sortie-9c423c56-5d58-4f9c-8e06-3bb6539c1793/,Phil,,9/16/2018 0:00,16.0000000,16.0000000,47.873489000000,-3.931005000000,,Concarneau - Finistère,42811,observation-9c423c56-5d58-4f9c-8e06-3bb6539c1793,https://biolit.fr/observations/observation-9c423c56-5d58-4f9c-8e06-3bb6539c1793/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180916_162605_2.jpg,,TRUE, +N1,59526,sortie-9c423c56-5d58-4f9c-8e06-3bb6539c1793,https://biolit.fr/sorties/sortie-9c423c56-5d58-4f9c-8e06-3bb6539c1793/,Phil,,9/16/2018 0:00,16.0000000,16.0000000,47.873489000000,-3.931005000000,,Concarneau - Finistère,42813,observation-9c423c56-5d58-4f9c-8e06-3bb6539c1793-2,https://biolit.fr/observations/observation-9c423c56-5d58-4f9c-8e06-3bb6539c1793-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180916_161944_1.jpg,,FALSE, +N1,59526,sortie-9c423c56-5d58-4f9c-8e06-3bb6539c1793,https://biolit.fr/sorties/sortie-9c423c56-5d58-4f9c-8e06-3bb6539c1793/,Phil,,9/16/2018 0:00,16.0000000,16.0000000,47.873489000000,-3.931005000000,,Concarneau - Finistère,42815,observation-9c423c56-5d58-4f9c-8e06-3bb6539c1793-3,https://biolit.fr/observations/observation-9c423c56-5d58-4f9c-8e06-3bb6539c1793-3/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20180916_162454_1.jpg,,TRUE, +N1,59526,sortie-9c423c56-5d58-4f9c-8e06-3bb6539c1793,https://biolit.fr/sorties/sortie-9c423c56-5d58-4f9c-8e06-3bb6539c1793/,Phil,,9/16/2018 0:00,16.0000000,16.0000000,47.873489000000,-3.931005000000,,Concarneau - Finistère,42817,observation-9c423c56-5d58-4f9c-8e06-3bb6539c1793-4,https://biolit.fr/observations/observation-9c423c56-5d58-4f9c-8e06-3bb6539c1793-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180916_162802_1.jpg,,FALSE, +N1,59526,sortie-9c423c56-5d58-4f9c-8e06-3bb6539c1793,https://biolit.fr/sorties/sortie-9c423c56-5d58-4f9c-8e06-3bb6539c1793/,Phil,,9/16/2018 0:00,16.0000000,16.0000000,47.873489000000,-3.931005000000,,Concarneau - Finistère,42819,observation-9c423c56-5d58-4f9c-8e06-3bb6539c1793-5,https://biolit.fr/observations/observation-9c423c56-5d58-4f9c-8e06-3bb6539c1793-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180916_162918_1.jpg,,FALSE, +N1,59526,sortie-9c423c56-5d58-4f9c-8e06-3bb6539c1793,https://biolit.fr/sorties/sortie-9c423c56-5d58-4f9c-8e06-3bb6539c1793/,Phil,,9/16/2018 0:00,16.0000000,16.0000000,47.873489000000,-3.931005000000,,Concarneau - Finistère,42821,observation-9c423c56-5d58-4f9c-8e06-3bb6539c1793-6,https://biolit.fr/observations/observation-9c423c56-5d58-4f9c-8e06-3bb6539c1793-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180916_163009_1.jpg,,FALSE, +N1,59527,sortie-aae419be-5bf8-42ab-9be9-973b1b325f9d,https://biolit.fr/sorties/sortie-aae419be-5bf8-42ab-9be9-973b1b325f9d/,Phil,,9/15/2018 0:00,15.0:55,16.0000000,48.006271000000,-4.556672000000,,Esquibien - Finistère,42823,observation-aae419be-5bf8-42ab-9be9-973b1b325f9d,https://biolit.fr/observations/observation-aae419be-5bf8-42ab-9be9-973b1b325f9d/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180915_155933.jpg,,FALSE, +N1,59528,sortie-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7,https://biolit.fr/sorties/sortie-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7/,Phil,,8/24/2018 0:00,13.0000000,13.000005,48.031694000000,-4.844292000000,,Île de Sein - Finistère,42825,observation-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7,https://biolit.fr/observations/observation-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120079.JPG,,FALSE, +N1,59528,sortie-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7,https://biolit.fr/sorties/sortie-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7/,Phil,,8/24/2018 0:00,13.0000000,13.000005,48.031694000000,-4.844292000000,,Île de Sein - Finistère,42827,observation-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7-2,https://biolit.fr/observations/observation-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120082_0.JPG,,FALSE, +N1,59528,sortie-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7,https://biolit.fr/sorties/sortie-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7/,Phil,,8/24/2018 0:00,13.0000000,13.000005,48.031694000000,-4.844292000000,,Île de Sein - Finistère,42829,observation-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7-3,https://biolit.fr/observations/observation-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120080.JPG,,FALSE, +N1,59528,sortie-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7,https://biolit.fr/sorties/sortie-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7/,Phil,,8/24/2018 0:00,13.0000000,13.000005,48.031694000000,-4.844292000000,,Île de Sein - Finistère,42831,observation-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7-4,https://biolit.fr/observations/observation-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120081.JPG,,FALSE, +N1,59528,sortie-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7,https://biolit.fr/sorties/sortie-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7/,Phil,,8/24/2018 0:00,13.0000000,13.000005,48.031694000000,-4.844292000000,,Île de Sein - Finistère,42833,observation-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7-5,https://biolit.fr/observations/observation-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120086.JPG,,FALSE, +N1,59528,sortie-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7,https://biolit.fr/sorties/sortie-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7/,Phil,,8/24/2018 0:00,13.0000000,13.000005,48.031694000000,-4.844292000000,,Île de Sein - Finistère,42835,observation-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7-6,https://biolit.fr/observations/observation-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120088.JPG,,FALSE, +N1,59528,sortie-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7,https://biolit.fr/sorties/sortie-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7/,Phil,,8/24/2018 0:00,13.0000000,13.000005,48.031694000000,-4.844292000000,,Île de Sein - Finistère,42837,observation-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7-7,https://biolit.fr/observations/observation-e8e4e9e9-982d-411f-a7b1-b0bc1a1d91a7-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120089.JPG,,FALSE, +N1,59529,sortie-f71f257b-a139-4339-85ab-d6ffbfb8e9b5,https://biolit.fr/sorties/sortie-f71f257b-a139-4339-85ab-d6ffbfb8e9b5/,Phil,,9/15/2018 0:00,11.0000000,12.0000000,47.837442000000,-4.176338000000,,Loctudy - Finistère,42839,observation-f71f257b-a139-4339-85ab-d6ffbfb8e9b5,https://biolit.fr/observations/observation-f71f257b-a139-4339-85ab-d6ffbfb8e9b5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120195-scaled.jpg,,FALSE, +N1,59529,sortie-f71f257b-a139-4339-85ab-d6ffbfb8e9b5,https://biolit.fr/sorties/sortie-f71f257b-a139-4339-85ab-d6ffbfb8e9b5/,Phil,,9/15/2018 0:00,11.0000000,12.0000000,47.837442000000,-4.176338000000,,Loctudy - Finistère,42841,observation-f71f257b-a139-4339-85ab-d6ffbfb8e9b5-2,https://biolit.fr/observations/observation-f71f257b-a139-4339-85ab-d6ffbfb8e9b5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P112019 -.jpg,,FALSE, +N1,59529,sortie-f71f257b-a139-4339-85ab-d6ffbfb8e9b5,https://biolit.fr/sorties/sortie-f71f257b-a139-4339-85ab-d6ffbfb8e9b5/,Phil,,9/15/2018 0:00,11.0000000,12.0000000,47.837442000000,-4.176338000000,,Loctudy - Finistère,42843,observation-f71f257b-a139-4339-85ab-d6ffbfb8e9b5-3,https://biolit.fr/observations/observation-f71f257b-a139-4339-85ab-d6ffbfb8e9b5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120196.JPG,,FALSE, +N1,59529,sortie-f71f257b-a139-4339-85ab-d6ffbfb8e9b5,https://biolit.fr/sorties/sortie-f71f257b-a139-4339-85ab-d6ffbfb8e9b5/,Phil,,9/15/2018 0:00,11.0000000,12.0000000,47.837442000000,-4.176338000000,,Loctudy - Finistère,42845,observation-f71f257b-a139-4339-85ab-d6ffbfb8e9b5-4,https://biolit.fr/observations/observation-f71f257b-a139-4339-85ab-d6ffbfb8e9b5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120199.JPG,,FALSE, +N1,59529,sortie-f71f257b-a139-4339-85ab-d6ffbfb8e9b5,https://biolit.fr/sorties/sortie-f71f257b-a139-4339-85ab-d6ffbfb8e9b5/,Phil,,9/15/2018 0:00,11.0000000,12.0000000,47.837442000000,-4.176338000000,,Loctudy - Finistère,42847,observation-f71f257b-a139-4339-85ab-d6ffbfb8e9b5-5,https://biolit.fr/observations/observation-f71f257b-a139-4339-85ab-d6ffbfb8e9b5-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120202.JPG,,FALSE, +N1,59529,sortie-f71f257b-a139-4339-85ab-d6ffbfb8e9b5,https://biolit.fr/sorties/sortie-f71f257b-a139-4339-85ab-d6ffbfb8e9b5/,Phil,,9/15/2018 0:00,11.0000000,12.0000000,47.837442000000,-4.176338000000,,Loctudy - Finistère,42849,observation-f71f257b-a139-4339-85ab-d6ffbfb8e9b5-6,https://biolit.fr/observations/observation-f71f257b-a139-4339-85ab-d6ffbfb8e9b5-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120204.JPG,,FALSE, +N1,59530,sortie-95298ece-250c-4e04-a312-9fba6191ec4a,https://biolit.fr/sorties/sortie-95298ece-250c-4e04-a312-9fba6191ec4a/,Treza13,,08/09/2018,7.0000000,14.0000000,43.176491000000,6.603024000000,,Les trois caps,42851,observation-95298ece-250c-4e04-a312-9fba6191ec4a,https://biolit.fr/observations/observation-95298ece-250c-4e04-a312-9fba6191ec4a/,Apogon imberbis,Apogon,,https://biolit.fr/wp-content/uploads/2023/07/20180809 Apogons (3).jpg,,TRUE, +N1,59531,sortie-406c0062-f69f-4712-bb06-ea50ffacd658,https://biolit.fr/sorties/sortie-406c0062-f69f-4712-bb06-ea50ffacd658/,Treza13,,08/08/2018,7.0000000,14.0000000,43.013419000000,6.389866000000,,Parc National de Port Cros,42853,observation-406c0062-f69f-4712-bb06-ea50ffacd658,https://biolit.fr/observations/observation-406c0062-f69f-4712-bb06-ea50ffacd658/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180808 Merle (1)_0.jpg,,FALSE, +N1,59531,sortie-406c0062-f69f-4712-bb06-ea50ffacd658,https://biolit.fr/sorties/sortie-406c0062-f69f-4712-bb06-ea50ffacd658/,Treza13,,08/08/2018,7.0000000,14.0000000,43.013419000000,6.389866000000,,Parc National de Port Cros,42855,observation-406c0062-f69f-4712-bb06-ea50ffacd658-2,https://biolit.fr/observations/observation-406c0062-f69f-4712-bb06-ea50ffacd658-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180808 Merle (2).jpg,,FALSE, +N1,59531,sortie-406c0062-f69f-4712-bb06-ea50ffacd658,https://biolit.fr/sorties/sortie-406c0062-f69f-4712-bb06-ea50ffacd658/,Treza13,,08/08/2018,7.0000000,14.0000000,43.013419000000,6.389866000000,,Parc National de Port Cros,42857,observation-406c0062-f69f-4712-bb06-ea50ffacd658-3,https://biolit.fr/observations/observation-406c0062-f69f-4712-bb06-ea50ffacd658-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180808 Merle (3).jpg,,FALSE, +N1,59532,sortie-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b,https://biolit.fr/sorties/sortie-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b/,Phil,,5/20/2018 0:00,15.0:25,15.0000000,47.798160000000,-4.177551000000,,Loctudy - Finistère,42859,observation-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b,https://biolit.fr/observations/observation-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110514.JPG,,FALSE, +N1,59532,sortie-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b,https://biolit.fr/sorties/sortie-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b/,Phil,,5/20/2018 0:00,15.0:25,15.0000000,47.798160000000,-4.177551000000,,Loctudy - Finistère,42861,observation-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b-2,https://biolit.fr/observations/observation-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110515.JPG,,FALSE, +N1,59532,sortie-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b,https://biolit.fr/sorties/sortie-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b/,Phil,,5/20/2018 0:00,15.0:25,15.0000000,47.798160000000,-4.177551000000,,Loctudy - Finistère,42863,observation-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b-3,https://biolit.fr/observations/observation-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b-3/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/P1110507.JPG,,TRUE, +N1,59532,sortie-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b,https://biolit.fr/sorties/sortie-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b/,Phil,,5/20/2018 0:00,15.0:25,15.0000000,47.798160000000,-4.177551000000,,Loctudy - Finistère,42865,observation-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b-4,https://biolit.fr/observations/observation-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110506.JPG,,FALSE, +N1,59532,sortie-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b,https://biolit.fr/sorties/sortie-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b/,Phil,,5/20/2018 0:00,15.0:25,15.0000000,47.798160000000,-4.177551000000,,Loctudy - Finistère,42867,observation-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b-5,https://biolit.fr/observations/observation-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110510.JPG,,FALSE, +N1,59532,sortie-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b,https://biolit.fr/sorties/sortie-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b/,Phil,,5/20/2018 0:00,15.0:25,15.0000000,47.798160000000,-4.177551000000,,Loctudy - Finistère,42869,observation-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b-6,https://biolit.fr/observations/observation-fdbe8f0b-f8bc-4d43-aed3-67cc1ff08a2b-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110511.JPG,,FALSE, +N1,59533,sortie-f1e159e4-48f1-4067-90e3-b1c83d9ca906,https://biolit.fr/sorties/sortie-f1e159e4-48f1-4067-90e3-b1c83d9ca906/,Phil,,7/16/2018 0:00,12.0:45,12.0000000,47.809376000000,-3.712372000000,,Moëlan-sur-Mer Finistère,42871,observation-f1e159e4-48f1-4067-90e3-b1c83d9ca906,https://biolit.fr/observations/observation-f1e159e4-48f1-4067-90e3-b1c83d9ca906/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110710_0.JPG,,FALSE, +N1,59533,sortie-f1e159e4-48f1-4067-90e3-b1c83d9ca906,https://biolit.fr/sorties/sortie-f1e159e4-48f1-4067-90e3-b1c83d9ca906/,Phil,,7/16/2018 0:00,12.0:45,12.0000000,47.809376000000,-3.712372000000,,Moëlan-sur-Mer Finistère,42873,observation-f1e159e4-48f1-4067-90e3-b1c83d9ca906-2,https://biolit.fr/observations/observation-f1e159e4-48f1-4067-90e3-b1c83d9ca906-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110708_0.JPG,,FALSE, +N1,59533,sortie-f1e159e4-48f1-4067-90e3-b1c83d9ca906,https://biolit.fr/sorties/sortie-f1e159e4-48f1-4067-90e3-b1c83d9ca906/,Phil,,7/16/2018 0:00,12.0:45,12.0000000,47.809376000000,-3.712372000000,,Moëlan-sur-Mer Finistère,42875,observation-f1e159e4-48f1-4067-90e3-b1c83d9ca906-3,https://biolit.fr/observations/observation-f1e159e4-48f1-4067-90e3-b1c83d9ca906-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110709_0.JPG,,FALSE, +N1,59533,sortie-f1e159e4-48f1-4067-90e3-b1c83d9ca906,https://biolit.fr/sorties/sortie-f1e159e4-48f1-4067-90e3-b1c83d9ca906/,Phil,,7/16/2018 0:00,12.0:45,12.0000000,47.809376000000,-3.712372000000,,Moëlan-sur-Mer Finistère,42877,observation-f1e159e4-48f1-4067-90e3-b1c83d9ca906-4,https://biolit.fr/observations/observation-f1e159e4-48f1-4067-90e3-b1c83d9ca906-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110712_0.JPG,,FALSE, +N1,59533,sortie-f1e159e4-48f1-4067-90e3-b1c83d9ca906,https://biolit.fr/sorties/sortie-f1e159e4-48f1-4067-90e3-b1c83d9ca906/,Phil,,7/16/2018 0:00,12.0:45,12.0000000,47.809376000000,-3.712372000000,,Moëlan-sur-Mer Finistère,42879,observation-f1e159e4-48f1-4067-90e3-b1c83d9ca906-5,https://biolit.fr/observations/observation-f1e159e4-48f1-4067-90e3-b1c83d9ca906-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110713.JPG,,FALSE, +N1,59533,sortie-f1e159e4-48f1-4067-90e3-b1c83d9ca906,https://biolit.fr/sorties/sortie-f1e159e4-48f1-4067-90e3-b1c83d9ca906/,Phil,,7/16/2018 0:00,12.0:45,12.0000000,47.809376000000,-3.712372000000,,Moëlan-sur-Mer Finistère,42881,observation-f1e159e4-48f1-4067-90e3-b1c83d9ca906-6,https://biolit.fr/observations/observation-f1e159e4-48f1-4067-90e3-b1c83d9ca906-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110714_0.JPG,,FALSE, +N1,59534,sortie-1822cb9b-0831-4907-9d9d-b680d70c6722,https://biolit.fr/sorties/sortie-1822cb9b-0831-4907-9d9d-b680d70c6722/,Phil,,09/08/2018,12.0000000,12.0:15,47.869588000000,-3.911989000000,,Concarneau - Finistère,42883,observation-1822cb9b-0831-4907-9d9d-b680d70c6722,https://biolit.fr/observations/observation-1822cb9b-0831-4907-9d9d-b680d70c6722/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180908_121353.jpg,,FALSE, +N1,59534,sortie-1822cb9b-0831-4907-9d9d-b680d70c6722,https://biolit.fr/sorties/sortie-1822cb9b-0831-4907-9d9d-b680d70c6722/,Phil,,09/08/2018,12.0000000,12.0:15,47.869588000000,-3.911989000000,,Concarneau - Finistère,42885,observation-1822cb9b-0831-4907-9d9d-b680d70c6722-2,https://biolit.fr/observations/observation-1822cb9b-0831-4907-9d9d-b680d70c6722-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180908_121330.jpg,,FALSE, +N1,59535,sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0,https://biolit.fr/sorties/sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0/,Murielle,,9/15/2018 0:00,9.0:15,10.0000000,43.343000000000,5.364272000000,,Plage du Bain des Dames Marseille,42887,observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0,https://biolit.fr/observations/observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180915_093411-scaled.jpg,,FALSE, +N1,59535,sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0,https://biolit.fr/sorties/sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0/,Murielle,,9/15/2018 0:00,9.0:15,10.0000000,43.343000000000,5.364272000000,,Plage du Bain des Dames Marseille,42889,observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0-2,https://biolit.fr/observations/observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180915_093717-scaled.jpg,,FALSE, +N1,59535,sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0,https://biolit.fr/sorties/sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0/,Murielle,,9/15/2018 0:00,9.0:15,10.0000000,43.343000000000,5.364272000000,,Plage du Bain des Dames Marseille,42891,observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0-3,https://biolit.fr/observations/observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180915_093859-scaled.jpg,,FALSE, +N1,59535,sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0,https://biolit.fr/sorties/sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0/,Murielle,,9/15/2018 0:00,9.0:15,10.0000000,43.343000000000,5.364272000000,,Plage du Bain des Dames Marseille,42893,observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0-4,https://biolit.fr/observations/observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180915_094430-scaled.jpg,,FALSE, +N1,59535,sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0,https://biolit.fr/sorties/sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0/,Murielle,,9/15/2018 0:00,9.0:15,10.0000000,43.343000000000,5.364272000000,,Plage du Bain des Dames Marseille,42895,observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0-5,https://biolit.fr/observations/observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180915_094513-scaled.jpg,,FALSE, +N1,59535,sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0,https://biolit.fr/sorties/sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0/,Murielle,,9/15/2018 0:00,9.0:15,10.0000000,43.343000000000,5.364272000000,,Plage du Bain des Dames Marseille,42897,observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0-6,https://biolit.fr/observations/observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180915_100908-scaled.jpg,,FALSE, +N1,59535,sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0,https://biolit.fr/sorties/sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0/,Murielle,,9/15/2018 0:00,9.0:15,10.0000000,43.343000000000,5.364272000000,,Plage du Bain des Dames Marseille,42899,observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0-7,https://biolit.fr/observations/observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180915_100811-scaled.jpg,,FALSE, +N1,59535,sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0,https://biolit.fr/sorties/sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0/,Murielle,,9/15/2018 0:00,9.0:15,10.0000000,43.343000000000,5.364272000000,,Plage du Bain des Dames Marseille,42901,observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0-8,https://biolit.fr/observations/observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180915_093510-scaled.jpg,,FALSE, +N1,59535,sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0,https://biolit.fr/sorties/sortie-e9eff421-8090-47d2-89ea-3e93a0b3a7b0/,Murielle,,9/15/2018 0:00,9.0:15,10.0000000,43.343000000000,5.364272000000,,Plage du Bain des Dames Marseille,42903,observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0-9,https://biolit.fr/observations/observation-e9eff421-8090-47d2-89ea-3e93a0b3a7b0-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180915_093619-scaled.jpg,,FALSE, +N1,59536,sortie-56c2d91c-3a45-4f09-b669-8eeae18e0652,https://biolit.fr/sorties/sortie-56c2d91c-3a45-4f09-b669-8eeae18e0652/,Treza13,,8/24/2018 0:00,7.0000000,14.0000000,43.183782000000,6.593325000000,,Plage de Gigaro,42905,observation-56c2d91c-3a45-4f09-b669-8eeae18e0652,https://biolit.fr/observations/observation-56c2d91c-3a45-4f09-b669-8eeae18e0652/,Dactylopterus volitans,Grondin volant,,https://biolit.fr/wp-content/uploads/2023/07/20180824 Grondins Volants (1).jpg,,TRUE, +N1,59536,sortie-56c2d91c-3a45-4f09-b669-8eeae18e0652,https://biolit.fr/sorties/sortie-56c2d91c-3a45-4f09-b669-8eeae18e0652/,Treza13,,8/24/2018 0:00,7.0000000,14.0000000,43.183782000000,6.593325000000,,Plage de Gigaro,42907,observation-56c2d91c-3a45-4f09-b669-8eeae18e0652-2,https://biolit.fr/observations/observation-56c2d91c-3a45-4f09-b669-8eeae18e0652-2/,Dactylopterus volitans,Grondin volant,,https://biolit.fr/wp-content/uploads/2023/07/20180824 Grondins Volants (8).jpg,,TRUE, +N1,59536,sortie-56c2d91c-3a45-4f09-b669-8eeae18e0652,https://biolit.fr/sorties/sortie-56c2d91c-3a45-4f09-b669-8eeae18e0652/,Treza13,,8/24/2018 0:00,7.0000000,14.0000000,43.183782000000,6.593325000000,,Plage de Gigaro,42909,observation-56c2d91c-3a45-4f09-b669-8eeae18e0652-3,https://biolit.fr/observations/observation-56c2d91c-3a45-4f09-b669-8eeae18e0652-3/,Dactylopterus volitans,Grondin volant,,https://biolit.fr/wp-content/uploads/2023/07/20180824 Grondins Volants (10).jpg,,TRUE, +N1,59536,sortie-56c2d91c-3a45-4f09-b669-8eeae18e0652,https://biolit.fr/sorties/sortie-56c2d91c-3a45-4f09-b669-8eeae18e0652/,Treza13,,8/24/2018 0:00,7.0000000,14.0000000,43.183782000000,6.593325000000,,Plage de Gigaro,42911,observation-56c2d91c-3a45-4f09-b669-8eeae18e0652-4,https://biolit.fr/observations/observation-56c2d91c-3a45-4f09-b669-8eeae18e0652-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180824 Rason (4).jpg,,FALSE, +N1,59536,sortie-56c2d91c-3a45-4f09-b669-8eeae18e0652,https://biolit.fr/sorties/sortie-56c2d91c-3a45-4f09-b669-8eeae18e0652/,Treza13,,8/24/2018 0:00,7.0000000,14.0000000,43.183782000000,6.593325000000,,Plage de Gigaro,42913,observation-56c2d91c-3a45-4f09-b669-8eeae18e0652-5,https://biolit.fr/observations/observation-56c2d91c-3a45-4f09-b669-8eeae18e0652-5/,Sabella spallanzanii,Spirographe,,https://biolit.fr/wp-content/uploads/2023/07/20180824 Spirographe (9).jpg,,TRUE, +N1,59537,sortie-151c2c59-f00d-416c-b388-f1ccc75e4e59,https://biolit.fr/sorties/sortie-151c2c59-f00d-416c-b388-f1ccc75e4e59/,Treza13,,8/23/2018 0:00,7.0000000,14.0000000,43.183360000000,6.592703000000,,Plage de Gigaro,42915,observation-151c2c59-f00d-416c-b388-f1ccc75e4e59,https://biolit.fr/observations/observation-151c2c59-f00d-416c-b388-f1ccc75e4e59/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180823 Grande Cérianthe Noire (1).jpg,,FALSE, +N1,59537,sortie-151c2c59-f00d-416c-b388-f1ccc75e4e59,https://biolit.fr/sorties/sortie-151c2c59-f00d-416c-b388-f1ccc75e4e59/,Treza13,,8/23/2018 0:00,7.0000000,14.0000000,43.183360000000,6.592703000000,,Plage de Gigaro,42917,observation-151c2c59-f00d-416c-b388-f1ccc75e4e59-2,https://biolit.fr/observations/observation-151c2c59-f00d-416c-b388-f1ccc75e4e59-2/,Cerianthus membranaceus,Grand cérianthe,,https://biolit.fr/wp-content/uploads/2023/07/20180823 Grande Cérianthe Noire (10).jpg,,TRUE, +N1,59537,sortie-151c2c59-f00d-416c-b388-f1ccc75e4e59,https://biolit.fr/sorties/sortie-151c2c59-f00d-416c-b388-f1ccc75e4e59/,Treza13,,8/23/2018 0:00,7.0000000,14.0000000,43.183360000000,6.592703000000,,Plage de Gigaro,42919,observation-151c2c59-f00d-416c-b388-f1ccc75e4e59-3,https://biolit.fr/observations/observation-151c2c59-f00d-416c-b388-f1ccc75e4e59-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180823 Grande Cérianthe Noire (11).jpg,,FALSE, +N1,59537,sortie-151c2c59-f00d-416c-b388-f1ccc75e4e59,https://biolit.fr/sorties/sortie-151c2c59-f00d-416c-b388-f1ccc75e4e59/,Treza13,,8/23/2018 0:00,7.0000000,14.0000000,43.183360000000,6.592703000000,,Plage de Gigaro,42921,observation-151c2c59-f00d-416c-b388-f1ccc75e4e59-4,https://biolit.fr/observations/observation-151c2c59-f00d-416c-b388-f1ccc75e4e59-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180823 Grondins Volants (6).jpg,,FALSE, +N1,59537,sortie-151c2c59-f00d-416c-b388-f1ccc75e4e59,https://biolit.fr/sorties/sortie-151c2c59-f00d-416c-b388-f1ccc75e4e59/,Treza13,,8/23/2018 0:00,7.0000000,14.0000000,43.183360000000,6.592703000000,,Plage de Gigaro,42923,observation-151c2c59-f00d-416c-b388-f1ccc75e4e59-5,https://biolit.fr/observations/observation-151c2c59-f00d-416c-b388-f1ccc75e4e59-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180823 Grondins Volants (11).jpg,,FALSE, +N1,59538,sortie-cfb5b57e-acbc-4597-9f57-5ab998e5dfb0,https://biolit.fr/sorties/sortie-cfb5b57e-acbc-4597-9f57-5ab998e5dfb0/,Treza13,,8/18/2018 0:00,9.0000000,10.0000000,43.183516000000,6.594966000000,,Plage de Gigaro,42925,observation-cfb5b57e-acbc-4597-9f57-5ab998e5dfb0,https://biolit.fr/observations/observation-cfb5b57e-acbc-4597-9f57-5ab998e5dfb0/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180818 Raie Pastenague (1).jpg,,FALSE, +N1,59538,sortie-cfb5b57e-acbc-4597-9f57-5ab998e5dfb0,https://biolit.fr/sorties/sortie-cfb5b57e-acbc-4597-9f57-5ab998e5dfb0/,Treza13,,8/18/2018 0:00,9.0000000,10.0000000,43.183516000000,6.594966000000,,Plage de Gigaro,42927,observation-cfb5b57e-acbc-4597-9f57-5ab998e5dfb0-2,https://biolit.fr/observations/observation-cfb5b57e-acbc-4597-9f57-5ab998e5dfb0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180818 Raie Pastenague (2).jpg,,FALSE, +N1,59539,sortie-ec578044-73c5-48fd-abd2-c2814d3fd5a4,https://biolit.fr/sorties/sortie-ec578044-73c5-48fd-abd2-c2814d3fd5a4/,Treza13,,9/16/2018 0:00,10.0000000,14.0000000,43.013277000000,6.390024000000,,Parc National de Port Cros,42929,observation-ec578044-73c5-48fd-abd2-c2814d3fd5a4,https://biolit.fr/observations/observation-ec578044-73c5-48fd-abd2-c2814d3fd5a4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180808 Merle (1).jpg,,FALSE, +N1,59540,sortie-f8d165ab-a4f5-4f25-8770-2f838f9f24ba,https://biolit.fr/sorties/sortie-f8d165ab-a4f5-4f25-8770-2f838f9f24ba/,Treza13,,08/08/2018,11.0000000,14.0000000,42.989384000000,6.39683700000,,Parc National de Port Cros,42931,observation-f8d165ab-a4f5-4f25-8770-2f838f9f24ba,https://biolit.fr/observations/observation-f8d165ab-a4f5-4f25-8770-2f838f9f24ba/,Flabellina affinis,Flabelline mauve,,https://biolit.fr/wp-content/uploads/2023/07/20180808 Flabelline Mauve (1).jpg,,TRUE, +N1,59541,sortie-72947e94-5a3d-42f8-8fdd-e5661086cb29,https://biolit.fr/sorties/sortie-72947e94-5a3d-42f8-8fdd-e5661086cb29/,Treza13,,08/06/2018,7.0000000,14.0000000,43.185749000000,6.579937000000,,Plage de Sylvabelle,42933,observation-72947e94-5a3d-42f8-8fdd-e5661086cb29,https://biolit.fr/observations/observation-72947e94-5a3d-42f8-8fdd-e5661086cb29/,Sciaena umbra,Corb commun,,https://biolit.fr/wp-content/uploads/2023/07/20180806 Corb .jpg,,TRUE, +N1,59542,sortie-589e0d3c-89d8-4edf-9ce1-b25f89004fd8,https://biolit.fr/sorties/sortie-589e0d3c-89d8-4edf-9ce1-b25f89004fd8/,Les 4 Chats,,9/15/2018 0:00,9.0000000,11.0000000,43.239899000000,5.362366000000,,Plage du Bain des Dames 13008 Marseille,42935,observation-589e0d3c-89d8-4edf-9ce1-b25f89004fd8,https://biolit.fr/observations/observation-589e0d3c-89d8-4edf-9ce1-b25f89004fd8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2461-scaled.jpg,,FALSE, +N1,59542,sortie-589e0d3c-89d8-4edf-9ce1-b25f89004fd8,https://biolit.fr/sorties/sortie-589e0d3c-89d8-4edf-9ce1-b25f89004fd8/,Les 4 Chats,,9/15/2018 0:00,9.0000000,11.0000000,43.239899000000,5.362366000000,,Plage du Bain des Dames 13008 Marseille,42937,observation-589e0d3c-89d8-4edf-9ce1-b25f89004fd8-2,https://biolit.fr/observations/observation-589e0d3c-89d8-4edf-9ce1-b25f89004fd8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180915_100148104-scaled.jpg,,FALSE, +N1,59542,sortie-589e0d3c-89d8-4edf-9ce1-b25f89004fd8,https://biolit.fr/sorties/sortie-589e0d3c-89d8-4edf-9ce1-b25f89004fd8/,Les 4 Chats,,9/15/2018 0:00,9.0000000,11.0000000,43.239899000000,5.362366000000,,Plage du Bain des Dames 13008 Marseille,42939,observation-589e0d3c-89d8-4edf-9ce1-b25f89004fd8-3,https://biolit.fr/observations/observation-589e0d3c-89d8-4edf-9ce1-b25f89004fd8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180915_093604589-scaled.jpg,,FALSE, +N1,59542,sortie-589e0d3c-89d8-4edf-9ce1-b25f89004fd8,https://biolit.fr/sorties/sortie-589e0d3c-89d8-4edf-9ce1-b25f89004fd8/,Les 4 Chats,,9/15/2018 0:00,9.0000000,11.0000000,43.239899000000,5.362366000000,,Plage du Bain des Dames 13008 Marseille,42941,observation-589e0d3c-89d8-4edf-9ce1-b25f89004fd8-4,https://biolit.fr/observations/observation-589e0d3c-89d8-4edf-9ce1-b25f89004fd8-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180915_095226693-scaled.jpg,,FALSE, +N1,59542,sortie-589e0d3c-89d8-4edf-9ce1-b25f89004fd8,https://biolit.fr/sorties/sortie-589e0d3c-89d8-4edf-9ce1-b25f89004fd8/,Les 4 Chats,,9/15/2018 0:00,9.0000000,11.0000000,43.239899000000,5.362366000000,,Plage du Bain des Dames 13008 Marseille,42943,observation-589e0d3c-89d8-4edf-9ce1-b25f89004fd8-5,https://biolit.fr/observations/observation-589e0d3c-89d8-4edf-9ce1-b25f89004fd8-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20180916-WA0008.jpg,,FALSE, +N1,59542,sortie-589e0d3c-89d8-4edf-9ce1-b25f89004fd8,https://biolit.fr/sorties/sortie-589e0d3c-89d8-4edf-9ce1-b25f89004fd8/,Les 4 Chats,,9/15/2018 0:00,9.0000000,11.0000000,43.239899000000,5.362366000000,,Plage du Bain des Dames 13008 Marseille,42945,observation-589e0d3c-89d8-4edf-9ce1-b25f89004fd8-6,https://biolit.fr/observations/observation-589e0d3c-89d8-4edf-9ce1-b25f89004fd8-6/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20180916-WA0013.jpg,,TRUE, +N1,59543,sortie-7af7b67b-1a26-4796-ae73-b592a2b14d2b,https://biolit.fr/sorties/sortie-7af7b67b-1a26-4796-ae73-b592a2b14d2b/,Treza13,,09/09/2015,10.0000000,17.0000000,43.173173000000,6.605513000000,,Les trois caps,42947,observation-7af7b67b-1a26-4796-ae73-b592a2b14d2b,https://biolit.fr/observations/observation-7af7b67b-1a26-4796-ae73-b592a2b14d2b/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150909 Triptérygion Rouge .JPG,,FALSE, +N1,59544,sortie-31fb3119-10c0-4b5d-8c43-cc9f825f01f6,https://biolit.fr/sorties/sortie-31fb3119-10c0-4b5d-8c43-cc9f825f01f6/,Phil,,9/15/2018 0:00,11.0:25,11.0000000,47.83731100000,-4.176646000000,,Loctudy - Finistère,42949,observation-31fb3119-10c0-4b5d-8c43-cc9f825f01f6,https://biolit.fr/observations/observation-31fb3119-10c0-4b5d-8c43-cc9f825f01f6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120174.JPG,,FALSE, +N1,59544,sortie-31fb3119-10c0-4b5d-8c43-cc9f825f01f6,https://biolit.fr/sorties/sortie-31fb3119-10c0-4b5d-8c43-cc9f825f01f6/,Phil,,9/15/2018 0:00,11.0:25,11.0000000,47.83731100000,-4.176646000000,,Loctudy - Finistère,42951,observation-31fb3119-10c0-4b5d-8c43-cc9f825f01f6-2,https://biolit.fr/observations/observation-31fb3119-10c0-4b5d-8c43-cc9f825f01f6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120165.JPG,,FALSE, +N1,59544,sortie-31fb3119-10c0-4b5d-8c43-cc9f825f01f6,https://biolit.fr/sorties/sortie-31fb3119-10c0-4b5d-8c43-cc9f825f01f6/,Phil,,9/15/2018 0:00,11.0:25,11.0000000,47.83731100000,-4.176646000000,,Loctudy - Finistère,42953,observation-31fb3119-10c0-4b5d-8c43-cc9f825f01f6-3,https://biolit.fr/observations/observation-31fb3119-10c0-4b5d-8c43-cc9f825f01f6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120175.JPG,,FALSE, +N1,59544,sortie-31fb3119-10c0-4b5d-8c43-cc9f825f01f6,https://biolit.fr/sorties/sortie-31fb3119-10c0-4b5d-8c43-cc9f825f01f6/,Phil,,9/15/2018 0:00,11.0:25,11.0000000,47.83731100000,-4.176646000000,,Loctudy - Finistère,42955,observation-31fb3119-10c0-4b5d-8c43-cc9f825f01f6-4,https://biolit.fr/observations/observation-31fb3119-10c0-4b5d-8c43-cc9f825f01f6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120183.JPG,,FALSE, +N1,59544,sortie-31fb3119-10c0-4b5d-8c43-cc9f825f01f6,https://biolit.fr/sorties/sortie-31fb3119-10c0-4b5d-8c43-cc9f825f01f6/,Phil,,9/15/2018 0:00,11.0:25,11.0000000,47.83731100000,-4.176646000000,,Loctudy - Finistère,42957,observation-31fb3119-10c0-4b5d-8c43-cc9f825f01f6-5,https://biolit.fr/observations/observation-31fb3119-10c0-4b5d-8c43-cc9f825f01f6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120185.JPG,,FALSE, +N1,59545,sortie-a204c35a-c7aa-410e-9394-69656ecf5cea,https://biolit.fr/sorties/sortie-a204c35a-c7aa-410e-9394-69656ecf5cea/,Phil,,5/20/2018 0:00,14.0:55,15.0000000,47.797786000000,-4.176976000000,,Loctudy - Finistère,42959,observation-a204c35a-c7aa-410e-9394-69656ecf5cea,https://biolit.fr/observations/observation-a204c35a-c7aa-410e-9394-69656ecf5cea/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/P1110484_0.JPG,,TRUE, +N1,59545,sortie-a204c35a-c7aa-410e-9394-69656ecf5cea,https://biolit.fr/sorties/sortie-a204c35a-c7aa-410e-9394-69656ecf5cea/,Phil,,5/20/2018 0:00,14.0:55,15.0000000,47.797786000000,-4.176976000000,,Loctudy - Finistère,42961,observation-a204c35a-c7aa-410e-9394-69656ecf5cea-2,https://biolit.fr/observations/observation-a204c35a-c7aa-410e-9394-69656ecf5cea-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110480.JPG,,FALSE, +N1,59545,sortie-a204c35a-c7aa-410e-9394-69656ecf5cea,https://biolit.fr/sorties/sortie-a204c35a-c7aa-410e-9394-69656ecf5cea/,Phil,,5/20/2018 0:00,14.0:55,15.0000000,47.797786000000,-4.176976000000,,Loctudy - Finistère,42963,observation-a204c35a-c7aa-410e-9394-69656ecf5cea-3,https://biolit.fr/observations/observation-a204c35a-c7aa-410e-9394-69656ecf5cea-3/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1110492.JPG,,TRUE, +N1,59545,sortie-a204c35a-c7aa-410e-9394-69656ecf5cea,https://biolit.fr/sorties/sortie-a204c35a-c7aa-410e-9394-69656ecf5cea/,Phil,,5/20/2018 0:00,14.0:55,15.0000000,47.797786000000,-4.176976000000,,Loctudy - Finistère,42965,observation-a204c35a-c7aa-410e-9394-69656ecf5cea-4,https://biolit.fr/observations/observation-a204c35a-c7aa-410e-9394-69656ecf5cea-4/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1110488.JPG,,TRUE, +N1,59545,sortie-a204c35a-c7aa-410e-9394-69656ecf5cea,https://biolit.fr/sorties/sortie-a204c35a-c7aa-410e-9394-69656ecf5cea/,Phil,,5/20/2018 0:00,14.0:55,15.0000000,47.797786000000,-4.176976000000,,Loctudy - Finistère,42967,observation-a204c35a-c7aa-410e-9394-69656ecf5cea-5,https://biolit.fr/observations/observation-a204c35a-c7aa-410e-9394-69656ecf5cea-5/,Balanus crenatus,Balane crénelée,,https://biolit.fr/wp-content/uploads/2023/07/P1110497.JPG,,TRUE, +N1,59545,sortie-a204c35a-c7aa-410e-9394-69656ecf5cea,https://biolit.fr/sorties/sortie-a204c35a-c7aa-410e-9394-69656ecf5cea/,Phil,,5/20/2018 0:00,14.0:55,15.0000000,47.797786000000,-4.176976000000,,Loctudy - Finistère,42969,observation-a204c35a-c7aa-410e-9394-69656ecf5cea-6,https://biolit.fr/observations/observation-a204c35a-c7aa-410e-9394-69656ecf5cea-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110498.JPG,,FALSE, +N1,59546,sortie-3bb579d2-7698-464b-b8c1-27575dba722d,https://biolit.fr/sorties/sortie-3bb579d2-7698-464b-b8c1-27575dba722d/,Phil,,7/16/2018 0:00,12.0000000,12.0:35,47.80793700000,-3.713113000000,,Moêlan sur Mer - Finistère,42971,observation-3bb579d2-7698-464b-b8c1-27575dba722d,https://biolit.fr/observations/observation-3bb579d2-7698-464b-b8c1-27575dba722d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110704.JPG,,FALSE, +N1,59546,sortie-3bb579d2-7698-464b-b8c1-27575dba722d,https://biolit.fr/sorties/sortie-3bb579d2-7698-464b-b8c1-27575dba722d/,Phil,,7/16/2018 0:00,12.0000000,12.0:35,47.80793700000,-3.713113000000,,Moêlan sur Mer - Finistère,42973,observation-3bb579d2-7698-464b-b8c1-27575dba722d-2,https://biolit.fr/observations/observation-3bb579d2-7698-464b-b8c1-27575dba722d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110700_0.JPG,,FALSE, +N1,59546,sortie-3bb579d2-7698-464b-b8c1-27575dba722d,https://biolit.fr/sorties/sortie-3bb579d2-7698-464b-b8c1-27575dba722d/,Phil,,7/16/2018 0:00,12.0000000,12.0:35,47.80793700000,-3.713113000000,,Moêlan sur Mer - Finistère,42975,observation-3bb579d2-7698-464b-b8c1-27575dba722d-3,https://biolit.fr/observations/observation-3bb579d2-7698-464b-b8c1-27575dba722d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110699.JPG,,FALSE, +N1,59546,sortie-3bb579d2-7698-464b-b8c1-27575dba722d,https://biolit.fr/sorties/sortie-3bb579d2-7698-464b-b8c1-27575dba722d/,Phil,,7/16/2018 0:00,12.0000000,12.0:35,47.80793700000,-3.713113000000,,Moêlan sur Mer - Finistère,42977,observation-3bb579d2-7698-464b-b8c1-27575dba722d-4,https://biolit.fr/observations/observation-3bb579d2-7698-464b-b8c1-27575dba722d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110698_0.JPG,,FALSE, +N1,59546,sortie-3bb579d2-7698-464b-b8c1-27575dba722d,https://biolit.fr/sorties/sortie-3bb579d2-7698-464b-b8c1-27575dba722d/,Phil,,7/16/2018 0:00,12.0000000,12.0:35,47.80793700000,-3.713113000000,,Moêlan sur Mer - Finistère,42979,observation-3bb579d2-7698-464b-b8c1-27575dba722d-5,https://biolit.fr/observations/observation-3bb579d2-7698-464b-b8c1-27575dba722d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110697.JPG,,FALSE, +N1,59547,sortie-bf861478-8cea-4046-8666-b7fe3949dee6,https://biolit.fr/sorties/sortie-bf861478-8cea-4046-8666-b7fe3949dee6/,Nina Colin,,9/13/2018 0:00,9.0000000,11.0000000,48.642530000000,-2.072839000000,,Plage de Saint Enogat,42981,observation-bf861478-8cea-4046-8666-b7fe3949dee6,https://biolit.fr/observations/observation-bf861478-8cea-4046-8666-b7fe3949dee6/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_0539-scaled.jpg,,TRUE, +N1,59547,sortie-bf861478-8cea-4046-8666-b7fe3949dee6,https://biolit.fr/sorties/sortie-bf861478-8cea-4046-8666-b7fe3949dee6/,Nina Colin,,9/13/2018 0:00,9.0000000,11.0000000,48.642530000000,-2.072839000000,,Plage de Saint Enogat,42983,observation-bf861478-8cea-4046-8666-b7fe3949dee6-2,https://biolit.fr/observations/observation-bf861478-8cea-4046-8666-b7fe3949dee6-2/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0535-scaled.jpg,,TRUE, +N1,59547,sortie-bf861478-8cea-4046-8666-b7fe3949dee6,https://biolit.fr/sorties/sortie-bf861478-8cea-4046-8666-b7fe3949dee6/,Nina Colin,,9/13/2018 0:00,9.0000000,11.0000000,48.642530000000,-2.072839000000,,Plage de Saint Enogat,42985,observation-bf861478-8cea-4046-8666-b7fe3949dee6-3,https://biolit.fr/observations/observation-bf861478-8cea-4046-8666-b7fe3949dee6-3/,Aplidium elegans,Fraise de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0533-scaled.jpg,,TRUE, +N1,59547,sortie-bf861478-8cea-4046-8666-b7fe3949dee6,https://biolit.fr/sorties/sortie-bf861478-8cea-4046-8666-b7fe3949dee6/,Nina Colin,,9/13/2018 0:00,9.0000000,11.0000000,48.642530000000,-2.072839000000,,Plage de Saint Enogat,42987,observation-bf861478-8cea-4046-8666-b7fe3949dee6-4,https://biolit.fr/observations/observation-bf861478-8cea-4046-8666-b7fe3949dee6-4/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1390-scaled.jpg,,TRUE, +N1,59547,sortie-bf861478-8cea-4046-8666-b7fe3949dee6,https://biolit.fr/sorties/sortie-bf861478-8cea-4046-8666-b7fe3949dee6/,Nina Colin,,9/13/2018 0:00,9.0000000,11.0000000,48.642530000000,-2.072839000000,,Plage de Saint Enogat,42989,observation-bf861478-8cea-4046-8666-b7fe3949dee6-5,https://biolit.fr/observations/observation-bf861478-8cea-4046-8666-b7fe3949dee6-5/,Haliclona (Haliclona) simulans,Eponge tubes de fer,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1388-scaled.jpg,,TRUE, +N1,59547,sortie-bf861478-8cea-4046-8666-b7fe3949dee6,https://biolit.fr/sorties/sortie-bf861478-8cea-4046-8666-b7fe3949dee6/,Nina Colin,,9/13/2018 0:00,9.0000000,11.0000000,48.642530000000,-2.072839000000,,Plage de Saint Enogat,42991,observation-bf861478-8cea-4046-8666-b7fe3949dee6-6,https://biolit.fr/observations/observation-bf861478-8cea-4046-8666-b7fe3949dee6-6/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1385-scaled.jpg,,TRUE, +N1,59547,sortie-bf861478-8cea-4046-8666-b7fe3949dee6,https://biolit.fr/sorties/sortie-bf861478-8cea-4046-8666-b7fe3949dee6/,Nina Colin,,9/13/2018 0:00,9.0000000,11.0000000,48.642530000000,-2.072839000000,,Plage de Saint Enogat,42993,observation-bf861478-8cea-4046-8666-b7fe3949dee6-7,https://biolit.fr/observations/observation-bf861478-8cea-4046-8666-b7fe3949dee6-7/,Botrylloides diegensis,Botrylle de San Diego,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1378-scaled.jpg,,TRUE, +N1,59547,sortie-bf861478-8cea-4046-8666-b7fe3949dee6,https://biolit.fr/sorties/sortie-bf861478-8cea-4046-8666-b7fe3949dee6/,Nina Colin,,9/13/2018 0:00,9.0000000,11.0000000,48.642530000000,-2.072839000000,,Plage de Saint Enogat,42995,observation-bf861478-8cea-4046-8666-b7fe3949dee6-8,https://biolit.fr/observations/observation-bf861478-8cea-4046-8666-b7fe3949dee6-8/,Hymeniacidon perlevis,Eponge-miette de pain,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1386-scaled.jpg,,TRUE, +N1,59547,sortie-bf861478-8cea-4046-8666-b7fe3949dee6,https://biolit.fr/sorties/sortie-bf861478-8cea-4046-8666-b7fe3949dee6/,Nina Colin,,9/13/2018 0:00,9.0000000,11.0000000,48.642530000000,-2.072839000000,,Plage de Saint Enogat,42997,observation-bf861478-8cea-4046-8666-b7fe3949dee6-9,https://biolit.fr/observations/observation-bf861478-8cea-4046-8666-b7fe3949dee6-9/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1369-scaled.jpg,,TRUE, +N1,59547,sortie-bf861478-8cea-4046-8666-b7fe3949dee6,https://biolit.fr/sorties/sortie-bf861478-8cea-4046-8666-b7fe3949dee6/,Nina Colin,,9/13/2018 0:00,9.0000000,11.0000000,48.642530000000,-2.072839000000,,Plage de Saint Enogat,42999,observation-bf861478-8cea-4046-8666-b7fe3949dee6-10,https://biolit.fr/observations/observation-bf861478-8cea-4046-8666-b7fe3949dee6-10/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1356-scaled.jpg,,TRUE, +N1,59547,sortie-bf861478-8cea-4046-8666-b7fe3949dee6,https://biolit.fr/sorties/sortie-bf861478-8cea-4046-8666-b7fe3949dee6/,Nina Colin,,9/13/2018 0:00,9.0000000,11.0000000,48.642530000000,-2.072839000000,,Plage de Saint Enogat,43001,observation-bf861478-8cea-4046-8666-b7fe3949dee6-11,https://biolit.fr/observations/observation-bf861478-8cea-4046-8666-b7fe3949dee6-11/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1350-scaled.jpg,,TRUE, +N1,59547,sortie-bf861478-8cea-4046-8666-b7fe3949dee6,https://biolit.fr/sorties/sortie-bf861478-8cea-4046-8666-b7fe3949dee6/,Nina Colin,,9/13/2018 0:00,9.0000000,11.0000000,48.642530000000,-2.072839000000,,Plage de Saint Enogat,43003,observation-bf861478-8cea-4046-8666-b7fe3949dee6-12,https://biolit.fr/observations/observation-bf861478-8cea-4046-8666-b7fe3949dee6-12/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1341-scaled.jpg,,TRUE, +N1,59548,sortie-098645cc-ee5d-45e6-b450-386564404849,https://biolit.fr/sorties/sortie-098645cc-ee5d-45e6-b450-386564404849/,Phil,,8/24/2018 0:00,13.0000000,13.000005,48.032479000000,-4.848005000000,,Île-de-Sein - Finistère,43005,observation-098645cc-ee5d-45e6-b450-386564404849,https://biolit.fr/observations/observation-098645cc-ee5d-45e6-b450-386564404849/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120072_0.JPG,,FALSE, +N1,59548,sortie-098645cc-ee5d-45e6-b450-386564404849,https://biolit.fr/sorties/sortie-098645cc-ee5d-45e6-b450-386564404849/,Phil,,8/24/2018 0:00,13.0000000,13.000005,48.032479000000,-4.848005000000,,Île-de-Sein - Finistère,43007,observation-098645cc-ee5d-45e6-b450-386564404849-2,https://biolit.fr/observations/observation-098645cc-ee5d-45e6-b450-386564404849-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120074_0.JPG,,FALSE, +N1,59548,sortie-098645cc-ee5d-45e6-b450-386564404849,https://biolit.fr/sorties/sortie-098645cc-ee5d-45e6-b450-386564404849/,Phil,,8/24/2018 0:00,13.0000000,13.000005,48.032479000000,-4.848005000000,,Île-de-Sein - Finistère,43009,observation-098645cc-ee5d-45e6-b450-386564404849-3,https://biolit.fr/observations/observation-098645cc-ee5d-45e6-b450-386564404849-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120075.JPG,,FALSE, +N1,59548,sortie-098645cc-ee5d-45e6-b450-386564404849,https://biolit.fr/sorties/sortie-098645cc-ee5d-45e6-b450-386564404849/,Phil,,8/24/2018 0:00,13.0000000,13.000005,48.032479000000,-4.848005000000,,Île-de-Sein - Finistère,43011,observation-098645cc-ee5d-45e6-b450-386564404849-4,https://biolit.fr/observations/observation-098645cc-ee5d-45e6-b450-386564404849-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120076.JPG,,FALSE, +N1,59548,sortie-098645cc-ee5d-45e6-b450-386564404849,https://biolit.fr/sorties/sortie-098645cc-ee5d-45e6-b450-386564404849/,Phil,,8/24/2018 0:00,13.0000000,13.000005,48.032479000000,-4.848005000000,,Île-de-Sein - Finistère,43013,observation-098645cc-ee5d-45e6-b450-386564404849-5,https://biolit.fr/observations/observation-098645cc-ee5d-45e6-b450-386564404849-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120077.JPG,,FALSE, +N1,59548,sortie-098645cc-ee5d-45e6-b450-386564404849,https://biolit.fr/sorties/sortie-098645cc-ee5d-45e6-b450-386564404849/,Phil,,8/24/2018 0:00,13.0000000,13.000005,48.032479000000,-4.848005000000,,Île-de-Sein - Finistère,43015,observation-098645cc-ee5d-45e6-b450-386564404849-6,https://biolit.fr/observations/observation-098645cc-ee5d-45e6-b450-386564404849-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120078.JPG,,FALSE, +N1,59549,sortie-248ca4c0-c4e9-4e1f-a014-824f59762ec6,https://biolit.fr/sorties/sortie-248ca4c0-c4e9-4e1f-a014-824f59762ec6/,Phil,,09/08/2018,12.000005,12.0000000,47.869404000000,-3.912195000000,,Concarneau - Finistère,43017,observation-248ca4c0-c4e9-4e1f-a014-824f59762ec6,https://biolit.fr/observations/observation-248ca4c0-c4e9-4e1f-a014-824f59762ec6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180908_120424.jpg,,FALSE, +N1,59549,sortie-248ca4c0-c4e9-4e1f-a014-824f59762ec6,https://biolit.fr/sorties/sortie-248ca4c0-c4e9-4e1f-a014-824f59762ec6/,Phil,,09/08/2018,12.000005,12.0000000,47.869404000000,-3.912195000000,,Concarneau - Finistère,43019,observation-248ca4c0-c4e9-4e1f-a014-824f59762ec6-2,https://biolit.fr/observations/observation-248ca4c0-c4e9-4e1f-a014-824f59762ec6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180908_120527.jpg,,FALSE, +N1,59549,sortie-248ca4c0-c4e9-4e1f-a014-824f59762ec6,https://biolit.fr/sorties/sortie-248ca4c0-c4e9-4e1f-a014-824f59762ec6/,Phil,,09/08/2018,12.000005,12.0000000,47.869404000000,-3.912195000000,,Concarneau - Finistère,43021,observation-248ca4c0-c4e9-4e1f-a014-824f59762ec6-3,https://biolit.fr/observations/observation-248ca4c0-c4e9-4e1f-a014-824f59762ec6-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180908_120642.jpg,,TRUE, +N1,59549,sortie-248ca4c0-c4e9-4e1f-a014-824f59762ec6,https://biolit.fr/sorties/sortie-248ca4c0-c4e9-4e1f-a014-824f59762ec6/,Phil,,09/08/2018,12.000005,12.0000000,47.869404000000,-3.912195000000,,Concarneau - Finistère,43023,observation-248ca4c0-c4e9-4e1f-a014-824f59762ec6-4,https://biolit.fr/observations/observation-248ca4c0-c4e9-4e1f-a014-824f59762ec6-4/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/20180908_121030.jpg,,TRUE, +N1,59550,sortie-14cd024e-fdb3-422f-8ea4-b45cbc609192,https://biolit.fr/sorties/sortie-14cd024e-fdb3-422f-8ea4-b45cbc609192/,Nina Colin,,09/11/2018,10.0000000,12.0000000,48.635341000000,-2.141286000000,,Plage du Port Hue,43025,observation-14cd024e-fdb3-422f-8ea4-b45cbc609192,https://biolit.fr/observations/observation-14cd024e-fdb3-422f-8ea4-b45cbc609192/,,,,https://biolit.fr/wp-content/uploads/2023/07/anemone-scaled.jpg,,FALSE, +N1,59550,sortie-14cd024e-fdb3-422f-8ea4-b45cbc609192,https://biolit.fr/sorties/sortie-14cd024e-fdb3-422f-8ea4-b45cbc609192/,Nina Colin,,09/11/2018,10.0000000,12.0000000,48.635341000000,-2.141286000000,,Plage du Port Hue,43026,observation-14cd024e-fdb3-422f-8ea4-b45cbc609192-2,https://biolit.fr/observations/observation-14cd024e-fdb3-422f-8ea4-b45cbc609192-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/file-3-scaled.jpeg,,FALSE, +N1,59551,sortie-c51f55c0-336f-46b9-9c8d-32fd75cbbdcd,https://biolit.fr/sorties/sortie-c51f55c0-336f-46b9-9c8d-32fd75cbbdcd/,Phil,,7/16/2018 0:00,12.0:15,12.0:25,47.8087190000,-3.712224000000,,Moélan sur Mer - Finistère,43028,observation-c51f55c0-336f-46b9-9c8d-32fd75cbbdcd,https://biolit.fr/observations/observation-c51f55c0-336f-46b9-9c8d-32fd75cbbdcd/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110682.JPG,,FALSE, +N1,59551,sortie-c51f55c0-336f-46b9-9c8d-32fd75cbbdcd,https://biolit.fr/sorties/sortie-c51f55c0-336f-46b9-9c8d-32fd75cbbdcd/,Phil,,7/16/2018 0:00,12.0:15,12.0:25,47.8087190000,-3.712224000000,,Moélan sur Mer - Finistère,43030,observation-c51f55c0-336f-46b9-9c8d-32fd75cbbdcd-2,https://biolit.fr/observations/observation-c51f55c0-336f-46b9-9c8d-32fd75cbbdcd-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110683_0.JPG,,FALSE, +N1,59551,sortie-c51f55c0-336f-46b9-9c8d-32fd75cbbdcd,https://biolit.fr/sorties/sortie-c51f55c0-336f-46b9-9c8d-32fd75cbbdcd/,Phil,,7/16/2018 0:00,12.0:15,12.0:25,47.8087190000,-3.712224000000,,Moélan sur Mer - Finistère,43032,observation-c51f55c0-336f-46b9-9c8d-32fd75cbbdcd-3,https://biolit.fr/observations/observation-c51f55c0-336f-46b9-9c8d-32fd75cbbdcd-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110687.JPG,,FALSE, +N1,59551,sortie-c51f55c0-336f-46b9-9c8d-32fd75cbbdcd,https://biolit.fr/sorties/sortie-c51f55c0-336f-46b9-9c8d-32fd75cbbdcd/,Phil,,7/16/2018 0:00,12.0:15,12.0:25,47.8087190000,-3.712224000000,,Moélan sur Mer - Finistère,43034,observation-c51f55c0-336f-46b9-9c8d-32fd75cbbdcd-4,https://biolit.fr/observations/observation-c51f55c0-336f-46b9-9c8d-32fd75cbbdcd-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110694_0.JPG,,FALSE, +N1,59552,sortie-7521c793-1b5b-4133-8dbf-5dbe48f5c298,https://biolit.fr/sorties/sortie-7521c793-1b5b-4133-8dbf-5dbe48f5c298/,Phil,,7/22/2018 0:00,11.0000000,11.0000000,47.709081000000,-3.995148000000,,Fouesnant - Finistère,43036,observation-7521c793-1b5b-4133-8dbf-5dbe48f5c298,https://biolit.fr/observations/observation-7521c793-1b5b-4133-8dbf-5dbe48f5c298/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110878.JPG,,FALSE, +N1,59552,sortie-7521c793-1b5b-4133-8dbf-5dbe48f5c298,https://biolit.fr/sorties/sortie-7521c793-1b5b-4133-8dbf-5dbe48f5c298/,Phil,,7/22/2018 0:00,11.0000000,11.0000000,47.709081000000,-3.995148000000,,Fouesnant - Finistère,43038,observation-7521c793-1b5b-4133-8dbf-5dbe48f5c298-2,https://biolit.fr/observations/observation-7521c793-1b5b-4133-8dbf-5dbe48f5c298-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110879.JPG,,FALSE, +N1,59553,sortie-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b,https://biolit.fr/sorties/sortie-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b/,Phil,,5/20/2018 0:00,14.0:35,14.0000000,47.798082000000,-4.17883800000,,Loctudy - Finistère,43040,observation-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b,https://biolit.fr/observations/observation-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110473.JPG,,TRUE, +N1,59553,sortie-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b,https://biolit.fr/sorties/sortie-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b/,Phil,,5/20/2018 0:00,14.0:35,14.0000000,47.798082000000,-4.17883800000,,Loctudy - Finistère,43042,observation-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b-2,https://biolit.fr/observations/observation-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110474.JPG,,FALSE, +N1,59553,sortie-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b,https://biolit.fr/sorties/sortie-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b/,Phil,,5/20/2018 0:00,14.0:35,14.0000000,47.798082000000,-4.17883800000,,Loctudy - Finistère,43044,observation-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b-3,https://biolit.fr/observations/observation-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b-3/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1110475.JPG,,TRUE, +N1,59553,sortie-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b,https://biolit.fr/sorties/sortie-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b/,Phil,,5/20/2018 0:00,14.0:35,14.0000000,47.798082000000,-4.17883800000,,Loctudy - Finistère,43046,observation-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b-4,https://biolit.fr/observations/observation-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110476.JPG,,FALSE, +N1,59553,sortie-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b,https://biolit.fr/sorties/sortie-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b/,Phil,,5/20/2018 0:00,14.0:35,14.0000000,47.798082000000,-4.17883800000,,Loctudy - Finistère,43048,observation-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b-5,https://biolit.fr/observations/observation-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110477.JPG,,FALSE, +N1,59553,sortie-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b,https://biolit.fr/sorties/sortie-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b/,Phil,,5/20/2018 0:00,14.0:35,14.0000000,47.798082000000,-4.17883800000,,Loctudy - Finistère,43050,observation-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b-6,https://biolit.fr/observations/observation-43ebb81e-27b4-4908-ab2e-ebfe6c2f516b-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110478.JPG,,FALSE, +N1,59554,sortie-e55c97f3-c68c-4c92-b7d3-66d210f63027,https://biolit.fr/sorties/sortie-e55c97f3-c68c-4c92-b7d3-66d210f63027/,Phil,,09/09/2018,11.0:55,12.0000000,47.869568000000,-3.912172000000,,Concarneau - Finistère,43052,observation-e55c97f3-c68c-4c92-b7d3-66d210f63027,https://biolit.fr/observations/observation-e55c97f3-c68c-4c92-b7d3-66d210f63027/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180908_115837.jpg,,FALSE, +N1,59554,sortie-e55c97f3-c68c-4c92-b7d3-66d210f63027,https://biolit.fr/sorties/sortie-e55c97f3-c68c-4c92-b7d3-66d210f63027/,Phil,,09/09/2018,11.0:55,12.0000000,47.869568000000,-3.912172000000,,Concarneau - Finistère,43054,observation-e55c97f3-c68c-4c92-b7d3-66d210f63027-2,https://biolit.fr/observations/observation-e55c97f3-c68c-4c92-b7d3-66d210f63027-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180908_115842.jpg,,FALSE, +N1,59554,sortie-e55c97f3-c68c-4c92-b7d3-66d210f63027,https://biolit.fr/sorties/sortie-e55c97f3-c68c-4c92-b7d3-66d210f63027/,Phil,,09/09/2018,11.0:55,12.0000000,47.869568000000,-3.912172000000,,Concarneau - Finistère,43056,observation-e55c97f3-c68c-4c92-b7d3-66d210f63027-3,https://biolit.fr/observations/observation-e55c97f3-c68c-4c92-b7d3-66d210f63027-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180908_115902.jpg,,FALSE, +N1,59554,sortie-e55c97f3-c68c-4c92-b7d3-66d210f63027,https://biolit.fr/sorties/sortie-e55c97f3-c68c-4c92-b7d3-66d210f63027/,Phil,,09/09/2018,11.0:55,12.0000000,47.869568000000,-3.912172000000,,Concarneau - Finistère,43058,observation-e55c97f3-c68c-4c92-b7d3-66d210f63027-4,https://biolit.fr/observations/observation-e55c97f3-c68c-4c92-b7d3-66d210f63027-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180908_115943.jpg,,FALSE, +N1,59554,sortie-e55c97f3-c68c-4c92-b7d3-66d210f63027,https://biolit.fr/sorties/sortie-e55c97f3-c68c-4c92-b7d3-66d210f63027/,Phil,,09/09/2018,11.0:55,12.0000000,47.869568000000,-3.912172000000,,Concarneau - Finistère,43060,observation-e55c97f3-c68c-4c92-b7d3-66d210f63027-5,https://biolit.fr/observations/observation-e55c97f3-c68c-4c92-b7d3-66d210f63027-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180908_115959.jpg,,FALSE, +N1,59555,sortie-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f,https://biolit.fr/sorties/sortie-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f/,Phil,,8/24/2018 0:00,12.0:55,13.0000000,48.032984000000,-4.848777000000,,Île de Sein - Finistère,43062,observation-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f,https://biolit.fr/observations/observation-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/P1120067.JPG,,TRUE, +N1,59555,sortie-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f,https://biolit.fr/sorties/sortie-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f/,Phil,,8/24/2018 0:00,12.0:55,13.0000000,48.032984000000,-4.848777000000,,Île de Sein - Finistère,43064,observation-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f-2,https://biolit.fr/observations/observation-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120068.JPG,,FALSE, +N1,59555,sortie-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f,https://biolit.fr/sorties/sortie-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f/,Phil,,8/24/2018 0:00,12.0:55,13.0000000,48.032984000000,-4.848777000000,,Île de Sein - Finistère,43066,observation-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f-3,https://biolit.fr/observations/observation-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120065.JPG,,FALSE, +N1,59555,sortie-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f,https://biolit.fr/sorties/sortie-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f/,Phil,,8/24/2018 0:00,12.0:55,13.0000000,48.032984000000,-4.848777000000,,Île de Sein - Finistère,43068,observation-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f-4,https://biolit.fr/observations/observation-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1120069_0.JPG,,TRUE, +N1,59555,sortie-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f,https://biolit.fr/sorties/sortie-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f/,Phil,,8/24/2018 0:00,12.0:55,13.0000000,48.032984000000,-4.848777000000,,Île de Sein - Finistère,43070,observation-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f-5,https://biolit.fr/observations/observation-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f-5/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/P1120070_0.JPG,,TRUE, +N1,59555,sortie-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f,https://biolit.fr/sorties/sortie-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f/,Phil,,8/24/2018 0:00,12.0:55,13.0000000,48.032984000000,-4.848777000000,,Île de Sein - Finistère,43072,observation-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f-6,https://biolit.fr/observations/observation-a90c9be2-6a52-42a6-872c-7a5eaaad7b8f-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120071_0.JPG,,FALSE, +N1,59556,sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39,https://biolit.fr/sorties/sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39/,Guillaume D,,8/30/2018 0:00,13.0000000,15.0000000,46.110301000000,-1.139030000000,,"Angoulins, Pointe du Chay",43074,observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39,https://biolit.fr/observations/observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180830_134354-scaled.jpg,,TRUE, +N1,59556,sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39,https://biolit.fr/sorties/sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39/,Guillaume D,,8/30/2018 0:00,13.0000000,15.0000000,46.110301000000,-1.139030000000,,"Angoulins, Pointe du Chay",43076,observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39-2,https://biolit.fr/observations/observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180830_135544-scaled.jpg,,FALSE, +N1,59556,sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39,https://biolit.fr/sorties/sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39/,Guillaume D,,8/30/2018 0:00,13.0000000,15.0000000,46.110301000000,-1.139030000000,,"Angoulins, Pointe du Chay",43078,observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39-3,https://biolit.fr/observations/observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180830_142848-scaled.jpg,,TRUE, +N1,59556,sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39,https://biolit.fr/sorties/sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39/,Guillaume D,,8/30/2018 0:00,13.0000000,15.0000000,46.110301000000,-1.139030000000,,"Angoulins, Pointe du Chay",43080,observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39-4,https://biolit.fr/observations/observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39-4/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180830_142916-scaled.jpg,,TRUE, +N1,59556,sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39,https://biolit.fr/sorties/sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39/,Guillaume D,,8/30/2018 0:00,13.0000000,15.0000000,46.110301000000,-1.139030000000,,"Angoulins, Pointe du Chay",43082,observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39-5,https://biolit.fr/observations/observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39-5/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180830_143118_5mo.jpg,,TRUE, +N1,59556,sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39,https://biolit.fr/sorties/sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39/,Guillaume D,,8/30/2018 0:00,13.0000000,15.0000000,46.110301000000,-1.139030000000,,"Angoulins, Pointe du Chay",43084,observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39-6,https://biolit.fr/observations/observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39-6/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180830_143143-scaled.jpg,,TRUE, +N1,59556,sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39,https://biolit.fr/sorties/sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39/,Guillaume D,,8/30/2018 0:00,13.0000000,15.0000000,46.110301000000,-1.139030000000,,"Angoulins, Pointe du Chay",43086,observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39-7,https://biolit.fr/observations/observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180830_144916-scaled.jpg,,FALSE, +N1,59556,sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39,https://biolit.fr/sorties/sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39/,Guillaume D,,8/30/2018 0:00,13.0000000,15.0000000,46.110301000000,-1.139030000000,,"Angoulins, Pointe du Chay",43088,observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39-8,https://biolit.fr/observations/observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180830_145418-scaled.jpg,,FALSE, +N1,59556,sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39,https://biolit.fr/sorties/sortie-a0404e44-6643-4297-b0cc-b46ebf2ebe39/,Guillaume D,,8/30/2018 0:00,13.0000000,15.0000000,46.110301000000,-1.139030000000,,"Angoulins, Pointe du Chay",43090,observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39-9,https://biolit.fr/observations/observation-a0404e44-6643-4297-b0cc-b46ebf2ebe39-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180830_145745-scaled.jpg,,FALSE, +N1,59557,sortie-83b646b3-81f3-4445-b569-efa9ab2ebc57,https://biolit.fr/sorties/sortie-83b646b3-81f3-4445-b569-efa9ab2ebc57/,Environat,,09/01/2018,14.0000000,15.0000000,45.604166000000,-1.013148000000,,ile aux mouettes,43092,observation-83b646b3-81f3-4445-b569-efa9ab2ebc57,https://biolit.fr/observations/observation-83b646b3-81f3-4445-b569-efa9ab2ebc57/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0001_1.JPG,,FALSE, +N1,59558,sortie-81c02543-4b31-4964-8741-404f347b9a06,https://biolit.fr/sorties/sortie-81c02543-4b31-4964-8741-404f347b9a06/,Totom,,8/30/2018 0:00,15.0000000,17.0000000,47.276382000000,-2.49446600000,,"Batz sur mer (44740), plage valentin",43094,observation-81c02543-4b31-4964-8741-404f347b9a06,https://biolit.fr/observations/observation-81c02543-4b31-4964-8741-404f347b9a06/,Atelecyclus undecimdentatus,Grand crabe circulaire,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180830_170213-scaled.jpg,,TRUE, +N1,59558,sortie-81c02543-4b31-4964-8741-404f347b9a06,https://biolit.fr/sorties/sortie-81c02543-4b31-4964-8741-404f347b9a06/,Totom,,8/30/2018 0:00,15.0000000,17.0000000,47.276382000000,-2.49446600000,,"Batz sur mer (44740), plage valentin",43096,observation-81c02543-4b31-4964-8741-404f347b9a06-2,https://biolit.fr/observations/observation-81c02543-4b31-4964-8741-404f347b9a06-2/,Atelecyclus undecimdentatus,Grand crabe circulaire,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180830_170219-scaled.jpg,,TRUE, +N1,59558,sortie-81c02543-4b31-4964-8741-404f347b9a06,https://biolit.fr/sorties/sortie-81c02543-4b31-4964-8741-404f347b9a06/,Totom,,8/30/2018 0:00,15.0000000,17.0000000,47.276382000000,-2.49446600000,,"Batz sur mer (44740), plage valentin",43098,observation-81c02543-4b31-4964-8741-404f347b9a06-3,https://biolit.fr/observations/observation-81c02543-4b31-4964-8741-404f347b9a06-3/,Atelecyclus undecimdentatus,Grand crabe circulaire,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180830_170230-scaled.jpg,,TRUE, +N1,59558,sortie-81c02543-4b31-4964-8741-404f347b9a06,https://biolit.fr/sorties/sortie-81c02543-4b31-4964-8741-404f347b9a06/,Totom,,8/30/2018 0:00,15.0000000,17.0000000,47.276382000000,-2.49446600000,,"Batz sur mer (44740), plage valentin",43100,observation-81c02543-4b31-4964-8741-404f347b9a06-4,https://biolit.fr/observations/observation-81c02543-4b31-4964-8741-404f347b9a06-4/,Atelecyclus undecimdentatus,Grand crabe circulaire,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180830_170242_1-scaled.jpg,,TRUE, +N1,59559,sortie-22a8a38f-2d7c-40d0-adfb-e87d12017843,https://biolit.fr/sorties/sortie-22a8a38f-2d7c-40d0-adfb-e87d12017843/,Romuald VIALE - EXPENATURE,,8/30/2018 0:00,9.0000000,11.0000000,43.162680000000,5.614512000000,,La Piscine - Ile Verte,43102,observation-22a8a38f-2d7c-40d0-adfb-e87d12017843,https://biolit.fr/observations/observation-22a8a38f-2d7c-40d0-adfb-e87d12017843/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8292881.JPG,,FALSE, +N1,59559,sortie-22a8a38f-2d7c-40d0-adfb-e87d12017843,https://biolit.fr/sorties/sortie-22a8a38f-2d7c-40d0-adfb-e87d12017843/,Romuald VIALE - EXPENATURE,,8/30/2018 0:00,9.0000000,11.0000000,43.162680000000,5.614512000000,,La Piscine - Ile Verte,43104,observation-22a8a38f-2d7c-40d0-adfb-e87d12017843-2,https://biolit.fr/observations/observation-22a8a38f-2d7c-40d0-adfb-e87d12017843-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8292880.JPG,,FALSE, +N1,59559,sortie-22a8a38f-2d7c-40d0-adfb-e87d12017843,https://biolit.fr/sorties/sortie-22a8a38f-2d7c-40d0-adfb-e87d12017843/,Romuald VIALE - EXPENATURE,,8/30/2018 0:00,9.0000000,11.0000000,43.162680000000,5.614512000000,,La Piscine - Ile Verte,43106,observation-22a8a38f-2d7c-40d0-adfb-e87d12017843-3,https://biolit.fr/observations/observation-22a8a38f-2d7c-40d0-adfb-e87d12017843-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8292876.JPG,,FALSE, +N1,59559,sortie-22a8a38f-2d7c-40d0-adfb-e87d12017843,https://biolit.fr/sorties/sortie-22a8a38f-2d7c-40d0-adfb-e87d12017843/,Romuald VIALE - EXPENATURE,,8/30/2018 0:00,9.0000000,11.0000000,43.162680000000,5.614512000000,,La Piscine - Ile Verte,43108,observation-22a8a38f-2d7c-40d0-adfb-e87d12017843-4,https://biolit.fr/observations/observation-22a8a38f-2d7c-40d0-adfb-e87d12017843-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8292878.JPG,,FALSE, +N1,59560,sortie-720f63f2-4541-4e34-a626-c0b6efd06377,https://biolit.fr/sorties/sortie-720f63f2-4541-4e34-a626-c0b6efd06377/,Romuald VIALE - EXPENATURE,,8/30/2018 0:00,9.0000000,11.0000000,43.183363000000,5.620820000000,,Zone de mouillage Plages La Ciotat,43110,observation-720f63f2-4541-4e34-a626-c0b6efd06377,https://biolit.fr/observations/observation-720f63f2-4541-4e34-a626-c0b6efd06377/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8282850_0.JPG,,FALSE, +N1,59561,sortie-72b1e34b-3a37-415e-b950-498c7ddf3944,https://biolit.fr/sorties/sortie-72b1e34b-3a37-415e-b950-498c7ddf3944/,Romuald VIALE - EXPENATURE,,8/22/2018 0:00,11.0000000,11.0:25,43.159447000000,5.620423000000,,La Ciotat Calanque de Synerolles,43112,observation-72b1e34b-3a37-415e-b950-498c7ddf3944,https://biolit.fr/observations/observation-72b1e34b-3a37-415e-b950-498c7ddf3944/,,,,https://biolit.fr/wp-content/uploads/2023/07/KIMG0041.jpg,,FALSE, +N1,59562,sortie-4820779e-3e4f-45e2-9714-6285e9c7c140,https://biolit.fr/sorties/sortie-4820779e-3e4f-45e2-9714-6285e9c7c140/,Environat,,8/27/2018 0:00,11.0000000,12.0:25,45.630417000000,-1.064612000000,,plage de Saint Sordelin,43114,observation-4820779e-3e4f-45e2-9714-6285e9c7c140,https://biolit.fr/observations/observation-4820779e-3e4f-45e2-9714-6285e9c7c140/,,,,https://biolit.fr/wp-content/uploads/2023/07/27-08bd1.JPG,,FALSE, +N1,59562,sortie-4820779e-3e4f-45e2-9714-6285e9c7c140,https://biolit.fr/sorties/sortie-4820779e-3e4f-45e2-9714-6285e9c7c140/,Environat,,8/27/2018 0:00,11.0000000,12.0:25,45.630417000000,-1.064612000000,,plage de Saint Sordelin,43116,observation-4820779e-3e4f-45e2-9714-6285e9c7c140-2,https://biolit.fr/observations/observation-4820779e-3e4f-45e2-9714-6285e9c7c140-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/27-08bd2.JPG,,FALSE, +N1,59563,sortie-3af3c9d5-f0a3-4079-8835-a1ab48065f8b,https://biolit.fr/sorties/sortie-3af3c9d5-f0a3-4079-8835-a1ab48065f8b/,Nina Colin,,8/26/2018 0:00,14.0000000,16.0000000,48.641802000000,-2.07314500000,,Plage de Saint Enogat,43118,observation-3af3c9d5-f0a3-4079-8835-a1ab48065f8b,https://biolit.fr/observations/observation-3af3c9d5-f0a3-4079-8835-a1ab48065f8b/,Aplidium pallidum,Flocon pédonculé blanc,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0409-scaled.jpg,,TRUE, +N1,59563,sortie-3af3c9d5-f0a3-4079-8835-a1ab48065f8b,https://biolit.fr/sorties/sortie-3af3c9d5-f0a3-4079-8835-a1ab48065f8b/,Nina Colin,,8/26/2018 0:00,14.0000000,16.0000000,48.641802000000,-2.07314500000,,Plage de Saint Enogat,43120,observation-3af3c9d5-f0a3-4079-8835-a1ab48065f8b-2,https://biolit.fr/observations/observation-3af3c9d5-f0a3-4079-8835-a1ab48065f8b-2/,Hymeniacidon perlevis,Eponge-miette de pain,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0440-scaled.jpg,,TRUE, +N1,59563,sortie-3af3c9d5-f0a3-4079-8835-a1ab48065f8b,https://biolit.fr/sorties/sortie-3af3c9d5-f0a3-4079-8835-a1ab48065f8b/,Nina Colin,,8/26/2018 0:00,14.0000000,16.0000000,48.641802000000,-2.07314500000,,Plage de Saint Enogat,43122,observation-3af3c9d5-f0a3-4079-8835-a1ab48065f8b-3,https://biolit.fr/observations/observation-3af3c9d5-f0a3-4079-8835-a1ab48065f8b-3/,Aplidium punctum,Flocon pédonculé orange,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0422-scaled.jpg,,TRUE, +N1,59563,sortie-3af3c9d5-f0a3-4079-8835-a1ab48065f8b,https://biolit.fr/sorties/sortie-3af3c9d5-f0a3-4079-8835-a1ab48065f8b/,Nina Colin,,8/26/2018 0:00,14.0000000,16.0000000,48.641802000000,-2.07314500000,,Plage de Saint Enogat,43124,observation-3af3c9d5-f0a3-4079-8835-a1ab48065f8b-4,https://biolit.fr/observations/observation-3af3c9d5-f0a3-4079-8835-a1ab48065f8b-4/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0455-scaled.jpg,,TRUE, +N1,59563,sortie-3af3c9d5-f0a3-4079-8835-a1ab48065f8b,https://biolit.fr/sorties/sortie-3af3c9d5-f0a3-4079-8835-a1ab48065f8b/,Nina Colin,,8/26/2018 0:00,14.0000000,16.0000000,48.641802000000,-2.07314500000,,Plage de Saint Enogat,43126,observation-3af3c9d5-f0a3-4079-8835-a1ab48065f8b-5,https://biolit.fr/observations/observation-3af3c9d5-f0a3-4079-8835-a1ab48065f8b-5/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0452-scaled.jpg,,TRUE, +N1,59563,sortie-3af3c9d5-f0a3-4079-8835-a1ab48065f8b,https://biolit.fr/sorties/sortie-3af3c9d5-f0a3-4079-8835-a1ab48065f8b/,Nina Colin,,8/26/2018 0:00,14.0000000,16.0000000,48.641802000000,-2.07314500000,,Plage de Saint Enogat,43128,observation-3af3c9d5-f0a3-4079-8835-a1ab48065f8b-6,https://biolit.fr/observations/observation-3af3c9d5-f0a3-4079-8835-a1ab48065f8b-6/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0450-scaled.jpg,,TRUE, +N1,59564,sortie-1ee2214b-b4de-4068-a67e-9a65668646c3,https://biolit.fr/sorties/sortie-1ee2214b-b4de-4068-a67e-9a65668646c3/,Val',,8/25/2018 0:00,16.0000000,19.0000000,49.240773000000,-0.35960500000,,Saint Aubin sur mer,43130,observation-1ee2214b-b4de-4068-a67e-9a65668646c3,https://biolit.fr/observations/observation-1ee2214b-b4de-4068-a67e-9a65668646c3/,,,,https://biolit.fr/wp-content/uploads/2023/07/40043886_2071676163148178_8554410432163479552_n.jpg,,FALSE, +N1,59565,sortie-c3c68969-25d5-4e4e-83a2-4bf403440da1,https://biolit.fr/sorties/sortie-c3c68969-25d5-4e4e-83a2-4bf403440da1/,Val',,8/25/2018 0:00,16.0000000,19.0000000,49.240773000000,-0.35960500000,,Saint Aubin sur mer,43132,observation-c3c68969-25d5-4e4e-83a2-4bf403440da1,https://biolit.fr/observations/observation-c3c68969-25d5-4e4e-83a2-4bf403440da1/,,,,https://biolit.fr/wp-content/uploads/2023/07/40043886_2071676163148178_8554410432163479552_n.jpg,,FALSE, +N1,59566,sortie-38664f5d-17a1-48ce-b024-b51af2725e57,https://biolit.fr/sorties/sortie-38664f5d-17a1-48ce-b024-b51af2725e57/,Val',,8/25/2018 0:00,16.0000000,19.0000000,49.240773000000,-0.35960500000,,Saint Aubin sur mer,43133,observation-38664f5d-17a1-48ce-b024-b51af2725e57,https://biolit.fr/observations/observation-38664f5d-17a1-48ce-b024-b51af2725e57/,,,,https://biolit.fr/wp-content/uploads/2023/07/40043886_2071676163148178_8554410432163479552_n.jpg,,FALSE, +N1,59567,sortie-54173079-b54c-41cf-9d0b-6155248c5164,https://biolit.fr/sorties/sortie-54173079-b54c-41cf-9d0b-6155248c5164/,Environat,,8/25/2018 0:00,10.0000000,11.0000000,45.60412100000,-1.013195000000,,"ile aux mouettes,saint georges de didonne",43134,observation-54173079-b54c-41cf-9d0b-6155248c5164,https://biolit.fr/observations/observation-54173079-b54c-41cf-9d0b-6155248c5164/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0025bd.JPG,,FALSE, +N1,59567,sortie-54173079-b54c-41cf-9d0b-6155248c5164,https://biolit.fr/sorties/sortie-54173079-b54c-41cf-9d0b-6155248c5164/,Environat,,8/25/2018 0:00,10.0000000,11.0000000,45.60412100000,-1.013195000000,,"ile aux mouettes,saint georges de didonne",43136,observation-54173079-b54c-41cf-9d0b-6155248c5164-2,https://biolit.fr/observations/observation-54173079-b54c-41cf-9d0b-6155248c5164-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0022bd.JPG,,FALSE, +N1,59567,sortie-54173079-b54c-41cf-9d0b-6155248c5164,https://biolit.fr/sorties/sortie-54173079-b54c-41cf-9d0b-6155248c5164/,Environat,,8/25/2018 0:00,10.0000000,11.0000000,45.60412100000,-1.013195000000,,"ile aux mouettes,saint georges de didonne",43138,observation-54173079-b54c-41cf-9d0b-6155248c5164-3,https://biolit.fr/observations/observation-54173079-b54c-41cf-9d0b-6155248c5164-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0018bd.JPG,,FALSE, +N1,59567,sortie-54173079-b54c-41cf-9d0b-6155248c5164,https://biolit.fr/sorties/sortie-54173079-b54c-41cf-9d0b-6155248c5164/,Environat,,8/25/2018 0:00,10.0000000,11.0000000,45.60412100000,-1.013195000000,,"ile aux mouettes,saint georges de didonne",43140,observation-54173079-b54c-41cf-9d0b-6155248c5164-4,https://biolit.fr/observations/observation-54173079-b54c-41cf-9d0b-6155248c5164-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0011.JPG,,FALSE, +N1,59567,sortie-54173079-b54c-41cf-9d0b-6155248c5164,https://biolit.fr/sorties/sortie-54173079-b54c-41cf-9d0b-6155248c5164/,Environat,,8/25/2018 0:00,10.0000000,11.0000000,45.60412100000,-1.013195000000,,"ile aux mouettes,saint georges de didonne",43142,observation-54173079-b54c-41cf-9d0b-6155248c5164-5,https://biolit.fr/observations/observation-54173079-b54c-41cf-9d0b-6155248c5164-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0013.JPG,,FALSE, +N1,59567,sortie-54173079-b54c-41cf-9d0b-6155248c5164,https://biolit.fr/sorties/sortie-54173079-b54c-41cf-9d0b-6155248c5164/,Environat,,8/25/2018 0:00,10.0000000,11.0000000,45.60412100000,-1.013195000000,,"ile aux mouettes,saint georges de didonne",43144,observation-54173079-b54c-41cf-9d0b-6155248c5164-6,https://biolit.fr/observations/observation-54173079-b54c-41cf-9d0b-6155248c5164-6/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0014.JPG,,TRUE, +N1,59567,sortie-54173079-b54c-41cf-9d0b-6155248c5164,https://biolit.fr/sorties/sortie-54173079-b54c-41cf-9d0b-6155248c5164/,Environat,,8/25/2018 0:00,10.0000000,11.0000000,45.60412100000,-1.013195000000,,"ile aux mouettes,saint georges de didonne",43146,observation-54173079-b54c-41cf-9d0b-6155248c5164-7,https://biolit.fr/observations/observation-54173079-b54c-41cf-9d0b-6155248c5164-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0015.JPG,,FALSE, +N1,59568,sortie-06ce9f3c-4a88-40de-8c96-c1ca2051cd6c,https://biolit.fr/sorties/sortie-06ce9f3c-4a88-40de-8c96-c1ca2051cd6c/,club de la mer nice,,8/23/2018 0:00,14.0000000,17.0000000,43.690985000000,7.289632000000,,PORT DE NICE,43148,observation-06ce9f3c-4a88-40de-8c96-c1ca2051cd6c,https://biolit.fr/observations/observation-06ce9f3c-4a88-40de-8c96-c1ca2051cd6c/,,,,https://biolit.fr/wp-content/uploads/2023/07/MEDUSE OEUF AU PLAT.jpg,,FALSE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43150,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Lanice conchilega,Lanice,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0284-scaled.jpg,,TRUE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43152,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-2,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-2/,Saccharina latissima,Laminaire sucrée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0285-scaled.jpg,,TRUE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43154,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-3,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-3/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0302-scaled.jpg,,TRUE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43156,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-4,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0316-scaled.jpg,,FALSE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43158,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-5,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-5/,Pyura microcosmus,Petit microcosme,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0323-scaled.jpg,,TRUE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43160,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-6,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-6/,Opuntia ficus,Figuier de barbarie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0335-scaled.jpg,,TRUE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43161,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-7,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-7/,Hymeniacidon perlevis,Eponge-miette de pain,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0338-scaled.jpg,,TRUE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43163,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-8,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-8/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0349-scaled.jpg,,TRUE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43165,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-9,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-9/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0350-scaled.jpg,,TRUE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43167,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-10,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-10/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0359-scaled.jpg,,TRUE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43169,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-11,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-11/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0369-scaled.jpg,,TRUE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43171,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-12,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-12/,Trivia arctica,Grain de café rose,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0374-scaled.jpg,,TRUE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43173,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-13,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-13/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0382_0-scaled.jpg,,TRUE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43175,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-14,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-14/,Ciliata mustela,Motelle à 5 barbillons,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0383-scaled.jpg,,TRUE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43177,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-15,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-15/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0392_0-scaled.jpg,,TRUE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43179,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-16,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-16/,Ciliata mustela,Motelle à 5 barbillons,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0386_0-scaled.jpg,,TRUE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43181,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-17,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0326.JPG,,FALSE, +N1,59569,sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa,https://biolit.fr/sorties/sortie-ca702865-20c5-48fd-b2cf-aa83501a25fa/,Nina Colin,,8/14/2018 0:00,16.0000000,18.0000000,48.64840000000,-2.031412000000,,Saint Malo ,43183,observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-18,https://biolit.fr/observations/observation-ca702865-20c5-48fd-b2cf-aa83501a25fa-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0328-scaled.jpg,,FALSE, +N1,59570,sortie-763aa508-36cb-4f45-928e-d6e54668b949,https://biolit.fr/sorties/sortie-763aa508-36cb-4f45-928e-d6e54668b949/,CPIE Vallée de l'Orne,,7/16/2018 0:00,20.0000000,20.0000000,49.295565000000,-0.287920000000,,Colleville-Montgomery,43185,observation-763aa508-36cb-4f45-928e-d6e54668b949,https://biolit.fr/observations/observation-763aa508-36cb-4f45-928e-d6e54668b949/,,,,https://biolit.fr/wp-content/uploads/2023/07/Homard juvénile Colleville M BP compr-scaled.jpg,,FALSE, +N1,59571,sortie-2198fa5e-7205-4eb7-9355-bd7d05fa21d0,https://biolit.fr/sorties/sortie-2198fa5e-7205-4eb7-9355-bd7d05fa21d0/,CPIE Vallée de l'Orne,,7/17/2018 0:00,8.0000000,8.0:15,49.289286000000,-0.176474000000,,Merville-Franceville,43187,observation-2198fa5e-7205-4eb7-9355-bd7d05fa21d0,https://biolit.fr/observations/observation-2198fa5e-7205-4eb7-9355-bd7d05fa21d0/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/2023/07/Natice adulte et ponte BP compr-scaled.jpg,,TRUE, +N1,59572,sortie-1a998fd9-bf09-4fb9-b31b-7860f30b4876,https://biolit.fr/sorties/sortie-1a998fd9-bf09-4fb9-b31b-7860f30b4876/,CPIE Vallée de l'Orne,,08/10/2018,16.0000000,17.0000000,49.32161400000,-0.352502000000,,Luc-sur-Mer,43189,observation-1a998fd9-bf09-4fb9-b31b-7860f30b4876,https://biolit.fr/observations/observation-1a998fd9-bf09-4fb9-b31b-7860f30b4876/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Oeufs de Seiche estran Luc aout18 BP compr.jpg,,TRUE, +N1,59573,sortie-194f0e70-ae4d-4aa4-9337-8b8b55f18323,https://biolit.fr/sorties/sortie-194f0e70-ae4d-4aa4-9337-8b8b55f18323/,Fab8113,,08/12/2018,14.0000000,16.0000000,43.177043000000,5.370592000000,,Les Moyades,43191,observation-194f0e70-ae4d-4aa4-9337-8b8b55f18323,https://biolit.fr/observations/observation-194f0e70-ae4d-4aa4-9337-8b8b55f18323/,,,,https://biolit.fr/wp-content/uploads/2023/07/Banc de sars à tete noire-scaled.jpg,,FALSE, +N1,59573,sortie-194f0e70-ae4d-4aa4-9337-8b8b55f18323,https://biolit.fr/sorties/sortie-194f0e70-ae4d-4aa4-9337-8b8b55f18323/,Fab8113,,08/12/2018,14.0000000,16.0000000,43.177043000000,5.370592000000,,Les Moyades,43193,observation-194f0e70-ae4d-4aa4-9337-8b8b55f18323-2,https://biolit.fr/observations/observation-194f0e70-ae4d-4aa4-9337-8b8b55f18323-2/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/Padine queue de paon-scaled.jpg,,TRUE, +N1,59573,sortie-194f0e70-ae4d-4aa4-9337-8b8b55f18323,https://biolit.fr/sorties/sortie-194f0e70-ae4d-4aa4-9337-8b8b55f18323/,Fab8113,,08/12/2018,14.0000000,16.0000000,43.177043000000,5.370592000000,,Les Moyades,43195,observation-194f0e70-ae4d-4aa4-9337-8b8b55f18323-3,https://biolit.fr/observations/observation-194f0e70-ae4d-4aa4-9337-8b8b55f18323-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sar Commun-scaled.jpg,,FALSE, +N1,59573,sortie-194f0e70-ae4d-4aa4-9337-8b8b55f18323,https://biolit.fr/sorties/sortie-194f0e70-ae4d-4aa4-9337-8b8b55f18323/,Fab8113,,08/12/2018,14.0000000,16.0000000,43.177043000000,5.370592000000,,Les Moyades,43197,observation-194f0e70-ae4d-4aa4-9337-8b8b55f18323-4,https://biolit.fr/observations/observation-194f0e70-ae4d-4aa4-9337-8b8b55f18323-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mérou brun-scaled.jpg,,FALSE, +N1,59574,sortie-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf,https://biolit.fr/sorties/sortie-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf/,AMi42,,08/09/2018,8.0000000,10.0000000,46.140295000000,-1.17177700000,,"Plage des minimes, la Rochelle ",43199,observation-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf,https://biolit.fr/observations/observation-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180809_102756-scaled.jpg,,FALSE, +N1,59574,sortie-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf,https://biolit.fr/sorties/sortie-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf/,AMi42,,08/09/2018,8.0000000,10.0000000,46.140295000000,-1.17177700000,,"Plage des minimes, la Rochelle ",43201,observation-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf-2,https://biolit.fr/observations/observation-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180809_101534-scaled.jpg,,FALSE, +N1,59574,sortie-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf,https://biolit.fr/sorties/sortie-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf/,AMi42,,08/09/2018,8.0000000,10.0000000,46.140295000000,-1.17177700000,,"Plage des minimes, la Rochelle ",43203,observation-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf-3,https://biolit.fr/observations/observation-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf-3/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/20180809_100327-scaled.jpg,,TRUE, +N1,59574,sortie-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf,https://biolit.fr/sorties/sortie-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf/,AMi42,,08/09/2018,8.0000000,10.0000000,46.140295000000,-1.17177700000,,"Plage des minimes, la Rochelle ",43205,observation-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf-4,https://biolit.fr/observations/observation-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20180809_092627-scaled.jpg,,TRUE, +N1,59574,sortie-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf,https://biolit.fr/sorties/sortie-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf/,AMi42,,08/09/2018,8.0000000,10.0000000,46.140295000000,-1.17177700000,,"Plage des minimes, la Rochelle ",43207,observation-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf-5,https://biolit.fr/observations/observation-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf-5/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20180809_090038-scaled.jpg,,TRUE, +N1,59574,sortie-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf,https://biolit.fr/sorties/sortie-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf/,AMi42,,08/09/2018,8.0000000,10.0000000,46.140295000000,-1.17177700000,,"Plage des minimes, la Rochelle ",43209,observation-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf-6,https://biolit.fr/observations/observation-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf-6/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180809_093846_0-scaled.jpg,,TRUE, +N1,59574,sortie-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf,https://biolit.fr/sorties/sortie-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf/,AMi42,,08/09/2018,8.0000000,10.0000000,46.140295000000,-1.17177700000,,"Plage des minimes, la Rochelle ",43211,observation-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf-7,https://biolit.fr/observations/observation-2b72b7ec-f072-4cd6-9e2a-f779b3709fdf-7/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180809_094702-scaled.jpg,,TRUE, +N1,59575,sortie-ad7ef54f-e4a3-420e-8355-5d0aa76d3615,https://biolit.fr/sorties/sortie-ad7ef54f-e4a3-420e-8355-5d0aa76d3615/,stephfran,,08/09/2018,8.0000000,10.0000000,46.179046000000,-1.185776000000,,"Plage des Minimes, La Rochelle",43213,observation-ad7ef54f-e4a3-420e-8355-5d0aa76d3615,https://biolit.fr/observations/observation-ad7ef54f-e4a3-420e-8355-5d0aa76d3615/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7928-scaled.jpg,,FALSE, +N1,59575,sortie-ad7ef54f-e4a3-420e-8355-5d0aa76d3615,https://biolit.fr/sorties/sortie-ad7ef54f-e4a3-420e-8355-5d0aa76d3615/,stephfran,,08/09/2018,8.0000000,10.0000000,46.179046000000,-1.185776000000,,"Plage des Minimes, La Rochelle",43215,observation-ad7ef54f-e4a3-420e-8355-5d0aa76d3615-2,https://biolit.fr/observations/observation-ad7ef54f-e4a3-420e-8355-5d0aa76d3615-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7950-scaled.jpg,,FALSE, +N1,59575,sortie-ad7ef54f-e4a3-420e-8355-5d0aa76d3615,https://biolit.fr/sorties/sortie-ad7ef54f-e4a3-420e-8355-5d0aa76d3615/,stephfran,,08/09/2018,8.0000000,10.0000000,46.179046000000,-1.185776000000,,"Plage des Minimes, La Rochelle",43217,observation-ad7ef54f-e4a3-420e-8355-5d0aa76d3615-3,https://biolit.fr/observations/observation-ad7ef54f-e4a3-420e-8355-5d0aa76d3615-3/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7929-scaled.jpg,,TRUE, +N1,59575,sortie-ad7ef54f-e4a3-420e-8355-5d0aa76d3615,https://biolit.fr/sorties/sortie-ad7ef54f-e4a3-420e-8355-5d0aa76d3615/,stephfran,,08/09/2018,8.0000000,10.0000000,46.179046000000,-1.185776000000,,"Plage des Minimes, La Rochelle",43219,observation-ad7ef54f-e4a3-420e-8355-5d0aa76d3615-4,https://biolit.fr/observations/observation-ad7ef54f-e4a3-420e-8355-5d0aa76d3615-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7931-scaled.jpg,,FALSE, +N1,59575,sortie-ad7ef54f-e4a3-420e-8355-5d0aa76d3615,https://biolit.fr/sorties/sortie-ad7ef54f-e4a3-420e-8355-5d0aa76d3615/,stephfran,,08/09/2018,8.0000000,10.0000000,46.179046000000,-1.185776000000,,"Plage des Minimes, La Rochelle",43221,observation-ad7ef54f-e4a3-420e-8355-5d0aa76d3615-5,https://biolit.fr/observations/observation-ad7ef54f-e4a3-420e-8355-5d0aa76d3615-5/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7938-scaled.jpg,,TRUE, +N1,59575,sortie-ad7ef54f-e4a3-420e-8355-5d0aa76d3615,https://biolit.fr/sorties/sortie-ad7ef54f-e4a3-420e-8355-5d0aa76d3615/,stephfran,,08/09/2018,8.0000000,10.0000000,46.179046000000,-1.185776000000,,"Plage des Minimes, La Rochelle",43223,observation-ad7ef54f-e4a3-420e-8355-5d0aa76d3615-6,https://biolit.fr/observations/observation-ad7ef54f-e4a3-420e-8355-5d0aa76d3615-6/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7941-scaled.jpg,,TRUE, +N1,59576,sortie-6833999f-e90a-41ec-a9a2-00998911cf51,https://biolit.fr/sorties/sortie-6833999f-e90a-41ec-a9a2-00998911cf51/,Guillaume D,,08/01/2018,13.0000000,15.0000000,46.110177000000,-1.138712000000,,"Angoulins, Pointe du Chay",43225,observation-6833999f-e90a-41ec-a9a2-00998911cf51,https://biolit.fr/observations/observation-6833999f-e90a-41ec-a9a2-00998911cf51/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180801_142513-scaled.jpg,,TRUE, +N1,59576,sortie-6833999f-e90a-41ec-a9a2-00998911cf51,https://biolit.fr/sorties/sortie-6833999f-e90a-41ec-a9a2-00998911cf51/,Guillaume D,,08/01/2018,13.0000000,15.0000000,46.110177000000,-1.138712000000,,"Angoulins, Pointe du Chay",43227,observation-6833999f-e90a-41ec-a9a2-00998911cf51-2,https://biolit.fr/observations/observation-6833999f-e90a-41ec-a9a2-00998911cf51-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180801_142536-scaled.jpg,,TRUE, +N1,59576,sortie-6833999f-e90a-41ec-a9a2-00998911cf51,https://biolit.fr/sorties/sortie-6833999f-e90a-41ec-a9a2-00998911cf51/,Guillaume D,,08/01/2018,13.0000000,15.0000000,46.110177000000,-1.138712000000,,"Angoulins, Pointe du Chay",43229,observation-6833999f-e90a-41ec-a9a2-00998911cf51-3,https://biolit.fr/observations/observation-6833999f-e90a-41ec-a9a2-00998911cf51-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180801_142638-scaled.jpg,,TRUE, +N1,59576,sortie-6833999f-e90a-41ec-a9a2-00998911cf51,https://biolit.fr/sorties/sortie-6833999f-e90a-41ec-a9a2-00998911cf51/,Guillaume D,,08/01/2018,13.0000000,15.0000000,46.110177000000,-1.138712000000,,"Angoulins, Pointe du Chay",43231,observation-6833999f-e90a-41ec-a9a2-00998911cf51-4,https://biolit.fr/observations/observation-6833999f-e90a-41ec-a9a2-00998911cf51-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180801_142715_5mo-scaled.jpg,,FALSE, +N1,59576,sortie-6833999f-e90a-41ec-a9a2-00998911cf51,https://biolit.fr/sorties/sortie-6833999f-e90a-41ec-a9a2-00998911cf51/,Guillaume D,,08/01/2018,13.0000000,15.0000000,46.110177000000,-1.138712000000,,"Angoulins, Pointe du Chay",43233,observation-6833999f-e90a-41ec-a9a2-00998911cf51-5,https://biolit.fr/observations/observation-6833999f-e90a-41ec-a9a2-00998911cf51-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180801_143610_5mo.jpg,,FALSE, +N1,59576,sortie-6833999f-e90a-41ec-a9a2-00998911cf51,https://biolit.fr/sorties/sortie-6833999f-e90a-41ec-a9a2-00998911cf51/,Guillaume D,,08/01/2018,13.0000000,15.0000000,46.110177000000,-1.138712000000,,"Angoulins, Pointe du Chay",43235,observation-6833999f-e90a-41ec-a9a2-00998911cf51-6,https://biolit.fr/observations/observation-6833999f-e90a-41ec-a9a2-00998911cf51-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180801_144551-scaled.jpg,,FALSE, +N1,59576,sortie-6833999f-e90a-41ec-a9a2-00998911cf51,https://biolit.fr/sorties/sortie-6833999f-e90a-41ec-a9a2-00998911cf51/,Guillaume D,,08/01/2018,13.0000000,15.0000000,46.110177000000,-1.138712000000,,"Angoulins, Pointe du Chay",43237,observation-6833999f-e90a-41ec-a9a2-00998911cf51-7,https://biolit.fr/observations/observation-6833999f-e90a-41ec-a9a2-00998911cf51-7/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180801_151218-scaled.jpg,,TRUE, +N1,59576,sortie-6833999f-e90a-41ec-a9a2-00998911cf51,https://biolit.fr/sorties/sortie-6833999f-e90a-41ec-a9a2-00998911cf51/,Guillaume D,,08/01/2018,13.0000000,15.0000000,46.110177000000,-1.138712000000,,"Angoulins, Pointe du Chay",43239,observation-6833999f-e90a-41ec-a9a2-00998911cf51-8,https://biolit.fr/observations/observation-6833999f-e90a-41ec-a9a2-00998911cf51-8/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180801_151202-scaled.jpg,,TRUE, +N1,59576,sortie-6833999f-e90a-41ec-a9a2-00998911cf51,https://biolit.fr/sorties/sortie-6833999f-e90a-41ec-a9a2-00998911cf51/,Guillaume D,,08/01/2018,13.0000000,15.0000000,46.110177000000,-1.138712000000,,"Angoulins, Pointe du Chay",43241,observation-6833999f-e90a-41ec-a9a2-00998911cf51-9,https://biolit.fr/observations/observation-6833999f-e90a-41ec-a9a2-00998911cf51-9/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180801_151745-scaled.jpg,,TRUE, +N1,59576,sortie-6833999f-e90a-41ec-a9a2-00998911cf51,https://biolit.fr/sorties/sortie-6833999f-e90a-41ec-a9a2-00998911cf51/,Guillaume D,,08/01/2018,13.0000000,15.0000000,46.110177000000,-1.138712000000,,"Angoulins, Pointe du Chay",43243,observation-6833999f-e90a-41ec-a9a2-00998911cf51-10,https://biolit.fr/observations/observation-6833999f-e90a-41ec-a9a2-00998911cf51-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180801_154548_5mo-scaled.jpg,,FALSE, +N1,59576,sortie-6833999f-e90a-41ec-a9a2-00998911cf51,https://biolit.fr/sorties/sortie-6833999f-e90a-41ec-a9a2-00998911cf51/,Guillaume D,,08/01/2018,13.0000000,15.0000000,46.110177000000,-1.138712000000,,"Angoulins, Pointe du Chay",43245,observation-6833999f-e90a-41ec-a9a2-00998911cf51-11,https://biolit.fr/observations/observation-6833999f-e90a-41ec-a9a2-00998911cf51-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180801_161610-scaled.jpg,,FALSE, +N1,59576,sortie-6833999f-e90a-41ec-a9a2-00998911cf51,https://biolit.fr/sorties/sortie-6833999f-e90a-41ec-a9a2-00998911cf51/,Guillaume D,,08/01/2018,13.0000000,15.0000000,46.110177000000,-1.138712000000,,"Angoulins, Pointe du Chay",43247,observation-6833999f-e90a-41ec-a9a2-00998911cf51-12,https://biolit.fr/observations/observation-6833999f-e90a-41ec-a9a2-00998911cf51-12/,Phymatolithon lenormandii,Algue encroûtante rouge de Lenormand,,https://biolit.fr/wp-content/uploads/2023/07/20180801_161732-scaled.jpg,,TRUE, +N1,59577,sortie-8283c90d-34c1-4f02-a94d-e392b5e38110,https://biolit.fr/sorties/sortie-8283c90d-34c1-4f02-a94d-e392b5e38110/,Socam,,08/06/2018,10.0000000,11.0000000,43.172626000000,5.39325600000,,"Marseille, Calanques",43249,observation-8283c90d-34c1-4f02-a94d-e392b5e38110,https://biolit.fr/observations/observation-8283c90d-34c1-4f02-a94d-e392b5e38110/,Pachymatisma johnstonia,Fesse d'éléphant,,https://biolit.fr/wp-content/uploads/2023/07/20180806_075856030_iOS.jpg,,TRUE, +N1,59577,sortie-8283c90d-34c1-4f02-a94d-e392b5e38110,https://biolit.fr/sorties/sortie-8283c90d-34c1-4f02-a94d-e392b5e38110/,Socam,,08/06/2018,10.0000000,11.0000000,43.172626000000,5.39325600000,,"Marseille, Calanques",43251,observation-8283c90d-34c1-4f02-a94d-e392b5e38110-2,https://biolit.fr/observations/observation-8283c90d-34c1-4f02-a94d-e392b5e38110-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180806_080140050_iOS.jpg,,FALSE, +N1,59577,sortie-8283c90d-34c1-4f02-a94d-e392b5e38110,https://biolit.fr/sorties/sortie-8283c90d-34c1-4f02-a94d-e392b5e38110/,Socam,,08/06/2018,10.0000000,11.0000000,43.172626000000,5.39325600000,,"Marseille, Calanques",43253,observation-8283c90d-34c1-4f02-a94d-e392b5e38110-3,https://biolit.fr/observations/observation-8283c90d-34c1-4f02-a94d-e392b5e38110-3/,Muraena helena,Murène commune,,https://biolit.fr/wp-content/uploads/2023/07/20180806_080642210_iOS.jpg,,TRUE, +N1,59577,sortie-8283c90d-34c1-4f02-a94d-e392b5e38110,https://biolit.fr/sorties/sortie-8283c90d-34c1-4f02-a94d-e392b5e38110/,Socam,,08/06/2018,10.0000000,11.0000000,43.172626000000,5.39325600000,,"Marseille, Calanques",43255,observation-8283c90d-34c1-4f02-a94d-e392b5e38110-4,https://biolit.fr/observations/observation-8283c90d-34c1-4f02-a94d-e392b5e38110-4/,Scorpaena scrofa,Chapon,,https://biolit.fr/wp-content/uploads/2023/07/20180806_080913690_iOS.jpg,,TRUE, +N1,59577,sortie-8283c90d-34c1-4f02-a94d-e392b5e38110,https://biolit.fr/sorties/sortie-8283c90d-34c1-4f02-a94d-e392b5e38110/,Socam,,08/06/2018,10.0000000,11.0000000,43.172626000000,5.39325600000,,"Marseille, Calanques",43257,observation-8283c90d-34c1-4f02-a94d-e392b5e38110-5,https://biolit.fr/observations/observation-8283c90d-34c1-4f02-a94d-e392b5e38110-5/,Felimida krohni,Doris de Krohn,,https://biolit.fr/wp-content/uploads/2023/07/20180806_081028750_iOS.jpg,,TRUE, +N1,59577,sortie-8283c90d-34c1-4f02-a94d-e392b5e38110,https://biolit.fr/sorties/sortie-8283c90d-34c1-4f02-a94d-e392b5e38110/,Socam,,08/06/2018,10.0000000,11.0000000,43.172626000000,5.39325600000,,"Marseille, Calanques",43259,observation-8283c90d-34c1-4f02-a94d-e392b5e38110-6,https://biolit.fr/observations/observation-8283c90d-34c1-4f02-a94d-e392b5e38110-6/,Peltodoris atromaculata,Doris dalmatienne,,https://biolit.fr/wp-content/uploads/2023/07/20180806_081736040_iOS.jpg,,TRUE, +N1,59577,sortie-8283c90d-34c1-4f02-a94d-e392b5e38110,https://biolit.fr/sorties/sortie-8283c90d-34c1-4f02-a94d-e392b5e38110/,Socam,,08/06/2018,10.0000000,11.0000000,43.172626000000,5.39325600000,,"Marseille, Calanques",43261,observation-8283c90d-34c1-4f02-a94d-e392b5e38110-7,https://biolit.fr/observations/observation-8283c90d-34c1-4f02-a94d-e392b5e38110-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180806_082035730_iOS.jpg,,FALSE, +N1,59577,sortie-8283c90d-34c1-4f02-a94d-e392b5e38110,https://biolit.fr/sorties/sortie-8283c90d-34c1-4f02-a94d-e392b5e38110/,Socam,,08/06/2018,10.0000000,11.0000000,43.172626000000,5.39325600000,,"Marseille, Calanques",43263,observation-8283c90d-34c1-4f02-a94d-e392b5e38110-8,https://biolit.fr/observations/observation-8283c90d-34c1-4f02-a94d-e392b5e38110-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180806_082946640_iOS.jpg,,FALSE, +N1,59577,sortie-8283c90d-34c1-4f02-a94d-e392b5e38110,https://biolit.fr/sorties/sortie-8283c90d-34c1-4f02-a94d-e392b5e38110/,Socam,,08/06/2018,10.0000000,11.0000000,43.172626000000,5.39325600000,,"Marseille, Calanques",43265,observation-8283c90d-34c1-4f02-a94d-e392b5e38110-9,https://biolit.fr/observations/observation-8283c90d-34c1-4f02-a94d-e392b5e38110-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180806_083701090_iOS.jpg,,FALSE, +N1,59577,sortie-8283c90d-34c1-4f02-a94d-e392b5e38110,https://biolit.fr/sorties/sortie-8283c90d-34c1-4f02-a94d-e392b5e38110/,Socam,,08/06/2018,10.0000000,11.0000000,43.172626000000,5.39325600000,,"Marseille, Calanques",43267,observation-8283c90d-34c1-4f02-a94d-e392b5e38110-10,https://biolit.fr/observations/observation-8283c90d-34c1-4f02-a94d-e392b5e38110-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180806_083134960_iOS.jpg,,FALSE, +N1,59577,sortie-8283c90d-34c1-4f02-a94d-e392b5e38110,https://biolit.fr/sorties/sortie-8283c90d-34c1-4f02-a94d-e392b5e38110/,Socam,,08/06/2018,10.0000000,11.0000000,43.172626000000,5.39325600000,,"Marseille, Calanques",43269,observation-8283c90d-34c1-4f02-a94d-e392b5e38110-11,https://biolit.fr/observations/observation-8283c90d-34c1-4f02-a94d-e392b5e38110-11/,Sphyraena viridensis,Bécune à bouche jaune,,https://biolit.fr/wp-content/uploads/2023/07/20180806_084417390_iOS.jpg,,TRUE, +N1,59577,sortie-8283c90d-34c1-4f02-a94d-e392b5e38110,https://biolit.fr/sorties/sortie-8283c90d-34c1-4f02-a94d-e392b5e38110/,Socam,,08/06/2018,10.0000000,11.0000000,43.172626000000,5.39325600000,,"Marseille, Calanques",43271,observation-8283c90d-34c1-4f02-a94d-e392b5e38110-12,https://biolit.fr/observations/observation-8283c90d-34c1-4f02-a94d-e392b5e38110-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180806_084910060_iOS.jpg,,FALSE, +N1,59577,sortie-8283c90d-34c1-4f02-a94d-e392b5e38110,https://biolit.fr/sorties/sortie-8283c90d-34c1-4f02-a94d-e392b5e38110/,Socam,,08/06/2018,10.0000000,11.0000000,43.172626000000,5.39325600000,,"Marseille, Calanques",43273,observation-8283c90d-34c1-4f02-a94d-e392b5e38110-13,https://biolit.fr/observations/observation-8283c90d-34c1-4f02-a94d-e392b5e38110-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180806_085228130_iOS.jpg,,FALSE, +N1,59577,sortie-8283c90d-34c1-4f02-a94d-e392b5e38110,https://biolit.fr/sorties/sortie-8283c90d-34c1-4f02-a94d-e392b5e38110/,Socam,,08/06/2018,10.0000000,11.0000000,43.172626000000,5.39325600000,,"Marseille, Calanques",43275,observation-8283c90d-34c1-4f02-a94d-e392b5e38110-14,https://biolit.fr/observations/observation-8283c90d-34c1-4f02-a94d-e392b5e38110-14/,Edmundsella pedata,Coryphelle mauve,,https://biolit.fr/wp-content/uploads/2023/07/20180806_085650840_iOS.jpg,,TRUE, +N1,59578,sortie-975b9b0d-a9bb-4eea-b3da-613990c1309c,https://biolit.fr/sorties/sortie-975b9b0d-a9bb-4eea-b3da-613990c1309c/,Club subaquatique Narbonnais,,08/06/2018,16.0000000,17.0000000,43.167907000000,3.182338000000,,Port de Narbonne-plage,43277,observation-975b9b0d-a9bb-4eea-b3da-613990c1309c,https://biolit.fr/observations/observation-975b9b0d-a9bb-4eea-b3da-613990c1309c/,,,,https://biolit.fr/wp-content/uploads/2023/07/syngnathe1.jpg,,FALSE, +N1,59578,sortie-975b9b0d-a9bb-4eea-b3da-613990c1309c,https://biolit.fr/sorties/sortie-975b9b0d-a9bb-4eea-b3da-613990c1309c/,Club subaquatique Narbonnais,,08/06/2018,16.0000000,17.0000000,43.167907000000,3.182338000000,,Port de Narbonne-plage,43279,observation-975b9b0d-a9bb-4eea-b3da-613990c1309c-2,https://biolit.fr/observations/observation-975b9b0d-a9bb-4eea-b3da-613990c1309c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/syngnathe2.JPG,,FALSE, +N1,59578,sortie-975b9b0d-a9bb-4eea-b3da-613990c1309c,https://biolit.fr/sorties/sortie-975b9b0d-a9bb-4eea-b3da-613990c1309c/,Club subaquatique Narbonnais,,08/06/2018,16.0000000,17.0000000,43.167907000000,3.182338000000,,Port de Narbonne-plage,43281,observation-975b9b0d-a9bb-4eea-b3da-613990c1309c-3,https://biolit.fr/observations/observation-975b9b0d-a9bb-4eea-b3da-613990c1309c-3/,Sciaena umbra,Corb commun,,https://biolit.fr/wp-content/uploads/2023/07/envoi4.JPG,,TRUE, +N1,59578,sortie-975b9b0d-a9bb-4eea-b3da-613990c1309c,https://biolit.fr/sorties/sortie-975b9b0d-a9bb-4eea-b3da-613990c1309c/,Club subaquatique Narbonnais,,08/06/2018,16.0000000,17.0000000,43.167907000000,3.182338000000,,Port de Narbonne-plage,43283,observation-975b9b0d-a9bb-4eea-b3da-613990c1309c-4,https://biolit.fr/observations/observation-975b9b0d-a9bb-4eea-b3da-613990c1309c-4/,Sciaena umbra,Corb commun,,https://biolit.fr/wp-content/uploads/2023/07/envoi6.JPG,,TRUE, +N1,59579,sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac,https://biolit.fr/sorties/sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac/,Socam,,7/30/2018 0:00,9.0:45,10.0:45,43.17664700000,5.370409000000,,"Marseille, Calanques",43285,observation-f5de6b2f-012f-4861-a99c-184d5cc267ac,https://biolit.fr/observations/observation-f5de6b2f-012f-4861-a99c-184d5cc267ac/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180730_081213210_iOS.jpg,,FALSE, +N1,59579,sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac,https://biolit.fr/sorties/sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac/,Socam,,7/30/2018 0:00,9.0:45,10.0:45,43.17664700000,5.370409000000,,"Marseille, Calanques",43287,observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-2,https://biolit.fr/observations/observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180730_081338080_iOS.jpg,,FALSE, +N1,59579,sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac,https://biolit.fr/sorties/sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac/,Socam,,7/30/2018 0:00,9.0:45,10.0:45,43.17664700000,5.370409000000,,"Marseille, Calanques",43289,observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-3,https://biolit.fr/observations/observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180730_081555390_iOS.jpg,,FALSE, +N1,59579,sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac,https://biolit.fr/sorties/sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac/,Socam,,7/30/2018 0:00,9.0:45,10.0:45,43.17664700000,5.370409000000,,"Marseille, Calanques",43291,observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-4,https://biolit.fr/observations/observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-4/,Peltodoris atromaculata,Doris dalmatienne,,https://biolit.fr/wp-content/uploads/2023/07/20180730_082245210_iOS.jpg,,TRUE, +N1,59579,sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac,https://biolit.fr/sorties/sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac/,Socam,,7/30/2018 0:00,9.0:45,10.0:45,43.17664700000,5.370409000000,,"Marseille, Calanques",43293,observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-5,https://biolit.fr/observations/observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180730_082554710_iOS.jpg,,FALSE, +N1,59579,sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac,https://biolit.fr/sorties/sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac/,Socam,,7/30/2018 0:00,9.0:45,10.0:45,43.17664700000,5.370409000000,,"Marseille, Calanques",43295,observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-6,https://biolit.fr/observations/observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180730_083604530_iOS.jpg,,FALSE, +N1,59579,sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac,https://biolit.fr/sorties/sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac/,Socam,,7/30/2018 0:00,9.0:45,10.0:45,43.17664700000,5.370409000000,,"Marseille, Calanques",43297,observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-7,https://biolit.fr/observations/observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180730_084100510_iOS-rotated.jpg,,FALSE, +N1,59579,sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac,https://biolit.fr/sorties/sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac/,Socam,,7/30/2018 0:00,9.0:45,10.0:45,43.17664700000,5.370409000000,,"Marseille, Calanques",43299,observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-8,https://biolit.fr/observations/observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-8/,Muraena helena,Murène commune,,https://biolit.fr/wp-content/uploads/2023/07/20180730_084407430_iOS.jpg,,TRUE, +N1,59579,sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac,https://biolit.fr/sorties/sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac/,Socam,,7/30/2018 0:00,9.0:45,10.0:45,43.17664700000,5.370409000000,,"Marseille, Calanques",43301,observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-9,https://biolit.fr/observations/observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180730_084528750_iOS.jpg,,FALSE, +N1,59579,sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac,https://biolit.fr/sorties/sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac/,Socam,,7/30/2018 0:00,9.0:45,10.0:45,43.17664700000,5.370409000000,,"Marseille, Calanques",43303,observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-10,https://biolit.fr/observations/observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180730_084617020_iOS.jpg,,FALSE, +N1,59579,sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac,https://biolit.fr/sorties/sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac/,Socam,,7/30/2018 0:00,9.0:45,10.0:45,43.17664700000,5.370409000000,,"Marseille, Calanques",43305,observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-11,https://biolit.fr/observations/observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180730_085056570_iOS.jpg,,FALSE, +N1,59579,sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac,https://biolit.fr/sorties/sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac/,Socam,,7/30/2018 0:00,9.0:45,10.0:45,43.17664700000,5.370409000000,,"Marseille, Calanques",43307,observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-12,https://biolit.fr/observations/observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180730_085259440_iOS.jpg,,FALSE, +N1,59579,sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac,https://biolit.fr/sorties/sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac/,Socam,,7/30/2018 0:00,9.0:45,10.0:45,43.17664700000,5.370409000000,,"Marseille, Calanques",43309,observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-13,https://biolit.fr/observations/observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180730_085439060_iOS.jpg,,FALSE, +N1,59579,sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac,https://biolit.fr/sorties/sortie-f5de6b2f-012f-4861-a99c-184d5cc267ac/,Socam,,7/30/2018 0:00,9.0:45,10.0:45,43.17664700000,5.370409000000,,"Marseille, Calanques",43311,observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-14,https://biolit.fr/observations/observation-f5de6b2f-012f-4861-a99c-184d5cc267ac-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180730_083214630_iOS.jpg,,FALSE, +N1,59580,sortie-d956177f-a197-489c-b456-df95c8b4ac73,https://biolit.fr/sorties/sortie-d956177f-a197-489c-b456-df95c8b4ac73/,Water Life Community,,5/27/2018 0:00,12.0000000,13.0000000,47.760221000000,-3.526628000000,,Plage de Guidel,43313,observation-d956177f-a197-489c-b456-df95c8b4ac73,https://biolit.fr/observations/observation-d956177f-a197-489c-b456-df95c8b4ac73/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_3329-scaled.jpg,,FALSE, +N1,59580,sortie-d956177f-a197-489c-b456-df95c8b4ac73,https://biolit.fr/sorties/sortie-d956177f-a197-489c-b456-df95c8b4ac73/,Water Life Community,,5/27/2018 0:00,12.0000000,13.0000000,47.760221000000,-3.526628000000,,Plage de Guidel,43315,observation-d956177f-a197-489c-b456-df95c8b4ac73-2,https://biolit.fr/observations/observation-d956177f-a197-489c-b456-df95c8b4ac73-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_3328-scaled.jpg,,FALSE, +N1,59581,sortie-61338518-eadd-4941-b088-8d250ab3e948,https://biolit.fr/sorties/sortie-61338518-eadd-4941-b088-8d250ab3e948/,Stéphane,,7/28/2018 0:00,11.0000000,13.0000000,46.139683000000,-1.172713000000,,"La Rochelle, Plage des Minimes",43317,observation-61338518-eadd-4941-b088-8d250ab3e948,https://biolit.fr/observations/observation-61338518-eadd-4941-b088-8d250ab3e948/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180728_114533-scaled.jpg,,FALSE, +N1,59581,sortie-61338518-eadd-4941-b088-8d250ab3e948,https://biolit.fr/sorties/sortie-61338518-eadd-4941-b088-8d250ab3e948/,Stéphane,,7/28/2018 0:00,11.0000000,13.0000000,46.139683000000,-1.172713000000,,"La Rochelle, Plage des Minimes",43319,observation-61338518-eadd-4941-b088-8d250ab3e948-2,https://biolit.fr/observations/observation-61338518-eadd-4941-b088-8d250ab3e948-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180728_114542-scaled.jpg,,TRUE, +N1,59581,sortie-61338518-eadd-4941-b088-8d250ab3e948,https://biolit.fr/sorties/sortie-61338518-eadd-4941-b088-8d250ab3e948/,Stéphane,,7/28/2018 0:00,11.0000000,13.0000000,46.139683000000,-1.172713000000,,"La Rochelle, Plage des Minimes",43321,observation-61338518-eadd-4941-b088-8d250ab3e948-3,https://biolit.fr/observations/observation-61338518-eadd-4941-b088-8d250ab3e948-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180728_114618-scaled.jpg,,TRUE, +N1,59581,sortie-61338518-eadd-4941-b088-8d250ab3e948,https://biolit.fr/sorties/sortie-61338518-eadd-4941-b088-8d250ab3e948/,Stéphane,,7/28/2018 0:00,11.0000000,13.0000000,46.139683000000,-1.172713000000,,"La Rochelle, Plage des Minimes",43323,observation-61338518-eadd-4941-b088-8d250ab3e948-4,https://biolit.fr/observations/observation-61338518-eadd-4941-b088-8d250ab3e948-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180728_120531-scaled.jpg,,FALSE, +N1,59581,sortie-61338518-eadd-4941-b088-8d250ab3e948,https://biolit.fr/sorties/sortie-61338518-eadd-4941-b088-8d250ab3e948/,Stéphane,,7/28/2018 0:00,11.0000000,13.0000000,46.139683000000,-1.172713000000,,"La Rochelle, Plage des Minimes",43325,observation-61338518-eadd-4941-b088-8d250ab3e948-5,https://biolit.fr/observations/observation-61338518-eadd-4941-b088-8d250ab3e948-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180728_121405-scaled.jpg,,FALSE, +N1,59581,sortie-61338518-eadd-4941-b088-8d250ab3e948,https://biolit.fr/sorties/sortie-61338518-eadd-4941-b088-8d250ab3e948/,Stéphane,,7/28/2018 0:00,11.0000000,13.0000000,46.139683000000,-1.172713000000,,"La Rochelle, Plage des Minimes",43327,observation-61338518-eadd-4941-b088-8d250ab3e948-6,https://biolit.fr/observations/observation-61338518-eadd-4941-b088-8d250ab3e948-6/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/2023/07/20180728_121755-scaled.jpg,,TRUE, +N1,59582,sortie-181e34a4-0ab7-46e5-b5f4-5c0d70830f71,https://biolit.fr/sorties/sortie-181e34a4-0ab7-46e5-b5f4-5c0d70830f71/,Septentrion Environnement,,7/28/2018 0:00,14.0000000,15.0000000,43.279972000000,5.286176000000,,Le Tiboulen du Frioul,43329,observation-181e34a4-0ab7-46e5-b5f4-5c0d70830f71,https://biolit.fr/observations/observation-181e34a4-0ab7-46e5-b5f4-5c0d70830f71/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4054_0-scaled.jpg,,FALSE, +N1,59582,sortie-181e34a4-0ab7-46e5-b5f4-5c0d70830f71,https://biolit.fr/sorties/sortie-181e34a4-0ab7-46e5-b5f4-5c0d70830f71/,Septentrion Environnement,,7/28/2018 0:00,14.0000000,15.0000000,43.279972000000,5.286176000000,,Le Tiboulen du Frioul,43331,observation-181e34a4-0ab7-46e5-b5f4-5c0d70830f71-2,https://biolit.fr/observations/observation-181e34a4-0ab7-46e5-b5f4-5c0d70830f71-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4055-scaled.jpg,,FALSE, +N1,59582,sortie-181e34a4-0ab7-46e5-b5f4-5c0d70830f71,https://biolit.fr/sorties/sortie-181e34a4-0ab7-46e5-b5f4-5c0d70830f71/,Septentrion Environnement,,7/28/2018 0:00,14.0000000,15.0000000,43.279972000000,5.286176000000,,Le Tiboulen du Frioul,43333,observation-181e34a4-0ab7-46e5-b5f4-5c0d70830f71-3,https://biolit.fr/observations/observation-181e34a4-0ab7-46e5-b5f4-5c0d70830f71-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4065-scaled.jpg,,FALSE, +N1,59582,sortie-181e34a4-0ab7-46e5-b5f4-5c0d70830f71,https://biolit.fr/sorties/sortie-181e34a4-0ab7-46e5-b5f4-5c0d70830f71/,Septentrion Environnement,,7/28/2018 0:00,14.0000000,15.0000000,43.279972000000,5.286176000000,,Le Tiboulen du Frioul,43335,observation-181e34a4-0ab7-46e5-b5f4-5c0d70830f71-4,https://biolit.fr/observations/observation-181e34a4-0ab7-46e5-b5f4-5c0d70830f71-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4070_0-scaled.jpg,,FALSE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43337,observation-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/2023/07/poulpe.JPG,,TRUE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43339,observation-12ef40c1-0e58-48db-b440-3f386f0cca33-2,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/anémone solaire.JPG,,FALSE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43341,observation-12ef40c1-0e58-48db-b440-3f386f0cca33-3,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/anemone-scaled.jpg,,FALSE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43342,observation-12ef40c1-0e58-48db-b440-3f386f0cca33-4,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33-4/,Phallusia mammillata,Ascidie blanche,,https://biolit.fr/wp-content/uploads/2023/07/axinelle.JPG,,TRUE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43344,observation-12ef40c1-0e58-48db-b440-3f386f0cca33-5,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/blennie gros plan.jpg,,FALSE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43346,observation-12ef40c1-0e58-48db-b440-3f386f0cca33-6,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/bogue.JPG,,FALSE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43348,observation-12ef40c1-0e58-48db-b440-3f386f0cca33-7,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/congre.JPG,,FALSE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43350,observation-12ef40c1-0e58-48db-b440-3f386f0cca33-8,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/etrille.JPG,,FALSE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43352,observation-12ef40c1-0e58-48db-b440-3f386f0cca33-9,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/loup.JPG,,FALSE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43354,observation-12ef40c1-0e58-48db-b440-3f386f0cca33-10,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/macropodia 1.JPG,,FALSE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43356,observation-12ef40c1-0e58-48db-b440-3f386f0cca33-11,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/macropodia 2.JPG,,FALSE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43358,observation-12ef40c1-0e58-48db-b440-3f386f0cca33-12,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/macropodia 3.JPG,,FALSE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43360,observation-12ef40c1-0e58-48db-b440-3f386f0cca33-13,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/meduse-scaled.jpg,,FALSE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43361,observation-12ef40c1-0e58-48db-b440-3f386f0cca33-14,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33-14/,Phycis phycis,Mostelle de roche,,https://biolit.fr/wp-content/uploads/2023/07/mostelle.JPG,,TRUE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43363,observation-12ef40c1-0e58-48db-b440-3f386f0cca33-15,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33-15/,Sabella spallanzanii,Spirographe,,https://biolit.fr/wp-content/uploads/2023/07/Spirographe-scaled.jpg,,TRUE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43364,observation-12ef40c1-0e58-48db-b440-3f386f0cca33-16,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/rouget.JPG,,FALSE, +N1,59583,sortie-12ef40c1-0e58-48db-b440-3f386f0cca33,https://biolit.fr/sorties/sortie-12ef40c1-0e58-48db-b440-3f386f0cca33/,Club subaquatique Narbonnais,,7/29/2018 0:00,10.0:15,11.0:15,43.173916000000,3.191876000000,,plage de Saint-Pierre la mer,43366,observation-12ef40c1-0e58-48db-b440-3f386f0cca33-17,https://biolit.fr/observations/observation-12ef40c1-0e58-48db-b440-3f386f0cca33-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/Non identifié.PNG,,FALSE, +N1,59584,sortie-a587a606-b25b-498d-a810-6f2948b02b18,https://biolit.fr/sorties/sortie-a587a606-b25b-498d-a810-6f2948b02b18/,Guillaume D,,7/28/2018 0:00,11.0000000,13.0000000,46.139848000000,-1.172671000000,,"La Rochelle, Plage des Minimes",43367,observation-a587a606-b25b-498d-a810-6f2948b02b18,https://biolit.fr/observations/observation-a587a606-b25b-498d-a810-6f2948b02b18/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180728_113303-scaled.jpg,,TRUE, +N1,59584,sortie-a587a606-b25b-498d-a810-6f2948b02b18,https://biolit.fr/sorties/sortie-a587a606-b25b-498d-a810-6f2948b02b18/,Guillaume D,,7/28/2018 0:00,11.0000000,13.0000000,46.139848000000,-1.172671000000,,"La Rochelle, Plage des Minimes",43369,observation-a587a606-b25b-498d-a810-6f2948b02b18-2,https://biolit.fr/observations/observation-a587a606-b25b-498d-a810-6f2948b02b18-2/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20180728_115938-scaled.jpg,,TRUE, +N1,59584,sortie-a587a606-b25b-498d-a810-6f2948b02b18,https://biolit.fr/sorties/sortie-a587a606-b25b-498d-a810-6f2948b02b18/,Guillaume D,,7/28/2018 0:00,11.0000000,13.0000000,46.139848000000,-1.172671000000,,"La Rochelle, Plage des Minimes",43371,observation-a587a606-b25b-498d-a810-6f2948b02b18-3,https://biolit.fr/observations/observation-a587a606-b25b-498d-a810-6f2948b02b18-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20180728_120111_5mo-scaled.jpg,,TRUE, +N1,59584,sortie-a587a606-b25b-498d-a810-6f2948b02b18,https://biolit.fr/sorties/sortie-a587a606-b25b-498d-a810-6f2948b02b18/,Guillaume D,,7/28/2018 0:00,11.0000000,13.0000000,46.139848000000,-1.172671000000,,"La Rochelle, Plage des Minimes",43373,observation-a587a606-b25b-498d-a810-6f2948b02b18-4,https://biolit.fr/observations/observation-a587a606-b25b-498d-a810-6f2948b02b18-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180728_120123-scaled.jpg,,FALSE, +N1,59584,sortie-a587a606-b25b-498d-a810-6f2948b02b18,https://biolit.fr/sorties/sortie-a587a606-b25b-498d-a810-6f2948b02b18/,Guillaume D,,7/28/2018 0:00,11.0000000,13.0000000,46.139848000000,-1.172671000000,,"La Rochelle, Plage des Minimes",43375,observation-a587a606-b25b-498d-a810-6f2948b02b18-5,https://biolit.fr/observations/observation-a587a606-b25b-498d-a810-6f2948b02b18-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180728_120710-scaled.jpg,,FALSE, +N1,59584,sortie-a587a606-b25b-498d-a810-6f2948b02b18,https://biolit.fr/sorties/sortie-a587a606-b25b-498d-a810-6f2948b02b18/,Guillaume D,,7/28/2018 0:00,11.0000000,13.0000000,46.139848000000,-1.172671000000,,"La Rochelle, Plage des Minimes",43377,observation-a587a606-b25b-498d-a810-6f2948b02b18-6,https://biolit.fr/observations/observation-a587a606-b25b-498d-a810-6f2948b02b18-6/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180728_122459-scaled.jpg,,TRUE, +N1,59584,sortie-a587a606-b25b-498d-a810-6f2948b02b18,https://biolit.fr/sorties/sortie-a587a606-b25b-498d-a810-6f2948b02b18/,Guillaume D,,7/28/2018 0:00,11.0000000,13.0000000,46.139848000000,-1.172671000000,,"La Rochelle, Plage des Minimes",43379,observation-a587a606-b25b-498d-a810-6f2948b02b18-7,https://biolit.fr/observations/observation-a587a606-b25b-498d-a810-6f2948b02b18-7/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/20180728_124345-scaled.jpg,,TRUE, +N1,59585,sortie-10937bbe-f46f-488e-8f09-64e64b9979b1,https://biolit.fr/sorties/sortie-10937bbe-f46f-488e-8f09-64e64b9979b1/,LPO Occitanie (délégation Hérault),,7/26/2018 0:00,10.0000000,12.0000000,43.326788000000,3.544656000000,,"Marseillan, Maldormir",43381,observation-10937bbe-f46f-488e-8f09-64e64b9979b1,https://biolit.fr/observations/observation-10937bbe-f46f-488e-8f09-64e64b9979b1/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/2023/07/20180726_114329.jpg,,TRUE, +N1,59586,sortie-e4d6d3fd-817b-4a3b-81b8-fec83c2bcb88,https://biolit.fr/sorties/sortie-e4d6d3fd-817b-4a3b-81b8-fec83c2bcb88/,TRex58,,7/20/2018 0:00,17.0000000,17.0000000,47.967699000000,-4.431713000000,,Kerrest près Porzambréval,43383,observation-e4d6d3fd-817b-4a3b-81b8-fec83c2bcb88,https://biolit.fr/observations/observation-e4d6d3fd-817b-4a3b-81b8-fec83c2bcb88/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180720_172722-scaled.jpg,,FALSE, +N1,59587,sortie-19632b6a-bd9a-443e-99c0-5cdebfa6bd67,https://biolit.fr/sorties/sortie-19632b6a-bd9a-443e-99c0-5cdebfa6bd67/,PEP Le Hedraou,,7/18/2018 0:00,15.0000000,17.0000000,48.816268000000,-3.42622600000,,Pors ar goret,43385,observation-19632b6a-bd9a-443e-99c0-5cdebfa6bd67,https://biolit.fr/observations/observation-19632b6a-bd9a-443e-99c0-5cdebfa6bd67/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/P1050999-scaled.jpg,,TRUE, +N1,59587,sortie-19632b6a-bd9a-443e-99c0-5cdebfa6bd67,https://biolit.fr/sorties/sortie-19632b6a-bd9a-443e-99c0-5cdebfa6bd67/,PEP Le Hedraou,,7/18/2018 0:00,15.0000000,17.0000000,48.816268000000,-3.42622600000,,Pors ar goret,43387,observation-19632b6a-bd9a-443e-99c0-5cdebfa6bd67-2,https://biolit.fr/observations/observation-19632b6a-bd9a-443e-99c0-5cdebfa6bd67-2/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/P1060006_0-scaled.jpg,,TRUE, +N1,59588,sortie-5ea7f90c-72fd-40af-88ff-9d27f3f879af,https://biolit.fr/sorties/sortie-5ea7f90c-72fd-40af-88ff-9d27f3f879af/,maudcpie,,7/17/2018 0:00,15.0000000,17.0000000,43.286454000000,3.394233000000,,Plage de Sainte Genevieve à Vias (34450),43389,observation-5ea7f90c-72fd-40af-88ff-9d27f3f879af,https://biolit.fr/observations/observation-5ea7f90c-72fd-40af-88ff-9d27f3f879af/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180717_111355-rotated.jpg,,FALSE, +N1,59588,sortie-5ea7f90c-72fd-40af-88ff-9d27f3f879af,https://biolit.fr/sorties/sortie-5ea7f90c-72fd-40af-88ff-9d27f3f879af/,maudcpie,,7/17/2018 0:00,15.0000000,17.0000000,43.286454000000,3.394233000000,,Plage de Sainte Genevieve à Vias (34450),43391,observation-5ea7f90c-72fd-40af-88ff-9d27f3f879af-2,https://biolit.fr/observations/observation-5ea7f90c-72fd-40af-88ff-9d27f3f879af-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180717_111359-rotated.jpg,,FALSE, +N1,59589,sortie-99e09a64-c77e-4637-95ca-803ed9a524bb,https://biolit.fr/sorties/sortie-99e09a64-c77e-4637-95ca-803ed9a524bb/,Association Avril - Vigie des havres,,7/16/2018 0:00,15.0000000,16.0000000,48.968529000000,-1.562650000000,,Hauteville/mer,43393,observation-99e09a64-c77e-4637-95ca-803ed9a524bb,https://biolit.fr/observations/observation-99e09a64-c77e-4637-95ca-803ed9a524bb/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/20180716_144410-scaled.jpg,,TRUE, +N1,59589,sortie-99e09a64-c77e-4637-95ca-803ed9a524bb,https://biolit.fr/sorties/sortie-99e09a64-c77e-4637-95ca-803ed9a524bb/,Association Avril - Vigie des havres,,7/16/2018 0:00,15.0000000,16.0000000,48.968529000000,-1.562650000000,,Hauteville/mer,43395,observation-99e09a64-c77e-4637-95ca-803ed9a524bb-2,https://biolit.fr/observations/observation-99e09a64-c77e-4637-95ca-803ed9a524bb-2/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/20180716_145331-scaled.jpg,,TRUE, +N1,59589,sortie-99e09a64-c77e-4637-95ca-803ed9a524bb,https://biolit.fr/sorties/sortie-99e09a64-c77e-4637-95ca-803ed9a524bb/,Association Avril - Vigie des havres,,7/16/2018 0:00,15.0000000,16.0000000,48.968529000000,-1.562650000000,,Hauteville/mer,43397,observation-99e09a64-c77e-4637-95ca-803ed9a524bb-3,https://biolit.fr/observations/observation-99e09a64-c77e-4637-95ca-803ed9a524bb-3/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/20180716_145511-scaled.jpg,,TRUE, +N1,59590,sortie-659972c7-3501-4174-bdb6-28aae831b651,https://biolit.fr/sorties/sortie-659972c7-3501-4174-bdb6-28aae831b651/,laurent,,07/08/2018,16.0000000,19.0000000,43.107718000000,5.954315000000,,yacht club de toulon,43399,observation-659972c7-3501-4174-bdb6-28aae831b651,https://biolit.fr/observations/observation-659972c7-3501-4174-bdb6-28aae831b651/,Creseis clava,Pteropode aiguille droite,,https://biolit.fr/wp-content/uploads/2023/07/GOPR3854-scaled.jpg,,TRUE, +N1,59591,sortie-2d981003-ef76-4345-936e-2a7be2801816,https://biolit.fr/sorties/sortie-2d981003-ef76-4345-936e-2a7be2801816/,Centre de Découverte Mer et Montagne,,07/10/2018,14.0000000,16.0000000,43.506082000000,6.950230000000,,Sentier sous-marin département 06,43401,observation-2d981003-ef76-4345-936e-2a7be2801816,https://biolit.fr/observations/observation-2d981003-ef76-4345-936e-2a7be2801816/,Dicentrarchus labrax,Bar commun loup,,https://biolit.fr/wp-content/uploads/2023/07/180710_PA_Biolit_DL (57)-scaled.jpg,,TRUE, +N1,59591,sortie-2d981003-ef76-4345-936e-2a7be2801816,https://biolit.fr/sorties/sortie-2d981003-ef76-4345-936e-2a7be2801816/,Centre de Découverte Mer et Montagne,,07/10/2018,14.0000000,16.0000000,43.506082000000,6.950230000000,,Sentier sous-marin département 06,43403,observation-2d981003-ef76-4345-936e-2a7be2801816-2,https://biolit.fr/observations/observation-2d981003-ef76-4345-936e-2a7be2801816-2/,Serranus scriba,Serran-écriture,,https://biolit.fr/wp-content/uploads/2023/07/180710_PA_Biolit_DL (73)-scaled.jpg,,TRUE, +N1,59591,sortie-2d981003-ef76-4345-936e-2a7be2801816,https://biolit.fr/sorties/sortie-2d981003-ef76-4345-936e-2a7be2801816/,Centre de Découverte Mer et Montagne,,07/10/2018,14.0000000,16.0000000,43.506082000000,6.950230000000,,Sentier sous-marin département 06,43405,observation-2d981003-ef76-4345-936e-2a7be2801816-3,https://biolit.fr/observations/observation-2d981003-ef76-4345-936e-2a7be2801816-3/,Serranus cabrilla,Serran-chèvre,,https://biolit.fr/wp-content/uploads/2023/07/180710_PA_Biolit_DL (85)-scaled.jpg,,TRUE, +N1,59591,sortie-2d981003-ef76-4345-936e-2a7be2801816,https://biolit.fr/sorties/sortie-2d981003-ef76-4345-936e-2a7be2801816/,Centre de Découverte Mer et Montagne,,07/10/2018,14.0000000,16.0000000,43.506082000000,6.950230000000,,Sentier sous-marin département 06,43407,observation-2d981003-ef76-4345-936e-2a7be2801816-4,https://biolit.fr/observations/observation-2d981003-ef76-4345-936e-2a7be2801816-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/180710_PA_Biolit_DL (150)-scaled.jpg,,FALSE, +N1,59591,sortie-2d981003-ef76-4345-936e-2a7be2801816,https://biolit.fr/sorties/sortie-2d981003-ef76-4345-936e-2a7be2801816/,Centre de Découverte Mer et Montagne,,07/10/2018,14.0000000,16.0000000,43.506082000000,6.950230000000,,Sentier sous-marin département 06,43409,observation-2d981003-ef76-4345-936e-2a7be2801816-5,https://biolit.fr/observations/observation-2d981003-ef76-4345-936e-2a7be2801816-5/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/2023/07/180710_PA_Biolit_DL (141)-scaled.jpg,,TRUE, +N1,59592,sortie-bbd5e7d5-31a2-427b-9ab5-04227e4e2732,https://biolit.fr/sorties/sortie-bbd5e7d5-31a2-427b-9ab5-04227e4e2732/,Association Avril - Vigie des havres,,07/09/2018,15.0000000,16.0000000,48.998707000000,-1.580997000000,,agon coutainville,43411,observation-bbd5e7d5-31a2-427b-9ab5-04227e4e2732,https://biolit.fr/observations/observation-bbd5e7d5-31a2-427b-9ab5-04227e4e2732/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0105[1]_0-scaled.jpg,,TRUE, +N1,59593,sortie-a5ba93f4-af62-4962-8ba6-86c733a16698,https://biolit.fr/sorties/sortie-a5ba93f4-af62-4962-8ba6-86c733a16698/,Guillaume D,,07/05/2018,15.0000000,17.0000000,46.139707000000,-1.172747000000,,"La Rochelle, Plage des Minimes",43413,observation-a5ba93f4-af62-4962-8ba6-86c733a16698,https://biolit.fr/observations/observation-a5ba93f4-af62-4962-8ba6-86c733a16698/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180705_155034-scaled.jpg,,TRUE, +N1,59593,sortie-a5ba93f4-af62-4962-8ba6-86c733a16698,https://biolit.fr/sorties/sortie-a5ba93f4-af62-4962-8ba6-86c733a16698/,Guillaume D,,07/05/2018,15.0000000,17.0000000,46.139707000000,-1.172747000000,,"La Rochelle, Plage des Minimes",43415,observation-a5ba93f4-af62-4962-8ba6-86c733a16698-2,https://biolit.fr/observations/observation-a5ba93f4-af62-4962-8ba6-86c733a16698-2/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/07/20180705_155111-scaled.jpg,,TRUE, +N1,59593,sortie-a5ba93f4-af62-4962-8ba6-86c733a16698,https://biolit.fr/sorties/sortie-a5ba93f4-af62-4962-8ba6-86c733a16698/,Guillaume D,,07/05/2018,15.0000000,17.0000000,46.139707000000,-1.172747000000,,"La Rochelle, Plage des Minimes",43417,observation-a5ba93f4-af62-4962-8ba6-86c733a16698-3,https://biolit.fr/observations/observation-a5ba93f4-af62-4962-8ba6-86c733a16698-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180705_155658-scaled.jpg,,FALSE, +N1,59593,sortie-a5ba93f4-af62-4962-8ba6-86c733a16698,https://biolit.fr/sorties/sortie-a5ba93f4-af62-4962-8ba6-86c733a16698/,Guillaume D,,07/05/2018,15.0000000,17.0000000,46.139707000000,-1.172747000000,,"La Rochelle, Plage des Minimes",43419,observation-a5ba93f4-af62-4962-8ba6-86c733a16698-4,https://biolit.fr/observations/observation-a5ba93f4-af62-4962-8ba6-86c733a16698-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180705_160358_5mo.jpg,,FALSE, +N1,59593,sortie-a5ba93f4-af62-4962-8ba6-86c733a16698,https://biolit.fr/sorties/sortie-a5ba93f4-af62-4962-8ba6-86c733a16698/,Guillaume D,,07/05/2018,15.0000000,17.0000000,46.139707000000,-1.172747000000,,"La Rochelle, Plage des Minimes",43421,observation-a5ba93f4-af62-4962-8ba6-86c733a16698-5,https://biolit.fr/observations/observation-a5ba93f4-af62-4962-8ba6-86c733a16698-5/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180705_160435_5mo.jpg,,TRUE, +N1,59593,sortie-a5ba93f4-af62-4962-8ba6-86c733a16698,https://biolit.fr/sorties/sortie-a5ba93f4-af62-4962-8ba6-86c733a16698/,Guillaume D,,07/05/2018,15.0000000,17.0000000,46.139707000000,-1.172747000000,,"La Rochelle, Plage des Minimes",43423,observation-a5ba93f4-af62-4962-8ba6-86c733a16698-6,https://biolit.fr/observations/observation-a5ba93f4-af62-4962-8ba6-86c733a16698-6/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/20180705_161044-scaled.jpg,,TRUE, +N1,59593,sortie-a5ba93f4-af62-4962-8ba6-86c733a16698,https://biolit.fr/sorties/sortie-a5ba93f4-af62-4962-8ba6-86c733a16698/,Guillaume D,,07/05/2018,15.0000000,17.0000000,46.139707000000,-1.172747000000,,"La Rochelle, Plage des Minimes",43427,observation-a5ba93f4-af62-4962-8ba6-86c733a16698-8,https://biolit.fr/observations/observation-a5ba93f4-af62-4962-8ba6-86c733a16698-8/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180705_161722-scaled.jpg,,TRUE, +N1,59593,sortie-a5ba93f4-af62-4962-8ba6-86c733a16698,https://biolit.fr/sorties/sortie-a5ba93f4-af62-4962-8ba6-86c733a16698/,Guillaume D,,07/05/2018,15.0000000,17.0000000,46.139707000000,-1.172747000000,,"La Rochelle, Plage des Minimes",43429,observation-a5ba93f4-af62-4962-8ba6-86c733a16698-9,https://biolit.fr/observations/observation-a5ba93f4-af62-4962-8ba6-86c733a16698-9/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180705_162249-scaled.jpg,,TRUE, +N1,59593,sortie-a5ba93f4-af62-4962-8ba6-86c733a16698,https://biolit.fr/sorties/sortie-a5ba93f4-af62-4962-8ba6-86c733a16698/,Guillaume D,,07/05/2018,15.0000000,17.0000000,46.139707000000,-1.172747000000,,"La Rochelle, Plage des Minimes",43431,observation-a5ba93f4-af62-4962-8ba6-86c733a16698-10,https://biolit.fr/observations/observation-a5ba93f4-af62-4962-8ba6-86c733a16698-10/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/20180705_162601-scaled.jpg,,TRUE, +N1,59594,sortie-01b318ed-ffca-4721-b5f4-4caba284a8a3,https://biolit.fr/sorties/sortie-01b318ed-ffca-4721-b5f4-4caba284a8a3/,Phil,,4/28/2018 0:00,11.0:45,11.0:55,47.894817000000,-3.966244000000,,La Forêt-Fouesnant - Finistère,43433,observation-01b318ed-ffca-4721-b5f4-4caba284a8a3,https://biolit.fr/observations/observation-01b318ed-ffca-4721-b5f4-4caba284a8a3/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/2023/07/P1110154.JPG,,TRUE, +N1,59594,sortie-01b318ed-ffca-4721-b5f4-4caba284a8a3,https://biolit.fr/sorties/sortie-01b318ed-ffca-4721-b5f4-4caba284a8a3/,Phil,,4/28/2018 0:00,11.0:45,11.0:55,47.894817000000,-3.966244000000,,La Forêt-Fouesnant - Finistère,43435,observation-01b318ed-ffca-4721-b5f4-4caba284a8a3-2,https://biolit.fr/observations/observation-01b318ed-ffca-4721-b5f4-4caba284a8a3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110150.JPG,,FALSE, +N1,59594,sortie-01b318ed-ffca-4721-b5f4-4caba284a8a3,https://biolit.fr/sorties/sortie-01b318ed-ffca-4721-b5f4-4caba284a8a3/,Phil,,4/28/2018 0:00,11.0:45,11.0:55,47.894817000000,-3.966244000000,,La Forêt-Fouesnant - Finistère,43437,observation-01b318ed-ffca-4721-b5f4-4caba284a8a3-3,https://biolit.fr/observations/observation-01b318ed-ffca-4721-b5f4-4caba284a8a3-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110160.JPG,,FALSE, +N1,59594,sortie-01b318ed-ffca-4721-b5f4-4caba284a8a3,https://biolit.fr/sorties/sortie-01b318ed-ffca-4721-b5f4-4caba284a8a3/,Phil,,4/28/2018 0:00,11.0:45,11.0:55,47.894817000000,-3.966244000000,,La Forêt-Fouesnant - Finistère,43439,observation-01b318ed-ffca-4721-b5f4-4caba284a8a3-4,https://biolit.fr/observations/observation-01b318ed-ffca-4721-b5f4-4caba284a8a3-4/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/2023/07/P1110166.JPG,,TRUE, +N1,59595,sortie-f5ec5d7f-f030-46e6-9364-b4b4f620e216,https://biolit.fr/sorties/sortie-f5ec5d7f-f030-46e6-9364-b4b4f620e216/,Phil,,5/20/2018 0:00,14.0:35,14.0:45,47.800333000000,-4.179608000000,,Loctudy - Finistère,43441,observation-f5ec5d7f-f030-46e6-9364-b4b4f620e216,https://biolit.fr/observations/observation-f5ec5d7f-f030-46e6-9364-b4b4f620e216/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/P1110472.JPG,,TRUE, +N1,59595,sortie-f5ec5d7f-f030-46e6-9364-b4b4f620e216,https://biolit.fr/sorties/sortie-f5ec5d7f-f030-46e6-9364-b4b4f620e216/,Phil,,5/20/2018 0:00,14.0:35,14.0:45,47.800333000000,-4.179608000000,,Loctudy - Finistère,43443,observation-f5ec5d7f-f030-46e6-9364-b4b4f620e216-2,https://biolit.fr/observations/observation-f5ec5d7f-f030-46e6-9364-b4b4f620e216-2/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/P1110470.JPG,,TRUE, +N1,59595,sortie-f5ec5d7f-f030-46e6-9364-b4b4f620e216,https://biolit.fr/sorties/sortie-f5ec5d7f-f030-46e6-9364-b4b4f620e216/,Phil,,5/20/2018 0:00,14.0:35,14.0:45,47.800333000000,-4.179608000000,,Loctudy - Finistère,43445,observation-f5ec5d7f-f030-46e6-9364-b4b4f620e216-3,https://biolit.fr/observations/observation-f5ec5d7f-f030-46e6-9364-b4b4f620e216-3/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/P1110469.JPG,,TRUE, +N1,59595,sortie-f5ec5d7f-f030-46e6-9364-b4b4f620e216,https://biolit.fr/sorties/sortie-f5ec5d7f-f030-46e6-9364-b4b4f620e216/,Phil,,5/20/2018 0:00,14.0:35,14.0:45,47.800333000000,-4.179608000000,,Loctudy - Finistère,43447,observation-f5ec5d7f-f030-46e6-9364-b4b4f620e216-4,https://biolit.fr/observations/observation-f5ec5d7f-f030-46e6-9364-b4b4f620e216-4/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1110463.JPG,,TRUE, +N1,59595,sortie-f5ec5d7f-f030-46e6-9364-b4b4f620e216,https://biolit.fr/sorties/sortie-f5ec5d7f-f030-46e6-9364-b4b4f620e216/,Phil,,5/20/2018 0:00,14.0:35,14.0:45,47.800333000000,-4.179608000000,,Loctudy - Finistère,43449,observation-f5ec5d7f-f030-46e6-9364-b4b4f620e216-5,https://biolit.fr/observations/observation-f5ec5d7f-f030-46e6-9364-b4b4f620e216-5/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1110465.JPG,,TRUE, +N1,59596,sortie-e85a60a4-ee96-4e0b-885a-43c9e2dfbe24,https://biolit.fr/sorties/sortie-e85a60a4-ee96-4e0b-885a-43c9e2dfbe24/,Septentrion Environnement,,07/01/2018,15.0000000,17.0000000,43.196987000000,5.361726000000,,La pierre de Briançon,43451,observation-e85a60a4-ee96-4e0b-885a-43c9e2dfbe24,https://biolit.fr/observations/observation-e85a60a4-ee96-4e0b-885a-43c9e2dfbe24/,Peyssonnelia squamaria,Peyssonnelia,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3976-scaled.jpg,,TRUE, +N1,59597,sortie-2672d453-b563-492d-85ca-d4e3912c3c99,https://biolit.fr/sorties/sortie-2672d453-b563-492d-85ca-d4e3912c3c99/,Fab8113,,6/24/2018 0:00,15.0000000,16.0000000,43.177235000000,5.370474000000,,Marseille,43453,observation-2672d453-b563-492d-85ca-d4e3912c3c99,https://biolit.fr/observations/observation-2672d453-b563-492d-85ca-d4e3912c3c99/,,,,https://biolit.fr/wp-content/uploads/2023/07/Anémone verte_0-scaled.jpg,,FALSE, +N1,59597,sortie-2672d453-b563-492d-85ca-d4e3912c3c99,https://biolit.fr/sorties/sortie-2672d453-b563-492d-85ca-d4e3912c3c99/,Fab8113,,6/24/2018 0:00,15.0000000,16.0000000,43.177235000000,5.370474000000,,Marseille,43455,observation-2672d453-b563-492d-85ca-d4e3912c3c99-2,https://biolit.fr/observations/observation-2672d453-b563-492d-85ca-d4e3912c3c99-2/,Chromis chromis,Castagnole,,https://biolit.fr/wp-content/uploads/2023/07/Castagnoles-scaled.jpg,,TRUE, +N1,59597,sortie-2672d453-b563-492d-85ca-d4e3912c3c99,https://biolit.fr/sorties/sortie-2672d453-b563-492d-85ca-d4e3912c3c99/,Fab8113,,6/24/2018 0:00,15.0000000,16.0000000,43.177235000000,5.370474000000,,Marseille,43457,observation-2672d453-b563-492d-85ca-d4e3912c3c99-3,https://biolit.fr/observations/observation-2672d453-b563-492d-85ca-d4e3912c3c99-3/,Symphodus tinca,Crénilabre-paon,,https://biolit.fr/wp-content/uploads/2023/07/Crénilabre paon (mâle)-scaled.jpg,,TRUE, +N1,59597,sortie-2672d453-b563-492d-85ca-d4e3912c3c99,https://biolit.fr/sorties/sortie-2672d453-b563-492d-85ca-d4e3912c3c99/,Fab8113,,6/24/2018 0:00,15.0000000,16.0000000,43.177235000000,5.370474000000,,Marseille,43459,observation-2672d453-b563-492d-85ca-d4e3912c3c99-4,https://biolit.fr/observations/observation-2672d453-b563-492d-85ca-d4e3912c3c99-4/,Echinaster (Echinaster) sepositus,Etoile de mer rouge,,https://biolit.fr/wp-content/uploads/2023/07/Etoile de Mer-scaled.jpg,,TRUE, +N1,59597,sortie-2672d453-b563-492d-85ca-d4e3912c3c99,https://biolit.fr/sorties/sortie-2672d453-b563-492d-85ca-d4e3912c3c99/,Fab8113,,6/24/2018 0:00,15.0000000,16.0000000,43.177235000000,5.370474000000,,Marseille,43461,observation-2672d453-b563-492d-85ca-d4e3912c3c99-5,https://biolit.fr/observations/observation-2672d453-b563-492d-85ca-d4e3912c3c99-5/,Paramuricea clavata,Gorgone pourpre,,https://biolit.fr/wp-content/uploads/2023/07/Gorgone rouge-scaled.jpg,,TRUE, +N1,59597,sortie-2672d453-b563-492d-85ca-d4e3912c3c99,https://biolit.fr/sorties/sortie-2672d453-b563-492d-85ca-d4e3912c3c99/,Fab8113,,6/24/2018 0:00,15.0000000,16.0000000,43.177235000000,5.370474000000,,Marseille,43463,observation-2672d453-b563-492d-85ca-d4e3912c3c99-6,https://biolit.fr/observations/observation-2672d453-b563-492d-85ca-d4e3912c3c99-6/,Paramuricea clavata,Gorgone pourpre,,https://biolit.fr/wp-content/uploads/2023/07/Gorgone rouge_2-scaled.jpg,,TRUE, +N1,59597,sortie-2672d453-b563-492d-85ca-d4e3912c3c99,https://biolit.fr/sorties/sortie-2672d453-b563-492d-85ca-d4e3912c3c99/,Fab8113,,6/24/2018 0:00,15.0000000,16.0000000,43.177235000000,5.370474000000,,Marseille,43465,observation-2672d453-b563-492d-85ca-d4e3912c3c99-7,https://biolit.fr/observations/observation-2672d453-b563-492d-85ca-d4e3912c3c99-7/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/Oursin noir-scaled.jpg,,TRUE, +N1,59597,sortie-2672d453-b563-492d-85ca-d4e3912c3c99,https://biolit.fr/sorties/sortie-2672d453-b563-492d-85ca-d4e3912c3c99/,Fab8113,,6/24/2018 0:00,15.0000000,16.0000000,43.177235000000,5.370474000000,,Marseille,43467,observation-2672d453-b563-492d-85ca-d4e3912c3c99-8,https://biolit.fr/observations/observation-2672d453-b563-492d-85ca-d4e3912c3c99-8/,Sphaerechinus granularis,Oursin granuleux,,https://biolit.fr/wp-content/uploads/2023/07/Oursin violet à pointes blanches-scaled.jpg,,TRUE, +N1,59597,sortie-2672d453-b563-492d-85ca-d4e3912c3c99,https://biolit.fr/sorties/sortie-2672d453-b563-492d-85ca-d4e3912c3c99/,Fab8113,,6/24/2018 0:00,15.0000000,16.0000000,43.177235000000,5.370474000000,,Marseille,43469,observation-2672d453-b563-492d-85ca-d4e3912c3c99-9,https://biolit.fr/observations/observation-2672d453-b563-492d-85ca-d4e3912c3c99-9/,Scorpaena porcus,Rascasse brune,,https://biolit.fr/wp-content/uploads/2023/07/Rascasse-scaled.jpg,,TRUE, +N1,59597,sortie-2672d453-b563-492d-85ca-d4e3912c3c99,https://biolit.fr/sorties/sortie-2672d453-b563-492d-85ca-d4e3912c3c99/,Fab8113,,6/24/2018 0:00,15.0000000,16.0000000,43.177235000000,5.370474000000,,Marseille,43471,observation-2672d453-b563-492d-85ca-d4e3912c3c99-10,https://biolit.fr/observations/observation-2672d453-b563-492d-85ca-d4e3912c3c99-10/,Diplodus sargus,Sar commun de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/Sar Commun-scaled.jpg,,TRUE, +N1,59597,sortie-2672d453-b563-492d-85ca-d4e3912c3c99,https://biolit.fr/sorties/sortie-2672d453-b563-492d-85ca-d4e3912c3c99/,Fab8113,,6/24/2018 0:00,15.0000000,16.0000000,43.177235000000,5.370474000000,,Marseille,43472,observation-2672d453-b563-492d-85ca-d4e3912c3c99-11,https://biolit.fr/observations/observation-2672d453-b563-492d-85ca-d4e3912c3c99-11/,Diplodus vulgaris,Sar à tête noire,,https://biolit.fr/wp-content/uploads/2023/07/Sars à tête noire et castagnoles-scaled.jpg,,TRUE, +N1,59598,sortie-fa9370ae-7b20-427f-a53b-ecd8e2e212d6,https://biolit.fr/sorties/sortie-fa9370ae-7b20-427f-a53b-ecd8e2e212d6/,Phil,,06/02/2018,12.0000000,12.0000000,48.168352000000,-4.298529000000,,Plomodiern - Finistère,43474,observation-fa9370ae-7b20-427f-a53b-ecd8e2e212d6,https://biolit.fr/observations/observation-fa9370ae-7b20-427f-a53b-ecd8e2e212d6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110635.JPG,,FALSE, +N1,59598,sortie-fa9370ae-7b20-427f-a53b-ecd8e2e212d6,https://biolit.fr/sorties/sortie-fa9370ae-7b20-427f-a53b-ecd8e2e212d6/,Phil,,06/02/2018,12.0000000,12.0000000,48.168352000000,-4.298529000000,,Plomodiern - Finistère,43476,observation-fa9370ae-7b20-427f-a53b-ecd8e2e212d6-2,https://biolit.fr/observations/observation-fa9370ae-7b20-427f-a53b-ecd8e2e212d6-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1110639.JPG,,TRUE, +N1,59598,sortie-fa9370ae-7b20-427f-a53b-ecd8e2e212d6,https://biolit.fr/sorties/sortie-fa9370ae-7b20-427f-a53b-ecd8e2e212d6/,Phil,,06/02/2018,12.0000000,12.0000000,48.168352000000,-4.298529000000,,Plomodiern - Finistère,43478,observation-fa9370ae-7b20-427f-a53b-ecd8e2e212d6-3,https://biolit.fr/observations/observation-fa9370ae-7b20-427f-a53b-ecd8e2e212d6-3/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1110640.JPG,,TRUE, +N1,59598,sortie-fa9370ae-7b20-427f-a53b-ecd8e2e212d6,https://biolit.fr/sorties/sortie-fa9370ae-7b20-427f-a53b-ecd8e2e212d6/,Phil,,06/02/2018,12.0000000,12.0000000,48.168352000000,-4.298529000000,,Plomodiern - Finistère,43480,observation-fa9370ae-7b20-427f-a53b-ecd8e2e212d6-4,https://biolit.fr/observations/observation-fa9370ae-7b20-427f-a53b-ecd8e2e212d6-4/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1110642.JPG,,TRUE, +N1,59598,sortie-fa9370ae-7b20-427f-a53b-ecd8e2e212d6,https://biolit.fr/sorties/sortie-fa9370ae-7b20-427f-a53b-ecd8e2e212d6/,Phil,,06/02/2018,12.0000000,12.0000000,48.168352000000,-4.298529000000,,Plomodiern - Finistère,43482,observation-fa9370ae-7b20-427f-a53b-ecd8e2e212d6-5,https://biolit.fr/observations/observation-fa9370ae-7b20-427f-a53b-ecd8e2e212d6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110645.JPG,,FALSE, +N1,59598,sortie-fa9370ae-7b20-427f-a53b-ecd8e2e212d6,https://biolit.fr/sorties/sortie-fa9370ae-7b20-427f-a53b-ecd8e2e212d6/,Phil,,06/02/2018,12.0000000,12.0000000,48.168352000000,-4.298529000000,,Plomodiern - Finistère,43484,observation-fa9370ae-7b20-427f-a53b-ecd8e2e212d6-6,https://biolit.fr/observations/observation-fa9370ae-7b20-427f-a53b-ecd8e2e212d6-6/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1110633.JPG,,TRUE, +N1,59598,sortie-fa9370ae-7b20-427f-a53b-ecd8e2e212d6,https://biolit.fr/sorties/sortie-fa9370ae-7b20-427f-a53b-ecd8e2e212d6/,Phil,,06/02/2018,12.0000000,12.0000000,48.168352000000,-4.298529000000,,Plomodiern - Finistère,43486,observation-fa9370ae-7b20-427f-a53b-ecd8e2e212d6-7,https://biolit.fr/observations/observation-fa9370ae-7b20-427f-a53b-ecd8e2e212d6-7/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1110636.JPG,,TRUE, +N1,59599,sortie-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b,https://biolit.fr/sorties/sortie-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b/,Phil,,5/17/2018 0:00,12.0000000,12.0:25,47.893175000000,-3.968068000000,,La Forêt-Fouesnant - Kerleven,43488,observation-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b,https://biolit.fr/observations/observation-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1110344.JPG,,TRUE, +N1,59599,sortie-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b,https://biolit.fr/sorties/sortie-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b/,Phil,,5/17/2018 0:00,12.0000000,12.0:25,47.893175000000,-3.968068000000,,La Forêt-Fouesnant - Kerleven,43490,observation-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b-2,https://biolit.fr/observations/observation-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110348.JPG,,FALSE, +N1,59599,sortie-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b,https://biolit.fr/sorties/sortie-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b/,Phil,,5/17/2018 0:00,12.0000000,12.0:25,47.893175000000,-3.968068000000,,La Forêt-Fouesnant - Kerleven,43492,observation-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b-3,https://biolit.fr/observations/observation-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110349.JPG,,FALSE, +N1,59599,sortie-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b,https://biolit.fr/sorties/sortie-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b/,Phil,,5/17/2018 0:00,12.0000000,12.0:25,47.893175000000,-3.968068000000,,La Forêt-Fouesnant - Kerleven,43494,observation-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b-4,https://biolit.fr/observations/observation-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110350.JPG,,FALSE, +N1,59599,sortie-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b,https://biolit.fr/sorties/sortie-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b/,Phil,,5/17/2018 0:00,12.0000000,12.0:25,47.893175000000,-3.968068000000,,La Forêt-Fouesnant - Kerleven,43496,observation-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b-5,https://biolit.fr/observations/observation-b25fcb6f-95f2-4618-a41f-b2ba9b755e4b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110353.JPG,,FALSE, +N1,59600,sortie-cb659767-8c64-4fc3-aebc-675f10b2762c,https://biolit.fr/sorties/sortie-cb659767-8c64-4fc3-aebc-675f10b2762c/,Socam,,07/01/2018,9.0:35,10.0000000,43.19671000000,5.361538000000,,"Marseille, Calanques",43498,observation-cb659767-8c64-4fc3-aebc-675f10b2762c,https://biolit.fr/observations/observation-cb659767-8c64-4fc3-aebc-675f10b2762c/,Peltodoris atromaculata,Doris dalmatienne,,https://biolit.fr/wp-content/uploads/2023/07/DSC03351.JPG,,TRUE, +N1,59600,sortie-cb659767-8c64-4fc3-aebc-675f10b2762c,https://biolit.fr/sorties/sortie-cb659767-8c64-4fc3-aebc-675f10b2762c/,Socam,,07/01/2018,9.0:35,10.0000000,43.19671000000,5.361538000000,,"Marseille, Calanques",43500,observation-cb659767-8c64-4fc3-aebc-675f10b2762c-2,https://biolit.fr/observations/observation-cb659767-8c64-4fc3-aebc-675f10b2762c-2/,Palinurus elephas,Langouste rouge,,https://biolit.fr/wp-content/uploads/2023/07/DSC03356.JPG,,TRUE, +N1,59600,sortie-cb659767-8c64-4fc3-aebc-675f10b2762c,https://biolit.fr/sorties/sortie-cb659767-8c64-4fc3-aebc-675f10b2762c/,Socam,,07/01/2018,9.0:35,10.0000000,43.19671000000,5.361538000000,,"Marseille, Calanques",43502,observation-cb659767-8c64-4fc3-aebc-675f10b2762c-3,https://biolit.fr/observations/observation-cb659767-8c64-4fc3-aebc-675f10b2762c-3/,Felimare tricolor,Doris tricolore,,https://biolit.fr/wp-content/uploads/2023/07/DSC03358.JPG,,TRUE, +N1,59600,sortie-cb659767-8c64-4fc3-aebc-675f10b2762c,https://biolit.fr/sorties/sortie-cb659767-8c64-4fc3-aebc-675f10b2762c/,Socam,,07/01/2018,9.0:35,10.0000000,43.19671000000,5.361538000000,,"Marseille, Calanques",43504,observation-cb659767-8c64-4fc3-aebc-675f10b2762c-4,https://biolit.fr/observations/observation-cb659767-8c64-4fc3-aebc-675f10b2762c-4/,Cratena peregrina,Hervia,,https://biolit.fr/wp-content/uploads/2023/07/DSC03360.JPG,,TRUE, +N1,59600,sortie-cb659767-8c64-4fc3-aebc-675f10b2762c,https://biolit.fr/sorties/sortie-cb659767-8c64-4fc3-aebc-675f10b2762c/,Socam,,07/01/2018,9.0:35,10.0000000,43.19671000000,5.361538000000,,"Marseille, Calanques",43506,observation-cb659767-8c64-4fc3-aebc-675f10b2762c-5,https://biolit.fr/observations/observation-cb659767-8c64-4fc3-aebc-675f10b2762c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03361.JPG,,FALSE, +N1,59600,sortie-cb659767-8c64-4fc3-aebc-675f10b2762c,https://biolit.fr/sorties/sortie-cb659767-8c64-4fc3-aebc-675f10b2762c/,Socam,,07/01/2018,9.0:35,10.0000000,43.19671000000,5.361538000000,,"Marseille, Calanques",43508,observation-cb659767-8c64-4fc3-aebc-675f10b2762c-6,https://biolit.fr/observations/observation-cb659767-8c64-4fc3-aebc-675f10b2762c-6/,Serranus cabrilla,Serran-chèvre,,https://biolit.fr/wp-content/uploads/2023/07/DSC03363.JPG,,TRUE, +N1,59600,sortie-cb659767-8c64-4fc3-aebc-675f10b2762c,https://biolit.fr/sorties/sortie-cb659767-8c64-4fc3-aebc-675f10b2762c/,Socam,,07/01/2018,9.0:35,10.0000000,43.19671000000,5.361538000000,,"Marseille, Calanques",43510,observation-cb659767-8c64-4fc3-aebc-675f10b2762c-7,https://biolit.fr/observations/observation-cb659767-8c64-4fc3-aebc-675f10b2762c-7/,Leptogorgia sarmentosa,Gorgone orange,,https://biolit.fr/wp-content/uploads/2023/07/DSC03345-scaled.jpg,,TRUE, +N1,59601,sortie-bda08560-a6b0-4fab-8c7a-a104a307c1df,https://biolit.fr/sorties/sortie-bda08560-a6b0-4fab-8c7a-a104a307c1df/,Guillaume D,,6/27/2018 0:00,10.0000000,12.0000000,46.13967800000,-1.172799000000,,"La Rochelle, Plage des Minimes",43512,observation-bda08560-a6b0-4fab-8c7a-a104a307c1df,https://biolit.fr/observations/observation-bda08560-a6b0-4fab-8c7a-a104a307c1df/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20180627_111724-scaled.jpg,,TRUE, +N1,59601,sortie-bda08560-a6b0-4fab-8c7a-a104a307c1df,https://biolit.fr/sorties/sortie-bda08560-a6b0-4fab-8c7a-a104a307c1df/,Guillaume D,,6/27/2018 0:00,10.0000000,12.0000000,46.13967800000,-1.172799000000,,"La Rochelle, Plage des Minimes",43514,observation-bda08560-a6b0-4fab-8c7a-a104a307c1df-2,https://biolit.fr/observations/observation-bda08560-a6b0-4fab-8c7a-a104a307c1df-2/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180627_112426-scaled.jpg,,TRUE, +N1,59602,sortie-9f9043fa-c5d7-45c9-ab95-d685b2123f0f,https://biolit.fr/sorties/sortie-9f9043fa-c5d7-45c9-ab95-d685b2123f0f/,Guillaume D,,6/19/2018 0:00,14.0000000,15.0000000,46.105545000000,-1.135409000000,,"Angoulins, Plage de la Platère",43516,observation-9f9043fa-c5d7-45c9-ab95-d685b2123f0f,https://biolit.fr/observations/observation-9f9043fa-c5d7-45c9-ab95-d685b2123f0f/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8240_modif5Mo-scaled.jpg,,FALSE, +N1,59602,sortie-9f9043fa-c5d7-45c9-ab95-d685b2123f0f,https://biolit.fr/sorties/sortie-9f9043fa-c5d7-45c9-ab95-d685b2123f0f/,Guillaume D,,6/19/2018 0:00,14.0000000,15.0000000,46.105545000000,-1.135409000000,,"Angoulins, Plage de la Platère",43518,observation-9f9043fa-c5d7-45c9-ab95-d685b2123f0f-2,https://biolit.fr/observations/observation-9f9043fa-c5d7-45c9-ab95-d685b2123f0f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8244_modif5Mo.jpg,,FALSE, +N1,59603,sortie-95622ee7-2ee0-43df-89c5-5a333329b587,https://biolit.fr/sorties/sortie-95622ee7-2ee0-43df-89c5-5a333329b587/,Septentrion Environnement,,6/24/2018 0:00,10.0000000,10.0:45,43.177481000000,5.372610000000,,La Calanque de la Boulegeade,43520,observation-95622ee7-2ee0-43df-89c5-5a333329b587,https://biolit.fr/observations/observation-95622ee7-2ee0-43df-89c5-5a333329b587/,Epinephelus marginatus,Mérou brun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3764-scaled.jpg,,TRUE, +N1,59604,sortie-a3577fcd-89b8-4a5d-9636-a0741490590e,https://biolit.fr/sorties/sortie-a3577fcd-89b8-4a5d-9636-a0741490590e/,Phil,,5/27/2018 0:00,14.0:35,14.0000000,47.799475000000,-4.178632000000,,Loctudy - Finistère,43522,observation-a3577fcd-89b8-4a5d-9636-a0741490590e,https://biolit.fr/observations/observation-a3577fcd-89b8-4a5d-9636-a0741490590e/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180527_143939.jpg,,FALSE, +N1,59604,sortie-a3577fcd-89b8-4a5d-9636-a0741490590e,https://biolit.fr/sorties/sortie-a3577fcd-89b8-4a5d-9636-a0741490590e/,Phil,,5/27/2018 0:00,14.0:35,14.0000000,47.799475000000,-4.178632000000,,Loctudy - Finistère,43524,observation-a3577fcd-89b8-4a5d-9636-a0741490590e-2,https://biolit.fr/observations/observation-a3577fcd-89b8-4a5d-9636-a0741490590e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180527_143934.jpg,,FALSE, +N1,59604,sortie-a3577fcd-89b8-4a5d-9636-a0741490590e,https://biolit.fr/sorties/sortie-a3577fcd-89b8-4a5d-9636-a0741490590e/,Phil,,5/27/2018 0:00,14.0:35,14.0000000,47.799475000000,-4.178632000000,,Loctudy - Finistère,43526,observation-a3577fcd-89b8-4a5d-9636-a0741490590e-3,https://biolit.fr/observations/observation-a3577fcd-89b8-4a5d-9636-a0741490590e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180527_143930.jpg,,FALSE, +N1,59604,sortie-a3577fcd-89b8-4a5d-9636-a0741490590e,https://biolit.fr/sorties/sortie-a3577fcd-89b8-4a5d-9636-a0741490590e/,Phil,,5/27/2018 0:00,14.0:35,14.0000000,47.799475000000,-4.178632000000,,Loctudy - Finistère,43528,observation-a3577fcd-89b8-4a5d-9636-a0741490590e-4,https://biolit.fr/observations/observation-a3577fcd-89b8-4a5d-9636-a0741490590e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180527_143923.jpg,,FALSE, +N1,59604,sortie-a3577fcd-89b8-4a5d-9636-a0741490590e,https://biolit.fr/sorties/sortie-a3577fcd-89b8-4a5d-9636-a0741490590e/,Phil,,5/27/2018 0:00,14.0:35,14.0000000,47.799475000000,-4.178632000000,,Loctudy - Finistère,43530,observation-a3577fcd-89b8-4a5d-9636-a0741490590e-5,https://biolit.fr/observations/observation-a3577fcd-89b8-4a5d-9636-a0741490590e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180527_143837.jpg,,FALSE, +N1,59605,sortie-7981d909-db32-45ad-93bd-00be3c58c521,https://biolit.fr/sorties/sortie-7981d909-db32-45ad-93bd-00be3c58c521/,Phil,,5/18/2018 0:00,21.0000000,21.0:35,48.210309000000,-4.370078000000,,Telgruc sur Mer - Finistère,43532,observation-7981d909-db32-45ad-93bd-00be3c58c521,https://biolit.fr/observations/observation-7981d909-db32-45ad-93bd-00be3c58c521/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110404.JPG,,FALSE, +N1,59605,sortie-7981d909-db32-45ad-93bd-00be3c58c521,https://biolit.fr/sorties/sortie-7981d909-db32-45ad-93bd-00be3c58c521/,Phil,,5/18/2018 0:00,21.0000000,21.0:35,48.210309000000,-4.370078000000,,Telgruc sur Mer - Finistère,43534,observation-7981d909-db32-45ad-93bd-00be3c58c521-2,https://biolit.fr/observations/observation-7981d909-db32-45ad-93bd-00be3c58c521-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110405.JPG,,FALSE, +N1,59605,sortie-7981d909-db32-45ad-93bd-00be3c58c521,https://biolit.fr/sorties/sortie-7981d909-db32-45ad-93bd-00be3c58c521/,Phil,,5/18/2018 0:00,21.0000000,21.0:35,48.210309000000,-4.370078000000,,Telgruc sur Mer - Finistère,43536,observation-7981d909-db32-45ad-93bd-00be3c58c521-3,https://biolit.fr/observations/observation-7981d909-db32-45ad-93bd-00be3c58c521-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110406.JPG,,FALSE, +N1,59605,sortie-7981d909-db32-45ad-93bd-00be3c58c521,https://biolit.fr/sorties/sortie-7981d909-db32-45ad-93bd-00be3c58c521/,Phil,,5/18/2018 0:00,21.0000000,21.0:35,48.210309000000,-4.370078000000,,Telgruc sur Mer - Finistère,43538,observation-7981d909-db32-45ad-93bd-00be3c58c521-4,https://biolit.fr/observations/observation-7981d909-db32-45ad-93bd-00be3c58c521-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110407.JPG,,FALSE, +N1,59606,sortie-b430c9b6-9958-4217-ba0d-bb2b57e48710,https://biolit.fr/sorties/sortie-b430c9b6-9958-4217-ba0d-bb2b57e48710/,Phil,,06/02/2018,11.0000000,12.000005,48.168207000000,-4.298495000000,,Plomodiern - Finistère,43540,observation-b430c9b6-9958-4217-ba0d-bb2b57e48710,https://biolit.fr/observations/observation-b430c9b6-9958-4217-ba0d-bb2b57e48710/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1110615.JPG,,TRUE, +N1,59606,sortie-b430c9b6-9958-4217-ba0d-bb2b57e48710,https://biolit.fr/sorties/sortie-b430c9b6-9958-4217-ba0d-bb2b57e48710/,Phil,,06/02/2018,11.0000000,12.000005,48.168207000000,-4.298495000000,,Plomodiern - Finistère,43542,observation-b430c9b6-9958-4217-ba0d-bb2b57e48710-2,https://biolit.fr/observations/observation-b430c9b6-9958-4217-ba0d-bb2b57e48710-2/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/2023/07/P1110619.JPG,,TRUE, +N1,59606,sortie-b430c9b6-9958-4217-ba0d-bb2b57e48710,https://biolit.fr/sorties/sortie-b430c9b6-9958-4217-ba0d-bb2b57e48710/,Phil,,06/02/2018,11.0000000,12.000005,48.168207000000,-4.298495000000,,Plomodiern - Finistère,43544,observation-b430c9b6-9958-4217-ba0d-bb2b57e48710-3,https://biolit.fr/observations/observation-b430c9b6-9958-4217-ba0d-bb2b57e48710-3/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/P1110623.JPG,,TRUE, +N1,59606,sortie-b430c9b6-9958-4217-ba0d-bb2b57e48710,https://biolit.fr/sorties/sortie-b430c9b6-9958-4217-ba0d-bb2b57e48710/,Phil,,06/02/2018,11.0000000,12.000005,48.168207000000,-4.298495000000,,Plomodiern - Finistère,43546,observation-b430c9b6-9958-4217-ba0d-bb2b57e48710-4,https://biolit.fr/observations/observation-b430c9b6-9958-4217-ba0d-bb2b57e48710-4/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/P1110624.JPG,,TRUE, +N1,59606,sortie-b430c9b6-9958-4217-ba0d-bb2b57e48710,https://biolit.fr/sorties/sortie-b430c9b6-9958-4217-ba0d-bb2b57e48710/,Phil,,06/02/2018,11.0000000,12.000005,48.168207000000,-4.298495000000,,Plomodiern - Finistère,43548,observation-b430c9b6-9958-4217-ba0d-bb2b57e48710-5,https://biolit.fr/observations/observation-b430c9b6-9958-4217-ba0d-bb2b57e48710-5/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/P1110628.JPG,,TRUE, +N1,59606,sortie-b430c9b6-9958-4217-ba0d-bb2b57e48710,https://biolit.fr/sorties/sortie-b430c9b6-9958-4217-ba0d-bb2b57e48710/,Phil,,06/02/2018,11.0000000,12.000005,48.168207000000,-4.298495000000,,Plomodiern - Finistère,43550,observation-b430c9b6-9958-4217-ba0d-bb2b57e48710-6,https://biolit.fr/observations/observation-b430c9b6-9958-4217-ba0d-bb2b57e48710-6/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1110630.JPG,,TRUE, +N1,59607,sortie-53b9b440-7aba-44c2-8654-d63bbc9716e0,https://biolit.fr/sorties/sortie-53b9b440-7aba-44c2-8654-d63bbc9716e0/,Phil,,05/01/2018,13.0:15,13.0:25,47.798933000000,-4.177130000000,,Loctudy - Finistère,43552,observation-53b9b440-7aba-44c2-8654-d63bbc9716e0,https://biolit.fr/observations/observation-53b9b440-7aba-44c2-8654-d63bbc9716e0/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_131400.jpg,,FALSE, +N1,59607,sortie-53b9b440-7aba-44c2-8654-d63bbc9716e0,https://biolit.fr/sorties/sortie-53b9b440-7aba-44c2-8654-d63bbc9716e0/,Phil,,05/01/2018,13.0:15,13.0:25,47.798933000000,-4.177130000000,,Loctudy - Finistère,43554,observation-53b9b440-7aba-44c2-8654-d63bbc9716e0-2,https://biolit.fr/observations/observation-53b9b440-7aba-44c2-8654-d63bbc9716e0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_131456.jpg,,FALSE, +N1,59607,sortie-53b9b440-7aba-44c2-8654-d63bbc9716e0,https://biolit.fr/sorties/sortie-53b9b440-7aba-44c2-8654-d63bbc9716e0/,Phil,,05/01/2018,13.0:15,13.0:25,47.798933000000,-4.177130000000,,Loctudy - Finistère,43556,observation-53b9b440-7aba-44c2-8654-d63bbc9716e0-3,https://biolit.fr/observations/observation-53b9b440-7aba-44c2-8654-d63bbc9716e0-3/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20180501_132242.jpg,,TRUE, +N1,59607,sortie-53b9b440-7aba-44c2-8654-d63bbc9716e0,https://biolit.fr/sorties/sortie-53b9b440-7aba-44c2-8654-d63bbc9716e0/,Phil,,05/01/2018,13.0:15,13.0:25,47.798933000000,-4.177130000000,,Loctudy - Finistère,43558,observation-53b9b440-7aba-44c2-8654-d63bbc9716e0-4,https://biolit.fr/observations/observation-53b9b440-7aba-44c2-8654-d63bbc9716e0-4/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/20180501_132757.jpg,,TRUE, +N1,59607,sortie-53b9b440-7aba-44c2-8654-d63bbc9716e0,https://biolit.fr/sorties/sortie-53b9b440-7aba-44c2-8654-d63bbc9716e0/,Phil,,05/01/2018,13.0:15,13.0:25,47.798933000000,-4.177130000000,,Loctudy - Finistère,43560,observation-53b9b440-7aba-44c2-8654-d63bbc9716e0-5,https://biolit.fr/observations/observation-53b9b440-7aba-44c2-8654-d63bbc9716e0-5/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180501_132707.jpg,,TRUE, +N1,59607,sortie-53b9b440-7aba-44c2-8654-d63bbc9716e0,https://biolit.fr/sorties/sortie-53b9b440-7aba-44c2-8654-d63bbc9716e0/,Phil,,05/01/2018,13.0:15,13.0:25,47.798933000000,-4.177130000000,,Loctudy - Finistère,43562,observation-53b9b440-7aba-44c2-8654-d63bbc9716e0-6,https://biolit.fr/observations/observation-53b9b440-7aba-44c2-8654-d63bbc9716e0-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_132722.jpg,,FALSE, +N1,59608,sortie-aa002b3b-bfe0-4208-b29a-e1c7b7453ccd,https://biolit.fr/sorties/sortie-aa002b3b-bfe0-4208-b29a-e1c7b7453ccd/,PEP Le Hedraou,,6/16/2018 0:00,14.0000000,16.0000000,48.815814000000,-3.427100000000,,Pors ar goret,43564,observation-aa002b3b-bfe0-4208-b29a-e1c7b7453ccd,https://biolit.fr/observations/observation-aa002b3b-bfe0-4208-b29a-e1c7b7453ccd/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2695_0-scaled.jpg,,FALSE, +N1,59609,sortie-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9,https://biolit.fr/sorties/sortie-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9/,Phil,,4/28/2018 0:00,11.0000000,11.0:45,47.895018000000,-3.97175500000,,La Forêt-Fouesnant - Finistère,43566,observation-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9,https://biolit.fr/observations/observation-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/P1110147.JPG,,TRUE, +N1,59609,sortie-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9,https://biolit.fr/sorties/sortie-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9/,Phil,,4/28/2018 0:00,11.0000000,11.0:45,47.895018000000,-3.97175500000,,La Forêt-Fouesnant - Finistère,43568,observation-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9-2,https://biolit.fr/observations/observation-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110146.JPG,,TRUE, +N1,59609,sortie-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9,https://biolit.fr/sorties/sortie-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9/,Phil,,4/28/2018 0:00,11.0000000,11.0:45,47.895018000000,-3.97175500000,,La Forêt-Fouesnant - Finistère,43570,observation-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9-3,"""https://biolit.fr/observations/observation-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9-3/""",Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/P1110145.JPG,,TRUE, +N1,59609,sortie-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9,https://biolit.fr/sorties/sortie-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9/,Phil,,4/28/2018 0:00,11.0000000,11.0:45,47.895018000000,-3.97175500000,,La Forêt-Fouesnant - Finistère,43572,observation-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9-4,https://biolit.fr/observations/observation-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9-4/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1110138.JPG,,TRUE, +N1,59609,sortie-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9,https://biolit.fr/sorties/sortie-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9/,Phil,,4/28/2018 0:00,11.0000000,11.0:45,47.895018000000,-3.97175500000,,La Forêt-Fouesnant - Finistère,43574,observation-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9-5,https://biolit.fr/observations/observation-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9-5/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1110139.JPG,,TRUE, +N1,59609,sortie-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9,https://biolit.fr/sorties/sortie-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9/,Phil,,4/28/2018 0:00,11.0000000,11.0:45,47.895018000000,-3.97175500000,,La Forêt-Fouesnant - Finistère,43576,observation-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9-6,https://biolit.fr/observations/observation-4cbdadd2-7b9e-4ccc-ac83-bd07fdb725d9-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110141.JPG,,FALSE, +N1,59610,sortie-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd,https://biolit.fr/sorties/sortie-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd/,Phil,,05/01/2018,14.000005,14.0:15,47.800732000000,-4.182066000000,,Loctudy - Finistère,43578,observation-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd,https://biolit.fr/observations/observation-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20180501_140703.jpg,,TRUE, +N1,59610,sortie-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd,https://biolit.fr/sorties/sortie-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd/,Phil,,05/01/2018,14.000005,14.0:15,47.800732000000,-4.182066000000,,Loctudy - Finistère,43580,observation-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd-2,https://biolit.fr/observations/observation-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd-2/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20180501_140652.jpg,,TRUE, +N1,59610,sortie-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd,https://biolit.fr/sorties/sortie-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd/,Phil,,05/01/2018,14.000005,14.0:15,47.800732000000,-4.182066000000,,Loctudy - Finistère,43582,observation-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd-3,https://biolit.fr/observations/observation-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_140607.jpg,,FALSE, +N1,59610,sortie-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd,https://biolit.fr/sorties/sortie-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd/,Phil,,05/01/2018,14.000005,14.0:15,47.800732000000,-4.182066000000,,Loctudy - Finistère,43584,observation-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd-4,https://biolit.fr/observations/observation-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180501_140805.jpg,,TRUE, +N1,59610,sortie-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd,https://biolit.fr/sorties/sortie-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd/,Phil,,05/01/2018,14.000005,14.0:15,47.800732000000,-4.182066000000,,Loctudy - Finistère,43586,observation-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd-5,https://biolit.fr/observations/observation-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd-5/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20180501_141310.jpg,,TRUE, +N1,59610,sortie-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd,https://biolit.fr/sorties/sortie-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd/,Phil,,05/01/2018,14.000005,14.0:15,47.800732000000,-4.182066000000,,Loctudy - Finistère,43588,observation-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd-6,https://biolit.fr/observations/observation-21d4c5bb-4cf6-43e5-a57b-cc147c9163fd-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_140911.jpg,,FALSE, +N1,59611,sortie-7f927f77-d2de-4642-9dbb-a77aeca61d87,https://biolit.fr/sorties/sortie-7f927f77-d2de-4642-9dbb-a77aeca61d87/,RBBBM,,6/17/2018 0:00,13.0000000,15.0000000,47.807076000000,-3.712838000000,,Moëlan anse du Gorgen,43590,observation-7f927f77-d2de-4642-9dbb-a77aeca61d87,https://biolit.fr/observations/observation-7f927f77-d2de-4642-9dbb-a77aeca61d87/,Doris verrucosa,Doris verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2429-scaled.jpg,,TRUE, +N1,59611,sortie-7f927f77-d2de-4642-9dbb-a77aeca61d87,https://biolit.fr/sorties/sortie-7f927f77-d2de-4642-9dbb-a77aeca61d87/,RBBBM,,6/17/2018 0:00,13.0000000,15.0000000,47.807076000000,-3.712838000000,,Moëlan anse du Gorgen,43592,observation-7f927f77-d2de-4642-9dbb-a77aeca61d87-2,https://biolit.fr/observations/observation-7f927f77-d2de-4642-9dbb-a77aeca61d87-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2424-scaled.jpg,,FALSE, +N1,59611,sortie-7f927f77-d2de-4642-9dbb-a77aeca61d87,https://biolit.fr/sorties/sortie-7f927f77-d2de-4642-9dbb-a77aeca61d87/,RBBBM,,6/17/2018 0:00,13.0000000,15.0000000,47.807076000000,-3.712838000000,,Moëlan anse du Gorgen,43594,observation-7f927f77-d2de-4642-9dbb-a77aeca61d87-3,https://biolit.fr/observations/observation-7f927f77-d2de-4642-9dbb-a77aeca61d87-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2369-scaled.jpg,,FALSE, +N1,59611,sortie-7f927f77-d2de-4642-9dbb-a77aeca61d87,https://biolit.fr/sorties/sortie-7f927f77-d2de-4642-9dbb-a77aeca61d87/,RBBBM,,6/17/2018 0:00,13.0000000,15.0000000,47.807076000000,-3.712838000000,,Moëlan anse du Gorgen,43596,observation-7f927f77-d2de-4642-9dbb-a77aeca61d87-4,https://biolit.fr/observations/observation-7f927f77-d2de-4642-9dbb-a77aeca61d87-4/,Prostheceraeus moseleyi,Planaire tachetée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2447-scaled.jpg,,TRUE, +N1,59611,sortie-7f927f77-d2de-4642-9dbb-a77aeca61d87,https://biolit.fr/sorties/sortie-7f927f77-d2de-4642-9dbb-a77aeca61d87/,RBBBM,,6/17/2018 0:00,13.0000000,15.0000000,47.807076000000,-3.712838000000,,Moëlan anse du Gorgen,43598,observation-7f927f77-d2de-4642-9dbb-a77aeca61d87-5,https://biolit.fr/observations/observation-7f927f77-d2de-4642-9dbb-a77aeca61d87-5/,Perophora japonica,Perophore japonaise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2391_1-scaled.jpg,,TRUE, +N1,59611,sortie-7f927f77-d2de-4642-9dbb-a77aeca61d87,https://biolit.fr/sorties/sortie-7f927f77-d2de-4642-9dbb-a77aeca61d87/,RBBBM,,6/17/2018 0:00,13.0000000,15.0000000,47.807076000000,-3.712838000000,,Moëlan anse du Gorgen,43600,observation-7f927f77-d2de-4642-9dbb-a77aeca61d87-6,https://biolit.fr/observations/observation-7f927f77-d2de-4642-9dbb-a77aeca61d87-6/,Prostheceraeus vittatus,Planaire blanche,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2385_0-scaled.jpg,,TRUE, +N1,59611,sortie-7f927f77-d2de-4642-9dbb-a77aeca61d87,https://biolit.fr/sorties/sortie-7f927f77-d2de-4642-9dbb-a77aeca61d87/,RBBBM,,6/17/2018 0:00,13.0000000,15.0000000,47.807076000000,-3.712838000000,,Moëlan anse du Gorgen,43602,observation-7f927f77-d2de-4642-9dbb-a77aeca61d87-7,https://biolit.fr/observations/observation-7f927f77-d2de-4642-9dbb-a77aeca61d87-7/,Tritia reticulata,Ponte de nasse réticulée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2463-scaled.jpg,,TRUE, +N1,59612,sortie-4567f907-426c-47dd-9ca0-46f5af7b12d5,https://biolit.fr/sorties/sortie-4567f907-426c-47dd-9ca0-46f5af7b12d5/,Phil,,05/01/2018,13.0000000,13.0:55,47.799434000000,-4.177538000000,,Loctudy - Finistère,43604,observation-4567f907-426c-47dd-9ca0-46f5af7b12d5,https://biolit.fr/observations/observation-4567f907-426c-47dd-9ca0-46f5af7b12d5/,Phymatolithon lenormandii,Algue encroûtante rouge de Lenormand,,https://biolit.fr/wp-content/uploads/2023/07/20180501_135143.jpg,,TRUE, +N1,59612,sortie-4567f907-426c-47dd-9ca0-46f5af7b12d5,https://biolit.fr/sorties/sortie-4567f907-426c-47dd-9ca0-46f5af7b12d5/,Phil,,05/01/2018,13.0000000,13.0:55,47.799434000000,-4.177538000000,,Loctudy - Finistère,43606,observation-4567f907-426c-47dd-9ca0-46f5af7b12d5-2,https://biolit.fr/observations/observation-4567f907-426c-47dd-9ca0-46f5af7b12d5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_135150.jpg,,FALSE, +N1,59612,sortie-4567f907-426c-47dd-9ca0-46f5af7b12d5,https://biolit.fr/sorties/sortie-4567f907-426c-47dd-9ca0-46f5af7b12d5/,Phil,,05/01/2018,13.0000000,13.0:55,47.799434000000,-4.177538000000,,Loctudy - Finistère,43608,observation-4567f907-426c-47dd-9ca0-46f5af7b12d5-3,https://biolit.fr/observations/observation-4567f907-426c-47dd-9ca0-46f5af7b12d5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_135153.jpg,,FALSE, +N1,59612,sortie-4567f907-426c-47dd-9ca0-46f5af7b12d5,https://biolit.fr/sorties/sortie-4567f907-426c-47dd-9ca0-46f5af7b12d5/,Phil,,05/01/2018,13.0000000,13.0:55,47.799434000000,-4.177538000000,,Loctudy - Finistère,43610,observation-4567f907-426c-47dd-9ca0-46f5af7b12d5-4,https://biolit.fr/observations/observation-4567f907-426c-47dd-9ca0-46f5af7b12d5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_135250.jpg,,FALSE, +N1,59612,sortie-4567f907-426c-47dd-9ca0-46f5af7b12d5,https://biolit.fr/sorties/sortie-4567f907-426c-47dd-9ca0-46f5af7b12d5/,Phil,,05/01/2018,13.0000000,13.0:55,47.799434000000,-4.177538000000,,Loctudy - Finistère,43612,observation-4567f907-426c-47dd-9ca0-46f5af7b12d5-5,https://biolit.fr/observations/observation-4567f907-426c-47dd-9ca0-46f5af7b12d5-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_135305.jpg,,FALSE, +N1,59612,sortie-4567f907-426c-47dd-9ca0-46f5af7b12d5,https://biolit.fr/sorties/sortie-4567f907-426c-47dd-9ca0-46f5af7b12d5/,Phil,,05/01/2018,13.0000000,13.0:55,47.799434000000,-4.177538000000,,Loctudy - Finistère,43614,observation-4567f907-426c-47dd-9ca0-46f5af7b12d5-6,https://biolit.fr/observations/observation-4567f907-426c-47dd-9ca0-46f5af7b12d5-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_135320.jpg,,FALSE, +N1,59613,sortie-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586,https://biolit.fr/sorties/sortie-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586/,Phil,,06/02/2018,11.0000000,11.0000000,48.167957000000,-4.299050000000,,Plomodiern - Finistère,43616,observation-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586,https://biolit.fr/observations/observation-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1110606.JPG,,TRUE, +N1,59613,sortie-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586,https://biolit.fr/sorties/sortie-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586/,Phil,,06/02/2018,11.0000000,11.0000000,48.167957000000,-4.299050000000,,Plomodiern - Finistère,43618,observation-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586-2,https://biolit.fr/observations/observation-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1110609.JPG,,TRUE, +N1,59613,sortie-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586,https://biolit.fr/sorties/sortie-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586/,Phil,,06/02/2018,11.0000000,11.0000000,48.167957000000,-4.299050000000,,Plomodiern - Finistère,43620,observation-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586-3,https://biolit.fr/observations/observation-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586-3/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1110610.JPG,,TRUE, +N1,59613,sortie-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586,https://biolit.fr/sorties/sortie-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586/,Phil,,06/02/2018,11.0000000,11.0000000,48.167957000000,-4.299050000000,,Plomodiern - Finistère,43622,observation-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586-4,https://biolit.fr/observations/observation-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586-4/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1110611.JPG,,TRUE, +N1,59613,sortie-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586,https://biolit.fr/sorties/sortie-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586/,Phil,,06/02/2018,11.0000000,11.0000000,48.167957000000,-4.299050000000,,Plomodiern - Finistère,43624,observation-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586-5,https://biolit.fr/observations/observation-9eba2cd5-d8b2-4a97-95f9-ef8b18bd3586-5/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1110613.JPG,,TRUE, +N1,59614,sortie-b07a111e-1616-4a4a-bd88-6661ded35efc,https://biolit.fr/sorties/sortie-b07a111e-1616-4a4a-bd88-6661ded35efc/,Phil,,4/28/2018 0:00,11.0:35,11.0000000,47.894605000000,-3.971459000000,,La Forêt-Fouesnant - Finistère,43626,observation-b07a111e-1616-4a4a-bd88-6661ded35efc,https://biolit.fr/observations/observation-b07a111e-1616-4a4a-bd88-6661ded35efc/,Pomatoschistus microps,Gobie tacheté,,https://biolit.fr/wp-content/uploads/2023/07/P1110132.JPG,,TRUE, +N1,59614,sortie-b07a111e-1616-4a4a-bd88-6661ded35efc,https://biolit.fr/sorties/sortie-b07a111e-1616-4a4a-bd88-6661ded35efc/,Phil,,4/28/2018 0:00,11.0:35,11.0000000,47.894605000000,-3.971459000000,,La Forêt-Fouesnant - Finistère,43628,observation-b07a111e-1616-4a4a-bd88-6661ded35efc-2,https://biolit.fr/observations/observation-b07a111e-1616-4a4a-bd88-6661ded35efc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110129.JPG,,FALSE, +N1,59614,sortie-b07a111e-1616-4a4a-bd88-6661ded35efc,https://biolit.fr/sorties/sortie-b07a111e-1616-4a4a-bd88-6661ded35efc/,Phil,,4/28/2018 0:00,11.0:35,11.0000000,47.894605000000,-3.971459000000,,La Forêt-Fouesnant - Finistère,43630,observation-b07a111e-1616-4a4a-bd88-6661ded35efc-3,https://biolit.fr/observations/observation-b07a111e-1616-4a4a-bd88-6661ded35efc-3/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/P1110125.JPG,,TRUE, +N1,59614,sortie-b07a111e-1616-4a4a-bd88-6661ded35efc,https://biolit.fr/sorties/sortie-b07a111e-1616-4a4a-bd88-6661ded35efc/,Phil,,4/28/2018 0:00,11.0:35,11.0000000,47.894605000000,-3.971459000000,,La Forêt-Fouesnant - Finistère,43632,observation-b07a111e-1616-4a4a-bd88-6661ded35efc-4,https://biolit.fr/observations/observation-b07a111e-1616-4a4a-bd88-6661ded35efc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110133.JPG,,FALSE, +N1,59614,sortie-b07a111e-1616-4a4a-bd88-6661ded35efc,https://biolit.fr/sorties/sortie-b07a111e-1616-4a4a-bd88-6661ded35efc/,Phil,,4/28/2018 0:00,11.0:35,11.0000000,47.894605000000,-3.971459000000,,La Forêt-Fouesnant - Finistère,43634,observation-b07a111e-1616-4a4a-bd88-6661ded35efc-5,https://biolit.fr/observations/observation-b07a111e-1616-4a4a-bd88-6661ded35efc-5/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/P1110136.JPG,,TRUE, +N1,59615,sortie-e13f9e8e-f936-4440-8909-ee54ca98b3bf,https://biolit.fr/sorties/sortie-e13f9e8e-f936-4440-8909-ee54ca98b3bf/,Phil,,5/20/2018 0:00,14.0000000,14.0000000,47.800884000000,-4.181180000000,,Loctudy - Finistère,43636,observation-e13f9e8e-f936-4440-8909-ee54ca98b3bf,https://biolit.fr/observations/observation-e13f9e8e-f936-4440-8909-ee54ca98b3bf/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110454.JPG,,TRUE, +N1,59615,sortie-e13f9e8e-f936-4440-8909-ee54ca98b3bf,https://biolit.fr/sorties/sortie-e13f9e8e-f936-4440-8909-ee54ca98b3bf/,Phil,,5/20/2018 0:00,14.0000000,14.0000000,47.800884000000,-4.181180000000,,Loctudy - Finistère,43638,observation-e13f9e8e-f936-4440-8909-ee54ca98b3bf-2,https://biolit.fr/observations/observation-e13f9e8e-f936-4440-8909-ee54ca98b3bf-2/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1110455.JPG,,TRUE, +N1,59615,sortie-e13f9e8e-f936-4440-8909-ee54ca98b3bf,https://biolit.fr/sorties/sortie-e13f9e8e-f936-4440-8909-ee54ca98b3bf/,Phil,,5/20/2018 0:00,14.0000000,14.0000000,47.800884000000,-4.181180000000,,Loctudy - Finistère,43640,observation-e13f9e8e-f936-4440-8909-ee54ca98b3bf-3,https://biolit.fr/observations/observation-e13f9e8e-f936-4440-8909-ee54ca98b3bf-3/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1110461.JPG,,TRUE, +N1,59615,sortie-e13f9e8e-f936-4440-8909-ee54ca98b3bf,https://biolit.fr/sorties/sortie-e13f9e8e-f936-4440-8909-ee54ca98b3bf/,Phil,,5/20/2018 0:00,14.0000000,14.0000000,47.800884000000,-4.181180000000,,Loctudy - Finistère,43642,observation-e13f9e8e-f936-4440-8909-ee54ca98b3bf-4,https://biolit.fr/observations/observation-e13f9e8e-f936-4440-8909-ee54ca98b3bf-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110462.JPG,,FALSE, +N1,59615,sortie-e13f9e8e-f936-4440-8909-ee54ca98b3bf,https://biolit.fr/sorties/sortie-e13f9e8e-f936-4440-8909-ee54ca98b3bf/,Phil,,5/20/2018 0:00,14.0000000,14.0000000,47.800884000000,-4.181180000000,,Loctudy - Finistère,43644,observation-e13f9e8e-f936-4440-8909-ee54ca98b3bf-5,https://biolit.fr/observations/observation-e13f9e8e-f936-4440-8909-ee54ca98b3bf-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110459.JPG,,FALSE, +N1,59615,sortie-e13f9e8e-f936-4440-8909-ee54ca98b3bf,https://biolit.fr/sorties/sortie-e13f9e8e-f936-4440-8909-ee54ca98b3bf/,Phil,,5/20/2018 0:00,14.0000000,14.0000000,47.800884000000,-4.181180000000,,Loctudy - Finistère,43646,observation-e13f9e8e-f936-4440-8909-ee54ca98b3bf-6,https://biolit.fr/observations/observation-e13f9e8e-f936-4440-8909-ee54ca98b3bf-6/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1110450.JPG,,TRUE, +N1,59615,sortie-e13f9e8e-f936-4440-8909-ee54ca98b3bf,https://biolit.fr/sorties/sortie-e13f9e8e-f936-4440-8909-ee54ca98b3bf/,Phil,,5/20/2018 0:00,14.0000000,14.0000000,47.800884000000,-4.181180000000,,Loctudy - Finistère,43648,observation-e13f9e8e-f936-4440-8909-ee54ca98b3bf-7,https://biolit.fr/observations/observation-e13f9e8e-f936-4440-8909-ee54ca98b3bf-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110453.JPG,,FALSE, +N1,59616,sortie-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0,https://biolit.fr/sorties/sortie-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0/,Phil,,05/05/2018,17.000005,17.0000000,48.578215000000,-4.624866000000,,Saint-Pabu - Finistère,43650,observation-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0,https://biolit.fr/observations/observation-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1110202.JPG,,TRUE, +N1,59616,sortie-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0,https://biolit.fr/sorties/sortie-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0/,Phil,,05/05/2018,17.000005,17.0000000,48.578215000000,-4.624866000000,,Saint-Pabu - Finistère,43652,observation-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0-2,https://biolit.fr/observations/observation-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0-2/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1110187.JPG,,TRUE, +N1,59616,sortie-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0,https://biolit.fr/sorties/sortie-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0/,Phil,,05/05/2018,17.000005,17.0000000,48.578215000000,-4.624866000000,,Saint-Pabu - Finistère,43654,observation-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0-3,https://biolit.fr/observations/observation-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0-3/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1110188.JPG,,TRUE, +N1,59616,sortie-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0,https://biolit.fr/sorties/sortie-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0/,Phil,,05/05/2018,17.000005,17.0000000,48.578215000000,-4.624866000000,,Saint-Pabu - Finistère,43656,observation-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0-4,https://biolit.fr/observations/observation-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0-4/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1110192.JPG,,TRUE, +N1,59616,sortie-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0,https://biolit.fr/sorties/sortie-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0/,Phil,,05/05/2018,17.000005,17.0000000,48.578215000000,-4.624866000000,,Saint-Pabu - Finistère,43658,observation-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0-5,https://biolit.fr/observations/observation-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0-5/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1110196.JPG,,TRUE, +N1,59616,sortie-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0,https://biolit.fr/sorties/sortie-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0/,Phil,,05/05/2018,17.000005,17.0000000,48.578215000000,-4.624866000000,,Saint-Pabu - Finistère,43660,observation-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0-6,https://biolit.fr/observations/observation-d14a5bd7-79d7-48e5-9bfc-354b7f3cc5c0-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110197.JPG,,FALSE, +N1,59617,sortie-73b187ec-a2d7-4cf8-b746-5498baf52a04,https://biolit.fr/sorties/sortie-73b187ec-a2d7-4cf8-b746-5498baf52a04/,RBBBM,,6/14/2018 0:00,11.0000000,12.0000000,47.806626000000,-3.716014000000,,Moëlan anse du Gorgen,43662,observation-73b187ec-a2d7-4cf8-b746-5498baf52a04,https://biolit.fr/observations/observation-73b187ec-a2d7-4cf8-b746-5498baf52a04/,Pruvotfolia pselliotes,Facéline de Pruvot-Fol,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2368-scaled.jpg,,TRUE, +N1,59617,sortie-73b187ec-a2d7-4cf8-b746-5498baf52a04,https://biolit.fr/sorties/sortie-73b187ec-a2d7-4cf8-b746-5498baf52a04/,RBBBM,,6/14/2018 0:00,11.0000000,12.0000000,47.806626000000,-3.716014000000,,Moëlan anse du Gorgen,43664,observation-73b187ec-a2d7-4cf8-b746-5498baf52a04-2,https://biolit.fr/observations/observation-73b187ec-a2d7-4cf8-b746-5498baf52a04-2/,Prostheceraeus vittatus,Planaire blanche,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2385-scaled.jpg,,TRUE, +N1,59617,sortie-73b187ec-a2d7-4cf8-b746-5498baf52a04,https://biolit.fr/sorties/sortie-73b187ec-a2d7-4cf8-b746-5498baf52a04/,RBBBM,,6/14/2018 0:00,11.0000000,12.0000000,47.806626000000,-3.716014000000,,Moëlan anse du Gorgen,43666,observation-73b187ec-a2d7-4cf8-b746-5498baf52a04-3,https://biolit.fr/observations/observation-73b187ec-a2d7-4cf8-b746-5498baf52a04-3/,Perophora japonica,Perophore japonaise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2391-scaled.jpg,,TRUE, +N1,59617,sortie-73b187ec-a2d7-4cf8-b746-5498baf52a04,https://biolit.fr/sorties/sortie-73b187ec-a2d7-4cf8-b746-5498baf52a04/,RBBBM,,6/14/2018 0:00,11.0000000,12.0000000,47.806626000000,-3.716014000000,,Moëlan anse du Gorgen,43668,observation-73b187ec-a2d7-4cf8-b746-5498baf52a04-4,https://biolit.fr/observations/observation-73b187ec-a2d7-4cf8-b746-5498baf52a04-4/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2374-scaled.jpg,,TRUE, +N1,59617,sortie-73b187ec-a2d7-4cf8-b746-5498baf52a04,https://biolit.fr/sorties/sortie-73b187ec-a2d7-4cf8-b746-5498baf52a04/,RBBBM,,6/14/2018 0:00,11.0000000,12.0000000,47.806626000000,-3.716014000000,,Moëlan anse du Gorgen,43670,observation-73b187ec-a2d7-4cf8-b746-5498baf52a04-5,https://biolit.fr/observations/observation-73b187ec-a2d7-4cf8-b746-5498baf52a04-5/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2360-scaled.jpg,,TRUE, +N1,59618,sortie-dc4afa37-ef35-4502-b75a-ef4d9cd6936f,https://biolit.fr/sorties/sortie-dc4afa37-ef35-4502-b75a-ef4d9cd6936f/,Guillaume D,,6/13/2018 0:00,11.0000000,11.0000000,46.113371000000,-1.124052000000,,"Aytré, Plage d'Aytré",43672,observation-dc4afa37-ef35-4502-b75a-ef4d9cd6936f,https://biolit.fr/observations/observation-dc4afa37-ef35-4502-b75a-ef4d9cd6936f/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8048_modif.jpg,,FALSE, +N1,59619,sortie-e108cbfd-0fdb-475d-b294-8f478757642c,https://biolit.fr/sorties/sortie-e108cbfd-0fdb-475d-b294-8f478757642c/,Guillaume D,,06/01/2018,12.0000000,12.0000000,46.110000000000,-1.138412000000,,"Angoulins, Pointe du Chay",43674,observation-e108cbfd-0fdb-475d-b294-8f478757642c,https://biolit.fr/observations/observation-e108cbfd-0fdb-475d-b294-8f478757642c/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180601_120849_modif.jpg,,FALSE, +N1,59620,sortie-af367cf0-341c-42ac-9874-7fc822bdcea8,https://biolit.fr/sorties/sortie-af367cf0-341c-42ac-9874-7fc822bdcea8/,Phil,,05/01/2018,13.0:15,13.0000000,47.797110000000,-4.177465000000,,Loctudy - Finistère,43676,observation-af367cf0-341c-42ac-9874-7fc822bdcea8,https://biolit.fr/observations/observation-af367cf0-341c-42ac-9874-7fc822bdcea8/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20180501_131856.jpg,,TRUE, +N1,59620,sortie-af367cf0-341c-42ac-9874-7fc822bdcea8,https://biolit.fr/sorties/sortie-af367cf0-341c-42ac-9874-7fc822bdcea8/,Phil,,05/01/2018,13.0:15,13.0000000,47.797110000000,-4.177465000000,,Loctudy - Finistère,43678,observation-af367cf0-341c-42ac-9874-7fc822bdcea8-2,https://biolit.fr/observations/observation-af367cf0-341c-42ac-9874-7fc822bdcea8-2/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20180501_131901.jpg,,TRUE, +N1,59620,sortie-af367cf0-341c-42ac-9874-7fc822bdcea8,https://biolit.fr/sorties/sortie-af367cf0-341c-42ac-9874-7fc822bdcea8/,Phil,,05/01/2018,13.0:15,13.0000000,47.797110000000,-4.177465000000,,Loctudy - Finistère,43680,observation-af367cf0-341c-42ac-9874-7fc822bdcea8-3,https://biolit.fr/observations/observation-af367cf0-341c-42ac-9874-7fc822bdcea8-3/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20180501_131907.jpg,,TRUE, +N1,59620,sortie-af367cf0-341c-42ac-9874-7fc822bdcea8,https://biolit.fr/sorties/sortie-af367cf0-341c-42ac-9874-7fc822bdcea8/,Phil,,05/01/2018,13.0:15,13.0000000,47.797110000000,-4.177465000000,,Loctudy - Finistère,43682,observation-af367cf0-341c-42ac-9874-7fc822bdcea8-4,https://biolit.fr/observations/observation-af367cf0-341c-42ac-9874-7fc822bdcea8-4/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20180501_131918.jpg,,TRUE, +N1,59620,sortie-af367cf0-341c-42ac-9874-7fc822bdcea8,https://biolit.fr/sorties/sortie-af367cf0-341c-42ac-9874-7fc822bdcea8/,Phil,,05/01/2018,13.0:15,13.0000000,47.797110000000,-4.177465000000,,Loctudy - Finistère,43684,observation-af367cf0-341c-42ac-9874-7fc822bdcea8-5,https://biolit.fr/observations/observation-af367cf0-341c-42ac-9874-7fc822bdcea8-5/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/20180501_131924.jpg,,TRUE, +N1,59621,sortie-f3c378e1-cd65-40fa-bf37-1e67ff10729a,https://biolit.fr/sorties/sortie-f3c378e1-cd65-40fa-bf37-1e67ff10729a/,Phil,,4/18/2018 0:00,14.0000000,14.0:55,47.791520000000,-4.265871000000,,Léchiagat - Finistère,43686,observation-f3c378e1-cd65-40fa-bf37-1e67ff10729a,https://biolit.fr/observations/observation-f3c378e1-cd65-40fa-bf37-1e67ff10729a/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/P1100980.JPG,,TRUE, +N1,59621,sortie-f3c378e1-cd65-40fa-bf37-1e67ff10729a,https://biolit.fr/sorties/sortie-f3c378e1-cd65-40fa-bf37-1e67ff10729a/,Phil,,4/18/2018 0:00,14.0000000,14.0:55,47.791520000000,-4.265871000000,,Léchiagat - Finistère,43688,observation-f3c378e1-cd65-40fa-bf37-1e67ff10729a-2,https://biolit.fr/observations/observation-f3c378e1-cd65-40fa-bf37-1e67ff10729a-2/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/P1100987.JPG,,TRUE, +N1,59621,sortie-f3c378e1-cd65-40fa-bf37-1e67ff10729a,https://biolit.fr/sorties/sortie-f3c378e1-cd65-40fa-bf37-1e67ff10729a/,Phil,,4/18/2018 0:00,14.0000000,14.0:55,47.791520000000,-4.265871000000,,Léchiagat - Finistère,43690,observation-f3c378e1-cd65-40fa-bf37-1e67ff10729a-3,https://biolit.fr/observations/observation-f3c378e1-cd65-40fa-bf37-1e67ff10729a-3/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1100989.JPG,,TRUE, +N1,59621,sortie-f3c378e1-cd65-40fa-bf37-1e67ff10729a,https://biolit.fr/sorties/sortie-f3c378e1-cd65-40fa-bf37-1e67ff10729a/,Phil,,4/18/2018 0:00,14.0000000,14.0:55,47.791520000000,-4.265871000000,,Léchiagat - Finistère,43692,observation-f3c378e1-cd65-40fa-bf37-1e67ff10729a-4,https://biolit.fr/observations/observation-f3c378e1-cd65-40fa-bf37-1e67ff10729a-4/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/P1100991.JPG,,TRUE, +N1,59621,sortie-f3c378e1-cd65-40fa-bf37-1e67ff10729a,https://biolit.fr/sorties/sortie-f3c378e1-cd65-40fa-bf37-1e67ff10729a/,Phil,,4/18/2018 0:00,14.0000000,14.0:55,47.791520000000,-4.265871000000,,Léchiagat - Finistère,43694,observation-f3c378e1-cd65-40fa-bf37-1e67ff10729a-5,https://biolit.fr/observations/observation-f3c378e1-cd65-40fa-bf37-1e67ff10729a-5/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/P1110019.JPG,,TRUE, +N1,59621,sortie-f3c378e1-cd65-40fa-bf37-1e67ff10729a,https://biolit.fr/sorties/sortie-f3c378e1-cd65-40fa-bf37-1e67ff10729a/,Phil,,4/18/2018 0:00,14.0000000,14.0:55,47.791520000000,-4.265871000000,,Léchiagat - Finistère,43696,observation-f3c378e1-cd65-40fa-bf37-1e67ff10729a-6,https://biolit.fr/observations/observation-f3c378e1-cd65-40fa-bf37-1e67ff10729a-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110023.JPG,,FALSE, +N1,59622,sortie-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f,https://biolit.fr/sorties/sortie-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f/,Phil,,5/20/2018 0:00,14.0000000,14.0000000,47.800352000000,-4.181122000000,,Loctudy - Finistère,43698,observation-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f,https://biolit.fr/observations/observation-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f/,Mastocarpus stellatus,Gigartine,,https://biolit.fr/wp-content/uploads/2023/07/P1110438.JPG,,TRUE, +N1,59622,sortie-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f,https://biolit.fr/sorties/sortie-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f/,Phil,,5/20/2018 0:00,14.0000000,14.0000000,47.800352000000,-4.181122000000,,Loctudy - Finistère,43700,observation-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f-2,https://biolit.fr/observations/observation-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f-2/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110449.JPG,,TRUE, +N1,59622,sortie-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f,https://biolit.fr/sorties/sortie-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f/,Phil,,5/20/2018 0:00,14.0000000,14.0000000,47.800352000000,-4.181122000000,,Loctudy - Finistère,43702,observation-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f-3,https://biolit.fr/observations/observation-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f-3/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110443.JPG,,TRUE, +N1,59622,sortie-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f,https://biolit.fr/sorties/sortie-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f/,Phil,,5/20/2018 0:00,14.0000000,14.0000000,47.800352000000,-4.181122000000,,Loctudy - Finistère,43704,observation-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f-4,https://biolit.fr/observations/observation-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f-4/,Schizoporella unicornis,Schizoporella unicorne,,https://biolit.fr/wp-content/uploads/2023/07/P1110444.JPG,,TRUE, +N1,59622,sortie-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f,https://biolit.fr/sorties/sortie-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f/,Phil,,5/20/2018 0:00,14.0000000,14.0000000,47.800352000000,-4.181122000000,,Loctudy - Finistère,43706,observation-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f-5,https://biolit.fr/observations/observation-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f-5/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1110445.JPG,,TRUE, +N1,59622,sortie-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f,https://biolit.fr/sorties/sortie-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f/,Phil,,5/20/2018 0:00,14.0000000,14.0000000,47.800352000000,-4.181122000000,,Loctudy - Finistère,43708,observation-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f-6,https://biolit.fr/observations/observation-5aed4bb1-dbfd-4ff8-b8f2-050ad6388e0f-6/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110446.JPG,,TRUE, +N1,59623,sortie-f6721495-00b2-4fdc-bc98-a5c6d8791869,https://biolit.fr/sorties/sortie-f6721495-00b2-4fdc-bc98-a5c6d8791869/,Phil,,06/02/2018,11.0000000,11.0:35,48.168711000000,-4.297808000000,,Plomodiern - Finistère,43710,observation-f6721495-00b2-4fdc-bc98-a5c6d8791869,https://biolit.fr/observations/observation-f6721495-00b2-4fdc-bc98-a5c6d8791869/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/P1110603.JPG,,TRUE, +N1,59623,sortie-f6721495-00b2-4fdc-bc98-a5c6d8791869,https://biolit.fr/sorties/sortie-f6721495-00b2-4fdc-bc98-a5c6d8791869/,Phil,,06/02/2018,11.0000000,11.0:35,48.168711000000,-4.297808000000,,Plomodiern - Finistère,43712,observation-f6721495-00b2-4fdc-bc98-a5c6d8791869-2,https://biolit.fr/observations/observation-f6721495-00b2-4fdc-bc98-a5c6d8791869-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1110602.JPG,,TRUE, +N1,59623,sortie-f6721495-00b2-4fdc-bc98-a5c6d8791869,https://biolit.fr/sorties/sortie-f6721495-00b2-4fdc-bc98-a5c6d8791869/,Phil,,06/02/2018,11.0000000,11.0:35,48.168711000000,-4.297808000000,,Plomodiern - Finistère,43714,observation-f6721495-00b2-4fdc-bc98-a5c6d8791869-3,https://biolit.fr/observations/observation-f6721495-00b2-4fdc-bc98-a5c6d8791869-3/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/P1110600.JPG,,TRUE, +N1,59623,sortie-f6721495-00b2-4fdc-bc98-a5c6d8791869,https://biolit.fr/sorties/sortie-f6721495-00b2-4fdc-bc98-a5c6d8791869/,Phil,,06/02/2018,11.0000000,11.0:35,48.168711000000,-4.297808000000,,Plomodiern - Finistère,43716,observation-f6721495-00b2-4fdc-bc98-a5c6d8791869-4,https://biolit.fr/observations/observation-f6721495-00b2-4fdc-bc98-a5c6d8791869-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1110596.JPG,,TRUE, +N1,59624,sortie-5bef6e63-ff34-4056-b189-8b2248dededf,https://biolit.fr/sorties/sortie-5bef6e63-ff34-4056-b189-8b2248dededf/,Phil,,5/20/2018 0:00,14.000005,14.0:15,47.800712000000,-4.180585000000,,Loctudy - Finistère,43718,observation-5bef6e63-ff34-4056-b189-8b2248dededf,https://biolit.fr/observations/observation-5bef6e63-ff34-4056-b189-8b2248dededf/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/P1110411.JPG,,TRUE, +N1,59624,sortie-5bef6e63-ff34-4056-b189-8b2248dededf,https://biolit.fr/sorties/sortie-5bef6e63-ff34-4056-b189-8b2248dededf/,Phil,,5/20/2018 0:00,14.000005,14.0:15,47.800712000000,-4.180585000000,,Loctudy - Finistère,43720,observation-5bef6e63-ff34-4056-b189-8b2248dededf-2,https://biolit.fr/observations/observation-5bef6e63-ff34-4056-b189-8b2248dededf-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110424.JPG,,FALSE, +N1,59624,sortie-5bef6e63-ff34-4056-b189-8b2248dededf,https://biolit.fr/sorties/sortie-5bef6e63-ff34-4056-b189-8b2248dededf/,Phil,,5/20/2018 0:00,14.000005,14.0:15,47.800712000000,-4.180585000000,,Loctudy - Finistère,43722,observation-5bef6e63-ff34-4056-b189-8b2248dededf-3,https://biolit.fr/observations/observation-5bef6e63-ff34-4056-b189-8b2248dededf-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110426.JPG,,FALSE, +N1,59624,sortie-5bef6e63-ff34-4056-b189-8b2248dededf,https://biolit.fr/sorties/sortie-5bef6e63-ff34-4056-b189-8b2248dededf/,Phil,,5/20/2018 0:00,14.000005,14.0:15,47.800712000000,-4.180585000000,,Loctudy - Finistère,43724,observation-5bef6e63-ff34-4056-b189-8b2248dededf-4,https://biolit.fr/observations/observation-5bef6e63-ff34-4056-b189-8b2248dededf-4/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/P1110427.JPG,,TRUE, +N1,59624,sortie-5bef6e63-ff34-4056-b189-8b2248dededf,https://biolit.fr/sorties/sortie-5bef6e63-ff34-4056-b189-8b2248dededf/,Phil,,5/20/2018 0:00,14.000005,14.0:15,47.800712000000,-4.180585000000,,Loctudy - Finistère,43726,observation-5bef6e63-ff34-4056-b189-8b2248dededf-5,https://biolit.fr/observations/observation-5bef6e63-ff34-4056-b189-8b2248dededf-5/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/P1110428.JPG,,TRUE, +N1,59624,sortie-5bef6e63-ff34-4056-b189-8b2248dededf,https://biolit.fr/sorties/sortie-5bef6e63-ff34-4056-b189-8b2248dededf/,Phil,,5/20/2018 0:00,14.000005,14.0:15,47.800712000000,-4.180585000000,,Loctudy - Finistère,43728,observation-5bef6e63-ff34-4056-b189-8b2248dededf-6,https://biolit.fr/observations/observation-5bef6e63-ff34-4056-b189-8b2248dededf-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110429.JPG,,FALSE, +N1,59624,sortie-5bef6e63-ff34-4056-b189-8b2248dededf,https://biolit.fr/sorties/sortie-5bef6e63-ff34-4056-b189-8b2248dededf/,Phil,,5/20/2018 0:00,14.000005,14.0:15,47.800712000000,-4.180585000000,,Loctudy - Finistère,43730,observation-5bef6e63-ff34-4056-b189-8b2248dededf-7,https://biolit.fr/observations/observation-5bef6e63-ff34-4056-b189-8b2248dededf-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110440.JPG,,FALSE, +N1,59625,sortie-0ed28926-cd18-42bf-97c3-9b336689f832,https://biolit.fr/sorties/sortie-0ed28926-cd18-42bf-97c3-9b336689f832/,Phil,,05/01/2018,13.0000000,13.0000000,47.799249000000,-4.177757000000,,Loctudy - Finistère,43732,observation-0ed28926-cd18-42bf-97c3-9b336689f832,https://biolit.fr/observations/observation-0ed28926-cd18-42bf-97c3-9b336689f832/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20180501_131042.jpg,,TRUE, +N1,59625,sortie-0ed28926-cd18-42bf-97c3-9b336689f832,https://biolit.fr/sorties/sortie-0ed28926-cd18-42bf-97c3-9b336689f832/,Phil,,05/01/2018,13.0000000,13.0000000,47.799249000000,-4.177757000000,,Loctudy - Finistère,43734,observation-0ed28926-cd18-42bf-97c3-9b336689f832-2,https://biolit.fr/observations/observation-0ed28926-cd18-42bf-97c3-9b336689f832-2/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20180501_131113.jpg,,TRUE, +N1,59625,sortie-0ed28926-cd18-42bf-97c3-9b336689f832,https://biolit.fr/sorties/sortie-0ed28926-cd18-42bf-97c3-9b336689f832/,Phil,,05/01/2018,13.0000000,13.0000000,47.799249000000,-4.177757000000,,Loctudy - Finistère,43736,observation-0ed28926-cd18-42bf-97c3-9b336689f832-3,https://biolit.fr/observations/observation-0ed28926-cd18-42bf-97c3-9b336689f832-3/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20180501_131207.jpg,,TRUE, +N1,59625,sortie-0ed28926-cd18-42bf-97c3-9b336689f832,https://biolit.fr/sorties/sortie-0ed28926-cd18-42bf-97c3-9b336689f832/,Phil,,05/01/2018,13.0000000,13.0000000,47.799249000000,-4.177757000000,,Loctudy - Finistère,43738,observation-0ed28926-cd18-42bf-97c3-9b336689f832-4,https://biolit.fr/observations/observation-0ed28926-cd18-42bf-97c3-9b336689f832-4/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20180501_131230.jpg,,TRUE, +N1,59625,sortie-0ed28926-cd18-42bf-97c3-9b336689f832,https://biolit.fr/sorties/sortie-0ed28926-cd18-42bf-97c3-9b336689f832/,Phil,,05/01/2018,13.0000000,13.0000000,47.799249000000,-4.177757000000,,Loctudy - Finistère,43740,observation-0ed28926-cd18-42bf-97c3-9b336689f832-5,https://biolit.fr/observations/observation-0ed28926-cd18-42bf-97c3-9b336689f832-5/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20180501_132210.jpg,,TRUE, +N1,59625,sortie-0ed28926-cd18-42bf-97c3-9b336689f832,https://biolit.fr/sorties/sortie-0ed28926-cd18-42bf-97c3-9b336689f832/,Phil,,05/01/2018,13.0000000,13.0000000,47.799249000000,-4.177757000000,,Loctudy - Finistère,43742,observation-0ed28926-cd18-42bf-97c3-9b336689f832-6,https://biolit.fr/observations/observation-0ed28926-cd18-42bf-97c3-9b336689f832-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_132255.jpg,,FALSE, +N1,59626,sortie-c801ec31-54b4-4803-8160-7accdf4b0009,https://biolit.fr/sorties/sortie-c801ec31-54b4-4803-8160-7accdf4b0009/,Phil,,5/17/2018 0:00,11.0:45,11.0:55,47.892469000000,-3.964305000000,,La Forêt-Fouesnant - Finistère,43744,observation-c801ec31-54b4-4803-8160-7accdf4b0009,https://biolit.fr/observations/observation-c801ec31-54b4-4803-8160-7accdf4b0009/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/2023/07/P1110270.JPG,,TRUE, +N1,59626,sortie-c801ec31-54b4-4803-8160-7accdf4b0009,https://biolit.fr/sorties/sortie-c801ec31-54b4-4803-8160-7accdf4b0009/,Phil,,5/17/2018 0:00,11.0:45,11.0:55,47.892469000000,-3.964305000000,,La Forêt-Fouesnant - Finistère,43746,observation-c801ec31-54b4-4803-8160-7accdf4b0009-2,https://biolit.fr/observations/observation-c801ec31-54b4-4803-8160-7accdf4b0009-2/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/2023/07/P1110272_0.JPG,,TRUE, +N1,59626,sortie-c801ec31-54b4-4803-8160-7accdf4b0009,https://biolit.fr/sorties/sortie-c801ec31-54b4-4803-8160-7accdf4b0009/,Phil,,5/17/2018 0:00,11.0:45,11.0:55,47.892469000000,-3.964305000000,,La Forêt-Fouesnant - Finistère,43748,observation-c801ec31-54b4-4803-8160-7accdf4b0009-3,https://biolit.fr/observations/observation-c801ec31-54b4-4803-8160-7accdf4b0009-3/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/2023/07/P1110273.JPG,,TRUE, +N1,59626,sortie-c801ec31-54b4-4803-8160-7accdf4b0009,https://biolit.fr/sorties/sortie-c801ec31-54b4-4803-8160-7accdf4b0009/,Phil,,5/17/2018 0:00,11.0:45,11.0:55,47.892469000000,-3.964305000000,,La Forêt-Fouesnant - Finistère,43750,observation-c801ec31-54b4-4803-8160-7accdf4b0009-4,https://biolit.fr/observations/observation-c801ec31-54b4-4803-8160-7accdf4b0009-4/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/2023/07/P1110277.JPG,,TRUE, +N1,59626,sortie-c801ec31-54b4-4803-8160-7accdf4b0009,https://biolit.fr/sorties/sortie-c801ec31-54b4-4803-8160-7accdf4b0009/,Phil,,5/17/2018 0:00,11.0:45,11.0:55,47.892469000000,-3.964305000000,,La Forêt-Fouesnant - Finistère,43752,observation-c801ec31-54b4-4803-8160-7accdf4b0009-5,https://biolit.fr/observations/observation-c801ec31-54b4-4803-8160-7accdf4b0009-5/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/2023/07/P1110281_0.JPG,,TRUE, +N1,59626,sortie-c801ec31-54b4-4803-8160-7accdf4b0009,https://biolit.fr/sorties/sortie-c801ec31-54b4-4803-8160-7accdf4b0009/,Phil,,5/17/2018 0:00,11.0:45,11.0:55,47.892469000000,-3.964305000000,,La Forêt-Fouesnant - Finistère,43754,observation-c801ec31-54b4-4803-8160-7accdf4b0009-6,https://biolit.fr/observations/observation-c801ec31-54b4-4803-8160-7accdf4b0009-6/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/2023/07/P1110283.JPG,,TRUE, +N1,59626,sortie-c801ec31-54b4-4803-8160-7accdf4b0009,https://biolit.fr/sorties/sortie-c801ec31-54b4-4803-8160-7accdf4b0009/,Phil,,5/17/2018 0:00,11.0:45,11.0:55,47.892469000000,-3.964305000000,,La Forêt-Fouesnant - Finistère,43756,observation-c801ec31-54b4-4803-8160-7accdf4b0009-7,https://biolit.fr/observations/observation-c801ec31-54b4-4803-8160-7accdf4b0009-7/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/2023/07/P1110290_0.JPG,,TRUE, +N1,59627,sortie-fae899f2-6bdf-4ce2-8c56-0723271abbec,https://biolit.fr/sorties/sortie-fae899f2-6bdf-4ce2-8c56-0723271abbec/,Phil,,05/01/2018,13.0000000,13.0000000,47.798599000000,-4.176508000000,,Loctudy - Finistère,43758,observation-fae899f2-6bdf-4ce2-8c56-0723271abbec,https://biolit.fr/observations/observation-fae899f2-6bdf-4ce2-8c56-0723271abbec/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_130954.jpg,,FALSE, +N1,59627,sortie-fae899f2-6bdf-4ce2-8c56-0723271abbec,https://biolit.fr/sorties/sortie-fae899f2-6bdf-4ce2-8c56-0723271abbec/,Phil,,05/01/2018,13.0000000,13.0000000,47.798599000000,-4.176508000000,,Loctudy - Finistère,43760,observation-fae899f2-6bdf-4ce2-8c56-0723271abbec-2,https://biolit.fr/observations/observation-fae899f2-6bdf-4ce2-8c56-0723271abbec-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_130934.jpg,,FALSE, +N1,59627,sortie-fae899f2-6bdf-4ce2-8c56-0723271abbec,https://biolit.fr/sorties/sortie-fae899f2-6bdf-4ce2-8c56-0723271abbec/,Phil,,05/01/2018,13.0000000,13.0000000,47.798599000000,-4.176508000000,,Loctudy - Finistère,43762,observation-fae899f2-6bdf-4ce2-8c56-0723271abbec-3,https://biolit.fr/observations/observation-fae899f2-6bdf-4ce2-8c56-0723271abbec-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_130035.jpg,,FALSE, +N1,59627,sortie-fae899f2-6bdf-4ce2-8c56-0723271abbec,https://biolit.fr/sorties/sortie-fae899f2-6bdf-4ce2-8c56-0723271abbec/,Phil,,05/01/2018,13.0000000,13.0000000,47.798599000000,-4.176508000000,,Loctudy - Finistère,43764,observation-fae899f2-6bdf-4ce2-8c56-0723271abbec-4,https://biolit.fr/observations/observation-fae899f2-6bdf-4ce2-8c56-0723271abbec-4/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20180501_130925.jpg,,TRUE, +N1,59629,sortie-fbe8b29e-a6b0-489e-b0ba-76d011cafe88,https://biolit.fr/sorties/sortie-fbe8b29e-a6b0-489e-b0ba-76d011cafe88/,Phil,,4/28/2018 0:00,11.0:25,11.0000000,47.895480000000,-3.96648000000,,La Forêt-Fouesnant - Finistère,43772,observation-fbe8b29e-a6b0-489e-b0ba-76d011cafe88,https://biolit.fr/observations/observation-fbe8b29e-a6b0-489e-b0ba-76d011cafe88/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110113.JPG,,FALSE, +N1,59629,sortie-fbe8b29e-a6b0-489e-b0ba-76d011cafe88,https://biolit.fr/sorties/sortie-fbe8b29e-a6b0-489e-b0ba-76d011cafe88/,Phil,,4/28/2018 0:00,11.0:25,11.0000000,47.895480000000,-3.96648000000,,La Forêt-Fouesnant - Finistère,43774,observation-fbe8b29e-a6b0-489e-b0ba-76d011cafe88-2,https://biolit.fr/observations/observation-fbe8b29e-a6b0-489e-b0ba-76d011cafe88-2/,Atelecyclus undecimdentatus,Grand crabe circulaire,,https://biolit.fr/wp-content/uploads/2023/07/P1110114.JPG,,TRUE, +N1,59629,sortie-fbe8b29e-a6b0-489e-b0ba-76d011cafe88,https://biolit.fr/sorties/sortie-fbe8b29e-a6b0-489e-b0ba-76d011cafe88/,Phil,,4/28/2018 0:00,11.0:25,11.0000000,47.895480000000,-3.96648000000,,La Forêt-Fouesnant - Finistère,43776,observation-fbe8b29e-a6b0-489e-b0ba-76d011cafe88-3,https://biolit.fr/observations/observation-fbe8b29e-a6b0-489e-b0ba-76d011cafe88-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110115.JPG,,FALSE, +N1,59629,sortie-fbe8b29e-a6b0-489e-b0ba-76d011cafe88,https://biolit.fr/sorties/sortie-fbe8b29e-a6b0-489e-b0ba-76d011cafe88/,Phil,,4/28/2018 0:00,11.0:25,11.0000000,47.895480000000,-3.96648000000,,La Forêt-Fouesnant - Finistère,43778,observation-fbe8b29e-a6b0-489e-b0ba-76d011cafe88-4,https://biolit.fr/observations/observation-fbe8b29e-a6b0-489e-b0ba-76d011cafe88-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110118.JPG,,FALSE, +N1,59630,sortie-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c,https://biolit.fr/sorties/sortie-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c/,Phil,,06/02/2018,11.0:25,11.0000000,48.168770000000,-4.296246000000,,Plomodiern - Finistère,43780,observation-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c,https://biolit.fr/observations/observation-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110587.JPG,,TRUE, +N1,59630,sortie-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c,https://biolit.fr/sorties/sortie-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c/,Phil,,06/02/2018,11.0:25,11.0000000,48.168770000000,-4.296246000000,,Plomodiern - Finistère,43782,observation-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c-2,https://biolit.fr/observations/observation-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110589.JPG,,FALSE, +N1,59630,sortie-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c,https://biolit.fr/sorties/sortie-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c/,Phil,,06/02/2018,11.0:25,11.0000000,48.168770000000,-4.296246000000,,Plomodiern - Finistère,43784,observation-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c-3,https://biolit.fr/observations/observation-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110590.JPG,,FALSE, +N1,59630,sortie-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c,https://biolit.fr/sorties/sortie-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c/,Phil,,06/02/2018,11.0:25,11.0000000,48.168770000000,-4.296246000000,,Plomodiern - Finistère,43786,observation-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c-4,https://biolit.fr/observations/observation-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110591.JPG,,FALSE, +N1,59630,sortie-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c,https://biolit.fr/sorties/sortie-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c/,Phil,,06/02/2018,11.0:25,11.0000000,48.168770000000,-4.296246000000,,Plomodiern - Finistère,43788,observation-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c-5,https://biolit.fr/observations/observation-f7437b4c-2be9-4c1c-a0fb-2073ff1a944c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110595.JPG,,FALSE, +N1,59631,sortie-4f272551-cbd0-4bb7-8619-44e0c03b5a4f,https://biolit.fr/sorties/sortie-4f272551-cbd0-4bb7-8619-44e0c03b5a4f/,Phil,,05/01/2018,12.0000000,13.0000000,47.798069000000,-4.176633000000,,Loctudy - Finistère,43790,observation-4f272551-cbd0-4bb7-8619-44e0c03b5a4f,https://biolit.fr/observations/observation-4f272551-cbd0-4bb7-8619-44e0c03b5a4f/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_125818.jpg,,FALSE, +N1,59631,sortie-4f272551-cbd0-4bb7-8619-44e0c03b5a4f,https://biolit.fr/sorties/sortie-4f272551-cbd0-4bb7-8619-44e0c03b5a4f/,Phil,,05/01/2018,12.0000000,13.0000000,47.798069000000,-4.176633000000,,Loctudy - Finistère,43792,observation-4f272551-cbd0-4bb7-8619-44e0c03b5a4f-2,https://biolit.fr/observations/observation-4f272551-cbd0-4bb7-8619-44e0c03b5a4f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_125721.jpg,,FALSE, +N1,59631,sortie-4f272551-cbd0-4bb7-8619-44e0c03b5a4f,https://biolit.fr/sorties/sortie-4f272551-cbd0-4bb7-8619-44e0c03b5a4f/,Phil,,05/01/2018,12.0000000,13.0000000,47.798069000000,-4.176633000000,,Loctudy - Finistère,43794,observation-4f272551-cbd0-4bb7-8619-44e0c03b5a4f-3,https://biolit.fr/observations/observation-4f272551-cbd0-4bb7-8619-44e0c03b5a4f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_125914.jpg,,FALSE, +N1,59632,sortie-5bc1eaab-583b-4486-96a0-c2348c216f03,https://biolit.fr/sorties/sortie-5bc1eaab-583b-4486-96a0-c2348c216f03/,Phil,,06/02/2018,11.0:25,11.0:25,48.168384000000,-4.293474000000,,Plomodiern - Finistère,43796,observation-5bc1eaab-583b-4486-96a0-c2348c216f03,https://biolit.fr/observations/observation-5bc1eaab-583b-4486-96a0-c2348c216f03/,Macomangulus tenuis,Telline-papillon,,https://biolit.fr/wp-content/uploads/2023/07/P1110583.JPG,,TRUE, +N1,59633,sortie-ed88b7fb-d1a4-4567-9774-0b987571460c,https://biolit.fr/sorties/sortie-ed88b7fb-d1a4-4567-9774-0b987571460c/,Phil,,06/01/2018,12.0:45,12.0000000,47.799164000000,-4.177409000000,,Loctudy - Finistère,43798,observation-ed88b7fb-d1a4-4567-9774-0b987571460c,https://biolit.fr/observations/observation-ed88b7fb-d1a4-4567-9774-0b987571460c/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20180501_125624.jpg,,TRUE, +N1,59633,sortie-ed88b7fb-d1a4-4567-9774-0b987571460c,https://biolit.fr/sorties/sortie-ed88b7fb-d1a4-4567-9774-0b987571460c/,Phil,,06/01/2018,12.0:45,12.0000000,47.799164000000,-4.177409000000,,Loctudy - Finistère,43800,observation-ed88b7fb-d1a4-4567-9774-0b987571460c-2,https://biolit.fr/observations/observation-ed88b7fb-d1a4-4567-9774-0b987571460c-2/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20180501_125539.jpg,,TRUE, +N1,59633,sortie-ed88b7fb-d1a4-4567-9774-0b987571460c,https://biolit.fr/sorties/sortie-ed88b7fb-d1a4-4567-9774-0b987571460c/,Phil,,06/01/2018,12.0:45,12.0000000,47.799164000000,-4.177409000000,,Loctudy - Finistère,43802,observation-ed88b7fb-d1a4-4567-9774-0b987571460c-3,https://biolit.fr/observations/observation-ed88b7fb-d1a4-4567-9774-0b987571460c-3/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20180501_125619.jpg,,TRUE, +N1,59633,sortie-ed88b7fb-d1a4-4567-9774-0b987571460c,https://biolit.fr/sorties/sortie-ed88b7fb-d1a4-4567-9774-0b987571460c/,Phil,,06/01/2018,12.0:45,12.0000000,47.799164000000,-4.177409000000,,Loctudy - Finistère,43804,observation-ed88b7fb-d1a4-4567-9774-0b987571460c-4,https://biolit.fr/observations/observation-ed88b7fb-d1a4-4567-9774-0b987571460c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_125609.jpg,,FALSE, +N1,59634,sortie-1c76cfe0-c467-4253-bf30-a2c40a496d02,https://biolit.fr/sorties/sortie-1c76cfe0-c467-4253-bf30-a2c40a496d02/,Phil,,4/28/2018 0:00,11.0:25,11.0000000,47.893860000000,-3.966910000000,,La Forêt-Fouesnant - Finistère,43806,observation-1c76cfe0-c467-4253-bf30-a2c40a496d02,https://biolit.fr/observations/observation-1c76cfe0-c467-4253-bf30-a2c40a496d02/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/P1110102.JPG,,TRUE, +N1,59634,sortie-1c76cfe0-c467-4253-bf30-a2c40a496d02,https://biolit.fr/sorties/sortie-1c76cfe0-c467-4253-bf30-a2c40a496d02/,Phil,,4/28/2018 0:00,11.0:25,11.0000000,47.893860000000,-3.966910000000,,La Forêt-Fouesnant - Finistère,43808,observation-1c76cfe0-c467-4253-bf30-a2c40a496d02-2,https://biolit.fr/observations/observation-1c76cfe0-c467-4253-bf30-a2c40a496d02-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110105.JPG,,FALSE, +N1,59634,sortie-1c76cfe0-c467-4253-bf30-a2c40a496d02,https://biolit.fr/sorties/sortie-1c76cfe0-c467-4253-bf30-a2c40a496d02/,Phil,,4/28/2018 0:00,11.0:25,11.0000000,47.893860000000,-3.966910000000,,La Forêt-Fouesnant - Finistère,43810,observation-1c76cfe0-c467-4253-bf30-a2c40a496d02-3,https://biolit.fr/observations/observation-1c76cfe0-c467-4253-bf30-a2c40a496d02-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110108.JPG,,FALSE, +N1,59634,sortie-1c76cfe0-c467-4253-bf30-a2c40a496d02,https://biolit.fr/sorties/sortie-1c76cfe0-c467-4253-bf30-a2c40a496d02/,Phil,,4/28/2018 0:00,11.0:25,11.0000000,47.893860000000,-3.966910000000,,La Forêt-Fouesnant - Finistère,43812,observation-1c76cfe0-c467-4253-bf30-a2c40a496d02-4,https://biolit.fr/observations/observation-1c76cfe0-c467-4253-bf30-a2c40a496d02-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110109.JPG,,FALSE, +N1,59634,sortie-1c76cfe0-c467-4253-bf30-a2c40a496d02,https://biolit.fr/sorties/sortie-1c76cfe0-c467-4253-bf30-a2c40a496d02/,Phil,,4/28/2018 0:00,11.0:25,11.0000000,47.893860000000,-3.966910000000,,La Forêt-Fouesnant - Finistère,43814,observation-1c76cfe0-c467-4253-bf30-a2c40a496d02-5,https://biolit.fr/observations/observation-1c76cfe0-c467-4253-bf30-a2c40a496d02-5/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1110111.JPG,,TRUE, +N1,59635,sortie-f13adcf7-ecf0-449f-b893-6f9dba4ca94c,https://biolit.fr/sorties/sortie-f13adcf7-ecf0-449f-b893-6f9dba4ca94c/,Phil,,05/01/2018,12.0:35,12.0:45,47.798486000000,-4.176779000000,,Loctudy - Finistère,43816,observation-f13adcf7-ecf0-449f-b893-6f9dba4ca94c,https://biolit.fr/observations/observation-f13adcf7-ecf0-449f-b893-6f9dba4ca94c/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180501_123517(0).jpg,,TRUE, +N1,59635,sortie-f13adcf7-ecf0-449f-b893-6f9dba4ca94c,https://biolit.fr/sorties/sortie-f13adcf7-ecf0-449f-b893-6f9dba4ca94c/,Phil,,05/01/2018,12.0:35,12.0:45,47.798486000000,-4.176779000000,,Loctudy - Finistère,43818,observation-f13adcf7-ecf0-449f-b893-6f9dba4ca94c-2,https://biolit.fr/observations/observation-f13adcf7-ecf0-449f-b893-6f9dba4ca94c-2/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180501_123508.jpg,,TRUE, +N1,59635,sortie-f13adcf7-ecf0-449f-b893-6f9dba4ca94c,https://biolit.fr/sorties/sortie-f13adcf7-ecf0-449f-b893-6f9dba4ca94c/,Phil,,05/01/2018,12.0:35,12.0:45,47.798486000000,-4.176779000000,,Loctudy - Finistère,43820,observation-f13adcf7-ecf0-449f-b893-6f9dba4ca94c-3,https://biolit.fr/observations/observation-f13adcf7-ecf0-449f-b893-6f9dba4ca94c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_124542.jpg,,FALSE, +N1,59635,sortie-f13adcf7-ecf0-449f-b893-6f9dba4ca94c,https://biolit.fr/sorties/sortie-f13adcf7-ecf0-449f-b893-6f9dba4ca94c/,Phil,,05/01/2018,12.0:35,12.0:45,47.798486000000,-4.176779000000,,Loctudy - Finistère,43822,observation-f13adcf7-ecf0-449f-b893-6f9dba4ca94c-4,https://biolit.fr/observations/observation-f13adcf7-ecf0-449f-b893-6f9dba4ca94c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_124604.jpg,,FALSE, +N1,59637,sortie-d1ae9030-cf4b-4eb8-a064-519faf7466e9,https://biolit.fr/sorties/sortie-d1ae9030-cf4b-4eb8-a064-519faf7466e9/,Phil,,5/18/2018 0:00,22.0000000,22.0000000,48.21100000000,-4.370640000000,,Telgruc-sur-Mer - Finistère,43826,observation-d1ae9030-cf4b-4eb8-a064-519faf7466e9,https://biolit.fr/observations/observation-d1ae9030-cf4b-4eb8-a064-519faf7466e9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180518_221959.jpg,,FALSE, +N1,59637,sortie-d1ae9030-cf4b-4eb8-a064-519faf7466e9,https://biolit.fr/sorties/sortie-d1ae9030-cf4b-4eb8-a064-519faf7466e9/,Phil,,5/18/2018 0:00,22.0000000,22.0000000,48.21100000000,-4.370640000000,,Telgruc-sur-Mer - Finistère,43828,observation-d1ae9030-cf4b-4eb8-a064-519faf7466e9-2,https://biolit.fr/observations/observation-d1ae9030-cf4b-4eb8-a064-519faf7466e9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180518_222008.jpg,,FALSE, +N1,59637,sortie-d1ae9030-cf4b-4eb8-a064-519faf7466e9,https://biolit.fr/sorties/sortie-d1ae9030-cf4b-4eb8-a064-519faf7466e9/,Phil,,5/18/2018 0:00,22.0000000,22.0000000,48.21100000000,-4.370640000000,,Telgruc-sur-Mer - Finistère,43830,observation-d1ae9030-cf4b-4eb8-a064-519faf7466e9-3,https://biolit.fr/observations/observation-d1ae9030-cf4b-4eb8-a064-519faf7466e9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180518_223057.jpg,,FALSE, +N1,59637,sortie-d1ae9030-cf4b-4eb8-a064-519faf7466e9,https://biolit.fr/sorties/sortie-d1ae9030-cf4b-4eb8-a064-519faf7466e9/,Phil,,5/18/2018 0:00,22.0000000,22.0000000,48.21100000000,-4.370640000000,,Telgruc-sur-Mer - Finistère,43832,observation-d1ae9030-cf4b-4eb8-a064-519faf7466e9-4,https://biolit.fr/observations/observation-d1ae9030-cf4b-4eb8-a064-519faf7466e9-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180518_223515.jpg,,FALSE, +N1,59638,sortie-732d74f7-3ee0-47f3-9f84-917bf2f2e902,https://biolit.fr/sorties/sortie-732d74f7-3ee0-47f3-9f84-917bf2f2e902/,Water Life Community,,4/27/2018 0:00,11.0000000,12.0000000,44.537394000000,-1.255291000000,,La Salie Nord,43834,observation-732d74f7-3ee0-47f3-9f84-917bf2f2e902,https://biolit.fr/observations/observation-732d74f7-3ee0-47f3-9f84-917bf2f2e902/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/32105295_10212161823937747_1987473915538046976_n.jpg,,TRUE, +N1,59639,sortie-8baa8b9c-c710-43db-a4cb-d039b9d9be69,https://biolit.fr/sorties/sortie-8baa8b9c-c710-43db-a4cb-d039b9d9be69/,Phil,,5/17/2018 0:00,12.0:15,12.0000000,47.892762000000,-3.967661000000,,La Forêt-Fouesnant - Finistère,43836,observation-8baa8b9c-c710-43db-a4cb-d039b9d9be69,https://biolit.fr/observations/observation-8baa8b9c-c710-43db-a4cb-d039b9d9be69/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110334.JPG,,FALSE, +N1,59639,sortie-8baa8b9c-c710-43db-a4cb-d039b9d9be69,https://biolit.fr/sorties/sortie-8baa8b9c-c710-43db-a4cb-d039b9d9be69/,Phil,,5/17/2018 0:00,12.0:15,12.0000000,47.892762000000,-3.967661000000,,La Forêt-Fouesnant - Finistère,43838,observation-8baa8b9c-c710-43db-a4cb-d039b9d9be69-2,https://biolit.fr/observations/observation-8baa8b9c-c710-43db-a4cb-d039b9d9be69-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110328.JPG,,FALSE, +N1,59639,sortie-8baa8b9c-c710-43db-a4cb-d039b9d9be69,https://biolit.fr/sorties/sortie-8baa8b9c-c710-43db-a4cb-d039b9d9be69/,Phil,,5/17/2018 0:00,12.0:15,12.0000000,47.892762000000,-3.967661000000,,La Forêt-Fouesnant - Finistère,43840,observation-8baa8b9c-c710-43db-a4cb-d039b9d9be69-3,https://biolit.fr/observations/observation-8baa8b9c-c710-43db-a4cb-d039b9d9be69-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110329.JPG,,FALSE, +N1,59639,sortie-8baa8b9c-c710-43db-a4cb-d039b9d9be69,https://biolit.fr/sorties/sortie-8baa8b9c-c710-43db-a4cb-d039b9d9be69/,Phil,,5/17/2018 0:00,12.0:15,12.0000000,47.892762000000,-3.967661000000,,La Forêt-Fouesnant - Finistère,43842,observation-8baa8b9c-c710-43db-a4cb-d039b9d9be69-4,https://biolit.fr/observations/observation-8baa8b9c-c710-43db-a4cb-d039b9d9be69-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110340.JPG,,FALSE, +N1,59639,sortie-8baa8b9c-c710-43db-a4cb-d039b9d9be69,https://biolit.fr/sorties/sortie-8baa8b9c-c710-43db-a4cb-d039b9d9be69/,Phil,,5/17/2018 0:00,12.0:15,12.0000000,47.892762000000,-3.967661000000,,La Forêt-Fouesnant - Finistère,43844,observation-8baa8b9c-c710-43db-a4cb-d039b9d9be69-5,https://biolit.fr/observations/observation-8baa8b9c-c710-43db-a4cb-d039b9d9be69-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110336.JPG,,FALSE, +N1,59640,sortie-2d2067f7-1b1d-45fe-8564-d7dd31472769,https://biolit.fr/sorties/sortie-2d2067f7-1b1d-45fe-8564-d7dd31472769/,Phil,,4/28/2018 0:00,11.0:15,11.0:25,47.895590000000,-3.966141000000,,La Forêt-Fouesnant - Finistère,43846,observation-2d2067f7-1b1d-45fe-8564-d7dd31472769,https://biolit.fr/observations/observation-2d2067f7-1b1d-45fe-8564-d7dd31472769/,Lanice conchilega,Lanice,,https://biolit.fr/wp-content/uploads/2023/07/P1110100.JPG,,TRUE, +N1,59640,sortie-2d2067f7-1b1d-45fe-8564-d7dd31472769,https://biolit.fr/sorties/sortie-2d2067f7-1b1d-45fe-8564-d7dd31472769/,Phil,,4/28/2018 0:00,11.0:15,11.0:25,47.895590000000,-3.966141000000,,La Forêt-Fouesnant - Finistère,43848,observation-2d2067f7-1b1d-45fe-8564-d7dd31472769-2,https://biolit.fr/observations/observation-2d2067f7-1b1d-45fe-8564-d7dd31472769-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110099.JPG,,FALSE, +N1,59640,sortie-2d2067f7-1b1d-45fe-8564-d7dd31472769,https://biolit.fr/sorties/sortie-2d2067f7-1b1d-45fe-8564-d7dd31472769/,Phil,,4/28/2018 0:00,11.0:15,11.0:25,47.895590000000,-3.966141000000,,La Forêt-Fouesnant - Finistère,43850,observation-2d2067f7-1b1d-45fe-8564-d7dd31472769-3,https://biolit.fr/observations/observation-2d2067f7-1b1d-45fe-8564-d7dd31472769-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110098.JPG,,FALSE, +N1,59640,sortie-2d2067f7-1b1d-45fe-8564-d7dd31472769,https://biolit.fr/sorties/sortie-2d2067f7-1b1d-45fe-8564-d7dd31472769/,Phil,,4/28/2018 0:00,11.0:15,11.0:25,47.895590000000,-3.966141000000,,La Forêt-Fouesnant - Finistère,43852,observation-2d2067f7-1b1d-45fe-8564-d7dd31472769-4,https://biolit.fr/observations/observation-2d2067f7-1b1d-45fe-8564-d7dd31472769-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110093.JPG,,FALSE, +N1,59640,sortie-2d2067f7-1b1d-45fe-8564-d7dd31472769,https://biolit.fr/sorties/sortie-2d2067f7-1b1d-45fe-8564-d7dd31472769/,Phil,,4/28/2018 0:00,11.0:15,11.0:25,47.895590000000,-3.966141000000,,La Forêt-Fouesnant - Finistère,43854,observation-2d2067f7-1b1d-45fe-8564-d7dd31472769-5,https://biolit.fr/observations/observation-2d2067f7-1b1d-45fe-8564-d7dd31472769-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110090.JPG,,FALSE, +N1,59640,sortie-2d2067f7-1b1d-45fe-8564-d7dd31472769,https://biolit.fr/sorties/sortie-2d2067f7-1b1d-45fe-8564-d7dd31472769/,Phil,,4/28/2018 0:00,11.0:15,11.0:25,47.895590000000,-3.966141000000,,La Forêt-Fouesnant - Finistère,43856,observation-2d2067f7-1b1d-45fe-8564-d7dd31472769-6,https://biolit.fr/observations/observation-2d2067f7-1b1d-45fe-8564-d7dd31472769-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110089.JPG,,FALSE, +N1,59641,sortie-84500971-8812-4b62-aeff-11911dc0a2dc,https://biolit.fr/sorties/sortie-84500971-8812-4b62-aeff-11911dc0a2dc/,Océane Darrou,,5/13/2018 0:00,10.0000000,14.0000000,46.207664000000,-1.405065000000,,Plage de la chargé neuve,43858,observation-84500971-8812-4b62-aeff-11911dc0a2dc,https://biolit.fr/observations/observation-84500971-8812-4b62-aeff-11911dc0a2dc/,Euclymene lombricoides,Euclymène lombric,,https://biolit.fr/wp-content/uploads/2023/07/34035352_10217536726838599_8404873114164396032_n-scaled.jpg,,TRUE, +N1,59641,sortie-84500971-8812-4b62-aeff-11911dc0a2dc,https://biolit.fr/sorties/sortie-84500971-8812-4b62-aeff-11911dc0a2dc/,Océane Darrou,,5/13/2018 0:00,10.0000000,14.0000000,46.207664000000,-1.405065000000,,Plage de la chargé neuve,43860,observation-84500971-8812-4b62-aeff-11911dc0a2dc-2,https://biolit.fr/observations/observation-84500971-8812-4b62-aeff-11911dc0a2dc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/33780714_10217536726478590_7638933149384179712_n-scaled.jpg,,FALSE, +N1,59642,sortie-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff,https://biolit.fr/sorties/sortie-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff/,Phil,,05/01/2018,12.0:15,12.0000000,47.798393000000,-4.17690700000,,Loctudy - Finistère,43862,observation-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff,https://biolit.fr/observations/observation-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_122117.jpg,,FALSE, +N1,59642,sortie-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff,https://biolit.fr/sorties/sortie-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff/,Phil,,05/01/2018,12.0:15,12.0000000,47.798393000000,-4.17690700000,,Loctudy - Finistère,43864,observation-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff-2,https://biolit.fr/observations/observation-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff-2/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180501_121921.jpg,,TRUE, +N1,59642,sortie-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff,https://biolit.fr/sorties/sortie-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff/,Phil,,05/01/2018,12.0:15,12.0000000,47.798393000000,-4.17690700000,,Loctudy - Finistère,43866,observation-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff-3,https://biolit.fr/observations/observation-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_121926.jpg,,FALSE, +N1,59642,sortie-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff,https://biolit.fr/sorties/sortie-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff/,Phil,,05/01/2018,12.0:15,12.0000000,47.798393000000,-4.17690700000,,Loctudy - Finistère,43868,observation-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff-4,https://biolit.fr/observations/observation-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff-4/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/20180501_121853.jpg,,TRUE, +N1,59642,sortie-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff,https://biolit.fr/sorties/sortie-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff/,Phil,,05/01/2018,12.0:15,12.0000000,47.798393000000,-4.17690700000,,Loctudy - Finistère,43870,observation-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff-5,https://biolit.fr/observations/observation-43f19a62-bc85-4934-8bb4-9b2f0f22e2ff-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_121759.jpg,,FALSE, +N1,59643,sortie-3cf87610-da55-4d63-9af5-c1f0d631e26e,https://biolit.fr/sorties/sortie-3cf87610-da55-4d63-9af5-c1f0d631e26e/,Phil,,05/05/2018,17.000005,17.0:15,48.577819000000,-4.624866000000,,Saint-Pabu - Finistère,43872,observation-3cf87610-da55-4d63-9af5-c1f0d631e26e,https://biolit.fr/observations/observation-3cf87610-da55-4d63-9af5-c1f0d631e26e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110206.JPG,,FALSE, +N1,59643,sortie-3cf87610-da55-4d63-9af5-c1f0d631e26e,https://biolit.fr/sorties/sortie-3cf87610-da55-4d63-9af5-c1f0d631e26e/,Phil,,05/05/2018,17.000005,17.0:15,48.577819000000,-4.624866000000,,Saint-Pabu - Finistère,43874,observation-3cf87610-da55-4d63-9af5-c1f0d631e26e-2,https://biolit.fr/observations/observation-3cf87610-da55-4d63-9af5-c1f0d631e26e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110205.JPG,,FALSE, +N1,59643,sortie-3cf87610-da55-4d63-9af5-c1f0d631e26e,https://biolit.fr/sorties/sortie-3cf87610-da55-4d63-9af5-c1f0d631e26e/,Phil,,05/05/2018,17.000005,17.0:15,48.577819000000,-4.624866000000,,Saint-Pabu - Finistère,43876,observation-3cf87610-da55-4d63-9af5-c1f0d631e26e-3,https://biolit.fr/observations/observation-3cf87610-da55-4d63-9af5-c1f0d631e26e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110208.JPG,,FALSE, +N1,59643,sortie-3cf87610-da55-4d63-9af5-c1f0d631e26e,https://biolit.fr/sorties/sortie-3cf87610-da55-4d63-9af5-c1f0d631e26e/,Phil,,05/05/2018,17.000005,17.0:15,48.577819000000,-4.624866000000,,Saint-Pabu - Finistère,43878,observation-3cf87610-da55-4d63-9af5-c1f0d631e26e-4,https://biolit.fr/observations/observation-3cf87610-da55-4d63-9af5-c1f0d631e26e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110211.JPG,,FALSE, +N1,59643,sortie-3cf87610-da55-4d63-9af5-c1f0d631e26e,https://biolit.fr/sorties/sortie-3cf87610-da55-4d63-9af5-c1f0d631e26e/,Phil,,05/05/2018,17.000005,17.0:15,48.577819000000,-4.624866000000,,Saint-Pabu - Finistère,43880,observation-3cf87610-da55-4d63-9af5-c1f0d631e26e-5,https://biolit.fr/observations/observation-3cf87610-da55-4d63-9af5-c1f0d631e26e-5/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110212.JPG,,TRUE, +N1,59643,sortie-3cf87610-da55-4d63-9af5-c1f0d631e26e,https://biolit.fr/sorties/sortie-3cf87610-da55-4d63-9af5-c1f0d631e26e/,Phil,,05/05/2018,17.000005,17.0:15,48.577819000000,-4.624866000000,,Saint-Pabu - Finistère,43882,observation-3cf87610-da55-4d63-9af5-c1f0d631e26e-6,https://biolit.fr/observations/observation-3cf87610-da55-4d63-9af5-c1f0d631e26e-6/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110207.JPG,,TRUE, +N1,59644,sortie-4931f612-348e-48bd-82f4-c4b584885d40,https://biolit.fr/sorties/sortie-4931f612-348e-48bd-82f4-c4b584885d40/,Phil,,05/01/2018,12.0000000,12.0:25,47.797440000000,-4.177216000000,,Loctudy - Finistère,43884,observation-4931f612-348e-48bd-82f4-c4b584885d40,https://biolit.fr/observations/observation-4931f612-348e-48bd-82f4-c4b584885d40/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_122707.jpg,,FALSE, +N1,59644,sortie-4931f612-348e-48bd-82f4-c4b584885d40,https://biolit.fr/sorties/sortie-4931f612-348e-48bd-82f4-c4b584885d40/,Phil,,05/01/2018,12.0000000,12.0:25,47.797440000000,-4.177216000000,,Loctudy - Finistère,43886,observation-4931f612-348e-48bd-82f4-c4b584885d40-2,https://biolit.fr/observations/observation-4931f612-348e-48bd-82f4-c4b584885d40-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_122728.jpg,,FALSE, +N1,59644,sortie-4931f612-348e-48bd-82f4-c4b584885d40,https://biolit.fr/sorties/sortie-4931f612-348e-48bd-82f4-c4b584885d40/,Phil,,05/01/2018,12.0000000,12.0:25,47.797440000000,-4.177216000000,,Loctudy - Finistère,43888,observation-4931f612-348e-48bd-82f4-c4b584885d40-3,https://biolit.fr/observations/observation-4931f612-348e-48bd-82f4-c4b584885d40-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_122742.jpg,,FALSE, +N1,59644,sortie-4931f612-348e-48bd-82f4-c4b584885d40,https://biolit.fr/sorties/sortie-4931f612-348e-48bd-82f4-c4b584885d40/,Phil,,05/01/2018,12.0000000,12.0:25,47.797440000000,-4.177216000000,,Loctudy - Finistère,43890,observation-4931f612-348e-48bd-82f4-c4b584885d40-4,https://biolit.fr/observations/observation-4931f612-348e-48bd-82f4-c4b584885d40-4/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20180501_122808.jpg,,TRUE, +N1,59645,sortie-7e3592d2-2e2d-47cf-87fd-9078acae7dce,https://biolit.fr/sorties/sortie-7e3592d2-2e2d-47cf-87fd-9078acae7dce/,Olivier Gatti,,5/27/2018 0:00,19.0000000,21.0000000,43.214980000000,5.342868000000,,Anse de la Maronaise,43892,observation-7e3592d2-2e2d-47cf-87fd-9078acae7dce,https://biolit.fr/observations/observation-7e3592d2-2e2d-47cf-87fd-9078acae7dce/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180527_122344-scaled.jpg,,TRUE, +N1,59645,sortie-7e3592d2-2e2d-47cf-87fd-9078acae7dce,https://biolit.fr/sorties/sortie-7e3592d2-2e2d-47cf-87fd-9078acae7dce/,Olivier Gatti,,5/27/2018 0:00,19.0000000,21.0000000,43.214980000000,5.342868000000,,Anse de la Maronaise,43894,observation-7e3592d2-2e2d-47cf-87fd-9078acae7dce-2,https://biolit.fr/observations/observation-7e3592d2-2e2d-47cf-87fd-9078acae7dce-2/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180527_122319-scaled.jpg,,TRUE, +N1,59645,sortie-7e3592d2-2e2d-47cf-87fd-9078acae7dce,https://biolit.fr/sorties/sortie-7e3592d2-2e2d-47cf-87fd-9078acae7dce/,Olivier Gatti,,5/27/2018 0:00,19.0000000,21.0000000,43.214980000000,5.342868000000,,Anse de la Maronaise,43896,observation-7e3592d2-2e2d-47cf-87fd-9078acae7dce-3,https://biolit.fr/observations/observation-7e3592d2-2e2d-47cf-87fd-9078acae7dce-3/,Xantho poressa,Xanthe de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180527_113635-scaled.jpg,,TRUE, +N1,59645,sortie-7e3592d2-2e2d-47cf-87fd-9078acae7dce,https://biolit.fr/sorties/sortie-7e3592d2-2e2d-47cf-87fd-9078acae7dce/,Olivier Gatti,,5/27/2018 0:00,19.0000000,21.0000000,43.214980000000,5.342868000000,,Anse de la Maronaise,43898,observation-7e3592d2-2e2d-47cf-87fd-9078acae7dce-4,https://biolit.fr/observations/observation-7e3592d2-2e2d-47cf-87fd-9078acae7dce-4/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180527_112853-scaled.jpg,,TRUE, +N1,59646,sortie-dfac5d02-c966-42ef-bb91-ead971bbc562,https://biolit.fr/sorties/sortie-dfac5d02-c966-42ef-bb91-ead971bbc562/,Isabelle CRUZ,,5/27/2018 0:00,9.0000000,11.0000000,43.150940000000,5.364272000000,,Anse de la Maronaise Les Goudes Marseille,43900,observation-dfac5d02-c966-42ef-bb91-ead971bbc562,https://biolit.fr/observations/observation-dfac5d02-c966-42ef-bb91-ead971bbc562/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/20180527_094240[1]-scaled.jpg,,TRUE, +N1,59646,sortie-dfac5d02-c966-42ef-bb91-ead971bbc562,https://biolit.fr/sorties/sortie-dfac5d02-c966-42ef-bb91-ead971bbc562/,Isabelle CRUZ,,5/27/2018 0:00,9.0000000,11.0000000,43.150940000000,5.364272000000,,Anse de la Maronaise Les Goudes Marseille,43902,observation-dfac5d02-c966-42ef-bb91-ead971bbc562-2,https://biolit.fr/observations/observation-dfac5d02-c966-42ef-bb91-ead971bbc562-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180527_100351[1]-scaled.jpg,,FALSE, +N1,59646,sortie-dfac5d02-c966-42ef-bb91-ead971bbc562,https://biolit.fr/sorties/sortie-dfac5d02-c966-42ef-bb91-ead971bbc562/,Isabelle CRUZ,,5/27/2018 0:00,9.0000000,11.0000000,43.150940000000,5.364272000000,,Anse de la Maronaise Les Goudes Marseille,43904,observation-dfac5d02-c966-42ef-bb91-ead971bbc562-3,https://biolit.fr/observations/observation-dfac5d02-c966-42ef-bb91-ead971bbc562-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180527_101626[1]-scaled.jpg,,FALSE, +N1,59646,sortie-dfac5d02-c966-42ef-bb91-ead971bbc562,https://biolit.fr/sorties/sortie-dfac5d02-c966-42ef-bb91-ead971bbc562/,Isabelle CRUZ,,5/27/2018 0:00,9.0000000,11.0000000,43.150940000000,5.364272000000,,Anse de la Maronaise Les Goudes Marseille,43906,observation-dfac5d02-c966-42ef-bb91-ead971bbc562-4,https://biolit.fr/observations/observation-dfac5d02-c966-42ef-bb91-ead971bbc562-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180527_101938[1]-scaled.jpg,,FALSE, +N1,59647,sortie-8e09d093-cb47-4f04-bc36-bb0636bdc5f5,https://biolit.fr/sorties/sortie-8e09d093-cb47-4f04-bc36-bb0636bdc5f5/,Olivier Gatti,,5/27/2018 0:00,19.0000000,21.0000000,43.214808000000,5.342707000000,,Anse de la Maronaise,43908,observation-8e09d093-cb47-4f04-bc36-bb0636bdc5f5,https://biolit.fr/observations/observation-8e09d093-cb47-4f04-bc36-bb0636bdc5f5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180527_122621_0-scaled.jpg,,FALSE, +N1,59648,sortie-a516c592-5ea2-4982-ab4c-cc13cb097633,https://biolit.fr/sorties/sortie-a516c592-5ea2-4982-ab4c-cc13cb097633/,Olivier Gatti,,5/27/2018 0:00,9.0000000,12.0000000,43.2148240000,5.342761000000,,Anse de la Maronaise,43910,observation-a516c592-5ea2-4982-ab4c-cc13cb097633,https://biolit.fr/observations/observation-a516c592-5ea2-4982-ab4c-cc13cb097633/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180527_120017-scaled.jpg,,FALSE, +N1,59648,sortie-a516c592-5ea2-4982-ab4c-cc13cb097633,https://biolit.fr/sorties/sortie-a516c592-5ea2-4982-ab4c-cc13cb097633/,Olivier Gatti,,5/27/2018 0:00,9.0000000,12.0000000,43.2148240000,5.342761000000,,Anse de la Maronaise,43912,observation-a516c592-5ea2-4982-ab4c-cc13cb097633-2,https://biolit.fr/observations/observation-a516c592-5ea2-4982-ab4c-cc13cb097633-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180527_120250-scaled.jpg,,FALSE, +N1,59648,sortie-a516c592-5ea2-4982-ab4c-cc13cb097633,https://biolit.fr/sorties/sortie-a516c592-5ea2-4982-ab4c-cc13cb097633/,Olivier Gatti,,5/27/2018 0:00,9.0000000,12.0000000,43.2148240000,5.342761000000,,Anse de la Maronaise,43914,observation-a516c592-5ea2-4982-ab4c-cc13cb097633-3,https://biolit.fr/observations/observation-a516c592-5ea2-4982-ab4c-cc13cb097633-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180527_120252_0-scaled.jpg,,FALSE, +N1,59649,sortie-eaa9d2a9-c8d2-413b-8418-db5ef984d709,https://biolit.fr/sorties/sortie-eaa9d2a9-c8d2-413b-8418-db5ef984d709/,Phil,,4/18/2018 0:00,14.0000000,14.0:45,47.791203000000,-4.26226600000,,Tréffiagat - Finistère,43916,observation-eaa9d2a9-c8d2-413b-8418-db5ef984d709,https://biolit.fr/observations/observation-eaa9d2a9-c8d2-413b-8418-db5ef984d709/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100962.JPG,,FALSE, +N1,59649,sortie-eaa9d2a9-c8d2-413b-8418-db5ef984d709,https://biolit.fr/sorties/sortie-eaa9d2a9-c8d2-413b-8418-db5ef984d709/,Phil,,4/18/2018 0:00,14.0000000,14.0:45,47.791203000000,-4.26226600000,,Tréffiagat - Finistère,43918,observation-eaa9d2a9-c8d2-413b-8418-db5ef984d709-2,https://biolit.fr/observations/observation-eaa9d2a9-c8d2-413b-8418-db5ef984d709-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100963.JPG,,FALSE, +N1,59649,sortie-eaa9d2a9-c8d2-413b-8418-db5ef984d709,https://biolit.fr/sorties/sortie-eaa9d2a9-c8d2-413b-8418-db5ef984d709/,Phil,,4/18/2018 0:00,14.0000000,14.0:45,47.791203000000,-4.26226600000,,Tréffiagat - Finistère,43920,observation-eaa9d2a9-c8d2-413b-8418-db5ef984d709-3,https://biolit.fr/observations/observation-eaa9d2a9-c8d2-413b-8418-db5ef984d709-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100964-.JPG,,FALSE, +N1,59649,sortie-eaa9d2a9-c8d2-413b-8418-db5ef984d709,https://biolit.fr/sorties/sortie-eaa9d2a9-c8d2-413b-8418-db5ef984d709/,Phil,,4/18/2018 0:00,14.0000000,14.0:45,47.791203000000,-4.26226600000,,Tréffiagat - Finistère,43922,observation-eaa9d2a9-c8d2-413b-8418-db5ef984d709-4,https://biolit.fr/observations/observation-eaa9d2a9-c8d2-413b-8418-db5ef984d709-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100966.JPG,,FALSE, +N1,59649,sortie-eaa9d2a9-c8d2-413b-8418-db5ef984d709,https://biolit.fr/sorties/sortie-eaa9d2a9-c8d2-413b-8418-db5ef984d709/,Phil,,4/18/2018 0:00,14.0000000,14.0:45,47.791203000000,-4.26226600000,,Tréffiagat - Finistère,43924,observation-eaa9d2a9-c8d2-413b-8418-db5ef984d709-5,https://biolit.fr/observations/observation-eaa9d2a9-c8d2-413b-8418-db5ef984d709-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100968.JPG,,FALSE, +N1,59649,sortie-eaa9d2a9-c8d2-413b-8418-db5ef984d709,https://biolit.fr/sorties/sortie-eaa9d2a9-c8d2-413b-8418-db5ef984d709/,Phil,,4/18/2018 0:00,14.0000000,14.0:45,47.791203000000,-4.26226600000,,Tréffiagat - Finistère,43926,observation-eaa9d2a9-c8d2-413b-8418-db5ef984d709-6,https://biolit.fr/observations/observation-eaa9d2a9-c8d2-413b-8418-db5ef984d709-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100969.JPG,,FALSE, +N1,59650,sortie-c729c9c8-a3ff-4dce-bca8-12be654ef870,https://biolit.fr/sorties/sortie-c729c9c8-a3ff-4dce-bca8-12be654ef870/,Phil,,5/20/2018 0:00,14.000005,14.0000000,47.798903000000,-4.17689400000,,Loctudy - Finistère,43928,observation-c729c9c8-a3ff-4dce-bca8-12be654ef870,https://biolit.fr/observations/observation-c729c9c8-a3ff-4dce-bca8-12be654ef870/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110436.JPG,,FALSE, +N1,59650,sortie-c729c9c8-a3ff-4dce-bca8-12be654ef870,https://biolit.fr/sorties/sortie-c729c9c8-a3ff-4dce-bca8-12be654ef870/,Phil,,5/20/2018 0:00,14.000005,14.0000000,47.798903000000,-4.17689400000,,Loctudy - Finistère,43930,observation-c729c9c8-a3ff-4dce-bca8-12be654ef870-2,https://biolit.fr/observations/observation-c729c9c8-a3ff-4dce-bca8-12be654ef870-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110434.JPG,,FALSE, +N1,59650,sortie-c729c9c8-a3ff-4dce-bca8-12be654ef870,https://biolit.fr/sorties/sortie-c729c9c8-a3ff-4dce-bca8-12be654ef870/,Phil,,5/20/2018 0:00,14.000005,14.0000000,47.798903000000,-4.17689400000,,Loctudy - Finistère,43932,observation-c729c9c8-a3ff-4dce-bca8-12be654ef870-3,https://biolit.fr/observations/observation-c729c9c8-a3ff-4dce-bca8-12be654ef870-3/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/P1110433.JPG,,TRUE, +N1,59650,sortie-c729c9c8-a3ff-4dce-bca8-12be654ef870,https://biolit.fr/sorties/sortie-c729c9c8-a3ff-4dce-bca8-12be654ef870/,Phil,,5/20/2018 0:00,14.000005,14.0000000,47.798903000000,-4.17689400000,,Loctudy - Finistère,43934,observation-c729c9c8-a3ff-4dce-bca8-12be654ef870-4,https://biolit.fr/observations/observation-c729c9c8-a3ff-4dce-bca8-12be654ef870-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110432.JPG,,FALSE, +N1,59650,sortie-c729c9c8-a3ff-4dce-bca8-12be654ef870,https://biolit.fr/sorties/sortie-c729c9c8-a3ff-4dce-bca8-12be654ef870/,Phil,,5/20/2018 0:00,14.000005,14.0000000,47.798903000000,-4.17689400000,,Loctudy - Finistère,43936,observation-c729c9c8-a3ff-4dce-bca8-12be654ef870-5,https://biolit.fr/observations/observation-c729c9c8-a3ff-4dce-bca8-12be654ef870-5/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110430.JPG,,TRUE, +N1,59651,sortie-b8ec93ba-91d2-430c-ac17-beb7716a4715,https://biolit.fr/sorties/sortie-b8ec93ba-91d2-430c-ac17-beb7716a4715/,Phil,,4/28/2018 0:00,11.0000000,11.0:15,47.895673000000,-3.96678100000,,La Forêt-Fouesnant - Finistère,43938,observation-b8ec93ba-91d2-430c-ac17-beb7716a4715,https://biolit.fr/observations/observation-b8ec93ba-91d2-430c-ac17-beb7716a4715/,Lanice conchilega,Lanice,,https://biolit.fr/wp-content/uploads/2023/07/P1110059.JPG,,TRUE, +N1,59651,sortie-b8ec93ba-91d2-430c-ac17-beb7716a4715,https://biolit.fr/sorties/sortie-b8ec93ba-91d2-430c-ac17-beb7716a4715/,Phil,,4/28/2018 0:00,11.0000000,11.0:15,47.895673000000,-3.96678100000,,La Forêt-Fouesnant - Finistère,43940,observation-b8ec93ba-91d2-430c-ac17-beb7716a4715-2,https://biolit.fr/observations/observation-b8ec93ba-91d2-430c-ac17-beb7716a4715-2/,Lanice conchilega,Lanice,,https://biolit.fr/wp-content/uploads/2023/07/P1110060.JPG,,TRUE, +N1,59651,sortie-b8ec93ba-91d2-430c-ac17-beb7716a4715,https://biolit.fr/sorties/sortie-b8ec93ba-91d2-430c-ac17-beb7716a4715/,Phil,,4/28/2018 0:00,11.0000000,11.0:15,47.895673000000,-3.96678100000,,La Forêt-Fouesnant - Finistère,43942,observation-b8ec93ba-91d2-430c-ac17-beb7716a4715-3,https://biolit.fr/observations/observation-b8ec93ba-91d2-430c-ac17-beb7716a4715-3/,Lanice conchilega,Lanice,,https://biolit.fr/wp-content/uploads/2023/07/P1110063.JPG,,TRUE, +N1,59651,sortie-b8ec93ba-91d2-430c-ac17-beb7716a4715,https://biolit.fr/sorties/sortie-b8ec93ba-91d2-430c-ac17-beb7716a4715/,Phil,,4/28/2018 0:00,11.0000000,11.0:15,47.895673000000,-3.96678100000,,La Forêt-Fouesnant - Finistère,43944,observation-b8ec93ba-91d2-430c-ac17-beb7716a4715-4,https://biolit.fr/observations/observation-b8ec93ba-91d2-430c-ac17-beb7716a4715-4/,Lanice conchilega,Lanice,,https://biolit.fr/wp-content/uploads/2023/07/P1110065.JPG,,TRUE, +N1,59651,sortie-b8ec93ba-91d2-430c-ac17-beb7716a4715,https://biolit.fr/sorties/sortie-b8ec93ba-91d2-430c-ac17-beb7716a4715/,Phil,,4/28/2018 0:00,11.0000000,11.0:15,47.895673000000,-3.96678100000,,La Forêt-Fouesnant - Finistère,43946,observation-b8ec93ba-91d2-430c-ac17-beb7716a4715-5,https://biolit.fr/observations/observation-b8ec93ba-91d2-430c-ac17-beb7716a4715-5/,Lanice conchilega,Lanice,,https://biolit.fr/wp-content/uploads/2023/07/P1110076.JPG,,TRUE, +N1,59652,sortie-a5d6923c-5865-4463-b43c-0ef167fe94f1,https://biolit.fr/sorties/sortie-a5d6923c-5865-4463-b43c-0ef167fe94f1/,pamatelo,,5/26/2018 0:00,10.0000000,12.0000000,43.333938000000,5.197725000000,,Ensues la redonne ,43948,observation-a5d6923c-5865-4463-b43c-0ef167fe94f1,https://biolit.fr/observations/observation-a5d6923c-5865-4463-b43c-0ef167fe94f1/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20180526_105102-scaled.jpg,,TRUE, +N1,59652,sortie-a5d6923c-5865-4463-b43c-0ef167fe94f1,https://biolit.fr/sorties/sortie-a5d6923c-5865-4463-b43c-0ef167fe94f1/,pamatelo,,5/26/2018 0:00,10.0000000,12.0000000,43.333938000000,5.197725000000,,Ensues la redonne ,43950,observation-a5d6923c-5865-4463-b43c-0ef167fe94f1-2,https://biolit.fr/observations/observation-a5d6923c-5865-4463-b43c-0ef167fe94f1-2/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20180526_104928-scaled.jpg,,TRUE, +N1,59652,sortie-a5d6923c-5865-4463-b43c-0ef167fe94f1,https://biolit.fr/sorties/sortie-a5d6923c-5865-4463-b43c-0ef167fe94f1/,pamatelo,,5/26/2018 0:00,10.0000000,12.0000000,43.333938000000,5.197725000000,,Ensues la redonne ,43952,observation-a5d6923c-5865-4463-b43c-0ef167fe94f1-3,https://biolit.fr/observations/observation-a5d6923c-5865-4463-b43c-0ef167fe94f1-3/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20180526_105057 (2)-scaled.jpg,,TRUE, +N1,59653,sortie-392cd04b-59ca-4be5-9303-a45b1c2680a0,https://biolit.fr/sorties/sortie-392cd04b-59ca-4be5-9303-a45b1c2680a0/,Phil,,05/01/2018,12.0:15,12.0000000,47.796482000000,-4.183345000000,,Loctudy - Finistère,43954,observation-392cd04b-59ca-4be5-9303-a45b1c2680a0,https://biolit.fr/observations/observation-392cd04b-59ca-4be5-9303-a45b1c2680a0/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_121731.jpg,,FALSE, +N1,59653,sortie-392cd04b-59ca-4be5-9303-a45b1c2680a0,https://biolit.fr/sorties/sortie-392cd04b-59ca-4be5-9303-a45b1c2680a0/,Phil,,05/01/2018,12.0:15,12.0000000,47.796482000000,-4.183345000000,,Loctudy - Finistère,43956,observation-392cd04b-59ca-4be5-9303-a45b1c2680a0-2,https://biolit.fr/observations/observation-392cd04b-59ca-4be5-9303-a45b1c2680a0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_121716.jpg,,FALSE, +N1,59653,sortie-392cd04b-59ca-4be5-9303-a45b1c2680a0,https://biolit.fr/sorties/sortie-392cd04b-59ca-4be5-9303-a45b1c2680a0/,Phil,,05/01/2018,12.0:15,12.0000000,47.796482000000,-4.183345000000,,Loctudy - Finistère,43958,observation-392cd04b-59ca-4be5-9303-a45b1c2680a0-3,https://biolit.fr/observations/observation-392cd04b-59ca-4be5-9303-a45b1c2680a0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_121702.jpg,,FALSE, +N1,59653,sortie-392cd04b-59ca-4be5-9303-a45b1c2680a0,https://biolit.fr/sorties/sortie-392cd04b-59ca-4be5-9303-a45b1c2680a0/,Phil,,05/01/2018,12.0:15,12.0000000,47.796482000000,-4.183345000000,,Loctudy - Finistère,43960,observation-392cd04b-59ca-4be5-9303-a45b1c2680a0-4,https://biolit.fr/observations/observation-392cd04b-59ca-4be5-9303-a45b1c2680a0-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_121656.jpg,,FALSE, +N1,59653,sortie-392cd04b-59ca-4be5-9303-a45b1c2680a0,https://biolit.fr/sorties/sortie-392cd04b-59ca-4be5-9303-a45b1c2680a0/,Phil,,05/01/2018,12.0:15,12.0000000,47.796482000000,-4.183345000000,,Loctudy - Finistère,43962,observation-392cd04b-59ca-4be5-9303-a45b1c2680a0-5,https://biolit.fr/observations/observation-392cd04b-59ca-4be5-9303-a45b1c2680a0-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_121650.jpg,,FALSE, +N1,59653,sortie-392cd04b-59ca-4be5-9303-a45b1c2680a0,https://biolit.fr/sorties/sortie-392cd04b-59ca-4be5-9303-a45b1c2680a0/,Phil,,05/01/2018,12.0:15,12.0000000,47.796482000000,-4.183345000000,,Loctudy - Finistère,43964,observation-392cd04b-59ca-4be5-9303-a45b1c2680a0-6,https://biolit.fr/observations/observation-392cd04b-59ca-4be5-9303-a45b1c2680a0-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_121644.jpg,,FALSE, +N1,59653,sortie-392cd04b-59ca-4be5-9303-a45b1c2680a0,https://biolit.fr/sorties/sortie-392cd04b-59ca-4be5-9303-a45b1c2680a0/,Phil,,05/01/2018,12.0:15,12.0000000,47.796482000000,-4.183345000000,,Loctudy - Finistère,43966,observation-392cd04b-59ca-4be5-9303-a45b1c2680a0-7,https://biolit.fr/observations/observation-392cd04b-59ca-4be5-9303-a45b1c2680a0-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_121615.jpg,,FALSE, +N1,59653,sortie-392cd04b-59ca-4be5-9303-a45b1c2680a0,https://biolit.fr/sorties/sortie-392cd04b-59ca-4be5-9303-a45b1c2680a0/,Phil,,05/01/2018,12.0:15,12.0000000,47.796482000000,-4.183345000000,,Loctudy - Finistère,43968,observation-392cd04b-59ca-4be5-9303-a45b1c2680a0-8,https://biolit.fr/observations/observation-392cd04b-59ca-4be5-9303-a45b1c2680a0-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_121605.jpg,,FALSE, +N1,59654,sortie-e7dc409e-c4ba-480a-a46a-7d2404b42668,https://biolit.fr/sorties/sortie-e7dc409e-c4ba-480a-a46a-7d2404b42668/,Phil,,5/18/2018 0:00,22.0:25,22.0000000,48.210467000000,-4.370378000000,,Telgruc sur Mer - Finistère,43970,observation-e7dc409e-c4ba-480a-a46a-7d2404b42668,https://biolit.fr/observations/observation-e7dc409e-c4ba-480a-a46a-7d2404b42668/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180518_222702.jpg,,FALSE, +N1,59654,sortie-e7dc409e-c4ba-480a-a46a-7d2404b42668,https://biolit.fr/sorties/sortie-e7dc409e-c4ba-480a-a46a-7d2404b42668/,Phil,,5/18/2018 0:00,22.0:25,22.0000000,48.210467000000,-4.370378000000,,Telgruc sur Mer - Finistère,43972,observation-e7dc409e-c4ba-480a-a46a-7d2404b42668-2,https://biolit.fr/observations/observation-e7dc409e-c4ba-480a-a46a-7d2404b42668-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180518_222744.jpg,,FALSE, +N1,59654,sortie-e7dc409e-c4ba-480a-a46a-7d2404b42668,https://biolit.fr/sorties/sortie-e7dc409e-c4ba-480a-a46a-7d2404b42668/,Phil,,5/18/2018 0:00,22.0:25,22.0000000,48.210467000000,-4.370378000000,,Telgruc sur Mer - Finistère,43974,observation-e7dc409e-c4ba-480a-a46a-7d2404b42668-3,https://biolit.fr/observations/observation-e7dc409e-c4ba-480a-a46a-7d2404b42668-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180518_222726.jpg,,FALSE, +N1,59654,sortie-e7dc409e-c4ba-480a-a46a-7d2404b42668,https://biolit.fr/sorties/sortie-e7dc409e-c4ba-480a-a46a-7d2404b42668/,Phil,,5/18/2018 0:00,22.0:25,22.0000000,48.210467000000,-4.370378000000,,Telgruc sur Mer - Finistère,43976,observation-e7dc409e-c4ba-480a-a46a-7d2404b42668-4,https://biolit.fr/observations/observation-e7dc409e-c4ba-480a-a46a-7d2404b42668-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110389.JPG,,FALSE, +N1,59655,sortie-13239412-2595-4fea-a3cc-4b503e90f6b5,https://biolit.fr/sorties/sortie-13239412-2595-4fea-a3cc-4b503e90f6b5/,Phil,,5/17/2018 0:00,11.0000000,11.0:45,47.892060000000,-3.967223000000,,La Forêt-Fouesnant - Finistère,43978,observation-13239412-2595-4fea-a3cc-4b503e90f6b5,https://biolit.fr/observations/observation-13239412-2595-4fea-a3cc-4b503e90f6b5/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1110246.JPG,,TRUE, +N1,59655,sortie-13239412-2595-4fea-a3cc-4b503e90f6b5,https://biolit.fr/sorties/sortie-13239412-2595-4fea-a3cc-4b503e90f6b5/,Phil,,5/17/2018 0:00,11.0000000,11.0:45,47.892060000000,-3.967223000000,,La Forêt-Fouesnant - Finistère,43980,observation-13239412-2595-4fea-a3cc-4b503e90f6b5-2,https://biolit.fr/observations/observation-13239412-2595-4fea-a3cc-4b503e90f6b5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110245.JPG,,FALSE, +N1,59655,sortie-13239412-2595-4fea-a3cc-4b503e90f6b5,https://biolit.fr/sorties/sortie-13239412-2595-4fea-a3cc-4b503e90f6b5/,Phil,,5/17/2018 0:00,11.0000000,11.0:45,47.892060000000,-3.967223000000,,La Forêt-Fouesnant - Finistère,43982,observation-13239412-2595-4fea-a3cc-4b503e90f6b5-3,https://biolit.fr/observations/observation-13239412-2595-4fea-a3cc-4b503e90f6b5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110249.JPG,,FALSE, +N1,59655,sortie-13239412-2595-4fea-a3cc-4b503e90f6b5,https://biolit.fr/sorties/sortie-13239412-2595-4fea-a3cc-4b503e90f6b5/,Phil,,5/17/2018 0:00,11.0000000,11.0:45,47.892060000000,-3.967223000000,,La Forêt-Fouesnant - Finistère,43984,observation-13239412-2595-4fea-a3cc-4b503e90f6b5-4,https://biolit.fr/observations/observation-13239412-2595-4fea-a3cc-4b503e90f6b5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110252.JPG,,FALSE, +N1,59656,sortie-cd49f0c2-d14f-45ef-bb28-b192b1f0a610,https://biolit.fr/sorties/sortie-cd49f0c2-d14f-45ef-bb28-b192b1f0a610/,Phil,,05/01/2018,11.0000000,12.0000000,47.796698000000,-4.178881000000,,Loctudy - Finistère,43986,observation-cd49f0c2-d14f-45ef-bb28-b192b1f0a610,https://biolit.fr/observations/observation-cd49f0c2-d14f-45ef-bb28-b192b1f0a610/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_115322.jpg,,FALSE, +N1,59656,sortie-cd49f0c2-d14f-45ef-bb28-b192b1f0a610,https://biolit.fr/sorties/sortie-cd49f0c2-d14f-45ef-bb28-b192b1f0a610/,Phil,,05/01/2018,11.0000000,12.0000000,47.796698000000,-4.178881000000,,Loctudy - Finistère,43988,observation-cd49f0c2-d14f-45ef-bb28-b192b1f0a610-2,https://biolit.fr/observations/observation-cd49f0c2-d14f-45ef-bb28-b192b1f0a610-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_115325.jpg,,FALSE, +N1,59656,sortie-cd49f0c2-d14f-45ef-bb28-b192b1f0a610,https://biolit.fr/sorties/sortie-cd49f0c2-d14f-45ef-bb28-b192b1f0a610/,Phil,,05/01/2018,11.0000000,12.0000000,47.796698000000,-4.178881000000,,Loctudy - Finistère,43990,observation-cd49f0c2-d14f-45ef-bb28-b192b1f0a610-3,https://biolit.fr/observations/observation-cd49f0c2-d14f-45ef-bb28-b192b1f0a610-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_115911.jpg,,FALSE, +N1,59656,sortie-cd49f0c2-d14f-45ef-bb28-b192b1f0a610,https://biolit.fr/sorties/sortie-cd49f0c2-d14f-45ef-bb28-b192b1f0a610/,Phil,,05/01/2018,11.0000000,12.0000000,47.796698000000,-4.178881000000,,Loctudy - Finistère,43992,observation-cd49f0c2-d14f-45ef-bb28-b192b1f0a610-4,https://biolit.fr/observations/observation-cd49f0c2-d14f-45ef-bb28-b192b1f0a610-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_115918.jpg,,FALSE, +N1,59656,sortie-cd49f0c2-d14f-45ef-bb28-b192b1f0a610,https://biolit.fr/sorties/sortie-cd49f0c2-d14f-45ef-bb28-b192b1f0a610/,Phil,,05/01/2018,11.0000000,12.0000000,47.796698000000,-4.178881000000,,Loctudy - Finistère,43994,observation-cd49f0c2-d14f-45ef-bb28-b192b1f0a610-5,https://biolit.fr/observations/observation-cd49f0c2-d14f-45ef-bb28-b192b1f0a610-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_115932.jpg,,FALSE, +N1,59656,sortie-cd49f0c2-d14f-45ef-bb28-b192b1f0a610,https://biolit.fr/sorties/sortie-cd49f0c2-d14f-45ef-bb28-b192b1f0a610/,Phil,,05/01/2018,11.0000000,12.0000000,47.796698000000,-4.178881000000,,Loctudy - Finistère,43996,observation-cd49f0c2-d14f-45ef-bb28-b192b1f0a610-6,https://biolit.fr/observations/observation-cd49f0c2-d14f-45ef-bb28-b192b1f0a610-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_115531.jpg,,FALSE, +N1,59657,sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f,https://biolit.fr/sorties/sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f/,CarpeDiem,,5/21/2018 0:00,11.0000000,13.0000000,43.177116000000,6.603812000000,,petite plage de Jovat (la Croix Valmer),43998,observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f,https://biolit.fr/observations/observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f/,Elysia timida,Elysie timide,,https://biolit.fr/wp-content/uploads/2023/07/Elysie Pointillée-scaled.jpg,,TRUE, +N1,59657,sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f,https://biolit.fr/sorties/sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f/,CarpeDiem,,5/21/2018 0:00,11.0000000,13.0000000,43.177116000000,6.603812000000,,petite plage de Jovat (la Croix Valmer),44000,observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-2,https://biolit.fr/observations/observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anémone verte-scaled.jpg,,TRUE, +N1,59657,sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f,https://biolit.fr/sorties/sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f/,CarpeDiem,,5/21/2018 0:00,11.0000000,13.0000000,43.177116000000,6.603812000000,,petite plage de Jovat (la Croix Valmer),44002,observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-3,https://biolit.fr/observations/observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-3/,Stramonita haemastoma,Bouche de sang,,https://biolit.fr/wp-content/uploads/2023/07/Bouche de sang_0-scaled.jpg,,TRUE, +N1,59657,sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f,https://biolit.fr/sorties/sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f/,CarpeDiem,,5/21/2018 0:00,11.0000000,13.0000000,43.177116000000,6.603812000000,,petite plage de Jovat (la Croix Valmer),44004,observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-4,https://biolit.fr/observations/observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule toupie_0-scaled.jpg,,FALSE, +N1,59657,sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f,https://biolit.fr/sorties/sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f/,CarpeDiem,,5/21/2018 0:00,11.0000000,13.0000000,43.177116000000,6.603812000000,,petite plage de Jovat (la Croix Valmer),44006,observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-5,https://biolit.fr/observations/observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-5/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/Opercule d'Astrée rugueuse-scaled.jpg,,TRUE, +N1,59657,sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f,https://biolit.fr/sorties/sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f/,CarpeDiem,,5/21/2018 0:00,11.0000000,13.0000000,43.177116000000,6.603812000000,,petite plage de Jovat (la Croix Valmer),44008,observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-6,https://biolit.fr/observations/observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pagure-scaled.jpg,,FALSE, +N1,59657,sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f,https://biolit.fr/sorties/sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f/,CarpeDiem,,5/21/2018 0:00,11.0000000,13.0000000,43.177116000000,6.603812000000,,petite plage de Jovat (la Croix Valmer),44010,observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-7,https://biolit.fr/observations/observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Posidonie_2-scaled.jpg,,FALSE, +N1,59657,sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f,https://biolit.fr/sorties/sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f/,CarpeDiem,,5/21/2018 0:00,11.0000000,13.0000000,43.177116000000,6.603812000000,,petite plage de Jovat (la Croix Valmer),44012,observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-8,https://biolit.fr/observations/observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-8/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/Tomate de mer_0-scaled.jpg,,TRUE, +N1,59657,sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f,https://biolit.fr/sorties/sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f/,CarpeDiem,,5/21/2018 0:00,11.0000000,13.0000000,43.177116000000,6.603812000000,,petite plage de Jovat (la Croix Valmer),44014,observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-9,https://biolit.fr/observations/observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-9/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Velelle-scaled.jpg,,TRUE, +N1,59657,sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f,https://biolit.fr/sorties/sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f/,CarpeDiem,,5/21/2018 0:00,11.0000000,13.0000000,43.177116000000,6.603812000000,,petite plage de Jovat (la Croix Valmer),44015,observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-10,https://biolit.fr/observations/observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Criste marine_2-scaled.jpg,,FALSE, +N1,59657,sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f,https://biolit.fr/sorties/sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f/,CarpeDiem,,5/21/2018 0:00,11.0000000,13.0000000,43.177116000000,6.603812000000,,petite plage de Jovat (la Croix Valmer),44017,observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-11,https://biolit.fr/observations/observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/non déterminée-scaled.jpg,,FALSE, +N1,59657,sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f,https://biolit.fr/sorties/sortie-b8c08eb3-d1a2-40c3-bcd5-5485128d207f/,CarpeDiem,,5/21/2018 0:00,11.0000000,13.0000000,43.177116000000,6.603812000000,,petite plage de Jovat (la Croix Valmer),44019,observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-12,https://biolit.fr/observations/observation-b8c08eb3-d1a2-40c3-bcd5-5485128d207f-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/oeillets-scaled.jpg,,FALSE, +N1,59658,sortie-a92b2bf7-4643-4e36-80cf-0e27a0e1a70f,https://biolit.fr/sorties/sortie-a92b2bf7-4643-4e36-80cf-0e27a0e1a70f/,Phil,,05/05/2018,17.0:15,17.0000000,48.575950000000,-4.625810000000,,Saint-Pabu - Finistère,44021,observation-a92b2bf7-4643-4e36-80cf-0e27a0e1a70f,https://biolit.fr/observations/observation-a92b2bf7-4643-4e36-80cf-0e27a0e1a70f/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110223.JPG,,FALSE, +N1,59658,sortie-a92b2bf7-4643-4e36-80cf-0e27a0e1a70f,https://biolit.fr/sorties/sortie-a92b2bf7-4643-4e36-80cf-0e27a0e1a70f/,Phil,,05/05/2018,17.0:15,17.0000000,48.575950000000,-4.625810000000,,Saint-Pabu - Finistère,44023,observation-a92b2bf7-4643-4e36-80cf-0e27a0e1a70f-2,https://biolit.fr/observations/observation-a92b2bf7-4643-4e36-80cf-0e27a0e1a70f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110219.JPG,,FALSE, +N1,59658,sortie-a92b2bf7-4643-4e36-80cf-0e27a0e1a70f,https://biolit.fr/sorties/sortie-a92b2bf7-4643-4e36-80cf-0e27a0e1a70f/,Phil,,05/05/2018,17.0:15,17.0000000,48.575950000000,-4.625810000000,,Saint-Pabu - Finistère,44025,observation-a92b2bf7-4643-4e36-80cf-0e27a0e1a70f-3,https://biolit.fr/observations/observation-a92b2bf7-4643-4e36-80cf-0e27a0e1a70f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110218.JPG,,FALSE, +N1,59658,sortie-a92b2bf7-4643-4e36-80cf-0e27a0e1a70f,https://biolit.fr/sorties/sortie-a92b2bf7-4643-4e36-80cf-0e27a0e1a70f/,Phil,,05/05/2018,17.0:15,17.0000000,48.575950000000,-4.625810000000,,Saint-Pabu - Finistère,44027,observation-a92b2bf7-4643-4e36-80cf-0e27a0e1a70f-4,https://biolit.fr/observations/observation-a92b2bf7-4643-4e36-80cf-0e27a0e1a70f-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110214.JPG,,FALSE, +N1,59659,sortie-11ab5daf-2f45-4f3c-9b16-30f79f11bbce,https://biolit.fr/sorties/sortie-11ab5daf-2f45-4f3c-9b16-30f79f11bbce/,Fleur,,5/17/2018 0:00,12.0000000,12.0:15,43.086442000000,6.075916000000,,"Plage Peno, Carqueiranne",44029,observation-11ab5daf-2f45-4f3c-9b16-30f79f11bbce,https://biolit.fr/observations/observation-11ab5daf-2f45-4f3c-9b16-30f79f11bbce/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180515_124431-scaled.jpg,,FALSE, +N1,59659,sortie-11ab5daf-2f45-4f3c-9b16-30f79f11bbce,https://biolit.fr/sorties/sortie-11ab5daf-2f45-4f3c-9b16-30f79f11bbce/,Fleur,,5/17/2018 0:00,12.0000000,12.0:15,43.086442000000,6.075916000000,,"Plage Peno, Carqueiranne",44031,observation-11ab5daf-2f45-4f3c-9b16-30f79f11bbce-2,https://biolit.fr/observations/observation-11ab5daf-2f45-4f3c-9b16-30f79f11bbce-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180515_124440-scaled.jpg,,FALSE, +N1,59659,sortie-11ab5daf-2f45-4f3c-9b16-30f79f11bbce,https://biolit.fr/sorties/sortie-11ab5daf-2f45-4f3c-9b16-30f79f11bbce/,Fleur,,5/17/2018 0:00,12.0000000,12.0:15,43.086442000000,6.075916000000,,"Plage Peno, Carqueiranne",44033,observation-11ab5daf-2f45-4f3c-9b16-30f79f11bbce-3,https://biolit.fr/observations/observation-11ab5daf-2f45-4f3c-9b16-30f79f11bbce-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180515_124523-scaled.jpg,,FALSE, +N1,59660,sortie-07220393-d2f4-4f51-9fd7-9bd844376c97,https://biolit.fr/sorties/sortie-07220393-d2f4-4f51-9fd7-9bd844376c97/,Phil,,5/17/2018 0:00,11.0:35,11.0000000,47.895163000000,-3.967811000000,,La Forêt-Fouesnant - Finistère,44035,observation-07220393-d2f4-4f51-9fd7-9bd844376c97,https://biolit.fr/observations/observation-07220393-d2f4-4f51-9fd7-9bd844376c97/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110243.JPG,,FALSE, +N1,59660,sortie-07220393-d2f4-4f51-9fd7-9bd844376c97,https://biolit.fr/sorties/sortie-07220393-d2f4-4f51-9fd7-9bd844376c97/,Phil,,5/17/2018 0:00,11.0:35,11.0000000,47.895163000000,-3.967811000000,,La Forêt-Fouesnant - Finistère,44037,observation-07220393-d2f4-4f51-9fd7-9bd844376c97-2,https://biolit.fr/observations/observation-07220393-d2f4-4f51-9fd7-9bd844376c97-2/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1110255.JPG,,TRUE, +N1,59660,sortie-07220393-d2f4-4f51-9fd7-9bd844376c97,https://biolit.fr/sorties/sortie-07220393-d2f4-4f51-9fd7-9bd844376c97/,Phil,,5/17/2018 0:00,11.0:35,11.0000000,47.895163000000,-3.967811000000,,La Forêt-Fouesnant - Finistère,44039,observation-07220393-d2f4-4f51-9fd7-9bd844376c97-3,https://biolit.fr/observations/observation-07220393-d2f4-4f51-9fd7-9bd844376c97-3/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1110242.JPG,,TRUE, +N1,59661,sortie-93b45242-d4ff-4c60-8125-3a80a4e22f7b,https://biolit.fr/sorties/sortie-93b45242-d4ff-4c60-8125-3a80a4e22f7b/,Phil,,5/18/2018 0:00,20.0000000,20.0:45,48.210686000000,-4.370056000000,,Telgruc sur Mer - Finistère,44041,observation-93b45242-d4ff-4c60-8125-3a80a4e22f7b,https://biolit.fr/observations/observation-93b45242-d4ff-4c60-8125-3a80a4e22f7b/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110364.JPG,,FALSE, +N1,59661,sortie-93b45242-d4ff-4c60-8125-3a80a4e22f7b,https://biolit.fr/sorties/sortie-93b45242-d4ff-4c60-8125-3a80a4e22f7b/,Phil,,5/18/2018 0:00,20.0000000,20.0:45,48.210686000000,-4.370056000000,,Telgruc sur Mer - Finistère,44043,observation-93b45242-d4ff-4c60-8125-3a80a4e22f7b-2,https://biolit.fr/observations/observation-93b45242-d4ff-4c60-8125-3a80a4e22f7b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110365.JPG,,FALSE, +N1,59662,sortie-cd1cd659-d515-4e20-aa42-bd23b60d1fbd,https://biolit.fr/sorties/sortie-cd1cd659-d515-4e20-aa42-bd23b60d1fbd/,Phil,,5/16/2018 0:00,19.000005,19.000005,47.896692000000,-3.974510000000,,La Forêt-Fouesnant - Finistère,44045,observation-cd1cd659-d515-4e20-aa42-bd23b60d1fbd,https://biolit.fr/observations/observation-cd1cd659-d515-4e20-aa42-bd23b60d1fbd/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180516_190607.jpg,,FALSE, +N1,59662,sortie-cd1cd659-d515-4e20-aa42-bd23b60d1fbd,https://biolit.fr/sorties/sortie-cd1cd659-d515-4e20-aa42-bd23b60d1fbd/,Phil,,5/16/2018 0:00,19.000005,19.000005,47.896692000000,-3.974510000000,,La Forêt-Fouesnant - Finistère,44047,observation-cd1cd659-d515-4e20-aa42-bd23b60d1fbd-2,https://biolit.fr/observations/observation-cd1cd659-d515-4e20-aa42-bd23b60d1fbd-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180516_190615.jpg,,FALSE, +N1,59663,sortie-6b299817-4930-4af4-bb1f-606498993dbf,https://biolit.fr/sorties/sortie-6b299817-4930-4af4-bb1f-606498993dbf/,Phil,,05/01/2018,11.0:45,11.0000000,47.796698000000,-4.181542000000,,Loctudy - Finistère,44049,observation-6b299817-4930-4af4-bb1f-606498993dbf,https://biolit.fr/observations/observation-6b299817-4930-4af4-bb1f-606498993dbf/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20180501_114321.jpg,,TRUE, +N1,59663,sortie-6b299817-4930-4af4-bb1f-606498993dbf,https://biolit.fr/sorties/sortie-6b299817-4930-4af4-bb1f-606498993dbf/,Phil,,05/01/2018,11.0:45,11.0000000,47.796698000000,-4.181542000000,,Loctudy - Finistère,44051,observation-6b299817-4930-4af4-bb1f-606498993dbf-2,https://biolit.fr/observations/observation-6b299817-4930-4af4-bb1f-606498993dbf-2/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20180501_114311.jpg,,TRUE, +N1,59663,sortie-6b299817-4930-4af4-bb1f-606498993dbf,https://biolit.fr/sorties/sortie-6b299817-4930-4af4-bb1f-606498993dbf/,Phil,,05/01/2018,11.0:45,11.0000000,47.796698000000,-4.181542000000,,Loctudy - Finistère,44053,observation-6b299817-4930-4af4-bb1f-606498993dbf-3,https://biolit.fr/observations/observation-6b299817-4930-4af4-bb1f-606498993dbf-3/,Patella pellucida,Helcion,,https://biolit.fr/wp-content/uploads/2023/07/20180501_114929.jpg,,TRUE, +N1,59663,sortie-6b299817-4930-4af4-bb1f-606498993dbf,https://biolit.fr/sorties/sortie-6b299817-4930-4af4-bb1f-606498993dbf/,Phil,,05/01/2018,11.0:45,11.0000000,47.796698000000,-4.181542000000,,Loctudy - Finistère,44055,observation-6b299817-4930-4af4-bb1f-606498993dbf-4,https://biolit.fr/observations/observation-6b299817-4930-4af4-bb1f-606498993dbf-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_114917.jpg,,FALSE, +N1,59663,sortie-6b299817-4930-4af4-bb1f-606498993dbf,https://biolit.fr/sorties/sortie-6b299817-4930-4af4-bb1f-606498993dbf/,Phil,,05/01/2018,11.0:45,11.0000000,47.796698000000,-4.181542000000,,Loctudy - Finistère,44057,observation-6b299817-4930-4af4-bb1f-606498993dbf-5,https://biolit.fr/observations/observation-6b299817-4930-4af4-bb1f-606498993dbf-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_114944.jpg,,FALSE, +N1,59663,sortie-6b299817-4930-4af4-bb1f-606498993dbf,https://biolit.fr/sorties/sortie-6b299817-4930-4af4-bb1f-606498993dbf/,Phil,,05/01/2018,11.0:45,11.0000000,47.796698000000,-4.181542000000,,Loctudy - Finistère,44059,observation-6b299817-4930-4af4-bb1f-606498993dbf-6,https://biolit.fr/observations/observation-6b299817-4930-4af4-bb1f-606498993dbf-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_114956.jpg,,FALSE, +N1,59664,sortie-a484f540-85c5-4970-aebe-cea4d523aa66,https://biolit.fr/sorties/sortie-a484f540-85c5-4970-aebe-cea4d523aa66/,CarpeDiem,,5/20/2018 0:00,16.0000000,17.0000000,43.187858000000,6.645460000000,,Anse de l'Escalet,44061,observation-a484f540-85c5-4970-aebe-cea4d523aa66,https://biolit.fr/observations/observation-a484f540-85c5-4970-aebe-cea4d523aa66/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Aménome-scaled.jpg,,TRUE, +N1,59664,sortie-a484f540-85c5-4970-aebe-cea4d523aa66,https://biolit.fr/sorties/sortie-a484f540-85c5-4970-aebe-cea4d523aa66/,CarpeDiem,,5/20/2018 0:00,16.0000000,17.0000000,43.187858000000,6.645460000000,,Anse de l'Escalet,44063,observation-a484f540-85c5-4970-aebe-cea4d523aa66-2,https://biolit.fr/observations/observation-a484f540-85c5-4970-aebe-cea4d523aa66-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Balaie de mer-scaled.jpg,,FALSE, +N1,59664,sortie-a484f540-85c5-4970-aebe-cea4d523aa66,https://biolit.fr/sorties/sortie-a484f540-85c5-4970-aebe-cea4d523aa66/,CarpeDiem,,5/20/2018 0:00,16.0000000,17.0000000,43.187858000000,6.645460000000,,Anse de l'Escalet,44065,observation-a484f540-85c5-4970-aebe-cea4d523aa66-3,https://biolit.fr/observations/observation-a484f540-85c5-4970-aebe-cea4d523aa66-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Caulerpa racemosa_0-scaled.jpg,,FALSE, +N1,59664,sortie-a484f540-85c5-4970-aebe-cea4d523aa66,https://biolit.fr/sorties/sortie-a484f540-85c5-4970-aebe-cea4d523aa66/,CarpeDiem,,5/20/2018 0:00,16.0000000,17.0000000,43.187858000000,6.645460000000,,Anse de l'Escalet,44067,observation-a484f540-85c5-4970-aebe-cea4d523aa66-4,https://biolit.fr/observations/observation-a484f540-85c5-4970-aebe-cea4d523aa66-4/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/Cérite goumier-scaled.jpg,,TRUE, +N1,59664,sortie-a484f540-85c5-4970-aebe-cea4d523aa66,https://biolit.fr/sorties/sortie-a484f540-85c5-4970-aebe-cea4d523aa66/,CarpeDiem,,5/20/2018 0:00,16.0000000,17.0000000,43.187858000000,6.645460000000,,Anse de l'Escalet,44069,observation-a484f540-85c5-4970-aebe-cea4d523aa66-5,https://biolit.fr/observations/observation-a484f540-85c5-4970-aebe-cea4d523aa66-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/cerithe de mer rouge-scaled.jpg,,FALSE, +N1,59664,sortie-a484f540-85c5-4970-aebe-cea4d523aa66,https://biolit.fr/sorties/sortie-a484f540-85c5-4970-aebe-cea4d523aa66/,CarpeDiem,,5/20/2018 0:00,16.0000000,17.0000000,43.187858000000,6.645460000000,,Anse de l'Escalet,44071,observation-a484f540-85c5-4970-aebe-cea4d523aa66-6,https://biolit.fr/observations/observation-a484f540-85c5-4970-aebe-cea4d523aa66-6/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/padine_0-scaled.jpg,,TRUE, +N1,59664,sortie-a484f540-85c5-4970-aebe-cea4d523aa66,https://biolit.fr/sorties/sortie-a484f540-85c5-4970-aebe-cea4d523aa66/,CarpeDiem,,5/20/2018 0:00,16.0000000,17.0000000,43.187858000000,6.645460000000,,Anse de l'Escalet,44072,observation-a484f540-85c5-4970-aebe-cea4d523aa66-7,https://biolit.fr/observations/observation-a484f540-85c5-4970-aebe-cea4d523aa66-7/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Posidonie_1-scaled.jpg,,TRUE, +N1,59664,sortie-a484f540-85c5-4970-aebe-cea4d523aa66,https://biolit.fr/sorties/sortie-a484f540-85c5-4970-aebe-cea4d523aa66/,CarpeDiem,,5/20/2018 0:00,16.0000000,17.0000000,43.187858000000,6.645460000000,,Anse de l'Escalet,44074,observation-a484f540-85c5-4970-aebe-cea4d523aa66-8,https://biolit.fr/observations/observation-a484f540-85c5-4970-aebe-cea4d523aa66-8/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/Tomate de Mer-scaled.jpg,,TRUE, +N1,59664,sortie-a484f540-85c5-4970-aebe-cea4d523aa66,https://biolit.fr/sorties/sortie-a484f540-85c5-4970-aebe-cea4d523aa66/,CarpeDiem,,5/20/2018 0:00,16.0000000,17.0000000,43.187858000000,6.645460000000,,Anse de l'Escalet,44076,observation-a484f540-85c5-4970-aebe-cea4d523aa66-9,https://biolit.fr/observations/observation-a484f540-85c5-4970-aebe-cea4d523aa66-9/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/velella velella.PNG,,TRUE, +N1,59664,sortie-a484f540-85c5-4970-aebe-cea4d523aa66,https://biolit.fr/sorties/sortie-a484f540-85c5-4970-aebe-cea4d523aa66/,CarpeDiem,,5/20/2018 0:00,16.0000000,17.0000000,43.187858000000,6.645460000000,,Anse de l'Escalet,44077,observation-a484f540-85c5-4970-aebe-cea4d523aa66-10,https://biolit.fr/observations/observation-a484f540-85c5-4970-aebe-cea4d523aa66-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Criste marine_1-scaled.jpg,,FALSE, +N1,59664,sortie-a484f540-85c5-4970-aebe-cea4d523aa66,https://biolit.fr/sorties/sortie-a484f540-85c5-4970-aebe-cea4d523aa66/,CarpeDiem,,5/20/2018 0:00,16.0000000,17.0000000,43.187858000000,6.645460000000,,Anse de l'Escalet,44079,observation-a484f540-85c5-4970-aebe-cea4d523aa66-11,https://biolit.fr/observations/observation-a484f540-85c5-4970-aebe-cea4d523aa66-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Chardons Laiteux-scaled.jpg,,FALSE, +N1,59665,sortie-3cc427cd-a724-4dd0-b144-4d835c926bc9,https://biolit.fr/sorties/sortie-3cc427cd-a724-4dd0-b144-4d835c926bc9/,Phil,,5/17/2018 0:00,12.0000000,12.000005,47.892314000000,-3.966923000000,,La Forêt-Fouesnant - Finistère,44081,observation-3cc427cd-a724-4dd0-b144-4d835c926bc9,https://biolit.fr/observations/observation-3cc427cd-a724-4dd0-b144-4d835c926bc9/,Lutraria lutraria,Lutraire elliptique,,https://biolit.fr/wp-content/uploads/2023/07/P1110307.JPG,,TRUE, +N1,59665,sortie-3cc427cd-a724-4dd0-b144-4d835c926bc9,https://biolit.fr/sorties/sortie-3cc427cd-a724-4dd0-b144-4d835c926bc9/,Phil,,5/17/2018 0:00,12.0000000,12.000005,47.892314000000,-3.966923000000,,La Forêt-Fouesnant - Finistère,44083,observation-3cc427cd-a724-4dd0-b144-4d835c926bc9-2,https://biolit.fr/observations/observation-3cc427cd-a724-4dd0-b144-4d835c926bc9-2/,Lutraria lutraria,Lutraire elliptique,,https://biolit.fr/wp-content/uploads/2023/07/P1110304.JPG,,TRUE, +N1,59665,sortie-3cc427cd-a724-4dd0-b144-4d835c926bc9,https://biolit.fr/sorties/sortie-3cc427cd-a724-4dd0-b144-4d835c926bc9/,Phil,,5/17/2018 0:00,12.0000000,12.000005,47.892314000000,-3.966923000000,,La Forêt-Fouesnant - Finistère,44085,observation-3cc427cd-a724-4dd0-b144-4d835c926bc9-3,https://biolit.fr/observations/observation-3cc427cd-a724-4dd0-b144-4d835c926bc9-3/,Lutraria lutraria,Lutraire elliptique,,https://biolit.fr/wp-content/uploads/2023/07/P1110308.JPG,,TRUE, +N1,59665,sortie-3cc427cd-a724-4dd0-b144-4d835c926bc9,https://biolit.fr/sorties/sortie-3cc427cd-a724-4dd0-b144-4d835c926bc9/,Phil,,5/17/2018 0:00,12.0000000,12.000005,47.892314000000,-3.966923000000,,La Forêt-Fouesnant - Finistère,44087,observation-3cc427cd-a724-4dd0-b144-4d835c926bc9-4,https://biolit.fr/observations/observation-3cc427cd-a724-4dd0-b144-4d835c926bc9-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110312.JPG,,FALSE, +N1,59666,sortie-4d55f222-41ed-4f7b-9300-6f782d43524e,https://biolit.fr/sorties/sortie-4d55f222-41ed-4f7b-9300-6f782d43524e/,Phil,,05/01/2018,11.0:35,11.0000000,47.797730000000,-4.181800000000,,Locyudy - Finistère,44089,observation-4d55f222-41ed-4f7b-9300-6f782d43524e,https://biolit.fr/observations/observation-4d55f222-41ed-4f7b-9300-6f782d43524e/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_114202.jpg,,FALSE, +N1,59666,sortie-4d55f222-41ed-4f7b-9300-6f782d43524e,https://biolit.fr/sorties/sortie-4d55f222-41ed-4f7b-9300-6f782d43524e/,Phil,,05/01/2018,11.0:35,11.0000000,47.797730000000,-4.181800000000,,Locyudy - Finistère,44091,observation-4d55f222-41ed-4f7b-9300-6f782d43524e-2,https://biolit.fr/observations/observation-4d55f222-41ed-4f7b-9300-6f782d43524e-2/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/20180501_114206.jpg,,TRUE, +N1,59666,sortie-4d55f222-41ed-4f7b-9300-6f782d43524e,https://biolit.fr/sorties/sortie-4d55f222-41ed-4f7b-9300-6f782d43524e/,Phil,,05/01/2018,11.0:35,11.0000000,47.797730000000,-4.181800000000,,Locyudy - Finistère,44093,observation-4d55f222-41ed-4f7b-9300-6f782d43524e-3,https://biolit.fr/observations/observation-4d55f222-41ed-4f7b-9300-6f782d43524e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_114212.jpg,,FALSE, +N1,59666,sortie-4d55f222-41ed-4f7b-9300-6f782d43524e,https://biolit.fr/sorties/sortie-4d55f222-41ed-4f7b-9300-6f782d43524e/,Phil,,05/01/2018,11.0:35,11.0000000,47.797730000000,-4.181800000000,,Locyudy - Finistère,44095,observation-4d55f222-41ed-4f7b-9300-6f782d43524e-4,https://biolit.fr/observations/observation-4d55f222-41ed-4f7b-9300-6f782d43524e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_114159.jpg,,FALSE, +N1,59667,sortie-15717599-9d34-4b47-8902-41582319a699,https://biolit.fr/sorties/sortie-15717599-9d34-4b47-8902-41582319a699/,RBBBM,,5/17/2018 0:00,12.0000000,14.0000000,47.812233000000,-3.709233000000,,Moëlan anse du Gorgen,44097,observation-15717599-9d34-4b47-8902-41582319a699,https://biolit.fr/observations/observation-15717599-9d34-4b47-8902-41582319a699/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2141-scaled.jpg,,FALSE, +N1,59667,sortie-15717599-9d34-4b47-8902-41582319a699,https://biolit.fr/sorties/sortie-15717599-9d34-4b47-8902-41582319a699/,RBBBM,,5/17/2018 0:00,12.0000000,14.0000000,47.812233000000,-3.709233000000,,Moëlan anse du Gorgen,44099,observation-15717599-9d34-4b47-8902-41582319a699-2,https://biolit.fr/observations/observation-15717599-9d34-4b47-8902-41582319a699-2/,Clavelina lepadiformis,Grande claveline,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2153-scaled.jpg,,TRUE, +N1,59667,sortie-15717599-9d34-4b47-8902-41582319a699,https://biolit.fr/sorties/sortie-15717599-9d34-4b47-8902-41582319a699/,RBBBM,,5/17/2018 0:00,12.0000000,14.0000000,47.812233000000,-3.709233000000,,Moëlan anse du Gorgen,44101,observation-15717599-9d34-4b47-8902-41582319a699-3,https://biolit.fr/observations/observation-15717599-9d34-4b47-8902-41582319a699-3/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2170-scaled.jpg,,TRUE, +N1,59667,sortie-15717599-9d34-4b47-8902-41582319a699,https://biolit.fr/sorties/sortie-15717599-9d34-4b47-8902-41582319a699/,RBBBM,,5/17/2018 0:00,12.0000000,14.0000000,47.812233000000,-3.709233000000,,Moëlan anse du Gorgen,44103,observation-15717599-9d34-4b47-8902-41582319a699-4,https://biolit.fr/observations/observation-15717599-9d34-4b47-8902-41582319a699-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2172-scaled.jpg,,FALSE, +N1,59667,sortie-15717599-9d34-4b47-8902-41582319a699,https://biolit.fr/sorties/sortie-15717599-9d34-4b47-8902-41582319a699/,RBBBM,,5/17/2018 0:00,12.0000000,14.0000000,47.812233000000,-3.709233000000,,Moëlan anse du Gorgen,44105,observation-15717599-9d34-4b47-8902-41582319a699-5,https://biolit.fr/observations/observation-15717599-9d34-4b47-8902-41582319a699-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2134-scaled.jpg,,FALSE, +N1,59668,sortie-5813ebf6-67c5-40ea-9c6b-98ab4e6057b2,https://biolit.fr/sorties/sortie-5813ebf6-67c5-40ea-9c6b-98ab4e6057b2/,Noëlla M,,5/16/2018 0:00,14.0000000,15.0000000,43.235778000000,5.359927000000,,Plage de la bonne brise ,44107,observation-5813ebf6-67c5-40ea-9c6b-98ab4e6057b2,https://biolit.fr/observations/observation-5813ebf6-67c5-40ea-9c6b-98ab4e6057b2/,,,,https://biolit.fr/wp-content/uploads/2023/07/32750553_10215846599538933_3547220546397667328_n-scaled.jpg,,FALSE, +N1,59668,sortie-5813ebf6-67c5-40ea-9c6b-98ab4e6057b2,https://biolit.fr/sorties/sortie-5813ebf6-67c5-40ea-9c6b-98ab4e6057b2/,Noëlla M,,5/16/2018 0:00,14.0000000,15.0000000,43.235778000000,5.359927000000,,Plage de la bonne brise ,44109,observation-5813ebf6-67c5-40ea-9c6b-98ab4e6057b2-2,https://biolit.fr/observations/observation-5813ebf6-67c5-40ea-9c6b-98ab4e6057b2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/32831323_10215846599218925_5506543253412904960_n-scaled.jpg,,FALSE, +N1,59669,sortie-84ec1957-c930-4611-b7a4-3bba03eb17a9,https://biolit.fr/sorties/sortie-84ec1957-c930-4611-b7a4-3bba03eb17a9/,Phil,,05/07/2018,10.0000000,10.000005,48.783660000000,-3.043988000000,,Paimpol - Côtes-d'Armor,44111,observation-84ec1957-c930-4611-b7a4-3bba03eb17a9,https://biolit.fr/observations/observation-84ec1957-c930-4611-b7a4-3bba03eb17a9/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/20180507_100630.jpg,,TRUE, +N1,59669,sortie-84ec1957-c930-4611-b7a4-3bba03eb17a9,https://biolit.fr/sorties/sortie-84ec1957-c930-4611-b7a4-3bba03eb17a9/,Phil,,05/07/2018,10.0000000,10.000005,48.783660000000,-3.043988000000,,Paimpol - Côtes-d'Armor,44113,observation-84ec1957-c930-4611-b7a4-3bba03eb17a9-2,https://biolit.fr/observations/observation-84ec1957-c930-4611-b7a4-3bba03eb17a9-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20180507_100640.jpg,,TRUE, +N1,59669,sortie-84ec1957-c930-4611-b7a4-3bba03eb17a9,https://biolit.fr/sorties/sortie-84ec1957-c930-4611-b7a4-3bba03eb17a9/,Phil,,05/07/2018,10.0000000,10.000005,48.783660000000,-3.043988000000,,Paimpol - Côtes-d'Armor,44115,observation-84ec1957-c930-4611-b7a4-3bba03eb17a9-3,https://biolit.fr/observations/observation-84ec1957-c930-4611-b7a4-3bba03eb17a9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180507_100650.jpg,,FALSE, +N1,59670,sortie-61b4c948-c7ee-41e6-bada-f347a58d9bc1,https://biolit.fr/sorties/sortie-61b4c948-c7ee-41e6-bada-f347a58d9bc1/,Phil,,5/16/2018 0:00,19.0000000,19.000005,47.896821000000,-3.974763000000,,La Forêt-Fouesnant - Finistère,44117,observation-61b4c948-c7ee-41e6-bada-f347a58d9bc1,https://biolit.fr/observations/observation-61b4c948-c7ee-41e6-bada-f347a58d9bc1/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20180516_190404.jpg,,TRUE, +N1,59670,sortie-61b4c948-c7ee-41e6-bada-f347a58d9bc1,https://biolit.fr/sorties/sortie-61b4c948-c7ee-41e6-bada-f347a58d9bc1/,Phil,,5/16/2018 0:00,19.0000000,19.000005,47.896821000000,-3.974763000000,,La Forêt-Fouesnant - Finistère,44119,observation-61b4c948-c7ee-41e6-bada-f347a58d9bc1-2,https://biolit.fr/observations/observation-61b4c948-c7ee-41e6-bada-f347a58d9bc1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180516_190434.jpg,,FALSE, +N1,59670,sortie-61b4c948-c7ee-41e6-bada-f347a58d9bc1,https://biolit.fr/sorties/sortie-61b4c948-c7ee-41e6-bada-f347a58d9bc1/,Phil,,5/16/2018 0:00,19.0000000,19.000005,47.896821000000,-3.974763000000,,La Forêt-Fouesnant - Finistère,44121,observation-61b4c948-c7ee-41e6-bada-f347a58d9bc1-3,https://biolit.fr/observations/observation-61b4c948-c7ee-41e6-bada-f347a58d9bc1-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20180516_190412.jpg,,TRUE, +N1,59670,sortie-61b4c948-c7ee-41e6-bada-f347a58d9bc1,https://biolit.fr/sorties/sortie-61b4c948-c7ee-41e6-bada-f347a58d9bc1/,Phil,,5/16/2018 0:00,19.0000000,19.000005,47.896821000000,-3.974763000000,,La Forêt-Fouesnant - Finistère,44123,observation-61b4c948-c7ee-41e6-bada-f347a58d9bc1-4,https://biolit.fr/observations/observation-61b4c948-c7ee-41e6-bada-f347a58d9bc1-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180516_190459.jpg,,FALSE, +N1,59671,sortie-b83f063c-c613-49f1-960a-d60c197e16af,https://biolit.fr/sorties/sortie-b83f063c-c613-49f1-960a-d60c197e16af/,Phil,,05/05/2018,17.0000000,17.000005,48.577018000000,-4.625146000000,,Saint-Pabu - Finistère,44125,observation-b83f063c-c613-49f1-960a-d60c197e16af,https://biolit.fr/observations/observation-b83f063c-c613-49f1-960a-d60c197e16af/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1110183.JPG,,TRUE, +N1,59671,sortie-b83f063c-c613-49f1-960a-d60c197e16af,https://biolit.fr/sorties/sortie-b83f063c-c613-49f1-960a-d60c197e16af/,Phil,,05/05/2018,17.0000000,17.000005,48.577018000000,-4.625146000000,,Saint-Pabu - Finistère,44127,observation-b83f063c-c613-49f1-960a-d60c197e16af-2,https://biolit.fr/observations/observation-b83f063c-c613-49f1-960a-d60c197e16af-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110186.JPG,,FALSE, +N1,59671,sortie-b83f063c-c613-49f1-960a-d60c197e16af,https://biolit.fr/sorties/sortie-b83f063c-c613-49f1-960a-d60c197e16af/,Phil,,05/05/2018,17.0000000,17.000005,48.577018000000,-4.625146000000,,Saint-Pabu - Finistère,44129,observation-b83f063c-c613-49f1-960a-d60c197e16af-3,https://biolit.fr/observations/observation-b83f063c-c613-49f1-960a-d60c197e16af-3/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1110184.JPG,,TRUE, +N1,59671,sortie-b83f063c-c613-49f1-960a-d60c197e16af,https://biolit.fr/sorties/sortie-b83f063c-c613-49f1-960a-d60c197e16af/,Phil,,05/05/2018,17.0000000,17.000005,48.577018000000,-4.625146000000,,Saint-Pabu - Finistère,44131,observation-b83f063c-c613-49f1-960a-d60c197e16af-4,https://biolit.fr/observations/observation-b83f063c-c613-49f1-960a-d60c197e16af-4/,Schizoporella unicornis,Schizoporella unicorne,,https://biolit.fr/wp-content/uploads/2023/07/P1110185.JPG,,TRUE, +N1,59672,sortie-5705d428-e214-4cb3-8508-219df2be9813,https://biolit.fr/sorties/sortie-5705d428-e214-4cb3-8508-219df2be9813/,Kevin,,5/16/2018 0:00,14.0000000,15.0000000,43.240113000000,5.360688000000,,Plage de la Bonne Brise,44133,observation-5705d428-e214-4cb3-8508-219df2be9813,https://biolit.fr/observations/observation-5705d428-e214-4cb3-8508-219df2be9813/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3962_0-scaled.jpg,,FALSE, +N1,59673,sortie-48d473df-698e-4f44-b56f-bf37b68e3ef9,https://biolit.fr/sorties/sortie-48d473df-698e-4f44-b56f-bf37b68e3ef9/,Noëlla M,,3/19/2018 0:00,13.0000000,13.0000000,43.239924000000,5.362482000000,,Plage du bain des dames ,44135,observation-48d473df-698e-4f44-b56f-bf37b68e3ef9,https://biolit.fr/observations/observation-48d473df-698e-4f44-b56f-bf37b68e3ef9/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/29357177_10215410059785712_73631063896752128_n-scaled.jpg,,TRUE, +N1,59673,sortie-48d473df-698e-4f44-b56f-bf37b68e3ef9,https://biolit.fr/sorties/sortie-48d473df-698e-4f44-b56f-bf37b68e3ef9/,Noëlla M,,3/19/2018 0:00,13.0000000,13.0000000,43.239924000000,5.362482000000,,Plage du bain des dames ,44137,observation-48d473df-698e-4f44-b56f-bf37b68e3ef9-2,https://biolit.fr/observations/observation-48d473df-698e-4f44-b56f-bf37b68e3ef9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/29366165_10215410061305750_3364738604445204480_n-scaled.jpg,,FALSE, +N1,59674,sortie-f460b986-682c-423a-8c4f-06add23c3cbb,https://biolit.fr/sorties/sortie-f460b986-682c-423a-8c4f-06add23c3cbb/,Phil,,4/18/2018 0:00,14.0000000,14.0:35,47.789016000000,-4.264742000000,,Léchiagat - Finistère,44139,observation-f460b986-682c-423a-8c4f-06add23c3cbb,https://biolit.fr/observations/observation-f460b986-682c-423a-8c4f-06add23c3cbb/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100958.JPG,,FALSE, +N1,59674,sortie-f460b986-682c-423a-8c4f-06add23c3cbb,https://biolit.fr/sorties/sortie-f460b986-682c-423a-8c4f-06add23c3cbb/,Phil,,4/18/2018 0:00,14.0000000,14.0:35,47.789016000000,-4.264742000000,,Léchiagat - Finistère,44141,observation-f460b986-682c-423a-8c4f-06add23c3cbb-2,https://biolit.fr/observations/observation-f460b986-682c-423a-8c4f-06add23c3cbb-2/,Janua heterostropha,Spirorbe de Pagenstecher,,https://biolit.fr/wp-content/uploads/2023/07/P1100956.JPG,,TRUE, +N1,59674,sortie-f460b986-682c-423a-8c4f-06add23c3cbb,https://biolit.fr/sorties/sortie-f460b986-682c-423a-8c4f-06add23c3cbb/,Phil,,4/18/2018 0:00,14.0000000,14.0:35,47.789016000000,-4.264742000000,,Léchiagat - Finistère,44143,observation-f460b986-682c-423a-8c4f-06add23c3cbb-3,https://biolit.fr/observations/observation-f460b986-682c-423a-8c4f-06add23c3cbb-3/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1100960.JPG,,TRUE, +N1,59675,sortie-dde814cc-8c62-4b82-b082-38b22232eac6,https://biolit.fr/sorties/sortie-dde814cc-8c62-4b82-b082-38b22232eac6/,Phil,,05/01/2018,11.0000000,11.0000000,47.797197000000,-4.17868800000,,Loctudy - Finistère,44145,observation-dde814cc-8c62-4b82-b082-38b22232eac6,https://biolit.fr/observations/observation-dde814cc-8c62-4b82-b082-38b22232eac6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_114150.jpg,,FALSE, +N1,59675,sortie-dde814cc-8c62-4b82-b082-38b22232eac6,https://biolit.fr/sorties/sortie-dde814cc-8c62-4b82-b082-38b22232eac6/,Phil,,05/01/2018,11.0000000,11.0000000,47.797197000000,-4.17868800000,,Loctudy - Finistère,44147,observation-dde814cc-8c62-4b82-b082-38b22232eac6-2,https://biolit.fr/observations/observation-dde814cc-8c62-4b82-b082-38b22232eac6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112949.jpg,,FALSE, +N1,59675,sortie-dde814cc-8c62-4b82-b082-38b22232eac6,https://biolit.fr/sorties/sortie-dde814cc-8c62-4b82-b082-38b22232eac6/,Phil,,05/01/2018,11.0000000,11.0000000,47.797197000000,-4.17868800000,,Loctudy - Finistère,44149,observation-dde814cc-8c62-4b82-b082-38b22232eac6-3,https://biolit.fr/observations/observation-dde814cc-8c62-4b82-b082-38b22232eac6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112946.jpg,,FALSE, +N1,59675,sortie-dde814cc-8c62-4b82-b082-38b22232eac6,https://biolit.fr/sorties/sortie-dde814cc-8c62-4b82-b082-38b22232eac6/,Phil,,05/01/2018,11.0000000,11.0000000,47.797197000000,-4.17868800000,,Loctudy - Finistère,44151,observation-dde814cc-8c62-4b82-b082-38b22232eac6-4,https://biolit.fr/observations/observation-dde814cc-8c62-4b82-b082-38b22232eac6-4/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112936.jpg,,TRUE, +N1,59676,sortie-96b7cf41-fda8-4952-ba0e-b6b7811977cb,https://biolit.fr/sorties/sortie-96b7cf41-fda8-4952-ba0e-b6b7811977cb/,Phil,,05/06/2018,15.0000000,15.0000000,48.1694270000,-4.292019000000,,Plomodiern - Finistère,44153,observation-96b7cf41-fda8-4952-ba0e-b6b7811977cb,https://biolit.fr/observations/observation-96b7cf41-fda8-4952-ba0e-b6b7811977cb/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20180506_150204.jpg,,TRUE, +N1,59677,sortie-d03a6a33-65cc-408e-954f-6cf4f5f9a223,https://biolit.fr/sorties/sortie-d03a6a33-65cc-408e-954f-6cf4f5f9a223/,Phil,,5/13/2018 0:00,14.0000000,14.0:55,47.800382000000,-4.271899000000,,Tréffiagat - Finistère,44155,observation-d03a6a33-65cc-408e-954f-6cf4f5f9a223,https://biolit.fr/observations/observation-d03a6a33-65cc-408e-954f-6cf4f5f9a223/,Halimione portulacoides,Obione faux-pourpier,,https://biolit.fr/wp-content/uploads/2023/07/20180513_145218.jpg,,TRUE, +N1,59677,sortie-d03a6a33-65cc-408e-954f-6cf4f5f9a223,https://biolit.fr/sorties/sortie-d03a6a33-65cc-408e-954f-6cf4f5f9a223/,Phil,,5/13/2018 0:00,14.0000000,14.0:55,47.800382000000,-4.271899000000,,Tréffiagat - Finistère,44157,observation-d03a6a33-65cc-408e-954f-6cf4f5f9a223-2,https://biolit.fr/observations/observation-d03a6a33-65cc-408e-954f-6cf4f5f9a223-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180513_145326.jpg,,FALSE, +N1,59678,sortie-86e78f49-f24d-4256-bcc3-d2d884b02f69,https://biolit.fr/sorties/sortie-86e78f49-f24d-4256-bcc3-d2d884b02f69/,Phil,,05/01/2018,11.0:25,11.0000000,47.797258000000,-4.178922000000,,Loctudy - Finistère,44159,observation-86e78f49-f24d-4256-bcc3-d2d884b02f69,https://biolit.fr/observations/observation-86e78f49-f24d-4256-bcc3-d2d884b02f69/,Phymatolithon lenormandii,Algue encroûtante rouge de Lenormand,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112749.jpg,,TRUE, +N1,59678,sortie-86e78f49-f24d-4256-bcc3-d2d884b02f69,https://biolit.fr/sorties/sortie-86e78f49-f24d-4256-bcc3-d2d884b02f69/,Phil,,05/01/2018,11.0:25,11.0000000,47.797258000000,-4.178922000000,,Loctudy - Finistère,44161,observation-86e78f49-f24d-4256-bcc3-d2d884b02f69-2,https://biolit.fr/observations/observation-86e78f49-f24d-4256-bcc3-d2d884b02f69-2/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112850.jpg,,TRUE, +N1,59678,sortie-86e78f49-f24d-4256-bcc3-d2d884b02f69,https://biolit.fr/sorties/sortie-86e78f49-f24d-4256-bcc3-d2d884b02f69/,Phil,,05/01/2018,11.0:25,11.0000000,47.797258000000,-4.178922000000,,Loctudy - Finistère,44163,observation-86e78f49-f24d-4256-bcc3-d2d884b02f69-3,https://biolit.fr/observations/observation-86e78f49-f24d-4256-bcc3-d2d884b02f69-3/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112855.jpg,,TRUE, +N1,59678,sortie-86e78f49-f24d-4256-bcc3-d2d884b02f69,https://biolit.fr/sorties/sortie-86e78f49-f24d-4256-bcc3-d2d884b02f69/,Phil,,05/01/2018,11.0:25,11.0000000,47.797258000000,-4.178922000000,,Loctudy - Finistère,44165,observation-86e78f49-f24d-4256-bcc3-d2d884b02f69-4,https://biolit.fr/observations/observation-86e78f49-f24d-4256-bcc3-d2d884b02f69-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112912.jpg,,FALSE, +N1,59679,sortie-518480af-e2db-4dd5-922b-41982f53d0d9,https://biolit.fr/sorties/sortie-518480af-e2db-4dd5-922b-41982f53d0d9/,Phil,,05/05/2018,11.0:25,11.0000000,47.796549000000,-3.850774000000,,Trévignon - Finistère,44167,observation-518480af-e2db-4dd5-922b-41982f53d0d9,https://biolit.fr/observations/observation-518480af-e2db-4dd5-922b-41982f53d0d9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180505_112634.jpg,,FALSE, +N1,59679,sortie-518480af-e2db-4dd5-922b-41982f53d0d9,https://biolit.fr/sorties/sortie-518480af-e2db-4dd5-922b-41982f53d0d9/,Phil,,05/05/2018,11.0:25,11.0000000,47.796549000000,-3.850774000000,,Trévignon - Finistère,44169,observation-518480af-e2db-4dd5-922b-41982f53d0d9-2,https://biolit.fr/observations/observation-518480af-e2db-4dd5-922b-41982f53d0d9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180505_112640.jpg,,FALSE, +N1,59679,sortie-518480af-e2db-4dd5-922b-41982f53d0d9,https://biolit.fr/sorties/sortie-518480af-e2db-4dd5-922b-41982f53d0d9/,Phil,,05/05/2018,11.0:25,11.0000000,47.796549000000,-3.850774000000,,Trévignon - Finistère,44171,observation-518480af-e2db-4dd5-922b-41982f53d0d9-3,https://biolit.fr/observations/observation-518480af-e2db-4dd5-922b-41982f53d0d9-3/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/20180505_112804.jpg,,TRUE, +N1,59680,sortie-aa7952d1-e55b-44cb-a656-58c015cb593c,https://biolit.fr/sorties/sortie-aa7952d1-e55b-44cb-a656-58c015cb593c/,Phil,,05/05/2018,16.0:55,17.0000000,48.57656100000,-4.625289000000,,Saint-Pabu - Finistère,44173,observation-aa7952d1-e55b-44cb-a656-58c015cb593c,https://biolit.fr/observations/observation-aa7952d1-e55b-44cb-a656-58c015cb593c/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1110175.JPG,,TRUE, +N1,59680,sortie-aa7952d1-e55b-44cb-a656-58c015cb593c,https://biolit.fr/sorties/sortie-aa7952d1-e55b-44cb-a656-58c015cb593c/,Phil,,05/05/2018,16.0:55,17.0000000,48.57656100000,-4.625289000000,,Saint-Pabu - Finistère,44175,observation-aa7952d1-e55b-44cb-a656-58c015cb593c-2,https://biolit.fr/observations/observation-aa7952d1-e55b-44cb-a656-58c015cb593c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110176.JPG,,FALSE, +N1,59680,sortie-aa7952d1-e55b-44cb-a656-58c015cb593c,https://biolit.fr/sorties/sortie-aa7952d1-e55b-44cb-a656-58c015cb593c/,Phil,,05/05/2018,16.0:55,17.0000000,48.57656100000,-4.625289000000,,Saint-Pabu - Finistère,44177,observation-aa7952d1-e55b-44cb-a656-58c015cb593c-3,https://biolit.fr/observations/observation-aa7952d1-e55b-44cb-a656-58c015cb593c-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110177.JPG,,TRUE, +N1,59681,sortie-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e,https://biolit.fr/sorties/sortie-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e/,Phil,,05/01/2018,11.0000000,11.0:25,47.798607000000,-4.176478000000,,Loctudy - Finistère,44179,observation-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e,https://biolit.fr/observations/observation-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112357_0.jpg,,TRUE, +N1,59681,sortie-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e,https://biolit.fr/sorties/sortie-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e/,Phil,,05/01/2018,11.0000000,11.0:25,47.798607000000,-4.176478000000,,Loctudy - Finistère,44181,observation-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e-2,https://biolit.fr/observations/observation-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e-2/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112413_0.jpg,,TRUE, +N1,59681,sortie-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e,https://biolit.fr/sorties/sortie-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e/,Phil,,05/01/2018,11.0000000,11.0:25,47.798607000000,-4.176478000000,,Loctudy - Finistère,44183,observation-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e-3,https://biolit.fr/observations/observation-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e-3/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112420_0.jpg,,TRUE, +N1,59681,sortie-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e,https://biolit.fr/sorties/sortie-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e/,Phil,,05/01/2018,11.0000000,11.0:25,47.798607000000,-4.176478000000,,Loctudy - Finistère,44185,observation-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e-4,https://biolit.fr/observations/observation-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e-4/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112436.jpg,,TRUE, +N1,59681,sortie-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e,https://biolit.fr/sorties/sortie-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e/,Phil,,05/01/2018,11.0000000,11.0:25,47.798607000000,-4.176478000000,,Loctudy - Finistère,44187,observation-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e-5,https://biolit.fr/observations/observation-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e-5/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112440.jpg,,TRUE, +N1,59681,sortie-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e,https://biolit.fr/sorties/sortie-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e/,Phil,,05/01/2018,11.0000000,11.0:25,47.798607000000,-4.176478000000,,Loctudy - Finistère,44189,observation-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e-6,https://biolit.fr/observations/observation-2f8d46cf-f88a-4a91-a127-7f9a20c08e1e-6/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112502.jpg,,TRUE, +N1,59682,sortie-277355eb-c6a7-4119-8cf2-2f259a240e3a,https://biolit.fr/sorties/sortie-277355eb-c6a7-4119-8cf2-2f259a240e3a/,Phil,,04/05/2018,9.0000000,9.0:55,48.01092200000,-4.543503000000,,Esquibien - Finistère,44191,observation-277355eb-c6a7-4119-8cf2-2f259a240e3a,https://biolit.fr/observations/observation-277355eb-c6a7-4119-8cf2-2f259a240e3a/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/P1100935.JPG,,TRUE, +N1,59682,sortie-277355eb-c6a7-4119-8cf2-2f259a240e3a,https://biolit.fr/sorties/sortie-277355eb-c6a7-4119-8cf2-2f259a240e3a/,Phil,,04/05/2018,9.0000000,9.0:55,48.01092200000,-4.543503000000,,Esquibien - Finistère,44193,observation-277355eb-c6a7-4119-8cf2-2f259a240e3a-2,https://biolit.fr/observations/observation-277355eb-c6a7-4119-8cf2-2f259a240e3a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100936.JPG,,FALSE, +N1,59682,sortie-277355eb-c6a7-4119-8cf2-2f259a240e3a,https://biolit.fr/sorties/sortie-277355eb-c6a7-4119-8cf2-2f259a240e3a/,Phil,,04/05/2018,9.0000000,9.0:55,48.01092200000,-4.543503000000,,Esquibien - Finistère,44195,observation-277355eb-c6a7-4119-8cf2-2f259a240e3a-3,https://biolit.fr/observations/observation-277355eb-c6a7-4119-8cf2-2f259a240e3a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100938.JPG,,FALSE, +N1,59683,sortie-e23b6971-a8af-455a-8db6-acabf8df9744,https://biolit.fr/sorties/sortie-e23b6971-a8af-455a-8db6-acabf8df9744/,Phil,,05/01/2018,11.0:15,11.0000000,47.798636000000,-4.177002000000,,Loctudy - Finistère,44197,observation-e23b6971-a8af-455a-8db6-acabf8df9744,https://biolit.fr/observations/observation-e23b6971-a8af-455a-8db6-acabf8df9744/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112026.jpg,,FALSE, +N1,59683,sortie-e23b6971-a8af-455a-8db6-acabf8df9744,https://biolit.fr/sorties/sortie-e23b6971-a8af-455a-8db6-acabf8df9744/,Phil,,05/01/2018,11.0:15,11.0000000,47.798636000000,-4.177002000000,,Loctudy - Finistère,44199,observation-e23b6971-a8af-455a-8db6-acabf8df9744-2,https://biolit.fr/observations/observation-e23b6971-a8af-455a-8db6-acabf8df9744-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112036.jpg,,FALSE, +N1,59683,sortie-e23b6971-a8af-455a-8db6-acabf8df9744,https://biolit.fr/sorties/sortie-e23b6971-a8af-455a-8db6-acabf8df9744/,Phil,,05/01/2018,11.0:15,11.0000000,47.798636000000,-4.177002000000,,Loctudy - Finistère,44201,observation-e23b6971-a8af-455a-8db6-acabf8df9744-3,https://biolit.fr/observations/observation-e23b6971-a8af-455a-8db6-acabf8df9744-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112058.jpg,,FALSE, +N1,59683,sortie-e23b6971-a8af-455a-8db6-acabf8df9744,https://biolit.fr/sorties/sortie-e23b6971-a8af-455a-8db6-acabf8df9744/,Phil,,05/01/2018,11.0:15,11.0000000,47.798636000000,-4.177002000000,,Loctudy - Finistère,44203,observation-e23b6971-a8af-455a-8db6-acabf8df9744-4,https://biolit.fr/observations/observation-e23b6971-a8af-455a-8db6-acabf8df9744-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112151.jpg,,FALSE, +N1,59684,sortie-f17996ff-0c35-44af-a547-084be7a512eb,https://biolit.fr/sorties/sortie-f17996ff-0c35-44af-a547-084be7a512eb/,Domaine du Rayol,,05/08/2018,10.0000000,10.0000000,43.153945000000,6.481702000000,,plage du figuier,44205,observation-f17996ff-0c35-44af-a547-084be7a512eb,https://biolit.fr/observations/observation-f17996ff-0c35-44af-a547-084be7a512eb/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180508_104310-scaled.jpg,,FALSE, +N1,59684,sortie-f17996ff-0c35-44af-a547-084be7a512eb,https://biolit.fr/sorties/sortie-f17996ff-0c35-44af-a547-084be7a512eb/,Domaine du Rayol,,05/08/2018,10.0000000,10.0000000,43.153945000000,6.481702000000,,plage du figuier,44207,observation-f17996ff-0c35-44af-a547-084be7a512eb-2,https://biolit.fr/observations/observation-f17996ff-0c35-44af-a547-084be7a512eb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180508_104304-scaled.jpg,,FALSE, +N1,59684,sortie-f17996ff-0c35-44af-a547-084be7a512eb,https://biolit.fr/sorties/sortie-f17996ff-0c35-44af-a547-084be7a512eb/,Domaine du Rayol,,05/08/2018,10.0000000,10.0000000,43.153945000000,6.481702000000,,plage du figuier,44209,observation-f17996ff-0c35-44af-a547-084be7a512eb-3,https://biolit.fr/observations/observation-f17996ff-0c35-44af-a547-084be7a512eb-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180508_104352-scaled.jpg,,FALSE, +N1,59685,sortie-d9ef52e2-7d93-4f32-8904-89a98350a738,https://biolit.fr/sorties/sortie-d9ef52e2-7d93-4f32-8904-89a98350a738/,Phil,,05/05/2018,11.0:25,11.0:25,47.796429000000,-3.85097500000,,Trévignon - Finistère,44211,observation-d9ef52e2-7d93-4f32-8904-89a98350a738,https://biolit.fr/observations/observation-d9ef52e2-7d93-4f32-8904-89a98350a738/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/20180505_112601.jpg,,TRUE, +N1,59685,sortie-d9ef52e2-7d93-4f32-8904-89a98350a738,https://biolit.fr/sorties/sortie-d9ef52e2-7d93-4f32-8904-89a98350a738/,Phil,,05/05/2018,11.0:25,11.0:25,47.796429000000,-3.85097500000,,Trévignon - Finistère,44213,observation-d9ef52e2-7d93-4f32-8904-89a98350a738-2,https://biolit.fr/observations/observation-d9ef52e2-7d93-4f32-8904-89a98350a738-2/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/20180505_112609.jpg,,TRUE, +N1,59685,sortie-d9ef52e2-7d93-4f32-8904-89a98350a738,https://biolit.fr/sorties/sortie-d9ef52e2-7d93-4f32-8904-89a98350a738/,Phil,,05/05/2018,11.0:25,11.0:25,47.796429000000,-3.85097500000,,Trévignon - Finistère,44215,observation-d9ef52e2-7d93-4f32-8904-89a98350a738-3,https://biolit.fr/observations/observation-d9ef52e2-7d93-4f32-8904-89a98350a738-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180505_112627.jpg,,FALSE, +N1,59686,sortie-44466f0b-a09d-47ab-97b7-563013d93bbc,https://biolit.fr/sorties/sortie-44466f0b-a09d-47ab-97b7-563013d93bbc/,Phil,,05/01/2018,11.0000000,11.0000000,47.799349000000,-4.178439000000,,Loctudy - Finistère,44217,observation-44466f0b-a09d-47ab-97b7-563013d93bbc,https://biolit.fr/observations/observation-44466f0b-a09d-47ab-97b7-563013d93bbc/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112050.jpg,,FALSE, +N1,59686,sortie-44466f0b-a09d-47ab-97b7-563013d93bbc,https://biolit.fr/sorties/sortie-44466f0b-a09d-47ab-97b7-563013d93bbc/,Phil,,05/01/2018,11.0000000,11.0000000,47.799349000000,-4.178439000000,,Loctudy - Finistère,44219,observation-44466f0b-a09d-47ab-97b7-563013d93bbc-2,https://biolit.fr/observations/observation-44466f0b-a09d-47ab-97b7-563013d93bbc-2/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/20180501_112046.jpg,,TRUE, +N1,59686,sortie-44466f0b-a09d-47ab-97b7-563013d93bbc,https://biolit.fr/sorties/sortie-44466f0b-a09d-47ab-97b7-563013d93bbc/,Phil,,05/01/2018,11.0000000,11.0000000,47.799349000000,-4.178439000000,,Loctudy - Finistère,44221,observation-44466f0b-a09d-47ab-97b7-563013d93bbc-3,https://biolit.fr/observations/observation-44466f0b-a09d-47ab-97b7-563013d93bbc-3/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20180501_111216.jpg,,TRUE, +N1,59687,sortie-e5f7d979-7f17-429b-b203-1c4b905c5aec,https://biolit.fr/sorties/sortie-e5f7d979-7f17-429b-b203-1c4b905c5aec/,Marine,,05/05/2018,15.0000000,15.0:45,43.092947000000,6.024857000000,,Plage de la Garonne ,44223,observation-e5f7d979-7f17-429b-b203-1c4b905c5aec,https://biolit.fr/observations/observation-e5f7d979-7f17-429b-b203-1c4b905c5aec/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/0F855F4C-D54C-4C08-9A5A-7CBA21E92F90-scaled.jpeg,,TRUE, +N1,59688,sortie-3816a41e-2a48-434a-8968-40805fac4172,https://biolit.fr/sorties/sortie-3816a41e-2a48-434a-8968-40805fac4172/,Fleur,,4/19/2018 0:00,12.0000000,13.0000000,43.001889000000,6.207988000000,,"Plage de la Courtade, Porquerolles",44225,observation-3816a41e-2a48-434a-8968-40805fac4172,https://biolit.fr/observations/observation-3816a41e-2a48-434a-8968-40805fac4172/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0776-scaled.jpg,,FALSE, +N1,59688,sortie-3816a41e-2a48-434a-8968-40805fac4172,https://biolit.fr/sorties/sortie-3816a41e-2a48-434a-8968-40805fac4172/,Fleur,,4/19/2018 0:00,12.0000000,13.0000000,43.001889000000,6.207988000000,,"Plage de la Courtade, Porquerolles",44227,observation-3816a41e-2a48-434a-8968-40805fac4172-2,https://biolit.fr/observations/observation-3816a41e-2a48-434a-8968-40805fac4172-2/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_0778-scaled.jpg,,TRUE, +N1,59688,sortie-3816a41e-2a48-434a-8968-40805fac4172,https://biolit.fr/sorties/sortie-3816a41e-2a48-434a-8968-40805fac4172/,Fleur,,4/19/2018 0:00,12.0000000,13.0000000,43.001889000000,6.207988000000,,"Plage de la Courtade, Porquerolles",44229,observation-3816a41e-2a48-434a-8968-40805fac4172-3,https://biolit.fr/observations/observation-3816a41e-2a48-434a-8968-40805fac4172-3/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_0780-scaled.jpg,,TRUE, +N1,59689,sortie-034c1dac-af74-44d8-a7e1-3ae783aeccbf,https://biolit.fr/sorties/sortie-034c1dac-af74-44d8-a7e1-3ae783aeccbf/,Phil,,4/28/2018 0:00,11.000005,11.0000000,47.895548000000,-3.968234000000,,La Forêt- Fouesnant - Finistère,44231,observation-034c1dac-af74-44d8-a7e1-3ae783aeccbf,https://biolit.fr/observations/observation-034c1dac-af74-44d8-a7e1-3ae783aeccbf/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110047.JPG,,TRUE, +N1,59689,sortie-034c1dac-af74-44d8-a7e1-3ae783aeccbf,https://biolit.fr/sorties/sortie-034c1dac-af74-44d8-a7e1-3ae783aeccbf/,Phil,,4/28/2018 0:00,11.000005,11.0000000,47.895548000000,-3.968234000000,,La Forêt- Fouesnant - Finistère,44233,observation-034c1dac-af74-44d8-a7e1-3ae783aeccbf-2,https://biolit.fr/observations/observation-034c1dac-af74-44d8-a7e1-3ae783aeccbf-2/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110048.JPG,,TRUE, +N1,59689,sortie-034c1dac-af74-44d8-a7e1-3ae783aeccbf,https://biolit.fr/sorties/sortie-034c1dac-af74-44d8-a7e1-3ae783aeccbf/,Phil,,4/28/2018 0:00,11.000005,11.0000000,47.895548000000,-3.968234000000,,La Forêt- Fouesnant - Finistère,44235,observation-034c1dac-af74-44d8-a7e1-3ae783aeccbf-3,https://biolit.fr/observations/observation-034c1dac-af74-44d8-a7e1-3ae783aeccbf-3/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1110054.JPG,,TRUE, +N1,59690,sortie-0c126969-021d-47d3-b0ae-1fe443449c66,https://biolit.fr/sorties/sortie-0c126969-021d-47d3-b0ae-1fe443449c66/,Phil,,05/01/2018,14.0000000,14.0:25,47.800491000000,-4.183451000000,,Loctudy - Finistère,44237,observation-0c126969-021d-47d3-b0ae-1fe443449c66,https://biolit.fr/observations/observation-0c126969-021d-47d3-b0ae-1fe443449c66/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_142037.jpg,,FALSE, +N1,59690,sortie-0c126969-021d-47d3-b0ae-1fe443449c66,https://biolit.fr/sorties/sortie-0c126969-021d-47d3-b0ae-1fe443449c66/,Phil,,05/01/2018,14.0000000,14.0:25,47.800491000000,-4.183451000000,,Loctudy - Finistère,44239,observation-0c126969-021d-47d3-b0ae-1fe443449c66-2,https://biolit.fr/observations/observation-0c126969-021d-47d3-b0ae-1fe443449c66-2/,Carpobrotus acinaciformis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/20180501_142111.jpg,,TRUE, +N1,59690,sortie-0c126969-021d-47d3-b0ae-1fe443449c66,https://biolit.fr/sorties/sortie-0c126969-021d-47d3-b0ae-1fe443449c66/,Phil,,05/01/2018,14.0000000,14.0:25,47.800491000000,-4.183451000000,,Loctudy - Finistère,44241,observation-0c126969-021d-47d3-b0ae-1fe443449c66-3,https://biolit.fr/observations/observation-0c126969-021d-47d3-b0ae-1fe443449c66-3/,Carpobrotus acinaciformis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/20180501_142058.jpg,,TRUE, +N1,59691,sortie-fb757103-caa6-49c6-aa83-c95eadbfd6fc,https://biolit.fr/sorties/sortie-fb757103-caa6-49c6-aa83-c95eadbfd6fc/,Phil,,05/01/2018,11.000005,11.0000000,47.800751000000,-4.181973000000,,Loctudy - Finistère,44243,observation-fb757103-caa6-49c6-aa83-c95eadbfd6fc,https://biolit.fr/observations/observation-fb757103-caa6-49c6-aa83-c95eadbfd6fc/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_110746.jpg,,FALSE, +N1,59691,sortie-fb757103-caa6-49c6-aa83-c95eadbfd6fc,https://biolit.fr/sorties/sortie-fb757103-caa6-49c6-aa83-c95eadbfd6fc/,Phil,,05/01/2018,11.000005,11.0000000,47.800751000000,-4.181973000000,,Loctudy - Finistère,44245,observation-fb757103-caa6-49c6-aa83-c95eadbfd6fc-2,https://biolit.fr/observations/observation-fb757103-caa6-49c6-aa83-c95eadbfd6fc-2/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20180501_110749.jpg,,TRUE, +N1,59691,sortie-fb757103-caa6-49c6-aa83-c95eadbfd6fc,https://biolit.fr/sorties/sortie-fb757103-caa6-49c6-aa83-c95eadbfd6fc/,Phil,,05/01/2018,11.000005,11.0000000,47.800751000000,-4.181973000000,,Loctudy - Finistère,44247,observation-fb757103-caa6-49c6-aa83-c95eadbfd6fc-3,https://biolit.fr/observations/observation-fb757103-caa6-49c6-aa83-c95eadbfd6fc-3/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/20180501_111211.jpg,,TRUE, +N1,59692,sortie-8b5a1f2b-222c-4d56-a421-d03d96a46f57,https://biolit.fr/sorties/sortie-8b5a1f2b-222c-4d56-a421-d03d96a46f57/,Phil,,4/28/2018 0:00,11.0000000,11.000005,47.895750000000,-3.968759000000,,La Forêt-Fouesnant - Finistère,44249,observation-8b5a1f2b-222c-4d56-a421-d03d96a46f57,https://biolit.fr/observations/observation-8b5a1f2b-222c-4d56-a421-d03d96a46f57/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110036.JPG,,FALSE, +N1,59692,sortie-8b5a1f2b-222c-4d56-a421-d03d96a46f57,https://biolit.fr/sorties/sortie-8b5a1f2b-222c-4d56-a421-d03d96a46f57/,Phil,,4/28/2018 0:00,11.0000000,11.000005,47.895750000000,-3.968759000000,,La Forêt-Fouesnant - Finistère,44251,observation-8b5a1f2b-222c-4d56-a421-d03d96a46f57-2,https://biolit.fr/observations/observation-8b5a1f2b-222c-4d56-a421-d03d96a46f57-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110037.JPG,,FALSE, +N1,59692,sortie-8b5a1f2b-222c-4d56-a421-d03d96a46f57,https://biolit.fr/sorties/sortie-8b5a1f2b-222c-4d56-a421-d03d96a46f57/,Phil,,4/28/2018 0:00,11.0000000,11.000005,47.895750000000,-3.968759000000,,La Forêt-Fouesnant - Finistère,44253,observation-8b5a1f2b-222c-4d56-a421-d03d96a46f57-3,https://biolit.fr/observations/observation-8b5a1f2b-222c-4d56-a421-d03d96a46f57-3/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1110040.JPG,,TRUE, +N1,59692,sortie-8b5a1f2b-222c-4d56-a421-d03d96a46f57,https://biolit.fr/sorties/sortie-8b5a1f2b-222c-4d56-a421-d03d96a46f57/,Phil,,4/28/2018 0:00,11.0000000,11.000005,47.895750000000,-3.968759000000,,La Forêt-Fouesnant - Finistère,44255,observation-8b5a1f2b-222c-4d56-a421-d03d96a46f57-4,https://biolit.fr/observations/observation-8b5a1f2b-222c-4d56-a421-d03d96a46f57-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110045.JPG,,FALSE, +N1,59693,sortie-6d24a318-a3c7-4ef2-a4a8-199b1d374692,https://biolit.fr/sorties/sortie-6d24a318-a3c7-4ef2-a4a8-199b1d374692/,Phil,,4/18/2018 0:00,14.0000000,14.0:35,47.788677000000,-4.267789000000,,Léchiagat - Finistère,44257,observation-6d24a318-a3c7-4ef2-a4a8-199b1d374692,https://biolit.fr/observations/observation-6d24a318-a3c7-4ef2-a4a8-199b1d374692/,Sycon ciliatum,Eponge petit œuf,,https://biolit.fr/wp-content/uploads/2023/07/P1100948.JPG,,TRUE, +N1,59693,sortie-6d24a318-a3c7-4ef2-a4a8-199b1d374692,https://biolit.fr/sorties/sortie-6d24a318-a3c7-4ef2-a4a8-199b1d374692/,Phil,,4/18/2018 0:00,14.0000000,14.0:35,47.788677000000,-4.267789000000,,Léchiagat - Finistère,44259,observation-6d24a318-a3c7-4ef2-a4a8-199b1d374692-2,https://biolit.fr/observations/observation-6d24a318-a3c7-4ef2-a4a8-199b1d374692-2/,Ciona intestinalis,Cione intestinale,,https://biolit.fr/wp-content/uploads/2023/07/P1100952.JPG,,TRUE, +N1,59693,sortie-6d24a318-a3c7-4ef2-a4a8-199b1d374692,https://biolit.fr/sorties/sortie-6d24a318-a3c7-4ef2-a4a8-199b1d374692/,Phil,,4/18/2018 0:00,14.0000000,14.0:35,47.788677000000,-4.267789000000,,Léchiagat - Finistère,44261,observation-6d24a318-a3c7-4ef2-a4a8-199b1d374692-3,https://biolit.fr/observations/observation-6d24a318-a3c7-4ef2-a4a8-199b1d374692-3/,Corella eumyota,Ascidie cartilagineuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1100955.JPG,,TRUE, +N1,59694,sortie-f941c8af-386e-4b06-b723-027eb38f33ae,https://biolit.fr/sorties/sortie-f941c8af-386e-4b06-b723-027eb38f33ae/,Phil,,05/01/2018,11.0000000,11.000005,47.801041000000,-4.182237000000,,Loctudy - Finistère,44263,observation-f941c8af-386e-4b06-b723-027eb38f33ae,https://biolit.fr/observations/observation-f941c8af-386e-4b06-b723-027eb38f33ae/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_110523.jpg,,FALSE, +N1,59694,sortie-f941c8af-386e-4b06-b723-027eb38f33ae,https://biolit.fr/sorties/sortie-f941c8af-386e-4b06-b723-027eb38f33ae/,Phil,,05/01/2018,11.0000000,11.000005,47.801041000000,-4.182237000000,,Loctudy - Finistère,44265,observation-f941c8af-386e-4b06-b723-027eb38f33ae-2,https://biolit.fr/observations/observation-f941c8af-386e-4b06-b723-027eb38f33ae-2/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/20180501_110520.jpg,,TRUE, +N1,59694,sortie-f941c8af-386e-4b06-b723-027eb38f33ae,https://biolit.fr/sorties/sortie-f941c8af-386e-4b06-b723-027eb38f33ae/,Phil,,05/01/2018,11.0000000,11.000005,47.801041000000,-4.182237000000,,Loctudy - Finistère,44267,observation-f941c8af-386e-4b06-b723-027eb38f33ae-3,https://biolit.fr/observations/observation-f941c8af-386e-4b06-b723-027eb38f33ae-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180501_110230.jpg,,FALSE, +N1,59695,sortie-7059bd9b-4e81-46f7-93ee-bf8d4657dfc3,https://biolit.fr/sorties/sortie-7059bd9b-4e81-46f7-93ee-bf8d4657dfc3/,Violaine J.,,4/28/2018 0:00,16.0000000,16.0000000,43.460304000000,3.819804000000,,"Plage St Eugène, Frontignan Plage",44269,observation-7059bd9b-4e81-46f7-93ee-bf8d4657dfc3,https://biolit.fr/observations/observation-7059bd9b-4e81-46f7-93ee-bf8d4657dfc3/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180428_170714[1]-scaled.jpg,,TRUE, +N1,59695,sortie-7059bd9b-4e81-46f7-93ee-bf8d4657dfc3,https://biolit.fr/sorties/sortie-7059bd9b-4e81-46f7-93ee-bf8d4657dfc3/,Violaine J.,,4/28/2018 0:00,16.0000000,16.0000000,43.460304000000,3.819804000000,,"Plage St Eugène, Frontignan Plage",44271,observation-7059bd9b-4e81-46f7-93ee-bf8d4657dfc3-2,https://biolit.fr/observations/observation-7059bd9b-4e81-46f7-93ee-bf8d4657dfc3-2/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180428_170745[1]-scaled.jpg,,TRUE, +N1,59696,sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5,https://biolit.fr/sorties/sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5/,Club subaquatique Narbonnais,,4/28/2018 0:00,11.0000000,11.0000000,43.172140000000,3.19212300000,,plage de Saint-Pierre la mer,44273,observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5,https://biolit.fr/observations/observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue dichtyot et juvenil.jpg,,FALSE, +N1,59696,sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5,https://biolit.fr/sorties/sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5/,Club subaquatique Narbonnais,,4/28/2018 0:00,11.0000000,11.0000000,43.172140000000,3.19212300000,,plage de Saint-Pierre la mer,44275,observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-2,https://biolit.fr/observations/observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-2/,Microcosmus sabatieri,Violet,,https://biolit.fr/wp-content/uploads/2023/07/anémone solaire.JPG,,TRUE, +N1,59696,sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5,https://biolit.fr/sorties/sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5/,Club subaquatique Narbonnais,,4/28/2018 0:00,11.0000000,11.0000000,43.172140000000,3.19212300000,,plage de Saint-Pierre la mer,44276,observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-3,https://biolit.fr/observations/observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/anémone_0.jpg,,FALSE, +N1,59696,sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5,https://biolit.fr/sorties/sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5/,Club subaquatique Narbonnais,,4/28/2018 0:00,11.0000000,11.0000000,43.172140000000,3.19212300000,,plage de Saint-Pierre la mer,44278,observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-4,https://biolit.fr/observations/observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/ascidie blanche.jpg,,FALSE, +N1,59696,sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5,https://biolit.fr/sorties/sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5/,Club subaquatique Narbonnais,,4/28/2018 0:00,11.0000000,11.0000000,43.172140000000,3.19212300000,,plage de Saint-Pierre la mer,44280,observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-5,https://biolit.fr/observations/observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/congre.JPG,,FALSE, +N1,59696,sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5,https://biolit.fr/sorties/sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5/,Club subaquatique Narbonnais,,4/28/2018 0:00,11.0000000,11.0000000,43.172140000000,3.19212300000,,plage de Saint-Pierre la mer,44281,observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-6,https://biolit.fr/observations/observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-6/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/face etrille_0.jpg,,TRUE, +N1,59696,sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5,https://biolit.fr/sorties/sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5/,Club subaquatique Narbonnais,,4/28/2018 0:00,11.0000000,11.0000000,43.172140000000,3.19212300000,,plage de Saint-Pierre la mer,44283,observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-7,https://biolit.fr/observations/observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-7/,Cratena peregrina,Hervia,,https://biolit.fr/wp-content/uploads/2023/07/moule et 3 juvenil.jpg,,TRUE, +N1,59696,sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5,https://biolit.fr/sorties/sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5/,Club subaquatique Narbonnais,,4/28/2018 0:00,11.0000000,11.0000000,43.172140000000,3.19212300000,,plage de Saint-Pierre la mer,44285,observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-8,https://biolit.fr/observations/observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-8/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/2023/07/poulpe.JPG,,TRUE, +N1,59696,sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5,https://biolit.fr/sorties/sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5/,Club subaquatique Narbonnais,,4/28/2018 0:00,11.0000000,11.0000000,43.172140000000,3.19212300000,,plage de Saint-Pierre la mer,44286,observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-9,https://biolit.fr/observations/observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-9/,Sabella spallanzanii,Spirographe,,https://biolit.fr/wp-content/uploads/2023/07/Spirographe-scaled.jpg,,TRUE, +N1,59696,sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5,https://biolit.fr/sorties/sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5/,Club subaquatique Narbonnais,,4/28/2018 0:00,11.0000000,11.0000000,43.172140000000,3.19212300000,,plage de Saint-Pierre la mer,44287,observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-10,https://biolit.fr/observations/observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-10/,Ulva spp.,Ulve rigide,,https://biolit.fr/wp-content/uploads/2023/07/Ulve.jpg,,TRUE, +N1,59696,sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5,https://biolit.fr/sorties/sortie-219d2324-b3f5-4d47-92f0-02d14fcc33e5/,Club subaquatique Narbonnais,,4/28/2018 0:00,11.0000000,11.0000000,43.172140000000,3.19212300000,,plage de Saint-Pierre la mer,44289,observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-11,https://biolit.fr/observations/observation-219d2324-b3f5-4d47-92f0-02d14fcc33e5-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/violet et orange.jpg,,FALSE, +N1,59697,sortie-4c2e7bfc-8dcc-4aa4-acc6-da6d7b4801ef,https://biolit.fr/sorties/sortie-4c2e7bfc-8dcc-4aa4-acc6-da6d7b4801ef/,Violaine J.,,4/27/2018 0:00,18.0000000,18.0:15,43.452569000000,3.811179000000,,"Plage St Eugène, Frontignan Plage",44291,observation-4c2e7bfc-8dcc-4aa4-acc6-da6d7b4801ef,https://biolit.fr/observations/observation-4c2e7bfc-8dcc-4aa4-acc6-da6d7b4801ef/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180427_184517-scaled.jpg,,FALSE, +N1,59698,sortie-88bb3ad3-ab61-40f6-9e41-c9527f3971e9,https://biolit.fr/sorties/sortie-88bb3ad3-ab61-40f6-9e41-c9527f3971e9/,Noëlla M,,03/07/2018,14.0000000,14.0000000,43.239957000000,5.362453000000,,Plage du bain des dames ,44293,observation-88bb3ad3-ab61-40f6-9e41-c9527f3971e9,https://biolit.fr/observations/observation-88bb3ad3-ab61-40f6-9e41-c9527f3971e9/,,,,https://biolit.fr/wp-content/uploads/2023/07/29389361_10215410064305825_5888786490829307904_n-scaled.jpg,,FALSE, +N1,59698,sortie-88bb3ad3-ab61-40f6-9e41-c9527f3971e9,https://biolit.fr/sorties/sortie-88bb3ad3-ab61-40f6-9e41-c9527f3971e9/,Noëlla M,,03/07/2018,14.0000000,14.0000000,43.239957000000,5.362453000000,,Plage du bain des dames ,44295,observation-88bb3ad3-ab61-40f6-9e41-c9527f3971e9-2,https://biolit.fr/observations/observation-88bb3ad3-ab61-40f6-9e41-c9527f3971e9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/29425174_10215410062145771_4823845802143121408_n-scaled.jpg,,FALSE, +N1,59698,sortie-88bb3ad3-ab61-40f6-9e41-c9527f3971e9,https://biolit.fr/sorties/sortie-88bb3ad3-ab61-40f6-9e41-c9527f3971e9/,Noëlla M,,03/07/2018,14.0000000,14.0000000,43.239957000000,5.362453000000,,Plage du bain des dames ,44297,observation-88bb3ad3-ab61-40f6-9e41-c9527f3971e9-3,https://biolit.fr/observations/observation-88bb3ad3-ab61-40f6-9e41-c9527f3971e9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/29365584_10215410063105795_5625467960081514496_n-scaled.jpg,,FALSE, +N1,59698,sortie-88bb3ad3-ab61-40f6-9e41-c9527f3971e9,https://biolit.fr/sorties/sortie-88bb3ad3-ab61-40f6-9e41-c9527f3971e9/,Noëlla M,,03/07/2018,14.0000000,14.0000000,43.239957000000,5.362453000000,,Plage du bain des dames ,44299,observation-88bb3ad3-ab61-40f6-9e41-c9527f3971e9-4,https://biolit.fr/observations/observation-88bb3ad3-ab61-40f6-9e41-c9527f3971e9-4/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/29433077_10215410065145846_9035234396067594240_n-scaled.jpg,,TRUE, +N1,59699,sortie-3fa56d57-463f-4a24-b0bb-9dfd4e15913c,https://biolit.fr/sorties/sortie-3fa56d57-463f-4a24-b0bb-9dfd4e15913c/,RBBBM,,4/20/2018 0:00,14.0000000,15.0000000,47.80664700000,-3.715456000000,,Moëlan anse du Gorgen,44301,observation-3fa56d57-463f-4a24-b0bb-9dfd4e15913c,https://biolit.fr/observations/observation-3fa56d57-463f-4a24-b0bb-9dfd4e15913c/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2008-scaled.jpg,,TRUE, +N1,59699,sortie-3fa56d57-463f-4a24-b0bb-9dfd4e15913c,https://biolit.fr/sorties/sortie-3fa56d57-463f-4a24-b0bb-9dfd4e15913c/,RBBBM,,4/20/2018 0:00,14.0000000,15.0000000,47.80664700000,-3.715456000000,,Moëlan anse du Gorgen,44303,observation-3fa56d57-463f-4a24-b0bb-9dfd4e15913c-2,https://biolit.fr/observations/observation-3fa56d57-463f-4a24-b0bb-9dfd4e15913c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2016-scaled.jpg,,FALSE, +N1,59699,sortie-3fa56d57-463f-4a24-b0bb-9dfd4e15913c,https://biolit.fr/sorties/sortie-3fa56d57-463f-4a24-b0bb-9dfd4e15913c/,RBBBM,,4/20/2018 0:00,14.0000000,15.0000000,47.80664700000,-3.715456000000,,Moëlan anse du Gorgen,44305,observation-3fa56d57-463f-4a24-b0bb-9dfd4e15913c-3,https://biolit.fr/observations/observation-3fa56d57-463f-4a24-b0bb-9dfd4e15913c-3/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2036-scaled.jpg,,TRUE, +N1,59699,sortie-3fa56d57-463f-4a24-b0bb-9dfd4e15913c,https://biolit.fr/sorties/sortie-3fa56d57-463f-4a24-b0bb-9dfd4e15913c/,RBBBM,,4/20/2018 0:00,14.0000000,15.0000000,47.80664700000,-3.715456000000,,Moëlan anse du Gorgen,44307,observation-3fa56d57-463f-4a24-b0bb-9dfd4e15913c-4,https://biolit.fr/observations/observation-3fa56d57-463f-4a24-b0bb-9dfd4e15913c-4/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2029-scaled.jpg,,TRUE, +N1,59699,sortie-3fa56d57-463f-4a24-b0bb-9dfd4e15913c,https://biolit.fr/sorties/sortie-3fa56d57-463f-4a24-b0bb-9dfd4e15913c/,RBBBM,,4/20/2018 0:00,14.0000000,15.0000000,47.80664700000,-3.715456000000,,Moëlan anse du Gorgen,44309,observation-3fa56d57-463f-4a24-b0bb-9dfd4e15913c-5,https://biolit.fr/observations/observation-3fa56d57-463f-4a24-b0bb-9dfd4e15913c-5/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2023-scaled.jpg,,TRUE, +N1,59700,sortie-cf086496-983c-4c66-988c-3ed4e0963b57,https://biolit.fr/sorties/sortie-cf086496-983c-4c66-988c-3ed4e0963b57/,sebgodard,,4/21/2018 0:00,10.000005,10.0:15,48.700285000000,-1.849545000000,,"Port Mer, Cancale",44311,observation-cf086496-983c-4c66-988c-3ed4e0963b57,https://biolit.fr/observations/observation-cf086496-983c-4c66-988c-3ed4e0963b57/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180424_153136.jpg,,FALSE, +N1,59700,sortie-cf086496-983c-4c66-988c-3ed4e0963b57,https://biolit.fr/sorties/sortie-cf086496-983c-4c66-988c-3ed4e0963b57/,sebgodard,,4/21/2018 0:00,10.000005,10.0:15,48.700285000000,-1.849545000000,,"Port Mer, Cancale",44313,observation-cf086496-983c-4c66-988c-3ed4e0963b57-2,https://biolit.fr/observations/observation-cf086496-983c-4c66-988c-3ed4e0963b57-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180424_153026.jpg,,FALSE, +N1,59700,sortie-cf086496-983c-4c66-988c-3ed4e0963b57,https://biolit.fr/sorties/sortie-cf086496-983c-4c66-988c-3ed4e0963b57/,sebgodard,,4/21/2018 0:00,10.000005,10.0:15,48.700285000000,-1.849545000000,,"Port Mer, Cancale",44315,observation-cf086496-983c-4c66-988c-3ed4e0963b57-3,https://biolit.fr/observations/observation-cf086496-983c-4c66-988c-3ed4e0963b57-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180424_153218.jpg,,FALSE, +N1,59701,sortie-2c27588f-d734-42b8-a695-a62c19d45449,https://biolit.fr/sorties/sortie-2c27588f-d734-42b8-a695-a62c19d45449/,sebgodard,,4/19/2018 0:00,18.0000000,18.0000000,48.700505000000,-1.849585000000,,"Port Mer, Cancale",44317,observation-2c27588f-d734-42b8-a695-a62c19d45449,https://biolit.fr/observations/observation-2c27588f-d734-42b8-a695-a62c19d45449/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180419_192045-scaled.jpg,,FALSE, +N1,59701,sortie-2c27588f-d734-42b8-a695-a62c19d45449,https://biolit.fr/sorties/sortie-2c27588f-d734-42b8-a695-a62c19d45449/,sebgodard,,4/19/2018 0:00,18.0000000,18.0000000,48.700505000000,-1.849585000000,,"Port Mer, Cancale",44319,observation-2c27588f-d734-42b8-a695-a62c19d45449-2,https://biolit.fr/observations/observation-2c27588f-d734-42b8-a695-a62c19d45449-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180419_191934-scaled.jpg,,FALSE, +N1,59701,sortie-2c27588f-d734-42b8-a695-a62c19d45449,https://biolit.fr/sorties/sortie-2c27588f-d734-42b8-a695-a62c19d45449/,sebgodard,,4/19/2018 0:00,18.0000000,18.0000000,48.700505000000,-1.849585000000,,"Port Mer, Cancale",44321,observation-2c27588f-d734-42b8-a695-a62c19d45449-3,https://biolit.fr/observations/observation-2c27588f-d734-42b8-a695-a62c19d45449-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180419_191921-scaled.jpg,,FALSE, +N1,59702,sortie-ac8459de-233e-45ab-b12b-ad71a6039bef,https://biolit.fr/sorties/sortie-ac8459de-233e-45ab-b12b-ad71a6039bef/,Eva,,4/18/2018 0:00,15.0000000,16.0000000,43.357539000000,5.289923000000,,plage Corbière,44323,observation-ac8459de-233e-45ab-b12b-ad71a6039bef,https://biolit.fr/observations/observation-ac8459de-233e-45ab-b12b-ad71a6039bef/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0142[1]-scaled.jpg,,FALSE, +N1,59702,sortie-ac8459de-233e-45ab-b12b-ad71a6039bef,https://biolit.fr/sorties/sortie-ac8459de-233e-45ab-b12b-ad71a6039bef/,Eva,,4/18/2018 0:00,15.0000000,16.0000000,43.357539000000,5.289923000000,,plage Corbière,44325,observation-ac8459de-233e-45ab-b12b-ad71a6039bef-2,https://biolit.fr/observations/observation-ac8459de-233e-45ab-b12b-ad71a6039bef-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0139[1]-scaled.jpg,,FALSE, +N1,59703,sortie-113b00ad-209b-41ea-a03b-16c8391317a0,https://biolit.fr/sorties/sortie-113b00ad-209b-41ea-a03b-16c8391317a0/,Phil,,9/22/2017 0:00,11.0000000,11.0:15,47.777555000000,-4.342561000000,,Penmarc'h - Finistère,44327,observation-113b00ad-209b-41ea-a03b-16c8391317a0,https://biolit.fr/observations/observation-113b00ad-209b-41ea-a03b-16c8391317a0/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080567.JPG,,TRUE, +N1,59703,sortie-113b00ad-209b-41ea-a03b-16c8391317a0,https://biolit.fr/sorties/sortie-113b00ad-209b-41ea-a03b-16c8391317a0/,Phil,,9/22/2017 0:00,11.0000000,11.0:15,47.777555000000,-4.342561000000,,Penmarc'h - Finistère,44329,observation-113b00ad-209b-41ea-a03b-16c8391317a0-2,https://biolit.fr/observations/observation-113b00ad-209b-41ea-a03b-16c8391317a0-2/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080605_0.JPG,,TRUE, +N1,59704,sortie-826d24c6-95c5-44f7-b04c-3c07a290a515,https://biolit.fr/sorties/sortie-826d24c6-95c5-44f7-b04c-3c07a290a515/,Phil,,4/18/2018 0:00,14.0000000,14.0000000,47.788144000000,-4.270463000000,,Léchiagat - Finistère,44331,observation-826d24c6-95c5-44f7-b04c-3c07a290a515,https://biolit.fr/observations/observation-826d24c6-95c5-44f7-b04c-3c07a290a515/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1100944.JPG,,TRUE, +N1,59704,sortie-826d24c6-95c5-44f7-b04c-3c07a290a515,https://biolit.fr/sorties/sortie-826d24c6-95c5-44f7-b04c-3c07a290a515/,Phil,,4/18/2018 0:00,14.0000000,14.0000000,47.788144000000,-4.270463000000,,Léchiagat - Finistère,44333,observation-826d24c6-95c5-44f7-b04c-3c07a290a515-2,https://biolit.fr/observations/observation-826d24c6-95c5-44f7-b04c-3c07a290a515-2/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1100945.JPG,,TRUE, +N1,59704,sortie-826d24c6-95c5-44f7-b04c-3c07a290a515,https://biolit.fr/sorties/sortie-826d24c6-95c5-44f7-b04c-3c07a290a515/,Phil,,4/18/2018 0:00,14.0000000,14.0000000,47.788144000000,-4.270463000000,,Léchiagat - Finistère,44335,observation-826d24c6-95c5-44f7-b04c-3c07a290a515-3,https://biolit.fr/observations/observation-826d24c6-95c5-44f7-b04c-3c07a290a515-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100946.JPG,,FALSE, +N1,59705,sortie-2eaa1756-b2fd-4558-b4d0-7a0ebb9423bb,https://biolit.fr/sorties/sortie-2eaa1756-b2fd-4558-b4d0-7a0ebb9423bb/,Phil,,4/18/2018 0:00,14.0:15,14.0:15,47.790380000000,-4.269956000000,,Léchiagat - Fnistère,44337,observation-2eaa1756-b2fd-4558-b4d0-7a0ebb9423bb,https://biolit.fr/observations/observation-2eaa1756-b2fd-4558-b4d0-7a0ebb9423bb/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100941.JPG,,FALSE, +N1,59706,sortie-fba3b2fd-cb84-4568-aabb-d842744afa57,https://biolit.fr/sorties/sortie-fba3b2fd-cb84-4568-aabb-d842744afa57/,Phil,,9/22/2017 0:00,11.0000000,11.0:15,47.777796000000,-4.341367000000,,Penmarc'h - Finistère,44339,observation-fba3b2fd-cb84-4568-aabb-d842744afa57,https://biolit.fr/observations/observation-fba3b2fd-cb84-4568-aabb-d842744afa57/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080584.JPG,,TRUE, +N1,59706,sortie-fba3b2fd-cb84-4568-aabb-d842744afa57,https://biolit.fr/sorties/sortie-fba3b2fd-cb84-4568-aabb-d842744afa57/,Phil,,9/22/2017 0:00,11.0000000,11.0:15,47.777796000000,-4.341367000000,,Penmarc'h - Finistère,44341,observation-fba3b2fd-cb84-4568-aabb-d842744afa57-2,https://biolit.fr/observations/observation-fba3b2fd-cb84-4568-aabb-d842744afa57-2/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080603.JPG,,TRUE, +N1,59707,sortie-adf1a351-26f0-4e31-94f2-abbf47f6bb01,https://biolit.fr/sorties/sortie-adf1a351-26f0-4e31-94f2-abbf47f6bb01/,Club subaquatique Narbonnais,,4/15/2018 0:00,11.0000000,12.0000000,43.168126000000,3.180391000000,,Narbonne plage,44343,observation-adf1a351-26f0-4e31-94f2-abbf47f6bb01,https://biolit.fr/observations/observation-adf1a351-26f0-4e31-94f2-abbf47f6bb01/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/velella_0.JPG,,TRUE, +N1,59707,sortie-adf1a351-26f0-4e31-94f2-abbf47f6bb01,https://biolit.fr/sorties/sortie-adf1a351-26f0-4e31-94f2-abbf47f6bb01/,Club subaquatique Narbonnais,,4/15/2018 0:00,11.0000000,12.0000000,43.168126000000,3.180391000000,,Narbonne plage,44345,observation-adf1a351-26f0-4e31-94f2-abbf47f6bb01-2,https://biolit.fr/observations/observation-adf1a351-26f0-4e31-94f2-abbf47f6bb01-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/velelle_0.JPG,,TRUE, +N1,59708,sortie-678f2ed2-156d-44d2-a073-b853863aa89e,https://biolit.fr/sorties/sortie-678f2ed2-156d-44d2-a073-b853863aa89e/,Phil,,04/05/2018,9.0000000,9.0000000,48.011166000000,-4.551893000000,,Esquibien - Finistère,44347,observation-678f2ed2-156d-44d2-a073-b853863aa89e,https://biolit.fr/observations/observation-678f2ed2-156d-44d2-a073-b853863aa89e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100932.JPG,,FALSE, +N1,59709,sortie-aec1fd2b-1b24-44af-b1e0-dab502f1b85d,https://biolit.fr/sorties/sortie-aec1fd2b-1b24-44af-b1e0-dab502f1b85d/,Phil,,04/05/2018,9.0:45,9.0000000,48.01117900000,-4.552011000000,,Esquibien - Finistère,44349,observation-aec1fd2b-1b24-44af-b1e0-dab502f1b85d,https://biolit.fr/observations/observation-aec1fd2b-1b24-44af-b1e0-dab502f1b85d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100931.JPG,,FALSE, +N1,59710,sortie-9e0c9a7e-b5fd-4123-9d80-379e4dba5c3f,https://biolit.fr/sorties/sortie-9e0c9a7e-b5fd-4123-9d80-379e4dba5c3f/,Phil,,04/05/2018,9.0:45,9.0000000,48.011285000000,-4.551395000000,,Esquibien - Finistère,44351,observation-9e0c9a7e-b5fd-4123-9d80-379e4dba5c3f,https://biolit.fr/observations/observation-9e0c9a7e-b5fd-4123-9d80-379e4dba5c3f/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1100930.JPG,,TRUE, +N1,59711,sortie-ebde2b2b-ade3-4956-8231-d98197236be4,https://biolit.fr/sorties/sortie-ebde2b2b-ade3-4956-8231-d98197236be4/,Phil,,04/05/2018,9.0:45,9.0000000,48.011080000000,-4.551968000000,,Esquibien - Finistère,44353,observation-ebde2b2b-ade3-4956-8231-d98197236be4,https://biolit.fr/observations/observation-ebde2b2b-ade3-4956-8231-d98197236be4/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1100928.JPG,,TRUE, +N1,59712,sortie-bb6c50ef-71a2-4252-b8f5-034a4d2a7db6,https://biolit.fr/sorties/sortie-bb6c50ef-71a2-4252-b8f5-034a4d2a7db6/,Phil,,04/05/2018,9.0:45,9.0000000,48.011232000000,-4.551953000000,,Esquibien - Finistère,44355,observation-bb6c50ef-71a2-4252-b8f5-034a4d2a7db6,https://biolit.fr/observations/observation-bb6c50ef-71a2-4252-b8f5-034a4d2a7db6/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1100923.JPG,,TRUE, +N1,59713,sortie-1a25cbbf-18a3-4a20-862e-ee8951635634,https://biolit.fr/sorties/sortie-1a25cbbf-18a3-4a20-862e-ee8951635634/,CPIE Cote Provencale Atelier Bleu,,4/14/2018 0:00,10.0:15,11.0:15,43.166128000000,5.605870000000,,"La Ciotat, Mugel",44357,observation-1a25cbbf-18a3-4a20-862e-ee8951635634,https://biolit.fr/observations/observation-1a25cbbf-18a3-4a20-862e-ee8951635634/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1441.JPG,,TRUE, +N1,59713,sortie-1a25cbbf-18a3-4a20-862e-ee8951635634,https://biolit.fr/sorties/sortie-1a25cbbf-18a3-4a20-862e-ee8951635634/,CPIE Cote Provencale Atelier Bleu,,4/14/2018 0:00,10.0:15,11.0:15,43.166128000000,5.605870000000,,"La Ciotat, Mugel",44359,observation-1a25cbbf-18a3-4a20-862e-ee8951635634-2,https://biolit.fr/observations/observation-1a25cbbf-18a3-4a20-862e-ee8951635634-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF1445.JPG,,FALSE, +N1,59714,sortie-5a3b8cfe-40bf-4c16-a0a3-e55eb2b64bf4,https://biolit.fr/sorties/sortie-5a3b8cfe-40bf-4c16-a0a3-e55eb2b64bf4/,Clara de Gaillande,,4/14/2018 0:00,10.0000000,11.0000000,43.177734000000,5.630090000000,,Plage du grand Mugel,44361,observation-5a3b8cfe-40bf-4c16-a0a3-e55eb2b64bf4,https://biolit.fr/observations/observation-5a3b8cfe-40bf-4c16-a0a3-e55eb2b64bf4/,,,,https://biolit.fr/wp-content/uploads/2023/07/64594490-781E-4D0D-8671-E3B55940B126-scaled.jpeg,,FALSE, +N1,59714,sortie-5a3b8cfe-40bf-4c16-a0a3-e55eb2b64bf4,https://biolit.fr/sorties/sortie-5a3b8cfe-40bf-4c16-a0a3-e55eb2b64bf4/,Clara de Gaillande,,4/14/2018 0:00,10.0000000,11.0000000,43.177734000000,5.630090000000,,Plage du grand Mugel,44363,observation-5a3b8cfe-40bf-4c16-a0a3-e55eb2b64bf4-2,https://biolit.fr/observations/observation-5a3b8cfe-40bf-4c16-a0a3-e55eb2b64bf4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/17CC19FE-DFCC-4EDE-A2D7-12757AB6016A-scaled.jpeg,,FALSE, +N1,59715,sortie-6ea0a65b-4aaa-403a-b724-dab22d226de7,https://biolit.fr/sorties/sortie-6ea0a65b-4aaa-403a-b724-dab22d226de7/,Phil,,9/22/2017 0:00,11.0000000,11.0:15,47.77698900000,-4.340402000000,,Penmarc’h - Finistère,44365,observation-6ea0a65b-4aaa-403a-b724-dab22d226de7,https://biolit.fr/observations/observation-6ea0a65b-4aaa-403a-b724-dab22d226de7/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080612.JPG,,TRUE, +N1,59715,sortie-6ea0a65b-4aaa-403a-b724-dab22d226de7,https://biolit.fr/sorties/sortie-6ea0a65b-4aaa-403a-b724-dab22d226de7/,Phil,,9/22/2017 0:00,11.0000000,11.0:15,47.77698900000,-4.340402000000,,Penmarc’h - Finistère,44367,observation-6ea0a65b-4aaa-403a-b724-dab22d226de7-2,https://biolit.fr/observations/observation-6ea0a65b-4aaa-403a-b724-dab22d226de7-2/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080561.JPG,,TRUE, +N1,59716,sortie-caa66cb6-c89e-43ba-b627-ccea295817b2,https://biolit.fr/sorties/sortie-caa66cb6-c89e-43ba-b627-ccea295817b2/,Phil,,4/13/2018 0:00,11.0000000,11.0:15,47.778528000000,-4.341080000000,,Penmarc’h - Finistère,44369,observation-caa66cb6-c89e-43ba-b627-ccea295817b2,https://biolit.fr/observations/observation-caa66cb6-c89e-43ba-b627-ccea295817b2/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080613.JPG,,TRUE, +N1,59716,sortie-caa66cb6-c89e-43ba-b627-ccea295817b2,https://biolit.fr/sorties/sortie-caa66cb6-c89e-43ba-b627-ccea295817b2/,Phil,,4/13/2018 0:00,11.0000000,11.0:15,47.778528000000,-4.341080000000,,Penmarc’h - Finistère,44371,observation-caa66cb6-c89e-43ba-b627-ccea295817b2-2,https://biolit.fr/observations/observation-caa66cb6-c89e-43ba-b627-ccea295817b2-2/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080609.JPG,,TRUE, +N1,59717,sortie-7bea26b9-0841-40f1-9269-9921071d28b9,https://biolit.fr/sorties/sortie-7bea26b9-0841-40f1-9269-9921071d28b9/,Phil,,04/05/2018,9.0:45,9.0:45,48.010905000000,-4.552236000000,,Esquibien - Finistère,44373,observation-7bea26b9-0841-40f1-9269-9921071d28b9,https://biolit.fr/observations/observation-7bea26b9-0841-40f1-9269-9921071d28b9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100919.JPG,,FALSE, +N1,59718,sortie-7ddb4b71-f883-4780-a42f-e95a40339774,https://biolit.fr/sorties/sortie-7ddb4b71-f883-4780-a42f-e95a40339774/,Phil,,04/05/2018,9.0000000,9.0:45,48.01096900000,-4.552189000000,,Esquibien - Finistère,44375,observation-7ddb4b71-f883-4780-a42f-e95a40339774,https://biolit.fr/observations/observation-7ddb4b71-f883-4780-a42f-e95a40339774/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100915.JPG,,FALSE, +N1,59719,sortie-79aeb964-8c3a-4353-a2e1-55ae81b488ca,https://biolit.fr/sorties/sortie-79aeb964-8c3a-4353-a2e1-55ae81b488ca/,Phil,,04/05/2018,9.0000000,9.0:45,48.010823000000,-4.552344000000,,Esquibien - Finistère,44377,observation-79aeb964-8c3a-4353-a2e1-55ae81b488ca,https://biolit.fr/observations/observation-79aeb964-8c3a-4353-a2e1-55ae81b488ca/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100914.JPG,,FALSE, +N1,59720,sortie-8ec53ef3-f075-47df-bc42-ad2b55c3686d,https://biolit.fr/sorties/sortie-8ec53ef3-f075-47df-bc42-ad2b55c3686d/,Phil,,04/05/2018,9.0000000,9.0:45,48.010751000000,-4.552404000000,,Esquibien - Finistère,44379,observation-8ec53ef3-f075-47df-bc42-ad2b55c3686d,https://biolit.fr/observations/observation-8ec53ef3-f075-47df-bc42-ad2b55c3686d/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1100913.JPG,,TRUE, +N1,59721,sortie-f02903fe-9104-4764-b228-5fd4afad3fdb,https://biolit.fr/sorties/sortie-f02903fe-9104-4764-b228-5fd4afad3fdb/,Phil,,04/05/2018,9.0000000,9.0:45,48.010777000000,-4.552382000000,,Esquibien - Finistère,44381,observation-f02903fe-9104-4764-b228-5fd4afad3fdb,https://biolit.fr/observations/observation-f02903fe-9104-4764-b228-5fd4afad3fdb/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100911.JPG,,FALSE, +N1,59722,sortie-2a67bd5e-0dda-403d-ab56-2ce03113376e,https://biolit.fr/sorties/sortie-2a67bd5e-0dda-403d-ab56-2ce03113376e/,Phil,,04/05/2018,9.0000000,9.0:45,48.010777000000,-4.552468000000,,Esquibien - Finistère,44383,observation-2a67bd5e-0dda-403d-ab56-2ce03113376e,https://biolit.fr/observations/observation-2a67bd5e-0dda-403d-ab56-2ce03113376e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100909.JPG,,FALSE, +N1,59723,sortie-e4fbc4da-f698-4682-9dc8-922a15937571,https://biolit.fr/sorties/sortie-e4fbc4da-f698-4682-9dc8-922a15937571/,Phil,,04/05/2018,9.0000000,9.0:45,48.010587000000,-4.55232200000,,Esquibien - Finistère,44385,observation-e4fbc4da-f698-4682-9dc8-922a15937571,https://biolit.fr/observations/observation-e4fbc4da-f698-4682-9dc8-922a15937571/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100910.JPG,,FALSE, +N1,59724,sortie-86a3a300-27c5-4b4c-90b8-1a39d6fcd628,https://biolit.fr/sorties/sortie-86a3a300-27c5-4b4c-90b8-1a39d6fcd628/,Phil,,04/05/2018,9.0:35,9.0000000,48.010791000000,-4.552339000000,,Esquibien - Finistère,44387,observation-86a3a300-27c5-4b4c-90b8-1a39d6fcd628,https://biolit.fr/observations/observation-86a3a300-27c5-4b4c-90b8-1a39d6fcd628/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100907.JPG,,FALSE, +N1,59725,sortie-48d57038-0d99-4d05-bae4-10bc2bbde68a,https://biolit.fr/sorties/sortie-48d57038-0d99-4d05-bae4-10bc2bbde68a/,Phil,,04/05/2018,9.0:35,9.0000000,48.010885000000,-4.552296000000,,Esquibien - Finistère,44389,observation-48d57038-0d99-4d05-bae4-10bc2bbde68a,https://biolit.fr/observations/observation-48d57038-0d99-4d05-bae4-10bc2bbde68a/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/P1100905.JPG,,TRUE, +N1,59730,sortie-dd4f4c17-0747-4cb9-bb07-681a7d574b2e,https://biolit.fr/sorties/sortie-dd4f4c17-0747-4cb9-bb07-681a7d574b2e/,Phil,,03/03/2018,12.0000000,12.0:45,47.862831000000,-4.068441000000,,Fouesnant - Finistère,44398,observation-dd4f4c17-0747-4cb9-bb07-681a7d574b2e,https://biolit.fr/observations/observation-dd4f4c17-0747-4cb9-bb07-681a7d574b2e/,Verruca stroemia,Balane irrégulière,,https://biolit.fr/wp-content/uploads/2023/07/P1100739.JPG,,TRUE, +N1,59731,sortie-c2987ce3-e648-4ca6-922f-cfba305d5e45,https://biolit.fr/sorties/sortie-c2987ce3-e648-4ca6-922f-cfba305d5e45/,Phil,,03/03/2018,12.0000000,12.0:45,47.863135000000,-4.068662000000,,Fouesnant - Finistère,44400,observation-c2987ce3-e648-4ca6-922f-cfba305d5e45,https://biolit.fr/observations/observation-c2987ce3-e648-4ca6-922f-cfba305d5e45/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100740.JPG,,FALSE, +N1,59732,sortie-2b1c150b-b671-4323-bbf5-2e5167dddc22,https://biolit.fr/sorties/sortie-2b1c150b-b671-4323-bbf5-2e5167dddc22/,Phil,,03/03/2018,12.0000000,12.0:45,47.863195000000,-4.068383000000,,Fouesnant - Finistère,44402,observation-2b1c150b-b671-4323-bbf5-2e5167dddc22,https://biolit.fr/observations/observation-2b1c150b-b671-4323-bbf5-2e5167dddc22/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100741.JPG,,FALSE, +N1,59733,sortie-495d3190-26bc-4f5c-8750-2948e6436d14,https://biolit.fr/sorties/sortie-495d3190-26bc-4f5c-8750-2948e6436d14/,Phil,,03/03/2018,12.0000000,12.0:45,47.862703000000,-4.068259000000,,Fouesnant - Finistère,44404,observation-495d3190-26bc-4f5c-8750-2948e6436d14,https://biolit.fr/observations/observation-495d3190-26bc-4f5c-8750-2948e6436d14/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100737.JPG,,FALSE, +N1,59734,sortie-910b1a52-570f-47c4-8c86-09e059ceaf79,https://biolit.fr/sorties/sortie-910b1a52-570f-47c4-8c86-09e059ceaf79/,Phil,,03/03/2018,12.0000000,12.0:45,47.862559000000,-4.067610000000,,Fouesnant - Finistère,44406,observation-910b1a52-570f-47c4-8c86-09e059ceaf79,https://biolit.fr/observations/observation-910b1a52-570f-47c4-8c86-09e059ceaf79/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1100736.JPG,,TRUE, +N1,59735,sortie-26dcff74-a780-444b-9318-1627b60a866d,https://biolit.fr/sorties/sortie-26dcff74-a780-444b-9318-1627b60a866d/,Phil,,03/03/2018,12.0000000,12.0:45,47.862557000000,-4.067988000000,,Fouesnant - Finistère,44408,observation-26dcff74-a780-444b-9318-1627b60a866d,https://biolit.fr/observations/observation-26dcff74-a780-444b-9318-1627b60a866d/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1100735.JPG,,TRUE, +N1,59736,sortie-972b072b-76b1-4855-9575-deed43ce3afb,https://biolit.fr/sorties/sortie-972b072b-76b1-4855-9575-deed43ce3afb/,Phil,,03/03/2018,12.0:35,12.0000000,47.863014000000,-4.06681700000,,Fouesnant - Finistère,44410,observation-972b072b-76b1-4855-9575-deed43ce3afb,https://biolit.fr/observations/observation-972b072b-76b1-4855-9575-deed43ce3afb/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100733.JPG,,FALSE, +N1,59737,sortie-9bdf972a-40b7-42ae-bdae-56995a396098,https://biolit.fr/sorties/sortie-9bdf972a-40b7-42ae-bdae-56995a396098/,Phil,,03/03/2018,12.0:35,12.0000000,47.863048000000,-4.066842000000,,Fouesnant - Finistère,44412,observation-9bdf972a-40b7-42ae-bdae-56995a396098,https://biolit.fr/observations/observation-9bdf972a-40b7-42ae-bdae-56995a396098/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100732.JPG,,FALSE, +N1,59738,sortie-00a7a336-c19f-4027-9636-a44e55180222,https://biolit.fr/sorties/sortie-00a7a336-c19f-4027-9636-a44e55180222/,Phil,,03/03/2018,12.0:35,12.0000000,47.863052000000,-4.066872000000,,Fouesnant - Finistère,44414,observation-00a7a336-c19f-4027-9636-a44e55180222,https://biolit.fr/observations/observation-00a7a336-c19f-4027-9636-a44e55180222/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100731.JPG,,FALSE, +N1,59739,sortie-c816536e-b820-401a-89e3-837b44846793,https://biolit.fr/sorties/sortie-c816536e-b820-401a-89e3-837b44846793/,Phil,,9/19/2017 0:00,14.0000000,14.000005,48.060754000000,-4.67232100000,,Cléden-Cap-Sizun - Finistère,44416,observation-c816536e-b820-401a-89e3-837b44846793,https://biolit.fr/observations/observation-c816536e-b820-401a-89e3-837b44846793/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1080480.JPG,,TRUE, +N1,59740,sortie-2013fefb-f1a2-48d9-af64-7d06b98d2660,https://biolit.fr/sorties/sortie-2013fefb-f1a2-48d9-af64-7d06b98d2660/,CarpeDiem,,04/01/2018,15.0000000,16.0000000,43.164882000000,5.606076000000,,Anse du petit Mugel,44418,observation-2013fefb-f1a2-48d9-af64-7d06b98d2660,https://biolit.fr/observations/observation-2013fefb-f1a2-48d9-af64-7d06b98d2660/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/gelatineux-scaled.jpg,,TRUE, +N1,59740,sortie-2013fefb-f1a2-48d9-af64-7d06b98d2660,https://biolit.fr/sorties/sortie-2013fefb-f1a2-48d9-af64-7d06b98d2660/,CarpeDiem,,04/01/2018,15.0000000,16.0000000,43.164882000000,5.606076000000,,Anse du petit Mugel,44420,observation-2013fefb-f1a2-48d9-af64-7d06b98d2660-2,https://biolit.fr/observations/observation-2013fefb-f1a2-48d9-af64-7d06b98d2660-2/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/gelatineux 2-scaled.jpg,,TRUE, +N1,59740,sortie-2013fefb-f1a2-48d9-af64-7d06b98d2660,https://biolit.fr/sorties/sortie-2013fefb-f1a2-48d9-af64-7d06b98d2660/,CarpeDiem,,04/01/2018,15.0000000,16.0000000,43.164882000000,5.606076000000,,Anse du petit Mugel,44422,observation-2013fefb-f1a2-48d9-af64-7d06b98d2660-3,https://biolit.fr/observations/observation-2013fefb-f1a2-48d9-af64-7d06b98d2660-3/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/gelatineux 3-scaled.jpg,,TRUE, +N1,59740,sortie-2013fefb-f1a2-48d9-af64-7d06b98d2660,https://biolit.fr/sorties/sortie-2013fefb-f1a2-48d9-af64-7d06b98d2660/,CarpeDiem,,04/01/2018,15.0000000,16.0000000,43.164882000000,5.606076000000,,Anse du petit Mugel,44424,observation-2013fefb-f1a2-48d9-af64-7d06b98d2660-4,https://biolit.fr/observations/observation-2013fefb-f1a2-48d9-af64-7d06b98d2660-4/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Algue à crochets-scaled.jpg,,TRUE, +N1,59740,sortie-2013fefb-f1a2-48d9-af64-7d06b98d2660,https://biolit.fr/sorties/sortie-2013fefb-f1a2-48d9-af64-7d06b98d2660/,CarpeDiem,,04/01/2018,15.0000000,16.0000000,43.164882000000,5.606076000000,,Anse du petit Mugel,44426,observation-2013fefb-f1a2-48d9-af64-7d06b98d2660-5,https://biolit.fr/observations/observation-2013fefb-f1a2-48d9-af64-7d06b98d2660-5/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/beret basque_0-scaled.jpg,,TRUE, +N1,59740,sortie-2013fefb-f1a2-48d9-af64-7d06b98d2660,https://biolit.fr/sorties/sortie-2013fefb-f1a2-48d9-af64-7d06b98d2660/,CarpeDiem,,04/01/2018,15.0000000,16.0000000,43.164882000000,5.606076000000,,Anse du petit Mugel,44428,observation-2013fefb-f1a2-48d9-af64-7d06b98d2660-6,https://biolit.fr/observations/observation-2013fefb-f1a2-48d9-af64-7d06b98d2660-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Dictyote spatulée_Dictyota spiralis-scaled.jpg,,FALSE, +N1,59740,sortie-2013fefb-f1a2-48d9-af64-7d06b98d2660,https://biolit.fr/sorties/sortie-2013fefb-f1a2-48d9-af64-7d06b98d2660/,CarpeDiem,,04/01/2018,15.0000000,16.0000000,43.164882000000,5.606076000000,,Anse du petit Mugel,44430,observation-2013fefb-f1a2-48d9-af64-7d06b98d2660-7,https://biolit.fr/observations/observation-2013fefb-f1a2-48d9-af64-7d06b98d2660-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/eponge_1-scaled.jpg,,FALSE, +N1,59740,sortie-2013fefb-f1a2-48d9-af64-7d06b98d2660,https://biolit.fr/sorties/sortie-2013fefb-f1a2-48d9-af64-7d06b98d2660/,CarpeDiem,,04/01/2018,15.0000000,16.0000000,43.164882000000,5.606076000000,,Anse du petit Mugel,44432,observation-2013fefb-f1a2-48d9-af64-7d06b98d2660-8,https://biolit.fr/observations/observation-2013fefb-f1a2-48d9-af64-7d06b98d2660-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Posidonie_0-scaled.jpg,,FALSE, +N1,59741,sortie-d8e02ad5-a218-4b2d-9770-815993724069,https://biolit.fr/sorties/sortie-d8e02ad5-a218-4b2d-9770-815993724069/,Phil,,04/05/2018,9.0:25,9.0000000,48.011136000000,-4.550687000000,,Esquibien - Finistère,44434,observation-d8e02ad5-a218-4b2d-9770-815993724069,https://biolit.fr/observations/observation-d8e02ad5-a218-4b2d-9770-815993724069/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/P1100885.JPG,,TRUE, +N1,59742,sortie-2355551a-1b04-40d6-be3b-af27babc7d90,https://biolit.fr/sorties/sortie-2355551a-1b04-40d6-be3b-af27babc7d90/,Phil,,04/05/2018,9.0:25,9.0000000,48.011070000000,-4.550691000000,,Esquibien - Finistère,44436,observation-2355551a-1b04-40d6-be3b-af27babc7d90,https://biolit.fr/observations/observation-2355551a-1b04-40d6-be3b-af27babc7d90/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100884.JPG,,FALSE, +N1,59744,sortie-08671927-25f6-48b1-aa5a-016078afc544,https://biolit.fr/sorties/sortie-08671927-25f6-48b1-aa5a-016078afc544/,Phil,,04/10/2018,11.0000000,11.0:15,47.870687000000,-3.911519000000,,Concarneau - Finistère,44440,observation-08671927-25f6-48b1-aa5a-016078afc544,https://biolit.fr/observations/observation-08671927-25f6-48b1-aa5a-016078afc544/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180410_111121.jpg,,TRUE, +N1,59745,sortie-22f158ed-f858-4cb8-ad88-1a8f1421be4b,https://biolit.fr/sorties/sortie-22f158ed-f858-4cb8-ad88-1a8f1421be4b/,Phil,,04/10/2018,11.0000000,11.0000000,47.870768000000,-3.911602000000,,Concarneau - Finistère,44442,observation-22f158ed-f858-4cb8-ad88-1a8f1421be4b,https://biolit.fr/observations/observation-22f158ed-f858-4cb8-ad88-1a8f1421be4b/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/20180410_110913.jpg,,TRUE, +N1,59746,sortie-e7848508-b3a5-425b-aab5-d6a61baf2f28,https://biolit.fr/sorties/sortie-e7848508-b3a5-425b-aab5-d6a61baf2f28/,Phil,,04/10/2018,11.0000000,11.0000000,47.870764000000,-3.911598000000,,Concarneau - Finistère,44444,observation-e7848508-b3a5-425b-aab5-d6a61baf2f28,https://biolit.fr/observations/observation-e7848508-b3a5-425b-aab5-d6a61baf2f28/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/20180410_110921.jpg,,TRUE, +N1,59747,sortie-17db7a17-f05a-4cd7-a425-4ec84b2dbd70,https://biolit.fr/sorties/sortie-17db7a17-f05a-4cd7-a425-4ec84b2dbd70/,Phil,,04/10/2018,11.0000000,11.0:15,47.870659000000,-3.911539000000,,Concarneau - Finistère,44446,observation-17db7a17-f05a-4cd7-a425-4ec84b2dbd70,https://biolit.fr/observations/observation-17db7a17-f05a-4cd7-a425-4ec84b2dbd70/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180410_111158.jpg,,FALSE, +N1,59748,sortie-5ecb3804-569f-4514-8c26-c62aeb0d9a98,https://biolit.fr/sorties/sortie-5ecb3804-569f-4514-8c26-c62aeb0d9a98/,Phil,,04/10/2018,11.000005,11.0000000,47.87011800000,-3.911907000000,,Concarneau - Finistère,44448,observation-5ecb3804-569f-4514-8c26-c62aeb0d9a98,https://biolit.fr/observations/observation-5ecb3804-569f-4514-8c26-c62aeb0d9a98/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180410_110649.jpg,,TRUE, +N1,59749,sortie-ec6fc276-daa4-4cca-85c8-b71ced4530e4,https://biolit.fr/sorties/sortie-ec6fc276-daa4-4cca-85c8-b71ced4530e4/,Phil,,04/10/2018,11.000005,11.000005,47.870024000000,-3.911918000000,,Concarneau - Finistère,44450,observation-ec6fc276-daa4-4cca-85c8-b71ced4530e4,https://biolit.fr/observations/observation-ec6fc276-daa4-4cca-85c8-b71ced4530e4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180410_110451.jpg,,TRUE, +N1,59750,sortie-1a3ff0d4-a0da-4c7b-8011-47fb5013845f,https://biolit.fr/sorties/sortie-1a3ff0d4-a0da-4c7b-8011-47fb5013845f/,Phil,,04/10/2018,11.000005,11.000005,47.869801000000,-3.911950000000,,Concarneau - Finistère,44452,observation-1a3ff0d4-a0da-4c7b-8011-47fb5013845f,https://biolit.fr/observations/observation-1a3ff0d4-a0da-4c7b-8011-47fb5013845f/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180410_110408.jpg,,FALSE, +N1,59751,sortie-b7244658-5029-476f-8b4d-0944202d9802,https://biolit.fr/sorties/sortie-b7244658-5029-476f-8b4d-0944202d9802/,Phil,,04/10/2018,11.000005,11.000005,47.869884000000,-3.911972000000,,Concarneau - Finistère,44454,observation-b7244658-5029-476f-8b4d-0944202d9802,https://biolit.fr/observations/observation-b7244658-5029-476f-8b4d-0944202d9802/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180410_110347.jpg,,FALSE, +N1,59752,sortie-19665c59-c508-480a-99d9-49c5867b3765,https://biolit.fr/sorties/sortie-19665c59-c508-480a-99d9-49c5867b3765/,Phil,,04/10/2018,11.000005,11.000005,47.869995000000,-3.91188600000,,Concarneau - Finistère,44456,observation-19665c59-c508-480a-99d9-49c5867b3765,https://biolit.fr/observations/observation-19665c59-c508-480a-99d9-49c5867b3765/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180410_110343.jpg,,FALSE, +N1,59753,sortie-fd0942af-6fe1-4d22-b0db-a8906c80677a,https://biolit.fr/sorties/sortie-fd0942af-6fe1-4d22-b0db-a8906c80677a/,Phil,,04/10/2018,11.0000000,11.000005,47.870131000000,-3.91188600000,,Concarneau - Finistère,44458,observation-fd0942af-6fe1-4d22-b0db-a8906c80677a,https://biolit.fr/observations/observation-fd0942af-6fe1-4d22-b0db-a8906c80677a/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180410_110314.jpg,,FALSE, +N1,59754,sortie-12169e86-f69b-4a42-8c19-d45f619fc7f7,https://biolit.fr/sorties/sortie-12169e86-f69b-4a42-8c19-d45f619fc7f7/,Phil,,04/10/2018,11.0000000,11.000005,47.870000000000,-3.911900000000,,Concarneau - Finistère,44460,observation-12169e86-f69b-4a42-8c19-d45f619fc7f7,https://biolit.fr/observations/observation-12169e86-f69b-4a42-8c19-d45f619fc7f7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180410_110240.jpg,,FALSE, +N1,59755,sortie-4320a253-2478-4a71-99f8-bcabb80f145e,https://biolit.fr/sorties/sortie-4320a253-2478-4a71-99f8-bcabb80f145e/,Phil,,04/10/2018,11.0000000,11.000005,47.870121000000,-3.911843000000,,Concarneau - Finistère,44462,observation-4320a253-2478-4a71-99f8-bcabb80f145e,https://biolit.fr/observations/observation-4320a253-2478-4a71-99f8-bcabb80f145e/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20180410_110233.jpg,,TRUE, +N1,59756,sortie-5770bb0f-3ffb-421e-9d87-4421dba01bbf,https://biolit.fr/sorties/sortie-5770bb0f-3ffb-421e-9d87-4421dba01bbf/,Phil,,04/05/2018,9.0:35,9.0000000,48.010465000000,-4.552352000000,,Esquibien - Finistère,44464,observation-5770bb0f-3ffb-421e-9d87-4421dba01bbf,https://biolit.fr/observations/observation-5770bb0f-3ffb-421e-9d87-4421dba01bbf/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100903.JPG,,FALSE, +N1,59757,sortie-19a7f138-cc7c-470f-ba8b-30154b421f7a,https://biolit.fr/sorties/sortie-19a7f138-cc7c-470f-ba8b-30154b421f7a/,Phil,,04/05/2018,9.0:35,9.0000000,48.010476000000,-4.552511000000,,Esquibien - Finistère,44466,observation-19a7f138-cc7c-470f-ba8b-30154b421f7a,https://biolit.fr/observations/observation-19a7f138-cc7c-470f-ba8b-30154b421f7a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100902.JPG,,FALSE, +N1,59758,sortie-0f08f0d3-415a-4b22-9506-e629f52c83f8,https://biolit.fr/sorties/sortie-0f08f0d3-415a-4b22-9506-e629f52c83f8/,Phil,,04/05/2018,9.0000000,9.0000000,48.010550000000,-4.552404000000,,Esquibien - Finistère,44468,observation-0f08f0d3-415a-4b22-9506-e629f52c83f8,https://biolit.fr/observations/observation-0f08f0d3-415a-4b22-9506-e629f52c83f8/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1100901.JPG,,TRUE, +N1,59759,sortie-685e3265-855c-487e-9393-a41c25d0c510,https://biolit.fr/sorties/sortie-685e3265-855c-487e-9393-a41c25d0c510/,Phil,,04/05/2018,9.0000000,9.0000000,48.010599000000,-4.552511000000,,Esquibien - Finistère,44470,observation-685e3265-855c-487e-9393-a41c25d0c510,https://biolit.fr/observations/observation-685e3265-855c-487e-9393-a41c25d0c510/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100899.JPG,,FALSE, +N1,59760,sortie-71eca2c4-b18f-4014-816d-ed588113abc5,https://biolit.fr/sorties/sortie-71eca2c4-b18f-4014-816d-ed588113abc5/,Phil,,04/05/2018,9.0000000,9.0:35,48.01064800000,-4.552425000000,,Esquibien - Finistère,44472,observation-71eca2c4-b18f-4014-816d-ed588113abc5,https://biolit.fr/observations/observation-71eca2c4-b18f-4014-816d-ed588113abc5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100895.JPG,,FALSE, +N1,59761,sortie-b55bf72d-d0a8-4bf3-a5d2-04e02487f587,https://biolit.fr/sorties/sortie-b55bf72d-d0a8-4bf3-a5d2-04e02487f587/,Phil,,04/05/2018,9.0000000,9.0:35,48.010738000000,-4.552532000000,,Esquibien - Finistère,44474,observation-b55bf72d-d0a8-4bf3-a5d2-04e02487f587,https://biolit.fr/observations/observation-b55bf72d-d0a8-4bf3-a5d2-04e02487f587/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100897.JPG,,FALSE, +N1,59762,sortie-cf92aab5-b60f-4ec4-8a69-7f2b6ad175ad,https://biolit.fr/sorties/sortie-cf92aab5-b60f-4ec4-8a69-7f2b6ad175ad/,Phil,,04/10/2018,11.0000000,11.000005,47.870157000000,-3.911845000000,,Concarneau - Finistère,44476,observation-cf92aab5-b60f-4ec4-8a69-7f2b6ad175ad,https://biolit.fr/observations/observation-cf92aab5-b60f-4ec4-8a69-7f2b6ad175ad/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180410_110203.jpg,,FALSE, +N1,59763,sortie-d44e353f-24d2-4ec4-bfd9-941e10a877f3,https://biolit.fr/sorties/sortie-d44e353f-24d2-4ec4-bfd9-941e10a877f3/,Phil,,04/10/2018,11.0000000,11.000005,47.87014900000,-3.911778000000,,Concarneau - Finistère,44478,observation-d44e353f-24d2-4ec4-bfd9-941e10a877f3,https://biolit.fr/observations/observation-d44e353f-24d2-4ec4-bfd9-941e10a877f3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180410_110151.jpg,,FALSE, +N1,59764,sortie-6298bb87-6bcf-4c6b-b45c-9a920fa0d074,https://biolit.fr/sorties/sortie-6298bb87-6bcf-4c6b-b45c-9a920fa0d074/,Phil,,04/10/2018,11.0000000,11.000005,47.870321000000,-3.9116090000,,Concarneau - Finistère,44480,observation-6298bb87-6bcf-4c6b-b45c-9a920fa0d074,https://biolit.fr/observations/observation-6298bb87-6bcf-4c6b-b45c-9a920fa0d074/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180410_110006.jpg,,FALSE, +N1,59765,sortie-3526a52a-42f4-4f01-8af8-930b868e0d02,https://biolit.fr/sorties/sortie-3526a52a-42f4-4f01-8af8-930b868e0d02/,Phil,,04/05/2018,9.0000000,9.0:35,48.01094900000,-4.552268000000,,Esquibien - Finistère,44482,observation-3526a52a-42f4-4f01-8af8-930b868e0d02,https://biolit.fr/observations/observation-3526a52a-42f4-4f01-8af8-930b868e0d02/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100890.JPG,,FALSE, +N1,59766,sortie-4566ae35-2b53-4a1c-9ffd-72ad96c019c3,https://biolit.fr/sorties/sortie-4566ae35-2b53-4a1c-9ffd-72ad96c019c3/,Phil,,04/05/2018,9.0000000,9.0:35,48.010907000000,-4.552290000000,,Esquibien - Finistère,44484,observation-4566ae35-2b53-4a1c-9ffd-72ad96c019c3,https://biolit.fr/observations/observation-4566ae35-2b53-4a1c-9ffd-72ad96c019c3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100889.JPG,,FALSE, +N1,59767,sortie-a9a78bbe-2204-4467-bf83-b1ad7e5782c9,https://biolit.fr/sorties/sortie-a9a78bbe-2204-4467-bf83-b1ad7e5782c9/,Phil,,04/05/2018,9.0000000,9.0:35,48.010953000000,-4.552236000000,,Esquibien - Finistère,44486,observation-a9a78bbe-2204-4467-bf83-b1ad7e5782c9,https://biolit.fr/observations/observation-a9a78bbe-2204-4467-bf83-b1ad7e5782c9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100892.JPG,,FALSE, +N1,59768,sortie-4bec8f3d-9159-4831-ba9e-c8741dc8b459,https://biolit.fr/sorties/sortie-4bec8f3d-9159-4831-ba9e-c8741dc8b459/,Phil,,04/05/2018,9.0000000,9.0:35,48.011193000000,-4.551975000000,,Esquibien - Finistère,44488,observation-4bec8f3d-9159-4831-ba9e-c8741dc8b459,https://biolit.fr/observations/observation-4bec8f3d-9159-4831-ba9e-c8741dc8b459/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100888.JPG,,FALSE, +N1,59769,sortie-f7c76759-4383-4fc0-8662-bf644d40f168,https://biolit.fr/sorties/sortie-f7c76759-4383-4fc0-8662-bf644d40f168/,Phil,,04/05/2018,9.0:25,9.0000000,48.01118200000,-4.550515000000,,Esquibien - Finistère,44490,observation-f7c76759-4383-4fc0-8662-bf644d40f168,https://biolit.fr/observations/observation-f7c76759-4383-4fc0-8662-bf644d40f168/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100883.JPG,,FALSE, +N1,59770,sortie-78a2c96f-b744-40d7-8357-16872ed551e0,https://biolit.fr/sorties/sortie-78a2c96f-b744-40d7-8357-16872ed551e0/,Phil,,04/05/2018,9.0:25,9.0000000,48.011089000000,-4.550043000000,,Esquibien - Finistère,44492,observation-78a2c96f-b744-40d7-8357-16872ed551e0,https://biolit.fr/observations/observation-78a2c96f-b744-40d7-8357-16872ed551e0/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100880.JPG,,FALSE, +N1,59771,sortie-a8805825-543b-458d-9933-0b400b67fb4c,https://biolit.fr/sorties/sortie-a8805825-543b-458d-9933-0b400b67fb4c/,Observe la nature,,03/03/2018,13.0:55,13.0:55,48.81551000000,-3.425874000000,,Pros ar goret Perros Guirec,44494,observation-a8805825-543b-458d-9933-0b400b67fb4c,https://biolit.fr/observations/observation-a8805825-543b-458d-9933-0b400b67fb4c/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3030459-scaled.jpg,,FALSE, +N1,59771,sortie-a8805825-543b-458d-9933-0b400b67fb4c,https://biolit.fr/sorties/sortie-a8805825-543b-458d-9933-0b400b67fb4c/,Observe la nature,,03/03/2018,13.0:55,13.0:55,48.81551000000,-3.425874000000,,Pros ar goret Perros Guirec,44496,observation-a8805825-543b-458d-9933-0b400b67fb4c-2,https://biolit.fr/observations/observation-a8805825-543b-458d-9933-0b400b67fb4c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3030465-scaled.jpg,,FALSE, +N1,59772,sortie-de692dd4-2064-40aa-896c-0446f95a3e65,https://biolit.fr/sorties/sortie-de692dd4-2064-40aa-896c-0446f95a3e65/,Phil,,3/31/2018 0:00,13.0:15,13.0:15,47.897038000000,-3.974720000000,,La Forêt-Fouesnant - Finistère,44498,observation-de692dd4-2064-40aa-896c-0446f95a3e65,https://biolit.fr/observations/observation-de692dd4-2064-40aa-896c-0446f95a3e65/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180331_131434.jpg,,FALSE, +N1,59773,sortie-7057a366-0e16-4b1a-8f2f-27a7e4e5b5ce,https://biolit.fr/sorties/sortie-7057a366-0e16-4b1a-8f2f-27a7e4e5b5ce/,Phil,,3/31/2018 0:00,13.0:15,13.0000000,47.896964000000,-3.974604000000,,La Forêt-Fouesnant - Finistère,44500,observation-7057a366-0e16-4b1a-8f2f-27a7e4e5b5ce,https://biolit.fr/observations/observation-7057a366-0e16-4b1a-8f2f-27a7e4e5b5ce/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180331_131608.jpg,,FALSE, +N1,59774,sortie-6ab6e5b0-b1f5-4c0a-a2bb-f378e55674ea,https://biolit.fr/sorties/sortie-6ab6e5b0-b1f5-4c0a-a2bb-f378e55674ea/,Phil,,3/31/2018 0:00,13.0000000,13.0:15,47.896578000000,-3.974463000000,,La Forêt-Fouesnant - Finistère,44502,observation-6ab6e5b0-b1f5-4c0a-a2bb-f378e55674ea,https://biolit.fr/observations/observation-6ab6e5b0-b1f5-4c0a-a2bb-f378e55674ea/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180331_131341.jpg,,FALSE, +N1,59775,sortie-5dee5333-4316-42be-9c0c-767eb7426ec1,https://biolit.fr/sorties/sortie-5dee5333-4316-42be-9c0c-767eb7426ec1/,Phil,,3/31/2018 0:00,13.0000000,13.0:15,47.896267000000,-3.974175000000,,La Forêt-Fouesnant - Finistère,44504,observation-5dee5333-4316-42be-9c0c-767eb7426ec1,https://biolit.fr/observations/observation-5dee5333-4316-42be-9c0c-767eb7426ec1/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180331_131324.jpg,,FALSE, +N1,59776,sortie-509e4474-c0d9-4f84-9272-a2ae0f510878,https://biolit.fr/sorties/sortie-509e4474-c0d9-4f84-9272-a2ae0f510878/,Phil,,3/31/2018 0:00,13.0000000,13.0:15,47.896367000000,-3.974441000000,,La Forêt-Fouesnant - Finistère,44506,observation-509e4474-c0d9-4f84-9272-a2ae0f510878,https://biolit.fr/observations/observation-509e4474-c0d9-4f84-9272-a2ae0f510878/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180331_131253.jpg,,FALSE, +N1,59777,sortie-75935f04-a54d-42cd-9f82-bdd8df6bd52c,https://biolit.fr/sorties/sortie-75935f04-a54d-42cd-9f82-bdd8df6bd52c/,Phil,,3/31/2018 0:00,13.0000000,13.0:15,47.896733000000,-3.974132000000,,La Forêt-Fouesnant - Finistère,44508,observation-75935f04-a54d-42cd-9f82-bdd8df6bd52c,https://biolit.fr/observations/observation-75935f04-a54d-42cd-9f82-bdd8df6bd52c/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180331_131223.jpg,,FALSE, +N1,59778,sortie-5481b32e-6fea-467a-b1f3-01817ad912ee,https://biolit.fr/sorties/sortie-5481b32e-6fea-467a-b1f3-01817ad912ee/,Phil,,3/31/2018 0:00,13.0000000,13.0:15,47.896835000000,-3.974441000000,,La Forêt-Fouesnant - Finistère,44510,observation-5481b32e-6fea-467a-b1f3-01817ad912ee,https://biolit.fr/observations/observation-5481b32e-6fea-467a-b1f3-01817ad912ee/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180331_131205.jpg,,FALSE, +N1,59779,sortie-0bcb7326-86ea-4ef4-af9d-150e4f2b06be,https://biolit.fr/sorties/sortie-0bcb7326-86ea-4ef4-af9d-150e4f2b06be/,Phil,,04/04/2018,17.0:15,17.0:15,48.216702000000,-4.375622000000,,Telgruc-sur-Mer - Finistère,44512,observation-0bcb7326-86ea-4ef4-af9d-150e4f2b06be,https://biolit.fr/observations/observation-0bcb7326-86ea-4ef4-af9d-150e4f2b06be/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100879.JPG,,FALSE, +N1,59780,sortie-046a2e04-3598-4380-b536-87e644028630,https://biolit.fr/sorties/sortie-046a2e04-3598-4380-b536-87e644028630/,Phil,,04/04/2018,17.000005,17.0000000,48.218308000000,-4.377598000000,,Telgruc-sur-Mer - Finistère,44514,observation-046a2e04-3598-4380-b536-87e644028630,https://biolit.fr/observations/observation-046a2e04-3598-4380-b536-87e644028630/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100877.JPG,,FALSE, +N1,59781,sortie-6862f823-9485-46ac-91a4-451cccf73f31,https://biolit.fr/sorties/sortie-6862f823-9485-46ac-91a4-451cccf73f31/,Phil,,04/04/2018,17.000005,17.0000000,48.218493000000,-4.377631000000,,Telgruc-sur-Mer - Finistère,44516,observation-6862f823-9485-46ac-91a4-451cccf73f31,https://biolit.fr/observations/observation-6862f823-9485-46ac-91a4-451cccf73f31/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100876.JPG,,FALSE, +N1,59782,sortie-e5b61ea0-288f-4a33-b1ae-bb1f555e6703,https://biolit.fr/sorties/sortie-e5b61ea0-288f-4a33-b1ae-bb1f555e6703/,Phil,,04/04/2018,17.000005,17.0000000,48.218668000000,-4.378266000000,,Telgruc-sur-Mer - Finistère,44518,observation-e5b61ea0-288f-4a33-b1ae-bb1f555e6703,https://biolit.fr/observations/observation-e5b61ea0-288f-4a33-b1ae-bb1f555e6703/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100871.JPG,,FALSE, +N1,59783,sortie-c99fe6fc-c4cc-428a-ba36-ee5c2f03042c,https://biolit.fr/sorties/sortie-c99fe6fc-c4cc-428a-ba36-ee5c2f03042c/,Phil,,04/04/2018,17.0000000,17.000005,48.218417000000,-4.380420000000,,Telgruc-sur-Mer - Finistère,44520,observation-c99fe6fc-c4cc-428a-ba36-ee5c2f03042c,https://biolit.fr/observations/observation-c99fe6fc-c4cc-428a-ba36-ee5c2f03042c/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100870.JPG,,FALSE, +N1,59784,sortie-629ecbef-3ca0-4bd4-bb42-bc8c9b7b14cb,https://biolit.fr/sorties/sortie-629ecbef-3ca0-4bd4-bb42-bc8c9b7b14cb/,Phil,,04/04/2018,17.0000000,17.000005,48.218839000000,-4.378940000000,,Telgruc sur Mer - Finistère,44522,observation-629ecbef-3ca0-4bd4-bb42-bc8c9b7b14cb,https://biolit.fr/observations/observation-629ecbef-3ca0-4bd4-bb42-bc8c9b7b14cb/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100861.JPG,,FALSE, +N1,59785,sortie-a5fa3baa-1282-419a-bc2a-66417712350e,https://biolit.fr/sorties/sortie-a5fa3baa-1282-419a-bc2a-66417712350e/,Phil,,04/04/2018,17.0000000,17.000005,48.218767000000,-4.378747000000,,Telgruc sur Mer - Finistère,44524,observation-a5fa3baa-1282-419a-bc2a-66417712350e,https://biolit.fr/observations/observation-a5fa3baa-1282-419a-bc2a-66417712350e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100865.JPG,,FALSE, +N1,59786,sortie-082f7456-6595-4378-905d-3c367c91e188,https://biolit.fr/sorties/sortie-082f7456-6595-4378-905d-3c367c91e188/,Phil,,04/04/2018,17.0000000,17.000005,48.218826000000,-4.378729000000,,Relgruc sur Mer - Finistère,44526,observation-082f7456-6595-4378-905d-3c367c91e188,https://biolit.fr/observations/observation-082f7456-6595-4378-905d-3c367c91e188/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100868.JPG,,FALSE, +N1,59787,sortie-ed0faacd-c9c8-460f-a2c4-b6ab7c3be90d,https://biolit.fr/sorties/sortie-ed0faacd-c9c8-460f-a2c4-b6ab7c3be90d/,Phil,,2/26/2018 0:00,12.0:15,12.0:15,48.110247000000,-4.28493400000,,Plonévez-Porzay - Finistère,44528,observation-ed0faacd-c9c8-460f-a2c4-b6ab7c3be90d,https://biolit.fr/observations/observation-ed0faacd-c9c8-460f-a2c4-b6ab7c3be90d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100543.JPG,,FALSE, +N1,59788,sortie-1f204b32-b772-48e9-92eb-5d14bbd7e667,https://biolit.fr/sorties/sortie-1f204b32-b772-48e9-92eb-5d14bbd7e667/,Phil,,2/26/2018 0:00,12.0:15,12.0:15,48.110516000000,-4.284934000000,,Plonévez-Porzay - Finistère,44530,observation-1f204b32-b772-48e9-92eb-5d14bbd7e667,https://biolit.fr/observations/observation-1f204b32-b772-48e9-92eb-5d14bbd7e667/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100544.JPG,,FALSE, +N1,59789,sortie-7fb18630-9ac2-4b5e-8bde-950fa4f113db,https://biolit.fr/sorties/sortie-7fb18630-9ac2-4b5e-8bde-950fa4f113db/,Phil,,2/26/2018 0:00,12.0:15,12.0:15,48.11043000000,-4.284676000000,,Plonévez-Porzay - Finistère,44532,observation-7fb18630-9ac2-4b5e-8bde-950fa4f113db,https://biolit.fr/observations/observation-7fb18630-9ac2-4b5e-8bde-950fa4f113db/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100545.JPG,,FALSE, +N1,59790,sortie-9d18ed2c-cc10-4db6-9b5e-c67d1e41c1e3,https://biolit.fr/sorties/sortie-9d18ed2c-cc10-4db6-9b5e-c67d1e41c1e3/,Phil,,2/26/2018 0:00,12.0:15,12.0000000,48.110436000000,-4.284805000000,,Plonévez-Porzay - Finistère,44534,observation-9d18ed2c-cc10-4db6-9b5e-c67d1e41c1e3,https://biolit.fr/observations/observation-9d18ed2c-cc10-4db6-9b5e-c67d1e41c1e3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100546.JPG,,FALSE, +N1,59791,sortie-6a30d90d-ce42-48b0-9039-15dc4d026c13,https://biolit.fr/sorties/sortie-6a30d90d-ce42-48b0-9039-15dc4d026c13/,Phil,,2/26/2018 0:00,12.0:15,12.0000000,48.11014100000,-4.284762000000,,Plonévez-Porzay - Finistère,44536,observation-6a30d90d-ce42-48b0-9039-15dc4d026c13,https://biolit.fr/observations/observation-6a30d90d-ce42-48b0-9039-15dc4d026c13/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100558.JPG,,FALSE, +N1,59792,sortie-2d3e0747-facb-4d0b-afed-70edf3835b2a,https://biolit.fr/sorties/sortie-2d3e0747-facb-4d0b-afed-70edf3835b2a/,Phil,,2/26/2018 0:00,12.0000000,12.0:25,48.11079500000,-4.284324000000,,Plonévez-Porzay - Finistère,44538,observation-2d3e0747-facb-4d0b-afed-70edf3835b2a,https://biolit.fr/observations/observation-2d3e0747-facb-4d0b-afed-70edf3835b2a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100567.JPG,,FALSE, +N1,59793,sortie-fee28d91-bfe4-4003-9f55-11dbcf86a0de,https://biolit.fr/sorties/sortie-fee28d91-bfe4-4003-9f55-11dbcf86a0de/,Phil,,2/26/2018 0:00,12.0000000,12.0:25,48.111425000000,-4.284024000000,,Plonévez-Porzay - Finistère,,,,,,,,,, +N1,59794,sortie-da081fd9-ecc9-48f9-a4fc-c0286850df7e,https://biolit.fr/sorties/sortie-da081fd9-ecc9-48f9-a4fc-c0286850df7e/,Phil,,04/04/2018,17.0000000,17.0000000,48.218516000000,-4.37879000000,,Telgruc sur Mer - Finistère,44542,observation-da081fd9-ecc9-48f9-a4fc-c0286850df7e,https://biolit.fr/observations/observation-da081fd9-ecc9-48f9-a4fc-c0286850df7e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100860.JPG,,FALSE, +N1,59795,sortie-fe4fa5f4-c361-49a1-8a0e-994f228e4534,https://biolit.fr/sorties/sortie-fe4fa5f4-c361-49a1-8a0e-994f228e4534/,Phil,,04/04/2018,17.0000000,17.0000000,48.218526000000,-4.378719000000,,Telgruc sur Mer - Finistère,44544,observation-fe4fa5f4-c361-49a1-8a0e-994f228e4534,https://biolit.fr/observations/observation-fe4fa5f4-c361-49a1-8a0e-994f228e4534/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100857.JPG,,FALSE, +N1,59796,sortie-bbeb127a-9269-4c2e-bf90-a144abfa78e9,https://biolit.fr/sorties/sortie-bbeb127a-9269-4c2e-bf90-a144abfa78e9/,Phil,,04/04/2018,16.0:55,17.0000000,48.218384000000,-4.382566000000,,Telgruc sur Mer - Finistère,44546,observation-bbeb127a-9269-4c2e-bf90-a144abfa78e9,https://biolit.fr/observations/observation-bbeb127a-9269-4c2e-bf90-a144abfa78e9/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1100854.JPG,,TRUE, +N1,59797,sortie-4d05671d-33af-4a59-a024-eb5227311b32,https://biolit.fr/sorties/sortie-4d05671d-33af-4a59-a024-eb5227311b32/,Phil,,04/04/2018,16.0:55,17.0000000,48.218370000000,-4.381098000000,,Telgruc sur Mer - Finistère,,,,,,,,,, +N1,59798,sortie-df4cd779-7410-4f7d-bee9-d43d43857c28,https://biolit.fr/sorties/sortie-df4cd779-7410-4f7d-bee9-d43d43857c28/,Phil,,04/04/2018,16.0:55,17.0000000,48.218427000000,-4.381365000000,,Telgruc sur Mer - Finistère,44550,observation-df4cd779-7410-4f7d-bee9-d43d43857c28,https://biolit.fr/observations/observation-df4cd779-7410-4f7d-bee9-d43d43857c28/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1100852.JPG,,TRUE, +N1,59799,sortie-6d652794-3b53-4177-8254-bec14fd6f79d,https://biolit.fr/sorties/sortie-6d652794-3b53-4177-8254-bec14fd6f79d/,Phil,,04/04/2018,16.0:55,17.0000000,48.218516000000,-4.380785000000,,Telgruc sur Mer - Finistère,44552,observation-6d652794-3b53-4177-8254-bec14fd6f79d,https://biolit.fr/observations/observation-6d652794-3b53-4177-8254-bec14fd6f79d/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1100850.JPG,,TRUE, +N1,59800,sortie-f50b0996-35d1-4227-9757-2d23d0f5379b,https://biolit.fr/sorties/sortie-f50b0996-35d1-4227-9757-2d23d0f5379b/,Phil,,04/04/2018,16.0000000,16.0:55,48.217318000000,-4.377665000000,,Telgruc sur Mer - Finistère,44554,observation-f50b0996-35d1-4227-9757-2d23d0f5379b,https://biolit.fr/observations/observation-f50b0996-35d1-4227-9757-2d23d0f5379b/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100847.JPG,,FALSE, +N1,59801,sortie-f2b125eb-2f88-499c-aac5-58e2a6fd6b4f,https://biolit.fr/sorties/sortie-f2b125eb-2f88-499c-aac5-58e2a6fd6b4f/,Phil,,04/04/2018,16.0000000,16.0:55,48.217267000000,-4.377365000000,,Telgruc sur Mer - Finistère,44556,observation-f2b125eb-2f88-499c-aac5-58e2a6fd6b4f,https://biolit.fr/observations/observation-f2b125eb-2f88-499c-aac5-58e2a6fd6b4f/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100843.JPG,,FALSE, +N1,59802,sortie-6deb4bf1-5024-4fb0-9f25-eb5fbb6e2e92,https://biolit.fr/sorties/sortie-6deb4bf1-5024-4fb0-9f25-eb5fbb6e2e92/,Phil,,04/04/2018,16.0000000,16.0:55,48.217699000000,-4.377399000000,,Telgruc sur Mer - Finistère,44558,observation-6deb4bf1-5024-4fb0-9f25-eb5fbb6e2e92,https://biolit.fr/observations/observation-6deb4bf1-5024-4fb0-9f25-eb5fbb6e2e92/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100841.JPG,,FALSE, +N1,59803,sortie-36700c1d-e017-4519-b5bd-35b833bd7acd,https://biolit.fr/sorties/sortie-36700c1d-e017-4519-b5bd-35b833bd7acd/,Phil,,04/04/2018,16.0000000,16.0000000,48.217969000000,-4.37782800000,,Telgruc sur Mer - Finistère,44560,observation-36700c1d-e017-4519-b5bd-35b833bd7acd,https://biolit.fr/observations/observation-36700c1d-e017-4519-b5bd-35b833bd7acd/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/P1100838.JPG,,TRUE, +N1,59804,sortie-696a603b-e02d-4a25-af26-9b463594f976,https://biolit.fr/sorties/sortie-696a603b-e02d-4a25-af26-9b463594f976/,Phil,,04/04/2018,16.0000000,16.0000000,48.217719000000,-4.377497000000,,Telgruc sur Mer - Finistère,44562,observation-696a603b-e02d-4a25-af26-9b463594f976,https://biolit.fr/observations/observation-696a603b-e02d-4a25-af26-9b463594f976/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/P1100837.JPG,,TRUE, +N1,59805,sortie-c13d02e9-666f-46b8-ab60-25bdd8df726a,https://biolit.fr/sorties/sortie-c13d02e9-666f-46b8-ab60-25bdd8df726a/,Phil,,03/08/2018,18.0:15,18.0:15,48.174771000000,-4.300023000000,,Plomodiern Finistère,44564,observation-c13d02e9-666f-46b8-ab60-25bdd8df726a,https://biolit.fr/observations/observation-c13d02e9-666f-46b8-ab60-25bdd8df726a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100744_0.JPG,,FALSE, +N1,59806,sortie-67b582e3-a3ae-40d5-92ae-d813aae6b6c5,https://biolit.fr/sorties/sortie-67b582e3-a3ae-40d5-92ae-d813aae6b6c5/,collège paul Eluard,,3/26/2018 0:00,14.0000000,15.0000000,49.315433000000,3.296752000000,,Outreau plage de Ningles ,44566,observation-67b582e3-a3ae-40d5-92ae-d813aae6b6c5,https://biolit.fr/observations/observation-67b582e3-a3ae-40d5-92ae-d813aae6b6c5/,,,,https://biolit.fr/wp-content/uploads/2023/07/svt.PNG,,FALSE, +N1,59807,sortie-231cc614-9f6b-4878-9bd9-e5d89e2cd166,https://biolit.fr/sorties/sortie-231cc614-9f6b-4878-9bd9-e5d89e2cd166/,pamatelo,,1/27/2018 0:00,16.0:15,16.0000000,43.33355800000,5.197185000000,,"Ensues la redonne , plage de la dugue",44568,observation-231cc614-9f6b-4878-9bd9-e5d89e2cd166,https://biolit.fr/observations/observation-231cc614-9f6b-4878-9bd9-e5d89e2cd166/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180127_162533-scaled.jpg,,FALSE, +N1,59808,sortie-f0625fea-73a4-43fd-ac4a-80868c2dc79f,https://biolit.fr/sorties/sortie-f0625fea-73a4-43fd-ac4a-80868c2dc79f/,ville de marseille marius thomas cm1,,3/26/2018 0:00,10.0000000,12.0000000,43.2804800000,5.352794000000,,ANSE DE LA FOSSE MONNAIE,44570,observation-f0625fea-73a4-43fd-ac4a-80868c2dc79f,https://biolit.fr/observations/observation-f0625fea-73a4-43fd-ac4a-80868c2dc79f/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/oursin_Paracentrotus lividus.JPG,,TRUE, +N1,59808,sortie-f0625fea-73a4-43fd-ac4a-80868c2dc79f,https://biolit.fr/sorties/sortie-f0625fea-73a4-43fd-ac4a-80868c2dc79f/,ville de marseille marius thomas cm1,,3/26/2018 0:00,10.0000000,12.0000000,43.2804800000,5.352794000000,,ANSE DE LA FOSSE MONNAIE,44572,observation-f0625fea-73a4-43fd-ac4a-80868c2dc79f-2,https://biolit.fr/observations/observation-f0625fea-73a4-43fd-ac4a-80868c2dc79f-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/oursin_Paracentrotus lividu 2.JPG,,TRUE, +N1,59809,sortie-f733ad97-bf75-4a9a-a956-1610e2bc2033,https://biolit.fr/sorties/sortie-f733ad97-bf75-4a9a-a956-1610e2bc2033/,ville de marseille marius thomas cm1,,3/26/2018 0:00,10.0000000,12.0000000,43.280457000000,5.35281400000,,anse de la fausse monnaie,44574,observation-f733ad97-bf75-4a9a-a956-1610e2bc2033,https://biolit.fr/observations/observation-f733ad97-bf75-4a9a-a956-1610e2bc2033/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/Spherocoque_Sphaerococcus cornopifilus.JPG,,TRUE, +N1,59810,sortie-5c3f40b4-cadd-419a-97d6-96bae41b9d40,https://biolit.fr/sorties/sortie-5c3f40b4-cadd-419a-97d6-96bae41b9d40/,ville de marseille marius thomas cm1,,3/26/2018 0:00,10.0000000,12.0000000,15.159416000000,-19.420884000000,,anse de la fausse monnaie,44576,observation-5c3f40b4-cadd-419a-97d6-96bae41b9d40,https://biolit.fr/observations/observation-5c3f40b4-cadd-419a-97d6-96bae41b9d40/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/Cerithe_cerithium vulgatum.JPG,,TRUE, +N1,59811,sortie-1c29e03f-1ffb-4016-a4a2-2230878a909f,https://biolit.fr/sorties/sortie-1c29e03f-1ffb-4016-a4a2-2230878a909f/,collège paul Eluard,,04/03/2018,14.0000000,16.0000000,50.692063000000,1.562897000000,,"outreau, plage de ningles",44578,observation-1c29e03f-1ffb-4016-a4a2-2230878a909f,https://biolit.fr/observations/observation-1c29e03f-1ffb-4016-a4a2-2230878a909f/,,,,https://biolit.fr/wp-content/uploads/2023/07/Litorine Fabalis-scaled.jpg,,FALSE, +N1,59812,sortie-114049f0-dd86-4caa-a045-6bcf3a491d88,https://biolit.fr/sorties/sortie-114049f0-dd86-4caa-a045-6bcf3a491d88/,collège paul Eluard,,3/27/2018 0:00,14.0000000,15.0000000,50.691936000000,1.56278400000,,"outreau, plage de ningles",44580,observation-114049f0-dd86-4caa-a045-6bcf3a491d88,https://biolit.fr/observations/observation-114049f0-dd86-4caa-a045-6bcf3a491d88/,,,,https://biolit.fr/wp-content/uploads/2023/07/moule_0-scaled.jpg,,FALSE, +N1,59813,sortie-dadb8dce-14aa-493f-9021-6956c063dd16,https://biolit.fr/sorties/sortie-dadb8dce-14aa-493f-9021-6956c063dd16/,ville de marseille marius thomas cm1,,3/26/2018 0:00,10.0000000,12.0000000,43.28037500000,5.352771000000,,anse de la fausse monnaie,44581,observation-dadb8dce-14aa-493f-9021-6956c063dd16,https://biolit.fr/observations/observation-dadb8dce-14aa-493f-9021-6956c063dd16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Blennie diabolo_Parablennius incognitus.JPG,,FALSE, +N1,59814,sortie-61094d0a-8e04-4df7-8a63-c58a1936c8cb,https://biolit.fr/sorties/sortie-61094d0a-8e04-4df7-8a63-c58a1936c8cb/,ville de marseille marius thomas cm1,,3/26/2018 0:00,10.0000000,12.0000000,43.280405000000,5.352766000000,,anse de la fausse monnaie,44583,observation-61094d0a-8e04-4df7-8a63-c58a1936c8cb,https://biolit.fr/observations/observation-61094d0a-8e04-4df7-8a63-c58a1936c8cb/,,,,https://biolit.fr/wp-content/uploads/2023/07/Laitue de mer_ ulva lactuca.JPG,,FALSE, +N1,59815,sortie-57812833-cbf1-4932-802d-6063a5a669d9,https://biolit.fr/sorties/sortie-57812833-cbf1-4932-802d-6063a5a669d9/,ville de marseille marius thomas cm1,,3/26/2018 0:00,10.0000000,12.0000000,43.280401000000,5.352804000000,,ANSE DE LA FOSSE MONNAIE,44585,observation-57812833-cbf1-4932-802d-6063a5a669d9,https://biolit.fr/observations/observation-57812833-cbf1-4932-802d-6063a5a669d9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Eponge de mer_0.JPG,,FALSE, +N1,59816,sortie-ba3876df-51f3-4dcc-97eb-3d2101a4d9dc,https://biolit.fr/sorties/sortie-ba3876df-51f3-4dcc-97eb-3d2101a4d9dc/,ville de marseille marius thomas cm1,,3/26/2018 0:00,10.0000000,12.0000000,43.280311000000,5.352784000000,,anse de la fause monnaie,44587,observation-ba3876df-51f3-4dcc-97eb-3d2101a4d9dc,https://biolit.fr/observations/observation-ba3876df-51f3-4dcc-97eb-3d2101a4d9dc/,Lithophaga lithophaga,Datte de mer,,https://biolit.fr/wp-content/uploads/2023/07/date de mer_Lithophaga lithophaga interieur.jpg,,TRUE, +N1,59816,sortie-ba3876df-51f3-4dcc-97eb-3d2101a4d9dc,https://biolit.fr/sorties/sortie-ba3876df-51f3-4dcc-97eb-3d2101a4d9dc/,ville de marseille marius thomas cm1,,3/26/2018 0:00,10.0000000,12.0000000,43.280311000000,5.352784000000,,anse de la fause monnaie,44589,observation-ba3876df-51f3-4dcc-97eb-3d2101a4d9dc-2,https://biolit.fr/observations/observation-ba3876df-51f3-4dcc-97eb-3d2101a4d9dc-2/,Lithophaga lithophaga,Datte de mer,,https://biolit.fr/wp-content/uploads/2023/07/date de mer_Lithophaga lithophaga.jpg,,TRUE, +N1,59817,sortie-04d9cb3e-a769-4e58-a442-88001df5f96a,https://biolit.fr/sorties/sortie-04d9cb3e-a769-4e58-a442-88001df5f96a/,ville de marseille marius thomas cm1,,3/26/2018 0:00,10.0000000,12.0000000,43.280391000000,5.352779000000,,Anse de la fausse monnaie,44591,observation-04d9cb3e-a769-4e58-a442-88001df5f96a,https://biolit.fr/observations/observation-04d9cb3e-a769-4e58-a442-88001df5f96a/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/Beret Basque_Codium bursa.JPG,,TRUE, +N1,59818,sortie-93fc2b5d-36a7-4c12-ab0c-b5b454fda2ee,https://biolit.fr/sorties/sortie-93fc2b5d-36a7-4c12-ab0c-b5b454fda2ee/,Phil,,03/03/2018,12.0:35,12.0000000,47.862879000000,-4.066400000000,,Fouesnant - Finistère,44593,observation-93fc2b5d-36a7-4c12-ab0c-b5b454fda2ee,https://biolit.fr/observations/observation-93fc2b5d-36a7-4c12-ab0c-b5b454fda2ee/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100730.JPG,,FALSE, +N1,59819,sortie-f9175ec0-5cc9-4566-bac2-ef3f4ff4a6b2,https://biolit.fr/sorties/sortie-f9175ec0-5cc9-4566-bac2-ef3f4ff4a6b2/,Phil,,03/03/2018,12.0:35,12.0000000,47.863011000000,-4.066400000000,,Fouesnant - Finistère,44595,observation-f9175ec0-5cc9-4566-bac2-ef3f4ff4a6b2,https://biolit.fr/observations/observation-f9175ec0-5cc9-4566-bac2-ef3f4ff4a6b2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100727.JPG,,FALSE, +N1,59820,sortie-541b170b-fbb4-47e4-81cf-47f81c5430ad,https://biolit.fr/sorties/sortie-541b170b-fbb4-47e4-81cf-47f81c5430ad/,Phil,,03/03/2018,12.0:35,12.0000000,47.86312700000,-4.065842000000,,Fouesnant - Finistère,44597,observation-541b170b-fbb4-47e4-81cf-47f81c5430ad,https://biolit.fr/observations/observation-541b170b-fbb4-47e4-81cf-47f81c5430ad/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100724.JPG,,FALSE, +N1,59821,sortie-ee0c5bba-b756-41b3-9875-080ef29107ac,https://biolit.fr/sorties/sortie-ee0c5bba-b756-41b3-9875-080ef29107ac/,Phil,,03/03/2018,12.0:35,12.0000000,47.863150000000,-4.066100000000,,Fouesnant - Finistère,44599,observation-ee0c5bba-b756-41b3-9875-080ef29107ac,https://biolit.fr/observations/observation-ee0c5bba-b756-41b3-9875-080ef29107ac/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100722.JPG,,FALSE, +N1,59822,sortie-98bc83b0-668e-46a3-9747-08444b885be9,https://biolit.fr/sorties/sortie-98bc83b0-668e-46a3-9747-08444b885be9/,Phil,,03/03/2018,12.0:35,12.0000000,47.863213000000,-4.066151000000,,Fouesnant - Finistère,44601,observation-98bc83b0-668e-46a3-9747-08444b885be9,https://biolit.fr/observations/observation-98bc83b0-668e-46a3-9747-08444b885be9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100721.JPG,,FALSE, +N1,59823,sortie-b2f0ac1e-5fdd-450a-bce8-a87d7d8a5dcb,https://biolit.fr/sorties/sortie-b2f0ac1e-5fdd-450a-bce8-a87d7d8a5dcb/,Phil,,03/03/2018,12.0:35,12.0000000,47.86340900000,-4.066314000000,,Fouesnant - Finistère,44603,observation-b2f0ac1e-5fdd-450a-bce8-a87d7d8a5dcb,https://biolit.fr/observations/observation-b2f0ac1e-5fdd-450a-bce8-a87d7d8a5dcb/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100720.JPG,,FALSE, +N1,59824,sortie-ec8ccfe2-3336-4db6-8274-cabba3d4e9a4,https://biolit.fr/sorties/sortie-ec8ccfe2-3336-4db6-8274-cabba3d4e9a4/,Phil,,03/03/2018,12.0:35,12.0000000,47.863250000000,-4.066143000000,,Fouesnant - Finistère,44605,observation-ec8ccfe2-3336-4db6-8274-cabba3d4e9a4,https://biolit.fr/observations/observation-ec8ccfe2-3336-4db6-8274-cabba3d4e9a4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100719.JPG,,FALSE, +N1,59825,sortie-342de731-e497-4899-a419-f1822d6129e4,https://biolit.fr/sorties/sortie-342de731-e497-4899-a419-f1822d6129e4/,Phil,,3/31/2018 0:00,13.0000000,13.0:15,47.897052000000,-3.974582000000,,La Forêt-Fouesnant - Finistère,44607,observation-342de731-e497-4899-a419-f1822d6129e4,https://biolit.fr/observations/observation-342de731-e497-4899-a419-f1822d6129e4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180331_131154.jpg,,FALSE, +N1,59826,sortie-61f287c1-331d-4fdc-9064-c65f83d14e41,https://biolit.fr/sorties/sortie-61f287c1-331d-4fdc-9064-c65f83d14e41/,Phil,,3/31/2018 0:00,13.0000000,13.0:15,47.897045000000,-3.974542000000,,La Forêt-Fouesnant - Finistère,44609,observation-61f287c1-331d-4fdc-9064-c65f83d14e41,https://biolit.fr/observations/observation-61f287c1-331d-4fdc-9064-c65f83d14e41/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180331_131122.jpg,,FALSE, +N1,59827,sortie-f8bbc90e-6571-4cf0-afdb-22a7cd39e706,https://biolit.fr/sorties/sortie-f8bbc90e-6571-4cf0-afdb-22a7cd39e706/,Phil,,3/31/2018 0:00,13.0000000,13.0:15,47.897036000000,-3.97453400000,,La Forêt-Fouesnant - Finistère,44611,observation-f8bbc90e-6571-4cf0-afdb-22a7cd39e706,https://biolit.fr/observations/observation-f8bbc90e-6571-4cf0-afdb-22a7cd39e706/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180331_131103.jpg,,FALSE, +N1,59828,sortie-d5c6c922-b55f-4dd5-ad1c-228e6d127d68,https://biolit.fr/sorties/sortie-d5c6c922-b55f-4dd5-ad1c-228e6d127d68/,collège paul Eluard,,3/26/2018 0:00,14.0:15,15.0000000,50.692086000000,1.563051000000,,"Outreau , plage de Ningles ",44613,observation-d5c6c922-b55f-4dd5-ad1c-228e6d127d68,https://biolit.fr/observations/observation-d5c6c922-b55f-4dd5-ad1c-228e6d127d68/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180326_145630-scaled.jpg,,FALSE, +N1,59829,sortie-008e9a3f-0d14-4811-a9dc-3acbc0338f40,https://biolit.fr/sorties/sortie-008e9a3f-0d14-4811-a9dc-3acbc0338f40/,Observe la nature,,04/01/2018,14.0000000,15.0000000,48.815369000000,-3.427215000000,,pors ar goret perros guirec,44615,observation-008e9a3f-0d14-4811-a9dc-3acbc0338f40,https://biolit.fr/observations/observation-008e9a3f-0d14-4811-a9dc-3acbc0338f40/,,,,https://biolit.fr/wp-content/uploads/2023/07/P4010587-scaled.jpg,,FALSE, +N1,59829,sortie-008e9a3f-0d14-4811-a9dc-3acbc0338f40,https://biolit.fr/sorties/sortie-008e9a3f-0d14-4811-a9dc-3acbc0338f40/,Observe la nature,,04/01/2018,14.0000000,15.0000000,48.815369000000,-3.427215000000,,pors ar goret perros guirec,44617,observation-008e9a3f-0d14-4811-a9dc-3acbc0338f40-2,https://biolit.fr/observations/observation-008e9a3f-0d14-4811-a9dc-3acbc0338f40-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P4010586-scaled.jpg,,FALSE, +N1,59830,sortie-f336b779-a114-459f-bc7f-0e331efe00c5,https://biolit.fr/sorties/sortie-f336b779-a114-459f-bc7f-0e331efe00c5/,Phil,,3/31/2018 0:00,13.0000000,13.0000000,47.897151000000,-3.974596000000,,La Forêt-Fouesnant - Finistère,44619,observation-f336b779-a114-459f-bc7f-0e331efe00c5,https://biolit.fr/observations/observation-f336b779-a114-459f-bc7f-0e331efe00c5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180331_131037.jpg,,FALSE, +N1,59831,sortie-2924fabc-8534-4248-bfa9-dff6e2afc018,https://biolit.fr/sorties/sortie-2924fabc-8534-4248-bfa9-dff6e2afc018/,Phil,,3/31/2018 0:00,13.0000000,13.0000000,47.897165000000,-3.974630000000,,La Forêt-Fouesnant - Finistère,44621,observation-2924fabc-8534-4248-bfa9-dff6e2afc018,https://biolit.fr/observations/observation-2924fabc-8534-4248-bfa9-dff6e2afc018/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180331_131033.jpg,,FALSE, +N1,59832,sortie-b59c80ab-716c-4fe1-9222-8df1e9dddbef,https://biolit.fr/sorties/sortie-b59c80ab-716c-4fe1-9222-8df1e9dddbef/,RBBBM,,3/30/2018 0:00,11.0:15,12.0:15,47.78847900000,-3.703740000000,,Trenez à Moëlan/mer,44623,observation-b59c80ab-716c-4fe1-9222-8df1e9dddbef,https://biolit.fr/observations/observation-b59c80ab-716c-4fe1-9222-8df1e9dddbef/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/ascidies Botrylle-scaled.jpg,,TRUE, +N1,59832,sortie-b59c80ab-716c-4fe1-9222-8df1e9dddbef,https://biolit.fr/sorties/sortie-b59c80ab-716c-4fe1-9222-8df1e9dddbef/,RBBBM,,3/30/2018 0:00,11.0:15,12.0:15,47.78847900000,-3.703740000000,,Trenez à Moëlan/mer,44625,observation-b59c80ab-716c-4fe1-9222-8df1e9dddbef-2,https://biolit.fr/observations/observation-b59c80ab-716c-4fe1-9222-8df1e9dddbef-2/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/ascidies_0-scaled.jpg,,TRUE, +N1,59832,sortie-b59c80ab-716c-4fe1-9222-8df1e9dddbef,https://biolit.fr/sorties/sortie-b59c80ab-716c-4fe1-9222-8df1e9dddbef/,RBBBM,,3/30/2018 0:00,11.0:15,12.0:15,47.78847900000,-3.703740000000,,Trenez à Moëlan/mer,44627,observation-b59c80ab-716c-4fe1-9222-8df1e9dddbef-3,https://biolit.fr/observations/observation-b59c80ab-716c-4fe1-9222-8df1e9dddbef-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/ascidies blanches-scaled.jpg,,TRUE, +N1,59832,sortie-b59c80ab-716c-4fe1-9222-8df1e9dddbef,https://biolit.fr/sorties/sortie-b59c80ab-716c-4fe1-9222-8df1e9dddbef/,RBBBM,,3/30/2018 0:00,11.0:15,12.0:15,47.78847900000,-3.703740000000,,Trenez à Moëlan/mer,44629,observation-b59c80ab-716c-4fe1-9222-8df1e9dddbef-4,https://biolit.fr/observations/observation-b59c80ab-716c-4fe1-9222-8df1e9dddbef-4/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/crabe_0-scaled.jpg,,TRUE, +N1,59832,sortie-b59c80ab-716c-4fe1-9222-8df1e9dddbef,https://biolit.fr/sorties/sortie-b59c80ab-716c-4fe1-9222-8df1e9dddbef/,RBBBM,,3/30/2018 0:00,11.0:15,12.0:15,47.78847900000,-3.703740000000,,Trenez à Moëlan/mer,44631,observation-b59c80ab-716c-4fe1-9222-8df1e9dddbef-5,https://biolit.fr/observations/observation-b59c80ab-716c-4fe1-9222-8df1e9dddbef-5/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/chiton-scaled.jpg,,TRUE, +N1,59833,sortie-ef655138-6bf4-44a1-97fb-168e5eb49543,https://biolit.fr/sorties/sortie-ef655138-6bf4-44a1-97fb-168e5eb49543/,Phil,,03/03/2018,12.0:35,12.0000000,47.862683000000,-4.06734400000,,Fouesnant - Finistère,44633,observation-ef655138-6bf4-44a1-97fb-168e5eb49543,https://biolit.fr/observations/observation-ef655138-6bf4-44a1-97fb-168e5eb49543/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100717.JPG,,FALSE, +N1,59834,sortie-6cdcbb72-0de5-4d4f-8f75-3065fbd1b0d2,https://biolit.fr/sorties/sortie-6cdcbb72-0de5-4d4f-8f75-3065fbd1b0d2/,Phil,,03/03/2018,12.0:35,12.0000000,47.862617000000,-4.068061000000,,Fouesnant - Finistère,44635,observation-6cdcbb72-0de5-4d4f-8f75-3065fbd1b0d2,https://biolit.fr/observations/observation-6cdcbb72-0de5-4d4f-8f75-3065fbd1b0d2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100703.JPG,,FALSE, +N1,59835,sortie-74558b26-9b46-4869-9f8c-e60050446634,https://biolit.fr/sorties/sortie-74558b26-9b46-4869-9f8c-e60050446634/,Phil,,03/03/2018,12.0:35,12.0000000,47.862522000000,-4.067559000000,,Fouesnant - Finistère,44637,observation-74558b26-9b46-4869-9f8c-e60050446634,https://biolit.fr/observations/observation-74558b26-9b46-4869-9f8c-e60050446634/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100701.JPG,,FALSE, +N1,59836,sortie-073ec1d9-2613-4f03-9991-c7a54532ab9c,https://biolit.fr/sorties/sortie-073ec1d9-2613-4f03-9991-c7a54532ab9c/,Phil,,03/03/2018,12.0000000,12.0:35,47.862257000000,-4.06704400000,,Fouesnant - Finistère,44639,observation-073ec1d9-2613-4f03-9991-c7a54532ab9c,https://biolit.fr/observations/observation-073ec1d9-2613-4f03-9991-c7a54532ab9c/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100700.JPG,,FALSE, +N1,59837,sortie-3715154c-7042-441b-84a5-f933fb4e471d,https://biolit.fr/sorties/sortie-3715154c-7042-441b-84a5-f933fb4e471d/,Phil,,03/03/2018,12.0000000,12.0:35,47.862288000000,-4.067138000000,,Fouesnant - Finistère,44641,observation-3715154c-7042-441b-84a5-f933fb4e471d,https://biolit.fr/observations/observation-3715154c-7042-441b-84a5-f933fb4e471d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100699.JPG,,FALSE, +N1,59838,sortie-d4529d26-7a30-4e94-8385-b5b580d6145b,https://biolit.fr/sorties/sortie-d4529d26-7a30-4e94-8385-b5b580d6145b/,Phil,,03/03/2018,12.0000000,12.0:35,47.862427000000,-4.067988000000,,Fouesnant - Finistère,44643,observation-d4529d26-7a30-4e94-8385-b5b580d6145b,https://biolit.fr/observations/observation-d4529d26-7a30-4e94-8385-b5b580d6145b/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100698.JPG,,FALSE, +N1,59839,sortie-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62,https://biolit.fr/sorties/sortie-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62/,CarpeDiem,,1/21/2018 0:00,11.0000000,12.0000000,43.329915000000,5.209624000000,,Calanque des Figuières,44645,observation-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62,https://biolit.fr/observations/observation-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/Codium-scaled.jpg,,TRUE, +N1,59839,sortie-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62,https://biolit.fr/sorties/sortie-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62/,CarpeDiem,,1/21/2018 0:00,11.0000000,12.0000000,43.329915000000,5.209624000000,,Calanque des Figuières,44647,observation-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62-2,https://biolit.fr/observations/observation-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algues verte-scaled.jpg,,FALSE, +N1,59839,sortie-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62,https://biolit.fr/sorties/sortie-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62/,CarpeDiem,,1/21/2018 0:00,11.0000000,12.0000000,43.329915000000,5.209624000000,,Calanque des Figuières,44649,observation-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62-3,https://biolit.fr/observations/observation-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algues ponpon.png,,FALSE, +N1,59839,sortie-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62,https://biolit.fr/sorties/sortie-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62/,CarpeDiem,,1/21/2018 0:00,11.0000000,12.0000000,43.329915000000,5.209624000000,,Calanque des Figuières,44651,observation-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62-4,https://biolit.fr/observations/observation-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62-4/,,,,https://biolit.fr/wp-content/uploads/2023/05/algues-scaled.jpg,,FALSE, +N1,59839,sortie-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62,https://biolit.fr/sorties/sortie-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62/,CarpeDiem,,1/21/2018 0:00,11.0000000,12.0000000,43.329915000000,5.209624000000,,Calanque des Figuières,44652,observation-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62-5,https://biolit.fr/observations/observation-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62-5/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Oursin-scaled.jpg,,TRUE, +N1,59839,sortie-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62,https://biolit.fr/sorties/sortie-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62/,CarpeDiem,,1/21/2018 0:00,11.0000000,12.0000000,43.329915000000,5.209624000000,,Calanque des Figuières,44654,observation-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62-6,https://biolit.fr/observations/observation-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle_1-scaled.jpg,,FALSE, +N1,59839,sortie-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62,https://biolit.fr/sorties/sortie-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62/,CarpeDiem,,1/21/2018 0:00,11.0000000,12.0000000,43.329915000000,5.209624000000,,Calanque des Figuières,44656,observation-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62-7,https://biolit.fr/observations/observation-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62-7/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/Gibbules-scaled.jpg,,TRUE, +N1,59839,sortie-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62,https://biolit.fr/sorties/sortie-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62/,CarpeDiem,,1/21/2018 0:00,11.0000000,12.0000000,43.329915000000,5.209624000000,,Calanque des Figuières,44657,observation-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62-8,https://biolit.fr/observations/observation-82a7bcfb-89c4-4bb4-a418-aeacf28e1e62-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Posidonie-scaled.jpg,,FALSE, +N1,59840,sortie-893e24c0-223e-4bc7-b6f4-7b9486b0ea19,https://biolit.fr/sorties/sortie-893e24c0-223e-4bc7-b6f4-7b9486b0ea19/,cigale33,,3/28/2018 0:00,10.0000000,11.0000000,43.379564000000,-1.756089000000,,hendaye,44659,observation-893e24c0-223e-4bc7-b6f4-7b9486b0ea19,https://biolit.fr/observations/observation-893e24c0-223e-4bc7-b6f4-7b9486b0ea19/,Scyliorhinus stellaris,Grande roussette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1166.JPG,,TRUE, +N1,59847,sortie-91eedc27-f42c-4432-a62e-25700edb0393,https://biolit.fr/sorties/sortie-91eedc27-f42c-4432-a62e-25700edb0393/,ville de marseille BOMPARD CM1 CM2,,03/12/2018,10.0000000,11.0000000,43.280318000000,5.352774000000,,Anse de la fausse monnaie,44673,observation-91eedc27-f42c-4432-a62e-25700edb0393,https://biolit.fr/observations/observation-91eedc27-f42c-4432-a62e-25700edb0393/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/Astré rugueuse Bolma rugosa.JPG,,TRUE, +N1,59848,sortie-3c573ec7-07b4-4b6e-aa03-8772ed8c4ca7,https://biolit.fr/sorties/sortie-3c573ec7-07b4-4b6e-aa03-8772ed8c4ca7/,ville de marseille BOMPARD CM1 CM2,,03/12/2018,10.0000000,11.0000000,43.280274000000,5.352900000000,,anse de la fausse monnaie,44675,observation-3c573ec7-07b4-4b6e-aa03-8772ed8c4ca7,https://biolit.fr/observations/observation-3c573ec7-07b4-4b6e-aa03-8772ed8c4ca7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Os 1_0-scaled.jpg,,FALSE, +N1,59849,sortie-d7451b28-0d20-4eb8-b7cb-df5d0c48415f,https://biolit.fr/sorties/sortie-d7451b28-0d20-4eb8-b7cb-df5d0c48415f/,ville de marseille BOMPARD CM1 CM2,,03/12/2018,10.0000000,11.0000000,43.280274000000,5.352900000000,,anse de la fausse monnaie,44677,observation-d7451b28-0d20-4eb8-b7cb-df5d0c48415f,https://biolit.fr/observations/observation-d7451b28-0d20-4eb8-b7cb-df5d0c48415f/,,,,https://biolit.fr/wp-content/uploads/2023/07/Os 1-scaled.jpg,,FALSE, +N1,59849,sortie-d7451b28-0d20-4eb8-b7cb-df5d0c48415f,https://biolit.fr/sorties/sortie-d7451b28-0d20-4eb8-b7cb-df5d0c48415f/,ville de marseille BOMPARD CM1 CM2,,03/12/2018,10.0000000,11.0000000,43.280274000000,5.352900000000,,anse de la fausse monnaie,44679,observation-d7451b28-0d20-4eb8-b7cb-df5d0c48415f-2,https://biolit.fr/observations/observation-d7451b28-0d20-4eb8-b7cb-df5d0c48415f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Os 2-scaled.jpg,,FALSE, +N1,59850,sortie-d0dcca3f-4a35-4d0d-8974-bf54cb0aa6a6,https://biolit.fr/sorties/sortie-d0dcca3f-4a35-4d0d-8974-bf54cb0aa6a6/,ville de marseille BOMPARD CM1 CM2,,03/12/2018,10.0000000,11.0000000,43.280418000000,5.352801000000,,Anse de la Fausse Monnaie,44681,observation-d0dcca3f-4a35-4d0d-8974-bf54cb0aa6a6,https://biolit.fr/observations/observation-d0dcca3f-4a35-4d0d-8974-bf54cb0aa6a6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cardites antiquatus vue externe.JPG,,FALSE, +N1,59850,sortie-d0dcca3f-4a35-4d0d-8974-bf54cb0aa6a6,https://biolit.fr/sorties/sortie-d0dcca3f-4a35-4d0d-8974-bf54cb0aa6a6/,ville de marseille BOMPARD CM1 CM2,,03/12/2018,10.0000000,11.0000000,43.280418000000,5.352801000000,,Anse de la Fausse Monnaie,44683,observation-d0dcca3f-4a35-4d0d-8974-bf54cb0aa6a6-2,https://biolit.fr/observations/observation-d0dcca3f-4a35-4d0d-8974-bf54cb0aa6a6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cardites antiquatus vue interne.JPG,,FALSE, +N1,59851,sortie-867ff9b9-e0e7-45f6-ad15-a639136b4bb4,https://biolit.fr/sorties/sortie-867ff9b9-e0e7-45f6-ad15-a639136b4bb4/,ville de marseille BOMPARD CM1 CM2,,03/12/2018,10.0000000,11.0000000,43.280416000000,5.352736000000,,Anse de la fausse monnaie,44685,observation-867ff9b9-e0e7-45f6-ad15-a639136b4bb4,https://biolit.fr/observations/observation-867ff9b9-e0e7-45f6-ad15-a639136b4bb4/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/POSIDONIE-Posidonia oceanica-scaled.jpg,,TRUE, +N1,59851,sortie-867ff9b9-e0e7-45f6-ad15-a639136b4bb4,https://biolit.fr/sorties/sortie-867ff9b9-e0e7-45f6-ad15-a639136b4bb4/,ville de marseille BOMPARD CM1 CM2,,03/12/2018,10.0000000,11.0000000,43.280416000000,5.352736000000,,Anse de la fausse monnaie,44686,observation-867ff9b9-e0e7-45f6-ad15-a639136b4bb4-2,https://biolit.fr/observations/observation-867ff9b9-e0e7-45f6-ad15-a639136b4bb4-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Test d'oursin Paracentrotus lividus.JPG,,TRUE, +N1,59852,sortie-4f3d3b57-6dee-41f2-b3be-9d982c4153ed,https://biolit.fr/sorties/sortie-4f3d3b57-6dee-41f2-b3be-9d982c4153ed/,ville de marseille BOMPARD CM1 CM2,,03/12/2018,10.0000000,11.0000000,43.280398000000,5.352786000000,,Anse de la fausse monnaie,44688,observation-4f3d3b57-6dee-41f2-b3be-9d982c4153ed,https://biolit.fr/observations/observation-4f3d3b57-6dee-41f2-b3be-9d982c4153ed/,,,,https://biolit.fr/wp-content/uploads/2023/07/OPHIURE-.Ophiothrix sp.JPG,,FALSE, +N1,59853,sortie-55278b09-c7f6-4263-a8c3-91604b8a5624,https://biolit.fr/sorties/sortie-55278b09-c7f6-4263-a8c3-91604b8a5624/,ville de marseille BOMPARD CM1 CM2,,03/12/2018,10.0000000,11.0000000,43.280482000000,5.352829000000,,anse de la fausse monnaie,44690,observation-55278b09-c7f6-4263-a8c3-91604b8a5624,https://biolit.fr/observations/observation-55278b09-c7f6-4263-a8c3-91604b8a5624/,,,,https://biolit.fr/wp-content/uploads/2023/07/COLUMBELLE RUSTIQUE-Columbella rustica vue ventral.JPG,,FALSE, +N1,59853,sortie-55278b09-c7f6-4263-a8c3-91604b8a5624,https://biolit.fr/sorties/sortie-55278b09-c7f6-4263-a8c3-91604b8a5624/,ville de marseille BOMPARD CM1 CM2,,03/12/2018,10.0000000,11.0000000,43.280482000000,5.352829000000,,anse de la fausse monnaie,44692,observation-55278b09-c7f6-4263-a8c3-91604b8a5624-2,https://biolit.fr/observations/observation-55278b09-c7f6-4263-a8c3-91604b8a5624-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/COLUMBELLE RUSTIQUE -Columbella rustica vue dorsale .JPG,,FALSE, +N1,59854,sortie-c0410d6e-e797-4ccc-aca5-753275f2531b,https://biolit.fr/sorties/sortie-c0410d6e-e797-4ccc-aca5-753275f2531b/,ville de marseille BOMPARD CM1 CM2,,03/12/2018,10.0000000,11.0000000,43.2799830,5.352555,,anse de la fosse monnaie,44694,observation-c0410d6e-e797-4ccc-aca5-753275f2531b,https://biolit.fr/observations/observation-c0410d6e-e797-4ccc-aca5-753275f2531b/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie rouge Halocynthia papillosa_0.JPG,,TRUE, +N1,59854,sortie-c0410d6e-e797-4ccc-aca5-753275f2531b,https://biolit.fr/sorties/sortie-c0410d6e-e797-4ccc-aca5-753275f2531b/,ville de marseille BOMPARD CM1 CM2,,03/12/2018,10.0000000,11.0000000,43.2799830,5.352555,,anse de la fosse monnaie,44696,observation-c0410d6e-e797-4ccc-aca5-753275f2531b-2,https://biolit.fr/observations/observation-c0410d6e-e797-4ccc-aca5-753275f2531b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algue bulle-Valonia aegagropyla_1-scaled.jpg,,FALSE, +N1,59855,sortie-12a8cab6-de57-448b-a8bf-7bd1a5fe8bf6,https://biolit.fr/sorties/sortie-12a8cab6-de57-448b-a8bf-7bd1a5fe8bf6/,ville de marseille BOMPARD CM1 CM2,,03/12/2018,10.0000000,11.0000000,43.280407000000,5.352740000000,,Anse de la fausse monnaie,44698,observation-12a8cab6-de57-448b-a8bf-7bd1a5fe8bf6,https://biolit.fr/observations/observation-12a8cab6-de57-448b-a8bf-7bd1a5fe8bf6/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/Bérêt basque Codium bursa-scaled.jpg,,TRUE, +N1,59855,sortie-12a8cab6-de57-448b-a8bf-7bd1a5fe8bf6,https://biolit.fr/sorties/sortie-12a8cab6-de57-448b-a8bf-7bd1a5fe8bf6/,ville de marseille BOMPARD CM1 CM2,,03/12/2018,10.0000000,11.0000000,43.280407000000,5.352740000000,,Anse de la fausse monnaie,44700,observation-12a8cab6-de57-448b-a8bf-7bd1a5fe8bf6-2,https://biolit.fr/observations/observation-12a8cab6-de57-448b-a8bf-7bd1a5fe8bf6-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/Bérêt basque Codium bursa2.JPG,,TRUE, +N1,59856,sortie-34127bf7-fee2-4991-a446-9504a484b094,https://biolit.fr/sorties/sortie-34127bf7-fee2-4991-a446-9504a484b094/,ville de marseille BOMPARD CM1 CM2,,03/12/2018,10.0000000,11.0000000,43.279729000000,5.352420000000,,anse de la fausse monnaie,44702,observation-34127bf7-fee2-4991-a446-9504a484b094,https://biolit.fr/observations/observation-34127bf7-fee2-4991-a446-9504a484b094/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/2023/07/ormeau méditerranée -Haliotis tuberculata lamellosa vue interne.JPG,,TRUE, +N1,59858,sortie-115ade1a-97f7-435b-9e52-899cc66a5bc9,https://biolit.fr/sorties/sortie-115ade1a-97f7-435b-9e52-899cc66a5bc9/,OBRIOT,,3/25/2018 0:00,13.0000000,14.0000000,43.072134000000,5.787799000000,,grand Gaou Le Brusc,44708,observation-115ade1a-97f7-435b-9e52-899cc66a5bc9,https://biolit.fr/observations/observation-115ade1a-97f7-435b-9e52-899cc66a5bc9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0086.JPG,,FALSE, +N1,59858,sortie-115ade1a-97f7-435b-9e52-899cc66a5bc9,https://biolit.fr/sorties/sortie-115ade1a-97f7-435b-9e52-899cc66a5bc9/,OBRIOT,,3/25/2018 0:00,13.0000000,14.0000000,43.072134000000,5.787799000000,,grand Gaou Le Brusc,44710,observation-115ade1a-97f7-435b-9e52-899cc66a5bc9-2,https://biolit.fr/observations/observation-115ade1a-97f7-435b-9e52-899cc66a5bc9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0087.JPG,,FALSE, +N1,59858,sortie-115ade1a-97f7-435b-9e52-899cc66a5bc9,https://biolit.fr/sorties/sortie-115ade1a-97f7-435b-9e52-899cc66a5bc9/,OBRIOT,,3/25/2018 0:00,13.0000000,14.0000000,43.072134000000,5.787799000000,,grand Gaou Le Brusc,44712,observation-115ade1a-97f7-435b-9e52-899cc66a5bc9-3,https://biolit.fr/observations/observation-115ade1a-97f7-435b-9e52-899cc66a5bc9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0088.JPG,,FALSE, +N1,59858,sortie-115ade1a-97f7-435b-9e52-899cc66a5bc9,https://biolit.fr/sorties/sortie-115ade1a-97f7-435b-9e52-899cc66a5bc9/,OBRIOT,,3/25/2018 0:00,13.0000000,14.0000000,43.072134000000,5.787799000000,,grand Gaou Le Brusc,44714,observation-115ade1a-97f7-435b-9e52-899cc66a5bc9-4,https://biolit.fr/observations/observation-115ade1a-97f7-435b-9e52-899cc66a5bc9-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0089.JPG,,FALSE, +N1,59858,sortie-115ade1a-97f7-435b-9e52-899cc66a5bc9,https://biolit.fr/sorties/sortie-115ade1a-97f7-435b-9e52-899cc66a5bc9/,OBRIOT,,3/25/2018 0:00,13.0000000,14.0000000,43.072134000000,5.787799000000,,grand Gaou Le Brusc,44716,observation-115ade1a-97f7-435b-9e52-899cc66a5bc9-5,https://biolit.fr/observations/observation-115ade1a-97f7-435b-9e52-899cc66a5bc9-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0092.JPG,,FALSE, +N1,59858,sortie-115ade1a-97f7-435b-9e52-899cc66a5bc9,https://biolit.fr/sorties/sortie-115ade1a-97f7-435b-9e52-899cc66a5bc9/,OBRIOT,,3/25/2018 0:00,13.0000000,14.0000000,43.072134000000,5.787799000000,,grand Gaou Le Brusc,44718,observation-115ade1a-97f7-435b-9e52-899cc66a5bc9-6,https://biolit.fr/observations/observation-115ade1a-97f7-435b-9e52-899cc66a5bc9-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0095.JPG,,FALSE, +N1,59858,sortie-115ade1a-97f7-435b-9e52-899cc66a5bc9,https://biolit.fr/sorties/sortie-115ade1a-97f7-435b-9e52-899cc66a5bc9/,OBRIOT,,3/25/2018 0:00,13.0000000,14.0000000,43.072134000000,5.787799000000,,grand Gaou Le Brusc,44720,observation-115ade1a-97f7-435b-9e52-899cc66a5bc9-7,https://biolit.fr/observations/observation-115ade1a-97f7-435b-9e52-899cc66a5bc9-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0096.JPG,,FALSE, +N1,59859,sortie-115991d7-9767-48d0-abed-1e3cc0dbd981,https://biolit.fr/sorties/sortie-115991d7-9767-48d0-abed-1e3cc0dbd981/,Phil,,03/03/2018,12.0000000,12.0000000,47.863210000000,-4.065078000000,,Fouesnant - Finistère,44722,observation-115991d7-9767-48d0-abed-1e3cc0dbd981,https://biolit.fr/observations/observation-115991d7-9767-48d0-abed-1e3cc0dbd981/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100697.JPG,,FALSE, +N1,59860,sortie-d623aaa0-9e80-42c3-afb0-e073a86bb092,https://biolit.fr/sorties/sortie-d623aaa0-9e80-42c3-afb0-e073a86bb092/,Phil,,03/03/2018,12.0000000,12.0000000,47.863141000000,-4.065229000000,,Fouesnant - Finistère,44724,observation-d623aaa0-9e80-42c3-afb0-e073a86bb092,https://biolit.fr/observations/observation-d623aaa0-9e80-42c3-afb0-e073a86bb092/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100695.JPG,,FALSE, +N1,59861,sortie-b2135c8a-c695-4b03-b5e3-a97c19004008,https://biolit.fr/sorties/sortie-b2135c8a-c695-4b03-b5e3-a97c19004008/,Phil,,03/03/2018,12.0:25,12.0000000,47.863519000000,-4.06539400000,,Fouesnant - Finistère,44726,observation-b2135c8a-c695-4b03-b5e3-a97c19004008,https://biolit.fr/observations/observation-b2135c8a-c695-4b03-b5e3-a97c19004008/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100694.JPG,,FALSE, +N1,59862,sortie-b2f30d23-827e-4ae6-a64d-f042a3bc5d75,https://biolit.fr/sorties/sortie-b2f30d23-827e-4ae6-a64d-f042a3bc5d75/,Phil,,03/03/2018,12.0:25,12.0000000,47.863676000000,-4.064928000000,,Fouesnant - Finistère,44728,observation-b2f30d23-827e-4ae6-a64d-f042a3bc5d75,https://biolit.fr/observations/observation-b2f30d23-827e-4ae6-a64d-f042a3bc5d75/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100693.JPG,,FALSE, +N1,59863,sortie-203110e8-f09d-456f-893c-64919adb1284,https://biolit.fr/sorties/sortie-203110e8-f09d-456f-893c-64919adb1284/,Phil,,03/03/2018,12.0:25,12.0000000,47.863092000000,-4.06562800000,,Fouesnant - Finistère,44730,observation-203110e8-f09d-456f-893c-64919adb1284,https://biolit.fr/observations/observation-203110e8-f09d-456f-893c-64919adb1284/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100692.JPG,,FALSE, +N1,59864,sortie-67eb463d-543a-4c9f-bf65-72816bfbe8ed,https://biolit.fr/sorties/sortie-67eb463d-543a-4c9f-bf65-72816bfbe8ed/,Phil,,03/03/2018,12.0:25,12.0000000,47.863512000000,-4.065186000000,,Fouesnant - Finistère,44732,observation-67eb463d-543a-4c9f-bf65-72816bfbe8ed,https://biolit.fr/observations/observation-67eb463d-543a-4c9f-bf65-72816bfbe8ed/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100690.JPG,,FALSE, +N1,59865,sortie-c73a396c-8f06-438d-9b22-7b6d0b1e7488,https://biolit.fr/sorties/sortie-c73a396c-8f06-438d-9b22-7b6d0b1e7488/,Phil,,03/03/2018,12.0:25,12.0000000,47.863362000000,-4.065336000000,,Fouesnant - Finistère,44734,observation-c73a396c-8f06-438d-9b22-7b6d0b1e7488,https://biolit.fr/observations/observation-c73a396c-8f06-438d-9b22-7b6d0b1e7488/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100689.JPG,,FALSE, +N1,59866,sortie-ee818dcb-2316-4182-a73d-2c5f9f192bc4,https://biolit.fr/sorties/sortie-ee818dcb-2316-4182-a73d-2c5f9f192bc4/,Phil,,03/03/2018,12.0:25,12.0000000,47.863428000000,-4.065357000000,,Fouesnant - Finistère,44736,observation-ee818dcb-2316-4182-a73d-2c5f9f192bc4,https://biolit.fr/observations/observation-ee818dcb-2316-4182-a73d-2c5f9f192bc4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100688.JPG,,FALSE, +N1,59867,sortie-7abacb38-5cde-437b-85d9-440734cd5802,https://biolit.fr/sorties/sortie-7abacb38-5cde-437b-85d9-440734cd5802/,Phil,,03/03/2018,12.0:25,12.0000000,47.863529000000,-4.065443000000,,Fouesnant - Finistère,44738,observation-7abacb38-5cde-437b-85d9-440734cd5802,https://biolit.fr/observations/observation-7abacb38-5cde-437b-85d9-440734cd5802/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100687.JPG,,FALSE, +N1,59868,sortie-8de340af-f258-44ed-8af1-83ea473eeaf1,https://biolit.fr/sorties/sortie-8de340af-f258-44ed-8af1-83ea473eeaf1/,Phil,,03/03/2018,12.0:25,12.0000000,47.863480000000,-4.065315000000,,Fouesnant - Finistère,44740,observation-8de340af-f258-44ed-8af1-83ea473eeaf1,https://biolit.fr/observations/observation-8de340af-f258-44ed-8af1-83ea473eeaf1/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100686.JPG,,FALSE, +N1,59869,sortie-7a455a79-70c8-4139-b920-cf625201bf9d,https://biolit.fr/sorties/sortie-7a455a79-70c8-4139-b920-cf625201bf9d/,Phil,,03/03/2018,12.0:25,12.0:25,47.863097000000,-4.065379000000,,Fouesnant - Finistère,44742,observation-7a455a79-70c8-4139-b920-cf625201bf9d,https://biolit.fr/observations/observation-7a455a79-70c8-4139-b920-cf625201bf9d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100684.JPG,,FALSE, +N1,59870,sortie-2a3adb8d-9b70-4c03-92d7-138c66953d38,https://biolit.fr/sorties/sortie-2a3adb8d-9b70-4c03-92d7-138c66953d38/,Phil,,03/03/2018,12.0:25,12.0:25,47.862985000000,-4.065593000000,,Fouesnant - Finistère,44744,observation-2a3adb8d-9b70-4c03-92d7-138c66953d38,https://biolit.fr/observations/observation-2a3adb8d-9b70-4c03-92d7-138c66953d38/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100682.JPG,,FALSE, +N1,59871,sortie-b92d846d-8ddd-4b0c-aac8-5c84c046b5f1,https://biolit.fr/sorties/sortie-b92d846d-8ddd-4b0c-aac8-5c84c046b5f1/,Phil,,03/03/2018,12.0:25,12.0:25,47.862996000000,-4.065587000000,,Fouesnant - Finistère,44746,observation-b92d846d-8ddd-4b0c-aac8-5c84c046b5f1,https://biolit.fr/observations/observation-b92d846d-8ddd-4b0c-aac8-5c84c046b5f1/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100680.JPG,,FALSE, +N1,59872,sortie-a81cdf24-3e83-452c-bb7b-6ae4cfe147e7,https://biolit.fr/sorties/sortie-a81cdf24-3e83-452c-bb7b-6ae4cfe147e7/,Phil,,03/03/2018,12.0:25,12.0:25,47.862890000000,-4.065722000000,,Fouesnant - Finistère,44748,observation-a81cdf24-3e83-452c-bb7b-6ae4cfe147e7,https://biolit.fr/observations/observation-a81cdf24-3e83-452c-bb7b-6ae4cfe147e7/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1100678.JPG,,TRUE, +N1,59873,sortie-7b4da8ae-ee86-4294-a6f2-13da08c1f539,https://biolit.fr/sorties/sortie-7b4da8ae-ee86-4294-a6f2-13da08c1f539/,Phil,,03/03/2018,12.0:25,12.0:25,47.863518000000,-4.065529000000,,Fouesnant - Finistère,44750,observation-7b4da8ae-ee86-4294-a6f2-13da08c1f539,https://biolit.fr/observations/observation-7b4da8ae-ee86-4294-a6f2-13da08c1f539/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/P1100676.JPG,,TRUE, +N1,59874,sortie-cff00597-d971-4ee0-b351-d1e0b90b43f8,https://biolit.fr/sorties/sortie-cff00597-d971-4ee0-b351-d1e0b90b43f8/,Phil,,03/03/2018,12.0000000,12.0:25,47.863503000000,-4.065744000000,,Fouesnant - Finistère,44752,observation-cff00597-d971-4ee0-b351-d1e0b90b43f8,https://biolit.fr/observations/observation-cff00597-d971-4ee0-b351-d1e0b90b43f8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100675.JPG,,FALSE, +N1,59875,sortie-1c5f4024-bfbc-4a00-a819-a5e2d5f2662d,https://biolit.fr/sorties/sortie-1c5f4024-bfbc-4a00-a819-a5e2d5f2662d/,Phil,,03/03/2018,12.0000000,12.0000000,47.863186000000,-4.066185000000,,Fouesnant - Finistère,44754,observation-1c5f4024-bfbc-4a00-a819-a5e2d5f2662d,https://biolit.fr/observations/observation-1c5f4024-bfbc-4a00-a819-a5e2d5f2662d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100671.JPG,,FALSE, +N1,59876,sortie-ce067550-e946-4721-87d1-8939a9a2e7ce,https://biolit.fr/sorties/sortie-ce067550-e946-4721-87d1-8939a9a2e7ce/,Phil,,03/03/2018,12.0000000,12.0000000,47.863054000000,-4.065872000000,,Fouesnant - Finistère,44756,observation-ce067550-e946-4721-87d1-8939a9a2e7ce,https://biolit.fr/observations/observation-ce067550-e946-4721-87d1-8939a9a2e7ce/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100670.JPG,,FALSE, +N1,59877,sortie-c54563a9-28c1-42c3-87c0-768ee1bc563f,https://biolit.fr/sorties/sortie-c54563a9-28c1-42c3-87c0-768ee1bc563f/,Phil,,03/03/2018,12.0000000,12.0000000,47.863160000000,-4.066038000000,,Fouesnant - Finistère,44758,observation-c54563a9-28c1-42c3-87c0-768ee1bc563f,https://biolit.fr/observations/observation-c54563a9-28c1-42c3-87c0-768ee1bc563f/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100662.JPG,,FALSE, +N1,59878,sortie-6610db00-7702-46b8-a5ea-f75b449bd466,https://biolit.fr/sorties/sortie-6610db00-7702-46b8-a5ea-f75b449bd466/,Phil,,03/03/2018,12.0:15,12.0000000,47.86319800000,-4.066308000000,,Fouesnant - Finistère,44760,observation-6610db00-7702-46b8-a5ea-f75b449bd466,https://biolit.fr/observations/observation-6610db00-7702-46b8-a5ea-f75b449bd466/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100661.JPG,,FALSE, +N1,59879,sortie-e9cbacd4-0820-455f-b929-66b54345329b,https://biolit.fr/sorties/sortie-e9cbacd4-0820-455f-b929-66b54345329b/,Phil,,03/03/2018,12.0:15,12.0000000,47.863187000000,-4.066516000000,,Fouesnant - Finistère,44762,observation-e9cbacd4-0820-455f-b929-66b54345329b,https://biolit.fr/observations/observation-e9cbacd4-0820-455f-b929-66b54345329b/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100660.JPG,,FALSE, +N1,59880,sortie-eb54b8f0-1344-4d98-9d03-a222c738c19f,https://biolit.fr/sorties/sortie-eb54b8f0-1344-4d98-9d03-a222c738c19f/,Phil,,03/03/2018,12.0:15,12.0000000,47.863241000000,-4.066452000000,,Fouesnant - Finistère,44764,observation-eb54b8f0-1344-4d98-9d03-a222c738c19f,https://biolit.fr/observations/observation-eb54b8f0-1344-4d98-9d03-a222c738c19f/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100659.JPG,,FALSE, +N1,59881,sortie-a46309bc-1ec0-42e1-940b-061a6e045be3,https://biolit.fr/sorties/sortie-a46309bc-1ec0-42e1-940b-061a6e045be3/,Phil,,03/03/2018,12.0:15,12.0:15,47.862709000000,-4.066881000000,,Fouesnant - Finistère,44766,observation-a46309bc-1ec0-42e1-940b-061a6e045be3,https://biolit.fr/observations/observation-a46309bc-1ec0-42e1-940b-061a6e045be3/,Scrobicularia plana,Scrobiculaire,,https://biolit.fr/wp-content/uploads/2023/07/P1100674.JPG,,TRUE, +N1,59882,sortie-218383c5-6df4-4fa3-9fb1-04cca6531447,https://biolit.fr/sorties/sortie-218383c5-6df4-4fa3-9fb1-04cca6531447/,Phil,,03/03/2018,12.0:15,12.0:15,47.862830000000,-4.066752000000,,Fouesnant - Finistère,44768,observation-218383c5-6df4-4fa3-9fb1-04cca6531447,https://biolit.fr/observations/observation-218383c5-6df4-4fa3-9fb1-04cca6531447/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1100658.JPG,,TRUE, +N1,59883,sortie-fe87608c-5aa7-4399-9e5c-7f09a2f253d1,https://biolit.fr/sorties/sortie-fe87608c-5aa7-4399-9e5c-7f09a2f253d1/,Phil,,03/03/2018,12.0:15,13.0:15,47.862851000000,-4.066628000000,,Fouesnant - Finistère,44770,observation-fe87608c-5aa7-4399-9e5c-7f09a2f253d1,https://biolit.fr/observations/observation-fe87608c-5aa7-4399-9e5c-7f09a2f253d1/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100657.JPG,,FALSE, +N1,59884,sortie-74a4783d-e0ae-442c-9caa-9ebb7c09d0bd,https://biolit.fr/sorties/sortie-74a4783d-e0ae-442c-9caa-9ebb7c09d0bd/,Phil,,03/08/2018,18.0000000,18.0000000,48.175621000000,-4.291770000000,,Plomodiern - Finistère,44772,observation-74a4783d-e0ae-442c-9caa-9ebb7c09d0bd,https://biolit.fr/observations/observation-74a4783d-e0ae-442c-9caa-9ebb7c09d0bd/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/P1100795.JPG,,TRUE, +N1,59884,sortie-74a4783d-e0ae-442c-9caa-9ebb7c09d0bd,https://biolit.fr/sorties/sortie-74a4783d-e0ae-442c-9caa-9ebb7c09d0bd/,Phil,,03/08/2018,18.0000000,18.0000000,48.175621000000,-4.291770000000,,Plomodiern - Finistère,44774,observation-74a4783d-e0ae-442c-9caa-9ebb7c09d0bd-2,https://biolit.fr/observations/observation-74a4783d-e0ae-442c-9caa-9ebb7c09d0bd-2/,Laevicardium crassum,Bucarde de Norvège,,https://biolit.fr/wp-content/uploads/2023/07/P1100796.JPG,,TRUE, +N1,59885,sortie-a9da75e2-f263-4db2-9ca1-d0d02b08434e,https://biolit.fr/sorties/sortie-a9da75e2-f263-4db2-9ca1-d0d02b08434e/,Phil,,3/15/2018 0:00,16.0:25,16.0:25,47.836042000000,-4.167517000000,,Loctudy Finistère,44776,observation-a9da75e2-f263-4db2-9ca1-d0d02b08434e,https://biolit.fr/observations/observation-a9da75e2-f263-4db2-9ca1-d0d02b08434e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100833.JPG,,FALSE, +N1,59885,sortie-a9da75e2-f263-4db2-9ca1-d0d02b08434e,https://biolit.fr/sorties/sortie-a9da75e2-f263-4db2-9ca1-d0d02b08434e/,Phil,,3/15/2018 0:00,16.0:25,16.0:25,47.836042000000,-4.167517000000,,Loctudy Finistère,44778,observation-a9da75e2-f263-4db2-9ca1-d0d02b08434e-2,https://biolit.fr/observations/observation-a9da75e2-f263-4db2-9ca1-d0d02b08434e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100834.JPG,,FALSE, +N1,59886,sortie-ca3bcc15-b97a-432c-aa37-c883e5367052,https://biolit.fr/sorties/sortie-ca3bcc15-b97a-432c-aa37-c883e5367052/,symon et joshua,,3/25/2018 0:00,14.0000000,14.0:15,43.070523000000,5.793818000000,,six fours 83,44780,observation-ca3bcc15-b97a-432c-aa37-c883e5367052,https://biolit.fr/observations/observation-ca3bcc15-b97a-432c-aa37-c883e5367052/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180325_121614-scaled.jpg,,TRUE, +N1,59886,sortie-ca3bcc15-b97a-432c-aa37-c883e5367052,https://biolit.fr/sorties/sortie-ca3bcc15-b97a-432c-aa37-c883e5367052/,symon et joshua,,3/25/2018 0:00,14.0000000,14.0:15,43.070523000000,5.793818000000,,six fours 83,44782,observation-ca3bcc15-b97a-432c-aa37-c883e5367052-2,https://biolit.fr/observations/observation-ca3bcc15-b97a-432c-aa37-c883e5367052-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180325_121628-scaled.jpg,,FALSE, +N1,59887,sortie-3aea5f44-f44e-4cbb-9058-b22ea4cfd119,https://biolit.fr/sorties/sortie-3aea5f44-f44e-4cbb-9058-b22ea4cfd119/,symon et joshua,,3/25/2018 0:00,11.0000000,12.0000000,43.070523000000,5.793818000000,,six fours 83,44784,observation-3aea5f44-f44e-4cbb-9058-b22ea4cfd119,https://biolit.fr/observations/observation-3aea5f44-f44e-4cbb-9058-b22ea4cfd119/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180325_121614-scaled.jpg,,TRUE, +N1,59887,sortie-3aea5f44-f44e-4cbb-9058-b22ea4cfd119,https://biolit.fr/sorties/sortie-3aea5f44-f44e-4cbb-9058-b22ea4cfd119/,symon et joshua,,3/25/2018 0:00,11.0000000,12.0000000,43.070523000000,5.793818000000,,six fours 83,44785,observation-3aea5f44-f44e-4cbb-9058-b22ea4cfd119-2,https://biolit.fr/observations/observation-3aea5f44-f44e-4cbb-9058-b22ea4cfd119-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180325_121628-scaled.jpg,,FALSE, +N1,59888,sortie-30f33b15-2234-4648-9c77-778f53a99170,https://biolit.fr/sorties/sortie-30f33b15-2234-4648-9c77-778f53a99170/,cigale33,,3/23/2018 0:00,21.0000000,23.0000000,43.374051000000,-1.783155000000,,Hendaye,44786,observation-30f33b15-2234-4648-9c77-778f53a99170,https://biolit.fr/observations/observation-30f33b15-2234-4648-9c77-778f53a99170/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_0763-scaled.jpg,,FALSE, +N1,59889,sortie-2cc1050e-9b07-4ac8-82f6-19af3dfe9133,https://biolit.fr/sorties/sortie-2cc1050e-9b07-4ac8-82f6-19af3dfe9133/,cm1 cm2 Louis Marin,,12/19/2017 0:00,9.0000000,11.0000000,43.166275000000,5.605887000000,,Plage du grand Mugel,44788,observation-2cc1050e-9b07-4ac8-82f6-19af3dfe9133,https://biolit.fr/observations/observation-2cc1050e-9b07-4ac8-82f6-19af3dfe9133/,,,,https://biolit.fr/wp-content/uploads/2023/07/15 Etoile de mer.jpg,,FALSE, +N1,59890,sortie-9a2677ce-88e2-4f51-badc-0dee967a0255,https://biolit.fr/sorties/sortie-9a2677ce-88e2-4f51-badc-0dee967a0255/,cm1 cm2 Louis Marin,,12/19/2017 0:00,9.0000000,11.0000000,43.1661380000,5.605867000000,,Plage du grand Mugel,44790,observation-9a2677ce-88e2-4f51-badc-0dee967a0255,https://biolit.fr/observations/observation-9a2677ce-88e2-4f51-badc-0dee967a0255/,Maja crispata,Petite araignée de mer,,https://biolit.fr/wp-content/uploads/2023/07/8 Maja Crispata ARAIGNEE DE MER (CARAPACE).jpg,,TRUE, +N1,59891,sortie-417207d6-049c-4f34-bad2-9b42a5c43fb0,https://biolit.fr/sorties/sortie-417207d6-049c-4f34-bad2-9b42a5c43fb0/,cm1 cm2 Louis Marin,,12/19/2017 0:00,9.0000000,11.0000000,43.166256000000,5.605881000000,,Plage du grand Mugel,44792,observation-417207d6-049c-4f34-bad2-9b42a5c43fb0,https://biolit.fr/observations/observation-417207d6-049c-4f34-bad2-9b42a5c43fb0/,,,,https://biolit.fr/wp-content/uploads/2023/07/13 Racines de posidonie-1547.jpg,,FALSE, +N1,59892,sortie-bcf6e718-ec78-489e-8ce6-872c952dd855,https://biolit.fr/sorties/sortie-bcf6e718-ec78-489e-8ce6-872c952dd855/,cm1 cm2 Louis Marin,,12/19/2017 0:00,9.0000000,11.0000000,43.164970000000,5.606016000000,,Plage Du grand Mugel,44794,observation-bcf6e718-ec78-489e-8ce6-872c952dd855,https://biolit.fr/observations/observation-bcf6e718-ec78-489e-8ce6-872c952dd855/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/12 sphaerococcus coronopifolius SPHEROCOQUE-3226.jpg,,TRUE, +N1,59893,sortie-cfb13659-87fc-455c-8785-2e8d886094e4,https://biolit.fr/sorties/sortie-cfb13659-87fc-455c-8785-2e8d886094e4/,cm1 cm2 Louis Marin,,3/19/2017 0:00,9.0000000,11.0000000,43.166452000000,5.606067000000,,Plage du grand Mugel,44796,observation-cfb13659-87fc-455c-8785-2e8d886094e4,https://biolit.fr/observations/observation-cfb13659-87fc-455c-8785-2e8d886094e4/,,,,https://biolit.fr/wp-content/uploads/2023/07/11 pelotes de posidonie.jpg,,FALSE, +N1,59894,sortie-03609f0a-f1b8-41f9-9f5e-32c105f4724c,https://biolit.fr/sorties/sortie-03609f0a-f1b8-41f9-9f5e-32c105f4724c/,cm1 cm2 Louis Marin,,12/19/2017 0:00,9.0000000,11.0000000,43.166460000000,5.605994000000,,Plage du grand Mugel,44798,observation-03609f0a-f1b8-41f9-9f5e-32c105f4724c,https://biolit.fr/observations/observation-03609f0a-f1b8-41f9-9f5e-32c105f4724c/,,,,https://biolit.fr/wp-content/uploads/2023/07/10 Eponge-5475.jpg,,FALSE, +N1,59895,sortie-3f9066e3-2f19-411b-9e50-b18204204bae,https://biolit.fr/sorties/sortie-3f9066e3-2f19-411b-9e50-b18204204bae/,cm1 cm2 Louis Marin,,12/19/2017 0:00,9.0000000,11.0000000,43.16625300000,5.605886000000,,Plage du grand Mugel,44800,observation-3f9066e3-2f19-411b-9e50-b18204204bae,https://biolit.fr/observations/observation-3f9066e3-2f19-411b-9e50-b18204204bae/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/9 gibbules-7274.jpg,,TRUE, +N1,59896,sortie-19e7af2c-cb5a-40b6-a489-0f6c1d786ce4,https://biolit.fr/sorties/sortie-19e7af2c-cb5a-40b6-a489-0f6c1d786ce4/,cm1 cm2 Louis Marin,,12/19/2017 0:00,9.0000000,11.0000000,43.166233000000,5.605888000000,,plage du grand mugel,44802,observation-19e7af2c-cb5a-40b6-a489-0f6c1d786ce4,https://biolit.fr/observations/observation-19e7af2c-cb5a-40b6-a489-0f6c1d786ce4/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/8 columbella rustica COLUMBELLE RUSTIQUE-7155.jpg,,TRUE, +N1,59897,sortie-c4dd6db2-1afb-48ca-8de9-6b2d9e4ce12f,https://biolit.fr/sorties/sortie-c4dd6db2-1afb-48ca-8de9-6b2d9e4ce12f/,cm1 cm2 Louis Marin,,12/19/2017 0:00,9.0000000,11.0000000,43.166217000000,5.605800000000,,Plage du grand Mugel,44804,observation-c4dd6db2-1afb-48ca-8de9-6b2d9e4ce12f,https://biolit.fr/observations/observation-c4dd6db2-1afb-48ca-8de9-6b2d9e4ce12f/,Vermetus triquetrus,Petit vermet,,https://biolit.fr/wp-content/uploads/2023/07/7 Monia ANOMIE PELURE D'OIGNON.jpg,,TRUE, +N1,59898,sortie-2abf7627-a382-461c-8dfe-5edda52539a1,https://biolit.fr/sorties/sortie-2abf7627-a382-461c-8dfe-5edda52539a1/,cm1 cm2 Louis Marin,,12/19/2017 0:00,9.0000000,11.0000000,43.166309000000,5.605927000000,,plage du grand mugel,44806,observation-2abf7627-a382-461c-8dfe-5edda52539a1,https://biolit.fr/observations/observation-2abf7627-a382-461c-8dfe-5edda52539a1/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/5 Patella Vulgata PATELLE COMMUNE-6060.jpg,,TRUE, +N1,59899,sortie-fb4ca079-d82c-40ba-86c3-307ad921bd41,https://biolit.fr/sorties/sortie-fb4ca079-d82c-40ba-86c3-307ad921bd41/,cm1 cm2 Louis Marin,,12/19/2017 0:00,9.0000000,11.0000000,43.166318000000,5.606351000000,,Plage du grand Mugel,44808,observation-fb4ca079-d82c-40ba-86c3-307ad921bd41,https://biolit.fr/observations/observation-fb4ca079-d82c-40ba-86c3-307ad921bd41/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/2023/07/4 Haliotis ORMEAU-2364.jpg,,TRUE, +N1,59900,sortie-0b548f1e-228e-44a2-8a84-44349bdd802d,https://biolit.fr/sorties/sortie-0b548f1e-228e-44a2-8a84-44349bdd802d/,cm1 cm2 Louis Marin,,12/19/2017 0:00,9.0000000,11.0000000,43.16630900000,5.605911000000,,plage du grand mugel,44810,observation-0b548f1e-228e-44a2-8a84-44349bdd802d,https://biolit.fr/observations/observation-0b548f1e-228e-44a2-8a84-44349bdd802d/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/2 Arca noae ARCHE DE NOE-8084.jpg,,TRUE, +N1,59901,sortie-51e58033-39ce-4186-89af-8e674e1f7db3,https://biolit.fr/sorties/sortie-51e58033-39ce-4186-89af-8e674e1f7db3/,cm1 cm2 Louis Marin,,12/19/2017 0:00,9.0000000,11.0000000,43.166269000000,5.60587500000,,Plage du grand Mugel,44812,observation-51e58033-39ce-4186-89af-8e674e1f7db3,https://biolit.fr/observations/observation-51e58033-39ce-4186-89af-8e674e1f7db3/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/3 Cerithium vulgatum CERITHE-9098.jpg,,TRUE, +N1,59902,sortie-9326a021-7b17-476e-85fe-d781aa87ba9c,https://biolit.fr/sorties/sortie-9326a021-7b17-476e-85fe-d781aa87ba9c/,cm1 cm2 Louis Marin,,12/19/2017 0:00,9.0000000,11.0000000,43.166268000000,5.605867000000,,Plage du grand Mugel,44814,observation-9326a021-7b17-476e-85fe-d781aa87ba9c,https://biolit.fr/observations/observation-9326a021-7b17-476e-85fe-d781aa87ba9c/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/6 codium bursa BERET BASQUE-7939.jpg,,TRUE, +N1,59903,sortie-d38bb6bc-6f3d-4e34-991b-52adfd8aa812,https://biolit.fr/sorties/sortie-d38bb6bc-6f3d-4e34-991b-52adfd8aa812/,Phil,,3/15/2018 0:00,16.0:25,16.0:25,47.835995000000,-4.167732000000,,Loctudy - Finistère,44816,observation-d38bb6bc-6f3d-4e34-991b-52adfd8aa812,https://biolit.fr/observations/observation-d38bb6bc-6f3d-4e34-991b-52adfd8aa812/,Electra pilosa,Ecorce pileuse,,https://biolit.fr/wp-content/uploads/2023/07/P1100830.JPG,,TRUE, +N1,59904,sortie-7835d3b1-c1f9-4dfe-81d1-0123ae541339,https://biolit.fr/sorties/sortie-7835d3b1-c1f9-4dfe-81d1-0123ae541339/,Phil,,03/03/2018,12.0:25,12.0:25,47.862942000000,-4.066486000000,,Fouesnant - Finistère,44818,observation-7835d3b1-c1f9-4dfe-81d1-0123ae541339,https://biolit.fr/observations/observation-7835d3b1-c1f9-4dfe-81d1-0123ae541339/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1100663.JPG,,TRUE, +N1,59905,sortie-1101e8fd-2443-467f-8ec4-d2e9cfb20492,https://biolit.fr/sorties/sortie-1101e8fd-2443-467f-8ec4-d2e9cfb20492/,Phil,,03/08/2018,18.0:35,18.0:45,48.174768000000,-4.292873000000,,Plomodiern - Finistère,44820,observation-1101e8fd-2443-467f-8ec4-d2e9cfb20492,https://biolit.fr/observations/observation-1101e8fd-2443-467f-8ec4-d2e9cfb20492/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/P1100768.JPG,,TRUE, +N1,59906,sortie-ddad082c-fd96-4619-9054-59a26313d9dc,https://biolit.fr/sorties/sortie-ddad082c-fd96-4619-9054-59a26313d9dc/,Phil,,03/08/2018,18.0:35,18.0:45,48.17491100000,-4.293216000000,,Plomodiern - Finistère,44822,observation-ddad082c-fd96-4619-9054-59a26313d9dc,https://biolit.fr/observations/observation-ddad082c-fd96-4619-9054-59a26313d9dc/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/P1100776.JPG,,TRUE, +N1,59907,sortie-dd9cf161-8784-4670-b2b3-5577384bcedb,https://biolit.fr/sorties/sortie-dd9cf161-8784-4670-b2b3-5577384bcedb/,Phil,,03/08/2018,18.0:35,18.0:45,48.175174000000,-4.293088000000,,Plomodiern - Finistère,44824,observation-dd9cf161-8784-4670-b2b3-5577384bcedb,https://biolit.fr/observations/observation-dd9cf161-8784-4670-b2b3-5577384bcedb/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/P1100784.JPG,,TRUE, +N1,59908,sortie-e78efa8a-7779-4f60-94b6-124055648951,https://biolit.fr/sorties/sortie-e78efa8a-7779-4f60-94b6-124055648951/,Phil,,03/08/2018,18.0:35,18.0:45,48.174803000000,-4.293680000000,,Plomodiern - Finistère,44826,observation-e78efa8a-7779-4f60-94b6-124055648951,https://biolit.fr/observations/observation-e78efa8a-7779-4f60-94b6-124055648951/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/P1100791.JPG,,TRUE, +N1,59909,sortie-8bfa9be3-4b1a-480c-99f2-4d2b5f157733,https://biolit.fr/sorties/sortie-8bfa9be3-4b1a-480c-99f2-4d2b5f157733/,Phil,,3/15/2018 0:00,16.0000000,16.0000000,47.835809000000,-4.168058000000,,Loctudy - Finistère,44828,observation-8bfa9be3-4b1a-480c-99f2-4d2b5f157733,https://biolit.fr/observations/observation-8bfa9be3-4b1a-480c-99f2-4d2b5f157733/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100827_0.JPG,,FALSE, +N1,59910,sortie-d76fc3da-5613-491b-9a2b-6365f1789e45,https://biolit.fr/sorties/sortie-d76fc3da-5613-491b-9a2b-6365f1789e45/,école Application Frédéric Mistral,,3/14/2018 0:00,14.0000000,15.0000000,43.118081000000,5.803125000000,,plage de la Gorguette,44830,observation-d76fc3da-5613-491b-9a2b-6365f1789e45,https://biolit.fr/observations/observation-d76fc3da-5613-491b-9a2b-6365f1789e45/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1613-scaled.jpg,,TRUE, +N1,59911,sortie-7171e5e1-16be-4809-8423-15c94aaca667,https://biolit.fr/sorties/sortie-7171e5e1-16be-4809-8423-15c94aaca667/,école Application Frédéric Mistral,,3/14/2018 0:00,14.0000000,14.0000000,43.115231000000,5.798361000000,,plage de gorguette,44832,observation-7171e5e1-16be-4809-8423-15c94aaca667,https://biolit.fr/observations/observation-7171e5e1-16be-4809-8423-15c94aaca667/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1663-scaled.jpg,,TRUE, +N1,59912,sortie-11e07bf7-578d-40b7-9a07-d138d1ad5dde,https://biolit.fr/sorties/sortie-11e07bf7-578d-40b7-9a07-d138d1ad5dde/,école Application Frédéric Mistral,,3/14/2018 0:00,14.0000000,14.0000000,43.121796000000,5.803809000000,,plage de la Gorguette,44834,observation-11e07bf7-578d-40b7-9a07-d138d1ad5dde,https://biolit.fr/observations/observation-11e07bf7-578d-40b7-9a07-d138d1ad5dde/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1603-scaled.jpg,,FALSE, +N1,59913,sortie-f070eb11-dbbd-4265-bbe7-47c91daac1c5,https://biolit.fr/sorties/sortie-f070eb11-dbbd-4265-bbe7-47c91daac1c5/,Arsène VASSAL,,3/18/2018 0:00,9.0000000,11.0000000,48.559240000000,-2.733038000000,,"Martin-Plage, PLERIN",44836,observation-f070eb11-dbbd-4265-bbe7-47c91daac1c5,https://biolit.fr/observations/observation-f070eb11-dbbd-4265-bbe7-47c91daac1c5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Chrysomèle russe (chrysolina rossia gypsophile) (1).jpg,,FALSE, +N1,59913,sortie-f070eb11-dbbd-4265-bbe7-47c91daac1c5,https://biolit.fr/sorties/sortie-f070eb11-dbbd-4265-bbe7-47c91daac1c5/,Arsène VASSAL,,3/18/2018 0:00,9.0000000,11.0000000,48.559240000000,-2.733038000000,,"Martin-Plage, PLERIN",44838,observation-f070eb11-dbbd-4265-bbe7-47c91daac1c5-2,https://biolit.fr/observations/observation-f070eb11-dbbd-4265-bbe7-47c91daac1c5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Chrysomèle russe (chrysolina rossia gypsophile) (3).jpg,,FALSE, +N1,59914,sortie-07c41d6c-87c4-4f69-8030-c8946b2cc543,https://biolit.fr/sorties/sortie-07c41d6c-87c4-4f69-8030-c8946b2cc543/,Phil,,2/26/2018 0:00,12.000005,12.0000000,48.112165000000,-4.284367000000,,Plonevez-Porzay - Finistère,44840,observation-07c41d6c-87c4-4f69-8030-c8946b2cc543,https://biolit.fr/observations/observation-07c41d6c-87c4-4f69-8030-c8946b2cc543/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100532.JPG,,FALSE, +N1,59914,sortie-07c41d6c-87c4-4f69-8030-c8946b2cc543,https://biolit.fr/sorties/sortie-07c41d6c-87c4-4f69-8030-c8946b2cc543/,Phil,,2/26/2018 0:00,12.000005,12.0000000,48.112165000000,-4.284367000000,,Plonevez-Porzay - Finistère,44842,observation-07c41d6c-87c4-4f69-8030-c8946b2cc543-2,https://biolit.fr/observations/observation-07c41d6c-87c4-4f69-8030-c8946b2cc543-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100531.JPG,,FALSE, +N1,59915,sortie-dfc9757b-e64f-4d0c-b6e6-888272976d04,https://biolit.fr/sorties/sortie-dfc9757b-e64f-4d0c-b6e6-888272976d04/,Phil,,2/26/2018 0:00,12.000005,12.0000000,48.112259000000,-4.284453000000,,Plonevez-Porzay - Finistère,44844,observation-dfc9757b-e64f-4d0c-b6e6-888272976d04,https://biolit.fr/observations/observation-dfc9757b-e64f-4d0c-b6e6-888272976d04/,Macomangulus tenuis,Telline-papillon,,https://biolit.fr/wp-content/uploads/2023/07/P1100533.JPG,,TRUE, +N1,59915,sortie-dfc9757b-e64f-4d0c-b6e6-888272976d04,https://biolit.fr/sorties/sortie-dfc9757b-e64f-4d0c-b6e6-888272976d04/,Phil,,2/26/2018 0:00,12.000005,12.0000000,48.112259000000,-4.284453000000,,Plonevez-Porzay - Finistère,44846,observation-dfc9757b-e64f-4d0c-b6e6-888272976d04-2,https://biolit.fr/observations/observation-dfc9757b-e64f-4d0c-b6e6-888272976d04-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100535.JPG,,FALSE, +N1,59916,sortie-aeac9b0f-ebd0-41c6-88ab-294c68013349,https://biolit.fr/sorties/sortie-aeac9b0f-ebd0-41c6-88ab-294c68013349/,Phil,,3/15/2018 0:00,16.0:25,16.0:25,47.835949000000,-4.168015000000,,Loctudy - Finistère,44848,observation-aeac9b0f-ebd0-41c6-88ab-294c68013349,https://biolit.fr/observations/observation-aeac9b0f-ebd0-41c6-88ab-294c68013349/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/P1100826_0.JPG,,TRUE, +N1,59917,sortie-6b5b532a-0a2d-43ad-8f31-845435278c0a,https://biolit.fr/sorties/sortie-6b5b532a-0a2d-43ad-8f31-845435278c0a/,Phil,,3/15/2018 0:00,16.0000000,16.0000000,47.835836000000,-4.168161000000,,Loctudy - Finistère,44850,observation-6b5b532a-0a2d-43ad-8f31-845435278c0a,https://biolit.fr/observations/observation-6b5b532a-0a2d-43ad-8f31-845435278c0a/,Laevicardium crassum,Bucarde de Norvège,,https://biolit.fr/wp-content/uploads/2023/07/P1100823.JPG,,TRUE, +N1,59917,sortie-6b5b532a-0a2d-43ad-8f31-845435278c0a,https://biolit.fr/sorties/sortie-6b5b532a-0a2d-43ad-8f31-845435278c0a/,Phil,,3/15/2018 0:00,16.0000000,16.0000000,47.835836000000,-4.168161000000,,Loctudy - Finistère,44852,observation-6b5b532a-0a2d-43ad-8f31-845435278c0a-2,https://biolit.fr/observations/observation-6b5b532a-0a2d-43ad-8f31-845435278c0a-2/,Laevicardium crassum,Bucarde de Norvège,,https://biolit.fr/wp-content/uploads/2023/07/P1100824.JPG,,TRUE, +N1,59918,sortie-e7d71c08-c3d3-4af7-bbc4-53dfe0e37b5b,https://biolit.fr/sorties/sortie-e7d71c08-c3d3-4af7-bbc4-53dfe0e37b5b/,Phil,,2/26/2018 0:00,12.0000000,12.0:15,48.112707000000,-4.28392500000,,Plonévez-Porzay - Finistère,44854,observation-e7d71c08-c3d3-4af7-bbc4-53dfe0e37b5b,https://biolit.fr/observations/observation-e7d71c08-c3d3-4af7-bbc4-53dfe0e37b5b/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1100539.JPG,,TRUE, +N1,59918,sortie-e7d71c08-c3d3-4af7-bbc4-53dfe0e37b5b,https://biolit.fr/sorties/sortie-e7d71c08-c3d3-4af7-bbc4-53dfe0e37b5b/,Phil,,2/26/2018 0:00,12.0000000,12.0:15,48.112707000000,-4.28392500000,,Plonévez-Porzay - Finistère,44856,observation-e7d71c08-c3d3-4af7-bbc4-53dfe0e37b5b-2,https://biolit.fr/observations/observation-e7d71c08-c3d3-4af7-bbc4-53dfe0e37b5b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100542.JPG,,FALSE, +N1,59919,sortie-54e25bca-7ff4-4e23-a536-c9588a72d07a,https://biolit.fr/sorties/sortie-54e25bca-7ff4-4e23-a536-c9588a72d07a/,Phil,,03/08/2018,18.0000000,18.0:35,48.173087000000,-4.292332000000,,Plomodiern - Finistère,44858,observation-54e25bca-7ff4-4e23-a536-c9588a72d07a,https://biolit.fr/observations/observation-54e25bca-7ff4-4e23-a536-c9588a72d07a/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/P1100766.JPG,,TRUE, +N1,59919,sortie-54e25bca-7ff4-4e23-a536-c9588a72d07a,https://biolit.fr/sorties/sortie-54e25bca-7ff4-4e23-a536-c9588a72d07a/,Phil,,03/08/2018,18.0000000,18.0:35,48.173087000000,-4.292332000000,,Plomodiern - Finistère,44860,observation-54e25bca-7ff4-4e23-a536-c9588a72d07a-2,https://biolit.fr/observations/observation-54e25bca-7ff4-4e23-a536-c9588a72d07a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100763.JPG,,FALSE, +N1,59920,sortie-4e50b7b5-e11f-4f03-bd98-8308c15d4789,https://biolit.fr/sorties/sortie-4e50b7b5-e11f-4f03-bd98-8308c15d4789/,Phil,,03/03/2018,12.0000000,12.0:15,47.863073000000,-4.066259000000,,Fouesnant - Finistère,44862,observation-4e50b7b5-e11f-4f03-bd98-8308c15d4789,https://biolit.fr/observations/observation-4e50b7b5-e11f-4f03-bd98-8308c15d4789/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1100653.JPG,,TRUE, +N1,59920,sortie-4e50b7b5-e11f-4f03-bd98-8308c15d4789,https://biolit.fr/sorties/sortie-4e50b7b5-e11f-4f03-bd98-8308c15d4789/,Phil,,03/03/2018,12.0000000,12.0:15,47.863073000000,-4.066259000000,,Fouesnant - Finistère,44864,observation-4e50b7b5-e11f-4f03-bd98-8308c15d4789-2,https://biolit.fr/observations/observation-4e50b7b5-e11f-4f03-bd98-8308c15d4789-2/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1100655.JPG,,TRUE, +N1,59922,sortie-34dba6ce-5720-4260-aa3a-dabe9c3b9860,https://biolit.fr/sorties/sortie-34dba6ce-5720-4260-aa3a-dabe9c3b9860/,CM1 la Garde,,12/19/2017 0:00,14.0000000,16.0000000,43.16494100000,5.605966000000,,Plage du petit Mugel,44868,observation-34dba6ce-5720-4260-aa3a-dabe9c3b9860,https://biolit.fr/observations/observation-34dba6ce-5720-4260-aa3a-dabe9c3b9860/,,,,https://biolit.fr/wp-content/uploads/2023/07/11 pelotes de posidonie.jpg,,FALSE, +N1,59923,sortie-18952c90-2a49-4fa5-99e6-002b460c5b9e,https://biolit.fr/sorties/sortie-18952c90-2a49-4fa5-99e6-002b460c5b9e/,CM1 la Garde,,12/19/2017 0:00,14.0000000,16.0000000,43.164918000000,5.606023000000,,Plage du petit Mugel,44869,observation-18952c90-2a49-4fa5-99e6-002b460c5b9e,https://biolit.fr/observations/observation-18952c90-2a49-4fa5-99e6-002b460c5b9e/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/10 Venus verrucosa PRAIRE COMMUNE-rotated.jpg,,TRUE, +N1,59924,sortie-e189b5ac-543b-49fa-8d76-8a7084843e13,https://biolit.fr/sorties/sortie-e189b5ac-543b-49fa-8d76-8a7084843e13/,CM1 la Garde,,12/19/2017 0:00,14.0000000,16.0000000,43.164938000000,5.606076000000,,La plage du petit mugel,44871,observation-e189b5ac-543b-49fa-8d76-8a7084843e13,https://biolit.fr/observations/observation-e189b5ac-543b-49fa-8d76-8a7084843e13/,,,,https://biolit.fr/wp-content/uploads/2023/07/9 Paracentrotus lividus OURSIN VIOLET.jpg,,FALSE, +N1,59925,sortie-adbb98f8-6cb0-4563-bf50-fdba318f3dac,https://biolit.fr/sorties/sortie-adbb98f8-6cb0-4563-bf50-fdba318f3dac/,CM1 la Garde,,12/19/2017 0:00,14.0000000,16.0000000,43.164924000000,5.606152000000,,Plage du petit Mugel,44873,observation-adbb98f8-6cb0-4563-bf50-fdba318f3dac,https://biolit.fr/observations/observation-adbb98f8-6cb0-4563-bf50-fdba318f3dac/,,,,https://biolit.fr/wp-content/uploads/2023/07/13 Algue rouge.jpg,,FALSE, +N1,59926,sortie-0b9db4f0-7835-4ba5-8e14-fd71c281f28c,https://biolit.fr/sorties/sortie-0b9db4f0-7835-4ba5-8e14-fd71c281f28c/,CM1 la Garde,,12/19/2017 0:00,14.0000000,16.0000000,43.164899000000,5.606019000000,,plage du petit Mugel,44875,observation-0b9db4f0-7835-4ba5-8e14-fd71c281f28c,https://biolit.fr/observations/observation-0b9db4f0-7835-4ba5-8e14-fd71c281f28c/,,,,https://biolit.fr/wp-content/uploads/2023/07/12 holothurie CONCOMBRE DE MER-rotated.jpg,,FALSE, +N1,59927,sortie-46b13f89-84be-47f3-8671-9d50a0b85905,https://biolit.fr/sorties/sortie-46b13f89-84be-47f3-8671-9d50a0b85905/,CM1 la Garde,,12/19/2017 0:00,14.0000000,16.0000000,43.164923000000,5.606064000000,,Plage du petit Mugel,44877,observation-46b13f89-84be-47f3-8671-9d50a0b85905,https://biolit.fr/observations/observation-46b13f89-84be-47f3-8671-9d50a0b85905/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/6 Paracentrotus lividus OURSIN VIOLET_0.jpg,,TRUE, +N1,59931,sortie-42ddf13f-3641-448b-ac17-e447f9ed776a,https://biolit.fr/sorties/sortie-42ddf13f-3641-448b-ac17-e447f9ed776a/,CM1 la Garde,,12/19/2017 0:00,14.0000000,16.0000000,43.118871000000,5.605972000000,,Plage du petit Mugel,44885,observation-42ddf13f-3641-448b-ac17-e447f9ed776a,https://biolit.fr/observations/observation-42ddf13f-3641-448b-ac17-e447f9ed776a/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/1 Codium bursa BERET BASQUE-rotated.jpg,,TRUE, +N1,59932,sortie-cbfd24ca-e2d1-4cac-8e8d-d2d17706d08a,https://biolit.fr/sorties/sortie-cbfd24ca-e2d1-4cac-8e8d-d2d17706d08a/,CM1 la Garde,,12/19/2017 0:00,14.0000000,16.0000000,43.164924000000,5.606036000000,,Plage du petit Mugel,44887,observation-cbfd24ca-e2d1-4cac-8e8d-d2d17706d08a,https://biolit.fr/observations/observation-cbfd24ca-e2d1-4cac-8e8d-d2d17706d08a/,,,,https://biolit.fr/wp-content/uploads/2023/07/5 Jania rubens JANIE ROUGE-rotated.jpg,,FALSE, +N1,59933,sortie-c30fe361-ffb3-489f-8ddb-58f04ba08dd7,https://biolit.fr/sorties/sortie-c30fe361-ffb3-489f-8ddb-58f04ba08dd7/,CM1 la Garde,,12/19/2017 0:00,14.0000000,16.0000000,43.164924000000,5.606036000000,,Plage du petit Mugel,44889,observation-c30fe361-ffb3-489f-8ddb-58f04ba08dd7,https://biolit.fr/observations/observation-c30fe361-ffb3-489f-8ddb-58f04ba08dd7/,,,,https://biolit.fr/wp-content/uploads/2023/07/5 Jania rubens JANIE ROUGE-rotated.jpg,,FALSE, +N1,59934,sortie-9971ad66-865f-48c8-96e3-f835a2ecb991,https://biolit.fr/sorties/sortie-9971ad66-865f-48c8-96e3-f835a2ecb991/,CM1 la Garde,,12/19/2017 0:00,14.0000000,16.0000000,43.164949000000,5.6060150000,,Plage du petit Mugel,44890,observation-9971ad66-865f-48c8-96e3-f835a2ecb991,https://biolit.fr/observations/observation-9971ad66-865f-48c8-96e3-f835a2ecb991/,,,,https://biolit.fr/wp-content/uploads/2023/07/4 Holothurie CONCOMBRE DE MER-rotated.jpg,,FALSE, +N1,59935,sortie-d0d9f502-0a80-4fd1-859a-137c59bd1a08,https://biolit.fr/sorties/sortie-d0d9f502-0a80-4fd1-859a-137c59bd1a08/,CM1 la Garde,,12/19/2017 0:00,14.0000000,16.0000000,43.118871000000,5.605972000000,,Plage du petit Mugel,44892,observation-d0d9f502-0a80-4fd1-859a-137c59bd1a08,https://biolit.fr/observations/observation-d0d9f502-0a80-4fd1-859a-137c59bd1a08/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/1 Codium bursa BERET BASQUE-rotated.jpg,,TRUE, +N1,59936,sortie-23c7654a-45cf-4a7e-a56c-b5f0074e100e,https://biolit.fr/sorties/sortie-23c7654a-45cf-4a7e-a56c-b5f0074e100e/,CM1 la Garde,,12/19/2017 0:00,14.0000000,16.0000000,43.164908000000,5.60610100000,,plage du petit Mugel,44893,observation-23c7654a-45cf-4a7e-a56c-b5f0074e100e,https://biolit.fr/observations/observation-23c7654a-45cf-4a7e-a56c-b5f0074e100e/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/3 arca noae ARCHE DE NOE.jpg,,TRUE, +N1,59937,sortie-13869615-37b4-4e82-8715-e8ba4223a26a,https://biolit.fr/sorties/sortie-13869615-37b4-4e82-8715-e8ba4223a26a/,CM1 la Garde,,12/19/2017 0:00,14.0000000,16.0000000,43.165027000000,5.605961000000,,Plage du petit Mugel,44895,observation-13869615-37b4-4e82-8715-e8ba4223a26a,https://biolit.fr/observations/observation-13869615-37b4-4e82-8715-e8ba4223a26a/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/7 patella vulgata PATELLES COMMUNES.jpg,,TRUE, +N1,59938,sortie-d53528ee-4de7-416d-bcd2-30fbe3bbfd14,https://biolit.fr/sorties/sortie-d53528ee-4de7-416d-bcd2-30fbe3bbfd14/,CM1 la Garde,,12/19/2017 0:00,14.0000000,16.0000000,43.164931000000,5.606026000000,,plage du petit mugel,44897,observation-d53528ee-4de7-416d-bcd2-30fbe3bbfd14,https://biolit.fr/observations/observation-d53528ee-4de7-416d-bcd2-30fbe3bbfd14/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/6 Paracentrotus lividus OURSIN VIOLET.jpg,,TRUE, +N1,59939,sortie-8d5493e8-ae76-4f77-a570-b078ce911623,https://biolit.fr/sorties/sortie-8d5493e8-ae76-4f77-a570-b078ce911623/,CM1 la Garde,,12/19/2017 0:00,14.0000000,16.0000000,43.164942000000,5.60602400000,,plage du petit Mugel ,44899,observation-8d5493e8-ae76-4f77-a570-b078ce911623,https://biolit.fr/observations/observation-8d5493e8-ae76-4f77-a570-b078ce911623/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/2 Codium Bursa BERET BASQUE-rotated.jpg,,TRUE, +N1,59940,sortie-de39c538-7c7f-490c-8670-123209fa7b5c,https://biolit.fr/sorties/sortie-de39c538-7c7f-490c-8670-123209fa7b5c/,Phil,,3/15/2018 0:00,16.0:15,16.0000000,47.835776000000,-4.169351000000,,Loctudy - Finistère,44901,observation-de39c538-7c7f-490c-8670-123209fa7b5c,https://biolit.fr/observations/observation-de39c538-7c7f-490c-8670-123209fa7b5c/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100816.JPG,,FALSE, +N1,59941,sortie-63c30cfb-8d3b-4f2a-8805-c1cac51c0862,https://biolit.fr/sorties/sortie-63c30cfb-8d3b-4f2a-8805-c1cac51c0862/,Phil,,3/15/2018 0:00,15.0000000,16.0000000,47.835067000000,-4.176684000000,,Loctudy - Finistère,44903,observation-63c30cfb-8d3b-4f2a-8805-c1cac51c0862,https://biolit.fr/observations/observation-63c30cfb-8d3b-4f2a-8805-c1cac51c0862/,Cygnus olor,Cygne tuberculé,,https://biolit.fr/wp-content/uploads/2023/07/P1100809.JPG,,TRUE, +N1,59941,sortie-63c30cfb-8d3b-4f2a-8805-c1cac51c0862,https://biolit.fr/sorties/sortie-63c30cfb-8d3b-4f2a-8805-c1cac51c0862/,Phil,,3/15/2018 0:00,15.0000000,16.0000000,47.835067000000,-4.176684000000,,Loctudy - Finistère,44905,observation-63c30cfb-8d3b-4f2a-8805-c1cac51c0862-2,https://biolit.fr/observations/observation-63c30cfb-8d3b-4f2a-8805-c1cac51c0862-2/,Cygnus olor,Cygne tuberculé,,https://biolit.fr/wp-content/uploads/2023/07/P1100801.JPG,,TRUE, +N1,59942,sortie-15bde762-dac0-42f0-ba8e-09444b3a0c81,https://biolit.fr/sorties/sortie-15bde762-dac0-42f0-ba8e-09444b3a0c81/,carmin89,,02/08/2018,12.0000000,12.0000000,43.064740000000,5.869910000000,,Plage du Jonquet,44907,observation-15bde762-dac0-42f0-ba8e-09444b3a0c81,https://biolit.fr/observations/observation-15bde762-dac0-42f0-ba8e-09444b3a0c81/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180208_121821-scaled.jpg,,TRUE, +N1,59942,sortie-15bde762-dac0-42f0-ba8e-09444b3a0c81,https://biolit.fr/sorties/sortie-15bde762-dac0-42f0-ba8e-09444b3a0c81/,carmin89,,02/08/2018,12.0000000,12.0000000,43.064740000000,5.869910000000,,Plage du Jonquet,44909,observation-15bde762-dac0-42f0-ba8e-09444b3a0c81-2,https://biolit.fr/observations/observation-15bde762-dac0-42f0-ba8e-09444b3a0c81-2/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180208_115647-scaled.jpg,,TRUE, +N1,59942,sortie-15bde762-dac0-42f0-ba8e-09444b3a0c81,https://biolit.fr/sorties/sortie-15bde762-dac0-42f0-ba8e-09444b3a0c81/,carmin89,,02/08/2018,12.0000000,12.0000000,43.064740000000,5.869910000000,,Plage du Jonquet,44911,observation-15bde762-dac0-42f0-ba8e-09444b3a0c81-3,https://biolit.fr/observations/observation-15bde762-dac0-42f0-ba8e-09444b3a0c81-3/,Electra posidoniae,Bryozoaire de la posidonie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180208_115707-scaled.jpg,,TRUE, +N1,59942,sortie-15bde762-dac0-42f0-ba8e-09444b3a0c81,https://biolit.fr/sorties/sortie-15bde762-dac0-42f0-ba8e-09444b3a0c81/,carmin89,,02/08/2018,12.0000000,12.0000000,43.064740000000,5.869910000000,,Plage du Jonquet,44913,observation-15bde762-dac0-42f0-ba8e-09444b3a0c81-4,https://biolit.fr/observations/observation-15bde762-dac0-42f0-ba8e-09444b3a0c81-4/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180208_120607-scaled.jpg,,TRUE, +N1,59942,sortie-15bde762-dac0-42f0-ba8e-09444b3a0c81,https://biolit.fr/sorties/sortie-15bde762-dac0-42f0-ba8e-09444b3a0c81/,carmin89,,02/08/2018,12.0000000,12.0000000,43.064740000000,5.869910000000,,Plage du Jonquet,44915,observation-15bde762-dac0-42f0-ba8e-09444b3a0c81-5,https://biolit.fr/observations/observation-15bde762-dac0-42f0-ba8e-09444b3a0c81-5/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180208_115716-scaled.jpg,,TRUE, +N1,59943,sortie-87823edd-1e17-4273-aacf-499adde3c2e6,https://biolit.fr/sorties/sortie-87823edd-1e17-4273-aacf-499adde3c2e6/,Morice,,03/06/2018,15.0000000,17.0000000,48.869947000000,-1.826526000000,,Chausey - Port Marie,44917,observation-87823edd-1e17-4273-aacf-499adde3c2e6,https://biolit.fr/observations/observation-87823edd-1e17-4273-aacf-499adde3c2e6/,Tethya citrina,Orange de mer de Manche Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20180305_165526-scaled.jpg,,TRUE, +N1,59943,sortie-87823edd-1e17-4273-aacf-499adde3c2e6,https://biolit.fr/sorties/sortie-87823edd-1e17-4273-aacf-499adde3c2e6/,Morice,,03/06/2018,15.0000000,17.0000000,48.869947000000,-1.826526000000,,Chausey - Port Marie,44919,observation-87823edd-1e17-4273-aacf-499adde3c2e6-2,https://biolit.fr/observations/observation-87823edd-1e17-4273-aacf-499adde3c2e6-2/,Polymastia penicillus,Eponge à languettes,,https://biolit.fr/wp-content/uploads/2023/07/20180305_165228-scaled.jpg,,TRUE, +N1,59944,sortie-f8d85a83-8576-465f-affc-6151c63a8156,https://biolit.fr/sorties/sortie-f8d85a83-8576-465f-affc-6151c63a8156/,Alanna,,2/15/2018 0:00,14.0000000,14.0000000,43.079596000000,6.124292000000,,Plage de l'Almanarre,44921,observation-f8d85a83-8576-465f-affc-6151c63a8156,https://biolit.fr/observations/observation-f8d85a83-8576-465f-affc-6151c63a8156/,,,,https://biolit.fr/wp-content/uploads/2023/05/007-scaled.jpg,,FALSE, +N1,59945,sortie-17f64c07-8b5f-4739-8003-7975eb61ea6d,https://biolit.fr/sorties/sortie-17f64c07-8b5f-4739-8003-7975eb61ea6d/,Alanna,,11/23/2017 0:00,13.0000000,14.0000000,43.071967000000,6.153099000000,,Plage des Pesquiers,44922,observation-17f64c07-8b5f-4739-8003-7975eb61ea6d,https://biolit.fr/observations/observation-17f64c07-8b5f-4739-8003-7975eb61ea6d/,,,,https://biolit.fr/wp-content/uploads/2023/07/39.jpg,,FALSE, +N1,59945,sortie-17f64c07-8b5f-4739-8003-7975eb61ea6d,https://biolit.fr/sorties/sortie-17f64c07-8b5f-4739-8003-7975eb61ea6d/,Alanna,,11/23/2017 0:00,13.0000000,14.0000000,43.071967000000,6.153099000000,,Plage des Pesquiers,44924,observation-17f64c07-8b5f-4739-8003-7975eb61ea6d-2,https://biolit.fr/observations/observation-17f64c07-8b5f-4739-8003-7975eb61ea6d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/56.jpg,,FALSE, +N1,59945,sortie-17f64c07-8b5f-4739-8003-7975eb61ea6d,https://biolit.fr/sorties/sortie-17f64c07-8b5f-4739-8003-7975eb61ea6d/,Alanna,,11/23/2017 0:00,13.0000000,14.0000000,43.071967000000,6.153099000000,,Plage des Pesquiers,44926,observation-17f64c07-8b5f-4739-8003-7975eb61ea6d-3,https://biolit.fr/observations/observation-17f64c07-8b5f-4739-8003-7975eb61ea6d-3/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/58.jpg,,TRUE, +N1,59945,sortie-17f64c07-8b5f-4739-8003-7975eb61ea6d,https://biolit.fr/sorties/sortie-17f64c07-8b5f-4739-8003-7975eb61ea6d/,Alanna,,11/23/2017 0:00,13.0000000,14.0000000,43.071967000000,6.153099000000,,Plage des Pesquiers,44928,observation-17f64c07-8b5f-4739-8003-7975eb61ea6d-4,https://biolit.fr/observations/observation-17f64c07-8b5f-4739-8003-7975eb61ea6d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/69.jpg,,FALSE, +N1,59946,sortie-834ea363-6ed8-4b80-b53f-095ee171aa9a,https://biolit.fr/sorties/sortie-834ea363-6ed8-4b80-b53f-095ee171aa9a/,Alexiaaaa,,11/23/2017 0:00,13.0000000,14.0000000,43.07196700000,6.153099000000,,Plage Des Pesquiers ,44930,observation-834ea363-6ed8-4b80-b53f-095ee171aa9a,https://biolit.fr/observations/observation-834ea363-6ed8-4b80-b53f-095ee171aa9a/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1664.JPG,,FALSE, +N1,59947,sortie-13441f64-79f7-425c-ab8e-3586dc9f2cdd,https://biolit.fr/sorties/sortie-13441f64-79f7-425c-ab8e-3586dc9f2cdd/,Ville de Marseille,,3/15/2018 0:00,10.0000000,10.0:45,43.245929000000,5.36918600000,,Base nautique de la Pointe Rouge,44932,observation-13441f64-79f7-425c-ab8e-3586dc9f2cdd,https://biolit.fr/observations/observation-13441f64-79f7-425c-ab8e-3586dc9f2cdd/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/P1070105_1-scaled.jpg,,TRUE, +N1,59947,sortie-13441f64-79f7-425c-ab8e-3586dc9f2cdd,https://biolit.fr/sorties/sortie-13441f64-79f7-425c-ab8e-3586dc9f2cdd/,Ville de Marseille,,3/15/2018 0:00,10.0000000,10.0:45,43.245929000000,5.36918600000,,Base nautique de la Pointe Rouge,44934,observation-13441f64-79f7-425c-ab8e-3586dc9f2cdd-2,https://biolit.fr/observations/observation-13441f64-79f7-425c-ab8e-3586dc9f2cdd-2/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/P1070106_0-scaled.jpg,,TRUE, +N1,59947,sortie-13441f64-79f7-425c-ab8e-3586dc9f2cdd,https://biolit.fr/sorties/sortie-13441f64-79f7-425c-ab8e-3586dc9f2cdd/,Ville de Marseille,,3/15/2018 0:00,10.0000000,10.0:45,43.245929000000,5.36918600000,,Base nautique de la Pointe Rouge,44936,observation-13441f64-79f7-425c-ab8e-3586dc9f2cdd-3,https://biolit.fr/observations/observation-13441f64-79f7-425c-ab8e-3586dc9f2cdd-3/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1070108_0-scaled.jpg,,TRUE, +N1,59947,sortie-13441f64-79f7-425c-ab8e-3586dc9f2cdd,https://biolit.fr/sorties/sortie-13441f64-79f7-425c-ab8e-3586dc9f2cdd/,Ville de Marseille,,3/15/2018 0:00,10.0000000,10.0:45,43.245929000000,5.36918600000,,Base nautique de la Pointe Rouge,44938,observation-13441f64-79f7-425c-ab8e-3586dc9f2cdd-4,https://biolit.fr/observations/observation-13441f64-79f7-425c-ab8e-3586dc9f2cdd-4/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/2023/07/P1070109_0-scaled.jpg,,TRUE, +N1,59947,sortie-13441f64-79f7-425c-ab8e-3586dc9f2cdd,https://biolit.fr/sorties/sortie-13441f64-79f7-425c-ab8e-3586dc9f2cdd/,Ville de Marseille,,3/15/2018 0:00,10.0000000,10.0:45,43.245929000000,5.36918600000,,Base nautique de la Pointe Rouge,44940,observation-13441f64-79f7-425c-ab8e-3586dc9f2cdd-5,https://biolit.fr/observations/observation-13441f64-79f7-425c-ab8e-3586dc9f2cdd-5/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/P1070110_1-scaled.jpg,,TRUE, +N1,59947,sortie-13441f64-79f7-425c-ab8e-3586dc9f2cdd,https://biolit.fr/sorties/sortie-13441f64-79f7-425c-ab8e-3586dc9f2cdd/,Ville de Marseille,,3/15/2018 0:00,10.0000000,10.0:45,43.245929000000,5.36918600000,,Base nautique de la Pointe Rouge,44942,observation-13441f64-79f7-425c-ab8e-3586dc9f2cdd-6,https://biolit.fr/observations/observation-13441f64-79f7-425c-ab8e-3586dc9f2cdd-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070111_1-scaled.jpg,,FALSE, +N1,59947,sortie-13441f64-79f7-425c-ab8e-3586dc9f2cdd,https://biolit.fr/sorties/sortie-13441f64-79f7-425c-ab8e-3586dc9f2cdd/,Ville de Marseille,,3/15/2018 0:00,10.0000000,10.0:45,43.245929000000,5.36918600000,,Base nautique de la Pointe Rouge,44944,observation-13441f64-79f7-425c-ab8e-3586dc9f2cdd-7,https://biolit.fr/observations/observation-13441f64-79f7-425c-ab8e-3586dc9f2cdd-7/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/P1070114_1-scaled.jpg,,TRUE, +N1,59948,sortie-d38bca45-0331-46c7-8d11-ce4f769a55e6,https://biolit.fr/sorties/sortie-d38bca45-0331-46c7-8d11-ce4f769a55e6/,cm1 cm2 Louis Marin,,3/13/2018 0:00,12.0000000,14.0000000,43.166308000000,5.605837000000,,calanquedu grandMugel,44946,observation-d38bca45-0331-46c7-8d11-ce4f769a55e6,https://biolit.fr/observations/observation-d38bca45-0331-46c7-8d11-ce4f769a55e6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crabes et restes de crabes.jpg,,FALSE, +N1,59949,sortie-1175313c-6526-4d57-add9-797a645fbad9,https://biolit.fr/sorties/sortie-1175313c-6526-4d57-add9-797a645fbad9/,Phil,,03/03/2018,12.000005,12.0000000,47.863124000000,-4.069061000000,,Fouesnant - Finistère,44948,observation-1175313c-6526-4d57-add9-797a645fbad9,https://biolit.fr/observations/observation-1175313c-6526-4d57-add9-797a645fbad9/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/P1100648.JPG,,TRUE, +N1,59949,sortie-1175313c-6526-4d57-add9-797a645fbad9,https://biolit.fr/sorties/sortie-1175313c-6526-4d57-add9-797a645fbad9/,Phil,,03/03/2018,12.000005,12.0000000,47.863124000000,-4.069061000000,,Fouesnant - Finistère,44950,observation-1175313c-6526-4d57-add9-797a645fbad9-2,https://biolit.fr/observations/observation-1175313c-6526-4d57-add9-797a645fbad9-2/,Halidrys siliquosa,Queue de poulain,,https://biolit.fr/wp-content/uploads/2023/07/P1100650.JPG,,TRUE, +N1,59949,sortie-1175313c-6526-4d57-add9-797a645fbad9,https://biolit.fr/sorties/sortie-1175313c-6526-4d57-add9-797a645fbad9/,Phil,,03/03/2018,12.000005,12.0000000,47.863124000000,-4.069061000000,,Fouesnant - Finistère,44952,observation-1175313c-6526-4d57-add9-797a645fbad9-3,https://biolit.fr/observations/observation-1175313c-6526-4d57-add9-797a645fbad9-3/,Halidrys siliquosa,Queue de poulain,,https://biolit.fr/wp-content/uploads/2023/07/P1100651.JPG,,TRUE, +N1,59950,sortie-726aa11e-1e03-425c-8237-589970dee6c7,https://biolit.fr/sorties/sortie-726aa11e-1e03-425c-8237-589970dee6c7/,Phil,,2/26/2018 0:00,11.0:55,11.0:55,48.108089000000,-4.284402000000,, Plonévez Porzay - Finistère,44954,observation-726aa11e-1e03-425c-8237-589970dee6c7,https://biolit.fr/observations/observation-726aa11e-1e03-425c-8237-589970dee6c7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100483.JPG,,FALSE, +N1,59951,sortie-f2549667-db26-4d8b-9505-948387934224,https://biolit.fr/sorties/sortie-f2549667-db26-4d8b-9505-948387934224/,Phil,,03/08/2018,18.0:25,18.0000000,48.17211900000,-4.29302300000,,Plomodiern - Finistère,44956,observation-f2549667-db26-4d8b-9505-948387934224,https://biolit.fr/observations/observation-f2549667-db26-4d8b-9505-948387934224/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1100753.JPG,,TRUE, +N1,59951,sortie-f2549667-db26-4d8b-9505-948387934224,https://biolit.fr/sorties/sortie-f2549667-db26-4d8b-9505-948387934224/,Phil,,03/08/2018,18.0:25,18.0000000,48.17211900000,-4.29302300000,,Plomodiern - Finistère,44958,observation-f2549667-db26-4d8b-9505-948387934224-2,https://biolit.fr/observations/observation-f2549667-db26-4d8b-9505-948387934224-2/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1100756.JPG,,TRUE, +N1,59952,sortie-cb1b8feb-d405-4da4-ab8b-6b477fcfea66,https://biolit.fr/sorties/sortie-cb1b8feb-d405-4da4-ab8b-6b477fcfea66/,nathalie,,03/10/2018,21.0000000,23.0000000,46.169756000000,-1.377438000000,,Plage des grenettes île de ré ,44960,observation-cb1b8feb-d405-4da4-ab8b-6b477fcfea66,https://biolit.fr/observations/observation-cb1b8feb-d405-4da4-ab8b-6b477fcfea66/,Eunicella verrucosa,Gorgone verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180310_132939-scaled.jpg,,TRUE, +N1,59952,sortie-cb1b8feb-d405-4da4-ab8b-6b477fcfea66,https://biolit.fr/sorties/sortie-cb1b8feb-d405-4da4-ab8b-6b477fcfea66/,nathalie,,03/10/2018,21.0000000,23.0000000,46.169756000000,-1.377438000000,,Plage des grenettes île de ré ,44962,observation-cb1b8feb-d405-4da4-ab8b-6b477fcfea66-2,https://biolit.fr/observations/observation-cb1b8feb-d405-4da4-ab8b-6b477fcfea66-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180310_123533-scaled.jpg,,FALSE, +N1,59952,sortie-cb1b8feb-d405-4da4-ab8b-6b477fcfea66,https://biolit.fr/sorties/sortie-cb1b8feb-d405-4da4-ab8b-6b477fcfea66/,nathalie,,03/10/2018,21.0000000,23.0000000,46.169756000000,-1.377438000000,,Plage des grenettes île de ré ,44964,observation-cb1b8feb-d405-4da4-ab8b-6b477fcfea66-3,https://biolit.fr/observations/observation-cb1b8feb-d405-4da4-ab8b-6b477fcfea66-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180310_132013-scaled.jpg,,FALSE, +N1,59952,sortie-cb1b8feb-d405-4da4-ab8b-6b477fcfea66,https://biolit.fr/sorties/sortie-cb1b8feb-d405-4da4-ab8b-6b477fcfea66/,nathalie,,03/10/2018,21.0000000,23.0000000,46.169756000000,-1.377438000000,,Plage des grenettes île de ré ,44966,observation-cb1b8feb-d405-4da4-ab8b-6b477fcfea66-4,https://biolit.fr/observations/observation-cb1b8feb-d405-4da4-ab8b-6b477fcfea66-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180310_131146-scaled.jpg,,FALSE, +N1,59952,sortie-cb1b8feb-d405-4da4-ab8b-6b477fcfea66,https://biolit.fr/sorties/sortie-cb1b8feb-d405-4da4-ab8b-6b477fcfea66/,nathalie,,03/10/2018,21.0000000,23.0000000,46.169756000000,-1.377438000000,,Plage des grenettes île de ré ,44968,observation-cb1b8feb-d405-4da4-ab8b-6b477fcfea66-5,https://biolit.fr/observations/observation-cb1b8feb-d405-4da4-ab8b-6b477fcfea66-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180310_131633-scaled.jpg,,FALSE, +N1,59953,sortie-68b48e2f-3380-431a-91bf-d6cf853e4f89,https://biolit.fr/sorties/sortie-68b48e2f-3380-431a-91bf-d6cf853e4f89/,Phil,,2/26/2018 0:00,11.0000000,11.0:55,48.108233000000,-4.284453000000,,Plonevez-Porzay - Finistère,44970,observation-68b48e2f-3380-431a-91bf-d6cf853e4f89,https://biolit.fr/observations/observation-68b48e2f-3380-431a-91bf-d6cf853e4f89/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/P1100480.JPG,,TRUE, +N1,59953,sortie-68b48e2f-3380-431a-91bf-d6cf853e4f89,https://biolit.fr/sorties/sortie-68b48e2f-3380-431a-91bf-d6cf853e4f89/,Phil,,2/26/2018 0:00,11.0000000,11.0:55,48.108233000000,-4.284453000000,,Plonevez-Porzay - Finistère,44972,observation-68b48e2f-3380-431a-91bf-d6cf853e4f89-2,https://biolit.fr/observations/observation-68b48e2f-3380-431a-91bf-d6cf853e4f89-2/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/P1100477.JPG,,TRUE, +N1,59953,sortie-68b48e2f-3380-431a-91bf-d6cf853e4f89,https://biolit.fr/sorties/sortie-68b48e2f-3380-431a-91bf-d6cf853e4f89/,Phil,,2/26/2018 0:00,11.0000000,11.0:55,48.108233000000,-4.284453000000,,Plonevez-Porzay - Finistère,44974,observation-68b48e2f-3380-431a-91bf-d6cf853e4f89-3,https://biolit.fr/observations/observation-68b48e2f-3380-431a-91bf-d6cf853e4f89-3/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/P1100471.JPG,,TRUE, +N1,59953,sortie-68b48e2f-3380-431a-91bf-d6cf853e4f89,https://biolit.fr/sorties/sortie-68b48e2f-3380-431a-91bf-d6cf853e4f89/,Phil,,2/26/2018 0:00,11.0000000,11.0:55,48.108233000000,-4.284453000000,,Plonevez-Porzay - Finistère,44976,observation-68b48e2f-3380-431a-91bf-d6cf853e4f89-4,https://biolit.fr/observations/observation-68b48e2f-3380-431a-91bf-d6cf853e4f89-4/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/P1100473.JPG,,TRUE, +N1,59954,sortie-7e86c5a6-dab5-4007-83e2-8eeccf5a7776,https://biolit.fr/sorties/sortie-7e86c5a6-dab5-4007-83e2-8eeccf5a7776/,Phil,,03/10/2018,15.0:25,15.0000000,47.837161000000,-4.351410000000,,Plomeur - Finistère,44978,observation-7e86c5a6-dab5-4007-83e2-8eeccf5a7776,https://biolit.fr/observations/observation-7e86c5a6-dab5-4007-83e2-8eeccf5a7776/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180310_152841.jpg,,FALSE, +N1,59955,sortie-a050f49d-d6c6-465d-884c-f9c528aeda5e,https://biolit.fr/sorties/sortie-a050f49d-d6c6-465d-884c-f9c528aeda5e/,Phil,,03/10/2018,15.0:25,15.0000000,47.83662900000,-4.352669000000,,Plomeur - Finistère,44980,observation-a050f49d-d6c6-465d-884c-f9c528aeda5e,https://biolit.fr/observations/observation-a050f49d-d6c6-465d-884c-f9c528aeda5e/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/20180310_152749.jpg,,TRUE, +N1,59956,sortie-6c9eba44-dfa3-481e-9f7b-35c5a383b523,https://biolit.fr/sorties/sortie-6c9eba44-dfa3-481e-9f7b-35c5a383b523/,Phil,,03/10/2018,15.0000000,15.0:25,47.836484000000,-4.353255000000,,Plomeur - Finistère,44982,observation-6c9eba44-dfa3-481e-9f7b-35c5a383b523,https://biolit.fr/observations/observation-6c9eba44-dfa3-481e-9f7b-35c5a383b523/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180310_152744.jpg,,FALSE, +N1,59957,sortie-4be6b2c2-0214-4d38-bde9-dcff99f62960,https://biolit.fr/sorties/sortie-4be6b2c2-0214-4d38-bde9-dcff99f62960/,Phil,,03/10/2018,15.0000000,15.0000000,47.837559000000,-4.353313000000,,Plomeur - Finistère,44984,observation-4be6b2c2-0214-4d38-bde9-dcff99f62960,https://biolit.fr/observations/observation-4be6b2c2-0214-4d38-bde9-dcff99f62960/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180310_151928.jpg,,FALSE, +N1,59958,sortie-a884b260-f6d2-450a-8f48-889dcdc76ba5,https://biolit.fr/sorties/sortie-a884b260-f6d2-450a-8f48-889dcdc76ba5/,Phil,,03/10/2018,15.0:15,15.0000000,47.837542000000,-4.352226000000,,Plomeur - Finistère,44986,observation-a884b260-f6d2-450a-8f48-889dcdc76ba5,https://biolit.fr/observations/observation-a884b260-f6d2-450a-8f48-889dcdc76ba5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180310_151847.jpg,,FALSE, +N1,59959,sortie-0c24b93f-47d0-4e88-9785-073315b809fe,https://biolit.fr/sorties/sortie-0c24b93f-47d0-4e88-9785-073315b809fe/,Phil,,03/10/2018,18.0000000,20.0000000,47.837506000000,-4.350873000000,,Plomeur - Finistère,44988,observation-0c24b93f-47d0-4e88-9785-073315b809fe,https://biolit.fr/observations/observation-0c24b93f-47d0-4e88-9785-073315b809fe/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/2023/07/20180310_151813.jpg,,TRUE, +N1,59960,sortie-5d0f7f87-3886-48da-bb31-718e520f2555,https://biolit.fr/sorties/sortie-5d0f7f87-3886-48da-bb31-718e520f2555/,Phil,,03/10/2018,15.0:15,15.0000000,47.837777000000,-4.349822000000,,Plomeur - Finistère,44990,observation-5d0f7f87-3886-48da-bb31-718e520f2555,https://biolit.fr/observations/observation-5d0f7f87-3886-48da-bb31-718e520f2555/,Donax vittatus,Donace des canards,,https://biolit.fr/wp-content/uploads/2023/07/20180310_151739.jpg,,TRUE, +N1,59961,sortie-12d57c3f-d593-4a33-9172-1a6dc670c434,https://biolit.fr/sorties/sortie-12d57c3f-d593-4a33-9172-1a6dc670c434/,Phil,,03/10/2018,15.0:15,15.0:15,47.83858700000,-4.349650000000,,Plomeur - Finistère,44992,observation-12d57c3f-d593-4a33-9172-1a6dc670c434,https://biolit.fr/observations/observation-12d57c3f-d593-4a33-9172-1a6dc670c434/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180310_151723.jpg,,FALSE, +N1,59962,sortie-bcfea2db-a920-4904-a965-ea8c444fe2b8,https://biolit.fr/sorties/sortie-bcfea2db-a920-4904-a965-ea8c444fe2b8/,Phil,,03/10/2018,15.0000000,15.0:15,47.837655000000,-4.348363000000,,Plomeur - Finistère,44994,observation-bcfea2db-a920-4904-a965-ea8c444fe2b8,https://biolit.fr/observations/observation-bcfea2db-a920-4904-a965-ea8c444fe2b8/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/20180310_151624.jpg,,TRUE, +N1,59963,sortie-732bba21-3dce-4f06-b19f-f0b50cf71999,https://biolit.fr/sorties/sortie-732bba21-3dce-4f06-b19f-f0b50cf71999/,Phil,,2/26/2018 0:00,11.0000000,11.0:45,48.109646000000,-4.284110000000,,Plonevez-Porzay - Finistère,44996,observation-732bba21-3dce-4f06-b19f-f0b50cf71999,https://biolit.fr/observations/observation-732bba21-3dce-4f06-b19f-f0b50cf71999/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100457.JPG,,FALSE, +N1,59963,sortie-732bba21-3dce-4f06-b19f-f0b50cf71999,https://biolit.fr/sorties/sortie-732bba21-3dce-4f06-b19f-f0b50cf71999/,Phil,,2/26/2018 0:00,11.0000000,11.0:45,48.109646000000,-4.284110000000,,Plonevez-Porzay - Finistère,44998,observation-732bba21-3dce-4f06-b19f-f0b50cf71999-2,https://biolit.fr/observations/observation-732bba21-3dce-4f06-b19f-f0b50cf71999-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100448.JPG,,FALSE, +N1,59963,sortie-732bba21-3dce-4f06-b19f-f0b50cf71999,https://biolit.fr/sorties/sortie-732bba21-3dce-4f06-b19f-f0b50cf71999/,Phil,,2/26/2018 0:00,11.0000000,11.0:45,48.109646000000,-4.284110000000,,Plonevez-Porzay - Finistère,45000,observation-732bba21-3dce-4f06-b19f-f0b50cf71999-3,https://biolit.fr/observations/observation-732bba21-3dce-4f06-b19f-f0b50cf71999-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100451.JPG,,FALSE, +N1,59964,sortie-f01c139e-f246-4f4f-99f4-780daa90fa0a,https://biolit.fr/sorties/sortie-f01c139e-f246-4f4f-99f4-780daa90fa0a/,Phil,,2/18/2017 0:00,17.0:45,17.0:55,47.893253000000,-3.969094000000,,La Forêt-Fouesnant - Finistère,45002,observation-f01c139e-f246-4f4f-99f4-780daa90fa0a,https://biolit.fr/observations/observation-f01c139e-f246-4f4f-99f4-780daa90fa0a/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1060042.JPG,,TRUE, +N1,59964,sortie-f01c139e-f246-4f4f-99f4-780daa90fa0a,https://biolit.fr/sorties/sortie-f01c139e-f246-4f4f-99f4-780daa90fa0a/,Phil,,2/18/2017 0:00,17.0:45,17.0:55,47.893253000000,-3.969094000000,,La Forêt-Fouesnant - Finistère,45004,observation-f01c139e-f246-4f4f-99f4-780daa90fa0a-2,https://biolit.fr/observations/observation-f01c139e-f246-4f4f-99f4-780daa90fa0a-2/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1060046.JPG,,TRUE, +N1,59964,sortie-f01c139e-f246-4f4f-99f4-780daa90fa0a,https://biolit.fr/sorties/sortie-f01c139e-f246-4f4f-99f4-780daa90fa0a/,Phil,,2/18/2017 0:00,17.0:45,17.0:55,47.893253000000,-3.969094000000,,La Forêt-Fouesnant - Finistère,45006,observation-f01c139e-f246-4f4f-99f4-780daa90fa0a-3,https://biolit.fr/observations/observation-f01c139e-f246-4f4f-99f4-780daa90fa0a-3/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1060044.JPG,,TRUE, +N1,59964,sortie-f01c139e-f246-4f4f-99f4-780daa90fa0a,https://biolit.fr/sorties/sortie-f01c139e-f246-4f4f-99f4-780daa90fa0a/,Phil,,2/18/2017 0:00,17.0:45,17.0:55,47.893253000000,-3.969094000000,,La Forêt-Fouesnant - Finistère,45008,observation-f01c139e-f246-4f4f-99f4-780daa90fa0a-4,https://biolit.fr/observations/observation-f01c139e-f246-4f4f-99f4-780daa90fa0a-4/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1060041.JPG,,TRUE, +N1,59964,sortie-f01c139e-f246-4f4f-99f4-780daa90fa0a,https://biolit.fr/sorties/sortie-f01c139e-f246-4f4f-99f4-780daa90fa0a/,Phil,,2/18/2017 0:00,17.0:45,17.0:55,47.893253000000,-3.969094000000,,La Forêt-Fouesnant - Finistère,45010,observation-f01c139e-f246-4f4f-99f4-780daa90fa0a-5,https://biolit.fr/observations/observation-f01c139e-f246-4f4f-99f4-780daa90fa0a-5/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1060039.JPG,,TRUE, +N1,59964,sortie-f01c139e-f246-4f4f-99f4-780daa90fa0a,https://biolit.fr/sorties/sortie-f01c139e-f246-4f4f-99f4-780daa90fa0a/,Phil,,2/18/2017 0:00,17.0:45,17.0:55,47.893253000000,-3.969094000000,,La Forêt-Fouesnant - Finistère,45012,observation-f01c139e-f246-4f4f-99f4-780daa90fa0a-6,https://biolit.fr/observations/observation-f01c139e-f246-4f4f-99f4-780daa90fa0a-6/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1060035.JPG,,TRUE, +N1,59965,sortie-a09e1d47-1330-44c0-8ec5-baf12a101f33,https://biolit.fr/sorties/sortie-a09e1d47-1330-44c0-8ec5-baf12a101f33/,Phil,,2/26/2018 0:00,11.0000000,11.0:35,48.111259000000,-4.283252000000,,Plonevez-Porzay - Finistère,45014,observation-a09e1d47-1330-44c0-8ec5-baf12a101f33,https://biolit.fr/observations/observation-a09e1d47-1330-44c0-8ec5-baf12a101f33/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1100421.JPG,,TRUE, +N1,59965,sortie-a09e1d47-1330-44c0-8ec5-baf12a101f33,https://biolit.fr/sorties/sortie-a09e1d47-1330-44c0-8ec5-baf12a101f33/,Phil,,2/26/2018 0:00,11.0000000,11.0:35,48.111259000000,-4.283252000000,,Plonevez-Porzay - Finistère,45016,observation-a09e1d47-1330-44c0-8ec5-baf12a101f33-2,https://biolit.fr/observations/observation-a09e1d47-1330-44c0-8ec5-baf12a101f33-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100423.JPG,,FALSE, +N1,59965,sortie-a09e1d47-1330-44c0-8ec5-baf12a101f33,https://biolit.fr/sorties/sortie-a09e1d47-1330-44c0-8ec5-baf12a101f33/,Phil,,2/26/2018 0:00,11.0000000,11.0:35,48.111259000000,-4.283252000000,,Plonevez-Porzay - Finistère,45018,observation-a09e1d47-1330-44c0-8ec5-baf12a101f33-3,https://biolit.fr/observations/observation-a09e1d47-1330-44c0-8ec5-baf12a101f33-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100430.JPG,,FALSE, +N1,59966,sortie-eb2e7154-6017-4d1e-8d4b-0e10bc5cac53,https://biolit.fr/sorties/sortie-eb2e7154-6017-4d1e-8d4b-0e10bc5cac53/,Phil,,03/08/2018,18.0000000,18.0:25,48.175863000000,-4.292847000000,,Plomodiern - Finistère,45020,observation-eb2e7154-6017-4d1e-8d4b-0e10bc5cac53,https://biolit.fr/observations/observation-eb2e7154-6017-4d1e-8d4b-0e10bc5cac53/,Calidris alba,Bécasseau sanderling,,https://biolit.fr/wp-content/uploads/2023/07/P1100744.JPG,,TRUE, +N1,59966,sortie-eb2e7154-6017-4d1e-8d4b-0e10bc5cac53,https://biolit.fr/sorties/sortie-eb2e7154-6017-4d1e-8d4b-0e10bc5cac53/,Phil,,03/08/2018,18.0000000,18.0:25,48.175863000000,-4.292847000000,,Plomodiern - Finistère,45022,observation-eb2e7154-6017-4d1e-8d4b-0e10bc5cac53-2,https://biolit.fr/observations/observation-eb2e7154-6017-4d1e-8d4b-0e10bc5cac53-2/,Calidris alba,Bécasseau sanderling,,https://biolit.fr/wp-content/uploads/2023/07/P1100745.JPG,,TRUE, +N1,59967,sortie-d0992434-8c39-41db-b9bf-6e8304f93292,https://biolit.fr/sorties/sortie-d0992434-8c39-41db-b9bf-6e8304f93292/,Phil,,03/03/2018,12.000005,12.0000000,47.862179000000,-4.065971000000,,Fouesnant - Finistère,45024,observation-d0992434-8c39-41db-b9bf-6e8304f93292,https://biolit.fr/observations/observation-d0992434-8c39-41db-b9bf-6e8304f93292/,Peringia ulvae,Hydrobie saumâtre,,https://biolit.fr/wp-content/uploads/2023/07/P1100639.JPG,,TRUE, +N1,59967,sortie-d0992434-8c39-41db-b9bf-6e8304f93292,https://biolit.fr/sorties/sortie-d0992434-8c39-41db-b9bf-6e8304f93292/,Phil,,03/03/2018,12.000005,12.0000000,47.862179000000,-4.065971000000,,Fouesnant - Finistère,45026,observation-d0992434-8c39-41db-b9bf-6e8304f93292-2,https://biolit.fr/observations/observation-d0992434-8c39-41db-b9bf-6e8304f93292-2/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1100642.JPG,,TRUE, +N1,59967,sortie-d0992434-8c39-41db-b9bf-6e8304f93292,https://biolit.fr/sorties/sortie-d0992434-8c39-41db-b9bf-6e8304f93292/,Phil,,03/03/2018,12.000005,12.0000000,47.862179000000,-4.065971000000,,Fouesnant - Finistère,45028,observation-d0992434-8c39-41db-b9bf-6e8304f93292-3,https://biolit.fr/observations/observation-d0992434-8c39-41db-b9bf-6e8304f93292-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1100643.JPG,,TRUE, +N1,59967,sortie-d0992434-8c39-41db-b9bf-6e8304f93292,https://biolit.fr/sorties/sortie-d0992434-8c39-41db-b9bf-6e8304f93292/,Phil,,03/03/2018,12.000005,12.0000000,47.862179000000,-4.065971000000,,Fouesnant - Finistère,45030,observation-d0992434-8c39-41db-b9bf-6e8304f93292-4,https://biolit.fr/observations/observation-d0992434-8c39-41db-b9bf-6e8304f93292-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100646.JPG,,FALSE, +N1,59968,sortie-997a7f27-e7f4-4283-9de3-9ec0d0a4386d,https://biolit.fr/sorties/sortie-997a7f27-e7f4-4283-9de3-9ec0d0a4386d/,Phil,,2/26/2018 0:00,11.0:45,11.0000000,48.108825000000,-4.284779000000,,Plonevez Porzay - Finistère,45032,observation-997a7f27-e7f4-4283-9de3-9ec0d0a4386d,https://biolit.fr/observations/observation-997a7f27-e7f4-4283-9de3-9ec0d0a4386d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100453.jpg,,FALSE, +N1,59968,sortie-997a7f27-e7f4-4283-9de3-9ec0d0a4386d,https://biolit.fr/sorties/sortie-997a7f27-e7f4-4283-9de3-9ec0d0a4386d/,Phil,,2/26/2018 0:00,11.0:45,11.0000000,48.108825000000,-4.284779000000,,Plonevez Porzay - Finistère,45034,observation-997a7f27-e7f4-4283-9de3-9ec0d0a4386d-2,https://biolit.fr/observations/observation-997a7f27-e7f4-4283-9de3-9ec0d0a4386d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100456.JPG,,FALSE, +N1,59968,sortie-997a7f27-e7f4-4283-9de3-9ec0d0a4386d,https://biolit.fr/sorties/sortie-997a7f27-e7f4-4283-9de3-9ec0d0a4386d/,Phil,,2/26/2018 0:00,11.0:45,11.0000000,48.108825000000,-4.284779000000,,Plonevez Porzay - Finistère,45036,observation-997a7f27-e7f4-4283-9de3-9ec0d0a4386d-3,https://biolit.fr/observations/observation-997a7f27-e7f4-4283-9de3-9ec0d0a4386d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100467.JPG,,FALSE, +N1,59969,sortie-e7b647dd-283b-4585-98f7-2c11c6acb7b9,https://biolit.fr/sorties/sortie-e7b647dd-283b-4585-98f7-2c11c6acb7b9/,Phil,,2/15/2018 0:00,13.0:15,13.0000000,47.791569000000,-4.25690100000,,Tréffiagat - Finistère,45038,observation-e7b647dd-283b-4585-98f7-2c11c6acb7b9,https://biolit.fr/observations/observation-e7b647dd-283b-4585-98f7-2c11c6acb7b9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180215_131827.jpg,,FALSE, +N1,59969,sortie-e7b647dd-283b-4585-98f7-2c11c6acb7b9,https://biolit.fr/sorties/sortie-e7b647dd-283b-4585-98f7-2c11c6acb7b9/,Phil,,2/15/2018 0:00,13.0:15,13.0000000,47.791569000000,-4.25690100000,,Tréffiagat - Finistère,45040,observation-e7b647dd-283b-4585-98f7-2c11c6acb7b9-2,https://biolit.fr/observations/observation-e7b647dd-283b-4585-98f7-2c11c6acb7b9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180215_131811.jpg,,FALSE, +N1,59970,sortie-f7ee2c72-3d11-4474-a6a1-2c5c460133c9,https://biolit.fr/sorties/sortie-f7ee2c72-3d11-4474-a6a1-2c5c460133c9/,Phil,,03/03/2018,12.0000000,12.000005,47.862363000000,-4.067074000000,,Fouesnant - Finistère,45042,observation-f7ee2c72-3d11-4474-a6a1-2c5c460133c9,https://biolit.fr/observations/observation-f7ee2c72-3d11-4474-a6a1-2c5c460133c9/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1100625.JPG,,TRUE, +N1,59970,sortie-f7ee2c72-3d11-4474-a6a1-2c5c460133c9,https://biolit.fr/sorties/sortie-f7ee2c72-3d11-4474-a6a1-2c5c460133c9/,Phil,,03/03/2018,12.0000000,12.000005,47.862363000000,-4.067074000000,,Fouesnant - Finistère,45044,observation-f7ee2c72-3d11-4474-a6a1-2c5c460133c9-2,https://biolit.fr/observations/observation-f7ee2c72-3d11-4474-a6a1-2c5c460133c9-2/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1100601.JPG,,TRUE, +N1,59970,sortie-f7ee2c72-3d11-4474-a6a1-2c5c460133c9,https://biolit.fr/sorties/sortie-f7ee2c72-3d11-4474-a6a1-2c5c460133c9/,Phil,,03/03/2018,12.0000000,12.000005,47.862363000000,-4.067074000000,,Fouesnant - Finistère,45046,observation-f7ee2c72-3d11-4474-a6a1-2c5c460133c9-3,https://biolit.fr/observations/observation-f7ee2c72-3d11-4474-a6a1-2c5c460133c9-3/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1100619.JPG,,TRUE, +N1,59970,sortie-f7ee2c72-3d11-4474-a6a1-2c5c460133c9,https://biolit.fr/sorties/sortie-f7ee2c72-3d11-4474-a6a1-2c5c460133c9/,Phil,,03/03/2018,12.0000000,12.000005,47.862363000000,-4.067074000000,,Fouesnant - Finistère,45048,observation-f7ee2c72-3d11-4474-a6a1-2c5c460133c9-4,https://biolit.fr/observations/observation-f7ee2c72-3d11-4474-a6a1-2c5c460133c9-4/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1100611.JPG,,TRUE, +N1,59971,sortie-87e4ca62-3326-403b-be62-3f7629a3c839,https://biolit.fr/sorties/sortie-87e4ca62-3326-403b-be62-3f7629a3c839/,Phil,,03/03/2018,11.0:55,12.0000000,47.862699000000,-4.067267000000,,Fouesnant Finistère,45050,observation-87e4ca62-3326-403b-be62-3f7629a3c839,https://biolit.fr/observations/observation-87e4ca62-3326-403b-be62-3f7629a3c839/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100605.JPG,,FALSE, +N1,59981,sortie-56888ab5-d631-4eb8-a566-22163d54f612,https://biolit.fr/sorties/sortie-56888ab5-d631-4eb8-a566-22163d54f612/,Phil,,2/26/2018 0:00,12.000005,12.0000000,48.111578000000,-4.284633000000,,Plonévez-Porzay - Finistère,45070,observation-56888ab5-d631-4eb8-a566-22163d54f612,https://biolit.fr/observations/observation-56888ab5-d631-4eb8-a566-22163d54f612/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/2023/07/P1100529.JPG,,TRUE, +N1,59981,sortie-56888ab5-d631-4eb8-a566-22163d54f612,https://biolit.fr/sorties/sortie-56888ab5-d631-4eb8-a566-22163d54f612/,Phil,,2/26/2018 0:00,12.000005,12.0000000,48.111578000000,-4.284633000000,,Plonévez-Porzay - Finistère,45072,observation-56888ab5-d631-4eb8-a566-22163d54f612-2,https://biolit.fr/observations/observation-56888ab5-d631-4eb8-a566-22163d54f612-2/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/2023/07/P1100528.JPG,,TRUE, +N1,59981,sortie-56888ab5-d631-4eb8-a566-22163d54f612,https://biolit.fr/sorties/sortie-56888ab5-d631-4eb8-a566-22163d54f612/,Phil,,2/26/2018 0:00,12.000005,12.0000000,48.111578000000,-4.284633000000,,Plonévez-Porzay - Finistère,45074,observation-56888ab5-d631-4eb8-a566-22163d54f612-3,https://biolit.fr/observations/observation-56888ab5-d631-4eb8-a566-22163d54f612-3/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1100525.JPG,,TRUE, +N1,59981,sortie-56888ab5-d631-4eb8-a566-22163d54f612,https://biolit.fr/sorties/sortie-56888ab5-d631-4eb8-a566-22163d54f612/,Phil,,2/26/2018 0:00,12.000005,12.0000000,48.111578000000,-4.284633000000,,Plonévez-Porzay - Finistère,45076,observation-56888ab5-d631-4eb8-a566-22163d54f612-4,https://biolit.fr/observations/observation-56888ab5-d631-4eb8-a566-22163d54f612-4/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1100526.JPG,,TRUE, +N1,59982,sortie-61a4b05c-fd95-4a8a-9e66-743ea35640c4,https://biolit.fr/sorties/sortie-61a4b05c-fd95-4a8a-9e66-743ea35640c4/,Phil,,03/03/2018,12.000005,12.0000000,47.86311900000,-4.071130000000,,Fouesnant - Finistère,45078,observation-61a4b05c-fd95-4a8a-9e66-743ea35640c4,https://biolit.fr/observations/observation-61a4b05c-fd95-4a8a-9e66-743ea35640c4/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1100628.JPG,,TRUE, +N1,59982,sortie-61a4b05c-fd95-4a8a-9e66-743ea35640c4,https://biolit.fr/sorties/sortie-61a4b05c-fd95-4a8a-9e66-743ea35640c4/,Phil,,03/03/2018,12.000005,12.0000000,47.86311900000,-4.071130000000,,Fouesnant - Finistère,45080,observation-61a4b05c-fd95-4a8a-9e66-743ea35640c4-2,https://biolit.fr/observations/observation-61a4b05c-fd95-4a8a-9e66-743ea35640c4-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1100624.JPG,,TRUE, +N1,59982,sortie-61a4b05c-fd95-4a8a-9e66-743ea35640c4,https://biolit.fr/sorties/sortie-61a4b05c-fd95-4a8a-9e66-743ea35640c4/,Phil,,03/03/2018,12.000005,12.0000000,47.86311900000,-4.071130000000,,Fouesnant - Finistère,45082,observation-61a4b05c-fd95-4a8a-9e66-743ea35640c4-3,https://biolit.fr/observations/observation-61a4b05c-fd95-4a8a-9e66-743ea35640c4-3/,Zostera noltei,Zostère naine,,https://biolit.fr/wp-content/uploads/2023/07/P1100629.JPG,,TRUE, +N1,59982,sortie-61a4b05c-fd95-4a8a-9e66-743ea35640c4,https://biolit.fr/sorties/sortie-61a4b05c-fd95-4a8a-9e66-743ea35640c4/,Phil,,03/03/2018,12.000005,12.0000000,47.86311900000,-4.071130000000,,Fouesnant - Finistère,45084,observation-61a4b05c-fd95-4a8a-9e66-743ea35640c4-4,https://biolit.fr/observations/observation-61a4b05c-fd95-4a8a-9e66-743ea35640c4-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1100630.JPG,,TRUE, +N1,59982,sortie-61a4b05c-fd95-4a8a-9e66-743ea35640c4,https://biolit.fr/sorties/sortie-61a4b05c-fd95-4a8a-9e66-743ea35640c4/,Phil,,03/03/2018,12.000005,12.0000000,47.86311900000,-4.071130000000,,Fouesnant - Finistère,45086,observation-61a4b05c-fd95-4a8a-9e66-743ea35640c4-5,https://biolit.fr/observations/observation-61a4b05c-fd95-4a8a-9e66-743ea35640c4-5/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1100635.JPG,,TRUE, +N1,59983,sortie-4c0e3a02-3e53-4b4a-bc31-bd1dcf588629,https://biolit.fr/sorties/sortie-4c0e3a02-3e53-4b4a-bc31-bd1dcf588629/,Phil,,2/15/2018 0:00,13.0:15,13.0000000,47.791726000000,-4.255322000000,,Treffiagat Finistère,45088,observation-4c0e3a02-3e53-4b4a-bc31-bd1dcf588629,https://biolit.fr/observations/observation-4c0e3a02-3e53-4b4a-bc31-bd1dcf588629/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/20180215_131554.jpg,,TRUE, +N1,59983,sortie-4c0e3a02-3e53-4b4a-bc31-bd1dcf588629,https://biolit.fr/sorties/sortie-4c0e3a02-3e53-4b4a-bc31-bd1dcf588629/,Phil,,2/15/2018 0:00,13.0:15,13.0000000,47.791726000000,-4.255322000000,,Treffiagat Finistère,45090,observation-4c0e3a02-3e53-4b4a-bc31-bd1dcf588629-2,https://biolit.fr/observations/observation-4c0e3a02-3e53-4b4a-bc31-bd1dcf588629-2/,Laminaria ochroleuca,Laminaire jaune,,https://biolit.fr/wp-content/uploads/2023/07/20180215_131558.jpg,,TRUE, +N1,59983,sortie-4c0e3a02-3e53-4b4a-bc31-bd1dcf588629,https://biolit.fr/sorties/sortie-4c0e3a02-3e53-4b4a-bc31-bd1dcf588629/,Phil,,2/15/2018 0:00,13.0:15,13.0000000,47.791726000000,-4.255322000000,,Treffiagat Finistère,45092,observation-4c0e3a02-3e53-4b4a-bc31-bd1dcf588629-3,https://biolit.fr/observations/observation-4c0e3a02-3e53-4b4a-bc31-bd1dcf588629-3/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/20180215_131727.jpg,,TRUE, +N1,59984,sortie-0011982d-086d-4675-acca-3dff0dfeee0b,https://biolit.fr/sorties/sortie-0011982d-086d-4675-acca-3dff0dfeee0b/,Phil,,03/03/2018,11.0000000,11.0:55,47.862673000000,-4.068224000000,,Fouesnant - Finistère,45094,observation-0011982d-086d-4675-acca-3dff0dfeee0b,https://biolit.fr/observations/observation-0011982d-086d-4675-acca-3dff0dfeee0b/,Tadorna tadorna,Tadorne de Belon,,https://biolit.fr/wp-content/uploads/2023/07/P1100577.JPG,,TRUE, +N1,59984,sortie-0011982d-086d-4675-acca-3dff0dfeee0b,https://biolit.fr/sorties/sortie-0011982d-086d-4675-acca-3dff0dfeee0b/,Phil,,03/03/2018,11.0000000,11.0:55,47.862673000000,-4.068224000000,,Fouesnant - Finistère,45096,observation-0011982d-086d-4675-acca-3dff0dfeee0b-2,https://biolit.fr/observations/observation-0011982d-086d-4675-acca-3dff0dfeee0b-2/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1100583.JPG,,TRUE, +N1,59984,sortie-0011982d-086d-4675-acca-3dff0dfeee0b,https://biolit.fr/sorties/sortie-0011982d-086d-4675-acca-3dff0dfeee0b/,Phil,,03/03/2018,11.0000000,11.0:55,47.862673000000,-4.068224000000,,Fouesnant - Finistère,45098,observation-0011982d-086d-4675-acca-3dff0dfeee0b-3,https://biolit.fr/observations/observation-0011982d-086d-4675-acca-3dff0dfeee0b-3/,Tadorna tadorna,Tadorne de Belon,,https://biolit.fr/wp-content/uploads/2023/07/P1100575.JPG,,TRUE, +N1,59985,sortie-438d7c88-2e22-409f-a231-8c91eed60689,https://biolit.fr/sorties/sortie-438d7c88-2e22-409f-a231-8c91eed60689/,Phil,,2/26/2018 0:00,12.000005,12.0000000,48.113357000000,-4.284569000000,,Plonévez-Porzay - Finistère,45100,observation-438d7c88-2e22-409f-a231-8c91eed60689,https://biolit.fr/observations/observation-438d7c88-2e22-409f-a231-8c91eed60689/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100515.JPG,,FALSE, +N1,59985,sortie-438d7c88-2e22-409f-a231-8c91eed60689,https://biolit.fr/sorties/sortie-438d7c88-2e22-409f-a231-8c91eed60689/,Phil,,2/26/2018 0:00,12.000005,12.0000000,48.113357000000,-4.284569000000,,Plonévez-Porzay - Finistère,45102,observation-438d7c88-2e22-409f-a231-8c91eed60689-2,https://biolit.fr/observations/observation-438d7c88-2e22-409f-a231-8c91eed60689-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100513.JPG,,FALSE, +N1,59985,sortie-438d7c88-2e22-409f-a231-8c91eed60689,https://biolit.fr/sorties/sortie-438d7c88-2e22-409f-a231-8c91eed60689/,Phil,,2/26/2018 0:00,12.000005,12.0000000,48.113357000000,-4.284569000000,,Plonévez-Porzay - Finistère,45104,observation-438d7c88-2e22-409f-a231-8c91eed60689-3,https://biolit.fr/observations/observation-438d7c88-2e22-409f-a231-8c91eed60689-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100512.JPG,,FALSE, +N1,59986,sortie-d6bb1409-bade-481b-a869-055f72ba70a5,https://biolit.fr/sorties/sortie-d6bb1409-bade-481b-a869-055f72ba70a5/,Observe la nature,,2/16/2018 0:00,0.0000000,0.0000000,48.815199000000,-3.426228000000,,Pors ar goret perros guirec,45106,observation-d6bb1409-bade-481b-a869-055f72ba70a5,https://biolit.fr/observations/observation-d6bb1409-bade-481b-a869-055f72ba70a5/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/limace perros 2.jpg,,TRUE, +N1,59987,sortie-22eb9650-6168-4fc6-b39d-8d47f22e3fe8,https://biolit.fr/sorties/sortie-22eb9650-6168-4fc6-b39d-8d47f22e3fe8/,Phil,,2/26/2018 0:00,12.0000000,12.000005,48.112239000000,-4.283582000000,,Plonévez-Porzay - Finistère,45108,observation-22eb9650-6168-4fc6-b39d-8d47f22e3fe8,https://biolit.fr/observations/observation-22eb9650-6168-4fc6-b39d-8d47f22e3fe8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100499.JPG,,FALSE, +N1,59987,sortie-22eb9650-6168-4fc6-b39d-8d47f22e3fe8,https://biolit.fr/sorties/sortie-22eb9650-6168-4fc6-b39d-8d47f22e3fe8/,Phil,,2/26/2018 0:00,12.0000000,12.000005,48.112239000000,-4.283582000000,,Plonévez-Porzay - Finistère,45110,observation-22eb9650-6168-4fc6-b39d-8d47f22e3fe8-2,https://biolit.fr/observations/observation-22eb9650-6168-4fc6-b39d-8d47f22e3fe8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100505.JPG,,FALSE, +N1,59987,sortie-22eb9650-6168-4fc6-b39d-8d47f22e3fe8,https://biolit.fr/sorties/sortie-22eb9650-6168-4fc6-b39d-8d47f22e3fe8/,Phil,,2/26/2018 0:00,12.0000000,12.000005,48.112239000000,-4.283582000000,,Plonévez-Porzay - Finistère,45112,observation-22eb9650-6168-4fc6-b39d-8d47f22e3fe8-3,https://biolit.fr/observations/observation-22eb9650-6168-4fc6-b39d-8d47f22e3fe8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100500.JPG,,FALSE, +N1,59988,sortie-535ea4e1-e959-4774-b5df-0fed587bfb66,https://biolit.fr/sorties/sortie-535ea4e1-e959-4774-b5df-0fed587bfb66/,Phil,,03/03/2018,12.0:35,12.0000000,47.862833000000,-4.067137000000,,Fouesnant - Finistère,45114,observation-535ea4e1-e959-4774-b5df-0fed587bfb66,https://biolit.fr/observations/observation-535ea4e1-e959-4774-b5df-0fed587bfb66/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100715.JPG,,FALSE, +N1,59989,sortie-a15192bc-9b3b-4054-b9c7-805aa3810ad1,https://biolit.fr/sorties/sortie-a15192bc-9b3b-4054-b9c7-805aa3810ad1/,Phil,,03/03/2018,11.0000000,11.0:55,47.863528000000,-4.069138000000,,Fouesnant - Finistère,45116,observation-a15192bc-9b3b-4054-b9c7-805aa3810ad1,https://biolit.fr/observations/observation-a15192bc-9b3b-4054-b9c7-805aa3810ad1/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100574.JPG,,FALSE, +N1,59989,sortie-a15192bc-9b3b-4054-b9c7-805aa3810ad1,https://biolit.fr/sorties/sortie-a15192bc-9b3b-4054-b9c7-805aa3810ad1/,Phil,,03/03/2018,11.0000000,11.0:55,47.863528000000,-4.069138000000,,Fouesnant - Finistère,45118,observation-a15192bc-9b3b-4054-b9c7-805aa3810ad1-2,https://biolit.fr/observations/observation-a15192bc-9b3b-4054-b9c7-805aa3810ad1-2/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/P1100581.JPG,,TRUE, +N1,59989,sortie-a15192bc-9b3b-4054-b9c7-805aa3810ad1,https://biolit.fr/sorties/sortie-a15192bc-9b3b-4054-b9c7-805aa3810ad1/,Phil,,03/03/2018,11.0000000,11.0:55,47.863528000000,-4.069138000000,,Fouesnant - Finistère,45120,observation-a15192bc-9b3b-4054-b9c7-805aa3810ad1-3,https://biolit.fr/observations/observation-a15192bc-9b3b-4054-b9c7-805aa3810ad1-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100585.JPG,,FALSE, +N1,59989,sortie-a15192bc-9b3b-4054-b9c7-805aa3810ad1,https://biolit.fr/sorties/sortie-a15192bc-9b3b-4054-b9c7-805aa3810ad1/,Phil,,03/03/2018,11.0000000,11.0:55,47.863528000000,-4.069138000000,,Fouesnant - Finistère,45122,observation-a15192bc-9b3b-4054-b9c7-805aa3810ad1-4,https://biolit.fr/observations/observation-a15192bc-9b3b-4054-b9c7-805aa3810ad1-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100586.JPG,,FALSE, +N1,59990,sortie-55404e66-def1-4ad4-8783-7785428eea93,https://biolit.fr/sorties/sortie-55404e66-def1-4ad4-8783-7785428eea93/,Phil,,2/26/2018 0:00,11.0:35,11.0000000,48.109442000000,-4.28393800000,,Plonévez Porzay - Finistère,45124,observation-55404e66-def1-4ad4-8783-7785428eea93,https://biolit.fr/observations/observation-55404e66-def1-4ad4-8783-7785428eea93/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100438.JPG,,FALSE, +N1,59990,sortie-55404e66-def1-4ad4-8783-7785428eea93,https://biolit.fr/sorties/sortie-55404e66-def1-4ad4-8783-7785428eea93/,Phil,,2/26/2018 0:00,11.0:35,11.0000000,48.109442000000,-4.28393800000,,Plonévez Porzay - Finistère,45126,observation-55404e66-def1-4ad4-8783-7785428eea93-2,https://biolit.fr/observations/observation-55404e66-def1-4ad4-8783-7785428eea93-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100436.JPG,,FALSE, +N1,59990,sortie-55404e66-def1-4ad4-8783-7785428eea93,https://biolit.fr/sorties/sortie-55404e66-def1-4ad4-8783-7785428eea93/,Phil,,2/26/2018 0:00,11.0:35,11.0000000,48.109442000000,-4.28393800000,,Plonévez Porzay - Finistère,45128,observation-55404e66-def1-4ad4-8783-7785428eea93-3,https://biolit.fr/observations/observation-55404e66-def1-4ad4-8783-7785428eea93-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100447.JPG,,FALSE, +N1,59991,sortie-6d4d04cb-ce73-477a-9b67-ee5d8c831e42,https://biolit.fr/sorties/sortie-6d4d04cb-ce73-477a-9b67-ee5d8c831e42/,Phil,,9/19/2017 0:00,14.0000000,14.0:15,48.060746000000,-4.672281000000,,Cléden-Cap-Sizun - Finistère,45130,observation-6d4d04cb-ce73-477a-9b67-ee5d8c831e42,https://biolit.fr/observations/observation-6d4d04cb-ce73-477a-9b67-ee5d8c831e42/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1080473.JPG,,TRUE, +N1,59991,sortie-6d4d04cb-ce73-477a-9b67-ee5d8c831e42,https://biolit.fr/sorties/sortie-6d4d04cb-ce73-477a-9b67-ee5d8c831e42/,Phil,,9/19/2017 0:00,14.0000000,14.0:15,48.060746000000,-4.672281000000,,Cléden-Cap-Sizun - Finistère,45132,observation-6d4d04cb-ce73-477a-9b67-ee5d8c831e42-2,https://biolit.fr/observations/observation-6d4d04cb-ce73-477a-9b67-ee5d8c831e42-2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1080467.JPG,,TRUE, +N1,59991,sortie-6d4d04cb-ce73-477a-9b67-ee5d8c831e42,https://biolit.fr/sorties/sortie-6d4d04cb-ce73-477a-9b67-ee5d8c831e42/,Phil,,9/19/2017 0:00,14.0000000,14.0:15,48.060746000000,-4.672281000000,,Cléden-Cap-Sizun - Finistère,45134,observation-6d4d04cb-ce73-477a-9b67-ee5d8c831e42-3,https://biolit.fr/observations/observation-6d4d04cb-ce73-477a-9b67-ee5d8c831e42-3/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1080461.JPG,,TRUE, +N1,59991,sortie-6d4d04cb-ce73-477a-9b67-ee5d8c831e42,https://biolit.fr/sorties/sortie-6d4d04cb-ce73-477a-9b67-ee5d8c831e42/,Phil,,9/19/2017 0:00,14.0000000,14.0:15,48.060746000000,-4.672281000000,,Cléden-Cap-Sizun - Finistère,45136,observation-6d4d04cb-ce73-477a-9b67-ee5d8c831e42-4,https://biolit.fr/observations/observation-6d4d04cb-ce73-477a-9b67-ee5d8c831e42-4/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1080514.JPG,,TRUE, +N1,59991,sortie-6d4d04cb-ce73-477a-9b67-ee5d8c831e42,https://biolit.fr/sorties/sortie-6d4d04cb-ce73-477a-9b67-ee5d8c831e42/,Phil,,9/19/2017 0:00,14.0000000,14.0:15,48.060746000000,-4.672281000000,,Cléden-Cap-Sizun - Finistère,45138,observation-6d4d04cb-ce73-477a-9b67-ee5d8c831e42-5,https://biolit.fr/observations/observation-6d4d04cb-ce73-477a-9b67-ee5d8c831e42-5/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1080511.JPG,,TRUE, +N1,59992,sortie-626ba539-f2d1-4708-aa1a-ec7268d66aff,https://biolit.fr/sorties/sortie-626ba539-f2d1-4708-aa1a-ec7268d66aff/,Phil,,01/06/2018,15.0000000,15.0:55,48.005030000000,-4.522642000000,,Plouhinec - Finistère,45140,observation-626ba539-f2d1-4708-aa1a-ec7268d66aff,https://biolit.fr/observations/observation-626ba539-f2d1-4708-aa1a-ec7268d66aff/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100007.JPG,,FALSE, +N1,59993,sortie-63bcbbbb-1a32-4456-a924-b034d3755280,https://biolit.fr/sorties/sortie-63bcbbbb-1a32-4456-a924-b034d3755280/,Phil,,2/15/2018 0:00,13.0000000,13.0:25,47.791357000000,-4.262768000000,,Tréffiagat - Finistère,45142,observation-63bcbbbb-1a32-4456-a924-b034d3755280,https://biolit.fr/observations/observation-63bcbbbb-1a32-4456-a924-b034d3755280/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180215_132027.jpg,,FALSE, +N1,59993,sortie-63bcbbbb-1a32-4456-a924-b034d3755280,https://biolit.fr/sorties/sortie-63bcbbbb-1a32-4456-a924-b034d3755280/,Phil,,2/15/2018 0:00,13.0000000,13.0:25,47.791357000000,-4.262768000000,,Tréffiagat - Finistère,45144,observation-63bcbbbb-1a32-4456-a924-b034d3755280-2,https://biolit.fr/observations/observation-63bcbbbb-1a32-4456-a924-b034d3755280-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180215_131907.jpg,,FALSE, +N1,59993,sortie-63bcbbbb-1a32-4456-a924-b034d3755280,https://biolit.fr/sorties/sortie-63bcbbbb-1a32-4456-a924-b034d3755280/,Phil,,2/15/2018 0:00,13.0000000,13.0:25,47.791357000000,-4.262768000000,,Tréffiagat - Finistère,45146,observation-63bcbbbb-1a32-4456-a924-b034d3755280-3,https://biolit.fr/observations/observation-63bcbbbb-1a32-4456-a924-b034d3755280-3/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20180215_132246.jpg,,TRUE, +N1,59994,sortie-cc60561a-374f-41cb-ad83-8e1f6d6dad31,https://biolit.fr/sorties/sortie-cc60561a-374f-41cb-ad83-8e1f6d6dad31/,Phil,,01/06/2018,15.0:45,15.0000000,48.004656000000,-4.523041000000,,Plouhinec - Finistère,45150,observation-cc60561a-374f-41cb-ad83-8e1f6d6dad31-2,https://biolit.fr/observations/observation-cc60561a-374f-41cb-ad83-8e1f6d6dad31-2/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1100001.JPG,,TRUE, +N1,59994,sortie-cc60561a-374f-41cb-ad83-8e1f6d6dad31,https://biolit.fr/sorties/sortie-cc60561a-374f-41cb-ad83-8e1f6d6dad31/,Phil,,01/06/2018,15.0:45,15.0000000,48.004656000000,-4.523041000000,,Plouhinec - Finistère,45152,observation-cc60561a-374f-41cb-ad83-8e1f6d6dad31-3,https://biolit.fr/observations/observation-cc60561a-374f-41cb-ad83-8e1f6d6dad31-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100004.JPG,,FALSE, +N1,59995,sortie-f9c1a14b-d4b7-4e72-ac09-2dbef1ee9058,https://biolit.fr/sorties/sortie-f9c1a14b-d4b7-4e72-ac09-2dbef1ee9058/,Phil,,2/26/2018 0:00,12.0000000,12.0:25,48.113982000000,-4.283024000000,,Plonevez - Porzay - Finistère,45154,observation-f9c1a14b-d4b7-4e72-ac09-2dbef1ee9058,https://biolit.fr/observations/observation-f9c1a14b-d4b7-4e72-ac09-2dbef1ee9058/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100565.JPG,,FALSE, +N1,59995,sortie-f9c1a14b-d4b7-4e72-ac09-2dbef1ee9058,https://biolit.fr/sorties/sortie-f9c1a14b-d4b7-4e72-ac09-2dbef1ee9058/,Phil,,2/26/2018 0:00,12.0000000,12.0:25,48.113982000000,-4.283024000000,,Plonevez - Porzay - Finistère,45156,observation-f9c1a14b-d4b7-4e72-ac09-2dbef1ee9058-2,https://biolit.fr/observations/observation-f9c1a14b-d4b7-4e72-ac09-2dbef1ee9058-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100559.JPG,,FALSE, +N1,59995,sortie-f9c1a14b-d4b7-4e72-ac09-2dbef1ee9058,https://biolit.fr/sorties/sortie-f9c1a14b-d4b7-4e72-ac09-2dbef1ee9058/,Phil,,2/26/2018 0:00,12.0000000,12.0:25,48.113982000000,-4.283024000000,,Plonevez - Porzay - Finistère,45158,observation-f9c1a14b-d4b7-4e72-ac09-2dbef1ee9058-3,https://biolit.fr/observations/observation-f9c1a14b-d4b7-4e72-ac09-2dbef1ee9058-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100564.JPG,,FALSE, +N1,59995,sortie-f9c1a14b-d4b7-4e72-ac09-2dbef1ee9058,https://biolit.fr/sorties/sortie-f9c1a14b-d4b7-4e72-ac09-2dbef1ee9058/,Phil,,2/26/2018 0:00,12.0000000,12.0:25,48.113982000000,-4.283024000000,,Plonevez - Porzay - Finistère,45160,observation-f9c1a14b-d4b7-4e72-ac09-2dbef1ee9058-4,https://biolit.fr/observations/observation-f9c1a14b-d4b7-4e72-ac09-2dbef1ee9058-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100566.JPG,,FALSE, +N1,59996,sortie-63baca33-64d4-410b-bfcf-14ed732a3f4c,https://biolit.fr/sorties/sortie-63baca33-64d4-410b-bfcf-14ed732a3f4c/,Phil,,01/06/2018,15.0000000,15.0000000,48.004544000000,-4.522202000000,,Plouhinec - Finistère,45162,observation-63baca33-64d4-410b-bfcf-14ed732a3f4c,https://biolit.fr/observations/observation-63baca33-64d4-410b-bfcf-14ed732a3f4c/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090997.JPG,,FALSE, +N1,59996,sortie-63baca33-64d4-410b-bfcf-14ed732a3f4c,https://biolit.fr/sorties/sortie-63baca33-64d4-410b-bfcf-14ed732a3f4c/,Phil,,01/06/2018,15.0000000,15.0000000,48.004544000000,-4.522202000000,,Plouhinec - Finistère,45164,observation-63baca33-64d4-410b-bfcf-14ed732a3f4c-2,https://biolit.fr/observations/observation-63baca33-64d4-410b-bfcf-14ed732a3f4c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090995.JPG,,FALSE, +N1,59996,sortie-63baca33-64d4-410b-bfcf-14ed732a3f4c,https://biolit.fr/sorties/sortie-63baca33-64d4-410b-bfcf-14ed732a3f4c/,Phil,,01/06/2018,15.0000000,15.0000000,48.004544000000,-4.522202000000,,Plouhinec - Finistère,45166,observation-63baca33-64d4-410b-bfcf-14ed732a3f4c-3,https://biolit.fr/observations/observation-63baca33-64d4-410b-bfcf-14ed732a3f4c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090994.JPG,,FALSE, +N1,59996,sortie-63baca33-64d4-410b-bfcf-14ed732a3f4c,https://biolit.fr/sorties/sortie-63baca33-64d4-410b-bfcf-14ed732a3f4c/,Phil,,01/06/2018,15.0000000,15.0000000,48.004544000000,-4.522202000000,,Plouhinec - Finistère,45168,observation-63baca33-64d4-410b-bfcf-14ed732a3f4c-4,https://biolit.fr/observations/observation-63baca33-64d4-410b-bfcf-14ed732a3f4c-4/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1090992 - .JPG,,TRUE, +N1,59997,sortie-5b65bf70-3dfe-43a1-ad5d-5a5de44d2cd5,https://biolit.fr/sorties/sortie-5b65bf70-3dfe-43a1-ad5d-5a5de44d2cd5/,Phil,,2/26/2018 0:00,11.0000000,11.0:25,48.114352000000,-4.281865000000,,Plonévez-Porzay - Finistère,45170,observation-5b65bf70-3dfe-43a1-ad5d-5a5de44d2cd5,https://biolit.fr/observations/observation-5b65bf70-3dfe-43a1-ad5d-5a5de44d2cd5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100405.JPG,,FALSE, +N1,59997,sortie-5b65bf70-3dfe-43a1-ad5d-5a5de44d2cd5,https://biolit.fr/sorties/sortie-5b65bf70-3dfe-43a1-ad5d-5a5de44d2cd5/,Phil,,2/26/2018 0:00,11.0000000,11.0:25,48.114352000000,-4.281865000000,,Plonévez-Porzay - Finistère,45172,observation-5b65bf70-3dfe-43a1-ad5d-5a5de44d2cd5-2,https://biolit.fr/observations/observation-5b65bf70-3dfe-43a1-ad5d-5a5de44d2cd5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100407.JPG,,FALSE, +N1,59997,sortie-5b65bf70-3dfe-43a1-ad5d-5a5de44d2cd5,https://biolit.fr/sorties/sortie-5b65bf70-3dfe-43a1-ad5d-5a5de44d2cd5/,Phil,,2/26/2018 0:00,11.0000000,11.0:25,48.114352000000,-4.281865000000,,Plonévez-Porzay - Finistère,45174,observation-5b65bf70-3dfe-43a1-ad5d-5a5de44d2cd5-3,https://biolit.fr/observations/observation-5b65bf70-3dfe-43a1-ad5d-5a5de44d2cd5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100410.JPG,,FALSE, +N1,59997,sortie-5b65bf70-3dfe-43a1-ad5d-5a5de44d2cd5,https://biolit.fr/sorties/sortie-5b65bf70-3dfe-43a1-ad5d-5a5de44d2cd5/,Phil,,2/26/2018 0:00,11.0000000,11.0:25,48.114352000000,-4.281865000000,,Plonévez-Porzay - Finistère,45176,observation-5b65bf70-3dfe-43a1-ad5d-5a5de44d2cd5-4,https://biolit.fr/observations/observation-5b65bf70-3dfe-43a1-ad5d-5a5de44d2cd5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100408.JPG,,FALSE, +N1,59998,sortie-3707f14f-033b-4db6-8ef3-61bd07565b61,https://biolit.fr/sorties/sortie-3707f14f-033b-4db6-8ef3-61bd07565b61/,école de l'Almanarre,,12/04/2017,11.0000000,13.0000000,43.006129000000,6.205413000000,,ile de porquerolles,45178,observation-3707f14f-033b-4db6-8ef3-61bd07565b61,https://biolit.fr/observations/observation-3707f14f-033b-4db6-8ef3-61bd07565b61/,,,,https://biolit.fr/wp-content/uploads/2023/07/P_20171204_124349-scaled.jpg,,FALSE, +N1,59999,sortie-f4dd8475-bd0a-4ec2-bbd2-8091c4ee6d95,https://biolit.fr/sorties/sortie-f4dd8475-bd0a-4ec2-bbd2-8091c4ee6d95/,école de l'Almanarre,,1/18/2018 0:00,9.0000000,10.0:25,43.048795000000,6.155288000000,,plage de l'Almanarre,45180,observation-f4dd8475-bd0a-4ec2-bbd2-8091c4ee6d95,https://biolit.fr/observations/observation-f4dd8475-bd0a-4ec2-bbd2-8091c4ee6d95/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0191.jpg,,TRUE, +N1,59999,sortie-f4dd8475-bd0a-4ec2-bbd2-8091c4ee6d95,https://biolit.fr/sorties/sortie-f4dd8475-bd0a-4ec2-bbd2-8091c4ee6d95/,école de l'Almanarre,,1/18/2018 0:00,9.0000000,10.0:25,43.048795000000,6.155288000000,,plage de l'Almanarre,45182,observation-f4dd8475-bd0a-4ec2-bbd2-8091c4ee6d95-2,https://biolit.fr/observations/observation-f4dd8475-bd0a-4ec2-bbd2-8091c4ee6d95-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1388.jpg,,FALSE, +N1,59999,sortie-f4dd8475-bd0a-4ec2-bbd2-8091c4ee6d95,https://biolit.fr/sorties/sortie-f4dd8475-bd0a-4ec2-bbd2-8091c4ee6d95/,école de l'Almanarre,,1/18/2018 0:00,9.0000000,10.0:25,43.048795000000,6.155288000000,,plage de l'Almanarre,45184,observation-f4dd8475-bd0a-4ec2-bbd2-8091c4ee6d95-3,https://biolit.fr/observations/observation-f4dd8475-bd0a-4ec2-bbd2-8091c4ee6d95-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2078.jpg,,FALSE, +N1,59999,sortie-f4dd8475-bd0a-4ec2-bbd2-8091c4ee6d95,https://biolit.fr/sorties/sortie-f4dd8475-bd0a-4ec2-bbd2-8091c4ee6d95/,école de l'Almanarre,,1/18/2018 0:00,9.0000000,10.0:25,43.048795000000,6.155288000000,,plage de l'Almanarre,45186,observation-f4dd8475-bd0a-4ec2-bbd2-8091c4ee6d95-4,https://biolit.fr/observations/observation-f4dd8475-bd0a-4ec2-bbd2-8091c4ee6d95-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7507.JPG,,FALSE, +N1,60013,sortie-f1411678-8d33-4ed1-a494-79de3d849a64,https://biolit.fr/sorties/sortie-f1411678-8d33-4ed1-a494-79de3d849a64/,Phil,,01/06/2018,15.0000000,15.0000000,48.00459300000,-4.520221000000,,Plouhinec - Finistère,45213,observation-f1411678-8d33-4ed1-a494-79de3d849a64,https://biolit.fr/observations/observation-f1411678-8d33-4ed1-a494-79de3d849a64/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1090989.JPG,,TRUE, +N1,60013,sortie-f1411678-8d33-4ed1-a494-79de3d849a64,https://biolit.fr/sorties/sortie-f1411678-8d33-4ed1-a494-79de3d849a64/,Phil,,01/06/2018,15.0000000,15.0000000,48.00459300000,-4.520221000000,,Plouhinec - Finistère,45215,observation-f1411678-8d33-4ed1-a494-79de3d849a64-2,https://biolit.fr/observations/observation-f1411678-8d33-4ed1-a494-79de3d849a64-2/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1090988.JPG,,TRUE, +N1,60013,sortie-f1411678-8d33-4ed1-a494-79de3d849a64,https://biolit.fr/sorties/sortie-f1411678-8d33-4ed1-a494-79de3d849a64/,Phil,,01/06/2018,15.0000000,15.0000000,48.00459300000,-4.520221000000,,Plouhinec - Finistère,45217,observation-f1411678-8d33-4ed1-a494-79de3d849a64-3,https://biolit.fr/observations/observation-f1411678-8d33-4ed1-a494-79de3d849a64-3/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1090987.JPG,,TRUE, +N1,60013,sortie-f1411678-8d33-4ed1-a494-79de3d849a64,https://biolit.fr/sorties/sortie-f1411678-8d33-4ed1-a494-79de3d849a64/,Phil,,01/06/2018,15.0000000,15.0000000,48.00459300000,-4.520221000000,,Plouhinec - Finistère,45219,observation-f1411678-8d33-4ed1-a494-79de3d849a64-4,https://biolit.fr/observations/observation-f1411678-8d33-4ed1-a494-79de3d849a64-4/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1090985.JPG,,TRUE, +N1,60013,sortie-f1411678-8d33-4ed1-a494-79de3d849a64,https://biolit.fr/sorties/sortie-f1411678-8d33-4ed1-a494-79de3d849a64/,Phil,,01/06/2018,15.0000000,15.0000000,48.00459300000,-4.520221000000,,Plouhinec - Finistère,45221,observation-f1411678-8d33-4ed1-a494-79de3d849a64-5,https://biolit.fr/observations/observation-f1411678-8d33-4ed1-a494-79de3d849a64-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1090990.JPG,,TRUE, +N1,60014,sortie-a2f63830-738b-488f-a4b7-e23e92320479,https://biolit.fr/sorties/sortie-a2f63830-738b-488f-a4b7-e23e92320479/,Ville de Marseille Lodi CM1,,1/29/2018 0:00,10.0000000,12.0000000,43.239859000000,5.362448000000,,bain des dames,45223,observation-a2f63830-738b-488f-a4b7-e23e92320479,https://biolit.fr/observations/observation-a2f63830-738b-488f-a4b7-e23e92320479/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/2023/07/Patelle ponctuee-Patella rustica vue externe .JPG,,TRUE, +N1,60014,sortie-a2f63830-738b-488f-a4b7-e23e92320479,https://biolit.fr/sorties/sortie-a2f63830-738b-488f-a4b7-e23e92320479/,Ville de Marseille Lodi CM1,,1/29/2018 0:00,10.0000000,12.0000000,43.239859000000,5.362448000000,,bain des dames,45225,observation-a2f63830-738b-488f-a4b7-e23e92320479-2,https://biolit.fr/observations/observation-a2f63830-738b-488f-a4b7-e23e92320479-2/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/2023/07/Patelle ponctuee-Patella rustica vue interne.JPG,,TRUE, +N1,60015,sortie-e2c131e3-b194-48d8-be69-e19a6d24c48d,https://biolit.fr/sorties/sortie-e2c131e3-b194-48d8-be69-e19a6d24c48d/,Ville de Marseille Lodi CM1,,1/29/2018 0:00,10.0000000,12.0000000,43.239957000000,5.362448000000,,bain des dames,45227,observation-e2c131e3-b194-48d8-be69-e19a6d24c48d,https://biolit.fr/observations/observation-e2c131e3-b194-48d8-be69-e19a6d24c48d/,,,,https://biolit.fr/wp-content/uploads/2023/07/Grand vermet-Thylacodes arenarius.JPG,,FALSE, +N1,60015,sortie-e2c131e3-b194-48d8-be69-e19a6d24c48d,https://biolit.fr/sorties/sortie-e2c131e3-b194-48d8-be69-e19a6d24c48d/,Ville de Marseille Lodi CM1,,1/29/2018 0:00,10.0000000,12.0000000,43.239957000000,5.362448000000,,bain des dames,45229,observation-e2c131e3-b194-48d8-be69-e19a6d24c48d-2,https://biolit.fr/observations/observation-e2c131e3-b194-48d8-be69-e19a6d24c48d-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/oursin- Paracentrotus lividus.JPG,,TRUE, +N1,60016,sortie-c9d39d0b-4f90-490a-b4dd-1a1e778d389f,https://biolit.fr/sorties/sortie-c9d39d0b-4f90-490a-b4dd-1a1e778d389f/,Ville de Marseille Lodi CM1,,1/29/2018 0:00,10.0000000,12.0000000,43.239734000000,5.362454000000,,plage des bain des dames,45231,observation-c9d39d0b-4f90-490a-b4dd-1a1e778d389f,https://biolit.fr/observations/observation-c9d39d0b-4f90-490a-b4dd-1a1e778d389f/,,,,https://biolit.fr/wp-content/uploads/2023/07/Petoncle- Mimachlamys varia vue interne.JPG,,FALSE, +N1,60017,sortie-1fe9e98f-edbc-41ca-814f-60a22676e7c4,https://biolit.fr/sorties/sortie-1fe9e98f-edbc-41ca-814f-60a22676e7c4/,Ville de Marseille Lodi CM1,,1/29/2018 0:00,10.0000000,12.0000000,43.239746000000,5.36245900000,,plage du bain des dames,45233,observation-1fe9e98f-edbc-41ca-814f-60a22676e7c4,https://biolit.fr/observations/observation-1fe9e98f-edbc-41ca-814f-60a22676e7c4/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/Columbelle rustique-columbella rustica dos.JPG,,TRUE, +N1,60017,sortie-1fe9e98f-edbc-41ca-814f-60a22676e7c4,https://biolit.fr/sorties/sortie-1fe9e98f-edbc-41ca-814f-60a22676e7c4/,Ville de Marseille Lodi CM1,,1/29/2018 0:00,10.0000000,12.0000000,43.239746000000,5.36245900000,,plage du bain des dames,45235,observation-1fe9e98f-edbc-41ca-814f-60a22676e7c4-2,https://biolit.fr/observations/observation-1fe9e98f-edbc-41ca-814f-60a22676e7c4-2/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/Columbelle rustique-columbella rustica ouverture.JPG,,TRUE, +N1,60018,sortie-ab4ade78-4bd6-469e-9e4e-c1c26ac81183,https://biolit.fr/sorties/sortie-ab4ade78-4bd6-469e-9e4e-c1c26ac81183/,Ville de Marseille Lodi CM1,,1/29/2018 0:00,10.0000000,12.0000000,43.239836000000,5.362454000000,,plage du bain des dames,45237,observation-ab4ade78-4bd6-469e-9e4e-c1c26ac81183,https://biolit.fr/observations/observation-ab4ade78-4bd6-469e-9e4e-c1c26ac81183/,Euthria cornea,Buccin veiné,,https://biolit.fr/wp-content/uploads/2023/07/Buccin veiné-Euthria cornea.JPG,,TRUE, +N1,60018,sortie-ab4ade78-4bd6-469e-9e4e-c1c26ac81183,https://biolit.fr/sorties/sortie-ab4ade78-4bd6-469e-9e4e-c1c26ac81183/,Ville de Marseille Lodi CM1,,1/29/2018 0:00,10.0000000,12.0000000,43.239836000000,5.362454000000,,plage du bain des dames,45239,observation-ab4ade78-4bd6-469e-9e4e-c1c26ac81183-2,https://biolit.fr/observations/observation-ab4ade78-4bd6-469e-9e4e-c1c26ac81183-2/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/Arche barbue- Barbatia barbata.JPG,,TRUE, +N1,60019,sortie-9e1e9b22-e161-47bb-b8ea-c15256392aa9,https://biolit.fr/sorties/sortie-9e1e9b22-e161-47bb-b8ea-c15256392aa9/,Ville de Marseille Lodi CM1,,1/29/2018 0:00,10.0000000,12.0000000,43.239773000000,5.362432000000,,plage du bain des dames,45241,observation-9e1e9b22-e161-47bb-b8ea-c15256392aa9,https://biolit.fr/observations/observation-9e1e9b22-e161-47bb-b8ea-c15256392aa9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Petit vermet-Vermetus triquetrus.JPG,,FALSE, +N1,60019,sortie-9e1e9b22-e161-47bb-b8ea-c15256392aa9,https://biolit.fr/sorties/sortie-9e1e9b22-e161-47bb-b8ea-c15256392aa9/,Ville de Marseille Lodi CM1,,1/29/2018 0:00,10.0000000,12.0000000,43.239773000000,5.362432000000,,plage du bain des dames,45243,observation-9e1e9b22-e161-47bb-b8ea-c15256392aa9-2,https://biolit.fr/observations/observation-9e1e9b22-e161-47bb-b8ea-c15256392aa9-2/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/POSIDONIE-Posidonia oceanica-scaled.jpg,,TRUE, +N1,60020,sortie-667da508-d034-48c6-9ecc-13dd0fe41369,https://biolit.fr/sorties/sortie-667da508-d034-48c6-9ecc-13dd0fe41369/,Ville de Marseille Lodi CM1,,1/29/2018 0:00,10.0000000,12.0000000,43.239839000000,5.362444000000,, plage du bain des dames@,45244,observation-667da508-d034-48c6-9ecc-13dd0fe41369,https://biolit.fr/observations/observation-667da508-d034-48c6-9ecc-13dd0fe41369/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cerithe goumier-Cerithium vulgatum.JPG,,FALSE, +N1,60020,sortie-667da508-d034-48c6-9ecc-13dd0fe41369,https://biolit.fr/sorties/sortie-667da508-d034-48c6-9ecc-13dd0fe41369/,Ville de Marseille Lodi CM1,,1/29/2018 0:00,10.0000000,12.0000000,43.239839000000,5.362444000000,, plage du bain des dames@,45246,observation-667da508-d034-48c6-9ecc-13dd0fe41369-2,https://biolit.fr/observations/observation-667da508-d034-48c6-9ecc-13dd0fe41369-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbula3.JPG,,FALSE, +N1,60021,sortie-ad67c0cb-cdff-404f-b3eb-e48b0fcaf670,https://biolit.fr/sorties/sortie-ad67c0cb-cdff-404f-b3eb-e48b0fcaf670/,Ville de Marseille Lodi CM1,,1/29/2018 0:00,10.0000000,11.0:55,43.239926000000,5.362414000000,,plage du bain des dames,45248,observation-ad67c0cb-cdff-404f-b3eb-e48b0fcaf670,https://biolit.fr/observations/observation-ad67c0cb-cdff-404f-b3eb-e48b0fcaf670/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Seiche commune-Sepia officinalis-scaled.jpg,,TRUE, +N1,60021,sortie-ad67c0cb-cdff-404f-b3eb-e48b0fcaf670,https://biolit.fr/sorties/sortie-ad67c0cb-cdff-404f-b3eb-e48b0fcaf670/,Ville de Marseille Lodi CM1,,1/29/2018 0:00,10.0000000,11.0:55,43.239926000000,5.362414000000,,plage du bain des dames,45250,observation-ad67c0cb-cdff-404f-b3eb-e48b0fcaf670-2,https://biolit.fr/observations/observation-ad67c0cb-cdff-404f-b3eb-e48b0fcaf670-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Praire commune-Venus verrucosa.JPG,,FALSE, +N1,60022,sortie-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd,https://biolit.fr/sorties/sortie-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd/,Phil,,1/14/2018 0:00,13.0:15,13.0000000,47.845571000000,-4.041712000000,,Mousterlin - Finistère,45252,observation-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd,https://biolit.fr/observations/observation-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100377.JPG,,FALSE, +N1,60022,sortie-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd,https://biolit.fr/sorties/sortie-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd/,Phil,,1/14/2018 0:00,13.0:15,13.0000000,47.845571000000,-4.041712000000,,Mousterlin - Finistère,45254,observation-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd-2,https://biolit.fr/observations/observation-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100380.JPG,,FALSE, +N1,60022,sortie-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd,https://biolit.fr/sorties/sortie-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd/,Phil,,1/14/2018 0:00,13.0:15,13.0000000,47.845571000000,-4.041712000000,,Mousterlin - Finistère,45256,observation-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd-3,https://biolit.fr/observations/observation-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100383.JPG,,FALSE, +N1,60022,sortie-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd,https://biolit.fr/sorties/sortie-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd/,Phil,,1/14/2018 0:00,13.0:15,13.0000000,47.845571000000,-4.041712000000,,Mousterlin - Finistère,45258,observation-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd-4,https://biolit.fr/observations/observation-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100390.JPG,,FALSE, +N1,60022,sortie-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd,https://biolit.fr/sorties/sortie-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd/,Phil,,1/14/2018 0:00,13.0:15,13.0000000,47.845571000000,-4.041712000000,,Mousterlin - Finistère,45260,observation-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd-5,https://biolit.fr/observations/observation-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100399.JPG,,FALSE, +N1,60022,sortie-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd,https://biolit.fr/sorties/sortie-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd/,Phil,,1/14/2018 0:00,13.0:15,13.0000000,47.845571000000,-4.041712000000,,Mousterlin - Finistère,45262,observation-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd-6,https://biolit.fr/observations/observation-6751b20b-ddd3-4fb3-9939-d8e87c7dcbfd-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100402.JPG,,FALSE, +N1,60023,sortie-98189ed8-03c9-4b4d-8ce3-5bc0eca4379f,https://biolit.fr/sorties/sortie-98189ed8-03c9-4b4d-8ce3-5bc0eca4379f/,Phil,,01/06/2018,15.0000000,15.0:35,48.004456000000,-4.521312000000,,Plouhinec - Finistère,45264,observation-98189ed8-03c9-4b4d-8ce3-5bc0eca4379f,https://biolit.fr/observations/observation-98189ed8-03c9-4b4d-8ce3-5bc0eca4379f/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090982.JPG,,FALSE, +N1,60023,sortie-98189ed8-03c9-4b4d-8ce3-5bc0eca4379f,https://biolit.fr/sorties/sortie-98189ed8-03c9-4b4d-8ce3-5bc0eca4379f/,Phil,,01/06/2018,15.0000000,15.0:35,48.004456000000,-4.521312000000,,Plouhinec - Finistère,45266,observation-98189ed8-03c9-4b4d-8ce3-5bc0eca4379f-2,https://biolit.fr/observations/observation-98189ed8-03c9-4b4d-8ce3-5bc0eca4379f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090981.JPG,,FALSE, +N1,60023,sortie-98189ed8-03c9-4b4d-8ce3-5bc0eca4379f,https://biolit.fr/sorties/sortie-98189ed8-03c9-4b4d-8ce3-5bc0eca4379f/,Phil,,01/06/2018,15.0000000,15.0:35,48.004456000000,-4.521312000000,,Plouhinec - Finistère,45268,observation-98189ed8-03c9-4b4d-8ce3-5bc0eca4379f-3,https://biolit.fr/observations/observation-98189ed8-03c9-4b4d-8ce3-5bc0eca4379f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090980.JPG,,FALSE, +N1,60024,sortie-b17544d8-57d3-489f-91e1-9f775d772f26,https://biolit.fr/sorties/sortie-b17544d8-57d3-489f-91e1-9f775d772f26/,Ville de Marseille école François Moisson CM1C,,1/22/2018 0:00,10.0000000,11.0000000,43.280241000000,5.352808000000,,"anse de la fausse monnaie, Marseille 13",45270,observation-b17544d8-57d3-489f-91e1-9f775d772f26,https://biolit.fr/observations/observation-b17544d8-57d3-489f-91e1-9f775d772f26/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/Bérêt basque Codium bursa-scaled.jpg,,TRUE, +N1,60024,sortie-b17544d8-57d3-489f-91e1-9f775d772f26,https://biolit.fr/sorties/sortie-b17544d8-57d3-489f-91e1-9f775d772f26/,Ville de Marseille école François Moisson CM1C,,1/22/2018 0:00,10.0000000,11.0000000,43.280241000000,5.352808000000,,"anse de la fausse monnaie, Marseille 13",45271,observation-b17544d8-57d3-489f-91e1-9f775d772f26-2,https://biolit.fr/observations/observation-b17544d8-57d3-489f-91e1-9f775d772f26-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Chama gryphoides exterieur.JPG,,FALSE, +N1,60024,sortie-b17544d8-57d3-489f-91e1-9f775d772f26,https://biolit.fr/sorties/sortie-b17544d8-57d3-489f-91e1-9f775d772f26/,Ville de Marseille école François Moisson CM1C,,1/22/2018 0:00,10.0000000,11.0000000,43.280241000000,5.352808000000,,"anse de la fausse monnaie, Marseille 13",45273,observation-b17544d8-57d3-489f-91e1-9f775d772f26-3,https://biolit.fr/observations/observation-b17544d8-57d3-489f-91e1-9f775d772f26-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Chama gryphoides interieur.JPG,,FALSE, +N1,60024,sortie-b17544d8-57d3-489f-91e1-9f775d772f26,https://biolit.fr/sorties/sortie-b17544d8-57d3-489f-91e1-9f775d772f26/,Ville de Marseille école François Moisson CM1C,,1/22/2018 0:00,10.0000000,11.0000000,43.280241000000,5.352808000000,,"anse de la fausse monnaie, Marseille 13",45275,observation-b17544d8-57d3-489f-91e1-9f775d772f26-4,https://biolit.fr/observations/observation-b17544d8-57d3-489f-91e1-9f775d772f26-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Columbelle rustique_ columbella rustica_0.JPG,,FALSE, +N1,60024,sortie-b17544d8-57d3-489f-91e1-9f775d772f26,https://biolit.fr/sorties/sortie-b17544d8-57d3-489f-91e1-9f775d772f26/,Ville de Marseille école François Moisson CM1C,,1/22/2018 0:00,10.0000000,11.0000000,43.280241000000,5.352808000000,,"anse de la fausse monnaie, Marseille 13",45277,observation-b17544d8-57d3-489f-91e1-9f775d772f26-5,https://biolit.fr/observations/observation-b17544d8-57d3-489f-91e1-9f775d772f26-5/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Cormaillot_Ocenebra erinaceus desous.JPG,,TRUE, +N1,60024,sortie-b17544d8-57d3-489f-91e1-9f775d772f26,https://biolit.fr/sorties/sortie-b17544d8-57d3-489f-91e1-9f775d772f26/,Ville de Marseille école François Moisson CM1C,,1/22/2018 0:00,10.0000000,11.0000000,43.280241000000,5.352808000000,,"anse de la fausse monnaie, Marseille 13",45279,observation-b17544d8-57d3-489f-91e1-9f775d772f26-6,https://biolit.fr/observations/observation-b17544d8-57d3-489f-91e1-9f775d772f26-6/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Cormaillot_Ocenebra erinaceus dessus.JPG,,TRUE, +N1,60024,sortie-b17544d8-57d3-489f-91e1-9f775d772f26,https://biolit.fr/sorties/sortie-b17544d8-57d3-489f-91e1-9f775d772f26/,Ville de Marseille école François Moisson CM1C,,1/22/2018 0:00,10.0000000,11.0000000,43.280241000000,5.352808000000,,"anse de la fausse monnaie, Marseille 13",45281,observation-b17544d8-57d3-489f-91e1-9f775d772f26-7,https://biolit.fr/observations/observation-b17544d8-57d3-489f-91e1-9f775d772f26-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle-Patella sp dessous.JPG,,FALSE, +N1,60024,sortie-b17544d8-57d3-489f-91e1-9f775d772f26,https://biolit.fr/sorties/sortie-b17544d8-57d3-489f-91e1-9f775d772f26/,Ville de Marseille école François Moisson CM1C,,1/22/2018 0:00,10.0000000,11.0000000,43.280241000000,5.352808000000,,"anse de la fausse monnaie, Marseille 13",45283,observation-b17544d8-57d3-489f-91e1-9f775d772f26-8,https://biolit.fr/observations/observation-b17544d8-57d3-489f-91e1-9f775d772f26-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle-Patella sp dessus.JPG,,FALSE, +N1,60024,sortie-b17544d8-57d3-489f-91e1-9f775d772f26,https://biolit.fr/sorties/sortie-b17544d8-57d3-489f-91e1-9f775d772f26/,Ville de Marseille école François Moisson CM1C,,1/22/2018 0:00,10.0000000,11.0000000,43.280241000000,5.352808000000,,"anse de la fausse monnaie, Marseille 13",45285,observation-b17544d8-57d3-489f-91e1-9f775d772f26-9,https://biolit.fr/observations/observation-b17544d8-57d3-489f-91e1-9f775d772f26-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Spondyle pied d'ane-Spondylus gaederopus extérieur.JPG,,FALSE, +N1,60024,sortie-b17544d8-57d3-489f-91e1-9f775d772f26,https://biolit.fr/sorties/sortie-b17544d8-57d3-489f-91e1-9f775d772f26/,Ville de Marseille école François Moisson CM1C,,1/22/2018 0:00,10.0000000,11.0000000,43.280241000000,5.352808000000,,"anse de la fausse monnaie, Marseille 13",45287,observation-b17544d8-57d3-489f-91e1-9f775d772f26-10,https://biolit.fr/observations/observation-b17544d8-57d3-489f-91e1-9f775d772f26-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Spondyle pied d'ane-Spondylus gaederopus interieur.JPG,,FALSE, +N1,60025,sortie-c241d899-f1f5-4cac-977b-47c9ed13aab7,https://biolit.fr/sorties/sortie-c241d899-f1f5-4cac-977b-47c9ed13aab7/,Phil,,01/06/2018,16.0:15,16.0000000,48.004564000000,-4.520930000000,,Plouhinec - Finistère,45289,observation-c241d899-f1f5-4cac-977b-47c9ed13aab7,https://biolit.fr/observations/observation-c241d899-f1f5-4cac-977b-47c9ed13aab7/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1100013.JPG,,TRUE, +N1,60025,sortie-c241d899-f1f5-4cac-977b-47c9ed13aab7,https://biolit.fr/sorties/sortie-c241d899-f1f5-4cac-977b-47c9ed13aab7/,Phil,,01/06/2018,16.0:15,16.0000000,48.004564000000,-4.520930000000,,Plouhinec - Finistère,45291,observation-c241d899-f1f5-4cac-977b-47c9ed13aab7-2,https://biolit.fr/observations/observation-c241d899-f1f5-4cac-977b-47c9ed13aab7-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1100015.JPG,,TRUE, +N1,60025,sortie-c241d899-f1f5-4cac-977b-47c9ed13aab7,https://biolit.fr/sorties/sortie-c241d899-f1f5-4cac-977b-47c9ed13aab7/,Phil,,01/06/2018,16.0:15,16.0000000,48.004564000000,-4.520930000000,,Plouhinec - Finistère,45293,observation-c241d899-f1f5-4cac-977b-47c9ed13aab7-3,https://biolit.fr/observations/observation-c241d899-f1f5-4cac-977b-47c9ed13aab7-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1100018.JPG,,TRUE, +N1,60025,sortie-c241d899-f1f5-4cac-977b-47c9ed13aab7,https://biolit.fr/sorties/sortie-c241d899-f1f5-4cac-977b-47c9ed13aab7/,Phil,,01/06/2018,16.0:15,16.0000000,48.004564000000,-4.520930000000,,Plouhinec - Finistère,45295,observation-c241d899-f1f5-4cac-977b-47c9ed13aab7-4,https://biolit.fr/observations/observation-c241d899-f1f5-4cac-977b-47c9ed13aab7-4/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1100020.JPG,,TRUE, +N1,60026,sortie-de43e1d9-0a7f-4c1f-adcc-d103a5530f63,https://biolit.fr/sorties/sortie-de43e1d9-0a7f-4c1f-adcc-d103a5530f63/,Centre de Découverte Mer et Montagne,,02/07/2018,11.0000000,12.0000000,43.686341000000,7.33937300000,,plage des fossettes,45297,observation-de43e1d9-0a7f-4c1f-adcc-d103a5530f63,https://biolit.fr/observations/observation-de43e1d9-0a7f-4c1f-adcc-d103a5530f63/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/codiumboule_cdmm.JPG,,TRUE, +N1,60027,sortie-369e17f9-788c-4c6f-8b54-517bab77d4b4,https://biolit.fr/sorties/sortie-369e17f9-788c-4c6f-8b54-517bab77d4b4/,Phil,,1/14/2018 0:00,11.0:55,12.0000000,47.852150000000,-4.02677400000,,Mousterlin - Finistère,45299,observation-369e17f9-788c-4c6f-8b54-517bab77d4b4,https://biolit.fr/observations/observation-369e17f9-788c-4c6f-8b54-517bab77d4b4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100250.JPG,,FALSE, +N1,60027,sortie-369e17f9-788c-4c6f-8b54-517bab77d4b4,https://biolit.fr/sorties/sortie-369e17f9-788c-4c6f-8b54-517bab77d4b4/,Phil,,1/14/2018 0:00,11.0:55,12.0000000,47.852150000000,-4.02677400000,,Mousterlin - Finistère,45301,observation-369e17f9-788c-4c6f-8b54-517bab77d4b4-2,https://biolit.fr/observations/observation-369e17f9-788c-4c6f-8b54-517bab77d4b4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100249.JPG,,FALSE, +N1,60027,sortie-369e17f9-788c-4c6f-8b54-517bab77d4b4,https://biolit.fr/sorties/sortie-369e17f9-788c-4c6f-8b54-517bab77d4b4/,Phil,,1/14/2018 0:00,11.0:55,12.0000000,47.852150000000,-4.02677400000,,Mousterlin - Finistère,45303,observation-369e17f9-788c-4c6f-8b54-517bab77d4b4-3,https://biolit.fr/observations/observation-369e17f9-788c-4c6f-8b54-517bab77d4b4-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100254.JPG,,FALSE, +N1,60027,sortie-369e17f9-788c-4c6f-8b54-517bab77d4b4,https://biolit.fr/sorties/sortie-369e17f9-788c-4c6f-8b54-517bab77d4b4/,Phil,,1/14/2018 0:00,11.0:55,12.0000000,47.852150000000,-4.02677400000,,Mousterlin - Finistère,45305,observation-369e17f9-788c-4c6f-8b54-517bab77d4b4-4,https://biolit.fr/observations/observation-369e17f9-788c-4c6f-8b54-517bab77d4b4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100257.JPG,,FALSE, +N1,60027,sortie-369e17f9-788c-4c6f-8b54-517bab77d4b4,https://biolit.fr/sorties/sortie-369e17f9-788c-4c6f-8b54-517bab77d4b4/,Phil,,1/14/2018 0:00,11.0:55,12.0000000,47.852150000000,-4.02677400000,,Mousterlin - Finistère,45307,observation-369e17f9-788c-4c6f-8b54-517bab77d4b4-5,https://biolit.fr/observations/observation-369e17f9-788c-4c6f-8b54-517bab77d4b4-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100259.JPG,,FALSE, +N1,60027,sortie-369e17f9-788c-4c6f-8b54-517bab77d4b4,https://biolit.fr/sorties/sortie-369e17f9-788c-4c6f-8b54-517bab77d4b4/,Phil,,1/14/2018 0:00,11.0:55,12.0000000,47.852150000000,-4.02677400000,,Mousterlin - Finistère,45309,observation-369e17f9-788c-4c6f-8b54-517bab77d4b4-6,https://biolit.fr/observations/observation-369e17f9-788c-4c6f-8b54-517bab77d4b4-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100261.JPG,,FALSE, +N1,60027,sortie-369e17f9-788c-4c6f-8b54-517bab77d4b4,https://biolit.fr/sorties/sortie-369e17f9-788c-4c6f-8b54-517bab77d4b4/,Phil,,1/14/2018 0:00,11.0:55,12.0000000,47.852150000000,-4.02677400000,,Mousterlin - Finistère,45311,observation-369e17f9-788c-4c6f-8b54-517bab77d4b4-7,https://biolit.fr/observations/observation-369e17f9-788c-4c6f-8b54-517bab77d4b4-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100272.JPG,,FALSE, +N1,60028,sortie-2938d59f-10f1-4aeb-8e53-e81be82d6166,https://biolit.fr/sorties/sortie-2938d59f-10f1-4aeb-8e53-e81be82d6166/,Phil,,01/06/2018,16.0:35,16.0000000,48.005056000000,-4.511220000000,,Plouhinec - Finistère,45313,observation-2938d59f-10f1-4aeb-8e53-e81be82d6166,https://biolit.fr/observations/observation-2938d59f-10f1-4aeb-8e53-e81be82d6166/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100028.JPG,,FALSE, +N1,60028,sortie-2938d59f-10f1-4aeb-8e53-e81be82d6166,https://biolit.fr/sorties/sortie-2938d59f-10f1-4aeb-8e53-e81be82d6166/,Phil,,01/06/2018,16.0:35,16.0000000,48.005056000000,-4.511220000000,,Plouhinec - Finistère,45315,observation-2938d59f-10f1-4aeb-8e53-e81be82d6166-2,https://biolit.fr/observations/observation-2938d59f-10f1-4aeb-8e53-e81be82d6166-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100029.JPG,,FALSE, +N1,60029,sortie-109f7fcb-d4db-4ea7-b373-c668c9738e2c,https://biolit.fr/sorties/sortie-109f7fcb-d4db-4ea7-b373-c668c9738e2c/,Phil,,01/06/2018,16.0000000,16.0:25,48.003644000000,-4.508169000000,,Plouhinec - Finistère,45317,observation-109f7fcb-d4db-4ea7-b373-c668c9738e2c,https://biolit.fr/observations/observation-109f7fcb-d4db-4ea7-b373-c668c9738e2c/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100022.JPG,,FALSE, +N1,60029,sortie-109f7fcb-d4db-4ea7-b373-c668c9738e2c,https://biolit.fr/sorties/sortie-109f7fcb-d4db-4ea7-b373-c668c9738e2c/,Phil,,01/06/2018,16.0000000,16.0:25,48.003644000000,-4.508169000000,,Plouhinec - Finistère,45319,observation-109f7fcb-d4db-4ea7-b373-c668c9738e2c-2,https://biolit.fr/observations/observation-109f7fcb-d4db-4ea7-b373-c668c9738e2c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100024.JPG,,FALSE, +N1,60030,sortie-4e0c0fa8-cd51-4796-ad04-7764a9992ec0,https://biolit.fr/sorties/sortie-4e0c0fa8-cd51-4796-ad04-7764a9992ec0/,Raphaël,,1/31/2018 0:00,15.0000000,16.0:15,43.240848000000,5.362192000000,,bain des dames ,45321,observation-4e0c0fa8-cd51-4796-ad04-7764a9992ec0,https://biolit.fr/observations/observation-4e0c0fa8-cd51-4796-ad04-7764a9992ec0/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20180201_172746[1]-scaled.jpg,,TRUE, +N1,60031,sortie-df4c4c16-b5c2-41e8-a4ce-733a0039d899,https://biolit.fr/sorties/sortie-df4c4c16-b5c2-41e8-a4ce-733a0039d899/,Ville de Marseille école François Moisson CM1C,,1/22/2018 0:00,10.0000000,11.0000000,43.280249000000,5.352771000000,,Anse de la fausse monnaie,45323,observation-df4c4c16-b5c2-41e8-a4ce-733a0039d899,https://biolit.fr/observations/observation-df4c4c16-b5c2-41e8-a4ce-733a0039d899/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle-Patella sp dessus_0.JPG,,FALSE, +N1,60032,sortie-6b6369d5-7c08-441b-87ae-f301c0084631,https://biolit.fr/sorties/sortie-6b6369d5-7c08-441b-87ae-f301c0084631/,Corinne DUMAS,,02/01/2018,11.0000000,12.0000000,47.542670000000,-2.903798000000,,Arzon - Kercouedo,45325,observation-6b6369d5-7c08-441b-87ae-f301c0084631,https://biolit.fr/observations/observation-6b6369d5-7c08-441b-87ae-f301c0084631/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1063.JPG,,FALSE, +N1,60032,sortie-6b6369d5-7c08-441b-87ae-f301c0084631,https://biolit.fr/sorties/sortie-6b6369d5-7c08-441b-87ae-f301c0084631/,Corinne DUMAS,,02/01/2018,11.0000000,12.0000000,47.542670000000,-2.903798000000,,Arzon - Kercouedo,45327,observation-6b6369d5-7c08-441b-87ae-f301c0084631-2,https://biolit.fr/observations/observation-6b6369d5-7c08-441b-87ae-f301c0084631-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1064.JPG,,FALSE, +N1,60032,sortie-6b6369d5-7c08-441b-87ae-f301c0084631,https://biolit.fr/sorties/sortie-6b6369d5-7c08-441b-87ae-f301c0084631/,Corinne DUMAS,,02/01/2018,11.0000000,12.0000000,47.542670000000,-2.903798000000,,Arzon - Kercouedo,45329,observation-6b6369d5-7c08-441b-87ae-f301c0084631-3,https://biolit.fr/observations/observation-6b6369d5-7c08-441b-87ae-f301c0084631-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1066.JPG,,FALSE, +N1,60032,sortie-6b6369d5-7c08-441b-87ae-f301c0084631,https://biolit.fr/sorties/sortie-6b6369d5-7c08-441b-87ae-f301c0084631/,Corinne DUMAS,,02/01/2018,11.0000000,12.0000000,47.542670000000,-2.903798000000,,Arzon - Kercouedo,45331,observation-6b6369d5-7c08-441b-87ae-f301c0084631-4,https://biolit.fr/observations/observation-6b6369d5-7c08-441b-87ae-f301c0084631-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040068.JPG,,FALSE, +N1,60033,sortie-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5,https://biolit.fr/sorties/sortie-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5/,Phil,,1/14/2018 0:00,13.000005,13.0:15,47.846121000000,-4.042027000000,,Mousterlin - Finistère,45333,observation-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5,https://biolit.fr/observations/observation-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100358.JPG,,FALSE, +N1,60033,sortie-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5,https://biolit.fr/sorties/sortie-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5/,Phil,,1/14/2018 0:00,13.000005,13.0:15,47.846121000000,-4.042027000000,,Mousterlin - Finistère,45335,observation-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5-2,https://biolit.fr/observations/observation-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100356.JPG,,FALSE, +N1,60033,sortie-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5,https://biolit.fr/sorties/sortie-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5/,Phil,,1/14/2018 0:00,13.000005,13.0:15,47.846121000000,-4.042027000000,,Mousterlin - Finistère,45337,observation-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5-3,https://biolit.fr/observations/observation-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100354.JPG,,FALSE, +N1,60033,sortie-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5,https://biolit.fr/sorties/sortie-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5/,Phil,,1/14/2018 0:00,13.000005,13.0:15,47.846121000000,-4.042027000000,,Mousterlin - Finistère,45339,observation-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5-4,https://biolit.fr/observations/observation-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5-4/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1100362.JPG,,TRUE, +N1,60033,sortie-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5,https://biolit.fr/sorties/sortie-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5/,Phil,,1/14/2018 0:00,13.000005,13.0:15,47.846121000000,-4.042027000000,,Mousterlin - Finistère,45341,observation-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5-5,https://biolit.fr/observations/observation-60ee7e37-b3b6-4838-9f0c-c42ca7032eb5-5/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1100366.JPG,,TRUE, +N1,60034,sortie-3141d773-e13d-4a03-9964-8e6e1aafc15b,https://biolit.fr/sorties/sortie-3141d773-e13d-4a03-9964-8e6e1aafc15b/,Natura 2000 - Embouchure de l'Argens,,1/31/2018 0:00,14.0000000,14.0000000,43.41348800000,6.797087000000,,Plage de la Péguière,45343,observation-3141d773-e13d-4a03-9964-8e6e1aafc15b,https://biolit.fr/observations/observation-3141d773-e13d-4a03-9964-8e6e1aafc15b/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/DSCN5652-scaled.jpg,,TRUE, +N1,60035,sortie-7531de46-d3e3-4ad9-8cad-5f076e471ea7,https://biolit.fr/sorties/sortie-7531de46-d3e3-4ad9-8cad-5f076e471ea7/,ADEE,,1/31/2018 0:00,14.0000000,14.0000000,43.413723000000,6.797351000000,,Plage de la Péguière,45345,observation-7531de46-d3e3-4ad9-8cad-5f076e471ea7,https://biolit.fr/observations/observation-7531de46-d3e3-4ad9-8cad-5f076e471ea7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20180131_141125-scaled.jpg,,FALSE, +N1,60036,sortie-6a7ab905-deb9-416f-8904-23080af30802,https://biolit.fr/sorties/sortie-6a7ab905-deb9-416f-8904-23080af30802/,Natura 2000 CAVEM,,1/31/2018 0:00,14.0000000,14.0000000,43.413640000000,6.797434000000,,Plage de la Peguiere ,45347,observation-6a7ab905-deb9-416f-8904-23080af30802,https://biolit.fr/observations/observation-6a7ab905-deb9-416f-8904-23080af30802/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180131_141347-scaled.jpg,,FALSE, +N1,60036,sortie-6a7ab905-deb9-416f-8904-23080af30802,https://biolit.fr/sorties/sortie-6a7ab905-deb9-416f-8904-23080af30802/,Natura 2000 CAVEM,,1/31/2018 0:00,14.0000000,14.0000000,43.413640000000,6.797434000000,,Plage de la Peguiere ,45349,observation-6a7ab905-deb9-416f-8904-23080af30802-2,https://biolit.fr/observations/observation-6a7ab905-deb9-416f-8904-23080af30802-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180131_141637-scaled.jpg,,FALSE, +N1,60036,sortie-6a7ab905-deb9-416f-8904-23080af30802,https://biolit.fr/sorties/sortie-6a7ab905-deb9-416f-8904-23080af30802/,Natura 2000 CAVEM,,1/31/2018 0:00,14.0000000,14.0000000,43.413640000000,6.797434000000,,Plage de la Peguiere ,45351,observation-6a7ab905-deb9-416f-8904-23080af30802-3,https://biolit.fr/observations/observation-6a7ab905-deb9-416f-8904-23080af30802-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180131_141628-scaled.jpg,,FALSE, +N1,60036,sortie-6a7ab905-deb9-416f-8904-23080af30802,https://biolit.fr/sorties/sortie-6a7ab905-deb9-416f-8904-23080af30802/,Natura 2000 CAVEM,,1/31/2018 0:00,14.0000000,14.0000000,43.413640000000,6.797434000000,,Plage de la Peguiere ,45353,observation-6a7ab905-deb9-416f-8904-23080af30802-4,https://biolit.fr/observations/observation-6a7ab905-deb9-416f-8904-23080af30802-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180131_141628_0-scaled.jpg,,FALSE, +N1,60036,sortie-6a7ab905-deb9-416f-8904-23080af30802,https://biolit.fr/sorties/sortie-6a7ab905-deb9-416f-8904-23080af30802/,Natura 2000 CAVEM,,1/31/2018 0:00,14.0000000,14.0000000,43.413640000000,6.797434000000,,Plage de la Peguiere ,45355,observation-6a7ab905-deb9-416f-8904-23080af30802-5,https://biolit.fr/observations/observation-6a7ab905-deb9-416f-8904-23080af30802-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180131_141435-scaled.jpg,,FALSE, +N1,60037,sortie-19a5e700-9a13-466e-b737-20890ef83268,https://biolit.fr/sorties/sortie-19a5e700-9a13-466e-b737-20890ef83268/,Natura 2000 - Embouchure de l'Argens,,1/31/2018 0:00,14.0000000,14.0000000,43.413469000000,6.797310000000,,Plage de la Peguière,45357,observation-19a5e700-9a13-466e-b737-20890ef83268,https://biolit.fr/observations/observation-19a5e700-9a13-466e-b737-20890ef83268/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN5658-scaled.jpg,,FALSE, +N1,60038,sortie-0610336e-a3eb-4305-bb9c-02a3cde0a3a2,https://biolit.fr/sorties/sortie-0610336e-a3eb-4305-bb9c-02a3cde0a3a2/,Phil,,01/06/2018,15.0000000,15.0:35,48.004715000000,-4.523007000000,,Plouhinec - Finistère,45359,observation-0610336e-a3eb-4305-bb9c-02a3cde0a3a2,https://biolit.fr/observations/observation-0610336e-a3eb-4305-bb9c-02a3cde0a3a2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090966.JPG,,FALSE, +N1,60038,sortie-0610336e-a3eb-4305-bb9c-02a3cde0a3a2,https://biolit.fr/sorties/sortie-0610336e-a3eb-4305-bb9c-02a3cde0a3a2/,Phil,,01/06/2018,15.0000000,15.0:35,48.004715000000,-4.523007000000,,Plouhinec - Finistère,45361,observation-0610336e-a3eb-4305-bb9c-02a3cde0a3a2-2,https://biolit.fr/observations/observation-0610336e-a3eb-4305-bb9c-02a3cde0a3a2-2/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1090974.JPG,,TRUE, +N1,60038,sortie-0610336e-a3eb-4305-bb9c-02a3cde0a3a2,https://biolit.fr/sorties/sortie-0610336e-a3eb-4305-bb9c-02a3cde0a3a2/,Phil,,01/06/2018,15.0000000,15.0:35,48.004715000000,-4.523007000000,,Plouhinec - Finistère,45363,observation-0610336e-a3eb-4305-bb9c-02a3cde0a3a2-3,https://biolit.fr/observations/observation-0610336e-a3eb-4305-bb9c-02a3cde0a3a2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090976.JPG,,FALSE, +N1,60038,sortie-0610336e-a3eb-4305-bb9c-02a3cde0a3a2,https://biolit.fr/sorties/sortie-0610336e-a3eb-4305-bb9c-02a3cde0a3a2/,Phil,,01/06/2018,15.0000000,15.0:35,48.004715000000,-4.523007000000,,Plouhinec - Finistère,45365,observation-0610336e-a3eb-4305-bb9c-02a3cde0a3a2-4,https://biolit.fr/observations/observation-0610336e-a3eb-4305-bb9c-02a3cde0a3a2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090977.JPG,,FALSE, +N1,60038,sortie-0610336e-a3eb-4305-bb9c-02a3cde0a3a2,https://biolit.fr/sorties/sortie-0610336e-a3eb-4305-bb9c-02a3cde0a3a2/,Phil,,01/06/2018,15.0000000,15.0:35,48.004715000000,-4.523007000000,,Plouhinec - Finistère,45367,observation-0610336e-a3eb-4305-bb9c-02a3cde0a3a2-5,https://biolit.fr/observations/observation-0610336e-a3eb-4305-bb9c-02a3cde0a3a2-5/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1090979.JPG,,TRUE, +N1,60039,sortie-80adc9cb-0ad9-4df9-822f-47ce2be94973,https://biolit.fr/sorties/sortie-80adc9cb-0ad9-4df9-822f-47ce2be94973/,Raphaël,,1/31/2018 0:00,10.0000000,11.0:15,43.21508200000,5.342404000000,,Anse de la Maronaise Marseille,45369,observation-80adc9cb-0ad9-4df9-822f-47ce2be94973,https://biolit.fr/observations/observation-80adc9cb-0ad9-4df9-822f-47ce2be94973/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180130_105756[1]-scaled.jpg,,FALSE, +N1,60039,sortie-80adc9cb-0ad9-4df9-822f-47ce2be94973,https://biolit.fr/sorties/sortie-80adc9cb-0ad9-4df9-822f-47ce2be94973/,Raphaël,,1/31/2018 0:00,10.0000000,11.0:15,43.21508200000,5.342404000000,,Anse de la Maronaise Marseille,45371,observation-80adc9cb-0ad9-4df9-822f-47ce2be94973-2,https://biolit.fr/observations/observation-80adc9cb-0ad9-4df9-822f-47ce2be94973-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180130_105706[1]-scaled.jpg,,FALSE, +N1,60040,sortie-665390ff-8c2a-4743-80e7-702bbe83aeca,https://biolit.fr/sorties/sortie-665390ff-8c2a-4743-80e7-702bbe83aeca/,Raphaël,,1/31/2018 0:00,10.0000000,11.0:15,43.215189000000,5.342486000000,,Anse de la Maronaise,45373,observation-665390ff-8c2a-4743-80e7-702bbe83aeca,https://biolit.fr/observations/observation-665390ff-8c2a-4743-80e7-702bbe83aeca/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180130_110106-scaled.jpg,,FALSE, +N1,60040,sortie-665390ff-8c2a-4743-80e7-702bbe83aeca,https://biolit.fr/sorties/sortie-665390ff-8c2a-4743-80e7-702bbe83aeca/,Raphaël,,1/31/2018 0:00,10.0000000,11.0:15,43.215189000000,5.342486000000,,Anse de la Maronaise,45375,observation-665390ff-8c2a-4743-80e7-702bbe83aeca-2,https://biolit.fr/observations/observation-665390ff-8c2a-4743-80e7-702bbe83aeca-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180130_110102-scaled.jpg,,FALSE, +N1,60041,sortie-546ea191-24d2-4245-b2cb-b3d75d8c98df,https://biolit.fr/sorties/sortie-546ea191-24d2-4245-b2cb-b3d75d8c98df/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.266806000000,5.371182000000,,plage du ROUCAS BLANC,45377,observation-546ea191-24d2-4245-b2cb-b3d75d8c98df,https://biolit.fr/observations/observation-546ea191-24d2-4245-b2cb-b3d75d8c98df/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pagure des roches-Clibanarius erythropus.jpg,,FALSE, +N1,60041,sortie-546ea191-24d2-4245-b2cb-b3d75d8c98df,https://biolit.fr/sorties/sortie-546ea191-24d2-4245-b2cb-b3d75d8c98df/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.266806000000,5.371182000000,,plage du ROUCAS BLANC,45379,observation-546ea191-24d2-4245-b2cb-b3d75d8c98df-2,https://biolit.fr/observations/observation-546ea191-24d2-4245-b2cb-b3d75d8c98df-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/pince crabe.jpg,,FALSE, +N1,60042,sortie-c8ac5582-8701-437b-b732-9b846be80686,https://biolit.fr/sorties/sortie-c8ac5582-8701-437b-b732-9b846be80686/,Ville de Marseille Ecole Arenc Bachas CM2,,10/18/2017 0:00,10.0000000,12.0000000,43.266652000000,5.371300000000,,plage du Roucas Blanc,45381,observation-c8ac5582-8701-437b-b732-9b846be80686,https://biolit.fr/observations/observation-c8ac5582-8701-437b-b732-9b846be80686/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cerithe- Cerithium vulgatum-scaled.jpg,,FALSE, +N1,60042,sortie-c8ac5582-8701-437b-b732-9b846be80686,https://biolit.fr/sorties/sortie-c8ac5582-8701-437b-b732-9b846be80686/,Ville de Marseille Ecole Arenc Bachas CM2,,10/18/2017 0:00,10.0000000,12.0000000,43.266652000000,5.371300000000,,plage du Roucas Blanc,45383,observation-c8ac5582-8701-437b-b732-9b846be80686-2,https://biolit.fr/observations/observation-c8ac5582-8701-437b-b732-9b846be80686-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/ver marin.jpg,,FALSE, +N1,60043,sortie-ea787f63-1e8a-4534-9183-1b9f0d0c5d8e,https://biolit.fr/sorties/sortie-ea787f63-1e8a-4534-9183-1b9f0d0c5d8e/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.266657000000,5.371315000000,,plage du Roucas Blanc,45385,observation-ea787f63-1e8a-4534-9183-1b9f0d0c5d8e,https://biolit.fr/observations/observation-ea787f63-1e8a-4534-9183-1b9f0d0c5d8e/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Oursin pierre- Paracentrotus lividus.jpg,,TRUE, +N1,60043,sortie-ea787f63-1e8a-4534-9183-1b9f0d0c5d8e,https://biolit.fr/sorties/sortie-ea787f63-1e8a-4534-9183-1b9f0d0c5d8e/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.266657000000,5.371315000000,,plage du Roucas Blanc,45387,observation-ea787f63-1e8a-4534-9183-1b9f0d0c5d8e-2,https://biolit.fr/observations/observation-ea787f63-1e8a-4534-9183-1b9f0d0c5d8e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Dos crabe marbré-pachygrapsus marmoratus-scaled.jpg,,FALSE, +N1,60043,sortie-ea787f63-1e8a-4534-9183-1b9f0d0c5d8e,https://biolit.fr/sorties/sortie-ea787f63-1e8a-4534-9183-1b9f0d0c5d8e/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.266657000000,5.371315000000,,plage du Roucas Blanc,45389,observation-ea787f63-1e8a-4534-9183-1b9f0d0c5d8e-3,https://biolit.fr/observations/observation-ea787f63-1e8a-4534-9183-1b9f0d0c5d8e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ventre crabe marbré-Pachygrapsus marmoratus.-scaled.jpg,,FALSE, +N1,60044,sortie-990c081a-6dab-42d3-887b-76ebbc84f2a7,https://biolit.fr/sorties/sortie-990c081a-6dab-42d3-887b-76ebbc84f2a7/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.267629000000,5.370326000000,,base nautique du roucas blanc ,45391,observation-990c081a-6dab-42d3-887b-76ebbc84f2a7,https://biolit.fr/observations/observation-990c081a-6dab-42d3-887b-76ebbc84f2a7/,,,,https://biolit.fr/wp-content/uploads/2023/07/POSIDONIE-Posidonia oceanica-scaled.jpg,,FALSE, +N1,60044,sortie-990c081a-6dab-42d3-887b-76ebbc84f2a7,https://biolit.fr/sorties/sortie-990c081a-6dab-42d3-887b-76ebbc84f2a7/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.267629000000,5.370326000000,,base nautique du roucas blanc ,45392,observation-990c081a-6dab-42d3-887b-76ebbc84f2a7-2,https://biolit.fr/observations/observation-990c081a-6dab-42d3-887b-76ebbc84f2a7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/POSIDONIE-Posidonia oceanica-scaled.jpg,,FALSE, +N1,60045,sortie-8c793c8d-f960-4670-bdd4-b622e56f4498,https://biolit.fr/sorties/sortie-8c793c8d-f960-4670-bdd4-b622e56f4498/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.267694000000,5.370527000000,,base nautique du roucas blanc,45393,observation-8c793c8d-f960-4670-bdd4-b622e56f4498,https://biolit.fr/observations/observation-8c793c8d-f960-4670-bdd4-b622e56f4498/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crabe verruqueux- Eriphia verrucosa-scaled.jpg,,FALSE, +N1,60046,sortie-96137f39-0b67-43d6-aff4-73fff81e4191,https://biolit.fr/sorties/sortie-96137f39-0b67-43d6-aff4-73fff81e4191/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.266778000000,5.371321000000,,plage du Roucas Blanc,45395,observation-96137f39-0b67-43d6-aff4-73fff81e4191,https://biolit.fr/observations/observation-96137f39-0b67-43d6-aff4-73fff81e4191/,,,,https://biolit.fr/wp-content/uploads/2023/07/Dos Gibbule- Gibbula .jpg,,FALSE, +N1,60046,sortie-96137f39-0b67-43d6-aff4-73fff81e4191,https://biolit.fr/sorties/sortie-96137f39-0b67-43d6-aff4-73fff81e4191/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.266778000000,5.371321000000,,plage du Roucas Blanc,45397,observation-96137f39-0b67-43d6-aff4-73fff81e4191-2,https://biolit.fr/observations/observation-96137f39-0b67-43d6-aff4-73fff81e4191-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Profile Gibbule- Gibbula sp.jpg,,FALSE, +N1,60047,sortie-188bcfc7-2ba8-412a-8e68-722cc93788ea,https://biolit.fr/sorties/sortie-188bcfc7-2ba8-412a-8e68-722cc93788ea/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.266677000000,5.371313000000,,plage du Roucas Blanc,45399,observation-188bcfc7-2ba8-412a-8e68-722cc93788ea,https://biolit.fr/observations/observation-188bcfc7-2ba8-412a-8e68-722cc93788ea/,,,,https://biolit.fr/wp-content/uploads/2023/07/Grande Patelle _0.jpg,,FALSE, +N1,60047,sortie-188bcfc7-2ba8-412a-8e68-722cc93788ea,https://biolit.fr/sorties/sortie-188bcfc7-2ba8-412a-8e68-722cc93788ea/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.266677000000,5.371313000000,,plage du Roucas Blanc,45401,observation-188bcfc7-2ba8-412a-8e68-722cc93788ea-2,https://biolit.fr/observations/observation-188bcfc7-2ba8-412a-8e68-722cc93788ea-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/traces radula de la grande patelle.jpg,,FALSE, +N1,60048,sortie-aba544bc-b202-4982-b070-ae022a5b6189,https://biolit.fr/sorties/sortie-aba544bc-b202-4982-b070-ae022a5b6189/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.266636000000,5.371310000000,,Plage du Roucas Blanc,45403,observation-aba544bc-b202-4982-b070-ae022a5b6189,https://biolit.fr/observations/observation-aba544bc-b202-4982-b070-ae022a5b6189/,,,,https://biolit.fr/wp-content/uploads/2023/07/dessous Anomie pelure d'oignon-Anomia ephippium.jpg,,FALSE, +N1,60049,sortie-8a762546-9ed8-4a97-aee7-ab5ddd95b45a,https://biolit.fr/sorties/sortie-8a762546-9ed8-4a97-aee7-ab5ddd95b45a/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.26667100000,5.371270000000,,plage du Roucas Blanc,45405,observation-8a762546-9ed8-4a97-aee7-ab5ddd95b45a,https://biolit.fr/observations/observation-8a762546-9ed8-4a97-aee7-ab5ddd95b45a/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Astérie bossue-Asterina gibbosa.jpg,,TRUE, +N1,60049,sortie-8a762546-9ed8-4a97-aee7-ab5ddd95b45a,https://biolit.fr/sorties/sortie-8a762546-9ed8-4a97-aee7-ab5ddd95b45a/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.26667100000,5.371270000000,,plage du Roucas Blanc,45407,observation-8a762546-9ed8-4a97-aee7-ab5ddd95b45a-2,https://biolit.fr/observations/observation-8a762546-9ed8-4a97-aee7-ab5ddd95b45a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/plume-scaled.jpg,,FALSE, +N1,60050,sortie-cb8340f6-b2d0-4e59-a61d-f5dd9f4a9859,https://biolit.fr/sorties/sortie-cb8340f6-b2d0-4e59-a61d-f5dd9f4a9859/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.266727000000,5.371288000000,,plage du Roucas Blanc,45409,observation-cb8340f6-b2d0-4e59-a61d-f5dd9f4a9859,https://biolit.fr/observations/observation-cb8340f6-b2d0-4e59-a61d-f5dd9f4a9859/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/anemone de mer verte- anemonia viridis_1-scaled.jpg,,TRUE, +N1,60050,sortie-cb8340f6-b2d0-4e59-a61d-f5dd9f4a9859,https://biolit.fr/sorties/sortie-cb8340f6-b2d0-4e59-a61d-f5dd9f4a9859/,Ville de Marseille Ecole Arenc Bachas CM2,,12/18/2017 0:00,10.0000000,12.0000000,43.266727000000,5.371288000000,,plage du Roucas Blanc,45411,observation-cb8340f6-b2d0-4e59-a61d-f5dd9f4a9859-2,https://biolit.fr/observations/observation-cb8340f6-b2d0-4e59-a61d-f5dd9f4a9859-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidie Blanche-Phallusia mammillata_0-scaled.jpg,,FALSE, +N1,60051,sortie-64f09aa0-6273-4df3-b423-c5267494fcf1,https://biolit.fr/sorties/sortie-64f09aa0-6273-4df3-b423-c5267494fcf1/,Phil,,1/14/2018 0:00,13.0000000,13.000005,47.845523000000,-4.041640000000,,Mousterlin - Finistère,45413,observation-64f09aa0-6273-4df3-b423-c5267494fcf1,https://biolit.fr/observations/observation-64f09aa0-6273-4df3-b423-c5267494fcf1/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100346.JPG,,FALSE, +N1,60051,sortie-64f09aa0-6273-4df3-b423-c5267494fcf1,https://biolit.fr/sorties/sortie-64f09aa0-6273-4df3-b423-c5267494fcf1/,Phil,,1/14/2018 0:00,13.0000000,13.000005,47.845523000000,-4.041640000000,,Mousterlin - Finistère,45415,observation-64f09aa0-6273-4df3-b423-c5267494fcf1-2,https://biolit.fr/observations/observation-64f09aa0-6273-4df3-b423-c5267494fcf1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100345.JPG,,FALSE, +N1,60051,sortie-64f09aa0-6273-4df3-b423-c5267494fcf1,https://biolit.fr/sorties/sortie-64f09aa0-6273-4df3-b423-c5267494fcf1/,Phil,,1/14/2018 0:00,13.0000000,13.000005,47.845523000000,-4.041640000000,,Mousterlin - Finistère,45417,observation-64f09aa0-6273-4df3-b423-c5267494fcf1-3,https://biolit.fr/observations/observation-64f09aa0-6273-4df3-b423-c5267494fcf1-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100344.JPG,,FALSE, +N1,60051,sortie-64f09aa0-6273-4df3-b423-c5267494fcf1,https://biolit.fr/sorties/sortie-64f09aa0-6273-4df3-b423-c5267494fcf1/,Phil,,1/14/2018 0:00,13.0000000,13.000005,47.845523000000,-4.041640000000,,Mousterlin - Finistère,45419,observation-64f09aa0-6273-4df3-b423-c5267494fcf1-4,https://biolit.fr/observations/observation-64f09aa0-6273-4df3-b423-c5267494fcf1-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100350.JPG,,FALSE, +N1,60052,sortie-be0fc670-ae00-45e0-922d-8d4218d12dd8,https://biolit.fr/sorties/sortie-be0fc670-ae00-45e0-922d-8d4218d12dd8/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.280018000000,5.352481000000,,anse de la fausse monnaie,45421,observation-be0fc670-ae00-45e0-922d-8d4218d12dd8,https://biolit.fr/observations/observation-be0fc670-ae00-45e0-922d-8d4218d12dd8/,,,,https://biolit.fr/wp-content/uploads/2023/07/eponge-scaled.jpg,,FALSE, +N1,60052,sortie-be0fc670-ae00-45e0-922d-8d4218d12dd8,https://biolit.fr/sorties/sortie-be0fc670-ae00-45e0-922d-8d4218d12dd8/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.280018000000,5.352481000000,,anse de la fausse monnaie,45423,observation-be0fc670-ae00-45e0-922d-8d4218d12dd8-2,https://biolit.fr/observations/observation-be0fc670-ae00-45e0-922d-8d4218d12dd8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue rouge-scaled.jpg,,FALSE, +N1,60053,sortie-5ed78ecc-9209-456a-b391-b286861e3445,https://biolit.fr/sorties/sortie-5ed78ecc-9209-456a-b391-b286861e3445/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,16.0000000,43.280034000000,5.352531000000,,anse de la fausse monnaie,45425,observation-5ed78ecc-9209-456a-b391-b286861e3445,https://biolit.fr/observations/observation-5ed78ecc-9209-456a-b391-b286861e3445/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crabe marbré_Pachygrapsus marmoratus dos-scaled.jpg,,FALSE, +N1,60053,sortie-5ed78ecc-9209-456a-b391-b286861e3445,https://biolit.fr/sorties/sortie-5ed78ecc-9209-456a-b391-b286861e3445/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,16.0000000,43.280034000000,5.352531000000,,anse de la fausse monnaie,45427,observation-5ed78ecc-9209-456a-b391-b286861e3445-2,https://biolit.fr/observations/observation-5ed78ecc-9209-456a-b391-b286861e3445-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crabe marbré_Pachygrapsus marmoratus ventre-scaled.jpg,,FALSE, +N1,60054,sortie-b4df2c16-9ff7-4abb-a092-a3bd3eae3a69,https://biolit.fr/sorties/sortie-b4df2c16-9ff7-4abb-a092-a3bd3eae3a69/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.279938000000,5.352027000000,,anse de la fausse monnaie,45429,observation-b4df2c16-9ff7-4abb-a092-a3bd3eae3a69,https://biolit.fr/observations/observation-b4df2c16-9ff7-4abb-a092-a3bd3eae3a69/,,,,https://biolit.fr/wp-content/uploads/2023/07/Praire commune-Venus verrucosa exterieur-scaled.jpg,,FALSE, +N1,60054,sortie-b4df2c16-9ff7-4abb-a092-a3bd3eae3a69,https://biolit.fr/sorties/sortie-b4df2c16-9ff7-4abb-a092-a3bd3eae3a69/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.279938000000,5.352027000000,,anse de la fausse monnaie,45431,observation-b4df2c16-9ff7-4abb-a092-a3bd3eae3a69-2,https://biolit.fr/observations/observation-b4df2c16-9ff7-4abb-a092-a3bd3eae3a69-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Praire commune-Venus verrucosa interieur-scaled.jpg,,FALSE, +N1,60055,sortie-dffbd102-fce7-42e6-a90f-8f51b6da5742,https://biolit.fr/sorties/sortie-dffbd102-fce7-42e6-a90f-8f51b6da5742/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.279929000000,5.35238100000,,anse de la fausse monnaie,45433,observation-dffbd102-fce7-42e6-a90f-8f51b6da5742,https://biolit.fr/observations/observation-dffbd102-fce7-42e6-a90f-8f51b6da5742/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/ascidie rouge_halocynthia papillosa-scaled.jpg,,TRUE, +N1,60055,sortie-dffbd102-fce7-42e6-a90f-8f51b6da5742,https://biolit.fr/sorties/sortie-dffbd102-fce7-42e6-a90f-8f51b6da5742/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.279929000000,5.35238100000,,anse de la fausse monnaie,45435,observation-dffbd102-fce7-42e6-a90f-8f51b6da5742-2,https://biolit.fr/observations/observation-dffbd102-fce7-42e6-a90f-8f51b6da5742-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/moule mediterranéenne- mytilus galloprovincialis.JPG,,FALSE, +N1,60056,sortie-73e8b7bb-dc45-4d33-84df-ec24bc866a24,https://biolit.fr/sorties/sortie-73e8b7bb-dc45-4d33-84df-ec24bc866a24/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.280342000000,5.35276800000,,Anse de la fausse monnaie,45437,observation-73e8b7bb-dc45-4d33-84df-ec24bc866a24,https://biolit.fr/observations/observation-73e8b7bb-dc45-4d33-84df-ec24bc866a24/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/Columbelle rustique_ columbella rustica.JPG,,TRUE, +N1,60057,sortie-1eb3a01c-19da-4573-bdd1-fe6a07ae89b0,https://biolit.fr/sorties/sortie-1eb3a01c-19da-4573-bdd1-fe6a07ae89b0/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.279914000000,5.352461000000,,Anse de la fausse monnaie,45439,observation-1eb3a01c-19da-4573-bdd1-fe6a07ae89b0,https://biolit.fr/observations/observation-1eb3a01c-19da-4573-bdd1-fe6a07ae89b0/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/posidonie_posidonia oceanica-scaled.jpg,,TRUE, +N1,60058,sortie-8dd9a505-ee9e-4423-9264-7660729fb866,https://biolit.fr/sorties/sortie-8dd9a505-ee9e-4423-9264-7660729fb866/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.279907000000,5.352375000000,,anse de la fausse monnaie,45441,observation-8dd9a505-ee9e-4423-9264-7660729fb866,https://biolit.fr/observations/observation-8dd9a505-ee9e-4423-9264-7660729fb866/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cone de mediterranee-conus ventricosus ouverture-scaled.jpg,,FALSE, +N1,60058,sortie-8dd9a505-ee9e-4423-9264-7660729fb866,https://biolit.fr/sorties/sortie-8dd9a505-ee9e-4423-9264-7660729fb866/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.279907000000,5.352375000000,,anse de la fausse monnaie,45443,observation-8dd9a505-ee9e-4423-9264-7660729fb866-2,https://biolit.fr/observations/observation-8dd9a505-ee9e-4423-9264-7660729fb866-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cone de mediterranee-conus ventricosus-scaled.jpg,,FALSE, +N1,60059,sortie-66ace506-e0e2-49a9-9e5a-93c6ee4461d5,https://biolit.fr/sorties/sortie-66ace506-e0e2-49a9-9e5a-93c6ee4461d5/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.279945000000,5.352460000000,,anse de la fausse monnaie,45445,observation-66ace506-e0e2-49a9-9e5a-93c6ee4461d5,https://biolit.fr/observations/observation-66ace506-e0e2-49a9-9e5a-93c6ee4461d5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mue de crabe innconu dos.JPG,,FALSE, +N1,60059,sortie-66ace506-e0e2-49a9-9e5a-93c6ee4461d5,https://biolit.fr/sorties/sortie-66ace506-e0e2-49a9-9e5a-93c6ee4461d5/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.279945000000,5.352460000000,,anse de la fausse monnaie,45447,observation-66ace506-e0e2-49a9-9e5a-93c6ee4461d5-2,https://biolit.fr/observations/observation-66ace506-e0e2-49a9-9e5a-93c6ee4461d5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/mue de crabe innconu ventre-scaled.jpg,,FALSE, +N1,60060,sortie-e3451357-348a-4073-bf1b-427ae6b7841d,https://biolit.fr/sorties/sortie-e3451357-348a-4073-bf1b-427ae6b7841d/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.280366000000,5.352793000000,,anse de la fausse monnaie,45449,observation-e3451357-348a-4073-bf1b-427ae6b7841d,https://biolit.fr/observations/observation-e3451357-348a-4073-bf1b-427ae6b7841d/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/anémone solaire-Cereus pedunculatus 2-scaled.jpg,,TRUE, +N1,60060,sortie-e3451357-348a-4073-bf1b-427ae6b7841d,https://biolit.fr/sorties/sortie-e3451357-348a-4073-bf1b-427ae6b7841d/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.280366000000,5.352793000000,,anse de la fausse monnaie,45451,observation-e3451357-348a-4073-bf1b-427ae6b7841d-2,https://biolit.fr/observations/observation-e3451357-348a-4073-bf1b-427ae6b7841d-2/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/anémone solaire-Cereus pedunculatus 3.JPG,,TRUE, +N1,60061,sortie-a25b895b-8217-4377-ba0d-f87b67866234,https://biolit.fr/sorties/sortie-a25b895b-8217-4377-ba0d-f87b67866234/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.280352000000,5.352756000000,,Anse de la fausse monnaie,45455,observation-a25b895b-8217-4377-ba0d-f87b67866234-2,https://biolit.fr/observations/observation-a25b895b-8217-4377-ba0d-f87b67866234-2/,Stramonita haemastoma,Bouche de sang,,https://biolit.fr/wp-content/uploads/2023/07/Bouche de sang- Stramonita haemastoma ouverture -scaled.jpg,,TRUE, +N1,60062,sortie-a8080271-c5b7-4812-b1aa-3c2d2f7430c6,https://biolit.fr/sorties/sortie-a8080271-c5b7-4812-b1aa-3c2d2f7430c6/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.280376000000,5.352815000000,,anse de la fausse monnaie ,45457,observation-a8080271-c5b7-4812-b1aa-3c2d2f7430c6,https://biolit.fr/observations/observation-a8080271-c5b7-4812-b1aa-3c2d2f7430c6/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/Astrée rugueuse_Bolma rugosa dos -scaled.jpg,,TRUE, +N1,60062,sortie-a8080271-c5b7-4812-b1aa-3c2d2f7430c6,https://biolit.fr/sorties/sortie-a8080271-c5b7-4812-b1aa-3c2d2f7430c6/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.280376000000,5.352815000000,,anse de la fausse monnaie ,45459,observation-a8080271-c5b7-4812-b1aa-3c2d2f7430c6-2,https://biolit.fr/observations/observation-a8080271-c5b7-4812-b1aa-3c2d2f7430c6-2/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/Astrée rugueuse_Bolma rugosa ouverture-scaled.jpg,,TRUE, +N1,60063,sortie-c86cc78f-c20a-4cf3-bbe8-a4d486cbb197,https://biolit.fr/sorties/sortie-c86cc78f-c20a-4cf3-bbe8-a4d486cbb197/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.279947000000,5.352444000000,,Anse de la fausse monnaie,45461,observation-c86cc78f-c20a-4cf3-bbe8-a4d486cbb197,https://biolit.fr/observations/observation-c86cc78f-c20a-4cf3-bbe8-a4d486cbb197/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/anémone solaire-Cereus pedunculatus 1-scaled.jpg,,TRUE, +N1,60063,sortie-c86cc78f-c20a-4cf3-bbe8-a4d486cbb197,https://biolit.fr/sorties/sortie-c86cc78f-c20a-4cf3-bbe8-a4d486cbb197/,ville de Marseille Révolution CM2,,1/15/2018 0:00,10.0000000,12.0000000,43.279947000000,5.352444000000,,Anse de la fausse monnaie,45463,observation-c86cc78f-c20a-4cf3-bbe8-a4d486cbb197-2,https://biolit.fr/observations/observation-c86cc78f-c20a-4cf3-bbe8-a4d486cbb197-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Littorine bleue_Melarhaphe neritoides.JPG,,FALSE, +N1,60064,sortie-2b0b6f98-c84a-46d7-9380-41f3ddba0f88,https://biolit.fr/sorties/sortie-2b0b6f98-c84a-46d7-9380-41f3ddba0f88/,Phil,,01/06/2018,15.0:15,15.0000000,48.004602000000,-4.520769000000,,Plouhinec - Finistère,45465,observation-2b0b6f98-c84a-46d7-9380-41f3ddba0f88,https://biolit.fr/observations/observation-2b0b6f98-c84a-46d7-9380-41f3ddba0f88/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1090955.JPG,,TRUE, +N1,60064,sortie-2b0b6f98-c84a-46d7-9380-41f3ddba0f88,https://biolit.fr/sorties/sortie-2b0b6f98-c84a-46d7-9380-41f3ddba0f88/,Phil,,01/06/2018,15.0:15,15.0000000,48.004602000000,-4.520769000000,,Plouhinec - Finistère,45467,observation-2b0b6f98-c84a-46d7-9380-41f3ddba0f88-2,https://biolit.fr/observations/observation-2b0b6f98-c84a-46d7-9380-41f3ddba0f88-2/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1090959.JPG,,TRUE, +N1,60064,sortie-2b0b6f98-c84a-46d7-9380-41f3ddba0f88,https://biolit.fr/sorties/sortie-2b0b6f98-c84a-46d7-9380-41f3ddba0f88/,Phil,,01/06/2018,15.0:15,15.0000000,48.004602000000,-4.520769000000,,Plouhinec - Finistère,45469,observation-2b0b6f98-c84a-46d7-9380-41f3ddba0f88-3,https://biolit.fr/observations/observation-2b0b6f98-c84a-46d7-9380-41f3ddba0f88-3/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1090960.JPG,,TRUE, +N1,60064,sortie-2b0b6f98-c84a-46d7-9380-41f3ddba0f88,https://biolit.fr/sorties/sortie-2b0b6f98-c84a-46d7-9380-41f3ddba0f88/,Phil,,01/06/2018,15.0:15,15.0000000,48.004602000000,-4.520769000000,,Plouhinec - Finistère,45471,observation-2b0b6f98-c84a-46d7-9380-41f3ddba0f88-4,https://biolit.fr/observations/observation-2b0b6f98-c84a-46d7-9380-41f3ddba0f88-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090963.JPG,,FALSE, +N1,60064,sortie-2b0b6f98-c84a-46d7-9380-41f3ddba0f88,https://biolit.fr/sorties/sortie-2b0b6f98-c84a-46d7-9380-41f3ddba0f88/,Phil,,01/06/2018,15.0:15,15.0000000,48.004602000000,-4.520769000000,,Plouhinec - Finistère,45473,observation-2b0b6f98-c84a-46d7-9380-41f3ddba0f88-5,https://biolit.fr/observations/observation-2b0b6f98-c84a-46d7-9380-41f3ddba0f88-5/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1090965.JPG,,TRUE, +N1,60065,sortie-059d13c0-fe1e-4237-bfc6-1436e625c92e,https://biolit.fr/sorties/sortie-059d13c0-fe1e-4237-bfc6-1436e625c92e/,Phil,,1/14/2018 0:00,12.0:35,12.0000000,47.843840000000,-4.040012000000,,Mousterlin - Finistère,45475,observation-059d13c0-fe1e-4237-bfc6-1436e625c92e,https://biolit.fr/observations/observation-059d13c0-fe1e-4237-bfc6-1436e625c92e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100299.JPG,,FALSE, +N1,60065,sortie-059d13c0-fe1e-4237-bfc6-1436e625c92e,https://biolit.fr/sorties/sortie-059d13c0-fe1e-4237-bfc6-1436e625c92e/,Phil,,1/14/2018 0:00,12.0:35,12.0000000,47.843840000000,-4.040012000000,,Mousterlin - Finistère,45477,observation-059d13c0-fe1e-4237-bfc6-1436e625c92e-2,https://biolit.fr/observations/observation-059d13c0-fe1e-4237-bfc6-1436e625c92e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100297.JPG,,FALSE, +N1,60065,sortie-059d13c0-fe1e-4237-bfc6-1436e625c92e,https://biolit.fr/sorties/sortie-059d13c0-fe1e-4237-bfc6-1436e625c92e/,Phil,,1/14/2018 0:00,12.0:35,12.0000000,47.843840000000,-4.040012000000,,Mousterlin - Finistère,45479,observation-059d13c0-fe1e-4237-bfc6-1436e625c92e-3,https://biolit.fr/observations/observation-059d13c0-fe1e-4237-bfc6-1436e625c92e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100292.JPG,,FALSE, +N1,60065,sortie-059d13c0-fe1e-4237-bfc6-1436e625c92e,https://biolit.fr/sorties/sortie-059d13c0-fe1e-4237-bfc6-1436e625c92e/,Phil,,1/14/2018 0:00,12.0:35,12.0000000,47.843840000000,-4.040012000000,,Mousterlin - Finistère,45481,observation-059d13c0-fe1e-4237-bfc6-1436e625c92e-4,https://biolit.fr/observations/observation-059d13c0-fe1e-4237-bfc6-1436e625c92e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100290.JPG,,FALSE, +N1,60066,sortie-b3414a9e-02b9-4030-835c-c132c96fab66,https://biolit.fr/sorties/sortie-b3414a9e-02b9-4030-835c-c132c96fab66/,mortiereric,,1/28/2018 0:00,12.0000000,14.0000000,50.215254000000,1.551881000000,,Le Hourdel ,45483,observation-b3414a9e-02b9-4030-835c-c132c96fab66,https://biolit.fr/observations/observation-b3414a9e-02b9-4030-835c-c132c96fab66/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020116.JPG,,FALSE, +N1,60066,sortie-b3414a9e-02b9-4030-835c-c132c96fab66,https://biolit.fr/sorties/sortie-b3414a9e-02b9-4030-835c-c132c96fab66/,mortiereric,,1/28/2018 0:00,12.0000000,14.0000000,50.215254000000,1.551881000000,,Le Hourdel ,45485,observation-b3414a9e-02b9-4030-835c-c132c96fab66-2,https://biolit.fr/observations/observation-b3414a9e-02b9-4030-835c-c132c96fab66-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020115.JPG,,FALSE, +N1,60066,sortie-b3414a9e-02b9-4030-835c-c132c96fab66,https://biolit.fr/sorties/sortie-b3414a9e-02b9-4030-835c-c132c96fab66/,mortiereric,,1/28/2018 0:00,12.0000000,14.0000000,50.215254000000,1.551881000000,,Le Hourdel ,45487,observation-b3414a9e-02b9-4030-835c-c132c96fab66-3,https://biolit.fr/observations/observation-b3414a9e-02b9-4030-835c-c132c96fab66-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020114.JPG,,FALSE, +N1,60066,sortie-b3414a9e-02b9-4030-835c-c132c96fab66,https://biolit.fr/sorties/sortie-b3414a9e-02b9-4030-835c-c132c96fab66/,mortiereric,,1/28/2018 0:00,12.0000000,14.0000000,50.215254000000,1.551881000000,,Le Hourdel ,45489,observation-b3414a9e-02b9-4030-835c-c132c96fab66-4,https://biolit.fr/observations/observation-b3414a9e-02b9-4030-835c-c132c96fab66-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020113_0.JPG,,FALSE, +N1,60066,sortie-b3414a9e-02b9-4030-835c-c132c96fab66,https://biolit.fr/sorties/sortie-b3414a9e-02b9-4030-835c-c132c96fab66/,mortiereric,,1/28/2018 0:00,12.0000000,14.0000000,50.215254000000,1.551881000000,,Le Hourdel ,45491,observation-b3414a9e-02b9-4030-835c-c132c96fab66-5,https://biolit.fr/observations/observation-b3414a9e-02b9-4030-835c-c132c96fab66-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020112.JPG,,FALSE, +N1,60066,sortie-b3414a9e-02b9-4030-835c-c132c96fab66,https://biolit.fr/sorties/sortie-b3414a9e-02b9-4030-835c-c132c96fab66/,mortiereric,,1/28/2018 0:00,12.0000000,14.0000000,50.215254000000,1.551881000000,,Le Hourdel ,45493,observation-b3414a9e-02b9-4030-835c-c132c96fab66-6,https://biolit.fr/observations/observation-b3414a9e-02b9-4030-835c-c132c96fab66-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020111.JPG,,FALSE, +N1,60066,sortie-b3414a9e-02b9-4030-835c-c132c96fab66,https://biolit.fr/sorties/sortie-b3414a9e-02b9-4030-835c-c132c96fab66/,mortiereric,,1/28/2018 0:00,12.0000000,14.0000000,50.215254000000,1.551881000000,,Le Hourdel ,45495,observation-b3414a9e-02b9-4030-835c-c132c96fab66-7,https://biolit.fr/observations/observation-b3414a9e-02b9-4030-835c-c132c96fab66-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020108.JPG,,FALSE, +N1,60067,sortie-15ba923f-e8fc-47ac-9df8-fb2a664b00c6,https://biolit.fr/sorties/sortie-15ba923f-e8fc-47ac-9df8-fb2a664b00c6/,Phil,,1/17/2018 0:00,16.000005,16.0000000,48.206048000000,-4.331973000000,,Argol Finistère,45497,observation-15ba923f-e8fc-47ac-9df8-fb2a664b00c6,https://biolit.fr/observations/observation-15ba923f-e8fc-47ac-9df8-fb2a664b00c6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180117_161209.jpg,,FALSE, +N1,60067,sortie-15ba923f-e8fc-47ac-9df8-fb2a664b00c6,https://biolit.fr/sorties/sortie-15ba923f-e8fc-47ac-9df8-fb2a664b00c6/,Phil,,1/17/2018 0:00,16.000005,16.0000000,48.206048000000,-4.331973000000,,Argol Finistère,45499,observation-15ba923f-e8fc-47ac-9df8-fb2a664b00c6-2,https://biolit.fr/observations/observation-15ba923f-e8fc-47ac-9df8-fb2a664b00c6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180117_161242.jpg,,FALSE, +N1,60067,sortie-15ba923f-e8fc-47ac-9df8-fb2a664b00c6,https://biolit.fr/sorties/sortie-15ba923f-e8fc-47ac-9df8-fb2a664b00c6/,Phil,,1/17/2018 0:00,16.000005,16.0000000,48.206048000000,-4.331973000000,,Argol Finistère,45501,observation-15ba923f-e8fc-47ac-9df8-fb2a664b00c6-3,https://biolit.fr/observations/observation-15ba923f-e8fc-47ac-9df8-fb2a664b00c6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180117_161335.jpg,,FALSE, +N1,60067,sortie-15ba923f-e8fc-47ac-9df8-fb2a664b00c6,https://biolit.fr/sorties/sortie-15ba923f-e8fc-47ac-9df8-fb2a664b00c6/,Phil,,1/17/2018 0:00,16.000005,16.0000000,48.206048000000,-4.331973000000,,Argol Finistère,45503,observation-15ba923f-e8fc-47ac-9df8-fb2a664b00c6-4,https://biolit.fr/observations/observation-15ba923f-e8fc-47ac-9df8-fb2a664b00c6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180117_160553.jpg,,FALSE, +N1,60067,sortie-15ba923f-e8fc-47ac-9df8-fb2a664b00c6,https://biolit.fr/sorties/sortie-15ba923f-e8fc-47ac-9df8-fb2a664b00c6/,Phil,,1/17/2018 0:00,16.000005,16.0000000,48.206048000000,-4.331973000000,,Argol Finistère,45505,observation-15ba923f-e8fc-47ac-9df8-fb2a664b00c6-5,https://biolit.fr/observations/observation-15ba923f-e8fc-47ac-9df8-fb2a664b00c6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180117_160718.jpg,,FALSE, +N1,60068,sortie-5df35de7-d4e7-4e16-8a5f-6a927d2606ed,https://biolit.fr/sorties/sortie-5df35de7-d4e7-4e16-8a5f-6a927d2606ed/,Phil,,1/14/2018 0:00,11.0:55,12.0000000,47.852184000000,-4.025795000000,,Mousterlin - Finistère,45507,observation-5df35de7-d4e7-4e16-8a5f-6a927d2606ed,https://biolit.fr/observations/observation-5df35de7-d4e7-4e16-8a5f-6a927d2606ed/,Fulica atra,Foulque macroule,,https://biolit.fr/wp-content/uploads/2023/07/P1100271.JPG,,TRUE, +N1,60068,sortie-5df35de7-d4e7-4e16-8a5f-6a927d2606ed,https://biolit.fr/sorties/sortie-5df35de7-d4e7-4e16-8a5f-6a927d2606ed/,Phil,,1/14/2018 0:00,11.0:55,12.0000000,47.852184000000,-4.025795000000,,Mousterlin - Finistère,45509,observation-5df35de7-d4e7-4e16-8a5f-6a927d2606ed-2,https://biolit.fr/observations/observation-5df35de7-d4e7-4e16-8a5f-6a927d2606ed-2/,Fulica atra,Foulque macroule,,https://biolit.fr/wp-content/uploads/2023/07/P1100238.JPG,,TRUE, +N1,60068,sortie-5df35de7-d4e7-4e16-8a5f-6a927d2606ed,https://biolit.fr/sorties/sortie-5df35de7-d4e7-4e16-8a5f-6a927d2606ed/,Phil,,1/14/2018 0:00,11.0:55,12.0000000,47.852184000000,-4.025795000000,,Mousterlin - Finistère,45511,observation-5df35de7-d4e7-4e16-8a5f-6a927d2606ed-3,https://biolit.fr/observations/observation-5df35de7-d4e7-4e16-8a5f-6a927d2606ed-3/,Fulica atra,Foulque macroule,,https://biolit.fr/wp-content/uploads/2023/07/P1100245.JPG,,TRUE, +N1,60068,sortie-5df35de7-d4e7-4e16-8a5f-6a927d2606ed,https://biolit.fr/sorties/sortie-5df35de7-d4e7-4e16-8a5f-6a927d2606ed/,Phil,,1/14/2018 0:00,11.0:55,12.0000000,47.852184000000,-4.025795000000,,Mousterlin - Finistère,45513,observation-5df35de7-d4e7-4e16-8a5f-6a927d2606ed-4,https://biolit.fr/observations/observation-5df35de7-d4e7-4e16-8a5f-6a927d2606ed-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100243.JPG,,FALSE, +N1,60069,sortie-adb15326-2b5f-4d42-a006-81a5f203ae90,https://biolit.fr/sorties/sortie-adb15326-2b5f-4d42-a006-81a5f203ae90/,Phil,,1/17/2018 0:00,15.0:55,16.0000000,48.204054000000,-4.321062000000,,Argol - Finistère,45515,observation-adb15326-2b5f-4d42-a006-81a5f203ae90,https://biolit.fr/observations/observation-adb15326-2b5f-4d42-a006-81a5f203ae90/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180117_155521.jpg,,FALSE, +N1,60070,sortie-f9add30b-6efe-410a-b807-18f694d792aa,https://biolit.fr/sorties/sortie-f9add30b-6efe-410a-b807-18f694d792aa/,Association Avril - Vigie des havres,,1/22/2018 0:00,14.0000000,15.0000000,49.026722000000,-1.597600000000,,agon coutainville ,45517,observation-f9add30b-6efe-410a-b807-18f694d792aa,https://biolit.fr/observations/observation-f9add30b-6efe-410a-b807-18f694d792aa/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180122_144836.jpg,,FALSE, +N1,60070,sortie-f9add30b-6efe-410a-b807-18f694d792aa,https://biolit.fr/sorties/sortie-f9add30b-6efe-410a-b807-18f694d792aa/,Association Avril - Vigie des havres,,1/22/2018 0:00,14.0000000,15.0000000,49.026722000000,-1.597600000000,,agon coutainville ,45519,observation-f9add30b-6efe-410a-b807-18f694d792aa-2,https://biolit.fr/observations/observation-f9add30b-6efe-410a-b807-18f694d792aa-2/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/20180122_144933.jpg,,TRUE, +N1,60071,sortie-03742251-8c33-4e33-84d8-cc60d68ad9f4,https://biolit.fr/sorties/sortie-03742251-8c33-4e33-84d8-cc60d68ad9f4/,Phil,,01/06/2018,15.0:15,15.0:25,48.004600000000,-4.523135000000,,Plouhinec - Finistère,45521,observation-03742251-8c33-4e33-84d8-cc60d68ad9f4,https://biolit.fr/observations/observation-03742251-8c33-4e33-84d8-cc60d68ad9f4/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1090942.JPG,,TRUE, +N1,60071,sortie-03742251-8c33-4e33-84d8-cc60d68ad9f4,https://biolit.fr/sorties/sortie-03742251-8c33-4e33-84d8-cc60d68ad9f4/,Phil,,01/06/2018,15.0:15,15.0:25,48.004600000000,-4.523135000000,,Plouhinec - Finistère,45523,observation-03742251-8c33-4e33-84d8-cc60d68ad9f4-2,https://biolit.fr/observations/observation-03742251-8c33-4e33-84d8-cc60d68ad9f4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090951.JPG,,FALSE, +N1,60071,sortie-03742251-8c33-4e33-84d8-cc60d68ad9f4,https://biolit.fr/sorties/sortie-03742251-8c33-4e33-84d8-cc60d68ad9f4/,Phil,,01/06/2018,15.0:15,15.0:25,48.004600000000,-4.523135000000,,Plouhinec - Finistère,45525,observation-03742251-8c33-4e33-84d8-cc60d68ad9f4-3,https://biolit.fr/observations/observation-03742251-8c33-4e33-84d8-cc60d68ad9f4-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090946.JPG,,FALSE, +N1,60071,sortie-03742251-8c33-4e33-84d8-cc60d68ad9f4,https://biolit.fr/sorties/sortie-03742251-8c33-4e33-84d8-cc60d68ad9f4/,Phil,,01/06/2018,15.0:15,15.0:25,48.004600000000,-4.523135000000,,Plouhinec - Finistère,45527,observation-03742251-8c33-4e33-84d8-cc60d68ad9f4-4,https://biolit.fr/observations/observation-03742251-8c33-4e33-84d8-cc60d68ad9f4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090937.JPG,,FALSE, +N1,60071,sortie-03742251-8c33-4e33-84d8-cc60d68ad9f4,https://biolit.fr/sorties/sortie-03742251-8c33-4e33-84d8-cc60d68ad9f4/,Phil,,01/06/2018,15.0:15,15.0:25,48.004600000000,-4.523135000000,,Plouhinec - Finistère,45529,observation-03742251-8c33-4e33-84d8-cc60d68ad9f4-5,https://biolit.fr/observations/observation-03742251-8c33-4e33-84d8-cc60d68ad9f4-5/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1090949.JPG,,TRUE, +N1,60072,sortie-f266ed7e-1ca9-49c4-99dc-6ac08cc1b014,https://biolit.fr/sorties/sortie-f266ed7e-1ca9-49c4-99dc-6ac08cc1b014/,Phil,,1/17/2018 0:00,16.0:15,16.0000000,48.206465000000,-4.332598000000,,Teglruc sur Mer - Finistère,45531,observation-f266ed7e-1ca9-49c4-99dc-6ac08cc1b014,https://biolit.fr/observations/observation-f266ed7e-1ca9-49c4-99dc-6ac08cc1b014/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/20180117_161304.jpg,,TRUE, +N1,60072,sortie-f266ed7e-1ca9-49c4-99dc-6ac08cc1b014,https://biolit.fr/sorties/sortie-f266ed7e-1ca9-49c4-99dc-6ac08cc1b014/,Phil,,1/17/2018 0:00,16.0:15,16.0000000,48.206465000000,-4.332598000000,,Teglruc sur Mer - Finistère,45533,observation-f266ed7e-1ca9-49c4-99dc-6ac08cc1b014-2,https://biolit.fr/observations/observation-f266ed7e-1ca9-49c4-99dc-6ac08cc1b014-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180117_161416.jpg,,FALSE, +N1,60072,sortie-f266ed7e-1ca9-49c4-99dc-6ac08cc1b014,https://biolit.fr/sorties/sortie-f266ed7e-1ca9-49c4-99dc-6ac08cc1b014/,Phil,,1/17/2018 0:00,16.0:15,16.0000000,48.206465000000,-4.332598000000,,Teglruc sur Mer - Finistère,45535,observation-f266ed7e-1ca9-49c4-99dc-6ac08cc1b014-3,https://biolit.fr/observations/observation-f266ed7e-1ca9-49c4-99dc-6ac08cc1b014-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180117_161639.jpg,,FALSE, +N1,60072,sortie-f266ed7e-1ca9-49c4-99dc-6ac08cc1b014,https://biolit.fr/sorties/sortie-f266ed7e-1ca9-49c4-99dc-6ac08cc1b014/,Phil,,1/17/2018 0:00,16.0:15,16.0000000,48.206465000000,-4.332598000000,,Teglruc sur Mer - Finistère,45537,observation-f266ed7e-1ca9-49c4-99dc-6ac08cc1b014-4,https://biolit.fr/observations/observation-f266ed7e-1ca9-49c4-99dc-6ac08cc1b014-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180117_161532.jpg,,FALSE, +N1,60073,sortie-369ec732-45bb-482b-85b0-2a45015d95da,https://biolit.fr/sorties/sortie-369ec732-45bb-482b-85b0-2a45015d95da/,Association Avril - Vigie des havres,,1/18/2018 0:00,15.0000000,16.0000000,49.030082000000,-1.5987850000,,plage de coutainville,45539,observation-369ec732-45bb-482b-85b0-2a45015d95da,https://biolit.fr/observations/observation-369ec732-45bb-482b-85b0-2a45015d95da/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/20180118_154502-rotated.jpg,,TRUE, +N1,60073,sortie-369ec732-45bb-482b-85b0-2a45015d95da,https://biolit.fr/sorties/sortie-369ec732-45bb-482b-85b0-2a45015d95da/,Association Avril - Vigie des havres,,1/18/2018 0:00,15.0000000,16.0000000,49.030082000000,-1.5987850000,,plage de coutainville,45541,observation-369ec732-45bb-482b-85b0-2a45015d95da-2,https://biolit.fr/observations/observation-369ec732-45bb-482b-85b0-2a45015d95da-2/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/20180118_154420-rotated.jpg,,TRUE, +N1,60074,sortie-17a11541-a591-421f-a8b4-7975a48073aa,https://biolit.fr/sorties/sortie-17a11541-a591-421f-a8b4-7975a48073aa/,Phil,,1/14/2018 0:00,12.0000000,12.0:55,47.845766000000,-4.038443000000,,Mousterlin - Finistère,45543,observation-17a11541-a591-421f-a8b4-7975a48073aa,https://biolit.fr/observations/observation-17a11541-a591-421f-a8b4-7975a48073aa/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100321.JPG,,FALSE, +N1,60074,sortie-17a11541-a591-421f-a8b4-7975a48073aa,https://biolit.fr/sorties/sortie-17a11541-a591-421f-a8b4-7975a48073aa/,Phil,,1/14/2018 0:00,12.0000000,12.0:55,47.845766000000,-4.038443000000,,Mousterlin - Finistère,45545,observation-17a11541-a591-421f-a8b4-7975a48073aa-2,https://biolit.fr/observations/observation-17a11541-a591-421f-a8b4-7975a48073aa-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100309.JPG,,FALSE, +N1,60074,sortie-17a11541-a591-421f-a8b4-7975a48073aa,https://biolit.fr/sorties/sortie-17a11541-a591-421f-a8b4-7975a48073aa/,Phil,,1/14/2018 0:00,12.0000000,12.0:55,47.845766000000,-4.038443000000,,Mousterlin - Finistère,45547,observation-17a11541-a591-421f-a8b4-7975a48073aa-3,https://biolit.fr/observations/observation-17a11541-a591-421f-a8b4-7975a48073aa-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100320.JPG,,FALSE, +N1,60074,sortie-17a11541-a591-421f-a8b4-7975a48073aa,https://biolit.fr/sorties/sortie-17a11541-a591-421f-a8b4-7975a48073aa/,Phil,,1/14/2018 0:00,12.0000000,12.0:55,47.845766000000,-4.038443000000,,Mousterlin - Finistère,45549,observation-17a11541-a591-421f-a8b4-7975a48073aa-4,https://biolit.fr/observations/observation-17a11541-a591-421f-a8b4-7975a48073aa-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100325.JPG,,FALSE, +N1,60075,sortie-28981a4e-458b-427c-863e-b6896924b948,https://biolit.fr/sorties/sortie-28981a4e-458b-427c-863e-b6896924b948/,Phil,,1/17/2018 0:00,16.0000000,16.000005,48.20638700000,-4.332566000000,,Telgruc sur Mer - Finistère,45551,observation-28981a4e-458b-427c-863e-b6896924b948,https://biolit.fr/observations/observation-28981a4e-458b-427c-863e-b6896924b948/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180117_160216.jpg,,FALSE, +N1,60075,sortie-28981a4e-458b-427c-863e-b6896924b948,https://biolit.fr/sorties/sortie-28981a4e-458b-427c-863e-b6896924b948/,Phil,,1/17/2018 0:00,16.0000000,16.000005,48.20638700000,-4.332566000000,,Telgruc sur Mer - Finistère,45553,observation-28981a4e-458b-427c-863e-b6896924b948-2,https://biolit.fr/observations/observation-28981a4e-458b-427c-863e-b6896924b948-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180117_160235.jpg,,FALSE, +N1,60075,sortie-28981a4e-458b-427c-863e-b6896924b948,https://biolit.fr/sorties/sortie-28981a4e-458b-427c-863e-b6896924b948/,Phil,,1/17/2018 0:00,16.0000000,16.000005,48.20638700000,-4.332566000000,,Telgruc sur Mer - Finistère,45555,observation-28981a4e-458b-427c-863e-b6896924b948-3,https://biolit.fr/observations/observation-28981a4e-458b-427c-863e-b6896924b948-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180117_160255.jpg,,FALSE, +N1,60075,sortie-28981a4e-458b-427c-863e-b6896924b948,https://biolit.fr/sorties/sortie-28981a4e-458b-427c-863e-b6896924b948/,Phil,,1/17/2018 0:00,16.0000000,16.000005,48.20638700000,-4.332566000000,,Telgruc sur Mer - Finistère,45557,observation-28981a4e-458b-427c-863e-b6896924b948-4,https://biolit.fr/observations/observation-28981a4e-458b-427c-863e-b6896924b948-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180117_160406.jpg,,FALSE, +N1,60076,sortie-ffe69c02-b48b-4a48-aae2-8c20531df28b,https://biolit.fr/sorties/sortie-ffe69c02-b48b-4a48-aae2-8c20531df28b/,Phil,,1/14/2018 0:00,12.0:25,12.0000000,47.843894000000,-4.042891000000,,Mousterlin - Finistère,45559,observation-ffe69c02-b48b-4a48-aae2-8c20531df28b,https://biolit.fr/observations/observation-ffe69c02-b48b-4a48-aae2-8c20531df28b/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100287.JPG,,FALSE, +N1,60076,sortie-ffe69c02-b48b-4a48-aae2-8c20531df28b,https://biolit.fr/sorties/sortie-ffe69c02-b48b-4a48-aae2-8c20531df28b/,Phil,,1/14/2018 0:00,12.0:25,12.0000000,47.843894000000,-4.042891000000,,Mousterlin - Finistère,45561,observation-ffe69c02-b48b-4a48-aae2-8c20531df28b-2,https://biolit.fr/observations/observation-ffe69c02-b48b-4a48-aae2-8c20531df28b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100285.JPG,,FALSE, +N1,60076,sortie-ffe69c02-b48b-4a48-aae2-8c20531df28b,https://biolit.fr/sorties/sortie-ffe69c02-b48b-4a48-aae2-8c20531df28b/,Phil,,1/14/2018 0:00,12.0:25,12.0000000,47.843894000000,-4.042891000000,,Mousterlin - Finistère,45563,observation-ffe69c02-b48b-4a48-aae2-8c20531df28b-3,https://biolit.fr/observations/observation-ffe69c02-b48b-4a48-aae2-8c20531df28b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100278.JPG,,FALSE, +N1,60076,sortie-ffe69c02-b48b-4a48-aae2-8c20531df28b,https://biolit.fr/sorties/sortie-ffe69c02-b48b-4a48-aae2-8c20531df28b/,Phil,,1/14/2018 0:00,12.0:25,12.0000000,47.843894000000,-4.042891000000,,Mousterlin - Finistère,45565,observation-ffe69c02-b48b-4a48-aae2-8c20531df28b-4,https://biolit.fr/observations/observation-ffe69c02-b48b-4a48-aae2-8c20531df28b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100279.JPG,,FALSE, +N1,60076,sortie-ffe69c02-b48b-4a48-aae2-8c20531df28b,https://biolit.fr/sorties/sortie-ffe69c02-b48b-4a48-aae2-8c20531df28b/,Phil,,1/14/2018 0:00,12.0:25,12.0000000,47.843894000000,-4.042891000000,,Mousterlin - Finistère,45567,observation-ffe69c02-b48b-4a48-aae2-8c20531df28b-5,https://biolit.fr/observations/observation-ffe69c02-b48b-4a48-aae2-8c20531df28b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100284.JPG,,FALSE, +N1,60077,sortie-bc4e9907-0670-46f0-aaf6-e67b2c49719b,https://biolit.fr/sorties/sortie-bc4e9907-0670-46f0-aaf6-e67b2c49719b/,Phil,,01/06/2018,15.0000000,15.0000000,48.003189000000,-4.524779000000,,Plouhinec - Finistère,45569,observation-bc4e9907-0670-46f0-aaf6-e67b2c49719b,https://biolit.fr/observations/observation-bc4e9907-0670-46f0-aaf6-e67b2c49719b/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090926.JPG,,FALSE, +N1,60077,sortie-bc4e9907-0670-46f0-aaf6-e67b2c49719b,https://biolit.fr/sorties/sortie-bc4e9907-0670-46f0-aaf6-e67b2c49719b/,Phil,,01/06/2018,15.0000000,15.0000000,48.003189000000,-4.524779000000,,Plouhinec - Finistère,45571,observation-bc4e9907-0670-46f0-aaf6-e67b2c49719b-2,https://biolit.fr/observations/observation-bc4e9907-0670-46f0-aaf6-e67b2c49719b-2/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1090923.JPG,,TRUE, +N1,60077,sortie-bc4e9907-0670-46f0-aaf6-e67b2c49719b,https://biolit.fr/sorties/sortie-bc4e9907-0670-46f0-aaf6-e67b2c49719b/,Phil,,01/06/2018,15.0000000,15.0000000,48.003189000000,-4.524779000000,,Plouhinec - Finistère,45573,observation-bc4e9907-0670-46f0-aaf6-e67b2c49719b-3,https://biolit.fr/observations/observation-bc4e9907-0670-46f0-aaf6-e67b2c49719b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090931.JPG,,FALSE, +N1,60077,sortie-bc4e9907-0670-46f0-aaf6-e67b2c49719b,https://biolit.fr/sorties/sortie-bc4e9907-0670-46f0-aaf6-e67b2c49719b/,Phil,,01/06/2018,15.0000000,15.0000000,48.003189000000,-4.524779000000,,Plouhinec - Finistère,45575,observation-bc4e9907-0670-46f0-aaf6-e67b2c49719b-4,https://biolit.fr/observations/observation-bc4e9907-0670-46f0-aaf6-e67b2c49719b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090917.JPG,,FALSE, +N1,60077,sortie-bc4e9907-0670-46f0-aaf6-e67b2c49719b,https://biolit.fr/sorties/sortie-bc4e9907-0670-46f0-aaf6-e67b2c49719b/,Phil,,01/06/2018,15.0000000,15.0000000,48.003189000000,-4.524779000000,,Plouhinec - Finistère,45577,observation-bc4e9907-0670-46f0-aaf6-e67b2c49719b-5,https://biolit.fr/observations/observation-bc4e9907-0670-46f0-aaf6-e67b2c49719b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090933.JPG,,FALSE, +N1,60078,sortie-236e9674-ba4f-4f6b-9b84-e66ea87d50e1,https://biolit.fr/sorties/sortie-236e9674-ba4f-4f6b-9b84-e66ea87d50e1/,Phil,,1/17/2018 0:00,15.0000000,15.0:55,48.203630000000,-4.321799000000,,Argol - Finistère,45579,observation-236e9674-ba4f-4f6b-9b84-e66ea87d50e1,https://biolit.fr/observations/observation-236e9674-ba4f-4f6b-9b84-e66ea87d50e1/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180117_155258.jpg,,FALSE, +N1,60078,sortie-236e9674-ba4f-4f6b-9b84-e66ea87d50e1,https://biolit.fr/sorties/sortie-236e9674-ba4f-4f6b-9b84-e66ea87d50e1/,Phil,,1/17/2018 0:00,15.0000000,15.0:55,48.203630000000,-4.321799000000,,Argol - Finistère,45581,observation-236e9674-ba4f-4f6b-9b84-e66ea87d50e1-2,https://biolit.fr/observations/observation-236e9674-ba4f-4f6b-9b84-e66ea87d50e1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180117_155438.jpg,,FALSE, +N1,60078,sortie-236e9674-ba4f-4f6b-9b84-e66ea87d50e1,https://biolit.fr/sorties/sortie-236e9674-ba4f-4f6b-9b84-e66ea87d50e1/,Phil,,1/17/2018 0:00,15.0000000,15.0:55,48.203630000000,-4.321799000000,,Argol - Finistère,45583,observation-236e9674-ba4f-4f6b-9b84-e66ea87d50e1-3,https://biolit.fr/observations/observation-236e9674-ba4f-4f6b-9b84-e66ea87d50e1-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180117_155512.jpg,,FALSE, +N1,60079,sortie-bd4d8d58-3932-4868-acdc-35a67cfc1314,https://biolit.fr/sorties/sortie-bd4d8d58-3932-4868-acdc-35a67cfc1314/,Phil,,01/06/2018,16.0000000,16.0:45,48.004248000000,-4.508643000000,,Plouhinec - Finistère,45585,observation-bd4d8d58-3932-4868-acdc-35a67cfc1314,https://biolit.fr/observations/observation-bd4d8d58-3932-4868-acdc-35a67cfc1314/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image2_0.jpg,,FALSE, +N1,60079,sortie-bd4d8d58-3932-4868-acdc-35a67cfc1314,https://biolit.fr/sorties/sortie-bd4d8d58-3932-4868-acdc-35a67cfc1314/,Phil,,01/06/2018,16.0000000,16.0:45,48.004248000000,-4.508643000000,,Plouhinec - Finistère,45587,observation-bd4d8d58-3932-4868-acdc-35a67cfc1314-2,https://biolit.fr/observations/observation-bd4d8d58-3932-4868-acdc-35a67cfc1314-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180106_163929.jpg,,FALSE, +N1,60079,sortie-bd4d8d58-3932-4868-acdc-35a67cfc1314,https://biolit.fr/sorties/sortie-bd4d8d58-3932-4868-acdc-35a67cfc1314/,Phil,,01/06/2018,16.0000000,16.0:45,48.004248000000,-4.508643000000,,Plouhinec - Finistère,45589,observation-bd4d8d58-3932-4868-acdc-35a67cfc1314-3,https://biolit.fr/observations/observation-bd4d8d58-3932-4868-acdc-35a67cfc1314-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180106_164257.jpg,,FALSE, +N1,60080,sortie-721888d7-cf46-4a6a-90ae-63afb6df5eb3,https://biolit.fr/sorties/sortie-721888d7-cf46-4a6a-90ae-63afb6df5eb3/,Phil,,01/06/2018,14.0:45,15.0000000,48.004926000000,-4.522792000000,,Plouhinec - Finistère,45591,observation-721888d7-cf46-4a6a-90ae-63afb6df5eb3,https://biolit.fr/observations/observation-721888d7-cf46-4a6a-90ae-63afb6df5eb3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090912.JPG,,FALSE, +N1,60080,sortie-721888d7-cf46-4a6a-90ae-63afb6df5eb3,https://biolit.fr/sorties/sortie-721888d7-cf46-4a6a-90ae-63afb6df5eb3/,Phil,,01/06/2018,14.0:45,15.0000000,48.004926000000,-4.522792000000,,Plouhinec - Finistère,45593,observation-721888d7-cf46-4a6a-90ae-63afb6df5eb3-2,https://biolit.fr/observations/observation-721888d7-cf46-4a6a-90ae-63afb6df5eb3-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1090909.JPG,,TRUE, +N1,60080,sortie-721888d7-cf46-4a6a-90ae-63afb6df5eb3,https://biolit.fr/sorties/sortie-721888d7-cf46-4a6a-90ae-63afb6df5eb3/,Phil,,01/06/2018,14.0:45,15.0000000,48.004926000000,-4.522792000000,,Plouhinec - Finistère,45595,observation-721888d7-cf46-4a6a-90ae-63afb6df5eb3-3,https://biolit.fr/observations/observation-721888d7-cf46-4a6a-90ae-63afb6df5eb3-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1090907.JPG,,TRUE, +N1,60080,sortie-721888d7-cf46-4a6a-90ae-63afb6df5eb3,https://biolit.fr/sorties/sortie-721888d7-cf46-4a6a-90ae-63afb6df5eb3/,Phil,,01/06/2018,14.0:45,15.0000000,48.004926000000,-4.522792000000,,Plouhinec - Finistère,45597,observation-721888d7-cf46-4a6a-90ae-63afb6df5eb3-4,https://biolit.fr/observations/observation-721888d7-cf46-4a6a-90ae-63afb6df5eb3-4/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1090903.JPG,,TRUE, +N1,60080,sortie-721888d7-cf46-4a6a-90ae-63afb6df5eb3,https://biolit.fr/sorties/sortie-721888d7-cf46-4a6a-90ae-63afb6df5eb3/,Phil,,01/06/2018,14.0:45,15.0000000,48.004926000000,-4.522792000000,,Plouhinec - Finistère,45599,observation-721888d7-cf46-4a6a-90ae-63afb6df5eb3-5,https://biolit.fr/observations/observation-721888d7-cf46-4a6a-90ae-63afb6df5eb3-5/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1090901.JPG,,TRUE, +N1,60081,sortie-94b08e3d-4734-44ef-a4a9-a511c6e9c8d0,https://biolit.fr/sorties/sortie-94b08e3d-4734-44ef-a4a9-a511c6e9c8d0/,Phil,,12/16/2017 0:00,13.0:15,13.0000000,47.896215000000,-3.967804000000,,La Forêt-Fouesnant - Finistère,45601,observation-94b08e3d-4734-44ef-a4a9-a511c6e9c8d0,https://biolit.fr/observations/observation-94b08e3d-4734-44ef-a4a9-a511c6e9c8d0/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171216_131756.jpg,,FALSE, +N1,60081,sortie-94b08e3d-4734-44ef-a4a9-a511c6e9c8d0,https://biolit.fr/sorties/sortie-94b08e3d-4734-44ef-a4a9-a511c6e9c8d0/,Phil,,12/16/2017 0:00,13.0:15,13.0000000,47.896215000000,-3.967804000000,,La Forêt-Fouesnant - Finistère,45603,observation-94b08e3d-4734-44ef-a4a9-a511c6e9c8d0-2,https://biolit.fr/observations/observation-94b08e3d-4734-44ef-a4a9-a511c6e9c8d0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171216_131738.jpg,,FALSE, +N1,60081,sortie-94b08e3d-4734-44ef-a4a9-a511c6e9c8d0,https://biolit.fr/sorties/sortie-94b08e3d-4734-44ef-a4a9-a511c6e9c8d0/,Phil,,12/16/2017 0:00,13.0:15,13.0000000,47.896215000000,-3.967804000000,,La Forêt-Fouesnant - Finistère,45605,observation-94b08e3d-4734-44ef-a4a9-a511c6e9c8d0-3,https://biolit.fr/observations/observation-94b08e3d-4734-44ef-a4a9-a511c6e9c8d0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171216_131848.jpg,,FALSE, +N1,60082,sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9,https://biolit.fr/sorties/sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9/,Phil,,01/08/2018,11.0000000,16.0000000,47.797531000000,-4.213690000000,,Lesconil - Finistère,45607,observation-7cb6d507-4234-46ca-ba01-a6c724b921f9,https://biolit.fr/observations/observation-7cb6d507-4234-46ca-ba01-a6c724b921f9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Image2.png,,FALSE, +N1,60082,sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9,https://biolit.fr/sorties/sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9/,Phil,,01/08/2018,11.0000000,16.0000000,47.797531000000,-4.213690000000,,Lesconil - Finistère,45608,observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-2,https://biolit.fr/observations/observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100169.JPG,,FALSE, +N1,60082,sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9,https://biolit.fr/sorties/sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9/,Phil,,01/08/2018,11.0000000,16.0000000,47.797531000000,-4.213690000000,,Lesconil - Finistère,45610,observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-3,https://biolit.fr/observations/observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100099.JPG,,FALSE, +N1,60082,sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9,https://biolit.fr/sorties/sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9/,Phil,,01/08/2018,11.0000000,16.0000000,47.797531000000,-4.213690000000,,Lesconil - Finistère,45612,observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-4,https://biolit.fr/observations/observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100077.JPG,,FALSE, +N1,60082,sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9,https://biolit.fr/sorties/sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9/,Phil,,01/08/2018,11.0000000,16.0000000,47.797531000000,-4.213690000000,,Lesconil - Finistère,45614,observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-5,https://biolit.fr/observations/observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100167_0.JPG,,FALSE, +N1,60082,sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9,https://biolit.fr/sorties/sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9/,Phil,,01/08/2018,11.0000000,16.0000000,47.797531000000,-4.213690000000,,Lesconil - Finistère,45616,observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-6,https://biolit.fr/observations/observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100093.JPG,,FALSE, +N1,60082,sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9,https://biolit.fr/sorties/sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9/,Phil,,01/08/2018,11.0000000,16.0000000,47.797531000000,-4.213690000000,,Lesconil - Finistère,45618,observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-7,https://biolit.fr/observations/observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100114.JPG,,FALSE, +N1,60082,sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9,https://biolit.fr/sorties/sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9/,Phil,,01/08/2018,11.0000000,16.0000000,47.797531000000,-4.213690000000,,Lesconil - Finistère,45620,observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-8,https://biolit.fr/observations/observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100161.JPG,,FALSE, +N1,60082,sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9,https://biolit.fr/sorties/sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9/,Phil,,01/08/2018,11.0000000,16.0000000,47.797531000000,-4.213690000000,,Lesconil - Finistère,45622,observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-9,https://biolit.fr/observations/observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20180108_111815.jpg,,FALSE, +N1,60082,sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9,https://biolit.fr/sorties/sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9/,Phil,,01/08/2018,11.0000000,16.0000000,47.797531000000,-4.213690000000,,Lesconil - Finistère,45624,observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-10,https://biolit.fr/observations/observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100062_0.JPG,,FALSE, +N1,60082,sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9,https://biolit.fr/sorties/sortie-7cb6d507-4234-46ca-ba01-a6c724b921f9/,Phil,,01/08/2018,11.0000000,16.0000000,47.797531000000,-4.213690000000,,Lesconil - Finistère,45626,observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-11,https://biolit.fr/observations/observation-7cb6d507-4234-46ca-ba01-a6c724b921f9-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1100027.jpg,,FALSE, +N1,60083,sortie-a41ade66-c8c0-4f35-8e83-09c47c3db528,https://biolit.fr/sorties/sortie-a41ade66-c8c0-4f35-8e83-09c47c3db528/,Phil,,01/01/2018,0.0000000,0.0000000,47.77301500000,-4.33996200000,,Penmarc'h - Finistère,45628,observation-a41ade66-c8c0-4f35-8e83-09c47c3db528,https://biolit.fr/observations/observation-a41ade66-c8c0-4f35-8e83-09c47c3db528/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080585BA-.JPG,,FALSE, +N1,60084,sortie-8a11aa95-0085-4467-9784-a5852de38de1,https://biolit.fr/sorties/sortie-8a11aa95-0085-4467-9784-a5852de38de1/,Phil,,9/22/2017 0:00,11.0000000,11.0:35,47.777391000000,-4.342732000000,,Penmarc'h - Finistère,45630,observation-8a11aa95-0085-4467-9784-a5852de38de1,https://biolit.fr/observations/observation-8a11aa95-0085-4467-9784-a5852de38de1/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080705.JPG,,TRUE, +N1,60084,sortie-8a11aa95-0085-4467-9784-a5852de38de1,https://biolit.fr/sorties/sortie-8a11aa95-0085-4467-9784-a5852de38de1/,Phil,,9/22/2017 0:00,11.0000000,11.0:35,47.777391000000,-4.342732000000,,Penmarc'h - Finistère,45632,observation-8a11aa95-0085-4467-9784-a5852de38de1-2,https://biolit.fr/observations/observation-8a11aa95-0085-4467-9784-a5852de38de1-2/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080716.JPG,,TRUE, +N1,60084,sortie-8a11aa95-0085-4467-9784-a5852de38de1,https://biolit.fr/sorties/sortie-8a11aa95-0085-4467-9784-a5852de38de1/,Phil,,9/22/2017 0:00,11.0000000,11.0:35,47.777391000000,-4.342732000000,,Penmarc'h - Finistère,45634,observation-8a11aa95-0085-4467-9784-a5852de38de1-3,https://biolit.fr/observations/observation-8a11aa95-0085-4467-9784-a5852de38de1-3/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080718(1).JPG,,TRUE, +N1,60084,sortie-8a11aa95-0085-4467-9784-a5852de38de1,https://biolit.fr/sorties/sortie-8a11aa95-0085-4467-9784-a5852de38de1/,Phil,,9/22/2017 0:00,11.0000000,11.0:35,47.777391000000,-4.342732000000,,Penmarc'h - Finistère,45636,observation-8a11aa95-0085-4467-9784-a5852de38de1-4,https://biolit.fr/observations/observation-8a11aa95-0085-4467-9784-a5852de38de1-4/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080720(1).JPG,,TRUE, +N1,60084,sortie-8a11aa95-0085-4467-9784-a5852de38de1,https://biolit.fr/sorties/sortie-8a11aa95-0085-4467-9784-a5852de38de1/,Phil,,9/22/2017 0:00,11.0000000,11.0:35,47.777391000000,-4.342732000000,,Penmarc'h - Finistère,45638,observation-8a11aa95-0085-4467-9784-a5852de38de1-5,https://biolit.fr/observations/observation-8a11aa95-0085-4467-9784-a5852de38de1-5/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080722(1).JPG,,TRUE, +N1,60085,sortie-610c75d8-c4b9-4223-bf21-16f230b9d0bf,https://biolit.fr/sorties/sortie-610c75d8-c4b9-4223-bf21-16f230b9d0bf/,ChristineSG,,12/30/2017 0:00,15.0000000,17.0000000,44.921450000000,-1.214822000000,,"Le Porge, carrefour de la Cantine Nord",45640,observation-610c75d8-c4b9-4223-bf21-16f230b9d0bf,https://biolit.fr/observations/observation-610c75d8-c4b9-4223-bf21-16f230b9d0bf/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_4881-scaled.jpg,,TRUE, +N1,60085,sortie-610c75d8-c4b9-4223-bf21-16f230b9d0bf,https://biolit.fr/sorties/sortie-610c75d8-c4b9-4223-bf21-16f230b9d0bf/,ChristineSG,,12/30/2017 0:00,15.0000000,17.0000000,44.921450000000,-1.214822000000,,"Le Porge, carrefour de la Cantine Nord",45642,observation-610c75d8-c4b9-4223-bf21-16f230b9d0bf-2,https://biolit.fr/observations/observation-610c75d8-c4b9-4223-bf21-16f230b9d0bf-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_4882-scaled.jpg,,TRUE, +N1,60086,sortie-577fe19c-971c-4026-b032-924454245df4,https://biolit.fr/sorties/sortie-577fe19c-971c-4026-b032-924454245df4/,Phil,,12/25/2017 0:00,0.0000000,0.000005,47.688419000000,-4.316331000000,,Bretagne - France,45644,observation-577fe19c-971c-4026-b032-924454245df4,https://biolit.fr/observations/observation-577fe19c-971c-4026-b032-924454245df4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080605.JPG,,FALSE, +N1,60087,sortie-a2575848-d5eb-475d-af9b-cb8ea562275f,https://biolit.fr/sorties/sortie-a2575848-d5eb-475d-af9b-cb8ea562275f/,Phil,,9/22/2017 0:00,11.0000000,11.0:25,47.777312000000,-4.339341000000,,Penmarc'h - Finistère,45646,observation-a2575848-d5eb-475d-af9b-cb8ea562275f,https://biolit.fr/observations/observation-a2575848-d5eb-475d-af9b-cb8ea562275f/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080643.JPG,,TRUE, +N1,60087,sortie-a2575848-d5eb-475d-af9b-cb8ea562275f,https://biolit.fr/sorties/sortie-a2575848-d5eb-475d-af9b-cb8ea562275f/,Phil,,9/22/2017 0:00,11.0000000,11.0:25,47.777312000000,-4.339341000000,,Penmarc'h - Finistère,45648,observation-a2575848-d5eb-475d-af9b-cb8ea562275f-2,https://biolit.fr/observations/observation-a2575848-d5eb-475d-af9b-cb8ea562275f-2/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080644.JPG,,TRUE, +N1,60087,sortie-a2575848-d5eb-475d-af9b-cb8ea562275f,https://biolit.fr/sorties/sortie-a2575848-d5eb-475d-af9b-cb8ea562275f/,Phil,,9/22/2017 0:00,11.0000000,11.0:25,47.777312000000,-4.339341000000,,Penmarc'h - Finistère,45650,observation-a2575848-d5eb-475d-af9b-cb8ea562275f-3,https://biolit.fr/observations/observation-a2575848-d5eb-475d-af9b-cb8ea562275f-3/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080645.JPG,,TRUE, +N1,60087,sortie-a2575848-d5eb-475d-af9b-cb8ea562275f,https://biolit.fr/sorties/sortie-a2575848-d5eb-475d-af9b-cb8ea562275f/,Phil,,9/22/2017 0:00,11.0000000,11.0:25,47.777312000000,-4.339341000000,,Penmarc'h - Finistère,45652,observation-a2575848-d5eb-475d-af9b-cb8ea562275f-4,https://biolit.fr/observations/observation-a2575848-d5eb-475d-af9b-cb8ea562275f-4/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080646.JPG,,TRUE, +N1,60087,sortie-a2575848-d5eb-475d-af9b-cb8ea562275f,https://biolit.fr/sorties/sortie-a2575848-d5eb-475d-af9b-cb8ea562275f/,Phil,,9/22/2017 0:00,11.0000000,11.0:25,47.777312000000,-4.339341000000,,Penmarc'h - Finistère,45654,observation-a2575848-d5eb-475d-af9b-cb8ea562275f-5,https://biolit.fr/observations/observation-a2575848-d5eb-475d-af9b-cb8ea562275f-5/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080649.JPG,,TRUE, +N1,60088,sortie-f7462542-97e0-4b25-9ef7-632b1f383abe,https://biolit.fr/sorties/sortie-f7462542-97e0-4b25-9ef7-632b1f383abe/,Phil,,12/03/2017,13.0000000,13.0:45,47.854341000000,-3.975059000000,,Fouesnant - Finistère,45656,observation-f7462542-97e0-4b25-9ef7-632b1f383abe,https://biolit.fr/observations/observation-f7462542-97e0-4b25-9ef7-632b1f383abe/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090632.JPG,,FALSE, +N1,60088,sortie-f7462542-97e0-4b25-9ef7-632b1f383abe,https://biolit.fr/sorties/sortie-f7462542-97e0-4b25-9ef7-632b1f383abe/,Phil,,12/03/2017,13.0000000,13.0:45,47.854341000000,-3.975059000000,,Fouesnant - Finistère,45658,observation-f7462542-97e0-4b25-9ef7-632b1f383abe-2,https://biolit.fr/observations/observation-f7462542-97e0-4b25-9ef7-632b1f383abe-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090631.JPG,,FALSE, +N1,60088,sortie-f7462542-97e0-4b25-9ef7-632b1f383abe,https://biolit.fr/sorties/sortie-f7462542-97e0-4b25-9ef7-632b1f383abe/,Phil,,12/03/2017,13.0000000,13.0:45,47.854341000000,-3.975059000000,,Fouesnant - Finistère,45660,observation-f7462542-97e0-4b25-9ef7-632b1f383abe-3,https://biolit.fr/observations/observation-f7462542-97e0-4b25-9ef7-632b1f383abe-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090633.JPG,,FALSE, +N1,60088,sortie-f7462542-97e0-4b25-9ef7-632b1f383abe,https://biolit.fr/sorties/sortie-f7462542-97e0-4b25-9ef7-632b1f383abe/,Phil,,12/03/2017,13.0000000,13.0:45,47.854341000000,-3.975059000000,,Fouesnant - Finistère,45662,observation-f7462542-97e0-4b25-9ef7-632b1f383abe-4,https://biolit.fr/observations/observation-f7462542-97e0-4b25-9ef7-632b1f383abe-4/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1090636.JPG,,TRUE, +N1,60089,sortie-cca88567-8069-47f3-af23-f479ccec67e5,https://biolit.fr/sorties/sortie-cca88567-8069-47f3-af23-f479ccec67e5/,Phil,,12/11/2017,13.0000000,13.000005,47.792563000000,-4.294111000000,,Le Guilvinec - Finistère,45664,observation-cca88567-8069-47f3-af23-f479ccec67e5,https://biolit.fr/observations/observation-cca88567-8069-47f3-af23-f479ccec67e5/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1090767.JPG,,TRUE, +N1,60089,sortie-cca88567-8069-47f3-af23-f479ccec67e5,https://biolit.fr/sorties/sortie-cca88567-8069-47f3-af23-f479ccec67e5/,Phil,,12/11/2017,13.0000000,13.000005,47.792563000000,-4.294111000000,,Le Guilvinec - Finistère,45666,observation-cca88567-8069-47f3-af23-f479ccec67e5-2,https://biolit.fr/observations/observation-cca88567-8069-47f3-af23-f479ccec67e5-2/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1090766.JPG,,TRUE, +N1,60089,sortie-cca88567-8069-47f3-af23-f479ccec67e5,https://biolit.fr/sorties/sortie-cca88567-8069-47f3-af23-f479ccec67e5/,Phil,,12/11/2017,13.0000000,13.000005,47.792563000000,-4.294111000000,,Le Guilvinec - Finistère,45668,observation-cca88567-8069-47f3-af23-f479ccec67e5-3,https://biolit.fr/observations/observation-cca88567-8069-47f3-af23-f479ccec67e5-3/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1090769.JPG,,TRUE, +N1,60089,sortie-cca88567-8069-47f3-af23-f479ccec67e5,https://biolit.fr/sorties/sortie-cca88567-8069-47f3-af23-f479ccec67e5/,Phil,,12/11/2017,13.0000000,13.000005,47.792563000000,-4.294111000000,,Le Guilvinec - Finistère,45670,observation-cca88567-8069-47f3-af23-f479ccec67e5-4,https://biolit.fr/observations/observation-cca88567-8069-47f3-af23-f479ccec67e5-4/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/P1090777.JPG,,TRUE, +N1,60089,sortie-cca88567-8069-47f3-af23-f479ccec67e5,https://biolit.fr/sorties/sortie-cca88567-8069-47f3-af23-f479ccec67e5/,Phil,,12/11/2017,13.0000000,13.000005,47.792563000000,-4.294111000000,,Le Guilvinec - Finistère,45672,observation-cca88567-8069-47f3-af23-f479ccec67e5-5,https://biolit.fr/observations/observation-cca88567-8069-47f3-af23-f479ccec67e5-5/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/P1090779.JPG,,TRUE, +N1,60090,sortie-7c966b69-2387-45fc-ae0e-4d02282a3478,https://biolit.fr/sorties/sortie-7c966b69-2387-45fc-ae0e-4d02282a3478/,Phil,,11/06/2017,12.0000000,12.0000000,48.004674000000,-4.520897000000,,Plouhinec - Finistère,45674,observation-7c966b69-2387-45fc-ae0e-4d02282a3478,https://biolit.fr/observations/observation-7c966b69-2387-45fc-ae0e-4d02282a3478/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_124240.jpg,,FALSE, +N1,60090,sortie-7c966b69-2387-45fc-ae0e-4d02282a3478,https://biolit.fr/sorties/sortie-7c966b69-2387-45fc-ae0e-4d02282a3478/,Phil,,11/06/2017,12.0000000,12.0000000,48.004674000000,-4.520897000000,,Plouhinec - Finistère,45676,observation-7c966b69-2387-45fc-ae0e-4d02282a3478-2,https://biolit.fr/observations/observation-7c966b69-2387-45fc-ae0e-4d02282a3478-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_124149.jpg,,FALSE, +N1,60090,sortie-7c966b69-2387-45fc-ae0e-4d02282a3478,https://biolit.fr/sorties/sortie-7c966b69-2387-45fc-ae0e-4d02282a3478/,Phil,,11/06/2017,12.0000000,12.0000000,48.004674000000,-4.520897000000,,Plouhinec - Finistère,45678,observation-7c966b69-2387-45fc-ae0e-4d02282a3478-3,https://biolit.fr/observations/observation-7c966b69-2387-45fc-ae0e-4d02282a3478-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_124155.jpg,,FALSE, +N1,60090,sortie-7c966b69-2387-45fc-ae0e-4d02282a3478,https://biolit.fr/sorties/sortie-7c966b69-2387-45fc-ae0e-4d02282a3478/,Phil,,11/06/2017,12.0000000,12.0000000,48.004674000000,-4.520897000000,,Plouhinec - Finistère,45680,observation-7c966b69-2387-45fc-ae0e-4d02282a3478-4,https://biolit.fr/observations/observation-7c966b69-2387-45fc-ae0e-4d02282a3478-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_124218.jpg,,FALSE, +N1,60090,sortie-7c966b69-2387-45fc-ae0e-4d02282a3478,https://biolit.fr/sorties/sortie-7c966b69-2387-45fc-ae0e-4d02282a3478/,Phil,,11/06/2017,12.0000000,12.0000000,48.004674000000,-4.520897000000,,Plouhinec - Finistère,45682,observation-7c966b69-2387-45fc-ae0e-4d02282a3478-5,https://biolit.fr/observations/observation-7c966b69-2387-45fc-ae0e-4d02282a3478-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_124226.jpg,,FALSE, +N1,60091,sortie-e2d4a0d9-e667-4d05-99c5-a5693bb92457,https://biolit.fr/sorties/sortie-e2d4a0d9-e667-4d05-99c5-a5693bb92457/,Phil,,12/16/2017 0:00,13.0:15,13.0000000,47.896187000000,-3.96854500000,,La Forêt-Fouesnant - Finistère,45684,observation-e2d4a0d9-e667-4d05-99c5-a5693bb92457,https://biolit.fr/observations/observation-e2d4a0d9-e667-4d05-99c5-a5693bb92457/,Solecurtus strigilatus,Solécurte rose,,https://biolit.fr/wp-content/uploads/2023/07/20171216_131704.jpg,,TRUE, +N1,60091,sortie-e2d4a0d9-e667-4d05-99c5-a5693bb92457,https://biolit.fr/sorties/sortie-e2d4a0d9-e667-4d05-99c5-a5693bb92457/,Phil,,12/16/2017 0:00,13.0:15,13.0000000,47.896187000000,-3.96854500000,,La Forêt-Fouesnant - Finistère,45686,observation-e2d4a0d9-e667-4d05-99c5-a5693bb92457-2,https://biolit.fr/observations/observation-e2d4a0d9-e667-4d05-99c5-a5693bb92457-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171216_131517.jpg,,FALSE, +N1,60091,sortie-e2d4a0d9-e667-4d05-99c5-a5693bb92457,https://biolit.fr/sorties/sortie-e2d4a0d9-e667-4d05-99c5-a5693bb92457/,Phil,,12/16/2017 0:00,13.0:15,13.0000000,47.896187000000,-3.96854500000,,La Forêt-Fouesnant - Finistère,45688,observation-e2d4a0d9-e667-4d05-99c5-a5693bb92457-3,https://biolit.fr/observations/observation-e2d4a0d9-e667-4d05-99c5-a5693bb92457-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171216_131621.jpg,,FALSE, +N1,60091,sortie-e2d4a0d9-e667-4d05-99c5-a5693bb92457,https://biolit.fr/sorties/sortie-e2d4a0d9-e667-4d05-99c5-a5693bb92457/,Phil,,12/16/2017 0:00,13.0:15,13.0000000,47.896187000000,-3.96854500000,,La Forêt-Fouesnant - Finistère,45690,observation-e2d4a0d9-e667-4d05-99c5-a5693bb92457-4,https://biolit.fr/observations/observation-e2d4a0d9-e667-4d05-99c5-a5693bb92457-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171216_131454.jpg,,FALSE, +N1,60092,sortie-e0e7d602-4d77-4337-86c7-998386f3fdb3,https://biolit.fr/sorties/sortie-e0e7d602-4d77-4337-86c7-998386f3fdb3/,Phil,,12/11/2017,12.0000000,13.0000000,47.79248400000,-4.293843000000,,Guilvinec - Finistère,45692,observation-e0e7d602-4d77-4337-86c7-998386f3fdb3,https://biolit.fr/observations/observation-e0e7d602-4d77-4337-86c7-998386f3fdb3/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1090738.JPG,,TRUE, +N1,60092,sortie-e0e7d602-4d77-4337-86c7-998386f3fdb3,https://biolit.fr/sorties/sortie-e0e7d602-4d77-4337-86c7-998386f3fdb3/,Phil,,12/11/2017,12.0000000,13.0000000,47.79248400000,-4.293843000000,,Guilvinec - Finistère,45694,observation-e0e7d602-4d77-4337-86c7-998386f3fdb3-2,https://biolit.fr/observations/observation-e0e7d602-4d77-4337-86c7-998386f3fdb3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090736_0.JPG,,FALSE, +N1,60092,sortie-e0e7d602-4d77-4337-86c7-998386f3fdb3,https://biolit.fr/sorties/sortie-e0e7d602-4d77-4337-86c7-998386f3fdb3/,Phil,,12/11/2017,12.0000000,13.0000000,47.79248400000,-4.293843000000,,Guilvinec - Finistère,45696,observation-e0e7d602-4d77-4337-86c7-998386f3fdb3-3,https://biolit.fr/observations/observation-e0e7d602-4d77-4337-86c7-998386f3fdb3-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090730.JPG,,FALSE, +N1,60092,sortie-e0e7d602-4d77-4337-86c7-998386f3fdb3,https://biolit.fr/sorties/sortie-e0e7d602-4d77-4337-86c7-998386f3fdb3/,Phil,,12/11/2017,12.0000000,13.0000000,47.79248400000,-4.293843000000,,Guilvinec - Finistère,45698,observation-e0e7d602-4d77-4337-86c7-998386f3fdb3-4,https://biolit.fr/observations/observation-e0e7d602-4d77-4337-86c7-998386f3fdb3-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090728.JPG,,FALSE, +N1,60093,sortie-fb0797f9-47f5-46f6-969b-e127b5a88465,https://biolit.fr/sorties/sortie-fb0797f9-47f5-46f6-969b-e127b5a88465/,Phil,,12/18/2017 0:00,9.0000000,9.0:45,47.83519700000,-4.176512000000,,Loctudy - Finistère,45700,observation-fb0797f9-47f5-46f6-969b-e127b5a88465,https://biolit.fr/observations/observation-fb0797f9-47f5-46f6-969b-e127b5a88465/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/P1090840.JPG,,TRUE, +N1,60093,sortie-fb0797f9-47f5-46f6-969b-e127b5a88465,https://biolit.fr/sorties/sortie-fb0797f9-47f5-46f6-969b-e127b5a88465/,Phil,,12/18/2017 0:00,9.0000000,9.0:45,47.83519700000,-4.176512000000,,Loctudy - Finistère,45702,observation-fb0797f9-47f5-46f6-969b-e127b5a88465-2,https://biolit.fr/observations/observation-fb0797f9-47f5-46f6-969b-e127b5a88465-2/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/P1090837.JPG,,TRUE, +N1,60093,sortie-fb0797f9-47f5-46f6-969b-e127b5a88465,https://biolit.fr/sorties/sortie-fb0797f9-47f5-46f6-969b-e127b5a88465/,Phil,,12/18/2017 0:00,9.0000000,9.0:45,47.83519700000,-4.176512000000,,Loctudy - Finistère,45704,observation-fb0797f9-47f5-46f6-969b-e127b5a88465-3,https://biolit.fr/observations/observation-fb0797f9-47f5-46f6-969b-e127b5a88465-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090836.JPG,,FALSE, +N1,60093,sortie-fb0797f9-47f5-46f6-969b-e127b5a88465,https://biolit.fr/sorties/sortie-fb0797f9-47f5-46f6-969b-e127b5a88465/,Phil,,12/18/2017 0:00,9.0000000,9.0:45,47.83519700000,-4.176512000000,,Loctudy - Finistère,45706,observation-fb0797f9-47f5-46f6-969b-e127b5a88465-4,https://biolit.fr/observations/observation-fb0797f9-47f5-46f6-969b-e127b5a88465-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090852.JPG,,FALSE, +N1,60094,sortie-23db08a7-7903-4651-8e00-f066e7bd5ff2,https://biolit.fr/sorties/sortie-23db08a7-7903-4651-8e00-f066e7bd5ff2/,AIEJE,,12/12/2017,15.0000000,17.0000000,43.334822000000,5.175016000000,,plage du rouet ,45708,observation-23db08a7-7903-4651-8e00-f066e7bd5ff2,https://biolit.fr/observations/observation-23db08a7-7903-4651-8e00-f066e7bd5ff2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5689-scaled.jpg,,FALSE, +N1,60094,sortie-23db08a7-7903-4651-8e00-f066e7bd5ff2,https://biolit.fr/sorties/sortie-23db08a7-7903-4651-8e00-f066e7bd5ff2/,AIEJE,,12/12/2017,15.0000000,17.0000000,43.334822000000,5.175016000000,,plage du rouet ,45710,observation-23db08a7-7903-4651-8e00-f066e7bd5ff2-2,https://biolit.fr/observations/observation-23db08a7-7903-4651-8e00-f066e7bd5ff2-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5691_0-scaled.jpg,,TRUE, +N1,60094,sortie-23db08a7-7903-4651-8e00-f066e7bd5ff2,https://biolit.fr/sorties/sortie-23db08a7-7903-4651-8e00-f066e7bd5ff2/,AIEJE,,12/12/2017,15.0000000,17.0000000,43.334822000000,5.175016000000,,plage du rouet ,45712,observation-23db08a7-7903-4651-8e00-f066e7bd5ff2-3,https://biolit.fr/observations/observation-23db08a7-7903-4651-8e00-f066e7bd5ff2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5692-scaled.jpg,,FALSE, +N1,60094,sortie-23db08a7-7903-4651-8e00-f066e7bd5ff2,https://biolit.fr/sorties/sortie-23db08a7-7903-4651-8e00-f066e7bd5ff2/,AIEJE,,12/12/2017,15.0000000,17.0000000,43.334822000000,5.175016000000,,plage du rouet ,45714,observation-23db08a7-7903-4651-8e00-f066e7bd5ff2-4,https://biolit.fr/observations/observation-23db08a7-7903-4651-8e00-f066e7bd5ff2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5693-scaled.jpg,,FALSE, +N1,60094,sortie-23db08a7-7903-4651-8e00-f066e7bd5ff2,https://biolit.fr/sorties/sortie-23db08a7-7903-4651-8e00-f066e7bd5ff2/,AIEJE,,12/12/2017,15.0000000,17.0000000,43.334822000000,5.175016000000,,plage du rouet ,45716,observation-23db08a7-7903-4651-8e00-f066e7bd5ff2-5,https://biolit.fr/observations/observation-23db08a7-7903-4651-8e00-f066e7bd5ff2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5694-scaled.jpg,,FALSE, +N1,60094,sortie-23db08a7-7903-4651-8e00-f066e7bd5ff2,https://biolit.fr/sorties/sortie-23db08a7-7903-4651-8e00-f066e7bd5ff2/,AIEJE,,12/12/2017,15.0000000,17.0000000,43.334822000000,5.175016000000,,plage du rouet ,45718,observation-23db08a7-7903-4651-8e00-f066e7bd5ff2-6,https://biolit.fr/observations/observation-23db08a7-7903-4651-8e00-f066e7bd5ff2-6/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5695_0-scaled.jpg,,TRUE, +N1,60094,sortie-23db08a7-7903-4651-8e00-f066e7bd5ff2,https://biolit.fr/sorties/sortie-23db08a7-7903-4651-8e00-f066e7bd5ff2/,AIEJE,,12/12/2017,15.0000000,17.0000000,43.334822000000,5.175016000000,,plage du rouet ,45720,observation-23db08a7-7903-4651-8e00-f066e7bd5ff2-7,https://biolit.fr/observations/observation-23db08a7-7903-4651-8e00-f066e7bd5ff2-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5696-scaled.jpg,,FALSE, +N1,60094,sortie-23db08a7-7903-4651-8e00-f066e7bd5ff2,https://biolit.fr/sorties/sortie-23db08a7-7903-4651-8e00-f066e7bd5ff2/,AIEJE,,12/12/2017,15.0000000,17.0000000,43.334822000000,5.175016000000,,plage du rouet ,45722,observation-23db08a7-7903-4651-8e00-f066e7bd5ff2-8,https://biolit.fr/observations/observation-23db08a7-7903-4651-8e00-f066e7bd5ff2-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5698_0-scaled.jpg,,FALSE, +N1,60095,sortie-c6b33a52-fd7a-4def-a65b-ca97d396562a,https://biolit.fr/sorties/sortie-c6b33a52-fd7a-4def-a65b-ca97d396562a/,RIEM,,12/19/2017 0:00,17.0000000,19.0000000,47.49316600000,-2.682955000000,,PENVINS 56370,45724,observation-c6b33a52-fd7a-4def-a65b-ca97d396562a,https://biolit.fr/observations/observation-c6b33a52-fd7a-4def-a65b-ca97d396562a/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/P1040176.JPG,,TRUE, +N1,60095,sortie-c6b33a52-fd7a-4def-a65b-ca97d396562a,https://biolit.fr/sorties/sortie-c6b33a52-fd7a-4def-a65b-ca97d396562a/,RIEM,,12/19/2017 0:00,17.0000000,19.0000000,47.49316600000,-2.682955000000,,PENVINS 56370,45726,observation-c6b33a52-fd7a-4def-a65b-ca97d396562a-2,https://biolit.fr/observations/observation-c6b33a52-fd7a-4def-a65b-ca97d396562a-2/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P1040177.JPG,,TRUE, +N1,60095,sortie-c6b33a52-fd7a-4def-a65b-ca97d396562a,https://biolit.fr/sorties/sortie-c6b33a52-fd7a-4def-a65b-ca97d396562a/,RIEM,,12/19/2017 0:00,17.0000000,19.0000000,47.49316600000,-2.682955000000,,PENVINS 56370,45728,observation-c6b33a52-fd7a-4def-a65b-ca97d396562a-3,https://biolit.fr/observations/observation-c6b33a52-fd7a-4def-a65b-ca97d396562a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040178.JPG,,FALSE, +N1,60095,sortie-c6b33a52-fd7a-4def-a65b-ca97d396562a,https://biolit.fr/sorties/sortie-c6b33a52-fd7a-4def-a65b-ca97d396562a/,RIEM,,12/19/2017 0:00,17.0000000,19.0000000,47.49316600000,-2.682955000000,,PENVINS 56370,45730,observation-c6b33a52-fd7a-4def-a65b-ca97d396562a-4,https://biolit.fr/observations/observation-c6b33a52-fd7a-4def-a65b-ca97d396562a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040179_0.JPG,,FALSE, +N1,60096,sortie-f74eb4b2-408d-4d11-a44a-bca02ff98e11,https://biolit.fr/sorties/sortie-f74eb4b2-408d-4d11-a44a-bca02ff98e11/,RIEM,,8/22/2017 0:00,11.0000000,11.0000000,47.493862000000,-2.682955000000,,PENVINS 53370 SARZEAU,45732,observation-f74eb4b2-408d-4d11-a44a-bca02ff98e11,https://biolit.fr/observations/observation-f74eb4b2-408d-4d11-a44a-bca02ff98e11/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040116_0.JPG,,FALSE, +N1,60096,sortie-f74eb4b2-408d-4d11-a44a-bca02ff98e11,https://biolit.fr/sorties/sortie-f74eb4b2-408d-4d11-a44a-bca02ff98e11/,RIEM,,8/22/2017 0:00,11.0000000,11.0000000,47.493862000000,-2.682955000000,,PENVINS 53370 SARZEAU,45734,observation-f74eb4b2-408d-4d11-a44a-bca02ff98e11-2,https://biolit.fr/observations/observation-f74eb4b2-408d-4d11-a44a-bca02ff98e11-2/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/P1040118_0.JPG,,TRUE, +N1,60096,sortie-f74eb4b2-408d-4d11-a44a-bca02ff98e11,https://biolit.fr/sorties/sortie-f74eb4b2-408d-4d11-a44a-bca02ff98e11/,RIEM,,8/22/2017 0:00,11.0000000,11.0000000,47.493862000000,-2.682955000000,,PENVINS 53370 SARZEAU,45736,observation-f74eb4b2-408d-4d11-a44a-bca02ff98e11-3,https://biolit.fr/observations/observation-f74eb4b2-408d-4d11-a44a-bca02ff98e11-3/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040120_0.JPG,,TRUE, +N1,60096,sortie-f74eb4b2-408d-4d11-a44a-bca02ff98e11,https://biolit.fr/sorties/sortie-f74eb4b2-408d-4d11-a44a-bca02ff98e11/,RIEM,,8/22/2017 0:00,11.0000000,11.0000000,47.493862000000,-2.682955000000,,PENVINS 53370 SARZEAU,45738,observation-f74eb4b2-408d-4d11-a44a-bca02ff98e11-4,https://biolit.fr/observations/observation-f74eb4b2-408d-4d11-a44a-bca02ff98e11-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040121_0.JPG,,FALSE, +N1,60096,sortie-f74eb4b2-408d-4d11-a44a-bca02ff98e11,https://biolit.fr/sorties/sortie-f74eb4b2-408d-4d11-a44a-bca02ff98e11/,RIEM,,8/22/2017 0:00,11.0000000,11.0000000,47.493862000000,-2.682955000000,,PENVINS 53370 SARZEAU,45740,observation-f74eb4b2-408d-4d11-a44a-bca02ff98e11-5,https://biolit.fr/observations/observation-f74eb4b2-408d-4d11-a44a-bca02ff98e11-5/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/P1040122_0.JPG,,TRUE, +N1,60096,sortie-f74eb4b2-408d-4d11-a44a-bca02ff98e11,https://biolit.fr/sorties/sortie-f74eb4b2-408d-4d11-a44a-bca02ff98e11/,RIEM,,8/22/2017 0:00,11.0000000,11.0000000,47.493862000000,-2.682955000000,,PENVINS 53370 SARZEAU,45742,observation-f74eb4b2-408d-4d11-a44a-bca02ff98e11-6,https://biolit.fr/observations/observation-f74eb4b2-408d-4d11-a44a-bca02ff98e11-6/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/P1040124.JPG,,TRUE, +N1,60097,sortie-f011cf2d-b068-4bee-8b27-87682750810d,https://biolit.fr/sorties/sortie-f011cf2d-b068-4bee-8b27-87682750810d/,Phil,,12/03/2017,13.0:25,13.0000000,47.852544000000,-3.975214000000,,Fouesnant - Finistère,45744,observation-f011cf2d-b068-4bee-8b27-87682750810d,https://biolit.fr/observations/observation-f011cf2d-b068-4bee-8b27-87682750810d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090606.JPG,,FALSE, +N1,60097,sortie-f011cf2d-b068-4bee-8b27-87682750810d,https://biolit.fr/sorties/sortie-f011cf2d-b068-4bee-8b27-87682750810d/,Phil,,12/03/2017,13.0:25,13.0000000,47.852544000000,-3.975214000000,,Fouesnant - Finistère,45746,observation-f011cf2d-b068-4bee-8b27-87682750810d-2,https://biolit.fr/observations/observation-f011cf2d-b068-4bee-8b27-87682750810d-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1090608.JPG,,TRUE, +N1,60097,sortie-f011cf2d-b068-4bee-8b27-87682750810d,https://biolit.fr/sorties/sortie-f011cf2d-b068-4bee-8b27-87682750810d/,Phil,,12/03/2017,13.0:25,13.0000000,47.852544000000,-3.975214000000,,Fouesnant - Finistère,45748,observation-f011cf2d-b068-4bee-8b27-87682750810d-3,https://biolit.fr/observations/observation-f011cf2d-b068-4bee-8b27-87682750810d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090609.JPG,,FALSE, +N1,60097,sortie-f011cf2d-b068-4bee-8b27-87682750810d,https://biolit.fr/sorties/sortie-f011cf2d-b068-4bee-8b27-87682750810d/,Phil,,12/03/2017,13.0:25,13.0000000,47.852544000000,-3.975214000000,,Fouesnant - Finistère,45750,observation-f011cf2d-b068-4bee-8b27-87682750810d-4,https://biolit.fr/observations/observation-f011cf2d-b068-4bee-8b27-87682750810d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090599.JPG,,FALSE, +N1,60097,sortie-f011cf2d-b068-4bee-8b27-87682750810d,https://biolit.fr/sorties/sortie-f011cf2d-b068-4bee-8b27-87682750810d/,Phil,,12/03/2017,13.0:25,13.0000000,47.852544000000,-3.975214000000,,Fouesnant - Finistère,45752,observation-f011cf2d-b068-4bee-8b27-87682750810d-5,https://biolit.fr/observations/observation-f011cf2d-b068-4bee-8b27-87682750810d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090597.JPG,,FALSE, +N1,60097,sortie-f011cf2d-b068-4bee-8b27-87682750810d,https://biolit.fr/sorties/sortie-f011cf2d-b068-4bee-8b27-87682750810d/,Phil,,12/03/2017,13.0:25,13.0000000,47.852544000000,-3.975214000000,,Fouesnant - Finistère,45754,observation-f011cf2d-b068-4bee-8b27-87682750810d-6,https://biolit.fr/observations/observation-f011cf2d-b068-4bee-8b27-87682750810d-6/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/P1090600.JPG,,TRUE, +N1,60098,sortie-a5653af9-831c-40a3-a2ab-ec9883138aa9,https://biolit.fr/sorties/sortie-a5653af9-831c-40a3-a2ab-ec9883138aa9/,Phil,,12/11/2017,13.000005,13.0000000,47.792516000000,-4.293253000000,,Le Guilvinec - Finistère,45756,observation-a5653af9-831c-40a3-a2ab-ec9883138aa9,https://biolit.fr/observations/observation-a5653af9-831c-40a3-a2ab-ec9883138aa9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090793.JPG,,FALSE, +N1,60098,sortie-a5653af9-831c-40a3-a2ab-ec9883138aa9,https://biolit.fr/sorties/sortie-a5653af9-831c-40a3-a2ab-ec9883138aa9/,Phil,,12/11/2017,13.000005,13.0000000,47.792516000000,-4.293253000000,,Le Guilvinec - Finistère,45758,observation-a5653af9-831c-40a3-a2ab-ec9883138aa9-2,https://biolit.fr/observations/observation-a5653af9-831c-40a3-a2ab-ec9883138aa9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090796.JPG,,FALSE, +N1,60098,sortie-a5653af9-831c-40a3-a2ab-ec9883138aa9,https://biolit.fr/sorties/sortie-a5653af9-831c-40a3-a2ab-ec9883138aa9/,Phil,,12/11/2017,13.000005,13.0000000,47.792516000000,-4.293253000000,,Le Guilvinec - Finistère,45760,observation-a5653af9-831c-40a3-a2ab-ec9883138aa9-3,https://biolit.fr/observations/observation-a5653af9-831c-40a3-a2ab-ec9883138aa9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090801.JPG,,FALSE, +N1,60099,sortie-b9ece56c-1b03-45bd-85a3-c22941ebe4fb,https://biolit.fr/sorties/sortie-b9ece56c-1b03-45bd-85a3-c22941ebe4fb/,Phil,,12/18/2017 0:00,10.0:55,11.0000000,47.8674500000,-4.22021100000,,Pont-L'Abbé - Finistère,45762,observation-b9ece56c-1b03-45bd-85a3-c22941ebe4fb,https://biolit.fr/observations/observation-b9ece56c-1b03-45bd-85a3-c22941ebe4fb/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090864.JPG,,FALSE, +N1,60099,sortie-b9ece56c-1b03-45bd-85a3-c22941ebe4fb,https://biolit.fr/sorties/sortie-b9ece56c-1b03-45bd-85a3-c22941ebe4fb/,Phil,,12/18/2017 0:00,10.0:55,11.0000000,47.8674500000,-4.22021100000,,Pont-L'Abbé - Finistère,45764,observation-b9ece56c-1b03-45bd-85a3-c22941ebe4fb-2,https://biolit.fr/observations/observation-b9ece56c-1b03-45bd-85a3-c22941ebe4fb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090874.JPG,,FALSE, +N1,60099,sortie-b9ece56c-1b03-45bd-85a3-c22941ebe4fb,https://biolit.fr/sorties/sortie-b9ece56c-1b03-45bd-85a3-c22941ebe4fb/,Phil,,12/18/2017 0:00,10.0:55,11.0000000,47.8674500000,-4.22021100000,,Pont-L'Abbé - Finistère,45766,observation-b9ece56c-1b03-45bd-85a3-c22941ebe4fb-3,https://biolit.fr/observations/observation-b9ece56c-1b03-45bd-85a3-c22941ebe4fb-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090879.JPG,,FALSE, +N1,60099,sortie-b9ece56c-1b03-45bd-85a3-c22941ebe4fb,https://biolit.fr/sorties/sortie-b9ece56c-1b03-45bd-85a3-c22941ebe4fb/,Phil,,12/18/2017 0:00,10.0:55,11.0000000,47.8674500000,-4.22021100000,,Pont-L'Abbé - Finistère,45768,observation-b9ece56c-1b03-45bd-85a3-c22941ebe4fb-4,https://biolit.fr/observations/observation-b9ece56c-1b03-45bd-85a3-c22941ebe4fb-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090893.JPG,,FALSE, +N1,60100,sortie-0ce00152-b2cb-4ddf-9875-9c20b7a6e6d0,https://biolit.fr/sorties/sortie-0ce00152-b2cb-4ddf-9875-9c20b7a6e6d0/,ville de marseille les Camoins cm1,,12/04/2017,10.0:15,12.0:15,43.279694000000,5.352516000000,,Anse de la fausse monaie,45770,observation-0ce00152-b2cb-4ddf-9875-9c20b7a6e6d0,https://biolit.fr/observations/observation-0ce00152-b2cb-4ddf-9875-9c20b7a6e6d0/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle ponctuée - Patella rustica interieur-scaled.jpg,,FALSE, +N1,60101,sortie-2c9ebd22-e1a8-41ac-9a1b-9eca020dffe1,https://biolit.fr/sorties/sortie-2c9ebd22-e1a8-41ac-9a1b-9eca020dffe1/,ville de marseille les Camoins cm1,,12/04/2017,10.0:15,12.0:15,43.280035000000,5.352213000000,,anse de fausse monnaie,45772,observation-2c9ebd22-e1a8-41ac-9a1b-9eca020dffe1,https://biolit.fr/observations/observation-2c9ebd22-e1a8-41ac-9a1b-9eca020dffe1/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/Littorine bleue - Melarhaphe neritoides-scaled.jpg,,TRUE, +N1,60102,sortie-ce2b40e5-bcc2-4543-9389-5e8432b287cb,https://biolit.fr/sorties/sortie-ce2b40e5-bcc2-4543-9389-5e8432b287cb/,ville de marseille les Camoins cm1,,12/04/2017,10.0:15,12.0:15,43.27977800000,5.352479000000,,Anse de la fausse monnaie,45774,observation-ce2b40e5-bcc2-4543-9389-5e8432b287cb,https://biolit.fr/observations/observation-ce2b40e5-bcc2-4543-9389-5e8432b287cb/,,,,https://biolit.fr/wp-content/uploads/2023/07/PEYSSONNELIA-Peyssonnelia squamaria.JPG,,FALSE, +N1,60103,sortie-828c60eb-2ebd-46f3-9e27-b80042078172,https://biolit.fr/sorties/sortie-828c60eb-2ebd-46f3-9e27-b80042078172/,ville de marseille les Camoins cm1,,12/04/2017,10.0:15,12.0:15,43.280016000000,5.352412000000,,anse de la fausse monnaie,45775,observation-828c60eb-2ebd-46f3-9e27-b80042078172,https://biolit.fr/observations/observation-828c60eb-2ebd-46f3-9e27-b80042078172/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Oursin-scaled.jpg,,TRUE, +N1,60104,sortie-b698cc59-fbc9-4157-a48d-92691d8f1212,https://biolit.fr/sorties/sortie-b698cc59-fbc9-4157-a48d-92691d8f1212/,ville de marseille les Camoins cm1,,12/04/2017,10.0:15,12.0:15,43.279945000000,5.352294000000,,l'anse de la fausse monnaie,45776,observation-b698cc59-fbc9-4157-a48d-92691d8f1212,https://biolit.fr/observations/observation-b698cc59-fbc9-4157-a48d-92691d8f1212/,,,,https://biolit.fr/wp-content/uploads/2023/07/POSIDONIE-Posidonia oceanica-scaled.jpg,,FALSE, +N1,60105,sortie-0d331951-b1ff-4de1-86fa-203fc8d066ae,https://biolit.fr/sorties/sortie-0d331951-b1ff-4de1-86fa-203fc8d066ae/,ville de marseille les Camoins cm1,,12/04/2017,10.0:15,12.0:15,43.280231000000,5.352809000000,,ANSE DE LA FAUSSE MONNAIE,45777,observation-0d331951-b1ff-4de1-86fa-203fc8d066ae,https://biolit.fr/observations/observation-0d331951-b1ff-4de1-86fa-203fc8d066ae/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/Tomate de mer - Actinia equina-scaled.jpg,,TRUE, +N1,60106,sortie-d526eb08-789b-40fe-ab53-3c00e0926295,https://biolit.fr/sorties/sortie-d526eb08-789b-40fe-ab53-3c00e0926295/,ville de marseille les Camoins cm1,,12/04/2017,10.0:15,15.0000000,43.279988000000,5.351969000000,,anse de la fausse monnaie,45779,observation-d526eb08-789b-40fe-ab53-3c00e0926295,https://biolit.fr/observations/observation-d526eb08-789b-40fe-ab53-3c00e0926295/,,,,https://biolit.fr/wp-content/uploads/2023/07/oursin interieur-scaled.jpg,,FALSE, +N1,60107,sortie-1511d0dd-cee5-49ef-9429-d8e6adc08fc3,https://biolit.fr/sorties/sortie-1511d0dd-cee5-49ef-9429-d8e6adc08fc3/,ville de marseille les Camoins cm1,,12/04/2017,10.0:15,12.0:15,43.280025000000,5.352539000000,,anse de la fausse monnaie,45781,observation-1511d0dd-cee5-49ef-9429-d8e6adc08fc3,https://biolit.fr/observations/observation-1511d0dd-cee5-49ef-9429-d8e6adc08fc3/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/Sphérocoque - Sphaerococcus coronopifolius-scaled.jpg,,TRUE, +N1,60108,sortie-3956342d-2664-47e3-9159-5358d4633c18,https://biolit.fr/sorties/sortie-3956342d-2664-47e3-9159-5358d4633c18/,ville de marseille les Camoins cm1,,12/04/2017,10.0:15,12.0:15,43.27976800000,5.352390000000,,Anse de la fausse monaie,45783,observation-3956342d-2664-47e3-9159-5358d4633c18,https://biolit.fr/observations/observation-3956342d-2664-47e3-9159-5358d4633c18/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/Bérêt basque Codium bursa-scaled.jpg,,TRUE, +N1,60109,sortie-4cb8b820-ab6b-4f93-b355-141186139767,https://biolit.fr/sorties/sortie-4cb8b820-ab6b-4f93-b355-141186139767/,ville de marseille les Camoins cm1,,12/04/2017,10.0:15,15.0000000,43.279943000000,5.352030000000,,Anse de la fausse monaie,45784,observation-4cb8b820-ab6b-4f93-b355-141186139767,https://biolit.fr/observations/observation-4cb8b820-ab6b-4f93-b355-141186139767/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/2023/07/Patelle ponctuée - Patella rustica exterieur-scaled.jpg,,TRUE, +N1,60110,sortie-aeed2020-e3a6-44f9-95c4-919374e67333,https://biolit.fr/sorties/sortie-aeed2020-e3a6-44f9-95c4-919374e67333/,ville de marseille les Camoins cm1,,12/04/2017,10.0:15,12.0:15,43.279883000000,5.352299000000,,anse de la fausse monaie,45786,observation-aeed2020-e3a6-44f9-95c4-919374e67333,https://biolit.fr/observations/observation-aeed2020-e3a6-44f9-95c4-919374e67333/,,,,https://biolit.fr/wp-content/uploads/2023/07/pierre avec des trous avec une bivalve-scaled.jpg,,FALSE, +N1,60111,sortie-4e5cfb5c-2930-494d-80a1-047621d36569,https://biolit.fr/sorties/sortie-4e5cfb5c-2930-494d-80a1-047621d36569/,Phil,,12/03/2017,13.0000000,13.0:45,47.852579000000,-3.977458000000,,Fouesnant - Finistère,45788,observation-4e5cfb5c-2930-494d-80a1-047621d36569,https://biolit.fr/observations/observation-4e5cfb5c-2930-494d-80a1-047621d36569/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090630.JPG,,FALSE, +N1,60111,sortie-4e5cfb5c-2930-494d-80a1-047621d36569,https://biolit.fr/sorties/sortie-4e5cfb5c-2930-494d-80a1-047621d36569/,Phil,,12/03/2017,13.0000000,13.0:45,47.852579000000,-3.977458000000,,Fouesnant - Finistère,45790,observation-4e5cfb5c-2930-494d-80a1-047621d36569-2,https://biolit.fr/observations/observation-4e5cfb5c-2930-494d-80a1-047621d36569-2/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/P1090626.JPG,,TRUE, +N1,60111,sortie-4e5cfb5c-2930-494d-80a1-047621d36569,https://biolit.fr/sorties/sortie-4e5cfb5c-2930-494d-80a1-047621d36569/,Phil,,12/03/2017,13.0000000,13.0:45,47.852579000000,-3.977458000000,,Fouesnant - Finistère,45792,observation-4e5cfb5c-2930-494d-80a1-047621d36569-3,https://biolit.fr/observations/observation-4e5cfb5c-2930-494d-80a1-047621d36569-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090625.JPG,,FALSE, +N1,60111,sortie-4e5cfb5c-2930-494d-80a1-047621d36569,https://biolit.fr/sorties/sortie-4e5cfb5c-2930-494d-80a1-047621d36569/,Phil,,12/03/2017,13.0000000,13.0:45,47.852579000000,-3.977458000000,,Fouesnant - Finistère,45794,observation-4e5cfb5c-2930-494d-80a1-047621d36569-4,https://biolit.fr/observations/observation-4e5cfb5c-2930-494d-80a1-047621d36569-4/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/P1090624.JPG,,TRUE, +N1,60111,sortie-4e5cfb5c-2930-494d-80a1-047621d36569,https://biolit.fr/sorties/sortie-4e5cfb5c-2930-494d-80a1-047621d36569/,Phil,,12/03/2017,13.0000000,13.0:45,47.852579000000,-3.977458000000,,Fouesnant - Finistère,45796,observation-4e5cfb5c-2930-494d-80a1-047621d36569-5,https://biolit.fr/observations/observation-4e5cfb5c-2930-494d-80a1-047621d36569-5/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1090619.JPG,,TRUE, +N1,60111,sortie-4e5cfb5c-2930-494d-80a1-047621d36569,https://biolit.fr/sorties/sortie-4e5cfb5c-2930-494d-80a1-047621d36569/,Phil,,12/03/2017,13.0000000,13.0:45,47.852579000000,-3.977458000000,,Fouesnant - Finistère,45798,observation-4e5cfb5c-2930-494d-80a1-047621d36569-6,https://biolit.fr/observations/observation-4e5cfb5c-2930-494d-80a1-047621d36569-6/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1090616.JPG,,TRUE, +N1,60112,sortie-0599684f-698a-4590-88b3-8c63a9c2a8fb,https://biolit.fr/sorties/sortie-0599684f-698a-4590-88b3-8c63a9c2a8fb/,Phil,,12/18/2017 0:00,9.0:35,9.0000000,47.83326600000,-4.174946000000,,Loctudy - Finistère,45800,observation-0599684f-698a-4590-88b3-8c63a9c2a8fb,https://biolit.fr/observations/observation-0599684f-698a-4590-88b3-8c63a9c2a8fb/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090829.JPG,,FALSE, +N1,60112,sortie-0599684f-698a-4590-88b3-8c63a9c2a8fb,https://biolit.fr/sorties/sortie-0599684f-698a-4590-88b3-8c63a9c2a8fb/,Phil,,12/18/2017 0:00,9.0:35,9.0000000,47.83326600000,-4.174946000000,,Loctudy - Finistère,45802,observation-0599684f-698a-4590-88b3-8c63a9c2a8fb-2,https://biolit.fr/observations/observation-0599684f-698a-4590-88b3-8c63a9c2a8fb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090830.JPG,,FALSE, +N1,60112,sortie-0599684f-698a-4590-88b3-8c63a9c2a8fb,https://biolit.fr/sorties/sortie-0599684f-698a-4590-88b3-8c63a9c2a8fb/,Phil,,12/18/2017 0:00,9.0:35,9.0000000,47.83326600000,-4.174946000000,,Loctudy - Finistère,45804,observation-0599684f-698a-4590-88b3-8c63a9c2a8fb-3,https://biolit.fr/observations/observation-0599684f-698a-4590-88b3-8c63a9c2a8fb-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090831.JPG,,FALSE, +N1,60112,sortie-0599684f-698a-4590-88b3-8c63a9c2a8fb,https://biolit.fr/sorties/sortie-0599684f-698a-4590-88b3-8c63a9c2a8fb/,Phil,,12/18/2017 0:00,9.0:35,9.0000000,47.83326600000,-4.174946000000,,Loctudy - Finistère,45806,observation-0599684f-698a-4590-88b3-8c63a9c2a8fb-4,https://biolit.fr/observations/observation-0599684f-698a-4590-88b3-8c63a9c2a8fb-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090832.JPG,,FALSE, +N1,60113,sortie-4ecace94-177a-47a9-8c34-95f4d1f0ef41,https://biolit.fr/sorties/sortie-4ecace94-177a-47a9-8c34-95f4d1f0ef41/,Phil,,12/16/2017 0:00,13.0000000,13.0:15,47.89597100000,-3.969703000000,,La Forêt-Fouesnant - Finistère,45808,observation-4ecace94-177a-47a9-8c34-95f4d1f0ef41,https://biolit.fr/observations/observation-4ecace94-177a-47a9-8c34-95f4d1f0ef41/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20171216_131157.jpg,,TRUE, +N1,60113,sortie-4ecace94-177a-47a9-8c34-95f4d1f0ef41,https://biolit.fr/sorties/sortie-4ecace94-177a-47a9-8c34-95f4d1f0ef41/,Phil,,12/16/2017 0:00,13.0000000,13.0:15,47.89597100000,-3.969703000000,,La Forêt-Fouesnant - Finistère,45810,observation-4ecace94-177a-47a9-8c34-95f4d1f0ef41-2,https://biolit.fr/observations/observation-4ecace94-177a-47a9-8c34-95f4d1f0ef41-2/,Ensis siliqua,Couteau-silique,,https://biolit.fr/wp-content/uploads/2023/07/20171216_131145.jpg,,TRUE, +N1,60113,sortie-4ecace94-177a-47a9-8c34-95f4d1f0ef41,https://biolit.fr/sorties/sortie-4ecace94-177a-47a9-8c34-95f4d1f0ef41/,Phil,,12/16/2017 0:00,13.0000000,13.0:15,47.89597100000,-3.969703000000,,La Forêt-Fouesnant - Finistère,45812,observation-4ecace94-177a-47a9-8c34-95f4d1f0ef41-3,https://biolit.fr/observations/observation-4ecace94-177a-47a9-8c34-95f4d1f0ef41-3/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20171216_131254.jpg,,TRUE, +N1,60113,sortie-4ecace94-177a-47a9-8c34-95f4d1f0ef41,https://biolit.fr/sorties/sortie-4ecace94-177a-47a9-8c34-95f4d1f0ef41/,Phil,,12/16/2017 0:00,13.0000000,13.0:15,47.89597100000,-3.969703000000,,La Forêt-Fouesnant - Finistère,45814,observation-4ecace94-177a-47a9-8c34-95f4d1f0ef41-4,https://biolit.fr/observations/observation-4ecace94-177a-47a9-8c34-95f4d1f0ef41-4/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20171216_131305.jpg,,TRUE, +N1,60113,sortie-4ecace94-177a-47a9-8c34-95f4d1f0ef41,https://biolit.fr/sorties/sortie-4ecace94-177a-47a9-8c34-95f4d1f0ef41/,Phil,,12/16/2017 0:00,13.0000000,13.0:15,47.89597100000,-3.969703000000,,La Forêt-Fouesnant - Finistère,45816,observation-4ecace94-177a-47a9-8c34-95f4d1f0ef41-5,https://biolit.fr/observations/observation-4ecace94-177a-47a9-8c34-95f4d1f0ef41-5/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/20171216_131403.jpg,,TRUE, +N1,60114,sortie-73baac83-82e7-4940-8f3c-5059edf9e434,https://biolit.fr/sorties/sortie-73baac83-82e7-4940-8f3c-5059edf9e434/,Phil,,12/11/2017,12.0:45,12.0000000,47.792291000000,-4.293736000000,,Le Gulvinec - Finistère,45818,observation-73baac83-82e7-4940-8f3c-5059edf9e434,https://biolit.fr/observations/observation-73baac83-82e7-4940-8f3c-5059edf9e434/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1090722.JPG,,TRUE, +N1,60114,sortie-73baac83-82e7-4940-8f3c-5059edf9e434,https://biolit.fr/sorties/sortie-73baac83-82e7-4940-8f3c-5059edf9e434/,Phil,,12/11/2017,12.0:45,12.0000000,47.792291000000,-4.293736000000,,Le Gulvinec - Finistère,45820,observation-73baac83-82e7-4940-8f3c-5059edf9e434-2,https://biolit.fr/observations/observation-73baac83-82e7-4940-8f3c-5059edf9e434-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1090724_0.JPG,,TRUE, +N1,60114,sortie-73baac83-82e7-4940-8f3c-5059edf9e434,https://biolit.fr/sorties/sortie-73baac83-82e7-4940-8f3c-5059edf9e434/,Phil,,12/11/2017,12.0:45,12.0000000,47.792291000000,-4.293736000000,,Le Gulvinec - Finistère,45822,observation-73baac83-82e7-4940-8f3c-5059edf9e434-3,https://biolit.fr/observations/observation-73baac83-82e7-4940-8f3c-5059edf9e434-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1090725_0.JPG,,TRUE, +N1,60114,sortie-73baac83-82e7-4940-8f3c-5059edf9e434,https://biolit.fr/sorties/sortie-73baac83-82e7-4940-8f3c-5059edf9e434/,Phil,,12/11/2017,12.0:45,12.0000000,47.792291000000,-4.293736000000,,Le Gulvinec - Finistère,45824,observation-73baac83-82e7-4940-8f3c-5059edf9e434-4,https://biolit.fr/observations/observation-73baac83-82e7-4940-8f3c-5059edf9e434-4/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1090726.JPG,,TRUE, +N1,60114,sortie-73baac83-82e7-4940-8f3c-5059edf9e434,https://biolit.fr/sorties/sortie-73baac83-82e7-4940-8f3c-5059edf9e434/,Phil,,12/11/2017,12.0:45,12.0000000,47.792291000000,-4.293736000000,,Le Gulvinec - Finistère,45826,observation-73baac83-82e7-4940-8f3c-5059edf9e434-5,https://biolit.fr/observations/observation-73baac83-82e7-4940-8f3c-5059edf9e434-5/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1090727.JPG,,TRUE, +N1,60115,sortie-663a2bc7-000a-4e0b-95b6-df221d2be341,https://biolit.fr/sorties/sortie-663a2bc7-000a-4e0b-95b6-df221d2be341/,Phil,,12/17/2017 0:00,14.0000000,14.000005,47.833171000000,-4.175014000000,,Loctudy - Finistère,45828,observation-663a2bc7-000a-4e0b-95b6-df221d2be341,https://biolit.fr/observations/observation-663a2bc7-000a-4e0b-95b6-df221d2be341/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090821.JPG,,FALSE, +N1,60115,sortie-663a2bc7-000a-4e0b-95b6-df221d2be341,https://biolit.fr/sorties/sortie-663a2bc7-000a-4e0b-95b6-df221d2be341/,Phil,,12/17/2017 0:00,14.0000000,14.000005,47.833171000000,-4.175014000000,,Loctudy - Finistère,45830,observation-663a2bc7-000a-4e0b-95b6-df221d2be341-2,https://biolit.fr/observations/observation-663a2bc7-000a-4e0b-95b6-df221d2be341-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090822.JPG,,FALSE, +N1,60115,sortie-663a2bc7-000a-4e0b-95b6-df221d2be341,https://biolit.fr/sorties/sortie-663a2bc7-000a-4e0b-95b6-df221d2be341/,Phil,,12/17/2017 0:00,14.0000000,14.000005,47.833171000000,-4.175014000000,,Loctudy - Finistère,45832,observation-663a2bc7-000a-4e0b-95b6-df221d2be341-3,https://biolit.fr/observations/observation-663a2bc7-000a-4e0b-95b6-df221d2be341-3/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1090823.JPG,,TRUE, +N1,60116,sortie-476291a9-54f9-495f-921c-d77f7386168f,https://biolit.fr/sorties/sortie-476291a9-54f9-495f-921c-d77f7386168f/,Phil,,12/17/2017 0:00,13.0000000,13.0:55,47.835891000000,-4.17637300000,,Loctudy - Finistère,45834,observation-476291a9-54f9-495f-921c-d77f7386168f,https://biolit.fr/observations/observation-476291a9-54f9-495f-921c-d77f7386168f/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1090818.JPG,,TRUE, +N1,60116,sortie-476291a9-54f9-495f-921c-d77f7386168f,https://biolit.fr/sorties/sortie-476291a9-54f9-495f-921c-d77f7386168f/,Phil,,12/17/2017 0:00,13.0000000,13.0:55,47.835891000000,-4.17637300000,,Loctudy - Finistère,45836,observation-476291a9-54f9-495f-921c-d77f7386168f-2,https://biolit.fr/observations/observation-476291a9-54f9-495f-921c-d77f7386168f-2/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1090815.JPG,,TRUE, +N1,60117,sortie-e1888375-3742-48e9-bb03-602f4227b5bf,https://biolit.fr/sorties/sortie-e1888375-3742-48e9-bb03-602f4227b5bf/,Phil,,12/03/2017,13.0000000,13.0:25,47.85239800000,-3.977353000000,,Fouesnant - Finistère,45838,observation-e1888375-3742-48e9-bb03-602f4227b5bf,https://biolit.fr/observations/observation-e1888375-3742-48e9-bb03-602f4227b5bf/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090596.JPG,,FALSE, +N1,60117,sortie-e1888375-3742-48e9-bb03-602f4227b5bf,https://biolit.fr/sorties/sortie-e1888375-3742-48e9-bb03-602f4227b5bf/,Phil,,12/03/2017,13.0000000,13.0:25,47.85239800000,-3.977353000000,,Fouesnant - Finistère,45840,observation-e1888375-3742-48e9-bb03-602f4227b5bf-2,https://biolit.fr/observations/observation-e1888375-3742-48e9-bb03-602f4227b5bf-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1090583.JPG,,TRUE, +N1,60117,sortie-e1888375-3742-48e9-bb03-602f4227b5bf,https://biolit.fr/sorties/sortie-e1888375-3742-48e9-bb03-602f4227b5bf/,Phil,,12/03/2017,13.0000000,13.0:25,47.85239800000,-3.977353000000,,Fouesnant - Finistère,45842,observation-e1888375-3742-48e9-bb03-602f4227b5bf-3,https://biolit.fr/observations/observation-e1888375-3742-48e9-bb03-602f4227b5bf-3/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1090585.JPG,,TRUE, +N1,60117,sortie-e1888375-3742-48e9-bb03-602f4227b5bf,https://biolit.fr/sorties/sortie-e1888375-3742-48e9-bb03-602f4227b5bf/,Phil,,12/03/2017,13.0000000,13.0:25,47.85239800000,-3.977353000000,,Fouesnant - Finistère,45844,observation-e1888375-3742-48e9-bb03-602f4227b5bf-4,https://biolit.fr/observations/observation-e1888375-3742-48e9-bb03-602f4227b5bf-4/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/P1090587.JPG,,TRUE, +N1,60117,sortie-e1888375-3742-48e9-bb03-602f4227b5bf,https://biolit.fr/sorties/sortie-e1888375-3742-48e9-bb03-602f4227b5bf/,Phil,,12/03/2017,13.0000000,13.0:25,47.85239800000,-3.977353000000,,Fouesnant - Finistère,45846,observation-e1888375-3742-48e9-bb03-602f4227b5bf-5,https://biolit.fr/observations/observation-e1888375-3742-48e9-bb03-602f4227b5bf-5/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1090588.JPG,,TRUE, +N1,60117,sortie-e1888375-3742-48e9-bb03-602f4227b5bf,https://biolit.fr/sorties/sortie-e1888375-3742-48e9-bb03-602f4227b5bf/,Phil,,12/03/2017,13.0000000,13.0:25,47.85239800000,-3.977353000000,,Fouesnant - Finistère,45848,observation-e1888375-3742-48e9-bb03-602f4227b5bf-6,https://biolit.fr/observations/observation-e1888375-3742-48e9-bb03-602f4227b5bf-6/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/P1090590.JPG,,TRUE, +N1,60118,sortie-8c5b49e6-22b0-4959-a6cf-d3d3a55eac3e,https://biolit.fr/sorties/sortie-8c5b49e6-22b0-4959-a6cf-d3d3a55eac3e/,Phil,,12/16/2017 0:00,13.0000000,13.0:15,47.895914000000,-3.969184000000,,La Forêt-Fouesnant - Finistère,45850,observation-8c5b49e6-22b0-4959-a6cf-d3d3a55eac3e,https://biolit.fr/observations/observation-8c5b49e6-22b0-4959-a6cf-d3d3a55eac3e/,Obelia geniculata,Obélie géniculée,,https://biolit.fr/wp-content/uploads/2023/07/20171216_131051.jpg,,TRUE, +N1,60118,sortie-8c5b49e6-22b0-4959-a6cf-d3d3a55eac3e,https://biolit.fr/sorties/sortie-8c5b49e6-22b0-4959-a6cf-d3d3a55eac3e/,Phil,,12/16/2017 0:00,13.0000000,13.0:15,47.895914000000,-3.969184000000,,La Forêt-Fouesnant - Finistère,45852,observation-8c5b49e6-22b0-4959-a6cf-d3d3a55eac3e-2,https://biolit.fr/observations/observation-8c5b49e6-22b0-4959-a6cf-d3d3a55eac3e-2/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/20171216_131057.jpg,,TRUE, +N1,60118,sortie-8c5b49e6-22b0-4959-a6cf-d3d3a55eac3e,https://biolit.fr/sorties/sortie-8c5b49e6-22b0-4959-a6cf-d3d3a55eac3e/,Phil,,12/16/2017 0:00,13.0000000,13.0:15,47.895914000000,-3.969184000000,,La Forêt-Fouesnant - Finistère,45854,observation-8c5b49e6-22b0-4959-a6cf-d3d3a55eac3e-3,https://biolit.fr/observations/observation-8c5b49e6-22b0-4959-a6cf-d3d3a55eac3e-3/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/20171216_131031.jpg,,TRUE, +N1,60118,sortie-8c5b49e6-22b0-4959-a6cf-d3d3a55eac3e,https://biolit.fr/sorties/sortie-8c5b49e6-22b0-4959-a6cf-d3d3a55eac3e/,Phil,,12/16/2017 0:00,13.0000000,13.0:15,47.895914000000,-3.969184000000,,La Forêt-Fouesnant - Finistère,45856,observation-8c5b49e6-22b0-4959-a6cf-d3d3a55eac3e-4,https://biolit.fr/observations/observation-8c5b49e6-22b0-4959-a6cf-d3d3a55eac3e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171216_131013.jpg,,FALSE, +N1,60119,sortie-3868946f-1113-45f6-94a8-73cf5bdccaab,https://biolit.fr/sorties/sortie-3868946f-1113-45f6-94a8-73cf5bdccaab/,cigale33,,12/05/2017,12.0000000,12.0000000,43.378833000000,-1.757955000000,,Hendaye,45858,observation-3868946f-1113-45f6-94a8-73cf5bdccaab,https://biolit.fr/observations/observation-3868946f-1113-45f6-94a8-73cf5bdccaab/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_8121.JPG,,FALSE, +N1,60119,sortie-3868946f-1113-45f6-94a8-73cf5bdccaab,https://biolit.fr/sorties/sortie-3868946f-1113-45f6-94a8-73cf5bdccaab/,cigale33,,12/05/2017,12.0000000,12.0000000,43.378833000000,-1.757955000000,,Hendaye,45860,observation-3868946f-1113-45f6-94a8-73cf5bdccaab-2,https://biolit.fr/observations/observation-3868946f-1113-45f6-94a8-73cf5bdccaab-2/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/_MG_8138.JPG,,TRUE, +N1,60119,sortie-3868946f-1113-45f6-94a8-73cf5bdccaab,https://biolit.fr/sorties/sortie-3868946f-1113-45f6-94a8-73cf5bdccaab/,cigale33,,12/05/2017,12.0000000,12.0000000,43.378833000000,-1.757955000000,,Hendaye,45862,observation-3868946f-1113-45f6-94a8-73cf5bdccaab-3,https://biolit.fr/observations/observation-3868946f-1113-45f6-94a8-73cf5bdccaab-3/,Felimare cantabrica,Doris cantabrique,,https://biolit.fr/wp-content/uploads/2023/07/_MG_8157.JPG,,TRUE, +N1,60120,sortie-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0,https://biolit.fr/sorties/sortie-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0/,Phil,,12/03/2017,13.0000000,14.0000000,47.854276000000,-3.979125000000,,Fouesnant - Finistère,45864,observation-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0,https://biolit.fr/observations/observation-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090659.JPG,,FALSE, +N1,60120,sortie-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0,https://biolit.fr/sorties/sortie-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0/,Phil,,12/03/2017,13.0000000,14.0000000,47.854276000000,-3.979125000000,,Fouesnant - Finistère,45866,observation-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0-2,https://biolit.fr/observations/observation-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0-2/,Membranipora membranacea,Membranipore,,https://biolit.fr/wp-content/uploads/2023/07/P1090654.JPG,,TRUE, +N1,60120,sortie-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0,https://biolit.fr/sorties/sortie-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0/,Phil,,12/03/2017,13.0000000,14.0000000,47.854276000000,-3.979125000000,,Fouesnant - Finistère,45868,observation-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0-3,https://biolit.fr/observations/observation-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090657.JPG,,FALSE, +N1,60120,sortie-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0,https://biolit.fr/sorties/sortie-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0/,Phil,,12/03/2017,13.0000000,14.0000000,47.854276000000,-3.979125000000,,Fouesnant - Finistère,45870,observation-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0-4,https://biolit.fr/observations/observation-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090652.JPG,,FALSE, +N1,60120,sortie-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0,https://biolit.fr/sorties/sortie-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0/,Phil,,12/03/2017,13.0000000,14.0000000,47.854276000000,-3.979125000000,,Fouesnant - Finistère,45872,observation-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0-5,https://biolit.fr/observations/observation-6d175cc0-0c7f-4b28-8261-2ffaabcf7ad0-5/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/P1090667_0.JPG,,TRUE, +N1,60121,sortie-8e06adc6-6a83-4040-9454-4aa89a5de4f5,https://biolit.fr/sorties/sortie-8e06adc6-6a83-4040-9454-4aa89a5de4f5/,nathalie,,12/14/2017 0:00,15.0000000,16.0000000,46.123196000000,-1.125801000000,,Plage d'Aytré ,45874,observation-8e06adc6-6a83-4040-9454-4aa89a5de4f5,https://biolit.fr/observations/observation-8e06adc6-6a83-4040-9454-4aa89a5de4f5/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171214_203221-scaled.jpg,,TRUE, +N1,60122,sortie-33a07486-98aa-423d-810f-4a455f97813a,https://biolit.fr/sorties/sortie-33a07486-98aa-423d-810f-4a455f97813a/,Phil,,12/11/2017,12.0:45,12.0000000,47.791996000000,-4.292558000000,,Le Guilvinec - Finistère,45876,observation-33a07486-98aa-423d-810f-4a455f97813a,https://biolit.fr/observations/observation-33a07486-98aa-423d-810f-4a455f97813a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090710.JPG,,FALSE, +N1,60122,sortie-33a07486-98aa-423d-810f-4a455f97813a,https://biolit.fr/sorties/sortie-33a07486-98aa-423d-810f-4a455f97813a/,Phil,,12/11/2017,12.0:45,12.0000000,47.791996000000,-4.292558000000,,Le Guilvinec - Finistère,45878,observation-33a07486-98aa-423d-810f-4a455f97813a-2,https://biolit.fr/observations/observation-33a07486-98aa-423d-810f-4a455f97813a-2/,Xanthoria parietina,Xanthorie,,https://biolit.fr/wp-content/uploads/2023/07/P1090714.JPG,,TRUE, +N1,60123,sortie-89730bf2-a76d-4eb1-95f8-4fbc35daf42b,https://biolit.fr/sorties/sortie-89730bf2-a76d-4eb1-95f8-4fbc35daf42b/,Observe la nature,,12/14/2017 0:00,15.0000000,16.0000000,43.393758000000,3.669438000000,,Plage de sete,45880,observation-89730bf2-a76d-4eb1-95f8-4fbc35daf42b,https://biolit.fr/observations/observation-89730bf2-a76d-4eb1-95f8-4fbc35daf42b/,Naticarius hebraeus,Natice hébraïque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171214_152747-scaled.jpg,,TRUE, +N1,60123,sortie-89730bf2-a76d-4eb1-95f8-4fbc35daf42b,https://biolit.fr/sorties/sortie-89730bf2-a76d-4eb1-95f8-4fbc35daf42b/,Observe la nature,,12/14/2017 0:00,15.0000000,16.0000000,43.393758000000,3.669438000000,,Plage de sete,45882,observation-89730bf2-a76d-4eb1-95f8-4fbc35daf42b-2,https://biolit.fr/observations/observation-89730bf2-a76d-4eb1-95f8-4fbc35daf42b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171214_161922-scaled.jpg,,FALSE, +N1,60123,sortie-89730bf2-a76d-4eb1-95f8-4fbc35daf42b,https://biolit.fr/sorties/sortie-89730bf2-a76d-4eb1-95f8-4fbc35daf42b/,Observe la nature,,12/14/2017 0:00,15.0000000,16.0000000,43.393758000000,3.669438000000,,Plage de sete,45884,observation-89730bf2-a76d-4eb1-95f8-4fbc35daf42b-3,https://biolit.fr/observations/observation-89730bf2-a76d-4eb1-95f8-4fbc35daf42b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171214_154122-scaled.jpg,,FALSE, +N1,60123,sortie-89730bf2-a76d-4eb1-95f8-4fbc35daf42b,https://biolit.fr/sorties/sortie-89730bf2-a76d-4eb1-95f8-4fbc35daf42b/,Observe la nature,,12/14/2017 0:00,15.0000000,16.0000000,43.393758000000,3.669438000000,,Plage de sete,45886,observation-89730bf2-a76d-4eb1-95f8-4fbc35daf42b-4,https://biolit.fr/observations/observation-89730bf2-a76d-4eb1-95f8-4fbc35daf42b-4/,Astropecten spinulosus,Petite étoile-peigne,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171214_151229-scaled.jpg,,TRUE, +N1,60123,sortie-89730bf2-a76d-4eb1-95f8-4fbc35daf42b,https://biolit.fr/sorties/sortie-89730bf2-a76d-4eb1-95f8-4fbc35daf42b/,Observe la nature,,12/14/2017 0:00,15.0000000,16.0000000,43.393758000000,3.669438000000,,Plage de sete,45888,observation-89730bf2-a76d-4eb1-95f8-4fbc35daf42b-5,https://biolit.fr/observations/observation-89730bf2-a76d-4eb1-95f8-4fbc35daf42b-5/,Naticarius hebraeus,Natice hébraïque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171214_155213-scaled.jpg,,TRUE, +N1,60123,sortie-89730bf2-a76d-4eb1-95f8-4fbc35daf42b,https://biolit.fr/sorties/sortie-89730bf2-a76d-4eb1-95f8-4fbc35daf42b/,Observe la nature,,12/14/2017 0:00,15.0000000,16.0000000,43.393758000000,3.669438000000,,Plage de sete,45890,observation-89730bf2-a76d-4eb1-95f8-4fbc35daf42b-6,https://biolit.fr/observations/observation-89730bf2-a76d-4eb1-95f8-4fbc35daf42b-6/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171214_154545-scaled.jpg,,TRUE, +N1,60124,sortie-37e4a1da-e65f-49f3-bff1-fecef3c86c82,https://biolit.fr/sorties/sortie-37e4a1da-e65f-49f3-bff1-fecef3c86c82/,Ville de Marseille Saint Gabriel CM2,,11/20/2017 0:00,10.0000000,12.0000000,43.279946000000,5.352508000000,,Ans de la fausse monnaie,45892,observation-37e4a1da-e65f-49f3-bff1-fecef3c86c82,https://biolit.fr/observations/observation-37e4a1da-e65f-49f3-bff1-fecef3c86c82/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle bleue_Patella caerulea vue dessus_0-scaled.jpg,,FALSE, +N1,60125,sortie-ebfcc7c6-b376-4e45-898b-557ddb9deab4,https://biolit.fr/sorties/sortie-ebfcc7c6-b376-4e45-898b-557ddb9deab4/,Ville de Marseille Saint Gabriel CM2,,11/20/2017 0:00,10.0000000,12.0000000,43.279974000000,5.35244400000,,Anse de la fausse monnaie,45894,observation-ebfcc7c6-b376-4e45-898b-557ddb9deab4,https://biolit.fr/observations/observation-ebfcc7c6-b376-4e45-898b-557ddb9deab4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Posidonie_Posidonia oceanica_0-scaled.jpg,,FALSE, +N1,60126,sortie-187e6df5-1b84-4f79-8f20-9a83f50faf92,https://biolit.fr/sorties/sortie-187e6df5-1b84-4f79-8f20-9a83f50faf92/,Ville de Marseille Saint Gabriel CM2,,11/20/2017 0:00,10.0000000,12.0000000,43.279954000000,5.352463000000,,Anse de la fausse monnaie,45896,observation-187e6df5-1b84-4f79-8f20-9a83f50faf92,https://biolit.fr/observations/observation-187e6df5-1b84-4f79-8f20-9a83f50faf92/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/Patelle bleue_Patella caerulea vue dessous-scaled.jpg,,TRUE, +N1,60127,sortie-8b6b3b2a-c03b-4852-ba0b-f2bffd3d2714,https://biolit.fr/sorties/sortie-8b6b3b2a-c03b-4852-ba0b-f2bffd3d2714/,Ville de Marseille Saint Gabriel CM2,,11/20/2017 0:00,10.0000000,12.0000000,43.27994600000,5.352484000000,,Anse de la Fausse monnaie,45898,observation-8b6b3b2a-c03b-4852-ba0b-f2bffd3d2714,https://biolit.fr/observations/observation-8b6b3b2a-c03b-4852-ba0b-f2bffd3d2714/,,,,https://biolit.fr/wp-content/uploads/2023/07/Moule mediterraneenneMytilus galloprovincialis vue dessous_0-scaled.jpg,,FALSE, +N1,60128,sortie-ff83221d-1b54-4a83-9de8-976ba3b53c0e,https://biolit.fr/sorties/sortie-ff83221d-1b54-4a83-9de8-976ba3b53c0e/,Ville de Marseille Saint Gabriel CM2,,11/20/2017 0:00,10.0000000,12.0000000,43.280346000000,5.35274200000,,ANSE DE LA FOSSE MONAIE,45900,observation-ff83221d-1b54-4a83-9de8-976ba3b53c0e,https://biolit.fr/observations/observation-ff83221d-1b54-4a83-9de8-976ba3b53c0e/,,,,https://biolit.fr/wp-content/uploads/2023/07/Moule mediterraneenneMytilus galloprovincialis vue dessus-scaled.jpg,,FALSE, +N1,60129,sortie-c77a4d5f-dfc9-4b0e-ab5f-9b24baaffde2,https://biolit.fr/sorties/sortie-c77a4d5f-dfc9-4b0e-ab5f-9b24baaffde2/,Ville de Marseille Saint Gabriel CM2,,11/20/2017 0:00,10.0000000,12.0000000,43.280123000000,5.352473000000,,anse de la fausse de la monnaie,45902,observation-c77a4d5f-dfc9-4b0e-ab5f-9b24baaffde2,https://biolit.fr/observations/observation-c77a4d5f-dfc9-4b0e-ab5f-9b24baaffde2/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Praire commune_Venus verrucosa vue dessous-scaled.jpg,,TRUE, +N1,60130,sortie-552e8136-1502-4ffc-a45d-a49977843836,https://biolit.fr/sorties/sortie-552e8136-1502-4ffc-a45d-a49977843836/,Ville de Marseille Saint Gabriel CM2,,11/20/2017 0:00,10.0000000,12.0000000,43.279792000000,5.352463000000,,ance de la fausse monaie,45904,observation-552e8136-1502-4ffc-a45d-a49977843836,https://biolit.fr/observations/observation-552e8136-1502-4ffc-a45d-a49977843836/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Praire commune_Venus verrucosa vue dessus-scaled.jpg,,TRUE, +N1,60131,sortie-725a20c7-bdf9-40d2-b8a4-2e257ca4ddd4,https://biolit.fr/sorties/sortie-725a20c7-bdf9-40d2-b8a4-2e257ca4ddd4/,Phil,,12/03/2017,13.0:55,14.0000000,47.854392000000,-3.979313000000,,Fouesnant - Finistère,45906,observation-725a20c7-bdf9-40d2-b8a4-2e257ca4ddd4,https://biolit.fr/observations/observation-725a20c7-bdf9-40d2-b8a4-2e257ca4ddd4/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1090662_0.JPG,,TRUE, +N1,60131,sortie-725a20c7-bdf9-40d2-b8a4-2e257ca4ddd4,https://biolit.fr/sorties/sortie-725a20c7-bdf9-40d2-b8a4-2e257ca4ddd4/,Phil,,12/03/2017,13.0:55,14.0000000,47.854392000000,-3.979313000000,,Fouesnant - Finistère,45908,observation-725a20c7-bdf9-40d2-b8a4-2e257ca4ddd4-2,https://biolit.fr/observations/observation-725a20c7-bdf9-40d2-b8a4-2e257ca4ddd4-2/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1090663_0.JPG,,TRUE, +N1,60131,sortie-725a20c7-bdf9-40d2-b8a4-2e257ca4ddd4,https://biolit.fr/sorties/sortie-725a20c7-bdf9-40d2-b8a4-2e257ca4ddd4/,Phil,,12/03/2017,13.0:55,14.0000000,47.854392000000,-3.979313000000,,Fouesnant - Finistère,45910,observation-725a20c7-bdf9-40d2-b8a4-2e257ca4ddd4-3,https://biolit.fr/observations/observation-725a20c7-bdf9-40d2-b8a4-2e257ca4ddd4-3/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1090661_0.JPG,,TRUE, +N1,60132,sortie-47165e19-3f4b-472a-a21d-14d82f4a414b,https://biolit.fr/sorties/sortie-47165e19-3f4b-472a-a21d-14d82f4a414b/,Phil,,12/11/2017,12.0000000,12.0:45,47.792378000000,-4.292985000000,,Le Guilvinec - Finistère,45912,observation-47165e19-3f4b-472a-a21d-14d82f4a414b,https://biolit.fr/observations/observation-47165e19-3f4b-472a-a21d-14d82f4a414b/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/2023/07/P1090670.JPG,,TRUE, +N1,60132,sortie-47165e19-3f4b-472a-a21d-14d82f4a414b,https://biolit.fr/sorties/sortie-47165e19-3f4b-472a-a21d-14d82f4a414b/,Phil,,12/11/2017,12.0000000,12.0:45,47.792378000000,-4.292985000000,,Le Guilvinec - Finistère,45914,observation-47165e19-3f4b-472a-a21d-14d82f4a414b-2,https://biolit.fr/observations/observation-47165e19-3f4b-472a-a21d-14d82f4a414b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090672.JPG,,FALSE, +N1,60133,sortie-30d24843-4fa7-4714-98af-3fb7d44f59b1,https://biolit.fr/sorties/sortie-30d24843-4fa7-4714-98af-3fb7d44f59b1/,Phil,,12/03/2017,13.0000000,13.0:15,47.852049000000,-3.976497000000,,Fouesnant - Finistère,45916,observation-30d24843-4fa7-4714-98af-3fb7d44f59b1,https://biolit.fr/observations/observation-30d24843-4fa7-4714-98af-3fb7d44f59b1/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/P1090560.JPG,,TRUE, +N1,60133,sortie-30d24843-4fa7-4714-98af-3fb7d44f59b1,https://biolit.fr/sorties/sortie-30d24843-4fa7-4714-98af-3fb7d44f59b1/,Phil,,12/03/2017,13.0000000,13.0:15,47.852049000000,-3.976497000000,,Fouesnant - Finistère,45918,observation-30d24843-4fa7-4714-98af-3fb7d44f59b1-2,https://biolit.fr/observations/observation-30d24843-4fa7-4714-98af-3fb7d44f59b1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090562.JPG,,FALSE, +N1,60133,sortie-30d24843-4fa7-4714-98af-3fb7d44f59b1,https://biolit.fr/sorties/sortie-30d24843-4fa7-4714-98af-3fb7d44f59b1/,Phil,,12/03/2017,13.0000000,13.0:15,47.852049000000,-3.976497000000,,Fouesnant - Finistère,45920,observation-30d24843-4fa7-4714-98af-3fb7d44f59b1-3,https://biolit.fr/observations/observation-30d24843-4fa7-4714-98af-3fb7d44f59b1-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090567.JPG,,FALSE, +N1,60133,sortie-30d24843-4fa7-4714-98af-3fb7d44f59b1,https://biolit.fr/sorties/sortie-30d24843-4fa7-4714-98af-3fb7d44f59b1/,Phil,,12/03/2017,13.0000000,13.0:15,47.852049000000,-3.976497000000,,Fouesnant - Finistère,45922,observation-30d24843-4fa7-4714-98af-3fb7d44f59b1-4,https://biolit.fr/observations/observation-30d24843-4fa7-4714-98af-3fb7d44f59b1-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090568.JPG,,FALSE, +N1,60133,sortie-30d24843-4fa7-4714-98af-3fb7d44f59b1,https://biolit.fr/sorties/sortie-30d24843-4fa7-4714-98af-3fb7d44f59b1/,Phil,,12/03/2017,13.0000000,13.0:15,47.852049000000,-3.976497000000,,Fouesnant - Finistère,45924,observation-30d24843-4fa7-4714-98af-3fb7d44f59b1-5,https://biolit.fr/observations/observation-30d24843-4fa7-4714-98af-3fb7d44f59b1-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090570.JPG,,FALSE, +N1,60133,sortie-30d24843-4fa7-4714-98af-3fb7d44f59b1,https://biolit.fr/sorties/sortie-30d24843-4fa7-4714-98af-3fb7d44f59b1/,Phil,,12/03/2017,13.0000000,13.0:15,47.852049000000,-3.976497000000,,Fouesnant - Finistère,45926,observation-30d24843-4fa7-4714-98af-3fb7d44f59b1-6,https://biolit.fr/observations/observation-30d24843-4fa7-4714-98af-3fb7d44f59b1-6/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/P1090573.JPG,,TRUE, +N1,60134,sortie-ef5615ed-28e4-441d-b010-129b12366a58,https://biolit.fr/sorties/sortie-ef5615ed-28e4-441d-b010-129b12366a58/,CPIE Littoral Basque,,05/10/2017,10.0000000,12.0000000,43.381330000000,-1.733099000000,,Haiçabia,45928,observation-ef5615ed-28e4-441d-b010-129b12366a58,https://biolit.fr/observations/observation-ef5615ed-28e4-441d-b010-129b12366a58/,,,,https://biolit.fr/wp-content/uploads/2023/07/File387-scaled.jpg,,FALSE, +N1,60134,sortie-ef5615ed-28e4-441d-b010-129b12366a58,https://biolit.fr/sorties/sortie-ef5615ed-28e4-441d-b010-129b12366a58/,CPIE Littoral Basque,,05/10/2017,10.0000000,12.0000000,43.381330000000,-1.733099000000,,Haiçabia,45930,observation-ef5615ed-28e4-441d-b010-129b12366a58-2,https://biolit.fr/observations/observation-ef5615ed-28e4-441d-b010-129b12366a58-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/File386-scaled.jpg,,FALSE, +N1,60134,sortie-ef5615ed-28e4-441d-b010-129b12366a58,https://biolit.fr/sorties/sortie-ef5615ed-28e4-441d-b010-129b12366a58/,CPIE Littoral Basque,,05/10/2017,10.0000000,12.0000000,43.381330000000,-1.733099000000,,Haiçabia,45932,observation-ef5615ed-28e4-441d-b010-129b12366a58-3,https://biolit.fr/observations/observation-ef5615ed-28e4-441d-b010-129b12366a58-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/File393-scaled.jpg,,FALSE, +N1,60134,sortie-ef5615ed-28e4-441d-b010-129b12366a58,https://biolit.fr/sorties/sortie-ef5615ed-28e4-441d-b010-129b12366a58/,CPIE Littoral Basque,,05/10/2017,10.0000000,12.0000000,43.381330000000,-1.733099000000,,Haiçabia,45934,observation-ef5615ed-28e4-441d-b010-129b12366a58-4,https://biolit.fr/observations/observation-ef5615ed-28e4-441d-b010-129b12366a58-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/File394-scaled.jpg,,FALSE, +N1,60134,sortie-ef5615ed-28e4-441d-b010-129b12366a58,https://biolit.fr/sorties/sortie-ef5615ed-28e4-441d-b010-129b12366a58/,CPIE Littoral Basque,,05/10/2017,10.0000000,12.0000000,43.381330000000,-1.733099000000,,Haiçabia,45936,observation-ef5615ed-28e4-441d-b010-129b12366a58-5,https://biolit.fr/observations/observation-ef5615ed-28e4-441d-b010-129b12366a58-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/File402-scaled.jpg,,FALSE, +N1,60135,sortie-2e1d7485-dee2-40f5-914d-22b39e2dbbef,https://biolit.fr/sorties/sortie-2e1d7485-dee2-40f5-914d-22b39e2dbbef/,CPIE Littoral Basque,,4/26/2017 0:00,10.0000000,12.0000000,43.381108000000,-1.73296500000,,Haiçabia,45938,observation-2e1d7485-dee2-40f5-914d-22b39e2dbbef,https://biolit.fr/observations/observation-2e1d7485-dee2-40f5-914d-22b39e2dbbef/,,,,https://biolit.fr/wp-content/uploads/2023/07/CPIELB_Crique_Haizabia_26avril2017_3-scaled.jpg,,FALSE, +N1,60135,sortie-2e1d7485-dee2-40f5-914d-22b39e2dbbef,https://biolit.fr/sorties/sortie-2e1d7485-dee2-40f5-914d-22b39e2dbbef/,CPIE Littoral Basque,,4/26/2017 0:00,10.0000000,12.0000000,43.381108000000,-1.73296500000,,Haiçabia,45940,observation-2e1d7485-dee2-40f5-914d-22b39e2dbbef-2,https://biolit.fr/observations/observation-2e1d7485-dee2-40f5-914d-22b39e2dbbef-2/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P4260544-scaled.jpg,,TRUE, +N1,60135,sortie-2e1d7485-dee2-40f5-914d-22b39e2dbbef,https://biolit.fr/sorties/sortie-2e1d7485-dee2-40f5-914d-22b39e2dbbef/,CPIE Littoral Basque,,4/26/2017 0:00,10.0000000,12.0000000,43.381108000000,-1.73296500000,,Haiçabia,45942,observation-2e1d7485-dee2-40f5-914d-22b39e2dbbef-3,https://biolit.fr/observations/observation-2e1d7485-dee2-40f5-914d-22b39e2dbbef-3/,Ophioderma longicaudum,Ophiure lisse,,https://biolit.fr/wp-content/uploads/2023/07/P4260552-scaled.jpg,,TRUE, +N1,60135,sortie-2e1d7485-dee2-40f5-914d-22b39e2dbbef,https://biolit.fr/sorties/sortie-2e1d7485-dee2-40f5-914d-22b39e2dbbef/,CPIE Littoral Basque,,4/26/2017 0:00,10.0000000,12.0000000,43.381108000000,-1.73296500000,,Haiçabia,45944,observation-2e1d7485-dee2-40f5-914d-22b39e2dbbef-4,https://biolit.fr/observations/observation-2e1d7485-dee2-40f5-914d-22b39e2dbbef-4/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/P4260554-scaled.jpg,,TRUE, +N1,60135,sortie-2e1d7485-dee2-40f5-914d-22b39e2dbbef,https://biolit.fr/sorties/sortie-2e1d7485-dee2-40f5-914d-22b39e2dbbef/,CPIE Littoral Basque,,4/26/2017 0:00,10.0000000,12.0000000,43.381108000000,-1.73296500000,,Haiçabia,45946,observation-2e1d7485-dee2-40f5-914d-22b39e2dbbef-5,https://biolit.fr/observations/observation-2e1d7485-dee2-40f5-914d-22b39e2dbbef-5/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P4260553-scaled.jpg,,TRUE, +N1,60135,sortie-2e1d7485-dee2-40f5-914d-22b39e2dbbef,https://biolit.fr/sorties/sortie-2e1d7485-dee2-40f5-914d-22b39e2dbbef/,CPIE Littoral Basque,,4/26/2017 0:00,10.0000000,12.0000000,43.381108000000,-1.73296500000,,Haiçabia,45948,observation-2e1d7485-dee2-40f5-914d-22b39e2dbbef-6,https://biolit.fr/observations/observation-2e1d7485-dee2-40f5-914d-22b39e2dbbef-6/,Lepadogaster lepadogaster,Porte-écuelle de Gouan,,https://biolit.fr/wp-content/uploads/2023/07/P4260555-scaled.jpg,,TRUE, +N1,60135,sortie-2e1d7485-dee2-40f5-914d-22b39e2dbbef,https://biolit.fr/sorties/sortie-2e1d7485-dee2-40f5-914d-22b39e2dbbef/,CPIE Littoral Basque,,4/26/2017 0:00,10.0000000,12.0000000,43.381108000000,-1.73296500000,,Haiçabia,45950,observation-2e1d7485-dee2-40f5-914d-22b39e2dbbef-7,https://biolit.fr/observations/observation-2e1d7485-dee2-40f5-914d-22b39e2dbbef-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P4260561-scaled.jpg,,FALSE, +N1,60135,sortie-2e1d7485-dee2-40f5-914d-22b39e2dbbef,https://biolit.fr/sorties/sortie-2e1d7485-dee2-40f5-914d-22b39e2dbbef/,CPIE Littoral Basque,,4/26/2017 0:00,10.0000000,12.0000000,43.381108000000,-1.73296500000,,Haiçabia,45952,observation-2e1d7485-dee2-40f5-914d-22b39e2dbbef-8,https://biolit.fr/observations/observation-2e1d7485-dee2-40f5-914d-22b39e2dbbef-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P4260564-scaled.jpg,,FALSE, +N1,60136,sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee,https://biolit.fr/sorties/sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee/,CPIE Littoral Basque,,3/29/2017 0:00,14.0000000,15.0000000,43.381003000000,-1.732939000000,,Haiçabia,45954,observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee,https://biolit.fr/observations/observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee/,,,,https://biolit.fr/wp-content/uploads/2023/07/File218-scaled.jpg,,FALSE, +N1,60136,sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee,https://biolit.fr/sorties/sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee/,CPIE Littoral Basque,,3/29/2017 0:00,14.0000000,15.0000000,43.381003000000,-1.732939000000,,Haiçabia,45956,observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-2,https://biolit.fr/observations/observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-2/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/File236-scaled.jpg,,TRUE, +N1,60136,sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee,https://biolit.fr/sorties/sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee/,CPIE Littoral Basque,,3/29/2017 0:00,14.0000000,15.0000000,43.381003000000,-1.732939000000,,Haiçabia,45958,observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-3,https://biolit.fr/observations/observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-3/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/File279-scaled.jpg,,TRUE, +N1,60136,sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee,https://biolit.fr/sorties/sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee/,CPIE Littoral Basque,,3/29/2017 0:00,14.0000000,15.0000000,43.381003000000,-1.732939000000,,Haiçabia,45960,observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-4,https://biolit.fr/observations/observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-4/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/2023/07/File285-scaled.jpg,,TRUE, +N1,60136,sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee,https://biolit.fr/sorties/sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee/,CPIE Littoral Basque,,3/29/2017 0:00,14.0000000,15.0000000,43.381003000000,-1.732939000000,,Haiçabia,45962,observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-5,https://biolit.fr/observations/observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-5/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/File294-scaled.jpg,,TRUE, +N1,60136,sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee,https://biolit.fr/sorties/sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee/,CPIE Littoral Basque,,3/29/2017 0:00,14.0000000,15.0000000,43.381003000000,-1.732939000000,,Haiçabia,45964,observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-6,https://biolit.fr/observations/observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3290513.JPG,,FALSE, +N1,60136,sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee,https://biolit.fr/sorties/sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee/,CPIE Littoral Basque,,3/29/2017 0:00,14.0000000,15.0000000,43.381003000000,-1.732939000000,,Haiçabia,45966,observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-7,https://biolit.fr/observations/observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3290472.JPG,,FALSE, +N1,60136,sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee,https://biolit.fr/sorties/sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee/,CPIE Littoral Basque,,3/29/2017 0:00,14.0000000,15.0000000,43.381003000000,-1.732939000000,,Haiçabia,45968,observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-8,https://biolit.fr/observations/observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-8/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P3290495-scaled.jpg,,TRUE, +N1,60136,sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee,https://biolit.fr/sorties/sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee/,CPIE Littoral Basque,,3/29/2017 0:00,14.0000000,15.0000000,43.381003000000,-1.732939000000,,Haiçabia,45970,observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-9,https://biolit.fr/observations/observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-9/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/P3290455.JPG,,TRUE, +N1,60136,sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee,https://biolit.fr/sorties/sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee/,CPIE Littoral Basque,,3/29/2017 0:00,14.0000000,15.0000000,43.381003000000,-1.732939000000,,Haiçabia,45972,observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-10,https://biolit.fr/observations/observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3290482.JPG,,FALSE, +N1,60136,sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee,https://biolit.fr/sorties/sortie-1287fb3c-6c41-42b2-8dc5-611f15fdddee/,CPIE Littoral Basque,,3/29/2017 0:00,14.0000000,15.0000000,43.381003000000,-1.732939000000,,Haiçabia,45974,observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-11,https://biolit.fr/observations/observation-1287fb3c-6c41-42b2-8dc5-611f15fdddee-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3290430-scaled.jpg,,FALSE, +N1,60137,sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0,https://biolit.fr/sorties/sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0/,CPIE Littoral Basque,,03/01/2017,14.0000000,15.0000000,43.381026000000,-1.732949000000,,Haiçabia,45976,observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0,https://biolit.fr/observations/observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0/,Coryphoblennius galerita,Blennie coiffée,,https://biolit.fr/wp-content/uploads/2023/07/2017 03 01 Haizabia (35)-scaled.jpg,,TRUE, +N1,60137,sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0,https://biolit.fr/sorties/sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0/,CPIE Littoral Basque,,03/01/2017,14.0000000,15.0000000,43.381026000000,-1.732949000000,,Haiçabia,45978,observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-2,https://biolit.fr/observations/observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/2017 03 01 Haizabia (33)-scaled.jpg,,FALSE, +N1,60137,sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0,https://biolit.fr/sorties/sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0/,CPIE Littoral Basque,,03/01/2017,14.0000000,15.0000000,43.381026000000,-1.732949000000,,Haiçabia,45980,observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-3,https://biolit.fr/observations/observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/2017 03 01 Haizabia (27)-scaled.jpg,,FALSE, +N1,60137,sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0,https://biolit.fr/sorties/sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0/,CPIE Littoral Basque,,03/01/2017,14.0000000,15.0000000,43.381026000000,-1.732949000000,,Haiçabia,45982,observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-4,https://biolit.fr/observations/observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-4/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0612.JPG,,TRUE, +N1,60137,sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0,https://biolit.fr/sorties/sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0/,CPIE Littoral Basque,,03/01/2017,14.0000000,15.0000000,43.381026000000,-1.732949000000,,Haiçabia,45984,observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-5,https://biolit.fr/observations/observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0639.JPG,,FALSE, +N1,60137,sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0,https://biolit.fr/sorties/sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0/,CPIE Littoral Basque,,03/01/2017,14.0000000,15.0000000,43.381026000000,-1.732949000000,,Haiçabia,45986,observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-6,https://biolit.fr/observations/observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0641_0-scaled.jpg,,FALSE, +N1,60137,sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0,https://biolit.fr/sorties/sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0/,CPIE Littoral Basque,,03/01/2017,14.0000000,15.0000000,43.381026000000,-1.732949000000,,Haiçabia,45988,observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-7,https://biolit.fr/observations/observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0656.JPG,,FALSE, +N1,60137,sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0,https://biolit.fr/sorties/sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0/,CPIE Littoral Basque,,03/01/2017,14.0000000,15.0000000,43.381026000000,-1.732949000000,,Haiçabia,45990,observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-8,https://biolit.fr/observations/observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-8/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0667.JPG,,TRUE, +N1,60137,sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0,https://biolit.fr/sorties/sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0/,CPIE Littoral Basque,,03/01/2017,14.0000000,15.0000000,43.381026000000,-1.732949000000,,Haiçabia,45992,observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-9,https://biolit.fr/observations/observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-9/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P3010409-scaled.jpg,,TRUE, +N1,60137,sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0,https://biolit.fr/sorties/sortie-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0/,CPIE Littoral Basque,,03/01/2017,14.0000000,15.0000000,43.381026000000,-1.732949000000,,Haiçabia,45994,observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-10,https://biolit.fr/observations/observation-05d7a49d-ab4a-40e7-8dcb-fcd8a0fdccc0-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3010415-scaled.jpg,,FALSE, +N1,60138,sortie-bb501e6d-8940-4c46-aeb4-5b489e67183e,https://biolit.fr/sorties/sortie-bb501e6d-8940-4c46-aeb4-5b489e67183e/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.239895000000,5.362427000000,,Plage du bain des dames,45996,observation-bb501e6d-8940-4c46-aeb4-5b489e67183e,https://biolit.fr/observations/observation-bb501e6d-8940-4c46-aeb4-5b489e67183e/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/Cerithe goumier-Cerithium vulgatum.JPG,,TRUE, +N1,60139,sortie-d4f0fa83-3549-4a3a-9346-1f93a3e64a78,https://biolit.fr/sorties/sortie-d4f0fa83-3549-4a3a-9346-1f93a3e64a78/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.239856000000,5.362427000000,,Plage du bain des dames,45997,observation-d4f0fa83-3549-4a3a-9346-1f93a3e64a78,https://biolit.fr/observations/observation-d4f0fa83-3549-4a3a-9346-1f93a3e64a78/,Limaria hians,Lime bâillante,,https://biolit.fr/wp-content/uploads/2023/07/Lime Baillante-Limaria hians interieur.jpg,,TRUE, +N1,60140,sortie-5e0df574-ffea-4d1b-8c3a-eba126ed7739,https://biolit.fr/sorties/sortie-5e0df574-ffea-4d1b-8c3a-eba126ed7739/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.24001400000,5.362482000000,,plage de bain des dames,46001,observation-5e0df574-ffea-4d1b-8c3a-eba126ed7739-2,https://biolit.fr/observations/observation-5e0df574-ffea-4d1b-8c3a-eba126ed7739-2/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/2023/07/Oreil de Neptune- Haliotis tuberculata lamellosa interieur_0-scaled.jpg,,TRUE, +N1,60141,sortie-8d21ae01-d400-4240-b350-69e32817f4f0,https://biolit.fr/sorties/sortie-8d21ae01-d400-4240-b350-69e32817f4f0/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.239881000000,5.36246000000,,Plage du Bain des Dames,46003,observation-8d21ae01-d400-4240-b350-69e32817f4f0,https://biolit.fr/observations/observation-8d21ae01-d400-4240-b350-69e32817f4f0/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Cormaillot perceur-Ocenebra erinaceus extérieur-rotated.jpg,,TRUE, +N1,60141,sortie-8d21ae01-d400-4240-b350-69e32817f4f0,https://biolit.fr/sorties/sortie-8d21ae01-d400-4240-b350-69e32817f4f0/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.239881000000,5.36246000000,,Plage du Bain des Dames,46005,observation-8d21ae01-d400-4240-b350-69e32817f4f0-2,https://biolit.fr/observations/observation-8d21ae01-d400-4240-b350-69e32817f4f0-2/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Cormaillot perceur-Ocenebra erinaceus interieur-rotated.jpg,,TRUE, +N1,60142,sortie-77875e76-5644-477e-a20b-c0b35118ca27,https://biolit.fr/sorties/sortie-77875e76-5644-477e-a20b-c0b35118ca27/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.239971000000,5.362495000000,,plage du bain des dames,46007,observation-77875e76-5644-477e-a20b-c0b35118ca27,https://biolit.fr/observations/observation-77875e76-5644-477e-a20b-c0b35118ca27/,Limaria hians,Lime bâillante,,https://biolit.fr/wp-content/uploads/2023/07/Lime Baillante-Limaria hians exterieur.jpg,,TRUE, +N1,60143,sortie-48fe6b32-f022-4cd7-a839-344c27f409f2,https://biolit.fr/sorties/sortie-48fe6b32-f022-4cd7-a839-344c27f409f2/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.239967000000,5.362461000000,,PLAGE DU BAIN DES DAMES,46009,observation-48fe6b32-f022-4cd7-a839-344c27f409f2,https://biolit.fr/observations/observation-48fe6b32-f022-4cd7-a839-344c27f409f2/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/araignée de mer- Maja sp-scaled.jpg,,TRUE, +N1,60144,sortie-bfb31f18-5b99-4a51-9ea8-2b51e39920a2,https://biolit.fr/sorties/sortie-bfb31f18-5b99-4a51-9ea8-2b51e39920a2/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.23981700000,5.362499000000,,plage du bain des dames,46011,observation-bfb31f18-5b99-4a51-9ea8-2b51e39920a2,https://biolit.fr/observations/observation-bfb31f18-5b99-4a51-9ea8-2b51e39920a2/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Praire comune- venus verrucosa exterieur-scaled.jpg,,TRUE, +N1,60144,sortie-bfb31f18-5b99-4a51-9ea8-2b51e39920a2,https://biolit.fr/sorties/sortie-bfb31f18-5b99-4a51-9ea8-2b51e39920a2/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.23981700000,5.362499000000,,plage du bain des dames,46013,observation-bfb31f18-5b99-4a51-9ea8-2b51e39920a2-2,https://biolit.fr/observations/observation-bfb31f18-5b99-4a51-9ea8-2b51e39920a2-2/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/Praire comune- venus verrucosa interieur-scaled.jpg,,TRUE, +N1,60145,sortie-3f45036e-efc1-4d8c-99e2-d2a9af6fe77e,https://biolit.fr/sorties/sortie-3f45036e-efc1-4d8c-99e2-d2a9af6fe77e/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.239865000000,5.36246800000,,Plage du bain des dames,46015,observation-3f45036e-efc1-4d8c-99e2-d2a9af6fe77e,https://biolit.fr/observations/observation-3f45036e-efc1-4d8c-99e2-d2a9af6fe77e/,,,,https://biolit.fr/wp-content/uploads/2023/07/étoile de mer peigne- Astropecten sp-scaled.jpg,,FALSE, +N1,60145,sortie-3f45036e-efc1-4d8c-99e2-d2a9af6fe77e,https://biolit.fr/sorties/sortie-3f45036e-efc1-4d8c-99e2-d2a9af6fe77e/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.239865000000,5.36246800000,,Plage du bain des dames,46017,observation-3f45036e-efc1-4d8c-99e2-d2a9af6fe77e-2,https://biolit.fr/observations/observation-3f45036e-efc1-4d8c-99e2-d2a9af6fe77e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Irus irus-rotated.jpg,,FALSE, +N1,60146,sortie-fec55449-614a-4ebf-b19c-6d382a55e15e,https://biolit.fr/sorties/sortie-fec55449-614a-4ebf-b19c-6d382a55e15e/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.239918000000,5.362457000000,,Plage du bain des dames ,46019,observation-fec55449-614a-4ebf-b19c-6d382a55e15e,https://biolit.fr/observations/observation-fec55449-614a-4ebf-b19c-6d382a55e15e/,,,,,,FALSE, +N1,60146,sortie-fec55449-614a-4ebf-b19c-6d382a55e15e,https://biolit.fr/sorties/sortie-fec55449-614a-4ebf-b19c-6d382a55e15e/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.239918000000,5.362457000000,,Plage du bain des dames ,46020,observation-fec55449-614a-4ebf-b19c-6d382a55e15e-2,https://biolit.fr/observations/observation-fec55449-614a-4ebf-b19c-6d382a55e15e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge de mer-Spongia sp-scaled.jpg,,FALSE, +N1,60147,sortie-56b456f7-8f82-4ba5-b07d-a5c051bf9189,https://biolit.fr/sorties/sortie-56b456f7-8f82-4ba5-b07d-a5c051bf9189/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.239956000000,5.362491000000,,la plage du bain des dames,46022,observation-56b456f7-8f82-4ba5-b07d-a5c051bf9189,https://biolit.fr/observations/observation-56b456f7-8f82-4ba5-b07d-a5c051bf9189/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/Lima ecailleuse- Lima lima extérieur-scaled.jpg,,TRUE, +N1,60147,sortie-56b456f7-8f82-4ba5-b07d-a5c051bf9189,https://biolit.fr/sorties/sortie-56b456f7-8f82-4ba5-b07d-a5c051bf9189/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.239956000000,5.362491000000,,la plage du bain des dames,46024,observation-56b456f7-8f82-4ba5-b07d-a5c051bf9189-2,https://biolit.fr/observations/observation-56b456f7-8f82-4ba5-b07d-a5c051bf9189-2/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/Lima ecailleuse- Lima lima intérieur-scaled.jpg,,TRUE, +N1,60148,sortie-52e7fbed-3d80-4c04-a817-64e8ebf58fdb,https://biolit.fr/sorties/sortie-52e7fbed-3d80-4c04-a817-64e8ebf58fdb/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.239956000000,5.362491000000,,la plage du bain des dames,46026,observation-52e7fbed-3d80-4c04-a817-64e8ebf58fdb,https://biolit.fr/observations/observation-52e7fbed-3d80-4c04-a817-64e8ebf58fdb/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/Lima ecailleuse- Lima lima extérieur-scaled.jpg,,TRUE, +N1,60148,sortie-52e7fbed-3d80-4c04-a817-64e8ebf58fdb,https://biolit.fr/sorties/sortie-52e7fbed-3d80-4c04-a817-64e8ebf58fdb/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.239956000000,5.362491000000,,la plage du bain des dames,46027,observation-52e7fbed-3d80-4c04-a817-64e8ebf58fdb-2,https://biolit.fr/observations/observation-52e7fbed-3d80-4c04-a817-64e8ebf58fdb-2/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/Lima ecailleuse- Lima lima intérieur-scaled.jpg,,TRUE, +N1,60149,sortie-53acb0ab-cd4e-49a7-a5e2-6d5662fdecae,https://biolit.fr/sorties/sortie-53acb0ab-cd4e-49a7-a5e2-6d5662fdecae/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.23991400000,5.362478000000,,plage bain des dames,46028,observation-53acb0ab-cd4e-49a7-a5e2-6d5662fdecae,https://biolit.fr/observations/observation-53acb0ab-cd4e-49a7-a5e2-6d5662fdecae/,,,,https://biolit.fr/wp-content/uploads/2023/07/troque-calliostoma sp-scaled.jpg,,FALSE, +N1,60149,sortie-53acb0ab-cd4e-49a7-a5e2-6d5662fdecae,https://biolit.fr/sorties/sortie-53acb0ab-cd4e-49a7-a5e2-6d5662fdecae/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.23991400000,5.362478000000,,plage bain des dames,46030,observation-53acb0ab-cd4e-49a7-a5e2-6d5662fdecae-2,https://biolit.fr/observations/observation-53acb0ab-cd4e-49a7-a5e2-6d5662fdecae-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/troque-calliostoma sp.ouverture-scaled.jpg,,FALSE, +N1,60150,sortie-15545ae5-2199-46e2-b298-9505ba1f99fa,https://biolit.fr/sorties/sortie-15545ae5-2199-46e2-b298-9505ba1f99fa/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.239694000000,5.36246200000,,la plage du bain des dames,46032,observation-15545ae5-2199-46e2-b298-9505ba1f99fa,https://biolit.fr/observations/observation-15545ae5-2199-46e2-b298-9505ba1f99fa/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/Arche de Noé-Arca noae extérieur-scaled.jpg,,TRUE, +N1,60151,sortie-3c0519e9-105e-48af-b62d-97dc4171ae3a,https://biolit.fr/sorties/sortie-3c0519e9-105e-48af-b62d-97dc4171ae3a/,Ville de Marseille Les Néréïdes CM2,,11/27/2017 0:00,10.0000000,12.0000000,43.239905000000,5.362451000000,,Plage du bain des dames,46034,observation-3c0519e9-105e-48af-b62d-97dc4171ae3a,https://biolit.fr/observations/observation-3c0519e9-105e-48af-b62d-97dc4171ae3a/,,,,https://biolit.fr/wp-content/uploads/2023/07/PEYSSONNELIA-Peyssonnelia squamaria.JPG,,FALSE, +N1,60152,sortie-bb1bcfd3-3696-43a6-bab7-d103d0e70c5d,https://biolit.fr/sorties/sortie-bb1bcfd3-3696-43a6-bab7-d103d0e70c5d/,Phil,,12/03/2017,13.0:15,13.0000000,47.852534000000,-3.977145000000,,Fouesnant - Finistère,46035,observation-bb1bcfd3-3696-43a6-bab7-d103d0e70c5d,https://biolit.fr/observations/observation-bb1bcfd3-3696-43a6-bab7-d103d0e70c5d/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/P1090575.JPG,,TRUE, +N1,60152,sortie-bb1bcfd3-3696-43a6-bab7-d103d0e70c5d,https://biolit.fr/sorties/sortie-bb1bcfd3-3696-43a6-bab7-d103d0e70c5d/,Phil,,12/03/2017,13.0:15,13.0000000,47.852534000000,-3.977145000000,,Fouesnant - Finistère,46037,observation-bb1bcfd3-3696-43a6-bab7-d103d0e70c5d-2,https://biolit.fr/observations/observation-bb1bcfd3-3696-43a6-bab7-d103d0e70c5d-2/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/P1090576.JPG,,TRUE, +N1,60152,sortie-bb1bcfd3-3696-43a6-bab7-d103d0e70c5d,https://biolit.fr/sorties/sortie-bb1bcfd3-3696-43a6-bab7-d103d0e70c5d/,Phil,,12/03/2017,13.0:15,13.0000000,47.852534000000,-3.977145000000,,Fouesnant - Finistère,46039,observation-bb1bcfd3-3696-43a6-bab7-d103d0e70c5d-3,https://biolit.fr/observations/observation-bb1bcfd3-3696-43a6-bab7-d103d0e70c5d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090580.JPG,,FALSE, +N1,60152,sortie-bb1bcfd3-3696-43a6-bab7-d103d0e70c5d,https://biolit.fr/sorties/sortie-bb1bcfd3-3696-43a6-bab7-d103d0e70c5d/,Phil,,12/03/2017,13.0:15,13.0000000,47.852534000000,-3.977145000000,,Fouesnant - Finistère,46041,observation-bb1bcfd3-3696-43a6-bab7-d103d0e70c5d-4,https://biolit.fr/observations/observation-bb1bcfd3-3696-43a6-bab7-d103d0e70c5d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090578.JPG,,FALSE, +N1,60153,sortie-a88892f1-b08a-425e-9853-b0b57a5fa032,https://biolit.fr/sorties/sortie-a88892f1-b08a-425e-9853-b0b57a5fa032/,Phil,,12/11/2017,12.0000000,12.000005,47.792156000000,-4.293008000000,,Le Guilvinec - Finistère,46043,observation-a88892f1-b08a-425e-9853-b0b57a5fa032,https://biolit.fr/observations/observation-a88892f1-b08a-425e-9853-b0b57a5fa032/,Tringa totanus,Chevalier gambette,,https://biolit.fr/wp-content/uploads/2023/07/P1090784.JPG,,TRUE, +N1,60153,sortie-a88892f1-b08a-425e-9853-b0b57a5fa032,https://biolit.fr/sorties/sortie-a88892f1-b08a-425e-9853-b0b57a5fa032/,Phil,,12/11/2017,12.0000000,12.000005,47.792156000000,-4.293008000000,,Le Guilvinec - Finistère,46045,observation-a88892f1-b08a-425e-9853-b0b57a5fa032-2,https://biolit.fr/observations/observation-a88892f1-b08a-425e-9853-b0b57a5fa032-2/,Tringa totanus,Chevalier gambette,,https://biolit.fr/wp-content/uploads/2023/07/P1090787.JPG,,TRUE, +N1,60153,sortie-a88892f1-b08a-425e-9853-b0b57a5fa032,https://biolit.fr/sorties/sortie-a88892f1-b08a-425e-9853-b0b57a5fa032/,Phil,,12/11/2017,12.0000000,12.000005,47.792156000000,-4.293008000000,,Le Guilvinec - Finistère,46047,observation-a88892f1-b08a-425e-9853-b0b57a5fa032-3,https://biolit.fr/observations/observation-a88892f1-b08a-425e-9853-b0b57a5fa032-3/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/P1090804.JPG,,TRUE, +N1,60154,sortie-f6fcc134-9f7b-4489-994b-7b7ae5c315fc,https://biolit.fr/sorties/sortie-f6fcc134-9f7b-4489-994b-7b7ae5c315fc/,Phil,,12/03/2017,13.0000000,13.0:15,47.854066000000,-3.978458000000,,Fouesnant - Finistère,46049,observation-f6fcc134-9f7b-4489-994b-7b7ae5c315fc,https://biolit.fr/observations/observation-f6fcc134-9f7b-4489-994b-7b7ae5c315fc/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/P1090644_0.JPG,,TRUE, +N1,60154,sortie-f6fcc134-9f7b-4489-994b-7b7ae5c315fc,https://biolit.fr/sorties/sortie-f6fcc134-9f7b-4489-994b-7b7ae5c315fc/,Phil,,12/03/2017,13.0000000,13.0:15,47.854066000000,-3.978458000000,,Fouesnant - Finistère,46051,observation-f6fcc134-9f7b-4489-994b-7b7ae5c315fc-2,https://biolit.fr/observations/observation-f6fcc134-9f7b-4489-994b-7b7ae5c315fc-2/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/P1090646.JPG,,TRUE, +N1,60154,sortie-f6fcc134-9f7b-4489-994b-7b7ae5c315fc,https://biolit.fr/sorties/sortie-f6fcc134-9f7b-4489-994b-7b7ae5c315fc/,Phil,,12/03/2017,13.0000000,13.0:15,47.854066000000,-3.978458000000,,Fouesnant - Finistère,46053,observation-f6fcc134-9f7b-4489-994b-7b7ae5c315fc-3,https://biolit.fr/observations/observation-f6fcc134-9f7b-4489-994b-7b7ae5c315fc-3/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/P1090647.JPG,,TRUE, +N1,60155,sortie-5e4e6489-561c-47f9-bf34-61ba37e3af49,https://biolit.fr/sorties/sortie-5e4e6489-561c-47f9-bf34-61ba37e3af49/,Fleur,,12/09/2017,12.0000000,12.0000000,43.284548000000,5.31437800000,,"Ile de Ratonneau, Archipel du Frioul",46055,observation-5e4e6489-561c-47f9-bf34-61ba37e3af49,https://biolit.fr/observations/observation-5e4e6489-561c-47f9-bf34-61ba37e3af49/,Larus michahellis,Goéland leucophée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9621-scaled.jpg,,TRUE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46057,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9589-scaled.jpg,,FALSE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46059,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-2,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-2/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9593-scaled.jpg,,TRUE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46061,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-3,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9595-scaled.jpg,,FALSE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46063,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-4,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-4/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9596-scaled.jpg,,TRUE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46065,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-5,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-5/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9597-scaled.jpg,,TRUE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46067,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-6,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-6/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9600-scaled.jpg,,TRUE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46069,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-7,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-7/,Phymatolithon lenormandii,Algue encroûtante rouge de Lenormand,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9602-scaled.jpg,,TRUE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46071,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-8,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9604-scaled.jpg,,FALSE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46073,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-9,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-9/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9605-scaled.jpg,,TRUE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46075,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-10,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-10/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9606-scaled.jpg,,TRUE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46077,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-11,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9608-scaled.jpg,,FALSE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46079,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-12,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9609-scaled.jpg,,FALSE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46081,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-13,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-13/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9610-scaled.jpg,,TRUE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46083,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-14,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-14/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9611-scaled.jpg,,TRUE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46085,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-15,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9612-scaled.jpg,,FALSE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46087,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-16,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9613-scaled.jpg,,FALSE, +N1,60156,sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf,https://biolit.fr/sorties/sortie-6f8ff536-ba57-4c8e-9d65-985374963ebf/,Fleur,,12/09/2017,11.0000000,11.0000000,43.284120000000,5.31635100000,,"Plage de St Estève, Ile de Ratonneau, Archipel du Frioul",46089,observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-17,https://biolit.fr/observations/observation-6f8ff536-ba57-4c8e-9d65-985374963ebf-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9614-scaled.jpg,,FALSE, +N1,60157,sortie-bb23f865-1b7f-49cd-8757-0fbfdb5878f8,https://biolit.fr/sorties/sortie-bb23f865-1b7f-49cd-8757-0fbfdb5878f8/,Observe la nature,,11/30/2017 0:00,14.0000000,15.0000000,43.135283000000,5.756604000000,,Port de Plaisance de Bandol,46091,observation-bb23f865-1b7f-49cd-8757-0fbfdb5878f8,https://biolit.fr/observations/observation-bb23f865-1b7f-49cd-8757-0fbfdb5878f8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171130_100733.jpg,,FALSE, +N1,60158,sortie-f54e0e83-5f74-4bea-9e1a-6e951994f0bf,https://biolit.fr/sorties/sortie-f54e0e83-5f74-4bea-9e1a-6e951994f0bf/,Phil,,12/03/2017,12.0000000,12.0:55,47.853693000000,-3.978332000000,,Fouesnant - Finistère ,46093,observation-f54e0e83-5f74-4bea-9e1a-6e951994f0bf,https://biolit.fr/observations/observation-f54e0e83-5f74-4bea-9e1a-6e951994f0bf/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1090524.JPG,,TRUE, +N1,60158,sortie-f54e0e83-5f74-4bea-9e1a-6e951994f0bf,https://biolit.fr/sorties/sortie-f54e0e83-5f74-4bea-9e1a-6e951994f0bf/,Phil,,12/03/2017,12.0000000,12.0:55,47.853693000000,-3.978332000000,,Fouesnant - Finistère ,46095,observation-f54e0e83-5f74-4bea-9e1a-6e951994f0bf-2,https://biolit.fr/observations/observation-f54e0e83-5f74-4bea-9e1a-6e951994f0bf-2/,Calidris alba,Bécasseau sanderling,,https://biolit.fr/wp-content/uploads/2023/07/P1090499.JPG,,TRUE, +N1,60158,sortie-f54e0e83-5f74-4bea-9e1a-6e951994f0bf,https://biolit.fr/sorties/sortie-f54e0e83-5f74-4bea-9e1a-6e951994f0bf/,Phil,,12/03/2017,12.0000000,12.0:55,47.853693000000,-3.978332000000,,Fouesnant - Finistère ,46097,observation-f54e0e83-5f74-4bea-9e1a-6e951994f0bf-3,https://biolit.fr/observations/observation-f54e0e83-5f74-4bea-9e1a-6e951994f0bf-3/,Calidris alba,Bécasseau sanderling,,https://biolit.fr/wp-content/uploads/2023/07/P1090511.JPG,,TRUE, +N1,60158,sortie-f54e0e83-5f74-4bea-9e1a-6e951994f0bf,https://biolit.fr/sorties/sortie-f54e0e83-5f74-4bea-9e1a-6e951994f0bf/,Phil,,12/03/2017,12.0000000,12.0:55,47.853693000000,-3.978332000000,,Fouesnant - Finistère ,46099,observation-f54e0e83-5f74-4bea-9e1a-6e951994f0bf-4,https://biolit.fr/observations/observation-f54e0e83-5f74-4bea-9e1a-6e951994f0bf-4/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1090504.JPG,,TRUE, +N1,60158,sortie-f54e0e83-5f74-4bea-9e1a-6e951994f0bf,https://biolit.fr/sorties/sortie-f54e0e83-5f74-4bea-9e1a-6e951994f0bf/,Phil,,12/03/2017,12.0000000,12.0:55,47.853693000000,-3.978332000000,,Fouesnant - Finistère ,46101,observation-f54e0e83-5f74-4bea-9e1a-6e951994f0bf-5,https://biolit.fr/observations/observation-f54e0e83-5f74-4bea-9e1a-6e951994f0bf-5/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1090491.JPG,,TRUE, +N1,60158,sortie-f54e0e83-5f74-4bea-9e1a-6e951994f0bf,https://biolit.fr/sorties/sortie-f54e0e83-5f74-4bea-9e1a-6e951994f0bf/,Phil,,12/03/2017,12.0000000,12.0:55,47.853693000000,-3.978332000000,,Fouesnant - Finistère ,46103,observation-f54e0e83-5f74-4bea-9e1a-6e951994f0bf-6,https://biolit.fr/observations/observation-f54e0e83-5f74-4bea-9e1a-6e951994f0bf-6/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1090508.JPG,,TRUE, +N1,60159,sortie-7141530c-d891-4312-ab79-5e4524770960,https://biolit.fr/sorties/sortie-7141530c-d891-4312-ab79-5e4524770960/,Phil,,11/04/2017,18.0000000,18.0:25,47.803840000000,-4.375056000000,,Penmarc'h - Finistère,46105,observation-7141530c-d891-4312-ab79-5e4524770960,https://biolit.fr/observations/observation-7141530c-d891-4312-ab79-5e4524770960/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090344.JPG,,FALSE, +N1,60159,sortie-7141530c-d891-4312-ab79-5e4524770960,https://biolit.fr/sorties/sortie-7141530c-d891-4312-ab79-5e4524770960/,Phil,,11/04/2017,18.0000000,18.0:25,47.803840000000,-4.375056000000,,Penmarc'h - Finistère,46107,observation-7141530c-d891-4312-ab79-5e4524770960-2,https://biolit.fr/observations/observation-7141530c-d891-4312-ab79-5e4524770960-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090336.JPG,,FALSE, +N1,60159,sortie-7141530c-d891-4312-ab79-5e4524770960,https://biolit.fr/sorties/sortie-7141530c-d891-4312-ab79-5e4524770960/,Phil,,11/04/2017,18.0000000,18.0:25,47.803840000000,-4.375056000000,,Penmarc'h - Finistère,46109,observation-7141530c-d891-4312-ab79-5e4524770960-3,https://biolit.fr/observations/observation-7141530c-d891-4312-ab79-5e4524770960-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090334.JPG,,FALSE, +N1,60159,sortie-7141530c-d891-4312-ab79-5e4524770960,https://biolit.fr/sorties/sortie-7141530c-d891-4312-ab79-5e4524770960/,Phil,,11/04/2017,18.0000000,18.0:25,47.803840000000,-4.375056000000,,Penmarc'h - Finistère,46111,observation-7141530c-d891-4312-ab79-5e4524770960-4,https://biolit.fr/observations/observation-7141530c-d891-4312-ab79-5e4524770960-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090352.JPG,,FALSE, +N1,60159,sortie-7141530c-d891-4312-ab79-5e4524770960,https://biolit.fr/sorties/sortie-7141530c-d891-4312-ab79-5e4524770960/,Phil,,11/04/2017,18.0000000,18.0:25,47.803840000000,-4.375056000000,,Penmarc'h - Finistère,46113,observation-7141530c-d891-4312-ab79-5e4524770960-5,https://biolit.fr/observations/observation-7141530c-d891-4312-ab79-5e4524770960-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090357.JPG,,FALSE, +N1,60159,sortie-7141530c-d891-4312-ab79-5e4524770960,https://biolit.fr/sorties/sortie-7141530c-d891-4312-ab79-5e4524770960/,Phil,,11/04/2017,18.0000000,18.0:25,47.803840000000,-4.375056000000,,Penmarc'h - Finistère,46115,observation-7141530c-d891-4312-ab79-5e4524770960-6,https://biolit.fr/observations/observation-7141530c-d891-4312-ab79-5e4524770960-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090331.JPG,,FALSE, +N1,60160,sortie-cdeb4747-3c14-4234-beb5-1acc5c26c7cc,https://biolit.fr/sorties/sortie-cdeb4747-3c14-4234-beb5-1acc5c26c7cc/,Phil,,11/05/2017,13.0000000,13.0:15,47.796150000000,-4.180212000000,,Loctudy - Finistère,46117,observation-cdeb4747-3c14-4234-beb5-1acc5c26c7cc,https://biolit.fr/observations/observation-cdeb4747-3c14-4234-beb5-1acc5c26c7cc/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/P1090428.JPG,,TRUE, +N1,60160,sortie-cdeb4747-3c14-4234-beb5-1acc5c26c7cc,https://biolit.fr/sorties/sortie-cdeb4747-3c14-4234-beb5-1acc5c26c7cc/,Phil,,11/05/2017,13.0000000,13.0:15,47.796150000000,-4.180212000000,,Loctudy - Finistère,46119,observation-cdeb4747-3c14-4234-beb5-1acc5c26c7cc-2,https://biolit.fr/observations/observation-cdeb4747-3c14-4234-beb5-1acc5c26c7cc-2/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/P1090429.JPG,,TRUE, +N1,60160,sortie-cdeb4747-3c14-4234-beb5-1acc5c26c7cc,https://biolit.fr/sorties/sortie-cdeb4747-3c14-4234-beb5-1acc5c26c7cc/,Phil,,11/05/2017,13.0000000,13.0:15,47.796150000000,-4.180212000000,,Loctudy - Finistère,46121,observation-cdeb4747-3c14-4234-beb5-1acc5c26c7cc-3,https://biolit.fr/observations/observation-cdeb4747-3c14-4234-beb5-1acc5c26c7cc-3/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/P1090430.JPG,,TRUE, +N1,60160,sortie-cdeb4747-3c14-4234-beb5-1acc5c26c7cc,https://biolit.fr/sorties/sortie-cdeb4747-3c14-4234-beb5-1acc5c26c7cc/,Phil,,11/05/2017,13.0000000,13.0:15,47.796150000000,-4.180212000000,,Loctudy - Finistère,46123,observation-cdeb4747-3c14-4234-beb5-1acc5c26c7cc-4,https://biolit.fr/observations/observation-cdeb4747-3c14-4234-beb5-1acc5c26c7cc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090432.JPG,,FALSE, +N1,60161,sortie-a89adc0c-7f84-4086-ad2f-58ae4b8fff89,https://biolit.fr/sorties/sortie-a89adc0c-7f84-4086-ad2f-58ae4b8fff89/,Phil,,12/03/2017,12.0000000,12.0:55,47.852289000000,-3.977353000000,,Fouesnant - Finistère,46125,observation-a89adc0c-7f84-4086-ad2f-58ae4b8fff89,https://biolit.fr/observations/observation-a89adc0c-7f84-4086-ad2f-58ae4b8fff89/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090542.JPG,,FALSE, +N1,60161,sortie-a89adc0c-7f84-4086-ad2f-58ae4b8fff89,https://biolit.fr/sorties/sortie-a89adc0c-7f84-4086-ad2f-58ae4b8fff89/,Phil,,12/03/2017,12.0000000,12.0:55,47.852289000000,-3.977353000000,,Fouesnant - Finistère,46127,observation-a89adc0c-7f84-4086-ad2f-58ae4b8fff89-2,https://biolit.fr/observations/observation-a89adc0c-7f84-4086-ad2f-58ae4b8fff89-2/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1090537.JPG,,TRUE, +N1,60161,sortie-a89adc0c-7f84-4086-ad2f-58ae4b8fff89,https://biolit.fr/sorties/sortie-a89adc0c-7f84-4086-ad2f-58ae4b8fff89/,Phil,,12/03/2017,12.0000000,12.0:55,47.852289000000,-3.977353000000,,Fouesnant - Finistère,46129,observation-a89adc0c-7f84-4086-ad2f-58ae4b8fff89-3,https://biolit.fr/observations/observation-a89adc0c-7f84-4086-ad2f-58ae4b8fff89-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090546.JPG,,FALSE, +N1,60161,sortie-a89adc0c-7f84-4086-ad2f-58ae4b8fff89,https://biolit.fr/sorties/sortie-a89adc0c-7f84-4086-ad2f-58ae4b8fff89/,Phil,,12/03/2017,12.0000000,12.0:55,47.852289000000,-3.977353000000,,Fouesnant - Finistère,46131,observation-a89adc0c-7f84-4086-ad2f-58ae4b8fff89-4,https://biolit.fr/observations/observation-a89adc0c-7f84-4086-ad2f-58ae4b8fff89-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1090531.JPG,,TRUE, +N1,60162,sortie-b5bcdb03-6f83-4b33-92a4-b05cb0d52819,https://biolit.fr/sorties/sortie-b5bcdb03-6f83-4b33-92a4-b05cb0d52819/,Phil,,12/02/2017,16.0000000,16.0:25,48.092631000000,-4.297180000000,,Douarnenez - Finistère,46133,observation-b5bcdb03-6f83-4b33-92a4-b05cb0d52819,https://biolit.fr/observations/observation-b5bcdb03-6f83-4b33-92a4-b05cb0d52819/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20171202_162758.jpg,,TRUE, +N1,60162,sortie-b5bcdb03-6f83-4b33-92a4-b05cb0d52819,https://biolit.fr/sorties/sortie-b5bcdb03-6f83-4b33-92a4-b05cb0d52819/,Phil,,12/02/2017,16.0000000,16.0:25,48.092631000000,-4.297180000000,,Douarnenez - Finistère,46135,observation-b5bcdb03-6f83-4b33-92a4-b05cb0d52819-2,https://biolit.fr/observations/observation-b5bcdb03-6f83-4b33-92a4-b05cb0d52819-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171202_162629.jpg,,FALSE, +N1,60162,sortie-b5bcdb03-6f83-4b33-92a4-b05cb0d52819,https://biolit.fr/sorties/sortie-b5bcdb03-6f83-4b33-92a4-b05cb0d52819/,Phil,,12/02/2017,16.0000000,16.0:25,48.092631000000,-4.297180000000,,Douarnenez - Finistère,46137,observation-b5bcdb03-6f83-4b33-92a4-b05cb0d52819-3,https://biolit.fr/observations/observation-b5bcdb03-6f83-4b33-92a4-b05cb0d52819-3/,Lutraria lutraria,Lutraire elliptique,,https://biolit.fr/wp-content/uploads/2023/07/20171202_162504.jpg,,TRUE, +N1,60162,sortie-b5bcdb03-6f83-4b33-92a4-b05cb0d52819,https://biolit.fr/sorties/sortie-b5bcdb03-6f83-4b33-92a4-b05cb0d52819/,Phil,,12/02/2017,16.0000000,16.0:25,48.092631000000,-4.297180000000,,Douarnenez - Finistère,46139,observation-b5bcdb03-6f83-4b33-92a4-b05cb0d52819-4,https://biolit.fr/observations/observation-b5bcdb03-6f83-4b33-92a4-b05cb0d52819-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171202_162600.jpg,,FALSE, +N1,60162,sortie-b5bcdb03-6f83-4b33-92a4-b05cb0d52819,https://biolit.fr/sorties/sortie-b5bcdb03-6f83-4b33-92a4-b05cb0d52819/,Phil,,12/02/2017,16.0000000,16.0:25,48.092631000000,-4.297180000000,,Douarnenez - Finistère,46141,observation-b5bcdb03-6f83-4b33-92a4-b05cb0d52819-5,https://biolit.fr/observations/observation-b5bcdb03-6f83-4b33-92a4-b05cb0d52819-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171202_162303.jpg,,FALSE, +N1,60163,sortie-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf,https://biolit.fr/sorties/sortie-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf/,Phil,,11/05/2017,13.0000000,13.0000000,47.796499000000,-4.183430000000,,Loctudy - Finistère,46143,observation-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf,https://biolit.fr/observations/observation-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1090459.JPG,,TRUE, +N1,60163,sortie-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf,https://biolit.fr/sorties/sortie-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf/,Phil,,11/05/2017,13.0000000,13.0000000,47.796499000000,-4.183430000000,,Loctudy - Finistère,46145,observation-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf-2,https://biolit.fr/observations/observation-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf-2/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1090468.JPG,,TRUE, +N1,60163,sortie-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf,https://biolit.fr/sorties/sortie-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf/,Phil,,11/05/2017,13.0000000,13.0000000,47.796499000000,-4.183430000000,,Loctudy - Finistère,46147,observation-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf-3,https://biolit.fr/observations/observation-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf-3/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/P1090458.JPG,,TRUE, +N1,60163,sortie-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf,https://biolit.fr/sorties/sortie-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf/,Phil,,11/05/2017,13.0000000,13.0000000,47.796499000000,-4.183430000000,,Loctudy - Finistère,46149,observation-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf-4,https://biolit.fr/observations/observation-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf-4/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/P1090453.JPG,,TRUE, +N1,60163,sortie-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf,https://biolit.fr/sorties/sortie-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf/,Phil,,11/05/2017,13.0000000,13.0000000,47.796499000000,-4.183430000000,,Loctudy - Finistère,46151,observation-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf-5,https://biolit.fr/observations/observation-22e072d2-72a6-4dc3-b13e-96fb56b7e4bf-5/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1090457.JPG,,TRUE, +N1,60164,sortie-c329a8c9-7c38-45c1-aa5f-719c1a6e534a,https://biolit.fr/sorties/sortie-c329a8c9-7c38-45c1-aa5f-719c1a6e534a/,Phil,,12/03/2017,13.000005,13.0000000,47.852636000000,-3.977395000000,,Fouesnant - Finistère,46153,observation-c329a8c9-7c38-45c1-aa5f-719c1a6e534a,https://biolit.fr/observations/observation-c329a8c9-7c38-45c1-aa5f-719c1a6e534a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090548.JPG,,FALSE, +N1,60164,sortie-c329a8c9-7c38-45c1-aa5f-719c1a6e534a,https://biolit.fr/sorties/sortie-c329a8c9-7c38-45c1-aa5f-719c1a6e534a/,Phil,,12/03/2017,13.000005,13.0000000,47.852636000000,-3.977395000000,,Fouesnant - Finistère,46155,observation-c329a8c9-7c38-45c1-aa5f-719c1a6e534a-2,https://biolit.fr/observations/observation-c329a8c9-7c38-45c1-aa5f-719c1a6e534a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090549.JPG,,FALSE, +N1,60164,sortie-c329a8c9-7c38-45c1-aa5f-719c1a6e534a,https://biolit.fr/sorties/sortie-c329a8c9-7c38-45c1-aa5f-719c1a6e534a/,Phil,,12/03/2017,13.000005,13.0000000,47.852636000000,-3.977395000000,,Fouesnant - Finistère,46157,observation-c329a8c9-7c38-45c1-aa5f-719c1a6e534a-3,https://biolit.fr/observations/observation-c329a8c9-7c38-45c1-aa5f-719c1a6e534a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090552.JPG,,FALSE, +N1,60164,sortie-c329a8c9-7c38-45c1-aa5f-719c1a6e534a,https://biolit.fr/sorties/sortie-c329a8c9-7c38-45c1-aa5f-719c1a6e534a/,Phil,,12/03/2017,13.000005,13.0000000,47.852636000000,-3.977395000000,,Fouesnant - Finistère,46159,observation-c329a8c9-7c38-45c1-aa5f-719c1a6e534a-4,https://biolit.fr/observations/observation-c329a8c9-7c38-45c1-aa5f-719c1a6e534a-4/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1090555.JPG,,TRUE, +N1,60165,sortie-6db7f258-89d6-45ce-8522-97005a14e790,https://biolit.fr/sorties/sortie-6db7f258-89d6-45ce-8522-97005a14e790/,Phil,,11/06/2017,12.000005,12.0:15,48.002663000000,-4.521912000000,,Plouhinec - Finistère,46161,observation-6db7f258-89d6-45ce-8522-97005a14e790,https://biolit.fr/observations/observation-6db7f258-89d6-45ce-8522-97005a14e790/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_120810.jpg,,FALSE, +N1,60165,sortie-6db7f258-89d6-45ce-8522-97005a14e790,https://biolit.fr/sorties/sortie-6db7f258-89d6-45ce-8522-97005a14e790/,Phil,,11/06/2017,12.000005,12.0:15,48.002663000000,-4.521912000000,,Plouhinec - Finistère,46163,observation-6db7f258-89d6-45ce-8522-97005a14e790-2,https://biolit.fr/observations/observation-6db7f258-89d6-45ce-8522-97005a14e790-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_120825.jpg,,FALSE, +N1,60165,sortie-6db7f258-89d6-45ce-8522-97005a14e790,https://biolit.fr/sorties/sortie-6db7f258-89d6-45ce-8522-97005a14e790/,Phil,,11/06/2017,12.000005,12.0:15,48.002663000000,-4.521912000000,,Plouhinec - Finistère,46165,observation-6db7f258-89d6-45ce-8522-97005a14e790-3,https://biolit.fr/observations/observation-6db7f258-89d6-45ce-8522-97005a14e790-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_120836.jpg,,FALSE, +N1,60165,sortie-6db7f258-89d6-45ce-8522-97005a14e790,https://biolit.fr/sorties/sortie-6db7f258-89d6-45ce-8522-97005a14e790/,Phil,,11/06/2017,12.000005,12.0:15,48.002663000000,-4.521912000000,,Plouhinec - Finistère,46167,observation-6db7f258-89d6-45ce-8522-97005a14e790-4,https://biolit.fr/observations/observation-6db7f258-89d6-45ce-8522-97005a14e790-4/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20171106_121124.jpg,,TRUE, +N1,60165,sortie-6db7f258-89d6-45ce-8522-97005a14e790,https://biolit.fr/sorties/sortie-6db7f258-89d6-45ce-8522-97005a14e790/,Phil,,11/06/2017,12.000005,12.0:15,48.002663000000,-4.521912000000,,Plouhinec - Finistère,46169,observation-6db7f258-89d6-45ce-8522-97005a14e790-5,https://biolit.fr/observations/observation-6db7f258-89d6-45ce-8522-97005a14e790-5/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20171106_121136.jpg,,TRUE, +N1,60166,sortie-e15cf1c9-e305-4022-965e-03110e7687cd,https://biolit.fr/sorties/sortie-e15cf1c9-e305-4022-965e-03110e7687cd/,Phil,,12/01/2017,12.0:55,13.0000000,47.868516000000,-3.911657000000,,Concarneau - Finistère,46171,observation-e15cf1c9-e305-4022-965e-03110e7687cd,https://biolit.fr/observations/observation-e15cf1c9-e305-4022-965e-03110e7687cd/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171201_125926.jpg,,FALSE, +N1,60166,sortie-e15cf1c9-e305-4022-965e-03110e7687cd,https://biolit.fr/sorties/sortie-e15cf1c9-e305-4022-965e-03110e7687cd/,Phil,,12/01/2017,12.0:55,13.0000000,47.868516000000,-3.911657000000,,Concarneau - Finistère,46173,observation-e15cf1c9-e305-4022-965e-03110e7687cd-2,https://biolit.fr/observations/observation-e15cf1c9-e305-4022-965e-03110e7687cd-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20171201_125743.jpg,,TRUE, +N1,60166,sortie-e15cf1c9-e305-4022-965e-03110e7687cd,https://biolit.fr/sorties/sortie-e15cf1c9-e305-4022-965e-03110e7687cd/,Phil,,12/01/2017,12.0:55,13.0000000,47.868516000000,-3.911657000000,,Concarneau - Finistère,46175,observation-e15cf1c9-e305-4022-965e-03110e7687cd-3,https://biolit.fr/observations/observation-e15cf1c9-e305-4022-965e-03110e7687cd-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171201_125650.jpg,,FALSE, +N1,60167,sortie-d4e9c9ac-495b-4e5f-a104-68c9fb995e31,https://biolit.fr/sorties/sortie-d4e9c9ac-495b-4e5f-a104-68c9fb995e31/,Phil,,11/27/2017 0:00,15.0000000,15.0:35,48.219428000000,-4.391805000000,,Telgruc sur Mer - Finistère,46177,observation-d4e9c9ac-495b-4e5f-a104-68c9fb995e31,https://biolit.fr/observations/observation-d4e9c9ac-495b-4e5f-a104-68c9fb995e31/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171127_153523.jpg,,FALSE, +N1,60167,sortie-d4e9c9ac-495b-4e5f-a104-68c9fb995e31,https://biolit.fr/sorties/sortie-d4e9c9ac-495b-4e5f-a104-68c9fb995e31/,Phil,,11/27/2017 0:00,15.0000000,15.0:35,48.219428000000,-4.391805000000,,Telgruc sur Mer - Finistère,46179,observation-d4e9c9ac-495b-4e5f-a104-68c9fb995e31-2,https://biolit.fr/observations/observation-d4e9c9ac-495b-4e5f-a104-68c9fb995e31-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171127_153236.jpg,,FALSE, +N1,60167,sortie-d4e9c9ac-495b-4e5f-a104-68c9fb995e31,https://biolit.fr/sorties/sortie-d4e9c9ac-495b-4e5f-a104-68c9fb995e31/,Phil,,11/27/2017 0:00,15.0000000,15.0:35,48.219428000000,-4.391805000000,,Telgruc sur Mer - Finistère,46181,observation-d4e9c9ac-495b-4e5f-a104-68c9fb995e31-3,https://biolit.fr/observations/observation-d4e9c9ac-495b-4e5f-a104-68c9fb995e31-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171127_153306.jpg,,FALSE, +N1,60168,sortie-86a294cb-cea0-4243-af65-537405fc5ad1,https://biolit.fr/sorties/sortie-86a294cb-cea0-4243-af65-537405fc5ad1/,Phil,,12/03/2017,12.0:45,12.0000000,47.853640000000,-3.978418000000,,Fouesnant - Finistère,46183,observation-86a294cb-cea0-4243-af65-537405fc5ad1,https://biolit.fr/observations/observation-86a294cb-cea0-4243-af65-537405fc5ad1/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090489.JPG,,FALSE, +N1,60168,sortie-86a294cb-cea0-4243-af65-537405fc5ad1,https://biolit.fr/sorties/sortie-86a294cb-cea0-4243-af65-537405fc5ad1/,Phil,,12/03/2017,12.0:45,12.0000000,47.853640000000,-3.978418000000,,Fouesnant - Finistère,46185,observation-86a294cb-cea0-4243-af65-537405fc5ad1-2,https://biolit.fr/observations/observation-86a294cb-cea0-4243-af65-537405fc5ad1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090486.JPG,,FALSE, +N1,60169,sortie-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888,https://biolit.fr/sorties/sortie-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888/,Phil,,11/05/2017,13.0:15,13.0000000,47.796519000000,-4.178881000000,,Loctudy - Finistère,46187,observation-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888,https://biolit.fr/observations/observation-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090448.JPG,,FALSE, +N1,60169,sortie-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888,https://biolit.fr/sorties/sortie-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888/,Phil,,11/05/2017,13.0:15,13.0000000,47.796519000000,-4.178881000000,,Loctudy - Finistère,46189,observation-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888-2,https://biolit.fr/observations/observation-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090447.JPG,,FALSE, +N1,60169,sortie-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888,https://biolit.fr/sorties/sortie-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888/,Phil,,11/05/2017,13.0:15,13.0000000,47.796519000000,-4.178881000000,,Loctudy - Finistère,46191,observation-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888-3,https://biolit.fr/observations/observation-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090446.JPG,,FALSE, +N1,60169,sortie-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888,https://biolit.fr/sorties/sortie-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888/,Phil,,11/05/2017,13.0:15,13.0000000,47.796519000000,-4.178881000000,,Loctudy - Finistère,46193,observation-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888-4,https://biolit.fr/observations/observation-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888-4/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1090444.JPG,,TRUE, +N1,60169,sortie-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888,https://biolit.fr/sorties/sortie-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888/,Phil,,11/05/2017,13.0:15,13.0000000,47.796519000000,-4.178881000000,,Loctudy - Finistère,46195,observation-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888-5,https://biolit.fr/observations/observation-9e2d2f5f-dae9-4d6f-a93b-b72ac7119888-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1090443.JPG,,TRUE, +N1,60170,sortie-32dad0a5-ef55-4513-8b1d-9ed4f44ff9d5,https://biolit.fr/sorties/sortie-32dad0a5-ef55-4513-8b1d-9ed4f44ff9d5/,Phil,,12/02/2017,16.0000000,16.0:35,48.092221000000,-4.296944000000,,Douarnenez - Finistère,46197,observation-32dad0a5-ef55-4513-8b1d-9ed4f44ff9d5,https://biolit.fr/observations/observation-32dad0a5-ef55-4513-8b1d-9ed4f44ff9d5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171202_163323.jpg,,FALSE, +N1,60170,sortie-32dad0a5-ef55-4513-8b1d-9ed4f44ff9d5,https://biolit.fr/sorties/sortie-32dad0a5-ef55-4513-8b1d-9ed4f44ff9d5/,Phil,,12/02/2017,16.0000000,16.0:35,48.092221000000,-4.296944000000,,Douarnenez - Finistère,46199,observation-32dad0a5-ef55-4513-8b1d-9ed4f44ff9d5-2,https://biolit.fr/observations/observation-32dad0a5-ef55-4513-8b1d-9ed4f44ff9d5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171202_162915.jpg,,FALSE, +N1,60170,sortie-32dad0a5-ef55-4513-8b1d-9ed4f44ff9d5,https://biolit.fr/sorties/sortie-32dad0a5-ef55-4513-8b1d-9ed4f44ff9d5/,Phil,,12/02/2017,16.0000000,16.0:35,48.092221000000,-4.296944000000,,Douarnenez - Finistère,46201,observation-32dad0a5-ef55-4513-8b1d-9ed4f44ff9d5-3,https://biolit.fr/observations/observation-32dad0a5-ef55-4513-8b1d-9ed4f44ff9d5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171202_163020.jpg,,FALSE, +N1,60171,sortie-0c7f540b-49af-4df9-aa06-9959fa5ae10c,https://biolit.fr/sorties/sortie-0c7f540b-49af-4df9-aa06-9959fa5ae10c/,nathalie,,12/03/2017,15.0000000,15.0000000,46.244994000000,-1.562153000000,,Phare des baleines ,46203,observation-0c7f540b-49af-4df9-aa06-9959fa5ae10c,https://biolit.fr/observations/observation-0c7f540b-49af-4df9-aa06-9959fa5ae10c/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171203_151830-scaled.jpg,,FALSE, +N1,60172,sortie-52573e1b-5202-41c4-9eaa-e057669f199a,https://biolit.fr/sorties/sortie-52573e1b-5202-41c4-9eaa-e057669f199a/,Phil,,11/06/2017,11.0:45,12.0000000,48.004360000000,-4.520560000000,,Plouhinec - Finistère,46205,observation-52573e1b-5202-41c4-9eaa-e057669f199a,https://biolit.fr/observations/observation-52573e1b-5202-41c4-9eaa-e057669f199a/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_115503.jpg,,FALSE, +N1,60172,sortie-52573e1b-5202-41c4-9eaa-e057669f199a,https://biolit.fr/sorties/sortie-52573e1b-5202-41c4-9eaa-e057669f199a/,Phil,,11/06/2017,11.0:45,12.0000000,48.004360000000,-4.520560000000,,Plouhinec - Finistère,46207,observation-52573e1b-5202-41c4-9eaa-e057669f199a-2,https://biolit.fr/observations/observation-52573e1b-5202-41c4-9eaa-e057669f199a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_115513(0).jpg,,FALSE, +N1,60172,sortie-52573e1b-5202-41c4-9eaa-e057669f199a,https://biolit.fr/sorties/sortie-52573e1b-5202-41c4-9eaa-e057669f199a/,Phil,,11/06/2017,11.0:45,12.0000000,48.004360000000,-4.520560000000,,Plouhinec - Finistère,46209,observation-52573e1b-5202-41c4-9eaa-e057669f199a-3,https://biolit.fr/observations/observation-52573e1b-5202-41c4-9eaa-e057669f199a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_114650.jpg,,FALSE, +N1,60172,sortie-52573e1b-5202-41c4-9eaa-e057669f199a,https://biolit.fr/sorties/sortie-52573e1b-5202-41c4-9eaa-e057669f199a/,Phil,,11/06/2017,11.0:45,12.0000000,48.004360000000,-4.520560000000,,Plouhinec - Finistère,46211,observation-52573e1b-5202-41c4-9eaa-e057669f199a-4,https://biolit.fr/observations/observation-52573e1b-5202-41c4-9eaa-e057669f199a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_120038.jpg,,FALSE, +N1,60173,sortie-3a96fd7d-e7c7-4bc1-8f0b-5939c4b9eaa4,https://biolit.fr/sorties/sortie-3a96fd7d-e7c7-4bc1-8f0b-5939c4b9eaa4/,Phil,,12/01/2017,13.0000000,13.0000000,47.870058000000,-3.91150200000,,Concarneau - Finistère,46213,observation-3a96fd7d-e7c7-4bc1-8f0b-5939c4b9eaa4,https://biolit.fr/observations/observation-3a96fd7d-e7c7-4bc1-8f0b-5939c4b9eaa4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171201_131015.jpg,,FALSE, +N1,60173,sortie-3a96fd7d-e7c7-4bc1-8f0b-5939c4b9eaa4,https://biolit.fr/sorties/sortie-3a96fd7d-e7c7-4bc1-8f0b-5939c4b9eaa4/,Phil,,12/01/2017,13.0000000,13.0000000,47.870058000000,-3.91150200000,,Concarneau - Finistère,46215,observation-3a96fd7d-e7c7-4bc1-8f0b-5939c4b9eaa4-2,https://biolit.fr/observations/observation-3a96fd7d-e7c7-4bc1-8f0b-5939c4b9eaa4-2/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/20171201_131132.jpg,,TRUE, +N1,60174,sortie-a49816fe-8f19-48ca-966e-5c0e1179c78b,https://biolit.fr/sorties/sortie-a49816fe-8f19-48ca-966e-5c0e1179c78b/,Phil,,12/01/2017,17.0000000,17.0:15,47.795470000000,-4.275563000000,,Léchiagat - Finistère,46217,observation-a49816fe-8f19-48ca-966e-5c0e1179c78b,https://biolit.fr/observations/observation-a49816fe-8f19-48ca-966e-5c0e1179c78b/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171201_171459.jpg,,FALSE, +N1,60174,sortie-a49816fe-8f19-48ca-966e-5c0e1179c78b,https://biolit.fr/sorties/sortie-a49816fe-8f19-48ca-966e-5c0e1179c78b/,Phil,,12/01/2017,17.0000000,17.0:15,47.795470000000,-4.275563000000,,Léchiagat - Finistère,46219,observation-a49816fe-8f19-48ca-966e-5c0e1179c78b-2,https://biolit.fr/observations/observation-a49816fe-8f19-48ca-966e-5c0e1179c78b-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20171201_171325.jpg,,TRUE, +N1,60174,sortie-a49816fe-8f19-48ca-966e-5c0e1179c78b,https://biolit.fr/sorties/sortie-a49816fe-8f19-48ca-966e-5c0e1179c78b/,Phil,,12/01/2017,17.0000000,17.0:15,47.795470000000,-4.275563000000,,Léchiagat - Finistère,46221,observation-a49816fe-8f19-48ca-966e-5c0e1179c78b-3,https://biolit.fr/observations/observation-a49816fe-8f19-48ca-966e-5c0e1179c78b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171201_171314.jpg,,FALSE, +N1,60174,sortie-a49816fe-8f19-48ca-966e-5c0e1179c78b,https://biolit.fr/sorties/sortie-a49816fe-8f19-48ca-966e-5c0e1179c78b/,Phil,,12/01/2017,17.0000000,17.0:15,47.795470000000,-4.275563000000,,Léchiagat - Finistère,46223,observation-a49816fe-8f19-48ca-966e-5c0e1179c78b-4,https://biolit.fr/observations/observation-a49816fe-8f19-48ca-966e-5c0e1179c78b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171201_171240.jpg,,FALSE, +N1,60175,sortie-f1a4bc0b-5b9f-4911-95f8-9133433488fe,https://biolit.fr/sorties/sortie-f1a4bc0b-5b9f-4911-95f8-9133433488fe/,Phil,,11/27/2017 0:00,15.0:45,15.0000000,48.219746000000,-4.392405000000,,Telgruc sur Mer - Finistère,46225,observation-f1a4bc0b-5b9f-4911-95f8-9133433488fe,https://biolit.fr/observations/observation-f1a4bc0b-5b9f-4911-95f8-9133433488fe/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20171127_154545.jpg,,TRUE, +N1,60175,sortie-f1a4bc0b-5b9f-4911-95f8-9133433488fe,https://biolit.fr/sorties/sortie-f1a4bc0b-5b9f-4911-95f8-9133433488fe/,Phil,,11/27/2017 0:00,15.0:45,15.0000000,48.219746000000,-4.392405000000,,Telgruc sur Mer - Finistère,46227,observation-f1a4bc0b-5b9f-4911-95f8-9133433488fe-2,https://biolit.fr/observations/observation-f1a4bc0b-5b9f-4911-95f8-9133433488fe-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20171127_154633.jpg,,TRUE, +N1,60175,sortie-f1a4bc0b-5b9f-4911-95f8-9133433488fe,https://biolit.fr/sorties/sortie-f1a4bc0b-5b9f-4911-95f8-9133433488fe/,Phil,,11/27/2017 0:00,15.0:45,15.0000000,48.219746000000,-4.392405000000,,Telgruc sur Mer - Finistère,46229,observation-f1a4bc0b-5b9f-4911-95f8-9133433488fe-3,https://biolit.fr/observations/observation-f1a4bc0b-5b9f-4911-95f8-9133433488fe-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20171127_154805.jpg,,TRUE, +N1,60175,sortie-f1a4bc0b-5b9f-4911-95f8-9133433488fe,https://biolit.fr/sorties/sortie-f1a4bc0b-5b9f-4911-95f8-9133433488fe/,Phil,,11/27/2017 0:00,15.0:45,15.0000000,48.219746000000,-4.392405000000,,Telgruc sur Mer - Finistère,46231,observation-f1a4bc0b-5b9f-4911-95f8-9133433488fe-4,https://biolit.fr/observations/observation-f1a4bc0b-5b9f-4911-95f8-9133433488fe-4/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20171127_154859.jpg,,TRUE, +N1,60176,sortie-62bbf8b7-6101-4dd1-a76e-d855862a2c2d,https://biolit.fr/sorties/sortie-62bbf8b7-6101-4dd1-a76e-d855862a2c2d/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,43.279802000000,5.352180000000,,Anse de la Fausse Monaie ,46233,observation-62bbf8b7-6101-4dd1-a76e-d855862a2c2d,https://biolit.fr/observations/observation-62bbf8b7-6101-4dd1-a76e-d855862a2c2d/,,,,,,FALSE, +N1,60176,sortie-62bbf8b7-6101-4dd1-a76e-d855862a2c2d,https://biolit.fr/sorties/sortie-62bbf8b7-6101-4dd1-a76e-d855862a2c2d/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,43.279802000000,5.352180000000,,Anse de la Fausse Monaie ,46234,observation-62bbf8b7-6101-4dd1-a76e-d855862a2c2d-2,https://biolit.fr/observations/observation-62bbf8b7-6101-4dd1-a76e-d855862a2c2d-2/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/Spherocoque_sphaerococcus cornopifolius _0.jpg,,TRUE, +N1,60177,sortie-d57eab0e-a112-445f-8920-ca7f64e71061,https://biolit.fr/sorties/sortie-d57eab0e-a112-445f-8920-ca7f64e71061/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,43.279721000000,5.352570000000,,anse de la fausse monnaie,46236,observation-d57eab0e-a112-445f-8920-ca7f64e71061,https://biolit.fr/observations/observation-d57eab0e-a112-445f-8920-ca7f64e71061/,,,,,,FALSE, +N1,60178,sortie-1a0bdb2e-7fc8-4bfb-8ff6-317d154ba3ea,https://biolit.fr/sorties/sortie-1a0bdb2e-7fc8-4bfb-8ff6-317d154ba3ea/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,43.279893000000,5.352554000000,,anse de la fausse monnaie,46237,observation-1a0bdb2e-7fc8-4bfb-8ff6-317d154ba3ea,https://biolit.fr/observations/observation-1a0bdb2e-7fc8-4bfb-8ff6-317d154ba3ea/,,,,,,FALSE, +N1,60179,sortie-574659d3-fa9c-4bf2-9743-8d551796c5ce,https://biolit.fr/sorties/sortie-574659d3-fa9c-4bf2-9743-8d551796c5ce/,ville de marseille saint julien 1 CM1,,11/30/2017 0:00,10.0000000,12.0000000,43.279984000000,5.352672000000,,anse de la fausse monnaie,46238,observation-574659d3-fa9c-4bf2-9743-8d551796c5ce,https://biolit.fr/observations/observation-574659d3-fa9c-4bf2-9743-8d551796c5ce/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/oursin comestible_ Arbacia lixula.JPG,,TRUE, +N1,60180,sortie-7d7e9cf6-c6e3-473a-9b0f-3c7e13a0fa31,https://biolit.fr/sorties/sortie-7d7e9cf6-c6e3-473a-9b0f-3c7e13a0fa31/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,43.280558000000,5.351122000000,,Anse de la fausse monnaie,46240,observation-7d7e9cf6-c6e3-473a-9b0f-3c7e13a0fa31,https://biolit.fr/observations/observation-7d7e9cf6-c6e3-473a-9b0f-3c7e13a0fa31/,,,,https://biolit.fr/wp-content/uploads/2023/07/La posidonie_ Posidonia oceanica_tige_ feuilles-scaled.jpg,,FALSE, +N1,60180,sortie-7d7e9cf6-c6e3-473a-9b0f-3c7e13a0fa31,https://biolit.fr/sorties/sortie-7d7e9cf6-c6e3-473a-9b0f-3c7e13a0fa31/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,43.280558000000,5.351122000000,,Anse de la fausse monnaie,46242,observation-7d7e9cf6-c6e3-473a-9b0f-3c7e13a0fa31-2,https://biolit.fr/observations/observation-7d7e9cf6-c6e3-473a-9b0f-3c7e13a0fa31-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Plage banquette posidonie-scaled.jpg,,FALSE, +N1,60181,sortie-37c12c10-70a2-43bb-85ef-9cdbb1e0fba6,https://biolit.fr/sorties/sortie-37c12c10-70a2-43bb-85ef-9cdbb1e0fba6/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,43.279867000000,5.352353000000,,anse de la fausse monnaie,46244,observation-37c12c10-70a2-43bb-85ef-9cdbb1e0fba6,https://biolit.fr/observations/observation-37c12c10-70a2-43bb-85ef-9cdbb1e0fba6/,,,,,,FALSE, +N1,60182,sortie-e537550e-13cb-430a-84e5-7616d4cf4423,https://biolit.fr/sorties/sortie-e537550e-13cb-430a-84e5-7616d4cf4423/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,43.279966000000,5.352315000000,,Anse de la fausse monnaie,46245,observation-e537550e-13cb-430a-84e5-7616d4cf4423,https://biolit.fr/observations/observation-e537550e-13cb-430a-84e5-7616d4cf4423/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle bleu _ patella caerulea_ dessous.jpg,,FALSE, +N1,60183,sortie-c66c619b-90f2-44a4-bb1c-921ac4972f6f,https://biolit.fr/sorties/sortie-c66c619b-90f2-44a4-bb1c-921ac4972f6f/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,43.280036000000,5.352415000000,,anse de la fausse monnaie,46247,observation-c66c619b-90f2-44a4-bb1c-921ac4972f6f,https://biolit.fr/observations/observation-c66c619b-90f2-44a4-bb1c-921ac4972f6f/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/tomate de mer_Actinia equina.jpg,,TRUE, +N1,60183,sortie-c66c619b-90f2-44a4-bb1c-921ac4972f6f,https://biolit.fr/sorties/sortie-c66c619b-90f2-44a4-bb1c-921ac4972f6f/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,43.280036000000,5.352415000000,,anse de la fausse monnaie,46249,observation-c66c619b-90f2-44a4-bb1c-921ac4972f6f-2,https://biolit.fr/observations/observation-c66c619b-90f2-44a4-bb1c-921ac4972f6f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/La posidonie_ Posidonia oceanica_tige-scaled.jpg,,FALSE, +N1,60184,sortie-23d44537-3bd6-477a-99e5-1d42c3800e95,https://biolit.fr/sorties/sortie-23d44537-3bd6-477a-99e5-1d42c3800e95/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,43.279938000000,5.352312000000,,anse de la fausse monnaie,46251,observation-23d44537-3bd6-477a-99e5-1d42c3800e95,https://biolit.fr/observations/observation-23d44537-3bd6-477a-99e5-1d42c3800e95/,,,,https://biolit.fr/wp-content/uploads/2023/07/Phorcus turbinatus dessus-scaled.jpg,,FALSE, +N1,60184,sortie-23d44537-3bd6-477a-99e5-1d42c3800e95,https://biolit.fr/sorties/sortie-23d44537-3bd6-477a-99e5-1d42c3800e95/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,43.279938000000,5.352312000000,,anse de la fausse monnaie,46253,observation-23d44537-3bd6-477a-99e5-1d42c3800e95-2,https://biolit.fr/observations/observation-23d44537-3bd6-477a-99e5-1d42c3800e95-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Phorcus turbinatus dessous-scaled.jpg,,FALSE, +N1,60185,sortie-efc09e8b-2e4a-405d-921f-a1ee80193c83,https://biolit.fr/sorties/sortie-efc09e8b-2e4a-405d-921f-a1ee80193c83/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,43.27993200000,5.352306000000,,anse de la fausse monnaie,46255,observation-efc09e8b-2e4a-405d-921f-a1ee80193c83,https://biolit.fr/observations/observation-efc09e8b-2e4a-405d-921f-a1ee80193c83/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule Steromphala varia_desous_0.jpg,,FALSE, +N1,60185,sortie-efc09e8b-2e4a-405d-921f-a1ee80193c83,https://biolit.fr/sorties/sortie-efc09e8b-2e4a-405d-921f-a1ee80193c83/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,43.27993200000,5.352306000000,,anse de la fausse monnaie,46257,observation-efc09e8b-2e4a-405d-921f-a1ee80193c83-2,https://biolit.fr/observations/observation-efc09e8b-2e4a-405d-921f-a1ee80193c83-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule Steromphala varia_dessus.jpg,,FALSE, +N1,60186,sortie-e9e9dcd0-dff7-49ce-9397-2939bfff22d2,https://biolit.fr/sorties/sortie-e9e9dcd0-dff7-49ce-9397-2939bfff22d2/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,46.501523000000,0.977601000000,,anse de la fausse monnaie,46260,observation-e9e9dcd0-dff7-49ce-9397-2939bfff22d2-2,https://biolit.fr/observations/observation-e9e9dcd0-dff7-49ce-9397-2939bfff22d2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/chiton_vert Chiton olivaceus.jpg,,FALSE, +N1,60187,sortie-41d589bb-5bd6-4bcd-bb8b-b6caa833b08b,https://biolit.fr/sorties/sortie-41d589bb-5bd6-4bcd-bb8b-b6caa833b08b/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,43.280396000000,5.35279500000,,Anse de la fausse monnaie,46262,observation-41d589bb-5bd6-4bcd-bb8b-b6caa833b08b,https://biolit.fr/observations/observation-41d589bb-5bd6-4bcd-bb8b-b6caa833b08b/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule de pennant_Gibbula pennanti dessous.JPG,,FALSE, +N1,60187,sortie-41d589bb-5bd6-4bcd-bb8b-b6caa833b08b,https://biolit.fr/sorties/sortie-41d589bb-5bd6-4bcd-bb8b-b6caa833b08b/,ville de marseille saint julien 1 CM1,,11/16/2017 0:00,10.0000000,12.0000000,43.280396000000,5.35279500000,,Anse de la fausse monnaie,46264,observation-41d589bb-5bd6-4bcd-bb8b-b6caa833b08b-2,https://biolit.fr/observations/observation-41d589bb-5bd6-4bcd-bb8b-b6caa833b08b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule de pennant_Gibbula pennanti dessus.JPG,,FALSE, +N1,60188,sortie-60c1a50b-34c3-4bf4-9199-9374eeeb9a03,https://biolit.fr/sorties/sortie-60c1a50b-34c3-4bf4-9199-9374eeeb9a03/,Phil,,6/18/2017 0:00,16.0000000,16.0:25,47.719894000000,-3.957726000000,,Fouesnant - Finistère,46266,observation-60c1a50b-34c3-4bf4-9199-9374eeeb9a03,https://biolit.fr/observations/observation-60c1a50b-34c3-4bf4-9199-9374eeeb9a03/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070674.JPG,,FALSE, +N1,60188,sortie-60c1a50b-34c3-4bf4-9199-9374eeeb9a03,https://biolit.fr/sorties/sortie-60c1a50b-34c3-4bf4-9199-9374eeeb9a03/,Phil,,6/18/2017 0:00,16.0000000,16.0:25,47.719894000000,-3.957726000000,,Fouesnant - Finistère,46268,observation-60c1a50b-34c3-4bf4-9199-9374eeeb9a03-2,https://biolit.fr/observations/observation-60c1a50b-34c3-4bf4-9199-9374eeeb9a03-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070675.JPG,,FALSE, +N1,60188,sortie-60c1a50b-34c3-4bf4-9199-9374eeeb9a03,https://biolit.fr/sorties/sortie-60c1a50b-34c3-4bf4-9199-9374eeeb9a03/,Phil,,6/18/2017 0:00,16.0000000,16.0:25,47.719894000000,-3.957726000000,,Fouesnant - Finistère,46270,observation-60c1a50b-34c3-4bf4-9199-9374eeeb9a03-3,https://biolit.fr/observations/observation-60c1a50b-34c3-4bf4-9199-9374eeeb9a03-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070676.JPG,,FALSE, +N1,60189,sortie-499d7f37-1a62-4d45-b75c-c4eef23907a0,https://biolit.fr/sorties/sortie-499d7f37-1a62-4d45-b75c-c4eef23907a0/,Phil,,11/06/2017,12.0:15,13.0000000,48.004565000000,-4.523243000000,,Plouhinec - Finistère,46272,observation-499d7f37-1a62-4d45-b75c-c4eef23907a0,https://biolit.fr/observations/observation-499d7f37-1a62-4d45-b75c-c4eef23907a0/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_121629.jpg,,FALSE, +N1,60189,sortie-499d7f37-1a62-4d45-b75c-c4eef23907a0,https://biolit.fr/sorties/sortie-499d7f37-1a62-4d45-b75c-c4eef23907a0/,Phil,,11/06/2017,12.0:15,13.0000000,48.004565000000,-4.523243000000,,Plouhinec - Finistère,46274,observation-499d7f37-1a62-4d45-b75c-c4eef23907a0-2,https://biolit.fr/observations/observation-499d7f37-1a62-4d45-b75c-c4eef23907a0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_123850.jpg,,FALSE, +N1,60189,sortie-499d7f37-1a62-4d45-b75c-c4eef23907a0,https://biolit.fr/sorties/sortie-499d7f37-1a62-4d45-b75c-c4eef23907a0/,Phil,,11/06/2017,12.0:15,13.0000000,48.004565000000,-4.523243000000,,Plouhinec - Finistère,46276,observation-499d7f37-1a62-4d45-b75c-c4eef23907a0-3,https://biolit.fr/observations/observation-499d7f37-1a62-4d45-b75c-c4eef23907a0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_123902.jpg,,FALSE, +N1,60189,sortie-499d7f37-1a62-4d45-b75c-c4eef23907a0,https://biolit.fr/sorties/sortie-499d7f37-1a62-4d45-b75c-c4eef23907a0/,Phil,,11/06/2017,12.0:15,13.0000000,48.004565000000,-4.523243000000,,Plouhinec - Finistère,46278,observation-499d7f37-1a62-4d45-b75c-c4eef23907a0-4,https://biolit.fr/observations/observation-499d7f37-1a62-4d45-b75c-c4eef23907a0-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_124204.jpg,,FALSE, +N1,60190,sortie-68f8da0b-2d42-458a-928d-00871a5f4f5a,https://biolit.fr/sorties/sortie-68f8da0b-2d42-458a-928d-00871a5f4f5a/,Phil,,11/27/2017 0:00,15.0:35,15.0:45,48.218694000000,-4.392623000000,,Telgruc sur Mer - Finistère,46280,observation-68f8da0b-2d42-458a-928d-00871a5f4f5a,https://biolit.fr/observations/observation-68f8da0b-2d42-458a-928d-00871a5f4f5a/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/20171127_154320.jpg,,TRUE, +N1,60190,sortie-68f8da0b-2d42-458a-928d-00871a5f4f5a,https://biolit.fr/sorties/sortie-68f8da0b-2d42-458a-928d-00871a5f4f5a/,Phil,,11/27/2017 0:00,15.0:35,15.0:45,48.218694000000,-4.392623000000,,Telgruc sur Mer - Finistère,46282,observation-68f8da0b-2d42-458a-928d-00871a5f4f5a-2,https://biolit.fr/observations/observation-68f8da0b-2d42-458a-928d-00871a5f4f5a-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20171127_154023.jpg,,TRUE, +N1,60190,sortie-68f8da0b-2d42-458a-928d-00871a5f4f5a,https://biolit.fr/sorties/sortie-68f8da0b-2d42-458a-928d-00871a5f4f5a/,Phil,,11/27/2017 0:00,15.0:35,15.0:45,48.218694000000,-4.392623000000,,Telgruc sur Mer - Finistère,46284,observation-68f8da0b-2d42-458a-928d-00871a5f4f5a-3,https://biolit.fr/observations/observation-68f8da0b-2d42-458a-928d-00871a5f4f5a-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20171127_154011.jpg,,TRUE, +N1,60190,sortie-68f8da0b-2d42-458a-928d-00871a5f4f5a,https://biolit.fr/sorties/sortie-68f8da0b-2d42-458a-928d-00871a5f4f5a/,Phil,,11/27/2017 0:00,15.0:35,15.0:45,48.218694000000,-4.392623000000,,Telgruc sur Mer - Finistère,46286,observation-68f8da0b-2d42-458a-928d-00871a5f4f5a-4,https://biolit.fr/observations/observation-68f8da0b-2d42-458a-928d-00871a5f4f5a-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20171127_154003.jpg,,TRUE, +N1,60190,sortie-68f8da0b-2d42-458a-928d-00871a5f4f5a,https://biolit.fr/sorties/sortie-68f8da0b-2d42-458a-928d-00871a5f4f5a/,Phil,,11/27/2017 0:00,15.0:35,15.0:45,48.218694000000,-4.392623000000,,Telgruc sur Mer - Finistère,46288,observation-68f8da0b-2d42-458a-928d-00871a5f4f5a-5,https://biolit.fr/observations/observation-68f8da0b-2d42-458a-928d-00871a5f4f5a-5/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20171127_154310.jpg,,TRUE, +N1,60190,sortie-68f8da0b-2d42-458a-928d-00871a5f4f5a,https://biolit.fr/sorties/sortie-68f8da0b-2d42-458a-928d-00871a5f4f5a/,Phil,,11/27/2017 0:00,15.0:35,15.0:45,48.218694000000,-4.392623000000,,Telgruc sur Mer - Finistère,46290,observation-68f8da0b-2d42-458a-928d-00871a5f4f5a-6,https://biolit.fr/observations/observation-68f8da0b-2d42-458a-928d-00871a5f4f5a-6/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20171127_153858.jpg,,TRUE, +N1,60191,sortie-79a46f58-8b62-4f92-b1c8-f830852fc553,https://biolit.fr/sorties/sortie-79a46f58-8b62-4f92-b1c8-f830852fc553/,Phil,,11/05/2017,13.000005,13.0:15,47.797054000000,-4.177388000000,,Loctudy - Finistère,46292,observation-79a46f58-8b62-4f92-b1c8-f830852fc553,https://biolit.fr/observations/observation-79a46f58-8b62-4f92-b1c8-f830852fc553/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090422.JPG,,FALSE, +N1,60191,sortie-79a46f58-8b62-4f92-b1c8-f830852fc553,https://biolit.fr/sorties/sortie-79a46f58-8b62-4f92-b1c8-f830852fc553/,Phil,,11/05/2017,13.000005,13.0:15,47.797054000000,-4.177388000000,,Loctudy - Finistère,46294,observation-79a46f58-8b62-4f92-b1c8-f830852fc553-2,https://biolit.fr/observations/observation-79a46f58-8b62-4f92-b1c8-f830852fc553-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090423.JPG,,FALSE, +N1,60191,sortie-79a46f58-8b62-4f92-b1c8-f830852fc553,https://biolit.fr/sorties/sortie-79a46f58-8b62-4f92-b1c8-f830852fc553/,Phil,,11/05/2017,13.000005,13.0:15,47.797054000000,-4.177388000000,,Loctudy - Finistère,46296,observation-79a46f58-8b62-4f92-b1c8-f830852fc553-3,https://biolit.fr/observations/observation-79a46f58-8b62-4f92-b1c8-f830852fc553-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090424.JPG,,FALSE, +N1,60191,sortie-79a46f58-8b62-4f92-b1c8-f830852fc553,https://biolit.fr/sorties/sortie-79a46f58-8b62-4f92-b1c8-f830852fc553/,Phil,,11/05/2017,13.000005,13.0:15,47.797054000000,-4.177388000000,,Loctudy - Finistère,46298,observation-79a46f58-8b62-4f92-b1c8-f830852fc553-4,https://biolit.fr/observations/observation-79a46f58-8b62-4f92-b1c8-f830852fc553-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090427.JPG,,FALSE, +N1,60192,sortie-03b0e676-46a8-4db8-9d33-17daa466e067,https://biolit.fr/sorties/sortie-03b0e676-46a8-4db8-9d33-17daa466e067/,Phil,,11/06/2017,11.0:45,11.0000000,48.004189000000,-4.521144000000,,Plouhinec - Finistère,46300,observation-03b0e676-46a8-4db8-9d33-17daa466e067,https://biolit.fr/observations/observation-03b0e676-46a8-4db8-9d33-17daa466e067/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_114646.jpg,,FALSE, +N1,60192,sortie-03b0e676-46a8-4db8-9d33-17daa466e067,https://biolit.fr/sorties/sortie-03b0e676-46a8-4db8-9d33-17daa466e067/,Phil,,11/06/2017,11.0:45,11.0000000,48.004189000000,-4.521144000000,,Plouhinec - Finistère,46302,observation-03b0e676-46a8-4db8-9d33-17daa466e067-2,https://biolit.fr/observations/observation-03b0e676-46a8-4db8-9d33-17daa466e067-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_114720.jpg,,FALSE, +N1,60192,sortie-03b0e676-46a8-4db8-9d33-17daa466e067,https://biolit.fr/sorties/sortie-03b0e676-46a8-4db8-9d33-17daa466e067/,Phil,,11/06/2017,11.0:45,11.0000000,48.004189000000,-4.521144000000,,Plouhinec - Finistère,46304,observation-03b0e676-46a8-4db8-9d33-17daa466e067-3,https://biolit.fr/observations/observation-03b0e676-46a8-4db8-9d33-17daa466e067-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_114646_0.jpg,,FALSE, +N1,60192,sortie-03b0e676-46a8-4db8-9d33-17daa466e067,https://biolit.fr/sorties/sortie-03b0e676-46a8-4db8-9d33-17daa466e067/,Phil,,11/06/2017,11.0:45,11.0000000,48.004189000000,-4.521144000000,,Plouhinec - Finistère,46306,observation-03b0e676-46a8-4db8-9d33-17daa466e067-4,https://biolit.fr/observations/observation-03b0e676-46a8-4db8-9d33-17daa466e067-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_114641.jpg,,FALSE, +N1,60193,sortie-77b16bd9-fbcc-4077-8371-0a78ef620d3a,https://biolit.fr/sorties/sortie-77b16bd9-fbcc-4077-8371-0a78ef620d3a/,Phil,,3/23/2017 0:00,13.0000000,14.000005,47.946738000000,-4.409667000000,,Pouldreuzic - Finistère,46308,observation-77b16bd9-fbcc-4077-8371-0a78ef620d3a,https://biolit.fr/observations/observation-77b16bd9-fbcc-4077-8371-0a78ef620d3a/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170323_135247.jpg,,FALSE, +N1,60193,sortie-77b16bd9-fbcc-4077-8371-0a78ef620d3a,https://biolit.fr/sorties/sortie-77b16bd9-fbcc-4077-8371-0a78ef620d3a/,Phil,,3/23/2017 0:00,13.0000000,14.000005,47.946738000000,-4.409667000000,,Pouldreuzic - Finistère,46310,observation-77b16bd9-fbcc-4077-8371-0a78ef620d3a-2,https://biolit.fr/observations/observation-77b16bd9-fbcc-4077-8371-0a78ef620d3a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170323_140017.jpg,,FALSE, +N1,60194,sortie-0bc69ef8-7561-49a4-8c76-df6a16cf9792,https://biolit.fr/sorties/sortie-0bc69ef8-7561-49a4-8c76-df6a16cf9792/,NatsuDragnir,,11/23/2017 0:00,10.0000000,12.0000000,43.417362000000,5.1720250000,,étang de berre,46312,observation-0bc69ef8-7561-49a4-8c76-df6a16cf9792,https://biolit.fr/observations/observation-0bc69ef8-7561-49a4-8c76-df6a16cf9792/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_113810[1]-scaled.jpg,,FALSE, +N1,60194,sortie-0bc69ef8-7561-49a4-8c76-df6a16cf9792,https://biolit.fr/sorties/sortie-0bc69ef8-7561-49a4-8c76-df6a16cf9792/,NatsuDragnir,,11/23/2017 0:00,10.0000000,12.0000000,43.417362000000,5.1720250000,,étang de berre,46314,observation-0bc69ef8-7561-49a4-8c76-df6a16cf9792-2,https://biolit.fr/observations/observation-0bc69ef8-7561-49a4-8c76-df6a16cf9792-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_105429[1]-scaled.jpg,,FALSE, +N1,60194,sortie-0bc69ef8-7561-49a4-8c76-df6a16cf9792,https://biolit.fr/sorties/sortie-0bc69ef8-7561-49a4-8c76-df6a16cf9792/,NatsuDragnir,,11/23/2017 0:00,10.0000000,12.0000000,43.417362000000,5.1720250000,,étang de berre,46316,observation-0bc69ef8-7561-49a4-8c76-df6a16cf9792-3,https://biolit.fr/observations/observation-0bc69ef8-7561-49a4-8c76-df6a16cf9792-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_105441[1]-scaled.jpg,,FALSE, +N1,60194,sortie-0bc69ef8-7561-49a4-8c76-df6a16cf9792,https://biolit.fr/sorties/sortie-0bc69ef8-7561-49a4-8c76-df6a16cf9792/,NatsuDragnir,,11/23/2017 0:00,10.0000000,12.0000000,43.417362000000,5.1720250000,,étang de berre,46318,observation-0bc69ef8-7561-49a4-8c76-df6a16cf9792-4,https://biolit.fr/observations/observation-0bc69ef8-7561-49a4-8c76-df6a16cf9792-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_110156[1]-scaled.jpg,,FALSE, +N1,60195,sortie-3c6f9c70-f6b8-4e0e-8708-43fd3bbaf102,https://biolit.fr/sorties/sortie-3c6f9c70-f6b8-4e0e-8708-43fd3bbaf102/,NatsuDragnir,,11/23/2017 0:00,13.0000000,17.0000000,43.3313930000,5.071124000000,,anse de sainte croix,46320,observation-3c6f9c70-f6b8-4e0e-8708-43fd3bbaf102,https://biolit.fr/observations/observation-3c6f9c70-f6b8-4e0e-8708-43fd3bbaf102/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_144005[1]-scaled.jpg,,FALSE, +N1,60195,sortie-3c6f9c70-f6b8-4e0e-8708-43fd3bbaf102,https://biolit.fr/sorties/sortie-3c6f9c70-f6b8-4e0e-8708-43fd3bbaf102/,NatsuDragnir,,11/23/2017 0:00,13.0000000,17.0000000,43.3313930000,5.071124000000,,anse de sainte croix,46322,observation-3c6f9c70-f6b8-4e0e-8708-43fd3bbaf102-2,https://biolit.fr/observations/observation-3c6f9c70-f6b8-4e0e-8708-43fd3bbaf102-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_144053[1]-scaled.jpg,,FALSE, +N1,60196,sortie-264f5562-2c3f-420b-b06e-42344f27fe96,https://biolit.fr/sorties/sortie-264f5562-2c3f-420b-b06e-42344f27fe96/,NatsuDragnir,,11/23/2017 0:00,9.0000000,12.0000000,43.425196000000,5.180651000000,,étang de berre,46324,observation-264f5562-2c3f-420b-b06e-42344f27fe96,https://biolit.fr/observations/observation-264f5562-2c3f-420b-b06e-42344f27fe96/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/20171123_101407[1]-scaled.jpg,,TRUE, +N1,60196,sortie-264f5562-2c3f-420b-b06e-42344f27fe96,https://biolit.fr/sorties/sortie-264f5562-2c3f-420b-b06e-42344f27fe96/,NatsuDragnir,,11/23/2017 0:00,9.0000000,12.0000000,43.425196000000,5.180651000000,,étang de berre,46326,observation-264f5562-2c3f-420b-b06e-42344f27fe96-2,https://biolit.fr/observations/observation-264f5562-2c3f-420b-b06e-42344f27fe96-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_123019[1]-scaled.jpg,,FALSE, +N1,60196,sortie-264f5562-2c3f-420b-b06e-42344f27fe96,https://biolit.fr/sorties/sortie-264f5562-2c3f-420b-b06e-42344f27fe96/,NatsuDragnir,,11/23/2017 0:00,9.0000000,12.0000000,43.425196000000,5.180651000000,,étang de berre,46328,observation-264f5562-2c3f-420b-b06e-42344f27fe96-3,https://biolit.fr/observations/observation-264f5562-2c3f-420b-b06e-42344f27fe96-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_120350[1]-scaled.jpg,,FALSE, +N1,60196,sortie-264f5562-2c3f-420b-b06e-42344f27fe96,https://biolit.fr/sorties/sortie-264f5562-2c3f-420b-b06e-42344f27fe96/,NatsuDragnir,,11/23/2017 0:00,9.0000000,12.0000000,43.425196000000,5.180651000000,,étang de berre,46330,observation-264f5562-2c3f-420b-b06e-42344f27fe96-4,https://biolit.fr/observations/observation-264f5562-2c3f-420b-b06e-42344f27fe96-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_122334[1]_0-scaled.jpg,,FALSE, +N1,60196,sortie-264f5562-2c3f-420b-b06e-42344f27fe96,https://biolit.fr/sorties/sortie-264f5562-2c3f-420b-b06e-42344f27fe96/,NatsuDragnir,,11/23/2017 0:00,9.0000000,12.0000000,43.425196000000,5.180651000000,,étang de berre,46332,observation-264f5562-2c3f-420b-b06e-42344f27fe96-5,https://biolit.fr/observations/observation-264f5562-2c3f-420b-b06e-42344f27fe96-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_122341[1]-scaled.jpg,,FALSE, +N1,60196,sortie-264f5562-2c3f-420b-b06e-42344f27fe96,https://biolit.fr/sorties/sortie-264f5562-2c3f-420b-b06e-42344f27fe96/,NatsuDragnir,,11/23/2017 0:00,9.0000000,12.0000000,43.425196000000,5.180651000000,,étang de berre,46334,observation-264f5562-2c3f-420b-b06e-42344f27fe96-6,https://biolit.fr/observations/observation-264f5562-2c3f-420b-b06e-42344f27fe96-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_121152[1]-scaled.jpg,,FALSE, +N1,60196,sortie-264f5562-2c3f-420b-b06e-42344f27fe96,https://biolit.fr/sorties/sortie-264f5562-2c3f-420b-b06e-42344f27fe96/,NatsuDragnir,,11/23/2017 0:00,9.0000000,12.0000000,43.425196000000,5.180651000000,,étang de berre,46336,observation-264f5562-2c3f-420b-b06e-42344f27fe96-7,https://biolit.fr/observations/observation-264f5562-2c3f-420b-b06e-42344f27fe96-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_123232[1]-scaled.jpg,,FALSE, +N1,60197,sortie-afbbcf25-2f91-485c-a24f-a936ce219afa,https://biolit.fr/sorties/sortie-afbbcf25-2f91-485c-a24f-a936ce219afa/,sedeck,,11/24/2017 0:00,11.0:25,13.0000000,43.423737000000,5.17908200000,,Etang de Berre,46338,observation-afbbcf25-2f91-485c-a24f-a936ce219afa,https://biolit.fr/observations/observation-afbbcf25-2f91-485c-a24f-a936ce219afa/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0152[1]-scaled.jpg,,FALSE, +N1,60198,sortie-0df0b5db-8f16-4199-abef-b6a507fc9e0e,https://biolit.fr/sorties/sortie-0df0b5db-8f16-4199-abef-b6a507fc9e0e/,pintballeur2000,,11/23/2017 0:00,13.0000000,17.0000000,43.331272000000,5.071418000000,,la cote bleu ,46340,observation-0df0b5db-8f16-4199-abef-b6a507fc9e0e,https://biolit.fr/observations/observation-0df0b5db-8f16-4199-abef-b6a507fc9e0e/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171123_224852_921[1].jpg,,FALSE, +N1,60198,sortie-0df0b5db-8f16-4199-abef-b6a507fc9e0e,https://biolit.fr/sorties/sortie-0df0b5db-8f16-4199-abef-b6a507fc9e0e/,pintballeur2000,,11/23/2017 0:00,13.0000000,17.0000000,43.331272000000,5.071418000000,,la cote bleu ,46342,observation-0df0b5db-8f16-4199-abef-b6a507fc9e0e-2,https://biolit.fr/observations/observation-0df0b5db-8f16-4199-abef-b6a507fc9e0e-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/20171123_155018[1]-scaled.jpg,,TRUE, +N1,60198,sortie-0df0b5db-8f16-4199-abef-b6a507fc9e0e,https://biolit.fr/sorties/sortie-0df0b5db-8f16-4199-abef-b6a507fc9e0e/,pintballeur2000,,11/23/2017 0:00,13.0000000,17.0000000,43.331272000000,5.071418000000,,la cote bleu ,46344,observation-0df0b5db-8f16-4199-abef-b6a507fc9e0e-3,https://biolit.fr/observations/observation-0df0b5db-8f16-4199-abef-b6a507fc9e0e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_160021[1]-scaled.jpg,,FALSE, +N1,60198,sortie-0df0b5db-8f16-4199-abef-b6a507fc9e0e,https://biolit.fr/sorties/sortie-0df0b5db-8f16-4199-abef-b6a507fc9e0e/,pintballeur2000,,11/23/2017 0:00,13.0000000,17.0000000,43.331272000000,5.071418000000,,la cote bleu ,46346,observation-0df0b5db-8f16-4199-abef-b6a507fc9e0e-4,https://biolit.fr/observations/observation-0df0b5db-8f16-4199-abef-b6a507fc9e0e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_155557[1]-scaled.jpg,,FALSE, +N1,60198,sortie-0df0b5db-8f16-4199-abef-b6a507fc9e0e,https://biolit.fr/sorties/sortie-0df0b5db-8f16-4199-abef-b6a507fc9e0e/,pintballeur2000,,11/23/2017 0:00,13.0000000,17.0000000,43.331272000000,5.071418000000,,la cote bleu ,46348,observation-0df0b5db-8f16-4199-abef-b6a507fc9e0e-5,https://biolit.fr/observations/observation-0df0b5db-8f16-4199-abef-b6a507fc9e0e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_152353[1]-scaled.jpg,,FALSE, +N1,60199,sortie-f1ed536f-9ed8-460a-8afe-ec289627cec0,https://biolit.fr/sorties/sortie-f1ed536f-9ed8-460a-8afe-ec289627cec0/,Salomé et Clotilde,,11/23/2017 0:00,14.0000000,15.0:45,43.332052000000,5.066397000000,,Plage de sainte croix,46350,observation-f1ed536f-9ed8-460a-8afe-ec289627cec0,https://biolit.fr/observations/observation-f1ed536f-9ed8-460a-8afe-ec289627cec0/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0163[1].JPG,,FALSE, +N1,60199,sortie-f1ed536f-9ed8-460a-8afe-ec289627cec0,https://biolit.fr/sorties/sortie-f1ed536f-9ed8-460a-8afe-ec289627cec0/,Salomé et Clotilde,,11/23/2017 0:00,14.0000000,15.0:45,43.332052000000,5.066397000000,,Plage de sainte croix,46352,observation-f1ed536f-9ed8-460a-8afe-ec289627cec0-2,https://biolit.fr/observations/observation-f1ed536f-9ed8-460a-8afe-ec289627cec0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0164[1].JPG,,FALSE, +N1,60200,sortie-ed5c5629-a80a-46ae-bcf7-5c0c6a2d6985,https://biolit.fr/sorties/sortie-ed5c5629-a80a-46ae-bcf7-5c0c6a2d6985/,quentin13710,,11/24/2017 0:00,11.0000000,13.0000000,43.32894400000,5.078325000000,,port des tamaris,46354,observation-ed5c5629-a80a-46ae-bcf7-5c0c6a2d6985,https://biolit.fr/observations/observation-ed5c5629-a80a-46ae-bcf7-5c0c6a2d6985/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1682[1].PNG,,FALSE, +N1,60201,sortie-8aaf2beb-acf2-4d2a-ac5a-063162701653,https://biolit.fr/sorties/sortie-8aaf2beb-acf2-4d2a-ac5a-063162701653/,enzo13,,11/24/2017 0:00,11.0000000,13.0000000,43.33148600000,5.071241000000,,Sausset-les-Pins,46356,observation-8aaf2beb-acf2-4d2a-ac5a-063162701653,https://biolit.fr/observations/observation-8aaf2beb-acf2-4d2a-ac5a-063162701653/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_153451.jpg,,FALSE, +N1,60202,sortie-ed39dc18-42b6-45f3-accb-64388666c1c3,https://biolit.fr/sorties/sortie-ed39dc18-42b6-45f3-accb-64388666c1c3/,Flav_Gly1323,,11/24/2017 0:00,10.0000000,12.0000000,43.422966000000,5.177794000000,,plage du Jai,46358,observation-ed39dc18-42b6-45f3-accb-64388666c1c3,https://biolit.fr/observations/observation-ed39dc18-42b6-45f3-accb-64388666c1c3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171124_112042_901[1].jpg,,FALSE, +N1,60203,sortie-a4a8e6e7-8ba7-47bd-b2a7-7efddb49efa0,https://biolit.fr/sorties/sortie-a4a8e6e7-8ba7-47bd-b2a7-7efddb49efa0/,sedeck,,11/24/2017 0:00,11.0000000,13.0000000,43.423633000000,5.179007000000,,Etang de Berre,46360,observation-a4a8e6e7-8ba7-47bd-b2a7-7efddb49efa0,https://biolit.fr/observations/observation-a4a8e6e7-8ba7-47bd-b2a7-7efddb49efa0/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0110[1]-scaled.jpg,,FALSE, +N1,60204,sortie-1a1d7483-9af5-428c-b268-876ebb26f64a,https://biolit.fr/sorties/sortie-1a1d7483-9af5-428c-b268-876ebb26f64a/,pintballeur2000,,11/23/2017 0:00,9.0000000,12.0000000,43.419645000000,5.173557000000,,lido du jai,46362,observation-1a1d7483-9af5-428c-b268-876ebb26f64a,https://biolit.fr/observations/observation-1a1d7483-9af5-428c-b268-876ebb26f64a/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_100404[1]-scaled.jpg,,FALSE, +N1,60204,sortie-1a1d7483-9af5-428c-b268-876ebb26f64a,https://biolit.fr/sorties/sortie-1a1d7483-9af5-428c-b268-876ebb26f64a/,pintballeur2000,,11/23/2017 0:00,9.0000000,12.0000000,43.419645000000,5.173557000000,,lido du jai,46364,observation-1a1d7483-9af5-428c-b268-876ebb26f64a-2,https://biolit.fr/observations/observation-1a1d7483-9af5-428c-b268-876ebb26f64a-2/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/20171123_101409[1]-scaled.jpg,,TRUE, +N1,60204,sortie-1a1d7483-9af5-428c-b268-876ebb26f64a,https://biolit.fr/sorties/sortie-1a1d7483-9af5-428c-b268-876ebb26f64a/,pintballeur2000,,11/23/2017 0:00,9.0000000,12.0000000,43.419645000000,5.173557000000,,lido du jai,46366,observation-1a1d7483-9af5-428c-b268-876ebb26f64a-3,https://biolit.fr/observations/observation-1a1d7483-9af5-428c-b268-876ebb26f64a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_101903[1]-scaled.jpg,,FALSE, +N1,60204,sortie-1a1d7483-9af5-428c-b268-876ebb26f64a,https://biolit.fr/sorties/sortie-1a1d7483-9af5-428c-b268-876ebb26f64a/,pintballeur2000,,11/23/2017 0:00,9.0000000,12.0000000,43.419645000000,5.173557000000,,lido du jai,46368,observation-1a1d7483-9af5-428c-b268-876ebb26f64a-4,https://biolit.fr/observations/observation-1a1d7483-9af5-428c-b268-876ebb26f64a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_121200[1]-scaled.jpg,,FALSE, +N1,60204,sortie-1a1d7483-9af5-428c-b268-876ebb26f64a,https://biolit.fr/sorties/sortie-1a1d7483-9af5-428c-b268-876ebb26f64a/,pintballeur2000,,11/23/2017 0:00,9.0000000,12.0000000,43.419645000000,5.173557000000,,lido du jai,46370,observation-1a1d7483-9af5-428c-b268-876ebb26f64a-5,https://biolit.fr/observations/observation-1a1d7483-9af5-428c-b268-876ebb26f64a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_122334[1]-scaled.jpg,,FALSE, +N1,60204,sortie-1a1d7483-9af5-428c-b268-876ebb26f64a,https://biolit.fr/sorties/sortie-1a1d7483-9af5-428c-b268-876ebb26f64a/,pintballeur2000,,11/23/2017 0:00,9.0000000,12.0000000,43.419645000000,5.173557000000,,lido du jai,46372,observation-1a1d7483-9af5-428c-b268-876ebb26f64a-6,https://biolit.fr/observations/observation-1a1d7483-9af5-428c-b268-876ebb26f64a-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_123024[1]-scaled.jpg,,FALSE, +N1,60205,sortie-e6f77033-5b92-4a9d-b27f-442d9353dc5d,https://biolit.fr/sorties/sortie-e6f77033-5b92-4a9d-b27f-442d9353dc5d/,quentin13710,,11/23/2017 0:00,10.0000000,12.0000000,43.423680000000,5.178859000000,,etang de berre,46374,observation-e6f77033-5b92-4a9d-b27f-442d9353dc5d,https://biolit.fr/observations/observation-e6f77033-5b92-4a9d-b27f-442d9353dc5d/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0046[1]-scaled.jpg,,FALSE, +N1,60206,sortie-d320ed62-481a-4875-a9b9-9fb7f476ceee,https://biolit.fr/sorties/sortie-d320ed62-481a-4875-a9b9-9fb7f476ceee/,sedeck,,11/24/2017 0:00,11.0000000,13.0000000,63.982705000000,-107.14752900000,,Etang de Berre,46376,observation-d320ed62-481a-4875-a9b9-9fb7f476ceee,https://biolit.fr/observations/observation-d320ed62-481a-4875-a9b9-9fb7f476ceee/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0112[1]-scaled.jpg,,FALSE, +N1,60207,sortie-5ddd437f-4faa-4c77-b370-977947f2763e,https://biolit.fr/sorties/sortie-5ddd437f-4faa-4c77-b370-977947f2763e/,dorine,,11/23/2017 0:00,9.0000000,12.0:25,43.404025000000,5.143859000000,,lido du jaï,46378,observation-5ddd437f-4faa-4c77-b370-977947f2763e,https://biolit.fr/observations/observation-5ddd437f-4faa-4c77-b370-977947f2763e/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_120344[1]-scaled.jpg,,FALSE, +N1,60207,sortie-5ddd437f-4faa-4c77-b370-977947f2763e,https://biolit.fr/sorties/sortie-5ddd437f-4faa-4c77-b370-977947f2763e/,dorine,,11/23/2017 0:00,9.0000000,12.0:25,43.404025000000,5.143859000000,,lido du jaï,46380,observation-5ddd437f-4faa-4c77-b370-977947f2763e-2,https://biolit.fr/observations/observation-5ddd437f-4faa-4c77-b370-977947f2763e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_120434[1]-scaled.jpg,,FALSE, +N1,60207,sortie-5ddd437f-4faa-4c77-b370-977947f2763e,https://biolit.fr/sorties/sortie-5ddd437f-4faa-4c77-b370-977947f2763e/,dorine,,11/23/2017 0:00,9.0000000,12.0:25,43.404025000000,5.143859000000,,lido du jaï,46382,observation-5ddd437f-4faa-4c77-b370-977947f2763e-3,https://biolit.fr/observations/observation-5ddd437f-4faa-4c77-b370-977947f2763e-3/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/20171123_120605[1]-scaled.jpg,,TRUE, +N1,60207,sortie-5ddd437f-4faa-4c77-b370-977947f2763e,https://biolit.fr/sorties/sortie-5ddd437f-4faa-4c77-b370-977947f2763e/,dorine,,11/23/2017 0:00,9.0000000,12.0:25,43.404025000000,5.143859000000,,lido du jaï,46384,observation-5ddd437f-4faa-4c77-b370-977947f2763e-4,https://biolit.fr/observations/observation-5ddd437f-4faa-4c77-b370-977947f2763e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_120754[1]-scaled.jpg,,FALSE, +N1,60207,sortie-5ddd437f-4faa-4c77-b370-977947f2763e,https://biolit.fr/sorties/sortie-5ddd437f-4faa-4c77-b370-977947f2763e/,dorine,,11/23/2017 0:00,9.0000000,12.0:25,43.404025000000,5.143859000000,,lido du jaï,46386,observation-5ddd437f-4faa-4c77-b370-977947f2763e-5,https://biolit.fr/observations/observation-5ddd437f-4faa-4c77-b370-977947f2763e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_122353[1]-scaled.jpg,,FALSE, +N1,60207,sortie-5ddd437f-4faa-4c77-b370-977947f2763e,https://biolit.fr/sorties/sortie-5ddd437f-4faa-4c77-b370-977947f2763e/,dorine,,11/23/2017 0:00,9.0000000,12.0:25,43.404025000000,5.143859000000,,lido du jaï,46388,observation-5ddd437f-4faa-4c77-b370-977947f2763e-6,https://biolit.fr/observations/observation-5ddd437f-4faa-4c77-b370-977947f2763e-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_131725[1]-scaled.jpg,,FALSE, +N1,60207,sortie-5ddd437f-4faa-4c77-b370-977947f2763e,https://biolit.fr/sorties/sortie-5ddd437f-4faa-4c77-b370-977947f2763e/,dorine,,11/23/2017 0:00,9.0000000,12.0:25,43.404025000000,5.143859000000,,lido du jaï,46390,observation-5ddd437f-4faa-4c77-b370-977947f2763e-7,https://biolit.fr/observations/observation-5ddd437f-4faa-4c77-b370-977947f2763e-7/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/20171123_121642[1]-scaled.jpg,,TRUE, +N1,60208,sortie-822f8a6e-36b2-496f-8748-692ed33789d9,https://biolit.fr/sorties/sortie-822f8a6e-36b2-496f-8748-692ed33789d9/,sedeck,,11/23/2017 0:00,14.0000000,16.0000000,43.331566000000,5.071213000000,,Cote Bleue,46392,observation-822f8a6e-36b2-496f-8748-692ed33789d9,https://biolit.fr/observations/observation-822f8a6e-36b2-496f-8748-692ed33789d9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0143[1]_0-scaled.jpg,,FALSE, +N1,60209,sortie-e6ed9a5e-3df8-49ed-8ca0-8911615e98c2,https://biolit.fr/sorties/sortie-e6ed9a5e-3df8-49ed-8ca0-8911615e98c2/,enzo13,,11/23/2017 0:00,10.0000000,11.0:45,43.423023000000,5.178536000000,,L'Étang de Berre,46394,observation-e6ed9a5e-3df8-49ed-8ca0-8911615e98c2,https://biolit.fr/observations/observation-e6ed9a5e-3df8-49ed-8ca0-8911615e98c2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_120725-scaled.jpg,,FALSE, +N1,60210,sortie-649892e7-7d31-406a-a5a6-0510ded7b46a,https://biolit.fr/sorties/sortie-649892e7-7d31-406a-a5a6-0510ded7b46a/,AIEJE,,11/23/2017 0:00,10.0:15,16.0000000,43.415828000000,5.173385000000,,étang de berre ,46396,observation-649892e7-7d31-406a-a5a6-0510ded7b46a,https://biolit.fr/observations/observation-649892e7-7d31-406a-a5a6-0510ded7b46a/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171123_120637-scaled.jpg,,FALSE, +N1,60210,sortie-649892e7-7d31-406a-a5a6-0510ded7b46a,https://biolit.fr/sorties/sortie-649892e7-7d31-406a-a5a6-0510ded7b46a/,AIEJE,,11/23/2017 0:00,10.0:15,16.0000000,43.415828000000,5.173385000000,,étang de berre ,46398,observation-649892e7-7d31-406a-a5a6-0510ded7b46a-2,https://biolit.fr/observations/observation-649892e7-7d31-406a-a5a6-0510ded7b46a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171123_121927-scaled.jpg,,FALSE, +N1,60211,sortie-fd03bc72-0375-4985-85b0-4104b6227473,https://biolit.fr/sorties/sortie-fd03bc72-0375-4985-85b0-4104b6227473/,baptistemanon,,11/23/2017 0:00,11.0000000,12.0000000,43.422329000000,5.176947000000,,etang de berre,46400,observation-fd03bc72-0375-4985-85b0-4104b6227473,https://biolit.fr/observations/observation-fd03bc72-0375-4985-85b0-4104b6227473/,,,,https://biolit.fr/wp-content/uploads/2023/07/amangement 1.PNG,,FALSE, +N1,60211,sortie-fd03bc72-0375-4985-85b0-4104b6227473,https://biolit.fr/sorties/sortie-fd03bc72-0375-4985-85b0-4104b6227473/,baptistemanon,,11/23/2017 0:00,11.0000000,12.0000000,43.422329000000,5.176947000000,,etang de berre,46402,observation-fd03bc72-0375-4985-85b0-4104b6227473-2,https://biolit.fr/observations/observation-fd03bc72-0375-4985-85b0-4104b6227473-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/amenagement 2.PNG,,FALSE, +N1,60211,sortie-fd03bc72-0375-4985-85b0-4104b6227473,https://biolit.fr/sorties/sortie-fd03bc72-0375-4985-85b0-4104b6227473/,baptistemanon,,11/23/2017 0:00,11.0000000,12.0000000,43.422329000000,5.176947000000,,etang de berre,46404,observation-fd03bc72-0375-4985-85b0-4104b6227473-3,https://biolit.fr/observations/observation-fd03bc72-0375-4985-85b0-4104b6227473-3/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/amenagement 3.PNG,,TRUE, +N1,60211,sortie-fd03bc72-0375-4985-85b0-4104b6227473,https://biolit.fr/sorties/sortie-fd03bc72-0375-4985-85b0-4104b6227473/,baptistemanon,,11/23/2017 0:00,11.0000000,12.0000000,43.422329000000,5.176947000000,,etang de berre,46406,observation-fd03bc72-0375-4985-85b0-4104b6227473-4,https://biolit.fr/observations/observation-fd03bc72-0375-4985-85b0-4104b6227473-4/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/amenagement4.PNG,,TRUE, +N1,60211,sortie-fd03bc72-0375-4985-85b0-4104b6227473,https://biolit.fr/sorties/sortie-fd03bc72-0375-4985-85b0-4104b6227473/,baptistemanon,,11/23/2017 0:00,11.0000000,12.0000000,43.422329000000,5.176947000000,,etang de berre,46408,observation-fd03bc72-0375-4985-85b0-4104b6227473-5,https://biolit.fr/observations/observation-fd03bc72-0375-4985-85b0-4104b6227473-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/amenagement 5.PNG,,FALSE, +N1,60211,sortie-fd03bc72-0375-4985-85b0-4104b6227473,https://biolit.fr/sorties/sortie-fd03bc72-0375-4985-85b0-4104b6227473/,baptistemanon,,11/23/2017 0:00,11.0000000,12.0000000,43.422329000000,5.176947000000,,etang de berre,46410,observation-fd03bc72-0375-4985-85b0-4104b6227473-6,https://biolit.fr/observations/observation-fd03bc72-0375-4985-85b0-4104b6227473-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/amenagement 8.PNG,,FALSE, +N1,60211,sortie-fd03bc72-0375-4985-85b0-4104b6227473,https://biolit.fr/sorties/sortie-fd03bc72-0375-4985-85b0-4104b6227473/,baptistemanon,,11/23/2017 0:00,11.0000000,12.0000000,43.422329000000,5.176947000000,,etang de berre,46412,observation-fd03bc72-0375-4985-85b0-4104b6227473-7,https://biolit.fr/observations/observation-fd03bc72-0375-4985-85b0-4104b6227473-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/amenagement9.PNG,,FALSE, +N1,60211,sortie-fd03bc72-0375-4985-85b0-4104b6227473,https://biolit.fr/sorties/sortie-fd03bc72-0375-4985-85b0-4104b6227473/,baptistemanon,,11/23/2017 0:00,11.0000000,12.0000000,43.422329000000,5.176947000000,,etang de berre,46414,observation-fd03bc72-0375-4985-85b0-4104b6227473-8,https://biolit.fr/observations/observation-fd03bc72-0375-4985-85b0-4104b6227473-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/amenagement 6.PNG,,FALSE, +N1,60211,sortie-fd03bc72-0375-4985-85b0-4104b6227473,https://biolit.fr/sorties/sortie-fd03bc72-0375-4985-85b0-4104b6227473/,baptistemanon,,11/23/2017 0:00,11.0000000,12.0000000,43.422329000000,5.176947000000,,etang de berre,46416,observation-fd03bc72-0375-4985-85b0-4104b6227473-9,https://biolit.fr/observations/observation-fd03bc72-0375-4985-85b0-4104b6227473-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/amenagement 7.PNG,,FALSE, +N1,60211,sortie-fd03bc72-0375-4985-85b0-4104b6227473,https://biolit.fr/sorties/sortie-fd03bc72-0375-4985-85b0-4104b6227473/,baptistemanon,,11/23/2017 0:00,11.0000000,12.0000000,43.422329000000,5.176947000000,,etang de berre,46418,observation-fd03bc72-0375-4985-85b0-4104b6227473-10,https://biolit.fr/observations/observation-fd03bc72-0375-4985-85b0-4104b6227473-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/amenagement 9.PNG,,FALSE, +N1,60211,sortie-fd03bc72-0375-4985-85b0-4104b6227473,https://biolit.fr/sorties/sortie-fd03bc72-0375-4985-85b0-4104b6227473/,baptistemanon,,11/23/2017 0:00,11.0000000,12.0000000,43.422329000000,5.176947000000,,etang de berre,46420,observation-fd03bc72-0375-4985-85b0-4104b6227473-11,https://biolit.fr/observations/observation-fd03bc72-0375-4985-85b0-4104b6227473-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/amenagement 10.PNG,,FALSE, +N1,60212,sortie-1113d5d1-0a8c-45b4-94c6-e082508b93f8,https://biolit.fr/sorties/sortie-1113d5d1-0a8c-45b4-94c6-e082508b93f8/,sedeck,,11/24/2017 0:00,10.0000000,12.0000000,43.423435000000,5.178959000000,,Etang de Berre,46422,observation-1113d5d1-0a8c-45b4-94c6-e082508b93f8,https://biolit.fr/observations/observation-1113d5d1-0a8c-45b4-94c6-e082508b93f8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0123[1]_0-scaled.jpg,,FALSE, +N1,60213,sortie-fccbd605-c0e7-4eb0-96c5-e785f456918b,https://biolit.fr/sorties/sortie-fccbd605-c0e7-4eb0-96c5-e785f456918b/,Alexis13390,,11/23/2017 0:00,8.0:45,17.0000000,43.425114000000,5.181100000000,,Jaï,46424,observation-fccbd605-c0e7-4eb0-96c5-e785f456918b,https://biolit.fr/observations/observation-fccbd605-c0e7-4eb0-96c5-e785f456918b/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_155612[1]-scaled.jpg,,FALSE, +N1,60213,sortie-fccbd605-c0e7-4eb0-96c5-e785f456918b,https://biolit.fr/sorties/sortie-fccbd605-c0e7-4eb0-96c5-e785f456918b/,Alexis13390,,11/23/2017 0:00,8.0:45,17.0000000,43.425114000000,5.181100000000,,Jaï,46426,observation-fccbd605-c0e7-4eb0-96c5-e785f456918b-2,https://biolit.fr/observations/observation-fccbd605-c0e7-4eb0-96c5-e785f456918b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_160143[1]-scaled.jpg,,FALSE, +N1,60213,sortie-fccbd605-c0e7-4eb0-96c5-e785f456918b,https://biolit.fr/sorties/sortie-fccbd605-c0e7-4eb0-96c5-e785f456918b/,Alexis13390,,11/23/2017 0:00,8.0:45,17.0000000,43.425114000000,5.181100000000,,Jaï,46428,observation-fccbd605-c0e7-4eb0-96c5-e785f456918b-3,https://biolit.fr/observations/observation-fccbd605-c0e7-4eb0-96c5-e785f456918b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171123_123454[1]-scaled.jpg,,FALSE, +N1,60214,sortie-cb5fd276-2ab4-4c95-ac06-f09a359c6b78,https://biolit.fr/sorties/sortie-cb5fd276-2ab4-4c95-ac06-f09a359c6b78/,Salomé et Clotilde,,11/23/2017 0:00,9.0000000,12.0000000,43.411011000000,5.162399000000,,étang de berre,46430,observation-cb5fd276-2ab4-4c95-ac06-f09a359c6b78,https://biolit.fr/observations/observation-cb5fd276-2ab4-4c95-ac06-f09a359c6b78/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0143[1]-scaled.jpg,,FALSE, +N1,60214,sortie-cb5fd276-2ab4-4c95-ac06-f09a359c6b78,https://biolit.fr/sorties/sortie-cb5fd276-2ab4-4c95-ac06-f09a359c6b78/,Salomé et Clotilde,,11/23/2017 0:00,9.0000000,12.0000000,43.411011000000,5.162399000000,,étang de berre,46432,observation-cb5fd276-2ab4-4c95-ac06-f09a359c6b78-2,https://biolit.fr/observations/observation-cb5fd276-2ab4-4c95-ac06-f09a359c6b78-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0140[1]-scaled.jpg,,FALSE, +N1,60214,sortie-cb5fd276-2ab4-4c95-ac06-f09a359c6b78,https://biolit.fr/sorties/sortie-cb5fd276-2ab4-4c95-ac06-f09a359c6b78/,Salomé et Clotilde,,11/23/2017 0:00,9.0000000,12.0000000,43.411011000000,5.162399000000,,étang de berre,46434,observation-cb5fd276-2ab4-4c95-ac06-f09a359c6b78-3,https://biolit.fr/observations/observation-cb5fd276-2ab4-4c95-ac06-f09a359c6b78-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0141[1]-scaled.jpg,,FALSE, +N1,60214,sortie-cb5fd276-2ab4-4c95-ac06-f09a359c6b78,https://biolit.fr/sorties/sortie-cb5fd276-2ab4-4c95-ac06-f09a359c6b78/,Salomé et Clotilde,,11/23/2017 0:00,9.0000000,12.0000000,43.411011000000,5.162399000000,,étang de berre,46436,observation-cb5fd276-2ab4-4c95-ac06-f09a359c6b78-4,https://biolit.fr/observations/observation-cb5fd276-2ab4-4c95-ac06-f09a359c6b78-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0144[1]-scaled.jpg,,FALSE, +N1,60214,sortie-cb5fd276-2ab4-4c95-ac06-f09a359c6b78,https://biolit.fr/sorties/sortie-cb5fd276-2ab4-4c95-ac06-f09a359c6b78/,Salomé et Clotilde,,11/23/2017 0:00,9.0000000,12.0000000,43.411011000000,5.162399000000,,étang de berre,46438,observation-cb5fd276-2ab4-4c95-ac06-f09a359c6b78-5,https://biolit.fr/observations/observation-cb5fd276-2ab4-4c95-ac06-f09a359c6b78-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0145[1]-scaled.jpg,,FALSE, +N1,60214,sortie-cb5fd276-2ab4-4c95-ac06-f09a359c6b78,https://biolit.fr/sorties/sortie-cb5fd276-2ab4-4c95-ac06-f09a359c6b78/,Salomé et Clotilde,,11/23/2017 0:00,9.0000000,12.0000000,43.411011000000,5.162399000000,,étang de berre,46440,observation-cb5fd276-2ab4-4c95-ac06-f09a359c6b78-6,https://biolit.fr/observations/observation-cb5fd276-2ab4-4c95-ac06-f09a359c6b78-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0146[1]-scaled.jpg,,FALSE, +N1,60214,sortie-cb5fd276-2ab4-4c95-ac06-f09a359c6b78,https://biolit.fr/sorties/sortie-cb5fd276-2ab4-4c95-ac06-f09a359c6b78/,Salomé et Clotilde,,11/23/2017 0:00,9.0000000,12.0000000,43.411011000000,5.162399000000,,étang de berre,46442,observation-cb5fd276-2ab4-4c95-ac06-f09a359c6b78-7,https://biolit.fr/observations/observation-cb5fd276-2ab4-4c95-ac06-f09a359c6b78-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0150[1]-scaled.jpg,,FALSE, +N1,60215,sortie-c26a5bdb-dbea-4234-bb88-effbfc046b43,https://biolit.fr/sorties/sortie-c26a5bdb-dbea-4234-bb88-effbfc046b43/,sedeck,,11/24/2017 0:00,10.0000000,12.0000000,43.426622,5.182204,,Etang de Berre,46444,observation-c26a5bdb-dbea-4234-bb88-effbfc046b43,https://biolit.fr/observations/observation-c26a5bdb-dbea-4234-bb88-effbfc046b43/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0119[1]-scaled.jpg,,FALSE, +N1,60215,sortie-c26a5bdb-dbea-4234-bb88-effbfc046b43,https://biolit.fr/sorties/sortie-c26a5bdb-dbea-4234-bb88-effbfc046b43/,sedeck,,11/24/2017 0:00,10.0000000,12.0000000,43.426622,5.182204,,Etang de Berre,46446,observation-c26a5bdb-dbea-4234-bb88-effbfc046b43-2,https://biolit.fr/observations/observation-c26a5bdb-dbea-4234-bb88-effbfc046b43-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0123[1]-scaled.jpg,,FALSE, +N1,60216,sortie-8c0447ba-feac-4797-a2a1-1578678c45f3,https://biolit.fr/sorties/sortie-8c0447ba-feac-4797-a2a1-1578678c45f3/,Phil,,9/22/2017 0:00,11.0:35,11.0:45,47.774628000000,-4.333377000000,,Penmarc'h - Finistère,46448,observation-8c0447ba-feac-4797-a2a1-1578678c45f3,https://biolit.fr/observations/observation-8c0447ba-feac-4797-a2a1-1578678c45f3/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080735.JPG,,TRUE, +N1,60216,sortie-8c0447ba-feac-4797-a2a1-1578678c45f3,https://biolit.fr/sorties/sortie-8c0447ba-feac-4797-a2a1-1578678c45f3/,Phil,,9/22/2017 0:00,11.0:35,11.0:45,47.774628000000,-4.333377000000,,Penmarc'h - Finistère,46450,observation-8c0447ba-feac-4797-a2a1-1578678c45f3-2,https://biolit.fr/observations/observation-8c0447ba-feac-4797-a2a1-1578678c45f3-2/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080743.JPG,,TRUE, +N1,60216,sortie-8c0447ba-feac-4797-a2a1-1578678c45f3,https://biolit.fr/sorties/sortie-8c0447ba-feac-4797-a2a1-1578678c45f3/,Phil,,9/22/2017 0:00,11.0:35,11.0:45,47.774628000000,-4.333377000000,,Penmarc'h - Finistère,46452,observation-8c0447ba-feac-4797-a2a1-1578678c45f3-3,https://biolit.fr/observations/observation-8c0447ba-feac-4797-a2a1-1578678c45f3-3/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080752.JPG,,TRUE, +N1,60216,sortie-8c0447ba-feac-4797-a2a1-1578678c45f3,https://biolit.fr/sorties/sortie-8c0447ba-feac-4797-a2a1-1578678c45f3/,Phil,,9/22/2017 0:00,11.0:35,11.0:45,47.774628000000,-4.333377000000,,Penmarc'h - Finistère,46454,observation-8c0447ba-feac-4797-a2a1-1578678c45f3-4,https://biolit.fr/observations/observation-8c0447ba-feac-4797-a2a1-1578678c45f3-4/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080753.JPG,,TRUE, +N1,60216,sortie-8c0447ba-feac-4797-a2a1-1578678c45f3,https://biolit.fr/sorties/sortie-8c0447ba-feac-4797-a2a1-1578678c45f3/,Phil,,9/22/2017 0:00,11.0:35,11.0:45,47.774628000000,-4.333377000000,,Penmarc'h - Finistère,46456,observation-8c0447ba-feac-4797-a2a1-1578678c45f3-5,https://biolit.fr/observations/observation-8c0447ba-feac-4797-a2a1-1578678c45f3-5/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080757.JPG,,TRUE, +N1,60216,sortie-8c0447ba-feac-4797-a2a1-1578678c45f3,https://biolit.fr/sorties/sortie-8c0447ba-feac-4797-a2a1-1578678c45f3/,Phil,,9/22/2017 0:00,11.0:35,11.0:45,47.774628000000,-4.333377000000,,Penmarc'h - Finistère,46458,observation-8c0447ba-feac-4797-a2a1-1578678c45f3-6,https://biolit.fr/observations/observation-8c0447ba-feac-4797-a2a1-1578678c45f3-6/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080789.JPG,,TRUE, +N1,60216,sortie-8c0447ba-feac-4797-a2a1-1578678c45f3,https://biolit.fr/sorties/sortie-8c0447ba-feac-4797-a2a1-1578678c45f3/,Phil,,9/22/2017 0:00,11.0:35,11.0:45,47.774628000000,-4.333377000000,,Penmarc'h - Finistère,46460,observation-8c0447ba-feac-4797-a2a1-1578678c45f3-7,https://biolit.fr/observations/observation-8c0447ba-feac-4797-a2a1-1578678c45f3-7/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080797.JPG,,TRUE, +N1,60216,sortie-8c0447ba-feac-4797-a2a1-1578678c45f3,https://biolit.fr/sorties/sortie-8c0447ba-feac-4797-a2a1-1578678c45f3/,Phil,,9/22/2017 0:00,11.0:35,11.0:45,47.774628000000,-4.333377000000,,Penmarc'h - Finistère,46462,observation-8c0447ba-feac-4797-a2a1-1578678c45f3-8,https://biolit.fr/observations/observation-8c0447ba-feac-4797-a2a1-1578678c45f3-8/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080798.JPG,,TRUE, +N1,60217,sortie-20869cf4-ebf5-4856-aa83-e1830c8111bd,https://biolit.fr/sorties/sortie-20869cf4-ebf5-4856-aa83-e1830c8111bd/,Phil,,11/04/2017,18.000005,18.0:15,47.803819000000,-4.374992000000,,Penmarc'h - Finistère,46464,observation-20869cf4-ebf5-4856-aa83-e1830c8111bd,https://biolit.fr/observations/observation-20869cf4-ebf5-4856-aa83-e1830c8111bd/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090316.JPG,,FALSE, +N1,60217,sortie-20869cf4-ebf5-4856-aa83-e1830c8111bd,https://biolit.fr/sorties/sortie-20869cf4-ebf5-4856-aa83-e1830c8111bd/,Phil,,11/04/2017,18.000005,18.0:15,47.803819000000,-4.374992000000,,Penmarc'h - Finistère,46466,observation-20869cf4-ebf5-4856-aa83-e1830c8111bd-2,https://biolit.fr/observations/observation-20869cf4-ebf5-4856-aa83-e1830c8111bd-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090286.JPG,,FALSE, +N1,60217,sortie-20869cf4-ebf5-4856-aa83-e1830c8111bd,https://biolit.fr/sorties/sortie-20869cf4-ebf5-4856-aa83-e1830c8111bd/,Phil,,11/04/2017,18.000005,18.0:15,47.803819000000,-4.374992000000,,Penmarc'h - Finistère,46468,observation-20869cf4-ebf5-4856-aa83-e1830c8111bd-3,https://biolit.fr/observations/observation-20869cf4-ebf5-4856-aa83-e1830c8111bd-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090296.JPG,,FALSE, +N1,60217,sortie-20869cf4-ebf5-4856-aa83-e1830c8111bd,https://biolit.fr/sorties/sortie-20869cf4-ebf5-4856-aa83-e1830c8111bd/,Phil,,11/04/2017,18.000005,18.0:15,47.803819000000,-4.374992000000,,Penmarc'h - Finistère,46470,observation-20869cf4-ebf5-4856-aa83-e1830c8111bd-4,https://biolit.fr/observations/observation-20869cf4-ebf5-4856-aa83-e1830c8111bd-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090312.JPG,,FALSE, +N1,60217,sortie-20869cf4-ebf5-4856-aa83-e1830c8111bd,https://biolit.fr/sorties/sortie-20869cf4-ebf5-4856-aa83-e1830c8111bd/,Phil,,11/04/2017,18.000005,18.0:15,47.803819000000,-4.374992000000,,Penmarc'h - Finistère,46472,observation-20869cf4-ebf5-4856-aa83-e1830c8111bd-5,https://biolit.fr/observations/observation-20869cf4-ebf5-4856-aa83-e1830c8111bd-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090314.JPG,,FALSE, +N1,60217,sortie-20869cf4-ebf5-4856-aa83-e1830c8111bd,https://biolit.fr/sorties/sortie-20869cf4-ebf5-4856-aa83-e1830c8111bd/,Phil,,11/04/2017,18.000005,18.0:15,47.803819000000,-4.374992000000,,Penmarc'h - Finistère,46474,observation-20869cf4-ebf5-4856-aa83-e1830c8111bd-6,https://biolit.fr/observations/observation-20869cf4-ebf5-4856-aa83-e1830c8111bd-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090320.JPG,,FALSE, +N1,60217,sortie-20869cf4-ebf5-4856-aa83-e1830c8111bd,https://biolit.fr/sorties/sortie-20869cf4-ebf5-4856-aa83-e1830c8111bd/,Phil,,11/04/2017,18.000005,18.0:15,47.803819000000,-4.374992000000,,Penmarc'h - Finistère,46476,observation-20869cf4-ebf5-4856-aa83-e1830c8111bd-7,https://biolit.fr/observations/observation-20869cf4-ebf5-4856-aa83-e1830c8111bd-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090326.JPG,,FALSE, +N1,60217,sortie-20869cf4-ebf5-4856-aa83-e1830c8111bd,https://biolit.fr/sorties/sortie-20869cf4-ebf5-4856-aa83-e1830c8111bd/,Phil,,11/04/2017,18.000005,18.0:15,47.803819000000,-4.374992000000,,Penmarc'h - Finistère,46478,observation-20869cf4-ebf5-4856-aa83-e1830c8111bd-8,https://biolit.fr/observations/observation-20869cf4-ebf5-4856-aa83-e1830c8111bd-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090323.JPG,,FALSE, +N1,60218,sortie-25201bdc-7ecf-4653-8d10-a45d0f57aa23,https://biolit.fr/sorties/sortie-25201bdc-7ecf-4653-8d10-a45d0f57aa23/,Phil,,11/11/2017,16.0:55,17.0000000,47.80050200000,-4.183497000000,,Loctudy - Finistère,46480,observation-25201bdc-7ecf-4653-8d10-a45d0f57aa23,https://biolit.fr/observations/observation-25201bdc-7ecf-4653-8d10-a45d0f57aa23/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090483.JPG,,FALSE, +N1,60218,sortie-25201bdc-7ecf-4653-8d10-a45d0f57aa23,https://biolit.fr/sorties/sortie-25201bdc-7ecf-4653-8d10-a45d0f57aa23/,Phil,,11/11/2017,16.0:55,17.0000000,47.80050200000,-4.183497000000,,Loctudy - Finistère,46482,observation-25201bdc-7ecf-4653-8d10-a45d0f57aa23-2,https://biolit.fr/observations/observation-25201bdc-7ecf-4653-8d10-a45d0f57aa23-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090481.JPG,,FALSE, +N1,60218,sortie-25201bdc-7ecf-4653-8d10-a45d0f57aa23,https://biolit.fr/sorties/sortie-25201bdc-7ecf-4653-8d10-a45d0f57aa23/,Phil,,11/11/2017,16.0:55,17.0000000,47.80050200000,-4.183497000000,,Loctudy - Finistère,46484,observation-25201bdc-7ecf-4653-8d10-a45d0f57aa23-3,https://biolit.fr/observations/observation-25201bdc-7ecf-4653-8d10-a45d0f57aa23-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090480.JPG,,FALSE, +N1,60218,sortie-25201bdc-7ecf-4653-8d10-a45d0f57aa23,https://biolit.fr/sorties/sortie-25201bdc-7ecf-4653-8d10-a45d0f57aa23/,Phil,,11/11/2017,16.0:55,17.0000000,47.80050200000,-4.183497000000,,Loctudy - Finistère,46486,observation-25201bdc-7ecf-4653-8d10-a45d0f57aa23-4,https://biolit.fr/observations/observation-25201bdc-7ecf-4653-8d10-a45d0f57aa23-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090479.JPG,,FALSE, +N1,60218,sortie-25201bdc-7ecf-4653-8d10-a45d0f57aa23,https://biolit.fr/sorties/sortie-25201bdc-7ecf-4653-8d10-a45d0f57aa23/,Phil,,11/11/2017,16.0:55,17.0000000,47.80050200000,-4.183497000000,,Loctudy - Finistère,46488,observation-25201bdc-7ecf-4653-8d10-a45d0f57aa23-5,https://biolit.fr/observations/observation-25201bdc-7ecf-4653-8d10-a45d0f57aa23-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090478.JPG,,FALSE, +N1,60219,sortie-dca38b70-e633-453e-afe8-130ad321efaa,https://biolit.fr/sorties/sortie-dca38b70-e633-453e-afe8-130ad321efaa/,Phil,,11/19/2017 0:00,12.0000000,12.0000000,47.892844000000,-3.967978000000,,La Forêt-Fouesnant - Finistère,46490,observation-dca38b70-e633-453e-afe8-130ad321efaa,https://biolit.fr/observations/observation-dca38b70-e633-453e-afe8-130ad321efaa/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171119_120747.jpg,,FALSE, +N1,60219,sortie-dca38b70-e633-453e-afe8-130ad321efaa,https://biolit.fr/sorties/sortie-dca38b70-e633-453e-afe8-130ad321efaa/,Phil,,11/19/2017 0:00,12.0000000,12.0000000,47.892844000000,-3.967978000000,,La Forêt-Fouesnant - Finistère,46492,observation-dca38b70-e633-453e-afe8-130ad321efaa-2,https://biolit.fr/observations/observation-dca38b70-e633-453e-afe8-130ad321efaa-2/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20171119_120909.jpg,,TRUE, +N1,60219,sortie-dca38b70-e633-453e-afe8-130ad321efaa,https://biolit.fr/sorties/sortie-dca38b70-e633-453e-afe8-130ad321efaa/,Phil,,11/19/2017 0:00,12.0000000,12.0000000,47.892844000000,-3.967978000000,,La Forêt-Fouesnant - Finistère,46494,observation-dca38b70-e633-453e-afe8-130ad321efaa-3,https://biolit.fr/observations/observation-dca38b70-e633-453e-afe8-130ad321efaa-3/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20171119_121027.jpg,,TRUE, +N1,60219,sortie-dca38b70-e633-453e-afe8-130ad321efaa,https://biolit.fr/sorties/sortie-dca38b70-e633-453e-afe8-130ad321efaa/,Phil,,11/19/2017 0:00,12.0000000,12.0000000,47.892844000000,-3.967978000000,,La Forêt-Fouesnant - Finistère,46496,observation-dca38b70-e633-453e-afe8-130ad321efaa-4,https://biolit.fr/observations/observation-dca38b70-e633-453e-afe8-130ad321efaa-4/,Laevicardium crassum,Bucarde de Norvège,,https://biolit.fr/wp-content/uploads/2023/07/20171119_120617.jpg,,TRUE, +N1,60220,sortie-12b46a2c-e596-4c1b-b476-e0e1fed78446,https://biolit.fr/sorties/sortie-12b46a2c-e596-4c1b-b476-e0e1fed78446/,Phil,,11/06/2017,12.0000000,12.000005,48.003779000000,-4.521466000000,,Plouhinec - Finistère,46498,observation-12b46a2c-e596-4c1b-b476-e0e1fed78446,https://biolit.fr/observations/observation-12b46a2c-e596-4c1b-b476-e0e1fed78446/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_120457.jpg,,FALSE, +N1,60220,sortie-12b46a2c-e596-4c1b-b476-e0e1fed78446,https://biolit.fr/sorties/sortie-12b46a2c-e596-4c1b-b476-e0e1fed78446/,Phil,,11/06/2017,12.0000000,12.000005,48.003779000000,-4.521466000000,,Plouhinec - Finistère,46500,observation-12b46a2c-e596-4c1b-b476-e0e1fed78446-2,https://biolit.fr/observations/observation-12b46a2c-e596-4c1b-b476-e0e1fed78446-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_120435.jpg,,FALSE, +N1,60220,sortie-12b46a2c-e596-4c1b-b476-e0e1fed78446,https://biolit.fr/sorties/sortie-12b46a2c-e596-4c1b-b476-e0e1fed78446/,Phil,,11/06/2017,12.0000000,12.000005,48.003779000000,-4.521466000000,,Plouhinec - Finistère,46502,observation-12b46a2c-e596-4c1b-b476-e0e1fed78446-3,https://biolit.fr/observations/observation-12b46a2c-e596-4c1b-b476-e0e1fed78446-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_120401.jpg,,FALSE, +N1,60220,sortie-12b46a2c-e596-4c1b-b476-e0e1fed78446,https://biolit.fr/sorties/sortie-12b46a2c-e596-4c1b-b476-e0e1fed78446/,Phil,,11/06/2017,12.0000000,12.000005,48.003779000000,-4.521466000000,,Plouhinec - Finistère,46504,observation-12b46a2c-e596-4c1b-b476-e0e1fed78446-4,https://biolit.fr/observations/observation-12b46a2c-e596-4c1b-b476-e0e1fed78446-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_120502.jpg,,FALSE, +N1,60220,sortie-12b46a2c-e596-4c1b-b476-e0e1fed78446,https://biolit.fr/sorties/sortie-12b46a2c-e596-4c1b-b476-e0e1fed78446/,Phil,,11/06/2017,12.0000000,12.000005,48.003779000000,-4.521466000000,,Plouhinec - Finistère,46506,observation-12b46a2c-e596-4c1b-b476-e0e1fed78446-5,https://biolit.fr/observations/observation-12b46a2c-e596-4c1b-b476-e0e1fed78446-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_120517.jpg,,FALSE, +N1,60221,sortie-dfa758ec-d75e-4131-873b-a94945dfb925,https://biolit.fr/sorties/sortie-dfa758ec-d75e-4131-873b-a94945dfb925/,Phil,,11/05/2017,13.0:15,13.0000000,47.799729000000,-4.178654000000,,Loctudy - Finistère,46508,observation-dfa758ec-d75e-4131-873b-a94945dfb925,https://biolit.fr/observations/observation-dfa758ec-d75e-4131-873b-a94945dfb925/,Eupolymnia nebulosa,Polymnie nébuleuse,,https://biolit.fr/wp-content/uploads/2023/07/P1090440.JPG,,TRUE, +N1,60221,sortie-dfa758ec-d75e-4131-873b-a94945dfb925,https://biolit.fr/sorties/sortie-dfa758ec-d75e-4131-873b-a94945dfb925/,Phil,,11/05/2017,13.0:15,13.0000000,47.799729000000,-4.178654000000,,Loctudy - Finistère,46510,observation-dfa758ec-d75e-4131-873b-a94945dfb925-2,https://biolit.fr/observations/observation-dfa758ec-d75e-4131-873b-a94945dfb925-2/,Eupolymnia nebulosa,Polymnie nébuleuse,,https://biolit.fr/wp-content/uploads/2023/07/P1090439.JPG,,TRUE, +N1,60221,sortie-dfa758ec-d75e-4131-873b-a94945dfb925,https://biolit.fr/sorties/sortie-dfa758ec-d75e-4131-873b-a94945dfb925/,Phil,,11/05/2017,13.0:15,13.0000000,47.799729000000,-4.178654000000,,Loctudy - Finistère,46512,observation-dfa758ec-d75e-4131-873b-a94945dfb925-3,https://biolit.fr/observations/observation-dfa758ec-d75e-4131-873b-a94945dfb925-3/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1090434.JPG,,TRUE, +N1,60221,sortie-dfa758ec-d75e-4131-873b-a94945dfb925,https://biolit.fr/sorties/sortie-dfa758ec-d75e-4131-873b-a94945dfb925/,Phil,,11/05/2017,13.0:15,13.0000000,47.799729000000,-4.178654000000,,Loctudy - Finistère,46514,observation-dfa758ec-d75e-4131-873b-a94945dfb925-4,https://biolit.fr/observations/observation-dfa758ec-d75e-4131-873b-a94945dfb925-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090437.JPG,,FALSE, +N1,60221,sortie-dfa758ec-d75e-4131-873b-a94945dfb925,https://biolit.fr/sorties/sortie-dfa758ec-d75e-4131-873b-a94945dfb925/,Phil,,11/05/2017,13.0:15,13.0000000,47.799729000000,-4.178654000000,,Loctudy - Finistère,46516,observation-dfa758ec-d75e-4131-873b-a94945dfb925-5,https://biolit.fr/observations/observation-dfa758ec-d75e-4131-873b-a94945dfb925-5/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/P1090436.JPG,,TRUE, +N1,60222,sortie-598aa368-3c50-429e-8cdb-ada5b95e0d81,https://biolit.fr/sorties/sortie-598aa368-3c50-429e-8cdb-ada5b95e0d81/,Phil,,11/21/2017 0:00,17.0000000,17.0:35,48.210131000000,-4.369253000000,,Telgruc sur Mer - Finistère,46518,observation-598aa368-3c50-429e-8cdb-ada5b95e0d81,https://biolit.fr/observations/observation-598aa368-3c50-429e-8cdb-ada5b95e0d81/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20171121_171818.jpg,,TRUE, +N1,60222,sortie-598aa368-3c50-429e-8cdb-ada5b95e0d81,https://biolit.fr/sorties/sortie-598aa368-3c50-429e-8cdb-ada5b95e0d81/,Phil,,11/21/2017 0:00,17.0000000,17.0:35,48.210131000000,-4.369253000000,,Telgruc sur Mer - Finistère,46520,observation-598aa368-3c50-429e-8cdb-ada5b95e0d81-2,https://biolit.fr/observations/observation-598aa368-3c50-429e-8cdb-ada5b95e0d81-2/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/20171121_172659.jpg,,TRUE, +N1,60222,sortie-598aa368-3c50-429e-8cdb-ada5b95e0d81,https://biolit.fr/sorties/sortie-598aa368-3c50-429e-8cdb-ada5b95e0d81/,Phil,,11/21/2017 0:00,17.0000000,17.0:35,48.210131000000,-4.369253000000,,Telgruc sur Mer - Finistère,46522,observation-598aa368-3c50-429e-8cdb-ada5b95e0d81-3,https://biolit.fr/observations/observation-598aa368-3c50-429e-8cdb-ada5b95e0d81-3/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20171121_172558.jpg,,TRUE, +N1,60222,sortie-598aa368-3c50-429e-8cdb-ada5b95e0d81,https://biolit.fr/sorties/sortie-598aa368-3c50-429e-8cdb-ada5b95e0d81/,Phil,,11/21/2017 0:00,17.0000000,17.0:35,48.210131000000,-4.369253000000,,Telgruc sur Mer - Finistère,46524,observation-598aa368-3c50-429e-8cdb-ada5b95e0d81-4,https://biolit.fr/observations/observation-598aa368-3c50-429e-8cdb-ada5b95e0d81-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171121_173050.jpg,,FALSE, +N1,60222,sortie-598aa368-3c50-429e-8cdb-ada5b95e0d81,https://biolit.fr/sorties/sortie-598aa368-3c50-429e-8cdb-ada5b95e0d81/,Phil,,11/21/2017 0:00,17.0000000,17.0:35,48.210131000000,-4.369253000000,,Telgruc sur Mer - Finistère,46526,observation-598aa368-3c50-429e-8cdb-ada5b95e0d81-5,https://biolit.fr/observations/observation-598aa368-3c50-429e-8cdb-ada5b95e0d81-5/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20171121_173400.jpg,,TRUE, +N1,60222,sortie-598aa368-3c50-429e-8cdb-ada5b95e0d81,https://biolit.fr/sorties/sortie-598aa368-3c50-429e-8cdb-ada5b95e0d81/,Phil,,11/21/2017 0:00,17.0000000,17.0:35,48.210131000000,-4.369253000000,,Telgruc sur Mer - Finistère,46528,observation-598aa368-3c50-429e-8cdb-ada5b95e0d81-6,https://biolit.fr/observations/observation-598aa368-3c50-429e-8cdb-ada5b95e0d81-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171121_173303.jpg,,FALSE, +N1,60223,sortie-f2a8f6cd-9804-482d-b03a-c7a68a88ebad,https://biolit.fr/sorties/sortie-f2a8f6cd-9804-482d-b03a-c7a68a88ebad/,Phil,,11/19/2017 0:00,11.0:55,12.000005,47.895068000000,-3.969592000000,,La Forêt-Fouesnant - Finistère,46530,observation-f2a8f6cd-9804-482d-b03a-c7a68a88ebad,https://biolit.fr/observations/observation-f2a8f6cd-9804-482d-b03a-c7a68a88ebad/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171119_120319.jpg,,FALSE, +N1,60223,sortie-f2a8f6cd-9804-482d-b03a-c7a68a88ebad,https://biolit.fr/sorties/sortie-f2a8f6cd-9804-482d-b03a-c7a68a88ebad/,Phil,,11/19/2017 0:00,11.0:55,12.000005,47.895068000000,-3.969592000000,,La Forêt-Fouesnant - Finistère,46532,observation-f2a8f6cd-9804-482d-b03a-c7a68a88ebad-2,https://biolit.fr/observations/observation-f2a8f6cd-9804-482d-b03a-c7a68a88ebad-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171119_120148.jpg,,FALSE, +N1,60223,sortie-f2a8f6cd-9804-482d-b03a-c7a68a88ebad,https://biolit.fr/sorties/sortie-f2a8f6cd-9804-482d-b03a-c7a68a88ebad/,Phil,,11/19/2017 0:00,11.0:55,12.000005,47.895068000000,-3.969592000000,,La Forêt-Fouesnant - Finistère,46534,observation-f2a8f6cd-9804-482d-b03a-c7a68a88ebad-3,https://biolit.fr/observations/observation-f2a8f6cd-9804-482d-b03a-c7a68a88ebad-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171119_115338.jpg,,FALSE, +N1,60223,sortie-f2a8f6cd-9804-482d-b03a-c7a68a88ebad,https://biolit.fr/sorties/sortie-f2a8f6cd-9804-482d-b03a-c7a68a88ebad/,Phil,,11/19/2017 0:00,11.0:55,12.000005,47.895068000000,-3.969592000000,,La Forêt-Fouesnant - Finistère,46536,observation-f2a8f6cd-9804-482d-b03a-c7a68a88ebad-4,https://biolit.fr/observations/observation-f2a8f6cd-9804-482d-b03a-c7a68a88ebad-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171119_115441.jpg,,FALSE, +N1,60223,sortie-f2a8f6cd-9804-482d-b03a-c7a68a88ebad,https://biolit.fr/sorties/sortie-f2a8f6cd-9804-482d-b03a-c7a68a88ebad/,Phil,,11/19/2017 0:00,11.0:55,12.000005,47.895068000000,-3.969592000000,,La Forêt-Fouesnant - Finistère,46538,observation-f2a8f6cd-9804-482d-b03a-c7a68a88ebad-5,https://biolit.fr/observations/observation-f2a8f6cd-9804-482d-b03a-c7a68a88ebad-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171119_115714.jpg,,FALSE, +N1,60223,sortie-f2a8f6cd-9804-482d-b03a-c7a68a88ebad,https://biolit.fr/sorties/sortie-f2a8f6cd-9804-482d-b03a-c7a68a88ebad/,Phil,,11/19/2017 0:00,11.0:55,12.000005,47.895068000000,-3.969592000000,,La Forêt-Fouesnant - Finistère,46540,observation-f2a8f6cd-9804-482d-b03a-c7a68a88ebad-6,https://biolit.fr/observations/observation-f2a8f6cd-9804-482d-b03a-c7a68a88ebad-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171119_115837.jpg,,FALSE, +N1,60223,sortie-f2a8f6cd-9804-482d-b03a-c7a68a88ebad,https://biolit.fr/sorties/sortie-f2a8f6cd-9804-482d-b03a-c7a68a88ebad/,Phil,,11/19/2017 0:00,11.0:55,12.000005,47.895068000000,-3.969592000000,,La Forêt-Fouesnant - Finistère,46542,observation-f2a8f6cd-9804-482d-b03a-c7a68a88ebad-7,https://biolit.fr/observations/observation-f2a8f6cd-9804-482d-b03a-c7a68a88ebad-7/,Halidrys siliquosa,Queue de poulain,,https://biolit.fr/wp-content/uploads/2023/07/20171119_115958.jpg,,TRUE, +N1,60224,sortie-f4c0709e-6468-41d8-a98b-3213fd04d6ca,https://biolit.fr/sorties/sortie-f4c0709e-6468-41d8-a98b-3213fd04d6ca/,Phil,,11/06/2017,12.0:55,13.0:15,48.004474000000,-4.520522000000,,Plouhinec - Finistère,46544,observation-f4c0709e-6468-41d8-a98b-3213fd04d6ca,https://biolit.fr/observations/observation-f4c0709e-6468-41d8-a98b-3213fd04d6ca/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20171106_130110.jpg,,TRUE, +N1,60224,sortie-f4c0709e-6468-41d8-a98b-3213fd04d6ca,https://biolit.fr/sorties/sortie-f4c0709e-6468-41d8-a98b-3213fd04d6ca/,Phil,,11/06/2017,12.0:55,13.0:15,48.004474000000,-4.520522000000,,Plouhinec - Finistère,46546,observation-f4c0709e-6468-41d8-a98b-3213fd04d6ca-2,https://biolit.fr/observations/observation-f4c0709e-6468-41d8-a98b-3213fd04d6ca-2/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20171106_131344.jpg,,TRUE, +N1,60224,sortie-f4c0709e-6468-41d8-a98b-3213fd04d6ca,https://biolit.fr/sorties/sortie-f4c0709e-6468-41d8-a98b-3213fd04d6ca/,Phil,,11/06/2017,12.0:55,13.0:15,48.004474000000,-4.520522000000,,Plouhinec - Finistère,46548,observation-f4c0709e-6468-41d8-a98b-3213fd04d6ca-3,https://biolit.fr/observations/observation-f4c0709e-6468-41d8-a98b-3213fd04d6ca-3/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20171106_131355.jpg,,TRUE, +N1,60224,sortie-f4c0709e-6468-41d8-a98b-3213fd04d6ca,https://biolit.fr/sorties/sortie-f4c0709e-6468-41d8-a98b-3213fd04d6ca/,Phil,,11/06/2017,12.0:55,13.0:15,48.004474000000,-4.520522000000,,Plouhinec - Finistère,46550,observation-f4c0709e-6468-41d8-a98b-3213fd04d6ca-4,https://biolit.fr/observations/observation-f4c0709e-6468-41d8-a98b-3213fd04d6ca-4/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20171106_131407.jpg,,TRUE, +N1,60224,sortie-f4c0709e-6468-41d8-a98b-3213fd04d6ca,https://biolit.fr/sorties/sortie-f4c0709e-6468-41d8-a98b-3213fd04d6ca/,Phil,,11/06/2017,12.0:55,13.0:15,48.004474000000,-4.520522000000,,Plouhinec - Finistère,46552,observation-f4c0709e-6468-41d8-a98b-3213fd04d6ca-5,https://biolit.fr/observations/observation-f4c0709e-6468-41d8-a98b-3213fd04d6ca-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_125434.jpg,,FALSE, +N1,60225,sortie-aa2b5367-7a11-474c-b651-75b746abf066,https://biolit.fr/sorties/sortie-aa2b5367-7a11-474c-b651-75b746abf066/,Phil,,11/04/2017,18.0000000,18.0:25,47.803417000000,-4.374766000000,,Penmarc'h - Finistère,46554,observation-aa2b5367-7a11-474c-b651-75b746abf066,https://biolit.fr/observations/observation-aa2b5367-7a11-474c-b651-75b746abf066/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090294.JPG,,FALSE, +N1,60225,sortie-aa2b5367-7a11-474c-b651-75b746abf066,https://biolit.fr/sorties/sortie-aa2b5367-7a11-474c-b651-75b746abf066/,Phil,,11/04/2017,18.0000000,18.0:25,47.803417000000,-4.374766000000,,Penmarc'h - Finistère,46556,observation-aa2b5367-7a11-474c-b651-75b746abf066-2,https://biolit.fr/observations/observation-aa2b5367-7a11-474c-b651-75b746abf066-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090345.JPG,,FALSE, +N1,60225,sortie-aa2b5367-7a11-474c-b651-75b746abf066,https://biolit.fr/sorties/sortie-aa2b5367-7a11-474c-b651-75b746abf066/,Phil,,11/04/2017,18.0000000,18.0:25,47.803417000000,-4.374766000000,,Penmarc'h - Finistère,46558,observation-aa2b5367-7a11-474c-b651-75b746abf066-3,https://biolit.fr/observations/observation-aa2b5367-7a11-474c-b651-75b746abf066-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090347.JPG,,FALSE, +N1,60225,sortie-aa2b5367-7a11-474c-b651-75b746abf066,https://biolit.fr/sorties/sortie-aa2b5367-7a11-474c-b651-75b746abf066/,Phil,,11/04/2017,18.0000000,18.0:25,47.803417000000,-4.374766000000,,Penmarc'h - Finistère,46560,observation-aa2b5367-7a11-474c-b651-75b746abf066-4,https://biolit.fr/observations/observation-aa2b5367-7a11-474c-b651-75b746abf066-4/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/P1090300.JPG,,TRUE, +N1,60225,sortie-aa2b5367-7a11-474c-b651-75b746abf066,https://biolit.fr/sorties/sortie-aa2b5367-7a11-474c-b651-75b746abf066/,Phil,,11/04/2017,18.0000000,18.0:25,47.803417000000,-4.374766000000,,Penmarc'h - Finistère,46562,observation-aa2b5367-7a11-474c-b651-75b746abf066-5,https://biolit.fr/observations/observation-aa2b5367-7a11-474c-b651-75b746abf066-5/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1090263.JPG,,TRUE, +N1,60225,sortie-aa2b5367-7a11-474c-b651-75b746abf066,https://biolit.fr/sorties/sortie-aa2b5367-7a11-474c-b651-75b746abf066/,Phil,,11/04/2017,18.0000000,18.0:25,47.803417000000,-4.374766000000,,Penmarc'h - Finistère,46564,observation-aa2b5367-7a11-474c-b651-75b746abf066-6,https://biolit.fr/observations/observation-aa2b5367-7a11-474c-b651-75b746abf066-6/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1090291.JPG,,TRUE, +N1,60225,sortie-aa2b5367-7a11-474c-b651-75b746abf066,https://biolit.fr/sorties/sortie-aa2b5367-7a11-474c-b651-75b746abf066/,Phil,,11/04/2017,18.0000000,18.0:25,47.803417000000,-4.374766000000,,Penmarc'h - Finistère,46566,observation-aa2b5367-7a11-474c-b651-75b746abf066-7,https://biolit.fr/observations/observation-aa2b5367-7a11-474c-b651-75b746abf066-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090290.JPG,,FALSE, +N1,60226,sortie-b4e94e20-ace0-4b56-a91a-4beec92e06f9,https://biolit.fr/sorties/sortie-b4e94e20-ace0-4b56-a91a-4beec92e06f9/,Phil,,11/05/2017,13.0000000,13.000005,47.797944000000,-4.17908500000,,Loctudy - Finistère,46568,observation-b4e94e20-ace0-4b56-a91a-4beec92e06f9,https://biolit.fr/observations/observation-b4e94e20-ace0-4b56-a91a-4beec92e06f9/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/P1090406.JPG,,TRUE, +N1,60226,sortie-b4e94e20-ace0-4b56-a91a-4beec92e06f9,https://biolit.fr/sorties/sortie-b4e94e20-ace0-4b56-a91a-4beec92e06f9/,Phil,,11/05/2017,13.0000000,13.000005,47.797944000000,-4.17908500000,,Loctudy - Finistère,46570,observation-b4e94e20-ace0-4b56-a91a-4beec92e06f9-2,https://biolit.fr/observations/observation-b4e94e20-ace0-4b56-a91a-4beec92e06f9-2/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1090408.JPG,,TRUE, +N1,60226,sortie-b4e94e20-ace0-4b56-a91a-4beec92e06f9,https://biolit.fr/sorties/sortie-b4e94e20-ace0-4b56-a91a-4beec92e06f9/,Phil,,11/05/2017,13.0000000,13.000005,47.797944000000,-4.17908500000,,Loctudy - Finistère,46572,observation-b4e94e20-ace0-4b56-a91a-4beec92e06f9-3,https://biolit.fr/observations/observation-b4e94e20-ace0-4b56-a91a-4beec92e06f9-3/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/P1090415.JPG,,TRUE, +N1,60226,sortie-b4e94e20-ace0-4b56-a91a-4beec92e06f9,https://biolit.fr/sorties/sortie-b4e94e20-ace0-4b56-a91a-4beec92e06f9/,Phil,,11/05/2017,13.0000000,13.000005,47.797944000000,-4.17908500000,,Loctudy - Finistère,46574,observation-b4e94e20-ace0-4b56-a91a-4beec92e06f9-4,https://biolit.fr/observations/observation-b4e94e20-ace0-4b56-a91a-4beec92e06f9-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090419.JPG,,FALSE, +N1,60226,sortie-b4e94e20-ace0-4b56-a91a-4beec92e06f9,https://biolit.fr/sorties/sortie-b4e94e20-ace0-4b56-a91a-4beec92e06f9/,Phil,,11/05/2017,13.0000000,13.000005,47.797944000000,-4.17908500000,,Loctudy - Finistère,46576,observation-b4e94e20-ace0-4b56-a91a-4beec92e06f9-5,https://biolit.fr/observations/observation-b4e94e20-ace0-4b56-a91a-4beec92e06f9-5/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/P1090421.JPG,,TRUE, +N1,60227,sortie-53f67c4f-91f1-4c50-8b9b-d6be492f92ab,https://biolit.fr/sorties/sortie-53f67c4f-91f1-4c50-8b9b-d6be492f92ab/,Phil,,11/06/2017,11.0000000,11.0:25,48.004187000000,-4.521874000000,,Plouhinec - Finistère,46578,observation-53f67c4f-91f1-4c50-8b9b-d6be492f92ab,https://biolit.fr/observations/observation-53f67c4f-91f1-4c50-8b9b-d6be492f92ab/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20171106_112355.jpg,,TRUE, +N1,60227,sortie-53f67c4f-91f1-4c50-8b9b-d6be492f92ab,https://biolit.fr/sorties/sortie-53f67c4f-91f1-4c50-8b9b-d6be492f92ab/,Phil,,11/06/2017,11.0000000,11.0:25,48.004187000000,-4.521874000000,,Plouhinec - Finistère,46580,observation-53f67c4f-91f1-4c50-8b9b-d6be492f92ab-2,https://biolit.fr/observations/observation-53f67c4f-91f1-4c50-8b9b-d6be492f92ab-2/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20171106_112341.jpg,,TRUE, +N1,60227,sortie-53f67c4f-91f1-4c50-8b9b-d6be492f92ab,https://biolit.fr/sorties/sortie-53f67c4f-91f1-4c50-8b9b-d6be492f92ab/,Phil,,11/06/2017,11.0000000,11.0:25,48.004187000000,-4.521874000000,,Plouhinec - Finistère,46582,observation-53f67c4f-91f1-4c50-8b9b-d6be492f92ab-3,https://biolit.fr/observations/observation-53f67c4f-91f1-4c50-8b9b-d6be492f92ab-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_112344(0).jpg,,FALSE, +N1,60227,sortie-53f67c4f-91f1-4c50-8b9b-d6be492f92ab,https://biolit.fr/sorties/sortie-53f67c4f-91f1-4c50-8b9b-d6be492f92ab/,Phil,,11/06/2017,11.0000000,11.0:25,48.004187000000,-4.521874000000,,Plouhinec - Finistère,46584,observation-53f67c4f-91f1-4c50-8b9b-d6be492f92ab-4,https://biolit.fr/observations/observation-53f67c4f-91f1-4c50-8b9b-d6be492f92ab-4/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20171106_112306.jpg,,TRUE, +N1,60227,sortie-53f67c4f-91f1-4c50-8b9b-d6be492f92ab,https://biolit.fr/sorties/sortie-53f67c4f-91f1-4c50-8b9b-d6be492f92ab/,Phil,,11/06/2017,11.0000000,11.0:25,48.004187000000,-4.521874000000,,Plouhinec - Finistère,46586,observation-53f67c4f-91f1-4c50-8b9b-d6be492f92ab-5,https://biolit.fr/observations/observation-53f67c4f-91f1-4c50-8b9b-d6be492f92ab-5/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20171106_112315.jpg,,TRUE, +N1,60228,sortie-12c9e6cc-fcc2-4380-a176-5a3da801d7a5,https://biolit.fr/sorties/sortie-12c9e6cc-fcc2-4380-a176-5a3da801d7a5/,Peace01,,11/10/2017,15.0000000,18.0000000,43.232203000000,5.350623000000,,Plage de la verrerie ,46588,observation-12c9e6cc-fcc2-4380-a176-5a3da801d7a5,https://biolit.fr/observations/observation-12c9e6cc-fcc2-4380-a176-5a3da801d7a5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171102_153118-scaled.jpg,,FALSE, +N1,60228,sortie-12c9e6cc-fcc2-4380-a176-5a3da801d7a5,https://biolit.fr/sorties/sortie-12c9e6cc-fcc2-4380-a176-5a3da801d7a5/,Peace01,,11/10/2017,15.0000000,18.0000000,43.232203000000,5.350623000000,,Plage de la verrerie ,46590,observation-12c9e6cc-fcc2-4380-a176-5a3da801d7a5-2,https://biolit.fr/observations/observation-12c9e6cc-fcc2-4380-a176-5a3da801d7a5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171102_160839-scaled.jpg,,FALSE, +N1,60228,sortie-12c9e6cc-fcc2-4380-a176-5a3da801d7a5,https://biolit.fr/sorties/sortie-12c9e6cc-fcc2-4380-a176-5a3da801d7a5/,Peace01,,11/10/2017,15.0000000,18.0000000,43.232203000000,5.350623000000,,Plage de la verrerie ,46592,observation-12c9e6cc-fcc2-4380-a176-5a3da801d7a5-3,https://biolit.fr/observations/observation-12c9e6cc-fcc2-4380-a176-5a3da801d7a5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171102_155908-scaled.jpg,,FALSE, +N1,60228,sortie-12c9e6cc-fcc2-4380-a176-5a3da801d7a5,https://biolit.fr/sorties/sortie-12c9e6cc-fcc2-4380-a176-5a3da801d7a5/,Peace01,,11/10/2017,15.0000000,18.0000000,43.232203000000,5.350623000000,,Plage de la verrerie ,46594,observation-12c9e6cc-fcc2-4380-a176-5a3da801d7a5-4,https://biolit.fr/observations/observation-12c9e6cc-fcc2-4380-a176-5a3da801d7a5-4/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/Snapchat-885932994.jpg,,TRUE, +N1,60228,sortie-12c9e6cc-fcc2-4380-a176-5a3da801d7a5,https://biolit.fr/sorties/sortie-12c9e6cc-fcc2-4380-a176-5a3da801d7a5/,Peace01,,11/10/2017,15.0000000,18.0000000,43.232203000000,5.350623000000,,Plage de la verrerie ,46596,observation-12c9e6cc-fcc2-4380-a176-5a3da801d7a5-5,https://biolit.fr/observations/observation-12c9e6cc-fcc2-4380-a176-5a3da801d7a5-5/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/Snapchat-1257325298.jpg,,TRUE, +N1,60229,sortie-65d0d7d8-cc47-4004-975c-3eb8a14514f8,https://biolit.fr/sorties/sortie-65d0d7d8-cc47-4004-975c-3eb8a14514f8/,Phil,,11/05/2017,13.0000000,13.0000000,47.79708600000,-4.177360000000,,Loctudy - Finistère,46598,observation-65d0d7d8-cc47-4004-975c-3eb8a14514f8,https://biolit.fr/observations/observation-65d0d7d8-cc47-4004-975c-3eb8a14514f8/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1090461.JPG,,TRUE, +N1,60229,sortie-65d0d7d8-cc47-4004-975c-3eb8a14514f8,https://biolit.fr/sorties/sortie-65d0d7d8-cc47-4004-975c-3eb8a14514f8/,Phil,,11/05/2017,13.0000000,13.0000000,47.79708600000,-4.177360000000,,Loctudy - Finistère,46600,observation-65d0d7d8-cc47-4004-975c-3eb8a14514f8-2,https://biolit.fr/observations/observation-65d0d7d8-cc47-4004-975c-3eb8a14514f8-2/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1090465.JPG,,TRUE, +N1,60229,sortie-65d0d7d8-cc47-4004-975c-3eb8a14514f8,https://biolit.fr/sorties/sortie-65d0d7d8-cc47-4004-975c-3eb8a14514f8/,Phil,,11/05/2017,13.0000000,13.0000000,47.79708600000,-4.177360000000,,Loctudy - Finistère,46602,observation-65d0d7d8-cc47-4004-975c-3eb8a14514f8-3,https://biolit.fr/observations/observation-65d0d7d8-cc47-4004-975c-3eb8a14514f8-3/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1090467.JPG,,TRUE, +N1,60230,sortie-106a4857-d255-4267-9f05-891a66cf92e2,https://biolit.fr/sorties/sortie-106a4857-d255-4267-9f05-891a66cf92e2/,Nicolas,,11/08/2017,14.0000000,16.0000000,46.147520000000,-1.211388000000,,Chef de baie,46604,observation-106a4857-d255-4267-9f05-891a66cf92e2,https://biolit.fr/observations/observation-106a4857-d255-4267-9f05-891a66cf92e2/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171108_143225-scaled.jpg,,TRUE, +N1,60230,sortie-106a4857-d255-4267-9f05-891a66cf92e2,https://biolit.fr/sorties/sortie-106a4857-d255-4267-9f05-891a66cf92e2/,Nicolas,,11/08/2017,14.0000000,16.0000000,46.147520000000,-1.211388000000,,Chef de baie,46606,observation-106a4857-d255-4267-9f05-891a66cf92e2-2,https://biolit.fr/observations/observation-106a4857-d255-4267-9f05-891a66cf92e2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171108_142122-scaled.jpg,,FALSE, +N1,60230,sortie-106a4857-d255-4267-9f05-891a66cf92e2,https://biolit.fr/sorties/sortie-106a4857-d255-4267-9f05-891a66cf92e2/,Nicolas,,11/08/2017,14.0000000,16.0000000,46.147520000000,-1.211388000000,,Chef de baie,46608,observation-106a4857-d255-4267-9f05-891a66cf92e2-3,https://biolit.fr/observations/observation-106a4857-d255-4267-9f05-891a66cf92e2-3/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171108_143956-scaled.jpg,,TRUE, +N1,60230,sortie-106a4857-d255-4267-9f05-891a66cf92e2,https://biolit.fr/sorties/sortie-106a4857-d255-4267-9f05-891a66cf92e2/,Nicolas,,11/08/2017,14.0000000,16.0000000,46.147520000000,-1.211388000000,,Chef de baie,46610,observation-106a4857-d255-4267-9f05-891a66cf92e2-4,https://biolit.fr/observations/observation-106a4857-d255-4267-9f05-891a66cf92e2-4/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171108_142924-scaled.jpg,,TRUE, +N1,60231,sortie-17b67a5c-10ea-4ad0-b317-fc98251aa63a,https://biolit.fr/sorties/sortie-17b67a5c-10ea-4ad0-b317-fc98251aa63a/,Nicolas,,11/08/2017,14.0000000,16.0000000,46.146628000000,-1.209103000000,,Chef de baie,46612,observation-17b67a5c-10ea-4ad0-b317-fc98251aa63a,https://biolit.fr/observations/observation-17b67a5c-10ea-4ad0-b317-fc98251aa63a/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171108_142736-scaled.jpg,,TRUE, +N1,60232,sortie-671d5203-7a43-4adf-b023-72d69d6414a1,https://biolit.fr/sorties/sortie-671d5203-7a43-4adf-b023-72d69d6414a1/,Nicolas,,11/08/2017,14.0000000,15.0000000,46.126027000000,-1.127199000000,,Plage d'Aytré,46614,observation-671d5203-7a43-4adf-b023-72d69d6414a1,https://biolit.fr/observations/observation-671d5203-7a43-4adf-b023-72d69d6414a1/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171004_100212_0-scaled.jpg,,TRUE, +N1,60232,sortie-671d5203-7a43-4adf-b023-72d69d6414a1,https://biolit.fr/sorties/sortie-671d5203-7a43-4adf-b023-72d69d6414a1/,Nicolas,,11/08/2017,14.0000000,15.0000000,46.126027000000,-1.127199000000,,Plage d'Aytré,46616,observation-671d5203-7a43-4adf-b023-72d69d6414a1-2,https://biolit.fr/observations/observation-671d5203-7a43-4adf-b023-72d69d6414a1-2/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171004_104641_0-scaled.jpg,,TRUE, +N1,60233,sortie-e7fa8231-bf12-4d36-ac50-2d5aedc494ab,https://biolit.fr/sorties/sortie-e7fa8231-bf12-4d36-ac50-2d5aedc494ab/,Phil,,11/06/2017,11.0:25,11.0:35,48.004770000000,-4.520601000000,,Plouhinec - Finistère,46618,observation-e7fa8231-bf12-4d36-ac50-2d5aedc494ab,https://biolit.fr/observations/observation-e7fa8231-bf12-4d36-ac50-2d5aedc494ab/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_112448.jpg,,FALSE, +N1,60233,sortie-e7fa8231-bf12-4d36-ac50-2d5aedc494ab,https://biolit.fr/sorties/sortie-e7fa8231-bf12-4d36-ac50-2d5aedc494ab/,Phil,,11/06/2017,11.0:25,11.0:35,48.004770000000,-4.520601000000,,Plouhinec - Finistère,46620,observation-e7fa8231-bf12-4d36-ac50-2d5aedc494ab-2,https://biolit.fr/observations/observation-e7fa8231-bf12-4d36-ac50-2d5aedc494ab-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_112501.jpg,,FALSE, +N1,60233,sortie-e7fa8231-bf12-4d36-ac50-2d5aedc494ab,https://biolit.fr/sorties/sortie-e7fa8231-bf12-4d36-ac50-2d5aedc494ab/,Phil,,11/06/2017,11.0:25,11.0:35,48.004770000000,-4.520601000000,,Plouhinec - Finistère,46622,observation-e7fa8231-bf12-4d36-ac50-2d5aedc494ab-3,https://biolit.fr/observations/observation-e7fa8231-bf12-4d36-ac50-2d5aedc494ab-3/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20171106_112701.jpg,,TRUE, +N1,60233,sortie-e7fa8231-bf12-4d36-ac50-2d5aedc494ab,https://biolit.fr/sorties/sortie-e7fa8231-bf12-4d36-ac50-2d5aedc494ab/,Phil,,11/06/2017,11.0:25,11.0:35,48.004770000000,-4.520601000000,,Plouhinec - Finistère,46624,observation-e7fa8231-bf12-4d36-ac50-2d5aedc494ab-4,https://biolit.fr/observations/observation-e7fa8231-bf12-4d36-ac50-2d5aedc494ab-4/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20171106_113717.jpg,,TRUE, +N1,60234,sortie-f918289e-0f0c-4383-a30a-e0a51019b419,https://biolit.fr/sorties/sortie-f918289e-0f0c-4383-a30a-e0a51019b419/,Observe la nature,,11/06/2017,15.0000000,16.0000000,43.39678300000,3.696496000000,,Port de Séte au Môle,46626,observation-f918289e-0f0c-4383-a30a-e0a51019b419,https://biolit.fr/observations/observation-f918289e-0f0c-4383-a30a-e0a51019b419/,Pinna nobilis,Grande nacre,,https://biolit.fr/wp-content/uploads/2023/07/DSC06939-scaled.jpg,,TRUE, +N1,60235,sortie-0c46febc-1540-4725-94df-1b660eaea6dc,https://biolit.fr/sorties/sortie-0c46febc-1540-4725-94df-1b660eaea6dc/,Observe la nature,,11/06/2017,14.000005,15.000005,43.396783000000,3.69632500000,,Port de Séte ,46628,observation-0c46febc-1540-4725-94df-1b660eaea6dc,https://biolit.fr/observations/observation-0c46febc-1540-4725-94df-1b660eaea6dc/,Pagurus prideaux,Gonfaron,,https://biolit.fr/wp-content/uploads/2023/07/pagure copie-scaled.jpg,,TRUE, +N1,60236,sortie-2b56da02-28d2-42c5-a60c-f0fafad80c07,https://biolit.fr/sorties/sortie-2b56da02-28d2-42c5-a60c-f0fafad80c07/,Phil,,11/04/2017,16.0:15,17.0:15,47.829488000000,-4.360802000000,,Penmarc'h - Finistère,46630,observation-2b56da02-28d2-42c5-a60c-f0fafad80c07,https://biolit.fr/observations/observation-2b56da02-28d2-42c5-a60c-f0fafad80c07/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/P1080873.JPG,,TRUE, +N1,60236,sortie-2b56da02-28d2-42c5-a60c-f0fafad80c07,https://biolit.fr/sorties/sortie-2b56da02-28d2-42c5-a60c-f0fafad80c07/,Phil,,11/04/2017,16.0:15,17.0:15,47.829488000000,-4.360802000000,,Penmarc'h - Finistère,46632,observation-2b56da02-28d2-42c5-a60c-f0fafad80c07-2,https://biolit.fr/observations/observation-2b56da02-28d2-42c5-a60c-f0fafad80c07-2/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/P1090050.JPG,,TRUE, +N1,60236,sortie-2b56da02-28d2-42c5-a60c-f0fafad80c07,https://biolit.fr/sorties/sortie-2b56da02-28d2-42c5-a60c-f0fafad80c07/,Phil,,11/04/2017,16.0:15,17.0:15,47.829488000000,-4.360802000000,,Penmarc'h - Finistère,46634,observation-2b56da02-28d2-42c5-a60c-f0fafad80c07-3,https://biolit.fr/observations/observation-2b56da02-28d2-42c5-a60c-f0fafad80c07-3/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/P1090093.JPG,,TRUE, +N1,60236,sortie-2b56da02-28d2-42c5-a60c-f0fafad80c07,https://biolit.fr/sorties/sortie-2b56da02-28d2-42c5-a60c-f0fafad80c07/,Phil,,11/04/2017,16.0:15,17.0:15,47.829488000000,-4.360802000000,,Penmarc'h - Finistère,46636,observation-2b56da02-28d2-42c5-a60c-f0fafad80c07-4,https://biolit.fr/observations/observation-2b56da02-28d2-42c5-a60c-f0fafad80c07-4/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/P1090126.JPG,,TRUE, +N1,60236,sortie-2b56da02-28d2-42c5-a60c-f0fafad80c07,https://biolit.fr/sorties/sortie-2b56da02-28d2-42c5-a60c-f0fafad80c07/,Phil,,11/04/2017,16.0:15,17.0:15,47.829488000000,-4.360802000000,,Penmarc'h - Finistère,46638,observation-2b56da02-28d2-42c5-a60c-f0fafad80c07-5,https://biolit.fr/observations/observation-2b56da02-28d2-42c5-a60c-f0fafad80c07-5/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/P1090167.JPG,,TRUE, +N1,60236,sortie-2b56da02-28d2-42c5-a60c-f0fafad80c07,https://biolit.fr/sorties/sortie-2b56da02-28d2-42c5-a60c-f0fafad80c07/,Phil,,11/04/2017,16.0:15,17.0:15,47.829488000000,-4.360802000000,,Penmarc'h - Finistère,46640,observation-2b56da02-28d2-42c5-a60c-f0fafad80c07-6,https://biolit.fr/observations/observation-2b56da02-28d2-42c5-a60c-f0fafad80c07-6/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/P1090189.JPG,,TRUE, +N1,60236,sortie-2b56da02-28d2-42c5-a60c-f0fafad80c07,https://biolit.fr/sorties/sortie-2b56da02-28d2-42c5-a60c-f0fafad80c07/,Phil,,11/04/2017,16.0:15,17.0:15,47.829488000000,-4.360802000000,,Penmarc'h - Finistère,46642,observation-2b56da02-28d2-42c5-a60c-f0fafad80c07-7,https://biolit.fr/observations/observation-2b56da02-28d2-42c5-a60c-f0fafad80c07-7/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/P1090192.JPG,,TRUE, +N1,60237,sortie-28a9a09e-6eb3-47bf-86ca-394277174660,https://biolit.fr/sorties/sortie-28a9a09e-6eb3-47bf-86ca-394277174660/,Noëlla M,,11/03/2017,13.0000000,13.0:15,43.284262000000,6.595036000000,,Plage de Grimaud ,46644,observation-28a9a09e-6eb3-47bf-86ca-394277174660,https://biolit.fr/observations/observation-28a9a09e-6eb3-47bf-86ca-394277174660/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171103_132158-min-scaled.jpg,,TRUE, +N1,60237,sortie-28a9a09e-6eb3-47bf-86ca-394277174660,https://biolit.fr/sorties/sortie-28a9a09e-6eb3-47bf-86ca-394277174660/,Noëlla M,,11/03/2017,13.0000000,13.0:15,43.284262000000,6.595036000000,,Plage de Grimaud ,46646,observation-28a9a09e-6eb3-47bf-86ca-394277174660-2,https://biolit.fr/observations/observation-28a9a09e-6eb3-47bf-86ca-394277174660-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171103_132216-min-scaled.jpg,,FALSE, +N1,60237,sortie-28a9a09e-6eb3-47bf-86ca-394277174660,https://biolit.fr/sorties/sortie-28a9a09e-6eb3-47bf-86ca-394277174660/,Noëlla M,,11/03/2017,13.0000000,13.0:15,43.284262000000,6.595036000000,,Plage de Grimaud ,46648,observation-28a9a09e-6eb3-47bf-86ca-394277174660-3,https://biolit.fr/observations/observation-28a9a09e-6eb3-47bf-86ca-394277174660-3/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171103_132248-min-scaled.jpg,,TRUE, +N1,60237,sortie-28a9a09e-6eb3-47bf-86ca-394277174660,https://biolit.fr/sorties/sortie-28a9a09e-6eb3-47bf-86ca-394277174660/,Noëlla M,,11/03/2017,13.0000000,13.0:15,43.284262000000,6.595036000000,,Plage de Grimaud ,46650,observation-28a9a09e-6eb3-47bf-86ca-394277174660-4,https://biolit.fr/observations/observation-28a9a09e-6eb3-47bf-86ca-394277174660-4/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171103_132258-min-scaled.jpg,,TRUE, +N1,60237,sortie-28a9a09e-6eb3-47bf-86ca-394277174660,https://biolit.fr/sorties/sortie-28a9a09e-6eb3-47bf-86ca-394277174660/,Noëlla M,,11/03/2017,13.0000000,13.0:15,43.284262000000,6.595036000000,,Plage de Grimaud ,46652,observation-28a9a09e-6eb3-47bf-86ca-394277174660-5,https://biolit.fr/observations/observation-28a9a09e-6eb3-47bf-86ca-394277174660-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171103_132328-min-scaled.jpg,,FALSE, +N1,60238,sortie-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f,https://biolit.fr/sorties/sortie-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f/,Phil,,11/05/2017,12.0:55,13.0000000,47.796987000000,-4.17760300000,,Loctudy - Finistère,46654,observation-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f,https://biolit.fr/observations/observation-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/P1090404.JPG,,TRUE, +N1,60238,sortie-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f,https://biolit.fr/sorties/sortie-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f/,Phil,,11/05/2017,12.0:55,13.0000000,47.796987000000,-4.17760300000,,Loctudy - Finistère,46656,observation-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f-2,https://biolit.fr/observations/observation-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f-2/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/P1090386.JPG,,TRUE, +N1,60238,sortie-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f,https://biolit.fr/sorties/sortie-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f/,Phil,,11/05/2017,12.0:55,13.0000000,47.796987000000,-4.17760300000,,Loctudy - Finistère,46658,observation-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f-3,https://biolit.fr/observations/observation-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f-3/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/P1090394.JPG,,TRUE, +N1,60238,sortie-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f,https://biolit.fr/sorties/sortie-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f/,Phil,,11/05/2017,12.0:55,13.0000000,47.796987000000,-4.17760300000,,Loctudy - Finistère,46660,observation-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f-4,https://biolit.fr/observations/observation-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f-4/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/P1090397.JPG,,TRUE, +N1,60238,sortie-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f,https://biolit.fr/sorties/sortie-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f/,Phil,,11/05/2017,12.0:55,13.0000000,47.796987000000,-4.17760300000,,Loctudy - Finistère,46662,observation-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f-5,https://biolit.fr/observations/observation-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f-5/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/P1090398.JPG,,TRUE, +N1,60238,sortie-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f,https://biolit.fr/sorties/sortie-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f/,Phil,,11/05/2017,12.0:55,13.0000000,47.796987000000,-4.17760300000,,Loctudy - Finistère,46664,observation-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f-6,https://biolit.fr/observations/observation-8fccf712-d0cd-433d-80f9-f6c6e7a5c81f-6/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/P1090401.JPG,,TRUE, +N1,60239,sortie-4f708f54-9d3b-4827-b0d5-69e633d472c4,https://biolit.fr/sorties/sortie-4f708f54-9d3b-4827-b0d5-69e633d472c4/,LucileA,,11/06/2017,14.0:15,17.0000000,48.62258200000,-2.205565000000,,Ilôts de la Colombière,46666,observation-4f708f54-9d3b-4827-b0d5-69e633d472c4,https://biolit.fr/observations/observation-4f708f54-9d3b-4827-b0d5-69e633d472c4/,Tethya citrina,Orange de mer de Manche Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7843-scaled.jpg,,TRUE, +N1,60240,sortie-eeb9de60-aa1b-48f6-b65d-6c523ffcdd5d,https://biolit.fr/sorties/sortie-eeb9de60-aa1b-48f6-b65d-6c523ffcdd5d/,LucileA,,11/07/2017,9.0000000,11.0000000,47.484829000000,-3.099170000000,,Plage du Porigo,46668,observation-eeb9de60-aa1b-48f6-b65d-6c523ffcdd5d,https://biolit.fr/observations/observation-eeb9de60-aa1b-48f6-b65d-6c523ffcdd5d/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7810-scaled.jpg,,FALSE, +N1,60240,sortie-eeb9de60-aa1b-48f6-b65d-6c523ffcdd5d,https://biolit.fr/sorties/sortie-eeb9de60-aa1b-48f6-b65d-6c523ffcdd5d/,LucileA,,11/07/2017,9.0000000,11.0000000,47.484829000000,-3.099170000000,,Plage du Porigo,46670,observation-eeb9de60-aa1b-48f6-b65d-6c523ffcdd5d-2,https://biolit.fr/observations/observation-eeb9de60-aa1b-48f6-b65d-6c523ffcdd5d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7816-scaled.jpg,,FALSE, +N1,60240,sortie-eeb9de60-aa1b-48f6-b65d-6c523ffcdd5d,https://biolit.fr/sorties/sortie-eeb9de60-aa1b-48f6-b65d-6c523ffcdd5d/,LucileA,,11/07/2017,9.0000000,11.0000000,47.484829000000,-3.099170000000,,Plage du Porigo,46672,observation-eeb9de60-aa1b-48f6-b65d-6c523ffcdd5d-3,https://biolit.fr/observations/observation-eeb9de60-aa1b-48f6-b65d-6c523ffcdd5d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7817-scaled.jpg,,FALSE, +N1,60241,sortie-3dd84d2a-b9a9-4b48-bcfd-e6788f2f1d21,https://biolit.fr/sorties/sortie-3dd84d2a-b9a9-4b48-bcfd-e6788f2f1d21/,EMMAB,,10/26/2017 0:00,15.0000000,17.0000000,43.330092000000,5.210348000000,,petit mejean,46674,observation-3dd84d2a-b9a9-4b48-bcfd-e6788f2f1d21,https://biolit.fr/observations/observation-3dd84d2a-b9a9-4b48-bcfd-e6788f2f1d21/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171102_003.jpg,,FALSE, +N1,60241,sortie-3dd84d2a-b9a9-4b48-bcfd-e6788f2f1d21,https://biolit.fr/sorties/sortie-3dd84d2a-b9a9-4b48-bcfd-e6788f2f1d21/,EMMAB,,10/26/2017 0:00,15.0000000,17.0000000,43.330092000000,5.210348000000,,petit mejean,46676,observation-3dd84d2a-b9a9-4b48-bcfd-e6788f2f1d21-2,https://biolit.fr/observations/observation-3dd84d2a-b9a9-4b48-bcfd-e6788f2f1d21-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171102_006.jpg,,FALSE, +N1,60242,sortie-04973621-d4a5-4d5b-8a46-2e4152f05c5f,https://biolit.fr/sorties/sortie-04973621-d4a5-4d5b-8a46-2e4152f05c5f/,Phil,,11/06/2017,11.0:25,11.0000000,48.003923000000,-4.521477000000,,Plouhinec - Finistère,46678,observation-04973621-d4a5-4d5b-8a46-2e4152f05c5f,https://biolit.fr/observations/observation-04973621-d4a5-4d5b-8a46-2e4152f05c5f/,Gaidropsarus mediterraneus,Motelle à trois barbillons,,https://biolit.fr/wp-content/uploads/2023/07/20171106_112649.jpg,,TRUE, +N1,60242,sortie-04973621-d4a5-4d5b-8a46-2e4152f05c5f,https://biolit.fr/sorties/sortie-04973621-d4a5-4d5b-8a46-2e4152f05c5f/,Phil,,11/06/2017,11.0:25,11.0000000,48.003923000000,-4.521477000000,,Plouhinec - Finistère,46680,observation-04973621-d4a5-4d5b-8a46-2e4152f05c5f-2,https://biolit.fr/observations/observation-04973621-d4a5-4d5b-8a46-2e4152f05c5f-2/,Gaidropsarus mediterraneus,Motelle à trois barbillons,,https://biolit.fr/wp-content/uploads/2023/07/20171106_112757(0).jpg,,TRUE, +N1,60242,sortie-04973621-d4a5-4d5b-8a46-2e4152f05c5f,https://biolit.fr/sorties/sortie-04973621-d4a5-4d5b-8a46-2e4152f05c5f/,Phil,,11/06/2017,11.0:25,11.0000000,48.003923000000,-4.521477000000,,Plouhinec - Finistère,46682,observation-04973621-d4a5-4d5b-8a46-2e4152f05c5f-3,https://biolit.fr/observations/observation-04973621-d4a5-4d5b-8a46-2e4152f05c5f-3/,Gaidropsarus mediterraneus,Motelle à trois barbillons,,https://biolit.fr/wp-content/uploads/2023/07/20171106_112747.jpg,,TRUE, +N1,60242,sortie-04973621-d4a5-4d5b-8a46-2e4152f05c5f,https://biolit.fr/sorties/sortie-04973621-d4a5-4d5b-8a46-2e4152f05c5f/,Phil,,11/06/2017,11.0:25,11.0000000,48.003923000000,-4.521477000000,,Plouhinec - Finistère,46684,observation-04973621-d4a5-4d5b-8a46-2e4152f05c5f-4,https://biolit.fr/observations/observation-04973621-d4a5-4d5b-8a46-2e4152f05c5f-4/,Gaidropsarus mediterraneus,Motelle à trois barbillons,,https://biolit.fr/wp-content/uploads/2023/07/20171106_112739.jpg,,TRUE, +N1,60243,sortie-68916992-964e-41df-8110-64ee6b0d42dd,https://biolit.fr/sorties/sortie-68916992-964e-41df-8110-64ee6b0d42dd/,Phil,,11/04/2017,18.0000000,18.000005,47.803445000000,-4.374820000000,,Penmarc'h - Finistère,46686,observation-68916992-964e-41df-8110-64ee6b0d42dd,https://biolit.fr/observations/observation-68916992-964e-41df-8110-64ee6b0d42dd/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090280.JPG,,FALSE, +N1,60243,sortie-68916992-964e-41df-8110-64ee6b0d42dd,https://biolit.fr/sorties/sortie-68916992-964e-41df-8110-64ee6b0d42dd/,Phil,,11/04/2017,18.0000000,18.000005,47.803445000000,-4.374820000000,,Penmarc'h - Finistère,46688,observation-68916992-964e-41df-8110-64ee6b0d42dd-2,https://biolit.fr/observations/observation-68916992-964e-41df-8110-64ee6b0d42dd-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090283.JPG,,FALSE, +N1,60243,sortie-68916992-964e-41df-8110-64ee6b0d42dd,https://biolit.fr/sorties/sortie-68916992-964e-41df-8110-64ee6b0d42dd/,Phil,,11/04/2017,18.0000000,18.000005,47.803445000000,-4.374820000000,,Penmarc'h - Finistère,46690,observation-68916992-964e-41df-8110-64ee6b0d42dd-3,https://biolit.fr/observations/observation-68916992-964e-41df-8110-64ee6b0d42dd-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090277.JPG,,FALSE, +N1,60243,sortie-68916992-964e-41df-8110-64ee6b0d42dd,https://biolit.fr/sorties/sortie-68916992-964e-41df-8110-64ee6b0d42dd/,Phil,,11/04/2017,18.0000000,18.000005,47.803445000000,-4.374820000000,,Penmarc'h - Finistère,46692,observation-68916992-964e-41df-8110-64ee6b0d42dd-4,https://biolit.fr/observations/observation-68916992-964e-41df-8110-64ee6b0d42dd-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090272.JPG,,FALSE, +N1,60243,sortie-68916992-964e-41df-8110-64ee6b0d42dd,https://biolit.fr/sorties/sortie-68916992-964e-41df-8110-64ee6b0d42dd/,Phil,,11/04/2017,18.0000000,18.000005,47.803445000000,-4.374820000000,,Penmarc'h - Finistère,46694,observation-68916992-964e-41df-8110-64ee6b0d42dd-5,https://biolit.fr/observations/observation-68916992-964e-41df-8110-64ee6b0d42dd-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090269.JPG,,FALSE, +N1,60244,sortie-4b7acf82-90d1-4e06-890a-97497d346039,https://biolit.fr/sorties/sortie-4b7acf82-90d1-4e06-890a-97497d346039/,Millie,,10/20/2017 0:00,12.0000000,15.0000000,43.272962000000,5.362237000000,,plage des prophètes,46696,observation-4b7acf82-90d1-4e06-890a-97497d346039,https://biolit.fr/observations/observation-4b7acf82-90d1-4e06-890a-97497d346039/,,,,https://biolit.fr/wp-content/uploads/2023/07/1109-scaled.jpg,,FALSE, +N1,60244,sortie-4b7acf82-90d1-4e06-890a-97497d346039,https://biolit.fr/sorties/sortie-4b7acf82-90d1-4e06-890a-97497d346039/,Millie,,10/20/2017 0:00,12.0000000,15.0000000,43.272962000000,5.362237000000,,plage des prophètes,46698,observation-4b7acf82-90d1-4e06-890a-97497d346039-2,https://biolit.fr/observations/observation-4b7acf82-90d1-4e06-890a-97497d346039-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/1114-scaled.jpg,,FALSE, +N1,60244,sortie-4b7acf82-90d1-4e06-890a-97497d346039,https://biolit.fr/sorties/sortie-4b7acf82-90d1-4e06-890a-97497d346039/,Millie,,10/20/2017 0:00,12.0000000,15.0000000,43.272962000000,5.362237000000,,plage des prophètes,46700,observation-4b7acf82-90d1-4e06-890a-97497d346039-3,https://biolit.fr/observations/observation-4b7acf82-90d1-4e06-890a-97497d346039-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/1115-scaled.jpg,,FALSE, +N1,60244,sortie-4b7acf82-90d1-4e06-890a-97497d346039,https://biolit.fr/sorties/sortie-4b7acf82-90d1-4e06-890a-97497d346039/,Millie,,10/20/2017 0:00,12.0000000,15.0000000,43.272962000000,5.362237000000,,plage des prophètes,46702,observation-4b7acf82-90d1-4e06-890a-97497d346039-4,https://biolit.fr/observations/observation-4b7acf82-90d1-4e06-890a-97497d346039-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/1120-scaled.jpg,,FALSE, +N1,60244,sortie-4b7acf82-90d1-4e06-890a-97497d346039,https://biolit.fr/sorties/sortie-4b7acf82-90d1-4e06-890a-97497d346039/,Millie,,10/20/2017 0:00,12.0000000,15.0000000,43.272962000000,5.362237000000,,plage des prophètes,46704,observation-4b7acf82-90d1-4e06-890a-97497d346039-5,https://biolit.fr/observations/observation-4b7acf82-90d1-4e06-890a-97497d346039-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/1126-scaled.jpg,,FALSE, +N1,60244,sortie-4b7acf82-90d1-4e06-890a-97497d346039,https://biolit.fr/sorties/sortie-4b7acf82-90d1-4e06-890a-97497d346039/,Millie,,10/20/2017 0:00,12.0000000,15.0000000,43.272962000000,5.362237000000,,plage des prophètes,46706,observation-4b7acf82-90d1-4e06-890a-97497d346039-6,https://biolit.fr/observations/observation-4b7acf82-90d1-4e06-890a-97497d346039-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/1119-scaled.jpg,,FALSE, +N1,60245,sortie-f5b04d1b-5344-43f8-807c-02472d3f7f05,https://biolit.fr/sorties/sortie-f5b04d1b-5344-43f8-807c-02472d3f7f05/,Phil,,11/04/2017,17.0000000,17.0000000,47.829404000000,-4.362733000000,,Penmarc'h - Finistère,46708,observation-f5b04d1b-5344-43f8-807c-02472d3f7f05,https://biolit.fr/observations/observation-f5b04d1b-5344-43f8-807c-02472d3f7f05/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090221.JPG,,FALSE, +N1,60245,sortie-f5b04d1b-5344-43f8-807c-02472d3f7f05,https://biolit.fr/sorties/sortie-f5b04d1b-5344-43f8-807c-02472d3f7f05/,Phil,,11/04/2017,17.0000000,17.0000000,47.829404000000,-4.362733000000,,Penmarc'h - Finistère,46710,observation-f5b04d1b-5344-43f8-807c-02472d3f7f05-2,https://biolit.fr/observations/observation-f5b04d1b-5344-43f8-807c-02472d3f7f05-2/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1090220.JPG,,TRUE, +N1,60245,sortie-f5b04d1b-5344-43f8-807c-02472d3f7f05,https://biolit.fr/sorties/sortie-f5b04d1b-5344-43f8-807c-02472d3f7f05/,Phil,,11/04/2017,17.0000000,17.0000000,47.829404000000,-4.362733000000,,Penmarc'h - Finistère,46712,observation-f5b04d1b-5344-43f8-807c-02472d3f7f05-3,https://biolit.fr/observations/observation-f5b04d1b-5344-43f8-807c-02472d3f7f05-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090223.JPG,,FALSE, +N1,60245,sortie-f5b04d1b-5344-43f8-807c-02472d3f7f05,https://biolit.fr/sorties/sortie-f5b04d1b-5344-43f8-807c-02472d3f7f05/,Phil,,11/04/2017,17.0000000,17.0000000,47.829404000000,-4.362733000000,,Penmarc'h - Finistère,46714,observation-f5b04d1b-5344-43f8-807c-02472d3f7f05-4,https://biolit.fr/observations/observation-f5b04d1b-5344-43f8-807c-02472d3f7f05-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090217.JPG,,FALSE, +N1,60246,sortie-8426651c-2782-4861-8ab3-4ec420ce9026,https://biolit.fr/sorties/sortie-8426651c-2782-4861-8ab3-4ec420ce9026/,Phil,,11/04/2017,17.0:55,18.0000000,47.804216000000,-4.374809000000,,Penmarc'h - Finistère,46716,observation-8426651c-2782-4861-8ab3-4ec420ce9026,https://biolit.fr/observations/observation-8426651c-2782-4861-8ab3-4ec420ce9026/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/P1090252.JPG,,TRUE, +N1,60246,sortie-8426651c-2782-4861-8ab3-4ec420ce9026,https://biolit.fr/sorties/sortie-8426651c-2782-4861-8ab3-4ec420ce9026/,Phil,,11/04/2017,17.0:55,18.0000000,47.804216000000,-4.374809000000,,Penmarc'h - Finistère,46718,observation-8426651c-2782-4861-8ab3-4ec420ce9026-2,https://biolit.fr/observations/observation-8426651c-2782-4861-8ab3-4ec420ce9026-2/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/P1090257.JPG,,TRUE, +N1,60246,sortie-8426651c-2782-4861-8ab3-4ec420ce9026,https://biolit.fr/sorties/sortie-8426651c-2782-4861-8ab3-4ec420ce9026/,Phil,,11/04/2017,17.0:55,18.0000000,47.804216000000,-4.374809000000,,Penmarc'h - Finistère,46720,observation-8426651c-2782-4861-8ab3-4ec420ce9026-3,https://biolit.fr/observations/observation-8426651c-2782-4861-8ab3-4ec420ce9026-3/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/P1090259.JPG,,TRUE, +N1,60247,sortie-288f6cdd-6f17-4080-9226-526d6c8d7335,https://biolit.fr/sorties/sortie-288f6cdd-6f17-4080-9226-526d6c8d7335/,Millie,,10/20/2017 0:00,11.0000000,17.0000000,43.294261000000,5.359605000000,,plage prado,46722,observation-288f6cdd-6f17-4080-9226-526d6c8d7335,https://biolit.fr/observations/observation-288f6cdd-6f17-4080-9226-526d6c8d7335/,Suaeda vera,Soude ligneuse,,https://biolit.fr/wp-content/uploads/2023/07/22833263_1772953242747371_1361430704_o.jpg,,TRUE, +N1,60247,sortie-288f6cdd-6f17-4080-9226-526d6c8d7335,https://biolit.fr/sorties/sortie-288f6cdd-6f17-4080-9226-526d6c8d7335/,Millie,,10/20/2017 0:00,11.0000000,17.0000000,43.294261000000,5.359605000000,,plage prado,46724,observation-288f6cdd-6f17-4080-9226-526d6c8d7335-2,https://biolit.fr/observations/observation-288f6cdd-6f17-4080-9226-526d6c8d7335-2/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/22833722_1772953186080710_743799054_o.jpg,,TRUE, +N1,60247,sortie-288f6cdd-6f17-4080-9226-526d6c8d7335,https://biolit.fr/sorties/sortie-288f6cdd-6f17-4080-9226-526d6c8d7335/,Millie,,10/20/2017 0:00,11.0000000,17.0000000,43.294261000000,5.359605000000,,plage prado,46726,observation-288f6cdd-6f17-4080-9226-526d6c8d7335-3,https://biolit.fr/observations/observation-288f6cdd-6f17-4080-9226-526d6c8d7335-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/22850391_1772953132747382_951611749_o.jpg,,FALSE, +N1,60247,sortie-288f6cdd-6f17-4080-9226-526d6c8d7335,https://biolit.fr/sorties/sortie-288f6cdd-6f17-4080-9226-526d6c8d7335/,Millie,,10/20/2017 0:00,11.0000000,17.0000000,43.294261000000,5.359605000000,,plage prado,46728,observation-288f6cdd-6f17-4080-9226-526d6c8d7335-4,https://biolit.fr/observations/observation-288f6cdd-6f17-4080-9226-526d6c8d7335-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/22850500_1772953219414040_1829766786_o.jpg,,FALSE, +N1,60247,sortie-288f6cdd-6f17-4080-9226-526d6c8d7335,https://biolit.fr/sorties/sortie-288f6cdd-6f17-4080-9226-526d6c8d7335/,Millie,,10/20/2017 0:00,11.0000000,17.0000000,43.294261000000,5.359605000000,,plage prado,46730,observation-288f6cdd-6f17-4080-9226-526d6c8d7335-5,https://biolit.fr/observations/observation-288f6cdd-6f17-4080-9226-526d6c8d7335-5/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/22882280_1772953139414048_1510390754_o.jpg,,TRUE, +N1,60247,sortie-288f6cdd-6f17-4080-9226-526d6c8d7335,https://biolit.fr/sorties/sortie-288f6cdd-6f17-4080-9226-526d6c8d7335/,Millie,,10/20/2017 0:00,11.0000000,17.0000000,43.294261000000,5.359605000000,,plage prado,46732,observation-288f6cdd-6f17-4080-9226-526d6c8d7335-6,https://biolit.fr/observations/observation-288f6cdd-6f17-4080-9226-526d6c8d7335-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/22851401_1773308076045221_1881981251_o.jpg,,FALSE, +N1,60247,sortie-288f6cdd-6f17-4080-9226-526d6c8d7335,https://biolit.fr/sorties/sortie-288f6cdd-6f17-4080-9226-526d6c8d7335/,Millie,,10/20/2017 0:00,11.0000000,17.0000000,43.294261000000,5.359605000000,,plage prado,46734,observation-288f6cdd-6f17-4080-9226-526d6c8d7335-7,https://biolit.fr/observations/observation-288f6cdd-6f17-4080-9226-526d6c8d7335-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/22879414_1773308069378555_1894295156_o.jpg,,FALSE, +N1,60247,sortie-288f6cdd-6f17-4080-9226-526d6c8d7335,https://biolit.fr/sorties/sortie-288f6cdd-6f17-4080-9226-526d6c8d7335/,Millie,,10/20/2017 0:00,11.0000000,17.0000000,43.294261000000,5.359605000000,,plage prado,46736,observation-288f6cdd-6f17-4080-9226-526d6c8d7335-8,https://biolit.fr/observations/observation-288f6cdd-6f17-4080-9226-526d6c8d7335-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/22851599_1773308066045222_1948772721_o.jpg,,FALSE, +N1,60247,sortie-288f6cdd-6f17-4080-9226-526d6c8d7335,https://biolit.fr/sorties/sortie-288f6cdd-6f17-4080-9226-526d6c8d7335/,Millie,,10/20/2017 0:00,11.0000000,17.0000000,43.294261000000,5.359605000000,,plage prado,46738,observation-288f6cdd-6f17-4080-9226-526d6c8d7335-9,https://biolit.fr/observations/observation-288f6cdd-6f17-4080-9226-526d6c8d7335-9/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/22879019_1772953232747372_1460037333_o.jpg,,TRUE, +N1,60248,sortie-a7aabd0a-467b-4b6a-b795-2d4ac6c86204,https://biolit.fr/sorties/sortie-a7aabd0a-467b-4b6a-b795-2d4ac6c86204/,Millie,,10/13/2017 0:00,11.0000000,15.0000000,43.211837000000,5.454373000000,,plage de sugitton,46740,observation-a7aabd0a-467b-4b6a-b795-2d4ac6c86204,https://biolit.fr/observations/observation-a7aabd0a-467b-4b6a-b795-2d4ac6c86204/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/2023/07/22833408_10208078913690141_764458931_o.jpg,,TRUE, +N1,60249,sortie-50ee383e-4602-46fb-a841-a42466c69c31,https://biolit.fr/sorties/sortie-50ee383e-4602-46fb-a841-a42466c69c31/,Phil,,11/06/2017,11.0:15,11.0000000,48.004980000000,-4.520830000000,,Plouhinec - Finistère,46742,observation-50ee383e-4602-46fb-a841-a42466c69c31,https://biolit.fr/observations/observation-50ee383e-4602-46fb-a841-a42466c69c31/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_111927.jpg,,FALSE, +N1,60249,sortie-50ee383e-4602-46fb-a841-a42466c69c31,https://biolit.fr/sorties/sortie-50ee383e-4602-46fb-a841-a42466c69c31/,Phil,,11/06/2017,11.0:15,11.0000000,48.004980000000,-4.520830000000,,Plouhinec - Finistère,46744,observation-50ee383e-4602-46fb-a841-a42466c69c31-2,https://biolit.fr/observations/observation-50ee383e-4602-46fb-a841-a42466c69c31-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_111923.jpg,,FALSE, +N1,60249,sortie-50ee383e-4602-46fb-a841-a42466c69c31,https://biolit.fr/sorties/sortie-50ee383e-4602-46fb-a841-a42466c69c31/,Phil,,11/06/2017,11.0:15,11.0000000,48.004980000000,-4.520830000000,,Plouhinec - Finistère,46746,observation-50ee383e-4602-46fb-a841-a42466c69c31-3,https://biolit.fr/observations/observation-50ee383e-4602-46fb-a841-a42466c69c31-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_111930.jpg,,FALSE, +N1,60249,sortie-50ee383e-4602-46fb-a841-a42466c69c31,https://biolit.fr/sorties/sortie-50ee383e-4602-46fb-a841-a42466c69c31/,Phil,,11/06/2017,11.0:15,11.0000000,48.004980000000,-4.520830000000,,Plouhinec - Finistère,46748,observation-50ee383e-4602-46fb-a841-a42466c69c31-4,https://biolit.fr/observations/observation-50ee383e-4602-46fb-a841-a42466c69c31-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171106_111939.jpg,,FALSE, +N1,60249,sortie-50ee383e-4602-46fb-a841-a42466c69c31,https://biolit.fr/sorties/sortie-50ee383e-4602-46fb-a841-a42466c69c31/,Phil,,11/06/2017,11.0:15,11.0000000,48.004980000000,-4.520830000000,,Plouhinec - Finistère,46750,observation-50ee383e-4602-46fb-a841-a42466c69c31-5,https://biolit.fr/observations/observation-50ee383e-4602-46fb-a841-a42466c69c31-5/,Aplysilla rosea,Aplysille rose,,https://biolit.fr/wp-content/uploads/2023/07/20171106_111934.jpg,,TRUE, +N1,60249,sortie-50ee383e-4602-46fb-a841-a42466c69c31,https://biolit.fr/sorties/sortie-50ee383e-4602-46fb-a841-a42466c69c31/,Phil,,11/06/2017,11.0:15,11.0000000,48.004980000000,-4.520830000000,,Plouhinec - Finistère,46752,observation-50ee383e-4602-46fb-a841-a42466c69c31-6,https://biolit.fr/observations/observation-50ee383e-4602-46fb-a841-a42466c69c31-6/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20171106_111941.jpg,,TRUE, +N1,60250,sortie-586cbc37-50af-4631-b4b3-543ef04fbc28,https://biolit.fr/sorties/sortie-586cbc37-50af-4631-b4b3-543ef04fbc28/,Phil,,11/05/2017,12.0000000,12.0:55,47.797379000000,-4.17702700000,,Loctudy - Finistère,46754,observation-586cbc37-50af-4631-b4b3-543ef04fbc28,https://biolit.fr/observations/observation-586cbc37-50af-4631-b4b3-543ef04fbc28/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/P1090377.JPG,,TRUE, +N1,60250,sortie-586cbc37-50af-4631-b4b3-543ef04fbc28,https://biolit.fr/sorties/sortie-586cbc37-50af-4631-b4b3-543ef04fbc28/,Phil,,11/05/2017,12.0000000,12.0:55,47.797379000000,-4.17702700000,,Loctudy - Finistère,46756,observation-586cbc37-50af-4631-b4b3-543ef04fbc28-2,https://biolit.fr/observations/observation-586cbc37-50af-4631-b4b3-543ef04fbc28-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090374.JPG,,FALSE, +N1,60250,sortie-586cbc37-50af-4631-b4b3-543ef04fbc28,https://biolit.fr/sorties/sortie-586cbc37-50af-4631-b4b3-543ef04fbc28/,Phil,,11/05/2017,12.0000000,12.0:55,47.797379000000,-4.17702700000,,Loctudy - Finistère,46758,observation-586cbc37-50af-4631-b4b3-543ef04fbc28-3,https://biolit.fr/observations/observation-586cbc37-50af-4631-b4b3-543ef04fbc28-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090373.JPG,,FALSE, +N1,60250,sortie-586cbc37-50af-4631-b4b3-543ef04fbc28,https://biolit.fr/sorties/sortie-586cbc37-50af-4631-b4b3-543ef04fbc28/,Phil,,11/05/2017,12.0000000,12.0:55,47.797379000000,-4.17702700000,,Loctudy - Finistère,46760,observation-586cbc37-50af-4631-b4b3-543ef04fbc28-4,https://biolit.fr/observations/observation-586cbc37-50af-4631-b4b3-543ef04fbc28-4/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1090384.JPG,,TRUE, +N1,60250,sortie-586cbc37-50af-4631-b4b3-543ef04fbc28,https://biolit.fr/sorties/sortie-586cbc37-50af-4631-b4b3-543ef04fbc28/,Phil,,11/05/2017,12.0000000,12.0:55,47.797379000000,-4.17702700000,,Loctudy - Finistère,46762,observation-586cbc37-50af-4631-b4b3-543ef04fbc28-5,https://biolit.fr/observations/observation-586cbc37-50af-4631-b4b3-543ef04fbc28-5/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/P1090382.JPG,,TRUE, +N1,60251,sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08,https://biolit.fr/sorties/sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08/,Millie,,10/26/2017 0:00,12.0000000,15.0000000,43.357687000000,5.289994000000,,plage du fortin ,46764,observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08,https://biolit.fr/observations/observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08/,,,,https://biolit.fr/wp-content/uploads/2023/07/FILE0096-scaled.jpg,,FALSE, +N1,60251,sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08,https://biolit.fr/sorties/sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08/,Millie,,10/26/2017 0:00,12.0000000,15.0000000,43.357687000000,5.289994000000,,plage du fortin ,46766,observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-2,https://biolit.fr/observations/observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-2/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/22833495_10208078543520887_895375065_o.jpg,,TRUE, +N1,60251,sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08,https://biolit.fr/sorties/sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08/,Millie,,10/26/2017 0:00,12.0000000,15.0000000,43.357687000000,5.289994000000,,plage du fortin ,46768,observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-3,https://biolit.fr/observations/observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-3/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/22833626_10208078543440885_103589108_o.jpg,,TRUE, +N1,60251,sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08,https://biolit.fr/sorties/sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08/,Millie,,10/26/2017 0:00,12.0000000,15.0000000,43.357687000000,5.289994000000,,plage du fortin ,46770,observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-4,https://biolit.fr/observations/observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/22851439_1772951859414176_1624568917_o.jpg,,FALSE, +N1,60251,sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08,https://biolit.fr/sorties/sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08/,Millie,,10/26/2017 0:00,12.0000000,15.0000000,43.357687000000,5.289994000000,,plage du fortin ,46772,observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-5,https://biolit.fr/observations/observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-5/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/FILE0081-scaled.jpg,,TRUE, +N1,60251,sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08,https://biolit.fr/sorties/sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08/,Millie,,10/26/2017 0:00,12.0000000,15.0000000,43.357687000000,5.289994000000,,plage du fortin ,46774,observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-6,https://biolit.fr/observations/observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-6/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/FILE0082-scaled.jpg,,TRUE, +N1,60251,sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08,https://biolit.fr/sorties/sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08/,Millie,,10/26/2017 0:00,12.0000000,15.0000000,43.357687000000,5.289994000000,,plage du fortin ,46776,observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-7,https://biolit.fr/observations/observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/22833248_1772951802747515_1538975087_o.jpg,,FALSE, +N1,60251,sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08,https://biolit.fr/sorties/sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08/,Millie,,10/26/2017 0:00,12.0000000,15.0000000,43.357687000000,5.289994000000,,plage du fortin ,46778,observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-8,https://biolit.fr/observations/observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/22833468_1772951942747501_542240410_o.jpg,,FALSE, +N1,60251,sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08,https://biolit.fr/sorties/sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08/,Millie,,10/26/2017 0:00,12.0000000,15.0000000,43.357687000000,5.289994000000,,plage du fortin ,46780,observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-9,https://biolit.fr/observations/observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/22833694_1772951776080851_301548782_o.jpg,,FALSE, +N1,60251,sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08,https://biolit.fr/sorties/sortie-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08/,Millie,,10/26/2017 0:00,12.0000000,15.0000000,43.357687000000,5.289994000000,,plage du fortin ,46782,observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-10,https://biolit.fr/observations/observation-81fb5abd-d31e-44ed-bd1b-4b0ccfa7cb08-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/22879210_1772951706080858_917434013_o.jpg,,FALSE, +N1,60252,sortie-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d,https://biolit.fr/sorties/sortie-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d/,Phil,,11/05/2017,12.0000000,12.0000000,47.799112000000,-4.177710000000,,Loctudy - Finistère,46784,observation-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d,https://biolit.fr/observations/observation-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/P1090367.JPG,,TRUE, +N1,60252,sortie-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d,https://biolit.fr/sorties/sortie-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d/,Phil,,11/05/2017,12.0000000,12.0000000,47.799112000000,-4.177710000000,,Loctudy - Finistère,46786,observation-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d-2,https://biolit.fr/observations/observation-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090363.JPG,,FALSE, +N1,60252,sortie-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d,https://biolit.fr/sorties/sortie-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d/,Phil,,11/05/2017,12.0000000,12.0000000,47.799112000000,-4.177710000000,,Loctudy - Finistère,46788,observation-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d-3,https://biolit.fr/observations/observation-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090362.JPG,,FALSE, +N1,60252,sortie-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d,https://biolit.fr/sorties/sortie-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d/,Phil,,11/05/2017,12.0000000,12.0000000,47.799112000000,-4.177710000000,,Loctudy - Finistère,46790,observation-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d-4,https://biolit.fr/observations/observation-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d-4/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1090361.JPG,,TRUE, +N1,60252,sortie-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d,https://biolit.fr/sorties/sortie-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d/,Phil,,11/05/2017,12.0000000,12.0000000,47.799112000000,-4.177710000000,,Loctudy - Finistère,46792,observation-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d-5,https://biolit.fr/observations/observation-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090359.JPG,,FALSE, +N1,60252,sortie-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d,https://biolit.fr/sorties/sortie-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d/,Phil,,11/05/2017,12.0000000,12.0000000,47.799112000000,-4.177710000000,,Loctudy - Finistère,46794,observation-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d-6,https://biolit.fr/observations/observation-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090368.JPG,,FALSE, +N1,60252,sortie-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d,https://biolit.fr/sorties/sortie-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d/,Phil,,11/05/2017,12.0000000,12.0000000,47.799112000000,-4.177710000000,,Loctudy - Finistère,46796,observation-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d-7,https://biolit.fr/observations/observation-4aa8b918-1d07-47f0-8d1f-4aad0a695c5d-7/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1090369.JPG,,TRUE, +N1,60253,sortie-521dfe51-9d0e-491a-a98b-fcb449632b46,https://biolit.fr/sorties/sortie-521dfe51-9d0e-491a-a98b-fcb449632b46/,Phil,,11/04/2017,15.0:55,16.0000000,47.826209000000,-4.358077000000,,Penmarc'h - Finistère,46798,observation-521dfe51-9d0e-491a-a98b-fcb449632b46,https://biolit.fr/observations/observation-521dfe51-9d0e-491a-a98b-fcb449632b46/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/P1080856.JPG,,TRUE, +N1,60253,sortie-521dfe51-9d0e-491a-a98b-fcb449632b46,https://biolit.fr/sorties/sortie-521dfe51-9d0e-491a-a98b-fcb449632b46/,Phil,,11/04/2017,15.0:55,16.0000000,47.826209000000,-4.358077000000,,Penmarc'h - Finistère,46800,observation-521dfe51-9d0e-491a-a98b-fcb449632b46-2,https://biolit.fr/observations/observation-521dfe51-9d0e-491a-a98b-fcb449632b46-2/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1080860.JPG,,TRUE, +N1,60253,sortie-521dfe51-9d0e-491a-a98b-fcb449632b46,https://biolit.fr/sorties/sortie-521dfe51-9d0e-491a-a98b-fcb449632b46/,Phil,,11/04/2017,15.0:55,16.0000000,47.826209000000,-4.358077000000,,Penmarc'h - Finistère,46802,observation-521dfe51-9d0e-491a-a98b-fcb449632b46-3,https://biolit.fr/observations/observation-521dfe51-9d0e-491a-a98b-fcb449632b46-3/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1080852.JPG,,TRUE, +N1,60253,sortie-521dfe51-9d0e-491a-a98b-fcb449632b46,https://biolit.fr/sorties/sortie-521dfe51-9d0e-491a-a98b-fcb449632b46/,Phil,,11/04/2017,15.0:55,16.0000000,47.826209000000,-4.358077000000,,Penmarc'h - Finistère,46804,observation-521dfe51-9d0e-491a-a98b-fcb449632b46-4,https://biolit.fr/observations/observation-521dfe51-9d0e-491a-a98b-fcb449632b46-4/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1080857.JPG,,TRUE, +N1,60254,sortie-248073a9-ed19-4371-bb28-1b43cd422ee6,https://biolit.fr/sorties/sortie-248073a9-ed19-4371-bb28-1b43cd422ee6/,CarpeDiem,,8/26/2017 0:00,17.0000000,19.0000000,42.921483000000,9.470113000000,,Anse de Catarelle (Meria),46806,observation-248073a9-ed19-4371-bb28-1b43cd422ee6,https://biolit.fr/observations/observation-248073a9-ed19-4371-bb28-1b43cd422ee6/,Stramonita haemastoma,Bouche de sang,,https://biolit.fr/wp-content/uploads/2023/07/Bouche de sang (2)-scaled.jpg,,TRUE, +N1,60254,sortie-248073a9-ed19-4371-bb28-1b43cd422ee6,https://biolit.fr/sorties/sortie-248073a9-ed19-4371-bb28-1b43cd422ee6/,CarpeDiem,,8/26/2017 0:00,17.0000000,19.0000000,42.921483000000,9.470113000000,,Anse de Catarelle (Meria),46810,observation-248073a9-ed19-4371-bb28-1b43cd422ee6-3,https://biolit.fr/observations/observation-248073a9-ed19-4371-bb28-1b43cd422ee6-3/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/coquillage-scaled.jpg,,TRUE, +N1,60254,sortie-248073a9-ed19-4371-bb28-1b43cd422ee6,https://biolit.fr/sorties/sortie-248073a9-ed19-4371-bb28-1b43cd422ee6/,CarpeDiem,,8/26/2017 0:00,17.0000000,19.0000000,42.921483000000,9.470113000000,,Anse de Catarelle (Meria),46811,observation-248073a9-ed19-4371-bb28-1b43cd422ee6-4,https://biolit.fr/observations/observation-248073a9-ed19-4371-bb28-1b43cd422ee6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabe 2-scaled.jpg,,FALSE, +N1,60254,sortie-248073a9-ed19-4371-bb28-1b43cd422ee6,https://biolit.fr/sorties/sortie-248073a9-ed19-4371-bb28-1b43cd422ee6/,CarpeDiem,,8/26/2017 0:00,17.0000000,19.0000000,42.921483000000,9.470113000000,,Anse de Catarelle (Meria),46813,observation-248073a9-ed19-4371-bb28-1b43cd422ee6-5,https://biolit.fr/observations/observation-248073a9-ed19-4371-bb28-1b43cd422ee6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/crage-scaled.jpg,,FALSE, +N1,60254,sortie-248073a9-ed19-4371-bb28-1b43cd422ee6,https://biolit.fr/sorties/sortie-248073a9-ed19-4371-bb28-1b43cd422ee6/,CarpeDiem,,8/26/2017 0:00,17.0000000,19.0000000,42.921483000000,9.470113000000,,Anse de Catarelle (Meria),46815,observation-248073a9-ed19-4371-bb28-1b43cd422ee6-6,https://biolit.fr/observations/observation-248073a9-ed19-4371-bb28-1b43cd422ee6-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Criste marine-scaled.jpg,,FALSE, +N1,60254,sortie-248073a9-ed19-4371-bb28-1b43cd422ee6,https://biolit.fr/sorties/sortie-248073a9-ed19-4371-bb28-1b43cd422ee6/,CarpeDiem,,8/26/2017 0:00,17.0000000,19.0000000,42.921483000000,9.470113000000,,Anse de Catarelle (Meria),46816,observation-248073a9-ed19-4371-bb28-1b43cd422ee6-7,https://biolit.fr/observations/observation-248073a9-ed19-4371-bb28-1b43cd422ee6-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/etoile de mer_0-scaled.jpg,,FALSE, +N1,60254,sortie-248073a9-ed19-4371-bb28-1b43cd422ee6,https://biolit.fr/sorties/sortie-248073a9-ed19-4371-bb28-1b43cd422ee6/,CarpeDiem,,8/26/2017 0:00,17.0000000,19.0000000,42.921483000000,9.470113000000,,Anse de Catarelle (Meria),46818,observation-248073a9-ed19-4371-bb28-1b43cd422ee6-8,https://biolit.fr/observations/observation-248073a9-ed19-4371-bb28-1b43cd422ee6-8/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/gibbules toupies-scaled.jpg,,TRUE, +N1,60254,sortie-248073a9-ed19-4371-bb28-1b43cd422ee6,https://biolit.fr/sorties/sortie-248073a9-ed19-4371-bb28-1b43cd422ee6/,CarpeDiem,,8/26/2017 0:00,17.0000000,19.0000000,42.921483000000,9.470113000000,,Anse de Catarelle (Meria),46820,observation-248073a9-ed19-4371-bb28-1b43cd422ee6-9,https://biolit.fr/observations/observation-248073a9-ed19-4371-bb28-1b43cd422ee6-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/crottes-scaled.jpg,,FALSE, +N1,60254,sortie-248073a9-ed19-4371-bb28-1b43cd422ee6,https://biolit.fr/sorties/sortie-248073a9-ed19-4371-bb28-1b43cd422ee6/,CarpeDiem,,8/26/2017 0:00,17.0000000,19.0000000,42.921483000000,9.470113000000,,Anse de Catarelle (Meria),46822,observation-248073a9-ed19-4371-bb28-1b43cd422ee6-10,https://biolit.fr/observations/observation-248073a9-ed19-4371-bb28-1b43cd422ee6-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/padina-scaled.jpg,,FALSE, +N1,60254,sortie-248073a9-ed19-4371-bb28-1b43cd422ee6,https://biolit.fr/sorties/sortie-248073a9-ed19-4371-bb28-1b43cd422ee6/,CarpeDiem,,8/26/2017 0:00,17.0000000,19.0000000,42.921483000000,9.470113000000,,Anse de Catarelle (Meria),46824,observation-248073a9-ed19-4371-bb28-1b43cd422ee6-11,https://biolit.fr/observations/observation-248073a9-ed19-4371-bb28-1b43cd422ee6-11/,Muraena helena,Murène commune,,https://biolit.fr/wp-content/uploads/2023/07/Murene-scaled.jpg,,TRUE, +N1,60254,sortie-248073a9-ed19-4371-bb28-1b43cd422ee6,https://biolit.fr/sorties/sortie-248073a9-ed19-4371-bb28-1b43cd422ee6/,CarpeDiem,,8/26/2017 0:00,17.0000000,19.0000000,42.921483000000,9.470113000000,,Anse de Catarelle (Meria),46826,observation-248073a9-ed19-4371-bb28-1b43cd422ee6-12,https://biolit.fr/observations/observation-248073a9-ed19-4371-bb28-1b43cd422ee6-12/,Jacobaea maritima,Cinéraire maritime,,https://biolit.fr/wp-content/uploads/2023/07/plante-scaled.jpg,,TRUE, +N1,60254,sortie-248073a9-ed19-4371-bb28-1b43cd422ee6,https://biolit.fr/sorties/sortie-248073a9-ed19-4371-bb28-1b43cd422ee6/,CarpeDiem,,8/26/2017 0:00,17.0000000,19.0000000,42.921483000000,9.470113000000,,Anse de Catarelle (Meria),46827,observation-248073a9-ed19-4371-bb28-1b43cd422ee6-13,https://biolit.fr/observations/observation-248073a9-ed19-4371-bb28-1b43cd422ee6-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/Posidonie_1-scaled.jpg,,FALSE, +N1,60254,sortie-248073a9-ed19-4371-bb28-1b43cd422ee6,https://biolit.fr/sorties/sortie-248073a9-ed19-4371-bb28-1b43cd422ee6/,CarpeDiem,,8/26/2017 0:00,17.0000000,19.0000000,42.921483000000,9.470113000000,,Anse de Catarelle (Meria),46828,observation-248073a9-ed19-4371-bb28-1b43cd422ee6-14,https://biolit.fr/observations/observation-248073a9-ed19-4371-bb28-1b43cd422ee6-14/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/Tomate de Mer-scaled.jpg,,TRUE, +N1,60255,sortie-63a7270c-838c-4587-bb47-91a98a41fbe3,https://biolit.fr/sorties/sortie-63a7270c-838c-4587-bb47-91a98a41fbe3/,CarpeDiem,,8/20/2017 0:00,17.0:45,19.0000000,42.924219000000,9.361703000000,,Plage Alisu,46829,observation-63a7270c-838c-4587-bb47-91a98a41fbe3,https://biolit.fr/observations/observation-63a7270c-838c-4587-bb47-91a98a41fbe3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algue_0-scaled.jpg,,FALSE, +N1,60255,sortie-63a7270c-838c-4587-bb47-91a98a41fbe3,https://biolit.fr/sorties/sortie-63a7270c-838c-4587-bb47-91a98a41fbe3/,CarpeDiem,,8/20/2017 0:00,17.0:45,19.0000000,42.924219000000,9.361703000000,,Plage Alisu,46831,observation-63a7270c-838c-4587-bb47-91a98a41fbe3-2,https://biolit.fr/observations/observation-63a7270c-838c-4587-bb47-91a98a41fbe3-2/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Blanc de seiche-scaled.jpg,,TRUE, +N1,60255,sortie-63a7270c-838c-4587-bb47-91a98a41fbe3,https://biolit.fr/sorties/sortie-63a7270c-838c-4587-bb47-91a98a41fbe3/,CarpeDiem,,8/20/2017 0:00,17.0:45,19.0000000,42.924219000000,9.361703000000,,Plage Alisu,46833,observation-63a7270c-838c-4587-bb47-91a98a41fbe3-3,https://biolit.fr/observations/observation-63a7270c-838c-4587-bb47-91a98a41fbe3-3/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/Codium bursa-scaled.jpg,,TRUE, +N1,60255,sortie-63a7270c-838c-4587-bb47-91a98a41fbe3,https://biolit.fr/sorties/sortie-63a7270c-838c-4587-bb47-91a98a41fbe3/,CarpeDiem,,8/20/2017 0:00,17.0:45,19.0000000,42.924219000000,9.361703000000,,Plage Alisu,46835,observation-63a7270c-838c-4587-bb47-91a98a41fbe3-4,https://biolit.fr/observations/observation-63a7270c-838c-4587-bb47-91a98a41fbe3-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/ponte de bouche de sang-scaled.jpg,,FALSE, +N1,60255,sortie-63a7270c-838c-4587-bb47-91a98a41fbe3,https://biolit.fr/sorties/sortie-63a7270c-838c-4587-bb47-91a98a41fbe3/,CarpeDiem,,8/20/2017 0:00,17.0:45,19.0000000,42.924219000000,9.361703000000,,Plage Alisu,46837,observation-63a7270c-838c-4587-bb47-91a98a41fbe3-5,https://biolit.fr/observations/observation-63a7270c-838c-4587-bb47-91a98a41fbe3-5/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/pontes de murex-scaled.jpg,,TRUE, +N1,60255,sortie-63a7270c-838c-4587-bb47-91a98a41fbe3,https://biolit.fr/sorties/sortie-63a7270c-838c-4587-bb47-91a98a41fbe3/,CarpeDiem,,8/20/2017 0:00,17.0:45,19.0000000,42.924219000000,9.361703000000,,Plage Alisu,46839,observation-63a7270c-838c-4587-bb47-91a98a41fbe3-6,https://biolit.fr/observations/observation-63a7270c-838c-4587-bb47-91a98a41fbe3-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Posidonie_0-scaled.jpg,,FALSE, +N1,60255,sortie-63a7270c-838c-4587-bb47-91a98a41fbe3,https://biolit.fr/sorties/sortie-63a7270c-838c-4587-bb47-91a98a41fbe3/,CarpeDiem,,8/20/2017 0:00,17.0:45,19.0000000,42.924219000000,9.361703000000,,Plage Alisu,46840,observation-63a7270c-838c-4587-bb47-91a98a41fbe3-7,https://biolit.fr/observations/observation-63a7270c-838c-4587-bb47-91a98a41fbe3-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/tellines-scaled.jpg,,FALSE, +N1,60255,sortie-63a7270c-838c-4587-bb47-91a98a41fbe3,https://biolit.fr/sorties/sortie-63a7270c-838c-4587-bb47-91a98a41fbe3/,CarpeDiem,,8/20/2017 0:00,17.0:45,19.0000000,42.924219000000,9.361703000000,,Plage Alisu,46842,observation-63a7270c-838c-4587-bb47-91a98a41fbe3-8,https://biolit.fr/observations/observation-63a7270c-838c-4587-bb47-91a98a41fbe3-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170820_201029-scaled.jpg,,FALSE, +N1,60256,sortie-83f34c57-d2c5-46b3-be30-4924d43951b8,https://biolit.fr/sorties/sortie-83f34c57-d2c5-46b3-be30-4924d43951b8/,CarpeDiem,,8/21/2017 0:00,17.0000000,18.0000000,42.96346600000,9.346744000000,,"Centuri, criques ",46844,observation-83f34c57-d2c5-46b3-be30-4924d43951b8,https://biolit.fr/observations/observation-83f34c57-d2c5-46b3-be30-4924d43951b8/,Tarantinaea lignaria,Fasciolaire de Tarente,,https://biolit.fr/wp-content/uploads/2023/07/Fasciolaire de Tarente-scaled.jpg,,TRUE, +N1,60256,sortie-83f34c57-d2c5-46b3-be30-4924d43951b8,https://biolit.fr/sorties/sortie-83f34c57-d2c5-46b3-be30-4924d43951b8/,CarpeDiem,,8/21/2017 0:00,17.0000000,18.0000000,42.96346600000,9.346744000000,,"Centuri, criques ",46846,observation-83f34c57-d2c5-46b3-be30-4924d43951b8-2,https://biolit.fr/observations/observation-83f34c57-d2c5-46b3-be30-4924d43951b8-2/,Tarantinaea lignaria,Fasciolaire de Tarente,,https://biolit.fr/wp-content/uploads/2023/07/Fasciolaire de Tarente 2-scaled.jpg,,TRUE, +N1,60256,sortie-83f34c57-d2c5-46b3-be30-4924d43951b8,https://biolit.fr/sorties/sortie-83f34c57-d2c5-46b3-be30-4924d43951b8/,CarpeDiem,,8/21/2017 0:00,17.0000000,18.0000000,42.96346600000,9.346744000000,,"Centuri, criques ",46848,observation-83f34c57-d2c5-46b3-be30-4924d43951b8-3,https://biolit.fr/observations/observation-83f34c57-d2c5-46b3-be30-4924d43951b8-3/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/Pagure des rochers-scaled.jpg,,TRUE, +N1,60256,sortie-83f34c57-d2c5-46b3-be30-4924d43951b8,https://biolit.fr/sorties/sortie-83f34c57-d2c5-46b3-be30-4924d43951b8/,CarpeDiem,,8/21/2017 0:00,17.0000000,18.0000000,42.96346600000,9.346744000000,,"Centuri, criques ",46850,observation-83f34c57-d2c5-46b3-be30-4924d43951b8-4,https://biolit.fr/observations/observation-83f34c57-d2c5-46b3-be30-4924d43951b8-4/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/2023/07/Etoile de Mer-scaled.jpg,,TRUE, +N1,60256,sortie-83f34c57-d2c5-46b3-be30-4924d43951b8,https://biolit.fr/sorties/sortie-83f34c57-d2c5-46b3-be30-4924d43951b8/,CarpeDiem,,8/21/2017 0:00,17.0000000,18.0000000,42.96346600000,9.346744000000,,"Centuri, criques ",46851,observation-83f34c57-d2c5-46b3-be30-4924d43951b8-5,https://biolit.fr/observations/observation-83f34c57-d2c5-46b3-be30-4924d43951b8-5/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/Patelle 2-scaled.jpg,,TRUE, +N1,60256,sortie-83f34c57-d2c5-46b3-be30-4924d43951b8,https://biolit.fr/sorties/sortie-83f34c57-d2c5-46b3-be30-4924d43951b8/,CarpeDiem,,8/21/2017 0:00,17.0000000,18.0000000,42.96346600000,9.346744000000,,"Centuri, criques ",46853,observation-83f34c57-d2c5-46b3-be30-4924d43951b8-6,https://biolit.fr/observations/observation-83f34c57-d2c5-46b3-be30-4924d43951b8-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle_0-scaled.jpg,,FALSE, +N1,60257,sortie-18a2ba7d-d923-4a9d-9ebe-418dcd374cb1,https://biolit.fr/sorties/sortie-18a2ba7d-d923-4a9d-9ebe-418dcd374cb1/,Phil,,10/26/2017 0:00,15.0000000,15.0:55,48.096552000000,-4.335557000000,,Douarnenez - Finistère,46855,observation-18a2ba7d-d923-4a9d-9ebe-418dcd374cb1,https://biolit.fr/observations/observation-18a2ba7d-d923-4a9d-9ebe-418dcd374cb1/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171026_155231.jpg,,FALSE, +N1,60257,sortie-18a2ba7d-d923-4a9d-9ebe-418dcd374cb1,https://biolit.fr/sorties/sortie-18a2ba7d-d923-4a9d-9ebe-418dcd374cb1/,Phil,,10/26/2017 0:00,15.0000000,15.0:55,48.096552000000,-4.335557000000,,Douarnenez - Finistère,46857,observation-18a2ba7d-d923-4a9d-9ebe-418dcd374cb1-2,https://biolit.fr/observations/observation-18a2ba7d-d923-4a9d-9ebe-418dcd374cb1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171026_155301.jpg,,FALSE, +N1,60257,sortie-18a2ba7d-d923-4a9d-9ebe-418dcd374cb1,https://biolit.fr/sorties/sortie-18a2ba7d-d923-4a9d-9ebe-418dcd374cb1/,Phil,,10/26/2017 0:00,15.0000000,15.0:55,48.096552000000,-4.335557000000,,Douarnenez - Finistère,46859,observation-18a2ba7d-d923-4a9d-9ebe-418dcd374cb1-3,https://biolit.fr/observations/observation-18a2ba7d-d923-4a9d-9ebe-418dcd374cb1-3/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/20171026_155413.jpg,,TRUE, +N1,60258,sortie-87d6d08b-1554-42d0-bdf0-11934ef9193a,https://biolit.fr/sorties/sortie-87d6d08b-1554-42d0-bdf0-11934ef9193a/,Phil,,11/02/2017,18.000005,18.0:15,47.869432000000,-3.924911000000,,Concarneau - Finistère,46861,observation-87d6d08b-1554-42d0-bdf0-11934ef9193a,https://biolit.fr/observations/observation-87d6d08b-1554-42d0-bdf0-11934ef9193a/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171102_180716.jpg,,FALSE, +N1,60258,sortie-87d6d08b-1554-42d0-bdf0-11934ef9193a,https://biolit.fr/sorties/sortie-87d6d08b-1554-42d0-bdf0-11934ef9193a/,Phil,,11/02/2017,18.000005,18.0:15,47.869432000000,-3.924911000000,,Concarneau - Finistère,46863,observation-87d6d08b-1554-42d0-bdf0-11934ef9193a-2,https://biolit.fr/observations/observation-87d6d08b-1554-42d0-bdf0-11934ef9193a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171102_181544.jpg,,FALSE, +N1,60258,sortie-87d6d08b-1554-42d0-bdf0-11934ef9193a,https://biolit.fr/sorties/sortie-87d6d08b-1554-42d0-bdf0-11934ef9193a/,Phil,,11/02/2017,18.000005,18.0:15,47.869432000000,-3.924911000000,,Concarneau - Finistère,46865,observation-87d6d08b-1554-42d0-bdf0-11934ef9193a-3,https://biolit.fr/observations/observation-87d6d08b-1554-42d0-bdf0-11934ef9193a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171102_180844.jpg,,FALSE, +N1,60259,sortie-b84c5e61-b8f2-49c9-9c6c-054492b22141,https://biolit.fr/sorties/sortie-b84c5e61-b8f2-49c9-9c6c-054492b22141/,Phil,,4/14/2017 0:00,11.0000000,11.0:15,48.83598600000,-3.002955000000,,Île-de-Bréhat - Côtes-d'Armor,46867,observation-b84c5e61-b8f2-49c9-9c6c-054492b22141,https://biolit.fr/observations/observation-b84c5e61-b8f2-49c9-9c6c-054492b22141/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1060945.JPG,,TRUE, +N1,60260,sortie-75ab11d4-723e-4c37-b49f-75ff0d625e5f,https://biolit.fr/sorties/sortie-75ab11d4-723e-4c37-b49f-75ff0d625e5f/,Peace01,,10/27/2017 0:00,13.0000000,16.0000000,43.357605000000,5.290206000000,,Plage Fortin,46869,observation-75ab11d4-723e-4c37-b49f-75ff0d625e5f,https://biolit.fr/observations/observation-75ab11d4-723e-4c37-b49f-75ff0d625e5f/,,,,https://biolit.fr/wp-content/uploads/2023/07/Snapchat-912037502 (1).jpg,,FALSE, +N1,60260,sortie-75ab11d4-723e-4c37-b49f-75ff0d625e5f,https://biolit.fr/sorties/sortie-75ab11d4-723e-4c37-b49f-75ff0d625e5f/,Peace01,,10/27/2017 0:00,13.0000000,16.0000000,43.357605000000,5.290206000000,,Plage Fortin,46871,observation-75ab11d4-723e-4c37-b49f-75ff0d625e5f-2,https://biolit.fr/observations/observation-75ab11d4-723e-4c37-b49f-75ff0d625e5f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Snapchat-297359115 (1).jpg,,FALSE, +N1,60260,sortie-75ab11d4-723e-4c37-b49f-75ff0d625e5f,https://biolit.fr/sorties/sortie-75ab11d4-723e-4c37-b49f-75ff0d625e5f/,Peace01,,10/27/2017 0:00,13.0000000,16.0000000,43.357605000000,5.290206000000,,Plage Fortin,46873,observation-75ab11d4-723e-4c37-b49f-75ff0d625e5f-3,https://biolit.fr/observations/observation-75ab11d4-723e-4c37-b49f-75ff0d625e5f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Snapchat-827536502 (1).jpg,,FALSE, +N1,60260,sortie-75ab11d4-723e-4c37-b49f-75ff0d625e5f,https://biolit.fr/sorties/sortie-75ab11d4-723e-4c37-b49f-75ff0d625e5f/,Peace01,,10/27/2017 0:00,13.0000000,16.0000000,43.357605000000,5.290206000000,,Plage Fortin,46875,observation-75ab11d4-723e-4c37-b49f-75ff0d625e5f-4,https://biolit.fr/observations/observation-75ab11d4-723e-4c37-b49f-75ff0d625e5f-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Snapchat-1010542227 (1).jpg,,FALSE, +N1,60260,sortie-75ab11d4-723e-4c37-b49f-75ff0d625e5f,https://biolit.fr/sorties/sortie-75ab11d4-723e-4c37-b49f-75ff0d625e5f/,Peace01,,10/27/2017 0:00,13.0000000,16.0000000,43.357605000000,5.290206000000,,Plage Fortin,46877,observation-75ab11d4-723e-4c37-b49f-75ff0d625e5f-5,https://biolit.fr/observations/observation-75ab11d4-723e-4c37-b49f-75ff0d625e5f-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Snapchat-1959110434 (1).jpg,,FALSE, +N1,60260,sortie-75ab11d4-723e-4c37-b49f-75ff0d625e5f,https://biolit.fr/sorties/sortie-75ab11d4-723e-4c37-b49f-75ff0d625e5f/,Peace01,,10/27/2017 0:00,13.0000000,16.0000000,43.357605000000,5.290206000000,,Plage Fortin,46879,observation-75ab11d4-723e-4c37-b49f-75ff0d625e5f-6,https://biolit.fr/observations/observation-75ab11d4-723e-4c37-b49f-75ff0d625e5f-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Snapchat-1679568829 (1).jpg,,FALSE, +N1,60261,sortie-50bf7e9f-d7e3-4446-995e-3d1ad7df6d76,https://biolit.fr/sorties/sortie-50bf7e9f-d7e3-4446-995e-3d1ad7df6d76/,Kevin,,10/31/2017 0:00,13.0000000,14.0000000,43.239965000000,5.362457000000,,Plage du Bain des dames,46881,observation-50bf7e9f-d7e3-4446-995e-3d1ad7df6d76,https://biolit.fr/observations/observation-50bf7e9f-d7e3-4446-995e-3d1ad7df6d76/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3163-scaled.jpg,,TRUE, +N1,60261,sortie-50bf7e9f-d7e3-4446-995e-3d1ad7df6d76,https://biolit.fr/sorties/sortie-50bf7e9f-d7e3-4446-995e-3d1ad7df6d76/,Kevin,,10/31/2017 0:00,13.0000000,14.0000000,43.239965000000,5.362457000000,,Plage du Bain des dames,46883,observation-50bf7e9f-d7e3-4446-995e-3d1ad7df6d76-2,https://biolit.fr/observations/observation-50bf7e9f-d7e3-4446-995e-3d1ad7df6d76-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3164-scaled.jpg,,FALSE, +N1,60261,sortie-50bf7e9f-d7e3-4446-995e-3d1ad7df6d76,https://biolit.fr/sorties/sortie-50bf7e9f-d7e3-4446-995e-3d1ad7df6d76/,Kevin,,10/31/2017 0:00,13.0000000,14.0000000,43.239965000000,5.362457000000,,Plage du Bain des dames,46885,observation-50bf7e9f-d7e3-4446-995e-3d1ad7df6d76-3,https://biolit.fr/observations/observation-50bf7e9f-d7e3-4446-995e-3d1ad7df6d76-3/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3165-scaled.jpg,,TRUE, +N1,60261,sortie-50bf7e9f-d7e3-4446-995e-3d1ad7df6d76,https://biolit.fr/sorties/sortie-50bf7e9f-d7e3-4446-995e-3d1ad7df6d76/,Kevin,,10/31/2017 0:00,13.0000000,14.0000000,43.239965000000,5.362457000000,,Plage du Bain des dames,46887,observation-50bf7e9f-d7e3-4446-995e-3d1ad7df6d76-4,https://biolit.fr/observations/observation-50bf7e9f-d7e3-4446-995e-3d1ad7df6d76-4/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3142-scaled.jpg,,TRUE, +N1,60262,sortie-872a3cbe-8532-4b02-a463-6ac7b0db3b3e,https://biolit.fr/sorties/sortie-872a3cbe-8532-4b02-a463-6ac7b0db3b3e/,Phil,,10/26/2017 0:00,15.0:45,15.0000000,48.096330000000,-4.33554600000,,Douarnenez - Finistère,46889,observation-872a3cbe-8532-4b02-a463-6ac7b0db3b3e,https://biolit.fr/observations/observation-872a3cbe-8532-4b02-a463-6ac7b0db3b3e/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/20171026_154806.jpg,,TRUE, +N1,60262,sortie-872a3cbe-8532-4b02-a463-6ac7b0db3b3e,https://biolit.fr/sorties/sortie-872a3cbe-8532-4b02-a463-6ac7b0db3b3e/,Phil,,10/26/2017 0:00,15.0:45,15.0000000,48.096330000000,-4.33554600000,,Douarnenez - Finistère,46891,observation-872a3cbe-8532-4b02-a463-6ac7b0db3b3e-2,https://biolit.fr/observations/observation-872a3cbe-8532-4b02-a463-6ac7b0db3b3e-2/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20171026_154918.jpg,,TRUE, +N1,60262,sortie-872a3cbe-8532-4b02-a463-6ac7b0db3b3e,https://biolit.fr/sorties/sortie-872a3cbe-8532-4b02-a463-6ac7b0db3b3e/,Phil,,10/26/2017 0:00,15.0:45,15.0000000,48.096330000000,-4.33554600000,,Douarnenez - Finistère,46893,observation-872a3cbe-8532-4b02-a463-6ac7b0db3b3e-3,https://biolit.fr/observations/observation-872a3cbe-8532-4b02-a463-6ac7b0db3b3e-3/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/20171026_155043.jpg,,TRUE, +N1,60262,sortie-872a3cbe-8532-4b02-a463-6ac7b0db3b3e,https://biolit.fr/sorties/sortie-872a3cbe-8532-4b02-a463-6ac7b0db3b3e/,Phil,,10/26/2017 0:00,15.0:45,15.0000000,48.096330000000,-4.33554600000,,Douarnenez - Finistère,46895,observation-872a3cbe-8532-4b02-a463-6ac7b0db3b3e-4,https://biolit.fr/observations/observation-872a3cbe-8532-4b02-a463-6ac7b0db3b3e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171026_154731.jpg,,FALSE, +N1,60263,sortie-6dc15fa4-c675-447d-bfa1-052035d047aa,https://biolit.fr/sorties/sortie-6dc15fa4-c675-447d-bfa1-052035d047aa/,Dodode,,10/27/2017 0:00,12.0000000,15.0000000,43.272873000000,5.362336000000,,Plage du Prophète,46897,observation-6dc15fa4-c675-447d-bfa1-052035d047aa,https://biolit.fr/observations/observation-6dc15fa4-c675-447d-bfa1-052035d047aa/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171027_13_47_07_Pro.jpg,,FALSE, +N1,60263,sortie-6dc15fa4-c675-447d-bfa1-052035d047aa,https://biolit.fr/sorties/sortie-6dc15fa4-c675-447d-bfa1-052035d047aa/,Dodode,,10/27/2017 0:00,12.0000000,15.0000000,43.272873000000,5.362336000000,,Plage du Prophète,46899,observation-6dc15fa4-c675-447d-bfa1-052035d047aa-2,https://biolit.fr/observations/observation-6dc15fa4-c675-447d-bfa1-052035d047aa-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171027_13_45_25_Pro.jpg,,FALSE, +N1,60263,sortie-6dc15fa4-c675-447d-bfa1-052035d047aa,https://biolit.fr/sorties/sortie-6dc15fa4-c675-447d-bfa1-052035d047aa/,Dodode,,10/27/2017 0:00,12.0000000,15.0000000,43.272873000000,5.362336000000,,Plage du Prophète,46901,observation-6dc15fa4-c675-447d-bfa1-052035d047aa-3,https://biolit.fr/observations/observation-6dc15fa4-c675-447d-bfa1-052035d047aa-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171027_13_44_57_Pro.jpg,,FALSE, +N1,60263,sortie-6dc15fa4-c675-447d-bfa1-052035d047aa,https://biolit.fr/sorties/sortie-6dc15fa4-c675-447d-bfa1-052035d047aa/,Dodode,,10/27/2017 0:00,12.0000000,15.0000000,43.272873000000,5.362336000000,,Plage du Prophète,46903,observation-6dc15fa4-c675-447d-bfa1-052035d047aa-4,https://biolit.fr/observations/observation-6dc15fa4-c675-447d-bfa1-052035d047aa-4/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171027_13_43_51_Pro.jpg,,TRUE, +N1,60263,sortie-6dc15fa4-c675-447d-bfa1-052035d047aa,https://biolit.fr/sorties/sortie-6dc15fa4-c675-447d-bfa1-052035d047aa/,Dodode,,10/27/2017 0:00,12.0000000,15.0000000,43.272873000000,5.362336000000,,Plage du Prophète,46905,observation-6dc15fa4-c675-447d-bfa1-052035d047aa-5,https://biolit.fr/observations/observation-6dc15fa4-c675-447d-bfa1-052035d047aa-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171027_13_42_08_Pro-rotated.jpg,,FALSE, +N1,60263,sortie-6dc15fa4-c675-447d-bfa1-052035d047aa,https://biolit.fr/sorties/sortie-6dc15fa4-c675-447d-bfa1-052035d047aa/,Dodode,,10/27/2017 0:00,12.0000000,15.0000000,43.272873000000,5.362336000000,,Plage du Prophète,46907,observation-6dc15fa4-c675-447d-bfa1-052035d047aa-6,https://biolit.fr/observations/observation-6dc15fa4-c675-447d-bfa1-052035d047aa-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171027_13_40_55_Pro.jpg,,FALSE, +N1,60263,sortie-6dc15fa4-c675-447d-bfa1-052035d047aa,https://biolit.fr/sorties/sortie-6dc15fa4-c675-447d-bfa1-052035d047aa/,Dodode,,10/27/2017 0:00,12.0000000,15.0000000,43.272873000000,5.362336000000,,Plage du Prophète,46909,observation-6dc15fa4-c675-447d-bfa1-052035d047aa-7,https://biolit.fr/observations/observation-6dc15fa4-c675-447d-bfa1-052035d047aa-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171027_13_39_51_Pro-rotated.jpg,,FALSE, +N1,60263,sortie-6dc15fa4-c675-447d-bfa1-052035d047aa,https://biolit.fr/sorties/sortie-6dc15fa4-c675-447d-bfa1-052035d047aa/,Dodode,,10/27/2017 0:00,12.0000000,15.0000000,43.272873000000,5.362336000000,,Plage du Prophète,46911,observation-6dc15fa4-c675-447d-bfa1-052035d047aa-8,https://biolit.fr/observations/observation-6dc15fa4-c675-447d-bfa1-052035d047aa-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171027_13_37_28_Pro.jpg,,FALSE, +N1,60263,sortie-6dc15fa4-c675-447d-bfa1-052035d047aa,https://biolit.fr/sorties/sortie-6dc15fa4-c675-447d-bfa1-052035d047aa/,Dodode,,10/27/2017 0:00,12.0000000,15.0000000,43.272873000000,5.362336000000,,Plage du Prophète,46913,observation-6dc15fa4-c675-447d-bfa1-052035d047aa-9,https://biolit.fr/observations/observation-6dc15fa4-c675-447d-bfa1-052035d047aa-9/,Caulerpa cylindracea,Caulerpe cylindracée,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/WP_20171027_13_36_30_Pro.jpg,,TRUE, +N1,60263,sortie-6dc15fa4-c675-447d-bfa1-052035d047aa,https://biolit.fr/sorties/sortie-6dc15fa4-c675-447d-bfa1-052035d047aa/,Dodode,,10/27/2017 0:00,12.0000000,15.0000000,43.272873000000,5.362336000000,,Plage du Prophète,46915,observation-6dc15fa4-c675-447d-bfa1-052035d047aa-10,https://biolit.fr/observations/observation-6dc15fa4-c675-447d-bfa1-052035d047aa-10/,Ulva spp.,Ulve rigide,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171027_13_34_33_Pro.jpg,,TRUE, +N1,60263,sortie-6dc15fa4-c675-447d-bfa1-052035d047aa,https://biolit.fr/sorties/sortie-6dc15fa4-c675-447d-bfa1-052035d047aa/,Dodode,,10/27/2017 0:00,12.0000000,15.0000000,43.272873000000,5.362336000000,,Plage du Prophète,46917,observation-6dc15fa4-c675-447d-bfa1-052035d047aa-11,https://biolit.fr/observations/observation-6dc15fa4-c675-447d-bfa1-052035d047aa-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171027_13_34_20_Pro.jpg,,FALSE, +N1,60263,sortie-6dc15fa4-c675-447d-bfa1-052035d047aa,https://biolit.fr/sorties/sortie-6dc15fa4-c675-447d-bfa1-052035d047aa/,Dodode,,10/27/2017 0:00,12.0000000,15.0000000,43.272873000000,5.362336000000,,Plage du Prophète,46919,observation-6dc15fa4-c675-447d-bfa1-052035d047aa-12,https://biolit.fr/observations/observation-6dc15fa4-c675-447d-bfa1-052035d047aa-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171027_13_33_42_Pro.jpg,,FALSE, +N1,60263,sortie-6dc15fa4-c675-447d-bfa1-052035d047aa,https://biolit.fr/sorties/sortie-6dc15fa4-c675-447d-bfa1-052035d047aa/,Dodode,,10/27/2017 0:00,12.0000000,15.0000000,43.272873000000,5.362336000000,,Plage du Prophète,46921,observation-6dc15fa4-c675-447d-bfa1-052035d047aa-13,https://biolit.fr/observations/observation-6dc15fa4-c675-447d-bfa1-052035d047aa-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171027_13_32_16_Pro-rotated.jpg,,FALSE, +N1,60263,sortie-6dc15fa4-c675-447d-bfa1-052035d047aa,https://biolit.fr/sorties/sortie-6dc15fa4-c675-447d-bfa1-052035d047aa/,Dodode,,10/27/2017 0:00,12.0000000,15.0000000,43.272873000000,5.362336000000,,Plage du Prophète,46923,observation-6dc15fa4-c675-447d-bfa1-052035d047aa-14,https://biolit.fr/observations/observation-6dc15fa4-c675-447d-bfa1-052035d047aa-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171027_13_30_48_Pro.jpg,,FALSE, +N1,60263,sortie-6dc15fa4-c675-447d-bfa1-052035d047aa,https://biolit.fr/sorties/sortie-6dc15fa4-c675-447d-bfa1-052035d047aa/,Dodode,,10/27/2017 0:00,12.0000000,15.0000000,43.272873000000,5.362336000000,,Plage du Prophète,46925,observation-6dc15fa4-c675-447d-bfa1-052035d047aa-15,https://biolit.fr/observations/observation-6dc15fa4-c675-447d-bfa1-052035d047aa-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171027_13_29_56_Pro-rotated.jpg,,FALSE, +N1,60264,sortie-25ef581d-bc53-4628-9556-266c9f45e8f9,https://biolit.fr/sorties/sortie-25ef581d-bc53-4628-9556-266c9f45e8f9/,Phil,,9/19/2017 0:00,13.0000000,13.0:55,48.060656000000,-4.672107000000,,Cleden Cap-Sizun - Finistère,46927,observation-25ef581d-bc53-4628-9556-266c9f45e8f9,https://biolit.fr/observations/observation-25ef581d-bc53-4628-9556-266c9f45e8f9/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1080430.JPG,,TRUE, +N1,60264,sortie-25ef581d-bc53-4628-9556-266c9f45e8f9,https://biolit.fr/sorties/sortie-25ef581d-bc53-4628-9556-266c9f45e8f9/,Phil,,9/19/2017 0:00,13.0000000,13.0:55,48.060656000000,-4.672107000000,,Cleden Cap-Sizun - Finistère,46929,observation-25ef581d-bc53-4628-9556-266c9f45e8f9-2,https://biolit.fr/observations/observation-25ef581d-bc53-4628-9556-266c9f45e8f9-2/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1080438.JPG,,TRUE, +N1,60264,sortie-25ef581d-bc53-4628-9556-266c9f45e8f9,https://biolit.fr/sorties/sortie-25ef581d-bc53-4628-9556-266c9f45e8f9/,Phil,,9/19/2017 0:00,13.0000000,13.0:55,48.060656000000,-4.672107000000,,Cleden Cap-Sizun - Finistère,46931,observation-25ef581d-bc53-4628-9556-266c9f45e8f9-3,https://biolit.fr/observations/observation-25ef581d-bc53-4628-9556-266c9f45e8f9-3/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1080417.JPG,,TRUE, +N1,60264,sortie-25ef581d-bc53-4628-9556-266c9f45e8f9,https://biolit.fr/sorties/sortie-25ef581d-bc53-4628-9556-266c9f45e8f9/,Phil,,9/19/2017 0:00,13.0000000,13.0:55,48.060656000000,-4.672107000000,,Cleden Cap-Sizun - Finistère,46933,observation-25ef581d-bc53-4628-9556-266c9f45e8f9-4,https://biolit.fr/observations/observation-25ef581d-bc53-4628-9556-266c9f45e8f9-4/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1080436.JPG,,TRUE, +N1,60264,sortie-25ef581d-bc53-4628-9556-266c9f45e8f9,https://biolit.fr/sorties/sortie-25ef581d-bc53-4628-9556-266c9f45e8f9/,Phil,,9/19/2017 0:00,13.0000000,13.0:55,48.060656000000,-4.672107000000,,Cleden Cap-Sizun - Finistère,46935,observation-25ef581d-bc53-4628-9556-266c9f45e8f9-5,https://biolit.fr/observations/observation-25ef581d-bc53-4628-9556-266c9f45e8f9-5/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1080437.JPG,,TRUE, +N1,60264,sortie-25ef581d-bc53-4628-9556-266c9f45e8f9,https://biolit.fr/sorties/sortie-25ef581d-bc53-4628-9556-266c9f45e8f9/,Phil,,9/19/2017 0:00,13.0000000,13.0:55,48.060656000000,-4.672107000000,,Cleden Cap-Sizun - Finistère,46937,observation-25ef581d-bc53-4628-9556-266c9f45e8f9-6,https://biolit.fr/observations/observation-25ef581d-bc53-4628-9556-266c9f45e8f9-6/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1080440.JPG,,TRUE, +N1,60264,sortie-25ef581d-bc53-4628-9556-266c9f45e8f9,https://biolit.fr/sorties/sortie-25ef581d-bc53-4628-9556-266c9f45e8f9/,Phil,,9/19/2017 0:00,13.0000000,13.0:55,48.060656000000,-4.672107000000,,Cleden Cap-Sizun - Finistère,46939,observation-25ef581d-bc53-4628-9556-266c9f45e8f9-7,https://biolit.fr/observations/observation-25ef581d-bc53-4628-9556-266c9f45e8f9-7/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/2023/07/P1080442.JPG,,TRUE, +N1,60265,sortie-d4058ad8-362b-4a1d-bacb-89de17c00b8d,https://biolit.fr/sorties/sortie-d4058ad8-362b-4a1d-bacb-89de17c00b8d/,Phil,,10/26/2017 0:00,15.0000000,15.0:55,48.096478000000,-4.335495000000,,Douarnenez - Finistère,46941,observation-d4058ad8-362b-4a1d-bacb-89de17c00b8d,https://biolit.fr/observations/observation-d4058ad8-362b-4a1d-bacb-89de17c00b8d/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20171026_155438.jpg,,TRUE, +N1,60265,sortie-d4058ad8-362b-4a1d-bacb-89de17c00b8d,https://biolit.fr/sorties/sortie-d4058ad8-362b-4a1d-bacb-89de17c00b8d/,Phil,,10/26/2017 0:00,15.0000000,15.0:55,48.096478000000,-4.335495000000,,Douarnenez - Finistère,46943,observation-d4058ad8-362b-4a1d-bacb-89de17c00b8d-2,https://biolit.fr/observations/observation-d4058ad8-362b-4a1d-bacb-89de17c00b8d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171026_155510.jpg,,FALSE, +N1,60265,sortie-d4058ad8-362b-4a1d-bacb-89de17c00b8d,https://biolit.fr/sorties/sortie-d4058ad8-362b-4a1d-bacb-89de17c00b8d/,Phil,,10/26/2017 0:00,15.0000000,15.0:55,48.096478000000,-4.335495000000,,Douarnenez - Finistère,46945,observation-d4058ad8-362b-4a1d-bacb-89de17c00b8d-3,https://biolit.fr/observations/observation-d4058ad8-362b-4a1d-bacb-89de17c00b8d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171026_155554.jpg,,FALSE, +N1,60266,sortie-86359fdc-097b-4d9b-85d0-2d47751819e0,https://biolit.fr/sorties/sortie-86359fdc-097b-4d9b-85d0-2d47751819e0/,Phil,,6/18/2017 0:00,12.0000000,12.0:15,47.708827000000,-3.995095000000,,Fouesnant - Finistère,46947,observation-86359fdc-097b-4d9b-85d0-2d47751819e0,https://biolit.fr/observations/observation-86359fdc-097b-4d9b-85d0-2d47751819e0/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070558.JPG,,FALSE, +N1,60266,sortie-86359fdc-097b-4d9b-85d0-2d47751819e0,https://biolit.fr/sorties/sortie-86359fdc-097b-4d9b-85d0-2d47751819e0/,Phil,,6/18/2017 0:00,12.0000000,12.0:15,47.708827000000,-3.995095000000,,Fouesnant - Finistère,46949,observation-86359fdc-097b-4d9b-85d0-2d47751819e0-2,https://biolit.fr/observations/observation-86359fdc-097b-4d9b-85d0-2d47751819e0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070537.JPG,,FALSE, +N1,60266,sortie-86359fdc-097b-4d9b-85d0-2d47751819e0,https://biolit.fr/sorties/sortie-86359fdc-097b-4d9b-85d0-2d47751819e0/,Phil,,6/18/2017 0:00,12.0000000,12.0:15,47.708827000000,-3.995095000000,,Fouesnant - Finistère,46951,observation-86359fdc-097b-4d9b-85d0-2d47751819e0-3,https://biolit.fr/observations/observation-86359fdc-097b-4d9b-85d0-2d47751819e0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070559.JPG,,FALSE, +N1,60267,sortie-1c1f3f1f-5688-4745-9e04-6dc5e381f979,https://biolit.fr/sorties/sortie-1c1f3f1f-5688-4745-9e04-6dc5e381f979/,Phil,,10/26/2017 0:00,15.0:55,16.000005,48.097220000000,-4.335257000000,,Douarnenez - Finistère,46953,observation-1c1f3f1f-5688-4745-9e04-6dc5e381f979,https://biolit.fr/observations/observation-1c1f3f1f-5688-4745-9e04-6dc5e381f979/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20171026_155644.jpg,,TRUE, +N1,60267,sortie-1c1f3f1f-5688-4745-9e04-6dc5e381f979,https://biolit.fr/sorties/sortie-1c1f3f1f-5688-4745-9e04-6dc5e381f979/,Phil,,10/26/2017 0:00,15.0:55,16.000005,48.097220000000,-4.335257000000,,Douarnenez - Finistère,46955,observation-1c1f3f1f-5688-4745-9e04-6dc5e381f979-2,https://biolit.fr/observations/observation-1c1f3f1f-5688-4745-9e04-6dc5e381f979-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171026_155919.jpg,,FALSE, +N1,60268,sortie-1048ba6f-774d-4415-a704-5d6258f839b7,https://biolit.fr/sorties/sortie-1048ba6f-774d-4415-a704-5d6258f839b7/,EMMAB,,10/26/2017 0:00,11.0000000,15.0000000,43.357541000000,5.290466000000,,Plage de l'estaue,46957,observation-1048ba6f-774d-4415-a704-5d6258f839b7,https://biolit.fr/observations/observation-1048ba6f-774d-4415-a704-5d6258f839b7/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/FILE0106-scaled.jpg,,TRUE, +N1,60268,sortie-1048ba6f-774d-4415-a704-5d6258f839b7,https://biolit.fr/sorties/sortie-1048ba6f-774d-4415-a704-5d6258f839b7/,EMMAB,,10/26/2017 0:00,11.0000000,15.0000000,43.357541000000,5.290466000000,,Plage de l'estaue,46959,observation-1048ba6f-774d-4415-a704-5d6258f839b7-2,https://biolit.fr/observations/observation-1048ba6f-774d-4415-a704-5d6258f839b7-2/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/FILE0099-scaled.jpg,,TRUE, +N1,60268,sortie-1048ba6f-774d-4415-a704-5d6258f839b7,https://biolit.fr/sorties/sortie-1048ba6f-774d-4415-a704-5d6258f839b7/,EMMAB,,10/26/2017 0:00,11.0000000,15.0000000,43.357541000000,5.290466000000,,Plage de l'estaue,46961,observation-1048ba6f-774d-4415-a704-5d6258f839b7-3,https://biolit.fr/observations/observation-1048ba6f-774d-4415-a704-5d6258f839b7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/FILE0097-scaled.jpg,,FALSE, +N1,60268,sortie-1048ba6f-774d-4415-a704-5d6258f839b7,https://biolit.fr/sorties/sortie-1048ba6f-774d-4415-a704-5d6258f839b7/,EMMAB,,10/26/2017 0:00,11.0000000,15.0000000,43.357541000000,5.290466000000,,Plage de l'estaue,46963,observation-1048ba6f-774d-4415-a704-5d6258f839b7-4,https://biolit.fr/observations/observation-1048ba6f-774d-4415-a704-5d6258f839b7-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/FILE0081-scaled.jpg,,TRUE, +N1,60268,sortie-1048ba6f-774d-4415-a704-5d6258f839b7,https://biolit.fr/sorties/sortie-1048ba6f-774d-4415-a704-5d6258f839b7/,EMMAB,,10/26/2017 0:00,11.0000000,15.0000000,43.357541000000,5.290466000000,,Plage de l'estaue,46964,observation-1048ba6f-774d-4415-a704-5d6258f839b7-5,https://biolit.fr/observations/observation-1048ba6f-774d-4415-a704-5d6258f839b7-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/FILE0059-scaled.jpg,,FALSE, +N1,60268,sortie-1048ba6f-774d-4415-a704-5d6258f839b7,https://biolit.fr/sorties/sortie-1048ba6f-774d-4415-a704-5d6258f839b7/,EMMAB,,10/26/2017 0:00,11.0000000,15.0000000,43.357541000000,5.290466000000,,Plage de l'estaue,46966,observation-1048ba6f-774d-4415-a704-5d6258f839b7-6,https://biolit.fr/observations/observation-1048ba6f-774d-4415-a704-5d6258f839b7-6/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/FILE0049-scaled.jpg,,TRUE, +N1,60268,sortie-1048ba6f-774d-4415-a704-5d6258f839b7,https://biolit.fr/sorties/sortie-1048ba6f-774d-4415-a704-5d6258f839b7/,EMMAB,,10/26/2017 0:00,11.0000000,15.0000000,43.357541000000,5.290466000000,,Plage de l'estaue,46968,observation-1048ba6f-774d-4415-a704-5d6258f839b7-7,https://biolit.fr/observations/observation-1048ba6f-774d-4415-a704-5d6258f839b7-7/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/FILE0047-scaled.jpg,,TRUE, +N1,60268,sortie-1048ba6f-774d-4415-a704-5d6258f839b7,https://biolit.fr/sorties/sortie-1048ba6f-774d-4415-a704-5d6258f839b7/,EMMAB,,10/26/2017 0:00,11.0000000,15.0000000,43.357541000000,5.290466000000,,Plage de l'estaue,46970,observation-1048ba6f-774d-4415-a704-5d6258f839b7-8,https://biolit.fr/observations/observation-1048ba6f-774d-4415-a704-5d6258f839b7-8/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/FILE0038-scaled.jpg,,TRUE, +N1,60268,sortie-1048ba6f-774d-4415-a704-5d6258f839b7,https://biolit.fr/sorties/sortie-1048ba6f-774d-4415-a704-5d6258f839b7/,EMMAB,,10/26/2017 0:00,11.0000000,15.0000000,43.357541000000,5.290466000000,,Plage de l'estaue,46972,observation-1048ba6f-774d-4415-a704-5d6258f839b7-9,https://biolit.fr/observations/observation-1048ba6f-774d-4415-a704-5d6258f839b7-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/FILE0035-scaled.jpg,,FALSE, +N1,60268,sortie-1048ba6f-774d-4415-a704-5d6258f839b7,https://biolit.fr/sorties/sortie-1048ba6f-774d-4415-a704-5d6258f839b7/,EMMAB,,10/26/2017 0:00,11.0000000,15.0000000,43.357541000000,5.290466000000,,Plage de l'estaue,46974,observation-1048ba6f-774d-4415-a704-5d6258f839b7-10,https://biolit.fr/observations/observation-1048ba6f-774d-4415-a704-5d6258f839b7-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/FILE0019-scaled.jpg,,FALSE, +N1,60268,sortie-1048ba6f-774d-4415-a704-5d6258f839b7,https://biolit.fr/sorties/sortie-1048ba6f-774d-4415-a704-5d6258f839b7/,EMMAB,,10/26/2017 0:00,11.0000000,15.0000000,43.357541000000,5.290466000000,,Plage de l'estaue,46976,observation-1048ba6f-774d-4415-a704-5d6258f839b7-11,https://biolit.fr/observations/observation-1048ba6f-774d-4415-a704-5d6258f839b7-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/FILE0010-scaled.jpg,,FALSE, +N1,60268,sortie-1048ba6f-774d-4415-a704-5d6258f839b7,https://biolit.fr/sorties/sortie-1048ba6f-774d-4415-a704-5d6258f839b7/,EMMAB,,10/26/2017 0:00,11.0000000,15.0000000,43.357541000000,5.290466000000,,Plage de l'estaue,46978,observation-1048ba6f-774d-4415-a704-5d6258f839b7-12,https://biolit.fr/observations/observation-1048ba6f-774d-4415-a704-5d6258f839b7-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/FILE0004-scaled.jpg,,FALSE, +N1,60269,sortie-5ff59285-765f-4f6d-adfe-add09dc99c46,https://biolit.fr/sorties/sortie-5ff59285-765f-4f6d-adfe-add09dc99c46/,Phil,,10/26/2017 0:00,15.0:45,15.0000000,48.096993000000,-4.335544000000,,Douarnenez - Finistère,46980,observation-5ff59285-765f-4f6d-adfe-add09dc99c46,https://biolit.fr/observations/observation-5ff59285-765f-4f6d-adfe-add09dc99c46/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20171026_154647.jpg,,TRUE, +N1,60269,sortie-5ff59285-765f-4f6d-adfe-add09dc99c46,https://biolit.fr/sorties/sortie-5ff59285-765f-4f6d-adfe-add09dc99c46/,Phil,,10/26/2017 0:00,15.0:45,15.0000000,48.096993000000,-4.335544000000,,Douarnenez - Finistère,46982,observation-5ff59285-765f-4f6d-adfe-add09dc99c46-2,https://biolit.fr/observations/observation-5ff59285-765f-4f6d-adfe-add09dc99c46-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20171026_154553.jpg,,TRUE, +N1,60269,sortie-5ff59285-765f-4f6d-adfe-add09dc99c46,https://biolit.fr/sorties/sortie-5ff59285-765f-4f6d-adfe-add09dc99c46/,Phil,,10/26/2017 0:00,15.0:45,15.0000000,48.096993000000,-4.335544000000,,Douarnenez - Finistère,46984,observation-5ff59285-765f-4f6d-adfe-add09dc99c46-3,https://biolit.fr/observations/observation-5ff59285-765f-4f6d-adfe-add09dc99c46-3/,Lutraria lutraria,Lutraire elliptique,,https://biolit.fr/wp-content/uploads/2023/07/20171026_154534.jpg,,TRUE, +N1,60270,sortie-10ba0b6f-8677-443d-9495-0139d4512775,https://biolit.fr/sorties/sortie-10ba0b6f-8677-443d-9495-0139d4512775/,Peace01,,10/13/2017 0:00,11.0000000,16.0000000,43.211872000000,5.454081000000,,Calanques de sugiton,46986,observation-10ba0b6f-8677-443d-9495-0139d4512775,https://biolit.fr/observations/observation-10ba0b6f-8677-443d-9495-0139d4512775/,,,,https://biolit.fr/wp-content/uploads/2023/07/bioli 2-scaled.jpg,,FALSE, +N1,60271,sortie-e9beffff-3516-4969-bb81-058e3097cdda,https://biolit.fr/sorties/sortie-e9beffff-3516-4969-bb81-058e3097cdda/,melany,,10/13/2017 0:00,11.0000000,15.0000000,43.211869000000,5.454171000000,,plage de sugiton,46988,observation-e9beffff-3516-4969-bb81-058e3097cdda,https://biolit.fr/observations/observation-e9beffff-3516-4969-bb81-058e3097cdda/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171013_125540-scaled.jpg,,FALSE, +N1,60271,sortie-e9beffff-3516-4969-bb81-058e3097cdda,https://biolit.fr/sorties/sortie-e9beffff-3516-4969-bb81-058e3097cdda/,melany,,10/13/2017 0:00,11.0000000,15.0000000,43.211869000000,5.454171000000,,plage de sugiton,46990,observation-e9beffff-3516-4969-bb81-058e3097cdda-2,https://biolit.fr/observations/observation-e9beffff-3516-4969-bb81-058e3097cdda-2/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/20171013_131215-scaled.jpg,,TRUE, +N1,60271,sortie-e9beffff-3516-4969-bb81-058e3097cdda,https://biolit.fr/sorties/sortie-e9beffff-3516-4969-bb81-058e3097cdda/,melany,,10/13/2017 0:00,11.0000000,15.0000000,43.211869000000,5.454171000000,,plage de sugiton,46992,observation-e9beffff-3516-4969-bb81-058e3097cdda-3,https://biolit.fr/observations/observation-e9beffff-3516-4969-bb81-058e3097cdda-3/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/20171013_131224-scaled.jpg,,TRUE, +N1,60271,sortie-e9beffff-3516-4969-bb81-058e3097cdda,https://biolit.fr/sorties/sortie-e9beffff-3516-4969-bb81-058e3097cdda/,melany,,10/13/2017 0:00,11.0000000,15.0000000,43.211869000000,5.454171000000,,plage de sugiton,46994,observation-e9beffff-3516-4969-bb81-058e3097cdda-4,https://biolit.fr/observations/observation-e9beffff-3516-4969-bb81-058e3097cdda-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171013_143710-scaled.jpg,,FALSE, +N1,60272,sortie-0036759b-55ec-4433-96fb-9bf822e4d4c4,https://biolit.fr/sorties/sortie-0036759b-55ec-4433-96fb-9bf822e4d4c4/,Peace01,,10/12/2017,14.0000000,17.0000000,43.253047000000,5.372375000000,, Plage de Bonneveine,46996,observation-0036759b-55ec-4433-96fb-9bf822e4d4c4,https://biolit.fr/observations/observation-0036759b-55ec-4433-96fb-9bf822e4d4c4/,,,,https://biolit.fr/wp-content/uploads/2023/07/thumbnail_IMG_20171012_155510.jpg,,FALSE, +N1,60273,sortie-f7c765b5-791a-4bc3-b8f8-d12570ad98e7,https://biolit.fr/sorties/sortie-f7c765b5-791a-4bc3-b8f8-d12570ad98e7/,melany,,10/26/2017 0:00,15.0000000,17.0000000,43.357478000000,5.290241000000,,plage de la batterie,46998,observation-f7c765b5-791a-4bc3-b8f8-d12570ad98e7,https://biolit.fr/observations/observation-f7c765b5-791a-4bc3-b8f8-d12570ad98e7/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/2023/07/20171026_135907-scaled.jpg,,TRUE, +N1,60273,sortie-f7c765b5-791a-4bc3-b8f8-d12570ad98e7,https://biolit.fr/sorties/sortie-f7c765b5-791a-4bc3-b8f8-d12570ad98e7/,melany,,10/26/2017 0:00,15.0000000,17.0000000,43.357478000000,5.290241000000,,plage de la batterie,47000,observation-f7c765b5-791a-4bc3-b8f8-d12570ad98e7-2,https://biolit.fr/observations/observation-f7c765b5-791a-4bc3-b8f8-d12570ad98e7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171026_125234-scaled.jpg,,FALSE, +N1,60273,sortie-f7c765b5-791a-4bc3-b8f8-d12570ad98e7,https://biolit.fr/sorties/sortie-f7c765b5-791a-4bc3-b8f8-d12570ad98e7/,melany,,10/26/2017 0:00,15.0000000,17.0000000,43.357478000000,5.290241000000,,plage de la batterie,47002,observation-f7c765b5-791a-4bc3-b8f8-d12570ad98e7-3,https://biolit.fr/observations/observation-f7c765b5-791a-4bc3-b8f8-d12570ad98e7-3/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/20171026_133250-scaled.jpg,,TRUE, +N1,60273,sortie-f7c765b5-791a-4bc3-b8f8-d12570ad98e7,https://biolit.fr/sorties/sortie-f7c765b5-791a-4bc3-b8f8-d12570ad98e7/,melany,,10/26/2017 0:00,15.0000000,17.0000000,43.357478000000,5.290241000000,,plage de la batterie,47004,observation-f7c765b5-791a-4bc3-b8f8-d12570ad98e7-4,https://biolit.fr/observations/observation-f7c765b5-791a-4bc3-b8f8-d12570ad98e7-4/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/20171026_133302-scaled.jpg,,TRUE, +N1,60273,sortie-f7c765b5-791a-4bc3-b8f8-d12570ad98e7,https://biolit.fr/sorties/sortie-f7c765b5-791a-4bc3-b8f8-d12570ad98e7/,melany,,10/26/2017 0:00,15.0000000,17.0000000,43.357478000000,5.290241000000,,plage de la batterie,47006,observation-f7c765b5-791a-4bc3-b8f8-d12570ad98e7-5,https://biolit.fr/observations/observation-f7c765b5-791a-4bc3-b8f8-d12570ad98e7-5/,Ulva sp. groupe intestinalis,Ulves tubuleuses du groupe intestinalis,,https://biolit.fr/wp-content/uploads/2023/07/20171026_134824-scaled.jpg,,TRUE, +N1,60273,sortie-f7c765b5-791a-4bc3-b8f8-d12570ad98e7,https://biolit.fr/sorties/sortie-f7c765b5-791a-4bc3-b8f8-d12570ad98e7/,melany,,10/26/2017 0:00,15.0000000,17.0000000,43.357478000000,5.290241000000,,plage de la batterie,47008,observation-f7c765b5-791a-4bc3-b8f8-d12570ad98e7-6,https://biolit.fr/observations/observation-f7c765b5-791a-4bc3-b8f8-d12570ad98e7-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171026_125025-scaled.jpg,,FALSE, +N1,60273,sortie-f7c765b5-791a-4bc3-b8f8-d12570ad98e7,https://biolit.fr/sorties/sortie-f7c765b5-791a-4bc3-b8f8-d12570ad98e7/,melany,,10/26/2017 0:00,15.0000000,17.0000000,43.357478000000,5.290241000000,,plage de la batterie,47010,observation-f7c765b5-791a-4bc3-b8f8-d12570ad98e7-7,https://biolit.fr/observations/observation-f7c765b5-791a-4bc3-b8f8-d12570ad98e7-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171026_125013-scaled.jpg,,FALSE, +N1,60274,sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24,https://biolit.fr/sorties/sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24/,Dodode,,10/19/2017 0:00,11.0000000,17.0000000,43.290657000000,5.355367000000,,Anse des Catalans,47012,observation-f54e5cd7-3337-4e48-b793-dfded0f95c24,https://biolit.fr/observations/observation-f54e5cd7-3337-4e48-b793-dfded0f95c24/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171019_10_46_23_Pro-rotated.jpg,,FALSE, +N1,60274,sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24,https://biolit.fr/sorties/sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24/,Dodode,,10/19/2017 0:00,11.0000000,17.0000000,43.290657000000,5.355367000000,,Anse des Catalans,47014,observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-2,https://biolit.fr/observations/observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171019_10_43_42_Pro-rotated.jpg,,FALSE, +N1,60274,sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24,https://biolit.fr/sorties/sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24/,Dodode,,10/19/2017 0:00,11.0000000,17.0000000,43.290657000000,5.355367000000,,Anse des Catalans,47016,observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-3,https://biolit.fr/observations/observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171019_10_41_03_Pro.jpg,,FALSE, +N1,60274,sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24,https://biolit.fr/sorties/sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24/,Dodode,,10/19/2017 0:00,11.0000000,17.0000000,43.290657000000,5.355367000000,,Anse des Catalans,47018,observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-4,https://biolit.fr/observations/observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171019_10_40_09_Pro.jpg,,FALSE, +N1,60274,sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24,https://biolit.fr/sorties/sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24/,Dodode,,10/19/2017 0:00,11.0000000,17.0000000,43.290657000000,5.355367000000,,Anse des Catalans,47020,observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-5,https://biolit.fr/observations/observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-5/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171019_10_38_24_Pro.jpg,,TRUE, +N1,60274,sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24,https://biolit.fr/sorties/sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24/,Dodode,,10/19/2017 0:00,11.0000000,17.0000000,43.290657000000,5.355367000000,,Anse des Catalans,47022,observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-6,https://biolit.fr/observations/observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-6/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171019_10_38_13_Pro.jpg,,TRUE, +N1,60274,sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24,https://biolit.fr/sorties/sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24/,Dodode,,10/19/2017 0:00,11.0000000,17.0000000,43.290657000000,5.355367000000,,Anse des Catalans,47024,observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-7,https://biolit.fr/observations/observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-7/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171019_10_38_06_Pro.jpg,,TRUE, +N1,60274,sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24,https://biolit.fr/sorties/sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24/,Dodode,,10/19/2017 0:00,11.0000000,17.0000000,43.290657000000,5.355367000000,,Anse des Catalans,47026,observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-8,https://biolit.fr/observations/observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-8/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171019_10_37_30_Pro.jpg,,TRUE, +N1,60274,sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24,https://biolit.fr/sorties/sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24/,Dodode,,10/19/2017 0:00,11.0000000,17.0000000,43.290657000000,5.355367000000,,Anse des Catalans,47028,observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-9,https://biolit.fr/observations/observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-9/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171019_10_37_27_Pro.jpg,,TRUE, +N1,60274,sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24,https://biolit.fr/sorties/sortie-f54e5cd7-3337-4e48-b793-dfded0f95c24/,Dodode,,10/19/2017 0:00,11.0000000,17.0000000,43.290657000000,5.355367000000,,Anse des Catalans,47030,observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-10,https://biolit.fr/observations/observation-f54e5cd7-3337-4e48-b793-dfded0f95c24-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/WP_20171019_10_36_14_Pro.jpg,,FALSE, +N1,60275,sortie-c98a59df-b116-48a3-814b-8a9dfd000e0f,https://biolit.fr/sorties/sortie-c98a59df-b116-48a3-814b-8a9dfd000e0f/,LucileA,,10/18/2017 0:00,15.0000000,17.0000000,48.640444000000,-2.072903000000,,Saint Enogat,47032,observation-c98a59df-b116-48a3-814b-8a9dfd000e0f,https://biolit.fr/observations/observation-c98a59df-b116-48a3-814b-8a9dfd000e0f/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7465_0-scaled.jpg,,TRUE, +N1,60276,sortie-cdef8f01-f8d8-4b75-b404-cda959229ed2,https://biolit.fr/sorties/sortie-cdef8f01-f8d8-4b75-b404-cda959229ed2/,Phil,,9/19/2017 0:00,13.000005,13.0:25,48.049292000000,-4.706188000000,,Cléden-Cap-Sizun - Finistère,47034,observation-cdef8f01-f8d8-4b75-b404-cda959229ed2,https://biolit.fr/observations/observation-cdef8f01-f8d8-4b75-b404-cda959229ed2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080370.JPG,,FALSE, +N1,60276,sortie-cdef8f01-f8d8-4b75-b404-cda959229ed2,https://biolit.fr/sorties/sortie-cdef8f01-f8d8-4b75-b404-cda959229ed2/,Phil,,9/19/2017 0:00,13.000005,13.0:25,48.049292000000,-4.706188000000,,Cléden-Cap-Sizun - Finistère,47036,observation-cdef8f01-f8d8-4b75-b404-cda959229ed2-2,https://biolit.fr/observations/observation-cdef8f01-f8d8-4b75-b404-cda959229ed2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080375.JPG,,FALSE, +N1,60276,sortie-cdef8f01-f8d8-4b75-b404-cda959229ed2,https://biolit.fr/sorties/sortie-cdef8f01-f8d8-4b75-b404-cda959229ed2/,Phil,,9/19/2017 0:00,13.000005,13.0:25,48.049292000000,-4.706188000000,,Cléden-Cap-Sizun - Finistère,47038,observation-cdef8f01-f8d8-4b75-b404-cda959229ed2-3,https://biolit.fr/observations/observation-cdef8f01-f8d8-4b75-b404-cda959229ed2-3/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1080377.JPG,,TRUE, +N1,60276,sortie-cdef8f01-f8d8-4b75-b404-cda959229ed2,https://biolit.fr/sorties/sortie-cdef8f01-f8d8-4b75-b404-cda959229ed2/,Phil,,9/19/2017 0:00,13.000005,13.0:25,48.049292000000,-4.706188000000,,Cléden-Cap-Sizun - Finistère,47040,observation-cdef8f01-f8d8-4b75-b404-cda959229ed2-4,https://biolit.fr/observations/observation-cdef8f01-f8d8-4b75-b404-cda959229ed2-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080378.JPG,,TRUE, +N1,60276,sortie-cdef8f01-f8d8-4b75-b404-cda959229ed2,https://biolit.fr/sorties/sortie-cdef8f01-f8d8-4b75-b404-cda959229ed2/,Phil,,9/19/2017 0:00,13.000005,13.0:25,48.049292000000,-4.706188000000,,Cléden-Cap-Sizun - Finistère,47044,observation-cdef8f01-f8d8-4b75-b404-cda959229ed2-6,https://biolit.fr/observations/observation-cdef8f01-f8d8-4b75-b404-cda959229ed2-6/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1080362.JPG,,TRUE, +N1,60277,sortie-db948830-70d7-4217-be1a-583759c37e29,https://biolit.fr/sorties/sortie-db948830-70d7-4217-be1a-583759c37e29/,Nicolas,,10/19/2017 0:00,11.0000000,13.0000000,46.110231000000,-1.139891000000,,Pointe du Chay,47046,observation-db948830-70d7-4217-be1a-583759c37e29,https://biolit.fr/observations/observation-db948830-70d7-4217-be1a-583759c37e29/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171017_115119-scaled.jpg,,TRUE, +N1,60277,sortie-db948830-70d7-4217-be1a-583759c37e29,https://biolit.fr/sorties/sortie-db948830-70d7-4217-be1a-583759c37e29/,Nicolas,,10/19/2017 0:00,11.0000000,13.0000000,46.110231000000,-1.139891000000,,Pointe du Chay,47048,observation-db948830-70d7-4217-be1a-583759c37e29-2,https://biolit.fr/observations/observation-db948830-70d7-4217-be1a-583759c37e29-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171017_111300.jpg,,FALSE, +N1,60278,sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7,https://biolit.fr/sorties/sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7/,Sophie Etienne,,10/22/2017 0:00,18.0000000,20.0000000,43.158727000000,5.617291000000,,ile verte,47050,observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7,https://biolit.fr/observations/observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20171022_103705A.png,,FALSE, +N1,60278,sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7,https://biolit.fr/sorties/sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7/,Sophie Etienne,,10/22/2017 0:00,18.0000000,20.0000000,43.158727000000,5.617291000000,,ile verte,47052,observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-2,https://biolit.fr/observations/observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-2/,Sparus aurata,Dorade (daurade) royale,,https://biolit.fr/wp-content/uploads/2023/07/20171022_104036A.png,,TRUE, +N1,60278,sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7,https://biolit.fr/sorties/sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7/,Sophie Etienne,,10/22/2017 0:00,18.0000000,20.0000000,43.158727000000,5.617291000000,,ile verte,47054,observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-3,https://biolit.fr/observations/observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-3/,Caulerpa cylindracea,Caulerpe cylindracée,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20171022_104120A.png,,TRUE, +N1,60278,sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7,https://biolit.fr/sorties/sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7/,Sophie Etienne,,10/22/2017 0:00,18.0000000,20.0000000,43.158727000000,5.617291000000,,ile verte,47056,observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-4,https://biolit.fr/observations/observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-4/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/20171022_104544A.png,,TRUE, +N1,60278,sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7,https://biolit.fr/sorties/sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7/,Sophie Etienne,,10/22/2017 0:00,18.0000000,20.0000000,43.158727000000,5.617291000000,,ile verte,47058,observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-5,https://biolit.fr/observations/observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-5/,Echinaster (Echinaster) sepositus,Etoile de mer rouge,,https://biolit.fr/wp-content/uploads/2023/07/20171022_110252A.png,,TRUE, +N1,60278,sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7,https://biolit.fr/sorties/sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7/,Sophie Etienne,,10/22/2017 0:00,18.0000000,20.0000000,43.158727000000,5.617291000000,,ile verte,47060,observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-6,https://biolit.fr/observations/observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-6/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20171022_110325A.png,,TRUE, +N1,60278,sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7,https://biolit.fr/sorties/sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7/,Sophie Etienne,,10/22/2017 0:00,18.0000000,20.0000000,43.158727000000,5.617291000000,,ile verte,47062,observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-7,https://biolit.fr/observations/observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-7/,Apogon imberbis,Apogon,,https://biolit.fr/wp-content/uploads/2023/07/barbierhirondelle.png,,TRUE, +N1,60278,sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7,https://biolit.fr/sorties/sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7/,Sophie Etienne,,10/22/2017 0:00,18.0000000,20.0000000,43.158727000000,5.617291000000,,ile verte,47064,observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-8,https://biolit.fr/observations/observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/epongelephantseoct.png,,FALSE, +N1,60278,sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7,https://biolit.fr/sorties/sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7/,Sophie Etienne,,10/22/2017 0:00,18.0000000,20.0000000,43.158727000000,5.617291000000,,ile verte,47066,observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-9,https://biolit.fr/observations/observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/langoustese.png,,FALSE, +N1,60278,sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7,https://biolit.fr/sorties/sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7/,Sophie Etienne,,10/22/2017 0:00,18.0000000,20.0000000,43.158727000000,5.617291000000,,ile verte,47068,observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-10,https://biolit.fr/observations/observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-10/,Pinna nobilis,Grande nacre,,https://biolit.fr/wp-content/uploads/2023/07/nacre2.png,,TRUE, +N1,60278,sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7,https://biolit.fr/sorties/sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7/,Sophie Etienne,,10/22/2017 0:00,18.0000000,20.0000000,43.158727000000,5.617291000000,,ile verte,47070,observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-11,https://biolit.fr/observations/observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-11/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/2023/07/poulpese.png,,TRUE, +N1,60278,sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7,https://biolit.fr/sorties/sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7/,Sophie Etienne,,10/22/2017 0:00,18.0000000,20.0000000,43.158727000000,5.617291000000,,ile verte,47072,observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-12,https://biolit.fr/observations/observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-12/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/2023/07/saupes.png,,TRUE, +N1,60278,sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7,https://biolit.fr/sorties/sortie-fc0d92dc-a7fc-4130-b08a-0af8c43216e7/,Sophie Etienne,,10/22/2017 0:00,18.0000000,20.0000000,43.158727000000,5.617291000000,,ile verte,47074,observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-13,https://biolit.fr/observations/observation-fc0d92dc-a7fc-4130-b08a-0af8c43216e7-13/,Diplodus vulgaris,Sar à tête noire,,https://biolit.fr/wp-content/uploads/2023/07/sarsatetenoirese.png,,TRUE, +N1,60279,sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7,https://biolit.fr/sorties/sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7/,Fleur,,10/20/2017 0:00,15.0000000,15.0000000,43.214655000000,5.342663000000,,Anse de la Maronaise,47076,observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7,https://biolit.fr/observations/observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_9464.jpeg,,TRUE, +N1,60279,sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7,https://biolit.fr/sorties/sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7/,Fleur,,10/20/2017 0:00,15.0000000,15.0000000,43.214655000000,5.342663000000,,Anse de la Maronaise,47077,observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7-2,https://biolit.fr/observations/observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9465.jpeg,,FALSE, +N1,60279,sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7,https://biolit.fr/sorties/sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7/,Fleur,,10/20/2017 0:00,15.0000000,15.0000000,43.214655000000,5.342663000000,,Anse de la Maronaise,47078,observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7-3,https://biolit.fr/observations/observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7-3/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9466-scaled.jpg,,TRUE, +N1,60279,sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7,https://biolit.fr/sorties/sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7/,Fleur,,10/20/2017 0:00,15.0000000,15.0000000,43.214655000000,5.342663000000,,Anse de la Maronaise,47080,observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7-4,https://biolit.fr/observations/observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7-4/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_9467.jpeg,,TRUE, +N1,60279,sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7,https://biolit.fr/sorties/sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7/,Fleur,,10/20/2017 0:00,15.0000000,15.0000000,43.214655000000,5.342663000000,,Anse de la Maronaise,47081,observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7-5,https://biolit.fr/observations/observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7-5/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9470-scaled.jpg,,TRUE, +N1,60279,sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7,https://biolit.fr/sorties/sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7/,Fleur,,10/20/2017 0:00,15.0000000,15.0000000,43.214655000000,5.342663000000,,Anse de la Maronaise,47083,observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7-6,https://biolit.fr/observations/observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9472-scaled.jpg,,FALSE, +N1,60279,sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7,https://biolit.fr/sorties/sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7/,Fleur,,10/20/2017 0:00,15.0000000,15.0000000,43.214655000000,5.342663000000,,Anse de la Maronaise,47085,observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7-7,https://biolit.fr/observations/observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9475-scaled.jpg,,FALSE, +N1,60279,sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7,https://biolit.fr/sorties/sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7/,Fleur,,10/20/2017 0:00,15.0000000,15.0000000,43.214655000000,5.342663000000,,Anse de la Maronaise,47087,observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7-8,https://biolit.fr/observations/observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9476-scaled.jpg,,FALSE, +N1,60279,sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7,https://biolit.fr/sorties/sortie-9a5e4516-1e4d-4a38-9082-1f790969ddd7/,Fleur,,10/20/2017 0:00,15.0000000,15.0000000,43.214655000000,5.342663000000,,Anse de la Maronaise,47089,observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7-9,https://biolit.fr/observations/observation-9a5e4516-1e4d-4a38-9082-1f790969ddd7-9/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9479-scaled.jpg,,TRUE, +N1,60280,sortie-c2b5443b-9f99-4a74-9098-f457351e56f5,https://biolit.fr/sorties/sortie-c2b5443b-9f99-4a74-9098-f457351e56f5/,Phil,,6/18/2017 0:00,15.0000000,15.0:35,47.72048200000,-3.956067000000,,Fouesnant - Finistère,47091,observation-c2b5443b-9f99-4a74-9098-f457351e56f5,https://biolit.fr/observations/observation-c2b5443b-9f99-4a74-9098-f457351e56f5/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1070603.JPG,,TRUE, +N1,60280,sortie-c2b5443b-9f99-4a74-9098-f457351e56f5,https://biolit.fr/sorties/sortie-c2b5443b-9f99-4a74-9098-f457351e56f5/,Phil,,6/18/2017 0:00,15.0000000,15.0:35,47.72048200000,-3.956067000000,,Fouesnant - Finistère,47093,observation-c2b5443b-9f99-4a74-9098-f457351e56f5-2,https://biolit.fr/observations/observation-c2b5443b-9f99-4a74-9098-f457351e56f5-2/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1070620.JPG,,TRUE, +N1,60280,sortie-c2b5443b-9f99-4a74-9098-f457351e56f5,https://biolit.fr/sorties/sortie-c2b5443b-9f99-4a74-9098-f457351e56f5/,Phil,,6/18/2017 0:00,15.0000000,15.0:35,47.72048200000,-3.956067000000,,Fouesnant - Finistère,47095,observation-c2b5443b-9f99-4a74-9098-f457351e56f5-3,https://biolit.fr/observations/observation-c2b5443b-9f99-4a74-9098-f457351e56f5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070621.JPG,,FALSE, +N1,60280,sortie-c2b5443b-9f99-4a74-9098-f457351e56f5,https://biolit.fr/sorties/sortie-c2b5443b-9f99-4a74-9098-f457351e56f5/,Phil,,6/18/2017 0:00,15.0000000,15.0:35,47.72048200000,-3.956067000000,,Fouesnant - Finistère,47097,observation-c2b5443b-9f99-4a74-9098-f457351e56f5-4,https://biolit.fr/observations/observation-c2b5443b-9f99-4a74-9098-f457351e56f5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070622.JPG,,FALSE, +N1,60280,sortie-c2b5443b-9f99-4a74-9098-f457351e56f5,https://biolit.fr/sorties/sortie-c2b5443b-9f99-4a74-9098-f457351e56f5/,Phil,,6/18/2017 0:00,15.0000000,15.0:35,47.72048200000,-3.956067000000,,Fouesnant - Finistère,47099,observation-c2b5443b-9f99-4a74-9098-f457351e56f5-5,https://biolit.fr/observations/observation-c2b5443b-9f99-4a74-9098-f457351e56f5-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070623.JPG,,FALSE, +N1,60280,sortie-c2b5443b-9f99-4a74-9098-f457351e56f5,https://biolit.fr/sorties/sortie-c2b5443b-9f99-4a74-9098-f457351e56f5/,Phil,,6/18/2017 0:00,15.0000000,15.0:35,47.72048200000,-3.956067000000,,Fouesnant - Finistère,47101,observation-c2b5443b-9f99-4a74-9098-f457351e56f5-6,https://biolit.fr/observations/observation-c2b5443b-9f99-4a74-9098-f457351e56f5-6/,Solanum dulcamara,Morelle douce amère,,https://biolit.fr/wp-content/uploads/2023/07/P1070624.JPG,,TRUE, +N1,60280,sortie-c2b5443b-9f99-4a74-9098-f457351e56f5,https://biolit.fr/sorties/sortie-c2b5443b-9f99-4a74-9098-f457351e56f5/,Phil,,6/18/2017 0:00,15.0000000,15.0:35,47.72048200000,-3.956067000000,,Fouesnant - Finistère,47103,observation-c2b5443b-9f99-4a74-9098-f457351e56f5-7,https://biolit.fr/observations/observation-c2b5443b-9f99-4a74-9098-f457351e56f5-7/,Solanum dulcamara,Morelle douce amère,,https://biolit.fr/wp-content/uploads/2023/07/P1070653.JPG,,TRUE, +N1,60281,sortie-bafa3b94-ccc0-4ecf-8924-148a9d7faa52,https://biolit.fr/sorties/sortie-bafa3b94-ccc0-4ecf-8924-148a9d7faa52/,Observe la nature,,10/17/2017 0:00,10.0000000,11.0000000,43.396534000000,3.699200000000,,Port de Séte au Môle,47105,observation-bafa3b94-ccc0-4ecf-8924-148a9d7faa52,https://biolit.fr/observations/observation-bafa3b94-ccc0-4ecf-8924-148a9d7faa52/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC05230-scaled.jpg,,FALSE, +N1,60281,sortie-bafa3b94-ccc0-4ecf-8924-148a9d7faa52,https://biolit.fr/sorties/sortie-bafa3b94-ccc0-4ecf-8924-148a9d7faa52/,Observe la nature,,10/17/2017 0:00,10.0000000,11.0000000,43.396534000000,3.699200000000,,Port de Séte au Môle,47107,observation-bafa3b94-ccc0-4ecf-8924-148a9d7faa52-2,https://biolit.fr/observations/observation-bafa3b94-ccc0-4ecf-8924-148a9d7faa52-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC05206.JPG,,FALSE, +N1,60282,sortie-a46e5b30-9f4d-4671-8014-071cc4614b1c,https://biolit.fr/sorties/sortie-a46e5b30-9f4d-4671-8014-071cc4614b1c/,Observe la nature,,10/18/2017 0:00,15.0000000,16.0000000,43.236362000000,5.359879000000,,Plage de la bonne Brise MARSEILLE,47109,observation-a46e5b30-9f4d-4671-8014-071cc4614b1c,https://biolit.fr/observations/observation-a46e5b30-9f4d-4671-8014-071cc4614b1c/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171018_154730-scaled.jpg,,TRUE, +N1,60282,sortie-a46e5b30-9f4d-4671-8014-071cc4614b1c,https://biolit.fr/sorties/sortie-a46e5b30-9f4d-4671-8014-071cc4614b1c/,Observe la nature,,10/18/2017 0:00,15.0000000,16.0000000,43.236362000000,5.359879000000,,Plage de la bonne Brise MARSEILLE,47111,observation-a46e5b30-9f4d-4671-8014-071cc4614b1c-2,https://biolit.fr/observations/observation-a46e5b30-9f4d-4671-8014-071cc4614b1c-2/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171018_153927-scaled.jpg,,TRUE, +N1,60282,sortie-a46e5b30-9f4d-4671-8014-071cc4614b1c,https://biolit.fr/sorties/sortie-a46e5b30-9f4d-4671-8014-071cc4614b1c/,Observe la nature,,10/18/2017 0:00,15.0000000,16.0000000,43.236362000000,5.359879000000,,Plage de la bonne Brise MARSEILLE,47113,observation-a46e5b30-9f4d-4671-8014-071cc4614b1c-3,https://biolit.fr/observations/observation-a46e5b30-9f4d-4671-8014-071cc4614b1c-3/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171018_153753-scaled.jpg,,TRUE, +N1,60282,sortie-a46e5b30-9f4d-4671-8014-071cc4614b1c,https://biolit.fr/sorties/sortie-a46e5b30-9f4d-4671-8014-071cc4614b1c/,Observe la nature,,10/18/2017 0:00,15.0000000,16.0000000,43.236362000000,5.359879000000,,Plage de la bonne Brise MARSEILLE,47115,observation-a46e5b30-9f4d-4671-8014-071cc4614b1c-4,https://biolit.fr/observations/observation-a46e5b30-9f4d-4671-8014-071cc4614b1c-4/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171018_153741-scaled.jpg,,TRUE, +N1,60282,sortie-a46e5b30-9f4d-4671-8014-071cc4614b1c,https://biolit.fr/sorties/sortie-a46e5b30-9f4d-4671-8014-071cc4614b1c/,Observe la nature,,10/18/2017 0:00,15.0000000,16.0000000,43.236362000000,5.359879000000,,Plage de la bonne Brise MARSEILLE,47117,observation-a46e5b30-9f4d-4671-8014-071cc4614b1c-5,https://biolit.fr/observations/observation-a46e5b30-9f4d-4671-8014-071cc4614b1c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171018_153419-scaled.jpg,,FALSE, +N1,60283,sortie-20ea0a8b-bfab-45f3-b232-82074601c040,https://biolit.fr/sorties/sortie-20ea0a8b-bfab-45f3-b232-82074601c040/,Observe la nature,,10/16/2017 0:00,12.0000000,14.0000000,43.277048000000,5.305478000000,,iles du Frioul,47119,observation-20ea0a8b-bfab-45f3-b232-82074601c040,https://biolit.fr/observations/observation-20ea0a8b-bfab-45f3-b232-82074601c040/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/DSC06004-scaled.jpg,,TRUE, +N1,60283,sortie-20ea0a8b-bfab-45f3-b232-82074601c040,https://biolit.fr/sorties/sortie-20ea0a8b-bfab-45f3-b232-82074601c040/,Observe la nature,,10/16/2017 0:00,12.0000000,14.0000000,43.277048000000,5.305478000000,,iles du Frioul,47121,observation-20ea0a8b-bfab-45f3-b232-82074601c040-2,https://biolit.fr/observations/observation-20ea0a8b-bfab-45f3-b232-82074601c040-2/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/DSC05914-scaled.jpg,,TRUE, +N1,60284,sortie-c8d36cc4-4a02-43df-921f-7eb45e88e97f,https://biolit.fr/sorties/sortie-c8d36cc4-4a02-43df-921f-7eb45e88e97f/,LucileA,,10/19/2017 0:00,16.0:45,18.0:45,48.640339000000,-2.071638000000,,Estran de Saint Enogat,47123,observation-c8d36cc4-4a02-43df-921f-7eb45e88e97f,https://biolit.fr/observations/observation-c8d36cc4-4a02-43df-921f-7eb45e88e97f/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7465-scaled.jpg,,TRUE, +N1,60285,sortie-728e2e84-73e6-4b00-b5f8-4db99df5cd33,https://biolit.fr/sorties/sortie-728e2e84-73e6-4b00-b5f8-4db99df5cd33/,ChristineSG,,8/15/2017 0:00,18.0000000,19.0000000,44.201423000000,-1.299241000000,,Dune sud Mimizan Plage,47125,observation-728e2e84-73e6-4b00-b5f8-4db99df5cd33,https://biolit.fr/observations/observation-728e2e84-73e6-4b00-b5f8-4db99df5cd33/,,,,https://biolit.fr/wp-content/uploads/2023/07/lis matthiole-scaled.jpg,,FALSE, +N1,60286,sortie-0583c90d-c91f-4fd2-bab2-75713bafa238,https://biolit.fr/sorties/sortie-0583c90d-c91f-4fd2-bab2-75713bafa238/,Noëlla M,,10/14/2017 0:00,18.0:45,19.0000000,43.238190000000,5.361798000000,,anse des sablettes,47127,observation-0583c90d-c91f-4fd2-bab2-75713bafa238,https://biolit.fr/observations/observation-0583c90d-c91f-4fd2-bab2-75713bafa238/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171014_191546-min-scaled.jpg,,FALSE, +N1,60287,sortie-7941b961-29b8-48c5-9190-ea768e7beb0c,https://biolit.fr/sorties/sortie-7941b961-29b8-48c5-9190-ea768e7beb0c/,ville de marseille chartreux cm1,,10/09/2017,10.0000000,12.0000000,43.279939000000,5.353502000000,,Anse de la fausse monnaie ,47129,observation-7941b961-29b8-48c5-9190-ea768e7beb0c,https://biolit.fr/observations/observation-7941b961-29b8-48c5-9190-ea768e7beb0c/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pattele bleue Patella caerulea3-scaled.jpg,,FALSE, +N1,60288,sortie-225f4ba8-1f28-4f5f-b71f-fb442d85e825,https://biolit.fr/sorties/sortie-225f4ba8-1f28-4f5f-b71f-fb442d85e825/,ville de marseille chartreux cm1,,10/09/2017,10.0:15,12.0000000,43.279934000000,5.353431000000,,Anse de la fausse monnaie ,47131,observation-225f4ba8-1f28-4f5f-b71f-fb442d85e825,https://biolit.fr/observations/observation-225f4ba8-1f28-4f5f-b71f-fb442d85e825/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/Bucarde tuberculée Acanthocardia tuberculata_0-scaled.jpg,,TRUE, +N1,60289,sortie-f1d758a1-1e37-4a13-a006-702c43994be8,https://biolit.fr/sorties/sortie-f1d758a1-1e37-4a13-a006-702c43994be8/,Nicolas,,8/24/2017 0:00,13.0000000,15.0000000,46.108405000000,-1.144102000000,,Pointe du Chay,47133,observation-f1d758a1-1e37-4a13-a006-702c43994be8,https://biolit.fr/observations/observation-f1d758a1-1e37-4a13-a006-702c43994be8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170824_135252_0-scaled.jpg,,FALSE, +N1,60290,sortie-1fdfad9a-0c73-4c71-bcec-d79f760aae6b,https://biolit.fr/sorties/sortie-1fdfad9a-0c73-4c71-bcec-d79f760aae6b/,Nicolas,,10/04/2017,10.0000000,12.0000000,46.126012000000,-1.127199000000,,Plage d'Aytré,47135,observation-1fdfad9a-0c73-4c71-bcec-d79f760aae6b,https://biolit.fr/observations/observation-1fdfad9a-0c73-4c71-bcec-d79f760aae6b/,Calliblepharis ciliata,Algue ciliée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170927_145750-scaled.jpg,,TRUE, +N1,60290,sortie-1fdfad9a-0c73-4c71-bcec-d79f760aae6b,https://biolit.fr/sorties/sortie-1fdfad9a-0c73-4c71-bcec-d79f760aae6b/,Nicolas,,10/04/2017,10.0000000,12.0000000,46.126012000000,-1.127199000000,,Plage d'Aytré,47137,observation-1fdfad9a-0c73-4c71-bcec-d79f760aae6b-2,https://biolit.fr/observations/observation-1fdfad9a-0c73-4c71-bcec-d79f760aae6b-2/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171004_104641-scaled.jpg,,TRUE, +N1,60290,sortie-1fdfad9a-0c73-4c71-bcec-d79f760aae6b,https://biolit.fr/sorties/sortie-1fdfad9a-0c73-4c71-bcec-d79f760aae6b/,Nicolas,,10/04/2017,10.0000000,12.0000000,46.126012000000,-1.127199000000,,Plage d'Aytré,47139,observation-1fdfad9a-0c73-4c71-bcec-d79f760aae6b-3,https://biolit.fr/observations/observation-1fdfad9a-0c73-4c71-bcec-d79f760aae6b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171004_100212-scaled.jpg,,FALSE, +N1,60291,sortie-9b39792c-dbd9-46bf-8c32-512f5ede964f,https://biolit.fr/sorties/sortie-9b39792c-dbd9-46bf-8c32-512f5ede964f/,Nicolas,,10/12/2017,10.0000000,12.0000000,46.136919000000,-1.178006000000,,Plage des Minimes,47141,observation-9b39792c-dbd9-46bf-8c32-512f5ede964f,https://biolit.fr/observations/observation-9b39792c-dbd9-46bf-8c32-512f5ede964f/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20171007_112610-scaled.jpg,,FALSE, +N1,60292,sortie-503ebddf-e895-4d17-9927-dccfa950e9c6,https://biolit.fr/sorties/sortie-503ebddf-e895-4d17-9927-dccfa950e9c6/,Marine,,10/12/2017,10.0000000,10.0:45,43.292789000000,5.367341000000,,Vieux port,47143,observation-503ebddf-e895-4d17-9927-dccfa950e9c6,https://biolit.fr/observations/observation-503ebddf-e895-4d17-9927-dccfa950e9c6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3202-scaled.jpg,,FALSE, +N1,60293,sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14,https://biolit.fr/sorties/sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14/,Ville de Marseille,,10/11/2017,9.0000000,11.0000000,43.2397460000,5.362266000000,,Plage du Bain des Dames,47145,observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14,https://biolit.fr/observations/observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algue rouge Peyssonelia-scaled.jpg,,FALSE, +N1,60293,sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14,https://biolit.fr/sorties/sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14/,Ville de Marseille,,10/11/2017,9.0000000,11.0000000,43.2397460000,5.362266000000,,Plage du Bain des Dames,47147,observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-2,https://biolit.fr/observations/observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue rouge Sphérocoque-scaled.jpg,,FALSE, +N1,60293,sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14,https://biolit.fr/sorties/sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14/,Ville de Marseille,,10/11/2017,9.0000000,11.0000000,43.2397460000,5.362266000000,,Plage du Bain des Dames,47149,observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-3,https://biolit.fr/observations/observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-3/,Ulva spp.,Ulve rigide,,https://biolit.fr/wp-content/uploads/2023/07/Algue verte Ulve (2)-scaled.jpg,,TRUE, +N1,60293,sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14,https://biolit.fr/sorties/sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14/,Ville de Marseille,,10/11/2017,9.0000000,11.0000000,43.2397460000,5.362266000000,,Plage du Bain des Dames,47151,observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-4,https://biolit.fr/observations/observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-4/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/Codium bursa-scaled.jpg,,TRUE, +N1,60293,sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14,https://biolit.fr/sorties/sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14/,Ville de Marseille,,10/11/2017,9.0000000,11.0000000,43.2397460000,5.362266000000,,Plage du Bain des Dames,47152,observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-5,https://biolit.fr/observations/observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-5/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/Bolinus brandaris ponte murex-scaled.jpg,,TRUE, +N1,60293,sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14,https://biolit.fr/sorties/sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14/,Ville de Marseille,,10/11/2017,9.0000000,11.0000000,43.2397460000,5.362266000000,,Plage du Bain des Dames,47154,observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-6,https://biolit.fr/observations/observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-6/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/Cérithe-scaled.jpg,,TRUE, +N1,60293,sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14,https://biolit.fr/sorties/sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14/,Ville de Marseille,,10/11/2017,9.0000000,11.0000000,43.2397460000,5.362266000000,,Plage du Bain des Dames,47156,observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-7,https://biolit.fr/observations/observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/cormaillot perceur_0-scaled.jpg,,FALSE, +N1,60293,sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14,https://biolit.fr/sorties/sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14/,Ville de Marseille,,10/11/2017,9.0000000,11.0000000,43.2397460000,5.362266000000,,Plage du Bain des Dames,47158,observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-8,https://biolit.fr/observations/observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/éponge de toilette-scaled.jpg,,FALSE, +N1,60293,sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14,https://biolit.fr/sorties/sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14/,Ville de Marseille,,10/11/2017,9.0000000,11.0000000,43.2397460000,5.362266000000,,Plage du Bain des Dames,47160,observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-9,https://biolit.fr/observations/observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-9/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/Eriphie ou crabe verruqueux-scaled.jpg,,TRUE, +N1,60293,sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14,https://biolit.fr/sorties/sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14/,Ville de Marseille,,10/11/2017,9.0000000,11.0000000,43.2397460000,5.362266000000,,Plage du Bain des Dames,47162,observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-10,https://biolit.fr/observations/observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/plume goéland-scaled.jpg,,FALSE, +N1,60293,sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14,https://biolit.fr/sorties/sortie-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14/,Ville de Marseille,,10/11/2017,9.0000000,11.0000000,43.2397460000,5.362266000000,,Plage du Bain des Dames,47164,observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-11,https://biolit.fr/observations/observation-0884f3b6-b59e-4fb9-9af9-90dc1bbd0c14-11/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Rhizome Posidonie-scaled.jpg,,TRUE, +N1,60294,sortie-2d0ad07c-5c19-46ab-89ab-29a2dc53c2d4,https://biolit.fr/sorties/sortie-2d0ad07c-5c19-46ab-89ab-29a2dc53c2d4/,Phil,,9/22/2017 0:00,11.0:25,11.0000000,47.776907000000,-4.341282000000,,Penmarc'h - Finistère,47166,observation-2d0ad07c-5c19-46ab-89ab-29a2dc53c2d4,https://biolit.fr/observations/observation-2d0ad07c-5c19-46ab-89ab-29a2dc53c2d4/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080690.JPG,,TRUE, +N1,60294,sortie-2d0ad07c-5c19-46ab-89ab-29a2dc53c2d4,https://biolit.fr/sorties/sortie-2d0ad07c-5c19-46ab-89ab-29a2dc53c2d4/,Phil,,9/22/2017 0:00,11.0:25,11.0000000,47.776907000000,-4.341282000000,,Penmarc'h - Finistère,47168,observation-2d0ad07c-5c19-46ab-89ab-29a2dc53c2d4-2,https://biolit.fr/observations/observation-2d0ad07c-5c19-46ab-89ab-29a2dc53c2d4-2/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080692.JPG,,TRUE, +N1,60294,sortie-2d0ad07c-5c19-46ab-89ab-29a2dc53c2d4,https://biolit.fr/sorties/sortie-2d0ad07c-5c19-46ab-89ab-29a2dc53c2d4/,Phil,,9/22/2017 0:00,11.0:25,11.0000000,47.776907000000,-4.341282000000,,Penmarc'h - Finistère,47170,observation-2d0ad07c-5c19-46ab-89ab-29a2dc53c2d4-3,https://biolit.fr/observations/observation-2d0ad07c-5c19-46ab-89ab-29a2dc53c2d4-3/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080693.JPG,,TRUE, +N1,60294,sortie-2d0ad07c-5c19-46ab-89ab-29a2dc53c2d4,https://biolit.fr/sorties/sortie-2d0ad07c-5c19-46ab-89ab-29a2dc53c2d4/,Phil,,9/22/2017 0:00,11.0:25,11.0000000,47.776907000000,-4.341282000000,,Penmarc'h - Finistère,47172,observation-2d0ad07c-5c19-46ab-89ab-29a2dc53c2d4-4,https://biolit.fr/observations/observation-2d0ad07c-5c19-46ab-89ab-29a2dc53c2d4-4/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/2023/07/P1080698.JPG,,TRUE, +N1,60295,sortie-53a64a31-fc32-4e0c-a9a8-a4d498d1c36f,https://biolit.fr/sorties/sortie-53a64a31-fc32-4e0c-a9a8-a4d498d1c36f/,Phil,,6/18/2017 0:00,16.0:15,16.0000000,47.720424000000,-3.956131000000,,Fouesnant - Finistère,47174,observation-53a64a31-fc32-4e0c-a9a8-a4d498d1c36f,https://biolit.fr/observations/observation-53a64a31-fc32-4e0c-a9a8-a4d498d1c36f/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070670.JPG,,FALSE, +N1,60295,sortie-53a64a31-fc32-4e0c-a9a8-a4d498d1c36f,https://biolit.fr/sorties/sortie-53a64a31-fc32-4e0c-a9a8-a4d498d1c36f/,Phil,,6/18/2017 0:00,16.0:15,16.0000000,47.720424000000,-3.956131000000,,Fouesnant - Finistère,47176,observation-53a64a31-fc32-4e0c-a9a8-a4d498d1c36f-2,https://biolit.fr/observations/observation-53a64a31-fc32-4e0c-a9a8-a4d498d1c36f-2/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/P1070678.JPG,,TRUE, +N1,60295,sortie-53a64a31-fc32-4e0c-a9a8-a4d498d1c36f,https://biolit.fr/sorties/sortie-53a64a31-fc32-4e0c-a9a8-a4d498d1c36f/,Phil,,6/18/2017 0:00,16.0:15,16.0000000,47.720424000000,-3.956131000000,,Fouesnant - Finistère,47178,observation-53a64a31-fc32-4e0c-a9a8-a4d498d1c36f-3,https://biolit.fr/observations/observation-53a64a31-fc32-4e0c-a9a8-a4d498d1c36f-3/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/P1070679.JPG,,TRUE, +N1,60296,sortie-b7f8259c-1e82-4f04-9d94-0719b873e482,https://biolit.fr/sorties/sortie-b7f8259c-1e82-4f04-9d94-0719b873e482/,Phil,,4/14/2017 0:00,16.0000000,16.0:25,48.848734000000,-3.013399000000,,Île-de-Bréhat - Côtes-d'Armor,47180,observation-b7f8259c-1e82-4f04-9d94-0719b873e482,https://biolit.fr/observations/observation-b7f8259c-1e82-4f04-9d94-0719b873e482/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070089.JPG,,TRUE, +N1,60296,sortie-b7f8259c-1e82-4f04-9d94-0719b873e482,https://biolit.fr/sorties/sortie-b7f8259c-1e82-4f04-9d94-0719b873e482/,Phil,,4/14/2017 0:00,16.0000000,16.0:25,48.848734000000,-3.013399000000,,Île-de-Bréhat - Côtes-d'Armor,47184,observation-b7f8259c-1e82-4f04-9d94-0719b873e482-3,https://biolit.fr/observations/observation-b7f8259c-1e82-4f04-9d94-0719b873e482-3/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1070077.JPG,,TRUE, +N1,60296,sortie-b7f8259c-1e82-4f04-9d94-0719b873e482,https://biolit.fr/sorties/sortie-b7f8259c-1e82-4f04-9d94-0719b873e482/,Phil,,4/14/2017 0:00,16.0000000,16.0:25,48.848734000000,-3.013399000000,,Île-de-Bréhat - Côtes-d'Armor,47186,observation-b7f8259c-1e82-4f04-9d94-0719b873e482-4,https://biolit.fr/observations/observation-b7f8259c-1e82-4f04-9d94-0719b873e482-4/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/P1070098.JPG,,TRUE, +N1,60296,sortie-b7f8259c-1e82-4f04-9d94-0719b873e482,https://biolit.fr/sorties/sortie-b7f8259c-1e82-4f04-9d94-0719b873e482/,Phil,,4/14/2017 0:00,16.0000000,16.0:25,48.848734000000,-3.013399000000,,Île-de-Bréhat - Côtes-d'Armor,47188,observation-b7f8259c-1e82-4f04-9d94-0719b873e482-5,https://biolit.fr/observations/observation-b7f8259c-1e82-4f04-9d94-0719b873e482-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070074.JPG,,FALSE, +N1,60297,sortie-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e,https://biolit.fr/sorties/sortie-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e/,Ville de Marseille,,6/16/2017 0:00,8.0000000,8.0:45,43.244774000000,5.371597000000,,Plage de sable de la Pointe Rouge,47190,observation-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e,https://biolit.fr/observations/observation-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 3_9-scaled.jpg,,FALSE, +N1,60297,sortie-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e,https://biolit.fr/sorties/sortie-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e/,Ville de Marseille,,6/16/2017 0:00,8.0000000,8.0:45,43.244774000000,5.371597000000,,Plage de sable de la Pointe Rouge,47192,observation-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e-2,https://biolit.fr/observations/observation-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/photo 6_1-scaled.jpg,,TRUE, +N1,60297,sortie-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e,https://biolit.fr/sorties/sortie-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e/,Ville de Marseille,,6/16/2017 0:00,8.0000000,8.0:45,43.244774000000,5.371597000000,,Plage de sable de la Pointe Rouge,47194,observation-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e-3,https://biolit.fr/observations/observation-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e-3/,Janthina janthina,Janthine commune,,https://biolit.fr/wp-content/uploads/2023/07/photo 5_2-scaled.jpg,,TRUE, +N1,60297,sortie-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e,https://biolit.fr/sorties/sortie-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e/,Ville de Marseille,,6/16/2017 0:00,8.0000000,8.0:45,43.244774000000,5.371597000000,,Plage de sable de la Pointe Rouge,47196,observation-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e-4,https://biolit.fr/observations/observation-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Photo 9.jpg,,FALSE, +N1,60297,sortie-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e,https://biolit.fr/sorties/sortie-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e/,Ville de Marseille,,6/16/2017 0:00,8.0000000,8.0:45,43.244774000000,5.371597000000,,Plage de sable de la Pointe Rouge,47197,observation-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e-5,https://biolit.fr/observations/observation-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Photo 8.jpg,,FALSE, +N1,60297,sortie-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e,https://biolit.fr/sorties/sortie-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e/,Ville de Marseille,,6/16/2017 0:00,8.0000000,8.0:45,43.244774000000,5.371597000000,,Plage de sable de la Pointe Rouge,47198,observation-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e-6,https://biolit.fr/observations/observation-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Photo 11.jpg,,FALSE, +N1,60297,sortie-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e,https://biolit.fr/sorties/sortie-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e/,Ville de Marseille,,6/16/2017 0:00,8.0000000,8.0:45,43.244774000000,5.371597000000,,Plage de sable de la Pointe Rouge,47199,observation-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e-7,https://biolit.fr/observations/observation-d7be6eb9-1da8-4cc9-bab5-48de147d9a7e-7/,Janthina janthina,Janthine commune,,https://biolit.fr/wp-content/uploads/2023/07/photo 12-scaled.jpg,,TRUE, +N1,60298,sortie-9226f40f-5642-4733-8ae2-009b01bb6fec,https://biolit.fr/sorties/sortie-9226f40f-5642-4733-8ae2-009b01bb6fec/,Phil,,6/18/2017 0:00,15.0000000,15.0:45,47.720890000000,-3.958734000000,,Fouesnant - Finistère,47201,observation-9226f40f-5642-4733-8ae2-009b01bb6fec,https://biolit.fr/observations/observation-9226f40f-5642-4733-8ae2-009b01bb6fec/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070657.JPG,,FALSE, +N1,60298,sortie-9226f40f-5642-4733-8ae2-009b01bb6fec,https://biolit.fr/sorties/sortie-9226f40f-5642-4733-8ae2-009b01bb6fec/,Phil,,6/18/2017 0:00,15.0000000,15.0:45,47.720890000000,-3.958734000000,,Fouesnant - Finistère,47203,observation-9226f40f-5642-4733-8ae2-009b01bb6fec-2,https://biolit.fr/observations/observation-9226f40f-5642-4733-8ae2-009b01bb6fec-2/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1070616.JPG,,TRUE, +N1,60298,sortie-9226f40f-5642-4733-8ae2-009b01bb6fec,https://biolit.fr/sorties/sortie-9226f40f-5642-4733-8ae2-009b01bb6fec/,Phil,,6/18/2017 0:00,15.0000000,15.0:45,47.720890000000,-3.958734000000,,Fouesnant - Finistère,47205,observation-9226f40f-5642-4733-8ae2-009b01bb6fec-3,https://biolit.fr/observations/observation-9226f40f-5642-4733-8ae2-009b01bb6fec-3/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1070656.JPG,,TRUE, +N1,60298,sortie-9226f40f-5642-4733-8ae2-009b01bb6fec,https://biolit.fr/sorties/sortie-9226f40f-5642-4733-8ae2-009b01bb6fec/,Phil,,6/18/2017 0:00,15.0000000,15.0:45,47.720890000000,-3.958734000000,,Fouesnant - Finistère,47207,observation-9226f40f-5642-4733-8ae2-009b01bb6fec-4,https://biolit.fr/observations/observation-9226f40f-5642-4733-8ae2-009b01bb6fec-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070654.JPG,,FALSE, +N1,60299,sortie-5066e3f6-de92-4255-b498-309344a2e169,https://biolit.fr/sorties/sortie-5066e3f6-de92-4255-b498-309344a2e169/,Phil,,9/22/2017 0:00,11.0:35,11.0000000,47.777595000000,-4.337888000000,,Penmarc'h - Finistère,47209,observation-5066e3f6-de92-4255-b498-309344a2e169,https://biolit.fr/observations/observation-5066e3f6-de92-4255-b498-309344a2e169/,Phalacrocorax aristotelis,Cormoran huppé,,https://biolit.fr/wp-content/uploads/2023/07/P1080750.JPG,,TRUE, +N1,60299,sortie-5066e3f6-de92-4255-b498-309344a2e169,https://biolit.fr/sorties/sortie-5066e3f6-de92-4255-b498-309344a2e169/,Phil,,9/22/2017 0:00,11.0:35,11.0000000,47.777595000000,-4.337888000000,,Penmarc'h - Finistère,47211,observation-5066e3f6-de92-4255-b498-309344a2e169-2,https://biolit.fr/observations/observation-5066e3f6-de92-4255-b498-309344a2e169-2/,Phalacrocorax aristotelis,Cormoran huppé,,https://biolit.fr/wp-content/uploads/2023/07/P1080751.JPG,,TRUE, +N1,60300,sortie-4f5ca30b-90fa-4758-98d3-436c46efe752,https://biolit.fr/sorties/sortie-4f5ca30b-90fa-4758-98d3-436c46efe752/,Phil,,9/19/2017 0:00,12.0:55,13.0000000,48.049705000000,-4.707972000000,,Cléden-Cap-Sizun - Finistère,47213,observation-4f5ca30b-90fa-4758-98d3-436c46efe752,https://biolit.fr/observations/observation-4f5ca30b-90fa-4758-98d3-436c46efe752/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1080345.JPG,,TRUE, +N1,60300,sortie-4f5ca30b-90fa-4758-98d3-436c46efe752,https://biolit.fr/sorties/sortie-4f5ca30b-90fa-4758-98d3-436c46efe752/,Phil,,9/19/2017 0:00,12.0:55,13.0000000,48.049705000000,-4.707972000000,,Cléden-Cap-Sizun - Finistère,47215,observation-4f5ca30b-90fa-4758-98d3-436c46efe752-2,https://biolit.fr/observations/observation-4f5ca30b-90fa-4758-98d3-436c46efe752-2/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1080344.JPG,,TRUE, +N1,60300,sortie-4f5ca30b-90fa-4758-98d3-436c46efe752,https://biolit.fr/sorties/sortie-4f5ca30b-90fa-4758-98d3-436c46efe752/,Phil,,9/19/2017 0:00,12.0:55,13.0000000,48.049705000000,-4.707972000000,,Cléden-Cap-Sizun - Finistère,47217,observation-4f5ca30b-90fa-4758-98d3-436c46efe752-3,https://biolit.fr/observations/observation-4f5ca30b-90fa-4758-98d3-436c46efe752-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080359.JPG,,FALSE, +N1,60300,sortie-4f5ca30b-90fa-4758-98d3-436c46efe752,https://biolit.fr/sorties/sortie-4f5ca30b-90fa-4758-98d3-436c46efe752/,Phil,,9/19/2017 0:00,12.0:55,13.0000000,48.049705000000,-4.707972000000,,Cléden-Cap-Sizun - Finistère,47219,observation-4f5ca30b-90fa-4758-98d3-436c46efe752-4,https://biolit.fr/observations/observation-4f5ca30b-90fa-4758-98d3-436c46efe752-4/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1080349.JPG,,TRUE, +N1,60300,sortie-4f5ca30b-90fa-4758-98d3-436c46efe752,https://biolit.fr/sorties/sortie-4f5ca30b-90fa-4758-98d3-436c46efe752/,Phil,,9/19/2017 0:00,12.0:55,13.0000000,48.049705000000,-4.707972000000,,Cléden-Cap-Sizun - Finistère,47221,observation-4f5ca30b-90fa-4758-98d3-436c46efe752-5,https://biolit.fr/observations/observation-4f5ca30b-90fa-4758-98d3-436c46efe752-5/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1080355.JPG,,TRUE, +N1,60301,sortie-9ec35e19-34df-45e1-9773-b2b8bc162430,https://biolit.fr/sorties/sortie-9ec35e19-34df-45e1-9773-b2b8bc162430/,Phil,,4/14/2017 0:00,12.0000000,12.0:55,48.848926000000,-3.013094000000,,Île-de-Bréhat - Côtes-d'Armor ,47223,observation-9ec35e19-34df-45e1-9773-b2b8bc162430,https://biolit.fr/observations/observation-9ec35e19-34df-45e1-9773-b2b8bc162430/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1070058.JPG,,TRUE, +N1,60301,sortie-9ec35e19-34df-45e1-9773-b2b8bc162430,https://biolit.fr/sorties/sortie-9ec35e19-34df-45e1-9773-b2b8bc162430/,Phil,,4/14/2017 0:00,12.0000000,12.0:55,48.848926000000,-3.013094000000,,Île-de-Bréhat - Côtes-d'Armor ,47225,observation-9ec35e19-34df-45e1-9773-b2b8bc162430-2,https://biolit.fr/observations/observation-9ec35e19-34df-45e1-9773-b2b8bc162430-2/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1070053.JPG,,TRUE, +N1,60301,sortie-9ec35e19-34df-45e1-9773-b2b8bc162430,https://biolit.fr/sorties/sortie-9ec35e19-34df-45e1-9773-b2b8bc162430/,Phil,,4/14/2017 0:00,12.0000000,12.0:55,48.848926000000,-3.013094000000,,Île-de-Bréhat - Côtes-d'Armor ,47227,observation-9ec35e19-34df-45e1-9773-b2b8bc162430-3,https://biolit.fr/observations/observation-9ec35e19-34df-45e1-9773-b2b8bc162430-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1070063.JPG,,TRUE, +N1,60302,sortie-4dbf06bb-639a-4d44-b886-bd0a06a3f554,https://biolit.fr/sorties/sortie-4dbf06bb-639a-4d44-b886-bd0a06a3f554/,Ville de Marseille,,6/16/2017 0:00,8.0000000,8.0:45,43.244614000000,5.37158100000,,Plage de sable de la Pointe Rouge,47229,observation-4dbf06bb-639a-4d44-b886-bd0a06a3f554,https://biolit.fr/observations/observation-4dbf06bb-639a-4d44-b886-bd0a06a3f554/,Janthina janthina,Janthine commune,,https://biolit.fr/wp-content/uploads/2023/07/photo 6_0-scaled.jpg,,TRUE, +N1,60303,sortie-f7663323-6234-45fa-b9dc-3c01db53010b,https://biolit.fr/sorties/sortie-f7663323-6234-45fa-b9dc-3c01db53010b/,Phil,,6/18/2017 0:00,14.0:25,14.0000000,47.720895000000,-3.956819000000,,Fouesnant - Finistère,47231,observation-f7663323-6234-45fa-b9dc-3c01db53010b,https://biolit.fr/observations/observation-f7663323-6234-45fa-b9dc-3c01db53010b/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070575.JPG,,FALSE, +N1,60303,sortie-f7663323-6234-45fa-b9dc-3c01db53010b,https://biolit.fr/sorties/sortie-f7663323-6234-45fa-b9dc-3c01db53010b/,Phil,,6/18/2017 0:00,14.0:25,14.0000000,47.720895000000,-3.956819000000,,Fouesnant - Finistère,47233,observation-f7663323-6234-45fa-b9dc-3c01db53010b-2,https://biolit.fr/observations/observation-f7663323-6234-45fa-b9dc-3c01db53010b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070572.JPG,,FALSE, +N1,60303,sortie-f7663323-6234-45fa-b9dc-3c01db53010b,https://biolit.fr/sorties/sortie-f7663323-6234-45fa-b9dc-3c01db53010b/,Phil,,6/18/2017 0:00,14.0:25,14.0000000,47.720895000000,-3.956819000000,,Fouesnant - Finistère,47235,observation-f7663323-6234-45fa-b9dc-3c01db53010b-3,https://biolit.fr/observations/observation-f7663323-6234-45fa-b9dc-3c01db53010b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070571.JPG,,FALSE, +N1,60304,sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62,https://biolit.fr/sorties/sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62/,carmin89,,9/26/2017 0:00,12.0000000,13.0000000,43.072002000000,5.879593000000,,La Verne,47237,observation-cc734eae-1299-46f3-894e-3c4c2ac51f62,https://biolit.fr/observations/observation-cc734eae-1299-46f3-894e-3c4c2ac51f62/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170926_121710-scaled.jpg,,TRUE, +N1,60304,sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62,https://biolit.fr/sorties/sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62/,carmin89,,9/26/2017 0:00,12.0000000,13.0000000,43.072002000000,5.879593000000,,La Verne,47239,observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-2,https://biolit.fr/observations/observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170926_121744-scaled.jpg,,FALSE, +N1,60304,sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62,https://biolit.fr/sorties/sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62/,carmin89,,9/26/2017 0:00,12.0000000,13.0000000,43.072002000000,5.879593000000,,La Verne,47241,observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-3,https://biolit.fr/observations/observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-3/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170926_121843-scaled.jpg,,TRUE, +N1,60304,sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62,https://biolit.fr/sorties/sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62/,carmin89,,9/26/2017 0:00,12.0000000,13.0000000,43.072002000000,5.879593000000,,La Verne,47243,observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-4,https://biolit.fr/observations/observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-4/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170926_122104-scaled.jpg,,TRUE, +N1,60304,sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62,https://biolit.fr/sorties/sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62/,carmin89,,9/26/2017 0:00,12.0000000,13.0000000,43.072002000000,5.879593000000,,La Verne,47245,observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-5,https://biolit.fr/observations/observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-5/,Diodora graeca,Fissurelle,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170926_122117-scaled.jpg,,TRUE, +N1,60304,sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62,https://biolit.fr/sorties/sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62/,carmin89,,9/26/2017 0:00,12.0000000,13.0000000,43.072002000000,5.879593000000,,La Verne,47247,observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-6,https://biolit.fr/observations/observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-6/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170926_122135-scaled.jpg,,TRUE, +N1,60304,sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62,https://biolit.fr/sorties/sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62/,carmin89,,9/26/2017 0:00,12.0000000,13.0000000,43.072002000000,5.879593000000,,La Verne,47249,observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-7,https://biolit.fr/observations/observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170926_122605-scaled.jpg,,FALSE, +N1,60304,sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62,https://biolit.fr/sorties/sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62/,carmin89,,9/26/2017 0:00,12.0000000,13.0000000,43.072002000000,5.879593000000,,La Verne,47251,observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-8,https://biolit.fr/observations/observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170926_123109-scaled.jpg,,FALSE, +N1,60304,sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62,https://biolit.fr/sorties/sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62/,carmin89,,9/26/2017 0:00,12.0000000,13.0000000,43.072002000000,5.879593000000,,La Verne,47253,observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-9,https://biolit.fr/observations/observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170926_123159-scaled.jpg,,FALSE, +N1,60304,sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62,https://biolit.fr/sorties/sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62/,carmin89,,9/26/2017 0:00,12.0000000,13.0000000,43.072002000000,5.879593000000,,La Verne,47255,observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-10,https://biolit.fr/observations/observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170926_124158-scaled.jpg,,FALSE, +N1,60304,sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62,https://biolit.fr/sorties/sortie-cc734eae-1299-46f3-894e-3c4c2ac51f62/,carmin89,,9/26/2017 0:00,12.0000000,13.0000000,43.072002000000,5.879593000000,,La Verne,47257,observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-11,https://biolit.fr/observations/observation-cc734eae-1299-46f3-894e-3c4c2ac51f62-11/,Cardita calyculata,Cardite petit calice,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170926_125716-scaled.jpg,,TRUE, +N1,60305,sortie-10ccf351-9b45-4b2b-a6d0-ffdcf525e653,https://biolit.fr/sorties/sortie-10ccf351-9b45-4b2b-a6d0-ffdcf525e653/,carmin89,,9/22/2017 0:00,15.0000000,16.0000000,43.078322000000,6.125119000000,,Almanarre,47259,observation-10ccf351-9b45-4b2b-a6d0-ffdcf525e653,https://biolit.fr/observations/observation-10ccf351-9b45-4b2b-a6d0-ffdcf525e653/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170922_150209-scaled.jpg,,FALSE, +N1,60305,sortie-10ccf351-9b45-4b2b-a6d0-ffdcf525e653,https://biolit.fr/sorties/sortie-10ccf351-9b45-4b2b-a6d0-ffdcf525e653/,carmin89,,9/22/2017 0:00,15.0000000,16.0000000,43.078322000000,6.125119000000,,Almanarre,47261,observation-10ccf351-9b45-4b2b-a6d0-ffdcf525e653-2,https://biolit.fr/observations/observation-10ccf351-9b45-4b2b-a6d0-ffdcf525e653-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170922_150215-scaled.jpg,,FALSE, +N1,60305,sortie-10ccf351-9b45-4b2b-a6d0-ffdcf525e653,https://biolit.fr/sorties/sortie-10ccf351-9b45-4b2b-a6d0-ffdcf525e653/,carmin89,,9/22/2017 0:00,15.0000000,16.0000000,43.078322000000,6.125119000000,,Almanarre,47263,observation-10ccf351-9b45-4b2b-a6d0-ffdcf525e653-3,https://biolit.fr/observations/observation-10ccf351-9b45-4b2b-a6d0-ffdcf525e653-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170922_150440-scaled.jpg,,FALSE, +N1,60305,sortie-10ccf351-9b45-4b2b-a6d0-ffdcf525e653,https://biolit.fr/sorties/sortie-10ccf351-9b45-4b2b-a6d0-ffdcf525e653/,carmin89,,9/22/2017 0:00,15.0000000,16.0000000,43.078322000000,6.125119000000,,Almanarre,47265,observation-10ccf351-9b45-4b2b-a6d0-ffdcf525e653-4,https://biolit.fr/observations/observation-10ccf351-9b45-4b2b-a6d0-ffdcf525e653-4/,Modiolus barbatus,Modiole barbue,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170922_153246-scaled.jpg,,TRUE, +N1,60305,sortie-10ccf351-9b45-4b2b-a6d0-ffdcf525e653,https://biolit.fr/sorties/sortie-10ccf351-9b45-4b2b-a6d0-ffdcf525e653/,carmin89,,9/22/2017 0:00,15.0000000,16.0000000,43.078322000000,6.125119000000,,Almanarre,47267,observation-10ccf351-9b45-4b2b-a6d0-ffdcf525e653-5,https://biolit.fr/observations/observation-10ccf351-9b45-4b2b-a6d0-ffdcf525e653-5/,Euspira catena,Natice porte-chaîne,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170922_154055-scaled.jpg,,TRUE, +N1,60306,sortie-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e,https://biolit.fr/sorties/sortie-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e/,Phil,,9/19/2017 0:00,12.0000000,12.0:35,48.051513000000,-4.711396000000,,Cléden-Cap-Sizun - Finistère,47269,observation-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e,https://biolit.fr/observations/observation-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080279.JPG,,FALSE, +N1,60306,sortie-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e,https://biolit.fr/sorties/sortie-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e/,Phil,,9/19/2017 0:00,12.0000000,12.0:35,48.051513000000,-4.711396000000,,Cléden-Cap-Sizun - Finistère,47271,observation-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e-2,https://biolit.fr/observations/observation-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080277.JPG,,FALSE, +N1,60306,sortie-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e,https://biolit.fr/sorties/sortie-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e/,Phil,,9/19/2017 0:00,12.0000000,12.0:35,48.051513000000,-4.711396000000,,Cléden-Cap-Sizun - Finistère,47273,observation-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e-3,https://biolit.fr/observations/observation-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080295.JPG,,FALSE, +N1,60306,sortie-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e,https://biolit.fr/sorties/sortie-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e/,Phil,,9/19/2017 0:00,12.0000000,12.0:35,48.051513000000,-4.711396000000,,Cléden-Cap-Sizun - Finistère,47275,observation-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e-4,https://biolit.fr/observations/observation-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080282.JPG,,FALSE, +N1,60306,sortie-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e,https://biolit.fr/sorties/sortie-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e/,Phil,,9/19/2017 0:00,12.0000000,12.0:35,48.051513000000,-4.711396000000,,Cléden-Cap-Sizun - Finistère,47277,observation-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e-5,https://biolit.fr/observations/observation-1ae9bc7c-c2d5-4074-9b37-edc85c0ed67e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080296.JPG,,FALSE, +N1,60307,sortie-bae9af1c-9a84-43bf-be14-02188b148340,https://biolit.fr/sorties/sortie-bae9af1c-9a84-43bf-be14-02188b148340/,Phil,,9/18/2017 0:00,12.0000000,12.0:55,47.791334000000,-4.269978000000,,Léchiagat - Finistère,47279,observation-bae9af1c-9a84-43bf-be14-02188b148340,https://biolit.fr/observations/observation-bae9af1c-9a84-43bf-be14-02188b148340/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080230.JPG,,FALSE, +N1,60307,sortie-bae9af1c-9a84-43bf-be14-02188b148340,https://biolit.fr/sorties/sortie-bae9af1c-9a84-43bf-be14-02188b148340/,Phil,,9/18/2017 0:00,12.0000000,12.0:55,47.791334000000,-4.269978000000,,Léchiagat - Finistère,47281,observation-bae9af1c-9a84-43bf-be14-02188b148340-2,https://biolit.fr/observations/observation-bae9af1c-9a84-43bf-be14-02188b148340-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080232.JPG,,FALSE, +N1,60307,sortie-bae9af1c-9a84-43bf-be14-02188b148340,https://biolit.fr/sorties/sortie-bae9af1c-9a84-43bf-be14-02188b148340/,Phil,,9/18/2017 0:00,12.0000000,12.0:55,47.791334000000,-4.269978000000,,Léchiagat - Finistère,47283,observation-bae9af1c-9a84-43bf-be14-02188b148340-3,https://biolit.fr/observations/observation-bae9af1c-9a84-43bf-be14-02188b148340-3/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/P1080228.JPG,,TRUE, +N1,60307,sortie-bae9af1c-9a84-43bf-be14-02188b148340,https://biolit.fr/sorties/sortie-bae9af1c-9a84-43bf-be14-02188b148340/,Phil,,9/18/2017 0:00,12.0000000,12.0:55,47.791334000000,-4.269978000000,,Léchiagat - Finistère,47285,observation-bae9af1c-9a84-43bf-be14-02188b148340-4,https://biolit.fr/observations/observation-bae9af1c-9a84-43bf-be14-02188b148340-4/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/P1080226.JPG,,TRUE, +N1,60307,sortie-bae9af1c-9a84-43bf-be14-02188b148340,https://biolit.fr/sorties/sortie-bae9af1c-9a84-43bf-be14-02188b148340/,Phil,,9/18/2017 0:00,12.0000000,12.0:55,47.791334000000,-4.269978000000,,Léchiagat - Finistère,47287,observation-bae9af1c-9a84-43bf-be14-02188b148340-5,https://biolit.fr/observations/observation-bae9af1c-9a84-43bf-be14-02188b148340-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080224.JPG,,FALSE, +N1,60307,sortie-bae9af1c-9a84-43bf-be14-02188b148340,https://biolit.fr/sorties/sortie-bae9af1c-9a84-43bf-be14-02188b148340/,Phil,,9/18/2017 0:00,12.0000000,12.0:55,47.791334000000,-4.269978000000,,Léchiagat - Finistère,47289,observation-bae9af1c-9a84-43bf-be14-02188b148340-6,https://biolit.fr/observations/observation-bae9af1c-9a84-43bf-be14-02188b148340-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080221.JPG,,FALSE, +N1,60307,sortie-bae9af1c-9a84-43bf-be14-02188b148340,https://biolit.fr/sorties/sortie-bae9af1c-9a84-43bf-be14-02188b148340/,Phil,,9/18/2017 0:00,12.0000000,12.0:55,47.791334000000,-4.269978000000,,Léchiagat - Finistère,47291,observation-bae9af1c-9a84-43bf-be14-02188b148340-7,https://biolit.fr/observations/observation-bae9af1c-9a84-43bf-be14-02188b148340-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080220.JPG,,FALSE, +N1,60308,sortie-4e810862-68b7-41ca-976d-92120ca7a866,https://biolit.fr/sorties/sortie-4e810862-68b7-41ca-976d-92120ca7a866/,Phil,,9/22/2017 0:00,11.0000000,11.0:25,47.777137000000,-4.336295000000,,Penmarc'h - Finistère,47293,observation-4e810862-68b7-41ca-976d-92120ca7a866,https://biolit.fr/observations/observation-4e810862-68b7-41ca-976d-92120ca7a866/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/P1080622.JPG,,TRUE, +N1,60309,sortie-2a191aee-f33e-4c98-9355-d905ef1053d0,https://biolit.fr/sorties/sortie-2a191aee-f33e-4c98-9355-d905ef1053d0/,Phil,,9/19/2017 0:00,12.0:25,12.0:45,48.051483000000,-4.711343000000,,Cléden-Cap-Sizun - Finistère,47295,observation-2a191aee-f33e-4c98-9355-d905ef1053d0,https://biolit.fr/observations/observation-2a191aee-f33e-4c98-9355-d905ef1053d0/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1080323.JPG,,TRUE, +N1,60309,sortie-2a191aee-f33e-4c98-9355-d905ef1053d0,https://biolit.fr/sorties/sortie-2a191aee-f33e-4c98-9355-d905ef1053d0/,Phil,,9/19/2017 0:00,12.0:25,12.0:45,48.051483000000,-4.711343000000,,Cléden-Cap-Sizun - Finistère,47297,observation-2a191aee-f33e-4c98-9355-d905ef1053d0-2,https://biolit.fr/observations/observation-2a191aee-f33e-4c98-9355-d905ef1053d0-2/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1080328.JPG,,TRUE, +N1,60309,sortie-2a191aee-f33e-4c98-9355-d905ef1053d0,https://biolit.fr/sorties/sortie-2a191aee-f33e-4c98-9355-d905ef1053d0/,Phil,,9/19/2017 0:00,12.0:25,12.0:45,48.051483000000,-4.711343000000,,Cléden-Cap-Sizun - Finistère,47299,observation-2a191aee-f33e-4c98-9355-d905ef1053d0-3,https://biolit.fr/observations/observation-2a191aee-f33e-4c98-9355-d905ef1053d0-3/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1080324.JPG,,TRUE, +N1,60309,sortie-2a191aee-f33e-4c98-9355-d905ef1053d0,https://biolit.fr/sorties/sortie-2a191aee-f33e-4c98-9355-d905ef1053d0/,Phil,,9/19/2017 0:00,12.0:25,12.0:45,48.051483000000,-4.711343000000,,Cléden-Cap-Sizun - Finistère,47301,observation-2a191aee-f33e-4c98-9355-d905ef1053d0-4,https://biolit.fr/observations/observation-2a191aee-f33e-4c98-9355-d905ef1053d0-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080319.JPG,,FALSE, +N1,60310,sortie-30241a31-11ec-43c6-b4c8-efa78a557bef,https://biolit.fr/sorties/sortie-30241a31-11ec-43c6-b4c8-efa78a557bef/,Phil,,4/14/2017 0:00,12.0000000,12.0:35,48.849731000000,-3.013898000000,,Île-de-Bréhat - Côtes-d'Armor,47303,observation-30241a31-11ec-43c6-b4c8-efa78a557bef,https://biolit.fr/observations/observation-30241a31-11ec-43c6-b4c8-efa78a557bef/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070011.JPG,,TRUE, +N1,60310,sortie-30241a31-11ec-43c6-b4c8-efa78a557bef,https://biolit.fr/sorties/sortie-30241a31-11ec-43c6-b4c8-efa78a557bef/,Phil,,4/14/2017 0:00,12.0000000,12.0:35,48.849731000000,-3.013898000000,,Île-de-Bréhat - Côtes-d'Armor,47305,observation-30241a31-11ec-43c6-b4c8-efa78a557bef-2,https://biolit.fr/observations/observation-30241a31-11ec-43c6-b4c8-efa78a557bef-2/,Catenella caespitosa,Caténelle en touffe,,https://biolit.fr/wp-content/uploads/2023/07/P1070010.JPG,,TRUE, +N1,60310,sortie-30241a31-11ec-43c6-b4c8-efa78a557bef,https://biolit.fr/sorties/sortie-30241a31-11ec-43c6-b4c8-efa78a557bef/,Phil,,4/14/2017 0:00,12.0000000,12.0:35,48.849731000000,-3.013898000000,,Île-de-Bréhat - Côtes-d'Armor,47307,observation-30241a31-11ec-43c6-b4c8-efa78a557bef-3,https://biolit.fr/observations/observation-30241a31-11ec-43c6-b4c8-efa78a557bef-3/,Anurida maritima,Collembole marin,,https://biolit.fr/wp-content/uploads/2023/07/P1070016.JPG,,TRUE, +N1,60310,sortie-30241a31-11ec-43c6-b4c8-efa78a557bef,https://biolit.fr/sorties/sortie-30241a31-11ec-43c6-b4c8-efa78a557bef/,Phil,,4/14/2017 0:00,12.0000000,12.0:35,48.849731000000,-3.013898000000,,Île-de-Bréhat - Côtes-d'Armor,47309,observation-30241a31-11ec-43c6-b4c8-efa78a557bef-4,https://biolit.fr/observations/observation-30241a31-11ec-43c6-b4c8-efa78a557bef-4/,Anurida maritima,Collembole marin,,https://biolit.fr/wp-content/uploads/2023/07/P1070017.JPG,,TRUE, +N1,60310,sortie-30241a31-11ec-43c6-b4c8-efa78a557bef,https://biolit.fr/sorties/sortie-30241a31-11ec-43c6-b4c8-efa78a557bef/,Phil,,4/14/2017 0:00,12.0000000,12.0:35,48.849731000000,-3.013898000000,,Île-de-Bréhat - Côtes-d'Armor,47311,observation-30241a31-11ec-43c6-b4c8-efa78a557bef-5,https://biolit.fr/observations/observation-30241a31-11ec-43c6-b4c8-efa78a557bef-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070007.JPG,,TRUE, +N1,60310,sortie-30241a31-11ec-43c6-b4c8-efa78a557bef,https://biolit.fr/sorties/sortie-30241a31-11ec-43c6-b4c8-efa78a557bef/,Phil,,4/14/2017 0:00,12.0000000,12.0:35,48.849731000000,-3.013898000000,,Île-de-Bréhat - Côtes-d'Armor,47313,observation-30241a31-11ec-43c6-b4c8-efa78a557bef-6,https://biolit.fr/observations/observation-30241a31-11ec-43c6-b4c8-efa78a557bef-6/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070004.JPG,,TRUE, +N1,60310,sortie-30241a31-11ec-43c6-b4c8-efa78a557bef,https://biolit.fr/sorties/sortie-30241a31-11ec-43c6-b4c8-efa78a557bef/,Phil,,4/14/2017 0:00,12.0000000,12.0:35,48.849731000000,-3.013898000000,,Île-de-Bréhat - Côtes-d'Armor,47315,observation-30241a31-11ec-43c6-b4c8-efa78a557bef-7,https://biolit.fr/observations/observation-30241a31-11ec-43c6-b4c8-efa78a557bef-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070012.JPG,,FALSE, +N1,60311,sortie-278db14e-c641-484c-8daf-44ef9d231d2b,https://biolit.fr/sorties/sortie-278db14e-c641-484c-8daf-44ef9d231d2b/,Gary W,,9/21/2017 0:00,10.0000000,13.0000000,43.214790000000,5.342875000000,,Anse de la Maronaise,47317,observation-278db14e-c641-484c-8daf-44ef9d231d2b,https://biolit.fr/observations/observation-278db14e-c641-484c-8daf-44ef9d231d2b/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4650-scaled.jpg,,FALSE, +N1,60311,sortie-278db14e-c641-484c-8daf-44ef9d231d2b,https://biolit.fr/sorties/sortie-278db14e-c641-484c-8daf-44ef9d231d2b/,Gary W,,9/21/2017 0:00,10.0000000,13.0000000,43.214790000000,5.342875000000,,Anse de la Maronaise,47319,observation-278db14e-c641-484c-8daf-44ef9d231d2b-2,https://biolit.fr/observations/observation-278db14e-c641-484c-8daf-44ef9d231d2b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4648-scaled.jpg,,FALSE, +N1,60311,sortie-278db14e-c641-484c-8daf-44ef9d231d2b,https://biolit.fr/sorties/sortie-278db14e-c641-484c-8daf-44ef9d231d2b/,Gary W,,9/21/2017 0:00,10.0000000,13.0000000,43.214790000000,5.342875000000,,Anse de la Maronaise,47321,observation-278db14e-c641-484c-8daf-44ef9d231d2b-3,https://biolit.fr/observations/observation-278db14e-c641-484c-8daf-44ef9d231d2b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4649-scaled.jpg,,FALSE, +N1,60311,sortie-278db14e-c641-484c-8daf-44ef9d231d2b,https://biolit.fr/sorties/sortie-278db14e-c641-484c-8daf-44ef9d231d2b/,Gary W,,9/21/2017 0:00,10.0000000,13.0000000,43.214790000000,5.342875000000,,Anse de la Maronaise,47323,observation-278db14e-c641-484c-8daf-44ef9d231d2b-4,https://biolit.fr/observations/observation-278db14e-c641-484c-8daf-44ef9d231d2b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4653-scaled.jpg,,FALSE, +N1,60311,sortie-278db14e-c641-484c-8daf-44ef9d231d2b,https://biolit.fr/sorties/sortie-278db14e-c641-484c-8daf-44ef9d231d2b/,Gary W,,9/21/2017 0:00,10.0000000,13.0000000,43.214790000000,5.342875000000,,Anse de la Maronaise,47325,observation-278db14e-c641-484c-8daf-44ef9d231d2b-5,https://biolit.fr/observations/observation-278db14e-c641-484c-8daf-44ef9d231d2b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4656-scaled.jpg,,FALSE, +N1,60311,sortie-278db14e-c641-484c-8daf-44ef9d231d2b,https://biolit.fr/sorties/sortie-278db14e-c641-484c-8daf-44ef9d231d2b/,Gary W,,9/21/2017 0:00,10.0000000,13.0000000,43.214790000000,5.342875000000,,Anse de la Maronaise,47327,observation-278db14e-c641-484c-8daf-44ef9d231d2b-6,https://biolit.fr/observations/observation-278db14e-c641-484c-8daf-44ef9d231d2b-6/,Jacobaea maritima,Cinéraire maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4660-scaled.jpg,,TRUE, +N1,60311,sortie-278db14e-c641-484c-8daf-44ef9d231d2b,https://biolit.fr/sorties/sortie-278db14e-c641-484c-8daf-44ef9d231d2b/,Gary W,,9/21/2017 0:00,10.0000000,13.0000000,43.214790000000,5.342875000000,,Anse de la Maronaise,47329,observation-278db14e-c641-484c-8daf-44ef9d231d2b-7,https://biolit.fr/observations/observation-278db14e-c641-484c-8daf-44ef9d231d2b-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4662-scaled.jpg,,FALSE, +N1,60311,sortie-278db14e-c641-484c-8daf-44ef9d231d2b,https://biolit.fr/sorties/sortie-278db14e-c641-484c-8daf-44ef9d231d2b/,Gary W,,9/21/2017 0:00,10.0000000,13.0000000,43.214790000000,5.342875000000,,Anse de la Maronaise,47331,observation-278db14e-c641-484c-8daf-44ef9d231d2b-8,https://biolit.fr/observations/observation-278db14e-c641-484c-8daf-44ef9d231d2b-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4663-scaled.jpg,,FALSE, +N1,60311,sortie-278db14e-c641-484c-8daf-44ef9d231d2b,https://biolit.fr/sorties/sortie-278db14e-c641-484c-8daf-44ef9d231d2b/,Gary W,,9/21/2017 0:00,10.0000000,13.0000000,43.214790000000,5.342875000000,,Anse de la Maronaise,47333,observation-278db14e-c641-484c-8daf-44ef9d231d2b-9,https://biolit.fr/observations/observation-278db14e-c641-484c-8daf-44ef9d231d2b-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4664.jpg,,FALSE, +N1,60311,sortie-278db14e-c641-484c-8daf-44ef9d231d2b,https://biolit.fr/sorties/sortie-278db14e-c641-484c-8daf-44ef9d231d2b/,Gary W,,9/21/2017 0:00,10.0000000,13.0000000,43.214790000000,5.342875000000,,Anse de la Maronaise,47335,observation-278db14e-c641-484c-8daf-44ef9d231d2b-10,https://biolit.fr/observations/observation-278db14e-c641-484c-8daf-44ef9d231d2b-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4665-scaled.jpg,,FALSE, +N1,60311,sortie-278db14e-c641-484c-8daf-44ef9d231d2b,https://biolit.fr/sorties/sortie-278db14e-c641-484c-8daf-44ef9d231d2b/,Gary W,,9/21/2017 0:00,10.0000000,13.0000000,43.214790000000,5.342875000000,,Anse de la Maronaise,47337,observation-278db14e-c641-484c-8daf-44ef9d231d2b-11,https://biolit.fr/observations/observation-278db14e-c641-484c-8daf-44ef9d231d2b-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4666.jpg,,FALSE, +N1,60311,sortie-278db14e-c641-484c-8daf-44ef9d231d2b,https://biolit.fr/sorties/sortie-278db14e-c641-484c-8daf-44ef9d231d2b/,Gary W,,9/21/2017 0:00,10.0000000,13.0000000,43.214790000000,5.342875000000,,Anse de la Maronaise,47339,observation-278db14e-c641-484c-8daf-44ef9d231d2b-12,https://biolit.fr/observations/observation-278db14e-c641-484c-8daf-44ef9d231d2b-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4669-scaled.jpg,,FALSE, +N1,60312,sortie-1ec4d2d6-79c2-41bc-a4b6-9a355041eed4,https://biolit.fr/sorties/sortie-1ec4d2d6-79c2-41bc-a4b6-9a355041eed4/,Fleur,,9/17/2017 0:00,10.0000000,12.0:15,43.283998000000,5.316363000000,,"Plage St Estève (Ile de Ratonneau, Archipel du Frioul)",47341,observation-1ec4d2d6-79c2-41bc-a4b6-9a355041eed4,https://biolit.fr/observations/observation-1ec4d2d6-79c2-41bc-a4b6-9a355041eed4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9396-scaled.jpg,,FALSE, +N1,60313,sortie-017b63ef-eaef-4f62-91c2-d85450091a68,https://biolit.fr/sorties/sortie-017b63ef-eaef-4f62-91c2-d85450091a68/,Phil,,9/19/2017 0:00,12.0000000,13.000005,48.049393000000,-4.707435000000,,Cléden-Cap-Sizun - Finistère,47343,observation-017b63ef-eaef-4f62-91c2-d85450091a68,https://biolit.fr/observations/observation-017b63ef-eaef-4f62-91c2-d85450091a68/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080330.JPG,,FALSE, +N1,60313,sortie-017b63ef-eaef-4f62-91c2-d85450091a68,https://biolit.fr/sorties/sortie-017b63ef-eaef-4f62-91c2-d85450091a68/,Phil,,9/19/2017 0:00,12.0000000,13.000005,48.049393000000,-4.707435000000,,Cléden-Cap-Sizun - Finistère,47345,observation-017b63ef-eaef-4f62-91c2-d85450091a68-2,https://biolit.fr/observations/observation-017b63ef-eaef-4f62-91c2-d85450091a68-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080335.JPG,,FALSE, +N1,60313,sortie-017b63ef-eaef-4f62-91c2-d85450091a68,https://biolit.fr/sorties/sortie-017b63ef-eaef-4f62-91c2-d85450091a68/,Phil,,9/19/2017 0:00,12.0000000,13.000005,48.049393000000,-4.707435000000,,Cléden-Cap-Sizun - Finistère,47347,observation-017b63ef-eaef-4f62-91c2-d85450091a68-3,https://biolit.fr/observations/observation-017b63ef-eaef-4f62-91c2-d85450091a68-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080336.JPG,,FALSE, +N1,60313,sortie-017b63ef-eaef-4f62-91c2-d85450091a68,https://biolit.fr/sorties/sortie-017b63ef-eaef-4f62-91c2-d85450091a68/,Phil,,9/19/2017 0:00,12.0000000,13.000005,48.049393000000,-4.707435000000,,Cléden-Cap-Sizun - Finistère,47349,observation-017b63ef-eaef-4f62-91c2-d85450091a68-4,https://biolit.fr/observations/observation-017b63ef-eaef-4f62-91c2-d85450091a68-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080337.JPG,,FALSE, +N1,60314,sortie-8b5266ec-6cc8-49e6-8376-cf662f196c04,https://biolit.fr/sorties/sortie-8b5266ec-6cc8-49e6-8376-cf662f196c04/,Kevin,,9/17/2017 0:00,10.0000000,15.0000000,43.284206000000,5.315718000000,,Plage de Saint-Estève au Frioul,47351,observation-8b5266ec-6cc8-49e6-8376-cf662f196c04,https://biolit.fr/observations/observation-8b5266ec-6cc8-49e6-8376-cf662f196c04/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2880-scaled.jpg,,FALSE, +N1,60314,sortie-8b5266ec-6cc8-49e6-8376-cf662f196c04,https://biolit.fr/sorties/sortie-8b5266ec-6cc8-49e6-8376-cf662f196c04/,Kevin,,9/17/2017 0:00,10.0000000,15.0000000,43.284206000000,5.315718000000,,Plage de Saint-Estève au Frioul,47353,observation-8b5266ec-6cc8-49e6-8376-cf662f196c04-2,https://biolit.fr/observations/observation-8b5266ec-6cc8-49e6-8376-cf662f196c04-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2882-scaled.jpg,,FALSE, +N1,60314,sortie-8b5266ec-6cc8-49e6-8376-cf662f196c04,https://biolit.fr/sorties/sortie-8b5266ec-6cc8-49e6-8376-cf662f196c04/,Kevin,,9/17/2017 0:00,10.0000000,15.0000000,43.284206000000,5.315718000000,,Plage de Saint-Estève au Frioul,47355,observation-8b5266ec-6cc8-49e6-8376-cf662f196c04-3,https://biolit.fr/observations/observation-8b5266ec-6cc8-49e6-8376-cf662f196c04-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2883-scaled.jpg,,FALSE, +N1,60314,sortie-8b5266ec-6cc8-49e6-8376-cf662f196c04,https://biolit.fr/sorties/sortie-8b5266ec-6cc8-49e6-8376-cf662f196c04/,Kevin,,9/17/2017 0:00,10.0000000,15.0000000,43.284206000000,5.315718000000,,Plage de Saint-Estève au Frioul,47357,observation-8b5266ec-6cc8-49e6-8376-cf662f196c04-4,https://biolit.fr/observations/observation-8b5266ec-6cc8-49e6-8376-cf662f196c04-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2884-scaled.jpg,,FALSE, +N1,60314,sortie-8b5266ec-6cc8-49e6-8376-cf662f196c04,https://biolit.fr/sorties/sortie-8b5266ec-6cc8-49e6-8376-cf662f196c04/,Kevin,,9/17/2017 0:00,10.0000000,15.0000000,43.284206000000,5.315718000000,,Plage de Saint-Estève au Frioul,47359,observation-8b5266ec-6cc8-49e6-8376-cf662f196c04-5,https://biolit.fr/observations/observation-8b5266ec-6cc8-49e6-8376-cf662f196c04-5/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2885-scaled.jpg,,TRUE, +N1,60314,sortie-8b5266ec-6cc8-49e6-8376-cf662f196c04,https://biolit.fr/sorties/sortie-8b5266ec-6cc8-49e6-8376-cf662f196c04/,Kevin,,9/17/2017 0:00,10.0000000,15.0000000,43.284206000000,5.315718000000,,Plage de Saint-Estève au Frioul,47361,observation-8b5266ec-6cc8-49e6-8376-cf662f196c04-6,https://biolit.fr/observations/observation-8b5266ec-6cc8-49e6-8376-cf662f196c04-6/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2886-scaled.jpg,,TRUE, +N1,60314,sortie-8b5266ec-6cc8-49e6-8376-cf662f196c04,https://biolit.fr/sorties/sortie-8b5266ec-6cc8-49e6-8376-cf662f196c04/,Kevin,,9/17/2017 0:00,10.0000000,15.0000000,43.284206000000,5.315718000000,,Plage de Saint-Estève au Frioul,47363,observation-8b5266ec-6cc8-49e6-8376-cf662f196c04-7,https://biolit.fr/observations/observation-8b5266ec-6cc8-49e6-8376-cf662f196c04-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3008-scaled.jpg,,FALSE, +N1,60315,sortie-dd9f3368-0b78-4174-bc2f-2c4aa75b5dbb,https://biolit.fr/sorties/sortie-dd9f3368-0b78-4174-bc2f-2c4aa75b5dbb/,Noëlla M,,9/21/2017 0:00,11.0000000,12.0000000,43.214943000000,5.342933000000,,Anse de la Maronaise ,47365,observation-dd9f3368-0b78-4174-bc2f-2c4aa75b5dbb,https://biolit.fr/observations/observation-dd9f3368-0b78-4174-bc2f-2c4aa75b5dbb/,,,,https://biolit.fr/wp-content/uploads/2023/07/HUGO 462-scaled.jpg,,FALSE, +N1,60315,sortie-dd9f3368-0b78-4174-bc2f-2c4aa75b5dbb,https://biolit.fr/sorties/sortie-dd9f3368-0b78-4174-bc2f-2c4aa75b5dbb/,Noëlla M,,9/21/2017 0:00,11.0000000,12.0000000,43.214943000000,5.342933000000,,Anse de la Maronaise ,47367,observation-dd9f3368-0b78-4174-bc2f-2c4aa75b5dbb-2,https://biolit.fr/observations/observation-dd9f3368-0b78-4174-bc2f-2c4aa75b5dbb-2/,Lithophyllum byssoides,Algue calcaire des trottoirs,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3204-scaled.jpg,,TRUE, +N1,60315,sortie-dd9f3368-0b78-4174-bc2f-2c4aa75b5dbb,https://biolit.fr/sorties/sortie-dd9f3368-0b78-4174-bc2f-2c4aa75b5dbb/,Noëlla M,,9/21/2017 0:00,11.0000000,12.0000000,43.214943000000,5.342933000000,,Anse de la Maronaise ,47369,observation-dd9f3368-0b78-4174-bc2f-2c4aa75b5dbb-3,https://biolit.fr/observations/observation-dd9f3368-0b78-4174-bc2f-2c4aa75b5dbb-3/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0499-scaled.jpg,,TRUE, +N1,60316,sortie-45b3d41b-acc2-4ba0-9a5f-579ba466386b,https://biolit.fr/sorties/sortie-45b3d41b-acc2-4ba0-9a5f-579ba466386b/,Phil,,9/19/2017 0:00,12.0000000,12.0000000,48.049937000000,-4.708545000000,,Cléden-Cap-Sizun - Finistère,47371,observation-45b3d41b-acc2-4ba0-9a5f-579ba466386b,https://biolit.fr/observations/observation-45b3d41b-acc2-4ba0-9a5f-579ba466386b/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/P1080265.JPG,,TRUE, +N1,60316,sortie-45b3d41b-acc2-4ba0-9a5f-579ba466386b,https://biolit.fr/sorties/sortie-45b3d41b-acc2-4ba0-9a5f-579ba466386b/,Phil,,9/19/2017 0:00,12.0000000,12.0000000,48.049937000000,-4.708545000000,,Cléden-Cap-Sizun - Finistère,47373,observation-45b3d41b-acc2-4ba0-9a5f-579ba466386b-2,https://biolit.fr/observations/observation-45b3d41b-acc2-4ba0-9a5f-579ba466386b-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/P1080267.JPG,,TRUE, +N1,60316,sortie-45b3d41b-acc2-4ba0-9a5f-579ba466386b,https://biolit.fr/sorties/sortie-45b3d41b-acc2-4ba0-9a5f-579ba466386b/,Phil,,9/19/2017 0:00,12.0000000,12.0000000,48.049937000000,-4.708545000000,,Cléden-Cap-Sizun - Finistère,47375,observation-45b3d41b-acc2-4ba0-9a5f-579ba466386b-3,https://biolit.fr/observations/observation-45b3d41b-acc2-4ba0-9a5f-579ba466386b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080274.JPG,,FALSE, +N1,60316,sortie-45b3d41b-acc2-4ba0-9a5f-579ba466386b,https://biolit.fr/sorties/sortie-45b3d41b-acc2-4ba0-9a5f-579ba466386b/,Phil,,9/19/2017 0:00,12.0000000,12.0000000,48.049937000000,-4.708545000000,,Cléden-Cap-Sizun - Finistère,47377,observation-45b3d41b-acc2-4ba0-9a5f-579ba466386b-4,https://biolit.fr/observations/observation-45b3d41b-acc2-4ba0-9a5f-579ba466386b-4/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/P1080276.JPG,,TRUE, +N1,60317,sortie-7d0c37f7-a48f-4c47-92e4-ea129cc4b9d3,https://biolit.fr/sorties/sortie-7d0c37f7-a48f-4c47-92e4-ea129cc4b9d3/,Phil,,9/22/2017 0:00,11.0:55,12.0000000,47.79126500000,-4.284183000000,,Le Guilvinec - Finistère,47379,observation-7d0c37f7-a48f-4c47-92e4-ea129cc4b9d3,https://biolit.fr/observations/observation-7d0c37f7-a48f-4c47-92e4-ea129cc4b9d3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080840.JPG,,FALSE, +N1,60317,sortie-7d0c37f7-a48f-4c47-92e4-ea129cc4b9d3,https://biolit.fr/sorties/sortie-7d0c37f7-a48f-4c47-92e4-ea129cc4b9d3/,Phil,,9/22/2017 0:00,11.0:55,12.0000000,47.79126500000,-4.284183000000,,Le Guilvinec - Finistère,47381,observation-7d0c37f7-a48f-4c47-92e4-ea129cc4b9d3-2,https://biolit.fr/observations/observation-7d0c37f7-a48f-4c47-92e4-ea129cc4b9d3-2/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/P1080843_0.JPG,,TRUE, +N1,60317,sortie-7d0c37f7-a48f-4c47-92e4-ea129cc4b9d3,https://biolit.fr/sorties/sortie-7d0c37f7-a48f-4c47-92e4-ea129cc4b9d3/,Phil,,9/22/2017 0:00,11.0:55,12.0000000,47.79126500000,-4.284183000000,,Le Guilvinec - Finistère,47383,observation-7d0c37f7-a48f-4c47-92e4-ea129cc4b9d3-3,https://biolit.fr/observations/observation-7d0c37f7-a48f-4c47-92e4-ea129cc4b9d3-3/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/P1080847.JPG,,TRUE, +N1,60318,sortie-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c,https://biolit.fr/sorties/sortie-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c/,Phil,,9/19/2017 0:00,12.0:25,12.0000000,48.050318000000,-4.709747000000,,Cléden-Cap-Sizun - Finistère,47385,observation-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c,https://biolit.fr/observations/observation-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080307.JPG,,FALSE, +N1,60318,sortie-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c,https://biolit.fr/sorties/sortie-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c/,Phil,,9/19/2017 0:00,12.0:25,12.0000000,48.050318000000,-4.709747000000,,Cléden-Cap-Sizun - Finistère,47387,observation-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c-2,https://biolit.fr/observations/observation-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c-2/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/P1080308.JPG,,TRUE, +N1,60318,sortie-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c,https://biolit.fr/sorties/sortie-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c/,Phil,,9/19/2017 0:00,12.0:25,12.0000000,48.050318000000,-4.709747000000,,Cléden-Cap-Sizun - Finistère,47389,observation-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c-3,https://biolit.fr/observations/observation-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080315.JPG,,FALSE, +N1,60318,sortie-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c,https://biolit.fr/sorties/sortie-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c/,Phil,,9/19/2017 0:00,12.0:25,12.0000000,48.050318000000,-4.709747000000,,Cléden-Cap-Sizun - Finistère,47391,observation-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c-4,https://biolit.fr/observations/observation-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080316.JPG,,FALSE, +N1,60318,sortie-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c,https://biolit.fr/sorties/sortie-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c/,Phil,,9/19/2017 0:00,12.0:25,12.0000000,48.050318000000,-4.709747000000,,Cléden-Cap-Sizun - Finistère,47393,observation-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c-5,https://biolit.fr/observations/observation-8ca755f9-4c5c-4b2f-81ed-2e4dd12ef91c-5/,Saccharina latissima,Laminaire sucrée,,https://biolit.fr/wp-content/uploads/2023/07/P1080303.JPG,,TRUE, +N1,60319,sortie-204a26f6-e37a-4780-8461-31834720708f,https://biolit.fr/sorties/sortie-204a26f6-e37a-4780-8461-31834720708f/,Phil,,4/14/2017 0:00,16.0000000,16.0000000,48.838659000000,-3.012459000000,,Île-de-Bréhat - Côtes-d'Armor,47395,observation-204a26f6-e37a-4780-8461-31834720708f,https://biolit.fr/observations/observation-204a26f6-e37a-4780-8461-31834720708f/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/P1070104.JPG,,TRUE, +N1,60319,sortie-204a26f6-e37a-4780-8461-31834720708f,https://biolit.fr/sorties/sortie-204a26f6-e37a-4780-8461-31834720708f/,Phil,,4/14/2017 0:00,16.0000000,16.0000000,48.838659000000,-3.012459000000,,Île-de-Bréhat - Côtes-d'Armor,47397,observation-204a26f6-e37a-4780-8461-31834720708f-2,https://biolit.fr/observations/observation-204a26f6-e37a-4780-8461-31834720708f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070105.JPG,,FALSE, +N1,60319,sortie-204a26f6-e37a-4780-8461-31834720708f,https://biolit.fr/sorties/sortie-204a26f6-e37a-4780-8461-31834720708f/,Phil,,4/14/2017 0:00,16.0000000,16.0000000,48.838659000000,-3.012459000000,,Île-de-Bréhat - Côtes-d'Armor,47399,observation-204a26f6-e37a-4780-8461-31834720708f-3,https://biolit.fr/observations/observation-204a26f6-e37a-4780-8461-31834720708f-3/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/P1070110.JPG,,TRUE, +N1,60319,sortie-204a26f6-e37a-4780-8461-31834720708f,https://biolit.fr/sorties/sortie-204a26f6-e37a-4780-8461-31834720708f/,Phil,,4/14/2017 0:00,16.0000000,16.0000000,48.838659000000,-3.012459000000,,Île-de-Bréhat - Côtes-d'Armor,47401,observation-204a26f6-e37a-4780-8461-31834720708f-4,https://biolit.fr/observations/observation-204a26f6-e37a-4780-8461-31834720708f-4/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/P1070114.JPG,,TRUE, +N1,60319,sortie-204a26f6-e37a-4780-8461-31834720708f,https://biolit.fr/sorties/sortie-204a26f6-e37a-4780-8461-31834720708f/,Phil,,4/14/2017 0:00,16.0000000,16.0000000,48.838659000000,-3.012459000000,,Île-de-Bréhat - Côtes-d'Armor,47403,observation-204a26f6-e37a-4780-8461-31834720708f-5,https://biolit.fr/observations/observation-204a26f6-e37a-4780-8461-31834720708f-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070118.JPG,,FALSE, +N1,60320,sortie-43b2c6fc-5250-4498-aee6-dcf63aedb158,https://biolit.fr/sorties/sortie-43b2c6fc-5250-4498-aee6-dcf63aedb158/,ChristineSG,,9/23/2017 0:00,11.0000000,17.0000000,44.921921000000,-1.213684000000,,Le Porge,47405,observation-43b2c6fc-5250-4498-aee6-dcf63aedb158,https://biolit.fr/observations/observation-43b2c6fc-5250-4498-aee6-dcf63aedb158/,Calidris alba,Bécasseau sanderling,,https://biolit.fr/wp-content/uploads/2023/07/DSCN07271-ConvertImage-scaled.jpg,,TRUE, +N1,60321,sortie-74db0ecb-c902-447c-a776-c7ad17354fa2,https://biolit.fr/sorties/sortie-74db0ecb-c902-447c-a776-c7ad17354fa2/,Marine,,9/23/2017 0:00,18.0000000,18.0:45,43.090003000000,6.022862000000,,Plage de la garonne,47407,observation-74db0ecb-c902-447c-a776-c7ad17354fa2,https://biolit.fr/observations/observation-74db0ecb-c902-447c-a776-c7ad17354fa2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3147_0-scaled.jpg,,FALSE, +N1,60322,sortie-b2153463-c96e-4748-aa6a-361e7482263d,https://biolit.fr/sorties/sortie-b2153463-c96e-4748-aa6a-361e7482263d/,Marine,,9/23/2017 0:00,18.0:25,18.0000000,43.088991000000,6.026735000000,,Plage de la garonne,47409,observation-b2153463-c96e-4748-aa6a-361e7482263d,https://biolit.fr/observations/observation-b2153463-c96e-4748-aa6a-361e7482263d/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3143_0-scaled.jpg,,FALSE, +N1,60323,sortie-13053675-02aa-441b-9ced-d3c47a463ff0,https://biolit.fr/sorties/sortie-13053675-02aa-441b-9ced-d3c47a463ff0/,Phil,,9/18/2017 0:00,12.0:45,12.0000000,47.791126000000,-4.269248000000,,Léchiagat - Finistère,47411,observation-13053675-02aa-441b-9ced-d3c47a463ff0,https://biolit.fr/observations/observation-13053675-02aa-441b-9ced-d3c47a463ff0/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080210.jpg,,FALSE, +N1,60323,sortie-13053675-02aa-441b-9ced-d3c47a463ff0,https://biolit.fr/sorties/sortie-13053675-02aa-441b-9ced-d3c47a463ff0/,Phil,,9/18/2017 0:00,12.0:45,12.0000000,47.791126000000,-4.269248000000,,Léchiagat - Finistère,47413,observation-13053675-02aa-441b-9ced-d3c47a463ff0-2,https://biolit.fr/observations/observation-13053675-02aa-441b-9ced-d3c47a463ff0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080212.JPG,,FALSE, +N1,60323,sortie-13053675-02aa-441b-9ced-d3c47a463ff0,https://biolit.fr/sorties/sortie-13053675-02aa-441b-9ced-d3c47a463ff0/,Phil,,9/18/2017 0:00,12.0:45,12.0000000,47.791126000000,-4.269248000000,,Léchiagat - Finistère,47415,observation-13053675-02aa-441b-9ced-d3c47a463ff0-3,https://biolit.fr/observations/observation-13053675-02aa-441b-9ced-d3c47a463ff0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080215.JPG,,FALSE, +N1,60323,sortie-13053675-02aa-441b-9ced-d3c47a463ff0,https://biolit.fr/sorties/sortie-13053675-02aa-441b-9ced-d3c47a463ff0/,Phil,,9/18/2017 0:00,12.0:45,12.0000000,47.791126000000,-4.269248000000,,Léchiagat - Finistère,47417,observation-13053675-02aa-441b-9ced-d3c47a463ff0-4,https://biolit.fr/observations/observation-13053675-02aa-441b-9ced-d3c47a463ff0-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080216.JPG,,FALSE, +N1,60323,sortie-13053675-02aa-441b-9ced-d3c47a463ff0,https://biolit.fr/sorties/sortie-13053675-02aa-441b-9ced-d3c47a463ff0/,Phil,,9/18/2017 0:00,12.0:45,12.0000000,47.791126000000,-4.269248000000,,Léchiagat - Finistère,47419,observation-13053675-02aa-441b-9ced-d3c47a463ff0-5,https://biolit.fr/observations/observation-13053675-02aa-441b-9ced-d3c47a463ff0-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080218.JPG,,FALSE, +N1,60324,sortie-f182c978-8615-4097-9ceb-e8eb571fc07d,https://biolit.fr/sorties/sortie-f182c978-8615-4097-9ceb-e8eb571fc07d/,CarpeDiem,,8/13/2017 0:00,17.0000000,18.0000000,42.963058000000,9.347586000000,,"Centuri, petite crique",47421,observation-f182c978-8615-4097-9ceb-e8eb571fc07d,https://biolit.fr/observations/observation-f182c978-8615-4097-9ceb-e8eb571fc07d/,,,,https://biolit.fr/wp-content/uploads/2023/07/anemone-scaled.jpg,,FALSE, +N1,60324,sortie-f182c978-8615-4097-9ceb-e8eb571fc07d,https://biolit.fr/sorties/sortie-f182c978-8615-4097-9ceb-e8eb571fc07d/,CarpeDiem,,8/13/2017 0:00,17.0000000,18.0000000,42.963058000000,9.347586000000,,"Centuri, petite crique",47422,observation-f182c978-8615-4097-9ceb-e8eb571fc07d-2,https://biolit.fr/observations/observation-f182c978-8615-4097-9ceb-e8eb571fc07d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Caulerpa racemosa-scaled.jpg,,FALSE, +N1,60324,sortie-f182c978-8615-4097-9ceb-e8eb571fc07d,https://biolit.fr/sorties/sortie-f182c978-8615-4097-9ceb-e8eb571fc07d/,CarpeDiem,,8/13/2017 0:00,17.0000000,18.0000000,42.963058000000,9.347586000000,,"Centuri, petite crique",47424,observation-f182c978-8615-4097-9ceb-e8eb571fc07d-3,https://biolit.fr/observations/observation-f182c978-8615-4097-9ceb-e8eb571fc07d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crevette-scaled.jpg,,FALSE, +N1,60324,sortie-f182c978-8615-4097-9ceb-e8eb571fc07d,https://biolit.fr/sorties/sortie-f182c978-8615-4097-9ceb-e8eb571fc07d/,CarpeDiem,,8/13/2017 0:00,17.0000000,18.0000000,42.963058000000,9.347586000000,,"Centuri, petite crique",47426,observation-f182c978-8615-4097-9ceb-e8eb571fc07d-4,https://biolit.fr/observations/observation-f182c978-8615-4097-9ceb-e8eb571fc07d-4/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/Gobbie-scaled.jpg,,TRUE, +N1,60324,sortie-f182c978-8615-4097-9ceb-e8eb571fc07d,https://biolit.fr/sorties/sortie-f182c978-8615-4097-9ceb-e8eb571fc07d/,CarpeDiem,,8/13/2017 0:00,17.0000000,18.0000000,42.963058000000,9.347586000000,,"Centuri, petite crique",47428,observation-f182c978-8615-4097-9ceb-e8eb571fc07d-5,https://biolit.fr/observations/observation-f182c978-8615-4097-9ceb-e8eb571fc07d-5/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/patelle.jpg,,TRUE, +N1,60324,sortie-f182c978-8615-4097-9ceb-e8eb571fc07d,https://biolit.fr/sorties/sortie-f182c978-8615-4097-9ceb-e8eb571fc07d/,CarpeDiem,,8/13/2017 0:00,17.0000000,18.0000000,42.963058000000,9.347586000000,,"Centuri, petite crique",47429,observation-f182c978-8615-4097-9ceb-e8eb571fc07d-6,https://biolit.fr/observations/observation-f182c978-8615-4097-9ceb-e8eb571fc07d-6/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/2023/07/poulpe.JPG,,TRUE, +N1,60325,sortie-8b73367b-086f-4ad2-9753-bad057262f06,https://biolit.fr/sorties/sortie-8b73367b-086f-4ad2-9753-bad057262f06/,CarpeDiem,,8/15/2017 0:00,17.0000000,19.0000000,42.963127000000,9.347482000000,,"Centuri, petites criques",47430,observation-8b73367b-086f-4ad2-9753-bad057262f06,https://biolit.fr/observations/observation-8b73367b-086f-4ad2-9753-bad057262f06/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/05/algue-scaled.jpg,,TRUE, +N1,60325,sortie-8b73367b-086f-4ad2-9753-bad057262f06,https://biolit.fr/sorties/sortie-8b73367b-086f-4ad2-9753-bad057262f06/,CarpeDiem,,8/15/2017 0:00,17.0000000,19.0000000,42.963127000000,9.347482000000,,"Centuri, petites criques",47431,observation-8b73367b-086f-4ad2-9753-bad057262f06-2,https://biolit.fr/observations/observation-8b73367b-086f-4ad2-9753-bad057262f06-2/,Aidablennius sphynx,Blennie sphinx,,https://biolit.fr/wp-content/uploads/2023/07/Blennie_0-scaled.jpg,,TRUE, +N1,60325,sortie-8b73367b-086f-4ad2-9753-bad057262f06,https://biolit.fr/sorties/sortie-8b73367b-086f-4ad2-9753-bad057262f06/,CarpeDiem,,8/15/2017 0:00,17.0000000,19.0000000,42.963127000000,9.347482000000,,"Centuri, petites criques",47433,observation-8b73367b-086f-4ad2-9753-bad057262f06-3,https://biolit.fr/observations/observation-8b73367b-086f-4ad2-9753-bad057262f06-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabe 2-scaled.jpg,,FALSE, +N1,60325,sortie-8b73367b-086f-4ad2-9753-bad057262f06,https://biolit.fr/sorties/sortie-8b73367b-086f-4ad2-9753-bad057262f06/,CarpeDiem,,8/15/2017 0:00,17.0000000,19.0000000,42.963127000000,9.347482000000,,"Centuri, petites criques",47434,observation-8b73367b-086f-4ad2-9753-bad057262f06-4,https://biolit.fr/observations/observation-8b73367b-086f-4ad2-9753-bad057262f06-4/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/crabe-scaled.jpg,,TRUE, +N1,60325,sortie-8b73367b-086f-4ad2-9753-bad057262f06,https://biolit.fr/sorties/sortie-8b73367b-086f-4ad2-9753-bad057262f06/,CarpeDiem,,8/15/2017 0:00,17.0000000,19.0000000,42.963127000000,9.347482000000,,"Centuri, petites criques",47435,observation-8b73367b-086f-4ad2-9753-bad057262f06-5,https://biolit.fr/observations/observation-8b73367b-086f-4ad2-9753-bad057262f06-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Dent de cochon-scaled.jpg,,FALSE, +N1,60325,sortie-8b73367b-086f-4ad2-9753-bad057262f06,https://biolit.fr/sorties/sortie-8b73367b-086f-4ad2-9753-bad057262f06/,CarpeDiem,,8/15/2017 0:00,17.0000000,19.0000000,42.963127000000,9.347482000000,,"Centuri, petites criques",47437,observation-8b73367b-086f-4ad2-9753-bad057262f06-6,https://biolit.fr/observations/observation-8b73367b-086f-4ad2-9753-bad057262f06-6/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule toupie-scaled.jpg,,TRUE, +N1,60325,sortie-8b73367b-086f-4ad2-9753-bad057262f06,https://biolit.fr/sorties/sortie-8b73367b-086f-4ad2-9753-bad057262f06/,CarpeDiem,,8/15/2017 0:00,17.0000000,19.0000000,42.963127000000,9.347482000000,,"Centuri, petites criques",47439,observation-8b73367b-086f-4ad2-9753-bad057262f06-7,https://biolit.fr/observations/observation-8b73367b-086f-4ad2-9753-bad057262f06-7/,Ophioderma longicaudum,Ophiure lisse,,https://biolit.fr/wp-content/uploads/2023/07/Ophiure noire-scaled.jpg,,TRUE, +N1,60325,sortie-8b73367b-086f-4ad2-9753-bad057262f06,https://biolit.fr/sorties/sortie-8b73367b-086f-4ad2-9753-bad057262f06/,CarpeDiem,,8/15/2017 0:00,17.0000000,19.0000000,42.963127000000,9.347482000000,,"Centuri, petites criques",47441,observation-8b73367b-086f-4ad2-9753-bad057262f06-8,https://biolit.fr/observations/observation-8b73367b-086f-4ad2-9753-bad057262f06-8/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/oursin_1-scaled.jpg,,TRUE, +N1,60325,sortie-8b73367b-086f-4ad2-9753-bad057262f06,https://biolit.fr/sorties/sortie-8b73367b-086f-4ad2-9753-bad057262f06/,CarpeDiem,,8/15/2017 0:00,17.0000000,19.0000000,42.963127000000,9.347482000000,,"Centuri, petites criques",47443,observation-8b73367b-086f-4ad2-9753-bad057262f06-9,https://biolit.fr/observations/observation-8b73367b-086f-4ad2-9753-bad057262f06-9/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/oursin_2-scaled.jpg,,TRUE, +N1,60325,sortie-8b73367b-086f-4ad2-9753-bad057262f06,https://biolit.fr/sorties/sortie-8b73367b-086f-4ad2-9753-bad057262f06/,CarpeDiem,,8/15/2017 0:00,17.0000000,19.0000000,42.963127000000,9.347482000000,,"Centuri, petites criques",47445,observation-8b73367b-086f-4ad2-9753-bad057262f06-10,https://biolit.fr/observations/observation-8b73367b-086f-4ad2-9753-bad057262f06-10/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/Rocher Facié-scaled.jpg,,TRUE, +N1,60325,sortie-8b73367b-086f-4ad2-9753-bad057262f06,https://biolit.fr/sorties/sortie-8b73367b-086f-4ad2-9753-bad057262f06/,CarpeDiem,,8/15/2017 0:00,17.0000000,19.0000000,42.963127000000,9.347482000000,,"Centuri, petites criques",47447,observation-8b73367b-086f-4ad2-9753-bad057262f06-11,https://biolit.fr/observations/observation-8b73367b-086f-4ad2-9753-bad057262f06-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Rocher facié_2-scaled.jpg,,FALSE, +N1,60325,sortie-8b73367b-086f-4ad2-9753-bad057262f06,https://biolit.fr/sorties/sortie-8b73367b-086f-4ad2-9753-bad057262f06/,CarpeDiem,,8/15/2017 0:00,17.0000000,19.0000000,42.963127000000,9.347482000000,,"Centuri, petites criques",47449,observation-8b73367b-086f-4ad2-9753-bad057262f06-12,https://biolit.fr/observations/observation-8b73367b-086f-4ad2-9753-bad057262f06-12/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/velella velella.PNG,,TRUE, +N1,60326,sortie-f0f1adb8-7571-4967-918e-42ae4b003827,https://biolit.fr/sorties/sortie-f0f1adb8-7571-4967-918e-42ae4b003827/,CarpeDiem,,8/13/2017 0:00,10.0000000,11.0000000,42.963413000000,9.346843000000,,"Centuri, petite plage de galets",47450,observation-f0f1adb8-7571-4967-918e-42ae4b003827,https://biolit.fr/observations/observation-f0f1adb8-7571-4967-918e-42ae4b003827/,,,,https://biolit.fr/wp-content/uploads/2023/07/eponge_0-scaled.jpg,,FALSE, +N1,60326,sortie-f0f1adb8-7571-4967-918e-42ae4b003827,https://biolit.fr/sorties/sortie-f0f1adb8-7571-4967-918e-42ae4b003827/,CarpeDiem,,8/13/2017 0:00,10.0000000,11.0000000,42.963413000000,9.346843000000,,"Centuri, petite plage de galets",47452,observation-f0f1adb8-7571-4967-918e-42ae4b003827-2,https://biolit.fr/observations/observation-f0f1adb8-7571-4967-918e-42ae4b003827-2/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Os de seiche.JPG,,TRUE, +N1,60326,sortie-f0f1adb8-7571-4967-918e-42ae4b003827,https://biolit.fr/sorties/sortie-f0f1adb8-7571-4967-918e-42ae4b003827/,CarpeDiem,,8/13/2017 0:00,10.0000000,11.0000000,42.963413000000,9.346843000000,,"Centuri, petite plage de galets",47453,observation-f0f1adb8-7571-4967-918e-42ae4b003827-3,https://biolit.fr/observations/observation-f0f1adb8-7571-4967-918e-42ae4b003827-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle nurserie-scaled.jpg,,FALSE, +N1,60326,sortie-f0f1adb8-7571-4967-918e-42ae4b003827,https://biolit.fr/sorties/sortie-f0f1adb8-7571-4967-918e-42ae4b003827/,CarpeDiem,,8/13/2017 0:00,10.0000000,11.0000000,42.963413000000,9.346843000000,,"Centuri, petite plage de galets",47455,observation-f0f1adb8-7571-4967-918e-42ae4b003827-4,https://biolit.fr/observations/observation-f0f1adb8-7571-4967-918e-42ae4b003827-4/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/Tomate de Mer-scaled.jpg,,TRUE, +N1,60328,sortie-ed7d65c8-201f-4a04-b603-eeb94d6ab7e6,https://biolit.fr/sorties/sortie-ed7d65c8-201f-4a04-b603-eeb94d6ab7e6/,CarpeDiem,,08/12/2017,11.0000000,11.0000000,42.963483000000,9.346014000000,,"Centuri, rochers face ilot capense",47462,observation-ed7d65c8-201f-4a04-b603-eeb94d6ab7e6,https://biolit.fr/observations/observation-ed7d65c8-201f-4a04-b603-eeb94d6ab7e6/,,,,https://biolit.fr/wp-content/uploads/2023/07/meduse-scaled.jpg,,FALSE, +N1,60328,sortie-ed7d65c8-201f-4a04-b603-eeb94d6ab7e6,https://biolit.fr/sorties/sortie-ed7d65c8-201f-4a04-b603-eeb94d6ab7e6/,CarpeDiem,,08/12/2017,11.0000000,11.0000000,42.963483000000,9.346014000000,,"Centuri, rochers face ilot capense",47463,observation-ed7d65c8-201f-4a04-b603-eeb94d6ab7e6-2,https://biolit.fr/observations/observation-ed7d65c8-201f-4a04-b603-eeb94d6ab7e6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algue_0-scaled.jpg,,FALSE, +N1,60329,sortie-4835ed0d-94d2-4f58-9feb-a0dbe937efe5,https://biolit.fr/sorties/sortie-4835ed0d-94d2-4f58-9feb-a0dbe937efe5/,Phil,,9/18/2017 0:00,12.0:25,12.0000000,47.787342000000,-4.27027000000,,Léchiagat - Finistère,47464,observation-4835ed0d-94d2-4f58-9feb-a0dbe937efe5,https://biolit.fr/observations/observation-4835ed0d-94d2-4f58-9feb-a0dbe937efe5/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1080172_1.JPG,,TRUE, +N1,60329,sortie-4835ed0d-94d2-4f58-9feb-a0dbe937efe5,https://biolit.fr/sorties/sortie-4835ed0d-94d2-4f58-9feb-a0dbe937efe5/,Phil,,9/18/2017 0:00,12.0:25,12.0000000,47.787342000000,-4.27027000000,,Léchiagat - Finistère,47466,observation-4835ed0d-94d2-4f58-9feb-a0dbe937efe5-2,https://biolit.fr/observations/observation-4835ed0d-94d2-4f58-9feb-a0dbe937efe5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080170_0.JPG,,FALSE, +N1,60329,sortie-4835ed0d-94d2-4f58-9feb-a0dbe937efe5,https://biolit.fr/sorties/sortie-4835ed0d-94d2-4f58-9feb-a0dbe937efe5/,Phil,,9/18/2017 0:00,12.0:25,12.0000000,47.787342000000,-4.27027000000,,Léchiagat - Finistère,47468,observation-4835ed0d-94d2-4f58-9feb-a0dbe937efe5-3,https://biolit.fr/observations/observation-4835ed0d-94d2-4f58-9feb-a0dbe937efe5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080168.JPG,,FALSE, +N1,60330,sortie-7f3bf924-e5f4-412b-b367-f1e112a98360,https://biolit.fr/sorties/sortie-7f3bf924-e5f4-412b-b367-f1e112a98360/,SYLVIE CACCIA,,9/21/2017 0:00,10.0000000,12.0000000,43.214965000000,5.343147000000,,Anse de la Maronaise,47470,observation-7f3bf924-e5f4-412b-b367-f1e112a98360,https://biolit.fr/observations/observation-7f3bf924-e5f4-412b-b367-f1e112a98360/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0710_0-scaled.jpg,,FALSE, +N1,60330,sortie-7f3bf924-e5f4-412b-b367-f1e112a98360,https://biolit.fr/sorties/sortie-7f3bf924-e5f4-412b-b367-f1e112a98360/,SYLVIE CACCIA,,9/21/2017 0:00,10.0000000,12.0000000,43.214965000000,5.343147000000,,Anse de la Maronaise,47472,observation-7f3bf924-e5f4-412b-b367-f1e112a98360-2,https://biolit.fr/observations/observation-7f3bf924-e5f4-412b-b367-f1e112a98360-2/,Lithophyllum byssoides,Algue calcaire des trottoirs,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0712-scaled.jpg,,TRUE, +N1,60330,sortie-7f3bf924-e5f4-412b-b367-f1e112a98360,https://biolit.fr/sorties/sortie-7f3bf924-e5f4-412b-b367-f1e112a98360/,SYLVIE CACCIA,,9/21/2017 0:00,10.0000000,12.0000000,43.214965000000,5.343147000000,,Anse de la Maronaise,47474,observation-7f3bf924-e5f4-412b-b367-f1e112a98360-3,https://biolit.fr/observations/observation-7f3bf924-e5f4-412b-b367-f1e112a98360-3/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0711-scaled.jpg,,TRUE, +N1,60330,sortie-7f3bf924-e5f4-412b-b367-f1e112a98360,https://biolit.fr/sorties/sortie-7f3bf924-e5f4-412b-b367-f1e112a98360/,SYLVIE CACCIA,,9/21/2017 0:00,10.0000000,12.0000000,43.214965000000,5.343147000000,,Anse de la Maronaise,47476,observation-7f3bf924-e5f4-412b-b367-f1e112a98360-4,https://biolit.fr/observations/observation-7f3bf924-e5f4-412b-b367-f1e112a98360-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0691-scaled.jpg,,FALSE, +N1,60330,sortie-7f3bf924-e5f4-412b-b367-f1e112a98360,https://biolit.fr/sorties/sortie-7f3bf924-e5f4-412b-b367-f1e112a98360/,SYLVIE CACCIA,,9/21/2017 0:00,10.0000000,12.0000000,43.214965000000,5.343147000000,,Anse de la Maronaise,47478,observation-7f3bf924-e5f4-412b-b367-f1e112a98360-5,https://biolit.fr/observations/observation-7f3bf924-e5f4-412b-b367-f1e112a98360-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0690-scaled.jpg,,FALSE, +N1,60330,sortie-7f3bf924-e5f4-412b-b367-f1e112a98360,https://biolit.fr/sorties/sortie-7f3bf924-e5f4-412b-b367-f1e112a98360/,SYLVIE CACCIA,,9/21/2017 0:00,10.0000000,12.0000000,43.214965000000,5.343147000000,,Anse de la Maronaise,47480,observation-7f3bf924-e5f4-412b-b367-f1e112a98360-6,https://biolit.fr/observations/observation-7f3bf924-e5f4-412b-b367-f1e112a98360-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0677-scaled.jpg,,FALSE, +N1,60330,sortie-7f3bf924-e5f4-412b-b367-f1e112a98360,https://biolit.fr/sorties/sortie-7f3bf924-e5f4-412b-b367-f1e112a98360/,SYLVIE CACCIA,,9/21/2017 0:00,10.0000000,12.0000000,43.214965000000,5.343147000000,,Anse de la Maronaise,47482,observation-7f3bf924-e5f4-412b-b367-f1e112a98360-7,https://biolit.fr/observations/observation-7f3bf924-e5f4-412b-b367-f1e112a98360-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0679-scaled.jpg,,FALSE, +N1,60330,sortie-7f3bf924-e5f4-412b-b367-f1e112a98360,https://biolit.fr/sorties/sortie-7f3bf924-e5f4-412b-b367-f1e112a98360/,SYLVIE CACCIA,,9/21/2017 0:00,10.0000000,12.0000000,43.214965000000,5.343147000000,,Anse de la Maronaise,47484,observation-7f3bf924-e5f4-412b-b367-f1e112a98360-8,https://biolit.fr/observations/observation-7f3bf924-e5f4-412b-b367-f1e112a98360-8/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0725-scaled.jpg,,TRUE, +N1,60331,sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed,https://biolit.fr/sorties/sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed/,Gisèle,,9/21/2017 0:00,10.0000000,14.0000000,43.214979000000,5.342962000000,,Anse de la Maronaise,47486,observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed,https://biolit.fr/observations/observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2925-scaled.jpg,,FALSE, +N1,60331,sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed,https://biolit.fr/sorties/sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed/,Gisèle,,9/21/2017 0:00,10.0000000,14.0000000,43.214979000000,5.342962000000,,Anse de la Maronaise,47488,observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-2,https://biolit.fr/observations/observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2924-scaled.jpg,,FALSE, +N1,60331,sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed,https://biolit.fr/sorties/sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed/,Gisèle,,9/21/2017 0:00,10.0000000,14.0000000,43.214979000000,5.342962000000,,Anse de la Maronaise,47490,observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-3,https://biolit.fr/observations/observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2926-scaled.jpg,,FALSE, +N1,60331,sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed,https://biolit.fr/sorties/sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed/,Gisèle,,9/21/2017 0:00,10.0000000,14.0000000,43.214979000000,5.342962000000,,Anse de la Maronaise,47492,observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-4,https://biolit.fr/observations/observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-4/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2928-scaled.jpg,,TRUE, +N1,60331,sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed,https://biolit.fr/sorties/sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed/,Gisèle,,9/21/2017 0:00,10.0000000,14.0000000,43.214979000000,5.342962000000,,Anse de la Maronaise,47494,observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-5,https://biolit.fr/observations/observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-5/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2935-scaled.jpg,,TRUE, +N1,60331,sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed,https://biolit.fr/sorties/sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed/,Gisèle,,9/21/2017 0:00,10.0000000,14.0000000,43.214979000000,5.342962000000,,Anse de la Maronaise,47496,observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-6,https://biolit.fr/observations/observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2937-scaled.jpg,,FALSE, +N1,60331,sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed,https://biolit.fr/sorties/sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed/,Gisèle,,9/21/2017 0:00,10.0000000,14.0000000,43.214979000000,5.342962000000,,Anse de la Maronaise,47498,observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-7,https://biolit.fr/observations/observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-7/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2940-scaled.jpg,,TRUE, +N1,60331,sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed,https://biolit.fr/sorties/sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed/,Gisèle,,9/21/2017 0:00,10.0000000,14.0000000,43.214979000000,5.342962000000,,Anse de la Maronaise,47500,observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-8,https://biolit.fr/observations/observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-8/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2946-scaled.jpg,,TRUE, +N1,60331,sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed,https://biolit.fr/sorties/sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed/,Gisèle,,9/21/2017 0:00,10.0000000,14.0000000,43.214979000000,5.342962000000,,Anse de la Maronaise,47502,observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-9,https://biolit.fr/observations/observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2953-scaled.jpg,,FALSE, +N1,60331,sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed,https://biolit.fr/sorties/sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed/,Gisèle,,9/21/2017 0:00,10.0000000,14.0000000,43.214979000000,5.342962000000,,Anse de la Maronaise,47504,observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-10,https://biolit.fr/observations/observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2954-scaled.jpg,,FALSE, +N1,60331,sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed,https://biolit.fr/sorties/sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed/,Gisèle,,9/21/2017 0:00,10.0000000,14.0000000,43.214979000000,5.342962000000,,Anse de la Maronaise,47506,observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-11,https://biolit.fr/observations/observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2955-scaled.jpg,,FALSE, +N1,60331,sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed,https://biolit.fr/sorties/sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed/,Gisèle,,9/21/2017 0:00,10.0000000,14.0000000,43.214979000000,5.342962000000,,Anse de la Maronaise,47508,observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-12,https://biolit.fr/observations/observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2958-scaled.jpg,,FALSE, +N1,60331,sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed,https://biolit.fr/sorties/sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed/,Gisèle,,9/21/2017 0:00,10.0000000,14.0000000,43.214979000000,5.342962000000,,Anse de la Maronaise,47510,observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-13,https://biolit.fr/observations/observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2965_1-scaled.jpg,,FALSE, +N1,60331,sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed,https://biolit.fr/sorties/sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed/,Gisèle,,9/21/2017 0:00,10.0000000,14.0000000,43.214979000000,5.342962000000,,Anse de la Maronaise,47512,observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-14,https://biolit.fr/observations/observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2972-scaled.jpg,,FALSE, +N1,60331,sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed,https://biolit.fr/sorties/sortie-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed/,Gisèle,,9/21/2017 0:00,10.0000000,14.0000000,43.214979000000,5.342962000000,,Anse de la Maronaise,47513,observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-15,https://biolit.fr/observations/observation-bf0fd0f5-6a7a-4c60-962e-ed63a791fbed-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2973-scaled.jpg,,FALSE, +N1,60332,sortie-e656e6f5-1422-4252-8860-97ea458fc627,https://biolit.fr/sorties/sortie-e656e6f5-1422-4252-8860-97ea458fc627/,Vincent Courtade,,9/21/2017 0:00,10.0000000,12.0000000,43.214996000000,5.342922000000,,Anse de la maronnaise,47515,observation-e656e6f5-1422-4252-8860-97ea458fc627,https://biolit.fr/observations/observation-e656e6f5-1422-4252-8860-97ea458fc627/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0013[1]-rotated.jpg,,FALSE, +N1,60332,sortie-e656e6f5-1422-4252-8860-97ea458fc627,https://biolit.fr/sorties/sortie-e656e6f5-1422-4252-8860-97ea458fc627/,Vincent Courtade,,9/21/2017 0:00,10.0000000,12.0000000,43.214996000000,5.342922000000,,Anse de la maronnaise,47517,observation-e656e6f5-1422-4252-8860-97ea458fc627-2,https://biolit.fr/observations/observation-e656e6f5-1422-4252-8860-97ea458fc627-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0014[1]-rotated.jpg,,FALSE, +N1,60332,sortie-e656e6f5-1422-4252-8860-97ea458fc627,https://biolit.fr/sorties/sortie-e656e6f5-1422-4252-8860-97ea458fc627/,Vincent Courtade,,9/21/2017 0:00,10.0000000,12.0000000,43.214996000000,5.342922000000,,Anse de la maronnaise,47519,observation-e656e6f5-1422-4252-8860-97ea458fc627-3,https://biolit.fr/observations/observation-e656e6f5-1422-4252-8860-97ea458fc627-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0015[1]-rotated.jpg,,FALSE, +N1,60332,sortie-e656e6f5-1422-4252-8860-97ea458fc627,https://biolit.fr/sorties/sortie-e656e6f5-1422-4252-8860-97ea458fc627/,Vincent Courtade,,9/21/2017 0:00,10.0000000,12.0000000,43.214996000000,5.342922000000,,Anse de la maronnaise,47521,observation-e656e6f5-1422-4252-8860-97ea458fc627-4,https://biolit.fr/observations/observation-e656e6f5-1422-4252-8860-97ea458fc627-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0036[1]-scaled.jpg,,FALSE, +N1,60332,sortie-e656e6f5-1422-4252-8860-97ea458fc627,https://biolit.fr/sorties/sortie-e656e6f5-1422-4252-8860-97ea458fc627/,Vincent Courtade,,9/21/2017 0:00,10.0000000,12.0000000,43.214996000000,5.342922000000,,Anse de la maronnaise,47523,observation-e656e6f5-1422-4252-8860-97ea458fc627-5,https://biolit.fr/observations/observation-e656e6f5-1422-4252-8860-97ea458fc627-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0027[1]-scaled.jpg,,FALSE, +N1,60333,sortie-bd78a1e9-34fe-40ef-9170-fd8ef741d863,https://biolit.fr/sorties/sortie-bd78a1e9-34fe-40ef-9170-fd8ef741d863/,dominique lafourcade,,9/21/2017 0:00,14.0000000,16.0000000,43.214771000000,5.342863000000,,anse de la maronaise,47525,observation-bd78a1e9-34fe-40ef-9170-fd8ef741d863,https://biolit.fr/observations/observation-bd78a1e9-34fe-40ef-9170-fd8ef741d863/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1472[1]-scaled.jpg,,FALSE, +N1,60333,sortie-bd78a1e9-34fe-40ef-9170-fd8ef741d863,https://biolit.fr/sorties/sortie-bd78a1e9-34fe-40ef-9170-fd8ef741d863/,dominique lafourcade,,9/21/2017 0:00,14.0000000,16.0000000,43.214771000000,5.342863000000,,anse de la maronaise,47527,observation-bd78a1e9-34fe-40ef-9170-fd8ef741d863-2,https://biolit.fr/observations/observation-bd78a1e9-34fe-40ef-9170-fd8ef741d863-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1470[1]-scaled.jpg,,FALSE, +N1,60333,sortie-bd78a1e9-34fe-40ef-9170-fd8ef741d863,https://biolit.fr/sorties/sortie-bd78a1e9-34fe-40ef-9170-fd8ef741d863/,dominique lafourcade,,9/21/2017 0:00,14.0000000,16.0000000,43.214771000000,5.342863000000,,anse de la maronaise,47529,observation-bd78a1e9-34fe-40ef-9170-fd8ef741d863-3,https://biolit.fr/observations/observation-bd78a1e9-34fe-40ef-9170-fd8ef741d863-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1461[1]-scaled.jpg,,FALSE, +N1,60334,sortie-5ef12fc9-407a-48e2-a4d4-cf1823ea9617,https://biolit.fr/sorties/sortie-5ef12fc9-407a-48e2-a4d4-cf1823ea9617/,dominique lafourcade,,9/21/2017 0:00,11.0000000,12.0000000,43.214730000000,5.343051000000,,anse de la Maronaise,47531,observation-5ef12fc9-407a-48e2-a4d4-cf1823ea9617,https://biolit.fr/observations/observation-5ef12fc9-407a-48e2-a4d4-cf1823ea9617/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0473[1]-scaled.jpg,,FALSE, +N1,60334,sortie-5ef12fc9-407a-48e2-a4d4-cf1823ea9617,https://biolit.fr/sorties/sortie-5ef12fc9-407a-48e2-a4d4-cf1823ea9617/,dominique lafourcade,,9/21/2017 0:00,11.0000000,12.0000000,43.214730000000,5.343051000000,,anse de la Maronaise,47533,observation-5ef12fc9-407a-48e2-a4d4-cf1823ea9617-2,https://biolit.fr/observations/observation-5ef12fc9-407a-48e2-a4d4-cf1823ea9617-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0472[1]-scaled.jpg,,FALSE, +N1,60334,sortie-5ef12fc9-407a-48e2-a4d4-cf1823ea9617,https://biolit.fr/sorties/sortie-5ef12fc9-407a-48e2-a4d4-cf1823ea9617/,dominique lafourcade,,9/21/2017 0:00,11.0000000,12.0000000,43.214730000000,5.343051000000,,anse de la Maronaise,47535,observation-5ef12fc9-407a-48e2-a4d4-cf1823ea9617-3,https://biolit.fr/observations/observation-5ef12fc9-407a-48e2-a4d4-cf1823ea9617-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0474[1]-scaled.jpg,,FALSE, +N1,60334,sortie-5ef12fc9-407a-48e2-a4d4-cf1823ea9617,https://biolit.fr/sorties/sortie-5ef12fc9-407a-48e2-a4d4-cf1823ea9617/,dominique lafourcade,,9/21/2017 0:00,11.0000000,12.0000000,43.214730000000,5.343051000000,,anse de la Maronaise,47537,observation-5ef12fc9-407a-48e2-a4d4-cf1823ea9617-4,https://biolit.fr/observations/observation-5ef12fc9-407a-48e2-a4d4-cf1823ea9617-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0484[1]-scaled.jpg,,FALSE, +N1,60334,sortie-5ef12fc9-407a-48e2-a4d4-cf1823ea9617,https://biolit.fr/sorties/sortie-5ef12fc9-407a-48e2-a4d4-cf1823ea9617/,dominique lafourcade,,9/21/2017 0:00,11.0000000,12.0000000,43.214730000000,5.343051000000,,anse de la Maronaise,47539,observation-5ef12fc9-407a-48e2-a4d4-cf1823ea9617-5,https://biolit.fr/observations/observation-5ef12fc9-407a-48e2-a4d4-cf1823ea9617-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0490[1]-scaled.jpg,,FALSE, +N1,60335,sortie-85a2b83b-9358-4112-860f-5b46b2966f29,https://biolit.fr/sorties/sortie-85a2b83b-9358-4112-860f-5b46b2966f29/,Phil,,09/02/2017,13.0:15,13.0000000,48.09205600000,-4.298349000000,,Douarnenez - Finistère,47541,observation-85a2b83b-9358-4112-860f-5b46b2966f29,https://biolit.fr/observations/observation-85a2b83b-9358-4112-860f-5b46b2966f29/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1080075.JPG,,TRUE, +N1,60335,sortie-85a2b83b-9358-4112-860f-5b46b2966f29,https://biolit.fr/sorties/sortie-85a2b83b-9358-4112-860f-5b46b2966f29/,Phil,,09/02/2017,13.0:15,13.0000000,48.09205600000,-4.298349000000,,Douarnenez - Finistère,47543,observation-85a2b83b-9358-4112-860f-5b46b2966f29-2,https://biolit.fr/observations/observation-85a2b83b-9358-4112-860f-5b46b2966f29-2/,Macomangulus tenuis,Telline-papillon,,https://biolit.fr/wp-content/uploads/2023/07/P1080077.JPG,,TRUE, +N1,60335,sortie-85a2b83b-9358-4112-860f-5b46b2966f29,https://biolit.fr/sorties/sortie-85a2b83b-9358-4112-860f-5b46b2966f29/,Phil,,09/02/2017,13.0:15,13.0000000,48.09205600000,-4.298349000000,,Douarnenez - Finistère,47545,observation-85a2b83b-9358-4112-860f-5b46b2966f29-3,https://biolit.fr/observations/observation-85a2b83b-9358-4112-860f-5b46b2966f29-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1080080.JPG,,TRUE, +N1,60335,sortie-85a2b83b-9358-4112-860f-5b46b2966f29,https://biolit.fr/sorties/sortie-85a2b83b-9358-4112-860f-5b46b2966f29/,Phil,,09/02/2017,13.0:15,13.0000000,48.09205600000,-4.298349000000,,Douarnenez - Finistère,47547,observation-85a2b83b-9358-4112-860f-5b46b2966f29-4,https://biolit.fr/observations/observation-85a2b83b-9358-4112-860f-5b46b2966f29-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080082.JPG,,FALSE, +N1,60335,sortie-85a2b83b-9358-4112-860f-5b46b2966f29,https://biolit.fr/sorties/sortie-85a2b83b-9358-4112-860f-5b46b2966f29/,Phil,,09/02/2017,13.0:15,13.0000000,48.09205600000,-4.298349000000,,Douarnenez - Finistère,47549,observation-85a2b83b-9358-4112-860f-5b46b2966f29-5,https://biolit.fr/observations/observation-85a2b83b-9358-4112-860f-5b46b2966f29-5/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/P1080083.JPG,,TRUE, +N1,60336,sortie-db94d384-6012-4a45-8519-7500de45bcb4,https://biolit.fr/sorties/sortie-db94d384-6012-4a45-8519-7500de45bcb4/,Phil,,9/18/2017 0:00,12.0000000,12.0:25,47.788422000000,-4.268798000000,,Léchiagat - Finistère,47551,observation-db94d384-6012-4a45-8519-7500de45bcb4,https://biolit.fr/observations/observation-db94d384-6012-4a45-8519-7500de45bcb4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080159.JPG,,FALSE, +N1,60336,sortie-db94d384-6012-4a45-8519-7500de45bcb4,https://biolit.fr/sorties/sortie-db94d384-6012-4a45-8519-7500de45bcb4/,Phil,,9/18/2017 0:00,12.0000000,12.0:25,47.788422000000,-4.268798000000,,Léchiagat - Finistère,47553,observation-db94d384-6012-4a45-8519-7500de45bcb4-2,https://biolit.fr/observations/observation-db94d384-6012-4a45-8519-7500de45bcb4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080153.JPG,,FALSE, +N1,60336,sortie-db94d384-6012-4a45-8519-7500de45bcb4,https://biolit.fr/sorties/sortie-db94d384-6012-4a45-8519-7500de45bcb4/,Phil,,9/18/2017 0:00,12.0000000,12.0:25,47.788422000000,-4.268798000000,,Léchiagat - Finistère,47555,observation-db94d384-6012-4a45-8519-7500de45bcb4-3,https://biolit.fr/observations/observation-db94d384-6012-4a45-8519-7500de45bcb4-3/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/P1080160.JPG,,TRUE, +N1,60336,sortie-db94d384-6012-4a45-8519-7500de45bcb4,https://biolit.fr/sorties/sortie-db94d384-6012-4a45-8519-7500de45bcb4/,Phil,,9/18/2017 0:00,12.0000000,12.0:25,47.788422000000,-4.268798000000,,Léchiagat - Finistère,47557,observation-db94d384-6012-4a45-8519-7500de45bcb4-4,https://biolit.fr/observations/observation-db94d384-6012-4a45-8519-7500de45bcb4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080155.JPG,,FALSE, +N1,60336,sortie-db94d384-6012-4a45-8519-7500de45bcb4,https://biolit.fr/sorties/sortie-db94d384-6012-4a45-8519-7500de45bcb4/,Phil,,9/18/2017 0:00,12.0000000,12.0:25,47.788422000000,-4.268798000000,,Léchiagat - Finistère,47559,observation-db94d384-6012-4a45-8519-7500de45bcb4-5,https://biolit.fr/observations/observation-db94d384-6012-4a45-8519-7500de45bcb4-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080164.JPG,,FALSE, +N1,60337,sortie-cc120eca-5ae2-445c-b4fd-b4804db1fcda,https://biolit.fr/sorties/sortie-cc120eca-5ae2-445c-b4fd-b4804db1fcda/,Céline,,9/21/2017 0:00,10.0000000,12.0000000,43.225318000000,5.352800000000,,Anse de la maronnaise,47561,observation-cc120eca-5ae2-445c-b4fd-b4804db1fcda,https://biolit.fr/observations/observation-cc120eca-5ae2-445c-b4fd-b4804db1fcda/,,,,https://biolit.fr/wp-content/uploads/2023/07/image_99-scaled.jpg,,FALSE, +N1,60338,sortie-e1cde345-8fa5-4b12-8489-208ce3cf0cb4,https://biolit.fr/sorties/sortie-e1cde345-8fa5-4b12-8489-208ce3cf0cb4/,Céline,,9/21/2017 0:00,10.0000000,12.0000000,43.225318000000,5.352800000000,,Anse de la maronnaise,47563,observation-e1cde345-8fa5-4b12-8489-208ce3cf0cb4,https://biolit.fr/observations/observation-e1cde345-8fa5-4b12-8489-208ce3cf0cb4/,,,,https://biolit.fr/wp-content/uploads/2023/07/image_99-scaled.jpg,,FALSE, +N1,60339,sortie-9f3de4ff-2b42-4216-9415-eefed4bd93a6,https://biolit.fr/sorties/sortie-9f3de4ff-2b42-4216-9415-eefed4bd93a6/,Phil,,9/18/2017 0:00,12.0000000,12.0:35,47.787634000000,-4.270248000000,,Léchiagat - Finistère,47564,observation-9f3de4ff-2b42-4216-9415-eefed4bd93a6,https://biolit.fr/observations/observation-9f3de4ff-2b42-4216-9415-eefed4bd93a6/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1080177.JPG,,TRUE, +N1,60339,sortie-9f3de4ff-2b42-4216-9415-eefed4bd93a6,https://biolit.fr/sorties/sortie-9f3de4ff-2b42-4216-9415-eefed4bd93a6/,Phil,,9/18/2017 0:00,12.0000000,12.0:35,47.787634000000,-4.270248000000,,Léchiagat - Finistère,47566,observation-9f3de4ff-2b42-4216-9415-eefed4bd93a6-2,https://biolit.fr/observations/observation-9f3de4ff-2b42-4216-9415-eefed4bd93a6-2/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1080174.JPG,,TRUE, +N1,60340,sortie-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9,https://biolit.fr/sorties/sortie-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9/,Phil,,9/18/2017 0:00,12.0000000,12.0:45,47.790689000000,-4.268375000000,,Léchiagat - Finistère,47568,observation-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9,https://biolit.fr/observations/observation-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080188.JPG,,FALSE, +N1,60340,sortie-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9,https://biolit.fr/sorties/sortie-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9/,Phil,,9/18/2017 0:00,12.0000000,12.0:45,47.790689000000,-4.268375000000,,Léchiagat - Finistère,47570,observation-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9-2,https://biolit.fr/observations/observation-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080205.JPG,,FALSE, +N1,60340,sortie-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9,https://biolit.fr/sorties/sortie-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9/,Phil,,9/18/2017 0:00,12.0000000,12.0:45,47.790689000000,-4.268375000000,,Léchiagat - Finistère,47572,observation-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9-3,https://biolit.fr/observations/observation-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080208.JPG,,FALSE, +N1,60340,sortie-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9,https://biolit.fr/sorties/sortie-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9/,Phil,,9/18/2017 0:00,12.0000000,12.0:45,47.790689000000,-4.268375000000,,Léchiagat - Finistère,47574,observation-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9-4,https://biolit.fr/observations/observation-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080190.JPG,,FALSE, +N1,60340,sortie-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9,https://biolit.fr/sorties/sortie-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9/,Phil,,9/18/2017 0:00,12.0000000,12.0:45,47.790689000000,-4.268375000000,,Léchiagat - Finistère,47576,observation-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9-5,https://biolit.fr/observations/observation-ac78f5b3-b33e-406a-80db-b8ae3cd37ca9-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080199.JPG,,FALSE, +N1,60341,sortie-054435fc-acaf-4c7e-a4df-878dbbc87762,https://biolit.fr/sorties/sortie-054435fc-acaf-4c7e-a4df-878dbbc87762/,Phil,,9/19/2017 0:00,13.0:55,14.0000000,48.06061400000,-4.671779000000,, Cléden-Cap-Sizun - Finistère,47578,observation-054435fc-acaf-4c7e-a4df-878dbbc87762,https://biolit.fr/observations/observation-054435fc-acaf-4c7e-a4df-878dbbc87762/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/P1080509.JPG,,TRUE, +N1,60341,sortie-054435fc-acaf-4c7e-a4df-878dbbc87762,https://biolit.fr/sorties/sortie-054435fc-acaf-4c7e-a4df-878dbbc87762/,Phil,,9/19/2017 0:00,13.0:55,14.0000000,48.06061400000,-4.671779000000,, Cléden-Cap-Sizun - Finistère,47580,observation-054435fc-acaf-4c7e-a4df-878dbbc87762-2,https://biolit.fr/observations/observation-054435fc-acaf-4c7e-a4df-878dbbc87762-2/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/P1080404.JPG,,TRUE, +N1,60342,sortie-5fc3659d-5049-4f44-b6f5-0d86132a416b,https://biolit.fr/sorties/sortie-5fc3659d-5049-4f44-b6f5-0d86132a416b/,Phil,,09/02/2017,13.000005,13.0000000,48.093318000000,-4.298061000000,,Douarnenez - Finistère,47584,observation-5fc3659d-5049-4f44-b6f5-0d86132a416b,https://biolit.fr/observations/observation-5fc3659d-5049-4f44-b6f5-0d86132a416b/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080066_1.JPG,,FALSE, +N1,60342,sortie-5fc3659d-5049-4f44-b6f5-0d86132a416b,https://biolit.fr/sorties/sortie-5fc3659d-5049-4f44-b6f5-0d86132a416b/,Phil,,09/02/2017,13.000005,13.0000000,48.093318000000,-4.298061000000,,Douarnenez - Finistère,47586,observation-5fc3659d-5049-4f44-b6f5-0d86132a416b-2,https://biolit.fr/observations/observation-5fc3659d-5049-4f44-b6f5-0d86132a416b-2/,Pharus legumen,Couteau-gousse,,https://biolit.fr/wp-content/uploads/2023/07/P1080067_0.JPG,,TRUE, +N1,60342,sortie-5fc3659d-5049-4f44-b6f5-0d86132a416b,https://biolit.fr/sorties/sortie-5fc3659d-5049-4f44-b6f5-0d86132a416b/,Phil,,09/02/2017,13.000005,13.0000000,48.093318000000,-4.298061000000,,Douarnenez - Finistère,47588,observation-5fc3659d-5049-4f44-b6f5-0d86132a416b-3,https://biolit.fr/observations/observation-5fc3659d-5049-4f44-b6f5-0d86132a416b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080068_0.JPG,,FALSE, +N1,60342,sortie-5fc3659d-5049-4f44-b6f5-0d86132a416b,https://biolit.fr/sorties/sortie-5fc3659d-5049-4f44-b6f5-0d86132a416b/,Phil,,09/02/2017,13.000005,13.0000000,48.093318000000,-4.298061000000,,Douarnenez - Finistère,47590,observation-5fc3659d-5049-4f44-b6f5-0d86132a416b-4,https://biolit.fr/observations/observation-5fc3659d-5049-4f44-b6f5-0d86132a416b-4/,Pharus legumen,Couteau-gousse,,https://biolit.fr/wp-content/uploads/2023/07/P1080071.JPG,,TRUE, +N1,60343,sortie-dd528ab0-b054-43b9-8a7f-2a0e50613b28,https://biolit.fr/sorties/sortie-dd528ab0-b054-43b9-8a7f-2a0e50613b28/,Phil,,09/02/2017,13.0000000,13.0:45,48.105758000000,-4.285394000000,,Kerlaz - Finistère,47592,observation-dd528ab0-b054-43b9-8a7f-2a0e50613b28,https://biolit.fr/observations/observation-dd528ab0-b054-43b9-8a7f-2a0e50613b28/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080107.JPG,,FALSE, +N1,60343,sortie-dd528ab0-b054-43b9-8a7f-2a0e50613b28,https://biolit.fr/sorties/sortie-dd528ab0-b054-43b9-8a7f-2a0e50613b28/,Phil,,09/02/2017,13.0000000,13.0:45,48.105758000000,-4.285394000000,,Kerlaz - Finistère,47594,observation-dd528ab0-b054-43b9-8a7f-2a0e50613b28-2,https://biolit.fr/observations/observation-dd528ab0-b054-43b9-8a7f-2a0e50613b28-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080112.JPG,,FALSE, +N1,60344,sortie-43b772a6-0ede-42ce-9b15-e581e5897260,https://biolit.fr/sorties/sortie-43b772a6-0ede-42ce-9b15-e581e5897260/,Nicolas,,8/24/2017 0:00,11.0000000,13.0000000,46.053202000000,-1.090606000000,,Les boucholeurs,47596,observation-43b772a6-0ede-42ce-9b15-e581e5897260,https://biolit.fr/observations/observation-43b772a6-0ede-42ce-9b15-e581e5897260/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170824_135252-scaled.jpg,,TRUE, +N1,60345,sortie-c26a3b9a-8ed6-4dea-9549-e9a86079087e,https://biolit.fr/sorties/sortie-c26a3b9a-8ed6-4dea-9549-e9a86079087e/,Phil,,9/19/2017 0:00,13.0:45,13.0000000,48.060501000000,-4.671661000000,,Cléden-Cap-Sizun - Finistère,47598,observation-c26a3b9a-8ed6-4dea-9549-e9a86079087e,https://biolit.fr/observations/observation-c26a3b9a-8ed6-4dea-9549-e9a86079087e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080392.JPG,,FALSE, +N1,60345,sortie-c26a3b9a-8ed6-4dea-9549-e9a86079087e,https://biolit.fr/sorties/sortie-c26a3b9a-8ed6-4dea-9549-e9a86079087e/,Phil,,9/19/2017 0:00,13.0:45,13.0000000,48.060501000000,-4.671661000000,,Cléden-Cap-Sizun - Finistère,47600,observation-c26a3b9a-8ed6-4dea-9549-e9a86079087e-2,https://biolit.fr/observations/observation-c26a3b9a-8ed6-4dea-9549-e9a86079087e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080393.JPG,,FALSE, +N1,60346,sortie-0ed3481a-b5e1-4cf7-b96f-bfafcee46fc8,https://biolit.fr/sorties/sortie-0ed3481a-b5e1-4cf7-b96f-bfafcee46fc8/,Phil,,9/19/2017 0:00,12.0000000,12.0000000,48.049702000000,-4.708124000000,,Cléden-Cap-Sizun - Finistère,47602,observation-0ed3481a-b5e1-4cf7-b96f-bfafcee46fc8,https://biolit.fr/observations/observation-0ed3481a-b5e1-4cf7-b96f-bfafcee46fc8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080257.JPG,,FALSE, +N1,60346,sortie-0ed3481a-b5e1-4cf7-b96f-bfafcee46fc8,https://biolit.fr/sorties/sortie-0ed3481a-b5e1-4cf7-b96f-bfafcee46fc8/,Phil,,9/19/2017 0:00,12.0000000,12.0000000,48.049702000000,-4.708124000000,,Cléden-Cap-Sizun - Finistère,47604,observation-0ed3481a-b5e1-4cf7-b96f-bfafcee46fc8-2,https://biolit.fr/observations/observation-0ed3481a-b5e1-4cf7-b96f-bfafcee46fc8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080258.JPG,,FALSE, +N1,60346,sortie-0ed3481a-b5e1-4cf7-b96f-bfafcee46fc8,https://biolit.fr/sorties/sortie-0ed3481a-b5e1-4cf7-b96f-bfafcee46fc8/,Phil,,9/19/2017 0:00,12.0000000,12.0000000,48.049702000000,-4.708124000000,,Cléden-Cap-Sizun - Finistère,47606,observation-0ed3481a-b5e1-4cf7-b96f-bfafcee46fc8-3,https://biolit.fr/observations/observation-0ed3481a-b5e1-4cf7-b96f-bfafcee46fc8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080259.JPG,,FALSE, +N1,60346,sortie-0ed3481a-b5e1-4cf7-b96f-bfafcee46fc8,https://biolit.fr/sorties/sortie-0ed3481a-b5e1-4cf7-b96f-bfafcee46fc8/,Phil,,9/19/2017 0:00,12.0000000,12.0000000,48.049702000000,-4.708124000000,,Cléden-Cap-Sizun - Finistère,47608,observation-0ed3481a-b5e1-4cf7-b96f-bfafcee46fc8-4,https://biolit.fr/observations/observation-0ed3481a-b5e1-4cf7-b96f-bfafcee46fc8-4/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1080260.JPG,,TRUE, +N1,60347,sortie-701e7645-8f9a-4f40-a803-5582f5b17ebb,https://biolit.fr/sorties/sortie-701e7645-8f9a-4f40-a803-5582f5b17ebb/,Phil,,9/18/2017 0:00,12.0000000,12.0000000,47.788478000000,-4.270398000000,,Léchiagat - Finistère,47610,observation-701e7645-8f9a-4f40-a803-5582f5b17ebb,https://biolit.fr/observations/observation-701e7645-8f9a-4f40-a803-5582f5b17ebb/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080142.JPG,,FALSE, +N1,60347,sortie-701e7645-8f9a-4f40-a803-5582f5b17ebb,https://biolit.fr/sorties/sortie-701e7645-8f9a-4f40-a803-5582f5b17ebb/,Phil,,9/18/2017 0:00,12.0000000,12.0000000,47.788478000000,-4.270398000000,,Léchiagat - Finistère,47612,observation-701e7645-8f9a-4f40-a803-5582f5b17ebb-2,https://biolit.fr/observations/observation-701e7645-8f9a-4f40-a803-5582f5b17ebb-2/,Calyptraea chinensis,Chapeau chinois,,https://biolit.fr/wp-content/uploads/2023/07/P1080143.JPG,,TRUE, +N1,60347,sortie-701e7645-8f9a-4f40-a803-5582f5b17ebb,https://biolit.fr/sorties/sortie-701e7645-8f9a-4f40-a803-5582f5b17ebb/,Phil,,9/18/2017 0:00,12.0000000,12.0000000,47.788478000000,-4.270398000000,,Léchiagat - Finistère,47614,observation-701e7645-8f9a-4f40-a803-5582f5b17ebb-3,https://biolit.fr/observations/observation-701e7645-8f9a-4f40-a803-5582f5b17ebb-3/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1080131.JPG,,TRUE, +N1,60347,sortie-701e7645-8f9a-4f40-a803-5582f5b17ebb,https://biolit.fr/sorties/sortie-701e7645-8f9a-4f40-a803-5582f5b17ebb/,Phil,,9/18/2017 0:00,12.0000000,12.0000000,47.788478000000,-4.270398000000,,Léchiagat - Finistère,47616,observation-701e7645-8f9a-4f40-a803-5582f5b17ebb-4,https://biolit.fr/observations/observation-701e7645-8f9a-4f40-a803-5582f5b17ebb-4/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/P1080146.JPG,,TRUE, +N1,60348,sortie-c62bcdef-180d-4920-a733-3dc8231a85c6,https://biolit.fr/sorties/sortie-c62bcdef-180d-4920-a733-3dc8231a85c6/,Phil,,09/10/2017,11.0000000,11.0000000,47.869119000000,-3.927085000000,,Concarneau - Finistère,47618,observation-c62bcdef-180d-4920-a733-3dc8231a85c6,https://biolit.fr/observations/observation-c62bcdef-180d-4920-a733-3dc8231a85c6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170910_113332.jpg,,FALSE, +N1,60348,sortie-c62bcdef-180d-4920-a733-3dc8231a85c6,https://biolit.fr/sorties/sortie-c62bcdef-180d-4920-a733-3dc8231a85c6/,Phil,,09/10/2017,11.0000000,11.0000000,47.869119000000,-3.927085000000,,Concarneau - Finistère,47620,observation-c62bcdef-180d-4920-a733-3dc8231a85c6-2,https://biolit.fr/observations/observation-c62bcdef-180d-4920-a733-3dc8231a85c6-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170910_113212.jpg,,TRUE, +N1,60348,sortie-c62bcdef-180d-4920-a733-3dc8231a85c6,https://biolit.fr/sorties/sortie-c62bcdef-180d-4920-a733-3dc8231a85c6/,Phil,,09/10/2017,11.0000000,11.0000000,47.869119000000,-3.927085000000,,Concarneau - Finistère,47622,observation-c62bcdef-180d-4920-a733-3dc8231a85c6-3,https://biolit.fr/observations/observation-c62bcdef-180d-4920-a733-3dc8231a85c6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170910_112739.jpg,,FALSE, +N1,60348,sortie-c62bcdef-180d-4920-a733-3dc8231a85c6,https://biolit.fr/sorties/sortie-c62bcdef-180d-4920-a733-3dc8231a85c6/,Phil,,09/10/2017,11.0000000,11.0000000,47.869119000000,-3.927085000000,,Concarneau - Finistère,47624,observation-c62bcdef-180d-4920-a733-3dc8231a85c6-4,https://biolit.fr/observations/observation-c62bcdef-180d-4920-a733-3dc8231a85c6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170910_112733.jpg,,FALSE, +N1,60348,sortie-c62bcdef-180d-4920-a733-3dc8231a85c6,https://biolit.fr/sorties/sortie-c62bcdef-180d-4920-a733-3dc8231a85c6/,Phil,,09/10/2017,11.0000000,11.0000000,47.869119000000,-3.927085000000,,Concarneau - Finistère,47626,observation-c62bcdef-180d-4920-a733-3dc8231a85c6-5,https://biolit.fr/observations/observation-c62bcdef-180d-4920-a733-3dc8231a85c6-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170910_112030.jpg,,TRUE, +N1,60349,sortie-587f275e-eaeb-423c-ac87-d64d8f74ab1c,https://biolit.fr/sorties/sortie-587f275e-eaeb-423c-ac87-d64d8f74ab1c/,Phil,,9/18/2017 0:00,13.0000000,13.0000000,47.799957000000,-4.271685000000,,Le Guilvinec - Finistère,47628,observation-587f275e-eaeb-423c-ac87-d64d8f74ab1c,https://biolit.fr/observations/observation-587f275e-eaeb-423c-ac87-d64d8f74ab1c/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1080248.JPG,,TRUE, +N1,60349,sortie-587f275e-eaeb-423c-ac87-d64d8f74ab1c,https://biolit.fr/sorties/sortie-587f275e-eaeb-423c-ac87-d64d8f74ab1c/,Phil,,9/18/2017 0:00,13.0000000,13.0000000,47.799957000000,-4.271685000000,,Le Guilvinec - Finistère,47630,observation-587f275e-eaeb-423c-ac87-d64d8f74ab1c-2,https://biolit.fr/observations/observation-587f275e-eaeb-423c-ac87-d64d8f74ab1c-2/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/P1080236.JPG,,TRUE, +N1,60349,sortie-587f275e-eaeb-423c-ac87-d64d8f74ab1c,https://biolit.fr/sorties/sortie-587f275e-eaeb-423c-ac87-d64d8f74ab1c/,Phil,,9/18/2017 0:00,13.0000000,13.0000000,47.799957000000,-4.271685000000,,Le Guilvinec - Finistère,47632,observation-587f275e-eaeb-423c-ac87-d64d8f74ab1c-3,https://biolit.fr/observations/observation-587f275e-eaeb-423c-ac87-d64d8f74ab1c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080244.JPG,,FALSE, +N1,60349,sortie-587f275e-eaeb-423c-ac87-d64d8f74ab1c,https://biolit.fr/sorties/sortie-587f275e-eaeb-423c-ac87-d64d8f74ab1c/,Phil,,9/18/2017 0:00,13.0000000,13.0000000,47.799957000000,-4.271685000000,,Le Guilvinec - Finistère,47634,observation-587f275e-eaeb-423c-ac87-d64d8f74ab1c-4,https://biolit.fr/observations/observation-587f275e-eaeb-423c-ac87-d64d8f74ab1c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080245.JPG,,FALSE, +N1,60350,sortie-f7f7742c-5072-48ee-808f-376e7971c6e2,https://biolit.fr/sorties/sortie-f7f7742c-5072-48ee-808f-376e7971c6e2/,Phil,,09/02/2017,12.0000000,13.0000000,48.093626000000,-4.298716000000,,Douarnernez - Finistère,47636,observation-f7f7742c-5072-48ee-808f-376e7971c6e2,https://biolit.fr/observations/observation-f7f7742c-5072-48ee-808f-376e7971c6e2/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1080041.JPG,,TRUE, +N1,60350,sortie-f7f7742c-5072-48ee-808f-376e7971c6e2,https://biolit.fr/sorties/sortie-f7f7742c-5072-48ee-808f-376e7971c6e2/,Phil,,09/02/2017,12.0000000,13.0000000,48.093626000000,-4.298716000000,,Douarnernez - Finistère,47638,observation-f7f7742c-5072-48ee-808f-376e7971c6e2-2,https://biolit.fr/observations/observation-f7f7742c-5072-48ee-808f-376e7971c6e2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080055.JPG,,FALSE, +N1,60350,sortie-f7f7742c-5072-48ee-808f-376e7971c6e2,https://biolit.fr/sorties/sortie-f7f7742c-5072-48ee-808f-376e7971c6e2/,Phil,,09/02/2017,12.0000000,13.0000000,48.093626000000,-4.298716000000,,Douarnernez - Finistère,47640,observation-f7f7742c-5072-48ee-808f-376e7971c6e2-3,https://biolit.fr/observations/observation-f7f7742c-5072-48ee-808f-376e7971c6e2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080046.JPG,,FALSE, +N1,60351,sortie-dc2c0875-0275-45e0-b0f1-7316541e3de1,https://biolit.fr/sorties/sortie-dc2c0875-0275-45e0-b0f1-7316541e3de1/,Phil,,9/18/2017 0:00,12.000005,12.0000000,47.788196000000,-4.270495000000,,Léchiagat - Finistère,47642,observation-dc2c0875-0275-45e0-b0f1-7316541e3de1,https://biolit.fr/observations/observation-dc2c0875-0275-45e0-b0f1-7316541e3de1/,Saccharina latissima,Laminaire sucrée,,https://biolit.fr/wp-content/uploads/2023/07/P1080120.JPG,,TRUE, +N1,60351,sortie-dc2c0875-0275-45e0-b0f1-7316541e3de1,https://biolit.fr/sorties/sortie-dc2c0875-0275-45e0-b0f1-7316541e3de1/,Phil,,9/18/2017 0:00,12.000005,12.0000000,47.788196000000,-4.270495000000,,Léchiagat - Finistère,47644,observation-dc2c0875-0275-45e0-b0f1-7316541e3de1-2,https://biolit.fr/observations/observation-dc2c0875-0275-45e0-b0f1-7316541e3de1-2/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1080124.JPG,,TRUE, +N1,60351,sortie-dc2c0875-0275-45e0-b0f1-7316541e3de1,https://biolit.fr/sorties/sortie-dc2c0875-0275-45e0-b0f1-7316541e3de1/,Phil,,9/18/2017 0:00,12.000005,12.0000000,47.788196000000,-4.270495000000,,Léchiagat - Finistère,47646,observation-dc2c0875-0275-45e0-b0f1-7316541e3de1-3,https://biolit.fr/observations/observation-dc2c0875-0275-45e0-b0f1-7316541e3de1-3/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1080126.JPG,,TRUE, +N1,60351,sortie-dc2c0875-0275-45e0-b0f1-7316541e3de1,https://biolit.fr/sorties/sortie-dc2c0875-0275-45e0-b0f1-7316541e3de1/,Phil,,9/18/2017 0:00,12.000005,12.0000000,47.788196000000,-4.270495000000,,Léchiagat - Finistère,47648,observation-dc2c0875-0275-45e0-b0f1-7316541e3de1-4,https://biolit.fr/observations/observation-dc2c0875-0275-45e0-b0f1-7316541e3de1-4/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/P1080128.JPG,,TRUE, +N1,60352,sortie-06e0b4c7-f7b8-4736-abbb-f417de63ccd1,https://biolit.fr/sorties/sortie-06e0b4c7-f7b8-4736-abbb-f417de63ccd1/,Léa M,,9/17/2017 0:00,13.0000000,15.0000000,43.217162000000,5.364272000000,,Iles du Frioul,47650,observation-06e0b4c7-f7b8-4736-abbb-f417de63ccd1,https://biolit.fr/observations/observation-06e0b4c7-f7b8-4736-abbb-f417de63ccd1/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1084-rotated.jpg,,FALSE, +N1,60353,sortie-0f2a48e4-1408-4f3d-af17-fb6ce72323ba,https://biolit.fr/sorties/sortie-0f2a48e4-1408-4f3d-af17-fb6ce72323ba/,Phil,,5/24/2016 0:00,11.0000000,12.0000000,47.793379000000,-3.843635000000,,Trévignon - Finistère,47652,observation-0f2a48e4-1408-4f3d-af17-fb6ce72323ba,https://biolit.fr/observations/observation-0f2a48e4-1408-4f3d-af17-fb6ce72323ba/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/P1020891.JPG,,TRUE, +N1,60353,sortie-0f2a48e4-1408-4f3d-af17-fb6ce72323ba,https://biolit.fr/sorties/sortie-0f2a48e4-1408-4f3d-af17-fb6ce72323ba/,Phil,,5/24/2016 0:00,11.0000000,12.0000000,47.793379000000,-3.843635000000,,Trévignon - Finistère,47654,observation-0f2a48e4-1408-4f3d-af17-fb6ce72323ba-2,https://biolit.fr/observations/observation-0f2a48e4-1408-4f3d-af17-fb6ce72323ba-2/,Ramalina siliquosa,Ramaline des rochers,,https://biolit.fr/wp-content/uploads/2023/07/P1020897.JPG,,TRUE, +N1,60353,sortie-0f2a48e4-1408-4f3d-af17-fb6ce72323ba,https://biolit.fr/sorties/sortie-0f2a48e4-1408-4f3d-af17-fb6ce72323ba/,Phil,,5/24/2016 0:00,11.0000000,12.0000000,47.793379000000,-3.843635000000,,Trévignon - Finistère,47656,observation-0f2a48e4-1408-4f3d-af17-fb6ce72323ba-3,https://biolit.fr/observations/observation-0f2a48e4-1408-4f3d-af17-fb6ce72323ba-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020899.JPG,,FALSE, +N1,60353,sortie-0f2a48e4-1408-4f3d-af17-fb6ce72323ba,https://biolit.fr/sorties/sortie-0f2a48e4-1408-4f3d-af17-fb6ce72323ba/,Phil,,5/24/2016 0:00,11.0000000,12.0000000,47.793379000000,-3.843635000000,,Trévignon - Finistère,47658,observation-0f2a48e4-1408-4f3d-af17-fb6ce72323ba-4,https://biolit.fr/observations/observation-0f2a48e4-1408-4f3d-af17-fb6ce72323ba-4/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1020832.JPG,,TRUE, +N1,60354,sortie-7c2f411f-d557-4549-ade9-7d4869d1c037,https://biolit.fr/sorties/sortie-7c2f411f-d557-4549-ade9-7d4869d1c037/,Phil,,09/10/2017,11.0000000,11.0000000,47.86948500000,-3.926668000000,,Concarneau - Finistère,47660,observation-7c2f411f-d557-4549-ade9-7d4869d1c037,https://biolit.fr/observations/observation-7c2f411f-d557-4549-ade9-7d4869d1c037/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/20170910_111521.jpg,,TRUE, +N1,60354,sortie-7c2f411f-d557-4549-ade9-7d4869d1c037,https://biolit.fr/sorties/sortie-7c2f411f-d557-4549-ade9-7d4869d1c037/,Phil,,09/10/2017,11.0000000,11.0000000,47.86948500000,-3.926668000000,,Concarneau - Finistère,47662,observation-7c2f411f-d557-4549-ade9-7d4869d1c037-2,https://biolit.fr/observations/observation-7c2f411f-d557-4549-ade9-7d4869d1c037-2/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20170910_111540.jpg,,TRUE, +N1,60354,sortie-7c2f411f-d557-4549-ade9-7d4869d1c037,https://biolit.fr/sorties/sortie-7c2f411f-d557-4549-ade9-7d4869d1c037/,Phil,,09/10/2017,11.0000000,11.0000000,47.86948500000,-3.926668000000,,Concarneau - Finistère,47664,observation-7c2f411f-d557-4549-ade9-7d4869d1c037-3,https://biolit.fr/observations/observation-7c2f411f-d557-4549-ade9-7d4869d1c037-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170910_111738.jpg,,FALSE, +N1,60355,sortie-26cbb40f-f5a9-4ca1-af45-68a385b08771,https://biolit.fr/sorties/sortie-26cbb40f-f5a9-4ca1-af45-68a385b08771/,cgomeshuiban,,07/06/2017,19.0:15,19.0:45,43.554747000000,7.142932000000,,Plage du Cap Gros,47666,observation-26cbb40f-f5a9-4ca1-af45-68a385b08771,https://biolit.fr/observations/observation-26cbb40f-f5a9-4ca1-af45-68a385b08771/,,,,https://biolit.fr/wp-content/uploads/2023/07/2017-07-06_19-17-58_p7060186_cut.jpg,,FALSE, +N1,60355,sortie-26cbb40f-f5a9-4ca1-af45-68a385b08771,https://biolit.fr/sorties/sortie-26cbb40f-f5a9-4ca1-af45-68a385b08771/,cgomeshuiban,,07/06/2017,19.0:15,19.0:45,43.554747000000,7.142932000000,,Plage du Cap Gros,47668,observation-26cbb40f-f5a9-4ca1-af45-68a385b08771-2,https://biolit.fr/observations/observation-26cbb40f-f5a9-4ca1-af45-68a385b08771-2/,Diplodus vulgaris,Sar à tête noire,,https://biolit.fr/wp-content/uploads/2023/07/2017-07-06_19-35-44_p7060250_cut.jpg,,TRUE, +N1,60355,sortie-26cbb40f-f5a9-4ca1-af45-68a385b08771,https://biolit.fr/sorties/sortie-26cbb40f-f5a9-4ca1-af45-68a385b08771/,cgomeshuiban,,07/06/2017,19.0:15,19.0:45,43.554747000000,7.142932000000,,Plage du Cap Gros,47670,observation-26cbb40f-f5a9-4ca1-af45-68a385b08771-3,https://biolit.fr/observations/observation-26cbb40f-f5a9-4ca1-af45-68a385b08771-3/,Coris julis,Girelle commune,,https://biolit.fr/wp-content/uploads/2023/07/2017-07-06_19-36-43_p7060264_cut.jpg,,TRUE, +N1,60355,sortie-26cbb40f-f5a9-4ca1-af45-68a385b08771,https://biolit.fr/sorties/sortie-26cbb40f-f5a9-4ca1-af45-68a385b08771/,cgomeshuiban,,07/06/2017,19.0:15,19.0:45,43.554747000000,7.142932000000,,Plage du Cap Gros,47672,observation-26cbb40f-f5a9-4ca1-af45-68a385b08771-4,https://biolit.fr/observations/observation-26cbb40f-f5a9-4ca1-af45-68a385b08771-4/,Diplodus puntazzo,Sar à museau pointu,,https://biolit.fr/wp-content/uploads/2023/07/2017-07-06_19-37-31_p7060274_cut.jpg,,TRUE, +N1,60356,sortie-8e458f40-1c19-4dfe-851d-191e8086c82f,https://biolit.fr/sorties/sortie-8e458f40-1c19-4dfe-851d-191e8086c82f/,cgomeshuiban,,09/08/2016,19.0:35,19.0:55,43.554704000000,7.14295500000,,Plage du Cap Gros,47674,observation-8e458f40-1c19-4dfe-851d-191e8086c82f,https://biolit.fr/observations/observation-8e458f40-1c19-4dfe-851d-191e8086c82f/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/2016-09-08_19-51-30-p9081288.jpg,,TRUE, +N1,60357,sortie-3ec834a6-5c83-47cc-b45a-f58a372614ec,https://biolit.fr/sorties/sortie-3ec834a6-5c83-47cc-b45a-f58a372614ec/,CarpeDiem,,08/10/2017,8.0000000,8.0000000,42.963237000000,9.346108000000,,pointe rocheuse face ilot Capense,47676,observation-3ec834a6-5c83-47cc-b45a-f58a372614ec,https://biolit.fr/observations/observation-3ec834a6-5c83-47cc-b45a-f58a372614ec/,,,,https://biolit.fr/wp-content/uploads/2023/07/Anadyomène-scaled.jpg,,FALSE, +N1,60357,sortie-3ec834a6-5c83-47cc-b45a-f58a372614ec,https://biolit.fr/sorties/sortie-3ec834a6-5c83-47cc-b45a-f58a372614ec/,CarpeDiem,,08/10/2017,8.0000000,8.0000000,42.963237000000,9.346108000000,,pointe rocheuse face ilot Capense,47678,observation-3ec834a6-5c83-47cc-b45a-f58a372614ec-2,https://biolit.fr/observations/observation-3ec834a6-5c83-47cc-b45a-f58a372614ec-2/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/2023/07/Blennie-scaled.jpg,,TRUE, +N1,60357,sortie-3ec834a6-5c83-47cc-b45a-f58a372614ec,https://biolit.fr/sorties/sortie-3ec834a6-5c83-47cc-b45a-f58a372614ec/,CarpeDiem,,08/10/2017,8.0000000,8.0000000,42.963237000000,9.346108000000,,pointe rocheuse face ilot Capense,47680,observation-3ec834a6-5c83-47cc-b45a-f58a372614ec-3,https://biolit.fr/observations/observation-3ec834a6-5c83-47cc-b45a-f58a372614ec-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabe marbre-scaled.jpg,,FALSE, +N1,60357,sortie-3ec834a6-5c83-47cc-b45a-f58a372614ec,https://biolit.fr/sorties/sortie-3ec834a6-5c83-47cc-b45a-f58a372614ec/,CarpeDiem,,08/10/2017,8.0000000,8.0000000,42.963237000000,9.346108000000,,pointe rocheuse face ilot Capense,47681,observation-3ec834a6-5c83-47cc-b45a-f58a372614ec-4,https://biolit.fr/observations/observation-3ec834a6-5c83-47cc-b45a-f58a372614ec-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cystoseire-scaled.jpg,,FALSE, +N1,60357,sortie-3ec834a6-5c83-47cc-b45a-f58a372614ec,https://biolit.fr/sorties/sortie-3ec834a6-5c83-47cc-b45a-f58a372614ec/,CarpeDiem,,08/10/2017,8.0000000,8.0000000,42.963237000000,9.346108000000,,pointe rocheuse face ilot Capense,47683,observation-3ec834a6-5c83-47cc-b45a-f58a372614ec-5,https://biolit.fr/observations/observation-3ec834a6-5c83-47cc-b45a-f58a372614ec-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule toupie-scaled.jpg,,FALSE, +N1,60357,sortie-3ec834a6-5c83-47cc-b45a-f58a372614ec,https://biolit.fr/sorties/sortie-3ec834a6-5c83-47cc-b45a-f58a372614ec/,CarpeDiem,,08/10/2017,8.0000000,8.0000000,42.963237000000,9.346108000000,,pointe rocheuse face ilot Capense,47684,observation-3ec834a6-5c83-47cc-b45a-f58a372614ec-6,https://biolit.fr/observations/observation-3ec834a6-5c83-47cc-b45a-f58a372614ec-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/padina-scaled.jpg,,FALSE, +N1,60357,sortie-3ec834a6-5c83-47cc-b45a-f58a372614ec,https://biolit.fr/sorties/sortie-3ec834a6-5c83-47cc-b45a-f58a372614ec/,CarpeDiem,,08/10/2017,8.0000000,8.0000000,42.963237000000,9.346108000000,,pointe rocheuse face ilot Capense,47685,observation-3ec834a6-5c83-47cc-b45a-f58a372614ec-7,https://biolit.fr/observations/observation-3ec834a6-5c83-47cc-b45a-f58a372614ec-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Posidonia-scaled.jpg,,FALSE, +N1,60358,sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25,https://biolit.fr/sorties/sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25/,CarpeDiem,,08/09/2017,8.0000000,9.0000000,42.962883000000,9.34906900000,,plage du pont près de Mute,47687,observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25,https://biolit.fr/observations/observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25/,,,,https://biolit.fr/wp-content/uploads/2023/07/eponges-scaled.jpg,,FALSE, +N1,60358,sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25,https://biolit.fr/sorties/sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25/,CarpeDiem,,08/09/2017,8.0000000,9.0000000,42.962883000000,9.34906900000,,plage du pont près de Mute,47689,observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25-2,https://biolit.fr/observations/observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Criste marine_0-scaled.jpg,,FALSE, +N1,60358,sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25,https://biolit.fr/sorties/sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25/,CarpeDiem,,08/09/2017,8.0000000,9.0000000,42.962883000000,9.34906900000,,plage du pont près de Mute,47691,observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25-3,https://biolit.fr/observations/observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Os...-scaled.jpg,,FALSE, +N1,60358,sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25,https://biolit.fr/sorties/sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25/,CarpeDiem,,08/09/2017,8.0000000,9.0000000,42.962883000000,9.34906900000,,plage du pont près de Mute,47693,observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25-4,https://biolit.fr/observations/observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Imortelles-scaled.jpg,,FALSE, +N1,60358,sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25,https://biolit.fr/sorties/sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25/,CarpeDiem,,08/09/2017,8.0000000,9.0000000,42.962883000000,9.34906900000,,plage du pont près de Mute,47695,observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25-5,https://biolit.fr/observations/observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Plante grasse-scaled.jpg,,FALSE, +N1,60358,sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25,https://biolit.fr/sorties/sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25/,CarpeDiem,,08/09/2017,8.0000000,9.0000000,42.962883000000,9.34906900000,,plage du pont près de Mute,47697,observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25-6,https://biolit.fr/observations/observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Plante petites fleurs parme-scaled.jpg,,FALSE, +N1,60358,sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25,https://biolit.fr/sorties/sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25/,CarpeDiem,,08/09/2017,8.0000000,9.0000000,42.962883000000,9.34906900000,,plage du pont près de Mute,47699,observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25-7,https://biolit.fr/observations/observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Plantes grasse_2-scaled.jpg,,FALSE, +N1,60358,sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25,https://biolit.fr/sorties/sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25/,CarpeDiem,,08/09/2017,8.0000000,9.0000000,42.962883000000,9.34906900000,,plage du pont près de Mute,47701,observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25-8,https://biolit.fr/observations/observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/pontes-scaled.jpg,,FALSE, +N1,60358,sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25,https://biolit.fr/sorties/sortie-4218705b-2fe0-4cae-a3b5-b59bce0f7e25/,CarpeDiem,,08/09/2017,8.0000000,9.0000000,42.962883000000,9.34906900000,,plage du pont près de Mute,47702,observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25-9,https://biolit.fr/observations/observation-4218705b-2fe0-4cae-a3b5-b59bce0f7e25-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Posidonia oceanica-scaled.jpg,,FALSE, +N1,60359,sortie-6bd8768d-7de6-42ec-b12b-1d9fc5d1435e,https://biolit.fr/sorties/sortie-6bd8768d-7de6-42ec-b12b-1d9fc5d1435e/,Phil,,09/02/2017,13.0000000,13.0000000,48.092020000000,-4.296839000000,,Douarnenez - Finistère,47704,observation-6bd8768d-7de6-42ec-b12b-1d9fc5d1435e,https://biolit.fr/observations/observation-6bd8768d-7de6-42ec-b12b-1d9fc5d1435e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080088.JPG,,FALSE, +N1,60359,sortie-6bd8768d-7de6-42ec-b12b-1d9fc5d1435e,https://biolit.fr/sorties/sortie-6bd8768d-7de6-42ec-b12b-1d9fc5d1435e/,Phil,,09/02/2017,13.0000000,13.0000000,48.092020000000,-4.296839000000,,Douarnenez - Finistère,47706,observation-6bd8768d-7de6-42ec-b12b-1d9fc5d1435e-2,https://biolit.fr/observations/observation-6bd8768d-7de6-42ec-b12b-1d9fc5d1435e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080102.JPG,,FALSE, +N1,60359,sortie-6bd8768d-7de6-42ec-b12b-1d9fc5d1435e,https://biolit.fr/sorties/sortie-6bd8768d-7de6-42ec-b12b-1d9fc5d1435e/,Phil,,09/02/2017,13.0000000,13.0000000,48.092020000000,-4.296839000000,,Douarnenez - Finistère,47708,observation-6bd8768d-7de6-42ec-b12b-1d9fc5d1435e-3,https://biolit.fr/observations/observation-6bd8768d-7de6-42ec-b12b-1d9fc5d1435e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080097.JPG,,FALSE, +N1,60359,sortie-6bd8768d-7de6-42ec-b12b-1d9fc5d1435e,https://biolit.fr/sorties/sortie-6bd8768d-7de6-42ec-b12b-1d9fc5d1435e/,Phil,,09/02/2017,13.0000000,13.0000000,48.092020000000,-4.296839000000,,Douarnenez - Finistère,47710,observation-6bd8768d-7de6-42ec-b12b-1d9fc5d1435e-4,https://biolit.fr/observations/observation-6bd8768d-7de6-42ec-b12b-1d9fc5d1435e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080091.JPG,,FALSE, +N1,60360,sortie-6bf67325-8667-4bf8-8e1c-bd0bb5a5e83c,https://biolit.fr/sorties/sortie-6bf67325-8667-4bf8-8e1c-bd0bb5a5e83c/,Gali83,,8/29/2017 0:00,10.0:15,11.0000000,43.089676000000,6.023136000000,,Baie de la Garonne,47712,observation-6bf67325-8667-4bf8-8e1c-bd0bb5a5e83c,https://biolit.fr/observations/observation-6bf67325-8667-4bf8-8e1c-bd0bb5a5e83c/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/2023/07/P8295067.JPG,,TRUE, +N1,60361,sortie-6d6b507b-260c-4032-85a8-759954da778c,https://biolit.fr/sorties/sortie-6d6b507b-260c-4032-85a8-759954da778c/,Phil,,09/02/2017,12.0000000,12.0:55,48.093757000000,-4.299078000000,,Douarnenez - Finistère,47714,observation-6d6b507b-260c-4032-85a8-759954da778c,https://biolit.fr/observations/observation-6d6b507b-260c-4032-85a8-759954da778c/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P1080036.JPG,,TRUE, +N1,60361,sortie-6d6b507b-260c-4032-85a8-759954da778c,https://biolit.fr/sorties/sortie-6d6b507b-260c-4032-85a8-759954da778c/,Phil,,09/02/2017,12.0000000,12.0:55,48.093757000000,-4.299078000000,,Douarnenez - Finistère,47716,observation-6d6b507b-260c-4032-85a8-759954da778c-2,https://biolit.fr/observations/observation-6d6b507b-260c-4032-85a8-759954da778c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080037.JPG,,FALSE, +N1,60361,sortie-6d6b507b-260c-4032-85a8-759954da778c,https://biolit.fr/sorties/sortie-6d6b507b-260c-4032-85a8-759954da778c/,Phil,,09/02/2017,12.0000000,12.0:55,48.093757000000,-4.299078000000,,Douarnenez - Finistère,47718,observation-6d6b507b-260c-4032-85a8-759954da778c-3,https://biolit.fr/observations/observation-6d6b507b-260c-4032-85a8-759954da778c-3/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P1080039.JPG,,TRUE, +N1,60361,sortie-6d6b507b-260c-4032-85a8-759954da778c,https://biolit.fr/sorties/sortie-6d6b507b-260c-4032-85a8-759954da778c/,Phil,,09/02/2017,12.0000000,12.0:55,48.093757000000,-4.299078000000,,Douarnenez - Finistère,47720,observation-6d6b507b-260c-4032-85a8-759954da778c-4,https://biolit.fr/observations/observation-6d6b507b-260c-4032-85a8-759954da778c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080034.JPG,,FALSE, +N1,60362,sortie-03decf1e-ea76-44d2-af7a-b851e2a8cf39,https://biolit.fr/sorties/sortie-03decf1e-ea76-44d2-af7a-b851e2a8cf39/,Phil,,4/14/2017 0:00,16.0:55,17.0000000,48.838414000000,-3.01117400000,,Île-de-Bréhat - Côtes-d'Armor,47722,observation-03decf1e-ea76-44d2-af7a-b851e2a8cf39,https://biolit.fr/observations/observation-03decf1e-ea76-44d2-af7a-b851e2a8cf39/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070125.JPG,,FALSE, +N1,60362,sortie-03decf1e-ea76-44d2-af7a-b851e2a8cf39,https://biolit.fr/sorties/sortie-03decf1e-ea76-44d2-af7a-b851e2a8cf39/,Phil,,4/14/2017 0:00,16.0:55,17.0000000,48.838414000000,-3.01117400000,,Île-de-Bréhat - Côtes-d'Armor,47724,observation-03decf1e-ea76-44d2-af7a-b851e2a8cf39-2,https://biolit.fr/observations/observation-03decf1e-ea76-44d2-af7a-b851e2a8cf39-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070124.JPG,,FALSE, +N1,60362,sortie-03decf1e-ea76-44d2-af7a-b851e2a8cf39,https://biolit.fr/sorties/sortie-03decf1e-ea76-44d2-af7a-b851e2a8cf39/,Phil,,4/14/2017 0:00,16.0:55,17.0000000,48.838414000000,-3.01117400000,,Île-de-Bréhat - Côtes-d'Armor,47726,observation-03decf1e-ea76-44d2-af7a-b851e2a8cf39-3,https://biolit.fr/observations/observation-03decf1e-ea76-44d2-af7a-b851e2a8cf39-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070121.JPG,,FALSE, +N1,60363,sortie-5a55b152-f90a-424e-b73d-cdbe1d803b9e,https://biolit.fr/sorties/sortie-5a55b152-f90a-424e-b73d-cdbe1d803b9e/,Gali83,,09/04/2017,9.0000000,11.0000000,43.106300000000,5.971889000000,,Anse Méjean Toulon,47728,observation-5a55b152-f90a-424e-b73d-cdbe1d803b9e,https://biolit.fr/observations/observation-5a55b152-f90a-424e-b73d-cdbe1d803b9e/,Cestum veneris,Ceinture de Vénus,,https://biolit.fr/wp-content/uploads/2023/07/P9045096.JPG,,TRUE, +N1,60363,sortie-5a55b152-f90a-424e-b73d-cdbe1d803b9e,https://biolit.fr/sorties/sortie-5a55b152-f90a-424e-b73d-cdbe1d803b9e/,Gali83,,09/04/2017,9.0000000,11.0000000,43.106300000000,5.971889000000,,Anse Méjean Toulon,47730,observation-5a55b152-f90a-424e-b73d-cdbe1d803b9e-2,https://biolit.fr/observations/observation-5a55b152-f90a-424e-b73d-cdbe1d803b9e-2/,Cestum veneris,Ceinture de Vénus,,https://biolit.fr/wp-content/uploads/2023/07/P9045097.JPG,,TRUE, +N1,60363,sortie-5a55b152-f90a-424e-b73d-cdbe1d803b9e,https://biolit.fr/sorties/sortie-5a55b152-f90a-424e-b73d-cdbe1d803b9e/,Gali83,,09/04/2017,9.0000000,11.0000000,43.106300000000,5.971889000000,,Anse Méjean Toulon,47732,observation-5a55b152-f90a-424e-b73d-cdbe1d803b9e-3,https://biolit.fr/observations/observation-5a55b152-f90a-424e-b73d-cdbe1d803b9e-3/,Cestum veneris,Ceinture de Vénus,,https://biolit.fr/wp-content/uploads/2023/07/P9045102.JPG,,TRUE, +N1,60364,sortie-13b0fd4a-c397-432b-bd24-be67723c09ad,https://biolit.fr/sorties/sortie-13b0fd4a-c397-432b-bd24-be67723c09ad/,Phil,,09/02/2017,12.0000000,12.0:45,48.093797000000,-4.299200000000,,Douarnenez - Finistère,47734,observation-13b0fd4a-c397-432b-bd24-be67723c09ad,https://biolit.fr/observations/observation-13b0fd4a-c397-432b-bd24-be67723c09ad/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1080024.JPG,,TRUE, +N1,60364,sortie-13b0fd4a-c397-432b-bd24-be67723c09ad,https://biolit.fr/sorties/sortie-13b0fd4a-c397-432b-bd24-be67723c09ad/,Phil,,09/02/2017,12.0000000,12.0:45,48.093797000000,-4.299200000000,,Douarnenez - Finistère,47736,observation-13b0fd4a-c397-432b-bd24-be67723c09ad-2,https://biolit.fr/observations/observation-13b0fd4a-c397-432b-bd24-be67723c09ad-2/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1080018.JPG,,TRUE, +N1,60364,sortie-13b0fd4a-c397-432b-bd24-be67723c09ad,https://biolit.fr/sorties/sortie-13b0fd4a-c397-432b-bd24-be67723c09ad/,Phil,,09/02/2017,12.0000000,12.0:45,48.093797000000,-4.299200000000,,Douarnenez - Finistère,47738,observation-13b0fd4a-c397-432b-bd24-be67723c09ad-3,https://biolit.fr/observations/observation-13b0fd4a-c397-432b-bd24-be67723c09ad-3/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1080020.JPG,,TRUE, +N1,60364,sortie-13b0fd4a-c397-432b-bd24-be67723c09ad,https://biolit.fr/sorties/sortie-13b0fd4a-c397-432b-bd24-be67723c09ad/,Phil,,09/02/2017,12.0000000,12.0:45,48.093797000000,-4.299200000000,,Douarnenez - Finistère,47740,observation-13b0fd4a-c397-432b-bd24-be67723c09ad-4,https://biolit.fr/observations/observation-13b0fd4a-c397-432b-bd24-be67723c09ad-4/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/P1080010.JPG,,TRUE, +N1,60365,sortie-88d3649f-65c9-462b-af91-4e05eafc0fe3,https://biolit.fr/sorties/sortie-88d3649f-65c9-462b-af91-4e05eafc0fe3/,Phil,,09/03/2017,18.0000000,18.0000000,48.382894000000,-4.402773000000,,Plougastel-Daoulas - Finistère,47742,observation-88d3649f-65c9-462b-af91-4e05eafc0fe3,https://biolit.fr/observations/observation-88d3649f-65c9-462b-af91-4e05eafc0fe3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170903_180928.jpg,,FALSE, +N1,60365,sortie-88d3649f-65c9-462b-af91-4e05eafc0fe3,https://biolit.fr/sorties/sortie-88d3649f-65c9-462b-af91-4e05eafc0fe3/,Phil,,09/03/2017,18.0000000,18.0000000,48.382894000000,-4.402773000000,,Plougastel-Daoulas - Finistère,47744,observation-88d3649f-65c9-462b-af91-4e05eafc0fe3-2,https://biolit.fr/observations/observation-88d3649f-65c9-462b-af91-4e05eafc0fe3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170903_180920.jpg,,FALSE, +N1,60366,sortie-eeb7bb2e-cafa-447f-a177-bd7ebd3c3c70,https://biolit.fr/sorties/sortie-eeb7bb2e-cafa-447f-a177-bd7ebd3c3c70/,Phil,,09/10/2017,11.000005,11.0000000,47.869007000000,-3.927257000000,,Concarneau - Finistère,47746,observation-eeb7bb2e-cafa-447f-a177-bd7ebd3c3c70,https://biolit.fr/observations/observation-eeb7bb2e-cafa-447f-a177-bd7ebd3c3c70/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/20170910_110627.jpg,,TRUE, +N1,60366,sortie-eeb7bb2e-cafa-447f-a177-bd7ebd3c3c70,https://biolit.fr/sorties/sortie-eeb7bb2e-cafa-447f-a177-bd7ebd3c3c70/,Phil,,09/10/2017,11.000005,11.0000000,47.869007000000,-3.927257000000,,Concarneau - Finistère,47748,observation-eeb7bb2e-cafa-447f-a177-bd7ebd3c3c70-2,https://biolit.fr/observations/observation-eeb7bb2e-cafa-447f-a177-bd7ebd3c3c70-2/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/20170910_110953.jpg,,TRUE, +N1,60366,sortie-eeb7bb2e-cafa-447f-a177-bd7ebd3c3c70,https://biolit.fr/sorties/sortie-eeb7bb2e-cafa-447f-a177-bd7ebd3c3c70/,Phil,,09/10/2017,11.000005,11.0000000,47.869007000000,-3.927257000000,,Concarneau - Finistère,47750,observation-eeb7bb2e-cafa-447f-a177-bd7ebd3c3c70-3,https://biolit.fr/observations/observation-eeb7bb2e-cafa-447f-a177-bd7ebd3c3c70-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170910_110705.jpg,,FALSE, +N1,60367,sortie-de808b05-87d0-4c80-95ce-1514bed9559b,https://biolit.fr/sorties/sortie-de808b05-87d0-4c80-95ce-1514bed9559b/,Phil,,09/02/2017,13.0:45,13.0000000,48.105078000000,-4.285595000000,,Kerlaz - Finistère,47752,observation-de808b05-87d0-4c80-95ce-1514bed9559b,https://biolit.fr/observations/observation-de808b05-87d0-4c80-95ce-1514bed9559b/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080116.JPG,,FALSE, +N1,60367,sortie-de808b05-87d0-4c80-95ce-1514bed9559b,https://biolit.fr/sorties/sortie-de808b05-87d0-4c80-95ce-1514bed9559b/,Phil,,09/02/2017,13.0:45,13.0000000,48.105078000000,-4.285595000000,,Kerlaz - Finistère,47754,observation-de808b05-87d0-4c80-95ce-1514bed9559b-2,https://biolit.fr/observations/observation-de808b05-87d0-4c80-95ce-1514bed9559b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080115.JPG,,FALSE, +N1,60367,sortie-de808b05-87d0-4c80-95ce-1514bed9559b,https://biolit.fr/sorties/sortie-de808b05-87d0-4c80-95ce-1514bed9559b/,Phil,,09/02/2017,13.0:45,13.0000000,48.105078000000,-4.285595000000,,Kerlaz - Finistère,47756,observation-de808b05-87d0-4c80-95ce-1514bed9559b-3,https://biolit.fr/observations/observation-de808b05-87d0-4c80-95ce-1514bed9559b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080117.JPG,,FALSE, +N1,60367,sortie-de808b05-87d0-4c80-95ce-1514bed9559b,https://biolit.fr/sorties/sortie-de808b05-87d0-4c80-95ce-1514bed9559b/,Phil,,09/02/2017,13.0:45,13.0000000,48.105078000000,-4.285595000000,,Kerlaz - Finistère,47758,observation-de808b05-87d0-4c80-95ce-1514bed9559b-4,https://biolit.fr/observations/observation-de808b05-87d0-4c80-95ce-1514bed9559b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080118.JPG,,FALSE, +N1,60367,sortie-de808b05-87d0-4c80-95ce-1514bed9559b,https://biolit.fr/sorties/sortie-de808b05-87d0-4c80-95ce-1514bed9559b/,Phil,,09/02/2017,13.0:45,13.0000000,48.105078000000,-4.285595000000,,Kerlaz - Finistère,47760,observation-de808b05-87d0-4c80-95ce-1514bed9559b-5,https://biolit.fr/observations/observation-de808b05-87d0-4c80-95ce-1514bed9559b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1080114.JPG,,FALSE, +N1,60368,sortie-67a1e424-6b56-4c6e-be88-2e473d4ddf27,https://biolit.fr/sorties/sortie-67a1e424-6b56-4c6e-be88-2e473d4ddf27/,Phil,,09/02/2017,12.0:35,12.0000000,48.092460000000,-4.296972000000,,Douarnenez - Finistère,47762,observation-67a1e424-6b56-4c6e-be88-2e473d4ddf27,https://biolit.fr/observations/observation-67a1e424-6b56-4c6e-be88-2e473d4ddf27/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070998.JPG,,FALSE, +N1,60368,sortie-67a1e424-6b56-4c6e-be88-2e473d4ddf27,https://biolit.fr/sorties/sortie-67a1e424-6b56-4c6e-be88-2e473d4ddf27/,Phil,,09/02/2017,12.0:35,12.0000000,48.092460000000,-4.296972000000,,Douarnenez - Finistère,47764,observation-67a1e424-6b56-4c6e-be88-2e473d4ddf27-2,https://biolit.fr/observations/observation-67a1e424-6b56-4c6e-be88-2e473d4ddf27-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070995.JPG,,FALSE, +N1,60369,sortie-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d,https://biolit.fr/sorties/sortie-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d/,Phil,,8/20/2017 0:00,10.0000000,11.0000000,47.895328000000,-3.967656000000,,La Forêt-Fouesnant - Finistère,47766,observation-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d,https://biolit.fr/observations/observation-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d/,Atelecyclus undecimdentatus,Grand crabe circulaire,,https://biolit.fr/wp-content/uploads/2023/07/20170820_110300.jpg,,TRUE, +N1,60369,sortie-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d,https://biolit.fr/sorties/sortie-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d/,Phil,,8/20/2017 0:00,10.0000000,11.0000000,47.895328000000,-3.967656000000,,La Forêt-Fouesnant - Finistère,47768,observation-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d-2,https://biolit.fr/observations/observation-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d-2/,Atelecyclus undecimdentatus,Grand crabe circulaire,,https://biolit.fr/wp-content/uploads/2023/07/20170820_110319.jpg,,TRUE, +N1,60369,sortie-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d,https://biolit.fr/sorties/sortie-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d/,Phil,,8/20/2017 0:00,10.0000000,11.0000000,47.895328000000,-3.967656000000,,La Forêt-Fouesnant - Finistère,47770,observation-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d-3,https://biolit.fr/observations/observation-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170820_105922.jpg,,FALSE, +N1,60369,sortie-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d,https://biolit.fr/sorties/sortie-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d/,Phil,,8/20/2017 0:00,10.0000000,11.0000000,47.895328000000,-3.967656000000,,La Forêt-Fouesnant - Finistère,47772,observation-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d-4,https://biolit.fr/observations/observation-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170820_110003.jpg,,FALSE, +N1,60369,sortie-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d,https://biolit.fr/sorties/sortie-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d/,Phil,,8/20/2017 0:00,10.0000000,11.0000000,47.895328000000,-3.967656000000,,La Forêt-Fouesnant - Finistère,47774,observation-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d-5,https://biolit.fr/observations/observation-e1ae5e24-30ca-4fd3-9a86-112b6fec9c4d-5/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/20170820_110218.jpg,,TRUE, +N1,60370,sortie-f1cfa09e-7cf0-4319-8d66-b27fd791fbbd,https://biolit.fr/sorties/sortie-f1cfa09e-7cf0-4319-8d66-b27fd791fbbd/,Phil,,09/07/2017,16.0000000,18.0000000,48.383242000000,-4.401335000000,,Plougastel-Daoulas - Finistère,47776,observation-f1cfa09e-7cf0-4319-8d66-b27fd791fbbd,https://biolit.fr/observations/observation-f1cfa09e-7cf0-4319-8d66-b27fd791fbbd/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170903_180639_0.jpg,,FALSE, +N1,60370,sortie-f1cfa09e-7cf0-4319-8d66-b27fd791fbbd,https://biolit.fr/sorties/sortie-f1cfa09e-7cf0-4319-8d66-b27fd791fbbd/,Phil,,09/07/2017,16.0000000,18.0000000,48.383242000000,-4.401335000000,,Plougastel-Daoulas - Finistère,47778,observation-f1cfa09e-7cf0-4319-8d66-b27fd791fbbd-2,https://biolit.fr/observations/observation-f1cfa09e-7cf0-4319-8d66-b27fd791fbbd-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170903_180734(0)_0.jpg,,FALSE, +N1,60370,sortie-f1cfa09e-7cf0-4319-8d66-b27fd791fbbd,https://biolit.fr/sorties/sortie-f1cfa09e-7cf0-4319-8d66-b27fd791fbbd/,Phil,,09/07/2017,16.0000000,18.0000000,48.383242000000,-4.401335000000,,Plougastel-Daoulas - Finistère,47780,observation-f1cfa09e-7cf0-4319-8d66-b27fd791fbbd-3,https://biolit.fr/observations/observation-f1cfa09e-7cf0-4319-8d66-b27fd791fbbd-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170903_180214.jpg,,FALSE, +N1,60371,sortie-b426676a-da0c-4942-8941-83fec9ef9247,https://biolit.fr/sorties/sortie-b426676a-da0c-4942-8941-83fec9ef9247/,Phil,,8/25/2017 0:00,12.0000000,12.0:55,47.872822000000,-3.909333000000,,Concarneau - Finistère,47782,observation-b426676a-da0c-4942-8941-83fec9ef9247,https://biolit.fr/observations/observation-b426676a-da0c-4942-8941-83fec9ef9247/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170825_125100.jpg,,FALSE, +N1,60372,sortie-b75dac7b-d9c8-46f3-bb5f-beacfa1d4a66,https://biolit.fr/sorties/sortie-b75dac7b-d9c8-46f3-bb5f-beacfa1d4a66/,Phil,,09/03/2017,18.0:25,18.0000000,48.37589100000,-4.411659000000,,Plougastel-Daoulas - Finistère,47784,observation-b75dac7b-d9c8-46f3-bb5f-beacfa1d4a66,https://biolit.fr/observations/observation-b75dac7b-d9c8-46f3-bb5f-beacfa1d4a66/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170903_182353.jpg,,FALSE, +N1,60372,sortie-b75dac7b-d9c8-46f3-bb5f-beacfa1d4a66,https://biolit.fr/sorties/sortie-b75dac7b-d9c8-46f3-bb5f-beacfa1d4a66/,Phil,,09/03/2017,18.0:25,18.0000000,48.37589100000,-4.411659000000,,Plougastel-Daoulas - Finistère,47786,observation-b75dac7b-d9c8-46f3-bb5f-beacfa1d4a66-2,https://biolit.fr/observations/observation-b75dac7b-d9c8-46f3-bb5f-beacfa1d4a66-2/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20170903_182721.jpg,,TRUE, +N1,60372,sortie-b75dac7b-d9c8-46f3-bb5f-beacfa1d4a66,https://biolit.fr/sorties/sortie-b75dac7b-d9c8-46f3-bb5f-beacfa1d4a66/,Phil,,09/03/2017,18.0:25,18.0000000,48.37589100000,-4.411659000000,,Plougastel-Daoulas - Finistère,47788,observation-b75dac7b-d9c8-46f3-bb5f-beacfa1d4a66-3,https://biolit.fr/observations/observation-b75dac7b-d9c8-46f3-bb5f-beacfa1d4a66-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170903_182551.jpg,,FALSE, +N1,60373,sortie-9bc98424-0049-4ffc-9582-f11cd72927a3,https://biolit.fr/sorties/sortie-9bc98424-0049-4ffc-9582-f11cd72927a3/,Phil,,8/20/2017 0:00,10.0:55,11.0000000,47.894755000000,-3.971287000000,,La Forêt-Fouesnant - Finistère,47790,observation-9bc98424-0049-4ffc-9582-f11cd72927a3,https://biolit.fr/observations/observation-9bc98424-0049-4ffc-9582-f11cd72927a3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170820_105719.jpg,,FALSE, +N1,60373,sortie-9bc98424-0049-4ffc-9582-f11cd72927a3,https://biolit.fr/sorties/sortie-9bc98424-0049-4ffc-9582-f11cd72927a3/,Phil,,8/20/2017 0:00,10.0:55,11.0000000,47.894755000000,-3.971287000000,,La Forêt-Fouesnant - Finistère,47792,observation-9bc98424-0049-4ffc-9582-f11cd72927a3-2,https://biolit.fr/observations/observation-9bc98424-0049-4ffc-9582-f11cd72927a3-2/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/20170820_105353.jpg,,TRUE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47794,observation-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de/,,,,https://biolit.fr/wp-content/uploads/2023/07/epave du ponton-bigue samsonne 1.png,,FALSE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47796,observation-5111f133-f2ac-4dfe-acee-fd58847756de-2,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/epave pontonbuguesamsonne2.png,,FALSE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47798,observation-5111f133-f2ac-4dfe-acee-fd58847756de-3,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/epavepontonbiguesamson5soet.png,,FALSE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47800,observation-5111f133-f2ac-4dfe-acee-fd58847756de-4,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/epavepontonbiguesamson3.pngsoet_0.png,,FALSE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47802,observation-5111f133-f2ac-4dfe-acee-fd58847756de-5,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de-5/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/2023/07/2soet0170906_095207A.png,,TRUE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47804,observation-5111f133-f2ac-4dfe-acee-fd58847756de-6,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de-6/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/2soetpatelles.png,,TRUE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47806,observation-5111f133-f2ac-4dfe-acee-fd58847756de-7,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170906_094209A.png,,FALSE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47808,observation-5111f133-f2ac-4dfe-acee-fd58847756de-8,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170906_094822A.png,,FALSE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47810,observation-5111f133-f2ac-4dfe-acee-fd58847756de-9,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170906_095200A.png,,FALSE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47812,observation-5111f133-f2ac-4dfe-acee-fd58847756de-10,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/digue.png,,FALSE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47814,observation-5111f133-f2ac-4dfe-acee-fd58847756de-11,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/lepave.png,,FALSE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47816,observation-5111f133-f2ac-4dfe-acee-fd58847756de-12,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/ophuresoet.png,,FALSE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47818,observation-5111f133-f2ac-4dfe-acee-fd58847756de-13,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de-13/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/oursin de corbieres.png,,TRUE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47820,observation-5111f133-f2ac-4dfe-acee-fd58847756de-14,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de-14/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/soet anémone0170905_132604A.png,,TRUE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47822,observation-5111f133-f2ac-4dfe-acee-fd58847756de-15,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/soetanemone.png,,FALSE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47824,observation-5111f133-f2ac-4dfe-acee-fd58847756de-16,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/soetanemonessuite.png,,FALSE, +N1,60374,sortie-5111f133-f2ac-4dfe-acee-fd58847756de,https://biolit.fr/sorties/sortie-5111f133-f2ac-4dfe-acee-fd58847756de/,Sophie Etienne,,09/06/2017,9.0000000,10.0000000,43.35738600000,5.293805000000,,digue de Corbières ,47826,observation-5111f133-f2ac-4dfe-acee-fd58847756de-17,https://biolit.fr/observations/observation-5111f133-f2ac-4dfe-acee-fd58847756de-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/soetavoir.png,,FALSE, +N1,60375,sortie-4cb9e29d-5151-42f1-9acf-155bf9fa1cd6,https://biolit.fr/sorties/sortie-4cb9e29d-5151-42f1-9acf-155bf9fa1cd6/,Phil,,09/03/2017,17.0:55,18.0000000,48.382883000000,-4.402580000000,,Plougastel Daoulas - Finistère,47828,observation-4cb9e29d-5151-42f1-9acf-155bf9fa1cd6,https://biolit.fr/observations/observation-4cb9e29d-5151-42f1-9acf-155bf9fa1cd6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170903_175954.jpg,,FALSE, +N1,60375,sortie-4cb9e29d-5151-42f1-9acf-155bf9fa1cd6,https://biolit.fr/sorties/sortie-4cb9e29d-5151-42f1-9acf-155bf9fa1cd6/,Phil,,09/03/2017,17.0:55,18.0000000,48.382883000000,-4.402580000000,,Plougastel Daoulas - Finistère,47830,observation-4cb9e29d-5151-42f1-9acf-155bf9fa1cd6-2,https://biolit.fr/observations/observation-4cb9e29d-5151-42f1-9acf-155bf9fa1cd6-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170903_175850.jpg,,TRUE, +N1,60375,sortie-4cb9e29d-5151-42f1-9acf-155bf9fa1cd6,https://biolit.fr/sorties/sortie-4cb9e29d-5151-42f1-9acf-155bf9fa1cd6/,Phil,,09/03/2017,17.0:55,18.0000000,48.382883000000,-4.402580000000,,Plougastel Daoulas - Finistère,47832,observation-4cb9e29d-5151-42f1-9acf-155bf9fa1cd6-3,https://biolit.fr/observations/observation-4cb9e29d-5151-42f1-9acf-155bf9fa1cd6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170903_180048.jpg,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47834,observation-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325/,Tripterygion delaisi,Triptérygion jaune,,https://biolit.fr/wp-content/uploads/2023/07/uranoscope.png,,TRUE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47836,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-2,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/surfacemuletssoet.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47838,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-3,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/sophie eti corbières.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47840,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-4,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/soetsurface de lo.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47842,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-5,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/soetsaupe.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47844,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-6,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/soetsablecorbieres.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47846,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-7,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-7/,Chromis chromis,Castagnole,,https://biolit.fr/wp-content/uploads/2023/07/soetdivcastagnolesetloups.png,,TRUE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47848,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-8,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/soetcorbieres.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47850,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-9,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/soet.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47852,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-10,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/snif.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47854,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-11,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-11/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/2023/07/saupessoetcorb.png,,TRUE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47856,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-12,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-12/,Serranus scriba,Serran-écriture,,https://biolit.fr/wp-content/uploads/2023/07/sartamboursoet.png,,TRUE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47858,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-13,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/poissons corbièressoet.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47862,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-15,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-15/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/oursinsoet.png,,TRUE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47864,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-16,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/muletssoet.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47866,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-17,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/loupssoetcorbieres.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47868,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-18,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/loupsoet.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47870,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-19,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/lepadogastersoet.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47872,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-20,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-20/,Tripterygion tripteronotum,Triptérygion rouge,,https://biolit.fr/wp-content/uploads/2023/07/lepadogasterfemellesoetcorbieres.png,,TRUE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47874,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-21,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/girelle so et.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47876,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-22,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/etoilemerrougesoet.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47878,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-23,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/etoilecastagnolesloup.png,",""false""",, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47880,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-24,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/épongeencroutantes.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47882,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-25,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/corbieressoet.png,,FALSE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47884,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-26,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-26/,Chromis chromis,Castagnole,,https://biolit.fr/wp-content/uploads/2023/07/castagnolesoet.png,,TRUE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47886,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-27,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-27/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/anemone-scaled.jpg,,TRUE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47887,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-28,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/anemone jaunesoet.png,,TRUE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47889,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-29,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/anemone charnuesoet.png,,TRUE, +N1,60376,sortie-1cfb4132-409e-44e3-a9a9-070514fc1325,https://biolit.fr/sorties/sortie-1cfb4132-409e-44e3-a9a9-070514fc1325/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47891,observation-1cfb4132-409e-44e3-a9a9-070514fc1325-30,https://biolit.fr/observations/observation-1cfb4132-409e-44e3-a9a9-070514fc1325-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/alguessoet.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47893,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Tripterygion delaisi,Triptérygion jaune,,https://biolit.fr/wp-content/uploads/2023/07/uranoscope.png,,TRUE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47894,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-2,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/surfacemuletssoet.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47895,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-3,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/sophie eti corbières.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47896,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-4,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/soetsurface de lo.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47897,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-5,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/soetsaupe.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47898,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-6,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/soetsablecorbieres.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47899,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-7,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-7/,Chromis chromis,Castagnole,,https://biolit.fr/wp-content/uploads/2023/07/soetdivcastagnolesetloups.png,,TRUE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47900,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-8,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/soetcorbieres.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47901,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-9,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/soet.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47902,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-10,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/snif.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47903,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-11,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-11/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/2023/07/saupessoetcorb.png,,TRUE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47904,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-12,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-12/,Serranus scriba,Serran-écriture,,https://biolit.fr/wp-content/uploads/2023/07/sartamboursoet.png,,TRUE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47905,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-13,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/poissons corbièressoet.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47906,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-14,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-14/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/padine soet.png,,TRUE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47907,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-15,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-15/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/oursinsoet.png,,TRUE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47908,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-16,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/muletssoet.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47909,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-17,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/loupssoetcorbieres.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47910,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-18,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/loupsoet.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47911,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-19,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/lepadogastersoet.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47912,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-20,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-20/,Tripterygion tripteronotum,Triptérygion rouge,,https://biolit.fr/wp-content/uploads/2023/07/lepadogasterfemellesoetcorbieres.png,,TRUE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47913,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-21,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/girelle so et.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47914,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-22,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/etoilemerrougesoet.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47915,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-23,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/etoilecastagnolesloup.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47916,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-24,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/épongeencroutantes.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47917,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-25,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/corbieressoet.png,,FALSE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47918,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-26,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-26/,Chromis chromis,Castagnole,,https://biolit.fr/wp-content/uploads/2023/07/castagnolesoet.png,,TRUE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47919,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-27,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-27/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/anemone-scaled.jpg,,TRUE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47920,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-28,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/anemone jaunesoet.png,,TRUE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47921,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-29,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/anemone charnuesoet.png,,TRUE, +N1,60377,sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b,https://biolit.fr/sorties/sortie-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b/,Sophie Etienne,,09/01/2017,9.0000000,10.0000000,43.358322000000,5.29466400000,,"Marseille, base nautique de Corbières",47922,observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-30,https://biolit.fr/observations/observation-e575c95e-c5e3-4ae0-87c0-6a51dc9e478b-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/alguessoet.png,,FALSE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47923,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/2023/07/20160412_072926A.png,,TRUE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47925,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-2,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160412_072907A.png,,FALSE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47927,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-3,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160318_080928A.png,,FALSE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47929,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-4,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160412_072820A_0.png,,FALSE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47931,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-5,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160318_080523A.png,,FALSE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47933,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-6,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-6/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/20160318_080429A.png,,TRUE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47935,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-7,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160318_075658A.png,,FALSE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47937,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-8,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160318_074600A.png,,FALSE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47939,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-9,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160318_073616A.png,,FALSE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47941,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-10,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160315_071627A.png,,FALSE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47943,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-11,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160315_071549A.png,,FALSE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47945,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-12,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160315_071524A.png,,FALSE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47947,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-13,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160315_071503A.png,,FALSE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47949,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-14,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160315_071433A.png,,FALSE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47951,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-15,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160315_071102A.png,,FALSE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47953,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-16,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160315_070720A.png,,FALSE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47955,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-17,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160315_070532A.png,,FALSE, +N1,60378,sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840,https://biolit.fr/sorties/sortie-3c9909d8-43e7-4377-be6c-bc8ba2b5d840/,Sophie Etienne,,8/30/2017 0:00,8.0:45,9.0000000,43.357308000000,5.291295000000,,"plages de Corbières 13016, ",47957,observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-18,https://biolit.fr/observations/observation-3c9909d8-43e7-4377-be6c-bc8ba2b5d840-18/,Coris julis,Girelle commune,,https://biolit.fr/wp-content/uploads/2023/07/20160315_071056A.png,,TRUE, +N1,60379,sortie-60130a62-387b-424b-b949-22fe72282d13,https://biolit.fr/sorties/sortie-60130a62-387b-424b-b949-22fe72282d13/,yvesguidat,,8/24/2017 0:00,9.0000000,13.0000000,43.106981000000,5.981512000000,,plage Magaud,47959,observation-60130a62-387b-424b-b949-22fe72282d13,https://biolit.fr/observations/observation-60130a62-387b-424b-b949-22fe72282d13/,,,,https://biolit.fr/wp-content/uploads/2023/07/163.jpg,,FALSE, +N1,60379,sortie-60130a62-387b-424b-b949-22fe72282d13,https://biolit.fr/sorties/sortie-60130a62-387b-424b-b949-22fe72282d13/,yvesguidat,,8/24/2017 0:00,9.0000000,13.0000000,43.106981000000,5.981512000000,,plage Magaud,47961,observation-60130a62-387b-424b-b949-22fe72282d13-2,https://biolit.fr/observations/observation-60130a62-387b-424b-b949-22fe72282d13-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/171.jpg,,FALSE, +N1,60379,sortie-60130a62-387b-424b-b949-22fe72282d13,https://biolit.fr/sorties/sortie-60130a62-387b-424b-b949-22fe72282d13/,yvesguidat,,8/24/2017 0:00,9.0000000,13.0000000,43.106981000000,5.981512000000,,plage Magaud,47963,observation-60130a62-387b-424b-b949-22fe72282d13-3,https://biolit.fr/observations/observation-60130a62-387b-424b-b949-22fe72282d13-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/167.jpg,,FALSE, +N1,60379,sortie-60130a62-387b-424b-b949-22fe72282d13,https://biolit.fr/sorties/sortie-60130a62-387b-424b-b949-22fe72282d13/,yvesguidat,,8/24/2017 0:00,9.0000000,13.0000000,43.106981000000,5.981512000000,,plage Magaud,47965,observation-60130a62-387b-424b-b949-22fe72282d13-4,https://biolit.fr/observations/observation-60130a62-387b-424b-b949-22fe72282d13-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/169.jpg,,FALSE, +N1,60380,sortie-2dd09945-b9b4-4fa5-a5e6-988b93c7d84e,https://biolit.fr/sorties/sortie-2dd09945-b9b4-4fa5-a5e6-988b93c7d84e/,RIEM,,8/22/2017 0:00,11.0000000,12.0000000,47.491861000000,-2.681346000000,,PENVINS,47967,observation-2dd09945-b9b4-4fa5-a5e6-988b93c7d84e,https://biolit.fr/observations/observation-2dd09945-b9b4-4fa5-a5e6-988b93c7d84e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040125_0.JPG,,FALSE, +N1,60380,sortie-2dd09945-b9b4-4fa5-a5e6-988b93c7d84e,https://biolit.fr/sorties/sortie-2dd09945-b9b4-4fa5-a5e6-988b93c7d84e/,RIEM,,8/22/2017 0:00,11.0000000,12.0000000,47.491861000000,-2.681346000000,,PENVINS,47969,observation-2dd09945-b9b4-4fa5-a5e6-988b93c7d84e-2,https://biolit.fr/observations/observation-2dd09945-b9b4-4fa5-a5e6-988b93c7d84e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040116.JPG,,FALSE, +N1,60381,sortie-a3863959-c894-46da-80ff-675904b85dad,https://biolit.fr/sorties/sortie-a3863959-c894-46da-80ff-675904b85dad/,Phil,,4/14/2017 0:00,17.000005,17.0000000,48.837751000000,-3.00594000000,,Île-de-Bréhat - Côtes-d'Armor,47971,observation-a3863959-c894-46da-80ff-675904b85dad,https://biolit.fr/observations/observation-a3863959-c894-46da-80ff-675904b85dad/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1070133.JPG,,TRUE, +N1,60381,sortie-a3863959-c894-46da-80ff-675904b85dad,https://biolit.fr/sorties/sortie-a3863959-c894-46da-80ff-675904b85dad/,Phil,,4/14/2017 0:00,17.000005,17.0000000,48.837751000000,-3.00594000000,,Île-de-Bréhat - Côtes-d'Armor,47973,observation-a3863959-c894-46da-80ff-675904b85dad-2,https://biolit.fr/observations/observation-a3863959-c894-46da-80ff-675904b85dad-2/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1070132.JPG,,TRUE, +N1,60381,sortie-a3863959-c894-46da-80ff-675904b85dad,https://biolit.fr/sorties/sortie-a3863959-c894-46da-80ff-675904b85dad/,Phil,,4/14/2017 0:00,17.000005,17.0000000,48.837751000000,-3.00594000000,,Île-de-Bréhat - Côtes-d'Armor,47975,observation-a3863959-c894-46da-80ff-675904b85dad-3,https://biolit.fr/observations/observation-a3863959-c894-46da-80ff-675904b85dad-3/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1070130.JPG,,TRUE, +N1,60381,sortie-a3863959-c894-46da-80ff-675904b85dad,https://biolit.fr/sorties/sortie-a3863959-c894-46da-80ff-675904b85dad/,Phil,,4/14/2017 0:00,17.000005,17.0000000,48.837751000000,-3.00594000000,,Île-de-Bréhat - Côtes-d'Armor,47977,observation-a3863959-c894-46da-80ff-675904b85dad-4,https://biolit.fr/observations/observation-a3863959-c894-46da-80ff-675904b85dad-4/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1070135.JPG,,TRUE, +N1,60382,sortie-1febdfd1-4f93-4f29-bb8c-123f16cee7bd,https://biolit.fr/sorties/sortie-1febdfd1-4f93-4f29-bb8c-123f16cee7bd/,Phil,,8/20/2017 0:00,10.0:45,10.0:55,47.89582600000,-3.969126000000,,La Forêt-Fouesnant - Finistère,47979,observation-1febdfd1-4f93-4f29-bb8c-123f16cee7bd,https://biolit.fr/observations/observation-1febdfd1-4f93-4f29-bb8c-123f16cee7bd/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170820_105143.jpg,,FALSE, +N1,60382,sortie-1febdfd1-4f93-4f29-bb8c-123f16cee7bd,https://biolit.fr/sorties/sortie-1febdfd1-4f93-4f29-bb8c-123f16cee7bd/,Phil,,8/20/2017 0:00,10.0:45,10.0:55,47.89582600000,-3.969126000000,,La Forêt-Fouesnant - Finistère,47981,observation-1febdfd1-4f93-4f29-bb8c-123f16cee7bd-2,https://biolit.fr/observations/observation-1febdfd1-4f93-4f29-bb8c-123f16cee7bd-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170820_104900.jpg,,FALSE, +N1,60382,sortie-1febdfd1-4f93-4f29-bb8c-123f16cee7bd,https://biolit.fr/sorties/sortie-1febdfd1-4f93-4f29-bb8c-123f16cee7bd/,Phil,,8/20/2017 0:00,10.0:45,10.0:55,47.89582600000,-3.969126000000,,La Forêt-Fouesnant - Finistère,47983,observation-1febdfd1-4f93-4f29-bb8c-123f16cee7bd-3,https://biolit.fr/observations/observation-1febdfd1-4f93-4f29-bb8c-123f16cee7bd-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170820_105228.jpg,,FALSE, +N1,60382,sortie-1febdfd1-4f93-4f29-bb8c-123f16cee7bd,https://biolit.fr/sorties/sortie-1febdfd1-4f93-4f29-bb8c-123f16cee7bd/,Phil,,8/20/2017 0:00,10.0:45,10.0:55,47.89582600000,-3.969126000000,,La Forêt-Fouesnant - Finistère,47985,observation-1febdfd1-4f93-4f29-bb8c-123f16cee7bd-4,https://biolit.fr/observations/observation-1febdfd1-4f93-4f29-bb8c-123f16cee7bd-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170820_105307.jpg,,FALSE, +N1,60383,sortie-2790f0c9-91ab-4b60-b971-773988338bc5,https://biolit.fr/sorties/sortie-2790f0c9-91ab-4b60-b971-773988338bc5/,azelie,,7/30/2017 0:00,17.0:25,17.0:35,48.94716600000,-1.565011000000,,Lingreville,47987,observation-2790f0c9-91ab-4b60-b971-773988338bc5,https://biolit.fr/observations/observation-2790f0c9-91ab-4b60-b971-773988338bc5/,Arenicola marina,Arénicole,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4379_0-scaled.jpg,,TRUE, +N1,60383,sortie-2790f0c9-91ab-4b60-b971-773988338bc5,https://biolit.fr/sorties/sortie-2790f0c9-91ab-4b60-b971-773988338bc5/,azelie,,7/30/2017 0:00,17.0:25,17.0:35,48.94716600000,-1.565011000000,,Lingreville,47989,observation-2790f0c9-91ab-4b60-b971-773988338bc5-2,https://biolit.fr/observations/observation-2790f0c9-91ab-4b60-b971-773988338bc5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4381-scaled.jpg,,FALSE, +N1,60383,sortie-2790f0c9-91ab-4b60-b971-773988338bc5,https://biolit.fr/sorties/sortie-2790f0c9-91ab-4b60-b971-773988338bc5/,azelie,,7/30/2017 0:00,17.0:25,17.0:35,48.94716600000,-1.565011000000,,Lingreville,47991,observation-2790f0c9-91ab-4b60-b971-773988338bc5-3,https://biolit.fr/observations/observation-2790f0c9-91ab-4b60-b971-773988338bc5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4384-scaled.jpg,,FALSE, +N1,60383,sortie-2790f0c9-91ab-4b60-b971-773988338bc5,https://biolit.fr/sorties/sortie-2790f0c9-91ab-4b60-b971-773988338bc5/,azelie,,7/30/2017 0:00,17.0:25,17.0:35,48.94716600000,-1.565011000000,,Lingreville,47993,observation-2790f0c9-91ab-4b60-b971-773988338bc5-4,https://biolit.fr/observations/observation-2790f0c9-91ab-4b60-b971-773988338bc5-4/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4388-scaled.jpg,,TRUE, +N1,60383,sortie-2790f0c9-91ab-4b60-b971-773988338bc5,https://biolit.fr/sorties/sortie-2790f0c9-91ab-4b60-b971-773988338bc5/,azelie,,7/30/2017 0:00,17.0:25,17.0:35,48.94716600000,-1.565011000000,,Lingreville,47995,observation-2790f0c9-91ab-4b60-b971-773988338bc5-5,https://biolit.fr/observations/observation-2790f0c9-91ab-4b60-b971-773988338bc5-5/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4393-scaled.jpg,,TRUE, +N1,60383,sortie-2790f0c9-91ab-4b60-b971-773988338bc5,https://biolit.fr/sorties/sortie-2790f0c9-91ab-4b60-b971-773988338bc5/,azelie,,7/30/2017 0:00,17.0:25,17.0:35,48.94716600000,-1.565011000000,,Lingreville,47997,observation-2790f0c9-91ab-4b60-b971-773988338bc5-6,https://biolit.fr/observations/observation-2790f0c9-91ab-4b60-b971-773988338bc5-6/,Diogenes pugilator,Diogène d'Europe,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4397-scaled.jpg,,TRUE, +N1,60383,sortie-2790f0c9-91ab-4b60-b971-773988338bc5,https://biolit.fr/sorties/sortie-2790f0c9-91ab-4b60-b971-773988338bc5/,azelie,,7/30/2017 0:00,17.0:25,17.0:35,48.94716600000,-1.565011000000,,Lingreville,47999,observation-2790f0c9-91ab-4b60-b971-773988338bc5-7,https://biolit.fr/observations/observation-2790f0c9-91ab-4b60-b971-773988338bc5-7/,Diogenes pugilator,Diogène d'Europe,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4398-scaled.jpg,,TRUE, +N1,60383,sortie-2790f0c9-91ab-4b60-b971-773988338bc5,https://biolit.fr/sorties/sortie-2790f0c9-91ab-4b60-b971-773988338bc5/,azelie,,7/30/2017 0:00,17.0:25,17.0:35,48.94716600000,-1.565011000000,,Lingreville,48001,observation-2790f0c9-91ab-4b60-b971-773988338bc5-8,https://biolit.fr/observations/observation-2790f0c9-91ab-4b60-b971-773988338bc5-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4382-scaled.jpg,,FALSE, +N1,60384,sortie-30724488-ec30-48bf-b5bb-3e1896c5b44a,https://biolit.fr/sorties/sortie-30724488-ec30-48bf-b5bb-3e1896c5b44a/,azelie,,7/30/2017 0:00,17.0000000,17.0:25,48.958664000000,-1.562135000000,,Plage de Lingreville,48003,observation-30724488-ec30-48bf-b5bb-3e1896c5b44a,https://biolit.fr/observations/observation-30724488-ec30-48bf-b5bb-3e1896c5b44a/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4372-scaled.jpg,,FALSE, +N1,60384,sortie-30724488-ec30-48bf-b5bb-3e1896c5b44a,https://biolit.fr/sorties/sortie-30724488-ec30-48bf-b5bb-3e1896c5b44a/,azelie,,7/30/2017 0:00,17.0000000,17.0:25,48.958664000000,-1.562135000000,,Plage de Lingreville,48005,observation-30724488-ec30-48bf-b5bb-3e1896c5b44a-2,https://biolit.fr/observations/observation-30724488-ec30-48bf-b5bb-3e1896c5b44a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4374_0-scaled.jpg,,FALSE, +N1,60384,sortie-30724488-ec30-48bf-b5bb-3e1896c5b44a,https://biolit.fr/sorties/sortie-30724488-ec30-48bf-b5bb-3e1896c5b44a/,azelie,,7/30/2017 0:00,17.0000000,17.0:25,48.958664000000,-1.562135000000,,Plage de Lingreville,48007,observation-30724488-ec30-48bf-b5bb-3e1896c5b44a-3,https://biolit.fr/observations/observation-30724488-ec30-48bf-b5bb-3e1896c5b44a-3/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_4377-scaled.jpg,,TRUE, +N1,60384,sortie-30724488-ec30-48bf-b5bb-3e1896c5b44a,https://biolit.fr/sorties/sortie-30724488-ec30-48bf-b5bb-3e1896c5b44a/,azelie,,7/30/2017 0:00,17.0000000,17.0:25,48.958664000000,-1.562135000000,,Plage de Lingreville,48009,observation-30724488-ec30-48bf-b5bb-3e1896c5b44a-4,https://biolit.fr/observations/observation-30724488-ec30-48bf-b5bb-3e1896c5b44a-4/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4378-scaled.jpg,,TRUE, +N1,60385,sortie-bd6f77a0-43c2-46de-af87-bcf56eb0d288,https://biolit.fr/sorties/sortie-bd6f77a0-43c2-46de-af87-bcf56eb0d288/,Observe la nature,,8/20/2017 0:00,15.0000000,15.0000000,43.396284000000,3.69632500000,,Port de Séte,48011,observation-bd6f77a0-43c2-46de-af87-bcf56eb0d288,https://biolit.fr/observations/observation-bd6f77a0-43c2-46de-af87-bcf56eb0d288/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/2023/07/DSC04155_0-scaled.jpg,,TRUE, +N1,60385,sortie-bd6f77a0-43c2-46de-af87-bcf56eb0d288,https://biolit.fr/sorties/sortie-bd6f77a0-43c2-46de-af87-bcf56eb0d288/,Observe la nature,,8/20/2017 0:00,15.0000000,15.0000000,43.396284000000,3.69632500000,,Port de Séte,48013,observation-bd6f77a0-43c2-46de-af87-bcf56eb0d288-2,https://biolit.fr/observations/observation-bd6f77a0-43c2-46de-af87-bcf56eb0d288-2/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/2023/07/DSC04168-scaled.jpg,,TRUE, +N1,60386,sortie-e0063c0a-8759-4a55-ae5c-da066db3fa96,https://biolit.fr/sorties/sortie-e0063c0a-8759-4a55-ae5c-da066db3fa96/,Phil,,4/14/2017 0:00,17.0:25,17.0000000,48.836827000000,-3.007338000000,,Île-de-Bréhat - Côtes-d'Armor ,48015,observation-e0063c0a-8759-4a55-ae5c-da066db3fa96,https://biolit.fr/observations/observation-e0063c0a-8759-4a55-ae5c-da066db3fa96/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070138.JPG,,FALSE, +N1,60386,sortie-e0063c0a-8759-4a55-ae5c-da066db3fa96,https://biolit.fr/sorties/sortie-e0063c0a-8759-4a55-ae5c-da066db3fa96/,Phil,,4/14/2017 0:00,17.0:25,17.0000000,48.836827000000,-3.007338000000,,Île-de-Bréhat - Côtes-d'Armor ,48017,observation-e0063c0a-8759-4a55-ae5c-da066db3fa96-2,https://biolit.fr/observations/observation-e0063c0a-8759-4a55-ae5c-da066db3fa96-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070136.JPG,,TRUE, +N1,60387,sortie-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/sorties/sortie-3f3346cc-3681-4d11-9345-69750230fbda/,Etienne Pauly,,8/16/2017 0:00,17.0000000,17.0:45,47.245558000000,-2.321849000000,,"Plage de Bonne Source, Sainte Marguerite de Pornichet",48019,observation-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/observations/observation-3f3346cc-3681-4d11-9345-69750230fbda/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algue brune 2-scaled.jpg,,FALSE, +N1,60387,sortie-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/sorties/sortie-3f3346cc-3681-4d11-9345-69750230fbda/,Etienne Pauly,,8/16/2017 0:00,17.0000000,17.0:45,47.245558000000,-2.321849000000,,"Plage de Bonne Source, Sainte Marguerite de Pornichet",48021,observation-3f3346cc-3681-4d11-9345-69750230fbda-2,https://biolit.fr/observations/observation-3f3346cc-3681-4d11-9345-69750230fbda-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algue brune et bigorneau-scaled.jpg,,FALSE, +N1,60387,sortie-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/sorties/sortie-3f3346cc-3681-4d11-9345-69750230fbda/,Etienne Pauly,,8/16/2017 0:00,17.0000000,17.0:45,47.245558000000,-2.321849000000,,"Plage de Bonne Source, Sainte Marguerite de Pornichet",48023,observation-3f3346cc-3681-4d11-9345-69750230fbda-3,https://biolit.fr/observations/observation-3f3346cc-3681-4d11-9345-69750230fbda-3/,,,,https://biolit.fr/wp-content/uploads/2023/05/Algue brune.png,,FALSE, +N1,60387,sortie-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/sorties/sortie-3f3346cc-3681-4d11-9345-69750230fbda/,Etienne Pauly,,8/16/2017 0:00,17.0000000,17.0:45,47.245558000000,-2.321849000000,,"Plage de Bonne Source, Sainte Marguerite de Pornichet",48024,observation-3f3346cc-3681-4d11-9345-69750230fbda-4,https://biolit.fr/observations/observation-3f3346cc-3681-4d11-9345-69750230fbda-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Animal de mer fixé à un support-scaled.jpg,,FALSE, +N1,60387,sortie-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/sorties/sortie-3f3346cc-3681-4d11-9345-69750230fbda/,Etienne Pauly,,8/16/2017 0:00,17.0000000,17.0:45,47.245558000000,-2.321849000000,,"Plage de Bonne Source, Sainte Marguerite de Pornichet",48026,observation-3f3346cc-3681-4d11-9345-69750230fbda-5,https://biolit.fr/observations/observation-3f3346cc-3681-4d11-9345-69750230fbda-5/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/Laminaire 2-scaled.jpg,,TRUE, +N1,60387,sortie-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/sorties/sortie-3f3346cc-3681-4d11-9345-69750230fbda/,Etienne Pauly,,8/16/2017 0:00,17.0000000,17.0:45,47.245558000000,-2.321849000000,,"Plage de Bonne Source, Sainte Marguerite de Pornichet",48028,observation-3f3346cc-3681-4d11-9345-69750230fbda-6,https://biolit.fr/observations/observation-3f3346cc-3681-4d11-9345-69750230fbda-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Laminaire-scaled.jpg,,FALSE, +N1,60387,sortie-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/sorties/sortie-3f3346cc-3681-4d11-9345-69750230fbda/,Etienne Pauly,,8/16/2017 0:00,17.0000000,17.0:45,47.245558000000,-2.321849000000,,"Plage de Bonne Source, Sainte Marguerite de Pornichet",48030,observation-3f3346cc-3681-4d11-9345-69750230fbda-7,https://biolit.fr/observations/observation-3f3346cc-3681-4d11-9345-69750230fbda-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Moules et bigorneaux-scaled.jpg,,FALSE, +N1,60387,sortie-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/sorties/sortie-3f3346cc-3681-4d11-9345-69750230fbda/,Etienne Pauly,,8/16/2017 0:00,17.0000000,17.0:45,47.245558000000,-2.321849000000,,"Plage de Bonne Source, Sainte Marguerite de Pornichet",48032,observation-3f3346cc-3681-4d11-9345-69750230fbda-8,https://biolit.fr/observations/observation-3f3346cc-3681-4d11-9345-69750230fbda-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patella-scaled.jpg,,FALSE, +N1,60387,sortie-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/sorties/sortie-3f3346cc-3681-4d11-9345-69750230fbda/,Etienne Pauly,,8/16/2017 0:00,17.0000000,17.0:45,47.245558000000,-2.321849000000,,"Plage de Bonne Source, Sainte Marguerite de Pornichet",48034,observation-3f3346cc-3681-4d11-9345-69750230fbda-9,https://biolit.fr/observations/observation-3f3346cc-3681-4d11-9345-69750230fbda-9/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/Sorte de petite anémone de mer-scaled.jpg,,TRUE, +N1,60387,sortie-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/sorties/sortie-3f3346cc-3681-4d11-9345-69750230fbda/,Etienne Pauly,,8/16/2017 0:00,17.0000000,17.0:45,47.245558000000,-2.321849000000,,"Plage de Bonne Source, Sainte Marguerite de Pornichet",48036,observation-3f3346cc-3681-4d11-9345-69750230fbda-10,https://biolit.fr/observations/observation-3f3346cc-3681-4d11-9345-69750230fbda-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algues vertes 2-scaled.jpg,,FALSE, +N1,60387,sortie-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/sorties/sortie-3f3346cc-3681-4d11-9345-69750230fbda/,Etienne Pauly,,8/16/2017 0:00,17.0000000,17.0:45,47.245558000000,-2.321849000000,,"Plage de Bonne Source, Sainte Marguerite de Pornichet",48038,observation-3f3346cc-3681-4d11-9345-69750230fbda-11,https://biolit.fr/observations/observation-3f3346cc-3681-4d11-9345-69750230fbda-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algues vertes-scaled.jpg,,FALSE, +N1,60387,sortie-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/sorties/sortie-3f3346cc-3681-4d11-9345-69750230fbda/,Etienne Pauly,,8/16/2017 0:00,17.0000000,17.0:45,47.245558000000,-2.321849000000,,"Plage de Bonne Source, Sainte Marguerite de Pornichet",48040,observation-3f3346cc-3681-4d11-9345-69750230fbda-12,https://biolit.fr/observations/observation-3f3346cc-3681-4d11-9345-69750230fbda-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algues brunes 3-scaled.jpg,,FALSE, +N1,60387,sortie-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/sorties/sortie-3f3346cc-3681-4d11-9345-69750230fbda/,Etienne Pauly,,8/16/2017 0:00,17.0000000,17.0:45,47.245558000000,-2.321849000000,,"Plage de Bonne Source, Sainte Marguerite de Pornichet",48042,observation-3f3346cc-3681-4d11-9345-69750230fbda-13,https://biolit.fr/observations/observation-3f3346cc-3681-4d11-9345-69750230fbda-13/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/Apercu global des algues vertes-scaled.jpg,,TRUE, +N1,60387,sortie-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/sorties/sortie-3f3346cc-3681-4d11-9345-69750230fbda/,Etienne Pauly,,8/16/2017 0:00,17.0000000,17.0:45,47.245558000000,-2.321849000000,,"Plage de Bonne Source, Sainte Marguerite de Pornichet",48044,observation-3f3346cc-3681-4d11-9345-69750230fbda-14,https://biolit.fr/observations/observation-3f3346cc-3681-4d11-9345-69750230fbda-14/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Bigorneaux-scaled.jpg,,TRUE, +N1,60387,sortie-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/sorties/sortie-3f3346cc-3681-4d11-9345-69750230fbda/,Etienne Pauly,,8/16/2017 0:00,17.0000000,17.0:45,47.245558000000,-2.321849000000,,"Plage de Bonne Source, Sainte Marguerite de Pornichet",48046,observation-3f3346cc-3681-4d11-9345-69750230fbda-15,https://biolit.fr/observations/observation-3f3346cc-3681-4d11-9345-69750230fbda-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lignes de petites moules-scaled.jpg,,FALSE, +N1,60387,sortie-3f3346cc-3681-4d11-9345-69750230fbda,https://biolit.fr/sorties/sortie-3f3346cc-3681-4d11-9345-69750230fbda/,Etienne Pauly,,8/16/2017 0:00,17.0000000,17.0:45,47.245558000000,-2.321849000000,,"Plage de Bonne Source, Sainte Marguerite de Pornichet",48048,observation-3f3346cc-3681-4d11-9345-69750230fbda-16,https://biolit.fr/observations/observation-3f3346cc-3681-4d11-9345-69750230fbda-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Moules et bigorneaux 2-scaled.jpg,,FALSE, +N1,60388,sortie-3c387959-c71b-492e-a956-2af0dfd1fa3b,https://biolit.fr/sorties/sortie-3c387959-c71b-492e-a956-2af0dfd1fa3b/,Sophie Etienne,,8/16/2017 0:00,19.0000000,21.0000000,43.20759900000,5.33790100000,,"Marseille, Les Pharillons",48050,observation-3c387959-c71b-492e-a956-2af0dfd1fa3b,https://biolit.fr/observations/observation-3c387959-c71b-492e-a956-2af0dfd1fa3b/,Paramuricea clavata,Gorgone pourpre,,https://biolit.fr/wp-content/uploads/2023/07/sefarillongogonerouge.png,,TRUE, +N1,60388,sortie-3c387959-c71b-492e-a956-2af0dfd1fa3b,https://biolit.fr/sorties/sortie-3c387959-c71b-492e-a956-2af0dfd1fa3b/,Sophie Etienne,,8/16/2017 0:00,19.0000000,21.0000000,43.20759900000,5.33790100000,,"Marseille, Les Pharillons",48052,observation-3c387959-c71b-492e-a956-2af0dfd1fa3b-2,https://biolit.fr/observations/observation-3c387959-c71b-492e-a956-2af0dfd1fa3b-2/,Chromis chromis,Castagnole,,https://biolit.fr/wp-content/uploads/2023/07/castagnolessurparoiesefarillon.png,,TRUE, +N1,60388,sortie-3c387959-c71b-492e-a956-2af0dfd1fa3b,https://biolit.fr/sorties/sortie-3c387959-c71b-492e-a956-2af0dfd1fa3b/,Sophie Etienne,,8/16/2017 0:00,19.0000000,21.0000000,43.20759900000,5.33790100000,,"Marseille, Les Pharillons",48054,observation-3c387959-c71b-492e-a956-2af0dfd1fa3b-3,https://biolit.fr/observations/observation-3c387959-c71b-492e-a956-2af0dfd1fa3b-3/,Paramuricea clavata,Gorgone pourpre,,https://biolit.fr/wp-content/uploads/2023/07/seépongeelephan.png,,TRUE, +N1,60388,sortie-3c387959-c71b-492e-a956-2af0dfd1fa3b,https://biolit.fr/sorties/sortie-3c387959-c71b-492e-a956-2af0dfd1fa3b/,Sophie Etienne,,8/16/2017 0:00,19.0000000,21.0000000,43.20759900000,5.33790100000,,"Marseille, Les Pharillons",48056,observation-3c387959-c71b-492e-a956-2af0dfd1fa3b-4,https://biolit.fr/observations/observation-3c387959-c71b-492e-a956-2af0dfd1fa3b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/bbgrandenacre.png,,FALSE, +N1,60389,sortie-4a178e49-c3ff-4368-b049-bb8e798e4fd8,https://biolit.fr/sorties/sortie-4a178e49-c3ff-4368-b049-bb8e798e4fd8/,Septentrion Environnement,,6/25/2017 0:00,10.0000000,11.0000000,43.207828000000,5.338455000000,,Les Pharillons,48058,observation-4a178e49-c3ff-4368-b049-bb8e798e4fd8,https://biolit.fr/observations/observation-4a178e49-c3ff-4368-b049-bb8e798e4fd8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8764-2-scaled.jpg,,FALSE, +N1,60390,sortie-e1aa4dbf-321d-4566-908e-651ac208b352,https://biolit.fr/sorties/sortie-e1aa4dbf-321d-4566-908e-651ac208b352/,Phil,,4/14/2017 0:00,17.0000000,17.0:35,48.836265000000,-3.008253000000,,Île-de-Bréhat - Côtes-d'Armor,48060,observation-e1aa4dbf-321d-4566-908e-651ac208b352,https://biolit.fr/observations/observation-e1aa4dbf-321d-4566-908e-651ac208b352/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070142.JPG,,TRUE, +N1,60390,sortie-e1aa4dbf-321d-4566-908e-651ac208b352,https://biolit.fr/sorties/sortie-e1aa4dbf-321d-4566-908e-651ac208b352/,Phil,,4/14/2017 0:00,17.0000000,17.0:35,48.836265000000,-3.008253000000,,Île-de-Bréhat - Côtes-d'Armor,48062,observation-e1aa4dbf-321d-4566-908e-651ac208b352-2,https://biolit.fr/observations/observation-e1aa4dbf-321d-4566-908e-651ac208b352-2/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1070143.JPG,,TRUE, +N1,60390,sortie-e1aa4dbf-321d-4566-908e-651ac208b352,https://biolit.fr/sorties/sortie-e1aa4dbf-321d-4566-908e-651ac208b352/,Phil,,4/14/2017 0:00,17.0000000,17.0:35,48.836265000000,-3.008253000000,,Île-de-Bréhat - Côtes-d'Armor,48064,observation-e1aa4dbf-321d-4566-908e-651ac208b352-3,https://biolit.fr/observations/observation-e1aa4dbf-321d-4566-908e-651ac208b352-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070146.JPG,,FALSE, +N1,60391,sortie-3131b0fd-0070-4186-9131-7d82ccbb89ca,https://biolit.fr/sorties/sortie-3131b0fd-0070-4186-9131-7d82ccbb89ca/,azelie,,08/06/2017,12.000005,12.0000000,48.950717000000,-1.56262900000,,Plage de Lingreville,48066,observation-3131b0fd-0070-4186-9131-7d82ccbb89ca,https://biolit.fr/observations/observation-3131b0fd-0070-4186-9131-7d82ccbb89ca/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4479-scaled.jpg,,TRUE, +N1,60391,sortie-3131b0fd-0070-4186-9131-7d82ccbb89ca,https://biolit.fr/sorties/sortie-3131b0fd-0070-4186-9131-7d82ccbb89ca/,azelie,,08/06/2017,12.000005,12.0000000,48.950717000000,-1.56262900000,,Plage de Lingreville,48068,observation-3131b0fd-0070-4186-9131-7d82ccbb89ca-2,https://biolit.fr/observations/observation-3131b0fd-0070-4186-9131-7d82ccbb89ca-2/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4490-scaled.jpg,,TRUE, +N1,60391,sortie-3131b0fd-0070-4186-9131-7d82ccbb89ca,https://biolit.fr/sorties/sortie-3131b0fd-0070-4186-9131-7d82ccbb89ca/,azelie,,08/06/2017,12.000005,12.0000000,48.950717000000,-1.56262900000,,Plage de Lingreville,48070,observation-3131b0fd-0070-4186-9131-7d82ccbb89ca-3,https://biolit.fr/observations/observation-3131b0fd-0070-4186-9131-7d82ccbb89ca-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4480-scaled.jpg,,FALSE, +N1,60391,sortie-3131b0fd-0070-4186-9131-7d82ccbb89ca,https://biolit.fr/sorties/sortie-3131b0fd-0070-4186-9131-7d82ccbb89ca/,azelie,,08/06/2017,12.000005,12.0000000,48.950717000000,-1.56262900000,,Plage de Lingreville,48072,observation-3131b0fd-0070-4186-9131-7d82ccbb89ca-4,https://biolit.fr/observations/observation-3131b0fd-0070-4186-9131-7d82ccbb89ca-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4482.jpg,,FALSE, +N1,60391,sortie-3131b0fd-0070-4186-9131-7d82ccbb89ca,https://biolit.fr/sorties/sortie-3131b0fd-0070-4186-9131-7d82ccbb89ca/,azelie,,08/06/2017,12.000005,12.0000000,48.950717000000,-1.56262900000,,Plage de Lingreville,48074,observation-3131b0fd-0070-4186-9131-7d82ccbb89ca-5,https://biolit.fr/observations/observation-3131b0fd-0070-4186-9131-7d82ccbb89ca-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4478-scaled.jpg,,FALSE, +N1,60391,sortie-3131b0fd-0070-4186-9131-7d82ccbb89ca,https://biolit.fr/sorties/sortie-3131b0fd-0070-4186-9131-7d82ccbb89ca/,azelie,,08/06/2017,12.000005,12.0000000,48.950717000000,-1.56262900000,,Plage de Lingreville,48076,observation-3131b0fd-0070-4186-9131-7d82ccbb89ca-6,https://biolit.fr/observations/observation-3131b0fd-0070-4186-9131-7d82ccbb89ca-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4486-scaled.jpg,,FALSE, +N1,60392,sortie-3e8cf924-8671-42e8-97a6-0f3a5f03389e,https://biolit.fr/sorties/sortie-3e8cf924-8671-42e8-97a6-0f3a5f03389e/,RIEM,,08/10/2017,11.0:45,12.0:45,47.474373000000,-2.721665000000,,"Plage de Kercouedo, Arzon",48078,observation-3e8cf924-8671-42e8-97a6-0f3a5f03389e,https://biolit.fr/observations/observation-3e8cf924-8671-42e8-97a6-0f3a5f03389e/,Thunnus thynnus,Thon rouge,,https://biolit.fr/wp-content/uploads/2023/07/P1020231_0.JPG,,TRUE, +N1,60392,sortie-3e8cf924-8671-42e8-97a6-0f3a5f03389e,https://biolit.fr/sorties/sortie-3e8cf924-8671-42e8-97a6-0f3a5f03389e/,RIEM,,08/10/2017,11.0:45,12.0:45,47.474373000000,-2.721665000000,,"Plage de Kercouedo, Arzon",48080,observation-3e8cf924-8671-42e8-97a6-0f3a5f03389e-2,https://biolit.fr/observations/observation-3e8cf924-8671-42e8-97a6-0f3a5f03389e-2/,Thunnus thynnus,Thon rouge,,https://biolit.fr/wp-content/uploads/2023/07/P1020232.JPG,,TRUE, +N1,60392,sortie-3e8cf924-8671-42e8-97a6-0f3a5f03389e,https://biolit.fr/sorties/sortie-3e8cf924-8671-42e8-97a6-0f3a5f03389e/,RIEM,,08/10/2017,11.0:45,12.0:45,47.474373000000,-2.721665000000,,"Plage de Kercouedo, Arzon",48082,observation-3e8cf924-8671-42e8-97a6-0f3a5f03389e-3,https://biolit.fr/observations/observation-3e8cf924-8671-42e8-97a6-0f3a5f03389e-3/,Thunnus thynnus,Thon rouge,,https://biolit.fr/wp-content/uploads/2023/07/P1020233.JPG,,TRUE, +N1,60392,sortie-3e8cf924-8671-42e8-97a6-0f3a5f03389e,https://biolit.fr/sorties/sortie-3e8cf924-8671-42e8-97a6-0f3a5f03389e/,RIEM,,08/10/2017,11.0:45,12.0:45,47.474373000000,-2.721665000000,,"Plage de Kercouedo, Arzon",48084,observation-3e8cf924-8671-42e8-97a6-0f3a5f03389e-4,https://biolit.fr/observations/observation-3e8cf924-8671-42e8-97a6-0f3a5f03389e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030070.JPG,,FALSE, +N1,60392,sortie-3e8cf924-8671-42e8-97a6-0f3a5f03389e,https://biolit.fr/sorties/sortie-3e8cf924-8671-42e8-97a6-0f3a5f03389e/,RIEM,,08/10/2017,11.0:45,12.0:45,47.474373000000,-2.721665000000,,"Plage de Kercouedo, Arzon",48086,observation-3e8cf924-8671-42e8-97a6-0f3a5f03389e-5,https://biolit.fr/observations/observation-3e8cf924-8671-42e8-97a6-0f3a5f03389e-5/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/P1030071.JPG,,TRUE, +N1,60393,sortie-54523b18-a289-438c-862d-0504907bc2ac,https://biolit.fr/sorties/sortie-54523b18-a289-438c-862d-0504907bc2ac/,Phil,,08/05/2017,13.0000000,13.0:55,47.835038000000,-4.176703000000,,Loctudy - Finistère,48088,observation-54523b18-a289-438c-862d-0504907bc2ac,https://biolit.fr/observations/observation-54523b18-a289-438c-862d-0504907bc2ac/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1070745.JPG,,TRUE, +N1,60393,sortie-54523b18-a289-438c-862d-0504907bc2ac,https://biolit.fr/sorties/sortie-54523b18-a289-438c-862d-0504907bc2ac/,Phil,,08/05/2017,13.0000000,13.0:55,47.835038000000,-4.176703000000,,Loctudy - Finistère,48090,observation-54523b18-a289-438c-862d-0504907bc2ac-2,https://biolit.fr/observations/observation-54523b18-a289-438c-862d-0504907bc2ac-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070738.JPG,,FALSE, +N1,60393,sortie-54523b18-a289-438c-862d-0504907bc2ac,https://biolit.fr/sorties/sortie-54523b18-a289-438c-862d-0504907bc2ac/,Phil,,08/05/2017,13.0000000,13.0:55,47.835038000000,-4.176703000000,,Loctudy - Finistère,48092,observation-54523b18-a289-438c-862d-0504907bc2ac-3,https://biolit.fr/observations/observation-54523b18-a289-438c-862d-0504907bc2ac-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070734.JPG,,FALSE, +N1,60393,sortie-54523b18-a289-438c-862d-0504907bc2ac,https://biolit.fr/sorties/sortie-54523b18-a289-438c-862d-0504907bc2ac/,Phil,,08/05/2017,13.0000000,13.0:55,47.835038000000,-4.176703000000,,Loctudy - Finistère,48094,observation-54523b18-a289-438c-862d-0504907bc2ac-4,https://biolit.fr/observations/observation-54523b18-a289-438c-862d-0504907bc2ac-4/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/P1070728.JPG,,TRUE, +N1,60394,sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568,https://biolit.fr/sorties/sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568/,Ilse,,8/14/2017 0:00,9.0000000,10.0000000,49.373291000000,-0.142075000000,,HERMANVILLE,48096,observation-c4221d48-7de1-4933-9ab2-33d10ec1e568,https://biolit.fr/observations/observation-c4221d48-7de1-4933-9ab2-33d10ec1e568/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/P8140161-scaled.jpg,,TRUE, +N1,60394,sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568,https://biolit.fr/sorties/sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568/,Ilse,,8/14/2017 0:00,9.0000000,10.0000000,49.373291000000,-0.142075000000,,HERMANVILLE,48098,observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-2,https://biolit.fr/observations/observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-2/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P8140163-scaled.jpg,,TRUE, +N1,60394,sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568,https://biolit.fr/sorties/sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568/,Ilse,,8/14/2017 0:00,9.0000000,10.0000000,49.373291000000,-0.142075000000,,HERMANVILLE,48100,observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-3,https://biolit.fr/observations/observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8140164-scaled.jpg,,FALSE, +N1,60394,sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568,https://biolit.fr/sorties/sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568/,Ilse,,8/14/2017 0:00,9.0000000,10.0000000,49.373291000000,-0.142075000000,,HERMANVILLE,48102,observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-4,https://biolit.fr/observations/observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8140165-scaled.jpg,,FALSE, +N1,60394,sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568,https://biolit.fr/sorties/sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568/,Ilse,,8/14/2017 0:00,9.0000000,10.0000000,49.373291000000,-0.142075000000,,HERMANVILLE,48104,observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-5,https://biolit.fr/observations/observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-5/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/P8140166-scaled.jpg,,TRUE, +N1,60394,sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568,https://biolit.fr/sorties/sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568/,Ilse,,8/14/2017 0:00,9.0000000,10.0000000,49.373291000000,-0.142075000000,,HERMANVILLE,48106,observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-6,https://biolit.fr/observations/observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8140167-scaled.jpg,,FALSE, +N1,60394,sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568,https://biolit.fr/sorties/sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568/,Ilse,,8/14/2017 0:00,9.0000000,10.0000000,49.373291000000,-0.142075000000,,HERMANVILLE,48108,observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-7,https://biolit.fr/observations/observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-7/,Saccharina latissima,Laminaire sucrée,,https://biolit.fr/wp-content/uploads/2023/07/P8140177-scaled.jpg,,TRUE, +N1,60394,sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568,https://biolit.fr/sorties/sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568/,Ilse,,8/14/2017 0:00,9.0000000,10.0000000,49.373291000000,-0.142075000000,,HERMANVILLE,48110,observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-8,https://biolit.fr/observations/observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8140178-scaled.jpg,,FALSE, +N1,60394,sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568,https://biolit.fr/sorties/sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568/,Ilse,,8/14/2017 0:00,9.0000000,10.0000000,49.373291000000,-0.142075000000,,HERMANVILLE,48112,observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-9,https://biolit.fr/observations/observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-9/,Saccharina latissima,Laminaire sucrée,,https://biolit.fr/wp-content/uploads/2023/07/P8140181-scaled.jpg,,TRUE, +N1,60394,sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568,https://biolit.fr/sorties/sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568/,Ilse,,8/14/2017 0:00,9.0000000,10.0000000,49.373291000000,-0.142075000000,,HERMANVILLE,48114,observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-10,https://biolit.fr/observations/observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8140183-scaled.jpg,,FALSE, +N1,60394,sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568,https://biolit.fr/sorties/sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568/,Ilse,,8/14/2017 0:00,9.0000000,10.0000000,49.373291000000,-0.142075000000,,HERMANVILLE,48116,observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-11,https://biolit.fr/observations/observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8140185-scaled.jpg,,FALSE, +N1,60394,sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568,https://biolit.fr/sorties/sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568/,Ilse,,8/14/2017 0:00,9.0000000,10.0000000,49.373291000000,-0.142075000000,,HERMANVILLE,48118,observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-12,https://biolit.fr/observations/observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8140186-scaled.jpg,,FALSE, +N1,60394,sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568,https://biolit.fr/sorties/sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568/,Ilse,,8/14/2017 0:00,9.0000000,10.0000000,49.373291000000,-0.142075000000,,HERMANVILLE,48120,observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-13,https://biolit.fr/observations/observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/P8140189-scaled.jpg,,FALSE, +N1,60394,sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568,https://biolit.fr/sorties/sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568/,Ilse,,8/14/2017 0:00,9.0000000,10.0000000,49.373291000000,-0.142075000000,,HERMANVILLE,48122,observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-14,https://biolit.fr/observations/observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-14/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/P8140191-scaled.jpg,,TRUE, +N1,60394,sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568,https://biolit.fr/sorties/sortie-c4221d48-7de1-4933-9ab2-33d10ec1e568/,Ilse,,8/14/2017 0:00,9.0000000,10.0000000,49.373291000000,-0.142075000000,,HERMANVILLE,48124,observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-15,https://biolit.fr/observations/observation-c4221d48-7de1-4933-9ab2-33d10ec1e568-15/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P8140202-scaled.jpg,,TRUE, +N1,60395,sortie-17faafee-036f-4b52-8f83-39a9da9cb6ce,https://biolit.fr/sorties/sortie-17faafee-036f-4b52-8f83-39a9da9cb6ce/,Phil,,7/30/2017 0:00,16.0000000,16.0:35,48.181725000000,-4.29466700000,,Saint-Nic - Finistère,48126,observation-17faafee-036f-4b52-8f83-39a9da9cb6ce,https://biolit.fr/observations/observation-17faafee-036f-4b52-8f83-39a9da9cb6ce/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170730_163105.jpg,,FALSE, +N1,60395,sortie-17faafee-036f-4b52-8f83-39a9da9cb6ce,https://biolit.fr/sorties/sortie-17faafee-036f-4b52-8f83-39a9da9cb6ce/,Phil,,7/30/2017 0:00,16.0000000,16.0:35,48.181725000000,-4.29466700000,,Saint-Nic - Finistère,48128,observation-17faafee-036f-4b52-8f83-39a9da9cb6ce-2,https://biolit.fr/observations/observation-17faafee-036f-4b52-8f83-39a9da9cb6ce-2/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/20170730_162901.jpg,,TRUE, +N1,60395,sortie-17faafee-036f-4b52-8f83-39a9da9cb6ce,https://biolit.fr/sorties/sortie-17faafee-036f-4b52-8f83-39a9da9cb6ce/,Phil,,7/30/2017 0:00,16.0000000,16.0:35,48.181725000000,-4.29466700000,,Saint-Nic - Finistère,48130,observation-17faafee-036f-4b52-8f83-39a9da9cb6ce-3,https://biolit.fr/observations/observation-17faafee-036f-4b52-8f83-39a9da9cb6ce-3/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/20170730_162848.jpg,,TRUE, +N1,60395,sortie-17faafee-036f-4b52-8f83-39a9da9cb6ce,https://biolit.fr/sorties/sortie-17faafee-036f-4b52-8f83-39a9da9cb6ce/,Phil,,7/30/2017 0:00,16.0000000,16.0:35,48.181725000000,-4.29466700000,,Saint-Nic - Finistère,48132,observation-17faafee-036f-4b52-8f83-39a9da9cb6ce-4,https://biolit.fr/observations/observation-17faafee-036f-4b52-8f83-39a9da9cb6ce-4/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/20170730_162821.jpg,,TRUE, +N1,60395,sortie-17faafee-036f-4b52-8f83-39a9da9cb6ce,https://biolit.fr/sorties/sortie-17faafee-036f-4b52-8f83-39a9da9cb6ce/,Phil,,7/30/2017 0:00,16.0000000,16.0:35,48.181725000000,-4.29466700000,,Saint-Nic - Finistère,48134,observation-17faafee-036f-4b52-8f83-39a9da9cb6ce-5,https://biolit.fr/observations/observation-17faafee-036f-4b52-8f83-39a9da9cb6ce-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170730_163024.jpg,,FALSE, +N1,60395,sortie-17faafee-036f-4b52-8f83-39a9da9cb6ce,https://biolit.fr/sorties/sortie-17faafee-036f-4b52-8f83-39a9da9cb6ce/,Phil,,7/30/2017 0:00,16.0000000,16.0:35,48.181725000000,-4.29466700000,,Saint-Nic - Finistère,48136,observation-17faafee-036f-4b52-8f83-39a9da9cb6ce-6,https://biolit.fr/observations/observation-17faafee-036f-4b52-8f83-39a9da9cb6ce-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170730_163007.jpg,,FALSE, +N1,60396,sortie-7e38abf3-c28d-4b2d-9b87-bddc7ae1d406,https://biolit.fr/sorties/sortie-7e38abf3-c28d-4b2d-9b87-bddc7ae1d406/,azelie,,08/10/2017,18.0000000,18.000005,49.096828000000,-1.610641000000,,Plage de Gouville-sur-mer,48138,observation-7e38abf3-c28d-4b2d-9b87-bddc7ae1d406,https://biolit.fr/observations/observation-7e38abf3-c28d-4b2d-9b87-bddc7ae1d406/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4609-scaled.jpg,,TRUE, +N1,60396,sortie-7e38abf3-c28d-4b2d-9b87-bddc7ae1d406,https://biolit.fr/sorties/sortie-7e38abf3-c28d-4b2d-9b87-bddc7ae1d406/,azelie,,08/10/2017,18.0000000,18.000005,49.096828000000,-1.610641000000,,Plage de Gouville-sur-mer,48140,observation-7e38abf3-c28d-4b2d-9b87-bddc7ae1d406-2,https://biolit.fr/observations/observation-7e38abf3-c28d-4b2d-9b87-bddc7ae1d406-2/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4606-scaled.jpg,,TRUE, +N1,60396,sortie-7e38abf3-c28d-4b2d-9b87-bddc7ae1d406,https://biolit.fr/sorties/sortie-7e38abf3-c28d-4b2d-9b87-bddc7ae1d406/,azelie,,08/10/2017,18.0000000,18.000005,49.096828000000,-1.610641000000,,Plage de Gouville-sur-mer,48142,observation-7e38abf3-c28d-4b2d-9b87-bddc7ae1d406-3,https://biolit.fr/observations/observation-7e38abf3-c28d-4b2d-9b87-bddc7ae1d406-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4603-scaled.jpg,,TRUE, +N1,60397,sortie-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e,https://biolit.fr/sorties/sortie-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e/,azelie,,08/10/2017,17.0000000,17.0:45,49.096006000000,-1.610506000000,,Plage de Gouville-sur-mer,48144,observation-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e,https://biolit.fr/observations/observation-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4592-scaled.jpg,,TRUE, +N1,60397,sortie-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e,https://biolit.fr/sorties/sortie-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e/,azelie,,08/10/2017,17.0000000,17.0:45,49.096006000000,-1.610506000000,,Plage de Gouville-sur-mer,48146,observation-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e-2,https://biolit.fr/observations/observation-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4593-scaled.jpg,,FALSE, +N1,60397,sortie-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e,https://biolit.fr/sorties/sortie-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e/,azelie,,08/10/2017,17.0000000,17.0:45,49.096006000000,-1.610506000000,,Plage de Gouville-sur-mer,48148,observation-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e-3,https://biolit.fr/observations/observation-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e-3/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_4596-scaled.jpg,,TRUE, +N1,60397,sortie-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e,https://biolit.fr/sorties/sortie-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e/,azelie,,08/10/2017,17.0000000,17.0:45,49.096006000000,-1.610506000000,,Plage de Gouville-sur-mer,48150,observation-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e-4,https://biolit.fr/observations/observation-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4597-scaled.jpg,,FALSE, +N1,60397,sortie-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e,https://biolit.fr/sorties/sortie-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e/,azelie,,08/10/2017,17.0000000,17.0:45,49.096006000000,-1.610506000000,,Plage de Gouville-sur-mer,48152,observation-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e-5,https://biolit.fr/observations/observation-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4590-scaled.jpg,,FALSE, +N1,60397,sortie-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e,https://biolit.fr/sorties/sortie-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e/,azelie,,08/10/2017,17.0000000,17.0:45,49.096006000000,-1.610506000000,,Plage de Gouville-sur-mer,48154,observation-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e-6,https://biolit.fr/observations/observation-be57bdd2-7bfa-4f6d-9fe7-13cfde7dfc9e-6/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_4600-scaled.jpg,,TRUE, +N1,60398,sortie-37daee51-1eb8-45cf-a4a1-470d529c445d,https://biolit.fr/sorties/sortie-37daee51-1eb8-45cf-a4a1-470d529c445d/,CPIE Vallée de l'Orne,,08/08/2017,17.0000000,19.0000000,49.321090000000,-0.350598000000,,"Luc-sur-Mer, plage du Petit Enfer",48156,observation-37daee51-1eb8-45cf-a4a1-470d529c445d,https://biolit.fr/observations/observation-37daee51-1eb8-45cf-a4a1-470d529c445d/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Ascidies botrylles Luc aout17 EP_0.jpg,,TRUE, +N1,60399,sortie-9ce878c6-f83a-469f-a4aa-3e013f68c369,https://biolit.fr/sorties/sortie-9ce878c6-f83a-469f-a4aa-3e013f68c369/,Phil,,08/05/2017,13.0:25,13.0000000,47.834920000000,-4.176877000000,,Loctudy - Finistère,48158,observation-9ce878c6-f83a-469f-a4aa-3e013f68c369,https://biolit.fr/observations/observation-9ce878c6-f83a-469f-a4aa-3e013f68c369/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070716.JPG,,FALSE, +N1,60399,sortie-9ce878c6-f83a-469f-a4aa-3e013f68c369,https://biolit.fr/sorties/sortie-9ce878c6-f83a-469f-a4aa-3e013f68c369/,Phil,,08/05/2017,13.0:25,13.0000000,47.834920000000,-4.176877000000,,Loctudy - Finistère,48160,observation-9ce878c6-f83a-469f-a4aa-3e013f68c369-2,https://biolit.fr/observations/observation-9ce878c6-f83a-469f-a4aa-3e013f68c369-2/,Larus fuscus,Goéland brun,,https://biolit.fr/wp-content/uploads/2023/07/P1070715.JPG,,TRUE, +N1,60399,sortie-9ce878c6-f83a-469f-a4aa-3e013f68c369,https://biolit.fr/sorties/sortie-9ce878c6-f83a-469f-a4aa-3e013f68c369/,Phil,,08/05/2017,13.0:25,13.0000000,47.834920000000,-4.176877000000,,Loctudy - Finistère,48162,observation-9ce878c6-f83a-469f-a4aa-3e013f68c369-3,https://biolit.fr/observations/observation-9ce878c6-f83a-469f-a4aa-3e013f68c369-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070711.JPG,,FALSE, +N1,60399,sortie-9ce878c6-f83a-469f-a4aa-3e013f68c369,https://biolit.fr/sorties/sortie-9ce878c6-f83a-469f-a4aa-3e013f68c369/,Phil,,08/05/2017,13.0:25,13.0000000,47.834920000000,-4.176877000000,,Loctudy - Finistère,48164,observation-9ce878c6-f83a-469f-a4aa-3e013f68c369-4,https://biolit.fr/observations/observation-9ce878c6-f83a-469f-a4aa-3e013f68c369-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070706.JPG,,FALSE, +N1,60399,sortie-9ce878c6-f83a-469f-a4aa-3e013f68c369,https://biolit.fr/sorties/sortie-9ce878c6-f83a-469f-a4aa-3e013f68c369/,Phil,,08/05/2017,13.0:25,13.0000000,47.834920000000,-4.176877000000,,Loctudy - Finistère,48166,observation-9ce878c6-f83a-469f-a4aa-3e013f68c369-5,https://biolit.fr/observations/observation-9ce878c6-f83a-469f-a4aa-3e013f68c369-5/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/P1070705.JPG,,TRUE, +N1,60400,sortie-7ec1f88d-1971-48cb-8ffa-e1eb46d32ab0,https://biolit.fr/sorties/sortie-7ec1f88d-1971-48cb-8ffa-e1eb46d32ab0/,CarpeDiem,,08/05/2017,19.0000000,20.0000000,43.325571000000,5.054890000000,,phare de la Couronne,48168,observation-7ec1f88d-1971-48cb-8ffa-e1eb46d32ab0,https://biolit.fr/observations/observation-7ec1f88d-1971-48cb-8ffa-e1eb46d32ab0/,,,,https://biolit.fr/wp-content/uploads/2023/07/Criste marine_Crithmum maritimum-scaled.jpg,,FALSE, +N1,60400,sortie-7ec1f88d-1971-48cb-8ffa-e1eb46d32ab0,https://biolit.fr/sorties/sortie-7ec1f88d-1971-48cb-8ffa-e1eb46d32ab0/,CarpeDiem,,08/05/2017,19.0000000,20.0000000,43.325571000000,5.054890000000,,phare de la Couronne,48170,observation-7ec1f88d-1971-48cb-8ffa-e1eb46d32ab0-2,https://biolit.fr/observations/observation-7ec1f88d-1971-48cb-8ffa-e1eb46d32ab0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Balai de mer_Halopteris scoparia-scaled.jpg,,FALSE, +N1,60400,sortie-7ec1f88d-1971-48cb-8ffa-e1eb46d32ab0,https://biolit.fr/sorties/sortie-7ec1f88d-1971-48cb-8ffa-e1eb46d32ab0/,CarpeDiem,,08/05/2017,19.0000000,20.0000000,43.325571000000,5.054890000000,,phare de la Couronne,48172,observation-7ec1f88d-1971-48cb-8ffa-e1eb46d32ab0-3,https://biolit.fr/observations/observation-7ec1f88d-1971-48cb-8ffa-e1eb46d32ab0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ulva compressa-scaled.jpg,,FALSE, +N1,60400,sortie-7ec1f88d-1971-48cb-8ffa-e1eb46d32ab0,https://biolit.fr/sorties/sortie-7ec1f88d-1971-48cb-8ffa-e1eb46d32ab0/,CarpeDiem,,08/05/2017,19.0000000,20.0000000,43.325571000000,5.054890000000,,phare de la Couronne,48174,observation-7ec1f88d-1971-48cb-8ffa-e1eb46d32ab0-4,https://biolit.fr/observations/observation-7ec1f88d-1971-48cb-8ffa-e1eb46d32ab0-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Esquinade_Maja squinado-scaled.jpg,,FALSE, +N1,60401,sortie-d87b8c60-bb8c-448a-ac5a-2ec3b32ec3e5,https://biolit.fr/sorties/sortie-d87b8c60-bb8c-448a-ac5a-2ec3b32ec3e5/,Nicolas,,7/26/2017 0:00,9.0000000,11.0000000,46.109318000000,-1.146157000000,,Pointe du Chay,48176,observation-d87b8c60-bb8c-448a-ac5a-2ec3b32ec3e5,https://biolit.fr/observations/observation-d87b8c60-bb8c-448a-ac5a-2ec3b32ec3e5/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170726_122109-scaled.jpg,,TRUE, +N1,60402,sortie-a7db571c-38d7-4877-adce-f783271aeb8f,https://biolit.fr/sorties/sortie-a7db571c-38d7-4877-adce-f783271aeb8f/,E.C.O.L.E de la mer,,7/27/2017 0:00,14.0000000,15.0000000,46.137537000000,-1.154585000000,,plage du roux,48178,observation-a7db571c-38d7-4877-adce-f783271aeb8f,https://biolit.fr/observations/observation-a7db571c-38d7-4877-adce-f783271aeb8f/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0257[1]-scaled.jpg,,TRUE, +N1,60403,sortie-8e8e4160-e838-4a19-9ed8-41e686caea31,https://biolit.fr/sorties/sortie-8e8e4160-e838-4a19-9ed8-41e686caea31/,LucileA,,08/01/2017,13.0000000,15.0000000,48.680023000000,-2.310751000000,,Cap Fréhel,48180,observation-8e8e4160-e838-4a19-9ed8-41e686caea31,https://biolit.fr/observations/observation-8e8e4160-e838-4a19-9ed8-41e686caea31/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6803-scaled.jpg,,TRUE, +N1,60403,sortie-8e8e4160-e838-4a19-9ed8-41e686caea31,https://biolit.fr/sorties/sortie-8e8e4160-e838-4a19-9ed8-41e686caea31/,LucileA,,08/01/2017,13.0000000,15.0000000,48.680023000000,-2.310751000000,,Cap Fréhel,48182,observation-8e8e4160-e838-4a19-9ed8-41e686caea31-2,https://biolit.fr/observations/observation-8e8e4160-e838-4a19-9ed8-41e686caea31-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6802-scaled.jpg,,TRUE, +N1,60404,sortie-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9,https://biolit.fr/sorties/sortie-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9/,Phil,,06/08/2017,12.0:55,13.000005,47.89329800000,-4.131095000000,,Gouesnarc'h - Finistère,48184,observation-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9,https://biolit.fr/observations/observation-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070476.JPG,,FALSE, +N1,60404,sortie-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9,https://biolit.fr/sorties/sortie-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9/,Phil,,06/08/2017,12.0:55,13.000005,47.89329800000,-4.131095000000,,Gouesnarc'h - Finistère,48186,observation-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9-2,https://biolit.fr/observations/observation-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070477.JPG,,FALSE, +N1,60404,sortie-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9,https://biolit.fr/sorties/sortie-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9/,Phil,,06/08/2017,12.0:55,13.000005,47.89329800000,-4.131095000000,,Gouesnarc'h - Finistère,48188,observation-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9-3,https://biolit.fr/observations/observation-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070478.JPG,,FALSE, +N1,60404,sortie-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9,https://biolit.fr/sorties/sortie-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9/,Phil,,06/08/2017,12.0:55,13.000005,47.89329800000,-4.131095000000,,Gouesnarc'h - Finistère,48190,observation-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9-4,https://biolit.fr/observations/observation-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9-4/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1070479.JPG,,TRUE, +N1,60404,sortie-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9,https://biolit.fr/sorties/sortie-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9/,Phil,,06/08/2017,12.0:55,13.000005,47.89329800000,-4.131095000000,,Gouesnarc'h - Finistère,48192,observation-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9-5,https://biolit.fr/observations/observation-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070485.JPG,,FALSE, +N1,60404,sortie-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9,https://biolit.fr/sorties/sortie-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9/,Phil,,06/08/2017,12.0:55,13.000005,47.89329800000,-4.131095000000,,Gouesnarc'h - Finistère,48194,observation-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9-6,https://biolit.fr/observations/observation-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070487.JPG,,FALSE, +N1,60404,sortie-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9,https://biolit.fr/sorties/sortie-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9/,Phil,,06/08/2017,12.0:55,13.000005,47.89329800000,-4.131095000000,,Gouesnarc'h - Finistère,48196,observation-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9-7,https://biolit.fr/observations/observation-b2455a12-fa81-48a2-92bd-2ac7fc21e3c9-7/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1070490.JPG,,TRUE, +N1,60405,sortie-c4e2941f-6cea-42fd-b93a-62d737137215,https://biolit.fr/sorties/sortie-c4e2941f-6cea-42fd-b93a-62d737137215/,Phil,,7/30/2017 0:00,16.0:25,16.0000000,48.182137000000,-4.295010000000,,Saint-Nic - Finistère,48198,observation-c4e2941f-6cea-42fd-b93a-62d737137215,https://biolit.fr/observations/observation-c4e2941f-6cea-42fd-b93a-62d737137215/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/20170730_162500.jpg,,TRUE, +N1,60405,sortie-c4e2941f-6cea-42fd-b93a-62d737137215,https://biolit.fr/sorties/sortie-c4e2941f-6cea-42fd-b93a-62d737137215/,Phil,,7/30/2017 0:00,16.0:25,16.0000000,48.182137000000,-4.295010000000,,Saint-Nic - Finistère,48200,observation-c4e2941f-6cea-42fd-b93a-62d737137215-2,https://biolit.fr/observations/observation-c4e2941f-6cea-42fd-b93a-62d737137215-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170730_162515.jpg,,FALSE, +N1,60405,sortie-c4e2941f-6cea-42fd-b93a-62d737137215,https://biolit.fr/sorties/sortie-c4e2941f-6cea-42fd-b93a-62d737137215/,Phil,,7/30/2017 0:00,16.0:25,16.0000000,48.182137000000,-4.295010000000,,Saint-Nic - Finistère,48202,observation-c4e2941f-6cea-42fd-b93a-62d737137215-3,https://biolit.fr/observations/observation-c4e2941f-6cea-42fd-b93a-62d737137215-3/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/20170730_162649.jpg,,TRUE, +N1,60406,sortie-341fae63-a08e-482b-b007-ea172978d0b6,https://biolit.fr/sorties/sortie-341fae63-a08e-482b-b007-ea172978d0b6/,Phil,,6/18/2017 0:00,12.0:15,12.0000000,47.708793000000,-3.994268000000,,Fouesnant - Finistère,48204,observation-341fae63-a08e-482b-b007-ea172978d0b6,https://biolit.fr/observations/observation-341fae63-a08e-482b-b007-ea172978d0b6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070561.JPG,,FALSE, +N1,60407,sortie-df5a75b1-e4f3-466f-8cb5-8109983f2a46,https://biolit.fr/sorties/sortie-df5a75b1-e4f3-466f-8cb5-8109983f2a46/,Phil,,4/14/2017 0:00,12.0000000,12.0000000,48.848383000000,-3.013367000000,,Île-de-Bréhat - Côtes-d'Armor,48206,observation-df5a75b1-e4f3-466f-8cb5-8109983f2a46,https://biolit.fr/observations/observation-df5a75b1-e4f3-466f-8cb5-8109983f2a46/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060989.JPG,,FALSE, +N1,60407,sortie-df5a75b1-e4f3-466f-8cb5-8109983f2a46,https://biolit.fr/sorties/sortie-df5a75b1-e4f3-466f-8cb5-8109983f2a46/,Phil,,4/14/2017 0:00,12.0000000,12.0000000,48.848383000000,-3.013367000000,,Île-de-Bréhat - Côtes-d'Armor,48208,observation-df5a75b1-e4f3-466f-8cb5-8109983f2a46-2,https://biolit.fr/observations/observation-df5a75b1-e4f3-466f-8cb5-8109983f2a46-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1060988.JPG,,TRUE, +N1,60407,sortie-df5a75b1-e4f3-466f-8cb5-8109983f2a46,https://biolit.fr/sorties/sortie-df5a75b1-e4f3-466f-8cb5-8109983f2a46/,Phil,,4/14/2017 0:00,12.0000000,12.0000000,48.848383000000,-3.013367000000,,Île-de-Bréhat - Côtes-d'Armor,48210,observation-df5a75b1-e4f3-466f-8cb5-8109983f2a46-3,https://biolit.fr/observations/observation-df5a75b1-e4f3-466f-8cb5-8109983f2a46-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060994.JPG,,TRUE, +N1,60407,sortie-df5a75b1-e4f3-466f-8cb5-8109983f2a46,https://biolit.fr/sorties/sortie-df5a75b1-e4f3-466f-8cb5-8109983f2a46/,Phil,,4/14/2017 0:00,12.0000000,12.0000000,48.848383000000,-3.013367000000,,Île-de-Bréhat - Côtes-d'Armor,48212,observation-df5a75b1-e4f3-466f-8cb5-8109983f2a46-4,https://biolit.fr/observations/observation-df5a75b1-e4f3-466f-8cb5-8109983f2a46-4/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060995.JPG,,TRUE, +N1,60407,sortie-df5a75b1-e4f3-466f-8cb5-8109983f2a46,https://biolit.fr/sorties/sortie-df5a75b1-e4f3-466f-8cb5-8109983f2a46/,Phil,,4/14/2017 0:00,12.0000000,12.0000000,48.848383000000,-3.013367000000,,Île-de-Bréhat - Côtes-d'Armor,48214,observation-df5a75b1-e4f3-466f-8cb5-8109983f2a46-5,https://biolit.fr/observations/observation-df5a75b1-e4f3-466f-8cb5-8109983f2a46-5/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1070001.JPG,,TRUE, +N1,60408,sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2,https://biolit.fr/sorties/sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2/,carmin89,,7/21/2017 0:00,10.0000000,11.0000000,43.106869000000,5.980031000000,,Anse Magaud,48216,observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2,https://biolit.fr/observations/observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2/,,,,https://biolit.fr/wp-content/uploads/2023/07/acétabulaire.JPG,,FALSE, +N1,60408,sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2,https://biolit.fr/sorties/sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2/,carmin89,,7/21/2017 0:00,10.0000000,11.0000000,43.106869000000,5.980031000000,,Anse Magaud,48217,observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-2,https://biolit.fr/observations/observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-2/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/Arche_de_noe.jpg,,TRUE, +N1,60408,sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2,https://biolit.fr/sorties/sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2/,carmin89,,7/21/2017 0:00,10.0000000,11.0000000,43.106869000000,5.980031000000,,Anse Magaud,48219,observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-3,https://biolit.fr/observations/observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-3/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/codium en boule-scaled.jpg,,TRUE, +N1,60408,sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2,https://biolit.fr/sorties/sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2/,carmin89,,7/21/2017 0:00,10.0000000,11.0000000,43.106869000000,5.980031000000,,Anse Magaud,48220,observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-4,https://biolit.fr/observations/observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Criste marine-scaled.jpg,,FALSE, +N1,60408,sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2,https://biolit.fr/sorties/sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2/,carmin89,,7/21/2017 0:00,10.0000000,11.0000000,43.106869000000,5.980031000000,,Anse Magaud,48221,observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-5,https://biolit.fr/observations/observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-5/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule.jpg,,TRUE, +N1,60408,sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2,https://biolit.fr/sorties/sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2/,carmin89,,7/21/2017 0:00,10.0000000,11.0000000,43.106869000000,5.980031000000,,Anse Magaud,48223,observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-6,https://biolit.fr/observations/observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-6/,Pinna nobilis,Grande nacre,,https://biolit.fr/wp-content/uploads/2023/07/Grande_nacre.jpg,,TRUE, +N1,60408,sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2,https://biolit.fr/sorties/sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2/,carmin89,,7/21/2017 0:00,10.0000000,11.0000000,43.106869000000,5.980031000000,,Anse Magaud,48225,observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-7,https://biolit.fr/observations/observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Liagore.jpg,,FALSE, +N1,60408,sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2,https://biolit.fr/sorties/sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2/,carmin89,,7/21/2017 0:00,10.0000000,11.0000000,43.106869000000,5.980031000000,,Anse Magaud,48227,observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-8,https://biolit.fr/observations/observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Padine (2).jpg,,FALSE, +N1,60408,sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2,https://biolit.fr/sorties/sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2/,carmin89,,7/21/2017 0:00,10.0000000,11.0000000,43.106869000000,5.980031000000,,Anse Magaud,48229,observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-9,https://biolit.fr/observations/observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/padine.JPG,,FALSE, +N1,60408,sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2,https://biolit.fr/sorties/sortie-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2/,carmin89,,7/21/2017 0:00,10.0000000,11.0000000,43.106869000000,5.980031000000,,Anse Magaud,48230,observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-10,https://biolit.fr/observations/observation-eb65d2d2-24cb-4bbb-b469-b356d5aeb1e2-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pelote-posidonie.jpg,,FALSE, +N1,60409,sortie-c09fbfa0-4a29-4979-9e07-243d5a6690e1,https://biolit.fr/sorties/sortie-c09fbfa0-4a29-4979-9e07-243d5a6690e1/,Nicolas,,7/26/2017 0:00,8.0000000,10.0000000,46.053219000000,-1.090324000000,,Les boucholeurs,48232,observation-c09fbfa0-4a29-4979-9e07-243d5a6690e1,https://biolit.fr/observations/observation-c09fbfa0-4a29-4979-9e07-243d5a6690e1/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170725_110554-scaled.jpg,,TRUE, +N1,60409,sortie-c09fbfa0-4a29-4979-9e07-243d5a6690e1,https://biolit.fr/sorties/sortie-c09fbfa0-4a29-4979-9e07-243d5a6690e1/,Nicolas,,7/26/2017 0:00,8.0000000,10.0000000,46.053219000000,-1.090324000000,,Les boucholeurs,48234,observation-c09fbfa0-4a29-4979-9e07-243d5a6690e1-2,https://biolit.fr/observations/observation-c09fbfa0-4a29-4979-9e07-243d5a6690e1-2/,Idotea balthica,Idotée de la Baltique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170725_141131-scaled.jpg,,TRUE, +N1,60409,sortie-c09fbfa0-4a29-4979-9e07-243d5a6690e1,https://biolit.fr/sorties/sortie-c09fbfa0-4a29-4979-9e07-243d5a6690e1/,Nicolas,,7/26/2017 0:00,8.0000000,10.0000000,46.053219000000,-1.090324000000,,Les boucholeurs,48236,observation-c09fbfa0-4a29-4979-9e07-243d5a6690e1-3,https://biolit.fr/observations/observation-c09fbfa0-4a29-4979-9e07-243d5a6690e1-3/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170725_122002-scaled.jpg,,TRUE, +N1,60409,sortie-c09fbfa0-4a29-4979-9e07-243d5a6690e1,https://biolit.fr/sorties/sortie-c09fbfa0-4a29-4979-9e07-243d5a6690e1/,Nicolas,,7/26/2017 0:00,8.0000000,10.0000000,46.053219000000,-1.090324000000,,Les boucholeurs,48238,observation-c09fbfa0-4a29-4979-9e07-243d5a6690e1-4,https://biolit.fr/observations/observation-c09fbfa0-4a29-4979-9e07-243d5a6690e1-4/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170725_122012-scaled.jpg,,TRUE, +N1,60410,sortie-78800f72-539b-4d96-9d16-416c4520ab28,https://biolit.fr/sorties/sortie-78800f72-539b-4d96-9d16-416c4520ab28/,Phil,,6/18/2017 0:00,12.000005,12.0000000,47.709223000000,-3.994622000000,,Fouesnant - Finistère,48240,observation-78800f72-539b-4d96-9d16-416c4520ab28,https://biolit.fr/observations/observation-78800f72-539b-4d96-9d16-416c4520ab28/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1070550_0.JPG,,TRUE, +N1,60410,sortie-78800f72-539b-4d96-9d16-416c4520ab28,https://biolit.fr/sorties/sortie-78800f72-539b-4d96-9d16-416c4520ab28/,Phil,,6/18/2017 0:00,12.000005,12.0000000,47.709223000000,-3.994622000000,,Fouesnant - Finistère,48242,observation-78800f72-539b-4d96-9d16-416c4520ab28-2,https://biolit.fr/observations/observation-78800f72-539b-4d96-9d16-416c4520ab28-2/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1070547_0.JPG,,TRUE, +N1,60410,sortie-78800f72-539b-4d96-9d16-416c4520ab28,https://biolit.fr/sorties/sortie-78800f72-539b-4d96-9d16-416c4520ab28/,Phil,,6/18/2017 0:00,12.000005,12.0000000,47.709223000000,-3.994622000000,,Fouesnant - Finistère,48244,observation-78800f72-539b-4d96-9d16-416c4520ab28-3,https://biolit.fr/observations/observation-78800f72-539b-4d96-9d16-416c4520ab28-3/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1070546_0.JPG,,TRUE, +N1,60410,sortie-78800f72-539b-4d96-9d16-416c4520ab28,https://biolit.fr/sorties/sortie-78800f72-539b-4d96-9d16-416c4520ab28/,Phil,,6/18/2017 0:00,12.000005,12.0000000,47.709223000000,-3.994622000000,,Fouesnant - Finistère,48246,observation-78800f72-539b-4d96-9d16-416c4520ab28-4,https://biolit.fr/observations/observation-78800f72-539b-4d96-9d16-416c4520ab28-4/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1070545_0.JPG,,TRUE, +N1,60410,sortie-78800f72-539b-4d96-9d16-416c4520ab28,https://biolit.fr/sorties/sortie-78800f72-539b-4d96-9d16-416c4520ab28/,Phil,,6/18/2017 0:00,12.000005,12.0000000,47.709223000000,-3.994622000000,,Fouesnant - Finistère,48248,observation-78800f72-539b-4d96-9d16-416c4520ab28-5,https://biolit.fr/observations/observation-78800f72-539b-4d96-9d16-416c4520ab28-5/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1070542.JPG,,TRUE, +N1,60410,sortie-78800f72-539b-4d96-9d16-416c4520ab28,https://biolit.fr/sorties/sortie-78800f72-539b-4d96-9d16-416c4520ab28/,Phil,,6/18/2017 0:00,12.000005,12.0000000,47.709223000000,-3.994622000000,,Fouesnant - Finistère,48250,observation-78800f72-539b-4d96-9d16-416c4520ab28-6,https://biolit.fr/observations/observation-78800f72-539b-4d96-9d16-416c4520ab28-6/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1070540.JPG,,TRUE, +N1,60411,sortie-ebafa79c-8786-4415-8b14-720814f1a00b,https://biolit.fr/sorties/sortie-ebafa79c-8786-4415-8b14-720814f1a00b/,Nicolas,,7/24/2017 0:00,15.0000000,17.0000000,46.20294900000,-1.207923000000,,Pointe du plomb,48252,observation-ebafa79c-8786-4415-8b14-720814f1a00b,https://biolit.fr/observations/observation-ebafa79c-8786-4415-8b14-720814f1a00b/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170724_113321-scaled.jpg,,TRUE, +N1,60412,sortie-f3781c19-b666-4d8b-96d4-d1c15428c848,https://biolit.fr/sorties/sortie-f3781c19-b666-4d8b-96d4-d1c15428c848/,Agnèspms,,7/24/2017 0:00,14.0000000,16.0000000,42.790959000000,9.344156000000,,Nonza plage de la Marine,48254,observation-f3781c19-b666-4d8b-96d4-d1c15428c848,https://biolit.fr/observations/observation-f3781c19-b666-4d8b-96d4-d1c15428c848/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_8252-scaled.jpg,,TRUE, +N1,60412,sortie-f3781c19-b666-4d8b-96d4-d1c15428c848,https://biolit.fr/sorties/sortie-f3781c19-b666-4d8b-96d4-d1c15428c848/,Agnèspms,,7/24/2017 0:00,14.0000000,16.0000000,42.790959000000,9.344156000000,,Nonza plage de la Marine,48256,observation-f3781c19-b666-4d8b-96d4-d1c15428c848-2,https://biolit.fr/observations/observation-f3781c19-b666-4d8b-96d4-d1c15428c848-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_8253-scaled.jpg,,TRUE, +N1,60413,sortie-b3cfe4ea-e598-4ad9-aed9-0a59df492e51,https://biolit.fr/sorties/sortie-b3cfe4ea-e598-4ad9-aed9-0a59df492e51/,Phil,,06/08/2017,12.0000000,13.0000000,47.893949000000,-4.131383000000,,Gouesnarc'h - Finistère,48258,observation-b3cfe4ea-e598-4ad9-aed9-0a59df492e51,https://biolit.fr/observations/observation-b3cfe4ea-e598-4ad9-aed9-0a59df492e51/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070472.JPG,,FALSE, +N1,60413,sortie-b3cfe4ea-e598-4ad9-aed9-0a59df492e51,https://biolit.fr/sorties/sortie-b3cfe4ea-e598-4ad9-aed9-0a59df492e51/,Phil,,06/08/2017,12.0000000,13.0000000,47.893949000000,-4.131383000000,,Gouesnarc'h - Finistère,48260,observation-b3cfe4ea-e598-4ad9-aed9-0a59df492e51-2,https://biolit.fr/observations/observation-b3cfe4ea-e598-4ad9-aed9-0a59df492e51-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070471.JPG,,FALSE, +N1,60413,sortie-b3cfe4ea-e598-4ad9-aed9-0a59df492e51,https://biolit.fr/sorties/sortie-b3cfe4ea-e598-4ad9-aed9-0a59df492e51/,Phil,,06/08/2017,12.0000000,13.0000000,47.893949000000,-4.131383000000,,Gouesnarc'h - Finistère,48262,observation-b3cfe4ea-e598-4ad9-aed9-0a59df492e51-3,https://biolit.fr/observations/observation-b3cfe4ea-e598-4ad9-aed9-0a59df492e51-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1070473.JPG,,TRUE, +N1,60413,sortie-b3cfe4ea-e598-4ad9-aed9-0a59df492e51,https://biolit.fr/sorties/sortie-b3cfe4ea-e598-4ad9-aed9-0a59df492e51/,Phil,,06/08/2017,12.0000000,13.0000000,47.893949000000,-4.131383000000,,Gouesnarc'h - Finistère,48264,observation-b3cfe4ea-e598-4ad9-aed9-0a59df492e51-4,https://biolit.fr/observations/observation-b3cfe4ea-e598-4ad9-aed9-0a59df492e51-4/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070475.JPG,,TRUE, +N1,60414,sortie-0894708a-b854-417c-851c-a9211b38ef35,https://biolit.fr/sorties/sortie-0894708a-b854-417c-851c-a9211b38ef35/,ViolaineJ,,07/05/2017,17.0:15,18.0000000,43.452419000000,3.811584000000,,"Plage Saint Eugène, Frontignan",48266,observation-0894708a-b854-417c-851c-a9211b38ef35,https://biolit.fr/observations/observation-0894708a-b854-417c-851c-a9211b38ef35/,,,,https://biolit.fr/wp-content/uploads/2023/07/CAM02550.jpg,,FALSE, +N1,60414,sortie-0894708a-b854-417c-851c-a9211b38ef35,https://biolit.fr/sorties/sortie-0894708a-b854-417c-851c-a9211b38ef35/,ViolaineJ,,07/05/2017,17.0:15,18.0000000,43.452419000000,3.811584000000,,"Plage Saint Eugène, Frontignan",48268,observation-0894708a-b854-417c-851c-a9211b38ef35-2,https://biolit.fr/observations/observation-0894708a-b854-417c-851c-a9211b38ef35-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/CAM02555.jpg,,FALSE, +N1,60414,sortie-0894708a-b854-417c-851c-a9211b38ef35,https://biolit.fr/sorties/sortie-0894708a-b854-417c-851c-a9211b38ef35/,ViolaineJ,,07/05/2017,17.0:15,18.0000000,43.452419000000,3.811584000000,,"Plage Saint Eugène, Frontignan",48270,observation-0894708a-b854-417c-851c-a9211b38ef35-3,https://biolit.fr/observations/observation-0894708a-b854-417c-851c-a9211b38ef35-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/CAM02556.jpg,,FALSE, +N1,60415,sortie-deb0988b-bcd1-429a-8097-a6350603f1c4,https://biolit.fr/sorties/sortie-deb0988b-bcd1-429a-8097-a6350603f1c4/,Phil,,4/14/2017 0:00,12.0:15,12.0000000,48.847536000000,-3.012404000000,,Île-de-Bréhat - Côtes-d'Armor,48272,observation-deb0988b-bcd1-429a-8097-a6350603f1c4,https://biolit.fr/observations/observation-deb0988b-bcd1-429a-8097-a6350603f1c4/,Tadorna tadorna,Tadorne de Belon,,https://biolit.fr/wp-content/uploads/2023/07/P1060982.JPG,,TRUE, +N1,60415,sortie-deb0988b-bcd1-429a-8097-a6350603f1c4,https://biolit.fr/sorties/sortie-deb0988b-bcd1-429a-8097-a6350603f1c4/,Phil,,4/14/2017 0:00,12.0:15,12.0000000,48.847536000000,-3.012404000000,,Île-de-Bréhat - Côtes-d'Armor,48274,observation-deb0988b-bcd1-429a-8097-a6350603f1c4-2,https://biolit.fr/observations/observation-deb0988b-bcd1-429a-8097-a6350603f1c4-2/,Tadorna tadorna,Tadorne de Belon,,https://biolit.fr/wp-content/uploads/2023/07/P1060975.JPG,,TRUE, +N1,60415,sortie-deb0988b-bcd1-429a-8097-a6350603f1c4,https://biolit.fr/sorties/sortie-deb0988b-bcd1-429a-8097-a6350603f1c4/,Phil,,4/14/2017 0:00,12.0:15,12.0000000,48.847536000000,-3.012404000000,,Île-de-Bréhat - Côtes-d'Armor,48276,observation-deb0988b-bcd1-429a-8097-a6350603f1c4-3,https://biolit.fr/observations/observation-deb0988b-bcd1-429a-8097-a6350603f1c4-3/,Tadorna tadorna,Tadorne de Belon,,https://biolit.fr/wp-content/uploads/2023/07/P1060971.JPG,,TRUE, +N1,60415,sortie-deb0988b-bcd1-429a-8097-a6350603f1c4,https://biolit.fr/sorties/sortie-deb0988b-bcd1-429a-8097-a6350603f1c4/,Phil,,4/14/2017 0:00,12.0:15,12.0000000,48.847536000000,-3.012404000000,,Île-de-Bréhat - Côtes-d'Armor,48278,observation-deb0988b-bcd1-429a-8097-a6350603f1c4-4,https://biolit.fr/observations/observation-deb0988b-bcd1-429a-8097-a6350603f1c4-4/,Tadorna tadorna,Tadorne de Belon,,https://biolit.fr/wp-content/uploads/2023/07/P1060983.JPG,,TRUE, +N1,60416,sortie-145a5dbf-e739-4e03-a692-ec5fabc10cbf,https://biolit.fr/sorties/sortie-145a5dbf-e739-4e03-a692-ec5fabc10cbf/,Phil,,06/08/2017,12.0:35,12.0:45,47.894329000000,-4.131469000000,,Gouesnarc'h - Finistère,48280,observation-145a5dbf-e739-4e03-a692-ec5fabc10cbf,https://biolit.fr/observations/observation-145a5dbf-e739-4e03-a692-ec5fabc10cbf/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070465_2.JPG,,FALSE, +N1,60416,sortie-145a5dbf-e739-4e03-a692-ec5fabc10cbf,https://biolit.fr/sorties/sortie-145a5dbf-e739-4e03-a692-ec5fabc10cbf/,Phil,,06/08/2017,12.0:35,12.0:45,47.894329000000,-4.131469000000,,Gouesnarc'h - Finistère,48282,observation-145a5dbf-e739-4e03-a692-ec5fabc10cbf-2,https://biolit.fr/observations/observation-145a5dbf-e739-4e03-a692-ec5fabc10cbf-2/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1070463.JPG,,TRUE, +N1,60416,sortie-145a5dbf-e739-4e03-a692-ec5fabc10cbf,https://biolit.fr/sorties/sortie-145a5dbf-e739-4e03-a692-ec5fabc10cbf/,Phil,,06/08/2017,12.0:35,12.0:45,47.894329000000,-4.131469000000,,Gouesnarc'h - Finistère,48284,observation-145a5dbf-e739-4e03-a692-ec5fabc10cbf-3,https://biolit.fr/observations/observation-145a5dbf-e739-4e03-a692-ec5fabc10cbf-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070466.JPG,,FALSE, +N1,60416,sortie-145a5dbf-e739-4e03-a692-ec5fabc10cbf,https://biolit.fr/sorties/sortie-145a5dbf-e739-4e03-a692-ec5fabc10cbf/,Phil,,06/08/2017,12.0:35,12.0:45,47.894329000000,-4.131469000000,,Gouesnarc'h - Finistère,48286,observation-145a5dbf-e739-4e03-a692-ec5fabc10cbf-4,https://biolit.fr/observations/observation-145a5dbf-e739-4e03-a692-ec5fabc10cbf-4/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1070460.JPG,,TRUE, +N1,60416,sortie-145a5dbf-e739-4e03-a692-ec5fabc10cbf,https://biolit.fr/sorties/sortie-145a5dbf-e739-4e03-a692-ec5fabc10cbf/,Phil,,06/08/2017,12.0:35,12.0:45,47.894329000000,-4.131469000000,,Gouesnarc'h - Finistère,48288,observation-145a5dbf-e739-4e03-a692-ec5fabc10cbf-5,https://biolit.fr/observations/observation-145a5dbf-e739-4e03-a692-ec5fabc10cbf-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070459.JPG,,FALSE, +N1,60417,sortie-9b1e0551-7d3d-41e6-b63b-436771b8e4d8,https://biolit.fr/sorties/sortie-9b1e0551-7d3d-41e6-b63b-436771b8e4d8/,Phil,,6/18/2017 0:00,12.000005,12.0000000,47.708726000000,-3.995442000000,,Fouesnant - Finistère,48290,observation-9b1e0551-7d3d-41e6-b63b-436771b8e4d8,https://biolit.fr/observations/observation-9b1e0551-7d3d-41e6-b63b-436771b8e4d8/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1070529.JPG,,TRUE, +N1,60417,sortie-9b1e0551-7d3d-41e6-b63b-436771b8e4d8,https://biolit.fr/sorties/sortie-9b1e0551-7d3d-41e6-b63b-436771b8e4d8/,Phil,,6/18/2017 0:00,12.000005,12.0000000,47.708726000000,-3.995442000000,,Fouesnant - Finistère,48292,observation-9b1e0551-7d3d-41e6-b63b-436771b8e4d8-2,https://biolit.fr/observations/observation-9b1e0551-7d3d-41e6-b63b-436771b8e4d8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070528.JPG,,FALSE, +N1,60417,sortie-9b1e0551-7d3d-41e6-b63b-436771b8e4d8,https://biolit.fr/sorties/sortie-9b1e0551-7d3d-41e6-b63b-436771b8e4d8/,Phil,,6/18/2017 0:00,12.000005,12.0000000,47.708726000000,-3.995442000000,,Fouesnant - Finistère,48294,observation-9b1e0551-7d3d-41e6-b63b-436771b8e4d8-3,https://biolit.fr/observations/observation-9b1e0551-7d3d-41e6-b63b-436771b8e4d8-3/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1070531.JPG,,TRUE, +N1,60417,sortie-9b1e0551-7d3d-41e6-b63b-436771b8e4d8,https://biolit.fr/sorties/sortie-9b1e0551-7d3d-41e6-b63b-436771b8e4d8/,Phil,,6/18/2017 0:00,12.000005,12.0000000,47.708726000000,-3.995442000000,,Fouesnant - Finistère,48296,observation-9b1e0551-7d3d-41e6-b63b-436771b8e4d8-4,https://biolit.fr/observations/observation-9b1e0551-7d3d-41e6-b63b-436771b8e4d8-4/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1070533.JPG,,TRUE, +N1,60417,sortie-9b1e0551-7d3d-41e6-b63b-436771b8e4d8,https://biolit.fr/sorties/sortie-9b1e0551-7d3d-41e6-b63b-436771b8e4d8/,Phil,,6/18/2017 0:00,12.000005,12.0000000,47.708726000000,-3.995442000000,,Fouesnant - Finistère,48298,observation-9b1e0551-7d3d-41e6-b63b-436771b8e4d8-5,https://biolit.fr/observations/observation-9b1e0551-7d3d-41e6-b63b-436771b8e4d8-5/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1070534.JPG,,TRUE, +N1,60418,sortie-45677ee8-dee7-4ecc-8269-6f318904a822,https://biolit.fr/sorties/sortie-45677ee8-dee7-4ecc-8269-6f318904a822/,Marine,,7/13/2017 0:00,14.0000000,16.0000000,46.137739000000,-1.158742000000,,Plage de Roux,48300,observation-45677ee8-dee7-4ecc-8269-6f318904a822,https://biolit.fr/observations/observation-45677ee8-dee7-4ecc-8269-6f318904a822/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_2823-rotated.jpg,,TRUE, +N1,60418,sortie-45677ee8-dee7-4ecc-8269-6f318904a822,https://biolit.fr/sorties/sortie-45677ee8-dee7-4ecc-8269-6f318904a822/,Marine,,7/13/2017 0:00,14.0000000,16.0000000,46.137739000000,-1.158742000000,,Plage de Roux,48302,observation-45677ee8-dee7-4ecc-8269-6f318904a822-2,https://biolit.fr/observations/observation-45677ee8-dee7-4ecc-8269-6f318904a822-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2826-rotated.jpg,,FALSE, +N1,60418,sortie-45677ee8-dee7-4ecc-8269-6f318904a822,https://biolit.fr/sorties/sortie-45677ee8-dee7-4ecc-8269-6f318904a822/,Marine,,7/13/2017 0:00,14.0000000,16.0000000,46.137739000000,-1.158742000000,,Plage de Roux,48304,observation-45677ee8-dee7-4ecc-8269-6f318904a822-3,https://biolit.fr/observations/observation-45677ee8-dee7-4ecc-8269-6f318904a822-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2827-rotated.jpg,,FALSE, +N1,60418,sortie-45677ee8-dee7-4ecc-8269-6f318904a822,https://biolit.fr/sorties/sortie-45677ee8-dee7-4ecc-8269-6f318904a822/,Marine,,7/13/2017 0:00,14.0000000,16.0000000,46.137739000000,-1.158742000000,,Plage de Roux,48306,observation-45677ee8-dee7-4ecc-8269-6f318904a822-4,https://biolit.fr/observations/observation-45677ee8-dee7-4ecc-8269-6f318904a822-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2833-rotated.jpg,,FALSE, +N1,60418,sortie-45677ee8-dee7-4ecc-8269-6f318904a822,https://biolit.fr/sorties/sortie-45677ee8-dee7-4ecc-8269-6f318904a822/,Marine,,7/13/2017 0:00,14.0000000,16.0000000,46.137739000000,-1.158742000000,,Plage de Roux,48308,observation-45677ee8-dee7-4ecc-8269-6f318904a822-5,https://biolit.fr/observations/observation-45677ee8-dee7-4ecc-8269-6f318904a822-5/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2835-rotated.jpg,,TRUE, +N1,60418,sortie-45677ee8-dee7-4ecc-8269-6f318904a822,https://biolit.fr/sorties/sortie-45677ee8-dee7-4ecc-8269-6f318904a822/,Marine,,7/13/2017 0:00,14.0000000,16.0000000,46.137739000000,-1.158742000000,,Plage de Roux,48310,observation-45677ee8-dee7-4ecc-8269-6f318904a822-6,https://biolit.fr/observations/observation-45677ee8-dee7-4ecc-8269-6f318904a822-6/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2834-rotated.jpg,,TRUE, +N1,60418,sortie-45677ee8-dee7-4ecc-8269-6f318904a822,https://biolit.fr/sorties/sortie-45677ee8-dee7-4ecc-8269-6f318904a822/,Marine,,7/13/2017 0:00,14.0000000,16.0000000,46.137739000000,-1.158742000000,,Plage de Roux,48312,observation-45677ee8-dee7-4ecc-8269-6f318904a822-7,https://biolit.fr/observations/observation-45677ee8-dee7-4ecc-8269-6f318904a822-7/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2843-rotated.jpg,,TRUE, +N1,60418,sortie-45677ee8-dee7-4ecc-8269-6f318904a822,https://biolit.fr/sorties/sortie-45677ee8-dee7-4ecc-8269-6f318904a822/,Marine,,7/13/2017 0:00,14.0000000,16.0000000,46.137739000000,-1.158742000000,,Plage de Roux,48314,observation-45677ee8-dee7-4ecc-8269-6f318904a822-8,https://biolit.fr/observations/observation-45677ee8-dee7-4ecc-8269-6f318904a822-8/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2844-rotated.jpg,,TRUE, +N1,60419,sortie-23053278-1bc2-472e-9592-224c4d5ab8bc,https://biolit.fr/sorties/sortie-23053278-1bc2-472e-9592-224c4d5ab8bc/,LucileA,,7/13/2017 0:00,14.0000000,15.0000000,46.13629100000,-1.153895000000,,Plage du Roux,48316,observation-23053278-1bc2-472e-9592-224c4d5ab8bc,https://biolit.fr/observations/observation-23053278-1bc2-472e-9592-224c4d5ab8bc/,Aphrodita aculeata,Aphrodite,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6723-scaled.jpg,,TRUE, +N1,60419,sortie-23053278-1bc2-472e-9592-224c4d5ab8bc,https://biolit.fr/sorties/sortie-23053278-1bc2-472e-9592-224c4d5ab8bc/,LucileA,,7/13/2017 0:00,14.0000000,15.0000000,46.13629100000,-1.153895000000,,Plage du Roux,48318,observation-23053278-1bc2-472e-9592-224c4d5ab8bc-2,https://biolit.fr/observations/observation-23053278-1bc2-472e-9592-224c4d5ab8bc-2/,Aphrodita aculeata,Aphrodite,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0501-scaled.jpg,,TRUE, +N1,60419,sortie-23053278-1bc2-472e-9592-224c4d5ab8bc,https://biolit.fr/sorties/sortie-23053278-1bc2-472e-9592-224c4d5ab8bc/,LucileA,,7/13/2017 0:00,14.0000000,15.0000000,46.13629100000,-1.153895000000,,Plage du Roux,48320,observation-23053278-1bc2-472e-9592-224c4d5ab8bc-3,https://biolit.fr/observations/observation-23053278-1bc2-472e-9592-224c4d5ab8bc-3/,Aphrodita aculeata,Aphrodite,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0502-scaled.jpg,,TRUE, +N1,60419,sortie-23053278-1bc2-472e-9592-224c4d5ab8bc,https://biolit.fr/sorties/sortie-23053278-1bc2-472e-9592-224c4d5ab8bc/,LucileA,,7/13/2017 0:00,14.0000000,15.0000000,46.13629100000,-1.153895000000,,Plage du Roux,48322,observation-23053278-1bc2-472e-9592-224c4d5ab8bc-4,https://biolit.fr/observations/observation-23053278-1bc2-472e-9592-224c4d5ab8bc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0508-scaled.jpg,,FALSE, +N1,60419,sortie-23053278-1bc2-472e-9592-224c4d5ab8bc,https://biolit.fr/sorties/sortie-23053278-1bc2-472e-9592-224c4d5ab8bc/,LucileA,,7/13/2017 0:00,14.0000000,15.0000000,46.13629100000,-1.153895000000,,Plage du Roux,48324,observation-23053278-1bc2-472e-9592-224c4d5ab8bc-5,https://biolit.fr/observations/observation-23053278-1bc2-472e-9592-224c4d5ab8bc-5/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0497-scaled.jpg,,TRUE, +N1,60419,sortie-23053278-1bc2-472e-9592-224c4d5ab8bc,https://biolit.fr/sorties/sortie-23053278-1bc2-472e-9592-224c4d5ab8bc/,LucileA,,7/13/2017 0:00,14.0000000,15.0000000,46.13629100000,-1.153895000000,,Plage du Roux,48326,observation-23053278-1bc2-472e-9592-224c4d5ab8bc-6,https://biolit.fr/observations/observation-23053278-1bc2-472e-9592-224c4d5ab8bc-6/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0498-scaled.jpg,,TRUE, +N1,60419,sortie-23053278-1bc2-472e-9592-224c4d5ab8bc,https://biolit.fr/sorties/sortie-23053278-1bc2-472e-9592-224c4d5ab8bc/,LucileA,,7/13/2017 0:00,14.0000000,15.0000000,46.13629100000,-1.153895000000,,Plage du Roux,48328,observation-23053278-1bc2-472e-9592-224c4d5ab8bc-7,https://biolit.fr/observations/observation-23053278-1bc2-472e-9592-224c4d5ab8bc-7/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_0509-scaled.jpg,,TRUE, +N1,60419,sortie-23053278-1bc2-472e-9592-224c4d5ab8bc,https://biolit.fr/sorties/sortie-23053278-1bc2-472e-9592-224c4d5ab8bc/,LucileA,,7/13/2017 0:00,14.0000000,15.0000000,46.13629100000,-1.153895000000,,Plage du Roux,48330,observation-23053278-1bc2-472e-9592-224c4d5ab8bc-8,https://biolit.fr/observations/observation-23053278-1bc2-472e-9592-224c4d5ab8bc-8/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0513-scaled.jpg,,TRUE, +N1,60419,sortie-23053278-1bc2-472e-9592-224c4d5ab8bc,https://biolit.fr/sorties/sortie-23053278-1bc2-472e-9592-224c4d5ab8bc/,LucileA,,7/13/2017 0:00,14.0000000,15.0000000,46.13629100000,-1.153895000000,,Plage du Roux,48332,observation-23053278-1bc2-472e-9592-224c4d5ab8bc-9,https://biolit.fr/observations/observation-23053278-1bc2-472e-9592-224c4d5ab8bc-9/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0516-scaled.jpg,,TRUE, +N1,60420,sortie-98bce18c-ba5e-4a80-95e7-381c0b5cba8f,https://biolit.fr/sorties/sortie-98bce18c-ba5e-4a80-95e7-381c0b5cba8f/,Phil,,07/08/2017,10.0:25,10.0000000,47.882179000000,-3.933614000000,,Concarneau - Finistère,48334,observation-98bce18c-ba5e-4a80-95e7-381c0b5cba8f,https://biolit.fr/observations/observation-98bce18c-ba5e-4a80-95e7-381c0b5cba8f/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20170708_102610.jpg,,TRUE, +N1,60420,sortie-98bce18c-ba5e-4a80-95e7-381c0b5cba8f,https://biolit.fr/sorties/sortie-98bce18c-ba5e-4a80-95e7-381c0b5cba8f/,Phil,,07/08/2017,10.0:25,10.0000000,47.882179000000,-3.933614000000,,Concarneau - Finistère,48336,observation-98bce18c-ba5e-4a80-95e7-381c0b5cba8f-2,https://biolit.fr/observations/observation-98bce18c-ba5e-4a80-95e7-381c0b5cba8f-2/,Phymatolithon calcareum,Maërl,,https://biolit.fr/wp-content/uploads/2023/07/20170708_102521.jpg,,TRUE, +N1,60420,sortie-98bce18c-ba5e-4a80-95e7-381c0b5cba8f,https://biolit.fr/sorties/sortie-98bce18c-ba5e-4a80-95e7-381c0b5cba8f/,Phil,,07/08/2017,10.0:25,10.0000000,47.882179000000,-3.933614000000,,Concarneau - Finistère,48338,observation-98bce18c-ba5e-4a80-95e7-381c0b5cba8f-3,https://biolit.fr/observations/observation-98bce18c-ba5e-4a80-95e7-381c0b5cba8f-3/,Lutraria lutraria,Lutraire elliptique,,https://biolit.fr/wp-content/uploads/2023/07/20170708_102548.jpg,,TRUE, +N1,60420,sortie-98bce18c-ba5e-4a80-95e7-381c0b5cba8f,https://biolit.fr/sorties/sortie-98bce18c-ba5e-4a80-95e7-381c0b5cba8f/,Phil,,07/08/2017,10.0:25,10.0000000,47.882179000000,-3.933614000000,,Concarneau - Finistère,48340,observation-98bce18c-ba5e-4a80-95e7-381c0b5cba8f-4,https://biolit.fr/observations/observation-98bce18c-ba5e-4a80-95e7-381c0b5cba8f-4/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/20170708_102656.jpg,,TRUE, +N1,60421,sortie-79179335-32dc-493f-8f2e-c7d459779292,https://biolit.fr/sorties/sortie-79179335-32dc-493f-8f2e-c7d459779292/,NVanzu,,07/12/2017,10.0000000,10.0:15,43.214790000000,5.342952000000,,Anse de la maronaise,48342,observation-79179335-32dc-493f-8f2e-c7d459779292,https://biolit.fr/observations/observation-79179335-32dc-493f-8f2e-c7d459779292/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0742-scaled.jpg,,FALSE, +N1,60421,sortie-79179335-32dc-493f-8f2e-c7d459779292,https://biolit.fr/sorties/sortie-79179335-32dc-493f-8f2e-c7d459779292/,NVanzu,,07/12/2017,10.0000000,10.0:15,43.214790000000,5.342952000000,,Anse de la maronaise,48344,observation-79179335-32dc-493f-8f2e-c7d459779292-2,https://biolit.fr/observations/observation-79179335-32dc-493f-8f2e-c7d459779292-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0749-scaled.jpg,,FALSE, +N1,60421,sortie-79179335-32dc-493f-8f2e-c7d459779292,https://biolit.fr/sorties/sortie-79179335-32dc-493f-8f2e-c7d459779292/,NVanzu,,07/12/2017,10.0000000,10.0:15,43.214790000000,5.342952000000,,Anse de la maronaise,48346,observation-79179335-32dc-493f-8f2e-c7d459779292-3,https://biolit.fr/observations/observation-79179335-32dc-493f-8f2e-c7d459779292-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0751-scaled.jpg,,FALSE, +N1,60421,sortie-79179335-32dc-493f-8f2e-c7d459779292,https://biolit.fr/sorties/sortie-79179335-32dc-493f-8f2e-c7d459779292/,NVanzu,,07/12/2017,10.0000000,10.0:15,43.214790000000,5.342952000000,,Anse de la maronaise,48348,observation-79179335-32dc-493f-8f2e-c7d459779292-4,https://biolit.fr/observations/observation-79179335-32dc-493f-8f2e-c7d459779292-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0752-scaled.jpg,,FALSE, +N1,60421,sortie-79179335-32dc-493f-8f2e-c7d459779292,https://biolit.fr/sorties/sortie-79179335-32dc-493f-8f2e-c7d459779292/,NVanzu,,07/12/2017,10.0000000,10.0:15,43.214790000000,5.342952000000,,Anse de la maronaise,48350,observation-79179335-32dc-493f-8f2e-c7d459779292-5,https://biolit.fr/observations/observation-79179335-32dc-493f-8f2e-c7d459779292-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0755-scaled.jpg,,FALSE, +N1,60422,sortie-9115c828-8bde-4534-85cd-77784bdaafa2,https://biolit.fr/sorties/sortie-9115c828-8bde-4534-85cd-77784bdaafa2/,Mathias,,07/12/2017,11.0000000,13.0000000,43.214805000000,5.3429380000,,Anse de la maronaise,48352,observation-9115c828-8bde-4534-85cd-77784bdaafa2,https://biolit.fr/observations/observation-9115c828-8bde-4534-85cd-77784bdaafa2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0165-scaled.jpg,,FALSE, +N1,60422,sortie-9115c828-8bde-4534-85cd-77784bdaafa2,https://biolit.fr/sorties/sortie-9115c828-8bde-4534-85cd-77784bdaafa2/,Mathias,,07/12/2017,11.0000000,13.0000000,43.214805000000,5.3429380000,,Anse de la maronaise,48354,observation-9115c828-8bde-4534-85cd-77784bdaafa2-2,https://biolit.fr/observations/observation-9115c828-8bde-4534-85cd-77784bdaafa2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0166_1-scaled.jpg,,FALSE, +N1,60422,sortie-9115c828-8bde-4534-85cd-77784bdaafa2,https://biolit.fr/sorties/sortie-9115c828-8bde-4534-85cd-77784bdaafa2/,Mathias,,07/12/2017,11.0000000,13.0000000,43.214805000000,5.3429380000,,Anse de la maronaise,48356,observation-9115c828-8bde-4534-85cd-77784bdaafa2-3,https://biolit.fr/observations/observation-9115c828-8bde-4534-85cd-77784bdaafa2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0169_0-scaled.jpg,,FALSE, +N1,60422,sortie-9115c828-8bde-4534-85cd-77784bdaafa2,https://biolit.fr/sorties/sortie-9115c828-8bde-4534-85cd-77784bdaafa2/,Mathias,,07/12/2017,11.0000000,13.0000000,43.214805000000,5.3429380000,,Anse de la maronaise,48358,observation-9115c828-8bde-4534-85cd-77784bdaafa2-4,https://biolit.fr/observations/observation-9115c828-8bde-4534-85cd-77784bdaafa2-4/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0171-scaled.jpg,,TRUE, +N1,60422,sortie-9115c828-8bde-4534-85cd-77784bdaafa2,https://biolit.fr/sorties/sortie-9115c828-8bde-4534-85cd-77784bdaafa2/,Mathias,,07/12/2017,11.0000000,13.0000000,43.214805000000,5.3429380000,,Anse de la maronaise,48360,observation-9115c828-8bde-4534-85cd-77784bdaafa2-5,https://biolit.fr/observations/observation-9115c828-8bde-4534-85cd-77784bdaafa2-5/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0175-scaled.jpg,,TRUE, +N1,60422,sortie-9115c828-8bde-4534-85cd-77784bdaafa2,https://biolit.fr/sorties/sortie-9115c828-8bde-4534-85cd-77784bdaafa2/,Mathias,,07/12/2017,11.0000000,13.0000000,43.214805000000,5.3429380000,,Anse de la maronaise,48362,observation-9115c828-8bde-4534-85cd-77784bdaafa2-6,https://biolit.fr/observations/observation-9115c828-8bde-4534-85cd-77784bdaafa2-6/,Vermetus triquetrus,Petit vermet,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0177_1-scaled.jpg,,TRUE, +N1,60422,sortie-9115c828-8bde-4534-85cd-77784bdaafa2,https://biolit.fr/sorties/sortie-9115c828-8bde-4534-85cd-77784bdaafa2/,Mathias,,07/12/2017,11.0000000,13.0000000,43.214805000000,5.3429380000,,Anse de la maronaise,48364,observation-9115c828-8bde-4534-85cd-77784bdaafa2-7,https://biolit.fr/observations/observation-9115c828-8bde-4534-85cd-77784bdaafa2-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0173_0-scaled.jpg,,FALSE, +N1,60422,sortie-9115c828-8bde-4534-85cd-77784bdaafa2,https://biolit.fr/sorties/sortie-9115c828-8bde-4534-85cd-77784bdaafa2/,Mathias,,07/12/2017,11.0000000,13.0000000,43.214805000000,5.3429380000,,Anse de la maronaise,48366,observation-9115c828-8bde-4534-85cd-77784bdaafa2-8,https://biolit.fr/observations/observation-9115c828-8bde-4534-85cd-77784bdaafa2-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0174_0-scaled.jpg,,FALSE, +N1,60422,sortie-9115c828-8bde-4534-85cd-77784bdaafa2,https://biolit.fr/sorties/sortie-9115c828-8bde-4534-85cd-77784bdaafa2/,Mathias,,07/12/2017,11.0000000,13.0000000,43.214805000000,5.3429380000,,Anse de la maronaise,48368,observation-9115c828-8bde-4534-85cd-77784bdaafa2-9,https://biolit.fr/observations/observation-9115c828-8bde-4534-85cd-77784bdaafa2-9/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0179_0-scaled.jpg,,TRUE, +N1,60423,sortie-d8ed7c08-8602-43b3-ac95-7458fe2fb05d,https://biolit.fr/sorties/sortie-d8ed7c08-8602-43b3-ac95-7458fe2fb05d/,Phil,,06/08/2017,12.0000000,12.0:25,47.893976000000,-4.130900000000,,Gouesnarc'h - Finistère,48370,observation-d8ed7c08-8602-43b3-ac95-7458fe2fb05d,https://biolit.fr/observations/observation-d8ed7c08-8602-43b3-ac95-7458fe2fb05d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070448.JPG,,FALSE, +N1,60423,sortie-d8ed7c08-8602-43b3-ac95-7458fe2fb05d,https://biolit.fr/sorties/sortie-d8ed7c08-8602-43b3-ac95-7458fe2fb05d/,Phil,,06/08/2017,12.0000000,12.0:25,47.893976000000,-4.130900000000,,Gouesnarc'h - Finistère,48372,observation-d8ed7c08-8602-43b3-ac95-7458fe2fb05d-2,https://biolit.fr/observations/observation-d8ed7c08-8602-43b3-ac95-7458fe2fb05d-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1070452.JPG,,TRUE, +N1,60423,sortie-d8ed7c08-8602-43b3-ac95-7458fe2fb05d,https://biolit.fr/sorties/sortie-d8ed7c08-8602-43b3-ac95-7458fe2fb05d/,Phil,,06/08/2017,12.0000000,12.0:25,47.893976000000,-4.130900000000,,Gouesnarc'h - Finistère,48374,observation-d8ed7c08-8602-43b3-ac95-7458fe2fb05d-3,https://biolit.fr/observations/observation-d8ed7c08-8602-43b3-ac95-7458fe2fb05d-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070453.JPG,,TRUE, +N1,60423,sortie-d8ed7c08-8602-43b3-ac95-7458fe2fb05d,https://biolit.fr/sorties/sortie-d8ed7c08-8602-43b3-ac95-7458fe2fb05d/,Phil,,06/08/2017,12.0000000,12.0:25,47.893976000000,-4.130900000000,,Gouesnarc'h - Finistère,48376,observation-d8ed7c08-8602-43b3-ac95-7458fe2fb05d-4,https://biolit.fr/observations/observation-d8ed7c08-8602-43b3-ac95-7458fe2fb05d-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1070446.JPG,,TRUE, +N1,60423,sortie-d8ed7c08-8602-43b3-ac95-7458fe2fb05d,https://biolit.fr/sorties/sortie-d8ed7c08-8602-43b3-ac95-7458fe2fb05d/,Phil,,06/08/2017,12.0000000,12.0:25,47.893976000000,-4.130900000000,,Gouesnarc'h - Finistère,48378,observation-d8ed7c08-8602-43b3-ac95-7458fe2fb05d-5,https://biolit.fr/observations/observation-d8ed7c08-8602-43b3-ac95-7458fe2fb05d-5/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/P1070456.JPG,,TRUE, +N1,60423,sortie-d8ed7c08-8602-43b3-ac95-7458fe2fb05d,https://biolit.fr/sorties/sortie-d8ed7c08-8602-43b3-ac95-7458fe2fb05d/,Phil,,06/08/2017,12.0000000,12.0:25,47.893976000000,-4.130900000000,,Gouesnarc'h - Finistère,48380,observation-d8ed7c08-8602-43b3-ac95-7458fe2fb05d-6,https://biolit.fr/observations/observation-d8ed7c08-8602-43b3-ac95-7458fe2fb05d-6/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1070457.JPG,,TRUE, +N1,60424,sortie-600d6b3b-c905-4fad-b8f3-00899791b2d6,https://biolit.fr/sorties/sortie-600d6b3b-c905-4fad-b8f3-00899791b2d6/,Phil,,6/18/2017 0:00,12.0000000,12.000005,47.709407000000,-3.99317600000,,Fouesnant - Finistère,48382,observation-600d6b3b-c905-4fad-b8f3-00899791b2d6,https://biolit.fr/observations/observation-600d6b3b-c905-4fad-b8f3-00899791b2d6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070522.JPG,,FALSE, +N1,60425,sortie-757598b8-4d92-415b-b63a-fad23e846346,https://biolit.fr/sorties/sortie-757598b8-4d92-415b-b63a-fad23e846346/,Phil,,07/08/2017,10.0000000,10.0:25,47.881942000000,-3.934524000000,,Concarneau - Finistère,48384,observation-757598b8-4d92-415b-b63a-fad23e846346,https://biolit.fr/observations/observation-757598b8-4d92-415b-b63a-fad23e846346/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170708_102511.jpg,,FALSE, +N1,60425,sortie-757598b8-4d92-415b-b63a-fad23e846346,https://biolit.fr/sorties/sortie-757598b8-4d92-415b-b63a-fad23e846346/,Phil,,07/08/2017,10.0000000,10.0:25,47.881942000000,-3.934524000000,,Concarneau - Finistère,48386,observation-757598b8-4d92-415b-b63a-fad23e846346-2,https://biolit.fr/observations/observation-757598b8-4d92-415b-b63a-fad23e846346-2/,Lutraria lutraria,Lutraire elliptique,,https://biolit.fr/wp-content/uploads/2023/07/20170708_102257.jpg,,TRUE, +N1,60425,sortie-757598b8-4d92-415b-b63a-fad23e846346,https://biolit.fr/sorties/sortie-757598b8-4d92-415b-b63a-fad23e846346/,Phil,,07/08/2017,10.0000000,10.0:25,47.881942000000,-3.934524000000,,Concarneau - Finistère,48388,observation-757598b8-4d92-415b-b63a-fad23e846346-3,https://biolit.fr/observations/observation-757598b8-4d92-415b-b63a-fad23e846346-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170708_102425.jpg,,FALSE, +N1,60426,sortie-e7cd51af-41cc-4b5a-8039-0212e7284049,https://biolit.fr/sorties/sortie-e7cd51af-41cc-4b5a-8039-0212e7284049/,Phil,,3/27/2017 0:00,11.0000000,11.0000000,47.853440000000,-3.912787000000,,Concarneau - Finistère,48390,observation-e7cd51af-41cc-4b5a-8039-0212e7284049,https://biolit.fr/observations/observation-e7cd51af-41cc-4b5a-8039-0212e7284049/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060875.JPG,,FALSE, +N1,60426,sortie-e7cd51af-41cc-4b5a-8039-0212e7284049,https://biolit.fr/sorties/sortie-e7cd51af-41cc-4b5a-8039-0212e7284049/,Phil,,3/27/2017 0:00,11.0000000,11.0000000,47.853440000000,-3.912787000000,,Concarneau - Finistère,48392,observation-e7cd51af-41cc-4b5a-8039-0212e7284049-2,https://biolit.fr/observations/observation-e7cd51af-41cc-4b5a-8039-0212e7284049-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060874.JPG,,FALSE, +N1,60426,sortie-e7cd51af-41cc-4b5a-8039-0212e7284049,https://biolit.fr/sorties/sortie-e7cd51af-41cc-4b5a-8039-0212e7284049/,Phil,,3/27/2017 0:00,11.0000000,11.0000000,47.853440000000,-3.912787000000,,Concarneau - Finistère,48394,observation-e7cd51af-41cc-4b5a-8039-0212e7284049-3,https://biolit.fr/observations/observation-e7cd51af-41cc-4b5a-8039-0212e7284049-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060880.JPG,,FALSE, +N1,60426,sortie-e7cd51af-41cc-4b5a-8039-0212e7284049,https://biolit.fr/sorties/sortie-e7cd51af-41cc-4b5a-8039-0212e7284049/,Phil,,3/27/2017 0:00,11.0000000,11.0000000,47.853440000000,-3.912787000000,,Concarneau - Finistère,48396,observation-e7cd51af-41cc-4b5a-8039-0212e7284049-4,https://biolit.fr/observations/observation-e7cd51af-41cc-4b5a-8039-0212e7284049-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060882.JPG,,FALSE, +N1,60427,sortie-9f02344e-7cfe-4332-995b-f2f4cfb92df3,https://biolit.fr/sorties/sortie-9f02344e-7cfe-4332-995b-f2f4cfb92df3/,Phil,,4/14/2017 0:00,12.0000000,12.0:25,48.847610000000,-3.011691000000,,Île-de-Bréhat - Côtes-d'Armor,48398,observation-9f02344e-7cfe-4332-995b-f2f4cfb92df3,https://biolit.fr/observations/observation-9f02344e-7cfe-4332-995b-f2f4cfb92df3/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060965.JPG,,TRUE, +N1,60427,sortie-9f02344e-7cfe-4332-995b-f2f4cfb92df3,https://biolit.fr/sorties/sortie-9f02344e-7cfe-4332-995b-f2f4cfb92df3/,Phil,,4/14/2017 0:00,12.0000000,12.0:25,48.847610000000,-3.011691000000,,Île-de-Bréhat - Côtes-d'Armor,48400,observation-9f02344e-7cfe-4332-995b-f2f4cfb92df3-2,https://biolit.fr/observations/observation-9f02344e-7cfe-4332-995b-f2f4cfb92df3-2/,Littorina compressa,Littorine à lignes noires,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060967.JPG,,TRUE, +N1,60427,sortie-9f02344e-7cfe-4332-995b-f2f4cfb92df3,https://biolit.fr/sorties/sortie-9f02344e-7cfe-4332-995b-f2f4cfb92df3/,Phil,,4/14/2017 0:00,12.0000000,12.0:25,48.847610000000,-3.011691000000,,Île-de-Bréhat - Côtes-d'Armor,48402,observation-9f02344e-7cfe-4332-995b-f2f4cfb92df3-3,https://biolit.fr/observations/observation-9f02344e-7cfe-4332-995b-f2f4cfb92df3-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060976.JPG,,TRUE, +N1,60427,sortie-9f02344e-7cfe-4332-995b-f2f4cfb92df3,https://biolit.fr/sorties/sortie-9f02344e-7cfe-4332-995b-f2f4cfb92df3/,Phil,,4/14/2017 0:00,12.0000000,12.0:25,48.847610000000,-3.011691000000,,Île-de-Bréhat - Côtes-d'Armor,48404,observation-9f02344e-7cfe-4332-995b-f2f4cfb92df3-4,https://biolit.fr/observations/observation-9f02344e-7cfe-4332-995b-f2f4cfb92df3-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060977.JPG,,TRUE, +N1,60427,sortie-9f02344e-7cfe-4332-995b-f2f4cfb92df3,https://biolit.fr/sorties/sortie-9f02344e-7cfe-4332-995b-f2f4cfb92df3/,Phil,,4/14/2017 0:00,12.0000000,12.0:25,48.847610000000,-3.011691000000,,Île-de-Bréhat - Côtes-d'Armor,48406,observation-9f02344e-7cfe-4332-995b-f2f4cfb92df3-5,https://biolit.fr/observations/observation-9f02344e-7cfe-4332-995b-f2f4cfb92df3-5/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060985.JPG,,TRUE, +N1,60427,sortie-9f02344e-7cfe-4332-995b-f2f4cfb92df3,https://biolit.fr/sorties/sortie-9f02344e-7cfe-4332-995b-f2f4cfb92df3/,Phil,,4/14/2017 0:00,12.0000000,12.0:25,48.847610000000,-3.011691000000,,Île-de-Bréhat - Côtes-d'Armor,48408,observation-9f02344e-7cfe-4332-995b-f2f4cfb92df3-6,https://biolit.fr/observations/observation-9f02344e-7cfe-4332-995b-f2f4cfb92df3-6/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060986.JPG,,TRUE, +N1,60428,sortie-80278856-6396-4532-8e71-68c1acec7896,https://biolit.fr/sorties/sortie-80278856-6396-4532-8e71-68c1acec7896/,Phil,,06/02/2017,17.0000000,17.0:45,47.791090000000,-4.277881000000,,Léchiagat - Finistère,48410,observation-80278856-6396-4532-8e71-68c1acec7896,https://biolit.fr/observations/observation-80278856-6396-4532-8e71-68c1acec7896/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170602_174522.jpg,,TRUE, +N1,60428,sortie-80278856-6396-4532-8e71-68c1acec7896,https://biolit.fr/sorties/sortie-80278856-6396-4532-8e71-68c1acec7896/,Phil,,06/02/2017,17.0000000,17.0:45,47.791090000000,-4.277881000000,,Léchiagat - Finistère,48412,observation-80278856-6396-4532-8e71-68c1acec7896-2,https://biolit.fr/observations/observation-80278856-6396-4532-8e71-68c1acec7896-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170602_173851.jpg,,FALSE, +N1,60428,sortie-80278856-6396-4532-8e71-68c1acec7896,https://biolit.fr/sorties/sortie-80278856-6396-4532-8e71-68c1acec7896/,Phil,,06/02/2017,17.0000000,17.0:45,47.791090000000,-4.277881000000,,Léchiagat - Finistère,48414,observation-80278856-6396-4532-8e71-68c1acec7896-3,https://biolit.fr/observations/observation-80278856-6396-4532-8e71-68c1acec7896-3/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170602_174503.jpg,,TRUE, +N1,60429,sortie-d897ed65-445e-49d2-a68f-3601373c5b7b,https://biolit.fr/sorties/sortie-d897ed65-445e-49d2-a68f-3601373c5b7b/,LucileA,,07/04/2017,14.0000000,16.0000000,48.641075000000,-2.072227000000,,Plage de St Enogat,48416,observation-d897ed65-445e-49d2-a68f-3601373c5b7b,https://biolit.fr/observations/observation-d897ed65-445e-49d2-a68f-3601373c5b7b/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6660.JPG,,TRUE, +N1,60430,sortie-ed5ffb5b-1fa5-4bfc-9477-881ec9c4ac6d,https://biolit.fr/sorties/sortie-ed5ffb5b-1fa5-4bfc-9477-881ec9c4ac6d/,Septentrion Environnement,,06/10/2017,14.0000000,15.0000000,43.210347000000,5.332530000000,,Grotte à Corail Ile Maire Marseille,48418,observation-ed5ffb5b-1fa5-4bfc-9477-881ec9c4ac6d,https://biolit.fr/observations/observation-ed5ffb5b-1fa5-4bfc-9477-881ec9c4ac6d/,Crambe crambe,Eponge encroûtante orange-rouge,,https://biolit.fr/wp-content/uploads/2023/07/Bio-1080-min-scaled.jpg,,TRUE, +N1,60431,sortie-979619ae-31b7-41e0-ac49-760a9057a1b1,https://biolit.fr/sorties/sortie-979619ae-31b7-41e0-ac49-760a9057a1b1/,Phil,,6/18/2017 0:00,15.0000000,15.0000000,47.719978000000,-3.958412000000,,Fouesnant - Finistère,48420,observation-979619ae-31b7-41e0-ac49-760a9057a1b1,https://biolit.fr/observations/observation-979619ae-31b7-41e0-ac49-760a9057a1b1/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070638.JPG,,FALSE, +N1,60431,sortie-979619ae-31b7-41e0-ac49-760a9057a1b1,https://biolit.fr/sorties/sortie-979619ae-31b7-41e0-ac49-760a9057a1b1/,Phil,,6/18/2017 0:00,15.0000000,15.0000000,47.719978000000,-3.958412000000,,Fouesnant - Finistère,48422,observation-979619ae-31b7-41e0-ac49-760a9057a1b1-2,https://biolit.fr/observations/observation-979619ae-31b7-41e0-ac49-760a9057a1b1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070646.JPG,,FALSE, +N1,60431,sortie-979619ae-31b7-41e0-ac49-760a9057a1b1,https://biolit.fr/sorties/sortie-979619ae-31b7-41e0-ac49-760a9057a1b1/,Phil,,6/18/2017 0:00,15.0000000,15.0000000,47.719978000000,-3.958412000000,,Fouesnant - Finistère,48424,observation-979619ae-31b7-41e0-ac49-760a9057a1b1-3,https://biolit.fr/observations/observation-979619ae-31b7-41e0-ac49-760a9057a1b1-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070648.JPG,,FALSE, +N1,60431,sortie-979619ae-31b7-41e0-ac49-760a9057a1b1,https://biolit.fr/sorties/sortie-979619ae-31b7-41e0-ac49-760a9057a1b1/,Phil,,6/18/2017 0:00,15.0000000,15.0000000,47.719978000000,-3.958412000000,,Fouesnant - Finistère,48426,observation-979619ae-31b7-41e0-ac49-760a9057a1b1-4,https://biolit.fr/observations/observation-979619ae-31b7-41e0-ac49-760a9057a1b1-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070651.JPG,,FALSE, +N1,60432,sortie-35a0efde-2c97-4601-b3b9-11475be50c2d,https://biolit.fr/sorties/sortie-35a0efde-2c97-4601-b3b9-11475be50c2d/,Phil,,3/27/2017 0:00,11.0000000,11.0:45,47.854640000000,-3.913117000000,,Concarneau - Finistère,48428,observation-35a0efde-2c97-4601-b3b9-11475be50c2d,https://biolit.fr/observations/observation-35a0efde-2c97-4601-b3b9-11475be50c2d/,Membranipora membranacea,Membranipore,,https://biolit.fr/wp-content/uploads/2023/07/P1060883.JPG,,TRUE, +N1,60432,sortie-35a0efde-2c97-4601-b3b9-11475be50c2d,https://biolit.fr/sorties/sortie-35a0efde-2c97-4601-b3b9-11475be50c2d/,Phil,,3/27/2017 0:00,11.0000000,11.0:45,47.854640000000,-3.913117000000,,Concarneau - Finistère,48430,observation-35a0efde-2c97-4601-b3b9-11475be50c2d-2,https://biolit.fr/observations/observation-35a0efde-2c97-4601-b3b9-11475be50c2d-2/,Membranipora membranacea,Membranipore,,https://biolit.fr/wp-content/uploads/2023/07/P1060884.JPG,,TRUE, +N1,60432,sortie-35a0efde-2c97-4601-b3b9-11475be50c2d,https://biolit.fr/sorties/sortie-35a0efde-2c97-4601-b3b9-11475be50c2d/,Phil,,3/27/2017 0:00,11.0000000,11.0:45,47.854640000000,-3.913117000000,,Concarneau - Finistère,48432,observation-35a0efde-2c97-4601-b3b9-11475be50c2d-3,https://biolit.fr/observations/observation-35a0efde-2c97-4601-b3b9-11475be50c2d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060885.JPG,,FALSE, +N1,60432,sortie-35a0efde-2c97-4601-b3b9-11475be50c2d,https://biolit.fr/sorties/sortie-35a0efde-2c97-4601-b3b9-11475be50c2d/,Phil,,3/27/2017 0:00,11.0000000,11.0:45,47.854640000000,-3.913117000000,,Concarneau - Finistère,48434,observation-35a0efde-2c97-4601-b3b9-11475be50c2d-4,https://biolit.fr/observations/observation-35a0efde-2c97-4601-b3b9-11475be50c2d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060887.JPG,,FALSE, +N1,60433,sortie-a9bfe21a-83d3-4b49-b1c6-9cdc3e062afd,https://biolit.fr/sorties/sortie-a9bfe21a-83d3-4b49-b1c6-9cdc3e062afd/,Phil,,06/08/2017,12.000005,12.0000000,47.897628000000,-4.133563000000,,Gouesnarc'h - Finistère,48436,observation-a9bfe21a-83d3-4b49-b1c6-9cdc3e062afd,https://biolit.fr/observations/observation-a9bfe21a-83d3-4b49-b1c6-9cdc3e062afd/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070436.JPG,,FALSE, +N1,60433,sortie-a9bfe21a-83d3-4b49-b1c6-9cdc3e062afd,https://biolit.fr/sorties/sortie-a9bfe21a-83d3-4b49-b1c6-9cdc3e062afd/,Phil,,06/08/2017,12.000005,12.0000000,47.897628000000,-4.133563000000,,Gouesnarc'h - Finistère,48438,observation-a9bfe21a-83d3-4b49-b1c6-9cdc3e062afd-2,https://biolit.fr/observations/observation-a9bfe21a-83d3-4b49-b1c6-9cdc3e062afd-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070434.JPG,,FALSE, +N1,60433,sortie-a9bfe21a-83d3-4b49-b1c6-9cdc3e062afd,https://biolit.fr/sorties/sortie-a9bfe21a-83d3-4b49-b1c6-9cdc3e062afd/,Phil,,06/08/2017,12.000005,12.0000000,47.897628000000,-4.133563000000,,Gouesnarc'h - Finistère,48440,observation-a9bfe21a-83d3-4b49-b1c6-9cdc3e062afd-3,https://biolit.fr/observations/observation-a9bfe21a-83d3-4b49-b1c6-9cdc3e062afd-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070433.JPG,,FALSE, +N1,60434,sortie-d2bb6261-7f39-4c66-9c53-be8e662aafd0,https://biolit.fr/sorties/sortie-d2bb6261-7f39-4c66-9c53-be8e662aafd0/,Phil,,3/27/2017 0:00,11.0:25,11.0:35,47.852412000000,-3.91435100000,,Concarneau - Finistère,48442,observation-d2bb6261-7f39-4c66-9c53-be8e662aafd0,https://biolit.fr/observations/observation-d2bb6261-7f39-4c66-9c53-be8e662aafd0/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060859.JPG,,FALSE, +N1,60434,sortie-d2bb6261-7f39-4c66-9c53-be8e662aafd0,https://biolit.fr/sorties/sortie-d2bb6261-7f39-4c66-9c53-be8e662aafd0/,Phil,,3/27/2017 0:00,11.0:25,11.0:35,47.852412000000,-3.91435100000,,Concarneau - Finistère,48444,observation-d2bb6261-7f39-4c66-9c53-be8e662aafd0-2,https://biolit.fr/observations/observation-d2bb6261-7f39-4c66-9c53-be8e662aafd0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060864.JPG,,FALSE, +N1,60434,sortie-d2bb6261-7f39-4c66-9c53-be8e662aafd0,https://biolit.fr/sorties/sortie-d2bb6261-7f39-4c66-9c53-be8e662aafd0/,Phil,,3/27/2017 0:00,11.0:25,11.0:35,47.852412000000,-3.91435100000,,Concarneau - Finistère,48446,observation-d2bb6261-7f39-4c66-9c53-be8e662aafd0-3,https://biolit.fr/observations/observation-d2bb6261-7f39-4c66-9c53-be8e662aafd0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060866.JPG,,FALSE, +N1,60434,sortie-d2bb6261-7f39-4c66-9c53-be8e662aafd0,https://biolit.fr/sorties/sortie-d2bb6261-7f39-4c66-9c53-be8e662aafd0/,Phil,,3/27/2017 0:00,11.0:25,11.0:35,47.852412000000,-3.91435100000,,Concarneau - Finistère,48448,observation-d2bb6261-7f39-4c66-9c53-be8e662aafd0-4,https://biolit.fr/observations/observation-d2bb6261-7f39-4c66-9c53-be8e662aafd0-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060871.JPG,,FALSE, +N1,60435,sortie-837906f5-f934-4afc-a6bf-c3ba70c7f408,https://biolit.fr/sorties/sortie-837906f5-f934-4afc-a6bf-c3ba70c7f408/,Phil,,06/08/2017,11.0000000,12.000005,47.893989000000,-4.131640000000,,Gouesnarc'h - Finistère,48450,observation-837906f5-f934-4afc-a6bf-c3ba70c7f408,https://biolit.fr/observations/observation-837906f5-f934-4afc-a6bf-c3ba70c7f408/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070431.JPG,,FALSE, +N1,60435,sortie-837906f5-f934-4afc-a6bf-c3ba70c7f408,https://biolit.fr/sorties/sortie-837906f5-f934-4afc-a6bf-c3ba70c7f408/,Phil,,06/08/2017,11.0000000,12.000005,47.893989000000,-4.131640000000,,Gouesnarc'h - Finistère,48452,observation-837906f5-f934-4afc-a6bf-c3ba70c7f408-2,https://biolit.fr/observations/observation-837906f5-f934-4afc-a6bf-c3ba70c7f408-2/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1070438.JPG,,TRUE, +N1,60435,sortie-837906f5-f934-4afc-a6bf-c3ba70c7f408,https://biolit.fr/sorties/sortie-837906f5-f934-4afc-a6bf-c3ba70c7f408/,Phil,,06/08/2017,11.0000000,12.000005,47.893989000000,-4.131640000000,,Gouesnarc'h - Finistère,48454,observation-837906f5-f934-4afc-a6bf-c3ba70c7f408-3,https://biolit.fr/observations/observation-837906f5-f934-4afc-a6bf-c3ba70c7f408-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070439.JPG,,FALSE, +N1,60436,sortie-4af293ab-1057-4266-9868-ebd4fb7b05e2,https://biolit.fr/sorties/sortie-4af293ab-1057-4266-9868-ebd4fb7b05e2/,AIEJE,,6/30/2017 0:00,11.0000000,12.0000000,43.333941000000,5.197772000000,,ensues la redonne,48456,observation-4af293ab-1057-4266-9868-ebd4fb7b05e2,https://biolit.fr/observations/observation-4af293ab-1057-4266-9868-ebd4fb7b05e2/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4880-scaled.jpg,,TRUE, +N1,60437,sortie-34d8b16e-c7e0-46d9-bf10-7dbb092ef1d2,https://biolit.fr/sorties/sortie-34d8b16e-c7e0-46d9-bf10-7dbb092ef1d2/,Phil,,6/18/2017 0:00,14.0000000,14.0:25,47.720969000000,-3.956506000000,,Fouesnant - Finistère,48458,observation-34d8b16e-c7e0-46d9-bf10-7dbb092ef1d2,https://biolit.fr/observations/observation-34d8b16e-c7e0-46d9-bf10-7dbb092ef1d2/,Callista chione,Vernis,,https://biolit.fr/wp-content/uploads/2023/07/P1070566.jpg,,TRUE, +N1,60437,sortie-34d8b16e-c7e0-46d9-bf10-7dbb092ef1d2,https://biolit.fr/sorties/sortie-34d8b16e-c7e0-46d9-bf10-7dbb092ef1d2/,Phil,,6/18/2017 0:00,14.0000000,14.0:25,47.720969000000,-3.956506000000,,Fouesnant - Finistère,48460,observation-34d8b16e-c7e0-46d9-bf10-7dbb092ef1d2-2,https://biolit.fr/observations/observation-34d8b16e-c7e0-46d9-bf10-7dbb092ef1d2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070569.JPG,,FALSE, +N1,60438,sortie-df2558b2-bb27-4ab8-9946-8371f2bb9d80,https://biolit.fr/sorties/sortie-df2558b2-bb27-4ab8-9946-8371f2bb9d80/,Phil,,05/06/2017,12.0000000,15.0000000,47.894050000000,-3.966373000000,,La Forêt-Fouesnant - Finistère,48462,observation-df2558b2-bb27-4ab8-9946-8371f2bb9d80,https://biolit.fr/observations/observation-df2558b2-bb27-4ab8-9946-8371f2bb9d80/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_125637.jpg,,FALSE, +N1,60438,sortie-df2558b2-bb27-4ab8-9946-8371f2bb9d80,https://biolit.fr/sorties/sortie-df2558b2-bb27-4ab8-9946-8371f2bb9d80/,Phil,,05/06/2017,12.0000000,15.0000000,47.894050000000,-3.966373000000,,La Forêt-Fouesnant - Finistère,48464,observation-df2558b2-bb27-4ab8-9946-8371f2bb9d80-2,https://biolit.fr/observations/observation-df2558b2-bb27-4ab8-9946-8371f2bb9d80-2/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/20170506_125656.jpg,,TRUE, +N1,60438,sortie-df2558b2-bb27-4ab8-9946-8371f2bb9d80,https://biolit.fr/sorties/sortie-df2558b2-bb27-4ab8-9946-8371f2bb9d80/,Phil,,05/06/2017,12.0000000,15.0000000,47.894050000000,-3.966373000000,,La Forêt-Fouesnant - Finistère,48466,observation-df2558b2-bb27-4ab8-9946-8371f2bb9d80-3,https://biolit.fr/observations/observation-df2558b2-bb27-4ab8-9946-8371f2bb9d80-3/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/20170506_125705.jpg,,TRUE, +N1,60438,sortie-df2558b2-bb27-4ab8-9946-8371f2bb9d80,https://biolit.fr/sorties/sortie-df2558b2-bb27-4ab8-9946-8371f2bb9d80/,Phil,,05/06/2017,12.0000000,15.0000000,47.894050000000,-3.966373000000,,La Forêt-Fouesnant - Finistère,48468,observation-df2558b2-bb27-4ab8-9946-8371f2bb9d80-4,https://biolit.fr/observations/observation-df2558b2-bb27-4ab8-9946-8371f2bb9d80-4/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/20170506_125723.jpg,,TRUE, +N1,60439,sortie-3b12d1e4-4a91-400e-a8b3-9d566deb2efb,https://biolit.fr/sorties/sortie-3b12d1e4-4a91-400e-a8b3-9d566deb2efb/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236006000000,5.360070000000,,plage de la bonne brise ,48470,observation-3b12d1e4-4a91-400e-a8b3-9d566deb2efb,https://biolit.fr/observations/observation-3b12d1e4-4a91-400e-a8b3-9d566deb2efb/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6290465-scaled.jpg,,FALSE, +N1,60439,sortie-3b12d1e4-4a91-400e-a8b3-9d566deb2efb,https://biolit.fr/sorties/sortie-3b12d1e4-4a91-400e-a8b3-9d566deb2efb/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236006000000,5.360070000000,,plage de la bonne brise ,48472,observation-3b12d1e4-4a91-400e-a8b3-9d566deb2efb-2,https://biolit.fr/observations/observation-3b12d1e4-4a91-400e-a8b3-9d566deb2efb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6290464-scaled.jpg,,FALSE, +N1,60439,sortie-3b12d1e4-4a91-400e-a8b3-9d566deb2efb,https://biolit.fr/sorties/sortie-3b12d1e4-4a91-400e-a8b3-9d566deb2efb/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236006000000,5.360070000000,,plage de la bonne brise ,48474,observation-3b12d1e4-4a91-400e-a8b3-9d566deb2efb-3,https://biolit.fr/observations/observation-3b12d1e4-4a91-400e-a8b3-9d566deb2efb-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6290455-scaled.jpg,,FALSE, +N1,60439,sortie-3b12d1e4-4a91-400e-a8b3-9d566deb2efb,https://biolit.fr/sorties/sortie-3b12d1e4-4a91-400e-a8b3-9d566deb2efb/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236006000000,5.360070000000,,plage de la bonne brise ,48476,observation-3b12d1e4-4a91-400e-a8b3-9d566deb2efb-4,https://biolit.fr/observations/observation-3b12d1e4-4a91-400e-a8b3-9d566deb2efb-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6290454-scaled.jpg,,FALSE, +N1,60440,sortie-0b3be758-8b25-4e48-a6f5-21602bebaf05,https://biolit.fr/sorties/sortie-0b3be758-8b25-4e48-a6f5-21602bebaf05/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236049000000,5.360070000000,,plage de la bonne brise ,48478,observation-0b3be758-8b25-4e48-a6f5-21602bebaf05,https://biolit.fr/observations/observation-0b3be758-8b25-4e48-a6f5-21602bebaf05/,Halopteris scoparia,Algue balai,,https://biolit.fr/wp-content/uploads/2023/07/P6290453-scaled.jpg,,TRUE, +N1,60440,sortie-0b3be758-8b25-4e48-a6f5-21602bebaf05,https://biolit.fr/sorties/sortie-0b3be758-8b25-4e48-a6f5-21602bebaf05/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236049000000,5.360070000000,,plage de la bonne brise ,48480,observation-0b3be758-8b25-4e48-a6f5-21602bebaf05-2,https://biolit.fr/observations/observation-0b3be758-8b25-4e48-a6f5-21602bebaf05-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6290452-scaled.jpg,,FALSE, +N1,60440,sortie-0b3be758-8b25-4e48-a6f5-21602bebaf05,https://biolit.fr/sorties/sortie-0b3be758-8b25-4e48-a6f5-21602bebaf05/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236049000000,5.360070000000,,plage de la bonne brise ,48482,observation-0b3be758-8b25-4e48-a6f5-21602bebaf05-3,https://biolit.fr/observations/observation-0b3be758-8b25-4e48-a6f5-21602bebaf05-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6290449-scaled.jpg,,FALSE, +N1,60440,sortie-0b3be758-8b25-4e48-a6f5-21602bebaf05,https://biolit.fr/sorties/sortie-0b3be758-8b25-4e48-a6f5-21602bebaf05/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236049000000,5.360070000000,,plage de la bonne brise ,48484,observation-0b3be758-8b25-4e48-a6f5-21602bebaf05-4,https://biolit.fr/observations/observation-0b3be758-8b25-4e48-a6f5-21602bebaf05-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6290447-scaled.jpg,,FALSE, +N1,60440,sortie-0b3be758-8b25-4e48-a6f5-21602bebaf05,https://biolit.fr/sorties/sortie-0b3be758-8b25-4e48-a6f5-21602bebaf05/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236049000000,5.360070000000,,plage de la bonne brise ,48486,observation-0b3be758-8b25-4e48-a6f5-21602bebaf05-5,https://biolit.fr/observations/observation-0b3be758-8b25-4e48-a6f5-21602bebaf05-5/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/P6290444-scaled.jpg,,TRUE, +N1,60441,sortie-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4,https://biolit.fr/sorties/sortie-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236142000000,5.360008000000,,plage de la bonne brise ,48488,observation-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4,https://biolit.fr/observations/observation-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6290466-scaled.jpg,,FALSE, +N1,60441,sortie-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4,https://biolit.fr/sorties/sortie-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236142000000,5.360008000000,,plage de la bonne brise ,48490,observation-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4-2,https://biolit.fr/observations/observation-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6290463-scaled.jpg,,FALSE, +N1,60441,sortie-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4,https://biolit.fr/sorties/sortie-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236142000000,5.360008000000,,plage de la bonne brise ,48492,observation-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4-3,https://biolit.fr/observations/observation-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6290461-scaled.jpg,,FALSE, +N1,60441,sortie-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4,https://biolit.fr/sorties/sortie-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236142000000,5.360008000000,,plage de la bonne brise ,48494,observation-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4-4,https://biolit.fr/observations/observation-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6290459-scaled.jpg,,FALSE, +N1,60441,sortie-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4,https://biolit.fr/sorties/sortie-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236142000000,5.360008000000,,plage de la bonne brise ,48496,observation-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4-5,https://biolit.fr/observations/observation-a4a8dd78-85e1-45b3-8cd4-856ca8c371a4-5/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/P6290456-scaled.jpg,,TRUE, +N1,60442,sortie-35ac1ac9-0548-4399-afd6-f85defd11917,https://biolit.fr/sorties/sortie-35ac1ac9-0548-4399-afd6-f85defd11917/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236092000000,5.360003000000,,plage de la bonne brise ,48498,observation-35ac1ac9-0548-4399-afd6-f85defd11917,https://biolit.fr/observations/observation-35ac1ac9-0548-4399-afd6-f85defd11917/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6290467-scaled.jpg,,FALSE, +N1,60442,sortie-35ac1ac9-0548-4399-afd6-f85defd11917,https://biolit.fr/sorties/sortie-35ac1ac9-0548-4399-afd6-f85defd11917/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236092000000,5.360003000000,,plage de la bonne brise ,48500,observation-35ac1ac9-0548-4399-afd6-f85defd11917-2,https://biolit.fr/observations/observation-35ac1ac9-0548-4399-afd6-f85defd11917-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6290445-scaled.jpg,,FALSE, +N1,60442,sortie-35ac1ac9-0548-4399-afd6-f85defd11917,https://biolit.fr/sorties/sortie-35ac1ac9-0548-4399-afd6-f85defd11917/,ludovic,,6/29/2017 0:00,10.0:15,11.0:15,43.236092000000,5.360003000000,,plage de la bonne brise ,48502,observation-35ac1ac9-0548-4399-afd6-f85defd11917-3,https://biolit.fr/observations/observation-35ac1ac9-0548-4399-afd6-f85defd11917-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6290443-scaled.jpg,,FALSE, +N1,60443,sortie-d517bc8f-c3ae-4e32-9a4f-7a62c47ed628,https://biolit.fr/sorties/sortie-d517bc8f-c3ae-4e32-9a4f-7a62c47ed628/,NVanzu,,6/29/2017 0:00,10.0000000,11.0000000,43.233158000000,5.356243000000,,Plage de la bonne brise,48504,observation-d517bc8f-c3ae-4e32-9a4f-7a62c47ed628,https://biolit.fr/observations/observation-d517bc8f-c3ae-4e32-9a4f-7a62c47ed628/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0109-scaled.jpg,,FALSE, +N1,60443,sortie-d517bc8f-c3ae-4e32-9a4f-7a62c47ed628,https://biolit.fr/sorties/sortie-d517bc8f-c3ae-4e32-9a4f-7a62c47ed628/,NVanzu,,6/29/2017 0:00,10.0000000,11.0000000,43.233158000000,5.356243000000,,Plage de la bonne brise,48506,observation-d517bc8f-c3ae-4e32-9a4f-7a62c47ed628-2,https://biolit.fr/observations/observation-d517bc8f-c3ae-4e32-9a4f-7a62c47ed628-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0111-scaled.jpg,,FALSE, +N1,60443,sortie-d517bc8f-c3ae-4e32-9a4f-7a62c47ed628,https://biolit.fr/sorties/sortie-d517bc8f-c3ae-4e32-9a4f-7a62c47ed628/,NVanzu,,6/29/2017 0:00,10.0000000,11.0000000,43.233158000000,5.356243000000,,Plage de la bonne brise,48508,observation-d517bc8f-c3ae-4e32-9a4f-7a62c47ed628-3,https://biolit.fr/observations/observation-d517bc8f-c3ae-4e32-9a4f-7a62c47ed628-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0113-scaled.jpg,,FALSE, +N1,60443,sortie-d517bc8f-c3ae-4e32-9a4f-7a62c47ed628,https://biolit.fr/sorties/sortie-d517bc8f-c3ae-4e32-9a4f-7a62c47ed628/,NVanzu,,6/29/2017 0:00,10.0000000,11.0000000,43.233158000000,5.356243000000,,Plage de la bonne brise,48510,observation-d517bc8f-c3ae-4e32-9a4f-7a62c47ed628-4,https://biolit.fr/observations/observation-d517bc8f-c3ae-4e32-9a4f-7a62c47ed628-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0115-scaled.jpg,,FALSE, +N1,60444,sortie-9e177043-99d0-49cf-babd-19447950de54,https://biolit.fr/sorties/sortie-9e177043-99d0-49cf-babd-19447950de54/,Phil,,06/08/2017,11.0:45,12.0000000,47.894685000000,-4.131760000000,,Gouesnarc'h - Finistère,48512,observation-9e177043-99d0-49cf-babd-19447950de54,https://biolit.fr/observations/observation-9e177043-99d0-49cf-babd-19447950de54/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070427.jpg,,FALSE, +N1,60444,sortie-9e177043-99d0-49cf-babd-19447950de54,https://biolit.fr/sorties/sortie-9e177043-99d0-49cf-babd-19447950de54/,Phil,,06/08/2017,11.0:45,12.0000000,47.894685000000,-4.131760000000,,Gouesnarc'h - Finistère,48514,observation-9e177043-99d0-49cf-babd-19447950de54-2,https://biolit.fr/observations/observation-9e177043-99d0-49cf-babd-19447950de54-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070429.JPG,,FALSE, +N1,60445,sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5,https://biolit.fr/sorties/sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5/,azelie,,6/26/2017 0:00,20.0:35,21.0000000,50.326284000000,1.5466520000,,Quend-Plage,48516,observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5,https://biolit.fr/observations/observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_4320-scaled.jpg,,TRUE, +N1,60445,sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5,https://biolit.fr/sorties/sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5/,azelie,,6/26/2017 0:00,20.0:35,21.0000000,50.326284000000,1.5466520000,,Quend-Plage,48518,observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-2,https://biolit.fr/observations/observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4311-scaled.jpg,,FALSE, +N1,60445,sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5,https://biolit.fr/sorties/sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5/,azelie,,6/26/2017 0:00,20.0:35,21.0000000,50.326284000000,1.5466520000,,Quend-Plage,48520,observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-3,https://biolit.fr/observations/observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4319-scaled.jpg,,FALSE, +N1,60445,sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5,https://biolit.fr/sorties/sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5/,azelie,,6/26/2017 0:00,20.0:35,21.0000000,50.326284000000,1.5466520000,,Quend-Plage,48522,observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-4,https://biolit.fr/observations/observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-4/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_4315-scaled.jpg,,TRUE, +N1,60445,sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5,https://biolit.fr/sorties/sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5/,azelie,,6/26/2017 0:00,20.0:35,21.0000000,50.326284000000,1.5466520000,,Quend-Plage,48524,observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-5,https://biolit.fr/observations/observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-5/,Euspira catena,Natice porte-chaîne,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4306-scaled.jpg,,TRUE, +N1,60445,sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5,https://biolit.fr/sorties/sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5/,azelie,,6/26/2017 0:00,20.0:35,21.0000000,50.326284000000,1.5466520000,,Quend-Plage,48526,observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-6,https://biolit.fr/observations/observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-6/,Donax vittatus,Donace des canards,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4295_0-scaled.jpg,,TRUE, +N1,60445,sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5,https://biolit.fr/sorties/sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5/,azelie,,6/26/2017 0:00,20.0:35,21.0000000,50.326284000000,1.5466520000,,Quend-Plage,48528,observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-7,https://biolit.fr/observations/observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4297-scaled.jpg,,FALSE, +N1,60445,sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5,https://biolit.fr/sorties/sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5/,azelie,,6/26/2017 0:00,20.0:35,21.0000000,50.326284000000,1.5466520000,,Quend-Plage,48530,observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-8,https://biolit.fr/observations/observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4301-scaled.jpg,,FALSE, +N1,60445,sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5,https://biolit.fr/sorties/sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5/,azelie,,6/26/2017 0:00,20.0:35,21.0000000,50.326284000000,1.5466520000,,Quend-Plage,48532,observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-9,https://biolit.fr/observations/observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4313-scaled.jpg,,FALSE, +N1,60445,sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5,https://biolit.fr/sorties/sortie-85147ead-ad0f-4864-98b4-8bbcdf9863c5/,azelie,,6/26/2017 0:00,20.0:35,21.0000000,50.326284000000,1.5466520000,,Quend-Plage,48534,observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-10,https://biolit.fr/observations/observation-85147ead-ad0f-4864-98b4-8bbcdf9863c5-10/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4317-scaled.jpg,,TRUE, +N1,60446,sortie-9a3af524-b18f-447b-9cd1-4319f40a24eb,https://biolit.fr/sorties/sortie-9a3af524-b18f-447b-9cd1-4319f40a24eb/,azelie,,6/26/2017 0:00,16.0:45,16.0000000,50.732135000000,1.592357000000,,Boulogne-sur-mer,48536,observation-9a3af524-b18f-447b-9cd1-4319f40a24eb,https://biolit.fr/observations/observation-9a3af524-b18f-447b-9cd1-4319f40a24eb/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4293-scaled.jpg,,FALSE, +N1,60446,sortie-9a3af524-b18f-447b-9cd1-4319f40a24eb,https://biolit.fr/sorties/sortie-9a3af524-b18f-447b-9cd1-4319f40a24eb/,azelie,,6/26/2017 0:00,16.0:45,16.0000000,50.732135000000,1.592357000000,,Boulogne-sur-mer,48538,observation-9a3af524-b18f-447b-9cd1-4319f40a24eb-2,https://biolit.fr/observations/observation-9a3af524-b18f-447b-9cd1-4319f40a24eb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4291-scaled.jpg,,FALSE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48540,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1421-scaled.jpg,,TRUE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48542,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-2,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-2/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1424-scaled.jpg,,TRUE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48544,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-3,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-3/,Diodora graeca,Fissurelle,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1427-scaled.jpg,,TRUE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48546,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-4,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1429-scaled.jpg,,FALSE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48548,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-5,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-5/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_1430-scaled.jpg,,TRUE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48550,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-6,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-6/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1433-scaled.jpg,,TRUE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48552,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-7,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-7/,Macoma balthica,Telline de la Baltique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1434-scaled.jpg,,TRUE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48554,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-8,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-8/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1438-scaled.jpg,,TRUE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48556,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-9,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1439-scaled.jpg,,FALSE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48558,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-10,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-10/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1440-scaled.jpg,,TRUE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48560,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-11,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1442-scaled.jpg,,FALSE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48562,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-12,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-12/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1446_1-scaled.jpg,,TRUE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48564,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-13,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1448-scaled.jpg,,FALSE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48566,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-14,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1451-scaled.jpg,,FALSE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48568,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-15,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1457_0-scaled.jpg,,FALSE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48570,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-16,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-16/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1460.jpg,,FALSE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48571,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-17,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-17/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1461.jpg,,FALSE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48572,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-18,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-18/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1465-scaled.jpg,,TRUE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48574,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-19,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-19/,,,,https://biolit.fr/wp-content/uploads/2023/05/IMG_1466.jpg,,FALSE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48575,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-20,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1470.jpg,,FALSE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48576,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-21,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1472-scaled.jpg,,FALSE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48578,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-22,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1473-scaled.jpg,,FALSE, +N1,60447,sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e,https://biolit.fr/sorties/sortie-ada568a6-cc91-4fc0-934a-bce49a536a6e/,srhvssr,,6/27/2017 0:00,19.0:25,21.0:25,51.051038000000,2.376442000000,,Plage de Dunkerque,48580,observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-23,https://biolit.fr/observations/observation-ada568a6-cc91-4fc0-934a-bce49a536a6e-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1474-scaled.jpg,,FALSE, +N1,60448,sortie-27359be0-6130-437f-8416-bcd8a2d4ac00,https://biolit.fr/sorties/sortie-27359be0-6130-437f-8416-bcd8a2d4ac00/,Phil,,06/04/2017,20.0:35,20.0000000,47.985811000000,-4.463220000000,,Plozevet - Finistère,48582,observation-27359be0-6130-437f-8416-bcd8a2d4ac00,https://biolit.fr/observations/observation-27359be0-6130-437f-8416-bcd8a2d4ac00/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170604_203559.jpg,,FALSE, +N1,60448,sortie-27359be0-6130-437f-8416-bcd8a2d4ac00,https://biolit.fr/sorties/sortie-27359be0-6130-437f-8416-bcd8a2d4ac00/,Phil,,06/04/2017,20.0:35,20.0000000,47.985811000000,-4.463220000000,,Plozevet - Finistère,48584,observation-27359be0-6130-437f-8416-bcd8a2d4ac00-2,https://biolit.fr/observations/observation-27359be0-6130-437f-8416-bcd8a2d4ac00-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170604_203644.jpg,,FALSE, +N1,60449,sortie-38200e02-1571-4a5a-8c28-fca371d067a2,https://biolit.fr/sorties/sortie-38200e02-1571-4a5a-8c28-fca371d067a2/,Phil,,6/18/2017 0:00,12.0000000,12.000005,47.708687000000,-3.995893000000,,Fouesnant - Finistère,48586,observation-38200e02-1571-4a5a-8c28-fca371d067a2,https://biolit.fr/observations/observation-38200e02-1571-4a5a-8c28-fca371d067a2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070519.JPG,,FALSE, +N1,60449,sortie-38200e02-1571-4a5a-8c28-fca371d067a2,https://biolit.fr/sorties/sortie-38200e02-1571-4a5a-8c28-fca371d067a2/,Phil,,6/18/2017 0:00,12.0000000,12.000005,47.708687000000,-3.995893000000,,Fouesnant - Finistère,48588,observation-38200e02-1571-4a5a-8c28-fca371d067a2-2,https://biolit.fr/observations/observation-38200e02-1571-4a5a-8c28-fca371d067a2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070520.JPG,,FALSE, +N1,60450,sortie-64f73e7a-4f55-49aa-84ff-628d8b60796b,https://biolit.fr/sorties/sortie-64f73e7a-4f55-49aa-84ff-628d8b60796b/,Phil,,05/06/2017,13.0000000,13.000005,47.896358000000,-3.96849100000,,La Forêt-Fouesnant - Finistère,48590,observation-64f73e7a-4f55-49aa-84ff-628d8b60796b,https://biolit.fr/observations/observation-64f73e7a-4f55-49aa-84ff-628d8b60796b/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_130123.jpg,,FALSE, +N1,60450,sortie-64f73e7a-4f55-49aa-84ff-628d8b60796b,https://biolit.fr/sorties/sortie-64f73e7a-4f55-49aa-84ff-628d8b60796b/,Phil,,05/06/2017,13.0000000,13.000005,47.896358000000,-3.96849100000,,La Forêt-Fouesnant - Finistère,48592,observation-64f73e7a-4f55-49aa-84ff-628d8b60796b-2,https://biolit.fr/observations/observation-64f73e7a-4f55-49aa-84ff-628d8b60796b-2/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/20170506_125905.jpg,,TRUE, +N1,60450,sortie-64f73e7a-4f55-49aa-84ff-628d8b60796b,https://biolit.fr/sorties/sortie-64f73e7a-4f55-49aa-84ff-628d8b60796b/,Phil,,05/06/2017,13.0000000,13.000005,47.896358000000,-3.96849100000,,La Forêt-Fouesnant - Finistère,48594,observation-64f73e7a-4f55-49aa-84ff-628d8b60796b-3,https://biolit.fr/observations/observation-64f73e7a-4f55-49aa-84ff-628d8b60796b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_130101.jpg,,FALSE, +N1,60451,sortie-ae768733-2727-480e-bb27-3d88bdfba883,https://biolit.fr/sorties/sortie-ae768733-2727-480e-bb27-3d88bdfba883/,Phil,,6/18/2017 0:00,10.0000000,10.0:45,47.849778000000,-3.956095000000,,Fouesnant - Finistère,48596,observation-ae768733-2727-480e-bb27-3d88bdfba883,https://biolit.fr/observations/observation-ae768733-2727-480e-bb27-3d88bdfba883/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070521_1.JPG,,FALSE, +N1,60452,sortie-17357c4d-c718-4322-9d94-c262e7fb8099,https://biolit.fr/sorties/sortie-17357c4d-c718-4322-9d94-c262e7fb8099/,Phil,,6/18/2017 0:00,11.0:15,11.0000000,47.725076000000,-3.994518000000,,Fouesnant - Finistère,48598,observation-17357c4d-c718-4322-9d94-c262e7fb8099,https://biolit.fr/observations/observation-17357c4d-c718-4322-9d94-c262e7fb8099/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070510.JPG,,FALSE, +N1,60453,sortie-d34b0174-5807-4c60-8421-1850845c57ac,https://biolit.fr/sorties/sortie-d34b0174-5807-4c60-8421-1850845c57ac/,AIEJE,,6/22/2017 0:00,14.0000000,15.0000000,43.330922000000,5.204327000000,,ensues la redonne,48600,observation-d34b0174-5807-4c60-8421-1850845c57ac,https://biolit.fr/observations/observation-d34b0174-5807-4c60-8421-1850845c57ac/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170622_131249-scaled.jpg,,FALSE, +N1,60453,sortie-d34b0174-5807-4c60-8421-1850845c57ac,https://biolit.fr/sorties/sortie-d34b0174-5807-4c60-8421-1850845c57ac/,AIEJE,,6/22/2017 0:00,14.0000000,15.0000000,43.330922000000,5.204327000000,,ensues la redonne,48602,observation-d34b0174-5807-4c60-8421-1850845c57ac-2,https://biolit.fr/observations/observation-d34b0174-5807-4c60-8421-1850845c57ac-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sans titre.png,,FALSE, +N1,60453,sortie-d34b0174-5807-4c60-8421-1850845c57ac,https://biolit.fr/sorties/sortie-d34b0174-5807-4c60-8421-1850845c57ac/,AIEJE,,6/22/2017 0:00,14.0000000,15.0000000,43.330922000000,5.204327000000,,ensues la redonne,48604,observation-d34b0174-5807-4c60-8421-1850845c57ac-3,https://biolit.fr/observations/observation-d34b0174-5807-4c60-8421-1850845c57ac-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sans titr.png,,FALSE, +N1,60454,sortie-a7eaa1b6-4205-4cc9-8a1c-64aed946e2de,https://biolit.fr/sorties/sortie-a7eaa1b6-4205-4cc9-8a1c-64aed946e2de/,Phil,,6/18/2017 0:00,16.0000000,16.0:15,47.72050100000,-3.957097000000,,Fouesnant - Finistère,48606,observation-a7eaa1b6-4205-4cc9-8a1c-64aed946e2de,https://biolit.fr/observations/observation-a7eaa1b6-4205-4cc9-8a1c-64aed946e2de/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070659.JPG,,FALSE, +N1,60454,sortie-a7eaa1b6-4205-4cc9-8a1c-64aed946e2de,https://biolit.fr/sorties/sortie-a7eaa1b6-4205-4cc9-8a1c-64aed946e2de/,Phil,,6/18/2017 0:00,16.0000000,16.0:15,47.72050100000,-3.957097000000,,Fouesnant - Finistère,48608,observation-a7eaa1b6-4205-4cc9-8a1c-64aed946e2de-2,https://biolit.fr/observations/observation-a7eaa1b6-4205-4cc9-8a1c-64aed946e2de-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070663.JPG,,FALSE, +N1,60454,sortie-a7eaa1b6-4205-4cc9-8a1c-64aed946e2de,https://biolit.fr/sorties/sortie-a7eaa1b6-4205-4cc9-8a1c-64aed946e2de/,Phil,,6/18/2017 0:00,16.0000000,16.0:15,47.72050100000,-3.957097000000,,Fouesnant - Finistère,48610,observation-a7eaa1b6-4205-4cc9-8a1c-64aed946e2de-3,https://biolit.fr/observations/observation-a7eaa1b6-4205-4cc9-8a1c-64aed946e2de-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070668.JPG,,FALSE, +N1,60455,sortie-918d99e9-8874-4ac6-8e8b-158d2557ce9a,https://biolit.fr/sorties/sortie-918d99e9-8874-4ac6-8e8b-158d2557ce9a/,Marion,,3/26/2017 0:00,11.0000000,12.0000000,43.071461000000,6.153191000000,,"Plage des Pesquiers, 83400",48612,observation-918d99e9-8874-4ac6-8e8b-158d2557ce9a,https://biolit.fr/observations/observation-918d99e9-8874-4ac6-8e8b-158d2557ce9a/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6807-scaled.jpg,,FALSE, +N1,60455,sortie-918d99e9-8874-4ac6-8e8b-158d2557ce9a,https://biolit.fr/sorties/sortie-918d99e9-8874-4ac6-8e8b-158d2557ce9a/,Marion,,3/26/2017 0:00,11.0000000,12.0000000,43.071461000000,6.153191000000,,"Plage des Pesquiers, 83400",48614,observation-918d99e9-8874-4ac6-8e8b-158d2557ce9a-2,https://biolit.fr/observations/observation-918d99e9-8874-4ac6-8e8b-158d2557ce9a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6808-scaled.jpg,,FALSE, +N1,60455,sortie-918d99e9-8874-4ac6-8e8b-158d2557ce9a,https://biolit.fr/sorties/sortie-918d99e9-8874-4ac6-8e8b-158d2557ce9a/,Marion,,3/26/2017 0:00,11.0000000,12.0000000,43.071461000000,6.153191000000,,"Plage des Pesquiers, 83400",48616,observation-918d99e9-8874-4ac6-8e8b-158d2557ce9a-3,https://biolit.fr/observations/observation-918d99e9-8874-4ac6-8e8b-158d2557ce9a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6812-scaled.jpg,,FALSE, +N1,60456,sortie-7d70b78e-51b0-45f6-a40d-5ce5130dee1e,https://biolit.fr/sorties/sortie-7d70b78e-51b0-45f6-a40d-5ce5130dee1e/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236111000000,5.360110000000,,plage de la Bonne Brise,48618,observation-7d70b78e-51b0-45f6-a40d-5ce5130dee1e,https://biolit.fr/observations/observation-7d70b78e-51b0-45f6-a40d-5ce5130dee1e/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/2023/07/P6210412-scaled.jpg,,TRUE, +N1,60456,sortie-7d70b78e-51b0-45f6-a40d-5ce5130dee1e,https://biolit.fr/sorties/sortie-7d70b78e-51b0-45f6-a40d-5ce5130dee1e/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236111000000,5.360110000000,,plage de la Bonne Brise,48620,observation-7d70b78e-51b0-45f6-a40d-5ce5130dee1e-2,https://biolit.fr/observations/observation-7d70b78e-51b0-45f6-a40d-5ce5130dee1e-2/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/2023/07/P6210415-scaled.jpg,,TRUE, +N1,60456,sortie-7d70b78e-51b0-45f6-a40d-5ce5130dee1e,https://biolit.fr/sorties/sortie-7d70b78e-51b0-45f6-a40d-5ce5130dee1e/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236111000000,5.360110000000,,plage de la Bonne Brise,48622,observation-7d70b78e-51b0-45f6-a40d-5ce5130dee1e-3,https://biolit.fr/observations/observation-7d70b78e-51b0-45f6-a40d-5ce5130dee1e-3/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/2023/07/P6210416-scaled.jpg,,TRUE, +N1,60456,sortie-7d70b78e-51b0-45f6-a40d-5ce5130dee1e,https://biolit.fr/sorties/sortie-7d70b78e-51b0-45f6-a40d-5ce5130dee1e/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236111000000,5.360110000000,,plage de la Bonne Brise,48624,observation-7d70b78e-51b0-45f6-a40d-5ce5130dee1e-4,https://biolit.fr/observations/observation-7d70b78e-51b0-45f6-a40d-5ce5130dee1e-4/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/2023/07/P6210420-scaled.jpg,,TRUE, +N1,60456,sortie-7d70b78e-51b0-45f6-a40d-5ce5130dee1e,https://biolit.fr/sorties/sortie-7d70b78e-51b0-45f6-a40d-5ce5130dee1e/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236111000000,5.360110000000,,plage de la Bonne Brise,48626,observation-7d70b78e-51b0-45f6-a40d-5ce5130dee1e-5,https://biolit.fr/observations/observation-7d70b78e-51b0-45f6-a40d-5ce5130dee1e-5/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/2023/07/P6210423-scaled.jpg,,TRUE, +N1,60457,sortie-585e4518-7e0b-4a93-9cf2-28114caecbf4,https://biolit.fr/sorties/sortie-585e4518-7e0b-4a93-9cf2-28114caecbf4/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.2360530000,5.360056000000,,plage de la Bonne Brise,48628,observation-585e4518-7e0b-4a93-9cf2-28114caecbf4,https://biolit.fr/observations/observation-585e4518-7e0b-4a93-9cf2-28114caecbf4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210428-scaled.jpg,,FALSE, +N1,60458,sortie-88b1e88d-cd8f-441e-ad6e-d072947bf092,https://biolit.fr/sorties/sortie-88b1e88d-cd8f-441e-ad6e-d072947bf092/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236002000000,5.36012000000,,plage de la Bonne Brise,48630,observation-88b1e88d-cd8f-441e-ad6e-d072947bf092,https://biolit.fr/observations/observation-88b1e88d-cd8f-441e-ad6e-d072947bf092/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210388-scaled.jpg,,FALSE, +N1,60459,sortie-e964d84d-3298-4924-ad78-6ffa4b372486,https://biolit.fr/sorties/sortie-e964d84d-3298-4924-ad78-6ffa4b372486/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235979000000,5.360056000000,,plage de la Bonne Brise,48632,observation-e964d84d-3298-4924-ad78-6ffa4b372486,https://biolit.fr/observations/observation-e964d84d-3298-4924-ad78-6ffa4b372486/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210366-scaled.jpg,,FALSE, +N1,60459,sortie-e964d84d-3298-4924-ad78-6ffa4b372486,https://biolit.fr/sorties/sortie-e964d84d-3298-4924-ad78-6ffa4b372486/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235979000000,5.360056000000,,plage de la Bonne Brise,48634,observation-e964d84d-3298-4924-ad78-6ffa4b372486-2,https://biolit.fr/observations/observation-e964d84d-3298-4924-ad78-6ffa4b372486-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210367-scaled.jpg,,FALSE, +N1,60460,sortie-5e2f55f8-4ba8-4bc0-9865-4fcd1ce6b6bb,https://biolit.fr/sorties/sortie-5e2f55f8-4ba8-4bc0-9865-4fcd1ce6b6bb/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236057000000,5.36006700000,,plage de la Bonne Brise,48636,observation-5e2f55f8-4ba8-4bc0-9865-4fcd1ce6b6bb,https://biolit.fr/observations/observation-5e2f55f8-4ba8-4bc0-9865-4fcd1ce6b6bb/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210358-scaled.jpg,,FALSE, +N1,60460,sortie-5e2f55f8-4ba8-4bc0-9865-4fcd1ce6b6bb,https://biolit.fr/sorties/sortie-5e2f55f8-4ba8-4bc0-9865-4fcd1ce6b6bb/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236057000000,5.36006700000,,plage de la Bonne Brise,48638,observation-5e2f55f8-4ba8-4bc0-9865-4fcd1ce6b6bb-2,https://biolit.fr/observations/observation-5e2f55f8-4ba8-4bc0-9865-4fcd1ce6b6bb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210359-scaled.jpg,,FALSE, +N1,60461,sortie-45f174ff-9dd9-45af-9f74-3b8d4f98fce4,https://biolit.fr/sorties/sortie-45f174ff-9dd9-45af-9f74-3b8d4f98fce4/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235783000000,5.360051000000,,plage de la Bonne Brise,48640,observation-45f174ff-9dd9-45af-9f74-3b8d4f98fce4,https://biolit.fr/observations/observation-45f174ff-9dd9-45af-9f74-3b8d4f98fce4/,Coris julis,Girelle commune,,https://biolit.fr/wp-content/uploads/2023/07/P6210344-scaled.jpg,,TRUE, +N1,60461,sortie-45f174ff-9dd9-45af-9f74-3b8d4f98fce4,https://biolit.fr/sorties/sortie-45f174ff-9dd9-45af-9f74-3b8d4f98fce4/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235783000000,5.360051000000,,plage de la Bonne Brise,48642,observation-45f174ff-9dd9-45af-9f74-3b8d4f98fce4-2,https://biolit.fr/observations/observation-45f174ff-9dd9-45af-9f74-3b8d4f98fce4-2/,Coris julis,Girelle commune,,https://biolit.fr/wp-content/uploads/2023/07/P6210346-scaled.jpg,,TRUE, +N1,60462,sortie-4894d588-042d-44f1-b8db-ec4cdedb6704,https://biolit.fr/sorties/sortie-4894d588-042d-44f1-b8db-ec4cdedb6704/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236018000000,5.36006700000,,plage de la Bonne Brise,48644,observation-4894d588-042d-44f1-b8db-ec4cdedb6704,https://biolit.fr/observations/observation-4894d588-042d-44f1-b8db-ec4cdedb6704/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210338-scaled.jpg,,FALSE, +N1,60463,sortie-14c6d063-e0ce-4392-a237-83a64bf4ba2e,https://biolit.fr/sorties/sortie-14c6d063-e0ce-4392-a237-83a64bf4ba2e/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235994000000,5.360110000000,,plage de la Bonne Brise,48646,observation-14c6d063-e0ce-4392-a237-83a64bf4ba2e,https://biolit.fr/observations/observation-14c6d063-e0ce-4392-a237-83a64bf4ba2e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210323-scaled.jpg,,FALSE, +N1,60463,sortie-14c6d063-e0ce-4392-a237-83a64bf4ba2e,https://biolit.fr/sorties/sortie-14c6d063-e0ce-4392-a237-83a64bf4ba2e/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235994000000,5.360110000000,,plage de la Bonne Brise,48648,observation-14c6d063-e0ce-4392-a237-83a64bf4ba2e-2,https://biolit.fr/observations/observation-14c6d063-e0ce-4392-a237-83a64bf4ba2e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210325-scaled.jpg,,FALSE, +N1,60463,sortie-14c6d063-e0ce-4392-a237-83a64bf4ba2e,https://biolit.fr/sorties/sortie-14c6d063-e0ce-4392-a237-83a64bf4ba2e/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235994000000,5.360110000000,,plage de la Bonne Brise,48650,observation-14c6d063-e0ce-4392-a237-83a64bf4ba2e-3,https://biolit.fr/observations/observation-14c6d063-e0ce-4392-a237-83a64bf4ba2e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210327-scaled.jpg,,FALSE, +N1,60464,sortie-c0252b27-0562-43b7-8f26-4c7a8ecf49fa,https://biolit.fr/sorties/sortie-c0252b27-0562-43b7-8f26-4c7a8ecf49fa/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236092000000,5.360008000000,,plage de la Bonne Brise,48652,observation-c0252b27-0562-43b7-8f26-4c7a8ecf49fa,https://biolit.fr/observations/observation-c0252b27-0562-43b7-8f26-4c7a8ecf49fa/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210307-scaled.jpg,,FALSE, +N1,60464,sortie-c0252b27-0562-43b7-8f26-4c7a8ecf49fa,https://biolit.fr/sorties/sortie-c0252b27-0562-43b7-8f26-4c7a8ecf49fa/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236092000000,5.360008000000,,plage de la Bonne Brise,48654,observation-c0252b27-0562-43b7-8f26-4c7a8ecf49fa-2,https://biolit.fr/observations/observation-c0252b27-0562-43b7-8f26-4c7a8ecf49fa-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210311-scaled.jpg,,FALSE, +N1,60464,sortie-c0252b27-0562-43b7-8f26-4c7a8ecf49fa,https://biolit.fr/sorties/sortie-c0252b27-0562-43b7-8f26-4c7a8ecf49fa/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236092000000,5.360008000000,,plage de la Bonne Brise,48656,observation-c0252b27-0562-43b7-8f26-4c7a8ecf49fa-3,https://biolit.fr/observations/observation-c0252b27-0562-43b7-8f26-4c7a8ecf49fa-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210308_0-scaled.jpg,,FALSE, +N1,60464,sortie-c0252b27-0562-43b7-8f26-4c7a8ecf49fa,https://biolit.fr/sorties/sortie-c0252b27-0562-43b7-8f26-4c7a8ecf49fa/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236092000000,5.360008000000,,plage de la Bonne Brise,48658,observation-c0252b27-0562-43b7-8f26-4c7a8ecf49fa-4,https://biolit.fr/observations/observation-c0252b27-0562-43b7-8f26-4c7a8ecf49fa-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210309-scaled.jpg,,FALSE, +N1,60464,sortie-c0252b27-0562-43b7-8f26-4c7a8ecf49fa,https://biolit.fr/sorties/sortie-c0252b27-0562-43b7-8f26-4c7a8ecf49fa/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236092000000,5.360008000000,,plage de la Bonne Brise,48660,observation-c0252b27-0562-43b7-8f26-4c7a8ecf49fa-5,https://biolit.fr/observations/observation-c0252b27-0562-43b7-8f26-4c7a8ecf49fa-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210310-scaled.jpg,,FALSE, +N1,60465,sortie-b263c48d-58fd-493b-ae8b-3f813cfdb8d1,https://biolit.fr/sorties/sortie-b263c48d-58fd-493b-ae8b-3f813cfdb8d1/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236025000000,5.360099000000,,plage de la Bonne Brise,48662,observation-b263c48d-58fd-493b-ae8b-3f813cfdb8d1,https://biolit.fr/observations/observation-b263c48d-58fd-493b-ae8b-3f813cfdb8d1/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/P6210320-scaled.jpg,,TRUE, +N1,60466,sortie-fbe26415-c5e2-4ee8-be71-739adca1fd38,https://biolit.fr/sorties/sortie-fbe26415-c5e2-4ee8-be71-739adca1fd38/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236025000000,5.360034000000,,plage de la Bonne Brise,48666,observation-fbe26415-c5e2-4ee8-be71-739adca1fd38,https://biolit.fr/observations/observation-fbe26415-c5e2-4ee8-be71-739adca1fd38/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P6210317-scaled.jpg,,TRUE, +N1,60467,sortie-2697d358-2783-41d0-8515-105bfcb255dc,https://biolit.fr/sorties/sortie-2697d358-2783-41d0-8515-105bfcb255dc/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236016000000,5.36006700000,,plage de la Bonne Brise,48668,observation-2697d358-2783-41d0-8515-105bfcb255dc,https://biolit.fr/observations/observation-2697d358-2783-41d0-8515-105bfcb255dc/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210304-scaled.jpg,,FALSE, +N1,60468,sortie-d4bcadfe-bcac-401b-9de7-40a7f9603461,https://biolit.fr/sorties/sortie-d4bcadfe-bcac-401b-9de7-40a7f9603461/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235981000000,5.360026000000,,plage de la Bonne Brise,48670,observation-d4bcadfe-bcac-401b-9de7-40a7f9603461,https://biolit.fr/observations/observation-d4bcadfe-bcac-401b-9de7-40a7f9603461/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210288-scaled.jpg,,FALSE, +N1,60468,sortie-d4bcadfe-bcac-401b-9de7-40a7f9603461,https://biolit.fr/sorties/sortie-d4bcadfe-bcac-401b-9de7-40a7f9603461/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235981000000,5.360026000000,,plage de la Bonne Brise,48672,observation-d4bcadfe-bcac-401b-9de7-40a7f9603461-2,https://biolit.fr/observations/observation-d4bcadfe-bcac-401b-9de7-40a7f9603461-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210290-scaled.jpg,,FALSE, +N1,60468,sortie-d4bcadfe-bcac-401b-9de7-40a7f9603461,https://biolit.fr/sorties/sortie-d4bcadfe-bcac-401b-9de7-40a7f9603461/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235981000000,5.360026000000,,plage de la Bonne Brise,48674,observation-d4bcadfe-bcac-401b-9de7-40a7f9603461-3,https://biolit.fr/observations/observation-d4bcadfe-bcac-401b-9de7-40a7f9603461-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210293-scaled.jpg,,FALSE, +N1,60468,sortie-d4bcadfe-bcac-401b-9de7-40a7f9603461,https://biolit.fr/sorties/sortie-d4bcadfe-bcac-401b-9de7-40a7f9603461/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235981000000,5.360026000000,,plage de la Bonne Brise,48676,observation-d4bcadfe-bcac-401b-9de7-40a7f9603461-4,https://biolit.fr/observations/observation-d4bcadfe-bcac-401b-9de7-40a7f9603461-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210294-scaled.jpg,,FALSE, +N1,60468,sortie-d4bcadfe-bcac-401b-9de7-40a7f9603461,https://biolit.fr/sorties/sortie-d4bcadfe-bcac-401b-9de7-40a7f9603461/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235981000000,5.360026000000,,plage de la Bonne Brise,48678,observation-d4bcadfe-bcac-401b-9de7-40a7f9603461-5,https://biolit.fr/observations/observation-d4bcadfe-bcac-401b-9de7-40a7f9603461-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210296-scaled.jpg,,FALSE, +N1,60469,sortie-2e8ff135-5ae6-4502-9506-bba35cc49123,https://biolit.fr/sorties/sortie-2e8ff135-5ae6-4502-9506-bba35cc49123/,ludovic,,6/22/2017 0:00,14.0000000,15.0000000,43.236025000000,5.360110000000,,plage de la Bonne Brise,48680,observation-2e8ff135-5ae6-4502-9506-bba35cc49123,https://biolit.fr/observations/observation-2e8ff135-5ae6-4502-9506-bba35cc49123/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210300-scaled.jpg,,FALSE, +N1,60470,sortie-db64df0e-6445-49b8-8728-5b5553e9e032,https://biolit.fr/sorties/sortie-db64df0e-6445-49b8-8728-5b5553e9e032/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235893000000,5.360072000000,,plage de la Bonne Brise,48682,observation-db64df0e-6445-49b8-8728-5b5553e9e032,https://biolit.fr/observations/observation-db64df0e-6445-49b8-8728-5b5553e9e032/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210297-scaled.jpg,,TRUE, +N1,60470,sortie-db64df0e-6445-49b8-8728-5b5553e9e032,https://biolit.fr/sorties/sortie-db64df0e-6445-49b8-8728-5b5553e9e032/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235893000000,5.360072000000,,plage de la Bonne Brise,48684,observation-db64df0e-6445-49b8-8728-5b5553e9e032-2,https://biolit.fr/observations/observation-db64df0e-6445-49b8-8728-5b5553e9e032-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210298-scaled.jpg,,TRUE, +N1,60471,sortie-528ac6cd-8552-4825-b598-0d8b253e31f7,https://biolit.fr/sorties/sortie-528ac6cd-8552-4825-b598-0d8b253e31f7/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236041000000,5.360013000000,,plage de la Bonne Brise,48686,observation-528ac6cd-8552-4825-b598-0d8b253e31f7,https://biolit.fr/observations/observation-528ac6cd-8552-4825-b598-0d8b253e31f7/,Diplodus puntazzo,Sar à museau pointu,,https://biolit.fr/wp-content/uploads/2023/07/P6210281-scaled.jpg,,TRUE, +N1,60471,sortie-528ac6cd-8552-4825-b598-0d8b253e31f7,https://biolit.fr/sorties/sortie-528ac6cd-8552-4825-b598-0d8b253e31f7/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236041000000,5.360013000000,,plage de la Bonne Brise,48688,observation-528ac6cd-8552-4825-b598-0d8b253e31f7-2,https://biolit.fr/observations/observation-528ac6cd-8552-4825-b598-0d8b253e31f7-2/,Diplodus puntazzo,Sar à museau pointu,,https://biolit.fr/wp-content/uploads/2023/07/P6210283-scaled.jpg,,TRUE, +N1,60472,sortie-8114130f-9665-4cf7-81ff-6a97fe6c94d5,https://biolit.fr/sorties/sortie-8114130f-9665-4cf7-81ff-6a97fe6c94d5/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236018000000,5.360056000000,,plage de la Bonne Brise,48690,observation-8114130f-9665-4cf7-81ff-6a97fe6c94d5,https://biolit.fr/observations/observation-8114130f-9665-4cf7-81ff-6a97fe6c94d5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210278-scaled.jpg,,FALSE, +N1,60472,sortie-8114130f-9665-4cf7-81ff-6a97fe6c94d5,https://biolit.fr/sorties/sortie-8114130f-9665-4cf7-81ff-6a97fe6c94d5/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236018000000,5.360056000000,,plage de la Bonne Brise,48692,observation-8114130f-9665-4cf7-81ff-6a97fe6c94d5-2,https://biolit.fr/observations/observation-8114130f-9665-4cf7-81ff-6a97fe6c94d5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210279-scaled.jpg,,FALSE, +N1,60473,sortie-0ed7ff45-a9b6-461b-be6b-c1127e50a554,https://biolit.fr/sorties/sortie-0ed7ff45-a9b6-461b-be6b-c1127e50a554/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236178000000,5.360013000000,,plage de la Bonne Brise,48694,observation-0ed7ff45-a9b6-461b-be6b-c1127e50a554,https://biolit.fr/observations/observation-0ed7ff45-a9b6-461b-be6b-c1127e50a554/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/P6210277-scaled.jpg,,TRUE, +N1,60473,sortie-0ed7ff45-a9b6-461b-be6b-c1127e50a554,https://biolit.fr/sorties/sortie-0ed7ff45-a9b6-461b-be6b-c1127e50a554/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236178000000,5.360013000000,,plage de la Bonne Brise,48696,observation-0ed7ff45-a9b6-461b-be6b-c1127e50a554-2,https://biolit.fr/observations/observation-0ed7ff45-a9b6-461b-be6b-c1127e50a554-2/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/P6210313-scaled.jpg,,TRUE, +N1,60474,sortie-66b9aab1-2dd3-42fb-b408-fc8410053948,https://biolit.fr/sorties/sortie-66b9aab1-2dd3-42fb-b408-fc8410053948/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236057000000,5.36006700000,,plage de la Bonne Brise,48698,observation-66b9aab1-2dd3-42fb-b408-fc8410053948,https://biolit.fr/observations/observation-66b9aab1-2dd3-42fb-b408-fc8410053948/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210265-scaled.jpg,,FALSE, +N1,60474,sortie-66b9aab1-2dd3-42fb-b408-fc8410053948,https://biolit.fr/sorties/sortie-66b9aab1-2dd3-42fb-b408-fc8410053948/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236057000000,5.36006700000,,plage de la Bonne Brise,48700,observation-66b9aab1-2dd3-42fb-b408-fc8410053948-2,https://biolit.fr/observations/observation-66b9aab1-2dd3-42fb-b408-fc8410053948-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210273-scaled.jpg,,FALSE, +N1,60474,sortie-66b9aab1-2dd3-42fb-b408-fc8410053948,https://biolit.fr/sorties/sortie-66b9aab1-2dd3-42fb-b408-fc8410053948/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236057000000,5.36006700000,,plage de la Bonne Brise,48702,observation-66b9aab1-2dd3-42fb-b408-fc8410053948-3,https://biolit.fr/observations/observation-66b9aab1-2dd3-42fb-b408-fc8410053948-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210274-scaled.jpg,,FALSE, +N1,60475,sortie-8507b3f9-f7aa-484e-a1b3-b2f354856e5d,https://biolit.fr/sorties/sortie-8507b3f9-f7aa-484e-a1b3-b2f354856e5d/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236057000000,5.360077000000,,plage de la Bonne Brise,48704,observation-8507b3f9-f7aa-484e-a1b3-b2f354856e5d,https://biolit.fr/observations/observation-8507b3f9-f7aa-484e-a1b3-b2f354856e5d/,Halopteris scoparia,Algue balai,,https://biolit.fr/wp-content/uploads/2023/07/P6210255-scaled.jpg,,TRUE, +N1,60475,sortie-8507b3f9-f7aa-484e-a1b3-b2f354856e5d,https://biolit.fr/sorties/sortie-8507b3f9-f7aa-484e-a1b3-b2f354856e5d/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236057000000,5.360077000000,,plage de la Bonne Brise,48706,observation-8507b3f9-f7aa-484e-a1b3-b2f354856e5d-2,https://biolit.fr/observations/observation-8507b3f9-f7aa-484e-a1b3-b2f354856e5d-2/,Halopteris scoparia,Algue balai,,https://biolit.fr/wp-content/uploads/2023/07/P6210254-scaled.jpg,,TRUE, +N1,60475,sortie-8507b3f9-f7aa-484e-a1b3-b2f354856e5d,https://biolit.fr/sorties/sortie-8507b3f9-f7aa-484e-a1b3-b2f354856e5d/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236057000000,5.360077000000,,plage de la Bonne Brise,48708,observation-8507b3f9-f7aa-484e-a1b3-b2f354856e5d-3,https://biolit.fr/observations/observation-8507b3f9-f7aa-484e-a1b3-b2f354856e5d-3/,Halopteris scoparia,Algue balai,,https://biolit.fr/wp-content/uploads/2023/07/P6210256-scaled.jpg,,TRUE, +N1,60476,sortie-a33e081a-9bec-4c92-80b4-d0c35e882493,https://biolit.fr/sorties/sortie-a33e081a-9bec-4c92-80b4-d0c35e882493/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235846000000,5.360045000000,,plage de la Bonne Brise,48710,observation-a33e081a-9bec-4c92-80b4-d0c35e882493,https://biolit.fr/observations/observation-a33e081a-9bec-4c92-80b4-d0c35e882493/,Symphodus roissali,Crénilabre à cinq taches,,https://biolit.fr/wp-content/uploads/2023/07/P6210257-scaled.jpg,,TRUE, +N1,60477,sortie-df13ca2d-b471-499e-85bf-9b66d0ffba8a,https://biolit.fr/sorties/sortie-df13ca2d-b471-499e-85bf-9b66d0ffba8a/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236057000000,5.360045000000,,plage de la Bonne Brise,48712,observation-df13ca2d-b471-499e-85bf-9b66d0ffba8a,https://biolit.fr/observations/observation-df13ca2d-b471-499e-85bf-9b66d0ffba8a/,Diplodus sargus,Sar commun de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/P6210251-scaled.jpg,,TRUE, +N1,60477,sortie-df13ca2d-b471-499e-85bf-9b66d0ffba8a,https://biolit.fr/sorties/sortie-df13ca2d-b471-499e-85bf-9b66d0ffba8a/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236057000000,5.360045000000,,plage de la Bonne Brise,48714,observation-df13ca2d-b471-499e-85bf-9b66d0ffba8a-2,https://biolit.fr/observations/observation-df13ca2d-b471-499e-85bf-9b66d0ffba8a-2/,Diplodus sargus,Sar commun de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/P6210252-scaled.jpg,,TRUE, +N1,60477,sortie-df13ca2d-b471-499e-85bf-9b66d0ffba8a,https://biolit.fr/sorties/sortie-df13ca2d-b471-499e-85bf-9b66d0ffba8a/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236057000000,5.360045000000,,plage de la Bonne Brise,48716,observation-df13ca2d-b471-499e-85bf-9b66d0ffba8a-3,https://biolit.fr/observations/observation-df13ca2d-b471-499e-85bf-9b66d0ffba8a-3/,Coris julis,Girelle commune,,https://biolit.fr/wp-content/uploads/2023/07/P6210334-scaled.jpg,,TRUE, +N1,60478,sortie-0d3fac6b-6fee-45ce-8d0f-e576d345028d,https://biolit.fr/sorties/sortie-0d3fac6b-6fee-45ce-8d0f-e576d345028d/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236088000000,5.360026000000,,plage de la Bonne Brise,48718,observation-0d3fac6b-6fee-45ce-8d0f-e576d345028d,https://biolit.fr/observations/observation-0d3fac6b-6fee-45ce-8d0f-e576d345028d/,Diplodus vulgaris,Sar à tête noire,,https://biolit.fr/wp-content/uploads/2023/07/P6210247-scaled.jpg,,TRUE, +N1,60478,sortie-0d3fac6b-6fee-45ce-8d0f-e576d345028d,https://biolit.fr/sorties/sortie-0d3fac6b-6fee-45ce-8d0f-e576d345028d/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236088000000,5.360026000000,,plage de la Bonne Brise,48720,observation-0d3fac6b-6fee-45ce-8d0f-e576d345028d-2,https://biolit.fr/observations/observation-0d3fac6b-6fee-45ce-8d0f-e576d345028d-2/,Diplodus vulgaris,Sar à tête noire,,https://biolit.fr/wp-content/uploads/2023/07/P6210248-scaled.jpg,,TRUE, +N1,60478,sortie-0d3fac6b-6fee-45ce-8d0f-e576d345028d,https://biolit.fr/sorties/sortie-0d3fac6b-6fee-45ce-8d0f-e576d345028d/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236088000000,5.360026000000,,plage de la Bonne Brise,48722,observation-0d3fac6b-6fee-45ce-8d0f-e576d345028d-3,https://biolit.fr/observations/observation-0d3fac6b-6fee-45ce-8d0f-e576d345028d-3/,Diplodus vulgaris,Sar à tête noire,,https://biolit.fr/wp-content/uploads/2023/07/P6210261-scaled.jpg,,TRUE, +N1,60478,sortie-0d3fac6b-6fee-45ce-8d0f-e576d345028d,https://biolit.fr/sorties/sortie-0d3fac6b-6fee-45ce-8d0f-e576d345028d/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236088000000,5.360026000000,,plage de la Bonne Brise,48724,observation-0d3fac6b-6fee-45ce-8d0f-e576d345028d-4,https://biolit.fr/observations/observation-0d3fac6b-6fee-45ce-8d0f-e576d345028d-4/,Diplodus vulgaris,Sar à tête noire,,https://biolit.fr/wp-content/uploads/2023/07/P6210287-scaled.jpg,,TRUE, +N1,60479,sortie-817439fd-da8e-44bf-8ff9-9ca4bc60adf2,https://biolit.fr/sorties/sortie-817439fd-da8e-44bf-8ff9-9ca4bc60adf2/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236041000000,5.360008000000,,plage de la Bonne Brise,48726,observation-817439fd-da8e-44bf-8ff9-9ca4bc60adf2,https://biolit.fr/observations/observation-817439fd-da8e-44bf-8ff9-9ca4bc60adf2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210237-scaled.jpg,,FALSE, +N1,60479,sortie-817439fd-da8e-44bf-8ff9-9ca4bc60adf2,https://biolit.fr/sorties/sortie-817439fd-da8e-44bf-8ff9-9ca4bc60adf2/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236041000000,5.360008000000,,plage de la Bonne Brise,48728,observation-817439fd-da8e-44bf-8ff9-9ca4bc60adf2-2,https://biolit.fr/observations/observation-817439fd-da8e-44bf-8ff9-9ca4bc60adf2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210242-scaled.jpg,,FALSE, +N1,60479,sortie-817439fd-da8e-44bf-8ff9-9ca4bc60adf2,https://biolit.fr/sorties/sortie-817439fd-da8e-44bf-8ff9-9ca4bc60adf2/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236041000000,5.360008000000,,plage de la Bonne Brise,48730,observation-817439fd-da8e-44bf-8ff9-9ca4bc60adf2-3,https://biolit.fr/observations/observation-817439fd-da8e-44bf-8ff9-9ca4bc60adf2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210243-scaled.jpg,,FALSE, +N1,60480,sortie-9d4420b9-dd21-40ab-98ab-cd4881a893bf,https://biolit.fr/sorties/sortie-9d4420b9-dd21-40ab-98ab-cd4881a893bf/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235865000000,5.360040000000,,plage de la Bonne Brise,48732,observation-9d4420b9-dd21-40ab-98ab-cd4881a893bf,https://biolit.fr/observations/observation-9d4420b9-dd21-40ab-98ab-cd4881a893bf/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210235-scaled.jpg,,FALSE, +N1,60480,sortie-9d4420b9-dd21-40ab-98ab-cd4881a893bf,https://biolit.fr/sorties/sortie-9d4420b9-dd21-40ab-98ab-cd4881a893bf/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235865000000,5.360040000000,,plage de la Bonne Brise,48734,observation-9d4420b9-dd21-40ab-98ab-cd4881a893bf-2,https://biolit.fr/observations/observation-9d4420b9-dd21-40ab-98ab-cd4881a893bf-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210239-scaled.jpg,,FALSE, +N1,60480,sortie-9d4420b9-dd21-40ab-98ab-cd4881a893bf,https://biolit.fr/sorties/sortie-9d4420b9-dd21-40ab-98ab-cd4881a893bf/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235865000000,5.360040000000,,plage de la Bonne Brise,48736,observation-9d4420b9-dd21-40ab-98ab-cd4881a893bf-3,https://biolit.fr/observations/observation-9d4420b9-dd21-40ab-98ab-cd4881a893bf-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210240-scaled.jpg,,FALSE, +N1,60480,sortie-9d4420b9-dd21-40ab-98ab-cd4881a893bf,https://biolit.fr/sorties/sortie-9d4420b9-dd21-40ab-98ab-cd4881a893bf/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.235865000000,5.360040000000,,plage de la Bonne Brise,48738,observation-9d4420b9-dd21-40ab-98ab-cd4881a893bf-4,https://biolit.fr/observations/observation-9d4420b9-dd21-40ab-98ab-cd4881a893bf-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210241-scaled.jpg,,FALSE, +N1,60481,sortie-5e9dba93-2279-476b-8395-2f0636a211a1,https://biolit.fr/sorties/sortie-5e9dba93-2279-476b-8395-2f0636a211a1/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236158000000,5.359997000000,,plage de la Bonne Brise,48740,observation-5e9dba93-2279-476b-8395-2f0636a211a1,https://biolit.fr/observations/observation-5e9dba93-2279-476b-8395-2f0636a211a1/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210230-scaled.jpg,,FALSE, +N1,60481,sortie-5e9dba93-2279-476b-8395-2f0636a211a1,https://biolit.fr/sorties/sortie-5e9dba93-2279-476b-8395-2f0636a211a1/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236158000000,5.359997000000,,plage de la Bonne Brise,48742,observation-5e9dba93-2279-476b-8395-2f0636a211a1-2,https://biolit.fr/observations/observation-5e9dba93-2279-476b-8395-2f0636a211a1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210231-scaled.jpg,,FALSE, +N1,60481,sortie-5e9dba93-2279-476b-8395-2f0636a211a1,https://biolit.fr/sorties/sortie-5e9dba93-2279-476b-8395-2f0636a211a1/,ludovic,,6/21/2017 0:00,14.0000000,15.0000000,43.236158000000,5.359997000000,,plage de la Bonne Brise,48744,observation-5e9dba93-2279-476b-8395-2f0636a211a1-3,https://biolit.fr/observations/observation-5e9dba93-2279-476b-8395-2f0636a211a1-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6210233-scaled.jpg,,FALSE, +N1,60482,sortie-88c1b3f3-64e2-4888-b502-1b219c7c47c9,https://biolit.fr/sorties/sortie-88c1b3f3-64e2-4888-b502-1b219c7c47c9/,Phil,,06/04/2017,20.0:25,20.0000000,47.985532000000,-4.463099000000,,Plozevet - Finistère,48746,observation-88c1b3f3-64e2-4888-b502-1b219c7c47c9,https://biolit.fr/observations/observation-88c1b3f3-64e2-4888-b502-1b219c7c47c9/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/20170604_202901.jpg,,TRUE, +N1,60482,sortie-88c1b3f3-64e2-4888-b502-1b219c7c47c9,https://biolit.fr/sorties/sortie-88c1b3f3-64e2-4888-b502-1b219c7c47c9/,Phil,,06/04/2017,20.0:25,20.0000000,47.985532000000,-4.463099000000,,Plozevet - Finistère,48748,observation-88c1b3f3-64e2-4888-b502-1b219c7c47c9-2,https://biolit.fr/observations/observation-88c1b3f3-64e2-4888-b502-1b219c7c47c9-2/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/20170604_203016.jpg,,TRUE, +N1,60482,sortie-88c1b3f3-64e2-4888-b502-1b219c7c47c9,https://biolit.fr/sorties/sortie-88c1b3f3-64e2-4888-b502-1b219c7c47c9/,Phil,,06/04/2017,20.0:25,20.0000000,47.985532000000,-4.463099000000,,Plozevet - Finistère,48750,observation-88c1b3f3-64e2-4888-b502-1b219c7c47c9-3,https://biolit.fr/observations/observation-88c1b3f3-64e2-4888-b502-1b219c7c47c9-3/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/20170604_203029.jpg,,TRUE, +N1,60482,sortie-88c1b3f3-64e2-4888-b502-1b219c7c47c9,https://biolit.fr/sorties/sortie-88c1b3f3-64e2-4888-b502-1b219c7c47c9/,Phil,,06/04/2017,20.0:25,20.0000000,47.985532000000,-4.463099000000,,Plozevet - Finistère,48752,observation-88c1b3f3-64e2-4888-b502-1b219c7c47c9-4,https://biolit.fr/observations/observation-88c1b3f3-64e2-4888-b502-1b219c7c47c9-4/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/20170604_203330.jpg,,TRUE, +N1,60483,sortie-1c0f3637-eb67-4104-a525-7e6335b9fe81,https://biolit.fr/sorties/sortie-1c0f3637-eb67-4104-a525-7e6335b9fe81/,Phil,,06/08/2017,11.0000000,12.000005,47.894702000000,-4.131799000000,,Gouesnarch - Finistère,48754,observation-1c0f3637-eb67-4104-a525-7e6335b9fe81,https://biolit.fr/observations/observation-1c0f3637-eb67-4104-a525-7e6335b9fe81/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1070415.JPG,,TRUE, +N1,60483,sortie-1c0f3637-eb67-4104-a525-7e6335b9fe81,https://biolit.fr/sorties/sortie-1c0f3637-eb67-4104-a525-7e6335b9fe81/,Phil,,06/08/2017,11.0000000,12.000005,47.894702000000,-4.131799000000,,Gouesnarch - Finistère,48756,observation-1c0f3637-eb67-4104-a525-7e6335b9fe81-2,https://biolit.fr/observations/observation-1c0f3637-eb67-4104-a525-7e6335b9fe81-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070417.JPG,,FALSE, +N1,60483,sortie-1c0f3637-eb67-4104-a525-7e6335b9fe81,https://biolit.fr/sorties/sortie-1c0f3637-eb67-4104-a525-7e6335b9fe81/,Phil,,06/08/2017,11.0000000,12.000005,47.894702000000,-4.131799000000,,Gouesnarch - Finistère,48758,observation-1c0f3637-eb67-4104-a525-7e6335b9fe81-3,https://biolit.fr/observations/observation-1c0f3637-eb67-4104-a525-7e6335b9fe81-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070410.JPG,,FALSE, +N1,60483,sortie-1c0f3637-eb67-4104-a525-7e6335b9fe81,https://biolit.fr/sorties/sortie-1c0f3637-eb67-4104-a525-7e6335b9fe81/,Phil,,06/08/2017,11.0000000,12.000005,47.894702000000,-4.131799000000,,Gouesnarch - Finistère,48760,observation-1c0f3637-eb67-4104-a525-7e6335b9fe81-4,https://biolit.fr/observations/observation-1c0f3637-eb67-4104-a525-7e6335b9fe81-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070423.JPG,,FALSE, +N1,60483,sortie-1c0f3637-eb67-4104-a525-7e6335b9fe81,https://biolit.fr/sorties/sortie-1c0f3637-eb67-4104-a525-7e6335b9fe81/,Phil,,06/08/2017,11.0000000,12.000005,47.894702000000,-4.131799000000,,Gouesnarch - Finistère,48762,observation-1c0f3637-eb67-4104-a525-7e6335b9fe81-5,https://biolit.fr/observations/observation-1c0f3637-eb67-4104-a525-7e6335b9fe81-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070425.JPG,,FALSE, +N1,60483,sortie-1c0f3637-eb67-4104-a525-7e6335b9fe81,https://biolit.fr/sorties/sortie-1c0f3637-eb67-4104-a525-7e6335b9fe81/,Phil,,06/08/2017,11.0000000,12.000005,47.894702000000,-4.131799000000,,Gouesnarch - Finistère,48764,observation-1c0f3637-eb67-4104-a525-7e6335b9fe81-6,https://biolit.fr/observations/observation-1c0f3637-eb67-4104-a525-7e6335b9fe81-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070432.JPG,,FALSE, +N1,60484,sortie-269a0a34-14e9-491c-809f-b371e6a86b4d,https://biolit.fr/sorties/sortie-269a0a34-14e9-491c-809f-b371e6a86b4d/,Septentrion Environnement,,06/10/2017,14.0000000,15.0:15,43.210333000000,5.33266100000,,Grotte à Corail Ile Maire Marseille,48766,observation-269a0a34-14e9-491c-809f-b371e6a86b4d,https://biolit.fr/observations/observation-269a0a34-14e9-491c-809f-b371e6a86b4d/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20170610_POLARIS_H.-Menella-ConvertImage-scaled.jpg,,TRUE, +N1,60485,sortie-d7489d40-747f-4b25-ab94-8815c65b0179,https://biolit.fr/sorties/sortie-d7489d40-747f-4b25-ab94-8815c65b0179/,Phil,,05/06/2017,12.0000000,13.0000000,47.895330000000,-3.968948000000,,La Forêt-Fouesnant - Finistère,48768,observation-d7489d40-747f-4b25-ab94-8815c65b0179,https://biolit.fr/observations/observation-d7489d40-747f-4b25-ab94-8815c65b0179/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_125608.jpg,,FALSE, +N1,60485,sortie-d7489d40-747f-4b25-ab94-8815c65b0179,https://biolit.fr/sorties/sortie-d7489d40-747f-4b25-ab94-8815c65b0179/,Phil,,05/06/2017,12.0000000,13.0000000,47.895330000000,-3.968948000000,,La Forêt-Fouesnant - Finistère,48770,observation-d7489d40-747f-4b25-ab94-8815c65b0179-2,https://biolit.fr/observations/observation-d7489d40-747f-4b25-ab94-8815c65b0179-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_125532.jpg,,FALSE, +N1,60485,sortie-d7489d40-747f-4b25-ab94-8815c65b0179,https://biolit.fr/sorties/sortie-d7489d40-747f-4b25-ab94-8815c65b0179/,Phil,,05/06/2017,12.0000000,13.0000000,47.895330000000,-3.968948000000,,La Forêt-Fouesnant - Finistère,48772,observation-d7489d40-747f-4b25-ab94-8815c65b0179-3,https://biolit.fr/observations/observation-d7489d40-747f-4b25-ab94-8815c65b0179-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_125524.jpg,,FALSE, +N1,60485,sortie-d7489d40-747f-4b25-ab94-8815c65b0179,https://biolit.fr/sorties/sortie-d7489d40-747f-4b25-ab94-8815c65b0179/,Phil,,05/06/2017,12.0000000,13.0000000,47.895330000000,-3.968948000000,,La Forêt-Fouesnant - Finistère,48774,observation-d7489d40-747f-4b25-ab94-8815c65b0179-4,https://biolit.fr/observations/observation-d7489d40-747f-4b25-ab94-8815c65b0179-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_125508.jpg,,FALSE, +N1,60485,sortie-d7489d40-747f-4b25-ab94-8815c65b0179,https://biolit.fr/sorties/sortie-d7489d40-747f-4b25-ab94-8815c65b0179/,Phil,,05/06/2017,12.0000000,13.0000000,47.895330000000,-3.968948000000,,La Forêt-Fouesnant - Finistère,48776,observation-d7489d40-747f-4b25-ab94-8815c65b0179-5,https://biolit.fr/observations/observation-d7489d40-747f-4b25-ab94-8815c65b0179-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_125136.jpg,,FALSE, +N1,60485,sortie-d7489d40-747f-4b25-ab94-8815c65b0179,https://biolit.fr/sorties/sortie-d7489d40-747f-4b25-ab94-8815c65b0179/,Phil,,05/06/2017,12.0000000,13.0000000,47.895330000000,-3.968948000000,,La Forêt-Fouesnant - Finistère,48778,observation-d7489d40-747f-4b25-ab94-8815c65b0179-6,https://biolit.fr/observations/observation-d7489d40-747f-4b25-ab94-8815c65b0179-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_125559.jpg,,FALSE, +N1,60486,sortie-c8611f3f-676b-4532-9d10-fd5cb3628539,https://biolit.fr/sorties/sortie-c8611f3f-676b-4532-9d10-fd5cb3628539/,Phil,,06/02/2017,17.0:35,17.0000000,47.792230000000,-4.278554000000,,Léchiagat - Finistère,48780,observation-c8611f3f-676b-4532-9d10-fd5cb3628539,https://biolit.fr/observations/observation-c8611f3f-676b-4532-9d10-fd5cb3628539/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170602_173329.jpg,,FALSE, +N1,60486,sortie-c8611f3f-676b-4532-9d10-fd5cb3628539,https://biolit.fr/sorties/sortie-c8611f3f-676b-4532-9d10-fd5cb3628539/,Phil,,06/02/2017,17.0:35,17.0000000,47.792230000000,-4.278554000000,,Léchiagat - Finistère,48782,observation-c8611f3f-676b-4532-9d10-fd5cb3628539-2,https://biolit.fr/observations/observation-c8611f3f-676b-4532-9d10-fd5cb3628539-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170602_174946.jpg,,FALSE, +N1,60486,sortie-c8611f3f-676b-4532-9d10-fd5cb3628539,https://biolit.fr/sorties/sortie-c8611f3f-676b-4532-9d10-fd5cb3628539/,Phil,,06/02/2017,17.0:35,17.0000000,47.792230000000,-4.278554000000,,Léchiagat - Finistère,48784,observation-c8611f3f-676b-4532-9d10-fd5cb3628539-3,https://biolit.fr/observations/observation-c8611f3f-676b-4532-9d10-fd5cb3628539-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170602_175023.jpg,,FALSE, +N1,60487,sortie-93244f18-b0cf-4363-8207-c5baca02f907,https://biolit.fr/sorties/sortie-93244f18-b0cf-4363-8207-c5baca02f907/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215160000000,5.342552000000,,Anse de la Maronaise ,48786,observation-93244f18-b0cf-4363-8207-c5baca02f907,https://biolit.fr/observations/observation-93244f18-b0cf-4363-8207-c5baca02f907/,Ligia italica,Ligie italienne,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0162-scaled.jpg,,TRUE, +N1,60487,sortie-93244f18-b0cf-4363-8207-c5baca02f907,https://biolit.fr/sorties/sortie-93244f18-b0cf-4363-8207-c5baca02f907/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215160000000,5.342552000000,,Anse de la Maronaise ,48788,observation-93244f18-b0cf-4363-8207-c5baca02f907-2,https://biolit.fr/observations/observation-93244f18-b0cf-4363-8207-c5baca02f907-2/,Ligia italica,Ligie italienne,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0170_0-scaled.jpg,,TRUE, +N1,60488,sortie-772fc9dd-cff1-41ad-8708-1c1fbbb6e627,https://biolit.fr/sorties/sortie-772fc9dd-cff1-41ad-8708-1c1fbbb6e627/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215250000000,5.342541000000,,Anse de la Maronaise ,48790,observation-772fc9dd-cff1-41ad-8708-1c1fbbb6e627,https://biolit.fr/observations/observation-772fc9dd-cff1-41ad-8708-1c1fbbb6e627/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0141-scaled.jpg,,TRUE, +N1,60488,sortie-772fc9dd-cff1-41ad-8708-1c1fbbb6e627,https://biolit.fr/sorties/sortie-772fc9dd-cff1-41ad-8708-1c1fbbb6e627/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215250000000,5.342541000000,,Anse de la Maronaise ,48792,observation-772fc9dd-cff1-41ad-8708-1c1fbbb6e627-2,https://biolit.fr/observations/observation-772fc9dd-cff1-41ad-8708-1c1fbbb6e627-2/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0157_0-scaled.jpg,,TRUE, +N1,60489,sortie-ae54f3c7-ec84-40db-8218-87b521ff6f3c,https://biolit.fr/sorties/sortie-ae54f3c7-ec84-40db-8218-87b521ff6f3c/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215250000000,5.342541000000,,Anse de la Maronaise ,48794,observation-ae54f3c7-ec84-40db-8218-87b521ff6f3c,https://biolit.fr/observations/observation-ae54f3c7-ec84-40db-8218-87b521ff6f3c/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0141-scaled.jpg,,TRUE, +N1,60489,sortie-ae54f3c7-ec84-40db-8218-87b521ff6f3c,https://biolit.fr/sorties/sortie-ae54f3c7-ec84-40db-8218-87b521ff6f3c/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215250000000,5.342541000000,,Anse de la Maronaise ,48795,observation-ae54f3c7-ec84-40db-8218-87b521ff6f3c-2,https://biolit.fr/observations/observation-ae54f3c7-ec84-40db-8218-87b521ff6f3c-2/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0157_0-scaled.jpg,,TRUE, +N1,60490,sortie-a5f49048-47d2-4ba3-a218-df02df7720cc,https://biolit.fr/sorties/sortie-a5f49048-47d2-4ba3-a218-df02df7720cc/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215352000000,5.342783000000,,Anse de la Maronaise ,48796,observation-a5f49048-47d2-4ba3-a218-df02df7720cc,https://biolit.fr/observations/observation-a5f49048-47d2-4ba3-a218-df02df7720cc/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0128_0-scaled.jpg,,FALSE, +N1,60490,sortie-a5f49048-47d2-4ba3-a218-df02df7720cc,https://biolit.fr/sorties/sortie-a5f49048-47d2-4ba3-a218-df02df7720cc/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215352000000,5.342783000000,,Anse de la Maronaise ,48798,observation-a5f49048-47d2-4ba3-a218-df02df7720cc-2,https://biolit.fr/observations/observation-a5f49048-47d2-4ba3-a218-df02df7720cc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0130-scaled.jpg,,FALSE, +N1,60490,sortie-a5f49048-47d2-4ba3-a218-df02df7720cc,https://biolit.fr/sorties/sortie-a5f49048-47d2-4ba3-a218-df02df7720cc/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215352000000,5.342783000000,,Anse de la Maronaise ,48800,observation-a5f49048-47d2-4ba3-a218-df02df7720cc-3,https://biolit.fr/observations/observation-a5f49048-47d2-4ba3-a218-df02df7720cc-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0132_0-scaled.jpg,,FALSE, +N1,60490,sortie-a5f49048-47d2-4ba3-a218-df02df7720cc,https://biolit.fr/sorties/sortie-a5f49048-47d2-4ba3-a218-df02df7720cc/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215352000000,5.342783000000,,Anse de la Maronaise ,48802,observation-a5f49048-47d2-4ba3-a218-df02df7720cc-4,https://biolit.fr/observations/observation-a5f49048-47d2-4ba3-a218-df02df7720cc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0137_2-scaled.jpg,,FALSE, +N1,60491,sortie-e3f6ada8-a130-45dd-a005-9ff48289c5f2,https://biolit.fr/sorties/sortie-e3f6ada8-a130-45dd-a005-9ff48289c5f2/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215430000000,5.34253000000,,Anse de la Maronaise ,48804,observation-e3f6ada8-a130-45dd-a005-9ff48289c5f2,https://biolit.fr/observations/observation-e3f6ada8-a130-45dd-a005-9ff48289c5f2/,Colpomenia sinuosa,Colpoménia sinueux,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0081-scaled.jpg,,TRUE, +N1,60491,sortie-e3f6ada8-a130-45dd-a005-9ff48289c5f2,https://biolit.fr/sorties/sortie-e3f6ada8-a130-45dd-a005-9ff48289c5f2/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215430000000,5.34253000000,,Anse de la Maronaise ,48805,observation-e3f6ada8-a130-45dd-a005-9ff48289c5f2-2,https://biolit.fr/observations/observation-e3f6ada8-a130-45dd-a005-9ff48289c5f2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0093-scaled.jpg,,FALSE, +N1,60491,sortie-e3f6ada8-a130-45dd-a005-9ff48289c5f2,https://biolit.fr/sorties/sortie-e3f6ada8-a130-45dd-a005-9ff48289c5f2/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215430000000,5.34253000000,,Anse de la Maronaise ,48807,observation-e3f6ada8-a130-45dd-a005-9ff48289c5f2-3,https://biolit.fr/observations/observation-e3f6ada8-a130-45dd-a005-9ff48289c5f2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0088-scaled.jpg,,FALSE, +N1,60491,sortie-e3f6ada8-a130-45dd-a005-9ff48289c5f2,https://biolit.fr/sorties/sortie-e3f6ada8-a130-45dd-a005-9ff48289c5f2/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215430000000,5.34253000000,,Anse de la Maronaise ,48809,observation-e3f6ada8-a130-45dd-a005-9ff48289c5f2-4,https://biolit.fr/observations/observation-e3f6ada8-a130-45dd-a005-9ff48289c5f2-4/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0095-scaled.jpg,,TRUE, +N1,60492,sortie-164fcfd2-5628-44db-8d73-80a43ca4394d,https://biolit.fr/sorties/sortie-164fcfd2-5628-44db-8d73-80a43ca4394d/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215170000000,5.342501000000,,Anse de la Maronaise ,48811,observation-164fcfd2-5628-44db-8d73-80a43ca4394d,https://biolit.fr/observations/observation-164fcfd2-5628-44db-8d73-80a43ca4394d/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0112-scaled.jpg,,FALSE, +N1,60492,sortie-164fcfd2-5628-44db-8d73-80a43ca4394d,https://biolit.fr/sorties/sortie-164fcfd2-5628-44db-8d73-80a43ca4394d/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215170000000,5.342501000000,,Anse de la Maronaise ,48813,observation-164fcfd2-5628-44db-8d73-80a43ca4394d-2,https://biolit.fr/observations/observation-164fcfd2-5628-44db-8d73-80a43ca4394d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0118-scaled.jpg,,FALSE, +N1,60492,sortie-164fcfd2-5628-44db-8d73-80a43ca4394d,https://biolit.fr/sorties/sortie-164fcfd2-5628-44db-8d73-80a43ca4394d/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215170000000,5.342501000000,,Anse de la Maronaise ,48815,observation-164fcfd2-5628-44db-8d73-80a43ca4394d-3,https://biolit.fr/observations/observation-164fcfd2-5628-44db-8d73-80a43ca4394d-3/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0125_0-scaled.jpg,,TRUE, +N1,60493,sortie-e040898d-b06a-468e-99cf-567c89171d9f,https://biolit.fr/sorties/sortie-e040898d-b06a-468e-99cf-567c89171d9f/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215205000000,5.342469000000,,Anse de la Maronaise ,48817,observation-e040898d-b06a-468e-99cf-567c89171d9f,https://biolit.fr/observations/observation-e040898d-b06a-468e-99cf-567c89171d9f/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0049_0-scaled.jpg,,FALSE, +N1,60493,sortie-e040898d-b06a-468e-99cf-567c89171d9f,https://biolit.fr/sorties/sortie-e040898d-b06a-468e-99cf-567c89171d9f/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215205000000,5.342469000000,,Anse de la Maronaise ,48819,observation-e040898d-b06a-468e-99cf-567c89171d9f-2,https://biolit.fr/observations/observation-e040898d-b06a-468e-99cf-567c89171d9f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0067-scaled.jpg,,FALSE, +N1,60493,sortie-e040898d-b06a-468e-99cf-567c89171d9f,https://biolit.fr/sorties/sortie-e040898d-b06a-468e-99cf-567c89171d9f/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215205000000,5.342469000000,,Anse de la Maronaise ,48821,observation-e040898d-b06a-468e-99cf-567c89171d9f-3,https://biolit.fr/observations/observation-e040898d-b06a-468e-99cf-567c89171d9f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0068-scaled.jpg,,FALSE, +N1,60494,sortie-9488dbc7-29de-4598-b348-7d91a1d26239,https://biolit.fr/sorties/sortie-9488dbc7-29de-4598-b348-7d91a1d26239/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215226000000,5.342482000000,,Anse de la Maronaise ,48823,observation-9488dbc7-29de-4598-b348-7d91a1d26239,https://biolit.fr/observations/observation-9488dbc7-29de-4598-b348-7d91a1d26239/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0071_0-scaled.jpg,,FALSE, +N1,60494,sortie-9488dbc7-29de-4598-b348-7d91a1d26239,https://biolit.fr/sorties/sortie-9488dbc7-29de-4598-b348-7d91a1d26239/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215226000000,5.342482000000,,Anse de la Maronaise ,48825,observation-9488dbc7-29de-4598-b348-7d91a1d26239-2,https://biolit.fr/observations/observation-9488dbc7-29de-4598-b348-7d91a1d26239-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0072_1-scaled.jpg,,FALSE, +N1,60494,sortie-9488dbc7-29de-4598-b348-7d91a1d26239,https://biolit.fr/sorties/sortie-9488dbc7-29de-4598-b348-7d91a1d26239/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215226000000,5.342482000000,,Anse de la Maronaise ,48827,observation-9488dbc7-29de-4598-b348-7d91a1d26239-3,https://biolit.fr/observations/observation-9488dbc7-29de-4598-b348-7d91a1d26239-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0074_0-scaled.jpg,,FALSE, +N1,60494,sortie-9488dbc7-29de-4598-b348-7d91a1d26239,https://biolit.fr/sorties/sortie-9488dbc7-29de-4598-b348-7d91a1d26239/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215226000000,5.342482000000,,Anse de la Maronaise ,48829,observation-9488dbc7-29de-4598-b348-7d91a1d26239-4,https://biolit.fr/observations/observation-9488dbc7-29de-4598-b348-7d91a1d26239-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0076-scaled.jpg,,FALSE, +N1,60494,sortie-9488dbc7-29de-4598-b348-7d91a1d26239,https://biolit.fr/sorties/sortie-9488dbc7-29de-4598-b348-7d91a1d26239/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215226000000,5.342482000000,,Anse de la Maronaise ,48831,observation-9488dbc7-29de-4598-b348-7d91a1d26239-5,https://biolit.fr/observations/observation-9488dbc7-29de-4598-b348-7d91a1d26239-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0076_0-scaled.jpg,,FALSE, +N1,60495,sortie-bff364dc-0718-4b8c-873b-b8f51e1118c2,https://biolit.fr/sorties/sortie-bff364dc-0718-4b8c-873b-b8f51e1118c2/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215178000000,5.342500000000,,Anse de la Maronaise ,48833,observation-bff364dc-0718-4b8c-873b-b8f51e1118c2,https://biolit.fr/observations/observation-bff364dc-0718-4b8c-873b-b8f51e1118c2/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0030_0-scaled.jpg,,TRUE, +N1,60495,sortie-bff364dc-0718-4b8c-873b-b8f51e1118c2,https://biolit.fr/sorties/sortie-bff364dc-0718-4b8c-873b-b8f51e1118c2/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215178000000,5.342500000000,,Anse de la Maronaise ,48835,observation-bff364dc-0718-4b8c-873b-b8f51e1118c2-2,https://biolit.fr/observations/observation-bff364dc-0718-4b8c-873b-b8f51e1118c2-2/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0032_0-scaled.jpg,,TRUE, +N1,60495,sortie-bff364dc-0718-4b8c-873b-b8f51e1118c2,https://biolit.fr/sorties/sortie-bff364dc-0718-4b8c-873b-b8f51e1118c2/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215178000000,5.342500000000,,Anse de la Maronaise ,48837,observation-bff364dc-0718-4b8c-873b-b8f51e1118c2-3,https://biolit.fr/observations/observation-bff364dc-0718-4b8c-873b-b8f51e1118c2-3/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0035_1-scaled.jpg,,TRUE, +N1,60495,sortie-bff364dc-0718-4b8c-873b-b8f51e1118c2,https://biolit.fr/sorties/sortie-bff364dc-0718-4b8c-873b-b8f51e1118c2/,ludovic,,6/14/2017 0:00,14.0000000,15.0000000,43.215178000000,5.342500000000,,Anse de la Maronaise ,48839,observation-bff364dc-0718-4b8c-873b-b8f51e1118c2-4,https://biolit.fr/observations/observation-bff364dc-0718-4b8c-873b-b8f51e1118c2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0042_5-scaled.jpg,,FALSE, +N1,60496,sortie-90535855-504a-4572-96be-fcc22314fa41,https://biolit.fr/sorties/sortie-90535855-504a-4572-96be-fcc22314fa41/,AIEJE,,06/12/2017,14.0:45,16.0:45,43.330929000000,5.203962000000,,ensues la redonne,48841,observation-90535855-504a-4572-96be-fcc22314fa41,https://biolit.fr/observations/observation-90535855-504a-4572-96be-fcc22314fa41/,Notospermus geniculatus,Ver rubané à anneaux blancs,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4827-scaled.jpg,,TRUE, +N1,60496,sortie-90535855-504a-4572-96be-fcc22314fa41,https://biolit.fr/sorties/sortie-90535855-504a-4572-96be-fcc22314fa41/,AIEJE,,06/12/2017,14.0:45,16.0:45,43.330929000000,5.203962000000,,ensues la redonne,48843,observation-90535855-504a-4572-96be-fcc22314fa41-2,https://biolit.fr/observations/observation-90535855-504a-4572-96be-fcc22314fa41-2/,Notospermus geniculatus,Ver rubané à anneaux blancs,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4826-scaled.jpg,,TRUE, +N1,60497,sortie-fbc3f186-5948-4910-aa01-058fb951305c,https://biolit.fr/sorties/sortie-fbc3f186-5948-4910-aa01-058fb951305c/,Phil,,06/04/2017,20.0:25,20.0000000,47.985497000000,-4.463224000000,,Plozevet - Finistère,48845,observation-fbc3f186-5948-4910-aa01-058fb951305c,https://biolit.fr/observations/observation-fbc3f186-5948-4910-aa01-058fb951305c/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170604_202647.jpg,,FALSE, +N1,60497,sortie-fbc3f186-5948-4910-aa01-058fb951305c,https://biolit.fr/sorties/sortie-fbc3f186-5948-4910-aa01-058fb951305c/,Phil,,06/04/2017,20.0:25,20.0000000,47.985497000000,-4.463224000000,,Plozevet - Finistère,48847,observation-fbc3f186-5948-4910-aa01-058fb951305c-2,https://biolit.fr/observations/observation-fbc3f186-5948-4910-aa01-058fb951305c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170604_202626.jpg,,FALSE, +N1,60497,sortie-fbc3f186-5948-4910-aa01-058fb951305c,https://biolit.fr/sorties/sortie-fbc3f186-5948-4910-aa01-058fb951305c/,Phil,,06/04/2017,20.0:25,20.0000000,47.985497000000,-4.463224000000,,Plozevet - Finistère,48849,observation-fbc3f186-5948-4910-aa01-058fb951305c-3,https://biolit.fr/observations/observation-fbc3f186-5948-4910-aa01-058fb951305c-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170604_202739.jpg,,TRUE, +N1,60498,sortie-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7,https://biolit.fr/sorties/sortie-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7/,Phil,,4/15/2017 0:00,17.0000000,17.0:25,48.210883000000,-4.369601000000,,Telgruc sur Mer - Finistère,48851,observation-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7,https://biolit.fr/observations/observation-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7/,Liocarcinus holsatus,Etrille d'eau froide,,https://biolit.fr/wp-content/uploads/2023/07/P1070334.JPG,,TRUE, +N1,60498,sortie-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7,https://biolit.fr/sorties/sortie-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7/,Phil,,4/15/2017 0:00,17.0000000,17.0:25,48.210883000000,-4.369601000000,,Telgruc sur Mer - Finistère,48853,observation-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7-2,https://biolit.fr/observations/observation-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7-2/,Liocarcinus holsatus,Etrille d'eau froide,,https://biolit.fr/wp-content/uploads/2023/07/P1070336.JPG,,TRUE, +N1,60498,sortie-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7,https://biolit.fr/sorties/sortie-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7/,Phil,,4/15/2017 0:00,17.0000000,17.0:25,48.210883000000,-4.369601000000,,Telgruc sur Mer - Finistère,48855,observation-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7-3,https://biolit.fr/observations/observation-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070345.JPG,,FALSE, +N1,60498,sortie-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7,https://biolit.fr/sorties/sortie-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7/,Phil,,4/15/2017 0:00,17.0000000,17.0:25,48.210883000000,-4.369601000000,,Telgruc sur Mer - Finistère,48857,observation-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7-4,https://biolit.fr/observations/observation-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7-4/,Dynamena pumila,Petite dynamène,,https://biolit.fr/wp-content/uploads/2023/07/P1070338.JPG,,TRUE, +N1,60498,sortie-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7,https://biolit.fr/sorties/sortie-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7/,Phil,,4/15/2017 0:00,17.0000000,17.0:25,48.210883000000,-4.369601000000,,Telgruc sur Mer - Finistère,48859,observation-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7-5,https://biolit.fr/observations/observation-57bc2d2d-31a9-43e6-b08e-7f5f18f396c7-5/,Electra pilosa,Ecorce pileuse,,https://biolit.fr/wp-content/uploads/2023/07/P1070343.JPG,,TRUE, +N1,60499,sortie-b74f9825-886c-4ee9-b586-1ca80c198fe0,https://biolit.fr/sorties/sortie-b74f9825-886c-4ee9-b586-1ca80c198fe0/,Phil,,06/08/2017,11.0:35,11.0000000,47.893546000000,-4.129945000000,,Gouesnarch - Finistère,48861,observation-b74f9825-886c-4ee9-b586-1ca80c198fe0,https://biolit.fr/observations/observation-b74f9825-886c-4ee9-b586-1ca80c198fe0/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070403.JPG,,FALSE, +N1,60499,sortie-b74f9825-886c-4ee9-b586-1ca80c198fe0,https://biolit.fr/sorties/sortie-b74f9825-886c-4ee9-b586-1ca80c198fe0/,Phil,,06/08/2017,11.0:35,11.0000000,47.893546000000,-4.129945000000,,Gouesnarch - Finistère,48863,observation-b74f9825-886c-4ee9-b586-1ca80c198fe0-2,https://biolit.fr/observations/observation-b74f9825-886c-4ee9-b586-1ca80c198fe0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070399.JPG,,FALSE, +N1,60499,sortie-b74f9825-886c-4ee9-b586-1ca80c198fe0,https://biolit.fr/sorties/sortie-b74f9825-886c-4ee9-b586-1ca80c198fe0/,Phil,,06/08/2017,11.0:35,11.0000000,47.893546000000,-4.129945000000,,Gouesnarch - Finistère,48865,observation-b74f9825-886c-4ee9-b586-1ca80c198fe0-3,https://biolit.fr/observations/observation-b74f9825-886c-4ee9-b586-1ca80c198fe0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070398.JPG,,FALSE, +N1,60499,sortie-b74f9825-886c-4ee9-b586-1ca80c198fe0,https://biolit.fr/sorties/sortie-b74f9825-886c-4ee9-b586-1ca80c198fe0/,Phil,,06/08/2017,11.0:35,11.0000000,47.893546000000,-4.129945000000,,Gouesnarch - Finistère,48867,observation-b74f9825-886c-4ee9-b586-1ca80c198fe0-4,https://biolit.fr/observations/observation-b74f9825-886c-4ee9-b586-1ca80c198fe0-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070397.JPG,,FALSE, +N1,60499,sortie-b74f9825-886c-4ee9-b586-1ca80c198fe0,https://biolit.fr/sorties/sortie-b74f9825-886c-4ee9-b586-1ca80c198fe0/,Phil,,06/08/2017,11.0:35,11.0000000,47.893546000000,-4.129945000000,,Gouesnarch - Finistère,48869,observation-b74f9825-886c-4ee9-b586-1ca80c198fe0-5,https://biolit.fr/observations/observation-b74f9825-886c-4ee9-b586-1ca80c198fe0-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070396.JPG,,FALSE, +N1,60499,sortie-b74f9825-886c-4ee9-b586-1ca80c198fe0,https://biolit.fr/sorties/sortie-b74f9825-886c-4ee9-b586-1ca80c198fe0/,Phil,,06/08/2017,11.0:35,11.0000000,47.893546000000,-4.129945000000,,Gouesnarch - Finistère,48871,observation-b74f9825-886c-4ee9-b586-1ca80c198fe0-6,https://biolit.fr/observations/observation-b74f9825-886c-4ee9-b586-1ca80c198fe0-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070391.JPG,,FALSE, +N1,60500,sortie-0028bb9e-ad3f-41ab-95d2-274bd9d2fe4b,https://biolit.fr/sorties/sortie-0028bb9e-ad3f-41ab-95d2-274bd9d2fe4b/,agoutroue,,06/04/2017,16.0000000,17.0000000,48.099044000000,-4.464675000000,,"Pointe du Millier, Beuzec-Cap Sizun",48873,observation-0028bb9e-ad3f-41ab-95d2-274bd9d2fe4b,https://biolit.fr/observations/observation-0028bb9e-ad3f-41ab-95d2-274bd9d2fe4b/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3186-scaled.jpg,,TRUE, +N1,60500,sortie-0028bb9e-ad3f-41ab-95d2-274bd9d2fe4b,https://biolit.fr/sorties/sortie-0028bb9e-ad3f-41ab-95d2-274bd9d2fe4b/,agoutroue,,06/04/2017,16.0000000,17.0000000,48.099044000000,-4.464675000000,,"Pointe du Millier, Beuzec-Cap Sizun",48875,observation-0028bb9e-ad3f-41ab-95d2-274bd9d2fe4b-2,https://biolit.fr/observations/observation-0028bb9e-ad3f-41ab-95d2-274bd9d2fe4b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3189-scaled.jpg,,FALSE, +N1,60501,sortie-2b516729-128e-47bd-b175-f15936a72259,https://biolit.fr/sorties/sortie-2b516729-128e-47bd-b175-f15936a72259/,ludovic,,06/07/2017,10.0000000,12.0000000,43.236043000000,5.360086000000,,plage de la bonne brise ,48877,observation-2b516729-128e-47bd-b175-f15936a72259,https://biolit.fr/observations/observation-2b516729-128e-47bd-b175-f15936a72259/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0984_0-scaled.jpg,,TRUE, +N1,60501,sortie-2b516729-128e-47bd-b175-f15936a72259,https://biolit.fr/sorties/sortie-2b516729-128e-47bd-b175-f15936a72259/,ludovic,,06/07/2017,10.0000000,12.0000000,43.236043000000,5.360086000000,,plage de la bonne brise ,48879,observation-2b516729-128e-47bd-b175-f15936a72259-2,https://biolit.fr/observations/observation-2b516729-128e-47bd-b175-f15936a72259-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0985-scaled.jpg,,FALSE, +N1,60501,sortie-2b516729-128e-47bd-b175-f15936a72259,https://biolit.fr/sorties/sortie-2b516729-128e-47bd-b175-f15936a72259/,ludovic,,06/07/2017,10.0000000,12.0000000,43.236043000000,5.360086000000,,plage de la bonne brise ,48881,observation-2b516729-128e-47bd-b175-f15936a72259-3,https://biolit.fr/observations/observation-2b516729-128e-47bd-b175-f15936a72259-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0986_0-scaled.jpg,,FALSE, +N1,60501,sortie-2b516729-128e-47bd-b175-f15936a72259,https://biolit.fr/sorties/sortie-2b516729-128e-47bd-b175-f15936a72259/,ludovic,,06/07/2017,10.0000000,12.0000000,43.236043000000,5.360086000000,,plage de la bonne brise ,48883,observation-2b516729-128e-47bd-b175-f15936a72259-4,https://biolit.fr/observations/observation-2b516729-128e-47bd-b175-f15936a72259-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0987_1-scaled.jpg,,FALSE, +N1,60501,sortie-2b516729-128e-47bd-b175-f15936a72259,https://biolit.fr/sorties/sortie-2b516729-128e-47bd-b175-f15936a72259/,ludovic,,06/07/2017,10.0000000,12.0000000,43.236043000000,5.360086000000,,plage de la bonne brise ,48885,observation-2b516729-128e-47bd-b175-f15936a72259-5,https://biolit.fr/observations/observation-2b516729-128e-47bd-b175-f15936a72259-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0999-scaled.jpg,,FALSE, +N1,60502,sortie-75ceaf06-783c-45b9-bcdd-a4b45dba3f63,https://biolit.fr/sorties/sortie-75ceaf06-783c-45b9-bcdd-a4b45dba3f63/,ludovic,,06/07/2017,9.0:55,11.0:55,43.235936000000,5.36004400000,,plage de la bonne brise ,48887,observation-75ceaf06-783c-45b9-bcdd-a4b45dba3f63,https://biolit.fr/observations/observation-75ceaf06-783c-45b9-bcdd-a4b45dba3f63/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0975_0-scaled.jpg,,FALSE, +N1,60502,sortie-75ceaf06-783c-45b9-bcdd-a4b45dba3f63,https://biolit.fr/sorties/sortie-75ceaf06-783c-45b9-bcdd-a4b45dba3f63/,ludovic,,06/07/2017,9.0:55,11.0:55,43.235936000000,5.36004400000,,plage de la bonne brise ,48889,observation-75ceaf06-783c-45b9-bcdd-a4b45dba3f63-2,https://biolit.fr/observations/observation-75ceaf06-783c-45b9-bcdd-a4b45dba3f63-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0978_5-scaled.jpg,,FALSE, +N1,60502,sortie-75ceaf06-783c-45b9-bcdd-a4b45dba3f63,https://biolit.fr/sorties/sortie-75ceaf06-783c-45b9-bcdd-a4b45dba3f63/,ludovic,,06/07/2017,9.0:55,11.0:55,43.235936000000,5.36004400000,,plage de la bonne brise ,48891,observation-75ceaf06-783c-45b9-bcdd-a4b45dba3f63-3,https://biolit.fr/observations/observation-75ceaf06-783c-45b9-bcdd-a4b45dba3f63-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0980_1-scaled.jpg,,FALSE, +N1,60502,sortie-75ceaf06-783c-45b9-bcdd-a4b45dba3f63,https://biolit.fr/sorties/sortie-75ceaf06-783c-45b9-bcdd-a4b45dba3f63/,ludovic,,06/07/2017,9.0:55,11.0:55,43.235936000000,5.36004400000,,plage de la bonne brise ,48893,observation-75ceaf06-783c-45b9-bcdd-a4b45dba3f63-4,https://biolit.fr/observations/observation-75ceaf06-783c-45b9-bcdd-a4b45dba3f63-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0983-scaled.jpg,,FALSE, +N1,60502,sortie-75ceaf06-783c-45b9-bcdd-a4b45dba3f63,https://biolit.fr/sorties/sortie-75ceaf06-783c-45b9-bcdd-a4b45dba3f63/,ludovic,,06/07/2017,9.0:55,11.0:55,43.235936000000,5.36004400000,,plage de la bonne brise ,48895,observation-75ceaf06-783c-45b9-bcdd-a4b45dba3f63-5,https://biolit.fr/observations/observation-75ceaf06-783c-45b9-bcdd-a4b45dba3f63-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0982-scaled.jpg,,FALSE, +N1,60503,sortie-37ca3081-2cc1-434a-8c7b-e2acb6afd984,https://biolit.fr/sorties/sortie-37ca3081-2cc1-434a-8c7b-e2acb6afd984/,ludovic,,06/07/2017,10.0000000,12.0000000,43.235858000000,5.360082000000,,plage de la bonne brise ,48897,observation-37ca3081-2cc1-434a-8c7b-e2acb6afd984,https://biolit.fr/observations/observation-37ca3081-2cc1-434a-8c7b-e2acb6afd984/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0968-scaled.jpg,,FALSE, +N1,60503,sortie-37ca3081-2cc1-434a-8c7b-e2acb6afd984,https://biolit.fr/sorties/sortie-37ca3081-2cc1-434a-8c7b-e2acb6afd984/,ludovic,,06/07/2017,10.0000000,12.0000000,43.235858000000,5.360082000000,,plage de la bonne brise ,48899,observation-37ca3081-2cc1-434a-8c7b-e2acb6afd984-2,https://biolit.fr/observations/observation-37ca3081-2cc1-434a-8c7b-e2acb6afd984-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0969_0-scaled.jpg,,FALSE, +N1,60503,sortie-37ca3081-2cc1-434a-8c7b-e2acb6afd984,https://biolit.fr/sorties/sortie-37ca3081-2cc1-434a-8c7b-e2acb6afd984/,ludovic,,06/07/2017,10.0000000,12.0000000,43.235858000000,5.360082000000,,plage de la bonne brise ,48901,observation-37ca3081-2cc1-434a-8c7b-e2acb6afd984-3,https://biolit.fr/observations/observation-37ca3081-2cc1-434a-8c7b-e2acb6afd984-3/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_0971-scaled.jpg,,TRUE, +N1,60503,sortie-37ca3081-2cc1-434a-8c7b-e2acb6afd984,https://biolit.fr/sorties/sortie-37ca3081-2cc1-434a-8c7b-e2acb6afd984/,ludovic,,06/07/2017,10.0000000,12.0000000,43.235858000000,5.360082000000,,plage de la bonne brise ,48903,observation-37ca3081-2cc1-434a-8c7b-e2acb6afd984-4,https://biolit.fr/observations/observation-37ca3081-2cc1-434a-8c7b-e2acb6afd984-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0972_0-scaled.jpg,,FALSE, +N1,60503,sortie-37ca3081-2cc1-434a-8c7b-e2acb6afd984,https://biolit.fr/sorties/sortie-37ca3081-2cc1-434a-8c7b-e2acb6afd984/,ludovic,,06/07/2017,10.0000000,12.0000000,43.235858000000,5.360082000000,,plage de la bonne brise ,48905,observation-37ca3081-2cc1-434a-8c7b-e2acb6afd984-5,https://biolit.fr/observations/observation-37ca3081-2cc1-434a-8c7b-e2acb6afd984-5/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0974_0-scaled.jpg,,TRUE, +N1,60504,sortie-e34cae1d-ae79-4d47-944d-75dd8a719b12,https://biolit.fr/sorties/sortie-e34cae1d-ae79-4d47-944d-75dd8a719b12/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.255268000000,5.374438000000,,plage de Borely,48907,observation-e34cae1d-ae79-4d47-944d-75dd8a719b12,https://biolit.fr/observations/observation-e34cae1d-ae79-4d47-944d-75dd8a719b12/,Nemalion lubricum,Némalion de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0222_0-scaled.jpg,,TRUE, +N1,60505,sortie-0ad866f7-daf2-4d11-9b4e-6691317c5d1a,https://biolit.fr/sorties/sortie-0ad866f7-daf2-4d11-9b4e-6691317c5d1a/,Phil,,06/04/2017,20.0000000,20.0:25,47.985426000000,-4.463355000000,,Plozevet - Finistère,48909,observation-0ad866f7-daf2-4d11-9b4e-6691317c5d1a,https://biolit.fr/observations/observation-0ad866f7-daf2-4d11-9b4e-6691317c5d1a/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170604_201841.jpg,,TRUE, +N1,60505,sortie-0ad866f7-daf2-4d11-9b4e-6691317c5d1a,https://biolit.fr/sorties/sortie-0ad866f7-daf2-4d11-9b4e-6691317c5d1a/,Phil,,06/04/2017,20.0000000,20.0:25,47.985426000000,-4.463355000000,,Plozevet - Finistère,48911,observation-0ad866f7-daf2-4d11-9b4e-6691317c5d1a-2,https://biolit.fr/observations/observation-0ad866f7-daf2-4d11-9b4e-6691317c5d1a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170604_201902.jpg,,FALSE, +N1,60505,sortie-0ad866f7-daf2-4d11-9b4e-6691317c5d1a,https://biolit.fr/sorties/sortie-0ad866f7-daf2-4d11-9b4e-6691317c5d1a/,Phil,,06/04/2017,20.0000000,20.0:25,47.985426000000,-4.463355000000,,Plozevet - Finistère,48913,observation-0ad866f7-daf2-4d11-9b4e-6691317c5d1a-3,https://biolit.fr/observations/observation-0ad866f7-daf2-4d11-9b4e-6691317c5d1a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170604_202127.jpg,,FALSE, +N1,60506,sortie-6138a00d-5d0c-46e4-be64-eacc092f02bf,https://biolit.fr/sorties/sortie-6138a00d-5d0c-46e4-be64-eacc092f02bf/,Marine,,06/09/2017,12.0:25,14.0:25,43.253649000000,5.374357000000,,Marseille,48915,observation-6138a00d-5d0c-46e4-be64-eacc092f02bf,https://biolit.fr/observations/observation-6138a00d-5d0c-46e4-be64-eacc092f02bf/,,,,https://biolit.fr/wp-content/uploads/2023/07/2017_04_05_TAMPON_10_ANS_0.png,,FALSE, +N1,60507,sortie-f580ca8e-d9ba-490c-bc51-c850a0e4add8,https://biolit.fr/sorties/sortie-f580ca8e-d9ba-490c-bc51-c850a0e4add8/,Phil,,06/02/2017,17.0:35,17.0000000,47.791523000000,-4.278663000000,,Léchiagat - Finistère,48917,observation-f580ca8e-d9ba-490c-bc51-c850a0e4add8,https://biolit.fr/observations/observation-f580ca8e-d9ba-490c-bc51-c850a0e4add8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170602_174135.jpg,,FALSE, +N1,60507,sortie-f580ca8e-d9ba-490c-bc51-c850a0e4add8,https://biolit.fr/sorties/sortie-f580ca8e-d9ba-490c-bc51-c850a0e4add8/,Phil,,06/02/2017,17.0:35,17.0000000,47.791523000000,-4.278663000000,,Léchiagat - Finistère,48919,observation-f580ca8e-d9ba-490c-bc51-c850a0e4add8-2,https://biolit.fr/observations/observation-f580ca8e-d9ba-490c-bc51-c850a0e4add8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170602_174047.jpg,,FALSE, +N1,60507,sortie-f580ca8e-d9ba-490c-bc51-c850a0e4add8,https://biolit.fr/sorties/sortie-f580ca8e-d9ba-490c-bc51-c850a0e4add8/,Phil,,06/02/2017,17.0:35,17.0000000,47.791523000000,-4.278663000000,,Léchiagat - Finistère,48921,observation-f580ca8e-d9ba-490c-bc51-c850a0e4add8-3,https://biolit.fr/observations/observation-f580ca8e-d9ba-490c-bc51-c850a0e4add8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170602_173706.jpg,,FALSE, +N1,60508,sortie-02e7a88d-b81a-4627-8439-9525f35da35e,https://biolit.fr/sorties/sortie-02e7a88d-b81a-4627-8439-9525f35da35e/,Ville de Marseille Cabot les Pins CM1,,11/28/2016 0:00,10.0000000,12.0000000,43.28048400000,5.35023600000,,Marseille anse de maldormé,48923,observation-02e7a88d-b81a-4627-8439-9525f35da35e,https://biolit.fr/observations/observation-02e7a88d-b81a-4627-8439-9525f35da35e/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algue verte- Enteromorpha sp_.JPG,,FALSE, +N1,60508,sortie-02e7a88d-b81a-4627-8439-9525f35da35e,https://biolit.fr/sorties/sortie-02e7a88d-b81a-4627-8439-9525f35da35e/,Ville de Marseille Cabot les Pins CM1,,11/28/2016 0:00,10.0000000,12.0000000,43.28048400000,5.35023600000,,Marseille anse de maldormé,48925,observation-02e7a88d-b81a-4627-8439-9525f35da35e-2,https://biolit.fr/observations/observation-02e7a88d-b81a-4627-8439-9525f35da35e-2/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/Arche de noe-arca noae 2.JPG,,TRUE, +N1,60508,sortie-02e7a88d-b81a-4627-8439-9525f35da35e,https://biolit.fr/sorties/sortie-02e7a88d-b81a-4627-8439-9525f35da35e/,Ville de Marseille Cabot les Pins CM1,,11/28/2016 0:00,10.0000000,12.0000000,43.28048400000,5.35023600000,,Marseille anse de maldormé,48927,observation-02e7a88d-b81a-4627-8439-9525f35da35e-3,https://biolit.fr/observations/observation-02e7a88d-b81a-4627-8439-9525f35da35e-3/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/2023/07/DSC09973-scaled.jpg,,TRUE, +N1,60508,sortie-02e7a88d-b81a-4627-8439-9525f35da35e,https://biolit.fr/sorties/sortie-02e7a88d-b81a-4627-8439-9525f35da35e/,Ville de Marseille Cabot les Pins CM1,,11/28/2016 0:00,10.0000000,12.0000000,43.28048400000,5.35023600000,,Marseille anse de maldormé,48929,observation-02e7a88d-b81a-4627-8439-9525f35da35e-4,https://biolit.fr/observations/observation-02e7a88d-b81a-4627-8439-9525f35da35e-4/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/feuille de posidonie-Posidonia oceanica.JPG,,TRUE, +N1,60508,sortie-02e7a88d-b81a-4627-8439-9525f35da35e,https://biolit.fr/sorties/sortie-02e7a88d-b81a-4627-8439-9525f35da35e/,Ville de Marseille Cabot les Pins CM1,,11/28/2016 0:00,10.0000000,12.0000000,43.28048400000,5.35023600000,,Marseille anse de maldormé,48931,observation-02e7a88d-b81a-4627-8439-9525f35da35e-5,https://biolit.fr/observations/observation-02e7a88d-b81a-4627-8439-9525f35da35e-5/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule toupie-Phorcus turbinatus1.JPG,,TRUE, +N1,60508,sortie-02e7a88d-b81a-4627-8439-9525f35da35e,https://biolit.fr/sorties/sortie-02e7a88d-b81a-4627-8439-9525f35da35e/,Ville de Marseille Cabot les Pins CM1,,11/28/2016 0:00,10.0000000,12.0000000,43.28048400000,5.35023600000,,Marseille anse de maldormé,48933,observation-02e7a88d-b81a-4627-8439-9525f35da35e-6,https://biolit.fr/observations/observation-02e7a88d-b81a-4627-8439-9525f35da35e-6/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/Littorine bleue-Melarahphe neritoides.JPG,,TRUE, +N1,60508,sortie-02e7a88d-b81a-4627-8439-9525f35da35e,https://biolit.fr/sorties/sortie-02e7a88d-b81a-4627-8439-9525f35da35e/,Ville de Marseille Cabot les Pins CM1,,11/28/2016 0:00,10.0000000,12.0000000,43.28048400000,5.35023600000,,Marseille anse de maldormé,48935,observation-02e7a88d-b81a-4627-8439-9525f35da35e-7,https://biolit.fr/observations/observation-02e7a88d-b81a-4627-8439-9525f35da35e-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle bleue-Patella caerulea.JPG,,FALSE, +N1,60509,sortie-456e8851-bf7a-458d-91c6-e447ce2b4b88,https://biolit.fr/sorties/sortie-456e8851-bf7a-458d-91c6-e447ce2b4b88/,ludovic,,06/07/2017,10.0000000,12.0000000,43.236010000000,5.360039000000,,plage de la bonne brise ,48937,observation-456e8851-bf7a-458d-91c6-e447ce2b4b88,https://biolit.fr/observations/observation-456e8851-bf7a-458d-91c6-e447ce2b4b88/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_0988_1-scaled.jpg,,TRUE, +N1,60509,sortie-456e8851-bf7a-458d-91c6-e447ce2b4b88,https://biolit.fr/sorties/sortie-456e8851-bf7a-458d-91c6-e447ce2b4b88/,ludovic,,06/07/2017,10.0000000,12.0000000,43.236010000000,5.360039000000,,plage de la bonne brise ,48939,observation-456e8851-bf7a-458d-91c6-e447ce2b4b88-2,https://biolit.fr/observations/observation-456e8851-bf7a-458d-91c6-e447ce2b4b88-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0970_0-scaled.jpg,,FALSE, +N1,60509,sortie-456e8851-bf7a-458d-91c6-e447ce2b4b88,https://biolit.fr/sorties/sortie-456e8851-bf7a-458d-91c6-e447ce2b4b88/,ludovic,,06/07/2017,10.0000000,12.0000000,43.236010000000,5.360039000000,,plage de la bonne brise ,48941,observation-456e8851-bf7a-458d-91c6-e447ce2b4b88-3,https://biolit.fr/observations/observation-456e8851-bf7a-458d-91c6-e447ce2b4b88-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0967-scaled.jpg,,FALSE, +N1,60510,sortie-48a39deb-c12f-42b1-9791-3a7b27e902d9,https://biolit.fr/sorties/sortie-48a39deb-c12f-42b1-9791-3a7b27e902d9/,NVanzu,,06/07/2017,10.0000000,12.0000000,43.233138000000,5.355968000000,,Plage de la bonne brise,48943,observation-48a39deb-c12f-42b1-9791-3a7b27e902d9,https://biolit.fr/observations/observation-48a39deb-c12f-42b1-9791-3a7b27e902d9/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/DSC_0164_0-scaled.jpg,,TRUE, +N1,60510,sortie-48a39deb-c12f-42b1-9791-3a7b27e902d9,https://biolit.fr/sorties/sortie-48a39deb-c12f-42b1-9791-3a7b27e902d9/,NVanzu,,06/07/2017,10.0000000,12.0000000,43.233138000000,5.355968000000,,Plage de la bonne brise,48945,observation-48a39deb-c12f-42b1-9791-3a7b27e902d9-2,https://biolit.fr/observations/observation-48a39deb-c12f-42b1-9791-3a7b27e902d9-2/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0166_0-scaled.jpg,,TRUE, +N1,60510,sortie-48a39deb-c12f-42b1-9791-3a7b27e902d9,https://biolit.fr/sorties/sortie-48a39deb-c12f-42b1-9791-3a7b27e902d9/,NVanzu,,06/07/2017,10.0000000,12.0000000,43.233138000000,5.355968000000,,Plage de la bonne brise,48947,observation-48a39deb-c12f-42b1-9791-3a7b27e902d9-3,https://biolit.fr/observations/observation-48a39deb-c12f-42b1-9791-3a7b27e902d9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0170-scaled.jpg,,FALSE, +N1,60511,sortie-a519e1ff-471c-42f9-aa35-ac5bc192d6af,https://biolit.fr/sorties/sortie-a519e1ff-471c-42f9-aa35-ac5bc192d6af/,RIEM,,5/25/2017 0:00,18.0:15,18.0000000,51.071682000000,2.48341900000,,plage de Malo les bains ,48949,observation-a519e1ff-471c-42f9-aa35-ac5bc192d6af,https://biolit.fr/observations/observation-a519e1ff-471c-42f9-aa35-ac5bc192d6af/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170525_2.jpg,,FALSE, +N1,60511,sortie-a519e1ff-471c-42f9-aa35-ac5bc192d6af,https://biolit.fr/sorties/sortie-a519e1ff-471c-42f9-aa35-ac5bc192d6af/,RIEM,,5/25/2017 0:00,18.0:15,18.0000000,51.071682000000,2.48341900000,,plage de Malo les bains ,48951,observation-a519e1ff-471c-42f9-aa35-ac5bc192d6af-2,https://biolit.fr/observations/observation-a519e1ff-471c-42f9-aa35-ac5bc192d6af-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170525_3.jpg,,FALSE, +N1,60511,sortie-a519e1ff-471c-42f9-aa35-ac5bc192d6af,https://biolit.fr/sorties/sortie-a519e1ff-471c-42f9-aa35-ac5bc192d6af/,RIEM,,5/25/2017 0:00,18.0:15,18.0000000,51.071682000000,2.48341900000,,plage de Malo les bains ,48953,observation-a519e1ff-471c-42f9-aa35-ac5bc192d6af-3,https://biolit.fr/observations/observation-a519e1ff-471c-42f9-aa35-ac5bc192d6af-3/,Crangon crangon,Crevette grise européenne,,https://biolit.fr/wp-content/uploads/2023/07/20170525_4.jpg,,TRUE, +N1,60511,sortie-a519e1ff-471c-42f9-aa35-ac5bc192d6af,https://biolit.fr/sorties/sortie-a519e1ff-471c-42f9-aa35-ac5bc192d6af/,RIEM,,5/25/2017 0:00,18.0:15,18.0000000,51.071682000000,2.48341900000,,plage de Malo les bains ,48955,observation-a519e1ff-471c-42f9-aa35-ac5bc192d6af-4,https://biolit.fr/observations/observation-a519e1ff-471c-42f9-aa35-ac5bc192d6af-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20170525_5.jpg,,TRUE, +N1,60511,sortie-a519e1ff-471c-42f9-aa35-ac5bc192d6af,https://biolit.fr/sorties/sortie-a519e1ff-471c-42f9-aa35-ac5bc192d6af/,RIEM,,5/25/2017 0:00,18.0:15,18.0000000,51.071682000000,2.48341900000,,plage de Malo les bains ,48957,observation-a519e1ff-471c-42f9-aa35-ac5bc192d6af-5,https://biolit.fr/observations/observation-a519e1ff-471c-42f9-aa35-ac5bc192d6af-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170525_6.jpg,,FALSE, +N1,60511,sortie-a519e1ff-471c-42f9-aa35-ac5bc192d6af,https://biolit.fr/sorties/sortie-a519e1ff-471c-42f9-aa35-ac5bc192d6af/,RIEM,,5/25/2017 0:00,18.0:15,18.0000000,51.071682000000,2.48341900000,,plage de Malo les bains ,48959,observation-a519e1ff-471c-42f9-aa35-ac5bc192d6af-6,https://biolit.fr/observations/observation-a519e1ff-471c-42f9-aa35-ac5bc192d6af-6/,Diogenes pugilator,Diogène d'Europe,,https://biolit.fr/wp-content/uploads/2023/07/20170525_7.jpg,,TRUE, +N1,60511,sortie-a519e1ff-471c-42f9-aa35-ac5bc192d6af,https://biolit.fr/sorties/sortie-a519e1ff-471c-42f9-aa35-ac5bc192d6af/,RIEM,,5/25/2017 0:00,18.0:15,18.0000000,51.071682000000,2.48341900000,,plage de Malo les bains ,48961,observation-a519e1ff-471c-42f9-aa35-ac5bc192d6af-7,https://biolit.fr/observations/observation-a519e1ff-471c-42f9-aa35-ac5bc192d6af-7/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20170525_8.jpg,,TRUE, +N1,60512,sortie-0a445b5a-c50f-4e8d-ada8-29c7047391ee,https://biolit.fr/sorties/sortie-0a445b5a-c50f-4e8d-ada8-29c7047391ee/,Phil,,05/06/2017,12.0000000,12.0000000,47.893250000000,-3.96506400000,,La Forêt- Fouesnant - Finistère,48963,observation-0a445b5a-c50f-4e8d-ada8-29c7047391ee,https://biolit.fr/observations/observation-0a445b5a-c50f-4e8d-ada8-29c7047391ee/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_124759.jpg,,FALSE, +N1,60512,sortie-0a445b5a-c50f-4e8d-ada8-29c7047391ee,https://biolit.fr/sorties/sortie-0a445b5a-c50f-4e8d-ada8-29c7047391ee/,Phil,,05/06/2017,12.0000000,12.0000000,47.893250000000,-3.96506400000,,La Forêt- Fouesnant - Finistère,48965,observation-0a445b5a-c50f-4e8d-ada8-29c7047391ee-2,https://biolit.fr/observations/observation-0a445b5a-c50f-4e8d-ada8-29c7047391ee-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_124812.jpg,,FALSE, +N1,60512,sortie-0a445b5a-c50f-4e8d-ada8-29c7047391ee,https://biolit.fr/sorties/sortie-0a445b5a-c50f-4e8d-ada8-29c7047391ee/,Phil,,05/06/2017,12.0000000,12.0000000,47.893250000000,-3.96506400000,,La Forêt- Fouesnant - Finistère,48967,observation-0a445b5a-c50f-4e8d-ada8-29c7047391ee-3,https://biolit.fr/observations/observation-0a445b5a-c50f-4e8d-ada8-29c7047391ee-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_124448.jpg,,FALSE, +N1,60512,sortie-0a445b5a-c50f-4e8d-ada8-29c7047391ee,https://biolit.fr/sorties/sortie-0a445b5a-c50f-4e8d-ada8-29c7047391ee/,Phil,,05/06/2017,12.0000000,12.0000000,47.893250000000,-3.96506400000,,La Forêt- Fouesnant - Finistère,48969,observation-0a445b5a-c50f-4e8d-ada8-29c7047391ee-4,https://biolit.fr/observations/observation-0a445b5a-c50f-4e8d-ada8-29c7047391ee-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_125004.jpg,,FALSE, +N1,60513,sortie-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3,https://biolit.fr/sorties/sortie-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3/,Phil,,4/15/2017 0:00,13.0000000,13.0000000,47.794778000000,-4.372601000000,,Penmarc'h - Finistère,48971,observation-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3,https://biolit.fr/observations/observation-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1070238.JPG,,TRUE, +N1,60513,sortie-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3,https://biolit.fr/sorties/sortie-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3/,Phil,,4/15/2017 0:00,13.0000000,13.0000000,47.794778000000,-4.372601000000,,Penmarc'h - Finistère,48973,observation-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3-2,https://biolit.fr/observations/observation-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070243.JPG,,FALSE, +N1,60513,sortie-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3,https://biolit.fr/sorties/sortie-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3/,Phil,,4/15/2017 0:00,13.0000000,13.0000000,47.794778000000,-4.372601000000,,Penmarc'h - Finistère,48975,observation-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3-3,https://biolit.fr/observations/observation-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3-3/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/P1070236.JPG,,TRUE, +N1,60513,sortie-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3,https://biolit.fr/sorties/sortie-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3/,Phil,,4/15/2017 0:00,13.0000000,13.0000000,47.794778000000,-4.372601000000,,Penmarc'h - Finistère,48977,observation-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3-4,https://biolit.fr/observations/observation-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3-4/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/P1070237.JPG,,TRUE, +N1,60513,sortie-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3,https://biolit.fr/sorties/sortie-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3/,Phil,,4/15/2017 0:00,13.0000000,13.0000000,47.794778000000,-4.372601000000,,Penmarc'h - Finistère,48979,observation-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3-5,https://biolit.fr/observations/observation-abf25ab5-fb2a-4f58-9c3d-8e3c78ed9fd3-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070213_1.JPG,,FALSE, +N1,60514,sortie-102ca143-3c52-443a-8bf8-930f77f4070e,https://biolit.fr/sorties/sortie-102ca143-3c52-443a-8bf8-930f77f4070e/,Nane,,5/28/2017 0:00,14.0000000,16.0000000,43.273181000000,5.35328600000,,calanque de pousterlo,48981,observation-102ca143-3c52-443a-8bf8-930f77f4070e,https://biolit.fr/observations/observation-102ca143-3c52-443a-8bf8-930f77f4070e/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170528_210209-scaled.jpg,,FALSE, +N1,60514,sortie-102ca143-3c52-443a-8bf8-930f77f4070e,https://biolit.fr/sorties/sortie-102ca143-3c52-443a-8bf8-930f77f4070e/,Nane,,5/28/2017 0:00,14.0000000,16.0000000,43.273181000000,5.35328600000,,calanque de pousterlo,48983,observation-102ca143-3c52-443a-8bf8-930f77f4070e-2,https://biolit.fr/observations/observation-102ca143-3c52-443a-8bf8-930f77f4070e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170528_210105-scaled.jpg,,FALSE, +N1,60514,sortie-102ca143-3c52-443a-8bf8-930f77f4070e,https://biolit.fr/sorties/sortie-102ca143-3c52-443a-8bf8-930f77f4070e/,Nane,,5/28/2017 0:00,14.0000000,16.0000000,43.273181000000,5.35328600000,,calanque de pousterlo,48985,observation-102ca143-3c52-443a-8bf8-930f77f4070e-3,https://biolit.fr/observations/observation-102ca143-3c52-443a-8bf8-930f77f4070e-3/,Colpomenia sinuosa,Colpoménia sinueux,,https://biolit.fr/wp-content/uploads/2023/07/20170528_210041-scaled.jpg,,TRUE, +N1,60514,sortie-102ca143-3c52-443a-8bf8-930f77f4070e,https://biolit.fr/sorties/sortie-102ca143-3c52-443a-8bf8-930f77f4070e/,Nane,,5/28/2017 0:00,14.0000000,16.0000000,43.273181000000,5.35328600000,,calanque de pousterlo,48987,observation-102ca143-3c52-443a-8bf8-930f77f4070e-4,https://biolit.fr/observations/observation-102ca143-3c52-443a-8bf8-930f77f4070e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170528_210028-scaled.jpg,,FALSE, +N1,60514,sortie-102ca143-3c52-443a-8bf8-930f77f4070e,https://biolit.fr/sorties/sortie-102ca143-3c52-443a-8bf8-930f77f4070e/,Nane,,5/28/2017 0:00,14.0000000,16.0000000,43.273181000000,5.35328600000,,calanque de pousterlo,48989,observation-102ca143-3c52-443a-8bf8-930f77f4070e-5,https://biolit.fr/observations/observation-102ca143-3c52-443a-8bf8-930f77f4070e-5/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20170528_205429-scaled.jpg,,TRUE, +N1,60514,sortie-102ca143-3c52-443a-8bf8-930f77f4070e,https://biolit.fr/sorties/sortie-102ca143-3c52-443a-8bf8-930f77f4070e/,Nane,,5/28/2017 0:00,14.0000000,16.0000000,43.273181000000,5.35328600000,,calanque de pousterlo,48991,observation-102ca143-3c52-443a-8bf8-930f77f4070e-6,https://biolit.fr/observations/observation-102ca143-3c52-443a-8bf8-930f77f4070e-6/,Tripterygion delaisi,Triptérygion jaune,,https://biolit.fr/wp-content/uploads/2023/07/20170528_205340-scaled.jpg,,TRUE, +N1,60514,sortie-102ca143-3c52-443a-8bf8-930f77f4070e,https://biolit.fr/sorties/sortie-102ca143-3c52-443a-8bf8-930f77f4070e/,Nane,,5/28/2017 0:00,14.0000000,16.0000000,43.273181000000,5.35328600000,,calanque de pousterlo,48993,observation-102ca143-3c52-443a-8bf8-930f77f4070e-7,https://biolit.fr/observations/observation-102ca143-3c52-443a-8bf8-930f77f4070e-7/,Lipophrys trigloides,Blennie trigloïde,,https://biolit.fr/wp-content/uploads/2023/07/20170528_205252-scaled.jpg,,TRUE, +N1,60515,sortie-6f7207b0-f663-404c-ac81-e6a67b66b3ff,https://biolit.fr/sorties/sortie-6f7207b0-f663-404c-ac81-e6a67b66b3ff/,Phil,,5/29/2017 0:00,16.0:55,17.0000000,47.797037000000,-4.19232100000,,Loctudy - Finistère,48995,observation-6f7207b0-f663-404c-ac81-e6a67b66b3ff,https://biolit.fr/observations/observation-6f7207b0-f663-404c-ac81-e6a67b66b3ff/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20170529_165713.jpg,,TRUE, +N1,60515,sortie-6f7207b0-f663-404c-ac81-e6a67b66b3ff,https://biolit.fr/sorties/sortie-6f7207b0-f663-404c-ac81-e6a67b66b3ff/,Phil,,5/29/2017 0:00,16.0:55,17.0000000,47.797037000000,-4.19232100000,,Loctudy - Finistère,48997,observation-6f7207b0-f663-404c-ac81-e6a67b66b3ff-2,https://biolit.fr/observations/observation-6f7207b0-f663-404c-ac81-e6a67b66b3ff-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170529_165641.jpg,,FALSE, +N1,60516,sortie-c93be916-9f37-45eb-9ee0-a199047dc346,https://biolit.fr/sorties/sortie-c93be916-9f37-45eb-9ee0-a199047dc346/,Phil,,11/02/2016,13.0000000,14.0:15,47.798578000000,-4.178281000000,,Loctudy -Finistère,49001,observation-c93be916-9f37-45eb-9ee0-a199047dc346-2,https://biolit.fr/observations/observation-c93be916-9f37-45eb-9ee0-a199047dc346-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20161102_135035.jpg,,TRUE, +N1,60516,sortie-c93be916-9f37-45eb-9ee0-a199047dc346,https://biolit.fr/sorties/sortie-c93be916-9f37-45eb-9ee0-a199047dc346/,Phil,,11/02/2016,13.0000000,14.0:15,47.798578000000,-4.178281000000,,Loctudy -Finistère,49003,observation-c93be916-9f37-45eb-9ee0-a199047dc346-3,https://biolit.fr/observations/observation-c93be916-9f37-45eb-9ee0-a199047dc346-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161102_141533.jpg,,FALSE, +N1,60517,sortie-db171218-f567-4bff-be06-0a5a52432cd1,https://biolit.fr/sorties/sortie-db171218-f567-4bff-be06-0a5a52432cd1/,cigale33,,5/29/2017 0:00,15.0000000,16.0000000,43.377046000000,-1.761247000000,,hendaye plage,49005,observation-db171218-f567-4bff-be06-0a5a52432cd1,https://biolit.fr/observations/observation-db171218-f567-4bff-be06-0a5a52432cd1/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/_MG_0724.JPG,,TRUE, +N1,60517,sortie-db171218-f567-4bff-be06-0a5a52432cd1,https://biolit.fr/sorties/sortie-db171218-f567-4bff-be06-0a5a52432cd1/,cigale33,,5/29/2017 0:00,15.0000000,16.0000000,43.377046000000,-1.761247000000,,hendaye plage,49007,observation-db171218-f567-4bff-be06-0a5a52432cd1-2,https://biolit.fr/observations/observation-db171218-f567-4bff-be06-0a5a52432cd1-2/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/_MG_0736.JPG,,TRUE, +N1,60517,sortie-db171218-f567-4bff-be06-0a5a52432cd1,https://biolit.fr/sorties/sortie-db171218-f567-4bff-be06-0a5a52432cd1/,cigale33,,5/29/2017 0:00,15.0000000,16.0000000,43.377046000000,-1.761247000000,,hendaye plage,49009,observation-db171218-f567-4bff-be06-0a5a52432cd1-3,https://biolit.fr/observations/observation-db171218-f567-4bff-be06-0a5a52432cd1-3/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/_MG_0738.JPG,,TRUE, +N1,60517,sortie-db171218-f567-4bff-be06-0a5a52432cd1,https://biolit.fr/sorties/sortie-db171218-f567-4bff-be06-0a5a52432cd1/,cigale33,,5/29/2017 0:00,15.0000000,16.0000000,43.377046000000,-1.761247000000,,hendaye plage,49011,observation-db171218-f567-4bff-be06-0a5a52432cd1-4,https://biolit.fr/observations/observation-db171218-f567-4bff-be06-0a5a52432cd1-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_0739.JPG,,FALSE, +N1,60517,sortie-db171218-f567-4bff-be06-0a5a52432cd1,https://biolit.fr/sorties/sortie-db171218-f567-4bff-be06-0a5a52432cd1/,cigale33,,5/29/2017 0:00,15.0000000,16.0000000,43.377046000000,-1.761247000000,,hendaye plage,49013,observation-db171218-f567-4bff-be06-0a5a52432cd1-5,https://biolit.fr/observations/observation-db171218-f567-4bff-be06-0a5a52432cd1-5/,Ensis siliqua,Couteau-silique,,https://biolit.fr/wp-content/uploads/2023/07/_MG_0740.JPG,,TRUE, +N1,60518,sortie-05dcc488-37d8-4d6e-9b08-d263aa55c87d,https://biolit.fr/sorties/sortie-05dcc488-37d8-4d6e-9b08-d263aa55c87d/,Marine,,5/28/2017 0:00,14.0000000,15.0000000,43.076763000000,6.126363000000,,Plage de l'Almanare,49015,observation-05dcc488-37d8-4d6e-9b08-d263aa55c87d,https://biolit.fr/observations/observation-05dcc488-37d8-4d6e-9b08-d263aa55c87d/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2430-scaled.jpg,,FALSE, +N1,60518,sortie-05dcc488-37d8-4d6e-9b08-d263aa55c87d,https://biolit.fr/sorties/sortie-05dcc488-37d8-4d6e-9b08-d263aa55c87d/,Marine,,5/28/2017 0:00,14.0000000,15.0000000,43.076763000000,6.126363000000,,Plage de l'Almanare,49017,observation-05dcc488-37d8-4d6e-9b08-d263aa55c87d-2,https://biolit.fr/observations/observation-05dcc488-37d8-4d6e-9b08-d263aa55c87d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2432-rotated.jpg,,FALSE, +N1,60518,sortie-05dcc488-37d8-4d6e-9b08-d263aa55c87d,https://biolit.fr/sorties/sortie-05dcc488-37d8-4d6e-9b08-d263aa55c87d/,Marine,,5/28/2017 0:00,14.0000000,15.0000000,43.076763000000,6.126363000000,,Plage de l'Almanare,49019,observation-05dcc488-37d8-4d6e-9b08-d263aa55c87d-3,https://biolit.fr/observations/observation-05dcc488-37d8-4d6e-9b08-d263aa55c87d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2427-rotated.jpg,,FALSE, +N1,60518,sortie-05dcc488-37d8-4d6e-9b08-d263aa55c87d,https://biolit.fr/sorties/sortie-05dcc488-37d8-4d6e-9b08-d263aa55c87d/,Marine,,5/28/2017 0:00,14.0000000,15.0000000,43.076763000000,6.126363000000,,Plage de l'Almanare,49021,observation-05dcc488-37d8-4d6e-9b08-d263aa55c87d-4,https://biolit.fr/observations/observation-05dcc488-37d8-4d6e-9b08-d263aa55c87d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2423-rotated.jpg,,FALSE, +N1,60518,sortie-05dcc488-37d8-4d6e-9b08-d263aa55c87d,https://biolit.fr/sorties/sortie-05dcc488-37d8-4d6e-9b08-d263aa55c87d/,Marine,,5/28/2017 0:00,14.0000000,15.0000000,43.076763000000,6.126363000000,,Plage de l'Almanare,49023,observation-05dcc488-37d8-4d6e-9b08-d263aa55c87d-5,https://biolit.fr/observations/observation-05dcc488-37d8-4d6e-9b08-d263aa55c87d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2422-rotated.jpg,,FALSE, +N1,60518,sortie-05dcc488-37d8-4d6e-9b08-d263aa55c87d,https://biolit.fr/sorties/sortie-05dcc488-37d8-4d6e-9b08-d263aa55c87d/,Marine,,5/28/2017 0:00,14.0000000,15.0000000,43.076763000000,6.126363000000,,Plage de l'Almanare,49025,observation-05dcc488-37d8-4d6e-9b08-d263aa55c87d-6,https://biolit.fr/observations/observation-05dcc488-37d8-4d6e-9b08-d263aa55c87d-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2420-rotated.jpg,,FALSE, +N1,60519,sortie-226dfe24-2163-43fa-865a-fc34d12cc1ca,https://biolit.fr/sorties/sortie-226dfe24-2163-43fa-865a-fc34d12cc1ca/,ludovic,,4/26/2017 0:00,11.0000000,13.0000000,43.154368000000,6.481924000000,,plage Domaine du Rayol (le Figuier),49027,observation-226dfe24-2163-43fa-865a-fc34d12cc1ca,https://biolit.fr/observations/observation-226dfe24-2163-43fa-865a-fc34d12cc1ca/,,,,https://biolit.fr/wp-content/uploads/2023/07/coraline-scaled.jpg,,FALSE, +N1,60519,sortie-226dfe24-2163-43fa-865a-fc34d12cc1ca,https://biolit.fr/sorties/sortie-226dfe24-2163-43fa-865a-fc34d12cc1ca/,ludovic,,4/26/2017 0:00,11.0000000,13.0000000,43.154368000000,6.481924000000,,plage Domaine du Rayol (le Figuier),49029,observation-226dfe24-2163-43fa-865a-fc34d12cc1ca-2,https://biolit.fr/observations/observation-226dfe24-2163-43fa-865a-fc34d12cc1ca-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/balane-scaled.jpg,,TRUE, +N1,60519,sortie-226dfe24-2163-43fa-865a-fc34d12cc1ca,https://biolit.fr/sorties/sortie-226dfe24-2163-43fa-865a-fc34d12cc1ca/,ludovic,,4/26/2017 0:00,11.0000000,13.0000000,43.154368000000,6.481924000000,,plage Domaine du Rayol (le Figuier),49031,observation-226dfe24-2163-43fa-865a-fc34d12cc1ca-3,https://biolit.fr/observations/observation-226dfe24-2163-43fa-865a-fc34d12cc1ca-3/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/crabe retourné-scaled.jpg,,TRUE, +N1,60519,sortie-226dfe24-2163-43fa-865a-fc34d12cc1ca,https://biolit.fr/sorties/sortie-226dfe24-2163-43fa-865a-fc34d12cc1ca/,ludovic,,4/26/2017 0:00,11.0000000,13.0000000,43.154368000000,6.481924000000,,plage Domaine du Rayol (le Figuier),49033,observation-226dfe24-2163-43fa-865a-fc34d12cc1ca-4,https://biolit.fr/observations/observation-226dfe24-2163-43fa-865a-fc34d12cc1ca-4/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/crabe-scaled.jpg,,TRUE, +N1,60519,sortie-226dfe24-2163-43fa-865a-fc34d12cc1ca,https://biolit.fr/sorties/sortie-226dfe24-2163-43fa-865a-fc34d12cc1ca/,ludovic,,4/26/2017 0:00,11.0000000,13.0000000,43.154368000000,6.481924000000,,plage Domaine du Rayol (le Figuier),49034,observation-226dfe24-2163-43fa-865a-fc34d12cc1ca-5,https://biolit.fr/observations/observation-226dfe24-2163-43fa-865a-fc34d12cc1ca-5/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/gibule-scaled.jpg,,TRUE, +N1,60520,sortie-72545d4d-a2d9-4adf-864b-5507b2120350,https://biolit.fr/sorties/sortie-72545d4d-a2d9-4adf-864b-5507b2120350/,ludovic,,4/26/2017 0:00,11.0000000,13.0000000,43.15437400000,6.481926000000,,plage Domaine du Rayol (le Figuier),49036,observation-72545d4d-a2d9-4adf-864b-5507b2120350,https://biolit.fr/observations/observation-72545d4d-a2d9-4adf-864b-5507b2120350/,,,,https://biolit.fr/wp-content/uploads/2023/07/mouche-scaled.jpg,,FALSE, +N1,60520,sortie-72545d4d-a2d9-4adf-864b-5507b2120350,https://biolit.fr/sorties/sortie-72545d4d-a2d9-4adf-864b-5507b2120350/,ludovic,,4/26/2017 0:00,11.0000000,13.0000000,43.15437400000,6.481926000000,,plage Domaine du Rayol (le Figuier),49038,observation-72545d4d-a2d9-4adf-864b-5507b2120350-2,https://biolit.fr/observations/observation-72545d4d-a2d9-4adf-864b-5507b2120350-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/patella sp-scaled.jpg,,TRUE, +N1,60520,sortie-72545d4d-a2d9-4adf-864b-5507b2120350,https://biolit.fr/sorties/sortie-72545d4d-a2d9-4adf-864b-5507b2120350/,ludovic,,4/26/2017 0:00,11.0000000,13.0000000,43.15437400000,6.481926000000,,plage Domaine du Rayol (le Figuier),49040,observation-72545d4d-a2d9-4adf-864b-5507b2120350-3,https://biolit.fr/observations/observation-72545d4d-a2d9-4adf-864b-5507b2120350-3/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/Patelle_0-scaled.jpg,,TRUE, +N1,60520,sortie-72545d4d-a2d9-4adf-864b-5507b2120350,https://biolit.fr/sorties/sortie-72545d4d-a2d9-4adf-864b-5507b2120350/,ludovic,,4/26/2017 0:00,11.0000000,13.0000000,43.15437400000,6.481926000000,,plage Domaine du Rayol (le Figuier),49041,observation-72545d4d-a2d9-4adf-864b-5507b2120350-4,https://biolit.fr/observations/observation-72545d4d-a2d9-4adf-864b-5507b2120350-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Posidonie-scaled.jpg,,FALSE, +N1,60520,sortie-72545d4d-a2d9-4adf-864b-5507b2120350,https://biolit.fr/sorties/sortie-72545d4d-a2d9-4adf-864b-5507b2120350/,ludovic,,4/26/2017 0:00,11.0000000,13.0000000,43.15437400000,6.481926000000,,plage Domaine du Rayol (le Figuier),49042,observation-72545d4d-a2d9-4adf-864b-5507b2120350-5,https://biolit.fr/observations/observation-72545d4d-a2d9-4adf-864b-5507b2120350-5/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/2023/07/talytre-scaled.jpg,,TRUE, +N1,60520,sortie-72545d4d-a2d9-4adf-864b-5507b2120350,https://biolit.fr/sorties/sortie-72545d4d-a2d9-4adf-864b-5507b2120350/,ludovic,,4/26/2017 0:00,11.0000000,13.0000000,43.15437400000,6.481926000000,,plage Domaine du Rayol (le Figuier),49044,observation-72545d4d-a2d9-4adf-864b-5507b2120350-6,https://biolit.fr/observations/observation-72545d4d-a2d9-4adf-864b-5507b2120350-6/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/Tomate de Mer-scaled.jpg,,TRUE, +N1,60521,sortie-a005f1c6-c1de-4213-8789-96569c2f466f,https://biolit.fr/sorties/sortie-a005f1c6-c1de-4213-8789-96569c2f466f/,Phil,,3/23/2017 0:00,13.0:45,13.0000000,47.946850000000,-4.40981400000,,Pouldreuzic - Finistère,49045,observation-a005f1c6-c1de-4213-8789-96569c2f466f,https://biolit.fr/observations/observation-a005f1c6-c1de-4213-8789-96569c2f466f/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20170323_134840.jpg,,TRUE, +N1,60521,sortie-a005f1c6-c1de-4213-8789-96569c2f466f,https://biolit.fr/sorties/sortie-a005f1c6-c1de-4213-8789-96569c2f466f/,Phil,,3/23/2017 0:00,13.0:45,13.0000000,47.946850000000,-4.40981400000,,Pouldreuzic - Finistère,49047,observation-a005f1c6-c1de-4213-8789-96569c2f466f-2,https://biolit.fr/observations/observation-a005f1c6-c1de-4213-8789-96569c2f466f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170323_134850.jpg,,FALSE, +N1,60521,sortie-a005f1c6-c1de-4213-8789-96569c2f466f,https://biolit.fr/sorties/sortie-a005f1c6-c1de-4213-8789-96569c2f466f/,Phil,,3/23/2017 0:00,13.0:45,13.0000000,47.946850000000,-4.40981400000,,Pouldreuzic - Finistère,49049,observation-a005f1c6-c1de-4213-8789-96569c2f466f-3,https://biolit.fr/observations/observation-a005f1c6-c1de-4213-8789-96569c2f466f-3/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20170323_134714.jpg,,TRUE, +N1,60522,sortie-b62ff36c-4826-452b-87dc-bfdb32fe993b,https://biolit.fr/sorties/sortie-b62ff36c-4826-452b-87dc-bfdb32fe993b/,Phil,,4/14/2017 0:00,11.000005,11.000005,48.853138000000,-2.992538000000,,Île-de-Bréhat - Côtes-d'Armor,49051,observation-b62ff36c-4826-452b-87dc-bfdb32fe993b,https://biolit.fr/observations/observation-b62ff36c-4826-452b-87dc-bfdb32fe993b/,Tadorna tadorna,Tadorne de Belon,,https://biolit.fr/wp-content/uploads/2023/07/P1060937.JPG,,TRUE, +N1,60522,sortie-b62ff36c-4826-452b-87dc-bfdb32fe993b,https://biolit.fr/sorties/sortie-b62ff36c-4826-452b-87dc-bfdb32fe993b/,Phil,,4/14/2017 0:00,11.000005,11.000005,48.853138000000,-2.992538000000,,Île-de-Bréhat - Côtes-d'Armor,49053,observation-b62ff36c-4826-452b-87dc-bfdb32fe993b-2,https://biolit.fr/observations/observation-b62ff36c-4826-452b-87dc-bfdb32fe993b-2/,Tadorna tadorna,Tadorne de Belon,,https://biolit.fr/wp-content/uploads/2023/07/P1060935.JPG,,TRUE, +N1,60523,sortie-de17f21b-593d-4acd-b472-c6f44e8222d8,https://biolit.fr/sorties/sortie-de17f21b-593d-4acd-b472-c6f44e8222d8/,Phil,,4/15/2017 0:00,17.000005,17.0000000,48.207792000000,-4.373717000000,,Telgruc sur Mer - Finistère,49055,observation-de17f21b-593d-4acd-b472-c6f44e8222d8,https://biolit.fr/observations/observation-de17f21b-593d-4acd-b472-c6f44e8222d8/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1070330.JPG,,TRUE, +N1,60523,sortie-de17f21b-593d-4acd-b472-c6f44e8222d8,https://biolit.fr/sorties/sortie-de17f21b-593d-4acd-b472-c6f44e8222d8/,Phil,,4/15/2017 0:00,17.000005,17.0000000,48.207792000000,-4.373717000000,,Telgruc sur Mer - Finistère,49057,observation-de17f21b-593d-4acd-b472-c6f44e8222d8-2,https://biolit.fr/observations/observation-de17f21b-593d-4acd-b472-c6f44e8222d8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070332.JPG,,FALSE, +N1,60523,sortie-de17f21b-593d-4acd-b472-c6f44e8222d8,https://biolit.fr/sorties/sortie-de17f21b-593d-4acd-b472-c6f44e8222d8/,Phil,,4/15/2017 0:00,17.000005,17.0000000,48.207792000000,-4.373717000000,,Telgruc sur Mer - Finistère,49059,observation-de17f21b-593d-4acd-b472-c6f44e8222d8-3,https://biolit.fr/observations/observation-de17f21b-593d-4acd-b472-c6f44e8222d8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070332 (2).JPG,,FALSE, +N1,60524,sortie-6c6392ba-4e14-42ee-8b8d-18b815fc53f2,https://biolit.fr/sorties/sortie-6c6392ba-4e14-42ee-8b8d-18b815fc53f2/,Phil,,3/27/2017 0:00,11.0000000,11.0000000,47.853406000000,-3.912710000000,,Concarneau - Finistère,49061,observation-6c6392ba-4e14-42ee-8b8d-18b815fc53f2,https://biolit.fr/observations/observation-6c6392ba-4e14-42ee-8b8d-18b815fc53f2/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1060850.JPG,,TRUE, +N1,60524,sortie-6c6392ba-4e14-42ee-8b8d-18b815fc53f2,https://biolit.fr/sorties/sortie-6c6392ba-4e14-42ee-8b8d-18b815fc53f2/,Phil,,3/27/2017 0:00,11.0000000,11.0000000,47.853406000000,-3.912710000000,,Concarneau - Finistère,49063,observation-6c6392ba-4e14-42ee-8b8d-18b815fc53f2-2,https://biolit.fr/observations/observation-6c6392ba-4e14-42ee-8b8d-18b815fc53f2-2/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/P1060845.JPG,,TRUE, +N1,60524,sortie-6c6392ba-4e14-42ee-8b8d-18b815fc53f2,https://biolit.fr/sorties/sortie-6c6392ba-4e14-42ee-8b8d-18b815fc53f2/,Phil,,3/27/2017 0:00,11.0000000,11.0000000,47.853406000000,-3.912710000000,,Concarneau - Finistère,49065,observation-6c6392ba-4e14-42ee-8b8d-18b815fc53f2-3,https://biolit.fr/observations/observation-6c6392ba-4e14-42ee-8b8d-18b815fc53f2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060841.JPG,,FALSE, +N1,60524,sortie-6c6392ba-4e14-42ee-8b8d-18b815fc53f2,https://biolit.fr/sorties/sortie-6c6392ba-4e14-42ee-8b8d-18b815fc53f2/,Phil,,3/27/2017 0:00,11.0000000,11.0000000,47.853406000000,-3.912710000000,,Concarneau - Finistère,49067,observation-6c6392ba-4e14-42ee-8b8d-18b815fc53f2-4,https://biolit.fr/observations/observation-6c6392ba-4e14-42ee-8b8d-18b815fc53f2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060853.JPG,,FALSE, +N1,60524,sortie-6c6392ba-4e14-42ee-8b8d-18b815fc53f2,https://biolit.fr/sorties/sortie-6c6392ba-4e14-42ee-8b8d-18b815fc53f2/,Phil,,3/27/2017 0:00,11.0000000,11.0000000,47.853406000000,-3.912710000000,,Concarneau - Finistère,49069,observation-6c6392ba-4e14-42ee-8b8d-18b815fc53f2-5,https://biolit.fr/observations/observation-6c6392ba-4e14-42ee-8b8d-18b815fc53f2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060856.JPG,,FALSE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49071,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1317-scaled.jpg,,FALSE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49073,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-2,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_1322-scaled.jpg,,TRUE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49075,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-3,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-3/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_1323-scaled.jpg,,TRUE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49077,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-4,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-4/,Chaetomorpha aerea,Crinière dressée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1324-scaled.jpg,,TRUE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49079,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-5,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1325-scaled.jpg,,FALSE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49081,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-6,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-6/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_1332-scaled.jpg,,TRUE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49083,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-7,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1336-scaled.jpg,,FALSE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49085,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-8,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-8/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_1333-scaled.jpg,,TRUE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49087,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-9,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1338-scaled.jpg,,FALSE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49089,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-10,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1339-scaled.jpg,,FALSE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49091,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-11,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-11/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_1341_0-scaled.jpg,,TRUE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49093,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-12,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1345_0-scaled.jpg,,FALSE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49095,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-13,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1344_0-scaled.jpg,,FALSE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49097,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-14,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1346_0-scaled.jpg,,FALSE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49099,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-15,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-15/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_1347_0-scaled.jpg,,TRUE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49101,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-16,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1349-scaled.jpg,,FALSE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49102,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-17,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1350_0-scaled.jpg,,FALSE, +N1,60525,sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a,https://biolit.fr/sorties/sortie-e2a06aea-5522-4d23-b8e9-4aee405d359a/,srhvssr,,5/21/2017 0:00,15.0000000,15.0:15,50.902247000000,1.676686000000,,Wissant,49104,observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-18,https://biolit.fr/observations/observation-e2a06aea-5522-4d23-b8e9-4aee405d359a-18/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1352_0-scaled.jpg,,TRUE, +N1,60526,sortie-86c15aaa-bcdd-4076-b767-8cc5b799a9c2,https://biolit.fr/sorties/sortie-86c15aaa-bcdd-4076-b767-8cc5b799a9c2/,AIEJE,,5/19/2017 0:00,15.0000000,17.0000000,43.33395700000,5.197804000000,,calanque de la redonne,49106,observation-86c15aaa-bcdd-4076-b767-8cc5b799a9c2,https://biolit.fr/observations/observation-86c15aaa-bcdd-4076-b767-8cc5b799a9c2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_4729_0-scaled.jpg,,TRUE, +N1,60526,sortie-86c15aaa-bcdd-4076-b767-8cc5b799a9c2,https://biolit.fr/sorties/sortie-86c15aaa-bcdd-4076-b767-8cc5b799a9c2/,AIEJE,,5/19/2017 0:00,15.0000000,17.0000000,43.33395700000,5.197804000000,,calanque de la redonne,49108,observation-86c15aaa-bcdd-4076-b767-8cc5b799a9c2-2,https://biolit.fr/observations/observation-86c15aaa-bcdd-4076-b767-8cc5b799a9c2-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_4726_0-scaled.jpg,,TRUE, +N1,60527,sortie-b6c5043d-7f99-48d6-a370-323f35ee36bb,https://biolit.fr/sorties/sortie-b6c5043d-7f99-48d6-a370-323f35ee36bb/,Phil,,3/23/2017 0:00,13.0000000,13.0:45,47.947884000000,-4.41133800000,,Pouldreuzic - Finistère,49110,observation-b6c5043d-7f99-48d6-a370-323f35ee36bb,https://biolit.fr/observations/observation-b6c5043d-7f99-48d6-a370-323f35ee36bb/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170323_133927.jpg,,FALSE, +N1,60527,sortie-b6c5043d-7f99-48d6-a370-323f35ee36bb,https://biolit.fr/sorties/sortie-b6c5043d-7f99-48d6-a370-323f35ee36bb/,Phil,,3/23/2017 0:00,13.0000000,13.0:45,47.947884000000,-4.41133800000,,Pouldreuzic - Finistère,49112,observation-b6c5043d-7f99-48d6-a370-323f35ee36bb-2,https://biolit.fr/observations/observation-b6c5043d-7f99-48d6-a370-323f35ee36bb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170323_133935.jpg,,FALSE, +N1,60527,sortie-b6c5043d-7f99-48d6-a370-323f35ee36bb,https://biolit.fr/sorties/sortie-b6c5043d-7f99-48d6-a370-323f35ee36bb/,Phil,,3/23/2017 0:00,13.0000000,13.0:45,47.947884000000,-4.41133800000,,Pouldreuzic - Finistère,49114,observation-b6c5043d-7f99-48d6-a370-323f35ee36bb-3,https://biolit.fr/observations/observation-b6c5043d-7f99-48d6-a370-323f35ee36bb-3/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/20170323_134025.jpg,,TRUE, +N1,60528,sortie-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6,https://biolit.fr/sorties/sortie-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6/,SidonieG,,05/10/2017,14.0000000,16.0000000,43.214808000000,5.342906000000,,L'anse de la Maronnaise,49116,observation-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6,https://biolit.fr/observations/observation-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5586-scaled.jpg,,FALSE, +N1,60528,sortie-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6,https://biolit.fr/sorties/sortie-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6/,SidonieG,,05/10/2017,14.0000000,16.0000000,43.214808000000,5.342906000000,,L'anse de la Maronnaise,49118,observation-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6-2,https://biolit.fr/observations/observation-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5595-scaled.jpg,,FALSE, +N1,60528,sortie-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6,https://biolit.fr/sorties/sortie-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6/,SidonieG,,05/10/2017,14.0000000,16.0000000,43.214808000000,5.342906000000,,L'anse de la Maronnaise,49120,observation-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6-3,https://biolit.fr/observations/observation-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5593-scaled.jpg,,FALSE, +N1,60528,sortie-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6,https://biolit.fr/sorties/sortie-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6/,SidonieG,,05/10/2017,14.0000000,16.0000000,43.214808000000,5.342906000000,,L'anse de la Maronnaise,49122,observation-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6-4,https://biolit.fr/observations/observation-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6-4/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5612-scaled.jpg,,TRUE, +N1,60528,sortie-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6,https://biolit.fr/sorties/sortie-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6/,SidonieG,,05/10/2017,14.0000000,16.0000000,43.214808000000,5.342906000000,,L'anse de la Maronnaise,49124,observation-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6-5,https://biolit.fr/observations/observation-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5572-scaled.jpg,,FALSE, +N1,60528,sortie-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6,https://biolit.fr/sorties/sortie-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6/,SidonieG,,05/10/2017,14.0000000,16.0000000,43.214808000000,5.342906000000,,L'anse de la Maronnaise,49125,observation-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6-6,https://biolit.fr/observations/observation-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6-6/,Stramonita haemastoma,Bouche de sang,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5609-scaled.jpg,,TRUE, +N1,60528,sortie-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6,https://biolit.fr/sorties/sortie-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6/,SidonieG,,05/10/2017,14.0000000,16.0000000,43.214808000000,5.342906000000,,L'anse de la Maronnaise,49127,observation-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6-7,https://biolit.fr/observations/observation-c83a02bc-3a9c-47a1-ab2e-083e97b2eca6-7/,Ligia italica,Ligie italienne,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5603-scaled.jpg,,TRUE, +N1,60529,sortie-dad5850a-21f4-4975-8ce2-5819278702e7,https://biolit.fr/sorties/sortie-dad5850a-21f4-4975-8ce2-5819278702e7/,Phil,,05/06/2017,12.0:35,12.0000000,47.893894000000,-3.966137000000,,La Forêt Fouesnant - Finistère,49129,observation-dad5850a-21f4-4975-8ce2-5819278702e7,https://biolit.fr/observations/observation-dad5850a-21f4-4975-8ce2-5819278702e7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_123438.jpg,,FALSE, +N1,60529,sortie-dad5850a-21f4-4975-8ce2-5819278702e7,https://biolit.fr/sorties/sortie-dad5850a-21f4-4975-8ce2-5819278702e7/,Phil,,05/06/2017,12.0:35,12.0000000,47.893894000000,-3.966137000000,,La Forêt Fouesnant - Finistère,49131,observation-dad5850a-21f4-4975-8ce2-5819278702e7-2,https://biolit.fr/observations/observation-dad5850a-21f4-4975-8ce2-5819278702e7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_123633.jpg,,FALSE, +N1,60529,sortie-dad5850a-21f4-4975-8ce2-5819278702e7,https://biolit.fr/sorties/sortie-dad5850a-21f4-4975-8ce2-5819278702e7/,Phil,,05/06/2017,12.0:35,12.0000000,47.893894000000,-3.966137000000,,La Forêt Fouesnant - Finistère,49133,observation-dad5850a-21f4-4975-8ce2-5819278702e7-3,https://biolit.fr/observations/observation-dad5850a-21f4-4975-8ce2-5819278702e7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_123703.jpg,,FALSE, +N1,60529,sortie-dad5850a-21f4-4975-8ce2-5819278702e7,https://biolit.fr/sorties/sortie-dad5850a-21f4-4975-8ce2-5819278702e7/,Phil,,05/06/2017,12.0:35,12.0000000,47.893894000000,-3.966137000000,,La Forêt Fouesnant - Finistère,49135,observation-dad5850a-21f4-4975-8ce2-5819278702e7-4,https://biolit.fr/observations/observation-dad5850a-21f4-4975-8ce2-5819278702e7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_123601.jpg,,FALSE, +N1,60530,sortie-05bd0c23-dda4-4140-a317-592c1726ba21,https://biolit.fr/sorties/sortie-05bd0c23-dda4-4140-a317-592c1726ba21/,heloise.alie,,05/10/2017,14.0000000,16.0000000,43.211774000000,5.353200000000,,plage de la Maronaise ,49137,observation-05bd0c23-dda4-4140-a317-592c1726ba21,https://biolit.fr/observations/observation-05bd0c23-dda4-4140-a317-592c1726ba21/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3086-scaled.jpg,,FALSE, +N1,60530,sortie-05bd0c23-dda4-4140-a317-592c1726ba21,https://biolit.fr/sorties/sortie-05bd0c23-dda4-4140-a317-592c1726ba21/,heloise.alie,,05/10/2017,14.0000000,16.0000000,43.211774000000,5.353200000000,,plage de la Maronaise ,49139,observation-05bd0c23-dda4-4140-a317-592c1726ba21-2,https://biolit.fr/observations/observation-05bd0c23-dda4-4140-a317-592c1726ba21-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3091_0-scaled.jpg,,FALSE, +N1,60530,sortie-05bd0c23-dda4-4140-a317-592c1726ba21,https://biolit.fr/sorties/sortie-05bd0c23-dda4-4140-a317-592c1726ba21/,heloise.alie,,05/10/2017,14.0000000,16.0000000,43.211774000000,5.353200000000,,plage de la Maronaise ,49141,observation-05bd0c23-dda4-4140-a317-592c1726ba21-3,https://biolit.fr/observations/observation-05bd0c23-dda4-4140-a317-592c1726ba21-3/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3102-scaled.jpg,,TRUE, +N1,60530,sortie-05bd0c23-dda4-4140-a317-592c1726ba21,https://biolit.fr/sorties/sortie-05bd0c23-dda4-4140-a317-592c1726ba21/,heloise.alie,,05/10/2017,14.0000000,16.0000000,43.211774000000,5.353200000000,,plage de la Maronaise ,49143,observation-05bd0c23-dda4-4140-a317-592c1726ba21-4,https://biolit.fr/observations/observation-05bd0c23-dda4-4140-a317-592c1726ba21-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3082-scaled.jpg,,FALSE, +N1,60530,sortie-05bd0c23-dda4-4140-a317-592c1726ba21,https://biolit.fr/sorties/sortie-05bd0c23-dda4-4140-a317-592c1726ba21/,heloise.alie,,05/10/2017,14.0000000,16.0000000,43.211774000000,5.353200000000,,plage de la Maronaise ,49145,observation-05bd0c23-dda4-4140-a317-592c1726ba21-5,https://biolit.fr/observations/observation-05bd0c23-dda4-4140-a317-592c1726ba21-5/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3087_0-scaled.jpg,,TRUE, +N1,60530,sortie-05bd0c23-dda4-4140-a317-592c1726ba21,https://biolit.fr/sorties/sortie-05bd0c23-dda4-4140-a317-592c1726ba21/,heloise.alie,,05/10/2017,14.0000000,16.0000000,43.211774000000,5.353200000000,,plage de la Maronaise ,49147,observation-05bd0c23-dda4-4140-a317-592c1726ba21-6,https://biolit.fr/observations/observation-05bd0c23-dda4-4140-a317-592c1726ba21-6/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3083-scaled.jpg,,TRUE, +N1,60531,sortie-689340f0-6d28-4a05-889e-feb498803a23,https://biolit.fr/sorties/sortie-689340f0-6d28-4a05-889e-feb498803a23/,Phil,,3/27/2017 0:00,11.0000000,11.0000000,47.856263000000,-3.920432000000,,Concarneau - Finistère,49149,observation-689340f0-6d28-4a05-889e-feb498803a23,https://biolit.fr/observations/observation-689340f0-6d28-4a05-889e-feb498803a23/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1060840.JPG,,TRUE, +N1,60531,sortie-689340f0-6d28-4a05-889e-feb498803a23,https://biolit.fr/sorties/sortie-689340f0-6d28-4a05-889e-feb498803a23/,Phil,,3/27/2017 0:00,11.0000000,11.0000000,47.856263000000,-3.920432000000,,Concarneau - Finistère,49151,observation-689340f0-6d28-4a05-889e-feb498803a23-2,https://biolit.fr/observations/observation-689340f0-6d28-4a05-889e-feb498803a23-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1060838.JPG,,TRUE, +N1,60531,sortie-689340f0-6d28-4a05-889e-feb498803a23,https://biolit.fr/sorties/sortie-689340f0-6d28-4a05-889e-feb498803a23/,Phil,,3/27/2017 0:00,11.0000000,11.0000000,47.856263000000,-3.920432000000,,Concarneau - Finistère,49153,observation-689340f0-6d28-4a05-889e-feb498803a23-3,https://biolit.fr/observations/observation-689340f0-6d28-4a05-889e-feb498803a23-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060833.JPG,,TRUE, +N1,60531,sortie-689340f0-6d28-4a05-889e-feb498803a23,https://biolit.fr/sorties/sortie-689340f0-6d28-4a05-889e-feb498803a23/,Phil,,3/27/2017 0:00,11.0000000,11.0000000,47.856263000000,-3.920432000000,,Concarneau - Finistère,49155,observation-689340f0-6d28-4a05-889e-feb498803a23-4,https://biolit.fr/observations/observation-689340f0-6d28-4a05-889e-feb498803a23-4/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/P1060830.JPG,,TRUE, +N1,60534,sortie-51e80c58-7df4-4d15-b7b2-f03190a8c6ad,https://biolit.fr/sorties/sortie-51e80c58-7df4-4d15-b7b2-f03190a8c6ad/,RIEM,,05/10/2017,10.0000000,12.0:15,47.600924000000,-2.747414000000,,ILE DE BOËD 56860 SÉNÉ,49165,observation-51e80c58-7df4-4d15-b7b2-f03190a8c6ad,https://biolit.fr/observations/observation-51e80c58-7df4-4d15-b7b2-f03190a8c6ad/,,,,https://biolit.fr/wp-content/uploads/2023/07/Boëd 29.jpg,,FALSE, +N1,60535,sortie-e068da92-1112-40e1-8cba-77b4a83c13e7,https://biolit.fr/sorties/sortie-e068da92-1112-40e1-8cba-77b4a83c13e7/,Phil,,05/06/2017,12.0:35,12.0:45,47.894219000000,-3.964807000000,,La Forêt-Fouesnant - Finistère,49167,observation-e068da92-1112-40e1-8cba-77b4a83c13e7,https://biolit.fr/observations/observation-e068da92-1112-40e1-8cba-77b4a83c13e7/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20170506_124335.jpg,,TRUE, +N1,60535,sortie-e068da92-1112-40e1-8cba-77b4a83c13e7,https://biolit.fr/sorties/sortie-e068da92-1112-40e1-8cba-77b4a83c13e7/,Phil,,05/06/2017,12.0:35,12.0:45,47.894219000000,-3.964807000000,,La Forêt-Fouesnant - Finistère,49169,observation-e068da92-1112-40e1-8cba-77b4a83c13e7-2,https://biolit.fr/observations/observation-e068da92-1112-40e1-8cba-77b4a83c13e7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170506_123354.jpg,,FALSE, +N1,60535,sortie-e068da92-1112-40e1-8cba-77b4a83c13e7,https://biolit.fr/sorties/sortie-e068da92-1112-40e1-8cba-77b4a83c13e7/,Phil,,05/06/2017,12.0:35,12.0:45,47.894219000000,-3.964807000000,,La Forêt-Fouesnant - Finistère,49171,observation-e068da92-1112-40e1-8cba-77b4a83c13e7-3,https://biolit.fr/observations/observation-e068da92-1112-40e1-8cba-77b4a83c13e7-3/,Laevicardium crassum,Bucarde de Norvège,,https://biolit.fr/wp-content/uploads/2023/07/20170506_124058.jpg,,TRUE, +N1,60536,sortie-d6ac4b05-996d-46c2-806d-873e836dc55a,https://biolit.fr/sorties/sortie-d6ac4b05-996d-46c2-806d-873e836dc55a/,PEP44 La Marjolaine,,05/09/2017,11.0000000,12.0000000,47.351268000000,-2.517566000000,,La Turballe,49173,observation-d6ac4b05-996d-46c2-806d-873e836dc55a,https://biolit.fr/observations/observation-d6ac4b05-996d-46c2-806d-873e836dc55a/,Clavelina lepadiformis,Grande claveline,,https://biolit.fr/wp-content/uploads/2023/07/vu à proximité - clavelines-scaled.jpg,,TRUE, +N1,60537,sortie-1cb8284f-466c-44b8-99d2-5a4973ec0918,https://biolit.fr/sorties/sortie-1cb8284f-466c-44b8-99d2-5a4973ec0918/,PEP44 La Marjolaine,,05/08/2017,10.0:45,11.0000000,47.35121600000,-2.517565000000,,La Turballe,49175,observation-1cb8284f-466c-44b8-99d2-5a4973ec0918,https://biolit.fr/observations/observation-1cb8284f-466c-44b8-99d2-5a4973ec0918/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/DSC04917.JPG,,TRUE, +N1,60538,sortie-2e0266be-669c-48a4-bc4e-3ad5be09e6ee,https://biolit.fr/sorties/sortie-2e0266be-669c-48a4-bc4e-3ad5be09e6ee/,Phil,,3/27/2017 0:00,11.0:15,11.0000000,47.855891000000,-3.921389000000,,Concarneau - Finistère,49177,observation-2e0266be-669c-48a4-bc4e-3ad5be09e6ee,https://biolit.fr/observations/observation-2e0266be-669c-48a4-bc4e-3ad5be09e6ee/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060823.JPG,,TRUE, +N1,60538,sortie-2e0266be-669c-48a4-bc4e-3ad5be09e6ee,https://biolit.fr/sorties/sortie-2e0266be-669c-48a4-bc4e-3ad5be09e6ee/,Phil,,3/27/2017 0:00,11.0:15,11.0000000,47.855891000000,-3.921389000000,,Concarneau - Finistère,49179,observation-2e0266be-669c-48a4-bc4e-3ad5be09e6ee-2,https://biolit.fr/observations/observation-2e0266be-669c-48a4-bc4e-3ad5be09e6ee-2/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/P1060817.JPG,,TRUE, +N1,60538,sortie-2e0266be-669c-48a4-bc4e-3ad5be09e6ee,https://biolit.fr/sorties/sortie-2e0266be-669c-48a4-bc4e-3ad5be09e6ee/,Phil,,3/27/2017 0:00,11.0:15,11.0000000,47.855891000000,-3.921389000000,,Concarneau - Finistère,49181,observation-2e0266be-669c-48a4-bc4e-3ad5be09e6ee-3,https://biolit.fr/observations/observation-2e0266be-669c-48a4-bc4e-3ad5be09e6ee-3/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/P1060818_0.JPG,,TRUE, +N1,60538,sortie-2e0266be-669c-48a4-bc4e-3ad5be09e6ee,https://biolit.fr/sorties/sortie-2e0266be-669c-48a4-bc4e-3ad5be09e6ee/,Phil,,3/27/2017 0:00,11.0:15,11.0000000,47.855891000000,-3.921389000000,,Concarneau - Finistère,49183,observation-2e0266be-669c-48a4-bc4e-3ad5be09e6ee-4,https://biolit.fr/observations/observation-2e0266be-669c-48a4-bc4e-3ad5be09e6ee-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060825.JPG,,FALSE, +N1,60538,sortie-2e0266be-669c-48a4-bc4e-3ad5be09e6ee,https://biolit.fr/sorties/sortie-2e0266be-669c-48a4-bc4e-3ad5be09e6ee/,Phil,,3/27/2017 0:00,11.0:15,11.0000000,47.855891000000,-3.921389000000,,Concarneau - Finistère,49185,observation-2e0266be-669c-48a4-bc4e-3ad5be09e6ee-5,https://biolit.fr/observations/observation-2e0266be-669c-48a4-bc4e-3ad5be09e6ee-5/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1060826.JPG,,TRUE, +N1,60538,sortie-2e0266be-669c-48a4-bc4e-3ad5be09e6ee,https://biolit.fr/sorties/sortie-2e0266be-669c-48a4-bc4e-3ad5be09e6ee/,Phil,,3/27/2017 0:00,11.0:15,11.0000000,47.855891000000,-3.921389000000,,Concarneau - Finistère,49187,observation-2e0266be-669c-48a4-bc4e-3ad5be09e6ee-6,https://biolit.fr/observations/observation-2e0266be-669c-48a4-bc4e-3ad5be09e6ee-6/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1060827.JPG,,TRUE, +N1,60539,sortie-201c0fa7-7af3-4b71-81ce-b264db5077dc,https://biolit.fr/sorties/sortie-201c0fa7-7af3-4b71-81ce-b264db5077dc/,Phil,,4/28/2017 0:00,13.0000000,13.000005,47.872860000000,-3.909211000000,,Concarneau - Finistère,49189,observation-201c0fa7-7af3-4b71-81ce-b264db5077dc,https://biolit.fr/observations/observation-201c0fa7-7af3-4b71-81ce-b264db5077dc/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170428_130057.jpg,,FALSE, +N1,60539,sortie-201c0fa7-7af3-4b71-81ce-b264db5077dc,https://biolit.fr/sorties/sortie-201c0fa7-7af3-4b71-81ce-b264db5077dc/,Phil,,4/28/2017 0:00,13.0000000,13.000005,47.872860000000,-3.909211000000,,Concarneau - Finistère,49191,observation-201c0fa7-7af3-4b71-81ce-b264db5077dc-2,https://biolit.fr/observations/observation-201c0fa7-7af3-4b71-81ce-b264db5077dc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170428_130004.jpg,,FALSE, +N1,60539,sortie-201c0fa7-7af3-4b71-81ce-b264db5077dc,https://biolit.fr/sorties/sortie-201c0fa7-7af3-4b71-81ce-b264db5077dc/,Phil,,4/28/2017 0:00,13.0000000,13.000005,47.872860000000,-3.909211000000,,Concarneau - Finistère,49193,observation-201c0fa7-7af3-4b71-81ce-b264db5077dc-3,https://biolit.fr/observations/observation-201c0fa7-7af3-4b71-81ce-b264db5077dc-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170428_130149.jpg,,FALSE, +N1,60540,sortie-c520f4f9-3a13-4b07-8849-ca7e1be04433,https://biolit.fr/sorties/sortie-c520f4f9-3a13-4b07-8849-ca7e1be04433/,Phil,,4/18/2017 0:00,10.0:25,10.0000000,47.797781000000,-4.210973000000,,Lesconil - Finistère,49195,observation-c520f4f9-3a13-4b07-8849-ca7e1be04433,https://biolit.fr/observations/observation-c520f4f9-3a13-4b07-8849-ca7e1be04433/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170418_102753.jpg,,TRUE, +N1,60540,sortie-c520f4f9-3a13-4b07-8849-ca7e1be04433,https://biolit.fr/sorties/sortie-c520f4f9-3a13-4b07-8849-ca7e1be04433/,Phil,,4/18/2017 0:00,10.0:25,10.0000000,47.797781000000,-4.210973000000,,Lesconil - Finistère,49197,observation-c520f4f9-3a13-4b07-8849-ca7e1be04433-2,https://biolit.fr/observations/observation-c520f4f9-3a13-4b07-8849-ca7e1be04433-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170418_102826.jpg,,FALSE, +N1,60540,sortie-c520f4f9-3a13-4b07-8849-ca7e1be04433,https://biolit.fr/sorties/sortie-c520f4f9-3a13-4b07-8849-ca7e1be04433/,Phil,,4/18/2017 0:00,10.0:25,10.0000000,47.797781000000,-4.210973000000,,Lesconil - Finistère,49199,observation-c520f4f9-3a13-4b07-8849-ca7e1be04433-3,https://biolit.fr/observations/observation-c520f4f9-3a13-4b07-8849-ca7e1be04433-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170418_102651.jpg,,FALSE, +N1,60540,sortie-c520f4f9-3a13-4b07-8849-ca7e1be04433,https://biolit.fr/sorties/sortie-c520f4f9-3a13-4b07-8849-ca7e1be04433/,Phil,,4/18/2017 0:00,10.0:25,10.0000000,47.797781000000,-4.210973000000,,Lesconil - Finistère,49201,observation-c520f4f9-3a13-4b07-8849-ca7e1be04433-4,https://biolit.fr/observations/observation-c520f4f9-3a13-4b07-8849-ca7e1be04433-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170418_103055.jpg,,FALSE, +N1,60542,sortie-8df2c315-d0a6-4416-8671-bc85f857f50e,https://biolit.fr/sorties/sortie-8df2c315-d0a6-4416-8671-bc85f857f50e/,RIEM,,4/26/2017 0:00,12.0000000,12.0:15,47.541859000000,-2.90761700000,,Plage du Fogeo (Arzon),49207,observation-8df2c315-d0a6-4416-8671-bc85f857f50e,https://biolit.fr/observations/observation-8df2c315-d0a6-4416-8671-bc85f857f50e/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020306.JPG,,TRUE, +N1,60542,sortie-8df2c315-d0a6-4416-8671-bc85f857f50e,https://biolit.fr/sorties/sortie-8df2c315-d0a6-4416-8671-bc85f857f50e/,RIEM,,4/26/2017 0:00,12.0000000,12.0:15,47.541859000000,-2.90761700000,,Plage du Fogeo (Arzon),49209,observation-8df2c315-d0a6-4416-8671-bc85f857f50e-2,https://biolit.fr/observations/observation-8df2c315-d0a6-4416-8671-bc85f857f50e-2/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/P1020316_0.JPG,,TRUE, +N1,60542,sortie-8df2c315-d0a6-4416-8671-bc85f857f50e,https://biolit.fr/sorties/sortie-8df2c315-d0a6-4416-8671-bc85f857f50e/,RIEM,,4/26/2017 0:00,12.0000000,12.0:15,47.541859000000,-2.90761700000,,Plage du Fogeo (Arzon),49211,observation-8df2c315-d0a6-4416-8671-bc85f857f50e-3,https://biolit.fr/observations/observation-8df2c315-d0a6-4416-8671-bc85f857f50e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020317.JPG,,FALSE, +N1,60542,sortie-8df2c315-d0a6-4416-8671-bc85f857f50e,https://biolit.fr/sorties/sortie-8df2c315-d0a6-4416-8671-bc85f857f50e/,RIEM,,4/26/2017 0:00,12.0000000,12.0:15,47.541859000000,-2.90761700000,,Plage du Fogeo (Arzon),49213,observation-8df2c315-d0a6-4416-8671-bc85f857f50e-4,https://biolit.fr/observations/observation-8df2c315-d0a6-4416-8671-bc85f857f50e-4/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/P1020321_0.JPG,,TRUE, +N1,60542,sortie-8df2c315-d0a6-4416-8671-bc85f857f50e,https://biolit.fr/sorties/sortie-8df2c315-d0a6-4416-8671-bc85f857f50e/,RIEM,,4/26/2017 0:00,12.0000000,12.0:15,47.541859000000,-2.90761700000,,Plage du Fogeo (Arzon),49215,observation-8df2c315-d0a6-4416-8671-bc85f857f50e-5,https://biolit.fr/observations/observation-8df2c315-d0a6-4416-8671-bc85f857f50e-5/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/P1020330.JPG,,TRUE, +N1,60543,sortie-878cf316-75fb-4748-817f-2f0a3d24aa9e,https://biolit.fr/sorties/sortie-878cf316-75fb-4748-817f-2f0a3d24aa9e/,Phil,,4/15/2017 0:00,13.0000000,13.0:45,47.796737000000,-4.373193000000,,Penmarc'h - Finistère,49217,observation-878cf316-75fb-4748-817f-2f0a3d24aa9e,https://biolit.fr/observations/observation-878cf316-75fb-4748-817f-2f0a3d24aa9e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070230.JPG,,FALSE, +N1,60543,sortie-878cf316-75fb-4748-817f-2f0a3d24aa9e,https://biolit.fr/sorties/sortie-878cf316-75fb-4748-817f-2f0a3d24aa9e/,Phil,,4/15/2017 0:00,13.0000000,13.0:45,47.796737000000,-4.373193000000,,Penmarc'h - Finistère,49219,observation-878cf316-75fb-4748-817f-2f0a3d24aa9e-2,https://biolit.fr/observations/observation-878cf316-75fb-4748-817f-2f0a3d24aa9e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070228.JPG,,FALSE, +N1,60543,sortie-878cf316-75fb-4748-817f-2f0a3d24aa9e,https://biolit.fr/sorties/sortie-878cf316-75fb-4748-817f-2f0a3d24aa9e/,Phil,,4/15/2017 0:00,13.0000000,13.0:45,47.796737000000,-4.373193000000,,Penmarc'h - Finistère,49221,observation-878cf316-75fb-4748-817f-2f0a3d24aa9e-3,https://biolit.fr/observations/observation-878cf316-75fb-4748-817f-2f0a3d24aa9e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070234.JPG,,FALSE, +N1,60543,sortie-878cf316-75fb-4748-817f-2f0a3d24aa9e,https://biolit.fr/sorties/sortie-878cf316-75fb-4748-817f-2f0a3d24aa9e/,Phil,,4/15/2017 0:00,13.0000000,13.0:45,47.796737000000,-4.373193000000,,Penmarc'h - Finistère,49223,observation-878cf316-75fb-4748-817f-2f0a3d24aa9e-4,https://biolit.fr/observations/observation-878cf316-75fb-4748-817f-2f0a3d24aa9e-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070219.JPG,,TRUE, +N1,60543,sortie-878cf316-75fb-4748-817f-2f0a3d24aa9e,https://biolit.fr/sorties/sortie-878cf316-75fb-4748-817f-2f0a3d24aa9e/,Phil,,4/15/2017 0:00,13.0000000,13.0:45,47.796737000000,-4.373193000000,,Penmarc'h - Finistère,49225,observation-878cf316-75fb-4748-817f-2f0a3d24aa9e-5,https://biolit.fr/observations/observation-878cf316-75fb-4748-817f-2f0a3d24aa9e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070221.JPG,,FALSE, +N1,60544,sortie-005935ca-4aa5-41d0-8b4d-a2bfa4d01776,https://biolit.fr/sorties/sortie-005935ca-4aa5-41d0-8b4d-a2bfa4d01776/,Phil,,4/14/2017 0:00,11.0000000,11.000005,48.866759000000,-2.98556000000,,Île-de-Bréhat - Côtes-d'Armor ,49227,observation-005935ca-4aa5-41d0-8b4d-a2bfa4d01776,https://biolit.fr/observations/observation-005935ca-4aa5-41d0-8b4d-a2bfa4d01776/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1060926.JPG,,TRUE, +N1,60544,sortie-005935ca-4aa5-41d0-8b4d-a2bfa4d01776,https://biolit.fr/sorties/sortie-005935ca-4aa5-41d0-8b4d-a2bfa4d01776/,Phil,,4/14/2017 0:00,11.0000000,11.000005,48.866759000000,-2.98556000000,,Île-de-Bréhat - Côtes-d'Armor ,49229,observation-005935ca-4aa5-41d0-8b4d-a2bfa4d01776-2,https://biolit.fr/observations/observation-005935ca-4aa5-41d0-8b4d-a2bfa4d01776-2/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1060925.JPG,,TRUE, +N1,60545,sortie-10d12469-c2b5-4ebd-beb9-f3139a3bbbca,https://biolit.fr/sorties/sortie-10d12469-c2b5-4ebd-beb9-f3139a3bbbca/,Phil,,4/15/2017 0:00,14.0000000,14.0:15,47.799441000000,-4.375099000000,,Penmarc'h - Finistère,49231,observation-10d12469-c2b5-4ebd-beb9-f3139a3bbbca,https://biolit.fr/observations/observation-10d12469-c2b5-4ebd-beb9-f3139a3bbbca/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070265.JPG,,FALSE, +N1,60545,sortie-10d12469-c2b5-4ebd-beb9-f3139a3bbbca,https://biolit.fr/sorties/sortie-10d12469-c2b5-4ebd-beb9-f3139a3bbbca/,Phil,,4/15/2017 0:00,14.0000000,14.0:15,47.799441000000,-4.375099000000,,Penmarc'h - Finistère,49233,observation-10d12469-c2b5-4ebd-beb9-f3139a3bbbca-2,https://biolit.fr/observations/observation-10d12469-c2b5-4ebd-beb9-f3139a3bbbca-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070278.JPG,,FALSE, +N1,60545,sortie-10d12469-c2b5-4ebd-beb9-f3139a3bbbca,https://biolit.fr/sorties/sortie-10d12469-c2b5-4ebd-beb9-f3139a3bbbca/,Phil,,4/15/2017 0:00,14.0000000,14.0:15,47.799441000000,-4.375099000000,,Penmarc'h - Finistère,49235,observation-10d12469-c2b5-4ebd-beb9-f3139a3bbbca-3,https://biolit.fr/observations/observation-10d12469-c2b5-4ebd-beb9-f3139a3bbbca-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070280.JPG,,FALSE, +N1,60546,sortie-7e947664-7cf5-48a8-baa3-4cabfb3ea0a0,https://biolit.fr/sorties/sortie-7e947664-7cf5-48a8-baa3-4cabfb3ea0a0/,Phil,,4/16/2017 0:00,12.0:25,12.0000000,47.895261000000,-3.974355000000,,La Forêt-Fouesnant - Finistère,49237,observation-7e947664-7cf5-48a8-baa3-4cabfb3ea0a0,https://biolit.fr/observations/observation-7e947664-7cf5-48a8-baa3-4cabfb3ea0a0/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170416_122800.jpg,,FALSE, +N1,60546,sortie-7e947664-7cf5-48a8-baa3-4cabfb3ea0a0,https://biolit.fr/sorties/sortie-7e947664-7cf5-48a8-baa3-4cabfb3ea0a0/,Phil,,4/16/2017 0:00,12.0:25,12.0000000,47.895261000000,-3.974355000000,,La Forêt-Fouesnant - Finistère,49239,observation-7e947664-7cf5-48a8-baa3-4cabfb3ea0a0-2,https://biolit.fr/observations/observation-7e947664-7cf5-48a8-baa3-4cabfb3ea0a0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170416_122811.jpg,,FALSE, +N1,60546,sortie-7e947664-7cf5-48a8-baa3-4cabfb3ea0a0,https://biolit.fr/sorties/sortie-7e947664-7cf5-48a8-baa3-4cabfb3ea0a0/,Phil,,4/16/2017 0:00,12.0:25,12.0000000,47.895261000000,-3.974355000000,,La Forêt-Fouesnant - Finistère,49241,observation-7e947664-7cf5-48a8-baa3-4cabfb3ea0a0-3,https://biolit.fr/observations/observation-7e947664-7cf5-48a8-baa3-4cabfb3ea0a0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170416_122856.jpg,,FALSE, +N1,60546,sortie-7e947664-7cf5-48a8-baa3-4cabfb3ea0a0,https://biolit.fr/sorties/sortie-7e947664-7cf5-48a8-baa3-4cabfb3ea0a0/,Phil,,4/16/2017 0:00,12.0:25,12.0000000,47.895261000000,-3.974355000000,,La Forêt-Fouesnant - Finistère,49243,observation-7e947664-7cf5-48a8-baa3-4cabfb3ea0a0-4,https://biolit.fr/observations/observation-7e947664-7cf5-48a8-baa3-4cabfb3ea0a0-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20170416_123049.jpg,,TRUE, +N1,60547,sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02,https://biolit.fr/sorties/sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02/,RIEM,,4/27/2017 0:00,12.0000000,13.0000000,51.05302100000,2.40895000000,,Plage de Malo les Bains ,49245,observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02,https://biolit.fr/observations/observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170427_1.jpg,,FALSE, +N1,60547,sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02,https://biolit.fr/sorties/sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02/,RIEM,,4/27/2017 0:00,12.0000000,13.0000000,51.05302100000,2.40895000000,,Plage de Malo les Bains ,49247,observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-2,https://biolit.fr/observations/observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-2/,Donax variegatus,Flion aplati,,https://biolit.fr/wp-content/uploads/2023/07/20170427_2.jpg,,TRUE, +N1,60547,sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02,https://biolit.fr/sorties/sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02/,RIEM,,4/27/2017 0:00,12.0000000,13.0000000,51.05302100000,2.40895000000,,Plage de Malo les Bains ,49249,observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-3,https://biolit.fr/observations/observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170427_3.jpg,,FALSE, +N1,60547,sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02,https://biolit.fr/sorties/sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02/,RIEM,,4/27/2017 0:00,12.0000000,13.0000000,51.05302100000,2.40895000000,,Plage de Malo les Bains ,49251,observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-4,https://biolit.fr/observations/observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170427_4.jpg,,FALSE, +N1,60547,sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02,https://biolit.fr/sorties/sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02/,RIEM,,4/27/2017 0:00,12.0000000,13.0000000,51.05302100000,2.40895000000,,Plage de Malo les Bains ,49253,observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-5,https://biolit.fr/observations/observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170427_5.jpg,,FALSE, +N1,60547,sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02,https://biolit.fr/sorties/sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02/,RIEM,,4/27/2017 0:00,12.0000000,13.0000000,51.05302100000,2.40895000000,,Plage de Malo les Bains ,49255,observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-6,https://biolit.fr/observations/observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-6/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20170427_6.jpg,,TRUE, +N1,60547,sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02,https://biolit.fr/sorties/sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02/,RIEM,,4/27/2017 0:00,12.0000000,13.0000000,51.05302100000,2.40895000000,,Plage de Malo les Bains ,49257,observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-7,https://biolit.fr/observations/observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-7/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20170427_7.jpg,,TRUE, +N1,60547,sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02,https://biolit.fr/sorties/sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02/,RIEM,,4/27/2017 0:00,12.0000000,13.0000000,51.05302100000,2.40895000000,,Plage de Malo les Bains ,49259,observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-8,https://biolit.fr/observations/observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-8/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/20170427_8.jpg,,TRUE, +N1,60547,sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02,https://biolit.fr/sorties/sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02/,RIEM,,4/27/2017 0:00,12.0000000,13.0000000,51.05302100000,2.40895000000,,Plage de Malo les Bains ,49261,observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-9,https://biolit.fr/observations/observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-9/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/20170427_9.jpg,,TRUE, +N1,60547,sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02,https://biolit.fr/sorties/sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02/,RIEM,,4/27/2017 0:00,12.0000000,13.0000000,51.05302100000,2.40895000000,,Plage de Malo les Bains ,49263,observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-10,https://biolit.fr/observations/observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-10/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/20170427_10.jpg,,TRUE, +N1,60547,sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02,https://biolit.fr/sorties/sortie-758a621f-4cfd-4e1d-b526-9b8fddaa7c02/,RIEM,,4/27/2017 0:00,12.0000000,13.0000000,51.05302100000,2.40895000000,,Plage de Malo les Bains ,49265,observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-11,https://biolit.fr/observations/observation-758a621f-4cfd-4e1d-b526-9b8fddaa7c02-11/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20170427_11.jpg,,TRUE, +N1,60548,sortie-67cd6b7e-6818-4a6e-83d0-bd94f9d23547,https://biolit.fr/sorties/sortie-67cd6b7e-6818-4a6e-83d0-bd94f9d23547/,Phil,,4/18/2017 0:00,10.0:15,10.0:25,47.798016000000,-4.211317000000,,Lesconil - Finistère,49267,observation-67cd6b7e-6818-4a6e-83d0-bd94f9d23547,https://biolit.fr/observations/observation-67cd6b7e-6818-4a6e-83d0-bd94f9d23547/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/20170418_102134.jpg,,TRUE, +N1,60548,sortie-67cd6b7e-6818-4a6e-83d0-bd94f9d23547,https://biolit.fr/sorties/sortie-67cd6b7e-6818-4a6e-83d0-bd94f9d23547/,Phil,,4/18/2017 0:00,10.0:15,10.0:25,47.798016000000,-4.211317000000,,Lesconil - Finistère,49269,observation-67cd6b7e-6818-4a6e-83d0-bd94f9d23547-2,https://biolit.fr/observations/observation-67cd6b7e-6818-4a6e-83d0-bd94f9d23547-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170418_101804.jpg,,TRUE, +N1,60548,sortie-67cd6b7e-6818-4a6e-83d0-bd94f9d23547,https://biolit.fr/sorties/sortie-67cd6b7e-6818-4a6e-83d0-bd94f9d23547/,Phil,,4/18/2017 0:00,10.0:15,10.0:25,47.798016000000,-4.211317000000,,Lesconil - Finistère,49271,observation-67cd6b7e-6818-4a6e-83d0-bd94f9d23547-3,https://biolit.fr/observations/observation-67cd6b7e-6818-4a6e-83d0-bd94f9d23547-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170418_102421.jpg,,FALSE, +N1,60549,sortie-83d0900d-6671-4ff6-b22b-081ea14a5ede,https://biolit.fr/sorties/sortie-83d0900d-6671-4ff6-b22b-081ea14a5ede/,Phil,,4/14/2017 0:00,12.0:45,12.0:55,48.847553000000,-3.012140000000,,Île-de-Bréhat - Côtes-d'Armor,49273,observation-83d0900d-6671-4ff6-b22b-081ea14a5ede,https://biolit.fr/observations/observation-83d0900d-6671-4ff6-b22b-081ea14a5ede/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070048.JPG,,FALSE, +N1,60549,sortie-83d0900d-6671-4ff6-b22b-081ea14a5ede,https://biolit.fr/sorties/sortie-83d0900d-6671-4ff6-b22b-081ea14a5ede/,Phil,,4/14/2017 0:00,12.0:45,12.0:55,48.847553000000,-3.012140000000,,Île-de-Bréhat - Côtes-d'Armor,49275,observation-83d0900d-6671-4ff6-b22b-081ea14a5ede-2,https://biolit.fr/observations/observation-83d0900d-6671-4ff6-b22b-081ea14a5ede-2/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/P1070040.JPG,,TRUE, +N1,60549,sortie-83d0900d-6671-4ff6-b22b-081ea14a5ede,https://biolit.fr/sorties/sortie-83d0900d-6671-4ff6-b22b-081ea14a5ede/,Phil,,4/14/2017 0:00,12.0:45,12.0:55,48.847553000000,-3.012140000000,,Île-de-Bréhat - Côtes-d'Armor,49277,observation-83d0900d-6671-4ff6-b22b-081ea14a5ede-3,https://biolit.fr/observations/observation-83d0900d-6671-4ff6-b22b-081ea14a5ede-3/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1070047.JPG,,TRUE, +N1,60549,sortie-83d0900d-6671-4ff6-b22b-081ea14a5ede,https://biolit.fr/sorties/sortie-83d0900d-6671-4ff6-b22b-081ea14a5ede/,Phil,,4/14/2017 0:00,12.0:45,12.0:55,48.847553000000,-3.012140000000,,Île-de-Bréhat - Côtes-d'Armor,49279,observation-83d0900d-6671-4ff6-b22b-081ea14a5ede-4,https://biolit.fr/observations/observation-83d0900d-6671-4ff6-b22b-081ea14a5ede-4/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1070051.JPG,,TRUE, +N1,60549,sortie-83d0900d-6671-4ff6-b22b-081ea14a5ede,https://biolit.fr/sorties/sortie-83d0900d-6671-4ff6-b22b-081ea14a5ede/,Phil,,4/14/2017 0:00,12.0:45,12.0:55,48.847553000000,-3.012140000000,,Île-de-Bréhat - Côtes-d'Armor,49281,observation-83d0900d-6671-4ff6-b22b-081ea14a5ede-5,https://biolit.fr/observations/observation-83d0900d-6671-4ff6-b22b-081ea14a5ede-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070037.JPG,,TRUE, +N1,60550,sortie-7b280848-689d-4606-9524-eb30e673e449,https://biolit.fr/sorties/sortie-7b280848-689d-4606-9524-eb30e673e449/,Phil,,4/15/2017 0:00,13.0000000,13.0:35,47.796861000000,-4.372861000000,,Penmarc'h - Finistère,49283,observation-7b280848-689d-4606-9524-eb30e673e449,https://biolit.fr/observations/observation-7b280848-689d-4606-9524-eb30e673e449/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070209_10.JPG,,TRUE, +N1,60550,sortie-7b280848-689d-4606-9524-eb30e673e449,https://biolit.fr/sorties/sortie-7b280848-689d-4606-9524-eb30e673e449/,Phil,,4/15/2017 0:00,13.0000000,13.0:35,47.796861000000,-4.372861000000,,Penmarc'h - Finistère,49285,observation-7b280848-689d-4606-9524-eb30e673e449-2,https://biolit.fr/observations/observation-7b280848-689d-4606-9524-eb30e673e449-2/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1070210_1.JPG,,TRUE, +N1,60550,sortie-7b280848-689d-4606-9524-eb30e673e449,https://biolit.fr/sorties/sortie-7b280848-689d-4606-9524-eb30e673e449/,Phil,,4/15/2017 0:00,13.0000000,13.0:35,47.796861000000,-4.372861000000,,Penmarc'h - Finistère,49287,observation-7b280848-689d-4606-9524-eb30e673e449-3,https://biolit.fr/observations/observation-7b280848-689d-4606-9524-eb30e673e449-3/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/P1070212_2.JPG,,TRUE, +N1,60550,sortie-7b280848-689d-4606-9524-eb30e673e449,https://biolit.fr/sorties/sortie-7b280848-689d-4606-9524-eb30e673e449/,Phil,,4/15/2017 0:00,13.0000000,13.0:35,47.796861000000,-4.372861000000,,Penmarc'h - Finistère,49289,observation-7b280848-689d-4606-9524-eb30e673e449-4,https://biolit.fr/observations/observation-7b280848-689d-4606-9524-eb30e673e449-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070213_0.JPG,,FALSE, +N1,60550,sortie-7b280848-689d-4606-9524-eb30e673e449,https://biolit.fr/sorties/sortie-7b280848-689d-4606-9524-eb30e673e449/,Phil,,4/15/2017 0:00,13.0000000,13.0:35,47.796861000000,-4.372861000000,,Penmarc'h - Finistère,49291,observation-7b280848-689d-4606-9524-eb30e673e449-5,https://biolit.fr/observations/observation-7b280848-689d-4606-9524-eb30e673e449-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070214_0.JPG,,FALSE, +N1,60550,sortie-7b280848-689d-4606-9524-eb30e673e449,https://biolit.fr/sorties/sortie-7b280848-689d-4606-9524-eb30e673e449/,Phil,,4/15/2017 0:00,13.0000000,13.0:35,47.796861000000,-4.372861000000,,Penmarc'h - Finistère,49293,observation-7b280848-689d-4606-9524-eb30e673e449-6,https://biolit.fr/observations/observation-7b280848-689d-4606-9524-eb30e673e449-6/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070216_1.JPG,,TRUE, +N1,60551,sortie-7ba1a641-a236-4b73-968d-7e38b9595148,https://biolit.fr/sorties/sortie-7ba1a641-a236-4b73-968d-7e38b9595148/,louise,,4/14/2017 0:00,16.0000000,16.0:45,48.653721000000,-2.023969000000,,saint malo,49295,observation-7ba1a641-a236-4b73-968d-7e38b9595148,https://biolit.fr/observations/observation-7ba1a641-a236-4b73-968d-7e38b9595148/,Solieria chordalis,Cordes de Solier,,https://biolit.fr/wp-content/uploads/2023/07/18015846_10211396615102884_798805456_o.jpg,,TRUE, +N1,60551,sortie-7ba1a641-a236-4b73-968d-7e38b9595148,https://biolit.fr/sorties/sortie-7ba1a641-a236-4b73-968d-7e38b9595148/,louise,,4/14/2017 0:00,16.0000000,16.0:45,48.653721000000,-2.023969000000,,saint malo,49297,observation-7ba1a641-a236-4b73-968d-7e38b9595148-2,https://biolit.fr/observations/observation-7ba1a641-a236-4b73-968d-7e38b9595148-2/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/18053423_10211396613142835_1933148204_o.jpg,,TRUE, +N1,60551,sortie-7ba1a641-a236-4b73-968d-7e38b9595148,https://biolit.fr/sorties/sortie-7ba1a641-a236-4b73-968d-7e38b9595148/,louise,,4/14/2017 0:00,16.0000000,16.0:45,48.653721000000,-2.023969000000,,saint malo,49299,observation-7ba1a641-a236-4b73-968d-7e38b9595148-3,https://biolit.fr/observations/observation-7ba1a641-a236-4b73-968d-7e38b9595148-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/18049836_10211396612382816_1622129342_o.jpg,,TRUE, +N1,60551,sortie-7ba1a641-a236-4b73-968d-7e38b9595148,https://biolit.fr/sorties/sortie-7ba1a641-a236-4b73-968d-7e38b9595148/,louise,,4/14/2017 0:00,16.0000000,16.0:45,48.653721000000,-2.023969000000,,saint malo,49301,observation-7ba1a641-a236-4b73-968d-7e38b9595148-4,https://biolit.fr/observations/observation-7ba1a641-a236-4b73-968d-7e38b9595148-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/18052414_10211396615502894_1470952342_o.jpg,,TRUE, +N1,60551,sortie-7ba1a641-a236-4b73-968d-7e38b9595148,https://biolit.fr/sorties/sortie-7ba1a641-a236-4b73-968d-7e38b9595148/,louise,,4/14/2017 0:00,16.0000000,16.0:45,48.653721000000,-2.023969000000,,saint malo,49303,observation-7ba1a641-a236-4b73-968d-7e38b9595148-5,https://biolit.fr/observations/observation-7ba1a641-a236-4b73-968d-7e38b9595148-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/18042754_10211396613582846_538751543_o.jpg,,TRUE, +N1,60551,sortie-7ba1a641-a236-4b73-968d-7e38b9595148,https://biolit.fr/sorties/sortie-7ba1a641-a236-4b73-968d-7e38b9595148/,louise,,4/14/2017 0:00,16.0000000,16.0:45,48.653721000000,-2.023969000000,,saint malo,49305,observation-7ba1a641-a236-4b73-968d-7e38b9595148-6,https://biolit.fr/observations/observation-7ba1a641-a236-4b73-968d-7e38b9595148-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/18052257_10211396613382841_1260184484_o.jpg,,FALSE, +N1,60551,sortie-7ba1a641-a236-4b73-968d-7e38b9595148,https://biolit.fr/sorties/sortie-7ba1a641-a236-4b73-968d-7e38b9595148/,louise,,4/14/2017 0:00,16.0000000,16.0:45,48.653721000000,-2.023969000000,,saint malo,49307,observation-7ba1a641-a236-4b73-968d-7e38b9595148-7,https://biolit.fr/observations/observation-7ba1a641-a236-4b73-968d-7e38b9595148-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Numérisation_20170422.jpg,,FALSE, +N1,60551,sortie-7ba1a641-a236-4b73-968d-7e38b9595148,https://biolit.fr/sorties/sortie-7ba1a641-a236-4b73-968d-7e38b9595148/,louise,,4/14/2017 0:00,16.0000000,16.0:45,48.653721000000,-2.023969000000,,saint malo,49309,observation-7ba1a641-a236-4b73-968d-7e38b9595148-8,https://biolit.fr/observations/observation-7ba1a641-a236-4b73-968d-7e38b9595148-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Numérisation_20170422 (2).jpg,,FALSE, +N1,60552,sortie-e0415090-fcd5-4cbe-8fbe-adb109801ae5,https://biolit.fr/sorties/sortie-e0415090-fcd5-4cbe-8fbe-adb109801ae5/,Phil,,4/15/2017 0:00,17.0000000,17.0:15,48.207832000000,-4.374447000000,,Telgruc sur Mer - Finistère,49311,observation-e0415090-fcd5-4cbe-8fbe-adb109801ae5,https://biolit.fr/observations/observation-e0415090-fcd5-4cbe-8fbe-adb109801ae5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070320.JPG,,FALSE, +N1,60552,sortie-e0415090-fcd5-4cbe-8fbe-adb109801ae5,https://biolit.fr/sorties/sortie-e0415090-fcd5-4cbe-8fbe-adb109801ae5/,Phil,,4/15/2017 0:00,17.0000000,17.0:15,48.207832000000,-4.374447000000,,Telgruc sur Mer - Finistère,49313,observation-e0415090-fcd5-4cbe-8fbe-adb109801ae5-2,https://biolit.fr/observations/observation-e0415090-fcd5-4cbe-8fbe-adb109801ae5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070322.JPG,,FALSE, +N1,60552,sortie-e0415090-fcd5-4cbe-8fbe-adb109801ae5,https://biolit.fr/sorties/sortie-e0415090-fcd5-4cbe-8fbe-adb109801ae5/,Phil,,4/15/2017 0:00,17.0000000,17.0:15,48.207832000000,-4.374447000000,,Telgruc sur Mer - Finistère,49315,observation-e0415090-fcd5-4cbe-8fbe-adb109801ae5-3,https://biolit.fr/observations/observation-e0415090-fcd5-4cbe-8fbe-adb109801ae5-3/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1070326.JPG,,TRUE, +N1,60552,sortie-e0415090-fcd5-4cbe-8fbe-adb109801ae5,https://biolit.fr/sorties/sortie-e0415090-fcd5-4cbe-8fbe-adb109801ae5/,Phil,,4/15/2017 0:00,17.0000000,17.0:15,48.207832000000,-4.374447000000,,Telgruc sur Mer - Finistère,49317,observation-e0415090-fcd5-4cbe-8fbe-adb109801ae5-4,https://biolit.fr/observations/observation-e0415090-fcd5-4cbe-8fbe-adb109801ae5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070310.JPG,,FALSE, +N1,60552,sortie-e0415090-fcd5-4cbe-8fbe-adb109801ae5,https://biolit.fr/sorties/sortie-e0415090-fcd5-4cbe-8fbe-adb109801ae5/,Phil,,4/15/2017 0:00,17.0000000,17.0:15,48.207832000000,-4.374447000000,,Telgruc sur Mer - Finistère,49319,observation-e0415090-fcd5-4cbe-8fbe-adb109801ae5-5,https://biolit.fr/observations/observation-e0415090-fcd5-4cbe-8fbe-adb109801ae5-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070311.JPG,,FALSE, +N1,60553,sortie-8f6cacd9-1905-4002-9876-2021dcbdd648,https://biolit.fr/sorties/sortie-8f6cacd9-1905-4002-9876-2021dcbdd648/,Phil,,4/16/2017 0:00,12.0000000,12.0:25,47.896207000000,-3.975162000000,,La Forêt-Fouesnant - Finistère,49321,observation-8f6cacd9-1905-4002-9876-2021dcbdd648,https://biolit.fr/observations/observation-8f6cacd9-1905-4002-9876-2021dcbdd648/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170416_122236.jpg,,FALSE, +N1,60553,sortie-8f6cacd9-1905-4002-9876-2021dcbdd648,https://biolit.fr/sorties/sortie-8f6cacd9-1905-4002-9876-2021dcbdd648/,Phil,,4/16/2017 0:00,12.0000000,12.0:25,47.896207000000,-3.975162000000,,La Forêt-Fouesnant - Finistère,49323,observation-8f6cacd9-1905-4002-9876-2021dcbdd648-2,https://biolit.fr/observations/observation-8f6cacd9-1905-4002-9876-2021dcbdd648-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170416_122309.jpg,,FALSE, +N1,60553,sortie-8f6cacd9-1905-4002-9876-2021dcbdd648,https://biolit.fr/sorties/sortie-8f6cacd9-1905-4002-9876-2021dcbdd648/,Phil,,4/16/2017 0:00,12.0000000,12.0:25,47.896207000000,-3.975162000000,,La Forêt-Fouesnant - Finistère,49325,observation-8f6cacd9-1905-4002-9876-2021dcbdd648-3,https://biolit.fr/observations/observation-8f6cacd9-1905-4002-9876-2021dcbdd648-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170416_122323.jpg,,FALSE, +N1,60554,sortie-e1ee037a-c8b4-462c-9cce-bb45bbcbd608,https://biolit.fr/sorties/sortie-e1ee037a-c8b4-462c-9cce-bb45bbcbd608/,Phil,,4/18/2017 0:00,10.0000000,10.0:35,47.797889000000,-4.211778000000,,Lesconil - Finistère,49327,observation-e1ee037a-c8b4-462c-9cce-bb45bbcbd608,https://biolit.fr/observations/observation-e1ee037a-c8b4-462c-9cce-bb45bbcbd608/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/20170418_103626.jpg,,TRUE, +N1,60554,sortie-e1ee037a-c8b4-462c-9cce-bb45bbcbd608,https://biolit.fr/sorties/sortie-e1ee037a-c8b4-462c-9cce-bb45bbcbd608/,Phil,,4/18/2017 0:00,10.0000000,10.0:35,47.797889000000,-4.211778000000,,Lesconil - Finistère,49329,observation-e1ee037a-c8b4-462c-9cce-bb45bbcbd608-2,https://biolit.fr/observations/observation-e1ee037a-c8b4-462c-9cce-bb45bbcbd608-2/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/20170418_103542.jpg,,TRUE, +N1,60554,sortie-e1ee037a-c8b4-462c-9cce-bb45bbcbd608,https://biolit.fr/sorties/sortie-e1ee037a-c8b4-462c-9cce-bb45bbcbd608/,Phil,,4/18/2017 0:00,10.0000000,10.0:35,47.797889000000,-4.211778000000,,Lesconil - Finistère,49331,observation-e1ee037a-c8b4-462c-9cce-bb45bbcbd608-3,https://biolit.fr/observations/observation-e1ee037a-c8b4-462c-9cce-bb45bbcbd608-3/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/20170418_103310.jpg,,TRUE, +N1,60554,sortie-e1ee037a-c8b4-462c-9cce-bb45bbcbd608,https://biolit.fr/sorties/sortie-e1ee037a-c8b4-462c-9cce-bb45bbcbd608/,Phil,,4/18/2017 0:00,10.0000000,10.0:35,47.797889000000,-4.211778000000,,Lesconil - Finistère,49333,observation-e1ee037a-c8b4-462c-9cce-bb45bbcbd608-4,https://biolit.fr/observations/observation-e1ee037a-c8b4-462c-9cce-bb45bbcbd608-4/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/20170418_103347.jpg,,TRUE, +N1,60555,sortie-b55bfee1-bed8-4afa-8b44-7b85258b31d4,https://biolit.fr/sorties/sortie-b55bfee1-bed8-4afa-8b44-7b85258b31d4/,Phil,,3/13/2017 0:00,13.0000000,14.000005,47.857463000000,-3.918857000000,,Concarneau - Finistère,49335,observation-b55bfee1-bed8-4afa-8b44-7b85258b31d4,https://biolit.fr/observations/observation-b55bfee1-bed8-4afa-8b44-7b85258b31d4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060691.JPG,,FALSE, +N1,60555,sortie-b55bfee1-bed8-4afa-8b44-7b85258b31d4,https://biolit.fr/sorties/sortie-b55bfee1-bed8-4afa-8b44-7b85258b31d4/,Phil,,3/13/2017 0:00,13.0000000,14.000005,47.857463000000,-3.918857000000,,Concarneau - Finistère,49337,observation-b55bfee1-bed8-4afa-8b44-7b85258b31d4-2,https://biolit.fr/observations/observation-b55bfee1-bed8-4afa-8b44-7b85258b31d4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060692_0.JPG,,FALSE, +N1,60556,sortie-57693e4f-df8e-4b99-922c-eee96a614c8a,https://biolit.fr/sorties/sortie-57693e4f-df8e-4b99-922c-eee96a614c8a/,agoutroue,,4/15/2017 0:00,11.0000000,12.0000000,43.274048000000,5.304191000000,,Ile de Pomègue (archipel du Frioul),49339,observation-57693e4f-df8e-4b99-922c-eee96a614c8a,https://biolit.fr/observations/observation-57693e4f-df8e-4b99-922c-eee96a614c8a/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2882[1]-scaled.jpg,,FALSE, +N1,60556,sortie-57693e4f-df8e-4b99-922c-eee96a614c8a,https://biolit.fr/sorties/sortie-57693e4f-df8e-4b99-922c-eee96a614c8a/,agoutroue,,4/15/2017 0:00,11.0000000,12.0000000,43.274048000000,5.304191000000,,Ile de Pomègue (archipel du Frioul),49341,observation-57693e4f-df8e-4b99-922c-eee96a614c8a-2,https://biolit.fr/observations/observation-57693e4f-df8e-4b99-922c-eee96a614c8a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2884[1]-scaled.jpg,,FALSE, +N1,60556,sortie-57693e4f-df8e-4b99-922c-eee96a614c8a,https://biolit.fr/sorties/sortie-57693e4f-df8e-4b99-922c-eee96a614c8a/,agoutroue,,4/15/2017 0:00,11.0000000,12.0000000,43.274048000000,5.304191000000,,Ile de Pomègue (archipel du Frioul),49343,observation-57693e4f-df8e-4b99-922c-eee96a614c8a-3,https://biolit.fr/observations/observation-57693e4f-df8e-4b99-922c-eee96a614c8a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2887[1]-scaled.jpg,,FALSE, +N1,60556,sortie-57693e4f-df8e-4b99-922c-eee96a614c8a,https://biolit.fr/sorties/sortie-57693e4f-df8e-4b99-922c-eee96a614c8a/,agoutroue,,4/15/2017 0:00,11.0000000,12.0000000,43.274048000000,5.304191000000,,Ile de Pomègue (archipel du Frioul),49345,observation-57693e4f-df8e-4b99-922c-eee96a614c8a-4,https://biolit.fr/observations/observation-57693e4f-df8e-4b99-922c-eee96a614c8a-4/,Euphorbia pithyusa,Euphorbe des Baléares,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2888[1]-scaled.jpg,,TRUE, +N1,60556,sortie-57693e4f-df8e-4b99-922c-eee96a614c8a,https://biolit.fr/sorties/sortie-57693e4f-df8e-4b99-922c-eee96a614c8a/,agoutroue,,4/15/2017 0:00,11.0000000,12.0000000,43.274048000000,5.304191000000,,Ile de Pomègue (archipel du Frioul),49347,observation-57693e4f-df8e-4b99-922c-eee96a614c8a-5,https://biolit.fr/observations/observation-57693e4f-df8e-4b99-922c-eee96a614c8a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2897[1]-scaled.jpg,,FALSE, +N1,60556,sortie-57693e4f-df8e-4b99-922c-eee96a614c8a,https://biolit.fr/sorties/sortie-57693e4f-df8e-4b99-922c-eee96a614c8a/,agoutroue,,4/15/2017 0:00,11.0000000,12.0000000,43.274048000000,5.304191000000,,Ile de Pomègue (archipel du Frioul),49349,observation-57693e4f-df8e-4b99-922c-eee96a614c8a-6,https://biolit.fr/observations/observation-57693e4f-df8e-4b99-922c-eee96a614c8a-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2898[1]-scaled.jpg,,FALSE, +N1,60557,sortie-47e750f4-585b-4f10-8163-62052cd5b3e5,https://biolit.fr/sorties/sortie-47e750f4-585b-4f10-8163-62052cd5b3e5/,Phil,,4/14/2017 0:00,10.0:45,11.0000000,48.865276000000,-2.997456000000,,Île-de-Bréhat - Côtes-d'Armor,49351,observation-47e750f4-585b-4f10-8163-62052cd5b3e5,https://biolit.fr/observations/observation-47e750f4-585b-4f10-8163-62052cd5b3e5/,Phalacrocorax aristotelis,Cormoran huppé,,https://biolit.fr/wp-content/uploads/2023/07/P1060913.JPG,,TRUE, +N1,60557,sortie-47e750f4-585b-4f10-8163-62052cd5b3e5,https://biolit.fr/sorties/sortie-47e750f4-585b-4f10-8163-62052cd5b3e5/,Phil,,4/14/2017 0:00,10.0:45,11.0000000,48.865276000000,-2.997456000000,,Île-de-Bréhat - Côtes-d'Armor,49353,observation-47e750f4-585b-4f10-8163-62052cd5b3e5-2,https://biolit.fr/observations/observation-47e750f4-585b-4f10-8163-62052cd5b3e5-2/,Phalacrocorax aristotelis,Cormoran huppé,,https://biolit.fr/wp-content/uploads/2023/07/P1060906.JPG,,TRUE, +N1,60557,sortie-47e750f4-585b-4f10-8163-62052cd5b3e5,https://biolit.fr/sorties/sortie-47e750f4-585b-4f10-8163-62052cd5b3e5/,Phil,,4/14/2017 0:00,10.0:45,11.0000000,48.865276000000,-2.997456000000,,Île-de-Bréhat - Côtes-d'Armor,49355,observation-47e750f4-585b-4f10-8163-62052cd5b3e5-3,https://biolit.fr/observations/observation-47e750f4-585b-4f10-8163-62052cd5b3e5-3/,Phalacrocorax aristotelis,Cormoran huppé,,https://biolit.fr/wp-content/uploads/2023/07/P1060907.JPG,,TRUE, +N1,60557,sortie-47e750f4-585b-4f10-8163-62052cd5b3e5,https://biolit.fr/sorties/sortie-47e750f4-585b-4f10-8163-62052cd5b3e5/,Phil,,4/14/2017 0:00,10.0:45,11.0000000,48.865276000000,-2.997456000000,,Île-de-Bréhat - Côtes-d'Armor,49357,observation-47e750f4-585b-4f10-8163-62052cd5b3e5-4,https://biolit.fr/observations/observation-47e750f4-585b-4f10-8163-62052cd5b3e5-4/,Phalacrocorax aristotelis,Cormoran huppé,,https://biolit.fr/wp-content/uploads/2023/07/P1060910.JPG,,TRUE, +N1,60557,sortie-47e750f4-585b-4f10-8163-62052cd5b3e5,https://biolit.fr/sorties/sortie-47e750f4-585b-4f10-8163-62052cd5b3e5/,Phil,,4/14/2017 0:00,10.0:45,11.0000000,48.865276000000,-2.997456000000,,Île-de-Bréhat - Côtes-d'Armor,49359,observation-47e750f4-585b-4f10-8163-62052cd5b3e5-5,https://biolit.fr/observations/observation-47e750f4-585b-4f10-8163-62052cd5b3e5-5/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/P1060897.JPG,,TRUE, +N1,60558,sortie-4be67d00-c636-429b-9c3b-aa6f86b1f4e7,https://biolit.fr/sorties/sortie-4be67d00-c636-429b-9c3b-aa6f86b1f4e7/,Phil,,4/15/2017 0:00,14.000005,14.0000000,47.799378000000,-4.373794000000,,Penmarc'h - Finistère,49361,observation-4be67d00-c636-429b-9c3b-aa6f86b1f4e7,https://biolit.fr/observations/observation-4be67d00-c636-429b-9c3b-aa6f86b1f4e7/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/P1070271.JPG,,TRUE, +N1,60558,sortie-4be67d00-c636-429b-9c3b-aa6f86b1f4e7,https://biolit.fr/sorties/sortie-4be67d00-c636-429b-9c3b-aa6f86b1f4e7/,Phil,,4/15/2017 0:00,14.000005,14.0000000,47.799378000000,-4.373794000000,,Penmarc'h - Finistère,49363,observation-4be67d00-c636-429b-9c3b-aa6f86b1f4e7-2,https://biolit.fr/observations/observation-4be67d00-c636-429b-9c3b-aa6f86b1f4e7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070270.JPG,,FALSE, +N1,60558,sortie-4be67d00-c636-429b-9c3b-aa6f86b1f4e7,https://biolit.fr/sorties/sortie-4be67d00-c636-429b-9c3b-aa6f86b1f4e7/,Phil,,4/15/2017 0:00,14.000005,14.0000000,47.799378000000,-4.373794000000,,Penmarc'h - Finistère,49365,observation-4be67d00-c636-429b-9c3b-aa6f86b1f4e7-3,https://biolit.fr/observations/observation-4be67d00-c636-429b-9c3b-aa6f86b1f4e7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070267.JPG,,FALSE, +N1,60558,sortie-4be67d00-c636-429b-9c3b-aa6f86b1f4e7,https://biolit.fr/sorties/sortie-4be67d00-c636-429b-9c3b-aa6f86b1f4e7/,Phil,,4/15/2017 0:00,14.000005,14.0000000,47.799378000000,-4.373794000000,,Penmarc'h - Finistère,49367,observation-4be67d00-c636-429b-9c3b-aa6f86b1f4e7-4,https://biolit.fr/observations/observation-4be67d00-c636-429b-9c3b-aa6f86b1f4e7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070276.JPG,,FALSE, +N1,60559,sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b,https://biolit.fr/sorties/sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b/,azelie,,4/13/2017 0:00,16.0:55,17.0:25,49.707607000000,0.20014000000,,Étretat,49369,observation-7297a360-4164-4cb2-a9c3-b2e08d79672b,https://biolit.fr/observations/observation-7297a360-4164-4cb2-a9c3-b2e08d79672b/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4066.jpg,,TRUE, +N1,60559,sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b,https://biolit.fr/sorties/sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b/,azelie,,4/13/2017 0:00,16.0:55,17.0:25,49.707607000000,0.20014000000,,Étretat,49371,observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-2,https://biolit.fr/observations/observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4068-scaled.jpg,,FALSE, +N1,60559,sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b,https://biolit.fr/sorties/sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b/,azelie,,4/13/2017 0:00,16.0:55,17.0:25,49.707607000000,0.20014000000,,Étretat,49373,observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-3,https://biolit.fr/observations/observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-3/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4070.jpg,,TRUE, +N1,60559,sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b,https://biolit.fr/sorties/sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b/,azelie,,4/13/2017 0:00,16.0:55,17.0:25,49.707607000000,0.20014000000,,Étretat,49375,observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-4,https://biolit.fr/observations/observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4073-scaled.jpg,,FALSE, +N1,60559,sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b,https://biolit.fr/sorties/sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b/,azelie,,4/13/2017 0:00,16.0:55,17.0:25,49.707607000000,0.20014000000,,Étretat,49377,observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-5,https://biolit.fr/observations/observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-5/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4079-scaled.jpg,,TRUE, +N1,60559,sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b,https://biolit.fr/sorties/sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b/,azelie,,4/13/2017 0:00,16.0:55,17.0:25,49.707607000000,0.20014000000,,Étretat,49379,observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-6,https://biolit.fr/observations/observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-6/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4083-scaled.jpg,,TRUE, +N1,60559,sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b,https://biolit.fr/sorties/sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b/,azelie,,4/13/2017 0:00,16.0:55,17.0:25,49.707607000000,0.20014000000,,Étretat,49381,observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-7,https://biolit.fr/observations/observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-7/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4084-scaled.jpg,,TRUE, +N1,60559,sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b,https://biolit.fr/sorties/sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b/,azelie,,4/13/2017 0:00,16.0:55,17.0:25,49.707607000000,0.20014000000,,Étretat,49383,observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-8,https://biolit.fr/observations/observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-8/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_4088-scaled.jpg,,TRUE, +N1,60559,sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b,https://biolit.fr/sorties/sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b/,azelie,,4/13/2017 0:00,16.0:55,17.0:25,49.707607000000,0.20014000000,,Étretat,49385,observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-9,https://biolit.fr/observations/observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4090-scaled.jpg,,FALSE, +N1,60559,sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b,https://biolit.fr/sorties/sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b/,azelie,,4/13/2017 0:00,16.0:55,17.0:25,49.707607000000,0.20014000000,,Étretat,49387,observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-10,https://biolit.fr/observations/observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4096-rotated.jpg,,FALSE, +N1,60559,sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b,https://biolit.fr/sorties/sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b/,azelie,,4/13/2017 0:00,16.0:55,17.0:25,49.707607000000,0.20014000000,,Étretat,49389,observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-11,https://biolit.fr/observations/observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4094-rotated.jpg,,FALSE, +N1,60559,sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b,https://biolit.fr/sorties/sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b/,azelie,,4/13/2017 0:00,16.0:55,17.0:25,49.707607000000,0.20014000000,,Étretat,49391,observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-12,https://biolit.fr/observations/observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2127-scaled.jpg,,FALSE, +N1,60559,sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b,https://biolit.fr/sorties/sortie-7297a360-4164-4cb2-a9c3-b2e08d79672b/,azelie,,4/13/2017 0:00,16.0:55,17.0:25,49.707607000000,0.20014000000,,Étretat,49393,observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-13,https://biolit.fr/observations/observation-7297a360-4164-4cb2-a9c3-b2e08d79672b-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2125-scaled.jpg,,FALSE, +N1,60560,sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a,https://biolit.fr/sorties/sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.254824000000,5.374085000000,,plage de Borely,49395,observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a,https://biolit.fr/observations/observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0032.jpg,,FALSE, +N1,60560,sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a,https://biolit.fr/sorties/sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.254824000000,5.374085000000,,plage de Borely,49396,observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-2,https://biolit.fr/observations/observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0033_0.JPG,,FALSE, +N1,60560,sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a,https://biolit.fr/sorties/sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.254824000000,5.374085000000,,plage de Borely,49398,observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-3,https://biolit.fr/observations/observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0034.JPG,,FALSE, +N1,60560,sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a,https://biolit.fr/sorties/sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.254824000000,5.374085000000,,plage de Borely,49400,observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-4,https://biolit.fr/observations/observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0035_0-rotated.jpg,,FALSE, +N1,60560,sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a,https://biolit.fr/sorties/sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.254824000000,5.374085000000,,plage de Borely,49402,observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-5,https://biolit.fr/observations/observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0048_0.JPG,,FALSE, +N1,60560,sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a,https://biolit.fr/sorties/sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.254824000000,5.374085000000,,plage de Borely,49404,observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-6,https://biolit.fr/observations/observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0050_1.JPG,,FALSE, +N1,60560,sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a,https://biolit.fr/sorties/sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.254824000000,5.374085000000,,plage de Borely,49406,observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-7,https://biolit.fr/observations/observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-7/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/DSC_0053a.jpg,,TRUE, +N1,60560,sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a,https://biolit.fr/sorties/sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.254824000000,5.374085000000,,plage de Borely,49408,observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-8,https://biolit.fr/observations/observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0053b.jpg,,FALSE, +N1,60560,sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a,https://biolit.fr/sorties/sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.254824000000,5.374085000000,,plage de Borely,49410,observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-9,https://biolit.fr/observations/observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0054_0.JPG,,FALSE, +N1,60560,sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a,https://biolit.fr/sorties/sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.254824000000,5.374085000000,,plage de Borely,49412,observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-10,https://biolit.fr/observations/observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0061_1.JPG,,FALSE, +N1,60560,sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a,https://biolit.fr/sorties/sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.254824000000,5.374085000000,,plage de Borely,49414,observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-11,https://biolit.fr/observations/observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0062_0.JPG,,FALSE, +N1,60560,sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a,https://biolit.fr/sorties/sortie-b3d07f13-de35-4f8a-9a7a-9edb83bd441a/,ludovic,,4/19/2017 0:00,14.0000000,15.0000000,43.254824000000,5.374085000000,,plage de Borely,49416,observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-12,https://biolit.fr/observations/observation-b3d07f13-de35-4f8a-9a7a-9edb83bd441a-12/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0065_0.JPG,,TRUE, +N1,60561,sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405,https://biolit.fr/sorties/sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405/,Mathias,,4/19/2017 0:00,14.0000000,15.0000000,43.253559000000,5.374143000000,,Plage de Borély,49418,observation-f97aef90-3718-4fc8-bcbf-ba6255c14405,https://biolit.fr/observations/observation-f97aef90-3718-4fc8-bcbf-ba6255c14405/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0210_0-scaled.jpg,,TRUE, +N1,60561,sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405,https://biolit.fr/sorties/sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405/,Mathias,,4/19/2017 0:00,14.0000000,15.0000000,43.253559000000,5.374143000000,,Plage de Borély,49420,observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-2,https://biolit.fr/observations/observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0216-scaled.jpg,,FALSE, +N1,60561,sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405,https://biolit.fr/sorties/sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405/,Mathias,,4/19/2017 0:00,14.0000000,15.0000000,43.253559000000,5.374143000000,,Plage de Borély,49422,observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-3,https://biolit.fr/observations/observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-3/,Nemalion elminthoides,Némalion vermiforme,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0222-scaled.jpg,,TRUE, +N1,60561,sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405,https://biolit.fr/sorties/sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405/,Mathias,,4/19/2017 0:00,14.0000000,15.0000000,43.253559000000,5.374143000000,,Plage de Borély,49424,observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-4,https://biolit.fr/observations/observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0226-scaled.jpg,,FALSE, +N1,60561,sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405,https://biolit.fr/sorties/sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405/,Mathias,,4/19/2017 0:00,14.0000000,15.0000000,43.253559000000,5.374143000000,,Plage de Borély,49426,observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-5,https://biolit.fr/observations/observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0227-scaled.jpg,,FALSE, +N1,60561,sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405,https://biolit.fr/sorties/sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405/,Mathias,,4/19/2017 0:00,14.0000000,15.0000000,43.253559000000,5.374143000000,,Plage de Borély,49428,observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-6,https://biolit.fr/observations/observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0228-scaled.jpg,,FALSE, +N1,60561,sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405,https://biolit.fr/sorties/sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405/,Mathias,,4/19/2017 0:00,14.0000000,15.0000000,43.253559000000,5.374143000000,,Plage de Borély,49430,observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-7,https://biolit.fr/observations/observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0230-scaled.jpg,,FALSE, +N1,60561,sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405,https://biolit.fr/sorties/sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405/,Mathias,,4/19/2017 0:00,14.0000000,15.0000000,43.253559000000,5.374143000000,,Plage de Borély,49432,observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-8,https://biolit.fr/observations/observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-8/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0232-scaled.jpg,,TRUE, +N1,60561,sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405,https://biolit.fr/sorties/sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405/,Mathias,,4/19/2017 0:00,14.0000000,15.0000000,43.253559000000,5.374143000000,,Plage de Borély,49434,observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-9,https://biolit.fr/observations/observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-9/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0234-scaled.jpg,,TRUE, +N1,60561,sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405,https://biolit.fr/sorties/sortie-f97aef90-3718-4fc8-bcbf-ba6255c14405/,Mathias,,4/19/2017 0:00,14.0000000,15.0000000,43.253559000000,5.374143000000,,Plage de Borély,49436,observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-10,https://biolit.fr/observations/observation-f97aef90-3718-4fc8-bcbf-ba6255c14405-10/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0235-scaled.jpg,,TRUE, +N1,60562,sortie-8a20187f-3b22-468a-981f-8c57aec9dd6d,https://biolit.fr/sorties/sortie-8a20187f-3b22-468a-981f-8c57aec9dd6d/,RIEM,,4/15/2017 0:00,14.0000000,15.0000000,47.542525000000,-2.90290700000,,Plage de Kercouedo commune d'Arzon ,49438,observation-8a20187f-3b22-468a-981f-8c57aec9dd6d,https://biolit.fr/observations/observation-8a20187f-3b22-468a-981f-8c57aec9dd6d/,,,,https://biolit.fr/wp-content/uploads/2023/07/2_1.jpg,,FALSE, +N1,60562,sortie-8a20187f-3b22-468a-981f-8c57aec9dd6d,https://biolit.fr/sorties/sortie-8a20187f-3b22-468a-981f-8c57aec9dd6d/,RIEM,,4/15/2017 0:00,14.0000000,15.0000000,47.542525000000,-2.90290700000,,Plage de Kercouedo commune d'Arzon ,49440,observation-8a20187f-3b22-468a-981f-8c57aec9dd6d-2,https://biolit.fr/observations/observation-8a20187f-3b22-468a-981f-8c57aec9dd6d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/3_1.jpg,,FALSE, +N1,60562,sortie-8a20187f-3b22-468a-981f-8c57aec9dd6d,https://biolit.fr/sorties/sortie-8a20187f-3b22-468a-981f-8c57aec9dd6d/,RIEM,,4/15/2017 0:00,14.0000000,15.0000000,47.542525000000,-2.90290700000,,Plage de Kercouedo commune d'Arzon ,49442,observation-8a20187f-3b22-468a-981f-8c57aec9dd6d-3,https://biolit.fr/observations/observation-8a20187f-3b22-468a-981f-8c57aec9dd6d-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/4_1.jpg,,TRUE, +N1,60562,sortie-8a20187f-3b22-468a-981f-8c57aec9dd6d,https://biolit.fr/sorties/sortie-8a20187f-3b22-468a-981f-8c57aec9dd6d/,RIEM,,4/15/2017 0:00,14.0000000,15.0000000,47.542525000000,-2.90290700000,,Plage de Kercouedo commune d'Arzon ,49444,observation-8a20187f-3b22-468a-981f-8c57aec9dd6d-4,https://biolit.fr/observations/observation-8a20187f-3b22-468a-981f-8c57aec9dd6d-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/5_0-scaled.jpg,,TRUE, +N1,60563,sortie-9b6f050b-8fca-42b9-9d26-e58934c499a3,https://biolit.fr/sorties/sortie-9b6f050b-8fca-42b9-9d26-e58934c499a3/,RIEM,,4/15/2017 0:00,10.0000000,11.0000000,47.5377050000,-2.887297000000,,PLAGE DU FOGEO (Arzon),49445,observation-9b6f050b-8fca-42b9-9d26-e58934c499a3,https://biolit.fr/observations/observation-9b6f050b-8fca-42b9-9d26-e58934c499a3/,,,,https://biolit.fr/wp-content/uploads/2023/07/meduse-scaled.jpg,,FALSE, +N1,60564,sortie-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098,https://biolit.fr/sorties/sortie-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098/,Phil,,4/15/2017 0:00,13.0:25,13.0000000,47.795099000000,-4.37318500000,,Penmarc'h - Finistère,49446,observation-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098,https://biolit.fr/observations/observation-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070207.JPG,,TRUE, +N1,60564,sortie-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098,https://biolit.fr/sorties/sortie-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098/,Phil,,4/15/2017 0:00,13.0:25,13.0000000,47.795099000000,-4.37318500000,,Penmarc'h - Finistère,49448,observation-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098-2,https://biolit.fr/observations/observation-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098-2/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070204.JPG,,TRUE, +N1,60564,sortie-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098,https://biolit.fr/sorties/sortie-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098/,Phil,,4/15/2017 0:00,13.0:25,13.0000000,47.795099000000,-4.37318500000,,Penmarc'h - Finistère,49450,observation-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098-3,https://biolit.fr/observations/observation-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070197.JPG,,FALSE, +N1,60564,sortie-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098,https://biolit.fr/sorties/sortie-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098/,Phil,,4/15/2017 0:00,13.0:25,13.0000000,47.795099000000,-4.37318500000,,Penmarc'h - Finistère,49452,observation-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098-4,https://biolit.fr/observations/observation-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098-4/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070199.JPG,,TRUE, +N1,60564,sortie-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098,https://biolit.fr/sorties/sortie-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098/,Phil,,4/15/2017 0:00,13.0:25,13.0000000,47.795099000000,-4.37318500000,,Penmarc'h - Finistère,49454,observation-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098-5,https://biolit.fr/observations/observation-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070202.JPG,,FALSE, +N1,60564,sortie-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098,https://biolit.fr/sorties/sortie-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098/,Phil,,4/15/2017 0:00,13.0:25,13.0000000,47.795099000000,-4.37318500000,,Penmarc'h - Finistère,49456,observation-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098-6,https://biolit.fr/observations/observation-0af6fbdb-e4e0-4d7d-92b8-79d0ae78f098-6/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070201.JPG,,TRUE, +N1,60565,sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b,https://biolit.fr/sorties/sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b/,azelie,,04/09/2017,16.0000000,16.0000000,49.737904000000,0.290220000000,,Vattetot-sur-mer,49458,observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b,https://biolit.fr/observations/observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2072-scaled.jpg,,FALSE, +N1,60565,sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b,https://biolit.fr/sorties/sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b/,azelie,,04/09/2017,16.0000000,16.0000000,49.737904000000,0.290220000000,,Vattetot-sur-mer,49460,observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-2,https://biolit.fr/observations/observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3989-scaled.jpg,,FALSE, +N1,60565,sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b,https://biolit.fr/sorties/sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b/,azelie,,04/09/2017,16.0000000,16.0000000,49.737904000000,0.290220000000,,Vattetot-sur-mer,49462,observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-3,https://biolit.fr/observations/observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3993-scaled.jpg,,FALSE, +N1,60565,sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b,https://biolit.fr/sorties/sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b/,azelie,,04/09/2017,16.0000000,16.0000000,49.737904000000,0.290220000000,,Vattetot-sur-mer,49464,observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-4,https://biolit.fr/observations/observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3997-scaled.jpg,,FALSE, +N1,60565,sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b,https://biolit.fr/sorties/sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b/,azelie,,04/09/2017,16.0000000,16.0000000,49.737904000000,0.290220000000,,Vattetot-sur-mer,49466,observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-5,https://biolit.fr/observations/observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3999-scaled.jpg,,FALSE, +N1,60565,sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b,https://biolit.fr/sorties/sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b/,azelie,,04/09/2017,16.0000000,16.0000000,49.737904000000,0.290220000000,,Vattetot-sur-mer,49468,observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-6,https://biolit.fr/observations/observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-6/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4002-scaled.jpg,,TRUE, +N1,60565,sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b,https://biolit.fr/sorties/sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b/,azelie,,04/09/2017,16.0000000,16.0000000,49.737904000000,0.290220000000,,Vattetot-sur-mer,49470,observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-7,https://biolit.fr/observations/observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4005-scaled.jpg,,FALSE, +N1,60565,sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b,https://biolit.fr/sorties/sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b/,azelie,,04/09/2017,16.0000000,16.0000000,49.737904000000,0.290220000000,,Vattetot-sur-mer,49472,observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-8,https://biolit.fr/observations/observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4007-scaled.jpg,,FALSE, +N1,60565,sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b,https://biolit.fr/sorties/sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b/,azelie,,04/09/2017,16.0000000,16.0000000,49.737904000000,0.290220000000,,Vattetot-sur-mer,49474,observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-9,https://biolit.fr/observations/observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4008-scaled.jpg,,FALSE, +N1,60565,sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b,https://biolit.fr/sorties/sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b/,azelie,,04/09/2017,16.0000000,16.0000000,49.737904000000,0.290220000000,,Vattetot-sur-mer,49476,observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-10,https://biolit.fr/observations/observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4016-scaled.jpg,,FALSE, +N1,60565,sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b,https://biolit.fr/sorties/sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b/,azelie,,04/09/2017,16.0000000,16.0000000,49.737904000000,0.290220000000,,Vattetot-sur-mer,49478,observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-11,https://biolit.fr/observations/observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4017-scaled.jpg,,FALSE, +N1,60565,sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b,https://biolit.fr/sorties/sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b/,azelie,,04/09/2017,16.0000000,16.0000000,49.737904000000,0.290220000000,,Vattetot-sur-mer,49480,observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-12,https://biolit.fr/observations/observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4018-scaled.jpg,,FALSE, +N1,60565,sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b,https://biolit.fr/sorties/sortie-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b/,azelie,,04/09/2017,16.0000000,16.0000000,49.737904000000,0.290220000000,,Vattetot-sur-mer,49482,observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-13,https://biolit.fr/observations/observation-f1b582d5-1b6a-4dd9-b8f3-53107675fd3b-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2081-scaled.jpg,,FALSE, +N1,60566,sortie-963e4e70-54fa-4bce-8543-05d825c6d377,https://biolit.fr/sorties/sortie-963e4e70-54fa-4bce-8543-05d825c6d377/,Phil,,4/15/2017 0:00,10.0:35,10.0000000,47.83507800000,-4.176180000000,,Loctudy - Finistère,49484,observation-963e4e70-54fa-4bce-8543-05d825c6d377,https://biolit.fr/observations/observation-963e4e70-54fa-4bce-8543-05d825c6d377/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1070153.JPG,,TRUE, +N1,60566,sortie-963e4e70-54fa-4bce-8543-05d825c6d377,https://biolit.fr/sorties/sortie-963e4e70-54fa-4bce-8543-05d825c6d377/,Phil,,4/15/2017 0:00,10.0:35,10.0000000,47.83507800000,-4.176180000000,,Loctudy - Finistère,49486,observation-963e4e70-54fa-4bce-8543-05d825c6d377-2,https://biolit.fr/observations/observation-963e4e70-54fa-4bce-8543-05d825c6d377-2/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/P1070156.JPG,,TRUE, +N1,60566,sortie-963e4e70-54fa-4bce-8543-05d825c6d377,https://biolit.fr/sorties/sortie-963e4e70-54fa-4bce-8543-05d825c6d377/,Phil,,4/15/2017 0:00,10.0:35,10.0000000,47.83507800000,-4.176180000000,,Loctudy - Finistère,49488,observation-963e4e70-54fa-4bce-8543-05d825c6d377-3,https://biolit.fr/observations/observation-963e4e70-54fa-4bce-8543-05d825c6d377-3/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/P1070159.JPG,,TRUE, +N1,60566,sortie-963e4e70-54fa-4bce-8543-05d825c6d377,https://biolit.fr/sorties/sortie-963e4e70-54fa-4bce-8543-05d825c6d377/,Phil,,4/15/2017 0:00,10.0:35,10.0000000,47.83507800000,-4.176180000000,,Loctudy - Finistère,49490,observation-963e4e70-54fa-4bce-8543-05d825c6d377-4,https://biolit.fr/observations/observation-963e4e70-54fa-4bce-8543-05d825c6d377-4/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/P1070160.JPG,,TRUE, +N1,60566,sortie-963e4e70-54fa-4bce-8543-05d825c6d377,https://biolit.fr/sorties/sortie-963e4e70-54fa-4bce-8543-05d825c6d377/,Phil,,4/15/2017 0:00,10.0:35,10.0000000,47.83507800000,-4.176180000000,,Loctudy - Finistère,49492,observation-963e4e70-54fa-4bce-8543-05d825c6d377-5,https://biolit.fr/observations/observation-963e4e70-54fa-4bce-8543-05d825c6d377-5/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/P1070161.JPG,,TRUE, +N1,60566,sortie-963e4e70-54fa-4bce-8543-05d825c6d377,https://biolit.fr/sorties/sortie-963e4e70-54fa-4bce-8543-05d825c6d377/,Phil,,4/15/2017 0:00,10.0:35,10.0000000,47.83507800000,-4.176180000000,,Loctudy - Finistère,49494,observation-963e4e70-54fa-4bce-8543-05d825c6d377-6,https://biolit.fr/observations/observation-963e4e70-54fa-4bce-8543-05d825c6d377-6/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/P1070166.JPG,,TRUE, +N1,60567,sortie-a9280127-2e83-4768-a261-db58e0972a1d,https://biolit.fr/sorties/sortie-a9280127-2e83-4768-a261-db58e0972a1d/,Phil,,4/15/2017 0:00,16.0:55,17.0000000,48.208022000000,-4.373039000000,,Telgruc sur Mer - Finistère,49498,observation-a9280127-2e83-4768-a261-db58e0972a1d-2,https://biolit.fr/observations/observation-a9280127-2e83-4768-a261-db58e0972a1d-2/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/P1070297.JPG,,TRUE, +N1,60567,sortie-a9280127-2e83-4768-a261-db58e0972a1d,https://biolit.fr/sorties/sortie-a9280127-2e83-4768-a261-db58e0972a1d/,Phil,,4/15/2017 0:00,16.0:55,17.0000000,48.208022000000,-4.373039000000,,Telgruc sur Mer - Finistère,49502,observation-a9280127-2e83-4768-a261-db58e0972a1d-4,https://biolit.fr/observations/observation-a9280127-2e83-4768-a261-db58e0972a1d-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070302.JPG,,TRUE, +N1,60567,sortie-a9280127-2e83-4768-a261-db58e0972a1d,https://biolit.fr/sorties/sortie-a9280127-2e83-4768-a261-db58e0972a1d/,Phil,,4/15/2017 0:00,16.0:55,17.0000000,48.208022000000,-4.373039000000,,Telgruc sur Mer - Finistère,49504,observation-a9280127-2e83-4768-a261-db58e0972a1d-5,https://biolit.fr/observations/observation-a9280127-2e83-4768-a261-db58e0972a1d-5/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070307.JPG,,TRUE, +N1,60568,sortie-d1604b1a-0c22-433e-a6f6-574951aa9b02,https://biolit.fr/sorties/sortie-d1604b1a-0c22-433e-a6f6-574951aa9b02/,RIEM,,04/06/2017,14.0000000,14.0000000,51.050435000000,2.393383000000,,Plage de Malo les bains ,49506,observation-d1604b1a-0c22-433e-a6f6-574951aa9b02,https://biolit.fr/observations/observation-d1604b1a-0c22-433e-a6f6-574951aa9b02/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170406_2_0.jpg,,FALSE, +N1,60568,sortie-d1604b1a-0c22-433e-a6f6-574951aa9b02,https://biolit.fr/sorties/sortie-d1604b1a-0c22-433e-a6f6-574951aa9b02/,RIEM,,04/06/2017,14.0000000,14.0000000,51.050435000000,2.393383000000,,Plage de Malo les bains ,49508,observation-d1604b1a-0c22-433e-a6f6-574951aa9b02-2,https://biolit.fr/observations/observation-d1604b1a-0c22-433e-a6f6-574951aa9b02-2/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/BUCCINS.jpg,,TRUE, +N1,60568,sortie-d1604b1a-0c22-433e-a6f6-574951aa9b02,https://biolit.fr/sorties/sortie-d1604b1a-0c22-433e-a6f6-574951aa9b02/,RIEM,,04/06/2017,14.0000000,14.0000000,51.050435000000,2.393383000000,,Plage de Malo les bains ,49510,observation-d1604b1a-0c22-433e-a6f6-574951aa9b02-3,https://biolit.fr/observations/observation-d1604b1a-0c22-433e-a6f6-574951aa9b02-3/,Ensis magnus,Couteau arqué,,https://biolit.fr/wp-content/uploads/2023/07/20170406_3_0.jpg,,TRUE, +N1,60568,sortie-d1604b1a-0c22-433e-a6f6-574951aa9b02,https://biolit.fr/sorties/sortie-d1604b1a-0c22-433e-a6f6-574951aa9b02/,RIEM,,04/06/2017,14.0000000,14.0000000,51.050435000000,2.393383000000,,Plage de Malo les bains ,49512,observation-d1604b1a-0c22-433e-a6f6-574951aa9b02-4,https://biolit.fr/observations/observation-d1604b1a-0c22-433e-a6f6-574951aa9b02-4/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/2023/07/20170406_4_0.jpg,,TRUE, +N1,60568,sortie-d1604b1a-0c22-433e-a6f6-574951aa9b02,https://biolit.fr/sorties/sortie-d1604b1a-0c22-433e-a6f6-574951aa9b02/,RIEM,,04/06/2017,14.0000000,14.0000000,51.050435000000,2.393383000000,,Plage de Malo les bains ,49514,observation-d1604b1a-0c22-433e-a6f6-574951aa9b02-5,https://biolit.fr/observations/observation-d1604b1a-0c22-433e-a6f6-574951aa9b02-5/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/20170406_5_0.jpg,,TRUE, +N1,60568,sortie-d1604b1a-0c22-433e-a6f6-574951aa9b02,https://biolit.fr/sorties/sortie-d1604b1a-0c22-433e-a6f6-574951aa9b02/,RIEM,,04/06/2017,14.0000000,14.0000000,51.050435000000,2.393383000000,,Plage de Malo les bains ,49516,observation-d1604b1a-0c22-433e-a6f6-574951aa9b02-6,https://biolit.fr/observations/observation-d1604b1a-0c22-433e-a6f6-574951aa9b02-6/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20170406_6_0.jpg,,TRUE, +N1,60568,sortie-d1604b1a-0c22-433e-a6f6-574951aa9b02,https://biolit.fr/sorties/sortie-d1604b1a-0c22-433e-a6f6-574951aa9b02/,RIEM,,04/06/2017,14.0000000,14.0000000,51.050435000000,2.393383000000,,Plage de Malo les bains ,49518,observation-d1604b1a-0c22-433e-a6f6-574951aa9b02-7,https://biolit.fr/observations/observation-d1604b1a-0c22-433e-a6f6-574951aa9b02-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170406_7_0.jpg,,FALSE, +N1,60569,sortie-8bd6ab6c-6769-4acd-ae59-6b83a08711d9,https://biolit.fr/sorties/sortie-8bd6ab6c-6769-4acd-ae59-6b83a08711d9/,Phil,,4/13/2017 0:00,13.0000000,13.0:55,47.857269000000,-3.920419000000,,Concarneau - Finistère,49520,observation-8bd6ab6c-6769-4acd-ae59-6b83a08711d9,https://biolit.fr/observations/observation-8bd6ab6c-6769-4acd-ae59-6b83a08711d9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060690.JPG,,FALSE, +N1,60569,sortie-8bd6ab6c-6769-4acd-ae59-6b83a08711d9,https://biolit.fr/sorties/sortie-8bd6ab6c-6769-4acd-ae59-6b83a08711d9/,Phil,,4/13/2017 0:00,13.0000000,13.0:55,47.857269000000,-3.920419000000,,Concarneau - Finistère,49522,observation-8bd6ab6c-6769-4acd-ae59-6b83a08711d9-2,https://biolit.fr/observations/observation-8bd6ab6c-6769-4acd-ae59-6b83a08711d9-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1060685.JPG,,TRUE, +N1,60569,sortie-8bd6ab6c-6769-4acd-ae59-6b83a08711d9,https://biolit.fr/sorties/sortie-8bd6ab6c-6769-4acd-ae59-6b83a08711d9/,Phil,,4/13/2017 0:00,13.0000000,13.0:55,47.857269000000,-3.920419000000,,Concarneau - Finistère,49524,observation-8bd6ab6c-6769-4acd-ae59-6b83a08711d9-3,https://biolit.fr/observations/observation-8bd6ab6c-6769-4acd-ae59-6b83a08711d9-3/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1060687.JPG,,TRUE, +N1,60569,sortie-8bd6ab6c-6769-4acd-ae59-6b83a08711d9,https://biolit.fr/sorties/sortie-8bd6ab6c-6769-4acd-ae59-6b83a08711d9/,Phil,,4/13/2017 0:00,13.0000000,13.0:55,47.857269000000,-3.920419000000,,Concarneau - Finistère,49526,observation-8bd6ab6c-6769-4acd-ae59-6b83a08711d9-4,https://biolit.fr/observations/observation-8bd6ab6c-6769-4acd-ae59-6b83a08711d9-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060677.JPG,,FALSE, +N1,60570,sortie-1fcf645e-fc95-4f86-a63d-05291d380ac8,https://biolit.fr/sorties/sortie-1fcf645e-fc95-4f86-a63d-05291d380ac8/,Phil,,4/15/2017 0:00,13.0000000,13.0000000,47.797146000000,-4.372932000000,,Penmarc'h - Finistère,49528,observation-1fcf645e-fc95-4f86-a63d-05291d380ac8,https://biolit.fr/observations/observation-1fcf645e-fc95-4f86-a63d-05291d380ac8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070185.JPG,,FALSE, +N1,60570,sortie-1fcf645e-fc95-4f86-a63d-05291d380ac8,https://biolit.fr/sorties/sortie-1fcf645e-fc95-4f86-a63d-05291d380ac8/,Phil,,4/15/2017 0:00,13.0000000,13.0000000,47.797146000000,-4.372932000000,,Penmarc'h - Finistère,49530,observation-1fcf645e-fc95-4f86-a63d-05291d380ac8-2,https://biolit.fr/observations/observation-1fcf645e-fc95-4f86-a63d-05291d380ac8-2/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070195.JPG,,TRUE, +N1,60570,sortie-1fcf645e-fc95-4f86-a63d-05291d380ac8,https://biolit.fr/sorties/sortie-1fcf645e-fc95-4f86-a63d-05291d380ac8/,Phil,,4/15/2017 0:00,13.0000000,13.0000000,47.797146000000,-4.372932000000,,Penmarc'h - Finistère,49532,observation-1fcf645e-fc95-4f86-a63d-05291d380ac8-3,https://biolit.fr/observations/observation-1fcf645e-fc95-4f86-a63d-05291d380ac8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070189.JPG,,FALSE, +N1,60570,sortie-1fcf645e-fc95-4f86-a63d-05291d380ac8,https://biolit.fr/sorties/sortie-1fcf645e-fc95-4f86-a63d-05291d380ac8/,Phil,,4/15/2017 0:00,13.0000000,13.0000000,47.797146000000,-4.372932000000,,Penmarc'h - Finistère,49534,observation-1fcf645e-fc95-4f86-a63d-05291d380ac8-4,https://biolit.fr/observations/observation-1fcf645e-fc95-4f86-a63d-05291d380ac8-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1070190.JPG,,FALSE, +N1,60570,sortie-1fcf645e-fc95-4f86-a63d-05291d380ac8,https://biolit.fr/sorties/sortie-1fcf645e-fc95-4f86-a63d-05291d380ac8/,Phil,,4/15/2017 0:00,13.0000000,13.0000000,47.797146000000,-4.372932000000,,Penmarc'h - Finistère,49536,observation-1fcf645e-fc95-4f86-a63d-05291d380ac8-5,https://biolit.fr/observations/observation-1fcf645e-fc95-4f86-a63d-05291d380ac8-5/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1070192.JPG,,TRUE, +N1,60571,sortie-56fe9fa9-56ba-4a11-9146-82c97cb7e9d4,https://biolit.fr/sorties/sortie-56fe9fa9-56ba-4a11-9146-82c97cb7e9d4/,Phil,,4/16/2017 0:00,12.0000000,12.000005,47.896558000000,-3.97420600000,,La Forêt-Fouesnant - Finistère,49538,observation-56fe9fa9-56ba-4a11-9146-82c97cb7e9d4,https://biolit.fr/observations/observation-56fe9fa9-56ba-4a11-9146-82c97cb7e9d4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170416_122110.jpg,,FALSE, +N1,60571,sortie-56fe9fa9-56ba-4a11-9146-82c97cb7e9d4,https://biolit.fr/sorties/sortie-56fe9fa9-56ba-4a11-9146-82c97cb7e9d4/,Phil,,4/16/2017 0:00,12.0000000,12.000005,47.896558000000,-3.97420600000,,La Forêt-Fouesnant - Finistère,49540,observation-56fe9fa9-56ba-4a11-9146-82c97cb7e9d4-2,https://biolit.fr/observations/observation-56fe9fa9-56ba-4a11-9146-82c97cb7e9d4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170416_122127.jpg,,FALSE, +N1,60572,sortie-a7c61234-f44c-4ea1-9d02-ccda09d400fa,https://biolit.fr/sorties/sortie-a7c61234-f44c-4ea1-9d02-ccda09d400fa/,azelie,,04/10/2017,17.0000000,17.0000000,49.85299900000,0.596033000000,,Veulettes-sur-mer,49542,observation-a7c61234-f44c-4ea1-9d02-ccda09d400fa,https://biolit.fr/observations/observation-a7c61234-f44c-4ea1-9d02-ccda09d400fa/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4024_0-scaled.jpg,,FALSE, +N1,60572,sortie-a7c61234-f44c-4ea1-9d02-ccda09d400fa,https://biolit.fr/sorties/sortie-a7c61234-f44c-4ea1-9d02-ccda09d400fa/,azelie,,04/10/2017,17.0000000,17.0000000,49.85299900000,0.596033000000,,Veulettes-sur-mer,49544,observation-a7c61234-f44c-4ea1-9d02-ccda09d400fa-2,https://biolit.fr/observations/observation-a7c61234-f44c-4ea1-9d02-ccda09d400fa-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4027-scaled.jpg,,FALSE, +N1,60572,sortie-a7c61234-f44c-4ea1-9d02-ccda09d400fa,https://biolit.fr/sorties/sortie-a7c61234-f44c-4ea1-9d02-ccda09d400fa/,azelie,,04/10/2017,17.0000000,17.0000000,49.85299900000,0.596033000000,,Veulettes-sur-mer,49546,observation-a7c61234-f44c-4ea1-9d02-ccda09d400fa-3,https://biolit.fr/observations/observation-a7c61234-f44c-4ea1-9d02-ccda09d400fa-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4028-scaled.jpg,,FALSE, +N1,60572,sortie-a7c61234-f44c-4ea1-9d02-ccda09d400fa,https://biolit.fr/sorties/sortie-a7c61234-f44c-4ea1-9d02-ccda09d400fa/,azelie,,04/10/2017,17.0000000,17.0000000,49.85299900000,0.596033000000,,Veulettes-sur-mer,49548,observation-a7c61234-f44c-4ea1-9d02-ccda09d400fa-4,https://biolit.fr/observations/observation-a7c61234-f44c-4ea1-9d02-ccda09d400fa-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_4031-rotated.jpg,,TRUE, +N1,60572,sortie-a7c61234-f44c-4ea1-9d02-ccda09d400fa,https://biolit.fr/sorties/sortie-a7c61234-f44c-4ea1-9d02-ccda09d400fa/,azelie,,04/10/2017,17.0000000,17.0000000,49.85299900000,0.596033000000,,Veulettes-sur-mer,49550,observation-a7c61234-f44c-4ea1-9d02-ccda09d400fa-5,https://biolit.fr/observations/observation-a7c61234-f44c-4ea1-9d02-ccda09d400fa-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4033-rotated.jpg,,FALSE, +N1,60573,sortie-e58d5292-4c35-42f2-b374-33bcd80bd827,https://biolit.fr/sorties/sortie-e58d5292-4c35-42f2-b374-33bcd80bd827/,azelie,,04/12/2017,15.0000000,15.0:45,50.188823000000,1.631989000000,,Saint-Valéry-sur-Somme,49552,observation-e58d5292-4c35-42f2-b374-33bcd80bd827,https://biolit.fr/observations/observation-e58d5292-4c35-42f2-b374-33bcd80bd827/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4053-scaled.jpg,,FALSE, +N1,60573,sortie-e58d5292-4c35-42f2-b374-33bcd80bd827,https://biolit.fr/sorties/sortie-e58d5292-4c35-42f2-b374-33bcd80bd827/,azelie,,04/12/2017,15.0000000,15.0:45,50.188823000000,1.631989000000,,Saint-Valéry-sur-Somme,49554,observation-e58d5292-4c35-42f2-b374-33bcd80bd827-2,https://biolit.fr/observations/observation-e58d5292-4c35-42f2-b374-33bcd80bd827-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4054-scaled.jpg,,FALSE, +N1,60574,sortie-d04ba03e-453f-4b71-94ad-84bcbf8d07e9,https://biolit.fr/sorties/sortie-d04ba03e-453f-4b71-94ad-84bcbf8d07e9/,azelie,,04/09/2017,10.0:45,11.0000000,49.73998400000,0.309102000000,,Yport,49556,observation-d04ba03e-453f-4b71-94ad-84bcbf8d07e9,https://biolit.fr/observations/observation-d04ba03e-453f-4b71-94ad-84bcbf8d07e9/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2066-scaled.jpg,,TRUE, +N1,60575,sortie-fd76c297-1476-4383-bff4-e4c2ab901596,https://biolit.fr/sorties/sortie-fd76c297-1476-4383-bff4-e4c2ab901596/,Phil,,3/13/2017 0:00,14.0000000,14.0:25,47.85766500000,-3.904897000000,,Concarneau - Finistère,49558,observation-fd76c297-1476-4383-bff4-e4c2ab901596,https://biolit.fr/observations/observation-fd76c297-1476-4383-bff4-e4c2ab901596/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060750.JPG,,FALSE, +N1,60575,sortie-fd76c297-1476-4383-bff4-e4c2ab901596,https://biolit.fr/sorties/sortie-fd76c297-1476-4383-bff4-e4c2ab901596/,Phil,,3/13/2017 0:00,14.0000000,14.0:25,47.85766500000,-3.904897000000,,Concarneau - Finistère,49560,observation-fd76c297-1476-4383-bff4-e4c2ab901596-2,https://biolit.fr/observations/observation-fd76c297-1476-4383-bff4-e4c2ab901596-2/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1060745.JPG,,TRUE, +N1,60575,sortie-fd76c297-1476-4383-bff4-e4c2ab901596,https://biolit.fr/sorties/sortie-fd76c297-1476-4383-bff4-e4c2ab901596/,Phil,,3/13/2017 0:00,14.0000000,14.0:25,47.85766500000,-3.904897000000,,Concarneau - Finistère,49562,observation-fd76c297-1476-4383-bff4-e4c2ab901596-3,https://biolit.fr/observations/observation-fd76c297-1476-4383-bff4-e4c2ab901596-3/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1060743.JPG,,TRUE, +N1,60575,sortie-fd76c297-1476-4383-bff4-e4c2ab901596,https://biolit.fr/sorties/sortie-fd76c297-1476-4383-bff4-e4c2ab901596/,Phil,,3/13/2017 0:00,14.0000000,14.0:25,47.85766500000,-3.904897000000,,Concarneau - Finistère,49564,observation-fd76c297-1476-4383-bff4-e4c2ab901596-4,https://biolit.fr/observations/observation-fd76c297-1476-4383-bff4-e4c2ab901596-4/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1060739.JPG,,TRUE, +N1,60576,sortie-a985cacf-902e-4d67-adc5-0ce022e5bec5,https://biolit.fr/sorties/sortie-a985cacf-902e-4d67-adc5-0ce022e5bec5/,Phil,,3/13/2017 0:00,13.0:35,13.0000000,47.855937000000,-3.921561000000,,Concarneau - Finistère,49566,observation-a985cacf-902e-4d67-adc5-0ce022e5bec5,https://biolit.fr/observations/observation-a985cacf-902e-4d67-adc5-0ce022e5bec5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060675.JPG,,FALSE, +N1,60576,sortie-a985cacf-902e-4d67-adc5-0ce022e5bec5,https://biolit.fr/sorties/sortie-a985cacf-902e-4d67-adc5-0ce022e5bec5/,Phil,,3/13/2017 0:00,13.0:35,13.0000000,47.855937000000,-3.921561000000,,Concarneau - Finistère,49568,observation-a985cacf-902e-4d67-adc5-0ce022e5bec5-2,https://biolit.fr/observations/observation-a985cacf-902e-4d67-adc5-0ce022e5bec5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060673.JPG,,FALSE, +N1,60576,sortie-a985cacf-902e-4d67-adc5-0ce022e5bec5,https://biolit.fr/sorties/sortie-a985cacf-902e-4d67-adc5-0ce022e5bec5/,Phil,,3/13/2017 0:00,13.0:35,13.0000000,47.855937000000,-3.921561000000,,Concarneau - Finistère,49570,observation-a985cacf-902e-4d67-adc5-0ce022e5bec5-3,https://biolit.fr/observations/observation-a985cacf-902e-4d67-adc5-0ce022e5bec5-3/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/P1060670.JPG,,TRUE, +N1,60576,sortie-a985cacf-902e-4d67-adc5-0ce022e5bec5,https://biolit.fr/sorties/sortie-a985cacf-902e-4d67-adc5-0ce022e5bec5/,Phil,,3/13/2017 0:00,13.0:35,13.0000000,47.855937000000,-3.921561000000,,Concarneau - Finistère,49572,observation-a985cacf-902e-4d67-adc5-0ce022e5bec5-4,https://biolit.fr/observations/observation-a985cacf-902e-4d67-adc5-0ce022e5bec5-4/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/P1060669.JPG,,TRUE, +N1,60577,sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10,https://biolit.fr/sorties/sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214928000000,5.342761000000,,Anse de la maronaise,49574,observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10,https://biolit.fr/observations/observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/P4120226-scaled.jpg,,TRUE, +N1,60577,sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10,https://biolit.fr/sorties/sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214928000000,5.342761000000,,Anse de la maronaise,49576,observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-2,https://biolit.fr/observations/observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-2/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/P4120228-scaled.jpg,,TRUE, +N1,60577,sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10,https://biolit.fr/sorties/sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214928000000,5.342761000000,,Anse de la maronaise,49578,observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-3,https://biolit.fr/observations/observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-3/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/P4120229-scaled.jpg,,TRUE, +N1,60577,sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10,https://biolit.fr/sorties/sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214928000000,5.342761000000,,Anse de la maronaise,49580,observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-4,https://biolit.fr/observations/observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-4/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/P4120230-scaled.jpg,,TRUE, +N1,60577,sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10,https://biolit.fr/sorties/sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214928000000,5.342761000000,,Anse de la maronaise,49582,observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-5,https://biolit.fr/observations/observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-5/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/P4120232-scaled.jpg,,TRUE, +N1,60577,sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10,https://biolit.fr/sorties/sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214928000000,5.342761000000,,Anse de la maronaise,49584,observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-6,https://biolit.fr/observations/observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-6/,Xantho poressa,Xanthe de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/P4120233-scaled.jpg,,TRUE, +N1,60577,sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10,https://biolit.fr/sorties/sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214928000000,5.342761000000,,Anse de la maronaise,49586,observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-7,https://biolit.fr/observations/observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-7/,Xantho poressa,Xanthe de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/P4120234-scaled.jpg,,TRUE, +N1,60577,sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10,https://biolit.fr/sorties/sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214928000000,5.342761000000,,Anse de la maronaise,49588,observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-8,https://biolit.fr/observations/observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-8/,Ulva spp.,Ulve rigide,,https://biolit.fr/wp-content/uploads/2023/07/P4120235-scaled.jpg,,TRUE, +N1,60577,sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10,https://biolit.fr/sorties/sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214928000000,5.342761000000,,Anse de la maronaise,49590,observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-9,https://biolit.fr/observations/observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P4120236-scaled.jpg,,FALSE, +N1,60577,sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10,https://biolit.fr/sorties/sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214928000000,5.342761000000,,Anse de la maronaise,49592,observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-10,https://biolit.fr/observations/observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-10/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/P4120238-scaled.jpg,,TRUE, +N1,60577,sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10,https://biolit.fr/sorties/sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214928000000,5.342761000000,,Anse de la maronaise,49594,observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-11,https://biolit.fr/observations/observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-11/,Ligia italica,Ligie italienne,,https://biolit.fr/wp-content/uploads/2023/07/P4120241-scaled.jpg,,TRUE, +N1,60577,sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10,https://biolit.fr/sorties/sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214928000000,5.342761000000,,Anse de la maronaise,49596,observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-12,https://biolit.fr/observations/observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-12/,Ligia italica,Ligie italienne,,https://biolit.fr/wp-content/uploads/2023/07/P4120242-scaled.jpg,,TRUE, +N1,60577,sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10,https://biolit.fr/sorties/sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214928000000,5.342761000000,,Anse de la maronaise,49598,observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-13,https://biolit.fr/observations/observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-13/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/P4120244-scaled.jpg,,TRUE, +N1,60577,sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10,https://biolit.fr/sorties/sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214928000000,5.342761000000,,Anse de la maronaise,49600,observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-14,https://biolit.fr/observations/observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-14/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/P4120245-scaled.jpg,,TRUE, +N1,60577,sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10,https://biolit.fr/sorties/sortie-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10/,NVanzu,,04/12/2017,14.0000000,15.0000000,43.214928000000,5.342761000000,,Anse de la maronaise,49602,observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-15,https://biolit.fr/observations/observation-e60ab05b-ced8-4c2e-8bd1-7b87f0f5ed10-15/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/P4120247-scaled.jpg,,TRUE, +N1,60578,sortie-3d619949-d389-4016-9ab2-5e6558ae43f2,https://biolit.fr/sorties/sortie-3d619949-d389-4016-9ab2-5e6558ae43f2/,ludovic,,04/12/2017,15.0000000,16.0000000,43.21482200000,5.342955000000,,Anse de la Maronaise,49606,observation-3d619949-d389-4016-9ab2-5e6558ae43f2,https://biolit.fr/observations/observation-3d619949-d389-4016-9ab2-5e6558ae43f2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0184-scaled.jpg,,FALSE, +N1,60578,sortie-3d619949-d389-4016-9ab2-5e6558ae43f2,https://biolit.fr/sorties/sortie-3d619949-d389-4016-9ab2-5e6558ae43f2/,ludovic,,04/12/2017,15.0000000,16.0000000,43.21482200000,5.342955000000,,Anse de la Maronaise,49608,observation-3d619949-d389-4016-9ab2-5e6558ae43f2-2,https://biolit.fr/observations/observation-3d619949-d389-4016-9ab2-5e6558ae43f2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0185-scaled.jpg,,FALSE, +N1,60578,sortie-3d619949-d389-4016-9ab2-5e6558ae43f2,https://biolit.fr/sorties/sortie-3d619949-d389-4016-9ab2-5e6558ae43f2/,ludovic,,04/12/2017,15.0000000,16.0000000,43.21482200000,5.342955000000,,Anse de la Maronaise,49610,observation-3d619949-d389-4016-9ab2-5e6558ae43f2-3,https://biolit.fr/observations/observation-3d619949-d389-4016-9ab2-5e6558ae43f2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0187-scaled.jpg,,FALSE, +N1,60578,sortie-3d619949-d389-4016-9ab2-5e6558ae43f2,https://biolit.fr/sorties/sortie-3d619949-d389-4016-9ab2-5e6558ae43f2/,ludovic,,04/12/2017,15.0000000,16.0000000,43.21482200000,5.342955000000,,Anse de la Maronaise,49612,observation-3d619949-d389-4016-9ab2-5e6558ae43f2-4,https://biolit.fr/observations/observation-3d619949-d389-4016-9ab2-5e6558ae43f2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0188-scaled.jpg,,FALSE, +N1,60578,sortie-3d619949-d389-4016-9ab2-5e6558ae43f2,https://biolit.fr/sorties/sortie-3d619949-d389-4016-9ab2-5e6558ae43f2/,ludovic,,04/12/2017,15.0000000,16.0000000,43.21482200000,5.342955000000,,Anse de la Maronaise,49614,observation-3d619949-d389-4016-9ab2-5e6558ae43f2-5,https://biolit.fr/observations/observation-3d619949-d389-4016-9ab2-5e6558ae43f2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0190-scaled.jpg,,FALSE, +N1,60579,sortie-b66edf50-090f-49e9-8784-3809d523bf6a,https://biolit.fr/sorties/sortie-b66edf50-090f-49e9-8784-3809d523bf6a/,ludovic,,04/12/2017,15.0000000,16.0000000,43.214936000000,5.342896000000,,Anse de la Maronaise,49616,observation-b66edf50-090f-49e9-8784-3809d523bf6a,https://biolit.fr/observations/observation-b66edf50-090f-49e9-8784-3809d523bf6a/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0191-scaled.jpg,,FALSE, +N1,60579,sortie-b66edf50-090f-49e9-8784-3809d523bf6a,https://biolit.fr/sorties/sortie-b66edf50-090f-49e9-8784-3809d523bf6a/,ludovic,,04/12/2017,15.0000000,16.0000000,43.214936000000,5.342896000000,,Anse de la Maronaise,49618,observation-b66edf50-090f-49e9-8784-3809d523bf6a-2,https://biolit.fr/observations/observation-b66edf50-090f-49e9-8784-3809d523bf6a-2/,Talochlamys multistriata,Pétoncle strié,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0192_0-scaled.jpg,,TRUE, +N1,60579,sortie-b66edf50-090f-49e9-8784-3809d523bf6a,https://biolit.fr/sorties/sortie-b66edf50-090f-49e9-8784-3809d523bf6a/,ludovic,,04/12/2017,15.0000000,16.0000000,43.214936000000,5.342896000000,,Anse de la Maronaise,49620,observation-b66edf50-090f-49e9-8784-3809d523bf6a-3,https://biolit.fr/observations/observation-b66edf50-090f-49e9-8784-3809d523bf6a-3/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0195_0-scaled.jpg,,TRUE, +N1,60579,sortie-b66edf50-090f-49e9-8784-3809d523bf6a,https://biolit.fr/sorties/sortie-b66edf50-090f-49e9-8784-3809d523bf6a/,ludovic,,04/12/2017,15.0000000,16.0000000,43.214936000000,5.342896000000,,Anse de la Maronaise,49622,observation-b66edf50-090f-49e9-8784-3809d523bf6a-4,https://biolit.fr/observations/observation-b66edf50-090f-49e9-8784-3809d523bf6a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0197_0-scaled.jpg,,FALSE, +N1,60580,sortie-81d48bab-c5e1-4e84-9686-fc93e8219a2f,https://biolit.fr/sorties/sortie-81d48bab-c5e1-4e84-9686-fc93e8219a2f/,ludovic,,04/12/2017,15.0000000,16.0000000,43.214860000000,5.342998000000,,Anse de la Maronaise,49624,observation-81d48bab-c5e1-4e84-9686-fc93e8219a2f,https://biolit.fr/observations/observation-81d48bab-c5e1-4e84-9686-fc93e8219a2f/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0198_0-scaled.jpg,,FALSE, +N1,60580,sortie-81d48bab-c5e1-4e84-9686-fc93e8219a2f,https://biolit.fr/sorties/sortie-81d48bab-c5e1-4e84-9686-fc93e8219a2f/,ludovic,,04/12/2017,15.0000000,16.0000000,43.214860000000,5.342998000000,,Anse de la Maronaise,49626,observation-81d48bab-c5e1-4e84-9686-fc93e8219a2f-2,https://biolit.fr/observations/observation-81d48bab-c5e1-4e84-9686-fc93e8219a2f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0199_0-scaled.jpg,,FALSE, +N1,60580,sortie-81d48bab-c5e1-4e84-9686-fc93e8219a2f,https://biolit.fr/sorties/sortie-81d48bab-c5e1-4e84-9686-fc93e8219a2f/,ludovic,,04/12/2017,15.0000000,16.0000000,43.214860000000,5.342998000000,,Anse de la Maronaise,49628,observation-81d48bab-c5e1-4e84-9686-fc93e8219a2f-3,https://biolit.fr/observations/observation-81d48bab-c5e1-4e84-9686-fc93e8219a2f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0201_0-scaled.jpg,,FALSE, +N1,60581,sortie-13591051-5f7f-4382-8ee0-44cdc79adbbc,https://biolit.fr/sorties/sortie-13591051-5f7f-4382-8ee0-44cdc79adbbc/,ludovic,,04/12/2017,15.0000000,16.0000000,43.214852000000,5.342977000000,,Anse de la Maronaise,49630,observation-13591051-5f7f-4382-8ee0-44cdc79adbbc,https://biolit.fr/observations/observation-13591051-5f7f-4382-8ee0-44cdc79adbbc/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0201_1-scaled.jpg,,FALSE, +N1,60581,sortie-13591051-5f7f-4382-8ee0-44cdc79adbbc,https://biolit.fr/sorties/sortie-13591051-5f7f-4382-8ee0-44cdc79adbbc/,ludovic,,04/12/2017,15.0000000,16.0000000,43.214852000000,5.342977000000,,Anse de la Maronaise,49632,observation-13591051-5f7f-4382-8ee0-44cdc79adbbc-2,https://biolit.fr/observations/observation-13591051-5f7f-4382-8ee0-44cdc79adbbc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0202_0-scaled.jpg,,FALSE, +N1,60581,sortie-13591051-5f7f-4382-8ee0-44cdc79adbbc,https://biolit.fr/sorties/sortie-13591051-5f7f-4382-8ee0-44cdc79adbbc/,ludovic,,04/12/2017,15.0000000,16.0000000,43.214852000000,5.342977000000,,Anse de la Maronaise,49634,observation-13591051-5f7f-4382-8ee0-44cdc79adbbc-3,https://biolit.fr/observations/observation-13591051-5f7f-4382-8ee0-44cdc79adbbc-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0206_0-scaled.jpg,,FALSE, +N1,60582,sortie-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8,https://biolit.fr/sorties/sortie-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8/,Phil,,3/27/2017 0:00,10.0:55,11.000005,47.856554000000,-3.919771000000,,Concarneau - Finistère,49636,observation-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8,https://biolit.fr/observations/observation-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060781.JPG,,FALSE, +N1,60582,sortie-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8,https://biolit.fr/sorties/sortie-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8/,Phil,,3/27/2017 0:00,10.0:55,11.000005,47.856554000000,-3.919771000000,,Concarneau - Finistère,49638,observation-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8-2,https://biolit.fr/observations/observation-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060783.JPG,,FALSE, +N1,60582,sortie-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8,https://biolit.fr/sorties/sortie-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8/,Phil,,3/27/2017 0:00,10.0:55,11.000005,47.856554000000,-3.919771000000,,Concarneau - Finistère,49640,observation-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8-3,https://biolit.fr/observations/observation-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060795.JPG,,FALSE, +N1,60582,sortie-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8,https://biolit.fr/sorties/sortie-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8/,Phil,,3/27/2017 0:00,10.0:55,11.000005,47.856554000000,-3.919771000000,,Concarneau - Finistère,49642,observation-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8-4,https://biolit.fr/observations/observation-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060792.JPG,,FALSE, +N1,60582,sortie-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8,https://biolit.fr/sorties/sortie-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8/,Phil,,3/27/2017 0:00,10.0:55,11.000005,47.856554000000,-3.919771000000,,Concarneau - Finistère,49644,observation-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8-5,https://biolit.fr/observations/observation-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060787.JPG,,FALSE, +N1,60582,sortie-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8,https://biolit.fr/sorties/sortie-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8/,Phil,,3/27/2017 0:00,10.0:55,11.000005,47.856554000000,-3.919771000000,,Concarneau - Finistère,49646,observation-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8-6,https://biolit.fr/observations/observation-e5fd86a0-2772-4b9b-ab2c-6252a00e06f8-6/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060786.JPG,,TRUE, +N1,60583,sortie-54ade537-8d3c-4e3d-9b3c-8747e7dbdcaa,https://biolit.fr/sorties/sortie-54ade537-8d3c-4e3d-9b3c-8747e7dbdcaa/,Phil,,3/13/2017 0:00,13.0:35,13.0000000,47.85681800000,-3.919501000000,,Concarneau - Finistère,49648,observation-54ade537-8d3c-4e3d-9b3c-8747e7dbdcaa,https://biolit.fr/observations/observation-54ade537-8d3c-4e3d-9b3c-8747e7dbdcaa/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060666.JPG,,FALSE, +N1,60583,sortie-54ade537-8d3c-4e3d-9b3c-8747e7dbdcaa,https://biolit.fr/sorties/sortie-54ade537-8d3c-4e3d-9b3c-8747e7dbdcaa/,Phil,,3/13/2017 0:00,13.0:35,13.0000000,47.85681800000,-3.919501000000,,Concarneau - Finistère,49650,observation-54ade537-8d3c-4e3d-9b3c-8747e7dbdcaa-2,https://biolit.fr/observations/observation-54ade537-8d3c-4e3d-9b3c-8747e7dbdcaa-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060660.JPG,,FALSE, +N1,60583,sortie-54ade537-8d3c-4e3d-9b3c-8747e7dbdcaa,https://biolit.fr/sorties/sortie-54ade537-8d3c-4e3d-9b3c-8747e7dbdcaa/,Phil,,3/13/2017 0:00,13.0:35,13.0000000,47.85681800000,-3.919501000000,,Concarneau - Finistère,49652,observation-54ade537-8d3c-4e3d-9b3c-8747e7dbdcaa-3,https://biolit.fr/observations/observation-54ade537-8d3c-4e3d-9b3c-8747e7dbdcaa-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060662.JPG,,FALSE, +N1,60583,sortie-54ade537-8d3c-4e3d-9b3c-8747e7dbdcaa,https://biolit.fr/sorties/sortie-54ade537-8d3c-4e3d-9b3c-8747e7dbdcaa/,Phil,,3/13/2017 0:00,13.0:35,13.0000000,47.85681800000,-3.919501000000,,Concarneau - Finistère,49654,observation-54ade537-8d3c-4e3d-9b3c-8747e7dbdcaa-4,https://biolit.fr/observations/observation-54ade537-8d3c-4e3d-9b3c-8747e7dbdcaa-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060657_0.JPG,,FALSE, +N1,60584,sortie-0a4406a9-8280-4e51-bd40-f9894d1777ba,https://biolit.fr/sorties/sortie-0a4406a9-8280-4e51-bd40-f9894d1777ba/,Phil,,03/06/2017,17.0:55,18.0000000,47.844455000000,-4.042007000000,,Mousterlin - Finistère,49656,observation-0a4406a9-8280-4e51-bd40-f9894d1777ba,https://biolit.fr/observations/observation-0a4406a9-8280-4e51-bd40-f9894d1777ba/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060591.JPG,,FALSE, +N1,60584,sortie-0a4406a9-8280-4e51-bd40-f9894d1777ba,https://biolit.fr/sorties/sortie-0a4406a9-8280-4e51-bd40-f9894d1777ba/,Phil,,03/06/2017,17.0:55,18.0000000,47.844455000000,-4.042007000000,,Mousterlin - Finistère,49658,observation-0a4406a9-8280-4e51-bd40-f9894d1777ba-2,https://biolit.fr/observations/observation-0a4406a9-8280-4e51-bd40-f9894d1777ba-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060596.JPG,,FALSE, +N1,60584,sortie-0a4406a9-8280-4e51-bd40-f9894d1777ba,https://biolit.fr/sorties/sortie-0a4406a9-8280-4e51-bd40-f9894d1777ba/,Phil,,03/06/2017,17.0:55,18.0000000,47.844455000000,-4.042007000000,,Mousterlin - Finistère,49660,observation-0a4406a9-8280-4e51-bd40-f9894d1777ba-3,https://biolit.fr/observations/observation-0a4406a9-8280-4e51-bd40-f9894d1777ba-3/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1060598.JPG,,TRUE, +N1,60585,sortie-8af73351-ed5f-43ab-8f8a-5513182bcbd2,https://biolit.fr/sorties/sortie-8af73351-ed5f-43ab-8f8a-5513182bcbd2/,ludovic,,04/05/2017,15.0000000,16.0000000,43.232432000000,5.353707000000,,Madrague de Montredon,49662,observation-8af73351-ed5f-43ab-8f8a-5513182bcbd2,https://biolit.fr/observations/observation-8af73351-ed5f-43ab-8f8a-5513182bcbd2/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1236-scaled.jpg,,TRUE, +N1,60585,sortie-8af73351-ed5f-43ab-8f8a-5513182bcbd2,https://biolit.fr/sorties/sortie-8af73351-ed5f-43ab-8f8a-5513182bcbd2/,ludovic,,04/05/2017,15.0000000,16.0000000,43.232432000000,5.353707000000,,Madrague de Montredon,49664,observation-8af73351-ed5f-43ab-8f8a-5513182bcbd2-2,https://biolit.fr/observations/observation-8af73351-ed5f-43ab-8f8a-5513182bcbd2-2/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1237-scaled.jpg,,TRUE, +N1,60585,sortie-8af73351-ed5f-43ab-8f8a-5513182bcbd2,https://biolit.fr/sorties/sortie-8af73351-ed5f-43ab-8f8a-5513182bcbd2/,ludovic,,04/05/2017,15.0000000,16.0000000,43.232432000000,5.353707000000,,Madrague de Montredon,49666,observation-8af73351-ed5f-43ab-8f8a-5513182bcbd2-3,https://biolit.fr/observations/observation-8af73351-ed5f-43ab-8f8a-5513182bcbd2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1238-scaled.jpg,,FALSE, +N1,60585,sortie-8af73351-ed5f-43ab-8f8a-5513182bcbd2,https://biolit.fr/sorties/sortie-8af73351-ed5f-43ab-8f8a-5513182bcbd2/,ludovic,,04/05/2017,15.0000000,16.0000000,43.232432000000,5.353707000000,,Madrague de Montredon,49668,observation-8af73351-ed5f-43ab-8f8a-5513182bcbd2-4,https://biolit.fr/observations/observation-8af73351-ed5f-43ab-8f8a-5513182bcbd2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1239-scaled.jpg,,FALSE, +N1,60585,sortie-8af73351-ed5f-43ab-8f8a-5513182bcbd2,https://biolit.fr/sorties/sortie-8af73351-ed5f-43ab-8f8a-5513182bcbd2/,ludovic,,04/05/2017,15.0000000,16.0000000,43.232432000000,5.353707000000,,Madrague de Montredon,49670,observation-8af73351-ed5f-43ab-8f8a-5513182bcbd2-5,https://biolit.fr/observations/observation-8af73351-ed5f-43ab-8f8a-5513182bcbd2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1240-scaled.jpg,,FALSE, +N1,60585,sortie-8af73351-ed5f-43ab-8f8a-5513182bcbd2,https://biolit.fr/sorties/sortie-8af73351-ed5f-43ab-8f8a-5513182bcbd2/,ludovic,,04/05/2017,15.0000000,16.0000000,43.232432000000,5.353707000000,,Madrague de Montredon,49672,observation-8af73351-ed5f-43ab-8f8a-5513182bcbd2-6,https://biolit.fr/observations/observation-8af73351-ed5f-43ab-8f8a-5513182bcbd2-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1241-scaled.jpg,,FALSE, +N1,60585,sortie-8af73351-ed5f-43ab-8f8a-5513182bcbd2,https://biolit.fr/sorties/sortie-8af73351-ed5f-43ab-8f8a-5513182bcbd2/,ludovic,,04/05/2017,15.0000000,16.0000000,43.232432000000,5.353707000000,,Madrague de Montredon,49674,observation-8af73351-ed5f-43ab-8f8a-5513182bcbd2-7,https://biolit.fr/observations/observation-8af73351-ed5f-43ab-8f8a-5513182bcbd2-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1242-scaled.jpg,,FALSE, +N1,60586,sortie-4d98d929-5b9b-415c-b78d-5a68f52e92da,https://biolit.fr/sorties/sortie-4d98d929-5b9b-415c-b78d-5a68f52e92da/,ludovic,,04/05/2017,11.0000000,12.0000000,43.357617000000,5.29021200000,,plages de Corbière,49676,observation-4d98d929-5b9b-415c-b78d-5a68f52e92da,https://biolit.fr/observations/observation-4d98d929-5b9b-415c-b78d-5a68f52e92da/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1192-scaled.jpg,,FALSE, +N1,60586,sortie-4d98d929-5b9b-415c-b78d-5a68f52e92da,https://biolit.fr/sorties/sortie-4d98d929-5b9b-415c-b78d-5a68f52e92da/,ludovic,,04/05/2017,11.0000000,12.0000000,43.357617000000,5.29021200000,,plages de Corbière,49678,observation-4d98d929-5b9b-415c-b78d-5a68f52e92da-2,https://biolit.fr/observations/observation-4d98d929-5b9b-415c-b78d-5a68f52e92da-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1193-scaled.jpg,,FALSE, +N1,60587,sortie-c1a5f7ef-ac1d-4360-9568-a091d1997a7a,https://biolit.fr/sorties/sortie-c1a5f7ef-ac1d-4360-9568-a091d1997a7a/,Phil,,3/23/2017 0:00,13.0:45,13.0000000,47.947043000000,-4.410847000000,,Pouldreuzic - Finistère,49680,observation-c1a5f7ef-ac1d-4360-9568-a091d1997a7a,https://biolit.fr/observations/observation-c1a5f7ef-ac1d-4360-9568-a091d1997a7a/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170323_134436.jpg,,FALSE, +N1,60587,sortie-c1a5f7ef-ac1d-4360-9568-a091d1997a7a,https://biolit.fr/sorties/sortie-c1a5f7ef-ac1d-4360-9568-a091d1997a7a/,Phil,,3/23/2017 0:00,13.0:45,13.0000000,47.947043000000,-4.410847000000,,Pouldreuzic - Finistère,49682,observation-c1a5f7ef-ac1d-4360-9568-a091d1997a7a-2,https://biolit.fr/observations/observation-c1a5f7ef-ac1d-4360-9568-a091d1997a7a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170323_134602.jpg,,FALSE, +N1,60588,sortie-e3631a93-e412-4e72-8006-375d14823037,https://biolit.fr/sorties/sortie-e3631a93-e412-4e72-8006-375d14823037/,Phil,,2/21/2017 0:00,17.0000000,17.0:15,48.092324000000,-4.297040000000,,Douarnenez - Finistère,49684,observation-e3631a93-e412-4e72-8006-375d14823037,https://biolit.fr/observations/observation-e3631a93-e412-4e72-8006-375d14823037/,Lutraria lutraria,Lutraire elliptique,,https://biolit.fr/wp-content/uploads/2023/07/P1060196.JPG,,TRUE, +N1,60588,sortie-e3631a93-e412-4e72-8006-375d14823037,https://biolit.fr/sorties/sortie-e3631a93-e412-4e72-8006-375d14823037/,Phil,,2/21/2017 0:00,17.0000000,17.0:15,48.092324000000,-4.297040000000,,Douarnenez - Finistère,49686,observation-e3631a93-e412-4e72-8006-375d14823037-2,https://biolit.fr/observations/observation-e3631a93-e412-4e72-8006-375d14823037-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060194.JPG,,FALSE, +N1,60589,sortie-c6ecaa5d-7ac7-4a68-a2c4-32aaab5404c2,https://biolit.fr/sorties/sortie-c6ecaa5d-7ac7-4a68-a2c4-32aaab5404c2/,Phil,,3/27/2017 0:00,10.0:55,11.0000000,47.853408000000,-3.91352300000,,Concarneau - Finistère,49688,observation-c6ecaa5d-7ac7-4a68-a2c4-32aaab5404c2,https://biolit.fr/observations/observation-c6ecaa5d-7ac7-4a68-a2c4-32aaab5404c2/,Idotea balthica,Idotée de la Baltique,,https://biolit.fr/wp-content/uploads/2023/07/P1060772.JPG,,TRUE, +N1,60589,sortie-c6ecaa5d-7ac7-4a68-a2c4-32aaab5404c2,https://biolit.fr/sorties/sortie-c6ecaa5d-7ac7-4a68-a2c4-32aaab5404c2/,Phil,,3/27/2017 0:00,10.0:55,11.0000000,47.853408000000,-3.91352300000,,Concarneau - Finistère,49690,observation-c6ecaa5d-7ac7-4a68-a2c4-32aaab5404c2-2,https://biolit.fr/observations/observation-c6ecaa5d-7ac7-4a68-a2c4-32aaab5404c2-2/,Idotea balthica,Idotée de la Baltique,,https://biolit.fr/wp-content/uploads/2023/07/P1060779.JPG,,TRUE, +N1,60589,sortie-c6ecaa5d-7ac7-4a68-a2c4-32aaab5404c2,https://biolit.fr/sorties/sortie-c6ecaa5d-7ac7-4a68-a2c4-32aaab5404c2/,Phil,,3/27/2017 0:00,10.0:55,11.0000000,47.853408000000,-3.91352300000,,Concarneau - Finistère,49692,observation-c6ecaa5d-7ac7-4a68-a2c4-32aaab5404c2-3,https://biolit.fr/observations/observation-c6ecaa5d-7ac7-4a68-a2c4-32aaab5404c2-3/,Idotea balthica,Idotée de la Baltique,,https://biolit.fr/wp-content/uploads/2023/07/P1060767.JPG,,TRUE, +N1,60589,sortie-c6ecaa5d-7ac7-4a68-a2c4-32aaab5404c2,https://biolit.fr/sorties/sortie-c6ecaa5d-7ac7-4a68-a2c4-32aaab5404c2/,Phil,,3/27/2017 0:00,10.0:55,11.0000000,47.853408000000,-3.91352300000,,Concarneau - Finistère,49694,observation-c6ecaa5d-7ac7-4a68-a2c4-32aaab5404c2-4,https://biolit.fr/observations/observation-c6ecaa5d-7ac7-4a68-a2c4-32aaab5404c2-4/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1060766.JPG,,TRUE, +N1,60590,sortie-7bda593f-2533-49c0-b65b-8de3ab541866,https://biolit.fr/sorties/sortie-7bda593f-2533-49c0-b65b-8de3ab541866/,Phil,,03/06/2017,17.0000000,17.0:55,47.842352000000,-4.044900000000,,Mousterlin - Finistère,49696,observation-7bda593f-2533-49c0-b65b-8de3ab541866,https://biolit.fr/observations/observation-7bda593f-2533-49c0-b65b-8de3ab541866/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1060583.JPG,,TRUE, +N1,60590,sortie-7bda593f-2533-49c0-b65b-8de3ab541866,https://biolit.fr/sorties/sortie-7bda593f-2533-49c0-b65b-8de3ab541866/,Phil,,03/06/2017,17.0000000,17.0:55,47.842352000000,-4.044900000000,,Mousterlin - Finistère,49698,observation-7bda593f-2533-49c0-b65b-8de3ab541866-2,https://biolit.fr/observations/observation-7bda593f-2533-49c0-b65b-8de3ab541866-2/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/P1060589.JPG,,TRUE, +N1,60591,sortie-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6,https://biolit.fr/sorties/sortie-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6/,Phil,,3/21/2017 0:00,12.0000000,12.0:15,43.405089000000,4.977075000000,,Port-de-Bouc Bouches-du-Rhône,49700,observation-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6,https://biolit.fr/observations/observation-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161127_141918.jpg,,FALSE, +N1,60591,sortie-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6,https://biolit.fr/sorties/sortie-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6/,Phil,,3/21/2017 0:00,12.0000000,12.0:15,43.405089000000,4.977075000000,,Port-de-Bouc Bouches-du-Rhône,49702,observation-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6-2,https://biolit.fr/observations/observation-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161127_142120.jpg,,FALSE, +N1,60591,sortie-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6,https://biolit.fr/sorties/sortie-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6/,Phil,,3/21/2017 0:00,12.0000000,12.0:15,43.405089000000,4.977075000000,,Port-de-Bouc Bouches-du-Rhône,49704,observation-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6-3,https://biolit.fr/observations/observation-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6-3/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/20161127_141930.jpg,,TRUE, +N1,60591,sortie-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6,https://biolit.fr/sorties/sortie-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6/,Phil,,3/21/2017 0:00,12.0000000,12.0:15,43.405089000000,4.977075000000,,Port-de-Bouc Bouches-du-Rhône,49706,observation-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6-4,https://biolit.fr/observations/observation-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161127_140750.jpg,,FALSE, +N1,60591,sortie-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6,https://biolit.fr/sorties/sortie-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6/,Phil,,3/21/2017 0:00,12.0000000,12.0:15,43.405089000000,4.977075000000,,Port-de-Bouc Bouches-du-Rhône,49708,observation-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6-5,https://biolit.fr/observations/observation-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6-5/,Euspira catena,Natice porte-chaîne,,https://biolit.fr/wp-content/uploads/2023/07/20161127_140616.jpg,,TRUE, +N1,60591,sortie-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6,https://biolit.fr/sorties/sortie-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6/,Phil,,3/21/2017 0:00,12.0000000,12.0:15,43.405089000000,4.977075000000,,Port-de-Bouc Bouches-du-Rhône,49710,observation-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6-6,https://biolit.fr/observations/observation-dd2ee8bf-b3ff-4a44-90dd-01c0ab96cfa6-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161127_140548.jpg,,FALSE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49712,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_7760-scaled.jpg,,FALSE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49714,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-2,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_7762-scaled.jpg,,FALSE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49716,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-3,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_7764-scaled.jpg,,FALSE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49718,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-4,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_7765-scaled.jpg,,FALSE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49720,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-5,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_7767-scaled.jpg,,FALSE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49722,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-6,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_7768-scaled.jpg,,FALSE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49724,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-7,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-7/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/100_7769-scaled.jpg,,TRUE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49726,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-8,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_7770-scaled.jpg,,FALSE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49728,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-9,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_7771-scaled.jpg,,FALSE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49730,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-10,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_7772-scaled.jpg,,FALSE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49732,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-11,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_7774-scaled.jpg,,FALSE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49734,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-12,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-12/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/100_7777-scaled.jpg,,TRUE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49736,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-13,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_7778-scaled.jpg,,FALSE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49738,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-14,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_7779-scaled.jpg,,FALSE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49740,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-15,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_7782-scaled.jpg,,FALSE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49742,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-16,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_7783-scaled.jpg,,FALSE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49744,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-17,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-17/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/100_7785-scaled.jpg,,TRUE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49746,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-18,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-18/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/100_7786-scaled.jpg,,TRUE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49748,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-19,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_7789-scaled.jpg,,FALSE, +N1,60592,sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6,https://biolit.fr/sorties/sortie-c5edd6cf-116a-48d7-9767-22bc19016eb6/,virginieavel,,04/05/2017,10.0000000,11.0:45,43.358715000000,5.293958000000,,"Plage de la lave, corbieres, Marseille",49750,observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-20,https://biolit.fr/observations/observation-c5edd6cf-116a-48d7-9767-22bc19016eb6-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_7793-scaled.jpg,,FALSE, +N1,60593,sortie-f0bc119a-90e3-4924-9fed-b0c489b85bfa,https://biolit.fr/sorties/sortie-f0bc119a-90e3-4924-9fed-b0c489b85bfa/,Marine,,04/05/2017,15.0000000,15.0:45,43.231769000000,5.355462000000,,Madrague montredon,49752,observation-f0bc119a-90e3-4924-9fed-b0c489b85bfa,https://biolit.fr/observations/observation-f0bc119a-90e3-4924-9fed-b0c489b85bfa/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2261-scaled.jpg,,FALSE, +N1,60594,sortie-c846a3c8-b212-40f3-8849-176c361719e5,https://biolit.fr/sorties/sortie-c846a3c8-b212-40f3-8849-176c361719e5/,RIEM,,04/02/2017,12.0:15,12.0:45,51.075784000000,2.476241000000,,PLAGE DUNE DEWULF,49754,observation-c846a3c8-b212-40f3-8849-176c361719e5,https://biolit.fr/observations/observation-c846a3c8-b212-40f3-8849-176c361719e5/,,,,https://biolit.fr/wp-content/uploads/2023/07/02-04-2017-dune-dewulf-12h45_web.jpg,,FALSE, +N1,60595,sortie-51b96286-2ae8-49ed-b532-ddbf94f975b4,https://biolit.fr/sorties/sortie-51b96286-2ae8-49ed-b532-ddbf94f975b4/,Ecole Eydoux CM2,,3/13/2017 0:00,10.0000000,12.0000000,43.279899000000,5.352283000000,,Marseille 13007 anse de maldormé,49756,observation-51b96286-2ae8-49ed-b532-ddbf94f975b4,https://biolit.fr/observations/observation-51b96286-2ae8-49ed-b532-ddbf94f975b4/,,,,https://biolit.fr/wp-content/uploads/2023/07/chiton olivaceus.JPG,,FALSE, +N1,60595,sortie-51b96286-2ae8-49ed-b532-ddbf94f975b4,https://biolit.fr/sorties/sortie-51b96286-2ae8-49ed-b532-ddbf94f975b4/,Ecole Eydoux CM2,,3/13/2017 0:00,10.0000000,12.0000000,43.279899000000,5.352283000000,,Marseille 13007 anse de maldormé,49758,observation-51b96286-2ae8-49ed-b532-ddbf94f975b4-2,https://biolit.fr/observations/observation-51b96286-2ae8-49ed-b532-ddbf94f975b4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/gibbula varia-scaled.jpg,,FALSE, +N1,60595,sortie-51b96286-2ae8-49ed-b532-ddbf94f975b4,https://biolit.fr/sorties/sortie-51b96286-2ae8-49ed-b532-ddbf94f975b4/,Ecole Eydoux CM2,,3/13/2017 0:00,10.0000000,12.0000000,43.279899000000,5.352283000000,,Marseille 13007 anse de maldormé,49760,observation-51b96286-2ae8-49ed-b532-ddbf94f975b4-3,https://biolit.fr/observations/observation-51b96286-2ae8-49ed-b532-ddbf94f975b4-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/pachygrapsus marmoratus ou crabe marbré.JPG,,FALSE, +N1,60595,sortie-51b96286-2ae8-49ed-b532-ddbf94f975b4,https://biolit.fr/sorties/sortie-51b96286-2ae8-49ed-b532-ddbf94f975b4/,Ecole Eydoux CM2,,3/13/2017 0:00,10.0000000,12.0000000,43.279899000000,5.352283000000,,Marseille 13007 anse de maldormé,49762,observation-51b96286-2ae8-49ed-b532-ddbf94f975b4-4,https://biolit.fr/observations/observation-51b96286-2ae8-49ed-b532-ddbf94f975b4-4/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/patella caerulea.JPG,,TRUE, +N1,60596,sortie-442f3a71-1155-4cc5-a355-c855be93d52c,https://biolit.fr/sorties/sortie-442f3a71-1155-4cc5-a355-c855be93d52c/,collège paul Eluard,,03/09/2017,14.0000000,15.0000000,50.691506000000,1.562863000000,,"Le Portel, Cap d'Alprech",49764,observation-442f3a71-1155-4cc5-a355-c855be93d52c,https://biolit.fr/observations/observation-442f3a71-1155-4cc5-a355-c855be93d52c/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/photo especes SG -scaled.jpg,,TRUE, +N1,60596,sortie-442f3a71-1155-4cc5-a355-c855be93d52c,https://biolit.fr/sorties/sortie-442f3a71-1155-4cc5-a355-c855be93d52c/,collège paul Eluard,,03/09/2017,14.0000000,15.0000000,50.691506000000,1.562863000000,,"Le Portel, Cap d'Alprech",49766,observation-442f3a71-1155-4cc5-a355-c855be93d52c-2,https://biolit.fr/observations/observation-442f3a71-1155-4cc5-a355-c855be93d52c-2/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/photo escpece Lilou-scaled.jpg,,TRUE, +N1,60597,sortie-d5ae3663-02d5-4444-b331-54401913042c,https://biolit.fr/sorties/sortie-d5ae3663-02d5-4444-b331-54401913042c/,collège paul Eluard,,03/09/2017,14.0000000,15.0000000,50.692043000000,1.562590000000,,"le portel,cap d'alpresch",49768,observation-d5ae3663-02d5-4444-b331-54401913042c,https://biolit.fr/observations/observation-d5ae3663-02d5-4444-b331-54401913042c/,,,,https://biolit.fr/wp-content/uploads/2023/07/ANIMAL NOAH -scaled.jpg,,FALSE, +N1,60598,sortie-7a634ada-e23c-4557-abc6-ec2cb19d10d7,https://biolit.fr/sorties/sortie-7a634ada-e23c-4557-abc6-ec2cb19d10d7/,collège paul Eluard,,03/09/2017,14.0000000,15.0000000,50.691993000000,1.562670000000,,"le portel , cap d alprech",49770,observation-7a634ada-e23c-4557-abc6-ec2cb19d10d7,https://biolit.fr/observations/observation-7a634ada-e23c-4557-abc6-ec2cb19d10d7/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/bigorneautheo-scaled.jpg,,TRUE, +N1,60598,sortie-7a634ada-e23c-4557-abc6-ec2cb19d10d7,https://biolit.fr/sorties/sortie-7a634ada-e23c-4557-abc6-ec2cb19d10d7/,collège paul Eluard,,03/09/2017,14.0000000,15.0000000,50.691993000000,1.562670000000,,"le portel , cap d alprech",49772,observation-7a634ada-e23c-4557-abc6-ec2cb19d10d7-2,https://biolit.fr/observations/observation-7a634ada-e23c-4557-abc6-ec2cb19d10d7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0192dorian-scaled.jpg,,FALSE, +N1,60598,sortie-7a634ada-e23c-4557-abc6-ec2cb19d10d7,https://biolit.fr/sorties/sortie-7a634ada-e23c-4557-abc6-ec2cb19d10d7/,collège paul Eluard,,03/09/2017,14.0000000,15.0000000,50.691993000000,1.562670000000,,"le portel , cap d alprech",49774,observation-7a634ada-e23c-4557-abc6-ec2cb19d10d7-3,https://biolit.fr/observations/observation-7a634ada-e23c-4557-abc6-ec2cb19d10d7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo alguedylan-scaled.jpg,,FALSE, +N1,60599,sortie-224cd23e-305a-4305-bbdc-a64cfe4ed22d,https://biolit.fr/sorties/sortie-224cd23e-305a-4305-bbdc-a64cfe4ed22d/,Phil,,03/06/2017,17.0:15,17.0:25,47.839146000000,-4.042282000000,,Mousterlin - Finistère,49776,observation-224cd23e-305a-4305-bbdc-a64cfe4ed22d,https://biolit.fr/observations/observation-224cd23e-305a-4305-bbdc-a64cfe4ed22d/,Balanus crenatus,Balane crénelée,,https://biolit.fr/wp-content/uploads/2023/07/P1060489.JPG,,TRUE, +N1,60599,sortie-224cd23e-305a-4305-bbdc-a64cfe4ed22d,https://biolit.fr/sorties/sortie-224cd23e-305a-4305-bbdc-a64cfe4ed22d/,Phil,,03/06/2017,17.0:15,17.0:25,47.839146000000,-4.042282000000,,Mousterlin - Finistère,49778,observation-224cd23e-305a-4305-bbdc-a64cfe4ed22d-2,https://biolit.fr/observations/observation-224cd23e-305a-4305-bbdc-a64cfe4ed22d-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1060493.JPG,,TRUE, +N1,60599,sortie-224cd23e-305a-4305-bbdc-a64cfe4ed22d,https://biolit.fr/sorties/sortie-224cd23e-305a-4305-bbdc-a64cfe4ed22d/,Phil,,03/06/2017,17.0:15,17.0:25,47.839146000000,-4.042282000000,,Mousterlin - Finistère,49780,observation-224cd23e-305a-4305-bbdc-a64cfe4ed22d-3,https://biolit.fr/observations/observation-224cd23e-305a-4305-bbdc-a64cfe4ed22d-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060494.JPG,,TRUE, +N1,60599,sortie-224cd23e-305a-4305-bbdc-a64cfe4ed22d,https://biolit.fr/sorties/sortie-224cd23e-305a-4305-bbdc-a64cfe4ed22d/,Phil,,03/06/2017,17.0:15,17.0:25,47.839146000000,-4.042282000000,,Mousterlin - Finistère,49782,observation-224cd23e-305a-4305-bbdc-a64cfe4ed22d-4,https://biolit.fr/observations/observation-224cd23e-305a-4305-bbdc-a64cfe4ed22d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060516.JPG,,FALSE, +N1,60600,sortie-261568dc-70e2-497e-ba92-000bba7e36e6,https://biolit.fr/sorties/sortie-261568dc-70e2-497e-ba92-000bba7e36e6/,Observe la nature,,03/08/2017,10.0000000,16.0000000,48.835598000000,-3.508861000000,,Trégastel,49784,observation-261568dc-70e2-497e-ba92-000bba7e36e6,https://biolit.fr/observations/observation-261568dc-70e2-497e-ba92-000bba7e36e6/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170308_133546[1]-scaled.jpg,,TRUE, +N1,60600,sortie-261568dc-70e2-497e-ba92-000bba7e36e6,https://biolit.fr/sorties/sortie-261568dc-70e2-497e-ba92-000bba7e36e6/,Observe la nature,,03/08/2017,10.0000000,16.0000000,48.835598000000,-3.508861000000,,Trégastel,49786,observation-261568dc-70e2-497e-ba92-000bba7e36e6-2,https://biolit.fr/observations/observation-261568dc-70e2-497e-ba92-000bba7e36e6-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170308_134915[1]-scaled.jpg,,TRUE, +N1,60600,sortie-261568dc-70e2-497e-ba92-000bba7e36e6,https://biolit.fr/sorties/sortie-261568dc-70e2-497e-ba92-000bba7e36e6/,Observe la nature,,03/08/2017,10.0000000,16.0000000,48.835598000000,-3.508861000000,,Trégastel,49788,observation-261568dc-70e2-497e-ba92-000bba7e36e6-3,https://biolit.fr/observations/observation-261568dc-70e2-497e-ba92-000bba7e36e6-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170308_151851[1]-scaled.jpg,,TRUE, +N1,60601,sortie-5c5c951c-0b01-4649-924c-d0065cc9d180,https://biolit.fr/sorties/sortie-5c5c951c-0b01-4649-924c-d0065cc9d180/,Observe la nature,,3/30/2017 0:00,15.0000000,16.0000000,48.814691000000,-3.428095000000,,Plage de pors ar goret. Perros Guirec,49790,observation-5c5c951c-0b01-4649-924c-d0065cc9d180,https://biolit.fr/observations/observation-5c5c951c-0b01-4649-924c-d0065cc9d180/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170329_151121[1]-scaled.jpg,,FALSE, +N1,60601,sortie-5c5c951c-0b01-4649-924c-d0065cc9d180,https://biolit.fr/sorties/sortie-5c5c951c-0b01-4649-924c-d0065cc9d180/,Observe la nature,,3/30/2017 0:00,15.0000000,16.0000000,48.814691000000,-3.428095000000,,Plage de pors ar goret. Perros Guirec,49792,observation-5c5c951c-0b01-4649-924c-d0065cc9d180-2,https://biolit.fr/observations/observation-5c5c951c-0b01-4649-924c-d0065cc9d180-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170401_160028[1]-scaled.jpg,,FALSE, +N1,60601,sortie-5c5c951c-0b01-4649-924c-d0065cc9d180,https://biolit.fr/sorties/sortie-5c5c951c-0b01-4649-924c-d0065cc9d180/,Observe la nature,,3/30/2017 0:00,15.0000000,16.0000000,48.814691000000,-3.428095000000,,Plage de pors ar goret. Perros Guirec,49794,observation-5c5c951c-0b01-4649-924c-d0065cc9d180-3,https://biolit.fr/observations/observation-5c5c951c-0b01-4649-924c-d0065cc9d180-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170329_151509[1]-scaled.jpg,,FALSE, +N1,60601,sortie-5c5c951c-0b01-4649-924c-d0065cc9d180,https://biolit.fr/sorties/sortie-5c5c951c-0b01-4649-924c-d0065cc9d180/,Observe la nature,,3/30/2017 0:00,15.0000000,16.0000000,48.814691000000,-3.428095000000,,Plage de pors ar goret. Perros Guirec,49796,observation-5c5c951c-0b01-4649-924c-d0065cc9d180-4,https://biolit.fr/observations/observation-5c5c951c-0b01-4649-924c-d0065cc9d180-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170310_114847[1]-scaled.jpg,,FALSE, +N1,60601,sortie-5c5c951c-0b01-4649-924c-d0065cc9d180,https://biolit.fr/sorties/sortie-5c5c951c-0b01-4649-924c-d0065cc9d180/,Observe la nature,,3/30/2017 0:00,15.0000000,16.0000000,48.814691000000,-3.428095000000,,Plage de pors ar goret. Perros Guirec,49798,observation-5c5c951c-0b01-4649-924c-d0065cc9d180-5,https://biolit.fr/observations/observation-5c5c951c-0b01-4649-924c-d0065cc9d180-5/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170310_114908[1]-scaled.jpg,,TRUE, +N1,60601,sortie-5c5c951c-0b01-4649-924c-d0065cc9d180,https://biolit.fr/sorties/sortie-5c5c951c-0b01-4649-924c-d0065cc9d180/,Observe la nature,,3/30/2017 0:00,15.0000000,16.0000000,48.814691000000,-3.428095000000,,Plage de pors ar goret. Perros Guirec,49800,observation-5c5c951c-0b01-4649-924c-d0065cc9d180-6,https://biolit.fr/observations/observation-5c5c951c-0b01-4649-924c-d0065cc9d180-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170310_115007[1]-scaled.jpg,,FALSE, +N1,60601,sortie-5c5c951c-0b01-4649-924c-d0065cc9d180,https://biolit.fr/sorties/sortie-5c5c951c-0b01-4649-924c-d0065cc9d180/,Observe la nature,,3/30/2017 0:00,15.0000000,16.0000000,48.814691000000,-3.428095000000,,Plage de pors ar goret. Perros Guirec,49802,observation-5c5c951c-0b01-4649-924c-d0065cc9d180-7,https://biolit.fr/observations/observation-5c5c951c-0b01-4649-924c-d0065cc9d180-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20170310_115220[1]-scaled.jpg,,FALSE, +N1,60602,sortie-de6f7ba3-86c1-49e3-ba5b-9480b365cc96,https://biolit.fr/sorties/sortie-de6f7ba3-86c1-49e3-ba5b-9480b365cc96/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202448000000,5.49808000000,,Calanque d'En Vau ,49804,observation-de6f7ba3-86c1-49e3-ba5b-9480b365cc96,https://biolit.fr/observations/observation-de6f7ba3-86c1-49e3-ba5b-9480b365cc96/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0373-scaled.jpg,,TRUE, +N1,60602,sortie-de6f7ba3-86c1-49e3-ba5b-9480b365cc96,https://biolit.fr/sorties/sortie-de6f7ba3-86c1-49e3-ba5b-9480b365cc96/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202448000000,5.49808000000,,Calanque d'En Vau ,49806,observation-de6f7ba3-86c1-49e3-ba5b-9480b365cc96-2,https://biolit.fr/observations/observation-de6f7ba3-86c1-49e3-ba5b-9480b365cc96-2/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0374-scaled.jpg,,TRUE, +N1,60602,sortie-de6f7ba3-86c1-49e3-ba5b-9480b365cc96,https://biolit.fr/sorties/sortie-de6f7ba3-86c1-49e3-ba5b-9480b365cc96/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202448000000,5.49808000000,,Calanque d'En Vau ,49808,observation-de6f7ba3-86c1-49e3-ba5b-9480b365cc96-3,https://biolit.fr/observations/observation-de6f7ba3-86c1-49e3-ba5b-9480b365cc96-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0375-scaled.jpg,,FALSE, +N1,60602,sortie-de6f7ba3-86c1-49e3-ba5b-9480b365cc96,https://biolit.fr/sorties/sortie-de6f7ba3-86c1-49e3-ba5b-9480b365cc96/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202448000000,5.49808000000,,Calanque d'En Vau ,49810,observation-de6f7ba3-86c1-49e3-ba5b-9480b365cc96-4,https://biolit.fr/observations/observation-de6f7ba3-86c1-49e3-ba5b-9480b365cc96-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0376-scaled.jpg,,FALSE, +N1,60602,sortie-de6f7ba3-86c1-49e3-ba5b-9480b365cc96,https://biolit.fr/sorties/sortie-de6f7ba3-86c1-49e3-ba5b-9480b365cc96/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202448000000,5.49808000000,,Calanque d'En Vau ,49812,observation-de6f7ba3-86c1-49e3-ba5b-9480b365cc96-5,https://biolit.fr/observations/observation-de6f7ba3-86c1-49e3-ba5b-9480b365cc96-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0377-scaled.jpg,,FALSE, +N1,60602,sortie-de6f7ba3-86c1-49e3-ba5b-9480b365cc96,https://biolit.fr/sorties/sortie-de6f7ba3-86c1-49e3-ba5b-9480b365cc96/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202448000000,5.49808000000,,Calanque d'En Vau ,49814,observation-de6f7ba3-86c1-49e3-ba5b-9480b365cc96-6,https://biolit.fr/observations/observation-de6f7ba3-86c1-49e3-ba5b-9480b365cc96-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0378-scaled.jpg,,FALSE, +N1,60603,sortie-34070850-ad0a-433e-932d-f6630c5b3658,https://biolit.fr/sorties/sortie-34070850-ad0a-433e-932d-f6630c5b3658/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202470000000,5.498102000000,,Calanque d'En Vau ,49816,observation-34070850-ad0a-433e-932d-f6630c5b3658,https://biolit.fr/observations/observation-34070850-ad0a-433e-932d-f6630c5b3658/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0363-scaled.jpg,,FALSE, +N1,60603,sortie-34070850-ad0a-433e-932d-f6630c5b3658,https://biolit.fr/sorties/sortie-34070850-ad0a-433e-932d-f6630c5b3658/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202470000000,5.498102000000,,Calanque d'En Vau ,49818,observation-34070850-ad0a-433e-932d-f6630c5b3658-2,https://biolit.fr/observations/observation-34070850-ad0a-433e-932d-f6630c5b3658-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0366-scaled.jpg,,FALSE, +N1,60603,sortie-34070850-ad0a-433e-932d-f6630c5b3658,https://biolit.fr/sorties/sortie-34070850-ad0a-433e-932d-f6630c5b3658/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202470000000,5.498102000000,,Calanque d'En Vau ,49820,observation-34070850-ad0a-433e-932d-f6630c5b3658-3,https://biolit.fr/observations/observation-34070850-ad0a-433e-932d-f6630c5b3658-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0368-scaled.jpg,,FALSE, +N1,60603,sortie-34070850-ad0a-433e-932d-f6630c5b3658,https://biolit.fr/sorties/sortie-34070850-ad0a-433e-932d-f6630c5b3658/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202470000000,5.498102000000,,Calanque d'En Vau ,49822,observation-34070850-ad0a-433e-932d-f6630c5b3658-4,https://biolit.fr/observations/observation-34070850-ad0a-433e-932d-f6630c5b3658-4/,Pilumnus hirtellus,Pilumne hirsute,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0370-scaled.jpg,,TRUE, +N1,60603,sortie-34070850-ad0a-433e-932d-f6630c5b3658,https://biolit.fr/sorties/sortie-34070850-ad0a-433e-932d-f6630c5b3658/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202470000000,5.498102000000,,Calanque d'En Vau ,49824,observation-34070850-ad0a-433e-932d-f6630c5b3658-5,https://biolit.fr/observations/observation-34070850-ad0a-433e-932d-f6630c5b3658-5/,Pilumnus hirtellus,Pilumne hirsute,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0371-scaled.jpg,,TRUE, +N1,60603,sortie-34070850-ad0a-433e-932d-f6630c5b3658,https://biolit.fr/sorties/sortie-34070850-ad0a-433e-932d-f6630c5b3658/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202470000000,5.498102000000,,Calanque d'En Vau ,49826,observation-34070850-ad0a-433e-932d-f6630c5b3658-6,https://biolit.fr/observations/observation-34070850-ad0a-433e-932d-f6630c5b3658-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0369-scaled.jpg,,FALSE, +N1,60604,sortie-e7ebf8bd-677a-41af-a849-5d54ad15120c,https://biolit.fr/sorties/sortie-e7ebf8bd-677a-41af-a849-5d54ad15120c/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202434000000,5.498091000000,,Calanque d'En Vau ,49828,observation-e7ebf8bd-677a-41af-a849-5d54ad15120c,https://biolit.fr/observations/observation-e7ebf8bd-677a-41af-a849-5d54ad15120c/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0359-scaled.jpg,,FALSE, +N1,60604,sortie-e7ebf8bd-677a-41af-a849-5d54ad15120c,https://biolit.fr/sorties/sortie-e7ebf8bd-677a-41af-a849-5d54ad15120c/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202434000000,5.498091000000,,Calanque d'En Vau ,49829,observation-e7ebf8bd-677a-41af-a849-5d54ad15120c-2,https://biolit.fr/observations/observation-e7ebf8bd-677a-41af-a849-5d54ad15120c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0360-scaled.jpg,,FALSE, +N1,60604,sortie-e7ebf8bd-677a-41af-a849-5d54ad15120c,https://biolit.fr/sorties/sortie-e7ebf8bd-677a-41af-a849-5d54ad15120c/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202434000000,5.498091000000,,Calanque d'En Vau ,49831,observation-e7ebf8bd-677a-41af-a849-5d54ad15120c-3,https://biolit.fr/observations/observation-e7ebf8bd-677a-41af-a849-5d54ad15120c-3/,Epitonium clathrus,Scalaire,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0361-scaled.jpg,,TRUE, +N1,60604,sortie-e7ebf8bd-677a-41af-a849-5d54ad15120c,https://biolit.fr/sorties/sortie-e7ebf8bd-677a-41af-a849-5d54ad15120c/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202434000000,5.498091000000,,Calanque d'En Vau ,49832,observation-e7ebf8bd-677a-41af-a849-5d54ad15120c-4,https://biolit.fr/observations/observation-e7ebf8bd-677a-41af-a849-5d54ad15120c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0364-scaled.jpg,,FALSE, +N1,60604,sortie-e7ebf8bd-677a-41af-a849-5d54ad15120c,https://biolit.fr/sorties/sortie-e7ebf8bd-677a-41af-a849-5d54ad15120c/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202434000000,5.498091000000,,Calanque d'En Vau ,49834,observation-e7ebf8bd-677a-41af-a849-5d54ad15120c-5,https://biolit.fr/observations/observation-e7ebf8bd-677a-41af-a849-5d54ad15120c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0365-scaled.jpg,,FALSE, +N1,60604,sortie-e7ebf8bd-677a-41af-a849-5d54ad15120c,https://biolit.fr/sorties/sortie-e7ebf8bd-677a-41af-a849-5d54ad15120c/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202434000000,5.498091000000,,Calanque d'En Vau ,49836,observation-e7ebf8bd-677a-41af-a849-5d54ad15120c-6,https://biolit.fr/observations/observation-e7ebf8bd-677a-41af-a849-5d54ad15120c-6/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0362-scaled.jpg,,TRUE, +N1,60605,sortie-050aa391-bc32-42de-806d-de4c45c73bd2,https://biolit.fr/sorties/sortie-050aa391-bc32-42de-806d-de4c45c73bd2/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202446000000,5.498145000000,,Calanque d'En Vau ,49838,observation-050aa391-bc32-42de-806d-de4c45c73bd2,https://biolit.fr/observations/observation-050aa391-bc32-42de-806d-de4c45c73bd2/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0353-scaled.jpg,,TRUE, +N1,60605,sortie-050aa391-bc32-42de-806d-de4c45c73bd2,https://biolit.fr/sorties/sortie-050aa391-bc32-42de-806d-de4c45c73bd2/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202446000000,5.498145000000,,Calanque d'En Vau ,49840,observation-050aa391-bc32-42de-806d-de4c45c73bd2-2,https://biolit.fr/observations/observation-050aa391-bc32-42de-806d-de4c45c73bd2-2/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0354-scaled.jpg,,TRUE, +N1,60605,sortie-050aa391-bc32-42de-806d-de4c45c73bd2,https://biolit.fr/sorties/sortie-050aa391-bc32-42de-806d-de4c45c73bd2/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202446000000,5.498145000000,,Calanque d'En Vau ,49842,observation-050aa391-bc32-42de-806d-de4c45c73bd2-3,https://biolit.fr/observations/observation-050aa391-bc32-42de-806d-de4c45c73bd2-3/,Euthria cornea,Buccin veiné,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0355-scaled.jpg,,TRUE, +N1,60605,sortie-050aa391-bc32-42de-806d-de4c45c73bd2,https://biolit.fr/sorties/sortie-050aa391-bc32-42de-806d-de4c45c73bd2/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202446000000,5.498145000000,,Calanque d'En Vau ,49844,observation-050aa391-bc32-42de-806d-de4c45c73bd2-4,https://biolit.fr/observations/observation-050aa391-bc32-42de-806d-de4c45c73bd2-4/,Euthria cornea,Buccin veiné,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0356-scaled.jpg,,TRUE, +N1,60605,sortie-050aa391-bc32-42de-806d-de4c45c73bd2,https://biolit.fr/sorties/sortie-050aa391-bc32-42de-806d-de4c45c73bd2/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202446000000,5.498145000000,,Calanque d'En Vau ,49845,observation-050aa391-bc32-42de-806d-de4c45c73bd2-5,https://biolit.fr/observations/observation-050aa391-bc32-42de-806d-de4c45c73bd2-5/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0357-scaled.jpg,,TRUE, +N1,60605,sortie-050aa391-bc32-42de-806d-de4c45c73bd2,https://biolit.fr/sorties/sortie-050aa391-bc32-42de-806d-de4c45c73bd2/,ludovic,,3/31/2017 0:00,12.0000000,13.0000000,43.202446000000,5.498145000000,,Calanque d'En Vau ,49847,observation-050aa391-bc32-42de-806d-de4c45c73bd2-6,https://biolit.fr/observations/observation-050aa391-bc32-42de-806d-de4c45c73bd2-6/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0358-scaled.jpg,,TRUE, +N1,60606,sortie-e3d5afe5-47d5-4efd-8331-c8f079ed0f19,https://biolit.fr/sorties/sortie-e3d5afe5-47d5-4efd-8331-c8f079ed0f19/,ludovic,,3/31/2002 0:00,12.0000000,13.0000000,43.202434000000,5.498134000000,,Calanque d'En Vau,49849,observation-e3d5afe5-47d5-4efd-8331-c8f079ed0f19,https://biolit.fr/observations/observation-e3d5afe5-47d5-4efd-8331-c8f079ed0f19/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_0345-scaled.jpg,,TRUE, +N1,60606,sortie-e3d5afe5-47d5-4efd-8331-c8f079ed0f19,https://biolit.fr/sorties/sortie-e3d5afe5-47d5-4efd-8331-c8f079ed0f19/,ludovic,,3/31/2002 0:00,12.0000000,13.0000000,43.202434000000,5.498134000000,,Calanque d'En Vau,49851,observation-e3d5afe5-47d5-4efd-8331-c8f079ed0f19-2,https://biolit.fr/observations/observation-e3d5afe5-47d5-4efd-8331-c8f079ed0f19-2/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_0346-scaled.jpg,,TRUE, +N1,60606,sortie-e3d5afe5-47d5-4efd-8331-c8f079ed0f19,https://biolit.fr/sorties/sortie-e3d5afe5-47d5-4efd-8331-c8f079ed0f19/,ludovic,,3/31/2002 0:00,12.0000000,13.0000000,43.202434000000,5.498134000000,,Calanque d'En Vau,49853,observation-e3d5afe5-47d5-4efd-8331-c8f079ed0f19-3,https://biolit.fr/observations/observation-e3d5afe5-47d5-4efd-8331-c8f079ed0f19-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0350-scaled.jpg,,TRUE,non-identifiable +N1,60606,sortie-e3d5afe5-47d5-4efd-8331-c8f079ed0f19,https://biolit.fr/sorties/sortie-e3d5afe5-47d5-4efd-8331-c8f079ed0f19/,ludovic,,3/31/2002 0:00,12.0000000,13.0000000,43.202434000000,5.498134000000,,Calanque d'En Vau,49855,observation-e3d5afe5-47d5-4efd-8331-c8f079ed0f19-4,https://biolit.fr/observations/observation-e3d5afe5-47d5-4efd-8331-c8f079ed0f19-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0351-scaled.jpg,,FALSE, +N1,60606,sortie-e3d5afe5-47d5-4efd-8331-c8f079ed0f19,https://biolit.fr/sorties/sortie-e3d5afe5-47d5-4efd-8331-c8f079ed0f19/,ludovic,,3/31/2002 0:00,12.0000000,13.0000000,43.202434000000,5.498134000000,,Calanque d'En Vau,49857,observation-e3d5afe5-47d5-4efd-8331-c8f079ed0f19-5,https://biolit.fr/observations/observation-e3d5afe5-47d5-4efd-8331-c8f079ed0f19-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0352-scaled.jpg,,FALSE, +N1,60607,sortie-a1615687-2980-47a6-84ce-34f5c89df49c,https://biolit.fr/sorties/sortie-a1615687-2980-47a6-84ce-34f5c89df49c/,claudine laden,,04/02/2017,10.0000000,12.0000000,51.051187000000,2.432296000000,,plage de leffrinckoucke,49859,observation-a1615687-2980-47a6-84ce-34f5c89df49c,https://biolit.fr/observations/observation-a1615687-2980-47a6-84ce-34f5c89df49c/,,,,https://biolit.fr/wp-content/uploads/2023/07/leffrinckouke 2017 04 02 1.jpg,,FALSE, +N1,60607,sortie-a1615687-2980-47a6-84ce-34f5c89df49c,https://biolit.fr/sorties/sortie-a1615687-2980-47a6-84ce-34f5c89df49c/,claudine laden,,04/02/2017,10.0000000,12.0000000,51.051187000000,2.432296000000,,plage de leffrinckoucke,49861,observation-a1615687-2980-47a6-84ce-34f5c89df49c-2,https://biolit.fr/observations/observation-a1615687-2980-47a6-84ce-34f5c89df49c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/leffrinckouke 2017 04 02 2.jpg,,FALSE, +N1,60608,sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b,https://biolit.fr/sorties/sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b/,cigale33,,04/02/2017,21.0000000,23.0000000,43.378735000000,-1.757153000000,,hendaye plage,49863,observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b,https://biolit.fr/observations/observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_6698.JPG,,FALSE, +N1,60608,sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b,https://biolit.fr/sorties/sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b/,cigale33,,04/02/2017,21.0000000,23.0000000,43.378735000000,-1.757153000000,,hendaye plage,49865,observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-2,https://biolit.fr/observations/observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_6700.JPG,,FALSE, +N1,60608,sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b,https://biolit.fr/sorties/sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b/,cigale33,,04/02/2017,21.0000000,23.0000000,43.378735000000,-1.757153000000,,hendaye plage,49867,observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-3,https://biolit.fr/observations/observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_6702.JPG,,FALSE, +N1,60608,sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b,https://biolit.fr/sorties/sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b/,cigale33,,04/02/2017,21.0000000,23.0000000,43.378735000000,-1.757153000000,,hendaye plage,49869,observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-4,https://biolit.fr/observations/observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_6706.JPG,,FALSE, +N1,60608,sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b,https://biolit.fr/sorties/sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b/,cigale33,,04/02/2017,21.0000000,23.0000000,43.378735000000,-1.757153000000,,hendaye plage,49871,observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-5,https://biolit.fr/observations/observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-5/,Chondria coerulescens,Chondria bleue,,https://biolit.fr/wp-content/uploads/2023/07/_MG_6711.JPG,,TRUE, +N1,60608,sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b,https://biolit.fr/sorties/sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b/,cigale33,,04/02/2017,21.0000000,23.0000000,43.378735000000,-1.757153000000,,hendaye plage,49873,observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-6,https://biolit.fr/observations/observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-6/,Euspira catena,Natice porte-chaîne,,https://biolit.fr/wp-content/uploads/2023/07/_MG_6713.JPG,,TRUE, +N1,60608,sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b,https://biolit.fr/sorties/sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b/,cigale33,,04/02/2017,21.0000000,23.0000000,43.378735000000,-1.757153000000,,hendaye plage,49875,observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-7,https://biolit.fr/observations/observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-7/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/_MG_6716.JPG,,TRUE, +N1,60608,sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b,https://biolit.fr/sorties/sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b/,cigale33,,04/02/2017,21.0000000,23.0000000,43.378735000000,-1.757153000000,,hendaye plage,49877,observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-8,https://biolit.fr/observations/observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-8/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/_MG_6722.JPG,,TRUE, +N1,60608,sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b,https://biolit.fr/sorties/sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b/,cigale33,,04/02/2017,21.0000000,23.0000000,43.378735000000,-1.757153000000,,hendaye plage,49879,observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-9,https://biolit.fr/observations/observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-9/,Chondria coerulescens,Chondria bleue,,https://biolit.fr/wp-content/uploads/2023/07/_MG_6717.JPG,,TRUE, +N1,60608,sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b,https://biolit.fr/sorties/sortie-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b/,cigale33,,04/02/2017,21.0000000,23.0000000,43.378735000000,-1.757153000000,,hendaye plage,49881,observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-10,https://biolit.fr/observations/observation-84e1c8f6-2618-4c0f-ac55-fe09a51dab2b-10/,Chondria coerulescens,Chondria bleue,,https://biolit.fr/wp-content/uploads/2023/07/_MG_6721.JPG,,TRUE, +N1,60609,sortie-5feee213-44a1-452b-8c75-0ae06f62db06,https://biolit.fr/sorties/sortie-5feee213-44a1-452b-8c75-0ae06f62db06/,Phil,,3/23/2017 0:00,13.0:35,13.0:45,47.947187000000,-4.411019000000,,Pouldreuzic - Finistère,49883,observation-5feee213-44a1-452b-8c75-0ae06f62db06,https://biolit.fr/observations/observation-5feee213-44a1-452b-8c75-0ae06f62db06/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20170323_134406.jpg,,TRUE, +N1,60609,sortie-5feee213-44a1-452b-8c75-0ae06f62db06,https://biolit.fr/sorties/sortie-5feee213-44a1-452b-8c75-0ae06f62db06/,Phil,,3/23/2017 0:00,13.0:35,13.0:45,47.947187000000,-4.411019000000,,Pouldreuzic - Finistère,49885,observation-5feee213-44a1-452b-8c75-0ae06f62db06-2,https://biolit.fr/observations/observation-5feee213-44a1-452b-8c75-0ae06f62db06-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170323_134315.jpg,,FALSE, +N1,60610,sortie-d0d7ea6a-a85b-4dcf-8489-39e6800c1197,https://biolit.fr/sorties/sortie-d0d7ea6a-a85b-4dcf-8489-39e6800c1197/,Phil,,3/13/2017 0:00,13.0000000,13.0000000,47.856616000000,-3.919887000000,,Concarneau - Finistère,49887,observation-d0d7ea6a-a85b-4dcf-8489-39e6800c1197,https://biolit.fr/observations/observation-d0d7ea6a-a85b-4dcf-8489-39e6800c1197/,Balanus crenatus,Balane crénelée,,https://biolit.fr/wp-content/uploads/2023/07/P1060649.JPG,,TRUE, +N1,60610,sortie-d0d7ea6a-a85b-4dcf-8489-39e6800c1197,https://biolit.fr/sorties/sortie-d0d7ea6a-a85b-4dcf-8489-39e6800c1197/,Phil,,3/13/2017 0:00,13.0000000,13.0000000,47.856616000000,-3.919887000000,,Concarneau - Finistère,49889,observation-d0d7ea6a-a85b-4dcf-8489-39e6800c1197-2,https://biolit.fr/observations/observation-d0d7ea6a-a85b-4dcf-8489-39e6800c1197-2/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1060643.JPG,,TRUE, +N1,60610,sortie-d0d7ea6a-a85b-4dcf-8489-39e6800c1197,https://biolit.fr/sorties/sortie-d0d7ea6a-a85b-4dcf-8489-39e6800c1197/,Phil,,3/13/2017 0:00,13.0000000,13.0000000,47.856616000000,-3.919887000000,,Concarneau - Finistère,49891,observation-d0d7ea6a-a85b-4dcf-8489-39e6800c1197-3,https://biolit.fr/observations/observation-d0d7ea6a-a85b-4dcf-8489-39e6800c1197-3/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1060646_0.JPG,,TRUE, +N1,60610,sortie-d0d7ea6a-a85b-4dcf-8489-39e6800c1197,https://biolit.fr/sorties/sortie-d0d7ea6a-a85b-4dcf-8489-39e6800c1197/,Phil,,3/13/2017 0:00,13.0000000,13.0000000,47.856616000000,-3.919887000000,,Concarneau - Finistère,49893,observation-d0d7ea6a-a85b-4dcf-8489-39e6800c1197-4,https://biolit.fr/observations/observation-d0d7ea6a-a85b-4dcf-8489-39e6800c1197-4/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1060647.JPG,,TRUE, +N1,60610,sortie-d0d7ea6a-a85b-4dcf-8489-39e6800c1197,https://biolit.fr/sorties/sortie-d0d7ea6a-a85b-4dcf-8489-39e6800c1197/,Phil,,3/13/2017 0:00,13.0000000,13.0000000,47.856616000000,-3.919887000000,,Concarneau - Finistère,49895,observation-d0d7ea6a-a85b-4dcf-8489-39e6800c1197-5,https://biolit.fr/observations/observation-d0d7ea6a-a85b-4dcf-8489-39e6800c1197-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060650.JPG,,FALSE, +N1,60611,sortie-daee7a15-e38d-4d73-b6a7-3b141d5af73e,https://biolit.fr/sorties/sortie-daee7a15-e38d-4d73-b6a7-3b141d5af73e/,Romuald VIALE - EXPENATURE,,3/30/2017 0:00,18.0000000,20.0000000,43.158453000000,5.607731000000,,Baie de La Ciotat,49897,observation-daee7a15-e38d-4d73-b6a7-3b141d5af73e,https://biolit.fr/observations/observation-daee7a15-e38d-4d73-b6a7-3b141d5af73e/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/capture 2.jpeg,,TRUE, +N1,60611,sortie-daee7a15-e38d-4d73-b6a7-3b141d5af73e,https://biolit.fr/sorties/sortie-daee7a15-e38d-4d73-b6a7-3b141d5af73e/,Romuald VIALE - EXPENATURE,,3/30/2017 0:00,18.0000000,20.0000000,43.158453000000,5.607731000000,,Baie de La Ciotat,49899,observation-daee7a15-e38d-4d73-b6a7-3b141d5af73e-2,https://biolit.fr/observations/observation-daee7a15-e38d-4d73-b6a7-3b141d5af73e-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/capture.jpeg,,TRUE, +N1,60612,sortie-21d7e642-d9e3-4845-8a83-6e8e13d47cac,https://biolit.fr/sorties/sortie-21d7e642-d9e3-4845-8a83-6e8e13d47cac/,Phil,,3/27/2017 0:00,10.0000000,11.0000000,47.853810000000,-3.915450000000,,Concarneau - Finistère,49901,observation-21d7e642-d9e3-4845-8a83-6e8e13d47cac,https://biolit.fr/observations/observation-21d7e642-d9e3-4845-8a83-6e8e13d47cac/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060756.JPG,,FALSE, +N1,60612,sortie-21d7e642-d9e3-4845-8a83-6e8e13d47cac,https://biolit.fr/sorties/sortie-21d7e642-d9e3-4845-8a83-6e8e13d47cac/,Phil,,3/27/2017 0:00,10.0000000,11.0000000,47.853810000000,-3.915450000000,,Concarneau - Finistère,49903,observation-21d7e642-d9e3-4845-8a83-6e8e13d47cac-2,https://biolit.fr/observations/observation-21d7e642-d9e3-4845-8a83-6e8e13d47cac-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/P1060762.JPG,,TRUE, +N1,60613,sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265,https://biolit.fr/sorties/sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265/,ludovic,,3/29/2017 0:00,14.0000000,15.0000000,43.239866000000,5.362361000000,,le bain des dames ,49905,observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265,https://biolit.fr/observations/observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/DSC_0274-scaled.jpg,,TRUE, +N1,60613,sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265,https://biolit.fr/sorties/sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265/,ludovic,,3/29/2017 0:00,14.0000000,15.0000000,43.239866000000,5.362361000000,,le bain des dames ,49907,observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-2,https://biolit.fr/observations/observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0275-scaled.jpg,,FALSE, +N1,60613,sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265,https://biolit.fr/sorties/sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265/,ludovic,,3/29/2017 0:00,14.0000000,15.0000000,43.239866000000,5.362361000000,,le bain des dames ,49909,observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-3,https://biolit.fr/observations/observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-3/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0276-scaled.jpg,,TRUE, +N1,60613,sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265,https://biolit.fr/sorties/sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265/,ludovic,,3/29/2017 0:00,14.0000000,15.0000000,43.239866000000,5.362361000000,,le bain des dames ,49911,observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-4,https://biolit.fr/observations/observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-4/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0277-scaled.jpg,,TRUE, +N1,60613,sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265,https://biolit.fr/sorties/sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265/,ludovic,,3/29/2017 0:00,14.0000000,15.0000000,43.239866000000,5.362361000000,,le bain des dames ,49913,observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-5,https://biolit.fr/observations/observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0278-scaled.jpg,,FALSE, +N1,60613,sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265,https://biolit.fr/sorties/sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265/,ludovic,,3/29/2017 0:00,14.0000000,15.0000000,43.239866000000,5.362361000000,,le bain des dames ,49915,observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-6,https://biolit.fr/observations/observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0279-scaled.jpg,,FALSE, +N1,60613,sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265,https://biolit.fr/sorties/sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265/,ludovic,,3/29/2017 0:00,14.0000000,15.0000000,43.239866000000,5.362361000000,,le bain des dames ,49917,observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-7,https://biolit.fr/observations/observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0280-scaled.jpg,,FALSE, +N1,60613,sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265,https://biolit.fr/sorties/sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265/,ludovic,,3/29/2017 0:00,14.0000000,15.0000000,43.239866000000,5.362361000000,,le bain des dames ,49919,observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-8,https://biolit.fr/observations/observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-8/,Sertularella mediterranea,Sertularelle de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0281-scaled.jpg,,TRUE, +N1,60613,sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265,https://biolit.fr/sorties/sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265/,ludovic,,3/29/2017 0:00,14.0000000,15.0000000,43.239866000000,5.362361000000,,le bain des dames ,49921,observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-9,https://biolit.fr/observations/observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0283-scaled.jpg,,FALSE, +N1,60613,sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265,https://biolit.fr/sorties/sortie-91b5e5c0-65d7-4b4c-be89-c83c246f8265/,ludovic,,3/29/2017 0:00,14.0000000,15.0000000,43.239866000000,5.362361000000,,le bain des dames ,49923,observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-10,https://biolit.fr/observations/observation-91b5e5c0-65d7-4b4c-be89-c83c246f8265-10/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0286-scaled.jpg,,TRUE, +N1,60614,sortie-09ddf978-ab18-4ffe-a3b6-f362f62d1658,https://biolit.fr/sorties/sortie-09ddf978-ab18-4ffe-a3b6-f362f62d1658/,Phil,,03/02/2017,15.000005,15.0000000,47.970574000000,-4.44787500000,,Plozevet - Finistère,49925,observation-09ddf978-ab18-4ffe-a3b6-f362f62d1658,https://biolit.fr/observations/observation-09ddf978-ab18-4ffe-a3b6-f362f62d1658/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060314_1.JPG,,FALSE, +N1,60614,sortie-09ddf978-ab18-4ffe-a3b6-f362f62d1658,https://biolit.fr/sorties/sortie-09ddf978-ab18-4ffe-a3b6-f362f62d1658/,Phil,,03/02/2017,15.000005,15.0000000,47.970574000000,-4.44787500000,,Plozevet - Finistère,49927,observation-09ddf978-ab18-4ffe-a3b6-f362f62d1658-2,https://biolit.fr/observations/observation-09ddf978-ab18-4ffe-a3b6-f362f62d1658-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060460.JPG,,FALSE, +N1,60614,sortie-09ddf978-ab18-4ffe-a3b6-f362f62d1658,https://biolit.fr/sorties/sortie-09ddf978-ab18-4ffe-a3b6-f362f62d1658/,Phil,,03/02/2017,15.000005,15.0000000,47.970574000000,-4.44787500000,,Plozevet - Finistère,49929,observation-09ddf978-ab18-4ffe-a3b6-f362f62d1658-3,https://biolit.fr/observations/observation-09ddf978-ab18-4ffe-a3b6-f362f62d1658-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060464.JPG,,FALSE, +N1,60614,sortie-09ddf978-ab18-4ffe-a3b6-f362f62d1658,https://biolit.fr/sorties/sortie-09ddf978-ab18-4ffe-a3b6-f362f62d1658/,Phil,,03/02/2017,15.000005,15.0000000,47.970574000000,-4.44787500000,,Plozevet - Finistère,49931,observation-09ddf978-ab18-4ffe-a3b6-f362f62d1658-4,https://biolit.fr/observations/observation-09ddf978-ab18-4ffe-a3b6-f362f62d1658-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060466.JPG,,FALSE, +N1,60614,sortie-09ddf978-ab18-4ffe-a3b6-f362f62d1658,https://biolit.fr/sorties/sortie-09ddf978-ab18-4ffe-a3b6-f362f62d1658/,Phil,,03/02/2017,15.000005,15.0000000,47.970574000000,-4.44787500000,,Plozevet - Finistère,49933,observation-09ddf978-ab18-4ffe-a3b6-f362f62d1658-5,https://biolit.fr/observations/observation-09ddf978-ab18-4ffe-a3b6-f362f62d1658-5/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1060446.JPG,,TRUE, +N1,60615,sortie-0fa4abac-3ff7-44df-9801-8e4d43f84983,https://biolit.fr/sorties/sortie-0fa4abac-3ff7-44df-9801-8e4d43f84983/,Phil,,3/23/2017 0:00,13.0000000,13.0:35,47.950523000000,-4.415345000000,,Pouldreuzic - Finistère,49935,observation-0fa4abac-3ff7-44df-9801-8e4d43f84983,https://biolit.fr/observations/observation-0fa4abac-3ff7-44df-9801-8e4d43f84983/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20170323_133429.jpg,,TRUE, +N1,60615,sortie-0fa4abac-3ff7-44df-9801-8e4d43f84983,https://biolit.fr/sorties/sortie-0fa4abac-3ff7-44df-9801-8e4d43f84983/,Phil,,3/23/2017 0:00,13.0000000,13.0:35,47.950523000000,-4.415345000000,,Pouldreuzic - Finistère,49937,observation-0fa4abac-3ff7-44df-9801-8e4d43f84983-2,https://biolit.fr/observations/observation-0fa4abac-3ff7-44df-9801-8e4d43f84983-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20170323_133441.jpg,,TRUE, +N1,60615,sortie-0fa4abac-3ff7-44df-9801-8e4d43f84983,https://biolit.fr/sorties/sortie-0fa4abac-3ff7-44df-9801-8e4d43f84983/,Phil,,3/23/2017 0:00,13.0000000,13.0:35,47.950523000000,-4.415345000000,,Pouldreuzic - Finistère,49939,observation-0fa4abac-3ff7-44df-9801-8e4d43f84983-3,https://biolit.fr/observations/observation-0fa4abac-3ff7-44df-9801-8e4d43f84983-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20170323_133639.jpg,,TRUE, +N1,60615,sortie-0fa4abac-3ff7-44df-9801-8e4d43f84983,https://biolit.fr/sorties/sortie-0fa4abac-3ff7-44df-9801-8e4d43f84983/,Phil,,3/23/2017 0:00,13.0000000,13.0:35,47.950523000000,-4.415345000000,,Pouldreuzic - Finistère,49941,observation-0fa4abac-3ff7-44df-9801-8e4d43f84983-4,https://biolit.fr/observations/observation-0fa4abac-3ff7-44df-9801-8e4d43f84983-4/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20170323_133217.jpg,,TRUE, +N1,60616,sortie-f9ffbea2-d670-499f-a58a-723a310fb24f,https://biolit.fr/sorties/sortie-f9ffbea2-d670-499f-a58a-723a310fb24f/,Phil,,3/13/2017 0:00,13.0:15,13.0000000,47.857503000000,-3.91890000000,,Concarneau - Finistère,49943,observation-f9ffbea2-d670-499f-a58a-723a310fb24f,https://biolit.fr/observations/observation-f9ffbea2-d670-499f-a58a-723a310fb24f/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060631.jpg,,FALSE, +N1,60616,sortie-f9ffbea2-d670-499f-a58a-723a310fb24f,https://biolit.fr/sorties/sortie-f9ffbea2-d670-499f-a58a-723a310fb24f/,Phil,,3/13/2017 0:00,13.0:15,13.0000000,47.857503000000,-3.91890000000,,Concarneau - Finistère,49945,observation-f9ffbea2-d670-499f-a58a-723a310fb24f-2,https://biolit.fr/observations/observation-f9ffbea2-d670-499f-a58a-723a310fb24f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060629_0.JPG,,FALSE, +N1,60616,sortie-f9ffbea2-d670-499f-a58a-723a310fb24f,https://biolit.fr/sorties/sortie-f9ffbea2-d670-499f-a58a-723a310fb24f/,Phil,,3/13/2017 0:00,13.0:15,13.0000000,47.857503000000,-3.91890000000,,Concarneau - Finistère,49947,observation-f9ffbea2-d670-499f-a58a-723a310fb24f-3,https://biolit.fr/observations/observation-f9ffbea2-d670-499f-a58a-723a310fb24f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060634.JPG,,FALSE, +N1,60617,sortie-022d9591-1278-4c0b-8fa0-45d9c18627db,https://biolit.fr/sorties/sortie-022d9591-1278-4c0b-8fa0-45d9c18627db/,collège paul Eluard,,03/06/2017,14.0000000,15.0000000,50.707526000000,1.576392000000,,commune de le portel ,49949,observation-022d9591-1278-4c0b-8fa0-45d9c18627db,https://biolit.fr/observations/observation-022d9591-1278-4c0b-8fa0-45d9c18627db/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/07/jeanne-scaled.jpg,,TRUE, +N1,60617,sortie-022d9591-1278-4c0b-8fa0-45d9c18627db,https://biolit.fr/sorties/sortie-022d9591-1278-4c0b-8fa0-45d9c18627db/,collège paul Eluard,,03/06/2017,14.0000000,15.0000000,50.707526000000,1.576392000000,,commune de le portel ,49951,observation-022d9591-1278-4c0b-8fa0-45d9c18627db-2,https://biolit.fr/observations/observation-022d9591-1278-4c0b-8fa0-45d9c18627db-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/lea b.jpeg_0-scaled.jpg,,FALSE, +N1,60618,sortie-068dba4e-c059-4d5a-849a-618fb831362f,https://biolit.fr/sorties/sortie-068dba4e-c059-4d5a-849a-618fb831362f/,Phil,,3/23/2017 0:00,14.000005,14.0000000,47.979647000000,-4.44959100000,,Plozevet - Finistère,49953,observation-068dba4e-c059-4d5a-849a-618fb831362f,https://biolit.fr/observations/observation-068dba4e-c059-4d5a-849a-618fb831362f/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170323_140835.jpg,,FALSE, +N1,60619,sortie-fddfa1ff-4cf6-40aa-ad0d-c2b6c4f01459,https://biolit.fr/sorties/sortie-fddfa1ff-4cf6-40aa-ad0d-c2b6c4f01459/,Phil,,03/02/2017,14.0000000,15.0000000,47.970597000000,-4.445815000000,,Plozevet - Finistère,49955,observation-fddfa1ff-4cf6-40aa-ad0d-c2b6c4f01459,https://biolit.fr/observations/observation-fddfa1ff-4cf6-40aa-ad0d-c2b6c4f01459/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1060432.JPG,,TRUE, +N1,60619,sortie-fddfa1ff-4cf6-40aa-ad0d-c2b6c4f01459,https://biolit.fr/sorties/sortie-fddfa1ff-4cf6-40aa-ad0d-c2b6c4f01459/,Phil,,03/02/2017,14.0000000,15.0000000,47.970597000000,-4.445815000000,,Plozevet - Finistère,49957,observation-fddfa1ff-4cf6-40aa-ad0d-c2b6c4f01459-2,https://biolit.fr/observations/observation-fddfa1ff-4cf6-40aa-ad0d-c2b6c4f01459-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060427.JPG,,FALSE, +N1,60619,sortie-fddfa1ff-4cf6-40aa-ad0d-c2b6c4f01459,https://biolit.fr/sorties/sortie-fddfa1ff-4cf6-40aa-ad0d-c2b6c4f01459/,Phil,,03/02/2017,14.0000000,15.0000000,47.970597000000,-4.445815000000,,Plozevet - Finistère,49959,observation-fddfa1ff-4cf6-40aa-ad0d-c2b6c4f01459-3,https://biolit.fr/observations/observation-fddfa1ff-4cf6-40aa-ad0d-c2b6c4f01459-3/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/P1060421.JPG,,TRUE, +N1,60620,sortie-3a388275-76e8-46bc-8e54-8234d9e5683f,https://biolit.fr/sorties/sortie-3a388275-76e8-46bc-8e54-8234d9e5683f/,collège paul Eluard,,03/06/2017,14.0000000,15.0000000,50.54647600000,1.611326000000,,Wimereux,49961,observation-3a388275-76e8-46bc-8e54-8234d9e5683f,https://biolit.fr/observations/observation-3a388275-76e8-46bc-8e54-8234d9e5683f/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/vue de près-scaled.jpg,,TRUE, +N1,60621,sortie-e683b16b-1f86-442c-89ab-0eb181626e28,https://biolit.fr/sorties/sortie-e683b16b-1f86-442c-89ab-0eb181626e28/,Phil,,3/23/2017 0:00,14.0000000,14.0:15,47.978963000000,-4.45293900000,,Plozevet - Finistère,49963,observation-e683b16b-1f86-442c-89ab-0eb181626e28,https://biolit.fr/observations/observation-e683b16b-1f86-442c-89ab-0eb181626e28/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20170323_140955.jpg,,TRUE, +N1,60621,sortie-e683b16b-1f86-442c-89ab-0eb181626e28,https://biolit.fr/sorties/sortie-e683b16b-1f86-442c-89ab-0eb181626e28/,Phil,,3/23/2017 0:00,14.0000000,14.0:15,47.978963000000,-4.45293900000,,Plozevet - Finistère,49965,observation-e683b16b-1f86-442c-89ab-0eb181626e28-2,https://biolit.fr/observations/observation-e683b16b-1f86-442c-89ab-0eb181626e28-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170323_141021.jpg,,FALSE, +N1,60622,sortie-f15f61f4-3375-4b20-aedc-2c24e845e431,https://biolit.fr/sorties/sortie-f15f61f4-3375-4b20-aedc-2c24e845e431/,Phil,,3/13/2017 0:00,13.000005,13.0:15,47.856162000000,-3.920368000000,,Concarneau - Finistère,49967,observation-f15f61f4-3375-4b20-aedc-2c24e845e431,https://biolit.fr/observations/observation-f15f61f4-3375-4b20-aedc-2c24e845e431/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060623_0.JPG,,FALSE, +N1,60622,sortie-f15f61f4-3375-4b20-aedc-2c24e845e431,https://biolit.fr/sorties/sortie-f15f61f4-3375-4b20-aedc-2c24e845e431/,Phil,,3/13/2017 0:00,13.000005,13.0:15,47.856162000000,-3.920368000000,,Concarneau - Finistère,49969,observation-f15f61f4-3375-4b20-aedc-2c24e845e431-2,https://biolit.fr/observations/observation-f15f61f4-3375-4b20-aedc-2c24e845e431-2/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1060618.JPG,,TRUE, +N1,60622,sortie-f15f61f4-3375-4b20-aedc-2c24e845e431,https://biolit.fr/sorties/sortie-f15f61f4-3375-4b20-aedc-2c24e845e431/,Phil,,3/13/2017 0:00,13.000005,13.0:15,47.856162000000,-3.920368000000,,Concarneau - Finistère,49971,observation-f15f61f4-3375-4b20-aedc-2c24e845e431-3,https://biolit.fr/observations/observation-f15f61f4-3375-4b20-aedc-2c24e845e431-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060621.JPG,,FALSE, +N1,60622,sortie-f15f61f4-3375-4b20-aedc-2c24e845e431,https://biolit.fr/sorties/sortie-f15f61f4-3375-4b20-aedc-2c24e845e431/,Phil,,3/13/2017 0:00,13.000005,13.0:15,47.856162000000,-3.920368000000,,Concarneau - Finistère,49973,observation-f15f61f4-3375-4b20-aedc-2c24e845e431-4,https://biolit.fr/observations/observation-f15f61f4-3375-4b20-aedc-2c24e845e431-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1060617_0.JPG,,TRUE, +N1,60623,sortie-130e5915-7001-4e26-bf56-c8d994aafc13,https://biolit.fr/sorties/sortie-130e5915-7001-4e26-bf56-c8d994aafc13/,Phil,,2/25/2017 0:00,12.0:15,12.0000000,47.795418000000,-4.276291000000,,Léchiagat - Finistère,49975,observation-130e5915-7001-4e26-bf56-c8d994aafc13,https://biolit.fr/observations/observation-130e5915-7001-4e26-bf56-c8d994aafc13/,Echinus esculentus,Oursin globuleux,,https://biolit.fr/wp-content/uploads/2023/07/20170225_121933.jpg,,TRUE, +N1,60623,sortie-130e5915-7001-4e26-bf56-c8d994aafc13,https://biolit.fr/sorties/sortie-130e5915-7001-4e26-bf56-c8d994aafc13/,Phil,,2/25/2017 0:00,12.0:15,12.0000000,47.795418000000,-4.276291000000,,Léchiagat - Finistère,49977,observation-130e5915-7001-4e26-bf56-c8d994aafc13-2,https://biolit.fr/observations/observation-130e5915-7001-4e26-bf56-c8d994aafc13-2/,Echinus esculentus,Oursin globuleux,,https://biolit.fr/wp-content/uploads/2023/07/20170225_121903.jpg,,TRUE, +N1,60623,sortie-130e5915-7001-4e26-bf56-c8d994aafc13,https://biolit.fr/sorties/sortie-130e5915-7001-4e26-bf56-c8d994aafc13/,Phil,,2/25/2017 0:00,12.0:15,12.0000000,47.795418000000,-4.276291000000,,Léchiagat - Finistère,49979,observation-130e5915-7001-4e26-bf56-c8d994aafc13-3,https://biolit.fr/observations/observation-130e5915-7001-4e26-bf56-c8d994aafc13-3/,Echinus esculentus,Oursin globuleux,,https://biolit.fr/wp-content/uploads/2023/07/20170225_121916.jpg,,TRUE, +N1,60623,sortie-130e5915-7001-4e26-bf56-c8d994aafc13,https://biolit.fr/sorties/sortie-130e5915-7001-4e26-bf56-c8d994aafc13/,Phil,,2/25/2017 0:00,12.0:15,12.0000000,47.795418000000,-4.276291000000,,Léchiagat - Finistère,49981,observation-130e5915-7001-4e26-bf56-c8d994aafc13-4,https://biolit.fr/observations/observation-130e5915-7001-4e26-bf56-c8d994aafc13-4/,Echinus esculentus,Oursin globuleux,,https://biolit.fr/wp-content/uploads/2023/07/20170225_122045.jpg,,TRUE, +N1,60624,sortie-5bb31272-1e90-4626-9860-eb043fdd5089,https://biolit.fr/sorties/sortie-5bb31272-1e90-4626-9860-eb043fdd5089/,Phil,,03/06/2017,17.0000000,17.0000000,47.839363000000,-4.042183000000,,Mousterlin - Finistère,49983,observation-5bb31272-1e90-4626-9860-eb043fdd5089,https://biolit.fr/observations/observation-5bb31272-1e90-4626-9860-eb043fdd5089/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1060543.jpg,,TRUE, +N1,60624,sortie-5bb31272-1e90-4626-9860-eb043fdd5089,https://biolit.fr/sorties/sortie-5bb31272-1e90-4626-9860-eb043fdd5089/,Phil,,03/06/2017,17.0000000,17.0000000,47.839363000000,-4.042183000000,,Mousterlin - Finistère,49985,observation-5bb31272-1e90-4626-9860-eb043fdd5089-2,https://biolit.fr/observations/observation-5bb31272-1e90-4626-9860-eb043fdd5089-2/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1060542.JPG,,TRUE, +N1,60624,sortie-5bb31272-1e90-4626-9860-eb043fdd5089,https://biolit.fr/sorties/sortie-5bb31272-1e90-4626-9860-eb043fdd5089/,Phil,,03/06/2017,17.0000000,17.0000000,47.839363000000,-4.042183000000,,Mousterlin - Finistère,49987,observation-5bb31272-1e90-4626-9860-eb043fdd5089-3,https://biolit.fr/observations/observation-5bb31272-1e90-4626-9860-eb043fdd5089-3/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1060541.JPG,,TRUE, +N1,60625,sortie-cad0c605-9e6f-4861-b710-dfd1b7808440,https://biolit.fr/sorties/sortie-cad0c605-9e6f-4861-b710-dfd1b7808440/,Phil,,2/21/2017 0:00,16.0:55,17.000005,48.094194000000,-4.299519000000,,Douarnenez - Finistère,49989,observation-cad0c605-9e6f-4861-b710-dfd1b7808440,https://biolit.fr/observations/observation-cad0c605-9e6f-4861-b710-dfd1b7808440/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060184.JPG,,FALSE, +N1,60625,sortie-cad0c605-9e6f-4861-b710-dfd1b7808440,https://biolit.fr/sorties/sortie-cad0c605-9e6f-4861-b710-dfd1b7808440/,Phil,,2/21/2017 0:00,16.0:55,17.000005,48.094194000000,-4.299519000000,,Douarnenez - Finistère,49991,observation-cad0c605-9e6f-4861-b710-dfd1b7808440-2,https://biolit.fr/observations/observation-cad0c605-9e6f-4861-b710-dfd1b7808440-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060186.JPG,,FALSE, +N1,60625,sortie-cad0c605-9e6f-4861-b710-dfd1b7808440,https://biolit.fr/sorties/sortie-cad0c605-9e6f-4861-b710-dfd1b7808440/,Phil,,2/21/2017 0:00,16.0:55,17.000005,48.094194000000,-4.299519000000,,Douarnenez - Finistère,49993,observation-cad0c605-9e6f-4861-b710-dfd1b7808440-3,https://biolit.fr/observations/observation-cad0c605-9e6f-4861-b710-dfd1b7808440-3/,"""Sabellaria alveolata""",Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P1060190.JPG,,TRUE, +N1,60626,sortie-4f2da967-d035-4515-835e-e77a51ac497f,https://biolit.fr/sorties/sortie-4f2da967-d035-4515-835e-e77a51ac497f/,Phil,,03/02/2017,14.0:25,14.0000000,47.969539000000,-4.445514000000,,Plozévet - Finistère,49995,observation-4f2da967-d035-4515-835e-e77a51ac497f,https://biolit.fr/observations/observation-4f2da967-d035-4515-835e-e77a51ac497f/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1060325.JPG,,TRUE, +N1,60626,sortie-4f2da967-d035-4515-835e-e77a51ac497f,https://biolit.fr/sorties/sortie-4f2da967-d035-4515-835e-e77a51ac497f/,Phil,,03/02/2017,14.0:25,14.0000000,47.969539000000,-4.445514000000,,Plozévet - Finistère,49997,observation-4f2da967-d035-4515-835e-e77a51ac497f-2,https://biolit.fr/observations/observation-4f2da967-d035-4515-835e-e77a51ac497f-2/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1060317_0.JPG,,TRUE, +N1,60626,sortie-4f2da967-d035-4515-835e-e77a51ac497f,https://biolit.fr/sorties/sortie-4f2da967-d035-4515-835e-e77a51ac497f/,Phil,,03/02/2017,14.0:25,14.0000000,47.969539000000,-4.445514000000,,Plozévet - Finistère,49999,observation-4f2da967-d035-4515-835e-e77a51ac497f-3,https://biolit.fr/observations/observation-4f2da967-d035-4515-835e-e77a51ac497f-3/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1060314_0.JPG,,TRUE, +N1,60626,sortie-4f2da967-d035-4515-835e-e77a51ac497f,https://biolit.fr/sorties/sortie-4f2da967-d035-4515-835e-e77a51ac497f/,Phil,,03/02/2017,14.0:25,14.0000000,47.969539000000,-4.445514000000,,Plozévet - Finistère,50001,observation-4f2da967-d035-4515-835e-e77a51ac497f-4,https://biolit.fr/observations/observation-4f2da967-d035-4515-835e-e77a51ac497f-4/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1060315.jpg,,TRUE, +N1,60627,sortie-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24,https://biolit.fr/sorties/sortie-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24/,Phil,,3/13/2017 0:00,13.0000000,13.0:15,47.857855000000,-3.918814000000,,Concarneau - Finistère,50003,observation-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24,https://biolit.fr/observations/observation-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/P1060615_0.JPG,,TRUE, +N1,60627,sortie-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24,https://biolit.fr/sorties/sortie-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24/,Phil,,3/13/2017 0:00,13.0000000,13.0:15,47.857855000000,-3.918814000000,,Concarneau - Finistère,50005,observation-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24-2,https://biolit.fr/observations/observation-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060614_0.JPG,,FALSE, +N1,60627,sortie-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24,https://biolit.fr/sorties/sortie-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24/,Phil,,3/13/2017 0:00,13.0000000,13.0:15,47.857855000000,-3.918814000000,,Concarneau - Finistère,50007,observation-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24-3,https://biolit.fr/observations/observation-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24-3/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/P1060608.JPG,,TRUE, +N1,60627,sortie-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24,https://biolit.fr/sorties/sortie-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24/,Phil,,3/13/2017 0:00,13.0000000,13.0:15,47.857855000000,-3.918814000000,,Concarneau - Finistère,50009,observation-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24-4,https://biolit.fr/observations/observation-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24-4/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060605.JPG,,TRUE, +N1,60627,sortie-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24,https://biolit.fr/sorties/sortie-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24/,Phil,,3/13/2017 0:00,13.0000000,13.0:15,47.857855000000,-3.918814000000,,Concarneau - Finistère,50011,observation-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24-5,https://biolit.fr/observations/observation-429c7a73-1cdf-4a15-a1a9-c4b7551aaf24-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060601.JPG,,TRUE, +N1,60628,sortie-9ab8b355-a905-4866-88ef-604a73c08fe5,https://biolit.fr/sorties/sortie-9ab8b355-a905-4866-88ef-604a73c08fe5/,ludovic,,3/22/2017 0:00,14.0000000,15.0000000,43.236075000000,5.360016000000,,plage de la bonne brise,50013,observation-9ab8b355-a905-4866-88ef-604a73c08fe5,https://biolit.fr/observations/observation-9ab8b355-a905-4866-88ef-604a73c08fe5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0062-scaled.jpg,,FALSE, +N1,60628,sortie-9ab8b355-a905-4866-88ef-604a73c08fe5,https://biolit.fr/sorties/sortie-9ab8b355-a905-4866-88ef-604a73c08fe5/,ludovic,,3/22/2017 0:00,14.0000000,15.0000000,43.236075000000,5.360016000000,,plage de la bonne brise,50015,observation-9ab8b355-a905-4866-88ef-604a73c08fe5-2,https://biolit.fr/observations/observation-9ab8b355-a905-4866-88ef-604a73c08fe5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0064-scaled.jpg,,FALSE, +N1,60628,sortie-9ab8b355-a905-4866-88ef-604a73c08fe5,https://biolit.fr/sorties/sortie-9ab8b355-a905-4866-88ef-604a73c08fe5/,ludovic,,3/22/2017 0:00,14.0000000,15.0000000,43.236075000000,5.360016000000,,plage de la bonne brise,50016,observation-9ab8b355-a905-4866-88ef-604a73c08fe5-3,https://biolit.fr/observations/observation-9ab8b355-a905-4866-88ef-604a73c08fe5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0069_0-scaled.jpg,,FALSE, +N1,60628,sortie-9ab8b355-a905-4866-88ef-604a73c08fe5,https://biolit.fr/sorties/sortie-9ab8b355-a905-4866-88ef-604a73c08fe5/,ludovic,,3/22/2017 0:00,14.0000000,15.0000000,43.236075000000,5.360016000000,,plage de la bonne brise,50018,observation-9ab8b355-a905-4866-88ef-604a73c08fe5-4,https://biolit.fr/observations/observation-9ab8b355-a905-4866-88ef-604a73c08fe5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0070-scaled.jpg,,FALSE, +N1,60628,sortie-9ab8b355-a905-4866-88ef-604a73c08fe5,https://biolit.fr/sorties/sortie-9ab8b355-a905-4866-88ef-604a73c08fe5/,ludovic,,3/22/2017 0:00,14.0000000,15.0000000,43.236075000000,5.360016000000,,plage de la bonne brise,50020,observation-9ab8b355-a905-4866-88ef-604a73c08fe5-5,https://biolit.fr/observations/observation-9ab8b355-a905-4866-88ef-604a73c08fe5-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0074-scaled.jpg,,FALSE, +N1,60628,sortie-9ab8b355-a905-4866-88ef-604a73c08fe5,https://biolit.fr/sorties/sortie-9ab8b355-a905-4866-88ef-604a73c08fe5/,ludovic,,3/22/2017 0:00,14.0000000,15.0000000,43.236075000000,5.360016000000,,plage de la bonne brise,50022,observation-9ab8b355-a905-4866-88ef-604a73c08fe5-6,https://biolit.fr/observations/observation-9ab8b355-a905-4866-88ef-604a73c08fe5-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0075-scaled.jpg,,FALSE, +N1,60629,sortie-f1c35519-7329-4698-8231-a029d3fb43ea,https://biolit.fr/sorties/sortie-f1c35519-7329-4698-8231-a029d3fb43ea/,ludovic,,3/22/2017 0:00,14.0000000,16.0000000,43.236038000000,5.36006300000,,plage de la bonne brise,50024,observation-f1c35519-7329-4698-8231-a029d3fb43ea,https://biolit.fr/observations/observation-f1c35519-7329-4698-8231-a029d3fb43ea/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0065-scaled.jpg,,FALSE, +N1,60629,sortie-f1c35519-7329-4698-8231-a029d3fb43ea,https://biolit.fr/sorties/sortie-f1c35519-7329-4698-8231-a029d3fb43ea/,ludovic,,3/22/2017 0:00,14.0000000,16.0000000,43.236038000000,5.36006300000,,plage de la bonne brise,50026,observation-f1c35519-7329-4698-8231-a029d3fb43ea-2,https://biolit.fr/observations/observation-f1c35519-7329-4698-8231-a029d3fb43ea-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0066-scaled.jpg,,FALSE, +N1,60629,sortie-f1c35519-7329-4698-8231-a029d3fb43ea,https://biolit.fr/sorties/sortie-f1c35519-7329-4698-8231-a029d3fb43ea/,ludovic,,3/22/2017 0:00,14.0000000,16.0000000,43.236038000000,5.36006300000,,plage de la bonne brise,50028,observation-f1c35519-7329-4698-8231-a029d3fb43ea-3,https://biolit.fr/observations/observation-f1c35519-7329-4698-8231-a029d3fb43ea-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0071-scaled.jpg,,FALSE, +N1,60629,sortie-f1c35519-7329-4698-8231-a029d3fb43ea,https://biolit.fr/sorties/sortie-f1c35519-7329-4698-8231-a029d3fb43ea/,ludovic,,3/22/2017 0:00,14.0000000,16.0000000,43.236038000000,5.36006300000,,plage de la bonne brise,50030,observation-f1c35519-7329-4698-8231-a029d3fb43ea-4,https://biolit.fr/observations/observation-f1c35519-7329-4698-8231-a029d3fb43ea-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0072_0-scaled.jpg,,FALSE, +N1,60629,sortie-f1c35519-7329-4698-8231-a029d3fb43ea,https://biolit.fr/sorties/sortie-f1c35519-7329-4698-8231-a029d3fb43ea/,ludovic,,3/22/2017 0:00,14.0000000,16.0000000,43.236038000000,5.36006300000,,plage de la bonne brise,50032,observation-f1c35519-7329-4698-8231-a029d3fb43ea-5,https://biolit.fr/observations/observation-f1c35519-7329-4698-8231-a029d3fb43ea-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0073-scaled.jpg,,FALSE, +N1,60629,sortie-f1c35519-7329-4698-8231-a029d3fb43ea,https://biolit.fr/sorties/sortie-f1c35519-7329-4698-8231-a029d3fb43ea/,ludovic,,3/22/2017 0:00,14.0000000,16.0000000,43.236038000000,5.36006300000,,plage de la bonne brise,50034,observation-f1c35519-7329-4698-8231-a029d3fb43ea-6,https://biolit.fr/observations/observation-f1c35519-7329-4698-8231-a029d3fb43ea-6/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0077-scaled.jpg,,TRUE, +N1,60629,sortie-f1c35519-7329-4698-8231-a029d3fb43ea,https://biolit.fr/sorties/sortie-f1c35519-7329-4698-8231-a029d3fb43ea/,ludovic,,3/22/2017 0:00,14.0000000,16.0000000,43.236038000000,5.36006300000,,plage de la bonne brise,50036,observation-f1c35519-7329-4698-8231-a029d3fb43ea-7,https://biolit.fr/observations/observation-f1c35519-7329-4698-8231-a029d3fb43ea-7/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0078-scaled.jpg,,TRUE, +N1,60630,sortie-044eaa75-9a31-41b0-9bd9-35a9d59ce73f,https://biolit.fr/sorties/sortie-044eaa75-9a31-41b0-9bd9-35a9d59ce73f/,ludovic,,3/22/2017 0:00,15.0000000,16.0000000,43.236042000000,5.360041000000,,plage de la bonne brise,50038,observation-044eaa75-9a31-41b0-9bd9-35a9d59ce73f,https://biolit.fr/observations/observation-044eaa75-9a31-41b0-9bd9-35a9d59ce73f/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0054-scaled.jpg,,TRUE, +N1,60630,sortie-044eaa75-9a31-41b0-9bd9-35a9d59ce73f,https://biolit.fr/sorties/sortie-044eaa75-9a31-41b0-9bd9-35a9d59ce73f/,ludovic,,3/22/2017 0:00,15.0000000,16.0000000,43.236042000000,5.360041000000,,plage de la bonne brise,50040,observation-044eaa75-9a31-41b0-9bd9-35a9d59ce73f-2,https://biolit.fr/observations/observation-044eaa75-9a31-41b0-9bd9-35a9d59ce73f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0055-scaled.jpg,,FALSE, +N1,60630,sortie-044eaa75-9a31-41b0-9bd9-35a9d59ce73f,https://biolit.fr/sorties/sortie-044eaa75-9a31-41b0-9bd9-35a9d59ce73f/,ludovic,,3/22/2017 0:00,15.0000000,16.0000000,43.236042000000,5.360041000000,,plage de la bonne brise,50042,observation-044eaa75-9a31-41b0-9bd9-35a9d59ce73f-3,https://biolit.fr/observations/observation-044eaa75-9a31-41b0-9bd9-35a9d59ce73f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0056-scaled.jpg,,FALSE, +N1,60630,sortie-044eaa75-9a31-41b0-9bd9-35a9d59ce73f,https://biolit.fr/sorties/sortie-044eaa75-9a31-41b0-9bd9-35a9d59ce73f/,ludovic,,3/22/2017 0:00,15.0000000,16.0000000,43.236042000000,5.360041000000,,plage de la bonne brise,50044,observation-044eaa75-9a31-41b0-9bd9-35a9d59ce73f-4,https://biolit.fr/observations/observation-044eaa75-9a31-41b0-9bd9-35a9d59ce73f-4/,Cardita calyculata,Cardite petit calice,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0058-scaled.jpg,,TRUE, +N1,60630,sortie-044eaa75-9a31-41b0-9bd9-35a9d59ce73f,https://biolit.fr/sorties/sortie-044eaa75-9a31-41b0-9bd9-35a9d59ce73f/,ludovic,,3/22/2017 0:00,15.0000000,16.0000000,43.236042000000,5.360041000000,,plage de la bonne brise,50046,observation-044eaa75-9a31-41b0-9bd9-35a9d59ce73f-5,https://biolit.fr/observations/observation-044eaa75-9a31-41b0-9bd9-35a9d59ce73f-5/,Cardita calyculata,Cardite petit calice,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0060-scaled.jpg,,TRUE, +N1,60630,sortie-044eaa75-9a31-41b0-9bd9-35a9d59ce73f,https://biolit.fr/sorties/sortie-044eaa75-9a31-41b0-9bd9-35a9d59ce73f/,ludovic,,3/22/2017 0:00,15.0000000,16.0000000,43.236042000000,5.360041000000,,plage de la bonne brise,50048,observation-044eaa75-9a31-41b0-9bd9-35a9d59ce73f-6,https://biolit.fr/observations/observation-044eaa75-9a31-41b0-9bd9-35a9d59ce73f-6/,Cardita calyculata,Cardite petit calice,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0061-scaled.jpg,,TRUE, +N1,60631,sortie-a0144353-3f71-4334-a1dc-f0f603f47288,https://biolit.fr/sorties/sortie-a0144353-3f71-4334-a1dc-f0f603f47288/,ludovic,,3/22/2017 0:00,14.0000000,15.0000000,43.236041000000,5.360043000000,,plage de la bonne brise,50050,observation-a0144353-3f71-4334-a1dc-f0f603f47288,https://biolit.fr/observations/observation-a0144353-3f71-4334-a1dc-f0f603f47288/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0043_0-scaled.jpg,,TRUE, +N1,60631,sortie-a0144353-3f71-4334-a1dc-f0f603f47288,https://biolit.fr/sorties/sortie-a0144353-3f71-4334-a1dc-f0f603f47288/,ludovic,,3/22/2017 0:00,14.0000000,15.0000000,43.236041000000,5.360043000000,,plage de la bonne brise,50052,observation-a0144353-3f71-4334-a1dc-f0f603f47288-2,https://biolit.fr/observations/observation-a0144353-3f71-4334-a1dc-f0f603f47288-2/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0044_0-scaled.jpg,,TRUE, +N1,60631,sortie-a0144353-3f71-4334-a1dc-f0f603f47288,https://biolit.fr/sorties/sortie-a0144353-3f71-4334-a1dc-f0f603f47288/,ludovic,,3/22/2017 0:00,14.0000000,15.0000000,43.236041000000,5.360043000000,,plage de la bonne brise,50054,observation-a0144353-3f71-4334-a1dc-f0f603f47288-3,https://biolit.fr/observations/observation-a0144353-3f71-4334-a1dc-f0f603f47288-3/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0045-scaled.jpg,,TRUE, +N1,60631,sortie-a0144353-3f71-4334-a1dc-f0f603f47288,https://biolit.fr/sorties/sortie-a0144353-3f71-4334-a1dc-f0f603f47288/,ludovic,,3/22/2017 0:00,14.0000000,15.0000000,43.236041000000,5.360043000000,,plage de la bonne brise,50056,observation-a0144353-3f71-4334-a1dc-f0f603f47288-4,https://biolit.fr/observations/observation-a0144353-3f71-4334-a1dc-f0f603f47288-4/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0046_0-scaled.jpg,,TRUE, +N1,60631,sortie-a0144353-3f71-4334-a1dc-f0f603f47288,https://biolit.fr/sorties/sortie-a0144353-3f71-4334-a1dc-f0f603f47288/,ludovic,,3/22/2017 0:00,14.0000000,15.0000000,43.236041000000,5.360043000000,,plage de la bonne brise,50058,observation-a0144353-3f71-4334-a1dc-f0f603f47288-5,https://biolit.fr/observations/observation-a0144353-3f71-4334-a1dc-f0f603f47288-5/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC_0047_0-scaled.jpg,,TRUE, +N1,60631,sortie-a0144353-3f71-4334-a1dc-f0f603f47288,https://biolit.fr/sorties/sortie-a0144353-3f71-4334-a1dc-f0f603f47288/,ludovic,,3/22/2017 0:00,14.0000000,15.0000000,43.236041000000,5.360043000000,,plage de la bonne brise,50060,observation-a0144353-3f71-4334-a1dc-f0f603f47288-6,https://biolit.fr/observations/observation-a0144353-3f71-4334-a1dc-f0f603f47288-6/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC_0048-scaled.jpg,,TRUE, +N1,60631,sortie-a0144353-3f71-4334-a1dc-f0f603f47288,https://biolit.fr/sorties/sortie-a0144353-3f71-4334-a1dc-f0f603f47288/,ludovic,,3/22/2017 0:00,14.0000000,15.0000000,43.236041000000,5.360043000000,,plage de la bonne brise,50062,observation-a0144353-3f71-4334-a1dc-f0f603f47288-7,https://biolit.fr/observations/observation-a0144353-3f71-4334-a1dc-f0f603f47288-7/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0049-scaled.jpg,,TRUE, +N1,60631,sortie-a0144353-3f71-4334-a1dc-f0f603f47288,https://biolit.fr/sorties/sortie-a0144353-3f71-4334-a1dc-f0f603f47288/,ludovic,,3/22/2017 0:00,14.0000000,15.0000000,43.236041000000,5.360043000000,,plage de la bonne brise,50064,observation-a0144353-3f71-4334-a1dc-f0f603f47288-8,https://biolit.fr/observations/observation-a0144353-3f71-4334-a1dc-f0f603f47288-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0050_0-scaled.jpg,,FALSE, +N1,60632,sortie-6d26234b-d2f2-40b5-92b8-229b3a391af1,https://biolit.fr/sorties/sortie-6d26234b-d2f2-40b5-92b8-229b3a391af1/,NVanzu,,3/22/2017 0:00,14.0000000,14.0000000,43.233146000000,5.356258000000,,Plage de la bonne brise,50066,observation-6d26234b-d2f2-40b5-92b8-229b3a391af1,https://biolit.fr/observations/observation-6d26234b-d2f2-40b5-92b8-229b3a391af1/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3220172-scaled.jpg,,FALSE, +N1,60632,sortie-6d26234b-d2f2-40b5-92b8-229b3a391af1,https://biolit.fr/sorties/sortie-6d26234b-d2f2-40b5-92b8-229b3a391af1/,NVanzu,,3/22/2017 0:00,14.0000000,14.0000000,43.233146000000,5.356258000000,,Plage de la bonne brise,50068,observation-6d26234b-d2f2-40b5-92b8-229b3a391af1-2,https://biolit.fr/observations/observation-6d26234b-d2f2-40b5-92b8-229b3a391af1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3220173-scaled.jpg,,FALSE, +N1,60632,sortie-6d26234b-d2f2-40b5-92b8-229b3a391af1,https://biolit.fr/sorties/sortie-6d26234b-d2f2-40b5-92b8-229b3a391af1/,NVanzu,,3/22/2017 0:00,14.0000000,14.0000000,43.233146000000,5.356258000000,,Plage de la bonne brise,50070,observation-6d26234b-d2f2-40b5-92b8-229b3a391af1-3,https://biolit.fr/observations/observation-6d26234b-d2f2-40b5-92b8-229b3a391af1-3/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/P3220176-scaled.jpg,,TRUE, +N1,60632,sortie-6d26234b-d2f2-40b5-92b8-229b3a391af1,https://biolit.fr/sorties/sortie-6d26234b-d2f2-40b5-92b8-229b3a391af1/,NVanzu,,3/22/2017 0:00,14.0000000,14.0000000,43.233146000000,5.356258000000,,Plage de la bonne brise,50072,observation-6d26234b-d2f2-40b5-92b8-229b3a391af1-4,https://biolit.fr/observations/observation-6d26234b-d2f2-40b5-92b8-229b3a391af1-4/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/P3220177-scaled.jpg,,TRUE, +N1,60632,sortie-6d26234b-d2f2-40b5-92b8-229b3a391af1,https://biolit.fr/sorties/sortie-6d26234b-d2f2-40b5-92b8-229b3a391af1/,NVanzu,,3/22/2017 0:00,14.0000000,14.0000000,43.233146000000,5.356258000000,,Plage de la bonne brise,50074,observation-6d26234b-d2f2-40b5-92b8-229b3a391af1-5,https://biolit.fr/observations/observation-6d26234b-d2f2-40b5-92b8-229b3a391af1-5/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/P3220178-scaled.jpg,,TRUE, +N1,60632,sortie-6d26234b-d2f2-40b5-92b8-229b3a391af1,https://biolit.fr/sorties/sortie-6d26234b-d2f2-40b5-92b8-229b3a391af1/,NVanzu,,3/22/2017 0:00,14.0000000,14.0000000,43.233146000000,5.356258000000,,Plage de la bonne brise,50076,observation-6d26234b-d2f2-40b5-92b8-229b3a391af1-6,https://biolit.fr/observations/observation-6d26234b-d2f2-40b5-92b8-229b3a391af1-6/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/P3220179-scaled.jpg,,TRUE, +N1,60632,sortie-6d26234b-d2f2-40b5-92b8-229b3a391af1,https://biolit.fr/sorties/sortie-6d26234b-d2f2-40b5-92b8-229b3a391af1/,NVanzu,,3/22/2017 0:00,14.0000000,14.0000000,43.233146000000,5.356258000000,,Plage de la bonne brise,50078,observation-6d26234b-d2f2-40b5-92b8-229b3a391af1-7,https://biolit.fr/observations/observation-6d26234b-d2f2-40b5-92b8-229b3a391af1-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3220180-scaled.jpg,,FALSE, +N1,60632,sortie-6d26234b-d2f2-40b5-92b8-229b3a391af1,https://biolit.fr/sorties/sortie-6d26234b-d2f2-40b5-92b8-229b3a391af1/,NVanzu,,3/22/2017 0:00,14.0000000,14.0000000,43.233146000000,5.356258000000,,Plage de la bonne brise,50080,observation-6d26234b-d2f2-40b5-92b8-229b3a391af1-8,https://biolit.fr/observations/observation-6d26234b-d2f2-40b5-92b8-229b3a391af1-8/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/P3220182-scaled.jpg,,TRUE, +N1,60633,sortie-daf13fcd-3a2e-49bb-a547-27988412c005,https://biolit.fr/sorties/sortie-daf13fcd-3a2e-49bb-a547-27988412c005/,NVanzu,,3/22/2017 0:00,14.0000000,14.0000000,43.233201000000,5.356312000000,,Plage de la bonne brise,50082,observation-daf13fcd-3a2e-49bb-a547-27988412c005,https://biolit.fr/observations/observation-daf13fcd-3a2e-49bb-a547-27988412c005/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P3220158-scaled.jpg,,TRUE, +N1,60633,sortie-daf13fcd-3a2e-49bb-a547-27988412c005,https://biolit.fr/sorties/sortie-daf13fcd-3a2e-49bb-a547-27988412c005/,NVanzu,,3/22/2017 0:00,14.0000000,14.0000000,43.233201000000,5.356312000000,,Plage de la bonne brise,50084,observation-daf13fcd-3a2e-49bb-a547-27988412c005-2,https://biolit.fr/observations/observation-daf13fcd-3a2e-49bb-a547-27988412c005-2/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/P3220161-scaled.jpg,,TRUE, +N1,60633,sortie-daf13fcd-3a2e-49bb-a547-27988412c005,https://biolit.fr/sorties/sortie-daf13fcd-3a2e-49bb-a547-27988412c005/,NVanzu,,3/22/2017 0:00,14.0000000,14.0000000,43.233201000000,5.356312000000,,Plage de la bonne brise,50086,observation-daf13fcd-3a2e-49bb-a547-27988412c005-3,https://biolit.fr/observations/observation-daf13fcd-3a2e-49bb-a547-27988412c005-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3220162-scaled.jpg,,FALSE, +N1,60633,sortie-daf13fcd-3a2e-49bb-a547-27988412c005,https://biolit.fr/sorties/sortie-daf13fcd-3a2e-49bb-a547-27988412c005/,NVanzu,,3/22/2017 0:00,14.0000000,14.0000000,43.233201000000,5.356312000000,,Plage de la bonne brise,50088,observation-daf13fcd-3a2e-49bb-a547-27988412c005-4,https://biolit.fr/observations/observation-daf13fcd-3a2e-49bb-a547-27988412c005-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3220163-scaled.jpg,,FALSE, +N1,60633,sortie-daf13fcd-3a2e-49bb-a547-27988412c005,https://biolit.fr/sorties/sortie-daf13fcd-3a2e-49bb-a547-27988412c005/,NVanzu,,3/22/2017 0:00,14.0000000,14.0000000,43.233201000000,5.356312000000,,Plage de la bonne brise,50090,observation-daf13fcd-3a2e-49bb-a547-27988412c005-5,https://biolit.fr/observations/observation-daf13fcd-3a2e-49bb-a547-27988412c005-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3220165-scaled.jpg,,FALSE, +N1,60633,sortie-daf13fcd-3a2e-49bb-a547-27988412c005,https://biolit.fr/sorties/sortie-daf13fcd-3a2e-49bb-a547-27988412c005/,NVanzu,,3/22/2017 0:00,14.0000000,14.0000000,43.233201000000,5.356312000000,,Plage de la bonne brise,50092,observation-daf13fcd-3a2e-49bb-a547-27988412c005-6,https://biolit.fr/observations/observation-daf13fcd-3a2e-49bb-a547-27988412c005-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3220170-scaled.jpg,,FALSE, +N1,60633,sortie-daf13fcd-3a2e-49bb-a547-27988412c005,https://biolit.fr/sorties/sortie-daf13fcd-3a2e-49bb-a547-27988412c005/,NVanzu,,3/22/2017 0:00,14.0000000,14.0000000,43.233201000000,5.356312000000,,Plage de la bonne brise,50094,observation-daf13fcd-3a2e-49bb-a547-27988412c005-7,https://biolit.fr/observations/observation-daf13fcd-3a2e-49bb-a547-27988412c005-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P3220171-scaled.jpg,,FALSE, +N1,60634,sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38,https://biolit.fr/sorties/sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38/,CPIE Iles de Lérins et Pays d'Azur,,03/09/2017,11.0000000,13.0000000,43.523520000000,7.032370000000,,Ile Sainte Marguerite,50096,observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38,https://biolit.fr/observations/observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38/,Callistoctopus macropus,Poulpe tacheté,,https://biolit.fr/wp-content/uploads/2023/07/20170309_112843-scaled.jpg,,TRUE, +N1,60634,sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38,https://biolit.fr/sorties/sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38/,CPIE Iles de Lérins et Pays d'Azur,,03/09/2017,11.0000000,13.0000000,43.523520000000,7.032370000000,,Ile Sainte Marguerite,50098,observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-2,https://biolit.fr/observations/observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-2/,Callistoctopus macropus,Poulpe tacheté,,https://biolit.fr/wp-content/uploads/2023/07/20170309_112846-scaled.jpg,,TRUE, +N1,60634,sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38,https://biolit.fr/sorties/sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38/,CPIE Iles de Lérins et Pays d'Azur,,03/09/2017,11.0000000,13.0000000,43.523520000000,7.032370000000,,Ile Sainte Marguerite,50100,observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-3,https://biolit.fr/observations/observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-3/,Callistoctopus macropus,Poulpe tacheté,,https://biolit.fr/wp-content/uploads/2023/07/20170309_112848-scaled.jpg,,TRUE, +N1,60634,sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38,https://biolit.fr/sorties/sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38/,CPIE Iles de Lérins et Pays d'Azur,,03/09/2017,11.0000000,13.0000000,43.523520000000,7.032370000000,,Ile Sainte Marguerite,50102,observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-4,https://biolit.fr/observations/observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-4/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/20170309_114548-scaled.jpg,,TRUE, +N1,60634,sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38,https://biolit.fr/sorties/sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38/,CPIE Iles de Lérins et Pays d'Azur,,03/09/2017,11.0000000,13.0000000,43.523520000000,7.032370000000,,Ile Sainte Marguerite,50104,observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-5,https://biolit.fr/observations/observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-5/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/2023/07/20170309_114700-scaled.jpg,,TRUE, +N1,60634,sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38,https://biolit.fr/sorties/sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38/,CPIE Iles de Lérins et Pays d'Azur,,03/09/2017,11.0000000,13.0000000,43.523520000000,7.032370000000,,Ile Sainte Marguerite,50106,observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-6,https://biolit.fr/observations/observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-6/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/20170309_114811-scaled.jpg,,TRUE, +N1,60634,sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38,https://biolit.fr/sorties/sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38/,CPIE Iles de Lérins et Pays d'Azur,,03/09/2017,11.0000000,13.0000000,43.523520000000,7.032370000000,,Ile Sainte Marguerite,50108,observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-7,https://biolit.fr/observations/observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-7/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/20170309_114822-scaled.jpg,,TRUE, +N1,60634,sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38,https://biolit.fr/sorties/sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38/,CPIE Iles de Lérins et Pays d'Azur,,03/09/2017,11.0000000,13.0000000,43.523520000000,7.032370000000,,Ile Sainte Marguerite,50110,observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-8,https://biolit.fr/observations/observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-8/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/DSCN1017.JPG,,TRUE, +N1,60634,sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38,https://biolit.fr/sorties/sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38/,CPIE Iles de Lérins et Pays d'Azur,,03/09/2017,11.0000000,13.0000000,43.523520000000,7.032370000000,,Ile Sainte Marguerite,50112,observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-9,https://biolit.fr/observations/observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN1029.JPG,,FALSE, +N1,60634,sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38,https://biolit.fr/sorties/sortie-874f1057-6ef4-48c3-98fe-cbda52cf9c38/,CPIE Iles de Lérins et Pays d'Azur,,03/09/2017,11.0000000,13.0000000,43.523520000000,7.032370000000,,Ile Sainte Marguerite,50114,observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-10,https://biolit.fr/observations/observation-874f1057-6ef4-48c3-98fe-cbda52cf9c38-10/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/DSCN1040.JPG,,TRUE, +N1,60635,sortie-7543ef6d-6966-451e-9bb9-929282c7597a,https://biolit.fr/sorties/sortie-7543ef6d-6966-451e-9bb9-929282c7597a/,Audrey,,3/15/2017 0:00,14.0000000,15.0000000,47.838959000000,-4.346708000000,,Plage de la Torche,50116,observation-7543ef6d-6966-451e-9bb9-929282c7597a,https://biolit.fr/observations/observation-7543ef6d-6966-451e-9bb9-929282c7597a/,,,,https://biolit.fr/wp-content/uploads/2023/07/Obs_Esp_Inconnue.jpg,,FALSE, +N1,60636,sortie-b392e94d-8032-4b20-abcb-34bb16ec8298,https://biolit.fr/sorties/sortie-b392e94d-8032-4b20-abcb-34bb16ec8298/,Audrey,,3/15/2017 0:00,14.0000000,15.0000000,47.838408000000,-4.348672000000,,Plage de la Torche,50118,observation-b392e94d-8032-4b20-abcb-34bb16ec8298,https://biolit.fr/observations/observation-b392e94d-8032-4b20-abcb-34bb16ec8298/,,,,https://biolit.fr/wp-content/uploads/2023/07/Obs_Moules1.jpg,,FALSE, +N1,60636,sortie-b392e94d-8032-4b20-abcb-34bb16ec8298,https://biolit.fr/sorties/sortie-b392e94d-8032-4b20-abcb-34bb16ec8298/,Audrey,,3/15/2017 0:00,14.0000000,15.0000000,47.838408000000,-4.348672000000,,Plage de la Torche,50120,observation-b392e94d-8032-4b20-abcb-34bb16ec8298-2,https://biolit.fr/observations/observation-b392e94d-8032-4b20-abcb-34bb16ec8298-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Obs_Moules2.jpg,,FALSE, +N1,60636,sortie-b392e94d-8032-4b20-abcb-34bb16ec8298,https://biolit.fr/sorties/sortie-b392e94d-8032-4b20-abcb-34bb16ec8298/,Audrey,,3/15/2017 0:00,14.0000000,15.0000000,47.838408000000,-4.348672000000,,Plage de la Torche,50122,observation-b392e94d-8032-4b20-abcb-34bb16ec8298-3,https://biolit.fr/observations/observation-b392e94d-8032-4b20-abcb-34bb16ec8298-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Obs_Moules3.jpg,,FALSE, +N1,60636,sortie-b392e94d-8032-4b20-abcb-34bb16ec8298,https://biolit.fr/sorties/sortie-b392e94d-8032-4b20-abcb-34bb16ec8298/,Audrey,,3/15/2017 0:00,14.0000000,15.0000000,47.838408000000,-4.348672000000,,Plage de la Torche,50124,observation-b392e94d-8032-4b20-abcb-34bb16ec8298-4,https://biolit.fr/observations/observation-b392e94d-8032-4b20-abcb-34bb16ec8298-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Obs_Moules4.jpg,,TRUE, +N1,60637,sortie-7663b43b-1b32-4e1b-b2a2-66b464ae07d1,https://biolit.fr/sorties/sortie-7663b43b-1b32-4e1b-b2a2-66b464ae07d1/,collège paul Eluard,,03/06/2017,14.0000000,15.0000000,50.707164000000,1.576710000000,,commune de le portel plage de ningles ,50126,observation-7663b43b-1b32-4e1b-b2a2-66b464ae07d1,https://biolit.fr/observations/observation-7663b43b-1b32-4e1b-b2a2-66b464ae07d1/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/jeanne-scaled.jpg,,TRUE, +N1,60637,sortie-7663b43b-1b32-4e1b-b2a2-66b464ae07d1,https://biolit.fr/sorties/sortie-7663b43b-1b32-4e1b-b2a2-66b464ae07d1/,collège paul Eluard,,03/06/2017,14.0000000,15.0000000,50.707164000000,1.576710000000,,commune de le portel plage de ningles ,50127,observation-7663b43b-1b32-4e1b-b2a2-66b464ae07d1-2,https://biolit.fr/observations/observation-7663b43b-1b32-4e1b-b2a2-66b464ae07d1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Clara-scaled.jpg,,FALSE, +N1,60638,sortie-11b5ed87-0e4e-42a9-a72e-ca3c85699ae1,https://biolit.fr/sorties/sortie-11b5ed87-0e4e-42a9-a72e-ca3c85699ae1/,collège paul Eluard,,03/06/2017,14.0000000,20.0000000,50.691,1.562,,Commune du Portel ,50129,observation-11b5ed87-0e4e-42a9-a72e-ca3c85699ae1,https://biolit.fr/observations/observation-11b5ed87-0e4e-42a9-a72e-ca3c85699ae1/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/BigorNanou-scaled.jpg,,TRUE, +N1,60638,sortie-11b5ed87-0e4e-42a9-a72e-ca3c85699ae1,https://biolit.fr/sorties/sortie-11b5ed87-0e4e-42a9-a72e-ca3c85699ae1/,collège paul Eluard,,03/06/2017,14.0000000,20.0000000,50.691,1.562,,Commune du Portel ,50131,observation-11b5ed87-0e4e-42a9-a72e-ca3c85699ae1-2,https://biolit.fr/observations/observation-11b5ed87-0e4e-42a9-a72e-ca3c85699ae1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/PatelleLaly-scaled.jpg,,FALSE, +N1,60639,sortie-72952314-cca1-41e1-b04a-7d1a4750b13a,https://biolit.fr/sorties/sortie-72952314-cca1-41e1-b04a-7d1a4750b13a/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209596000000,5.372547000000,,plage Calanque de Marseilleveyre,50133,observation-72952314-cca1-41e1-b04a-7d1a4750b13a,https://biolit.fr/observations/observation-72952314-cca1-41e1-b04a-7d1a4750b13a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110723.JPG,,FALSE, +N1,60639,sortie-72952314-cca1-41e1-b04a-7d1a4750b13a,https://biolit.fr/sorties/sortie-72952314-cca1-41e1-b04a-7d1a4750b13a/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209596000000,5.372547000000,,plage Calanque de Marseilleveyre,50135,observation-72952314-cca1-41e1-b04a-7d1a4750b13a-2,https://biolit.fr/observations/observation-72952314-cca1-41e1-b04a-7d1a4750b13a-2/,Striarca lactea,Striarca laiteuse,,https://biolit.fr/wp-content/uploads/2023/07/P1110725.JPG,,TRUE, +N1,60639,sortie-72952314-cca1-41e1-b04a-7d1a4750b13a,https://biolit.fr/sorties/sortie-72952314-cca1-41e1-b04a-7d1a4750b13a/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209596000000,5.372547000000,,plage Calanque de Marseilleveyre,50137,observation-72952314-cca1-41e1-b04a-7d1a4750b13a-3,https://biolit.fr/observations/observation-72952314-cca1-41e1-b04a-7d1a4750b13a-3/,Striarca lactea,Striarca laiteuse,,https://biolit.fr/wp-content/uploads/2023/07/P1110727.JPG,,TRUE, +N1,60639,sortie-72952314-cca1-41e1-b04a-7d1a4750b13a,https://biolit.fr/sorties/sortie-72952314-cca1-41e1-b04a-7d1a4750b13a/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209596000000,5.372547000000,,plage Calanque de Marseilleveyre,50139,observation-72952314-cca1-41e1-b04a-7d1a4750b13a-4,https://biolit.fr/observations/observation-72952314-cca1-41e1-b04a-7d1a4750b13a-4/,Cardita calyculata,Cardite petit calice,,https://biolit.fr/wp-content/uploads/2023/07/P1110728.JPG,,TRUE, +N1,60639,sortie-72952314-cca1-41e1-b04a-7d1a4750b13a,https://biolit.fr/sorties/sortie-72952314-cca1-41e1-b04a-7d1a4750b13a/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209596000000,5.372547000000,,plage Calanque de Marseilleveyre,50141,observation-72952314-cca1-41e1-b04a-7d1a4750b13a-5,https://biolit.fr/observations/observation-72952314-cca1-41e1-b04a-7d1a4750b13a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110730.JPG,,FALSE, +N1,60639,sortie-72952314-cca1-41e1-b04a-7d1a4750b13a,https://biolit.fr/sorties/sortie-72952314-cca1-41e1-b04a-7d1a4750b13a/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209596000000,5.372547000000,,plage Calanque de Marseilleveyre,50143,observation-72952314-cca1-41e1-b04a-7d1a4750b13a-6,https://biolit.fr/observations/observation-72952314-cca1-41e1-b04a-7d1a4750b13a-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110731.JPG,,FALSE, +N1,60639,sortie-72952314-cca1-41e1-b04a-7d1a4750b13a,https://biolit.fr/sorties/sortie-72952314-cca1-41e1-b04a-7d1a4750b13a/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209596000000,5.372547000000,,plage Calanque de Marseilleveyre,50145,observation-72952314-cca1-41e1-b04a-7d1a4750b13a-7,https://biolit.fr/observations/observation-72952314-cca1-41e1-b04a-7d1a4750b13a-7/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/P1110733.JPG,,TRUE, +N1,60639,sortie-72952314-cca1-41e1-b04a-7d1a4750b13a,https://biolit.fr/sorties/sortie-72952314-cca1-41e1-b04a-7d1a4750b13a/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209596000000,5.372547000000,,plage Calanque de Marseilleveyre,50147,observation-72952314-cca1-41e1-b04a-7d1a4750b13a-8,https://biolit.fr/observations/observation-72952314-cca1-41e1-b04a-7d1a4750b13a-8/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/P1110734.JPG,,TRUE, +N1,60640,sortie-3462feab-c059-4e60-a37a-b770064c7bfa,https://biolit.fr/sorties/sortie-3462feab-c059-4e60-a37a-b770064c7bfa/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209633000000,5.372547000000,,plage Calanque de Marseilleveyre,50149,observation-3462feab-c059-4e60-a37a-b770064c7bfa,https://biolit.fr/observations/observation-3462feab-c059-4e60-a37a-b770064c7bfa/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110711.JPG,,FALSE, +N1,60640,sortie-3462feab-c059-4e60-a37a-b770064c7bfa,https://biolit.fr/sorties/sortie-3462feab-c059-4e60-a37a-b770064c7bfa/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209633000000,5.372547000000,,plage Calanque de Marseilleveyre,50151,observation-3462feab-c059-4e60-a37a-b770064c7bfa-2,https://biolit.fr/observations/observation-3462feab-c059-4e60-a37a-b770064c7bfa-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110712.JPG,,FALSE, +N1,60640,sortie-3462feab-c059-4e60-a37a-b770064c7bfa,https://biolit.fr/sorties/sortie-3462feab-c059-4e60-a37a-b770064c7bfa/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209633000000,5.372547000000,,plage Calanque de Marseilleveyre,50153,observation-3462feab-c059-4e60-a37a-b770064c7bfa-3,https://biolit.fr/observations/observation-3462feab-c059-4e60-a37a-b770064c7bfa-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110714.JPG,,FALSE, +N1,60640,sortie-3462feab-c059-4e60-a37a-b770064c7bfa,https://biolit.fr/sorties/sortie-3462feab-c059-4e60-a37a-b770064c7bfa/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209633000000,5.372547000000,,plage Calanque de Marseilleveyre,50155,observation-3462feab-c059-4e60-a37a-b770064c7bfa-4,https://biolit.fr/observations/observation-3462feab-c059-4e60-a37a-b770064c7bfa-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110716.JPG,,FALSE, +N1,60640,sortie-3462feab-c059-4e60-a37a-b770064c7bfa,https://biolit.fr/sorties/sortie-3462feab-c059-4e60-a37a-b770064c7bfa/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209633000000,5.372547000000,,plage Calanque de Marseilleveyre,50157,observation-3462feab-c059-4e60-a37a-b770064c7bfa-5,https://biolit.fr/observations/observation-3462feab-c059-4e60-a37a-b770064c7bfa-5/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/P1110717.JPG,,TRUE, +N1,60640,sortie-3462feab-c059-4e60-a37a-b770064c7bfa,https://biolit.fr/sorties/sortie-3462feab-c059-4e60-a37a-b770064c7bfa/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209633000000,5.372547000000,,plage Calanque de Marseilleveyre,50159,observation-3462feab-c059-4e60-a37a-b770064c7bfa-6,https://biolit.fr/observations/observation-3462feab-c059-4e60-a37a-b770064c7bfa-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110719.JPG,,FALSE, +N1,60640,sortie-3462feab-c059-4e60-a37a-b770064c7bfa,https://biolit.fr/sorties/sortie-3462feab-c059-4e60-a37a-b770064c7bfa/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209633000000,5.372547000000,,plage Calanque de Marseilleveyre,50161,observation-3462feab-c059-4e60-a37a-b770064c7bfa-7,https://biolit.fr/observations/observation-3462feab-c059-4e60-a37a-b770064c7bfa-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110720.JPG,,FALSE, +N1,60640,sortie-3462feab-c059-4e60-a37a-b770064c7bfa,https://biolit.fr/sorties/sortie-3462feab-c059-4e60-a37a-b770064c7bfa/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209633000000,5.372547000000,,plage Calanque de Marseilleveyre,50163,observation-3462feab-c059-4e60-a37a-b770064c7bfa-8,https://biolit.fr/observations/observation-3462feab-c059-4e60-a37a-b770064c7bfa-8/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/P1110721.JPG,,TRUE, +N1,60641,sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d,https://biolit.fr/sorties/sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209587000000,5.372585000000,,plage Calanque de Marseilleveyre,50165,observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d,https://biolit.fr/observations/observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/2023/07/P1110688.JPG,,TRUE, +N1,60641,sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d,https://biolit.fr/sorties/sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209587000000,5.372585000000,,plage Calanque de Marseilleveyre,50167,observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d-2,https://biolit.fr/observations/observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110700.JPG,,FALSE, +N1,60641,sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d,https://biolit.fr/sorties/sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209587000000,5.372585000000,,plage Calanque de Marseilleveyre,50169,observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d-3,https://biolit.fr/observations/observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110702.JPG,,FALSE, +N1,60641,sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d,https://biolit.fr/sorties/sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209587000000,5.372585000000,,plage Calanque de Marseilleveyre,50171,observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d-4,https://biolit.fr/observations/observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d-4/,Diodora graeca,Fissurelle,,https://biolit.fr/wp-content/uploads/2023/07/P1110705_0.JPG,,TRUE, +N1,60641,sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d,https://biolit.fr/sorties/sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209587000000,5.372585000000,,plage Calanque de Marseilleveyre,50173,observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d-5,https://biolit.fr/observations/observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d-5/,Diodora graeca,Fissurelle,,https://biolit.fr/wp-content/uploads/2023/07/P1110706.JPG,,TRUE, +N1,60641,sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d,https://biolit.fr/sorties/sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209587000000,5.372585000000,,plage Calanque de Marseilleveyre,50175,observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d-6,https://biolit.fr/observations/observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110707_0.JPG,,FALSE, +N1,60641,sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d,https://biolit.fr/sorties/sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209587000000,5.372585000000,,plage Calanque de Marseilleveyre,50177,observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d-7,https://biolit.fr/observations/observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110708.JPG,,FALSE, +N1,60641,sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d,https://biolit.fr/sorties/sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209587000000,5.372585000000,,plage Calanque de Marseilleveyre,50179,observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d-8,https://biolit.fr/observations/observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110709.JPG,,FALSE, +N1,60641,sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d,https://biolit.fr/sorties/sortie-37b33a3a-5766-4d60-bd30-a6e09ee29f8d/,ludovic,,3/15/2017 0:00,14.0000000,16.0000000,43.209587000000,5.372585000000,,plage Calanque de Marseilleveyre,50181,observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d-9,https://biolit.fr/observations/observation-37b33a3a-5766-4d60-bd30-a6e09ee29f8d-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110710.JPG,,FALSE, +N1,60642,sortie-df4449c5-ccd3-4046-9e13-8988ce082797,https://biolit.fr/sorties/sortie-df4449c5-ccd3-4046-9e13-8988ce082797/,Phil,,3/13/2017 0:00,14.0000000,14.0000000,47.856390000000,-3.919832000000,,Concarneau - Finistère,50183,observation-df4449c5-ccd3-4046-9e13-8988ce082797,https://biolit.fr/observations/observation-df4449c5-ccd3-4046-9e13-8988ce082797/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060723.JPG,,FALSE, +N1,60642,sortie-df4449c5-ccd3-4046-9e13-8988ce082797,https://biolit.fr/sorties/sortie-df4449c5-ccd3-4046-9e13-8988ce082797/,Phil,,3/13/2017 0:00,14.0000000,14.0000000,47.856390000000,-3.919832000000,,Concarneau - Finistère,50185,observation-df4449c5-ccd3-4046-9e13-8988ce082797-2,https://biolit.fr/observations/observation-df4449c5-ccd3-4046-9e13-8988ce082797-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060724.JPG,,FALSE, +N1,60642,sortie-df4449c5-ccd3-4046-9e13-8988ce082797,https://biolit.fr/sorties/sortie-df4449c5-ccd3-4046-9e13-8988ce082797/,Phil,,3/13/2017 0:00,14.0000000,14.0000000,47.856390000000,-3.919832000000,,Concarneau - Finistère,50187,observation-df4449c5-ccd3-4046-9e13-8988ce082797-3,https://biolit.fr/observations/observation-df4449c5-ccd3-4046-9e13-8988ce082797-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060697_0.JPG,,FALSE, +N1,60642,sortie-df4449c5-ccd3-4046-9e13-8988ce082797,https://biolit.fr/sorties/sortie-df4449c5-ccd3-4046-9e13-8988ce082797/,Phil,,3/13/2017 0:00,14.0000000,14.0000000,47.856390000000,-3.919832000000,,Concarneau - Finistère,50189,observation-df4449c5-ccd3-4046-9e13-8988ce082797-4,https://biolit.fr/observations/observation-df4449c5-ccd3-4046-9e13-8988ce082797-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060705.JPG,,FALSE, +N1,60642,sortie-df4449c5-ccd3-4046-9e13-8988ce082797,https://biolit.fr/sorties/sortie-df4449c5-ccd3-4046-9e13-8988ce082797/,Phil,,3/13/2017 0:00,14.0000000,14.0000000,47.856390000000,-3.919832000000,,Concarneau - Finistère,50191,observation-df4449c5-ccd3-4046-9e13-8988ce082797-5,https://biolit.fr/observations/observation-df4449c5-ccd3-4046-9e13-8988ce082797-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060726.JPG,,FALSE, +N1,60642,sortie-df4449c5-ccd3-4046-9e13-8988ce082797,https://biolit.fr/sorties/sortie-df4449c5-ccd3-4046-9e13-8988ce082797/,Phil,,3/13/2017 0:00,14.0000000,14.0000000,47.856390000000,-3.919832000000,,Concarneau - Finistère,50193,observation-df4449c5-ccd3-4046-9e13-8988ce082797-6,https://biolit.fr/observations/observation-df4449c5-ccd3-4046-9e13-8988ce082797-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060717.JPG,,FALSE, +N1,60643,sortie-211d638b-2568-4bd2-9d5c-5f28996b3ebc,https://biolit.fr/sorties/sortie-211d638b-2568-4bd2-9d5c-5f28996b3ebc/,Phil,,2/18/2017 0:00,14.0000000,15.0000000,47.80044000000,-4.374790000000,,Penmarc'h - Finistère,50195,observation-211d638b-2568-4bd2-9d5c-5f28996b3ebc,https://biolit.fr/observations/observation-211d638b-2568-4bd2-9d5c-5f28996b3ebc/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060003.JPG,,FALSE, +N1,60643,sortie-211d638b-2568-4bd2-9d5c-5f28996b3ebc,https://biolit.fr/sorties/sortie-211d638b-2568-4bd2-9d5c-5f28996b3ebc/,Phil,,2/18/2017 0:00,14.0000000,15.0000000,47.80044000000,-4.374790000000,,Penmarc'h - Finistère,50197,observation-211d638b-2568-4bd2-9d5c-5f28996b3ebc-2,https://biolit.fr/observations/observation-211d638b-2568-4bd2-9d5c-5f28996b3ebc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060004.JPG,,FALSE, +N1,60643,sortie-211d638b-2568-4bd2-9d5c-5f28996b3ebc,https://biolit.fr/sorties/sortie-211d638b-2568-4bd2-9d5c-5f28996b3ebc/,Phil,,2/18/2017 0:00,14.0000000,15.0000000,47.80044000000,-4.374790000000,,Penmarc'h - Finistère,50199,observation-211d638b-2568-4bd2-9d5c-5f28996b3ebc-3,https://biolit.fr/observations/observation-211d638b-2568-4bd2-9d5c-5f28996b3ebc-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060001.JPG,,FALSE, +N1,60643,sortie-211d638b-2568-4bd2-9d5c-5f28996b3ebc,https://biolit.fr/sorties/sortie-211d638b-2568-4bd2-9d5c-5f28996b3ebc/,Phil,,2/18/2017 0:00,14.0000000,15.0000000,47.80044000000,-4.374790000000,,Penmarc'h - Finistère,50201,observation-211d638b-2568-4bd2-9d5c-5f28996b3ebc-4,https://biolit.fr/observations/observation-211d638b-2568-4bd2-9d5c-5f28996b3ebc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060008.JPG,,FALSE, +N1,60644,sortie-ffaa9973-b670-4d3a-a641-f82a00b78096,https://biolit.fr/sorties/sortie-ffaa9973-b670-4d3a-a641-f82a00b78096/,cigale33,,03/11/2017,21.0000000,23.0000000,43.378714000000,-1.757293000000,,Hendaye,50203,observation-ffaa9973-b670-4d3a-a641-f82a00b78096,https://biolit.fr/observations/observation-ffaa9973-b670-4d3a-a641-f82a00b78096/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_5731.JPG,,FALSE, +N1,60644,sortie-ffaa9973-b670-4d3a-a641-f82a00b78096,https://biolit.fr/sorties/sortie-ffaa9973-b670-4d3a-a641-f82a00b78096/,cigale33,,03/11/2017,21.0000000,23.0000000,43.378714000000,-1.757293000000,,Hendaye,50205,observation-ffaa9973-b670-4d3a-a641-f82a00b78096-2,https://biolit.fr/observations/observation-ffaa9973-b670-4d3a-a641-f82a00b78096-2/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/_MG_5732.JPG,,TRUE, +N1,60644,sortie-ffaa9973-b670-4d3a-a641-f82a00b78096,https://biolit.fr/sorties/sortie-ffaa9973-b670-4d3a-a641-f82a00b78096/,cigale33,,03/11/2017,21.0000000,23.0000000,43.378714000000,-1.757293000000,,Hendaye,50207,observation-ffaa9973-b670-4d3a-a641-f82a00b78096-3,https://biolit.fr/observations/observation-ffaa9973-b670-4d3a-a641-f82a00b78096-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5680.JPG,,FALSE, +N1,60644,sortie-ffaa9973-b670-4d3a-a641-f82a00b78096,https://biolit.fr/sorties/sortie-ffaa9973-b670-4d3a-a641-f82a00b78096/,cigale33,,03/11/2017,21.0000000,23.0000000,43.378714000000,-1.757293000000,,Hendaye,50209,observation-ffaa9973-b670-4d3a-a641-f82a00b78096-4,https://biolit.fr/observations/observation-ffaa9973-b670-4d3a-a641-f82a00b78096-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5691.JPG,,FALSE, +N1,60644,sortie-ffaa9973-b670-4d3a-a641-f82a00b78096,https://biolit.fr/sorties/sortie-ffaa9973-b670-4d3a-a641-f82a00b78096/,cigale33,,03/11/2017,21.0000000,23.0000000,43.378714000000,-1.757293000000,,Hendaye,50211,observation-ffaa9973-b670-4d3a-a641-f82a00b78096-5,https://biolit.fr/observations/observation-ffaa9973-b670-4d3a-a641-f82a00b78096-5/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5695.JPG,,TRUE, +N1,60644,sortie-ffaa9973-b670-4d3a-a641-f82a00b78096,https://biolit.fr/sorties/sortie-ffaa9973-b670-4d3a-a641-f82a00b78096/,cigale33,,03/11/2017,21.0000000,23.0000000,43.378714000000,-1.757293000000,,Hendaye,50213,observation-ffaa9973-b670-4d3a-a641-f82a00b78096-6,https://biolit.fr/observations/observation-ffaa9973-b670-4d3a-a641-f82a00b78096-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5698.JPG,,FALSE, +N1,60644,sortie-ffaa9973-b670-4d3a-a641-f82a00b78096,https://biolit.fr/sorties/sortie-ffaa9973-b670-4d3a-a641-f82a00b78096/,cigale33,,03/11/2017,21.0000000,23.0000000,43.378714000000,-1.757293000000,,Hendaye,50215,observation-ffaa9973-b670-4d3a-a641-f82a00b78096-7,https://biolit.fr/observations/observation-ffaa9973-b670-4d3a-a641-f82a00b78096-7/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5714.JPG,,TRUE, +N1,60645,sortie-871726cf-98a4-49de-bbad-eedb582969dc,https://biolit.fr/sorties/sortie-871726cf-98a4-49de-bbad-eedb582969dc/,Jacques-Martial,,03/11/2017,11.0:55,12.0000000,48.6741830,-1.9753480,,Dinard plage de l'écluse ,50217,observation-871726cf-98a4-49de-bbad-eedb582969dc,https://biolit.fr/observations/observation-871726cf-98a4-49de-bbad-eedb582969dc/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170311_115945-scaled.jpg,,FALSE, +N1,60646,sortie-5eee48de-580c-4898-bc66-386a8e7725a8,https://biolit.fr/sorties/sortie-5eee48de-580c-4898-bc66-386a8e7725a8/,Phil,,03/02/2017,14.0000000,14.0:45,47.966979000000,-4.455900000000,,Plozevet - Finistère,50223,observation-5eee48de-580c-4898-bc66-386a8e7725a8-3,https://biolit.fr/observations/observation-5eee48de-580c-4898-bc66-386a8e7725a8-3/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/P1060406.JPG,,TRUE, +N1,60647,sortie-5670fd6c-948b-4070-891e-1841e4c8f2ff,https://biolit.fr/sorties/sortie-5670fd6c-948b-4070-891e-1841e4c8f2ff/,Phil,,03/06/2017,17.0:45,17.0:55,47.837009000000,-4.036960000000,,Mousterlin - Finistère,50225,observation-5670fd6c-948b-4070-891e-1841e4c8f2ff,https://biolit.fr/observations/observation-5670fd6c-948b-4070-891e-1841e4c8f2ff/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1060568.JPG,,TRUE, +N1,60647,sortie-5670fd6c-948b-4070-891e-1841e4c8f2ff,https://biolit.fr/sorties/sortie-5670fd6c-948b-4070-891e-1841e4c8f2ff/,Phil,,03/06/2017,17.0:45,17.0:55,47.837009000000,-4.036960000000,,Mousterlin - Finistère,50227,observation-5670fd6c-948b-4070-891e-1841e4c8f2ff-2,https://biolit.fr/observations/observation-5670fd6c-948b-4070-891e-1841e4c8f2ff-2/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1060570.jpg,,TRUE, +N1,60647,sortie-5670fd6c-948b-4070-891e-1841e4c8f2ff,https://biolit.fr/sorties/sortie-5670fd6c-948b-4070-891e-1841e4c8f2ff/,Phil,,03/06/2017,17.0:45,17.0:55,47.837009000000,-4.036960000000,,Mousterlin - Finistère,50229,observation-5670fd6c-948b-4070-891e-1841e4c8f2ff-3,https://biolit.fr/observations/observation-5670fd6c-948b-4070-891e-1841e4c8f2ff-3/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1060571.JPG,,TRUE, +N1,60647,sortie-5670fd6c-948b-4070-891e-1841e4c8f2ff,https://biolit.fr/sorties/sortie-5670fd6c-948b-4070-891e-1841e4c8f2ff/,Phil,,03/06/2017,17.0:45,17.0:55,47.837009000000,-4.036960000000,,Mousterlin - Finistère,50231,observation-5670fd6c-948b-4070-891e-1841e4c8f2ff-4,https://biolit.fr/observations/observation-5670fd6c-948b-4070-891e-1841e4c8f2ff-4/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1060575.JPG,,TRUE, +N1,60647,sortie-5670fd6c-948b-4070-891e-1841e4c8f2ff,https://biolit.fr/sorties/sortie-5670fd6c-948b-4070-891e-1841e4c8f2ff/,Phil,,03/06/2017,17.0:45,17.0:55,47.837009000000,-4.036960000000,,Mousterlin - Finistère,50233,observation-5670fd6c-948b-4070-891e-1841e4c8f2ff-5,https://biolit.fr/observations/observation-5670fd6c-948b-4070-891e-1841e4c8f2ff-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060566.JPG,,FALSE, +N1,60648,sortie-6101d10d-5e1d-4e85-988f-b08563315e5f,https://biolit.fr/sorties/sortie-6101d10d-5e1d-4e85-988f-b08563315e5f/,Phil,,2/21/2017 0:00,17.0000000,17.0:15,48.092694000000,-4.297738000000,,Douarnenez - Finistère,50235,observation-6101d10d-5e1d-4e85-988f-b08563315e5f,https://biolit.fr/observations/observation-6101d10d-5e1d-4e85-988f-b08563315e5f/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060199.JPG,,FALSE, +N1,60648,sortie-6101d10d-5e1d-4e85-988f-b08563315e5f,https://biolit.fr/sorties/sortie-6101d10d-5e1d-4e85-988f-b08563315e5f/,Phil,,2/21/2017 0:00,17.0000000,17.0:15,48.092694000000,-4.297738000000,,Douarnenez - Finistère,50237,observation-6101d10d-5e1d-4e85-988f-b08563315e5f-2,https://biolit.fr/observations/observation-6101d10d-5e1d-4e85-988f-b08563315e5f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060201.JPG,,FALSE, +N1,60649,sortie-37e2633e-39d6-46d6-a0ea-4460929e54b4,https://biolit.fr/sorties/sortie-37e2633e-39d6-46d6-a0ea-4460929e54b4/,Phil,,03/02/2017,14.0000000,14.0000000,47.97051400000,-4.444772000000,,Plozevet - Finistère,50239,observation-37e2633e-39d6-46d6-a0ea-4460929e54b4,https://biolit.fr/observations/observation-37e2633e-39d6-46d6-a0ea-4460929e54b4/,Bifurcaria bifurcata,Bifurcaire,,https://biolit.fr/wp-content/uploads/2023/07/P1060330.JPG,,TRUE, +N1,60649,sortie-37e2633e-39d6-46d6-a0ea-4460929e54b4,https://biolit.fr/sorties/sortie-37e2633e-39d6-46d6-a0ea-4460929e54b4/,Phil,,03/02/2017,14.0000000,14.0000000,47.97051400000,-4.444772000000,,Plozevet - Finistère,50241,observation-37e2633e-39d6-46d6-a0ea-4460929e54b4-2,https://biolit.fr/observations/observation-37e2633e-39d6-46d6-a0ea-4460929e54b4-2/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/2023/07/P1060329.JPG,,TRUE, +N1,60650,sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b,https://biolit.fr/sorties/sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236025000000,5.360056000000,,plage de la bonne brise,50243,observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b,https://biolit.fr/observations/observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1060-scaled.jpg,,TRUE, +N1,60650,sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b,https://biolit.fr/sorties/sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236025000000,5.360056000000,,plage de la bonne brise,50245,observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-2,https://biolit.fr/observations/observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1061-scaled.jpg,,FALSE, +N1,60650,sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b,https://biolit.fr/sorties/sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236025000000,5.360056000000,,plage de la bonne brise,50247,observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-3,https://biolit.fr/observations/observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1062-scaled.jpg,,FALSE, +N1,60650,sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b,https://biolit.fr/sorties/sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236025000000,5.360056000000,,plage de la bonne brise,50249,observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-4,https://biolit.fr/observations/observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-4/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1067-scaled.jpg,,TRUE, +N1,60650,sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b,https://biolit.fr/sorties/sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236025000000,5.360056000000,,plage de la bonne brise,50251,observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-5,https://biolit.fr/observations/observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-5/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1069-scaled.jpg,,TRUE, +N1,60650,sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b,https://biolit.fr/sorties/sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236025000000,5.360056000000,,plage de la bonne brise,50253,observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-6,https://biolit.fr/observations/observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-6/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1070-scaled.jpg,,TRUE, +N1,60650,sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b,https://biolit.fr/sorties/sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236025000000,5.360056000000,,plage de la bonne brise,50255,observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-7,https://biolit.fr/observations/observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1072-scaled.jpg,,FALSE, +N1,60650,sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b,https://biolit.fr/sorties/sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236025000000,5.360056000000,,plage de la bonne brise,50257,observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-8,https://biolit.fr/observations/observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1074-scaled.jpg,,FALSE, +N1,60650,sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b,https://biolit.fr/sorties/sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236025000000,5.360056000000,,plage de la bonne brise,50259,observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-9,https://biolit.fr/observations/observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1076-scaled.jpg,,FALSE, +N1,60650,sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b,https://biolit.fr/sorties/sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236025000000,5.360056000000,,plage de la bonne brise,50261,observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-10,https://biolit.fr/observations/observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1077-scaled.jpg,,FALSE, +N1,60650,sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b,https://biolit.fr/sorties/sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236025000000,5.360056000000,,plage de la bonne brise,50263,observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-11,https://biolit.fr/observations/observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-11/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1079-scaled.jpg,,TRUE, +N1,60650,sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b,https://biolit.fr/sorties/sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236025000000,5.360056000000,,plage de la bonne brise,50265,observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-12,https://biolit.fr/observations/observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1084-scaled.jpg,,FALSE, +N1,60650,sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b,https://biolit.fr/sorties/sortie-86f1e6e2-b3e8-4302-8307-33a8e3239b1b/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236025000000,5.360056000000,,plage de la bonne brise,50267,observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-13,https://biolit.fr/observations/observation-86f1e6e2-b3e8-4302-8307-33a8e3239b1b-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1086-scaled.jpg,,FALSE, +N1,60651,sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c,https://biolit.fr/sorties/sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236053000000,5.360043000000,,plage de la bonne brise,50269,observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c,https://biolit.fr/observations/observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1022-scaled.jpg,,TRUE, +N1,60651,sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c,https://biolit.fr/sorties/sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236053000000,5.360043000000,,plage de la bonne brise,50271,observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-2,https://biolit.fr/observations/observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1023-scaled.jpg,,FALSE, +N1,60651,sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c,https://biolit.fr/sorties/sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236053000000,5.360043000000,,plage de la bonne brise,50273,observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-3,https://biolit.fr/observations/observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1024-scaled.jpg,,FALSE, +N1,60651,sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c,https://biolit.fr/sorties/sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236053000000,5.360043000000,,plage de la bonne brise,50275,observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-4,https://biolit.fr/observations/observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-4/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1026-scaled.jpg,,TRUE, +N1,60651,sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c,https://biolit.fr/sorties/sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236053000000,5.360043000000,,plage de la bonne brise,50277,observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-5,https://biolit.fr/observations/observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-5/,Halopteris scoparia,Algue balai,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1027-scaled.jpg,,TRUE, +N1,60651,sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c,https://biolit.fr/sorties/sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236053000000,5.360043000000,,plage de la bonne brise,50279,observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-6,https://biolit.fr/observations/observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-6/,Halopteris scoparia,Algue balai,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1032-scaled.jpg,,TRUE, +N1,60651,sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c,https://biolit.fr/sorties/sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236053000000,5.360043000000,,plage de la bonne brise,50281,observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-7,https://biolit.fr/observations/observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1033-scaled.jpg,,FALSE, +N1,60651,sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c,https://biolit.fr/sorties/sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236053000000,5.360043000000,,plage de la bonne brise,50283,observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-8,https://biolit.fr/observations/observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-8/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1036-scaled.jpg,,TRUE, +N1,60651,sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c,https://biolit.fr/sorties/sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236053000000,5.360043000000,,plage de la bonne brise,50285,observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-9,https://biolit.fr/observations/observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1035-scaled.jpg,,FALSE, +N1,60651,sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c,https://biolit.fr/sorties/sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236053000000,5.360043000000,,plage de la bonne brise,50287,observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-10,https://biolit.fr/observations/observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-10/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1037-scaled.jpg,,TRUE, +N1,60651,sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c,https://biolit.fr/sorties/sortie-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c/,ludovic,,03/08/2017,16.0000000,17.0000000,43.236053000000,5.360043000000,,plage de la bonne brise,50289,observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-11,https://biolit.fr/observations/observation-6fc8b315-6c7d-40cb-a5db-8d1b07ea4e9c-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1058-scaled.jpg,,FALSE, +N1,60652,sortie-f439e7da-32c8-4199-b42d-0364f32bee76,https://biolit.fr/sorties/sortie-f439e7da-32c8-4199-b42d-0364f32bee76/,Phil,,03/06/2017,17.0000000,17.0000000,47.84090400000,-4.037973000000,,Mousterlin - Finistère,50291,observation-f439e7da-32c8-4199-b42d-0364f32bee76,https://biolit.fr/observations/observation-f439e7da-32c8-4199-b42d-0364f32bee76/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060558.JPG,,FALSE, +N1,60652,sortie-f439e7da-32c8-4199-b42d-0364f32bee76,https://biolit.fr/sorties/sortie-f439e7da-32c8-4199-b42d-0364f32bee76/,Phil,,03/06/2017,17.0000000,17.0000000,47.84090400000,-4.037973000000,,Mousterlin - Finistère,50293,observation-f439e7da-32c8-4199-b42d-0364f32bee76-2,https://biolit.fr/observations/observation-f439e7da-32c8-4199-b42d-0364f32bee76-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060553.jpg,,FALSE, +N1,60652,sortie-f439e7da-32c8-4199-b42d-0364f32bee76,https://biolit.fr/sorties/sortie-f439e7da-32c8-4199-b42d-0364f32bee76/,Phil,,03/06/2017,17.0000000,17.0000000,47.84090400000,-4.037973000000,,Mousterlin - Finistère,50295,observation-f439e7da-32c8-4199-b42d-0364f32bee76-3,https://biolit.fr/observations/observation-f439e7da-32c8-4199-b42d-0364f32bee76-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060551.JPG,,FALSE, +N1,60652,sortie-f439e7da-32c8-4199-b42d-0364f32bee76,https://biolit.fr/sorties/sortie-f439e7da-32c8-4199-b42d-0364f32bee76/,Phil,,03/06/2017,17.0000000,17.0000000,47.84090400000,-4.037973000000,,Mousterlin - Finistère,50297,observation-f439e7da-32c8-4199-b42d-0364f32bee76-4,https://biolit.fr/observations/observation-f439e7da-32c8-4199-b42d-0364f32bee76-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060564.JPG,,FALSE, +N1,60653,sortie-49198149-0ab9-4e47-aabf-ca2ce3d892ce,https://biolit.fr/sorties/sortie-49198149-0ab9-4e47-aabf-ca2ce3d892ce/,Phil,,03/02/2017,15.0000000,15.000005,47.969764000000,-4.442665000000,,Plozevet - Finistère,50299,observation-49198149-0ab9-4e47-aabf-ca2ce3d892ce,https://biolit.fr/observations/observation-49198149-0ab9-4e47-aabf-ca2ce3d892ce/,Gaidropsarus mediterraneus,Motelle à trois barbillons,,https://biolit.fr/wp-content/uploads/2023/07/P1060440.JPG,,TRUE, +N1,60653,sortie-49198149-0ab9-4e47-aabf-ca2ce3d892ce,https://biolit.fr/sorties/sortie-49198149-0ab9-4e47-aabf-ca2ce3d892ce/,Phil,,03/02/2017,15.0000000,15.000005,47.969764000000,-4.442665000000,,Plozevet - Finistère,50301,observation-49198149-0ab9-4e47-aabf-ca2ce3d892ce-2,https://biolit.fr/observations/observation-49198149-0ab9-4e47-aabf-ca2ce3d892ce-2/,Gaidropsarus mediterraneus,Motelle à trois barbillons,,https://biolit.fr/wp-content/uploads/2023/07/P1060436.jpg,,TRUE, +N1,60653,sortie-49198149-0ab9-4e47-aabf-ca2ce3d892ce,https://biolit.fr/sorties/sortie-49198149-0ab9-4e47-aabf-ca2ce3d892ce/,Phil,,03/02/2017,15.0000000,15.000005,47.969764000000,-4.442665000000,,Plozevet - Finistère,50303,observation-49198149-0ab9-4e47-aabf-ca2ce3d892ce-3,https://biolit.fr/observations/observation-49198149-0ab9-4e47-aabf-ca2ce3d892ce-3/,Gaidropsarus mediterraneus,Motelle à trois barbillons,,https://biolit.fr/wp-content/uploads/2023/07/P1060437.JPG,,TRUE, +N1,60653,sortie-49198149-0ab9-4e47-aabf-ca2ce3d892ce,https://biolit.fr/sorties/sortie-49198149-0ab9-4e47-aabf-ca2ce3d892ce/,Phil,,03/02/2017,15.0000000,15.000005,47.969764000000,-4.442665000000,,Plozevet - Finistère,50305,observation-49198149-0ab9-4e47-aabf-ca2ce3d892ce-4,https://biolit.fr/observations/observation-49198149-0ab9-4e47-aabf-ca2ce3d892ce-4/,Gaidropsarus mediterraneus,Motelle à trois barbillons,,https://biolit.fr/wp-content/uploads/2023/07/P1060439.JPG,,TRUE, +N1,60654,sortie-c7f608c4-a424-40eb-b0a3-640e635650a3,https://biolit.fr/sorties/sortie-c7f608c4-a424-40eb-b0a3-640e635650a3/,Phil,,2/18/2017 0:00,14.0:55,15.0000000,47.800377000000,-4.382463000000,,Penmarc'h - Finistère,50307,observation-c7f608c4-a424-40eb-b0a3-640e635650a3,https://biolit.fr/observations/observation-c7f608c4-a424-40eb-b0a3-640e635650a3/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/2023/07/P1050998.JPG,,TRUE, +N1,60654,sortie-c7f608c4-a424-40eb-b0a3-640e635650a3,https://biolit.fr/sorties/sortie-c7f608c4-a424-40eb-b0a3-640e635650a3/,Phil,,2/18/2017 0:00,14.0:55,15.0000000,47.800377000000,-4.382463000000,,Penmarc'h - Finistère,50309,observation-c7f608c4-a424-40eb-b0a3-640e635650a3-2,https://biolit.fr/observations/observation-c7f608c4-a424-40eb-b0a3-640e635650a3-2/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/2023/07/P1050985.JPG,,TRUE, +N1,60654,sortie-c7f608c4-a424-40eb-b0a3-640e635650a3,https://biolit.fr/sorties/sortie-c7f608c4-a424-40eb-b0a3-640e635650a3/,Phil,,2/18/2017 0:00,14.0:55,15.0000000,47.800377000000,-4.382463000000,,Penmarc'h - Finistère,50311,observation-c7f608c4-a424-40eb-b0a3-640e635650a3-3,https://biolit.fr/observations/observation-c7f608c4-a424-40eb-b0a3-640e635650a3-3/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/2023/07/P1050991.JPG,,TRUE, +N1,60654,sortie-c7f608c4-a424-40eb-b0a3-640e635650a3,https://biolit.fr/sorties/sortie-c7f608c4-a424-40eb-b0a3-640e635650a3/,Phil,,2/18/2017 0:00,14.0:55,15.0000000,47.800377000000,-4.382463000000,,Penmarc'h - Finistère,50313,observation-c7f608c4-a424-40eb-b0a3-640e635650a3-4,https://biolit.fr/observations/observation-c7f608c4-a424-40eb-b0a3-640e635650a3-4/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/2023/07/P1050996.jpg,,TRUE, +N1,60655,sortie-3ca91d31-4971-49bc-9e24-60db47236703,https://biolit.fr/sorties/sortie-3ca91d31-4971-49bc-9e24-60db47236703/,Phil,,03/06/2017,17.0000000,17.0000000,47.841172000000,-4.04016200000,,Mousterlin - Finistère,50315,observation-3ca91d31-4971-49bc-9e24-60db47236703,https://biolit.fr/observations/observation-3ca91d31-4971-49bc-9e24-60db47236703/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/P1060524.jpg,,TRUE, +N1,60655,sortie-3ca91d31-4971-49bc-9e24-60db47236703,https://biolit.fr/sorties/sortie-3ca91d31-4971-49bc-9e24-60db47236703/,Phil,,03/06/2017,17.0000000,17.0000000,47.841172000000,-4.04016200000,,Mousterlin - Finistère,50317,observation-3ca91d31-4971-49bc-9e24-60db47236703-2,https://biolit.fr/observations/observation-3ca91d31-4971-49bc-9e24-60db47236703-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060525.JPG,,FALSE, +N1,60655,sortie-3ca91d31-4971-49bc-9e24-60db47236703,https://biolit.fr/sorties/sortie-3ca91d31-4971-49bc-9e24-60db47236703/,Phil,,03/06/2017,17.0000000,17.0000000,47.841172000000,-4.04016200000,,Mousterlin - Finistère,50319,observation-3ca91d31-4971-49bc-9e24-60db47236703-3,https://biolit.fr/observations/observation-3ca91d31-4971-49bc-9e24-60db47236703-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060521.JPG,,TRUE, +N1,60655,sortie-3ca91d31-4971-49bc-9e24-60db47236703,https://biolit.fr/sorties/sortie-3ca91d31-4971-49bc-9e24-60db47236703/,Phil,,03/06/2017,17.0000000,17.0000000,47.841172000000,-4.04016200000,,Mousterlin - Finistère,50321,observation-3ca91d31-4971-49bc-9e24-60db47236703-4,https://biolit.fr/observations/observation-3ca91d31-4971-49bc-9e24-60db47236703-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060527.JPG,,FALSE, +N1,60655,sortie-3ca91d31-4971-49bc-9e24-60db47236703,https://biolit.fr/sorties/sortie-3ca91d31-4971-49bc-9e24-60db47236703/,Phil,,03/06/2017,17.0000000,17.0000000,47.841172000000,-4.04016200000,,Mousterlin - Finistère,50323,observation-3ca91d31-4971-49bc-9e24-60db47236703-5,https://biolit.fr/observations/observation-3ca91d31-4971-49bc-9e24-60db47236703-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060531.JPG,,FALSE, +N1,60655,sortie-3ca91d31-4971-49bc-9e24-60db47236703,https://biolit.fr/sorties/sortie-3ca91d31-4971-49bc-9e24-60db47236703/,Phil,,03/06/2017,17.0000000,17.0000000,47.841172000000,-4.04016200000,,Mousterlin - Finistère,50325,observation-3ca91d31-4971-49bc-9e24-60db47236703-6,https://biolit.fr/observations/observation-3ca91d31-4971-49bc-9e24-60db47236703-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060533.JPG,,FALSE, +N1,60656,sortie-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89,https://biolit.fr/sorties/sortie-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89/,Phil,,2/18/2017 0:00,14.0:45,14.0:55,47.800310000000,-4.379502000000,,Penmarc'h - Finistère,50327,observation-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89,https://biolit.fr/observations/observation-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89/,Vertebrata lanosa,Pompon des ascophylles,,https://biolit.fr/wp-content/uploads/2023/07/P1050922_6.jpg,,TRUE, +N1,60656,sortie-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89,https://biolit.fr/sorties/sortie-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89/,Phil,,2/18/2017 0:00,14.0:45,14.0:55,47.800310000000,-4.379502000000,,Penmarc'h - Finistère,50329,observation-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89-2,https://biolit.fr/observations/observation-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050966_1.jpg,,FALSE, +N1,60656,sortie-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89,https://biolit.fr/sorties/sortie-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89/,Phil,,2/18/2017 0:00,14.0:45,14.0:55,47.800310000000,-4.379502000000,,Penmarc'h - Finistère,50331,observation-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89-3,https://biolit.fr/observations/observation-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050963_1.JPG,,FALSE, +N1,60656,sortie-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89,https://biolit.fr/sorties/sortie-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89/,Phil,,2/18/2017 0:00,14.0:45,14.0:55,47.800310000000,-4.379502000000,,Penmarc'h - Finistère,50333,observation-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89-4,https://biolit.fr/observations/observation-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89-4/,Anurida maritima,Collembole marin,,https://biolit.fr/wp-content/uploads/2023/07/P1050974_2.JPG,,TRUE, +N1,60656,sortie-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89,https://biolit.fr/sorties/sortie-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89/,Phil,,2/18/2017 0:00,14.0:45,14.0:55,47.800310000000,-4.379502000000,,Penmarc'h - Finistère,50335,observation-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89-5,https://biolit.fr/observations/observation-76081d4c-a3ed-46d4-8b3e-778c3d1a1e89-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050971_0.JPG,,TRUE, +N1,60657,sortie-a6452fd4-4305-47f2-9c6a-8cb32dd94c49,https://biolit.fr/sorties/sortie-a6452fd4-4305-47f2-9c6a-8cb32dd94c49/,Phil,,03/02/2017,14.0000000,14.0000000,47.970527000000,-4.445669000000,,Plozevet - Finistère,50337,observation-a6452fd4-4305-47f2-9c6a-8cb32dd94c49,https://biolit.fr/observations/observation-a6452fd4-4305-47f2-9c6a-8cb32dd94c49/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060293.JPG,,FALSE, +N1,60657,sortie-a6452fd4-4305-47f2-9c6a-8cb32dd94c49,https://biolit.fr/sorties/sortie-a6452fd4-4305-47f2-9c6a-8cb32dd94c49/,Phil,,03/02/2017,14.0000000,14.0000000,47.970527000000,-4.445669000000,,Plozevet - Finistère,50339,observation-a6452fd4-4305-47f2-9c6a-8cb32dd94c49-2,https://biolit.fr/observations/observation-a6452fd4-4305-47f2-9c6a-8cb32dd94c49-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060294.JPG,,FALSE, +N1,60657,sortie-a6452fd4-4305-47f2-9c6a-8cb32dd94c49,https://biolit.fr/sorties/sortie-a6452fd4-4305-47f2-9c6a-8cb32dd94c49/,Phil,,03/02/2017,14.0000000,14.0000000,47.970527000000,-4.445669000000,,Plozevet - Finistère,50341,observation-a6452fd4-4305-47f2-9c6a-8cb32dd94c49-3,https://biolit.fr/observations/observation-a6452fd4-4305-47f2-9c6a-8cb32dd94c49-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060298.JPG,,FALSE, +N1,60657,sortie-a6452fd4-4305-47f2-9c6a-8cb32dd94c49,https://biolit.fr/sorties/sortie-a6452fd4-4305-47f2-9c6a-8cb32dd94c49/,Phil,,03/02/2017,14.0000000,14.0000000,47.970527000000,-4.445669000000,,Plozevet - Finistère,50343,observation-a6452fd4-4305-47f2-9c6a-8cb32dd94c49-4,https://biolit.fr/observations/observation-a6452fd4-4305-47f2-9c6a-8cb32dd94c49-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060302.JPG,,FALSE, +N1,60658,sortie-ab47895c-ccda-47d4-99fa-612f89236f45,https://biolit.fr/sorties/sortie-ab47895c-ccda-47d4-99fa-612f89236f45/,Phil,,2/21/2017 0:00,16.0000000,17.0000000,48.094241000000,-4.299366000000,,Douarnenez - Finistère,50345,observation-ab47895c-ccda-47d4-99fa-612f89236f45,https://biolit.fr/observations/observation-ab47895c-ccda-47d4-99fa-612f89236f45/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060167.JPG,,FALSE, +N1,60658,sortie-ab47895c-ccda-47d4-99fa-612f89236f45,https://biolit.fr/sorties/sortie-ab47895c-ccda-47d4-99fa-612f89236f45/,Phil,,2/21/2017 0:00,16.0000000,17.0000000,48.094241000000,-4.299366000000,,Douarnenez - Finistère,50347,observation-ab47895c-ccda-47d4-99fa-612f89236f45-2,https://biolit.fr/observations/observation-ab47895c-ccda-47d4-99fa-612f89236f45-2/,Anurida maritima,Collembole marin,,https://biolit.fr/wp-content/uploads/2023/07/P1060162.JPG,,TRUE, +N1,60658,sortie-ab47895c-ccda-47d4-99fa-612f89236f45,https://biolit.fr/sorties/sortie-ab47895c-ccda-47d4-99fa-612f89236f45/,Phil,,2/21/2017 0:00,16.0000000,17.0000000,48.094241000000,-4.299366000000,,Douarnenez - Finistère,50349,observation-ab47895c-ccda-47d4-99fa-612f89236f45-3,https://biolit.fr/observations/observation-ab47895c-ccda-47d4-99fa-612f89236f45-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060169.JPG,,FALSE, +N1,60658,sortie-ab47895c-ccda-47d4-99fa-612f89236f45,https://biolit.fr/sorties/sortie-ab47895c-ccda-47d4-99fa-612f89236f45/,Phil,,2/21/2017 0:00,16.0000000,17.0000000,48.094241000000,-4.299366000000,,Douarnenez - Finistère,50351,observation-ab47895c-ccda-47d4-99fa-612f89236f45-4,https://biolit.fr/observations/observation-ab47895c-ccda-47d4-99fa-612f89236f45-4/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/P1060175.JPG,,TRUE, +N1,60659,sortie-9d3ceeac-875d-4092-82e8-011790a8b508,https://biolit.fr/sorties/sortie-9d3ceeac-875d-4092-82e8-011790a8b508/,Phil,,03/06/2017,8.0000000,10.0000000,47.969154000000,-4.445611000000,,Plozevet - Finistère,50353,observation-9d3ceeac-875d-4092-82e8-011790a8b508,https://biolit.fr/observations/observation-9d3ceeac-875d-4092-82e8-011790a8b508/,Phalacrocorax aristotelis,Cormoran huppé,,https://biolit.fr/wp-content/uploads/2023/07/P1060305_0.JPG,,TRUE, +N1,60659,sortie-9d3ceeac-875d-4092-82e8-011790a8b508,https://biolit.fr/sorties/sortie-9d3ceeac-875d-4092-82e8-011790a8b508/,Phil,,03/06/2017,8.0000000,10.0000000,47.969154000000,-4.445611000000,,Plozevet - Finistère,50355,observation-9d3ceeac-875d-4092-82e8-011790a8b508-2,https://biolit.fr/observations/observation-9d3ceeac-875d-4092-82e8-011790a8b508-2/,Phalacrocorax aristotelis,Cormoran huppé,,https://biolit.fr/wp-content/uploads/2023/07/P1060308.JPG,,TRUE, +N1,60659,sortie-9d3ceeac-875d-4092-82e8-011790a8b508,https://biolit.fr/sorties/sortie-9d3ceeac-875d-4092-82e8-011790a8b508/,Phil,,03/06/2017,8.0000000,10.0000000,47.969154000000,-4.445611000000,,Plozevet - Finistère,50357,observation-9d3ceeac-875d-4092-82e8-011790a8b508-3,https://biolit.fr/observations/observation-9d3ceeac-875d-4092-82e8-011790a8b508-3/,Phalacrocorax aristotelis,Cormoran huppé,,https://biolit.fr/wp-content/uploads/2023/07/P1060311_0.JPG,,TRUE, +N1,60660,sortie-1888ed42-95ce-4d9b-81de-47bbe3228b2c,https://biolit.fr/sorties/sortie-1888ed42-95ce-4d9b-81de-47bbe3228b2c/,Phil,,03/05/2017,20.0000000,22.0000000,47.97221000000,-4.439890000000,,Plozevet - Finistère,50359,observation-1888ed42-95ce-4d9b-81de-47bbe3228b2c,https://biolit.fr/observations/observation-1888ed42-95ce-4d9b-81de-47bbe3228b2c/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060477_6.JPG,,FALSE, +N1,60660,sortie-1888ed42-95ce-4d9b-81de-47bbe3228b2c,https://biolit.fr/sorties/sortie-1888ed42-95ce-4d9b-81de-47bbe3228b2c/,Phil,,03/05/2017,20.0000000,22.0000000,47.97221000000,-4.439890000000,,Plozevet - Finistère,50361,observation-1888ed42-95ce-4d9b-81de-47bbe3228b2c-2,https://biolit.fr/observations/observation-1888ed42-95ce-4d9b-81de-47bbe3228b2c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060479.JPG,,FALSE, +N1,60660,sortie-1888ed42-95ce-4d9b-81de-47bbe3228b2c,https://biolit.fr/sorties/sortie-1888ed42-95ce-4d9b-81de-47bbe3228b2c/,Phil,,03/05/2017,20.0000000,22.0000000,47.97221000000,-4.439890000000,,Plozevet - Finistère,50363,observation-1888ed42-95ce-4d9b-81de-47bbe3228b2c-3,https://biolit.fr/observations/observation-1888ed42-95ce-4d9b-81de-47bbe3228b2c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060480_0.JPG,,FALSE, +N1,60660,sortie-1888ed42-95ce-4d9b-81de-47bbe3228b2c,https://biolit.fr/sorties/sortie-1888ed42-95ce-4d9b-81de-47bbe3228b2c/,Phil,,03/05/2017,20.0000000,22.0000000,47.97221000000,-4.439890000000,,Plozevet - Finistère,50365,observation-1888ed42-95ce-4d9b-81de-47bbe3228b2c-4,https://biolit.fr/observations/observation-1888ed42-95ce-4d9b-81de-47bbe3228b2c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060481.JPG,,FALSE, +N1,60660,sortie-1888ed42-95ce-4d9b-81de-47bbe3228b2c,https://biolit.fr/sorties/sortie-1888ed42-95ce-4d9b-81de-47bbe3228b2c/,Phil,,03/05/2017,20.0000000,22.0000000,47.97221000000,-4.439890000000,,Plozevet - Finistère,50367,observation-1888ed42-95ce-4d9b-81de-47bbe3228b2c-5,https://biolit.fr/observations/observation-1888ed42-95ce-4d9b-81de-47bbe3228b2c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060483.JPG,,FALSE, +N1,60661,sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82,https://biolit.fr/sorties/sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82/,Phil,,2/18/2017 0:00,14.0:15,14.0:25,47.798768000000,-4.380137000000,,Penmarc'h - Finistère,50369,observation-c38502ce-49a6-4da3-865a-f77c95d7dd82,https://biolit.fr/observations/observation-c38502ce-49a6-4da3-865a-f77c95d7dd82/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050897_3.JPG,,FALSE, +N1,60661,sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82,https://biolit.fr/sorties/sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82/,Phil,,2/18/2017 0:00,14.0:15,14.0:25,47.798768000000,-4.380137000000,,Penmarc'h - Finistère,50371,observation-c38502ce-49a6-4da3-865a-f77c95d7dd82-2,https://biolit.fr/observations/observation-c38502ce-49a6-4da3-865a-f77c95d7dd82-2/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/P1050898_0.JPG,,TRUE, +N1,60661,sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82,https://biolit.fr/sorties/sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82/,Phil,,2/18/2017 0:00,14.0:15,14.0:25,47.798768000000,-4.380137000000,,Penmarc'h - Finistère,50373,observation-c38502ce-49a6-4da3-865a-f77c95d7dd82-3,https://biolit.fr/observations/observation-c38502ce-49a6-4da3-865a-f77c95d7dd82-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050908.JPG,,TRUE, +N1,60661,sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82,https://biolit.fr/sorties/sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82/,Phil,,2/18/2017 0:00,14.0:15,14.0:25,47.798768000000,-4.380137000000,,Penmarc'h - Finistère,50375,observation-c38502ce-49a6-4da3-865a-f77c95d7dd82-4,https://biolit.fr/observations/observation-c38502ce-49a6-4da3-865a-f77c95d7dd82-4/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1050909.JPG,,TRUE, +N1,60661,sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82,https://biolit.fr/sorties/sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82/,Phil,,2/18/2017 0:00,14.0:15,14.0:25,47.798768000000,-4.380137000000,,Penmarc'h - Finistère,50377,observation-c38502ce-49a6-4da3-865a-f77c95d7dd82-5,https://biolit.fr/observations/observation-c38502ce-49a6-4da3-865a-f77c95d7dd82-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050927..JPG,,FALSE, +N1,60661,sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82,https://biolit.fr/sorties/sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82/,Phil,,2/18/2017 0:00,14.0:15,14.0:25,47.798768000000,-4.380137000000,,Penmarc'h - Finistère,50379,observation-c38502ce-49a6-4da3-865a-f77c95d7dd82-6,https://biolit.fr/observations/observation-c38502ce-49a6-4da3-865a-f77c95d7dd82-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050926.JPG,,FALSE, +N1,60661,sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82,https://biolit.fr/sorties/sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82/,Phil,,2/18/2017 0:00,14.0:15,14.0:25,47.798768000000,-4.380137000000,,Penmarc'h - Finistère,50381,observation-c38502ce-49a6-4da3-865a-f77c95d7dd82-7,https://biolit.fr/observations/observation-c38502ce-49a6-4da3-865a-f77c95d7dd82-7/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050914.JPG,,TRUE, +N1,60661,sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82,https://biolit.fr/sorties/sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82/,Phil,,2/18/2017 0:00,14.0:15,14.0:25,47.798768000000,-4.380137000000,,Penmarc'h - Finistère,50383,observation-c38502ce-49a6-4da3-865a-f77c95d7dd82-8,https://biolit.fr/observations/observation-c38502ce-49a6-4da3-865a-f77c95d7dd82-8/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050916.JPG,,TRUE, +N1,60661,sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82,https://biolit.fr/sorties/sortie-c38502ce-49a6-4da3-865a-f77c95d7dd82/,Phil,,2/18/2017 0:00,14.0:15,14.0:25,47.798768000000,-4.380137000000,,Penmarc'h - Finistère,50385,observation-c38502ce-49a6-4da3-865a-f77c95d7dd82-9,https://biolit.fr/observations/observation-c38502ce-49a6-4da3-865a-f77c95d7dd82-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050925_0.JPG,,FALSE, +N1,60662,sortie-20bc4216-5fbb-45c3-ba2b-595d34a0b830,https://biolit.fr/sorties/sortie-20bc4216-5fbb-45c3-ba2b-595d34a0b830/,Phil,,03/05/2017,12.0000000,14.0000000,48.087291000000,-4.488101000000,,Beuzec Cap Sizun - Finistère,50387,observation-20bc4216-5fbb-45c3-ba2b-595d34a0b830,https://biolit.fr/observations/observation-20bc4216-5fbb-45c3-ba2b-595d34a0b830/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060247_2.JPG,,FALSE, +N1,60662,sortie-20bc4216-5fbb-45c3-ba2b-595d34a0b830,https://biolit.fr/sorties/sortie-20bc4216-5fbb-45c3-ba2b-595d34a0b830/,Phil,,03/05/2017,12.0000000,14.0000000,48.087291000000,-4.488101000000,,Beuzec Cap Sizun - Finistère,50389,observation-20bc4216-5fbb-45c3-ba2b-595d34a0b830-2,https://biolit.fr/observations/observation-20bc4216-5fbb-45c3-ba2b-595d34a0b830-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060249_0.JPG,,FALSE, +N1,60663,sortie-bd187dc6-4a6e-47d6-b656-a8e26457365c,https://biolit.fr/sorties/sortie-bd187dc6-4a6e-47d6-b656-a8e26457365c/,Phil,,03/02/2017,14.0:15,14.0000000,47.96908900000,-4.44393900000,,Plozevet - Finistère,50391,observation-bd187dc6-4a6e-47d6-b656-a8e26457365c,https://biolit.fr/observations/observation-bd187dc6-4a6e-47d6-b656-a8e26457365c/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060284.JPG,,FALSE, +N1,60663,sortie-bd187dc6-4a6e-47d6-b656-a8e26457365c,https://biolit.fr/sorties/sortie-bd187dc6-4a6e-47d6-b656-a8e26457365c/,Phil,,03/02/2017,14.0:15,14.0000000,47.96908900000,-4.44393900000,,Plozevet - Finistère,50393,observation-bd187dc6-4a6e-47d6-b656-a8e26457365c-2,https://biolit.fr/observations/observation-bd187dc6-4a6e-47d6-b656-a8e26457365c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060290.JPG,,FALSE, +N1,60663,sortie-bd187dc6-4a6e-47d6-b656-a8e26457365c,https://biolit.fr/sorties/sortie-bd187dc6-4a6e-47d6-b656-a8e26457365c/,Phil,,03/02/2017,14.0:15,14.0000000,47.96908900000,-4.44393900000,,Plozevet - Finistère,50395,observation-bd187dc6-4a6e-47d6-b656-a8e26457365c-3,https://biolit.fr/observations/observation-bd187dc6-4a6e-47d6-b656-a8e26457365c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060291.JPG,,FALSE, +N1,60663,sortie-bd187dc6-4a6e-47d6-b656-a8e26457365c,https://biolit.fr/sorties/sortie-bd187dc6-4a6e-47d6-b656-a8e26457365c/,Phil,,03/02/2017,14.0:15,14.0000000,47.96908900000,-4.44393900000,,Plozevet - Finistère,50397,observation-bd187dc6-4a6e-47d6-b656-a8e26457365c-4,https://biolit.fr/observations/observation-bd187dc6-4a6e-47d6-b656-a8e26457365c-4/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/P1060282.JPG,,TRUE, +N1,60664,sortie-20afe722-299e-48f0-ae71-82a41e450a0d,https://biolit.fr/sorties/sortie-20afe722-299e-48f0-ae71-82a41e450a0d/,Phil,,2/25/2017 0:00,12.0000000,12.0000000,47.795237000000,-4.276437000000,,Le Guilvinec - Finistère,50399,observation-20afe722-299e-48f0-ae71-82a41e450a0d,https://biolit.fr/observations/observation-20afe722-299e-48f0-ae71-82a41e450a0d/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170225_121701.jpg,,FALSE, +N1,60664,sortie-20afe722-299e-48f0-ae71-82a41e450a0d,https://biolit.fr/sorties/sortie-20afe722-299e-48f0-ae71-82a41e450a0d/,Phil,,2/25/2017 0:00,12.0000000,12.0000000,47.795237000000,-4.276437000000,,Le Guilvinec - Finistère,50401,observation-20afe722-299e-48f0-ae71-82a41e450a0d-2,https://biolit.fr/observations/observation-20afe722-299e-48f0-ae71-82a41e450a0d-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170225_121650.jpg,,TRUE, +N1,60664,sortie-20afe722-299e-48f0-ae71-82a41e450a0d,https://biolit.fr/sorties/sortie-20afe722-299e-48f0-ae71-82a41e450a0d/,Phil,,2/25/2017 0:00,12.0000000,12.0000000,47.795237000000,-4.276437000000,,Le Guilvinec - Finistère,50403,observation-20afe722-299e-48f0-ae71-82a41e450a0d-3,https://biolit.fr/observations/observation-20afe722-299e-48f0-ae71-82a41e450a0d-3/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20170225_121337.jpg,,TRUE, +N1,60664,sortie-20afe722-299e-48f0-ae71-82a41e450a0d,https://biolit.fr/sorties/sortie-20afe722-299e-48f0-ae71-82a41e450a0d/,Phil,,2/25/2017 0:00,12.0000000,12.0000000,47.795237000000,-4.276437000000,,Le Guilvinec - Finistère,50405,observation-20afe722-299e-48f0-ae71-82a41e450a0d-4,https://biolit.fr/observations/observation-20afe722-299e-48f0-ae71-82a41e450a0d-4/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20170225_121347.jpg,,TRUE, +N1,60665,sortie-5d8e21c5-c3d4-4726-b9cb-67b60ba6f113,https://biolit.fr/sorties/sortie-5d8e21c5-c3d4-4726-b9cb-67b60ba6f113/,Phil,,2/21/2017 0:00,16.0000000,16.0000000,48.093474000000,-4.29843500000,,Douarnenez - Finistère,50407,observation-5d8e21c5-c3d4-4726-b9cb-67b60ba6f113,https://biolit.fr/observations/observation-5d8e21c5-c3d4-4726-b9cb-67b60ba6f113/,Lutraria lutraria,Lutraire elliptique,,https://biolit.fr/wp-content/uploads/2023/07/P1060143.JPG,,TRUE, +N1,60665,sortie-5d8e21c5-c3d4-4726-b9cb-67b60ba6f113,https://biolit.fr/sorties/sortie-5d8e21c5-c3d4-4726-b9cb-67b60ba6f113/,Phil,,2/21/2017 0:00,16.0000000,16.0000000,48.093474000000,-4.29843500000,,Douarnenez - Finistère,50409,observation-5d8e21c5-c3d4-4726-b9cb-67b60ba6f113-2,https://biolit.fr/observations/observation-5d8e21c5-c3d4-4726-b9cb-67b60ba6f113-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060147.JPG,,TRUE, +N1,60665,sortie-5d8e21c5-c3d4-4726-b9cb-67b60ba6f113,https://biolit.fr/sorties/sortie-5d8e21c5-c3d4-4726-b9cb-67b60ba6f113/,Phil,,2/21/2017 0:00,16.0000000,16.0000000,48.093474000000,-4.29843500000,,Douarnenez - Finistère,50411,observation-5d8e21c5-c3d4-4726-b9cb-67b60ba6f113-3,https://biolit.fr/observations/observation-5d8e21c5-c3d4-4726-b9cb-67b60ba6f113-3/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1060151.JPG,,TRUE, +N1,60665,sortie-5d8e21c5-c3d4-4726-b9cb-67b60ba6f113,https://biolit.fr/sorties/sortie-5d8e21c5-c3d4-4726-b9cb-67b60ba6f113/,Phil,,2/21/2017 0:00,16.0000000,16.0000000,48.093474000000,-4.29843500000,,Douarnenez - Finistère,50413,observation-5d8e21c5-c3d4-4726-b9cb-67b60ba6f113-4,https://biolit.fr/observations/observation-5d8e21c5-c3d4-4726-b9cb-67b60ba6f113-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060153.JPG,,TRUE, +N1,60666,sortie-299e5f07-d7da-416c-85d1-4c5f49cc815e,https://biolit.fr/sorties/sortie-299e5f07-d7da-416c-85d1-4c5f49cc815e/,Phil,,03/02/2017,14.0000000,14.0:15,47.970010000000,-4.443935000000,,Plozevet - Finistère,50415,observation-299e5f07-d7da-416c-85d1-4c5f49cc815e,https://biolit.fr/observations/observation-299e5f07-d7da-416c-85d1-4c5f49cc815e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060270_1.JPG,,FALSE, +N1,60666,sortie-299e5f07-d7da-416c-85d1-4c5f49cc815e,https://biolit.fr/sorties/sortie-299e5f07-d7da-416c-85d1-4c5f49cc815e/,Phil,,03/02/2017,14.0000000,14.0:15,47.970010000000,-4.443935000000,,Plozevet - Finistère,50417,observation-299e5f07-d7da-416c-85d1-4c5f49cc815e-2,https://biolit.fr/observations/observation-299e5f07-d7da-416c-85d1-4c5f49cc815e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060269.JPG,,FALSE, +N1,60666,sortie-299e5f07-d7da-416c-85d1-4c5f49cc815e,https://biolit.fr/sorties/sortie-299e5f07-d7da-416c-85d1-4c5f49cc815e/,Phil,,03/02/2017,14.0000000,14.0:15,47.970010000000,-4.443935000000,,Plozevet - Finistère,50419,observation-299e5f07-d7da-416c-85d1-4c5f49cc815e-3,https://biolit.fr/observations/observation-299e5f07-d7da-416c-85d1-4c5f49cc815e-3/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1060271.JPG,,TRUE, +N1,60666,sortie-299e5f07-d7da-416c-85d1-4c5f49cc815e,https://biolit.fr/sorties/sortie-299e5f07-d7da-416c-85d1-4c5f49cc815e/,Phil,,03/02/2017,14.0000000,14.0:15,47.970010000000,-4.443935000000,,Plozevet - Finistère,50421,observation-299e5f07-d7da-416c-85d1-4c5f49cc815e-4,https://biolit.fr/observations/observation-299e5f07-d7da-416c-85d1-4c5f49cc815e-4/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/P1060274.JPG,,TRUE, +N1,60667,sortie-c539f1c9-de05-4236-aef1-007cf18ae067,https://biolit.fr/sorties/sortie-c539f1c9-de05-4236-aef1-007cf18ae067/,ludovic,,03/02/2017,15.0000000,16.0000000,43.236104000000,5.360045000000,,plage de la bonne brise,50423,observation-c539f1c9-de05-4236-aef1-007cf18ae067,https://biolit.fr/observations/observation-c539f1c9-de05-4236-aef1-007cf18ae067/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0998-scaled.jpg,,FALSE, +N1,60667,sortie-c539f1c9-de05-4236-aef1-007cf18ae067,https://biolit.fr/sorties/sortie-c539f1c9-de05-4236-aef1-007cf18ae067/,ludovic,,03/02/2017,15.0000000,16.0000000,43.236104000000,5.360045000000,,plage de la bonne brise,50425,observation-c539f1c9-de05-4236-aef1-007cf18ae067-2,https://biolit.fr/observations/observation-c539f1c9-de05-4236-aef1-007cf18ae067-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1001_0-scaled.jpg,,FALSE, +N1,60667,sortie-c539f1c9-de05-4236-aef1-007cf18ae067,https://biolit.fr/sorties/sortie-c539f1c9-de05-4236-aef1-007cf18ae067/,ludovic,,03/02/2017,15.0000000,16.0000000,43.236104000000,5.360045000000,,plage de la bonne brise,50427,observation-c539f1c9-de05-4236-aef1-007cf18ae067-3,https://biolit.fr/observations/observation-c539f1c9-de05-4236-aef1-007cf18ae067-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1004-scaled.jpg,,FALSE, +N1,60667,sortie-c539f1c9-de05-4236-aef1-007cf18ae067,https://biolit.fr/sorties/sortie-c539f1c9-de05-4236-aef1-007cf18ae067/,ludovic,,03/02/2017,15.0000000,16.0000000,43.236104000000,5.360045000000,,plage de la bonne brise,50429,observation-c539f1c9-de05-4236-aef1-007cf18ae067-4,https://biolit.fr/observations/observation-c539f1c9-de05-4236-aef1-007cf18ae067-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1005-scaled.jpg,,FALSE, +N1,60667,sortie-c539f1c9-de05-4236-aef1-007cf18ae067,https://biolit.fr/sorties/sortie-c539f1c9-de05-4236-aef1-007cf18ae067/,ludovic,,03/02/2017,15.0000000,16.0000000,43.236104000000,5.360045000000,,plage de la bonne brise,50431,observation-c539f1c9-de05-4236-aef1-007cf18ae067-5,https://biolit.fr/observations/observation-c539f1c9-de05-4236-aef1-007cf18ae067-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1011-scaled.jpg,,FALSE, +N1,60667,sortie-c539f1c9-de05-4236-aef1-007cf18ae067,https://biolit.fr/sorties/sortie-c539f1c9-de05-4236-aef1-007cf18ae067/,ludovic,,03/02/2017,15.0000000,16.0000000,43.236104000000,5.360045000000,,plage de la bonne brise,50433,observation-c539f1c9-de05-4236-aef1-007cf18ae067-6,https://biolit.fr/observations/observation-c539f1c9-de05-4236-aef1-007cf18ae067-6/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1015-scaled.jpg,,TRUE, +N1,60667,sortie-c539f1c9-de05-4236-aef1-007cf18ae067,https://biolit.fr/sorties/sortie-c539f1c9-de05-4236-aef1-007cf18ae067/,ludovic,,03/02/2017,15.0000000,16.0000000,43.236104000000,5.360045000000,,plage de la bonne brise,50435,observation-c539f1c9-de05-4236-aef1-007cf18ae067-7,https://biolit.fr/observations/observation-c539f1c9-de05-4236-aef1-007cf18ae067-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1016-scaled.jpg,,FALSE, +N1,60667,sortie-c539f1c9-de05-4236-aef1-007cf18ae067,https://biolit.fr/sorties/sortie-c539f1c9-de05-4236-aef1-007cf18ae067/,ludovic,,03/02/2017,15.0000000,16.0000000,43.236104000000,5.360045000000,,plage de la bonne brise,50437,observation-c539f1c9-de05-4236-aef1-007cf18ae067-8,https://biolit.fr/observations/observation-c539f1c9-de05-4236-aef1-007cf18ae067-8/,Electra posidoniae,Bryozoaire de la posidonie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1017-scaled.jpg,,TRUE, +N1,60668,sortie-f0b02a35-1eea-4198-ad7f-d06c04c69d7e,https://biolit.fr/sorties/sortie-f0b02a35-1eea-4198-ad7f-d06c04c69d7e/,NVanzu,,03/02/2017,14.0000000,16.0000000,43.233149000000,5.356194000000,,Plage de la bonne brise,50439,observation-f0b02a35-1eea-4198-ad7f-d06c04c69d7e,https://biolit.fr/observations/observation-f0b02a35-1eea-4198-ad7f-d06c04c69d7e/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0193-scaled.jpg,,FALSE, +N1,60668,sortie-f0b02a35-1eea-4198-ad7f-d06c04c69d7e,https://biolit.fr/sorties/sortie-f0b02a35-1eea-4198-ad7f-d06c04c69d7e/,NVanzu,,03/02/2017,14.0000000,16.0000000,43.233149000000,5.356194000000,,Plage de la bonne brise,50441,observation-f0b02a35-1eea-4198-ad7f-d06c04c69d7e-2,https://biolit.fr/observations/observation-f0b02a35-1eea-4198-ad7f-d06c04c69d7e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0194_1-scaled.jpg,,FALSE, +N1,60668,sortie-f0b02a35-1eea-4198-ad7f-d06c04c69d7e,https://biolit.fr/sorties/sortie-f0b02a35-1eea-4198-ad7f-d06c04c69d7e/,NVanzu,,03/02/2017,14.0000000,16.0000000,43.233149000000,5.356194000000,,Plage de la bonne brise,50443,observation-f0b02a35-1eea-4198-ad7f-d06c04c69d7e-3,https://biolit.fr/observations/observation-f0b02a35-1eea-4198-ad7f-d06c04c69d7e-3/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0195-scaled.jpg,,TRUE, +N1,60668,sortie-f0b02a35-1eea-4198-ad7f-d06c04c69d7e,https://biolit.fr/sorties/sortie-f0b02a35-1eea-4198-ad7f-d06c04c69d7e/,NVanzu,,03/02/2017,14.0000000,16.0000000,43.233149000000,5.356194000000,,Plage de la bonne brise,50445,observation-f0b02a35-1eea-4198-ad7f-d06c04c69d7e-4,https://biolit.fr/observations/observation-f0b02a35-1eea-4198-ad7f-d06c04c69d7e-4/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0196-scaled.jpg,,TRUE, +N1,60668,sortie-f0b02a35-1eea-4198-ad7f-d06c04c69d7e,https://biolit.fr/sorties/sortie-f0b02a35-1eea-4198-ad7f-d06c04c69d7e/,NVanzu,,03/02/2017,14.0000000,16.0000000,43.233149000000,5.356194000000,,Plage de la bonne brise,50447,observation-f0b02a35-1eea-4198-ad7f-d06c04c69d7e-5,https://biolit.fr/observations/observation-f0b02a35-1eea-4198-ad7f-d06c04c69d7e-5/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0197-scaled.jpg,,TRUE, +N1,60668,sortie-f0b02a35-1eea-4198-ad7f-d06c04c69d7e,https://biolit.fr/sorties/sortie-f0b02a35-1eea-4198-ad7f-d06c04c69d7e/,NVanzu,,03/02/2017,14.0000000,16.0000000,43.233149000000,5.356194000000,,Plage de la bonne brise,50449,observation-f0b02a35-1eea-4198-ad7f-d06c04c69d7e-6,https://biolit.fr/observations/observation-f0b02a35-1eea-4198-ad7f-d06c04c69d7e-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0200-scaled.jpg,,FALSE, +N1,60668,sortie-f0b02a35-1eea-4198-ad7f-d06c04c69d7e,https://biolit.fr/sorties/sortie-f0b02a35-1eea-4198-ad7f-d06c04c69d7e/,NVanzu,,03/02/2017,14.0000000,16.0000000,43.233149000000,5.356194000000,,Plage de la bonne brise,50451,observation-f0b02a35-1eea-4198-ad7f-d06c04c69d7e-7,https://biolit.fr/observations/observation-f0b02a35-1eea-4198-ad7f-d06c04c69d7e-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0201-scaled.jpg,,FALSE, +N1,60668,sortie-f0b02a35-1eea-4198-ad7f-d06c04c69d7e,https://biolit.fr/sorties/sortie-f0b02a35-1eea-4198-ad7f-d06c04c69d7e/,NVanzu,,03/02/2017,14.0000000,16.0000000,43.233149000000,5.356194000000,,Plage de la bonne brise,50453,observation-f0b02a35-1eea-4198-ad7f-d06c04c69d7e-8,https://biolit.fr/observations/observation-f0b02a35-1eea-4198-ad7f-d06c04c69d7e-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0202-scaled.jpg,,FALSE, +N1,60669,sortie-31096135-3725-4291-a945-f1ff45543ee5,https://biolit.fr/sorties/sortie-31096135-3725-4291-a945-f1ff45543ee5/,ludovic,,03/02/2017,15.0000000,16.0000000,43.236057000000,5.360024000000,,plage de la bonne brise,50455,observation-31096135-3725-4291-a945-f1ff45543ee5,https://biolit.fr/observations/observation-31096135-3725-4291-a945-f1ff45543ee5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0980_0-scaled.jpg,,FALSE, +N1,60669,sortie-31096135-3725-4291-a945-f1ff45543ee5,https://biolit.fr/sorties/sortie-31096135-3725-4291-a945-f1ff45543ee5/,ludovic,,03/02/2017,15.0000000,16.0000000,43.236057000000,5.360024000000,,plage de la bonne brise,50457,observation-31096135-3725-4291-a945-f1ff45543ee5-2,https://biolit.fr/observations/observation-31096135-3725-4291-a945-f1ff45543ee5-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0981_0-scaled.jpg,,TRUE, +N1,60669,sortie-31096135-3725-4291-a945-f1ff45543ee5,https://biolit.fr/sorties/sortie-31096135-3725-4291-a945-f1ff45543ee5/,ludovic,,03/02/2017,15.0000000,16.0000000,43.236057000000,5.360024000000,,plage de la bonne brise,50459,observation-31096135-3725-4291-a945-f1ff45543ee5-3,https://biolit.fr/observations/observation-31096135-3725-4291-a945-f1ff45543ee5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0984-scaled.jpg,,FALSE, +N1,60669,sortie-31096135-3725-4291-a945-f1ff45543ee5,https://biolit.fr/sorties/sortie-31096135-3725-4291-a945-f1ff45543ee5/,ludovic,,03/02/2017,15.0000000,16.0000000,43.236057000000,5.360024000000,,plage de la bonne brise,50461,observation-31096135-3725-4291-a945-f1ff45543ee5-4,https://biolit.fr/observations/observation-31096135-3725-4291-a945-f1ff45543ee5-4/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0987_0-scaled.jpg,,TRUE, +N1,60669,sortie-31096135-3725-4291-a945-f1ff45543ee5,https://biolit.fr/sorties/sortie-31096135-3725-4291-a945-f1ff45543ee5/,ludovic,,03/02/2017,15.0000000,16.0000000,43.236057000000,5.360024000000,,plage de la bonne brise,50463,observation-31096135-3725-4291-a945-f1ff45543ee5-5,https://biolit.fr/observations/observation-31096135-3725-4291-a945-f1ff45543ee5-5/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0988_0-scaled.jpg,,TRUE, +N1,60669,sortie-31096135-3725-4291-a945-f1ff45543ee5,https://biolit.fr/sorties/sortie-31096135-3725-4291-a945-f1ff45543ee5/,ludovic,,03/02/2017,15.0000000,16.0000000,43.236057000000,5.360024000000,,plage de la bonne brise,50465,observation-31096135-3725-4291-a945-f1ff45543ee5-6,https://biolit.fr/observations/observation-31096135-3725-4291-a945-f1ff45543ee5-6/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0994_0-scaled.jpg,,TRUE, +N1,60669,sortie-31096135-3725-4291-a945-f1ff45543ee5,https://biolit.fr/sorties/sortie-31096135-3725-4291-a945-f1ff45543ee5/,ludovic,,03/02/2017,15.0000000,16.0000000,43.236057000000,5.360024000000,,plage de la bonne brise,50467,observation-31096135-3725-4291-a945-f1ff45543ee5-7,https://biolit.fr/observations/observation-31096135-3725-4291-a945-f1ff45543ee5-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0995-scaled.jpg,,FALSE, +N1,60669,sortie-31096135-3725-4291-a945-f1ff45543ee5,https://biolit.fr/sorties/sortie-31096135-3725-4291-a945-f1ff45543ee5/,ludovic,,03/02/2017,15.0000000,16.0000000,43.236057000000,5.360024000000,,plage de la bonne brise,50469,observation-31096135-3725-4291-a945-f1ff45543ee5-8,https://biolit.fr/observations/observation-31096135-3725-4291-a945-f1ff45543ee5-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0997_0-scaled.jpg,,FALSE, +N1,60670,sortie-243599b8-7c58-4351-97bf-22e771832d59,https://biolit.fr/sorties/sortie-243599b8-7c58-4351-97bf-22e771832d59/,tridimeg,,2/24/2017 0:00,10.0000000,11.0000000,47.35017700000,-2.518558000000,,Plage de la Bastille,50471,observation-243599b8-7c58-4351-97bf-22e771832d59,https://biolit.fr/observations/observation-243599b8-7c58-4351-97bf-22e771832d59/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0230.jpg,,TRUE, +N1,60670,sortie-243599b8-7c58-4351-97bf-22e771832d59,https://biolit.fr/sorties/sortie-243599b8-7c58-4351-97bf-22e771832d59/,tridimeg,,2/24/2017 0:00,10.0000000,11.0000000,47.35017700000,-2.518558000000,,Plage de la Bastille,50473,observation-243599b8-7c58-4351-97bf-22e771832d59-2,https://biolit.fr/observations/observation-243599b8-7c58-4351-97bf-22e771832d59-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0232.jpg,,FALSE, +N1,60670,sortie-243599b8-7c58-4351-97bf-22e771832d59,https://biolit.fr/sorties/sortie-243599b8-7c58-4351-97bf-22e771832d59/,tridimeg,,2/24/2017 0:00,10.0000000,11.0000000,47.35017700000,-2.518558000000,,Plage de la Bastille,50475,observation-243599b8-7c58-4351-97bf-22e771832d59-3,https://biolit.fr/observations/observation-243599b8-7c58-4351-97bf-22e771832d59-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_0235.jpg,,TRUE, +N1,60670,sortie-243599b8-7c58-4351-97bf-22e771832d59,https://biolit.fr/sorties/sortie-243599b8-7c58-4351-97bf-22e771832d59/,tridimeg,,2/24/2017 0:00,10.0000000,11.0000000,47.35017700000,-2.518558000000,,Plage de la Bastille,50477,observation-243599b8-7c58-4351-97bf-22e771832d59-4,https://biolit.fr/observations/observation-243599b8-7c58-4351-97bf-22e771832d59-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0240.jpg,,FALSE, +N1,60670,sortie-243599b8-7c58-4351-97bf-22e771832d59,https://biolit.fr/sorties/sortie-243599b8-7c58-4351-97bf-22e771832d59/,tridimeg,,2/24/2017 0:00,10.0000000,11.0000000,47.35017700000,-2.518558000000,,Plage de la Bastille,50479,observation-243599b8-7c58-4351-97bf-22e771832d59-5,https://biolit.fr/observations/observation-243599b8-7c58-4351-97bf-22e771832d59-5/,Bifurcaria bifurcata,Bifurcaire,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0244.jpg,,TRUE, +N1,60671,sortie-96473ed8-2379-423a-95fb-68502b30c260,https://biolit.fr/sorties/sortie-96473ed8-2379-423a-95fb-68502b30c260/,Phil,,2/25/2017 0:00,12.0000000,12.0:15,47.795314000000,-4.276570000000,,Léchiagat - Finistère,50481,observation-96473ed8-2379-423a-95fb-68502b30c260,https://biolit.fr/observations/observation-96473ed8-2379-423a-95fb-68502b30c260/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170225_121121.jpg,,FALSE, +N1,60671,sortie-96473ed8-2379-423a-95fb-68502b30c260,https://biolit.fr/sorties/sortie-96473ed8-2379-423a-95fb-68502b30c260/,Phil,,2/25/2017 0:00,12.0000000,12.0:15,47.795314000000,-4.276570000000,,Léchiagat - Finistère,50483,observation-96473ed8-2379-423a-95fb-68502b30c260-2,https://biolit.fr/observations/observation-96473ed8-2379-423a-95fb-68502b30c260-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170225_121257.jpg,,FALSE, +N1,60672,sortie-4ee7641c-3924-4ee3-80a5-b9348953e57c,https://biolit.fr/sorties/sortie-4ee7641c-3924-4ee3-80a5-b9348953e57c/,Phil,,2/18/2017 0:00,14.0000000,14.0:35,47.80049900000,-4.382472000000,,Penmarc'h - Finistère,50485,observation-4ee7641c-3924-4ee3-80a5-b9348953e57c,https://biolit.fr/observations/observation-4ee7641c-3924-4ee3-80a5-b9348953e57c/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050931.JPG,,TRUE, +N1,60672,sortie-4ee7641c-3924-4ee3-80a5-b9348953e57c,https://biolit.fr/sorties/sortie-4ee7641c-3924-4ee3-80a5-b9348953e57c/,Phil,,2/18/2017 0:00,14.0000000,14.0:35,47.80049900000,-4.382472000000,,Penmarc'h - Finistère,50487,observation-4ee7641c-3924-4ee3-80a5-b9348953e57c-2,https://biolit.fr/observations/observation-4ee7641c-3924-4ee3-80a5-b9348953e57c-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050932.JPG,,TRUE, +N1,60673,sortie-b51cc4cc-7d86-44f0-b0d2-dffa8133caec,https://biolit.fr/sorties/sortie-b51cc4cc-7d86-44f0-b0d2-dffa8133caec/,Phil,,2/21/2017 0:00,16.0000000,16.0:35,48.094027000000,-4.2996110000,,Douarnenez - Finistère,50489,observation-b51cc4cc-7d86-44f0-b0d2-dffa8133caec,https://biolit.fr/observations/observation-b51cc4cc-7d86-44f0-b0d2-dffa8133caec/,Scomber scombrus,Maquereau commun,,https://biolit.fr/wp-content/uploads/2023/07/P1060125.JPG,,TRUE, +N1,60673,sortie-b51cc4cc-7d86-44f0-b0d2-dffa8133caec,https://biolit.fr/sorties/sortie-b51cc4cc-7d86-44f0-b0d2-dffa8133caec/,Phil,,2/21/2017 0:00,16.0000000,16.0:35,48.094027000000,-4.2996110000,,Douarnenez - Finistère,50491,observation-b51cc4cc-7d86-44f0-b0d2-dffa8133caec-2,https://biolit.fr/observations/observation-b51cc4cc-7d86-44f0-b0d2-dffa8133caec-2/,Scomber scombrus,Maquereau commun,,https://biolit.fr/wp-content/uploads/2023/07/P1060123.JPG,,TRUE, +N1,60673,sortie-b51cc4cc-7d86-44f0-b0d2-dffa8133caec,https://biolit.fr/sorties/sortie-b51cc4cc-7d86-44f0-b0d2-dffa8133caec/,Phil,,2/21/2017 0:00,16.0000000,16.0:35,48.094027000000,-4.2996110000,,Douarnenez - Finistère,50493,observation-b51cc4cc-7d86-44f0-b0d2-dffa8133caec-3,https://biolit.fr/observations/observation-b51cc4cc-7d86-44f0-b0d2-dffa8133caec-3/,Scomber scombrus,Maquereau commun,,https://biolit.fr/wp-content/uploads/2023/07/P1060131.JPG,,TRUE, +N1,60673,sortie-b51cc4cc-7d86-44f0-b0d2-dffa8133caec,https://biolit.fr/sorties/sortie-b51cc4cc-7d86-44f0-b0d2-dffa8133caec/,Phil,,2/21/2017 0:00,16.0000000,16.0:35,48.094027000000,-4.2996110000,,Douarnenez - Finistère,50495,observation-b51cc4cc-7d86-44f0-b0d2-dffa8133caec-4,https://biolit.fr/observations/observation-b51cc4cc-7d86-44f0-b0d2-dffa8133caec-4/,Scomber scombrus,Maquereau commun,,https://biolit.fr/wp-content/uploads/2023/07/P1060137.JPG,,TRUE, +N1,60674,sortie-8efd0569-f96e-488f-9898-a78ff738feea,https://biolit.fr/sorties/sortie-8efd0569-f96e-488f-9898-a78ff738feea/,Phil,,2/23/2017 0:00,15.0000000,15.0:25,48.08715700000,-4.487941000000,,Beuzec-Cap-Sizun - Finistère,50497,observation-8efd0569-f96e-488f-9898-a78ff738feea,https://biolit.fr/observations/observation-8efd0569-f96e-488f-9898-a78ff738feea/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060222.JPG,,FALSE, +N1,60674,sortie-8efd0569-f96e-488f-9898-a78ff738feea,https://biolit.fr/sorties/sortie-8efd0569-f96e-488f-9898-a78ff738feea/,Phil,,2/23/2017 0:00,15.0000000,15.0:25,48.08715700000,-4.487941000000,,Beuzec-Cap-Sizun - Finistère,50499,observation-8efd0569-f96e-488f-9898-a78ff738feea-2,https://biolit.fr/observations/observation-8efd0569-f96e-488f-9898-a78ff738feea-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060240.JPG,,FALSE, +N1,60675,sortie-5ea0fa59-89b6-4479-b2cc-d19db70100c3,https://biolit.fr/sorties/sortie-5ea0fa59-89b6-4479-b2cc-d19db70100c3/,Phil,,2/18/2017 0:00,14.0000000,14.0000000,47.80072600000,-4.378622000000,,Penmarc'h - Finistère,50501,observation-5ea0fa59-89b6-4479-b2cc-d19db70100c3,https://biolit.fr/observations/observation-5ea0fa59-89b6-4479-b2cc-d19db70100c3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050882.JPG,,FALSE, +N1,60675,sortie-5ea0fa59-89b6-4479-b2cc-d19db70100c3,https://biolit.fr/sorties/sortie-5ea0fa59-89b6-4479-b2cc-d19db70100c3/,Phil,,2/18/2017 0:00,14.0000000,14.0000000,47.80072600000,-4.378622000000,,Penmarc'h - Finistère,50503,observation-5ea0fa59-89b6-4479-b2cc-d19db70100c3-2,https://biolit.fr/observations/observation-5ea0fa59-89b6-4479-b2cc-d19db70100c3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050892.JPG,,FALSE, +N1,60675,sortie-5ea0fa59-89b6-4479-b2cc-d19db70100c3,https://biolit.fr/sorties/sortie-5ea0fa59-89b6-4479-b2cc-d19db70100c3/,Phil,,2/18/2017 0:00,14.0000000,14.0000000,47.80072600000,-4.378622000000,,Penmarc'h - Finistère,50505,observation-5ea0fa59-89b6-4479-b2cc-d19db70100c3-3,https://biolit.fr/observations/observation-5ea0fa59-89b6-4479-b2cc-d19db70100c3-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050887.JPG,,FALSE, +N1,60675,sortie-5ea0fa59-89b6-4479-b2cc-d19db70100c3,https://biolit.fr/sorties/sortie-5ea0fa59-89b6-4479-b2cc-d19db70100c3/,Phil,,2/18/2017 0:00,14.0000000,14.0000000,47.80072600000,-4.378622000000,,Penmarc'h - Finistère,50507,observation-5ea0fa59-89b6-4479-b2cc-d19db70100c3-4,https://biolit.fr/observations/observation-5ea0fa59-89b6-4479-b2cc-d19db70100c3-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050889.JPG,,FALSE, +N1,60675,sortie-5ea0fa59-89b6-4479-b2cc-d19db70100c3,https://biolit.fr/sorties/sortie-5ea0fa59-89b6-4479-b2cc-d19db70100c3/,Phil,,2/18/2017 0:00,14.0000000,14.0000000,47.80072600000,-4.378622000000,,Penmarc'h - Finistère,50509,observation-5ea0fa59-89b6-4479-b2cc-d19db70100c3-5,https://biolit.fr/observations/observation-5ea0fa59-89b6-4479-b2cc-d19db70100c3-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050880.JPG,,FALSE, +N1,60675,sortie-5ea0fa59-89b6-4479-b2cc-d19db70100c3,https://biolit.fr/sorties/sortie-5ea0fa59-89b6-4479-b2cc-d19db70100c3/,Phil,,2/18/2017 0:00,14.0000000,14.0000000,47.80072600000,-4.378622000000,,Penmarc'h - Finistère,50511,observation-5ea0fa59-89b6-4479-b2cc-d19db70100c3-6,https://biolit.fr/observations/observation-5ea0fa59-89b6-4479-b2cc-d19db70100c3-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050881.JPG,,FALSE, +N1,60676,sortie-d7d0fc71-860f-4fae-8735-a6ab1a009faa,https://biolit.fr/sorties/sortie-d7d0fc71-860f-4fae-8735-a6ab1a009faa/,Phil,,2/25/2017 0:00,12.000005,12.0000000,47.795438000000,-4.276218000000,,Léchiagat - Finistère,50513,observation-d7d0fc71-860f-4fae-8735-a6ab1a009faa,https://biolit.fr/observations/observation-d7d0fc71-860f-4fae-8735-a6ab1a009faa/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20170225_120807.jpg,,TRUE, +N1,60676,sortie-d7d0fc71-860f-4fae-8735-a6ab1a009faa,https://biolit.fr/sorties/sortie-d7d0fc71-860f-4fae-8735-a6ab1a009faa/,Phil,,2/25/2017 0:00,12.000005,12.0000000,47.795438000000,-4.276218000000,,Léchiagat - Finistère,50515,observation-d7d0fc71-860f-4fae-8735-a6ab1a009faa-2,https://biolit.fr/observations/observation-d7d0fc71-860f-4fae-8735-a6ab1a009faa-2/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170225_120850.jpg,,TRUE, +N1,60676,sortie-d7d0fc71-860f-4fae-8735-a6ab1a009faa,https://biolit.fr/sorties/sortie-d7d0fc71-860f-4fae-8735-a6ab1a009faa/,Phil,,2/25/2017 0:00,12.000005,12.0000000,47.795438000000,-4.276218000000,,Léchiagat - Finistère,50517,observation-d7d0fc71-860f-4fae-8735-a6ab1a009faa-3,https://biolit.fr/observations/observation-d7d0fc71-860f-4fae-8735-a6ab1a009faa-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170225_120925.jpg,,FALSE, +N1,60677,sortie-9f9d1307-a0ce-4651-ac4d-c83289376644,https://biolit.fr/sorties/sortie-9f9d1307-a0ce-4651-ac4d-c83289376644/,Phil,,2/18/2017 0:00,18.000005,18.0000000,47.892159000000,-3.961266000000,,La Forêt-Fouesnant - Finistère,50519,observation-9f9d1307-a0ce-4651-ac4d-c83289376644,https://biolit.fr/observations/observation-9f9d1307-a0ce-4651-ac4d-c83289376644/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1060066.JPG,,TRUE, +N1,60677,sortie-9f9d1307-a0ce-4651-ac4d-c83289376644,https://biolit.fr/sorties/sortie-9f9d1307-a0ce-4651-ac4d-c83289376644/,Phil,,2/18/2017 0:00,18.000005,18.0000000,47.892159000000,-3.961266000000,,La Forêt-Fouesnant - Finistère,50521,observation-9f9d1307-a0ce-4651-ac4d-c83289376644-2,https://biolit.fr/observations/observation-9f9d1307-a0ce-4651-ac4d-c83289376644-2/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1060067.JPG,,TRUE, +N1,60677,sortie-9f9d1307-a0ce-4651-ac4d-c83289376644,https://biolit.fr/sorties/sortie-9f9d1307-a0ce-4651-ac4d-c83289376644/,Phil,,2/18/2017 0:00,18.000005,18.0000000,47.892159000000,-3.961266000000,,La Forêt-Fouesnant - Finistère,50523,observation-9f9d1307-a0ce-4651-ac4d-c83289376644-3,https://biolit.fr/observations/observation-9f9d1307-a0ce-4651-ac4d-c83289376644-3/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1060069.JPG,,TRUE, +N1,60678,sortie-c1db81e1-4beb-4b9e-aa20-28a569b17d63,https://biolit.fr/sorties/sortie-c1db81e1-4beb-4b9e-aa20-28a569b17d63/,Phil,,2/23/2017 0:00,15.0:15,15.0000000,48.086509000000,-4.486781000000,,Beuzec-Cap-Sizun - Finistère,50525,observation-c1db81e1-4beb-4b9e-aa20-28a569b17d63,https://biolit.fr/observations/observation-c1db81e1-4beb-4b9e-aa20-28a569b17d63/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060221.JPG,,FALSE, +N1,60678,sortie-c1db81e1-4beb-4b9e-aa20-28a569b17d63,https://biolit.fr/sorties/sortie-c1db81e1-4beb-4b9e-aa20-28a569b17d63/,Phil,,2/23/2017 0:00,15.0:15,15.0000000,48.086509000000,-4.486781000000,,Beuzec-Cap-Sizun - Finistère,50527,observation-c1db81e1-4beb-4b9e-aa20-28a569b17d63-2,https://biolit.fr/observations/observation-c1db81e1-4beb-4b9e-aa20-28a569b17d63-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060248.JPG,,FALSE, +N1,60678,sortie-c1db81e1-4beb-4b9e-aa20-28a569b17d63,https://biolit.fr/sorties/sortie-c1db81e1-4beb-4b9e-aa20-28a569b17d63/,Phil,,2/23/2017 0:00,15.0:15,15.0000000,48.086509000000,-4.486781000000,,Beuzec-Cap-Sizun - Finistère,50529,observation-c1db81e1-4beb-4b9e-aa20-28a569b17d63-3,https://biolit.fr/observations/observation-c1db81e1-4beb-4b9e-aa20-28a569b17d63-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060220.JPG,,FALSE, +N1,60679,sortie-9176ce62-fd2c-4e87-9c3b-0a875f9e6692,https://biolit.fr/sorties/sortie-9176ce62-fd2c-4e87-9c3b-0a875f9e6692/,azelie,,2/25/2017 0:00,16.0000000,16.0000000,49.294651000000,-0.115481000000,,Plage de Cabourg ,50531,observation-9176ce62-fd2c-4e87-9c3b-0a875f9e6692,https://biolit.fr/observations/observation-9176ce62-fd2c-4e87-9c3b-0a875f9e6692/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3857-scaled.jpg,,TRUE, +N1,60679,sortie-9176ce62-fd2c-4e87-9c3b-0a875f9e6692,https://biolit.fr/sorties/sortie-9176ce62-fd2c-4e87-9c3b-0a875f9e6692/,azelie,,2/25/2017 0:00,16.0000000,16.0000000,49.294651000000,-0.115481000000,,Plage de Cabourg ,50533,observation-9176ce62-fd2c-4e87-9c3b-0a875f9e6692-2,https://biolit.fr/observations/observation-9176ce62-fd2c-4e87-9c3b-0a875f9e6692-2/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3860-scaled.jpg,,TRUE, +N1,60679,sortie-9176ce62-fd2c-4e87-9c3b-0a875f9e6692,https://biolit.fr/sorties/sortie-9176ce62-fd2c-4e87-9c3b-0a875f9e6692/,azelie,,2/25/2017 0:00,16.0000000,16.0000000,49.294651000000,-0.115481000000,,Plage de Cabourg ,50535,observation-9176ce62-fd2c-4e87-9c3b-0a875f9e6692-3,https://biolit.fr/observations/observation-9176ce62-fd2c-4e87-9c3b-0a875f9e6692-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3863-scaled.jpg,,FALSE, +N1,60679,sortie-9176ce62-fd2c-4e87-9c3b-0a875f9e6692,https://biolit.fr/sorties/sortie-9176ce62-fd2c-4e87-9c3b-0a875f9e6692/,azelie,,2/25/2017 0:00,16.0000000,16.0000000,49.294651000000,-0.115481000000,,Plage de Cabourg ,50537,observation-9176ce62-fd2c-4e87-9c3b-0a875f9e6692-4,https://biolit.fr/observations/observation-9176ce62-fd2c-4e87-9c3b-0a875f9e6692-4/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3864-scaled.jpg,,TRUE, +N1,60679,sortie-9176ce62-fd2c-4e87-9c3b-0a875f9e6692,https://biolit.fr/sorties/sortie-9176ce62-fd2c-4e87-9c3b-0a875f9e6692/,azelie,,2/25/2017 0:00,16.0000000,16.0000000,49.294651000000,-0.115481000000,,Plage de Cabourg ,50539,observation-9176ce62-fd2c-4e87-9c3b-0a875f9e6692-5,https://biolit.fr/observations/observation-9176ce62-fd2c-4e87-9c3b-0a875f9e6692-5/,Euspira catena,Natice porte-chaîne,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3866-scaled.jpg,,TRUE, +N1,60680,sortie-604b69d6-7bf2-4a20-bcd2-54983e9f510e,https://biolit.fr/sorties/sortie-604b69d6-7bf2-4a20-bcd2-54983e9f510e/,Phil,,2/25/2017 0:00,12.0000000,12.000005,47.795686000000,-4.275353000000,,Léchiagat - Finistère,50541,observation-604b69d6-7bf2-4a20-bcd2-54983e9f510e,https://biolit.fr/observations/observation-604b69d6-7bf2-4a20-bcd2-54983e9f510e/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170225_120548.jpg,,TRUE, +N1,60680,sortie-604b69d6-7bf2-4a20-bcd2-54983e9f510e,https://biolit.fr/sorties/sortie-604b69d6-7bf2-4a20-bcd2-54983e9f510e/,Phil,,2/25/2017 0:00,12.0000000,12.000005,47.795686000000,-4.275353000000,,Léchiagat - Finistère,50543,observation-604b69d6-7bf2-4a20-bcd2-54983e9f510e-2,https://biolit.fr/observations/observation-604b69d6-7bf2-4a20-bcd2-54983e9f510e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170225_120649.jpg,,FALSE, +N1,60680,sortie-604b69d6-7bf2-4a20-bcd2-54983e9f510e,https://biolit.fr/sorties/sortie-604b69d6-7bf2-4a20-bcd2-54983e9f510e/,Phil,,2/25/2017 0:00,12.0000000,12.000005,47.795686000000,-4.275353000000,,Léchiagat - Finistère,50545,observation-604b69d6-7bf2-4a20-bcd2-54983e9f510e-3,https://biolit.fr/observations/observation-604b69d6-7bf2-4a20-bcd2-54983e9f510e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170225_120525.jpg,,FALSE, +N1,60681,sortie-654d0d9a-6616-4fe5-8760-49ce5958cd24,https://biolit.fr/sorties/sortie-654d0d9a-6616-4fe5-8760-49ce5958cd24/,Phil,,2/18/2017 0:00,17.0:55,18.0000000,47.890784000000,-3.963446000000,,La Forêt-Fouesnant - Finistère,50547,observation-654d0d9a-6616-4fe5-8760-49ce5958cd24,https://biolit.fr/observations/observation-654d0d9a-6616-4fe5-8760-49ce5958cd24/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060058.JPG,,FALSE, +N1,60681,sortie-654d0d9a-6616-4fe5-8760-49ce5958cd24,https://biolit.fr/sorties/sortie-654d0d9a-6616-4fe5-8760-49ce5958cd24/,Phil,,2/18/2017 0:00,17.0:55,18.0000000,47.890784000000,-3.963446000000,,La Forêt-Fouesnant - Finistère,50549,observation-654d0d9a-6616-4fe5-8760-49ce5958cd24-2,https://biolit.fr/observations/observation-654d0d9a-6616-4fe5-8760-49ce5958cd24-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060059.JPG,,FALSE, +N1,60681,sortie-654d0d9a-6616-4fe5-8760-49ce5958cd24,https://biolit.fr/sorties/sortie-654d0d9a-6616-4fe5-8760-49ce5958cd24/,Phil,,2/18/2017 0:00,17.0:55,18.0000000,47.890784000000,-3.963446000000,,La Forêt-Fouesnant - Finistère,50551,observation-654d0d9a-6616-4fe5-8760-49ce5958cd24-3,https://biolit.fr/observations/observation-654d0d9a-6616-4fe5-8760-49ce5958cd24-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060063.JPG,,FALSE, +N1,60682,sortie-cdf8ad2e-2ec2-4dd4-8cf7-13a0926481f2,https://biolit.fr/sorties/sortie-cdf8ad2e-2ec2-4dd4-8cf7-13a0926481f2/,Phil,,2/23/2017 0:00,15.000005,15.0000000,48.086586000000,-4.485846000000,,Beuzec-Cap-Sizun - Finistère,50553,observation-cdf8ad2e-2ec2-4dd4-8cf7-13a0926481f2,https://biolit.fr/observations/observation-cdf8ad2e-2ec2-4dd4-8cf7-13a0926481f2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060207.JPG,,FALSE, +N1,60682,sortie-cdf8ad2e-2ec2-4dd4-8cf7-13a0926481f2,https://biolit.fr/sorties/sortie-cdf8ad2e-2ec2-4dd4-8cf7-13a0926481f2/,Phil,,2/23/2017 0:00,15.000005,15.0000000,48.086586000000,-4.485846000000,,Beuzec-Cap-Sizun - Finistère,50555,observation-cdf8ad2e-2ec2-4dd4-8cf7-13a0926481f2-2,https://biolit.fr/observations/observation-cdf8ad2e-2ec2-4dd4-8cf7-13a0926481f2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060210.JPG,,FALSE, +N1,60682,sortie-cdf8ad2e-2ec2-4dd4-8cf7-13a0926481f2,https://biolit.fr/sorties/sortie-cdf8ad2e-2ec2-4dd4-8cf7-13a0926481f2/,Phil,,2/23/2017 0:00,15.000005,15.0000000,48.086586000000,-4.485846000000,,Beuzec-Cap-Sizun - Finistère,50557,observation-cdf8ad2e-2ec2-4dd4-8cf7-13a0926481f2-3,https://biolit.fr/observations/observation-cdf8ad2e-2ec2-4dd4-8cf7-13a0926481f2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060212.JPG,,FALSE, +N1,60682,sortie-cdf8ad2e-2ec2-4dd4-8cf7-13a0926481f2,https://biolit.fr/sorties/sortie-cdf8ad2e-2ec2-4dd4-8cf7-13a0926481f2/,Phil,,2/23/2017 0:00,15.000005,15.0000000,48.086586000000,-4.485846000000,,Beuzec-Cap-Sizun - Finistère,50559,observation-cdf8ad2e-2ec2-4dd4-8cf7-13a0926481f2-4,https://biolit.fr/observations/observation-cdf8ad2e-2ec2-4dd4-8cf7-13a0926481f2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060213.JPG,,FALSE, +N1,60683,sortie-55f6181a-fcc4-4d90-b3cb-11c5bb91ae87,https://biolit.fr/sorties/sortie-55f6181a-fcc4-4d90-b3cb-11c5bb91ae87/,Phil,,2/18/2017 0:00,17.0000000,18.0000000,47.89343300000,-3.968096000000,,La Forêt-Fouesnant - Finistère,50561,observation-55f6181a-fcc4-4d90-b3cb-11c5bb91ae87,https://biolit.fr/observations/observation-55f6181a-fcc4-4d90-b3cb-11c5bb91ae87/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060047.JPG,,FALSE, +N1,60683,sortie-55f6181a-fcc4-4d90-b3cb-11c5bb91ae87,https://biolit.fr/sorties/sortie-55f6181a-fcc4-4d90-b3cb-11c5bb91ae87/,Phil,,2/18/2017 0:00,17.0000000,18.0000000,47.89343300000,-3.968096000000,,La Forêt-Fouesnant - Finistère,50563,observation-55f6181a-fcc4-4d90-b3cb-11c5bb91ae87-2,https://biolit.fr/observations/observation-55f6181a-fcc4-4d90-b3cb-11c5bb91ae87-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060053.JPG,,FALSE, +N1,60683,sortie-55f6181a-fcc4-4d90-b3cb-11c5bb91ae87,https://biolit.fr/sorties/sortie-55f6181a-fcc4-4d90-b3cb-11c5bb91ae87/,Phil,,2/18/2017 0:00,17.0000000,18.0000000,47.89343300000,-3.968096000000,,La Forêt-Fouesnant - Finistère,50565,observation-55f6181a-fcc4-4d90-b3cb-11c5bb91ae87-3,https://biolit.fr/observations/observation-55f6181a-fcc4-4d90-b3cb-11c5bb91ae87-3/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1060056.JPG,,TRUE, +N1,60684,sortie-671065cf-df96-4a49-a456-ac2d3fa0d881,https://biolit.fr/sorties/sortie-671065cf-df96-4a49-a456-ac2d3fa0d881/,Phil,,2/21/2017 0:00,16.0:15,16.0:25,48.093448000000,-4.298409000000,,Douarnenez - Finistère,50567,observation-671065cf-df96-4a49-a456-ac2d3fa0d881,https://biolit.fr/observations/observation-671065cf-df96-4a49-a456-ac2d3fa0d881/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1060113.JPG,,TRUE, +N1,60684,sortie-671065cf-df96-4a49-a456-ac2d3fa0d881,https://biolit.fr/sorties/sortie-671065cf-df96-4a49-a456-ac2d3fa0d881/,Phil,,2/21/2017 0:00,16.0:15,16.0:25,48.093448000000,-4.298409000000,,Douarnenez - Finistère,50569,observation-671065cf-df96-4a49-a456-ac2d3fa0d881-2,https://biolit.fr/observations/observation-671065cf-df96-4a49-a456-ac2d3fa0d881-2/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1060115.JPG,,TRUE, +N1,60684,sortie-671065cf-df96-4a49-a456-ac2d3fa0d881,https://biolit.fr/sorties/sortie-671065cf-df96-4a49-a456-ac2d3fa0d881/,Phil,,2/21/2017 0:00,16.0:15,16.0:25,48.093448000000,-4.298409000000,,Douarnenez - Finistère,50571,observation-671065cf-df96-4a49-a456-ac2d3fa0d881-3,https://biolit.fr/observations/observation-671065cf-df96-4a49-a456-ac2d3fa0d881-3/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060110.JPG,,TRUE, +N1,60684,sortie-671065cf-df96-4a49-a456-ac2d3fa0d881,https://biolit.fr/sorties/sortie-671065cf-df96-4a49-a456-ac2d3fa0d881/,Phil,,2/21/2017 0:00,16.0:15,16.0:25,48.093448000000,-4.298409000000,,Douarnenez - Finistère,50573,observation-671065cf-df96-4a49-a456-ac2d3fa0d881-4,https://biolit.fr/observations/observation-671065cf-df96-4a49-a456-ac2d3fa0d881-4/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P1060111.JPG,,TRUE, +N1,60684,sortie-671065cf-df96-4a49-a456-ac2d3fa0d881,https://biolit.fr/sorties/sortie-671065cf-df96-4a49-a456-ac2d3fa0d881/,Phil,,2/21/2017 0:00,16.0:15,16.0:25,48.093448000000,-4.298409000000,,Douarnenez - Finistère,50575,observation-671065cf-df96-4a49-a456-ac2d3fa0d881-5,https://biolit.fr/observations/observation-671065cf-df96-4a49-a456-ac2d3fa0d881-5/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P1060104.JPG,,TRUE, +N1,60684,sortie-671065cf-df96-4a49-a456-ac2d3fa0d881,https://biolit.fr/sorties/sortie-671065cf-df96-4a49-a456-ac2d3fa0d881/,Phil,,2/21/2017 0:00,16.0:15,16.0:25,48.093448000000,-4.298409000000,,Douarnenez - Finistère,50577,observation-671065cf-df96-4a49-a456-ac2d3fa0d881-6,https://biolit.fr/observations/observation-671065cf-df96-4a49-a456-ac2d3fa0d881-6/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P1060102.JPG,,TRUE, +N1,60684,sortie-671065cf-df96-4a49-a456-ac2d3fa0d881,https://biolit.fr/sorties/sortie-671065cf-df96-4a49-a456-ac2d3fa0d881/,Phil,,2/21/2017 0:00,16.0:15,16.0:25,48.093448000000,-4.298409000000,,Douarnenez - Finistère,50579,observation-671065cf-df96-4a49-a456-ac2d3fa0d881-7,https://biolit.fr/observations/observation-671065cf-df96-4a49-a456-ac2d3fa0d881-7/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1060098.JPG,,TRUE, +N1,60684,sortie-671065cf-df96-4a49-a456-ac2d3fa0d881,https://biolit.fr/sorties/sortie-671065cf-df96-4a49-a456-ac2d3fa0d881/,Phil,,2/21/2017 0:00,16.0:15,16.0:25,48.093448000000,-4.298409000000,,Douarnenez - Finistère,50581,observation-671065cf-df96-4a49-a456-ac2d3fa0d881-8,https://biolit.fr/observations/observation-671065cf-df96-4a49-a456-ac2d3fa0d881-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060101.JPG,,FALSE, +N1,60685,sortie-a9a5edaf-7d7c-4e8d-ae79-17ecca4e6f41,https://biolit.fr/sorties/sortie-a9a5edaf-7d7c-4e8d-ae79-17ecca4e6f41/,Phil,,2/18/2017 0:00,17.0000000,17.0:35,47.891210000000,-3.966450000000,,La Forêt-Fouesnant - Finistère,50583,observation-a9a5edaf-7d7c-4e8d-ae79-17ecca4e6f41,https://biolit.fr/observations/observation-a9a5edaf-7d7c-4e8d-ae79-17ecca4e6f41/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170218_173401.jpg,,FALSE, +N1,60685,sortie-a9a5edaf-7d7c-4e8d-ae79-17ecca4e6f41,https://biolit.fr/sorties/sortie-a9a5edaf-7d7c-4e8d-ae79-17ecca4e6f41/,Phil,,2/18/2017 0:00,17.0000000,17.0:35,47.891210000000,-3.966450000000,,La Forêt-Fouesnant - Finistère,50585,observation-a9a5edaf-7d7c-4e8d-ae79-17ecca4e6f41-2,https://biolit.fr/observations/observation-a9a5edaf-7d7c-4e8d-ae79-17ecca4e6f41-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170218_173415.jpg,,FALSE, +N1,60685,sortie-a9a5edaf-7d7c-4e8d-ae79-17ecca4e6f41,https://biolit.fr/sorties/sortie-a9a5edaf-7d7c-4e8d-ae79-17ecca4e6f41/,Phil,,2/18/2017 0:00,17.0000000,17.0:35,47.891210000000,-3.966450000000,,La Forêt-Fouesnant - Finistère,50587,observation-a9a5edaf-7d7c-4e8d-ae79-17ecca4e6f41-3,https://biolit.fr/observations/observation-a9a5edaf-7d7c-4e8d-ae79-17ecca4e6f41-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170218_173502.jpg,,FALSE, +N1,60686,sortie-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9,https://biolit.fr/sorties/sortie-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9/,Phil,,2/18/2017 0:00,13.0:55,14.000005,47.79999400000,-4.377622000000,,Penmarc'h - Finistère,50589,observation-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9,https://biolit.fr/observations/observation-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1050870.JPG,,TRUE, +N1,60686,sortie-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9,https://biolit.fr/sorties/sortie-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9/,Phil,,2/18/2017 0:00,13.0:55,14.000005,47.79999400000,-4.377622000000,,Penmarc'h - Finistère,50591,observation-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9-2,https://biolit.fr/observations/observation-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9-2/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1050871.JPG,,TRUE, +N1,60686,sortie-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9,https://biolit.fr/sorties/sortie-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9/,Phil,,2/18/2017 0:00,13.0:55,14.000005,47.79999400000,-4.377622000000,,Penmarc'h - Finistère,50593,observation-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9-3,https://biolit.fr/observations/observation-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050873.JPG,,FALSE, +N1,60686,sortie-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9,https://biolit.fr/sorties/sortie-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9/,Phil,,2/18/2017 0:00,13.0:55,14.000005,47.79999400000,-4.377622000000,,Penmarc'h - Finistère,50595,observation-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9-4,https://biolit.fr/observations/observation-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9-4/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1050874.JPG,,TRUE, +N1,60686,sortie-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9,https://biolit.fr/sorties/sortie-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9/,Phil,,2/18/2017 0:00,13.0:55,14.000005,47.79999400000,-4.377622000000,,Penmarc'h - Finistère,50597,observation-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9-5,https://biolit.fr/observations/observation-49c8dc80-4c3a-4c88-85ea-f1a0c11718e9-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1050876.JPG,,TRUE, +N1,60687,sortie-e3b62d7d-94ed-4faf-8159-e04ac36b7ff0,https://biolit.fr/sorties/sortie-e3b62d7d-94ed-4faf-8159-e04ac36b7ff0/,Phil,,2/21/2017 0:00,16.0000000,16.0:15,48.093110000000,-4.299916000000,,Douarnenez - Finistère,50599,observation-e3b62d7d-94ed-4faf-8159-e04ac36b7ff0,https://biolit.fr/observations/observation-e3b62d7d-94ed-4faf-8159-e04ac36b7ff0/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060096.JPG,,FALSE, +N1,60687,sortie-e3b62d7d-94ed-4faf-8159-e04ac36b7ff0,https://biolit.fr/sorties/sortie-e3b62d7d-94ed-4faf-8159-e04ac36b7ff0/,Phil,,2/21/2017 0:00,16.0000000,16.0:15,48.093110000000,-4.299916000000,,Douarnenez - Finistère,50601,observation-e3b62d7d-94ed-4faf-8159-e04ac36b7ff0-2,https://biolit.fr/observations/observation-e3b62d7d-94ed-4faf-8159-e04ac36b7ff0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060091.JPG,,FALSE, +N1,60687,sortie-e3b62d7d-94ed-4faf-8159-e04ac36b7ff0,https://biolit.fr/sorties/sortie-e3b62d7d-94ed-4faf-8159-e04ac36b7ff0/,Phil,,2/21/2017 0:00,16.0000000,16.0:15,48.093110000000,-4.299916000000,,Douarnenez - Finistère,50603,observation-e3b62d7d-94ed-4faf-8159-e04ac36b7ff0-3,https://biolit.fr/observations/observation-e3b62d7d-94ed-4faf-8159-e04ac36b7ff0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060094.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50605,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4280.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50607,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-2,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4281.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50609,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-3,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-3/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4282.JPG,,TRUE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50611,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-4,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4284.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50613,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-5,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4285.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50615,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-6,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4286.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50617,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-7,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4287.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50619,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-8,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4288.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50621,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-9,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4289.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50623,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-10,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4292.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50625,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-11,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-11/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4296.JPG,,TRUE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50627,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-12,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-12/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4301.JPG,,TRUE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50629,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-13,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4316.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50631,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-14,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4245.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50633,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-15,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4239.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50635,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-16,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4246.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50637,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-17,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4248.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50639,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-18,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4250.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50641,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-19,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4258.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50643,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-20,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-20/,Bolinus brandaris,Murex épineux,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4266.JPG,,TRUE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50645,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-21,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4276.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50647,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-22,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-22/,Pecten jacobaeus,Coquille Saint-Jacques de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4310.JPG,,TRUE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50649,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-23,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-23/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4312.JPG,,TRUE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50651,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-24,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4201.JPG,,FALSE, +N1,60688,sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb,https://biolit.fr/sorties/sortie-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb/,EEPU Bernard Malgoire,,2/21/2017 0:00,9.0000000,11.0000000,43.457259000000,3.817276000000,,Plage des Aresquiers,50653,observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-25,https://biolit.fr/observations/observation-6af58e47-373f-4cb9-8a3e-d84b4a24aeeb-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN3823.JPG,,FALSE, +N1,60689,sortie-dbce3190-9006-455c-8137-792055de2188,https://biolit.fr/sorties/sortie-dbce3190-9006-455c-8137-792055de2188/,Phil,,2/18/2017 0:00,13.0:45,13.0:55,47.800373000000,-4.379491000000,,Penmarc'h - Finistère,50655,observation-dbce3190-9006-455c-8137-792055de2188,https://biolit.fr/observations/observation-dbce3190-9006-455c-8137-792055de2188/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1050853.JPG,,TRUE, +N1,60689,sortie-dbce3190-9006-455c-8137-792055de2188,https://biolit.fr/sorties/sortie-dbce3190-9006-455c-8137-792055de2188/,Phil,,2/18/2017 0:00,13.0:45,13.0:55,47.800373000000,-4.379491000000,,Penmarc'h - Finistère,50657,observation-dbce3190-9006-455c-8137-792055de2188-2,https://biolit.fr/observations/observation-dbce3190-9006-455c-8137-792055de2188-2/,Phyllodoce maculata,Phyllodoce tacheté,,https://biolit.fr/wp-content/uploads/2023/07/P1050850.JPG,,TRUE, +N1,60689,sortie-dbce3190-9006-455c-8137-792055de2188,https://biolit.fr/sorties/sortie-dbce3190-9006-455c-8137-792055de2188/,Phil,,2/18/2017 0:00,13.0:45,13.0:55,47.800373000000,-4.379491000000,,Penmarc'h - Finistère,50659,observation-dbce3190-9006-455c-8137-792055de2188-3,https://biolit.fr/observations/observation-dbce3190-9006-455c-8137-792055de2188-3/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/P1050855.JPG,,TRUE, +N1,60690,sortie-0857a6ce-55ad-45c5-a40c-8b81e540b18e,https://biolit.fr/sorties/sortie-0857a6ce-55ad-45c5-a40c-8b81e540b18e/,Phil,,2/21/2017 0:00,16.000005,16.0000000,48.092555000000,-4.296920000000,,Douarnenez - Finistère,50661,observation-0857a6ce-55ad-45c5-a40c-8b81e540b18e,https://biolit.fr/observations/observation-0857a6ce-55ad-45c5-a40c-8b81e540b18e/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/P1060087.JPG,,TRUE, +N1,60690,sortie-0857a6ce-55ad-45c5-a40c-8b81e540b18e,https://biolit.fr/sorties/sortie-0857a6ce-55ad-45c5-a40c-8b81e540b18e/,Phil,,2/21/2017 0:00,16.000005,16.0000000,48.092555000000,-4.296920000000,,Douarnenez - Finistère,50663,observation-0857a6ce-55ad-45c5-a40c-8b81e540b18e-2,https://biolit.fr/observations/observation-0857a6ce-55ad-45c5-a40c-8b81e540b18e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060075.JPG,,FALSE, +N1,60690,sortie-0857a6ce-55ad-45c5-a40c-8b81e540b18e,https://biolit.fr/sorties/sortie-0857a6ce-55ad-45c5-a40c-8b81e540b18e/,Phil,,2/21/2017 0:00,16.000005,16.0000000,48.092555000000,-4.296920000000,,Douarnenez - Finistère,50665,observation-0857a6ce-55ad-45c5-a40c-8b81e540b18e-3,https://biolit.fr/observations/observation-0857a6ce-55ad-45c5-a40c-8b81e540b18e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060071.JPG,,FALSE, +N1,60691,sortie-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931,https://biolit.fr/sorties/sortie-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931/,Phil,,2/18/2017 0:00,13.000005,13.0000000,47.833289000000,-4.17503400000,,Loctudy - Finistère,50667,observation-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931,https://biolit.fr/observations/observation-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050827.JPG,,FALSE, +N1,60691,sortie-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931,https://biolit.fr/sorties/sortie-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931/,Phil,,2/18/2017 0:00,13.000005,13.0000000,47.833289000000,-4.17503400000,,Loctudy - Finistère,50669,observation-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931-2,https://biolit.fr/observations/observation-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050819_0.JPG,,FALSE, +N1,60691,sortie-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931,https://biolit.fr/sorties/sortie-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931/,Phil,,2/18/2017 0:00,13.000005,13.0000000,47.833289000000,-4.17503400000,,Loctudy - Finistère,50671,observation-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931-3,https://biolit.fr/observations/observation-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050814.JPG,,FALSE, +N1,60691,sortie-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931,https://biolit.fr/sorties/sortie-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931/,Phil,,2/18/2017 0:00,13.000005,13.0000000,47.833289000000,-4.17503400000,,Loctudy - Finistère,50673,observation-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931-4,https://biolit.fr/observations/observation-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050809.JPG,,FALSE, +N1,60691,sortie-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931,https://biolit.fr/sorties/sortie-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931/,Phil,,2/18/2017 0:00,13.000005,13.0000000,47.833289000000,-4.17503400000,,Loctudy - Finistère,50675,observation-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931-5,https://biolit.fr/observations/observation-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050802.JPG,,FALSE, +N1,60691,sortie-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931,https://biolit.fr/sorties/sortie-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931/,Phil,,2/18/2017 0:00,13.000005,13.0000000,47.833289000000,-4.17503400000,,Loctudy - Finistère,50677,observation-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931-6,https://biolit.fr/observations/observation-4c65f1e5-0f4d-42e2-b90e-cdd597f0e931-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050806.JPG,,FALSE, +N1,60692,sortie-45e3e449-dec8-4447-ad98-90a99dbdf7ef,https://biolit.fr/sorties/sortie-45e3e449-dec8-4447-ad98-90a99dbdf7ef/,Phil,,2/18/2017 0:00,13.0:55,14.000005,47.800077000000,-4.383030000000,,Penmarc'h - Finistère,50679,observation-45e3e449-dec8-4447-ad98-90a99dbdf7ef,https://biolit.fr/observations/observation-45e3e449-dec8-4447-ad98-90a99dbdf7ef/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1050868.JPG,,TRUE, +N1,60692,sortie-45e3e449-dec8-4447-ad98-90a99dbdf7ef,https://biolit.fr/sorties/sortie-45e3e449-dec8-4447-ad98-90a99dbdf7ef/,Phil,,2/18/2017 0:00,13.0:55,14.000005,47.800077000000,-4.383030000000,,Penmarc'h - Finistère,50681,observation-45e3e449-dec8-4447-ad98-90a99dbdf7ef-2,https://biolit.fr/observations/observation-45e3e449-dec8-4447-ad98-90a99dbdf7ef-2/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1050867.JPG,,TRUE, +N1,60692,sortie-45e3e449-dec8-4447-ad98-90a99dbdf7ef,https://biolit.fr/sorties/sortie-45e3e449-dec8-4447-ad98-90a99dbdf7ef/,Phil,,2/18/2017 0:00,13.0:55,14.000005,47.800077000000,-4.383030000000,,Penmarc'h - Finistère,50683,observation-45e3e449-dec8-4447-ad98-90a99dbdf7ef-3,https://biolit.fr/observations/observation-45e3e449-dec8-4447-ad98-90a99dbdf7ef-3/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/P1050861.JPG,,TRUE, +N1,60692,sortie-45e3e449-dec8-4447-ad98-90a99dbdf7ef,https://biolit.fr/sorties/sortie-45e3e449-dec8-4447-ad98-90a99dbdf7ef/,Phil,,2/18/2017 0:00,13.0:55,14.000005,47.800077000000,-4.383030000000,,Penmarc'h - Finistère,50685,observation-45e3e449-dec8-4447-ad98-90a99dbdf7ef-4,https://biolit.fr/observations/observation-45e3e449-dec8-4447-ad98-90a99dbdf7ef-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1050844.JPG,,TRUE, +N1,60693,sortie-c05758cb-bd7b-400c-992a-3419520830db,https://biolit.fr/sorties/sortie-c05758cb-bd7b-400c-992a-3419520830db/,Phil,,2/18/2017 0:00,17.0:35,17.0000000,47.892598000000,-3.965764000000,,La Forêt-Fouesnant - Finistère,50687,observation-c05758cb-bd7b-400c-992a-3419520830db,https://biolit.fr/observations/observation-c05758cb-bd7b-400c-992a-3419520830db/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20170218_173629.jpg,,TRUE, +N1,60693,sortie-c05758cb-bd7b-400c-992a-3419520830db,https://biolit.fr/sorties/sortie-c05758cb-bd7b-400c-992a-3419520830db/,Phil,,2/18/2017 0:00,17.0:35,17.0000000,47.892598000000,-3.965764000000,,La Forêt-Fouesnant - Finistère,50689,observation-c05758cb-bd7b-400c-992a-3419520830db-2,https://biolit.fr/observations/observation-c05758cb-bd7b-400c-992a-3419520830db-2/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20170218_173623.jpg,,TRUE, +N1,60694,sortie-7bcdcb5f-cb82-47e9-8814-a0cf37d4a89e,https://biolit.fr/sorties/sortie-7bcdcb5f-cb82-47e9-8814-a0cf37d4a89e/,Phil,,2/18/2017 0:00,17.0000000,17.0:15,47.897366000000,-3.975482000000,,La Forêt-Fouesnant - Finistère,50691,observation-7bcdcb5f-cb82-47e9-8814-a0cf37d4a89e,https://biolit.fr/observations/observation-7bcdcb5f-cb82-47e9-8814-a0cf37d4a89e/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20170218_171410.jpg,,TRUE, +N1,60694,sortie-7bcdcb5f-cb82-47e9-8814-a0cf37d4a89e,https://biolit.fr/sorties/sortie-7bcdcb5f-cb82-47e9-8814-a0cf37d4a89e/,Phil,,2/18/2017 0:00,17.0000000,17.0:15,47.897366000000,-3.975482000000,,La Forêt-Fouesnant - Finistère,50693,observation-7bcdcb5f-cb82-47e9-8814-a0cf37d4a89e-2,https://biolit.fr/observations/observation-7bcdcb5f-cb82-47e9-8814-a0cf37d4a89e-2/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/20170218_171251.jpg,,TRUE, +N1,60694,sortie-7bcdcb5f-cb82-47e9-8814-a0cf37d4a89e,https://biolit.fr/sorties/sortie-7bcdcb5f-cb82-47e9-8814-a0cf37d4a89e/,Phil,,2/18/2017 0:00,17.0000000,17.0:15,47.897366000000,-3.975482000000,,La Forêt-Fouesnant - Finistère,50695,observation-7bcdcb5f-cb82-47e9-8814-a0cf37d4a89e-3,https://biolit.fr/observations/observation-7bcdcb5f-cb82-47e9-8814-a0cf37d4a89e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170218_171421.jpg,,FALSE, +N1,60695,sortie-139adfc2-af64-404e-ad67-bbf347b1656e,https://biolit.fr/sorties/sortie-139adfc2-af64-404e-ad67-bbf347b1656e/,Phil,,2/18/2017 0:00,17.0:45,17.0000000,47.892907000000,-3.967858000000,,La Forêt-Fouesnant - Finistère,50697,observation-139adfc2-af64-404e-ad67-bbf347b1656e,https://biolit.fr/observations/observation-139adfc2-af64-404e-ad67-bbf347b1656e/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1060020.JPG,,TRUE, +N1,60695,sortie-139adfc2-af64-404e-ad67-bbf347b1656e,https://biolit.fr/sorties/sortie-139adfc2-af64-404e-ad67-bbf347b1656e/,Phil,,2/18/2017 0:00,17.0:45,17.0000000,47.892907000000,-3.967858000000,,La Forêt-Fouesnant - Finistère,50699,observation-139adfc2-af64-404e-ad67-bbf347b1656e-2,https://biolit.fr/observations/observation-139adfc2-af64-404e-ad67-bbf347b1656e-2/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1060021.JPG,,TRUE, +N1,60695,sortie-139adfc2-af64-404e-ad67-bbf347b1656e,https://biolit.fr/sorties/sortie-139adfc2-af64-404e-ad67-bbf347b1656e/,Phil,,2/18/2017 0:00,17.0:45,17.0000000,47.892907000000,-3.967858000000,,La Forêt-Fouesnant - Finistère,50701,observation-139adfc2-af64-404e-ad67-bbf347b1656e-3,https://biolit.fr/observations/observation-139adfc2-af64-404e-ad67-bbf347b1656e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060026.JPG,,FALSE, +N1,60695,sortie-139adfc2-af64-404e-ad67-bbf347b1656e,https://biolit.fr/sorties/sortie-139adfc2-af64-404e-ad67-bbf347b1656e/,Phil,,2/18/2017 0:00,17.0:45,17.0000000,47.892907000000,-3.967858000000,,La Forêt-Fouesnant - Finistère,50703,observation-139adfc2-af64-404e-ad67-bbf347b1656e-4,https://biolit.fr/observations/observation-139adfc2-af64-404e-ad67-bbf347b1656e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060025.JPG,,FALSE, +N1,60695,sortie-139adfc2-af64-404e-ad67-bbf347b1656e,https://biolit.fr/sorties/sortie-139adfc2-af64-404e-ad67-bbf347b1656e/,Phil,,2/18/2017 0:00,17.0:45,17.0000000,47.892907000000,-3.967858000000,,La Forêt-Fouesnant - Finistère,50705,observation-139adfc2-af64-404e-ad67-bbf347b1656e-5,https://biolit.fr/observations/observation-139adfc2-af64-404e-ad67-bbf347b1656e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060027.JPG,,FALSE, +N1,60695,sortie-139adfc2-af64-404e-ad67-bbf347b1656e,https://biolit.fr/sorties/sortie-139adfc2-af64-404e-ad67-bbf347b1656e/,Phil,,2/18/2017 0:00,17.0:45,17.0000000,47.892907000000,-3.967858000000,,La Forêt-Fouesnant - Finistère,50707,observation-139adfc2-af64-404e-ad67-bbf347b1656e-6,https://biolit.fr/observations/observation-139adfc2-af64-404e-ad67-bbf347b1656e-6/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1060029.JPG,,TRUE, +N1,60696,sortie-c27f91c5-7aa1-425e-8b40-774cde707efe,https://biolit.fr/sorties/sortie-c27f91c5-7aa1-425e-8b40-774cde707efe/,Phil,,1/28/2017 0:00,13.0000000,13.0:35,48.69514400000,-4.086270000000,,Sibiril - Finistère,50709,observation-c27f91c5-7aa1-425e-8b40-774cde707efe,https://biolit.fr/observations/observation-c27f91c5-7aa1-425e-8b40-774cde707efe/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170128_132203.jpg,,FALSE, +N1,60696,sortie-c27f91c5-7aa1-425e-8b40-774cde707efe,https://biolit.fr/sorties/sortie-c27f91c5-7aa1-425e-8b40-774cde707efe/,Phil,,1/28/2017 0:00,13.0000000,13.0:35,48.69514400000,-4.086270000000,,Sibiril - Finistère,50711,observation-c27f91c5-7aa1-425e-8b40-774cde707efe-2,https://biolit.fr/observations/observation-c27f91c5-7aa1-425e-8b40-774cde707efe-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170128_132230.jpg,,FALSE, +N1,60696,sortie-c27f91c5-7aa1-425e-8b40-774cde707efe,https://biolit.fr/sorties/sortie-c27f91c5-7aa1-425e-8b40-774cde707efe/,Phil,,1/28/2017 0:00,13.0000000,13.0:35,48.69514400000,-4.086270000000,,Sibiril - Finistère,50713,observation-c27f91c5-7aa1-425e-8b40-774cde707efe-3,https://biolit.fr/observations/observation-c27f91c5-7aa1-425e-8b40-774cde707efe-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170128_132258.jpg,,FALSE, +N1,60696,sortie-c27f91c5-7aa1-425e-8b40-774cde707efe,https://biolit.fr/sorties/sortie-c27f91c5-7aa1-425e-8b40-774cde707efe/,Phil,,1/28/2017 0:00,13.0000000,13.0:35,48.69514400000,-4.086270000000,,Sibiril - Finistère,50715,observation-c27f91c5-7aa1-425e-8b40-774cde707efe-4,https://biolit.fr/observations/observation-c27f91c5-7aa1-425e-8b40-774cde707efe-4/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20170128_132333.jpg,,TRUE, +N1,60696,sortie-c27f91c5-7aa1-425e-8b40-774cde707efe,https://biolit.fr/sorties/sortie-c27f91c5-7aa1-425e-8b40-774cde707efe/,Phil,,1/28/2017 0:00,13.0000000,13.0:35,48.69514400000,-4.086270000000,,Sibiril - Finistère,50717,observation-c27f91c5-7aa1-425e-8b40-774cde707efe-5,https://biolit.fr/observations/observation-c27f91c5-7aa1-425e-8b40-774cde707efe-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170128_132546.jpg,,FALSE, +N1,60696,sortie-c27f91c5-7aa1-425e-8b40-774cde707efe,https://biolit.fr/sorties/sortie-c27f91c5-7aa1-425e-8b40-774cde707efe/,Phil,,1/28/2017 0:00,13.0000000,13.0:35,48.69514400000,-4.086270000000,,Sibiril - Finistère,50719,observation-c27f91c5-7aa1-425e-8b40-774cde707efe-6,https://biolit.fr/observations/observation-c27f91c5-7aa1-425e-8b40-774cde707efe-6/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20170128_132842.jpg,,TRUE, +N1,60696,sortie-c27f91c5-7aa1-425e-8b40-774cde707efe,https://biolit.fr/sorties/sortie-c27f91c5-7aa1-425e-8b40-774cde707efe/,Phil,,1/28/2017 0:00,13.0000000,13.0:35,48.69514400000,-4.086270000000,,Sibiril - Finistère,50721,observation-c27f91c5-7aa1-425e-8b40-774cde707efe-7,https://biolit.fr/observations/observation-c27f91c5-7aa1-425e-8b40-774cde707efe-7/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170128_133613.jpg,,TRUE, +N1,60697,sortie-82535109-d1a1-477e-a811-98314aea3d6e,https://biolit.fr/sorties/sortie-82535109-d1a1-477e-a811-98314aea3d6e/,Phil,,2/18/2017 0:00,17.0000000,17.0:45,47.895309000000,-3.968768000000,,La Forêt-Fouesnant - Finistère,50723,observation-82535109-d1a1-477e-a811-98314aea3d6e,https://biolit.fr/observations/observation-82535109-d1a1-477e-a811-98314aea3d6e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060015.JPG,,FALSE, +N1,60697,sortie-82535109-d1a1-477e-a811-98314aea3d6e,https://biolit.fr/sorties/sortie-82535109-d1a1-477e-a811-98314aea3d6e/,Phil,,2/18/2017 0:00,17.0000000,17.0:45,47.895309000000,-3.968768000000,,La Forêt-Fouesnant - Finistère,50725,observation-82535109-d1a1-477e-a811-98314aea3d6e-2,https://biolit.fr/observations/observation-82535109-d1a1-477e-a811-98314aea3d6e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060018.JPG,,FALSE, +N1,60698,sortie-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff,https://biolit.fr/sorties/sortie-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff/,Phil,,2/18/2017 0:00,15.0000000,15.000005,47.799735000000,-4.373910000000,,Penmarc'h - Finistère,50727,observation-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff,https://biolit.fr/observations/observation-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060005.JPG,,FALSE, +N1,60698,sortie-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff,https://biolit.fr/sorties/sortie-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff/,Phil,,2/18/2017 0:00,15.0000000,15.000005,47.799735000000,-4.373910000000,,Penmarc'h - Finistère,50729,observation-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff-2,https://biolit.fr/observations/observation-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff-2/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1060006.JPG,,TRUE, +N1,60698,sortie-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff,https://biolit.fr/sorties/sortie-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff/,Phil,,2/18/2017 0:00,15.0000000,15.000005,47.799735000000,-4.373910000000,,Penmarc'h - Finistère,50731,observation-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff-3,https://biolit.fr/observations/observation-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060010.JPG,,FALSE, +N1,60698,sortie-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff,https://biolit.fr/sorties/sortie-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff/,Phil,,2/18/2017 0:00,15.0000000,15.000005,47.799735000000,-4.373910000000,,Penmarc'h - Finistère,50733,observation-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff-4,https://biolit.fr/observations/observation-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060011.JPG,,FALSE, +N1,60698,sortie-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff,https://biolit.fr/sorties/sortie-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff/,Phil,,2/18/2017 0:00,15.0000000,15.000005,47.799735000000,-4.373910000000,,Penmarc'h - Finistère,50735,observation-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff-5,https://biolit.fr/observations/observation-773be6b9-46d2-43a4-a9a0-92a0d1cd00ff-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060012.JPG,,FALSE, +N1,60699,sortie-65e8d2e6-5223-4050-a2b0-c75c0a9df963,https://biolit.fr/sorties/sortie-65e8d2e6-5223-4050-a2b0-c75c0a9df963/,Phil,,2/18/2017 0:00,13.0000000,13.0:45,47.799888000000,-4.374537000000,,Penmarc'h - Finistère,50737,observation-65e8d2e6-5223-4050-a2b0-c75c0a9df963,https://biolit.fr/observations/observation-65e8d2e6-5223-4050-a2b0-c75c0a9df963/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050835.JPG,,FALSE, +N1,60699,sortie-65e8d2e6-5223-4050-a2b0-c75c0a9df963,https://biolit.fr/sorties/sortie-65e8d2e6-5223-4050-a2b0-c75c0a9df963/,Phil,,2/18/2017 0:00,13.0000000,13.0:45,47.799888000000,-4.374537000000,,Penmarc'h - Finistère,50739,observation-65e8d2e6-5223-4050-a2b0-c75c0a9df963-2,https://biolit.fr/observations/observation-65e8d2e6-5223-4050-a2b0-c75c0a9df963-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050838.JPG,,FALSE, +N1,60699,sortie-65e8d2e6-5223-4050-a2b0-c75c0a9df963,https://biolit.fr/sorties/sortie-65e8d2e6-5223-4050-a2b0-c75c0a9df963/,Phil,,2/18/2017 0:00,13.0000000,13.0:45,47.799888000000,-4.374537000000,,Penmarc'h - Finistère,50741,observation-65e8d2e6-5223-4050-a2b0-c75c0a9df963-3,https://biolit.fr/observations/observation-65e8d2e6-5223-4050-a2b0-c75c0a9df963-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050841.JPG,,TRUE, +N1,60700,sortie-ec283415-99e8-45d0-baf4-f8aac152eb01,https://biolit.fr/sorties/sortie-ec283415-99e8-45d0-baf4-f8aac152eb01/,Phil,,1/28/2017 0:00,13.0:15,13.0000000,48.692413000000,-4.085283000000,,Sibiril - Finistère,50743,observation-ec283415-99e8-45d0-baf4-f8aac152eb01,https://biolit.fr/observations/observation-ec283415-99e8-45d0-baf4-f8aac152eb01/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20170128_131422.jpg,,TRUE, +N1,60700,sortie-ec283415-99e8-45d0-baf4-f8aac152eb01,https://biolit.fr/sorties/sortie-ec283415-99e8-45d0-baf4-f8aac152eb01/,Phil,,1/28/2017 0:00,13.0:15,13.0000000,48.692413000000,-4.085283000000,,Sibiril - Finistère,50745,observation-ec283415-99e8-45d0-baf4-f8aac152eb01-2,https://biolit.fr/observations/observation-ec283415-99e8-45d0-baf4-f8aac152eb01-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20170128_131249.jpg,,TRUE, +N1,60700,sortie-ec283415-99e8-45d0-baf4-f8aac152eb01,https://biolit.fr/sorties/sortie-ec283415-99e8-45d0-baf4-f8aac152eb01/,Phil,,1/28/2017 0:00,13.0:15,13.0000000,48.692413000000,-4.085283000000,,Sibiril - Finistère,50747,observation-ec283415-99e8-45d0-baf4-f8aac152eb01-3,https://biolit.fr/observations/observation-ec283415-99e8-45d0-baf4-f8aac152eb01-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170128_131657.jpg,,FALSE, +N1,60700,sortie-ec283415-99e8-45d0-baf4-f8aac152eb01,https://biolit.fr/sorties/sortie-ec283415-99e8-45d0-baf4-f8aac152eb01/,Phil,,1/28/2017 0:00,13.0:15,13.0000000,48.692413000000,-4.085283000000,,Sibiril - Finistère,50749,observation-ec283415-99e8-45d0-baf4-f8aac152eb01-4,https://biolit.fr/observations/observation-ec283415-99e8-45d0-baf4-f8aac152eb01-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170128_132033.jpg,,TRUE, +N1,60701,sortie-f09c6746-c930-4a30-87a0-db17011cbb5c,https://biolit.fr/sorties/sortie-f09c6746-c930-4a30-87a0-db17011cbb5c/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214941000000,5.343061000000,,anse de la maronaise,50751,observation-f09c6746-c930-4a30-87a0-db17011cbb5c,https://biolit.fr/observations/observation-f09c6746-c930-4a30-87a0-db17011cbb5c/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1001-scaled.jpg,,TRUE, +N1,60701,sortie-f09c6746-c930-4a30-87a0-db17011cbb5c,https://biolit.fr/sorties/sortie-f09c6746-c930-4a30-87a0-db17011cbb5c/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214941000000,5.343061000000,,anse de la maronaise,50753,observation-f09c6746-c930-4a30-87a0-db17011cbb5c-2,https://biolit.fr/observations/observation-f09c6746-c930-4a30-87a0-db17011cbb5c-2/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1002-scaled.jpg,,TRUE, +N1,60701,sortie-f09c6746-c930-4a30-87a0-db17011cbb5c,https://biolit.fr/sorties/sortie-f09c6746-c930-4a30-87a0-db17011cbb5c/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214941000000,5.343061000000,,anse de la maronaise,50755,observation-f09c6746-c930-4a30-87a0-db17011cbb5c-3,https://biolit.fr/observations/observation-f09c6746-c930-4a30-87a0-db17011cbb5c-3/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1006-scaled.jpg,,TRUE, +N1,60701,sortie-f09c6746-c930-4a30-87a0-db17011cbb5c,https://biolit.fr/sorties/sortie-f09c6746-c930-4a30-87a0-db17011cbb5c/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214941000000,5.343061000000,,anse de la maronaise,50757,observation-f09c6746-c930-4a30-87a0-db17011cbb5c-4,https://biolit.fr/observations/observation-f09c6746-c930-4a30-87a0-db17011cbb5c-4/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1007-scaled.jpg,,TRUE, +N1,60701,sortie-f09c6746-c930-4a30-87a0-db17011cbb5c,https://biolit.fr/sorties/sortie-f09c6746-c930-4a30-87a0-db17011cbb5c/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214941000000,5.343061000000,,anse de la maronaise,50759,observation-f09c6746-c930-4a30-87a0-db17011cbb5c-5,https://biolit.fr/observations/observation-f09c6746-c930-4a30-87a0-db17011cbb5c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1008-scaled.jpg,,FALSE, +N1,60701,sortie-f09c6746-c930-4a30-87a0-db17011cbb5c,https://biolit.fr/sorties/sortie-f09c6746-c930-4a30-87a0-db17011cbb5c/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214941000000,5.343061000000,,anse de la maronaise,50761,observation-f09c6746-c930-4a30-87a0-db17011cbb5c-6,https://biolit.fr/observations/observation-f09c6746-c930-4a30-87a0-db17011cbb5c-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1009-scaled.jpg,,FALSE, +N1,60701,sortie-f09c6746-c930-4a30-87a0-db17011cbb5c,https://biolit.fr/sorties/sortie-f09c6746-c930-4a30-87a0-db17011cbb5c/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214941000000,5.343061000000,,anse de la maronaise,50763,observation-f09c6746-c930-4a30-87a0-db17011cbb5c-7,https://biolit.fr/observations/observation-f09c6746-c930-4a30-87a0-db17011cbb5c-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1010-scaled.jpg,,FALSE, +N1,60701,sortie-f09c6746-c930-4a30-87a0-db17011cbb5c,https://biolit.fr/sorties/sortie-f09c6746-c930-4a30-87a0-db17011cbb5c/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.214941000000,5.343061000000,,anse de la maronaise,50765,observation-f09c6746-c930-4a30-87a0-db17011cbb5c-8,https://biolit.fr/observations/observation-f09c6746-c930-4a30-87a0-db17011cbb5c-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1012-scaled.jpg,,FALSE, +N1,60702,sortie-8183f00c-371d-4931-a980-e50397e68f25,https://biolit.fr/sorties/sortie-8183f00c-371d-4931-a980-e50397e68f25/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.21466700000,5.343094000000,,ande de la Maronaise,50767,observation-8183f00c-371d-4931-a980-e50397e68f25,https://biolit.fr/observations/observation-8183f00c-371d-4931-a980-e50397e68f25/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0969-scaled.jpg,,FALSE, +N1,60702,sortie-8183f00c-371d-4931-a980-e50397e68f25,https://biolit.fr/sorties/sortie-8183f00c-371d-4931-a980-e50397e68f25/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.21466700000,5.343094000000,,ande de la Maronaise,50769,observation-8183f00c-371d-4931-a980-e50397e68f25-2,https://biolit.fr/observations/observation-8183f00c-371d-4931-a980-e50397e68f25-2/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0970-scaled.jpg,,TRUE, +N1,60702,sortie-8183f00c-371d-4931-a980-e50397e68f25,https://biolit.fr/sorties/sortie-8183f00c-371d-4931-a980-e50397e68f25/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.21466700000,5.343094000000,,ande de la Maronaise,50771,observation-8183f00c-371d-4931-a980-e50397e68f25-3,https://biolit.fr/observations/observation-8183f00c-371d-4931-a980-e50397e68f25-3/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0972-scaled.jpg,,TRUE, +N1,60702,sortie-8183f00c-371d-4931-a980-e50397e68f25,https://biolit.fr/sorties/sortie-8183f00c-371d-4931-a980-e50397e68f25/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.21466700000,5.343094000000,,ande de la Maronaise,50773,observation-8183f00c-371d-4931-a980-e50397e68f25-4,https://biolit.fr/observations/observation-8183f00c-371d-4931-a980-e50397e68f25-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0973-scaled.jpg,,FALSE, +N1,60702,sortie-8183f00c-371d-4931-a980-e50397e68f25,https://biolit.fr/sorties/sortie-8183f00c-371d-4931-a980-e50397e68f25/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.21466700000,5.343094000000,,ande de la Maronaise,50775,observation-8183f00c-371d-4931-a980-e50397e68f25-5,https://biolit.fr/observations/observation-8183f00c-371d-4931-a980-e50397e68f25-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0974-scaled.jpg,,FALSE, +N1,60702,sortie-8183f00c-371d-4931-a980-e50397e68f25,https://biolit.fr/sorties/sortie-8183f00c-371d-4931-a980-e50397e68f25/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.21466700000,5.343094000000,,ande de la Maronaise,50777,observation-8183f00c-371d-4931-a980-e50397e68f25-6,https://biolit.fr/observations/observation-8183f00c-371d-4931-a980-e50397e68f25-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0975-scaled.jpg,,FALSE, +N1,60702,sortie-8183f00c-371d-4931-a980-e50397e68f25,https://biolit.fr/sorties/sortie-8183f00c-371d-4931-a980-e50397e68f25/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.21466700000,5.343094000000,,ande de la Maronaise,50779,observation-8183f00c-371d-4931-a980-e50397e68f25-7,https://biolit.fr/observations/observation-8183f00c-371d-4931-a980-e50397e68f25-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0977-scaled.jpg,,FALSE, +N1,60702,sortie-8183f00c-371d-4931-a980-e50397e68f25,https://biolit.fr/sorties/sortie-8183f00c-371d-4931-a980-e50397e68f25/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.21466700000,5.343094000000,,ande de la Maronaise,50781,observation-8183f00c-371d-4931-a980-e50397e68f25-8,https://biolit.fr/observations/observation-8183f00c-371d-4931-a980-e50397e68f25-8/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0978-scaled.jpg,,TRUE, +N1,60702,sortie-8183f00c-371d-4931-a980-e50397e68f25,https://biolit.fr/sorties/sortie-8183f00c-371d-4931-a980-e50397e68f25/,ludovic,,2/16/2017 0:00,15.0000000,16.0000000,43.21466700000,5.343094000000,,ande de la Maronaise,50783,observation-8183f00c-371d-4931-a980-e50397e68f25-9,https://biolit.fr/observations/observation-8183f00c-371d-4931-a980-e50397e68f25-9/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0979-scaled.jpg,,TRUE, +N1,60703,sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233,https://biolit.fr/sorties/sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215240000000,5.342783000000,,Anse de la maronaise,50785,observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233,https://biolit.fr/observations/observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0140-scaled.jpg,,FALSE, +N1,60703,sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233,https://biolit.fr/sorties/sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215240000000,5.342783000000,,Anse de la maronaise,50787,observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-2,https://biolit.fr/observations/observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-2/,Xantho poressa,Xanthe de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0142-scaled.jpg,,TRUE, +N1,60703,sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233,https://biolit.fr/sorties/sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215240000000,5.342783000000,,Anse de la maronaise,50789,observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-3,https://biolit.fr/observations/observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-3/,Xantho poressa,Xanthe de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0143-scaled.jpg,,TRUE, +N1,60703,sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233,https://biolit.fr/sorties/sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215240000000,5.342783000000,,Anse de la maronaise,50791,observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-4,https://biolit.fr/observations/observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-4/,Xantho poressa,Xanthe de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0144-scaled.jpg,,TRUE, +N1,60703,sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233,https://biolit.fr/sorties/sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215240000000,5.342783000000,,Anse de la maronaise,50793,observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-5,https://biolit.fr/observations/observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-5/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0145_0-scaled.jpg,,TRUE, +N1,60703,sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233,https://biolit.fr/sorties/sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215240000000,5.342783000000,,Anse de la maronaise,50795,observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-6,https://biolit.fr/observations/observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-6/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0146-scaled.jpg,,TRUE, +N1,60703,sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233,https://biolit.fr/sorties/sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215240000000,5.342783000000,,Anse de la maronaise,50797,observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-7,https://biolit.fr/observations/observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-7/,Stramonita haemastoma,Bouche de sang,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0149-scaled.jpg,,TRUE, +N1,60703,sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233,https://biolit.fr/sorties/sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215240000000,5.342783000000,,Anse de la maronaise,50799,observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-8,https://biolit.fr/observations/observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-8/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC_0152_0-scaled.jpg,,TRUE, +N1,60703,sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233,https://biolit.fr/sorties/sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215240000000,5.342783000000,,Anse de la maronaise,50801,observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-9,https://biolit.fr/observations/observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-9/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0154-scaled.jpg,,TRUE, +N1,60703,sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233,https://biolit.fr/sorties/sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215240000000,5.342783000000,,Anse de la maronaise,50803,observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-10,https://biolit.fr/observations/observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0155_0-scaled.jpg,,FALSE, +N1,60703,sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233,https://biolit.fr/sorties/sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215240000000,5.342783000000,,Anse de la maronaise,50805,observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-11,https://biolit.fr/observations/observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0156-scaled.jpg,,FALSE, +N1,60703,sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233,https://biolit.fr/sorties/sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215240000000,5.342783000000,,Anse de la maronaise,50807,observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-12,https://biolit.fr/observations/observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0157-scaled.jpg,,FALSE, +N1,60703,sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233,https://biolit.fr/sorties/sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215240000000,5.342783000000,,Anse de la maronaise,50809,observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-13,https://biolit.fr/observations/observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-13/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0158-scaled.jpg,,TRUE, +N1,60703,sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233,https://biolit.fr/sorties/sortie-18c6f429-a4d5-4cf3-bbc5-5258cbe41233/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215240000000,5.342783000000,,Anse de la maronaise,50811,observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-14,https://biolit.fr/observations/observation-18c6f429-a4d5-4cf3-bbc5-5258cbe41233-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0159-scaled.jpg,,FALSE, +N1,60704,sortie-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63,https://biolit.fr/sorties/sortie-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215047000000,5.342922000000,,Anse de la maronaise,50813,observation-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63,https://biolit.fr/observations/observation-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0133_0-scaled.jpg,,FALSE, +N1,60704,sortie-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63,https://biolit.fr/sorties/sortie-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215047000000,5.342922000000,,Anse de la maronaise,50815,observation-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63-2,https://biolit.fr/observations/observation-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63-2/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0134-scaled.jpg,,TRUE, +N1,60704,sortie-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63,https://biolit.fr/sorties/sortie-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215047000000,5.342922000000,,Anse de la maronaise,50817,observation-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63-3,https://biolit.fr/observations/observation-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0132-scaled.jpg,,FALSE, +N1,60704,sortie-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63,https://biolit.fr/sorties/sortie-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215047000000,5.342922000000,,Anse de la maronaise,50819,observation-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63-4,https://biolit.fr/observations/observation-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0136-scaled.jpg,,FALSE, +N1,60704,sortie-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63,https://biolit.fr/sorties/sortie-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215047000000,5.342922000000,,Anse de la maronaise,50821,observation-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63-5,https://biolit.fr/observations/observation-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0137_0-scaled.jpg,,FALSE, +N1,60704,sortie-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63,https://biolit.fr/sorties/sortie-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215047000000,5.342922000000,,Anse de la maronaise,50823,observation-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63-6,https://biolit.fr/observations/observation-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0138-scaled.jpg,,FALSE, +N1,60704,sortie-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63,https://biolit.fr/sorties/sortie-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63/,NVanzu,,2/16/2017 0:00,14.0000000,16.0000000,43.215047000000,5.342922000000,,Anse de la maronaise,50825,observation-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63-7,https://biolit.fr/observations/observation-c84e12fc-dbea-4d07-a5f9-b2b7573e7d63-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0139-scaled.jpg,,FALSE, +N1,60705,sortie-51fc0dd6-14c7-452a-b502-f6977fac8d58,https://biolit.fr/sorties/sortie-51fc0dd6-14c7-452a-b502-f6977fac8d58/,Marine,,2/14/2017 0:00,15.0000000,15.0:45,43.290747000000,5.355493000000,,Plage des Catalans,50827,observation-51fc0dd6-14c7-452a-b502-f6977fac8d58,https://biolit.fr/observations/observation-51fc0dd6-14c7-452a-b502-f6977fac8d58/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2184-rotated.jpg,,TRUE, +N1,60705,sortie-51fc0dd6-14c7-452a-b502-f6977fac8d58,https://biolit.fr/sorties/sortie-51fc0dd6-14c7-452a-b502-f6977fac8d58/,Marine,,2/14/2017 0:00,15.0000000,15.0:45,43.290747000000,5.355493000000,,Plage des Catalans,50829,observation-51fc0dd6-14c7-452a-b502-f6977fac8d58-2,https://biolit.fr/observations/observation-51fc0dd6-14c7-452a-b502-f6977fac8d58-2/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2185-rotated.jpg,,TRUE, +N1,60705,sortie-51fc0dd6-14c7-452a-b502-f6977fac8d58,https://biolit.fr/sorties/sortie-51fc0dd6-14c7-452a-b502-f6977fac8d58/,Marine,,2/14/2017 0:00,15.0000000,15.0:45,43.290747000000,5.355493000000,,Plage des Catalans,50831,observation-51fc0dd6-14c7-452a-b502-f6977fac8d58-3,https://biolit.fr/observations/observation-51fc0dd6-14c7-452a-b502-f6977fac8d58-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2187.JPG,,FALSE, +N1,60706,sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa,https://biolit.fr/sorties/sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa/,Écoute ta planète,,2/13/2017 0:00,14.0000000,16.0000000,43.400636000000,5.138170000000,,plage du jai chateauneuf les martigues,50833,observation-ceae76e0-f003-4a73-b86e-ada93891d2aa,https://biolit.fr/observations/observation-ceae76e0-f003-4a73-b86e-ada93891d2aa/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170213_155021-scaled.jpg,,FALSE, +N1,60706,sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa,https://biolit.fr/sorties/sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa/,Écoute ta planète,,2/13/2017 0:00,14.0000000,16.0000000,43.400636000000,5.138170000000,,plage du jai chateauneuf les martigues,50835,observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-2,https://biolit.fr/observations/observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170213_155034-scaled.jpg,,FALSE, +N1,60706,sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa,https://biolit.fr/sorties/sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa/,Écoute ta planète,,2/13/2017 0:00,14.0000000,16.0000000,43.400636000000,5.138170000000,,plage du jai chateauneuf les martigues,50837,observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-3,https://biolit.fr/observations/observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170213_155116-scaled.jpg,,FALSE, +N1,60706,sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa,https://biolit.fr/sorties/sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa/,Écoute ta planète,,2/13/2017 0:00,14.0000000,16.0000000,43.400636000000,5.138170000000,,plage du jai chateauneuf les martigues,50839,observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-4,https://biolit.fr/observations/observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170213_155138-scaled.jpg,,FALSE, +N1,60706,sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa,https://biolit.fr/sorties/sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa/,Écoute ta planète,,2/13/2017 0:00,14.0000000,16.0000000,43.400636000000,5.138170000000,,plage du jai chateauneuf les martigues,50841,observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-5,https://biolit.fr/observations/observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170213_155154-scaled.jpg,,FALSE, +N1,60706,sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa,https://biolit.fr/sorties/sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa/,Écoute ta planète,,2/13/2017 0:00,14.0000000,16.0000000,43.400636000000,5.138170000000,,plage du jai chateauneuf les martigues,50843,observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-6,https://biolit.fr/observations/observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170213_155238-scaled.jpg,,FALSE, +N1,60706,sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa,https://biolit.fr/sorties/sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa/,Écoute ta planète,,2/13/2017 0:00,14.0000000,16.0000000,43.400636000000,5.138170000000,,plage du jai chateauneuf les martigues,50845,observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-7,https://biolit.fr/observations/observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170213_155355-scaled.jpg,,FALSE, +N1,60706,sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa,https://biolit.fr/sorties/sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa/,Écoute ta planète,,2/13/2017 0:00,14.0000000,16.0000000,43.400636000000,5.138170000000,,plage du jai chateauneuf les martigues,50847,observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-8,https://biolit.fr/observations/observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-8/,Cygnus olor,Cygne tuberculé,,https://biolit.fr/wp-content/uploads/2023/07/P2130014-scaled.jpg,,TRUE, +N1,60706,sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa,https://biolit.fr/sorties/sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa/,Écoute ta planète,,2/13/2017 0:00,14.0000000,16.0000000,43.400636000000,5.138170000000,,plage du jai chateauneuf les martigues,50849,observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-9,https://biolit.fr/observations/observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-9/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/P2130018-scaled.jpg,,TRUE, +N1,60706,sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa,https://biolit.fr/sorties/sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa/,Écoute ta planète,,2/13/2017 0:00,14.0000000,16.0000000,43.400636000000,5.138170000000,,plage du jai chateauneuf les martigues,50851,observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-10,https://biolit.fr/observations/observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/P2130020-scaled.jpg,,FALSE, +N1,60706,sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa,https://biolit.fr/sorties/sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa/,Écoute ta planète,,2/13/2017 0:00,14.0000000,16.0000000,43.400636000000,5.138170000000,,plage du jai chateauneuf les martigues,50853,observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-11,https://biolit.fr/observations/observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/P2130023-scaled.jpg,,FALSE, +N1,60706,sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa,https://biolit.fr/sorties/sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa/,Écoute ta planète,,2/13/2017 0:00,14.0000000,16.0000000,43.400636000000,5.138170000000,,plage du jai chateauneuf les martigues,50855,observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-12,https://biolit.fr/observations/observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/P2130025-scaled.jpg,,FALSE, +N1,60706,sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa,https://biolit.fr/sorties/sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa/,Écoute ta planète,,2/13/2017 0:00,14.0000000,16.0000000,43.400636000000,5.138170000000,,plage du jai chateauneuf les martigues,50857,observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-13,https://biolit.fr/observations/observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/P2130027-scaled.jpg,,FALSE, +N1,60706,sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa,https://biolit.fr/sorties/sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa/,Écoute ta planète,,2/13/2017 0:00,14.0000000,16.0000000,43.400636000000,5.138170000000,,plage du jai chateauneuf les martigues,50859,observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-14,https://biolit.fr/observations/observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-14/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/P2130032-scaled.jpg,,TRUE, +N1,60706,sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa,https://biolit.fr/sorties/sortie-ceae76e0-f003-4a73-b86e-ada93891d2aa/,Écoute ta planète,,2/13/2017 0:00,14.0000000,16.0000000,43.400636000000,5.138170000000,,plage du jai chateauneuf les martigues,50861,observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-15,https://biolit.fr/observations/observation-ceae76e0-f003-4a73-b86e-ada93891d2aa-15/,Tritia mutabilis,Noisette de mer,,https://biolit.fr/wp-content/uploads/2023/07/P2130036-scaled.jpg,,TRUE, +N1,60707,sortie-2670e1e2-b40a-440e-8ea8-a2eaeca40788,https://biolit.fr/sorties/sortie-2670e1e2-b40a-440e-8ea8-a2eaeca40788/,Phil,,1/28/2017 0:00,13.0000000,13.0:45,48.692827000000,-4.08570400000,,Sibiril - Finistère,50863,observation-2670e1e2-b40a-440e-8ea8-a2eaeca40788,https://biolit.fr/observations/observation-2670e1e2-b40a-440e-8ea8-a2eaeca40788/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170128_134121.jpg,,FALSE, +N1,60707,sortie-2670e1e2-b40a-440e-8ea8-a2eaeca40788,https://biolit.fr/sorties/sortie-2670e1e2-b40a-440e-8ea8-a2eaeca40788/,Phil,,1/28/2017 0:00,13.0000000,13.0:45,48.692827000000,-4.08570400000,,Sibiril - Finistère,50865,observation-2670e1e2-b40a-440e-8ea8-a2eaeca40788-2,https://biolit.fr/observations/observation-2670e1e2-b40a-440e-8ea8-a2eaeca40788-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170128_134528.jpg,,FALSE, +N1,60708,sortie-20e20a31-891c-4e08-8dc3-16ae78d6b4fb,https://biolit.fr/sorties/sortie-20e20a31-891c-4e08-8dc3-16ae78d6b4fb/,Phil,,1/13/2017 0:00,12.0000000,13.000005,47.796473000000,-4.177221000000,,Loctudy - Finistère,50867,observation-20e20a31-891c-4e08-8dc3-16ae78d6b4fb,https://biolit.fr/observations/observation-20e20a31-891c-4e08-8dc3-16ae78d6b4fb/,Aplysilla rosea,Aplysille rose,,https://biolit.fr/wp-content/uploads/2023/07/P1050700.JPG,,TRUE, +N1,60708,sortie-20e20a31-891c-4e08-8dc3-16ae78d6b4fb,https://biolit.fr/sorties/sortie-20e20a31-891c-4e08-8dc3-16ae78d6b4fb/,Phil,,1/13/2017 0:00,12.0000000,13.000005,47.796473000000,-4.177221000000,,Loctudy - Finistère,50869,observation-20e20a31-891c-4e08-8dc3-16ae78d6b4fb-2,https://biolit.fr/observations/observation-20e20a31-891c-4e08-8dc3-16ae78d6b4fb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050701.JPG,,FALSE, +N1,60708,sortie-20e20a31-891c-4e08-8dc3-16ae78d6b4fb,https://biolit.fr/sorties/sortie-20e20a31-891c-4e08-8dc3-16ae78d6b4fb/,Phil,,1/13/2017 0:00,12.0000000,13.000005,47.796473000000,-4.177221000000,,Loctudy - Finistère,50871,observation-20e20a31-891c-4e08-8dc3-16ae78d6b4fb-3,https://biolit.fr/observations/observation-20e20a31-891c-4e08-8dc3-16ae78d6b4fb-3/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1050702.JPG,,TRUE, +N1,60708,sortie-20e20a31-891c-4e08-8dc3-16ae78d6b4fb,https://biolit.fr/sorties/sortie-20e20a31-891c-4e08-8dc3-16ae78d6b4fb/,Phil,,1/13/2017 0:00,12.0000000,13.000005,47.796473000000,-4.177221000000,,Loctudy - Finistère,50873,observation-20e20a31-891c-4e08-8dc3-16ae78d6b4fb-4,https://biolit.fr/observations/observation-20e20a31-891c-4e08-8dc3-16ae78d6b4fb-4/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1050699.JPG,,TRUE, +N1,60708,sortie-20e20a31-891c-4e08-8dc3-16ae78d6b4fb,https://biolit.fr/sorties/sortie-20e20a31-891c-4e08-8dc3-16ae78d6b4fb/,Phil,,1/13/2017 0:00,12.0000000,13.000005,47.796473000000,-4.177221000000,,Loctudy - Finistère,50875,observation-20e20a31-891c-4e08-8dc3-16ae78d6b4fb-5,https://biolit.fr/observations/observation-20e20a31-891c-4e08-8dc3-16ae78d6b4fb-5/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1050712.JPG,,TRUE, +N1,60709,sortie-0fc43a0f-4786-4e6f-b0c3-5f559edf8e49,https://biolit.fr/sorties/sortie-0fc43a0f-4786-4e6f-b0c3-5f559edf8e49/,E.I.COLLIN JOSEPH,,02/11/2017,11.0000000,12.0000000,47.618675000000,-3.186315000000,,ERDEVEN ré poulbé,50877,observation-0fc43a0f-4786-4e6f-b0c3-5f559edf8e49,https://biolit.fr/observations/observation-0fc43a0f-4786-4e6f-b0c3-5f559edf8e49/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/DSCF0023.JPG,,TRUE, +N1,60709,sortie-0fc43a0f-4786-4e6f-b0c3-5f559edf8e49,https://biolit.fr/sorties/sortie-0fc43a0f-4786-4e6f-b0c3-5f559edf8e49/,E.I.COLLIN JOSEPH,,02/11/2017,11.0000000,12.0000000,47.618675000000,-3.186315000000,,ERDEVEN ré poulbé,50879,observation-0fc43a0f-4786-4e6f-b0c3-5f559edf8e49-2,https://biolit.fr/observations/observation-0fc43a0f-4786-4e6f-b0c3-5f559edf8e49-2/,Ficopomatus enigmaticus,Cascail,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/DSCF0015.JPG,,TRUE, +N1,60709,sortie-0fc43a0f-4786-4e6f-b0c3-5f559edf8e49,https://biolit.fr/sorties/sortie-0fc43a0f-4786-4e6f-b0c3-5f559edf8e49/,E.I.COLLIN JOSEPH,,02/11/2017,11.0000000,12.0000000,47.618675000000,-3.186315000000,,ERDEVEN ré poulbé,50881,observation-0fc43a0f-4786-4e6f-b0c3-5f559edf8e49-3,https://biolit.fr/observations/observation-0fc43a0f-4786-4e6f-b0c3-5f559edf8e49-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF0021.JPG,,FALSE, +N1,60710,sortie-9c206e5f-6bc0-41dd-80f9-fa9ec2e1aa0b,https://biolit.fr/sorties/sortie-9c206e5f-6bc0-41dd-80f9-fa9ec2e1aa0b/,AIEJE,,02/08/2017,11.0000000,12.0000000,43.342095000000,5.260954000000,,le rove,50883,observation-9c206e5f-6bc0-41dd-80f9-fa9ec2e1aa0b,https://biolit.fr/observations/observation-9c206e5f-6bc0-41dd-80f9-fa9ec2e1aa0b/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4380-scaled.jpg,,FALSE, +N1,60711,sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815,https://biolit.fr/sorties/sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236025000000,5.360061000000,,plage de la bonne brise,50885,observation-07441338-cb8d-4b12-b6b3-f60c33cf3815,https://biolit.fr/observations/observation-07441338-cb8d-4b12-b6b3-f60c33cf3815/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0935-scaled.jpg,,FALSE, +N1,60711,sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815,https://biolit.fr/sorties/sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236025000000,5.360061000000,,plage de la bonne brise,50887,observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-2,https://biolit.fr/observations/observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0936-scaled.jpg,,FALSE, +N1,60711,sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815,https://biolit.fr/sorties/sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236025000000,5.360061000000,,plage de la bonne brise,50889,observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-3,https://biolit.fr/observations/observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0937-scaled.jpg,,FALSE, +N1,60711,sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815,https://biolit.fr/sorties/sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236025000000,5.360061000000,,plage de la bonne brise,50891,observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-4,https://biolit.fr/observations/observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0938-scaled.jpg,,FALSE, +N1,60711,sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815,https://biolit.fr/sorties/sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236025000000,5.360061000000,,plage de la bonne brise,50893,observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-5,https://biolit.fr/observations/observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0939-scaled.jpg,,FALSE, +N1,60711,sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815,https://biolit.fr/sorties/sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236025000000,5.360061000000,,plage de la bonne brise,50895,observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-6,https://biolit.fr/observations/observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0940-scaled.jpg,,FALSE, +N1,60711,sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815,https://biolit.fr/sorties/sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236025000000,5.360061000000,,plage de la bonne brise,50897,observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-7,https://biolit.fr/observations/observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-7/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0941-scaled.jpg,,TRUE, +N1,60711,sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815,https://biolit.fr/sorties/sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236025000000,5.360061000000,,plage de la bonne brise,50899,observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-8,https://biolit.fr/observations/observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-8/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0943-scaled.jpg,,TRUE, +N1,60711,sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815,https://biolit.fr/sorties/sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236025000000,5.360061000000,,plage de la bonne brise,50901,observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-9,https://biolit.fr/observations/observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-9/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0944-scaled.jpg,,TRUE, +N1,60711,sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815,https://biolit.fr/sorties/sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236025000000,5.360061000000,,plage de la bonne brise,50903,observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-10,https://biolit.fr/observations/observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-10/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0945-scaled.jpg,,TRUE, +N1,60711,sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815,https://biolit.fr/sorties/sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236025000000,5.360061000000,,plage de la bonne brise,50905,observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-11,https://biolit.fr/observations/observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-11/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0946-scaled.jpg,,TRUE, +N1,60711,sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815,https://biolit.fr/sorties/sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236025000000,5.360061000000,,plage de la bonne brise,50907,observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-12,https://biolit.fr/observations/observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-12/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0948-scaled.jpg,,TRUE, +N1,60711,sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815,https://biolit.fr/sorties/sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236025000000,5.360061000000,,plage de la bonne brise,50909,observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-13,https://biolit.fr/observations/observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-13/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0949-scaled.jpg,,TRUE, +N1,60711,sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815,https://biolit.fr/sorties/sortie-07441338-cb8d-4b12-b6b3-f60c33cf3815/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236025000000,5.360061000000,,plage de la bonne brise,50911,observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-14,https://biolit.fr/observations/observation-07441338-cb8d-4b12-b6b3-f60c33cf3815-14/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0950-scaled.jpg,,TRUE, +N1,60712,sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333,https://biolit.fr/sorties/sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236057000000,5.360056000000,,plage de la bonne brise,50913,observation-9a3deddb-cffe-4ba6-bb77-d820deffa333,https://biolit.fr/observations/observation-9a3deddb-cffe-4ba6-bb77-d820deffa333/,Flabellia petiolata,Udotée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0921-scaled.jpg,,TRUE, +N1,60712,sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333,https://biolit.fr/sorties/sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236057000000,5.360056000000,,plage de la bonne brise,50915,observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-2,https://biolit.fr/observations/observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0922-scaled.jpg,,FALSE, +N1,60712,sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333,https://biolit.fr/sorties/sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236057000000,5.360056000000,,plage de la bonne brise,50917,observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-3,https://biolit.fr/observations/observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0924-scaled.jpg,,FALSE, +N1,60712,sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333,https://biolit.fr/sorties/sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236057000000,5.360056000000,,plage de la bonne brise,50919,observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-4,https://biolit.fr/observations/observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0926-scaled.jpg,,FALSE, +N1,60712,sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333,https://biolit.fr/sorties/sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236057000000,5.360056000000,,plage de la bonne brise,50921,observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-5,https://biolit.fr/observations/observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0927-scaled.jpg,,FALSE, +N1,60712,sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333,https://biolit.fr/sorties/sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236057000000,5.360056000000,,plage de la bonne brise,50923,observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-6,https://biolit.fr/observations/observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0928-scaled.jpg,,FALSE, +N1,60712,sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333,https://biolit.fr/sorties/sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236057000000,5.360056000000,,plage de la bonne brise,50925,observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-7,https://biolit.fr/observations/observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0929-scaled.jpg,,FALSE, +N1,60712,sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333,https://biolit.fr/sorties/sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236057000000,5.360056000000,,plage de la bonne brise,50927,observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-8,https://biolit.fr/observations/observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0931-scaled.jpg,,FALSE, +N1,60712,sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333,https://biolit.fr/sorties/sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236057000000,5.360056000000,,plage de la bonne brise,50929,observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-9,https://biolit.fr/observations/observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0932-scaled.jpg,,FALSE, +N1,60712,sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333,https://biolit.fr/sorties/sortie-9a3deddb-cffe-4ba6-bb77-d820deffa333/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236057000000,5.360056000000,,plage de la bonne brise,50931,observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-10,https://biolit.fr/observations/observation-9a3deddb-cffe-4ba6-bb77-d820deffa333-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0933-scaled.jpg,,FALSE, +N1,60713,sortie-74a9edb8-24ca-4776-9775-3b42de09a4eb,https://biolit.fr/sorties/sortie-74a9edb8-24ca-4776-9775-3b42de09a4eb/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236041000000,5.360077000000,,plage de la bonne brise,50933,observation-74a9edb8-24ca-4776-9775-3b42de09a4eb,https://biolit.fr/observations/observation-74a9edb8-24ca-4776-9775-3b42de09a4eb/,Striarca lactea,Striarca laiteuse,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0906-scaled.jpg,,TRUE, +N1,60713,sortie-74a9edb8-24ca-4776-9775-3b42de09a4eb,https://biolit.fr/sorties/sortie-74a9edb8-24ca-4776-9775-3b42de09a4eb/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236041000000,5.360077000000,,plage de la bonne brise,50935,observation-74a9edb8-24ca-4776-9775-3b42de09a4eb-2,https://biolit.fr/observations/observation-74a9edb8-24ca-4776-9775-3b42de09a4eb-2/,Striarca lactea,Striarca laiteuse,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0907-scaled.jpg,,TRUE, +N1,60713,sortie-74a9edb8-24ca-4776-9775-3b42de09a4eb,https://biolit.fr/sorties/sortie-74a9edb8-24ca-4776-9775-3b42de09a4eb/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236041000000,5.360077000000,,plage de la bonne brise,50937,observation-74a9edb8-24ca-4776-9775-3b42de09a4eb-3,https://biolit.fr/observations/observation-74a9edb8-24ca-4776-9775-3b42de09a4eb-3/,Striarca lactea,Striarca laiteuse,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0909-scaled.jpg,,TRUE, +N1,60713,sortie-74a9edb8-24ca-4776-9775-3b42de09a4eb,https://biolit.fr/sorties/sortie-74a9edb8-24ca-4776-9775-3b42de09a4eb/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236041000000,5.360077000000,,plage de la bonne brise,50939,observation-74a9edb8-24ca-4776-9775-3b42de09a4eb-4,https://biolit.fr/observations/observation-74a9edb8-24ca-4776-9775-3b42de09a4eb-4/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0910-scaled.jpg,,TRUE, +N1,60713,sortie-74a9edb8-24ca-4776-9775-3b42de09a4eb,https://biolit.fr/sorties/sortie-74a9edb8-24ca-4776-9775-3b42de09a4eb/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236041000000,5.360077000000,,plage de la bonne brise,50941,observation-74a9edb8-24ca-4776-9775-3b42de09a4eb-5,https://biolit.fr/observations/observation-74a9edb8-24ca-4776-9775-3b42de09a4eb-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0912-scaled.jpg,,FALSE, +N1,60713,sortie-74a9edb8-24ca-4776-9775-3b42de09a4eb,https://biolit.fr/sorties/sortie-74a9edb8-24ca-4776-9775-3b42de09a4eb/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236041000000,5.360077000000,,plage de la bonne brise,50943,observation-74a9edb8-24ca-4776-9775-3b42de09a4eb-6,https://biolit.fr/observations/observation-74a9edb8-24ca-4776-9775-3b42de09a4eb-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0914-scaled.jpg,,FALSE, +N1,60713,sortie-74a9edb8-24ca-4776-9775-3b42de09a4eb,https://biolit.fr/sorties/sortie-74a9edb8-24ca-4776-9775-3b42de09a4eb/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236041000000,5.360077000000,,plage de la bonne brise,50945,observation-74a9edb8-24ca-4776-9775-3b42de09a4eb-7,https://biolit.fr/observations/observation-74a9edb8-24ca-4776-9775-3b42de09a4eb-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0915-scaled.jpg,,FALSE, +N1,60713,sortie-74a9edb8-24ca-4776-9775-3b42de09a4eb,https://biolit.fr/sorties/sortie-74a9edb8-24ca-4776-9775-3b42de09a4eb/,ludovic,,02/09/2017,15.0000000,16.0000000,43.236041000000,5.360077000000,,plage de la bonne brise,50947,observation-74a9edb8-24ca-4776-9775-3b42de09a4eb-8,https://biolit.fr/observations/observation-74a9edb8-24ca-4776-9775-3b42de09a4eb-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0916-scaled.jpg,,FALSE, +N1,60714,sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8,https://biolit.fr/sorties/sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8/,ludovic,,02/09/2017,15.0000000,16.0000000,43.235865000000,5.360000000000,,plage de la bonne brise,50949,observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8,https://biolit.fr/observations/observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0889-scaled.jpg,,FALSE, +N1,60714,sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8,https://biolit.fr/sorties/sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8/,ludovic,,02/09/2017,15.0000000,16.0000000,43.235865000000,5.360000000000,,plage de la bonne brise,50951,observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-2,https://biolit.fr/observations/observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-2/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0891-scaled.jpg,,TRUE, +N1,60714,sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8,https://biolit.fr/sorties/sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8/,ludovic,,02/09/2017,15.0000000,16.0000000,43.235865000000,5.360000000000,,plage de la bonne brise,50953,observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-3,https://biolit.fr/observations/observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-3/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0891_0-scaled.jpg,,TRUE, +N1,60714,sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8,https://biolit.fr/sorties/sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8/,ludovic,,02/09/2017,15.0000000,16.0000000,43.235865000000,5.360000000000,,plage de la bonne brise,50955,observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-4,https://biolit.fr/observations/observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-4/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0892-scaled.jpg,,TRUE, +N1,60714,sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8,https://biolit.fr/sorties/sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8/,ludovic,,02/09/2017,15.0000000,16.0000000,43.235865000000,5.360000000000,,plage de la bonne brise,50957,observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-5,https://biolit.fr/observations/observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0894-scaled.jpg,,FALSE, +N1,60714,sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8,https://biolit.fr/sorties/sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8/,ludovic,,02/09/2017,15.0000000,16.0000000,43.235865000000,5.360000000000,,plage de la bonne brise,50959,observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-6,https://biolit.fr/observations/observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0895-scaled.jpg,,FALSE, +N1,60714,sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8,https://biolit.fr/sorties/sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8/,ludovic,,02/09/2017,15.0000000,16.0000000,43.235865000000,5.360000000000,,plage de la bonne brise,50961,observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-7,https://biolit.fr/observations/observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0897-scaled.jpg,,FALSE, +N1,60714,sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8,https://biolit.fr/sorties/sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8/,ludovic,,02/09/2017,15.0000000,16.0000000,43.235865000000,5.360000000000,,plage de la bonne brise,50963,observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-8,https://biolit.fr/observations/observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0899-scaled.jpg,,FALSE, +N1,60714,sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8,https://biolit.fr/sorties/sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8/,ludovic,,02/09/2017,15.0000000,16.0000000,43.235865000000,5.360000000000,,plage de la bonne brise,50965,observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-9,https://biolit.fr/observations/observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0901-scaled.jpg,,FALSE, +N1,60714,sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8,https://biolit.fr/sorties/sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8/,ludovic,,02/09/2017,15.0000000,16.0000000,43.235865000000,5.360000000000,,plage de la bonne brise,50967,observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-10,https://biolit.fr/observations/observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0903-scaled.jpg,,FALSE, +N1,60714,sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8,https://biolit.fr/sorties/sortie-864928eb-8bc0-4480-a0a5-d730fb9ccfd8/,ludovic,,02/09/2017,15.0000000,16.0000000,43.235865000000,5.360000000000,,plage de la bonne brise,50969,observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-11,https://biolit.fr/observations/observation-864928eb-8bc0-4480-a0a5-d730fb9ccfd8-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0904_0-scaled.jpg,,FALSE, +N1,60715,sortie-f2a0ba52-740b-48bb-a9a3-117099db2728,https://biolit.fr/sorties/sortie-f2a0ba52-740b-48bb-a9a3-117099db2728/,NVanzu,,02/09/2017,15.0000000,16.0:25,43.236070000000,5.359992000000,,Plage de la bonne brise,50971,observation-f2a0ba52-740b-48bb-a9a3-117099db2728,https://biolit.fr/observations/observation-f2a0ba52-740b-48bb-a9a3-117099db2728/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0125-scaled.jpg,,FALSE, +N1,60715,sortie-f2a0ba52-740b-48bb-a9a3-117099db2728,https://biolit.fr/sorties/sortie-f2a0ba52-740b-48bb-a9a3-117099db2728/,NVanzu,,02/09/2017,15.0000000,16.0:25,43.236070000000,5.359992000000,,Plage de la bonne brise,50973,observation-f2a0ba52-740b-48bb-a9a3-117099db2728-2,https://biolit.fr/observations/observation-f2a0ba52-740b-48bb-a9a3-117099db2728-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0126-scaled.jpg,,FALSE, +N1,60715,sortie-f2a0ba52-740b-48bb-a9a3-117099db2728,https://biolit.fr/sorties/sortie-f2a0ba52-740b-48bb-a9a3-117099db2728/,NVanzu,,02/09/2017,15.0000000,16.0:25,43.236070000000,5.359992000000,,Plage de la bonne brise,50975,observation-f2a0ba52-740b-48bb-a9a3-117099db2728-3,https://biolit.fr/observations/observation-f2a0ba52-740b-48bb-a9a3-117099db2728-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0128-scaled.jpg,,FALSE, +N1,60715,sortie-f2a0ba52-740b-48bb-a9a3-117099db2728,https://biolit.fr/sorties/sortie-f2a0ba52-740b-48bb-a9a3-117099db2728/,NVanzu,,02/09/2017,15.0000000,16.0:25,43.236070000000,5.359992000000,,Plage de la bonne brise,50977,observation-f2a0ba52-740b-48bb-a9a3-117099db2728-4,https://biolit.fr/observations/observation-f2a0ba52-740b-48bb-a9a3-117099db2728-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0131-scaled.jpg,,FALSE, +N1,60715,sortie-f2a0ba52-740b-48bb-a9a3-117099db2728,https://biolit.fr/sorties/sortie-f2a0ba52-740b-48bb-a9a3-117099db2728/,NVanzu,,02/09/2017,15.0000000,16.0:25,43.236070000000,5.359992000000,,Plage de la bonne brise,50979,observation-f2a0ba52-740b-48bb-a9a3-117099db2728-5,https://biolit.fr/observations/observation-f2a0ba52-740b-48bb-a9a3-117099db2728-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0135_0-scaled.jpg,,FALSE, +N1,60715,sortie-f2a0ba52-740b-48bb-a9a3-117099db2728,https://biolit.fr/sorties/sortie-f2a0ba52-740b-48bb-a9a3-117099db2728/,NVanzu,,02/09/2017,15.0000000,16.0:25,43.236070000000,5.359992000000,,Plage de la bonne brise,50981,observation-f2a0ba52-740b-48bb-a9a3-117099db2728-6,https://biolit.fr/observations/observation-f2a0ba52-740b-48bb-a9a3-117099db2728-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0133-scaled.jpg,,FALSE, +N1,60716,sortie-3d00cecb-63c2-45f5-b84a-d0af1059d7b4,https://biolit.fr/sorties/sortie-3d00cecb-63c2-45f5-b84a-d0af1059d7b4/,NVanzu,,02/09/2017,15.0000000,16.0000000,43.235985000000,5.360013000000,,Plage de la bonne brise,50983,observation-3d00cecb-63c2-45f5-b84a-d0af1059d7b4,https://biolit.fr/observations/observation-3d00cecb-63c2-45f5-b84a-d0af1059d7b4/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0120-scaled.jpg,,TRUE, +N1,60716,sortie-3d00cecb-63c2-45f5-b84a-d0af1059d7b4,https://biolit.fr/sorties/sortie-3d00cecb-63c2-45f5-b84a-d0af1059d7b4/,NVanzu,,02/09/2017,15.0000000,16.0000000,43.235985000000,5.360013000000,,Plage de la bonne brise,50985,observation-3d00cecb-63c2-45f5-b84a-d0af1059d7b4-2,https://biolit.fr/observations/observation-3d00cecb-63c2-45f5-b84a-d0af1059d7b4-2/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0121-scaled.jpg,,TRUE, +N1,60716,sortie-3d00cecb-63c2-45f5-b84a-d0af1059d7b4,https://biolit.fr/sorties/sortie-3d00cecb-63c2-45f5-b84a-d0af1059d7b4/,NVanzu,,02/09/2017,15.0000000,16.0000000,43.235985000000,5.360013000000,,Plage de la bonne brise,50987,observation-3d00cecb-63c2-45f5-b84a-d0af1059d7b4-3,https://biolit.fr/observations/observation-3d00cecb-63c2-45f5-b84a-d0af1059d7b4-3/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0122-scaled.jpg,,TRUE, +N1,60716,sortie-3d00cecb-63c2-45f5-b84a-d0af1059d7b4,https://biolit.fr/sorties/sortie-3d00cecb-63c2-45f5-b84a-d0af1059d7b4/,NVanzu,,02/09/2017,15.0000000,16.0000000,43.235985000000,5.360013000000,,Plage de la bonne brise,50989,observation-3d00cecb-63c2-45f5-b84a-d0af1059d7b4-4,https://biolit.fr/observations/observation-3d00cecb-63c2-45f5-b84a-d0af1059d7b4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0123-scaled.jpg,,FALSE, +N1,60716,sortie-3d00cecb-63c2-45f5-b84a-d0af1059d7b4,https://biolit.fr/sorties/sortie-3d00cecb-63c2-45f5-b84a-d0af1059d7b4/,NVanzu,,02/09/2017,15.0000000,16.0000000,43.235985000000,5.360013000000,,Plage de la bonne brise,50991,observation-3d00cecb-63c2-45f5-b84a-d0af1059d7b4-5,https://biolit.fr/observations/observation-3d00cecb-63c2-45f5-b84a-d0af1059d7b4-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0124-scaled.jpg,,FALSE, +N1,60717,sortie-caad926f-18ee-46ea-b5c2-08fb58331b98,https://biolit.fr/sorties/sortie-caad926f-18ee-46ea-b5c2-08fb58331b98/,Phil,,1/28/2017 0:00,13.000005,13.0:15,48.694793000000,-4.085283000000,,Sibiril - Finistère,50993,observation-caad926f-18ee-46ea-b5c2-08fb58331b98,https://biolit.fr/observations/observation-caad926f-18ee-46ea-b5c2-08fb58331b98/,Phymatolithon lenormandii,Algue encroûtante rouge de Lenormand,,https://biolit.fr/wp-content/uploads/2023/07/20170128_130414.jpg,,TRUE, +N1,60717,sortie-caad926f-18ee-46ea-b5c2-08fb58331b98,https://biolit.fr/sorties/sortie-caad926f-18ee-46ea-b5c2-08fb58331b98/,Phil,,1/28/2017 0:00,13.000005,13.0:15,48.694793000000,-4.085283000000,,Sibiril - Finistère,50995,observation-caad926f-18ee-46ea-b5c2-08fb58331b98-2,https://biolit.fr/observations/observation-caad926f-18ee-46ea-b5c2-08fb58331b98-2/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/07/20170128_130958.jpg,,TRUE, +N1,60717,sortie-caad926f-18ee-46ea-b5c2-08fb58331b98,https://biolit.fr/sorties/sortie-caad926f-18ee-46ea-b5c2-08fb58331b98/,Phil,,1/28/2017 0:00,13.000005,13.0:15,48.694793000000,-4.085283000000,,Sibiril - Finistère,50997,observation-caad926f-18ee-46ea-b5c2-08fb58331b98-3,https://biolit.fr/observations/observation-caad926f-18ee-46ea-b5c2-08fb58331b98-3/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/07/20170128_130826.jpg,,TRUE, +N1,60717,sortie-caad926f-18ee-46ea-b5c2-08fb58331b98,https://biolit.fr/sorties/sortie-caad926f-18ee-46ea-b5c2-08fb58331b98/,Phil,,1/28/2017 0:00,13.000005,13.0:15,48.694793000000,-4.085283000000,,Sibiril - Finistère,50999,observation-caad926f-18ee-46ea-b5c2-08fb58331b98-4,https://biolit.fr/observations/observation-caad926f-18ee-46ea-b5c2-08fb58331b98-4/,Janua heterostropha,Spirorbe de Pagenstecher,,https://biolit.fr/wp-content/uploads/2023/07/20170128_131240.jpg,,TRUE, +N1,60717,sortie-caad926f-18ee-46ea-b5c2-08fb58331b98,https://biolit.fr/sorties/sortie-caad926f-18ee-46ea-b5c2-08fb58331b98/,Phil,,1/28/2017 0:00,13.000005,13.0:15,48.694793000000,-4.085283000000,,Sibiril - Finistère,51001,observation-caad926f-18ee-46ea-b5c2-08fb58331b98-5,https://biolit.fr/observations/observation-caad926f-18ee-46ea-b5c2-08fb58331b98-5/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170128_130512.jpg,,TRUE, +N1,60718,sortie-2612f2b9-43b0-4b1d-948f-99644dc7d027,https://biolit.fr/sorties/sortie-2612f2b9-43b0-4b1d-948f-99644dc7d027/,Phil,,1/13/2017 0:00,12.0:55,13.0000000,47.57289000000,-4.323746000000,,Le Guilvinec - Finistère,51003,observation-2612f2b9-43b0-4b1d-948f-99644dc7d027,https://biolit.fr/observations/observation-2612f2b9-43b0-4b1d-948f-99644dc7d027/,Nephrops norvegicus,Langoustine,,https://biolit.fr/wp-content/uploads/2023/07/P1050722.JPG,,TRUE, +N1,60718,sortie-2612f2b9-43b0-4b1d-948f-99644dc7d027,https://biolit.fr/sorties/sortie-2612f2b9-43b0-4b1d-948f-99644dc7d027/,Phil,,1/13/2017 0:00,12.0:55,13.0000000,47.57289000000,-4.323746000000,,Le Guilvinec - Finistère,51005,observation-2612f2b9-43b0-4b1d-948f-99644dc7d027-2,https://biolit.fr/observations/observation-2612f2b9-43b0-4b1d-948f-99644dc7d027-2/,Nephrops norvegicus,Langoustine,,https://biolit.fr/wp-content/uploads/2023/07/P1050719.JPG,,TRUE, +N1,60718,sortie-2612f2b9-43b0-4b1d-948f-99644dc7d027,https://biolit.fr/sorties/sortie-2612f2b9-43b0-4b1d-948f-99644dc7d027/,Phil,,1/13/2017 0:00,12.0:55,13.0000000,47.57289000000,-4.323746000000,,Le Guilvinec - Finistère,51007,observation-2612f2b9-43b0-4b1d-948f-99644dc7d027-3,https://biolit.fr/observations/observation-2612f2b9-43b0-4b1d-948f-99644dc7d027-3/,Nephrops norvegicus,Langoustine,,https://biolit.fr/wp-content/uploads/2023/07/P1050715.JPG,,TRUE, +N1,60719,sortie-faef66d5-cb37-4455-a55d-755beaa66c31,https://biolit.fr/sorties/sortie-faef66d5-cb37-4455-a55d-755beaa66c31/,SofiaManuel,,02/07/2017,17.0000000,19.0000000,43.333438000000,5.197152000000,,la redonne,51009,observation-faef66d5-cb37-4455-a55d-755beaa66c31,https://biolit.fr/observations/observation-faef66d5-cb37-4455-a55d-755beaa66c31/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4233-scaled.jpg,,FALSE, +N1,60720,sortie-f47db6a3-f4e0-4443-b34b-59530fce2be2,https://biolit.fr/sorties/sortie-f47db6a3-f4e0-4443-b34b-59530fce2be2/,yanis bennadji,,1/24/2017 0:00,14.0000000,17.0000000,43.333718000000,5.197755000000,,Calanque de la Redonne,51011,observation-f47db6a3-f4e0-4443-b34b-59530fce2be2,https://biolit.fr/observations/observation-f47db6a3-f4e0-4443-b34b-59530fce2be2/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/photo 2_8-scaled.jpg,,TRUE, +N1,60720,sortie-f47db6a3-f4e0-4443-b34b-59530fce2be2,https://biolit.fr/sorties/sortie-f47db6a3-f4e0-4443-b34b-59530fce2be2/,yanis bennadji,,1/24/2017 0:00,14.0000000,17.0000000,43.333718000000,5.197755000000,,Calanque de la Redonne,51013,observation-f47db6a3-f4e0-4443-b34b-59530fce2be2-2,https://biolit.fr/observations/observation-f47db6a3-f4e0-4443-b34b-59530fce2be2-2/,Xantho poressa,Xanthe de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/photo 5_1-scaled.jpg,,TRUE, +N1,60720,sortie-f47db6a3-f4e0-4443-b34b-59530fce2be2,https://biolit.fr/sorties/sortie-f47db6a3-f4e0-4443-b34b-59530fce2be2/,yanis bennadji,,1/24/2017 0:00,14.0000000,17.0000000,43.333718000000,5.197755000000,,Calanque de la Redonne,51015,observation-f47db6a3-f4e0-4443-b34b-59530fce2be2-3,https://biolit.fr/observations/observation-f47db6a3-f4e0-4443-b34b-59530fce2be2-3/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_4250-scaled.jpg,,TRUE, +N1,60720,sortie-f47db6a3-f4e0-4443-b34b-59530fce2be2,https://biolit.fr/sorties/sortie-f47db6a3-f4e0-4443-b34b-59530fce2be2/,yanis bennadji,,1/24/2017 0:00,14.0000000,17.0000000,43.333718000000,5.197755000000,,Calanque de la Redonne,51017,observation-f47db6a3-f4e0-4443-b34b-59530fce2be2-4,https://biolit.fr/observations/observation-f47db6a3-f4e0-4443-b34b-59530fce2be2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4279-scaled.jpg,,FALSE, +N1,60720,sortie-f47db6a3-f4e0-4443-b34b-59530fce2be2,https://biolit.fr/sorties/sortie-f47db6a3-f4e0-4443-b34b-59530fce2be2/,yanis bennadji,,1/24/2017 0:00,14.0000000,17.0000000,43.333718000000,5.197755000000,,Calanque de la Redonne,51019,observation-f47db6a3-f4e0-4443-b34b-59530fce2be2-5,https://biolit.fr/observations/observation-f47db6a3-f4e0-4443-b34b-59530fce2be2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4289-scaled.jpg,,FALSE, +N1,60720,sortie-f47db6a3-f4e0-4443-b34b-59530fce2be2,https://biolit.fr/sorties/sortie-f47db6a3-f4e0-4443-b34b-59530fce2be2/,yanis bennadji,,1/24/2017 0:00,14.0000000,17.0000000,43.333718000000,5.197755000000,,Calanque de la Redonne,51021,observation-f47db6a3-f4e0-4443-b34b-59530fce2be2-6,https://biolit.fr/observations/observation-f47db6a3-f4e0-4443-b34b-59530fce2be2-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 3_8-scaled.jpg,,FALSE, +N1,60720,sortie-f47db6a3-f4e0-4443-b34b-59530fce2be2,https://biolit.fr/sorties/sortie-f47db6a3-f4e0-4443-b34b-59530fce2be2/,yanis bennadji,,1/24/2017 0:00,14.0000000,17.0000000,43.333718000000,5.197755000000,,Calanque de la Redonne,51023,observation-f47db6a3-f4e0-4443-b34b-59530fce2be2-7,https://biolit.fr/observations/observation-f47db6a3-f4e0-4443-b34b-59530fce2be2-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 4_8-scaled.jpg,,FALSE, +N1,60721,sortie-101cdf0a-7f61-4c36-a6ef-eecd2da70b40,https://biolit.fr/sorties/sortie-101cdf0a-7f61-4c36-a6ef-eecd2da70b40/,kenza,,1/24/2017 0:00,13.0000000,17.0000000,43.333714000000,5.197719000000,, la redonne,51025,observation-101cdf0a-7f61-4c36-a6ef-eecd2da70b40,https://biolit.fr/observations/observation-101cdf0a-7f61-4c36-a6ef-eecd2da70b40/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 1_10-scaled.jpg,,FALSE, +N1,60721,sortie-101cdf0a-7f61-4c36-a6ef-eecd2da70b40,https://biolit.fr/sorties/sortie-101cdf0a-7f61-4c36-a6ef-eecd2da70b40/,kenza,,1/24/2017 0:00,13.0000000,17.0000000,43.333714000000,5.197719000000,, la redonne,51027,observation-101cdf0a-7f61-4c36-a6ef-eecd2da70b40-2,https://biolit.fr/observations/observation-101cdf0a-7f61-4c36-a6ef-eecd2da70b40-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0386.JPG,,FALSE, +N1,60721,sortie-101cdf0a-7f61-4c36-a6ef-eecd2da70b40,https://biolit.fr/sorties/sortie-101cdf0a-7f61-4c36-a6ef-eecd2da70b40/,kenza,,1/24/2017 0:00,13.0000000,17.0000000,43.333714000000,5.197719000000,, la redonne,51029,observation-101cdf0a-7f61-4c36-a6ef-eecd2da70b40-3,https://biolit.fr/observations/observation-101cdf0a-7f61-4c36-a6ef-eecd2da70b40-3/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4251-scaled.jpg,,TRUE, +N1,60721,sortie-101cdf0a-7f61-4c36-a6ef-eecd2da70b40,https://biolit.fr/sorties/sortie-101cdf0a-7f61-4c36-a6ef-eecd2da70b40/,kenza,,1/24/2017 0:00,13.0000000,17.0000000,43.333714000000,5.197719000000,, la redonne,51031,observation-101cdf0a-7f61-4c36-a6ef-eecd2da70b40-4,https://biolit.fr/observations/observation-101cdf0a-7f61-4c36-a6ef-eecd2da70b40-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4259-scaled.jpg,,FALSE, +N1,60721,sortie-101cdf0a-7f61-4c36-a6ef-eecd2da70b40,https://biolit.fr/sorties/sortie-101cdf0a-7f61-4c36-a6ef-eecd2da70b40/,kenza,,1/24/2017 0:00,13.0000000,17.0000000,43.333714000000,5.197719000000,, la redonne,51033,observation-101cdf0a-7f61-4c36-a6ef-eecd2da70b40-5,https://biolit.fr/observations/observation-101cdf0a-7f61-4c36-a6ef-eecd2da70b40-5/,Euspira catena,Natice porte-chaîne,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4276-scaled.jpg,,TRUE, +N1,60721,sortie-101cdf0a-7f61-4c36-a6ef-eecd2da70b40,https://biolit.fr/sorties/sortie-101cdf0a-7f61-4c36-a6ef-eecd2da70b40/,kenza,,1/24/2017 0:00,13.0000000,17.0000000,43.333714000000,5.197719000000,, la redonne,51035,observation-101cdf0a-7f61-4c36-a6ef-eecd2da70b40-6,https://biolit.fr/observations/observation-101cdf0a-7f61-4c36-a6ef-eecd2da70b40-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 2_6-scaled.jpg,,FALSE, +N1,60721,sortie-101cdf0a-7f61-4c36-a6ef-eecd2da70b40,https://biolit.fr/sorties/sortie-101cdf0a-7f61-4c36-a6ef-eecd2da70b40/,kenza,,1/24/2017 0:00,13.0000000,17.0000000,43.333714000000,5.197719000000,, la redonne,51037,observation-101cdf0a-7f61-4c36-a6ef-eecd2da70b40-7,https://biolit.fr/observations/observation-101cdf0a-7f61-4c36-a6ef-eecd2da70b40-7/,Pinna nobilis,Grande nacre,,https://biolit.fr/wp-content/uploads/2023/07/photo 3_7-scaled.jpg,,TRUE, +N1,60721,sortie-101cdf0a-7f61-4c36-a6ef-eecd2da70b40,https://biolit.fr/sorties/sortie-101cdf0a-7f61-4c36-a6ef-eecd2da70b40/,kenza,,1/24/2017 0:00,13.0000000,17.0000000,43.333714000000,5.197719000000,, la redonne,51039,observation-101cdf0a-7f61-4c36-a6ef-eecd2da70b40-8,https://biolit.fr/observations/observation-101cdf0a-7f61-4c36-a6ef-eecd2da70b40-8/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/photo 4_7-scaled.jpg,,TRUE, +N1,60722,sortie-bdff20f2-3649-4257-9134-18350951d730,https://biolit.fr/sorties/sortie-bdff20f2-3649-4257-9134-18350951d730/,mimidutieks,,1/24/2017 0:00,13.0000000,17.0000000,43.333591000000,5.197717000000,,la redonne,51041,observation-bdff20f2-3649-4257-9134-18350951d730,https://biolit.fr/observations/observation-bdff20f2-3649-4257-9134-18350951d730/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4232-scaled.jpg,,FALSE, +N1,60722,sortie-bdff20f2-3649-4257-9134-18350951d730,https://biolit.fr/sorties/sortie-bdff20f2-3649-4257-9134-18350951d730/,mimidutieks,,1/24/2017 0:00,13.0000000,17.0000000,43.333591000000,5.197717000000,,la redonne,51043,observation-bdff20f2-3649-4257-9134-18350951d730-2,https://biolit.fr/observations/observation-bdff20f2-3649-4257-9134-18350951d730-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 4_3-scaled.jpg,,FALSE, +N1,60722,sortie-bdff20f2-3649-4257-9134-18350951d730,https://biolit.fr/sorties/sortie-bdff20f2-3649-4257-9134-18350951d730/,mimidutieks,,1/24/2017 0:00,13.0000000,17.0000000,43.333591000000,5.197717000000,,la redonne,51045,observation-bdff20f2-3649-4257-9134-18350951d730-3,https://biolit.fr/observations/observation-bdff20f2-3649-4257-9134-18350951d730-3/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/photo 1_9-scaled.jpg,,TRUE, +N1,60722,sortie-bdff20f2-3649-4257-9134-18350951d730,https://biolit.fr/sorties/sortie-bdff20f2-3649-4257-9134-18350951d730/,mimidutieks,,1/24/2017 0:00,13.0000000,17.0000000,43.333591000000,5.197717000000,,la redonne,51047,observation-bdff20f2-3649-4257-9134-18350951d730-4,https://biolit.fr/observations/observation-bdff20f2-3649-4257-9134-18350951d730-4/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4295-scaled.jpg,,TRUE, +N1,60722,sortie-bdff20f2-3649-4257-9134-18350951d730,https://biolit.fr/sorties/sortie-bdff20f2-3649-4257-9134-18350951d730/,mimidutieks,,1/24/2017 0:00,13.0000000,17.0000000,43.333591000000,5.197717000000,,la redonne,51049,observation-bdff20f2-3649-4257-9134-18350951d730-5,https://biolit.fr/observations/observation-bdff20f2-3649-4257-9134-18350951d730-5/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4269-scaled.jpg,,TRUE, +N1,60723,sortie-d05cb2f9-0932-4af5-b813-15595527f033,https://biolit.fr/sorties/sortie-d05cb2f9-0932-4af5-b813-15595527f033/,sofia loubna hanane,,02/07/2017,16.0000000,18.0000000,43.33344600000,5.197200000000,,La Redonne,51051,observation-d05cb2f9-0932-4af5-b813-15595527f033,https://biolit.fr/observations/observation-d05cb2f9-0932-4af5-b813-15595527f033/,,,,https://biolit.fr/wp-content/uploads/2023/07/Photo 6.jpg,,FALSE, +N1,60723,sortie-d05cb2f9-0932-4af5-b813-15595527f033,https://biolit.fr/sorties/sortie-d05cb2f9-0932-4af5-b813-15595527f033/,sofia loubna hanane,,02/07/2017,16.0000000,18.0000000,43.33344600000,5.197200000000,,La Redonne,51052,observation-d05cb2f9-0932-4af5-b813-15595527f033-2,https://biolit.fr/observations/observation-d05cb2f9-0932-4af5-b813-15595527f033-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/photo 5_0.JPG,,TRUE, +N1,60723,sortie-d05cb2f9-0932-4af5-b813-15595527f033,https://biolit.fr/sorties/sortie-d05cb2f9-0932-4af5-b813-15595527f033/,sofia loubna hanane,,02/07/2017,16.0000000,18.0000000,43.33344600000,5.197200000000,,La Redonne,51054,observation-d05cb2f9-0932-4af5-b813-15595527f033-3,https://biolit.fr/observations/observation-d05cb2f9-0932-4af5-b813-15595527f033-3/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/photo 3_4-scaled.jpg,,TRUE, +N1,60723,sortie-d05cb2f9-0932-4af5-b813-15595527f033,https://biolit.fr/sorties/sortie-d05cb2f9-0932-4af5-b813-15595527f033/,sofia loubna hanane,,02/07/2017,16.0000000,18.0000000,43.33344600000,5.197200000000,,La Redonne,51056,observation-d05cb2f9-0932-4af5-b813-15595527f033-4,https://biolit.fr/observations/observation-d05cb2f9-0932-4af5-b813-15595527f033-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 2_4-scaled.jpg,,FALSE, +N1,60723,sortie-d05cb2f9-0932-4af5-b813-15595527f033,https://biolit.fr/sorties/sortie-d05cb2f9-0932-4af5-b813-15595527f033/,sofia loubna hanane,,02/07/2017,16.0000000,18.0000000,43.33344600000,5.197200000000,,La Redonne,51058,observation-d05cb2f9-0932-4af5-b813-15595527f033-5,https://biolit.fr/observations/observation-d05cb2f9-0932-4af5-b813-15595527f033-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 1_8-scaled.jpg,,FALSE, +N1,60723,sortie-d05cb2f9-0932-4af5-b813-15595527f033,https://biolit.fr/sorties/sortie-d05cb2f9-0932-4af5-b813-15595527f033/,sofia loubna hanane,,02/07/2017,16.0000000,18.0000000,43.33344600000,5.197200000000,,La Redonne,51060,observation-d05cb2f9-0932-4af5-b813-15595527f033-6,https://biolit.fr/observations/observation-d05cb2f9-0932-4af5-b813-15595527f033-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4257-scaled.jpg,,FALSE, +N1,60723,sortie-d05cb2f9-0932-4af5-b813-15595527f033,https://biolit.fr/sorties/sortie-d05cb2f9-0932-4af5-b813-15595527f033/,sofia loubna hanane,,02/07/2017,16.0000000,18.0000000,43.33344600000,5.197200000000,,La Redonne,51062,observation-d05cb2f9-0932-4af5-b813-15595527f033-7,https://biolit.fr/observations/observation-d05cb2f9-0932-4af5-b813-15595527f033-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0382.JPG,,FALSE, +N1,60724,sortie-a94b41a9-c539-468d-b2f4-f16aadc0ae62,https://biolit.fr/sorties/sortie-a94b41a9-c539-468d-b2f4-f16aadc0ae62/,SofiaManuel,,02/07/2017,16.0:25,18.0:25,43.333395000000,5.197181000000,,la redonne ,51064,observation-a94b41a9-c539-468d-b2f4-f16aadc0ae62,https://biolit.fr/observations/observation-a94b41a9-c539-468d-b2f4-f16aadc0ae62/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4270-scaled.jpg,,TRUE, +N1,60724,sortie-a94b41a9-c539-468d-b2f4-f16aadc0ae62,https://biolit.fr/sorties/sortie-a94b41a9-c539-468d-b2f4-f16aadc0ae62/,SofiaManuel,,02/07/2017,16.0:25,18.0:25,43.333395000000,5.197181000000,,la redonne ,51066,observation-a94b41a9-c539-468d-b2f4-f16aadc0ae62-2,https://biolit.fr/observations/observation-a94b41a9-c539-468d-b2f4-f16aadc0ae62-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/photo 1_7-rotated.jpg,,TRUE, +N1,60724,sortie-a94b41a9-c539-468d-b2f4-f16aadc0ae62,https://biolit.fr/sorties/sortie-a94b41a9-c539-468d-b2f4-f16aadc0ae62/,SofiaManuel,,02/07/2017,16.0:25,18.0:25,43.333395000000,5.197181000000,,la redonne ,51068,observation-a94b41a9-c539-468d-b2f4-f16aadc0ae62-3,https://biolit.fr/observations/observation-a94b41a9-c539-468d-b2f4-f16aadc0ae62-3/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/photo 2-scaled.jpg,,TRUE, +N1,60724,sortie-a94b41a9-c539-468d-b2f4-f16aadc0ae62,https://biolit.fr/sorties/sortie-a94b41a9-c539-468d-b2f4-f16aadc0ae62/,SofiaManuel,,02/07/2017,16.0:25,18.0:25,43.333395000000,5.197181000000,,la redonne ,51070,observation-a94b41a9-c539-468d-b2f4-f16aadc0ae62-4,https://biolit.fr/observations/observation-a94b41a9-c539-468d-b2f4-f16aadc0ae62-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 3_3-scaled.jpg,,FALSE, +N1,60724,sortie-a94b41a9-c539-468d-b2f4-f16aadc0ae62,https://biolit.fr/sorties/sortie-a94b41a9-c539-468d-b2f4-f16aadc0ae62/,SofiaManuel,,02/07/2017,16.0:25,18.0:25,43.333395000000,5.197181000000,,la redonne ,51072,observation-a94b41a9-c539-468d-b2f4-f16aadc0ae62-5,https://biolit.fr/observations/observation-a94b41a9-c539-468d-b2f4-f16aadc0ae62-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 5-scaled.jpg,,FALSE, +N1,60724,sortie-a94b41a9-c539-468d-b2f4-f16aadc0ae62,https://biolit.fr/sorties/sortie-a94b41a9-c539-468d-b2f4-f16aadc0ae62/,SofiaManuel,,02/07/2017,16.0:25,18.0:25,43.333395000000,5.197181000000,,la redonne ,51074,observation-a94b41a9-c539-468d-b2f4-f16aadc0ae62-6,https://biolit.fr/observations/observation-a94b41a9-c539-468d-b2f4-f16aadc0ae62-6/,Ulva sp. groupe intestinalis,Ulves tubuleuses du groupe intestinalis,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4248_4-scaled.jpg,,TRUE, +N1,60725,sortie-a64758cb-cb21-447a-b513-96af7d29c39e,https://biolit.fr/sorties/sortie-a64758cb-cb21-447a-b513-96af7d29c39e/,Phil,,1/28/2017 0:00,13.0000000,13.0:15,48.694464000000,-4.085026000000,,Sibiril - Finistère,51076,observation-a64758cb-cb21-447a-b513-96af7d29c39e,https://biolit.fr/observations/observation-a64758cb-cb21-447a-b513-96af7d29c39e/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170128_130336_0.jpg,,FALSE, +N1,60725,sortie-a64758cb-cb21-447a-b513-96af7d29c39e,https://biolit.fr/sorties/sortie-a64758cb-cb21-447a-b513-96af7d29c39e/,Phil,,1/28/2017 0:00,13.0000000,13.0:15,48.694464000000,-4.085026000000,,Sibiril - Finistère,51078,observation-a64758cb-cb21-447a-b513-96af7d29c39e-2,https://biolit.fr/observations/observation-a64758cb-cb21-447a-b513-96af7d29c39e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170128_130146_0.jpg,,FALSE, +N1,60725,sortie-a64758cb-cb21-447a-b513-96af7d29c39e,https://biolit.fr/sorties/sortie-a64758cb-cb21-447a-b513-96af7d29c39e/,Phil,,1/28/2017 0:00,13.0000000,13.0:15,48.694464000000,-4.085026000000,,Sibiril - Finistère,51080,observation-a64758cb-cb21-447a-b513-96af7d29c39e-3,https://biolit.fr/observations/observation-a64758cb-cb21-447a-b513-96af7d29c39e-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170128_125725.jpg,,TRUE, +N1,60725,sortie-a64758cb-cb21-447a-b513-96af7d29c39e,https://biolit.fr/sorties/sortie-a64758cb-cb21-447a-b513-96af7d29c39e/,Phil,,1/28/2017 0:00,13.0000000,13.0:15,48.694464000000,-4.085026000000,,Sibiril - Finistère,51082,observation-a64758cb-cb21-447a-b513-96af7d29c39e-4,https://biolit.fr/observations/observation-a64758cb-cb21-447a-b513-96af7d29c39e-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170128_125838.jpg,,TRUE, +N1,60725,sortie-a64758cb-cb21-447a-b513-96af7d29c39e,https://biolit.fr/sorties/sortie-a64758cb-cb21-447a-b513-96af7d29c39e/,Phil,,1/28/2017 0:00,13.0000000,13.0:15,48.694464000000,-4.085026000000,,Sibiril - Finistère,51084,observation-a64758cb-cb21-447a-b513-96af7d29c39e-5,https://biolit.fr/observations/observation-a64758cb-cb21-447a-b513-96af7d29c39e-5/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/20170128_125849.jpg,,TRUE, +N1,60725,sortie-a64758cb-cb21-447a-b513-96af7d29c39e,https://biolit.fr/sorties/sortie-a64758cb-cb21-447a-b513-96af7d29c39e/,Phil,,1/28/2017 0:00,13.0000000,13.0:15,48.694464000000,-4.085026000000,,Sibiril - Finistère,51086,observation-a64758cb-cb21-447a-b513-96af7d29c39e-6,https://biolit.fr/observations/observation-a64758cb-cb21-447a-b513-96af7d29c39e-6/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/20170128_125927.jpg,,TRUE, +N1,60726,sortie-04534428-56c9-437b-a91e-e0513a3385c3,https://biolit.fr/sorties/sortie-04534428-56c9-437b-a91e-e0513a3385c3/,pablo escobar,,02/06/2017,16.0000000,18.0000000,43.333734000000,5.19774300000,,plage des pébraires ,51088,observation-04534428-56c9-437b-a91e-e0513a3385c3,https://biolit.fr/observations/observation-04534428-56c9-437b-a91e-e0513a3385c3/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/photo 1_1-scaled.jpg,,TRUE, +N1,60726,sortie-04534428-56c9-437b-a91e-e0513a3385c3,https://biolit.fr/sorties/sortie-04534428-56c9-437b-a91e-e0513a3385c3/,pablo escobar,,02/06/2017,16.0000000,18.0000000,43.333734000000,5.19774300000,,plage des pébraires ,51090,observation-04534428-56c9-437b-a91e-e0513a3385c3-2,https://biolit.fr/observations/observation-04534428-56c9-437b-a91e-e0513a3385c3-2/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/photo 2_3-scaled.jpg,,TRUE, +N1,60726,sortie-04534428-56c9-437b-a91e-e0513a3385c3,https://biolit.fr/sorties/sortie-04534428-56c9-437b-a91e-e0513a3385c3/,pablo escobar,,02/06/2017,16.0000000,18.0000000,43.333734000000,5.19774300000,,plage des pébraires ,51092,observation-04534428-56c9-437b-a91e-e0513a3385c3-3,https://biolit.fr/observations/observation-04534428-56c9-437b-a91e-e0513a3385c3-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 3_2-scaled.jpg,,FALSE, +N1,60726,sortie-04534428-56c9-437b-a91e-e0513a3385c3,https://biolit.fr/sorties/sortie-04534428-56c9-437b-a91e-e0513a3385c3/,pablo escobar,,02/06/2017,16.0000000,18.0000000,43.333734000000,5.19774300000,,plage des pébraires ,51094,observation-04534428-56c9-437b-a91e-e0513a3385c3-4,https://biolit.fr/observations/observation-04534428-56c9-437b-a91e-e0513a3385c3-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 4_2-scaled.jpg,,FALSE, +N1,60727,sortie-57009285-4281-4956-9a15-62157ec05a2b,https://biolit.fr/sorties/sortie-57009285-4281-4956-9a15-62157ec05a2b/,Joaronchin,,02/06/2017,16.0000000,18.0000000,43.345630000000,5.186431000000,,ensuès-la-redonne,51096,observation-57009285-4281-4956-9a15-62157ec05a2b,https://biolit.fr/observations/observation-57009285-4281-4956-9a15-62157ec05a2b/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 2_5-scaled.jpg,,FALSE, +N1,60728,sortie-e8789bd1-4f5f-4670-b513-26af17db490a,https://biolit.fr/sorties/sortie-e8789bd1-4f5f-4670-b513-26af17db490a/,azerty123,,02/06/2017,16.0000000,18.0000000,43.333979000000,5.197739000000,,plage de pébraïres,51098,observation-e8789bd1-4f5f-4670-b513-26af17db490a,https://biolit.fr/observations/observation-e8789bd1-4f5f-4670-b513-26af17db490a/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/photo 1_4-scaled.jpg,,TRUE, +N1,60728,sortie-e8789bd1-4f5f-4670-b513-26af17db490a,https://biolit.fr/sorties/sortie-e8789bd1-4f5f-4670-b513-26af17db490a/,azerty123,,02/06/2017,16.0000000,18.0000000,43.333979000000,5.197739000000,,plage de pébraïres,51100,observation-e8789bd1-4f5f-4670-b513-26af17db490a-2,https://biolit.fr/observations/observation-e8789bd1-4f5f-4670-b513-26af17db490a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 3_6-scaled.jpg,,FALSE, +N1,60729,sortie-c047eada-5e52-4437-a8d8-1a60bf1c36d7,https://biolit.fr/sorties/sortie-c047eada-5e52-4437-a8d8-1a60bf1c36d7/,dana,,1/23/2017 0:00,14.0000000,17.0000000,43.341465000000,5.263888000000,,la plage des pébraires,51102,observation-c047eada-5e52-4437-a8d8-1a60bf1c36d7,https://biolit.fr/observations/observation-c047eada-5e52-4437-a8d8-1a60bf1c36d7/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/photo 1_3-scaled.jpg,,TRUE, +N1,60729,sortie-c047eada-5e52-4437-a8d8-1a60bf1c36d7,https://biolit.fr/sorties/sortie-c047eada-5e52-4437-a8d8-1a60bf1c36d7/,dana,,1/23/2017 0:00,14.0000000,17.0000000,43.341465000000,5.263888000000,,la plage des pébraires,51104,observation-c047eada-5e52-4437-a8d8-1a60bf1c36d7-2,https://biolit.fr/observations/observation-c047eada-5e52-4437-a8d8-1a60bf1c36d7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 3_5-scaled.jpg,,FALSE, +N1,60729,sortie-c047eada-5e52-4437-a8d8-1a60bf1c36d7,https://biolit.fr/sorties/sortie-c047eada-5e52-4437-a8d8-1a60bf1c36d7/,dana,,1/23/2017 0:00,14.0000000,17.0000000,43.341465000000,5.263888000000,,la plage des pébraires,51106,observation-c047eada-5e52-4437-a8d8-1a60bf1c36d7-3,https://biolit.fr/observations/observation-c047eada-5e52-4437-a8d8-1a60bf1c36d7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 4_4-scaled.jpg,,FALSE, +N1,60730,sortie-4210bfcd-1b75-4193-b709-c4964340819b,https://biolit.fr/sorties/sortie-4210bfcd-1b75-4193-b709-c4964340819b/,tino travers bradesi,,1/23/2017 0:00,13.0000000,17.0000000,43.333238000000,5.199743000000,,plage des pébraires,51108,observation-4210bfcd-1b75-4193-b709-c4964340819b,https://biolit.fr/observations/observation-4210bfcd-1b75-4193-b709-c4964340819b/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/photo 2_2-scaled.jpg,,TRUE, +N1,60730,sortie-4210bfcd-1b75-4193-b709-c4964340819b,https://biolit.fr/sorties/sortie-4210bfcd-1b75-4193-b709-c4964340819b/,tino travers bradesi,,1/23/2017 0:00,13.0000000,17.0000000,43.333238000000,5.199743000000,,plage des pébraires,51110,observation-4210bfcd-1b75-4193-b709-c4964340819b-2,https://biolit.fr/observations/observation-4210bfcd-1b75-4193-b709-c4964340819b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 3_0-scaled.jpg,,FALSE, +N1,60731,sortie-53f870f6-fc7c-4ae1-a7ae-2e5c68fd7fe0,https://biolit.fr/sorties/sortie-53f870f6-fc7c-4ae1-a7ae-2e5c68fd7fe0/,Linda,,1/23/2017 0:00,13.0000000,17.0000000,43.360109000000,5.220077000000,,la redonne,51112,observation-53f870f6-fc7c-4ae1-a7ae-2e5c68fd7fe0,https://biolit.fr/observations/observation-53f870f6-fc7c-4ae1-a7ae-2e5c68fd7fe0/,,,,https://biolit.fr/wp-content/uploads/2023/07/photo 4_0-scaled.jpg,,FALSE, +N1,60731,sortie-53f870f6-fc7c-4ae1-a7ae-2e5c68fd7fe0,https://biolit.fr/sorties/sortie-53f870f6-fc7c-4ae1-a7ae-2e5c68fd7fe0/,Linda,,1/23/2017 0:00,13.0000000,17.0000000,43.360109000000,5.220077000000,,la redonne,51114,observation-53f870f6-fc7c-4ae1-a7ae-2e5c68fd7fe0-2,https://biolit.fr/observations/observation-53f870f6-fc7c-4ae1-a7ae-2e5c68fd7fe0-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Photo 3.jpg,,TRUE, +N1,60731,sortie-53f870f6-fc7c-4ae1-a7ae-2e5c68fd7fe0,https://biolit.fr/sorties/sortie-53f870f6-fc7c-4ae1-a7ae-2e5c68fd7fe0/,Linda,,1/23/2017 0:00,13.0000000,17.0000000,43.360109000000,5.220077000000,,la redonne,51115,observation-53f870f6-fc7c-4ae1-a7ae-2e5c68fd7fe0-3,https://biolit.fr/observations/observation-53f870f6-fc7c-4ae1-a7ae-2e5c68fd7fe0-3/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/photo 1-scaled.jpg,,TRUE, +N1,60732,sortie-bc89f131-ef9e-41a5-883d-a5ecc77b336f,https://biolit.fr/sorties/sortie-bc89f131-ef9e-41a5-883d-a5ecc77b336f/,Phil,,1/13/2017 0:00,13.0000000,13.0000000,47.802185000000,-4.181498000000,,Loctudy - Finistère,51117,observation-bc89f131-ef9e-41a5-883d-a5ecc77b336f,https://biolit.fr/observations/observation-bc89f131-ef9e-41a5-883d-a5ecc77b336f/,Homarus gammarus,Homard européen,,https://biolit.fr/wp-content/uploads/2023/07/P1050739.JPG,,TRUE, +N1,60732,sortie-bc89f131-ef9e-41a5-883d-a5ecc77b336f,https://biolit.fr/sorties/sortie-bc89f131-ef9e-41a5-883d-a5ecc77b336f/,Phil,,1/13/2017 0:00,13.0000000,13.0000000,47.802185000000,-4.181498000000,,Loctudy - Finistère,51119,observation-bc89f131-ef9e-41a5-883d-a5ecc77b336f-2,https://biolit.fr/observations/observation-bc89f131-ef9e-41a5-883d-a5ecc77b336f-2/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1050757.JPG,,TRUE, +N1,60733,sortie-3d349138-9bfd-4e71-b5fb-e16c39b86626,https://biolit.fr/sorties/sortie-3d349138-9bfd-4e71-b5fb-e16c39b86626/,Katia Bérard,,02/03/2017,18.0000000,20.0000000,50.227083000000,1.610639000000,,CROTOY,51121,observation-3d349138-9bfd-4e71-b5fb-e16c39b86626,https://biolit.fr/observations/observation-3d349138-9bfd-4e71-b5fb-e16c39b86626/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/IMGP5210_0.JPG,,TRUE, +N1,60734,sortie-db43bfcf-cef9-4448-9bf6-5bdc80b76716,https://biolit.fr/sorties/sortie-db43bfcf-cef9-4448-9bf6-5bdc80b76716/,Phil,,1/13/2017 0:00,16.0:35,16.0000000,47.801027000000,-4.180557000000,,Loctudy - Finistère,51123,observation-db43bfcf-cef9-4448-9bf6-5bdc80b76716,https://biolit.fr/observations/observation-db43bfcf-cef9-4448-9bf6-5bdc80b76716/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050728.JPG,,FALSE, +N1,60734,sortie-db43bfcf-cef9-4448-9bf6-5bdc80b76716,https://biolit.fr/sorties/sortie-db43bfcf-cef9-4448-9bf6-5bdc80b76716/,Phil,,1/13/2017 0:00,16.0:35,16.0000000,47.801027000000,-4.180557000000,,Loctudy - Finistère,51125,observation-db43bfcf-cef9-4448-9bf6-5bdc80b76716-2,https://biolit.fr/observations/observation-db43bfcf-cef9-4448-9bf6-5bdc80b76716-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050731.JPG,,FALSE, +N1,60735,sortie-f6349972-7bfd-4037-9347-dc3a56a86f6d,https://biolit.fr/sorties/sortie-f6349972-7bfd-4037-9347-dc3a56a86f6d/,Phil,,1/28/2017 0:00,12.0:45,13.0000000,48.694122000000,-4.085335000000,,Sibiril - Finistère,51127,observation-f6349972-7bfd-4037-9347-dc3a56a86f6d,https://biolit.fr/observations/observation-f6349972-7bfd-4037-9347-dc3a56a86f6d/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170128_124521.jpg,,TRUE, +N1,60735,sortie-f6349972-7bfd-4037-9347-dc3a56a86f6d,https://biolit.fr/sorties/sortie-f6349972-7bfd-4037-9347-dc3a56a86f6d/,Phil,,1/28/2017 0:00,12.0:45,13.0000000,48.694122000000,-4.085335000000,,Sibiril - Finistère,51129,observation-f6349972-7bfd-4037-9347-dc3a56a86f6d-2,https://biolit.fr/observations/observation-f6349972-7bfd-4037-9347-dc3a56a86f6d-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/20170128_124330_0.jpg,,TRUE, +N1,60735,sortie-f6349972-7bfd-4037-9347-dc3a56a86f6d,https://biolit.fr/sorties/sortie-f6349972-7bfd-4037-9347-dc3a56a86f6d/,Phil,,1/28/2017 0:00,12.0:45,13.0000000,48.694122000000,-4.085335000000,,Sibiril - Finistère,51131,observation-f6349972-7bfd-4037-9347-dc3a56a86f6d-3,https://biolit.fr/observations/observation-f6349972-7bfd-4037-9347-dc3a56a86f6d-3/,Phymatolithon lenormandii,Algue encroûtante rouge de Lenormand,,https://biolit.fr/wp-content/uploads/2023/07/20170128_124611_0.jpg,,TRUE, +N1,60735,sortie-f6349972-7bfd-4037-9347-dc3a56a86f6d,https://biolit.fr/sorties/sortie-f6349972-7bfd-4037-9347-dc3a56a86f6d/,Phil,,1/28/2017 0:00,12.0:45,13.0000000,48.694122000000,-4.085335000000,,Sibiril - Finistère,51133,observation-f6349972-7bfd-4037-9347-dc3a56a86f6d-4,https://biolit.fr/observations/observation-f6349972-7bfd-4037-9347-dc3a56a86f6d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170128_124908_0.jpg,,FALSE, +N1,60736,sortie-6809772f-360e-4d90-b3e5-7862797d7557,https://biolit.fr/sorties/sortie-6809772f-360e-4d90-b3e5-7862797d7557/,Phil,,1/18/2017 0:00,16.0000000,16.0000000,47.792519000000,-4.286848000000,,Le Guilvinec - Finistère,51135,observation-6809772f-360e-4d90-b3e5-7862797d7557,https://biolit.fr/observations/observation-6809772f-360e-4d90-b3e5-7862797d7557/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20170118_174126.jpg,,TRUE, +N1,60736,sortie-6809772f-360e-4d90-b3e5-7862797d7557,https://biolit.fr/sorties/sortie-6809772f-360e-4d90-b3e5-7862797d7557/,Phil,,1/18/2017 0:00,16.0000000,16.0000000,47.792519000000,-4.286848000000,,Le Guilvinec - Finistère,51137,observation-6809772f-360e-4d90-b3e5-7862797d7557-2,https://biolit.fr/observations/observation-6809772f-360e-4d90-b3e5-7862797d7557-2/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20170118_174203.jpg,,TRUE, +N1,60736,sortie-6809772f-360e-4d90-b3e5-7862797d7557,https://biolit.fr/sorties/sortie-6809772f-360e-4d90-b3e5-7862797d7557/,Phil,,1/18/2017 0:00,16.0000000,16.0000000,47.792519000000,-4.286848000000,,Le Guilvinec - Finistère,51139,observation-6809772f-360e-4d90-b3e5-7862797d7557-3,https://biolit.fr/observations/observation-6809772f-360e-4d90-b3e5-7862797d7557-3/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20170118_174107.jpg,,TRUE, +N1,60736,sortie-6809772f-360e-4d90-b3e5-7862797d7557,https://biolit.fr/sorties/sortie-6809772f-360e-4d90-b3e5-7862797d7557/,Phil,,1/18/2017 0:00,16.0000000,16.0000000,47.792519000000,-4.286848000000,,Le Guilvinec - Finistère,51141,observation-6809772f-360e-4d90-b3e5-7862797d7557-4,https://biolit.fr/observations/observation-6809772f-360e-4d90-b3e5-7862797d7557-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170118_174026.jpg,,FALSE, +N1,60737,sortie-6a760dde-92d9-422c-8192-ffd19ec100b5,https://biolit.fr/sorties/sortie-6a760dde-92d9-422c-8192-ffd19ec100b5/,ludovic,,02/02/2017,14.0000000,16.0000000,43.235764000000,5.36003700000,,plage de la bonne brise,51143,observation-6a760dde-92d9-422c-8192-ffd19ec100b5,https://biolit.fr/observations/observation-6a760dde-92d9-422c-8192-ffd19ec100b5/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0858-scaled.jpg,,TRUE, +N1,60737,sortie-6a760dde-92d9-422c-8192-ffd19ec100b5,https://biolit.fr/sorties/sortie-6a760dde-92d9-422c-8192-ffd19ec100b5/,ludovic,,02/02/2017,14.0000000,16.0000000,43.235764000000,5.36003700000,,plage de la bonne brise,51145,observation-6a760dde-92d9-422c-8192-ffd19ec100b5-2,https://biolit.fr/observations/observation-6a760dde-92d9-422c-8192-ffd19ec100b5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0860-scaled.jpg,,FALSE, +N1,60737,sortie-6a760dde-92d9-422c-8192-ffd19ec100b5,https://biolit.fr/sorties/sortie-6a760dde-92d9-422c-8192-ffd19ec100b5/,ludovic,,02/02/2017,14.0000000,16.0000000,43.235764000000,5.36003700000,,plage de la bonne brise,51147,observation-6a760dde-92d9-422c-8192-ffd19ec100b5-3,https://biolit.fr/observations/observation-6a760dde-92d9-422c-8192-ffd19ec100b5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0861-scaled.jpg,,FALSE, +N1,60737,sortie-6a760dde-92d9-422c-8192-ffd19ec100b5,https://biolit.fr/sorties/sortie-6a760dde-92d9-422c-8192-ffd19ec100b5/,ludovic,,02/02/2017,14.0000000,16.0000000,43.235764000000,5.36003700000,,plage de la bonne brise,51149,observation-6a760dde-92d9-422c-8192-ffd19ec100b5-4,https://biolit.fr/observations/observation-6a760dde-92d9-422c-8192-ffd19ec100b5-4/,Ligia italica,Ligie italienne,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0865-scaled.jpg,,TRUE, +N1,60737,sortie-6a760dde-92d9-422c-8192-ffd19ec100b5,https://biolit.fr/sorties/sortie-6a760dde-92d9-422c-8192-ffd19ec100b5/,ludovic,,02/02/2017,14.0000000,16.0000000,43.235764000000,5.36003700000,,plage de la bonne brise,51151,observation-6a760dde-92d9-422c-8192-ffd19ec100b5-5,https://biolit.fr/observations/observation-6a760dde-92d9-422c-8192-ffd19ec100b5-5/,Ligia italica,Ligie italienne,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0868-scaled.jpg,,TRUE, +N1,60737,sortie-6a760dde-92d9-422c-8192-ffd19ec100b5,https://biolit.fr/sorties/sortie-6a760dde-92d9-422c-8192-ffd19ec100b5/,ludovic,,02/02/2017,14.0000000,16.0000000,43.235764000000,5.36003700000,,plage de la bonne brise,51153,observation-6a760dde-92d9-422c-8192-ffd19ec100b5-6,https://biolit.fr/observations/observation-6a760dde-92d9-422c-8192-ffd19ec100b5-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0869-scaled.jpg,,FALSE, +N1,60737,sortie-6a760dde-92d9-422c-8192-ffd19ec100b5,https://biolit.fr/sorties/sortie-6a760dde-92d9-422c-8192-ffd19ec100b5/,ludovic,,02/02/2017,14.0000000,16.0000000,43.235764000000,5.36003700000,,plage de la bonne brise,51155,observation-6a760dde-92d9-422c-8192-ffd19ec100b5-7,https://biolit.fr/observations/observation-6a760dde-92d9-422c-8192-ffd19ec100b5-7/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0872-scaled.jpg,,TRUE, +N1,60737,sortie-6a760dde-92d9-422c-8192-ffd19ec100b5,https://biolit.fr/sorties/sortie-6a760dde-92d9-422c-8192-ffd19ec100b5/,ludovic,,02/02/2017,14.0000000,16.0000000,43.235764000000,5.36003700000,,plage de la bonne brise,51157,observation-6a760dde-92d9-422c-8192-ffd19ec100b5-8,https://biolit.fr/observations/observation-6a760dde-92d9-422c-8192-ffd19ec100b5-8/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0875-scaled.jpg,,TRUE, +N1,60737,sortie-6a760dde-92d9-422c-8192-ffd19ec100b5,https://biolit.fr/sorties/sortie-6a760dde-92d9-422c-8192-ffd19ec100b5/,ludovic,,02/02/2017,14.0000000,16.0000000,43.235764000000,5.36003700000,,plage de la bonne brise,51159,observation-6a760dde-92d9-422c-8192-ffd19ec100b5-9,https://biolit.fr/observations/observation-6a760dde-92d9-422c-8192-ffd19ec100b5-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0879-scaled.jpg,,FALSE, +N1,60737,sortie-6a760dde-92d9-422c-8192-ffd19ec100b5,https://biolit.fr/sorties/sortie-6a760dde-92d9-422c-8192-ffd19ec100b5/,ludovic,,02/02/2017,14.0000000,16.0000000,43.235764000000,5.36003700000,,plage de la bonne brise,51161,observation-6a760dde-92d9-422c-8192-ffd19ec100b5-10,https://biolit.fr/observations/observation-6a760dde-92d9-422c-8192-ffd19ec100b5-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0882-scaled.jpg,,FALSE, +N1,60737,sortie-6a760dde-92d9-422c-8192-ffd19ec100b5,https://biolit.fr/sorties/sortie-6a760dde-92d9-422c-8192-ffd19ec100b5/,ludovic,,02/02/2017,14.0000000,16.0000000,43.235764000000,5.36003700000,,plage de la bonne brise,51163,observation-6a760dde-92d9-422c-8192-ffd19ec100b5-11,https://biolit.fr/observations/observation-6a760dde-92d9-422c-8192-ffd19ec100b5-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0883-scaled.jpg,,FALSE, +N1,60738,sortie-bd7845da-489f-4641-ad7e-bc84ffa64507,https://biolit.fr/sorties/sortie-bd7845da-489f-4641-ad7e-bc84ffa64507/,NVanzu,,02/02/2017,14.0000000,16.0000000,43.236121000000,5.35995800000,,Plage de la bonne brise,51165,observation-bd7845da-489f-4641-ad7e-bc84ffa64507,https://biolit.fr/observations/observation-bd7845da-489f-4641-ad7e-bc84ffa64507/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0064_0-scaled.jpg,,TRUE, +N1,60738,sortie-bd7845da-489f-4641-ad7e-bc84ffa64507,https://biolit.fr/sorties/sortie-bd7845da-489f-4641-ad7e-bc84ffa64507/,NVanzu,,02/02/2017,14.0000000,16.0000000,43.236121000000,5.35995800000,,Plage de la bonne brise,51167,observation-bd7845da-489f-4641-ad7e-bc84ffa64507-2,https://biolit.fr/observations/observation-bd7845da-489f-4641-ad7e-bc84ffa64507-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0065-scaled.jpg,,FALSE, +N1,60738,sortie-bd7845da-489f-4641-ad7e-bc84ffa64507,https://biolit.fr/sorties/sortie-bd7845da-489f-4641-ad7e-bc84ffa64507/,NVanzu,,02/02/2017,14.0000000,16.0000000,43.236121000000,5.35995800000,,Plage de la bonne brise,51168,observation-bd7845da-489f-4641-ad7e-bc84ffa64507-3,https://biolit.fr/observations/observation-bd7845da-489f-4641-ad7e-bc84ffa64507-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0066-scaled.jpg,,FALSE, +N1,60738,sortie-bd7845da-489f-4641-ad7e-bc84ffa64507,https://biolit.fr/sorties/sortie-bd7845da-489f-4641-ad7e-bc84ffa64507/,NVanzu,,02/02/2017,14.0000000,16.0000000,43.236121000000,5.35995800000,,Plage de la bonne brise,51169,observation-bd7845da-489f-4641-ad7e-bc84ffa64507-4,https://biolit.fr/observations/observation-bd7845da-489f-4641-ad7e-bc84ffa64507-4/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0069-scaled.jpg,,TRUE, +N1,60738,sortie-bd7845da-489f-4641-ad7e-bc84ffa64507,https://biolit.fr/sorties/sortie-bd7845da-489f-4641-ad7e-bc84ffa64507/,NVanzu,,02/02/2017,14.0000000,16.0000000,43.236121000000,5.35995800000,,Plage de la bonne brise,51170,observation-bd7845da-489f-4641-ad7e-bc84ffa64507-5,https://biolit.fr/observations/observation-bd7845da-489f-4641-ad7e-bc84ffa64507-5/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0073-scaled.jpg,,TRUE, +N1,60738,sortie-bd7845da-489f-4641-ad7e-bc84ffa64507,https://biolit.fr/sorties/sortie-bd7845da-489f-4641-ad7e-bc84ffa64507/,NVanzu,,02/02/2017,14.0000000,16.0000000,43.236121000000,5.35995800000,,Plage de la bonne brise,51171,observation-bd7845da-489f-4641-ad7e-bc84ffa64507-6,https://biolit.fr/observations/observation-bd7845da-489f-4641-ad7e-bc84ffa64507-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0075-scaled.jpg,,FALSE, +N1,60738,sortie-bd7845da-489f-4641-ad7e-bc84ffa64507,https://biolit.fr/sorties/sortie-bd7845da-489f-4641-ad7e-bc84ffa64507/,NVanzu,,02/02/2017,14.0000000,16.0000000,43.236121000000,5.35995800000,,Plage de la bonne brise,51172,observation-bd7845da-489f-4641-ad7e-bc84ffa64507-7,https://biolit.fr/observations/observation-bd7845da-489f-4641-ad7e-bc84ffa64507-7/,Phymatolithon lenormandii,Algue encroûtante rouge de Lenormand,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0077-scaled.jpg,,TRUE, +N1,60738,sortie-bd7845da-489f-4641-ad7e-bc84ffa64507,https://biolit.fr/sorties/sortie-bd7845da-489f-4641-ad7e-bc84ffa64507/,NVanzu,,02/02/2017,14.0000000,16.0000000,43.236121000000,5.35995800000,,Plage de la bonne brise,51173,observation-bd7845da-489f-4641-ad7e-bc84ffa64507-8,https://biolit.fr/observations/observation-bd7845da-489f-4641-ad7e-bc84ffa64507-8/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0081_0-scaled.jpg,,TRUE, +N1,60738,sortie-bd7845da-489f-4641-ad7e-bc84ffa64507,https://biolit.fr/sorties/sortie-bd7845da-489f-4641-ad7e-bc84ffa64507/,NVanzu,,02/02/2017,14.0000000,16.0000000,43.236121000000,5.35995800000,,Plage de la bonne brise,51175,observation-bd7845da-489f-4641-ad7e-bc84ffa64507-9,https://biolit.fr/observations/observation-bd7845da-489f-4641-ad7e-bc84ffa64507-9/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0082-scaled.jpg,,TRUE, +N1,60738,sortie-bd7845da-489f-4641-ad7e-bc84ffa64507,https://biolit.fr/sorties/sortie-bd7845da-489f-4641-ad7e-bc84ffa64507/,NVanzu,,02/02/2017,14.0000000,16.0000000,43.236121000000,5.35995800000,,Plage de la bonne brise,51177,observation-bd7845da-489f-4641-ad7e-bc84ffa64507-10,https://biolit.fr/observations/observation-bd7845da-489f-4641-ad7e-bc84ffa64507-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0083-scaled.jpg,,FALSE, +N1,60738,sortie-bd7845da-489f-4641-ad7e-bc84ffa64507,https://biolit.fr/sorties/sortie-bd7845da-489f-4641-ad7e-bc84ffa64507/,NVanzu,,02/02/2017,14.0000000,16.0000000,43.236121000000,5.35995800000,,Plage de la bonne brise,51179,observation-bd7845da-489f-4641-ad7e-bc84ffa64507-11,https://biolit.fr/observations/observation-bd7845da-489f-4641-ad7e-bc84ffa64507-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0084-scaled.jpg,,FALSE, +N1,60739,sortie-882d069b-bf97-42a7-955f-dc1443ab0f65,https://biolit.fr/sorties/sortie-882d069b-bf97-42a7-955f-dc1443ab0f65/,ludovic,,02/02/2017,14.0000000,16.0000000,43.236166000000,5.359994000000,,plage de la bonne brise,51181,observation-882d069b-bf97-42a7-955f-dc1443ab0f65,https://biolit.fr/observations/observation-882d069b-bf97-42a7-955f-dc1443ab0f65/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0840-scaled.jpg,,FALSE, +N1,60739,sortie-882d069b-bf97-42a7-955f-dc1443ab0f65,https://biolit.fr/sorties/sortie-882d069b-bf97-42a7-955f-dc1443ab0f65/,ludovic,,02/02/2017,14.0000000,16.0000000,43.236166000000,5.359994000000,,plage de la bonne brise,51183,observation-882d069b-bf97-42a7-955f-dc1443ab0f65-2,https://biolit.fr/observations/observation-882d069b-bf97-42a7-955f-dc1443ab0f65-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0842-scaled.jpg,,FALSE, +N1,60739,sortie-882d069b-bf97-42a7-955f-dc1443ab0f65,https://biolit.fr/sorties/sortie-882d069b-bf97-42a7-955f-dc1443ab0f65/,ludovic,,02/02/2017,14.0000000,16.0000000,43.236166000000,5.359994000000,,plage de la bonne brise,51185,observation-882d069b-bf97-42a7-955f-dc1443ab0f65-3,https://biolit.fr/observations/observation-882d069b-bf97-42a7-955f-dc1443ab0f65-3/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0844-scaled.jpg,,TRUE, +N1,60739,sortie-882d069b-bf97-42a7-955f-dc1443ab0f65,https://biolit.fr/sorties/sortie-882d069b-bf97-42a7-955f-dc1443ab0f65/,ludovic,,02/02/2017,14.0000000,16.0000000,43.236166000000,5.359994000000,,plage de la bonne brise,51187,observation-882d069b-bf97-42a7-955f-dc1443ab0f65-4,https://biolit.fr/observations/observation-882d069b-bf97-42a7-955f-dc1443ab0f65-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0847-scaled.jpg,,FALSE, +N1,60739,sortie-882d069b-bf97-42a7-955f-dc1443ab0f65,https://biolit.fr/sorties/sortie-882d069b-bf97-42a7-955f-dc1443ab0f65/,ludovic,,02/02/2017,14.0000000,16.0000000,43.236166000000,5.359994000000,,plage de la bonne brise,51189,observation-882d069b-bf97-42a7-955f-dc1443ab0f65-5,https://biolit.fr/observations/observation-882d069b-bf97-42a7-955f-dc1443ab0f65-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0849-scaled.jpg,,FALSE, +N1,60739,sortie-882d069b-bf97-42a7-955f-dc1443ab0f65,https://biolit.fr/sorties/sortie-882d069b-bf97-42a7-955f-dc1443ab0f65/,ludovic,,02/02/2017,14.0000000,16.0000000,43.236166000000,5.359994000000,,plage de la bonne brise,51191,observation-882d069b-bf97-42a7-955f-dc1443ab0f65-6,https://biolit.fr/observations/observation-882d069b-bf97-42a7-955f-dc1443ab0f65-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0850-scaled.jpg,,FALSE, +N1,60739,sortie-882d069b-bf97-42a7-955f-dc1443ab0f65,https://biolit.fr/sorties/sortie-882d069b-bf97-42a7-955f-dc1443ab0f65/,ludovic,,02/02/2017,14.0000000,16.0000000,43.236166000000,5.359994000000,,plage de la bonne brise,51193,observation-882d069b-bf97-42a7-955f-dc1443ab0f65-7,https://biolit.fr/observations/observation-882d069b-bf97-42a7-955f-dc1443ab0f65-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0853-scaled.jpg,,FALSE, +N1,60739,sortie-882d069b-bf97-42a7-955f-dc1443ab0f65,https://biolit.fr/sorties/sortie-882d069b-bf97-42a7-955f-dc1443ab0f65/,ludovic,,02/02/2017,14.0000000,16.0000000,43.236166000000,5.359994000000,,plage de la bonne brise,51195,observation-882d069b-bf97-42a7-955f-dc1443ab0f65-8,https://biolit.fr/observations/observation-882d069b-bf97-42a7-955f-dc1443ab0f65-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0854-scaled.jpg,,FALSE, +N1,60739,sortie-882d069b-bf97-42a7-955f-dc1443ab0f65,https://biolit.fr/sorties/sortie-882d069b-bf97-42a7-955f-dc1443ab0f65/,ludovic,,02/02/2017,14.0000000,16.0000000,43.236166000000,5.359994000000,,plage de la bonne brise,51197,observation-882d069b-bf97-42a7-955f-dc1443ab0f65-9,https://biolit.fr/observations/observation-882d069b-bf97-42a7-955f-dc1443ab0f65-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0855-scaled.jpg,,FALSE, +N1,60739,sortie-882d069b-bf97-42a7-955f-dc1443ab0f65,https://biolit.fr/sorties/sortie-882d069b-bf97-42a7-955f-dc1443ab0f65/,ludovic,,02/02/2017,14.0000000,16.0000000,43.236166000000,5.359994000000,,plage de la bonne brise,51199,observation-882d069b-bf97-42a7-955f-dc1443ab0f65-10,https://biolit.fr/observations/observation-882d069b-bf97-42a7-955f-dc1443ab0f65-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0856-scaled.jpg,,FALSE, +N1,60739,sortie-882d069b-bf97-42a7-955f-dc1443ab0f65,https://biolit.fr/sorties/sortie-882d069b-bf97-42a7-955f-dc1443ab0f65/,ludovic,,02/02/2017,14.0000000,16.0000000,43.236166000000,5.359994000000,,plage de la bonne brise,51201,observation-882d069b-bf97-42a7-955f-dc1443ab0f65-11,https://biolit.fr/observations/observation-882d069b-bf97-42a7-955f-dc1443ab0f65-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0857-scaled.jpg,,FALSE, +N1,60740,sortie-0673fb2c-0ead-4b00-bbd5-41b83504ae1c,https://biolit.fr/sorties/sortie-0673fb2c-0ead-4b00-bbd5-41b83504ae1c/,Bertin Pauline,,1/16/2017 0:00,9.0000000,11.0000000,43.273082000000,5.362167000000,,"Marseille, plage du prophete",51203,observation-0673fb2c-0ead-4b00-bbd5-41b83504ae1c,https://biolit.fr/observations/observation-0673fb2c-0ead-4b00-bbd5-41b83504ae1c/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0830_2-scaled.jpg,,FALSE, +N1,60741,sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e,https://biolit.fr/sorties/sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e/,IAHMANE,,1/16/2017 0:00,8.0000000,12.0000000,43.273216000000,5.362271000000,,Marseille,51205,observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e,https://biolit.fr/observations/observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170116_090528-scaled.jpg,,FALSE, +N1,60741,sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e,https://biolit.fr/sorties/sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e/,IAHMANE,,1/16/2017 0:00,8.0000000,12.0000000,43.273216000000,5.362271000000,,Marseille,51207,observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-2,https://biolit.fr/observations/observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170116_090402-scaled.jpg,,FALSE, +N1,60741,sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e,https://biolit.fr/sorties/sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e/,IAHMANE,,1/16/2017 0:00,8.0000000,12.0000000,43.273216000000,5.362271000000,,Marseille,51209,observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-3,https://biolit.fr/observations/observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170116_094429-scaled.jpg,,FALSE, +N1,60741,sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e,https://biolit.fr/sorties/sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e/,IAHMANE,,1/16/2017 0:00,8.0000000,12.0000000,43.273216000000,5.362271000000,,Marseille,51211,observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-4,https://biolit.fr/observations/observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170116_091232-scaled.jpg,,FALSE, +N1,60741,sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e,https://biolit.fr/sorties/sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e/,IAHMANE,,1/16/2017 0:00,8.0000000,12.0000000,43.273216000000,5.362271000000,,Marseille,51213,observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-5,https://biolit.fr/observations/observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170116_094445-scaled.jpg,,FALSE, +N1,60741,sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e,https://biolit.fr/sorties/sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e/,IAHMANE,,1/16/2017 0:00,8.0000000,12.0000000,43.273216000000,5.362271000000,,Marseille,51215,observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-6,https://biolit.fr/observations/observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170116_094438-scaled.jpg,,FALSE, +N1,60741,sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e,https://biolit.fr/sorties/sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e/,IAHMANE,,1/16/2017 0:00,8.0000000,12.0000000,43.273216000000,5.362271000000,,Marseille,51217,observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-7,https://biolit.fr/observations/observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170116_090246-scaled.jpg,,FALSE, +N1,60741,sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e,https://biolit.fr/sorties/sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e/,IAHMANE,,1/16/2017 0:00,8.0000000,12.0000000,43.273216000000,5.362271000000,,Marseille,51219,observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-8,https://biolit.fr/observations/observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170116_090647-scaled.jpg,,FALSE, +N1,60741,sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e,https://biolit.fr/sorties/sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e/,IAHMANE,,1/16/2017 0:00,8.0000000,12.0000000,43.273216000000,5.362271000000,,Marseille,51221,observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-9,https://biolit.fr/observations/observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170116_092221-scaled.jpg,,FALSE, +N1,60741,sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e,https://biolit.fr/sorties/sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e/,IAHMANE,,1/16/2017 0:00,8.0000000,12.0000000,43.273216000000,5.362271000000,,Marseille,51223,observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-10,https://biolit.fr/observations/observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-10/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4173[1].JPG,,TRUE, +N1,60741,sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e,https://biolit.fr/sorties/sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e/,IAHMANE,,1/16/2017 0:00,8.0000000,12.0000000,43.273216000000,5.362271000000,,Marseille,51225,observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-11,https://biolit.fr/observations/observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4165[1]-rotated.jpg,,FALSE, +N1,60741,sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e,https://biolit.fr/sorties/sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e/,IAHMANE,,1/16/2017 0:00,8.0000000,12.0000000,43.273216000000,5.362271000000,,Marseille,51227,observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-12,https://biolit.fr/observations/observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4162[1]-rotated.jpg,,FALSE, +N1,60741,sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e,https://biolit.fr/sorties/sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e/,IAHMANE,,1/16/2017 0:00,8.0000000,12.0000000,43.273216000000,5.362271000000,,Marseille,51229,observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-13,https://biolit.fr/observations/observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4169[1]-rotated.jpg,,FALSE, +N1,60741,sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e,https://biolit.fr/sorties/sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e/,IAHMANE,,1/16/2017 0:00,8.0000000,12.0000000,43.273216000000,5.362271000000,,Marseille,51231,observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-14,https://biolit.fr/observations/observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-14/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4174[1].JPG,,TRUE, +N1,60741,sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e,https://biolit.fr/sorties/sortie-1aafe66c-13d0-47c9-8fd5-1a4a185b680e/,IAHMANE,,1/16/2017 0:00,8.0000000,12.0000000,43.273216000000,5.362271000000,,Marseille,51233,observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-15,https://biolit.fr/observations/observation-1aafe66c-13d0-47c9-8fd5-1a4a185b680e-15/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4161[1].JPG,,TRUE, +N1,60742,sortie-4d94938e-a602-4802-b8a7-ab3a550a8e03,https://biolit.fr/sorties/sortie-4d94938e-a602-4802-b8a7-ab3a550a8e03/,Bertin Pauline,,1/16/2017 0:00,8.0000000,12.0000000,43.272927000000,5.362175000000,,"Marseille, plage du prophete",51235,observation-4d94938e-a602-4802-b8a7-ab3a550a8e03,https://biolit.fr/observations/observation-4d94938e-a602-4802-b8a7-ab3a550a8e03/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0807_0-scaled.jpg,,FALSE, +N1,60743,sortie-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b,https://biolit.fr/sorties/sortie-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b/,M R JC,,1/16/2017 0:00,8.0000000,12.0000000,43.273170000000,5.362273000000,,La plage du Prophète,51237,observation-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b,https://biolit.fr/observations/observation-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0813-scaled.jpg,,FALSE, +N1,60743,sortie-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b,https://biolit.fr/sorties/sortie-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b/,M R JC,,1/16/2017 0:00,8.0000000,12.0000000,43.273170000000,5.362273000000,,La plage du Prophète,51239,observation-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b-2,https://biolit.fr/observations/observation-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0833-scaled.jpg,,FALSE, +N1,60743,sortie-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b,https://biolit.fr/sorties/sortie-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b/,M R JC,,1/16/2017 0:00,8.0000000,12.0000000,43.273170000000,5.362273000000,,La plage du Prophète,51241,observation-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b-3,https://biolit.fr/observations/observation-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1654[1]-scaled.jpg,,FALSE, +N1,60743,sortie-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b,https://biolit.fr/sorties/sortie-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b/,M R JC,,1/16/2017 0:00,8.0000000,12.0000000,43.273170000000,5.362273000000,,La plage du Prophète,51243,observation-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b-4,https://biolit.fr/observations/observation-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b-4/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1656[1]-scaled.jpg,,TRUE, +N1,60743,sortie-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b,https://biolit.fr/sorties/sortie-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b/,M R JC,,1/16/2017 0:00,8.0000000,12.0000000,43.273170000000,5.362273000000,,La plage du Prophète,51245,observation-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b-5,https://biolit.fr/observations/observation-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1658[1]-scaled.jpg,,FALSE, +N1,60743,sortie-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b,https://biolit.fr/sorties/sortie-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b/,M R JC,,1/16/2017 0:00,8.0000000,12.0000000,43.273170000000,5.362273000000,,La plage du Prophète,51247,observation-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b-6,https://biolit.fr/observations/observation-39cfbbfa-8bd6-4d9f-a698-6759f6c6ca2b-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1659[1]-scaled.jpg,,FALSE, +N1,60744,sortie-d9110d77-a7b0-49b8-99b7-12840f54c816,https://biolit.fr/sorties/sortie-d9110d77-a7b0-49b8-99b7-12840f54c816/,souaada,,1/16/2017 0:00,9.0000000,12.0000000,43.272987000000,5.362021000000,,plage du prophète,51249,observation-d9110d77-a7b0-49b8-99b7-12840f54c816,https://biolit.fr/observations/observation-d9110d77-a7b0-49b8-99b7-12840f54c816/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1899-scaled.jpg,,FALSE, +N1,60744,sortie-d9110d77-a7b0-49b8-99b7-12840f54c816,https://biolit.fr/sorties/sortie-d9110d77-a7b0-49b8-99b7-12840f54c816/,souaada,,1/16/2017 0:00,9.0000000,12.0000000,43.272987000000,5.362021000000,,plage du prophète,51251,observation-d9110d77-a7b0-49b8-99b7-12840f54c816-2,https://biolit.fr/observations/observation-d9110d77-a7b0-49b8-99b7-12840f54c816-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1908-scaled.jpg,,TRUE, +N1,60744,sortie-d9110d77-a7b0-49b8-99b7-12840f54c816,https://biolit.fr/sorties/sortie-d9110d77-a7b0-49b8-99b7-12840f54c816/,souaada,,1/16/2017 0:00,9.0000000,12.0000000,43.272987000000,5.362021000000,,plage du prophète,51253,observation-d9110d77-a7b0-49b8-99b7-12840f54c816-3,https://biolit.fr/observations/observation-d9110d77-a7b0-49b8-99b7-12840f54c816-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1913-scaled.jpg,,FALSE, +N1,60745,sortie-53208aed-9155-459b-92f2-baab44224ec1,https://biolit.fr/sorties/sortie-53208aed-9155-459b-92f2-baab44224ec1/,Sabrinice13,,1/16/2017 0:00,8.0000000,11.0:45,43.273083000000,5.362148000000,,Plage du Prophète (Marseille),51255,observation-53208aed-9155-459b-92f2-baab44224ec1,https://biolit.fr/observations/observation-53208aed-9155-459b-92f2-baab44224ec1/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1897-scaled.jpg,,TRUE, +N1,60745,sortie-53208aed-9155-459b-92f2-baab44224ec1,https://biolit.fr/sorties/sortie-53208aed-9155-459b-92f2-baab44224ec1/,Sabrinice13,,1/16/2017 0:00,8.0000000,11.0:45,43.273083000000,5.362148000000,,Plage du Prophète (Marseille),51257,observation-53208aed-9155-459b-92f2-baab44224ec1-2,https://biolit.fr/observations/observation-53208aed-9155-459b-92f2-baab44224ec1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_1901-scaled.jpg,,FALSE, +N1,60746,sortie-c3fef71c-70d1-4e73-a683-95e7dfd97c2f,https://biolit.fr/sorties/sortie-c3fef71c-70d1-4e73-a683-95e7dfd97c2f/,Coline Mathilde Alicia,,1/16/2017 0:00,9.000005,11.000005,43.273169000000,5.36229800000,,plage du prophete,51259,observation-c3fef71c-70d1-4e73-a683-95e7dfd97c2f,https://biolit.fr/observations/observation-c3fef71c-70d1-4e73-a683-95e7dfd97c2f/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_6657_0-rotated.jpg,,FALSE, +N1,60747,sortie-5b03c2ab-700d-41ce-ae36-3a9a6f2a4cc9,https://biolit.fr/sorties/sortie-5b03c2ab-700d-41ce-ae36-3a9a6f2a4cc9/,Lucie Roger,,1/16/2017 0:00,8.0000000,10.0000000,43.295042000000,5.364272000000,,"Plage du Prophète, Marseille ",51261,observation-5b03c2ab-700d-41ce-ae36-3a9a6f2a4cc9,https://biolit.fr/observations/observation-5b03c2ab-700d-41ce-ae36-3a9a6f2a4cc9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0013_0-scaled.jpg,,FALSE, +N1,60747,sortie-5b03c2ab-700d-41ce-ae36-3a9a6f2a4cc9,https://biolit.fr/sorties/sortie-5b03c2ab-700d-41ce-ae36-3a9a6f2a4cc9/,Lucie Roger,,1/16/2017 0:00,8.0000000,10.0000000,43.295042000000,5.364272000000,,"Plage du Prophète, Marseille ",51263,observation-5b03c2ab-700d-41ce-ae36-3a9a6f2a4cc9-2,https://biolit.fr/observations/observation-5b03c2ab-700d-41ce-ae36-3a9a6f2a4cc9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5616-scaled.jpg,,FALSE, +N1,60747,sortie-5b03c2ab-700d-41ce-ae36-3a9a6f2a4cc9,https://biolit.fr/sorties/sortie-5b03c2ab-700d-41ce-ae36-3a9a6f2a4cc9/,Lucie Roger,,1/16/2017 0:00,8.0000000,10.0000000,43.295042000000,5.364272000000,,"Plage du Prophète, Marseille ",51265,observation-5b03c2ab-700d-41ce-ae36-3a9a6f2a4cc9-3,https://biolit.fr/observations/observation-5b03c2ab-700d-41ce-ae36-3a9a6f2a4cc9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0483-scaled.jpg,,FALSE, +N1,60748,sortie-1ac05e67-9f85-410f-83db-9da0666f3e44,https://biolit.fr/sorties/sortie-1ac05e67-9f85-410f-83db-9da0666f3e44/,Bertin Pauline,,1/31/2017 0:00,8.0000000,10.0000000,43.273013000000,5.36222100000,,"Marseille, plage du prophete",51267,observation-1ac05e67-9f85-410f-83db-9da0666f3e44,https://biolit.fr/observations/observation-1ac05e67-9f85-410f-83db-9da0666f3e44/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0807-scaled.jpg,,FALSE, +N1,60748,sortie-1ac05e67-9f85-410f-83db-9da0666f3e44,https://biolit.fr/sorties/sortie-1ac05e67-9f85-410f-83db-9da0666f3e44/,Bertin Pauline,,1/31/2017 0:00,8.0000000,10.0000000,43.273013000000,5.36222100000,,"Marseille, plage du prophete",51269,observation-1ac05e67-9f85-410f-83db-9da0666f3e44-2,https://biolit.fr/observations/observation-1ac05e67-9f85-410f-83db-9da0666f3e44-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0800_2-scaled.jpg,,FALSE, +N1,60749,sortie-d974d999-22fb-414f-93df-2ba053c3fc51,https://biolit.fr/sorties/sortie-d974d999-22fb-414f-93df-2ba053c3fc51/,souaada,,1/16/2017 0:00,9.0000000,10.0000000,43.294705000000,5.383195000000,,plage du prophete,51271,observation-d974d999-22fb-414f-93df-2ba053c3fc51,https://biolit.fr/observations/observation-d974d999-22fb-414f-93df-2ba053c3fc51/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0020-scaled.jpg,,FALSE, +N1,60749,sortie-d974d999-22fb-414f-93df-2ba053c3fc51,https://biolit.fr/sorties/sortie-d974d999-22fb-414f-93df-2ba053c3fc51/,souaada,,1/16/2017 0:00,9.0000000,10.0000000,43.294705000000,5.383195000000,,plage du prophete,51273,observation-d974d999-22fb-414f-93df-2ba053c3fc51-2,https://biolit.fr/observations/observation-d974d999-22fb-414f-93df-2ba053c3fc51-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0021-scaled.jpg,,FALSE, +N1,60751,sortie-67c177ed-8963-4dc0-a3f0-55ecdcc63e9f,https://biolit.fr/sorties/sortie-67c177ed-8963-4dc0-a3f0-55ecdcc63e9f/,Coraliesc,,1/16/2017 0:00,9.0:55,10.0000000,43.273120000000,5.362273000000,,Plage du Prophete,51282,observation-67c177ed-8963-4dc0-a3f0-55ecdcc63e9f,https://biolit.fr/observations/observation-67c177ed-8963-4dc0-a3f0-55ecdcc63e9f/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0806-scaled.jpg,,FALSE, +N1,60752,sortie-462ba581-2d32-49e3-bb1f-1329058ea778,https://biolit.fr/sorties/sortie-462ba581-2d32-49e3-bb1f-1329058ea778/,moufi,,1/16/2017 0:00,8.0000000,12.0000000,43.273001000000,5.362120000000,,Plage du Prophete,51284,observation-462ba581-2d32-49e3-bb1f-1329058ea778,https://biolit.fr/observations/observation-462ba581-2d32-49e3-bb1f-1329058ea778/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0824-scaled.jpg,,FALSE, +N1,60753,sortie-9cb4d3b6-c96d-488d-9e0e-b7abb41718cc,https://biolit.fr/sorties/sortie-9cb4d3b6-c96d-488d-9e0e-b7abb41718cc/,Yass'Air,,1/16/2017 0:00,9.0000000,11.0000000,43.272822000000,5.362260000000,,"Plage du prophete,marseille",51286,observation-9cb4d3b6-c96d-488d-9e0e-b7abb41718cc,https://biolit.fr/observations/observation-9cb4d3b6-c96d-488d-9e0e-b7abb41718cc/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0018-scaled.jpg,,FALSE, +N1,60753,sortie-9cb4d3b6-c96d-488d-9e0e-b7abb41718cc,https://biolit.fr/sorties/sortie-9cb4d3b6-c96d-488d-9e0e-b7abb41718cc/,Yass'Air,,1/16/2017 0:00,9.0000000,11.0000000,43.272822000000,5.362260000000,,"Plage du prophete,marseille",51288,observation-9cb4d3b6-c96d-488d-9e0e-b7abb41718cc-2,https://biolit.fr/observations/observation-9cb4d3b6-c96d-488d-9e0e-b7abb41718cc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0019-scaled.jpg,,FALSE, +N1,60754,sortie-9f35d185-74cd-479d-a434-fc0a8a541f82,https://biolit.fr/sorties/sortie-9f35d185-74cd-479d-a434-fc0a8a541f82/,Phil,,1/13/2017 0:00,12.0000000,12.0:45,47.796235000000,-4.179362000000,,Loctudy - Finistère,51290,observation-9f35d185-74cd-479d-a434-fc0a8a541f82,https://biolit.fr/observations/observation-9f35d185-74cd-479d-a434-fc0a8a541f82/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050692.JPG,,FALSE, +N1,60754,sortie-9f35d185-74cd-479d-a434-fc0a8a541f82,https://biolit.fr/sorties/sortie-9f35d185-74cd-479d-a434-fc0a8a541f82/,Phil,,1/13/2017 0:00,12.0000000,12.0:45,47.796235000000,-4.179362000000,,Loctudy - Finistère,51292,observation-9f35d185-74cd-479d-a434-fc0a8a541f82-2,https://biolit.fr/observations/observation-9f35d185-74cd-479d-a434-fc0a8a541f82-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050687.JPG,,FALSE, +N1,60754,sortie-9f35d185-74cd-479d-a434-fc0a8a541f82,https://biolit.fr/sorties/sortie-9f35d185-74cd-479d-a434-fc0a8a541f82/,Phil,,1/13/2017 0:00,12.0000000,12.0:45,47.796235000000,-4.179362000000,,Loctudy - Finistère,51294,observation-9f35d185-74cd-479d-a434-fc0a8a541f82-3,https://biolit.fr/observations/observation-9f35d185-74cd-479d-a434-fc0a8a541f82-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050690.JPG,,FALSE, +N1,60755,sortie-e7b5e9af-fa25-41a2-a548-e4b2495ee6a0,https://biolit.fr/sorties/sortie-e7b5e9af-fa25-41a2-a548-e4b2495ee6a0/,Phil,,1/28/2017 0:00,12.0:25,12.0:35,48.694419000000,-4.0855270000,,Sibiril - Finistère,51296,observation-e7b5e9af-fa25-41a2-a548-e4b2495ee6a0,https://biolit.fr/observations/observation-e7b5e9af-fa25-41a2-a548-e4b2495ee6a0/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170128_123231.jpg,,FALSE, +N1,60755,sortie-e7b5e9af-fa25-41a2-a548-e4b2495ee6a0,https://biolit.fr/sorties/sortie-e7b5e9af-fa25-41a2-a548-e4b2495ee6a0/,Phil,,1/28/2017 0:00,12.0:25,12.0:35,48.694419000000,-4.0855270000,,Sibiril - Finistère,51298,observation-e7b5e9af-fa25-41a2-a548-e4b2495ee6a0-2,https://biolit.fr/observations/observation-e7b5e9af-fa25-41a2-a548-e4b2495ee6a0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170128_123444.jpg,,FALSE, +N1,60755,sortie-e7b5e9af-fa25-41a2-a548-e4b2495ee6a0,https://biolit.fr/sorties/sortie-e7b5e9af-fa25-41a2-a548-e4b2495ee6a0/,Phil,,1/28/2017 0:00,12.0:25,12.0:35,48.694419000000,-4.0855270000,,Sibiril - Finistère,51300,observation-e7b5e9af-fa25-41a2-a548-e4b2495ee6a0-3,https://biolit.fr/observations/observation-e7b5e9af-fa25-41a2-a548-e4b2495ee6a0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170128_122547.jpg,,FALSE, +N1,60755,sortie-e7b5e9af-fa25-41a2-a548-e4b2495ee6a0,https://biolit.fr/sorties/sortie-e7b5e9af-fa25-41a2-a548-e4b2495ee6a0/,Phil,,1/28/2017 0:00,12.0:25,12.0:35,48.694419000000,-4.0855270000,,Sibiril - Finistère,51302,observation-e7b5e9af-fa25-41a2-a548-e4b2495ee6a0-4,https://biolit.fr/observations/observation-e7b5e9af-fa25-41a2-a548-e4b2495ee6a0-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170128_123609.jpg,,TRUE, +N1,60756,sortie-43855bf1-18cc-400c-a3d2-ca9bf7b620b2,https://biolit.fr/sorties/sortie-43855bf1-18cc-400c-a3d2-ca9bf7b620b2/,Phil,,1/13/2017 0:00,12.0000000,12.0:45,47.797059000000,-4.177079000000,,Loctudy - Finistère,51304,observation-43855bf1-18cc-400c-a3d2-ca9bf7b620b2,https://biolit.fr/observations/observation-43855bf1-18cc-400c-a3d2-ca9bf7b620b2/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050675.JPG,,TRUE, +N1,60756,sortie-43855bf1-18cc-400c-a3d2-ca9bf7b620b2,https://biolit.fr/sorties/sortie-43855bf1-18cc-400c-a3d2-ca9bf7b620b2/,Phil,,1/13/2017 0:00,12.0000000,12.0:45,47.797059000000,-4.177079000000,,Loctudy - Finistère,51306,observation-43855bf1-18cc-400c-a3d2-ca9bf7b620b2-2,https://biolit.fr/observations/observation-43855bf1-18cc-400c-a3d2-ca9bf7b620b2-2/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1050679.JPG,,TRUE, +N1,60756,sortie-43855bf1-18cc-400c-a3d2-ca9bf7b620b2,https://biolit.fr/sorties/sortie-43855bf1-18cc-400c-a3d2-ca9bf7b620b2/,Phil,,1/13/2017 0:00,12.0000000,12.0:45,47.797059000000,-4.177079000000,,Loctudy - Finistère,51308,observation-43855bf1-18cc-400c-a3d2-ca9bf7b620b2-3,https://biolit.fr/observations/observation-43855bf1-18cc-400c-a3d2-ca9bf7b620b2-3/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/P1050681.JPG,,TRUE, +N1,60756,sortie-43855bf1-18cc-400c-a3d2-ca9bf7b620b2,https://biolit.fr/sorties/sortie-43855bf1-18cc-400c-a3d2-ca9bf7b620b2/,Phil,,1/13/2017 0:00,12.0000000,12.0:45,47.797059000000,-4.177079000000,,Loctudy - Finistère,51310,observation-43855bf1-18cc-400c-a3d2-ca9bf7b620b2-4,https://biolit.fr/observations/observation-43855bf1-18cc-400c-a3d2-ca9bf7b620b2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050683.JPG,,FALSE, +N1,60756,sortie-43855bf1-18cc-400c-a3d2-ca9bf7b620b2,https://biolit.fr/sorties/sortie-43855bf1-18cc-400c-a3d2-ca9bf7b620b2/,Phil,,1/13/2017 0:00,12.0000000,12.0:45,47.797059000000,-4.177079000000,,Loctudy - Finistère,51312,observation-43855bf1-18cc-400c-a3d2-ca9bf7b620b2-5,https://biolit.fr/observations/observation-43855bf1-18cc-400c-a3d2-ca9bf7b620b2-5/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1050684.JPG,,TRUE, +N1,60757,sortie-75346654-82bb-459c-b7de-a1ae56c4e38f,https://biolit.fr/sorties/sortie-75346654-82bb-459c-b7de-a1ae56c4e38f/,CPIE Iles de Lérins et Pays d'Azur,,08/04/2016,11.0000000,15.0000000,43.518079000000,7.068653000000,,Pointe de la Convention : Côte nord Ile Sainte-Marguerite,51314,observation-75346654-82bb-459c-b7de-a1ae56c4e38f,https://biolit.fr/observations/observation-75346654-82bb-459c-b7de-a1ae56c4e38f/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0703.JPG,,FALSE, +N1,60757,sortie-75346654-82bb-459c-b7de-a1ae56c4e38f,https://biolit.fr/sorties/sortie-75346654-82bb-459c-b7de-a1ae56c4e38f/,CPIE Iles de Lérins et Pays d'Azur,,08/04/2016,11.0000000,15.0000000,43.518079000000,7.068653000000,,Pointe de la Convention : Côte nord Ile Sainte-Marguerite,51316,observation-75346654-82bb-459c-b7de-a1ae56c4e38f-2,https://biolit.fr/observations/observation-75346654-82bb-459c-b7de-a1ae56c4e38f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0706.JPG,,FALSE, +N1,60757,sortie-75346654-82bb-459c-b7de-a1ae56c4e38f,https://biolit.fr/sorties/sortie-75346654-82bb-459c-b7de-a1ae56c4e38f/,CPIE Iles de Lérins et Pays d'Azur,,08/04/2016,11.0000000,15.0000000,43.518079000000,7.068653000000,,Pointe de la Convention : Côte nord Ile Sainte-Marguerite,51318,observation-75346654-82bb-459c-b7de-a1ae56c4e38f-3,https://biolit.fr/observations/observation-75346654-82bb-459c-b7de-a1ae56c4e38f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0708.JPG,,FALSE, +N1,60757,sortie-75346654-82bb-459c-b7de-a1ae56c4e38f,https://biolit.fr/sorties/sortie-75346654-82bb-459c-b7de-a1ae56c4e38f/,CPIE Iles de Lérins et Pays d'Azur,,08/04/2016,11.0000000,15.0000000,43.518079000000,7.068653000000,,Pointe de la Convention : Côte nord Ile Sainte-Marguerite,51320,observation-75346654-82bb-459c-b7de-a1ae56c4e38f-4,https://biolit.fr/observations/observation-75346654-82bb-459c-b7de-a1ae56c4e38f-4/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0713.JPG,,TRUE, +N1,60757,sortie-75346654-82bb-459c-b7de-a1ae56c4e38f,https://biolit.fr/sorties/sortie-75346654-82bb-459c-b7de-a1ae56c4e38f/,CPIE Iles de Lérins et Pays d'Azur,,08/04/2016,11.0000000,15.0000000,43.518079000000,7.068653000000,,Pointe de la Convention : Côte nord Ile Sainte-Marguerite,51322,observation-75346654-82bb-459c-b7de-a1ae56c4e38f-5,https://biolit.fr/observations/observation-75346654-82bb-459c-b7de-a1ae56c4e38f-5/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0711.JPG,,TRUE, +N1,60757,sortie-75346654-82bb-459c-b7de-a1ae56c4e38f,https://biolit.fr/sorties/sortie-75346654-82bb-459c-b7de-a1ae56c4e38f/,CPIE Iles de Lérins et Pays d'Azur,,08/04/2016,11.0000000,15.0000000,43.518079000000,7.068653000000,,Pointe de la Convention : Côte nord Ile Sainte-Marguerite,51324,observation-75346654-82bb-459c-b7de-a1ae56c4e38f-6,https://biolit.fr/observations/observation-75346654-82bb-459c-b7de-a1ae56c4e38f-6/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0716.JPG,,TRUE, +N1,60757,sortie-75346654-82bb-459c-b7de-a1ae56c4e38f,https://biolit.fr/sorties/sortie-75346654-82bb-459c-b7de-a1ae56c4e38f/,CPIE Iles de Lérins et Pays d'Azur,,08/04/2016,11.0000000,15.0000000,43.518079000000,7.068653000000,,Pointe de la Convention : Côte nord Ile Sainte-Marguerite,51326,observation-75346654-82bb-459c-b7de-a1ae56c4e38f-7,https://biolit.fr/observations/observation-75346654-82bb-459c-b7de-a1ae56c4e38f-7/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0717.JPG,,TRUE, +N1,60757,sortie-75346654-82bb-459c-b7de-a1ae56c4e38f,https://biolit.fr/sorties/sortie-75346654-82bb-459c-b7de-a1ae56c4e38f/,CPIE Iles de Lérins et Pays d'Azur,,08/04/2016,11.0000000,15.0000000,43.518079000000,7.068653000000,,Pointe de la Convention : Côte nord Ile Sainte-Marguerite,51328,observation-75346654-82bb-459c-b7de-a1ae56c4e38f-8,https://biolit.fr/observations/observation-75346654-82bb-459c-b7de-a1ae56c4e38f-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0719.JPG,,FALSE, +N1,60757,sortie-75346654-82bb-459c-b7de-a1ae56c4e38f,https://biolit.fr/sorties/sortie-75346654-82bb-459c-b7de-a1ae56c4e38f/,CPIE Iles de Lérins et Pays d'Azur,,08/04/2016,11.0000000,15.0000000,43.518079000000,7.068653000000,,Pointe de la Convention : Côte nord Ile Sainte-Marguerite,51330,observation-75346654-82bb-459c-b7de-a1ae56c4e38f-9,https://biolit.fr/observations/observation-75346654-82bb-459c-b7de-a1ae56c4e38f-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0721.JPG,,FALSE, +N1,60757,sortie-75346654-82bb-459c-b7de-a1ae56c4e38f,https://biolit.fr/sorties/sortie-75346654-82bb-459c-b7de-a1ae56c4e38f/,CPIE Iles de Lérins et Pays d'Azur,,08/04/2016,11.0000000,15.0000000,43.518079000000,7.068653000000,,Pointe de la Convention : Côte nord Ile Sainte-Marguerite,51332,observation-75346654-82bb-459c-b7de-a1ae56c4e38f-10,https://biolit.fr/observations/observation-75346654-82bb-459c-b7de-a1ae56c4e38f-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0720.JPG,,FALSE, +N1,60758,sortie-9dd9c382-44e3-4f91-bf86-f40ea2e48eac,https://biolit.fr/sorties/sortie-9dd9c382-44e3-4f91-bf86-f40ea2e48eac/,CPIE Iles de Lérins et Pays d'Azur,,08/09/2016,11.0000000,15.0000000,43.521219000000,7.032091000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",51334,observation-9dd9c382-44e3-4f91-bf86-f40ea2e48eac,https://biolit.fr/observations/observation-9dd9c382-44e3-4f91-bf86-f40ea2e48eac/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0730.JPG,,TRUE, +N1,60758,sortie-9dd9c382-44e3-4f91-bf86-f40ea2e48eac,https://biolit.fr/sorties/sortie-9dd9c382-44e3-4f91-bf86-f40ea2e48eac/,CPIE Iles de Lérins et Pays d'Azur,,08/09/2016,11.0000000,15.0000000,43.521219000000,7.032091000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",51336,observation-9dd9c382-44e3-4f91-bf86-f40ea2e48eac-2,https://biolit.fr/observations/observation-9dd9c382-44e3-4f91-bf86-f40ea2e48eac-2/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0729.JPG,,TRUE, +N1,60758,sortie-9dd9c382-44e3-4f91-bf86-f40ea2e48eac,https://biolit.fr/sorties/sortie-9dd9c382-44e3-4f91-bf86-f40ea2e48eac/,CPIE Iles de Lérins et Pays d'Azur,,08/09/2016,11.0000000,15.0000000,43.521219000000,7.032091000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",51338,observation-9dd9c382-44e3-4f91-bf86-f40ea2e48eac-3,https://biolit.fr/observations/observation-9dd9c382-44e3-4f91-bf86-f40ea2e48eac-3/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0733.JPG,,TRUE, +N1,60758,sortie-9dd9c382-44e3-4f91-bf86-f40ea2e48eac,https://biolit.fr/sorties/sortie-9dd9c382-44e3-4f91-bf86-f40ea2e48eac/,CPIE Iles de Lérins et Pays d'Azur,,08/09/2016,11.0000000,15.0000000,43.521219000000,7.032091000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",51340,observation-9dd9c382-44e3-4f91-bf86-f40ea2e48eac-4,https://biolit.fr/observations/observation-9dd9c382-44e3-4f91-bf86-f40ea2e48eac-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0737.JPG,,FALSE, +N1,60758,sortie-9dd9c382-44e3-4f91-bf86-f40ea2e48eac,https://biolit.fr/sorties/sortie-9dd9c382-44e3-4f91-bf86-f40ea2e48eac/,CPIE Iles de Lérins et Pays d'Azur,,08/09/2016,11.0000000,15.0000000,43.521219000000,7.032091000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",51342,observation-9dd9c382-44e3-4f91-bf86-f40ea2e48eac-5,https://biolit.fr/observations/observation-9dd9c382-44e3-4f91-bf86-f40ea2e48eac-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0746.JPG,,FALSE, +N1,60759,sortie-413e06e5-2ace-42ce-a1d5-42e9e3c708de,https://biolit.fr/sorties/sortie-413e06e5-2ace-42ce-a1d5-42e9e3c708de/,CPIE Iles de Lérins et Pays d'Azur,,08/11/2016,11.0000000,15.0000000,43.521246000000,7.032006000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",51344,observation-413e06e5-2ace-42ce-a1d5-42e9e3c708de,https://biolit.fr/observations/observation-413e06e5-2ace-42ce-a1d5-42e9e3c708de/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0763.JPG,,TRUE, +N1,60759,sortie-413e06e5-2ace-42ce-a1d5-42e9e3c708de,https://biolit.fr/sorties/sortie-413e06e5-2ace-42ce-a1d5-42e9e3c708de/,CPIE Iles de Lérins et Pays d'Azur,,08/11/2016,11.0000000,15.0000000,43.521246000000,7.032006000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",51346,observation-413e06e5-2ace-42ce-a1d5-42e9e3c708de-2,https://biolit.fr/observations/observation-413e06e5-2ace-42ce-a1d5-42e9e3c708de-2/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0765.JPG,,TRUE, +N1,60759,sortie-413e06e5-2ace-42ce-a1d5-42e9e3c708de,https://biolit.fr/sorties/sortie-413e06e5-2ace-42ce-a1d5-42e9e3c708de/,CPIE Iles de Lérins et Pays d'Azur,,08/11/2016,11.0000000,15.0000000,43.521246000000,7.032006000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",51348,observation-413e06e5-2ace-42ce-a1d5-42e9e3c708de-3,https://biolit.fr/observations/observation-413e06e5-2ace-42ce-a1d5-42e9e3c708de-3/,Stramonita haemastoma,Bouche de sang,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0766.JPG,,TRUE, +N1,60759,sortie-413e06e5-2ace-42ce-a1d5-42e9e3c708de,https://biolit.fr/sorties/sortie-413e06e5-2ace-42ce-a1d5-42e9e3c708de/,CPIE Iles de Lérins et Pays d'Azur,,08/11/2016,11.0000000,15.0000000,43.521246000000,7.032006000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",51350,observation-413e06e5-2ace-42ce-a1d5-42e9e3c708de-4,https://biolit.fr/observations/observation-413e06e5-2ace-42ce-a1d5-42e9e3c708de-4/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0767.JPG,,TRUE, +N1,60759,sortie-413e06e5-2ace-42ce-a1d5-42e9e3c708de,https://biolit.fr/sorties/sortie-413e06e5-2ace-42ce-a1d5-42e9e3c708de/,CPIE Iles de Lérins et Pays d'Azur,,08/11/2016,11.0000000,15.0000000,43.521246000000,7.032006000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",51352,observation-413e06e5-2ace-42ce-a1d5-42e9e3c708de-5,https://biolit.fr/observations/observation-413e06e5-2ace-42ce-a1d5-42e9e3c708de-5/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0761.JPG,,TRUE, +N1,60759,sortie-413e06e5-2ace-42ce-a1d5-42e9e3c708de,https://biolit.fr/sorties/sortie-413e06e5-2ace-42ce-a1d5-42e9e3c708de/,CPIE Iles de Lérins et Pays d'Azur,,08/11/2016,11.0000000,15.0000000,43.521246000000,7.032006000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",51354,observation-413e06e5-2ace-42ce-a1d5-42e9e3c708de-6,https://biolit.fr/observations/observation-413e06e5-2ace-42ce-a1d5-42e9e3c708de-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0759.JPG,,FALSE, +N1,60760,sortie-edc766b9-c7a4-4d9e-a241-edd3fda382f6,https://biolit.fr/sorties/sortie-edc766b9-c7a4-4d9e-a241-edd3fda382f6/,Phil,,1/18/2017 0:00,17.0:45,17.0000000,47.792242000000,-4.288431000000,,Le Guivinec - Finistère,51356,observation-edc766b9-c7a4-4d9e-a241-edd3fda382f6,https://biolit.fr/observations/observation-edc766b9-c7a4-4d9e-a241-edd3fda382f6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170118_174511.jpg,,FALSE, +N1,60761,sortie-3a8890a3-8a38-4766-b1ea-4089397fc8ad,https://biolit.fr/sorties/sortie-3a8890a3-8a38-4766-b1ea-4089397fc8ad/,Phil,,1/13/2017 0:00,12.0:35,12.0:45,47.797708000000,-4.177130000000,,Loctudy - Finistère,51358,observation-3a8890a3-8a38-4766-b1ea-4089397fc8ad,https://biolit.fr/observations/observation-3a8890a3-8a38-4766-b1ea-4089397fc8ad/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050666.JPG,,FALSE, +N1,60761,sortie-3a8890a3-8a38-4766-b1ea-4089397fc8ad,https://biolit.fr/sorties/sortie-3a8890a3-8a38-4766-b1ea-4089397fc8ad/,Phil,,1/13/2017 0:00,12.0:35,12.0:45,47.797708000000,-4.177130000000,,Loctudy - Finistère,51360,observation-3a8890a3-8a38-4766-b1ea-4089397fc8ad-2,https://biolit.fr/observations/observation-3a8890a3-8a38-4766-b1ea-4089397fc8ad-2/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1050668.JPG,,TRUE, +N1,60761,sortie-3a8890a3-8a38-4766-b1ea-4089397fc8ad,https://biolit.fr/sorties/sortie-3a8890a3-8a38-4766-b1ea-4089397fc8ad/,Phil,,1/13/2017 0:00,12.0:35,12.0:45,47.797708000000,-4.177130000000,,Loctudy - Finistère,51362,observation-3a8890a3-8a38-4766-b1ea-4089397fc8ad-3,https://biolit.fr/observations/observation-3a8890a3-8a38-4766-b1ea-4089397fc8ad-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050669.JPG,,FALSE, +N1,60761,sortie-3a8890a3-8a38-4766-b1ea-4089397fc8ad,https://biolit.fr/sorties/sortie-3a8890a3-8a38-4766-b1ea-4089397fc8ad/,Phil,,1/13/2017 0:00,12.0:35,12.0:45,47.797708000000,-4.177130000000,,Loctudy - Finistère,51364,observation-3a8890a3-8a38-4766-b1ea-4089397fc8ad-4,https://biolit.fr/observations/observation-3a8890a3-8a38-4766-b1ea-4089397fc8ad-4/,Tritia incrassata,Nasse épaisse,,https://biolit.fr/wp-content/uploads/2023/07/P1050671.JPG,,TRUE, +N1,60761,sortie-3a8890a3-8a38-4766-b1ea-4089397fc8ad,https://biolit.fr/sorties/sortie-3a8890a3-8a38-4766-b1ea-4089397fc8ad/,Phil,,1/13/2017 0:00,12.0:35,12.0:45,47.797708000000,-4.177130000000,,Loctudy - Finistère,51366,observation-3a8890a3-8a38-4766-b1ea-4089397fc8ad-5,https://biolit.fr/observations/observation-3a8890a3-8a38-4766-b1ea-4089397fc8ad-5/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050659.JPG,,TRUE, +N1,60761,sortie-3a8890a3-8a38-4766-b1ea-4089397fc8ad,https://biolit.fr/sorties/sortie-3a8890a3-8a38-4766-b1ea-4089397fc8ad/,Phil,,1/13/2017 0:00,12.0:35,12.0:45,47.797708000000,-4.177130000000,,Loctudy - Finistère,51368,observation-3a8890a3-8a38-4766-b1ea-4089397fc8ad-6,https://biolit.fr/observations/observation-3a8890a3-8a38-4766-b1ea-4089397fc8ad-6/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/P1050665.JPG,,TRUE, +N1,60762,sortie-0fe1051f-a53c-4381-8daa-00f727382425,https://biolit.fr/sorties/sortie-0fe1051f-a53c-4381-8daa-00f727382425/,Phil,,1/18/2017 0:00,17.0:35,17.0000000,47.792711000000,-4.286930000000,,Le Guivinec - Finistère,51370,observation-0fe1051f-a53c-4381-8daa-00f727382425,https://biolit.fr/observations/observation-0fe1051f-a53c-4381-8daa-00f727382425/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170118_173854.jpg,,FALSE, +N1,60762,sortie-0fe1051f-a53c-4381-8daa-00f727382425,https://biolit.fr/sorties/sortie-0fe1051f-a53c-4381-8daa-00f727382425/,Phil,,1/18/2017 0:00,17.0:35,17.0000000,47.792711000000,-4.286930000000,,Le Guivinec - Finistère,51372,observation-0fe1051f-a53c-4381-8daa-00f727382425-2,https://biolit.fr/observations/observation-0fe1051f-a53c-4381-8daa-00f727382425-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170118_173740.jpg,,FALSE, +N1,60763,sortie-61e41933-97bd-4dba-bb88-9bb5a3af2bfd,https://biolit.fr/sorties/sortie-61e41933-97bd-4dba-bb88-9bb5a3af2bfd/,Phil,,1/13/2017 0:00,13.0:15,13.0000000,47.801747000000,-4.182453000000,,Loctudy - Finistère,51374,observation-61e41933-97bd-4dba-bb88-9bb5a3af2bfd,https://biolit.fr/observations/observation-61e41933-97bd-4dba-bb88-9bb5a3af2bfd/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050744.JPG,,FALSE, +N1,60763,sortie-61e41933-97bd-4dba-bb88-9bb5a3af2bfd,https://biolit.fr/sorties/sortie-61e41933-97bd-4dba-bb88-9bb5a3af2bfd/,Phil,,1/13/2017 0:00,13.0:15,13.0000000,47.801747000000,-4.182453000000,,Loctudy - Finistère,51376,observation-61e41933-97bd-4dba-bb88-9bb5a3af2bfd-2,https://biolit.fr/observations/observation-61e41933-97bd-4dba-bb88-9bb5a3af2bfd-2/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/P1050745.JPG,,TRUE, +N1,60763,sortie-61e41933-97bd-4dba-bb88-9bb5a3af2bfd,https://biolit.fr/sorties/sortie-61e41933-97bd-4dba-bb88-9bb5a3af2bfd/,Phil,,1/13/2017 0:00,13.0:15,13.0000000,47.801747000000,-4.182453000000,,Loctudy - Finistère,51378,observation-61e41933-97bd-4dba-bb88-9bb5a3af2bfd-3,https://biolit.fr/observations/observation-61e41933-97bd-4dba-bb88-9bb5a3af2bfd-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050748.JPG,,FALSE, +N1,60763,sortie-61e41933-97bd-4dba-bb88-9bb5a3af2bfd,https://biolit.fr/sorties/sortie-61e41933-97bd-4dba-bb88-9bb5a3af2bfd/,Phil,,1/13/2017 0:00,13.0:15,13.0000000,47.801747000000,-4.182453000000,,Loctudy - Finistère,51380,observation-61e41933-97bd-4dba-bb88-9bb5a3af2bfd-4,https://biolit.fr/observations/observation-61e41933-97bd-4dba-bb88-9bb5a3af2bfd-4/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1050750.JPG,,TRUE, +N1,60763,sortie-61e41933-97bd-4dba-bb88-9bb5a3af2bfd,https://biolit.fr/sorties/sortie-61e41933-97bd-4dba-bb88-9bb5a3af2bfd/,Phil,,1/13/2017 0:00,13.0:15,13.0000000,47.801747000000,-4.182453000000,,Loctudy - Finistère,51382,observation-61e41933-97bd-4dba-bb88-9bb5a3af2bfd-5,https://biolit.fr/observations/observation-61e41933-97bd-4dba-bb88-9bb5a3af2bfd-5/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1050754.JPG,,TRUE, +N1,60764,sortie-6e224773-d7cb-417b-af4e-c1d71db610a1,https://biolit.fr/sorties/sortie-6e224773-d7cb-417b-af4e-c1d71db610a1/,LéoB,,1/21/2017 0:00,14.0000000,14.0000000,43.416866000000,6.744237000000,,Plage Base nature saint raphaël,51384,observation-6e224773-d7cb-417b-af4e-c1d71db610a1,https://biolit.fr/observations/observation-6e224773-d7cb-417b-af4e-c1d71db610a1/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_4730-scaled.jpg,,TRUE, +N1,60764,sortie-6e224773-d7cb-417b-af4e-c1d71db610a1,https://biolit.fr/sorties/sortie-6e224773-d7cb-417b-af4e-c1d71db610a1/,LéoB,,1/21/2017 0:00,14.0000000,14.0000000,43.416866000000,6.744237000000,,Plage Base nature saint raphaël,51386,observation-6e224773-d7cb-417b-af4e-c1d71db610a1-2,https://biolit.fr/observations/observation-6e224773-d7cb-417b-af4e-c1d71db610a1-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_4729-scaled.jpg,,TRUE, +N1,60764,sortie-6e224773-d7cb-417b-af4e-c1d71db610a1,https://biolit.fr/sorties/sortie-6e224773-d7cb-417b-af4e-c1d71db610a1/,LéoB,,1/21/2017 0:00,14.0000000,14.0000000,43.416866000000,6.744237000000,,Plage Base nature saint raphaël,51388,observation-6e224773-d7cb-417b-af4e-c1d71db610a1-3,https://biolit.fr/observations/observation-6e224773-d7cb-417b-af4e-c1d71db610a1-3/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4728-scaled.jpg,,TRUE, +N1,60764,sortie-6e224773-d7cb-417b-af4e-c1d71db610a1,https://biolit.fr/sorties/sortie-6e224773-d7cb-417b-af4e-c1d71db610a1/,LéoB,,1/21/2017 0:00,14.0000000,14.0000000,43.416866000000,6.744237000000,,Plage Base nature saint raphaël,51390,observation-6e224773-d7cb-417b-af4e-c1d71db610a1-4,https://biolit.fr/observations/observation-6e224773-d7cb-417b-af4e-c1d71db610a1-4/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4727-scaled.jpg,,TRUE, +N1,60764,sortie-6e224773-d7cb-417b-af4e-c1d71db610a1,https://biolit.fr/sorties/sortie-6e224773-d7cb-417b-af4e-c1d71db610a1/,LéoB,,1/21/2017 0:00,14.0000000,14.0000000,43.416866000000,6.744237000000,,Plage Base nature saint raphaël,51392,observation-6e224773-d7cb-417b-af4e-c1d71db610a1-5,https://biolit.fr/observations/observation-6e224773-d7cb-417b-af4e-c1d71db610a1-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4726-scaled.jpg,,FALSE, +N1,60764,sortie-6e224773-d7cb-417b-af4e-c1d71db610a1,https://biolit.fr/sorties/sortie-6e224773-d7cb-417b-af4e-c1d71db610a1/,LéoB,,1/21/2017 0:00,14.0000000,14.0000000,43.416866000000,6.744237000000,,Plage Base nature saint raphaël,51394,observation-6e224773-d7cb-417b-af4e-c1d71db610a1-6,https://biolit.fr/observations/observation-6e224773-d7cb-417b-af4e-c1d71db610a1-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4725-scaled.jpg,,FALSE, +N1,60764,sortie-6e224773-d7cb-417b-af4e-c1d71db610a1,https://biolit.fr/sorties/sortie-6e224773-d7cb-417b-af4e-c1d71db610a1/,LéoB,,1/21/2017 0:00,14.0000000,14.0000000,43.416866000000,6.744237000000,,Plage Base nature saint raphaël,51396,observation-6e224773-d7cb-417b-af4e-c1d71db610a1-7,https://biolit.fr/observations/observation-6e224773-d7cb-417b-af4e-c1d71db610a1-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4722-scaled.jpg,,FALSE, +N1,60764,sortie-6e224773-d7cb-417b-af4e-c1d71db610a1,https://biolit.fr/sorties/sortie-6e224773-d7cb-417b-af4e-c1d71db610a1/,LéoB,,1/21/2017 0:00,14.0000000,14.0000000,43.416866000000,6.744237000000,,Plage Base nature saint raphaël,51398,observation-6e224773-d7cb-417b-af4e-c1d71db610a1-8,https://biolit.fr/observations/observation-6e224773-d7cb-417b-af4e-c1d71db610a1-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4721-scaled.jpg,,FALSE, +N1,60764,sortie-6e224773-d7cb-417b-af4e-c1d71db610a1,https://biolit.fr/sorties/sortie-6e224773-d7cb-417b-af4e-c1d71db610a1/,LéoB,,1/21/2017 0:00,14.0000000,14.0000000,43.416866000000,6.744237000000,,Plage Base nature saint raphaël,51400,observation-6e224773-d7cb-417b-af4e-c1d71db610a1-9,https://biolit.fr/observations/observation-6e224773-d7cb-417b-af4e-c1d71db610a1-9/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4720-scaled.jpg,,TRUE, +N1,60764,sortie-6e224773-d7cb-417b-af4e-c1d71db610a1,https://biolit.fr/sorties/sortie-6e224773-d7cb-417b-af4e-c1d71db610a1/,LéoB,,1/21/2017 0:00,14.0000000,14.0000000,43.416866000000,6.744237000000,,Plage Base nature saint raphaël,51402,observation-6e224773-d7cb-417b-af4e-c1d71db610a1-10,https://biolit.fr/observations/observation-6e224773-d7cb-417b-af4e-c1d71db610a1-10/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/2023/07/IMG_4719-scaled.jpg,,TRUE, +N1,60765,sortie-9c79eb87-3291-4c1d-a4d4-106da5257a25,https://biolit.fr/sorties/sortie-9c79eb87-3291-4c1d-a4d4-106da5257a25/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.521293000000,7.032134000000,,"Pointe du Batéguier, île Sainte Marguerite",51404,observation-9c79eb87-3291-4c1d-a4d4-106da5257a25,https://biolit.fr/observations/observation-9c79eb87-3291-4c1d-a4d4-106da5257a25/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4286.JPG,,FALSE, +N1,60765,sortie-9c79eb87-3291-4c1d-a4d4-106da5257a25,https://biolit.fr/sorties/sortie-9c79eb87-3291-4c1d-a4d4-106da5257a25/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.521293000000,7.032134000000,,"Pointe du Batéguier, île Sainte Marguerite",51405,observation-9c79eb87-3291-4c1d-a4d4-106da5257a25-2,https://biolit.fr/observations/observation-9c79eb87-3291-4c1d-a4d4-106da5257a25-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4281.JPG,,FALSE, +N1,60765,sortie-9c79eb87-3291-4c1d-a4d4-106da5257a25,https://biolit.fr/sorties/sortie-9c79eb87-3291-4c1d-a4d4-106da5257a25/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.521293000000,7.032134000000,,"Pointe du Batéguier, île Sainte Marguerite",51406,observation-9c79eb87-3291-4c1d-a4d4-106da5257a25-3,https://biolit.fr/observations/observation-9c79eb87-3291-4c1d-a4d4-106da5257a25-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4252-scaled.jpg,,FALSE, +N1,60765,sortie-9c79eb87-3291-4c1d-a4d4-106da5257a25,https://biolit.fr/sorties/sortie-9c79eb87-3291-4c1d-a4d4-106da5257a25/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.521293000000,7.032134000000,,"Pointe du Batéguier, île Sainte Marguerite",51408,observation-9c79eb87-3291-4c1d-a4d4-106da5257a25-4,https://biolit.fr/observations/observation-9c79eb87-3291-4c1d-a4d4-106da5257a25-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4242-scaled.jpg,,FALSE, +N1,60766,sortie-64e2919a-6def-4c33-887e-4dc895ffaea7,https://biolit.fr/sorties/sortie-64e2919a-6def-4c33-887e-4dc895ffaea7/,Phil,,1/13/2017 0:00,13.0000000,13.0000000,47.802790000000,-4.212294000000,,Lesconil -Finistère,51410,observation-64e2919a-6def-4c33-887e-4dc895ffaea7,https://biolit.fr/observations/observation-64e2919a-6def-4c33-887e-4dc895ffaea7/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/P1050766.JPG,,TRUE, +N1,60766,sortie-64e2919a-6def-4c33-887e-4dc895ffaea7,https://biolit.fr/sorties/sortie-64e2919a-6def-4c33-887e-4dc895ffaea7/,Phil,,1/13/2017 0:00,13.0000000,13.0000000,47.802790000000,-4.212294000000,,Lesconil -Finistère,51412,observation-64e2919a-6def-4c33-887e-4dc895ffaea7-2,https://biolit.fr/observations/observation-64e2919a-6def-4c33-887e-4dc895ffaea7-2/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/P1050778.JPG,,TRUE, +N1,60766,sortie-64e2919a-6def-4c33-887e-4dc895ffaea7,https://biolit.fr/sorties/sortie-64e2919a-6def-4c33-887e-4dc895ffaea7/,Phil,,1/13/2017 0:00,13.0000000,13.0000000,47.802790000000,-4.212294000000,,Lesconil -Finistère,51414,observation-64e2919a-6def-4c33-887e-4dc895ffaea7-3,https://biolit.fr/observations/observation-64e2919a-6def-4c33-887e-4dc895ffaea7-3/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/P1050779.JPG,,TRUE, +N1,60766,sortie-64e2919a-6def-4c33-887e-4dc895ffaea7,https://biolit.fr/sorties/sortie-64e2919a-6def-4c33-887e-4dc895ffaea7/,Phil,,1/13/2017 0:00,13.0000000,13.0000000,47.802790000000,-4.212294000000,,Lesconil -Finistère,51416,observation-64e2919a-6def-4c33-887e-4dc895ffaea7-4,https://biolit.fr/observations/observation-64e2919a-6def-4c33-887e-4dc895ffaea7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050783.JPG,,FALSE, +N1,60766,sortie-64e2919a-6def-4c33-887e-4dc895ffaea7,https://biolit.fr/sorties/sortie-64e2919a-6def-4c33-887e-4dc895ffaea7/,Phil,,1/13/2017 0:00,13.0000000,13.0000000,47.802790000000,-4.212294000000,,Lesconil -Finistère,51418,observation-64e2919a-6def-4c33-887e-4dc895ffaea7-5,https://biolit.fr/observations/observation-64e2919a-6def-4c33-887e-4dc895ffaea7-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050784.JPG,,FALSE, +N1,60766,sortie-64e2919a-6def-4c33-887e-4dc895ffaea7,https://biolit.fr/sorties/sortie-64e2919a-6def-4c33-887e-4dc895ffaea7/,Phil,,1/13/2017 0:00,13.0000000,13.0000000,47.802790000000,-4.212294000000,,Lesconil -Finistère,51420,observation-64e2919a-6def-4c33-887e-4dc895ffaea7-6,https://biolit.fr/observations/observation-64e2919a-6def-4c33-887e-4dc895ffaea7-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050785.JPG,,FALSE, +N1,60767,sortie-b0a6068d-cc83-4a0e-8434-e8140078293a,https://biolit.fr/sorties/sortie-b0a6068d-cc83-4a0e-8434-e8140078293a/,Phil,,1/13/2017 0:00,12.0:25,12.0000000,47.79614500000,-4.179611000000,,Loctudy - Finistère,51422,observation-b0a6068d-cc83-4a0e-8434-e8140078293a,https://biolit.fr/observations/observation-b0a6068d-cc83-4a0e-8434-e8140078293a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050641.JPG,,FALSE, +N1,60767,sortie-b0a6068d-cc83-4a0e-8434-e8140078293a,https://biolit.fr/sorties/sortie-b0a6068d-cc83-4a0e-8434-e8140078293a/,Phil,,1/13/2017 0:00,12.0:25,12.0000000,47.79614500000,-4.179611000000,,Loctudy - Finistère,51424,observation-b0a6068d-cc83-4a0e-8434-e8140078293a-2,https://biolit.fr/observations/observation-b0a6068d-cc83-4a0e-8434-e8140078293a-2/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/P1050648.JPG,,TRUE, +N1,60767,sortie-b0a6068d-cc83-4a0e-8434-e8140078293a,https://biolit.fr/sorties/sortie-b0a6068d-cc83-4a0e-8434-e8140078293a/,Phil,,1/13/2017 0:00,12.0:25,12.0000000,47.79614500000,-4.179611000000,,Loctudy - Finistère,51426,observation-b0a6068d-cc83-4a0e-8434-e8140078293a-3,https://biolit.fr/observations/observation-b0a6068d-cc83-4a0e-8434-e8140078293a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050639.JPG,,FALSE, +N1,60767,sortie-b0a6068d-cc83-4a0e-8434-e8140078293a,https://biolit.fr/sorties/sortie-b0a6068d-cc83-4a0e-8434-e8140078293a/,Phil,,1/13/2017 0:00,12.0:25,12.0000000,47.79614500000,-4.179611000000,,Loctudy - Finistère,51428,observation-b0a6068d-cc83-4a0e-8434-e8140078293a-4,https://biolit.fr/observations/observation-b0a6068d-cc83-4a0e-8434-e8140078293a-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050633.JPG,,TRUE, +N1,60768,sortie-40542dc9-1fd8-4083-a921-23e7128722ca,https://biolit.fr/sorties/sortie-40542dc9-1fd8-4083-a921-23e7128722ca/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236201000000,5.360016000000,,plage de la bonne brise,51430,observation-40542dc9-1fd8-4083-a921-23e7128722ca,https://biolit.fr/observations/observation-40542dc9-1fd8-4083-a921-23e7128722ca/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0019_1-scaled.jpg,,FALSE, +N1,60768,sortie-40542dc9-1fd8-4083-a921-23e7128722ca,https://biolit.fr/sorties/sortie-40542dc9-1fd8-4083-a921-23e7128722ca/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236201000000,5.360016000000,,plage de la bonne brise,51432,observation-40542dc9-1fd8-4083-a921-23e7128722ca-2,https://biolit.fr/observations/observation-40542dc9-1fd8-4083-a921-23e7128722ca-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0021_0-scaled.jpg,,FALSE, +N1,60768,sortie-40542dc9-1fd8-4083-a921-23e7128722ca,https://biolit.fr/sorties/sortie-40542dc9-1fd8-4083-a921-23e7128722ca/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236201000000,5.360016000000,,plage de la bonne brise,51434,observation-40542dc9-1fd8-4083-a921-23e7128722ca-3,https://biolit.fr/observations/observation-40542dc9-1fd8-4083-a921-23e7128722ca-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0024_0-scaled.jpg,,FALSE, +N1,60768,sortie-40542dc9-1fd8-4083-a921-23e7128722ca,https://biolit.fr/sorties/sortie-40542dc9-1fd8-4083-a921-23e7128722ca/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236201000000,5.360016000000,,plage de la bonne brise,51436,observation-40542dc9-1fd8-4083-a921-23e7128722ca-4,https://biolit.fr/observations/observation-40542dc9-1fd8-4083-a921-23e7128722ca-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0025_0-scaled.jpg,,FALSE, +N1,60768,sortie-40542dc9-1fd8-4083-a921-23e7128722ca,https://biolit.fr/sorties/sortie-40542dc9-1fd8-4083-a921-23e7128722ca/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236201000000,5.360016000000,,plage de la bonne brise,51438,observation-40542dc9-1fd8-4083-a921-23e7128722ca-5,https://biolit.fr/observations/observation-40542dc9-1fd8-4083-a921-23e7128722ca-5/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0027-scaled.jpg,,TRUE, +N1,60768,sortie-40542dc9-1fd8-4083-a921-23e7128722ca,https://biolit.fr/sorties/sortie-40542dc9-1fd8-4083-a921-23e7128722ca/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236201000000,5.360016000000,,plage de la bonne brise,51440,observation-40542dc9-1fd8-4083-a921-23e7128722ca-6,https://biolit.fr/observations/observation-40542dc9-1fd8-4083-a921-23e7128722ca-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0030-scaled.jpg,,FALSE, +N1,60768,sortie-40542dc9-1fd8-4083-a921-23e7128722ca,https://biolit.fr/sorties/sortie-40542dc9-1fd8-4083-a921-23e7128722ca/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236201000000,5.360016000000,,plage de la bonne brise,51442,observation-40542dc9-1fd8-4083-a921-23e7128722ca-7,https://biolit.fr/observations/observation-40542dc9-1fd8-4083-a921-23e7128722ca-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0031-scaled.jpg,,FALSE, +N1,60768,sortie-40542dc9-1fd8-4083-a921-23e7128722ca,https://biolit.fr/sorties/sortie-40542dc9-1fd8-4083-a921-23e7128722ca/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236201000000,5.360016000000,,plage de la bonne brise,51444,observation-40542dc9-1fd8-4083-a921-23e7128722ca-8,https://biolit.fr/observations/observation-40542dc9-1fd8-4083-a921-23e7128722ca-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0033-scaled.jpg,,FALSE, +N1,60768,sortie-40542dc9-1fd8-4083-a921-23e7128722ca,https://biolit.fr/sorties/sortie-40542dc9-1fd8-4083-a921-23e7128722ca/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236201000000,5.360016000000,,plage de la bonne brise,51446,observation-40542dc9-1fd8-4083-a921-23e7128722ca-9,https://biolit.fr/observations/observation-40542dc9-1fd8-4083-a921-23e7128722ca-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0035.jpg,,FALSE, +N1,60768,sortie-40542dc9-1fd8-4083-a921-23e7128722ca,https://biolit.fr/sorties/sortie-40542dc9-1fd8-4083-a921-23e7128722ca/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236201000000,5.360016000000,,plage de la bonne brise,51447,observation-40542dc9-1fd8-4083-a921-23e7128722ca-10,https://biolit.fr/observations/observation-40542dc9-1fd8-4083-a921-23e7128722ca-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0040.jpg,,FALSE, +N1,60768,sortie-40542dc9-1fd8-4083-a921-23e7128722ca,https://biolit.fr/sorties/sortie-40542dc9-1fd8-4083-a921-23e7128722ca/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236201000000,5.360016000000,,plage de la bonne brise,51448,observation-40542dc9-1fd8-4083-a921-23e7128722ca-11,https://biolit.fr/observations/observation-40542dc9-1fd8-4083-a921-23e7128722ca-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0042-scaled.jpg,,FALSE, +N1,60768,sortie-40542dc9-1fd8-4083-a921-23e7128722ca,https://biolit.fr/sorties/sortie-40542dc9-1fd8-4083-a921-23e7128722ca/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236201000000,5.360016000000,,plage de la bonne brise,51450,observation-40542dc9-1fd8-4083-a921-23e7128722ca-12,https://biolit.fr/observations/observation-40542dc9-1fd8-4083-a921-23e7128722ca-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0043-scaled.jpg,,FALSE, +N1,60768,sortie-40542dc9-1fd8-4083-a921-23e7128722ca,https://biolit.fr/sorties/sortie-40542dc9-1fd8-4083-a921-23e7128722ca/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236201000000,5.360016000000,,plage de la bonne brise,51452,observation-40542dc9-1fd8-4083-a921-23e7128722ca-13,https://biolit.fr/observations/observation-40542dc9-1fd8-4083-a921-23e7128722ca-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0044-scaled.jpg,,FALSE, +N1,60768,sortie-40542dc9-1fd8-4083-a921-23e7128722ca,https://biolit.fr/sorties/sortie-40542dc9-1fd8-4083-a921-23e7128722ca/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236201000000,5.360016000000,,plage de la bonne brise,51454,observation-40542dc9-1fd8-4083-a921-23e7128722ca-14,https://biolit.fr/observations/observation-40542dc9-1fd8-4083-a921-23e7128722ca-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0046-scaled.jpg,,FALSE, +N1,60768,sortie-40542dc9-1fd8-4083-a921-23e7128722ca,https://biolit.fr/sorties/sortie-40542dc9-1fd8-4083-a921-23e7128722ca/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236201000000,5.360016000000,,plage de la bonne brise,51456,observation-40542dc9-1fd8-4083-a921-23e7128722ca-15,https://biolit.fr/observations/observation-40542dc9-1fd8-4083-a921-23e7128722ca-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0050-scaled.jpg,,FALSE, +N1,60769,sortie-de852166-a81f-43bb-9aa7-0921c320499d,https://biolit.fr/sorties/sortie-de852166-a81f-43bb-9aa7-0921c320499d/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236018000000,5.360026000000,,plage de la bonne brise,51458,observation-de852166-a81f-43bb-9aa7-0921c320499d,https://biolit.fr/observations/observation-de852166-a81f-43bb-9aa7-0921c320499d/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0003-scaled.jpg,,FALSE, +N1,60769,sortie-de852166-a81f-43bb-9aa7-0921c320499d,https://biolit.fr/sorties/sortie-de852166-a81f-43bb-9aa7-0921c320499d/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236018000000,5.360026000000,,plage de la bonne brise,51460,observation-de852166-a81f-43bb-9aa7-0921c320499d-2,https://biolit.fr/observations/observation-de852166-a81f-43bb-9aa7-0921c320499d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0004-scaled.jpg,,FALSE, +N1,60769,sortie-de852166-a81f-43bb-9aa7-0921c320499d,https://biolit.fr/sorties/sortie-de852166-a81f-43bb-9aa7-0921c320499d/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236018000000,5.360026000000,,plage de la bonne brise,51462,observation-de852166-a81f-43bb-9aa7-0921c320499d-3,https://biolit.fr/observations/observation-de852166-a81f-43bb-9aa7-0921c320499d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0006-scaled.jpg,,FALSE, +N1,60769,sortie-de852166-a81f-43bb-9aa7-0921c320499d,https://biolit.fr/sorties/sortie-de852166-a81f-43bb-9aa7-0921c320499d/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236018000000,5.360026000000,,plage de la bonne brise,51464,observation-de852166-a81f-43bb-9aa7-0921c320499d-4,https://biolit.fr/observations/observation-de852166-a81f-43bb-9aa7-0921c320499d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0009-scaled.jpg,,FALSE, +N1,60769,sortie-de852166-a81f-43bb-9aa7-0921c320499d,https://biolit.fr/sorties/sortie-de852166-a81f-43bb-9aa7-0921c320499d/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236018000000,5.360026000000,,plage de la bonne brise,51465,observation-de852166-a81f-43bb-9aa7-0921c320499d-5,https://biolit.fr/observations/observation-de852166-a81f-43bb-9aa7-0921c320499d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0007.jpg,,FALSE, +N1,60769,sortie-de852166-a81f-43bb-9aa7-0921c320499d,https://biolit.fr/sorties/sortie-de852166-a81f-43bb-9aa7-0921c320499d/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236018000000,5.360026000000,,plage de la bonne brise,51466,observation-de852166-a81f-43bb-9aa7-0921c320499d-6,https://biolit.fr/observations/observation-de852166-a81f-43bb-9aa7-0921c320499d-6/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0010-scaled.jpg,,TRUE, +N1,60769,sortie-de852166-a81f-43bb-9aa7-0921c320499d,https://biolit.fr/sorties/sortie-de852166-a81f-43bb-9aa7-0921c320499d/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236018000000,5.360026000000,,plage de la bonne brise,51468,observation-de852166-a81f-43bb-9aa7-0921c320499d-7,https://biolit.fr/observations/observation-de852166-a81f-43bb-9aa7-0921c320499d-7/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0014_0-scaled.jpg,,TRUE, +N1,60769,sortie-de852166-a81f-43bb-9aa7-0921c320499d,https://biolit.fr/sorties/sortie-de852166-a81f-43bb-9aa7-0921c320499d/,ludovic,,1/19/2017 0:00,15.0000000,16.0000000,43.236018000000,5.360026000000,,plage de la bonne brise,51470,observation-de852166-a81f-43bb-9aa7-0921c320499d-8,https://biolit.fr/observations/observation-de852166-a81f-43bb-9aa7-0921c320499d-8/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0016-scaled.jpg,,TRUE, +N1,60770,sortie-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c,https://biolit.fr/sorties/sortie-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c/,NVanzu,,1/19/2017 0:00,14.0000000,15.0000000,43.233338000000,5.356334000000,,Plage de la bonne brise,51472,observation-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c,https://biolit.fr/observations/observation-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/P1190094-scaled.jpg,,TRUE, +N1,60770,sortie-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c,https://biolit.fr/sorties/sortie-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c/,NVanzu,,1/19/2017 0:00,14.0000000,15.0000000,43.233338000000,5.356334000000,,Plage de la bonne brise,51474,observation-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c-2,https://biolit.fr/observations/observation-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1190095-scaled.jpg,,FALSE, +N1,60770,sortie-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c,https://biolit.fr/sorties/sortie-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c/,NVanzu,,1/19/2017 0:00,14.0000000,15.0000000,43.233338000000,5.356334000000,,Plage de la bonne brise,51476,observation-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c-3,https://biolit.fr/observations/observation-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c-3/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/P1190096-scaled.jpg,,TRUE, +N1,60770,sortie-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c,https://biolit.fr/sorties/sortie-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c/,NVanzu,,1/19/2017 0:00,14.0000000,15.0000000,43.233338000000,5.356334000000,,Plage de la bonne brise,51478,observation-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c-4,https://biolit.fr/observations/observation-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c-4/,Halopteris scoparia,Algue balai,,https://biolit.fr/wp-content/uploads/2023/07/P1190098-scaled.jpg,,TRUE, +N1,60770,sortie-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c,https://biolit.fr/sorties/sortie-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c/,NVanzu,,1/19/2017 0:00,14.0000000,15.0000000,43.233338000000,5.356334000000,,Plage de la bonne brise,51480,observation-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c-5,https://biolit.fr/observations/observation-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1190099-scaled.jpg,,FALSE, +N1,60770,sortie-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c,https://biolit.fr/sorties/sortie-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c/,NVanzu,,1/19/2017 0:00,14.0000000,15.0000000,43.233338000000,5.356334000000,,Plage de la bonne brise,51482,observation-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c-6,https://biolit.fr/observations/observation-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c-6/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/P1190100-scaled.jpg,,TRUE, +N1,60770,sortie-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c,https://biolit.fr/sorties/sortie-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c/,NVanzu,,1/19/2017 0:00,14.0000000,15.0000000,43.233338000000,5.356334000000,,Plage de la bonne brise,51484,observation-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c-7,https://biolit.fr/observations/observation-c7ede757-4f4a-4dc7-83b6-df9dc42c5f7c-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1190102-scaled.jpg,,FALSE, +N1,60771,sortie-3c3fb9d4-f8fa-4c2e-8ab7-d0a27833687d,https://biolit.fr/sorties/sortie-3c3fb9d4-f8fa-4c2e-8ab7-d0a27833687d/,Phil,,1/13/2017 0:00,12.0:15,12.0000000,47.796391000000,-4.179122000000,,Loctudy - Finistère,51486,observation-3c3fb9d4-f8fa-4c2e-8ab7-d0a27833687d,https://biolit.fr/observations/observation-3c3fb9d4-f8fa-4c2e-8ab7-d0a27833687d/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050611.JPG,,TRUE, +N1,60771,sortie-3c3fb9d4-f8fa-4c2e-8ab7-d0a27833687d,https://biolit.fr/sorties/sortie-3c3fb9d4-f8fa-4c2e-8ab7-d0a27833687d/,Phil,,1/13/2017 0:00,12.0:15,12.0000000,47.796391000000,-4.179122000000,,Loctudy - Finistère,51488,observation-3c3fb9d4-f8fa-4c2e-8ab7-d0a27833687d-2,https://biolit.fr/observations/observation-3c3fb9d4-f8fa-4c2e-8ab7-d0a27833687d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050620.JPG,,FALSE, +N1,60772,sortie-c03526c9-cab9-4ede-896b-1a19f999a695,https://biolit.fr/sorties/sortie-c03526c9-cab9-4ede-896b-1a19f999a695/,Phil,,12/13/2016 0:00,12.0:35,12.0000000,48.106613000000,-4.415104000000,,Poullan sur Mer - Finistère,51490,observation-c03526c9-cab9-4ede-896b-1a19f999a695,https://biolit.fr/observations/observation-c03526c9-cab9-4ede-896b-1a19f999a695/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050198.JPG,,FALSE, +N1,60772,sortie-c03526c9-cab9-4ede-896b-1a19f999a695,https://biolit.fr/sorties/sortie-c03526c9-cab9-4ede-896b-1a19f999a695/,Phil,,12/13/2016 0:00,12.0:35,12.0000000,48.106613000000,-4.415104000000,,Poullan sur Mer - Finistère,51492,observation-c03526c9-cab9-4ede-896b-1a19f999a695-2,https://biolit.fr/observations/observation-c03526c9-cab9-4ede-896b-1a19f999a695-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050199.JPG,,FALSE, +N1,60773,sortie-7cc1c7d1-eca0-40ce-96ab-035eb8f09eec,https://biolit.fr/sorties/sortie-7cc1c7d1-eca0-40ce-96ab-035eb8f09eec/,Phil,,1/13/2017 0:00,12.0000000,12.0:15,47.797440000000,-4.177989000000,,Loctudy - Finistère,51494,observation-7cc1c7d1-eca0-40ce-96ab-035eb8f09eec,https://biolit.fr/observations/observation-7cc1c7d1-eca0-40ce-96ab-035eb8f09eec/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/P1050600.JPG,,TRUE, +N1,60773,sortie-7cc1c7d1-eca0-40ce-96ab-035eb8f09eec,https://biolit.fr/sorties/sortie-7cc1c7d1-eca0-40ce-96ab-035eb8f09eec/,Phil,,1/13/2017 0:00,12.0000000,12.0:15,47.797440000000,-4.177989000000,,Loctudy - Finistère,51496,observation-7cc1c7d1-eca0-40ce-96ab-035eb8f09eec-2,https://biolit.fr/observations/observation-7cc1c7d1-eca0-40ce-96ab-035eb8f09eec-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050607.JPG,,FALSE, +N1,60773,sortie-7cc1c7d1-eca0-40ce-96ab-035eb8f09eec,https://biolit.fr/sorties/sortie-7cc1c7d1-eca0-40ce-96ab-035eb8f09eec/,Phil,,1/13/2017 0:00,12.0000000,12.0:15,47.797440000000,-4.177989000000,,Loctudy - Finistère,51498,observation-7cc1c7d1-eca0-40ce-96ab-035eb8f09eec-3,https://biolit.fr/observations/observation-7cc1c7d1-eca0-40ce-96ab-035eb8f09eec-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050605.JPG,,FALSE, +N1,60774,sortie-ee1d59c3-8597-4627-8d94-406797ed2168,https://biolit.fr/sorties/sortie-ee1d59c3-8597-4627-8d94-406797ed2168/,Phil,,1/13/2017 0:00,12.0000000,12.0000000,47.797731000000,-4.178075000000,,Loctudy - Finistère,51500,observation-ee1d59c3-8597-4627-8d94-406797ed2168,https://biolit.fr/observations/observation-ee1d59c3-8597-4627-8d94-406797ed2168/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050594.JPG,,FALSE, +N1,60774,sortie-ee1d59c3-8597-4627-8d94-406797ed2168,https://biolit.fr/sorties/sortie-ee1d59c3-8597-4627-8d94-406797ed2168/,Phil,,1/13/2017 0:00,12.0000000,12.0000000,47.797731000000,-4.178075000000,,Loctudy - Finistère,51502,observation-ee1d59c3-8597-4627-8d94-406797ed2168-2,https://biolit.fr/observations/observation-ee1d59c3-8597-4627-8d94-406797ed2168-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050593.JPG,,FALSE, +N1,60774,sortie-ee1d59c3-8597-4627-8d94-406797ed2168,https://biolit.fr/sorties/sortie-ee1d59c3-8597-4627-8d94-406797ed2168/,Phil,,1/13/2017 0:00,12.0000000,12.0000000,47.797731000000,-4.178075000000,,Loctudy - Finistère,51504,observation-ee1d59c3-8597-4627-8d94-406797ed2168-3,https://biolit.fr/observations/observation-ee1d59c3-8597-4627-8d94-406797ed2168-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050591.JPG,,FALSE, +N1,60775,sortie-69340416-48ce-4b3a-acee-09e720e5cf4a,https://biolit.fr/sorties/sortie-69340416-48ce-4b3a-acee-09e720e5cf4a/,Phil,,12/18/2016 0:00,16.0:25,16.0000000,47.939714000000,-4.403757000000,,Pouldreuzic - Finistère,51506,observation-69340416-48ce-4b3a-acee-09e720e5cf4a,https://biolit.fr/observations/observation-69340416-48ce-4b3a-acee-09e720e5cf4a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050543.JPG,,FALSE, +N1,60776,sortie-dcf475d8-402a-4a3f-b477-eeef6ec92d1e,https://biolit.fr/sorties/sortie-dcf475d8-402a-4a3f-b477-eeef6ec92d1e/,Phil,,01/11/2017,14.0:25,14.0:35,47.835895000000,-4.166938000000,,Loctudy - Finistère,51508,observation-dcf475d8-402a-4a3f-b477-eeef6ec92d1e,https://biolit.fr/observations/observation-dcf475d8-402a-4a3f-b477-eeef6ec92d1e/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20170111_143340.jpg,,TRUE, +N1,60776,sortie-dcf475d8-402a-4a3f-b477-eeef6ec92d1e,https://biolit.fr/sorties/sortie-dcf475d8-402a-4a3f-b477-eeef6ec92d1e/,Phil,,01/11/2017,14.0:25,14.0:35,47.835895000000,-4.166938000000,,Loctudy - Finistère,51510,observation-dcf475d8-402a-4a3f-b477-eeef6ec92d1e-2,https://biolit.fr/observations/observation-dcf475d8-402a-4a3f-b477-eeef6ec92d1e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170111_142332.jpg,,FALSE, +N1,60776,sortie-dcf475d8-402a-4a3f-b477-eeef6ec92d1e,https://biolit.fr/sorties/sortie-dcf475d8-402a-4a3f-b477-eeef6ec92d1e/,Phil,,01/11/2017,14.0:25,14.0:35,47.835895000000,-4.166938000000,,Loctudy - Finistère,51512,observation-dcf475d8-402a-4a3f-b477-eeef6ec92d1e-3,https://biolit.fr/observations/observation-dcf475d8-402a-4a3f-b477-eeef6ec92d1e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170111_142710.jpg,,FALSE, +N1,60776,sortie-dcf475d8-402a-4a3f-b477-eeef6ec92d1e,https://biolit.fr/sorties/sortie-dcf475d8-402a-4a3f-b477-eeef6ec92d1e/,Phil,,01/11/2017,14.0:25,14.0:35,47.835895000000,-4.166938000000,,Loctudy - Finistère,51514,observation-dcf475d8-402a-4a3f-b477-eeef6ec92d1e-4,https://biolit.fr/observations/observation-dcf475d8-402a-4a3f-b477-eeef6ec92d1e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170111_142737.jpg,,FALSE, +N1,60776,sortie-dcf475d8-402a-4a3f-b477-eeef6ec92d1e,https://biolit.fr/sorties/sortie-dcf475d8-402a-4a3f-b477-eeef6ec92d1e/,Phil,,01/11/2017,14.0:25,14.0:35,47.835895000000,-4.166938000000,,Loctudy - Finistère,51516,observation-dcf475d8-402a-4a3f-b477-eeef6ec92d1e-5,https://biolit.fr/observations/observation-dcf475d8-402a-4a3f-b477-eeef6ec92d1e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170111_143120.jpg,,FALSE, +N1,60776,sortie-dcf475d8-402a-4a3f-b477-eeef6ec92d1e,https://biolit.fr/sorties/sortie-dcf475d8-402a-4a3f-b477-eeef6ec92d1e/,Phil,,01/11/2017,14.0:25,14.0:35,47.835895000000,-4.166938000000,,Loctudy - Finistère,51518,observation-dcf475d8-402a-4a3f-b477-eeef6ec92d1e-6,https://biolit.fr/observations/observation-dcf475d8-402a-4a3f-b477-eeef6ec92d1e-6/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20170111_143159.jpg,,TRUE, +N1,60777,sortie-0f280249-af25-4373-a9e9-b8dfc78048f7,https://biolit.fr/sorties/sortie-0f280249-af25-4373-a9e9-b8dfc78048f7/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253579000000,5.374304000000,,plage Borely,51520,observation-0f280249-af25-4373-a9e9-b8dfc78048f7,https://biolit.fr/observations/observation-0f280249-af25-4373-a9e9-b8dfc78048f7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0720-scaled.jpg,,FALSE, +N1,60777,sortie-0f280249-af25-4373-a9e9-b8dfc78048f7,https://biolit.fr/sorties/sortie-0f280249-af25-4373-a9e9-b8dfc78048f7/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253579000000,5.374304000000,,plage Borely,51522,observation-0f280249-af25-4373-a9e9-b8dfc78048f7-2,https://biolit.fr/observations/observation-0f280249-af25-4373-a9e9-b8dfc78048f7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0721-scaled.jpg,,FALSE, +N1,60777,sortie-0f280249-af25-4373-a9e9-b8dfc78048f7,https://biolit.fr/sorties/sortie-0f280249-af25-4373-a9e9-b8dfc78048f7/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253579000000,5.374304000000,,plage Borely,51524,observation-0f280249-af25-4373-a9e9-b8dfc78048f7-3,https://biolit.fr/observations/observation-0f280249-af25-4373-a9e9-b8dfc78048f7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0727-scaled.jpg,,FALSE, +N1,60777,sortie-0f280249-af25-4373-a9e9-b8dfc78048f7,https://biolit.fr/sorties/sortie-0f280249-af25-4373-a9e9-b8dfc78048f7/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253579000000,5.374304000000,,plage Borely,51526,observation-0f280249-af25-4373-a9e9-b8dfc78048f7-4,https://biolit.fr/observations/observation-0f280249-af25-4373-a9e9-b8dfc78048f7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0728-scaled.jpg,,FALSE, +N1,60777,sortie-0f280249-af25-4373-a9e9-b8dfc78048f7,https://biolit.fr/sorties/sortie-0f280249-af25-4373-a9e9-b8dfc78048f7/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253579000000,5.374304000000,,plage Borely,51528,observation-0f280249-af25-4373-a9e9-b8dfc78048f7-5,https://biolit.fr/observations/observation-0f280249-af25-4373-a9e9-b8dfc78048f7-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0729-scaled.jpg,,FALSE, +N1,60777,sortie-0f280249-af25-4373-a9e9-b8dfc78048f7,https://biolit.fr/sorties/sortie-0f280249-af25-4373-a9e9-b8dfc78048f7/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253579000000,5.374304000000,,plage Borely,51530,observation-0f280249-af25-4373-a9e9-b8dfc78048f7-6,https://biolit.fr/observations/observation-0f280249-af25-4373-a9e9-b8dfc78048f7-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0730-scaled.jpg,,FALSE, +N1,60778,sortie-a9022b65-a71b-4125-b78e-356ff98af9dc,https://biolit.fr/sorties/sortie-a9022b65-a71b-4125-b78e-356ff98af9dc/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253704000000,5.374422000000,,plage Borely,51532,observation-a9022b65-a71b-4125-b78e-356ff98af9dc,https://biolit.fr/observations/observation-a9022b65-a71b-4125-b78e-356ff98af9dc/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0702-scaled.jpg,,FALSE, +N1,60778,sortie-a9022b65-a71b-4125-b78e-356ff98af9dc,https://biolit.fr/sorties/sortie-a9022b65-a71b-4125-b78e-356ff98af9dc/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253704000000,5.374422000000,,plage Borely,51534,observation-a9022b65-a71b-4125-b78e-356ff98af9dc-2,https://biolit.fr/observations/observation-a9022b65-a71b-4125-b78e-356ff98af9dc-2/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0715-scaled.jpg,,TRUE, +N1,60778,sortie-a9022b65-a71b-4125-b78e-356ff98af9dc,https://biolit.fr/sorties/sortie-a9022b65-a71b-4125-b78e-356ff98af9dc/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253704000000,5.374422000000,,plage Borely,51536,observation-a9022b65-a71b-4125-b78e-356ff98af9dc-3,https://biolit.fr/observations/observation-a9022b65-a71b-4125-b78e-356ff98af9dc-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0718-scaled.jpg,,FALSE, +N1,60778,sortie-a9022b65-a71b-4125-b78e-356ff98af9dc,https://biolit.fr/sorties/sortie-a9022b65-a71b-4125-b78e-356ff98af9dc/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253704000000,5.374422000000,,plage Borely,51538,observation-a9022b65-a71b-4125-b78e-356ff98af9dc-4,https://biolit.fr/observations/observation-a9022b65-a71b-4125-b78e-356ff98af9dc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0716-scaled.jpg,,FALSE, +N1,60778,sortie-a9022b65-a71b-4125-b78e-356ff98af9dc,https://biolit.fr/sorties/sortie-a9022b65-a71b-4125-b78e-356ff98af9dc/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253704000000,5.374422000000,,plage Borely,51540,observation-a9022b65-a71b-4125-b78e-356ff98af9dc-5,https://biolit.fr/observations/observation-a9022b65-a71b-4125-b78e-356ff98af9dc-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0717-scaled.jpg,,FALSE, +N1,60778,sortie-a9022b65-a71b-4125-b78e-356ff98af9dc,https://biolit.fr/sorties/sortie-a9022b65-a71b-4125-b78e-356ff98af9dc/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253704000000,5.374422000000,,plage Borely,51542,observation-a9022b65-a71b-4125-b78e-356ff98af9dc-6,https://biolit.fr/observations/observation-a9022b65-a71b-4125-b78e-356ff98af9dc-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0719-scaled.jpg,,FALSE, +N1,60779,sortie-0be73cba-ad80-44d1-92f7-7478cbdd8754,https://biolit.fr/sorties/sortie-0be73cba-ad80-44d1-92f7-7478cbdd8754/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253625000000,5.374433000000,,plage Borely,51544,observation-0be73cba-ad80-44d1-92f7-7478cbdd8754,https://biolit.fr/observations/observation-0be73cba-ad80-44d1-92f7-7478cbdd8754/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0673-scaled.jpg,,FALSE, +N1,60779,sortie-0be73cba-ad80-44d1-92f7-7478cbdd8754,https://biolit.fr/sorties/sortie-0be73cba-ad80-44d1-92f7-7478cbdd8754/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253625000000,5.374433000000,,plage Borely,51546,observation-0be73cba-ad80-44d1-92f7-7478cbdd8754-2,https://biolit.fr/observations/observation-0be73cba-ad80-44d1-92f7-7478cbdd8754-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0675-scaled.jpg,,FALSE, +N1,60779,sortie-0be73cba-ad80-44d1-92f7-7478cbdd8754,https://biolit.fr/sorties/sortie-0be73cba-ad80-44d1-92f7-7478cbdd8754/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253625000000,5.374433000000,,plage Borely,51548,observation-0be73cba-ad80-44d1-92f7-7478cbdd8754-3,https://biolit.fr/observations/observation-0be73cba-ad80-44d1-92f7-7478cbdd8754-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0677-scaled.jpg,,FALSE, +N1,60779,sortie-0be73cba-ad80-44d1-92f7-7478cbdd8754,https://biolit.fr/sorties/sortie-0be73cba-ad80-44d1-92f7-7478cbdd8754/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253625000000,5.374433000000,,plage Borely,51550,observation-0be73cba-ad80-44d1-92f7-7478cbdd8754-4,https://biolit.fr/observations/observation-0be73cba-ad80-44d1-92f7-7478cbdd8754-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0680-scaled.jpg,,FALSE, +N1,60779,sortie-0be73cba-ad80-44d1-92f7-7478cbdd8754,https://biolit.fr/sorties/sortie-0be73cba-ad80-44d1-92f7-7478cbdd8754/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253625000000,5.374433000000,,plage Borely,51552,observation-0be73cba-ad80-44d1-92f7-7478cbdd8754-5,https://biolit.fr/observations/observation-0be73cba-ad80-44d1-92f7-7478cbdd8754-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0684-scaled.jpg,,FALSE, +N1,60779,sortie-0be73cba-ad80-44d1-92f7-7478cbdd8754,https://biolit.fr/sorties/sortie-0be73cba-ad80-44d1-92f7-7478cbdd8754/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253625000000,5.374433000000,,plage Borely,51554,observation-0be73cba-ad80-44d1-92f7-7478cbdd8754-6,https://biolit.fr/observations/observation-0be73cba-ad80-44d1-92f7-7478cbdd8754-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0687-scaled.jpg,,FALSE, +N1,60780,sortie-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3,https://biolit.fr/sorties/sortie-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253610000000,5.374529000000,,plage Borely,51556,observation-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3,https://biolit.fr/observations/observation-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0654-scaled.jpg,,FALSE, +N1,60780,sortie-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3,https://biolit.fr/sorties/sortie-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253610000000,5.374529000000,,plage Borely,51558,observation-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3-2,https://biolit.fr/observations/observation-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0655-scaled.jpg,,FALSE, +N1,60780,sortie-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3,https://biolit.fr/sorties/sortie-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253610000000,5.374529000000,,plage Borely,51560,observation-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3-3,https://biolit.fr/observations/observation-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0659-scaled.jpg,,FALSE, +N1,60780,sortie-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3,https://biolit.fr/sorties/sortie-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253610000000,5.374529000000,,plage Borely,51562,observation-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3-4,https://biolit.fr/observations/observation-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0662-scaled.jpg,,FALSE, +N1,60780,sortie-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3,https://biolit.fr/sorties/sortie-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253610000000,5.374529000000,,plage Borely,51564,observation-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3-5,https://biolit.fr/observations/observation-ac96a749-dde8-4b02-82bc-0abfe2c3b6d3-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0661-scaled.jpg,,FALSE, +N1,60781,sortie-9ebd3acb-6d26-475b-b551-5d896a3b4b87,https://biolit.fr/sorties/sortie-9ebd3acb-6d26-475b-b551-5d896a3b4b87/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253516000000,5.374379000000,,plage Borely,51566,observation-9ebd3acb-6d26-475b-b551-5d896a3b4b87,https://biolit.fr/observations/observation-9ebd3acb-6d26-475b-b551-5d896a3b4b87/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0648-scaled.jpg,,FALSE, +N1,60781,sortie-9ebd3acb-6d26-475b-b551-5d896a3b4b87,https://biolit.fr/sorties/sortie-9ebd3acb-6d26-475b-b551-5d896a3b4b87/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253516000000,5.374379000000,,plage Borely,51568,observation-9ebd3acb-6d26-475b-b551-5d896a3b4b87-2,https://biolit.fr/observations/observation-9ebd3acb-6d26-475b-b551-5d896a3b4b87-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0650-scaled.jpg,,FALSE, +N1,60781,sortie-9ebd3acb-6d26-475b-b551-5d896a3b4b87,https://biolit.fr/sorties/sortie-9ebd3acb-6d26-475b-b551-5d896a3b4b87/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253516000000,5.374379000000,,plage Borely,51570,observation-9ebd3acb-6d26-475b-b551-5d896a3b4b87-3,https://biolit.fr/observations/observation-9ebd3acb-6d26-475b-b551-5d896a3b4b87-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0651-scaled.jpg,,FALSE, +N1,60781,sortie-9ebd3acb-6d26-475b-b551-5d896a3b4b87,https://biolit.fr/sorties/sortie-9ebd3acb-6d26-475b-b551-5d896a3b4b87/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253516000000,5.374379000000,,plage Borely,51572,observation-9ebd3acb-6d26-475b-b551-5d896a3b4b87-4,https://biolit.fr/observations/observation-9ebd3acb-6d26-475b-b551-5d896a3b4b87-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0652-scaled.jpg,,FALSE, +N1,60781,sortie-9ebd3acb-6d26-475b-b551-5d896a3b4b87,https://biolit.fr/sorties/sortie-9ebd3acb-6d26-475b-b551-5d896a3b4b87/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253516000000,5.374379000000,,plage Borely,51574,observation-9ebd3acb-6d26-475b-b551-5d896a3b4b87-5,https://biolit.fr/observations/observation-9ebd3acb-6d26-475b-b551-5d896a3b4b87-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0653-scaled.jpg,,FALSE, +N1,60782,sortie-ebacf119-a24a-4535-9284-cafd30b260ab,https://biolit.fr/sorties/sortie-ebacf119-a24a-4535-9284-cafd30b260ab/,NVanzu,,01/12/2017,14.0000000,16.0000000,43.253363000000,5.374189000000,,Plage borély,51576,observation-ebacf119-a24a-4535-9284-cafd30b260ab,https://biolit.fr/observations/observation-ebacf119-a24a-4535-9284-cafd30b260ab/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120069-scaled.jpg,,FALSE, +N1,60782,sortie-ebacf119-a24a-4535-9284-cafd30b260ab,https://biolit.fr/sorties/sortie-ebacf119-a24a-4535-9284-cafd30b260ab/,NVanzu,,01/12/2017,14.0000000,16.0000000,43.253363000000,5.374189000000,,Plage borély,51578,observation-ebacf119-a24a-4535-9284-cafd30b260ab-2,https://biolit.fr/observations/observation-ebacf119-a24a-4535-9284-cafd30b260ab-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120070-scaled.jpg,,FALSE, +N1,60782,sortie-ebacf119-a24a-4535-9284-cafd30b260ab,https://biolit.fr/sorties/sortie-ebacf119-a24a-4535-9284-cafd30b260ab/,NVanzu,,01/12/2017,14.0000000,16.0000000,43.253363000000,5.374189000000,,Plage borély,51580,observation-ebacf119-a24a-4535-9284-cafd30b260ab-3,https://biolit.fr/observations/observation-ebacf119-a24a-4535-9284-cafd30b260ab-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120071-scaled.jpg,,FALSE, +N1,60782,sortie-ebacf119-a24a-4535-9284-cafd30b260ab,https://biolit.fr/sorties/sortie-ebacf119-a24a-4535-9284-cafd30b260ab/,NVanzu,,01/12/2017,14.0000000,16.0000000,43.253363000000,5.374189000000,,Plage borély,51582,observation-ebacf119-a24a-4535-9284-cafd30b260ab-4,https://biolit.fr/observations/observation-ebacf119-a24a-4535-9284-cafd30b260ab-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120072-scaled.jpg,,FALSE, +N1,60782,sortie-ebacf119-a24a-4535-9284-cafd30b260ab,https://biolit.fr/sorties/sortie-ebacf119-a24a-4535-9284-cafd30b260ab/,NVanzu,,01/12/2017,14.0000000,16.0000000,43.253363000000,5.374189000000,,Plage borély,51584,observation-ebacf119-a24a-4535-9284-cafd30b260ab-5,https://biolit.fr/observations/observation-ebacf119-a24a-4535-9284-cafd30b260ab-5/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/P1120073-scaled.jpg,,TRUE, +N1,60782,sortie-ebacf119-a24a-4535-9284-cafd30b260ab,https://biolit.fr/sorties/sortie-ebacf119-a24a-4535-9284-cafd30b260ab/,NVanzu,,01/12/2017,14.0000000,16.0000000,43.253363000000,5.374189000000,,Plage borély,51586,observation-ebacf119-a24a-4535-9284-cafd30b260ab-6,https://biolit.fr/observations/observation-ebacf119-a24a-4535-9284-cafd30b260ab-6/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/P1120074-scaled.jpg,,TRUE, +N1,60782,sortie-ebacf119-a24a-4535-9284-cafd30b260ab,https://biolit.fr/sorties/sortie-ebacf119-a24a-4535-9284-cafd30b260ab/,NVanzu,,01/12/2017,14.0000000,16.0000000,43.253363000000,5.374189000000,,Plage borély,51588,observation-ebacf119-a24a-4535-9284-cafd30b260ab-7,https://biolit.fr/observations/observation-ebacf119-a24a-4535-9284-cafd30b260ab-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120092-scaled.jpg,,FALSE, +N1,60782,sortie-ebacf119-a24a-4535-9284-cafd30b260ab,https://biolit.fr/sorties/sortie-ebacf119-a24a-4535-9284-cafd30b260ab/,NVanzu,,01/12/2017,14.0000000,16.0000000,43.253363000000,5.374189000000,,Plage borély,51590,observation-ebacf119-a24a-4535-9284-cafd30b260ab-8,https://biolit.fr/observations/observation-ebacf119-a24a-4535-9284-cafd30b260ab-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1120082-scaled.jpg,,FALSE, +N1,60783,sortie-5a3f970b-23e5-4683-95cb-a6286d2aa008,https://biolit.fr/sorties/sortie-5a3f970b-23e5-4683-95cb-a6286d2aa008/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253516000000,5.37455100000,,plage Borely,51592,observation-5a3f970b-23e5-4683-95cb-a6286d2aa008,https://biolit.fr/observations/observation-5a3f970b-23e5-4683-95cb-a6286d2aa008/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0642-scaled.jpg,,FALSE, +N1,60783,sortie-5a3f970b-23e5-4683-95cb-a6286d2aa008,https://biolit.fr/sorties/sortie-5a3f970b-23e5-4683-95cb-a6286d2aa008/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253516000000,5.37455100000,,plage Borely,51594,observation-5a3f970b-23e5-4683-95cb-a6286d2aa008-2,https://biolit.fr/observations/observation-5a3f970b-23e5-4683-95cb-a6286d2aa008-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0643-scaled.jpg,,FALSE, +N1,60783,sortie-5a3f970b-23e5-4683-95cb-a6286d2aa008,https://biolit.fr/sorties/sortie-5a3f970b-23e5-4683-95cb-a6286d2aa008/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253516000000,5.37455100000,,plage Borely,51596,observation-5a3f970b-23e5-4683-95cb-a6286d2aa008-3,https://biolit.fr/observations/observation-5a3f970b-23e5-4683-95cb-a6286d2aa008-3/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0645-scaled.jpg,,TRUE, +N1,60783,sortie-5a3f970b-23e5-4683-95cb-a6286d2aa008,https://biolit.fr/sorties/sortie-5a3f970b-23e5-4683-95cb-a6286d2aa008/,ludovic,,01/12/2017,16.0000000,17.0000000,43.253516000000,5.37455100000,,plage Borely,51598,observation-5a3f970b-23e5-4683-95cb-a6286d2aa008-4,https://biolit.fr/observations/observation-5a3f970b-23e5-4683-95cb-a6286d2aa008-4/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0646-scaled.jpg,,TRUE, +N1,60784,sortie-04d2e072-b822-4160-b5b3-58aedb4b6059,https://biolit.fr/sorties/sortie-04d2e072-b822-4160-b5b3-58aedb4b6059/,ludovic,,01/12/2017,16.0000000,18.0000000,43.253547000000,5.374465000000,,plage Borely,51600,observation-04d2e072-b822-4160-b5b3-58aedb4b6059,https://biolit.fr/observations/observation-04d2e072-b822-4160-b5b3-58aedb4b6059/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0631-scaled.jpg,,FALSE, +N1,60784,sortie-04d2e072-b822-4160-b5b3-58aedb4b6059,https://biolit.fr/sorties/sortie-04d2e072-b822-4160-b5b3-58aedb4b6059/,ludovic,,01/12/2017,16.0000000,18.0000000,43.253547000000,5.374465000000,,plage Borely,51602,observation-04d2e072-b822-4160-b5b3-58aedb4b6059-2,https://biolit.fr/observations/observation-04d2e072-b822-4160-b5b3-58aedb4b6059-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0633-scaled.jpg,,FALSE, +N1,60784,sortie-04d2e072-b822-4160-b5b3-58aedb4b6059,https://biolit.fr/sorties/sortie-04d2e072-b822-4160-b5b3-58aedb4b6059/,ludovic,,01/12/2017,16.0000000,18.0000000,43.253547000000,5.374465000000,,plage Borely,51604,observation-04d2e072-b822-4160-b5b3-58aedb4b6059-3,https://biolit.fr/observations/observation-04d2e072-b822-4160-b5b3-58aedb4b6059-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0634-scaled.jpg,,FALSE, +N1,60784,sortie-04d2e072-b822-4160-b5b3-58aedb4b6059,https://biolit.fr/sorties/sortie-04d2e072-b822-4160-b5b3-58aedb4b6059/,ludovic,,01/12/2017,16.0000000,18.0000000,43.253547000000,5.374465000000,,plage Borely,51606,observation-04d2e072-b822-4160-b5b3-58aedb4b6059-4,https://biolit.fr/observations/observation-04d2e072-b822-4160-b5b3-58aedb4b6059-4/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0640-scaled.jpg,,TRUE, +N1,60784,sortie-04d2e072-b822-4160-b5b3-58aedb4b6059,https://biolit.fr/sorties/sortie-04d2e072-b822-4160-b5b3-58aedb4b6059/,ludovic,,01/12/2017,16.0000000,18.0000000,43.253547000000,5.374465000000,,plage Borely,51608,observation-04d2e072-b822-4160-b5b3-58aedb4b6059-5,https://biolit.fr/observations/observation-04d2e072-b822-4160-b5b3-58aedb4b6059-5/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0641-scaled.jpg,,TRUE, +N1,60785,sortie-8d2902ef-171c-4ffc-b090-28025100c1ff,https://biolit.fr/sorties/sortie-8d2902ef-171c-4ffc-b090-28025100c1ff/,Phil,,01/04/2017,16.0000000,16.0:45,48.096847000000,-4.33608000000,,Douarnenez - Finistère,51610,observation-8d2902ef-171c-4ffc-b090-28025100c1ff,https://biolit.fr/observations/observation-8d2902ef-171c-4ffc-b090-28025100c1ff/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170104_164438.jpg,,FALSE, +N1,60785,sortie-8d2902ef-171c-4ffc-b090-28025100c1ff,https://biolit.fr/sorties/sortie-8d2902ef-171c-4ffc-b090-28025100c1ff/,Phil,,01/04/2017,16.0000000,16.0:45,48.096847000000,-4.33608000000,,Douarnenez - Finistère,51612,observation-8d2902ef-171c-4ffc-b090-28025100c1ff-2,https://biolit.fr/observations/observation-8d2902ef-171c-4ffc-b090-28025100c1ff-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170104_163916.jpg,,FALSE, +N1,60785,sortie-8d2902ef-171c-4ffc-b090-28025100c1ff,https://biolit.fr/sorties/sortie-8d2902ef-171c-4ffc-b090-28025100c1ff/,Phil,,01/04/2017,16.0000000,16.0:45,48.096847000000,-4.33608000000,,Douarnenez - Finistère,51614,observation-8d2902ef-171c-4ffc-b090-28025100c1ff-3,https://biolit.fr/observations/observation-8d2902ef-171c-4ffc-b090-28025100c1ff-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170104_164137.jpg,,FALSE, +N1,60785,sortie-8d2902ef-171c-4ffc-b090-28025100c1ff,https://biolit.fr/sorties/sortie-8d2902ef-171c-4ffc-b090-28025100c1ff/,Phil,,01/04/2017,16.0000000,16.0:45,48.096847000000,-4.33608000000,,Douarnenez - Finistère,51616,observation-8d2902ef-171c-4ffc-b090-28025100c1ff-4,https://biolit.fr/observations/observation-8d2902ef-171c-4ffc-b090-28025100c1ff-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170104_164005.jpg,,FALSE, +N1,60785,sortie-8d2902ef-171c-4ffc-b090-28025100c1ff,https://biolit.fr/sorties/sortie-8d2902ef-171c-4ffc-b090-28025100c1ff/,Phil,,01/04/2017,16.0000000,16.0:45,48.096847000000,-4.33608000000,,Douarnenez - Finistère,51618,observation-8d2902ef-171c-4ffc-b090-28025100c1ff-5,https://biolit.fr/observations/observation-8d2902ef-171c-4ffc-b090-28025100c1ff-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170104_164024.jpg,,FALSE, +N1,60786,sortie-7615fc43-5261-482c-bbfc-5d4fc61a7f20,https://biolit.fr/sorties/sortie-7615fc43-5261-482c-bbfc-5d4fc61a7f20/,Ville de Marseille Leverrier CE2 CM1,,10/17/2016 0:00,9.0000000,11.0000000,43.273181000000,5.408218000000,,Anse de la Fausse Monnaie Marseille,51620,observation-7615fc43-5261-482c-bbfc-5d4fc61a7f20,https://biolit.fr/observations/observation-7615fc43-5261-482c-bbfc-5d4fc61a7f20/,Larus michahellis,Goéland leucophée,,https://biolit.fr/wp-content/uploads/2023/07/Goéland leucophée_Larus michahellis.JPG,,TRUE, +N1,60786,sortie-7615fc43-5261-482c-bbfc-5d4fc61a7f20,https://biolit.fr/sorties/sortie-7615fc43-5261-482c-bbfc-5d4fc61a7f20/,Ville de Marseille Leverrier CE2 CM1,,10/17/2016 0:00,9.0000000,11.0000000,43.273181000000,5.408218000000,,Anse de la Fausse Monnaie Marseille,51622,observation-7615fc43-5261-482c-bbfc-5d4fc61a7f20-2,https://biolit.fr/observations/observation-7615fc43-5261-482c-bbfc-5d4fc61a7f20-2/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/Crabe marbre_Pachygrapsus marmoratus.JPG,,TRUE, +N1,60786,sortie-7615fc43-5261-482c-bbfc-5d4fc61a7f20,https://biolit.fr/sorties/sortie-7615fc43-5261-482c-bbfc-5d4fc61a7f20/,Ville de Marseille Leverrier CE2 CM1,,10/17/2016 0:00,9.0000000,11.0000000,43.273181000000,5.408218000000,,Anse de la Fausse Monnaie Marseille,51624,observation-7615fc43-5261-482c-bbfc-5d4fc61a7f20-3,https://biolit.fr/observations/observation-7615fc43-5261-482c-bbfc-5d4fc61a7f20-3/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/os de seiche_0.jpg,,TRUE, +N1,60786,sortie-7615fc43-5261-482c-bbfc-5d4fc61a7f20,https://biolit.fr/sorties/sortie-7615fc43-5261-482c-bbfc-5d4fc61a7f20/,Ville de Marseille Leverrier CE2 CM1,,10/17/2016 0:00,9.0000000,11.0000000,43.273181000000,5.408218000000,,Anse de la Fausse Monnaie Marseille,51625,observation-7615fc43-5261-482c-bbfc-5d4fc61a7f20-4,https://biolit.fr/observations/observation-7615fc43-5261-482c-bbfc-5d4fc61a7f20-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/posidonie_posidonia oceanica-scaled.jpg,,FALSE, +N1,60786,sortie-7615fc43-5261-482c-bbfc-5d4fc61a7f20,https://biolit.fr/sorties/sortie-7615fc43-5261-482c-bbfc-5d4fc61a7f20/,Ville de Marseille Leverrier CE2 CM1,,10/17/2016 0:00,9.0000000,11.0000000,43.273181000000,5.408218000000,,Anse de la Fausse Monnaie Marseille,51626,observation-7615fc43-5261-482c-bbfc-5d4fc61a7f20-5,https://biolit.fr/observations/observation-7615fc43-5261-482c-bbfc-5d4fc61a7f20-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Rascasse_Scorpaena porcus.jpeg,,FALSE, +N1,60786,sortie-7615fc43-5261-482c-bbfc-5d4fc61a7f20,https://biolit.fr/sorties/sortie-7615fc43-5261-482c-bbfc-5d4fc61a7f20/,Ville de Marseille Leverrier CE2 CM1,,10/17/2016 0:00,9.0000000,11.0000000,43.273181000000,5.408218000000,,Anse de la Fausse Monnaie Marseille,51628,observation-7615fc43-5261-482c-bbfc-5d4fc61a7f20-6,https://biolit.fr/observations/observation-7615fc43-5261-482c-bbfc-5d4fc61a7f20-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Jusquiame-Hyoscyamus sp.JPG,,FALSE, +N1,60787,sortie-e8e68319-237c-4e07-b244-9b32f89b582e,https://biolit.fr/sorties/sortie-e8e68319-237c-4e07-b244-9b32f89b582e/,Audrey,,12/27/2016 0:00,14.0000000,15.0000000,49.568541000000,-1.843596000000,,Plage de Siouville-Hague,51630,observation-e8e68319-237c-4e07-b244-9b32f89b582e,https://biolit.fr/observations/observation-e8e68319-237c-4e07-b244-9b32f89b582e/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161227_Siouville (16)-scaled.jpg,,FALSE, +N1,60788,sortie-154e2f94-2e80-4e86-ac54-7fef07c6f9fa,https://biolit.fr/sorties/sortie-154e2f94-2e80-4e86-ac54-7fef07c6f9fa/,Phil,,12/18/2016 0:00,16.0000000,16.0:15,47.939257000000,-4.406118000000,,Pouldreuzic - Finistère,51632,observation-154e2f94-2e80-4e86-ac54-7fef07c6f9fa,https://biolit.fr/observations/observation-154e2f94-2e80-4e86-ac54-7fef07c6f9fa/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050509.JPG,,FALSE, +N1,60788,sortie-154e2f94-2e80-4e86-ac54-7fef07c6f9fa,https://biolit.fr/sorties/sortie-154e2f94-2e80-4e86-ac54-7fef07c6f9fa/,Phil,,12/18/2016 0:00,16.0000000,16.0:15,47.939257000000,-4.406118000000,,Pouldreuzic - Finistère,51634,observation-154e2f94-2e80-4e86-ac54-7fef07c6f9fa-2,https://biolit.fr/observations/observation-154e2f94-2e80-4e86-ac54-7fef07c6f9fa-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050524.JPG,,FALSE, +N1,60789,sortie-901c3dce-2766-4cb7-89da-9717cd4266c5,https://biolit.fr/sorties/sortie-901c3dce-2766-4cb7-89da-9717cd4266c5/,thomas,,12/13/2016 0:00,16.0000000,18.0000000,43.333796000000,5.197723000000,,ensues-la-redonne,51636,observation-901c3dce-2766-4cb7-89da-9717cd4266c5,https://biolit.fr/observations/observation-901c3dce-2766-4cb7-89da-9717cd4266c5/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/pic1-scaled.jpg,,TRUE, +N1,60790,sortie-7b0ad649-0753-40b7-9783-7af135ad75ac,https://biolit.fr/sorties/sortie-7b0ad649-0753-40b7-9783-7af135ad75ac/,XxLouisxX,,12/13/2016 0:00,14.0000000,17.0000000,43.333719000000,5.197714000000,,la plage des pébraÏres,51638,observation-7b0ad649-0753-40b7-9783-7af135ad75ac,https://biolit.fr/observations/observation-7b0ad649-0753-40b7-9783-7af135ad75ac/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/Pic1_7-scaled.jpg,,TRUE, +N1,60790,sortie-7b0ad649-0753-40b7-9783-7af135ad75ac,https://biolit.fr/sorties/sortie-7b0ad649-0753-40b7-9783-7af135ad75ac/,XxLouisxX,,12/13/2016 0:00,14.0000000,17.0000000,43.333719000000,5.197714000000,,la plage des pébraÏres,51640,observation-7b0ad649-0753-40b7-9783-7af135ad75ac-2,https://biolit.fr/observations/observation-7b0ad649-0753-40b7-9783-7af135ad75ac-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic2_9-scaled.jpg,,FALSE, +N1,60790,sortie-7b0ad649-0753-40b7-9783-7af135ad75ac,https://biolit.fr/sorties/sortie-7b0ad649-0753-40b7-9783-7af135ad75ac/,XxLouisxX,,12/13/2016 0:00,14.0000000,17.0000000,43.333719000000,5.197714000000,,la plage des pébraÏres,51642,observation-7b0ad649-0753-40b7-9783-7af135ad75ac-3,https://biolit.fr/observations/observation-7b0ad649-0753-40b7-9783-7af135ad75ac-3/,Ulva spp.,Ulve rigide,,https://biolit.fr/wp-content/uploads/2023/07/Pic3_7-scaled.jpg,,TRUE, +N1,60791,sortie-7c9788df-5879-465d-b099-69f20d21cc23,https://biolit.fr/sorties/sortie-7c9788df-5879-465d-b099-69f20d21cc23/,romisseu,,12/13/2016 0:00,14.0000000,17.0000000,43.333412000000,5.197173000000,,plage des pébraires,51644,observation-7c9788df-5879-465d-b099-69f20d21cc23,https://biolit.fr/observations/observation-7c9788df-5879-465d-b099-69f20d21cc23/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic1_8-scaled.jpg,,FALSE, +N1,60792,sortie-63c2d700-814c-436a-bad2-0fdedb64c0e7,https://biolit.fr/sorties/sortie-63c2d700-814c-436a-bad2-0fdedb64c0e7/,ambre.mohammedi,,01/10/2017,16.0000000,18.0000000,43.333578000000,5.197707000000,,la plage des prebaires ,51646,observation-63c2d700-814c-436a-bad2-0fdedb64c0e7,https://biolit.fr/observations/observation-63c2d700-814c-436a-bad2-0fdedb64c0e7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic2_7-scaled.jpg,,FALSE, +N1,60792,sortie-63c2d700-814c-436a-bad2-0fdedb64c0e7,https://biolit.fr/sorties/sortie-63c2d700-814c-436a-bad2-0fdedb64c0e7/,ambre.mohammedi,,01/10/2017,16.0000000,18.0000000,43.333578000000,5.197707000000,,la plage des prebaires ,51648,observation-63c2d700-814c-436a-bad2-0fdedb64c0e7-2,https://biolit.fr/observations/observation-63c2d700-814c-436a-bad2-0fdedb64c0e7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/picv-scaled.jpg,,FALSE, +N1,60793,sortie-4edbbb17-7cc5-4266-958e-253af1674e7d,https://biolit.fr/sorties/sortie-4edbbb17-7cc5-4266-958e-253af1674e7d/,marielina1,,01/10/2017,16.0000000,18.0000000,43.331241000000,5.202959000000,,calanque des anthénors,51650,observation-4edbbb17-7cc5-4266-958e-253af1674e7d,https://biolit.fr/observations/observation-4edbbb17-7cc5-4266-958e-253af1674e7d/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic1_4-scaled.jpg,,FALSE, +N1,60793,sortie-4edbbb17-7cc5-4266-958e-253af1674e7d,https://biolit.fr/sorties/sortie-4edbbb17-7cc5-4266-958e-253af1674e7d/,marielina1,,01/10/2017,16.0000000,18.0000000,43.331241000000,5.202959000000,,calanque des anthénors,51652,observation-4edbbb17-7cc5-4266-958e-253af1674e7d-2,https://biolit.fr/observations/observation-4edbbb17-7cc5-4266-958e-253af1674e7d-2/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/Pic2_2-scaled.jpg,,TRUE, +N1,60793,sortie-4edbbb17-7cc5-4266-958e-253af1674e7d,https://biolit.fr/sorties/sortie-4edbbb17-7cc5-4266-958e-253af1674e7d/,marielina1,,01/10/2017,16.0000000,18.0000000,43.331241000000,5.202959000000,,calanque des anthénors,51654,observation-4edbbb17-7cc5-4266-958e-253af1674e7d-3,https://biolit.fr/observations/observation-4edbbb17-7cc5-4266-958e-253af1674e7d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic3_2-scaled.jpg,,FALSE, +N1,60794,sortie-cc1307e1-62fe-4948-bf42-cad4b5fdebe8,https://biolit.fr/sorties/sortie-cc1307e1-62fe-4948-bf42-cad4b5fdebe8/,mmokhtari,,12/13/2016 0:00,13.0000000,17.0000000,43.330977000000,5.202970000000,,ENSUES LA REDONNE,51656,observation-cc1307e1-62fe-4948-bf42-cad4b5fdebe8,https://biolit.fr/observations/observation-cc1307e1-62fe-4948-bf42-cad4b5fdebe8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic1_3-scaled.jpg,,FALSE, +N1,60794,sortie-cc1307e1-62fe-4948-bf42-cad4b5fdebe8,https://biolit.fr/sorties/sortie-cc1307e1-62fe-4948-bf42-cad4b5fdebe8/,mmokhtari,,12/13/2016 0:00,13.0000000,17.0000000,43.330977000000,5.202970000000,,ENSUES LA REDONNE,51658,observation-cc1307e1-62fe-4948-bf42-cad4b5fdebe8-2,https://biolit.fr/observations/observation-cc1307e1-62fe-4948-bf42-cad4b5fdebe8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic2_5-scaled.jpg,,FALSE, +N1,60794,sortie-cc1307e1-62fe-4948-bf42-cad4b5fdebe8,https://biolit.fr/sorties/sortie-cc1307e1-62fe-4948-bf42-cad4b5fdebe8/,mmokhtari,,12/13/2016 0:00,13.0000000,17.0000000,43.330977000000,5.202970000000,,ENSUES LA REDONNE,51660,observation-cc1307e1-62fe-4948-bf42-cad4b5fdebe8-3,https://biolit.fr/observations/observation-cc1307e1-62fe-4948-bf42-cad4b5fdebe8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic3_5-scaled.jpg,,FALSE, +N1,60795,sortie-f6ea67c5-7de8-4c45-be5a-bc13e66dd47a,https://biolit.fr/sorties/sortie-f6ea67c5-7de8-4c45-be5a-bc13e66dd47a/,Phil,,11/29/2016 0:00,14.0:35,15.0000000,47.816950000000,-4.165921000000,,Loctudy - Finistère,51662,observation-f6ea67c5-7de8-4c45-be5a-bc13e66dd47a,https://biolit.fr/observations/observation-f6ea67c5-7de8-4c45-be5a-bc13e66dd47a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050185.JPG,,FALSE, +N1,60795,sortie-f6ea67c5-7de8-4c45-be5a-bc13e66dd47a,https://biolit.fr/sorties/sortie-f6ea67c5-7de8-4c45-be5a-bc13e66dd47a/,Phil,,11/29/2016 0:00,14.0:35,15.0000000,47.816950000000,-4.165921000000,,Loctudy - Finistère,51664,observation-f6ea67c5-7de8-4c45-be5a-bc13e66dd47a-2,https://biolit.fr/observations/observation-f6ea67c5-7de8-4c45-be5a-bc13e66dd47a-2/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/P1050138.JPG,,TRUE, +N1,60795,sortie-f6ea67c5-7de8-4c45-be5a-bc13e66dd47a,https://biolit.fr/sorties/sortie-f6ea67c5-7de8-4c45-be5a-bc13e66dd47a/,Phil,,11/29/2016 0:00,14.0:35,15.0000000,47.816950000000,-4.165921000000,,Loctudy - Finistère,51666,observation-f6ea67c5-7de8-4c45-be5a-bc13e66dd47a-3,https://biolit.fr/observations/observation-f6ea67c5-7de8-4c45-be5a-bc13e66dd47a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050140.JPG,,FALSE, +N1,60796,sortie-87eecbb4-70d6-43ce-83c5-c3f5911cd7fb,https://biolit.fr/sorties/sortie-87eecbb4-70d6-43ce-83c5-c3f5911cd7fb/,Phil,,12/13/2016 0:00,13.0000000,13.0:25,48.106866000000,-4.415192000000,,Poullan sur Mer - Finistère,51668,observation-87eecbb4-70d6-43ce-83c5-c3f5911cd7fb,https://biolit.fr/observations/observation-87eecbb4-70d6-43ce-83c5-c3f5911cd7fb/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050272.JPG,,TRUE, +N1,60796,sortie-87eecbb4-70d6-43ce-83c5-c3f5911cd7fb,https://biolit.fr/sorties/sortie-87eecbb4-70d6-43ce-83c5-c3f5911cd7fb/,Phil,,12/13/2016 0:00,13.0000000,13.0:25,48.106866000000,-4.415192000000,,Poullan sur Mer - Finistère,51670,observation-87eecbb4-70d6-43ce-83c5-c3f5911cd7fb-2,https://biolit.fr/observations/observation-87eecbb4-70d6-43ce-83c5-c3f5911cd7fb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050300.JPG,,FALSE, +N1,60796,sortie-87eecbb4-70d6-43ce-83c5-c3f5911cd7fb,https://biolit.fr/sorties/sortie-87eecbb4-70d6-43ce-83c5-c3f5911cd7fb/,Phil,,12/13/2016 0:00,13.0000000,13.0:25,48.106866000000,-4.415192000000,,Poullan sur Mer - Finistère,51672,observation-87eecbb4-70d6-43ce-83c5-c3f5911cd7fb-3,https://biolit.fr/observations/observation-87eecbb4-70d6-43ce-83c5-c3f5911cd7fb-3/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/P1050301.JPG,,TRUE, +N1,60797,sortie-4363a992-fecf-43c1-9a5b-23206cbfd231,https://biolit.fr/sorties/sortie-4363a992-fecf-43c1-9a5b-23206cbfd231/,Phil,,12/18/2016 0:00,17.0000000,17.0:15,47.923980000000,-4.38523300000,,Plovan- Finistère,51674,observation-4363a992-fecf-43c1-9a5b-23206cbfd231,https://biolit.fr/observations/observation-4363a992-fecf-43c1-9a5b-23206cbfd231/,Cygnus olor,Cygne tuberculé,,https://biolit.fr/wp-content/uploads/2023/07/P1050577.JPG,,TRUE, +N1,60797,sortie-4363a992-fecf-43c1-9a5b-23206cbfd231,https://biolit.fr/sorties/sortie-4363a992-fecf-43c1-9a5b-23206cbfd231/,Phil,,12/18/2016 0:00,17.0000000,17.0:15,47.923980000000,-4.38523300000,,Plovan- Finistère,51676,observation-4363a992-fecf-43c1-9a5b-23206cbfd231-2,https://biolit.fr/observations/observation-4363a992-fecf-43c1-9a5b-23206cbfd231-2/,Cygnus olor,Cygne tuberculé,,https://biolit.fr/wp-content/uploads/2023/07/P1050570.JPG,,TRUE, +N1,60797,sortie-4363a992-fecf-43c1-9a5b-23206cbfd231,https://biolit.fr/sorties/sortie-4363a992-fecf-43c1-9a5b-23206cbfd231/,Phil,,12/18/2016 0:00,17.0000000,17.0:15,47.923980000000,-4.38523300000,,Plovan- Finistère,51678,observation-4363a992-fecf-43c1-9a5b-23206cbfd231-3,https://biolit.fr/observations/observation-4363a992-fecf-43c1-9a5b-23206cbfd231-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050567.JPG,,FALSE, +N1,60797,sortie-4363a992-fecf-43c1-9a5b-23206cbfd231,https://biolit.fr/sorties/sortie-4363a992-fecf-43c1-9a5b-23206cbfd231/,Phil,,12/18/2016 0:00,17.0000000,17.0:15,47.923980000000,-4.38523300000,,Plovan- Finistère,51680,observation-4363a992-fecf-43c1-9a5b-23206cbfd231-4,https://biolit.fr/observations/observation-4363a992-fecf-43c1-9a5b-23206cbfd231-4/,Cygnus olor,Cygne tuberculé,,https://biolit.fr/wp-content/uploads/2023/07/P1050563.JPG,,TRUE, +N1,60798,sortie-aefa3040-bdfe-4174-8ca5-a38a8536b87e,https://biolit.fr/sorties/sortie-aefa3040-bdfe-4174-8ca5-a38a8536b87e/,Phil,,12/18/2016 0:00,15.0000000,15.0:35,47.941112000000,-4.408856000000,,Pouldreuzic - Finistère,51682,observation-aefa3040-bdfe-4174-8ca5-a38a8536b87e,https://biolit.fr/observations/observation-aefa3040-bdfe-4174-8ca5-a38a8536b87e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050458.JPG,,FALSE, +N1,60798,sortie-aefa3040-bdfe-4174-8ca5-a38a8536b87e,https://biolit.fr/sorties/sortie-aefa3040-bdfe-4174-8ca5-a38a8536b87e/,Phil,,12/18/2016 0:00,15.0000000,15.0:35,47.941112000000,-4.408856000000,,Pouldreuzic - Finistère,51684,observation-aefa3040-bdfe-4174-8ca5-a38a8536b87e-2,https://biolit.fr/observations/observation-aefa3040-bdfe-4174-8ca5-a38a8536b87e-2/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/P1050459.JPG,,TRUE, +N1,60798,sortie-aefa3040-bdfe-4174-8ca5-a38a8536b87e,https://biolit.fr/sorties/sortie-aefa3040-bdfe-4174-8ca5-a38a8536b87e/,Phil,,12/18/2016 0:00,15.0000000,15.0:35,47.941112000000,-4.408856000000,,Pouldreuzic - Finistère,51686,observation-aefa3040-bdfe-4174-8ca5-a38a8536b87e-3,https://biolit.fr/observations/observation-aefa3040-bdfe-4174-8ca5-a38a8536b87e-3/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1050454.JPG,,TRUE, +N1,60799,sortie-b2482ed2-f472-45d3-b822-530570974ad4,https://biolit.fr/sorties/sortie-b2482ed2-f472-45d3-b822-530570974ad4/,elams,,12/12/2016,14.0000000,16.0000000,43.33377700000,5.197731000000,,plage des pébraires ,51688,observation-b2482ed2-f472-45d3-b822-530570974ad4,https://biolit.fr/observations/observation-b2482ed2-f472-45d3-b822-530570974ad4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic1_5-scaled.jpg,,FALSE, +N1,60799,sortie-b2482ed2-f472-45d3-b822-530570974ad4,https://biolit.fr/sorties/sortie-b2482ed2-f472-45d3-b822-530570974ad4/,elams,,12/12/2016,14.0000000,16.0000000,43.33377700000,5.197731000000,,plage des pébraires ,51690,observation-b2482ed2-f472-45d3-b822-530570974ad4-2,https://biolit.fr/observations/observation-b2482ed2-f472-45d3-b822-530570974ad4-2/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/Pic2_3-scaled.jpg,,TRUE, +N1,60799,sortie-b2482ed2-f472-45d3-b822-530570974ad4,https://biolit.fr/sorties/sortie-b2482ed2-f472-45d3-b822-530570974ad4/,elams,,12/12/2016,14.0000000,16.0000000,43.33377700000,5.197731000000,,plage des pébraires ,51692,observation-b2482ed2-f472-45d3-b822-530570974ad4-3,https://biolit.fr/observations/observation-b2482ed2-f472-45d3-b822-530570974ad4-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic3_3-scaled.jpg,,FALSE, +N1,60800,sortie-3188a4a9-e127-44cc-8af6-d7f41bb55ff6,https://biolit.fr/sorties/sortie-3188a4a9-e127-44cc-8af6-d7f41bb55ff6/,gaby1851,,12/12/2016,14.0000000,16.0000000,43.333754000000,5.197722000000,,Calanque de La Redonne,51694,observation-3188a4a9-e127-44cc-8af6-d7f41bb55ff6,https://biolit.fr/observations/observation-3188a4a9-e127-44cc-8af6-d7f41bb55ff6/,Ulva spp.,Ulve rigide,,https://biolit.fr/wp-content/uploads/2023/07/Pic1_6-scaled.jpg,,TRUE, +N1,60800,sortie-3188a4a9-e127-44cc-8af6-d7f41bb55ff6,https://biolit.fr/sorties/sortie-3188a4a9-e127-44cc-8af6-d7f41bb55ff6/,gaby1851,,12/12/2016,14.0000000,16.0000000,43.333754000000,5.197722000000,,Calanque de La Redonne,51696,observation-3188a4a9-e127-44cc-8af6-d7f41bb55ff6-2,https://biolit.fr/observations/observation-3188a4a9-e127-44cc-8af6-d7f41bb55ff6-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Pic2_4-scaled.jpg,,TRUE, +N1,60800,sortie-3188a4a9-e127-44cc-8af6-d7f41bb55ff6,https://biolit.fr/sorties/sortie-3188a4a9-e127-44cc-8af6-d7f41bb55ff6/,gaby1851,,12/12/2016,14.0000000,16.0000000,43.333754000000,5.197722000000,,Calanque de La Redonne,51698,observation-3188a4a9-e127-44cc-8af6-d7f41bb55ff6-3,https://biolit.fr/observations/observation-3188a4a9-e127-44cc-8af6-d7f41bb55ff6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic3_4-scaled.jpg,,FALSE, +N1,60801,sortie-da78c109-0d30-49c9-b69e-0a36231f373d,https://biolit.fr/sorties/sortie-da78c109-0d30-49c9-b69e-0a36231f373d/,LS,,12/12/2016,14.0000000,17.0000000,43.333749000000,5.19772200000,,Calanque de La Redonne,51700,observation-da78c109-0d30-49c9-b69e-0a36231f373d,https://biolit.fr/observations/observation-da78c109-0d30-49c9-b69e-0a36231f373d/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic1_2-scaled.jpg,,FALSE, +N1,60802,sortie-89fcd657-3cd0-417d-89c3-8e960fcab45b,https://biolit.fr/sorties/sortie-89fcd657-3cd0-417d-89c3-8e960fcab45b/,imanazzi,,12/12/2016,13.0000000,17.0000000,43.333722000000,5.197911000000,,calanque de la redonne,51702,observation-89fcd657-3cd0-417d-89c3-8e960fcab45b,https://biolit.fr/observations/observation-89fcd657-3cd0-417d-89c3-8e960fcab45b/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/pic1-scaled.jpg,,TRUE, +N1,60802,sortie-89fcd657-3cd0-417d-89c3-8e960fcab45b,https://biolit.fr/sorties/sortie-89fcd657-3cd0-417d-89c3-8e960fcab45b/,imanazzi,,12/12/2016,13.0000000,17.0000000,43.333722000000,5.197911000000,,calanque de la redonne,51703,observation-89fcd657-3cd0-417d-89c3-8e960fcab45b-2,https://biolit.fr/observations/observation-89fcd657-3cd0-417d-89c3-8e960fcab45b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic3-scaled.jpg,,FALSE, +N1,60802,sortie-89fcd657-3cd0-417d-89c3-8e960fcab45b,https://biolit.fr/sorties/sortie-89fcd657-3cd0-417d-89c3-8e960fcab45b/,imanazzi,,12/12/2016,13.0000000,17.0000000,43.333722000000,5.197911000000,,calanque de la redonne,51705,observation-89fcd657-3cd0-417d-89c3-8e960fcab45b-3,https://biolit.fr/observations/observation-89fcd657-3cd0-417d-89c3-8e960fcab45b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic2-scaled.jpg,,FALSE, +N1,60803,sortie-7955b779-2285-411d-877d-ee696402603c,https://biolit.fr/sorties/sortie-7955b779-2285-411d-877d-ee696402603c/,eliesfernandez,,12/12/2016,14.0000000,17.0000000,43.333739000000,5.19773100000,,plage des prébaires,51707,observation-7955b779-2285-411d-877d-ee696402603c,https://biolit.fr/observations/observation-7955b779-2285-411d-877d-ee696402603c/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Pic1_0-scaled.jpg,,TRUE, +N1,60803,sortie-7955b779-2285-411d-877d-ee696402603c,https://biolit.fr/sorties/sortie-7955b779-2285-411d-877d-ee696402603c/,eliesfernandez,,12/12/2016,14.0000000,17.0000000,43.333739000000,5.19773100000,,plage des prébaires,51709,observation-7955b779-2285-411d-877d-ee696402603c-2,https://biolit.fr/observations/observation-7955b779-2285-411d-877d-ee696402603c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic2_0-scaled.jpg,,FALSE, +N1,60803,sortie-7955b779-2285-411d-877d-ee696402603c,https://biolit.fr/sorties/sortie-7955b779-2285-411d-877d-ee696402603c/,eliesfernandez,,12/12/2016,14.0000000,17.0000000,43.333739000000,5.19773100000,,plage des prébaires,51711,observation-7955b779-2285-411d-877d-ee696402603c-3,https://biolit.fr/observations/observation-7955b779-2285-411d-877d-ee696402603c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic3_0-scaled.jpg,,FALSE, +N1,60804,sortie-86b286e2-28e3-458c-bcd8-724bb74779b4,https://biolit.fr/sorties/sortie-86b286e2-28e3-458c-bcd8-724bb74779b4/,Anaïs13,,12/12/2016,14.0000000,16.0000000,43.333697000000,5.1976540000,,"Plage des Pébraires, Calanques de la Redonne",51713,observation-86b286e2-28e3-458c-bcd8-724bb74779b4,https://biolit.fr/observations/observation-86b286e2-28e3-458c-bcd8-724bb74779b4/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/Pic1_1-scaled.jpg,,TRUE, +N1,60804,sortie-86b286e2-28e3-458c-bcd8-724bb74779b4,https://biolit.fr/sorties/sortie-86b286e2-28e3-458c-bcd8-724bb74779b4/,Anaïs13,,12/12/2016,14.0000000,16.0000000,43.333697000000,5.1976540000,,"Plage des Pébraires, Calanques de la Redonne",51715,observation-86b286e2-28e3-458c-bcd8-724bb74779b4-2,https://biolit.fr/observations/observation-86b286e2-28e3-458c-bcd8-724bb74779b4-2/,Vermetus triquetrus,Petit vermet,,https://biolit.fr/wp-content/uploads/2023/07/Pic3_1-scaled.jpg,,TRUE, +N1,60804,sortie-86b286e2-28e3-458c-bcd8-724bb74779b4,https://biolit.fr/sorties/sortie-86b286e2-28e3-458c-bcd8-724bb74779b4/,Anaïs13,,12/12/2016,14.0000000,16.0000000,43.333697000000,5.1976540000,,"Plage des Pébraires, Calanques de la Redonne",51717,observation-86b286e2-28e3-458c-bcd8-724bb74779b4-3,https://biolit.fr/observations/observation-86b286e2-28e3-458c-bcd8-724bb74779b4-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pic2_1-scaled.jpg,,FALSE, +N1,60805,sortie-bf8b536c-3acf-467c-a486-24560100558e,https://biolit.fr/sorties/sortie-bf8b536c-3acf-467c-a486-24560100558e/,ville de Marseille Milan CM2,,11/07/2016,9.0000000,12.0000000,43.3078340000,5.347061000000,,"Pont de la Fausse Monnaie, Marseille",51719,observation-bf8b536c-3acf-467c-a486-24560100558e,https://biolit.fr/observations/observation-bf8b536c-3acf-467c-a486-24560100558e/,,,,https://biolit.fr/wp-content/uploads/2023/07/aegagropile pelote posidonie Posidonia oceanica .JPG,,FALSE, +N1,60805,sortie-bf8b536c-3acf-467c-a486-24560100558e,https://biolit.fr/sorties/sortie-bf8b536c-3acf-467c-a486-24560100558e/,ville de Marseille Milan CM2,,11/07/2016,9.0000000,12.0000000,43.3078340000,5.347061000000,,"Pont de la Fausse Monnaie, Marseille",51721,observation-bf8b536c-3acf-467c-a486-24560100558e-2,https://biolit.fr/observations/observation-bf8b536c-3acf-467c-a486-24560100558e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Algue brune Pterocladiella capillacea.JPG,,FALSE, +N1,60805,sortie-bf8b536c-3acf-467c-a486-24560100558e,https://biolit.fr/sorties/sortie-bf8b536c-3acf-467c-a486-24560100558e/,ville de Marseille Milan CM2,,11/07/2016,9.0000000,12.0000000,43.3078340000,5.347061000000,,"Pont de la Fausse Monnaie, Marseille",51723,observation-bf8b536c-3acf-467c-a486-24560100558e-3,https://biolit.fr/observations/observation-bf8b536c-3acf-467c-a486-24560100558e-3/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/Algue feutrée Codium bursa.JPG,,TRUE, +N1,60805,sortie-bf8b536c-3acf-467c-a486-24560100558e,https://biolit.fr/sorties/sortie-bf8b536c-3acf-467c-a486-24560100558e/,ville de Marseille Milan CM2,,11/07/2016,9.0000000,12.0000000,43.3078340000,5.347061000000,,"Pont de la Fausse Monnaie, Marseille",51725,observation-bf8b536c-3acf-467c-a486-24560100558e-4,https://biolit.fr/observations/observation-bf8b536c-3acf-467c-a486-24560100558e-4/,Caulerpa cylindracea,Caulerpe cylindracée,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Caulerpe raisin Caulerpa racemosa.JPG,,TRUE, +N1,60805,sortie-bf8b536c-3acf-467c-a486-24560100558e,https://biolit.fr/sorties/sortie-bf8b536c-3acf-467c-a486-24560100558e/,ville de Marseille Milan CM2,,11/07/2016,9.0000000,12.0000000,43.3078340000,5.347061000000,,"Pont de la Fausse Monnaie, Marseille",51727,observation-bf8b536c-3acf-467c-a486-24560100558e-5,https://biolit.fr/observations/observation-bf8b536c-3acf-467c-a486-24560100558e-5/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule toupie Monodonta turbinata.JPG,,TRUE, +N1,60805,sortie-bf8b536c-3acf-467c-a486-24560100558e,https://biolit.fr/sorties/sortie-bf8b536c-3acf-467c-a486-24560100558e/,ville de Marseille Milan CM2,,11/07/2016,9.0000000,12.0000000,43.3078340000,5.347061000000,,"Pont de la Fausse Monnaie, Marseille",51729,observation-bf8b536c-3acf-467c-a486-24560100558e-6,https://biolit.fr/observations/observation-bf8b536c-3acf-467c-a486-24560100558e-6/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/Littorine bleue Littoina neritoides.JPG,,TRUE, +N1,60805,sortie-bf8b536c-3acf-467c-a486-24560100558e,https://biolit.fr/sorties/sortie-bf8b536c-3acf-467c-a486-24560100558e/,ville de Marseille Milan CM2,,11/07/2016,9.0000000,12.0000000,43.3078340000,5.347061000000,,"Pont de la Fausse Monnaie, Marseille",51731,observation-bf8b536c-3acf-467c-a486-24560100558e-7,https://biolit.fr/observations/observation-bf8b536c-3acf-467c-a486-24560100558e-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/POSIDONIE-Posidonia oceanica-scaled.jpg,,FALSE, +N1,60805,sortie-bf8b536c-3acf-467c-a486-24560100558e,https://biolit.fr/sorties/sortie-bf8b536c-3acf-467c-a486-24560100558e/,ville de Marseille Milan CM2,,11/07/2016,9.0000000,12.0000000,43.3078340000,5.347061000000,,"Pont de la Fausse Monnaie, Marseille",51732,observation-bf8b536c-3acf-467c-a486-24560100558e-8,https://biolit.fr/observations/observation-bf8b536c-3acf-467c-a486-24560100558e-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sebdénie Sebdenia spp..JPG,,FALSE, +N1,60806,sortie-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8,https://biolit.fr/sorties/sortie-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8/,Phil,,12/13/2016 0:00,13.0:45,13.0000000,48.106580000000,-4.415307000000,,Poullan sur Mer - Finistère,51734,observation-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8,https://biolit.fr/observations/observation-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050337.JPG,,FALSE, +N1,60806,sortie-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8,https://biolit.fr/sorties/sortie-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8/,Phil,,12/13/2016 0:00,13.0:45,13.0000000,48.106580000000,-4.415307000000,,Poullan sur Mer - Finistère,51736,observation-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8-2,https://biolit.fr/observations/observation-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050336.JPG,,FALSE, +N1,60806,sortie-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8,https://biolit.fr/sorties/sortie-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8/,Phil,,12/13/2016 0:00,13.0:45,13.0000000,48.106580000000,-4.415307000000,,Poullan sur Mer - Finistère,51738,observation-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8-3,https://biolit.fr/observations/observation-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050327.JPG,,FALSE, +N1,60806,sortie-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8,https://biolit.fr/sorties/sortie-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8/,Phil,,12/13/2016 0:00,13.0:45,13.0000000,48.106580000000,-4.415307000000,,Poullan sur Mer - Finistère,51740,observation-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8-4,https://biolit.fr/observations/observation-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050330.JPG,,FALSE, +N1,60806,sortie-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8,https://biolit.fr/sorties/sortie-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8/,Phil,,12/13/2016 0:00,13.0:45,13.0000000,48.106580000000,-4.415307000000,,Poullan sur Mer - Finistère,51742,observation-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8-5,https://biolit.fr/observations/observation-ac21ef5e-ed1c-40ab-8152-24c8cf68bdb8-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050341.JPG,,FALSE, +N1,60807,sortie-957ea627-eb1c-4ac0-9dc2-07d540ed75b0,https://biolit.fr/sorties/sortie-957ea627-eb1c-4ac0-9dc2-07d540ed75b0/,Phil,,01/04/2017,16.0:35,16.0000000,48.097018000000,-4.33556300000,,Douarnenez - Finistère,51744,observation-957ea627-eb1c-4ac0-9dc2-07d540ed75b0,https://biolit.fr/observations/observation-957ea627-eb1c-4ac0-9dc2-07d540ed75b0/,,,,https://biolit.fr/wp-content/uploads/2023/07/20170104_163441.jpg,,FALSE, +N1,60807,sortie-957ea627-eb1c-4ac0-9dc2-07d540ed75b0,https://biolit.fr/sorties/sortie-957ea627-eb1c-4ac0-9dc2-07d540ed75b0/,Phil,,01/04/2017,16.0:35,16.0000000,48.097018000000,-4.33556300000,,Douarnenez - Finistère,51746,observation-957ea627-eb1c-4ac0-9dc2-07d540ed75b0-2,https://biolit.fr/observations/observation-957ea627-eb1c-4ac0-9dc2-07d540ed75b0-2/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/20170104_163542.jpg,,TRUE, +N1,60807,sortie-957ea627-eb1c-4ac0-9dc2-07d540ed75b0,https://biolit.fr/sorties/sortie-957ea627-eb1c-4ac0-9dc2-07d540ed75b0/,Phil,,01/04/2017,16.0:35,16.0000000,48.097018000000,-4.33556300000,,Douarnenez - Finistère,51748,observation-957ea627-eb1c-4ac0-9dc2-07d540ed75b0-3,https://biolit.fr/observations/observation-957ea627-eb1c-4ac0-9dc2-07d540ed75b0-3/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20170104_163730.jpg,,TRUE, +N1,60807,sortie-957ea627-eb1c-4ac0-9dc2-07d540ed75b0,https://biolit.fr/sorties/sortie-957ea627-eb1c-4ac0-9dc2-07d540ed75b0/,Phil,,01/04/2017,16.0:35,16.0000000,48.097018000000,-4.33556300000,,Douarnenez - Finistère,51750,observation-957ea627-eb1c-4ac0-9dc2-07d540ed75b0-4,https://biolit.fr/observations/observation-957ea627-eb1c-4ac0-9dc2-07d540ed75b0-4/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20170104_163843.jpg,,TRUE, +N1,60808,sortie-9b12b8d7-b1fb-48f6-bccf-40e8f0144289,https://biolit.fr/sorties/sortie-9b12b8d7-b1fb-48f6-bccf-40e8f0144289/,Phil,,12/18/2016 0:00,15.0:45,15.0000000,47.94149200000,-4.411942000000,,Pouldreuzic - Finistère,51752,observation-9b12b8d7-b1fb-48f6-bccf-40e8f0144289,https://biolit.fr/observations/observation-9b12b8d7-b1fb-48f6-bccf-40e8f0144289/,Gilvossius tyrrhenus,Callianasse matchotte,,https://biolit.fr/wp-content/uploads/2023/07/P1050504_1.JPG,,TRUE, +N1,60808,sortie-9b12b8d7-b1fb-48f6-bccf-40e8f0144289,https://biolit.fr/sorties/sortie-9b12b8d7-b1fb-48f6-bccf-40e8f0144289/,Phil,,12/18/2016 0:00,15.0:45,15.0000000,47.94149200000,-4.411942000000,,Pouldreuzic - Finistère,51754,observation-9b12b8d7-b1fb-48f6-bccf-40e8f0144289-2,https://biolit.fr/observations/observation-9b12b8d7-b1fb-48f6-bccf-40e8f0144289-2/,Gilvossius tyrrhenus,Callianasse matchotte,,https://biolit.fr/wp-content/uploads/2023/07/P1050492_0.JPG,,TRUE, +N1,60808,sortie-9b12b8d7-b1fb-48f6-bccf-40e8f0144289,https://biolit.fr/sorties/sortie-9b12b8d7-b1fb-48f6-bccf-40e8f0144289/,Phil,,12/18/2016 0:00,15.0:45,15.0000000,47.94149200000,-4.411942000000,,Pouldreuzic - Finistère,51756,observation-9b12b8d7-b1fb-48f6-bccf-40e8f0144289-3,https://biolit.fr/observations/observation-9b12b8d7-b1fb-48f6-bccf-40e8f0144289-3/,Gilvossius tyrrhenus,Callianasse matchotte,,https://biolit.fr/wp-content/uploads/2023/07/P1050496_0.JPG,,TRUE, +N1,60808,sortie-9b12b8d7-b1fb-48f6-bccf-40e8f0144289,https://biolit.fr/sorties/sortie-9b12b8d7-b1fb-48f6-bccf-40e8f0144289/,Phil,,12/18/2016 0:00,15.0:45,15.0000000,47.94149200000,-4.411942000000,,Pouldreuzic - Finistère,51758,observation-9b12b8d7-b1fb-48f6-bccf-40e8f0144289-4,https://biolit.fr/observations/observation-9b12b8d7-b1fb-48f6-bccf-40e8f0144289-4/,Gilvossius tyrrhenus,Callianasse matchotte,,https://biolit.fr/wp-content/uploads/2023/07/P1050497.JPG,,TRUE, +N1,60808,sortie-9b12b8d7-b1fb-48f6-bccf-40e8f0144289,https://biolit.fr/sorties/sortie-9b12b8d7-b1fb-48f6-bccf-40e8f0144289/,Phil,,12/18/2016 0:00,15.0:45,15.0000000,47.94149200000,-4.411942000000,,Pouldreuzic - Finistère,51760,observation-9b12b8d7-b1fb-48f6-bccf-40e8f0144289-5,https://biolit.fr/observations/observation-9b12b8d7-b1fb-48f6-bccf-40e8f0144289-5/,Gilvossius tyrrhenus,Callianasse matchotte,,https://biolit.fr/wp-content/uploads/2023/07/P1050501.JPG,,TRUE, +N1,60809,sortie-1d650453-b34a-471d-9faf-3a114463fb1d,https://biolit.fr/sorties/sortie-1d650453-b34a-471d-9faf-3a114463fb1d/,Phil,,12/13/2016 0:00,13.0000000,13.0000000,48.10655000000,-4.414936000000,,Poullan sur Mer - Finistère,51762,observation-1d650453-b34a-471d-9faf-3a114463fb1d,https://biolit.fr/observations/observation-1d650453-b34a-471d-9faf-3a114463fb1d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050311.JPG,,FALSE, +N1,60809,sortie-1d650453-b34a-471d-9faf-3a114463fb1d,https://biolit.fr/sorties/sortie-1d650453-b34a-471d-9faf-3a114463fb1d/,Phil,,12/13/2016 0:00,13.0000000,13.0000000,48.10655000000,-4.414936000000,,Poullan sur Mer - Finistère,51764,observation-1d650453-b34a-471d-9faf-3a114463fb1d-2,https://biolit.fr/observations/observation-1d650453-b34a-471d-9faf-3a114463fb1d-2/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1050315.JPG,,TRUE, +N1,60809,sortie-1d650453-b34a-471d-9faf-3a114463fb1d,https://biolit.fr/sorties/sortie-1d650453-b34a-471d-9faf-3a114463fb1d/,Phil,,12/13/2016 0:00,13.0000000,13.0000000,48.10655000000,-4.414936000000,,Poullan sur Mer - Finistère,51766,observation-1d650453-b34a-471d-9faf-3a114463fb1d-3,https://biolit.fr/observations/observation-1d650453-b34a-471d-9faf-3a114463fb1d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050316.JPG,,FALSE, +N1,60809,sortie-1d650453-b34a-471d-9faf-3a114463fb1d,https://biolit.fr/sorties/sortie-1d650453-b34a-471d-9faf-3a114463fb1d/,Phil,,12/13/2016 0:00,13.0000000,13.0000000,48.10655000000,-4.414936000000,,Poullan sur Mer - Finistère,51768,observation-1d650453-b34a-471d-9faf-3a114463fb1d-4,https://biolit.fr/observations/observation-1d650453-b34a-471d-9faf-3a114463fb1d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050319.JPG,,FALSE, +N1,60810,sortie-6e773139-a567-4714-9088-f67c53921b54,https://biolit.fr/sorties/sortie-6e773139-a567-4714-9088-f67c53921b54/,Phil,,12/18/2016 0:00,15.0000000,15.0000000,47.940587000000,-4.408180000000,,Pouldreuzic - Finistère,51770,observation-6e773139-a567-4714-9088-f67c53921b54,https://biolit.fr/observations/observation-6e773139-a567-4714-9088-f67c53921b54/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050429.JPG,,FALSE, +N1,60810,sortie-6e773139-a567-4714-9088-f67c53921b54,https://biolit.fr/sorties/sortie-6e773139-a567-4714-9088-f67c53921b54/,Phil,,12/18/2016 0:00,15.0000000,15.0000000,47.940587000000,-4.408180000000,,Pouldreuzic - Finistère,51772,observation-6e773139-a567-4714-9088-f67c53921b54-2,https://biolit.fr/observations/observation-6e773139-a567-4714-9088-f67c53921b54-2/,Rostanga rubra,Doris rouge,,https://biolit.fr/wp-content/uploads/2023/07/P1050433.JPG,,TRUE, +N1,60810,sortie-6e773139-a567-4714-9088-f67c53921b54,https://biolit.fr/sorties/sortie-6e773139-a567-4714-9088-f67c53921b54/,Phil,,12/18/2016 0:00,15.0000000,15.0000000,47.940587000000,-4.408180000000,,Pouldreuzic - Finistère,51774,observation-6e773139-a567-4714-9088-f67c53921b54-3,https://biolit.fr/observations/observation-6e773139-a567-4714-9088-f67c53921b54-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1050439.JPG,,TRUE, +N1,60810,sortie-6e773139-a567-4714-9088-f67c53921b54,https://biolit.fr/sorties/sortie-6e773139-a567-4714-9088-f67c53921b54/,Phil,,12/18/2016 0:00,15.0000000,15.0000000,47.940587000000,-4.408180000000,,Pouldreuzic - Finistère,51776,observation-6e773139-a567-4714-9088-f67c53921b54-4,https://biolit.fr/observations/observation-6e773139-a567-4714-9088-f67c53921b54-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050443.JPG,,TRUE, +N1,60811,sortie-e2f518f4-4c34-4350-96c1-9f22547dc68c,https://biolit.fr/sorties/sortie-e2f518f4-4c34-4350-96c1-9f22547dc68c/,Phil,,12/13/2016 0:00,13.0000000,13.0:15,48.106653000000,-4.415208000000,,Poullan sur Mer - Finistère,51778,observation-e2f518f4-4c34-4350-96c1-9f22547dc68c,https://biolit.fr/observations/observation-e2f518f4-4c34-4350-96c1-9f22547dc68c/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050249.JPG,,FALSE, +N1,60811,sortie-e2f518f4-4c34-4350-96c1-9f22547dc68c,https://biolit.fr/sorties/sortie-e2f518f4-4c34-4350-96c1-9f22547dc68c/,Phil,,12/13/2016 0:00,13.0000000,13.0:15,48.106653000000,-4.415208000000,,Poullan sur Mer - Finistère,51780,observation-e2f518f4-4c34-4350-96c1-9f22547dc68c-2,https://biolit.fr/observations/observation-e2f518f4-4c34-4350-96c1-9f22547dc68c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050250.JPG,,FALSE, +N1,60811,sortie-e2f518f4-4c34-4350-96c1-9f22547dc68c,https://biolit.fr/sorties/sortie-e2f518f4-4c34-4350-96c1-9f22547dc68c/,Phil,,12/13/2016 0:00,13.0000000,13.0:15,48.106653000000,-4.415208000000,,Poullan sur Mer - Finistère,51782,observation-e2f518f4-4c34-4350-96c1-9f22547dc68c-3,https://biolit.fr/observations/observation-e2f518f4-4c34-4350-96c1-9f22547dc68c-3/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/P1050253.JPG,,TRUE, +N1,60811,sortie-e2f518f4-4c34-4350-96c1-9f22547dc68c,https://biolit.fr/sorties/sortie-e2f518f4-4c34-4350-96c1-9f22547dc68c/,Phil,,12/13/2016 0:00,13.0000000,13.0:15,48.106653000000,-4.415208000000,,Poullan sur Mer - Finistère,51784,observation-e2f518f4-4c34-4350-96c1-9f22547dc68c-4,https://biolit.fr/observations/observation-e2f518f4-4c34-4350-96c1-9f22547dc68c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050256.JPG,,FALSE, +N1,60812,sortie-120e33d5-20da-49ab-9276-63e6c656fa3b,https://biolit.fr/sorties/sortie-120e33d5-20da-49ab-9276-63e6c656fa3b/,Phil,,11/26/2016 0:00,17.0000000,17.0000000,43.213071000000,5.536193000000,,Cassis - Bouches-du-Rhône,51786,observation-120e33d5-20da-49ab-9276-63e6c656fa3b,https://biolit.fr/observations/observation-120e33d5-20da-49ab-9276-63e6c656fa3b/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20161127_135239.jpg,,TRUE, +N1,60812,sortie-120e33d5-20da-49ab-9276-63e6c656fa3b,https://biolit.fr/sorties/sortie-120e33d5-20da-49ab-9276-63e6c656fa3b/,Phil,,11/26/2016 0:00,17.0000000,17.0000000,43.213071000000,5.536193000000,,Cassis - Bouches-du-Rhône,51788,observation-120e33d5-20da-49ab-9276-63e6c656fa3b-2,https://biolit.fr/observations/observation-120e33d5-20da-49ab-9276-63e6c656fa3b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161127_135255.jpg,,FALSE, +N1,60813,sortie-139ae7fc-3996-460c-8daf-11bab1f7c907,https://biolit.fr/sorties/sortie-139ae7fc-3996-460c-8daf-11bab1f7c907/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236057000000,5.360099000000,,plage de la bonne brise ,51790,observation-139ae7fc-3996-460c-8daf-11bab1f7c907,https://biolit.fr/observations/observation-139ae7fc-3996-460c-8daf-11bab1f7c907/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0437-scaled.jpg,,FALSE, +N1,60813,sortie-139ae7fc-3996-460c-8daf-11bab1f7c907,https://biolit.fr/sorties/sortie-139ae7fc-3996-460c-8daf-11bab1f7c907/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236057000000,5.360099000000,,plage de la bonne brise ,51792,observation-139ae7fc-3996-460c-8daf-11bab1f7c907-2,https://biolit.fr/observations/observation-139ae7fc-3996-460c-8daf-11bab1f7c907-2/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0441_0-scaled.jpg,,TRUE, +N1,60813,sortie-139ae7fc-3996-460c-8daf-11bab1f7c907,https://biolit.fr/sorties/sortie-139ae7fc-3996-460c-8daf-11bab1f7c907/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236057000000,5.360099000000,,plage de la bonne brise ,51794,observation-139ae7fc-3996-460c-8daf-11bab1f7c907-3,https://biolit.fr/observations/observation-139ae7fc-3996-460c-8daf-11bab1f7c907-3/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0442_0-scaled.jpg,,TRUE, +N1,60813,sortie-139ae7fc-3996-460c-8daf-11bab1f7c907,https://biolit.fr/sorties/sortie-139ae7fc-3996-460c-8daf-11bab1f7c907/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236057000000,5.360099000000,,plage de la bonne brise ,51796,observation-139ae7fc-3996-460c-8daf-11bab1f7c907-4,https://biolit.fr/observations/observation-139ae7fc-3996-460c-8daf-11bab1f7c907-4/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0445-scaled.jpg,,TRUE, +N1,60813,sortie-139ae7fc-3996-460c-8daf-11bab1f7c907,https://biolit.fr/sorties/sortie-139ae7fc-3996-460c-8daf-11bab1f7c907/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236057000000,5.360099000000,,plage de la bonne brise ,51798,observation-139ae7fc-3996-460c-8daf-11bab1f7c907-5,https://biolit.fr/observations/observation-139ae7fc-3996-460c-8daf-11bab1f7c907-5/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0447-scaled.jpg,,TRUE, +N1,60813,sortie-139ae7fc-3996-460c-8daf-11bab1f7c907,https://biolit.fr/sorties/sortie-139ae7fc-3996-460c-8daf-11bab1f7c907/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236057000000,5.360099000000,,plage de la bonne brise ,51800,observation-139ae7fc-3996-460c-8daf-11bab1f7c907-6,https://biolit.fr/observations/observation-139ae7fc-3996-460c-8daf-11bab1f7c907-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0457.jpg,,FALSE, +N1,60813,sortie-139ae7fc-3996-460c-8daf-11bab1f7c907,https://biolit.fr/sorties/sortie-139ae7fc-3996-460c-8daf-11bab1f7c907/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236057000000,5.360099000000,,plage de la bonne brise ,51802,observation-139ae7fc-3996-460c-8daf-11bab1f7c907-7,https://biolit.fr/observations/observation-139ae7fc-3996-460c-8daf-11bab1f7c907-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0464-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51804,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,Xantho poressa,Xanthe de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0365-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51805,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-2,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-2/,Xantho poressa,Xanthe de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0366-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51806,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-3,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0367-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51808,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-4,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-4/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0368-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51809,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-5,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0369-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51810,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-6,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-6/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0371-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51811,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-7,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0373-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51812,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-8,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0375-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51813,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-9,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-9/,Bittium latreillii,Cérithe de Latreille,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0378-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51814,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-10,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-10/,Bittium latreillii,Cérithe de Latreille,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0380-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51816,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-11,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-11/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0381-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51818,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-12,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-12/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0382-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51820,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-13,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0383-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51822,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-14,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0384-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51824,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-15,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0386-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51826,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-16,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0392-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51828,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-17,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0394-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51830,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-18,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0398-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51832,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-19,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0399-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51834,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-20,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0400-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51836,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-21,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0401-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51838,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-22,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-22/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0403-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51840,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-23,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-23/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0406-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51842,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-24,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-24/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0410-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51844,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-25,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-25/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0411_0.JPG,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51845,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-26,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0414-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51847,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-27,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0416_0-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51849,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-28,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0419_0-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51851,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-29,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-29/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0421_0-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51853,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-30,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-30/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0422-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51855,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-31,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0423_0-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51857,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-32,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0424-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51859,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-33,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-33/,Tritia incrassata,Nasse épaisse,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0425-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51861,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-34,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-34/,Tritia incrassata,Nasse épaisse,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0426_0-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51863,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-35,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-35/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0431_0-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51865,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-36,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-36/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0432_0-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51867,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-37,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0433_0-scaled.jpg,,FALSE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51869,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-38,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-38/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0435_0-scaled.jpg,,TRUE, +N1,60814,sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c,https://biolit.fr/sorties/sortie-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c/,ludovic,,12/22/2016 0:00,12.0000000,13.0000000,43.236015000000,5.360014000000,,plage de la bonne brise ,51871,observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-39,https://biolit.fr/observations/observation-a88f2f7e-784b-4fc7-9f9c-aeea10c7045c-39/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0436-scaled.jpg,,TRUE, +N1,60815,sortie-0758e05b-5a9f-48e2-ba6b-bd97d042ece4,https://biolit.fr/sorties/sortie-0758e05b-5a9f-48e2-ba6b-bd97d042ece4/,Phil,,12/18/2016 0:00,14.000005,14.0:15,47.940012000000,-4.414422000000,,Pouldreuzic - Finistère,51873,observation-0758e05b-5a9f-48e2-ba6b-bd97d042ece4,https://biolit.fr/observations/observation-0758e05b-5a9f-48e2-ba6b-bd97d042ece4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050403.JPG,,FALSE, +N1,60815,sortie-0758e05b-5a9f-48e2-ba6b-bd97d042ece4,https://biolit.fr/sorties/sortie-0758e05b-5a9f-48e2-ba6b-bd97d042ece4/,Phil,,12/18/2016 0:00,14.000005,14.0:15,47.940012000000,-4.414422000000,,Pouldreuzic - Finistère,51875,observation-0758e05b-5a9f-48e2-ba6b-bd97d042ece4-2,https://biolit.fr/observations/observation-0758e05b-5a9f-48e2-ba6b-bd97d042ece4-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050407.JPG,,TRUE, +N1,60815,sortie-0758e05b-5a9f-48e2-ba6b-bd97d042ece4,https://biolit.fr/sorties/sortie-0758e05b-5a9f-48e2-ba6b-bd97d042ece4/,Phil,,12/18/2016 0:00,14.000005,14.0:15,47.940012000000,-4.414422000000,,Pouldreuzic - Finistère,51877,observation-0758e05b-5a9f-48e2-ba6b-bd97d042ece4-3,https://biolit.fr/observations/observation-0758e05b-5a9f-48e2-ba6b-bd97d042ece4-3/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050414.JPG,,TRUE, +N1,60815,sortie-0758e05b-5a9f-48e2-ba6b-bd97d042ece4,https://biolit.fr/sorties/sortie-0758e05b-5a9f-48e2-ba6b-bd97d042ece4/,Phil,,12/18/2016 0:00,14.000005,14.0:15,47.940012000000,-4.414422000000,,Pouldreuzic - Finistère,51879,observation-0758e05b-5a9f-48e2-ba6b-bd97d042ece4-4,https://biolit.fr/observations/observation-0758e05b-5a9f-48e2-ba6b-bd97d042ece4-4/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050416.JPG,,TRUE, +N1,60815,sortie-0758e05b-5a9f-48e2-ba6b-bd97d042ece4,https://biolit.fr/sorties/sortie-0758e05b-5a9f-48e2-ba6b-bd97d042ece4/,Phil,,12/18/2016 0:00,14.000005,14.0:15,47.940012000000,-4.414422000000,,Pouldreuzic - Finistère,51881,observation-0758e05b-5a9f-48e2-ba6b-bd97d042ece4-5,https://biolit.fr/observations/observation-0758e05b-5a9f-48e2-ba6b-bd97d042ece4-5/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/P1050422.JPG,,TRUE, +N1,60816,sortie-7c5a3c45-51c5-49cb-b330-8c1af1d791d3,https://biolit.fr/sorties/sortie-7c5a3c45-51c5-49cb-b330-8c1af1d791d3/,Phil,,12/18/2016 0:00,14.0:15,14.0000000,47.923897000000,-4.385049000000,,Plovan- Finistère,51883,observation-7c5a3c45-51c5-49cb-b330-8c1af1d791d3,https://biolit.fr/observations/observation-7c5a3c45-51c5-49cb-b330-8c1af1d791d3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050578.JPG,,FALSE, +N1,60817,sortie-df89dedc-0d78-49fa-a787-66533215f374,https://biolit.fr/sorties/sortie-df89dedc-0d78-49fa-a787-66533215f374/,Phil,,12/13/2016 0:00,13.000005,13.0000000,48.106825000000,-4.41504500000,,Poullan sur Mer - Finistère,51885,observation-df89dedc-0d78-49fa-a787-66533215f374,https://biolit.fr/observations/observation-df89dedc-0d78-49fa-a787-66533215f374/,Ramalina siliquosa,Ramaline des rochers,,https://biolit.fr/wp-content/uploads/2023/07/P1050248.JPG,,TRUE, +N1,60817,sortie-df89dedc-0d78-49fa-a787-66533215f374,https://biolit.fr/sorties/sortie-df89dedc-0d78-49fa-a787-66533215f374/,Phil,,12/13/2016 0:00,13.000005,13.0000000,48.106825000000,-4.41504500000,,Poullan sur Mer - Finistère,51887,observation-df89dedc-0d78-49fa-a787-66533215f374-2,https://biolit.fr/observations/observation-df89dedc-0d78-49fa-a787-66533215f374-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050243.JPG,,FALSE, +N1,60818,sortie-e950e6ce-b128-4af7-854c-56418a16d9e6,https://biolit.fr/sorties/sortie-e950e6ce-b128-4af7-854c-56418a16d9e6/,Phil,,11/27/2016 0:00,13.0:55,14.000005,43.405196000000,4.977139000000,,Port-de-Bouc - Bouches-du-Rhône,51889,observation-e950e6ce-b128-4af7-854c-56418a16d9e6,https://biolit.fr/observations/observation-e950e6ce-b128-4af7-854c-56418a16d9e6/,Lobularia maritima,Alysson maritime,,https://biolit.fr/wp-content/uploads/2023/07/20161127_140149.jpg,,TRUE, +N1,60818,sortie-e950e6ce-b128-4af7-854c-56418a16d9e6,https://biolit.fr/sorties/sortie-e950e6ce-b128-4af7-854c-56418a16d9e6/,Phil,,11/27/2016 0:00,13.0:55,14.000005,43.405196000000,4.977139000000,,Port-de-Bouc - Bouches-du-Rhône,51891,observation-e950e6ce-b128-4af7-854c-56418a16d9e6-2,https://biolit.fr/observations/observation-e950e6ce-b128-4af7-854c-56418a16d9e6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161127_140116.jpg,,FALSE, +N1,60818,sortie-e950e6ce-b128-4af7-854c-56418a16d9e6,https://biolit.fr/sorties/sortie-e950e6ce-b128-4af7-854c-56418a16d9e6/,Phil,,11/27/2016 0:00,13.0:55,14.000005,43.405196000000,4.977139000000,,Port-de-Bouc - Bouches-du-Rhône,51893,observation-e950e6ce-b128-4af7-854c-56418a16d9e6-3,https://biolit.fr/observations/observation-e950e6ce-b128-4af7-854c-56418a16d9e6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161127_135451.jpg,,FALSE, +N1,60818,sortie-e950e6ce-b128-4af7-854c-56418a16d9e6,https://biolit.fr/sorties/sortie-e950e6ce-b128-4af7-854c-56418a16d9e6/,Phil,,11/27/2016 0:00,13.0:55,14.000005,43.405196000000,4.977139000000,,Port-de-Bouc - Bouches-du-Rhône,51895,observation-e950e6ce-b128-4af7-854c-56418a16d9e6-4,https://biolit.fr/observations/observation-e950e6ce-b128-4af7-854c-56418a16d9e6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161127_135712.jpg,,FALSE, +N1,60818,sortie-e950e6ce-b128-4af7-854c-56418a16d9e6,https://biolit.fr/sorties/sortie-e950e6ce-b128-4af7-854c-56418a16d9e6/,Phil,,11/27/2016 0:00,13.0:55,14.000005,43.405196000000,4.977139000000,,Port-de-Bouc - Bouches-du-Rhône,51897,observation-e950e6ce-b128-4af7-854c-56418a16d9e6-5,https://biolit.fr/observations/observation-e950e6ce-b128-4af7-854c-56418a16d9e6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161127_135857.jpg,,FALSE, +N1,60818,sortie-e950e6ce-b128-4af7-854c-56418a16d9e6,https://biolit.fr/sorties/sortie-e950e6ce-b128-4af7-854c-56418a16d9e6/,Phil,,11/27/2016 0:00,13.0:55,14.000005,43.405196000000,4.977139000000,,Port-de-Bouc - Bouches-du-Rhône,51899,observation-e950e6ce-b128-4af7-854c-56418a16d9e6-6,https://biolit.fr/observations/observation-e950e6ce-b128-4af7-854c-56418a16d9e6-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161127_140039.jpg,,FALSE, +N1,60819,sortie-b7d5c498-b62f-474e-a1ec-cc1d44a592c0,https://biolit.fr/sorties/sortie-b7d5c498-b62f-474e-a1ec-cc1d44a592c0/,Phil,,12/13/2016 0:00,13.0000000,13.000005,48.106838000000,-4.415966000000,,Poullan sur Mer - Finistère,51901,observation-b7d5c498-b62f-474e-a1ec-cc1d44a592c0,https://biolit.fr/observations/observation-b7d5c498-b62f-474e-a1ec-cc1d44a592c0/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/P1050239.JPG,,TRUE, +N1,60819,sortie-b7d5c498-b62f-474e-a1ec-cc1d44a592c0,https://biolit.fr/sorties/sortie-b7d5c498-b62f-474e-a1ec-cc1d44a592c0/,Phil,,12/13/2016 0:00,13.0000000,13.000005,48.106838000000,-4.415966000000,,Poullan sur Mer - Finistère,51903,observation-b7d5c498-b62f-474e-a1ec-cc1d44a592c0-2,https://biolit.fr/observations/observation-b7d5c498-b62f-474e-a1ec-cc1d44a592c0-2/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/P1050241.JPG,,TRUE, +N1,60820,sortie-aa1533e6-6f61-4225-b308-a3657883ce55,https://biolit.fr/sorties/sortie-aa1533e6-6f61-4225-b308-a3657883ce55/,Phil,,12/18/2016 0:00,15.0:55,16.000005,47.924995000000,-4.387109000000,,Plovan- Finistère,51905,observation-aa1533e6-6f61-4225-b308-a3657883ce55,https://biolit.fr/observations/observation-aa1533e6-6f61-4225-b308-a3657883ce55/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050559.JPG,,FALSE, +N1,60820,sortie-aa1533e6-6f61-4225-b308-a3657883ce55,https://biolit.fr/sorties/sortie-aa1533e6-6f61-4225-b308-a3657883ce55/,Phil,,12/18/2016 0:00,15.0:55,16.000005,47.924995000000,-4.387109000000,,Plovan- Finistère,51907,observation-aa1533e6-6f61-4225-b308-a3657883ce55-2,https://biolit.fr/observations/observation-aa1533e6-6f61-4225-b308-a3657883ce55-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050556.JPG,,FALSE, +N1,60820,sortie-aa1533e6-6f61-4225-b308-a3657883ce55,https://biolit.fr/sorties/sortie-aa1533e6-6f61-4225-b308-a3657883ce55/,Phil,,12/18/2016 0:00,15.0:55,16.000005,47.924995000000,-4.387109000000,,Plovan- Finistère,51909,observation-aa1533e6-6f61-4225-b308-a3657883ce55-3,https://biolit.fr/observations/observation-aa1533e6-6f61-4225-b308-a3657883ce55-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050558.JPG,,FALSE, +N1,60820,sortie-aa1533e6-6f61-4225-b308-a3657883ce55,https://biolit.fr/sorties/sortie-aa1533e6-6f61-4225-b308-a3657883ce55/,Phil,,12/18/2016 0:00,15.0:55,16.000005,47.924995000000,-4.387109000000,,Plovan- Finistère,51911,observation-aa1533e6-6f61-4225-b308-a3657883ce55-4,https://biolit.fr/observations/observation-aa1533e6-6f61-4225-b308-a3657883ce55-4/,Calidris alba,Bécasseau sanderling,,https://biolit.fr/wp-content/uploads/2023/07/P1050552.JPG,,TRUE, +N1,60821,sortie-21bdd1eb-d557-4c41-87da-86d7aa847bf9,https://biolit.fr/sorties/sortie-21bdd1eb-d557-4c41-87da-86d7aa847bf9/,Phil,,12/18/2016 0:00,13.0000000,14.0000000,47.940098000000,-4.414819000000,,Pouldreuzic - Finistère,51913,observation-21bdd1eb-d557-4c41-87da-86d7aa847bf9,https://biolit.fr/observations/observation-21bdd1eb-d557-4c41-87da-86d7aa847bf9/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1050386.JPG,,TRUE, +N1,60821,sortie-21bdd1eb-d557-4c41-87da-86d7aa847bf9,https://biolit.fr/sorties/sortie-21bdd1eb-d557-4c41-87da-86d7aa847bf9/,Phil,,12/18/2016 0:00,13.0000000,14.0000000,47.940098000000,-4.414819000000,,Pouldreuzic - Finistère,51915,observation-21bdd1eb-d557-4c41-87da-86d7aa847bf9-2,https://biolit.fr/observations/observation-21bdd1eb-d557-4c41-87da-86d7aa847bf9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050387.JPG,,FALSE, +N1,60821,sortie-21bdd1eb-d557-4c41-87da-86d7aa847bf9,https://biolit.fr/sorties/sortie-21bdd1eb-d557-4c41-87da-86d7aa847bf9/,Phil,,12/18/2016 0:00,13.0000000,14.0000000,47.940098000000,-4.414819000000,,Pouldreuzic - Finistère,51917,observation-21bdd1eb-d557-4c41-87da-86d7aa847bf9-3,https://biolit.fr/observations/observation-21bdd1eb-d557-4c41-87da-86d7aa847bf9-3/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1050388.JPG,,TRUE, +N1,60821,sortie-21bdd1eb-d557-4c41-87da-86d7aa847bf9,https://biolit.fr/sorties/sortie-21bdd1eb-d557-4c41-87da-86d7aa847bf9/,Phil,,12/18/2016 0:00,13.0000000,14.0000000,47.940098000000,-4.414819000000,,Pouldreuzic - Finistère,51919,observation-21bdd1eb-d557-4c41-87da-86d7aa847bf9-4,https://biolit.fr/observations/observation-21bdd1eb-d557-4c41-87da-86d7aa847bf9-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050391.JPG,,FALSE, +N1,60821,sortie-21bdd1eb-d557-4c41-87da-86d7aa847bf9,https://biolit.fr/sorties/sortie-21bdd1eb-d557-4c41-87da-86d7aa847bf9/,Phil,,12/18/2016 0:00,13.0000000,14.0000000,47.940098000000,-4.414819000000,,Pouldreuzic - Finistère,51921,observation-21bdd1eb-d557-4c41-87da-86d7aa847bf9-5,https://biolit.fr/observations/observation-21bdd1eb-d557-4c41-87da-86d7aa847bf9-5/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1050392.JPG,,TRUE, +N1,60821,sortie-21bdd1eb-d557-4c41-87da-86d7aa847bf9,https://biolit.fr/sorties/sortie-21bdd1eb-d557-4c41-87da-86d7aa847bf9/,Phil,,12/18/2016 0:00,13.0000000,14.0000000,47.940098000000,-4.414819000000,,Pouldreuzic - Finistère,51923,observation-21bdd1eb-d557-4c41-87da-86d7aa847bf9-6,https://biolit.fr/observations/observation-21bdd1eb-d557-4c41-87da-86d7aa847bf9-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050381.JPG,,FALSE, +N1,60822,sortie-b2fb705f-5758-4ab2-bb22-2da6ade68bb6,https://biolit.fr/sorties/sortie-b2fb705f-5758-4ab2-bb22-2da6ade68bb6/,Phil,,12/13/2016 0:00,12.0:45,13.0000000,48.106692000000,-4.415100000000,,Poullan sur Mer - Finistère,51925,observation-b2fb705f-5758-4ab2-bb22-2da6ade68bb6,https://biolit.fr/observations/observation-b2fb705f-5758-4ab2-bb22-2da6ade68bb6/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1050210.JPG,,TRUE, +N1,60822,sortie-b2fb705f-5758-4ab2-bb22-2da6ade68bb6,https://biolit.fr/sorties/sortie-b2fb705f-5758-4ab2-bb22-2da6ade68bb6/,Phil,,12/13/2016 0:00,12.0:45,13.0000000,48.106692000000,-4.415100000000,,Poullan sur Mer - Finistère,51927,observation-b2fb705f-5758-4ab2-bb22-2da6ade68bb6-2,https://biolit.fr/observations/observation-b2fb705f-5758-4ab2-bb22-2da6ade68bb6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050211.JPG,,FALSE, +N1,60822,sortie-b2fb705f-5758-4ab2-bb22-2da6ade68bb6,https://biolit.fr/sorties/sortie-b2fb705f-5758-4ab2-bb22-2da6ade68bb6/,Phil,,12/13/2016 0:00,12.0:45,13.0000000,48.106692000000,-4.415100000000,,Poullan sur Mer - Finistère,51929,observation-b2fb705f-5758-4ab2-bb22-2da6ade68bb6-3,https://biolit.fr/observations/observation-b2fb705f-5758-4ab2-bb22-2da6ade68bb6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050215.JPG,,FALSE, +N1,60822,sortie-b2fb705f-5758-4ab2-bb22-2da6ade68bb6,https://biolit.fr/sorties/sortie-b2fb705f-5758-4ab2-bb22-2da6ade68bb6/,Phil,,12/13/2016 0:00,12.0:45,13.0000000,48.106692000000,-4.415100000000,,Poullan sur Mer - Finistère,51931,observation-b2fb705f-5758-4ab2-bb22-2da6ade68bb6-4,https://biolit.fr/observations/observation-b2fb705f-5758-4ab2-bb22-2da6ade68bb6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050224.JPG,,FALSE, +N1,60822,sortie-b2fb705f-5758-4ab2-bb22-2da6ade68bb6,https://biolit.fr/sorties/sortie-b2fb705f-5758-4ab2-bb22-2da6ade68bb6/,Phil,,12/13/2016 0:00,12.0:45,13.0000000,48.106692000000,-4.415100000000,,Poullan sur Mer - Finistère,51933,observation-b2fb705f-5758-4ab2-bb22-2da6ade68bb6-5,https://biolit.fr/observations/observation-b2fb705f-5758-4ab2-bb22-2da6ade68bb6-5/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050227.JPG,,TRUE, +N1,60822,sortie-b2fb705f-5758-4ab2-bb22-2da6ade68bb6,https://biolit.fr/sorties/sortie-b2fb705f-5758-4ab2-bb22-2da6ade68bb6/,Phil,,12/13/2016 0:00,12.0:45,13.0000000,48.106692000000,-4.415100000000,,Poullan sur Mer - Finistère,51935,observation-b2fb705f-5758-4ab2-bb22-2da6ade68bb6-6,https://biolit.fr/observations/observation-b2fb705f-5758-4ab2-bb22-2da6ade68bb6-6/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1050234.JPG,,TRUE, +N1,60823,sortie-a9e4e5b1-b3f5-42bf-a9ce-06c015df401f,https://biolit.fr/sorties/sortie-a9e4e5b1-b3f5-42bf-a9ce-06c015df401f/,Phil,,11/29/2016 0:00,14.0:55,15.0000000,47.815667000000,-4.163818000000,,Loctudy - Finistère,51937,observation-a9e4e5b1-b3f5-42bf-a9ce-06c015df401f,https://biolit.fr/observations/observation-a9e4e5b1-b3f5-42bf-a9ce-06c015df401f/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050179.JPG,,FALSE, +N1,60824,sortie-18f59139-129a-4fda-a68c-7abe3eb5984b,https://biolit.fr/sorties/sortie-18f59139-129a-4fda-a68c-7abe3eb5984b/,Phil,,12/18/2016 0:00,13.0000000,13.0:45,47.940018000000,-4.408094000000,,Pouldreuzic - Finistère,51939,observation-18f59139-129a-4fda-a68c-7abe3eb5984b,https://biolit.fr/observations/observation-18f59139-129a-4fda-a68c-7abe3eb5984b/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/P1050368.JPG,,TRUE, +N1,60824,sortie-18f59139-129a-4fda-a68c-7abe3eb5984b,https://biolit.fr/sorties/sortie-18f59139-129a-4fda-a68c-7abe3eb5984b/,Phil,,12/18/2016 0:00,13.0000000,13.0:45,47.940018000000,-4.408094000000,,Pouldreuzic - Finistère,51941,observation-18f59139-129a-4fda-a68c-7abe3eb5984b-2,https://biolit.fr/observations/observation-18f59139-129a-4fda-a68c-7abe3eb5984b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050363.JPG,,FALSE, +N1,60824,sortie-18f59139-129a-4fda-a68c-7abe3eb5984b,https://biolit.fr/sorties/sortie-18f59139-129a-4fda-a68c-7abe3eb5984b/,Phil,,12/18/2016 0:00,13.0000000,13.0:45,47.940018000000,-4.408094000000,,Pouldreuzic - Finistère,51943,observation-18f59139-129a-4fda-a68c-7abe3eb5984b-3,https://biolit.fr/observations/observation-18f59139-129a-4fda-a68c-7abe3eb5984b-3/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1050355.JPG,,TRUE, +N1,60824,sortie-18f59139-129a-4fda-a68c-7abe3eb5984b,https://biolit.fr/sorties/sortie-18f59139-129a-4fda-a68c-7abe3eb5984b/,Phil,,12/18/2016 0:00,13.0000000,13.0:45,47.940018000000,-4.408094000000,,Pouldreuzic - Finistère,51945,observation-18f59139-129a-4fda-a68c-7abe3eb5984b-4,https://biolit.fr/observations/observation-18f59139-129a-4fda-a68c-7abe3eb5984b-4/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/P1050344.JPG,,TRUE, +N1,60825,sortie-ccfc6610-75d4-47d7-9459-68d59d1b8e95,https://biolit.fr/sorties/sortie-ccfc6610-75d4-47d7-9459-68d59d1b8e95/,Marine,,11/28/2016 0:00,11.0000000,12.0000000,43.280437000000,5.352835000000,,Anse de la Fausse Monnaie,51947,observation-ccfc6610-75d4-47d7-9459-68d59d1b8e95,https://biolit.fr/observations/observation-ccfc6610-75d4-47d7-9459-68d59d1b8e95/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2030-scaled.jpg,,FALSE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51949,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c/,Halopteris scoparia,Algue balai,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0416-scaled.jpg,,TRUE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51951,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-2,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0417-scaled.jpg,,TRUE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51953,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-3,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-3/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0444-scaled.jpg,,TRUE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51955,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-4,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0443-scaled.jpg,,FALSE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51957,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-5,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0442-scaled.jpg,,FALSE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51959,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-6,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0441-scaled.jpg,,FALSE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51961,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-7,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0438-scaled.jpg,,FALSE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51963,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-8,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0435-scaled.jpg,,FALSE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51965,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-9,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0433-scaled.jpg,,FALSE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51967,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-10,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-10/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0432-scaled.jpg,,TRUE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51969,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-11,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-11/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0431-scaled.jpg,,TRUE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51971,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-12,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-12/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0430-scaled.jpg,,TRUE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51973,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-13,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-13/,Ulva spp.,Ulve rigide,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0429-scaled.jpg,,TRUE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51975,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-14,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-14/,Ulva spp.,Ulve rigide,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0426-scaled.jpg,,TRUE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51977,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-15,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0428-scaled.jpg,,FALSE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51979,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-16,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0427-scaled.jpg,,FALSE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51981,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-17,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-17/,Flabellia petiolata,Udotée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0423-scaled.jpg,,TRUE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51983,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-18,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0421-scaled.jpg,,FALSE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51985,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-19,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0418-scaled.jpg,,FALSE, +N1,60826,sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c,https://biolit.fr/sorties/sortie-82aa3c0c-c122-4d67-b888-0c5d5698781c/,ludovic,,12/15/2016 0:00,14.000005,16.000005,43.239924000000,5.362461000000,,bain des dames,51987,observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-20,https://biolit.fr/observations/observation-82aa3c0c-c122-4d67-b888-0c5d5698781c-20/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0419-scaled.jpg,,TRUE, +N1,60827,sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77,https://biolit.fr/sorties/sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77/,FannyC,,12/15/2016 0:00,14.0:15,15.0000000,43.239930000000,5.362465000000,,Bain des dames,51989,observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77,https://biolit.fr/observations/observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/15536861_10211600844159995_2010779871_o_2.jpg,,TRUE, +N1,60827,sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77,https://biolit.fr/sorties/sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77/,FannyC,,12/15/2016 0:00,14.0:15,15.0000000,43.239930000000,5.362465000000,,Bain des dames,51991,observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-2,https://biolit.fr/observations/observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/15537070_10211600849800136_1770966268_o.jpg,,TRUE, +N1,60827,sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77,https://biolit.fr/sorties/sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77/,FannyC,,12/15/2016 0:00,14.0:15,15.0000000,43.239930000000,5.362465000000,,Bain des dames,51993,observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-3,https://biolit.fr/observations/observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-3/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/15540298_10211600842399951_1935391336_o.jpg,,TRUE, +N1,60827,sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77,https://biolit.fr/sorties/sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77/,FannyC,,12/15/2016 0:00,14.0:15,15.0000000,43.239930000000,5.362465000000,,Bain des dames,51995,observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-4,https://biolit.fr/observations/observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-4/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/15540554_10211600849760135_976733479_o.jpg,,TRUE, +N1,60827,sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77,https://biolit.fr/sorties/sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77/,FannyC,,12/15/2016 0:00,14.0:15,15.0000000,43.239930000000,5.362465000000,,Bain des dames,51997,observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-5,https://biolit.fr/observations/observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/15555431_10211600849720134_1334732016_o.jpg,,FALSE, +N1,60827,sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77,https://biolit.fr/sorties/sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77/,FannyC,,12/15/2016 0:00,14.0:15,15.0000000,43.239930000000,5.362465000000,,Bain des dames,51999,observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-6,https://biolit.fr/observations/observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/15540339_10211600842839962_2129510213_o.jpg,,FALSE, +N1,60827,sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77,https://biolit.fr/sorties/sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77/,FannyC,,12/15/2016 0:00,14.0:15,15.0000000,43.239930000000,5.362465000000,,Bain des dames,52001,observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-7,https://biolit.fr/observations/observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-7/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/15555140_10211600850480153_230943522_o.jpg,,TRUE, +N1,60827,sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77,https://biolit.fr/sorties/sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77/,FannyC,,12/15/2016 0:00,14.0:15,15.0000000,43.239930000000,5.362465000000,,Bain des dames,52003,observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-8,https://biolit.fr/observations/observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/15555342_10211600850640157_400107468_o.jpg,,FALSE, +N1,60827,sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77,https://biolit.fr/sorties/sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77/,FannyC,,12/15/2016 0:00,14.0:15,15.0000000,43.239930000000,5.362465000000,,Bain des dames,52005,observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-9,https://biolit.fr/observations/observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/15515616_10211600849680133_1276436995_o.jpg,,FALSE, +N1,60827,sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77,https://biolit.fr/sorties/sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77/,FannyC,,12/15/2016 0:00,14.0:15,15.0000000,43.239930000000,5.362465000000,,Bain des dames,52007,observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-10,https://biolit.fr/observations/observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/15595798_10211600850080143_1455901975_o.jpg,,FALSE, +N1,60827,sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77,https://biolit.fr/sorties/sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77/,FannyC,,12/15/2016 0:00,14.0:15,15.0000000,43.239930000000,5.362465000000,,Bain des dames,52009,observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-11,https://biolit.fr/observations/observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/15595755_10211600850320149_1011012516_o.jpg,,FALSE, +N1,60827,sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77,https://biolit.fr/sorties/sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77/,FannyC,,12/15/2016 0:00,14.0:15,15.0000000,43.239930000000,5.362465000000,,Bain des dames,52011,observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-12,https://biolit.fr/observations/observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/15595744_10211600845120019_450321608_o.jpg,,FALSE, +N1,60827,sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77,https://biolit.fr/sorties/sortie-ead5c8c4-64f9-42e3-9551-c650d4a5df77/,FannyC,,12/15/2016 0:00,14.0:15,15.0000000,43.239930000000,5.362465000000,,Bain des dames,52013,observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-13,https://biolit.fr/observations/observation-ead5c8c4-64f9-42e3-9551-c650d4a5df77-13/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/15595713_10211600850560155_1923467579_o.jpg,,TRUE, +N1,60828,sortie-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7,https://biolit.fr/sorties/sortie-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7/,Phil,,11/29/2016 0:00,14.0000000,14.0:55,47.815213000000,-4.16382700000,,Loctudy - Finistère,52015,observation-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7,https://biolit.fr/observations/observation-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050134.JPG,,FALSE, +N1,60828,sortie-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7,https://biolit.fr/sorties/sortie-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7/,Phil,,11/29/2016 0:00,14.0000000,14.0:55,47.815213000000,-4.16382700000,,Loctudy - Finistère,52017,observation-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7-2,https://biolit.fr/observations/observation-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050156.JPG,,FALSE, +N1,60828,sortie-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7,https://biolit.fr/sorties/sortie-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7/,Phil,,11/29/2016 0:00,14.0000000,14.0:55,47.815213000000,-4.16382700000,,Loctudy - Finistère,52019,observation-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7-3,https://biolit.fr/observations/observation-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050168.JPG,,FALSE, +N1,60828,sortie-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7,https://biolit.fr/sorties/sortie-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7/,Phil,,11/29/2016 0:00,14.0000000,14.0:55,47.815213000000,-4.16382700000,,Loctudy - Finistère,52021,observation-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7-4,https://biolit.fr/observations/observation-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7-4/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/P1050176.JPG,,TRUE, +N1,60828,sortie-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7,https://biolit.fr/sorties/sortie-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7/,Phil,,11/29/2016 0:00,14.0000000,14.0:55,47.815213000000,-4.16382700000,,Loctudy - Finistère,52023,observation-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7-5,https://biolit.fr/observations/observation-a1b4dce7-9ad5-4169-a8fd-38f0d9af29f7-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050178.JPG,,FALSE, +N1,60829,sortie-8c9f07b0-9bc1-4b89-b40b-e839b9958da4,https://biolit.fr/sorties/sortie-8c9f07b0-9bc1-4b89-b40b-e839b9958da4/,Phil,,11/02/2016,15.0:15,15.0000000,47.79563200000,-4.363031000000,,Penmarc'h - Finistère,52025,observation-8c9f07b0-9bc1-4b89-b40b-e839b9958da4,https://biolit.fr/observations/observation-8c9f07b0-9bc1-4b89-b40b-e839b9958da4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040796.JPG,,FALSE, +N1,60830,sortie-2e37b6e3-f501-42e1-b8ff-720bc1ecd44e,https://biolit.fr/sorties/sortie-2e37b6e3-f501-42e1-b8ff-720bc1ecd44e/,Phil,,12/13/2016 0:00,13.0:15,13.0:25,48.106780000000,-4.415157000000,,Poullan sur Mer - Finistère,52027,observation-2e37b6e3-f501-42e1-b8ff-720bc1ecd44e,https://biolit.fr/observations/observation-2e37b6e3-f501-42e1-b8ff-720bc1ecd44e/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1050278.JPG,,TRUE, +N1,60830,sortie-2e37b6e3-f501-42e1-b8ff-720bc1ecd44e,https://biolit.fr/sorties/sortie-2e37b6e3-f501-42e1-b8ff-720bc1ecd44e/,Phil,,12/13/2016 0:00,13.0:15,13.0:25,48.106780000000,-4.415157000000,,Poullan sur Mer - Finistère,52029,observation-2e37b6e3-f501-42e1-b8ff-720bc1ecd44e-2,https://biolit.fr/observations/observation-2e37b6e3-f501-42e1-b8ff-720bc1ecd44e-2/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1050290.JPG,,TRUE, +N1,60830,sortie-2e37b6e3-f501-42e1-b8ff-720bc1ecd44e,https://biolit.fr/sorties/sortie-2e37b6e3-f501-42e1-b8ff-720bc1ecd44e/,Phil,,12/13/2016 0:00,13.0:15,13.0:25,48.106780000000,-4.415157000000,,Poullan sur Mer - Finistère,52031,observation-2e37b6e3-f501-42e1-b8ff-720bc1ecd44e-3,https://biolit.fr/observations/observation-2e37b6e3-f501-42e1-b8ff-720bc1ecd44e-3/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1050275.JPG,,TRUE, +N1,60830,sortie-2e37b6e3-f501-42e1-b8ff-720bc1ecd44e,https://biolit.fr/sorties/sortie-2e37b6e3-f501-42e1-b8ff-720bc1ecd44e/,Phil,,12/13/2016 0:00,13.0:15,13.0:25,48.106780000000,-4.415157000000,,Poullan sur Mer - Finistère,52033,observation-2e37b6e3-f501-42e1-b8ff-720bc1ecd44e-4,https://biolit.fr/observations/observation-2e37b6e3-f501-42e1-b8ff-720bc1ecd44e-4/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1050292.JPG,,TRUE, +N1,60831,sortie-41d142c7-630a-4753-a085-eaa11a802652,https://biolit.fr/sorties/sortie-41d142c7-630a-4753-a085-eaa11a802652/,Phil,,11/29/2016 0:00,14.0000000,14.0000000,47.810265000000,-4.159441000000,,Loctudy - Finistère,52035,observation-41d142c7-630a-4753-a085-eaa11a802652,https://biolit.fr/observations/observation-41d142c7-630a-4753-a085-eaa11a802652/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1050153.JPG,,TRUE, +N1,60831,sortie-41d142c7-630a-4753-a085-eaa11a802652,https://biolit.fr/sorties/sortie-41d142c7-630a-4753-a085-eaa11a802652/,Phil,,11/29/2016 0:00,14.0000000,14.0000000,47.810265000000,-4.159441000000,,Loctudy - Finistère,52037,observation-41d142c7-630a-4753-a085-eaa11a802652-2,https://biolit.fr/observations/observation-41d142c7-630a-4753-a085-eaa11a802652-2/,Janua heterostropha,Spirorbe de Pagenstecher,,https://biolit.fr/wp-content/uploads/2023/07/P1050126.JPG,,TRUE, +N1,60831,sortie-41d142c7-630a-4753-a085-eaa11a802652,https://biolit.fr/sorties/sortie-41d142c7-630a-4753-a085-eaa11a802652/,Phil,,11/29/2016 0:00,14.0000000,14.0000000,47.810265000000,-4.159441000000,,Loctudy - Finistère,52039,observation-41d142c7-630a-4753-a085-eaa11a802652-3,https://biolit.fr/observations/observation-41d142c7-630a-4753-a085-eaa11a802652-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050145.JPG,,FALSE, +N1,60831,sortie-41d142c7-630a-4753-a085-eaa11a802652,https://biolit.fr/sorties/sortie-41d142c7-630a-4753-a085-eaa11a802652/,Phil,,11/29/2016 0:00,14.0000000,14.0000000,47.810265000000,-4.159441000000,,Loctudy - Finistère,52041,observation-41d142c7-630a-4753-a085-eaa11a802652-4,https://biolit.fr/observations/observation-41d142c7-630a-4753-a085-eaa11a802652-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050160.JPG,,FALSE, +N1,60832,sortie-0e2c5470-8b6a-4d38-a644-407ea087d6f3,https://biolit.fr/sorties/sortie-0e2c5470-8b6a-4d38-a644-407ea087d6f3/,Phil,,11/02/2016,15.0:15,15.0000000,47.796269000000,-4.361986000000,,Penmarc'h - Finistère,52043,observation-0e2c5470-8b6a-4d38-a644-407ea087d6f3,https://biolit.fr/observations/observation-0e2c5470-8b6a-4d38-a644-407ea087d6f3/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/P1040789.JPG,,TRUE, +N1,60832,sortie-0e2c5470-8b6a-4d38-a644-407ea087d6f3,https://biolit.fr/sorties/sortie-0e2c5470-8b6a-4d38-a644-407ea087d6f3/,Phil,,11/02/2016,15.0:15,15.0000000,47.796269000000,-4.361986000000,,Penmarc'h - Finistère,52045,observation-0e2c5470-8b6a-4d38-a644-407ea087d6f3-2,https://biolit.fr/observations/observation-0e2c5470-8b6a-4d38-a644-407ea087d6f3-2/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1040792_0.JPG,,TRUE, +N1,60832,sortie-0e2c5470-8b6a-4d38-a644-407ea087d6f3,https://biolit.fr/sorties/sortie-0e2c5470-8b6a-4d38-a644-407ea087d6f3/,Phil,,11/02/2016,15.0:15,15.0000000,47.796269000000,-4.361986000000,,Penmarc'h - Finistère,52047,observation-0e2c5470-8b6a-4d38-a644-407ea087d6f3-3,https://biolit.fr/observations/observation-0e2c5470-8b6a-4d38-a644-407ea087d6f3-3/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/P1040795.JPG,,TRUE, +N1,60833,sortie-46aa51d6-a027-4aeb-9d17-5b8c396d55fb,https://biolit.fr/sorties/sortie-46aa51d6-a027-4aeb-9d17-5b8c396d55fb/,Phil,,11/29/2016 0:00,14.0000000,14.0000000,47.80945700000,-4.159423000000,,Loctudy - Finistère,52049,observation-46aa51d6-a027-4aeb-9d17-5b8c396d55fb,https://biolit.fr/observations/observation-46aa51d6-a027-4aeb-9d17-5b8c396d55fb/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050083_0.JPG,,FALSE, +N1,60833,sortie-46aa51d6-a027-4aeb-9d17-5b8c396d55fb,https://biolit.fr/sorties/sortie-46aa51d6-a027-4aeb-9d17-5b8c396d55fb/,Phil,,11/29/2016 0:00,14.0000000,14.0000000,47.80945700000,-4.159423000000,,Loctudy - Finistère,52051,observation-46aa51d6-a027-4aeb-9d17-5b8c396d55fb-2,https://biolit.fr/observations/observation-46aa51d6-a027-4aeb-9d17-5b8c396d55fb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050088_0.JPG,,FALSE, +N1,60833,sortie-46aa51d6-a027-4aeb-9d17-5b8c396d55fb,https://biolit.fr/sorties/sortie-46aa51d6-a027-4aeb-9d17-5b8c396d55fb/,Phil,,11/29/2016 0:00,14.0000000,14.0000000,47.80945700000,-4.159423000000,,Loctudy - Finistère,52053,observation-46aa51d6-a027-4aeb-9d17-5b8c396d55fb-3,https://biolit.fr/observations/observation-46aa51d6-a027-4aeb-9d17-5b8c396d55fb-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050103.JPG,,FALSE, +N1,60833,sortie-46aa51d6-a027-4aeb-9d17-5b8c396d55fb,https://biolit.fr/sorties/sortie-46aa51d6-a027-4aeb-9d17-5b8c396d55fb/,Phil,,11/29/2016 0:00,14.0000000,14.0000000,47.80945700000,-4.159423000000,,Loctudy - Finistère,52055,observation-46aa51d6-a027-4aeb-9d17-5b8c396d55fb-4,https://biolit.fr/observations/observation-46aa51d6-a027-4aeb-9d17-5b8c396d55fb-4/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/P1050107.JPG,,TRUE, +N1,60833,sortie-46aa51d6-a027-4aeb-9d17-5b8c396d55fb,https://biolit.fr/sorties/sortie-46aa51d6-a027-4aeb-9d17-5b8c396d55fb/,Phil,,11/29/2016 0:00,14.0000000,14.0000000,47.80945700000,-4.159423000000,,Loctudy - Finistère,52057,observation-46aa51d6-a027-4aeb-9d17-5b8c396d55fb-5,https://biolit.fr/observations/observation-46aa51d6-a027-4aeb-9d17-5b8c396d55fb-5/,Halidrys siliquosa,Queue de poulain,,https://biolit.fr/wp-content/uploads/2023/07/P1050108.JPG,,TRUE, +N1,60833,sortie-46aa51d6-a027-4aeb-9d17-5b8c396d55fb,https://biolit.fr/sorties/sortie-46aa51d6-a027-4aeb-9d17-5b8c396d55fb/,Phil,,11/29/2016 0:00,14.0000000,14.0000000,47.80945700000,-4.159423000000,,Loctudy - Finistère,52059,observation-46aa51d6-a027-4aeb-9d17-5b8c396d55fb-6,https://biolit.fr/observations/observation-46aa51d6-a027-4aeb-9d17-5b8c396d55fb-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050112.JPG,,FALSE, +N1,60833,sortie-46aa51d6-a027-4aeb-9d17-5b8c396d55fb,https://biolit.fr/sorties/sortie-46aa51d6-a027-4aeb-9d17-5b8c396d55fb/,Phil,,11/29/2016 0:00,14.0000000,14.0000000,47.80945700000,-4.159423000000,,Loctudy - Finistère,52061,observation-46aa51d6-a027-4aeb-9d17-5b8c396d55fb-7,https://biolit.fr/observations/observation-46aa51d6-a027-4aeb-9d17-5b8c396d55fb-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050118.JPG,,FALSE, +N1,60834,sortie-8499f13f-1887-45f8-a281-2585ab019a08,https://biolit.fr/sorties/sortie-8499f13f-1887-45f8-a281-2585ab019a08/,Centre de Découverte Mer et Montagne,,12/05/2016,15.0000000,15.0000000,43.692755000000,7.289541000000,,"Port de la Tour rouge, Nice",52063,observation-8499f13f-1887-45f8-a281-2585ab019a08,https://biolit.fr/observations/observation-8499f13f-1887-45f8-a281-2585ab019a08/,Podiceps nigricollis,Grèbe à cou noir,,https://biolit.fr/wp-content/uploads/2023/07/CDMM_Grebe à cou noir-scaled.jpg,,TRUE, +N1,60835,sortie-3726c82f-8ff2-44cd-8274-c63dda51c653,https://biolit.fr/sorties/sortie-3726c82f-8ff2-44cd-8274-c63dda51c653/,Phil,,11/29/2016 0:00,14.0000000,14.0000000,47.811847000000,-4.165350000000,,Loctudy - Finistère,52065,observation-3726c82f-8ff2-44cd-8274-c63dda51c653,https://biolit.fr/observations/observation-3726c82f-8ff2-44cd-8274-c63dda51c653/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1050076.JPG,,TRUE, +N1,60835,sortie-3726c82f-8ff2-44cd-8274-c63dda51c653,https://biolit.fr/sorties/sortie-3726c82f-8ff2-44cd-8274-c63dda51c653/,Phil,,11/29/2016 0:00,14.0000000,14.0000000,47.811847000000,-4.165350000000,,Loctudy - Finistère,52067,observation-3726c82f-8ff2-44cd-8274-c63dda51c653-2,https://biolit.fr/observations/observation-3726c82f-8ff2-44cd-8274-c63dda51c653-2/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1050080.JPG,,TRUE, +N1,60835,sortie-3726c82f-8ff2-44cd-8274-c63dda51c653,https://biolit.fr/sorties/sortie-3726c82f-8ff2-44cd-8274-c63dda51c653/,Phil,,11/29/2016 0:00,14.0000000,14.0000000,47.811847000000,-4.165350000000,,Loctudy - Finistère,52069,observation-3726c82f-8ff2-44cd-8274-c63dda51c653-3,https://biolit.fr/observations/observation-3726c82f-8ff2-44cd-8274-c63dda51c653-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050073.JPG,,FALSE, +N1,60835,sortie-3726c82f-8ff2-44cd-8274-c63dda51c653,https://biolit.fr/sorties/sortie-3726c82f-8ff2-44cd-8274-c63dda51c653/,Phil,,11/29/2016 0:00,14.0000000,14.0000000,47.811847000000,-4.165350000000,,Loctudy - Finistère,52071,observation-3726c82f-8ff2-44cd-8274-c63dda51c653-4,https://biolit.fr/observations/observation-3726c82f-8ff2-44cd-8274-c63dda51c653-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050071.JPG,,FALSE, +N1,60836,sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92,https://biolit.fr/sorties/sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92/,ville de Marseille école La Feuilleraie cm1A,,10/03/2016,10.0000000,12.0000000,43.329149000000,5.364272000000,,"Marseille, au pont de la Fausse monnaie",52073,observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92,https://biolit.fr/observations/observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92/,,,,https://biolit.fr/wp-content/uploads/2023/07/anémone verte Anemonia viridis.jpg,,FALSE, +N1,60836,sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92,https://biolit.fr/sorties/sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92/,ville de Marseille école La Feuilleraie cm1A,,10/03/2016,10.0000000,12.0000000,43.329149000000,5.364272000000,,"Marseille, au pont de la Fausse monnaie",52075,observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92-2,https://biolit.fr/observations/observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/actinie rouge Actinia schmidti.jpg,,FALSE, +N1,60836,sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92,https://biolit.fr/sorties/sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92/,ville de Marseille école La Feuilleraie cm1A,,10/03/2016,10.0000000,12.0000000,43.329149000000,5.364272000000,,"Marseille, au pont de la Fausse monnaie",52077,observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92-3,https://biolit.fr/observations/observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92-3/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/Arche de noe-arca noae 2.JPG,,TRUE, +N1,60836,sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92,https://biolit.fr/sorties/sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92/,ville de Marseille école La Feuilleraie cm1A,,10/03/2016,10.0000000,12.0000000,43.329149000000,5.364272000000,,"Marseille, au pont de la Fausse monnaie",52078,observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92-4,https://biolit.fr/observations/observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92-4/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/arche de Noé Arca noae.jpg,,TRUE, +N1,60836,sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92,https://biolit.fr/sorties/sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92/,ville de Marseille école La Feuilleraie cm1A,,10/03/2016,10.0000000,12.0000000,43.329149000000,5.364272000000,,"Marseille, au pont de la Fausse monnaie",52080,observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92-5,https://biolit.fr/observations/observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Caulerpe raisin Caulerpa racemoza.jpg,,FALSE, +N1,60836,sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92,https://biolit.fr/sorties/sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92/,ville de Marseille école La Feuilleraie cm1A,,10/03/2016,10.0000000,12.0000000,43.329149000000,5.364272000000,,"Marseille, au pont de la Fausse monnaie",52082,observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92-6,https://biolit.fr/observations/observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/cystoseire Cystoseira spp..jpg,,FALSE, +N1,60836,sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92,https://biolit.fr/sorties/sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92/,ville de Marseille école La Feuilleraie cm1A,,10/03/2016,10.0000000,12.0000000,43.329149000000,5.364272000000,,"Marseille, au pont de la Fausse monnaie",52084,observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92-7,https://biolit.fr/observations/observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92-7/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/oursin noir Arbacia lixula-scaled.jpg,,TRUE, +N1,60836,sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92,https://biolit.fr/sorties/sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92/,ville de Marseille école La Feuilleraie cm1A,,10/03/2016,10.0000000,12.0000000,43.329149000000,5.364272000000,,"Marseille, au pont de la Fausse monnaie",52086,observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92-8,https://biolit.fr/observations/observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/perce pierre_cr.jpg,,FALSE, +N1,60836,sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92,https://biolit.fr/sorties/sortie-bad852cc-ae04-46fd-9244-04fb8c9f7d92/,ville de Marseille école La Feuilleraie cm1A,,10/03/2016,10.0000000,12.0000000,43.329149000000,5.364272000000,,"Marseille, au pont de la Fausse monnaie",52088,observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92-9,https://biolit.fr/observations/observation-bad852cc-ae04-46fd-9244-04fb8c9f7d92-9/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/pince crabe verruquex Eriphia verrucosa (2)_cr.jpg,,TRUE, +N1,60837,sortie-418c9162-31aa-493b-a411-4535292b6bd8,https://biolit.fr/sorties/sortie-418c9162-31aa-493b-a411-4535292b6bd8/,ADEE,,12/01/2016,9.0000000,12.0000000,43.413471000000,6.795903000000,,Plage la Péguière,52090,observation-418c9162-31aa-493b-a411-4535292b6bd8,https://biolit.fr/observations/observation-418c9162-31aa-493b-a411-4535292b6bd8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20161201_104757-scaled.jpg,,FALSE, +N1,60838,sortie-2a5f14a4-29ce-402e-950e-23b5f0237a07,https://biolit.fr/sorties/sortie-2a5f14a4-29ce-402e-950e-23b5f0237a07/,Phil,,11/02/2016,15.000005,15.0000000,47.791506000000,-4.368396000000,,Penmarc'h - Finistère,52092,observation-2a5f14a4-29ce-402e-950e-23b5f0237a07,https://biolit.fr/observations/observation-2a5f14a4-29ce-402e-950e-23b5f0237a07/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/P1040778.JPG,,TRUE, +N1,60838,sortie-2a5f14a4-29ce-402e-950e-23b5f0237a07,https://biolit.fr/sorties/sortie-2a5f14a4-29ce-402e-950e-23b5f0237a07/,Phil,,11/02/2016,15.000005,15.0000000,47.791506000000,-4.368396000000,,Penmarc'h - Finistère,52094,observation-2a5f14a4-29ce-402e-950e-23b5f0237a07-2,https://biolit.fr/observations/observation-2a5f14a4-29ce-402e-950e-23b5f0237a07-2/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/P1040779.JPG,,TRUE, +N1,60838,sortie-2a5f14a4-29ce-402e-950e-23b5f0237a07,https://biolit.fr/sorties/sortie-2a5f14a4-29ce-402e-950e-23b5f0237a07/,Phil,,11/02/2016,15.000005,15.0000000,47.791506000000,-4.368396000000,,Penmarc'h - Finistère,52096,observation-2a5f14a4-29ce-402e-950e-23b5f0237a07-3,https://biolit.fr/observations/observation-2a5f14a4-29ce-402e-950e-23b5f0237a07-3/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/P1040778 - Copie (1).JPG,,TRUE, +N1,60838,sortie-2a5f14a4-29ce-402e-950e-23b5f0237a07,https://biolit.fr/sorties/sortie-2a5f14a4-29ce-402e-950e-23b5f0237a07/,Phil,,11/02/2016,15.000005,15.0000000,47.791506000000,-4.368396000000,,Penmarc'h - Finistère,52098,observation-2a5f14a4-29ce-402e-950e-23b5f0237a07-4,https://biolit.fr/observations/observation-2a5f14a4-29ce-402e-950e-23b5f0237a07-4/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/P1040781.JPG,,TRUE, +N1,60838,sortie-2a5f14a4-29ce-402e-950e-23b5f0237a07,https://biolit.fr/sorties/sortie-2a5f14a4-29ce-402e-950e-23b5f0237a07/,Phil,,11/02/2016,15.000005,15.0000000,47.791506000000,-4.368396000000,,Penmarc'h - Finistère,52100,observation-2a5f14a4-29ce-402e-950e-23b5f0237a07-5,https://biolit.fr/observations/observation-2a5f14a4-29ce-402e-950e-23b5f0237a07-5/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/P1040788_0.JPG,,TRUE, +N1,60838,sortie-2a5f14a4-29ce-402e-950e-23b5f0237a07,https://biolit.fr/sorties/sortie-2a5f14a4-29ce-402e-950e-23b5f0237a07/,Phil,,11/02/2016,15.000005,15.0000000,47.791506000000,-4.368396000000,,Penmarc'h - Finistère,52102,observation-2a5f14a4-29ce-402e-950e-23b5f0237a07-6,https://biolit.fr/observations/observation-2a5f14a4-29ce-402e-950e-23b5f0237a07-6/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/P1040783.JPG,,TRUE, +N1,60839,sortie-cefd99a1-3db7-43d2-bf6c-687f98d05dcc,https://biolit.fr/sorties/sortie-cefd99a1-3db7-43d2-bf6c-687f98d05dcc/,Phil,,11/29/2016 0:00,15.0:15,15.0000000,47.833745000000,-4.176362000000,,Loctudy - Finistère,52104,observation-cefd99a1-3db7-43d2-bf6c-687f98d05dcc,https://biolit.fr/observations/observation-cefd99a1-3db7-43d2-bf6c-687f98d05dcc/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050196.JPG,,FALSE, +N1,60839,sortie-cefd99a1-3db7-43d2-bf6c-687f98d05dcc,https://biolit.fr/sorties/sortie-cefd99a1-3db7-43d2-bf6c-687f98d05dcc/,Phil,,11/29/2016 0:00,15.0:15,15.0000000,47.833745000000,-4.176362000000,,Loctudy - Finistère,52106,observation-cefd99a1-3db7-43d2-bf6c-687f98d05dcc-2,https://biolit.fr/observations/observation-cefd99a1-3db7-43d2-bf6c-687f98d05dcc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050192.JPG,,FALSE, +N1,60840,sortie-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3,https://biolit.fr/sorties/sortie-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3/,Phil,,11/29/2016 0:00,14.0000000,14.000005,47.815370000000,-4.163162000000,,Loctudy - Finistère,52108,observation-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3,https://biolit.fr/observations/observation-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050044.JPG,,FALSE, +N1,60840,sortie-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3,https://biolit.fr/sorties/sortie-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3/,Phil,,11/29/2016 0:00,14.0000000,14.000005,47.815370000000,-4.163162000000,,Loctudy - Finistère,52110,observation-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3-2,https://biolit.fr/observations/observation-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050047.JPG,,FALSE, +N1,60840,sortie-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3,https://biolit.fr/sorties/sortie-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3/,Phil,,11/29/2016 0:00,14.0000000,14.000005,47.815370000000,-4.163162000000,,Loctudy - Finistère,52112,observation-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3-3,https://biolit.fr/observations/observation-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3-3/,Electra pilosa,Ecorce pileuse,,https://biolit.fr/wp-content/uploads/2023/07/P1050051.JPG,,TRUE, +N1,60840,sortie-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3,https://biolit.fr/sorties/sortie-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3/,Phil,,11/29/2016 0:00,14.0000000,14.000005,47.815370000000,-4.163162000000,,Loctudy - Finistère,52114,observation-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3-4,https://biolit.fr/observations/observation-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3-4/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/P1050062.JPG,,TRUE, +N1,60840,sortie-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3,https://biolit.fr/sorties/sortie-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3/,Phil,,11/29/2016 0:00,14.0000000,14.000005,47.815370000000,-4.163162000000,,Loctudy - Finistère,52116,observation-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3-5,https://biolit.fr/observations/observation-57e5b3b8-a2e3-4825-a6a6-6aaf10c983e3-5/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1050063.JPG,,TRUE, +N1,60841,sortie-0c63efed-0c40-419e-856e-13bdb7718c66,https://biolit.fr/sorties/sortie-0c63efed-0c40-419e-856e-13bdb7718c66/,Phil,,11/27/2016 0:00,16.0:35,16.0000000,43.403460000000,5.045117000000,,Martigues - Bouches-du-Rhône,52118,observation-0c63efed-0c40-419e-856e-13bdb7718c66,https://biolit.fr/observations/observation-0c63efed-0c40-419e-856e-13bdb7718c66/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20161127_163836.jpg,,TRUE, +N1,60842,sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/sorties/sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,ville de Marseille Leverrier CM2B,,10/10/2016,10.0000000,12.0000000,43.279980000000,5.352520000000,,"Anse de la Fausse Monnaie, Marseille 13007",52120,observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/observations/observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/Collumbelle rustique Columbella rustica 2.jpg,,TRUE, +N1,60842,sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/sorties/sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,ville de Marseille Leverrier CM2B,,10/10/2016,10.0000000,12.0000000,43.279980000000,5.352520000000,,"Anse de la Fausse Monnaie, Marseille 13007",52122,observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-2,"""https://biolit.fr/observations/observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-2/""",Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/Anemone solaire Cereus pedunculatus.jpg,,TRUE, +N1,60842,sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/sorties/sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,ville de Marseille Leverrier CM2B,,10/10/2016,10.0000000,12.0000000,43.279980000000,5.352520000000,,"Anse de la Fausse Monnaie, Marseille 13007",52124,observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-3,https://biolit.fr/observations/observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-3/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/Collumbelle rustique Columbella rustica.jpg,,TRUE, +N1,60842,sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/sorties/sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,ville de Marseille Leverrier CM2B,,10/10/2016,10.0000000,12.0000000,43.279980000000,5.352520000000,,"Anse de la Fausse Monnaie, Marseille 13007",52126,observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-4,https://biolit.fr/observations/observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-4/,Phalacrocorax aristotelis,Cormoran huppé,,https://biolit.fr/wp-content/uploads/2023/07/Cormoran huppe Phalacrocorax aristoteli.jpg,,TRUE, +N1,60842,sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/sorties/sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,ville de Marseille Leverrier CM2B,,10/10/2016,10.0000000,12.0000000,43.279980000000,5.352520000000,,"Anse de la Fausse Monnaie, Marseille 13007",52128,observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-5,https://biolit.fr/observations/observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabe marbre Pchygrapsus marmoratus dos.jpg,,FALSE, +N1,60842,sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/sorties/sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,ville de Marseille Leverrier CM2B,,10/10/2016,10.0000000,12.0000000,43.279980000000,5.352520000000,,"Anse de la Fausse Monnaie, Marseille 13007",52130,observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-6,https://biolit.fr/observations/observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabe marbre Pchygrapsus marmoratus ventre.jpg,,FALSE, +N1,60842,sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/sorties/sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,ville de Marseille Leverrier CM2B,,10/10/2016,10.0000000,12.0000000,43.279980000000,5.352520000000,,"Anse de la Fausse Monnaie, Marseille 13007",52132,observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-7,https://biolit.fr/observations/observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crabe verruqueux- Eriphia verrucosa-scaled.jpg,,FALSE, +N1,60842,sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/sorties/sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,ville de Marseille Leverrier CM2B,,10/10/2016,10.0000000,12.0000000,43.279980000000,5.352520000000,,"Anse de la Fausse Monnaie, Marseille 13007",52133,observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-8,https://biolit.fr/observations/observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/eponge-scaled.jpg,,FALSE, +N1,60842,sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/sorties/sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,ville de Marseille Leverrier CM2B,,10/10/2016,10.0000000,12.0000000,43.279980000000,5.352520000000,,"Anse de la Fausse Monnaie, Marseille 13007",52134,observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-9,https://biolit.fr/observations/observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Laitue de mer Ulva rigida.jpg,,FALSE, +N1,60842,sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/sorties/sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,ville de Marseille Leverrier CM2B,,10/10/2016,10.0000000,12.0000000,43.279980000000,5.352520000000,,"Anse de la Fausse Monnaie, Marseille 13007",52136,observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-10,https://biolit.fr/observations/observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-10/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/littorines -scaled.jpg,,TRUE, +N1,60842,sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/sorties/sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,ville de Marseille Leverrier CM2B,,10/10/2016,10.0000000,12.0000000,43.279980000000,5.352520000000,,"Anse de la Fausse Monnaie, Marseille 13007",52138,observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-11,https://biolit.fr/observations/observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-11/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/littorines bleu Littorina neritoides.jpg,,TRUE, +N1,60842,sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/sorties/sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,ville de Marseille Leverrier CM2B,,10/10/2016,10.0000000,12.0000000,43.279980000000,5.352520000000,,"Anse de la Fausse Monnaie, Marseille 13007",52140,observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-12,https://biolit.fr/observations/observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-12/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/Patelle de Mediterranee Patella caerulea 2.jpg,,TRUE, +N1,60842,sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/sorties/sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,ville de Marseille Leverrier CM2B,,10/10/2016,10.0000000,12.0000000,43.279980000000,5.352520000000,,"Anse de la Fausse Monnaie, Marseille 13007",52142,observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-13,https://biolit.fr/observations/observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-13/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/Patelle de Mediterranee Patella caerulea.jpg,,TRUE, +N1,60842,sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/sorties/sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,ville de Marseille Leverrier CM2B,,10/10/2016,10.0000000,12.0000000,43.279980000000,5.352520000000,,"Anse de la Fausse Monnaie, Marseille 13007",52144,observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-14,https://biolit.fr/observations/observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-14/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/Petoncle noir Mimachlamys varia 2.jpg,,TRUE, +N1,60842,sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/sorties/sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,ville de Marseille Leverrier CM2B,,10/10/2016,10.0000000,12.0000000,43.279980000000,5.352520000000,,"Anse de la Fausse Monnaie, Marseille 13007",52146,observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-15,https://biolit.fr/observations/observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/POSIDONIE-Posidonia oceanica-scaled.jpg,,FALSE, +N1,60842,sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c,https://biolit.fr/sorties/sortie-44cb63fa-9e4d-42a6-870a-c28ac516fa2c/,ville de Marseille Leverrier CM2B,,10/10/2016,10.0000000,12.0000000,43.279980000000,5.352520000000,,"Anse de la Fausse Monnaie, Marseille 13007",52147,observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-16,https://biolit.fr/observations/observation-44cb63fa-9e4d-42a6-870a-c28ac516fa2c-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/tomates de mer Actinia schmidti.jpg,,FALSE, +N1,60843,sortie-a68a2121-f0c0-487f-b0fa-5bdb8ef91efe,https://biolit.fr/sorties/sortie-a68a2121-f0c0-487f-b0fa-5bdb8ef91efe/,Phil,,11/27/2016 0:00,14.0:15,14.0000000,43.404631000000,4.976896000000,,Port-de-Bouc - Bouches-du-Rhône,52149,observation-a68a2121-f0c0-487f-b0fa-5bdb8ef91efe,https://biolit.fr/observations/observation-a68a2121-f0c0-487f-b0fa-5bdb8ef91efe/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161127_141351.jpg,,FALSE, +N1,60843,sortie-a68a2121-f0c0-487f-b0fa-5bdb8ef91efe,https://biolit.fr/sorties/sortie-a68a2121-f0c0-487f-b0fa-5bdb8ef91efe/,Phil,,11/27/2016 0:00,14.0:15,14.0000000,43.404631000000,4.976896000000,,Port-de-Bouc - Bouches-du-Rhône,52151,observation-a68a2121-f0c0-487f-b0fa-5bdb8ef91efe-2,https://biolit.fr/observations/observation-a68a2121-f0c0-487f-b0fa-5bdb8ef91efe-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161127_141502.jpg,,FALSE, +N1,60843,sortie-a68a2121-f0c0-487f-b0fa-5bdb8ef91efe,https://biolit.fr/sorties/sortie-a68a2121-f0c0-487f-b0fa-5bdb8ef91efe/,Phil,,11/27/2016 0:00,14.0:15,14.0000000,43.404631000000,4.976896000000,,Port-de-Bouc - Bouches-du-Rhône,52153,observation-a68a2121-f0c0-487f-b0fa-5bdb8ef91efe-3,https://biolit.fr/observations/observation-a68a2121-f0c0-487f-b0fa-5bdb8ef91efe-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161127_141708.jpg,,FALSE, +N1,60844,sortie-c1913c2b-b6d6-4c92-b780-4c6a693e4b9e,https://biolit.fr/sorties/sortie-c1913c2b-b6d6-4c92-b780-4c6a693e4b9e/,Phil,,11/29/2016 0:00,13.0000000,13.0:35,47.833759000000,-4.174781000000,,Loctudy - Finistère,52155,observation-c1913c2b-b6d6-4c92-b780-4c6a693e4b9e,https://biolit.fr/observations/observation-c1913c2b-b6d6-4c92-b780-4c6a693e4b9e/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050025.JPG,,FALSE, +N1,60844,sortie-c1913c2b-b6d6-4c92-b780-4c6a693e4b9e,https://biolit.fr/sorties/sortie-c1913c2b-b6d6-4c92-b780-4c6a693e4b9e/,Phil,,11/29/2016 0:00,13.0000000,13.0:35,47.833759000000,-4.174781000000,,Loctudy - Finistère,52157,observation-c1913c2b-b6d6-4c92-b780-4c6a693e4b9e-2,https://biolit.fr/observations/observation-c1913c2b-b6d6-4c92-b780-4c6a693e4b9e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050032.JPG,,FALSE, +N1,60844,sortie-c1913c2b-b6d6-4c92-b780-4c6a693e4b9e,https://biolit.fr/sorties/sortie-c1913c2b-b6d6-4c92-b780-4c6a693e4b9e/,Phil,,11/29/2016 0:00,13.0000000,13.0:35,47.833759000000,-4.174781000000,,Loctudy - Finistère,52159,observation-c1913c2b-b6d6-4c92-b780-4c6a693e4b9e-3,https://biolit.fr/observations/observation-c1913c2b-b6d6-4c92-b780-4c6a693e4b9e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050033.JPG,,FALSE, +N1,60844,sortie-c1913c2b-b6d6-4c92-b780-4c6a693e4b9e,https://biolit.fr/sorties/sortie-c1913c2b-b6d6-4c92-b780-4c6a693e4b9e/,Phil,,11/29/2016 0:00,13.0000000,13.0:35,47.833759000000,-4.174781000000,,Loctudy - Finistère,52161,observation-c1913c2b-b6d6-4c92-b780-4c6a693e4b9e-4,https://biolit.fr/observations/observation-c1913c2b-b6d6-4c92-b780-4c6a693e4b9e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050034.JPG,,FALSE, +N1,60845,sortie-0f23aa38-ddd5-4e4a-ac20-059e403f12aa,https://biolit.fr/sorties/sortie-0f23aa38-ddd5-4e4a-ac20-059e403f12aa/,Phil,,11/02/2016,15.0000000,15.000005,47.792529000000,-4.359598000000,,Penmarc'h - Finistère,52163,observation-0f23aa38-ddd5-4e4a-ac20-059e403f12aa,https://biolit.fr/observations/observation-0f23aa38-ddd5-4e4a-ac20-059e403f12aa/,Anurida maritima,Collembole marin,,https://biolit.fr/wp-content/uploads/2023/07/P1040763.JPG,,TRUE, +N1,60845,sortie-0f23aa38-ddd5-4e4a-ac20-059e403f12aa,https://biolit.fr/sorties/sortie-0f23aa38-ddd5-4e4a-ac20-059e403f12aa/,Phil,,11/02/2016,15.0000000,15.000005,47.792529000000,-4.359598000000,,Penmarc'h - Finistère,52165,observation-0f23aa38-ddd5-4e4a-ac20-059e403f12aa-2,https://biolit.fr/observations/observation-0f23aa38-ddd5-4e4a-ac20-059e403f12aa-2/,Anurida maritima,Collembole marin,,https://biolit.fr/wp-content/uploads/2023/07/P1040765.JPG,,TRUE, +N1,60845,sortie-0f23aa38-ddd5-4e4a-ac20-059e403f12aa,https://biolit.fr/sorties/sortie-0f23aa38-ddd5-4e4a-ac20-059e403f12aa/,Phil,,11/02/2016,15.0000000,15.000005,47.792529000000,-4.359598000000,,Penmarc'h - Finistère,52167,observation-0f23aa38-ddd5-4e4a-ac20-059e403f12aa-3,https://biolit.fr/observations/observation-0f23aa38-ddd5-4e4a-ac20-059e403f12aa-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040775.JPG,,FALSE, +N1,60846,sortie-48d7e435-8b9d-48f7-9489-8247bab37832,https://biolit.fr/sorties/sortie-48d7e435-8b9d-48f7-9489-8247bab37832/,Florence Borzillo,,11/08/2016,15.0000000,16.0000000,43.214399000000,5.42359500000,,"calanque sugiton, parc Luminy",52169,observation-48d7e435-8b9d-48f7-9489-8247bab37832,https://biolit.fr/observations/observation-48d7e435-8b9d-48f7-9489-8247bab37832/,,,,https://biolit.fr/wp-content/uploads/2023/07/arbousier_0-rotated.jpg,,FALSE, +N1,60847,sortie-c949cc6e-3264-4806-95a3-877901a46e9d,https://biolit.fr/sorties/sortie-c949cc6e-3264-4806-95a3-877901a46e9d/,Phil,,11/04/2016,13.0000000,13.0000000,47.872302000000,-3.932775000000,,Concarneau - Finistère,52171,observation-c949cc6e-3264-4806-95a3-877901a46e9d,https://biolit.fr/observations/observation-c949cc6e-3264-4806-95a3-877901a46e9d/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1040906.JPG,,TRUE, +N1,60847,sortie-c949cc6e-3264-4806-95a3-877901a46e9d,https://biolit.fr/sorties/sortie-c949cc6e-3264-4806-95a3-877901a46e9d/,Phil,,11/04/2016,13.0000000,13.0000000,47.872302000000,-3.932775000000,,Concarneau - Finistère,52173,observation-c949cc6e-3264-4806-95a3-877901a46e9d-2,https://biolit.fr/observations/observation-c949cc6e-3264-4806-95a3-877901a46e9d-2/,Doris verrucosa,Doris verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/P1040915.JPG,,TRUE, +N1,60847,sortie-c949cc6e-3264-4806-95a3-877901a46e9d,https://biolit.fr/sorties/sortie-c949cc6e-3264-4806-95a3-877901a46e9d/,Phil,,11/04/2016,13.0000000,13.0000000,47.872302000000,-3.932775000000,,Concarneau - Finistère,52175,observation-c949cc6e-3264-4806-95a3-877901a46e9d-3,https://biolit.fr/observations/observation-c949cc6e-3264-4806-95a3-877901a46e9d-3/,Doris verrucosa,Doris verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/P1040907.JPG,,TRUE, +N1,60847,sortie-c949cc6e-3264-4806-95a3-877901a46e9d,https://biolit.fr/sorties/sortie-c949cc6e-3264-4806-95a3-877901a46e9d/,Phil,,11/04/2016,13.0000000,13.0000000,47.872302000000,-3.932775000000,,Concarneau - Finistère,52177,observation-c949cc6e-3264-4806-95a3-877901a46e9d-4,https://biolit.fr/observations/observation-c949cc6e-3264-4806-95a3-877901a46e9d-4/,Doris verrucosa,Doris verruqueuse,,https://biolit.fr/wp-content/uploads/2023/07/P1040917.JPG,,TRUE, +N1,60847,sortie-c949cc6e-3264-4806-95a3-877901a46e9d,https://biolit.fr/sorties/sortie-c949cc6e-3264-4806-95a3-877901a46e9d/,Phil,,11/04/2016,13.0000000,13.0000000,47.872302000000,-3.932775000000,,Concarneau - Finistère,52179,observation-c949cc6e-3264-4806-95a3-877901a46e9d-5,https://biolit.fr/observations/observation-c949cc6e-3264-4806-95a3-877901a46e9d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040933.JPG,,FALSE, +N1,60847,sortie-c949cc6e-3264-4806-95a3-877901a46e9d,https://biolit.fr/sorties/sortie-c949cc6e-3264-4806-95a3-877901a46e9d/,Phil,,11/04/2016,13.0000000,13.0000000,47.872302000000,-3.932775000000,,Concarneau - Finistère,52181,observation-c949cc6e-3264-4806-95a3-877901a46e9d-6,https://biolit.fr/observations/observation-c949cc6e-3264-4806-95a3-877901a46e9d-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040931.JPG,,FALSE, +N1,60848,sortie-bce751ce-2c7a-467b-ba91-28532a38f0ef,https://biolit.fr/sorties/sortie-bce751ce-2c7a-467b-ba91-28532a38f0ef/,Phil,,11/02/2016,14.0:55,15.0000000,47.790850000000,-4.360216000000,,Penmarc'h - Finistère,52183,observation-bce751ce-2c7a-467b-ba91-28532a38f0ef,https://biolit.fr/observations/observation-bce751ce-2c7a-467b-ba91-28532a38f0ef/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040758.JPG,,FALSE, +N1,60848,sortie-bce751ce-2c7a-467b-ba91-28532a38f0ef,https://biolit.fr/sorties/sortie-bce751ce-2c7a-467b-ba91-28532a38f0ef/,Phil,,11/02/2016,14.0:55,15.0000000,47.790850000000,-4.360216000000,,Penmarc'h - Finistère,52185,observation-bce751ce-2c7a-467b-ba91-28532a38f0ef-2,https://biolit.fr/observations/observation-bce751ce-2c7a-467b-ba91-28532a38f0ef-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040750.JPG,,FALSE, +N1,60848,sortie-bce751ce-2c7a-467b-ba91-28532a38f0ef,https://biolit.fr/sorties/sortie-bce751ce-2c7a-467b-ba91-28532a38f0ef/,Phil,,11/02/2016,14.0:55,15.0000000,47.790850000000,-4.360216000000,,Penmarc'h - Finistère,52187,observation-bce751ce-2c7a-467b-ba91-28532a38f0ef-3,https://biolit.fr/observations/observation-bce751ce-2c7a-467b-ba91-28532a38f0ef-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040751.JPG,,FALSE, +N1,60848,sortie-bce751ce-2c7a-467b-ba91-28532a38f0ef,https://biolit.fr/sorties/sortie-bce751ce-2c7a-467b-ba91-28532a38f0ef/,Phil,,11/02/2016,14.0:55,15.0000000,47.790850000000,-4.360216000000,,Penmarc'h - Finistère,52189,observation-bce751ce-2c7a-467b-ba91-28532a38f0ef-4,https://biolit.fr/observations/observation-bce751ce-2c7a-467b-ba91-28532a38f0ef-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040760.JPG,,FALSE, +N1,60849,sortie-59daed55-9929-48c8-864f-eaa3714ab0fc,https://biolit.fr/sorties/sortie-59daed55-9929-48c8-864f-eaa3714ab0fc/,Phil,,11/04/2016,13.0:25,13.0:35,47.872595000000,-3.932034000000,,Concarneau - Finistère,52191,observation-59daed55-9929-48c8-864f-eaa3714ab0fc,https://biolit.fr/observations/observation-59daed55-9929-48c8-864f-eaa3714ab0fc/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040894.JPG,,FALSE, +N1,60849,sortie-59daed55-9929-48c8-864f-eaa3714ab0fc,https://biolit.fr/sorties/sortie-59daed55-9929-48c8-864f-eaa3714ab0fc/,Phil,,11/04/2016,13.0:25,13.0:35,47.872595000000,-3.932034000000,,Concarneau - Finistère,52193,observation-59daed55-9929-48c8-864f-eaa3714ab0fc-2,https://biolit.fr/observations/observation-59daed55-9929-48c8-864f-eaa3714ab0fc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040897.JPG,,FALSE, +N1,60849,sortie-59daed55-9929-48c8-864f-eaa3714ab0fc,https://biolit.fr/sorties/sortie-59daed55-9929-48c8-864f-eaa3714ab0fc/,Phil,,11/04/2016,13.0:25,13.0:35,47.872595000000,-3.932034000000,,Concarneau - Finistère,52195,observation-59daed55-9929-48c8-864f-eaa3714ab0fc-3,https://biolit.fr/observations/observation-59daed55-9929-48c8-864f-eaa3714ab0fc-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040902.JPG,,FALSE, +N1,60849,sortie-59daed55-9929-48c8-864f-eaa3714ab0fc,https://biolit.fr/sorties/sortie-59daed55-9929-48c8-864f-eaa3714ab0fc/,Phil,,11/04/2016,13.0:25,13.0:35,47.872595000000,-3.932034000000,,Concarneau - Finistère,52197,observation-59daed55-9929-48c8-864f-eaa3714ab0fc-4,https://biolit.fr/observations/observation-59daed55-9929-48c8-864f-eaa3714ab0fc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040893.JPG,,FALSE, +N1,60850,sortie-2092beba-0e6a-4053-9089-194d9641eacc,https://biolit.fr/sorties/sortie-2092beba-0e6a-4053-9089-194d9641eacc/,Phil,,11/02/2016,14.0000000,14.0:45,47.792267000000,-4.366035000000,,Penmarc'h - Finistère,52199,observation-2092beba-0e6a-4053-9089-194d9641eacc,https://biolit.fr/observations/observation-2092beba-0e6a-4053-9089-194d9641eacc/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040729.JPG,,TRUE, +N1,60850,sortie-2092beba-0e6a-4053-9089-194d9641eacc,https://biolit.fr/sorties/sortie-2092beba-0e6a-4053-9089-194d9641eacc/,Phil,,11/02/2016,14.0000000,14.0:45,47.792267000000,-4.366035000000,,Penmarc'h - Finistère,52201,observation-2092beba-0e6a-4053-9089-194d9641eacc-2,https://biolit.fr/observations/observation-2092beba-0e6a-4053-9089-194d9641eacc-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040746.JPG,,TRUE, +N1,60850,sortie-2092beba-0e6a-4053-9089-194d9641eacc,https://biolit.fr/sorties/sortie-2092beba-0e6a-4053-9089-194d9641eacc/,Phil,,11/02/2016,14.0000000,14.0:45,47.792267000000,-4.366035000000,,Penmarc'h - Finistère,52203,observation-2092beba-0e6a-4053-9089-194d9641eacc-3,https://biolit.fr/observations/observation-2092beba-0e6a-4053-9089-194d9641eacc-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040738.JPG,,TRUE, +N1,60850,sortie-2092beba-0e6a-4053-9089-194d9641eacc,https://biolit.fr/sorties/sortie-2092beba-0e6a-4053-9089-194d9641eacc/,Phil,,11/02/2016,14.0000000,14.0:45,47.792267000000,-4.366035000000,,Penmarc'h - Finistère,52205,observation-2092beba-0e6a-4053-9089-194d9641eacc-4,https://biolit.fr/observations/observation-2092beba-0e6a-4053-9089-194d9641eacc-4/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20161102_134131.jpg,,TRUE, +N1,60850,sortie-2092beba-0e6a-4053-9089-194d9641eacc,https://biolit.fr/sorties/sortie-2092beba-0e6a-4053-9089-194d9641eacc/,Phil,,11/02/2016,14.0000000,14.0:45,47.792267000000,-4.366035000000,,Penmarc'h - Finistère,52207,observation-2092beba-0e6a-4053-9089-194d9641eacc-5,https://biolit.fr/observations/observation-2092beba-0e6a-4053-9089-194d9641eacc-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040726.JPG,,FALSE, +N1,60851,sortie-e5d9b605-c881-4282-b07b-9b85f1df9ab8,https://biolit.fr/sorties/sortie-e5d9b605-c881-4282-b07b-9b85f1df9ab8/,Phil,,11/04/2016,13.0:15,13.0000000,47.873450000000,-3.933547000000,,Concarneau - Finistère,52209,observation-e5d9b605-c881-4282-b07b-9b85f1df9ab8,https://biolit.fr/observations/observation-e5d9b605-c881-4282-b07b-9b85f1df9ab8/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1040890.JPG,,TRUE, +N1,60851,sortie-e5d9b605-c881-4282-b07b-9b85f1df9ab8,https://biolit.fr/sorties/sortie-e5d9b605-c881-4282-b07b-9b85f1df9ab8/,Phil,,11/04/2016,13.0:15,13.0000000,47.873450000000,-3.933547000000,,Concarneau - Finistère,52211,observation-e5d9b605-c881-4282-b07b-9b85f1df9ab8-2,https://biolit.fr/observations/observation-e5d9b605-c881-4282-b07b-9b85f1df9ab8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040888.JPG,,FALSE, +N1,60851,sortie-e5d9b605-c881-4282-b07b-9b85f1df9ab8,https://biolit.fr/sorties/sortie-e5d9b605-c881-4282-b07b-9b85f1df9ab8/,Phil,,11/04/2016,13.0:15,13.0000000,47.873450000000,-3.933547000000,,Concarneau - Finistère,52213,observation-e5d9b605-c881-4282-b07b-9b85f1df9ab8-3,https://biolit.fr/observations/observation-e5d9b605-c881-4282-b07b-9b85f1df9ab8-3/,Phymatolithon calcareum,Maërl,,https://biolit.fr/wp-content/uploads/2023/07/P1040886.JPG,,TRUE, +N1,60851,sortie-e5d9b605-c881-4282-b07b-9b85f1df9ab8,https://biolit.fr/sorties/sortie-e5d9b605-c881-4282-b07b-9b85f1df9ab8/,Phil,,11/04/2016,13.0:15,13.0000000,47.873450000000,-3.933547000000,,Concarneau - Finistère,52215,observation-e5d9b605-c881-4282-b07b-9b85f1df9ab8-4,https://biolit.fr/observations/observation-e5d9b605-c881-4282-b07b-9b85f1df9ab8-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040882.JPG,,FALSE, +N1,60851,sortie-e5d9b605-c881-4282-b07b-9b85f1df9ab8,https://biolit.fr/sorties/sortie-e5d9b605-c881-4282-b07b-9b85f1df9ab8/,Phil,,11/04/2016,13.0:15,13.0000000,47.873450000000,-3.933547000000,,Concarneau - Finistère,52217,observation-e5d9b605-c881-4282-b07b-9b85f1df9ab8-5,https://biolit.fr/observations/observation-e5d9b605-c881-4282-b07b-9b85f1df9ab8-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040880.JPG,,FALSE, +N1,60852,sortie-e8ca5205-cf3b-4386-88e4-af50dd721683,https://biolit.fr/sorties/sortie-e8ca5205-cf3b-4386-88e4-af50dd721683/,Phil,,11/02/2016,14.0:25,14.0000000,47.792512000000,-4.361229000000,,Penmarc'h - Finistère,52219,observation-e8ca5205-cf3b-4386-88e4-af50dd721683,https://biolit.fr/observations/observation-e8ca5205-cf3b-4386-88e4-af50dd721683/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040725.JPG,,TRUE, +N1,60852,sortie-e8ca5205-cf3b-4386-88e4-af50dd721683,https://biolit.fr/sorties/sortie-e8ca5205-cf3b-4386-88e4-af50dd721683/,Phil,,11/02/2016,14.0:25,14.0000000,47.792512000000,-4.361229000000,,Penmarc'h - Finistère,52221,observation-e8ca5205-cf3b-4386-88e4-af50dd721683-2,https://biolit.fr/observations/observation-e8ca5205-cf3b-4386-88e4-af50dd721683-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040708.JPG,,FALSE, +N1,60852,sortie-e8ca5205-cf3b-4386-88e4-af50dd721683,https://biolit.fr/sorties/sortie-e8ca5205-cf3b-4386-88e4-af50dd721683/,Phil,,11/02/2016,14.0:25,14.0000000,47.792512000000,-4.361229000000,,Penmarc'h - Finistère,52223,observation-e8ca5205-cf3b-4386-88e4-af50dd721683-3,https://biolit.fr/observations/observation-e8ca5205-cf3b-4386-88e4-af50dd721683-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040707.JPG,,FALSE, +N1,60852,sortie-e8ca5205-cf3b-4386-88e4-af50dd721683,https://biolit.fr/sorties/sortie-e8ca5205-cf3b-4386-88e4-af50dd721683/,Phil,,11/02/2016,14.0:25,14.0000000,47.792512000000,-4.361229000000,,Penmarc'h - Finistère,52225,observation-e8ca5205-cf3b-4386-88e4-af50dd721683-4,https://biolit.fr/observations/observation-e8ca5205-cf3b-4386-88e4-af50dd721683-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040709.JPG,,FALSE, +N1,60852,sortie-e8ca5205-cf3b-4386-88e4-af50dd721683,https://biolit.fr/sorties/sortie-e8ca5205-cf3b-4386-88e4-af50dd721683/,Phil,,11/02/2016,14.0:25,14.0000000,47.792512000000,-4.361229000000,,Penmarc'h - Finistère,52227,observation-e8ca5205-cf3b-4386-88e4-af50dd721683-5,https://biolit.fr/observations/observation-e8ca5205-cf3b-4386-88e4-af50dd721683-5/,Ericaria selaginoides,Cystoseire bleue,,https://biolit.fr/wp-content/uploads/2023/07/P1040712.JPG,,TRUE, +N1,60852,sortie-e8ca5205-cf3b-4386-88e4-af50dd721683,https://biolit.fr/sorties/sortie-e8ca5205-cf3b-4386-88e4-af50dd721683/,Phil,,11/02/2016,14.0:25,14.0000000,47.792512000000,-4.361229000000,,Penmarc'h - Finistère,52229,observation-e8ca5205-cf3b-4386-88e4-af50dd721683-6,https://biolit.fr/observations/observation-e8ca5205-cf3b-4386-88e4-af50dd721683-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040722.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52231,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2622.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52233,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-2,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2623.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52235,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-3,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2624.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52237,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-4,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2625.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52239,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-5,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2626.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52241,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-6,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2627.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52243,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-7,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2628.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52245,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-8,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2629.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52247,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-9,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2630.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52249,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-10,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2631.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52251,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-11,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2632.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52253,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-12,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2633.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52255,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-13,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2634.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52257,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-14,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2635.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52259,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-15,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2638.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52261,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-16,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2639.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52263,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-17,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2641.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52265,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-18,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2642.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52267,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-19,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2643.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52269,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-20,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2646.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52271,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-21,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2647.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52273,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-22,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2650.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52275,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-23,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2651.JPG,,FALSE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52277,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-24,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-24/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2652.JPG,,TRUE, +N1,60853,sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b,https://biolit.fr/sorties/sortie-b3ea97be-12d4-489c-a620-8c09a5f8b73b/,Nicolas BEAUME,,10/24/2016 0:00,15.0:35,16.0:25,29.447965000000,-10.114987000000,,Plage de Legzira,52279,observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-25,https://biolit.fr/observations/observation-b3ea97be-12d4-489c-a620-8c09a5f8b73b-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2653.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52281,observation-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2546.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52283,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-2,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2547.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52285,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-3,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2548.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52287,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-4,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2552.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52289,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-5,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2553.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52291,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-6,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2561.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52293,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-7,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2562.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52295,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-8,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2563.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52297,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-9,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-9/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2567.JPG,,TRUE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52299,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-10,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2569.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52301,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-11,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-11/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/DSCF2570.JPG,,TRUE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52303,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-12,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2575.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52305,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-13,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2576.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52307,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-14,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2577.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52309,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-15,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-15/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2579.JPG,,TRUE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52311,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-16,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2581.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52313,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-17,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2582.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52315,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-18,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2583.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52317,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-19,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2584.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52319,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-20,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2585.JPG,,FALSE, +N1,60854,sortie-242fa4d3-acae-4924-af42-878a3d1a17a4,https://biolit.fr/sorties/sortie-242fa4d3-acae-4924-af42-878a3d1a17a4/,Nicolas BEAUME,,10/06/2016,11.0:15,11.0:55,32.738577000000,-9.043793000000,,Lagune de Oualidia,52321,observation-242fa4d3-acae-4924-af42-878a3d1a17a4-21,https://biolit.fr/observations/observation-242fa4d3-acae-4924-af42-878a3d1a17a4-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2586.JPG,,FALSE, +N1,60855,sortie-823e3150-a6d8-4108-a2d5-25cff7e13627,https://biolit.fr/sorties/sortie-823e3150-a6d8-4108-a2d5-25cff7e13627/,Phil,,11/02/2016,14.0:25,14.0:35,47.790748000000,-4.364104000000,,Penmarc'h - Finistère,52323,observation-823e3150-a6d8-4108-a2d5-25cff7e13627,https://biolit.fr/observations/observation-823e3150-a6d8-4108-a2d5-25cff7e13627/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/2023/07/P1040705.JPG,,TRUE, +N1,60855,sortie-823e3150-a6d8-4108-a2d5-25cff7e13627,https://biolit.fr/sorties/sortie-823e3150-a6d8-4108-a2d5-25cff7e13627/,Phil,,11/02/2016,14.0:25,14.0:35,47.790748000000,-4.364104000000,,Penmarc'h - Finistère,52325,observation-823e3150-a6d8-4108-a2d5-25cff7e13627-2,https://biolit.fr/observations/observation-823e3150-a6d8-4108-a2d5-25cff7e13627-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040700.JPG,,FALSE, +N1,60855,sortie-823e3150-a6d8-4108-a2d5-25cff7e13627,https://biolit.fr/sorties/sortie-823e3150-a6d8-4108-a2d5-25cff7e13627/,Phil,,11/02/2016,14.0:25,14.0:35,47.790748000000,-4.364104000000,,Penmarc'h - Finistère,52327,observation-823e3150-a6d8-4108-a2d5-25cff7e13627-3,https://biolit.fr/observations/observation-823e3150-a6d8-4108-a2d5-25cff7e13627-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040701.JPG,,FALSE, +N1,60855,sortie-823e3150-a6d8-4108-a2d5-25cff7e13627,https://biolit.fr/sorties/sortie-823e3150-a6d8-4108-a2d5-25cff7e13627/,Phil,,11/02/2016,14.0:25,14.0:35,47.790748000000,-4.364104000000,,Penmarc'h - Finistère,52329,observation-823e3150-a6d8-4108-a2d5-25cff7e13627-4,https://biolit.fr/observations/observation-823e3150-a6d8-4108-a2d5-25cff7e13627-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040703.JPG,,FALSE, +N1,60856,sortie-e5ca3612-3c03-41e9-a60a-af0542695e5f,https://biolit.fr/sorties/sortie-e5ca3612-3c03-41e9-a60a-af0542695e5f/,Phil,,11/02/2016,15.0:25,15.0000000,47.799354000000,-4.184126000000,,Loctudy - Finistère,52331,observation-e5ca3612-3c03-41e9-a60a-af0542695e5f,https://biolit.fr/observations/observation-e5ca3612-3c03-41e9-a60a-af0542695e5f/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161102_153355.jpg,,FALSE, +N1,60857,sortie-c3c5344f-deb3-4c38-9220-46689e35de7d,https://biolit.fr/sorties/sortie-c3c5344f-deb3-4c38-9220-46689e35de7d/,Phil,,11/04/2016,13.0000000,13.0000000,47.873034000000,-3.933652000000,,Concarneau - Finistère,52333,observation-c3c5344f-deb3-4c38-9220-46689e35de7d,https://biolit.fr/observations/observation-c3c5344f-deb3-4c38-9220-46689e35de7d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040864.JPG,,FALSE, +N1,60857,sortie-c3c5344f-deb3-4c38-9220-46689e35de7d,https://biolit.fr/sorties/sortie-c3c5344f-deb3-4c38-9220-46689e35de7d/,Phil,,11/04/2016,13.0000000,13.0000000,47.873034000000,-3.933652000000,,Concarneau - Finistère,52335,observation-c3c5344f-deb3-4c38-9220-46689e35de7d-2,https://biolit.fr/observations/observation-c3c5344f-deb3-4c38-9220-46689e35de7d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040869.JPG,,FALSE, +N1,60857,sortie-c3c5344f-deb3-4c38-9220-46689e35de7d,https://biolit.fr/sorties/sortie-c3c5344f-deb3-4c38-9220-46689e35de7d/,Phil,,11/04/2016,13.0000000,13.0000000,47.873034000000,-3.933652000000,,Concarneau - Finistère,52337,observation-c3c5344f-deb3-4c38-9220-46689e35de7d-3,https://biolit.fr/observations/observation-c3c5344f-deb3-4c38-9220-46689e35de7d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040879.JPG,,FALSE, +N1,60857,sortie-c3c5344f-deb3-4c38-9220-46689e35de7d,https://biolit.fr/sorties/sortie-c3c5344f-deb3-4c38-9220-46689e35de7d/,Phil,,11/04/2016,13.0000000,13.0000000,47.873034000000,-3.933652000000,,Concarneau - Finistère,52339,observation-c3c5344f-deb3-4c38-9220-46689e35de7d-4,https://biolit.fr/observations/observation-c3c5344f-deb3-4c38-9220-46689e35de7d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040857.JPG,,FALSE, +N1,60857,sortie-c3c5344f-deb3-4c38-9220-46689e35de7d,https://biolit.fr/sorties/sortie-c3c5344f-deb3-4c38-9220-46689e35de7d/,Phil,,11/04/2016,13.0000000,13.0000000,47.873034000000,-3.933652000000,,Concarneau - Finistère,52341,observation-c3c5344f-deb3-4c38-9220-46689e35de7d-5,https://biolit.fr/observations/observation-c3c5344f-deb3-4c38-9220-46689e35de7d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040862.JPG,,FALSE, +N1,60857,sortie-c3c5344f-deb3-4c38-9220-46689e35de7d,https://biolit.fr/sorties/sortie-c3c5344f-deb3-4c38-9220-46689e35de7d/,Phil,,11/04/2016,13.0000000,13.0000000,47.873034000000,-3.933652000000,,Concarneau - Finistère,52343,observation-c3c5344f-deb3-4c38-9220-46689e35de7d-6,https://biolit.fr/observations/observation-c3c5344f-deb3-4c38-9220-46689e35de7d-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040861.JPG,,FALSE, +N1,60858,sortie-3e3313ab-8da7-46b1-b8fc-35e058b0173c,https://biolit.fr/sorties/sortie-3e3313ab-8da7-46b1-b8fc-35e058b0173c/,Phil,,11/02/2016,15.0:35,15.0000000,47.800439000000,-4.183345000000,,Loctudy - Finistère,52345,observation-3e3313ab-8da7-46b1-b8fc-35e058b0173c,https://biolit.fr/observations/observation-3e3313ab-8da7-46b1-b8fc-35e058b0173c/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161102_153551.jpg,,FALSE, +N1,60858,sortie-3e3313ab-8da7-46b1-b8fc-35e058b0173c,https://biolit.fr/sorties/sortie-3e3313ab-8da7-46b1-b8fc-35e058b0173c/,Phil,,11/02/2016,15.0:35,15.0000000,47.800439000000,-4.183345000000,,Loctudy - Finistère,52347,observation-3e3313ab-8da7-46b1-b8fc-35e058b0173c-2,https://biolit.fr/observations/observation-3e3313ab-8da7-46b1-b8fc-35e058b0173c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161102_153655.jpg,,FALSE, +N1,60859,sortie-71da2471-69c1-45d2-b894-538552bbd7c9,https://biolit.fr/sorties/sortie-71da2471-69c1-45d2-b894-538552bbd7c9/,Phil,,11/02/2016,14.0000000,14.0000000,47.791705000000,-4.360748000000,,Penmarc'h - Finistère,52349,observation-71da2471-69c1-45d2-b894-538552bbd7c9,https://biolit.fr/observations/observation-71da2471-69c1-45d2-b894-538552bbd7c9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040689.JPG,,FALSE, +N1,60859,sortie-71da2471-69c1-45d2-b894-538552bbd7c9,https://biolit.fr/sorties/sortie-71da2471-69c1-45d2-b894-538552bbd7c9/,Phil,,11/02/2016,14.0000000,14.0000000,47.791705000000,-4.360748000000,,Penmarc'h - Finistère,52351,observation-71da2471-69c1-45d2-b894-538552bbd7c9-2,https://biolit.fr/observations/observation-71da2471-69c1-45d2-b894-538552bbd7c9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040690.JPG,,FALSE, +N1,60860,sortie-2060735f-53c6-4809-a582-41d8326f8504,https://biolit.fr/sorties/sortie-2060735f-53c6-4809-a582-41d8326f8504/,Phil,,11/04/2016,13.0000000,13.0000000,47.872680000000,-3.93308400000,,Concarneau - Finistère,52353,observation-2060735f-53c6-4809-a582-41d8326f8504,https://biolit.fr/observations/observation-2060735f-53c6-4809-a582-41d8326f8504/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040819.JPG,,FALSE, +N1,60860,sortie-2060735f-53c6-4809-a582-41d8326f8504,https://biolit.fr/sorties/sortie-2060735f-53c6-4809-a582-41d8326f8504/,Phil,,11/04/2016,13.0000000,13.0000000,47.872680000000,-3.93308400000,,Concarneau - Finistère,52355,observation-2060735f-53c6-4809-a582-41d8326f8504-2,https://biolit.fr/observations/observation-2060735f-53c6-4809-a582-41d8326f8504-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040823.JPG,,FALSE, +N1,60860,sortie-2060735f-53c6-4809-a582-41d8326f8504,https://biolit.fr/sorties/sortie-2060735f-53c6-4809-a582-41d8326f8504/,Phil,,11/04/2016,13.0000000,13.0000000,47.872680000000,-3.93308400000,,Concarneau - Finistère,52357,observation-2060735f-53c6-4809-a582-41d8326f8504-3,https://biolit.fr/observations/observation-2060735f-53c6-4809-a582-41d8326f8504-3/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1040824.JPG,,TRUE, +N1,60860,sortie-2060735f-53c6-4809-a582-41d8326f8504,https://biolit.fr/sorties/sortie-2060735f-53c6-4809-a582-41d8326f8504/,Phil,,11/04/2016,13.0000000,13.0000000,47.872680000000,-3.93308400000,,Concarneau - Finistère,52359,observation-2060735f-53c6-4809-a582-41d8326f8504-4,https://biolit.fr/observations/observation-2060735f-53c6-4809-a582-41d8326f8504-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040835.JPG,,FALSE, +N1,60860,sortie-2060735f-53c6-4809-a582-41d8326f8504,https://biolit.fr/sorties/sortie-2060735f-53c6-4809-a582-41d8326f8504/,Phil,,11/04/2016,13.0000000,13.0000000,47.872680000000,-3.93308400000,,Concarneau - Finistère,52361,observation-2060735f-53c6-4809-a582-41d8326f8504-5,https://biolit.fr/observations/observation-2060735f-53c6-4809-a582-41d8326f8504-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040825.JPG,,FALSE, +N1,60860,sortie-2060735f-53c6-4809-a582-41d8326f8504,https://biolit.fr/sorties/sortie-2060735f-53c6-4809-a582-41d8326f8504/,Phil,,11/04/2016,13.0000000,13.0000000,47.872680000000,-3.93308400000,,Concarneau - Finistère,52363,observation-2060735f-53c6-4809-a582-41d8326f8504-6,https://biolit.fr/observations/observation-2060735f-53c6-4809-a582-41d8326f8504-6/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1040849.JPG,,TRUE, +N1,60861,sortie-7e39b8f5-9526-41db-88a9-21e81e2e5ce4,https://biolit.fr/sorties/sortie-7e39b8f5-9526-41db-88a9-21e81e2e5ce4/,Phil,,11/02/2016,14.0:15,14.0:25,47.792522000000,-4.364576000000,,Penmarc'h - Finistère,52365,observation-7e39b8f5-9526-41db-88a9-21e81e2e5ce4,https://biolit.fr/observations/observation-7e39b8f5-9526-41db-88a9-21e81e2e5ce4/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1040675.JPG,,TRUE, +N1,60861,sortie-7e39b8f5-9526-41db-88a9-21e81e2e5ce4,https://biolit.fr/sorties/sortie-7e39b8f5-9526-41db-88a9-21e81e2e5ce4/,Phil,,11/02/2016,14.0:15,14.0:25,47.792522000000,-4.364576000000,,Penmarc'h - Finistère,52367,observation-7e39b8f5-9526-41db-88a9-21e81e2e5ce4-2,https://biolit.fr/observations/observation-7e39b8f5-9526-41db-88a9-21e81e2e5ce4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040678.JPG,,FALSE, +N1,60861,sortie-7e39b8f5-9526-41db-88a9-21e81e2e5ce4,https://biolit.fr/sorties/sortie-7e39b8f5-9526-41db-88a9-21e81e2e5ce4/,Phil,,11/02/2016,14.0:15,14.0:25,47.792522000000,-4.364576000000,,Penmarc'h - Finistère,52369,observation-7e39b8f5-9526-41db-88a9-21e81e2e5ce4-3,https://biolit.fr/observations/observation-7e39b8f5-9526-41db-88a9-21e81e2e5ce4-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040680.JPG,,FALSE, +N1,60861,sortie-7e39b8f5-9526-41db-88a9-21e81e2e5ce4,https://biolit.fr/sorties/sortie-7e39b8f5-9526-41db-88a9-21e81e2e5ce4/,Phil,,11/02/2016,14.0:15,14.0:25,47.792522000000,-4.364576000000,,Penmarc'h - Finistère,52371,observation-7e39b8f5-9526-41db-88a9-21e81e2e5ce4-4,https://biolit.fr/observations/observation-7e39b8f5-9526-41db-88a9-21e81e2e5ce4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040682.JPG,,FALSE, +N1,60861,sortie-7e39b8f5-9526-41db-88a9-21e81e2e5ce4,https://biolit.fr/sorties/sortie-7e39b8f5-9526-41db-88a9-21e81e2e5ce4/,Phil,,11/02/2016,14.0:15,14.0:25,47.792522000000,-4.364576000000,,Penmarc'h - Finistère,52373,observation-7e39b8f5-9526-41db-88a9-21e81e2e5ce4-5,https://biolit.fr/observations/observation-7e39b8f5-9526-41db-88a9-21e81e2e5ce4-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040685.JPG,,FALSE, +N1,60862,sortie-575dde76-3cc8-4002-b947-ef45cff1d7e7,https://biolit.fr/sorties/sortie-575dde76-3cc8-4002-b947-ef45cff1d7e7/,Phil,,11/04/2016,12.0000000,12.0:55,47.873317000000,-3.933328000000,,Concarneau - Finistère,52375,observation-575dde76-3cc8-4002-b947-ef45cff1d7e7,https://biolit.fr/observations/observation-575dde76-3cc8-4002-b947-ef45cff1d7e7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040802.JPG,,FALSE, +N1,60862,sortie-575dde76-3cc8-4002-b947-ef45cff1d7e7,https://biolit.fr/sorties/sortie-575dde76-3cc8-4002-b947-ef45cff1d7e7/,Phil,,11/04/2016,12.0000000,12.0:55,47.873317000000,-3.933328000000,,Concarneau - Finistère,52377,observation-575dde76-3cc8-4002-b947-ef45cff1d7e7-2,https://biolit.fr/observations/observation-575dde76-3cc8-4002-b947-ef45cff1d7e7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040801.JPG,,FALSE, +N1,60862,sortie-575dde76-3cc8-4002-b947-ef45cff1d7e7,https://biolit.fr/sorties/sortie-575dde76-3cc8-4002-b947-ef45cff1d7e7/,Phil,,11/04/2016,12.0000000,12.0:55,47.873317000000,-3.933328000000,,Concarneau - Finistère,52379,observation-575dde76-3cc8-4002-b947-ef45cff1d7e7-3,https://biolit.fr/observations/observation-575dde76-3cc8-4002-b947-ef45cff1d7e7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040810.JPG,,FALSE, +N1,60862,sortie-575dde76-3cc8-4002-b947-ef45cff1d7e7,https://biolit.fr/sorties/sortie-575dde76-3cc8-4002-b947-ef45cff1d7e7/,Phil,,11/04/2016,12.0000000,12.0:55,47.873317000000,-3.933328000000,,Concarneau - Finistère,52381,observation-575dde76-3cc8-4002-b947-ef45cff1d7e7-4,https://biolit.fr/observations/observation-575dde76-3cc8-4002-b947-ef45cff1d7e7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040812.JPG,,FALSE, +N1,60862,sortie-575dde76-3cc8-4002-b947-ef45cff1d7e7,https://biolit.fr/sorties/sortie-575dde76-3cc8-4002-b947-ef45cff1d7e7/,Phil,,11/04/2016,12.0000000,12.0:55,47.873317000000,-3.933328000000,,Concarneau - Finistère,52383,observation-575dde76-3cc8-4002-b947-ef45cff1d7e7-5,https://biolit.fr/observations/observation-575dde76-3cc8-4002-b947-ef45cff1d7e7-5/,Zeus faber,Saint-pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1040818.JPG,,TRUE, +N1,60863,sortie-a4dacb7e-7d19-4045-bbb8-506ca255b1d2,https://biolit.fr/sorties/sortie-a4dacb7e-7d19-4045-bbb8-506ca255b1d2/,Phil,,10/20/2016 0:00,16.0:15,16.0000000,48.120162000000,-4.283484000000,,Plonevez Porzay - Finistère,52385,observation-a4dacb7e-7d19-4045-bbb8-506ca255b1d2,https://biolit.fr/observations/observation-a4dacb7e-7d19-4045-bbb8-506ca255b1d2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040616.JPG,,FALSE, +N1,60864,sortie-f1feaa63-2dfc-449a-aacf-a68686cec7a9,https://biolit.fr/sorties/sortie-f1feaa63-2dfc-449a-aacf-a68686cec7a9/,Phil,,11/02/2016,14.0000000,14.0000000,47.792454000000,-4.364795000000,,Penmarc'h - Finistère,52387,observation-f1feaa63-2dfc-449a-aacf-a68686cec7a9,https://biolit.fr/observations/observation-f1feaa63-2dfc-449a-aacf-a68686cec7a9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040674.JPG,,FALSE, +N1,60864,sortie-f1feaa63-2dfc-449a-aacf-a68686cec7a9,https://biolit.fr/sorties/sortie-f1feaa63-2dfc-449a-aacf-a68686cec7a9/,Phil,,11/02/2016,14.0000000,14.0000000,47.792454000000,-4.364795000000,,Penmarc'h - Finistère,52389,observation-f1feaa63-2dfc-449a-aacf-a68686cec7a9-2,https://biolit.fr/observations/observation-f1feaa63-2dfc-449a-aacf-a68686cec7a9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040670.JPG,,FALSE, +N1,60864,sortie-f1feaa63-2dfc-449a-aacf-a68686cec7a9,https://biolit.fr/sorties/sortie-f1feaa63-2dfc-449a-aacf-a68686cec7a9/,Phil,,11/02/2016,14.0000000,14.0000000,47.792454000000,-4.364795000000,,Penmarc'h - Finistère,52391,observation-f1feaa63-2dfc-449a-aacf-a68686cec7a9-3,https://biolit.fr/observations/observation-f1feaa63-2dfc-449a-aacf-a68686cec7a9-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040671.JPG,,TRUE, +N1,60864,sortie-f1feaa63-2dfc-449a-aacf-a68686cec7a9,https://biolit.fr/sorties/sortie-f1feaa63-2dfc-449a-aacf-a68686cec7a9/,Phil,,11/02/2016,14.0000000,14.0000000,47.792454000000,-4.364795000000,,Penmarc'h - Finistère,52393,observation-f1feaa63-2dfc-449a-aacf-a68686cec7a9-4,https://biolit.fr/observations/observation-f1feaa63-2dfc-449a-aacf-a68686cec7a9-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040672.JPG,,FALSE, +N1,60864,sortie-f1feaa63-2dfc-449a-aacf-a68686cec7a9,https://biolit.fr/sorties/sortie-f1feaa63-2dfc-449a-aacf-a68686cec7a9/,Phil,,11/02/2016,14.0000000,14.0000000,47.792454000000,-4.364795000000,,Penmarc'h - Finistère,52395,observation-f1feaa63-2dfc-449a-aacf-a68686cec7a9-5,https://biolit.fr/observations/observation-f1feaa63-2dfc-449a-aacf-a68686cec7a9-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040669.JPG,,FALSE, +N1,60864,sortie-f1feaa63-2dfc-449a-aacf-a68686cec7a9,https://biolit.fr/sorties/sortie-f1feaa63-2dfc-449a-aacf-a68686cec7a9/,Phil,,11/02/2016,14.0000000,14.0000000,47.792454000000,-4.364795000000,,Penmarc'h - Finistère,52397,observation-f1feaa63-2dfc-449a-aacf-a68686cec7a9-6,https://biolit.fr/observations/observation-f1feaa63-2dfc-449a-aacf-a68686cec7a9-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040673.JPG,,FALSE, +N1,60865,sortie-bb1985e5-1e30-41f9-abd0-1f49ba9dd93a,https://biolit.fr/sorties/sortie-bb1985e5-1e30-41f9-abd0-1f49ba9dd93a/,Phil,,10/29/2016 0:00,13.0:15,13.0000000,47.796255000000,-3.83010800000,,Trévignon - Finistère,52399,observation-bb1985e5-1e30-41f9-abd0-1f49ba9dd93a,https://biolit.fr/observations/observation-bb1985e5-1e30-41f9-abd0-1f49ba9dd93a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040637.JPG,,FALSE, +N1,60866,sortie-143dc341-fa35-4404-86dc-2eed21ec0580,https://biolit.fr/sorties/sortie-143dc341-fa35-4404-86dc-2eed21ec0580/,Phil,,11/02/2016,15.0:25,15.0000000,47.802080000000,-4.181069000000,,Loctudy - Finistère,52401,observation-143dc341-fa35-4404-86dc-2eed21ec0580,https://biolit.fr/observations/observation-143dc341-fa35-4404-86dc-2eed21ec0580/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20161102_153036.jpg,,TRUE, +N1,60866,sortie-143dc341-fa35-4404-86dc-2eed21ec0580,https://biolit.fr/sorties/sortie-143dc341-fa35-4404-86dc-2eed21ec0580/,Phil,,11/02/2016,15.0:25,15.0000000,47.802080000000,-4.181069000000,,Loctudy - Finistère,52403,observation-143dc341-fa35-4404-86dc-2eed21ec0580-2,https://biolit.fr/observations/observation-143dc341-fa35-4404-86dc-2eed21ec0580-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20161102_152645.jpg,,TRUE, +N1,60867,sortie-7ec2d202-6c75-45f0-92b7-351c96ac372a,https://biolit.fr/sorties/sortie-7ec2d202-6c75-45f0-92b7-351c96ac372a/,Phil,,11/02/2016,14.0000000,14.0000000,47.793484000000,-4.362005000000,,Penmarc'h - Finistère,52405,observation-7ec2d202-6c75-45f0-92b7-351c96ac372a,https://biolit.fr/observations/observation-7ec2d202-6c75-45f0-92b7-351c96ac372a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040666.JPG,,FALSE, +N1,60867,sortie-7ec2d202-6c75-45f0-92b7-351c96ac372a,https://biolit.fr/sorties/sortie-7ec2d202-6c75-45f0-92b7-351c96ac372a/,Phil,,11/02/2016,14.0000000,14.0000000,47.793484000000,-4.362005000000,,Penmarc'h - Finistère,52407,observation-7ec2d202-6c75-45f0-92b7-351c96ac372a-2,https://biolit.fr/observations/observation-7ec2d202-6c75-45f0-92b7-351c96ac372a-2/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1040665.JPG,,TRUE, +N1,60867,sortie-7ec2d202-6c75-45f0-92b7-351c96ac372a,https://biolit.fr/sorties/sortie-7ec2d202-6c75-45f0-92b7-351c96ac372a/,Phil,,11/02/2016,14.0000000,14.0000000,47.793484000000,-4.362005000000,,Penmarc'h - Finistère,52409,observation-7ec2d202-6c75-45f0-92b7-351c96ac372a-3,https://biolit.fr/observations/observation-7ec2d202-6c75-45f0-92b7-351c96ac372a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040663.JPG,,FALSE, +N1,60867,sortie-7ec2d202-6c75-45f0-92b7-351c96ac372a,https://biolit.fr/sorties/sortie-7ec2d202-6c75-45f0-92b7-351c96ac372a/,Phil,,11/02/2016,14.0000000,14.0000000,47.793484000000,-4.362005000000,,Penmarc'h - Finistère,52411,observation-7ec2d202-6c75-45f0-92b7-351c96ac372a-4,https://biolit.fr/observations/observation-7ec2d202-6c75-45f0-92b7-351c96ac372a-4/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040662.JPG,,TRUE, +N1,60868,sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e,https://biolit.fr/sorties/sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e/,Phil,,10/29/2016 0:00,13.0:15,13.0:25,47.796532000000,-3.830379000000,,Trévignon - Finistère,52413,observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e,https://biolit.fr/observations/observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1040643.JPG,,TRUE, +N1,60868,sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e,https://biolit.fr/sorties/sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e/,Phil,,10/29/2016 0:00,13.0:15,13.0:25,47.796532000000,-3.830379000000,,Trévignon - Finistère,52415,observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e-2,https://biolit.fr/observations/observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040640.JPG,,FALSE, +N1,60868,sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e,https://biolit.fr/sorties/sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e/,Phil,,10/29/2016 0:00,13.0:15,13.0:25,47.796532000000,-3.830379000000,,Trévignon - Finistère,52417,observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e-3,https://biolit.fr/observations/observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e-3/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/P1040654.JPG,,TRUE, +N1,60868,sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e,https://biolit.fr/sorties/sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e/,Phil,,10/29/2016 0:00,13.0:15,13.0:25,47.796532000000,-3.830379000000,,Trévignon - Finistère,52419,observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e-4,https://biolit.fr/observations/observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040657.JPG,,FALSE, +N1,60868,sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e,https://biolit.fr/sorties/sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e/,Phil,,10/29/2016 0:00,13.0:15,13.0:25,47.796532000000,-3.830379000000,,Trévignon - Finistère,52421,observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e-5,https://biolit.fr/observations/observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040658.JPG,,FALSE, +N1,60868,sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e,https://biolit.fr/sorties/sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e/,Phil,,10/29/2016 0:00,13.0:15,13.0:25,47.796532000000,-3.830379000000,,Trévignon - Finistère,52423,observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e-6,https://biolit.fr/observations/observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040659.JPG,,FALSE, +N1,60868,sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e,https://biolit.fr/sorties/sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e/,Phil,,10/29/2016 0:00,13.0:15,13.0:25,47.796532000000,-3.830379000000,,Trévignon - Finistère,52425,observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e-7,https://biolit.fr/observations/observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040647.JPG,,FALSE, +N1,60868,sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e,https://biolit.fr/sorties/sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e/,Phil,,10/29/2016 0:00,13.0:15,13.0:25,47.796532000000,-3.830379000000,,Trévignon - Finistère,52427,observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e-8,https://biolit.fr/observations/observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040642.JPG,,FALSE, +N1,60868,sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e,https://biolit.fr/sorties/sortie-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e/,Phil,,10/29/2016 0:00,13.0:15,13.0:25,47.796532000000,-3.830379000000,,Trévignon - Finistère,52429,observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e-9,https://biolit.fr/observations/observation-db3d5f3a-2fd1-43bc-9348-21dc4c353d8e-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040645.JPG,,FALSE, +N1,60869,sortie-6f53f4d9-349f-4b74-b544-f2334675ac59,https://biolit.fr/sorties/sortie-6f53f4d9-349f-4b74-b544-f2334675ac59/,azelie,,10/30/2016 0:00,13.0000000,13.0000000,49.336566000000,0.021194000000,,Plage de Blonville-sur-mer,52431,observation-6f53f4d9-349f-4b74-b544-f2334675ac59,https://biolit.fr/observations/observation-6f53f4d9-349f-4b74-b544-f2334675ac59/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3735-scaled.jpg,,FALSE, +N1,60869,sortie-6f53f4d9-349f-4b74-b544-f2334675ac59,https://biolit.fr/sorties/sortie-6f53f4d9-349f-4b74-b544-f2334675ac59/,azelie,,10/30/2016 0:00,13.0000000,13.0000000,49.336566000000,0.021194000000,,Plage de Blonville-sur-mer,52433,observation-6f53f4d9-349f-4b74-b544-f2334675ac59-2,https://biolit.fr/observations/observation-6f53f4d9-349f-4b74-b544-f2334675ac59-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3746.jpg,,FALSE, +N1,60869,sortie-6f53f4d9-349f-4b74-b544-f2334675ac59,https://biolit.fr/sorties/sortie-6f53f4d9-349f-4b74-b544-f2334675ac59/,azelie,,10/30/2016 0:00,13.0000000,13.0000000,49.336566000000,0.021194000000,,Plage de Blonville-sur-mer,52435,observation-6f53f4d9-349f-4b74-b544-f2334675ac59-3,https://biolit.fr/observations/observation-6f53f4d9-349f-4b74-b544-f2334675ac59-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3747-scaled.jpg,,FALSE, +N1,60869,sortie-6f53f4d9-349f-4b74-b544-f2334675ac59,https://biolit.fr/sorties/sortie-6f53f4d9-349f-4b74-b544-f2334675ac59/,azelie,,10/30/2016 0:00,13.0000000,13.0000000,49.336566000000,0.021194000000,,Plage de Blonville-sur-mer,52437,observation-6f53f4d9-349f-4b74-b544-f2334675ac59-4,https://biolit.fr/observations/observation-6f53f4d9-349f-4b74-b544-f2334675ac59-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3748-scaled.jpg,,FALSE, +N1,60869,sortie-6f53f4d9-349f-4b74-b544-f2334675ac59,https://biolit.fr/sorties/sortie-6f53f4d9-349f-4b74-b544-f2334675ac59/,azelie,,10/30/2016 0:00,13.0000000,13.0000000,49.336566000000,0.021194000000,,Plage de Blonville-sur-mer,52439,observation-6f53f4d9-349f-4b74-b544-f2334675ac59-5,https://biolit.fr/observations/observation-6f53f4d9-349f-4b74-b544-f2334675ac59-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3749-scaled.jpg,,FALSE, +N1,60869,sortie-6f53f4d9-349f-4b74-b544-f2334675ac59,https://biolit.fr/sorties/sortie-6f53f4d9-349f-4b74-b544-f2334675ac59/,azelie,,10/30/2016 0:00,13.0000000,13.0000000,49.336566000000,0.021194000000,,Plage de Blonville-sur-mer,52441,observation-6f53f4d9-349f-4b74-b544-f2334675ac59-6,https://biolit.fr/observations/observation-6f53f4d9-349f-4b74-b544-f2334675ac59-6/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_3753-scaled.jpg,,TRUE, +N1,60869,sortie-6f53f4d9-349f-4b74-b544-f2334675ac59,https://biolit.fr/sorties/sortie-6f53f4d9-349f-4b74-b544-f2334675ac59/,azelie,,10/30/2016 0:00,13.0000000,13.0000000,49.336566000000,0.021194000000,,Plage de Blonville-sur-mer,52443,observation-6f53f4d9-349f-4b74-b544-f2334675ac59-7,https://biolit.fr/observations/observation-6f53f4d9-349f-4b74-b544-f2334675ac59-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3755-scaled.jpg,,FALSE, +N1,60869,sortie-6f53f4d9-349f-4b74-b544-f2334675ac59,https://biolit.fr/sorties/sortie-6f53f4d9-349f-4b74-b544-f2334675ac59/,azelie,,10/30/2016 0:00,13.0000000,13.0000000,49.336566000000,0.021194000000,,Plage de Blonville-sur-mer,52445,observation-6f53f4d9-349f-4b74-b544-f2334675ac59-8,https://biolit.fr/observations/observation-6f53f4d9-349f-4b74-b544-f2334675ac59-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3756-scaled.jpg,,FALSE, +N1,60869,sortie-6f53f4d9-349f-4b74-b544-f2334675ac59,https://biolit.fr/sorties/sortie-6f53f4d9-349f-4b74-b544-f2334675ac59/,azelie,,10/30/2016 0:00,13.0000000,13.0000000,49.336566000000,0.021194000000,,Plage de Blonville-sur-mer,52447,observation-6f53f4d9-349f-4b74-b544-f2334675ac59-9,https://biolit.fr/observations/observation-6f53f4d9-349f-4b74-b544-f2334675ac59-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3760-rotated.jpg,,FALSE, +N1,60869,sortie-6f53f4d9-349f-4b74-b544-f2334675ac59,https://biolit.fr/sorties/sortie-6f53f4d9-349f-4b74-b544-f2334675ac59/,azelie,,10/30/2016 0:00,13.0000000,13.0000000,49.336566000000,0.021194000000,,Plage de Blonville-sur-mer,52449,observation-6f53f4d9-349f-4b74-b544-f2334675ac59-10,https://biolit.fr/observations/observation-6f53f4d9-349f-4b74-b544-f2334675ac59-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3758.JPG,,FALSE, +N1,60870,sortie-a0c59237-8aaa-45d5-8fdd-ec155095e808,https://biolit.fr/sorties/sortie-a0c59237-8aaa-45d5-8fdd-ec155095e808/,Earthforce FS,,10/28/2016 0:00,15.0000000,17.0000000,16.208682000000,-61.424234000000,,Le Gosier,52451,observation-a0c59237-8aaa-45d5-8fdd-ec155095e808,https://biolit.fr/observations/observation-a0c59237-8aaa-45d5-8fdd-ec155095e808/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5367.JPG,,FALSE, +N1,60870,sortie-a0c59237-8aaa-45d5-8fdd-ec155095e808,https://biolit.fr/sorties/sortie-a0c59237-8aaa-45d5-8fdd-ec155095e808/,Earthforce FS,,10/28/2016 0:00,15.0000000,17.0000000,16.208682000000,-61.424234000000,,Le Gosier,52453,observation-a0c59237-8aaa-45d5-8fdd-ec155095e808-2,https://biolit.fr/observations/observation-a0c59237-8aaa-45d5-8fdd-ec155095e808-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5365.jpg,,FALSE, +N1,60870,sortie-a0c59237-8aaa-45d5-8fdd-ec155095e808,https://biolit.fr/sorties/sortie-a0c59237-8aaa-45d5-8fdd-ec155095e808/,Earthforce FS,,10/28/2016 0:00,15.0000000,17.0000000,16.208682000000,-61.424234000000,,Le Gosier,52455,observation-a0c59237-8aaa-45d5-8fdd-ec155095e808-3,https://biolit.fr/observations/observation-a0c59237-8aaa-45d5-8fdd-ec155095e808-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5372_0.JPG,,FALSE, +N1,60870,sortie-a0c59237-8aaa-45d5-8fdd-ec155095e808,https://biolit.fr/sorties/sortie-a0c59237-8aaa-45d5-8fdd-ec155095e808/,Earthforce FS,,10/28/2016 0:00,15.0000000,17.0000000,16.208682000000,-61.424234000000,,Le Gosier,52457,observation-a0c59237-8aaa-45d5-8fdd-ec155095e808-4,https://biolit.fr/observations/observation-a0c59237-8aaa-45d5-8fdd-ec155095e808-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5371_0.JPG,,FALSE, +N1,60870,sortie-a0c59237-8aaa-45d5-8fdd-ec155095e808,https://biolit.fr/sorties/sortie-a0c59237-8aaa-45d5-8fdd-ec155095e808/,Earthforce FS,,10/28/2016 0:00,15.0000000,17.0000000,16.208682000000,-61.424234000000,,Le Gosier,52459,observation-a0c59237-8aaa-45d5-8fdd-ec155095e808-5,https://biolit.fr/observations/observation-a0c59237-8aaa-45d5-8fdd-ec155095e808-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5374_0.JPG,,FALSE, +N1,60872,sortie-f7b4637d-858f-48a0-9b38-307997979083,https://biolit.fr/sorties/sortie-f7b4637d-858f-48a0-9b38-307997979083/,azelie,,10/30/2016 0:00,13.0000000,13.0:15,49.3361150000,0.021046000000,,Plage de Blonville-sur-mer,52475,observation-f7b4637d-858f-48a0-9b38-307997979083,https://biolit.fr/observations/observation-f7b4637d-858f-48a0-9b38-307997979083/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3728-scaled.jpg,,FALSE, +N1,60872,sortie-f7b4637d-858f-48a0-9b38-307997979083,https://biolit.fr/sorties/sortie-f7b4637d-858f-48a0-9b38-307997979083/,azelie,,10/30/2016 0:00,13.0000000,13.0:15,49.3361150000,0.021046000000,,Plage de Blonville-sur-mer,52477,observation-f7b4637d-858f-48a0-9b38-307997979083-2,https://biolit.fr/observations/observation-f7b4637d-858f-48a0-9b38-307997979083-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3729-scaled.jpg,,FALSE, +N1,60872,sortie-f7b4637d-858f-48a0-9b38-307997979083,https://biolit.fr/sorties/sortie-f7b4637d-858f-48a0-9b38-307997979083/,azelie,,10/30/2016 0:00,13.0000000,13.0:15,49.3361150000,0.021046000000,,Plage de Blonville-sur-mer,52479,observation-f7b4637d-858f-48a0-9b38-307997979083-3,https://biolit.fr/observations/observation-f7b4637d-858f-48a0-9b38-307997979083-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3731-scaled.jpg,,FALSE, +N1,60872,sortie-f7b4637d-858f-48a0-9b38-307997979083,https://biolit.fr/sorties/sortie-f7b4637d-858f-48a0-9b38-307997979083/,azelie,,10/30/2016 0:00,13.0000000,13.0:15,49.3361150000,0.021046000000,,Plage de Blonville-sur-mer,52481,observation-f7b4637d-858f-48a0-9b38-307997979083-4,https://biolit.fr/observations/observation-f7b4637d-858f-48a0-9b38-307997979083-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3732-scaled.jpg,,FALSE, +N1,60872,sortie-f7b4637d-858f-48a0-9b38-307997979083,https://biolit.fr/sorties/sortie-f7b4637d-858f-48a0-9b38-307997979083/,azelie,,10/30/2016 0:00,13.0000000,13.0:15,49.3361150000,0.021046000000,,Plage de Blonville-sur-mer,52483,observation-f7b4637d-858f-48a0-9b38-307997979083-5,https://biolit.fr/observations/observation-f7b4637d-858f-48a0-9b38-307997979083-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3733-scaled.jpg,,FALSE, +N1,60872,sortie-f7b4637d-858f-48a0-9b38-307997979083,https://biolit.fr/sorties/sortie-f7b4637d-858f-48a0-9b38-307997979083/,azelie,,10/30/2016 0:00,13.0000000,13.0:15,49.3361150000,0.021046000000,,Plage de Blonville-sur-mer,52485,observation-f7b4637d-858f-48a0-9b38-307997979083-6,https://biolit.fr/observations/observation-f7b4637d-858f-48a0-9b38-307997979083-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3726-scaled.jpg,,FALSE, +N1,60872,sortie-f7b4637d-858f-48a0-9b38-307997979083,https://biolit.fr/sorties/sortie-f7b4637d-858f-48a0-9b38-307997979083/,azelie,,10/30/2016 0:00,13.0000000,13.0:15,49.3361150000,0.021046000000,,Plage de Blonville-sur-mer,52487,observation-f7b4637d-858f-48a0-9b38-307997979083-7,https://biolit.fr/observations/observation-f7b4637d-858f-48a0-9b38-307997979083-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3725-scaled.jpg,,FALSE, +N1,60873,sortie-0594a7b6-b1e5-4624-8e23-fd5d7bcdee25,https://biolit.fr/sorties/sortie-0594a7b6-b1e5-4624-8e23-fd5d7bcdee25/,Phil,,10/20/2016 0:00,16.0000000,16.0:15,48.120275000000,-4.283606000000,,Plonevez Porzay - Finistère,52489,observation-0594a7b6-b1e5-4624-8e23-fd5d7bcdee25,https://biolit.fr/observations/observation-0594a7b6-b1e5-4624-8e23-fd5d7bcdee25/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040601.JPG,,FALSE, +N1,60873,sortie-0594a7b6-b1e5-4624-8e23-fd5d7bcdee25,https://biolit.fr/sorties/sortie-0594a7b6-b1e5-4624-8e23-fd5d7bcdee25/,Phil,,10/20/2016 0:00,16.0000000,16.0:15,48.120275000000,-4.283606000000,,Plonevez Porzay - Finistère,52491,observation-0594a7b6-b1e5-4624-8e23-fd5d7bcdee25-2,https://biolit.fr/observations/observation-0594a7b6-b1e5-4624-8e23-fd5d7bcdee25-2/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/P1040607.JPG,,TRUE, +N1,60873,sortie-0594a7b6-b1e5-4624-8e23-fd5d7bcdee25,https://biolit.fr/sorties/sortie-0594a7b6-b1e5-4624-8e23-fd5d7bcdee25/,Phil,,10/20/2016 0:00,16.0000000,16.0:15,48.120275000000,-4.283606000000,,Plonevez Porzay - Finistère,52493,observation-0594a7b6-b1e5-4624-8e23-fd5d7bcdee25-3,https://biolit.fr/observations/observation-0594a7b6-b1e5-4624-8e23-fd5d7bcdee25-3/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1040611.JPG,,TRUE, +N1,60873,sortie-0594a7b6-b1e5-4624-8e23-fd5d7bcdee25,https://biolit.fr/sorties/sortie-0594a7b6-b1e5-4624-8e23-fd5d7bcdee25/,Phil,,10/20/2016 0:00,16.0000000,16.0:15,48.120275000000,-4.283606000000,,Plonevez Porzay - Finistère,52495,observation-0594a7b6-b1e5-4624-8e23-fd5d7bcdee25-4,https://biolit.fr/observations/observation-0594a7b6-b1e5-4624-8e23-fd5d7bcdee25-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1040614.JPG,,TRUE, +N1,60874,sortie-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d,https://biolit.fr/sorties/sortie-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d/,azelie,,10/30/2016 0:00,13.0000000,14.0000000,49.339831000000,0.027363000000,,Blonville-sur-mer,52497,observation-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d,https://biolit.fr/observations/observation-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3766.JPG,,TRUE, +N1,60874,sortie-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d,https://biolit.fr/sorties/sortie-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d/,azelie,,10/30/2016 0:00,13.0000000,14.0000000,49.339831000000,0.027363000000,,Blonville-sur-mer,52499,observation-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d-2,https://biolit.fr/observations/observation-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d-2/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3767.JPG,,TRUE, +N1,60874,sortie-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d,https://biolit.fr/sorties/sortie-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d/,azelie,,10/30/2016 0:00,13.0000000,14.0000000,49.339831000000,0.027363000000,,Blonville-sur-mer,52501,observation-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d-3,https://biolit.fr/observations/observation-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3770.JPG,,FALSE, +N1,60874,sortie-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d,https://biolit.fr/sorties/sortie-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d/,azelie,,10/30/2016 0:00,13.0000000,14.0000000,49.339831000000,0.027363000000,,Blonville-sur-mer,52503,observation-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d-4,https://biolit.fr/observations/observation-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3771.JPG,,FALSE, +N1,60874,sortie-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d,https://biolit.fr/sorties/sortie-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d/,azelie,,10/30/2016 0:00,13.0000000,14.0000000,49.339831000000,0.027363000000,,Blonville-sur-mer,52505,observation-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d-5,https://biolit.fr/observations/observation-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d-5/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3774.JPG,,TRUE, +N1,60874,sortie-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d,https://biolit.fr/sorties/sortie-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d/,azelie,,10/30/2016 0:00,13.0000000,14.0000000,49.339831000000,0.027363000000,,Blonville-sur-mer,52507,observation-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d-6,https://biolit.fr/observations/observation-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3775-rotated.jpg,,FALSE, +N1,60874,sortie-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d,https://biolit.fr/sorties/sortie-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d/,azelie,,10/30/2016 0:00,13.0000000,14.0000000,49.339831000000,0.027363000000,,Blonville-sur-mer,52509,observation-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d-7,https://biolit.fr/observations/observation-a2ff952d-76c4-4d8f-aa15-65aa87e83a1d-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3776-rotated.jpg,,FALSE, +N1,60875,sortie-394ff457-653b-4aba-b6dd-c696626b2a8e,https://biolit.fr/sorties/sortie-394ff457-653b-4aba-b6dd-c696626b2a8e/,azelie,,10/30/2016 0:00,14.0:25,14.0000000,49.339454000000,0.025947000000,,Blonville-sur-mer,52511,observation-394ff457-653b-4aba-b6dd-c696626b2a8e,https://biolit.fr/observations/observation-394ff457-653b-4aba-b6dd-c696626b2a8e/,Symsagittifera roscoffensis,Ver plat de Roscoff,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3783.JPG,,TRUE, +N1,60875,sortie-394ff457-653b-4aba-b6dd-c696626b2a8e,https://biolit.fr/sorties/sortie-394ff457-653b-4aba-b6dd-c696626b2a8e/,azelie,,10/30/2016 0:00,14.0:25,14.0000000,49.339454000000,0.025947000000,,Blonville-sur-mer,52513,observation-394ff457-653b-4aba-b6dd-c696626b2a8e-2,https://biolit.fr/observations/observation-394ff457-653b-4aba-b6dd-c696626b2a8e-2/,Symsagittifera roscoffensis,Ver plat de Roscoff,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3785-rotated.jpg,,TRUE, +N1,60875,sortie-394ff457-653b-4aba-b6dd-c696626b2a8e,https://biolit.fr/sorties/sortie-394ff457-653b-4aba-b6dd-c696626b2a8e/,azelie,,10/30/2016 0:00,14.0:25,14.0000000,49.339454000000,0.025947000000,,Blonville-sur-mer,52515,observation-394ff457-653b-4aba-b6dd-c696626b2a8e-3,https://biolit.fr/observations/observation-394ff457-653b-4aba-b6dd-c696626b2a8e-3/,Symsagittifera roscoffensis,Ver plat de Roscoff,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3786-rotated.jpg,,TRUE, +N1,60876,sortie-76fce443-fa46-413b-b80a-fd4d00f1a4f5,https://biolit.fr/sorties/sortie-76fce443-fa46-413b-b80a-fd4d00f1a4f5/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.802300000000,-4.381412000000,,Penmarc'h - Finistère,52517,observation-76fce443-fa46-413b-b80a-fd4d00f1a4f5,https://biolit.fr/observations/observation-76fce443-fa46-413b-b80a-fd4d00f1a4f5/,Lepadogaster purpurea,Porte-écuelle de Cornouailles,,https://biolit.fr/wp-content/uploads/2023/07/P1030959.JPG,,TRUE, +N1,60876,sortie-76fce443-fa46-413b-b80a-fd4d00f1a4f5,https://biolit.fr/sorties/sortie-76fce443-fa46-413b-b80a-fd4d00f1a4f5/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.802300000000,-4.381412000000,,Penmarc'h - Finistère,52519,observation-76fce443-fa46-413b-b80a-fd4d00f1a4f5-2,https://biolit.fr/observations/observation-76fce443-fa46-413b-b80a-fd4d00f1a4f5-2/,Lepadogaster purpurea,Porte-écuelle de Cornouailles,,https://biolit.fr/wp-content/uploads/2023/07/P1030960.JPG,,TRUE, +N1,60876,sortie-76fce443-fa46-413b-b80a-fd4d00f1a4f5,https://biolit.fr/sorties/sortie-76fce443-fa46-413b-b80a-fd4d00f1a4f5/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.802300000000,-4.381412000000,,Penmarc'h - Finistère,52521,observation-76fce443-fa46-413b-b80a-fd4d00f1a4f5-3,https://biolit.fr/observations/observation-76fce443-fa46-413b-b80a-fd4d00f1a4f5-3/,Lepadogaster purpurea,Porte-écuelle de Cornouailles,,https://biolit.fr/wp-content/uploads/2023/07/P1030963.JPG,,TRUE, +N1,60876,sortie-76fce443-fa46-413b-b80a-fd4d00f1a4f5,https://biolit.fr/sorties/sortie-76fce443-fa46-413b-b80a-fd4d00f1a4f5/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.802300000000,-4.381412000000,,Penmarc'h - Finistère,52523,observation-76fce443-fa46-413b-b80a-fd4d00f1a4f5-4,https://biolit.fr/observations/observation-76fce443-fa46-413b-b80a-fd4d00f1a4f5-4/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/P1030972.JPG,,TRUE, +N1,60876,sortie-76fce443-fa46-413b-b80a-fd4d00f1a4f5,https://biolit.fr/sorties/sortie-76fce443-fa46-413b-b80a-fd4d00f1a4f5/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.802300000000,-4.381412000000,,Penmarc'h - Finistère,52525,observation-76fce443-fa46-413b-b80a-fd4d00f1a4f5-5,https://biolit.fr/observations/observation-76fce443-fa46-413b-b80a-fd4d00f1a4f5-5/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/P1030976.JPG,,TRUE, +N1,60877,sortie-d7a891a8-c6a8-4160-b6b3-3737f9adef9a,https://biolit.fr/sorties/sortie-d7a891a8-c6a8-4160-b6b3-3737f9adef9a/,Phil,,10/20/2016 0:00,15.0000000,16.0000000,48.120067000000,-4.283620000000,,Plonevez Porzay - Finistère,52527,observation-d7a891a8-c6a8-4160-b6b3-3737f9adef9a,https://biolit.fr/observations/observation-d7a891a8-c6a8-4160-b6b3-3737f9adef9a/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1040577.JPG,,TRUE, +N1,60877,sortie-d7a891a8-c6a8-4160-b6b3-3737f9adef9a,https://biolit.fr/sorties/sortie-d7a891a8-c6a8-4160-b6b3-3737f9adef9a/,Phil,,10/20/2016 0:00,15.0000000,16.0000000,48.120067000000,-4.283620000000,,Plonevez Porzay - Finistère,52529,observation-d7a891a8-c6a8-4160-b6b3-3737f9adef9a-2,https://biolit.fr/observations/observation-d7a891a8-c6a8-4160-b6b3-3737f9adef9a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040591.JPG,,FALSE, +N1,60877,sortie-d7a891a8-c6a8-4160-b6b3-3737f9adef9a,https://biolit.fr/sorties/sortie-d7a891a8-c6a8-4160-b6b3-3737f9adef9a/,Phil,,10/20/2016 0:00,15.0000000,16.0000000,48.120067000000,-4.283620000000,,Plonevez Porzay - Finistère,52531,observation-d7a891a8-c6a8-4160-b6b3-3737f9adef9a-3,https://biolit.fr/observations/observation-d7a891a8-c6a8-4160-b6b3-3737f9adef9a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040593.JPG,,FALSE, +N1,60877,sortie-d7a891a8-c6a8-4160-b6b3-3737f9adef9a,https://biolit.fr/sorties/sortie-d7a891a8-c6a8-4160-b6b3-3737f9adef9a/,Phil,,10/20/2016 0:00,15.0000000,16.0000000,48.120067000000,-4.283620000000,,Plonevez Porzay - Finistère,52533,observation-d7a891a8-c6a8-4160-b6b3-3737f9adef9a-4,https://biolit.fr/observations/observation-d7a891a8-c6a8-4160-b6b3-3737f9adef9a-4/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040600.JPG,,TRUE, +N1,60878,sortie-d6285d05-e2af-406b-b75c-643d665c155d,https://biolit.fr/sorties/sortie-d6285d05-e2af-406b-b75c-643d665c155d/,Phil,,10/29/2016 0:00,12.0000000,12.0:35,47.796770000000,-3.836977000000,,Trévignon - Finistère,52535,observation-d6285d05-e2af-406b-b75c-643d665c155d,https://biolit.fr/observations/observation-d6285d05-e2af-406b-b75c-643d665c155d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040629.JPG,,FALSE, +N1,60878,sortie-d6285d05-e2af-406b-b75c-643d665c155d,https://biolit.fr/sorties/sortie-d6285d05-e2af-406b-b75c-643d665c155d/,Phil,,10/29/2016 0:00,12.0000000,12.0:35,47.796770000000,-3.836977000000,,Trévignon - Finistère,52537,observation-d6285d05-e2af-406b-b75c-643d665c155d-2,https://biolit.fr/observations/observation-d6285d05-e2af-406b-b75c-643d665c155d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040627.JPG,,FALSE, +N1,60878,sortie-d6285d05-e2af-406b-b75c-643d665c155d,https://biolit.fr/sorties/sortie-d6285d05-e2af-406b-b75c-643d665c155d/,Phil,,10/29/2016 0:00,12.0000000,12.0:35,47.796770000000,-3.836977000000,,Trévignon - Finistère,52539,observation-d6285d05-e2af-406b-b75c-643d665c155d-3,https://biolit.fr/observations/observation-d6285d05-e2af-406b-b75c-643d665c155d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040624.JPG,,FALSE, +N1,60878,sortie-d6285d05-e2af-406b-b75c-643d665c155d,https://biolit.fr/sorties/sortie-d6285d05-e2af-406b-b75c-643d665c155d/,Phil,,10/29/2016 0:00,12.0000000,12.0:35,47.796770000000,-3.836977000000,,Trévignon - Finistère,52541,observation-d6285d05-e2af-406b-b75c-643d665c155d-4,https://biolit.fr/observations/observation-d6285d05-e2af-406b-b75c-643d665c155d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040625.JPG,,FALSE, +N1,60879,sortie-fdcd0fc6-9b37-47fe-87e0-f222c11958c2,https://biolit.fr/sorties/sortie-fdcd0fc6-9b37-47fe-87e0-f222c11958c2/,Phil,,10/28/2016 0:00,16.0000000,16.0000000,47.799512000000,-4.375614000000,,Penmarc'h - Finistère,52543,observation-fdcd0fc6-9b37-47fe-87e0-f222c11958c2,https://biolit.fr/observations/observation-fdcd0fc6-9b37-47fe-87e0-f222c11958c2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161028_162613.jpg,,FALSE, +N1,60879,sortie-fdcd0fc6-9b37-47fe-87e0-f222c11958c2,https://biolit.fr/sorties/sortie-fdcd0fc6-9b37-47fe-87e0-f222c11958c2/,Phil,,10/28/2016 0:00,16.0000000,16.0000000,47.799512000000,-4.375614000000,,Penmarc'h - Finistère,52545,observation-fdcd0fc6-9b37-47fe-87e0-f222c11958c2-2,https://biolit.fr/observations/observation-fdcd0fc6-9b37-47fe-87e0-f222c11958c2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161028_162950.jpg,,FALSE, +N1,60879,sortie-fdcd0fc6-9b37-47fe-87e0-f222c11958c2,https://biolit.fr/sorties/sortie-fdcd0fc6-9b37-47fe-87e0-f222c11958c2/,Phil,,10/28/2016 0:00,16.0000000,16.0000000,47.799512000000,-4.375614000000,,Penmarc'h - Finistère,52547,observation-fdcd0fc6-9b37-47fe-87e0-f222c11958c2-3,https://biolit.fr/observations/observation-fdcd0fc6-9b37-47fe-87e0-f222c11958c2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161028_163145.jpg,,FALSE, +N1,60880,sortie-64b4e283-9959-452c-b11b-4198182191e7,https://biolit.fr/sorties/sortie-64b4e283-9959-452c-b11b-4198182191e7/,Chantal,,10/26/2016 0:00,14.0000000,16.0000000,43.238066000000,5.361676000000,,Plage bonne brise Marseille,52549,observation-64b4e283-9959-452c-b11b-4198182191e7,https://biolit.fr/observations/observation-64b4e283-9959-452c-b11b-4198182191e7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161026_143648-rotated.jpg,,FALSE, +N1,60880,sortie-64b4e283-9959-452c-b11b-4198182191e7,https://biolit.fr/sorties/sortie-64b4e283-9959-452c-b11b-4198182191e7/,Chantal,,10/26/2016 0:00,14.0000000,16.0000000,43.238066000000,5.361676000000,,Plage bonne brise Marseille,52551,observation-64b4e283-9959-452c-b11b-4198182191e7-2,https://biolit.fr/observations/observation-64b4e283-9959-452c-b11b-4198182191e7-2/,Engraulis encrasicolus,Anchois commun,,https://biolit.fr/wp-content/uploads/2023/07/20161026_150309_0.jpg,,TRUE, +N1,60880,sortie-64b4e283-9959-452c-b11b-4198182191e7,https://biolit.fr/sorties/sortie-64b4e283-9959-452c-b11b-4198182191e7/,Chantal,,10/26/2016 0:00,14.0000000,16.0000000,43.238066000000,5.361676000000,,Plage bonne brise Marseille,52553,observation-64b4e283-9959-452c-b11b-4198182191e7-3,https://biolit.fr/observations/observation-64b4e283-9959-452c-b11b-4198182191e7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161026_145803_0-rotated.jpg,,FALSE, +N1,60880,sortie-64b4e283-9959-452c-b11b-4198182191e7,https://biolit.fr/sorties/sortie-64b4e283-9959-452c-b11b-4198182191e7/,Chantal,,10/26/2016 0:00,14.0000000,16.0000000,43.238066000000,5.361676000000,,Plage bonne brise Marseille,52555,observation-64b4e283-9959-452c-b11b-4198182191e7-4,https://biolit.fr/observations/observation-64b4e283-9959-452c-b11b-4198182191e7-4/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/20161026_145113_0.jpg,,TRUE, +N1,60880,sortie-64b4e283-9959-452c-b11b-4198182191e7,https://biolit.fr/sorties/sortie-64b4e283-9959-452c-b11b-4198182191e7/,Chantal,,10/26/2016 0:00,14.0000000,16.0000000,43.238066000000,5.361676000000,,Plage bonne brise Marseille,52557,observation-64b4e283-9959-452c-b11b-4198182191e7-5,https://biolit.fr/observations/observation-64b4e283-9959-452c-b11b-4198182191e7-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161026_145812_0.jpg,,FALSE, +N1,60881,sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c,https://biolit.fr/sorties/sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c/,bealafourcade,,10/28/2016 0:00,11.0:15,12.0000000,44.642092000000,-1.094444000000,,"port de Meyran ouest, 33470 Gujan-Mestr",52559,observation-df4bcf7b-5aa1-4a05-884a-0f455859641c,https://biolit.fr/observations/observation-df4bcf7b-5aa1-4a05-884a-0f455859641c/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ajonc-scaled.jpg,,FALSE, +N1,60881,sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c,https://biolit.fr/sorties/sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c/,bealafourcade,,10/28/2016 0:00,11.0:15,12.0000000,44.642092000000,-1.094444000000,,"port de Meyran ouest, 33470 Gujan-Mestr",52561,observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-2,https://biolit.fr/observations/observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Baccharis herbe de la pampa-scaled.jpg,,FALSE, +N1,60881,sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c,https://biolit.fr/sorties/sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c/,bealafourcade,,10/28/2016 0:00,11.0:15,12.0000000,44.642092000000,-1.094444000000,,"port de Meyran ouest, 33470 Gujan-Mestr",52563,observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-3,https://biolit.fr/observations/observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Bruyère des marais-scaled.jpg,,FALSE, +N1,60881,sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c,https://biolit.fr/sorties/sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c/,bealafourcade,,10/28/2016 0:00,11.0:15,12.0000000,44.642092000000,-1.094444000000,,"port de Meyran ouest, 33470 Gujan-Mestr",52565,observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-4,https://biolit.fr/observations/observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0942-scaled.jpg,,FALSE, +N1,60881,sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c,https://biolit.fr/sorties/sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c/,bealafourcade,,10/28/2016 0:00,11.0:15,12.0000000,44.642092000000,-1.094444000000,,"port de Meyran ouest, 33470 Gujan-Mestr",52567,observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-5,https://biolit.fr/observations/observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0943-scaled.jpg,,FALSE, +N1,60881,sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c,https://biolit.fr/sorties/sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c/,bealafourcade,,10/28/2016 0:00,11.0:15,12.0000000,44.642092000000,-1.094444000000,,"port de Meyran ouest, 33470 Gujan-Mestr",52569,observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-6,https://biolit.fr/observations/observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0944-scaled.jpg,,FALSE, +N1,60881,sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c,https://biolit.fr/sorties/sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c/,bealafourcade,,10/28/2016 0:00,11.0:15,12.0000000,44.642092000000,-1.094444000000,,"port de Meyran ouest, 33470 Gujan-Mestr",52571,observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-7,https://biolit.fr/observations/observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Massette-scaled.jpg,,FALSE, +N1,60881,sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c,https://biolit.fr/sorties/sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c/,bealafourcade,,10/28/2016 0:00,11.0:15,12.0000000,44.642092000000,-1.094444000000,,"port de Meyran ouest, 33470 Gujan-Mestr",52573,observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-8,https://biolit.fr/observations/observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/non identifiee (2)-scaled.jpg,,FALSE, +N1,60881,sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c,https://biolit.fr/sorties/sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c/,bealafourcade,,10/28/2016 0:00,11.0:15,12.0000000,44.642092000000,-1.094444000000,,"port de Meyran ouest, 33470 Gujan-Mestr",52575,observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-9,https://biolit.fr/observations/observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Salicorne-scaled.jpg,,FALSE, +N1,60881,sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c,https://biolit.fr/sorties/sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c/,bealafourcade,,10/28/2016 0:00,11.0:15,12.0000000,44.642092000000,-1.094444000000,,"port de Meyran ouest, 33470 Gujan-Mestr",52577,observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-10,https://biolit.fr/observations/observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Tamaris (2)-scaled.jpg,,FALSE, +N1,60881,sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c,https://biolit.fr/sorties/sortie-df4bcf7b-5aa1-4a05-884a-0f455859641c/,bealafourcade,,10/28/2016 0:00,11.0:15,12.0000000,44.642092000000,-1.094444000000,,"port de Meyran ouest, 33470 Gujan-Mestr",52579,observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-11,https://biolit.fr/observations/observation-df4bcf7b-5aa1-4a05-884a-0f455859641c-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Traces de ragondin-scaled.jpg,,FALSE, +N1,60882,sortie-8288f14d-bd5b-4e11-83ee-0c7d9cb0353d,https://biolit.fr/sorties/sortie-8288f14d-bd5b-4e11-83ee-0c7d9cb0353d/,Phil,,10/17/2016 0:00,11.0:35,11.0000000,47.789013000000,-4.277252000000,,Léchiagat - Finistère,52581,observation-8288f14d-bd5b-4e11-83ee-0c7d9cb0353d,https://biolit.fr/observations/observation-8288f14d-bd5b-4e11-83ee-0c7d9cb0353d/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161017_113751.jpg,,FALSE, +N1,60882,sortie-8288f14d-bd5b-4e11-83ee-0c7d9cb0353d,https://biolit.fr/sorties/sortie-8288f14d-bd5b-4e11-83ee-0c7d9cb0353d/,Phil,,10/17/2016 0:00,11.0:35,11.0000000,47.789013000000,-4.277252000000,,Léchiagat - Finistère,52583,observation-8288f14d-bd5b-4e11-83ee-0c7d9cb0353d-2,https://biolit.fr/observations/observation-8288f14d-bd5b-4e11-83ee-0c7d9cb0353d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161017_113914.jpg,,FALSE, +N1,60883,sortie-8f225a6d-e09c-4536-9775-857ceeb088d9,https://biolit.fr/sorties/sortie-8f225a6d-e09c-4536-9775-857ceeb088d9/,Phil,,10/20/2016 0:00,15.0000000,15.0:35,48.120124000000,-4.283516000000,,Plonevez Porzay - Finistère,52585,observation-8f225a6d-e09c-4536-9775-857ceeb088d9,https://biolit.fr/observations/observation-8f225a6d-e09c-4536-9775-857ceeb088d9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040564.JPG,,FALSE, +N1,60883,sortie-8f225a6d-e09c-4536-9775-857ceeb088d9,https://biolit.fr/sorties/sortie-8f225a6d-e09c-4536-9775-857ceeb088d9/,Phil,,10/20/2016 0:00,15.0000000,15.0:35,48.120124000000,-4.283516000000,,Plonevez Porzay - Finistère,52587,observation-8f225a6d-e09c-4536-9775-857ceeb088d9-2,https://biolit.fr/observations/observation-8f225a6d-e09c-4536-9775-857ceeb088d9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040561.JPG,,FALSE, +N1,60883,sortie-8f225a6d-e09c-4536-9775-857ceeb088d9,https://biolit.fr/sorties/sortie-8f225a6d-e09c-4536-9775-857ceeb088d9/,Phil,,10/20/2016 0:00,15.0000000,15.0:35,48.120124000000,-4.283516000000,,Plonevez Porzay - Finistère,52589,observation-8f225a6d-e09c-4536-9775-857ceeb088d9-3,https://biolit.fr/observations/observation-8f225a6d-e09c-4536-9775-857ceeb088d9-3/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1040559.JPG,,TRUE, +N1,60883,sortie-8f225a6d-e09c-4536-9775-857ceeb088d9,https://biolit.fr/sorties/sortie-8f225a6d-e09c-4536-9775-857ceeb088d9/,Phil,,10/20/2016 0:00,15.0000000,15.0:35,48.120124000000,-4.283516000000,,Plonevez Porzay - Finistère,52591,observation-8f225a6d-e09c-4536-9775-857ceeb088d9-4,https://biolit.fr/observations/observation-8f225a6d-e09c-4536-9775-857ceeb088d9-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040545.JPG,,FALSE, +N1,60883,sortie-8f225a6d-e09c-4536-9775-857ceeb088d9,https://biolit.fr/sorties/sortie-8f225a6d-e09c-4536-9775-857ceeb088d9/,Phil,,10/20/2016 0:00,15.0000000,15.0:35,48.120124000000,-4.283516000000,,Plonevez Porzay - Finistère,52593,observation-8f225a6d-e09c-4536-9775-857ceeb088d9-5,https://biolit.fr/observations/observation-8f225a6d-e09c-4536-9775-857ceeb088d9-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040547.JPG,,FALSE, +N1,60883,sortie-8f225a6d-e09c-4536-9775-857ceeb088d9,https://biolit.fr/sorties/sortie-8f225a6d-e09c-4536-9775-857ceeb088d9/,Phil,,10/20/2016 0:00,15.0000000,15.0:35,48.120124000000,-4.283516000000,,Plonevez Porzay - Finistère,52595,observation-8f225a6d-e09c-4536-9775-857ceeb088d9-6,https://biolit.fr/observations/observation-8f225a6d-e09c-4536-9775-857ceeb088d9-6/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040543.JPG,,TRUE, +N1,60883,sortie-8f225a6d-e09c-4536-9775-857ceeb088d9,https://biolit.fr/sorties/sortie-8f225a6d-e09c-4536-9775-857ceeb088d9/,Phil,,10/20/2016 0:00,15.0000000,15.0:35,48.120124000000,-4.283516000000,,Plonevez Porzay - Finistère,52597,observation-8f225a6d-e09c-4536-9775-857ceeb088d9-7,https://biolit.fr/observations/observation-8f225a6d-e09c-4536-9775-857ceeb088d9-7/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040554.JPG,,TRUE, +N1,60883,sortie-8f225a6d-e09c-4536-9775-857ceeb088d9,https://biolit.fr/sorties/sortie-8f225a6d-e09c-4536-9775-857ceeb088d9/,Phil,,10/20/2016 0:00,15.0000000,15.0:35,48.120124000000,-4.283516000000,,Plonevez Porzay - Finistère,52599,observation-8f225a6d-e09c-4536-9775-857ceeb088d9-8,https://biolit.fr/observations/observation-8f225a6d-e09c-4536-9775-857ceeb088d9-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040552.JPG,,FALSE, +N1,60884,sortie-5cb4baa4-4f94-4748-ae29-dc724a2e80f2,https://biolit.fr/sorties/sortie-5cb4baa4-4f94-4748-ae29-dc724a2e80f2/,Phil,,10/20/2016 0:00,16.0000000,16.0:25,48.120171000000,-4.283114000000,,Plonevez Porzay - Finistère,52601,observation-5cb4baa4-4f94-4748-ae29-dc724a2e80f2,https://biolit.fr/observations/observation-5cb4baa4-4f94-4748-ae29-dc724a2e80f2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040620.JPG,,FALSE, +N1,60884,sortie-5cb4baa4-4f94-4748-ae29-dc724a2e80f2,https://biolit.fr/sorties/sortie-5cb4baa4-4f94-4748-ae29-dc724a2e80f2/,Phil,,10/20/2016 0:00,16.0000000,16.0:25,48.120171000000,-4.283114000000,,Plonevez Porzay - Finistère,52603,observation-5cb4baa4-4f94-4748-ae29-dc724a2e80f2-2,https://biolit.fr/observations/observation-5cb4baa4-4f94-4748-ae29-dc724a2e80f2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040618.JPG,,FALSE, +N1,60885,sortie-fe0347ce-b2f5-4a59-8a78-8c094dff3499,https://biolit.fr/sorties/sortie-fe0347ce-b2f5-4a59-8a78-8c094dff3499/,Phil,,9/24/2016 0:00,17.0000000,18.0000000,47.793211000000,-4.223608000000,,Lesconil -Finistère,52605,observation-fe0347ce-b2f5-4a59-8a78-8c094dff3499,https://biolit.fr/observations/observation-fe0347ce-b2f5-4a59-8a78-8c094dff3499/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040169.JPG,,FALSE, +N1,60885,sortie-fe0347ce-b2f5-4a59-8a78-8c094dff3499,https://biolit.fr/sorties/sortie-fe0347ce-b2f5-4a59-8a78-8c094dff3499/,Phil,,9/24/2016 0:00,17.0000000,18.0000000,47.793211000000,-4.223608000000,,Lesconil -Finistère,52607,observation-fe0347ce-b2f5-4a59-8a78-8c094dff3499-2,https://biolit.fr/observations/observation-fe0347ce-b2f5-4a59-8a78-8c094dff3499-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040167.JPG,,FALSE, +N1,60885,sortie-fe0347ce-b2f5-4a59-8a78-8c094dff3499,https://biolit.fr/sorties/sortie-fe0347ce-b2f5-4a59-8a78-8c094dff3499/,Phil,,9/24/2016 0:00,17.0000000,18.0000000,47.793211000000,-4.223608000000,,Lesconil -Finistère,52609,observation-fe0347ce-b2f5-4a59-8a78-8c094dff3499-3,https://biolit.fr/observations/observation-fe0347ce-b2f5-4a59-8a78-8c094dff3499-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040168.JPG,,FALSE, +N1,60885,sortie-fe0347ce-b2f5-4a59-8a78-8c094dff3499,https://biolit.fr/sorties/sortie-fe0347ce-b2f5-4a59-8a78-8c094dff3499/,Phil,,9/24/2016 0:00,17.0000000,18.0000000,47.793211000000,-4.223608000000,,Lesconil -Finistère,52611,observation-fe0347ce-b2f5-4a59-8a78-8c094dff3499-4,https://biolit.fr/observations/observation-fe0347ce-b2f5-4a59-8a78-8c094dff3499-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040165.JPG,,FALSE, +N1,60885,sortie-fe0347ce-b2f5-4a59-8a78-8c094dff3499,https://biolit.fr/sorties/sortie-fe0347ce-b2f5-4a59-8a78-8c094dff3499/,Phil,,9/24/2016 0:00,17.0000000,18.0000000,47.793211000000,-4.223608000000,,Lesconil -Finistère,52613,observation-fe0347ce-b2f5-4a59-8a78-8c094dff3499-5,https://biolit.fr/observations/observation-fe0347ce-b2f5-4a59-8a78-8c094dff3499-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040164.JPG,,FALSE, +N1,60885,sortie-fe0347ce-b2f5-4a59-8a78-8c094dff3499,https://biolit.fr/sorties/sortie-fe0347ce-b2f5-4a59-8a78-8c094dff3499/,Phil,,9/24/2016 0:00,17.0000000,18.0000000,47.793211000000,-4.223608000000,,Lesconil -Finistère,52615,observation-fe0347ce-b2f5-4a59-8a78-8c094dff3499-6,https://biolit.fr/observations/observation-fe0347ce-b2f5-4a59-8a78-8c094dff3499-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040171.JPG,,FALSE, +N1,60886,sortie-c8926c4f-512e-41ee-a8e7-2cad71ad7afa,https://biolit.fr/sorties/sortie-c8926c4f-512e-41ee-a8e7-2cad71ad7afa/,Céline,,10/26/2016 0:00,14.0:15,15.0000000,43.236002000000,5.359959000000,,Plage de la bonne brise,52617,observation-c8926c4f-512e-41ee-a8e7-2cad71ad7afa,https://biolit.fr/observations/observation-c8926c4f-512e-41ee-a8e7-2cad71ad7afa/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2072-scaled.jpg,,FALSE, +N1,60886,sortie-c8926c4f-512e-41ee-a8e7-2cad71ad7afa,https://biolit.fr/sorties/sortie-c8926c4f-512e-41ee-a8e7-2cad71ad7afa/,Céline,,10/26/2016 0:00,14.0:15,15.0000000,43.236002000000,5.359959000000,,Plage de la bonne brise,52619,observation-c8926c4f-512e-41ee-a8e7-2cad71ad7afa-2,https://biolit.fr/observations/observation-c8926c4f-512e-41ee-a8e7-2cad71ad7afa-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2076-scaled.jpg,,FALSE, +N1,60886,sortie-c8926c4f-512e-41ee-a8e7-2cad71ad7afa,https://biolit.fr/sorties/sortie-c8926c4f-512e-41ee-a8e7-2cad71ad7afa/,Céline,,10/26/2016 0:00,14.0:15,15.0000000,43.236002000000,5.359959000000,,Plage de la bonne brise,52621,observation-c8926c4f-512e-41ee-a8e7-2cad71ad7afa-3,https://biolit.fr/observations/observation-c8926c4f-512e-41ee-a8e7-2cad71ad7afa-3/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2077-scaled.jpg,,TRUE, +N1,60886,sortie-c8926c4f-512e-41ee-a8e7-2cad71ad7afa,https://biolit.fr/sorties/sortie-c8926c4f-512e-41ee-a8e7-2cad71ad7afa/,Céline,,10/26/2016 0:00,14.0:15,15.0000000,43.236002000000,5.359959000000,,Plage de la bonne brise,52623,observation-c8926c4f-512e-41ee-a8e7-2cad71ad7afa-4,https://biolit.fr/observations/observation-c8926c4f-512e-41ee-a8e7-2cad71ad7afa-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2074-scaled.jpg,,FALSE, +N1,60886,sortie-c8926c4f-512e-41ee-a8e7-2cad71ad7afa,https://biolit.fr/sorties/sortie-c8926c4f-512e-41ee-a8e7-2cad71ad7afa/,Céline,,10/26/2016 0:00,14.0:15,15.0000000,43.236002000000,5.359959000000,,Plage de la bonne brise,52625,observation-c8926c4f-512e-41ee-a8e7-2cad71ad7afa-5,https://biolit.fr/observations/observation-c8926c4f-512e-41ee-a8e7-2cad71ad7afa-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2148-scaled.jpg,,FALSE, +N1,60887,sortie-6a1db6a3-69f3-4607-a9f8-01e7f498e4a9,https://biolit.fr/sorties/sortie-6a1db6a3-69f3-4607-a9f8-01e7f498e4a9/,Marine,,10/26/2016 0:00,10.0000000,12.0000000,43.2145,5.2117,,Plage de la bonne brise,52627,observation-6a1db6a3-69f3-4607-a9f8-01e7f498e4a9,https://biolit.fr/observations/observation-6a1db6a3-69f3-4607-a9f8-01e7f498e4a9/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_1962-scaled.jpg,,TRUE, +N1,60889,sortie-c331014f-eb08-4727-ad9e-fcfab556e8fc,https://biolit.fr/sorties/sortie-c331014f-eb08-4727-ad9e-fcfab556e8fc/,Emmanuelle,,10/26/2016 0:00,5.0000000,10.0000000,43.1358,5.2117,,Plage de la bonne brise,52671,observation-c331014f-eb08-4727-ad9e-fcfab556e8fc,https://biolit.fr/observations/observation-c331014f-eb08-4727-ad9e-fcfab556e8fc/,,,,https://biolit.fr/wp-content/uploads/2023/07/14774834343821496982932-rotated.jpg,,FALSE, +N1,60890,sortie-975dbb4b-ac57-4b2c-ab67-e8c32f340e45,https://biolit.fr/sorties/sortie-975dbb4b-ac57-4b2c-ab67-e8c32f340e45/,Phil,,10/25/2016 0:00,15.0000000,16.000005,47.895290000000,-3.96618000000,,La Forêt-Fouesnant - Finistère,52673,observation-975dbb4b-ac57-4b2c-ab67-e8c32f340e45,https://biolit.fr/observations/observation-975dbb4b-ac57-4b2c-ab67-e8c32f340e45/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161025_160451.jpg,,FALSE, +N1,60890,sortie-975dbb4b-ac57-4b2c-ab67-e8c32f340e45,https://biolit.fr/sorties/sortie-975dbb4b-ac57-4b2c-ab67-e8c32f340e45/,Phil,,10/25/2016 0:00,15.0000000,16.000005,47.895290000000,-3.96618000000,,La Forêt-Fouesnant - Finistère,52675,observation-975dbb4b-ac57-4b2c-ab67-e8c32f340e45-2,https://biolit.fr/observations/observation-975dbb4b-ac57-4b2c-ab67-e8c32f340e45-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161025_160112.jpg,,FALSE, +N1,60890,sortie-975dbb4b-ac57-4b2c-ab67-e8c32f340e45,https://biolit.fr/sorties/sortie-975dbb4b-ac57-4b2c-ab67-e8c32f340e45/,Phil,,10/25/2016 0:00,15.0000000,16.000005,47.895290000000,-3.96618000000,,La Forêt-Fouesnant - Finistère,52677,observation-975dbb4b-ac57-4b2c-ab67-e8c32f340e45-3,https://biolit.fr/observations/observation-975dbb4b-ac57-4b2c-ab67-e8c32f340e45-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161025_160000.jpg,,FALSE, +N1,60890,sortie-975dbb4b-ac57-4b2c-ab67-e8c32f340e45,https://biolit.fr/sorties/sortie-975dbb4b-ac57-4b2c-ab67-e8c32f340e45/,Phil,,10/25/2016 0:00,15.0000000,16.000005,47.895290000000,-3.96618000000,,La Forêt-Fouesnant - Finistère,52679,observation-975dbb4b-ac57-4b2c-ab67-e8c32f340e45-4,https://biolit.fr/observations/observation-975dbb4b-ac57-4b2c-ab67-e8c32f340e45-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161025_155541.jpg,,FALSE, +N1,60891,sortie-597c71ed-ea5e-4e9f-b96e-e05d6d04aff4,https://biolit.fr/sorties/sortie-597c71ed-ea5e-4e9f-b96e-e05d6d04aff4/,Marine,,9/26/2016 0:00,10.0000000,10.0000000,43.1358,5.2171,,Jj,52681,observation-597c71ed-ea5e-4e9f-b96e-e05d6d04aff4,https://biolit.fr/observations/observation-597c71ed-ea5e-4e9f-b96e-e05d6d04aff4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1903_1-scaled.jpg,,FALSE, +N1,60892,sortie-7732c920-58b3-4051-a304-599391b134b5,https://biolit.fr/sorties/sortie-7732c920-58b3-4051-a304-599391b134b5/,Phil,,10/01/2016,12.0000000,12.0000000,47.86879600000,-3.911782000000,,Concarneau - Finistère,52683,observation-7732c920-58b3-4051-a304-599391b134b5,https://biolit.fr/observations/observation-7732c920-58b3-4051-a304-599391b134b5/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/P1040271.JPG,,TRUE, +N1,60892,sortie-7732c920-58b3-4051-a304-599391b134b5,https://biolit.fr/sorties/sortie-7732c920-58b3-4051-a304-599391b134b5/,Phil,,10/01/2016,12.0000000,12.0000000,47.86879600000,-3.911782000000,,Concarneau - Finistère,52685,observation-7732c920-58b3-4051-a304-599391b134b5-2,https://biolit.fr/observations/observation-7732c920-58b3-4051-a304-599391b134b5-2/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/P1040266.JPG,,TRUE, +N1,60892,sortie-7732c920-58b3-4051-a304-599391b134b5,https://biolit.fr/sorties/sortie-7732c920-58b3-4051-a304-599391b134b5/,Phil,,10/01/2016,12.0000000,12.0000000,47.86879600000,-3.911782000000,,Concarneau - Finistère,52687,observation-7732c920-58b3-4051-a304-599391b134b5-3,https://biolit.fr/observations/observation-7732c920-58b3-4051-a304-599391b134b5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040277.JPG,,FALSE, +N1,60893,sortie-809351de-0d84-4581-bdde-52ff6f4be286,https://biolit.fr/sorties/sortie-809351de-0d84-4581-bdde-52ff6f4be286/,Phil,,10/25/2016 0:00,15.0000000,15.0:55,47.893926000000,-3.970090000000,,La Forêt-Fouesnant - Finistère,52689,observation-809351de-0d84-4581-bdde-52ff6f4be286,https://biolit.fr/observations/observation-809351de-0d84-4581-bdde-52ff6f4be286/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/20161025_155201.jpg,,TRUE, +N1,60893,sortie-809351de-0d84-4581-bdde-52ff6f4be286,https://biolit.fr/sorties/sortie-809351de-0d84-4581-bdde-52ff6f4be286/,Phil,,10/25/2016 0:00,15.0000000,15.0:55,47.893926000000,-3.970090000000,,La Forêt-Fouesnant - Finistère,52691,observation-809351de-0d84-4581-bdde-52ff6f4be286-2,https://biolit.fr/observations/observation-809351de-0d84-4581-bdde-52ff6f4be286-2/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/20161025_155327.jpg,,TRUE, +N1,60893,sortie-809351de-0d84-4581-bdde-52ff6f4be286,https://biolit.fr/sorties/sortie-809351de-0d84-4581-bdde-52ff6f4be286/,Phil,,10/25/2016 0:00,15.0000000,15.0:55,47.893926000000,-3.970090000000,,La Forêt-Fouesnant - Finistère,52693,observation-809351de-0d84-4581-bdde-52ff6f4be286-3,https://biolit.fr/observations/observation-809351de-0d84-4581-bdde-52ff6f4be286-3/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/20161025_155234.jpg,,TRUE, +N1,60894,sortie-95de4631-27fa-476a-a927-cb63bcc483ea,https://biolit.fr/sorties/sortie-95de4631-27fa-476a-a927-cb63bcc483ea/,Ville de Marseille,,10/24/2016 0:00,14.0000000,16.0000000,43.266318000000,5.371160000000,,Base nautique du Roucas Blanc,52695,observation-95de4631-27fa-476a-a927-cb63bcc483ea,https://biolit.fr/observations/observation-95de4631-27fa-476a-a927-cb63bcc483ea/,Styela plicata,Ascidie plissée,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1110290.JPG,,TRUE, +N1,60894,sortie-95de4631-27fa-476a-a927-cb63bcc483ea,https://biolit.fr/sorties/sortie-95de4631-27fa-476a-a927-cb63bcc483ea/,Ville de Marseille,,10/24/2016 0:00,14.0000000,16.0000000,43.266318000000,5.371160000000,,Base nautique du Roucas Blanc,52697,observation-95de4631-27fa-476a-a927-cb63bcc483ea-2,https://biolit.fr/observations/observation-95de4631-27fa-476a-a927-cb63bcc483ea-2/,Sabella spallanzanii,Spirographe,,https://biolit.fr/wp-content/uploads/2023/07/P1110305.JPG,,TRUE, +N1,60894,sortie-95de4631-27fa-476a-a927-cb63bcc483ea,https://biolit.fr/sorties/sortie-95de4631-27fa-476a-a927-cb63bcc483ea/,Ville de Marseille,,10/24/2016 0:00,14.0000000,16.0000000,43.266318000000,5.371160000000,,Base nautique du Roucas Blanc,52699,observation-95de4631-27fa-476a-a927-cb63bcc483ea-3,https://biolit.fr/observations/observation-95de4631-27fa-476a-a927-cb63bcc483ea-3/,Cratena peregrina,Hervia,,https://biolit.fr/wp-content/uploads/2023/07/P1110293.JPG,,TRUE, +N1,60894,sortie-95de4631-27fa-476a-a927-cb63bcc483ea,https://biolit.fr/sorties/sortie-95de4631-27fa-476a-a927-cb63bcc483ea/,Ville de Marseille,,10/24/2016 0:00,14.0000000,16.0000000,43.266318000000,5.371160000000,,Base nautique du Roucas Blanc,52701,observation-95de4631-27fa-476a-a927-cb63bcc483ea-4,https://biolit.fr/observations/observation-95de4631-27fa-476a-a927-cb63bcc483ea-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110272.JPG,,FALSE, +N1,60894,sortie-95de4631-27fa-476a-a927-cb63bcc483ea,https://biolit.fr/sorties/sortie-95de4631-27fa-476a-a927-cb63bcc483ea/,Ville de Marseille,,10/24/2016 0:00,14.0000000,16.0000000,43.266318000000,5.371160000000,,Base nautique du Roucas Blanc,52703,observation-95de4631-27fa-476a-a927-cb63bcc483ea-5,https://biolit.fr/observations/observation-95de4631-27fa-476a-a927-cb63bcc483ea-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110298.JPG,,FALSE, +N1,60894,sortie-95de4631-27fa-476a-a927-cb63bcc483ea,https://biolit.fr/sorties/sortie-95de4631-27fa-476a-a927-cb63bcc483ea/,Ville de Marseille,,10/24/2016 0:00,14.0000000,16.0000000,43.266318000000,5.371160000000,,Base nautique du Roucas Blanc,52705,observation-95de4631-27fa-476a-a927-cb63bcc483ea-6,https://biolit.fr/observations/observation-95de4631-27fa-476a-a927-cb63bcc483ea-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110297.JPG,,FALSE, +N1,60894,sortie-95de4631-27fa-476a-a927-cb63bcc483ea,https://biolit.fr/sorties/sortie-95de4631-27fa-476a-a927-cb63bcc483ea/,Ville de Marseille,,10/24/2016 0:00,14.0000000,16.0000000,43.266318000000,5.371160000000,,Base nautique du Roucas Blanc,52707,observation-95de4631-27fa-476a-a927-cb63bcc483ea-7,https://biolit.fr/observations/observation-95de4631-27fa-476a-a927-cb63bcc483ea-7/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1110280.JPG,,TRUE, +N1,60894,sortie-95de4631-27fa-476a-a927-cb63bcc483ea,https://biolit.fr/sorties/sortie-95de4631-27fa-476a-a927-cb63bcc483ea/,Ville de Marseille,,10/24/2016 0:00,14.0000000,16.0000000,43.266318000000,5.371160000000,,Base nautique du Roucas Blanc,52711,observation-95de4631-27fa-476a-a927-cb63bcc483ea-9,https://biolit.fr/observations/observation-95de4631-27fa-476a-a927-cb63bcc483ea-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110287.JPG,,FALSE, +N1,60895,sortie-87cdcc09-d7c3-4a63-8107-faf4addedfc4,https://biolit.fr/sorties/sortie-87cdcc09-d7c3-4a63-8107-faf4addedfc4/,Phil,,10/17/2016 0:00,11.0000000,11.0000000,47.788598000000,-4.277642000000,,Léchiagat - Finistère,52713,observation-87cdcc09-d7c3-4a63-8107-faf4addedfc4,https://biolit.fr/observations/observation-87cdcc09-d7c3-4a63-8107-faf4addedfc4/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20161017_113832.jpg,,TRUE, +N1,60895,sortie-87cdcc09-d7c3-4a63-8107-faf4addedfc4,https://biolit.fr/sorties/sortie-87cdcc09-d7c3-4a63-8107-faf4addedfc4/,Phil,,10/17/2016 0:00,11.0000000,11.0000000,47.788598000000,-4.277642000000,,Léchiagat - Finistère,52715,observation-87cdcc09-d7c3-4a63-8107-faf4addedfc4-2,https://biolit.fr/observations/observation-87cdcc09-d7c3-4a63-8107-faf4addedfc4-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20161017_114919.jpg,,TRUE, +N1,60895,sortie-87cdcc09-d7c3-4a63-8107-faf4addedfc4,https://biolit.fr/sorties/sortie-87cdcc09-d7c3-4a63-8107-faf4addedfc4/,Phil,,10/17/2016 0:00,11.0000000,11.0000000,47.788598000000,-4.277642000000,,Léchiagat - Finistère,52717,observation-87cdcc09-d7c3-4a63-8107-faf4addedfc4-3,https://biolit.fr/observations/observation-87cdcc09-d7c3-4a63-8107-faf4addedfc4-3/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20161017_114412.jpg,,TRUE, +N1,60895,sortie-87cdcc09-d7c3-4a63-8107-faf4addedfc4,https://biolit.fr/sorties/sortie-87cdcc09-d7c3-4a63-8107-faf4addedfc4/,Phil,,10/17/2016 0:00,11.0000000,11.0000000,47.788598000000,-4.277642000000,,Léchiagat - Finistère,52719,observation-87cdcc09-d7c3-4a63-8107-faf4addedfc4-4,https://biolit.fr/observations/observation-87cdcc09-d7c3-4a63-8107-faf4addedfc4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040500_0.JPG,,FALSE, +N1,60896,sortie-e83c4d6a-9f3e-4381-97cf-1eafaccca0d3,https://biolit.fr/sorties/sortie-e83c4d6a-9f3e-4381-97cf-1eafaccca0d3/,Phil,,10/16/2016 0:00,12.0000000,12.0:45,47.795085000000,-4.361692000000,,Penmarc'h - Finistère,52721,observation-e83c4d6a-9f3e-4381-97cf-1eafaccca0d3,https://biolit.fr/observations/observation-e83c4d6a-9f3e-4381-97cf-1eafaccca0d3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040449.JPG,,FALSE, +N1,60896,sortie-e83c4d6a-9f3e-4381-97cf-1eafaccca0d3,https://biolit.fr/sorties/sortie-e83c4d6a-9f3e-4381-97cf-1eafaccca0d3/,Phil,,10/16/2016 0:00,12.0000000,12.0:45,47.795085000000,-4.361692000000,,Penmarc'h - Finistère,52723,observation-e83c4d6a-9f3e-4381-97cf-1eafaccca0d3-2,https://biolit.fr/observations/observation-e83c4d6a-9f3e-4381-97cf-1eafaccca0d3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040459.JPG,,FALSE, +N1,60896,sortie-e83c4d6a-9f3e-4381-97cf-1eafaccca0d3,https://biolit.fr/sorties/sortie-e83c4d6a-9f3e-4381-97cf-1eafaccca0d3/,Phil,,10/16/2016 0:00,12.0000000,12.0:45,47.795085000000,-4.361692000000,,Penmarc'h - Finistère,52725,observation-e83c4d6a-9f3e-4381-97cf-1eafaccca0d3-3,https://biolit.fr/observations/observation-e83c4d6a-9f3e-4381-97cf-1eafaccca0d3-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040447.JPG,,FALSE, +N1,60896,sortie-e83c4d6a-9f3e-4381-97cf-1eafaccca0d3,https://biolit.fr/sorties/sortie-e83c4d6a-9f3e-4381-97cf-1eafaccca0d3/,Phil,,10/16/2016 0:00,12.0000000,12.0:45,47.795085000000,-4.361692000000,,Penmarc'h - Finistère,52727,observation-e83c4d6a-9f3e-4381-97cf-1eafaccca0d3-4,https://biolit.fr/observations/observation-e83c4d6a-9f3e-4381-97cf-1eafaccca0d3-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040453.JPG,,FALSE, +N1,60897,sortie-f9cf1472-4ab3-454e-8821-7fce96a26989,https://biolit.fr/sorties/sortie-f9cf1472-4ab3-454e-8821-7fce96a26989/,Phil,,10/22/2016 0:00,12.0:25,12.0000000,47.798734000000,-4.271359000000,,Treffiagat - Finistère,52729,observation-f9cf1472-4ab3-454e-8821-7fce96a26989,https://biolit.fr/observations/observation-f9cf1472-4ab3-454e-8821-7fce96a26989/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161022_122559.jpg,,FALSE, +N1,60897,sortie-f9cf1472-4ab3-454e-8821-7fce96a26989,https://biolit.fr/sorties/sortie-f9cf1472-4ab3-454e-8821-7fce96a26989/,Phil,,10/22/2016 0:00,12.0:25,12.0000000,47.798734000000,-4.271359000000,,Treffiagat - Finistère,52731,observation-f9cf1472-4ab3-454e-8821-7fce96a26989-2,https://biolit.fr/observations/observation-f9cf1472-4ab3-454e-8821-7fce96a26989-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161022_122815.jpg,,FALSE, +N1,60897,sortie-f9cf1472-4ab3-454e-8821-7fce96a26989,https://biolit.fr/sorties/sortie-f9cf1472-4ab3-454e-8821-7fce96a26989/,Phil,,10/22/2016 0:00,12.0:25,12.0000000,47.798734000000,-4.271359000000,,Treffiagat - Finistère,52733,observation-f9cf1472-4ab3-454e-8821-7fce96a26989-3,https://biolit.fr/observations/observation-f9cf1472-4ab3-454e-8821-7fce96a26989-3/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20161022_122915.jpg,,TRUE, +N1,60897,sortie-f9cf1472-4ab3-454e-8821-7fce96a26989,https://biolit.fr/sorties/sortie-f9cf1472-4ab3-454e-8821-7fce96a26989/,Phil,,10/22/2016 0:00,12.0:25,12.0000000,47.798734000000,-4.271359000000,,Treffiagat - Finistère,52735,observation-f9cf1472-4ab3-454e-8821-7fce96a26989-4,https://biolit.fr/observations/observation-f9cf1472-4ab3-454e-8821-7fce96a26989-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161022_122944.jpg,,FALSE, +N1,60898,sortie-a3d8a08a-92ab-4866-897e-7a83cfd078d4,https://biolit.fr/sorties/sortie-a3d8a08a-92ab-4866-897e-7a83cfd078d4/,Phil,,10/16/2016 0:00,12.0:45,12.0000000,47.791982000000,-4.359907000000,,Penmarc'h - Finistère,52737,observation-a3d8a08a-92ab-4866-897e-7a83cfd078d4,https://biolit.fr/observations/observation-a3d8a08a-92ab-4866-897e-7a83cfd078d4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040461.JPG,,FALSE, +N1,60898,sortie-a3d8a08a-92ab-4866-897e-7a83cfd078d4,https://biolit.fr/sorties/sortie-a3d8a08a-92ab-4866-897e-7a83cfd078d4/,Phil,,10/16/2016 0:00,12.0:45,12.0000000,47.791982000000,-4.359907000000,,Penmarc'h - Finistère,52739,observation-a3d8a08a-92ab-4866-897e-7a83cfd078d4-2,https://biolit.fr/observations/observation-a3d8a08a-92ab-4866-897e-7a83cfd078d4-2/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040462.JPG,,TRUE, +N1,60899,sortie-845f98cb-707b-4ccc-b8ba-9dff78783b28,https://biolit.fr/sorties/sortie-845f98cb-707b-4ccc-b8ba-9dff78783b28/,E.C.O.L.E de la mer,,10/19/2016 0:00,14.0000000,16.0000000,46.141273,-1.171316,,Plage des Minimes - La Rochelle,52741,observation-845f98cb-707b-4ccc-b8ba-9dff78783b28,https://biolit.fr/observations/observation-845f98cb-707b-4ccc-b8ba-9dff78783b28/,,,,https://biolit.fr/wp-content/uploads/2023/07/dscn8426-scaled.jpg,,FALSE, +N1,60899,sortie-845f98cb-707b-4ccc-b8ba-9dff78783b28,https://biolit.fr/sorties/sortie-845f98cb-707b-4ccc-b8ba-9dff78783b28/,E.C.O.L.E de la mer,,10/19/2016 0:00,14.0000000,16.0000000,46.141273,-1.171316,,Plage des Minimes - La Rochelle,52743,observation-845f98cb-707b-4ccc-b8ba-9dff78783b28-2,https://biolit.fr/observations/observation-845f98cb-707b-4ccc-b8ba-9dff78783b28-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/dscn8433.jpg,,FALSE, +N1,60899,sortie-845f98cb-707b-4ccc-b8ba-9dff78783b28,https://biolit.fr/sorties/sortie-845f98cb-707b-4ccc-b8ba-9dff78783b28/,E.C.O.L.E de la mer,,10/19/2016 0:00,14.0000000,16.0000000,46.141273,-1.171316,,Plage des Minimes - La Rochelle,52745,observation-845f98cb-707b-4ccc-b8ba-9dff78783b28-3,https://biolit.fr/observations/observation-845f98cb-707b-4ccc-b8ba-9dff78783b28-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/dscn8435-scaled.jpg,,FALSE, +N1,60899,sortie-845f98cb-707b-4ccc-b8ba-9dff78783b28,https://biolit.fr/sorties/sortie-845f98cb-707b-4ccc-b8ba-9dff78783b28/,E.C.O.L.E de la mer,,10/19/2016 0:00,14.0000000,16.0000000,46.141273,-1.171316,,Plage des Minimes - La Rochelle,52747,observation-845f98cb-707b-4ccc-b8ba-9dff78783b28-4,https://biolit.fr/observations/observation-845f98cb-707b-4ccc-b8ba-9dff78783b28-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/dscn8430-scaled.jpg,,FALSE, +N1,60899,sortie-845f98cb-707b-4ccc-b8ba-9dff78783b28,https://biolit.fr/sorties/sortie-845f98cb-707b-4ccc-b8ba-9dff78783b28/,E.C.O.L.E de la mer,,10/19/2016 0:00,14.0000000,16.0000000,46.141273,-1.171316,,Plage des Minimes - La Rochelle,52749,observation-845f98cb-707b-4ccc-b8ba-9dff78783b28-5,https://biolit.fr/observations/observation-845f98cb-707b-4ccc-b8ba-9dff78783b28-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/dscn8439-scaled.jpg,,FALSE, +N1,60899,sortie-845f98cb-707b-4ccc-b8ba-9dff78783b28,https://biolit.fr/sorties/sortie-845f98cb-707b-4ccc-b8ba-9dff78783b28/,E.C.O.L.E de la mer,,10/19/2016 0:00,14.0000000,16.0000000,46.141273,-1.171316,,Plage des Minimes - La Rochelle,52751,observation-845f98cb-707b-4ccc-b8ba-9dff78783b28-6,https://biolit.fr/observations/observation-845f98cb-707b-4ccc-b8ba-9dff78783b28-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/dscn8443-scaled.jpg,,FALSE, +N1,60899,sortie-845f98cb-707b-4ccc-b8ba-9dff78783b28,https://biolit.fr/sorties/sortie-845f98cb-707b-4ccc-b8ba-9dff78783b28/,E.C.O.L.E de la mer,,10/19/2016 0:00,14.0000000,16.0000000,46.141273,-1.171316,,Plage des Minimes - La Rochelle,52753,observation-845f98cb-707b-4ccc-b8ba-9dff78783b28-7,https://biolit.fr/observations/observation-845f98cb-707b-4ccc-b8ba-9dff78783b28-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/dscn8442-scaled.jpg,,FALSE, +N1,60900,sortie-626ede37-e837-4c50-8782-6d8595e82f31,https://biolit.fr/sorties/sortie-626ede37-e837-4c50-8782-6d8595e82f31/,Phil,,10/17/2016 0:00,11.0000000,11.0:55,47.789644000000,-4.277696000000,,Léchiagat - Finistère,52755,observation-626ede37-e837-4c50-8782-6d8595e82f31,https://biolit.fr/observations/observation-626ede37-e837-4c50-8782-6d8595e82f31/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161017_115312.jpg,,FALSE, +N1,60900,sortie-626ede37-e837-4c50-8782-6d8595e82f31,https://biolit.fr/sorties/sortie-626ede37-e837-4c50-8782-6d8595e82f31/,Phil,,10/17/2016 0:00,11.0000000,11.0:55,47.789644000000,-4.277696000000,,Léchiagat - Finistère,52757,observation-626ede37-e837-4c50-8782-6d8595e82f31-2,https://biolit.fr/observations/observation-626ede37-e837-4c50-8782-6d8595e82f31-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161017_115353.jpg,,FALSE, +N1,60900,sortie-626ede37-e837-4c50-8782-6d8595e82f31,https://biolit.fr/sorties/sortie-626ede37-e837-4c50-8782-6d8595e82f31/,Phil,,10/17/2016 0:00,11.0000000,11.0:55,47.789644000000,-4.277696000000,,Léchiagat - Finistère,52759,observation-626ede37-e837-4c50-8782-6d8595e82f31-3,https://biolit.fr/observations/observation-626ede37-e837-4c50-8782-6d8595e82f31-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161017_115400.jpg,,FALSE, +N1,60900,sortie-626ede37-e837-4c50-8782-6d8595e82f31,https://biolit.fr/sorties/sortie-626ede37-e837-4c50-8782-6d8595e82f31/,Phil,,10/17/2016 0:00,11.0000000,11.0:55,47.789644000000,-4.277696000000,,Léchiagat - Finistère,52761,observation-626ede37-e837-4c50-8782-6d8595e82f31-4,https://biolit.fr/observations/observation-626ede37-e837-4c50-8782-6d8595e82f31-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040497.JPG,,FALSE, +N1,60900,sortie-626ede37-e837-4c50-8782-6d8595e82f31,https://biolit.fr/sorties/sortie-626ede37-e837-4c50-8782-6d8595e82f31/,Phil,,10/17/2016 0:00,11.0000000,11.0:55,47.789644000000,-4.277696000000,,Léchiagat - Finistère,52763,observation-626ede37-e837-4c50-8782-6d8595e82f31-5,https://biolit.fr/observations/observation-626ede37-e837-4c50-8782-6d8595e82f31-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040499_0.JPG,,FALSE, +N1,60900,sortie-626ede37-e837-4c50-8782-6d8595e82f31,https://biolit.fr/sorties/sortie-626ede37-e837-4c50-8782-6d8595e82f31/,Phil,,10/17/2016 0:00,11.0000000,11.0:55,47.789644000000,-4.277696000000,,Léchiagat - Finistère,52765,observation-626ede37-e837-4c50-8782-6d8595e82f31-6,https://biolit.fr/observations/observation-626ede37-e837-4c50-8782-6d8595e82f31-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040501.JPG,,FALSE, +N1,60901,sortie-5b9fa435-e56d-45e7-a0db-2b4798565750,https://biolit.fr/sorties/sortie-5b9fa435-e56d-45e7-a0db-2b4798565750/,Phil,,10/16/2016 0:00,11.0:45,12.0000000,47.787626000000,-4.360881000000,,Penmarc'h - Finistère,52767,observation-5b9fa435-e56d-45e7-a0db-2b4798565750,https://biolit.fr/observations/observation-5b9fa435-e56d-45e7-a0db-2b4798565750/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040414.JPG,,FALSE, +N1,60901,sortie-5b9fa435-e56d-45e7-a0db-2b4798565750,https://biolit.fr/sorties/sortie-5b9fa435-e56d-45e7-a0db-2b4798565750/,Phil,,10/16/2016 0:00,11.0:45,12.0000000,47.787626000000,-4.360881000000,,Penmarc'h - Finistère,52769,observation-5b9fa435-e56d-45e7-a0db-2b4798565750-2,https://biolit.fr/observations/observation-5b9fa435-e56d-45e7-a0db-2b4798565750-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040420.JPG,,FALSE, +N1,60901,sortie-5b9fa435-e56d-45e7-a0db-2b4798565750,https://biolit.fr/sorties/sortie-5b9fa435-e56d-45e7-a0db-2b4798565750/,Phil,,10/16/2016 0:00,11.0:45,12.0000000,47.787626000000,-4.360881000000,,Penmarc'h - Finistère,52771,observation-5b9fa435-e56d-45e7-a0db-2b4798565750-3,https://biolit.fr/observations/observation-5b9fa435-e56d-45e7-a0db-2b4798565750-3/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1040441.JPG,,TRUE, +N1,60901,sortie-5b9fa435-e56d-45e7-a0db-2b4798565750,https://biolit.fr/sorties/sortie-5b9fa435-e56d-45e7-a0db-2b4798565750/,Phil,,10/16/2016 0:00,11.0:45,12.0000000,47.787626000000,-4.360881000000,,Penmarc'h - Finistère,52773,observation-5b9fa435-e56d-45e7-a0db-2b4798565750-4,https://biolit.fr/observations/observation-5b9fa435-e56d-45e7-a0db-2b4798565750-4/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/P1040409.JPG,,TRUE, +N1,60901,sortie-5b9fa435-e56d-45e7-a0db-2b4798565750,https://biolit.fr/sorties/sortie-5b9fa435-e56d-45e7-a0db-2b4798565750/,Phil,,10/16/2016 0:00,11.0:45,12.0000000,47.787626000000,-4.360881000000,,Penmarc'h - Finistère,52775,observation-5b9fa435-e56d-45e7-a0db-2b4798565750-5,https://biolit.fr/observations/observation-5b9fa435-e56d-45e7-a0db-2b4798565750-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040404.JPG,,FALSE, +N1,60901,sortie-5b9fa435-e56d-45e7-a0db-2b4798565750,https://biolit.fr/sorties/sortie-5b9fa435-e56d-45e7-a0db-2b4798565750/,Phil,,10/16/2016 0:00,11.0:45,12.0000000,47.787626000000,-4.360881000000,,Penmarc'h - Finistère,52777,observation-5b9fa435-e56d-45e7-a0db-2b4798565750-6,https://biolit.fr/observations/observation-5b9fa435-e56d-45e7-a0db-2b4798565750-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040402.JPG,,FALSE, +N1,60902,sortie-a0d8ff55-e84d-4edd-ad62-aa82aeeb693a,https://biolit.fr/sorties/sortie-a0d8ff55-e84d-4edd-ad62-aa82aeeb693a/,Phil,,10/20/2016 0:00,15.0:25,15.0:35,48.120351000000,-4.283766000000,,Plonevez Porzay - Finistère,52779,observation-a0d8ff55-e84d-4edd-ad62-aa82aeeb693a,https://biolit.fr/observations/observation-a0d8ff55-e84d-4edd-ad62-aa82aeeb693a/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1040538.JPG,,TRUE, +N1,60902,sortie-a0d8ff55-e84d-4edd-ad62-aa82aeeb693a,https://biolit.fr/sorties/sortie-a0d8ff55-e84d-4edd-ad62-aa82aeeb693a/,Phil,,10/20/2016 0:00,15.0:25,15.0:35,48.120351000000,-4.283766000000,,Plonevez Porzay - Finistère,52781,observation-a0d8ff55-e84d-4edd-ad62-aa82aeeb693a-2,https://biolit.fr/observations/observation-a0d8ff55-e84d-4edd-ad62-aa82aeeb693a-2/,Amphipholis squamata,Ophiure écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/P1040539.JPG,,TRUE, +N1,60902,sortie-a0d8ff55-e84d-4edd-ad62-aa82aeeb693a,https://biolit.fr/sorties/sortie-a0d8ff55-e84d-4edd-ad62-aa82aeeb693a/,Phil,,10/20/2016 0:00,15.0:25,15.0:35,48.120351000000,-4.283766000000,,Plonevez Porzay - Finistère,52783,observation-a0d8ff55-e84d-4edd-ad62-aa82aeeb693a-3,https://biolit.fr/observations/observation-a0d8ff55-e84d-4edd-ad62-aa82aeeb693a-3/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1040542.JPG,,TRUE, +N1,60902,sortie-a0d8ff55-e84d-4edd-ad62-aa82aeeb693a,https://biolit.fr/sorties/sortie-a0d8ff55-e84d-4edd-ad62-aa82aeeb693a/,Phil,,10/20/2016 0:00,15.0:25,15.0:35,48.120351000000,-4.283766000000,,Plonevez Porzay - Finistère,52785,observation-a0d8ff55-e84d-4edd-ad62-aa82aeeb693a-4,https://biolit.fr/observations/observation-a0d8ff55-e84d-4edd-ad62-aa82aeeb693a-4/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1040595.JPG,,TRUE, +N1,60903,sortie-b320a454-57c9-4ed2-9bec-f2e017c0cc5a,https://biolit.fr/sorties/sortie-b320a454-57c9-4ed2-9bec-f2e017c0cc5a/,Phil,,10/01/2016,12.0000000,12.0000000,47.869485000000,-3.912354000000,,Concarneau - Finistère,52787,observation-b320a454-57c9-4ed2-9bec-f2e017c0cc5a,https://biolit.fr/observations/observation-b320a454-57c9-4ed2-9bec-f2e017c0cc5a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040239.JPG,,FALSE, +N1,60903,sortie-b320a454-57c9-4ed2-9bec-f2e017c0cc5a,https://biolit.fr/sorties/sortie-b320a454-57c9-4ed2-9bec-f2e017c0cc5a/,Phil,,10/01/2016,12.0000000,12.0000000,47.869485000000,-3.912354000000,,Concarneau - Finistère,52789,observation-b320a454-57c9-4ed2-9bec-f2e017c0cc5a-2,https://biolit.fr/observations/observation-b320a454-57c9-4ed2-9bec-f2e017c0cc5a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040236.JPG,,FALSE, +N1,60903,sortie-b320a454-57c9-4ed2-9bec-f2e017c0cc5a,https://biolit.fr/sorties/sortie-b320a454-57c9-4ed2-9bec-f2e017c0cc5a/,Phil,,10/01/2016,12.0000000,12.0000000,47.869485000000,-3.912354000000,,Concarneau - Finistère,52791,observation-b320a454-57c9-4ed2-9bec-f2e017c0cc5a-3,https://biolit.fr/observations/observation-b320a454-57c9-4ed2-9bec-f2e017c0cc5a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040257-scaled.jpg,,FALSE, +N1,60903,sortie-b320a454-57c9-4ed2-9bec-f2e017c0cc5a,https://biolit.fr/sorties/sortie-b320a454-57c9-4ed2-9bec-f2e017c0cc5a/,Phil,,10/01/2016,12.0000000,12.0000000,47.869485000000,-3.912354000000,,Concarneau - Finistère,52793,observation-b320a454-57c9-4ed2-9bec-f2e017c0cc5a-4,https://biolit.fr/observations/observation-b320a454-57c9-4ed2-9bec-f2e017c0cc5a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040262.JPG,,FALSE, +N1,60903,sortie-b320a454-57c9-4ed2-9bec-f2e017c0cc5a,https://biolit.fr/sorties/sortie-b320a454-57c9-4ed2-9bec-f2e017c0cc5a/,Phil,,10/01/2016,12.0000000,12.0000000,47.869485000000,-3.912354000000,,Concarneau - Finistère,52795,observation-b320a454-57c9-4ed2-9bec-f2e017c0cc5a-5,https://biolit.fr/observations/observation-b320a454-57c9-4ed2-9bec-f2e017c0cc5a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040242.JPG,,FALSE, +N1,60904,sortie-e687277c-d943-465a-8004-103770c26c27,https://biolit.fr/sorties/sortie-e687277c-d943-465a-8004-103770c26c27/,Phil,,10/16/2016 0:00,11.0:35,11.0:55,47.788083000000,-4.36540900000,,Penmarc'h - Finistère,52797,observation-e687277c-d943-465a-8004-103770c26c27,https://biolit.fr/observations/observation-e687277c-d943-465a-8004-103770c26c27/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040396.JPG,,FALSE, +N1,60904,sortie-e687277c-d943-465a-8004-103770c26c27,https://biolit.fr/sorties/sortie-e687277c-d943-465a-8004-103770c26c27/,Phil,,10/16/2016 0:00,11.0:35,11.0:55,47.788083000000,-4.36540900000,,Penmarc'h - Finistère,52799,observation-e687277c-d943-465a-8004-103770c26c27-2,https://biolit.fr/observations/observation-e687277c-d943-465a-8004-103770c26c27-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040357.JPG,,FALSE, +N1,60904,sortie-e687277c-d943-465a-8004-103770c26c27,https://biolit.fr/sorties/sortie-e687277c-d943-465a-8004-103770c26c27/,Phil,,10/16/2016 0:00,11.0:35,11.0:55,47.788083000000,-4.36540900000,,Penmarc'h - Finistère,52801,observation-e687277c-d943-465a-8004-103770c26c27-3,https://biolit.fr/observations/observation-e687277c-d943-465a-8004-103770c26c27-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040388.JPG,,FALSE, +N1,60904,sortie-e687277c-d943-465a-8004-103770c26c27,https://biolit.fr/sorties/sortie-e687277c-d943-465a-8004-103770c26c27/,Phil,,10/16/2016 0:00,11.0:35,11.0:55,47.788083000000,-4.36540900000,,Penmarc'h - Finistère,52803,observation-e687277c-d943-465a-8004-103770c26c27-4,https://biolit.fr/observations/observation-e687277c-d943-465a-8004-103770c26c27-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040384.JPG,,FALSE, +N1,60904,sortie-e687277c-d943-465a-8004-103770c26c27,https://biolit.fr/sorties/sortie-e687277c-d943-465a-8004-103770c26c27/,Phil,,10/16/2016 0:00,11.0:35,11.0:55,47.788083000000,-4.36540900000,,Penmarc'h - Finistère,52805,observation-e687277c-d943-465a-8004-103770c26c27-5,https://biolit.fr/observations/observation-e687277c-d943-465a-8004-103770c26c27-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040400.JPG,,FALSE, +N1,60905,sortie-5b981d86-82a4-4bab-9f59-50e03acbf505,https://biolit.fr/sorties/sortie-5b981d86-82a4-4bab-9f59-50e03acbf505/,Phil,,10/17/2016 0:00,11.0000000,11.0000000,47.788704000000,-4.279604000000,,Treffiagat - Finistère,52807,observation-5b981d86-82a4-4bab-9f59-50e03acbf505,https://biolit.fr/observations/observation-5b981d86-82a4-4bab-9f59-50e03acbf505/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040488.JPG,,FALSE, +N1,60905,sortie-5b981d86-82a4-4bab-9f59-50e03acbf505,https://biolit.fr/sorties/sortie-5b981d86-82a4-4bab-9f59-50e03acbf505/,Phil,,10/17/2016 0:00,11.0000000,11.0000000,47.788704000000,-4.279604000000,,Treffiagat - Finistère,52809,observation-5b981d86-82a4-4bab-9f59-50e03acbf505-2,https://biolit.fr/observations/observation-5b981d86-82a4-4bab-9f59-50e03acbf505-2/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/P1040487.JPG,,TRUE, +N1,60905,sortie-5b981d86-82a4-4bab-9f59-50e03acbf505,https://biolit.fr/sorties/sortie-5b981d86-82a4-4bab-9f59-50e03acbf505/,Phil,,10/17/2016 0:00,11.0000000,11.0000000,47.788704000000,-4.279604000000,,Treffiagat - Finistère,52811,observation-5b981d86-82a4-4bab-9f59-50e03acbf505-3,https://biolit.fr/observations/observation-5b981d86-82a4-4bab-9f59-50e03acbf505-3/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/P1040495_0.JPG,,TRUE, +N1,60906,sortie-3d240bab-52f7-4665-950b-abb1bf5bad1d,https://biolit.fr/sorties/sortie-3d240bab-52f7-4665-950b-abb1bf5bad1d/,Phil,,10/16/2016 0:00,12.0:15,12.0:25,47.78785000000,-4.362134000000,,Penmarc'h - Finistère,52813,observation-3d240bab-52f7-4665-950b-abb1bf5bad1d,https://biolit.fr/observations/observation-3d240bab-52f7-4665-950b-abb1bf5bad1d/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/20161016_121759.jpg,,TRUE, +N1,60906,sortie-3d240bab-52f7-4665-950b-abb1bf5bad1d,https://biolit.fr/sorties/sortie-3d240bab-52f7-4665-950b-abb1bf5bad1d/,Phil,,10/16/2016 0:00,12.0:15,12.0:25,47.78785000000,-4.362134000000,,Penmarc'h - Finistère,52815,observation-3d240bab-52f7-4665-950b-abb1bf5bad1d-2,https://biolit.fr/observations/observation-3d240bab-52f7-4665-950b-abb1bf5bad1d-2/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/20161016_121846.jpg,,TRUE, +N1,60906,sortie-3d240bab-52f7-4665-950b-abb1bf5bad1d,https://biolit.fr/sorties/sortie-3d240bab-52f7-4665-950b-abb1bf5bad1d/,Phil,,10/16/2016 0:00,12.0:15,12.0:25,47.78785000000,-4.362134000000,,Penmarc'h - Finistère,52817,observation-3d240bab-52f7-4665-950b-abb1bf5bad1d-3,https://biolit.fr/observations/observation-3d240bab-52f7-4665-950b-abb1bf5bad1d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161016_122330.jpg,,FALSE, +N1,60906,sortie-3d240bab-52f7-4665-950b-abb1bf5bad1d,https://biolit.fr/sorties/sortie-3d240bab-52f7-4665-950b-abb1bf5bad1d/,Phil,,10/16/2016 0:00,12.0:15,12.0:25,47.78785000000,-4.362134000000,,Penmarc'h - Finistère,52819,observation-3d240bab-52f7-4665-950b-abb1bf5bad1d-4,https://biolit.fr/observations/observation-3d240bab-52f7-4665-950b-abb1bf5bad1d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161016_122301.jpg,,FALSE, +N1,60907,sortie-3c1bf0f6-86f2-4893-b6bb-d0f430bfb50f,https://biolit.fr/sorties/sortie-3c1bf0f6-86f2-4893-b6bb-d0f430bfb50f/,Phil,,10/17/2016 0:00,12.0:25,12.0000000,47.836077000000,-4.17208800000,,Loctudy - Finistère,52821,observation-3c1bf0f6-86f2-4893-b6bb-d0f430bfb50f,https://biolit.fr/observations/observation-3c1bf0f6-86f2-4893-b6bb-d0f430bfb50f/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/P1040515.JPG,,TRUE, +N1,60908,sortie-d9202fc0-79de-4df9-a536-97c5472e42ea,https://biolit.fr/sorties/sortie-d9202fc0-79de-4df9-a536-97c5472e42ea/,Phil,,10/16/2016 0:00,12.0000000,12.0:15,47.791162000000,-4.359179000000,,Penmarc'h - Finistère,52823,observation-d9202fc0-79de-4df9-a536-97c5472e42ea,https://biolit.fr/observations/observation-d9202fc0-79de-4df9-a536-97c5472e42ea/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/P1040335.JPG,,TRUE, +N1,60908,sortie-d9202fc0-79de-4df9-a536-97c5472e42ea,https://biolit.fr/sorties/sortie-d9202fc0-79de-4df9-a536-97c5472e42ea/,Phil,,10/16/2016 0:00,12.0000000,12.0:15,47.791162000000,-4.359179000000,,Penmarc'h - Finistère,52825,observation-d9202fc0-79de-4df9-a536-97c5472e42ea-2,https://biolit.fr/observations/observation-d9202fc0-79de-4df9-a536-97c5472e42ea-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161016_121257.jpg,,FALSE, +N1,60908,sortie-d9202fc0-79de-4df9-a536-97c5472e42ea,https://biolit.fr/sorties/sortie-d9202fc0-79de-4df9-a536-97c5472e42ea/,Phil,,10/16/2016 0:00,12.0000000,12.0:15,47.791162000000,-4.359179000000,,Penmarc'h - Finistère,52827,observation-d9202fc0-79de-4df9-a536-97c5472e42ea-3,https://biolit.fr/observations/observation-d9202fc0-79de-4df9-a536-97c5472e42ea-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161016_121459.jpg,,FALSE, +N1,60908,sortie-d9202fc0-79de-4df9-a536-97c5472e42ea,https://biolit.fr/sorties/sortie-d9202fc0-79de-4df9-a536-97c5472e42ea/,Phil,,10/16/2016 0:00,12.0000000,12.0:15,47.791162000000,-4.359179000000,,Penmarc'h - Finistère,52829,observation-d9202fc0-79de-4df9-a536-97c5472e42ea-4,https://biolit.fr/observations/observation-d9202fc0-79de-4df9-a536-97c5472e42ea-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161016_121322.jpg,,FALSE, +N1,60909,sortie-ff7b4e68-4280-4292-81cf-d6d4f4643d48,https://biolit.fr/sorties/sortie-ff7b4e68-4280-4292-81cf-d6d4f4643d48/,Phil,,9/18/2016 0:00,14.000005,14.0000000,48.096034000000,-4.46592900000,,Beuzec Cap Sizun - Finistère,52831,observation-ff7b4e68-4280-4292-81cf-d6d4f4643d48,https://biolit.fr/observations/observation-ff7b4e68-4280-4292-81cf-d6d4f4643d48/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1030630.JPG,,TRUE, +N1,60909,sortie-ff7b4e68-4280-4292-81cf-d6d4f4643d48,https://biolit.fr/sorties/sortie-ff7b4e68-4280-4292-81cf-d6d4f4643d48/,Phil,,9/18/2016 0:00,14.000005,14.0000000,48.096034000000,-4.46592900000,,Beuzec Cap Sizun - Finistère,52833,observation-ff7b4e68-4280-4292-81cf-d6d4f4643d48-2,https://biolit.fr/observations/observation-ff7b4e68-4280-4292-81cf-d6d4f4643d48-2/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1030629.JPG,,TRUE, +N1,60909,sortie-ff7b4e68-4280-4292-81cf-d6d4f4643d48,https://biolit.fr/sorties/sortie-ff7b4e68-4280-4292-81cf-d6d4f4643d48/,Phil,,9/18/2016 0:00,14.000005,14.0000000,48.096034000000,-4.46592900000,,Beuzec Cap Sizun - Finistère,52835,observation-ff7b4e68-4280-4292-81cf-d6d4f4643d48-3,https://biolit.fr/observations/observation-ff7b4e68-4280-4292-81cf-d6d4f4643d48-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030634.JPG,,FALSE, +N1,60909,sortie-ff7b4e68-4280-4292-81cf-d6d4f4643d48,https://biolit.fr/sorties/sortie-ff7b4e68-4280-4292-81cf-d6d4f4643d48/,Phil,,9/18/2016 0:00,14.000005,14.0000000,48.096034000000,-4.46592900000,,Beuzec Cap Sizun - Finistère,52837,observation-ff7b4e68-4280-4292-81cf-d6d4f4643d48-4,https://biolit.fr/observations/observation-ff7b4e68-4280-4292-81cf-d6d4f4643d48-4/,Convolvulus soldanella,Liseron des dunes,,https://biolit.fr/wp-content/uploads/2023/07/P1030623.JPG,,TRUE, +N1,60909,sortie-ff7b4e68-4280-4292-81cf-d6d4f4643d48,https://biolit.fr/sorties/sortie-ff7b4e68-4280-4292-81cf-d6d4f4643d48/,Phil,,9/18/2016 0:00,14.000005,14.0000000,48.096034000000,-4.46592900000,,Beuzec Cap Sizun - Finistère,52839,observation-ff7b4e68-4280-4292-81cf-d6d4f4643d48-5,https://biolit.fr/observations/observation-ff7b4e68-4280-4292-81cf-d6d4f4643d48-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030627.JPG,,FALSE, +N1,60910,sortie-c8c89d9c-528c-460a-a01f-a814447d7301,https://biolit.fr/sorties/sortie-c8c89d9c-528c-460a-a01f-a814447d7301/,Phil,,9/24/2016 0:00,17.0000000,17.0:45,47.792028000000,-4.218394000000,,Loctudy - Finistère,52841,observation-c8c89d9c-528c-460a-a01f-a814447d7301,https://biolit.fr/observations/observation-c8c89d9c-528c-460a-a01f-a814447d7301/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/P1040142.JPG,,TRUE, +N1,60910,sortie-c8c89d9c-528c-460a-a01f-a814447d7301,https://biolit.fr/sorties/sortie-c8c89d9c-528c-460a-a01f-a814447d7301/,Phil,,9/24/2016 0:00,17.0000000,17.0:45,47.792028000000,-4.218394000000,,Loctudy - Finistère,52843,observation-c8c89d9c-528c-460a-a01f-a814447d7301-2,https://biolit.fr/observations/observation-c8c89d9c-528c-460a-a01f-a814447d7301-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1040163.JPG,,TRUE, +N1,60910,sortie-c8c89d9c-528c-460a-a01f-a814447d7301,https://biolit.fr/sorties/sortie-c8c89d9c-528c-460a-a01f-a814447d7301/,Phil,,9/24/2016 0:00,17.0000000,17.0:45,47.792028000000,-4.218394000000,,Loctudy - Finistère,52845,observation-c8c89d9c-528c-460a-a01f-a814447d7301-3,https://biolit.fr/observations/observation-c8c89d9c-528c-460a-a01f-a814447d7301-3/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1040148.JPG,,TRUE, +N1,60911,sortie-99408d09-d803-46f8-a839-7407cf0530aa,https://biolit.fr/sorties/sortie-99408d09-d803-46f8-a839-7407cf0530aa/,Phil,,10/01/2016,12.0:25,12.0:45,47.867678000000,-3.911731000000,,Concarneau - Finistère,52847,observation-99408d09-d803-46f8-a839-7407cf0530aa,https://biolit.fr/observations/observation-99408d09-d803-46f8-a839-7407cf0530aa/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1040287.JPG,,TRUE, +N1,60911,sortie-99408d09-d803-46f8-a839-7407cf0530aa,https://biolit.fr/sorties/sortie-99408d09-d803-46f8-a839-7407cf0530aa/,Phil,,10/01/2016,12.0:25,12.0:45,47.867678000000,-3.911731000000,,Concarneau - Finistère,52849,observation-99408d09-d803-46f8-a839-7407cf0530aa-2,https://biolit.fr/observations/observation-99408d09-d803-46f8-a839-7407cf0530aa-2/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1040285.JPG,,TRUE, +N1,60911,sortie-99408d09-d803-46f8-a839-7407cf0530aa,https://biolit.fr/sorties/sortie-99408d09-d803-46f8-a839-7407cf0530aa/,Phil,,10/01/2016,12.0:25,12.0:45,47.867678000000,-3.911731000000,,Concarneau - Finistère,52851,observation-99408d09-d803-46f8-a839-7407cf0530aa-3,https://biolit.fr/observations/observation-99408d09-d803-46f8-a839-7407cf0530aa-3/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/2023/07/P1040259.JPG,,TRUE, +N1,60912,sortie-dda0603e-740f-4c21-8df7-ffe54be8f96a,https://biolit.fr/sorties/sortie-dda0603e-740f-4c21-8df7-ffe54be8f96a/,Phil,,10/16/2016 0:00,11.000005,11.0000000,47.788992000000,-4.357800000000,,Penmarc'h - Finistère,52853,observation-dda0603e-740f-4c21-8df7-ffe54be8f96a,https://biolit.fr/observations/observation-dda0603e-740f-4c21-8df7-ffe54be8f96a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040327.JPG,,FALSE, +N1,60912,sortie-dda0603e-740f-4c21-8df7-ffe54be8f96a,https://biolit.fr/sorties/sortie-dda0603e-740f-4c21-8df7-ffe54be8f96a/,Phil,,10/16/2016 0:00,11.000005,11.0000000,47.788992000000,-4.357800000000,,Penmarc'h - Finistère,52855,observation-dda0603e-740f-4c21-8df7-ffe54be8f96a-2,https://biolit.fr/observations/observation-dda0603e-740f-4c21-8df7-ffe54be8f96a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161016_110824.jpg,,FALSE, +N1,60912,sortie-dda0603e-740f-4c21-8df7-ffe54be8f96a,https://biolit.fr/sorties/sortie-dda0603e-740f-4c21-8df7-ffe54be8f96a/,Phil,,10/16/2016 0:00,11.000005,11.0000000,47.788992000000,-4.357800000000,,Penmarc'h - Finistère,52857,observation-dda0603e-740f-4c21-8df7-ffe54be8f96a-3,https://biolit.fr/observations/observation-dda0603e-740f-4c21-8df7-ffe54be8f96a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161016_110851.jpg,,FALSE, +N1,60912,sortie-dda0603e-740f-4c21-8df7-ffe54be8f96a,https://biolit.fr/sorties/sortie-dda0603e-740f-4c21-8df7-ffe54be8f96a/,Phil,,10/16/2016 0:00,11.000005,11.0000000,47.788992000000,-4.357800000000,,Penmarc'h - Finistère,52859,observation-dda0603e-740f-4c21-8df7-ffe54be8f96a-4,https://biolit.fr/observations/observation-dda0603e-740f-4c21-8df7-ffe54be8f96a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161016_111124.jpg,,FALSE, +N1,60913,sortie-fd213d84-934d-4f19-a2f2-a95a75250db7,https://biolit.fr/sorties/sortie-fd213d84-934d-4f19-a2f2-a95a75250db7/,Earthforce FS,,10/16/2016 0:00,9.0000000,12.0000000,16.305212000000,-61.266864000000,,L'Anse à l'Eau,52861,observation-fd213d84-934d-4f19-a2f2-a95a75250db7,https://biolit.fr/observations/observation-fd213d84-934d-4f19-a2f2-a95a75250db7/,Chelonia mydas,Tortue verte,,https://biolit.fr/wp-content/uploads/2023/07/14702344_10208890111708119_4583261379694374537_n.jpg,,TRUE, +N1,60913,sortie-fd213d84-934d-4f19-a2f2-a95a75250db7,https://biolit.fr/sorties/sortie-fd213d84-934d-4f19-a2f2-a95a75250db7/,Earthforce FS,,10/16/2016 0:00,9.0000000,12.0000000,16.305212000000,-61.266864000000,,L'Anse à l'Eau,52863,observation-fd213d84-934d-4f19-a2f2-a95a75250db7-2,https://biolit.fr/observations/observation-fd213d84-934d-4f19-a2f2-a95a75250db7-2/,Chelonia mydas,Tortue verte,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5359-scaled.jpg,,TRUE, +N1,60913,sortie-fd213d84-934d-4f19-a2f2-a95a75250db7,https://biolit.fr/sorties/sortie-fd213d84-934d-4f19-a2f2-a95a75250db7/,Earthforce FS,,10/16/2016 0:00,9.0000000,12.0000000,16.305212000000,-61.266864000000,,L'Anse à l'Eau,52865,observation-fd213d84-934d-4f19-a2f2-a95a75250db7-3,https://biolit.fr/observations/observation-fd213d84-934d-4f19-a2f2-a95a75250db7-3/,Chelonia mydas,Tortue verte,,https://biolit.fr/wp-content/uploads/2023/07/14716292_1310840542314101_7371327033874477227_n.jpg,,TRUE, +N1,60914,sortie-53563015-217a-4007-a5d1-9bfed01c944e,https://biolit.fr/sorties/sortie-53563015-217a-4007-a5d1-9bfed01c944e/,Marine,,9/17/2016 0:00,9.0000000,11.0000000,43.236272000000,5.359874000000,,Plage de la bonne brise,52867,observation-53563015-217a-4007-a5d1-9bfed01c944e,https://biolit.fr/observations/observation-53563015-217a-4007-a5d1-9bfed01c944e/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1729_0.JPG,,FALSE, +N1,60914,sortie-53563015-217a-4007-a5d1-9bfed01c944e,https://biolit.fr/sorties/sortie-53563015-217a-4007-a5d1-9bfed01c944e/,Marine,,9/17/2016 0:00,9.0000000,11.0000000,43.236272000000,5.359874000000,,Plage de la bonne brise,52869,observation-53563015-217a-4007-a5d1-9bfed01c944e-2,https://biolit.fr/observations/observation-53563015-217a-4007-a5d1-9bfed01c944e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1730.JPG,,FALSE, +N1,60914,sortie-53563015-217a-4007-a5d1-9bfed01c944e,https://biolit.fr/sorties/sortie-53563015-217a-4007-a5d1-9bfed01c944e/,Marine,,9/17/2016 0:00,9.0000000,11.0000000,43.236272000000,5.359874000000,,Plage de la bonne brise,52871,observation-53563015-217a-4007-a5d1-9bfed01c944e-3,https://biolit.fr/observations/observation-53563015-217a-4007-a5d1-9bfed01c944e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1732-rotated.jpg,,FALSE, +N1,60915,sortie-2955146e-69ab-49e8-82d7-2484bb1e1f89,https://biolit.fr/sorties/sortie-2955146e-69ab-49e8-82d7-2484bb1e1f89/,Marine,,09/11/2016,9.0000000,9.0000000,43.090417000000,6.024321000000,,Plage du Pradet,52873,observation-2955146e-69ab-49e8-82d7-2484bb1e1f89,https://biolit.fr/observations/observation-2955146e-69ab-49e8-82d7-2484bb1e1f89/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1707-scaled.jpg,,TRUE, +N1,60916,sortie-9e0862dc-6e49-4221-a0fb-945181e86192,https://biolit.fr/sorties/sortie-9e0862dc-6e49-4221-a0fb-945181e86192/,Phil,,10/06/2016,11.0000000,11.0:25,47.793084000000,-4.286736000000,,Le Guivinec - Finistère,52874,observation-9e0862dc-6e49-4221-a0fb-945181e86192,https://biolit.fr/observations/observation-9e0862dc-6e49-4221-a0fb-945181e86192/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161006_112349.jpg,,FALSE, +N1,60916,sortie-9e0862dc-6e49-4221-a0fb-945181e86192,https://biolit.fr/sorties/sortie-9e0862dc-6e49-4221-a0fb-945181e86192/,Phil,,10/06/2016,11.0000000,11.0:25,47.793084000000,-4.286736000000,,Le Guivinec - Finistère,52876,observation-9e0862dc-6e49-4221-a0fb-945181e86192-2,https://biolit.fr/observations/observation-9e0862dc-6e49-4221-a0fb-945181e86192-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161006_112620.jpg,,FALSE, +N1,60917,sortie-26bdf0c4-5a4c-4ec5-9406-9006fb251ceb,https://biolit.fr/sorties/sortie-26bdf0c4-5a4c-4ec5-9406-9006fb251ceb/,Phil,,9/18/2016 0:00,13.0000000,13.0:55,48.095924000000,-4.467921000000,,Beuzec Cap Sizun - Finistère,52878,observation-26bdf0c4-5a4c-4ec5-9406-9006fb251ceb,https://biolit.fr/observations/observation-26bdf0c4-5a4c-4ec5-9406-9006fb251ceb/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1030606.JPG,,TRUE, +N1,60917,sortie-26bdf0c4-5a4c-4ec5-9406-9006fb251ceb,https://biolit.fr/sorties/sortie-26bdf0c4-5a4c-4ec5-9406-9006fb251ceb/,Phil,,9/18/2016 0:00,13.0000000,13.0:55,48.095924000000,-4.467921000000,,Beuzec Cap Sizun - Finistère,52880,observation-26bdf0c4-5a4c-4ec5-9406-9006fb251ceb-2,https://biolit.fr/observations/observation-26bdf0c4-5a4c-4ec5-9406-9006fb251ceb-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1030613.JPG,,TRUE, +N1,60917,sortie-26bdf0c4-5a4c-4ec5-9406-9006fb251ceb,https://biolit.fr/sorties/sortie-26bdf0c4-5a4c-4ec5-9406-9006fb251ceb/,Phil,,9/18/2016 0:00,13.0000000,13.0:55,48.095924000000,-4.467921000000,,Beuzec Cap Sizun - Finistère,52882,observation-26bdf0c4-5a4c-4ec5-9406-9006fb251ceb-3,https://biolit.fr/observations/observation-26bdf0c4-5a4c-4ec5-9406-9006fb251ceb-3/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1030609.JPG,,TRUE, +N1,60917,sortie-26bdf0c4-5a4c-4ec5-9406-9006fb251ceb,https://biolit.fr/sorties/sortie-26bdf0c4-5a4c-4ec5-9406-9006fb251ceb/,Phil,,9/18/2016 0:00,13.0000000,13.0:55,48.095924000000,-4.467921000000,,Beuzec Cap Sizun - Finistère,52884,observation-26bdf0c4-5a4c-4ec5-9406-9006fb251ceb-4,https://biolit.fr/observations/observation-26bdf0c4-5a4c-4ec5-9406-9006fb251ceb-4/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1030619.JPG,,TRUE, +N1,60918,sortie-6181229b-610d-4a43-bfdb-2b73d58de8e6,https://biolit.fr/sorties/sortie-6181229b-610d-4a43-bfdb-2b73d58de8e6/,Phil,,9/22/2016 0:00,17.0:55,18.0000000,47.862804000000,-4.073505000000,,Bénodet - Finistère,52886,observation-6181229b-610d-4a43-bfdb-2b73d58de8e6,https://biolit.fr/observations/observation-6181229b-610d-4a43-bfdb-2b73d58de8e6/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/P1040083.JPG,,TRUE, +N1,60918,sortie-6181229b-610d-4a43-bfdb-2b73d58de8e6,https://biolit.fr/sorties/sortie-6181229b-610d-4a43-bfdb-2b73d58de8e6/,Phil,,9/22/2016 0:00,17.0:55,18.0000000,47.862804000000,-4.073505000000,,Bénodet - Finistère,52888,observation-6181229b-610d-4a43-bfdb-2b73d58de8e6-2,https://biolit.fr/observations/observation-6181229b-610d-4a43-bfdb-2b73d58de8e6-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040079.JPG,,TRUE, +N1,60918,sortie-6181229b-610d-4a43-bfdb-2b73d58de8e6,https://biolit.fr/sorties/sortie-6181229b-610d-4a43-bfdb-2b73d58de8e6/,Phil,,9/22/2016 0:00,17.0:55,18.0000000,47.862804000000,-4.073505000000,,Bénodet - Finistère,52890,observation-6181229b-610d-4a43-bfdb-2b73d58de8e6-3,https://biolit.fr/observations/observation-6181229b-610d-4a43-bfdb-2b73d58de8e6-3/,Zostera noltei,Zostère naine,,https://biolit.fr/wp-content/uploads/2023/07/P1040073.JPG,,TRUE, +N1,60918,sortie-6181229b-610d-4a43-bfdb-2b73d58de8e6,https://biolit.fr/sorties/sortie-6181229b-610d-4a43-bfdb-2b73d58de8e6/,Phil,,9/22/2016 0:00,17.0:55,18.0000000,47.862804000000,-4.073505000000,,Bénodet - Finistère,52892,observation-6181229b-610d-4a43-bfdb-2b73d58de8e6-4,https://biolit.fr/observations/observation-6181229b-610d-4a43-bfdb-2b73d58de8e6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040071.JPG,,FALSE, +N1,60918,sortie-6181229b-610d-4a43-bfdb-2b73d58de8e6,https://biolit.fr/sorties/sortie-6181229b-610d-4a43-bfdb-2b73d58de8e6/,Phil,,9/22/2016 0:00,17.0:55,18.0000000,47.862804000000,-4.073505000000,,Bénodet - Finistère,52894,observation-6181229b-610d-4a43-bfdb-2b73d58de8e6-5,https://biolit.fr/observations/observation-6181229b-610d-4a43-bfdb-2b73d58de8e6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040070.JPG,,FALSE, +N1,60918,sortie-6181229b-610d-4a43-bfdb-2b73d58de8e6,https://biolit.fr/sorties/sortie-6181229b-610d-4a43-bfdb-2b73d58de8e6/,Phil,,9/22/2016 0:00,17.0:55,18.0000000,47.862804000000,-4.073505000000,,Bénodet - Finistère,52896,observation-6181229b-610d-4a43-bfdb-2b73d58de8e6-6,https://biolit.fr/observations/observation-6181229b-610d-4a43-bfdb-2b73d58de8e6-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040066.JPG,,FALSE, +N1,60919,sortie-74662a3c-5e1a-4dee-810a-494c10f5cd6d,https://biolit.fr/sorties/sortie-74662a3c-5e1a-4dee-810a-494c10f5cd6d/,Phil,,10/08/2016,11.0000000,11.0:15,47.835678000000,-4.16920800000,,Loctudy - Finistère,52898,observation-74662a3c-5e1a-4dee-810a-494c10f5cd6d,https://biolit.fr/observations/observation-74662a3c-5e1a-4dee-810a-494c10f5cd6d/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161008_163434.jpg,,FALSE, +N1,60920,sortie-0e686220-88e5-4412-a9d3-4eaef6da6558,https://biolit.fr/sorties/sortie-0e686220-88e5-4412-a9d3-4eaef6da6558/,Phil,,9/20/2016 0:00,14.0:25,14.0:35,47.800722000000,-4.382613000000,,Penmarc'h - Finistère,52900,observation-0e686220-88e5-4412-a9d3-4eaef6da6558,https://biolit.fr/observations/observation-0e686220-88e5-4412-a9d3-4eaef6da6558/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030953.JPG,,FALSE, +N1,60920,sortie-0e686220-88e5-4412-a9d3-4eaef6da6558,https://biolit.fr/sorties/sortie-0e686220-88e5-4412-a9d3-4eaef6da6558/,Phil,,9/20/2016 0:00,14.0:25,14.0:35,47.800722000000,-4.382613000000,,Penmarc'h - Finistère,52902,observation-0e686220-88e5-4412-a9d3-4eaef6da6558-2,https://biolit.fr/observations/observation-0e686220-88e5-4412-a9d3-4eaef6da6558-2/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/P1030934.JPG,,TRUE, +N1,60920,sortie-0e686220-88e5-4412-a9d3-4eaef6da6558,https://biolit.fr/sorties/sortie-0e686220-88e5-4412-a9d3-4eaef6da6558/,Phil,,9/20/2016 0:00,14.0:25,14.0:35,47.800722000000,-4.382613000000,,Penmarc'h - Finistère,52904,observation-0e686220-88e5-4412-a9d3-4eaef6da6558-3,https://biolit.fr/observations/observation-0e686220-88e5-4412-a9d3-4eaef6da6558-3/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/P1030940.JPG,,TRUE, +N1,60920,sortie-0e686220-88e5-4412-a9d3-4eaef6da6558,https://biolit.fr/sorties/sortie-0e686220-88e5-4412-a9d3-4eaef6da6558/,Phil,,9/20/2016 0:00,14.0:25,14.0:35,47.800722000000,-4.382613000000,,Penmarc'h - Finistère,52906,observation-0e686220-88e5-4412-a9d3-4eaef6da6558-4,https://biolit.fr/observations/observation-0e686220-88e5-4412-a9d3-4eaef6da6558-4/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/P1030947.JPG,,TRUE, +N1,60921,sortie-04384781-94ef-4f59-9a09-93bc351c3108,https://biolit.fr/sorties/sortie-04384781-94ef-4f59-9a09-93bc351c3108/,Phil,,9/22/2016 0:00,18.0000000,18.0:15,47.862367000000,-4.072378000000,,Bénodet - Finistère,52908,observation-04384781-94ef-4f59-9a09-93bc351c3108,https://biolit.fr/observations/observation-04384781-94ef-4f59-9a09-93bc351c3108/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040090.JPG,,FALSE, +N1,60921,sortie-04384781-94ef-4f59-9a09-93bc351c3108,https://biolit.fr/sorties/sortie-04384781-94ef-4f59-9a09-93bc351c3108/,Phil,,9/22/2016 0:00,18.0000000,18.0:15,47.862367000000,-4.072378000000,,Bénodet - Finistère,52910,observation-04384781-94ef-4f59-9a09-93bc351c3108-2,https://biolit.fr/observations/observation-04384781-94ef-4f59-9a09-93bc351c3108-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040091.JPG,,FALSE, +N1,60921,sortie-04384781-94ef-4f59-9a09-93bc351c3108,https://biolit.fr/sorties/sortie-04384781-94ef-4f59-9a09-93bc351c3108/,Phil,,9/22/2016 0:00,18.0000000,18.0:15,47.862367000000,-4.072378000000,,Bénodet - Finistère,52912,observation-04384781-94ef-4f59-9a09-93bc351c3108-3,https://biolit.fr/observations/observation-04384781-94ef-4f59-9a09-93bc351c3108-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040086.JPG,,FALSE, +N1,60921,sortie-04384781-94ef-4f59-9a09-93bc351c3108,https://biolit.fr/sorties/sortie-04384781-94ef-4f59-9a09-93bc351c3108/,Phil,,9/22/2016 0:00,18.0000000,18.0:15,47.862367000000,-4.072378000000,,Bénodet - Finistère,52914,observation-04384781-94ef-4f59-9a09-93bc351c3108-4,https://biolit.fr/observations/observation-04384781-94ef-4f59-9a09-93bc351c3108-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040085.JPG,,FALSE, +N1,60922,sortie-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8,https://biolit.fr/sorties/sortie-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.805859000000,-4.377494000000,,Penmarc'h - Finistère,52916,observation-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8,https://biolit.fr/observations/observation-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030896.JPG,,FALSE, +N1,60922,sortie-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8,https://biolit.fr/sorties/sortie-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.805859000000,-4.377494000000,,Penmarc'h - Finistère,52918,observation-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8-2,https://biolit.fr/observations/observation-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030901.JPG,,FALSE, +N1,60922,sortie-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8,https://biolit.fr/sorties/sortie-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.805859000000,-4.377494000000,,Penmarc'h - Finistère,52920,observation-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8-3,https://biolit.fr/observations/observation-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030921.JPG,,FALSE, +N1,60922,sortie-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8,https://biolit.fr/sorties/sortie-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.805859000000,-4.377494000000,,Penmarc'h - Finistère,52922,observation-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8-4,https://biolit.fr/observations/observation-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030925.JPG,,FALSE, +N1,60922,sortie-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8,https://biolit.fr/sorties/sortie-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.805859000000,-4.377494000000,,Penmarc'h - Finistère,52924,observation-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8-5,https://biolit.fr/observations/observation-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8-5/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1030902.JPG,,TRUE, +N1,60922,sortie-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8,https://biolit.fr/sorties/sortie-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.805859000000,-4.377494000000,,Penmarc'h - Finistère,52926,observation-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8-6,https://biolit.fr/observations/observation-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8-6/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1030903.JPG,,TRUE, +N1,60922,sortie-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8,https://biolit.fr/sorties/sortie-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.805859000000,-4.377494000000,,Penmarc'h - Finistère,52928,observation-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8-7,https://biolit.fr/observations/observation-f66380b8-ffd5-4eaf-97cd-57a63d75f5e8-7/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1030914.JPG,,TRUE, +N1,60923,sortie-8de270fa-0a4d-4d76-938a-d8d33797155c,https://biolit.fr/sorties/sortie-8de270fa-0a4d-4d76-938a-d8d33797155c/,Phil,,10/01/2016,11.0:55,12.000005,47.868050000000,-3.911757000000,,Concarneau - Finistère,52930,observation-8de270fa-0a4d-4d76-938a-d8d33797155c,https://biolit.fr/observations/observation-8de270fa-0a4d-4d76-938a-d8d33797155c/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/P1040220.JPG,,TRUE, +N1,60923,sortie-8de270fa-0a4d-4d76-938a-d8d33797155c,https://biolit.fr/sorties/sortie-8de270fa-0a4d-4d76-938a-d8d33797155c/,Phil,,10/01/2016,11.0:55,12.000005,47.868050000000,-3.911757000000,,Concarneau - Finistère,52932,observation-8de270fa-0a4d-4d76-938a-d8d33797155c-2,https://biolit.fr/observations/observation-8de270fa-0a4d-4d76-938a-d8d33797155c-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040226.JPG,,TRUE, +N1,60923,sortie-8de270fa-0a4d-4d76-938a-d8d33797155c,https://biolit.fr/sorties/sortie-8de270fa-0a4d-4d76-938a-d8d33797155c/,Phil,,10/01/2016,11.0:55,12.000005,47.868050000000,-3.911757000000,,Concarneau - Finistère,52934,observation-8de270fa-0a4d-4d76-938a-d8d33797155c-3,https://biolit.fr/observations/observation-8de270fa-0a4d-4d76-938a-d8d33797155c-3/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1040229.JPG,,TRUE, +N1,60924,sortie-cad9cb1d-2950-4f7c-8605-348d94a7378e,https://biolit.fr/sorties/sortie-cad9cb1d-2950-4f7c-8605-348d94a7378e/,Phil,,9/23/2016 0:00,14.0000000,14.0:55,47.889863000000,-3.976394000000,,Fouesnant - Finistère,52936,observation-cad9cb1d-2950-4f7c-8605-348d94a7378e,https://biolit.fr/observations/observation-cad9cb1d-2950-4f7c-8605-348d94a7378e/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20160923_145136.jpg,,TRUE, +N1,60925,sortie-3a6e8b9b-cc27-4076-b573-457a41085ea4,https://biolit.fr/sorties/sortie-3a6e8b9b-cc27-4076-b573-457a41085ea4/,GG le BG,,10/03/2016,9.0000000,12.0000000,43.045677000000,6.150186000000,,La Capte,52938,observation-3a6e8b9b-cc27-4076-b573-457a41085ea4,https://biolit.fr/observations/observation-3a6e8b9b-cc27-4076-b573-457a41085ea4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161003_100652[1]-scaled.jpg,,FALSE, +N1,60925,sortie-3a6e8b9b-cc27-4076-b573-457a41085ea4,https://biolit.fr/sorties/sortie-3a6e8b9b-cc27-4076-b573-457a41085ea4/,GG le BG,,10/03/2016,9.0000000,12.0000000,43.045677000000,6.150186000000,,La Capte,52940,observation-3a6e8b9b-cc27-4076-b573-457a41085ea4-2,https://biolit.fr/observations/observation-3a6e8b9b-cc27-4076-b573-457a41085ea4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20161003_100908[1]-scaled.jpg,,FALSE, +N1,60927,sortie-4fc41b73-f2b8-4e34-ae4b-303e02bdfdc1,https://biolit.fr/sorties/sortie-4fc41b73-f2b8-4e34-ae4b-303e02bdfdc1/,cam_16,,10/03/2016,9.0000000,11.0000000,43.042296000000,6.150754000000,,Plage de la Badine,52944,observation-4fc41b73-f2b8-4e34-ae4b-303e02bdfdc1,https://biolit.fr/observations/observation-4fc41b73-f2b8-4e34-ae4b-303e02bdfdc1/,,,,https://biolit.fr/wp-content/uploads/2023/07/1475491210108.jpg,,FALSE, +N1,60928,sortie-81d46e5e-1041-4b4d-b160-b7098000d795,https://biolit.fr/sorties/sortie-81d46e5e-1041-4b4d-b160-b7098000d795/,Phil,,9/18/2016 0:00,12.0:25,12.0000000,48.099052000000,-4.46699800000,,Beuzec Cap Sizun - Finistère,52946,observation-81d46e5e-1041-4b4d-b160-b7098000d795,https://biolit.fr/observations/observation-81d46e5e-1041-4b4d-b160-b7098000d795/,Dicentrarchus labrax,Bar commun loup,,https://biolit.fr/wp-content/uploads/2023/07/P1030507.JPG,,TRUE, +N1,60928,sortie-81d46e5e-1041-4b4d-b160-b7098000d795,https://biolit.fr/sorties/sortie-81d46e5e-1041-4b4d-b160-b7098000d795/,Phil,,9/18/2016 0:00,12.0:25,12.0000000,48.099052000000,-4.46699800000,,Beuzec Cap Sizun - Finistère,52948,observation-81d46e5e-1041-4b4d-b160-b7098000d795-2,https://biolit.fr/observations/observation-81d46e5e-1041-4b4d-b160-b7098000d795-2/,Dicentrarchus labrax,Bar commun loup,,https://biolit.fr/wp-content/uploads/2023/07/P1030509.JPG,,TRUE, +N1,60928,sortie-81d46e5e-1041-4b4d-b160-b7098000d795,https://biolit.fr/sorties/sortie-81d46e5e-1041-4b4d-b160-b7098000d795/,Phil,,9/18/2016 0:00,12.0:25,12.0000000,48.099052000000,-4.46699800000,,Beuzec Cap Sizun - Finistère,52950,observation-81d46e5e-1041-4b4d-b160-b7098000d795-3,https://biolit.fr/observations/observation-81d46e5e-1041-4b4d-b160-b7098000d795-3/,Dicentrarchus labrax,Bar commun loup,,https://biolit.fr/wp-content/uploads/2023/07/P1030517.JPG,,TRUE, +N1,60928,sortie-81d46e5e-1041-4b4d-b160-b7098000d795,https://biolit.fr/sorties/sortie-81d46e5e-1041-4b4d-b160-b7098000d795/,Phil,,9/18/2016 0:00,12.0:25,12.0000000,48.099052000000,-4.46699800000,,Beuzec Cap Sizun - Finistère,52952,observation-81d46e5e-1041-4b4d-b160-b7098000d795-4,https://biolit.fr/observations/observation-81d46e5e-1041-4b4d-b160-b7098000d795-4/,Dicentrarchus labrax,Bar commun loup,,https://biolit.fr/wp-content/uploads/2023/07/P1030522.JPG,,TRUE, +N1,60928,sortie-81d46e5e-1041-4b4d-b160-b7098000d795,https://biolit.fr/sorties/sortie-81d46e5e-1041-4b4d-b160-b7098000d795/,Phil,,9/18/2016 0:00,12.0:25,12.0000000,48.099052000000,-4.46699800000,,Beuzec Cap Sizun - Finistère,52954,observation-81d46e5e-1041-4b4d-b160-b7098000d795-5,https://biolit.fr/observations/observation-81d46e5e-1041-4b4d-b160-b7098000d795-5/,Dicentrarchus labrax,Bar commun loup,,https://biolit.fr/wp-content/uploads/2023/07/P1030525.JPG,,TRUE, +N1,60929,sortie-8fdc036e-645c-4164-b58c-3046042670e3,https://biolit.fr/sorties/sortie-8fdc036e-645c-4164-b58c-3046042670e3/,Phil,,10/01/2016,11.0000000,11.0:55,47.869686000000,-3.912285000000,,Concarneau - Finistère,52956,observation-8fdc036e-645c-4164-b58c-3046042670e3,https://biolit.fr/observations/observation-8fdc036e-645c-4164-b58c-3046042670e3/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/P1040201.JPG,,TRUE, +N1,60929,sortie-8fdc036e-645c-4164-b58c-3046042670e3,https://biolit.fr/sorties/sortie-8fdc036e-645c-4164-b58c-3046042670e3/,Phil,,10/01/2016,11.0000000,11.0:55,47.869686000000,-3.912285000000,,Concarneau - Finistère,52958,observation-8fdc036e-645c-4164-b58c-3046042670e3-2,https://biolit.fr/observations/observation-8fdc036e-645c-4164-b58c-3046042670e3-2/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/P1040203.JPG,,TRUE, +N1,60929,sortie-8fdc036e-645c-4164-b58c-3046042670e3,https://biolit.fr/sorties/sortie-8fdc036e-645c-4164-b58c-3046042670e3/,Phil,,10/01/2016,11.0000000,11.0:55,47.869686000000,-3.912285000000,,Concarneau - Finistère,52960,observation-8fdc036e-645c-4164-b58c-3046042670e3-3,https://biolit.fr/observations/observation-8fdc036e-645c-4164-b58c-3046042670e3-3/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/P1040208.JPG,,TRUE, +N1,60929,sortie-8fdc036e-645c-4164-b58c-3046042670e3,https://biolit.fr/sorties/sortie-8fdc036e-645c-4164-b58c-3046042670e3/,Phil,,10/01/2016,11.0000000,11.0:55,47.869686000000,-3.912285000000,,Concarneau - Finistère,52962,observation-8fdc036e-645c-4164-b58c-3046042670e3-4,https://biolit.fr/observations/observation-8fdc036e-645c-4164-b58c-3046042670e3-4/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/P1040211.JPG,,TRUE, +N1,60930,sortie-5bba3517-d22a-400b-ae22-afe4fd509c5b,https://biolit.fr/sorties/sortie-5bba3517-d22a-400b-ae22-afe4fd509c5b/,Phil,,10/03/2016,14.000005,14.0:15,47.805470000000,-4.380601000000,,Penmarc'h - Finistère,52964,observation-5bba3517-d22a-400b-ae22-afe4fd509c5b,https://biolit.fr/observations/observation-5bba3517-d22a-400b-ae22-afe4fd509c5b/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030852.JPG,,FALSE, +N1,60930,sortie-5bba3517-d22a-400b-ae22-afe4fd509c5b,https://biolit.fr/sorties/sortie-5bba3517-d22a-400b-ae22-afe4fd509c5b/,Phil,,10/03/2016,14.000005,14.0:15,47.805470000000,-4.380601000000,,Penmarc'h - Finistère,52966,observation-5bba3517-d22a-400b-ae22-afe4fd509c5b-2,https://biolit.fr/observations/observation-5bba3517-d22a-400b-ae22-afe4fd509c5b-2/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/P1030857.JPG,,TRUE, +N1,60930,sortie-5bba3517-d22a-400b-ae22-afe4fd509c5b,https://biolit.fr/sorties/sortie-5bba3517-d22a-400b-ae22-afe4fd509c5b/,Phil,,10/03/2016,14.000005,14.0:15,47.805470000000,-4.380601000000,,Penmarc'h - Finistère,52968,observation-5bba3517-d22a-400b-ae22-afe4fd509c5b-3,https://biolit.fr/observations/observation-5bba3517-d22a-400b-ae22-afe4fd509c5b-3/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/P1030862.JPG,,TRUE, +N1,60930,sortie-5bba3517-d22a-400b-ae22-afe4fd509c5b,https://biolit.fr/sorties/sortie-5bba3517-d22a-400b-ae22-afe4fd509c5b/,Phil,,10/03/2016,14.000005,14.0:15,47.805470000000,-4.380601000000,,Penmarc'h - Finistère,52970,observation-5bba3517-d22a-400b-ae22-afe4fd509c5b-4,https://biolit.fr/observations/observation-5bba3517-d22a-400b-ae22-afe4fd509c5b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030869.JPG,,FALSE, +N1,60930,sortie-5bba3517-d22a-400b-ae22-afe4fd509c5b,https://biolit.fr/sorties/sortie-5bba3517-d22a-400b-ae22-afe4fd509c5b/,Phil,,10/03/2016,14.000005,14.0:15,47.805470000000,-4.380601000000,,Penmarc'h - Finistère,52972,observation-5bba3517-d22a-400b-ae22-afe4fd509c5b-5,https://biolit.fr/observations/observation-5bba3517-d22a-400b-ae22-afe4fd509c5b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030880.JPG,,FALSE, +N1,60930,sortie-5bba3517-d22a-400b-ae22-afe4fd509c5b,https://biolit.fr/sorties/sortie-5bba3517-d22a-400b-ae22-afe4fd509c5b/,Phil,,10/03/2016,14.000005,14.0:15,47.805470000000,-4.380601000000,,Penmarc'h - Finistère,52974,observation-5bba3517-d22a-400b-ae22-afe4fd509c5b-6,https://biolit.fr/observations/observation-5bba3517-d22a-400b-ae22-afe4fd509c5b-6/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1030866.JPG,,TRUE, +N1,60931,sortie-5b897178-1964-4226-a933-f0cbee59b8b1,https://biolit.fr/sorties/sortie-5b897178-1964-4226-a933-f0cbee59b8b1/,Phil,,9/23/2016 0:00,14.0000000,14.0:45,47.888081000000,-3.972707000000,,Fouesnant - Finistère,52976,observation-5b897178-1964-4226-a933-f0cbee59b8b1,https://biolit.fr/observations/observation-5b897178-1964-4226-a933-f0cbee59b8b1/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/20160923_144545.jpg,,TRUE, +N1,60931,sortie-5b897178-1964-4226-a933-f0cbee59b8b1,https://biolit.fr/sorties/sortie-5b897178-1964-4226-a933-f0cbee59b8b1/,Phil,,9/23/2016 0:00,14.0000000,14.0:45,47.888081000000,-3.972707000000,,Fouesnant - Finistère,52978,observation-5b897178-1964-4226-a933-f0cbee59b8b1-2,https://biolit.fr/observations/observation-5b897178-1964-4226-a933-f0cbee59b8b1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160923_144531.jpg,,FALSE, +N1,60932,sortie-d36c8866-48e1-4f38-a77d-b3d610b7c038,https://biolit.fr/sorties/sortie-d36c8866-48e1-4f38-a77d-b3d610b7c038/,Phil,,9/22/2016 0:00,17.0000000,17.0000000,47.863106000000,-4.073786000000,,Bénodet - Finistère,52980,observation-d36c8866-48e1-4f38-a77d-b3d610b7c038,https://biolit.fr/observations/observation-d36c8866-48e1-4f38-a77d-b3d610b7c038/,Arenicola marina,Arénicole,,https://biolit.fr/wp-content/uploads/2023/07/P1040037.JPG,,TRUE, +N1,60932,sortie-d36c8866-48e1-4f38-a77d-b3d610b7c038,https://biolit.fr/sorties/sortie-d36c8866-48e1-4f38-a77d-b3d610b7c038/,Phil,,9/22/2016 0:00,17.0000000,17.0000000,47.863106000000,-4.073786000000,,Bénodet - Finistère,52982,observation-d36c8866-48e1-4f38-a77d-b3d610b7c038-2,https://biolit.fr/observations/observation-d36c8866-48e1-4f38-a77d-b3d610b7c038-2/,Arenicola marina,Arénicole,,https://biolit.fr/wp-content/uploads/2023/07/P1040035.JPG,,TRUE, +N1,60932,sortie-d36c8866-48e1-4f38-a77d-b3d610b7c038,https://biolit.fr/sorties/sortie-d36c8866-48e1-4f38-a77d-b3d610b7c038/,Phil,,9/22/2016 0:00,17.0000000,17.0000000,47.863106000000,-4.073786000000,,Bénodet - Finistère,52984,observation-d36c8866-48e1-4f38-a77d-b3d610b7c038-3,https://biolit.fr/observations/observation-d36c8866-48e1-4f38-a77d-b3d610b7c038-3/,Arenicola marina,Arénicole,,https://biolit.fr/wp-content/uploads/2023/07/P1040039.JPG,,TRUE, +N1,60932,sortie-d36c8866-48e1-4f38-a77d-b3d610b7c038,https://biolit.fr/sorties/sortie-d36c8866-48e1-4f38-a77d-b3d610b7c038/,Phil,,9/22/2016 0:00,17.0000000,17.0000000,47.863106000000,-4.073786000000,,Bénodet - Finistère,52986,observation-d36c8866-48e1-4f38-a77d-b3d610b7c038-4,https://biolit.fr/observations/observation-d36c8866-48e1-4f38-a77d-b3d610b7c038-4/,Arenicola marina,Arénicole,,https://biolit.fr/wp-content/uploads/2023/07/P1040043.JPG,,TRUE, +N1,60933,sortie-bdf59f5e-2c51-4d1b-bce9-75099139d7de,https://biolit.fr/sorties/sortie-bdf59f5e-2c51-4d1b-bce9-75099139d7de/,Phil,,9/23/2016 0:00,14.0000000,14.0:45,47.889129000000,-3.973737000000,,Fouesnant - Finistère,52988,observation-bdf59f5e-2c51-4d1b-bce9-75099139d7de,https://biolit.fr/observations/observation-bdf59f5e-2c51-4d1b-bce9-75099139d7de/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20160923_144213.jpg,,TRUE, +N1,60933,sortie-bdf59f5e-2c51-4d1b-bce9-75099139d7de,https://biolit.fr/sorties/sortie-bdf59f5e-2c51-4d1b-bce9-75099139d7de/,Phil,,9/23/2016 0:00,14.0000000,14.0:45,47.889129000000,-3.973737000000,,Fouesnant - Finistère,52990,observation-bdf59f5e-2c51-4d1b-bce9-75099139d7de-2,https://biolit.fr/observations/observation-bdf59f5e-2c51-4d1b-bce9-75099139d7de-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160923_144205.jpg,,FALSE, +N1,60933,sortie-bdf59f5e-2c51-4d1b-bce9-75099139d7de,https://biolit.fr/sorties/sortie-bdf59f5e-2c51-4d1b-bce9-75099139d7de/,Phil,,9/23/2016 0:00,14.0000000,14.0:45,47.889129000000,-3.973737000000,,Fouesnant - Finistère,52992,observation-bdf59f5e-2c51-4d1b-bce9-75099139d7de-3,https://biolit.fr/observations/observation-bdf59f5e-2c51-4d1b-bce9-75099139d7de-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160923_144431.jpg,,FALSE, +N1,60934,sortie-0e6d134b-0359-4cab-a34b-78a1147e4885,https://biolit.fr/sorties/sortie-0e6d134b-0359-4cab-a34b-78a1147e4885/,Phil,,9/18/2016 0:00,12.0:55,13.0:15,48.095884000000,-4.468817000000,,Beuzec Cap Sizun - Finistère,52994,observation-0e6d134b-0359-4cab-a34b-78a1147e4885,https://biolit.fr/observations/observation-0e6d134b-0359-4cab-a34b-78a1147e4885/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1030583.JPG,,TRUE, +N1,60934,sortie-0e6d134b-0359-4cab-a34b-78a1147e4885,https://biolit.fr/sorties/sortie-0e6d134b-0359-4cab-a34b-78a1147e4885/,Phil,,9/18/2016 0:00,12.0:55,13.0:15,48.095884000000,-4.468817000000,,Beuzec Cap Sizun - Finistère,52996,observation-0e6d134b-0359-4cab-a34b-78a1147e4885-2,https://biolit.fr/observations/observation-0e6d134b-0359-4cab-a34b-78a1147e4885-2/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1030580.JPG,,TRUE, +N1,60934,sortie-0e6d134b-0359-4cab-a34b-78a1147e4885,https://biolit.fr/sorties/sortie-0e6d134b-0359-4cab-a34b-78a1147e4885/,Phil,,9/18/2016 0:00,12.0:55,13.0:15,48.095884000000,-4.468817000000,,Beuzec Cap Sizun - Finistère,52998,observation-0e6d134b-0359-4cab-a34b-78a1147e4885-3,https://biolit.fr/observations/observation-0e6d134b-0359-4cab-a34b-78a1147e4885-3/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/P1030572.JPG,,TRUE, +N1,60934,sortie-0e6d134b-0359-4cab-a34b-78a1147e4885,https://biolit.fr/sorties/sortie-0e6d134b-0359-4cab-a34b-78a1147e4885/,Phil,,9/18/2016 0:00,12.0:55,13.0:15,48.095884000000,-4.468817000000,,Beuzec Cap Sizun - Finistère,53000,observation-0e6d134b-0359-4cab-a34b-78a1147e4885-4,https://biolit.fr/observations/observation-0e6d134b-0359-4cab-a34b-78a1147e4885-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030585.JPG,,FALSE, +N1,60934,sortie-0e6d134b-0359-4cab-a34b-78a1147e4885,https://biolit.fr/sorties/sortie-0e6d134b-0359-4cab-a34b-78a1147e4885/,Phil,,9/18/2016 0:00,12.0:55,13.0:15,48.095884000000,-4.468817000000,,Beuzec Cap Sizun - Finistère,53002,observation-0e6d134b-0359-4cab-a34b-78a1147e4885-5,https://biolit.fr/observations/observation-0e6d134b-0359-4cab-a34b-78a1147e4885-5/,Bifurcaria bifurcata,Bifurcaire,,https://biolit.fr/wp-content/uploads/2023/07/P1030571.JPG,,TRUE, +N1,60935,sortie-9e70b99b-c8f2-4de5-a3aa-894b5a114641,https://biolit.fr/sorties/sortie-9e70b99b-c8f2-4de5-a3aa-894b5a114641/,Phil,,9/22/2016 0:00,17.0:55,18.0000000,47.862338000000,-4.074498000000,,Bénodet - Finistère,53004,observation-9e70b99b-c8f2-4de5-a3aa-894b5a114641,https://biolit.fr/observations/observation-9e70b99b-c8f2-4de5-a3aa-894b5a114641/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040053.JPG,,FALSE, +N1,60935,sortie-9e70b99b-c8f2-4de5-a3aa-894b5a114641,https://biolit.fr/sorties/sortie-9e70b99b-c8f2-4de5-a3aa-894b5a114641/,Phil,,9/22/2016 0:00,17.0:55,18.0000000,47.862338000000,-4.074498000000,,Bénodet - Finistère,53006,observation-9e70b99b-c8f2-4de5-a3aa-894b5a114641-2,https://biolit.fr/observations/observation-9e70b99b-c8f2-4de5-a3aa-894b5a114641-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040058.JPG,,FALSE, +N1,60935,sortie-9e70b99b-c8f2-4de5-a3aa-894b5a114641,https://biolit.fr/sorties/sortie-9e70b99b-c8f2-4de5-a3aa-894b5a114641/,Phil,,9/22/2016 0:00,17.0:55,18.0000000,47.862338000000,-4.074498000000,,Bénodet - Finistère,53008,observation-9e70b99b-c8f2-4de5-a3aa-894b5a114641-3,https://biolit.fr/observations/observation-9e70b99b-c8f2-4de5-a3aa-894b5a114641-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040060.JPG,,FALSE, +N1,60935,sortie-9e70b99b-c8f2-4de5-a3aa-894b5a114641,https://biolit.fr/sorties/sortie-9e70b99b-c8f2-4de5-a3aa-894b5a114641/,Phil,,9/22/2016 0:00,17.0:55,18.0000000,47.862338000000,-4.074498000000,,Bénodet - Finistère,53010,observation-9e70b99b-c8f2-4de5-a3aa-894b5a114641-4,https://biolit.fr/observations/observation-9e70b99b-c8f2-4de5-a3aa-894b5a114641-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040063.JPG,,FALSE, +N1,60935,sortie-9e70b99b-c8f2-4de5-a3aa-894b5a114641,https://biolit.fr/sorties/sortie-9e70b99b-c8f2-4de5-a3aa-894b5a114641/,Phil,,9/22/2016 0:00,17.0:55,18.0000000,47.862338000000,-4.074498000000,,Bénodet - Finistère,53012,observation-9e70b99b-c8f2-4de5-a3aa-894b5a114641-5,https://biolit.fr/observations/observation-9e70b99b-c8f2-4de5-a3aa-894b5a114641-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040064.JPG,,FALSE, +N1,60936,sortie-12c6177f-a7ae-4569-92be-ada59ee2e129,https://biolit.fr/sorties/sortie-12c6177f-a7ae-4569-92be-ada59ee2e129/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.804003000000,-4.381098000000,,Penmarc'h - Finistère,53014,observation-12c6177f-a7ae-4569-92be-ada59ee2e129,https://biolit.fr/observations/observation-12c6177f-a7ae-4569-92be-ada59ee2e129/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/P1030832.JPG,,TRUE, +N1,60936,sortie-12c6177f-a7ae-4569-92be-ada59ee2e129,https://biolit.fr/sorties/sortie-12c6177f-a7ae-4569-92be-ada59ee2e129/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.804003000000,-4.381098000000,,Penmarc'h - Finistère,53016,observation-12c6177f-a7ae-4569-92be-ada59ee2e129-2,https://biolit.fr/observations/observation-12c6177f-a7ae-4569-92be-ada59ee2e129-2/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/P1030823.JPG,,TRUE, +N1,60936,sortie-12c6177f-a7ae-4569-92be-ada59ee2e129,https://biolit.fr/sorties/sortie-12c6177f-a7ae-4569-92be-ada59ee2e129/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.804003000000,-4.381098000000,,Penmarc'h - Finistère,53018,observation-12c6177f-a7ae-4569-92be-ada59ee2e129-3,https://biolit.fr/observations/observation-12c6177f-a7ae-4569-92be-ada59ee2e129-3/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/P1030818.JPG,,TRUE, +N1,60936,sortie-12c6177f-a7ae-4569-92be-ada59ee2e129,https://biolit.fr/sorties/sortie-12c6177f-a7ae-4569-92be-ada59ee2e129/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.804003000000,-4.381098000000,,Penmarc'h - Finistère,53020,observation-12c6177f-a7ae-4569-92be-ada59ee2e129-4,https://biolit.fr/observations/observation-12c6177f-a7ae-4569-92be-ada59ee2e129-4/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/P1030837.JPG,,TRUE, +N1,60936,sortie-12c6177f-a7ae-4569-92be-ada59ee2e129,https://biolit.fr/sorties/sortie-12c6177f-a7ae-4569-92be-ada59ee2e129/,Phil,,9/20/2016 0:00,14.0000000,14.0000000,47.804003000000,-4.381098000000,,Penmarc'h - Finistère,53022,observation-12c6177f-a7ae-4569-92be-ada59ee2e129-5,https://biolit.fr/observations/observation-12c6177f-a7ae-4569-92be-ada59ee2e129-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030850.JPG,,FALSE, +N1,60937,sortie-1467a484-611f-40d7-b334-7094e4580fcd,https://biolit.fr/sorties/sortie-1467a484-611f-40d7-b334-7094e4580fcd/,Phil,,9/28/2016 0:00,12.0:15,12.0000000,48.012121000000,-4.540789000000,,Audierne - Finistère,53024,observation-1467a484-611f-40d7-b334-7094e4580fcd,https://biolit.fr/observations/observation-1467a484-611f-40d7-b334-7094e4580fcd/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1040188.JPG,,TRUE, +N1,60937,sortie-1467a484-611f-40d7-b334-7094e4580fcd,https://biolit.fr/sorties/sortie-1467a484-611f-40d7-b334-7094e4580fcd/,Phil,,9/28/2016 0:00,12.0:15,12.0000000,48.012121000000,-4.540789000000,,Audierne - Finistère,53026,observation-1467a484-611f-40d7-b334-7094e4580fcd-2,https://biolit.fr/observations/observation-1467a484-611f-40d7-b334-7094e4580fcd-2/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040190.JPG,,TRUE, +N1,60937,sortie-1467a484-611f-40d7-b334-7094e4580fcd,https://biolit.fr/sorties/sortie-1467a484-611f-40d7-b334-7094e4580fcd/,Phil,,9/28/2016 0:00,12.0:15,12.0000000,48.012121000000,-4.540789000000,,Audierne - Finistère,53028,observation-1467a484-611f-40d7-b334-7094e4580fcd-3,https://biolit.fr/observations/observation-1467a484-611f-40d7-b334-7094e4580fcd-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040185.JPG,,TRUE, +N1,60937,sortie-1467a484-611f-40d7-b334-7094e4580fcd,https://biolit.fr/sorties/sortie-1467a484-611f-40d7-b334-7094e4580fcd/,Phil,,9/28/2016 0:00,12.0:15,12.0000000,48.012121000000,-4.540789000000,,Audierne - Finistère,53030,observation-1467a484-611f-40d7-b334-7094e4580fcd-4,https://biolit.fr/observations/observation-1467a484-611f-40d7-b334-7094e4580fcd-4/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/P1040182.JPG,,TRUE, +N1,60937,sortie-1467a484-611f-40d7-b334-7094e4580fcd,https://biolit.fr/sorties/sortie-1467a484-611f-40d7-b334-7094e4580fcd/,Phil,,9/28/2016 0:00,12.0:15,12.0000000,48.012121000000,-4.540789000000,,Audierne - Finistère,53032,observation-1467a484-611f-40d7-b334-7094e4580fcd-5,https://biolit.fr/observations/observation-1467a484-611f-40d7-b334-7094e4580fcd-5/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040181.JPG,,TRUE, +N1,60937,sortie-1467a484-611f-40d7-b334-7094e4580fcd,https://biolit.fr/sorties/sortie-1467a484-611f-40d7-b334-7094e4580fcd/,Phil,,9/28/2016 0:00,12.0:15,12.0000000,48.012121000000,-4.540789000000,,Audierne - Finistère,53034,observation-1467a484-611f-40d7-b334-7094e4580fcd-6,https://biolit.fr/observations/observation-1467a484-611f-40d7-b334-7094e4580fcd-6/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1040179.JPG,,TRUE, +N1,60938,sortie-fa110f50-74a7-43f9-b03d-695af2e3bf19,https://biolit.fr/sorties/sortie-fa110f50-74a7-43f9-b03d-695af2e3bf19/,Phil,,9/24/2016 0:00,17.0:15,17.0000000,47.791935000000,-4.220769000000,,Lesconil -Finistère,53036,observation-fa110f50-74a7-43f9-b03d-695af2e3bf19,https://biolit.fr/observations/observation-fa110f50-74a7-43f9-b03d-695af2e3bf19/,Coryphoblennius galerita,Blennie coiffée,,https://biolit.fr/wp-content/uploads/2023/07/P1040125.JPG,,TRUE, +N1,60938,sortie-fa110f50-74a7-43f9-b03d-695af2e3bf19,https://biolit.fr/sorties/sortie-fa110f50-74a7-43f9-b03d-695af2e3bf19/,Phil,,9/24/2016 0:00,17.0:15,17.0000000,47.791935000000,-4.220769000000,,Lesconil -Finistère,53038,observation-fa110f50-74a7-43f9-b03d-695af2e3bf19-2,https://biolit.fr/observations/observation-fa110f50-74a7-43f9-b03d-695af2e3bf19-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040132.JPG,,FALSE, +N1,60938,sortie-fa110f50-74a7-43f9-b03d-695af2e3bf19,https://biolit.fr/sorties/sortie-fa110f50-74a7-43f9-b03d-695af2e3bf19/,Phil,,9/24/2016 0:00,17.0:15,17.0000000,47.791935000000,-4.220769000000,,Lesconil -Finistère,53040,observation-fa110f50-74a7-43f9-b03d-695af2e3bf19-3,https://biolit.fr/observations/observation-fa110f50-74a7-43f9-b03d-695af2e3bf19-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040134.JPG,,FALSE, +N1,60938,sortie-fa110f50-74a7-43f9-b03d-695af2e3bf19,https://biolit.fr/sorties/sortie-fa110f50-74a7-43f9-b03d-695af2e3bf19/,Phil,,9/24/2016 0:00,17.0:15,17.0000000,47.791935000000,-4.220769000000,,Lesconil -Finistère,53042,observation-fa110f50-74a7-43f9-b03d-695af2e3bf19-4,https://biolit.fr/observations/observation-fa110f50-74a7-43f9-b03d-695af2e3bf19-4/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1040130.JPG,,TRUE, +N1,60938,sortie-fa110f50-74a7-43f9-b03d-695af2e3bf19,https://biolit.fr/sorties/sortie-fa110f50-74a7-43f9-b03d-695af2e3bf19/,Phil,,9/24/2016 0:00,17.0:15,17.0000000,47.791935000000,-4.220769000000,,Lesconil -Finistère,53044,observation-fa110f50-74a7-43f9-b03d-695af2e3bf19-5,https://biolit.fr/observations/observation-fa110f50-74a7-43f9-b03d-695af2e3bf19-5/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1040150.JPG,,TRUE, +N1,60939,sortie-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4,https://biolit.fr/sorties/sortie-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4/,Phil,,9/23/2016 0:00,14.0000000,14.0000000,47.888044000000,-3.972905000000,,Fouesnant - Finistère,53046,observation-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4,https://biolit.fr/observations/observation-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4/,Amphipholis squamata,Ophiure écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/20160923_143952.jpg,,TRUE, +N1,60939,sortie-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4,https://biolit.fr/sorties/sortie-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4/,Phil,,9/23/2016 0:00,14.0000000,14.0000000,47.888044000000,-3.972905000000,,Fouesnant - Finistère,53048,observation-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4-2,https://biolit.fr/observations/observation-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4-2/,Amphipholis squamata,Ophiure écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/20160923_143859.jpg,,TRUE, +N1,60939,sortie-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4,https://biolit.fr/sorties/sortie-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4/,Phil,,9/23/2016 0:00,14.0000000,14.0000000,47.888044000000,-3.972905000000,,Fouesnant - Finistère,53050,observation-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4-3,https://biolit.fr/observations/observation-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4-3/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/20160923_143801.jpg,,TRUE, +N1,60939,sortie-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4,https://biolit.fr/sorties/sortie-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4/,Phil,,9/23/2016 0:00,14.0000000,14.0000000,47.888044000000,-3.972905000000,,Fouesnant - Finistère,53052,observation-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4-4,https://biolit.fr/observations/observation-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160923_143515.jpg,,TRUE, +N1,60939,sortie-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4,https://biolit.fr/sorties/sortie-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4/,Phil,,9/23/2016 0:00,14.0000000,14.0000000,47.888044000000,-3.972905000000,,Fouesnant - Finistère,53054,observation-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4-5,https://biolit.fr/observations/observation-4a7cef83-8cc1-4c68-b237-dcaeb7df74b4-5/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/20160923_143301.jpg,,TRUE, +N1,60940,sortie-add73e70-595b-4491-a7b6-536ce575a4c9,https://biolit.fr/sorties/sortie-add73e70-595b-4491-a7b6-536ce575a4c9/,Phil,,9/22/2016 0:00,17.0000000,17.0000000,47.862503000000,-4.071194000000,,Bénodet - Finistère,53056,observation-add73e70-595b-4491-a7b6-536ce575a4c9,https://biolit.fr/observations/observation-add73e70-595b-4491-a7b6-536ce575a4c9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040031.JPG,,FALSE, +N1,60940,sortie-add73e70-595b-4491-a7b6-536ce575a4c9,https://biolit.fr/sorties/sortie-add73e70-595b-4491-a7b6-536ce575a4c9/,Phil,,9/22/2016 0:00,17.0000000,17.0000000,47.862503000000,-4.071194000000,,Bénodet - Finistère,53058,observation-add73e70-595b-4491-a7b6-536ce575a4c9-2,https://biolit.fr/observations/observation-add73e70-595b-4491-a7b6-536ce575a4c9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040027.JPG,,FALSE, +N1,60940,sortie-add73e70-595b-4491-a7b6-536ce575a4c9,https://biolit.fr/sorties/sortie-add73e70-595b-4491-a7b6-536ce575a4c9/,Phil,,9/22/2016 0:00,17.0000000,17.0000000,47.862503000000,-4.071194000000,,Bénodet - Finistère,53060,observation-add73e70-595b-4491-a7b6-536ce575a4c9-3,https://biolit.fr/observations/observation-add73e70-595b-4491-a7b6-536ce575a4c9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040030.JPG,,FALSE, +N1,60941,sortie-909ba761-4916-4c7c-bb28-23a8f53fa922,https://biolit.fr/sorties/sortie-909ba761-4916-4c7c-bb28-23a8f53fa922/,Phil,,9/23/2016 0:00,14.0:15,14.0000000,47.888355000000,-3.972725000000,,Fouesnant - Finistère,53062,observation-909ba761-4916-4c7c-bb28-23a8f53fa922,https://biolit.fr/observations/observation-909ba761-4916-4c7c-bb28-23a8f53fa922/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160923_141745.jpg,,FALSE, +N1,60941,sortie-909ba761-4916-4c7c-bb28-23a8f53fa922,https://biolit.fr/sorties/sortie-909ba761-4916-4c7c-bb28-23a8f53fa922/,Phil,,9/23/2016 0:00,14.0:15,14.0000000,47.888355000000,-3.972725000000,,Fouesnant - Finistère,53064,observation-909ba761-4916-4c7c-bb28-23a8f53fa922-2,https://biolit.fr/observations/observation-909ba761-4916-4c7c-bb28-23a8f53fa922-2/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/20160923_143029.jpg,,TRUE, +N1,60941,sortie-909ba761-4916-4c7c-bb28-23a8f53fa922,https://biolit.fr/sorties/sortie-909ba761-4916-4c7c-bb28-23a8f53fa922/,Phil,,9/23/2016 0:00,14.0:15,14.0000000,47.888355000000,-3.972725000000,,Fouesnant - Finistère,53066,observation-909ba761-4916-4c7c-bb28-23a8f53fa922-3,https://biolit.fr/observations/observation-909ba761-4916-4c7c-bb28-23a8f53fa922-3/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20160923_142757.jpg,,TRUE, +N1,60941,sortie-909ba761-4916-4c7c-bb28-23a8f53fa922,https://biolit.fr/sorties/sortie-909ba761-4916-4c7c-bb28-23a8f53fa922/,Phil,,9/23/2016 0:00,14.0:15,14.0000000,47.888355000000,-3.972725000000,,Fouesnant - Finistère,53068,observation-909ba761-4916-4c7c-bb28-23a8f53fa922-4,https://biolit.fr/observations/observation-909ba761-4916-4c7c-bb28-23a8f53fa922-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160923_142627.jpg,,FALSE, +N1,60942,sortie-9e233c68-b08e-41f0-a608-9af0540193d0,https://biolit.fr/sorties/sortie-9e233c68-b08e-41f0-a608-9af0540193d0/,Phil,,9/20/2016 0:00,13.0:55,14.0000000,47.803426000000,-4.381751000000,,Penmarc'h - Finistère,53070,observation-9e233c68-b08e-41f0-a608-9af0540193d0,https://biolit.fr/observations/observation-9e233c68-b08e-41f0-a608-9af0540193d0/,Lepadogaster purpurea,Porte-écuelle de Cornouailles,,https://biolit.fr/wp-content/uploads/2023/07/P1030813.JPG,,TRUE, +N1,60942,sortie-9e233c68-b08e-41f0-a608-9af0540193d0,https://biolit.fr/sorties/sortie-9e233c68-b08e-41f0-a608-9af0540193d0/,Phil,,9/20/2016 0:00,13.0:55,14.0000000,47.803426000000,-4.381751000000,,Penmarc'h - Finistère,53072,observation-9e233c68-b08e-41f0-a608-9af0540193d0-2,https://biolit.fr/observations/observation-9e233c68-b08e-41f0-a608-9af0540193d0-2/,Lepadogaster purpurea,Porte-écuelle de Cornouailles,,https://biolit.fr/wp-content/uploads/2023/07/P1030800.JPG,,TRUE, +N1,60942,sortie-9e233c68-b08e-41f0-a608-9af0540193d0,https://biolit.fr/sorties/sortie-9e233c68-b08e-41f0-a608-9af0540193d0/,Phil,,9/20/2016 0:00,13.0:55,14.0000000,47.803426000000,-4.381751000000,,Penmarc'h - Finistère,53074,observation-9e233c68-b08e-41f0-a608-9af0540193d0-3,https://biolit.fr/observations/observation-9e233c68-b08e-41f0-a608-9af0540193d0-3/,Lepadogaster purpurea,Porte-écuelle de Cornouailles,,https://biolit.fr/wp-content/uploads/2023/07/P1030803.JPG,,TRUE, +N1,60942,sortie-9e233c68-b08e-41f0-a608-9af0540193d0,https://biolit.fr/sorties/sortie-9e233c68-b08e-41f0-a608-9af0540193d0/,Phil,,9/20/2016 0:00,13.0:55,14.0000000,47.803426000000,-4.381751000000,,Penmarc'h - Finistère,53076,observation-9e233c68-b08e-41f0-a608-9af0540193d0-4,https://biolit.fr/observations/observation-9e233c68-b08e-41f0-a608-9af0540193d0-4/,Lepadogaster purpurea,Porte-écuelle de Cornouailles,,https://biolit.fr/wp-content/uploads/2023/07/P1030805.JPG,,TRUE, +N1,60943,sortie-4129749e-ddf9-402c-bbe2-3d1069e03a95,https://biolit.fr/sorties/sortie-4129749e-ddf9-402c-bbe2-3d1069e03a95/,Phil,,9/20/2016 0:00,14.0:55,15.0000000,47.818978000000,-4.380596000000,,Saint-Guénolé - Finistère,53078,observation-4129749e-ddf9-402c-bbe2-3d1069e03a95,https://biolit.fr/observations/observation-4129749e-ddf9-402c-bbe2-3d1069e03a95/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030982.JPG,,FALSE, +N1,60944,sortie-e20f4922-be2f-47ee-b20a-422e30bc0943,https://biolit.fr/sorties/sortie-e20f4922-be2f-47ee-b20a-422e30bc0943/,Phil,,9/18/2016 0:00,12.0000000,12.0000000,48.095876000000,-4.467710000000,,Beuzec Cap Sizun - Finistère,53080,observation-e20f4922-be2f-47ee-b20a-422e30bc0943,https://biolit.fr/observations/observation-e20f4922-be2f-47ee-b20a-422e30bc0943/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030555.JPG,,FALSE, +N1,60944,sortie-e20f4922-be2f-47ee-b20a-422e30bc0943,https://biolit.fr/sorties/sortie-e20f4922-be2f-47ee-b20a-422e30bc0943/,Phil,,9/18/2016 0:00,12.0000000,12.0000000,48.095876000000,-4.467710000000,,Beuzec Cap Sizun - Finistère,53082,observation-e20f4922-be2f-47ee-b20a-422e30bc0943-2,https://biolit.fr/observations/observation-e20f4922-be2f-47ee-b20a-422e30bc0943-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030562.JPG,,FALSE, +N1,60944,sortie-e20f4922-be2f-47ee-b20a-422e30bc0943,https://biolit.fr/sorties/sortie-e20f4922-be2f-47ee-b20a-422e30bc0943/,Phil,,9/18/2016 0:00,12.0000000,12.0000000,48.095876000000,-4.467710000000,,Beuzec Cap Sizun - Finistère,53084,observation-e20f4922-be2f-47ee-b20a-422e30bc0943-3,https://biolit.fr/observations/observation-e20f4922-be2f-47ee-b20a-422e30bc0943-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1030550.JPG,,TRUE, +N1,60944,sortie-e20f4922-be2f-47ee-b20a-422e30bc0943,https://biolit.fr/sorties/sortie-e20f4922-be2f-47ee-b20a-422e30bc0943/,Phil,,9/18/2016 0:00,12.0000000,12.0000000,48.095876000000,-4.467710000000,,Beuzec Cap Sizun - Finistère,53086,observation-e20f4922-be2f-47ee-b20a-422e30bc0943-4,https://biolit.fr/observations/observation-e20f4922-be2f-47ee-b20a-422e30bc0943-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1030565.JPG,,TRUE, +N1,60944,sortie-e20f4922-be2f-47ee-b20a-422e30bc0943,https://biolit.fr/sorties/sortie-e20f4922-be2f-47ee-b20a-422e30bc0943/,Phil,,9/18/2016 0:00,12.0000000,12.0000000,48.095876000000,-4.467710000000,,Beuzec Cap Sizun - Finistère,53088,observation-e20f4922-be2f-47ee-b20a-422e30bc0943-5,https://biolit.fr/observations/observation-e20f4922-be2f-47ee-b20a-422e30bc0943-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030566.JPG,,FALSE, +N1,60945,sortie-b70224ef-d6d4-4296-a70a-73f7df99ad12,https://biolit.fr/sorties/sortie-b70224ef-d6d4-4296-a70a-73f7df99ad12/,Phil,,9/20/2016 0:00,14.0000000,14.0:55,47.802774000000,-4.374599000000,,Penmarc'h - Finistère,53090,observation-b70224ef-d6d4-4296-a70a-73f7df99ad12,https://biolit.fr/observations/observation-b70224ef-d6d4-4296-a70a-73f7df99ad12/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030980.JPG,,FALSE, +N1,60948,sortie-3e0568f4-aa2c-49f2-acee-617dae7c04dd,https://biolit.fr/sorties/sortie-3e0568f4-aa2c-49f2-acee-617dae7c04dd/,Phil,,9/22/2016 0:00,17.0000000,17.0:55,47.863196000000,-4.07415900000,,Bénodet - Finistère,53096,observation-3e0568f4-aa2c-49f2-acee-617dae7c04dd,https://biolit.fr/observations/observation-3e0568f4-aa2c-49f2-acee-617dae7c04dd/,Mya arenaria,Mye des sables,,https://biolit.fr/wp-content/uploads/2023/07/P1040050.JPG,,TRUE, +N1,60948,sortie-3e0568f4-aa2c-49f2-acee-617dae7c04dd,https://biolit.fr/sorties/sortie-3e0568f4-aa2c-49f2-acee-617dae7c04dd/,Phil,,9/22/2016 0:00,17.0000000,17.0:55,47.863196000000,-4.07415900000,,Bénodet - Finistère,53098,observation-3e0568f4-aa2c-49f2-acee-617dae7c04dd-2,https://biolit.fr/observations/observation-3e0568f4-aa2c-49f2-acee-617dae7c04dd-2/,Mya arenaria,Mye des sables,,https://biolit.fr/wp-content/uploads/2023/07/P1040046.JPG,,TRUE, +N1,60949,sortie-ed163405-486d-4356-b73b-bab28debde6b,https://biolit.fr/sorties/sortie-ed163405-486d-4356-b73b-bab28debde6b/,ecole publique CAVALIERE,,9/22/2016 0:00,9.0000000,12.0000000,43.130899000000,6.326949000000,,Cavalière LE LAVANDOU,53100,observation-ed163405-486d-4356-b73b-bab28debde6b,https://biolit.fr/observations/observation-ed163405-486d-4356-b73b-bab28debde6b/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060478-scaled.jpg,,FALSE, +N1,60949,sortie-ed163405-486d-4356-b73b-bab28debde6b,https://biolit.fr/sorties/sortie-ed163405-486d-4356-b73b-bab28debde6b/,ecole publique CAVALIERE,,9/22/2016 0:00,9.0000000,12.0000000,43.130899000000,6.326949000000,,Cavalière LE LAVANDOU,53102,observation-ed163405-486d-4356-b73b-bab28debde6b-2,https://biolit.fr/observations/observation-ed163405-486d-4356-b73b-bab28debde6b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P9180034-scaled.jpg,,FALSE, +N1,60949,sortie-ed163405-486d-4356-b73b-bab28debde6b,https://biolit.fr/sorties/sortie-ed163405-486d-4356-b73b-bab28debde6b/,ecole publique CAVALIERE,,9/22/2016 0:00,9.0000000,12.0000000,43.130899000000,6.326949000000,,Cavalière LE LAVANDOU,53104,observation-ed163405-486d-4356-b73b-bab28debde6b-3,https://biolit.fr/observations/observation-ed163405-486d-4356-b73b-bab28debde6b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P9180037-scaled.jpg,,FALSE, +N1,60949,sortie-ed163405-486d-4356-b73b-bab28debde6b,https://biolit.fr/sorties/sortie-ed163405-486d-4356-b73b-bab28debde6b/,ecole publique CAVALIERE,,9/22/2016 0:00,9.0000000,12.0000000,43.130899000000,6.326949000000,,Cavalière LE LAVANDOU,53106,observation-ed163405-486d-4356-b73b-bab28debde6b-4,https://biolit.fr/observations/observation-ed163405-486d-4356-b73b-bab28debde6b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P9180039-scaled.jpg,,FALSE, +N1,60949,sortie-ed163405-486d-4356-b73b-bab28debde6b,https://biolit.fr/sorties/sortie-ed163405-486d-4356-b73b-bab28debde6b/,ecole publique CAVALIERE,,9/22/2016 0:00,9.0000000,12.0000000,43.130899000000,6.326949000000,,Cavalière LE LAVANDOU,53108,observation-ed163405-486d-4356-b73b-bab28debde6b-5,https://biolit.fr/observations/observation-ed163405-486d-4356-b73b-bab28debde6b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060488-scaled.jpg,,FALSE, +N1,60950,sortie-4350787d-abd1-4b0d-a021-67ba54290910,https://biolit.fr/sorties/sortie-4350787d-abd1-4b0d-a021-67ba54290910/,Phil,,9/20/2016 0:00,13.0:45,13.0000000,47.803341000000,-4.381841000000,,Penmarc'h - Finistère,53110,observation-4350787d-abd1-4b0d-a021-67ba54290910,https://biolit.fr/observations/observation-4350787d-abd1-4b0d-a021-67ba54290910/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/P1030793.JPG,,TRUE, +N1,60950,sortie-4350787d-abd1-4b0d-a021-67ba54290910,https://biolit.fr/sorties/sortie-4350787d-abd1-4b0d-a021-67ba54290910/,Phil,,9/20/2016 0:00,13.0:45,13.0000000,47.803341000000,-4.381841000000,,Penmarc'h - Finistère,53112,observation-4350787d-abd1-4b0d-a021-67ba54290910-2,https://biolit.fr/observations/observation-4350787d-abd1-4b0d-a021-67ba54290910-2/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/P1030781.JPG,,TRUE, +N1,60950,sortie-4350787d-abd1-4b0d-a021-67ba54290910,https://biolit.fr/sorties/sortie-4350787d-abd1-4b0d-a021-67ba54290910/,Phil,,9/20/2016 0:00,13.0:45,13.0000000,47.803341000000,-4.381841000000,,Penmarc'h - Finistère,53114,observation-4350787d-abd1-4b0d-a021-67ba54290910-3,https://biolit.fr/observations/observation-4350787d-abd1-4b0d-a021-67ba54290910-3/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/P1030779.JPG,,TRUE, +N1,60951,sortie-e5481712-9747-4d7d-b387-be1e12038232,https://biolit.fr/sorties/sortie-e5481712-9747-4d7d-b387-be1e12038232/,Phil,,9/24/2016 0:00,17.0000000,17.0000000,47.791891000000,-4.219462000000,,Lesconil -Finistère,53116,observation-e5481712-9747-4d7d-b387-be1e12038232,https://biolit.fr/observations/observation-e5481712-9747-4d7d-b387-be1e12038232/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/P1040117.JPG,,TRUE, +N1,60951,sortie-e5481712-9747-4d7d-b387-be1e12038232,https://biolit.fr/sorties/sortie-e5481712-9747-4d7d-b387-be1e12038232/,Phil,,9/24/2016 0:00,17.0000000,17.0000000,47.791891000000,-4.219462000000,,Lesconil -Finistère,53118,observation-e5481712-9747-4d7d-b387-be1e12038232-2,https://biolit.fr/observations/observation-e5481712-9747-4d7d-b387-be1e12038232-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040112.JPG,,FALSE, +N1,60951,sortie-e5481712-9747-4d7d-b387-be1e12038232,https://biolit.fr/sorties/sortie-e5481712-9747-4d7d-b387-be1e12038232/,Phil,,9/24/2016 0:00,17.0000000,17.0000000,47.791891000000,-4.219462000000,,Lesconil -Finistère,53120,observation-e5481712-9747-4d7d-b387-be1e12038232-3,https://biolit.fr/observations/observation-e5481712-9747-4d7d-b387-be1e12038232-3/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/P1040111.JPG,,TRUE, +N1,60952,sortie-e19e7a81-ccf4-44ef-8440-b2675a146137,https://biolit.fr/sorties/sortie-e19e7a81-ccf4-44ef-8440-b2675a146137/,Phil,,9/20/2016 0:00,13.0000000,13.0:45,47.802579000000,-4.382716000000,,Penmarc'h - Finistère,53122,observation-e19e7a81-ccf4-44ef-8440-b2675a146137,https://biolit.fr/observations/observation-e19e7a81-ccf4-44ef-8440-b2675a146137/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/P1030754-scaled.jpg,,TRUE, +N1,60952,sortie-e19e7a81-ccf4-44ef-8440-b2675a146137,https://biolit.fr/sorties/sortie-e19e7a81-ccf4-44ef-8440-b2675a146137/,Phil,,9/20/2016 0:00,13.0000000,13.0:45,47.802579000000,-4.382716000000,,Penmarc'h - Finistère,53124,observation-e19e7a81-ccf4-44ef-8440-b2675a146137-2,https://biolit.fr/observations/observation-e19e7a81-ccf4-44ef-8440-b2675a146137-2/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/P1030750.JPG,,TRUE, +N1,60952,sortie-e19e7a81-ccf4-44ef-8440-b2675a146137,https://biolit.fr/sorties/sortie-e19e7a81-ccf4-44ef-8440-b2675a146137/,Phil,,9/20/2016 0:00,13.0000000,13.0:45,47.802579000000,-4.382716000000,,Penmarc'h - Finistère,53126,observation-e19e7a81-ccf4-44ef-8440-b2675a146137-3,https://biolit.fr/observations/observation-e19e7a81-ccf4-44ef-8440-b2675a146137-3/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/P1030764.JPG,,TRUE, +N1,60952,sortie-e19e7a81-ccf4-44ef-8440-b2675a146137,https://biolit.fr/sorties/sortie-e19e7a81-ccf4-44ef-8440-b2675a146137/,Phil,,9/20/2016 0:00,13.0000000,13.0:45,47.802579000000,-4.382716000000,,Penmarc'h - Finistère,53128,observation-e19e7a81-ccf4-44ef-8440-b2675a146137-4,https://biolit.fr/observations/observation-e19e7a81-ccf4-44ef-8440-b2675a146137-4/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/P1030738.JPG,,TRUE, +N1,60952,sortie-e19e7a81-ccf4-44ef-8440-b2675a146137,https://biolit.fr/sorties/sortie-e19e7a81-ccf4-44ef-8440-b2675a146137/,Phil,,9/20/2016 0:00,13.0000000,13.0:45,47.802579000000,-4.382716000000,,Penmarc'h - Finistère,53130,observation-e19e7a81-ccf4-44ef-8440-b2675a146137-5,https://biolit.fr/observations/observation-e19e7a81-ccf4-44ef-8440-b2675a146137-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1030742.JPG,,TRUE, +N1,60953,sortie-2e7e2e00-7795-45ce-8417-dd2ab49a3bab,https://biolit.fr/sorties/sortie-2e7e2e00-7795-45ce-8417-dd2ab49a3bab/,Phil,,9/23/2016 0:00,14.0000000,14.0:15,47.888228000000,-3.972879000000,,Fouesnant - Finistère,53132,observation-2e7e2e00-7795-45ce-8417-dd2ab49a3bab,https://biolit.fr/observations/observation-2e7e2e00-7795-45ce-8417-dd2ab49a3bab/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160923_142203.jpg,,FALSE, +N1,60953,sortie-2e7e2e00-7795-45ce-8417-dd2ab49a3bab,https://biolit.fr/sorties/sortie-2e7e2e00-7795-45ce-8417-dd2ab49a3bab/,Phil,,9/23/2016 0:00,14.0000000,14.0:15,47.888228000000,-3.972879000000,,Fouesnant - Finistère,53134,observation-2e7e2e00-7795-45ce-8417-dd2ab49a3bab-2,https://biolit.fr/observations/observation-2e7e2e00-7795-45ce-8417-dd2ab49a3bab-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160923_141549.jpg,,FALSE, +N1,60953,sortie-2e7e2e00-7795-45ce-8417-dd2ab49a3bab,https://biolit.fr/sorties/sortie-2e7e2e00-7795-45ce-8417-dd2ab49a3bab/,Phil,,9/23/2016 0:00,14.0000000,14.0:15,47.888228000000,-3.972879000000,,Fouesnant - Finistère,53136,observation-2e7e2e00-7795-45ce-8417-dd2ab49a3bab-3,https://biolit.fr/observations/observation-2e7e2e00-7795-45ce-8417-dd2ab49a3bab-3/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/20160923_141420.jpg,,TRUE, +N1,60953,sortie-2e7e2e00-7795-45ce-8417-dd2ab49a3bab,https://biolit.fr/sorties/sortie-2e7e2e00-7795-45ce-8417-dd2ab49a3bab/,Phil,,9/23/2016 0:00,14.0000000,14.0:15,47.888228000000,-3.972879000000,,Fouesnant - Finistère,53138,observation-2e7e2e00-7795-45ce-8417-dd2ab49a3bab-4,https://biolit.fr/observations/observation-2e7e2e00-7795-45ce-8417-dd2ab49a3bab-4/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/20160923_141111.jpg,,TRUE, +N1,60954,sortie-943c55be-7aec-47b7-8e23-61ef72fb529d,https://biolit.fr/sorties/sortie-943c55be-7aec-47b7-8e23-61ef72fb529d/,Phil,,9/20/2016 0:00,13.0:35,13.0:45,47.804407000000,-4.381536000000,,Penmarc'h - Finistère,53140,observation-943c55be-7aec-47b7-8e23-61ef72fb529d,https://biolit.fr/observations/observation-943c55be-7aec-47b7-8e23-61ef72fb529d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030725.JPG,,FALSE, +N1,60954,sortie-943c55be-7aec-47b7-8e23-61ef72fb529d,https://biolit.fr/sorties/sortie-943c55be-7aec-47b7-8e23-61ef72fb529d/,Phil,,9/20/2016 0:00,13.0:35,13.0:45,47.804407000000,-4.381536000000,,Penmarc'h - Finistère,53142,observation-943c55be-7aec-47b7-8e23-61ef72fb529d-2,https://biolit.fr/observations/observation-943c55be-7aec-47b7-8e23-61ef72fb529d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030722.JPG,,FALSE, +N1,60954,sortie-943c55be-7aec-47b7-8e23-61ef72fb529d,https://biolit.fr/sorties/sortie-943c55be-7aec-47b7-8e23-61ef72fb529d/,Phil,,9/20/2016 0:00,13.0:35,13.0:45,47.804407000000,-4.381536000000,,Penmarc'h - Finistère,53144,observation-943c55be-7aec-47b7-8e23-61ef72fb529d-3,https://biolit.fr/observations/observation-943c55be-7aec-47b7-8e23-61ef72fb529d-3/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1030731.JPG,,TRUE, +N1,60954,sortie-943c55be-7aec-47b7-8e23-61ef72fb529d,https://biolit.fr/sorties/sortie-943c55be-7aec-47b7-8e23-61ef72fb529d/,Phil,,9/20/2016 0:00,13.0:35,13.0:45,47.804407000000,-4.381536000000,,Penmarc'h - Finistère,53146,observation-943c55be-7aec-47b7-8e23-61ef72fb529d-4,https://biolit.fr/observations/observation-943c55be-7aec-47b7-8e23-61ef72fb529d-4/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1030770.JPG,,TRUE, +N1,60954,sortie-943c55be-7aec-47b7-8e23-61ef72fb529d,https://biolit.fr/sorties/sortie-943c55be-7aec-47b7-8e23-61ef72fb529d/,Phil,,9/20/2016 0:00,13.0:35,13.0:45,47.804407000000,-4.381536000000,,Penmarc'h - Finistère,53148,observation-943c55be-7aec-47b7-8e23-61ef72fb529d-5,https://biolit.fr/observations/observation-943c55be-7aec-47b7-8e23-61ef72fb529d-5/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1030733.JPG,,TRUE, +N1,60955,sortie-5fd73152-c94d-4194-845d-9dd30d03578c,https://biolit.fr/sorties/sortie-5fd73152-c94d-4194-845d-9dd30d03578c/,Phil,,9/22/2016 0:00,17.0000000,17.0:35,47.862963000000,-4.072084000000,,Bénodet - Finistère,53150,observation-5fd73152-c94d-4194-845d-9dd30d03578c,https://biolit.fr/observations/observation-5fd73152-c94d-4194-845d-9dd30d03578c/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040014.JPG,,FALSE, +N1,60955,sortie-5fd73152-c94d-4194-845d-9dd30d03578c,https://biolit.fr/sorties/sortie-5fd73152-c94d-4194-845d-9dd30d03578c/,Phil,,9/22/2016 0:00,17.0000000,17.0:35,47.862963000000,-4.072084000000,,Bénodet - Finistère,53152,observation-5fd73152-c94d-4194-845d-9dd30d03578c-2,https://biolit.fr/observations/observation-5fd73152-c94d-4194-845d-9dd30d03578c-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1040020.JPG,,TRUE, +N1,60955,sortie-5fd73152-c94d-4194-845d-9dd30d03578c,https://biolit.fr/sorties/sortie-5fd73152-c94d-4194-845d-9dd30d03578c/,Phil,,9/22/2016 0:00,17.0000000,17.0:35,47.862963000000,-4.072084000000,,Bénodet - Finistère,53154,observation-5fd73152-c94d-4194-845d-9dd30d03578c-3,https://biolit.fr/observations/observation-5fd73152-c94d-4194-845d-9dd30d03578c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040025.JPG,,FALSE, +N1,60956,sortie-a293decc-b281-4d2a-a75d-6e73c81a7369,https://biolit.fr/sorties/sortie-a293decc-b281-4d2a-a75d-6e73c81a7369/,Phil,,9/23/2016 0:00,15.0:35,15.0000000,47.89579800000,-3.969052000000,,La Forêt-Fouesnant - Finistère,53156,observation-a293decc-b281-4d2a-a75d-6e73c81a7369,https://biolit.fr/observations/observation-a293decc-b281-4d2a-a75d-6e73c81a7369/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160923_154042.jpg,,FALSE, +N1,60956,sortie-a293decc-b281-4d2a-a75d-6e73c81a7369,https://biolit.fr/sorties/sortie-a293decc-b281-4d2a-a75d-6e73c81a7369/,Phil,,9/23/2016 0:00,15.0:35,15.0000000,47.89579800000,-3.969052000000,,La Forêt-Fouesnant - Finistère,53158,observation-a293decc-b281-4d2a-a75d-6e73c81a7369-2,https://biolit.fr/observations/observation-a293decc-b281-4d2a-a75d-6e73c81a7369-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160923_153732.jpg,,FALSE, +N1,60957,sortie-304b6699-fa22-442f-aceb-732791e8d468,https://biolit.fr/sorties/sortie-304b6699-fa22-442f-aceb-732791e8d468/,Phil,,9/23/2016 0:00,14.0000000,14.0000000,47.889101000000,-3.972720000000,,Fouesnant - Finistère,53160,observation-304b6699-fa22-442f-aceb-732791e8d468,https://biolit.fr/observations/observation-304b6699-fa22-442f-aceb-732791e8d468/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160923_140633.jpg,,FALSE, +N1,60957,sortie-304b6699-fa22-442f-aceb-732791e8d468,https://biolit.fr/sorties/sortie-304b6699-fa22-442f-aceb-732791e8d468/,Phil,,9/23/2016 0:00,14.0000000,14.0000000,47.889101000000,-3.972720000000,,Fouesnant - Finistère,53162,observation-304b6699-fa22-442f-aceb-732791e8d468-2,https://biolit.fr/observations/observation-304b6699-fa22-442f-aceb-732791e8d468-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160923_140942.jpg,,FALSE, +N1,60957,sortie-304b6699-fa22-442f-aceb-732791e8d468,https://biolit.fr/sorties/sortie-304b6699-fa22-442f-aceb-732791e8d468/,Phil,,9/23/2016 0:00,14.0000000,14.0000000,47.889101000000,-3.972720000000,,Fouesnant - Finistère,53164,observation-304b6699-fa22-442f-aceb-732791e8d468-3,https://biolit.fr/observations/observation-304b6699-fa22-442f-aceb-732791e8d468-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160923_140837.jpg,,FALSE, +N1,60958,sortie-1d5031b4-4073-4178-bbc0-4b1f4b120b29,https://biolit.fr/sorties/sortie-1d5031b4-4073-4178-bbc0-4b1f4b120b29/,Phil,,9/18/2016 0:00,12.0000000,12.0000000,48.099765000000,-4.46650000000,,Beuzec Cap Sizun - Finistère,53166,observation-1d5031b4-4073-4178-bbc0-4b1f4b120b29,https://biolit.fr/observations/observation-1d5031b4-4073-4178-bbc0-4b1f4b120b29/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/P1030501-scaled.jpg,,TRUE, +N1,60958,sortie-1d5031b4-4073-4178-bbc0-4b1f4b120b29,https://biolit.fr/sorties/sortie-1d5031b4-4073-4178-bbc0-4b1f4b120b29/,Phil,,9/18/2016 0:00,12.0000000,12.0000000,48.099765000000,-4.46650000000,,Beuzec Cap Sizun - Finistère,53168,observation-1d5031b4-4073-4178-bbc0-4b1f4b120b29-2,https://biolit.fr/observations/observation-1d5031b4-4073-4178-bbc0-4b1f4b120b29-2/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/P1030505-scaled.jpg,,TRUE, +N1,60958,sortie-1d5031b4-4073-4178-bbc0-4b1f4b120b29,https://biolit.fr/sorties/sortie-1d5031b4-4073-4178-bbc0-4b1f4b120b29/,Phil,,9/18/2016 0:00,12.0000000,12.0000000,48.099765000000,-4.46650000000,,Beuzec Cap Sizun - Finistère,53170,observation-1d5031b4-4073-4178-bbc0-4b1f4b120b29-3,https://biolit.fr/observations/observation-1d5031b4-4073-4178-bbc0-4b1f4b120b29-3/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/P1030544.JPG,,TRUE, +N1,60959,sortie-748156d6-16e2-47c4-9242-d46fa1ab6ff9,https://biolit.fr/sorties/sortie-748156d6-16e2-47c4-9242-d46fa1ab6ff9/,Phil,,9/22/2016 0:00,17.0:25,17.0000000,47.863716000000,-4.075372000000,,Bénodet - Finistère,53172,observation-748156d6-16e2-47c4-9242-d46fa1ab6ff9,https://biolit.fr/observations/observation-748156d6-16e2-47c4-9242-d46fa1ab6ff9/,Arenicola marina,Arénicole,,https://biolit.fr/wp-content/uploads/2023/07/P1040004.JPG,,TRUE, +N1,60959,sortie-748156d6-16e2-47c4-9242-d46fa1ab6ff9,https://biolit.fr/sorties/sortie-748156d6-16e2-47c4-9242-d46fa1ab6ff9/,Phil,,9/22/2016 0:00,17.0:25,17.0000000,47.863716000000,-4.075372000000,,Bénodet - Finistère,53174,observation-748156d6-16e2-47c4-9242-d46fa1ab6ff9-2,https://biolit.fr/observations/observation-748156d6-16e2-47c4-9242-d46fa1ab6ff9-2/,Arenicola marina,Arénicole,,https://biolit.fr/wp-content/uploads/2023/07/P1040008.JPG,,TRUE, +N1,60959,sortie-748156d6-16e2-47c4-9242-d46fa1ab6ff9,https://biolit.fr/sorties/sortie-748156d6-16e2-47c4-9242-d46fa1ab6ff9/,Phil,,9/22/2016 0:00,17.0:25,17.0000000,47.863716000000,-4.075372000000,,Bénodet - Finistère,53176,observation-748156d6-16e2-47c4-9242-d46fa1ab6ff9-3,https://biolit.fr/observations/observation-748156d6-16e2-47c4-9242-d46fa1ab6ff9-3/,Arenicola marina,Arénicole,,https://biolit.fr/wp-content/uploads/2023/07/P1040011.JPG,,TRUE, +N1,60960,sortie-a7edc2f8-1380-4656-8c91-c1b39b113dec,https://biolit.fr/sorties/sortie-a7edc2f8-1380-4656-8c91-c1b39b113dec/,Phil,,9/20/2016 0:00,13.0000000,13.0000000,47.803705000000,-4.381527000000,,Penmarc'h - Finistère,53178,observation-a7edc2f8-1380-4656-8c91-c1b39b113dec,https://biolit.fr/observations/observation-a7edc2f8-1380-4656-8c91-c1b39b113dec/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1030693.JPG,,TRUE, +N1,60960,sortie-a7edc2f8-1380-4656-8c91-c1b39b113dec,https://biolit.fr/sorties/sortie-a7edc2f8-1380-4656-8c91-c1b39b113dec/,Phil,,9/20/2016 0:00,13.0000000,13.0000000,47.803705000000,-4.381527000000,,Penmarc'h - Finistère,53180,observation-a7edc2f8-1380-4656-8c91-c1b39b113dec-2,https://biolit.fr/observations/observation-a7edc2f8-1380-4656-8c91-c1b39b113dec-2/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1030699.JPG,,TRUE, +N1,60960,sortie-a7edc2f8-1380-4656-8c91-c1b39b113dec,https://biolit.fr/sorties/sortie-a7edc2f8-1380-4656-8c91-c1b39b113dec/,Phil,,9/20/2016 0:00,13.0000000,13.0000000,47.803705000000,-4.381527000000,,Penmarc'h - Finistère,53182,observation-a7edc2f8-1380-4656-8c91-c1b39b113dec-3,https://biolit.fr/observations/observation-a7edc2f8-1380-4656-8c91-c1b39b113dec-3/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1030713.JPG,,TRUE, +N1,60961,sortie-f8b5dca7-8876-424e-9212-ded559d28f3d,https://biolit.fr/sorties/sortie-f8b5dca7-8876-424e-9212-ded559d28f3d/,Phil,,9/18/2016 0:00,12.0:35,12.0000000,48.099436000000,-4.466856000000,,Beuzec Cap Sizun - Finistère,53184,observation-f8b5dca7-8876-424e-9212-ded559d28f3d,https://biolit.fr/observations/observation-f8b5dca7-8876-424e-9212-ded559d28f3d/,Coryphoblennius galerita,Blennie coiffée,,https://biolit.fr/wp-content/uploads/2023/07/P1030532.JPG,,TRUE, +N1,60961,sortie-f8b5dca7-8876-424e-9212-ded559d28f3d,https://biolit.fr/sorties/sortie-f8b5dca7-8876-424e-9212-ded559d28f3d/,Phil,,9/18/2016 0:00,12.0:35,12.0000000,48.099436000000,-4.466856000000,,Beuzec Cap Sizun - Finistère,53186,observation-f8b5dca7-8876-424e-9212-ded559d28f3d-2,https://biolit.fr/observations/observation-f8b5dca7-8876-424e-9212-ded559d28f3d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030498.JPG,,FALSE, +N1,60961,sortie-f8b5dca7-8876-424e-9212-ded559d28f3d,https://biolit.fr/sorties/sortie-f8b5dca7-8876-424e-9212-ded559d28f3d/,Phil,,9/18/2016 0:00,12.0:35,12.0000000,48.099436000000,-4.466856000000,,Beuzec Cap Sizun - Finistère,53188,observation-f8b5dca7-8876-424e-9212-ded559d28f3d-3,https://biolit.fr/observations/observation-f8b5dca7-8876-424e-9212-ded559d28f3d-3/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/P1030543.JPG,,TRUE, +N1,60962,sortie-a64cc954-fe51-4c57-9855-bba85c6ada56,https://biolit.fr/sorties/sortie-a64cc954-fe51-4c57-9855-bba85c6ada56/,Phil,,9/20/2016 0:00,13.0000000,13.0:25,47.800593000000,-4.382755000000,,Penmarc'h - Finistère,53190,observation-a64cc954-fe51-4c57-9855-bba85c6ada56,https://biolit.fr/observations/observation-a64cc954-fe51-4c57-9855-bba85c6ada56/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/P1030679.JPG,,TRUE, +N1,60962,sortie-a64cc954-fe51-4c57-9855-bba85c6ada56,https://biolit.fr/sorties/sortie-a64cc954-fe51-4c57-9855-bba85c6ada56/,Phil,,9/20/2016 0:00,13.0000000,13.0:25,47.800593000000,-4.382755000000,,Penmarc'h - Finistère,53192,observation-a64cc954-fe51-4c57-9855-bba85c6ada56-2,https://biolit.fr/observations/observation-a64cc954-fe51-4c57-9855-bba85c6ada56-2/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/P1030685.JPG,,TRUE, +N1,60962,sortie-a64cc954-fe51-4c57-9855-bba85c6ada56,https://biolit.fr/sorties/sortie-a64cc954-fe51-4c57-9855-bba85c6ada56/,Phil,,9/20/2016 0:00,13.0000000,13.0:25,47.800593000000,-4.382755000000,,Penmarc'h - Finistère,53194,observation-a64cc954-fe51-4c57-9855-bba85c6ada56-3,https://biolit.fr/observations/observation-a64cc954-fe51-4c57-9855-bba85c6ada56-3/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/P1030678.JPG,,TRUE, +N1,60962,sortie-a64cc954-fe51-4c57-9855-bba85c6ada56,https://biolit.fr/sorties/sortie-a64cc954-fe51-4c57-9855-bba85c6ada56/,Phil,,9/20/2016 0:00,13.0000000,13.0:25,47.800593000000,-4.382755000000,,Penmarc'h - Finistère,53196,observation-a64cc954-fe51-4c57-9855-bba85c6ada56-4,https://biolit.fr/observations/observation-a64cc954-fe51-4c57-9855-bba85c6ada56-4/,Lineus longissimus,Némerte géant,,https://biolit.fr/wp-content/uploads/2023/07/P1030675.JPG,,TRUE, +N1,60963,sortie-a90197e3-989f-434a-8cec-943825d5509c,https://biolit.fr/sorties/sortie-a90197e3-989f-434a-8cec-943825d5509c/,Phil,,9/20/2016 0:00,13.000005,13.0:15,47.80042700000,-4.378232000000,,Penmarc'h - Finistère,53198,observation-a90197e3-989f-434a-8cec-943825d5509c,https://biolit.fr/observations/observation-a90197e3-989f-434a-8cec-943825d5509c/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030653.JPG,,FALSE, +N1,60963,sortie-a90197e3-989f-434a-8cec-943825d5509c,https://biolit.fr/sorties/sortie-a90197e3-989f-434a-8cec-943825d5509c/,Phil,,9/20/2016 0:00,13.000005,13.0:15,47.80042700000,-4.378232000000,,Penmarc'h - Finistère,53200,observation-a90197e3-989f-434a-8cec-943825d5509c-2,https://biolit.fr/observations/observation-a90197e3-989f-434a-8cec-943825d5509c-2/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1030650.JPG,,TRUE, +N1,60963,sortie-a90197e3-989f-434a-8cec-943825d5509c,https://biolit.fr/sorties/sortie-a90197e3-989f-434a-8cec-943825d5509c/,Phil,,9/20/2016 0:00,13.000005,13.0:15,47.80042700000,-4.378232000000,,Penmarc'h - Finistère,53202,observation-a90197e3-989f-434a-8cec-943825d5509c-3,https://biolit.fr/observations/observation-a90197e3-989f-434a-8cec-943825d5509c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030648.JPG,,FALSE, +N1,60963,sortie-a90197e3-989f-434a-8cec-943825d5509c,https://biolit.fr/sorties/sortie-a90197e3-989f-434a-8cec-943825d5509c/,Phil,,9/20/2016 0:00,13.000005,13.0:15,47.80042700000,-4.378232000000,,Penmarc'h - Finistère,53204,observation-a90197e3-989f-434a-8cec-943825d5509c-4,https://biolit.fr/observations/observation-a90197e3-989f-434a-8cec-943825d5509c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030644.JPG,,FALSE, +N1,60964,sortie-6cb093c4-ecdc-422b-9e84-1bde1e5b1bba,https://biolit.fr/sorties/sortie-6cb093c4-ecdc-422b-9e84-1bde1e5b1bba/,Phil,,9/18/2016 0:00,12.0:15,12.0000000,48.098968000,-4.466843000000,,Beuzec Cap Sizun - Finistère,53206,observation-6cb093c4-ecdc-422b-9e84-1bde1e5b1bba,https://biolit.fr/observations/observation-6cb093c4-ecdc-422b-9e84-1bde1e5b1bba/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030496.JPG,,FALSE, +N1,60964,sortie-6cb093c4-ecdc-422b-9e84-1bde1e5b1bba,https://biolit.fr/sorties/sortie-6cb093c4-ecdc-422b-9e84-1bde1e5b1bba/,Phil,,9/18/2016 0:00,12.0:15,12.0000000,48.098968000,-4.466843000000,,Beuzec Cap Sizun - Finistère,53208,observation-6cb093c4-ecdc-422b-9e84-1bde1e5b1bba-2,https://biolit.fr/observations/observation-6cb093c4-ecdc-422b-9e84-1bde1e5b1bba-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030491.JPG,,FALSE, +N1,60964,sortie-6cb093c4-ecdc-422b-9e84-1bde1e5b1bba,https://biolit.fr/sorties/sortie-6cb093c4-ecdc-422b-9e84-1bde1e5b1bba/,Phil,,9/18/2016 0:00,12.0:15,12.0000000,48.098968000,-4.466843000000,,Beuzec Cap Sizun - Finistère,53210,observation-6cb093c4-ecdc-422b-9e84-1bde1e5b1bba-3,https://biolit.fr/observations/observation-6cb093c4-ecdc-422b-9e84-1bde1e5b1bba-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030486.JPG,,FALSE, +N1,60965,sortie-bfe7ec8e-c566-4e44-94a4-175b8c5bc7ea,https://biolit.fr/sorties/sortie-bfe7ec8e-c566-4e44-94a4-175b8c5bc7ea/,Phil,,9/18/2016 0:00,12.0000000,12.0000000,48.099055000000,-4.466830000000,,Beuzec Cap Sizun - Finistère,53212,observation-bfe7ec8e-c566-4e44-94a4-175b8c5bc7ea,https://biolit.fr/observations/observation-bfe7ec8e-c566-4e44-94a4-175b8c5bc7ea/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/P1030470.JPG,,TRUE, +N1,60965,sortie-bfe7ec8e-c566-4e44-94a4-175b8c5bc7ea,https://biolit.fr/sorties/sortie-bfe7ec8e-c566-4e44-94a4-175b8c5bc7ea/,Phil,,9/18/2016 0:00,12.0000000,12.0000000,48.099055000000,-4.466830000000,,Beuzec Cap Sizun - Finistère,53214,observation-bfe7ec8e-c566-4e44-94a4-175b8c5bc7ea-2,https://biolit.fr/observations/observation-bfe7ec8e-c566-4e44-94a4-175b8c5bc7ea-2/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/P1030472.JPG,,TRUE, +N1,60965,sortie-bfe7ec8e-c566-4e44-94a4-175b8c5bc7ea,https://biolit.fr/sorties/sortie-bfe7ec8e-c566-4e44-94a4-175b8c5bc7ea/,Phil,,9/18/2016 0:00,12.0000000,12.0000000,48.099055000000,-4.466830000000,,Beuzec Cap Sizun - Finistère,53216,observation-bfe7ec8e-c566-4e44-94a4-175b8c5bc7ea-3,https://biolit.fr/observations/observation-bfe7ec8e-c566-4e44-94a4-175b8c5bc7ea-3/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/P1030474.JPG,,TRUE, +N1,60965,sortie-bfe7ec8e-c566-4e44-94a4-175b8c5bc7ea,https://biolit.fr/sorties/sortie-bfe7ec8e-c566-4e44-94a4-175b8c5bc7ea/,Phil,,9/18/2016 0:00,12.0000000,12.0000000,48.099055000000,-4.466830000000,,Beuzec Cap Sizun - Finistère,53218,observation-bfe7ec8e-c566-4e44-94a4-175b8c5bc7ea-4,https://biolit.fr/observations/observation-bfe7ec8e-c566-4e44-94a4-175b8c5bc7ea-4/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/2023/07/P1030476.JPG,,TRUE, +N1,60966,sortie-1fdf982d-f9f2-4338-95bd-6e503bff2988,https://biolit.fr/sorties/sortie-1fdf982d-f9f2-4338-95bd-6e503bff2988/,Phil,,9/20/2016 0:00,15.000005,15.0000000,47.815947000000,-4.381846000000,,Saint-Guénolé - Finistère,53220,observation-1fdf982d-f9f2-4338-95bd-6e503bff2988,https://biolit.fr/observations/observation-1fdf982d-f9f2-4338-95bd-6e503bff2988/,Phocoena phocoena,Marsouin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1030999.JPG,,TRUE, +N1,60966,sortie-1fdf982d-f9f2-4338-95bd-6e503bff2988,https://biolit.fr/sorties/sortie-1fdf982d-f9f2-4338-95bd-6e503bff2988/,Phil,,9/20/2016 0:00,15.000005,15.0000000,47.815947000000,-4.381846000000,,Saint-Guénolé - Finistère,53222,observation-1fdf982d-f9f2-4338-95bd-6e503bff2988-2,https://biolit.fr/observations/observation-1fdf982d-f9f2-4338-95bd-6e503bff2988-2/,Phocoena phocoena,Marsouin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1030995.JPG,,TRUE, +N1,60966,sortie-1fdf982d-f9f2-4338-95bd-6e503bff2988,https://biolit.fr/sorties/sortie-1fdf982d-f9f2-4338-95bd-6e503bff2988/,Phil,,9/20/2016 0:00,15.000005,15.0000000,47.815947000000,-4.381846000000,,Saint-Guénolé - Finistère,53224,observation-1fdf982d-f9f2-4338-95bd-6e503bff2988-3,https://biolit.fr/observations/observation-1fdf982d-f9f2-4338-95bd-6e503bff2988-3/,Phocoena phocoena,Marsouin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1030997.JPG,,TRUE, +N1,60967,sortie-78422e6a-38cb-4f92-af71-dcb0aecf2bad,https://biolit.fr/sorties/sortie-78422e6a-38cb-4f92-af71-dcb0aecf2bad/,Phil,,9/18/2016 0:00,12.000005,12.0000000,48.09850000000,-4.467281000000,,Beuzec Cap Sizun - Finistère,53226,observation-78422e6a-38cb-4f92-af71-dcb0aecf2bad,https://biolit.fr/observations/observation-78422e6a-38cb-4f92-af71-dcb0aecf2bad/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030447.JPG,,FALSE, +N1,60967,sortie-78422e6a-38cb-4f92-af71-dcb0aecf2bad,https://biolit.fr/sorties/sortie-78422e6a-38cb-4f92-af71-dcb0aecf2bad/,Phil,,9/18/2016 0:00,12.000005,12.0000000,48.09850000000,-4.467281000000,,Beuzec Cap Sizun - Finistère,53228,observation-78422e6a-38cb-4f92-af71-dcb0aecf2bad-2,https://biolit.fr/observations/observation-78422e6a-38cb-4f92-af71-dcb0aecf2bad-2/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1030461.JPG,,TRUE, +N1,60967,sortie-78422e6a-38cb-4f92-af71-dcb0aecf2bad,https://biolit.fr/sorties/sortie-78422e6a-38cb-4f92-af71-dcb0aecf2bad/,Phil,,9/18/2016 0:00,12.000005,12.0000000,48.09850000000,-4.467281000000,,Beuzec Cap Sizun - Finistère,53230,observation-78422e6a-38cb-4f92-af71-dcb0aecf2bad-3,https://biolit.fr/observations/observation-78422e6a-38cb-4f92-af71-dcb0aecf2bad-3/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/P1030454.JPG,,TRUE, +N1,60968,sortie-1d581d6d-700d-4aa2-a797-140ac9d98b2a,https://biolit.fr/sorties/sortie-1d581d6d-700d-4aa2-a797-140ac9d98b2a/,Phil,,9/15/2016 0:00,11.0000000,12.0:15,47.792799000000,-4.290045000000,,Le Guivinec - Finistère,53232,observation-1d581d6d-700d-4aa2-a797-140ac9d98b2a,https://biolit.fr/observations/observation-1d581d6d-700d-4aa2-a797-140ac9d98b2a/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20160915_121212.jpg,,TRUE, +N1,60968,sortie-1d581d6d-700d-4aa2-a797-140ac9d98b2a,https://biolit.fr/sorties/sortie-1d581d6d-700d-4aa2-a797-140ac9d98b2a/,Phil,,9/15/2016 0:00,11.0000000,12.0:15,47.792799000000,-4.290045000000,,Le Guivinec - Finistère,53234,observation-1d581d6d-700d-4aa2-a797-140ac9d98b2a-2,https://biolit.fr/observations/observation-1d581d6d-700d-4aa2-a797-140ac9d98b2a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160915_121019.jpg,,FALSE, +N1,60968,sortie-1d581d6d-700d-4aa2-a797-140ac9d98b2a,https://biolit.fr/sorties/sortie-1d581d6d-700d-4aa2-a797-140ac9d98b2a/,Phil,,9/15/2016 0:00,11.0000000,12.0:15,47.792799000000,-4.290045000000,,Le Guivinec - Finistère,53236,observation-1d581d6d-700d-4aa2-a797-140ac9d98b2a-3,https://biolit.fr/observations/observation-1d581d6d-700d-4aa2-a797-140ac9d98b2a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160915_113749.jpg,,FALSE, +N1,60968,sortie-1d581d6d-700d-4aa2-a797-140ac9d98b2a,https://biolit.fr/sorties/sortie-1d581d6d-700d-4aa2-a797-140ac9d98b2a/,Phil,,9/15/2016 0:00,11.0000000,12.0:15,47.792799000000,-4.290045000000,,Le Guivinec - Finistère,53238,observation-1d581d6d-700d-4aa2-a797-140ac9d98b2a-4,https://biolit.fr/observations/observation-1d581d6d-700d-4aa2-a797-140ac9d98b2a-4/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/20160915_121334.jpg,,TRUE, +N1,60968,sortie-1d581d6d-700d-4aa2-a797-140ac9d98b2a,https://biolit.fr/sorties/sortie-1d581d6d-700d-4aa2-a797-140ac9d98b2a/,Phil,,9/15/2016 0:00,11.0000000,12.0:15,47.792799000000,-4.290045000000,,Le Guivinec - Finistère,53240,observation-1d581d6d-700d-4aa2-a797-140ac9d98b2a-5,https://biolit.fr/observations/observation-1d581d6d-700d-4aa2-a797-140ac9d98b2a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160915_121411.jpg,,FALSE, +N1,60968,sortie-1d581d6d-700d-4aa2-a797-140ac9d98b2a,https://biolit.fr/sorties/sortie-1d581d6d-700d-4aa2-a797-140ac9d98b2a/,Phil,,9/15/2016 0:00,11.0000000,12.0:15,47.792799000000,-4.290045000000,,Le Guivinec - Finistère,53242,observation-1d581d6d-700d-4aa2-a797-140ac9d98b2a-6,https://biolit.fr/observations/observation-1d581d6d-700d-4aa2-a797-140ac9d98b2a-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160915_121418.jpg,,FALSE, +N1,60969,sortie-c94fb907-0822-4971-ab24-923b9ea2fefe,https://biolit.fr/sorties/sortie-c94fb907-0822-4971-ab24-923b9ea2fefe/,Phil,,9/18/2016 0:00,11.0000000,12.0000000,48.09628900000,-4.46972700000,,Beuzec Cap Sizun - Finistère,53244,observation-c94fb907-0822-4971-ab24-923b9ea2fefe,https://biolit.fr/observations/observation-c94fb907-0822-4971-ab24-923b9ea2fefe/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1030436.JPG,,TRUE, +N1,60969,sortie-c94fb907-0822-4971-ab24-923b9ea2fefe,https://biolit.fr/sorties/sortie-c94fb907-0822-4971-ab24-923b9ea2fefe/,Phil,,9/18/2016 0:00,11.0000000,12.0000000,48.09628900000,-4.46972700000,,Beuzec Cap Sizun - Finistère,53246,observation-c94fb907-0822-4971-ab24-923b9ea2fefe-2,https://biolit.fr/observations/observation-c94fb907-0822-4971-ab24-923b9ea2fefe-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030440.JPG,,FALSE, +N1,60969,sortie-c94fb907-0822-4971-ab24-923b9ea2fefe,https://biolit.fr/sorties/sortie-c94fb907-0822-4971-ab24-923b9ea2fefe/,Phil,,9/18/2016 0:00,11.0000000,12.0000000,48.09628900000,-4.46972700000,,Beuzec Cap Sizun - Finistère,53248,observation-c94fb907-0822-4971-ab24-923b9ea2fefe-3,https://biolit.fr/observations/observation-c94fb907-0822-4971-ab24-923b9ea2fefe-3/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/P1030441.JPG,,TRUE, +N1,60969,sortie-c94fb907-0822-4971-ab24-923b9ea2fefe,https://biolit.fr/sorties/sortie-c94fb907-0822-4971-ab24-923b9ea2fefe/,Phil,,9/18/2016 0:00,11.0000000,12.0000000,48.09628900000,-4.46972700000,,Beuzec Cap Sizun - Finistère,53250,observation-c94fb907-0822-4971-ab24-923b9ea2fefe-4,https://biolit.fr/observations/observation-c94fb907-0822-4971-ab24-923b9ea2fefe-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030444.JPG,,FALSE, +N1,60970,sortie-5dc2a34a-9b35-4456-b768-6487415a2732,https://biolit.fr/sorties/sortie-5dc2a34a-9b35-4456-b768-6487415a2732/,Phil,,9/15/2016 0:00,12.0000000,12.000005,47.790893000000,-4.292358000000,,Le Guivinec - Finistère,53252,observation-5dc2a34a-9b35-4456-b768-6487415a2732,https://biolit.fr/observations/observation-5dc2a34a-9b35-4456-b768-6487415a2732/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20160915_120206.jpg,,TRUE, +N1,60970,sortie-5dc2a34a-9b35-4456-b768-6487415a2732,https://biolit.fr/sorties/sortie-5dc2a34a-9b35-4456-b768-6487415a2732/,Phil,,9/15/2016 0:00,12.0000000,12.000005,47.790893000000,-4.292358000000,,Le Guivinec - Finistère,53254,observation-5dc2a34a-9b35-4456-b768-6487415a2732-2,https://biolit.fr/observations/observation-5dc2a34a-9b35-4456-b768-6487415a2732-2/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20160915_120219.jpg,,TRUE, +N1,60970,sortie-5dc2a34a-9b35-4456-b768-6487415a2732,https://biolit.fr/sorties/sortie-5dc2a34a-9b35-4456-b768-6487415a2732/,Phil,,9/15/2016 0:00,12.0000000,12.000005,47.790893000000,-4.292358000000,,Le Guivinec - Finistère,53256,observation-5dc2a34a-9b35-4456-b768-6487415a2732-3,https://biolit.fr/observations/observation-5dc2a34a-9b35-4456-b768-6487415a2732-3/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20160915_120126.jpg,,TRUE, +N1,60970,sortie-5dc2a34a-9b35-4456-b768-6487415a2732,https://biolit.fr/sorties/sortie-5dc2a34a-9b35-4456-b768-6487415a2732/,Phil,,9/15/2016 0:00,12.0000000,12.000005,47.790893000000,-4.292358000000,,Le Guivinec - Finistère,53258,observation-5dc2a34a-9b35-4456-b768-6487415a2732-4,https://biolit.fr/observations/observation-5dc2a34a-9b35-4456-b768-6487415a2732-4/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20160915_120047.jpg,,TRUE, +N1,60970,sortie-5dc2a34a-9b35-4456-b768-6487415a2732,https://biolit.fr/sorties/sortie-5dc2a34a-9b35-4456-b768-6487415a2732/,Phil,,9/15/2016 0:00,12.0000000,12.000005,47.790893000000,-4.292358000000,,Le Guivinec - Finistère,53260,observation-5dc2a34a-9b35-4456-b768-6487415a2732-5,https://biolit.fr/observations/observation-5dc2a34a-9b35-4456-b768-6487415a2732-5/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20160915_120022.jpg,,TRUE, +N1,60971,sortie-3a6e26ca-b722-4a6a-8a09-47155f7f18ae,https://biolit.fr/sorties/sortie-3a6e26ca-b722-4a6a-8a09-47155f7f18ae/,Phil,,9/15/2016 0:00,11.0000000,12.0000000,47.791424000000,-4.296354000000,,Le Guivinec - Finistère,53262,observation-3a6e26ca-b722-4a6a-8a09-47155f7f18ae,https://biolit.fr/observations/observation-3a6e26ca-b722-4a6a-8a09-47155f7f18ae/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160915_114721.jpg,,FALSE, +N1,60971,sortie-3a6e26ca-b722-4a6a-8a09-47155f7f18ae,https://biolit.fr/sorties/sortie-3a6e26ca-b722-4a6a-8a09-47155f7f18ae/,Phil,,9/15/2016 0:00,11.0000000,12.0000000,47.791424000000,-4.296354000000,,Le Guivinec - Finistère,53264,observation-3a6e26ca-b722-4a6a-8a09-47155f7f18ae-2,https://biolit.fr/observations/observation-3a6e26ca-b722-4a6a-8a09-47155f7f18ae-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160915_115800.jpg,,FALSE, +N1,60971,sortie-3a6e26ca-b722-4a6a-8a09-47155f7f18ae,https://biolit.fr/sorties/sortie-3a6e26ca-b722-4a6a-8a09-47155f7f18ae/,Phil,,9/15/2016 0:00,11.0000000,12.0000000,47.791424000000,-4.296354000000,,Le Guivinec - Finistère,53266,observation-3a6e26ca-b722-4a6a-8a09-47155f7f18ae-3,https://biolit.fr/observations/observation-3a6e26ca-b722-4a6a-8a09-47155f7f18ae-3/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/20160915_115244.jpg,,TRUE, +N1,60972,sortie-277cdcc2-7bc9-4ceb-8bb4-e9c48e385ef7,https://biolit.fr/sorties/sortie-277cdcc2-7bc9-4ceb-8bb4-e9c48e385ef7/,sylvie logette,,9/17/2016 0:00,9.0:15,11.0:15,43.236124000000,5.359809000000,,"Marseille, Plage Bonne Brise",53268,observation-277cdcc2-7bc9-4ceb-8bb4-e9c48e385ef7,https://biolit.fr/observations/observation-277cdcc2-7bc9-4ceb-8bb4-e9c48e385ef7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1781.JPG,,FALSE, +N1,60973,sortie-34f222b8-0bc8-49ae-b5f8-6df958004f30,https://biolit.fr/sorties/sortie-34f222b8-0bc8-49ae-b5f8-6df958004f30/,Phil,,9/18/2016 0:00,11.0000000,12.0000000,48.096514000000,-4.472871000000,,Beuzec Cap Sizun - Finistère,53270,observation-34f222b8-0bc8-49ae-b5f8-6df958004f30,https://biolit.fr/observations/observation-34f222b8-0bc8-49ae-b5f8-6df958004f30/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030421.JPG,,FALSE, +N1,60973,sortie-34f222b8-0bc8-49ae-b5f8-6df958004f30,https://biolit.fr/sorties/sortie-34f222b8-0bc8-49ae-b5f8-6df958004f30/,Phil,,9/18/2016 0:00,11.0000000,12.0000000,48.096514000000,-4.472871000000,,Beuzec Cap Sizun - Finistère,53272,observation-34f222b8-0bc8-49ae-b5f8-6df958004f30-2,https://biolit.fr/observations/observation-34f222b8-0bc8-49ae-b5f8-6df958004f30-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030432.JPG,,FALSE, +N1,60973,sortie-34f222b8-0bc8-49ae-b5f8-6df958004f30,https://biolit.fr/sorties/sortie-34f222b8-0bc8-49ae-b5f8-6df958004f30/,Phil,,9/18/2016 0:00,11.0000000,12.0000000,48.096514000000,-4.472871000000,,Beuzec Cap Sizun - Finistère,53274,observation-34f222b8-0bc8-49ae-b5f8-6df958004f30-3,https://biolit.fr/observations/observation-34f222b8-0bc8-49ae-b5f8-6df958004f30-3/,Codium tomentosum,Codium tomenteux,,https://biolit.fr/wp-content/uploads/2023/07/P1030416.JPG,,TRUE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53276,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSCF2374.JPG,,TRUE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53278,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-2,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2376.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53280,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-3,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2377.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53282,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-4,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-4/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2378.JPG,,TRUE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53284,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-5,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2380.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53286,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-6,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-6/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2383.JPG,,TRUE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53288,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-7,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-7/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2386.JPG,,TRUE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53290,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-8,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2389.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53292,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-9,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2390.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53294,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-10,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2391.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53296,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-11,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-11/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2392.JPG,,TRUE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53298,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-12,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-12/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2394.JPG,,TRUE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53300,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-13,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-13/,Lithophyllum byssoides,Algue calcaire des trottoirs,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2395.JPG,,TRUE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53302,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-14,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2400.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53304,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-15,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2402.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53306,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-16,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-16/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSCF2404.JPG,,TRUE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53308,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-17,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2406.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53310,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-18,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2407.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53312,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-19,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-19/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2408.JPG,,TRUE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53314,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-20,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2412.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53316,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-21,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2417.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53318,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-22,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2419.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53320,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-23,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2424.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53322,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-24,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2428.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53324,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-25,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2434.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53326,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-26,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2437.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53328,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-27,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2438.JPG,,FALSE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53330,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-28,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-28/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSCF2446.JPG,,TRUE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53332,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-29,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-29/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSCF2447.JPG,,TRUE, +N1,60974,sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd,https://biolit.fr/sorties/sortie-01bbd17b-35d5-4da2-adac-336ecfc4bbbd/,Nicolas BEAUME,,9/18/2016 0:00,11.0000000,12.0000000,33.811843000000,-7.178188000000,,Plage de Dahomey - BOUZNIKA,53334,observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-30,https://biolit.fr/observations/observation-01bbd17b-35d5-4da2-adac-336ecfc4bbbd-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF2448.JPG,,FALSE, +N1,60975,sortie-16c3851b-43ac-4671-b519-554444ff3fb2,https://biolit.fr/sorties/sortie-16c3851b-43ac-4671-b519-554444ff3fb2/,Phil,,9/14/2016 0:00,11.0:45,11.0:55,47.868122000000,-3.925597000000,,Concarneau - Finistère,53336,observation-16c3851b-43ac-4671-b519-554444ff3fb2,https://biolit.fr/observations/observation-16c3851b-43ac-4671-b519-554444ff3fb2/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/20160914_115529.jpg,,TRUE, +N1,60975,sortie-16c3851b-43ac-4671-b519-554444ff3fb2,https://biolit.fr/sorties/sortie-16c3851b-43ac-4671-b519-554444ff3fb2/,Phil,,9/14/2016 0:00,11.0:45,11.0:55,47.868122000000,-3.925597000000,,Concarneau - Finistère,53338,observation-16c3851b-43ac-4671-b519-554444ff3fb2-2,https://biolit.fr/observations/observation-16c3851b-43ac-4671-b519-554444ff3fb2-2/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/20160914_115604.jpg,,TRUE, +N1,60976,sortie-f354d429-e2f7-49df-bb7b-d3b380b280e1,https://biolit.fr/sorties/sortie-f354d429-e2f7-49df-bb7b-d3b380b280e1/,Phil,,9/15/2016 0:00,11.0000000,11.0:55,47.790723000000,-4.293796000000,,Le Guivinec - Finistère,53340,observation-f354d429-e2f7-49df-bb7b-d3b380b280e1,https://biolit.fr/observations/observation-f354d429-e2f7-49df-bb7b-d3b380b280e1/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160915_120315.jpg,,FALSE, +N1,60977,sortie-657cd5ff-7eab-4ccf-8199-d95a8a2ab0a0,https://biolit.fr/sorties/sortie-657cd5ff-7eab-4ccf-8199-d95a8a2ab0a0/,Phil,,9/14/2016 0:00,11.0:45,11.0:55,47.867779000000,-3.925265000000,,Concarneau - Finistère,53342,observation-657cd5ff-7eab-4ccf-8199-d95a8a2ab0a0,https://biolit.fr/observations/observation-657cd5ff-7eab-4ccf-8199-d95a8a2ab0a0/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160914_115149.jpg,,TRUE, +N1,60977,sortie-657cd5ff-7eab-4ccf-8199-d95a8a2ab0a0,https://biolit.fr/sorties/sortie-657cd5ff-7eab-4ccf-8199-d95a8a2ab0a0/,Phil,,9/14/2016 0:00,11.0:45,11.0:55,47.867779000000,-3.925265000000,,Concarneau - Finistère,53344,observation-657cd5ff-7eab-4ccf-8199-d95a8a2ab0a0-2,https://biolit.fr/observations/observation-657cd5ff-7eab-4ccf-8199-d95a8a2ab0a0-2/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/20160914_114742.jpg,,TRUE, +N1,60977,sortie-657cd5ff-7eab-4ccf-8199-d95a8a2ab0a0,https://biolit.fr/sorties/sortie-657cd5ff-7eab-4ccf-8199-d95a8a2ab0a0/,Phil,,9/14/2016 0:00,11.0:45,11.0:55,47.867779000000,-3.925265000000,,Concarneau - Finistère,53346,observation-657cd5ff-7eab-4ccf-8199-d95a8a2ab0a0-3,https://biolit.fr/observations/observation-657cd5ff-7eab-4ccf-8199-d95a8a2ab0a0-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160914_115424.jpg,,TRUE, +N1,60978,sortie-72c4f3bb-de70-496b-8dae-543800525751,https://biolit.fr/sorties/sortie-72c4f3bb-de70-496b-8dae-543800525751/,Karine Raoult,,9/17/2016 0:00,9.0000000,11.0:15,43.235868000000,5.360134000000,,Plage de la bonne brise,53348,observation-72c4f3bb-de70-496b-8dae-543800525751,https://biolit.fr/observations/observation-72c4f3bb-de70-496b-8dae-543800525751/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_9757-scaled.jpg,,TRUE, +N1,60978,sortie-72c4f3bb-de70-496b-8dae-543800525751,https://biolit.fr/sorties/sortie-72c4f3bb-de70-496b-8dae-543800525751/,Karine Raoult,,9/17/2016 0:00,9.0000000,11.0:15,43.235868000000,5.360134000000,,Plage de la bonne brise,53350,observation-72c4f3bb-de70-496b-8dae-543800525751-2,https://biolit.fr/observations/observation-72c4f3bb-de70-496b-8dae-543800525751-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9754-scaled.jpg,,FALSE, +N1,60978,sortie-72c4f3bb-de70-496b-8dae-543800525751,https://biolit.fr/sorties/sortie-72c4f3bb-de70-496b-8dae-543800525751/,Karine Raoult,,9/17/2016 0:00,9.0000000,11.0:15,43.235868000000,5.360134000000,,Plage de la bonne brise,53352,observation-72c4f3bb-de70-496b-8dae-543800525751-3,https://biolit.fr/observations/observation-72c4f3bb-de70-496b-8dae-543800525751-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9724-scaled.jpg,,FALSE, +N1,60978,sortie-72c4f3bb-de70-496b-8dae-543800525751,https://biolit.fr/sorties/sortie-72c4f3bb-de70-496b-8dae-543800525751/,Karine Raoult,,9/17/2016 0:00,9.0000000,11.0:15,43.235868000000,5.360134000000,,Plage de la bonne brise,53354,observation-72c4f3bb-de70-496b-8dae-543800525751-4,https://biolit.fr/observations/observation-72c4f3bb-de70-496b-8dae-543800525751-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9753-scaled.jpg,,FALSE, +N1,60978,sortie-72c4f3bb-de70-496b-8dae-543800525751,https://biolit.fr/sorties/sortie-72c4f3bb-de70-496b-8dae-543800525751/,Karine Raoult,,9/17/2016 0:00,9.0000000,11.0:15,43.235868000000,5.360134000000,,Plage de la bonne brise,53356,observation-72c4f3bb-de70-496b-8dae-543800525751-5,https://biolit.fr/observations/observation-72c4f3bb-de70-496b-8dae-543800525751-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9719.JPG,,FALSE, +N1,60978,sortie-72c4f3bb-de70-496b-8dae-543800525751,https://biolit.fr/sorties/sortie-72c4f3bb-de70-496b-8dae-543800525751/,Karine Raoult,,9/17/2016 0:00,9.0000000,11.0:15,43.235868000000,5.360134000000,,Plage de la bonne brise,53358,observation-72c4f3bb-de70-496b-8dae-543800525751-6,https://biolit.fr/observations/observation-72c4f3bb-de70-496b-8dae-543800525751-6/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/DSC06256.JPG,,TRUE, +N1,60978,sortie-72c4f3bb-de70-496b-8dae-543800525751,https://biolit.fr/sorties/sortie-72c4f3bb-de70-496b-8dae-543800525751/,Karine Raoult,,9/17/2016 0:00,9.0000000,11.0:15,43.235868000000,5.360134000000,,Plage de la bonne brise,53360,observation-72c4f3bb-de70-496b-8dae-543800525751-7,https://biolit.fr/observations/observation-72c4f3bb-de70-496b-8dae-543800525751-7/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9699.JPG,,TRUE, +N1,60978,sortie-72c4f3bb-de70-496b-8dae-543800525751,https://biolit.fr/sorties/sortie-72c4f3bb-de70-496b-8dae-543800525751/,Karine Raoult,,9/17/2016 0:00,9.0000000,11.0:15,43.235868000000,5.360134000000,,Plage de la bonne brise,53362,observation-72c4f3bb-de70-496b-8dae-543800525751-8,https://biolit.fr/observations/observation-72c4f3bb-de70-496b-8dae-543800525751-8/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/DSC06281.JPG,,TRUE, +N1,60978,sortie-72c4f3bb-de70-496b-8dae-543800525751,https://biolit.fr/sorties/sortie-72c4f3bb-de70-496b-8dae-543800525751/,Karine Raoult,,9/17/2016 0:00,9.0000000,11.0:15,43.235868000000,5.360134000000,,Plage de la bonne brise,53364,observation-72c4f3bb-de70-496b-8dae-543800525751-9,https://biolit.fr/observations/observation-72c4f3bb-de70-496b-8dae-543800525751-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC06283.JPG,,FALSE, +N1,60979,sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee,https://biolit.fr/sorties/sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee/,sylvie logette,,9/17/2016 0:00,9.0000000,11.0:15,43.23597500000,5.359840000000,,"Marseille, plage de bonne brise",53366,observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee,https://biolit.fr/observations/observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1764-scaled.jpg,,TRUE, +N1,60979,sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee,https://biolit.fr/sorties/sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee/,sylvie logette,,9/17/2016 0:00,9.0000000,11.0:15,43.23597500000,5.359840000000,,"Marseille, plage de bonne brise",53368,observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-2,https://biolit.fr/observations/observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-2/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1765-scaled.jpg,,TRUE, +N1,60979,sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee,https://biolit.fr/sorties/sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee/,sylvie logette,,9/17/2016 0:00,9.0000000,11.0:15,43.23597500000,5.359840000000,,"Marseille, plage de bonne brise",53370,observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-3,https://biolit.fr/observations/observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1766-scaled.jpg,,FALSE, +N1,60979,sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee,https://biolit.fr/sorties/sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee/,sylvie logette,,9/17/2016 0:00,9.0000000,11.0:15,43.23597500000,5.359840000000,,"Marseille, plage de bonne brise",53372,observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-4,https://biolit.fr/observations/observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1767-scaled.jpg,,FALSE, +N1,60979,sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee,https://biolit.fr/sorties/sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee/,sylvie logette,,9/17/2016 0:00,9.0000000,11.0:15,43.23597500000,5.359840000000,,"Marseille, plage de bonne brise",53374,observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-5,https://biolit.fr/observations/observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-5/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1768-scaled.jpg,,TRUE, +N1,60979,sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee,https://biolit.fr/sorties/sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee/,sylvie logette,,9/17/2016 0:00,9.0000000,11.0:15,43.23597500000,5.359840000000,,"Marseille, plage de bonne brise",53376,observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-6,https://biolit.fr/observations/observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1773-scaled.jpg,,FALSE, +N1,60979,sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee,https://biolit.fr/sorties/sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee/,sylvie logette,,9/17/2016 0:00,9.0000000,11.0:15,43.23597500000,5.359840000000,,"Marseille, plage de bonne brise",53378,observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-7,https://biolit.fr/observations/observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1776-scaled.jpg,,FALSE, +N1,60979,sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee,https://biolit.fr/sorties/sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee/,sylvie logette,,9/17/2016 0:00,9.0000000,11.0:15,43.23597500000,5.359840000000,,"Marseille, plage de bonne brise",53380,observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-8,https://biolit.fr/observations/observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-8/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1777-scaled.jpg,,TRUE, +N1,60979,sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee,https://biolit.fr/sorties/sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee/,sylvie logette,,9/17/2016 0:00,9.0000000,11.0:15,43.23597500000,5.359840000000,,"Marseille, plage de bonne brise",53382,observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-9,https://biolit.fr/observations/observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-9/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1787-scaled.jpg,,TRUE, +N1,60979,sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee,https://biolit.fr/sorties/sortie-37d5d66c-2350-4d94-8471-d3f10b9a21ee/,sylvie logette,,9/17/2016 0:00,9.0000000,11.0:15,43.23597500000,5.359840000000,,"Marseille, plage de bonne brise",53384,observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-10,https://biolit.fr/observations/observation-37d5d66c-2350-4d94-8471-d3f10b9a21ee-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1788_0-scaled.jpg,,FALSE, +N1,60980,sortie-25088bb7-5b76-4e29-8e27-b2719a9cf280,https://biolit.fr/sorties/sortie-25088bb7-5b76-4e29-8e27-b2719a9cf280/,Khedim,,9/17/2016 0:00,9.0000000,12.0000000,43.256354000000,5.362462000000,,Plage de la brise ,53386,observation-25088bb7-5b76-4e29-8e27-b2719a9cf280,https://biolit.fr/observations/observation-25088bb7-5b76-4e29-8e27-b2719a9cf280/,,,,https://biolit.fr/wp-content/uploads/2023/07/image_74-scaled.jpeg,,FALSE, +N1,60981,sortie-8c2ed26e-9dd5-4b4e-99ba-4945dad3a210,https://biolit.fr/sorties/sortie-8c2ed26e-9dd5-4b4e-99ba-4945dad3a210/,Phil,,9/15/2016 0:00,11.0000000,11.0:45,47.791076000000,-4.294294000000,,Le Guivinec - Finistère,53388,observation-8c2ed26e-9dd5-4b4e-99ba-4945dad3a210,https://biolit.fr/observations/observation-8c2ed26e-9dd5-4b4e-99ba-4945dad3a210/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160915_114646.jpg,,FALSE, +N1,60981,sortie-8c2ed26e-9dd5-4b4e-99ba-4945dad3a210,https://biolit.fr/sorties/sortie-8c2ed26e-9dd5-4b4e-99ba-4945dad3a210/,Phil,,9/15/2016 0:00,11.0000000,11.0:45,47.791076000000,-4.294294000000,,Le Guivinec - Finistère,53390,observation-8c2ed26e-9dd5-4b4e-99ba-4945dad3a210-2,https://biolit.fr/observations/observation-8c2ed26e-9dd5-4b4e-99ba-4945dad3a210-2/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/20160915_114346.jpg,,TRUE, +N1,60981,sortie-8c2ed26e-9dd5-4b4e-99ba-4945dad3a210,https://biolit.fr/sorties/sortie-8c2ed26e-9dd5-4b4e-99ba-4945dad3a210/,Phil,,9/15/2016 0:00,11.0000000,11.0:45,47.791076000000,-4.294294000000,,Le Guivinec - Finistère,53392,observation-8c2ed26e-9dd5-4b4e-99ba-4945dad3a210-3,https://biolit.fr/observations/observation-8c2ed26e-9dd5-4b4e-99ba-4945dad3a210-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160915_114428.jpg,,FALSE, +N1,60982,sortie-8cda6048-3e20-446d-b177-be0e62bb341c,https://biolit.fr/sorties/sortie-8cda6048-3e20-446d-b177-be0e62bb341c/,Phil,,9/14/2016 0:00,11.0:35,11.0:45,47.86771300000,-3.926263000000,,Concarneau - Finistère,53394,observation-8cda6048-3e20-446d-b177-be0e62bb341c,https://biolit.fr/observations/observation-8cda6048-3e20-446d-b177-be0e62bb341c/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20160914_114439.jpg,,TRUE, +N1,60982,sortie-8cda6048-3e20-446d-b177-be0e62bb341c,https://biolit.fr/sorties/sortie-8cda6048-3e20-446d-b177-be0e62bb341c/,Phil,,9/14/2016 0:00,11.0:35,11.0:45,47.86771300000,-3.926263000000,,Concarneau - Finistère,53396,observation-8cda6048-3e20-446d-b177-be0e62bb341c-2,https://biolit.fr/observations/observation-8cda6048-3e20-446d-b177-be0e62bb341c-2/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/20160914_113948.jpg,,TRUE, +N1,60982,sortie-8cda6048-3e20-446d-b177-be0e62bb341c,https://biolit.fr/sorties/sortie-8cda6048-3e20-446d-b177-be0e62bb341c/,Phil,,9/14/2016 0:00,11.0:35,11.0:45,47.86771300000,-3.926263000000,,Concarneau - Finistère,53398,observation-8cda6048-3e20-446d-b177-be0e62bb341c-3,https://biolit.fr/observations/observation-8cda6048-3e20-446d-b177-be0e62bb341c-3/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20160914_114222.jpg,,TRUE, +N1,60982,sortie-8cda6048-3e20-446d-b177-be0e62bb341c,https://biolit.fr/sorties/sortie-8cda6048-3e20-446d-b177-be0e62bb341c/,Phil,,9/14/2016 0:00,11.0:35,11.0:45,47.86771300000,-3.926263000000,,Concarneau - Finistère,53400,observation-8cda6048-3e20-446d-b177-be0e62bb341c-4,https://biolit.fr/observations/observation-8cda6048-3e20-446d-b177-be0e62bb341c-4/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20160914_114211.jpg,,TRUE, +N1,60983,sortie-04caf0fb-d65f-4c51-9a9c-221c88bd4da9,https://biolit.fr/sorties/sortie-04caf0fb-d65f-4c51-9a9c-221c88bd4da9/,Phil,,9/15/2016 0:00,11.0000000,11.0:45,47.791298000000,-4.293210000000,,Le Guivinec - Finistère,53402,observation-04caf0fb-d65f-4c51-9a9c-221c88bd4da9,https://biolit.fr/observations/observation-04caf0fb-d65f-4c51-9a9c-221c88bd4da9/,Coryphoblennius galerita,Blennie coiffée,,https://biolit.fr/wp-content/uploads/2023/07/20160915_113927.jpg,,TRUE, +N1,60983,sortie-04caf0fb-d65f-4c51-9a9c-221c88bd4da9,https://biolit.fr/sorties/sortie-04caf0fb-d65f-4c51-9a9c-221c88bd4da9/,Phil,,9/15/2016 0:00,11.0000000,11.0:45,47.791298000000,-4.293210000000,,Le Guivinec - Finistère,53404,observation-04caf0fb-d65f-4c51-9a9c-221c88bd4da9-2,https://biolit.fr/observations/observation-04caf0fb-d65f-4c51-9a9c-221c88bd4da9-2/,Coryphoblennius galerita,Blennie coiffée,,https://biolit.fr/wp-content/uploads/2023/07/20160915_114001.jpg,,TRUE, +N1,60983,sortie-04caf0fb-d65f-4c51-9a9c-221c88bd4da9,https://biolit.fr/sorties/sortie-04caf0fb-d65f-4c51-9a9c-221c88bd4da9/,Phil,,9/15/2016 0:00,11.0000000,11.0:45,47.791298000000,-4.293210000000,,Le Guivinec - Finistère,53406,observation-04caf0fb-d65f-4c51-9a9c-221c88bd4da9-3,https://biolit.fr/observations/observation-04caf0fb-d65f-4c51-9a9c-221c88bd4da9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160915_114151.jpg,,FALSE, +N1,60984,sortie-669019d3-c921-41f9-9321-82e3daad9f40,https://biolit.fr/sorties/sortie-669019d3-c921-41f9-9321-82e3daad9f40/,Earthforce FS,,8/14/2016 0:00,16.0000000,16.0:45,43.557315000000,4.050044000000,,Plage du Grand Travers,53408,observation-669019d3-c921-41f9-9321-82e3daad9f40,https://biolit.fr/observations/observation-669019d3-c921-41f9-9321-82e3daad9f40/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5115-scaled.jpg,,FALSE, +N1,60985,sortie-54200493-b41b-406e-ac84-3fdd8ac200f1,https://biolit.fr/sorties/sortie-54200493-b41b-406e-ac84-3fdd8ac200f1/,Earthforce FS,,08/05/2016,14.0000000,15.0000000,43.549999000000,4.000509000000,,Carnon Plage ,53410,observation-54200493-b41b-406e-ac84-3fdd8ac200f1,https://biolit.fr/observations/observation-54200493-b41b-406e-ac84-3fdd8ac200f1/,,,,https://biolit.fr/wp-content/uploads/2023/07/13920799_1239174222759644_1839288431609180635_n.jpg,,FALSE, +N1,60985,sortie-54200493-b41b-406e-ac84-3fdd8ac200f1,https://biolit.fr/sorties/sortie-54200493-b41b-406e-ac84-3fdd8ac200f1/,Earthforce FS,,08/05/2016,14.0000000,15.0000000,43.549999000000,4.000509000000,,Carnon Plage ,53412,observation-54200493-b41b-406e-ac84-3fdd8ac200f1-2,https://biolit.fr/observations/observation-54200493-b41b-406e-ac84-3fdd8ac200f1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/13872659_1239173889426344_715232143834212630_n.jpg,,FALSE, +N1,60986,sortie-40f403ff-3a65-44e0-84a2-a18d47f82b04,https://biolit.fr/sorties/sortie-40f403ff-3a65-44e0-84a2-a18d47f82b04/,Phil,,9/14/2016 0:00,11.0:25,11.0:35,47.867904000000,-3.92536800000,,Concarneau - Finistère,53414,observation-40f403ff-3a65-44e0-84a2-a18d47f82b04,https://biolit.fr/observations/observation-40f403ff-3a65-44e0-84a2-a18d47f82b04/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20160914_112928.jpg,,TRUE, +N1,60986,sortie-40f403ff-3a65-44e0-84a2-a18d47f82b04,https://biolit.fr/sorties/sortie-40f403ff-3a65-44e0-84a2-a18d47f82b04/,Phil,,9/14/2016 0:00,11.0:25,11.0:35,47.867904000000,-3.92536800000,,Concarneau - Finistère,53416,observation-40f403ff-3a65-44e0-84a2-a18d47f82b04-2,https://biolit.fr/observations/observation-40f403ff-3a65-44e0-84a2-a18d47f82b04-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160914_113547.jpg,,FALSE, +N1,60986,sortie-40f403ff-3a65-44e0-84a2-a18d47f82b04,https://biolit.fr/sorties/sortie-40f403ff-3a65-44e0-84a2-a18d47f82b04/,Phil,,9/14/2016 0:00,11.0:25,11.0:35,47.867904000000,-3.92536800000,,Concarneau - Finistère,53418,observation-40f403ff-3a65-44e0-84a2-a18d47f82b04-3,https://biolit.fr/observations/observation-40f403ff-3a65-44e0-84a2-a18d47f82b04-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160914_113022.jpg,,FALSE, +N1,60987,sortie-a36d867f-512a-49c1-b659-efa38c1ba471,https://biolit.fr/sorties/sortie-a36d867f-512a-49c1-b659-efa38c1ba471/,Phil,,9/14/2016 0:00,11.0000000,11.0:25,47.868080000000,-3.926333000000,,Concarneau - Finistère,53420,observation-a36d867f-512a-49c1-b659-efa38c1ba471,https://biolit.fr/observations/observation-a36d867f-512a-49c1-b659-efa38c1ba471/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160914_112438.jpg,,FALSE, +N1,60987,sortie-a36d867f-512a-49c1-b659-efa38c1ba471,https://biolit.fr/sorties/sortie-a36d867f-512a-49c1-b659-efa38c1ba471/,Phil,,9/14/2016 0:00,11.0000000,11.0:25,47.868080000000,-3.926333000000,,Concarneau - Finistère,53422,observation-a36d867f-512a-49c1-b659-efa38c1ba471-2,https://biolit.fr/observations/observation-a36d867f-512a-49c1-b659-efa38c1ba471-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160914_112817.jpg,,FALSE, +N1,60987,sortie-a36d867f-512a-49c1-b659-efa38c1ba471,https://biolit.fr/sorties/sortie-a36d867f-512a-49c1-b659-efa38c1ba471/,Phil,,9/14/2016 0:00,11.0000000,11.0:25,47.868080000000,-3.926333000000,,Concarneau - Finistère,53424,observation-a36d867f-512a-49c1-b659-efa38c1ba471-3,https://biolit.fr/observations/observation-a36d867f-512a-49c1-b659-efa38c1ba471-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160914_111905(0).jpg,,FALSE, +N1,60988,sortie-498f3fa9-203d-41b7-b8eb-f89ab8491de0,https://biolit.fr/sorties/sortie-498f3fa9-203d-41b7-b8eb-f89ab8491de0/,Phil,,8/20/2016 0:00,10.0:55,11.0000000,47.877207000000,-3.932206000000,,Concarneau - Finistère,53426,observation-498f3fa9-203d-41b7-b8eb-f89ab8491de0,https://biolit.fr/observations/observation-498f3fa9-203d-41b7-b8eb-f89ab8491de0/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_110027.jpg,,FALSE, +N1,60988,sortie-498f3fa9-203d-41b7-b8eb-f89ab8491de0,https://biolit.fr/sorties/sortie-498f3fa9-203d-41b7-b8eb-f89ab8491de0/,Phil,,8/20/2016 0:00,10.0:55,11.0000000,47.877207000000,-3.932206000000,,Concarneau - Finistère,53428,observation-498f3fa9-203d-41b7-b8eb-f89ab8491de0-2,https://biolit.fr/observations/observation-498f3fa9-203d-41b7-b8eb-f89ab8491de0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_110038.jpg,,FALSE, +N1,60989,sortie-983170f5-0a73-4cd8-a135-7e65a40a87ee,https://biolit.fr/sorties/sortie-983170f5-0a73-4cd8-a135-7e65a40a87ee/,Phil,,9/14/2016 0:00,11.0000000,11.0:15,47.868762000000,-3.925835000000,,Concarneau - Finistère,53430,observation-983170f5-0a73-4cd8-a135-7e65a40a87ee,https://biolit.fr/observations/observation-983170f5-0a73-4cd8-a135-7e65a40a87ee/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160914_110845.jpg,,TRUE, +N1,60989,sortie-983170f5-0a73-4cd8-a135-7e65a40a87ee,https://biolit.fr/sorties/sortie-983170f5-0a73-4cd8-a135-7e65a40a87ee/,Phil,,9/14/2016 0:00,11.0000000,11.0:15,47.868762000000,-3.925835000000,,Concarneau - Finistère,53432,observation-983170f5-0a73-4cd8-a135-7e65a40a87ee-2,https://biolit.fr/observations/observation-983170f5-0a73-4cd8-a135-7e65a40a87ee-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160914_111832.jpg,,FALSE, +N1,60990,sortie-aaf4336e-4f18-4fa0-b47d-302410829f95,https://biolit.fr/sorties/sortie-aaf4336e-4f18-4fa0-b47d-302410829f95/,cigale33,,9/14/2016 0:00,10.0:15,11.0:45,44.656192000000,-1.19638900000,,"Arcachon,",53434,observation-aaf4336e-4f18-4fa0-b47d-302410829f95,https://biolit.fr/observations/observation-aaf4336e-4f18-4fa0-b47d-302410829f95/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7628.JPG,,TRUE, +N1,60990,sortie-aaf4336e-4f18-4fa0-b47d-302410829f95,https://biolit.fr/sorties/sortie-aaf4336e-4f18-4fa0-b47d-302410829f95/,cigale33,,9/14/2016 0:00,10.0:15,11.0:45,44.656192000000,-1.19638900000,,"Arcachon,",53436,observation-aaf4336e-4f18-4fa0-b47d-302410829f95-2,https://biolit.fr/observations/observation-aaf4336e-4f18-4fa0-b47d-302410829f95-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_7676.JPG,,FALSE, +N1,60990,sortie-aaf4336e-4f18-4fa0-b47d-302410829f95,https://biolit.fr/sorties/sortie-aaf4336e-4f18-4fa0-b47d-302410829f95/,cigale33,,9/14/2016 0:00,10.0:15,11.0:45,44.656192000000,-1.19638900000,,"Arcachon,",53438,observation-aaf4336e-4f18-4fa0-b47d-302410829f95-3,https://biolit.fr/observations/observation-aaf4336e-4f18-4fa0-b47d-302410829f95-3/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7620.JPG,,TRUE, +N1,60990,sortie-aaf4336e-4f18-4fa0-b47d-302410829f95,https://biolit.fr/sorties/sortie-aaf4336e-4f18-4fa0-b47d-302410829f95/,cigale33,,9/14/2016 0:00,10.0:15,11.0:45,44.656192000000,-1.19638900000,,"Arcachon,",53440,observation-aaf4336e-4f18-4fa0-b47d-302410829f95-4,https://biolit.fr/observations/observation-aaf4336e-4f18-4fa0-b47d-302410829f95-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7623.JPG,,FALSE, +N1,60990,sortie-aaf4336e-4f18-4fa0-b47d-302410829f95,https://biolit.fr/sorties/sortie-aaf4336e-4f18-4fa0-b47d-302410829f95/,cigale33,,9/14/2016 0:00,10.0:15,11.0:45,44.656192000000,-1.19638900000,,"Arcachon,",53442,observation-aaf4336e-4f18-4fa0-b47d-302410829f95-5,https://biolit.fr/observations/observation-aaf4336e-4f18-4fa0-b47d-302410829f95-5/,Atelecyclus undecimdentatus,Grand crabe circulaire,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7625.JPG,,TRUE, +N1,60990,sortie-aaf4336e-4f18-4fa0-b47d-302410829f95,https://biolit.fr/sorties/sortie-aaf4336e-4f18-4fa0-b47d-302410829f95/,cigale33,,9/14/2016 0:00,10.0:15,11.0:45,44.656192000000,-1.19638900000,,"Arcachon,",53444,observation-aaf4336e-4f18-4fa0-b47d-302410829f95-6,https://biolit.fr/observations/observation-aaf4336e-4f18-4fa0-b47d-302410829f95-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7640.JPG,,FALSE, +N1,60990,sortie-aaf4336e-4f18-4fa0-b47d-302410829f95,https://biolit.fr/sorties/sortie-aaf4336e-4f18-4fa0-b47d-302410829f95/,cigale33,,9/14/2016 0:00,10.0:15,11.0:45,44.656192000000,-1.19638900000,,"Arcachon,",53446,observation-aaf4336e-4f18-4fa0-b47d-302410829f95-7,https://biolit.fr/observations/observation-aaf4336e-4f18-4fa0-b47d-302410829f95-7/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7647.JPG,,TRUE, +N1,60990,sortie-aaf4336e-4f18-4fa0-b47d-302410829f95,https://biolit.fr/sorties/sortie-aaf4336e-4f18-4fa0-b47d-302410829f95/,cigale33,,9/14/2016 0:00,10.0:15,11.0:45,44.656192000000,-1.19638900000,,"Arcachon,",53448,observation-aaf4336e-4f18-4fa0-b47d-302410829f95-8,https://biolit.fr/observations/observation-aaf4336e-4f18-4fa0-b47d-302410829f95-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7637.JPG,,FALSE, +N1,60992,sortie-0e64efe7-3b57-4f34-8e73-19b3aa98ea83,https://biolit.fr/sorties/sortie-0e64efe7-3b57-4f34-8e73-19b3aa98ea83/,pascal benalloul,,09/09/2016,15.0000000,17.0000000,43.42545800000,5.181232000000,,Plage du jaï marignane,53452,observation-0e64efe7-3b57-4f34-8e73-19b3aa98ea83,https://biolit.fr/observations/observation-0e64efe7-3b57-4f34-8e73-19b3aa98ea83/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20160522_155949-scaled.jpg,,FALSE, +N1,60992,sortie-0e64efe7-3b57-4f34-8e73-19b3aa98ea83,https://biolit.fr/sorties/sortie-0e64efe7-3b57-4f34-8e73-19b3aa98ea83/,pascal benalloul,,09/09/2016,15.0000000,17.0000000,43.42545800000,5.181232000000,,Plage du jaï marignane,53454,observation-0e64efe7-3b57-4f34-8e73-19b3aa98ea83-2,https://biolit.fr/observations/observation-0e64efe7-3b57-4f34-8e73-19b3aa98ea83-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20160522_160034-scaled.jpg,,FALSE, +N1,60992,sortie-0e64efe7-3b57-4f34-8e73-19b3aa98ea83,https://biolit.fr/sorties/sortie-0e64efe7-3b57-4f34-8e73-19b3aa98ea83/,pascal benalloul,,09/09/2016,15.0000000,17.0000000,43.42545800000,5.181232000000,,Plage du jaï marignane,53456,observation-0e64efe7-3b57-4f34-8e73-19b3aa98ea83-3,https://biolit.fr/observations/observation-0e64efe7-3b57-4f34-8e73-19b3aa98ea83-3/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20160522_160233-scaled.jpg,,TRUE, +N1,60992,sortie-0e64efe7-3b57-4f34-8e73-19b3aa98ea83,https://biolit.fr/sorties/sortie-0e64efe7-3b57-4f34-8e73-19b3aa98ea83/,pascal benalloul,,09/09/2016,15.0000000,17.0000000,43.42545800000,5.181232000000,,Plage du jaï marignane,53458,observation-0e64efe7-3b57-4f34-8e73-19b3aa98ea83-4,https://biolit.fr/observations/observation-0e64efe7-3b57-4f34-8e73-19b3aa98ea83-4/,Arcuatula senhousia,Moule asiatique,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_20160522_160255-scaled.jpg,,TRUE, +N1,60993,sortie-13af7337-4efe-4a59-b9a0-67f25f66169b,https://biolit.fr/sorties/sortie-13af7337-4efe-4a59-b9a0-67f25f66169b/,MarieSol,,09/08/2016,18.0000000,21.0000000,35.917240000000,0.888259000000,,Frontignan plage,53460,observation-13af7337-4efe-4a59-b9a0-67f25f66169b,https://biolit.fr/observations/observation-13af7337-4efe-4a59-b9a0-67f25f66169b/,,,,https://biolit.fr/wp-content/uploads/2023/07/image_72-scaled.jpeg,,FALSE, +N1,60996,sortie-2befda92-0bbe-425c-b1ca-58893a39ee4a,https://biolit.fr/sorties/sortie-2befda92-0bbe-425c-b1ca-58893a39ee4a/,Phil,,8/20/2016 0:00,10.0000000,10.0:55,47.876966000000,-3.931736000000,,Concarneau - Finistère,53466,observation-2befda92-0bbe-425c-b1ca-58893a39ee4a,https://biolit.fr/observations/observation-2befda92-0bbe-425c-b1ca-58893a39ee4a/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160820_105241.jpg,,TRUE, +N1,60996,sortie-2befda92-0bbe-425c-b1ca-58893a39ee4a,https://biolit.fr/sorties/sortie-2befda92-0bbe-425c-b1ca-58893a39ee4a/,Phil,,8/20/2016 0:00,10.0000000,10.0:55,47.876966000000,-3.931736000000,,Concarneau - Finistère,53468,observation-2befda92-0bbe-425c-b1ca-58893a39ee4a-2,https://biolit.fr/observations/observation-2befda92-0bbe-425c-b1ca-58893a39ee4a-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160820_105421.jpg,,TRUE, +N1,60996,sortie-2befda92-0bbe-425c-b1ca-58893a39ee4a,https://biolit.fr/sorties/sortie-2befda92-0bbe-425c-b1ca-58893a39ee4a/,Phil,,8/20/2016 0:00,10.0000000,10.0:55,47.876966000000,-3.931736000000,,Concarneau - Finistère,53470,observation-2befda92-0bbe-425c-b1ca-58893a39ee4a-3,https://biolit.fr/observations/observation-2befda92-0bbe-425c-b1ca-58893a39ee4a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_105419.jpg,,FALSE, +N1,60996,sortie-2befda92-0bbe-425c-b1ca-58893a39ee4a,https://biolit.fr/sorties/sortie-2befda92-0bbe-425c-b1ca-58893a39ee4a/,Phil,,8/20/2016 0:00,10.0000000,10.0:55,47.876966000000,-3.931736000000,,Concarneau - Finistère,53472,observation-2befda92-0bbe-425c-b1ca-58893a39ee4a-4,https://biolit.fr/observations/observation-2befda92-0bbe-425c-b1ca-58893a39ee4a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_105419a.jpg,,FALSE, +N1,60996,sortie-2befda92-0bbe-425c-b1ca-58893a39ee4a,https://biolit.fr/sorties/sortie-2befda92-0bbe-425c-b1ca-58893a39ee4a/,Phil,,8/20/2016 0:00,10.0000000,10.0:55,47.876966000000,-3.931736000000,,Concarneau - Finistère,53474,observation-2befda92-0bbe-425c-b1ca-58893a39ee4a-5,https://biolit.fr/observations/observation-2befda92-0bbe-425c-b1ca-58893a39ee4a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_105250.jpg,,FALSE, +N1,60997,sortie-06ff54d0-441a-4591-ba01-99c59a0ffd31,https://biolit.fr/sorties/sortie-06ff54d0-441a-4591-ba01-99c59a0ffd31/,Phil,,09/02/2016,14.0:45,14.0000000,47.872574000000,-3.911535000000,,Concarneau - Finistère,53476,observation-06ff54d0-441a-4591-ba01-99c59a0ffd31,https://biolit.fr/observations/observation-06ff54d0-441a-4591-ba01-99c59a0ffd31/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160902_144650.jpg,,FALSE, +N1,60999,sortie-7f8ffb6e-df0c-45bd-b1cc-c943d39cbdba,https://biolit.fr/sorties/sortie-7f8ffb6e-df0c-45bd-b1cc-c943d39cbdba/,Phil,,8/20/2016 0:00,11.0000000,11.000005,47.876823000000,-3.932936000000,,Concarneau - Finistère,53490,observation-7f8ffb6e-df0c-45bd-b1cc-c943d39cbdba,https://biolit.fr/observations/observation-7f8ffb6e-df0c-45bd-b1cc-c943d39cbdba/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_110050.jpg,,FALSE, +N1,60999,sortie-7f8ffb6e-df0c-45bd-b1cc-c943d39cbdba,https://biolit.fr/sorties/sortie-7f8ffb6e-df0c-45bd-b1cc-c943d39cbdba/,Phil,,8/20/2016 0:00,11.0000000,11.000005,47.876823000000,-3.932936000000,,Concarneau - Finistère,53492,observation-7f8ffb6e-df0c-45bd-b1cc-c943d39cbdba-2,https://biolit.fr/observations/observation-7f8ffb6e-df0c-45bd-b1cc-c943d39cbdba-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_105742.jpg,,FALSE, +N1,61000,sortie-16a9821a-900c-4cfd-b0b3-fba66a112846,https://biolit.fr/sorties/sortie-16a9821a-900c-4cfd-b0b3-fba66a112846/,Phil,,8/31/2016 0:00,13.0:15,13.0000000,47.873007000000,-3.910021000000,,Concarneau - Finistère,53494,observation-16a9821a-900c-4cfd-b0b3-fba66a112846,https://biolit.fr/observations/observation-16a9821a-900c-4cfd-b0b3-fba66a112846/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160831_131755.jpg,,FALSE, +N1,61000,sortie-16a9821a-900c-4cfd-b0b3-fba66a112846,https://biolit.fr/sorties/sortie-16a9821a-900c-4cfd-b0b3-fba66a112846/,Phil,,8/31/2016 0:00,13.0:15,13.0000000,47.873007000000,-3.910021000000,,Concarneau - Finistère,53496,observation-16a9821a-900c-4cfd-b0b3-fba66a112846-2,https://biolit.fr/observations/observation-16a9821a-900c-4cfd-b0b3-fba66a112846-2/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/20160831_131603.jpg,,TRUE, +N1,61001,sortie-bd9d3cff-f726-45d1-8c23-37a72829e6e7,https://biolit.fr/sorties/sortie-bd9d3cff-f726-45d1-8c23-37a72829e6e7/,Phil,,8/20/2016 0:00,10.0:45,10.0000000,47.877239000000,-3.93254900000,,Concarneau - Finistère,53498,observation-bd9d3cff-f726-45d1-8c23-37a72829e6e7,https://biolit.fr/observations/observation-bd9d3cff-f726-45d1-8c23-37a72829e6e7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_104747.jpg,,FALSE, +N1,61001,sortie-bd9d3cff-f726-45d1-8c23-37a72829e6e7,https://biolit.fr/sorties/sortie-bd9d3cff-f726-45d1-8c23-37a72829e6e7/,Phil,,8/20/2016 0:00,10.0:45,10.0000000,47.877239000000,-3.93254900000,,Concarneau - Finistère,53500,observation-bd9d3cff-f726-45d1-8c23-37a72829e6e7-2,https://biolit.fr/observations/observation-bd9d3cff-f726-45d1-8c23-37a72829e6e7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_104339.jpg,,FALSE, +N1,61002,sortie-1547dbd8-c9b4-4a26-867a-ca566067c876,https://biolit.fr/sorties/sortie-1547dbd8-c9b4-4a26-867a-ca566067c876/,Ecole de la mer,,08/01/2016,9.0000000,10.0000000,16.2154250000,-61.536946000000,,Ilet cochon,53502,observation-1547dbd8-c9b4-4a26-867a-ca566067c876,https://biolit.fr/observations/observation-1547dbd8-c9b4-4a26-867a-ca566067c876/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN1149-001.JPG,,FALSE, +N1,61003,sortie-68965a7e-b112-4327-afac-6d50b9dd647c,https://biolit.fr/sorties/sortie-68965a7e-b112-4327-afac-6d50b9dd647c/,Phil,,8/20/2016 0:00,11.000005,11.0000000,47.876955000000,-3.932702000000,,Concarneau - Finistère,53504,observation-68965a7e-b112-4327-afac-6d50b9dd647c,https://biolit.fr/observations/observation-68965a7e-b112-4327-afac-6d50b9dd647c/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_110801.jpg,,FALSE, +N1,61003,sortie-68965a7e-b112-4327-afac-6d50b9dd647c,https://biolit.fr/sorties/sortie-68965a7e-b112-4327-afac-6d50b9dd647c/,Phil,,8/20/2016 0:00,11.000005,11.0000000,47.876955000000,-3.932702000000,,Concarneau - Finistère,53506,observation-68965a7e-b112-4327-afac-6d50b9dd647c-2,https://biolit.fr/observations/observation-68965a7e-b112-4327-afac-6d50b9dd647c-2/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20160820_110752.jpg,,TRUE, +N1,61003,sortie-68965a7e-b112-4327-afac-6d50b9dd647c,https://biolit.fr/sorties/sortie-68965a7e-b112-4327-afac-6d50b9dd647c/,Phil,,8/20/2016 0:00,11.000005,11.0000000,47.876955000000,-3.932702000000,,Concarneau - Finistère,53508,observation-68965a7e-b112-4327-afac-6d50b9dd647c-3,https://biolit.fr/observations/observation-68965a7e-b112-4327-afac-6d50b9dd647c-3/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20160820_110751.jpg,,TRUE, +N1,61003,sortie-68965a7e-b112-4327-afac-6d50b9dd647c,https://biolit.fr/sorties/sortie-68965a7e-b112-4327-afac-6d50b9dd647c/,Phil,,8/20/2016 0:00,11.000005,11.0000000,47.876955000000,-3.932702000000,,Concarneau - Finistère,53510,observation-68965a7e-b112-4327-afac-6d50b9dd647c-4,https://biolit.fr/observations/observation-68965a7e-b112-4327-afac-6d50b9dd647c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_110740.jpg,,FALSE, +N1,61003,sortie-68965a7e-b112-4327-afac-6d50b9dd647c,https://biolit.fr/sorties/sortie-68965a7e-b112-4327-afac-6d50b9dd647c/,Phil,,8/20/2016 0:00,11.000005,11.0000000,47.876955000000,-3.932702000000,,Concarneau - Finistère,53512,observation-68965a7e-b112-4327-afac-6d50b9dd647c-5,https://biolit.fr/observations/observation-68965a7e-b112-4327-afac-6d50b9dd647c-5/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20160820_110714.jpg,,TRUE, +N1,61004,sortie-074d3dc1-e28b-4a98-b679-85a331adfe92,https://biolit.fr/sorties/sortie-074d3dc1-e28b-4a98-b679-85a331adfe92/,Ecole de la mer,,8/18/2016 0:00,9.0000000,10.0000000,45.279634000000,-4.237392000000,,Ilet cochon,53514,observation-074d3dc1-e28b-4a98-b679-85a331adfe92,https://biolit.fr/observations/observation-074d3dc1-e28b-4a98-b679-85a331adfe92/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0723-001.JPG,,FALSE, +N1,61005,sortie-ad567b89-093e-484f-93ee-8f74e65f02e8,https://biolit.fr/sorties/sortie-ad567b89-093e-484f-93ee-8f74e65f02e8/,Phil,,8/20/2016 0:00,11.0:15,11.0000000,47.87596100000,-3.930693000000,,Concarneau - Finistère,53516,observation-ad567b89-093e-484f-93ee-8f74e65f02e8,https://biolit.fr/observations/observation-ad567b89-093e-484f-93ee-8f74e65f02e8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_111832.jpg,,FALSE, +N1,61006,sortie-34b631ab-8e92-4ebe-93f0-6b14e647d008,https://biolit.fr/sorties/sortie-34b631ab-8e92-4ebe-93f0-6b14e647d008/,Ecole de la mer,,8/29/2016 0:00,15.0000000,17.0000000,16.215497000000,-61.537702000000,,ilet cochon ,53518,observation-34b631ab-8e92-4ebe-93f0-6b14e647d008,https://biolit.fr/observations/observation-34b631ab-8e92-4ebe-93f0-6b14e647d008/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0715-001.JPG,,FALSE, +N1,61007,sortie-6c99c3f8-78e2-4c0c-9b08-9a788531c7f6,https://biolit.fr/sorties/sortie-6c99c3f8-78e2-4c0c-9b08-9a788531c7f6/,Ecole de la mer,,8/18/2016 0:00,9.0000000,11.0000000,16.215559000000,-61.537059000000,,Ilet cochon ,53520,observation-6c99c3f8-78e2-4c0c-9b08-9a788531c7f6,https://biolit.fr/observations/observation-6c99c3f8-78e2-4c0c-9b08-9a788531c7f6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0730-001.JPG,,FALSE, +N1,61008,sortie-d44648aa-528d-4288-9251-6fdb87e554f2,https://biolit.fr/sorties/sortie-d44648aa-528d-4288-9251-6fdb87e554f2/,Nils,,8/28/2016 0:00,16.0000000,17.0000000,43.165973000000,5.605872000000,,Plage du Mugel,53522,observation-d44648aa-528d-4288-9251-6fdb87e554f2,https://biolit.fr/observations/observation-d44648aa-528d-4288-9251-6fdb87e554f2/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/20160828_155409.jpg,,TRUE, +N1,61008,sortie-d44648aa-528d-4288-9251-6fdb87e554f2,https://biolit.fr/sorties/sortie-d44648aa-528d-4288-9251-6fdb87e554f2/,Nils,,8/28/2016 0:00,16.0000000,17.0000000,43.165973000000,5.605872000000,,Plage du Mugel,53524,observation-d44648aa-528d-4288-9251-6fdb87e554f2-2,https://biolit.fr/observations/observation-d44648aa-528d-4288-9251-6fdb87e554f2-2/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/20160828_155433.jpg,,TRUE, +N1,61008,sortie-d44648aa-528d-4288-9251-6fdb87e554f2,https://biolit.fr/sorties/sortie-d44648aa-528d-4288-9251-6fdb87e554f2/,Nils,,8/28/2016 0:00,16.0000000,17.0000000,43.165973000000,5.605872000000,,Plage du Mugel,53526,observation-d44648aa-528d-4288-9251-6fdb87e554f2-3,https://biolit.fr/observations/observation-d44648aa-528d-4288-9251-6fdb87e554f2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160828_173615-rotated.jpg,,FALSE, +N1,61008,sortie-d44648aa-528d-4288-9251-6fdb87e554f2,https://biolit.fr/sorties/sortie-d44648aa-528d-4288-9251-6fdb87e554f2/,Nils,,8/28/2016 0:00,16.0000000,17.0000000,43.165973000000,5.605872000000,,Plage du Mugel,53528,observation-d44648aa-528d-4288-9251-6fdb87e554f2-4,https://biolit.fr/observations/observation-d44648aa-528d-4288-9251-6fdb87e554f2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160828_173745-rotated.jpg,,FALSE, +N1,61008,sortie-d44648aa-528d-4288-9251-6fdb87e554f2,https://biolit.fr/sorties/sortie-d44648aa-528d-4288-9251-6fdb87e554f2/,Nils,,8/28/2016 0:00,16.0000000,17.0000000,43.165973000000,5.605872000000,,Plage du Mugel,53530,observation-d44648aa-528d-4288-9251-6fdb87e554f2-5,https://biolit.fr/observations/observation-d44648aa-528d-4288-9251-6fdb87e554f2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160828_173955-rotated.jpg,,FALSE, +N1,61009,sortie-0b00a376-7158-4395-a8fe-a7bfae7aa7ea,https://biolit.fr/sorties/sortie-0b00a376-7158-4395-a8fe-a7bfae7aa7ea/,Nils,,8/27/2016 0:00,11.0000000,11.0000000,43.282079000000,5.305814000000,,Plage du Frioul,53532,observation-0b00a376-7158-4395-a8fe-a7bfae7aa7ea,https://biolit.fr/observations/observation-0b00a376-7158-4395-a8fe-a7bfae7aa7ea/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/2023/07/P1070181-scaled.jpeg,,TRUE, +N1,61009,sortie-0b00a376-7158-4395-a8fe-a7bfae7aa7ea,https://biolit.fr/sorties/sortie-0b00a376-7158-4395-a8fe-a7bfae7aa7ea/,Nils,,8/27/2016 0:00,11.0000000,11.0000000,43.282079000000,5.305814000000,,Plage du Frioul,53534,observation-0b00a376-7158-4395-a8fe-a7bfae7aa7ea-2,https://biolit.fr/observations/observation-0b00a376-7158-4395-a8fe-a7bfae7aa7ea-2/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/2023/07/P1070182-scaled.jpeg,,TRUE, +N1,61010,sortie-adc284d0-5ca8-4ea7-b46c-43e07547cf57,https://biolit.fr/sorties/sortie-adc284d0-5ca8-4ea7-b46c-43e07547cf57/,Phil,,8/20/2016 0:00,10.0000000,10.0:45,47.876551000000,-3.931409000000,,Concarneau - Finistère,53536,observation-adc284d0-5ca8-4ea7-b46c-43e07547cf57,https://biolit.fr/observations/observation-adc284d0-5ca8-4ea7-b46c-43e07547cf57/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_104113-scaled.jpg,,FALSE, +N1,61010,sortie-adc284d0-5ca8-4ea7-b46c-43e07547cf57,https://biolit.fr/sorties/sortie-adc284d0-5ca8-4ea7-b46c-43e07547cf57/,Phil,,8/20/2016 0:00,10.0000000,10.0:45,47.876551000000,-3.931409000000,,Concarneau - Finistère,53538,observation-adc284d0-5ca8-4ea7-b46c-43e07547cf57-2,https://biolit.fr/observations/observation-adc284d0-5ca8-4ea7-b46c-43e07547cf57-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_104137.jpg,,FALSE, +N1,61010,sortie-adc284d0-5ca8-4ea7-b46c-43e07547cf57,https://biolit.fr/sorties/sortie-adc284d0-5ca8-4ea7-b46c-43e07547cf57/,Phil,,8/20/2016 0:00,10.0000000,10.0:45,47.876551000000,-3.931409000000,,Concarneau - Finistère,53540,observation-adc284d0-5ca8-4ea7-b46c-43e07547cf57-3,https://biolit.fr/observations/observation-adc284d0-5ca8-4ea7-b46c-43e07547cf57-3/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/20160820_104012.jpg,,TRUE, +N1,61010,sortie-adc284d0-5ca8-4ea7-b46c-43e07547cf57,https://biolit.fr/sorties/sortie-adc284d0-5ca8-4ea7-b46c-43e07547cf57/,Phil,,8/20/2016 0:00,10.0000000,10.0:45,47.876551000000,-3.931409000000,,Concarneau - Finistère,53542,observation-adc284d0-5ca8-4ea7-b46c-43e07547cf57-4,https://biolit.fr/observations/observation-adc284d0-5ca8-4ea7-b46c-43e07547cf57-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160820_104130.jpg,,TRUE, +N1,61011,sortie-aa8f9c98-5f23-4dfe-9fdb-c6f621c4e1e8,https://biolit.fr/sorties/sortie-aa8f9c98-5f23-4dfe-9fdb-c6f621c4e1e8/,Phil,,8/20/2016 0:00,10.0000000,10.0:35,47.876502000000,-3.931315000000,,Concarneau - Finistère,53544,observation-aa8f9c98-5f23-4dfe-9fdb-c6f621c4e1e8,https://biolit.fr/observations/observation-aa8f9c98-5f23-4dfe-9fdb-c6f621c4e1e8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_103500.jpg,,FALSE, +N1,61011,sortie-aa8f9c98-5f23-4dfe-9fdb-c6f621c4e1e8,https://biolit.fr/sorties/sortie-aa8f9c98-5f23-4dfe-9fdb-c6f621c4e1e8/,Phil,,8/20/2016 0:00,10.0000000,10.0:35,47.876502000000,-3.931315000000,,Concarneau - Finistère,53546,observation-aa8f9c98-5f23-4dfe-9fdb-c6f621c4e1e8-2,https://biolit.fr/observations/observation-aa8f9c98-5f23-4dfe-9fdb-c6f621c4e1e8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_103558.jpg,,FALSE, +N1,61011,sortie-aa8f9c98-5f23-4dfe-9fdb-c6f621c4e1e8,https://biolit.fr/sorties/sortie-aa8f9c98-5f23-4dfe-9fdb-c6f621c4e1e8/,Phil,,8/20/2016 0:00,10.0000000,10.0:35,47.876502000000,-3.931315000000,,Concarneau - Finistère,53548,observation-aa8f9c98-5f23-4dfe-9fdb-c6f621c4e1e8-3,https://biolit.fr/observations/observation-aa8f9c98-5f23-4dfe-9fdb-c6f621c4e1e8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160820_103652.jpg,,FALSE, +N1,61012,sortie-15911e65-e691-4d55-b674-fba64bb384b2,https://biolit.fr/sorties/sortie-15911e65-e691-4d55-b674-fba64bb384b2/,Nils,,8/15/2016 0:00,16.0000000,16.0000000,43.188071000000,5.647363000000,,Plage d'Arène Cros,53550,observation-15911e65-e691-4d55-b674-fba64bb384b2,https://biolit.fr/observations/observation-15911e65-e691-4d55-b674-fba64bb384b2/,Ophioderma longicaudum,Ophiure lisse,,https://biolit.fr/wp-content/uploads/2023/07/20160814_163141-rotated.jpg,,TRUE, +N1,61012,sortie-15911e65-e691-4d55-b674-fba64bb384b2,https://biolit.fr/sorties/sortie-15911e65-e691-4d55-b674-fba64bb384b2/,Nils,,8/15/2016 0:00,16.0000000,16.0000000,43.188071000000,5.647363000000,,Plage d'Arène Cros,53552,observation-15911e65-e691-4d55-b674-fba64bb384b2-2,https://biolit.fr/observations/observation-15911e65-e691-4d55-b674-fba64bb384b2-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/20160814_165117.jpg,,TRUE, +N1,61013,sortie-cabc6eb2-8d3e-4763-801b-1f13456a1543,https://biolit.fr/sorties/sortie-cabc6eb2-8d3e-4763-801b-1f13456a1543/,cigale33,,08/10/2016,17.0000000,17.0:45,44.65643100000,-1.197119000000,,"Arcachon,",53554,observation-cabc6eb2-8d3e-4763-801b-1f13456a1543,https://biolit.fr/observations/observation-cabc6eb2-8d3e-4763-801b-1f13456a1543/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090746.JPG,,FALSE, +N1,61013,sortie-cabc6eb2-8d3e-4763-801b-1f13456a1543,https://biolit.fr/sorties/sortie-cabc6eb2-8d3e-4763-801b-1f13456a1543/,cigale33,,08/10/2016,17.0000000,17.0:45,44.65643100000,-1.197119000000,,"Arcachon,",53556,observation-cabc6eb2-8d3e-4763-801b-1f13456a1543-2,https://biolit.fr/observations/observation-cabc6eb2-8d3e-4763-801b-1f13456a1543-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1090745.JPG,,TRUE, +N1,61013,sortie-cabc6eb2-8d3e-4763-801b-1f13456a1543,https://biolit.fr/sorties/sortie-cabc6eb2-8d3e-4763-801b-1f13456a1543/,cigale33,,08/10/2016,17.0000000,17.0:45,44.65643100000,-1.197119000000,,"Arcachon,",53558,observation-cabc6eb2-8d3e-4763-801b-1f13456a1543-3,https://biolit.fr/observations/observation-cabc6eb2-8d3e-4763-801b-1f13456a1543-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090739.JPG,,FALSE, +N1,61013,sortie-cabc6eb2-8d3e-4763-801b-1f13456a1543,https://biolit.fr/sorties/sortie-cabc6eb2-8d3e-4763-801b-1f13456a1543/,cigale33,,08/10/2016,17.0000000,17.0:45,44.65643100000,-1.197119000000,,"Arcachon,",53560,observation-cabc6eb2-8d3e-4763-801b-1f13456a1543-4,https://biolit.fr/observations/observation-cabc6eb2-8d3e-4763-801b-1f13456a1543-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090744.JPG,,FALSE, +N1,61014,sortie-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8,https://biolit.fr/sorties/sortie-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8/,Jérémie,,7/30/2016 0:00,22.0000000,22.0000000,48.518544000000,-4.764908000000,,Porspoder,53562,observation-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8,https://biolit.fr/observations/observation-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5123-scaled.jpg,,FALSE, +N1,61014,sortie-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8,https://biolit.fr/sorties/sortie-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8/,Jérémie,,7/30/2016 0:00,22.0000000,22.0000000,48.518544000000,-4.764908000000,,Porspoder,53564,observation-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8-2,https://biolit.fr/observations/observation-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5124-scaled.jpg,,FALSE, +N1,61014,sortie-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8,https://biolit.fr/sorties/sortie-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8/,Jérémie,,7/30/2016 0:00,22.0000000,22.0000000,48.518544000000,-4.764908000000,,Porspoder,53566,observation-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8-3,https://biolit.fr/observations/observation-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5125-scaled.jpg,,FALSE, +N1,61014,sortie-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8,https://biolit.fr/sorties/sortie-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8/,Jérémie,,7/30/2016 0:00,22.0000000,22.0000000,48.518544000000,-4.764908000000,,Porspoder,53568,observation-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8-4,https://biolit.fr/observations/observation-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_5126-scaled.jpg,,FALSE, +N1,61014,sortie-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8,https://biolit.fr/sorties/sortie-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8/,Jérémie,,7/30/2016 0:00,22.0000000,22.0000000,48.518544000000,-4.764908000000,,Porspoder,53570,observation-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8-5,https://biolit.fr/observations/observation-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8-5/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_5127-scaled.jpg,,TRUE, +N1,61014,sortie-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8,https://biolit.fr/sorties/sortie-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8/,Jérémie,,7/30/2016 0:00,22.0000000,22.0000000,48.518544000000,-4.764908000000,,Porspoder,53572,observation-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8-6,https://biolit.fr/observations/observation-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8-6/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_5128-scaled.jpg,,TRUE, +N1,61014,sortie-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8,https://biolit.fr/sorties/sortie-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8/,Jérémie,,7/30/2016 0:00,22.0000000,22.0000000,48.518544000000,-4.764908000000,,Porspoder,53574,observation-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8-7,https://biolit.fr/observations/observation-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8-7/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_5129-scaled.jpg,,TRUE, +N1,61014,sortie-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8,https://biolit.fr/sorties/sortie-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8/,Jérémie,,7/30/2016 0:00,22.0000000,22.0000000,48.518544000000,-4.764908000000,,Porspoder,53576,observation-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8-8,https://biolit.fr/observations/observation-e4b7c1bb-f9f8-4d3e-8c16-d6c0a7f788a8-8/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_5130-scaled.jpg,,TRUE, +N1,61015,sortie-f50f9dbb-1852-4ae9-9640-32a2091a6d4c,https://biolit.fr/sorties/sortie-f50f9dbb-1852-4ae9-9640-32a2091a6d4c/,Nils,,7/30/2016 0:00,11.0000000,11.0000000,43.185185000000,5.621617000000,,"plage lumière, la ciotat",53578,observation-f50f9dbb-1852-4ae9-9640-32a2091a6d4c,https://biolit.fr/observations/observation-f50f9dbb-1852-4ae9-9640-32a2091a6d4c/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/2023/07/20160730_110405.jpg,,TRUE, +N1,61016,sortie-f86215bb-93f0-4003-bc18-65e871816a70,https://biolit.fr/sorties/sortie-f86215bb-93f0-4003-bc18-65e871816a70/,azelie,,07/11/2016,15.0:45,18.0:45,51.852824000000,-9.672578000000,,Kenmare Bay,53580,observation-f86215bb-93f0-4003-bc18-65e871816a70,https://biolit.fr/observations/observation-f86215bb-93f0-4003-bc18-65e871816a70/,,,,https://biolit.fr/wp-content/uploads/2023/07/100_3905.JPG,,FALSE, +N1,61016,sortie-f86215bb-93f0-4003-bc18-65e871816a70,https://biolit.fr/sorties/sortie-f86215bb-93f0-4003-bc18-65e871816a70/,azelie,,07/11/2016,15.0:45,18.0:45,51.852824000000,-9.672578000000,,Kenmare Bay,53582,observation-f86215bb-93f0-4003-bc18-65e871816a70-2,https://biolit.fr/observations/observation-f86215bb-93f0-4003-bc18-65e871816a70-2/,Phoca vitulina,Phoque commun,,https://biolit.fr/wp-content/uploads/2023/07/100_3922-scaled.jpg,,TRUE, +N1,61016,sortie-f86215bb-93f0-4003-bc18-65e871816a70,https://biolit.fr/sorties/sortie-f86215bb-93f0-4003-bc18-65e871816a70/,azelie,,07/11/2016,15.0:45,18.0:45,51.852824000000,-9.672578000000,,Kenmare Bay,53584,observation-f86215bb-93f0-4003-bc18-65e871816a70-3,https://biolit.fr/observations/observation-f86215bb-93f0-4003-bc18-65e871816a70-3/,Phoca vitulina,Phoque commun,,https://biolit.fr/wp-content/uploads/2023/07/100_3937-scaled.jpg,,TRUE, +N1,61016,sortie-f86215bb-93f0-4003-bc18-65e871816a70,https://biolit.fr/sorties/sortie-f86215bb-93f0-4003-bc18-65e871816a70/,azelie,,07/11/2016,15.0:45,18.0:45,51.852824000000,-9.672578000000,,Kenmare Bay,53586,observation-f86215bb-93f0-4003-bc18-65e871816a70-4,https://biolit.fr/observations/observation-f86215bb-93f0-4003-bc18-65e871816a70-4/,Phoca vitulina,Phoque commun,,https://biolit.fr/wp-content/uploads/2023/07/100_3939.JPG,,TRUE, +N1,61016,sortie-f86215bb-93f0-4003-bc18-65e871816a70,https://biolit.fr/sorties/sortie-f86215bb-93f0-4003-bc18-65e871816a70/,azelie,,07/11/2016,15.0:45,18.0:45,51.852824000000,-9.672578000000,,Kenmare Bay,53588,observation-f86215bb-93f0-4003-bc18-65e871816a70-5,https://biolit.fr/observations/observation-f86215bb-93f0-4003-bc18-65e871816a70-5/,Phoca vitulina,Phoque commun,,https://biolit.fr/wp-content/uploads/2023/07/100_3940-scaled.jpg,,TRUE, +N1,61016,sortie-f86215bb-93f0-4003-bc18-65e871816a70,https://biolit.fr/sorties/sortie-f86215bb-93f0-4003-bc18-65e871816a70/,azelie,,07/11/2016,15.0:45,18.0:45,51.852824000000,-9.672578000000,,Kenmare Bay,53590,observation-f86215bb-93f0-4003-bc18-65e871816a70-6,https://biolit.fr/observations/observation-f86215bb-93f0-4003-bc18-65e871816a70-6/,Phoca vitulina,Phoque commun,,https://biolit.fr/wp-content/uploads/2023/07/100_3954-scaled.jpg,,TRUE, +N1,61016,sortie-f86215bb-93f0-4003-bc18-65e871816a70,https://biolit.fr/sorties/sortie-f86215bb-93f0-4003-bc18-65e871816a70/,azelie,,07/11/2016,15.0:45,18.0:45,51.852824000000,-9.672578000000,,Kenmare Bay,53592,observation-f86215bb-93f0-4003-bc18-65e871816a70-7,https://biolit.fr/observations/observation-f86215bb-93f0-4003-bc18-65e871816a70-7/,Phoca vitulina,Phoque commun,,https://biolit.fr/wp-content/uploads/2023/07/100_3932-scaled.jpg,,TRUE, +N1,61017,sortie-e6f83722-af0a-4302-9106-3ec1895ff8ea,https://biolit.fr/sorties/sortie-e6f83722-af0a-4302-9106-3ec1895ff8ea/,azelie,,07/05/2016,12.0000000,12.0000000,52.935473000000,-9.354489000000,,Lahinch beach,53594,observation-e6f83722-af0a-4302-9106-3ec1895ff8ea,https://biolit.fr/observations/observation-e6f83722-af0a-4302-9106-3ec1895ff8ea/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3179.jpg,,FALSE, +N1,61017,sortie-e6f83722-af0a-4302-9106-3ec1895ff8ea,https://biolit.fr/sorties/sortie-e6f83722-af0a-4302-9106-3ec1895ff8ea/,azelie,,07/05/2016,12.0000000,12.0000000,52.935473000000,-9.354489000000,,Lahinch beach,53596,observation-e6f83722-af0a-4302-9106-3ec1895ff8ea-2,https://biolit.fr/observations/observation-e6f83722-af0a-4302-9106-3ec1895ff8ea-2/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3183-scaled.jpg,,TRUE, +N1,61017,sortie-e6f83722-af0a-4302-9106-3ec1895ff8ea,https://biolit.fr/sorties/sortie-e6f83722-af0a-4302-9106-3ec1895ff8ea/,azelie,,07/05/2016,12.0000000,12.0000000,52.935473000000,-9.354489000000,,Lahinch beach,53598,observation-e6f83722-af0a-4302-9106-3ec1895ff8ea-3,https://biolit.fr/observations/observation-e6f83722-af0a-4302-9106-3ec1895ff8ea-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3180-scaled.jpg,,FALSE, +N1,61017,sortie-e6f83722-af0a-4302-9106-3ec1895ff8ea,https://biolit.fr/sorties/sortie-e6f83722-af0a-4302-9106-3ec1895ff8ea/,azelie,,07/05/2016,12.0000000,12.0000000,52.935473000000,-9.354489000000,,Lahinch beach,53600,observation-e6f83722-af0a-4302-9106-3ec1895ff8ea-4,https://biolit.fr/observations/observation-e6f83722-af0a-4302-9106-3ec1895ff8ea-4/,Donax vittatus,Donace des canards,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3196-scaled.jpg,,TRUE, +N1,61017,sortie-e6f83722-af0a-4302-9106-3ec1895ff8ea,https://biolit.fr/sorties/sortie-e6f83722-af0a-4302-9106-3ec1895ff8ea/,azelie,,07/05/2016,12.0000000,12.0000000,52.935473000000,-9.354489000000,,Lahinch beach,53602,observation-e6f83722-af0a-4302-9106-3ec1895ff8ea-5,https://biolit.fr/observations/observation-e6f83722-af0a-4302-9106-3ec1895ff8ea-5/,Donax vittatus,Donace des canards,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3195-scaled.jpg,,TRUE, +N1,61017,sortie-e6f83722-af0a-4302-9106-3ec1895ff8ea,https://biolit.fr/sorties/sortie-e6f83722-af0a-4302-9106-3ec1895ff8ea/,azelie,,07/05/2016,12.0000000,12.0000000,52.935473000000,-9.354489000000,,Lahinch beach,53604,observation-e6f83722-af0a-4302-9106-3ec1895ff8ea-6,https://biolit.fr/observations/observation-e6f83722-af0a-4302-9106-3ec1895ff8ea-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3202-scaled.jpg,,FALSE, +N1,61017,sortie-e6f83722-af0a-4302-9106-3ec1895ff8ea,https://biolit.fr/sorties/sortie-e6f83722-af0a-4302-9106-3ec1895ff8ea/,azelie,,07/05/2016,12.0000000,12.0000000,52.935473000000,-9.354489000000,,Lahinch beach,53605,observation-e6f83722-af0a-4302-9106-3ec1895ff8ea-7,https://biolit.fr/observations/observation-e6f83722-af0a-4302-9106-3ec1895ff8ea-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3189-scaled.jpg,,FALSE, +N1,61017,sortie-e6f83722-af0a-4302-9106-3ec1895ff8ea,https://biolit.fr/sorties/sortie-e6f83722-af0a-4302-9106-3ec1895ff8ea/,azelie,,07/05/2016,12.0000000,12.0000000,52.935473000000,-9.354489000000,,Lahinch beach,53606,observation-e6f83722-af0a-4302-9106-3ec1895ff8ea-8,https://biolit.fr/observations/observation-e6f83722-af0a-4302-9106-3ec1895ff8ea-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3191-scaled.jpg,,FALSE, +N1,61018,sortie-8c592ee3-136b-4633-8e72-5ef4a367df7a,https://biolit.fr/sorties/sortie-8c592ee3-136b-4633-8e72-5ef4a367df7a/,corinne vasseur,,8/19/2015 0:00,8.0000000,9.0000000,50.257974000000,1.582540000000,,Saint Quentin en tourmont,53607,observation-8c592ee3-136b-4633-8e72-5ef4a367df7a,https://biolit.fr/observations/observation-8c592ee3-136b-4633-8e72-5ef4a367df7a/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1377.JPG,,FALSE, +N1,61018,sortie-8c592ee3-136b-4633-8e72-5ef4a367df7a,https://biolit.fr/sorties/sortie-8c592ee3-136b-4633-8e72-5ef4a367df7a/,corinne vasseur,,8/19/2015 0:00,8.0000000,9.0000000,50.257974000000,1.582540000000,,Saint Quentin en tourmont,53609,observation-8c592ee3-136b-4633-8e72-5ef4a367df7a-2,https://biolit.fr/observations/observation-8c592ee3-136b-4633-8e72-5ef4a367df7a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1376.JPG,,FALSE, +N1,61019,sortie-6eb58645-fd55-4b02-8429-7b2c299b8777,https://biolit.fr/sorties/sortie-6eb58645-fd55-4b02-8429-7b2c299b8777/,corinne vasseur,,4/15/2015 0:00,19.0:45,20.0000000,50.595223000000,1.577701000000,,Plage du mont Saint Frieux Dannes,53611,observation-6eb58645-fd55-4b02-8429-7b2c299b8777,https://biolit.fr/observations/observation-6eb58645-fd55-4b02-8429-7b2c299b8777/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0392-scaled.jpg,,FALSE, +N1,61019,sortie-6eb58645-fd55-4b02-8429-7b2c299b8777,https://biolit.fr/sorties/sortie-6eb58645-fd55-4b02-8429-7b2c299b8777/,corinne vasseur,,4/15/2015 0:00,19.0:45,20.0000000,50.595223000000,1.577701000000,,Plage du mont Saint Frieux Dannes,53613,observation-6eb58645-fd55-4b02-8429-7b2c299b8777-2,https://biolit.fr/observations/observation-6eb58645-fd55-4b02-8429-7b2c299b8777-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0393-scaled.jpg,,FALSE, +N1,61020,sortie-b3633e8d-2cd4-4b56-adb5-e6812a287474,https://biolit.fr/sorties/sortie-b3633e8d-2cd4-4b56-adb5-e6812a287474/,Marine,,07/07/2016,12.0000000,16.0000000,48.639739000000,-2.077535000000,,Plage de la roche pelée ,53615,observation-b3633e8d-2cd4-4b56-adb5-e6812a287474,https://biolit.fr/observations/observation-b3633e8d-2cd4-4b56-adb5-e6812a287474/,,,,https://biolit.fr/wp-content/uploads/2023/07/image_55-scaled.jpeg,,FALSE, +N1,61021,sortie-f001a86c-8f77-4593-9921-92c4c2f53bba,https://biolit.fr/sorties/sortie-f001a86c-8f77-4593-9921-92c4c2f53bba/,Marine,,07/05/2016,18.0000000,20.0000000,48.638633000000,-2.069038000000,,Plage de Saint Enogat,53617,observation-f001a86c-8f77-4593-9921-92c4c2f53bba,https://biolit.fr/observations/observation-f001a86c-8f77-4593-9921-92c4c2f53bba/,,,,https://biolit.fr/wp-content/uploads/2023/07/image_53-scaled.jpeg,,FALSE, +N1,61022,sortie-c5008ec1-fa66-4159-b67b-870c14aaa906,https://biolit.fr/sorties/sortie-c5008ec1-fa66-4159-b67b-870c14aaa906/,Marine,,07/05/2016,9.0000000,10.0000000,48.638981000000,-2.067804000000,,Plage Saint Enognat,53619,observation-c5008ec1-fa66-4159-b67b-870c14aaa906,https://biolit.fr/observations/observation-c5008ec1-fa66-4159-b67b-870c14aaa906/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/image_51-scaled.jpeg,,TRUE, +N1,61023,sortie-e17e97cc-d7f8-4d42-ae02-8b353f0ac91d,https://biolit.fr/sorties/sortie-e17e97cc-d7f8-4d42-ae02-8b353f0ac91d/,herve laurent,,7/27/2016 0:00,21.0000000,23.0000000,48.397395000000,-4.966202000000,,molene,53621,observation-e17e97cc-d7f8-4d42-ae02-8b353f0ac91d,https://biolit.fr/observations/observation-e17e97cc-d7f8-4d42-ae02-8b353f0ac91d/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_4776-scaled.jpg,,FALSE, +N1,61023,sortie-e17e97cc-d7f8-4d42-ae02-8b353f0ac91d,https://biolit.fr/sorties/sortie-e17e97cc-d7f8-4d42-ae02-8b353f0ac91d/,herve laurent,,7/27/2016 0:00,21.0000000,23.0000000,48.397395000000,-4.966202000000,,molene,53623,observation-e17e97cc-d7f8-4d42-ae02-8b353f0ac91d-2,https://biolit.fr/observations/observation-e17e97cc-d7f8-4d42-ae02-8b353f0ac91d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_4774-scaled.jpg,,FALSE, +N1,61023,sortie-e17e97cc-d7f8-4d42-ae02-8b353f0ac91d,https://biolit.fr/sorties/sortie-e17e97cc-d7f8-4d42-ae02-8b353f0ac91d/,herve laurent,,7/27/2016 0:00,21.0000000,23.0000000,48.397395000000,-4.966202000000,,molene,53625,observation-e17e97cc-d7f8-4d42-ae02-8b353f0ac91d-3,https://biolit.fr/observations/observation-e17e97cc-d7f8-4d42-ae02-8b353f0ac91d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_4772-scaled.jpg,,FALSE, +N1,61023,sortie-e17e97cc-d7f8-4d42-ae02-8b353f0ac91d,https://biolit.fr/sorties/sortie-e17e97cc-d7f8-4d42-ae02-8b353f0ac91d/,herve laurent,,7/27/2016 0:00,21.0000000,23.0000000,48.397395000000,-4.966202000000,,molene,53627,observation-e17e97cc-d7f8-4d42-ae02-8b353f0ac91d-4,https://biolit.fr/observations/observation-e17e97cc-d7f8-4d42-ae02-8b353f0ac91d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_4771_1-scaled.jpg,,FALSE, +N1,61024,sortie-93d7ac58-6d77-4c87-9c02-a445b4226860,https://biolit.fr/sorties/sortie-93d7ac58-6d77-4c87-9c02-a445b4226860/,azelie,,07/05/2016,11.0000000,11.0:45,52.934800000000,-9.352429000000,,Lahinch beach,53629,observation-93d7ac58-6d77-4c87-9c02-a445b4226860,https://biolit.fr/observations/observation-93d7ac58-6d77-4c87-9c02-a445b4226860/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3138-scaled.jpg,,FALSE, +N1,61024,sortie-93d7ac58-6d77-4c87-9c02-a445b4226860,https://biolit.fr/sorties/sortie-93d7ac58-6d77-4c87-9c02-a445b4226860/,azelie,,07/05/2016,11.0000000,11.0:45,52.934800000000,-9.352429000000,,Lahinch beach,53631,observation-93d7ac58-6d77-4c87-9c02-a445b4226860-2,https://biolit.fr/observations/observation-93d7ac58-6d77-4c87-9c02-a445b4226860-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3139-scaled.jpg,,FALSE, +N1,61024,sortie-93d7ac58-6d77-4c87-9c02-a445b4226860,https://biolit.fr/sorties/sortie-93d7ac58-6d77-4c87-9c02-a445b4226860/,azelie,,07/05/2016,11.0000000,11.0:45,52.934800000000,-9.352429000000,,Lahinch beach,53633,observation-93d7ac58-6d77-4c87-9c02-a445b4226860-3,https://biolit.fr/observations/observation-93d7ac58-6d77-4c87-9c02-a445b4226860-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3143.JPG,,FALSE, +N1,61024,sortie-93d7ac58-6d77-4c87-9c02-a445b4226860,https://biolit.fr/sorties/sortie-93d7ac58-6d77-4c87-9c02-a445b4226860/,azelie,,07/05/2016,11.0000000,11.0:45,52.934800000000,-9.352429000000,,Lahinch beach,53634,observation-93d7ac58-6d77-4c87-9c02-a445b4226860-4,https://biolit.fr/observations/observation-93d7ac58-6d77-4c87-9c02-a445b4226860-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3146.JPG,,FALSE, +N1,61024,sortie-93d7ac58-6d77-4c87-9c02-a445b4226860,https://biolit.fr/sorties/sortie-93d7ac58-6d77-4c87-9c02-a445b4226860/,azelie,,07/05/2016,11.0000000,11.0:45,52.934800000000,-9.352429000000,,Lahinch beach,53635,observation-93d7ac58-6d77-4c87-9c02-a445b4226860-5,https://biolit.fr/observations/observation-93d7ac58-6d77-4c87-9c02-a445b4226860-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3147-scaled.jpg,,FALSE, +N1,61024,sortie-93d7ac58-6d77-4c87-9c02-a445b4226860,https://biolit.fr/sorties/sortie-93d7ac58-6d77-4c87-9c02-a445b4226860/,azelie,,07/05/2016,11.0000000,11.0:45,52.934800000000,-9.352429000000,,Lahinch beach,53636,observation-93d7ac58-6d77-4c87-9c02-a445b4226860-6,https://biolit.fr/observations/observation-93d7ac58-6d77-4c87-9c02-a445b4226860-6/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3152.JPG,,TRUE, +N1,61024,sortie-93d7ac58-6d77-4c87-9c02-a445b4226860,https://biolit.fr/sorties/sortie-93d7ac58-6d77-4c87-9c02-a445b4226860/,azelie,,07/05/2016,11.0000000,11.0:45,52.934800000000,-9.352429000000,,Lahinch beach,53637,observation-93d7ac58-6d77-4c87-9c02-a445b4226860-7,https://biolit.fr/observations/observation-93d7ac58-6d77-4c87-9c02-a445b4226860-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3153.JPG,,FALSE, +N1,61024,sortie-93d7ac58-6d77-4c87-9c02-a445b4226860,https://biolit.fr/sorties/sortie-93d7ac58-6d77-4c87-9c02-a445b4226860/,azelie,,07/05/2016,11.0000000,11.0:45,52.934800000000,-9.352429000000,,Lahinch beach,53638,observation-93d7ac58-6d77-4c87-9c02-a445b4226860-8,https://biolit.fr/observations/observation-93d7ac58-6d77-4c87-9c02-a445b4226860-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3160.JPG,,FALSE, +N1,61024,sortie-93d7ac58-6d77-4c87-9c02-a445b4226860,https://biolit.fr/sorties/sortie-93d7ac58-6d77-4c87-9c02-a445b4226860/,azelie,,07/05/2016,11.0000000,11.0:45,52.934800000000,-9.352429000000,,Lahinch beach,53639,observation-93d7ac58-6d77-4c87-9c02-a445b4226860-9,https://biolit.fr/observations/observation-93d7ac58-6d77-4c87-9c02-a445b4226860-9/,Saccharina latissima,Laminaire sucrée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3165-scaled.jpg,,TRUE, +N1,61024,sortie-93d7ac58-6d77-4c87-9c02-a445b4226860,https://biolit.fr/sorties/sortie-93d7ac58-6d77-4c87-9c02-a445b4226860/,azelie,,07/05/2016,11.0000000,11.0:45,52.934800000000,-9.352429000000,,Lahinch beach,53640,observation-93d7ac58-6d77-4c87-9c02-a445b4226860-10,https://biolit.fr/observations/observation-93d7ac58-6d77-4c87-9c02-a445b4226860-10/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_3167.JPG,,TRUE, +N1,61024,sortie-93d7ac58-6d77-4c87-9c02-a445b4226860,https://biolit.fr/sorties/sortie-93d7ac58-6d77-4c87-9c02-a445b4226860/,azelie,,07/05/2016,11.0000000,11.0:45,52.934800000000,-9.352429000000,,Lahinch beach,53641,observation-93d7ac58-6d77-4c87-9c02-a445b4226860-11,https://biolit.fr/observations/observation-93d7ac58-6d77-4c87-9c02-a445b4226860-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3172.JPG,,FALSE, +N1,61024,sortie-93d7ac58-6d77-4c87-9c02-a445b4226860,https://biolit.fr/sorties/sortie-93d7ac58-6d77-4c87-9c02-a445b4226860/,azelie,,07/05/2016,11.0000000,11.0:45,52.934800000000,-9.352429000000,,Lahinch beach,53642,observation-93d7ac58-6d77-4c87-9c02-a445b4226860-12,https://biolit.fr/observations/observation-93d7ac58-6d77-4c87-9c02-a445b4226860-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3174-scaled.jpg,,FALSE, +N1,61024,sortie-93d7ac58-6d77-4c87-9c02-a445b4226860,https://biolit.fr/sorties/sortie-93d7ac58-6d77-4c87-9c02-a445b4226860/,azelie,,07/05/2016,11.0000000,11.0:45,52.934800000000,-9.352429000000,,Lahinch beach,53643,observation-93d7ac58-6d77-4c87-9c02-a445b4226860-13,https://biolit.fr/observations/observation-93d7ac58-6d77-4c87-9c02-a445b4226860-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3175.JPG,,FALSE, +N1,61024,sortie-93d7ac58-6d77-4c87-9c02-a445b4226860,https://biolit.fr/sorties/sortie-93d7ac58-6d77-4c87-9c02-a445b4226860/,azelie,,07/05/2016,11.0000000,11.0:45,52.934800000000,-9.352429000000,,Lahinch beach,53644,observation-93d7ac58-6d77-4c87-9c02-a445b4226860-14,https://biolit.fr/observations/observation-93d7ac58-6d77-4c87-9c02-a445b4226860-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3176.JPG,,FALSE, +N1,61025,sortie-694cc896-adc1-4777-a828-70185db8e2ac,https://biolit.fr/sorties/sortie-694cc896-adc1-4777-a828-70185db8e2ac/,azelie,,07/11/2016,13.0000000,13.0:55,51.873363000000,-9.59125300000,,Kenmare pier,53645,observation-694cc896-adc1-4777-a828-70185db8e2ac,https://biolit.fr/observations/observation-694cc896-adc1-4777-a828-70185db8e2ac/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3460-scaled.jpg,,TRUE, +N1,61025,sortie-694cc896-adc1-4777-a828-70185db8e2ac,https://biolit.fr/sorties/sortie-694cc896-adc1-4777-a828-70185db8e2ac/,azelie,,07/11/2016,13.0000000,13.0:55,51.873363000000,-9.59125300000,,Kenmare pier,53647,observation-694cc896-adc1-4777-a828-70185db8e2ac-2,https://biolit.fr/observations/observation-694cc896-adc1-4777-a828-70185db8e2ac-2/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3462-scaled.jpg,,TRUE, +N1,61025,sortie-694cc896-adc1-4777-a828-70185db8e2ac,https://biolit.fr/sorties/sortie-694cc896-adc1-4777-a828-70185db8e2ac/,azelie,,07/11/2016,13.0000000,13.0:55,51.873363000000,-9.59125300000,,Kenmare pier,53649,observation-694cc896-adc1-4777-a828-70185db8e2ac-3,https://biolit.fr/observations/observation-694cc896-adc1-4777-a828-70185db8e2ac-3/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3464-scaled.jpg,,TRUE, +N1,61025,sortie-694cc896-adc1-4777-a828-70185db8e2ac,https://biolit.fr/sorties/sortie-694cc896-adc1-4777-a828-70185db8e2ac/,azelie,,07/11/2016,13.0000000,13.0:55,51.873363000000,-9.59125300000,,Kenmare pier,53651,observation-694cc896-adc1-4777-a828-70185db8e2ac-4,https://biolit.fr/observations/observation-694cc896-adc1-4777-a828-70185db8e2ac-4/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3465-scaled.jpg,,TRUE, +N1,61025,sortie-694cc896-adc1-4777-a828-70185db8e2ac,https://biolit.fr/sorties/sortie-694cc896-adc1-4777-a828-70185db8e2ac/,azelie,,07/11/2016,13.0000000,13.0:55,51.873363000000,-9.59125300000,,Kenmare pier,53653,observation-694cc896-adc1-4777-a828-70185db8e2ac-5,https://biolit.fr/observations/observation-694cc896-adc1-4777-a828-70185db8e2ac-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3466-scaled.jpg,,FALSE, +N1,61025,sortie-694cc896-adc1-4777-a828-70185db8e2ac,https://biolit.fr/sorties/sortie-694cc896-adc1-4777-a828-70185db8e2ac/,azelie,,07/11/2016,13.0000000,13.0:55,51.873363000000,-9.59125300000,,Kenmare pier,53655,observation-694cc896-adc1-4777-a828-70185db8e2ac-6,https://biolit.fr/observations/observation-694cc896-adc1-4777-a828-70185db8e2ac-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3470-scaled.jpg,,FALSE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53657,observation-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9440_0.JPG,,FALSE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53659,observation-559b3998-6392-40f0-ae00-f5499b41741e-2,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e-2/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9442_0.JPG,,TRUE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53661,observation-559b3998-6392-40f0-ae00-f5499b41741e-3,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9445_0.JPG,,FALSE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53663,observation-559b3998-6392-40f0-ae00-f5499b41741e-4,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e-4/,Aporrhais pespelecani,Pied de pélican commun,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9532_0.JPG,,TRUE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53665,observation-559b3998-6392-40f0-ae00-f5499b41741e-5,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e-5/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9535_0.JPG,,TRUE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53667,observation-559b3998-6392-40f0-ae00-f5499b41741e-6,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e-6/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9381_0.JPG,,TRUE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53669,observation-559b3998-6392-40f0-ae00-f5499b41741e-7,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e-7/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9382.JPG,,TRUE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53671,observation-559b3998-6392-40f0-ae00-f5499b41741e-8,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e-8/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9384_0.JPG,,TRUE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53673,observation-559b3998-6392-40f0-ae00-f5499b41741e-9,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9510_0.JPG,,FALSE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53675,observation-559b3998-6392-40f0-ae00-f5499b41741e-10,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9430_0.JPG,,FALSE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53677,observation-559b3998-6392-40f0-ae00-f5499b41741e-11,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9444_0.JPG,,FALSE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53679,observation-559b3998-6392-40f0-ae00-f5499b41741e-12,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e-12/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9528_0.JPG,,TRUE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53681,observation-559b3998-6392-40f0-ae00-f5499b41741e-13,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9518_0.JPG,,FALSE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53683,observation-559b3998-6392-40f0-ae00-f5499b41741e-14,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9514_0.JPG,,FALSE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53685,observation-559b3998-6392-40f0-ae00-f5499b41741e-15,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9451_0.JPG,,FALSE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53687,observation-559b3998-6392-40f0-ae00-f5499b41741e-16,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e-16/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9431_1.JPG,,TRUE, +N1,61026,sortie-559b3998-6392-40f0-ae00-f5499b41741e,https://biolit.fr/sorties/sortie-559b3998-6392-40f0-ae00-f5499b41741e/,cigale33,,5/23/2016 0:00,14.0000000,17.0:25,44.513479000000,-1.255312000000,,arcachon,53689,observation-559b3998-6392-40f0-ae00-f5499b41741e-17,https://biolit.fr/observations/observation-559b3998-6392-40f0-ae00-f5499b41741e-17/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/_MG_9436_0.JPG,,TRUE, +N1,61027,sortie-fed8d906-f924-4526-998e-96efce7d48d1,https://biolit.fr/sorties/sortie-fed8d906-f924-4526-998e-96efce7d48d1/,cigale33,,7/19/2016 0:00,9.0000000,11.0000000,44.653429000000,-1.197194000000,,"Arcachon,",53691,observation-fed8d906-f924-4526-998e-96efce7d48d1,https://biolit.fr/observations/observation-fed8d906-f924-4526-998e-96efce7d48d1/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0587.JPG,,FALSE, +N1,61027,sortie-fed8d906-f924-4526-998e-96efce7d48d1,https://biolit.fr/sorties/sortie-fed8d906-f924-4526-998e-96efce7d48d1/,cigale33,,7/19/2016 0:00,9.0000000,11.0000000,44.653429000000,-1.197194000000,,"Arcachon,",53693,observation-fed8d906-f924-4526-998e-96efce7d48d1-2,https://biolit.fr/observations/observation-fed8d906-f924-4526-998e-96efce7d48d1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0590.JPG,,FALSE, +N1,61027,sortie-fed8d906-f924-4526-998e-96efce7d48d1,https://biolit.fr/sorties/sortie-fed8d906-f924-4526-998e-96efce7d48d1/,cigale33,,7/19/2016 0:00,9.0000000,11.0000000,44.653429000000,-1.197194000000,,"Arcachon,",53695,observation-fed8d906-f924-4526-998e-96efce7d48d1-3,https://biolit.fr/observations/observation-fed8d906-f924-4526-998e-96efce7d48d1-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0592.JPG,,FALSE, +N1,61027,sortie-fed8d906-f924-4526-998e-96efce7d48d1,https://biolit.fr/sorties/sortie-fed8d906-f924-4526-998e-96efce7d48d1/,cigale33,,7/19/2016 0:00,9.0000000,11.0000000,44.653429000000,-1.197194000000,,"Arcachon,",53697,observation-fed8d906-f924-4526-998e-96efce7d48d1-4,https://biolit.fr/observations/observation-fed8d906-f924-4526-998e-96efce7d48d1-4/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0588.JPG,,TRUE, +N1,61027,sortie-fed8d906-f924-4526-998e-96efce7d48d1,https://biolit.fr/sorties/sortie-fed8d906-f924-4526-998e-96efce7d48d1/,cigale33,,7/19/2016 0:00,9.0000000,11.0000000,44.653429000000,-1.197194000000,,"Arcachon,",53699,observation-fed8d906-f924-4526-998e-96efce7d48d1-5,https://biolit.fr/observations/observation-fed8d906-f924-4526-998e-96efce7d48d1-5/,Antalis vulgaris,Dentale,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0589.JPG,,TRUE, +N1,61028,sortie-0b4bf9ad-c659-4f27-a2dc-dfcd0ab618c5,https://biolit.fr/sorties/sortie-0b4bf9ad-c659-4f27-a2dc-dfcd0ab618c5/,Marine,,07/05/2016,9.0000000,11.0000000,50.829664000000,1.58983600000,,Plage du Noirda,53701,observation-0b4bf9ad-c659-4f27-a2dc-dfcd0ab618c5,https://biolit.fr/observations/observation-0b4bf9ad-c659-4f27-a2dc-dfcd0ab618c5/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1479-scaled.jpg,,TRUE, +N1,61029,sortie-d9c6f308-4057-4bea-bf24-bdf06bf70306,https://biolit.fr/sorties/sortie-d9c6f308-4057-4bea-bf24-bdf06bf70306/,Marine,,7/13/2016 0:00,10.0000000,12.0000000,43.154019000000,6.481817000000,,Plage du Domaine du Rayol,53703,observation-d9c6f308-4057-4bea-bf24-bdf06bf70306,https://biolit.fr/observations/observation-d9c6f308-4057-4bea-bf24-bdf06bf70306/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1540-scaled.jpg,,FALSE, +N1,61029,sortie-d9c6f308-4057-4bea-bf24-bdf06bf70306,https://biolit.fr/sorties/sortie-d9c6f308-4057-4bea-bf24-bdf06bf70306/,Marine,,7/13/2016 0:00,10.0000000,12.0000000,43.154019000000,6.481817000000,,Plage du Domaine du Rayol,53705,observation-d9c6f308-4057-4bea-bf24-bdf06bf70306-2,https://biolit.fr/observations/observation-d9c6f308-4057-4bea-bf24-bdf06bf70306-2/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1541-scaled.jpg,,TRUE, +N1,61029,sortie-d9c6f308-4057-4bea-bf24-bdf06bf70306,https://biolit.fr/sorties/sortie-d9c6f308-4057-4bea-bf24-bdf06bf70306/,Marine,,7/13/2016 0:00,10.0000000,12.0000000,43.154019000000,6.481817000000,,Plage du Domaine du Rayol,53707,observation-d9c6f308-4057-4bea-bf24-bdf06bf70306-3,https://biolit.fr/observations/observation-d9c6f308-4057-4bea-bf24-bdf06bf70306-3/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1543-scaled.jpg,,TRUE, +N1,61029,sortie-d9c6f308-4057-4bea-bf24-bdf06bf70306,https://biolit.fr/sorties/sortie-d9c6f308-4057-4bea-bf24-bdf06bf70306/,Marine,,7/13/2016 0:00,10.0000000,12.0000000,43.154019000000,6.481817000000,,Plage du Domaine du Rayol,53709,observation-d9c6f308-4057-4bea-bf24-bdf06bf70306-4,https://biolit.fr/observations/observation-d9c6f308-4057-4bea-bf24-bdf06bf70306-4/,Stramonita haemastoma,Bouche de sang,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1544-scaled.jpg,,TRUE, +N1,61029,sortie-d9c6f308-4057-4bea-bf24-bdf06bf70306,https://biolit.fr/sorties/sortie-d9c6f308-4057-4bea-bf24-bdf06bf70306/,Marine,,7/13/2016 0:00,10.0000000,12.0000000,43.154019000000,6.481817000000,,Plage du Domaine du Rayol,53711,observation-d9c6f308-4057-4bea-bf24-bdf06bf70306-5,https://biolit.fr/observations/observation-d9c6f308-4057-4bea-bf24-bdf06bf70306-5/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1545-scaled.jpg,,TRUE, +N1,61029,sortie-d9c6f308-4057-4bea-bf24-bdf06bf70306,https://biolit.fr/sorties/sortie-d9c6f308-4057-4bea-bf24-bdf06bf70306/,Marine,,7/13/2016 0:00,10.0000000,12.0000000,43.154019000000,6.481817000000,,Plage du Domaine du Rayol,53713,observation-d9c6f308-4057-4bea-bf24-bdf06bf70306-6,https://biolit.fr/observations/observation-d9c6f308-4057-4bea-bf24-bdf06bf70306-6/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1546-scaled.jpg,,TRUE, +N1,61029,sortie-d9c6f308-4057-4bea-bf24-bdf06bf70306,https://biolit.fr/sorties/sortie-d9c6f308-4057-4bea-bf24-bdf06bf70306/,Marine,,7/13/2016 0:00,10.0000000,12.0000000,43.154019000000,6.481817000000,,Plage du Domaine du Rayol,53715,observation-d9c6f308-4057-4bea-bf24-bdf06bf70306-7,https://biolit.fr/observations/observation-d9c6f308-4057-4bea-bf24-bdf06bf70306-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1547-scaled.jpg,,FALSE, +N1,61030,sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5,https://biolit.fr/sorties/sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5/,cigale33,,7/18/2016 0:00,17.0000000,19.0000000,44.650242000000,-1.19772500000,,"Arcachon, ",53717,observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5,https://biolit.fr/observations/observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090661.JPG,,FALSE, +N1,61030,sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5,https://biolit.fr/sorties/sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5/,cigale33,,7/18/2016 0:00,17.0000000,19.0000000,44.650242000000,-1.19772500000,,"Arcachon, ",53719,observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5-2,https://biolit.fr/observations/observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090667.JPG,,FALSE, +N1,61030,sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5,https://biolit.fr/sorties/sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5/,cigale33,,7/18/2016 0:00,17.0000000,19.0000000,44.650242000000,-1.19772500000,,"Arcachon, ",53721,observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5-3,https://biolit.fr/observations/observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5-3/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1090663.JPG,,TRUE, +N1,61030,sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5,https://biolit.fr/sorties/sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5/,cigale33,,7/18/2016 0:00,17.0000000,19.0000000,44.650242000000,-1.19772500000,,"Arcachon, ",53723,observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5-4,https://biolit.fr/observations/observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5-4/,Lanice conchilega,Lanice,,https://biolit.fr/wp-content/uploads/2023/07/P1090673.JPG,,TRUE, +N1,61030,sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5,https://biolit.fr/sorties/sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5/,cigale33,,7/18/2016 0:00,17.0000000,19.0000000,44.650242000000,-1.19772500000,,"Arcachon, ",53725,observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5-5,https://biolit.fr/observations/observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1090671.JPG,,FALSE, +N1,61030,sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5,https://biolit.fr/sorties/sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5/,cigale33,,7/18/2016 0:00,17.0000000,19.0000000,44.650242000000,-1.19772500000,,"Arcachon, ",53727,observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5-6,https://biolit.fr/observations/observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5-6/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/P1090679.JPG,,TRUE, +N1,61030,sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5,https://biolit.fr/sorties/sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5/,cigale33,,7/18/2016 0:00,17.0000000,19.0000000,44.650242000000,-1.19772500000,,"Arcachon, ",53729,observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5-7,https://biolit.fr/observations/observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5-7/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/P1090677.JPG,,TRUE, +N1,61030,sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5,https://biolit.fr/sorties/sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5/,cigale33,,7/18/2016 0:00,17.0000000,19.0000000,44.650242000000,-1.19772500000,,"Arcachon, ",53731,observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5-8,https://biolit.fr/observations/observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5-8/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1090680.JPG,,TRUE, +N1,61030,sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5,https://biolit.fr/sorties/sortie-4ccaec29-b342-43f3-b870-7f4178a4a7e5/,cigale33,,7/18/2016 0:00,17.0000000,19.0000000,44.650242000000,-1.19772500000,,"Arcachon, ",53733,observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5-9,https://biolit.fr/observations/observation-4ccaec29-b342-43f3-b870-7f4178a4a7e5-9/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1090686.JPG,,TRUE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53735,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3494.jpg,,FALSE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53737,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-2,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3495.jpg,,FALSE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53739,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-3,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-3/,Patella pellucida,Helcion,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3496.jpg,,TRUE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53741,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-4,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-4/,Patella pellucida,Helcion,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3497.jpg,,TRUE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53743,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-5,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-5/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3498.jpg,,TRUE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53745,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-6,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-6/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_3500.jpg,,TRUE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53747,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-7,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3502.jpg,,FALSE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53749,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-8,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-8/,Donax vittatus,Donace des canards,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3507-scaled.jpg,,TRUE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53751,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-9,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3506-scaled.jpg,,FALSE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53753,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-10,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-10/,Macomangulus tenuis,Telline-papillon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3504-scaled.jpg,,TRUE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53755,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-11,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3508-scaled.jpg,,FALSE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53757,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-12,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-12/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3509-scaled.jpg,,TRUE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53759,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-13,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-13/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_3510-scaled.jpg,,TRUE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53761,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-14,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3511-scaled.jpg,,FALSE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53763,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-15,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3512-scaled.jpg,,FALSE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53765,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-16,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-16/,Trivia arctica,Grain de café rose,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3513-scaled.jpg,,TRUE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53767,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-17,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3514-scaled.jpg,,FALSE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53769,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-18,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-18/,Patella pellucida,Helcion,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3515-scaled.jpg,,TRUE, +N1,61031,sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38,https://biolit.fr/sorties/sortie-ae8ee01b-aa89-42ff-8120-d086d7ad7d38/,azelie,,07/12/2016,18.0000000,18.0000000,51.757998000000,-10.125742000000,,Derrynane strand ,53771,observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-19,https://biolit.fr/observations/observation-ae8ee01b-aa89-42ff-8120-d086d7ad7d38-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3516.jpg,,FALSE, +N1,61032,sortie-7c10df96-6b21-47ec-9342-36ca76a428cd,https://biolit.fr/sorties/sortie-7c10df96-6b21-47ec-9342-36ca76a428cd/,azelie,,07/07/2016,12.0:45,14.0:45,52.603958000000,-9.560826000000,,Shannon,53773,observation-7c10df96-6b21-47ec-9342-36ca76a428cd,https://biolit.fr/observations/observation-7c10df96-6b21-47ec-9342-36ca76a428cd/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3298.jpg,,TRUE, +N1,61032,sortie-7c10df96-6b21-47ec-9342-36ca76a428cd,https://biolit.fr/sorties/sortie-7c10df96-6b21-47ec-9342-36ca76a428cd/,azelie,,07/07/2016,12.0:45,14.0:45,52.603958000000,-9.560826000000,,Shannon,53775,observation-7c10df96-6b21-47ec-9342-36ca76a428cd-2,https://biolit.fr/observations/observation-7c10df96-6b21-47ec-9342-36ca76a428cd-2/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3295.jpg,,TRUE, +N1,61032,sortie-7c10df96-6b21-47ec-9342-36ca76a428cd,https://biolit.fr/sorties/sortie-7c10df96-6b21-47ec-9342-36ca76a428cd/,azelie,,07/07/2016,12.0:45,14.0:45,52.603958000000,-9.560826000000,,Shannon,53777,observation-7c10df96-6b21-47ec-9342-36ca76a428cd-3,https://biolit.fr/observations/observation-7c10df96-6b21-47ec-9342-36ca76a428cd-3/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3315.jpg,,TRUE, +N1,61032,sortie-7c10df96-6b21-47ec-9342-36ca76a428cd,https://biolit.fr/sorties/sortie-7c10df96-6b21-47ec-9342-36ca76a428cd/,azelie,,07/07/2016,12.0:45,14.0:45,52.603958000000,-9.560826000000,,Shannon,53779,observation-7c10df96-6b21-47ec-9342-36ca76a428cd-4,https://biolit.fr/observations/observation-7c10df96-6b21-47ec-9342-36ca76a428cd-4/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3361-scaled.jpg,,TRUE, +N1,61032,sortie-7c10df96-6b21-47ec-9342-36ca76a428cd,https://biolit.fr/sorties/sortie-7c10df96-6b21-47ec-9342-36ca76a428cd/,azelie,,07/07/2016,12.0:45,14.0:45,52.603958000000,-9.560826000000,,Shannon,53781,observation-7c10df96-6b21-47ec-9342-36ca76a428cd-5,https://biolit.fr/observations/observation-7c10df96-6b21-47ec-9342-36ca76a428cd-5/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3312-scaled.jpg,,TRUE, +N1,61033,sortie-8d5bbe61-a138-4bbd-b9be-7b372e2f4dae,https://biolit.fr/sorties/sortie-8d5bbe61-a138-4bbd-b9be-7b372e2f4dae/,azelie,,7/14/2016 0:00,17.0000000,17.0000000,51.631470000000,-10.05795700000,,Allihies strand,53783,observation-8d5bbe61-a138-4bbd-b9be-7b372e2f4dae,https://biolit.fr/observations/observation-8d5bbe61-a138-4bbd-b9be-7b372e2f4dae/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_3566-scaled.jpg,,TRUE, +N1,61034,sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a,https://biolit.fr/sorties/sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a/,Earthforce FS,,6/26/2016 0:00,11.0000000,16.0000000,16.174790000000,-61.110823000000,,Petite Terre Guadeloupe,53785,observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a,https://biolit.fr/observations/observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a/,Aetobatus narinari,Raie léopard,,https://biolit.fr/wp-content/uploads/2023/07/13510754_1233006933399741_8403715400514500031_n.jpg,,TRUE, +N1,61034,sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a,https://biolit.fr/sorties/sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a/,Earthforce FS,,6/26/2016 0:00,11.0000000,16.0000000,16.174790000000,-61.110823000000,,Petite Terre Guadeloupe,53787,observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a-2,https://biolit.fr/observations/observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a-2/,Dasyatis americana,Pastenague américaine,,https://biolit.fr/wp-content/uploads/2023/07/13439048_1233032496730518_5084894505906659642_n.jpg,,TRUE, +N1,61034,sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a,https://biolit.fr/sorties/sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a/,Earthforce FS,,6/26/2016 0:00,11.0000000,16.0000000,16.174790000000,-61.110823000000,,Petite Terre Guadeloupe,53789,observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a-3,https://biolit.fr/observations/observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a-3/,Chelonia mydas,Tortue verte,,https://biolit.fr/wp-content/uploads/2023/07/13537528_1233411710025930_9126236353857862497_n.jpg,,TRUE, +N1,61034,sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a,https://biolit.fr/sorties/sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a/,Earthforce FS,,6/26/2016 0:00,11.0000000,16.0000000,16.174790000000,-61.110823000000,,Petite Terre Guadeloupe,53791,observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a-4,https://biolit.fr/observations/observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a-4/,Chelonia mydas,Tortue verte,,https://biolit.fr/wp-content/uploads/2023/07/13507177_1233033343397100_1785243646696473690_n.jpg,,TRUE, +N1,61034,sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a,https://biolit.fr/sorties/sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a/,Earthforce FS,,6/26/2016 0:00,11.0000000,16.0000000,16.174790000000,-61.110823000000,,Petite Terre Guadeloupe,53793,observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a-5,https://biolit.fr/observations/observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a-5/,Chelonia mydas,Tortue verte,,https://biolit.fr/wp-content/uploads/2023/07/13532977_1233407506693017_536539331473884756_n.jpg,,TRUE, +N1,61034,sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a,https://biolit.fr/sorties/sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a/,Earthforce FS,,6/26/2016 0:00,11.0000000,16.0000000,16.174790000000,-61.110823000000,,Petite Terre Guadeloupe,53795,observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a-6,https://biolit.fr/observations/observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a-6/,Tripneustes ventricosus,Oursin blanc,,https://biolit.fr/wp-content/uploads/2023/07/13512067_1233010910066010_7199065831972113885_n.jpg,,TRUE, +N1,61034,sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a,https://biolit.fr/sorties/sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a/,Earthforce FS,,6/26/2016 0:00,11.0000000,16.0000000,16.174790000000,-61.110823000000,,Petite Terre Guadeloupe,53797,observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a-7,https://biolit.fr/observations/observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Q3Wq2EHPCKSqOo8R0x4RL-uSkpI.jpg,,FALSE, +N1,61034,sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a,https://biolit.fr/sorties/sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a/,Earthforce FS,,6/26/2016 0:00,11.0000000,16.0000000,16.174790000000,-61.110823000000,,Petite Terre Guadeloupe,53799,observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a-8,https://biolit.fr/observations/observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/iles-de-la-petite-terre-guadeloupe-109.jpg,,FALSE, +N1,61034,sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a,https://biolit.fr/sorties/sortie-7665bae8-c6de-4aa5-98f6-9deeec5fde6a/,Earthforce FS,,6/26/2016 0:00,11.0000000,16.0000000,16.174790000000,-61.110823000000,,Petite Terre Guadeloupe,53801,observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a-9,https://biolit.fr/observations/observation-7665bae8-c6de-4aa5-98f6-9deeec5fde6a-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/13567205_1233434363356998_5390221078369320651_n.jpg,,FALSE, +N1,61035,sortie-422fe018-2abe-4a65-973d-7b778b088128,https://biolit.fr/sorties/sortie-422fe018-2abe-4a65-973d-7b778b088128/,Earthforce FS,,6/30/2016 0:00,9.0000000,19.0000000,42.632268000000,3.380553000000,,Cannet en Roussillon,53803,observation-422fe018-2abe-4a65-973d-7b778b088128,https://biolit.fr/observations/observation-422fe018-2abe-4a65-973d-7b778b088128/,Balaenoptera physalus,Rorqual commun,,https://biolit.fr/wp-content/uploads/2023/07/1907482_10206676614454763_5877711392353291861_n.jpg,,TRUE, +N1,61035,sortie-422fe018-2abe-4a65-973d-7b778b088128,https://biolit.fr/sorties/sortie-422fe018-2abe-4a65-973d-7b778b088128/,Earthforce FS,,6/30/2016 0:00,9.0000000,19.0000000,42.632268000000,3.380553000000,,Cannet en Roussillon,53805,observation-422fe018-2abe-4a65-973d-7b778b088128-2,https://biolit.fr/observations/observation-422fe018-2abe-4a65-973d-7b778b088128-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/13567080_10209433823223259_3662766950048304592_n.jpg,,FALSE, +N1,61035,sortie-422fe018-2abe-4a65-973d-7b778b088128,https://biolit.fr/sorties/sortie-422fe018-2abe-4a65-973d-7b778b088128/,Earthforce FS,,6/30/2016 0:00,9.0000000,19.0000000,42.632268000000,3.380553000000,,Cannet en Roussillon,53807,observation-422fe018-2abe-4a65-973d-7b778b088128-3,https://biolit.fr/observations/observation-422fe018-2abe-4a65-973d-7b778b088128-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/13592645_1346299995384271_8595610723270610447_n.jpg,,FALSE, +N1,61035,sortie-422fe018-2abe-4a65-973d-7b778b088128,https://biolit.fr/sorties/sortie-422fe018-2abe-4a65-973d-7b778b088128/,Earthforce FS,,6/30/2016 0:00,9.0000000,19.0000000,42.632268000000,3.380553000000,,Cannet en Roussillon,53809,observation-422fe018-2abe-4a65-973d-7b778b088128-4,https://biolit.fr/observations/observation-422fe018-2abe-4a65-973d-7b778b088128-4/,Delphinus delphis,Dauphin commun,,https://biolit.fr/wp-content/uploads/2023/07/13512208_1346391412041796_5566799174038681505_n.jpg,,TRUE, +N1,61035,sortie-422fe018-2abe-4a65-973d-7b778b088128,https://biolit.fr/sorties/sortie-422fe018-2abe-4a65-973d-7b778b088128/,Earthforce FS,,6/30/2016 0:00,9.0000000,19.0000000,42.632268000000,3.380553000000,,Cannet en Roussillon,53811,observation-422fe018-2abe-4a65-973d-7b778b088128-5,https://biolit.fr/observations/observation-422fe018-2abe-4a65-973d-7b778b088128-5/,Delphinus delphis,Dauphin commun,,https://biolit.fr/wp-content/uploads/2023/07/11400968_10206676620414912_29491217189837876_n.jpg,,TRUE, +N1,61035,sortie-422fe018-2abe-4a65-973d-7b778b088128,https://biolit.fr/sorties/sortie-422fe018-2abe-4a65-973d-7b778b088128/,Earthforce FS,,6/30/2016 0:00,9.0000000,19.0000000,42.632268000000,3.380553000000,,Cannet en Roussillon,53813,observation-422fe018-2abe-4a65-973d-7b778b088128-6,https://biolit.fr/observations/observation-422fe018-2abe-4a65-973d-7b778b088128-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/13537673_10209433837743622_3689881763160780571_n.jpg,,FALSE, +N1,61035,sortie-422fe018-2abe-4a65-973d-7b778b088128,https://biolit.fr/sorties/sortie-422fe018-2abe-4a65-973d-7b778b088128/,Earthforce FS,,6/30/2016 0:00,9.0000000,19.0000000,42.632268000000,3.380553000000,,Cannet en Roussillon,53815,observation-422fe018-2abe-4a65-973d-7b778b088128-7,https://biolit.fr/observations/observation-422fe018-2abe-4a65-973d-7b778b088128-7/,Tursiops truncatus,Grand dauphin,,https://biolit.fr/wp-content/uploads/2023/07/13417447_1332385980109006_8037549546652510366_n.jpg,,TRUE, +N1,61035,sortie-422fe018-2abe-4a65-973d-7b778b088128,https://biolit.fr/sorties/sortie-422fe018-2abe-4a65-973d-7b778b088128/,Earthforce FS,,6/30/2016 0:00,9.0000000,19.0000000,42.632268000000,3.380553000000,,Cannet en Roussillon,53817,observation-422fe018-2abe-4a65-973d-7b778b088128-8,https://biolit.fr/observations/observation-422fe018-2abe-4a65-973d-7b778b088128-8/,Mola mola,Poisson-lune,,https://biolit.fr/wp-content/uploads/2023/07/10626622_933943993286542_660641323345149825_n.jpg,,TRUE, +N1,61035,sortie-422fe018-2abe-4a65-973d-7b778b088128,https://biolit.fr/sorties/sortie-422fe018-2abe-4a65-973d-7b778b088128/,Earthforce FS,,6/30/2016 0:00,9.0000000,19.0000000,42.632268000000,3.380553000000,,Cannet en Roussillon,53819,observation-422fe018-2abe-4a65-973d-7b778b088128-9,https://biolit.fr/observations/observation-422fe018-2abe-4a65-973d-7b778b088128-9/,Delphinus delphis,Dauphin commun,,https://biolit.fr/wp-content/uploads/2023/07/11393118_10206676621534940_1187428319481079157_n.jpg,,TRUE, +N1,61035,sortie-422fe018-2abe-4a65-973d-7b778b088128,https://biolit.fr/sorties/sortie-422fe018-2abe-4a65-973d-7b778b088128/,Earthforce FS,,6/30/2016 0:00,9.0000000,19.0000000,42.632268000000,3.380553000000,,Cannet en Roussillon,53821,observation-422fe018-2abe-4a65-973d-7b778b088128-10,https://biolit.fr/observations/observation-422fe018-2abe-4a65-973d-7b778b088128-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/11179943_1078097052204568_828664586874006825_n.jpg,,FALSE, +N1,61035,sortie-422fe018-2abe-4a65-973d-7b778b088128,https://biolit.fr/sorties/sortie-422fe018-2abe-4a65-973d-7b778b088128/,Earthforce FS,,6/30/2016 0:00,9.0000000,19.0000000,42.632268000000,3.380553000000,,Cannet en Roussillon,53823,observation-422fe018-2abe-4a65-973d-7b778b088128-11,https://biolit.fr/observations/observation-422fe018-2abe-4a65-973d-7b778b088128-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/13528961_10209433837223609_7115880932066712731_n.jpg,,FALSE, +N1,61036,sortie-75c71044-7904-4091-837b-dabc14a04ea1,https://biolit.fr/sorties/sortie-75c71044-7904-4091-837b-dabc14a04ea1/,Marine,,06/05/2016,14.0000000,16.0000000,43.094884000000,6.023553000000,,Plage de la Garonne,53825,observation-75c71044-7904-4091-837b-dabc14a04ea1,https://biolit.fr/observations/observation-75c71044-7904-4091-837b-dabc14a04ea1/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/image_24-scaled.jpeg,,TRUE, +N1,61036,sortie-75c71044-7904-4091-837b-dabc14a04ea1,https://biolit.fr/sorties/sortie-75c71044-7904-4091-837b-dabc14a04ea1/,Marine,,06/05/2016,14.0000000,16.0000000,43.094884000000,6.023553000000,,Plage de la Garonne,53827,observation-75c71044-7904-4091-837b-dabc14a04ea1-2,https://biolit.fr/observations/observation-75c71044-7904-4091-837b-dabc14a04ea1-2/,Pisa tetraodon,Pise à quatre dents,,https://biolit.fr/wp-content/uploads/2023/07/image_25-scaled.jpeg,,TRUE, +N1,61037,sortie-65187c42-3ac4-47ea-8913-d08625c0f58b,https://biolit.fr/sorties/sortie-65187c42-3ac4-47ea-8913-d08625c0f58b/,Écoute ta planète,,6/14/2016 0:00,14.0000000,14.0:45,43.548548000000,5.02929900000,,Saint-Chamas,53829,observation-65187c42-3ac4-47ea-8913-d08625c0f58b,https://biolit.fr/observations/observation-65187c42-3ac4-47ea-8913-d08625c0f58b/,,,,https://biolit.fr/wp-content/uploads/2023/07/meduse - Saint-Chamas - 14-06-16 - college Edouard Manet Marseille-scaled.jpg,,FALSE, +N1,61038,sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03,https://biolit.fr/sorties/sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03/,Phil,,5/21/2016 0:00,12.0000000,12.0:25,47.868671000000,-3.928908000000,,Concarneau - Finistère,53831,observation-7d16a68c-25ef-4e92-964c-63f39cc16e03,https://biolit.fr/observations/observation-7d16a68c-25ef-4e92-964c-63f39cc16e03/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/20160521_120800.jpg,,TRUE, +N1,61038,sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03,https://biolit.fr/sorties/sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03/,Phil,,5/21/2016 0:00,12.0000000,12.0:25,47.868671000000,-3.928908000000,,Concarneau - Finistère,53833,observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-2,https://biolit.fr/observations/observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-2/,Phymatolithon lenormandii,Algue encroûtante rouge de Lenormand,,https://biolit.fr/wp-content/uploads/2023/07/20160521_120828.jpg,,TRUE, +N1,61038,sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03,https://biolit.fr/sorties/sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03/,Phil,,5/21/2016 0:00,12.0000000,12.0:25,47.868671000000,-3.928908000000,,Concarneau - Finistère,53835,observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-3,https://biolit.fr/observations/observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160521_120848.jpg,,FALSE, +N1,61038,sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03,https://biolit.fr/sorties/sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03/,Phil,,5/21/2016 0:00,12.0000000,12.0:25,47.868671000000,-3.928908000000,,Concarneau - Finistère,53837,observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-4,https://biolit.fr/observations/observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-4/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20160521_121047.jpg,,TRUE, +N1,61038,sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03,https://biolit.fr/sorties/sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03/,Phil,,5/21/2016 0:00,12.0000000,12.0:25,47.868671000000,-3.928908000000,,Concarneau - Finistère,53839,observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-5,https://biolit.fr/observations/observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-5/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20160521_121104.jpg,,TRUE, +N1,61038,sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03,https://biolit.fr/sorties/sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03/,Phil,,5/21/2016 0:00,12.0000000,12.0:25,47.868671000000,-3.928908000000,,Concarneau - Finistère,53841,observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-6,https://biolit.fr/observations/observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-6/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20160521_121107.jpg,,TRUE, +N1,61038,sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03,https://biolit.fr/sorties/sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03/,Phil,,5/21/2016 0:00,12.0000000,12.0:25,47.868671000000,-3.928908000000,,Concarneau - Finistère,53843,observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-7,https://biolit.fr/observations/observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-7/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20160521_121116.jpg,,TRUE, +N1,61038,sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03,https://biolit.fr/sorties/sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03/,Phil,,5/21/2016 0:00,12.0000000,12.0:25,47.868671000000,-3.928908000000,,Concarneau - Finistère,53845,observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-8,https://biolit.fr/observations/observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-8/,Schizoporella unicornis,Schizoporella unicorne,,https://biolit.fr/wp-content/uploads/2023/07/20160521_121242.jpg,,TRUE, +N1,61038,sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03,https://biolit.fr/sorties/sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03/,Phil,,5/21/2016 0:00,12.0000000,12.0:25,47.868671000000,-3.928908000000,,Concarneau - Finistère,53847,observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-9,https://biolit.fr/observations/observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-9/,Schizoporella unicornis,Schizoporella unicorne,,https://biolit.fr/wp-content/uploads/2023/07/20160521_121306.jpg,,TRUE, +N1,61038,sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03,https://biolit.fr/sorties/sortie-7d16a68c-25ef-4e92-964c-63f39cc16e03/,Phil,,5/21/2016 0:00,12.0000000,12.0:25,47.868671000000,-3.928908000000,,Concarneau - Finistère,53849,observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-10,https://biolit.fr/observations/observation-7d16a68c-25ef-4e92-964c-63f39cc16e03-10/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20160521_121332.jpg,,TRUE, +N1,61039,sortie-f58173f8-2c1f-4573-807a-139b0a5cfc9a,https://biolit.fr/sorties/sortie-f58173f8-2c1f-4573-807a-139b0a5cfc9a/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,13.0000000,15.0000000,43.518089000000,7.068695000000,,Pointe de la Convention : Côte nord Ile Sainte-Marguerite,53851,observation-f58173f8-2c1f-4573-807a-139b0a5cfc9a,https://biolit.fr/observations/observation-f58173f8-2c1f-4573-807a-139b0a5cfc9a/,Echinaster (Echinaster) sepositus,Etoile de mer rouge,,https://biolit.fr/wp-content/uploads/2023/07/20160428_152258-rotated.jpg,,TRUE, +N1,61039,sortie-f58173f8-2c1f-4573-807a-139b0a5cfc9a,https://biolit.fr/sorties/sortie-f58173f8-2c1f-4573-807a-139b0a5cfc9a/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,13.0000000,15.0000000,43.518089000000,7.068695000000,,Pointe de la Convention : Côte nord Ile Sainte-Marguerite,53853,observation-f58173f8-2c1f-4573-807a-139b0a5cfc9a-2,https://biolit.fr/observations/observation-f58173f8-2c1f-4573-807a-139b0a5cfc9a-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/20160428_152345-rotated.jpg,,TRUE, +N1,61039,sortie-f58173f8-2c1f-4573-807a-139b0a5cfc9a,https://biolit.fr/sorties/sortie-f58173f8-2c1f-4573-807a-139b0a5cfc9a/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,13.0000000,15.0000000,43.518089000000,7.068695000000,,Pointe de la Convention : Côte nord Ile Sainte-Marguerite,53855,observation-f58173f8-2c1f-4573-807a-139b0a5cfc9a-3,https://biolit.fr/observations/observation-f58173f8-2c1f-4573-807a-139b0a5cfc9a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160428_152413-rotated.jpg,,FALSE, +N1,61039,sortie-f58173f8-2c1f-4573-807a-139b0a5cfc9a,https://biolit.fr/sorties/sortie-f58173f8-2c1f-4573-807a-139b0a5cfc9a/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,13.0000000,15.0000000,43.518089000000,7.068695000000,,Pointe de la Convention : Côte nord Ile Sainte-Marguerite,53857,observation-f58173f8-2c1f-4573-807a-139b0a5cfc9a-4,https://biolit.fr/observations/observation-f58173f8-2c1f-4573-807a-139b0a5cfc9a-4/,Ulva spp.,Ulve rigide,,https://biolit.fr/wp-content/uploads/2023/07/20160428_152435-rotated.jpg,,TRUE, +N1,61039,sortie-f58173f8-2c1f-4573-807a-139b0a5cfc9a,https://biolit.fr/sorties/sortie-f58173f8-2c1f-4573-807a-139b0a5cfc9a/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,13.0000000,15.0000000,43.518089000000,7.068695000000,,Pointe de la Convention : Côte nord Ile Sainte-Marguerite,53859,observation-f58173f8-2c1f-4573-807a-139b0a5cfc9a-5,https://biolit.fr/observations/observation-f58173f8-2c1f-4573-807a-139b0a5cfc9a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160428_152233.jpg,,FALSE, +N1,61039,sortie-f58173f8-2c1f-4573-807a-139b0a5cfc9a,https://biolit.fr/sorties/sortie-f58173f8-2c1f-4573-807a-139b0a5cfc9a/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,13.0000000,15.0000000,43.518089000000,7.068695000000,,Pointe de la Convention : Côte nord Ile Sainte-Marguerite,53861,observation-f58173f8-2c1f-4573-807a-139b0a5cfc9a-6,https://biolit.fr/observations/observation-f58173f8-2c1f-4573-807a-139b0a5cfc9a-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160428_152320-rotated.jpg,,FALSE, +N1,61040,sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2,https://biolit.fr/sorties/sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.52111700000,7.031845000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53863,observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2,https://biolit.fr/observations/observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4224-scaled.jpg,,TRUE, +N1,61040,sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2,https://biolit.fr/sorties/sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.52111700000,7.031845000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53865,observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-2,https://biolit.fr/observations/observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4238-scaled.jpg,,FALSE, +N1,61040,sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2,https://biolit.fr/sorties/sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.52111700000,7.031845000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53867,observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-3,https://biolit.fr/observations/observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4245.JPG,,FALSE, +N1,61040,sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2,https://biolit.fr/sorties/sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.52111700000,7.031845000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53868,observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-4,https://biolit.fr/observations/observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-4/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4256-scaled.jpg,,TRUE, +N1,61040,sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2,https://biolit.fr/sorties/sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.52111700000,7.031845000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53870,observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-5,https://biolit.fr/observations/observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-5/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4261-scaled.jpg,,TRUE, +N1,61040,sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2,https://biolit.fr/sorties/sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.52111700000,7.031845000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53872,observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-6,https://biolit.fr/observations/observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-6/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSCF4262-scaled.jpg,,TRUE, +N1,61040,sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2,https://biolit.fr/sorties/sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.52111700000,7.031845000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53874,observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-7,https://biolit.fr/observations/observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4269-scaled.jpg,,FALSE, +N1,61040,sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2,https://biolit.fr/sorties/sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.52111700000,7.031845000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53876,observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-8,https://biolit.fr/observations/observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4274-scaled.jpg,,FALSE, +N1,61040,sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2,https://biolit.fr/sorties/sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.52111700000,7.031845000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53878,observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-9,https://biolit.fr/observations/observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-9/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4275-scaled.jpg,,TRUE, +N1,61040,sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2,https://biolit.fr/sorties/sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.52111700000,7.031845000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53880,observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-10,https://biolit.fr/observations/observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-10/,Halimeda tuna,Monnaie de Poséidon,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4282.JPG,,TRUE, +N1,61040,sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2,https://biolit.fr/sorties/sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.52111700000,7.031845000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53881,observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-11,https://biolit.fr/observations/observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4278-scaled.jpg,,FALSE, +N1,61040,sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2,https://biolit.fr/sorties/sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.52111700000,7.031845000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53883,observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-12,https://biolit.fr/observations/observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4243-scaled.jpg,,FALSE, +N1,61040,sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2,https://biolit.fr/sorties/sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.52111700000,7.031845000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53885,observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-13,https://biolit.fr/observations/observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4244-scaled.jpg,,FALSE, +N1,61040,sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2,https://biolit.fr/sorties/sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.52111700000,7.031845000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53887,observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-14,https://biolit.fr/observations/observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4264-scaled.jpg,,FALSE, +N1,61040,sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2,https://biolit.fr/sorties/sortie-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2/,CPIE Iles de Lérins et Pays d'Azur,,4/28/2016 0:00,10.0000000,12.0000000,43.52111700000,7.031845000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53889,observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-15,https://biolit.fr/observations/observation-4e21df36-e0f5-42a2-9ad4-e0ad25961dc2-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF4250.JPG,,FALSE, +N1,61041,sortie-81791854-155c-409b-ad04-f15a86f9b74c,https://biolit.fr/sorties/sortie-81791854-155c-409b-ad04-f15a86f9b74c/,CPIE Iles de Lérins et Pays d'Azur,,6/13/2016 0:00,11.0000000,12.0000000,43.521106000000,7.031873000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53890,observation-81791854-155c-409b-ad04-f15a86f9b74c,https://biolit.fr/observations/observation-81791854-155c-409b-ad04-f15a86f9b74c/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0363.JPG,,TRUE, +N1,61041,sortie-81791854-155c-409b-ad04-f15a86f9b74c,https://biolit.fr/sorties/sortie-81791854-155c-409b-ad04-f15a86f9b74c/,CPIE Iles de Lérins et Pays d'Azur,,6/13/2016 0:00,11.0000000,12.0000000,43.521106000000,7.031873000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53892,observation-81791854-155c-409b-ad04-f15a86f9b74c-2,https://biolit.fr/observations/observation-81791854-155c-409b-ad04-f15a86f9b74c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0365.JPG,,FALSE, +N1,61041,sortie-81791854-155c-409b-ad04-f15a86f9b74c,https://biolit.fr/sorties/sortie-81791854-155c-409b-ad04-f15a86f9b74c/,CPIE Iles de Lérins et Pays d'Azur,,6/13/2016 0:00,11.0000000,12.0000000,43.521106000000,7.031873000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53894,observation-81791854-155c-409b-ad04-f15a86f9b74c-3,https://biolit.fr/observations/observation-81791854-155c-409b-ad04-f15a86f9b74c-3/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0366.JPG,,TRUE, +N1,61041,sortie-81791854-155c-409b-ad04-f15a86f9b74c,https://biolit.fr/sorties/sortie-81791854-155c-409b-ad04-f15a86f9b74c/,CPIE Iles de Lérins et Pays d'Azur,,6/13/2016 0:00,11.0000000,12.0000000,43.521106000000,7.031873000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53896,observation-81791854-155c-409b-ad04-f15a86f9b74c-4,https://biolit.fr/observations/observation-81791854-155c-409b-ad04-f15a86f9b74c-4/,Stramonita haemastoma,Bouche de sang,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0369.JPG,,TRUE, +N1,61041,sortie-81791854-155c-409b-ad04-f15a86f9b74c,https://biolit.fr/sorties/sortie-81791854-155c-409b-ad04-f15a86f9b74c/,CPIE Iles de Lérins et Pays d'Azur,,6/13/2016 0:00,11.0000000,12.0000000,43.521106000000,7.031873000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53898,observation-81791854-155c-409b-ad04-f15a86f9b74c-5,https://biolit.fr/observations/observation-81791854-155c-409b-ad04-f15a86f9b74c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0370.JPG,,FALSE, +N1,61042,sortie-d0206e7f-6322-46a0-8d42-881b88ee5a52,https://biolit.fr/sorties/sortie-d0206e7f-6322-46a0-8d42-881b88ee5a52/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2016,10.0000000,12.0000000,43.521106000000,7.031873000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53900,observation-d0206e7f-6322-46a0-8d42-881b88ee5a52,https://biolit.fr/observations/observation-d0206e7f-6322-46a0-8d42-881b88ee5a52/,Stramonita haemastoma,Bouche de sang,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0360.JPG,,TRUE, +N1,61042,sortie-d0206e7f-6322-46a0-8d42-881b88ee5a52,https://biolit.fr/sorties/sortie-d0206e7f-6322-46a0-8d42-881b88ee5a52/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2016,10.0000000,12.0000000,43.521106000000,7.031873000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53902,observation-d0206e7f-6322-46a0-8d42-881b88ee5a52-2,https://biolit.fr/observations/observation-d0206e7f-6322-46a0-8d42-881b88ee5a52-2/,Luria lurida,Porcelaine livide,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0361.JPG,,TRUE, +N1,61042,sortie-d0206e7f-6322-46a0-8d42-881b88ee5a52,https://biolit.fr/sorties/sortie-d0206e7f-6322-46a0-8d42-881b88ee5a52/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2016,10.0000000,12.0000000,43.521106000000,7.031873000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53904,observation-d0206e7f-6322-46a0-8d42-881b88ee5a52-3,https://biolit.fr/observations/observation-d0206e7f-6322-46a0-8d42-881b88ee5a52-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0357_0.JPG,,FALSE, +N1,61042,sortie-d0206e7f-6322-46a0-8d42-881b88ee5a52,https://biolit.fr/sorties/sortie-d0206e7f-6322-46a0-8d42-881b88ee5a52/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2016,10.0000000,12.0000000,43.521106000000,7.031873000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53906,observation-d0206e7f-6322-46a0-8d42-881b88ee5a52-4,https://biolit.fr/observations/observation-d0206e7f-6322-46a0-8d42-881b88ee5a52-4/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0359_0.JPG,,TRUE, +N1,61042,sortie-d0206e7f-6322-46a0-8d42-881b88ee5a52,https://biolit.fr/sorties/sortie-d0206e7f-6322-46a0-8d42-881b88ee5a52/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2016,10.0000000,12.0000000,43.521106000000,7.031873000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53908,observation-d0206e7f-6322-46a0-8d42-881b88ee5a52-5,https://biolit.fr/observations/observation-d0206e7f-6322-46a0-8d42-881b88ee5a52-5/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0356_0.JPG,,TRUE, +N1,61042,sortie-d0206e7f-6322-46a0-8d42-881b88ee5a52,https://biolit.fr/sorties/sortie-d0206e7f-6322-46a0-8d42-881b88ee5a52/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2016,10.0000000,12.0000000,43.521106000000,7.031873000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53910,observation-d0206e7f-6322-46a0-8d42-881b88ee5a52-6,https://biolit.fr/observations/observation-d0206e7f-6322-46a0-8d42-881b88ee5a52-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0353_0.JPG,,FALSE, +N1,61042,sortie-d0206e7f-6322-46a0-8d42-881b88ee5a52,https://biolit.fr/sorties/sortie-d0206e7f-6322-46a0-8d42-881b88ee5a52/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2016,10.0000000,12.0000000,43.521106000000,7.031873000000,,"Pointe du Batéguier : Côté nord-ouest, île Sainte-Marguerite",53912,observation-d0206e7f-6322-46a0-8d42-881b88ee5a52-7,https://biolit.fr/observations/observation-d0206e7f-6322-46a0-8d42-881b88ee5a52-7/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0362.JPG,,TRUE, +N1,61043,sortie-a2770b33-4b83-4290-b5bf-7f117d402a20,https://biolit.fr/sorties/sortie-a2770b33-4b83-4290-b5bf-7f117d402a20/,Phil,,5/21/2016 0:00,12.0:15,12.0000000,47.868925000000,-3.928801000000,,Concarneau - Finistère,53914,observation-a2770b33-4b83-4290-b5bf-7f117d402a20,https://biolit.fr/observations/observation-a2770b33-4b83-4290-b5bf-7f117d402a20/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20160521_121617_001.jpg,,TRUE, +N1,61043,sortie-a2770b33-4b83-4290-b5bf-7f117d402a20,https://biolit.fr/sorties/sortie-a2770b33-4b83-4290-b5bf-7f117d402a20/,Phil,,5/21/2016 0:00,12.0:15,12.0000000,47.868925000000,-3.928801000000,,Concarneau - Finistère,53916,observation-a2770b33-4b83-4290-b5bf-7f117d402a20-2,https://biolit.fr/observations/observation-a2770b33-4b83-4290-b5bf-7f117d402a20-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160521_121425.jpg,,TRUE, +N1,61043,sortie-a2770b33-4b83-4290-b5bf-7f117d402a20,https://biolit.fr/sorties/sortie-a2770b33-4b83-4290-b5bf-7f117d402a20/,Phil,,5/21/2016 0:00,12.0:15,12.0000000,47.868925000000,-3.928801000000,,Concarneau - Finistère,53918,observation-a2770b33-4b83-4290-b5bf-7f117d402a20-3,https://biolit.fr/observations/observation-a2770b33-4b83-4290-b5bf-7f117d402a20-3/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/20160521_121913.jpg,,TRUE, +N1,61043,sortie-a2770b33-4b83-4290-b5bf-7f117d402a20,https://biolit.fr/sorties/sortie-a2770b33-4b83-4290-b5bf-7f117d402a20/,Phil,,5/21/2016 0:00,12.0:15,12.0000000,47.868925000000,-3.928801000000,,Concarneau - Finistère,53920,observation-a2770b33-4b83-4290-b5bf-7f117d402a20-4,https://biolit.fr/observations/observation-a2770b33-4b83-4290-b5bf-7f117d402a20-4/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160521_122114.jpg,,TRUE, +N1,61043,sortie-a2770b33-4b83-4290-b5bf-7f117d402a20,https://biolit.fr/sorties/sortie-a2770b33-4b83-4290-b5bf-7f117d402a20/,Phil,,5/21/2016 0:00,12.0:15,12.0000000,47.868925000000,-3.928801000000,,Concarneau - Finistère,53922,observation-a2770b33-4b83-4290-b5bf-7f117d402a20-5,https://biolit.fr/observations/observation-a2770b33-4b83-4290-b5bf-7f117d402a20-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160521_122552.jpg,,FALSE, +N1,61043,sortie-a2770b33-4b83-4290-b5bf-7f117d402a20,https://biolit.fr/sorties/sortie-a2770b33-4b83-4290-b5bf-7f117d402a20/,Phil,,5/21/2016 0:00,12.0:15,12.0000000,47.868925000000,-3.928801000000,,Concarneau - Finistère,53924,observation-a2770b33-4b83-4290-b5bf-7f117d402a20-6,https://biolit.fr/observations/observation-a2770b33-4b83-4290-b5bf-7f117d402a20-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160521_122609.jpg,,FALSE, +N1,61044,sortie-dc1238f3-63bb-4d1a-9796-ce8431f486f3,https://biolit.fr/sorties/sortie-dc1238f3-63bb-4d1a-9796-ce8431f486f3/,Phil,,5/21/2016 0:00,11.0000000,12.000005,47.87243400000,-3.932845000000,,Concarneau - Finistère,53926,observation-dc1238f3-63bb-4d1a-9796-ce8431f486f3,https://biolit.fr/observations/observation-dc1238f3-63bb-4d1a-9796-ce8431f486f3/,Verruca stroemia,Balane irrégulière,,https://biolit.fr/wp-content/uploads/2023/07/20160521_114823.jpg,,TRUE, +N1,61044,sortie-dc1238f3-63bb-4d1a-9796-ce8431f486f3,https://biolit.fr/sorties/sortie-dc1238f3-63bb-4d1a-9796-ce8431f486f3/,Phil,,5/21/2016 0:00,11.0000000,12.000005,47.87243400000,-3.932845000000,,Concarneau - Finistère,53928,observation-dc1238f3-63bb-4d1a-9796-ce8431f486f3-2,https://biolit.fr/observations/observation-dc1238f3-63bb-4d1a-9796-ce8431f486f3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160521_114848.jpg,,FALSE, +N1,61044,sortie-dc1238f3-63bb-4d1a-9796-ce8431f486f3,https://biolit.fr/sorties/sortie-dc1238f3-63bb-4d1a-9796-ce8431f486f3/,Phil,,5/21/2016 0:00,11.0000000,12.000005,47.87243400000,-3.932845000000,,Concarneau - Finistère,53930,observation-dc1238f3-63bb-4d1a-9796-ce8431f486f3-3,https://biolit.fr/observations/observation-dc1238f3-63bb-4d1a-9796-ce8431f486f3-3/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20160521_115006_001.jpg,,TRUE, +N1,61044,sortie-dc1238f3-63bb-4d1a-9796-ce8431f486f3,https://biolit.fr/sorties/sortie-dc1238f3-63bb-4d1a-9796-ce8431f486f3/,Phil,,5/21/2016 0:00,11.0000000,12.000005,47.87243400000,-3.932845000000,,Concarneau - Finistère,53932,observation-dc1238f3-63bb-4d1a-9796-ce8431f486f3-4,https://biolit.fr/observations/observation-dc1238f3-63bb-4d1a-9796-ce8431f486f3-4/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20160521_120234.jpg,,TRUE, +N1,61044,sortie-dc1238f3-63bb-4d1a-9796-ce8431f486f3,https://biolit.fr/sorties/sortie-dc1238f3-63bb-4d1a-9796-ce8431f486f3/,Phil,,5/21/2016 0:00,11.0000000,12.000005,47.87243400000,-3.932845000000,,Concarneau - Finistère,53934,observation-dc1238f3-63bb-4d1a-9796-ce8431f486f3-5,https://biolit.fr/observations/observation-dc1238f3-63bb-4d1a-9796-ce8431f486f3-5/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/20160521_120309.jpg,,TRUE, +N1,61044,sortie-dc1238f3-63bb-4d1a-9796-ce8431f486f3,https://biolit.fr/sorties/sortie-dc1238f3-63bb-4d1a-9796-ce8431f486f3/,Phil,,5/21/2016 0:00,11.0000000,12.000005,47.87243400000,-3.932845000000,,Concarneau - Finistère,53936,observation-dc1238f3-63bb-4d1a-9796-ce8431f486f3-6,https://biolit.fr/observations/observation-dc1238f3-63bb-4d1a-9796-ce8431f486f3-6/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20160521_120436.jpg,,TRUE, +N1,61045,sortie-cee980b4-f7a2-43a4-85d2-080408456411,https://biolit.fr/sorties/sortie-cee980b4-f7a2-43a4-85d2-080408456411/,Phil,,5/24/2016 0:00,11.0000000,11.0:45,47.793446000000,-3.843286000000,,Trévignon - Finistère,53938,observation-cee980b4-f7a2-43a4-85d2-080408456411,https://biolit.fr/observations/observation-cee980b4-f7a2-43a4-85d2-080408456411/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020888.JPG,,FALSE, +N1,61045,sortie-cee980b4-f7a2-43a4-85d2-080408456411,https://biolit.fr/sorties/sortie-cee980b4-f7a2-43a4-85d2-080408456411/,Phil,,5/24/2016 0:00,11.0000000,11.0:45,47.793446000000,-3.843286000000,,Trévignon - Finistère,53940,observation-cee980b4-f7a2-43a4-85d2-080408456411-2,https://biolit.fr/observations/observation-cee980b4-f7a2-43a4-85d2-080408456411-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020889.JPG,,TRUE, +N1,61046,sortie-fc97562a-c13f-4db5-89a2-fad4d85f9ffa,https://biolit.fr/sorties/sortie-fc97562a-c13f-4db5-89a2-fad4d85f9ffa/,Phil,,5/27/2016 0:00,15.000005,15.0000000,47.858194000000,-3.917808000000,,Concarneau - Finistère,53942,observation-fc97562a-c13f-4db5-89a2-fad4d85f9ffa,https://biolit.fr/observations/observation-fc97562a-c13f-4db5-89a2-fad4d85f9ffa/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160527_114532.jpg,,FALSE, +N1,61046,sortie-fc97562a-c13f-4db5-89a2-fad4d85f9ffa,https://biolit.fr/sorties/sortie-fc97562a-c13f-4db5-89a2-fad4d85f9ffa/,Phil,,5/27/2016 0:00,15.000005,15.0000000,47.858194000000,-3.917808000000,,Concarneau - Finistère,53944,observation-fc97562a-c13f-4db5-89a2-fad4d85f9ffa-2,https://biolit.fr/observations/observation-fc97562a-c13f-4db5-89a2-fad4d85f9ffa-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/P1020936.JPG,,TRUE, +N1,61046,sortie-fc97562a-c13f-4db5-89a2-fad4d85f9ffa,https://biolit.fr/sorties/sortie-fc97562a-c13f-4db5-89a2-fad4d85f9ffa/,Phil,,5/27/2016 0:00,15.000005,15.0000000,47.858194000000,-3.917808000000,,Concarneau - Finistère,53946,observation-fc97562a-c13f-4db5-89a2-fad4d85f9ffa-3,https://biolit.fr/observations/observation-fc97562a-c13f-4db5-89a2-fad4d85f9ffa-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020967.JPG,,TRUE, +N1,61046,sortie-fc97562a-c13f-4db5-89a2-fad4d85f9ffa,https://biolit.fr/sorties/sortie-fc97562a-c13f-4db5-89a2-fad4d85f9ffa/,Phil,,5/27/2016 0:00,15.000005,15.0000000,47.858194000000,-3.917808000000,,Concarneau - Finistère,53948,observation-fc97562a-c13f-4db5-89a2-fad4d85f9ffa-4,https://biolit.fr/observations/observation-fc97562a-c13f-4db5-89a2-fad4d85f9ffa-4/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1020969.JPG,,TRUE, +N1,61047,sortie-495657cb-1690-4b79-867d-5f586e5f296b,https://biolit.fr/sorties/sortie-495657cb-1690-4b79-867d-5f586e5f296b/,Phil,,5/24/2016 0:00,11.0000000,11.0000000,47.792046000000,-3.846446000000,,Trévignon - Finistère,53950,observation-495657cb-1690-4b79-867d-5f586e5f296b,https://biolit.fr/observations/observation-495657cb-1690-4b79-867d-5f586e5f296b/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/P1020859.JPG,,TRUE, +N1,61047,sortie-495657cb-1690-4b79-867d-5f586e5f296b,https://biolit.fr/sorties/sortie-495657cb-1690-4b79-867d-5f586e5f296b/,Phil,,5/24/2016 0:00,11.0000000,11.0000000,47.792046000000,-3.846446000000,,Trévignon - Finistère,53952,observation-495657cb-1690-4b79-867d-5f586e5f296b-2,https://biolit.fr/observations/observation-495657cb-1690-4b79-867d-5f586e5f296b-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1020861_0.JPG,,TRUE, +N1,61048,sortie-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04,https://biolit.fr/sorties/sortie-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04/,Phil,,5/28/2016 0:00,14.0000000,14.0000000,47.853388000000,-3.913474000000,,Concarneau - Finistère,53954,observation-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04,https://biolit.fr/observations/observation-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1030075.JPG,,TRUE, +N1,61048,sortie-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04,https://biolit.fr/sorties/sortie-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04/,Phil,,5/28/2016 0:00,14.0000000,14.0000000,47.853388000000,-3.913474000000,,Concarneau - Finistère,53956,observation-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04-2,https://biolit.fr/observations/observation-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04-2/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/P1030075 - Copie.JPG,,TRUE, +N1,61048,sortie-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04,https://biolit.fr/sorties/sortie-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04/,Phil,,5/28/2016 0:00,14.0000000,14.0000000,47.853388000000,-3.913474000000,,Concarneau - Finistère,53958,observation-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04-3,https://biolit.fr/observations/observation-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04-3/,Coryphoblennius galerita,Blennie coiffée,,https://biolit.fr/wp-content/uploads/2023/07/P1030050.JPG,,TRUE, +N1,61048,sortie-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04,https://biolit.fr/sorties/sortie-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04/,Phil,,5/28/2016 0:00,14.0000000,14.0000000,47.853388000000,-3.913474000000,,Concarneau - Finistère,53960,observation-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04-4,https://biolit.fr/observations/observation-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030067.JPG,,FALSE, +N1,61048,sortie-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04,https://biolit.fr/sorties/sortie-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04/,Phil,,5/28/2016 0:00,14.0000000,14.0000000,47.853388000000,-3.913474000000,,Concarneau - Finistère,53962,observation-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04-5,https://biolit.fr/observations/observation-fdf11f31-e2e4-40b4-ad32-7d94af5e8d04-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030078.JPG,,FALSE, +N1,61049,sortie-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a,https://biolit.fr/sorties/sortie-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a/,Phil,,5/21/2016 0:00,11.0000000,11.0000000,47.873577000000,-3.932161000000,,Concarneau - Finistère,53964,observation-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a,https://biolit.fr/observations/observation-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160521_114641.jpg,,FALSE, +N1,61049,sortie-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a,https://biolit.fr/sorties/sortie-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a/,Phil,,5/21/2016 0:00,11.0000000,11.0000000,47.873577000000,-3.932161000000,,Concarneau - Finistère,53966,observation-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a-2,https://biolit.fr/observations/observation-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a-2/,Schizoporella unicornis,Schizoporella unicorne,,https://biolit.fr/wp-content/uploads/2023/07/20160521_114353.jpg,,TRUE, +N1,61049,sortie-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a,https://biolit.fr/sorties/sortie-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a/,Phil,,5/21/2016 0:00,11.0000000,11.0000000,47.873577000000,-3.932161000000,,Concarneau - Finistère,53968,observation-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a-3,https://biolit.fr/observations/observation-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160521_114535.jpg,,FALSE, +N1,61049,sortie-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a,https://biolit.fr/sorties/sortie-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a/,Phil,,5/21/2016 0:00,11.0000000,11.0000000,47.873577000000,-3.932161000000,,Concarneau - Finistère,53970,observation-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a-4,https://biolit.fr/observations/observation-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a-4/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20160521_114249.jpg,,TRUE, +N1,61049,sortie-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a,https://biolit.fr/sorties/sortie-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a/,Phil,,5/21/2016 0:00,11.0000000,11.0000000,47.873577000000,-3.932161000000,,Concarneau - Finistère,53972,observation-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a-5,https://biolit.fr/observations/observation-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a-5/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20160521_114739.jpg,,TRUE, +N1,61049,sortie-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a,https://biolit.fr/sorties/sortie-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a/,Phil,,5/21/2016 0:00,11.0000000,11.0000000,47.873577000000,-3.932161000000,,Concarneau - Finistère,53974,observation-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a-6,https://biolit.fr/observations/observation-2b8c81ab-346d-4589-b8a7-24f6cd77ab8a-6/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20160521_114140(0).jpg,,TRUE, +N1,61050,sortie-157f8609-a79f-4f3b-8a86-43be7e729447,https://biolit.fr/sorties/sortie-157f8609-a79f-4f3b-8a86-43be7e729447/,Ville de Marseille Ecole National CM1A,,05/02/2016,10.0000000,12.0000000,43.267794000000,5.370354000000,,Marseille 13008,53976,observation-157f8609-a79f-4f3b-8a86-43be7e729447,https://biolit.fr/observations/observation-157f8609-a79f-4f3b-8a86-43be7e729447/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/Algue nom non connu-scaled.jpg,,TRUE, +N1,61050,sortie-157f8609-a79f-4f3b-8a86-43be7e729447,https://biolit.fr/sorties/sortie-157f8609-a79f-4f3b-8a86-43be7e729447/,Ville de Marseille Ecole National CM1A,,05/02/2016,10.0000000,12.0000000,43.267794000000,5.370354000000,,Marseille 13008,53978,observation-157f8609-a79f-4f3b-8a86-43be7e729447-2,https://biolit.fr/observations/observation-157f8609-a79f-4f3b-8a86-43be7e729447-2/,Clavelina lepadiformis,Grande claveline,,https://biolit.fr/wp-content/uploads/2023/07/grande clavelin Clavelina lepadiformis-scaled.jpg,,TRUE, +N1,61050,sortie-157f8609-a79f-4f3b-8a86-43be7e729447,https://biolit.fr/sorties/sortie-157f8609-a79f-4f3b-8a86-43be7e729447/,Ville de Marseille Ecole National CM1A,,05/02/2016,10.0000000,12.0000000,43.267794000000,5.370354000000,,Marseille 13008,53980,observation-157f8609-a79f-4f3b-8a86-43be7e729447-3,https://biolit.fr/observations/observation-157f8609-a79f-4f3b-8a86-43be7e729447-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule commune Phorcus turbinatus1-scaled.jpg,,FALSE, +N1,61050,sortie-157f8609-a79f-4f3b-8a86-43be7e729447,https://biolit.fr/sorties/sortie-157f8609-a79f-4f3b-8a86-43be7e729447/,Ville de Marseille Ecole National CM1A,,05/02/2016,10.0000000,12.0000000,43.267794000000,5.370354000000,,Marseille 13008,53982,observation-157f8609-a79f-4f3b-8a86-43be7e729447-4,https://biolit.fr/observations/observation-157f8609-a79f-4f3b-8a86-43be7e729447-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule commune Phorcus turbinatus2-scaled.jpg,,FALSE, +N1,61050,sortie-157f8609-a79f-4f3b-8a86-43be7e729447,https://biolit.fr/sorties/sortie-157f8609-a79f-4f3b-8a86-43be7e729447/,Ville de Marseille Ecole National CM1A,,05/02/2016,10.0000000,12.0000000,43.267794000000,5.370354000000,,Marseille 13008,53984,observation-157f8609-a79f-4f3b-8a86-43be7e729447-5,https://biolit.fr/observations/observation-157f8609-a79f-4f3b-8a86-43be7e729447-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle commune ou chapeau chinois patella vulgata-scaled.jpg,,FALSE, +N1,61051,sortie-30d192e4-e8a4-40be-8727-f5e38c56145b,https://biolit.fr/sorties/sortie-30d192e4-e8a4-40be-8727-f5e38c56145b/,Phil,,5/27/2016 0:00,11.0:55,12.0000000,47.857025000000,-3.919224000000,,Concarneau - Finistère,53986,observation-30d192e4-e8a4-40be-8727-f5e38c56145b,https://biolit.fr/observations/observation-30d192e4-e8a4-40be-8727-f5e38c56145b/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20160527_115404.jpg,,TRUE, +N1,61051,sortie-30d192e4-e8a4-40be-8727-f5e38c56145b,https://biolit.fr/sorties/sortie-30d192e4-e8a4-40be-8727-f5e38c56145b/,Phil,,5/27/2016 0:00,11.0:55,12.0000000,47.857025000000,-3.919224000000,,Concarneau - Finistère,53988,observation-30d192e4-e8a4-40be-8727-f5e38c56145b-2,https://biolit.fr/observations/observation-30d192e4-e8a4-40be-8727-f5e38c56145b-2/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1020976.JPG,,TRUE, +N1,61051,sortie-30d192e4-e8a4-40be-8727-f5e38c56145b,https://biolit.fr/sorties/sortie-30d192e4-e8a4-40be-8727-f5e38c56145b/,Phil,,5/27/2016 0:00,11.0:55,12.0000000,47.857025000000,-3.919224000000,,Concarneau - Finistère,53990,observation-30d192e4-e8a4-40be-8727-f5e38c56145b-3,https://biolit.fr/observations/observation-30d192e4-e8a4-40be-8727-f5e38c56145b-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020991.JPG,,TRUE, +N1,61052,sortie-ca854fb4-8322-42bb-88b2-8d934d101c2c,https://biolit.fr/sorties/sortie-ca854fb4-8322-42bb-88b2-8d934d101c2c/,Phil,,5/24/2016 0:00,11.0:35,11.0000000,47.792121000000,-3.846532000000,,Trévignon - Finistère,53992,observation-ca854fb4-8322-42bb-88b2-8d934d101c2c,https://biolit.fr/observations/observation-ca854fb4-8322-42bb-88b2-8d934d101c2c/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020882.JPG,,FALSE, +N1,61052,sortie-ca854fb4-8322-42bb-88b2-8d934d101c2c,https://biolit.fr/sorties/sortie-ca854fb4-8322-42bb-88b2-8d934d101c2c/,Phil,,5/24/2016 0:00,11.0:35,11.0000000,47.792121000000,-3.846532000000,,Trévignon - Finistère,53994,observation-ca854fb4-8322-42bb-88b2-8d934d101c2c-2,https://biolit.fr/observations/observation-ca854fb4-8322-42bb-88b2-8d934d101c2c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020876.JPG,,FALSE, +N1,61053,sortie-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2,https://biolit.fr/sorties/sortie-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2/,Phil,,5/21/2016 0:00,11.0:25,11.0000000,47.872750000000,-3.931790000000,,Concarneau - Finistère,53996,observation-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2,https://biolit.fr/observations/observation-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/20160521_113515.jpg,,TRUE, +N1,61053,sortie-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2,https://biolit.fr/sorties/sortie-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2/,Phil,,5/21/2016 0:00,11.0:25,11.0000000,47.872750000000,-3.931790000000,,Concarneau - Finistère,53998,observation-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2-2,https://biolit.fr/observations/observation-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160521_113905.jpg,,FALSE, +N1,61053,sortie-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2,https://biolit.fr/sorties/sortie-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2/,Phil,,5/21/2016 0:00,11.0:25,11.0000000,47.872750000000,-3.931790000000,,Concarneau - Finistère,54000,observation-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2-3,https://biolit.fr/observations/observation-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20160521_113228.jpg,,TRUE, +N1,61053,sortie-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2,https://biolit.fr/sorties/sortie-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2/,Phil,,5/21/2016 0:00,11.0:25,11.0000000,47.872750000000,-3.931790000000,,Concarneau - Finistère,54002,observation-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2-4,https://biolit.fr/observations/observation-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2-4/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20160521_113022.jpg,,TRUE, +N1,61053,sortie-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2,https://biolit.fr/sorties/sortie-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2/,Phil,,5/21/2016 0:00,11.0:25,11.0000000,47.872750000000,-3.931790000000,,Concarneau - Finistère,54004,observation-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2-5,https://biolit.fr/observations/observation-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2-5/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160521_112822.jpg,,TRUE, +N1,61053,sortie-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2,https://biolit.fr/sorties/sortie-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2/,Phil,,5/21/2016 0:00,11.0:25,11.0000000,47.872750000000,-3.931790000000,,Concarneau - Finistère,54006,observation-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2-6,https://biolit.fr/observations/observation-fe7ae5a8-452a-4275-9efb-b2d9ceb92fe2-6/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160521_112428.jpg,,TRUE, +N1,61054,sortie-5c3fd18f-a588-4264-8453-81ff556bdbdc,https://biolit.fr/sorties/sortie-5c3fd18f-a588-4264-8453-81ff556bdbdc/,Phil,,5/28/2016 0:00,14.0000000,14.000005,47.853637000000,-3.913173000000,,Concarneau - Finistère,54008,observation-5c3fd18f-a588-4264-8453-81ff556bdbdc,https://biolit.fr/observations/observation-5c3fd18f-a588-4264-8453-81ff556bdbdc/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/P1030061.JPG,,TRUE, +N1,61054,sortie-5c3fd18f-a588-4264-8453-81ff556bdbdc,https://biolit.fr/sorties/sortie-5c3fd18f-a588-4264-8453-81ff556bdbdc/,Phil,,5/28/2016 0:00,14.0000000,14.000005,47.853637000000,-3.913173000000,,Concarneau - Finistère,54010,observation-5c3fd18f-a588-4264-8453-81ff556bdbdc-2,https://biolit.fr/observations/observation-5c3fd18f-a588-4264-8453-81ff556bdbdc-2/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/P1030063.JPG,,TRUE, +N1,61055,sortie-1c3ba259-5ede-42b3-a52e-a9f47ef08a2b,https://biolit.fr/sorties/sortie-1c3ba259-5ede-42b3-a52e-a9f47ef08a2b/,Phil,,5/28/2016 0:00,13.0:45,14.0000000,47.853382000000,-3.913141000000,,Concarneau - Finistère,54012,observation-1c3ba259-5ede-42b3-a52e-a9f47ef08a2b,https://biolit.fr/observations/observation-1c3ba259-5ede-42b3-a52e-a9f47ef08a2b/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/2023/07/P1030057.JPG,,TRUE, +N1,61055,sortie-1c3ba259-5ede-42b3-a52e-a9f47ef08a2b,https://biolit.fr/sorties/sortie-1c3ba259-5ede-42b3-a52e-a9f47ef08a2b/,Phil,,5/28/2016 0:00,13.0:45,14.0000000,47.853382000000,-3.913141000000,,Concarneau - Finistère,54014,observation-1c3ba259-5ede-42b3-a52e-a9f47ef08a2b-2,https://biolit.fr/observations/observation-1c3ba259-5ede-42b3-a52e-a9f47ef08a2b-2/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/P1030032.JPG,,TRUE, +N1,61055,sortie-1c3ba259-5ede-42b3-a52e-a9f47ef08a2b,https://biolit.fr/sorties/sortie-1c3ba259-5ede-42b3-a52e-a9f47ef08a2b/,Phil,,5/28/2016 0:00,13.0:45,14.0000000,47.853382000000,-3.913141000000,,Concarneau - Finistère,54016,observation-1c3ba259-5ede-42b3-a52e-a9f47ef08a2b-3,https://biolit.fr/observations/observation-1c3ba259-5ede-42b3-a52e-a9f47ef08a2b-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1030025.JPG,,TRUE, +N1,61056,sortie-f4c965c8-c020-47aa-ac28-218b3a6f24e7,https://biolit.fr/sorties/sortie-f4c965c8-c020-47aa-ac28-218b3a6f24e7/,Phil,,5/20/2016 0:00,16.0:55,17.0000000,47.894644000000,-3.952051000000,,La Forêt-Fouesnant - Finistère,54018,observation-f4c965c8-c020-47aa-ac28-218b3a6f24e7,https://biolit.fr/observations/observation-f4c965c8-c020-47aa-ac28-218b3a6f24e7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160525_165843.jpg,,FALSE, +N1,61057,sortie-46d27d31-0fe1-494f-afc0-3aaaf1d25644,https://biolit.fr/sorties/sortie-46d27d31-0fe1-494f-afc0-3aaaf1d25644/,Phil,,5/27/2016 0:00,11.0:15,11.0000000,47.857426000000,-3.91751800000,,Concarneau - Finistère,54020,observation-46d27d31-0fe1-494f-afc0-3aaaf1d25644,https://biolit.fr/observations/observation-46d27d31-0fe1-494f-afc0-3aaaf1d25644/,Leucoraja naevus,Raie fleurie,,https://biolit.fr/wp-content/uploads/2023/07/P1020915.JPG,,TRUE, +N1,61058,sortie-5529951b-7a6b-4619-8bb7-fdc5c691c91c,https://biolit.fr/sorties/sortie-5529951b-7a6b-4619-8bb7-fdc5c691c91c/,Phil,,5/23/2016 0:00,12.0:25,12.0000000,47.790319000000,-4.270128000000,,Treffiagat - Finistère,54024,observation-5529951b-7a6b-4619-8bb7-fdc5c691c91c,https://biolit.fr/observations/observation-5529951b-7a6b-4619-8bb7-fdc5c691c91c/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160523_122750.jpg,,TRUE, +N1,61058,sortie-5529951b-7a6b-4619-8bb7-fdc5c691c91c,https://biolit.fr/sorties/sortie-5529951b-7a6b-4619-8bb7-fdc5c691c91c/,Phil,,5/23/2016 0:00,12.0:25,12.0000000,47.790319000000,-4.270128000000,,Treffiagat - Finistère,54026,observation-5529951b-7a6b-4619-8bb7-fdc5c691c91c-2,https://biolit.fr/observations/observation-5529951b-7a6b-4619-8bb7-fdc5c691c91c-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160523_122934.jpg,,TRUE, +N1,61058,sortie-5529951b-7a6b-4619-8bb7-fdc5c691c91c,https://biolit.fr/sorties/sortie-5529951b-7a6b-4619-8bb7-fdc5c691c91c/,Phil,,5/23/2016 0:00,12.0:25,12.0000000,47.790319000000,-4.270128000000,,Treffiagat - Finistère,54028,observation-5529951b-7a6b-4619-8bb7-fdc5c691c91c-3,https://biolit.fr/observations/observation-5529951b-7a6b-4619-8bb7-fdc5c691c91c-3/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20160523_123003.jpg,,TRUE, +N1,61059,sortie-c9dbcdae-513e-4148-80fd-8a21465757c1,https://biolit.fr/sorties/sortie-c9dbcdae-513e-4148-80fd-8a21465757c1/,jroger,,5/21/2016 0:00,11.0000000,13.0000000,43.214849000000,5.34295300000,,Anse de la Maronnaise,54030,observation-c9dbcdae-513e-4148-80fd-8a21465757c1,https://biolit.fr/observations/observation-c9dbcdae-513e-4148-80fd-8a21465757c1/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1775-scaled.jpg,,FALSE, +N1,61059,sortie-c9dbcdae-513e-4148-80fd-8a21465757c1,https://biolit.fr/sorties/sortie-c9dbcdae-513e-4148-80fd-8a21465757c1/,jroger,,5/21/2016 0:00,11.0000000,13.0000000,43.214849000000,5.34295300000,,Anse de la Maronnaise,54032,observation-c9dbcdae-513e-4148-80fd-8a21465757c1-2,https://biolit.fr/observations/observation-c9dbcdae-513e-4148-80fd-8a21465757c1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1782-scaled.jpg,,FALSE, +N1,61059,sortie-c9dbcdae-513e-4148-80fd-8a21465757c1,https://biolit.fr/sorties/sortie-c9dbcdae-513e-4148-80fd-8a21465757c1/,jroger,,5/21/2016 0:00,11.0000000,13.0000000,43.214849000000,5.34295300000,,Anse de la Maronnaise,54034,observation-c9dbcdae-513e-4148-80fd-8a21465757c1-3,https://biolit.fr/observations/observation-c9dbcdae-513e-4148-80fd-8a21465757c1-3/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1786-scaled.jpg,,TRUE, +N1,61059,sortie-c9dbcdae-513e-4148-80fd-8a21465757c1,https://biolit.fr/sorties/sortie-c9dbcdae-513e-4148-80fd-8a21465757c1/,jroger,,5/21/2016 0:00,11.0000000,13.0000000,43.214849000000,5.34295300000,,Anse de la Maronnaise,54036,observation-c9dbcdae-513e-4148-80fd-8a21465757c1-4,https://biolit.fr/observations/observation-c9dbcdae-513e-4148-80fd-8a21465757c1-4/,Nemalion elminthoides,Némalion vermiforme,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1788-scaled.jpg,,TRUE, +N1,61059,sortie-c9dbcdae-513e-4148-80fd-8a21465757c1,https://biolit.fr/sorties/sortie-c9dbcdae-513e-4148-80fd-8a21465757c1/,jroger,,5/21/2016 0:00,11.0000000,13.0000000,43.214849000000,5.34295300000,,Anse de la Maronnaise,54038,observation-c9dbcdae-513e-4148-80fd-8a21465757c1-5,https://biolit.fr/observations/observation-c9dbcdae-513e-4148-80fd-8a21465757c1-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1798-scaled.jpg,,FALSE, +N1,61059,sortie-c9dbcdae-513e-4148-80fd-8a21465757c1,https://biolit.fr/sorties/sortie-c9dbcdae-513e-4148-80fd-8a21465757c1/,jroger,,5/21/2016 0:00,11.0000000,13.0000000,43.214849000000,5.34295300000,,Anse de la Maronnaise,54040,observation-c9dbcdae-513e-4148-80fd-8a21465757c1-6,https://biolit.fr/observations/observation-c9dbcdae-513e-4148-80fd-8a21465757c1-6/,Xantho poressa,Xanthe de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1800-scaled.jpg,,TRUE, +N1,61059,sortie-c9dbcdae-513e-4148-80fd-8a21465757c1,https://biolit.fr/sorties/sortie-c9dbcdae-513e-4148-80fd-8a21465757c1/,jroger,,5/21/2016 0:00,11.0000000,13.0000000,43.214849000000,5.34295300000,,Anse de la Maronnaise,54042,observation-c9dbcdae-513e-4148-80fd-8a21465757c1-7,https://biolit.fr/observations/observation-c9dbcdae-513e-4148-80fd-8a21465757c1-7/,Xantho poressa,Xanthe de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1804-scaled.jpg,,TRUE, +N1,61059,sortie-c9dbcdae-513e-4148-80fd-8a21465757c1,https://biolit.fr/sorties/sortie-c9dbcdae-513e-4148-80fd-8a21465757c1/,jroger,,5/21/2016 0:00,11.0000000,13.0000000,43.214849000000,5.34295300000,,Anse de la Maronnaise,54044,observation-c9dbcdae-513e-4148-80fd-8a21465757c1-8,https://biolit.fr/observations/observation-c9dbcdae-513e-4148-80fd-8a21465757c1-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1805-scaled.jpg,,FALSE, +N1,61060,sortie-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf,https://biolit.fr/sorties/sortie-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf/,Phil,,5/21/2016 0:00,11.0000000,12.000005,47.873494000000,-3.930915000000,,Concarneau - Finistère,54046,observation-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf,https://biolit.fr/observations/observation-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf/,Pholis gunnellus,Gonnelle,,https://biolit.fr/wp-content/uploads/2023/07/20160521_110609.jpg,,TRUE, +N1,61060,sortie-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf,https://biolit.fr/sorties/sortie-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf/,Phil,,5/21/2016 0:00,11.0000000,12.000005,47.873494000000,-3.930915000000,,Concarneau - Finistère,54048,observation-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf-2,https://biolit.fr/observations/observation-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160521_110615.jpg,,FALSE, +N1,61060,sortie-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf,https://biolit.fr/sorties/sortie-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf/,Phil,,5/21/2016 0:00,11.0000000,12.000005,47.873494000000,-3.930915000000,,Concarneau - Finistère,54050,observation-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf-3,https://biolit.fr/observations/observation-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160521_110927.jpg,,FALSE, +N1,61060,sortie-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf,https://biolit.fr/sorties/sortie-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf/,Phil,,5/21/2016 0:00,11.0000000,12.000005,47.873494000000,-3.930915000000,,Concarneau - Finistère,54052,observation-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf-4,https://biolit.fr/observations/observation-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf-4/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20160521_111153.jpg,,TRUE, +N1,61060,sortie-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf,https://biolit.fr/sorties/sortie-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf/,Phil,,5/21/2016 0:00,11.0000000,12.000005,47.873494000000,-3.930915000000,,Concarneau - Finistère,54054,observation-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf-5,https://biolit.fr/observations/observation-4e8d9bcd-8bf1-4626-96b8-618240cb8fcf-5/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/20160521_111329.jpg,,TRUE, +N1,61061,sortie-3b5e3db4-2aa8-42ad-92e1-dba767c4ab82,https://biolit.fr/sorties/sortie-3b5e3db4-2aa8-42ad-92e1-dba767c4ab82/,Phil,,5/23/2016 0:00,12.0000000,12.0000000,47.789361000000,-4.272739000000,,Treffiagat - Finistère,54056,observation-3b5e3db4-2aa8-42ad-92e1-dba767c4ab82,https://biolit.fr/observations/observation-3b5e3db4-2aa8-42ad-92e1-dba767c4ab82/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20160523_120626.jpg,,TRUE, +N1,61061,sortie-3b5e3db4-2aa8-42ad-92e1-dba767c4ab82,https://biolit.fr/sorties/sortie-3b5e3db4-2aa8-42ad-92e1-dba767c4ab82/,Phil,,5/23/2016 0:00,12.0000000,12.0000000,47.789361000000,-4.272739000000,,Treffiagat - Finistère,54058,observation-3b5e3db4-2aa8-42ad-92e1-dba767c4ab82-2,https://biolit.fr/observations/observation-3b5e3db4-2aa8-42ad-92e1-dba767c4ab82-2/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/20160523_120526.jpg,,TRUE, +N1,61061,sortie-3b5e3db4-2aa8-42ad-92e1-dba767c4ab82,https://biolit.fr/sorties/sortie-3b5e3db4-2aa8-42ad-92e1-dba767c4ab82/,Phil,,5/23/2016 0:00,12.0000000,12.0000000,47.789361000000,-4.272739000000,,Treffiagat - Finistère,54060,observation-3b5e3db4-2aa8-42ad-92e1-dba767c4ab82-3,https://biolit.fr/observations/observation-3b5e3db4-2aa8-42ad-92e1-dba767c4ab82-3/,Saccharina latissima,Laminaire sucrée,,https://biolit.fr/wp-content/uploads/2023/07/20160523_120227.jpg,,TRUE, +N1,61062,sortie-3d03d354-d201-45fc-b0ea-1dfb01e65039,https://biolit.fr/sorties/sortie-3d03d354-d201-45fc-b0ea-1dfb01e65039/,dav,,5/21/2016 0:00,14.0000000,15.0000000,43.214964000000,5.342379000000,,Anse de la Maronaise,54062,observation-3d03d354-d201-45fc-b0ea-1dfb01e65039,https://biolit.fr/observations/observation-3d03d354-d201-45fc-b0ea-1dfb01e65039/,Oblada melanura,Oblade,,https://biolit.fr/wp-content/uploads/2023/07/GOPR6391.JPG,,TRUE, +N1,61062,sortie-3d03d354-d201-45fc-b0ea-1dfb01e65039,https://biolit.fr/sorties/sortie-3d03d354-d201-45fc-b0ea-1dfb01e65039/,dav,,5/21/2016 0:00,14.0000000,15.0000000,43.214964000000,5.342379000000,,Anse de la Maronaise,54064,observation-3d03d354-d201-45fc-b0ea-1dfb01e65039-2,https://biolit.fr/observations/observation-3d03d354-d201-45fc-b0ea-1dfb01e65039-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/GOPR6382.JPG,,FALSE, +N1,61063,sortie-def9fa6f-b526-4739-9247-8833635db9d2,https://biolit.fr/sorties/sortie-def9fa6f-b526-4739-9247-8833635db9d2/,AIEJE,,5/30/2016 0:00,12.0000000,12.0000000,43.333100000000,5.199833000000,,"port de la redonne, ensues la redonne",54066,observation-def9fa6f-b526-4739-9247-8833635db9d2,https://biolit.fr/observations/observation-def9fa6f-b526-4739-9247-8833635db9d2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3091-rotated.jpg,,FALSE, +N1,61064,sortie-11c0b33a-30ea-49ab-a55c-9008c226b7e2,https://biolit.fr/sorties/sortie-11c0b33a-30ea-49ab-a55c-9008c226b7e2/,AIEJE,,5/30/2016 0:00,10.0000000,11.0000000,43.333925000000,5.197793000000,,"plage des pebraire, ensues la redonne",54068,observation-11c0b33a-30ea-49ab-a55c-9008c226b7e2,https://biolit.fr/observations/observation-11c0b33a-30ea-49ab-a55c-9008c226b7e2/,Mola mola,Poisson-lune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3087.JPG,,TRUE, +N1,61065,sortie-969d797d-eaa6-460f-98bd-9aeb749d704d,https://biolit.fr/sorties/sortie-969d797d-eaa6-460f-98bd-9aeb749d704d/,Phil,,5/23/2016 0:00,11.0:45,12.0:25,47.787835000000,-4.270763000000,,Treffiagat - Finistère,54070,observation-969d797d-eaa6-460f-98bd-9aeb749d704d,https://biolit.fr/observations/observation-969d797d-eaa6-460f-98bd-9aeb749d704d/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20160523_122105.jpg,,TRUE, +N1,61065,sortie-969d797d-eaa6-460f-98bd-9aeb749d704d,https://biolit.fr/sorties/sortie-969d797d-eaa6-460f-98bd-9aeb749d704d/,Phil,,5/23/2016 0:00,11.0:45,12.0:25,47.787835000000,-4.270763000000,,Treffiagat - Finistère,54072,observation-969d797d-eaa6-460f-98bd-9aeb749d704d-2,https://biolit.fr/observations/observation-969d797d-eaa6-460f-98bd-9aeb749d704d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160523_121853.jpg,,FALSE, +N1,61065,sortie-969d797d-eaa6-460f-98bd-9aeb749d704d,https://biolit.fr/sorties/sortie-969d797d-eaa6-460f-98bd-9aeb749d704d/,Phil,,5/23/2016 0:00,11.0:45,12.0:25,47.787835000000,-4.270763000000,,Treffiagat - Finistère,54074,observation-969d797d-eaa6-460f-98bd-9aeb749d704d-3,https://biolit.fr/observations/observation-969d797d-eaa6-460f-98bd-9aeb749d704d-3/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160523_121703.jpg,,TRUE, +N1,61065,sortie-969d797d-eaa6-460f-98bd-9aeb749d704d,https://biolit.fr/sorties/sortie-969d797d-eaa6-460f-98bd-9aeb749d704d/,Phil,,5/23/2016 0:00,11.0:45,12.0:25,47.787835000000,-4.270763000000,,Treffiagat - Finistère,54076,observation-969d797d-eaa6-460f-98bd-9aeb749d704d-4,https://biolit.fr/observations/observation-969d797d-eaa6-460f-98bd-9aeb749d704d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160523_122533.jpg,,FALSE, +N1,61065,sortie-969d797d-eaa6-460f-98bd-9aeb749d704d,https://biolit.fr/sorties/sortie-969d797d-eaa6-460f-98bd-9aeb749d704d/,Phil,,5/23/2016 0:00,11.0:45,12.0:25,47.787835000000,-4.270763000000,,Treffiagat - Finistère,54078,observation-969d797d-eaa6-460f-98bd-9aeb749d704d-5,https://biolit.fr/observations/observation-969d797d-eaa6-460f-98bd-9aeb749d704d-5/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/20160523_122509.jpg,,TRUE, +N1,61065,sortie-969d797d-eaa6-460f-98bd-9aeb749d704d,https://biolit.fr/sorties/sortie-969d797d-eaa6-460f-98bd-9aeb749d704d/,Phil,,5/23/2016 0:00,11.0:45,12.0:25,47.787835000000,-4.270763000000,,Treffiagat - Finistère,54080,observation-969d797d-eaa6-460f-98bd-9aeb749d704d-6,https://biolit.fr/observations/observation-969d797d-eaa6-460f-98bd-9aeb749d704d-6/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20160523_122143.jpg,,TRUE, +N1,61065,sortie-969d797d-eaa6-460f-98bd-9aeb749d704d,https://biolit.fr/sorties/sortie-969d797d-eaa6-460f-98bd-9aeb749d704d/,Phil,,5/23/2016 0:00,11.0:45,12.0:25,47.787835000000,-4.270763000000,,Treffiagat - Finistère,54082,observation-969d797d-eaa6-460f-98bd-9aeb749d704d-7,https://biolit.fr/observations/observation-969d797d-eaa6-460f-98bd-9aeb749d704d-7/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20160523_122136.jpg,,TRUE, +N1,61065,sortie-969d797d-eaa6-460f-98bd-9aeb749d704d,https://biolit.fr/sorties/sortie-969d797d-eaa6-460f-98bd-9aeb749d704d/,Phil,,5/23/2016 0:00,11.0:45,12.0:25,47.787835000000,-4.270763000000,,Treffiagat - Finistère,54084,observation-969d797d-eaa6-460f-98bd-9aeb749d704d-8,https://biolit.fr/observations/observation-969d797d-eaa6-460f-98bd-9aeb749d704d-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160523_122556.jpg,,FALSE, +N1,61066,sortie-7f9dc519-cdc4-499a-b7d7-661fc2fdf763,https://biolit.fr/sorties/sortie-7f9dc519-cdc4-499a-b7d7-661fc2fdf763/,Ville de Marseille Ecole National CM1A,,05/02/2016,10.0000000,12.0000000,43.267757000000,5.370384000000,,MARSEILLE 13008,54086,observation-7f9dc519-cdc4-499a-b7d7-661fc2fdf763,https://biolit.fr/observations/observation-7f9dc519-cdc4-499a-b7d7-661fc2fdf763/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabe vert Carcinus maenas-scaled.jpg,,FALSE, +N1,61066,sortie-7f9dc519-cdc4-499a-b7d7-661fc2fdf763,https://biolit.fr/sorties/sortie-7f9dc519-cdc4-499a-b7d7-661fc2fdf763/,Ville de Marseille Ecole National CM1A,,05/02/2016,10.0000000,12.0000000,43.267757000000,5.370384000000,,MARSEILLE 13008,54088,observation-7f9dc519-cdc4-499a-b7d7-661fc2fdf763-2,https://biolit.fr/observations/observation-7f9dc519-cdc4-499a-b7d7-661fc2fdf763-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/concombre de mer Holothurie tubuleuse ventre-scaled.jpg,,FALSE, +N1,61066,sortie-7f9dc519-cdc4-499a-b7d7-661fc2fdf763,https://biolit.fr/sorties/sortie-7f9dc519-cdc4-499a-b7d7-661fc2fdf763/,Ville de Marseille Ecole National CM1A,,05/02/2016,10.0000000,12.0000000,43.267757000000,5.370384000000,,MARSEILLE 13008,54090,observation-7f9dc519-cdc4-499a-b7d7-661fc2fdf763-3,https://biolit.fr/observations/observation-7f9dc519-cdc4-499a-b7d7-661fc2fdf763-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/concombre de mer Holothurie tubuleuse dos-scaled.jpg,,FALSE, +N1,61066,sortie-7f9dc519-cdc4-499a-b7d7-661fc2fdf763,https://biolit.fr/sorties/sortie-7f9dc519-cdc4-499a-b7d7-661fc2fdf763/,Ville de Marseille Ecole National CM1A,,05/02/2016,10.0000000,12.0000000,43.267757000000,5.370384000000,,MARSEILLE 13008,54092,observation-7f9dc519-cdc4-499a-b7d7-661fc2fdf763-4,https://biolit.fr/observations/observation-7f9dc519-cdc4-499a-b7d7-661fc2fdf763-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mulet a grosse tête Mugil cephalus-scaled.jpg,,FALSE, +N1,61066,sortie-7f9dc519-cdc4-499a-b7d7-661fc2fdf763,https://biolit.fr/sorties/sortie-7f9dc519-cdc4-499a-b7d7-661fc2fdf763/,Ville de Marseille Ecole National CM1A,,05/02/2016,10.0000000,12.0000000,43.267757000000,5.370384000000,,MARSEILLE 13008,54094,observation-7f9dc519-cdc4-499a-b7d7-661fc2fdf763-5,https://biolit.fr/observations/observation-7f9dc519-cdc4-499a-b7d7-661fc2fdf763-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Palourde commune Venerupis decussata1-scaled.jpg,,FALSE, +N1,61066,sortie-7f9dc519-cdc4-499a-b7d7-661fc2fdf763,https://biolit.fr/sorties/sortie-7f9dc519-cdc4-499a-b7d7-661fc2fdf763/,Ville de Marseille Ecole National CM1A,,05/02/2016,10.0000000,12.0000000,43.267757000000,5.370384000000,,MARSEILLE 13008,54096,observation-7f9dc519-cdc4-499a-b7d7-661fc2fdf763-6,https://biolit.fr/observations/observation-7f9dc519-cdc4-499a-b7d7-661fc2fdf763-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Palourde commune Venerupis decussata2-scaled.jpg,,FALSE, +N1,61067,sortie-0c239fc4-cace-4902-b0cd-82e7a0069629,https://biolit.fr/sorties/sortie-0c239fc4-cace-4902-b0cd-82e7a0069629/,Phil,,5/27/2016 0:00,11.0:25,11.0000000,47.857249000000,-3.917518000000,,Concarneau - Finistère,54098,observation-0c239fc4-cace-4902-b0cd-82e7a0069629,https://biolit.fr/observations/observation-0c239fc4-cace-4902-b0cd-82e7a0069629/,Phalacrocorax aristotelis,Cormoran huppé,,https://biolit.fr/wp-content/uploads/2023/07/P1020940.JPG,,TRUE, +N1,61068,sortie-347146f5-188f-4bc8-bc2b-e6307041c15f,https://biolit.fr/sorties/sortie-347146f5-188f-4bc8-bc2b-e6307041c15f/,Phil,,5/25/2016 0:00,17.000005,17.0000000,47.894188000000,-3.953312000000,,La Forêt-Fouesnant - Finistère,54100,observation-347146f5-188f-4bc8-bc2b-e6307041c15f,https://biolit.fr/observations/observation-347146f5-188f-4bc8-bc2b-e6307041c15f/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/20160525_171925.jpg,,TRUE, +N1,61068,sortie-347146f5-188f-4bc8-bc2b-e6307041c15f,https://biolit.fr/sorties/sortie-347146f5-188f-4bc8-bc2b-e6307041c15f/,Phil,,5/25/2016 0:00,17.000005,17.0000000,47.894188000000,-3.953312000000,,La Forêt-Fouesnant - Finistère,54102,observation-347146f5-188f-4bc8-bc2b-e6307041c15f-2,https://biolit.fr/observations/observation-347146f5-188f-4bc8-bc2b-e6307041c15f-2/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20160525_171812.jpg,,TRUE, +N1,61068,sortie-347146f5-188f-4bc8-bc2b-e6307041c15f,https://biolit.fr/sorties/sortie-347146f5-188f-4bc8-bc2b-e6307041c15f/,Phil,,5/25/2016 0:00,17.000005,17.0000000,47.894188000000,-3.953312000000,,La Forêt-Fouesnant - Finistère,54104,observation-347146f5-188f-4bc8-bc2b-e6307041c15f-3,https://biolit.fr/observations/observation-347146f5-188f-4bc8-bc2b-e6307041c15f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160525_172127.jpg,,FALSE, +N1,61069,sortie-b770b953-f590-42ae-b6c2-cbc5c091d413,https://biolit.fr/sorties/sortie-b770b953-f590-42ae-b6c2-cbc5c091d413/,dav,,5/21/2016 0:00,10.0000000,15.0000000,43.21483900000,5.34290800000,,Anse de la Maronaise,54106,observation-b770b953-f590-42ae-b6c2-cbc5c091d413,https://biolit.fr/observations/observation-b770b953-f590-42ae-b6c2-cbc5c091d413/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9553-scaled.jpg,,TRUE, +N1,61069,sortie-b770b953-f590-42ae-b6c2-cbc5c091d413,https://biolit.fr/sorties/sortie-b770b953-f590-42ae-b6c2-cbc5c091d413/,dav,,5/21/2016 0:00,10.0000000,15.0000000,43.21483900000,5.34290800000,,Anse de la Maronaise,54108,observation-b770b953-f590-42ae-b6c2-cbc5c091d413-2,https://biolit.fr/observations/observation-b770b953-f590-42ae-b6c2-cbc5c091d413-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_9554-scaled.jpg,,TRUE, +N1,61070,sortie-485229fd-3d1d-481e-8b16-50de3deeabeb,https://biolit.fr/sorties/sortie-485229fd-3d1d-481e-8b16-50de3deeabeb/,Jérémie,,5/21/2016 0:00,14.0000000,16.0000000,43.214973000000,5.342943000000,,Anse de la Maronaise,54110,observation-485229fd-3d1d-481e-8b16-50de3deeabeb,https://biolit.fr/observations/observation-485229fd-3d1d-481e-8b16-50de3deeabeb/,,,,https://biolit.fr/wp-content/uploads/2023/07/P5210050-scaled.jpg,,FALSE, +N1,61070,sortie-485229fd-3d1d-481e-8b16-50de3deeabeb,https://biolit.fr/sorties/sortie-485229fd-3d1d-481e-8b16-50de3deeabeb/,Jérémie,,5/21/2016 0:00,14.0000000,16.0000000,43.214973000000,5.342943000000,,Anse de la Maronaise,54112,observation-485229fd-3d1d-481e-8b16-50de3deeabeb-2,https://biolit.fr/observations/observation-485229fd-3d1d-481e-8b16-50de3deeabeb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P5210065-scaled.jpg,,FALSE, +N1,61070,sortie-485229fd-3d1d-481e-8b16-50de3deeabeb,https://biolit.fr/sorties/sortie-485229fd-3d1d-481e-8b16-50de3deeabeb/,Jérémie,,5/21/2016 0:00,14.0000000,16.0000000,43.214973000000,5.342943000000,,Anse de la Maronaise,54114,observation-485229fd-3d1d-481e-8b16-50de3deeabeb-3,https://biolit.fr/observations/observation-485229fd-3d1d-481e-8b16-50de3deeabeb-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P5210071-scaled.jpg,,FALSE, +N1,61070,sortie-485229fd-3d1d-481e-8b16-50de3deeabeb,https://biolit.fr/sorties/sortie-485229fd-3d1d-481e-8b16-50de3deeabeb/,Jérémie,,5/21/2016 0:00,14.0000000,16.0000000,43.214973000000,5.342943000000,,Anse de la Maronaise,54116,observation-485229fd-3d1d-481e-8b16-50de3deeabeb-4,https://biolit.fr/observations/observation-485229fd-3d1d-481e-8b16-50de3deeabeb-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P5210074-scaled.jpg,,FALSE, +N1,61070,sortie-485229fd-3d1d-481e-8b16-50de3deeabeb,https://biolit.fr/sorties/sortie-485229fd-3d1d-481e-8b16-50de3deeabeb/,Jérémie,,5/21/2016 0:00,14.0000000,16.0000000,43.214973000000,5.342943000000,,Anse de la Maronaise,54118,observation-485229fd-3d1d-481e-8b16-50de3deeabeb-5,https://biolit.fr/observations/observation-485229fd-3d1d-481e-8b16-50de3deeabeb-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P5210079-scaled.jpg,,FALSE, +N1,61071,sortie-dac1daea-2ede-4ea5-9439-33f0bff27cae,https://biolit.fr/sorties/sortie-dac1daea-2ede-4ea5-9439-33f0bff27cae/,Phil,,5/27/2016 0:00,11.0:45,11.0000000,47.856936000000,-3.918988000000,,Concarneau - Finistère,54120,observation-dac1daea-2ede-4ea5-9439-33f0bff27cae,https://biolit.fr/observations/observation-dac1daea-2ede-4ea5-9439-33f0bff27cae/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160527_114417.jpg,,FALSE, +N1,61071,sortie-dac1daea-2ede-4ea5-9439-33f0bff27cae,https://biolit.fr/sorties/sortie-dac1daea-2ede-4ea5-9439-33f0bff27cae/,Phil,,5/27/2016 0:00,11.0:45,11.0000000,47.856936000000,-3.918988000000,,Concarneau - Finistère,54122,observation-dac1daea-2ede-4ea5-9439-33f0bff27cae-2,https://biolit.fr/observations/observation-dac1daea-2ede-4ea5-9439-33f0bff27cae-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020951.JPG,,FALSE, +N1,61071,sortie-dac1daea-2ede-4ea5-9439-33f0bff27cae,https://biolit.fr/sorties/sortie-dac1daea-2ede-4ea5-9439-33f0bff27cae/,Phil,,5/27/2016 0:00,11.0:45,11.0000000,47.856936000000,-3.918988000000,,Concarneau - Finistère,54124,observation-dac1daea-2ede-4ea5-9439-33f0bff27cae-3,https://biolit.fr/observations/observation-dac1daea-2ede-4ea5-9439-33f0bff27cae-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020952.JPG,,FALSE, +N1,61071,sortie-dac1daea-2ede-4ea5-9439-33f0bff27cae,https://biolit.fr/sorties/sortie-dac1daea-2ede-4ea5-9439-33f0bff27cae/,Phil,,5/27/2016 0:00,11.0:45,11.0000000,47.856936000000,-3.918988000000,,Concarneau - Finistère,54126,observation-dac1daea-2ede-4ea5-9439-33f0bff27cae-4,https://biolit.fr/observations/observation-dac1daea-2ede-4ea5-9439-33f0bff27cae-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020955.JPG,,FALSE, +N1,61072,sortie-ea445d04-9d0d-43ed-b18b-3622ae466541,https://biolit.fr/sorties/sortie-ea445d04-9d0d-43ed-b18b-3622ae466541/,Phil,,5/27/2016 0:00,11.0000000,11.0:15,47.859343000000,-3.913731000000,,Concarneau - Finistère,54128,observation-ea445d04-9d0d-43ed-b18b-3622ae466541,https://biolit.fr/observations/observation-ea445d04-9d0d-43ed-b18b-3622ae466541/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/P1020900.JPG,,TRUE, +N1,61073,sortie-911a0a8b-b7d4-4413-811a-be006d271820,https://biolit.fr/sorties/sortie-911a0a8b-b7d4-4413-811a-be006d271820/,Phil,,5/23/2016 0:00,12.000005,12.0:15,47.790055000000,-4.271008000000,,Treffiagat - Finistère,54130,observation-911a0a8b-b7d4-4413-811a-be006d271820,https://biolit.fr/observations/observation-911a0a8b-b7d4-4413-811a-be006d271820/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/20160523_121141.jpg,,TRUE, +N1,61073,sortie-911a0a8b-b7d4-4413-811a-be006d271820,https://biolit.fr/sorties/sortie-911a0a8b-b7d4-4413-811a-be006d271820/,Phil,,5/23/2016 0:00,12.000005,12.0:15,47.790055000000,-4.271008000000,,Treffiagat - Finistère,54132,observation-911a0a8b-b7d4-4413-811a-be006d271820-2,https://biolit.fr/observations/observation-911a0a8b-b7d4-4413-811a-be006d271820-2/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/20160523_121210.jpg,,TRUE, +N1,61073,sortie-911a0a8b-b7d4-4413-811a-be006d271820,https://biolit.fr/sorties/sortie-911a0a8b-b7d4-4413-811a-be006d271820/,Phil,,5/23/2016 0:00,12.000005,12.0:15,47.790055000000,-4.271008000000,,Treffiagat - Finistère,54134,observation-911a0a8b-b7d4-4413-811a-be006d271820-3,https://biolit.fr/observations/observation-911a0a8b-b7d4-4413-811a-be006d271820-3/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/20160523_121436.jpg,,TRUE, +N1,61073,sortie-911a0a8b-b7d4-4413-811a-be006d271820,https://biolit.fr/sorties/sortie-911a0a8b-b7d4-4413-811a-be006d271820/,Phil,,5/23/2016 0:00,12.000005,12.0:15,47.790055000000,-4.271008000000,,Treffiagat - Finistère,54136,observation-911a0a8b-b7d4-4413-811a-be006d271820-4,https://biolit.fr/observations/observation-911a0a8b-b7d4-4413-811a-be006d271820-4/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/20160523_121514.jpg,,TRUE, +N1,61073,sortie-911a0a8b-b7d4-4413-811a-be006d271820,https://biolit.fr/sorties/sortie-911a0a8b-b7d4-4413-811a-be006d271820/,Phil,,5/23/2016 0:00,12.000005,12.0:15,47.790055000000,-4.271008000000,,Treffiagat - Finistère,54138,observation-911a0a8b-b7d4-4413-811a-be006d271820-5,https://biolit.fr/observations/observation-911a0a8b-b7d4-4413-811a-be006d271820-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160523_120740.jpg,,FALSE, +N1,61074,sortie-0a0719d7-1889-46c0-af14-5e4ed7f870ac,https://biolit.fr/sorties/sortie-0a0719d7-1889-46c0-af14-5e4ed7f870ac/,Phil,,5/21/2016 0:00,10.0:45,11.0000000,47.873264000000,-3.932042000000,,Concarneau - Finistère,54140,observation-0a0719d7-1889-46c0-af14-5e4ed7f870ac,https://biolit.fr/observations/observation-0a0719d7-1889-46c0-af14-5e4ed7f870ac/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20160521_110520.jpg,,TRUE, +N1,61074,sortie-0a0719d7-1889-46c0-af14-5e4ed7f870ac,https://biolit.fr/sorties/sortie-0a0719d7-1889-46c0-af14-5e4ed7f870ac/,Phil,,5/21/2016 0:00,10.0:45,11.0000000,47.873264000000,-3.932042000000,,Concarneau - Finistère,54142,observation-0a0719d7-1889-46c0-af14-5e4ed7f870ac-2,https://biolit.fr/observations/observation-0a0719d7-1889-46c0-af14-5e4ed7f870ac-2/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20160521_110428.jpg,,TRUE, +N1,61074,sortie-0a0719d7-1889-46c0-af14-5e4ed7f870ac,https://biolit.fr/sorties/sortie-0a0719d7-1889-46c0-af14-5e4ed7f870ac/,Phil,,5/21/2016 0:00,10.0:45,11.0000000,47.873264000000,-3.932042000000,,Concarneau - Finistère,54144,observation-0a0719d7-1889-46c0-af14-5e4ed7f870ac-3,https://biolit.fr/observations/observation-0a0719d7-1889-46c0-af14-5e4ed7f870ac-3/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160521_111041.jpg,,TRUE, +N1,61074,sortie-0a0719d7-1889-46c0-af14-5e4ed7f870ac,https://biolit.fr/sorties/sortie-0a0719d7-1889-46c0-af14-5e4ed7f870ac/,Phil,,5/21/2016 0:00,10.0:45,11.0000000,47.873264000000,-3.932042000000,,Concarneau - Finistère,54146,observation-0a0719d7-1889-46c0-af14-5e4ed7f870ac-4,https://biolit.fr/observations/observation-0a0719d7-1889-46c0-af14-5e4ed7f870ac-4/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160521_111124.jpg,,TRUE, +N1,61075,sortie-06a1a00f-e82b-4dd2-b0bc-6435bc30bcce,https://biolit.fr/sorties/sortie-06a1a00f-e82b-4dd2-b0bc-6435bc30bcce/,Marine,,5/21/2016 0:00,9.0000000,15.0000000,43.214961000000,5.343019000000,,Anse de la Maronaise,54148,observation-06a1a00f-e82b-4dd2-b0bc-6435bc30bcce,https://biolit.fr/observations/observation-06a1a00f-e82b-4dd2-b0bc-6435bc30bcce/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0204-scaled.jpg,,FALSE, +N1,61076,sortie-675c38df-3084-4491-a4c6-e34dd659c0cc,https://biolit.fr/sorties/sortie-675c38df-3084-4491-a4c6-e34dd659c0cc/,Marine,,5/21/2016 0:00,9.0000000,15.0000000,43.214981000000,5.342986000000,,Anse de la Maronaise,54150,observation-675c38df-3084-4491-a4c6-e34dd659c0cc,https://biolit.fr/observations/observation-675c38df-3084-4491-a4c6-e34dd659c0cc/,Nemalion elminthoides,Némalion vermiforme,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0097-scaled.jpg,,TRUE, +N1,61077,sortie-937c5df4-823b-4e05-b46f-ccb66eff4e62,https://biolit.fr/sorties/sortie-937c5df4-823b-4e05-b46f-ccb66eff4e62/,Marine,,5/21/2016 0:00,9.0000000,15.0000000,43.21500500000,5.34293300000,,Anse de la Maronaise,54152,observation-937c5df4-823b-4e05-b46f-ccb66eff4e62,https://biolit.fr/observations/observation-937c5df4-823b-4e05-b46f-ccb66eff4e62/,Parablennius incognitus,Blennie diabolo,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0103_0-scaled.jpg,,TRUE, +N1,61078,sortie-71de0374-8aa8-4473-9ff8-47482e6ffc8f,https://biolit.fr/sorties/sortie-71de0374-8aa8-4473-9ff8-47482e6ffc8f/,Marine,,5/21/2016 0:00,9.0000000,15.0000000,43.214926000000,5.342976000000,,Anse de la Maronaise,54154,observation-71de0374-8aa8-4473-9ff8-47482e6ffc8f,https://biolit.fr/observations/observation-71de0374-8aa8-4473-9ff8-47482e6ffc8f/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0189-scaled.jpg,,FALSE, +N1,61079,sortie-a8c9103c-c204-435f-8f04-580e85fdf732,https://biolit.fr/sorties/sortie-a8c9103c-c204-435f-8f04-580e85fdf732/,Marine,,5/21/2016 0:00,9.0000000,15.0000000,43.215035000000,5.343019000000,,Anse de la Maronaise,54156,observation-a8c9103c-c204-435f-8f04-580e85fdf732,https://biolit.fr/observations/observation-a8c9103c-c204-435f-8f04-580e85fdf732/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0101-scaled.jpg,,TRUE, +N1,61080,sortie-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc,https://biolit.fr/sorties/sortie-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc/,Phil,,5/25/2016 0:00,16.0:45,17.0000000,47.893881000000,-3.952877000000,,La Forêt-Fouesnant - Finistère,54158,observation-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc,https://biolit.fr/observations/observation-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/20160525_164918.jpg,,TRUE, +N1,61080,sortie-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc,https://biolit.fr/sorties/sortie-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc/,Phil,,5/25/2016 0:00,16.0:45,17.0000000,47.893881000000,-3.952877000000,,La Forêt-Fouesnant - Finistère,54160,observation-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc-2,https://biolit.fr/observations/observation-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc-2/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/20160525_164841.jpg,,TRUE, +N1,61080,sortie-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc,https://biolit.fr/sorties/sortie-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc/,Phil,,5/25/2016 0:00,16.0:45,17.0000000,47.893881000000,-3.952877000000,,La Forêt-Fouesnant - Finistère,54162,observation-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc-3,https://biolit.fr/observations/observation-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc-3/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/20160525_164722.jpg,,TRUE, +N1,61080,sortie-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc,https://biolit.fr/sorties/sortie-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc/,Phil,,5/25/2016 0:00,16.0:45,17.0000000,47.893881000000,-3.952877000000,,La Forêt-Fouesnant - Finistère,54164,observation-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc-4,https://biolit.fr/observations/observation-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc-4/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/20160525_164356.jpg,,TRUE, +N1,61080,sortie-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc,https://biolit.fr/sorties/sortie-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc/,Phil,,5/25/2016 0:00,16.0:45,17.0000000,47.893881000000,-3.952877000000,,La Forêt-Fouesnant - Finistère,54166,observation-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc-5,https://biolit.fr/observations/observation-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc-5/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20160525_164306.jpg,,TRUE, +N1,61080,sortie-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc,https://biolit.fr/sorties/sortie-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc/,Phil,,5/25/2016 0:00,16.0:45,17.0000000,47.893881000000,-3.952877000000,,La Forêt-Fouesnant - Finistère,54168,observation-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc-6,https://biolit.fr/observations/observation-cc5e91bc-7a4b-4f4e-a199-f8e24041d1bc-6/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/20160525_170542.jpg,,TRUE, +N1,61081,sortie-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811,https://biolit.fr/sorties/sortie-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811/,Phil,,5/23/2016 0:00,11.0000000,12.0000000,47.789731000000,-4.273250000000,,Treffiagat - Finistère,54170,observation-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811,https://biolit.fr/observations/observation-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20160523_115555.jpg,,TRUE, +N1,61081,sortie-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811,https://biolit.fr/sorties/sortie-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811/,Phil,,5/23/2016 0:00,11.0000000,12.0000000,47.789731000000,-4.273250000000,,Treffiagat - Finistère,54172,observation-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811-2,https://biolit.fr/observations/observation-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160523_115610.jpg,,FALSE, +N1,61081,sortie-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811,https://biolit.fr/sorties/sortie-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811/,Phil,,5/23/2016 0:00,11.0000000,12.0000000,47.789731000000,-4.273250000000,,Treffiagat - Finistère,54174,observation-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811-3,https://biolit.fr/observations/observation-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811-3/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20160523_115701.jpg,,TRUE, +N1,61081,sortie-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811,https://biolit.fr/sorties/sortie-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811/,Phil,,5/23/2016 0:00,11.0000000,12.0000000,47.789731000000,-4.273250000000,,Treffiagat - Finistère,54176,observation-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811-4,https://biolit.fr/observations/observation-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160523_115717.jpg,,FALSE, +N1,61081,sortie-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811,https://biolit.fr/sorties/sortie-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811/,Phil,,5/23/2016 0:00,11.0000000,12.0000000,47.789731000000,-4.273250000000,,Treffiagat - Finistère,54178,observation-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811-5,https://biolit.fr/observations/observation-3d6c8bfa-4f20-4a0e-bc49-7ce976d74811-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160523_115803.jpg,,FALSE, +N1,61082,sortie-570b6d7c-ac95-4a2d-a0fa-ca41f58bae11,https://biolit.fr/sorties/sortie-570b6d7c-ac95-4a2d-a0fa-ca41f58bae11/,Phil,,5/25/2016 0:00,16.0:35,16.0000000,47.894794000000,-3.9521440000,,La Forêt-Fouesnant - Finistère,54180,observation-570b6d7c-ac95-4a2d-a0fa-ca41f58bae11,https://biolit.fr/observations/observation-570b6d7c-ac95-4a2d-a0fa-ca41f58bae11/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/20160525_163913.jpg,,TRUE, +N1,61082,sortie-570b6d7c-ac95-4a2d-a0fa-ca41f58bae11,https://biolit.fr/sorties/sortie-570b6d7c-ac95-4a2d-a0fa-ca41f58bae11/,Phil,,5/25/2016 0:00,16.0:35,16.0000000,47.894794000000,-3.9521440000,,La Forêt-Fouesnant - Finistère,54182,observation-570b6d7c-ac95-4a2d-a0fa-ca41f58bae11-2,https://biolit.fr/observations/observation-570b6d7c-ac95-4a2d-a0fa-ca41f58bae11-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160525_163947.jpg,,FALSE, +N1,61083,sortie-feee3053-3cd6-4cbb-8577-52b7bc065125,https://biolit.fr/sorties/sortie-feee3053-3cd6-4cbb-8577-52b7bc065125/,Soso,,5/21/2016 0:00,9.0000000,11.0:15,43.215037000000,5.342678000000,,pointe de la roche pelée ,54184,observation-feee3053-3cd6-4cbb-8577-52b7bc065125,https://biolit.fr/observations/observation-feee3053-3cd6-4cbb-8577-52b7bc065125/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2691-scaled.jpg,,TRUE, +N1,61083,sortie-feee3053-3cd6-4cbb-8577-52b7bc065125,https://biolit.fr/sorties/sortie-feee3053-3cd6-4cbb-8577-52b7bc065125/,Soso,,5/21/2016 0:00,9.0000000,11.0:15,43.215037000000,5.342678000000,,pointe de la roche pelée ,54186,observation-feee3053-3cd6-4cbb-8577-52b7bc065125-2,https://biolit.fr/observations/observation-feee3053-3cd6-4cbb-8577-52b7bc065125-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2692-scaled.jpg,,FALSE, +N1,61083,sortie-feee3053-3cd6-4cbb-8577-52b7bc065125,https://biolit.fr/sorties/sortie-feee3053-3cd6-4cbb-8577-52b7bc065125/,Soso,,5/21/2016 0:00,9.0000000,11.0:15,43.215037000000,5.342678000000,,pointe de la roche pelée ,54188,observation-feee3053-3cd6-4cbb-8577-52b7bc065125-3,https://biolit.fr/observations/observation-feee3053-3cd6-4cbb-8577-52b7bc065125-3/,Stramonita haemastoma,Bouche de sang,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2695-scaled.jpg,,TRUE, +N1,61083,sortie-feee3053-3cd6-4cbb-8577-52b7bc065125,https://biolit.fr/sorties/sortie-feee3053-3cd6-4cbb-8577-52b7bc065125/,Soso,,5/21/2016 0:00,9.0000000,11.0:15,43.215037000000,5.342678000000,,pointe de la roche pelée ,54190,observation-feee3053-3cd6-4cbb-8577-52b7bc065125-4,https://biolit.fr/observations/observation-feee3053-3cd6-4cbb-8577-52b7bc065125-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2696-scaled.jpg,,FALSE, +N1,61083,sortie-feee3053-3cd6-4cbb-8577-52b7bc065125,https://biolit.fr/sorties/sortie-feee3053-3cd6-4cbb-8577-52b7bc065125/,Soso,,5/21/2016 0:00,9.0000000,11.0:15,43.215037000000,5.342678000000,,pointe de la roche pelée ,54192,observation-feee3053-3cd6-4cbb-8577-52b7bc065125-5,https://biolit.fr/observations/observation-feee3053-3cd6-4cbb-8577-52b7bc065125-5/,Maja crispata,Petite araignée de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2697-scaled.jpg,,TRUE, +N1,61083,sortie-feee3053-3cd6-4cbb-8577-52b7bc065125,https://biolit.fr/sorties/sortie-feee3053-3cd6-4cbb-8577-52b7bc065125/,Soso,,5/21/2016 0:00,9.0000000,11.0:15,43.215037000000,5.342678000000,,pointe de la roche pelée ,54194,observation-feee3053-3cd6-4cbb-8577-52b7bc065125-6,https://biolit.fr/observations/observation-feee3053-3cd6-4cbb-8577-52b7bc065125-6/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2699-scaled.jpg,,TRUE, +N1,61083,sortie-feee3053-3cd6-4cbb-8577-52b7bc065125,https://biolit.fr/sorties/sortie-feee3053-3cd6-4cbb-8577-52b7bc065125/,Soso,,5/21/2016 0:00,9.0000000,11.0:15,43.215037000000,5.342678000000,,pointe de la roche pelée ,54196,observation-feee3053-3cd6-4cbb-8577-52b7bc065125-7,https://biolit.fr/observations/observation-feee3053-3cd6-4cbb-8577-52b7bc065125-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2700-scaled.jpg,,FALSE, +N1,61083,sortie-feee3053-3cd6-4cbb-8577-52b7bc065125,https://biolit.fr/sorties/sortie-feee3053-3cd6-4cbb-8577-52b7bc065125/,Soso,,5/21/2016 0:00,9.0000000,11.0:15,43.215037000000,5.342678000000,,pointe de la roche pelée ,54198,observation-feee3053-3cd6-4cbb-8577-52b7bc065125-8,https://biolit.fr/observations/observation-feee3053-3cd6-4cbb-8577-52b7bc065125-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Eponge de mer-scaled.jpg,,FALSE, +N1,61084,sortie-f71765fe-77c2-4761-92ee-d366311bfd17,https://biolit.fr/sorties/sortie-f71765fe-77c2-4761-92ee-d366311bfd17/,Phil,,5/21/2016 0:00,11.0000000,12.0000000,47.872418000000,-3.932268000000,,Concarneau - Finistère,54200,observation-f71765fe-77c2-4761-92ee-d366311bfd17,https://biolit.fr/observations/observation-f71765fe-77c2-4761-92ee-d366311bfd17/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20160521_120149.jpg,,TRUE, +N1,61084,sortie-f71765fe-77c2-4761-92ee-d366311bfd17,https://biolit.fr/sorties/sortie-f71765fe-77c2-4761-92ee-d366311bfd17/,Phil,,5/21/2016 0:00,11.0000000,12.0000000,47.872418000000,-3.932268000000,,Concarneau - Finistère,54202,observation-f71765fe-77c2-4761-92ee-d366311bfd17-2,https://biolit.fr/observations/observation-f71765fe-77c2-4761-92ee-d366311bfd17-2/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20160521_120203.jpg,,TRUE, +N1,61084,sortie-f71765fe-77c2-4761-92ee-d366311bfd17,https://biolit.fr/sorties/sortie-f71765fe-77c2-4761-92ee-d366311bfd17/,Phil,,5/21/2016 0:00,11.0000000,12.0000000,47.872418000000,-3.932268000000,,Concarneau - Finistère,54204,observation-f71765fe-77c2-4761-92ee-d366311bfd17-3,https://biolit.fr/observations/observation-f71765fe-77c2-4761-92ee-d366311bfd17-3/,Schizoporella unicornis,Schizoporella unicorne,,https://biolit.fr/wp-content/uploads/2023/07/20160521_120033.jpg,,TRUE, +N1,61084,sortie-f71765fe-77c2-4761-92ee-d366311bfd17,https://biolit.fr/sorties/sortie-f71765fe-77c2-4761-92ee-d366311bfd17/,Phil,,5/21/2016 0:00,11.0000000,12.0000000,47.872418000000,-3.932268000000,,Concarneau - Finistère,54206,observation-f71765fe-77c2-4761-92ee-d366311bfd17-4,https://biolit.fr/observations/observation-f71765fe-77c2-4761-92ee-d366311bfd17-4/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20160521_115855.jpg,,TRUE, +N1,61084,sortie-f71765fe-77c2-4761-92ee-d366311bfd17,https://biolit.fr/sorties/sortie-f71765fe-77c2-4761-92ee-d366311bfd17/,Phil,,5/21/2016 0:00,11.0000000,12.0000000,47.872418000000,-3.932268000000,,Concarneau - Finistère,54208,observation-f71765fe-77c2-4761-92ee-d366311bfd17-5,https://biolit.fr/observations/observation-f71765fe-77c2-4761-92ee-d366311bfd17-5/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20160521_115702.jpg,,TRUE, +N1,61085,sortie-173ff8ab-e1fa-4cdf-86bc-efee031937c6,https://biolit.fr/sorties/sortie-173ff8ab-e1fa-4cdf-86bc-efee031937c6/,louis dubernet,,5/21/2016 0:00,15.0000000,17.0000000,43.215058000000,5.342514000000,,ANSE DE LA MARONAISE,54210,observation-173ff8ab-e1fa-4cdf-86bc-efee031937c6,https://biolit.fr/observations/observation-173ff8ab-e1fa-4cdf-86bc-efee031937c6/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20160521_153722-scaled.jpg,,TRUE, +N1,61085,sortie-173ff8ab-e1fa-4cdf-86bc-efee031937c6,https://biolit.fr/sorties/sortie-173ff8ab-e1fa-4cdf-86bc-efee031937c6/,louis dubernet,,5/21/2016 0:00,15.0000000,17.0000000,43.215058000000,5.342514000000,,ANSE DE LA MARONAISE,54212,observation-173ff8ab-e1fa-4cdf-86bc-efee031937c6-2,https://biolit.fr/observations/observation-173ff8ab-e1fa-4cdf-86bc-efee031937c6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20160521_152917-scaled.jpg,,FALSE, +N1,61085,sortie-173ff8ab-e1fa-4cdf-86bc-efee031937c6,https://biolit.fr/sorties/sortie-173ff8ab-e1fa-4cdf-86bc-efee031937c6/,louis dubernet,,5/21/2016 0:00,15.0000000,17.0000000,43.215058000000,5.342514000000,,ANSE DE LA MARONAISE,54214,observation-173ff8ab-e1fa-4cdf-86bc-efee031937c6-3,https://biolit.fr/observations/observation-173ff8ab-e1fa-4cdf-86bc-efee031937c6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20160521_152005-scaled.jpg,,FALSE, +N1,61086,sortie-731b5fce-f154-4791-a0ae-93c6da24e241,https://biolit.fr/sorties/sortie-731b5fce-f154-4791-a0ae-93c6da24e241/,AIEJE,,5/21/2016 0:00,11.0000000,12.0000000,43.214879000000,5.342901000000,,Calanque de la maronaise,54216,observation-731b5fce-f154-4791-a0ae-93c6da24e241,https://biolit.fr/observations/observation-731b5fce-f154-4791-a0ae-93c6da24e241/,Felimare villafranca,Doris de Villefranche,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3030-rotated.jpg,,TRUE, +N1,61087,sortie-5869ddb4-11d1-4003-888b-8b702aaa92f8,https://biolit.fr/sorties/sortie-5869ddb4-11d1-4003-888b-8b702aaa92f8/,AIEJE,,5/20/2016 0:00,15.0000000,17.0000000,43.330979000000,5.204246000000,,Calanque des anthenors,54218,observation-5869ddb4-11d1-4003-888b-8b702aaa92f8,https://biolit.fr/observations/observation-5869ddb4-11d1-4003-888b-8b702aaa92f8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3020-rotated.jpg,,FALSE, +N1,61088,sortie-ba07a1c2-3d5d-4b46-83c4-54ed48b7fe52,https://biolit.fr/sorties/sortie-ba07a1c2-3d5d-4b46-83c4-54ed48b7fe52/,Phil,,5/21/2016 0:00,12.0000000,12.0:35,47.869865000000,-3.926966000000,,Concarneau - Finistère,54220,observation-ba07a1c2-3d5d-4b46-83c4-54ed48b7fe52,https://biolit.fr/observations/observation-ba07a1c2-3d5d-4b46-83c4-54ed48b7fe52/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160521_123102.jpg,,FALSE, +N1,61088,sortie-ba07a1c2-3d5d-4b46-83c4-54ed48b7fe52,https://biolit.fr/sorties/sortie-ba07a1c2-3d5d-4b46-83c4-54ed48b7fe52/,Phil,,5/21/2016 0:00,12.0000000,12.0:35,47.869865000000,-3.926966000000,,Concarneau - Finistère,54222,observation-ba07a1c2-3d5d-4b46-83c4-54ed48b7fe52-2,https://biolit.fr/observations/observation-ba07a1c2-3d5d-4b46-83c4-54ed48b7fe52-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160521_122957.jpg,,FALSE, +N1,61089,sortie-0c1ec610-f84c-409d-aeb4-c1be64616126,https://biolit.fr/sorties/sortie-0c1ec610-f84c-409d-aeb4-c1be64616126/,Phil,,5/23/2016 0:00,11.0:45,11.0:55,47.788699000000,-4.270257000000,,Treffiagat - Finistère,54224,observation-0c1ec610-f84c-409d-aeb4-c1be64616126,https://biolit.fr/observations/observation-0c1ec610-f84c-409d-aeb4-c1be64616126/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160523_115510.jpg,,FALSE, +N1,61089,sortie-0c1ec610-f84c-409d-aeb4-c1be64616126,https://biolit.fr/sorties/sortie-0c1ec610-f84c-409d-aeb4-c1be64616126/,Phil,,5/23/2016 0:00,11.0:45,11.0:55,47.788699000000,-4.270257000000,,Treffiagat - Finistère,54226,observation-0c1ec610-f84c-409d-aeb4-c1be64616126-2,https://biolit.fr/observations/observation-0c1ec610-f84c-409d-aeb4-c1be64616126-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160523_114816.jpg,,FALSE, +N1,61089,sortie-0c1ec610-f84c-409d-aeb4-c1be64616126,https://biolit.fr/sorties/sortie-0c1ec610-f84c-409d-aeb4-c1be64616126/,Phil,,5/23/2016 0:00,11.0:45,11.0:55,47.788699000000,-4.270257000000,,Treffiagat - Finistère,54228,observation-0c1ec610-f84c-409d-aeb4-c1be64616126-3,https://biolit.fr/observations/observation-0c1ec610-f84c-409d-aeb4-c1be64616126-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160523_114920.jpg,,FALSE, +N1,61089,sortie-0c1ec610-f84c-409d-aeb4-c1be64616126,https://biolit.fr/sorties/sortie-0c1ec610-f84c-409d-aeb4-c1be64616126/,Phil,,5/23/2016 0:00,11.0:45,11.0:55,47.788699000000,-4.270257000000,,Treffiagat - Finistère,54230,observation-0c1ec610-f84c-409d-aeb4-c1be64616126-4,https://biolit.fr/observations/observation-0c1ec610-f84c-409d-aeb4-c1be64616126-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160523_115002.jpg,,FALSE, +N1,61089,sortie-0c1ec610-f84c-409d-aeb4-c1be64616126,https://biolit.fr/sorties/sortie-0c1ec610-f84c-409d-aeb4-c1be64616126/,Phil,,5/23/2016 0:00,11.0:45,11.0:55,47.788699000000,-4.270257000000,,Treffiagat - Finistère,54232,observation-0c1ec610-f84c-409d-aeb4-c1be64616126-5,https://biolit.fr/observations/observation-0c1ec610-f84c-409d-aeb4-c1be64616126-5/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/20160523_115309.jpg,,TRUE, +N1,61090,sortie-ab9f3e96-bf46-4b45-8f5b-7ee29aeb9bcf,https://biolit.fr/sorties/sortie-ab9f3e96-bf46-4b45-8f5b-7ee29aeb9bcf/,Phil,,05/08/2016,12.0:35,12.0:45,48.168525000000,-4.298753000000,,Plomodiern - Finistère,54234,observation-ab9f3e96-bf46-4b45-8f5b-7ee29aeb9bcf,https://biolit.fr/observations/observation-ab9f3e96-bf46-4b45-8f5b-7ee29aeb9bcf/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020707.JPG,,FALSE, +N1,61090,sortie-ab9f3e96-bf46-4b45-8f5b-7ee29aeb9bcf,https://biolit.fr/sorties/sortie-ab9f3e96-bf46-4b45-8f5b-7ee29aeb9bcf/,Phil,,05/08/2016,12.0:35,12.0:45,48.168525000000,-4.298753000000,,Plomodiern - Finistère,54236,observation-ab9f3e96-bf46-4b45-8f5b-7ee29aeb9bcf-2,https://biolit.fr/observations/observation-ab9f3e96-bf46-4b45-8f5b-7ee29aeb9bcf-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020710.JPG,,FALSE, +N1,61090,sortie-ab9f3e96-bf46-4b45-8f5b-7ee29aeb9bcf,https://biolit.fr/sorties/sortie-ab9f3e96-bf46-4b45-8f5b-7ee29aeb9bcf/,Phil,,05/08/2016,12.0:35,12.0:45,48.168525000000,-4.298753000000,,Plomodiern - Finistère,54238,observation-ab9f3e96-bf46-4b45-8f5b-7ee29aeb9bcf-3,https://biolit.fr/observations/observation-ab9f3e96-bf46-4b45-8f5b-7ee29aeb9bcf-3/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020712.JPG,,TRUE, +N1,61090,sortie-ab9f3e96-bf46-4b45-8f5b-7ee29aeb9bcf,https://biolit.fr/sorties/sortie-ab9f3e96-bf46-4b45-8f5b-7ee29aeb9bcf/,Phil,,05/08/2016,12.0:35,12.0:45,48.168525000000,-4.298753000000,,Plomodiern - Finistère,54240,observation-ab9f3e96-bf46-4b45-8f5b-7ee29aeb9bcf-4,https://biolit.fr/observations/observation-ab9f3e96-bf46-4b45-8f5b-7ee29aeb9bcf-4/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/P1020730.JPG,,TRUE, +N1,61091,sortie-cf61de59-6cd7-4b43-bde7-2b839ac5eb93,https://biolit.fr/sorties/sortie-cf61de59-6cd7-4b43-bde7-2b839ac5eb93/,Phil,,5/21/2016 0:00,10.0:55,11.0000000,47.873209000000,-3.931756000000,,Concarneau - Finistère,54242,observation-cf61de59-6cd7-4b43-bde7-2b839ac5eb93,https://biolit.fr/observations/observation-cf61de59-6cd7-4b43-bde7-2b839ac5eb93/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160521_110053.jpg,,FALSE, +N1,61091,sortie-cf61de59-6cd7-4b43-bde7-2b839ac5eb93,https://biolit.fr/sorties/sortie-cf61de59-6cd7-4b43-bde7-2b839ac5eb93/,Phil,,5/21/2016 0:00,10.0:55,11.0000000,47.873209000000,-3.931756000000,,Concarneau - Finistère,54244,observation-cf61de59-6cd7-4b43-bde7-2b839ac5eb93-2,https://biolit.fr/observations/observation-cf61de59-6cd7-4b43-bde7-2b839ac5eb93-2/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/20160521_105706.jpg,,TRUE, +N1,61092,sortie-72271d5f-6f8d-42fc-8564-fed8d5609529,https://biolit.fr/sorties/sortie-72271d5f-6f8d-42fc-8564-fed8d5609529/,Céline,,5/21/2016 0:00,14.0:15,15.0000000,43.214965000000,5.343051000000,,Anse de la Maronaise Marseille,54246,observation-72271d5f-6f8d-42fc-8564-fed8d5609529,https://biolit.fr/observations/observation-72271d5f-6f8d-42fc-8564-fed8d5609529/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/DSCN9117bis-scaled.jpg,,TRUE, +N1,61092,sortie-72271d5f-6f8d-42fc-8564-fed8d5609529,https://biolit.fr/sorties/sortie-72271d5f-6f8d-42fc-8564-fed8d5609529/,Céline,,5/21/2016 0:00,14.0:15,15.0000000,43.214965000000,5.343051000000,,Anse de la Maronaise Marseille,54248,observation-72271d5f-6f8d-42fc-8564-fed8d5609529-2,https://biolit.fr/observations/observation-72271d5f-6f8d-42fc-8564-fed8d5609529-2/,Leathesia marina,Léathésie difforme,,https://biolit.fr/wp-content/uploads/2023/07/DSCN9119-scaled.jpg,,TRUE, +N1,61092,sortie-72271d5f-6f8d-42fc-8564-fed8d5609529,https://biolit.fr/sorties/sortie-72271d5f-6f8d-42fc-8564-fed8d5609529/,Céline,,5/21/2016 0:00,14.0:15,15.0000000,43.214965000000,5.343051000000,,Anse de la Maronaise Marseille,54250,observation-72271d5f-6f8d-42fc-8564-fed8d5609529-3,https://biolit.fr/observations/observation-72271d5f-6f8d-42fc-8564-fed8d5609529-3/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSCN9140bis.jpg,,TRUE, +N1,61092,sortie-72271d5f-6f8d-42fc-8564-fed8d5609529,https://biolit.fr/sorties/sortie-72271d5f-6f8d-42fc-8564-fed8d5609529/,Céline,,5/21/2016 0:00,14.0:15,15.0000000,43.214965000000,5.343051000000,,Anse de la Maronaise Marseille,54252,observation-72271d5f-6f8d-42fc-8564-fed8d5609529-4,https://biolit.fr/observations/observation-72271d5f-6f8d-42fc-8564-fed8d5609529-4/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/DSCN9125bis.jpg,,TRUE, +N1,61092,sortie-72271d5f-6f8d-42fc-8564-fed8d5609529,https://biolit.fr/sorties/sortie-72271d5f-6f8d-42fc-8564-fed8d5609529/,Céline,,5/21/2016 0:00,14.0:15,15.0000000,43.214965000000,5.343051000000,,Anse de la Maronaise Marseille,54254,observation-72271d5f-6f8d-42fc-8564-fed8d5609529-5,https://biolit.fr/observations/observation-72271d5f-6f8d-42fc-8564-fed8d5609529-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN9155bis.jpg,,FALSE, +N1,61093,sortie-17aa281c-6c0e-49f3-bfee-c35969ef92ff,https://biolit.fr/sorties/sortie-17aa281c-6c0e-49f3-bfee-c35969ef92ff/,Phil,,5/21/2016 0:00,10.0:45,10.0:55,47.873790000000,-3.930116000000,,Concarneau - Finistère,54256,observation-17aa281c-6c0e-49f3-bfee-c35969ef92ff,https://biolit.fr/observations/observation-17aa281c-6c0e-49f3-bfee-c35969ef92ff/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/20160521_105256.jpg,,TRUE, +N1,61093,sortie-17aa281c-6c0e-49f3-bfee-c35969ef92ff,https://biolit.fr/sorties/sortie-17aa281c-6c0e-49f3-bfee-c35969ef92ff/,Phil,,5/21/2016 0:00,10.0:45,10.0:55,47.873790000000,-3.930116000000,,Concarneau - Finistère,54258,observation-17aa281c-6c0e-49f3-bfee-c35969ef92ff-2,https://biolit.fr/observations/observation-17aa281c-6c0e-49f3-bfee-c35969ef92ff-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160521_105607.jpg,,TRUE, +N1,61093,sortie-17aa281c-6c0e-49f3-bfee-c35969ef92ff,https://biolit.fr/sorties/sortie-17aa281c-6c0e-49f3-bfee-c35969ef92ff/,Phil,,5/21/2016 0:00,10.0:45,10.0:55,47.873790000000,-3.930116000000,,Concarneau - Finistère,54260,observation-17aa281c-6c0e-49f3-bfee-c35969ef92ff-3,https://biolit.fr/observations/observation-17aa281c-6c0e-49f3-bfee-c35969ef92ff-3/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/20160521_104715.jpg,,TRUE, +N1,61093,sortie-17aa281c-6c0e-49f3-bfee-c35969ef92ff,https://biolit.fr/sorties/sortie-17aa281c-6c0e-49f3-bfee-c35969ef92ff/,Phil,,5/21/2016 0:00,10.0:45,10.0:55,47.873790000000,-3.930116000000,,Concarneau - Finistère,54262,observation-17aa281c-6c0e-49f3-bfee-c35969ef92ff-4,https://biolit.fr/observations/observation-17aa281c-6c0e-49f3-bfee-c35969ef92ff-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160521_104627.jpg,,FALSE, +N1,61093,sortie-17aa281c-6c0e-49f3-bfee-c35969ef92ff,https://biolit.fr/sorties/sortie-17aa281c-6c0e-49f3-bfee-c35969ef92ff/,Phil,,5/21/2016 0:00,10.0:45,10.0:55,47.873790000000,-3.930116000000,,Concarneau - Finistère,54264,observation-17aa281c-6c0e-49f3-bfee-c35969ef92ff-5,https://biolit.fr/observations/observation-17aa281c-6c0e-49f3-bfee-c35969ef92ff-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160521_104617.jpg,,FALSE, +N1,61093,sortie-17aa281c-6c0e-49f3-bfee-c35969ef92ff,https://biolit.fr/sorties/sortie-17aa281c-6c0e-49f3-bfee-c35969ef92ff/,Phil,,5/21/2016 0:00,10.0:45,10.0:55,47.873790000000,-3.930116000000,,Concarneau - Finistère,54266,observation-17aa281c-6c0e-49f3-bfee-c35969ef92ff-6,https://biolit.fr/observations/observation-17aa281c-6c0e-49f3-bfee-c35969ef92ff-6/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/20160521_105126.jpg,,TRUE, +N1,61094,sortie-fd61f28d-f5c6-4050-9fc6-352bacef94e0,https://biolit.fr/sorties/sortie-fd61f28d-f5c6-4050-9fc6-352bacef94e0/,Phil,,05/08/2016,14.0:35,14.0000000,48.16877100000,-4.297851000000,,Plomodiern - Finistère,54268,observation-fd61f28d-f5c6-4050-9fc6-352bacef94e0,https://biolit.fr/observations/observation-fd61f28d-f5c6-4050-9fc6-352bacef94e0/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160508_143410.jpg,,FALSE, +N1,61094,sortie-fd61f28d-f5c6-4050-9fc6-352bacef94e0,https://biolit.fr/sorties/sortie-fd61f28d-f5c6-4050-9fc6-352bacef94e0/,Phil,,05/08/2016,14.0:35,14.0000000,48.16877100000,-4.297851000000,,Plomodiern - Finistère,54270,observation-fd61f28d-f5c6-4050-9fc6-352bacef94e0-2,https://biolit.fr/observations/observation-fd61f28d-f5c6-4050-9fc6-352bacef94e0-2/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/20160508_143432.jpg,,TRUE, +N1,61094,sortie-fd61f28d-f5c6-4050-9fc6-352bacef94e0,https://biolit.fr/sorties/sortie-fd61f28d-f5c6-4050-9fc6-352bacef94e0/,Phil,,05/08/2016,14.0:35,14.0000000,48.16877100000,-4.297851000000,,Plomodiern - Finistère,54272,observation-fd61f28d-f5c6-4050-9fc6-352bacef94e0-3,https://biolit.fr/observations/observation-fd61f28d-f5c6-4050-9fc6-352bacef94e0-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20160508_143445.jpg,,TRUE, +N1,61094,sortie-fd61f28d-f5c6-4050-9fc6-352bacef94e0,https://biolit.fr/sorties/sortie-fd61f28d-f5c6-4050-9fc6-352bacef94e0/,Phil,,05/08/2016,14.0:35,14.0000000,48.16877100000,-4.297851000000,,Plomodiern - Finistère,54274,observation-fd61f28d-f5c6-4050-9fc6-352bacef94e0-4,https://biolit.fr/observations/observation-fd61f28d-f5c6-4050-9fc6-352bacef94e0-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20160508_143530.jpg,,TRUE, +N1,61094,sortie-fd61f28d-f5c6-4050-9fc6-352bacef94e0,https://biolit.fr/sorties/sortie-fd61f28d-f5c6-4050-9fc6-352bacef94e0/,Phil,,05/08/2016,14.0:35,14.0000000,48.16877100000,-4.297851000000,,Plomodiern - Finistère,54276,observation-fd61f28d-f5c6-4050-9fc6-352bacef94e0-5,https://biolit.fr/observations/observation-fd61f28d-f5c6-4050-9fc6-352bacef94e0-5/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/20160508_143626.jpg,,TRUE, +N1,61095,sortie-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf,https://biolit.fr/sorties/sortie-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf/,Phil,,05/08/2016,12.0000000,13.0000000,48.1674830000,-4.299997000000,,Plomodiern - Finistère,54278,observation-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf,https://biolit.fr/observations/observation-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020752.JPG,,FALSE, +N1,61095,sortie-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf,https://biolit.fr/sorties/sortie-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf/,Phil,,05/08/2016,12.0000000,13.0000000,48.1674830000,-4.299997000000,,Plomodiern - Finistère,54280,observation-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf-2,https://biolit.fr/observations/observation-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1020736.JPG,,TRUE, +N1,61095,sortie-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf,https://biolit.fr/sorties/sortie-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf/,Phil,,05/08/2016,12.0000000,13.0000000,48.1674830000,-4.299997000000,,Plomodiern - Finistère,54282,observation-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf-3,https://biolit.fr/observations/observation-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf-3/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1020738.JPG,,TRUE, +N1,61095,sortie-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf,https://biolit.fr/sorties/sortie-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf/,Phil,,05/08/2016,12.0000000,13.0000000,48.1674830000,-4.299997000000,,Plomodiern - Finistère,54284,observation-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf-4,https://biolit.fr/observations/observation-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf-4/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/20160508_135959-scaled.jpg,,TRUE, +N1,61095,sortie-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf,https://biolit.fr/sorties/sortie-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf/,Phil,,05/08/2016,12.0000000,13.0000000,48.1674830000,-4.299997000000,,Plomodiern - Finistère,54286,observation-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf-5,https://biolit.fr/observations/observation-62e5a6eb-f1c4-4b2a-9ed4-5e76b0d31bdf-5/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/P1020735.JPG,,TRUE, +N1,61096,sortie-d5b9745d-edee-4505-b0c7-17fa977c478d,https://biolit.fr/sorties/sortie-d5b9745d-edee-4505-b0c7-17fa977c478d/,Marine,,5/17/2016 0:00,12.0:15,14.0:15,43.214891000000,5.342954000000,,Plage de la Maronaise,54288,observation-d5b9745d-edee-4505-b0c7-17fa977c478d,https://biolit.fr/observations/observation-d5b9745d-edee-4505-b0c7-17fa977c478d/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1365-rotated.jpg,,FALSE, +N1,61096,sortie-d5b9745d-edee-4505-b0c7-17fa977c478d,https://biolit.fr/sorties/sortie-d5b9745d-edee-4505-b0c7-17fa977c478d/,Marine,,5/17/2016 0:00,12.0:15,14.0:15,43.214891000000,5.342954000000,,Plage de la Maronaise,54289,observation-d5b9745d-edee-4505-b0c7-17fa977c478d-2,https://biolit.fr/observations/observation-d5b9745d-edee-4505-b0c7-17fa977c478d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1368-scaled.jpg,,FALSE, +N1,61097,sortie-d7873ce2-f6be-4276-8d36-887a2063852c,https://biolit.fr/sorties/sortie-d7873ce2-f6be-4276-8d36-887a2063852c/,Phil,,05/08/2016,14.0000000,14.0000000,48.168568000000,-4.298881000000,,Plomodiern - Finistère,54291,observation-d7873ce2-f6be-4276-8d36-887a2063852c,https://biolit.fr/observations/observation-d7873ce2-f6be-4276-8d36-887a2063852c/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160508_142817.jpg,,FALSE, +N1,61097,sortie-d7873ce2-f6be-4276-8d36-887a2063852c,https://biolit.fr/sorties/sortie-d7873ce2-f6be-4276-8d36-887a2063852c/,Phil,,05/08/2016,14.0000000,14.0000000,48.168568000000,-4.298881000000,,Plomodiern - Finistère,54293,observation-d7873ce2-f6be-4276-8d36-887a2063852c-2,https://biolit.fr/observations/observation-d7873ce2-f6be-4276-8d36-887a2063852c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160508_142940.jpg,,FALSE, +N1,61097,sortie-d7873ce2-f6be-4276-8d36-887a2063852c,https://biolit.fr/sorties/sortie-d7873ce2-f6be-4276-8d36-887a2063852c/,Phil,,05/08/2016,14.0000000,14.0000000,48.168568000000,-4.298881000000,,Plomodiern - Finistère,54295,observation-d7873ce2-f6be-4276-8d36-887a2063852c-3,https://biolit.fr/observations/observation-d7873ce2-f6be-4276-8d36-887a2063852c-3/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1020803.JPG,,TRUE, +N1,61098,sortie-5aa27c17-d545-4323-9c8a-07e801702750,https://biolit.fr/sorties/sortie-5aa27c17-d545-4323-9c8a-07e801702750/,Phil,,05/08/2016,13.0000000,13.0:15,48.168370000000,-4.298431000000,,Plomodiern - Finistère,54297,observation-5aa27c17-d545-4323-9c8a-07e801702750,https://biolit.fr/observations/observation-5aa27c17-d545-4323-9c8a-07e801702750/,Cilysta elegans,Sagartie élégante,,https://biolit.fr/wp-content/uploads/2023/07/20160508_141314.jpg,,TRUE, +N1,61099,sortie-d80b3732-f57a-4234-95e6-29060850d462,https://biolit.fr/sorties/sortie-d80b3732-f57a-4234-95e6-29060850d462/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.094787000000,6.023577000000,,Plage de la Garonne,54301,observation-d80b3732-f57a-4234-95e6-29060850d462,https://biolit.fr/observations/observation-d80b3732-f57a-4234-95e6-29060850d462/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1357-scaled.jpg,,FALSE, +N1,61099,sortie-d80b3732-f57a-4234-95e6-29060850d462,https://biolit.fr/sorties/sortie-d80b3732-f57a-4234-95e6-29060850d462/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.094787000000,6.023577000000,,Plage de la Garonne,54303,observation-d80b3732-f57a-4234-95e6-29060850d462-2,https://biolit.fr/observations/observation-d80b3732-f57a-4234-95e6-29060850d462-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1358-scaled.jpg,,FALSE, +N1,61100,sortie-9952b236-dae9-4172-a437-fc7e71b86989,https://biolit.fr/sorties/sortie-9952b236-dae9-4172-a437-fc7e71b86989/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.094790000000,6.023527000000,,Plage de la Garonne,54305,observation-9952b236-dae9-4172-a437-fc7e71b86989,https://biolit.fr/observations/observation-9952b236-dae9-4172-a437-fc7e71b86989/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1355-scaled.jpg,,FALSE, +N1,61100,sortie-9952b236-dae9-4172-a437-fc7e71b86989,https://biolit.fr/sorties/sortie-9952b236-dae9-4172-a437-fc7e71b86989/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.094790000000,6.023527000000,,Plage de la Garonne,54307,observation-9952b236-dae9-4172-a437-fc7e71b86989-2,https://biolit.fr/observations/observation-9952b236-dae9-4172-a437-fc7e71b86989-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1356-scaled.jpg,,FALSE, +N1,61101,sortie-ea68fd84-f41f-4659-8b88-ee4069d11af8,https://biolit.fr/sorties/sortie-ea68fd84-f41f-4659-8b88-ee4069d11af8/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.094589000000,6.023463000000,,Plage de la Garonne,54309,observation-ea68fd84-f41f-4659-8b88-ee4069d11af8,https://biolit.fr/observations/observation-ea68fd84-f41f-4659-8b88-ee4069d11af8/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1351-scaled.jpg,,TRUE, +N1,61101,sortie-ea68fd84-f41f-4659-8b88-ee4069d11af8,https://biolit.fr/sorties/sortie-ea68fd84-f41f-4659-8b88-ee4069d11af8/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.094589000000,6.023463000000,,Plage de la Garonne,54311,observation-ea68fd84-f41f-4659-8b88-ee4069d11af8-2,https://biolit.fr/observations/observation-ea68fd84-f41f-4659-8b88-ee4069d11af8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1352-scaled.jpg,,FALSE, +N1,61102,sortie-30b8f885-7d3d-4310-aed5-f1a6a91531b5,https://biolit.fr/sorties/sortie-30b8f885-7d3d-4310-aed5-f1a6a91531b5/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.094848000000,6.023538000000,,Plage de la Garonne,54313,observation-30b8f885-7d3d-4310-aed5-f1a6a91531b5,https://biolit.fr/observations/observation-30b8f885-7d3d-4310-aed5-f1a6a91531b5/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1350-scaled.jpg,,TRUE, +N1,61103,sortie-af67fa0a-001f-429d-9a2c-b7efcacb7b55,https://biolit.fr/sorties/sortie-af67fa0a-001f-429d-9a2c-b7efcacb7b55/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.09481600000,6.023559000000,,Plage de la Garonne,54315,observation-af67fa0a-001f-429d-9a2c-b7efcacb7b55,https://biolit.fr/observations/observation-af67fa0a-001f-429d-9a2c-b7efcacb7b55/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1354-scaled.jpg,,FALSE, +N1,61103,sortie-af67fa0a-001f-429d-9a2c-b7efcacb7b55,https://biolit.fr/sorties/sortie-af67fa0a-001f-429d-9a2c-b7efcacb7b55/,Marine,,5/15/2016 0:00,9.0000000,10.0000000,43.09481600000,6.023559000000,,Plage de la Garonne,54317,observation-af67fa0a-001f-429d-9a2c-b7efcacb7b55-2,https://biolit.fr/observations/observation-af67fa0a-001f-429d-9a2c-b7efcacb7b55-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1353-scaled.jpg,,FALSE, +N1,61104,sortie-4b8a566f-0b76-42ca-9e17-958eed0ddc8d,https://biolit.fr/sorties/sortie-4b8a566f-0b76-42ca-9e17-958eed0ddc8d/,Phil,,05/08/2016,12.0000000,12.0000000,48.16841900000,-4.298774000000,,Plomodiern - Finistère,54319,observation-4b8a566f-0b76-42ca-9e17-958eed0ddc8d,https://biolit.fr/observations/observation-4b8a566f-0b76-42ca-9e17-958eed0ddc8d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020701.JPG,,FALSE, +N1,61104,sortie-4b8a566f-0b76-42ca-9e17-958eed0ddc8d,https://biolit.fr/sorties/sortie-4b8a566f-0b76-42ca-9e17-958eed0ddc8d/,Phil,,05/08/2016,12.0000000,12.0000000,48.16841900000,-4.298774000000,,Plomodiern - Finistère,54321,observation-4b8a566f-0b76-42ca-9e17-958eed0ddc8d-2,https://biolit.fr/observations/observation-4b8a566f-0b76-42ca-9e17-958eed0ddc8d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020700.JPG,,FALSE, +N1,61104,sortie-4b8a566f-0b76-42ca-9e17-958eed0ddc8d,https://biolit.fr/sorties/sortie-4b8a566f-0b76-42ca-9e17-958eed0ddc8d/,Phil,,05/08/2016,12.0000000,12.0000000,48.16841900000,-4.298774000000,,Plomodiern - Finistère,54323,observation-4b8a566f-0b76-42ca-9e17-958eed0ddc8d-3,https://biolit.fr/observations/observation-4b8a566f-0b76-42ca-9e17-958eed0ddc8d-3/,Himanthalia elongata,Himanthale,",""https://biolit.fr/wp-content/uploads/2023/07/P1020723.JPG""",,TRUE,, +N1,61104,sortie-4b8a566f-0b76-42ca-9e17-958eed0ddc8d,https://biolit.fr/sorties/sortie-4b8a566f-0b76-42ca-9e17-958eed0ddc8d/,Phil,,05/08/2016,12.0000000,12.0000000,48.16841900000,-4.298774000000,,Plomodiern - Finistère,54325,observation-4b8a566f-0b76-42ca-9e17-958eed0ddc8d-4,https://biolit.fr/observations/observation-4b8a566f-0b76-42ca-9e17-958eed0ddc8d-4/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/P1020696.JPG,,TRUE, +N1,61104,sortie-4b8a566f-0b76-42ca-9e17-958eed0ddc8d,https://biolit.fr/sorties/sortie-4b8a566f-0b76-42ca-9e17-958eed0ddc8d/,Phil,,05/08/2016,12.0000000,12.0000000,48.16841900000,-4.298774000000,,Plomodiern - Finistère,54327,observation-4b8a566f-0b76-42ca-9e17-958eed0ddc8d-5,https://biolit.fr/observations/observation-4b8a566f-0b76-42ca-9e17-958eed0ddc8d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020702.JPG,,FALSE, +N1,61104,sortie-4b8a566f-0b76-42ca-9e17-958eed0ddc8d,https://biolit.fr/sorties/sortie-4b8a566f-0b76-42ca-9e17-958eed0ddc8d/,Phil,,05/08/2016,12.0000000,12.0000000,48.16841900000,-4.298774000000,,Plomodiern - Finistère,54329,observation-4b8a566f-0b76-42ca-9e17-958eed0ddc8d-6,https://biolit.fr/observations/observation-4b8a566f-0b76-42ca-9e17-958eed0ddc8d-6/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/P1020705.JPG,,TRUE, +N1,61105,sortie-45881d9b-2e2a-439a-a9fc-284e32174002,https://biolit.fr/sorties/sortie-45881d9b-2e2a-439a-a9fc-284e32174002/,aventure aquatique,,07/07/2015,10.0000000,11.0000000,43.693056000000,7.308788000000,,"rochambeau, villefranche sur mer",54331,observation-45881d9b-2e2a-439a-a9fc-284e32174002,https://biolit.fr/observations/observation-45881d9b-2e2a-439a-a9fc-284e32174002/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMGP1029-scaled.jpg,,TRUE, +N1,61105,sortie-45881d9b-2e2a-439a-a9fc-284e32174002,https://biolit.fr/sorties/sortie-45881d9b-2e2a-439a-a9fc-284e32174002/,aventure aquatique,,07/07/2015,10.0000000,11.0000000,43.693056000000,7.308788000000,,"rochambeau, villefranche sur mer",54333,observation-45881d9b-2e2a-439a-a9fc-284e32174002-2,https://biolit.fr/observations/observation-45881d9b-2e2a-439a-a9fc-284e32174002-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP1030-scaled.jpg,,FALSE, +N1,61105,sortie-45881d9b-2e2a-439a-a9fc-284e32174002,https://biolit.fr/sorties/sortie-45881d9b-2e2a-439a-a9fc-284e32174002/,aventure aquatique,,07/07/2015,10.0000000,11.0000000,43.693056000000,7.308788000000,,"rochambeau, villefranche sur mer",54335,observation-45881d9b-2e2a-439a-a9fc-284e32174002-3,https://biolit.fr/observations/observation-45881d9b-2e2a-439a-a9fc-284e32174002-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP1055-scaled.jpg,,FALSE, +N1,61105,sortie-45881d9b-2e2a-439a-a9fc-284e32174002,https://biolit.fr/sorties/sortie-45881d9b-2e2a-439a-a9fc-284e32174002/,aventure aquatique,,07/07/2015,10.0000000,11.0000000,43.693056000000,7.308788000000,,"rochambeau, villefranche sur mer",54337,observation-45881d9b-2e2a-439a-a9fc-284e32174002-4,https://biolit.fr/observations/observation-45881d9b-2e2a-439a-a9fc-284e32174002-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP1056-scaled.jpg,,FALSE, +N1,61105,sortie-45881d9b-2e2a-439a-a9fc-284e32174002,https://biolit.fr/sorties/sortie-45881d9b-2e2a-439a-a9fc-284e32174002/,aventure aquatique,,07/07/2015,10.0000000,11.0000000,43.693056000000,7.308788000000,,"rochambeau, villefranche sur mer",54339,observation-45881d9b-2e2a-439a-a9fc-284e32174002-5,https://biolit.fr/observations/observation-45881d9b-2e2a-439a-a9fc-284e32174002-5/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/IMGP1052-scaled.jpg,,TRUE, +N1,61105,sortie-45881d9b-2e2a-439a-a9fc-284e32174002,https://biolit.fr/sorties/sortie-45881d9b-2e2a-439a-a9fc-284e32174002/,aventure aquatique,,07/07/2015,10.0000000,11.0000000,43.693056000000,7.308788000000,,"rochambeau, villefranche sur mer",54341,observation-45881d9b-2e2a-439a-a9fc-284e32174002-6,https://biolit.fr/observations/observation-45881d9b-2e2a-439a-a9fc-284e32174002-6/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/IMGP1079-scaled.jpg,,TRUE, +N1,61105,sortie-45881d9b-2e2a-439a-a9fc-284e32174002,https://biolit.fr/sorties/sortie-45881d9b-2e2a-439a-a9fc-284e32174002/,aventure aquatique,,07/07/2015,10.0000000,11.0000000,43.693056000000,7.308788000000,,"rochambeau, villefranche sur mer",54343,observation-45881d9b-2e2a-439a-a9fc-284e32174002-7,https://biolit.fr/observations/observation-45881d9b-2e2a-439a-a9fc-284e32174002-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP1054-scaled.jpg,,FALSE, +N1,61105,sortie-45881d9b-2e2a-439a-a9fc-284e32174002,https://biolit.fr/sorties/sortie-45881d9b-2e2a-439a-a9fc-284e32174002/,aventure aquatique,,07/07/2015,10.0000000,11.0000000,43.693056000000,7.308788000000,,"rochambeau, villefranche sur mer",54345,observation-45881d9b-2e2a-439a-a9fc-284e32174002-8,https://biolit.fr/observations/observation-45881d9b-2e2a-439a-a9fc-284e32174002-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP1033-scaled.jpg,,FALSE, +N1,61105,sortie-45881d9b-2e2a-439a-a9fc-284e32174002,https://biolit.fr/sorties/sortie-45881d9b-2e2a-439a-a9fc-284e32174002/,aventure aquatique,,07/07/2015,10.0000000,11.0000000,43.693056000000,7.308788000000,,"rochambeau, villefranche sur mer",54347,observation-45881d9b-2e2a-439a-a9fc-284e32174002-9,https://biolit.fr/observations/observation-45881d9b-2e2a-439a-a9fc-284e32174002-9/,Chromis chromis,Castagnole,,https://biolit.fr/wp-content/uploads/2023/07/IMGP1091-scaled.jpg,,TRUE, +N1,61105,sortie-45881d9b-2e2a-439a-a9fc-284e32174002,https://biolit.fr/sorties/sortie-45881d9b-2e2a-439a-a9fc-284e32174002/,aventure aquatique,,07/07/2015,10.0000000,11.0000000,43.693056000000,7.308788000000,,"rochambeau, villefranche sur mer",54349,observation-45881d9b-2e2a-439a-a9fc-284e32174002-10,https://biolit.fr/observations/observation-45881d9b-2e2a-439a-a9fc-284e32174002-10/,Echinaster (Echinaster) sepositus,Etoile de mer rouge,,https://biolit.fr/wp-content/uploads/2023/07/IMGP1093-scaled.jpg,,TRUE, +N1,61105,sortie-45881d9b-2e2a-439a-a9fc-284e32174002,https://biolit.fr/sorties/sortie-45881d9b-2e2a-439a-a9fc-284e32174002/,aventure aquatique,,07/07/2015,10.0000000,11.0000000,43.693056000000,7.308788000000,,"rochambeau, villefranche sur mer",54351,observation-45881d9b-2e2a-439a-a9fc-284e32174002-11,https://biolit.fr/observations/observation-45881d9b-2e2a-439a-a9fc-284e32174002-11/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/2023/07/IMGP1095-scaled.jpg,,TRUE, +N1,61105,sortie-45881d9b-2e2a-439a-a9fc-284e32174002,https://biolit.fr/sorties/sortie-45881d9b-2e2a-439a-a9fc-284e32174002/,aventure aquatique,,07/07/2015,10.0000000,11.0000000,43.693056000000,7.308788000000,,"rochambeau, villefranche sur mer",54353,observation-45881d9b-2e2a-439a-a9fc-284e32174002-12,https://biolit.fr/observations/observation-45881d9b-2e2a-439a-a9fc-284e32174002-12/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMGP1094-scaled.jpg,,TRUE, +N1,61106,sortie-3c828506-833a-4a78-a62b-a5f3ddc9e17c,https://biolit.fr/sorties/sortie-3c828506-833a-4a78-a62b-a5f3ddc9e17c/,aventure aquatique,,07/03/2015,10.0000000,11.0000000,43.69307200000,7.30885200000,,"rochambeau, villefranche sur mer",54355,observation-3c828506-833a-4a78-a62b-a5f3ddc9e17c,https://biolit.fr/observations/observation-3c828506-833a-4a78-a62b-a5f3ddc9e17c/,Acetabularia acetabulum,Acétabulaire,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0969-scaled.jpg,,TRUE, +N1,61106,sortie-3c828506-833a-4a78-a62b-a5f3ddc9e17c,https://biolit.fr/sorties/sortie-3c828506-833a-4a78-a62b-a5f3ddc9e17c/,aventure aquatique,,07/03/2015,10.0000000,11.0000000,43.69307200000,7.30885200000,,"rochambeau, villefranche sur mer",54357,observation-3c828506-833a-4a78-a62b-a5f3ddc9e17c-2,https://biolit.fr/observations/observation-3c828506-833a-4a78-a62b-a5f3ddc9e17c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0968-scaled.jpg,,FALSE, +N1,61106,sortie-3c828506-833a-4a78-a62b-a5f3ddc9e17c,https://biolit.fr/sorties/sortie-3c828506-833a-4a78-a62b-a5f3ddc9e17c/,aventure aquatique,,07/03/2015,10.0000000,11.0000000,43.69307200000,7.30885200000,,"rochambeau, villefranche sur mer",54359,observation-3c828506-833a-4a78-a62b-a5f3ddc9e17c-3,https://biolit.fr/observations/observation-3c828506-833a-4a78-a62b-a5f3ddc9e17c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0963-scaled.jpg,,FALSE, +N1,61107,sortie-9791894e-b158-4eff-b64a-643a6859edff,https://biolit.fr/sorties/sortie-9791894e-b158-4eff-b64a-643a6859edff/,aventure aquatique,,05/11/2015,14.0000000,15.0:15,43.689953000000,7.293510000000,,coco beach,54361,observation-9791894e-b158-4eff-b64a-643a6859edff,https://biolit.fr/observations/observation-9791894e-b158-4eff-b64a-643a6859edff/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0809-scaled.jpg,,TRUE,non-identifiable +N1,61107,sortie-9791894e-b158-4eff-b64a-643a6859edff,https://biolit.fr/sorties/sortie-9791894e-b158-4eff-b64a-643a6859edff/,aventure aquatique,,05/11/2015,14.0000000,15.0:15,43.689953000000,7.293510000000,,coco beach,54363,observation-9791894e-b158-4eff-b64a-643a6859edff-2,https://biolit.fr/observations/observation-9791894e-b158-4eff-b64a-643a6859edff-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0808-scaled.jpg,,TRUE, +N1,61107,sortie-9791894e-b158-4eff-b64a-643a6859edff,https://biolit.fr/sorties/sortie-9791894e-b158-4eff-b64a-643a6859edff/,aventure aquatique,,05/11/2015,14.0000000,15.0:15,43.689953000000,7.293510000000,,coco beach,54365,observation-9791894e-b158-4eff-b64a-643a6859edff-3,https://biolit.fr/observations/observation-9791894e-b158-4eff-b64a-643a6859edff-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0810-scaled.jpg,,TRUE,non-identifiable +N1,61107,sortie-9791894e-b158-4eff-b64a-643a6859edff,https://biolit.fr/sorties/sortie-9791894e-b158-4eff-b64a-643a6859edff/,aventure aquatique,,05/11/2015,14.0000000,15.0:15,43.689953000000,7.293510000000,,coco beach,54367,observation-9791894e-b158-4eff-b64a-643a6859edff-4,https://biolit.fr/observations/observation-9791894e-b158-4eff-b64a-643a6859edff-4/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0814_0-scaled.jpg,,TRUE, +N1,61108,sortie-cfba2690-1b0d-4c7c-8a03-d5aea50e756e,https://biolit.fr/sorties/sortie-cfba2690-1b0d-4c7c-8a03-d5aea50e756e/,aventure aquatique,,05/11/2015,14.0000000,15.0000000,43.689596000000,7.294304000000,,coco beach,54369,observation-cfba2690-1b0d-4c7c-8a03-d5aea50e756e,https://biolit.fr/observations/observation-cfba2690-1b0d-4c7c-8a03-d5aea50e756e/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0814-scaled.jpg,,TRUE, +N1,61109,sortie-d2da4efa-0747-45a9-8afa-ba55f0d6ed2c,https://biolit.fr/sorties/sortie-d2da4efa-0747-45a9-8afa-ba55f0d6ed2c/,aventure aquatique,,05/11/2016,19.0000000,21.0000000,43.689340000000,7.294283000000,,coco beach,54371,observation-d2da4efa-0747-45a9-8afa-ba55f0d6ed2c,https://biolit.fr/observations/observation-d2da4efa-0747-45a9-8afa-ba55f0d6ed2c/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0812-scaled.jpg,,TRUE, +N1,61110,sortie-d35f20e5-ce44-4582-9432-eef969216b7e,https://biolit.fr/sorties/sortie-d35f20e5-ce44-4582-9432-eef969216b7e/,Phil,,05/08/2016,12.0000000,12.0:45,48.167720000000,-4.299246000000,,Plomodiern - Finistère,54373,observation-d35f20e5-ce44-4582-9432-eef969216b7e,https://biolit.fr/observations/observation-d35f20e5-ce44-4582-9432-eef969216b7e/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/20160508_134351.jpg,,TRUE, +N1,61110,sortie-d35f20e5-ce44-4582-9432-eef969216b7e,https://biolit.fr/sorties/sortie-d35f20e5-ce44-4582-9432-eef969216b7e/,Phil,,05/08/2016,12.0000000,12.0:45,48.167720000000,-4.299246000000,,Plomodiern - Finistère,54375,observation-d35f20e5-ce44-4582-9432-eef969216b7e-2,https://biolit.fr/observations/observation-d35f20e5-ce44-4582-9432-eef969216b7e-2/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/P1020718.JPG,,TRUE, +N1,61110,sortie-d35f20e5-ce44-4582-9432-eef969216b7e,https://biolit.fr/sorties/sortie-d35f20e5-ce44-4582-9432-eef969216b7e/,Phil,,05/08/2016,12.0000000,12.0:45,48.167720000000,-4.299246000000,,Plomodiern - Finistère,54377,observation-d35f20e5-ce44-4582-9432-eef969216b7e-3,https://biolit.fr/observations/observation-d35f20e5-ce44-4582-9432-eef969216b7e-3/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/P1020715.JPG,,TRUE, +N1,61110,sortie-d35f20e5-ce44-4582-9432-eef969216b7e,https://biolit.fr/sorties/sortie-d35f20e5-ce44-4582-9432-eef969216b7e/,Phil,,05/08/2016,12.0000000,12.0:45,48.167720000000,-4.299246000000,,Plomodiern - Finistère,54379,observation-d35f20e5-ce44-4582-9432-eef969216b7e-4,https://biolit.fr/observations/observation-d35f20e5-ce44-4582-9432-eef969216b7e-4/,Trivia monacha,Grain de café à trois points,,https://biolit.fr/wp-content/uploads/2023/07/20160508_134221.jpg,,TRUE, +N1,61111,sortie-f3c977fe-f18c-4483-8ca0-1b08b17a6bab,https://biolit.fr/sorties/sortie-f3c977fe-f18c-4483-8ca0-1b08b17a6bab/,Phil,,05/08/2016,13.0:25,13.0000000,48.167669000000,-4.299482000000,,Plomodiern - Finistère,54381,observation-f3c977fe-f18c-4483-8ca0-1b08b17a6bab,https://biolit.fr/observations/observation-f3c977fe-f18c-4483-8ca0-1b08b17a6bab/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20160508_132945.jpg,,TRUE, +N1,61111,sortie-f3c977fe-f18c-4483-8ca0-1b08b17a6bab,https://biolit.fr/sorties/sortie-f3c977fe-f18c-4483-8ca0-1b08b17a6bab/,Phil,,05/08/2016,13.0:25,13.0000000,48.167669000000,-4.299482000000,,Plomodiern - Finistère,54383,observation-f3c977fe-f18c-4483-8ca0-1b08b17a6bab-2,https://biolit.fr/observations/observation-f3c977fe-f18c-4483-8ca0-1b08b17a6bab-2/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20160508_133034.jpg,,TRUE, +N1,61111,sortie-f3c977fe-f18c-4483-8ca0-1b08b17a6bab,https://biolit.fr/sorties/sortie-f3c977fe-f18c-4483-8ca0-1b08b17a6bab/,Phil,,05/08/2016,13.0:25,13.0000000,48.167669000000,-4.299482000000,,Plomodiern - Finistère,54385,observation-f3c977fe-f18c-4483-8ca0-1b08b17a6bab-3,https://biolit.fr/observations/observation-f3c977fe-f18c-4483-8ca0-1b08b17a6bab-3/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/20160508_133112.jpg,,TRUE, +N1,61112,sortie-bb3ca192-cd15-469a-a791-2b2853f31fac,https://biolit.fr/sorties/sortie-bb3ca192-cd15-469a-a791-2b2853f31fac/,Earthforce FS,,05/10/2016,14.0000000,17.0000000,9.799256000000,99.979989000000,,Ko Ma Koh Phangan Thaïlande,54387,observation-bb3ca192-cd15-469a-a791-2b2853f31fac,https://biolit.fr/observations/observation-bb3ca192-cd15-469a-a791-2b2853f31fac/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC00950_0-scaled.jpg,,FALSE, +N1,61112,sortie-bb3ca192-cd15-469a-a791-2b2853f31fac,https://biolit.fr/sorties/sortie-bb3ca192-cd15-469a-a791-2b2853f31fac/,Earthforce FS,,05/10/2016,14.0000000,17.0000000,9.799256000000,99.979989000000,,Ko Ma Koh Phangan Thaïlande,54389,observation-bb3ca192-cd15-469a-a791-2b2853f31fac-2,https://biolit.fr/observations/observation-bb3ca192-cd15-469a-a791-2b2853f31fac-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC00953_0-scaled.jpg,,FALSE, +N1,61112,sortie-bb3ca192-cd15-469a-a791-2b2853f31fac,https://biolit.fr/sorties/sortie-bb3ca192-cd15-469a-a791-2b2853f31fac/,Earthforce FS,,05/10/2016,14.0000000,17.0000000,9.799256000000,99.979989000000,,Ko Ma Koh Phangan Thaïlande,54391,observation-bb3ca192-cd15-469a-a791-2b2853f31fac-3,https://biolit.fr/observations/observation-bb3ca192-cd15-469a-a791-2b2853f31fac-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC00954_0-scaled.jpg,,FALSE, +N1,61112,sortie-bb3ca192-cd15-469a-a791-2b2853f31fac,https://biolit.fr/sorties/sortie-bb3ca192-cd15-469a-a791-2b2853f31fac/,Earthforce FS,,05/10/2016,14.0000000,17.0000000,9.799256000000,99.979989000000,,Ko Ma Koh Phangan Thaïlande,54393,observation-bb3ca192-cd15-469a-a791-2b2853f31fac-4,https://biolit.fr/observations/observation-bb3ca192-cd15-469a-a791-2b2853f31fac-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC00956_0-scaled.jpg,,FALSE, +N1,61112,sortie-bb3ca192-cd15-469a-a791-2b2853f31fac,https://biolit.fr/sorties/sortie-bb3ca192-cd15-469a-a791-2b2853f31fac/,Earthforce FS,,05/10/2016,14.0000000,17.0000000,9.799256000000,99.979989000000,,Ko Ma Koh Phangan Thaïlande,54395,observation-bb3ca192-cd15-469a-a791-2b2853f31fac-5,https://biolit.fr/observations/observation-bb3ca192-cd15-469a-a791-2b2853f31fac-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC00972_0-scaled.jpg,,FALSE, +N1,61112,sortie-bb3ca192-cd15-469a-a791-2b2853f31fac,https://biolit.fr/sorties/sortie-bb3ca192-cd15-469a-a791-2b2853f31fac/,Earthforce FS,,05/10/2016,14.0000000,17.0000000,9.799256000000,99.979989000000,,Ko Ma Koh Phangan Thaïlande,54397,observation-bb3ca192-cd15-469a-a791-2b2853f31fac-6,https://biolit.fr/observations/observation-bb3ca192-cd15-469a-a791-2b2853f31fac-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC00979_0-scaled.jpg,,FALSE, +N1,61112,sortie-bb3ca192-cd15-469a-a791-2b2853f31fac,https://biolit.fr/sorties/sortie-bb3ca192-cd15-469a-a791-2b2853f31fac/,Earthforce FS,,05/10/2016,14.0000000,17.0000000,9.799256000000,99.979989000000,,Ko Ma Koh Phangan Thaïlande,54399,observation-bb3ca192-cd15-469a-a791-2b2853f31fac-7,https://biolit.fr/observations/observation-bb3ca192-cd15-469a-a791-2b2853f31fac-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC00981_0-scaled.jpg,,FALSE, +N1,61112,sortie-bb3ca192-cd15-469a-a791-2b2853f31fac,https://biolit.fr/sorties/sortie-bb3ca192-cd15-469a-a791-2b2853f31fac/,Earthforce FS,,05/10/2016,14.0000000,17.0000000,9.799256000000,99.979989000000,,Ko Ma Koh Phangan Thaïlande,54401,observation-bb3ca192-cd15-469a-a791-2b2853f31fac-8,https://biolit.fr/observations/observation-bb3ca192-cd15-469a-a791-2b2853f31fac-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC00983_0-scaled.jpg,,FALSE, +N1,61112,sortie-bb3ca192-cd15-469a-a791-2b2853f31fac,https://biolit.fr/sorties/sortie-bb3ca192-cd15-469a-a791-2b2853f31fac/,Earthforce FS,,05/10/2016,14.0000000,17.0000000,9.799256000000,99.979989000000,,Ko Ma Koh Phangan Thaïlande,54403,observation-bb3ca192-cd15-469a-a791-2b2853f31fac-9,https://biolit.fr/observations/observation-bb3ca192-cd15-469a-a791-2b2853f31fac-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC00984_0-scaled.jpg,,FALSE, +N1,61112,sortie-bb3ca192-cd15-469a-a791-2b2853f31fac,https://biolit.fr/sorties/sortie-bb3ca192-cd15-469a-a791-2b2853f31fac/,Earthforce FS,,05/10/2016,14.0000000,17.0000000,9.799256000000,99.979989000000,,Ko Ma Koh Phangan Thaïlande,54405,observation-bb3ca192-cd15-469a-a791-2b2853f31fac-10,https://biolit.fr/observations/observation-bb3ca192-cd15-469a-a791-2b2853f31fac-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC00985_0-scaled.jpg,,FALSE, +N1,61112,sortie-bb3ca192-cd15-469a-a791-2b2853f31fac,https://biolit.fr/sorties/sortie-bb3ca192-cd15-469a-a791-2b2853f31fac/,Earthforce FS,,05/10/2016,14.0000000,17.0000000,9.799256000000,99.979989000000,,Ko Ma Koh Phangan Thaïlande,54407,observation-bb3ca192-cd15-469a-a791-2b2853f31fac-11,https://biolit.fr/observations/observation-bb3ca192-cd15-469a-a791-2b2853f31fac-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC00988_0-scaled.jpg,,FALSE, +N1,61112,sortie-bb3ca192-cd15-469a-a791-2b2853f31fac,https://biolit.fr/sorties/sortie-bb3ca192-cd15-469a-a791-2b2853f31fac/,Earthforce FS,,05/10/2016,14.0000000,17.0000000,9.799256000000,99.979989000000,,Ko Ma Koh Phangan Thaïlande,54409,observation-bb3ca192-cd15-469a-a791-2b2853f31fac-12,https://biolit.fr/observations/observation-bb3ca192-cd15-469a-a791-2b2853f31fac-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC00993_0-scaled.jpg,,FALSE, +N1,61112,sortie-bb3ca192-cd15-469a-a791-2b2853f31fac,https://biolit.fr/sorties/sortie-bb3ca192-cd15-469a-a791-2b2853f31fac/,Earthforce FS,,05/10/2016,14.0000000,17.0000000,9.799256000000,99.979989000000,,Ko Ma Koh Phangan Thaïlande,54411,observation-bb3ca192-cd15-469a-a791-2b2853f31fac-13,https://biolit.fr/observations/observation-bb3ca192-cd15-469a-a791-2b2853f31fac-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC01039-scaled.jpg,,FALSE, +N1,61113,sortie-7db0eeec-d7bb-4c26-b9fa-86824ddc2935,https://biolit.fr/sorties/sortie-7db0eeec-d7bb-4c26-b9fa-86824ddc2935/,AIEJE,,05/10/2016,14.0000000,14.0000000,43.331397000000,5.203340000000,,ENSUES LA REDONNE plage des anthenors,54413,observation-7db0eeec-d7bb-4c26-b9fa-86824ddc2935,https://biolit.fr/observations/observation-7db0eeec-d7bb-4c26-b9fa-86824ddc2935/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2950-scaled.jpg,,TRUE, +N1,61114,sortie-2dca230a-10aa-4a94-b508-2884053ddc9b,https://biolit.fr/sorties/sortie-2dca230a-10aa-4a94-b508-2884053ddc9b/,Phil,,05/08/2016,12.0:15,12.0:25,48.168669000000,-4.298130000000,,Plomodiern - Finistère,54415,observation-2dca230a-10aa-4a94-b508-2884053ddc9b,https://biolit.fr/observations/observation-2dca230a-10aa-4a94-b508-2884053ddc9b/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020662.JPG,,TRUE, +N1,61114,sortie-2dca230a-10aa-4a94-b508-2884053ddc9b,https://biolit.fr/sorties/sortie-2dca230a-10aa-4a94-b508-2884053ddc9b/,Phil,,05/08/2016,12.0:15,12.0:25,48.168669000000,-4.298130000000,,Plomodiern - Finistère,54417,observation-2dca230a-10aa-4a94-b508-2884053ddc9b-2,https://biolit.fr/observations/observation-2dca230a-10aa-4a94-b508-2884053ddc9b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020674_0.JPG,,FALSE, +N1,61114,sortie-2dca230a-10aa-4a94-b508-2884053ddc9b,https://biolit.fr/sorties/sortie-2dca230a-10aa-4a94-b508-2884053ddc9b/,Phil,,05/08/2016,12.0:15,12.0:25,48.168669000000,-4.298130000000,,Plomodiern - Finistère,54419,observation-2dca230a-10aa-4a94-b508-2884053ddc9b-3,https://biolit.fr/observations/observation-2dca230a-10aa-4a94-b508-2884053ddc9b-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1020680.JPG,,TRUE, +N1,61114,sortie-2dca230a-10aa-4a94-b508-2884053ddc9b,https://biolit.fr/sorties/sortie-2dca230a-10aa-4a94-b508-2884053ddc9b/,Phil,,05/08/2016,12.0:15,12.0:25,48.168669000000,-4.298130000000,,Plomodiern - Finistère,54421,observation-2dca230a-10aa-4a94-b508-2884053ddc9b-4,https://biolit.fr/observations/observation-2dca230a-10aa-4a94-b508-2884053ddc9b-4/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/P1020682.JPG,,TRUE, +N1,61114,sortie-2dca230a-10aa-4a94-b508-2884053ddc9b,https://biolit.fr/sorties/sortie-2dca230a-10aa-4a94-b508-2884053ddc9b/,Phil,,05/08/2016,12.0:15,12.0:25,48.168669000000,-4.298130000000,,Plomodiern - Finistère,54423,observation-2dca230a-10aa-4a94-b508-2884053ddc9b-5,https://biolit.fr/observations/observation-2dca230a-10aa-4a94-b508-2884053ddc9b-5/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020685.JPG,,TRUE, +N1,61115,sortie-66c9b915-24eb-49dc-bf9e-8f0b0a91a045,https://biolit.fr/sorties/sortie-66c9b915-24eb-49dc-bf9e-8f0b0a91a045/,Phil,,05/08/2016,12.0000000,12.0:15,48.168765000000,-4.296113000000,,Plomodiern - Finistère,54425,observation-66c9b915-24eb-49dc-bf9e-8f0b0a91a045,https://biolit.fr/observations/observation-66c9b915-24eb-49dc-bf9e-8f0b0a91a045/,Aplidium punctum,Flocon pédonculé orange,,https://biolit.fr/wp-content/uploads/2023/07/P1020654.JPG,,FALSE, +N1,61115,sortie-66c9b915-24eb-49dc-bf9e-8f0b0a91a045,https://biolit.fr/sorties/sortie-66c9b915-24eb-49dc-bf9e-8f0b0a91a045/,Phil,,05/08/2016,12.0000000,12.0:15,48.168765000000,-4.296113000000,,Plomodiern - Finistère,54427,observation-66c9b915-24eb-49dc-bf9e-8f0b0a91a045-2,https://biolit.fr/observations/observation-66c9b915-24eb-49dc-bf9e-8f0b0a91a045-2/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/P1020643.JPG,,TRUE, +N1,61115,sortie-66c9b915-24eb-49dc-bf9e-8f0b0a91a045,https://biolit.fr/sorties/sortie-66c9b915-24eb-49dc-bf9e-8f0b0a91a045/,Phil,,05/08/2016,12.0000000,12.0:15,48.168765000000,-4.296113000000,,Plomodiern - Finistère,54429,observation-66c9b915-24eb-49dc-bf9e-8f0b0a91a045-3,https://biolit.fr/observations/observation-66c9b915-24eb-49dc-bf9e-8f0b0a91a045-3/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/P1020641.JPG,,TRUE, +N1,61115,sortie-66c9b915-24eb-49dc-bf9e-8f0b0a91a045,https://biolit.fr/sorties/sortie-66c9b915-24eb-49dc-bf9e-8f0b0a91a045/,Phil,,05/08/2016,12.0000000,12.0:15,48.168765000000,-4.296113000000,,Plomodiern - Finistère,54431,observation-66c9b915-24eb-49dc-bf9e-8f0b0a91a045-4,https://biolit.fr/observations/observation-66c9b915-24eb-49dc-bf9e-8f0b0a91a045-4/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/P1020646.JPG,,TRUE, +N1,61115,sortie-66c9b915-24eb-49dc-bf9e-8f0b0a91a045,https://biolit.fr/sorties/sortie-66c9b915-24eb-49dc-bf9e-8f0b0a91a045/,Phil,,05/08/2016,12.0000000,12.0:15,48.168765000000,-4.296113000000,,Plomodiern - Finistère,54433,observation-66c9b915-24eb-49dc-bf9e-8f0b0a91a045-5,https://biolit.fr/observations/observation-66c9b915-24eb-49dc-bf9e-8f0b0a91a045-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020636.JPG,,FALSE, +N1,61116,sortie-162e5b9e-bb75-4641-8135-aa83fb993d78,https://biolit.fr/sorties/sortie-162e5b9e-bb75-4641-8135-aa83fb993d78/,Phil,,05/05/2016,17.0:25,17.0000000,47.829271000000,-4.362615000000,,Penmarc'h - Finistère,54435,observation-162e5b9e-bb75-4641-8135-aa83fb993d78,https://biolit.fr/observations/observation-162e5b9e-bb75-4641-8135-aa83fb993d78/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020586.JPG,,FALSE, +N1,61116,sortie-162e5b9e-bb75-4641-8135-aa83fb993d78,https://biolit.fr/sorties/sortie-162e5b9e-bb75-4641-8135-aa83fb993d78/,Phil,,05/05/2016,17.0:25,17.0000000,47.829271000000,-4.362615000000,,Penmarc'h - Finistère,54437,observation-162e5b9e-bb75-4641-8135-aa83fb993d78-2,https://biolit.fr/observations/observation-162e5b9e-bb75-4641-8135-aa83fb993d78-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020601.JPG,,FALSE, +N1,61116,sortie-162e5b9e-bb75-4641-8135-aa83fb993d78,https://biolit.fr/sorties/sortie-162e5b9e-bb75-4641-8135-aa83fb993d78/,Phil,,05/05/2016,17.0:25,17.0000000,47.829271000000,-4.362615000000,,Penmarc'h - Finistère,54439,observation-162e5b9e-bb75-4641-8135-aa83fb993d78-3,https://biolit.fr/observations/observation-162e5b9e-bb75-4641-8135-aa83fb993d78-3/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1020602.JPG,,TRUE, +N1,61117,sortie-293abe9b-de67-4a1a-b68d-ee0465bd0381,https://biolit.fr/sorties/sortie-293abe9b-de67-4a1a-b68d-ee0465bd0381/,Phil,,05/08/2016,12.000005,12.0000000,48.16989600000,-4.293517000000,,Plomodiern - Finistère,54441,observation-293abe9b-de67-4a1a-b68d-ee0465bd0381,https://biolit.fr/observations/observation-293abe9b-de67-4a1a-b68d-ee0465bd0381/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1020628.JPG,,TRUE, +N1,61117,sortie-293abe9b-de67-4a1a-b68d-ee0465bd0381,https://biolit.fr/sorties/sortie-293abe9b-de67-4a1a-b68d-ee0465bd0381/,Phil,,05/08/2016,12.000005,12.0000000,48.16989600000,-4.293517000000,,Plomodiern - Finistère,54443,observation-293abe9b-de67-4a1a-b68d-ee0465bd0381-2,https://biolit.fr/observations/observation-293abe9b-de67-4a1a-b68d-ee0465bd0381-2/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1020629.JPG,,TRUE, +N1,61117,sortie-293abe9b-de67-4a1a-b68d-ee0465bd0381,https://biolit.fr/sorties/sortie-293abe9b-de67-4a1a-b68d-ee0465bd0381/,Phil,,05/08/2016,12.000005,12.0000000,48.16989600000,-4.293517000000,,Plomodiern - Finistère,54445,observation-293abe9b-de67-4a1a-b68d-ee0465bd0381-3,https://biolit.fr/observations/observation-293abe9b-de67-4a1a-b68d-ee0465bd0381-3/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/P1020631.JPG,,TRUE, +N1,61118,sortie-4917c058-b0c3-43e0-bcdc-94a5a52e3bd9,https://biolit.fr/sorties/sortie-4917c058-b0c3-43e0-bcdc-94a5a52e3bd9/,slegallais,,05/04/2016,8.0000000,17.0000000,42.689698000000,9.479725000000,,Bastia,54447,observation-4917c058-b0c3-43e0-bcdc-94a5a52e3bd9,https://biolit.fr/observations/observation-4917c058-b0c3-43e0-bcdc-94a5a52e3bd9/,Prionace glauca,Requin peau bleue,,https://biolit.fr/wp-content/uploads/2023/07/PB_3.jpg,,TRUE, +N1,61119,sortie-f2c484fe-cd2b-4eed-b9e2-091927c848be,https://biolit.fr/sorties/sortie-f2c484fe-cd2b-4eed-b9e2-091927c848be/,Phil,,05/05/2016,17.0000000,17.0:55,47.828147000000,-4.361872000000,,Penmarc'h - Finistère,54449,observation-f2c484fe-cd2b-4eed-b9e2-091927c848be,https://biolit.fr/observations/observation-f2c484fe-cd2b-4eed-b9e2-091927c848be/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020620.JPG,,FALSE, +N1,61119,sortie-f2c484fe-cd2b-4eed-b9e2-091927c848be,https://biolit.fr/sorties/sortie-f2c484fe-cd2b-4eed-b9e2-091927c848be/,Phil,,05/05/2016,17.0000000,17.0:55,47.828147000000,-4.361872000000,,Penmarc'h - Finistère,54451,observation-f2c484fe-cd2b-4eed-b9e2-091927c848be-2,https://biolit.fr/observations/observation-f2c484fe-cd2b-4eed-b9e2-091927c848be-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020618.JPG,,FALSE, +N1,61119,sortie-f2c484fe-cd2b-4eed-b9e2-091927c848be,https://biolit.fr/sorties/sortie-f2c484fe-cd2b-4eed-b9e2-091927c848be/,Phil,,05/05/2016,17.0000000,17.0:55,47.828147000000,-4.361872000000,,Penmarc'h - Finistère,54453,observation-f2c484fe-cd2b-4eed-b9e2-091927c848be-3,https://biolit.fr/observations/observation-f2c484fe-cd2b-4eed-b9e2-091927c848be-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020608.JPG,,TRUE, +N1,61119,sortie-f2c484fe-cd2b-4eed-b9e2-091927c848be,https://biolit.fr/sorties/sortie-f2c484fe-cd2b-4eed-b9e2-091927c848be/,Phil,,05/05/2016,17.0000000,17.0:55,47.828147000000,-4.361872000000,,Penmarc'h - Finistère,54455,observation-f2c484fe-cd2b-4eed-b9e2-091927c848be-4,https://biolit.fr/observations/observation-f2c484fe-cd2b-4eed-b9e2-091927c848be-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020610.JPG,,TRUE, +N1,61119,sortie-f2c484fe-cd2b-4eed-b9e2-091927c848be,https://biolit.fr/sorties/sortie-f2c484fe-cd2b-4eed-b9e2-091927c848be/,Phil,,05/05/2016,17.0000000,17.0:55,47.828147000000,-4.361872000000,,Penmarc'h - Finistère,54457,observation-f2c484fe-cd2b-4eed-b9e2-091927c848be-5,https://biolit.fr/observations/observation-f2c484fe-cd2b-4eed-b9e2-091927c848be-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020616.JPG,,FALSE, +N1,61119,sortie-f2c484fe-cd2b-4eed-b9e2-091927c848be,https://biolit.fr/sorties/sortie-f2c484fe-cd2b-4eed-b9e2-091927c848be/,Phil,,05/05/2016,17.0000000,17.0:55,47.828147000000,-4.361872000000,,Penmarc'h - Finistère,54459,observation-f2c484fe-cd2b-4eed-b9e2-091927c848be-6,https://biolit.fr/observations/observation-f2c484fe-cd2b-4eed-b9e2-091927c848be-6/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020617.JPG,,TRUE, +N1,61120,sortie-6155574c-4f6b-4260-8490-72b1f43113e7,https://biolit.fr/sorties/sortie-6155574c-4f6b-4260-8490-72b1f43113e7/,Phil,,05/05/2016,18.0:15,18.0000000,47.798118000000,-4.349483000000,,Kerity - Finistère,54461,observation-6155574c-4f6b-4260-8490-72b1f43113e7,https://biolit.fr/observations/observation-6155574c-4f6b-4260-8490-72b1f43113e7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020626.JPG,,FALSE, +N1,61120,sortie-6155574c-4f6b-4260-8490-72b1f43113e7,https://biolit.fr/sorties/sortie-6155574c-4f6b-4260-8490-72b1f43113e7/,Phil,,05/05/2016,18.0:15,18.0000000,47.798118000000,-4.349483000000,,Kerity - Finistère,54463,observation-6155574c-4f6b-4260-8490-72b1f43113e7-2,https://biolit.fr/observations/observation-6155574c-4f6b-4260-8490-72b1f43113e7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020625.JPG,,FALSE, +N1,61120,sortie-6155574c-4f6b-4260-8490-72b1f43113e7,https://biolit.fr/sorties/sortie-6155574c-4f6b-4260-8490-72b1f43113e7/,Phil,,05/05/2016,18.0:15,18.0000000,47.798118000000,-4.349483000000,,Kerity - Finistère,54465,observation-6155574c-4f6b-4260-8490-72b1f43113e7-3,https://biolit.fr/observations/observation-6155574c-4f6b-4260-8490-72b1f43113e7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020621.JPG,,FALSE, +N1,61120,sortie-6155574c-4f6b-4260-8490-72b1f43113e7,https://biolit.fr/sorties/sortie-6155574c-4f6b-4260-8490-72b1f43113e7/,Phil,,05/05/2016,18.0:15,18.0000000,47.798118000000,-4.349483000000,,Kerity - Finistère,54467,observation-6155574c-4f6b-4260-8490-72b1f43113e7-4,https://biolit.fr/observations/observation-6155574c-4f6b-4260-8490-72b1f43113e7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020624.JPG,,FALSE, +N1,61121,sortie-535d00bf-8e78-44f7-940f-68c2db604a68,https://biolit.fr/sorties/sortie-535d00bf-8e78-44f7-940f-68c2db604a68/,Marine,,4/21/2016 0:00,14.0000000,15.0000000,43.267177000000,5.371115000000,,Base nautique du Roucas Blanc,54469,observation-535d00bf-8e78-44f7-940f-68c2db604a68,https://biolit.fr/observations/observation-535d00bf-8e78-44f7-940f-68c2db604a68/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0023_0-scaled.jpg,,FALSE, +N1,61121,sortie-535d00bf-8e78-44f7-940f-68c2db604a68,https://biolit.fr/sorties/sortie-535d00bf-8e78-44f7-940f-68c2db604a68/,Marine,,4/21/2016 0:00,14.0000000,15.0000000,43.267177000000,5.371115000000,,Base nautique du Roucas Blanc,54471,observation-535d00bf-8e78-44f7-940f-68c2db604a68-2,https://biolit.fr/observations/observation-535d00bf-8e78-44f7-940f-68c2db604a68-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0024-scaled.jpg,,FALSE, +N1,61121,sortie-535d00bf-8e78-44f7-940f-68c2db604a68,https://biolit.fr/sorties/sortie-535d00bf-8e78-44f7-940f-68c2db604a68/,Marine,,4/21/2016 0:00,14.0000000,15.0000000,43.267177000000,5.371115000000,,Base nautique du Roucas Blanc,54473,observation-535d00bf-8e78-44f7-940f-68c2db604a68-3,https://biolit.fr/observations/observation-535d00bf-8e78-44f7-940f-68c2db604a68-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0025.jpg,,FALSE, +N1,61122,sortie-d849128e-d2a6-47f2-8fae-9aa9e1818327,https://biolit.fr/sorties/sortie-d849128e-d2a6-47f2-8fae-9aa9e1818327/,Ville de Marseille,,4/29/2016 0:00,11.0000000,12.0000000,43.26700300000,5.370881000000,,Base nautique du Roucas Blanc,54474,observation-d849128e-d2a6-47f2-8fae-9aa9e1818327,https://biolit.fr/observations/observation-d849128e-d2a6-47f2-8fae-9aa9e1818327/,Colpomenia sinuosa,Colpoménia sinueux,,https://biolit.fr/wp-content/uploads/2023/07/P1060811-scaled.jpg,,TRUE, +N1,61123,sortie-3f811b43-01a3-4226-81fe-8f07f554413e,https://biolit.fr/sorties/sortie-3f811b43-01a3-4226-81fe-8f07f554413e/,Ville de Marseille,,4/29/2016 0:00,11.0000000,12.0000000,43.26700300000,5.370881000000,,Base nautique du Roucas Blanc,54476,observation-3f811b43-01a3-4226-81fe-8f07f554413e,https://biolit.fr/observations/observation-3f811b43-01a3-4226-81fe-8f07f554413e/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/P1060818-scaled.jpg,,TRUE, +N1,61123,sortie-3f811b43-01a3-4226-81fe-8f07f554413e,https://biolit.fr/sorties/sortie-3f811b43-01a3-4226-81fe-8f07f554413e/,Ville de Marseille,,4/29/2016 0:00,11.0000000,12.0000000,43.26700300000,5.370881000000,,Base nautique du Roucas Blanc,54478,observation-3f811b43-01a3-4226-81fe-8f07f554413e-2,https://biolit.fr/observations/observation-3f811b43-01a3-4226-81fe-8f07f554413e-2/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/P1060820-scaled.jpg,,TRUE, +N1,61123,sortie-3f811b43-01a3-4226-81fe-8f07f554413e,https://biolit.fr/sorties/sortie-3f811b43-01a3-4226-81fe-8f07f554413e/,Ville de Marseille,,4/29/2016 0:00,11.0000000,12.0000000,43.26700300000,5.370881000000,,Base nautique du Roucas Blanc,54480,observation-3f811b43-01a3-4226-81fe-8f07f554413e-3,https://biolit.fr/observations/observation-3f811b43-01a3-4226-81fe-8f07f554413e-3/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/P1060819-scaled.jpg,,TRUE, +N1,61124,sortie-8f606675-c1fb-4222-817d-612e7187dd09,https://biolit.fr/sorties/sortie-8f606675-c1fb-4222-817d-612e7187dd09/,Ville de Marseille,,4/29/2016 0:00,11.0000000,12.0000000,43.26700300000,5.370881000000,,Base nautique du Roucas Blanc,54482,observation-8f606675-c1fb-4222-817d-612e7187dd09,https://biolit.fr/observations/observation-8f606675-c1fb-4222-817d-612e7187dd09/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060808-scaled.jpg,,FALSE, +N1,61125,sortie-8d063777-daa1-4cf0-8963-d06b15cb0347,https://biolit.fr/sorties/sortie-8d063777-daa1-4cf0-8963-d06b15cb0347/,azelie,,05/01/2016,16.0000000,16.0:45,49.324397000000,-0.008115000000,,Plage de Villers-Sur-Mer ,54484,observation-8d063777-daa1-4cf0-8963-d06b15cb0347,https://biolit.fr/observations/observation-8d063777-daa1-4cf0-8963-d06b15cb0347/,Loligo spp.,Ponte de Calmar,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_2619-scaled.jpg,,TRUE, +N1,61125,sortie-8d063777-daa1-4cf0-8963-d06b15cb0347,https://biolit.fr/sorties/sortie-8d063777-daa1-4cf0-8963-d06b15cb0347/,azelie,,05/01/2016,16.0000000,16.0:45,49.324397000000,-0.008115000000,,Plage de Villers-Sur-Mer ,54486,observation-8d063777-daa1-4cf0-8963-d06b15cb0347-2,https://biolit.fr/observations/observation-8d063777-daa1-4cf0-8963-d06b15cb0347-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2620-scaled.jpg,,FALSE, +N1,61125,sortie-8d063777-daa1-4cf0-8963-d06b15cb0347,https://biolit.fr/sorties/sortie-8d063777-daa1-4cf0-8963-d06b15cb0347/,azelie,,05/01/2016,16.0000000,16.0:45,49.324397000000,-0.008115000000,,Plage de Villers-Sur-Mer ,54488,observation-8d063777-daa1-4cf0-8963-d06b15cb0347-3,https://biolit.fr/observations/observation-8d063777-daa1-4cf0-8963-d06b15cb0347-3/,Loligo spp.,Ponte de Calmar,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_2623-scaled.jpg,,TRUE, +N1,61125,sortie-8d063777-daa1-4cf0-8963-d06b15cb0347,https://biolit.fr/sorties/sortie-8d063777-daa1-4cf0-8963-d06b15cb0347/,azelie,,05/01/2016,16.0000000,16.0:45,49.324397000000,-0.008115000000,,Plage de Villers-Sur-Mer ,54490,observation-8d063777-daa1-4cf0-8963-d06b15cb0347-4,https://biolit.fr/observations/observation-8d063777-daa1-4cf0-8963-d06b15cb0347-4/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2625-scaled.jpg,,TRUE, +N1,61126,sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6,https://biolit.fr/sorties/sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6/,azelie,,05/01/2016,16.0000000,16.0000000,49.324387000000,-0.00763400000,,plage de Villers-Sur-Mer ,54492,observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6,https://biolit.fr/observations/observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6/,Ensis magnus,Couteau arqué,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2591-rotated.jpg,,TRUE, +N1,61126,sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6,https://biolit.fr/sorties/sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6/,azelie,,05/01/2016,16.0000000,16.0000000,49.324387000000,-0.00763400000,,plage de Villers-Sur-Mer ,54494,observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-2,https://biolit.fr/observations/observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2593-rotated.jpg,,FALSE, +N1,61126,sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6,https://biolit.fr/sorties/sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6/,azelie,,05/01/2016,16.0000000,16.0000000,49.324387000000,-0.00763400000,,plage de Villers-Sur-Mer ,54496,observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-3,https://biolit.fr/observations/observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2594-rotated.jpg,,FALSE, +N1,61126,sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6,https://biolit.fr/sorties/sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6/,azelie,,05/01/2016,16.0000000,16.0000000,49.324387000000,-0.00763400000,,plage de Villers-Sur-Mer ,54498,observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-4,https://biolit.fr/observations/observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2595-rotated.jpg,,FALSE, +N1,61126,sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6,https://biolit.fr/sorties/sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6/,azelie,,05/01/2016,16.0000000,16.0000000,49.324387000000,-0.00763400000,,plage de Villers-Sur-Mer ,54500,observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-5,https://biolit.fr/observations/observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2597-rotated.jpg,,FALSE, +N1,61126,sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6,https://biolit.fr/sorties/sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6/,azelie,,05/01/2016,16.0000000,16.0000000,49.324387000000,-0.00763400000,,plage de Villers-Sur-Mer ,54502,observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-6,https://biolit.fr/observations/observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-6/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_2601-scaled.jpg,,TRUE, +N1,61126,sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6,https://biolit.fr/sorties/sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6/,azelie,,05/01/2016,16.0000000,16.0000000,49.324387000000,-0.00763400000,,plage de Villers-Sur-Mer ,54504,observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-7,https://biolit.fr/observations/observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2605-scaled.jpg,,FALSE, +N1,61126,sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6,https://biolit.fr/sorties/sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6/,azelie,,05/01/2016,16.0000000,16.0000000,49.324387000000,-0.00763400000,,plage de Villers-Sur-Mer ,54506,observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-8,https://biolit.fr/observations/observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2606-scaled.jpg,,FALSE, +N1,61126,sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6,https://biolit.fr/sorties/sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6/,azelie,,05/01/2016,16.0000000,16.0000000,49.324387000000,-0.00763400000,,plage de Villers-Sur-Mer ,54508,observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-9,https://biolit.fr/observations/observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2610-scaled.jpg,,FALSE, +N1,61126,sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6,https://biolit.fr/sorties/sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6/,azelie,,05/01/2016,16.0000000,16.0000000,49.324387000000,-0.00763400000,,plage de Villers-Sur-Mer ,54510,observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-10,https://biolit.fr/observations/observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-10/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_2613-scaled.jpg,,TRUE, +N1,61126,sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6,https://biolit.fr/sorties/sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6/,azelie,,05/01/2016,16.0000000,16.0000000,49.324387000000,-0.00763400000,,plage de Villers-Sur-Mer ,54512,observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-11,https://biolit.fr/observations/observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2616-scaled.jpg,,FALSE, +N1,61126,sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6,https://biolit.fr/sorties/sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6/,azelie,,05/01/2016,16.0000000,16.0000000,49.324387000000,-0.00763400000,,plage de Villers-Sur-Mer ,54514,observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-12,https://biolit.fr/observations/observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2618-scaled.jpg,,FALSE, +N1,61126,sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6,https://biolit.fr/sorties/sortie-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6/,azelie,,05/01/2016,16.0000000,16.0000000,49.324387000000,-0.00763400000,,plage de Villers-Sur-Mer ,54516,observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-13,https://biolit.fr/observations/observation-5e8bb4b6-96ba-4f0f-96db-4ebdd84072a6-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2614-scaled.jpg,,FALSE, +N1,61127,sortie-c616b7c7-1096-4e23-beeb-f48c0bc0a320,https://biolit.fr/sorties/sortie-c616b7c7-1096-4e23-beeb-f48c0bc0a320/,Marine,,4/27/2016 0:00,9.0000000,11.0000000,43.266945000000,5.370973000000,,Base nautique du Roucas Blanc,54518,observation-c616b7c7-1096-4e23-beeb-f48c0bc0a320,https://biolit.fr/observations/observation-c616b7c7-1096-4e23-beeb-f48c0bc0a320/,Bonellia viridis,Bonellie verte,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0019_0-scaled.jpg,,TRUE, +N1,61127,sortie-c616b7c7-1096-4e23-beeb-f48c0bc0a320,https://biolit.fr/sorties/sortie-c616b7c7-1096-4e23-beeb-f48c0bc0a320/,Marine,,4/27/2016 0:00,9.0000000,11.0000000,43.266945000000,5.370973000000,,Base nautique du Roucas Blanc,54520,observation-c616b7c7-1096-4e23-beeb-f48c0bc0a320-2,https://biolit.fr/observations/observation-c616b7c7-1096-4e23-beeb-f48c0bc0a320-2/,Bonellia viridis,Bonellie verte,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0020_1-scaled.jpg,,TRUE, +N1,61128,sortie-1600ec15-877c-4038-b96d-15408bf502fb,https://biolit.fr/sorties/sortie-1600ec15-877c-4038-b96d-15408bf502fb/,SevErine,,4/20/2016 0:00,14.0000000,16.0000000,43.272822000000,5.362119000000,,Plage du Prophète,54522,observation-1600ec15-877c-4038-b96d-15408bf502fb,https://biolit.fr/observations/observation-1600ec15-877c-4038-b96d-15408bf502fb/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/SAM_0747.JPG,,TRUE, +N1,61128,sortie-1600ec15-877c-4038-b96d-15408bf502fb,https://biolit.fr/sorties/sortie-1600ec15-877c-4038-b96d-15408bf502fb/,SevErine,,4/20/2016 0:00,14.0000000,16.0000000,43.272822000000,5.362119000000,,Plage du Prophète,54524,observation-1600ec15-877c-4038-b96d-15408bf502fb-2,https://biolit.fr/observations/observation-1600ec15-877c-4038-b96d-15408bf502fb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/SAM_0750.JPG,,FALSE, +N1,61128,sortie-1600ec15-877c-4038-b96d-15408bf502fb,https://biolit.fr/sorties/sortie-1600ec15-877c-4038-b96d-15408bf502fb/,SevErine,,4/20/2016 0:00,14.0000000,16.0000000,43.272822000000,5.362119000000,,Plage du Prophète,54526,observation-1600ec15-877c-4038-b96d-15408bf502fb-3,https://biolit.fr/observations/observation-1600ec15-877c-4038-b96d-15408bf502fb-3/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/SAM_0754.JPG,,TRUE, +N1,61128,sortie-1600ec15-877c-4038-b96d-15408bf502fb,https://biolit.fr/sorties/sortie-1600ec15-877c-4038-b96d-15408bf502fb/,SevErine,,4/20/2016 0:00,14.0000000,16.0000000,43.272822000000,5.362119000000,,Plage du Prophète,54528,observation-1600ec15-877c-4038-b96d-15408bf502fb-4,https://biolit.fr/observations/observation-1600ec15-877c-4038-b96d-15408bf502fb-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/SAM_0756.JPG,,FALSE, +N1,61128,sortie-1600ec15-877c-4038-b96d-15408bf502fb,https://biolit.fr/sorties/sortie-1600ec15-877c-4038-b96d-15408bf502fb/,SevErine,,4/20/2016 0:00,14.0000000,16.0000000,43.272822000000,5.362119000000,,Plage du Prophète,54530,observation-1600ec15-877c-4038-b96d-15408bf502fb-5,https://biolit.fr/observations/observation-1600ec15-877c-4038-b96d-15408bf502fb-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/SAM_0758.JPG,,FALSE, +N1,61128,sortie-1600ec15-877c-4038-b96d-15408bf502fb,https://biolit.fr/sorties/sortie-1600ec15-877c-4038-b96d-15408bf502fb/,SevErine,,4/20/2016 0:00,14.0000000,16.0000000,43.272822000000,5.362119000000,,Plage du Prophète,54532,observation-1600ec15-877c-4038-b96d-15408bf502fb-6,https://biolit.fr/observations/observation-1600ec15-877c-4038-b96d-15408bf502fb-6/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/SAM_0759.JPG,,TRUE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54534,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,,,,https://biolit.fr/wp-content/uploads/2023/07/1 Gibbule toupie_Monodontaturbinata_ventre-scaled.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54536,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-2,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/1 Gibbule toupie_Monodontaturbinata-scaled.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54538,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-3,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/bernard l'érmite Pagure multicolore_pagurus anachoretus-scaled.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54540,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-4,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/concombre de mer vue dessous_holothurie tubuleuse_holothuria tubulosa-scaled.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54542,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-5,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/concombre de mer vue dessus holothurie tubuleuse_holothuria tubulosa-scaled.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54544,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-6,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/aegagropile pelote posidonie_posidonia oceanica-scaled.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54546,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-7,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crabe marbré dos_ Pachygrapsus marmoratus-scaled.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54548,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-8,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crabe marbré ventre_ Pachygrapsus marmoratus.-scaled.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54550,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-9,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule toupie_Monodontaturbinata_ 2-scaled.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54552,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-10,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule toupie_Monodontaturbinata2-scaled.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54554,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-11,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lucine_ Loripes lucinalis vue externe-scaled.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54556,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-12,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/vue interne Lucine_ Loripes lucinalis-scaled.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54558,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-13,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/Peigne coquille Saint-Jacques_ Pecten maximus vue externe-scaled.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54560,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-14,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/Peigne coquille Saint-Jacques_ Pecten maximus_vue interne-scaled.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54562,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-15,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Mollusque_Vermetus triqueter.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54564,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-16,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/vue externe cyclonasse_ Cyclope neritea-scaled.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54566,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-17,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/vue interne_cyclonasse_ Cyclope nerite-scaled.jpg,,FALSE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54568,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-18,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-18/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/vue externe pelure d'oignon _ou anomie__Anomia ephippium-scaled.jpg,,TRUE, +N1,61129,sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba,https://biolit.fr/sorties/sortie-a69e8e72-9a05-4c4c-abdf-6173782dcdba/,Ville de Marseille Ecole Arenc Bachas CM2,,3/14/2016 0:00,10.0000000,12.0000000,43.268165000000,5.368953000000,,"Marseille, plage du CP mer",54570,observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-19,https://biolit.fr/observations/observation-a69e8e72-9a05-4c4c-abdf-6173782dcdba-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/vue interne pelure d'oignon _ou anomie__Anomia ephippium-scaled.jpg,,FALSE, +N1,61130,sortie-0edaf665-30d4-48ba-8326-75dcf7edf1cc,https://biolit.fr/sorties/sortie-0edaf665-30d4-48ba-8326-75dcf7edf1cc/,Phil,,03/12/2016,14.0:35,14.0:45,47.798722000000,-4.179868000000,,Loctudy - Finistère,54572,observation-0edaf665-30d4-48ba-8326-75dcf7edf1cc,https://biolit.fr/observations/observation-0edaf665-30d4-48ba-8326-75dcf7edf1cc/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020154.JPG,,FALSE, +N1,61130,sortie-0edaf665-30d4-48ba-8326-75dcf7edf1cc,https://biolit.fr/sorties/sortie-0edaf665-30d4-48ba-8326-75dcf7edf1cc/,Phil,,03/12/2016,14.0:35,14.0:45,47.798722000000,-4.179868000000,,Loctudy - Finistère,54574,observation-0edaf665-30d4-48ba-8326-75dcf7edf1cc-2,https://biolit.fr/observations/observation-0edaf665-30d4-48ba-8326-75dcf7edf1cc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020148.JPG,,FALSE, +N1,61131,sortie-61e4f2d4-1d5d-4bbe-9a64-3c6a344c2a91,https://biolit.fr/sorties/sortie-61e4f2d4-1d5d-4bbe-9a64-3c6a344c2a91/,Phil,,04/04/2016,14.0000000,14.0:15,47.799887000000,-4.374318000000,,Penmarc'h - Finistère,54576,observation-61e4f2d4-1d5d-4bbe-9a64-3c6a344c2a91,https://biolit.fr/observations/observation-61e4f2d4-1d5d-4bbe-9a64-3c6a344c2a91/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020496.JPG,,FALSE, +N1,61131,sortie-61e4f2d4-1d5d-4bbe-9a64-3c6a344c2a91,https://biolit.fr/sorties/sortie-61e4f2d4-1d5d-4bbe-9a64-3c6a344c2a91/,Phil,,04/04/2016,14.0000000,14.0:15,47.799887000000,-4.374318000000,,Penmarc'h - Finistère,54578,observation-61e4f2d4-1d5d-4bbe-9a64-3c6a344c2a91-2,https://biolit.fr/observations/observation-61e4f2d4-1d5d-4bbe-9a64-3c6a344c2a91-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020502.JPG,,FALSE, +N1,61132,sortie-26493a8e-678d-4b2a-81df-72b188585204,https://biolit.fr/sorties/sortie-26493a8e-678d-4b2a-81df-72b188585204/,Phil,,03/12/2016,14.0000000,14.0:35,47.798780000000,-4.182100000000,,Loctudy - Finistère,54580,observation-26493a8e-678d-4b2a-81df-72b188585204,https://biolit.fr/observations/observation-26493a8e-678d-4b2a-81df-72b188585204/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1020135.JPG,,TRUE, +N1,61132,sortie-26493a8e-678d-4b2a-81df-72b188585204,https://biolit.fr/sorties/sortie-26493a8e-678d-4b2a-81df-72b188585204/,Phil,,03/12/2016,14.0000000,14.0:35,47.798780000000,-4.182100000000,,Loctudy - Finistère,54582,observation-26493a8e-678d-4b2a-81df-72b188585204-2,https://biolit.fr/observations/observation-26493a8e-678d-4b2a-81df-72b188585204-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020129.JPG,,FALSE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54586,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-2,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2464-scaled.jpg,,TRUE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54588,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-3,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_2512.JPG,,TRUE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54590,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-4,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2510_0.JPG,,FALSE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54592,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-5,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-5/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_2509.JPG,,TRUE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54594,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-6,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-6/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_2505-rotated.jpg,,TRUE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54596,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-7,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-7/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_2504_0-rotated.jpg,,TRUE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54598,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-8,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-8/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2503.JPG,,TRUE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54600,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-9,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-9/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2502_0.JPG,,TRUE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54602,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-10,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-10/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMG_2493_0.JPG,,TRUE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54604,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-11,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2506-scaled.jpg,,FALSE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54606,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-12,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-12/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2492-scaled.jpg,,TRUE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54608,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-13,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2488.jpg,,FALSE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54610,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-14,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2476.jpg,,FALSE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54612,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-15,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-15/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2470-scaled.jpg,,TRUE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54614,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-16,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2489-scaled.jpg,,FALSE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54616,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-17,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2507-scaled.jpg,,FALSE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54618,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-18,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-18/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2478-scaled.jpg,,TRUE, +N1,61133,sortie-36db267f-e302-4fe9-a3bd-74cd7f435512,https://biolit.fr/sorties/sortie-36db267f-e302-4fe9-a3bd-74cd7f435512/,azelie,,4/15/2016 0:00,16.0000000,16.0000000,48.629291000000,-2.471501000000,,"Plage du Centre, Erquy",54620,observation-36db267f-e302-4fe9-a3bd-74cd7f435512-19,https://biolit.fr/observations/observation-36db267f-e302-4fe9-a3bd-74cd7f435512-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2500.jpg,,FALSE, +N1,61134,sortie-40342543-147b-493c-a6ea-276b10d95f1f,https://biolit.fr/sorties/sortie-40342543-147b-493c-a6ea-276b10d95f1f/,Phil,,04/04/2016,13.0000000,14.0000000,47.801092000000,-4.376249000000,,Penmarc'h - Finistère,54622,observation-40342543-147b-493c-a6ea-276b10d95f1f,https://biolit.fr/observations/observation-40342543-147b-493c-a6ea-276b10d95f1f/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/2023/07/P1020485.JPG,,TRUE, +N1,61134,sortie-40342543-147b-493c-a6ea-276b10d95f1f,https://biolit.fr/sorties/sortie-40342543-147b-493c-a6ea-276b10d95f1f/,Phil,,04/04/2016,13.0000000,14.0000000,47.801092000000,-4.376249000000,,Penmarc'h - Finistère,54624,observation-40342543-147b-493c-a6ea-276b10d95f1f-2,https://biolit.fr/observations/observation-40342543-147b-493c-a6ea-276b10d95f1f-2/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/2023/07/P1020472.JPG,,TRUE, +N1,61134,sortie-40342543-147b-493c-a6ea-276b10d95f1f,https://biolit.fr/sorties/sortie-40342543-147b-493c-a6ea-276b10d95f1f/,Phil,,04/04/2016,13.0000000,14.0000000,47.801092000000,-4.376249000000,,Penmarc'h - Finistère,54626,observation-40342543-147b-493c-a6ea-276b10d95f1f-3,https://biolit.fr/observations/observation-40342543-147b-493c-a6ea-276b10d95f1f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020489.JPG,,FALSE, +N1,61134,sortie-40342543-147b-493c-a6ea-276b10d95f1f,https://biolit.fr/sorties/sortie-40342543-147b-493c-a6ea-276b10d95f1f/,Phil,,04/04/2016,13.0000000,14.0000000,47.801092000000,-4.376249000000,,Penmarc'h - Finistère,54628,observation-40342543-147b-493c-a6ea-276b10d95f1f-4,https://biolit.fr/observations/observation-40342543-147b-493c-a6ea-276b10d95f1f-4/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020454.JPG,,TRUE, +N1,61135,sortie-fb8993f5-c8b6-47bf-9e26-d29b06e5c952,https://biolit.fr/sorties/sortie-fb8993f5-c8b6-47bf-9e26-d29b06e5c952/,Phil,,03/12/2016,14.0:25,14.0000000,47.797661000000,-4.183602000000,,Loctudy - Finistère,54630,observation-fb8993f5-c8b6-47bf-9e26-d29b06e5c952,https://biolit.fr/observations/observation-fb8993f5-c8b6-47bf-9e26-d29b06e5c952/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1020123.JPG,,TRUE, +N1,61135,sortie-fb8993f5-c8b6-47bf-9e26-d29b06e5c952,https://biolit.fr/sorties/sortie-fb8993f5-c8b6-47bf-9e26-d29b06e5c952/,Phil,,03/12/2016,14.0:25,14.0000000,47.797661000000,-4.183602000000,,Loctudy - Finistère,54632,observation-fb8993f5-c8b6-47bf-9e26-d29b06e5c952-2,https://biolit.fr/observations/observation-fb8993f5-c8b6-47bf-9e26-d29b06e5c952-2/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1020120.JPG,,TRUE, +N1,61135,sortie-fb8993f5-c8b6-47bf-9e26-d29b06e5c952,https://biolit.fr/sorties/sortie-fb8993f5-c8b6-47bf-9e26-d29b06e5c952/,Phil,,03/12/2016,14.0:25,14.0000000,47.797661000000,-4.183602000000,,Loctudy - Finistère,54634,observation-fb8993f5-c8b6-47bf-9e26-d29b06e5c952-3,https://biolit.fr/observations/observation-fb8993f5-c8b6-47bf-9e26-d29b06e5c952-3/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1020133.JPG,,TRUE, +N1,61136,sortie-1c7ca86f-c13d-4ea4-9645-27e5926d57c9,https://biolit.fr/sorties/sortie-1c7ca86f-c13d-4ea4-9645-27e5926d57c9/,Catherine DUBOIS,,04/11/2016,15.0000000,16.0000000,48.529325000000,-2.656370000000,,"22120 Hillion , Plage Bon Abri. Dans la Baie de Saint Brieuc ",54636,observation-1c7ca86f-c13d-4ea4-9645-27e5926d57c9,https://biolit.fr/observations/observation-1c7ca86f-c13d-4ea4-9645-27e5926d57c9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03587-73.jpg,,FALSE, +N1,61136,sortie-1c7ca86f-c13d-4ea4-9645-27e5926d57c9,https://biolit.fr/sorties/sortie-1c7ca86f-c13d-4ea4-9645-27e5926d57c9/,Catherine DUBOIS,,04/11/2016,15.0000000,16.0000000,48.529325000000,-2.656370000000,,"22120 Hillion , Plage Bon Abri. Dans la Baie de Saint Brieuc ",54638,observation-1c7ca86f-c13d-4ea4-9645-27e5926d57c9-2,https://biolit.fr/observations/observation-1c7ca86f-c13d-4ea4-9645-27e5926d57c9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03579-71.jpg,,FALSE, +N1,61136,sortie-1c7ca86f-c13d-4ea4-9645-27e5926d57c9,https://biolit.fr/sorties/sortie-1c7ca86f-c13d-4ea4-9645-27e5926d57c9/,Catherine DUBOIS,,04/11/2016,15.0000000,16.0000000,48.529325000000,-2.656370000000,,"22120 Hillion , Plage Bon Abri. Dans la Baie de Saint Brieuc ",54640,observation-1c7ca86f-c13d-4ea4-9645-27e5926d57c9-3,https://biolit.fr/observations/observation-1c7ca86f-c13d-4ea4-9645-27e5926d57c9-3/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03590-72.jpg,,TRUE, +N1,61136,sortie-1c7ca86f-c13d-4ea4-9645-27e5926d57c9,https://biolit.fr/sorties/sortie-1c7ca86f-c13d-4ea4-9645-27e5926d57c9/,Catherine DUBOIS,,04/11/2016,15.0000000,16.0000000,48.529325000000,-2.656370000000,,"22120 Hillion , Plage Bon Abri. Dans la Baie de Saint Brieuc ",54642,observation-1c7ca86f-c13d-4ea4-9645-27e5926d57c9-4,https://biolit.fr/observations/observation-1c7ca86f-c13d-4ea4-9645-27e5926d57c9-4/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/DSC03545-74.jpg,,TRUE, +N1,61136,sortie-1c7ca86f-c13d-4ea4-9645-27e5926d57c9,https://biolit.fr/sorties/sortie-1c7ca86f-c13d-4ea4-9645-27e5926d57c9/,Catherine DUBOIS,,04/11/2016,15.0000000,16.0000000,48.529325000000,-2.656370000000,,"22120 Hillion , Plage Bon Abri. Dans la Baie de Saint Brieuc ",54644,observation-1c7ca86f-c13d-4ea4-9645-27e5926d57c9-5,https://biolit.fr/observations/observation-1c7ca86f-c13d-4ea4-9645-27e5926d57c9-5/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/DSC03696-75.jpg,,TRUE, +N1,61136,sortie-1c7ca86f-c13d-4ea4-9645-27e5926d57c9,https://biolit.fr/sorties/sortie-1c7ca86f-c13d-4ea4-9645-27e5926d57c9/,Catherine DUBOIS,,04/11/2016,15.0000000,16.0000000,48.529325000000,-2.656370000000,,"22120 Hillion , Plage Bon Abri. Dans la Baie de Saint Brieuc ",54646,observation-1c7ca86f-c13d-4ea4-9645-27e5926d57c9-6,https://biolit.fr/observations/observation-1c7ca86f-c13d-4ea4-9645-27e5926d57c9-6/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03585-76.jpg,,TRUE, +N1,61136,sortie-1c7ca86f-c13d-4ea4-9645-27e5926d57c9,https://biolit.fr/sorties/sortie-1c7ca86f-c13d-4ea4-9645-27e5926d57c9/,Catherine DUBOIS,,04/11/2016,15.0000000,16.0000000,48.529325000000,-2.656370000000,,"22120 Hillion , Plage Bon Abri. Dans la Baie de Saint Brieuc ",54648,observation-1c7ca86f-c13d-4ea4-9645-27e5926d57c9-7,https://biolit.fr/observations/observation-1c7ca86f-c13d-4ea4-9645-27e5926d57c9-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03543-77.jpg,,FALSE, +N1,61136,sortie-1c7ca86f-c13d-4ea4-9645-27e5926d57c9,https://biolit.fr/sorties/sortie-1c7ca86f-c13d-4ea4-9645-27e5926d57c9/,Catherine DUBOIS,,04/11/2016,15.0000000,16.0000000,48.529325000000,-2.656370000000,,"22120 Hillion , Plage Bon Abri. Dans la Baie de Saint Brieuc ",54650,observation-1c7ca86f-c13d-4ea4-9645-27e5926d57c9-8,https://biolit.fr/observations/observation-1c7ca86f-c13d-4ea4-9645-27e5926d57c9-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03581-78.jpg,,FALSE, +N1,61137,sortie-46c6085e-c2d0-4b1d-855d-584b0a7577bb,https://biolit.fr/sorties/sortie-46c6085e-c2d0-4b1d-855d-584b0a7577bb/,Phil,,3/15/2016 0:00,17.0000000,17.0000000,47.770170000000,-3.606880000000,,Doélan - Finistère,54652,observation-46c6085e-c2d0-4b1d-855d-584b0a7577bb,https://biolit.fr/observations/observation-46c6085e-c2d0-4b1d-855d-584b0a7577bb/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1020376.JPG,,TRUE, +N1,61137,sortie-46c6085e-c2d0-4b1d-855d-584b0a7577bb,https://biolit.fr/sorties/sortie-46c6085e-c2d0-4b1d-855d-584b0a7577bb/,Phil,,3/15/2016 0:00,17.0000000,17.0000000,47.770170000000,-3.606880000000,,Doélan - Finistère,54654,observation-46c6085e-c2d0-4b1d-855d-584b0a7577bb-2,https://biolit.fr/observations/observation-46c6085e-c2d0-4b1d-855d-584b0a7577bb-2/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1020378.JPG,,TRUE, +N1,61137,sortie-46c6085e-c2d0-4b1d-855d-584b0a7577bb,https://biolit.fr/sorties/sortie-46c6085e-c2d0-4b1d-855d-584b0a7577bb/,Phil,,3/15/2016 0:00,17.0000000,17.0000000,47.770170000000,-3.606880000000,,Doélan - Finistère,54656,observation-46c6085e-c2d0-4b1d-855d-584b0a7577bb-3,https://biolit.fr/observations/observation-46c6085e-c2d0-4b1d-855d-584b0a7577bb-3/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1020396.JPG,,TRUE, +N1,61137,sortie-46c6085e-c2d0-4b1d-855d-584b0a7577bb,https://biolit.fr/sorties/sortie-46c6085e-c2d0-4b1d-855d-584b0a7577bb/,Phil,,3/15/2016 0:00,17.0000000,17.0000000,47.770170000000,-3.606880000000,,Doélan - Finistère,54658,observation-46c6085e-c2d0-4b1d-855d-584b0a7577bb-4,https://biolit.fr/observations/observation-46c6085e-c2d0-4b1d-855d-584b0a7577bb-4/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1020393.JPG,,TRUE, +N1,61137,sortie-46c6085e-c2d0-4b1d-855d-584b0a7577bb,https://biolit.fr/sorties/sortie-46c6085e-c2d0-4b1d-855d-584b0a7577bb/,Phil,,3/15/2016 0:00,17.0000000,17.0000000,47.770170000000,-3.606880000000,,Doélan - Finistère,54660,observation-46c6085e-c2d0-4b1d-855d-584b0a7577bb-5,https://biolit.fr/observations/observation-46c6085e-c2d0-4b1d-855d-584b0a7577bb-5/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1020382.JPG,,TRUE, +N1,61137,sortie-46c6085e-c2d0-4b1d-855d-584b0a7577bb,https://biolit.fr/sorties/sortie-46c6085e-c2d0-4b1d-855d-584b0a7577bb/,Phil,,3/15/2016 0:00,17.0000000,17.0000000,47.770170000000,-3.606880000000,,Doélan - Finistère,54662,observation-46c6085e-c2d0-4b1d-855d-584b0a7577bb-6,https://biolit.fr/observations/observation-46c6085e-c2d0-4b1d-855d-584b0a7577bb-6/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1020386.JPG,,TRUE, +N1,61138,sortie-0500a8d6-e7eb-48c4-995f-a4d1c3c0510b,https://biolit.fr/sorties/sortie-0500a8d6-e7eb-48c4-995f-a4d1c3c0510b/,Phil,,03/12/2016,14.0:15,14.0000000,47.797206000000,-4.182486000000,,Loctudy - Finistère,54664,observation-0500a8d6-e7eb-48c4-995f-a4d1c3c0510b,https://biolit.fr/observations/observation-0500a8d6-e7eb-48c4-995f-a4d1c3c0510b/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/P1020113.JPG,,TRUE, +N1,61138,sortie-0500a8d6-e7eb-48c4-995f-a4d1c3c0510b,https://biolit.fr/sorties/sortie-0500a8d6-e7eb-48c4-995f-a4d1c3c0510b/,Phil,,03/12/2016,14.0:15,14.0000000,47.797206000000,-4.182486000000,,Loctudy - Finistère,54666,observation-0500a8d6-e7eb-48c4-995f-a4d1c3c0510b-2,https://biolit.fr/observations/observation-0500a8d6-e7eb-48c4-995f-a4d1c3c0510b-2/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/P1020118.JPG,,TRUE, +N1,61138,sortie-0500a8d6-e7eb-48c4-995f-a4d1c3c0510b,https://biolit.fr/sorties/sortie-0500a8d6-e7eb-48c4-995f-a4d1c3c0510b/,Phil,,03/12/2016,14.0:15,14.0000000,47.797206000000,-4.182486000000,,Loctudy - Finistère,54668,observation-0500a8d6-e7eb-48c4-995f-a4d1c3c0510b-3,https://biolit.fr/observations/observation-0500a8d6-e7eb-48c4-995f-a4d1c3c0510b-3/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1020110.JPG,,TRUE, +N1,61139,sortie-83975842-328b-443a-b96d-ddde89a0e475,https://biolit.fr/sorties/sortie-83975842-328b-443a-b96d-ddde89a0e475/,Phil,,3/14/2016 0:00,13.0000000,13.0:45,47.788560000000,-4.330141000000,,Penmarc'h - Finistère,54670,observation-83975842-328b-443a-b96d-ddde89a0e475,https://biolit.fr/observations/observation-83975842-328b-443a-b96d-ddde89a0e475/,Coryphoblennius galerita,Blennie coiffée,,https://biolit.fr/wp-content/uploads/2023/07/P1020327_0.JPG,,TRUE, +N1,61139,sortie-83975842-328b-443a-b96d-ddde89a0e475,https://biolit.fr/sorties/sortie-83975842-328b-443a-b96d-ddde89a0e475/,Phil,,3/14/2016 0:00,13.0000000,13.0:45,47.788560000000,-4.330141000000,,Penmarc'h - Finistère,54672,observation-83975842-328b-443a-b96d-ddde89a0e475-2,https://biolit.fr/observations/observation-83975842-328b-443a-b96d-ddde89a0e475-2/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1020331_0.JPG,,TRUE, +N1,61140,sortie-f6fb69e6-ae1d-453e-8ee9-3f353cc2bcdc,https://biolit.fr/sorties/sortie-f6fb69e6-ae1d-453e-8ee9-3f353cc2bcdc/,Phil,,03/12/2016,14.0000000,14.0:15,47.797087000000,-4.180727000000,,Loctudy - Finistère,54674,observation-f6fb69e6-ae1d-453e-8ee9-3f353cc2bcdc,https://biolit.fr/observations/observation-f6fb69e6-ae1d-453e-8ee9-3f353cc2bcdc/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020106.JPG,,FALSE, +N1,61140,sortie-f6fb69e6-ae1d-453e-8ee9-3f353cc2bcdc,https://biolit.fr/sorties/sortie-f6fb69e6-ae1d-453e-8ee9-3f353cc2bcdc/,Phil,,03/12/2016,14.0000000,14.0:15,47.797087000000,-4.180727000000,,Loctudy - Finistère,54676,observation-f6fb69e6-ae1d-453e-8ee9-3f353cc2bcdc-2,https://biolit.fr/observations/observation-f6fb69e6-ae1d-453e-8ee9-3f353cc2bcdc-2/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020105.JPG,,TRUE, +N1,61140,sortie-f6fb69e6-ae1d-453e-8ee9-3f353cc2bcdc,https://biolit.fr/sorties/sortie-f6fb69e6-ae1d-453e-8ee9-3f353cc2bcdc/,Phil,,03/12/2016,14.0000000,14.0:15,47.797087000000,-4.180727000000,,Loctudy - Finistère,54678,observation-f6fb69e6-ae1d-453e-8ee9-3f353cc2bcdc-3,https://biolit.fr/observations/observation-f6fb69e6-ae1d-453e-8ee9-3f353cc2bcdc-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020104.JPG,,FALSE, +N1,61141,sortie-47a591f8-1936-49fc-90ff-8d8b49cbb701,https://biolit.fr/sorties/sortie-47a591f8-1936-49fc-90ff-8d8b49cbb701/,Phil,,03/12/2016,14.000005,14.0000000,47.795966000000,-4.180298000000,,Loctudy - Finistère,54680,observation-47a591f8-1936-49fc-90ff-8d8b49cbb701,https://biolit.fr/observations/observation-47a591f8-1936-49fc-90ff-8d8b49cbb701/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/P1020098.JPG,,TRUE, +N1,61141,sortie-47a591f8-1936-49fc-90ff-8d8b49cbb701,https://biolit.fr/sorties/sortie-47a591f8-1936-49fc-90ff-8d8b49cbb701/,Phil,,03/12/2016,14.000005,14.0000000,47.795966000000,-4.180298000000,,Loctudy - Finistère,54682,observation-47a591f8-1936-49fc-90ff-8d8b49cbb701-2,https://biolit.fr/observations/observation-47a591f8-1936-49fc-90ff-8d8b49cbb701-2/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/P1020095.JPG,,TRUE, +N1,61141,sortie-47a591f8-1936-49fc-90ff-8d8b49cbb701,https://biolit.fr/sorties/sortie-47a591f8-1936-49fc-90ff-8d8b49cbb701/,Phil,,03/12/2016,14.000005,14.0000000,47.795966000000,-4.180298000000,,Loctudy - Finistère,54684,observation-47a591f8-1936-49fc-90ff-8d8b49cbb701-3,https://biolit.fr/observations/observation-47a591f8-1936-49fc-90ff-8d8b49cbb701-3/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020097.JPG,,TRUE, +N1,61141,sortie-47a591f8-1936-49fc-90ff-8d8b49cbb701,https://biolit.fr/sorties/sortie-47a591f8-1936-49fc-90ff-8d8b49cbb701/,Phil,,03/12/2016,14.000005,14.0000000,47.795966000000,-4.180298000000,,Loctudy - Finistère,54686,observation-47a591f8-1936-49fc-90ff-8d8b49cbb701-4,https://biolit.fr/observations/observation-47a591f8-1936-49fc-90ff-8d8b49cbb701-4/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020096.JPG,,TRUE, +N1,61141,sortie-47a591f8-1936-49fc-90ff-8d8b49cbb701,https://biolit.fr/sorties/sortie-47a591f8-1936-49fc-90ff-8d8b49cbb701/,Phil,,03/12/2016,14.000005,14.0000000,47.795966000000,-4.180298000000,,Loctudy - Finistère,54688,observation-47a591f8-1936-49fc-90ff-8d8b49cbb701-5,https://biolit.fr/observations/observation-47a591f8-1936-49fc-90ff-8d8b49cbb701-5/,Mesophyllum lichenoides,Mésophylle lichenoïde,,https://biolit.fr/wp-content/uploads/2023/07/P1020093.JPG,,TRUE, +N1,61141,sortie-47a591f8-1936-49fc-90ff-8d8b49cbb701,https://biolit.fr/sorties/sortie-47a591f8-1936-49fc-90ff-8d8b49cbb701/,Phil,,03/12/2016,14.000005,14.0000000,47.795966000000,-4.180298000000,,Loctudy - Finistère,54690,observation-47a591f8-1936-49fc-90ff-8d8b49cbb701-6,https://biolit.fr/observations/observation-47a591f8-1936-49fc-90ff-8d8b49cbb701-6/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/P1020092.JPG,,TRUE, +N1,61141,sortie-47a591f8-1936-49fc-90ff-8d8b49cbb701,https://biolit.fr/sorties/sortie-47a591f8-1936-49fc-90ff-8d8b49cbb701/,Phil,,03/12/2016,14.000005,14.0000000,47.795966000000,-4.180298000000,,Loctudy - Finistère,54692,observation-47a591f8-1936-49fc-90ff-8d8b49cbb701-7,https://biolit.fr/observations/observation-47a591f8-1936-49fc-90ff-8d8b49cbb701-7/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/2023/07/P1020091.JPG,,TRUE, +N1,61142,sortie-ff1763d2-1bc1-44c2-910f-429b17b88dc6,https://biolit.fr/sorties/sortie-ff1763d2-1bc1-44c2-910f-429b17b88dc6/,Nils,,04/08/2016,10.0000000,12.0000000,43.239996000000,5.362430000000,,plage du bain des dames,54694,observation-ff1763d2-1bc1-44c2-910f-429b17b88dc6,https://biolit.fr/observations/observation-ff1763d2-1bc1-44c2-910f-429b17b88dc6/,Hippocampus hippocampus,Hippocampe à museau court,,https://biolit.fr/wp-content/uploads/2023/07/20160408_104146-rotated.jpg,,TRUE, +N1,61142,sortie-ff1763d2-1bc1-44c2-910f-429b17b88dc6,https://biolit.fr/sorties/sortie-ff1763d2-1bc1-44c2-910f-429b17b88dc6/,Nils,,04/08/2016,10.0000000,12.0000000,43.239996000000,5.362430000000,,plage du bain des dames,54696,observation-ff1763d2-1bc1-44c2-910f-429b17b88dc6-2,https://biolit.fr/observations/observation-ff1763d2-1bc1-44c2-910f-429b17b88dc6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160408_103719.jpg,,FALSE, +N1,61142,sortie-ff1763d2-1bc1-44c2-910f-429b17b88dc6,https://biolit.fr/sorties/sortie-ff1763d2-1bc1-44c2-910f-429b17b88dc6/,Nils,,04/08/2016,10.0000000,12.0000000,43.239996000000,5.362430000000,,plage du bain des dames,54698,observation-ff1763d2-1bc1-44c2-910f-429b17b88dc6-3,https://biolit.fr/observations/observation-ff1763d2-1bc1-44c2-910f-429b17b88dc6-3/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/20160408_105712.jpg,,TRUE, +N1,61143,sortie-2763bc4e-bce5-4c60-954a-1bfbf950629e,https://biolit.fr/sorties/sortie-2763bc4e-bce5-4c60-954a-1bfbf950629e/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.240155000000,5.362438000000,,plage du bain des dames,54700,observation-2763bc4e-bce5-4c60-954a-1bfbf950629e,https://biolit.fr/observations/observation-2763bc4e-bce5-4c60-954a-1bfbf950629e/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/P1880757.JPG,,TRUE, +N1,61143,sortie-2763bc4e-bce5-4c60-954a-1bfbf950629e,https://biolit.fr/sorties/sortie-2763bc4e-bce5-4c60-954a-1bfbf950629e/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.240155000000,5.362438000000,,plage du bain des dames,54702,observation-2763bc4e-bce5-4c60-954a-1bfbf950629e-2,https://biolit.fr/observations/observation-2763bc4e-bce5-4c60-954a-1bfbf950629e-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/P1880772.JPG,,TRUE, +N1,61143,sortie-2763bc4e-bce5-4c60-954a-1bfbf950629e,https://biolit.fr/sorties/sortie-2763bc4e-bce5-4c60-954a-1bfbf950629e/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.240155000000,5.362438000000,,plage du bain des dames,54704,observation-2763bc4e-bce5-4c60-954a-1bfbf950629e-3,https://biolit.fr/observations/observation-2763bc4e-bce5-4c60-954a-1bfbf950629e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1880814.JPG,,FALSE, +N1,61144,sortie-544b874f-47f1-4d29-89f0-546628587755,https://biolit.fr/sorties/sortie-544b874f-47f1-4d29-89f0-546628587755/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.239962000000,5.362491000000,,plage du bain des dames,54706,observation-544b874f-47f1-4d29-89f0-546628587755,https://biolit.fr/observations/observation-544b874f-47f1-4d29-89f0-546628587755/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/P1880749.JPG,,TRUE, +N1,61144,sortie-544b874f-47f1-4d29-89f0-546628587755,https://biolit.fr/sorties/sortie-544b874f-47f1-4d29-89f0-546628587755/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.239962000000,5.362491000000,,plage du bain des dames,54708,observation-544b874f-47f1-4d29-89f0-546628587755-2,https://biolit.fr/observations/observation-544b874f-47f1-4d29-89f0-546628587755-2/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/P1880747_0.JPG,,TRUE, +N1,61144,sortie-544b874f-47f1-4d29-89f0-546628587755,https://biolit.fr/sorties/sortie-544b874f-47f1-4d29-89f0-546628587755/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.239962000000,5.362491000000,,plage du bain des dames,54710,observation-544b874f-47f1-4d29-89f0-546628587755-3,https://biolit.fr/observations/observation-544b874f-47f1-4d29-89f0-546628587755-3/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/P1880743_0.JPG,,TRUE, +N1,61144,sortie-544b874f-47f1-4d29-89f0-546628587755,https://biolit.fr/sorties/sortie-544b874f-47f1-4d29-89f0-546628587755/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.239962000000,5.362491000000,,plage du bain des dames,54712,observation-544b874f-47f1-4d29-89f0-546628587755-4,https://biolit.fr/observations/observation-544b874f-47f1-4d29-89f0-546628587755-4/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/P1880744_0.JPG,,TRUE, +N1,61145,sortie-fe231aee-cdf6-46dc-9ee1-a7f8b1b1ee25,https://biolit.fr/sorties/sortie-fe231aee-cdf6-46dc-9ee1-a7f8b1b1ee25/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.239962000000,5.362491000000,,plage du bain des dames,54714,observation-fe231aee-cdf6-46dc-9ee1-a7f8b1b1ee25,https://biolit.fr/observations/observation-fe231aee-cdf6-46dc-9ee1-a7f8b1b1ee25/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/P1880739_0.JPG,,TRUE, +N1,61145,sortie-fe231aee-cdf6-46dc-9ee1-a7f8b1b1ee25,https://biolit.fr/sorties/sortie-fe231aee-cdf6-46dc-9ee1-a7f8b1b1ee25/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.239962000000,5.362491000000,,plage du bain des dames,54716,observation-fe231aee-cdf6-46dc-9ee1-a7f8b1b1ee25-2,https://biolit.fr/observations/observation-fe231aee-cdf6-46dc-9ee1-a7f8b1b1ee25-2/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/P1880740_0.JPG,,TRUE, +N1,61145,sortie-fe231aee-cdf6-46dc-9ee1-a7f8b1b1ee25,https://biolit.fr/sorties/sortie-fe231aee-cdf6-46dc-9ee1-a7f8b1b1ee25/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.239962000000,5.362491000000,,plage du bain des dames,54718,observation-fe231aee-cdf6-46dc-9ee1-a7f8b1b1ee25-3,https://biolit.fr/observations/observation-fe231aee-cdf6-46dc-9ee1-a7f8b1b1ee25-3/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/P1880741_0.JPG,,TRUE, +N1,61145,sortie-fe231aee-cdf6-46dc-9ee1-a7f8b1b1ee25,https://biolit.fr/sorties/sortie-fe231aee-cdf6-46dc-9ee1-a7f8b1b1ee25/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.239962000000,5.362491000000,,plage du bain des dames,54720,observation-fe231aee-cdf6-46dc-9ee1-a7f8b1b1ee25-4,https://biolit.fr/observations/observation-fe231aee-cdf6-46dc-9ee1-a7f8b1b1ee25-4/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/2023/07/P1880742_0.JPG,,TRUE, +N1,61146,sortie-091d7e5b-ee7a-4291-b75a-76322fc1fc95,https://biolit.fr/sorties/sortie-091d7e5b-ee7a-4291-b75a-76322fc1fc95/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.239899000000,5.362427000000,,plage du bain des dames,54722,observation-091d7e5b-ee7a-4291-b75a-76322fc1fc95,https://biolit.fr/observations/observation-091d7e5b-ee7a-4291-b75a-76322fc1fc95/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1880735_0.JPG,,FALSE, +N1,61146,sortie-091d7e5b-ee7a-4291-b75a-76322fc1fc95,https://biolit.fr/sorties/sortie-091d7e5b-ee7a-4291-b75a-76322fc1fc95/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.239899000000,5.362427000000,,plage du bain des dames,54724,observation-091d7e5b-ee7a-4291-b75a-76322fc1fc95-2,https://biolit.fr/observations/observation-091d7e5b-ee7a-4291-b75a-76322fc1fc95-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1880736_0.JPG,,FALSE, +N1,61146,sortie-091d7e5b-ee7a-4291-b75a-76322fc1fc95,https://biolit.fr/sorties/sortie-091d7e5b-ee7a-4291-b75a-76322fc1fc95/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.239899000000,5.362427000000,,plage du bain des dames,54726,observation-091d7e5b-ee7a-4291-b75a-76322fc1fc95-3,https://biolit.fr/observations/observation-091d7e5b-ee7a-4291-b75a-76322fc1fc95-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1880737_0.JPG,,FALSE, +N1,61146,sortie-091d7e5b-ee7a-4291-b75a-76322fc1fc95,https://biolit.fr/sorties/sortie-091d7e5b-ee7a-4291-b75a-76322fc1fc95/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.239899000000,5.362427000000,,plage du bain des dames,54728,observation-091d7e5b-ee7a-4291-b75a-76322fc1fc95-4,https://biolit.fr/observations/observation-091d7e5b-ee7a-4291-b75a-76322fc1fc95-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1880738_0.JPG,,FALSE, +N1,61147,sortie-978edcc1-e2cc-47b7-adb1-fa5c26255833,https://biolit.fr/sorties/sortie-978edcc1-e2cc-47b7-adb1-fa5c26255833/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.239979000000,5.362545000000,,plage du bain des dames,54730,observation-978edcc1-e2cc-47b7-adb1-fa5c26255833,https://biolit.fr/observations/observation-978edcc1-e2cc-47b7-adb1-fa5c26255833/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/P1880732_3.JPG,,TRUE, +N1,61147,sortie-978edcc1-e2cc-47b7-adb1-fa5c26255833,https://biolit.fr/sorties/sortie-978edcc1-e2cc-47b7-adb1-fa5c26255833/,Nils,,3/23/2016 0:00,12.0000000,15.0000000,43.239979000000,5.362545000000,,plage du bain des dames,54732,observation-978edcc1-e2cc-47b7-adb1-fa5c26255833-2,https://biolit.fr/observations/observation-978edcc1-e2cc-47b7-adb1-fa5c26255833-2/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/P1880733_6.JPG,,TRUE, +N1,61148,sortie-33be9479-e815-4502-b611-cf7bb90abdb5,https://biolit.fr/sorties/sortie-33be9479-e815-4502-b611-cf7bb90abdb5/,Phil,,3/14/2016 0:00,16.0:25,16.0000000,47.793613000000,-4.339299000000,,Penmarc'h - Finistère,54734,observation-33be9479-e815-4502-b611-cf7bb90abdb5,https://biolit.fr/observations/observation-33be9479-e815-4502-b611-cf7bb90abdb5/,Spisula solida,Mactre épaisse,,https://biolit.fr/wp-content/uploads/2023/07/P1020299.JPG,,TRUE, +N1,61148,sortie-33be9479-e815-4502-b611-cf7bb90abdb5,https://biolit.fr/sorties/sortie-33be9479-e815-4502-b611-cf7bb90abdb5/,Phil,,3/14/2016 0:00,16.0:25,16.0000000,47.793613000000,-4.339299000000,,Penmarc'h - Finistère,54738,observation-33be9479-e815-4502-b611-cf7bb90abdb5-3,https://biolit.fr/observations/observation-33be9479-e815-4502-b611-cf7bb90abdb5-3/,Spisula solida,Mactre épaisse,,https://biolit.fr/wp-content/uploads/2023/07/P1020300.JPG,,TRUE, +N1,61148,sortie-33be9479-e815-4502-b611-cf7bb90abdb5,https://biolit.fr/sorties/sortie-33be9479-e815-4502-b611-cf7bb90abdb5/,Phil,,3/14/2016 0:00,16.0:25,16.0000000,47.793613000000,-4.339299000000,,Penmarc'h - Finistère,54740,observation-33be9479-e815-4502-b611-cf7bb90abdb5-4,https://biolit.fr/observations/observation-33be9479-e815-4502-b611-cf7bb90abdb5-4/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020313.JPG,,TRUE, +N1,61148,sortie-33be9479-e815-4502-b611-cf7bb90abdb5,https://biolit.fr/sorties/sortie-33be9479-e815-4502-b611-cf7bb90abdb5/,Phil,,3/14/2016 0:00,16.0:25,16.0000000,47.793613000000,-4.339299000000,,Penmarc'h - Finistère,54742,observation-33be9479-e815-4502-b611-cf7bb90abdb5-5,https://biolit.fr/observations/observation-33be9479-e815-4502-b611-cf7bb90abdb5-5/,Spisula solida,Mactre épaisse,,https://biolit.fr/wp-content/uploads/2023/07/P1020316.JPG,,TRUE, +N1,61148,sortie-33be9479-e815-4502-b611-cf7bb90abdb5,https://biolit.fr/sorties/sortie-33be9479-e815-4502-b611-cf7bb90abdb5/,Phil,,3/14/2016 0:00,16.0:25,16.0000000,47.793613000000,-4.339299000000,,Penmarc'h - Finistère,54746,observation-33be9479-e815-4502-b611-cf7bb90abdb5-7,https://biolit.fr/observations/observation-33be9479-e815-4502-b611-cf7bb90abdb5-7/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020325.JPG,,TRUE, +N1,61148,sortie-33be9479-e815-4502-b611-cf7bb90abdb5,https://biolit.fr/sorties/sortie-33be9479-e815-4502-b611-cf7bb90abdb5/,Phil,,3/14/2016 0:00,16.0:25,16.0000000,47.793613000000,-4.339299000000,,Penmarc'h - Finistère,54748,observation-33be9479-e815-4502-b611-cf7bb90abdb5-8,https://biolit.fr/observations/observation-33be9479-e815-4502-b611-cf7bb90abdb5-8/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020326.JPG,,TRUE, +N1,61149,sortie-9dc6e281-7b71-4bfd-b472-99c7e62f7c9d,https://biolit.fr/sorties/sortie-9dc6e281-7b71-4bfd-b472-99c7e62f7c9d/,Phil,,04/04/2016,14.0000000,14.0:15,47.799041000000,-4.375056000000,,Penmarc'h - Finistère,54750,observation-9dc6e281-7b71-4bfd-b472-99c7e62f7c9d,https://biolit.fr/observations/observation-9dc6e281-7b71-4bfd-b472-99c7e62f7c9d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020507.JPG,,FALSE, +N1,61149,sortie-9dc6e281-7b71-4bfd-b472-99c7e62f7c9d,https://biolit.fr/sorties/sortie-9dc6e281-7b71-4bfd-b472-99c7e62f7c9d/,Phil,,04/04/2016,14.0000000,14.0:15,47.799041000000,-4.375056000000,,Penmarc'h - Finistère,54752,observation-9dc6e281-7b71-4bfd-b472-99c7e62f7c9d-2,https://biolit.fr/observations/observation-9dc6e281-7b71-4bfd-b472-99c7e62f7c9d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020509.JPG,,FALSE, +N1,61150,sortie-ccf4c5de-8233-4fb4-8d76-f38546ff695d,https://biolit.fr/sorties/sortie-ccf4c5de-8233-4fb4-8d76-f38546ff695d/,Phil,,04/04/2016,13.0000000,13.0000000,47.800078000000,-4.375356000000,,Penmarc'h - Finistère,54754,observation-ccf4c5de-8233-4fb4-8d76-f38546ff695d,https://biolit.fr/observations/observation-ccf4c5de-8233-4fb4-8d76-f38546ff695d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020451.JPG,,FALSE, +N1,61150,sortie-ccf4c5de-8233-4fb4-8d76-f38546ff695d,https://biolit.fr/sorties/sortie-ccf4c5de-8233-4fb4-8d76-f38546ff695d/,Phil,,04/04/2016,13.0000000,13.0000000,47.800078000000,-4.375356000000,,Penmarc'h - Finistère,54756,observation-ccf4c5de-8233-4fb4-8d76-f38546ff695d-2,https://biolit.fr/observations/observation-ccf4c5de-8233-4fb4-8d76-f38546ff695d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020448.JPG,,FALSE, +N1,61151,sortie-728dc2f5-5266-4fc0-80ae-36380eedbf8c,https://biolit.fr/sorties/sortie-728dc2f5-5266-4fc0-80ae-36380eedbf8c/,Ecole de la mer,,3/29/2016 0:00,9.0000000,10.0:15,16.21499500000,-61.53629700000,,Ilet cochon,54758,observation-728dc2f5-5266-4fc0-80ae-36380eedbf8c,https://biolit.fr/observations/observation-728dc2f5-5266-4fc0-80ae-36380eedbf8c/,,,,https://biolit.fr/wp-content/uploads/2023/07/GOPR3027-001.JPG,,FALSE, +N1,61152,sortie-6cdc6eed-a624-412d-a289-69064f234319,https://biolit.fr/sorties/sortie-6cdc6eed-a624-412d-a289-69064f234319/,Ecole de la mer,,3/29/2016 0:00,9.0000000,10.0:15,16.214004000000,-61.535412000000,,Ilet cochon,54760,observation-6cdc6eed-a624-412d-a289-69064f234319,https://biolit.fr/observations/observation-6cdc6eed-a624-412d-a289-69064f234319/,Echidna catenata,Murène gueule pavée,,https://biolit.fr/wp-content/uploads/2023/07/GOPR3100.JPG,,TRUE, +N1,61153,sortie-29c6c306-e68e-4be3-8729-2d91673feaba,https://biolit.fr/sorties/sortie-29c6c306-e68e-4be3-8729-2d91673feaba/,Centre de Découverte Mer et Montagne,,3/23/2016 0:00,14.0:15,15.0:45,43.692058000000,7.290502000000,,"Plage des bains militaires, Nice",54762,observation-29c6c306-e68e-4be3-8729-2d91673feaba,https://biolit.fr/observations/observation-29c6c306-e68e-4be3-8729-2d91673feaba/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/2016-03-23 Sortie Biolit CDMM Test d'ousin-scaled.jpg,,TRUE, +N1,61153,sortie-29c6c306-e68e-4be3-8729-2d91673feaba,https://biolit.fr/sorties/sortie-29c6c306-e68e-4be3-8729-2d91673feaba/,Centre de Découverte Mer et Montagne,,3/23/2016 0:00,14.0:15,15.0:45,43.692058000000,7.290502000000,,"Plage des bains militaires, Nice",54764,observation-29c6c306-e68e-4be3-8729-2d91673feaba-2,https://biolit.fr/observations/observation-29c6c306-e68e-4be3-8729-2d91673feaba-2/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/2016-03-23 Sortie Biolit CDMM (3)-scaled.jpg,,TRUE, +N1,61153,sortie-29c6c306-e68e-4be3-8729-2d91673feaba,https://biolit.fr/sorties/sortie-29c6c306-e68e-4be3-8729-2d91673feaba/,Centre de Découverte Mer et Montagne,,3/23/2016 0:00,14.0:15,15.0:45,43.692058000000,7.290502000000,,"Plage des bains militaires, Nice",54766,observation-29c6c306-e68e-4be3-8729-2d91673feaba-3,https://biolit.fr/observations/observation-29c6c306-e68e-4be3-8729-2d91673feaba-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/2016-03-23 Sortie Biolit CDMM (6)-scaled.jpg,,FALSE, +N1,61153,sortie-29c6c306-e68e-4be3-8729-2d91673feaba,https://biolit.fr/sorties/sortie-29c6c306-e68e-4be3-8729-2d91673feaba/,Centre de Découverte Mer et Montagne,,3/23/2016 0:00,14.0:15,15.0:45,43.692058000000,7.290502000000,,"Plage des bains militaires, Nice",54768,observation-29c6c306-e68e-4be3-8729-2d91673feaba-4,https://biolit.fr/observations/observation-29c6c306-e68e-4be3-8729-2d91673feaba-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/2016-03-23 Sortie Biolit CDMM (5)-scaled.jpg,,FALSE, +N1,61153,sortie-29c6c306-e68e-4be3-8729-2d91673feaba,https://biolit.fr/sorties/sortie-29c6c306-e68e-4be3-8729-2d91673feaba/,Centre de Découverte Mer et Montagne,,3/23/2016 0:00,14.0:15,15.0:45,43.692058000000,7.290502000000,,"Plage des bains militaires, Nice",54770,observation-29c6c306-e68e-4be3-8729-2d91673feaba-5,https://biolit.fr/observations/observation-29c6c306-e68e-4be3-8729-2d91673feaba-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/2016-03-23 Sortie Biolit CDMM (15)-scaled.jpg,,FALSE, +N1,61153,sortie-29c6c306-e68e-4be3-8729-2d91673feaba,https://biolit.fr/sorties/sortie-29c6c306-e68e-4be3-8729-2d91673feaba/,Centre de Découverte Mer et Montagne,,3/23/2016 0:00,14.0:15,15.0:45,43.692058000000,7.290502000000,,"Plage des bains militaires, Nice",54772,observation-29c6c306-e68e-4be3-8729-2d91673feaba-6,https://biolit.fr/observations/observation-29c6c306-e68e-4be3-8729-2d91673feaba-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/2016-03-23 Sortie Biolit CDMM (17)-scaled.jpg,,FALSE, +N1,61153,sortie-29c6c306-e68e-4be3-8729-2d91673feaba,https://biolit.fr/sorties/sortie-29c6c306-e68e-4be3-8729-2d91673feaba/,Centre de Découverte Mer et Montagne,,3/23/2016 0:00,14.0:15,15.0:45,43.692058000000,7.290502000000,,"Plage des bains militaires, Nice",54774,observation-29c6c306-e68e-4be3-8729-2d91673feaba-7,https://biolit.fr/observations/observation-29c6c306-e68e-4be3-8729-2d91673feaba-7/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/2016-03-23 Sortie Biolit CDMM (20)-scaled.jpg,,TRUE, +N1,61153,sortie-29c6c306-e68e-4be3-8729-2d91673feaba,https://biolit.fr/sorties/sortie-29c6c306-e68e-4be3-8729-2d91673feaba/,Centre de Découverte Mer et Montagne,,3/23/2016 0:00,14.0:15,15.0:45,43.692058000000,7.290502000000,,"Plage des bains militaires, Nice",54776,observation-29c6c306-e68e-4be3-8729-2d91673feaba-8,https://biolit.fr/observations/observation-29c6c306-e68e-4be3-8729-2d91673feaba-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/2016-03-23 Sortie Biolit CDMM (21)-scaled.jpg,,FALSE, +N1,61153,sortie-29c6c306-e68e-4be3-8729-2d91673feaba,https://biolit.fr/sorties/sortie-29c6c306-e68e-4be3-8729-2d91673feaba/,Centre de Découverte Mer et Montagne,,3/23/2016 0:00,14.0:15,15.0:45,43.692058000000,7.290502000000,,"Plage des bains militaires, Nice",54778,observation-29c6c306-e68e-4be3-8729-2d91673feaba-9,https://biolit.fr/observations/observation-29c6c306-e68e-4be3-8729-2d91673feaba-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/2016-03-23 Sortie Biolit CDMM (23)-scaled.jpg,,FALSE, +N1,61153,sortie-29c6c306-e68e-4be3-8729-2d91673feaba,https://biolit.fr/sorties/sortie-29c6c306-e68e-4be3-8729-2d91673feaba/,Centre de Découverte Mer et Montagne,,3/23/2016 0:00,14.0:15,15.0:45,43.692058000000,7.290502000000,,"Plage des bains militaires, Nice",54780,observation-29c6c306-e68e-4be3-8729-2d91673feaba-10,https://biolit.fr/observations/observation-29c6c306-e68e-4be3-8729-2d91673feaba-10/,Halimeda tuna,Monnaie de Poséidon,,https://biolit.fr/wp-content/uploads/2023/07/2016-03-23 Sortie Biolit CDMM Halimeda tuna-scaled.jpg,,TRUE, +N1,61153,sortie-29c6c306-e68e-4be3-8729-2d91673feaba,https://biolit.fr/sorties/sortie-29c6c306-e68e-4be3-8729-2d91673feaba/,Centre de Découverte Mer et Montagne,,3/23/2016 0:00,14.0:15,15.0:45,43.692058000000,7.290502000000,,"Plage des bains militaires, Nice",54782,observation-29c6c306-e68e-4be3-8729-2d91673feaba-11,https://biolit.fr/observations/observation-29c6c306-e68e-4be3-8729-2d91673feaba-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/2016-03-23 Sortie Biolit CDMM Patelles-scaled.jpg,,FALSE, +N1,61154,sortie-d6a32d22-dae9-466f-8fb4-560f6fc2c0a5,https://biolit.fr/sorties/sortie-d6a32d22-dae9-466f-8fb4-560f6fc2c0a5/,Phil,,03/12/2016,14.0000000,14.000005,47.795525000000,-4.183988000000,,Loctudy - Finistère,54784,observation-d6a32d22-dae9-466f-8fb4-560f6fc2c0a5,https://biolit.fr/observations/observation-d6a32d22-dae9-466f-8fb4-560f6fc2c0a5/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1020073-scaled.jpg,,TRUE, +N1,61154,sortie-d6a32d22-dae9-466f-8fb4-560f6fc2c0a5,https://biolit.fr/sorties/sortie-d6a32d22-dae9-466f-8fb4-560f6fc2c0a5/,Phil,,03/12/2016,14.0000000,14.000005,47.795525000000,-4.183988000000,,Loctudy - Finistère,54786,observation-d6a32d22-dae9-466f-8fb4-560f6fc2c0a5-2,https://biolit.fr/observations/observation-d6a32d22-dae9-466f-8fb4-560f6fc2c0a5-2/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/P1020083.JPG,,TRUE, +N1,61154,sortie-d6a32d22-dae9-466f-8fb4-560f6fc2c0a5,https://biolit.fr/sorties/sortie-d6a32d22-dae9-466f-8fb4-560f6fc2c0a5/,Phil,,03/12/2016,14.0000000,14.000005,47.795525000000,-4.183988000000,,Loctudy - Finistère,54788,observation-d6a32d22-dae9-466f-8fb4-560f6fc2c0a5-3,https://biolit.fr/observations/observation-d6a32d22-dae9-466f-8fb4-560f6fc2c0a5-3/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/P1020081.JPG,,TRUE, +N1,61154,sortie-d6a32d22-dae9-466f-8fb4-560f6fc2c0a5,https://biolit.fr/sorties/sortie-d6a32d22-dae9-466f-8fb4-560f6fc2c0a5/,Phil,,03/12/2016,14.0000000,14.000005,47.795525000000,-4.183988000000,,Loctudy - Finistère,54790,observation-d6a32d22-dae9-466f-8fb4-560f6fc2c0a5-4,https://biolit.fr/observations/observation-d6a32d22-dae9-466f-8fb4-560f6fc2c0a5-4/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/P1020085.JPG,,TRUE, +N1,61155,sortie-4308b4a3-aac4-4763-9f84-55c82392f8f4,https://biolit.fr/sorties/sortie-4308b4a3-aac4-4763-9f84-55c82392f8f4/,Phil,,03/12/2016,13.0000000,13.0:55,47.796349000000,-4.184962000000,,Loctudy - Finistère,54792,observation-4308b4a3-aac4-4763-9f84-55c82392f8f4,https://biolit.fr/observations/observation-4308b4a3-aac4-4763-9f84-55c82392f8f4/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/P1020034_1.JPG,,TRUE, +N1,61155,sortie-4308b4a3-aac4-4763-9f84-55c82392f8f4,https://biolit.fr/sorties/sortie-4308b4a3-aac4-4763-9f84-55c82392f8f4/,Phil,,03/12/2016,13.0000000,13.0:55,47.796349000000,-4.184962000000,,Loctudy - Finistère,54794,observation-4308b4a3-aac4-4763-9f84-55c82392f8f4-2,https://biolit.fr/observations/observation-4308b4a3-aac4-4763-9f84-55c82392f8f4-2/,Mesophyllum lichenoides,Mésophylle lichenoïde,,https://biolit.fr/wp-content/uploads/2023/07/P1020037.JPG,,TRUE, +N1,61155,sortie-4308b4a3-aac4-4763-9f84-55c82392f8f4,https://biolit.fr/sorties/sortie-4308b4a3-aac4-4763-9f84-55c82392f8f4/,Phil,,03/12/2016,13.0000000,13.0:55,47.796349000000,-4.184962000000,,Loctudy - Finistère,54796,observation-4308b4a3-aac4-4763-9f84-55c82392f8f4-3,https://biolit.fr/observations/observation-4308b4a3-aac4-4763-9f84-55c82392f8f4-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020039.JPG,,FALSE, +N1,61155,sortie-4308b4a3-aac4-4763-9f84-55c82392f8f4,https://biolit.fr/sorties/sortie-4308b4a3-aac4-4763-9f84-55c82392f8f4/,Phil,,03/12/2016,13.0000000,13.0:55,47.796349000000,-4.184962000000,,Loctudy - Finistère,54798,observation-4308b4a3-aac4-4763-9f84-55c82392f8f4-4,https://biolit.fr/observations/observation-4308b4a3-aac4-4763-9f84-55c82392f8f4-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020041.JPG,,FALSE, +N1,61155,sortie-4308b4a3-aac4-4763-9f84-55c82392f8f4,https://biolit.fr/sorties/sortie-4308b4a3-aac4-4763-9f84-55c82392f8f4/,Phil,,03/12/2016,13.0000000,13.0:55,47.796349000000,-4.184962000000,,Loctudy - Finistère,54800,observation-4308b4a3-aac4-4763-9f84-55c82392f8f4-5,https://biolit.fr/observations/observation-4308b4a3-aac4-4763-9f84-55c82392f8f4-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020043.JPG,,FALSE, +N1,61156,sortie-7b382955-ab37-4445-8fcf-92bd5304c445,https://biolit.fr/sorties/sortie-7b382955-ab37-4445-8fcf-92bd5304c445/,Phil,,3/15/2016 0:00,17.0000000,17.0:55,47.770268000000,-3.607141000000,,Doélan - Finistère,54802,observation-7b382955-ab37-4445-8fcf-92bd5304c445,https://biolit.fr/observations/observation-7b382955-ab37-4445-8fcf-92bd5304c445/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020416.JPG,,FALSE, +N1,61156,sortie-7b382955-ab37-4445-8fcf-92bd5304c445,https://biolit.fr/sorties/sortie-7b382955-ab37-4445-8fcf-92bd5304c445/,Phil,,3/15/2016 0:00,17.0000000,17.0:55,47.770268000000,-3.607141000000,,Doélan - Finistère,54804,observation-7b382955-ab37-4445-8fcf-92bd5304c445-2,https://biolit.fr/observations/observation-7b382955-ab37-4445-8fcf-92bd5304c445-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020418.JPG,,FALSE, +N1,61157,sortie-1d95fe76-ecbe-4a7d-bef2-01862e94474c,https://biolit.fr/sorties/sortie-1d95fe76-ecbe-4a7d-bef2-01862e94474c/,Marine,,03/08/2016,13.0000000,15.0000000,43.419971000000,5.173728000000,,Lido du Jai,54806,observation-1d95fe76-ecbe-4a7d-bef2-01862e94474c,https://biolit.fr/observations/observation-1d95fe76-ecbe-4a7d-bef2-01862e94474c/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1222.JPG,,FALSE, +N1,61157,sortie-1d95fe76-ecbe-4a7d-bef2-01862e94474c,https://biolit.fr/sorties/sortie-1d95fe76-ecbe-4a7d-bef2-01862e94474c/,Marine,,03/08/2016,13.0000000,15.0000000,43.419971000000,5.173728000000,,Lido du Jai,54808,observation-1d95fe76-ecbe-4a7d-bef2-01862e94474c-2,https://biolit.fr/observations/observation-1d95fe76-ecbe-4a7d-bef2-01862e94474c-2/,Cyprinus carpio,Carpe commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1223-rotated.jpg,,TRUE, +N1,61158,sortie-0699fc15-e003-45ea-b308-20e12baed7fc,https://biolit.fr/sorties/sortie-0699fc15-e003-45ea-b308-20e12baed7fc/,Marine,,3/23/2016 0:00,14.0000000,15.0000000,43.239805000000,5.362376000000,,Bain des Dames,54810,observation-0699fc15-e003-45ea-b308-20e12baed7fc,https://biolit.fr/observations/observation-0699fc15-e003-45ea-b308-20e12baed7fc/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1247-scaled.jpg,,FALSE, +N1,61158,sortie-0699fc15-e003-45ea-b308-20e12baed7fc,https://biolit.fr/sorties/sortie-0699fc15-e003-45ea-b308-20e12baed7fc/,Marine,,3/23/2016 0:00,14.0000000,15.0000000,43.239805000000,5.362376000000,,Bain des Dames,54812,observation-0699fc15-e003-45ea-b308-20e12baed7fc-2,https://biolit.fr/observations/observation-0699fc15-e003-45ea-b308-20e12baed7fc-2/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1251-scaled.jpg,,TRUE, +N1,61158,sortie-0699fc15-e003-45ea-b308-20e12baed7fc,https://biolit.fr/sorties/sortie-0699fc15-e003-45ea-b308-20e12baed7fc/,Marine,,3/23/2016 0:00,14.0000000,15.0000000,43.239805000000,5.362376000000,,Bain des Dames,54814,observation-0699fc15-e003-45ea-b308-20e12baed7fc-3,https://biolit.fr/observations/observation-0699fc15-e003-45ea-b308-20e12baed7fc-3/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1252-scaled.jpg,,TRUE, +N1,61158,sortie-0699fc15-e003-45ea-b308-20e12baed7fc,https://biolit.fr/sorties/sortie-0699fc15-e003-45ea-b308-20e12baed7fc/,Marine,,3/23/2016 0:00,14.0000000,15.0000000,43.239805000000,5.362376000000,,Bain des Dames,54816,observation-0699fc15-e003-45ea-b308-20e12baed7fc-4,https://biolit.fr/observations/observation-0699fc15-e003-45ea-b308-20e12baed7fc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1253-scaled.jpg,,FALSE, +N1,61159,sortie-599e7b95-4859-4479-b09d-2bebbca613c8,https://biolit.fr/sorties/sortie-599e7b95-4859-4479-b09d-2bebbca613c8/,Earthforce FS,,3/18/2016 0:00,17.0:45,18.0000000,16.218774000000,-61.17991700000,, Saint François Guadeloupe,54818,observation-599e7b95-4859-4479-b09d-2bebbca613c8,https://biolit.fr/observations/observation-599e7b95-4859-4479-b09d-2bebbca613c8/,,,,https://biolit.fr/wp-content/uploads/2023/07/1003589_981505941884977_3979467826171835284_n.jpg,,FALSE, +N1,61159,sortie-599e7b95-4859-4479-b09d-2bebbca613c8,https://biolit.fr/sorties/sortie-599e7b95-4859-4479-b09d-2bebbca613c8/,Earthforce FS,,3/18/2016 0:00,17.0:45,18.0000000,16.218774000000,-61.17991700000,, Saint François Guadeloupe,54820,observation-599e7b95-4859-4479-b09d-2bebbca613c8-2,https://biolit.fr/observations/observation-599e7b95-4859-4479-b09d-2bebbca613c8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/995383_981506148551623_8677538949889160454_n.jpg,,FALSE, +N1,61160,sortie-127ce248-03e9-46dc-a656-7e2b05f34e30,https://biolit.fr/sorties/sortie-127ce248-03e9-46dc-a656-7e2b05f34e30/,Phil,,3/15/2016 0:00,17.0:45,17.0:55,47.770195000000,-3.60693100000,,Doélan - Finistère,54822,observation-127ce248-03e9-46dc-a656-7e2b05f34e30,https://biolit.fr/observations/observation-127ce248-03e9-46dc-a656-7e2b05f34e30/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1020405.JPG,,TRUE, +N1,61160,sortie-127ce248-03e9-46dc-a656-7e2b05f34e30,https://biolit.fr/sorties/sortie-127ce248-03e9-46dc-a656-7e2b05f34e30/,Phil,,3/15/2016 0:00,17.0:45,17.0:55,47.770195000000,-3.60693100000,,Doélan - Finistère,54824,observation-127ce248-03e9-46dc-a656-7e2b05f34e30-2,https://biolit.fr/observations/observation-127ce248-03e9-46dc-a656-7e2b05f34e30-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1020412.JPG,,TRUE, +N1,61161,sortie-6b73ead6-a49f-4855-aebb-c9230f00f944,https://biolit.fr/sorties/sortie-6b73ead6-a49f-4855-aebb-c9230f00f944/,Phil,,03/06/2016,12.0:25,12.0000000,48.147348000000,-4.272214000000,,Ploeven - Finistère,54826,observation-6b73ead6-a49f-4855-aebb-c9230f00f944,https://biolit.fr/observations/observation-6b73ead6-a49f-4855-aebb-c9230f00f944/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010849.JPG,,FALSE, +N1,61161,sortie-6b73ead6-a49f-4855-aebb-c9230f00f944,https://biolit.fr/sorties/sortie-6b73ead6-a49f-4855-aebb-c9230f00f944/,Phil,,03/06/2016,12.0:25,12.0000000,48.147348000000,-4.272214000000,,Ploeven - Finistère,54828,observation-6b73ead6-a49f-4855-aebb-c9230f00f944-2,https://biolit.fr/observations/observation-6b73ead6-a49f-4855-aebb-c9230f00f944-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010848.JPG,,FALSE, +N1,61162,sortie-e61e4c65-9396-47aa-8415-abc4c6af91c5,https://biolit.fr/sorties/sortie-e61e4c65-9396-47aa-8415-abc4c6af91c5/,Phil,,03/12/2016,13.0000000,13.0:45,47.797215000000,-4.176766000000,,Loctudy - Finistère,54830,observation-e61e4c65-9396-47aa-8415-abc4c6af91c5,https://biolit.fr/observations/observation-e61e4c65-9396-47aa-8415-abc4c6af91c5/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/P1020012.JPG,,TRUE, +N1,61162,sortie-e61e4c65-9396-47aa-8415-abc4c6af91c5,https://biolit.fr/sorties/sortie-e61e4c65-9396-47aa-8415-abc4c6af91c5/,Phil,,03/12/2016,13.0000000,13.0:45,47.797215000000,-4.176766000000,,Loctudy - Finistère,54832,observation-e61e4c65-9396-47aa-8415-abc4c6af91c5-2,https://biolit.fr/observations/observation-e61e4c65-9396-47aa-8415-abc4c6af91c5-2/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1020022.JPG,,TRUE, +N1,61162,sortie-e61e4c65-9396-47aa-8415-abc4c6af91c5,https://biolit.fr/sorties/sortie-e61e4c65-9396-47aa-8415-abc4c6af91c5/,Phil,,03/12/2016,13.0000000,13.0:45,47.797215000000,-4.176766000000,,Loctudy - Finistère,54834,observation-e61e4c65-9396-47aa-8415-abc4c6af91c5-3,https://biolit.fr/observations/observation-e61e4c65-9396-47aa-8415-abc4c6af91c5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020008.JPG,,FALSE, +N1,61162,sortie-e61e4c65-9396-47aa-8415-abc4c6af91c5,https://biolit.fr/sorties/sortie-e61e4c65-9396-47aa-8415-abc4c6af91c5/,Phil,,03/12/2016,13.0000000,13.0:45,47.797215000000,-4.176766000000,,Loctudy - Finistère,54836,observation-e61e4c65-9396-47aa-8415-abc4c6af91c5-4,https://biolit.fr/observations/observation-e61e4c65-9396-47aa-8415-abc4c6af91c5-4/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1020011.JPG,,TRUE, +N1,61163,sortie-fda5ffad-596c-4311-aa1a-3a51fded0d85,https://biolit.fr/sorties/sortie-fda5ffad-596c-4311-aa1a-3a51fded0d85/,Phil,,3/25/2016 0:00,12.0000000,12.0:35,47.872801000000,-3.909368000000,,Concarneau - Finistère,54838,observation-fda5ffad-596c-4311-aa1a-3a51fded0d85,https://biolit.fr/observations/observation-fda5ffad-596c-4311-aa1a-3a51fded0d85/,Gadus morhua,Morue franche,,https://biolit.fr/wp-content/uploads/2023/07/20160325_123431.jpg,,TRUE, +N1,61163,sortie-fda5ffad-596c-4311-aa1a-3a51fded0d85,https://biolit.fr/sorties/sortie-fda5ffad-596c-4311-aa1a-3a51fded0d85/,Phil,,3/25/2016 0:00,12.0000000,12.0:35,47.872801000000,-3.909368000000,,Concarneau - Finistère,54840,observation-fda5ffad-596c-4311-aa1a-3a51fded0d85-2,https://biolit.fr/observations/observation-fda5ffad-596c-4311-aa1a-3a51fded0d85-2/,Gadus morhua,Morue franche,,https://biolit.fr/wp-content/uploads/2023/07/20160325_123503.jpg,,TRUE, +N1,61163,sortie-fda5ffad-596c-4311-aa1a-3a51fded0d85,https://biolit.fr/sorties/sortie-fda5ffad-596c-4311-aa1a-3a51fded0d85/,Phil,,3/25/2016 0:00,12.0000000,12.0:35,47.872801000000,-3.909368000000,,Concarneau - Finistère,54842,observation-fda5ffad-596c-4311-aa1a-3a51fded0d85-3,https://biolit.fr/observations/observation-fda5ffad-596c-4311-aa1a-3a51fded0d85-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160325_123442.jpg,,FALSE, +N1,61163,sortie-fda5ffad-596c-4311-aa1a-3a51fded0d85,https://biolit.fr/sorties/sortie-fda5ffad-596c-4311-aa1a-3a51fded0d85/,Phil,,3/25/2016 0:00,12.0000000,12.0:35,47.872801000000,-3.909368000000,,Concarneau - Finistère,54844,observation-fda5ffad-596c-4311-aa1a-3a51fded0d85-4,https://biolit.fr/observations/observation-fda5ffad-596c-4311-aa1a-3a51fded0d85-4/,Microstomus kitt,Limande-sole,,https://biolit.fr/wp-content/uploads/2023/07/20160325_123409.jpg,,TRUE, +N1,61163,sortie-fda5ffad-596c-4311-aa1a-3a51fded0d85,https://biolit.fr/sorties/sortie-fda5ffad-596c-4311-aa1a-3a51fded0d85/,Phil,,3/25/2016 0:00,12.0000000,12.0:35,47.872801000000,-3.909368000000,,Concarneau - Finistère,54846,observation-fda5ffad-596c-4311-aa1a-3a51fded0d85-5,https://biolit.fr/observations/observation-fda5ffad-596c-4311-aa1a-3a51fded0d85-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160325_123530.jpg,,FALSE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54848,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/2023/07/P1060678-scaled.jpg,,TRUE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54850,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-2,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-2/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/2023/07/P1060683-scaled.jpg,,TRUE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54852,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-3,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-3/,Pagurus anachoretus,Pagure anachorète,,https://biolit.fr/wp-content/uploads/2023/07/Bernard l'ermite pagure multicolore_ Pagurus anachoretus-scaled.jpg,,TRUE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54854,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-4,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-4/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/Oursin noir_Arbacia lixula bouche-scaled.jpg,,TRUE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54856,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-5,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-5/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/Oursin noir_Arbacia lixula dos-scaled.jpg,,TRUE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54858,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-6,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-6/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Astérie bossue_Asterina gibbosa-scaled.jpg,,TRUE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54860,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-7,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Holothurie tubuleuse_Holothuria ventre-scaled.jpg,,FALSE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54862,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-8,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Holothurie tubuleuse_Holothuria _dos-scaled.jpg,,FALSE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54864,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-9,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-9/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/Cérithe commun_ Cerithium vulgatum_exterieur-scaled.jpg,,TRUE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54866,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-10,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-10/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/Cérithe commun_ Cerithium vulgatum_interieur-scaled.jpg,,TRUE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54868,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-11,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-11/,Pecten jacobaeus,Coquille Saint-Jacques de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/peigne Pecten maximuinterne-scaled.jpg,,TRUE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54870,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-12,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-12/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/Patelle_ Patella caerulea_exterieur-scaled.jpg,,TRUE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54872,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-13,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-13/,Pecten jacobaeus,Coquille Saint-Jacques de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/peigne Pecten maximus_exterieur-scaled.jpg,,TRUE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54874,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-14,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-14/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/Patelle_ Patella caerulea_interieur-scaled.jpg,,TRUE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54876,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-15,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-15/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/Béret basque_ Codium bursa-scaled.jpg,,TRUE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54878,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-16,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-16/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/2023/07/Poulpe commun_Octopus vulgaris-scaled.jpg,,TRUE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54880,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-17,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-17/,Sabella spallanzanii,Spirographe,,https://biolit.fr/wp-content/uploads/2023/07/spirographe_Sabella spallanzanii-scaled.jpg,,TRUE, +N1,61164,sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732,https://biolit.fr/sorties/sortie-90ab3153-f7b1-4891-aa9d-392f14d5a732/,Ville de Marseille Ecole Sinoncelli CM2A,,03/10/2016,10.0:15,11.0000000,43.266441000000,5.371407000000,,Base nautique Roucas Blanc 13008 Marseille,54882,observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-18,https://biolit.fr/observations/observation-90ab3153-f7b1-4891-aa9d-392f14d5a732-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/pelure d'ognion_Anomia ephippium exterieur-scaled.jpg,,FALSE, +N1,61165,sortie-4aaf782e-ba00-4fba-aa44-9f393b4cc90d,https://biolit.fr/sorties/sortie-4aaf782e-ba00-4fba-aa44-9f393b4cc90d/,Phil,,3/15/2016 0:00,17.0:35,17.0:45,47.770090000000,-3.606479000000,,Doélan - Finistère,54884,observation-4aaf782e-ba00-4fba-aa44-9f393b4cc90d,https://biolit.fr/observations/observation-4aaf782e-ba00-4fba-aa44-9f393b4cc90d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020400.JPG,,FALSE, +N1,61165,sortie-4aaf782e-ba00-4fba-aa44-9f393b4cc90d,https://biolit.fr/sorties/sortie-4aaf782e-ba00-4fba-aa44-9f393b4cc90d/,Phil,,3/15/2016 0:00,17.0:35,17.0:45,47.770090000000,-3.606479000000,,Doélan - Finistère,54886,observation-4aaf782e-ba00-4fba-aa44-9f393b4cc90d-2,https://biolit.fr/observations/observation-4aaf782e-ba00-4fba-aa44-9f393b4cc90d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020408.JPG,,FALSE, +N1,61166,sortie-4395a956-2862-4e81-ae07-a636e38bfb1d,https://biolit.fr/sorties/sortie-4395a956-2862-4e81-ae07-a636e38bfb1d/,Phil,,1/24/2016 0:00,17.000005,17.0:15,47.792172000000,-4.241881000000,,Léchiagat - Finistère,54888,observation-4395a956-2862-4e81-ae07-a636e38bfb1d,https://biolit.fr/observations/observation-4395a956-2862-4e81-ae07-a636e38bfb1d/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160124_171056.jpg,,FALSE, +N1,61166,sortie-4395a956-2862-4e81-ae07-a636e38bfb1d,https://biolit.fr/sorties/sortie-4395a956-2862-4e81-ae07-a636e38bfb1d/,Phil,,1/24/2016 0:00,17.000005,17.0:15,47.792172000000,-4.241881000000,,Léchiagat - Finistère,54890,observation-4395a956-2862-4e81-ae07-a636e38bfb1d-2,https://biolit.fr/observations/observation-4395a956-2862-4e81-ae07-a636e38bfb1d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160124_175426.jpg,,FALSE, +N1,61166,sortie-4395a956-2862-4e81-ae07-a636e38bfb1d,https://biolit.fr/sorties/sortie-4395a956-2862-4e81-ae07-a636e38bfb1d/,Phil,,1/24/2016 0:00,17.000005,17.0:15,47.792172000000,-4.241881000000,,Léchiagat - Finistère,54892,observation-4395a956-2862-4e81-ae07-a636e38bfb1d-3,https://biolit.fr/observations/observation-4395a956-2862-4e81-ae07-a636e38bfb1d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160124_170545.jpg,,FALSE, +N1,61167,sortie-4141e5fc-6b82-44fb-9c64-1313cae15cd4,https://biolit.fr/sorties/sortie-4141e5fc-6b82-44fb-9c64-1313cae15cd4/,Phil,,03/12/2016,13.0:55,14.000005,47.79690600000,-4.183259000000,,Loctudy - Finistère,54894,observation-4141e5fc-6b82-44fb-9c64-1313cae15cd4,https://biolit.fr/observations/observation-4141e5fc-6b82-44fb-9c64-1313cae15cd4/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/P1020057.JPG,,TRUE, +N1,61167,sortie-4141e5fc-6b82-44fb-9c64-1313cae15cd4,https://biolit.fr/sorties/sortie-4141e5fc-6b82-44fb-9c64-1313cae15cd4/,Phil,,03/12/2016,13.0:55,14.000005,47.79690600000,-4.183259000000,,Loctudy - Finistère,54896,observation-4141e5fc-6b82-44fb-9c64-1313cae15cd4-2,https://biolit.fr/observations/observation-4141e5fc-6b82-44fb-9c64-1313cae15cd4-2/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/P1020052.JPG,,TRUE, +N1,61167,sortie-4141e5fc-6b82-44fb-9c64-1313cae15cd4,https://biolit.fr/sorties/sortie-4141e5fc-6b82-44fb-9c64-1313cae15cd4/,Phil,,03/12/2016,13.0:55,14.000005,47.79690600000,-4.183259000000,,Loctudy - Finistère,54898,observation-4141e5fc-6b82-44fb-9c64-1313cae15cd4-3,https://biolit.fr/observations/observation-4141e5fc-6b82-44fb-9c64-1313cae15cd4-3/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1020064.JPG,,TRUE, +N1,61167,sortie-4141e5fc-6b82-44fb-9c64-1313cae15cd4,https://biolit.fr/sorties/sortie-4141e5fc-6b82-44fb-9c64-1313cae15cd4/,Phil,,03/12/2016,13.0:55,14.000005,47.79690600000,-4.183259000000,,Loctudy - Finistère,54900,observation-4141e5fc-6b82-44fb-9c64-1313cae15cd4-4,https://biolit.fr/observations/observation-4141e5fc-6b82-44fb-9c64-1313cae15cd4-4/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/P1020058.JPG,,TRUE, +N1,61167,sortie-4141e5fc-6b82-44fb-9c64-1313cae15cd4,https://biolit.fr/sorties/sortie-4141e5fc-6b82-44fb-9c64-1313cae15cd4/,Phil,,03/12/2016,13.0:55,14.000005,47.79690600000,-4.183259000000,,Loctudy - Finistère,54902,observation-4141e5fc-6b82-44fb-9c64-1313cae15cd4-5,https://biolit.fr/observations/observation-4141e5fc-6b82-44fb-9c64-1313cae15cd4-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020066.JPG,,FALSE, +N1,61167,sortie-4141e5fc-6b82-44fb-9c64-1313cae15cd4,https://biolit.fr/sorties/sortie-4141e5fc-6b82-44fb-9c64-1313cae15cd4/,Phil,,03/12/2016,13.0:55,14.000005,47.79690600000,-4.183259000000,,Loctudy - Finistère,54904,observation-4141e5fc-6b82-44fb-9c64-1313cae15cd4-6,https://biolit.fr/observations/observation-4141e5fc-6b82-44fb-9c64-1313cae15cd4-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020070.JPG,,FALSE, +N1,61168,sortie-a2adebfe-b255-4581-b1fa-07628a06f2b8,https://biolit.fr/sorties/sortie-a2adebfe-b255-4581-b1fa-07628a06f2b8/,Phil,,3/15/2016 0:00,17.0000000,17.0:25,47.770127000000,-3.607141000000,,Doélan - Finistère,54906,observation-a2adebfe-b255-4581-b1fa-07628a06f2b8,https://biolit.fr/observations/observation-a2adebfe-b255-4581-b1fa-07628a06f2b8/,Bifurcaria bifurcata,Bifurcaire,,https://biolit.fr/wp-content/uploads/2023/07/P1020369.JPG,,TRUE, +N1,61168,sortie-a2adebfe-b255-4581-b1fa-07628a06f2b8,https://biolit.fr/sorties/sortie-a2adebfe-b255-4581-b1fa-07628a06f2b8/,Phil,,3/15/2016 0:00,17.0000000,17.0:25,47.770127000000,-3.607141000000,,Doélan - Finistère,54908,observation-a2adebfe-b255-4581-b1fa-07628a06f2b8-2,https://biolit.fr/observations/observation-a2adebfe-b255-4581-b1fa-07628a06f2b8-2/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1020368.JPG,,TRUE, +N1,61168,sortie-a2adebfe-b255-4581-b1fa-07628a06f2b8,https://biolit.fr/sorties/sortie-a2adebfe-b255-4581-b1fa-07628a06f2b8/,Phil,,3/15/2016 0:00,17.0000000,17.0:25,47.770127000000,-3.607141000000,,Doélan - Finistère,54910,observation-a2adebfe-b255-4581-b1fa-07628a06f2b8-3,https://biolit.fr/observations/observation-a2adebfe-b255-4581-b1fa-07628a06f2b8-3/,Bifurcaria bifurcata,Bifurcaire,,https://biolit.fr/wp-content/uploads/2023/07/P1020370.JPG,,TRUE, +N1,61169,sortie-1d8dfb00-63b4-44e3-94c2-3f09707028bb,https://biolit.fr/sorties/sortie-1d8dfb00-63b4-44e3-94c2-3f09707028bb/,Phil,,03/12/2016,13.0000000,13.0000000,47.796531000000,-4.180924000000,,Loctudy - Finistère,54912,observation-1d8dfb00-63b4-44e3-94c2-3f09707028bb,https://biolit.fr/observations/observation-1d8dfb00-63b4-44e3-94c2-3f09707028bb/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020024.JPG,,FALSE, +N1,61169,sortie-1d8dfb00-63b4-44e3-94c2-3f09707028bb,https://biolit.fr/sorties/sortie-1d8dfb00-63b4-44e3-94c2-3f09707028bb/,Phil,,03/12/2016,13.0000000,13.0000000,47.796531000000,-4.180924000000,,Loctudy - Finistère,54914,observation-1d8dfb00-63b4-44e3-94c2-3f09707028bb-2,https://biolit.fr/observations/observation-1d8dfb00-63b4-44e3-94c2-3f09707028bb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020029.JPG,,FALSE, +N1,61170,sortie-bcdaa3cc-371c-4fbc-95f7-72139ff51fe8,https://biolit.fr/sorties/sortie-bcdaa3cc-371c-4fbc-95f7-72139ff51fe8/,Ecole de la mer,,3/22/2016 0:00,10.0:35,10.0:45,16.223472000000,-61.526931000000,,Marina du Gosier,54916,observation-bcdaa3cc-371c-4fbc-95f7-72139ff51fe8,https://biolit.fr/observations/observation-bcdaa3cc-371c-4fbc-95f7-72139ff51fe8/,,,,https://biolit.fr/wp-content/uploads/2023/07/GOPR1977.JPG,,FALSE, +N1,61170,sortie-bcdaa3cc-371c-4fbc-95f7-72139ff51fe8,https://biolit.fr/sorties/sortie-bcdaa3cc-371c-4fbc-95f7-72139ff51fe8/,Ecole de la mer,,3/22/2016 0:00,10.0:35,10.0:45,16.223472000000,-61.526931000000,,Marina du Gosier,54918,observation-bcdaa3cc-371c-4fbc-95f7-72139ff51fe8-2,https://biolit.fr/observations/observation-bcdaa3cc-371c-4fbc-95f7-72139ff51fe8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/GOPR1980.JPG,,FALSE, +N1,61171,sortie-6772e9b4-81df-47fd-8b11-4fef5cb565c2,https://biolit.fr/sorties/sortie-6772e9b4-81df-47fd-8b11-4fef5cb565c2/,Phil,,03/12/2016,13.0000000,13.0:45,47.797671000000,-4.181775000000,,Loctudy - Finistère,54920,observation-6772e9b4-81df-47fd-8b11-4fef5cb565c2,https://biolit.fr/observations/observation-6772e9b4-81df-47fd-8b11-4fef5cb565c2/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1010999.JPG,,TRUE, +N1,61171,sortie-6772e9b4-81df-47fd-8b11-4fef5cb565c2,https://biolit.fr/sorties/sortie-6772e9b4-81df-47fd-8b11-4fef5cb565c2/,Phil,,03/12/2016,13.0000000,13.0:45,47.797671000000,-4.181775000000,,Loctudy - Finistère,54922,observation-6772e9b4-81df-47fd-8b11-4fef5cb565c2-2,https://biolit.fr/observations/observation-6772e9b4-81df-47fd-8b11-4fef5cb565c2-2/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1020003.JPG,,TRUE, +N1,61171,sortie-6772e9b4-81df-47fd-8b11-4fef5cb565c2,https://biolit.fr/sorties/sortie-6772e9b4-81df-47fd-8b11-4fef5cb565c2/,Phil,,03/12/2016,13.0000000,13.0:45,47.797671000000,-4.181775000000,,Loctudy - Finistère,54924,observation-6772e9b4-81df-47fd-8b11-4fef5cb565c2-3,https://biolit.fr/observations/observation-6772e9b4-81df-47fd-8b11-4fef5cb565c2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020002.JPG,,FALSE, +N1,61172,sortie-5f199618-3a49-4779-b824-c98b57de0b68,https://biolit.fr/sorties/sortie-5f199618-3a49-4779-b824-c98b57de0b68/,Phil,,3/15/2016 0:00,17.0:15,17.0000000,47.770327000000,-3.607473000000,,Doélan - Finistère,54926,observation-5f199618-3a49-4779-b824-c98b57de0b68,https://biolit.fr/observations/observation-5f199618-3a49-4779-b824-c98b57de0b68/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020352.JPG,,FALSE, +N1,61172,sortie-5f199618-3a49-4779-b824-c98b57de0b68,https://biolit.fr/sorties/sortie-5f199618-3a49-4779-b824-c98b57de0b68/,Phil,,3/15/2016 0:00,17.0:15,17.0000000,47.770327000000,-3.607473000000,,Doélan - Finistère,54928,observation-5f199618-3a49-4779-b824-c98b57de0b68-2,https://biolit.fr/observations/observation-5f199618-3a49-4779-b824-c98b57de0b68-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020353.JPG,,FALSE, +N1,61173,sortie-374a09e4-565c-4fbb-8d55-acf29d2a410f,https://biolit.fr/sorties/sortie-374a09e4-565c-4fbb-8d55-acf29d2a410f/,Phil,,3/14/2016 0:00,16.0:25,16.0000000,47.791434000000,-4.317155000000,,Penmarc'h - Finistère,54930,observation-374a09e4-565c-4fbb-8d55-acf29d2a410f,https://biolit.fr/observations/observation-374a09e4-565c-4fbb-8d55-acf29d2a410f/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020310.JPG,,FALSE, +N1,61173,sortie-374a09e4-565c-4fbb-8d55-acf29d2a410f,https://biolit.fr/sorties/sortie-374a09e4-565c-4fbb-8d55-acf29d2a410f/,Phil,,3/14/2016 0:00,16.0:25,16.0000000,47.791434000000,-4.317155000000,,Penmarc'h - Finistère,54932,observation-374a09e4-565c-4fbb-8d55-acf29d2a410f-2,https://biolit.fr/observations/observation-374a09e4-565c-4fbb-8d55-acf29d2a410f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020296.JPG,,FALSE, +N1,61174,sortie-b43c9de0-8f92-4c93-b366-b006055070c2,https://biolit.fr/sorties/sortie-b43c9de0-8f92-4c93-b366-b006055070c2/,Phil,,3/13/2016 0:00,16.0:45,16.0000000,47.893975000000,-3.970278000000,,La Forêt-Fouesnant - Finistère,54934,observation-b43c9de0-8f92-4c93-b366-b006055070c2,https://biolit.fr/observations/observation-b43c9de0-8f92-4c93-b366-b006055070c2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020192.JPG,,FALSE, +N1,61175,sortie-5e697d7a-eb9e-4714-9f23-76a67fabeedc,https://biolit.fr/sorties/sortie-5e697d7a-eb9e-4714-9f23-76a67fabeedc/,alexclement,,3/21/2016 0:00,11.0000000,13.0000000,43.423148000000,5.177909000000,,lido du jai marignane,54936,observation-5e697d7a-eb9e-4714-9f23-76a67fabeedc,https://biolit.fr/observations/observation-5e697d7a-eb9e-4714-9f23-76a67fabeedc/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160308_133118-scaled.jpg,,FALSE, +N1,61175,sortie-5e697d7a-eb9e-4714-9f23-76a67fabeedc,https://biolit.fr/sorties/sortie-5e697d7a-eb9e-4714-9f23-76a67fabeedc/,alexclement,,3/21/2016 0:00,11.0000000,13.0000000,43.423148000000,5.177909000000,,lido du jai marignane,54938,observation-5e697d7a-eb9e-4714-9f23-76a67fabeedc-2,https://biolit.fr/observations/observation-5e697d7a-eb9e-4714-9f23-76a67fabeedc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160308_133126-scaled.jpg,,FALSE, +N1,61175,sortie-5e697d7a-eb9e-4714-9f23-76a67fabeedc,https://biolit.fr/sorties/sortie-5e697d7a-eb9e-4714-9f23-76a67fabeedc/,alexclement,,3/21/2016 0:00,11.0000000,13.0000000,43.423148000000,5.177909000000,,lido du jai marignane,54940,observation-5e697d7a-eb9e-4714-9f23-76a67fabeedc-3,https://biolit.fr/observations/observation-5e697d7a-eb9e-4714-9f23-76a67fabeedc-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160308_134414-scaled.jpg,,FALSE, +N1,61175,sortie-5e697d7a-eb9e-4714-9f23-76a67fabeedc,https://biolit.fr/sorties/sortie-5e697d7a-eb9e-4714-9f23-76a67fabeedc/,alexclement,,3/21/2016 0:00,11.0000000,13.0000000,43.423148000000,5.177909000000,,lido du jai marignane,54942,observation-5e697d7a-eb9e-4714-9f23-76a67fabeedc-4,https://biolit.fr/observations/observation-5e697d7a-eb9e-4714-9f23-76a67fabeedc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160308_140623-scaled.jpg,,FALSE, +N1,61176,sortie-79f0eb76-439f-41e3-bae9-74e610a6b5ed,https://biolit.fr/sorties/sortie-79f0eb76-439f-41e3-bae9-74e610a6b5ed/,Paul M,,3/21/2016 0:00,11.0000000,13.0000000,43.416122000000,5.167441000000,,lido du jai,54944,observation-79f0eb76-439f-41e3-bae9-74e610a6b5ed,https://biolit.fr/observations/observation-79f0eb76-439f-41e3-bae9-74e610a6b5ed/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1110927-scaled.jpg,,FALSE, +N1,61177,sortie-fece64cd-d864-4cef-bc8f-cf700c3fc589,https://biolit.fr/sorties/sortie-fece64cd-d864-4cef-bc8f-cf700c3fc589/,Paul M,,03/08/2016,14.0000000,15.0000000,43.424405000000,5.179380000000,,Lido du JaÏ - Marignane (13),54946,observation-fece64cd-d864-4cef-bc8f-cf700c3fc589,https://biolit.fr/observations/observation-fece64cd-d864-4cef-bc8f-cf700c3fc589/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/2023/07/P1110920-scaled.jpg,,TRUE, +N1,61178,sortie-6774d0b2-704c-48f7-9639-9ff267f13501,https://biolit.fr/sorties/sortie-6774d0b2-704c-48f7-9639-9ff267f13501/,Phil,,3/14/2016 0:00,16.0000000,16.0:25,47.791217000000,-4.308552000000,,Penmarc'h - Finistère,54948,observation-6774d0b2-704c-48f7-9639-9ff267f13501,https://biolit.fr/observations/observation-6774d0b2-704c-48f7-9639-9ff267f13501/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020293.JPG,,FALSE, +N1,61178,sortie-6774d0b2-704c-48f7-9639-9ff267f13501,https://biolit.fr/sorties/sortie-6774d0b2-704c-48f7-9639-9ff267f13501/,Phil,,3/14/2016 0:00,16.0000000,16.0:25,47.791217000000,-4.308552000000,,Penmarc'h - Finistère,54950,observation-6774d0b2-704c-48f7-9639-9ff267f13501-2,https://biolit.fr/observations/observation-6774d0b2-704c-48f7-9639-9ff267f13501-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020280.JPG,,FALSE, +N1,61178,sortie-6774d0b2-704c-48f7-9639-9ff267f13501,https://biolit.fr/sorties/sortie-6774d0b2-704c-48f7-9639-9ff267f13501/,Phil,,3/14/2016 0:00,16.0000000,16.0:25,47.791217000000,-4.308552000000,,Penmarc'h - Finistère,54952,observation-6774d0b2-704c-48f7-9639-9ff267f13501-3,https://biolit.fr/observations/observation-6774d0b2-704c-48f7-9639-9ff267f13501-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020285.JPG,,FALSE, +N1,61179,sortie-4eabad4f-40ca-49e7-af4c-3de3978a9dd2,https://biolit.fr/sorties/sortie-4eabad4f-40ca-49e7-af4c-3de3978a9dd2/,Phil,,03/12/2016,13.0000000,13.0000000,47.800313000000,-4.164204000000,,Loctudy - Finistère,54954,observation-4eabad4f-40ca-49e7-af4c-3de3978a9dd2,https://biolit.fr/observations/observation-4eabad4f-40ca-49e7-af4c-3de3978a9dd2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010973.JPG,,FALSE, +N1,61179,sortie-4eabad4f-40ca-49e7-af4c-3de3978a9dd2,https://biolit.fr/sorties/sortie-4eabad4f-40ca-49e7-af4c-3de3978a9dd2/,Phil,,03/12/2016,13.0000000,13.0000000,47.800313000000,-4.164204000000,,Loctudy - Finistère,54956,observation-4eabad4f-40ca-49e7-af4c-3de3978a9dd2-2,https://biolit.fr/observations/observation-4eabad4f-40ca-49e7-af4c-3de3978a9dd2-2/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1010977.JPG,,TRUE, +N1,61179,sortie-4eabad4f-40ca-49e7-af4c-3de3978a9dd2,https://biolit.fr/sorties/sortie-4eabad4f-40ca-49e7-af4c-3de3978a9dd2/,Phil,,03/12/2016,13.0000000,13.0000000,47.800313000000,-4.164204000000,,Loctudy - Finistère,54958,observation-4eabad4f-40ca-49e7-af4c-3de3978a9dd2-3,https://biolit.fr/observations/observation-4eabad4f-40ca-49e7-af4c-3de3978a9dd2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010982.JPG,,FALSE, +N1,61179,sortie-4eabad4f-40ca-49e7-af4c-3de3978a9dd2,https://biolit.fr/sorties/sortie-4eabad4f-40ca-49e7-af4c-3de3978a9dd2/,Phil,,03/12/2016,13.0000000,13.0000000,47.800313000000,-4.164204000000,,Loctudy - Finistère,54960,observation-4eabad4f-40ca-49e7-af4c-3de3978a9dd2-4,https://biolit.fr/observations/observation-4eabad4f-40ca-49e7-af4c-3de3978a9dd2-4/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1010990.JPG,,TRUE, +N1,61179,sortie-4eabad4f-40ca-49e7-af4c-3de3978a9dd2,https://biolit.fr/sorties/sortie-4eabad4f-40ca-49e7-af4c-3de3978a9dd2/,Phil,,03/12/2016,13.0000000,13.0000000,47.800313000000,-4.164204000000,,Loctudy - Finistère,54962,observation-4eabad4f-40ca-49e7-af4c-3de3978a9dd2-5,https://biolit.fr/observations/observation-4eabad4f-40ca-49e7-af4c-3de3978a9dd2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010992.JPG,,FALSE, +N1,61179,sortie-4eabad4f-40ca-49e7-af4c-3de3978a9dd2,https://biolit.fr/sorties/sortie-4eabad4f-40ca-49e7-af4c-3de3978a9dd2/,Phil,,03/12/2016,13.0000000,13.0000000,47.800313000000,-4.164204000000,,Loctudy - Finistère,54964,observation-4eabad4f-40ca-49e7-af4c-3de3978a9dd2-6,https://biolit.fr/observations/observation-4eabad4f-40ca-49e7-af4c-3de3978a9dd2-6/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1010972.JPG,,TRUE, +N1,61180,sortie-c4648879-fd88-46c0-8c16-6074917af032,https://biolit.fr/sorties/sortie-c4648879-fd88-46c0-8c16-6074917af032/,Phil,,03/12/2016,13.0:15,13.0:25,47.802354000000,-4.171157000000,,Loctudy - Finistère,54966,observation-c4648879-fd88-46c0-8c16-6074917af032,https://biolit.fr/observations/observation-c4648879-fd88-46c0-8c16-6074917af032/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010915.JPG,,FALSE, +N1,61180,sortie-c4648879-fd88-46c0-8c16-6074917af032,https://biolit.fr/sorties/sortie-c4648879-fd88-46c0-8c16-6074917af032/,Phil,,03/12/2016,13.0:15,13.0:25,47.802354000000,-4.171157000000,,Loctudy - Finistère,54968,observation-c4648879-fd88-46c0-8c16-6074917af032-2,https://biolit.fr/observations/observation-c4648879-fd88-46c0-8c16-6074917af032-2/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1010924.JPG,,TRUE, +N1,61180,sortie-c4648879-fd88-46c0-8c16-6074917af032,https://biolit.fr/sorties/sortie-c4648879-fd88-46c0-8c16-6074917af032/,Phil,,03/12/2016,13.0:15,13.0:25,47.802354000000,-4.171157000000,,Loctudy - Finistère,54970,observation-c4648879-fd88-46c0-8c16-6074917af032-3,https://biolit.fr/observations/observation-c4648879-fd88-46c0-8c16-6074917af032-3/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1010928.JPG,,TRUE, +N1,61180,sortie-c4648879-fd88-46c0-8c16-6074917af032,https://biolit.fr/sorties/sortie-c4648879-fd88-46c0-8c16-6074917af032/,Phil,,03/12/2016,13.0:15,13.0:25,47.802354000000,-4.171157000000,,Loctudy - Finistère,54972,observation-c4648879-fd88-46c0-8c16-6074917af032-4,https://biolit.fr/observations/observation-c4648879-fd88-46c0-8c16-6074917af032-4/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1010932.JPG,,TRUE, +N1,61180,sortie-c4648879-fd88-46c0-8c16-6074917af032,https://biolit.fr/sorties/sortie-c4648879-fd88-46c0-8c16-6074917af032/,Phil,,03/12/2016,13.0:15,13.0:25,47.802354000000,-4.171157000000,,Loctudy - Finistère,54974,observation-c4648879-fd88-46c0-8c16-6074917af032-5,https://biolit.fr/observations/observation-c4648879-fd88-46c0-8c16-6074917af032-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1010933.JPG,,TRUE, +N1,61180,sortie-c4648879-fd88-46c0-8c16-6074917af032,https://biolit.fr/sorties/sortie-c4648879-fd88-46c0-8c16-6074917af032/,Phil,,03/12/2016,13.0:15,13.0:25,47.802354000000,-4.171157000000,,Loctudy - Finistère,54976,observation-c4648879-fd88-46c0-8c16-6074917af032-6,https://biolit.fr/observations/observation-c4648879-fd88-46c0-8c16-6074917af032-6/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/P1010936.JPG,,TRUE, +N1,61181,sortie-237e072f-c5a0-4aa4-90bf-350d658c43ce,https://biolit.fr/sorties/sortie-237e072f-c5a0-4aa4-90bf-350d658c43ce/,Phil,,3/13/2016 0:00,16.0:25,16.0000000,47.895480000000,-3.97437700000,,La Forêt-Fouesnant - Finistère,54978,observation-237e072f-c5a0-4aa4-90bf-350d658c43ce,https://biolit.fr/observations/observation-237e072f-c5a0-4aa4-90bf-350d658c43ce/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020179.JPG,,FALSE, +N1,61181,sortie-237e072f-c5a0-4aa4-90bf-350d658c43ce,https://biolit.fr/sorties/sortie-237e072f-c5a0-4aa4-90bf-350d658c43ce/,Phil,,3/13/2016 0:00,16.0:25,16.0000000,47.895480000000,-3.97437700000,,La Forêt-Fouesnant - Finistère,54980,observation-237e072f-c5a0-4aa4-90bf-350d658c43ce-2,https://biolit.fr/observations/observation-237e072f-c5a0-4aa4-90bf-350d658c43ce-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020180.JPG,,FALSE, +N1,61181,sortie-237e072f-c5a0-4aa4-90bf-350d658c43ce,https://biolit.fr/sorties/sortie-237e072f-c5a0-4aa4-90bf-350d658c43ce/,Phil,,3/13/2016 0:00,16.0:25,16.0000000,47.895480000000,-3.97437700000,,La Forêt-Fouesnant - Finistère,54982,observation-237e072f-c5a0-4aa4-90bf-350d658c43ce-3,https://biolit.fr/observations/observation-237e072f-c5a0-4aa4-90bf-350d658c43ce-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020186.JPG,,FALSE, +N1,61182,sortie-fa693f9f-b175-4e29-85ab-3f9b0879191e,https://biolit.fr/sorties/sortie-fa693f9f-b175-4e29-85ab-3f9b0879191e/,Phil,,3/14/2016 0:00,15.0:55,16.0000000,47.791699000000,-4.318442000000,,Penmarc'h - Finistère,54984,observation-fa693f9f-b175-4e29-85ab-3f9b0879191e,https://biolit.fr/observations/observation-fa693f9f-b175-4e29-85ab-3f9b0879191e/,Anthopleura ballii,Anémone à points rouges,,https://biolit.fr/wp-content/uploads/2023/07/P1020270.JPG,,TRUE, +N1,61182,sortie-fa693f9f-b175-4e29-85ab-3f9b0879191e,https://biolit.fr/sorties/sortie-fa693f9f-b175-4e29-85ab-3f9b0879191e/,Phil,,3/14/2016 0:00,15.0:55,16.0000000,47.791699000000,-4.318442000000,,Penmarc'h - Finistère,54986,observation-fa693f9f-b175-4e29-85ab-3f9b0879191e-2,https://biolit.fr/observations/observation-fa693f9f-b175-4e29-85ab-3f9b0879191e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020266.JPG,,FALSE, +N1,61182,sortie-fa693f9f-b175-4e29-85ab-3f9b0879191e,https://biolit.fr/sorties/sortie-fa693f9f-b175-4e29-85ab-3f9b0879191e/,Phil,,3/14/2016 0:00,15.0:55,16.0000000,47.791699000000,-4.318442000000,,Penmarc'h - Finistère,54988,observation-fa693f9f-b175-4e29-85ab-3f9b0879191e-3,https://biolit.fr/observations/observation-fa693f9f-b175-4e29-85ab-3f9b0879191e-3/,Terpios gelatinosus,Eponge encroûtante bleue,,https://biolit.fr/wp-content/uploads/2023/07/P1020275.JPG,,TRUE, +N1,61183,sortie-92424666-5539-48be-9412-1f69435d3ad3,https://biolit.fr/sorties/sortie-92424666-5539-48be-9412-1f69435d3ad3/,Phil,,3/15/2016 0:00,17.0000000,17.0:15,47.770489000000,-3.608026000000,,Doélan - Finistère,54990,observation-92424666-5539-48be-9412-1f69435d3ad3,https://biolit.fr/observations/observation-92424666-5539-48be-9412-1f69435d3ad3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020347.JPG,,FALSE, +N1,61183,sortie-92424666-5539-48be-9412-1f69435d3ad3,https://biolit.fr/sorties/sortie-92424666-5539-48be-9412-1f69435d3ad3/,Phil,,3/15/2016 0:00,17.0000000,17.0:15,47.770489000000,-3.608026000000,,Doélan - Finistère,54992,observation-92424666-5539-48be-9412-1f69435d3ad3-2,https://biolit.fr/observations/observation-92424666-5539-48be-9412-1f69435d3ad3-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020335.JPG,,TRUE, +N1,61183,sortie-92424666-5539-48be-9412-1f69435d3ad3,https://biolit.fr/sorties/sortie-92424666-5539-48be-9412-1f69435d3ad3/,Phil,,3/15/2016 0:00,17.0000000,17.0:15,47.770489000000,-3.608026000000,,Doélan - Finistère,54994,observation-92424666-5539-48be-9412-1f69435d3ad3-3,https://biolit.fr/observations/observation-92424666-5539-48be-9412-1f69435d3ad3-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020350.JPG,,FALSE, +N1,61184,sortie-f58d2f2f-87be-43ec-aa60-cc7f703f94c1,https://biolit.fr/sorties/sortie-f58d2f2f-87be-43ec-aa60-cc7f703f94c1/,herve laurent,,3/17/2016 0:00,16.0000000,18.0000000,48.572403000000,-4.655774000000,,plage de tréonpam ,54996,observation-f58d2f2f-87be-43ec-aa60-cc7f703f94c1,https://biolit.fr/observations/observation-f58d2f2f-87be-43ec-aa60-cc7f703f94c1/,,,,https://biolit.fr/wp-content/uploads/2023/07/1_1-scaled.jpg,,FALSE, +N1,61184,sortie-f58d2f2f-87be-43ec-aa60-cc7f703f94c1,https://biolit.fr/sorties/sortie-f58d2f2f-87be-43ec-aa60-cc7f703f94c1/,herve laurent,,3/17/2016 0:00,16.0000000,18.0000000,48.572403000000,-4.655774000000,,plage de tréonpam ,54998,observation-f58d2f2f-87be-43ec-aa60-cc7f703f94c1-2,https://biolit.fr/observations/observation-f58d2f2f-87be-43ec-aa60-cc7f703f94c1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/2_0-scaled.jpg,,FALSE, +N1,61184,sortie-f58d2f2f-87be-43ec-aa60-cc7f703f94c1,https://biolit.fr/sorties/sortie-f58d2f2f-87be-43ec-aa60-cc7f703f94c1/,herve laurent,,3/17/2016 0:00,16.0000000,18.0000000,48.572403000000,-4.655774000000,,plage de tréonpam ,55000,observation-f58d2f2f-87be-43ec-aa60-cc7f703f94c1-3,https://biolit.fr/observations/observation-f58d2f2f-87be-43ec-aa60-cc7f703f94c1-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/3_0-scaled.jpg,,FALSE, +N1,61185,sortie-49b52af1-cc7c-4cd1-9746-ef765fefb59d,https://biolit.fr/sorties/sortie-49b52af1-cc7c-4cd1-9746-ef765fefb59d/,herve laurent,,3/17/2016 0:00,15.0000000,15.0000000,48.56882400000,-4.685502000000,,plage de tréonpam ,55002,observation-49b52af1-cc7c-4cd1-9746-ef765fefb59d,https://biolit.fr/observations/observation-49b52af1-cc7c-4cd1-9746-ef765fefb59d/,,,,https://biolit.fr/wp-content/uploads/2023/07/4_0-scaled.jpg,,FALSE, +N1,61186,sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369,https://biolit.fr/sorties/sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369/,Ville de Marseille,,03/11/2016,10.0000000,12.0000000,43.239857000000,5.362356000000,,"plage du Bain des Dames, Marseille",55004,observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369,https://biolit.fr/observations/observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060693-scaled.jpg,,FALSE, +N1,61186,sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369,https://biolit.fr/sorties/sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369/,Ville de Marseille,,03/11/2016,10.0000000,12.0000000,43.239857000000,5.362356000000,,"plage du Bain des Dames, Marseille",55006,observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-2,https://biolit.fr/observations/observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-2/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/P1060694-scaled.jpg,,TRUE, +N1,61186,sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369,https://biolit.fr/sorties/sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369/,Ville de Marseille,,03/11/2016,10.0000000,12.0000000,43.239857000000,5.362356000000,,"plage du Bain des Dames, Marseille",55008,observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-3,https://biolit.fr/observations/observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-3/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/2023/07/P1060695-scaled.jpg,,TRUE, +N1,61186,sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369,https://biolit.fr/sorties/sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369/,Ville de Marseille,,03/11/2016,10.0000000,12.0000000,43.239857000000,5.362356000000,,"plage du Bain des Dames, Marseille",55010,observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-4,https://biolit.fr/observations/observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060697-scaled.jpg,,FALSE, +N1,61186,sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369,https://biolit.fr/sorties/sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369/,Ville de Marseille,,03/11/2016,10.0000000,12.0000000,43.239857000000,5.362356000000,,"plage du Bain des Dames, Marseille",55012,observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-5,https://biolit.fr/observations/observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-5/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/P1060700-scaled.jpg,,TRUE, +N1,61186,sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369,https://biolit.fr/sorties/sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369/,Ville de Marseille,,03/11/2016,10.0000000,12.0000000,43.239857000000,5.362356000000,,"plage du Bain des Dames, Marseille",55014,observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-6,https://biolit.fr/observations/observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-6/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/2023/07/P1060702-scaled.jpg,,TRUE, +N1,61186,sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369,https://biolit.fr/sorties/sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369/,Ville de Marseille,,03/11/2016,10.0000000,12.0000000,43.239857000000,5.362356000000,,"plage du Bain des Dames, Marseille",55016,observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-7,https://biolit.fr/observations/observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-7/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/P1060708-scaled.jpg,,TRUE, +N1,61186,sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369,https://biolit.fr/sorties/sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369/,Ville de Marseille,,03/11/2016,10.0000000,12.0000000,43.239857000000,5.362356000000,,"plage du Bain des Dames, Marseille",55018,observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-8,https://biolit.fr/observations/observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-8/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/P1060704-scaled.jpg,,TRUE, +N1,61186,sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369,https://biolit.fr/sorties/sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369/,Ville de Marseille,,03/11/2016,10.0000000,12.0000000,43.239857000000,5.362356000000,,"plage du Bain des Dames, Marseille",55020,observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-9,https://biolit.fr/observations/observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-9/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/2023/07/P1060709-scaled.jpg,,TRUE, +N1,61186,sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369,https://biolit.fr/sorties/sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369/,Ville de Marseille,,03/11/2016,10.0000000,12.0000000,43.239857000000,5.362356000000,,"plage du Bain des Dames, Marseille",55022,observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-10,https://biolit.fr/observations/observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-10/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/P1060706-scaled.jpg,,TRUE, +N1,61186,sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369,https://biolit.fr/sorties/sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369/,Ville de Marseille,,03/11/2016,10.0000000,12.0000000,43.239857000000,5.362356000000,,"plage du Bain des Dames, Marseille",55024,observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-11,https://biolit.fr/observations/observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-11/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1060713-scaled.jpg,,TRUE, +N1,61186,sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369,https://biolit.fr/sorties/sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369/,Ville de Marseille,,03/11/2016,10.0000000,12.0000000,43.239857000000,5.362356000000,,"plage du Bain des Dames, Marseille",55026,observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-12,https://biolit.fr/observations/observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060710-scaled.jpg,,FALSE, +N1,61186,sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369,https://biolit.fr/sorties/sortie-d86e43b8-fe11-414f-81ec-eebc7aaf3369/,Ville de Marseille,,03/11/2016,10.0000000,12.0000000,43.239857000000,5.362356000000,,"plage du Bain des Dames, Marseille",55028,observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-13,https://biolit.fr/observations/observation-d86e43b8-fe11-414f-81ec-eebc7aaf3369-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060711-scaled.jpg,,FALSE, +N1,61187,sortie-926fb2bc-5bbf-4216-a2de-822fd9da240b,https://biolit.fr/sorties/sortie-926fb2bc-5bbf-4216-a2de-822fd9da240b/,Phil,,03/12/2016,13.0000000,13.0:35,47.798762000000,-4.167251000000,,Loctudy - Finistère,55030,observation-926fb2bc-5bbf-4216-a2de-822fd9da240b,https://biolit.fr/observations/observation-926fb2bc-5bbf-4216-a2de-822fd9da240b/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1010953.JPG,,TRUE, +N1,61187,sortie-926fb2bc-5bbf-4216-a2de-822fd9da240b,https://biolit.fr/sorties/sortie-926fb2bc-5bbf-4216-a2de-822fd9da240b/,Phil,,03/12/2016,13.0000000,13.0:35,47.798762000000,-4.167251000000,,Loctudy - Finistère,55032,observation-926fb2bc-5bbf-4216-a2de-822fd9da240b-2,https://biolit.fr/observations/observation-926fb2bc-5bbf-4216-a2de-822fd9da240b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010965.JPG,,FALSE, +N1,61187,sortie-926fb2bc-5bbf-4216-a2de-822fd9da240b,https://biolit.fr/sorties/sortie-926fb2bc-5bbf-4216-a2de-822fd9da240b/,Phil,,03/12/2016,13.0000000,13.0:35,47.798762000000,-4.167251000000,,Loctudy - Finistère,55034,observation-926fb2bc-5bbf-4216-a2de-822fd9da240b-3,https://biolit.fr/observations/observation-926fb2bc-5bbf-4216-a2de-822fd9da240b-3/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1010956.JPG,,TRUE, +N1,61187,sortie-926fb2bc-5bbf-4216-a2de-822fd9da240b,https://biolit.fr/sorties/sortie-926fb2bc-5bbf-4216-a2de-822fd9da240b/,Phil,,03/12/2016,13.0000000,13.0:35,47.798762000000,-4.167251000000,,Loctudy - Finistère,55036,observation-926fb2bc-5bbf-4216-a2de-822fd9da240b-4,https://biolit.fr/observations/observation-926fb2bc-5bbf-4216-a2de-822fd9da240b-4/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/2023/07/P1010949.JPG,,TRUE, +N1,61188,sortie-51d1d330-6935-4c30-951e-e949d7126811,https://biolit.fr/sorties/sortie-51d1d330-6935-4c30-951e-e949d7126811/,Phil,,3/14/2016 0:00,15.0000000,16.0000000,47.790448000000,-4.318313000000,,Penmarc'h - Finistère,55038,observation-51d1d330-6935-4c30-951e-e949d7126811,https://biolit.fr/observations/observation-51d1d330-6935-4c30-951e-e949d7126811/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/P1020264.JPG,,TRUE, +N1,61188,sortie-51d1d330-6935-4c30-951e-e949d7126811,https://biolit.fr/sorties/sortie-51d1d330-6935-4c30-951e-e949d7126811/,Phil,,3/14/2016 0:00,15.0000000,16.0000000,47.790448000000,-4.318313000000,,Penmarc'h - Finistère,55040,observation-51d1d330-6935-4c30-951e-e949d7126811-2,https://biolit.fr/observations/observation-51d1d330-6935-4c30-951e-e949d7126811-2/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/P1020263.JPG,,TRUE, +N1,61188,sortie-51d1d330-6935-4c30-951e-e949d7126811,https://biolit.fr/sorties/sortie-51d1d330-6935-4c30-951e-e949d7126811/,Phil,,3/14/2016 0:00,15.0000000,16.0000000,47.790448000000,-4.318313000000,,Penmarc'h - Finistère,55042,observation-51d1d330-6935-4c30-951e-e949d7126811-3,https://biolit.fr/observations/observation-51d1d330-6935-4c30-951e-e949d7126811-3/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1020253.JPG,,TRUE, +N1,61188,sortie-51d1d330-6935-4c30-951e-e949d7126811,https://biolit.fr/sorties/sortie-51d1d330-6935-4c30-951e-e949d7126811/,Phil,,3/14/2016 0:00,15.0000000,16.0000000,47.790448000000,-4.318313000000,,Penmarc'h - Finistère,55044,observation-51d1d330-6935-4c30-951e-e949d7126811-4,https://biolit.fr/observations/observation-51d1d330-6935-4c30-951e-e949d7126811-4/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1020250.JPG,,TRUE, +N1,61188,sortie-51d1d330-6935-4c30-951e-e949d7126811,https://biolit.fr/sorties/sortie-51d1d330-6935-4c30-951e-e949d7126811/,Phil,,3/14/2016 0:00,15.0000000,16.0000000,47.790448000000,-4.318313000000,,Penmarc'h - Finistère,55046,observation-51d1d330-6935-4c30-951e-e949d7126811-5,https://biolit.fr/observations/observation-51d1d330-6935-4c30-951e-e949d7126811-5/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1020248.JPG,,TRUE, +N1,61188,sortie-51d1d330-6935-4c30-951e-e949d7126811,https://biolit.fr/sorties/sortie-51d1d330-6935-4c30-951e-e949d7126811/,Phil,,3/14/2016 0:00,15.0000000,16.0000000,47.790448000000,-4.318313000000,,Penmarc'h - Finistère,55048,observation-51d1d330-6935-4c30-951e-e949d7126811-6,https://biolit.fr/observations/observation-51d1d330-6935-4c30-951e-e949d7126811-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020240.JPG,,FALSE, +N1,61188,sortie-51d1d330-6935-4c30-951e-e949d7126811,https://biolit.fr/sorties/sortie-51d1d330-6935-4c30-951e-e949d7126811/,Phil,,3/14/2016 0:00,15.0000000,16.0000000,47.790448000000,-4.318313000000,,Penmarc'h - Finistère,55050,observation-51d1d330-6935-4c30-951e-e949d7126811-7,https://biolit.fr/observations/observation-51d1d330-6935-4c30-951e-e949d7126811-7/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1020238.JPG,,TRUE, +N1,61189,sortie-0b185661-78ba-4c6b-8c8e-987e3545a1ad,https://biolit.fr/sorties/sortie-0b185661-78ba-4c6b-8c8e-987e3545a1ad/,Earthforce FS,,1/18/2016 0:00,13.0000000,17.0000000,16.264041000000,-61.809562000000,,Deshaies Guadeloupe,55052,observation-0b185661-78ba-4c6b-8c8e-987e3545a1ad,https://biolit.fr/observations/observation-0b185661-78ba-4c6b-8c8e-987e3545a1ad/,,,,https://biolit.fr/wp-content/uploads/2023/07/946167_10206831262718181_7780463236865940777_n-1.jpg,,FALSE, +N1,61189,sortie-0b185661-78ba-4c6b-8c8e-987e3545a1ad,https://biolit.fr/sorties/sortie-0b185661-78ba-4c6b-8c8e-987e3545a1ad/,Earthforce FS,,1/18/2016 0:00,13.0000000,17.0000000,16.264041000000,-61.809562000000,,Deshaies Guadeloupe,55054,observation-0b185661-78ba-4c6b-8c8e-987e3545a1ad-2,https://biolit.fr/observations/observation-0b185661-78ba-4c6b-8c8e-987e3545a1ad-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/12509243_10206831275958512_1448409382222411258_n.jpg,,FALSE, +N1,61189,sortie-0b185661-78ba-4c6b-8c8e-987e3545a1ad,https://biolit.fr/sorties/sortie-0b185661-78ba-4c6b-8c8e-987e3545a1ad/,Earthforce FS,,1/18/2016 0:00,13.0000000,17.0000000,16.264041000000,-61.809562000000,,Deshaies Guadeloupe,55056,observation-0b185661-78ba-4c6b-8c8e-987e3545a1ad-3,https://biolit.fr/observations/observation-0b185661-78ba-4c6b-8c8e-987e3545a1ad-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/12592206_10206831277518551_2642371865346575240_n.jpg,,FALSE, +N1,61189,sortie-0b185661-78ba-4c6b-8c8e-987e3545a1ad,https://biolit.fr/sorties/sortie-0b185661-78ba-4c6b-8c8e-987e3545a1ad/,Earthforce FS,,1/18/2016 0:00,13.0000000,17.0000000,16.264041000000,-61.809562000000,,Deshaies Guadeloupe,55058,observation-0b185661-78ba-4c6b-8c8e-987e3545a1ad-4,https://biolit.fr/observations/observation-0b185661-78ba-4c6b-8c8e-987e3545a1ad-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/12540842_10206831281358647_3991190498378373318_n.jpg,,FALSE, +N1,61190,sortie-5701ff8c-a532-45ba-b358-90675cddcf53,https://biolit.fr/sorties/sortie-5701ff8c-a532-45ba-b358-90675cddcf53/,Earthforce FS,,03/04/2016,9.0000000,12.0000000,16.327356000000,-61.85145600000,,Deshaies Guadeloupe,55060,observation-5701ff8c-a532-45ba-b358-90675cddcf53,https://biolit.fr/observations/observation-5701ff8c-a532-45ba-b358-90675cddcf53/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cachalots 2.jpg,,FALSE, +N1,61190,sortie-5701ff8c-a532-45ba-b358-90675cddcf53,https://biolit.fr/sorties/sortie-5701ff8c-a532-45ba-b358-90675cddcf53/,Earthforce FS,,03/04/2016,9.0000000,12.0000000,16.327356000000,-61.85145600000,,Deshaies Guadeloupe,55062,observation-5701ff8c-a532-45ba-b358-90675cddcf53-2,https://biolit.fr/observations/observation-5701ff8c-a532-45ba-b358-90675cddcf53-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cachalots 4.jpg,,FALSE, +N1,61190,sortie-5701ff8c-a532-45ba-b358-90675cddcf53,https://biolit.fr/sorties/sortie-5701ff8c-a532-45ba-b358-90675cddcf53/,Earthforce FS,,03/04/2016,9.0000000,12.0000000,16.327356000000,-61.85145600000,,Deshaies Guadeloupe,55064,observation-5701ff8c-a532-45ba-b358-90675cddcf53-3,https://biolit.fr/observations/observation-5701ff8c-a532-45ba-b358-90675cddcf53-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cachalots 1_0.jpg,,FALSE, +N1,61191,sortie-91905fc3-fbad-4087-9ccb-c7387de0cb6a,https://biolit.fr/sorties/sortie-91905fc3-fbad-4087-9ccb-c7387de0cb6a/,Phil,,03/12/2016,13.000005,13.0:15,47.800276000000,-4.171457000000,,Loctudy - Finistère,55066,observation-91905fc3-fbad-4087-9ccb-c7387de0cb6a,https://biolit.fr/observations/observation-91905fc3-fbad-4087-9ccb-c7387de0cb6a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010909.JPG,,FALSE, +N1,61191,sortie-91905fc3-fbad-4087-9ccb-c7387de0cb6a,https://biolit.fr/sorties/sortie-91905fc3-fbad-4087-9ccb-c7387de0cb6a/,Phil,,03/12/2016,13.000005,13.0:15,47.800276000000,-4.171457000000,,Loctudy - Finistère,55068,observation-91905fc3-fbad-4087-9ccb-c7387de0cb6a-2,https://biolit.fr/observations/observation-91905fc3-fbad-4087-9ccb-c7387de0cb6a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010888.JPG,,FALSE, +N1,61191,sortie-91905fc3-fbad-4087-9ccb-c7387de0cb6a,https://biolit.fr/sorties/sortie-91905fc3-fbad-4087-9ccb-c7387de0cb6a/,Phil,,03/12/2016,13.000005,13.0:15,47.800276000000,-4.171457000000,,Loctudy - Finistère,55070,observation-91905fc3-fbad-4087-9ccb-c7387de0cb6a-3,https://biolit.fr/observations/observation-91905fc3-fbad-4087-9ccb-c7387de0cb6a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010891.JPG,,FALSE, +N1,61191,sortie-91905fc3-fbad-4087-9ccb-c7387de0cb6a,https://biolit.fr/sorties/sortie-91905fc3-fbad-4087-9ccb-c7387de0cb6a/,Phil,,03/12/2016,13.000005,13.0:15,47.800276000000,-4.171457000000,,Loctudy - Finistère,55072,observation-91905fc3-fbad-4087-9ccb-c7387de0cb6a-4,https://biolit.fr/observations/observation-91905fc3-fbad-4087-9ccb-c7387de0cb6a-4/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/P1010894.JPG,,TRUE, +N1,61191,sortie-91905fc3-fbad-4087-9ccb-c7387de0cb6a,https://biolit.fr/sorties/sortie-91905fc3-fbad-4087-9ccb-c7387de0cb6a/,Phil,,03/12/2016,13.000005,13.0:15,47.800276000000,-4.171457000000,,Loctudy - Finistère,55074,observation-91905fc3-fbad-4087-9ccb-c7387de0cb6a-5,https://biolit.fr/observations/observation-91905fc3-fbad-4087-9ccb-c7387de0cb6a-5/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/P1010906.JPG,,TRUE, +N1,61191,sortie-91905fc3-fbad-4087-9ccb-c7387de0cb6a,https://biolit.fr/sorties/sortie-91905fc3-fbad-4087-9ccb-c7387de0cb6a/,Phil,,03/12/2016,13.000005,13.0:15,47.800276000000,-4.171457000000,,Loctudy - Finistère,55076,observation-91905fc3-fbad-4087-9ccb-c7387de0cb6a-6,https://biolit.fr/observations/observation-91905fc3-fbad-4087-9ccb-c7387de0cb6a-6/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/P1010900.JPG,,TRUE, +N1,61191,sortie-91905fc3-fbad-4087-9ccb-c7387de0cb6a,https://biolit.fr/sorties/sortie-91905fc3-fbad-4087-9ccb-c7387de0cb6a/,Phil,,03/12/2016,13.000005,13.0:15,47.800276000000,-4.171457000000,,Loctudy - Finistère,55078,observation-91905fc3-fbad-4087-9ccb-c7387de0cb6a-7,https://biolit.fr/observations/observation-91905fc3-fbad-4087-9ccb-c7387de0cb6a-7/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/2023/07/P1010907.JPG,,TRUE, +N1,61192,sortie-f6fe9dbf-4131-44fa-a21d-1069f6a68ea2,https://biolit.fr/sorties/sortie-f6fe9dbf-4131-44fa-a21d-1069f6a68ea2/,Phil,,3/14/2016 0:00,15.0000000,15.0:45,47.791408000000,-4.324965000000,,Penmarc'h - Finistère,55080,observation-f6fe9dbf-4131-44fa-a21d-1069f6a68ea2,https://biolit.fr/observations/observation-f6fe9dbf-4131-44fa-a21d-1069f6a68ea2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020206.JPG,,FALSE, +N1,61192,sortie-f6fe9dbf-4131-44fa-a21d-1069f6a68ea2,https://biolit.fr/sorties/sortie-f6fe9dbf-4131-44fa-a21d-1069f6a68ea2/,Phil,,3/14/2016 0:00,15.0000000,15.0:45,47.791408000000,-4.324965000000,,Penmarc'h - Finistère,55082,observation-f6fe9dbf-4131-44fa-a21d-1069f6a68ea2-2,https://biolit.fr/observations/observation-f6fe9dbf-4131-44fa-a21d-1069f6a68ea2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1020215.JPG,,FALSE, +N1,61192,sortie-f6fe9dbf-4131-44fa-a21d-1069f6a68ea2,https://biolit.fr/sorties/sortie-f6fe9dbf-4131-44fa-a21d-1069f6a68ea2/,Phil,,3/14/2016 0:00,15.0000000,15.0:45,47.791408000000,-4.324965000000,,Penmarc'h - Finistère,55084,observation-f6fe9dbf-4131-44fa-a21d-1069f6a68ea2-3,https://biolit.fr/observations/observation-f6fe9dbf-4131-44fa-a21d-1069f6a68ea2-3/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020222.JPG,,TRUE, +N1,61192,sortie-f6fe9dbf-4131-44fa-a21d-1069f6a68ea2,https://biolit.fr/sorties/sortie-f6fe9dbf-4131-44fa-a21d-1069f6a68ea2/,Phil,,3/14/2016 0:00,15.0000000,15.0:45,47.791408000000,-4.324965000000,,Penmarc'h - Finistère,55086,observation-f6fe9dbf-4131-44fa-a21d-1069f6a68ea2-4,https://biolit.fr/observations/observation-f6fe9dbf-4131-44fa-a21d-1069f6a68ea2-4/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1020231.JPG,,TRUE, +N1,61193,sortie-52f2cddf-dcb4-4e77-95b5-74c8555bff2d,https://biolit.fr/sorties/sortie-52f2cddf-dcb4-4e77-95b5-74c8555bff2d/,Phil,,03/12/2016,13.0000000,13.000005,47.803535000000,-4.177575000000,,Loctudy - Finistère,55088,observation-52f2cddf-dcb4-4e77-95b5-74c8555bff2d,https://biolit.fr/observations/observation-52f2cddf-dcb4-4e77-95b5-74c8555bff2d/,Idotea balthica,Idotée de la Baltique,,https://biolit.fr/wp-content/uploads/2023/07/P1010865.JPG,,TRUE, +N1,61193,sortie-52f2cddf-dcb4-4e77-95b5-74c8555bff2d,https://biolit.fr/sorties/sortie-52f2cddf-dcb4-4e77-95b5-74c8555bff2d/,Phil,,03/12/2016,13.0000000,13.000005,47.803535000000,-4.177575000000,,Loctudy - Finistère,55090,observation-52f2cddf-dcb4-4e77-95b5-74c8555bff2d-2,https://biolit.fr/observations/observation-52f2cddf-dcb4-4e77-95b5-74c8555bff2d-2/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/P1010879.JPG,,TRUE, +N1,61193,sortie-52f2cddf-dcb4-4e77-95b5-74c8555bff2d,https://biolit.fr/sorties/sortie-52f2cddf-dcb4-4e77-95b5-74c8555bff2d/,Phil,,03/12/2016,13.0000000,13.000005,47.803535000000,-4.177575000000,,Loctudy - Finistère,55092,observation-52f2cddf-dcb4-4e77-95b5-74c8555bff2d-3,https://biolit.fr/observations/observation-52f2cddf-dcb4-4e77-95b5-74c8555bff2d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010877.JPG,,FALSE, +N1,61193,sortie-52f2cddf-dcb4-4e77-95b5-74c8555bff2d,https://biolit.fr/sorties/sortie-52f2cddf-dcb4-4e77-95b5-74c8555bff2d/,Phil,,03/12/2016,13.0000000,13.000005,47.803535000000,-4.177575000000,,Loctudy - Finistère,55094,observation-52f2cddf-dcb4-4e77-95b5-74c8555bff2d-4,https://biolit.fr/observations/observation-52f2cddf-dcb4-4e77-95b5-74c8555bff2d-4/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/P1010876.JPG,,TRUE, +N1,61194,sortie-fe3d4106-e712-465a-80a1-fdede583e2fd,https://biolit.fr/sorties/sortie-fe3d4106-e712-465a-80a1-fdede583e2fd/,Phil,,3/13/2016 0:00,16.0000000,16.0:55,47.895143000000,-3.969742000000,,La Forêt-Fouesnant - Finistère,55096,observation-fe3d4106-e712-465a-80a1-fdede583e2fd,https://biolit.fr/observations/observation-fe3d4106-e712-465a-80a1-fdede583e2fd/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020193.JPG,,TRUE, +N1,61194,sortie-fe3d4106-e712-465a-80a1-fdede583e2fd,https://biolit.fr/sorties/sortie-fe3d4106-e712-465a-80a1-fdede583e2fd/,Phil,,3/13/2016 0:00,16.0000000,16.0:55,47.895143000000,-3.969742000000,,La Forêt-Fouesnant - Finistère,55098,observation-fe3d4106-e712-465a-80a1-fdede583e2fd-2,https://biolit.fr/observations/observation-fe3d4106-e712-465a-80a1-fdede583e2fd-2/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1020195.JPG,,TRUE, +N1,61195,sortie-4a552ccd-a2cc-4357-a031-83a94df24973,https://biolit.fr/sorties/sortie-4a552ccd-a2cc-4357-a031-83a94df24973/,Phil,,03/06/2016,12.0000000,12.000005,48.151440000000,-4.274308000000,,Ploeven - Finistère,55100,observation-4a552ccd-a2cc-4357-a031-83a94df24973,https://biolit.fr/observations/observation-4a552ccd-a2cc-4357-a031-83a94df24973/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1010829.JPG,,TRUE, +N1,61195,sortie-4a552ccd-a2cc-4357-a031-83a94df24973,https://biolit.fr/sorties/sortie-4a552ccd-a2cc-4357-a031-83a94df24973/,Phil,,03/06/2016,12.0000000,12.000005,48.151440000000,-4.274308000000,,Ploeven - Finistère,55102,observation-4a552ccd-a2cc-4357-a031-83a94df24973-2,https://biolit.fr/observations/observation-4a552ccd-a2cc-4357-a031-83a94df24973-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1010830.JPG,,TRUE, +N1,61195,sortie-4a552ccd-a2cc-4357-a031-83a94df24973,https://biolit.fr/sorties/sortie-4a552ccd-a2cc-4357-a031-83a94df24973/,Phil,,03/06/2016,12.0000000,12.000005,48.151440000000,-4.274308000000,,Ploeven - Finistère,55104,observation-4a552ccd-a2cc-4357-a031-83a94df24973-3,https://biolit.fr/observations/observation-4a552ccd-a2cc-4357-a031-83a94df24973-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1010834.JPG,,TRUE, +N1,61195,sortie-4a552ccd-a2cc-4357-a031-83a94df24973,https://biolit.fr/sorties/sortie-4a552ccd-a2cc-4357-a031-83a94df24973/,Phil,,03/06/2016,12.0000000,12.000005,48.151440000000,-4.274308000000,,Ploeven - Finistère,55106,observation-4a552ccd-a2cc-4357-a031-83a94df24973-4,https://biolit.fr/observations/observation-4a552ccd-a2cc-4357-a031-83a94df24973-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010824.JPG,,FALSE, +N1,61196,sortie-bf97510f-13cc-4428-8401-d174bd2f5afb,https://biolit.fr/sorties/sortie-bf97510f-13cc-4428-8401-d174bd2f5afb/,Phil,,03/12/2016,12.0:55,13.0000000,47.798546000000,-4.183589000000,,Loctudy - Finistère,55108,observation-bf97510f-13cc-4428-8401-d174bd2f5afb,https://biolit.fr/observations/observation-bf97510f-13cc-4428-8401-d174bd2f5afb/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010862.JPG,,FALSE, +N1,61196,sortie-bf97510f-13cc-4428-8401-d174bd2f5afb,https://biolit.fr/sorties/sortie-bf97510f-13cc-4428-8401-d174bd2f5afb/,Phil,,03/12/2016,12.0:55,13.0000000,47.798546000000,-4.183589000000,,Loctudy - Finistère,55110,observation-bf97510f-13cc-4428-8401-d174bd2f5afb-2,https://biolit.fr/observations/observation-bf97510f-13cc-4428-8401-d174bd2f5afb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010860.JPG,,FALSE, +N1,61196,sortie-bf97510f-13cc-4428-8401-d174bd2f5afb,https://biolit.fr/sorties/sortie-bf97510f-13cc-4428-8401-d174bd2f5afb/,Phil,,03/12/2016,12.0:55,13.0000000,47.798546000000,-4.183589000000,,Loctudy - Finistère,55112,observation-bf97510f-13cc-4428-8401-d174bd2f5afb-3,https://biolit.fr/observations/observation-bf97510f-13cc-4428-8401-d174bd2f5afb-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1010858.JPG,,TRUE, +N1,61197,sortie-65b0a9c0-4874-4fe0-91ee-3d78616d1c91,https://biolit.fr/sorties/sortie-65b0a9c0-4874-4fe0-91ee-3d78616d1c91/,Phil,,03/06/2016,11.0:45,11.0000000,48.151136000000,-4.275398000000,,Ploeven - Finistère,55114,observation-65b0a9c0-4874-4fe0-91ee-3d78616d1c91,https://biolit.fr/observations/observation-65b0a9c0-4874-4fe0-91ee-3d78616d1c91/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1010797.JPG,,TRUE, +N1,61197,sortie-65b0a9c0-4874-4fe0-91ee-3d78616d1c91,https://biolit.fr/sorties/sortie-65b0a9c0-4874-4fe0-91ee-3d78616d1c91/,Phil,,03/06/2016,11.0:45,11.0000000,48.151136000000,-4.275398000000,,Ploeven - Finistère,55116,observation-65b0a9c0-4874-4fe0-91ee-3d78616d1c91-2,https://biolit.fr/observations/observation-65b0a9c0-4874-4fe0-91ee-3d78616d1c91-2/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1010792.JPG,,TRUE, +N1,61197,sortie-65b0a9c0-4874-4fe0-91ee-3d78616d1c91,https://biolit.fr/sorties/sortie-65b0a9c0-4874-4fe0-91ee-3d78616d1c91/,Phil,,03/06/2016,11.0:45,11.0000000,48.151136000000,-4.275398000000,,Ploeven - Finistère,55118,observation-65b0a9c0-4874-4fe0-91ee-3d78616d1c91-3,https://biolit.fr/observations/observation-65b0a9c0-4874-4fe0-91ee-3d78616d1c91-3/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1010810.JPG,,TRUE, +N1,61198,sortie-23131739-6bfd-49ff-9c86-0890084ff8a3,https://biolit.fr/sorties/sortie-23131739-6bfd-49ff-9c86-0890084ff8a3/,Phil,,2/21/2016 0:00,12.0:15,12.0:25,47.834091000000,-4.176508000000,,Loctudy - Finistère,55120,observation-23131739-6bfd-49ff-9c86-0890084ff8a3,https://biolit.fr/observations/observation-23131739-6bfd-49ff-9c86-0890084ff8a3/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/P1010376.JPG,,TRUE, +N1,61198,sortie-23131739-6bfd-49ff-9c86-0890084ff8a3,https://biolit.fr/sorties/sortie-23131739-6bfd-49ff-9c86-0890084ff8a3/,Phil,,2/21/2016 0:00,12.0:15,12.0:25,47.834091000000,-4.176508000000,,Loctudy - Finistère,55122,observation-23131739-6bfd-49ff-9c86-0890084ff8a3-2,https://biolit.fr/observations/observation-23131739-6bfd-49ff-9c86-0890084ff8a3-2/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/P1010417.JPG,,TRUE, +N1,61198,sortie-23131739-6bfd-49ff-9c86-0890084ff8a3,https://biolit.fr/sorties/sortie-23131739-6bfd-49ff-9c86-0890084ff8a3/,Phil,,2/21/2016 0:00,12.0:15,12.0:25,47.834091000000,-4.176508000000,,Loctudy - Finistère,55124,observation-23131739-6bfd-49ff-9c86-0890084ff8a3-3,https://biolit.fr/observations/observation-23131739-6bfd-49ff-9c86-0890084ff8a3-3/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/P1010425.JPG,,TRUE, +N1,61198,sortie-23131739-6bfd-49ff-9c86-0890084ff8a3,https://biolit.fr/sorties/sortie-23131739-6bfd-49ff-9c86-0890084ff8a3/,Phil,,2/21/2016 0:00,12.0:15,12.0:25,47.834091000000,-4.176508000000,,Loctudy - Finistère,55126,observation-23131739-6bfd-49ff-9c86-0890084ff8a3-4,https://biolit.fr/observations/observation-23131739-6bfd-49ff-9c86-0890084ff8a3-4/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/P1010535.JPG,,TRUE, +N1,61199,sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652,https://biolit.fr/sorties/sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652/,Ville de Marseille KORSEC CE2-CM1,,1/25/2016 0:00,9.0000000,10.0000000,43.26786600000,5.370399000000,,Base nautique du Roucas,55128,observation-f93cb4d4-468d-4473-8828-d94c5ca0a652,https://biolit.fr/observations/observation-f93cb4d4-468d-4473-8828-d94c5ca0a652/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/coquille2-scaled.jpg,,TRUE, +N1,61199,sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652,https://biolit.fr/sorties/sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652/,Ville de Marseille KORSEC CE2-CM1,,1/25/2016 0:00,9.0000000,10.0000000,43.26786600000,5.370399000000,,Base nautique du Roucas,55130,observation-f93cb4d4-468d-4473-8828-d94c5ca0a652-2,https://biolit.fr/observations/observation-f93cb4d4-468d-4473-8828-d94c5ca0a652-2/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/coquille3-scaled.jpg,,TRUE, +N1,61199,sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652,https://biolit.fr/sorties/sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652/,Ville de Marseille KORSEC CE2-CM1,,1/25/2016 0:00,9.0000000,10.0000000,43.26786600000,5.370399000000,,Base nautique du Roucas,55132,observation-f93cb4d4-468d-4473-8828-d94c5ca0a652-3,https://biolit.fr/observations/observation-f93cb4d4-468d-4473-8828-d94c5ca0a652-3/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/coquille4-scaled.jpg,,TRUE, +N1,61199,sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652,https://biolit.fr/sorties/sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652/,Ville de Marseille KORSEC CE2-CM1,,1/25/2016 0:00,9.0000000,10.0000000,43.26786600000,5.370399000000,,Base nautique du Roucas,55134,observation-f93cb4d4-468d-4473-8828-d94c5ca0a652-4,https://biolit.fr/observations/observation-f93cb4d4-468d-4473-8828-d94c5ca0a652-4/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/coquille5-scaled.jpg,,TRUE, +N1,61199,sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652,https://biolit.fr/sorties/sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652/,Ville de Marseille KORSEC CE2-CM1,,1/25/2016 0:00,9.0000000,10.0000000,43.26786600000,5.370399000000,,Base nautique du Roucas,55136,observation-f93cb4d4-468d-4473-8828-d94c5ca0a652-5,https://biolit.fr/observations/observation-f93cb4d4-468d-4473-8828-d94c5ca0a652-5/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/coquille6-scaled.jpg,,TRUE, +N1,61199,sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652,https://biolit.fr/sorties/sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652/,Ville de Marseille KORSEC CE2-CM1,,1/25/2016 0:00,9.0000000,10.0000000,43.26786600000,5.370399000000,,Base nautique du Roucas,55138,observation-f93cb4d4-468d-4473-8828-d94c5ca0a652-6,https://biolit.fr/observations/observation-f93cb4d4-468d-4473-8828-d94c5ca0a652-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/coquille7-scaled.jpg,,FALSE, +N1,61199,sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652,https://biolit.fr/sorties/sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652/,Ville de Marseille KORSEC CE2-CM1,,1/25/2016 0:00,9.0000000,10.0000000,43.26786600000,5.370399000000,,Base nautique du Roucas,55140,observation-f93cb4d4-468d-4473-8828-d94c5ca0a652-7,https://biolit.fr/observations/observation-f93cb4d4-468d-4473-8828-d94c5ca0a652-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/coquille8-scaled.jpg,,FALSE, +N1,61199,sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652,https://biolit.fr/sorties/sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652/,Ville de Marseille KORSEC CE2-CM1,,1/25/2016 0:00,9.0000000,10.0000000,43.26786600000,5.370399000000,,Base nautique du Roucas,55142,observation-f93cb4d4-468d-4473-8828-d94c5ca0a652-8,https://biolit.fr/observations/observation-f93cb4d4-468d-4473-8828-d94c5ca0a652-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/coquille9-scaled.jpg,,FALSE, +N1,61199,sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652,https://biolit.fr/sorties/sortie-f93cb4d4-468d-4473-8828-d94c5ca0a652/,Ville de Marseille KORSEC CE2-CM1,,1/25/2016 0:00,9.0000000,10.0000000,43.26786600000,5.370399000000,,Base nautique du Roucas,55144,observation-f93cb4d4-468d-4473-8828-d94c5ca0a652-9,https://biolit.fr/observations/observation-f93cb4d4-468d-4473-8828-d94c5ca0a652-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/coquille10-scaled.jpg,,FALSE, +N1,61200,sortie-db29ff00-1a5a-4265-b92a-91587400a903,https://biolit.fr/sorties/sortie-db29ff00-1a5a-4265-b92a-91587400a903/,Ville de Marseille KORSEC CE2-CM1,,1/25/2016 0:00,9.0000000,10.0000000,43.26786600000,5.370420000000,,Base nautique du Roucas,55146,observation-db29ff00-1a5a-4265-b92a-91587400a903,https://biolit.fr/observations/observation-db29ff00-1a5a-4265-b92a-91587400a903/,,,,,,FALSE, +N1,61200,sortie-db29ff00-1a5a-4265-b92a-91587400a903,https://biolit.fr/sorties/sortie-db29ff00-1a5a-4265-b92a-91587400a903/,Ville de Marseille KORSEC CE2-CM1,,1/25/2016 0:00,9.0000000,10.0000000,43.26786600000,5.370420000000,,Base nautique du Roucas,55147,observation-db29ff00-1a5a-4265-b92a-91587400a903-2,https://biolit.fr/observations/observation-db29ff00-1a5a-4265-b92a-91587400a903-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/concomre de mer-scaled.jpg,,FALSE, +N1,61200,sortie-db29ff00-1a5a-4265-b92a-91587400a903,https://biolit.fr/sorties/sortie-db29ff00-1a5a-4265-b92a-91587400a903/,Ville de Marseille KORSEC CE2-CM1,,1/25/2016 0:00,9.0000000,10.0000000,43.26786600000,5.370420000000,,Base nautique du Roucas,55149,observation-db29ff00-1a5a-4265-b92a-91587400a903-3,https://biolit.fr/observations/observation-db29ff00-1a5a-4265-b92a-91587400a903-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/coquille1-scaled.jpg,,FALSE, +N1,61201,sortie-9982cca7-6efa-4c94-ae62-cddd76c1af70,https://biolit.fr/sorties/sortie-9982cca7-6efa-4c94-ae62-cddd76c1af70/,Phil,,03/06/2016,11.0:35,11.0000000,48.151184000000,-4.273070000000,,Ploeven - Finistère,55151,observation-9982cca7-6efa-4c94-ae62-cddd76c1af70,https://biolit.fr/observations/observation-9982cca7-6efa-4c94-ae62-cddd76c1af70/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010770.JPG,,FALSE, +N1,61201,sortie-9982cca7-6efa-4c94-ae62-cddd76c1af70,https://biolit.fr/sorties/sortie-9982cca7-6efa-4c94-ae62-cddd76c1af70/,Phil,,03/06/2016,11.0:35,11.0000000,48.151184000000,-4.273070000000,,Ploeven - Finistère,55153,observation-9982cca7-6efa-4c94-ae62-cddd76c1af70-2,https://biolit.fr/observations/observation-9982cca7-6efa-4c94-ae62-cddd76c1af70-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010758.JPG,,FALSE, +N1,61201,sortie-9982cca7-6efa-4c94-ae62-cddd76c1af70,https://biolit.fr/sorties/sortie-9982cca7-6efa-4c94-ae62-cddd76c1af70/,Phil,,03/06/2016,11.0:35,11.0000000,48.151184000000,-4.273070000000,,Ploeven - Finistère,55155,observation-9982cca7-6efa-4c94-ae62-cddd76c1af70-3,https://biolit.fr/observations/observation-9982cca7-6efa-4c94-ae62-cddd76c1af70-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010764.JPG,,FALSE, +N1,61202,sortie-f4c0045d-f4be-4d39-a586-38ab9239184f,https://biolit.fr/sorties/sortie-f4c0045d-f4be-4d39-a586-38ab9239184f/,Phil,,03/06/2016,12.000005,12.0000000,48.153736000000,-4.27592200000,,Plomodiern - Finistère,55157,observation-f4c0045d-f4be-4d39-a586-38ab9239184f,https://biolit.fr/observations/observation-f4c0045d-f4be-4d39-a586-38ab9239184f/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/P1010746.JPG,,TRUE, +N1,61202,sortie-f4c0045d-f4be-4d39-a586-38ab9239184f,https://biolit.fr/sorties/sortie-f4c0045d-f4be-4d39-a586-38ab9239184f/,Phil,,03/06/2016,12.000005,12.0000000,48.153736000000,-4.27592200000,,Plomodiern - Finistère,55159,observation-f4c0045d-f4be-4d39-a586-38ab9239184f-2,https://biolit.fr/observations/observation-f4c0045d-f4be-4d39-a586-38ab9239184f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010839.JPG,,FALSE, +N1,61202,sortie-f4c0045d-f4be-4d39-a586-38ab9239184f,https://biolit.fr/sorties/sortie-f4c0045d-f4be-4d39-a586-38ab9239184f/,Phil,,03/06/2016,12.000005,12.0000000,48.153736000000,-4.27592200000,,Plomodiern - Finistère,55161,observation-f4c0045d-f4be-4d39-a586-38ab9239184f-3,https://biolit.fr/observations/observation-f4c0045d-f4be-4d39-a586-38ab9239184f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010840.JPG,,FALSE, +N1,61203,sortie-adb5bf18-989b-4c6d-a3bb-7de1fea9ddba,https://biolit.fr/sorties/sortie-adb5bf18-989b-4c6d-a3bb-7de1fea9ddba/,Phil,,03/06/2016,11.0000000,11.0:35,48.1508920000,-4.273338000000,,Ploeven - Finistère,55163,observation-adb5bf18-989b-4c6d-a3bb-7de1fea9ddba,https://biolit.fr/observations/observation-adb5bf18-989b-4c6d-a3bb-7de1fea9ddba/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/P1010739.JPG,,TRUE, +N1,61203,sortie-adb5bf18-989b-4c6d-a3bb-7de1fea9ddba,https://biolit.fr/sorties/sortie-adb5bf18-989b-4c6d-a3bb-7de1fea9ddba/,Phil,,03/06/2016,11.0000000,11.0:35,48.1508920000,-4.273338000000,,Ploeven - Finistère,55165,observation-adb5bf18-989b-4c6d-a3bb-7de1fea9ddba-2,https://biolit.fr/observations/observation-adb5bf18-989b-4c6d-a3bb-7de1fea9ddba-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/P1010734.JPG,,TRUE, +N1,61203,sortie-adb5bf18-989b-4c6d-a3bb-7de1fea9ddba,https://biolit.fr/sorties/sortie-adb5bf18-989b-4c6d-a3bb-7de1fea9ddba/,Phil,,03/06/2016,11.0000000,11.0:35,48.1508920000,-4.273338000000,,Ploeven - Finistère,55167,observation-adb5bf18-989b-4c6d-a3bb-7de1fea9ddba-3,https://biolit.fr/observations/observation-adb5bf18-989b-4c6d-a3bb-7de1fea9ddba-3/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/P1010729.JPG,,TRUE, +N1,61203,sortie-adb5bf18-989b-4c6d-a3bb-7de1fea9ddba,https://biolit.fr/sorties/sortie-adb5bf18-989b-4c6d-a3bb-7de1fea9ddba/,Phil,,03/06/2016,11.0000000,11.0:35,48.1508920000,-4.273338000000,,Ploeven - Finistère,55169,observation-adb5bf18-989b-4c6d-a3bb-7de1fea9ddba-4,https://biolit.fr/observations/observation-adb5bf18-989b-4c6d-a3bb-7de1fea9ddba-4/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/P1010725-scaled.jpg,,TRUE, +N1,61204,sortie-69170a44-9488-40ca-8aac-43dbf9acbd33,https://biolit.fr/sorties/sortie-69170a44-9488-40ca-8aac-43dbf9acbd33/,Phil,,1/24/2016 0:00,17.0000000,17.000005,47.790949000000,-4.249434000000,,Léchiagat - Finistère,55171,observation-69170a44-9488-40ca-8aac-43dbf9acbd33,https://biolit.fr/observations/observation-69170a44-9488-40ca-8aac-43dbf9acbd33/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160124_170134.jpg,,FALSE, +N1,61205,sortie-9bb2327d-a535-4207-aecf-ca780515cf85,https://biolit.fr/sorties/sortie-9bb2327d-a535-4207-aecf-ca780515cf85/,Phil,,03/06/2016,11.0:25,11.0000000,48.150703000000,-4.274540000000,,Ploeven - Finistère,55173,observation-9bb2327d-a535-4207-aecf-ca780515cf85,https://biolit.fr/observations/observation-9bb2327d-a535-4207-aecf-ca780515cf85/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P1010718.JPG,,TRUE, +N1,61205,sortie-9bb2327d-a535-4207-aecf-ca780515cf85,https://biolit.fr/sorties/sortie-9bb2327d-a535-4207-aecf-ca780515cf85/,Phil,,03/06/2016,11.0:25,11.0000000,48.150703000000,-4.274540000000,,Ploeven - Finistère,55175,observation-9bb2327d-a535-4207-aecf-ca780515cf85-2,https://biolit.fr/observations/observation-9bb2327d-a535-4207-aecf-ca780515cf85-2/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P1010714.JPG,,TRUE, +N1,61205,sortie-9bb2327d-a535-4207-aecf-ca780515cf85,https://biolit.fr/sorties/sortie-9bb2327d-a535-4207-aecf-ca780515cf85/,Phil,,03/06/2016,11.0:25,11.0000000,48.150703000000,-4.274540000000,,Ploeven - Finistère,55177,observation-9bb2327d-a535-4207-aecf-ca780515cf85-3,https://biolit.fr/observations/observation-9bb2327d-a535-4207-aecf-ca780515cf85-3/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P1010722.JPG,,TRUE, +N1,61206,sortie-6ec1b9be-a2e5-45fc-9414-99d95accc066,https://biolit.fr/sorties/sortie-6ec1b9be-a2e5-45fc-9414-99d95accc066/,Phil,,03/06/2016,11.0000000,11.0000000,48.150604000000,-4.275986000000,,Ploeven - Finistère,55179,observation-6ec1b9be-a2e5-45fc-9414-99d95accc066,https://biolit.fr/observations/observation-6ec1b9be-a2e5-45fc-9414-99d95accc066/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010694.JPG,,FALSE, +N1,61206,sortie-6ec1b9be-a2e5-45fc-9414-99d95accc066,https://biolit.fr/sorties/sortie-6ec1b9be-a2e5-45fc-9414-99d95accc066/,Phil,,03/06/2016,11.0000000,11.0000000,48.150604000000,-4.275986000000,,Ploeven - Finistère,55181,observation-6ec1b9be-a2e5-45fc-9414-99d95accc066-2,https://biolit.fr/observations/observation-6ec1b9be-a2e5-45fc-9414-99d95accc066-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010695.JPG,,FALSE, +N1,61206,sortie-6ec1b9be-a2e5-45fc-9414-99d95accc066,https://biolit.fr/sorties/sortie-6ec1b9be-a2e5-45fc-9414-99d95accc066/,Phil,,03/06/2016,11.0000000,11.0000000,48.150604000000,-4.275986000000,,Ploeven - Finistère,55183,observation-6ec1b9be-a2e5-45fc-9414-99d95accc066-3,https://biolit.fr/observations/observation-6ec1b9be-a2e5-45fc-9414-99d95accc066-3/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/P1010675.JPG,,TRUE, +N1,61206,sortie-6ec1b9be-a2e5-45fc-9414-99d95accc066,https://biolit.fr/sorties/sortie-6ec1b9be-a2e5-45fc-9414-99d95accc066/,Phil,,03/06/2016,11.0000000,11.0000000,48.150604000000,-4.275986000000,,Ploeven - Finistère,55185,observation-6ec1b9be-a2e5-45fc-9414-99d95accc066-4,https://biolit.fr/observations/observation-6ec1b9be-a2e5-45fc-9414-99d95accc066-4/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1010678.JPG,,TRUE, +N1,61206,sortie-6ec1b9be-a2e5-45fc-9414-99d95accc066,https://biolit.fr/sorties/sortie-6ec1b9be-a2e5-45fc-9414-99d95accc066/,Phil,,03/06/2016,11.0000000,11.0000000,48.150604000000,-4.275986000000,,Ploeven - Finistère,55187,observation-6ec1b9be-a2e5-45fc-9414-99d95accc066-5,https://biolit.fr/observations/observation-6ec1b9be-a2e5-45fc-9414-99d95accc066-5/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1010683.JPG,,TRUE, +N1,61206,sortie-6ec1b9be-a2e5-45fc-9414-99d95accc066,https://biolit.fr/sorties/sortie-6ec1b9be-a2e5-45fc-9414-99d95accc066/,Phil,,03/06/2016,11.0000000,11.0000000,48.150604000000,-4.275986000000,,Ploeven - Finistère,55189,observation-6ec1b9be-a2e5-45fc-9414-99d95accc066-6,https://biolit.fr/observations/observation-6ec1b9be-a2e5-45fc-9414-99d95accc066-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010702.JPG,,FALSE, +N1,61206,sortie-6ec1b9be-a2e5-45fc-9414-99d95accc066,https://biolit.fr/sorties/sortie-6ec1b9be-a2e5-45fc-9414-99d95accc066/,Phil,,03/06/2016,11.0000000,11.0000000,48.150604000000,-4.275986000000,,Ploeven - Finistère,55191,observation-6ec1b9be-a2e5-45fc-9414-99d95accc066-7,https://biolit.fr/observations/observation-6ec1b9be-a2e5-45fc-9414-99d95accc066-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010705-scaled.jpg,,FALSE, +N1,61207,sortie-71c90c82-ec0c-4012-805f-b31d83cd24fe,https://biolit.fr/sorties/sortie-71c90c82-ec0c-4012-805f-b31d83cd24fe/,Ecole de la mer,,03/05/2016,13.0:15,16.0:45,16.327839000000,-61.319993000000,,"Le Moule, Ansalabuelle",55193,observation-71c90c82-ec0c-4012-805f-b31d83cd24fe,https://biolit.fr/observations/observation-71c90c82-ec0c-4012-805f-b31d83cd24fe/,Megaptera novaeangliae,Baleine à bosse,,https://biolit.fr/wp-content/uploads/2023/07/4-IMG_8326-scaled.jpg,,TRUE, +N1,61208,sortie-b1ebb2dc-7999-4b78-85b6-14a53cf0f11e,https://biolit.fr/sorties/sortie-b1ebb2dc-7999-4b78-85b6-14a53cf0f11e/,Phil,,03/06/2016,11.0000000,11.0:15,48.150759000000,-4.275707000000,,Ploeven - Finistère,55195,observation-b1ebb2dc-7999-4b78-85b6-14a53cf0f11e,https://biolit.fr/observations/observation-b1ebb2dc-7999-4b78-85b6-14a53cf0f11e/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1010659.JPG,,TRUE, +N1,61208,sortie-b1ebb2dc-7999-4b78-85b6-14a53cf0f11e,https://biolit.fr/sorties/sortie-b1ebb2dc-7999-4b78-85b6-14a53cf0f11e/,Phil,,03/06/2016,11.0000000,11.0:15,48.150759000000,-4.275707000000,,Ploeven - Finistère,55197,observation-b1ebb2dc-7999-4b78-85b6-14a53cf0f11e-2,https://biolit.fr/observations/observation-b1ebb2dc-7999-4b78-85b6-14a53cf0f11e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010663.JPG,,FALSE, +N1,61208,sortie-b1ebb2dc-7999-4b78-85b6-14a53cf0f11e,https://biolit.fr/sorties/sortie-b1ebb2dc-7999-4b78-85b6-14a53cf0f11e/,Phil,,03/06/2016,11.0000000,11.0:15,48.150759000000,-4.275707000000,,Ploeven - Finistère,55199,observation-b1ebb2dc-7999-4b78-85b6-14a53cf0f11e-3,https://biolit.fr/observations/observation-b1ebb2dc-7999-4b78-85b6-14a53cf0f11e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010673.JPG,,FALSE, +N1,61208,sortie-b1ebb2dc-7999-4b78-85b6-14a53cf0f11e,https://biolit.fr/sorties/sortie-b1ebb2dc-7999-4b78-85b6-14a53cf0f11e/,Phil,,03/06/2016,11.0000000,11.0:15,48.150759000000,-4.275707000000,,Ploeven - Finistère,55201,observation-b1ebb2dc-7999-4b78-85b6-14a53cf0f11e-4,https://biolit.fr/observations/observation-b1ebb2dc-7999-4b78-85b6-14a53cf0f11e-4/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P1010666.JPG,,TRUE, +N1,61209,sortie-e2aa4754-4300-439a-9737-c8489e88762c,https://biolit.fr/sorties/sortie-e2aa4754-4300-439a-9737-c8489e88762c/,Lycée Langevin L'équipe de Salah,,2/22/2016 0:00,15.0000000,16.0000000,43.421579000000,5.06075400000,,base de tolon,55203,observation-e2aa4754-4300-439a-9737-c8489e88762c,https://biolit.fr/observations/observation-e2aa4754-4300-439a-9737-c8489e88762c/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160222_144642-scaled.jpg,,FALSE, +N1,61209,sortie-e2aa4754-4300-439a-9737-c8489e88762c,https://biolit.fr/sorties/sortie-e2aa4754-4300-439a-9737-c8489e88762c/,Lycée Langevin L'équipe de Salah,,2/22/2016 0:00,15.0000000,16.0000000,43.421579000000,5.06075400000,,base de tolon,55205,observation-e2aa4754-4300-439a-9737-c8489e88762c-2,https://biolit.fr/observations/observation-e2aa4754-4300-439a-9737-c8489e88762c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160222_144706-scaled.jpg,,FALSE, +N1,61209,sortie-e2aa4754-4300-439a-9737-c8489e88762c,https://biolit.fr/sorties/sortie-e2aa4754-4300-439a-9737-c8489e88762c/,Lycée Langevin L'équipe de Salah,,2/22/2016 0:00,15.0000000,16.0000000,43.421579000000,5.06075400000,,base de tolon,55207,observation-e2aa4754-4300-439a-9737-c8489e88762c-3,https://biolit.fr/observations/observation-e2aa4754-4300-439a-9737-c8489e88762c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/ege.png,,FALSE, +N1,61209,sortie-e2aa4754-4300-439a-9737-c8489e88762c,https://biolit.fr/sorties/sortie-e2aa4754-4300-439a-9737-c8489e88762c/,Lycée Langevin L'équipe de Salah,,2/22/2016 0:00,15.0000000,16.0000000,43.421579000000,5.06075400000,,base de tolon,55209,observation-e2aa4754-4300-439a-9737-c8489e88762c-4,https://biolit.fr/observations/observation-e2aa4754-4300-439a-9737-c8489e88762c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/laaaaaa.png,,FALSE, +N1,61209,sortie-e2aa4754-4300-439a-9737-c8489e88762c,https://biolit.fr/sorties/sortie-e2aa4754-4300-439a-9737-c8489e88762c/,Lycée Langevin L'équipe de Salah,,2/22/2016 0:00,15.0000000,16.0000000,43.421579000000,5.06075400000,,base de tolon,55211,observation-e2aa4754-4300-439a-9737-c8489e88762c-5,https://biolit.fr/observations/observation-e2aa4754-4300-439a-9737-c8489e88762c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/yooo.png,,FALSE, +N1,61210,sortie-6c102c5a-4d96-4ab9-b949-d98234b3a409,https://biolit.fr/sorties/sortie-6c102c5a-4d96-4ab9-b949-d98234b3a409/,Lycée Langevin Les Moules Asiatiques,,2/22/2016 0:00,14.0000000,16.0000000,43.422971000000,5.060603000000,,Domaine du Tholon,55213,observation-6c102c5a-4d96-4ab9-b949-d98234b3a409,https://biolit.fr/observations/observation-6c102c5a-4d96-4ab9-b949-d98234b3a409/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/biolit 1_0.jpg,,TRUE, +N1,61210,sortie-6c102c5a-4d96-4ab9-b949-d98234b3a409,https://biolit.fr/sorties/sortie-6c102c5a-4d96-4ab9-b949-d98234b3a409/,Lycée Langevin Les Moules Asiatiques,,2/22/2016 0:00,14.0000000,16.0000000,43.422971000000,5.060603000000,,Domaine du Tholon,55215,observation-6c102c5a-4d96-4ab9-b949-d98234b3a409-2,https://biolit.fr/observations/observation-6c102c5a-4d96-4ab9-b949-d98234b3a409-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/biolit 5.jpg,,FALSE, +N1,61210,sortie-6c102c5a-4d96-4ab9-b949-d98234b3a409,https://biolit.fr/sorties/sortie-6c102c5a-4d96-4ab9-b949-d98234b3a409/,Lycée Langevin Les Moules Asiatiques,,2/22/2016 0:00,14.0000000,16.0000000,43.422971000000,5.060603000000,,Domaine du Tholon,55217,observation-6c102c5a-4d96-4ab9-b949-d98234b3a409-3,https://biolit.fr/observations/observation-6c102c5a-4d96-4ab9-b949-d98234b3a409-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/biolit 6.jpg,,FALSE, +N1,61210,sortie-6c102c5a-4d96-4ab9-b949-d98234b3a409,https://biolit.fr/sorties/sortie-6c102c5a-4d96-4ab9-b949-d98234b3a409/,Lycée Langevin Les Moules Asiatiques,,2/22/2016 0:00,14.0000000,16.0000000,43.422971000000,5.060603000000,,Domaine du Tholon,55219,observation-6c102c5a-4d96-4ab9-b949-d98234b3a409-4,https://biolit.fr/observations/observation-6c102c5a-4d96-4ab9-b949-d98234b3a409-4/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/biolit 8_0.jpg,,TRUE, +N1,61210,sortie-6c102c5a-4d96-4ab9-b949-d98234b3a409,https://biolit.fr/sorties/sortie-6c102c5a-4d96-4ab9-b949-d98234b3a409/,Lycée Langevin Les Moules Asiatiques,,2/22/2016 0:00,14.0000000,16.0000000,43.422971000000,5.060603000000,,Domaine du Tholon,55221,observation-6c102c5a-4d96-4ab9-b949-d98234b3a409-5,https://biolit.fr/observations/observation-6c102c5a-4d96-4ab9-b949-d98234b3a409-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/biolit 9.jpg,,FALSE, +N1,61210,sortie-6c102c5a-4d96-4ab9-b949-d98234b3a409,https://biolit.fr/sorties/sortie-6c102c5a-4d96-4ab9-b949-d98234b3a409/,Lycée Langevin Les Moules Asiatiques,,2/22/2016 0:00,14.0000000,16.0000000,43.422971000000,5.060603000000,,Domaine du Tholon,55223,observation-6c102c5a-4d96-4ab9-b949-d98234b3a409-6,https://biolit.fr/observations/observation-6c102c5a-4d96-4ab9-b949-d98234b3a409-6/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/biolit 13.jpg,,TRUE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55225,observation-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/P1060617-scaled.jpg,,TRUE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55227,observation-60aad011-8788-4e04-8111-0aa5aa8a61be-2,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060616-scaled.jpg,,FALSE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55229,observation-60aad011-8788-4e04-8111-0aa5aa8a61be-3,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060620-scaled.jpg,,FALSE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55231,observation-60aad011-8788-4e04-8111-0aa5aa8a61be-4,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060622-scaled.jpg,,FALSE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55233,observation-60aad011-8788-4e04-8111-0aa5aa8a61be-5,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be-5/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/P1060623-scaled.jpg,,TRUE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55235,observation-60aad011-8788-4e04-8111-0aa5aa8a61be-6,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be-6/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/P1060624-scaled.jpg,,TRUE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55237,observation-60aad011-8788-4e04-8111-0aa5aa8a61be-7,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be-7/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1060625-scaled.jpg,,TRUE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55239,observation-60aad011-8788-4e04-8111-0aa5aa8a61be-8,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be-8/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/P1060626-scaled.jpg,,TRUE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55241,observation-60aad011-8788-4e04-8111-0aa5aa8a61be-9,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060663-scaled.jpg,,FALSE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55243,observation-60aad011-8788-4e04-8111-0aa5aa8a61be-10,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be-10/,Limaria hians,Lime bâillante,,https://biolit.fr/wp-content/uploads/2023/07/P1060629-scaled.jpg,,TRUE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55245,observation-60aad011-8788-4e04-8111-0aa5aa8a61be-11,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060630-scaled.jpg,,FALSE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55247,observation-60aad011-8788-4e04-8111-0aa5aa8a61be-12,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be-12/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/P1060642-scaled.jpg,,TRUE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55249,observation-60aad011-8788-4e04-8111-0aa5aa8a61be-13,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060646-scaled.jpg,,FALSE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55251,observation-60aad011-8788-4e04-8111-0aa5aa8a61be-14,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be-14/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/2023/07/P1060638-scaled.jpg,,TRUE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55253,observation-60aad011-8788-4e04-8111-0aa5aa8a61be-15,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060648-scaled.jpg,,FALSE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55255,observation-60aad011-8788-4e04-8111-0aa5aa8a61be-16,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be-16/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/P1060644-scaled.jpg,,TRUE, +N1,61211,sortie-60aad011-8788-4e04-8111-0aa5aa8a61be,https://biolit.fr/sorties/sortie-60aad011-8788-4e04-8111-0aa5aa8a61be/,Ville de Marseille,,03/04/2016,10.0:15,11.0:15,43.239850000000,5.362373000000,,"plage du Bain des Dames, Marseille",55257,observation-60aad011-8788-4e04-8111-0aa5aa8a61be-17,https://biolit.fr/observations/observation-60aad011-8788-4e04-8111-0aa5aa8a61be-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060657-scaled.jpg,,FALSE, +N1,61212,sortie-4c86e1ff-ab60-4197-806e-6f80e0a5e1ab,https://biolit.fr/sorties/sortie-4c86e1ff-ab60-4197-806e-6f80e0a5e1ab/,Lycée Langevin Claudette,,2/22/2016 0:00,15.0000000,15.0000000,43.420463000000,5.061040000000,,Étang de Berre,55259,observation-4c86e1ff-ab60-4197-806e-6f80e0a5e1ab,https://biolit.fr/observations/observation-4c86e1ff-ab60-4197-806e-6f80e0a5e1ab/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/05/image_2.jpg,,TRUE, +N1,61212,sortie-4c86e1ff-ab60-4197-806e-6f80e0a5e1ab,https://biolit.fr/sorties/sortie-4c86e1ff-ab60-4197-806e-6f80e0a5e1ab/,Lycée Langevin Claudette,,2/22/2016 0:00,15.0000000,15.0000000,43.420463000000,5.061040000000,,Étang de Berre,55260,observation-4c86e1ff-ab60-4197-806e-6f80e0a5e1ab-2,https://biolit.fr/observations/observation-4c86e1ff-ab60-4197-806e-6f80e0a5e1ab-2/,,,,https://biolit.fr/wp-content/uploads/2023/05/image_3.jpg,,FALSE, +N1,61213,sortie-0370af52-a7e6-4e8d-afdb-b0cc9e329bb5,https://biolit.fr/sorties/sortie-0370af52-a7e6-4e8d-afdb-b0cc9e329bb5/,Phil,,03/06/2016,11.0000000,11.000005,48.152946000000,-4.2740500000,,Ploeven - Finistère,55261,observation-0370af52-a7e6-4e8d-afdb-b0cc9e329bb5,https://biolit.fr/observations/observation-0370af52-a7e6-4e8d-afdb-b0cc9e329bb5/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1010628.JPG,,TRUE, +N1,61213,sortie-0370af52-a7e6-4e8d-afdb-b0cc9e329bb5,https://biolit.fr/sorties/sortie-0370af52-a7e6-4e8d-afdb-b0cc9e329bb5/,Phil,,03/06/2016,11.0000000,11.000005,48.152946000000,-4.2740500000,,Ploeven - Finistère,55263,observation-0370af52-a7e6-4e8d-afdb-b0cc9e329bb5-2,https://biolit.fr/observations/observation-0370af52-a7e6-4e8d-afdb-b0cc9e329bb5-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1010633.JPG,,TRUE, +N1,61213,sortie-0370af52-a7e6-4e8d-afdb-b0cc9e329bb5,https://biolit.fr/sorties/sortie-0370af52-a7e6-4e8d-afdb-b0cc9e329bb5/,Phil,,03/06/2016,11.0000000,11.000005,48.152946000000,-4.2740500000,,Ploeven - Finistère,55265,observation-0370af52-a7e6-4e8d-afdb-b0cc9e329bb5-3,https://biolit.fr/observations/observation-0370af52-a7e6-4e8d-afdb-b0cc9e329bb5-3/,Calidris alba,Bécasseau sanderling,,https://biolit.fr/wp-content/uploads/2023/07/P1010653.JPG,,TRUE, +N1,61213,sortie-0370af52-a7e6-4e8d-afdb-b0cc9e329bb5,https://biolit.fr/sorties/sortie-0370af52-a7e6-4e8d-afdb-b0cc9e329bb5/,Phil,,03/06/2016,11.0000000,11.000005,48.152946000000,-4.2740500000,,Ploeven - Finistère,55267,observation-0370af52-a7e6-4e8d-afdb-b0cc9e329bb5-4,https://biolit.fr/observations/observation-0370af52-a7e6-4e8d-afdb-b0cc9e329bb5-4/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1010619.JPG,,TRUE, +N1,61214,sortie-85532d6c-d39d-4e26-837a-f36e6b20a958,https://biolit.fr/sorties/sortie-85532d6c-d39d-4e26-837a-f36e6b20a958/,Phil,,03/06/2016,10.0:45,10.0:55,48.15043200000,-4.276351000000,,Ploeven - Finistère,55269,observation-85532d6c-d39d-4e26-837a-f36e6b20a958,https://biolit.fr/observations/observation-85532d6c-d39d-4e26-837a-f36e6b20a958/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010604.JPG,,FALSE, +N1,61214,sortie-85532d6c-d39d-4e26-837a-f36e6b20a958,https://biolit.fr/sorties/sortie-85532d6c-d39d-4e26-837a-f36e6b20a958/,Phil,,03/06/2016,10.0:45,10.0:55,48.15043200000,-4.276351000000,,Ploeven - Finistère,55271,observation-85532d6c-d39d-4e26-837a-f36e6b20a958-2,https://biolit.fr/observations/observation-85532d6c-d39d-4e26-837a-f36e6b20a958-2/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1010611.JPG,,TRUE, +N1,61214,sortie-85532d6c-d39d-4e26-837a-f36e6b20a958,https://biolit.fr/sorties/sortie-85532d6c-d39d-4e26-837a-f36e6b20a958/,Phil,,03/06/2016,10.0:45,10.0:55,48.15043200000,-4.276351000000,,Ploeven - Finistère,55273,observation-85532d6c-d39d-4e26-837a-f36e6b20a958-3,https://biolit.fr/observations/observation-85532d6c-d39d-4e26-837a-f36e6b20a958-3/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1010614.JPG,,TRUE, +N1,61214,sortie-85532d6c-d39d-4e26-837a-f36e6b20a958,https://biolit.fr/sorties/sortie-85532d6c-d39d-4e26-837a-f36e6b20a958/,Phil,,03/06/2016,10.0:45,10.0:55,48.15043200000,-4.276351000000,,Ploeven - Finistère,55275,observation-85532d6c-d39d-4e26-837a-f36e6b20a958-4,https://biolit.fr/observations/observation-85532d6c-d39d-4e26-837a-f36e6b20a958-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010609.JPG,,FALSE, +N1,61215,sortie-80fe8f9e-d931-4602-913d-acd8ede692a9,https://biolit.fr/sorties/sortie-80fe8f9e-d931-4602-913d-acd8ede692a9/,Lycée Langevin Les Bigorneaux,,2/22/2016 0:00,14.0000000,16.0:15,43.421587000000,5.060821000000,,Etang de berre,55277,observation-80fe8f9e-d931-4602-913d-acd8ede692a9,https://biolit.fr/observations/observation-80fe8f9e-d931-4602-913d-acd8ede692a9/,,,,https://biolit.fr/wp-content/uploads/2023/07/1_0-scaled.jpg,,FALSE, +N1,61215,sortie-80fe8f9e-d931-4602-913d-acd8ede692a9,https://biolit.fr/sorties/sortie-80fe8f9e-d931-4602-913d-acd8ede692a9/,Lycée Langevin Les Bigorneaux,,2/22/2016 0:00,14.0000000,16.0:15,43.421587000000,5.060821000000,,Etang de berre,55279,observation-80fe8f9e-d931-4602-913d-acd8ede692a9-2,https://biolit.fr/observations/observation-80fe8f9e-d931-4602-913d-acd8ede692a9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/2-scaled.jpg,,FALSE, +N1,61215,sortie-80fe8f9e-d931-4602-913d-acd8ede692a9,https://biolit.fr/sorties/sortie-80fe8f9e-d931-4602-913d-acd8ede692a9/,Lycée Langevin Les Bigorneaux,,2/22/2016 0:00,14.0000000,16.0:15,43.421587000000,5.060821000000,,Etang de berre,55280,observation-80fe8f9e-d931-4602-913d-acd8ede692a9-3,https://biolit.fr/observations/observation-80fe8f9e-d931-4602-913d-acd8ede692a9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/3.png,,FALSE, +N1,61215,sortie-80fe8f9e-d931-4602-913d-acd8ede692a9,https://biolit.fr/sorties/sortie-80fe8f9e-d931-4602-913d-acd8ede692a9/,Lycée Langevin Les Bigorneaux,,2/22/2016 0:00,14.0000000,16.0:15,43.421587000000,5.060821000000,,Etang de berre,55281,observation-80fe8f9e-d931-4602-913d-acd8ede692a9-4,https://biolit.fr/observations/observation-80fe8f9e-d931-4602-913d-acd8ede692a9-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/4-scaled.jpg,,FALSE, +N1,61215,sortie-80fe8f9e-d931-4602-913d-acd8ede692a9,https://biolit.fr/sorties/sortie-80fe8f9e-d931-4602-913d-acd8ede692a9/,Lycée Langevin Les Bigorneaux,,2/22/2016 0:00,14.0000000,16.0:15,43.421587000000,5.060821000000,,Etang de berre,55282,observation-80fe8f9e-d931-4602-913d-acd8ede692a9-5,https://biolit.fr/observations/observation-80fe8f9e-d931-4602-913d-acd8ede692a9-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/5-scaled.jpg,,FALSE, +N1,61215,sortie-80fe8f9e-d931-4602-913d-acd8ede692a9,https://biolit.fr/sorties/sortie-80fe8f9e-d931-4602-913d-acd8ede692a9/,Lycée Langevin Les Bigorneaux,,2/22/2016 0:00,14.0000000,16.0:15,43.421587000000,5.060821000000,,Etang de berre,55284,observation-80fe8f9e-d931-4602-913d-acd8ede692a9-6,https://biolit.fr/observations/observation-80fe8f9e-d931-4602-913d-acd8ede692a9-6/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/6.jpg,,TRUE, +N1,61215,sortie-80fe8f9e-d931-4602-913d-acd8ede692a9,https://biolit.fr/sorties/sortie-80fe8f9e-d931-4602-913d-acd8ede692a9/,Lycée Langevin Les Bigorneaux,,2/22/2016 0:00,14.0000000,16.0:15,43.421587000000,5.060821000000,,Etang de berre,55285,observation-80fe8f9e-d931-4602-913d-acd8ede692a9-7,https://biolit.fr/observations/observation-80fe8f9e-d931-4602-913d-acd8ede692a9-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/7.jpg,,FALSE, +N1,61216,sortie-37defd78-13cb-40b1-9ad8-cafaf3336d1d,https://biolit.fr/sorties/sortie-37defd78-13cb-40b1-9ad8-cafaf3336d1d/,Les bagass,,2/22/2016 0:00,14.0000000,16.0000000,43.420743000000,5.061038000000,,Martigues,55286,observation-37defd78-13cb-40b1-9ad8-cafaf3336d1d,https://biolit.fr/observations/observation-37defd78-13cb-40b1-9ad8-cafaf3336d1d/,,,,https://biolit.fr/wp-content/uploads/2023/07/Espece-4.jpg,,FALSE, +N1,61216,sortie-37defd78-13cb-40b1-9ad8-cafaf3336d1d,https://biolit.fr/sorties/sortie-37defd78-13cb-40b1-9ad8-cafaf3336d1d/,Les bagass,,2/22/2016 0:00,14.0000000,16.0000000,43.420743000000,5.061038000000,,Martigues,55297,observation-37defd78-13cb-40b1-9ad8-cafaf3336d1d-2,https://biolit.fr/observations/observation-37defd78-13cb-40b1-9ad8-cafaf3336d1d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Espece 2.jpg,,FALSE, +N1,61216,sortie-37defd78-13cb-40b1-9ad8-cafaf3336d1d,https://biolit.fr/sorties/sortie-37defd78-13cb-40b1-9ad8-cafaf3336d1d/,Les bagass,,2/22/2016 0:00,14.0000000,16.0000000,43.420743000000,5.061038000000,,Martigues,55299,observation-37defd78-13cb-40b1-9ad8-cafaf3336d1d-3,https://biolit.fr/observations/observation-37defd78-13cb-40b1-9ad8-cafaf3336d1d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Espece 3.jpg,,FALSE, +N1,61216,sortie-37defd78-13cb-40b1-9ad8-cafaf3336d1d,https://biolit.fr/sorties/sortie-37defd78-13cb-40b1-9ad8-cafaf3336d1d/,Les bagass,,2/22/2016 0:00,14.0000000,16.0000000,43.420743000000,5.061038000000,,Martigues,55301,observation-37defd78-13cb-40b1-9ad8-cafaf3336d1d-4,https://biolit.fr/observations/observation-37defd78-13cb-40b1-9ad8-cafaf3336d1d-4/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/Espece 4.jpg,,TRUE, +N1,61216,sortie-37defd78-13cb-40b1-9ad8-cafaf3336d1d,https://biolit.fr/sorties/sortie-37defd78-13cb-40b1-9ad8-cafaf3336d1d/,Les bagass,,2/22/2016 0:00,14.0000000,16.0000000,43.420743000000,5.061038000000,,Martigues,55303,observation-37defd78-13cb-40b1-9ad8-cafaf3336d1d-5,https://biolit.fr/observations/observation-37defd78-13cb-40b1-9ad8-cafaf3336d1d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Espece 5.jpg,,FALSE, +N1,61216,sortie-37defd78-13cb-40b1-9ad8-cafaf3336d1d,https://biolit.fr/sorties/sortie-37defd78-13cb-40b1-9ad8-cafaf3336d1d/,Les bagass,,2/22/2016 0:00,14.0000000,16.0000000,43.420743000000,5.061038000000,,Martigues,55305,observation-37defd78-13cb-40b1-9ad8-cafaf3336d1d-6,https://biolit.fr/observations/observation-37defd78-13cb-40b1-9ad8-cafaf3336d1d-6/,Arcuatula senhousia,Moule asiatique,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Espece 6.jpg,,TRUE, +N1,61216,sortie-37defd78-13cb-40b1-9ad8-cafaf3336d1d,https://biolit.fr/sorties/sortie-37defd78-13cb-40b1-9ad8-cafaf3336d1d/,Les bagass,,2/22/2016 0:00,14.0000000,16.0000000,43.420743000000,5.061038000000,,Martigues,55307,observation-37defd78-13cb-40b1-9ad8-cafaf3336d1d-7,https://biolit.fr/observations/observation-37defd78-13cb-40b1-9ad8-cafaf3336d1d-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Polution.jpg,,FALSE, +N1,61217,sortie-3f0d7d4f-3f56-44ab-a45f-0928fc1f9673,https://biolit.fr/sorties/sortie-3f0d7d4f-3f56-44ab-a45f-0928fc1f9673/,Phil,,1/24/2016 0:00,17.0000000,17.0:35,47.792322000000,-4.241924000000,,Léchiagat - Finistère,55309,observation-3f0d7d4f-3f56-44ab-a45f-0928fc1f9673,https://biolit.fr/observations/observation-3f0d7d4f-3f56-44ab-a45f-0928fc1f9673/,Calidris alpina,Bécasseau variable,,https://biolit.fr/wp-content/uploads/2023/07/P1010054.JPG,,TRUE, +N1,61217,sortie-3f0d7d4f-3f56-44ab-a45f-0928fc1f9673,https://biolit.fr/sorties/sortie-3f0d7d4f-3f56-44ab-a45f-0928fc1f9673/,Phil,,1/24/2016 0:00,17.0000000,17.0:35,47.792322000000,-4.241924000000,,Léchiagat - Finistère,55311,observation-3f0d7d4f-3f56-44ab-a45f-0928fc1f9673-2,https://biolit.fr/observations/observation-3f0d7d4f-3f56-44ab-a45f-0928fc1f9673-2/,Calidris alpina,Bécasseau variable,,https://biolit.fr/wp-content/uploads/2023/07/P1010059.JPG,,TRUE, +N1,61217,sortie-3f0d7d4f-3f56-44ab-a45f-0928fc1f9673,https://biolit.fr/sorties/sortie-3f0d7d4f-3f56-44ab-a45f-0928fc1f9673/,Phil,,1/24/2016 0:00,17.0000000,17.0:35,47.792322000000,-4.241924000000,,Léchiagat - Finistère,55313,observation-3f0d7d4f-3f56-44ab-a45f-0928fc1f9673-3,https://biolit.fr/observations/observation-3f0d7d4f-3f56-44ab-a45f-0928fc1f9673-3/,Calidris alpina,Bécasseau variable,,https://biolit.fr/wp-content/uploads/2023/07/P1010065.JPG,,TRUE, +N1,61218,sortie-5e8de7cf-3623-40cc-8169-803f24e87109,https://biolit.fr/sorties/sortie-5e8de7cf-3623-40cc-8169-803f24e87109/,Ville de Marseille Ecole Prado Plage CE2-CM1,,12/14/2015 0:00,14.0000000,15.0000000,43.267793000000,5.370350000000,,Plagette du Roucas blanc,55315,observation-5e8de7cf-3623-40cc-8169-803f24e87109,https://biolit.fr/observations/observation-5e8de7cf-3623-40cc-8169-803f24e87109/,,,,https://biolit.fr/wp-content/uploads/2023/07/troque Monodonta turbinata 2.jpg,,FALSE, +N1,61219,sortie-8e772fc5-65e6-414c-ad0b-b9c78bd0e985,https://biolit.fr/sorties/sortie-8e772fc5-65e6-414c-ad0b-b9c78bd0e985/,Ville de Marseille Ecole Prado Plage CE2-CM1,,12/14/2015 0:00,14.0000000,15.0000000,43.267602000000,5.370404000000,,Plagette du Roucas blanc,55317,observation-8e772fc5-65e6-414c-ad0b-b9c78bd0e985,https://biolit.fr/observations/observation-8e772fc5-65e6-414c-ad0b-b9c78bd0e985/,,,,https://biolit.fr/wp-content/uploads/2023/07/troque Monodonta turbinata 1.jpg,,FALSE, +N1,61220,sortie-6ee4688f-4326-4a4b-a6c2-c660c249d875,https://biolit.fr/sorties/sortie-6ee4688f-4326-4a4b-a6c2-c660c249d875/,Ville de Marseille Ecole Prado Plage CE2-CM1,,12/14/2015 0:00,14.0000000,15.0000000,43.267724000000,5.370345000000,,Plagette du Roucas blanc,55319,observation-6ee4688f-4326-4a4b-a6c2-c660c249d875,https://biolit.fr/observations/observation-6ee4688f-4326-4a4b-a6c2-c660c249d875/,,,,https://biolit.fr/wp-content/uploads/2023/07/Rissoa inconspicua.jpg,,FALSE, +N1,61221,sortie-1c1760a0-8235-45bd-a0bc-b4e11dc19228,https://biolit.fr/sorties/sortie-1c1760a0-8235-45bd-a0bc-b4e11dc19228/,Ville de Marseille Ecole Prado Plage CE2-CM1,,12/14/2015 0:00,14.0000000,15.0000000,43.267767000000,5.37038200000,,Plagette du Roucas blanc,55321,observation-1c1760a0-8235-45bd-a0bc-b4e11dc19228,https://biolit.fr/observations/observation-1c1760a0-8235-45bd-a0bc-b4e11dc19228/,,,,https://biolit.fr/wp-content/uploads/2023/07/Palourde Tapes decussatus.jpg,,FALSE, +N1,61222,sortie-c5391326-48c3-48bb-acd8-40a0a5a0551c,https://biolit.fr/sorties/sortie-c5391326-48c3-48bb-acd8-40a0a5a0551c/,Ville de Marseille Ecole Prado Plage CE2-CM1,,03/02/2016,19.0000000,21.0000000,43.26790100000,5.370281000000,,Plagette du Roucas blanc,55323,observation-c5391326-48c3-48bb-acd8-40a0a5a0551c,https://biolit.fr/observations/observation-c5391326-48c3-48bb-acd8-40a0a5a0551c/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lucine Loripes lucinalis 1.jpg,,FALSE, +N1,61222,sortie-c5391326-48c3-48bb-acd8-40a0a5a0551c,https://biolit.fr/sorties/sortie-c5391326-48c3-48bb-acd8-40a0a5a0551c/,Ville de Marseille Ecole Prado Plage CE2-CM1,,03/02/2016,19.0000000,21.0000000,43.26790100000,5.370281000000,,Plagette du Roucas blanc,55325,observation-c5391326-48c3-48bb-acd8-40a0a5a0551c-2,https://biolit.fr/observations/observation-c5391326-48c3-48bb-acd8-40a0a5a0551c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lucine Loripes lucinalis 2.jpg,,FALSE, +N1,61223,sortie-6e8779ed-db04-4739-a912-dbdf68c717ca,https://biolit.fr/sorties/sortie-6e8779ed-db04-4739-a912-dbdf68c717ca/,slegallais,,7/16/2015 0:00,9.0000000,11.0000000,42.687584000000,9.450414000000,,Bastia,55327,observation-6e8779ed-db04-4739-a912-dbdf68c717ca,https://biolit.fr/observations/observation-6e8779ed-db04-4739-a912-dbdf68c717ca/,Pinna nobilis,Grande nacre,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7294.jpg,,TRUE, +N1,61224,sortie-61d29fbb-6e04-44a4-aaa7-fe7a6eb7c5e2,https://biolit.fr/sorties/sortie-61d29fbb-6e04-44a4-aaa7-fe7a6eb7c5e2/,slegallais,,04/12/2012,10.0000000,12.0000000,42.702724000000,9.461829000000,,Bastia,55329,observation-61d29fbb-6e04-44a4-aaa7-fe7a6eb7c5e2,https://biolit.fr/observations/observation-61d29fbb-6e04-44a4-aaa7-fe7a6eb7c5e2/,Sepia officinalis,Seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Photo 110.jpg,,TRUE, +N1,61225,sortie-afd849cb-8342-4369-89a3-28a1a00137bf,https://biolit.fr/sorties/sortie-afd849cb-8342-4369-89a3-28a1a00137bf/,Ville de Marseille Ecole Prado Plage CE2-CM1,,03/02/2016,1.0000000,3.0000000,43.267983000000,5.370205000000,,Plagette du Roucas blanc,55331,observation-afd849cb-8342-4369-89a3-28a1a00137bf,https://biolit.fr/observations/observation-afd849cb-8342-4369-89a3-28a1a00137bf/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/Coque Cerastoderma edule.jpg,,TRUE, +N1,61226,sortie-46226fac-da1f-4aa4-9632-239514be50af,https://biolit.fr/sorties/sortie-46226fac-da1f-4aa4-9632-239514be50af/,Ville de Marseille Ecole Prado Plage CE2-CM1,,03/02/2016,1.0000000,3.0000000,43.267932000000,5.370023000000,,Plagette du Roucas blanc,55333,observation-46226fac-da1f-4aa4-9632-239514be50af,https://biolit.fr/observations/observation-46226fac-da1f-4aa4-9632-239514be50af/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/Cerithe- Cerithium vulgatum-scaled.jpg,,TRUE, +N1,61227,sortie-7dd9796a-4f56-4025-87fa-b58fa10dc2a2,https://biolit.fr/sorties/sortie-7dd9796a-4f56-4025-87fa-b58fa10dc2a2/,Ville de Marseille,,2/26/2016 0:00,12.0000000,13.0000000,43.284000000000,5.3166360000,,"Calanque de St Estève, archipel du Frioul",55334,observation-7dd9796a-4f56-4025-87fa-b58fa10dc2a2,https://biolit.fr/observations/observation-7dd9796a-4f56-4025-87fa-b58fa10dc2a2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060610-scaled.jpg,,FALSE, +N1,61227,sortie-7dd9796a-4f56-4025-87fa-b58fa10dc2a2,https://biolit.fr/sorties/sortie-7dd9796a-4f56-4025-87fa-b58fa10dc2a2/,Ville de Marseille,,2/26/2016 0:00,12.0000000,13.0000000,43.284000000000,5.3166360000,,"Calanque de St Estève, archipel du Frioul",55336,observation-7dd9796a-4f56-4025-87fa-b58fa10dc2a2-2,https://biolit.fr/observations/observation-7dd9796a-4f56-4025-87fa-b58fa10dc2a2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060612-scaled.jpg,,FALSE, +N1,61227,sortie-7dd9796a-4f56-4025-87fa-b58fa10dc2a2,https://biolit.fr/sorties/sortie-7dd9796a-4f56-4025-87fa-b58fa10dc2a2/,Ville de Marseille,,2/26/2016 0:00,12.0000000,13.0000000,43.284000000000,5.3166360000,,"Calanque de St Estève, archipel du Frioul",55338,observation-7dd9796a-4f56-4025-87fa-b58fa10dc2a2-3,https://biolit.fr/observations/observation-7dd9796a-4f56-4025-87fa-b58fa10dc2a2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060614-scaled.jpg,,FALSE, +N1,61228,sortie-92b84e4f-0c16-40c4-9d3f-5ff967502c79,https://biolit.fr/sorties/sortie-92b84e4f-0c16-40c4-9d3f-5ff967502c79/,slegallais,,01/03/2016,8.0000000,10.0000000,42.741913000000,9.465992000000,,Miomo,55340,observation-92b84e4f-0c16-40c4-9d3f-5ff967502c79,https://biolit.fr/observations/observation-92b84e4f-0c16-40c4-9d3f-5ff967502c79/,Xiphias gladius,Espadon,,https://biolit.fr/wp-content/uploads/2023/07/Espadon1.jpg,,TRUE, +N1,61228,sortie-92b84e4f-0c16-40c4-9d3f-5ff967502c79,https://biolit.fr/sorties/sortie-92b84e4f-0c16-40c4-9d3f-5ff967502c79/,slegallais,,01/03/2016,8.0000000,10.0000000,42.741913000000,9.465992000000,,Miomo,55342,observation-92b84e4f-0c16-40c4-9d3f-5ff967502c79-2,https://biolit.fr/observations/observation-92b84e4f-0c16-40c4-9d3f-5ff967502c79-2/,Xiphias gladius,Espadon,,https://biolit.fr/wp-content/uploads/2023/07/Espadon2.jpg,,TRUE, +N1,61228,sortie-92b84e4f-0c16-40c4-9d3f-5ff967502c79,https://biolit.fr/sorties/sortie-92b84e4f-0c16-40c4-9d3f-5ff967502c79/,slegallais,,01/03/2016,8.0000000,10.0000000,42.741913000000,9.465992000000,,Miomo,55344,observation-92b84e4f-0c16-40c4-9d3f-5ff967502c79-3,https://biolit.fr/observations/observation-92b84e4f-0c16-40c4-9d3f-5ff967502c79-3/,Xiphias gladius,Espadon,,https://biolit.fr/wp-content/uploads/2023/07/Espadon3.jpg,,TRUE, +N1,61229,sortie-03763ac3-879c-488f-8acb-2fa7def1c02c,https://biolit.fr/sorties/sortie-03763ac3-879c-488f-8acb-2fa7def1c02c/,slegallais,,12/31/2015 0:00,8.0:15,12.0:15,42.662911000000,9.458911000000,,Marana,55346,observation-03763ac3-879c-488f-8acb-2fa7def1c02c,https://biolit.fr/observations/observation-03763ac3-879c-488f-8acb-2fa7def1c02c/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1630.JPG,,FALSE, +N1,61229,sortie-03763ac3-879c-488f-8acb-2fa7def1c02c,https://biolit.fr/sorties/sortie-03763ac3-879c-488f-8acb-2fa7def1c02c/,slegallais,,12/31/2015 0:00,8.0:15,12.0:15,42.662911000000,9.458911000000,,Marana,55348,observation-03763ac3-879c-488f-8acb-2fa7def1c02c-2,https://biolit.fr/observations/observation-03763ac3-879c-488f-8acb-2fa7def1c02c-2/,Loligo vulgaris,Encornet européen,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1633.JPG,,TRUE, +N1,61229,sortie-03763ac3-879c-488f-8acb-2fa7def1c02c,https://biolit.fr/sorties/sortie-03763ac3-879c-488f-8acb-2fa7def1c02c/,slegallais,,12/31/2015 0:00,8.0:15,12.0:15,42.662911000000,9.458911000000,,Marana,55350,observation-03763ac3-879c-488f-8acb-2fa7def1c02c-3,https://biolit.fr/observations/observation-03763ac3-879c-488f-8acb-2fa7def1c02c-3/,Loligo vulgaris,Encornet européen,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1631.JPG,,TRUE, +N1,61230,sortie-c9cde149-8bd2-410c-b734-60d4584a387d,https://biolit.fr/sorties/sortie-c9cde149-8bd2-410c-b734-60d4584a387d/,Phil,,1/24/2016 0:00,16.0:45,17.0000000,47.791953000000,-4.244799000000,,Léchiagat - Finistère,55352,observation-c9cde149-8bd2-410c-b734-60d4584a387d,https://biolit.fr/observations/observation-c9cde149-8bd2-410c-b734-60d4584a387d/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000998.JPG,,FALSE, +N1,61230,sortie-c9cde149-8bd2-410c-b734-60d4584a387d,https://biolit.fr/sorties/sortie-c9cde149-8bd2-410c-b734-60d4584a387d/,Phil,,1/24/2016 0:00,16.0:45,17.0000000,47.791953000000,-4.244799000000,,Léchiagat - Finistère,55354,observation-c9cde149-8bd2-410c-b734-60d4584a387d-2,https://biolit.fr/observations/observation-c9cde149-8bd2-410c-b734-60d4584a387d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010003.JPG,,FALSE, +N1,61230,sortie-c9cde149-8bd2-410c-b734-60d4584a387d,https://biolit.fr/sorties/sortie-c9cde149-8bd2-410c-b734-60d4584a387d/,Phil,,1/24/2016 0:00,16.0:45,17.0000000,47.791953000000,-4.244799000000,,Léchiagat - Finistère,55356,observation-c9cde149-8bd2-410c-b734-60d4584a387d-3,https://biolit.fr/observations/observation-c9cde149-8bd2-410c-b734-60d4584a387d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010004.JPG,,FALSE, +N1,61231,sortie-686a80ad-d5f7-46e0-a712-61b3eaf0bbba,https://biolit.fr/sorties/sortie-686a80ad-d5f7-46e0-a712-61b3eaf0bbba/,slegallais,,2/25/2016 0:00,11.0000000,13.0000000,43.011966000000,9.425094000000,,cap Corse,55358,observation-686a80ad-d5f7-46e0-a712-61b3eaf0bbba,https://biolit.fr/observations/observation-686a80ad-d5f7-46e0-a712-61b3eaf0bbba/,Raja asterias,Raie étoilée,,https://biolit.fr/wp-content/uploads/2023/07/raie_insuma.jpg,,TRUE, +N1,61232,sortie-04c5b4b3-1cbc-4f72-80a3-10ce81f56ee1,https://biolit.fr/sorties/sortie-04c5b4b3-1cbc-4f72-80a3-10ce81f56ee1/,slegallais,,6/21/2012 0:00,11.0000000,13.0000000,42.695202000000,9.451830000000,,Bastia,55360,observation-04c5b4b3-1cbc-4f72-80a3-10ce81f56ee1,https://biolit.fr/observations/observation-04c5b4b3-1cbc-4f72-80a3-10ce81f56ee1/,Mobula mobular,Diable de mer,,https://biolit.fr/wp-content/uploads/2023/07/Raie_Mobula.jpg,,TRUE, +N1,61233,sortie-fd036f28-187b-4767-b7eb-9f724f61f877,https://biolit.fr/sorties/sortie-fd036f28-187b-4767-b7eb-9f724f61f877/,tridimeg,,2/25/2016 0:00,9.0000000,9.0:15,48.636658000000,-2.08131500000,,Plage du Port Blanc,55362,observation-fd036f28-187b-4767-b7eb-9f724f61f877,https://biolit.fr/observations/observation-fd036f28-187b-4767-b7eb-9f724f61f877/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160225_091804-scaled.jpg,,FALSE, +N1,61233,sortie-fd036f28-187b-4767-b7eb-9f724f61f877,https://biolit.fr/sorties/sortie-fd036f28-187b-4767-b7eb-9f724f61f877/,tridimeg,,2/25/2016 0:00,9.0000000,9.0:15,48.636658000000,-2.08131500000,,Plage du Port Blanc,55364,observation-fd036f28-187b-4767-b7eb-9f724f61f877-2,https://biolit.fr/observations/observation-fd036f28-187b-4767-b7eb-9f724f61f877-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160225_091849-scaled.jpg,,FALSE, +N1,61234,sortie-fe2312bc-d73c-4013-b2bb-d01f84eff9e9,https://biolit.fr/sorties/sortie-fe2312bc-d73c-4013-b2bb-d01f84eff9e9/,slegallais,,2/24/2016 0:00,15.0:55,17.0:55,42.771438000000,9.47573400000,,Erbalunga,55366,observation-fe2312bc-d73c-4013-b2bb-d01f84eff9e9,https://biolit.fr/observations/observation-fe2312bc-d73c-4013-b2bb-d01f84eff9e9/,Cratena peregrina,Hervia,,https://biolit.fr/wp-content/uploads/2023/07/hervia.jpg,,TRUE, +N1,61235,sortie-c329ce5b-b219-43de-a62d-c3eba4232ef7,https://biolit.fr/sorties/sortie-c329ce5b-b219-43de-a62d-c3eba4232ef7/,slegallais,,2/24/2016 0:00,15.0000000,17.0000000,42.757229000000,9.468138000000,,Lavasina,55368,observation-c329ce5b-b219-43de-a62d-c3eba4232ef7,https://biolit.fr/observations/observation-c329ce5b-b219-43de-a62d-c3eba4232ef7/,Scyliorhinus stellaris,Grande roussette,,https://biolit.fr/wp-content/uploads/2023/07/rousette.jpg,,TRUE, +N1,61236,sortie-350f4a48-8a6e-4167-b463-42aca87de48d,https://biolit.fr/sorties/sortie-350f4a48-8a6e-4167-b463-42aca87de48d/,slegallais,,01/12/2016,15.0000000,17.0000000,42.860653000000,9.483287000000,,Santa Severa,55370,observation-350f4a48-8a6e-4167-b463-42aca87de48d,https://biolit.fr/observations/observation-350f4a48-8a6e-4167-b463-42aca87de48d/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e5f3045e4478665d73a7f8a89ef4782e/2023/06/etoile.png,,FALSE, +N1,61237,sortie-1d7e40f0-b355-4bf6-a6fc-9947170b492f,https://biolit.fr/sorties/sortie-1d7e40f0-b355-4bf6-a6fc-9947170b492f/,slegallais,,1/26/2016 0:00,15.0000000,17.0000000,42.772762000000,9.476721000000,,Erbalunga,55371,observation-1d7e40f0-b355-4bf6-a6fc-9947170b492f,https://biolit.fr/observations/observation-1d7e40f0-b355-4bf6-a6fc-9947170b492f/,Muraena helena,Murène commune,,https://biolit.fr/wp-content/uploads/2023/07/Murene-scaled.jpg,,TRUE, +N1,61238,sortie-11d43fad-a1e8-4434-a39a-760e52714135,https://biolit.fr/sorties/sortie-11d43fad-a1e8-4434-a39a-760e52714135/,slegallais,,1/24/2016 0:00,15.0000000,17.0000000,42.757355000000,9.466722000000,,Lavasina,55372,observation-11d43fad-a1e8-4434-a39a-760e52714135,https://biolit.fr/observations/observation-11d43fad-a1e8-4434-a39a-760e52714135/,,,,https://biolit.fr/wp-content/uploads/2023/07/Posidonie-scaled.jpg,,FALSE, +N1,61239,sortie-32935c0d-7f82-4eb0-a7aa-45953ede787c,https://biolit.fr/sorties/sortie-32935c0d-7f82-4eb0-a7aa-45953ede787c/,slegallais,,2/24/2016 0:00,15.0000000,17.0000000,42.757796000000,9.46755900000,,Lavasina,55373,observation-32935c0d-7f82-4eb0-a7aa-45953ede787c,https://biolit.fr/observations/observation-32935c0d-7f82-4eb0-a7aa-45953ede787c/,Homarus gammarus,Homard européen,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0849_01.JPG,,TRUE, +N1,61240,sortie-2149ce76-2dc8-4ad9-a625-ba809d4a1be3,https://biolit.fr/sorties/sortie-2149ce76-2dc8-4ad9-a625-ba809d4a1be3/,slegallais,,8/21/2015 0:00,12.0000000,13.0000000,42.757355000000,9.466593000000,,Lavasina,55375,observation-2149ce76-2dc8-4ad9-a625-ba809d4a1be3,https://biolit.fr/observations/observation-2149ce76-2dc8-4ad9-a625-ba809d4a1be3/,Mola mola,Poisson-lune,,https://biolit.fr/wp-content/uploads/2023/07/Molamola4.jpg,,TRUE, +N1,61241,sortie-ec0051df-49ae-4d46-828a-32c26b1c06f1,https://biolit.fr/sorties/sortie-ec0051df-49ae-4d46-828a-32c26b1c06f1/,slegallais,,05/06/2015,10.0000000,11.0000000,42.687963000000,9.454105000000,,Bastia,55377,observation-ec0051df-49ae-4d46-828a-32c26b1c06f1,https://biolit.fr/observations/observation-ec0051df-49ae-4d46-828a-32c26b1c06f1/,Scyllarides latus,Grande cigale de mer,,https://biolit.fr/wp-content/uploads/2023/07/IMG_8666_01.JPG,,TRUE, +N1,61242,sortie-51074f14-8ff6-4fe2-9a53-a00d98a9daf9,https://biolit.fr/sorties/sortie-51074f14-8ff6-4fe2-9a53-a00d98a9daf9/,slegallais,,4/25/2015 0:00,9.0000000,10.0000000,42.704931000000,9.461829000000,,Bastia,55379,observation-51074f14-8ff6-4fe2-9a53-a00d98a9daf9,https://biolit.fr/observations/observation-51074f14-8ff6-4fe2-9a53-a00d98a9daf9/,Pterotrachea coronata,Pterotrachea,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0905.JPG,,TRUE, +N1,61243,sortie-6d0a734f-ce63-4d3f-8a04-0e6011e757d8,https://biolit.fr/sorties/sortie-6d0a734f-ce63-4d3f-8a04-0e6011e757d8/,slegallais,,8/22/2015 0:00,12.0000000,13.0000000,42.689162000000,9.452903000000,,Bastia,55381,observation-6d0a734f-ce63-4d3f-8a04-0e6011e757d8,https://biolit.fr/observations/observation-6d0a734f-ce63-4d3f-8a04-0e6011e757d8/,Cotylorhiza tuberculata,Méduse œuf au plat,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0543_01.JPG,,TRUE, +N1,61244,sortie-2bfd01d9-0eac-4683-9602-accf30480fa9,https://biolit.fr/sorties/sortie-2bfd01d9-0eac-4683-9602-accf30480fa9/,slegallais,,3/29/2015 0:00,8.0000000,9.0000000,42.691780000000,9.453772000000,,Bastia,55383,observation-2bfd01d9-0eac-4683-9602-accf30480fa9,https://biolit.fr/observations/observation-2bfd01d9-0eac-4683-9602-accf30480fa9/,Lophius piscatorius,Baudroie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0694.JPG,,TRUE, +N1,61245,sortie-4622e4ec-7a26-4b08-b7a7-107e7e19b0c3,https://biolit.fr/sorties/sortie-4622e4ec-7a26-4b08-b7a7-107e7e19b0c3/,slegallais,,07/04/2015,14.0000000,16.0000000,42.690707000000,9.451551000000,,Bastia,55385,observation-4622e4ec-7a26-4b08-b7a7-107e7e19b0c3,https://biolit.fr/observations/observation-4622e4ec-7a26-4b08-b7a7-107e7e19b0c3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2392.JPG,,FALSE, +N1,61246,sortie-c5937863-163e-4e96-b16b-f69c542b71e7,https://biolit.fr/sorties/sortie-c5937863-163e-4e96-b16b-f69c542b71e7/,Phil,,2/21/2016 0:00,12.0000000,12.0000000,47.834670000000,-4.17779600000,,Loctudy - Finistère,55387,observation-c5937863-163e-4e96-b16b-f69c542b71e7,https://biolit.fr/observations/observation-c5937863-163e-4e96-b16b-f69c542b71e7/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/P1010344.JPG,,TRUE, +N1,61246,sortie-c5937863-163e-4e96-b16b-f69c542b71e7,https://biolit.fr/sorties/sortie-c5937863-163e-4e96-b16b-f69c542b71e7/,Phil,,2/21/2016 0:00,12.0000000,12.0000000,47.834670000000,-4.17779600000,,Loctudy - Finistère,55389,observation-c5937863-163e-4e96-b16b-f69c542b71e7-2,https://biolit.fr/observations/observation-c5937863-163e-4e96-b16b-f69c542b71e7-2/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/P1010347.JPG,,TRUE, +N1,61246,sortie-c5937863-163e-4e96-b16b-f69c542b71e7,https://biolit.fr/sorties/sortie-c5937863-163e-4e96-b16b-f69c542b71e7/,Phil,,2/21/2016 0:00,12.0000000,12.0000000,47.834670000000,-4.17779600000,,Loctudy - Finistère,55391,observation-c5937863-163e-4e96-b16b-f69c542b71e7-3,https://biolit.fr/observations/observation-c5937863-163e-4e96-b16b-f69c542b71e7-3/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1010299.JPG,,TRUE, +N1,61246,sortie-c5937863-163e-4e96-b16b-f69c542b71e7,https://biolit.fr/sorties/sortie-c5937863-163e-4e96-b16b-f69c542b71e7/,Phil,,2/21/2016 0:00,12.0000000,12.0000000,47.834670000000,-4.17779600000,,Loctudy - Finistère,55393,observation-c5937863-163e-4e96-b16b-f69c542b71e7-4,https://biolit.fr/observations/observation-c5937863-163e-4e96-b16b-f69c542b71e7-4/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1010303.JPG,,TRUE, +N1,61246,sortie-c5937863-163e-4e96-b16b-f69c542b71e7,https://biolit.fr/sorties/sortie-c5937863-163e-4e96-b16b-f69c542b71e7/,Phil,,2/21/2016 0:00,12.0000000,12.0000000,47.834670000000,-4.17779600000,,Loctudy - Finistère,55395,observation-c5937863-163e-4e96-b16b-f69c542b71e7-5,https://biolit.fr/observations/observation-c5937863-163e-4e96-b16b-f69c542b71e7-5/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1010308.JPG,,TRUE, +N1,61247,sortie-bd94be34-4072-4269-a74e-3957ed48f957,https://biolit.fr/sorties/sortie-bd94be34-4072-4269-a74e-3957ed48f957/,Phil,,1/24/2016 0:00,17.0:25,17.0000000,47.791683000000,-4.253906000000,,Treffiagat - Finistère,55397,observation-bd94be34-4072-4269-a74e-3957ed48f957,https://biolit.fr/observations/observation-bd94be34-4072-4269-a74e-3957ed48f957/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160124_173010.jpg,,FALSE, +N1,61247,sortie-bd94be34-4072-4269-a74e-3957ed48f957,https://biolit.fr/sorties/sortie-bd94be34-4072-4269-a74e-3957ed48f957/,Phil,,1/24/2016 0:00,17.0:25,17.0000000,47.791683000000,-4.253906000000,,Treffiagat - Finistère,55399,observation-bd94be34-4072-4269-a74e-3957ed48f957-2,https://biolit.fr/observations/observation-bd94be34-4072-4269-a74e-3957ed48f957-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160124_172834.jpg,,FALSE, +N1,61248,sortie-84a4745d-2f0b-470f-92bd-a6b6cd1e829d,https://biolit.fr/sorties/sortie-84a4745d-2f0b-470f-92bd-a6b6cd1e829d/,Ville de Marseille,,2/16/2016 0:00,14.0000000,15.0000000,43.267871000000,5.370291000000,,Base nautique du Roucas Blanc,55401,observation-84a4745d-2f0b-470f-92bd-a6b6cd1e829d,https://biolit.fr/observations/observation-84a4745d-2f0b-470f-92bd-a6b6cd1e829d/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/P1060595-scaled.jpg,,TRUE, +N1,61248,sortie-84a4745d-2f0b-470f-92bd-a6b6cd1e829d,https://biolit.fr/sorties/sortie-84a4745d-2f0b-470f-92bd-a6b6cd1e829d/,Ville de Marseille,,2/16/2016 0:00,14.0000000,15.0000000,43.267871000000,5.370291000000,,Base nautique du Roucas Blanc,55403,observation-84a4745d-2f0b-470f-92bd-a6b6cd1e829d-2,https://biolit.fr/observations/observation-84a4745d-2f0b-470f-92bd-a6b6cd1e829d-2/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/P1060597-scaled.jpg,,TRUE, +N1,61248,sortie-84a4745d-2f0b-470f-92bd-a6b6cd1e829d,https://biolit.fr/sorties/sortie-84a4745d-2f0b-470f-92bd-a6b6cd1e829d/,Ville de Marseille,,2/16/2016 0:00,14.0000000,15.0000000,43.267871000000,5.370291000000,,Base nautique du Roucas Blanc,55405,observation-84a4745d-2f0b-470f-92bd-a6b6cd1e829d-3,https://biolit.fr/observations/observation-84a4745d-2f0b-470f-92bd-a6b6cd1e829d-3/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/P1060599-scaled.jpg,,TRUE, +N1,61248,sortie-84a4745d-2f0b-470f-92bd-a6b6cd1e829d,https://biolit.fr/sorties/sortie-84a4745d-2f0b-470f-92bd-a6b6cd1e829d/,Ville de Marseille,,2/16/2016 0:00,14.0000000,15.0000000,43.267871000000,5.370291000000,,Base nautique du Roucas Blanc,55407,observation-84a4745d-2f0b-470f-92bd-a6b6cd1e829d-4,https://biolit.fr/observations/observation-84a4745d-2f0b-470f-92bd-a6b6cd1e829d-4/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/P1060600-scaled.jpg,,TRUE, +N1,61248,sortie-84a4745d-2f0b-470f-92bd-a6b6cd1e829d,https://biolit.fr/sorties/sortie-84a4745d-2f0b-470f-92bd-a6b6cd1e829d/,Ville de Marseille,,2/16/2016 0:00,14.0000000,15.0000000,43.267871000000,5.370291000000,,Base nautique du Roucas Blanc,55409,observation-84a4745d-2f0b-470f-92bd-a6b6cd1e829d-5,https://biolit.fr/observations/observation-84a4745d-2f0b-470f-92bd-a6b6cd1e829d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060602-scaled.jpg,,FALSE, +N1,61248,sortie-84a4745d-2f0b-470f-92bd-a6b6cd1e829d,https://biolit.fr/sorties/sortie-84a4745d-2f0b-470f-92bd-a6b6cd1e829d/,Ville de Marseille,,2/16/2016 0:00,14.0000000,15.0000000,43.267871000000,5.370291000000,,Base nautique du Roucas Blanc,55411,observation-84a4745d-2f0b-470f-92bd-a6b6cd1e829d-6,https://biolit.fr/observations/observation-84a4745d-2f0b-470f-92bd-a6b6cd1e829d-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060603-scaled.jpg,,FALSE, +N1,61249,sortie-98c01070-790b-4ae2-98fb-eb1c6323a92a,https://biolit.fr/sorties/sortie-98c01070-790b-4ae2-98fb-eb1c6323a92a/,Nils,,2/14/2016 0:00,11.0000000,11.0:45,43.16752700000,5.694476000000,,la madrague,55413,observation-98c01070-790b-4ae2-98fb-eb1c6323a92a,https://biolit.fr/observations/observation-98c01070-790b-4ae2-98fb-eb1c6323a92a/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/20160214_113233.jpg,,TRUE, +N1,61249,sortie-98c01070-790b-4ae2-98fb-eb1c6323a92a,https://biolit.fr/sorties/sortie-98c01070-790b-4ae2-98fb-eb1c6323a92a/,Nils,,2/14/2016 0:00,11.0000000,11.0:45,43.16752700000,5.694476000000,,la madrague,55415,observation-98c01070-790b-4ae2-98fb-eb1c6323a92a-2,https://biolit.fr/observations/observation-98c01070-790b-4ae2-98fb-eb1c6323a92a-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/20160214_113319.jpg,,TRUE, +N1,61249,sortie-98c01070-790b-4ae2-98fb-eb1c6323a92a,https://biolit.fr/sorties/sortie-98c01070-790b-4ae2-98fb-eb1c6323a92a/,Nils,,2/14/2016 0:00,11.0000000,11.0:45,43.16752700000,5.694476000000,,la madrague,55417,observation-98c01070-790b-4ae2-98fb-eb1c6323a92a-3,https://biolit.fr/observations/observation-98c01070-790b-4ae2-98fb-eb1c6323a92a-3/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20160214_113558.jpg,,TRUE, +N1,61249,sortie-98c01070-790b-4ae2-98fb-eb1c6323a92a,https://biolit.fr/sorties/sortie-98c01070-790b-4ae2-98fb-eb1c6323a92a/,Nils,,2/14/2016 0:00,11.0000000,11.0:45,43.16752700000,5.694476000000,,la madrague,55419,observation-98c01070-790b-4ae2-98fb-eb1c6323a92a-4,https://biolit.fr/observations/observation-98c01070-790b-4ae2-98fb-eb1c6323a92a-4/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20160214_113628.jpg,,TRUE, +N1,61249,sortie-98c01070-790b-4ae2-98fb-eb1c6323a92a,https://biolit.fr/sorties/sortie-98c01070-790b-4ae2-98fb-eb1c6323a92a/,Nils,,2/14/2016 0:00,11.0000000,11.0:45,43.16752700000,5.694476000000,,la madrague,55421,observation-98c01070-790b-4ae2-98fb-eb1c6323a92a-5,https://biolit.fr/observations/observation-98c01070-790b-4ae2-98fb-eb1c6323a92a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160214_113745.jpg,,FALSE, +N1,61249,sortie-98c01070-790b-4ae2-98fb-eb1c6323a92a,https://biolit.fr/sorties/sortie-98c01070-790b-4ae2-98fb-eb1c6323a92a/,Nils,,2/14/2016 0:00,11.0000000,11.0:45,43.16752700000,5.694476000000,,la madrague,55423,observation-98c01070-790b-4ae2-98fb-eb1c6323a92a-6,https://biolit.fr/observations/observation-98c01070-790b-4ae2-98fb-eb1c6323a92a-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160214_113814.jpg,,FALSE, +N1,61249,sortie-98c01070-790b-4ae2-98fb-eb1c6323a92a,https://biolit.fr/sorties/sortie-98c01070-790b-4ae2-98fb-eb1c6323a92a/,Nils,,2/14/2016 0:00,11.0000000,11.0:45,43.16752700000,5.694476000000,,la madrague,55425,observation-98c01070-790b-4ae2-98fb-eb1c6323a92a-7,https://biolit.fr/observations/observation-98c01070-790b-4ae2-98fb-eb1c6323a92a-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160214_114120.jpg,,FALSE, +N1,61249,sortie-98c01070-790b-4ae2-98fb-eb1c6323a92a,https://biolit.fr/sorties/sortie-98c01070-790b-4ae2-98fb-eb1c6323a92a/,Nils,,2/14/2016 0:00,11.0000000,11.0:45,43.16752700000,5.694476000000,,la madrague,55427,observation-98c01070-790b-4ae2-98fb-eb1c6323a92a-8,https://biolit.fr/observations/observation-98c01070-790b-4ae2-98fb-eb1c6323a92a-8/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/20160214_114153.jpg,,TRUE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55429,observation-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1/,,,,https://biolit.fr/wp-content/uploads/2023/07/Laisse de mer_0-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55431,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-2,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue calcaire encroutante-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55433,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-3,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue calcaire-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55435,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-4,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/anemones vertes-scaled.jpg,,TRUE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55437,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-5,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Anemonia viridis.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55438,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-6,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/ascidies-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55440,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-7,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-7/,,,,https://biolit.fr/wp-content/uploads/2022/06/Balanes.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55441,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-8,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-8/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/Oursin noir-scaled.jpg,,TRUE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55442,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-9,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/oursin noir (2)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55444,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-10,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/petoncle-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55446,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-11,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/petoncle (2)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55448,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-12,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/pétoncle (3)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55450,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-13,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-13/,,,,https://biolit.fr/wp-content/uploads/2023/05/patelle.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55451,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-14,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/bernard-l'ermite-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55453,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-15,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-15/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/bernard-l'ermite (2)-scaled.jpg,,TRUE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55455,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-16,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/cardita-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55457,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-17,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/cardita (2)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55459,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-18,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-18/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/Cérithe-scaled.jpg,,TRUE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55460,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-19,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-19/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/cérithe (2)-scaled.jpg,,TRUE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55462,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-20,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/cérithe (3)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55464,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-21,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/coque-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55466,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-22,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-22/,,,,https://biolit.fr/wp-content/uploads/2023/07/coque (2)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55468,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-23,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/coque (3)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55470,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-24,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/cormaillot perceur-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55472,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-25,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/cormaillot perceur (2)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55474,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-26,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/cormaillot perceur (3)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55476,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-27,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabe vert mâle (mue)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55478,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-28,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/crabe vert mâle (mue) (2)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55480,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-29,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55481,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-30,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/machote (mue)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55483,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-31,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/nasse-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55485,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-32,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/nasse (2)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55487,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-33,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-33/,,,,https://biolit.fr/wp-content/uploads/2023/07/Nasse (3)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55489,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-34,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-34/,,,,https://biolit.fr/wp-content/uploads/2023/07/Nasse (4)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55491,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-35,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-35/,,,,https://biolit.fr/wp-content/uploads/2023/07/OPHIURE.png,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55492,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-36,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-36/,,,,https://biolit.fr/wp-content/uploads/2023/07/ophiure (2)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55494,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-37,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-37/,,,,https://biolit.fr/wp-content/uploads/2023/07/ophiure (3)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55496,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-38,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-38/,,,,https://biolit.fr/wp-content/uploads/2023/07/ophiure (4)-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55498,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-39,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-39/,,,,https://biolit.fr/wp-content/uploads/2023/07/oursin comestible-scaled.jpg,,FALSE, +N1,61250,sortie-eda9a68d-cf24-418d-b73d-206c5e759da1,https://biolit.fr/sorties/sortie-eda9a68d-cf24-418d-b73d-206c5e759da1/,Nils,,02/05/2016,10.0000000,13.0000000,43.267915000000,5.370309000000,,Roucas Blanc,55500,observation-eda9a68d-cf24-418d-b73d-206c5e759da1-40,https://biolit.fr/observations/observation-eda9a68d-cf24-418d-b73d-206c5e759da1-40/,,,,https://biolit.fr/wp-content/uploads/2023/07/oursin comestible (2)-scaled.jpg,,FALSE, +N1,61251,sortie-a96aefad-0086-455c-bb71-fbb7cc658369,https://biolit.fr/sorties/sortie-a96aefad-0086-455c-bb71-fbb7cc658369/,Phil,,02/02/2016,17.0:45,17.0000000,47.795733000000,-4.363904000000,,Penmarc'h - Finistère,55502,observation-a96aefad-0086-455c-bb71-fbb7cc658369,https://biolit.fr/observations/observation-a96aefad-0086-455c-bb71-fbb7cc658369/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160202_174549.jpg,,TRUE, +N1,61251,sortie-a96aefad-0086-455c-bb71-fbb7cc658369,https://biolit.fr/sorties/sortie-a96aefad-0086-455c-bb71-fbb7cc658369/,Phil,,02/02/2016,17.0:45,17.0000000,47.795733000000,-4.363904000000,,Penmarc'h - Finistère,55504,observation-a96aefad-0086-455c-bb71-fbb7cc658369-2,https://biolit.fr/observations/observation-a96aefad-0086-455c-bb71-fbb7cc658369-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160202_174825.jpg,,FALSE, +N1,61251,sortie-a96aefad-0086-455c-bb71-fbb7cc658369,https://biolit.fr/sorties/sortie-a96aefad-0086-455c-bb71-fbb7cc658369/,Phil,,02/02/2016,17.0:45,17.0000000,47.795733000000,-4.363904000000,,Penmarc'h - Finistère,55506,observation-a96aefad-0086-455c-bb71-fbb7cc658369-3,https://biolit.fr/observations/observation-a96aefad-0086-455c-bb71-fbb7cc658369-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160202_174833.jpg,,FALSE, +N1,61251,sortie-a96aefad-0086-455c-bb71-fbb7cc658369,https://biolit.fr/sorties/sortie-a96aefad-0086-455c-bb71-fbb7cc658369/,Phil,,02/02/2016,17.0:45,17.0000000,47.795733000000,-4.363904000000,,Penmarc'h - Finistère,55508,observation-a96aefad-0086-455c-bb71-fbb7cc658369-4,https://biolit.fr/observations/observation-a96aefad-0086-455c-bb71-fbb7cc658369-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160202_174921.jpg,,TRUE, +N1,61252,sortie-893d5ee9-2ff7-406f-929e-287681e9e7e1,https://biolit.fr/sorties/sortie-893d5ee9-2ff7-406f-929e-287681e9e7e1/,aline. new1@orange.fr,,12/17/2015 0:00,13.0:25,14.0:45,43.462294000000,3.821702000000,,plage des Aresquiers,55510,observation-893d5ee9-2ff7-406f-929e-287681e9e7e1,https://biolit.fr/observations/observation-893d5ee9-2ff7-406f-929e-287681e9e7e1/,,,,https://biolit.fr/wp-content/uploads/2023/07/photos du portable 282-scaled.jpg,,FALSE, +N1,61252,sortie-893d5ee9-2ff7-406f-929e-287681e9e7e1,https://biolit.fr/sorties/sortie-893d5ee9-2ff7-406f-929e-287681e9e7e1/,aline. new1@orange.fr,,12/17/2015 0:00,13.0:25,14.0:45,43.462294000000,3.821702000000,,plage des Aresquiers,55512,observation-893d5ee9-2ff7-406f-929e-287681e9e7e1-2,https://biolit.fr/observations/observation-893d5ee9-2ff7-406f-929e-287681e9e7e1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/photos du portable 283-scaled.jpg,,FALSE, +N1,61252,sortie-893d5ee9-2ff7-406f-929e-287681e9e7e1,https://biolit.fr/sorties/sortie-893d5ee9-2ff7-406f-929e-287681e9e7e1/,aline. new1@orange.fr,,12/17/2015 0:00,13.0:25,14.0:45,43.462294000000,3.821702000000,,plage des Aresquiers,55514,observation-893d5ee9-2ff7-406f-929e-287681e9e7e1-3,https://biolit.fr/observations/observation-893d5ee9-2ff7-406f-929e-287681e9e7e1-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/photos du portable 284-scaled.jpg,,FALSE, +N1,61253,sortie-b14fbf09-cf3e-4711-a80b-1557dc4dab11,https://biolit.fr/sorties/sortie-b14fbf09-cf3e-4711-a80b-1557dc4dab11/,Phil,,02/05/2016,11.0000000,11.0:55,47.800856000000,-4.309063000000,,Penmarc'h - Finistère,55516,observation-b14fbf09-cf3e-4711-a80b-1557dc4dab11,https://biolit.fr/observations/observation-b14fbf09-cf3e-4711-a80b-1557dc4dab11/,Morus bassanus,Fou de Bassan,,https://biolit.fr/wp-content/uploads/2023/07/P1010268.JPG,,TRUE, +N1,61253,sortie-b14fbf09-cf3e-4711-a80b-1557dc4dab11,https://biolit.fr/sorties/sortie-b14fbf09-cf3e-4711-a80b-1557dc4dab11/,Phil,,02/05/2016,11.0000000,11.0:55,47.800856000000,-4.309063000000,,Penmarc'h - Finistère,55518,observation-b14fbf09-cf3e-4711-a80b-1557dc4dab11-2,https://biolit.fr/observations/observation-b14fbf09-cf3e-4711-a80b-1557dc4dab11-2/,Morus bassanus,Fou de Bassan,,https://biolit.fr/wp-content/uploads/2023/07/P1010269.JPG,,TRUE, +N1,61253,sortie-b14fbf09-cf3e-4711-a80b-1557dc4dab11,https://biolit.fr/sorties/sortie-b14fbf09-cf3e-4711-a80b-1557dc4dab11/,Phil,,02/05/2016,11.0000000,11.0:55,47.800856000000,-4.309063000000,,Penmarc'h - Finistère,55520,observation-b14fbf09-cf3e-4711-a80b-1557dc4dab11-3,https://biolit.fr/observations/observation-b14fbf09-cf3e-4711-a80b-1557dc4dab11-3/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/P1010265.JPG,,TRUE, +N1,61254,sortie-66262657-da31-4d9d-bf5c-2fe4128fb7ef,https://biolit.fr/sorties/sortie-66262657-da31-4d9d-bf5c-2fe4128fb7ef/,Phil,,02/05/2016,11.0000000,11.0:45,47.796569000000,-4.320717000000,,Penmarc'h - Finistère,55522,observation-66262657-da31-4d9d-bf5c-2fe4128fb7ef,https://biolit.fr/observations/observation-66262657-da31-4d9d-bf5c-2fe4128fb7ef/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010253.JPG,,FALSE, +N1,61254,sortie-66262657-da31-4d9d-bf5c-2fe4128fb7ef,https://biolit.fr/sorties/sortie-66262657-da31-4d9d-bf5c-2fe4128fb7ef/,Phil,,02/05/2016,11.0000000,11.0:45,47.796569000000,-4.320717000000,,Penmarc'h - Finistère,55524,observation-66262657-da31-4d9d-bf5c-2fe4128fb7ef-2,https://biolit.fr/observations/observation-66262657-da31-4d9d-bf5c-2fe4128fb7ef-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010247.JPG,,FALSE, +N1,61254,sortie-66262657-da31-4d9d-bf5c-2fe4128fb7ef,https://biolit.fr/sorties/sortie-66262657-da31-4d9d-bf5c-2fe4128fb7ef/,Phil,,02/05/2016,11.0000000,11.0:45,47.796569000000,-4.320717000000,,Penmarc'h - Finistère,55526,observation-66262657-da31-4d9d-bf5c-2fe4128fb7ef-3,https://biolit.fr/observations/observation-66262657-da31-4d9d-bf5c-2fe4128fb7ef-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010244.JPG,,FALSE, +N1,61254,sortie-66262657-da31-4d9d-bf5c-2fe4128fb7ef,https://biolit.fr/sorties/sortie-66262657-da31-4d9d-bf5c-2fe4128fb7ef/,Phil,,02/05/2016,11.0000000,11.0:45,47.796569000000,-4.320717000000,,Penmarc'h - Finistère,55528,observation-66262657-da31-4d9d-bf5c-2fe4128fb7ef-4,https://biolit.fr/observations/observation-66262657-da31-4d9d-bf5c-2fe4128fb7ef-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010236.JPG,,FALSE, +N1,61254,sortie-66262657-da31-4d9d-bf5c-2fe4128fb7ef,https://biolit.fr/sorties/sortie-66262657-da31-4d9d-bf5c-2fe4128fb7ef/,Phil,,02/05/2016,11.0000000,11.0:45,47.796569000000,-4.320717000000,,Penmarc'h - Finistère,55530,observation-66262657-da31-4d9d-bf5c-2fe4128fb7ef-5,https://biolit.fr/observations/observation-66262657-da31-4d9d-bf5c-2fe4128fb7ef-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010239.JPG,,FALSE, +N1,61254,sortie-66262657-da31-4d9d-bf5c-2fe4128fb7ef,https://biolit.fr/sorties/sortie-66262657-da31-4d9d-bf5c-2fe4128fb7ef/,Phil,,02/05/2016,11.0000000,11.0:45,47.796569000000,-4.320717000000,,Penmarc'h - Finistère,55532,observation-66262657-da31-4d9d-bf5c-2fe4128fb7ef-6,https://biolit.fr/observations/observation-66262657-da31-4d9d-bf5c-2fe4128fb7ef-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010240.JPG,,FALSE, +N1,61255,sortie-16f64253-39c1-42ed-8f62-59dd548b8492,https://biolit.fr/sorties/sortie-16f64253-39c1-42ed-8f62-59dd548b8492/,Phil,,02/02/2016,16.0000000,16.0:45,47.78985400000,-4.355884000000,,Kerity - Finistère,55534,observation-16f64253-39c1-42ed-8f62-59dd548b8492,https://biolit.fr/observations/observation-16f64253-39c1-42ed-8f62-59dd548b8492/,Chelon labrosus,Mulet lippu,,https://biolit.fr/wp-content/uploads/2023/07/P1010197.JPG,,TRUE, +N1,61256,sortie-6e79bc82-a6b0-4880-8df4-c1dfbde4241c,https://biolit.fr/sorties/sortie-6e79bc82-a6b0-4880-8df4-c1dfbde4241c/,Phil,,02/05/2016,11.0:15,11.0000000,47.798904000000,-4.314366000000,,Penmarc'h - Finistère,55536,observation-6e79bc82-a6b0-4880-8df4-c1dfbde4241c,https://biolit.fr/observations/observation-6e79bc82-a6b0-4880-8df4-c1dfbde4241c/,Larus fuscus,Goéland brun,,https://biolit.fr/wp-content/uploads/2023/07/P1010232.JPG,,TRUE, +N1,61256,sortie-6e79bc82-a6b0-4880-8df4-c1dfbde4241c,https://biolit.fr/sorties/sortie-6e79bc82-a6b0-4880-8df4-c1dfbde4241c/,Phil,,02/05/2016,11.0:15,11.0000000,47.798904000000,-4.314366000000,,Penmarc'h - Finistère,55538,observation-6e79bc82-a6b0-4880-8df4-c1dfbde4241c-2,https://biolit.fr/observations/observation-6e79bc82-a6b0-4880-8df4-c1dfbde4241c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010226.JPG,,FALSE, +N1,61256,sortie-6e79bc82-a6b0-4880-8df4-c1dfbde4241c,https://biolit.fr/sorties/sortie-6e79bc82-a6b0-4880-8df4-c1dfbde4241c/,Phil,,02/05/2016,11.0:15,11.0000000,47.798904000000,-4.314366000000,,Penmarc'h - Finistère,55540,observation-6e79bc82-a6b0-4880-8df4-c1dfbde4241c-3,https://biolit.fr/observations/observation-6e79bc82-a6b0-4880-8df4-c1dfbde4241c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010230.JPG,,FALSE, +N1,61256,sortie-6e79bc82-a6b0-4880-8df4-c1dfbde4241c,https://biolit.fr/sorties/sortie-6e79bc82-a6b0-4880-8df4-c1dfbde4241c/,Phil,,02/05/2016,11.0:15,11.0000000,47.798904000000,-4.314366000000,,Penmarc'h - Finistère,55542,observation-6e79bc82-a6b0-4880-8df4-c1dfbde4241c-4,https://biolit.fr/observations/observation-6e79bc82-a6b0-4880-8df4-c1dfbde4241c-4/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1010233.JPG,,TRUE, +N1,61257,sortie-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb,https://biolit.fr/sorties/sortie-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb/,Phil,,1/15/2016 0:00,16.000005,16.0:25,47.795180000000,-4.192552000000,,Loctudy - Finistère,55544,observation-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb,https://biolit.fr/observations/observation-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000987.JPG,,FALSE, +N1,61257,sortie-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb,https://biolit.fr/sorties/sortie-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb/,Phil,,1/15/2016 0:00,16.000005,16.0:25,47.795180000000,-4.192552000000,,Loctudy - Finistère,55546,observation-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb-2,https://biolit.fr/observations/observation-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000985.JPG,,FALSE, +N1,61257,sortie-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb,https://biolit.fr/sorties/sortie-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb/,Phil,,1/15/2016 0:00,16.000005,16.0:25,47.795180000000,-4.192552000000,,Loctudy - Finistère,55548,observation-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb-3,https://biolit.fr/observations/observation-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1000977.JPG,,TRUE, +N1,61257,sortie-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb,https://biolit.fr/sorties/sortie-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb/,Phil,,1/15/2016 0:00,16.000005,16.0:25,47.795180000000,-4.192552000000,,Loctudy - Finistère,55550,observation-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb-4,https://biolit.fr/observations/observation-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000981.JPG,,FALSE, +N1,61257,sortie-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb,https://biolit.fr/sorties/sortie-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb/,Phil,,1/15/2016 0:00,16.000005,16.0:25,47.795180000000,-4.192552000000,,Loctudy - Finistère,55552,observation-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb-5,https://biolit.fr/observations/observation-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000988.JPG,,FALSE, +N1,61257,sortie-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb,https://biolit.fr/sorties/sortie-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb/,Phil,,1/15/2016 0:00,16.000005,16.0:25,47.795180000000,-4.192552000000,,Loctudy - Finistère,55554,observation-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb-6,https://biolit.fr/observations/observation-6564fcf0-e3d4-403a-aeee-7dce9dfc49cb-6/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1000995.JPG,,TRUE, +N1,61258,sortie-e88661e7-b34a-48ff-9ccb-47da81edc5aa,https://biolit.fr/sorties/sortie-e88661e7-b34a-48ff-9ccb-47da81edc5aa/,Phil,,02/02/2016,16.0:25,16.0000000,47.792748000000,-4.358673000000,,Kerity - Finistère,55556,observation-e88661e7-b34a-48ff-9ccb-47da81edc5aa,https://biolit.fr/observations/observation-e88661e7-b34a-48ff-9ccb-47da81edc5aa/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010210.JPG,,FALSE, +N1,61258,sortie-e88661e7-b34a-48ff-9ccb-47da81edc5aa,https://biolit.fr/sorties/sortie-e88661e7-b34a-48ff-9ccb-47da81edc5aa/,Phil,,02/02/2016,16.0:25,16.0000000,47.792748000000,-4.358673000000,,Kerity - Finistère,55558,observation-e88661e7-b34a-48ff-9ccb-47da81edc5aa-2,https://biolit.fr/observations/observation-e88661e7-b34a-48ff-9ccb-47da81edc5aa-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010207_0.JPG,,FALSE, +N1,61259,sortie-a0935f1b-bafc-4ff4-90e1-05c47273e419,https://biolit.fr/sorties/sortie-a0935f1b-bafc-4ff4-90e1-05c47273e419/,Phil,,02/02/2016,16.0:15,16.0:15,47.793579000000,-4.35856800000,,Kerity - Finistère,55560,observation-a0935f1b-bafc-4ff4-90e1-05c47273e419,https://biolit.fr/observations/observation-a0935f1b-bafc-4ff4-90e1-05c47273e419/,Balistes capriscus,Baliste commun,,https://biolit.fr/wp-content/uploads/2023/07/P1010184.JPG,,TRUE, +N1,61259,sortie-a0935f1b-bafc-4ff4-90e1-05c47273e419,https://biolit.fr/sorties/sortie-a0935f1b-bafc-4ff4-90e1-05c47273e419/,Phil,,02/02/2016,16.0:15,16.0:15,47.793579000000,-4.35856800000,,Kerity - Finistère,55562,observation-a0935f1b-bafc-4ff4-90e1-05c47273e419-2,https://biolit.fr/observations/observation-a0935f1b-bafc-4ff4-90e1-05c47273e419-2/,Balistes capriscus,Baliste commun,,https://biolit.fr/wp-content/uploads/2023/07/P1010188.JPG,,TRUE, +N1,61259,sortie-a0935f1b-bafc-4ff4-90e1-05c47273e419,https://biolit.fr/sorties/sortie-a0935f1b-bafc-4ff4-90e1-05c47273e419/,Phil,,02/02/2016,16.0:15,16.0:15,47.793579000000,-4.35856800000,,Kerity - Finistère,55564,observation-a0935f1b-bafc-4ff4-90e1-05c47273e419-3,https://biolit.fr/observations/observation-a0935f1b-bafc-4ff4-90e1-05c47273e419-3/,Balistes capriscus,Baliste commun,,https://biolit.fr/wp-content/uploads/2023/07/P1010190.JPG,,TRUE, +N1,61260,sortie-a1077ccd-150f-4439-a9f2-01648f471b75,https://biolit.fr/sorties/sortie-a1077ccd-150f-4439-a9f2-01648f471b75/,Phil,,1/15/2016 0:00,15.0:45,16.0000000,47.797344000000,-4.18167100000,,Loctudy - Finistère,55566,observation-a1077ccd-150f-4439-a9f2-01648f471b75,https://biolit.fr/observations/observation-a1077ccd-150f-4439-a9f2-01648f471b75/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/P1000953.JPG,,TRUE, +N1,61260,sortie-a1077ccd-150f-4439-a9f2-01648f471b75,https://biolit.fr/sorties/sortie-a1077ccd-150f-4439-a9f2-01648f471b75/,Phil,,1/15/2016 0:00,15.0:45,16.0000000,47.797344000000,-4.18167100000,,Loctudy - Finistère,55568,observation-a1077ccd-150f-4439-a9f2-01648f471b75-2,https://biolit.fr/observations/observation-a1077ccd-150f-4439-a9f2-01648f471b75-2/,Lomentaria articulata,Algue saucisson,,https://biolit.fr/wp-content/uploads/2023/07/P1000963.JPG,,TRUE, +N1,61260,sortie-a1077ccd-150f-4439-a9f2-01648f471b75,https://biolit.fr/sorties/sortie-a1077ccd-150f-4439-a9f2-01648f471b75/,Phil,,1/15/2016 0:00,15.0:45,16.0000000,47.797344000000,-4.18167100000,,Loctudy - Finistère,55570,observation-a1077ccd-150f-4439-a9f2-01648f471b75-3,https://biolit.fr/observations/observation-a1077ccd-150f-4439-a9f2-01648f471b75-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000959.JPG,,FALSE, +N1,61260,sortie-a1077ccd-150f-4439-a9f2-01648f471b75,https://biolit.fr/sorties/sortie-a1077ccd-150f-4439-a9f2-01648f471b75/,Phil,,1/15/2016 0:00,15.0:45,16.0000000,47.797344000000,-4.18167100000,,Loctudy - Finistère,55572,observation-a1077ccd-150f-4439-a9f2-01648f471b75-4,https://biolit.fr/observations/observation-a1077ccd-150f-4439-a9f2-01648f471b75-4/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/P1000974.JPG,,TRUE, +N1,61260,sortie-a1077ccd-150f-4439-a9f2-01648f471b75,https://biolit.fr/sorties/sortie-a1077ccd-150f-4439-a9f2-01648f471b75/,Phil,,1/15/2016 0:00,15.0:45,16.0000000,47.797344000000,-4.18167100000,,Loctudy - Finistère,55574,observation-a1077ccd-150f-4439-a9f2-01648f471b75-5,https://biolit.fr/observations/observation-a1077ccd-150f-4439-a9f2-01648f471b75-5/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/P1000966.JPG,,TRUE, +N1,61260,sortie-a1077ccd-150f-4439-a9f2-01648f471b75,https://biolit.fr/sorties/sortie-a1077ccd-150f-4439-a9f2-01648f471b75/,Phil,,1/15/2016 0:00,15.0:45,16.0000000,47.797344000000,-4.18167100000,,Loctudy - Finistère,55576,observation-a1077ccd-150f-4439-a9f2-01648f471b75-6,https://biolit.fr/observations/observation-a1077ccd-150f-4439-a9f2-01648f471b75-6/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1000964.JPG,,TRUE, +N1,61260,sortie-a1077ccd-150f-4439-a9f2-01648f471b75,https://biolit.fr/sorties/sortie-a1077ccd-150f-4439-a9f2-01648f471b75/,Phil,,1/15/2016 0:00,15.0:45,16.0000000,47.797344000000,-4.18167100000,,Loctudy - Finistère,55578,observation-a1077ccd-150f-4439-a9f2-01648f471b75-7,https://biolit.fr/observations/observation-a1077ccd-150f-4439-a9f2-01648f471b75-7/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1000973.JPG,,TRUE, +N1,61260,sortie-a1077ccd-150f-4439-a9f2-01648f471b75,https://biolit.fr/sorties/sortie-a1077ccd-150f-4439-a9f2-01648f471b75/,Phil,,1/15/2016 0:00,15.0:45,16.0000000,47.797344000000,-4.18167100000,,Loctudy - Finistère,55580,observation-a1077ccd-150f-4439-a9f2-01648f471b75-8,https://biolit.fr/observations/observation-a1077ccd-150f-4439-a9f2-01648f471b75-8/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1000962.JPG,,TRUE, +N1,61260,sortie-a1077ccd-150f-4439-a9f2-01648f471b75,https://biolit.fr/sorties/sortie-a1077ccd-150f-4439-a9f2-01648f471b75/,Phil,,1/15/2016 0:00,15.0:45,16.0000000,47.797344000000,-4.18167100000,,Loctudy - Finistère,55582,observation-a1077ccd-150f-4439-a9f2-01648f471b75-9,https://biolit.fr/observations/observation-a1077ccd-150f-4439-a9f2-01648f471b75-9/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/P1000958.JPG,,TRUE, +N1,61261,sortie-ad0489ed-c79c-4d5f-926f-739f8f141331,https://biolit.fr/sorties/sortie-ad0489ed-c79c-4d5f-926f-739f8f141331/,Phil,,02/01/2016,15.0:35,16.0000000,47.882563000000,-3.934858000000,,Concarneau - Finistère,55584,observation-ad0489ed-c79c-4d5f-926f-739f8f141331,https://biolit.fr/observations/observation-ad0489ed-c79c-4d5f-926f-739f8f141331/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/P1010138.JPG,,TRUE, +N1,61261,sortie-ad0489ed-c79c-4d5f-926f-739f8f141331,https://biolit.fr/sorties/sortie-ad0489ed-c79c-4d5f-926f-739f8f141331/,Phil,,02/01/2016,15.0:35,16.0000000,47.882563000000,-3.934858000000,,Concarneau - Finistère,55586,observation-ad0489ed-c79c-4d5f-926f-739f8f141331-2,https://biolit.fr/observations/observation-ad0489ed-c79c-4d5f-926f-739f8f141331-2/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/P1010132.JPG,,TRUE, +N1,61261,sortie-ad0489ed-c79c-4d5f-926f-739f8f141331,https://biolit.fr/sorties/sortie-ad0489ed-c79c-4d5f-926f-739f8f141331/,Phil,,02/01/2016,15.0:35,16.0000000,47.882563000000,-3.934858000000,,Concarneau - Finistère,55588,observation-ad0489ed-c79c-4d5f-926f-739f8f141331-3,https://biolit.fr/observations/observation-ad0489ed-c79c-4d5f-926f-739f8f141331-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010130.JPG,,FALSE, +N1,61261,sortie-ad0489ed-c79c-4d5f-926f-739f8f141331,https://biolit.fr/sorties/sortie-ad0489ed-c79c-4d5f-926f-739f8f141331/,Phil,,02/01/2016,15.0:35,16.0000000,47.882563000000,-3.934858000000,,Concarneau - Finistère,55590,observation-ad0489ed-c79c-4d5f-926f-739f8f141331-4,https://biolit.fr/observations/observation-ad0489ed-c79c-4d5f-926f-739f8f141331-4/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1010129.JPG,,TRUE, +N1,61261,sortie-ad0489ed-c79c-4d5f-926f-739f8f141331,https://biolit.fr/sorties/sortie-ad0489ed-c79c-4d5f-926f-739f8f141331/,Phil,,02/01/2016,15.0:35,16.0000000,47.882563000000,-3.934858000000,,Concarneau - Finistère,55592,observation-ad0489ed-c79c-4d5f-926f-739f8f141331-5,https://biolit.fr/observations/observation-ad0489ed-c79c-4d5f-926f-739f8f141331-5/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1010125.JPG,,TRUE, +N1,61261,sortie-ad0489ed-c79c-4d5f-926f-739f8f141331,https://biolit.fr/sorties/sortie-ad0489ed-c79c-4d5f-926f-739f8f141331/,Phil,,02/01/2016,15.0:35,16.0000000,47.882563000000,-3.934858000000,,Concarneau - Finistère,55594,observation-ad0489ed-c79c-4d5f-926f-739f8f141331-6,https://biolit.fr/observations/observation-ad0489ed-c79c-4d5f-926f-739f8f141331-6/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1010115.JPG,,TRUE, +N1,61261,sortie-ad0489ed-c79c-4d5f-926f-739f8f141331,https://biolit.fr/sorties/sortie-ad0489ed-c79c-4d5f-926f-739f8f141331/,Phil,,02/01/2016,15.0:35,16.0000000,47.882563000000,-3.934858000000,,Concarneau - Finistère,55596,observation-ad0489ed-c79c-4d5f-926f-739f8f141331-7,https://biolit.fr/observations/observation-ad0489ed-c79c-4d5f-926f-739f8f141331-7/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/P1010095.JPG,,TRUE, +N1,61261,sortie-ad0489ed-c79c-4d5f-926f-739f8f141331,https://biolit.fr/sorties/sortie-ad0489ed-c79c-4d5f-926f-739f8f141331/,Phil,,02/01/2016,15.0:35,16.0000000,47.882563000000,-3.934858000000,,Concarneau - Finistère,55598,observation-ad0489ed-c79c-4d5f-926f-739f8f141331-8,https://biolit.fr/observations/observation-ad0489ed-c79c-4d5f-926f-739f8f141331-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010114.JPG,,FALSE, +N1,61261,sortie-ad0489ed-c79c-4d5f-926f-739f8f141331,https://biolit.fr/sorties/sortie-ad0489ed-c79c-4d5f-926f-739f8f141331/,Phil,,02/01/2016,15.0:35,16.0000000,47.882563000000,-3.934858000000,,Concarneau - Finistère,55600,observation-ad0489ed-c79c-4d5f-926f-739f8f141331-9,https://biolit.fr/observations/observation-ad0489ed-c79c-4d5f-926f-739f8f141331-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010107.JPG,,FALSE, +N1,61262,sortie-936fa468-d37e-4dc0-821b-70a622621662,https://biolit.fr/sorties/sortie-936fa468-d37e-4dc0-821b-70a622621662/,Phil,,02/01/2016,16.0000000,16.0000000,47.882064000000,-3.933869000000,,Concarneau - Finistère,55602,observation-936fa468-d37e-4dc0-821b-70a622621662,https://biolit.fr/observations/observation-936fa468-d37e-4dc0-821b-70a622621662/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010163.JPG,,FALSE, +N1,61262,sortie-936fa468-d37e-4dc0-821b-70a622621662,https://biolit.fr/sorties/sortie-936fa468-d37e-4dc0-821b-70a622621662/,Phil,,02/01/2016,16.0000000,16.0000000,47.882064000000,-3.933869000000,,Concarneau - Finistère,55604,observation-936fa468-d37e-4dc0-821b-70a622621662-2,https://biolit.fr/observations/observation-936fa468-d37e-4dc0-821b-70a622621662-2/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/P1010169.JPG,,TRUE, +N1,61262,sortie-936fa468-d37e-4dc0-821b-70a622621662,https://biolit.fr/sorties/sortie-936fa468-d37e-4dc0-821b-70a622621662/,Phil,,02/01/2016,16.0000000,16.0000000,47.882064000000,-3.933869000000,,Concarneau - Finistère,55606,observation-936fa468-d37e-4dc0-821b-70a622621662-3,https://biolit.fr/observations/observation-936fa468-d37e-4dc0-821b-70a622621662-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010172.JPG,,FALSE, +N1,61262,sortie-936fa468-d37e-4dc0-821b-70a622621662,https://biolit.fr/sorties/sortie-936fa468-d37e-4dc0-821b-70a622621662/,Phil,,02/01/2016,16.0000000,16.0000000,47.882064000000,-3.933869000000,,Concarneau - Finistère,55608,observation-936fa468-d37e-4dc0-821b-70a622621662-4,https://biolit.fr/observations/observation-936fa468-d37e-4dc0-821b-70a622621662-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010179.JPG,,FALSE, +N1,61262,sortie-936fa468-d37e-4dc0-821b-70a622621662,https://biolit.fr/sorties/sortie-936fa468-d37e-4dc0-821b-70a622621662/,Phil,,02/01/2016,16.0000000,16.0000000,47.882064000000,-3.933869000000,,Concarneau - Finistère,55610,observation-936fa468-d37e-4dc0-821b-70a622621662-5,https://biolit.fr/observations/observation-936fa468-d37e-4dc0-821b-70a622621662-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010180.JPG,,FALSE, +N1,61262,sortie-936fa468-d37e-4dc0-821b-70a622621662,https://biolit.fr/sorties/sortie-936fa468-d37e-4dc0-821b-70a622621662/,Phil,,02/01/2016,16.0000000,16.0000000,47.882064000000,-3.933869000000,,Concarneau - Finistère,55612,observation-936fa468-d37e-4dc0-821b-70a622621662-6,https://biolit.fr/observations/observation-936fa468-d37e-4dc0-821b-70a622621662-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1010183.JPG,,FALSE, +N1,61263,sortie-6ec3ef44-3d86-4a69-bbaf-b273367ed116,https://biolit.fr/sorties/sortie-6ec3ef44-3d86-4a69-bbaf-b273367ed116/,Marine,,1/31/2016 0:00,12.0000000,14.0000000,43.093030000000,6.024482000000,,Plage de la Garonne,55614,observation-6ec3ef44-3d86-4a69-bbaf-b273367ed116,https://biolit.fr/observations/observation-6ec3ef44-3d86-4a69-bbaf-b273367ed116/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1085-scaled.jpg,,TRUE, +N1,61263,sortie-6ec3ef44-3d86-4a69-bbaf-b273367ed116,https://biolit.fr/sorties/sortie-6ec3ef44-3d86-4a69-bbaf-b273367ed116/,Marine,,1/31/2016 0:00,12.0000000,14.0000000,43.093030000000,6.024482000000,,Plage de la Garonne,55616,observation-6ec3ef44-3d86-4a69-bbaf-b273367ed116-2,https://biolit.fr/observations/observation-6ec3ef44-3d86-4a69-bbaf-b273367ed116-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1097-scaled.jpg,,FALSE, +N1,61263,sortie-6ec3ef44-3d86-4a69-bbaf-b273367ed116,https://biolit.fr/sorties/sortie-6ec3ef44-3d86-4a69-bbaf-b273367ed116/,Marine,,1/31/2016 0:00,12.0000000,14.0000000,43.093030000000,6.024482000000,,Plage de la Garonne,55618,observation-6ec3ef44-3d86-4a69-bbaf-b273367ed116-3,https://biolit.fr/observations/observation-6ec3ef44-3d86-4a69-bbaf-b273367ed116-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1100-scaled.jpg,,FALSE, +N1,61263,sortie-6ec3ef44-3d86-4a69-bbaf-b273367ed116,https://biolit.fr/sorties/sortie-6ec3ef44-3d86-4a69-bbaf-b273367ed116/,Marine,,1/31/2016 0:00,12.0000000,14.0000000,43.093030000000,6.024482000000,,Plage de la Garonne,55619,observation-6ec3ef44-3d86-4a69-bbaf-b273367ed116-4,https://biolit.fr/observations/observation-6ec3ef44-3d86-4a69-bbaf-b273367ed116-4/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1106-scaled.jpg,,TRUE, +N1,61263,sortie-6ec3ef44-3d86-4a69-bbaf-b273367ed116,https://biolit.fr/sorties/sortie-6ec3ef44-3d86-4a69-bbaf-b273367ed116/,Marine,,1/31/2016 0:00,12.0000000,14.0000000,43.093030000000,6.024482000000,,Plage de la Garonne,55621,observation-6ec3ef44-3d86-4a69-bbaf-b273367ed116-5,https://biolit.fr/observations/observation-6ec3ef44-3d86-4a69-bbaf-b273367ed116-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1107-scaled.jpg,,FALSE, +N1,61264,sortie-3ad2b8cd-9daf-42d1-a651-231c8e31ac20,https://biolit.fr/sorties/sortie-3ad2b8cd-9daf-42d1-a651-231c8e31ac20/,Phil,,1/29/2016 0:00,15.0000000,15.0:15,47.794005000000,-4.357439000000,,Kerity - Finistère,55623,observation-3ad2b8cd-9daf-42d1-a651-231c8e31ac20,https://biolit.fr/observations/observation-3ad2b8cd-9daf-42d1-a651-231c8e31ac20/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/20160129_151417.jpg,,TRUE, +N1,61264,sortie-3ad2b8cd-9daf-42d1-a651-231c8e31ac20,https://biolit.fr/sorties/sortie-3ad2b8cd-9daf-42d1-a651-231c8e31ac20/,Phil,,1/29/2016 0:00,15.0000000,15.0:15,47.794005000000,-4.357439000000,,Kerity - Finistère,55625,observation-3ad2b8cd-9daf-42d1-a651-231c8e31ac20-2,https://biolit.fr/observations/observation-3ad2b8cd-9daf-42d1-a651-231c8e31ac20-2/,Phoca vitulina,Phoque commun,,https://biolit.fr/wp-content/uploads/2023/07/20160129_151249.jpg,,TRUE, +N1,61264,sortie-3ad2b8cd-9daf-42d1-a651-231c8e31ac20,https://biolit.fr/sorties/sortie-3ad2b8cd-9daf-42d1-a651-231c8e31ac20/,Phil,,1/29/2016 0:00,15.0000000,15.0:15,47.794005000000,-4.357439000000,,Kerity - Finistère,55627,observation-3ad2b8cd-9daf-42d1-a651-231c8e31ac20-3,https://biolit.fr/observations/observation-3ad2b8cd-9daf-42d1-a651-231c8e31ac20-3/,Phoca vitulina,Phoque commun,,https://biolit.fr/wp-content/uploads/2023/07/20160129_151122.jpg,,TRUE, +N1,61264,sortie-3ad2b8cd-9daf-42d1-a651-231c8e31ac20,https://biolit.fr/sorties/sortie-3ad2b8cd-9daf-42d1-a651-231c8e31ac20/,Phil,,1/29/2016 0:00,15.0000000,15.0:15,47.794005000000,-4.357439000000,,Kerity - Finistère,55629,observation-3ad2b8cd-9daf-42d1-a651-231c8e31ac20-4,https://biolit.fr/observations/observation-3ad2b8cd-9daf-42d1-a651-231c8e31ac20-4/,Phoca vitulina,Phoque commun,,https://biolit.fr/wp-content/uploads/2023/07/20160129_151204.jpg,,TRUE, +N1,61264,sortie-3ad2b8cd-9daf-42d1-a651-231c8e31ac20,https://biolit.fr/sorties/sortie-3ad2b8cd-9daf-42d1-a651-231c8e31ac20/,Phil,,1/29/2016 0:00,15.0000000,15.0:15,47.794005000000,-4.357439000000,,Kerity - Finistère,55631,observation-3ad2b8cd-9daf-42d1-a651-231c8e31ac20-5,https://biolit.fr/observations/observation-3ad2b8cd-9daf-42d1-a651-231c8e31ac20-5/,Phoca vitulina,Phoque commun,,https://biolit.fr/wp-content/uploads/2023/07/20160129_151448.jpg,,TRUE, +N1,61265,sortie-561ae872-b7fc-4ee6-ae08-6b75cc06372b,https://biolit.fr/sorties/sortie-561ae872-b7fc-4ee6-ae08-6b75cc06372b/,Phil,,1/29/2016 0:00,15.0:25,15.0000000,47.796055000000,-4.362074000000,,Kerity - Finistère,55633,observation-561ae872-b7fc-4ee6-ae08-6b75cc06372b,https://biolit.fr/observations/observation-561ae872-b7fc-4ee6-ae08-6b75cc06372b/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160129_152640.jpg,,FALSE, +N1,61265,sortie-561ae872-b7fc-4ee6-ae08-6b75cc06372b,https://biolit.fr/sorties/sortie-561ae872-b7fc-4ee6-ae08-6b75cc06372b/,Phil,,1/29/2016 0:00,15.0:25,15.0000000,47.796055000000,-4.362074000000,,Kerity - Finistère,55635,observation-561ae872-b7fc-4ee6-ae08-6b75cc06372b-2,https://biolit.fr/observations/observation-561ae872-b7fc-4ee6-ae08-6b75cc06372b-2/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/20160129_152455.jpg,,TRUE, +N1,61265,sortie-561ae872-b7fc-4ee6-ae08-6b75cc06372b,https://biolit.fr/sorties/sortie-561ae872-b7fc-4ee6-ae08-6b75cc06372b/,Phil,,1/29/2016 0:00,15.0:25,15.0000000,47.796055000000,-4.362074000000,,Kerity - Finistère,55637,observation-561ae872-b7fc-4ee6-ae08-6b75cc06372b-3,https://biolit.fr/observations/observation-561ae872-b7fc-4ee6-ae08-6b75cc06372b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160129_152329.jpg,,FALSE, +N1,61266,sortie-e19e07c3-0f4d-4ec2-8306-d4858db31a4c,https://biolit.fr/sorties/sortie-e19e07c3-0f4d-4ec2-8306-d4858db31a4c/,Phil,,1/29/2016 0:00,15.0:15,15.0:25,47.793717000000,-4.364576000000,,Kerity - Finistère,55639,observation-e19e07c3-0f4d-4ec2-8306-d4858db31a4c,https://biolit.fr/observations/observation-e19e07c3-0f4d-4ec2-8306-d4858db31a4c/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20160129_150443.jpg,,TRUE, +N1,61266,sortie-e19e07c3-0f4d-4ec2-8306-d4858db31a4c,https://biolit.fr/sorties/sortie-e19e07c3-0f4d-4ec2-8306-d4858db31a4c/,Phil,,1/29/2016 0:00,15.0:15,15.0:25,47.793717000000,-4.364576000000,,Kerity - Finistère,55641,observation-e19e07c3-0f4d-4ec2-8306-d4858db31a4c-2,https://biolit.fr/observations/observation-e19e07c3-0f4d-4ec2-8306-d4858db31a4c-2/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20160129_150529.jpg,,TRUE, +N1,61266,sortie-e19e07c3-0f4d-4ec2-8306-d4858db31a4c,https://biolit.fr/sorties/sortie-e19e07c3-0f4d-4ec2-8306-d4858db31a4c/,Phil,,1/29/2016 0:00,15.0:15,15.0:25,47.793717000000,-4.364576000000,,Kerity - Finistère,55643,observation-e19e07c3-0f4d-4ec2-8306-d4858db31a4c-3,https://biolit.fr/observations/observation-e19e07c3-0f4d-4ec2-8306-d4858db31a4c-3/,Corella eumyota,Ascidie cartilagineuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20160129_150638.jpg,,TRUE, +N1,61266,sortie-e19e07c3-0f4d-4ec2-8306-d4858db31a4c,https://biolit.fr/sorties/sortie-e19e07c3-0f4d-4ec2-8306-d4858db31a4c/,Phil,,1/29/2016 0:00,15.0:15,15.0:25,47.793717000000,-4.364576000000,,Kerity - Finistère,55645,observation-e19e07c3-0f4d-4ec2-8306-d4858db31a4c-4,https://biolit.fr/observations/observation-e19e07c3-0f4d-4ec2-8306-d4858db31a4c-4/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20160129_150706.jpg,,TRUE, +N1,61267,sortie-9ebaaed4-5c92-40ac-9740-3cc9457bb83e,https://biolit.fr/sorties/sortie-9ebaaed4-5c92-40ac-9740-3cc9457bb83e/,Phil,,1/29/2016 0:00,14.0000000,15.0000000,47.791085000000,-4.357023000000,,Kerity - Finistère,55647,observation-9ebaaed4-5c92-40ac-9740-3cc9457bb83e,https://biolit.fr/observations/observation-9ebaaed4-5c92-40ac-9740-3cc9457bb83e/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160129_145800.jpg,,TRUE, +N1,61267,sortie-9ebaaed4-5c92-40ac-9740-3cc9457bb83e,https://biolit.fr/sorties/sortie-9ebaaed4-5c92-40ac-9740-3cc9457bb83e/,Phil,,1/29/2016 0:00,14.0000000,15.0000000,47.791085000000,-4.357023000000,,Kerity - Finistère,55649,observation-9ebaaed4-5c92-40ac-9740-3cc9457bb83e-2,https://biolit.fr/observations/observation-9ebaaed4-5c92-40ac-9740-3cc9457bb83e-2/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/20160129_150214.jpg,,TRUE, +N1,61267,sortie-9ebaaed4-5c92-40ac-9740-3cc9457bb83e,https://biolit.fr/sorties/sortie-9ebaaed4-5c92-40ac-9740-3cc9457bb83e/,Phil,,1/29/2016 0:00,14.0000000,15.0000000,47.791085000000,-4.357023000000,,Kerity - Finistère,55651,observation-9ebaaed4-5c92-40ac-9740-3cc9457bb83e-3,https://biolit.fr/observations/observation-9ebaaed4-5c92-40ac-9740-3cc9457bb83e-3/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20160129_150026.jpg,,TRUE, +N1,61267,sortie-9ebaaed4-5c92-40ac-9740-3cc9457bb83e,https://biolit.fr/sorties/sortie-9ebaaed4-5c92-40ac-9740-3cc9457bb83e/,Phil,,1/29/2016 0:00,14.0000000,15.0000000,47.791085000000,-4.357023000000,,Kerity - Finistère,55653,observation-9ebaaed4-5c92-40ac-9740-3cc9457bb83e-4,https://biolit.fr/observations/observation-9ebaaed4-5c92-40ac-9740-3cc9457bb83e-4/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160129_144836.jpg,,TRUE, +N1,61268,sortie-bfe50c28-4b20-4a49-ab0b-8880efbecb96,https://biolit.fr/sorties/sortie-bfe50c28-4b20-4a49-ab0b-8880efbecb96/,Phil,,1/29/2016 0:00,14.0:25,14.0000000,47.79492600000,-4.359124000000,,Kerity - Finistère,55655,observation-bfe50c28-4b20-4a49-ab0b-8880efbecb96,https://biolit.fr/observations/observation-bfe50c28-4b20-4a49-ab0b-8880efbecb96/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160129_142337.jpg,,FALSE, +N1,61268,sortie-bfe50c28-4b20-4a49-ab0b-8880efbecb96,https://biolit.fr/sorties/sortie-bfe50c28-4b20-4a49-ab0b-8880efbecb96/,Phil,,1/29/2016 0:00,14.0:25,14.0000000,47.79492600000,-4.359124000000,,Kerity - Finistère,55657,observation-bfe50c28-4b20-4a49-ab0b-8880efbecb96-2,https://biolit.fr/observations/observation-bfe50c28-4b20-4a49-ab0b-8880efbecb96-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160129_142826.jpg,,TRUE, +N1,61268,sortie-bfe50c28-4b20-4a49-ab0b-8880efbecb96,https://biolit.fr/sorties/sortie-bfe50c28-4b20-4a49-ab0b-8880efbecb96/,Phil,,1/29/2016 0:00,14.0:25,14.0000000,47.79492600000,-4.359124000000,,Kerity - Finistère,55659,observation-bfe50c28-4b20-4a49-ab0b-8880efbecb96-3,https://biolit.fr/observations/observation-bfe50c28-4b20-4a49-ab0b-8880efbecb96-3/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20160129_143443.jpg,,TRUE, +N1,61268,sortie-bfe50c28-4b20-4a49-ab0b-8880efbecb96,https://biolit.fr/sorties/sortie-bfe50c28-4b20-4a49-ab0b-8880efbecb96/,Phil,,1/29/2016 0:00,14.0:25,14.0000000,47.79492600000,-4.359124000000,,Kerity - Finistère,55661,observation-bfe50c28-4b20-4a49-ab0b-8880efbecb96-4,https://biolit.fr/observations/observation-bfe50c28-4b20-4a49-ab0b-8880efbecb96-4/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/20160129_143927.jpg,,TRUE, +N1,61268,sortie-bfe50c28-4b20-4a49-ab0b-8880efbecb96,https://biolit.fr/sorties/sortie-bfe50c28-4b20-4a49-ab0b-8880efbecb96/,Phil,,1/29/2016 0:00,14.0:25,14.0000000,47.79492600000,-4.359124000000,,Kerity - Finistère,55663,observation-bfe50c28-4b20-4a49-ab0b-8880efbecb96-5,https://biolit.fr/observations/observation-bfe50c28-4b20-4a49-ab0b-8880efbecb96-5/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/20160129_144251.jpg,,TRUE, +N1,61268,sortie-bfe50c28-4b20-4a49-ab0b-8880efbecb96,https://biolit.fr/sorties/sortie-bfe50c28-4b20-4a49-ab0b-8880efbecb96/,Phil,,1/29/2016 0:00,14.0:25,14.0000000,47.79492600000,-4.359124000000,,Kerity - Finistère,55665,observation-bfe50c28-4b20-4a49-ab0b-8880efbecb96-6,https://biolit.fr/observations/observation-bfe50c28-4b20-4a49-ab0b-8880efbecb96-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160129_144346.jpg,,FALSE, +N1,61269,sortie-b3124ea1-62ae-40c4-88a3-4479cea30d2f,https://biolit.fr/sorties/sortie-b3124ea1-62ae-40c4-88a3-4479cea30d2f/,Phil,,1/14/2016 0:00,14.000005,14.0:15,47.870311000000,-3.930914000000,,Concarneau - Finistère,55667,observation-b3124ea1-62ae-40c4-88a3-4479cea30d2f,https://biolit.fr/observations/observation-b3124ea1-62ae-40c4-88a3-4479cea30d2f/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000864.JPG,,FALSE, +N1,61269,sortie-b3124ea1-62ae-40c4-88a3-4479cea30d2f,https://biolit.fr/sorties/sortie-b3124ea1-62ae-40c4-88a3-4479cea30d2f/,Phil,,1/14/2016 0:00,14.000005,14.0:15,47.870311000000,-3.930914000000,,Concarneau - Finistère,55669,observation-b3124ea1-62ae-40c4-88a3-4479cea30d2f-2,https://biolit.fr/observations/observation-b3124ea1-62ae-40c4-88a3-4479cea30d2f-2/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1000876.JPG,,TRUE, +N1,61269,sortie-b3124ea1-62ae-40c4-88a3-4479cea30d2f,https://biolit.fr/sorties/sortie-b3124ea1-62ae-40c4-88a3-4479cea30d2f/,Phil,,1/14/2016 0:00,14.000005,14.0:15,47.870311000000,-3.930914000000,,Concarneau - Finistère,55671,observation-b3124ea1-62ae-40c4-88a3-4479cea30d2f-3,https://biolit.fr/observations/observation-b3124ea1-62ae-40c4-88a3-4479cea30d2f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000878.JPG,,FALSE, +N1,61269,sortie-b3124ea1-62ae-40c4-88a3-4479cea30d2f,https://biolit.fr/sorties/sortie-b3124ea1-62ae-40c4-88a3-4479cea30d2f/,Phil,,1/14/2016 0:00,14.000005,14.0:15,47.870311000000,-3.930914000000,,Concarneau - Finistère,55673,observation-b3124ea1-62ae-40c4-88a3-4479cea30d2f-4,https://biolit.fr/observations/observation-b3124ea1-62ae-40c4-88a3-4479cea30d2f-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000883.JPG,,FALSE, +N1,61269,sortie-b3124ea1-62ae-40c4-88a3-4479cea30d2f,https://biolit.fr/sorties/sortie-b3124ea1-62ae-40c4-88a3-4479cea30d2f/,Phil,,1/14/2016 0:00,14.000005,14.0:15,47.870311000000,-3.930914000000,,Concarneau - Finistère,55675,observation-b3124ea1-62ae-40c4-88a3-4479cea30d2f-5,https://biolit.fr/observations/observation-b3124ea1-62ae-40c4-88a3-4479cea30d2f-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000885.JPG,,FALSE, +N1,61269,sortie-b3124ea1-62ae-40c4-88a3-4479cea30d2f,https://biolit.fr/sorties/sortie-b3124ea1-62ae-40c4-88a3-4479cea30d2f/,Phil,,1/14/2016 0:00,14.000005,14.0:15,47.870311000000,-3.930914000000,,Concarneau - Finistère,55677,observation-b3124ea1-62ae-40c4-88a3-4479cea30d2f-6,https://biolit.fr/observations/observation-b3124ea1-62ae-40c4-88a3-4479cea30d2f-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000891.JPG,,FALSE, +N1,61270,sortie-a956f204-828e-4b51-b5bb-445e167a42f5,https://biolit.fr/sorties/sortie-a956f204-828e-4b51-b5bb-445e167a42f5/,Phil,,1/15/2016 0:00,15.0:25,15.0000000,47.795740000000,-4.194569000000,,Loctudy - Finistère,55679,observation-a956f204-828e-4b51-b5bb-445e167a42f5,https://biolit.fr/observations/observation-a956f204-828e-4b51-b5bb-445e167a42f5/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1000930.JPG,,TRUE, +N1,61270,sortie-a956f204-828e-4b51-b5bb-445e167a42f5,https://biolit.fr/sorties/sortie-a956f204-828e-4b51-b5bb-445e167a42f5/,Phil,,1/15/2016 0:00,15.0:25,15.0000000,47.795740000000,-4.194569000000,,Loctudy - Finistère,55681,observation-a956f204-828e-4b51-b5bb-445e167a42f5-2,https://biolit.fr/observations/observation-a956f204-828e-4b51-b5bb-445e167a42f5-2/,Lomentaria articulata,Algue saucisson,,https://biolit.fr/wp-content/uploads/2023/07/P1000927.JPG,,TRUE, +N1,61270,sortie-a956f204-828e-4b51-b5bb-445e167a42f5,https://biolit.fr/sorties/sortie-a956f204-828e-4b51-b5bb-445e167a42f5/,Phil,,1/15/2016 0:00,15.0:25,15.0000000,47.795740000000,-4.194569000000,,Loctudy - Finistère,55683,observation-a956f204-828e-4b51-b5bb-445e167a42f5-3,https://biolit.fr/observations/observation-a956f204-828e-4b51-b5bb-445e167a42f5-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1000934.JPG,,TRUE, +N1,61270,sortie-a956f204-828e-4b51-b5bb-445e167a42f5,https://biolit.fr/sorties/sortie-a956f204-828e-4b51-b5bb-445e167a42f5/,Phil,,1/15/2016 0:00,15.0:25,15.0000000,47.795740000000,-4.194569000000,,Loctudy - Finistère,55685,observation-a956f204-828e-4b51-b5bb-445e167a42f5-4,https://biolit.fr/observations/observation-a956f204-828e-4b51-b5bb-445e167a42f5-4/,Ciliata mustela,Motelle à 5 barbillons,,https://biolit.fr/wp-content/uploads/2023/07/P1000938.JPG,,TRUE, +N1,61270,sortie-a956f204-828e-4b51-b5bb-445e167a42f5,https://biolit.fr/sorties/sortie-a956f204-828e-4b51-b5bb-445e167a42f5/,Phil,,1/15/2016 0:00,15.0:25,15.0000000,47.795740000000,-4.194569000000,,Loctudy - Finistère,55687,observation-a956f204-828e-4b51-b5bb-445e167a42f5-5,https://biolit.fr/observations/observation-a956f204-828e-4b51-b5bb-445e167a42f5-5/,Ciliata mustela,Motelle à 5 barbillons,,https://biolit.fr/wp-content/uploads/2023/07/P1000940.JPG,,TRUE, +N1,61270,sortie-a956f204-828e-4b51-b5bb-445e167a42f5,https://biolit.fr/sorties/sortie-a956f204-828e-4b51-b5bb-445e167a42f5/,Phil,,1/15/2016 0:00,15.0:25,15.0000000,47.795740000000,-4.194569000000,,Loctudy - Finistère,55689,observation-a956f204-828e-4b51-b5bb-445e167a42f5-6,https://biolit.fr/observations/observation-a956f204-828e-4b51-b5bb-445e167a42f5-6/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1000941.JPG,,TRUE, +N1,61270,sortie-a956f204-828e-4b51-b5bb-445e167a42f5,https://biolit.fr/sorties/sortie-a956f204-828e-4b51-b5bb-445e167a42f5/,Phil,,1/15/2016 0:00,15.0:25,15.0000000,47.795740000000,-4.194569000000,,Loctudy - Finistère,55691,observation-a956f204-828e-4b51-b5bb-445e167a42f5-7,https://biolit.fr/observations/observation-a956f204-828e-4b51-b5bb-445e167a42f5-7/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1000944.JPG,,TRUE, +N1,61270,sortie-a956f204-828e-4b51-b5bb-445e167a42f5,https://biolit.fr/sorties/sortie-a956f204-828e-4b51-b5bb-445e167a42f5/,Phil,,1/15/2016 0:00,15.0:25,15.0000000,47.795740000000,-4.194569000000,,Loctudy - Finistère,55693,observation-a956f204-828e-4b51-b5bb-445e167a42f5-8,https://biolit.fr/observations/observation-a956f204-828e-4b51-b5bb-445e167a42f5-8/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1000946.JPG,,TRUE, +N1,61270,sortie-a956f204-828e-4b51-b5bb-445e167a42f5,https://biolit.fr/sorties/sortie-a956f204-828e-4b51-b5bb-445e167a42f5/,Phil,,1/15/2016 0:00,15.0:25,15.0000000,47.795740000000,-4.194569000000,,Loctudy - Finistère,55695,observation-a956f204-828e-4b51-b5bb-445e167a42f5-9,https://biolit.fr/observations/observation-a956f204-828e-4b51-b5bb-445e167a42f5-9/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1000949.JPG,,TRUE, +N1,61270,sortie-a956f204-828e-4b51-b5bb-445e167a42f5,https://biolit.fr/sorties/sortie-a956f204-828e-4b51-b5bb-445e167a42f5/,Phil,,1/15/2016 0:00,15.0:25,15.0000000,47.795740000000,-4.194569000000,,Loctudy - Finistère,55697,observation-a956f204-828e-4b51-b5bb-445e167a42f5-10,https://biolit.fr/observations/observation-a956f204-828e-4b51-b5bb-445e167a42f5-10/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1000950.JPG,,TRUE, +N1,61271,sortie-6317f048-649c-4f80-8951-a2850a02a652,https://biolit.fr/sorties/sortie-6317f048-649c-4f80-8951-a2850a02a652/,Lu Cio,,01/10/2016,10.0000000,10.0:15,46.442045000000,-1.683869000000,,bourgenay,55699,observation-6317f048-649c-4f80-8951-a2850a02a652,https://biolit.fr/observations/observation-6317f048-649c-4f80-8951-a2850a02a652/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3041 - Copie.JPG,,FALSE, +N1,61271,sortie-6317f048-649c-4f80-8951-a2850a02a652,https://biolit.fr/sorties/sortie-6317f048-649c-4f80-8951-a2850a02a652/,Lu Cio,,01/10/2016,10.0000000,10.0:15,46.442045000000,-1.683869000000,,bourgenay,55701,observation-6317f048-649c-4f80-8951-a2850a02a652-2,https://biolit.fr/observations/observation-6317f048-649c-4f80-8951-a2850a02a652-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3040 - Copie - Copie.JPG,,FALSE, +N1,61272,sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3,https://biolit.fr/sorties/sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3/,Phil,,11/25/2015 0:00,10.0000000,11.0:15,48.097304000000,-4.296027000000,,Kerlaz - Finistère,55703,observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3,https://biolit.fr/observations/observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/20151125_102102 - .jpg,,TRUE, +N1,61272,sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3,https://biolit.fr/sorties/sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3/,Phil,,11/25/2015 0:00,10.0000000,11.0:15,48.097304000000,-4.296027000000,,Kerlaz - Finistère,55705,observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3-2,https://biolit.fr/observations/observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3-2/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/2023/07/20151125_102101.jpg,,TRUE, +N1,61272,sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3,https://biolit.fr/sorties/sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3/,Phil,,11/25/2015 0:00,10.0000000,11.0:15,48.097304000000,-4.296027000000,,Kerlaz - Finistère,55707,observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3-3,https://biolit.fr/observations/observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3-3/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/20151125_105205.jpg,,TRUE, +N1,61272,sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3,https://biolit.fr/sorties/sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3/,Phil,,11/25/2015 0:00,10.0000000,11.0:15,48.097304000000,-4.296027000000,,Kerlaz - Finistère,55709,observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3-4,https://biolit.fr/observations/observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151125_111631.jpg,,FALSE, +N1,61272,sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3,https://biolit.fr/sorties/sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3/,Phil,,11/25/2015 0:00,10.0000000,11.0:15,48.097304000000,-4.296027000000,,Kerlaz - Finistère,55711,observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3-5,https://biolit.fr/observations/observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3-5/,Astropecten irregularis,Etoile-peigne commune,,https://biolit.fr/wp-content/uploads/2023/07/20151125_104007.jpg,,TRUE, +N1,61272,sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3,https://biolit.fr/sorties/sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3/,Phil,,11/25/2015 0:00,10.0000000,11.0:15,48.097304000000,-4.296027000000,,Kerlaz - Finistère,55713,observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3-6,https://biolit.fr/observations/observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3-6/,Donax vittatus,Donace des canards,,https://biolit.fr/wp-content/uploads/2023/07/20151125_104453.jpg,,TRUE, +N1,61272,sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3,https://biolit.fr/sorties/sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3/,Phil,,11/25/2015 0:00,10.0000000,11.0:15,48.097304000000,-4.296027000000,,Kerlaz - Finistère,55715,observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3-7,https://biolit.fr/observations/observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3-7/,Raja brachyura,Raie lisse,,https://biolit.fr/wp-content/uploads/2023/07/20151125_101348.jpg,,TRUE, +N1,61272,sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3,https://biolit.fr/sorties/sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3/,Phil,,11/25/2015 0:00,10.0000000,11.0:15,48.097304000000,-4.296027000000,,Kerlaz - Finistère,55717,observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3-8,https://biolit.fr/observations/observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3-8/,Astropecten irregularis,Etoile-peigne commune,,https://biolit.fr/wp-content/uploads/2023/07/20151125_104800.jpg,,TRUE, +N1,61272,sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3,https://biolit.fr/sorties/sortie-e3faaec7-c5e8-4666-813a-e211ad8e5fa3/,Phil,,11/25/2015 0:00,10.0000000,11.0:15,48.097304000000,-4.296027000000,,Kerlaz - Finistère,55719,observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3-9,https://biolit.fr/observations/observation-e3faaec7-c5e8-4666-813a-e211ad8e5fa3-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151125_104635.jpg,,FALSE, +N1,61273,sortie-cf6515ed-9185-49c4-9ebb-01bc9f953ff5,https://biolit.fr/sorties/sortie-cf6515ed-9185-49c4-9ebb-01bc9f953ff5/,Phil,,01/10/2016,12.0000000,12.0000000,48.092384000000,-4.296911000000,,Kerlaz - Finistère,55721,observation-cf6515ed-9185-49c4-9ebb-01bc9f953ff5,https://biolit.fr/observations/observation-cf6515ed-9185-49c4-9ebb-01bc9f953ff5/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/P1000436.JPG,,TRUE, +N1,61273,sortie-cf6515ed-9185-49c4-9ebb-01bc9f953ff5,https://biolit.fr/sorties/sortie-cf6515ed-9185-49c4-9ebb-01bc9f953ff5/,Phil,,01/10/2016,12.0000000,12.0000000,48.092384000000,-4.296911000000,,Kerlaz - Finistère,55723,observation-cf6515ed-9185-49c4-9ebb-01bc9f953ff5-2,https://biolit.fr/observations/observation-cf6515ed-9185-49c4-9ebb-01bc9f953ff5-2/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/P1000433.JPG,,TRUE, +N1,61273,sortie-cf6515ed-9185-49c4-9ebb-01bc9f953ff5,https://biolit.fr/sorties/sortie-cf6515ed-9185-49c4-9ebb-01bc9f953ff5/,Phil,,01/10/2016,12.0000000,12.0000000,48.092384000000,-4.296911000000,,Kerlaz - Finistère,55725,observation-cf6515ed-9185-49c4-9ebb-01bc9f953ff5-3,https://biolit.fr/observations/observation-cf6515ed-9185-49c4-9ebb-01bc9f953ff5-3/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/P1000186.JPG,,TRUE, +N1,61273,sortie-cf6515ed-9185-49c4-9ebb-01bc9f953ff5,https://biolit.fr/sorties/sortie-cf6515ed-9185-49c4-9ebb-01bc9f953ff5/,Phil,,01/10/2016,12.0000000,12.0000000,48.092384000000,-4.296911000000,,Kerlaz - Finistère,55729,observation-cf6515ed-9185-49c4-9ebb-01bc9f953ff5-5,https://biolit.fr/observations/observation-cf6515ed-9185-49c4-9ebb-01bc9f953ff5-5/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/P1000199.JPG,,TRUE, +N1,61273,sortie-cf6515ed-9185-49c4-9ebb-01bc9f953ff5,https://biolit.fr/sorties/sortie-cf6515ed-9185-49c4-9ebb-01bc9f953ff5/,Phil,,01/10/2016,12.0000000,12.0000000,48.092384000000,-4.296911000000,,Kerlaz - Finistère,55731,observation-cf6515ed-9185-49c4-9ebb-01bc9f953ff5-6,https://biolit.fr/observations/observation-cf6515ed-9185-49c4-9ebb-01bc9f953ff5-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000222.JPG,,FALSE, +N1,61274,sortie-0d26d582-5d43-40bf-8ba1-2427e990387d,https://biolit.fr/sorties/sortie-0d26d582-5d43-40bf-8ba1-2427e990387d/,Sylviede6fours,,1/16/2016 0:00,14.0000000,16.0000000,43.066998000000,5.810214000000,,Mont Salva,55733,observation-0d26d582-5d43-40bf-8ba1-2427e990387d,https://biolit.fr/observations/observation-0d26d582-5d43-40bf-8ba1-2427e990387d/,,,,https://biolit.fr/wp-content/uploads/2023/07/Palmier nain.JPG,,FALSE, +N1,61275,sortie-b0f1b649-c80f-46fb-bfcd-5044d549813f,https://biolit.fr/sorties/sortie-b0f1b649-c80f-46fb-bfcd-5044d549813f/,Lu Cio,,1/17/2016 0:00,18.0000000,20.0000000,46.433503000000,-1.65826400000,,Plage du Veillon,55735,observation-b0f1b649-c80f-46fb-bfcd-5044d549813f,https://biolit.fr/observations/observation-b0f1b649-c80f-46fb-bfcd-5044d549813f/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_2957-scaled.jpg,,FALSE, +N1,61276,sortie-d69d5346-f241-495b-a479-3c32f9197e92,https://biolit.fr/sorties/sortie-d69d5346-f241-495b-a479-3c32f9197e92/,Lu Cio,,1/17/2016 0:00,18.0000000,20.0000000,46.433037000000,-1.657824000000,,Plage du Veillon,55737,observation-d69d5346-f241-495b-a479-3c32f9197e92,https://biolit.fr/observations/observation-d69d5346-f241-495b-a479-3c32f9197e92/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/velella velella.PNG,,TRUE, +N1,61277,sortie-5e479164-6436-48a4-8683-203e488cd885,https://biolit.fr/sorties/sortie-5e479164-6436-48a4-8683-203e488cd885/,Phil,,11/06/2015,12.000005,12.0:15,47.792202000000,-4.296478000000,,Le Guilvinec - Finistère,55738,observation-5e479164-6436-48a4-8683-203e488cd885,https://biolit.fr/observations/observation-5e479164-6436-48a4-8683-203e488cd885/,Membranipora membranacea,Membranipore,,https://biolit.fr/wp-content/uploads/2023/07/20151106_120505.jpg,,TRUE, +N1,61277,sortie-5e479164-6436-48a4-8683-203e488cd885,https://biolit.fr/sorties/sortie-5e479164-6436-48a4-8683-203e488cd885/,Phil,,11/06/2015,12.000005,12.0:15,47.792202000000,-4.296478000000,,Le Guilvinec - Finistère,55740,observation-5e479164-6436-48a4-8683-203e488cd885-2,https://biolit.fr/observations/observation-5e479164-6436-48a4-8683-203e488cd885-2/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151106_120413.jpg,,TRUE, +N1,61277,sortie-5e479164-6436-48a4-8683-203e488cd885,https://biolit.fr/sorties/sortie-5e479164-6436-48a4-8683-203e488cd885/,Phil,,11/06/2015,12.000005,12.0:15,47.792202000000,-4.296478000000,,Le Guilvinec - Finistère,55742,observation-5e479164-6436-48a4-8683-203e488cd885-3,https://biolit.fr/observations/observation-5e479164-6436-48a4-8683-203e488cd885-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151106_120625.jpg,,TRUE, +N1,61277,sortie-5e479164-6436-48a4-8683-203e488cd885,https://biolit.fr/sorties/sortie-5e479164-6436-48a4-8683-203e488cd885/,Phil,,11/06/2015,12.000005,12.0:15,47.792202000000,-4.296478000000,,Le Guilvinec - Finistère,55744,observation-5e479164-6436-48a4-8683-203e488cd885-4,https://biolit.fr/observations/observation-5e479164-6436-48a4-8683-203e488cd885-4/,Pelvetia canaliculata,Pelvétie,,https://biolit.fr/wp-content/uploads/2023/07/20151106_120704.jpg,,TRUE, +N1,61277,sortie-5e479164-6436-48a4-8683-203e488cd885,https://biolit.fr/sorties/sortie-5e479164-6436-48a4-8683-203e488cd885/,Phil,,11/06/2015,12.000005,12.0:15,47.792202000000,-4.296478000000,,Le Guilvinec - Finistère,55746,observation-5e479164-6436-48a4-8683-203e488cd885-5,https://biolit.fr/observations/observation-5e479164-6436-48a4-8683-203e488cd885-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_120915.jpg,,FALSE, +N1,61277,sortie-5e479164-6436-48a4-8683-203e488cd885,https://biolit.fr/sorties/sortie-5e479164-6436-48a4-8683-203e488cd885/,Phil,,11/06/2015,12.000005,12.0:15,47.792202000000,-4.296478000000,,Le Guilvinec - Finistère,55748,observation-5e479164-6436-48a4-8683-203e488cd885-6,https://biolit.fr/observations/observation-5e479164-6436-48a4-8683-203e488cd885-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_121244.jpg,,FALSE, +N1,61278,sortie-8356adad-8ee1-4e19-b58d-b09729a3a583,https://biolit.fr/sorties/sortie-8356adad-8ee1-4e19-b58d-b09729a3a583/,Phil,,01/10/2016,13.0:15,13.0000000,48.093728000000,-4.299203000000,,Kerlaz - Finistère,55750,observation-8356adad-8ee1-4e19-b58d-b09729a3a583,https://biolit.fr/observations/observation-8356adad-8ee1-4e19-b58d-b09729a3a583/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/2023/07/P1000415.JPG,,TRUE, +N1,61278,sortie-8356adad-8ee1-4e19-b58d-b09729a3a583,https://biolit.fr/sorties/sortie-8356adad-8ee1-4e19-b58d-b09729a3a583/,Phil,,01/10/2016,13.0:15,13.0000000,48.093728000000,-4.299203000000,,Kerlaz - Finistère,55756,observation-8356adad-8ee1-4e19-b58d-b09729a3a583-4,https://biolit.fr/observations/observation-8356adad-8ee1-4e19-b58d-b09729a3a583-4/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/P1000399.JPG,,TRUE, +N1,61278,sortie-8356adad-8ee1-4e19-b58d-b09729a3a583,https://biolit.fr/sorties/sortie-8356adad-8ee1-4e19-b58d-b09729a3a583/,Phil,,01/10/2016,13.0:15,13.0000000,48.093728000000,-4.299203000000,,Kerlaz - Finistère,55758,observation-8356adad-8ee1-4e19-b58d-b09729a3a583-5,https://biolit.fr/observations/observation-8356adad-8ee1-4e19-b58d-b09729a3a583-5/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/P1000408.JPG,,TRUE, +N1,61279,sortie-4c57fffd-c1fc-4874-9cd1-5742ecd48c4a,https://biolit.fr/sorties/sortie-4c57fffd-c1fc-4874-9cd1-5742ecd48c4a/,Phil,,01/10/2016,13.0000000,13.000005,48.094717000000,-4.298875000000,,Kerlaz - Finistère,55760,observation-4c57fffd-c1fc-4874-9cd1-5742ecd48c4a,https://biolit.fr/observations/observation-4c57fffd-c1fc-4874-9cd1-5742ecd48c4a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000319.JPG,,FALSE, +N1,61279,sortie-4c57fffd-c1fc-4874-9cd1-5742ecd48c4a,https://biolit.fr/sorties/sortie-4c57fffd-c1fc-4874-9cd1-5742ecd48c4a/,Phil,,01/10/2016,13.0000000,13.000005,48.094717000000,-4.298875000000,,Kerlaz - Finistère,55762,observation-4c57fffd-c1fc-4874-9cd1-5742ecd48c4a-2,https://biolit.fr/observations/observation-4c57fffd-c1fc-4874-9cd1-5742ecd48c4a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000322.JPG,,FALSE, +N1,61280,sortie-3794147f-eb2c-443f-82be-97948f6be1d7,https://biolit.fr/sorties/sortie-3794147f-eb2c-443f-82be-97948f6be1d7/,Phil,,1/15/2016 0:00,15.000005,15.0000000,47.793914000000,-4.192147000000,,Loctudy - Finistère,55764,observation-3794147f-eb2c-443f-82be-97948f6be1d7,https://biolit.fr/observations/observation-3794147f-eb2c-443f-82be-97948f6be1d7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000898.JPG,,FALSE, +N1,61280,sortie-3794147f-eb2c-443f-82be-97948f6be1d7,https://biolit.fr/sorties/sortie-3794147f-eb2c-443f-82be-97948f6be1d7/,Phil,,1/15/2016 0:00,15.000005,15.0000000,47.793914000000,-4.192147000000,,Loctudy - Finistère,55766,observation-3794147f-eb2c-443f-82be-97948f6be1d7-2,https://biolit.fr/observations/observation-3794147f-eb2c-443f-82be-97948f6be1d7-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000899.JPG,,FALSE, +N1,61280,sortie-3794147f-eb2c-443f-82be-97948f6be1d7,https://biolit.fr/sorties/sortie-3794147f-eb2c-443f-82be-97948f6be1d7/,Phil,,1/15/2016 0:00,15.000005,15.0000000,47.793914000000,-4.192147000000,,Loctudy - Finistère,55768,observation-3794147f-eb2c-443f-82be-97948f6be1d7-3,https://biolit.fr/observations/observation-3794147f-eb2c-443f-82be-97948f6be1d7-3/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/P1000900.JPG,,TRUE, +N1,61280,sortie-3794147f-eb2c-443f-82be-97948f6be1d7,https://biolit.fr/sorties/sortie-3794147f-eb2c-443f-82be-97948f6be1d7/,Phil,,1/15/2016 0:00,15.000005,15.0000000,47.793914000000,-4.192147000000,,Loctudy - Finistère,55770,observation-3794147f-eb2c-443f-82be-97948f6be1d7-4,https://biolit.fr/observations/observation-3794147f-eb2c-443f-82be-97948f6be1d7-4/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1000906.JPG,,TRUE, +N1,61280,sortie-3794147f-eb2c-443f-82be-97948f6be1d7,https://biolit.fr/sorties/sortie-3794147f-eb2c-443f-82be-97948f6be1d7/,Phil,,1/15/2016 0:00,15.000005,15.0000000,47.793914000000,-4.192147000000,,Loctudy - Finistère,55772,observation-3794147f-eb2c-443f-82be-97948f6be1d7-5,https://biolit.fr/observations/observation-3794147f-eb2c-443f-82be-97948f6be1d7-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000908.JPG,,FALSE, +N1,61280,sortie-3794147f-eb2c-443f-82be-97948f6be1d7,https://biolit.fr/sorties/sortie-3794147f-eb2c-443f-82be-97948f6be1d7/,Phil,,1/15/2016 0:00,15.000005,15.0000000,47.793914000000,-4.192147000000,,Loctudy - Finistère,55774,observation-3794147f-eb2c-443f-82be-97948f6be1d7-6,https://biolit.fr/observations/observation-3794147f-eb2c-443f-82be-97948f6be1d7-6/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1000913.JPG,,TRUE, +N1,61280,sortie-3794147f-eb2c-443f-82be-97948f6be1d7,https://biolit.fr/sorties/sortie-3794147f-eb2c-443f-82be-97948f6be1d7/,Phil,,1/15/2016 0:00,15.000005,15.0000000,47.793914000000,-4.192147000000,,Loctudy - Finistère,55776,observation-3794147f-eb2c-443f-82be-97948f6be1d7-7,https://biolit.fr/observations/observation-3794147f-eb2c-443f-82be-97948f6be1d7-7/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1000923.JPG,,TRUE, +N1,61281,sortie-69fe4343-deeb-4fb6-9008-fdcd2dfad612,https://biolit.fr/sorties/sortie-69fe4343-deeb-4fb6-9008-fdcd2dfad612/,Phil,,1/14/2016 0:00,13.0000000,14.000005,47.868223000000,-3.928698000000,,Concarneau - Finistère,55778,observation-69fe4343-deeb-4fb6-9008-fdcd2dfad612,https://biolit.fr/observations/observation-69fe4343-deeb-4fb6-9008-fdcd2dfad612/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160114_140342.jpg,,FALSE, +N1,61281,sortie-69fe4343-deeb-4fb6-9008-fdcd2dfad612,https://biolit.fr/sorties/sortie-69fe4343-deeb-4fb6-9008-fdcd2dfad612/,Phil,,1/14/2016 0:00,13.0000000,14.000005,47.868223000000,-3.928698000000,,Concarneau - Finistère,55780,observation-69fe4343-deeb-4fb6-9008-fdcd2dfad612-2,https://biolit.fr/observations/observation-69fe4343-deeb-4fb6-9008-fdcd2dfad612-2/,Tethya citrina,Orange de mer de Manche Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1000772.JPG,,TRUE, +N1,61281,sortie-69fe4343-deeb-4fb6-9008-fdcd2dfad612,https://biolit.fr/sorties/sortie-69fe4343-deeb-4fb6-9008-fdcd2dfad612/,Phil,,1/14/2016 0:00,13.0000000,14.000005,47.868223000000,-3.928698000000,,Concarneau - Finistère,55782,observation-69fe4343-deeb-4fb6-9008-fdcd2dfad612-3,https://biolit.fr/observations/observation-69fe4343-deeb-4fb6-9008-fdcd2dfad612-3/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1000819.JPG,,TRUE, +N1,61281,sortie-69fe4343-deeb-4fb6-9008-fdcd2dfad612,https://biolit.fr/sorties/sortie-69fe4343-deeb-4fb6-9008-fdcd2dfad612/,Phil,,1/14/2016 0:00,13.0000000,14.000005,47.868223000000,-3.928698000000,,Concarneau - Finistère,55784,observation-69fe4343-deeb-4fb6-9008-fdcd2dfad612-4,https://biolit.fr/observations/observation-69fe4343-deeb-4fb6-9008-fdcd2dfad612-4/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/P1000831.JPG,,TRUE, +N1,61281,sortie-69fe4343-deeb-4fb6-9008-fdcd2dfad612,https://biolit.fr/sorties/sortie-69fe4343-deeb-4fb6-9008-fdcd2dfad612/,Phil,,1/14/2016 0:00,13.0000000,14.000005,47.868223000000,-3.928698000000,,Concarneau - Finistère,55786,observation-69fe4343-deeb-4fb6-9008-fdcd2dfad612-5,https://biolit.fr/observations/observation-69fe4343-deeb-4fb6-9008-fdcd2dfad612-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000843.JPG,,FALSE, +N1,61282,sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f,https://biolit.fr/sorties/sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f/,Phil,,1/14/2016 0:00,13.0000000,13.0000000,47.86941600000,-3.929275000000,,Concarneau - Finistère,55788,observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f,https://biolit.fr/observations/observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000783.JPG,,FALSE, +N1,61282,sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f,https://biolit.fr/sorties/sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f/,Phil,,1/14/2016 0:00,13.0000000,13.0000000,47.86941600000,-3.929275000000,,Concarneau - Finistère,55790,observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f-2,https://biolit.fr/observations/observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f-2/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/P1000784.JPG,,TRUE, +N1,61282,sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f,https://biolit.fr/sorties/sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f/,Phil,,1/14/2016 0:00,13.0000000,13.0000000,47.86941600000,-3.929275000000,,Concarneau - Finistère,55792,observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f-3,https://biolit.fr/observations/observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f-3/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1000784b -.jpg,,TRUE, +N1,61282,sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f,https://biolit.fr/sorties/sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f/,Phil,,1/14/2016 0:00,13.0000000,13.0000000,47.86941600000,-3.929275000000,,Concarneau - Finistère,55794,observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f-4,https://biolit.fr/observations/observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000786.JPG,,FALSE, +N1,61282,sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f,https://biolit.fr/sorties/sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f/,Phil,,1/14/2016 0:00,13.0000000,13.0000000,47.86941600000,-3.929275000000,,Concarneau - Finistère,55796,observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f-5,https://biolit.fr/observations/observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f-5/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/P1000790.JPG,,TRUE, +N1,61282,sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f,https://biolit.fr/sorties/sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f/,Phil,,1/14/2016 0:00,13.0000000,13.0000000,47.86941600000,-3.929275000000,,Concarneau - Finistère,55798,observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f-6,https://biolit.fr/observations/observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f-6/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/2023/07/P1000839.JPG,,TRUE, +N1,61282,sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f,https://biolit.fr/sorties/sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f/,Phil,,1/14/2016 0:00,13.0000000,13.0000000,47.86941600000,-3.929275000000,,Concarneau - Finistère,55800,observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f-7,https://biolit.fr/observations/observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f-7/,Tethya citrina,Orange de mer de Manche Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/P1000767.JPG,,TRUE, +N1,61282,sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f,https://biolit.fr/sorties/sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f/,Phil,,1/14/2016 0:00,13.0000000,13.0000000,47.86941600000,-3.929275000000,,Concarneau - Finistère,55802,observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f-8,https://biolit.fr/observations/observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f-8/,Lomentaria articulata,Algue saucisson,,https://biolit.fr/wp-content/uploads/2023/07/P1000700.JPG,,TRUE, +N1,61282,sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f,https://biolit.fr/sorties/sortie-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f/,Phil,,1/14/2016 0:00,13.0000000,13.0000000,47.86941600000,-3.929275000000,,Concarneau - Finistère,55804,observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f-9,https://biolit.fr/observations/observation-1f0d3d7d-8308-4bd1-b8ff-040e35b9571f-9/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1000747.JPG,,TRUE, +N1,61283,sortie-73b55ec0-137a-4f87-bd1c-4035908a7457,https://biolit.fr/sorties/sortie-73b55ec0-137a-4f87-bd1c-4035908a7457/,Phil,,1/14/2016 0:00,13.0000000,13.0000000,47.868565000000,-3.929144000000,,Concarneau - Finistère,55806,observation-73b55ec0-137a-4f87-bd1c-4035908a7457,https://biolit.fr/observations/observation-73b55ec0-137a-4f87-bd1c-4035908a7457/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/P1000687.JPG,,TRUE, +N1,61283,sortie-73b55ec0-137a-4f87-bd1c-4035908a7457,https://biolit.fr/sorties/sortie-73b55ec0-137a-4f87-bd1c-4035908a7457/,Phil,,1/14/2016 0:00,13.0000000,13.0000000,47.868565000000,-3.929144000000,,Concarneau - Finistère,55808,observation-73b55ec0-137a-4f87-bd1c-4035908a7457-2,https://biolit.fr/observations/observation-73b55ec0-137a-4f87-bd1c-4035908a7457-2/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/2016-01-14-22h42m29s806.jpg,,TRUE, +N1,61283,sortie-73b55ec0-137a-4f87-bd1c-4035908a7457,https://biolit.fr/sorties/sortie-73b55ec0-137a-4f87-bd1c-4035908a7457/,Phil,,1/14/2016 0:00,13.0000000,13.0000000,47.868565000000,-3.929144000000,,Concarneau - Finistère,55810,observation-73b55ec0-137a-4f87-bd1c-4035908a7457-3,https://biolit.fr/observations/observation-73b55ec0-137a-4f87-bd1c-4035908a7457-3/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/2016-01-14-22h41m02s358.jpg,,TRUE, +N1,61283,sortie-73b55ec0-137a-4f87-bd1c-4035908a7457,https://biolit.fr/sorties/sortie-73b55ec0-137a-4f87-bd1c-4035908a7457/,Phil,,1/14/2016 0:00,13.0000000,13.0000000,47.868565000000,-3.929144000000,,Concarneau - Finistère,55812,observation-73b55ec0-137a-4f87-bd1c-4035908a7457-4,https://biolit.fr/observations/observation-73b55ec0-137a-4f87-bd1c-4035908a7457-4/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1000709.JPG,,TRUE, +N1,61283,sortie-73b55ec0-137a-4f87-bd1c-4035908a7457,https://biolit.fr/sorties/sortie-73b55ec0-137a-4f87-bd1c-4035908a7457/,Phil,,1/14/2016 0:00,13.0000000,13.0000000,47.868565000000,-3.929144000000,,Concarneau - Finistère,55814,observation-73b55ec0-137a-4f87-bd1c-4035908a7457-5,https://biolit.fr/observations/observation-73b55ec0-137a-4f87-bd1c-4035908a7457-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/2016-01-14-23h21m49s281.jpg,,FALSE, +N1,61283,sortie-73b55ec0-137a-4f87-bd1c-4035908a7457,https://biolit.fr/sorties/sortie-73b55ec0-137a-4f87-bd1c-4035908a7457/,Phil,,1/14/2016 0:00,13.0000000,13.0000000,47.868565000000,-3.929144000000,,Concarneau - Finistère,55816,observation-73b55ec0-137a-4f87-bd1c-4035908a7457-6,https://biolit.fr/observations/observation-73b55ec0-137a-4f87-bd1c-4035908a7457-6/,Membranipora membranacea,Membranipore,,https://biolit.fr/wp-content/uploads/2023/07/P1000678.JPG,,TRUE, +N1,61284,sortie-645f8e71-722c-422e-9d2b-11fd308c9f2b,https://biolit.fr/sorties/sortie-645f8e71-722c-422e-9d2b-11fd308c9f2b/,Phil,,1/14/2016 0:00,10.0:35,10.0:45,47.869946000000,-3.928187000000,,Concarneau - Finistère,55818,observation-645f8e71-722c-422e-9d2b-11fd308c9f2b,https://biolit.fr/observations/observation-645f8e71-722c-422e-9d2b-11fd308c9f2b/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/P1000640.JPG,,TRUE, +N1,61284,sortie-645f8e71-722c-422e-9d2b-11fd308c9f2b,https://biolit.fr/sorties/sortie-645f8e71-722c-422e-9d2b-11fd308c9f2b/,Phil,,1/14/2016 0:00,10.0:35,10.0:45,47.869946000000,-3.928187000000,,Concarneau - Finistère,55820,observation-645f8e71-722c-422e-9d2b-11fd308c9f2b-2,https://biolit.fr/observations/observation-645f8e71-722c-422e-9d2b-11fd308c9f2b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000639.JPG,,FALSE, +N1,61284,sortie-645f8e71-722c-422e-9d2b-11fd308c9f2b,https://biolit.fr/sorties/sortie-645f8e71-722c-422e-9d2b-11fd308c9f2b/,Phil,,1/14/2016 0:00,10.0:35,10.0:45,47.869946000000,-3.928187000000,,Concarneau - Finistère,55822,observation-645f8e71-722c-422e-9d2b-11fd308c9f2b-3,https://biolit.fr/observations/observation-645f8e71-722c-422e-9d2b-11fd308c9f2b-3/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/P1000633.JPG,,TRUE, +N1,61284,sortie-645f8e71-722c-422e-9d2b-11fd308c9f2b,https://biolit.fr/sorties/sortie-645f8e71-722c-422e-9d2b-11fd308c9f2b/,Phil,,1/14/2016 0:00,10.0:35,10.0:45,47.869946000000,-3.928187000000,,Concarneau - Finistère,55824,observation-645f8e71-722c-422e-9d2b-11fd308c9f2b-4,https://biolit.fr/observations/observation-645f8e71-722c-422e-9d2b-11fd308c9f2b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000647.JPG,,FALSE, +N1,61284,sortie-645f8e71-722c-422e-9d2b-11fd308c9f2b,https://biolit.fr/sorties/sortie-645f8e71-722c-422e-9d2b-11fd308c9f2b/,Phil,,1/14/2016 0:00,10.0:35,10.0:45,47.869946000000,-3.928187000000,,Concarneau - Finistère,55826,observation-645f8e71-722c-422e-9d2b-11fd308c9f2b-5,https://biolit.fr/observations/observation-645f8e71-722c-422e-9d2b-11fd308c9f2b-5/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1000628.JPG,,TRUE, +N1,61285,sortie-ad10d829-53b4-4215-b25c-aa6c07c47626,https://biolit.fr/sorties/sortie-ad10d829-53b4-4215-b25c-aa6c07c47626/,Phil,,1/14/2016 0:00,10.0:15,10.0000000,47.870477000000,-3.927963000000,,Concarneau - Finistère,55828,observation-ad10d829-53b4-4215-b25c-aa6c07c47626,https://biolit.fr/observations/observation-ad10d829-53b4-4215-b25c-aa6c07c47626/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1000448.JPG,,TRUE, +N1,61285,sortie-ad10d829-53b4-4215-b25c-aa6c07c47626,https://biolit.fr/sorties/sortie-ad10d829-53b4-4215-b25c-aa6c07c47626/,Phil,,1/14/2016 0:00,10.0:15,10.0000000,47.870477000000,-3.927963000000,,Concarneau - Finistère,55830,observation-ad10d829-53b4-4215-b25c-aa6c07c47626-2,https://biolit.fr/observations/observation-ad10d829-53b4-4215-b25c-aa6c07c47626-2/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1000635.JPG,,TRUE, +N1,61285,sortie-ad10d829-53b4-4215-b25c-aa6c07c47626,https://biolit.fr/sorties/sortie-ad10d829-53b4-4215-b25c-aa6c07c47626/,Phil,,1/14/2016 0:00,10.0:15,10.0000000,47.870477000000,-3.927963000000,,Concarneau - Finistère,55832,observation-ad10d829-53b4-4215-b25c-aa6c07c47626-3,https://biolit.fr/observations/observation-ad10d829-53b4-4215-b25c-aa6c07c47626-3/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/2023/07/P1000525.JPG,,TRUE, +N1,61285,sortie-ad10d829-53b4-4215-b25c-aa6c07c47626,https://biolit.fr/sorties/sortie-ad10d829-53b4-4215-b25c-aa6c07c47626/,Phil,,1/14/2016 0:00,10.0:15,10.0000000,47.870477000000,-3.927963000000,,Concarneau - Finistère,55834,observation-ad10d829-53b4-4215-b25c-aa6c07c47626-4,https://biolit.fr/observations/observation-ad10d829-53b4-4215-b25c-aa6c07c47626-4/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1000573.JPG,,TRUE, +N1,61285,sortie-ad10d829-53b4-4215-b25c-aa6c07c47626,https://biolit.fr/sorties/sortie-ad10d829-53b4-4215-b25c-aa6c07c47626/,Phil,,1/14/2016 0:00,10.0:15,10.0000000,47.870477000000,-3.927963000000,,Concarneau - Finistère,55836,observation-ad10d829-53b4-4215-b25c-aa6c07c47626-5,https://biolit.fr/observations/observation-ad10d829-53b4-4215-b25c-aa6c07c47626-5/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/2023/07/P1000611.JPG,,TRUE, +N1,61285,sortie-ad10d829-53b4-4215-b25c-aa6c07c47626,https://biolit.fr/sorties/sortie-ad10d829-53b4-4215-b25c-aa6c07c47626/,Phil,,1/14/2016 0:00,10.0:15,10.0000000,47.870477000000,-3.927963000000,,Concarneau - Finistère,55838,observation-ad10d829-53b4-4215-b25c-aa6c07c47626-6,https://biolit.fr/observations/observation-ad10d829-53b4-4215-b25c-aa6c07c47626-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000580.JPG,,FALSE, +N1,61285,sortie-ad10d829-53b4-4215-b25c-aa6c07c47626,https://biolit.fr/sorties/sortie-ad10d829-53b4-4215-b25c-aa6c07c47626/,Phil,,1/14/2016 0:00,10.0:15,10.0000000,47.870477000000,-3.927963000000,,Concarneau - Finistère,55840,observation-ad10d829-53b4-4215-b25c-aa6c07c47626-7,https://biolit.fr/observations/observation-ad10d829-53b4-4215-b25c-aa6c07c47626-7/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1000602.JPG,,TRUE, +N1,61285,sortie-ad10d829-53b4-4215-b25c-aa6c07c47626,https://biolit.fr/sorties/sortie-ad10d829-53b4-4215-b25c-aa6c07c47626/,Phil,,1/14/2016 0:00,10.0:15,10.0000000,47.870477000000,-3.927963000000,,Concarneau - Finistère,55842,observation-ad10d829-53b4-4215-b25c-aa6c07c47626-8,https://biolit.fr/observations/observation-ad10d829-53b4-4215-b25c-aa6c07c47626-8/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/P1000608.JPG,,TRUE, +N1,61286,sortie-185be9a8-3838-49ca-b742-2f1aa33b1041,https://biolit.fr/sorties/sortie-185be9a8-3838-49ca-b742-2f1aa33b1041/,Phil,,01/12/2016,10.0:45,10.0000000,47.871476000000,-3.916576000000,,Concarneau - Finistère,55844,observation-185be9a8-3838-49ca-b742-2f1aa33b1041,https://biolit.fr/observations/observation-185be9a8-3838-49ca-b742-2f1aa33b1041/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20160112_104435.jpg,,TRUE, +N1,61286,sortie-185be9a8-3838-49ca-b742-2f1aa33b1041,https://biolit.fr/sorties/sortie-185be9a8-3838-49ca-b742-2f1aa33b1041/,Phil,,01/12/2016,10.0:45,10.0000000,47.871476000000,-3.916576000000,,Concarneau - Finistère,55846,observation-185be9a8-3838-49ca-b742-2f1aa33b1041-2,https://biolit.fr/observations/observation-185be9a8-3838-49ca-b742-2f1aa33b1041-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160112_104457.jpg,,FALSE, +N1,61287,sortie-c1a9096d-049c-403f-bf8e-7af9512685c8,https://biolit.fr/sorties/sortie-c1a9096d-049c-403f-bf8e-7af9512685c8/,Centre de Découverte Mer et Montagne,,1/13/2016 0:00,14.0000000,15.0000000,43.692081000000,7.290469000000,,"Plage de la Réserve, Nice",55848,observation-c1a9096d-049c-403f-bf8e-7af9512685c8,https://biolit.fr/observations/observation-c1a9096d-049c-403f-bf8e-7af9512685c8/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/2023/07/IMGP4203-scaled.jpg,,TRUE, +N1,61287,sortie-c1a9096d-049c-403f-bf8e-7af9512685c8,https://biolit.fr/sorties/sortie-c1a9096d-049c-403f-bf8e-7af9512685c8/,Centre de Découverte Mer et Montagne,,1/13/2016 0:00,14.0000000,15.0000000,43.692081000000,7.290469000000,,"Plage de la Réserve, Nice",55850,observation-c1a9096d-049c-403f-bf8e-7af9512685c8-2,https://biolit.fr/observations/observation-c1a9096d-049c-403f-bf8e-7af9512685c8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP4211-scaled.jpg,,FALSE, +N1,61287,sortie-c1a9096d-049c-403f-bf8e-7af9512685c8,https://biolit.fr/sorties/sortie-c1a9096d-049c-403f-bf8e-7af9512685c8/,Centre de Découverte Mer et Montagne,,1/13/2016 0:00,14.0000000,15.0000000,43.692081000000,7.290469000000,,"Plage de la Réserve, Nice",55852,observation-c1a9096d-049c-403f-bf8e-7af9512685c8-3,https://biolit.fr/observations/observation-c1a9096d-049c-403f-bf8e-7af9512685c8-3/,Halimeda tuna,Monnaie de Poséidon,,https://biolit.fr/wp-content/uploads/2023/07/IMGP4212-scaled.jpg,,TRUE, +N1,61287,sortie-c1a9096d-049c-403f-bf8e-7af9512685c8,https://biolit.fr/sorties/sortie-c1a9096d-049c-403f-bf8e-7af9512685c8/,Centre de Découverte Mer et Montagne,,1/13/2016 0:00,14.0000000,15.0000000,43.692081000000,7.290469000000,,"Plage de la Réserve, Nice",55854,observation-c1a9096d-049c-403f-bf8e-7af9512685c8-4,https://biolit.fr/observations/observation-c1a9096d-049c-403f-bf8e-7af9512685c8-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP4213-scaled.jpg,,FALSE, +N1,61287,sortie-c1a9096d-049c-403f-bf8e-7af9512685c8,https://biolit.fr/sorties/sortie-c1a9096d-049c-403f-bf8e-7af9512685c8/,Centre de Découverte Mer et Montagne,,1/13/2016 0:00,14.0000000,15.0000000,43.692081000000,7.290469000000,,"Plage de la Réserve, Nice",55856,observation-c1a9096d-049c-403f-bf8e-7af9512685c8-5,https://biolit.fr/observations/observation-c1a9096d-049c-403f-bf8e-7af9512685c8-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP4202-scaled.jpg,,FALSE, +N1,61287,sortie-c1a9096d-049c-403f-bf8e-7af9512685c8,https://biolit.fr/sorties/sortie-c1a9096d-049c-403f-bf8e-7af9512685c8/,Centre de Découverte Mer et Montagne,,1/13/2016 0:00,14.0000000,15.0000000,43.692081000000,7.290469000000,,"Plage de la Réserve, Nice",55858,observation-c1a9096d-049c-403f-bf8e-7af9512685c8-6,https://biolit.fr/observations/observation-c1a9096d-049c-403f-bf8e-7af9512685c8-6/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMGP4215-scaled.jpg,,TRUE, +N1,61287,sortie-c1a9096d-049c-403f-bf8e-7af9512685c8,https://biolit.fr/sorties/sortie-c1a9096d-049c-403f-bf8e-7af9512685c8/,Centre de Découverte Mer et Montagne,,1/13/2016 0:00,14.0000000,15.0000000,43.692081000000,7.290469000000,,"Plage de la Réserve, Nice",55860,observation-c1a9096d-049c-403f-bf8e-7af9512685c8-7,https://biolit.fr/observations/observation-c1a9096d-049c-403f-bf8e-7af9512685c8-7/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/IMGP4216-scaled.jpg,,TRUE, +N1,61287,sortie-c1a9096d-049c-403f-bf8e-7af9512685c8,https://biolit.fr/sorties/sortie-c1a9096d-049c-403f-bf8e-7af9512685c8/,Centre de Découverte Mer et Montagne,,1/13/2016 0:00,14.0000000,15.0000000,43.692081000000,7.290469000000,,"Plage de la Réserve, Nice",55862,observation-c1a9096d-049c-403f-bf8e-7af9512685c8-8,https://biolit.fr/observations/observation-c1a9096d-049c-403f-bf8e-7af9512685c8-8/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/IMGP4217-scaled.jpg,,TRUE, +N1,61287,sortie-c1a9096d-049c-403f-bf8e-7af9512685c8,https://biolit.fr/sorties/sortie-c1a9096d-049c-403f-bf8e-7af9512685c8/,Centre de Découverte Mer et Montagne,,1/13/2016 0:00,14.0000000,15.0000000,43.692081000000,7.290469000000,,"Plage de la Réserve, Nice",55864,observation-c1a9096d-049c-403f-bf8e-7af9512685c8-9,https://biolit.fr/observations/observation-c1a9096d-049c-403f-bf8e-7af9512685c8-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP4219-scaled.jpg,,FALSE, +N1,61288,sortie-f75b97cc-04d8-4987-9400-684676ac6990,https://biolit.fr/sorties/sortie-f75b97cc-04d8-4987-9400-684676ac6990/,Phil,,01/12/2016,10.0000000,10.0000000,47.871487000000,-3.916725000000,,Concarneau - Finistère,55866,observation-f75b97cc-04d8-4987-9400-684676ac6990,https://biolit.fr/observations/observation-f75b97cc-04d8-4987-9400-684676ac6990/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/20160112_103949.jpg,,TRUE, +N1,61288,sortie-f75b97cc-04d8-4987-9400-684676ac6990,https://biolit.fr/sorties/sortie-f75b97cc-04d8-4987-9400-684676ac6990/,Phil,,01/12/2016,10.0000000,10.0000000,47.871487000000,-3.916725000000,,Concarneau - Finistère,55868,observation-f75b97cc-04d8-4987-9400-684676ac6990-2,https://biolit.fr/observations/observation-f75b97cc-04d8-4987-9400-684676ac6990-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160112_104003.jpg,,FALSE, +N1,61288,sortie-f75b97cc-04d8-4987-9400-684676ac6990,https://biolit.fr/sorties/sortie-f75b97cc-04d8-4987-9400-684676ac6990/,Phil,,01/12/2016,10.0000000,10.0000000,47.871487000000,-3.916725000000,,Concarneau - Finistère,55870,observation-f75b97cc-04d8-4987-9400-684676ac6990-3,https://biolit.fr/observations/observation-f75b97cc-04d8-4987-9400-684676ac6990-3/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20160112_104232.jpg,,TRUE, +N1,61289,sortie-0d4fef0a-9a0d-4834-9c1e-aa63561bf2ae,https://biolit.fr/sorties/sortie-0d4fef0a-9a0d-4834-9c1e-aa63561bf2ae/,Phil,,01/12/2016,10.0000000,10.0:35,47.871684000000,-3.916877000000,,Concarneau - Finistère,55872,observation-0d4fef0a-9a0d-4834-9c1e-aa63561bf2ae,https://biolit.fr/observations/observation-0d4fef0a-9a0d-4834-9c1e-aa63561bf2ae/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160112_103236.jpg,,FALSE, +N1,61289,sortie-0d4fef0a-9a0d-4834-9c1e-aa63561bf2ae,https://biolit.fr/sorties/sortie-0d4fef0a-9a0d-4834-9c1e-aa63561bf2ae/,Phil,,01/12/2016,10.0000000,10.0:35,47.871684000000,-3.916877000000,,Concarneau - Finistère,55874,observation-0d4fef0a-9a0d-4834-9c1e-aa63561bf2ae-2,https://biolit.fr/observations/observation-0d4fef0a-9a0d-4834-9c1e-aa63561bf2ae-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160112_103230.jpg,,FALSE, +N1,61289,sortie-0d4fef0a-9a0d-4834-9c1e-aa63561bf2ae,https://biolit.fr/sorties/sortie-0d4fef0a-9a0d-4834-9c1e-aa63561bf2ae/,Phil,,01/12/2016,10.0000000,10.0:35,47.871684000000,-3.916877000000,,Concarneau - Finistère,55876,observation-0d4fef0a-9a0d-4834-9c1e-aa63561bf2ae-3,https://biolit.fr/observations/observation-0d4fef0a-9a0d-4834-9c1e-aa63561bf2ae-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160112_103301.jpg,,FALSE, +N1,61290,sortie-f9124c72-55d5-4685-ae5b-d96ee782566b,https://biolit.fr/sorties/sortie-f9124c72-55d5-4685-ae5b-d96ee782566b/,Phil,,01/10/2016,13.000005,13.0:15,48.094899000000,-4.299025000000,,Kerlaz - Finistère,55878,observation-f9124c72-55d5-4685-ae5b-d96ee782566b,https://biolit.fr/observations/observation-f9124c72-55d5-4685-ae5b-d96ee782566b/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000360.JPG,,FALSE, +N1,61290,sortie-f9124c72-55d5-4685-ae5b-d96ee782566b,https://biolit.fr/sorties/sortie-f9124c72-55d5-4685-ae5b-d96ee782566b/,Phil,,01/10/2016,13.000005,13.0:15,48.094899000000,-4.299025000000,,Kerlaz - Finistère,55880,observation-f9124c72-55d5-4685-ae5b-d96ee782566b-2,https://biolit.fr/observations/observation-f9124c72-55d5-4685-ae5b-d96ee782566b-2/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/P1000362.JPG,,TRUE, +N1,61290,sortie-f9124c72-55d5-4685-ae5b-d96ee782566b,https://biolit.fr/sorties/sortie-f9124c72-55d5-4685-ae5b-d96ee782566b/,Phil,,01/10/2016,13.000005,13.0:15,48.094899000000,-4.299025000000,,Kerlaz - Finistère,55882,observation-f9124c72-55d5-4685-ae5b-d96ee782566b-3,https://biolit.fr/observations/observation-f9124c72-55d5-4685-ae5b-d96ee782566b-3/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/P1000357.JPG,,TRUE, +N1,61290,sortie-f9124c72-55d5-4685-ae5b-d96ee782566b,https://biolit.fr/sorties/sortie-f9124c72-55d5-4685-ae5b-d96ee782566b/,Phil,,01/10/2016,13.000005,13.0:15,48.094899000000,-4.299025000000,,Kerlaz - Finistère,55884,observation-f9124c72-55d5-4685-ae5b-d96ee782566b-4,https://biolit.fr/observations/observation-f9124c72-55d5-4685-ae5b-d96ee782566b-4/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/P1000364.JPG,,TRUE, +N1,61291,sortie-02355feb-7111-4dd5-9644-f9826ce6133d,https://biolit.fr/sorties/sortie-02355feb-7111-4dd5-9644-f9826ce6133d/,Phil,,01/10/2016,12.0000000,13.0000000,48.094495000000,-4.299332000000,,Kerlaz - Finistère,55886,observation-02355feb-7111-4dd5-9644-f9826ce6133d,https://biolit.fr/observations/observation-02355feb-7111-4dd5-9644-f9826ce6133d/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/P1000306.JPG,,TRUE, +N1,61291,sortie-02355feb-7111-4dd5-9644-f9826ce6133d,https://biolit.fr/sorties/sortie-02355feb-7111-4dd5-9644-f9826ce6133d/,Phil,,01/10/2016,12.0000000,13.0000000,48.094495000000,-4.299332000000,,Kerlaz - Finistère,55888,observation-02355feb-7111-4dd5-9644-f9826ce6133d-2,https://biolit.fr/observations/observation-02355feb-7111-4dd5-9644-f9826ce6133d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000295.JPG,,FALSE, +N1,61291,sortie-02355feb-7111-4dd5-9644-f9826ce6133d,https://biolit.fr/sorties/sortie-02355feb-7111-4dd5-9644-f9826ce6133d/,Phil,,01/10/2016,12.0000000,13.0000000,48.094495000000,-4.299332000000,,Kerlaz - Finistère,55890,observation-02355feb-7111-4dd5-9644-f9826ce6133d-3,https://biolit.fr/observations/observation-02355feb-7111-4dd5-9644-f9826ce6133d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000290-scaled.jpg,,FALSE, +N1,61291,sortie-02355feb-7111-4dd5-9644-f9826ce6133d,https://biolit.fr/sorties/sortie-02355feb-7111-4dd5-9644-f9826ce6133d/,Phil,,01/10/2016,12.0000000,13.0000000,48.094495000000,-4.299332000000,,Kerlaz - Finistère,55892,observation-02355feb-7111-4dd5-9644-f9826ce6133d-4,https://biolit.fr/observations/observation-02355feb-7111-4dd5-9644-f9826ce6133d-4/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/P1000258-scaled.jpg,,TRUE, +N1,61291,sortie-02355feb-7111-4dd5-9644-f9826ce6133d,https://biolit.fr/sorties/sortie-02355feb-7111-4dd5-9644-f9826ce6133d/,Phil,,01/10/2016,12.0000000,13.0000000,48.094495000000,-4.299332000000,,Kerlaz - Finistère,55894,observation-02355feb-7111-4dd5-9644-f9826ce6133d-5,https://biolit.fr/observations/observation-02355feb-7111-4dd5-9644-f9826ce6133d-5/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/P1000263.JPG,,TRUE, +N1,61291,sortie-02355feb-7111-4dd5-9644-f9826ce6133d,https://biolit.fr/sorties/sortie-02355feb-7111-4dd5-9644-f9826ce6133d/,Phil,,01/10/2016,12.0000000,13.0000000,48.094495000000,-4.299332000000,,Kerlaz - Finistère,55896,observation-02355feb-7111-4dd5-9644-f9826ce6133d-6,https://biolit.fr/observations/observation-02355feb-7111-4dd5-9644-f9826ce6133d-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000244.JPG,,FALSE, +N1,61291,sortie-02355feb-7111-4dd5-9644-f9826ce6133d,https://biolit.fr/sorties/sortie-02355feb-7111-4dd5-9644-f9826ce6133d/,Phil,,01/10/2016,12.0000000,13.0000000,48.094495000000,-4.299332000000,,Kerlaz - Finistère,55898,observation-02355feb-7111-4dd5-9644-f9826ce6133d-7,https://biolit.fr/observations/observation-02355feb-7111-4dd5-9644-f9826ce6133d-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000251-scaled.jpg,,FALSE, +N1,61292,sortie-226ab5b9-6541-466d-81cb-e800e7125030,https://biolit.fr/sorties/sortie-226ab5b9-6541-466d-81cb-e800e7125030/,Ville de Marseille,,12/14/2015 0:00,11.0000000,13.0000000,43.284284000000,5.316615000000,,"Calanque de St Estève, archipel du Frioul",55900,observation-226ab5b9-6541-466d-81cb-e800e7125030,https://biolit.fr/observations/observation-226ab5b9-6541-466d-81cb-e800e7125030/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060353-scaled.jpg,,FALSE, +N1,61292,sortie-226ab5b9-6541-466d-81cb-e800e7125030,https://biolit.fr/sorties/sortie-226ab5b9-6541-466d-81cb-e800e7125030/,Ville de Marseille,,12/14/2015 0:00,11.0000000,13.0000000,43.284284000000,5.316615000000,,"Calanque de St Estève, archipel du Frioul",55902,observation-226ab5b9-6541-466d-81cb-e800e7125030-2,https://biolit.fr/observations/observation-226ab5b9-6541-466d-81cb-e800e7125030-2/,Pinna nobilis,Grande nacre,,https://biolit.fr/wp-content/uploads/2023/07/P1060354-scaled.jpg,,TRUE, +N1,61292,sortie-226ab5b9-6541-466d-81cb-e800e7125030,https://biolit.fr/sorties/sortie-226ab5b9-6541-466d-81cb-e800e7125030/,Ville de Marseille,,12/14/2015 0:00,11.0000000,13.0000000,43.284284000000,5.316615000000,,"Calanque de St Estève, archipel du Frioul",55904,observation-226ab5b9-6541-466d-81cb-e800e7125030-3,https://biolit.fr/observations/observation-226ab5b9-6541-466d-81cb-e800e7125030-3/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/P1060355-scaled.jpg,,TRUE, +N1,61292,sortie-226ab5b9-6541-466d-81cb-e800e7125030,https://biolit.fr/sorties/sortie-226ab5b9-6541-466d-81cb-e800e7125030/,Ville de Marseille,,12/14/2015 0:00,11.0000000,13.0000000,43.284284000000,5.316615000000,,"Calanque de St Estève, archipel du Frioul",55906,observation-226ab5b9-6541-466d-81cb-e800e7125030-4,https://biolit.fr/observations/observation-226ab5b9-6541-466d-81cb-e800e7125030-4/,Maja squinado,Grande araignée de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/P1060356-scaled.jpg,,TRUE, +N1,61292,sortie-226ab5b9-6541-466d-81cb-e800e7125030,https://biolit.fr/sorties/sortie-226ab5b9-6541-466d-81cb-e800e7125030/,Ville de Marseille,,12/14/2015 0:00,11.0000000,13.0000000,43.284284000000,5.316615000000,,"Calanque de St Estève, archipel du Frioul",55908,observation-226ab5b9-6541-466d-81cb-e800e7125030-5,https://biolit.fr/observations/observation-226ab5b9-6541-466d-81cb-e800e7125030-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060357-scaled.jpg,,FALSE, +N1,61292,sortie-226ab5b9-6541-466d-81cb-e800e7125030,https://biolit.fr/sorties/sortie-226ab5b9-6541-466d-81cb-e800e7125030/,Ville de Marseille,,12/14/2015 0:00,11.0000000,13.0000000,43.284284000000,5.316615000000,,"Calanque de St Estève, archipel du Frioul",55910,observation-226ab5b9-6541-466d-81cb-e800e7125030-6,https://biolit.fr/observations/observation-226ab5b9-6541-466d-81cb-e800e7125030-6/,Larus michahellis,Goéland leucophée,,https://biolit.fr/wp-content/uploads/2023/07/P1060361-scaled.jpg,,TRUE, +N1,61292,sortie-226ab5b9-6541-466d-81cb-e800e7125030,https://biolit.fr/sorties/sortie-226ab5b9-6541-466d-81cb-e800e7125030/,Ville de Marseille,,12/14/2015 0:00,11.0000000,13.0000000,43.284284000000,5.316615000000,,"Calanque de St Estève, archipel du Frioul",55912,observation-226ab5b9-6541-466d-81cb-e800e7125030-7,https://biolit.fr/observations/observation-226ab5b9-6541-466d-81cb-e800e7125030-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060362-scaled.jpg,,FALSE, +N1,61292,sortie-226ab5b9-6541-466d-81cb-e800e7125030,https://biolit.fr/sorties/sortie-226ab5b9-6541-466d-81cb-e800e7125030/,Ville de Marseille,,12/14/2015 0:00,11.0000000,13.0000000,43.284284000000,5.316615000000,,"Calanque de St Estève, archipel du Frioul",55914,observation-226ab5b9-6541-466d-81cb-e800e7125030-8,https://biolit.fr/observations/observation-226ab5b9-6541-466d-81cb-e800e7125030-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060366-scaled.jpg,,FALSE, +N1,61292,sortie-226ab5b9-6541-466d-81cb-e800e7125030,https://biolit.fr/sorties/sortie-226ab5b9-6541-466d-81cb-e800e7125030/,Ville de Marseille,,12/14/2015 0:00,11.0000000,13.0000000,43.284284000000,5.316615000000,,"Calanque de St Estève, archipel du Frioul",55916,observation-226ab5b9-6541-466d-81cb-e800e7125030-9,https://biolit.fr/observations/observation-226ab5b9-6541-466d-81cb-e800e7125030-9/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/P1060367-scaled.jpg,,TRUE, +N1,61292,sortie-226ab5b9-6541-466d-81cb-e800e7125030,https://biolit.fr/sorties/sortie-226ab5b9-6541-466d-81cb-e800e7125030/,Ville de Marseille,,12/14/2015 0:00,11.0000000,13.0000000,43.284284000000,5.316615000000,,"Calanque de St Estève, archipel du Frioul",55918,observation-226ab5b9-6541-466d-81cb-e800e7125030-10,https://biolit.fr/observations/observation-226ab5b9-6541-466d-81cb-e800e7125030-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060368-scaled.jpg,,FALSE, +N1,61292,sortie-226ab5b9-6541-466d-81cb-e800e7125030,https://biolit.fr/sorties/sortie-226ab5b9-6541-466d-81cb-e800e7125030/,Ville de Marseille,,12/14/2015 0:00,11.0000000,13.0000000,43.284284000000,5.316615000000,,"Calanque de St Estève, archipel du Frioul",55920,observation-226ab5b9-6541-466d-81cb-e800e7125030-11,https://biolit.fr/observations/observation-226ab5b9-6541-466d-81cb-e800e7125030-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060369-scaled.jpg,,FALSE, +N1,61292,sortie-226ab5b9-6541-466d-81cb-e800e7125030,https://biolit.fr/sorties/sortie-226ab5b9-6541-466d-81cb-e800e7125030/,Ville de Marseille,,12/14/2015 0:00,11.0000000,13.0000000,43.284284000000,5.316615000000,,"Calanque de St Estève, archipel du Frioul",55922,observation-226ab5b9-6541-466d-81cb-e800e7125030-12,https://biolit.fr/observations/observation-226ab5b9-6541-466d-81cb-e800e7125030-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060371-scaled.jpg,,FALSE, +N1,61292,sortie-226ab5b9-6541-466d-81cb-e800e7125030,https://biolit.fr/sorties/sortie-226ab5b9-6541-466d-81cb-e800e7125030/,Ville de Marseille,,12/14/2015 0:00,11.0000000,13.0000000,43.284284000000,5.316615000000,,"Calanque de St Estève, archipel du Frioul",55924,observation-226ab5b9-6541-466d-81cb-e800e7125030-13,https://biolit.fr/observations/observation-226ab5b9-6541-466d-81cb-e800e7125030-13/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/P1060372-scaled.jpg,,TRUE, +N1,61292,sortie-226ab5b9-6541-466d-81cb-e800e7125030,https://biolit.fr/sorties/sortie-226ab5b9-6541-466d-81cb-e800e7125030/,Ville de Marseille,,12/14/2015 0:00,11.0000000,13.0000000,43.284284000000,5.316615000000,,"Calanque de St Estève, archipel du Frioul",55926,observation-226ab5b9-6541-466d-81cb-e800e7125030-14,https://biolit.fr/observations/observation-226ab5b9-6541-466d-81cb-e800e7125030-14/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/P1060373-scaled.jpg,,TRUE, +N1,61293,sortie-480c2ef6-9013-49c9-b17e-de882011dac8,https://biolit.fr/sorties/sortie-480c2ef6-9013-49c9-b17e-de882011dac8/,Ville de Marseille,,12/11/2015,10.0000000,12.0000000,43.238184000000,5.361440000000,,"plage du Bain des Dames, Marseille",55928,observation-480c2ef6-9013-49c9-b17e-de882011dac8,https://biolit.fr/observations/observation-480c2ef6-9013-49c9-b17e-de882011dac8/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/P1060307-scaled.jpg,,TRUE, +N1,61293,sortie-480c2ef6-9013-49c9-b17e-de882011dac8,https://biolit.fr/sorties/sortie-480c2ef6-9013-49c9-b17e-de882011dac8/,Ville de Marseille,,12/11/2015,10.0000000,12.0000000,43.238184000000,5.361440000000,,"plage du Bain des Dames, Marseille",55930,observation-480c2ef6-9013-49c9-b17e-de882011dac8-2,https://biolit.fr/observations/observation-480c2ef6-9013-49c9-b17e-de882011dac8-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/P1060309-scaled.jpg,,TRUE, +N1,61293,sortie-480c2ef6-9013-49c9-b17e-de882011dac8,https://biolit.fr/sorties/sortie-480c2ef6-9013-49c9-b17e-de882011dac8/,Ville de Marseille,,12/11/2015,10.0000000,12.0000000,43.238184000000,5.361440000000,,"plage du Bain des Dames, Marseille",55932,observation-480c2ef6-9013-49c9-b17e-de882011dac8-3,https://biolit.fr/observations/observation-480c2ef6-9013-49c9-b17e-de882011dac8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060311-scaled.jpg,,FALSE, +N1,61293,sortie-480c2ef6-9013-49c9-b17e-de882011dac8,https://biolit.fr/sorties/sortie-480c2ef6-9013-49c9-b17e-de882011dac8/,Ville de Marseille,,12/11/2015,10.0000000,12.0000000,43.238184000000,5.361440000000,,"plage du Bain des Dames, Marseille",55934,observation-480c2ef6-9013-49c9-b17e-de882011dac8-4,https://biolit.fr/observations/observation-480c2ef6-9013-49c9-b17e-de882011dac8-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060310-scaled.jpg,,FALSE, +N1,61293,sortie-480c2ef6-9013-49c9-b17e-de882011dac8,https://biolit.fr/sorties/sortie-480c2ef6-9013-49c9-b17e-de882011dac8/,Ville de Marseille,,12/11/2015,10.0000000,12.0000000,43.238184000000,5.361440000000,,"plage du Bain des Dames, Marseille",55936,observation-480c2ef6-9013-49c9-b17e-de882011dac8-5,https://biolit.fr/observations/observation-480c2ef6-9013-49c9-b17e-de882011dac8-5/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/2023/07/P1060314-scaled.jpg,,TRUE, +N1,61293,sortie-480c2ef6-9013-49c9-b17e-de882011dac8,https://biolit.fr/sorties/sortie-480c2ef6-9013-49c9-b17e-de882011dac8/,Ville de Marseille,,12/11/2015,10.0000000,12.0000000,43.238184000000,5.361440000000,,"plage du Bain des Dames, Marseille",55938,observation-480c2ef6-9013-49c9-b17e-de882011dac8-6,https://biolit.fr/observations/observation-480c2ef6-9013-49c9-b17e-de882011dac8-6/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/P1060315.jpg,,, +N1,61293,sortie-480c2ef6-9013-49c9-b17e-de882011dac8,https://biolit.fr/sorties/sortie-480c2ef6-9013-49c9-b17e-de882011dac8/,Ville de Marseille,,12/11/2015,10.0000000,12.0000000,43.238184000000,5.361440000000,,"plage du Bain des Dames, Marseille",55939,observation-480c2ef6-9013-49c9-b17e-de882011dac8-7,https://biolit.fr/observations/observation-480c2ef6-9013-49c9-b17e-de882011dac8-7/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/P1060316-scaled.jpg,,TRUE, +N1,61293,sortie-480c2ef6-9013-49c9-b17e-de882011dac8,https://biolit.fr/sorties/sortie-480c2ef6-9013-49c9-b17e-de882011dac8/,Ville de Marseille,,12/11/2015,10.0000000,12.0000000,43.238184000000,5.361440000000,,"plage du Bain des Dames, Marseille",55941,observation-480c2ef6-9013-49c9-b17e-de882011dac8-8,https://biolit.fr/observations/observation-480c2ef6-9013-49c9-b17e-de882011dac8-8/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/2023/07/P1060317-scaled.jpg,,TRUE, +N1,61293,sortie-480c2ef6-9013-49c9-b17e-de882011dac8,https://biolit.fr/sorties/sortie-480c2ef6-9013-49c9-b17e-de882011dac8/,Ville de Marseille,,12/11/2015,10.0000000,12.0000000,43.238184000000,5.361440000000,,"plage du Bain des Dames, Marseille",55943,observation-480c2ef6-9013-49c9-b17e-de882011dac8-9,https://biolit.fr/observations/observation-480c2ef6-9013-49c9-b17e-de882011dac8-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060318-scaled.jpg,,FALSE, +N1,61293,sortie-480c2ef6-9013-49c9-b17e-de882011dac8,https://biolit.fr/sorties/sortie-480c2ef6-9013-49c9-b17e-de882011dac8/,Ville de Marseille,,12/11/2015,10.0000000,12.0000000,43.238184000000,5.361440000000,,"plage du Bain des Dames, Marseille",55945,observation-480c2ef6-9013-49c9-b17e-de882011dac8-10,https://biolit.fr/observations/observation-480c2ef6-9013-49c9-b17e-de882011dac8-10/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/P1060320-scaled.jpg,,TRUE, +N1,61293,sortie-480c2ef6-9013-49c9-b17e-de882011dac8,https://biolit.fr/sorties/sortie-480c2ef6-9013-49c9-b17e-de882011dac8/,Ville de Marseille,,12/11/2015,10.0000000,12.0000000,43.238184000000,5.361440000000,,"plage du Bain des Dames, Marseille",55947,observation-480c2ef6-9013-49c9-b17e-de882011dac8-11,https://biolit.fr/observations/observation-480c2ef6-9013-49c9-b17e-de882011dac8-11/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/P1060319-scaled.jpg,,TRUE, +N1,61293,sortie-480c2ef6-9013-49c9-b17e-de882011dac8,https://biolit.fr/sorties/sortie-480c2ef6-9013-49c9-b17e-de882011dac8/,Ville de Marseille,,12/11/2015,10.0000000,12.0000000,43.238184000000,5.361440000000,,"plage du Bain des Dames, Marseille",55949,observation-480c2ef6-9013-49c9-b17e-de882011dac8-12,https://biolit.fr/observations/observation-480c2ef6-9013-49c9-b17e-de882011dac8-12/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/2023/07/P1060321-scaled.jpg,,TRUE, +N1,61293,sortie-480c2ef6-9013-49c9-b17e-de882011dac8,https://biolit.fr/sorties/sortie-480c2ef6-9013-49c9-b17e-de882011dac8/,Ville de Marseille,,12/11/2015,10.0000000,12.0000000,43.238184000000,5.361440000000,,"plage du Bain des Dames, Marseille",55951,observation-480c2ef6-9013-49c9-b17e-de882011dac8-13,https://biolit.fr/observations/observation-480c2ef6-9013-49c9-b17e-de882011dac8-13/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/2023/07/P1060322-scaled.jpg,,TRUE, +N1,61293,sortie-480c2ef6-9013-49c9-b17e-de882011dac8,https://biolit.fr/sorties/sortie-480c2ef6-9013-49c9-b17e-de882011dac8/,Ville de Marseille,,12/11/2015,10.0000000,12.0000000,43.238184000000,5.361440000000,,"plage du Bain des Dames, Marseille",55953,observation-480c2ef6-9013-49c9-b17e-de882011dac8-14,https://biolit.fr/observations/observation-480c2ef6-9013-49c9-b17e-de882011dac8-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1060306-scaled.jpg,,FALSE, +N1,61294,sortie-65e88b00-5fae-4fe8-a78d-89eee3003503,https://biolit.fr/sorties/sortie-65e88b00-5fae-4fe8-a78d-89eee3003503/,Ville de Marseille,,12/04/2015,10.0000000,11.0000000,43.267855000000,5.370329000000,,"Petite plage de sable, Bassin du Roucas Blanc",55955,observation-65e88b00-5fae-4fe8-a78d-89eee3003503,https://biolit.fr/observations/observation-65e88b00-5fae-4fe8-a78d-89eee3003503/,,,,https://biolit.fr/wp-content/uploads/2023/07/PC041093-scaled.jpg,,FALSE, +N1,61295,sortie-17300565-d51d-4d7b-8249-b03aee2da397,https://biolit.fr/sorties/sortie-17300565-d51d-4d7b-8249-b03aee2da397/,Phil,,01/10/2016,12.0:25,12.0000000,48.095130000000,-4.298680000000,,Kerlaz - Finistère,55957,observation-17300565-d51d-4d7b-8249-b03aee2da397,https://biolit.fr/observations/observation-17300565-d51d-4d7b-8249-b03aee2da397/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000223.JPG,,FALSE, +N1,61295,sortie-17300565-d51d-4d7b-8249-b03aee2da397,https://biolit.fr/sorties/sortie-17300565-d51d-4d7b-8249-b03aee2da397/,Phil,,01/10/2016,12.0:25,12.0000000,48.095130000000,-4.298680000000,,Kerlaz - Finistère,55959,observation-17300565-d51d-4d7b-8249-b03aee2da397-2,https://biolit.fr/observations/observation-17300565-d51d-4d7b-8249-b03aee2da397-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000389.JPG,,FALSE, +N1,61296,sortie-99b216d6-35b1-4a84-ba2b-1cb20c6890d0,https://biolit.fr/sorties/sortie-99b216d6-35b1-4a84-ba2b-1cb20c6890d0/,Phil,,11/06/2015,12.0000000,12.0:25,47.791462000000,-4.27708700000,,Léchiagat - Finistère,55961,observation-99b216d6-35b1-4a84-ba2b-1cb20c6890d0,https://biolit.fr/observations/observation-99b216d6-35b1-4a84-ba2b-1cb20c6890d0/,Ramalina siliquosa,Ramaline des rochers,,https://biolit.fr/wp-content/uploads/2023/07/20151106_122714.jpg,,TRUE, +N1,61296,sortie-99b216d6-35b1-4a84-ba2b-1cb20c6890d0,https://biolit.fr/sorties/sortie-99b216d6-35b1-4a84-ba2b-1cb20c6890d0/,Phil,,11/06/2015,12.0000000,12.0:25,47.791462000000,-4.27708700000,,Léchiagat - Finistère,55963,observation-99b216d6-35b1-4a84-ba2b-1cb20c6890d0-2,https://biolit.fr/observations/observation-99b216d6-35b1-4a84-ba2b-1cb20c6890d0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_131913.jpg,,FALSE, +N1,61296,sortie-99b216d6-35b1-4a84-ba2b-1cb20c6890d0,https://biolit.fr/sorties/sortie-99b216d6-35b1-4a84-ba2b-1cb20c6890d0/,Phil,,11/06/2015,12.0000000,12.0:25,47.791462000000,-4.27708700000,,Léchiagat - Finistère,55965,observation-99b216d6-35b1-4a84-ba2b-1cb20c6890d0-3,https://biolit.fr/observations/observation-99b216d6-35b1-4a84-ba2b-1cb20c6890d0-3/,Calidris maritima,Bécasseau violet,,https://biolit.fr/wp-content/uploads/2023/07/20151106_131945.jpg,,TRUE, +N1,61296,sortie-99b216d6-35b1-4a84-ba2b-1cb20c6890d0,https://biolit.fr/sorties/sortie-99b216d6-35b1-4a84-ba2b-1cb20c6890d0/,Phil,,11/06/2015,12.0000000,12.0:25,47.791462000000,-4.27708700000,,Léchiagat - Finistère,55967,observation-99b216d6-35b1-4a84-ba2b-1cb20c6890d0-4,https://biolit.fr/observations/observation-99b216d6-35b1-4a84-ba2b-1cb20c6890d0-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_132016.jpg,,FALSE, +N1,61296,sortie-99b216d6-35b1-4a84-ba2b-1cb20c6890d0,https://biolit.fr/sorties/sortie-99b216d6-35b1-4a84-ba2b-1cb20c6890d0/,Phil,,11/06/2015,12.0000000,12.0:25,47.791462000000,-4.27708700000,,Léchiagat - Finistère,55969,observation-99b216d6-35b1-4a84-ba2b-1cb20c6890d0-5,https://biolit.fr/observations/observation-99b216d6-35b1-4a84-ba2b-1cb20c6890d0-5/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/20151106_132108.jpg,,TRUE, +N1,61296,sortie-99b216d6-35b1-4a84-ba2b-1cb20c6890d0,https://biolit.fr/sorties/sortie-99b216d6-35b1-4a84-ba2b-1cb20c6890d0/,Phil,,11/06/2015,12.0000000,12.0:25,47.791462000000,-4.27708700000,,Léchiagat - Finistère,55971,observation-99b216d6-35b1-4a84-ba2b-1cb20c6890d0-6,https://biolit.fr/observations/observation-99b216d6-35b1-4a84-ba2b-1cb20c6890d0-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_132230.jpg,,FALSE, +N1,61297,sortie-65df7f92-9f90-44d7-96d6-802d45979e37,https://biolit.fr/sorties/sortie-65df7f92-9f90-44d7-96d6-802d45979e37/,Phil,,11/06/2015,11.0:55,12.0000000,47.79449900000,-4.294711000000,,Le Guilvinec - Finistère,55973,observation-65df7f92-9f90-44d7-96d6-802d45979e37,https://biolit.fr/observations/observation-65df7f92-9f90-44d7-96d6-802d45979e37/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_115409_0.jpg,,FALSE, +N1,61297,sortie-65df7f92-9f90-44d7-96d6-802d45979e37,https://biolit.fr/sorties/sortie-65df7f92-9f90-44d7-96d6-802d45979e37/,Phil,,11/06/2015,11.0:55,12.0000000,47.79449900000,-4.294711000000,,Le Guilvinec - Finistère,55975,observation-65df7f92-9f90-44d7-96d6-802d45979e37-2,https://biolit.fr/observations/observation-65df7f92-9f90-44d7-96d6-802d45979e37-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151106_120032.jpg,,TRUE, +N1,61297,sortie-65df7f92-9f90-44d7-96d6-802d45979e37,https://biolit.fr/sorties/sortie-65df7f92-9f90-44d7-96d6-802d45979e37/,Phil,,11/06/2015,11.0:55,12.0000000,47.79449900000,-4.294711000000,,Le Guilvinec - Finistère,55977,observation-65df7f92-9f90-44d7-96d6-802d45979e37-3,https://biolit.fr/observations/observation-65df7f92-9f90-44d7-96d6-802d45979e37-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151106_120004.jpg,,TRUE, +N1,61297,sortie-65df7f92-9f90-44d7-96d6-802d45979e37,https://biolit.fr/sorties/sortie-65df7f92-9f90-44d7-96d6-802d45979e37/,Phil,,11/06/2015,11.0:55,12.0000000,47.79449900000,-4.294711000000,,Le Guilvinec - Finistère,55979,observation-65df7f92-9f90-44d7-96d6-802d45979e37-4,https://biolit.fr/observations/observation-65df7f92-9f90-44d7-96d6-802d45979e37-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_120302.jpg,,FALSE, +N1,61298,sortie-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58,https://biolit.fr/sorties/sortie-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58/,Phil,,01/04/2016,10.0:45,10.0000000,47.87009300000,-3.922854000000,,Concarneau - Finistère,55981,observation-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58,https://biolit.fr/observations/observation-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160104_104620.jpg,,FALSE, +N1,61298,sortie-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58,https://biolit.fr/sorties/sortie-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58/,Phil,,01/04/2016,10.0:45,10.0000000,47.87009300000,-3.922854000000,,Concarneau - Finistère,55983,observation-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58-2,https://biolit.fr/observations/observation-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160104_104653.jpg,,FALSE, +N1,61298,sortie-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58,https://biolit.fr/sorties/sortie-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58/,Phil,,01/04/2016,10.0:45,10.0000000,47.87009300000,-3.922854000000,,Concarneau - Finistère,55985,observation-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58-3,https://biolit.fr/observations/observation-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160104_104751.jpg,,FALSE, +N1,61298,sortie-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58,https://biolit.fr/sorties/sortie-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58/,Phil,,01/04/2016,10.0:45,10.0000000,47.87009300000,-3.922854000000,,Concarneau - Finistère,55987,observation-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58-4,https://biolit.fr/observations/observation-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160104_104710.jpg,,FALSE, +N1,61298,sortie-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58,https://biolit.fr/sorties/sortie-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58/,Phil,,01/04/2016,10.0:45,10.0000000,47.87009300000,-3.922854000000,,Concarneau - Finistère,55989,observation-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58-5,https://biolit.fr/observations/observation-0363f1a3-fee8-4bf2-ae4b-2667ec2b4b58-5/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/2023/07/20160104_105123.jpg,,TRUE, +N1,61299,sortie-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c,https://biolit.fr/sorties/sortie-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c/,Phil,,11/06/2015,13.0000000,13.0:35,47.792529000000,-4.278967000000,,Léchiagat - Finistère,55991,observation-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c,https://biolit.fr/observations/observation-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151106_133115.jpg,,TRUE, +N1,61299,sortie-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c,https://biolit.fr/sorties/sortie-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c/,Phil,,11/06/2015,13.0000000,13.0:35,47.792529000000,-4.278967000000,,Léchiagat - Finistère,55993,observation-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c-2,https://biolit.fr/observations/observation-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_133231.jpg,,FALSE, +N1,61299,sortie-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c,https://biolit.fr/sorties/sortie-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c/,Phil,,11/06/2015,13.0000000,13.0:35,47.792529000000,-4.278967000000,,Léchiagat - Finistère,55995,observation-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c-3,https://biolit.fr/observations/observation-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_133340.jpg,,FALSE, +N1,61299,sortie-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c,https://biolit.fr/sorties/sortie-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c/,Phil,,11/06/2015,13.0000000,13.0:35,47.792529000000,-4.278967000000,,Léchiagat - Finistère,55997,observation-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c-4,https://biolit.fr/observations/observation-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_133511.jpg,,FALSE, +N1,61299,sortie-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c,https://biolit.fr/sorties/sortie-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c/,Phil,,11/06/2015,13.0000000,13.0:35,47.792529000000,-4.278967000000,,Léchiagat - Finistère,55999,observation-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c-5,https://biolit.fr/observations/observation-c0b19234-09c5-40c5-8b73-fce9d8a2ac6c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_133612.jpg,,FALSE, +N1,61300,sortie-64d453e0-180a-4c4a-a304-cec11c9f97c3,https://biolit.fr/sorties/sortie-64d453e0-180a-4c4a-a304-cec11c9f97c3/,Phil,,01/04/2016,10.0000000,10.0:45,47.87000600000,-3.922167000000,,Concarneau - Finistère,56001,observation-64d453e0-180a-4c4a-a304-cec11c9f97c3,https://biolit.fr/observations/observation-64d453e0-180a-4c4a-a304-cec11c9f97c3/,Trididemnum cereum,Didemnide cire,,https://biolit.fr/wp-content/uploads/2023/07/20160104_104111.jpg,,TRUE, +N1,61300,sortie-64d453e0-180a-4c4a-a304-cec11c9f97c3,https://biolit.fr/sorties/sortie-64d453e0-180a-4c4a-a304-cec11c9f97c3/,Phil,,01/04/2016,10.0000000,10.0:45,47.87000600000,-3.922167000000,,Concarneau - Finistère,56003,observation-64d453e0-180a-4c4a-a304-cec11c9f97c3-2,https://biolit.fr/observations/observation-64d453e0-180a-4c4a-a304-cec11c9f97c3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160104_104055.jpg,,FALSE, +N1,61300,sortie-64d453e0-180a-4c4a-a304-cec11c9f97c3,https://biolit.fr/sorties/sortie-64d453e0-180a-4c4a-a304-cec11c9f97c3/,Phil,,01/04/2016,10.0000000,10.0:45,47.87000600000,-3.922167000000,,Concarneau - Finistère,56005,observation-64d453e0-180a-4c4a-a304-cec11c9f97c3-3,https://biolit.fr/observations/observation-64d453e0-180a-4c4a-a304-cec11c9f97c3-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160104_104950.jpg,,FALSE, +N1,61300,sortie-64d453e0-180a-4c4a-a304-cec11c9f97c3,https://biolit.fr/sorties/sortie-64d453e0-180a-4c4a-a304-cec11c9f97c3/,Phil,,01/04/2016,10.0000000,10.0:45,47.87000600000,-3.922167000000,,Concarneau - Finistère,56007,observation-64d453e0-180a-4c4a-a304-cec11c9f97c3-4,https://biolit.fr/observations/observation-64d453e0-180a-4c4a-a304-cec11c9f97c3-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20160104_105005.jpg,,FALSE, +N1,61301,sortie-7c13e91a-fe2d-4958-a511-04e8587ec31a,https://biolit.fr/sorties/sortie-7c13e91a-fe2d-4958-a511-04e8587ec31a/,Les Dodos,,12/28/2015 0:00,15.0000000,16.0:15,43.14784200000,6.420360000000,,Cavalière,56009,observation-7c13e91a-fe2d-4958-a511-04e8587ec31a,https://biolit.fr/observations/observation-7c13e91a-fe2d-4958-a511-04e8587ec31a/,Sacculina carcini,Sacculine du crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20151228_162503[1]-scaled.jpg,,TRUE, +N1,61301,sortie-7c13e91a-fe2d-4958-a511-04e8587ec31a,https://biolit.fr/sorties/sortie-7c13e91a-fe2d-4958-a511-04e8587ec31a/,Les Dodos,,12/28/2015 0:00,15.0000000,16.0:15,43.14784200000,6.420360000000,,Cavalière,56011,observation-7c13e91a-fe2d-4958-a511-04e8587ec31a-2,https://biolit.fr/observations/observation-7c13e91a-fe2d-4958-a511-04e8587ec31a-2/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20151228_163200[1]-scaled.jpg,,TRUE, +N1,61302,sortie-65ff3706-0bd0-452a-bbbd-14b312bfc7f0,https://biolit.fr/sorties/sortie-65ff3706-0bd0-452a-bbbd-14b312bfc7f0/,Phil,,11/06/2015,12.0000000,12.0:45,47.798407000000,-4.349200000000,,Penmarc'h - Finistère,56013,observation-65ff3706-0bd0-452a-bbbd-14b312bfc7f0,https://biolit.fr/observations/observation-65ff3706-0bd0-452a-bbbd-14b312bfc7f0/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/20151106_124312.jpg,,TRUE, +N1,61302,sortie-65ff3706-0bd0-452a-bbbd-14b312bfc7f0,https://biolit.fr/sorties/sortie-65ff3706-0bd0-452a-bbbd-14b312bfc7f0/,Phil,,11/06/2015,12.0000000,12.0:45,47.798407000000,-4.349200000000,,Penmarc'h - Finistère,56015,observation-65ff3706-0bd0-452a-bbbd-14b312bfc7f0-2,https://biolit.fr/observations/observation-65ff3706-0bd0-452a-bbbd-14b312bfc7f0-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151106_124413.jpg,,TRUE, +N1,61302,sortie-65ff3706-0bd0-452a-bbbd-14b312bfc7f0,https://biolit.fr/sorties/sortie-65ff3706-0bd0-452a-bbbd-14b312bfc7f0/,Phil,,11/06/2015,12.0000000,12.0:45,47.798407000000,-4.349200000000,,Penmarc'h - Finistère,56017,observation-65ff3706-0bd0-452a-bbbd-14b312bfc7f0-3,https://biolit.fr/observations/observation-65ff3706-0bd0-452a-bbbd-14b312bfc7f0-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151106_124429.jpg,,TRUE, +N1,61303,sortie-c526711b-47ac-42ce-8ab6-4220e9464a1f,https://biolit.fr/sorties/sortie-c526711b-47ac-42ce-8ab6-4220e9464a1f/,Phil,,11/06/2015,11.0:35,11.0000000,47.792448000000,-4.293869000000,,Le Guilvinec - Finistère,56019,observation-c526711b-47ac-42ce-8ab6-4220e9464a1f,https://biolit.fr/observations/observation-c526711b-47ac-42ce-8ab6-4220e9464a1f/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_113723.jpg,,FALSE, +N1,61304,sortie-cc3377ba-b13f-4317-9699-d8720148380a,https://biolit.fr/sorties/sortie-cc3377ba-b13f-4317-9699-d8720148380a/,Phil,,12/10/2015,12.0:35,13.0000000,47.945156000000,-4.409573000000,,Pouldreuzic - Finistère,56021,observation-cc3377ba-b13f-4317-9699-d8720148380a,https://biolit.fr/observations/observation-cc3377ba-b13f-4317-9699-d8720148380a/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000113.JPG,,FALSE, +N1,61304,sortie-cc3377ba-b13f-4317-9699-d8720148380a,https://biolit.fr/sorties/sortie-cc3377ba-b13f-4317-9699-d8720148380a/,Phil,,12/10/2015,12.0:35,13.0000000,47.945156000000,-4.409573000000,,Pouldreuzic - Finistère,56023,observation-cc3377ba-b13f-4317-9699-d8720148380a-2,https://biolit.fr/observations/observation-cc3377ba-b13f-4317-9699-d8720148380a-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1000156.JPG,,TRUE, +N1,61304,sortie-cc3377ba-b13f-4317-9699-d8720148380a,https://biolit.fr/sorties/sortie-cc3377ba-b13f-4317-9699-d8720148380a/,Phil,,12/10/2015,12.0:35,13.0000000,47.945156000000,-4.409573000000,,Pouldreuzic - Finistère,56025,observation-cc3377ba-b13f-4317-9699-d8720148380a-3,https://biolit.fr/observations/observation-cc3377ba-b13f-4317-9699-d8720148380a-3/,Balanus crenatus,Balane crénelée,,https://biolit.fr/wp-content/uploads/2023/07/P1000118.JPG,,TRUE, +N1,61305,sortie-c19581c2-5547-4cf5-8c76-0ead5f9bd1ec,https://biolit.fr/sorties/sortie-c19581c2-5547-4cf5-8c76-0ead5f9bd1ec/,Phil,,11/25/2015 0:00,12.000005,12.0:15,48.092518000000,-4.296817000000,,Douarnenez- Finistère,56027,observation-c19581c2-5547-4cf5-8c76-0ead5f9bd1ec,https://biolit.fr/observations/observation-c19581c2-5547-4cf5-8c76-0ead5f9bd1ec/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20151125_120744.jpg,,TRUE, +N1,61305,sortie-c19581c2-5547-4cf5-8c76-0ead5f9bd1ec,https://biolit.fr/sorties/sortie-c19581c2-5547-4cf5-8c76-0ead5f9bd1ec/,Phil,,11/25/2015 0:00,12.000005,12.0:15,48.092518000000,-4.296817000000,,Douarnenez- Finistère,56029,observation-c19581c2-5547-4cf5-8c76-0ead5f9bd1ec-2,https://biolit.fr/observations/observation-c19581c2-5547-4cf5-8c76-0ead5f9bd1ec-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20151125_120835.jpg,,TRUE, +N1,61305,sortie-c19581c2-5547-4cf5-8c76-0ead5f9bd1ec,https://biolit.fr/sorties/sortie-c19581c2-5547-4cf5-8c76-0ead5f9bd1ec/,Phil,,11/25/2015 0:00,12.000005,12.0:15,48.092518000000,-4.296817000000,,Douarnenez- Finistère,56031,observation-c19581c2-5547-4cf5-8c76-0ead5f9bd1ec-3,https://biolit.fr/observations/observation-c19581c2-5547-4cf5-8c76-0ead5f9bd1ec-3/,Raja brachyura,Raie lisse,,https://biolit.fr/wp-content/uploads/2023/07/20151125_121009.jpg,,TRUE, +N1,61306,sortie-6f21a2f4-cc8a-437c-93e8-46f0c3c55aeb,https://biolit.fr/sorties/sortie-6f21a2f4-cc8a-437c-93e8-46f0c3c55aeb/,Phil,,11/25/2015 0:00,11.0000000,11.0000000,48.094492000000,-4.299411000000,,Kerlaz - Finistère,56033,observation-6f21a2f4-cc8a-437c-93e8-46f0c3c55aeb,https://biolit.fr/observations/observation-6f21a2f4-cc8a-437c-93e8-46f0c3c55aeb/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20151125_115238.jpg,,TRUE, +N1,61306,sortie-6f21a2f4-cc8a-437c-93e8-46f0c3c55aeb,https://biolit.fr/sorties/sortie-6f21a2f4-cc8a-437c-93e8-46f0c3c55aeb/,Phil,,11/25/2015 0:00,11.0000000,11.0000000,48.094492000000,-4.299411000000,,Kerlaz - Finistère,56035,observation-6f21a2f4-cc8a-437c-93e8-46f0c3c55aeb-2,https://biolit.fr/observations/observation-6f21a2f4-cc8a-437c-93e8-46f0c3c55aeb-2/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/2023/07/20151125_114559.jpg,,TRUE, +N1,61306,sortie-6f21a2f4-cc8a-437c-93e8-46f0c3c55aeb,https://biolit.fr/sorties/sortie-6f21a2f4-cc8a-437c-93e8-46f0c3c55aeb/,Phil,,11/25/2015 0:00,11.0000000,11.0000000,48.094492000000,-4.299411000000,,Kerlaz - Finistère,56037,observation-6f21a2f4-cc8a-437c-93e8-46f0c3c55aeb-3,https://biolit.fr/observations/observation-6f21a2f4-cc8a-437c-93e8-46f0c3c55aeb-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151125_115554.jpg,,FALSE, +N1,61306,sortie-6f21a2f4-cc8a-437c-93e8-46f0c3c55aeb,https://biolit.fr/sorties/sortie-6f21a2f4-cc8a-437c-93e8-46f0c3c55aeb/,Phil,,11/25/2015 0:00,11.0000000,11.0000000,48.094492000000,-4.299411000000,,Kerlaz - Finistère,56039,observation-6f21a2f4-cc8a-437c-93e8-46f0c3c55aeb-4,https://biolit.fr/observations/observation-6f21a2f4-cc8a-437c-93e8-46f0c3c55aeb-4/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/20151125_114215.jpg,,TRUE, +N1,61307,sortie-de691cd0-7937-42d6-bbd2-29a936a70e4e,https://biolit.fr/sorties/sortie-de691cd0-7937-42d6-bbd2-29a936a70e4e/,Phil,,11/15/2015 0:00,11.0000000,11.0:35,48.125378000000,-4.286084000000,,Plonevez Porzay - Finistère,56041,observation-de691cd0-7937-42d6-bbd2-29a936a70e4e,https://biolit.fr/observations/observation-de691cd0-7937-42d6-bbd2-29a936a70e4e/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20151115_111954.jpg,,TRUE, +N1,61307,sortie-de691cd0-7937-42d6-bbd2-29a936a70e4e,https://biolit.fr/sorties/sortie-de691cd0-7937-42d6-bbd2-29a936a70e4e/,Phil,,11/15/2015 0:00,11.0000000,11.0:35,48.125378000000,-4.286084000000,,Plonevez Porzay - Finistère,56043,observation-de691cd0-7937-42d6-bbd2-29a936a70e4e-2,https://biolit.fr/observations/observation-de691cd0-7937-42d6-bbd2-29a936a70e4e-2/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20151115_113311.jpg,,TRUE, +N1,61307,sortie-de691cd0-7937-42d6-bbd2-29a936a70e4e,https://biolit.fr/sorties/sortie-de691cd0-7937-42d6-bbd2-29a936a70e4e/,Phil,,11/15/2015 0:00,11.0000000,11.0:35,48.125378000000,-4.286084000000,,Plonevez Porzay - Finistère,56045,observation-de691cd0-7937-42d6-bbd2-29a936a70e4e-3,https://biolit.fr/observations/observation-de691cd0-7937-42d6-bbd2-29a936a70e4e-3/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/20151115_113352.jpg,,TRUE, +N1,61308,sortie-786e837f-15e7-4d9d-9843-3821c7bc8613,https://biolit.fr/sorties/sortie-786e837f-15e7-4d9d-9843-3821c7bc8613/,Phil,,11/14/2015 0:00,15.0000000,15.0:35,48.605845000000,-4.594091000000,,Landeda - Finistère,56047,observation-786e837f-15e7-4d9d-9843-3821c7bc8613,https://biolit.fr/observations/observation-786e837f-15e7-4d9d-9843-3821c7bc8613/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04845.jpg,,FALSE, +N1,61308,sortie-786e837f-15e7-4d9d-9843-3821c7bc8613,https://biolit.fr/sorties/sortie-786e837f-15e7-4d9d-9843-3821c7bc8613/,Phil,,11/14/2015 0:00,15.0000000,15.0:35,48.605845000000,-4.594091000000,,Landeda - Finistère,56049,observation-786e837f-15e7-4d9d-9843-3821c7bc8613-2,https://biolit.fr/observations/observation-786e837f-15e7-4d9d-9843-3821c7bc8613-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04841.jpg,,FALSE, +N1,61308,sortie-786e837f-15e7-4d9d-9843-3821c7bc8613,https://biolit.fr/sorties/sortie-786e837f-15e7-4d9d-9843-3821c7bc8613/,Phil,,11/14/2015 0:00,15.0000000,15.0:35,48.605845000000,-4.594091000000,,Landeda - Finistère,56051,observation-786e837f-15e7-4d9d-9843-3821c7bc8613-3,https://biolit.fr/observations/observation-786e837f-15e7-4d9d-9843-3821c7bc8613-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04838.jpg,,TRUE, +N1,61308,sortie-786e837f-15e7-4d9d-9843-3821c7bc8613,https://biolit.fr/sorties/sortie-786e837f-15e7-4d9d-9843-3821c7bc8613/,Phil,,11/14/2015 0:00,15.0000000,15.0:35,48.605845000000,-4.594091000000,,Landeda - Finistère,56053,observation-786e837f-15e7-4d9d-9843-3821c7bc8613-4,https://biolit.fr/observations/observation-786e837f-15e7-4d9d-9843-3821c7bc8613-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04836.jpg,,TRUE, +N1,61309,sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9,https://biolit.fr/sorties/sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9/,Anjelika,,12/30/2015 0:00,13.0000000,14.0000000,43.395974000000,4.594114000000,,plage de beauduc en camargue ,56055,observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9,https://biolit.fr/observations/observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9/,Tritia mutabilis,Noisette de mer,,https://biolit.fr/wp-content/uploads/2023/07/DSC02757-scaled.jpg,,TRUE, +N1,61309,sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9,https://biolit.fr/sorties/sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9/,Anjelika,,12/30/2015 0:00,13.0000000,14.0000000,43.395974000000,4.594114000000,,plage de beauduc en camargue ,56057,observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-2,https://biolit.fr/observations/observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-2/,Tritia mutabilis,Noisette de mer,,https://biolit.fr/wp-content/uploads/2023/07/DSC02758-scaled.jpg,,TRUE, +N1,61309,sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9,https://biolit.fr/sorties/sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9/,Anjelika,,12/30/2015 0:00,13.0000000,14.0000000,43.395974000000,4.594114000000,,plage de beauduc en camargue ,56059,observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-3,https://biolit.fr/observations/observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02759-scaled.jpg,,FALSE, +N1,61309,sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9,https://biolit.fr/sorties/sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9/,Anjelika,,12/30/2015 0:00,13.0000000,14.0000000,43.395974000000,4.594114000000,,plage de beauduc en camargue ,56061,observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-4,https://biolit.fr/observations/observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02760-scaled.jpg,,FALSE, +N1,61309,sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9,https://biolit.fr/sorties/sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9/,Anjelika,,12/30/2015 0:00,13.0000000,14.0000000,43.395974000000,4.594114000000,,plage de beauduc en camargue ,56063,observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-5,https://biolit.fr/observations/observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-5/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/DSC02761-scaled.jpg,,TRUE, +N1,61309,sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9,https://biolit.fr/sorties/sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9/,Anjelika,,12/30/2015 0:00,13.0000000,14.0000000,43.395974000000,4.594114000000,,plage de beauduc en camargue ,56065,observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-6,https://biolit.fr/observations/observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-6/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/DSC02764-scaled.jpg,,TRUE, +N1,61309,sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9,https://biolit.fr/sorties/sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9/,Anjelika,,12/30/2015 0:00,13.0000000,14.0000000,43.395974000000,4.594114000000,,plage de beauduc en camargue ,56067,observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-7,https://biolit.fr/observations/observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-7/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/2023/07/DSC02766-scaled.jpg,,TRUE, +N1,61309,sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9,https://biolit.fr/sorties/sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9/,Anjelika,,12/30/2015 0:00,13.0000000,14.0000000,43.395974000000,4.594114000000,,plage de beauduc en camargue ,56069,observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-8,https://biolit.fr/observations/observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-8/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/2023/07/DSC02768-scaled.jpg,,TRUE, +N1,61309,sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9,https://biolit.fr/sorties/sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9/,Anjelika,,12/30/2015 0:00,13.0000000,14.0000000,43.395974000000,4.594114000000,,plage de beauduc en camargue ,56071,observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-9,https://biolit.fr/observations/observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02772-scaled.jpg,,FALSE, +N1,61309,sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9,https://biolit.fr/sorties/sortie-4008a55c-9eea-48fe-a8bf-d98d5bb102d9/,Anjelika,,12/30/2015 0:00,13.0000000,14.0000000,43.395974000000,4.594114000000,,plage de beauduc en camargue ,56073,observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-10,https://biolit.fr/observations/observation-4008a55c-9eea-48fe-a8bf-d98d5bb102d9-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC02774-scaled.jpg,,FALSE, +N1,61310,sortie-98c3083b-f2f4-4555-a758-f4c230d0852f,https://biolit.fr/sorties/sortie-98c3083b-f2f4-4555-a758-f4c230d0852f/,Phil,,11/06/2015,13.0000000,13.0:25,47.791779000000,-4.273394000000,,Léchiagat - Finistère,56075,observation-98c3083b-f2f4-4555-a758-f4c230d0852f,https://biolit.fr/observations/observation-98c3083b-f2f4-4555-a758-f4c230d0852f/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_132347.jpg,,FALSE, +N1,61310,sortie-98c3083b-f2f4-4555-a758-f4c230d0852f,https://biolit.fr/sorties/sortie-98c3083b-f2f4-4555-a758-f4c230d0852f/,Phil,,11/06/2015,13.0000000,13.0:25,47.791779000000,-4.273394000000,,Léchiagat - Finistère,56077,observation-98c3083b-f2f4-4555-a758-f4c230d0852f-2,https://biolit.fr/observations/observation-98c3083b-f2f4-4555-a758-f4c230d0852f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_132624.jpg,,FALSE, +N1,61310,sortie-98c3083b-f2f4-4555-a758-f4c230d0852f,https://biolit.fr/sorties/sortie-98c3083b-f2f4-4555-a758-f4c230d0852f/,Phil,,11/06/2015,13.0000000,13.0:25,47.791779000000,-4.273394000000,,Léchiagat - Finistère,56079,observation-98c3083b-f2f4-4555-a758-f4c230d0852f-3,https://biolit.fr/observations/observation-98c3083b-f2f4-4555-a758-f4c230d0852f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_132448.jpg,,FALSE, +N1,61310,sortie-98c3083b-f2f4-4555-a758-f4c230d0852f,https://biolit.fr/sorties/sortie-98c3083b-f2f4-4555-a758-f4c230d0852f/,Phil,,11/06/2015,13.0000000,13.0:25,47.791779000000,-4.273394000000,,Léchiagat - Finistère,56081,observation-98c3083b-f2f4-4555-a758-f4c230d0852f-4,https://biolit.fr/observations/observation-98c3083b-f2f4-4555-a758-f4c230d0852f-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_132226.jpg,,FALSE, +N1,61310,sortie-98c3083b-f2f4-4555-a758-f4c230d0852f,https://biolit.fr/sorties/sortie-98c3083b-f2f4-4555-a758-f4c230d0852f/,Phil,,11/06/2015,13.0000000,13.0:25,47.791779000000,-4.273394000000,,Léchiagat - Finistère,56083,observation-98c3083b-f2f4-4555-a758-f4c230d0852f-5,https://biolit.fr/observations/observation-98c3083b-f2f4-4555-a758-f4c230d0852f-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_132028.jpg,,FALSE, +N1,61311,sortie-b5e0dfaf-9996-4958-b217-010b36feb845,https://biolit.fr/sorties/sortie-b5e0dfaf-9996-4958-b217-010b36feb845/,Phil,,11/10/2015,11.0000000,11.0:55,47.896076000000,-3.969070000000,,La Forêt Fouesnant - Finistère,56085,observation-b5e0dfaf-9996-4958-b217-010b36feb845,https://biolit.fr/observations/observation-b5e0dfaf-9996-4958-b217-010b36feb845/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20151110_115337_0.jpg,,TRUE, +N1,61312,sortie-a79fa5b5-c402-44ca-b15a-6477051047af,https://biolit.fr/sorties/sortie-a79fa5b5-c402-44ca-b15a-6477051047af/,Phil,,11/06/2015,12.0:45,12.0000000,47.798056000000,-4.350107000000,,Penmarc'h - Finistère,56087,observation-a79fa5b5-c402-44ca-b15a-6477051047af,https://biolit.fr/observations/observation-a79fa5b5-c402-44ca-b15a-6477051047af/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_124701.jpg,,FALSE, +N1,61312,sortie-a79fa5b5-c402-44ca-b15a-6477051047af,https://biolit.fr/sorties/sortie-a79fa5b5-c402-44ca-b15a-6477051047af/,Phil,,11/06/2015,12.0:45,12.0000000,47.798056000000,-4.350107000000,,Penmarc'h - Finistère,56089,observation-a79fa5b5-c402-44ca-b15a-6477051047af-2,https://biolit.fr/observations/observation-a79fa5b5-c402-44ca-b15a-6477051047af-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_124709.jpg,,FALSE, +N1,61313,sortie-0f418eef-8878-4a66-8af3-c480c5681ff8,https://biolit.fr/sorties/sortie-0f418eef-8878-4a66-8af3-c480c5681ff8/,Phil,,8/15/2015 0:00,17.0:25,17.0:45,47.791277000000,-4.277044000000,,Léchiagat - Finistère,56091,observation-0f418eef-8878-4a66-8af3-c480c5681ff8,https://biolit.fr/observations/observation-0f418eef-8878-4a66-8af3-c480c5681ff8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150815_174824.jpg,,FALSE, +N1,61313,sortie-0f418eef-8878-4a66-8af3-c480c5681ff8,https://biolit.fr/sorties/sortie-0f418eef-8878-4a66-8af3-c480c5681ff8/,Phil,,8/15/2015 0:00,17.0:25,17.0:45,47.791277000000,-4.277044000000,,Léchiagat - Finistère,56093,observation-0f418eef-8878-4a66-8af3-c480c5681ff8-2,https://biolit.fr/observations/observation-0f418eef-8878-4a66-8af3-c480c5681ff8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150815_174024.jpg,,FALSE, +N1,61313,sortie-0f418eef-8878-4a66-8af3-c480c5681ff8,https://biolit.fr/sorties/sortie-0f418eef-8878-4a66-8af3-c480c5681ff8/,Phil,,8/15/2015 0:00,17.0:25,17.0:45,47.791277000000,-4.277044000000,,Léchiagat - Finistère,56095,observation-0f418eef-8878-4a66-8af3-c480c5681ff8-3,https://biolit.fr/observations/observation-0f418eef-8878-4a66-8af3-c480c5681ff8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150815_173844.jpg,,FALSE, +N1,61313,sortie-0f418eef-8878-4a66-8af3-c480c5681ff8,https://biolit.fr/sorties/sortie-0f418eef-8878-4a66-8af3-c480c5681ff8/,Phil,,8/15/2015 0:00,17.0:25,17.0:45,47.791277000000,-4.277044000000,,Léchiagat - Finistère,56097,observation-0f418eef-8878-4a66-8af3-c480c5681ff8-4,https://biolit.fr/observations/observation-0f418eef-8878-4a66-8af3-c480c5681ff8-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150815_173741.jpg,,FALSE, +N1,61313,sortie-0f418eef-8878-4a66-8af3-c480c5681ff8,https://biolit.fr/sorties/sortie-0f418eef-8878-4a66-8af3-c480c5681ff8/,Phil,,8/15/2015 0:00,17.0:25,17.0:45,47.791277000000,-4.277044000000,,Léchiagat - Finistère,56099,observation-0f418eef-8878-4a66-8af3-c480c5681ff8-5,https://biolit.fr/observations/observation-0f418eef-8878-4a66-8af3-c480c5681ff8-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150815_173730.jpg,,FALSE, +N1,61313,sortie-0f418eef-8878-4a66-8af3-c480c5681ff8,https://biolit.fr/sorties/sortie-0f418eef-8878-4a66-8af3-c480c5681ff8/,Phil,,8/15/2015 0:00,17.0:25,17.0:45,47.791277000000,-4.277044000000,,Léchiagat - Finistère,56101,observation-0f418eef-8878-4a66-8af3-c480c5681ff8-6,https://biolit.fr/observations/observation-0f418eef-8878-4a66-8af3-c480c5681ff8-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150815_172930.jpg,,FALSE, +N1,61314,sortie-52ecbc5f-1062-4edb-8e89-db85782bf6c7,https://biolit.fr/sorties/sortie-52ecbc5f-1062-4edb-8e89-db85782bf6c7/,Phil,,11/26/2015 0:00,13.0000000,13.0000000,47.857395000000,-3.917132000000,,Concarneau - Finistère,56103,observation-52ecbc5f-1062-4edb-8e89-db85782bf6c7,https://biolit.fr/observations/observation-52ecbc5f-1062-4edb-8e89-db85782bf6c7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04964.jpg,,FALSE, +N1,61314,sortie-52ecbc5f-1062-4edb-8e89-db85782bf6c7,https://biolit.fr/sorties/sortie-52ecbc5f-1062-4edb-8e89-db85782bf6c7/,Phil,,11/26/2015 0:00,13.0000000,13.0000000,47.857395000000,-3.917132000000,,Concarneau - Finistère,56105,observation-52ecbc5f-1062-4edb-8e89-db85782bf6c7-2,https://biolit.fr/observations/observation-52ecbc5f-1062-4edb-8e89-db85782bf6c7-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04955.jpg,,TRUE, +N1,61314,sortie-52ecbc5f-1062-4edb-8e89-db85782bf6c7,https://biolit.fr/sorties/sortie-52ecbc5f-1062-4edb-8e89-db85782bf6c7/,Phil,,11/26/2015 0:00,13.0000000,13.0000000,47.857395000000,-3.917132000000,,Concarneau - Finistère,56107,observation-52ecbc5f-1062-4edb-8e89-db85782bf6c7-3,https://biolit.fr/observations/observation-52ecbc5f-1062-4edb-8e89-db85782bf6c7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151126_135021.jpg,,FALSE, +N1,61314,sortie-52ecbc5f-1062-4edb-8e89-db85782bf6c7,https://biolit.fr/sorties/sortie-52ecbc5f-1062-4edb-8e89-db85782bf6c7/,Phil,,11/26/2015 0:00,13.0000000,13.0000000,47.857395000000,-3.917132000000,,Concarneau - Finistère,56109,observation-52ecbc5f-1062-4edb-8e89-db85782bf6c7-4,https://biolit.fr/observations/observation-52ecbc5f-1062-4edb-8e89-db85782bf6c7-4/,Trididemnum cereum,Didemnide cire,,https://biolit.fr/wp-content/uploads/2023/07/20151126_135100.jpg,,TRUE, +N1,61314,sortie-52ecbc5f-1062-4edb-8e89-db85782bf6c7,https://biolit.fr/sorties/sortie-52ecbc5f-1062-4edb-8e89-db85782bf6c7/,Phil,,11/26/2015 0:00,13.0000000,13.0000000,47.857395000000,-3.917132000000,,Concarneau - Finistère,56111,observation-52ecbc5f-1062-4edb-8e89-db85782bf6c7-5,https://biolit.fr/observations/observation-52ecbc5f-1062-4edb-8e89-db85782bf6c7-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151126_134423.jpg,,FALSE, +N1,61314,sortie-52ecbc5f-1062-4edb-8e89-db85782bf6c7,https://biolit.fr/sorties/sortie-52ecbc5f-1062-4edb-8e89-db85782bf6c7/,Phil,,11/26/2015 0:00,13.0000000,13.0000000,47.857395000000,-3.917132000000,,Concarneau - Finistère,56113,observation-52ecbc5f-1062-4edb-8e89-db85782bf6c7-6,https://biolit.fr/observations/observation-52ecbc5f-1062-4edb-8e89-db85782bf6c7-6/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC04958.jpg,,TRUE, +N1,61315,sortie-cc8ecab0-1fd4-4281-b614-0b7d1f181493,https://biolit.fr/sorties/sortie-cc8ecab0-1fd4-4281-b614-0b7d1f181493/,Phil,,8/15/2015 0:00,17.0000000,17.0:45,47.790645000000,-4.277406000000,,Léchiagat - Finistère,56115,observation-cc8ecab0-1fd4-4281-b614-0b7d1f181493,https://biolit.fr/observations/observation-cc8ecab0-1fd4-4281-b614-0b7d1f181493/,Mastocarpus stellatus,Gigartine,,https://biolit.fr/wp-content/uploads/2023/07/20150815_174331.jpg,,TRUE, +N1,61315,sortie-cc8ecab0-1fd4-4281-b614-0b7d1f181493,https://biolit.fr/sorties/sortie-cc8ecab0-1fd4-4281-b614-0b7d1f181493/,Phil,,8/15/2015 0:00,17.0000000,17.0:45,47.790645000000,-4.277406000000,,Léchiagat - Finistère,56117,observation-cc8ecab0-1fd4-4281-b614-0b7d1f181493-2,https://biolit.fr/observations/observation-cc8ecab0-1fd4-4281-b614-0b7d1f181493-2/,Mastocarpus stellatus,Gigartine,,https://biolit.fr/wp-content/uploads/2023/07/20150815_174401.jpg,,TRUE, +N1,61315,sortie-cc8ecab0-1fd4-4281-b614-0b7d1f181493,https://biolit.fr/sorties/sortie-cc8ecab0-1fd4-4281-b614-0b7d1f181493/,Phil,,8/15/2015 0:00,17.0000000,17.0:45,47.790645000000,-4.277406000000,,Léchiagat - Finistère,56119,observation-cc8ecab0-1fd4-4281-b614-0b7d1f181493-3,https://biolit.fr/observations/observation-cc8ecab0-1fd4-4281-b614-0b7d1f181493-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150815_174505-scaled.jpg,,TRUE, +N1,61315,sortie-cc8ecab0-1fd4-4281-b614-0b7d1f181493,https://biolit.fr/sorties/sortie-cc8ecab0-1fd4-4281-b614-0b7d1f181493/,Phil,,8/15/2015 0:00,17.0000000,17.0:45,47.790645000000,-4.277406000000,,Léchiagat - Finistère,56121,observation-cc8ecab0-1fd4-4281-b614-0b7d1f181493-4,https://biolit.fr/observations/observation-cc8ecab0-1fd4-4281-b614-0b7d1f181493-4/,Mastocarpus stellatus,Gigartine,,https://biolit.fr/wp-content/uploads/2023/07/20150815_174624.jpg,,TRUE, +N1,61315,sortie-cc8ecab0-1fd4-4281-b614-0b7d1f181493,https://biolit.fr/sorties/sortie-cc8ecab0-1fd4-4281-b614-0b7d1f181493/,Phil,,8/15/2015 0:00,17.0000000,17.0:45,47.790645000000,-4.277406000000,,Léchiagat - Finistère,56123,observation-cc8ecab0-1fd4-4281-b614-0b7d1f181493-5,https://biolit.fr/observations/observation-cc8ecab0-1fd4-4281-b614-0b7d1f181493-5/,Lomentaria articulata,Algue saucisson,,https://biolit.fr/wp-content/uploads/2023/07/20150815_174711.jpg,,TRUE, +N1,61316,sortie-342871c5-0509-4d0b-bf2a-5053a51102b8,https://biolit.fr/sorties/sortie-342871c5-0509-4d0b-bf2a-5053a51102b8/,Phil,,12/10/2015,12.0:15,12.0000000,47.942970000000,-4.41301500000,,Pouldreuzic - Finistère,56125,observation-342871c5-0509-4d0b-bf2a-5053a51102b8,https://biolit.fr/observations/observation-342871c5-0509-4d0b-bf2a-5053a51102b8/,Bifurcaria bifurcata,Bifurcaire,,https://biolit.fr/wp-content/uploads/2023/07/P1000119.JPG,,TRUE, +N1,61316,sortie-342871c5-0509-4d0b-bf2a-5053a51102b8,https://biolit.fr/sorties/sortie-342871c5-0509-4d0b-bf2a-5053a51102b8/,Phil,,12/10/2015,12.0:15,12.0000000,47.942970000000,-4.41301500000,,Pouldreuzic - Finistère,56127,observation-342871c5-0509-4d0b-bf2a-5053a51102b8-2,https://biolit.fr/observations/observation-342871c5-0509-4d0b-bf2a-5053a51102b8-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1000110.JPG,,TRUE, +N1,61316,sortie-342871c5-0509-4d0b-bf2a-5053a51102b8,https://biolit.fr/sorties/sortie-342871c5-0509-4d0b-bf2a-5053a51102b8/,Phil,,12/10/2015,12.0:15,12.0000000,47.942970000000,-4.41301500000,,Pouldreuzic - Finistère,56129,observation-342871c5-0509-4d0b-bf2a-5053a51102b8-3,https://biolit.fr/observations/observation-342871c5-0509-4d0b-bf2a-5053a51102b8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000104.JPG,,FALSE, +N1,61316,sortie-342871c5-0509-4d0b-bf2a-5053a51102b8,https://biolit.fr/sorties/sortie-342871c5-0509-4d0b-bf2a-5053a51102b8/,Phil,,12/10/2015,12.0:15,12.0000000,47.942970000000,-4.41301500000,,Pouldreuzic - Finistère,56131,observation-342871c5-0509-4d0b-bf2a-5053a51102b8-4,https://biolit.fr/observations/observation-342871c5-0509-4d0b-bf2a-5053a51102b8-4/,Codium tomentosum,Codium tomenteux,,https://biolit.fr/wp-content/uploads/2023/07/P1000095.JPG,,TRUE, +N1,61316,sortie-342871c5-0509-4d0b-bf2a-5053a51102b8,https://biolit.fr/sorties/sortie-342871c5-0509-4d0b-bf2a-5053a51102b8/,Phil,,12/10/2015,12.0:15,12.0000000,47.942970000000,-4.41301500000,,Pouldreuzic - Finistère,56133,observation-342871c5-0509-4d0b-bf2a-5053a51102b8-5,https://biolit.fr/observations/observation-342871c5-0509-4d0b-bf2a-5053a51102b8-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000092.JPG,,FALSE, +N1,61316,sortie-342871c5-0509-4d0b-bf2a-5053a51102b8,https://biolit.fr/sorties/sortie-342871c5-0509-4d0b-bf2a-5053a51102b8/,Phil,,12/10/2015,12.0:15,12.0000000,47.942970000000,-4.41301500000,,Pouldreuzic - Finistère,56135,observation-342871c5-0509-4d0b-bf2a-5053a51102b8-6,https://biolit.fr/observations/observation-342871c5-0509-4d0b-bf2a-5053a51102b8-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000090.JPG,,FALSE, +N1,61316,sortie-342871c5-0509-4d0b-bf2a-5053a51102b8,https://biolit.fr/sorties/sortie-342871c5-0509-4d0b-bf2a-5053a51102b8/,Phil,,12/10/2015,12.0:15,12.0000000,47.942970000000,-4.41301500000,,Pouldreuzic - Finistère,56137,observation-342871c5-0509-4d0b-bf2a-5053a51102b8-7,https://biolit.fr/observations/observation-342871c5-0509-4d0b-bf2a-5053a51102b8-7/,Phymatolithon lenormandii,Algue encroûtante rouge de Lenormand,,https://biolit.fr/wp-content/uploads/2023/07/P1000087.JPG,,TRUE, +N1,61317,sortie-2a708e21-d060-4360-bedb-d885557baef3,https://biolit.fr/sorties/sortie-2a708e21-d060-4360-bedb-d885557baef3/,chantal STEINER,,10/25/2015 0:00,10.0000000,10.0000000,41.919097000000,8.762814000000,,ajaccio,56139,observation-2a708e21-d060-4360-bedb-d885557baef3,https://biolit.fr/observations/observation-2a708e21-d060-4360-bedb-d885557baef3/,,,,https://biolit.fr/wp-content/uploads/2023/07/2 (13).JPG,,FALSE, +N1,61317,sortie-2a708e21-d060-4360-bedb-d885557baef3,https://biolit.fr/sorties/sortie-2a708e21-d060-4360-bedb-d885557baef3/,chantal STEINER,,10/25/2015 0:00,10.0000000,10.0000000,41.919097000000,8.762814000000,,ajaccio,56141,observation-2a708e21-d060-4360-bedb-d885557baef3-2,https://biolit.fr/observations/observation-2a708e21-d060-4360-bedb-d885557baef3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/2 (14)-scaled.jpg,,FALSE, +N1,61318,sortie-99a6e856-cd24-4928-b1a9-f14a19aca638,https://biolit.fr/sorties/sortie-99a6e856-cd24-4928-b1a9-f14a19aca638/,Phil,,12/10/2015,11.0000000,12.0000000,47.943357000000,-4.411568000000,,Pouldreuzic - Finistère,56143,observation-99a6e856-cd24-4928-b1a9-f14a19aca638,https://biolit.fr/observations/observation-99a6e856-cd24-4928-b1a9-f14a19aca638/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/P1000049-scaled.jpg,,TRUE, +N1,61318,sortie-99a6e856-cd24-4928-b1a9-f14a19aca638,https://biolit.fr/sorties/sortie-99a6e856-cd24-4928-b1a9-f14a19aca638/,Phil,,12/10/2015,11.0000000,12.0000000,47.943357000000,-4.411568000000,,Pouldreuzic - Finistère,56145,observation-99a6e856-cd24-4928-b1a9-f14a19aca638-2,https://biolit.fr/observations/observation-99a6e856-cd24-4928-b1a9-f14a19aca638-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000070-scaled.jpg,,FALSE, +N1,61318,sortie-99a6e856-cd24-4928-b1a9-f14a19aca638,https://biolit.fr/sorties/sortie-99a6e856-cd24-4928-b1a9-f14a19aca638/,Phil,,12/10/2015,11.0000000,12.0000000,47.943357000000,-4.411568000000,,Pouldreuzic - Finistère,56147,observation-99a6e856-cd24-4928-b1a9-f14a19aca638-3,https://biolit.fr/observations/observation-99a6e856-cd24-4928-b1a9-f14a19aca638-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000082.JPG,,FALSE, +N1,61318,sortie-99a6e856-cd24-4928-b1a9-f14a19aca638,https://biolit.fr/sorties/sortie-99a6e856-cd24-4928-b1a9-f14a19aca638/,Phil,,12/10/2015,11.0000000,12.0000000,47.943357000000,-4.411568000000,,Pouldreuzic - Finistère,56149,observation-99a6e856-cd24-4928-b1a9-f14a19aca638-4,https://biolit.fr/observations/observation-99a6e856-cd24-4928-b1a9-f14a19aca638-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000084.JPG,,FALSE, +N1,61318,sortie-99a6e856-cd24-4928-b1a9-f14a19aca638,https://biolit.fr/sorties/sortie-99a6e856-cd24-4928-b1a9-f14a19aca638/,Phil,,12/10/2015,11.0000000,12.0000000,47.943357000000,-4.411568000000,,Pouldreuzic - Finistère,56151,observation-99a6e856-cd24-4928-b1a9-f14a19aca638-5,https://biolit.fr/observations/observation-99a6e856-cd24-4928-b1a9-f14a19aca638-5/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1000068-scaled.jpg,,TRUE, +N1,61318,sortie-99a6e856-cd24-4928-b1a9-f14a19aca638,https://biolit.fr/sorties/sortie-99a6e856-cd24-4928-b1a9-f14a19aca638/,Phil,,12/10/2015,11.0000000,12.0000000,47.943357000000,-4.411568000000,,Pouldreuzic - Finistère,56153,observation-99a6e856-cd24-4928-b1a9-f14a19aca638-6,https://biolit.fr/observations/observation-99a6e856-cd24-4928-b1a9-f14a19aca638-6/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/P1000056.JPG,,TRUE, +N1,61318,sortie-99a6e856-cd24-4928-b1a9-f14a19aca638,https://biolit.fr/sorties/sortie-99a6e856-cd24-4928-b1a9-f14a19aca638/,Phil,,12/10/2015,11.0000000,12.0000000,47.943357000000,-4.411568000000,,Pouldreuzic - Finistère,56155,observation-99a6e856-cd24-4928-b1a9-f14a19aca638-7,https://biolit.fr/observations/observation-99a6e856-cd24-4928-b1a9-f14a19aca638-7/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1000054.JPG,,TRUE, +N1,61319,sortie-ba765055-a799-4c9e-b189-a00a8bd4608d,https://biolit.fr/sorties/sortie-ba765055-a799-4c9e-b189-a00a8bd4608d/,Loup,,12/11/2015,10.0000000,12.0000000,43.23997400000,5.362341000000,,"plage du bain des dames, la pointe rouge, marseille",56157,observation-ba765055-a799-4c9e-b189-a00a8bd4608d,https://biolit.fr/observations/observation-ba765055-a799-4c9e-b189-a00a8bd4608d/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151211_172856-rotated.jpg,,FALSE, +N1,61319,sortie-ba765055-a799-4c9e-b189-a00a8bd4608d,https://biolit.fr/sorties/sortie-ba765055-a799-4c9e-b189-a00a8bd4608d/,Loup,,12/11/2015,10.0000000,12.0000000,43.23997400000,5.362341000000,,"plage du bain des dames, la pointe rouge, marseille",56159,observation-ba765055-a799-4c9e-b189-a00a8bd4608d-2,https://biolit.fr/observations/observation-ba765055-a799-4c9e-b189-a00a8bd4608d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151211_173538-rotated.jpg,,FALSE, +N1,61319,sortie-ba765055-a799-4c9e-b189-a00a8bd4608d,https://biolit.fr/sorties/sortie-ba765055-a799-4c9e-b189-a00a8bd4608d/,Loup,,12/11/2015,10.0000000,12.0000000,43.23997400000,5.362341000000,,"plage du bain des dames, la pointe rouge, marseille",56161,observation-ba765055-a799-4c9e-b189-a00a8bd4608d-3,https://biolit.fr/observations/observation-ba765055-a799-4c9e-b189-a00a8bd4608d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151211_172910-rotated.jpg,,FALSE, +N1,61320,sortie-507dcf90-a4aa-46fd-aa4b-64a76453813d,https://biolit.fr/sorties/sortie-507dcf90-a4aa-46fd-aa4b-64a76453813d/,Phil,,11/14/2015 0:00,16.0000000,16.0:45,48.594557000000,-4.607692000000,,Landéda - Finistère,56163,observation-507dcf90-a4aa-46fd-aa4b-64a76453813d,https://biolit.fr/observations/observation-507dcf90-a4aa-46fd-aa4b-64a76453813d/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04915a.jpg,,FALSE, +N1,61320,sortie-507dcf90-a4aa-46fd-aa4b-64a76453813d,https://biolit.fr/sorties/sortie-507dcf90-a4aa-46fd-aa4b-64a76453813d/,Phil,,11/14/2015 0:00,16.0000000,16.0:45,48.594557000000,-4.607692000000,,Landéda - Finistère,56165,observation-507dcf90-a4aa-46fd-aa4b-64a76453813d-2,https://biolit.fr/observations/observation-507dcf90-a4aa-46fd-aa4b-64a76453813d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04909a.jpg,,FALSE, +N1,61321,sortie-1be215a7-9e51-4359-852a-cef2c82e0d0b,https://biolit.fr/sorties/sortie-1be215a7-9e51-4359-852a-cef2c82e0d0b/,Phil,,12/10/2015,11.0000000,11.0:45,47.944078000000,-4.410111000000,,Pouldreuzic - Finistère,56167,observation-1be215a7-9e51-4359-852a-cef2c82e0d0b,https://biolit.fr/observations/observation-1be215a7-9e51-4359-852a-cef2c82e0d0b/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/P1000039-scaled.jpg,,TRUE, +N1,61321,sortie-1be215a7-9e51-4359-852a-cef2c82e0d0b,https://biolit.fr/sorties/sortie-1be215a7-9e51-4359-852a-cef2c82e0d0b/,Phil,,12/10/2015,11.0000000,11.0:45,47.944078000000,-4.410111000000,,Pouldreuzic - Finistère,56169,observation-1be215a7-9e51-4359-852a-cef2c82e0d0b-2,https://biolit.fr/observations/observation-1be215a7-9e51-4359-852a-cef2c82e0d0b-2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/P1000032-scaled.jpg,,TRUE, +N1,61321,sortie-1be215a7-9e51-4359-852a-cef2c82e0d0b,https://biolit.fr/sorties/sortie-1be215a7-9e51-4359-852a-cef2c82e0d0b/,Phil,,12/10/2015,11.0000000,11.0:45,47.944078000000,-4.410111000000,,Pouldreuzic - Finistère,56171,observation-1be215a7-9e51-4359-852a-cef2c82e0d0b-3,https://biolit.fr/observations/observation-1be215a7-9e51-4359-852a-cef2c82e0d0b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000029.JPG,,FALSE, +N1,61321,sortie-1be215a7-9e51-4359-852a-cef2c82e0d0b,https://biolit.fr/sorties/sortie-1be215a7-9e51-4359-852a-cef2c82e0d0b/,Phil,,12/10/2015,11.0000000,11.0:45,47.944078000000,-4.410111000000,,Pouldreuzic - Finistère,56173,observation-1be215a7-9e51-4359-852a-cef2c82e0d0b-4,https://biolit.fr/observations/observation-1be215a7-9e51-4359-852a-cef2c82e0d0b-4/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1000027.JPG,,TRUE, +N1,61321,sortie-1be215a7-9e51-4359-852a-cef2c82e0d0b,https://biolit.fr/sorties/sortie-1be215a7-9e51-4359-852a-cef2c82e0d0b/,Phil,,12/10/2015,11.0000000,11.0:45,47.944078000000,-4.410111000000,,Pouldreuzic - Finistère,56175,observation-1be215a7-9e51-4359-852a-cef2c82e0d0b-5,https://biolit.fr/observations/observation-1be215a7-9e51-4359-852a-cef2c82e0d0b-5/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1000024.JPG,,TRUE, +N1,61321,sortie-1be215a7-9e51-4359-852a-cef2c82e0d0b,https://biolit.fr/sorties/sortie-1be215a7-9e51-4359-852a-cef2c82e0d0b/,Phil,,12/10/2015,11.0000000,11.0:45,47.944078000000,-4.410111000000,,Pouldreuzic - Finistère,56177,observation-1be215a7-9e51-4359-852a-cef2c82e0d0b-6,https://biolit.fr/observations/observation-1be215a7-9e51-4359-852a-cef2c82e0d0b-6/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/P1000016-scaled.jpg,,TRUE, +N1,61321,sortie-1be215a7-9e51-4359-852a-cef2c82e0d0b,https://biolit.fr/sorties/sortie-1be215a7-9e51-4359-852a-cef2c82e0d0b/,Phil,,12/10/2015,11.0000000,11.0:45,47.944078000000,-4.410111000000,,Pouldreuzic - Finistère,56179,observation-1be215a7-9e51-4359-852a-cef2c82e0d0b-7,https://biolit.fr/observations/observation-1be215a7-9e51-4359-852a-cef2c82e0d0b-7/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1000011.JPG,,TRUE, +N1,61321,sortie-1be215a7-9e51-4359-852a-cef2c82e0d0b,https://biolit.fr/sorties/sortie-1be215a7-9e51-4359-852a-cef2c82e0d0b/,Phil,,12/10/2015,11.0000000,11.0:45,47.944078000000,-4.410111000000,,Pouldreuzic - Finistère,56181,observation-1be215a7-9e51-4359-852a-cef2c82e0d0b-8,https://biolit.fr/observations/observation-1be215a7-9e51-4359-852a-cef2c82e0d0b-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1000009.JPG,,FALSE, +N1,61322,sortie-409311c9-f24b-434b-83b4-3a51a6e7f962,https://biolit.fr/sorties/sortie-409311c9-f24b-434b-83b4-3a51a6e7f962/,Les Dodos,,12/09/2015,14.0000000,17.0000000,43.149477000000,6.421980000000,,Cavalière,56183,observation-409311c9-f24b-434b-83b4-3a51a6e7f962,https://biolit.fr/observations/observation-409311c9-f24b-434b-83b4-3a51a6e7f962/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151209_141454[1]-scaled.jpg,,FALSE, +N1,61322,sortie-409311c9-f24b-434b-83b4-3a51a6e7f962,https://biolit.fr/sorties/sortie-409311c9-f24b-434b-83b4-3a51a6e7f962/,Les Dodos,,12/09/2015,14.0000000,17.0000000,43.149477000000,6.421980000000,,Cavalière,56185,observation-409311c9-f24b-434b-83b4-3a51a6e7f962-2,https://biolit.fr/observations/observation-409311c9-f24b-434b-83b4-3a51a6e7f962-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151209_141616[1]-scaled.jpg,,FALSE, +N1,61322,sortie-409311c9-f24b-434b-83b4-3a51a6e7f962,https://biolit.fr/sorties/sortie-409311c9-f24b-434b-83b4-3a51a6e7f962/,Les Dodos,,12/09/2015,14.0000000,17.0000000,43.149477000000,6.421980000000,,Cavalière,56187,observation-409311c9-f24b-434b-83b4-3a51a6e7f962-3,https://biolit.fr/observations/observation-409311c9-f24b-434b-83b4-3a51a6e7f962-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151209_141646[1]-scaled.jpg,,FALSE, +N1,61322,sortie-409311c9-f24b-434b-83b4-3a51a6e7f962,https://biolit.fr/sorties/sortie-409311c9-f24b-434b-83b4-3a51a6e7f962/,Les Dodos,,12/09/2015,14.0000000,17.0000000,43.149477000000,6.421980000000,,Cavalière,56189,observation-409311c9-f24b-434b-83b4-3a51a6e7f962-4,https://biolit.fr/observations/observation-409311c9-f24b-434b-83b4-3a51a6e7f962-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151209_163838[1]-scaled.jpg,,FALSE, +N1,61323,sortie-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2,https://biolit.fr/sorties/sortie-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2/,Phil,,11/26/2015 0:00,13.0:15,13.0000000,47.856999000000,-3.919396000000,,Concarneau - Finistère,56191,observation-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2,https://biolit.fr/observations/observation-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151126_132316.jpg,,TRUE, +N1,61323,sortie-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2,https://biolit.fr/sorties/sortie-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2/,Phil,,11/26/2015 0:00,13.0:15,13.0000000,47.856999000000,-3.919396000000,,Concarneau - Finistère,56193,observation-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2-2,https://biolit.fr/observations/observation-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151126_132340.jpg,,FALSE, +N1,61323,sortie-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2,https://biolit.fr/sorties/sortie-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2/,Phil,,11/26/2015 0:00,13.0:15,13.0000000,47.856999000000,-3.919396000000,,Concarneau - Finistère,56195,observation-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2-3,https://biolit.fr/observations/observation-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2-3/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/2023/07/20151126_132834.jpg,,TRUE, +N1,61323,sortie-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2,https://biolit.fr/sorties/sortie-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2/,Phil,,11/26/2015 0:00,13.0:15,13.0000000,47.856999000000,-3.919396000000,,Concarneau - Finistère,56197,observation-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2-4,https://biolit.fr/observations/observation-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2-4/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151126_131223.jpg,,TRUE, +N1,61323,sortie-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2,https://biolit.fr/sorties/sortie-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2/,Phil,,11/26/2015 0:00,13.0:15,13.0000000,47.856999000000,-3.919396000000,,Concarneau - Finistère,56199,observation-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2-5,https://biolit.fr/observations/observation-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151126_130854.jpg,,FALSE, +N1,61323,sortie-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2,https://biolit.fr/sorties/sortie-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2/,Phil,,11/26/2015 0:00,13.0:15,13.0000000,47.856999000000,-3.919396000000,,Concarneau - Finistère,56201,observation-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2-6,https://biolit.fr/observations/observation-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2-6/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20151126_131420.jpg,,TRUE, +N1,61323,sortie-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2,https://biolit.fr/sorties/sortie-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2/,Phil,,11/26/2015 0:00,13.0:15,13.0000000,47.856999000000,-3.919396000000,,Concarneau - Finistère,56203,observation-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2-7,https://biolit.fr/observations/observation-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151126_132820.jpg,,FALSE, +N1,61323,sortie-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2,https://biolit.fr/sorties/sortie-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2/,Phil,,11/26/2015 0:00,13.0:15,13.0000000,47.856999000000,-3.919396000000,,Concarneau - Finistère,56205,observation-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2-8,https://biolit.fr/observations/observation-ba872ffe-3a75-480a-a1a7-c0ac9c0b56a2-8/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04961.jpg,,TRUE, +N1,61324,sortie-249902f5-493c-4af6-bf57-107658501699,https://biolit.fr/sorties/sortie-249902f5-493c-4af6-bf57-107658501699/,Phil,,11/14/2015 0:00,15.0:15,15.0000000,48.607547000000,-4.594911000000,,Landeda - Finistère,56207,observation-249902f5-493c-4af6-bf57-107658501699,https://biolit.fr/observations/observation-249902f5-493c-4af6-bf57-107658501699/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/2023/07/DSC04833.jpg,,TRUE, +N1,61324,sortie-249902f5-493c-4af6-bf57-107658501699,https://biolit.fr/sorties/sortie-249902f5-493c-4af6-bf57-107658501699/,Phil,,11/14/2015 0:00,15.0:15,15.0000000,48.607547000000,-4.594911000000,,Landeda - Finistère,56209,observation-249902f5-493c-4af6-bf57-107658501699-2,https://biolit.fr/observations/observation-249902f5-493c-4af6-bf57-107658501699-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04830.jpg,,TRUE, +N1,61325,sortie-c8185022-8cae-4a44-9f0f-20f0ad0b8672,https://biolit.fr/sorties/sortie-c8185022-8cae-4a44-9f0f-20f0ad0b8672/,Phil,,11/14/2015 0:00,15.0:55,16.0000000,48.605607000000,-4.594302000000,,Landeda - Finistère,56211,observation-c8185022-8cae-4a44-9f0f-20f0ad0b8672,https://biolit.fr/observations/observation-c8185022-8cae-4a44-9f0f-20f0ad0b8672/,Littorina compressa,Littorine à lignes noires,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04879.jpg,,TRUE, +N1,61325,sortie-c8185022-8cae-4a44-9f0f-20f0ad0b8672,https://biolit.fr/sorties/sortie-c8185022-8cae-4a44-9f0f-20f0ad0b8672/,Phil,,11/14/2015 0:00,15.0:55,16.0000000,48.605607000000,-4.594302000000,,Landeda - Finistère,56213,observation-c8185022-8cae-4a44-9f0f-20f0ad0b8672-2,https://biolit.fr/observations/observation-c8185022-8cae-4a44-9f0f-20f0ad0b8672-2/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04907.jpg,,TRUE, +N1,61325,sortie-c8185022-8cae-4a44-9f0f-20f0ad0b8672,https://biolit.fr/sorties/sortie-c8185022-8cae-4a44-9f0f-20f0ad0b8672/,Phil,,11/14/2015 0:00,15.0:55,16.0000000,48.605607000000,-4.594302000000,,Landeda - Finistère,56215,observation-c8185022-8cae-4a44-9f0f-20f0ad0b8672-3,https://biolit.fr/observations/observation-c8185022-8cae-4a44-9f0f-20f0ad0b8672-3/,Pelvetia canaliculata,Pelvétie,,https://biolit.fr/wp-content/uploads/2023/07/DSC04908.jpg,,TRUE, +N1,61325,sortie-c8185022-8cae-4a44-9f0f-20f0ad0b8672,https://biolit.fr/sorties/sortie-c8185022-8cae-4a44-9f0f-20f0ad0b8672/,Phil,,11/14/2015 0:00,15.0:55,16.0000000,48.605607000000,-4.594302000000,,Landeda - Finistère,56217,observation-c8185022-8cae-4a44-9f0f-20f0ad0b8672-4,https://biolit.fr/observations/observation-c8185022-8cae-4a44-9f0f-20f0ad0b8672-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04869.jpg,,FALSE, +N1,61326,sortie-09a7b477-bf78-469a-8a44-0b64eb5efeeb,https://biolit.fr/sorties/sortie-09a7b477-bf78-469a-8a44-0b64eb5efeeb/,Phil,,11/12/2015,10.0000000,12.0000000,48.004793000000,-4.517818000000,,Plouhinec - Finistère,56219,observation-09a7b477-bf78-469a-8a44-0b64eb5efeeb,https://biolit.fr/observations/observation-09a7b477-bf78-469a-8a44-0b64eb5efeeb/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20151112_121807.jpg,,TRUE, +N1,61326,sortie-09a7b477-bf78-469a-8a44-0b64eb5efeeb,https://biolit.fr/sorties/sortie-09a7b477-bf78-469a-8a44-0b64eb5efeeb/,Phil,,11/12/2015,10.0000000,12.0000000,48.004793000000,-4.517818000000,,Plouhinec - Finistère,56221,observation-09a7b477-bf78-469a-8a44-0b64eb5efeeb-2,https://biolit.fr/observations/observation-09a7b477-bf78-469a-8a44-0b64eb5efeeb-2/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/2023/07/20151112_121736.jpg,,TRUE, +N1,61326,sortie-09a7b477-bf78-469a-8a44-0b64eb5efeeb,https://biolit.fr/sorties/sortie-09a7b477-bf78-469a-8a44-0b64eb5efeeb/,Phil,,11/12/2015,10.0000000,12.0000000,48.004793000000,-4.517818000000,,Plouhinec - Finistère,56223,observation-09a7b477-bf78-469a-8a44-0b64eb5efeeb-3,https://biolit.fr/observations/observation-09a7b477-bf78-469a-8a44-0b64eb5efeeb-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_122051.jpg,,FALSE, +N1,61326,sortie-09a7b477-bf78-469a-8a44-0b64eb5efeeb,https://biolit.fr/sorties/sortie-09a7b477-bf78-469a-8a44-0b64eb5efeeb/,Phil,,11/12/2015,10.0000000,12.0000000,48.004793000000,-4.517818000000,,Plouhinec - Finistère,56225,observation-09a7b477-bf78-469a-8a44-0b64eb5efeeb-4,https://biolit.fr/observations/observation-09a7b477-bf78-469a-8a44-0b64eb5efeeb-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_122108.jpg,,FALSE, +N1,61326,sortie-09a7b477-bf78-469a-8a44-0b64eb5efeeb,https://biolit.fr/sorties/sortie-09a7b477-bf78-469a-8a44-0b64eb5efeeb/,Phil,,11/12/2015,10.0000000,12.0000000,48.004793000000,-4.517818000000,,Plouhinec - Finistère,56227,observation-09a7b477-bf78-469a-8a44-0b64eb5efeeb-5,https://biolit.fr/observations/observation-09a7b477-bf78-469a-8a44-0b64eb5efeeb-5/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/20151112_121445.jpg,,TRUE, +N1,61326,sortie-09a7b477-bf78-469a-8a44-0b64eb5efeeb,https://biolit.fr/sorties/sortie-09a7b477-bf78-469a-8a44-0b64eb5efeeb/,Phil,,11/12/2015,10.0000000,12.0000000,48.004793000000,-4.517818000000,,Plouhinec - Finistère,56229,observation-09a7b477-bf78-469a-8a44-0b64eb5efeeb-6,https://biolit.fr/observations/observation-09a7b477-bf78-469a-8a44-0b64eb5efeeb-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_121342.jpg,,FALSE, +N1,61327,sortie-2c516c63-11a6-43b4-9d89-6be03dcacc3d,https://biolit.fr/sorties/sortie-2c516c63-11a6-43b4-9d89-6be03dcacc3d/,boser,,12/05/2015,10.0000000,11.0:25,43.454405000000,3.813591000000,,Frontignan plage,56231,observation-2c516c63-11a6-43b4-9d89-6be03dcacc3d,https://biolit.fr/observations/observation-2c516c63-11a6-43b4-9d89-6be03dcacc3d/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/P1040788-scaled.jpg,,TRUE, +N1,61327,sortie-2c516c63-11a6-43b4-9d89-6be03dcacc3d,https://biolit.fr/sorties/sortie-2c516c63-11a6-43b4-9d89-6be03dcacc3d/,boser,,12/05/2015,10.0000000,11.0:25,43.454405000000,3.813591000000,,Frontignan plage,56233,observation-2c516c63-11a6-43b4-9d89-6be03dcacc3d-2,https://biolit.fr/observations/observation-2c516c63-11a6-43b4-9d89-6be03dcacc3d-2/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/P1040792-scaled.jpg,,TRUE, +N1,61327,sortie-2c516c63-11a6-43b4-9d89-6be03dcacc3d,https://biolit.fr/sorties/sortie-2c516c63-11a6-43b4-9d89-6be03dcacc3d/,boser,,12/05/2015,10.0000000,11.0:25,43.454405000000,3.813591000000,,Frontignan plage,56235,observation-2c516c63-11a6-43b4-9d89-6be03dcacc3d-3,https://biolit.fr/observations/observation-2c516c63-11a6-43b4-9d89-6be03dcacc3d-3/,Raja asterias,Raie étoilée,,https://biolit.fr/wp-content/uploads/2023/07/P1040800_0-scaled.jpg,,TRUE, +N1,61327,sortie-2c516c63-11a6-43b4-9d89-6be03dcacc3d,https://biolit.fr/sorties/sortie-2c516c63-11a6-43b4-9d89-6be03dcacc3d/,boser,,12/05/2015,10.0000000,11.0:25,43.454405000000,3.813591000000,,Frontignan plage,56237,observation-2c516c63-11a6-43b4-9d89-6be03dcacc3d-4,https://biolit.fr/observations/observation-2c516c63-11a6-43b4-9d89-6be03dcacc3d-4/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/P1040803-scaled.jpg,,TRUE, +N1,61327,sortie-2c516c63-11a6-43b4-9d89-6be03dcacc3d,https://biolit.fr/sorties/sortie-2c516c63-11a6-43b4-9d89-6be03dcacc3d/,boser,,12/05/2015,10.0000000,11.0:25,43.454405000000,3.813591000000,,Frontignan plage,56239,observation-2c516c63-11a6-43b4-9d89-6be03dcacc3d-5,https://biolit.fr/observations/observation-2c516c63-11a6-43b4-9d89-6be03dcacc3d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1040817-scaled.jpg,,FALSE, +N1,61328,sortie-30045f81-0072-4b29-8a17-315cd9be105a,https://biolit.fr/sorties/sortie-30045f81-0072-4b29-8a17-315cd9be105a/,Phil,,12/02/2015,15.0000000,16.000005,47.792317000000,-4.287663000000,,Le Guilvinec - Finistère,56241,observation-30045f81-0072-4b29-8a17-315cd9be105a,https://biolit.fr/observations/observation-30045f81-0072-4b29-8a17-315cd9be105a/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151202_155800.jpg,,TRUE, +N1,61328,sortie-30045f81-0072-4b29-8a17-315cd9be105a,https://biolit.fr/sorties/sortie-30045f81-0072-4b29-8a17-315cd9be105a/,Phil,,12/02/2015,15.0000000,16.000005,47.792317000000,-4.287663000000,,Le Guilvinec - Finistère,56243,observation-30045f81-0072-4b29-8a17-315cd9be105a-2,https://biolit.fr/observations/observation-30045f81-0072-4b29-8a17-315cd9be105a-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151202_155645.jpg,,TRUE, +N1,61328,sortie-30045f81-0072-4b29-8a17-315cd9be105a,https://biolit.fr/sorties/sortie-30045f81-0072-4b29-8a17-315cd9be105a/,Phil,,12/02/2015,15.0000000,16.000005,47.792317000000,-4.287663000000,,Le Guilvinec - Finistère,56245,observation-30045f81-0072-4b29-8a17-315cd9be105a-3,https://biolit.fr/observations/observation-30045f81-0072-4b29-8a17-315cd9be105a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151202_155453.jpg,,FALSE, +N1,61328,sortie-30045f81-0072-4b29-8a17-315cd9be105a,https://biolit.fr/sorties/sortie-30045f81-0072-4b29-8a17-315cd9be105a/,Phil,,12/02/2015,15.0000000,16.000005,47.792317000000,-4.287663000000,,Le Guilvinec - Finistère,56247,observation-30045f81-0072-4b29-8a17-315cd9be105a-4,https://biolit.fr/observations/observation-30045f81-0072-4b29-8a17-315cd9be105a-4/,Electra pilosa,Ecorce pileuse,,https://biolit.fr/wp-content/uploads/2023/07/20151202_160033.jpg,,TRUE, +N1,61328,sortie-30045f81-0072-4b29-8a17-315cd9be105a,https://biolit.fr/sorties/sortie-30045f81-0072-4b29-8a17-315cd9be105a/,Phil,,12/02/2015,15.0000000,16.000005,47.792317000000,-4.287663000000,,Le Guilvinec - Finistère,56249,observation-30045f81-0072-4b29-8a17-315cd9be105a-5,https://biolit.fr/observations/observation-30045f81-0072-4b29-8a17-315cd9be105a-5/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/20151202_160206.jpg,,TRUE, +N1,61328,sortie-30045f81-0072-4b29-8a17-315cd9be105a,https://biolit.fr/sorties/sortie-30045f81-0072-4b29-8a17-315cd9be105a/,Phil,,12/02/2015,15.0000000,16.000005,47.792317000000,-4.287663000000,,Le Guilvinec - Finistère,56251,observation-30045f81-0072-4b29-8a17-315cd9be105a-6,https://biolit.fr/observations/observation-30045f81-0072-4b29-8a17-315cd9be105a-6/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20151202_160546.jpg,,TRUE, +N1,61329,sortie-417b5eb6-0263-4607-ae8f-9fba283023bf,https://biolit.fr/sorties/sortie-417b5eb6-0263-4607-ae8f-9fba283023bf/,Phil,,11/12/2015,12.0000000,13.0000000,48.008825000000,-4.535240000000,,Plouhinec - Finistère,56253,observation-417b5eb6-0263-4607-ae8f-9fba283023bf,https://biolit.fr/observations/observation-417b5eb6-0263-4607-ae8f-9fba283023bf/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_123024.jpg,,FALSE, +N1,61329,sortie-417b5eb6-0263-4607-ae8f-9fba283023bf,https://biolit.fr/sorties/sortie-417b5eb6-0263-4607-ae8f-9fba283023bf/,Phil,,11/12/2015,12.0000000,13.0000000,48.008825000000,-4.535240000000,,Plouhinec - Finistère,56255,observation-417b5eb6-0263-4607-ae8f-9fba283023bf-2,https://biolit.fr/observations/observation-417b5eb6-0263-4607-ae8f-9fba283023bf-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_123115.jpg,,FALSE, +N1,61329,sortie-417b5eb6-0263-4607-ae8f-9fba283023bf,https://biolit.fr/sorties/sortie-417b5eb6-0263-4607-ae8f-9fba283023bf/,Phil,,11/12/2015,12.0000000,13.0000000,48.008825000000,-4.535240000000,,Plouhinec - Finistère,56257,observation-417b5eb6-0263-4607-ae8f-9fba283023bf-3,https://biolit.fr/observations/observation-417b5eb6-0263-4607-ae8f-9fba283023bf-3/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/20151112_125656.jpg,,TRUE, +N1,61329,sortie-417b5eb6-0263-4607-ae8f-9fba283023bf,https://biolit.fr/sorties/sortie-417b5eb6-0263-4607-ae8f-9fba283023bf/,Phil,,11/12/2015,12.0000000,13.0000000,48.008825000000,-4.535240000000,,Plouhinec - Finistère,56259,observation-417b5eb6-0263-4607-ae8f-9fba283023bf-4,https://biolit.fr/observations/observation-417b5eb6-0263-4607-ae8f-9fba283023bf-4/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04752.jpg,,TRUE, +N1,61329,sortie-417b5eb6-0263-4607-ae8f-9fba283023bf,https://biolit.fr/sorties/sortie-417b5eb6-0263-4607-ae8f-9fba283023bf/,Phil,,11/12/2015,12.0000000,13.0000000,48.008825000000,-4.535240000000,,Plouhinec - Finistère,56261,observation-417b5eb6-0263-4607-ae8f-9fba283023bf-5,https://biolit.fr/observations/observation-417b5eb6-0263-4607-ae8f-9fba283023bf-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04754.jpg,,FALSE, +N1,61330,sortie-f0185798-2152-4e5c-822e-4b255839f70c,https://biolit.fr/sorties/sortie-f0185798-2152-4e5c-822e-4b255839f70c/,Phil,,11/26/2015 0:00,12.0000000,12.0:35,47.858075000000,-3.915723000000,,Concarneau - Finistère,56263,observation-f0185798-2152-4e5c-822e-4b255839f70c,https://biolit.fr/observations/observation-f0185798-2152-4e5c-822e-4b255839f70c/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151126_124611.jpg,,FALSE, +N1,61330,sortie-f0185798-2152-4e5c-822e-4b255839f70c,https://biolit.fr/sorties/sortie-f0185798-2152-4e5c-822e-4b255839f70c/,Phil,,11/26/2015 0:00,12.0000000,12.0:35,47.858075000000,-3.915723000000,,Concarneau - Finistère,56265,observation-f0185798-2152-4e5c-822e-4b255839f70c-2,https://biolit.fr/observations/observation-f0185798-2152-4e5c-822e-4b255839f70c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151126_123947.jpg,,FALSE, +N1,61330,sortie-f0185798-2152-4e5c-822e-4b255839f70c,https://biolit.fr/sorties/sortie-f0185798-2152-4e5c-822e-4b255839f70c/,Phil,,11/26/2015 0:00,12.0000000,12.0:35,47.858075000000,-3.915723000000,,Concarneau - Finistère,56267,observation-f0185798-2152-4e5c-822e-4b255839f70c-3,https://biolit.fr/observations/observation-f0185798-2152-4e5c-822e-4b255839f70c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04971.jpg,,FALSE, +N1,61330,sortie-f0185798-2152-4e5c-822e-4b255839f70c,https://biolit.fr/sorties/sortie-f0185798-2152-4e5c-822e-4b255839f70c/,Phil,,11/26/2015 0:00,12.0000000,12.0:35,47.858075000000,-3.915723000000,,Concarneau - Finistère,56269,observation-f0185798-2152-4e5c-822e-4b255839f70c-4,https://biolit.fr/observations/observation-f0185798-2152-4e5c-822e-4b255839f70c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04977.jpg,,FALSE, +N1,61330,sortie-f0185798-2152-4e5c-822e-4b255839f70c,https://biolit.fr/sorties/sortie-f0185798-2152-4e5c-822e-4b255839f70c/,Phil,,11/26/2015 0:00,12.0000000,12.0:35,47.858075000000,-3.915723000000,,Concarneau - Finistère,56271,observation-f0185798-2152-4e5c-822e-4b255839f70c-5,https://biolit.fr/observations/observation-f0185798-2152-4e5c-822e-4b255839f70c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04968.jpg,,FALSE, +N1,61331,sortie-b94d6ea3-c91f-4a2c-a03a-50d3048a2c09,https://biolit.fr/sorties/sortie-b94d6ea3-c91f-4a2c-a03a-50d3048a2c09/,Phil,,10/09/2015,17.0000000,17.000005,47.886714000000,-3.965661000000,,La Forêt-Fouesnant - Finistère,56273,observation-b94d6ea3-c91f-4a2c-a03a-50d3048a2c09,https://biolit.fr/observations/observation-b94d6ea3-c91f-4a2c-a03a-50d3048a2c09/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20151009_170335.jpg,,TRUE, +N1,61331,sortie-b94d6ea3-c91f-4a2c-a03a-50d3048a2c09,https://biolit.fr/sorties/sortie-b94d6ea3-c91f-4a2c-a03a-50d3048a2c09/,Phil,,10/09/2015,17.0000000,17.000005,47.886714000000,-3.965661000000,,La Forêt-Fouesnant - Finistère,56275,observation-b94d6ea3-c91f-4a2c-a03a-50d3048a2c09-2,https://biolit.fr/observations/observation-b94d6ea3-c91f-4a2c-a03a-50d3048a2c09-2/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20151009_170630.jpg,,TRUE, +N1,61331,sortie-b94d6ea3-c91f-4a2c-a03a-50d3048a2c09,https://biolit.fr/sorties/sortie-b94d6ea3-c91f-4a2c-a03a-50d3048a2c09/,Phil,,10/09/2015,17.0000000,17.000005,47.886714000000,-3.965661000000,,La Forêt-Fouesnant - Finistère,56277,observation-b94d6ea3-c91f-4a2c-a03a-50d3048a2c09-3,https://biolit.fr/observations/observation-b94d6ea3-c91f-4a2c-a03a-50d3048a2c09-3/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20151009_170540.jpg,,TRUE, +N1,61331,sortie-b94d6ea3-c91f-4a2c-a03a-50d3048a2c09,https://biolit.fr/sorties/sortie-b94d6ea3-c91f-4a2c-a03a-50d3048a2c09/,Phil,,10/09/2015,17.0000000,17.000005,47.886714000000,-3.965661000000,,La Forêt-Fouesnant - Finistère,56279,observation-b94d6ea3-c91f-4a2c-a03a-50d3048a2c09-4,https://biolit.fr/observations/observation-b94d6ea3-c91f-4a2c-a03a-50d3048a2c09-4/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20151009_170719.jpg,,TRUE, +N1,61332,sortie-aa96d9e0-c942-4f9d-922d-5d0e77dabdb6,https://biolit.fr/sorties/sortie-aa96d9e0-c942-4f9d-922d-5d0e77dabdb6/,Marine,,11/17/2015 0:00,14.0000000,16.0000000,43.266264000000,5.371482000000,,Base nautique du Roucas Blanc,56281,observation-aa96d9e0-c942-4f9d-922d-5d0e77dabdb6,https://biolit.fr/observations/observation-aa96d9e0-c942-4f9d-922d-5d0e77dabdb6/,Sabella spallanzanii,Spirographe,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0922-scaled.jpg,,TRUE, +N1,61333,sortie-b28f281f-8b09-42ec-b435-0e3637dc3b4d,https://biolit.fr/sorties/sortie-b28f281f-8b09-42ec-b435-0e3637dc3b4d/,Phil,,11/26/2015 0:00,12.0000000,13.0000000,47.8589230000,-3.91638200000,,Concarneau - Finistère,56283,observation-b28f281f-8b09-42ec-b435-0e3637dc3b4d,https://biolit.fr/observations/observation-b28f281f-8b09-42ec-b435-0e3637dc3b4d/,Urticina felina,Dahlia de mer,,https://biolit.fr/wp-content/uploads/2023/07/20151126_125711.jpg,,TRUE, +N1,61333,sortie-b28f281f-8b09-42ec-b435-0e3637dc3b4d,https://biolit.fr/sorties/sortie-b28f281f-8b09-42ec-b435-0e3637dc3b4d/,Phil,,11/26/2015 0:00,12.0000000,13.0000000,47.8589230000,-3.91638200000,,Concarneau - Finistère,56285,observation-b28f281f-8b09-42ec-b435-0e3637dc3b4d-2,https://biolit.fr/observations/observation-b28f281f-8b09-42ec-b435-0e3637dc3b4d-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20151126_125103.jpg,,TRUE, +N1,61333,sortie-b28f281f-8b09-42ec-b435-0e3637dc3b4d,https://biolit.fr/sorties/sortie-b28f281f-8b09-42ec-b435-0e3637dc3b4d/,Phil,,11/26/2015 0:00,12.0000000,13.0000000,47.8589230000,-3.91638200000,,Concarneau - Finistère,56287,observation-b28f281f-8b09-42ec-b435-0e3637dc3b4d-3,https://biolit.fr/observations/observation-b28f281f-8b09-42ec-b435-0e3637dc3b4d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151126_125335.jpg,,FALSE, +N1,61333,sortie-b28f281f-8b09-42ec-b435-0e3637dc3b4d,https://biolit.fr/sorties/sortie-b28f281f-8b09-42ec-b435-0e3637dc3b4d/,Phil,,11/26/2015 0:00,12.0000000,13.0000000,47.8589230000,-3.91638200000,,Concarneau - Finistère,56289,observation-b28f281f-8b09-42ec-b435-0e3637dc3b4d-4,https://biolit.fr/observations/observation-b28f281f-8b09-42ec-b435-0e3637dc3b4d-4/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/20151126_124733.jpg,,TRUE, +N1,61333,sortie-b28f281f-8b09-42ec-b435-0e3637dc3b4d,https://biolit.fr/sorties/sortie-b28f281f-8b09-42ec-b435-0e3637dc3b4d/,Phil,,11/26/2015 0:00,12.0000000,13.0000000,47.8589230000,-3.91638200000,,Concarneau - Finistère,56291,observation-b28f281f-8b09-42ec-b435-0e3637dc3b4d-5,https://biolit.fr/observations/observation-b28f281f-8b09-42ec-b435-0e3637dc3b4d-5/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/20151126_124818.jpg,,TRUE, +N1,61334,sortie-3728ff82-3e2f-411c-8443-f3d02553b1f4,https://biolit.fr/sorties/sortie-3728ff82-3e2f-411c-8443-f3d02553b1f4/,Phil,,11/26/2015 0:00,13.0000000,14.0000000,47.856743000000,-3.918645000000,,Concarneau - Finistère,56293,observation-3728ff82-3e2f-411c-8443-f3d02553b1f4,https://biolit.fr/observations/observation-3728ff82-3e2f-411c-8443-f3d02553b1f4/,Ramalina siliquosa,Ramaline des rochers,,https://biolit.fr/wp-content/uploads/2023/07/20151126_135237.jpg,,TRUE, +N1,61334,sortie-3728ff82-3e2f-411c-8443-f3d02553b1f4,https://biolit.fr/sorties/sortie-3728ff82-3e2f-411c-8443-f3d02553b1f4/,Phil,,11/26/2015 0:00,13.0000000,14.0000000,47.856743000000,-3.918645000000,,Concarneau - Finistère,56295,observation-3728ff82-3e2f-411c-8443-f3d02553b1f4-2,https://biolit.fr/observations/observation-3728ff82-3e2f-411c-8443-f3d02553b1f4-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20151126_135445.jpg,,TRUE, +N1,61335,sortie-22159040-064b-4d68-bd2f-e41061445289,https://biolit.fr/sorties/sortie-22159040-064b-4d68-bd2f-e41061445289/,Marine,,11/24/2015 0:00,13.0:35,14.0:35,41.468227000000,9.266860000000,,La rondinara,56297,observation-22159040-064b-4d68-bd2f-e41061445289,https://biolit.fr/observations/observation-22159040-064b-4d68-bd2f-e41061445289/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0262-scaled.jpg,,FALSE, +N1,61336,sortie-410d277e-57e0-4827-9794-b9c31b80750e,https://biolit.fr/sorties/sortie-410d277e-57e0-4827-9794-b9c31b80750e/,Marine,,11/24/2015 0:00,12.0:15,13.0:15,41.388230000000,9.162484000000,,Port de Bonifacio,56299,observation-410d277e-57e0-4827-9794-b9c31b80750e,https://biolit.fr/observations/observation-410d277e-57e0-4827-9794-b9c31b80750e/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0252-scaled.jpg,,FALSE, +N1,61336,sortie-410d277e-57e0-4827-9794-b9c31b80750e,https://biolit.fr/sorties/sortie-410d277e-57e0-4827-9794-b9c31b80750e/,Marine,,11/24/2015 0:00,12.0:15,13.0:15,41.388230000000,9.162484000000,,Port de Bonifacio,56301,observation-410d277e-57e0-4827-9794-b9c31b80750e-2,https://biolit.fr/observations/observation-410d277e-57e0-4827-9794-b9c31b80750e-2/,Chromis chromis,Castagnole,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0254-scaled.jpg,,TRUE, +N1,61337,sortie-b0d4a6c9-80ac-4434-9939-c0f7827534b7,https://biolit.fr/sorties/sortie-b0d4a6c9-80ac-4434-9939-c0f7827534b7/,Phil,,11/25/2015 0:00,10.0000000,11.0:15,48.098648000000,-4.29555500000,,Kerlaz - Finistère,56303,observation-b0d4a6c9-80ac-4434-9939-c0f7827534b7,https://biolit.fr/observations/observation-b0d4a6c9-80ac-4434-9939-c0f7827534b7/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20151125_102803.jpg,,TRUE, +N1,61337,sortie-b0d4a6c9-80ac-4434-9939-c0f7827534b7,https://biolit.fr/sorties/sortie-b0d4a6c9-80ac-4434-9939-c0f7827534b7/,Phil,,11/25/2015 0:00,10.0000000,11.0:15,48.098648000000,-4.29555500000,,Kerlaz - Finistère,56305,observation-b0d4a6c9-80ac-4434-9939-c0f7827534b7-2,https://biolit.fr/observations/observation-b0d4a6c9-80ac-4434-9939-c0f7827534b7-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20151125_102814.jpg,,TRUE, +N1,61337,sortie-b0d4a6c9-80ac-4434-9939-c0f7827534b7,https://biolit.fr/sorties/sortie-b0d4a6c9-80ac-4434-9939-c0f7827534b7/,Phil,,11/25/2015 0:00,10.0000000,11.0:15,48.098648000000,-4.29555500000,,Kerlaz - Finistère,56307,observation-b0d4a6c9-80ac-4434-9939-c0f7827534b7-3,https://biolit.fr/observations/observation-b0d4a6c9-80ac-4434-9939-c0f7827534b7-3/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20151125_103653.jpg,,TRUE, +N1,61337,sortie-b0d4a6c9-80ac-4434-9939-c0f7827534b7,https://biolit.fr/sorties/sortie-b0d4a6c9-80ac-4434-9939-c0f7827534b7/,Phil,,11/25/2015 0:00,10.0000000,11.0:15,48.098648000000,-4.29555500000,,Kerlaz - Finistère,56309,observation-b0d4a6c9-80ac-4434-9939-c0f7827534b7-4,https://biolit.fr/observations/observation-b0d4a6c9-80ac-4434-9939-c0f7827534b7-4/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC04949.jpg,,TRUE, +N1,61337,sortie-b0d4a6c9-80ac-4434-9939-c0f7827534b7,https://biolit.fr/sorties/sortie-b0d4a6c9-80ac-4434-9939-c0f7827534b7/,Phil,,11/25/2015 0:00,10.0000000,11.0:15,48.098648000000,-4.29555500000,,Kerlaz - Finistère,56311,observation-b0d4a6c9-80ac-4434-9939-c0f7827534b7-5,https://biolit.fr/observations/observation-b0d4a6c9-80ac-4434-9939-c0f7827534b7-5/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/20151125_111336.jpg,,TRUE, +N1,61338,sortie-451758f3-15de-435d-8395-538955cbda94,https://biolit.fr/sorties/sortie-451758f3-15de-435d-8395-538955cbda94/,Phil,,11/12/2015,12.000005,12.0000000,48.003575000000,-4.519123000000,,Plouhinec - Finistère,56313,observation-451758f3-15de-435d-8395-538955cbda94,https://biolit.fr/observations/observation-451758f3-15de-435d-8395-538955cbda94/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20151112_120804.jpg,,TRUE, +N1,61338,sortie-451758f3-15de-435d-8395-538955cbda94,https://biolit.fr/sorties/sortie-451758f3-15de-435d-8395-538955cbda94/,Phil,,11/12/2015,12.000005,12.0000000,48.003575000000,-4.519123000000,,Plouhinec - Finistère,56315,observation-451758f3-15de-435d-8395-538955cbda94-2,https://biolit.fr/observations/observation-451758f3-15de-435d-8395-538955cbda94-2/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20151112_120610.jpg,,TRUE, +N1,61338,sortie-451758f3-15de-435d-8395-538955cbda94,https://biolit.fr/sorties/sortie-451758f3-15de-435d-8395-538955cbda94/,Phil,,11/12/2015,12.000005,12.0000000,48.003575000000,-4.519123000000,,Plouhinec - Finistère,56317,observation-451758f3-15de-435d-8395-538955cbda94-3,https://biolit.fr/observations/observation-451758f3-15de-435d-8395-538955cbda94-3/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/20151112_120804_0.jpg,,TRUE, +N1,61338,sortie-451758f3-15de-435d-8395-538955cbda94,https://biolit.fr/sorties/sortie-451758f3-15de-435d-8395-538955cbda94/,Phil,,11/12/2015,12.000005,12.0000000,48.003575000000,-4.519123000000,,Plouhinec - Finistère,56319,observation-451758f3-15de-435d-8395-538955cbda94-4,https://biolit.fr/observations/observation-451758f3-15de-435d-8395-538955cbda94-4/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20151112_120400.jpg,,TRUE, +N1,61338,sortie-451758f3-15de-435d-8395-538955cbda94,https://biolit.fr/sorties/sortie-451758f3-15de-435d-8395-538955cbda94/,Phil,,11/12/2015,12.000005,12.0000000,48.003575000000,-4.519123000000,,Plouhinec - Finistère,56321,observation-451758f3-15de-435d-8395-538955cbda94-5,https://biolit.fr/observations/observation-451758f3-15de-435d-8395-538955cbda94-5/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20151112_120440.jpg,,TRUE, +N1,61338,sortie-451758f3-15de-435d-8395-538955cbda94,https://biolit.fr/sorties/sortie-451758f3-15de-435d-8395-538955cbda94/,Phil,,11/12/2015,12.000005,12.0000000,48.003575000000,-4.519123000000,,Plouhinec - Finistère,56323,observation-451758f3-15de-435d-8395-538955cbda94-6,https://biolit.fr/observations/observation-451758f3-15de-435d-8395-538955cbda94-6/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/20151112_120519.jpg,,TRUE, +N1,61338,sortie-451758f3-15de-435d-8395-538955cbda94,https://biolit.fr/sorties/sortie-451758f3-15de-435d-8395-538955cbda94/,Phil,,11/12/2015,12.000005,12.0000000,48.003575000000,-4.519123000000,,Plouhinec - Finistère,56325,observation-451758f3-15de-435d-8395-538955cbda94-7,https://biolit.fr/observations/observation-451758f3-15de-435d-8395-538955cbda94-7/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151112_121040.jpg,,TRUE, +N1,61339,sortie-c6386627-5d2b-4d0f-8f09-b742ec8eb7d1,https://biolit.fr/sorties/sortie-c6386627-5d2b-4d0f-8f09-b742ec8eb7d1/,Phil,,11/25/2015 0:00,11.0:25,11.0000000,48.093109000000,-4.304967000000,,Douarnenez - Finistère,56327,observation-c6386627-5d2b-4d0f-8f09-b742ec8eb7d1,https://biolit.fr/observations/observation-c6386627-5d2b-4d0f-8f09-b742ec8eb7d1/,Astropecten irregularis,Etoile-peigne commune,,https://biolit.fr/wp-content/uploads/2023/07/20151125_112632.jpg,,TRUE, +N1,61339,sortie-c6386627-5d2b-4d0f-8f09-b742ec8eb7d1,https://biolit.fr/sorties/sortie-c6386627-5d2b-4d0f-8f09-b742ec8eb7d1/,Phil,,11/25/2015 0:00,11.0:25,11.0000000,48.093109000000,-4.304967000000,,Douarnenez - Finistère,56329,observation-c6386627-5d2b-4d0f-8f09-b742ec8eb7d1-2,https://biolit.fr/observations/observation-c6386627-5d2b-4d0f-8f09-b742ec8eb7d1-2/,Astropecten irregularis,Etoile-peigne commune,,https://biolit.fr/wp-content/uploads/2023/07/20151125_112644.jpg,,TRUE, +N1,61339,sortie-c6386627-5d2b-4d0f-8f09-b742ec8eb7d1,https://biolit.fr/sorties/sortie-c6386627-5d2b-4d0f-8f09-b742ec8eb7d1/,Phil,,11/25/2015 0:00,11.0:25,11.0000000,48.093109000000,-4.304967000000,,Douarnenez - Finistère,56331,observation-c6386627-5d2b-4d0f-8f09-b742ec8eb7d1-3,https://biolit.fr/observations/observation-c6386627-5d2b-4d0f-8f09-b742ec8eb7d1-3/,Astropecten irregularis,Etoile-peigne commune,,https://biolit.fr/wp-content/uploads/2023/07/20151125_112613.jpg,,TRUE, +N1,61339,sortie-c6386627-5d2b-4d0f-8f09-b742ec8eb7d1,https://biolit.fr/sorties/sortie-c6386627-5d2b-4d0f-8f09-b742ec8eb7d1/,Phil,,11/25/2015 0:00,11.0:25,11.0000000,48.093109000000,-4.304967000000,,Douarnenez - Finistère,56333,observation-c6386627-5d2b-4d0f-8f09-b742ec8eb7d1-4,https://biolit.fr/observations/observation-c6386627-5d2b-4d0f-8f09-b742ec8eb7d1-4/,Astropecten irregularis,Etoile-peigne commune,,https://biolit.fr/wp-content/uploads/2023/07/20151125_112425.jpg,,TRUE, +N1,61340,sortie-0637c498-8461-4211-a2df-ad01ef23eaec,https://biolit.fr/sorties/sortie-0637c498-8461-4211-a2df-ad01ef23eaec/,Phil,,11/25/2015 0:00,11.0:35,11.0000000,48.095395000000,-4.29824800000,,Kerlaz - Finistère,56335,observation-0637c498-8461-4211-a2df-ad01ef23eaec,https://biolit.fr/observations/observation-0637c498-8461-4211-a2df-ad01ef23eaec/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151125_113623.jpg,,TRUE, +N1,61340,sortie-0637c498-8461-4211-a2df-ad01ef23eaec,https://biolit.fr/sorties/sortie-0637c498-8461-4211-a2df-ad01ef23eaec/,Phil,,11/25/2015 0:00,11.0:35,11.0000000,48.095395000000,-4.29824800000,,Kerlaz - Finistère,56337,observation-0637c498-8461-4211-a2df-ad01ef23eaec-2,https://biolit.fr/observations/observation-0637c498-8461-4211-a2df-ad01ef23eaec-2/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151125_113748.jpg,,TRUE, +N1,61340,sortie-0637c498-8461-4211-a2df-ad01ef23eaec,https://biolit.fr/sorties/sortie-0637c498-8461-4211-a2df-ad01ef23eaec/,Phil,,11/25/2015 0:00,11.0:35,11.0000000,48.095395000000,-4.29824800000,,Kerlaz - Finistère,56339,observation-0637c498-8461-4211-a2df-ad01ef23eaec-3,https://biolit.fr/observations/observation-0637c498-8461-4211-a2df-ad01ef23eaec-3/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151125_113710.jpg,,TRUE, +N1,61340,sortie-0637c498-8461-4211-a2df-ad01ef23eaec,https://biolit.fr/sorties/sortie-0637c498-8461-4211-a2df-ad01ef23eaec/,Phil,,11/25/2015 0:00,11.0:35,11.0000000,48.095395000000,-4.29824800000,,Kerlaz - Finistère,56341,observation-0637c498-8461-4211-a2df-ad01ef23eaec-4,https://biolit.fr/observations/observation-0637c498-8461-4211-a2df-ad01ef23eaec-4/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151125_113732.jpg,,TRUE, +N1,61341,sortie-a748faff-03d0-4be9-9571-70df00646a26,https://biolit.fr/sorties/sortie-a748faff-03d0-4be9-9571-70df00646a26/,Phil,,11/15/2015 0:00,11.0000000,11.0:35,48.133443000000,-4.275578000000,,Plonevez Porzay - Finistère,56343,observation-a748faff-03d0-4be9-9571-70df00646a26,https://biolit.fr/observations/observation-a748faff-03d0-4be9-9571-70df00646a26/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/07/20151115_121804.jpg,,TRUE, +N1,61341,sortie-a748faff-03d0-4be9-9571-70df00646a26,https://biolit.fr/sorties/sortie-a748faff-03d0-4be9-9571-70df00646a26/,Phil,,11/15/2015 0:00,11.0000000,11.0:35,48.133443000000,-4.275578000000,,Plonevez Porzay - Finistère,56345,observation-a748faff-03d0-4be9-9571-70df00646a26-2,https://biolit.fr/observations/observation-a748faff-03d0-4be9-9571-70df00646a26-2/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/2023/07/20151115_121743.jpg,,TRUE, +N1,61341,sortie-a748faff-03d0-4be9-9571-70df00646a26,https://biolit.fr/sorties/sortie-a748faff-03d0-4be9-9571-70df00646a26/,Phil,,11/15/2015 0:00,11.0000000,11.0:35,48.133443000000,-4.275578000000,,Plonevez Porzay - Finistère,56347,observation-a748faff-03d0-4be9-9571-70df00646a26-3,https://biolit.fr/observations/observation-a748faff-03d0-4be9-9571-70df00646a26-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151115_113302.jpg,,FALSE, +N1,61341,sortie-a748faff-03d0-4be9-9571-70df00646a26,https://biolit.fr/sorties/sortie-a748faff-03d0-4be9-9571-70df00646a26/,Phil,,11/15/2015 0:00,11.0000000,11.0:35,48.133443000000,-4.275578000000,,Plonevez Porzay - Finistère,56349,observation-a748faff-03d0-4be9-9571-70df00646a26-4,https://biolit.fr/observations/observation-a748faff-03d0-4be9-9571-70df00646a26-4/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/20151115_115546.jpg,,TRUE, +N1,61341,sortie-a748faff-03d0-4be9-9571-70df00646a26,https://biolit.fr/sorties/sortie-a748faff-03d0-4be9-9571-70df00646a26/,Phil,,11/15/2015 0:00,11.0000000,11.0:35,48.133443000000,-4.275578000000,,Plonevez Porzay - Finistère,56351,observation-a748faff-03d0-4be9-9571-70df00646a26-5,https://biolit.fr/observations/observation-a748faff-03d0-4be9-9571-70df00646a26-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151115_114920.jpg,,FALSE, +N1,61341,sortie-a748faff-03d0-4be9-9571-70df00646a26,https://biolit.fr/sorties/sortie-a748faff-03d0-4be9-9571-70df00646a26/,Phil,,11/15/2015 0:00,11.0000000,11.0:35,48.133443000000,-4.275578000000,,Plonevez Porzay - Finistère,56353,observation-a748faff-03d0-4be9-9571-70df00646a26-6,https://biolit.fr/observations/observation-a748faff-03d0-4be9-9571-70df00646a26-6/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/05/DSC04927.JPG,,TRUE, +N1,61341,sortie-a748faff-03d0-4be9-9571-70df00646a26,https://biolit.fr/sorties/sortie-a748faff-03d0-4be9-9571-70df00646a26/,Phil,,11/15/2015 0:00,11.0000000,11.0:35,48.133443000000,-4.275578000000,,Plonevez Porzay - Finistère,56354,observation-a748faff-03d0-4be9-9571-70df00646a26-7,https://biolit.fr/observations/observation-a748faff-03d0-4be9-9571-70df00646a26-7/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/DSC04928.jpg,,TRUE, +N1,61342,sortie-0c5bb838-7a77-44ef-953d-bd72f2fe8306,https://biolit.fr/sorties/sortie-0c5bb838-7a77-44ef-953d-bd72f2fe8306/,Phil,,11/14/2015 0:00,15.0000000,15.0000000,48.606022000000,-4.593481000000,,Landéda - Finistère,56356,observation-0c5bb838-7a77-44ef-953d-bd72f2fe8306,https://biolit.fr/observations/observation-0c5bb838-7a77-44ef-953d-bd72f2fe8306/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04864.jpg,,FALSE, +N1,61342,sortie-0c5bb838-7a77-44ef-953d-bd72f2fe8306,https://biolit.fr/sorties/sortie-0c5bb838-7a77-44ef-953d-bd72f2fe8306/,Phil,,11/14/2015 0:00,15.0000000,15.0000000,48.606022000000,-4.593481000000,,Landéda - Finistère,56358,observation-0c5bb838-7a77-44ef-953d-bd72f2fe8306-2,https://biolit.fr/observations/observation-0c5bb838-7a77-44ef-953d-bd72f2fe8306-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04861.jpg,,TRUE, +N1,61342,sortie-0c5bb838-7a77-44ef-953d-bd72f2fe8306,https://biolit.fr/sorties/sortie-0c5bb838-7a77-44ef-953d-bd72f2fe8306/,Phil,,11/14/2015 0:00,15.0000000,15.0000000,48.606022000000,-4.593481000000,,Landéda - Finistère,56360,observation-0c5bb838-7a77-44ef-953d-bd72f2fe8306-3,https://biolit.fr/observations/observation-0c5bb838-7a77-44ef-953d-bd72f2fe8306-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04846.jpg,,FALSE, +N1,61343,sortie-7c47ce1d-bf2f-4094-99b4-f3e641934500,https://biolit.fr/sorties/sortie-7c47ce1d-bf2f-4094-99b4-f3e641934500/,Phil,,11/15/2015 0:00,11.0:35,11.0:45,48.131941000000,-4.28204100000,,Tréfeuntec - Finistère,56362,observation-7c47ce1d-bf2f-4094-99b4-f3e641934500,https://biolit.fr/observations/observation-7c47ce1d-bf2f-4094-99b4-f3e641934500/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/20151115_114331.jpg,,TRUE, +N1,61343,sortie-7c47ce1d-bf2f-4094-99b4-f3e641934500,https://biolit.fr/sorties/sortie-7c47ce1d-bf2f-4094-99b4-f3e641934500/,Phil,,11/15/2015 0:00,11.0:35,11.0:45,48.131941000000,-4.28204100000,,Tréfeuntec - Finistère,56364,observation-7c47ce1d-bf2f-4094-99b4-f3e641934500-2,https://biolit.fr/observations/observation-7c47ce1d-bf2f-4094-99b4-f3e641934500-2/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/20151115_113709.jpg,,TRUE, +N1,61343,sortie-7c47ce1d-bf2f-4094-99b4-f3e641934500,https://biolit.fr/sorties/sortie-7c47ce1d-bf2f-4094-99b4-f3e641934500/,Phil,,11/15/2015 0:00,11.0:35,11.0:45,48.131941000000,-4.28204100000,,Tréfeuntec - Finistère,56366,observation-7c47ce1d-bf2f-4094-99b4-f3e641934500-3,https://biolit.fr/observations/observation-7c47ce1d-bf2f-4094-99b4-f3e641934500-3/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/20151115_114021.jpg,,TRUE, +N1,61343,sortie-7c47ce1d-bf2f-4094-99b4-f3e641934500,https://biolit.fr/sorties/sortie-7c47ce1d-bf2f-4094-99b4-f3e641934500/,Phil,,11/15/2015 0:00,11.0:35,11.0:45,48.131941000000,-4.28204100000,,Tréfeuntec - Finistère,56368,observation-7c47ce1d-bf2f-4094-99b4-f3e641934500-4,https://biolit.fr/observations/observation-7c47ce1d-bf2f-4094-99b4-f3e641934500-4/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/2023/07/20151115_114301.jpg,,TRUE, +N1,61344,sortie-370c2379-ba3b-4d9d-af12-d5ed04728313,https://biolit.fr/sorties/sortie-370c2379-ba3b-4d9d-af12-d5ed04728313/,Phil,,11/12/2015,12.0000000,12.0000000,48.005051000000,-4.520082000000,,Plouhinec - Finistère,56370,observation-370c2379-ba3b-4d9d-af12-d5ed04728313,https://biolit.fr/observations/observation-370c2379-ba3b-4d9d-af12-d5ed04728313/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/DSC04743g.jpg,,TRUE, +N1,61344,sortie-370c2379-ba3b-4d9d-af12-d5ed04728313,https://biolit.fr/sorties/sortie-370c2379-ba3b-4d9d-af12-d5ed04728313/,Phil,,11/12/2015,12.0000000,12.0000000,48.005051000000,-4.520082000000,,Plouhinec - Finistère,56372,observation-370c2379-ba3b-4d9d-af12-d5ed04728313-2,https://biolit.fr/observations/observation-370c2379-ba3b-4d9d-af12-d5ed04728313-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/DSC04746.jpg,,TRUE, +N1,61344,sortie-370c2379-ba3b-4d9d-af12-d5ed04728313,https://biolit.fr/sorties/sortie-370c2379-ba3b-4d9d-af12-d5ed04728313/,Phil,,11/12/2015,12.0000000,12.0000000,48.005051000000,-4.520082000000,,Plouhinec - Finistère,56374,observation-370c2379-ba3b-4d9d-af12-d5ed04728313-3,https://biolit.fr/observations/observation-370c2379-ba3b-4d9d-af12-d5ed04728313-3/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20151112_123225.jpg,,TRUE, +N1,61345,sortie-65b25d33-851a-4e7f-934a-80f5a518b804,https://biolit.fr/sorties/sortie-65b25d33-851a-4e7f-934a-80f5a518b804/,Phil,,11/13/2015 0:00,10.0000000,11.0000000,48.123468000000,-4.284548000000,,Plonevez Porzay - Finistère,56376,observation-65b25d33-851a-4e7f-934a-80f5a518b804,https://biolit.fr/observations/observation-65b25d33-851a-4e7f-934a-80f5a518b804/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/2023/07/DSC04801.jpg,,TRUE, +N1,61345,sortie-65b25d33-851a-4e7f-934a-80f5a518b804,https://biolit.fr/sorties/sortie-65b25d33-851a-4e7f-934a-80f5a518b804/,Phil,,11/13/2015 0:00,10.0000000,11.0000000,48.123468000000,-4.284548000000,,Plonevez Porzay - Finistère,56378,observation-65b25d33-851a-4e7f-934a-80f5a518b804-2,https://biolit.fr/observations/observation-65b25d33-851a-4e7f-934a-80f5a518b804-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04793.jpg,,FALSE, +N1,61345,sortie-65b25d33-851a-4e7f-934a-80f5a518b804,https://biolit.fr/sorties/sortie-65b25d33-851a-4e7f-934a-80f5a518b804/,Phil,,11/13/2015 0:00,10.0000000,11.0000000,48.123468000000,-4.284548000000,,Plonevez Porzay - Finistère,56380,observation-65b25d33-851a-4e7f-934a-80f5a518b804-3,https://biolit.fr/observations/observation-65b25d33-851a-4e7f-934a-80f5a518b804-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04796.jpg,,TRUE, +N1,61345,sortie-65b25d33-851a-4e7f-934a-80f5a518b804,https://biolit.fr/sorties/sortie-65b25d33-851a-4e7f-934a-80f5a518b804/,Phil,,11/13/2015 0:00,10.0000000,11.0000000,48.123468000000,-4.284548000000,,Plonevez Porzay - Finistère,56382,observation-65b25d33-851a-4e7f-934a-80f5a518b804-4,https://biolit.fr/observations/observation-65b25d33-851a-4e7f-934a-80f5a518b804-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04798.jpg,,TRUE, +N1,61345,sortie-65b25d33-851a-4e7f-934a-80f5a518b804,https://biolit.fr/sorties/sortie-65b25d33-851a-4e7f-934a-80f5a518b804/,Phil,,11/13/2015 0:00,10.0000000,11.0000000,48.123468000000,-4.284548000000,,Plonevez Porzay - Finistère,56384,observation-65b25d33-851a-4e7f-934a-80f5a518b804-5,https://biolit.fr/observations/observation-65b25d33-851a-4e7f-934a-80f5a518b804-5/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/DSC04799.jpg,,TRUE, +N1,61345,sortie-65b25d33-851a-4e7f-934a-80f5a518b804,https://biolit.fr/sorties/sortie-65b25d33-851a-4e7f-934a-80f5a518b804/,Phil,,11/13/2015 0:00,10.0000000,11.0000000,48.123468000000,-4.284548000000,,Plonevez Porzay - Finistère,56386,observation-65b25d33-851a-4e7f-934a-80f5a518b804-6,https://biolit.fr/observations/observation-65b25d33-851a-4e7f-934a-80f5a518b804-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04805.jpg,,FALSE, +N1,61346,sortie-0fb7dc9d-96d8-48bb-8118-5cdb223e316e,https://biolit.fr/sorties/sortie-0fb7dc9d-96d8-48bb-8118-5cdb223e316e/,Phil,,11/12/2015,11.0000000,12.0000000,48.005309000000,-4.520475000000,,Plouhinec - Finistère,56388,observation-0fb7dc9d-96d8-48bb-8118-5cdb223e316e,https://biolit.fr/observations/observation-0fb7dc9d-96d8-48bb-8118-5cdb223e316e/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/20151112_115252.jpg,,TRUE, +N1,61346,sortie-0fb7dc9d-96d8-48bb-8118-5cdb223e316e,https://biolit.fr/sorties/sortie-0fb7dc9d-96d8-48bb-8118-5cdb223e316e/,Phil,,11/12/2015,11.0000000,12.0000000,48.005309000000,-4.520475000000,,Plouhinec - Finistère,56390,observation-0fb7dc9d-96d8-48bb-8118-5cdb223e316e-2,https://biolit.fr/observations/observation-0fb7dc9d-96d8-48bb-8118-5cdb223e316e-2/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/20151112_115425.jpg,,TRUE, +N1,61346,sortie-0fb7dc9d-96d8-48bb-8118-5cdb223e316e,https://biolit.fr/sorties/sortie-0fb7dc9d-96d8-48bb-8118-5cdb223e316e/,Phil,,11/12/2015,11.0000000,12.0000000,48.005309000000,-4.520475000000,,Plouhinec - Finistère,56392,observation-0fb7dc9d-96d8-48bb-8118-5cdb223e316e-3,https://biolit.fr/observations/observation-0fb7dc9d-96d8-48bb-8118-5cdb223e316e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_115409.jpg,,FALSE, +N1,61346,sortie-0fb7dc9d-96d8-48bb-8118-5cdb223e316e,https://biolit.fr/sorties/sortie-0fb7dc9d-96d8-48bb-8118-5cdb223e316e/,Phil,,11/12/2015,11.0000000,12.0000000,48.005309000000,-4.520475000000,,Plouhinec - Finistère,56394,observation-0fb7dc9d-96d8-48bb-8118-5cdb223e316e-4,https://biolit.fr/observations/observation-0fb7dc9d-96d8-48bb-8118-5cdb223e316e-4/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/20151112_115444.jpg,,TRUE, +N1,61346,sortie-0fb7dc9d-96d8-48bb-8118-5cdb223e316e,https://biolit.fr/sorties/sortie-0fb7dc9d-96d8-48bb-8118-5cdb223e316e/,Phil,,11/12/2015,11.0000000,12.0000000,48.005309000000,-4.520475000000,,Plouhinec - Finistère,56396,observation-0fb7dc9d-96d8-48bb-8118-5cdb223e316e-5,https://biolit.fr/observations/observation-0fb7dc9d-96d8-48bb-8118-5cdb223e316e-5/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20151112_115814.jpg,,TRUE, +N1,61346,sortie-0fb7dc9d-96d8-48bb-8118-5cdb223e316e,https://biolit.fr/sorties/sortie-0fb7dc9d-96d8-48bb-8118-5cdb223e316e/,Phil,,11/12/2015,11.0000000,12.0000000,48.005309000000,-4.520475000000,,Plouhinec - Finistère,56398,observation-0fb7dc9d-96d8-48bb-8118-5cdb223e316e-6,https://biolit.fr/observations/observation-0fb7dc9d-96d8-48bb-8118-5cdb223e316e-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_120034.jpg,,FALSE, +N1,61346,sortie-0fb7dc9d-96d8-48bb-8118-5cdb223e316e,https://biolit.fr/sorties/sortie-0fb7dc9d-96d8-48bb-8118-5cdb223e316e/,Phil,,11/12/2015,11.0000000,12.0000000,48.005309000000,-4.520475000000,,Plouhinec - Finistère,56400,observation-0fb7dc9d-96d8-48bb-8118-5cdb223e316e-7,https://biolit.fr/observations/observation-0fb7dc9d-96d8-48bb-8118-5cdb223e316e-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_120124.jpg,,FALSE, +N1,61346,sortie-0fb7dc9d-96d8-48bb-8118-5cdb223e316e,https://biolit.fr/sorties/sortie-0fb7dc9d-96d8-48bb-8118-5cdb223e316e/,Phil,,11/12/2015,11.0000000,12.0000000,48.005309000000,-4.520475000000,,Plouhinec - Finistère,56402,observation-0fb7dc9d-96d8-48bb-8118-5cdb223e316e-8,https://biolit.fr/observations/observation-0fb7dc9d-96d8-48bb-8118-5cdb223e316e-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_120143.jpg,,FALSE, +N1,61347,sortie-d9574b5e-52ff-4e60-ad1f-61fde4db2818,https://biolit.fr/sorties/sortie-d9574b5e-52ff-4e60-ad1f-61fde4db2818/,Phil,,11/13/2015 0:00,10.0:45,10.0000000,48.121265000000,-4.283797000000,,Plonevez Porzay - Finistère,56404,observation-d9574b5e-52ff-4e60-ad1f-61fde4db2818,https://biolit.fr/observations/observation-d9574b5e-52ff-4e60-ad1f-61fde4db2818/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04776a.jpg,,FALSE, +N1,61347,sortie-d9574b5e-52ff-4e60-ad1f-61fde4db2818,https://biolit.fr/sorties/sortie-d9574b5e-52ff-4e60-ad1f-61fde4db2818/,Phil,,11/13/2015 0:00,10.0:45,10.0000000,48.121265000000,-4.283797000000,,Plonevez Porzay - Finistère,56406,observation-d9574b5e-52ff-4e60-ad1f-61fde4db2818-2,https://biolit.fr/observations/observation-d9574b5e-52ff-4e60-ad1f-61fde4db2818-2/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/DSC04777a.jpg,,TRUE, +N1,61347,sortie-d9574b5e-52ff-4e60-ad1f-61fde4db2818,https://biolit.fr/sorties/sortie-d9574b5e-52ff-4e60-ad1f-61fde4db2818/,Phil,,11/13/2015 0:00,10.0:45,10.0000000,48.121265000000,-4.283797000000,,Plonevez Porzay - Finistère,56408,observation-d9574b5e-52ff-4e60-ad1f-61fde4db2818-3,https://biolit.fr/observations/observation-d9574b5e-52ff-4e60-ad1f-61fde4db2818-3/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/DSC04783a.jpg,,TRUE, +N1,61347,sortie-d9574b5e-52ff-4e60-ad1f-61fde4db2818,https://biolit.fr/sorties/sortie-d9574b5e-52ff-4e60-ad1f-61fde4db2818/,Phil,,11/13/2015 0:00,10.0:45,10.0000000,48.121265000000,-4.283797000000,,Plonevez Porzay - Finistère,56410,observation-d9574b5e-52ff-4e60-ad1f-61fde4db2818-4,https://biolit.fr/observations/observation-d9574b5e-52ff-4e60-ad1f-61fde4db2818-4/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/2023/07/DSC04795.jpg,,TRUE, +N1,61348,sortie-b21f191e-3d03-4169-9172-1a28243f6802,https://biolit.fr/sorties/sortie-b21f191e-3d03-4169-9172-1a28243f6802/,Phil,,11/13/2015 0:00,10.0000000,10.0000000,48.120157000000,-4.283801000000,,Plonevez Porzay - Finistère,56412,observation-b21f191e-3d03-4169-9172-1a28243f6802,https://biolit.fr/observations/observation-b21f191e-3d03-4169-9172-1a28243f6802/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04766.jpg,,FALSE, +N1,61348,sortie-b21f191e-3d03-4169-9172-1a28243f6802,https://biolit.fr/sorties/sortie-b21f191e-3d03-4169-9172-1a28243f6802/,Phil,,11/13/2015 0:00,10.0000000,10.0000000,48.120157000000,-4.283801000000,,Plonevez Porzay - Finistère,56414,observation-b21f191e-3d03-4169-9172-1a28243f6802-2,https://biolit.fr/observations/observation-b21f191e-3d03-4169-9172-1a28243f6802-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04768.jpg,,FALSE, +N1,61348,sortie-b21f191e-3d03-4169-9172-1a28243f6802,https://biolit.fr/sorties/sortie-b21f191e-3d03-4169-9172-1a28243f6802/,Phil,,11/13/2015 0:00,10.0000000,10.0000000,48.120157000000,-4.283801000000,,Plonevez Porzay - Finistère,56416,observation-b21f191e-3d03-4169-9172-1a28243f6802-3,https://biolit.fr/observations/observation-b21f191e-3d03-4169-9172-1a28243f6802-3/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/DSC04774.jpg,,TRUE, +N1,61349,sortie-dcb5ca66-74eb-4017-ad13-4c8f4c02b52a,https://biolit.fr/sorties/sortie-dcb5ca66-74eb-4017-ad13-4c8f4c02b52a/,Ville de Marseille Ecole Zac de Bonneveine CM1-CM2,,11/17/2015 0:00,15.0000000,16.0000000,43.267703000000,5.370315000000,,Base nautique du Roucas Blanc,56418,observation-dcb5ca66-74eb-4017-ad13-4c8f4c02b52a,https://biolit.fr/observations/observation-dcb5ca66-74eb-4017-ad13-4c8f4c02b52a/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC02317-scaled.jpg,,TRUE, +N1,61349,sortie-dcb5ca66-74eb-4017-ad13-4c8f4c02b52a,https://biolit.fr/sorties/sortie-dcb5ca66-74eb-4017-ad13-4c8f4c02b52a/,Ville de Marseille Ecole Zac de Bonneveine CM1-CM2,,11/17/2015 0:00,15.0000000,16.0000000,43.267703000000,5.370315000000,,Base nautique du Roucas Blanc,56420,observation-dcb5ca66-74eb-4017-ad13-4c8f4c02b52a-2,https://biolit.fr/observations/observation-dcb5ca66-74eb-4017-ad13-4c8f4c02b52a-2/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC02316-scaled.jpg,,TRUE, +N1,61350,sortie-eb195f5c-2921-4243-b641-34c887c9c1c2,https://biolit.fr/sorties/sortie-eb195f5c-2921-4243-b641-34c887c9c1c2/,Phil,,11/13/2015 0:00,11.000005,11.0000000,48.122752000000,-4.285492000000,,Plonevez Porzay - Finistère,56422,observation-eb195f5c-2921-4243-b641-34c887c9c1c2,https://biolit.fr/observations/observation-eb195f5c-2921-4243-b641-34c887c9c1c2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04809.jpg,,FALSE, +N1,61350,sortie-eb195f5c-2921-4243-b641-34c887c9c1c2,https://biolit.fr/sorties/sortie-eb195f5c-2921-4243-b641-34c887c9c1c2/,Phil,,11/13/2015 0:00,11.000005,11.0000000,48.122752000000,-4.285492000000,,Plonevez Porzay - Finistère,56424,observation-eb195f5c-2921-4243-b641-34c887c9c1c2-2,https://biolit.fr/observations/observation-eb195f5c-2921-4243-b641-34c887c9c1c2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04813.jpg,,FALSE, +N1,61350,sortie-eb195f5c-2921-4243-b641-34c887c9c1c2,https://biolit.fr/sorties/sortie-eb195f5c-2921-4243-b641-34c887c9c1c2/,Phil,,11/13/2015 0:00,11.000005,11.0000000,48.122752000000,-4.285492000000,,Plonevez Porzay - Finistère,56426,observation-eb195f5c-2921-4243-b641-34c887c9c1c2-3,https://biolit.fr/observations/observation-eb195f5c-2921-4243-b641-34c887c9c1c2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04819-scaled.jpg,,FALSE, +N1,61351,sortie-4dda35f8-483f-4711-b2b1-1cd98a28b5b8,https://biolit.fr/sorties/sortie-4dda35f8-483f-4711-b2b1-1cd98a28b5b8/,Les Dodos,,11/15/2015 0:00,19.0000000,21.0000000,43.097881000000,6.323960000000,,Plage du fort de Brégançon,56428,observation-4dda35f8-483f-4711-b2b1-1cd98a28b5b8,https://biolit.fr/observations/observation-4dda35f8-483f-4711-b2b1-1cd98a28b5b8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151115_145633-scaled.jpg,,FALSE, +N1,61351,sortie-4dda35f8-483f-4711-b2b1-1cd98a28b5b8,https://biolit.fr/sorties/sortie-4dda35f8-483f-4711-b2b1-1cd98a28b5b8/,Les Dodos,,11/15/2015 0:00,19.0000000,21.0000000,43.097881000000,6.323960000000,,Plage du fort de Brégançon,56430,observation-4dda35f8-483f-4711-b2b1-1cd98a28b5b8-2,https://biolit.fr/observations/observation-4dda35f8-483f-4711-b2b1-1cd98a28b5b8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151115_155509-scaled.jpg,,FALSE, +N1,61351,sortie-4dda35f8-483f-4711-b2b1-1cd98a28b5b8,https://biolit.fr/sorties/sortie-4dda35f8-483f-4711-b2b1-1cd98a28b5b8/,Les Dodos,,11/15/2015 0:00,19.0000000,21.0000000,43.097881000000,6.323960000000,,Plage du fort de Brégançon,56432,observation-4dda35f8-483f-4711-b2b1-1cd98a28b5b8-3,https://biolit.fr/observations/observation-4dda35f8-483f-4711-b2b1-1cd98a28b5b8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151115_155635-scaled.jpg,,FALSE, +N1,61351,sortie-4dda35f8-483f-4711-b2b1-1cd98a28b5b8,https://biolit.fr/sorties/sortie-4dda35f8-483f-4711-b2b1-1cd98a28b5b8/,Les Dodos,,11/15/2015 0:00,19.0000000,21.0000000,43.097881000000,6.323960000000,,Plage du fort de Brégançon,56434,observation-4dda35f8-483f-4711-b2b1-1cd98a28b5b8-4,https://biolit.fr/observations/observation-4dda35f8-483f-4711-b2b1-1cd98a28b5b8-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151115_145852-scaled.jpg,,FALSE, +N1,61352,sortie-3f117c67-1644-4d95-8bab-440001a36527,https://biolit.fr/sorties/sortie-3f117c67-1644-4d95-8bab-440001a36527/,Les Dodos,,11/15/2015 0:00,14.0000000,16.0000000,43.094461000000,6.324692000000,,Plage du fort de Brégançon,56436,observation-3f117c67-1644-4d95-8bab-440001a36527,"""https://biolit.fr/observations/observation-3f117c67-1644-4d95-8bab-440001a36527/""",Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/2023/07/20151115_152613-scaled.jpg,,TRUE, +N1,61352,sortie-3f117c67-1644-4d95-8bab-440001a36527,https://biolit.fr/sorties/sortie-3f117c67-1644-4d95-8bab-440001a36527/,Les Dodos,,11/15/2015 0:00,14.0000000,16.0000000,43.094461000000,6.324692000000,,Plage du fort de Brégançon,56438,observation-3f117c67-1644-4d95-8bab-440001a36527-2,https://biolit.fr/observations/observation-3f117c67-1644-4d95-8bab-440001a36527-2/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/2023/07/20151115_153527-scaled.jpg,,TRUE, +N1,61352,sortie-3f117c67-1644-4d95-8bab-440001a36527,https://biolit.fr/sorties/sortie-3f117c67-1644-4d95-8bab-440001a36527/,Les Dodos,,11/15/2015 0:00,14.0000000,16.0000000,43.094461000000,6.324692000000,,Plage du fort de Brégançon,56440,observation-3f117c67-1644-4d95-8bab-440001a36527-3,https://biolit.fr/observations/observation-3f117c67-1644-4d95-8bab-440001a36527-3/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/2023/07/20151115_153536-scaled.jpg,,TRUE, +N1,61352,sortie-3f117c67-1644-4d95-8bab-440001a36527,https://biolit.fr/sorties/sortie-3f117c67-1644-4d95-8bab-440001a36527/,Les Dodos,,11/15/2015 0:00,14.0000000,16.0000000,43.094461000000,6.324692000000,,Plage du fort de Brégançon,56442,observation-3f117c67-1644-4d95-8bab-440001a36527-4,https://biolit.fr/observations/observation-3f117c67-1644-4d95-8bab-440001a36527-4/,Sabella spallanzanii,Spirographe,,https://biolit.fr/wp-content/uploads/2023/07/20151115_153437-scaled.jpg,,TRUE, +N1,61352,sortie-3f117c67-1644-4d95-8bab-440001a36527,https://biolit.fr/sorties/sortie-3f117c67-1644-4d95-8bab-440001a36527/,Les Dodos,,11/15/2015 0:00,14.0000000,16.0000000,43.094461000000,6.324692000000,,Plage du fort de Brégançon,56444,observation-3f117c67-1644-4d95-8bab-440001a36527-5,https://biolit.fr/observations/observation-3f117c67-1644-4d95-8bab-440001a36527-5/,Sabella spallanzanii,Spirographe,,https://biolit.fr/wp-content/uploads/2023/07/20151115_152951-scaled.jpg,,TRUE, +N1,61352,sortie-3f117c67-1644-4d95-8bab-440001a36527,https://biolit.fr/sorties/sortie-3f117c67-1644-4d95-8bab-440001a36527/,Les Dodos,,11/15/2015 0:00,14.0000000,16.0000000,43.094461000000,6.324692000000,,Plage du fort de Brégançon,56446,observation-3f117c67-1644-4d95-8bab-440001a36527-6,https://biolit.fr/observations/observation-3f117c67-1644-4d95-8bab-440001a36527-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151115_153059-scaled.jpg,,FALSE, +N1,61353,sortie-3dcd3ed1-08e8-4f70-95b3-523699321c14,https://biolit.fr/sorties/sortie-3dcd3ed1-08e8-4f70-95b3-523699321c14/,Phil,,11/12/2015,11.0:35,11.0000000,48.004677000000,-4.519095000000,,Plouhinec - Finistère,56448,observation-3dcd3ed1-08e8-4f70-95b3-523699321c14,https://biolit.fr/observations/observation-3dcd3ed1-08e8-4f70-95b3-523699321c14/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_113502.jpg,,FALSE, +N1,61353,sortie-3dcd3ed1-08e8-4f70-95b3-523699321c14,https://biolit.fr/sorties/sortie-3dcd3ed1-08e8-4f70-95b3-523699321c14/,Phil,,11/12/2015,11.0:35,11.0000000,48.004677000000,-4.519095000000,,Plouhinec - Finistère,56450,observation-3dcd3ed1-08e8-4f70-95b3-523699321c14-2,https://biolit.fr/observations/observation-3dcd3ed1-08e8-4f70-95b3-523699321c14-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_113521.jpg,,FALSE, +N1,61353,sortie-3dcd3ed1-08e8-4f70-95b3-523699321c14,https://biolit.fr/sorties/sortie-3dcd3ed1-08e8-4f70-95b3-523699321c14/,Phil,,11/12/2015,11.0:35,11.0000000,48.004677000000,-4.519095000000,,Plouhinec - Finistère,56452,observation-3dcd3ed1-08e8-4f70-95b3-523699321c14-3,https://biolit.fr/observations/observation-3dcd3ed1-08e8-4f70-95b3-523699321c14-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_113557.jpg,,FALSE, +N1,61353,sortie-3dcd3ed1-08e8-4f70-95b3-523699321c14,https://biolit.fr/sorties/sortie-3dcd3ed1-08e8-4f70-95b3-523699321c14/,Phil,,11/12/2015,11.0:35,11.0000000,48.004677000000,-4.519095000000,,Plouhinec - Finistère,56454,observation-3dcd3ed1-08e8-4f70-95b3-523699321c14-4,https://biolit.fr/observations/observation-3dcd3ed1-08e8-4f70-95b3-523699321c14-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_115013.jpg,,FALSE, +N1,61354,sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9,https://biolit.fr/sorties/sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9/,Phil,,11/12/2015,10.0:55,11.0:25,48.005101000000,-4.51792100000,,Plouhinec - Finistère,56456,observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9,https://biolit.fr/observations/observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_112701.jpg,,FALSE, +N1,61354,sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9,https://biolit.fr/sorties/sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9/,Phil,,11/12/2015,10.0:55,11.0:25,48.005101000000,-4.51792100000,,Plouhinec - Finistère,56458,observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-2,https://biolit.fr/observations/observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_112800.jpg,,FALSE, +N1,61354,sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9,https://biolit.fr/sorties/sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9/,Phil,,11/12/2015,10.0:55,11.0:25,48.005101000000,-4.51792100000,,Plouhinec - Finistère,56460,observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-3,https://biolit.fr/observations/observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_112752.jpg,,FALSE, +N1,61354,sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9,https://biolit.fr/sorties/sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9/,Phil,,11/12/2015,10.0:55,11.0:25,48.005101000000,-4.51792100000,,Plouhinec - Finistère,56462,observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-4,https://biolit.fr/observations/observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151112_113100.jpg,,TRUE, +N1,61354,sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9,https://biolit.fr/sorties/sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9/,Phil,,11/12/2015,10.0:55,11.0:25,48.005101000000,-4.51792100000,,Plouhinec - Finistère,56464,observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-5,https://biolit.fr/observations/observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-5/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151112_113006.jpg,,TRUE, +N1,61354,sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9,https://biolit.fr/sorties/sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9/,Phil,,11/12/2015,10.0:55,11.0:25,48.005101000000,-4.51792100000,,Plouhinec - Finistère,56466,observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-6,https://biolit.fr/observations/observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_114544.jpg,,FALSE, +N1,61354,sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9,https://biolit.fr/sorties/sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9/,Phil,,11/12/2015,10.0:55,11.0:25,48.005101000000,-4.51792100000,,Plouhinec - Finistère,56468,observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-7,https://biolit.fr/observations/observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_114600.jpg,,FALSE, +N1,61354,sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9,https://biolit.fr/sorties/sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9/,Phil,,11/12/2015,10.0:55,11.0:25,48.005101000000,-4.51792100000,,Plouhinec - Finistère,56470,observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-8,https://biolit.fr/observations/observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-8/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/DSC04757a.jpg,,TRUE, +N1,61354,sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9,https://biolit.fr/sorties/sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9/,Phil,,11/12/2015,10.0:55,11.0:25,48.005101000000,-4.51792100000,,Plouhinec - Finistère,56474,observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-10,https://biolit.fr/observations/observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-10/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/20151112_112404.jpg,,TRUE, +N1,61354,sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9,https://biolit.fr/sorties/sortie-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9/,Phil,,11/12/2015,10.0:55,11.0:25,48.005101000000,-4.51792100000,,Plouhinec - Finistère,56476,observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-11,https://biolit.fr/observations/observation-cbb82671-ec1c-43a2-9cd8-401a33d6e8d9-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151112_112503.jpg,,FALSE, +N1,61355,sortie-4986e7b5-3e7b-4aba-a669-09edd99f2ecd,https://biolit.fr/sorties/sortie-4986e7b5-3e7b-4aba-a669-09edd99f2ecd/,july gonnet,,11/10/2015,14.0000000,15.0000000,43.248878000000,3.300297000000,,serignan plage,56478,observation-4986e7b5-3e7b-4aba-a669-09edd99f2ecd,https://biolit.fr/observations/observation-4986e7b5-3e7b-4aba-a669-09edd99f2ecd/,,,,https://biolit.fr/wp-content/uploads/2023/07/12208790_10205317200757047_4031047272450173319_n[1]_0.jpg,,FALSE, +N1,61356,sortie-498446eb-8243-4177-aae9-4b230c2dc1d6,https://biolit.fr/sorties/sortie-498446eb-8243-4177-aae9-4b230c2dc1d6/,Phil,,11/08/2015,11.000005,11.0:25,48.119817000000,-4.283421000000,,Plonevez Porzay - Finistère,56480,observation-498446eb-8243-4177-aae9-4b230c2dc1d6,https://biolit.fr/observations/observation-498446eb-8243-4177-aae9-4b230c2dc1d6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151108_111216.jpg,,FALSE, +N1,61356,sortie-498446eb-8243-4177-aae9-4b230c2dc1d6,https://biolit.fr/sorties/sortie-498446eb-8243-4177-aae9-4b230c2dc1d6/,Phil,,11/08/2015,11.000005,11.0:25,48.119817000000,-4.283421000000,,Plonevez Porzay - Finistère,56482,observation-498446eb-8243-4177-aae9-4b230c2dc1d6-2,https://biolit.fr/observations/observation-498446eb-8243-4177-aae9-4b230c2dc1d6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151108_111246.jpg,,FALSE, +N1,61356,sortie-498446eb-8243-4177-aae9-4b230c2dc1d6,https://biolit.fr/sorties/sortie-498446eb-8243-4177-aae9-4b230c2dc1d6/,Phil,,11/08/2015,11.000005,11.0:25,48.119817000000,-4.283421000000,,Plonevez Porzay - Finistère,56484,observation-498446eb-8243-4177-aae9-4b230c2dc1d6-3,https://biolit.fr/observations/observation-498446eb-8243-4177-aae9-4b230c2dc1d6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151108_111544-scaled.jpg,,FALSE, +N1,61356,sortie-498446eb-8243-4177-aae9-4b230c2dc1d6,https://biolit.fr/sorties/sortie-498446eb-8243-4177-aae9-4b230c2dc1d6/,Phil,,11/08/2015,11.000005,11.0:25,48.119817000000,-4.283421000000,,Plonevez Porzay - Finistère,56486,observation-498446eb-8243-4177-aae9-4b230c2dc1d6-4,https://biolit.fr/observations/observation-498446eb-8243-4177-aae9-4b230c2dc1d6-4/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/20151108_112235.jpg,,TRUE, +N1,61356,sortie-498446eb-8243-4177-aae9-4b230c2dc1d6,https://biolit.fr/sorties/sortie-498446eb-8243-4177-aae9-4b230c2dc1d6/,Phil,,11/08/2015,11.000005,11.0:25,48.119817000000,-4.283421000000,,Plonevez Porzay - Finistère,56488,observation-498446eb-8243-4177-aae9-4b230c2dc1d6-5,https://biolit.fr/observations/observation-498446eb-8243-4177-aae9-4b230c2dc1d6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151108_110656.jpg,,FALSE, +N1,61356,sortie-498446eb-8243-4177-aae9-4b230c2dc1d6,https://biolit.fr/sorties/sortie-498446eb-8243-4177-aae9-4b230c2dc1d6/,Phil,,11/08/2015,11.000005,11.0:25,48.119817000000,-4.283421000000,,Plonevez Porzay - Finistère,56490,observation-498446eb-8243-4177-aae9-4b230c2dc1d6-6,https://biolit.fr/observations/observation-498446eb-8243-4177-aae9-4b230c2dc1d6-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151108_110601.jpg,,FALSE, +N1,61356,sortie-498446eb-8243-4177-aae9-4b230c2dc1d6,https://biolit.fr/sorties/sortie-498446eb-8243-4177-aae9-4b230c2dc1d6/,Phil,,11/08/2015,11.000005,11.0:25,48.119817000000,-4.283421000000,,Plonevez Porzay - Finistère,56492,observation-498446eb-8243-4177-aae9-4b230c2dc1d6-7,https://biolit.fr/observations/observation-498446eb-8243-4177-aae9-4b230c2dc1d6-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151108_111008.jpg,,FALSE, +N1,61356,sortie-498446eb-8243-4177-aae9-4b230c2dc1d6,https://biolit.fr/sorties/sortie-498446eb-8243-4177-aae9-4b230c2dc1d6/,Phil,,11/08/2015,11.000005,11.0:25,48.119817000000,-4.283421000000,,Plonevez Porzay - Finistère,56494,observation-498446eb-8243-4177-aae9-4b230c2dc1d6-8,https://biolit.fr/observations/observation-498446eb-8243-4177-aae9-4b230c2dc1d6-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151108_110355.jpg,,FALSE, +N1,61356,sortie-498446eb-8243-4177-aae9-4b230c2dc1d6,https://biolit.fr/sorties/sortie-498446eb-8243-4177-aae9-4b230c2dc1d6/,Phil,,11/08/2015,11.000005,11.0:25,48.119817000000,-4.283421000000,,Plonevez Porzay - Finistère,56496,observation-498446eb-8243-4177-aae9-4b230c2dc1d6-9,https://biolit.fr/observations/observation-498446eb-8243-4177-aae9-4b230c2dc1d6-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151108_110327.jpg,,FALSE, +N1,61356,sortie-498446eb-8243-4177-aae9-4b230c2dc1d6,https://biolit.fr/sorties/sortie-498446eb-8243-4177-aae9-4b230c2dc1d6/,Phil,,11/08/2015,11.000005,11.0:25,48.119817000000,-4.283421000000,,Plonevez Porzay - Finistère,56498,observation-498446eb-8243-4177-aae9-4b230c2dc1d6-10,https://biolit.fr/observations/observation-498446eb-8243-4177-aae9-4b230c2dc1d6-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151108_110317.jpg,,FALSE, +N1,61356,sortie-498446eb-8243-4177-aae9-4b230c2dc1d6,https://biolit.fr/sorties/sortie-498446eb-8243-4177-aae9-4b230c2dc1d6/,Phil,,11/08/2015,11.000005,11.0:25,48.119817000000,-4.283421000000,,Plonevez Porzay - Finistère,56500,observation-498446eb-8243-4177-aae9-4b230c2dc1d6-11,https://biolit.fr/observations/observation-498446eb-8243-4177-aae9-4b230c2dc1d6-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151108_110226.jpg,,FALSE, +N1,61357,sortie-93ce266f-3222-41fa-a3cf-200788160839,https://biolit.fr/sorties/sortie-93ce266f-3222-41fa-a3cf-200788160839/,Phil,,10/31/2015 0:00,17.0:35,17.0000000,47.864130000000,-4.119081000000,,Sainte-Marine - Finistère,56502,observation-93ce266f-3222-41fa-a3cf-200788160839,https://biolit.fr/observations/observation-93ce266f-3222-41fa-a3cf-200788160839/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151031_173322.jpg,,FALSE, +N1,61358,sortie-09f78eb9-d5b9-4c8b-b1d2-539191a69282,https://biolit.fr/sorties/sortie-09f78eb9-d5b9-4c8b-b1d2-539191a69282/,Phil,,11/10/2015,11.0000000,12.0000000,47.896140000000,-3.968777000000,,Kerleven - La Forêt-Fouesnant - Finistère,56504,observation-09f78eb9-d5b9-4c8b-b1d2-539191a69282,https://biolit.fr/observations/observation-09f78eb9-d5b9-4c8b-b1d2-539191a69282/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20151110_115337.jpg,,TRUE, +N1,61359,sortie-c062c9f4-0ecf-472f-a0fb-75cb2b7ea1fc,https://biolit.fr/sorties/sortie-c062c9f4-0ecf-472f-a0fb-75cb2b7ea1fc/,Phil,,11/06/2015,12.0000000,13.0000000,47.797997000000,-4.348903000000,,Penmarc'h - Finistère,56506,observation-c062c9f4-0ecf-472f-a0fb-75cb2b7ea1fc,https://biolit.fr/observations/observation-c062c9f4-0ecf-472f-a0fb-75cb2b7ea1fc/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_124803.jpg,,FALSE, +N1,61359,sortie-c062c9f4-0ecf-472f-a0fb-75cb2b7ea1fc,https://biolit.fr/sorties/sortie-c062c9f4-0ecf-472f-a0fb-75cb2b7ea1fc/,Phil,,11/06/2015,12.0000000,13.0000000,47.797997000000,-4.348903000000,,Penmarc'h - Finistère,56508,observation-c062c9f4-0ecf-472f-a0fb-75cb2b7ea1fc-2,https://biolit.fr/observations/observation-c062c9f4-0ecf-472f-a0fb-75cb2b7ea1fc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_124817.jpg,,FALSE, +N1,61360,sortie-c7fae750-26f4-4d84-a80c-06024929b605,https://biolit.fr/sorties/sortie-c7fae750-26f4-4d84-a80c-06024929b605/,Phil,,11/08/2015,11.0:55,12.000005,48.136381000000,-4.274593000000,,Sainte-Anne La Palud - Finistère,56510,observation-c7fae750-26f4-4d84-a80c-06024929b605,https://biolit.fr/observations/observation-c7fae750-26f4-4d84-a80c-06024929b605/,Arenicola marina,Arénicole,,https://biolit.fr/wp-content/uploads/2023/07/20151108_115537.jpg,,TRUE, +N1,61360,sortie-c7fae750-26f4-4d84-a80c-06024929b605,https://biolit.fr/sorties/sortie-c7fae750-26f4-4d84-a80c-06024929b605/,Phil,,11/08/2015,11.0:55,12.000005,48.136381000000,-4.274593000000,,Sainte-Anne La Palud - Finistère,56512,observation-c7fae750-26f4-4d84-a80c-06024929b605-2,https://biolit.fr/observations/observation-c7fae750-26f4-4d84-a80c-06024929b605-2/,Arenicola marina,Arénicole,,https://biolit.fr/wp-content/uploads/2023/07/20151108_115506.jpg,,TRUE, +N1,61360,sortie-c7fae750-26f4-4d84-a80c-06024929b605,https://biolit.fr/sorties/sortie-c7fae750-26f4-4d84-a80c-06024929b605/,Phil,,11/08/2015,11.0:55,12.000005,48.136381000000,-4.274593000000,,Sainte-Anne La Palud - Finistère,56514,observation-c7fae750-26f4-4d84-a80c-06024929b605-3,https://biolit.fr/observations/observation-c7fae750-26f4-4d84-a80c-06024929b605-3/,Arenicola marina,Arénicole,,https://biolit.fr/wp-content/uploads/2023/07/20151108_115438.jpg,,TRUE, +N1,61361,sortie-01006f19-682d-497a-ac27-b4af0434af22,https://biolit.fr/sorties/sortie-01006f19-682d-497a-ac27-b4af0434af22/,Phil,,11/06/2015,12.0:15,12.0:25,47.791239000000,-4.276260000000,,Léchiagat - Finistère,56516,observation-01006f19-682d-497a-ac27-b4af0434af22,https://biolit.fr/observations/observation-01006f19-682d-497a-ac27-b4af0434af22/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_122056.jpg,,FALSE, +N1,61361,sortie-01006f19-682d-497a-ac27-b4af0434af22,https://biolit.fr/sorties/sortie-01006f19-682d-497a-ac27-b4af0434af22/,Phil,,11/06/2015,12.0:15,12.0:25,47.791239000000,-4.276260000000,,Léchiagat - Finistère,56518,observation-01006f19-682d-497a-ac27-b4af0434af22-2,https://biolit.fr/observations/observation-01006f19-682d-497a-ac27-b4af0434af22-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_121907.jpg,,FALSE, +N1,61361,sortie-01006f19-682d-497a-ac27-b4af0434af22,https://biolit.fr/sorties/sortie-01006f19-682d-497a-ac27-b4af0434af22/,Phil,,11/06/2015,12.0:15,12.0:25,47.791239000000,-4.276260000000,,Léchiagat - Finistère,56520,observation-01006f19-682d-497a-ac27-b4af0434af22-3,https://biolit.fr/observations/observation-01006f19-682d-497a-ac27-b4af0434af22-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_121853.jpg,,FALSE, +N1,61362,sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18,https://biolit.fr/sorties/sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18/,Phil,,11/06/2015,11.0000000,11.0:55,47.792006000000,-4.290004000000,,Le Guilvinec - 29 Finistère,56522,observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18,https://biolit.fr/observations/observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_113841.jpg,,FALSE, +N1,61362,sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18,https://biolit.fr/sorties/sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18/,Phil,,11/06/2015,11.0000000,11.0:55,47.792006000000,-4.290004000000,,Le Guilvinec - 29 Finistère,56524,observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-2,https://biolit.fr/observations/observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_113845.jpg,,FALSE, +N1,61362,sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18,https://biolit.fr/sorties/sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18/,Phil,,11/06/2015,11.0000000,11.0:55,47.792006000000,-4.290004000000,,Le Guilvinec - 29 Finistère,56526,observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-3,https://biolit.fr/observations/observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_113921.jpg,,FALSE, +N1,61362,sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18,https://biolit.fr/sorties/sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18/,Phil,,11/06/2015,11.0000000,11.0:55,47.792006000000,-4.290004000000,,Le Guilvinec - 29 Finistère,56528,observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-4,https://biolit.fr/observations/observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_114041.jpg,,FALSE, +N1,61362,sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18,https://biolit.fr/sorties/sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18/,Phil,,11/06/2015,11.0000000,11.0:55,47.792006000000,-4.290004000000,,Le Guilvinec - 29 Finistère,56530,observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-5,https://biolit.fr/observations/observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_114103.jpg,,FALSE, +N1,61362,sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18,https://biolit.fr/sorties/sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18/,Phil,,11/06/2015,11.0000000,11.0:55,47.792006000000,-4.290004000000,,Le Guilvinec - 29 Finistère,56532,observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-6,https://biolit.fr/observations/observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_114250.jpg,,FALSE, +N1,61362,sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18,https://biolit.fr/sorties/sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18/,Phil,,11/06/2015,11.0000000,11.0:55,47.792006000000,-4.290004000000,,Le Guilvinec - 29 Finistère,56534,observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-7,https://biolit.fr/observations/observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_114625.jpg,,FALSE, +N1,61362,sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18,https://biolit.fr/sorties/sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18/,Phil,,11/06/2015,11.0000000,11.0:55,47.792006000000,-4.290004000000,,Le Guilvinec - 29 Finistère,56536,observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-8,https://biolit.fr/observations/observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_114645.jpg,,FALSE, +N1,61362,sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18,https://biolit.fr/sorties/sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18/,Phil,,11/06/2015,11.0000000,11.0:55,47.792006000000,-4.290004000000,,Le Guilvinec - 29 Finistère,56538,observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-9,https://biolit.fr/observations/observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_114659.jpg,,FALSE, +N1,61362,sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18,https://biolit.fr/sorties/sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18/,Phil,,11/06/2015,11.0000000,11.0:55,47.792006000000,-4.290004000000,,Le Guilvinec - 29 Finistère,56540,observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-10,https://biolit.fr/observations/observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_114802.jpg,,FALSE, +N1,61362,sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18,https://biolit.fr/sorties/sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18/,Phil,,11/06/2015,11.0000000,11.0:55,47.792006000000,-4.290004000000,,Le Guilvinec - 29 Finistère,56542,observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-11,https://biolit.fr/observations/observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_114831.jpg,,FALSE, +N1,61362,sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18,https://biolit.fr/sorties/sortie-c8e0b0e1-f474-47b2-bda8-750b8278ca18/,Phil,,11/06/2015,11.0000000,11.0:55,47.792006000000,-4.290004000000,,Le Guilvinec - 29 Finistère,56544,observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-12,https://biolit.fr/observations/observation-c8e0b0e1-f474-47b2-bda8-750b8278ca18-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151106_115409.jpg,,FALSE, +N1,61363,sortie-35ad0716-9c34-4b35-b44c-8896bea9b605,https://biolit.fr/sorties/sortie-35ad0716-9c34-4b35-b44c-8896bea9b605/,Planète Mer,,11/05/2015,10.0000000,13.0000000,43.406707000000,5.056019000000,,Canal de Martigues,56546,observation-35ad0716-9c34-4b35-b44c-8896bea9b605,https://biolit.fr/observations/observation-35ad0716-9c34-4b35-b44c-8896bea9b605/,Mnemiopsis leidyi,Mnémiopsis,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_2501-rotated.jpg,,TRUE, +N1,61363,sortie-35ad0716-9c34-4b35-b44c-8896bea9b605,https://biolit.fr/sorties/sortie-35ad0716-9c34-4b35-b44c-8896bea9b605/,Planète Mer,,11/05/2015,10.0000000,13.0000000,43.406707000000,5.056019000000,,Canal de Martigues,56548,observation-35ad0716-9c34-4b35-b44c-8896bea9b605-2,https://biolit.fr/observations/observation-35ad0716-9c34-4b35-b44c-8896bea9b605-2/,Mnemiopsis leidyi,Mnémiopsis,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_2502-rotated.jpg,,TRUE, +N1,61363,sortie-35ad0716-9c34-4b35-b44c-8896bea9b605,https://biolit.fr/sorties/sortie-35ad0716-9c34-4b35-b44c-8896bea9b605/,Planète Mer,,11/05/2015,10.0000000,13.0000000,43.406707000000,5.056019000000,,Canal de Martigues,56550,observation-35ad0716-9c34-4b35-b44c-8896bea9b605-3,https://biolit.fr/observations/observation-35ad0716-9c34-4b35-b44c-8896bea9b605-3/,Mnemiopsis leidyi,Mnémiopsis,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_2504-rotated.jpg,,TRUE, +N1,61363,sortie-35ad0716-9c34-4b35-b44c-8896bea9b605,https://biolit.fr/sorties/sortie-35ad0716-9c34-4b35-b44c-8896bea9b605/,Planète Mer,,11/05/2015,10.0000000,13.0000000,43.406707000000,5.056019000000,,Canal de Martigues,56552,observation-35ad0716-9c34-4b35-b44c-8896bea9b605-4,https://biolit.fr/observations/observation-35ad0716-9c34-4b35-b44c-8896bea9b605-4/,Mnemiopsis leidyi,Mnémiopsis,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_2510.JPG,,TRUE, +N1,61363,sortie-35ad0716-9c34-4b35-b44c-8896bea9b605,https://biolit.fr/sorties/sortie-35ad0716-9c34-4b35-b44c-8896bea9b605/,Planète Mer,,11/05/2015,10.0000000,13.0000000,43.406707000000,5.056019000000,,Canal de Martigues,56554,observation-35ad0716-9c34-4b35-b44c-8896bea9b605-5,https://biolit.fr/observations/observation-35ad0716-9c34-4b35-b44c-8896bea9b605-5/,Mnemiopsis leidyi,Mnémiopsis,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMG_2511.JPG,,TRUE, +N1,61364,sortie-b37364ad-794d-4eeb-8d1d-40aae9216045,https://biolit.fr/sorties/sortie-b37364ad-794d-4eeb-8d1d-40aae9216045/,Phil,,11/03/2015,16.0000000,16.0000000,47.868622000000,-4.355075000000,,Treguennec - Finistère,56556,observation-b37364ad-794d-4eeb-8d1d-40aae9216045,https://biolit.fr/observations/observation-b37364ad-794d-4eeb-8d1d-40aae9216045/,Macomangulus tenuis,Telline-papillon,,https://biolit.fr/wp-content/uploads/2023/07/20151103_162038.jpg,,TRUE, +N1,61365,sortie-9056f255-c776-4bed-a476-49e9d18d02d5,https://biolit.fr/sorties/sortie-9056f255-c776-4bed-a476-49e9d18d02d5/,ESTRAN Cité de la Mer,,10/24/2015 0:00,12.0000000,13.0000000,49.928929000000,0.905626000000,,Quiberville,56558,observation-9056f255-c776-4bed-a476-49e9d18d02d5,https://biolit.fr/observations/observation-9056f255-c776-4bed-a476-49e9d18d02d5/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1030645-scaled.jpg,,FALSE, +N1,61366,sortie-1e058c61-039c-4f0a-8c27-52c8498b5cee,https://biolit.fr/sorties/sortie-1e058c61-039c-4f0a-8c27-52c8498b5cee/,Phil,,10/09/2015,17.0:15,17.0:25,47.894387000000,-3.969055000000,,Kerleven - La Forêt-Fouesnant - Finistère,56560,observation-1e058c61-039c-4f0a-8c27-52c8498b5cee,https://biolit.fr/observations/observation-1e058c61-039c-4f0a-8c27-52c8498b5cee/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20151009_171415.jpg,,TRUE, +N1,61366,sortie-1e058c61-039c-4f0a-8c27-52c8498b5cee,https://biolit.fr/sorties/sortie-1e058c61-039c-4f0a-8c27-52c8498b5cee/,Phil,,10/09/2015,17.0:15,17.0:25,47.894387000000,-3.969055000000,,Kerleven - La Forêt-Fouesnant - Finistère,56562,observation-1e058c61-039c-4f0a-8c27-52c8498b5cee-2,https://biolit.fr/observations/observation-1e058c61-039c-4f0a-8c27-52c8498b5cee-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151009_171450-scaled.jpg,,FALSE, +N1,61366,sortie-1e058c61-039c-4f0a-8c27-52c8498b5cee,https://biolit.fr/sorties/sortie-1e058c61-039c-4f0a-8c27-52c8498b5cee/,Phil,,10/09/2015,17.0:15,17.0:25,47.894387000000,-3.969055000000,,Kerleven - La Forêt-Fouesnant - Finistère,56564,observation-1e058c61-039c-4f0a-8c27-52c8498b5cee-3,https://biolit.fr/observations/observation-1e058c61-039c-4f0a-8c27-52c8498b5cee-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151009_171302.jpg,,FALSE, +N1,61367,sortie-01638b36-4b22-4b45-a78f-944c6eb711b5,https://biolit.fr/sorties/sortie-01638b36-4b22-4b45-a78f-944c6eb711b5/,Phil,,10/31/2015 0:00,17.0000000,17.0:35,47.8640860000,-4.119517000000,,Sainte-Marine - Finistère,56566,observation-01638b36-4b22-4b45-a78f-944c6eb711b5,https://biolit.fr/observations/observation-01638b36-4b22-4b45-a78f-944c6eb711b5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151031_173211.jpg,,FALSE, +N1,61368,sortie-3fbd2472-0091-49e6-962e-94138aa2c180,https://biolit.fr/sorties/sortie-3fbd2472-0091-49e6-962e-94138aa2c180/,Phil,,11/03/2015,16.0000000,17.0000000,47.871599000000,-4.359309000000,,Treguennec - Finistère,56568,observation-3fbd2472-0091-49e6-962e-94138aa2c180,https://biolit.fr/observations/observation-3fbd2472-0091-49e6-962e-94138aa2c180/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151103_163154.jpg,,FALSE, +N1,61368,sortie-3fbd2472-0091-49e6-962e-94138aa2c180,https://biolit.fr/sorties/sortie-3fbd2472-0091-49e6-962e-94138aa2c180/,Phil,,11/03/2015,16.0000000,17.0000000,47.871599000000,-4.359309000000,,Treguennec - Finistère,56570,observation-3fbd2472-0091-49e6-962e-94138aa2c180-2,https://biolit.fr/observations/observation-3fbd2472-0091-49e6-962e-94138aa2c180-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151103_163013.jpg,,FALSE, +N1,61368,sortie-3fbd2472-0091-49e6-962e-94138aa2c180,https://biolit.fr/sorties/sortie-3fbd2472-0091-49e6-962e-94138aa2c180/,Phil,,11/03/2015,16.0000000,17.0000000,47.871599000000,-4.359309000000,,Treguennec - Finistère,56572,observation-3fbd2472-0091-49e6-962e-94138aa2c180-3,https://biolit.fr/observations/observation-3fbd2472-0091-49e6-962e-94138aa2c180-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151103_163041-scaled.jpg,,FALSE, +N1,61368,sortie-3fbd2472-0091-49e6-962e-94138aa2c180,https://biolit.fr/sorties/sortie-3fbd2472-0091-49e6-962e-94138aa2c180/,Phil,,11/03/2015,16.0000000,17.0000000,47.871599000000,-4.359309000000,,Treguennec - Finistère,56574,observation-3fbd2472-0091-49e6-962e-94138aa2c180-4,https://biolit.fr/observations/observation-3fbd2472-0091-49e6-962e-94138aa2c180-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151103_163106-scaled.jpg,,FALSE, +N1,61369,sortie-f28111f1-3a28-4748-9372-da2e452fbb8d,https://biolit.fr/sorties/sortie-f28111f1-3a28-4748-9372-da2e452fbb8d/,Phil,,10/09/2015,16.0000000,17.0000000,47.895965000000,-3.967051000000,,Kerleven - La Forêt-Fouesnant - Finistère,56576,observation-f28111f1-3a28-4748-9372-da2e452fbb8d,https://biolit.fr/observations/observation-f28111f1-3a28-4748-9372-da2e452fbb8d/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/20151009_170953.jpg,,TRUE, +N1,61369,sortie-f28111f1-3a28-4748-9372-da2e452fbb8d,https://biolit.fr/sorties/sortie-f28111f1-3a28-4748-9372-da2e452fbb8d/,Phil,,10/09/2015,16.0000000,17.0000000,47.895965000000,-3.967051000000,,Kerleven - La Forêt-Fouesnant - Finistère,56578,observation-f28111f1-3a28-4748-9372-da2e452fbb8d-2,https://biolit.fr/observations/observation-f28111f1-3a28-4748-9372-da2e452fbb8d-2/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20151009_171224.jpg,,TRUE, +N1,61369,sortie-f28111f1-3a28-4748-9372-da2e452fbb8d,https://biolit.fr/sorties/sortie-f28111f1-3a28-4748-9372-da2e452fbb8d/,Phil,,10/09/2015,16.0000000,17.0000000,47.895965000000,-3.967051000000,,Kerleven - La Forêt-Fouesnant - Finistère,56580,observation-f28111f1-3a28-4748-9372-da2e452fbb8d-3,https://biolit.fr/observations/observation-f28111f1-3a28-4748-9372-da2e452fbb8d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151009_165014.jpg,,FALSE, +N1,61369,sortie-f28111f1-3a28-4748-9372-da2e452fbb8d,https://biolit.fr/sorties/sortie-f28111f1-3a28-4748-9372-da2e452fbb8d/,Phil,,10/09/2015,16.0000000,17.0000000,47.895965000000,-3.967051000000,,Kerleven - La Forêt-Fouesnant - Finistère,56582,observation-f28111f1-3a28-4748-9372-da2e452fbb8d-4,https://biolit.fr/observations/observation-f28111f1-3a28-4748-9372-da2e452fbb8d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151009_165101.jpg,,FALSE, +N1,61369,sortie-f28111f1-3a28-4748-9372-da2e452fbb8d,https://biolit.fr/sorties/sortie-f28111f1-3a28-4748-9372-da2e452fbb8d/,Phil,,10/09/2015,16.0000000,17.0000000,47.895965000000,-3.967051000000,,Kerleven - La Forêt-Fouesnant - Finistère,56584,observation-f28111f1-3a28-4748-9372-da2e452fbb8d-5,https://biolit.fr/observations/observation-f28111f1-3a28-4748-9372-da2e452fbb8d-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151009_171124.jpg,,FALSE, +N1,61370,sortie-612e2940-34c6-412a-b080-c9aae74d5bb1,https://biolit.fr/sorties/sortie-612e2940-34c6-412a-b080-c9aae74d5bb1/,Centre de Découverte Mer et Montagne,,11/02/2015,12.0000000,14.0000000,43.692273000000,7.29042000000,,"Plage de la Réserve, Nice",56586,observation-612e2940-34c6-412a-b080-c9aae74d5bb1,https://biolit.fr/observations/observation-612e2940-34c6-412a-b080-c9aae74d5bb1/,,,,https://biolit.fr/wp-content/uploads/2023/07/150930_CN_biolit_ClA (15)-scaled.jpg,,FALSE, +N1,61370,sortie-612e2940-34c6-412a-b080-c9aae74d5bb1,https://biolit.fr/sorties/sortie-612e2940-34c6-412a-b080-c9aae74d5bb1/,Centre de Découverte Mer et Montagne,,11/02/2015,12.0000000,14.0000000,43.692273000000,7.29042000000,,"Plage de la Réserve, Nice",56588,observation-612e2940-34c6-412a-b080-c9aae74d5bb1-2,https://biolit.fr/observations/observation-612e2940-34c6-412a-b080-c9aae74d5bb1-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/150930_CN_biolit_ClA (22)-scaled.jpg,,TRUE, +N1,61371,sortie-3c9520f0-22aa-4c16-8336-68139bceceb9,https://biolit.fr/sorties/sortie-3c9520f0-22aa-4c16-8336-68139bceceb9/,Phil,,10/31/2015 0:00,17.0:25,17.0000000,47.864828000000,-4.122705000000,,Sainte-Marine - Finistère,56590,observation-3c9520f0-22aa-4c16-8336-68139bceceb9,https://biolit.fr/observations/observation-3c9520f0-22aa-4c16-8336-68139bceceb9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151031_173015_1.jpg,,FALSE, +N1,61372,sortie-3d37d2e0-ed57-41e2-8a6f-d5413060628b,https://biolit.fr/sorties/sortie-3d37d2e0-ed57-41e2-8a6f-d5413060628b/,Phil,,10/09/2015,16.0000000,16.0:45,47.894746000000,-3.966309000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,56592,observation-3d37d2e0-ed57-41e2-8a6f-d5413060628b,https://biolit.fr/observations/observation-3d37d2e0-ed57-41e2-8a6f-d5413060628b/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151009_164513.jpg,,FALSE, +N1,61372,sortie-3d37d2e0-ed57-41e2-8a6f-d5413060628b,https://biolit.fr/sorties/sortie-3d37d2e0-ed57-41e2-8a6f-d5413060628b/,Phil,,10/09/2015,16.0000000,16.0:45,47.894746000000,-3.966309000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,56594,observation-3d37d2e0-ed57-41e2-8a6f-d5413060628b-2,https://biolit.fr/observations/observation-3d37d2e0-ed57-41e2-8a6f-d5413060628b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151009_164005.jpg,,FALSE, +N1,61372,sortie-3d37d2e0-ed57-41e2-8a6f-d5413060628b,https://biolit.fr/sorties/sortie-3d37d2e0-ed57-41e2-8a6f-d5413060628b/,Phil,,10/09/2015,16.0000000,16.0:45,47.894746000000,-3.966309000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,56596,observation-3d37d2e0-ed57-41e2-8a6f-d5413060628b-3,https://biolit.fr/observations/observation-3d37d2e0-ed57-41e2-8a6f-d5413060628b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151009_163952.jpg,,FALSE, +N1,61372,sortie-3d37d2e0-ed57-41e2-8a6f-d5413060628b,https://biolit.fr/sorties/sortie-3d37d2e0-ed57-41e2-8a6f-d5413060628b/,Phil,,10/09/2015,16.0000000,16.0:45,47.894746000000,-3.966309000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,56598,observation-3d37d2e0-ed57-41e2-8a6f-d5413060628b-4,https://biolit.fr/observations/observation-3d37d2e0-ed57-41e2-8a6f-d5413060628b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151009_163823-scaled.jpg,,FALSE, +N1,61372,sortie-3d37d2e0-ed57-41e2-8a6f-d5413060628b,https://biolit.fr/sorties/sortie-3d37d2e0-ed57-41e2-8a6f-d5413060628b/,Phil,,10/09/2015,16.0000000,16.0:45,47.894746000000,-3.966309000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,56600,observation-3d37d2e0-ed57-41e2-8a6f-d5413060628b-5,https://biolit.fr/observations/observation-3d37d2e0-ed57-41e2-8a6f-d5413060628b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151009_164422.jpg,,FALSE, +N1,61372,sortie-3d37d2e0-ed57-41e2-8a6f-d5413060628b,https://biolit.fr/sorties/sortie-3d37d2e0-ed57-41e2-8a6f-d5413060628b/,Phil,,10/09/2015,16.0000000,16.0:45,47.894746000000,-3.966309000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,56602,observation-3d37d2e0-ed57-41e2-8a6f-d5413060628b-6,https://biolit.fr/observations/observation-3d37d2e0-ed57-41e2-8a6f-d5413060628b-6/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/2023/07/20151009_164316.jpg,,TRUE, +N1,61372,sortie-3d37d2e0-ed57-41e2-8a6f-d5413060628b,https://biolit.fr/sorties/sortie-3d37d2e0-ed57-41e2-8a6f-d5413060628b/,Phil,,10/09/2015,16.0000000,16.0:45,47.894746000000,-3.966309000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,56604,observation-3d37d2e0-ed57-41e2-8a6f-d5413060628b-7,https://biolit.fr/observations/observation-3d37d2e0-ed57-41e2-8a6f-d5413060628b-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151009_164238.jpg,,FALSE, +N1,61373,sortie-f042f06a-705d-4046-ad7e-4c52694bf903,https://biolit.fr/sorties/sortie-f042f06a-705d-4046-ad7e-4c52694bf903/,Phil,,10/09/2015,17.000005,17.0000000,47.895647000000,-3.966395000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,56606,observation-f042f06a-705d-4046-ad7e-4c52694bf903,https://biolit.fr/observations/observation-f042f06a-705d-4046-ad7e-4c52694bf903/,Dicentrarchus labrax,Bar commun loup,,https://biolit.fr/wp-content/uploads/2023/07/20151009_164702.jpg,,TRUE, +N1,61373,sortie-f042f06a-705d-4046-ad7e-4c52694bf903,https://biolit.fr/sorties/sortie-f042f06a-705d-4046-ad7e-4c52694bf903/,Phil,,10/09/2015,17.000005,17.0000000,47.895647000000,-3.966395000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,56608,observation-f042f06a-705d-4046-ad7e-4c52694bf903-2,https://biolit.fr/observations/observation-f042f06a-705d-4046-ad7e-4c52694bf903-2/,Dicentrarchus labrax,Bar commun loup,,https://biolit.fr/wp-content/uploads/2023/07/20151009_164723.jpg,,TRUE, +N1,61373,sortie-f042f06a-705d-4046-ad7e-4c52694bf903,https://biolit.fr/sorties/sortie-f042f06a-705d-4046-ad7e-4c52694bf903/,Phil,,10/09/2015,17.000005,17.0000000,47.895647000000,-3.966395000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,56610,observation-f042f06a-705d-4046-ad7e-4c52694bf903-3,https://biolit.fr/observations/observation-f042f06a-705d-4046-ad7e-4c52694bf903-3/,Dicentrarchus labrax,Bar commun loup,,https://biolit.fr/wp-content/uploads/2023/07/20151009_164736.jpg,,TRUE, +N1,61373,sortie-f042f06a-705d-4046-ad7e-4c52694bf903,https://biolit.fr/sorties/sortie-f042f06a-705d-4046-ad7e-4c52694bf903/,Phil,,10/09/2015,17.000005,17.0000000,47.895647000000,-3.966395000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,56612,observation-f042f06a-705d-4046-ad7e-4c52694bf903-4,https://biolit.fr/observations/observation-f042f06a-705d-4046-ad7e-4c52694bf903-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151009_164609.jpg,,FALSE, +N1,61374,sortie-7d968dc1-360e-4738-8f3a-c38825179233,https://biolit.fr/sorties/sortie-7d968dc1-360e-4738-8f3a-c38825179233/,Phil,,10/03/2015,13.0000000,13.0:15,47.893278000000,-3.969626000000,,Kerleven - La Forêt-Fouesnant - Finistère,56614,observation-7d968dc1-360e-4738-8f3a-c38825179233,https://biolit.fr/observations/observation-7d968dc1-360e-4738-8f3a-c38825179233/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151003_130128.jpg,,FALSE, +N1,61374,sortie-7d968dc1-360e-4738-8f3a-c38825179233,https://biolit.fr/sorties/sortie-7d968dc1-360e-4738-8f3a-c38825179233/,Phil,,10/03/2015,13.0000000,13.0:15,47.893278000000,-3.969626000000,,Kerleven - La Forêt-Fouesnant - Finistère,56616,observation-7d968dc1-360e-4738-8f3a-c38825179233-2,https://biolit.fr/observations/observation-7d968dc1-360e-4738-8f3a-c38825179233-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151003_130240.jpg,,FALSE, +N1,61374,sortie-7d968dc1-360e-4738-8f3a-c38825179233,https://biolit.fr/sorties/sortie-7d968dc1-360e-4738-8f3a-c38825179233/,Phil,,10/03/2015,13.0000000,13.0:15,47.893278000000,-3.969626000000,,Kerleven - La Forêt-Fouesnant - Finistère,56618,observation-7d968dc1-360e-4738-8f3a-c38825179233-3,https://biolit.fr/observations/observation-7d968dc1-360e-4738-8f3a-c38825179233-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151003_131424-scaled.jpg,,FALSE, +N1,61374,sortie-7d968dc1-360e-4738-8f3a-c38825179233,https://biolit.fr/sorties/sortie-7d968dc1-360e-4738-8f3a-c38825179233/,Phil,,10/03/2015,13.0000000,13.0:15,47.893278000000,-3.969626000000,,Kerleven - La Forêt-Fouesnant - Finistère,56620,observation-7d968dc1-360e-4738-8f3a-c38825179233-4,https://biolit.fr/observations/observation-7d968dc1-360e-4738-8f3a-c38825179233-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151003_131803.jpg,,FALSE, +N1,61374,sortie-7d968dc1-360e-4738-8f3a-c38825179233,https://biolit.fr/sorties/sortie-7d968dc1-360e-4738-8f3a-c38825179233/,Phil,,10/03/2015,13.0000000,13.0:15,47.893278000000,-3.969626000000,,Kerleven - La Forêt-Fouesnant - Finistère,56622,observation-7d968dc1-360e-4738-8f3a-c38825179233-5,https://biolit.fr/observations/observation-7d968dc1-360e-4738-8f3a-c38825179233-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151003_133435.jpg,,FALSE, +N1,61374,sortie-7d968dc1-360e-4738-8f3a-c38825179233,https://biolit.fr/sorties/sortie-7d968dc1-360e-4738-8f3a-c38825179233/,Phil,,10/03/2015,13.0000000,13.0:15,47.893278000000,-3.969626000000,,Kerleven - La Forêt-Fouesnant - Finistère,56624,observation-7d968dc1-360e-4738-8f3a-c38825179233-6,https://biolit.fr/observations/observation-7d968dc1-360e-4738-8f3a-c38825179233-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151003_130845.jpg,,FALSE, +N1,61375,sortie-997f04c9-79d5-4937-9465-c4d0d917577e,https://biolit.fr/sorties/sortie-997f04c9-79d5-4937-9465-c4d0d917577e/,Écoute ta planète,,06/04/2015,15.0000000,16.0000000,43.325712000000,5.054311000000,,Cap Couronne,56626,observation-997f04c9-79d5-4937-9465-c4d0d917577e,https://biolit.fr/observations/observation-997f04c9-79d5-4937-9465-c4d0d917577e/,,,,https://biolit.fr/wp-content/uploads/2023/07/Aplysie fasciee ETAP-scaled.jpg,,FALSE, +N1,61375,sortie-997f04c9-79d5-4937-9465-c4d0d917577e,https://biolit.fr/sorties/sortie-997f04c9-79d5-4937-9465-c4d0d917577e/,Écoute ta planète,,06/04/2015,15.0000000,16.0000000,43.325712000000,5.054311000000,,Cap Couronne,56628,observation-997f04c9-79d5-4937-9465-c4d0d917577e-2,https://biolit.fr/observations/observation-997f04c9-79d5-4937-9465-c4d0d917577e-2/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/Pelagia noctiluca ETAP 1-scaled.jpg,,TRUE, +N1,61375,sortie-997f04c9-79d5-4937-9465-c4d0d917577e,https://biolit.fr/sorties/sortie-997f04c9-79d5-4937-9465-c4d0d917577e/,Écoute ta planète,,06/04/2015,15.0000000,16.0000000,43.325712000000,5.054311000000,,Cap Couronne,56630,observation-997f04c9-79d5-4937-9465-c4d0d917577e-3,https://biolit.fr/observations/observation-997f04c9-79d5-4937-9465-c4d0d917577e-3/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/Pelagia noctiluca ETAP 2-scaled.jpg,,TRUE, +N1,61375,sortie-997f04c9-79d5-4937-9465-c4d0d917577e,https://biolit.fr/sorties/sortie-997f04c9-79d5-4937-9465-c4d0d917577e/,Écoute ta planète,,06/04/2015,15.0000000,16.0000000,43.325712000000,5.054311000000,,Cap Couronne,56632,observation-997f04c9-79d5-4937-9465-c4d0d917577e-4,https://biolit.fr/observations/observation-997f04c9-79d5-4937-9465-c4d0d917577e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/peche a pied 1 ETAP 04-06-15-scaled.jpg,,FALSE, +N1,61375,sortie-997f04c9-79d5-4937-9465-c4d0d917577e,https://biolit.fr/sorties/sortie-997f04c9-79d5-4937-9465-c4d0d917577e/,Écoute ta planète,,06/04/2015,15.0000000,16.0000000,43.325712000000,5.054311000000,,Cap Couronne,56634,observation-997f04c9-79d5-4937-9465-c4d0d917577e-5,https://biolit.fr/observations/observation-997f04c9-79d5-4937-9465-c4d0d917577e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/peche a pied 2 ETAP 04-06-15-scaled.jpg,,FALSE, +N1,61376,sortie-707ca484-dc44-4504-b7b8-15e7538e4034,https://biolit.fr/sorties/sortie-707ca484-dc44-4504-b7b8-15e7538e4034/,Phil,,10/03/2015,13.0:35,13.0:45,47.895654000000,-3.965978000000,,Kerleven - La Forêt-Fouesnant - Finistère,56636,observation-707ca484-dc44-4504-b7b8-15e7538e4034,https://biolit.fr/observations/observation-707ca484-dc44-4504-b7b8-15e7538e4034/,Aplysia depilans,Aplysie visqueuse,,https://biolit.fr/wp-content/uploads/2023/07/20151003_133622.jpg,,TRUE, +N1,61376,sortie-707ca484-dc44-4504-b7b8-15e7538e4034,https://biolit.fr/sorties/sortie-707ca484-dc44-4504-b7b8-15e7538e4034/,Phil,,10/03/2015,13.0:35,13.0:45,47.895654000000,-3.965978000000,,Kerleven - La Forêt-Fouesnant - Finistère,56638,observation-707ca484-dc44-4504-b7b8-15e7538e4034-2,https://biolit.fr/observations/observation-707ca484-dc44-4504-b7b8-15e7538e4034-2/,Aplysia depilans,Aplysie visqueuse,,https://biolit.fr/wp-content/uploads/2023/07/20151003_134023.jpg,,TRUE, +N1,61376,sortie-707ca484-dc44-4504-b7b8-15e7538e4034,https://biolit.fr/sorties/sortie-707ca484-dc44-4504-b7b8-15e7538e4034/,Phil,,10/03/2015,13.0:35,13.0:45,47.895654000000,-3.965978000000,,Kerleven - La Forêt-Fouesnant - Finistère,56640,observation-707ca484-dc44-4504-b7b8-15e7538e4034-3,https://biolit.fr/observations/observation-707ca484-dc44-4504-b7b8-15e7538e4034-3/,Aplysia depilans,Aplysie visqueuse,,https://biolit.fr/wp-content/uploads/2023/07/20151003_133530.jpg,,TRUE, +N1,61376,sortie-707ca484-dc44-4504-b7b8-15e7538e4034,https://biolit.fr/sorties/sortie-707ca484-dc44-4504-b7b8-15e7538e4034/,Phil,,10/03/2015,13.0:35,13.0:45,47.895654000000,-3.965978000000,,Kerleven - La Forêt-Fouesnant - Finistère,56642,observation-707ca484-dc44-4504-b7b8-15e7538e4034-4,https://biolit.fr/observations/observation-707ca484-dc44-4504-b7b8-15e7538e4034-4/,Aplysia depilans,Aplysie visqueuse,,https://biolit.fr/wp-content/uploads/2023/07/20151003_133853.jpg,,TRUE, +N1,61376,sortie-707ca484-dc44-4504-b7b8-15e7538e4034,https://biolit.fr/sorties/sortie-707ca484-dc44-4504-b7b8-15e7538e4034/,Phil,,10/03/2015,13.0:35,13.0:45,47.895654000000,-3.965978000000,,Kerleven - La Forêt-Fouesnant - Finistère,56644,observation-707ca484-dc44-4504-b7b8-15e7538e4034-5,https://biolit.fr/observations/observation-707ca484-dc44-4504-b7b8-15e7538e4034-5/,Aplysia depilans,Aplysie visqueuse,,https://biolit.fr/wp-content/uploads/2023/07/20151003_133905.jpg,,TRUE, +N1,61376,sortie-707ca484-dc44-4504-b7b8-15e7538e4034,https://biolit.fr/sorties/sortie-707ca484-dc44-4504-b7b8-15e7538e4034/,Phil,,10/03/2015,13.0:35,13.0:45,47.895654000000,-3.965978000000,,Kerleven - La Forêt-Fouesnant - Finistère,56646,observation-707ca484-dc44-4504-b7b8-15e7538e4034-6,https://biolit.fr/observations/observation-707ca484-dc44-4504-b7b8-15e7538e4034-6/,Aplysia depilans,Aplysie visqueuse,,https://biolit.fr/wp-content/uploads/2023/07/20151003_134238.jpg,,TRUE, +N1,61377,sortie-ac2b89ea-c95e-4bb6-a284-540171022acf,https://biolit.fr/sorties/sortie-ac2b89ea-c95e-4bb6-a284-540171022acf/,Phil,,10/17/2015 0:00,19.0:25,19.0000000,47.894563000000,-3.972948000000,,Port la Forêt - La Forêt-Fouesnant - Finistère,56648,observation-ac2b89ea-c95e-4bb6-a284-540171022acf,https://biolit.fr/observations/observation-ac2b89ea-c95e-4bb6-a284-540171022acf/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20151017_192727.jpg,,TRUE, +N1,61377,sortie-ac2b89ea-c95e-4bb6-a284-540171022acf,https://biolit.fr/sorties/sortie-ac2b89ea-c95e-4bb6-a284-540171022acf/,Phil,,10/17/2015 0:00,19.0:25,19.0000000,47.894563000000,-3.972948000000,,Port la Forêt - La Forêt-Fouesnant - Finistère,56650,observation-ac2b89ea-c95e-4bb6-a284-540171022acf-2,https://biolit.fr/observations/observation-ac2b89ea-c95e-4bb6-a284-540171022acf-2/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20151017_192850-scaled.jpg,,TRUE, +N1,61377,sortie-ac2b89ea-c95e-4bb6-a284-540171022acf,https://biolit.fr/sorties/sortie-ac2b89ea-c95e-4bb6-a284-540171022acf/,Phil,,10/17/2015 0:00,19.0:25,19.0000000,47.894563000000,-3.972948000000,,Port la Forêt - La Forêt-Fouesnant - Finistère,56652,observation-ac2b89ea-c95e-4bb6-a284-540171022acf-3,https://biolit.fr/observations/observation-ac2b89ea-c95e-4bb6-a284-540171022acf-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151017_192607.jpg,,FALSE, +N1,61378,sortie-64744ed2-8eb1-48e2-a990-6d4ae332534b,https://biolit.fr/sorties/sortie-64744ed2-8eb1-48e2-a990-6d4ae332534b/,Phil,,10/17/2015 0:00,19.0:15,19.0:25,47.895037000000,-3.973441000000,,Port la Forêt - La Forêt-Fouesnant - Finistère,56654,observation-64744ed2-8eb1-48e2-a990-6d4ae332534b,https://biolit.fr/observations/observation-64744ed2-8eb1-48e2-a990-6d4ae332534b/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151017_192331-scaled.jpg,,FALSE, +N1,61378,sortie-64744ed2-8eb1-48e2-a990-6d4ae332534b,https://biolit.fr/sorties/sortie-64744ed2-8eb1-48e2-a990-6d4ae332534b/,Phil,,10/17/2015 0:00,19.0:15,19.0:25,47.895037000000,-3.973441000000,,Port la Forêt - La Forêt-Fouesnant - Finistère,56656,observation-64744ed2-8eb1-48e2-a990-6d4ae332534b-2,https://biolit.fr/observations/observation-64744ed2-8eb1-48e2-a990-6d4ae332534b-2/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151017_192421-scaled.jpg,,TRUE, +N1,61379,sortie-627ddccd-f116-4f29-87ca-388d4a4b30ed,https://biolit.fr/sorties/sortie-627ddccd-f116-4f29-87ca-388d4a4b30ed/,Phil,,10/17/2015 0:00,19.000005,19.0000000,47.895992000000,-3.974639000000,,Port la Forêt - La Forêt-Fouesnant - Finistère,56658,observation-627ddccd-f116-4f29-87ca-388d4a4b30ed,https://biolit.fr/observations/observation-627ddccd-f116-4f29-87ca-388d4a4b30ed/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151017_190836-scaled.jpg,,FALSE, +N1,61379,sortie-627ddccd-f116-4f29-87ca-388d4a4b30ed,https://biolit.fr/sorties/sortie-627ddccd-f116-4f29-87ca-388d4a4b30ed/,Phil,,10/17/2015 0:00,19.000005,19.0000000,47.895992000000,-3.974639000000,,Port la Forêt - La Forêt-Fouesnant - Finistère,56660,observation-627ddccd-f116-4f29-87ca-388d4a4b30ed-2,https://biolit.fr/observations/observation-627ddccd-f116-4f29-87ca-388d4a4b30ed-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151017_191035-scaled.jpg,,FALSE, +N1,61379,sortie-627ddccd-f116-4f29-87ca-388d4a4b30ed,https://biolit.fr/sorties/sortie-627ddccd-f116-4f29-87ca-388d4a4b30ed/,Phil,,10/17/2015 0:00,19.000005,19.0000000,47.895992000000,-3.974639000000,,Port la Forêt - La Forêt-Fouesnant - Finistère,56662,observation-627ddccd-f116-4f29-87ca-388d4a4b30ed-3,https://biolit.fr/observations/observation-627ddccd-f116-4f29-87ca-388d4a4b30ed-3/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20151017_190930.jpg,,TRUE, +N1,61380,sortie-949abdea-a0b9-4ab8-8b77-76a8b7d73e98,https://biolit.fr/sorties/sortie-949abdea-a0b9-4ab8-8b77-76a8b7d73e98/,Phil,,10/03/2015,13.0000000,13.0000000,47.894948000000,-3.969374000000,,Kerleven - La Forêt-Fouesnant - Finistère,56664,observation-949abdea-a0b9-4ab8-8b77-76a8b7d73e98,https://biolit.fr/observations/observation-949abdea-a0b9-4ab8-8b77-76a8b7d73e98/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151003_132522.jpg,,FALSE, +N1,61380,sortie-949abdea-a0b9-4ab8-8b77-76a8b7d73e98,https://biolit.fr/sorties/sortie-949abdea-a0b9-4ab8-8b77-76a8b7d73e98/,Phil,,10/03/2015,13.0000000,13.0000000,47.894948000000,-3.969374000000,,Kerleven - La Forêt-Fouesnant - Finistère,56666,observation-949abdea-a0b9-4ab8-8b77-76a8b7d73e98-2,https://biolit.fr/observations/observation-949abdea-a0b9-4ab8-8b77-76a8b7d73e98-2/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/20151003_132922.jpg,,TRUE, +N1,61380,sortie-949abdea-a0b9-4ab8-8b77-76a8b7d73e98,https://biolit.fr/sorties/sortie-949abdea-a0b9-4ab8-8b77-76a8b7d73e98/,Phil,,10/03/2015,13.0000000,13.0000000,47.894948000000,-3.969374000000,,Kerleven - La Forêt-Fouesnant - Finistère,56668,observation-949abdea-a0b9-4ab8-8b77-76a8b7d73e98-3,https://biolit.fr/observations/observation-949abdea-a0b9-4ab8-8b77-76a8b7d73e98-3/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/2023/07/20151003_133038.jpg,,TRUE, +N1,61381,sortie-f2f68549-1ab8-4df2-be88-e0b97bd2e647,https://biolit.fr/sorties/sortie-f2f68549-1ab8-4df2-be88-e0b97bd2e647/,aventure aquatique,,05/08/2015,10.0000000,11.0000000,43.08709100000,6.020995000000,,"le pradet, plage des oursinières",56670,observation-f2f68549-1ab8-4df2-be88-e0b97bd2e647,https://biolit.fr/observations/observation-f2f68549-1ab8-4df2-be88-e0b97bd2e647/,Acetabularia acetabulum,Acétabulaire,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0781-scaled.jpg,,TRUE, +N1,61382,sortie-34fdd00a-cb40-49ca-8e49-7eda1e1c3315,https://biolit.fr/sorties/sortie-34fdd00a-cb40-49ca-8e49-7eda1e1c3315/,aventure aquatique,,05/08/2015,10.0000000,11.0000000,43.087036000000,6.020920000000,,"le pradet, plage des oursinières",56672,observation-34fdd00a-cb40-49ca-8e49-7eda1e1c3315,https://biolit.fr/observations/observation-34fdd00a-cb40-49ca-8e49-7eda1e1c3315/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0771-scaled.jpg,,TRUE, +N1,61383,sortie-c3022fb5-b595-4fe4-a67f-19652c249dfe,https://biolit.fr/sorties/sortie-c3022fb5-b595-4fe4-a67f-19652c249dfe/,aventure aquatique,,05/08/2015,10.0000000,11.0000000,43.087318000000,6.020920000000,,"le pradet, plage des oursinières",56674,observation-c3022fb5-b595-4fe4-a67f-19652c249dfe,https://biolit.fr/observations/observation-c3022fb5-b595-4fe4-a67f-19652c249dfe/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0769-scaled.jpg,,FALSE, +N1,61384,sortie-049e049f-acce-42d4-9a88-6e850dd6efe9,https://biolit.fr/sorties/sortie-049e049f-acce-42d4-9a88-6e850dd6efe9/,aventure aquatique,,05/08/2015,10.0000000,11.0000000,43.087193000000,6.020877000000,,"la pradet, plage des orusinières",56676,observation-049e049f-acce-42d4-9a88-6e850dd6efe9,https://biolit.fr/observations/observation-049e049f-acce-42d4-9a88-6e850dd6efe9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0757-scaled.jpg,,FALSE, +N1,61385,sortie-fbf1d0ed-9bff-4b5d-8ab3-66f08c48450e,https://biolit.fr/sorties/sortie-fbf1d0ed-9bff-4b5d-8ab3-66f08c48450e/,aventure aquatique,,05/08/2015,10.0000000,11.0000000,43.087287000000,6.02087700000,,"le pradet, plage des oursinières",56678,observation-fbf1d0ed-9bff-4b5d-8ab3-66f08c48450e,https://biolit.fr/observations/observation-fbf1d0ed-9bff-4b5d-8ab3-66f08c48450e/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0753_0-scaled.jpg,,FALSE, +N1,61386,sortie-ae90d894-158e-488d-b59e-a06daa7515e7,https://biolit.fr/sorties/sortie-ae90d894-158e-488d-b59e-a06daa7515e7/,aventure aquatique,,05/08/2015,10.0000000,11.0000000,43.087161000000,6.020920000000,,"le pradet, plage des oursinières",56680,observation-ae90d894-158e-488d-b59e-a06daa7515e7,https://biolit.fr/observations/observation-ae90d894-158e-488d-b59e-a06daa7515e7/,Diplodus sargus,Sar commun de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0749-scaled.jpg,,TRUE, +N1,61387,sortie-3ddc383f-6f76-40c3-957b-2002a427a11c,https://biolit.fr/sorties/sortie-3ddc383f-6f76-40c3-957b-2002a427a11c/,aventure aquatique,,05/08/2015,10.0000000,11.0000000,43.087036000000,6.021049000000,,"le pradet, plage des oursinières",56682,observation-3ddc383f-6f76-40c3-957b-2002a427a11c,https://biolit.fr/observations/observation-3ddc383f-6f76-40c3-957b-2002a427a11c/,Coris julis,Girelle commune,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0747-scaled.jpg,,TRUE, +N1,61388,sortie-8f2971a6-ef60-41ec-ac0c-5fa0f5f43eeb,https://biolit.fr/sorties/sortie-8f2971a6-ef60-41ec-ac0c-5fa0f5f43eeb/,aventure aquatique,,05/08/2015,10.0000000,11.0000000,43.087036000000,6.020877000000,,"le pradet, plage des oursinières",56684,observation-8f2971a6-ef60-41ec-ac0c-5fa0f5f43eeb,https://biolit.fr/observations/observation-8f2971a6-ef60-41ec-ac0c-5fa0f5f43eeb/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0751-scaled.jpg,,TRUE, +N1,61389,sortie-4f208818-d1b2-48d2-be67-498a5ed32714,https://biolit.fr/sorties/sortie-4f208818-d1b2-48d2-be67-498a5ed32714/,aventure aquatique,,05/08/2015,10.0000000,11.0000000,43.087036000000,6.020920000000,,"le pradet, plage des oursinières",56686,observation-4f208818-d1b2-48d2-be67-498a5ed32714,https://biolit.fr/observations/observation-4f208818-d1b2-48d2-be67-498a5ed32714/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0773-scaled.jpg,,FALSE, +N1,61390,sortie-7c25764b-21ab-4e48-9f0c-3bed4f4967f8,https://biolit.fr/sorties/sortie-7c25764b-21ab-4e48-9f0c-3bed4f4967f8/,aventure aquatique,,05/08/2015,10.0000000,11.0000000,43.087005000000,6.020920000000,,"le pradet, plage des oursinières",56688,observation-7c25764b-21ab-4e48-9f0c-3bed4f4967f8,https://biolit.fr/observations/observation-7c25764b-21ab-4e48-9f0c-3bed4f4967f8/,Echinaster (Echinaster) sepositus,Etoile de mer rouge,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0743-scaled.jpg,,TRUE, +N1,61391,sortie-89aa372b-94e8-40ee-9507-12dba5e30b57,https://biolit.fr/sorties/sortie-89aa372b-94e8-40ee-9507-12dba5e30b57/,aventure aquatique,,05/07/2015,13.0000000,15.0000000,43.146278000000,5.707820000000,,port d'alon,56690,observation-89aa372b-94e8-40ee-9507-12dba5e30b57,https://biolit.fr/observations/observation-89aa372b-94e8-40ee-9507-12dba5e30b57/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0896-scaled.jpg,,FALSE, +N1,61392,sortie-0612767a-a09b-430f-b4a6-05c1ab62c2dc,https://biolit.fr/sorties/sortie-0612767a-a09b-430f-b4a6-05c1ab62c2dc/,Phil,,07/04/2015,12.0000000,12.0000000,47.837294000000,-4.347468000000,,Pointe de la Torche - Plomeur - Finistère,56692,observation-0612767a-a09b-430f-b4a6-05c1ab62c2dc,https://biolit.fr/observations/observation-0612767a-a09b-430f-b4a6-05c1ab62c2dc/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_122115-scaled.jpg,,FALSE, +N1,61392,sortie-0612767a-a09b-430f-b4a6-05c1ab62c2dc,https://biolit.fr/sorties/sortie-0612767a-a09b-430f-b4a6-05c1ab62c2dc/,Phil,,07/04/2015,12.0000000,12.0000000,47.837294000000,-4.347468000000,,Pointe de la Torche - Plomeur - Finistère,56694,observation-0612767a-a09b-430f-b4a6-05c1ab62c2dc-2,https://biolit.fr/observations/observation-0612767a-a09b-430f-b4a6-05c1ab62c2dc-2/,Matthiola sinuata,Giroflée des dunes,,https://biolit.fr/wp-content/uploads/2023/07/20150704_122040-scaled.jpg,,TRUE, +N1,61392,sortie-0612767a-a09b-430f-b4a6-05c1ab62c2dc,https://biolit.fr/sorties/sortie-0612767a-a09b-430f-b4a6-05c1ab62c2dc/,Phil,,07/04/2015,12.0000000,12.0000000,47.837294000000,-4.347468000000,,Pointe de la Torche - Plomeur - Finistère,56696,observation-0612767a-a09b-430f-b4a6-05c1ab62c2dc-3,https://biolit.fr/observations/observation-0612767a-a09b-430f-b4a6-05c1ab62c2dc-3/,Matthiola sinuata,Giroflée des dunes,,https://biolit.fr/wp-content/uploads/2023/07/20150704_122156-scaled.jpg,,TRUE, +N1,61392,sortie-0612767a-a09b-430f-b4a6-05c1ab62c2dc,https://biolit.fr/sorties/sortie-0612767a-a09b-430f-b4a6-05c1ab62c2dc/,Phil,,07/04/2015,12.0000000,12.0000000,47.837294000000,-4.347468000000,,Pointe de la Torche - Plomeur - Finistère,56698,observation-0612767a-a09b-430f-b4a6-05c1ab62c2dc-4,https://biolit.fr/observations/observation-0612767a-a09b-430f-b4a6-05c1ab62c2dc-4/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/20150704_122212-scaled.jpg,,TRUE, +N1,61392,sortie-0612767a-a09b-430f-b4a6-05c1ab62c2dc,https://biolit.fr/sorties/sortie-0612767a-a09b-430f-b4a6-05c1ab62c2dc/,Phil,,07/04/2015,12.0000000,12.0000000,47.837294000000,-4.347468000000,,Pointe de la Torche - Plomeur - Finistère,56700,observation-0612767a-a09b-430f-b4a6-05c1ab62c2dc-5,https://biolit.fr/observations/observation-0612767a-a09b-430f-b4a6-05c1ab62c2dc-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150710_123230-scaled.jpg,,FALSE, +N1,61392,sortie-0612767a-a09b-430f-b4a6-05c1ab62c2dc,https://biolit.fr/sorties/sortie-0612767a-a09b-430f-b4a6-05c1ab62c2dc/,Phil,,07/04/2015,12.0000000,12.0000000,47.837294000000,-4.347468000000,,Pointe de la Torche - Plomeur - Finistère,56702,observation-0612767a-a09b-430f-b4a6-05c1ab62c2dc-6,https://biolit.fr/observations/observation-0612767a-a09b-430f-b4a6-05c1ab62c2dc-6/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/2023/07/20150704_122309-scaled.jpg,,TRUE, +N1,61392,sortie-0612767a-a09b-430f-b4a6-05c1ab62c2dc,https://biolit.fr/sorties/sortie-0612767a-a09b-430f-b4a6-05c1ab62c2dc/,Phil,,07/04/2015,12.0000000,12.0000000,47.837294000000,-4.347468000000,,Pointe de la Torche - Plomeur - Finistère,56704,observation-0612767a-a09b-430f-b4a6-05c1ab62c2dc-7,https://biolit.fr/observations/observation-0612767a-a09b-430f-b4a6-05c1ab62c2dc-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_122339-scaled.jpg,,FALSE, +N1,61392,sortie-0612767a-a09b-430f-b4a6-05c1ab62c2dc,https://biolit.fr/sorties/sortie-0612767a-a09b-430f-b4a6-05c1ab62c2dc/,Phil,,07/04/2015,12.0000000,12.0000000,47.837294000000,-4.347468000000,,Pointe de la Torche - Plomeur - Finistère,56706,observation-0612767a-a09b-430f-b4a6-05c1ab62c2dc-8,https://biolit.fr/observations/observation-0612767a-a09b-430f-b4a6-05c1ab62c2dc-8/,Lagurus ovatus,Queue de lièvre,,https://biolit.fr/wp-content/uploads/2023/07/20150704_122316.jpg,,TRUE, +N1,61393,sortie-997042da-fc11-427c-aebf-7c1068551370,https://biolit.fr/sorties/sortie-997042da-fc11-427c-aebf-7c1068551370/,Phil,,10/03/2015,13.0:15,13.0000000,47.894207000000,-3.970536000000,,Kerleven - La Forêt-Fouesnant - Finistère,56708,observation-997042da-fc11-427c-aebf-7c1068551370,https://biolit.fr/observations/observation-997042da-fc11-427c-aebf-7c1068551370/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151003_131624.jpg,,TRUE, +N1,61393,sortie-997042da-fc11-427c-aebf-7c1068551370,https://biolit.fr/sorties/sortie-997042da-fc11-427c-aebf-7c1068551370/,Phil,,10/03/2015,13.0:15,13.0000000,47.894207000000,-3.970536000000,,Kerleven - La Forêt-Fouesnant - Finistère,56710,observation-997042da-fc11-427c-aebf-7c1068551370-2,https://biolit.fr/observations/observation-997042da-fc11-427c-aebf-7c1068551370-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20151003_131700.jpg,,FALSE, +N1,61393,sortie-997042da-fc11-427c-aebf-7c1068551370,https://biolit.fr/sorties/sortie-997042da-fc11-427c-aebf-7c1068551370/,Phil,,10/03/2015,13.0:15,13.0000000,47.894207000000,-3.970536000000,,Kerleven - La Forêt-Fouesnant - Finistère,56712,observation-997042da-fc11-427c-aebf-7c1068551370-3,https://biolit.fr/observations/observation-997042da-fc11-427c-aebf-7c1068551370-3/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/20151003_131715.jpg,,TRUE, +N1,61393,sortie-997042da-fc11-427c-aebf-7c1068551370,https://biolit.fr/sorties/sortie-997042da-fc11-427c-aebf-7c1068551370/,Phil,,10/03/2015,13.0:15,13.0000000,47.894207000000,-3.970536000000,,Kerleven - La Forêt-Fouesnant - Finistère,56714,observation-997042da-fc11-427c-aebf-7c1068551370-4,https://biolit.fr/observations/observation-997042da-fc11-427c-aebf-7c1068551370-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151003_131918.jpg,,TRUE, +N1,61393,sortie-997042da-fc11-427c-aebf-7c1068551370,https://biolit.fr/sorties/sortie-997042da-fc11-427c-aebf-7c1068551370/,Phil,,10/03/2015,13.0:15,13.0000000,47.894207000000,-3.970536000000,,Kerleven - La Forêt-Fouesnant - Finistère,56716,observation-997042da-fc11-427c-aebf-7c1068551370-5,https://biolit.fr/observations/observation-997042da-fc11-427c-aebf-7c1068551370-5/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20151003_131929.jpg,,TRUE, +N1,61393,sortie-997042da-fc11-427c-aebf-7c1068551370,https://biolit.fr/sorties/sortie-997042da-fc11-427c-aebf-7c1068551370/,Phil,,10/03/2015,13.0:15,13.0000000,47.894207000000,-3.970536000000,,Kerleven - La Forêt-Fouesnant - Finistère,56718,observation-997042da-fc11-427c-aebf-7c1068551370-6,https://biolit.fr/observations/observation-997042da-fc11-427c-aebf-7c1068551370-6/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20151003_132138.jpg,,TRUE, +N1,61393,sortie-997042da-fc11-427c-aebf-7c1068551370,https://biolit.fr/sorties/sortie-997042da-fc11-427c-aebf-7c1068551370/,Phil,,10/03/2015,13.0:15,13.0000000,47.894207000000,-3.970536000000,,Kerleven - La Forêt-Fouesnant - Finistère,56720,observation-997042da-fc11-427c-aebf-7c1068551370-7,https://biolit.fr/observations/observation-997042da-fc11-427c-aebf-7c1068551370-7/,Euspira catena,Natice porte-chaîne,,https://biolit.fr/wp-content/uploads/2023/07/20151003_133028.jpg,,TRUE, +N1,61394,sortie-b1f129ea-ce64-42f4-b948-2d1f0237a837,https://biolit.fr/sorties/sortie-b1f129ea-ce64-42f4-b948-2d1f0237a837/,Phil,,10/03/2015,12.0:55,13.0000000,47.895994000000,-3.969092000000,,Kerleven - La Forêt-Fouesnant - Finistère,56722,observation-b1f129ea-ce64-42f4-b948-2d1f0237a837,https://biolit.fr/observations/observation-b1f129ea-ce64-42f4-b948-2d1f0237a837/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20151003_125922.jpg,,TRUE, +N1,61394,sortie-b1f129ea-ce64-42f4-b948-2d1f0237a837,https://biolit.fr/sorties/sortie-b1f129ea-ce64-42f4-b948-2d1f0237a837/,Phil,,10/03/2015,12.0:55,13.0000000,47.895994000000,-3.969092000000,,Kerleven - La Forêt-Fouesnant - Finistère,56724,observation-b1f129ea-ce64-42f4-b948-2d1f0237a837-2,https://biolit.fr/observations/observation-b1f129ea-ce64-42f4-b948-2d1f0237a837-2/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20151003_125942.jpg,,TRUE, +N1,61395,sortie-2db88a9b-0790-4317-8336-73a64b8e91e9,https://biolit.fr/sorties/sortie-2db88a9b-0790-4317-8336-73a64b8e91e9/,Marine,,10/04/2015,10.0000000,17.0000000,43.154420000000,6.481775000000,,Baie du Figuier,56726,observation-2db88a9b-0790-4317-8336-73a64b8e91e9,https://biolit.fr/observations/observation-2db88a9b-0790-4317-8336-73a64b8e91e9/,,,,https://biolit.fr/wp-content/uploads/2023/07/PA040015_0-scaled.jpg,,FALSE, +N1,61395,sortie-2db88a9b-0790-4317-8336-73a64b8e91e9,https://biolit.fr/sorties/sortie-2db88a9b-0790-4317-8336-73a64b8e91e9/,Marine,,10/04/2015,10.0000000,17.0000000,43.154420000000,6.481775000000,,Baie du Figuier,56728,observation-2db88a9b-0790-4317-8336-73a64b8e91e9-2,https://biolit.fr/observations/observation-2db88a9b-0790-4317-8336-73a64b8e91e9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/PA040016-scaled.jpg,,FALSE, +N1,61395,sortie-2db88a9b-0790-4317-8336-73a64b8e91e9,https://biolit.fr/sorties/sortie-2db88a9b-0790-4317-8336-73a64b8e91e9/,Marine,,10/04/2015,10.0000000,17.0000000,43.154420000000,6.481775000000,,Baie du Figuier,56730,observation-2db88a9b-0790-4317-8336-73a64b8e91e9-3,https://biolit.fr/observations/observation-2db88a9b-0790-4317-8336-73a64b8e91e9-3/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/PA040020-scaled.jpg,,TRUE, +N1,61396,sortie-8ef217dc-dd4d-460f-a7df-57cc74afd8a6,https://biolit.fr/sorties/sortie-8ef217dc-dd4d-460f-a7df-57cc74afd8a6/,Phil,,9/30/2015 0:00,17.0000000,17.000005,47.834364000000,-4.161316000000,,loctudy - Finistère,56732,observation-8ef217dc-dd4d-460f-a7df-57cc74afd8a6,https://biolit.fr/observations/observation-8ef217dc-dd4d-460f-a7df-57cc74afd8a6/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/20150930_170539.jpg,,TRUE, +N1,61396,sortie-8ef217dc-dd4d-460f-a7df-57cc74afd8a6,https://biolit.fr/sorties/sortie-8ef217dc-dd4d-460f-a7df-57cc74afd8a6/,Phil,,9/30/2015 0:00,17.0000000,17.000005,47.834364000000,-4.161316000000,,loctudy - Finistère,56734,observation-8ef217dc-dd4d-460f-a7df-57cc74afd8a6-2,https://biolit.fr/observations/observation-8ef217dc-dd4d-460f-a7df-57cc74afd8a6-2/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/20150930_170412.jpg,,TRUE, +N1,61396,sortie-8ef217dc-dd4d-460f-a7df-57cc74afd8a6,https://biolit.fr/sorties/sortie-8ef217dc-dd4d-460f-a7df-57cc74afd8a6/,Phil,,9/30/2015 0:00,17.0000000,17.000005,47.834364000000,-4.161316000000,,loctudy - Finistère,56736,observation-8ef217dc-dd4d-460f-a7df-57cc74afd8a6-3,https://biolit.fr/observations/observation-8ef217dc-dd4d-460f-a7df-57cc74afd8a6-3/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/2023/07/20150930_170658.jpg,,TRUE, +N1,61397,sortie-2a09788d-89a8-4197-aba6-4cc97eb93943,https://biolit.fr/sorties/sortie-2a09788d-89a8-4197-aba6-4cc97eb93943/,Phil,,9/30/2015 0:00,16.0:55,17.0000000,47.835067000000,-4.163080000000,,loctudy - Finistère,56738,observation-2a09788d-89a8-4197-aba6-4cc97eb93943,https://biolit.fr/observations/observation-2a09788d-89a8-4197-aba6-4cc97eb93943/,Catenella caespitosa,Caténelle en touffe,,https://biolit.fr/wp-content/uploads/2023/07/20150930_165455.jpg,,TRUE, +N1,61397,sortie-2a09788d-89a8-4197-aba6-4cc97eb93943,https://biolit.fr/sorties/sortie-2a09788d-89a8-4197-aba6-4cc97eb93943/,Phil,,9/30/2015 0:00,16.0:55,17.0000000,47.835067000000,-4.163080000000,,loctudy - Finistère,56740,observation-2a09788d-89a8-4197-aba6-4cc97eb93943-2,https://biolit.fr/observations/observation-2a09788d-89a8-4197-aba6-4cc97eb93943-2/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150930_165429.jpg,,TRUE, +N1,61397,sortie-2a09788d-89a8-4197-aba6-4cc97eb93943,https://biolit.fr/sorties/sortie-2a09788d-89a8-4197-aba6-4cc97eb93943/,Phil,,9/30/2015 0:00,16.0:55,17.0000000,47.835067000000,-4.163080000000,,loctudy - Finistère,56742,observation-2a09788d-89a8-4197-aba6-4cc97eb93943-3,https://biolit.fr/observations/observation-2a09788d-89a8-4197-aba6-4cc97eb93943-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150930_165552.jpg,,FALSE, +N1,61397,sortie-2a09788d-89a8-4197-aba6-4cc97eb93943,https://biolit.fr/sorties/sortie-2a09788d-89a8-4197-aba6-4cc97eb93943/,Phil,,9/30/2015 0:00,16.0:55,17.0000000,47.835067000000,-4.163080000000,,loctudy - Finistère,56744,observation-2a09788d-89a8-4197-aba6-4cc97eb93943-4,https://biolit.fr/observations/observation-2a09788d-89a8-4197-aba6-4cc97eb93943-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20150930_165047.jpg,,TRUE, +N1,61397,sortie-2a09788d-89a8-4197-aba6-4cc97eb93943,https://biolit.fr/sorties/sortie-2a09788d-89a8-4197-aba6-4cc97eb93943/,Phil,,9/30/2015 0:00,16.0:55,17.0000000,47.835067000000,-4.163080000000,,loctudy - Finistère,56746,observation-2a09788d-89a8-4197-aba6-4cc97eb93943-5,https://biolit.fr/observations/observation-2a09788d-89a8-4197-aba6-4cc97eb93943-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150930_165740.jpg,,FALSE, +N1,61397,sortie-2a09788d-89a8-4197-aba6-4cc97eb93943,https://biolit.fr/sorties/sortie-2a09788d-89a8-4197-aba6-4cc97eb93943/,Phil,,9/30/2015 0:00,16.0:55,17.0000000,47.835067000000,-4.163080000000,,loctudy - Finistère,56748,observation-2a09788d-89a8-4197-aba6-4cc97eb93943-6,https://biolit.fr/observations/observation-2a09788d-89a8-4197-aba6-4cc97eb93943-6/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/20150930_170131-scaled.jpg,,TRUE, +N1,61398,sortie-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e,https://biolit.fr/sorties/sortie-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e/,Phil,,9/18/2015 0:00,10.0:25,10.0000000,47.79257800000,-4.293302000000,,Le Guilvinec - 29 Finistère,56750,observation-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e,https://biolit.fr/observations/observation-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150918_102454.jpg,,FALSE, +N1,61398,sortie-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e,https://biolit.fr/sorties/sortie-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e/,Phil,,9/18/2015 0:00,10.0:25,10.0000000,47.79257800000,-4.293302000000,,Le Guilvinec - 29 Finistère,56752,observation-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e-2,https://biolit.fr/observations/observation-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150918_102527.jpg,,FALSE, +N1,61398,sortie-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e,https://biolit.fr/sorties/sortie-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e/,Phil,,9/18/2015 0:00,10.0:25,10.0000000,47.79257800000,-4.293302000000,,Le Guilvinec - 29 Finistère,56754,observation-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e-3,https://biolit.fr/observations/observation-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150918_102539.jpg,,FALSE, +N1,61398,sortie-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e,https://biolit.fr/sorties/sortie-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e/,Phil,,9/18/2015 0:00,10.0:25,10.0000000,47.79257800000,-4.293302000000,,Le Guilvinec - 29 Finistère,56756,observation-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e-4,https://biolit.fr/observations/observation-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e-4/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/20150918_102551.jpg,,TRUE, +N1,61398,sortie-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e,https://biolit.fr/sorties/sortie-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e/,Phil,,9/18/2015 0:00,10.0:25,10.0000000,47.79257800000,-4.293302000000,,Le Guilvinec - 29 Finistère,56758,observation-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e-5,https://biolit.fr/observations/observation-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150918_102556.jpg,,FALSE, +N1,61398,sortie-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e,https://biolit.fr/sorties/sortie-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e/,Phil,,9/18/2015 0:00,10.0:25,10.0000000,47.79257800000,-4.293302000000,,Le Guilvinec - 29 Finistère,56760,observation-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e-6,https://biolit.fr/observations/observation-bc31d2dc-e67e-4f86-b73d-4abeedf49d1e-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150918_102630.jpg,,FALSE, +N1,61399,sortie-fa345ec8-e1e8-432a-ab93-9011bdb06617,https://biolit.fr/sorties/sortie-fa345ec8-e1e8-432a-ab93-9011bdb06617/,Phil,,9/18/2015 0:00,10.0000000,10.0:25,47.791976000000,-4.297196000000,,Le Guilvinec - 29 Finistère,56762,observation-fa345ec8-e1e8-432a-ab93-9011bdb06617,https://biolit.fr/observations/observation-fa345ec8-e1e8-432a-ab93-9011bdb06617/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150918_102206.jpg,,TRUE, +N1,61399,sortie-fa345ec8-e1e8-432a-ab93-9011bdb06617,https://biolit.fr/sorties/sortie-fa345ec8-e1e8-432a-ab93-9011bdb06617/,Phil,,9/18/2015 0:00,10.0000000,10.0:25,47.791976000000,-4.297196000000,,Le Guilvinec - 29 Finistère,56764,observation-fa345ec8-e1e8-432a-ab93-9011bdb06617-2,https://biolit.fr/observations/observation-fa345ec8-e1e8-432a-ab93-9011bdb06617-2/,Lichina pygmaea,Lichen pygmée,,https://biolit.fr/wp-content/uploads/2023/07/20150918_102115.jpg,,TRUE, +N1,61399,sortie-fa345ec8-e1e8-432a-ab93-9011bdb06617,https://biolit.fr/sorties/sortie-fa345ec8-e1e8-432a-ab93-9011bdb06617/,Phil,,9/18/2015 0:00,10.0000000,10.0:25,47.791976000000,-4.297196000000,,Le Guilvinec - 29 Finistère,56766,observation-fa345ec8-e1e8-432a-ab93-9011bdb06617-3,https://biolit.fr/observations/observation-fa345ec8-e1e8-432a-ab93-9011bdb06617-3/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/20150918_101937_0.jpg,,TRUE, +N1,61399,sortie-fa345ec8-e1e8-432a-ab93-9011bdb06617,https://biolit.fr/sorties/sortie-fa345ec8-e1e8-432a-ab93-9011bdb06617/,Phil,,9/18/2015 0:00,10.0000000,10.0:25,47.791976000000,-4.297196000000,,Le Guilvinec - 29 Finistère,56768,observation-fa345ec8-e1e8-432a-ab93-9011bdb06617-4,https://biolit.fr/observations/observation-fa345ec8-e1e8-432a-ab93-9011bdb06617-4/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/20150918_102403.jpg,,TRUE, +N1,61399,sortie-fa345ec8-e1e8-432a-ab93-9011bdb06617,https://biolit.fr/sorties/sortie-fa345ec8-e1e8-432a-ab93-9011bdb06617/,Phil,,9/18/2015 0:00,10.0000000,10.0:25,47.791976000000,-4.297196000000,,Le Guilvinec - 29 Finistère,56770,observation-fa345ec8-e1e8-432a-ab93-9011bdb06617-5,https://biolit.fr/observations/observation-fa345ec8-e1e8-432a-ab93-9011bdb06617-5/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/20150918_102335.jpg,,TRUE, +N1,61399,sortie-fa345ec8-e1e8-432a-ab93-9011bdb06617,https://biolit.fr/sorties/sortie-fa345ec8-e1e8-432a-ab93-9011bdb06617/,Phil,,9/18/2015 0:00,10.0000000,10.0:25,47.791976000000,-4.297196000000,,Le Guilvinec - 29 Finistère,56772,observation-fa345ec8-e1e8-432a-ab93-9011bdb06617-6,https://biolit.fr/observations/observation-fa345ec8-e1e8-432a-ab93-9011bdb06617-6/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/20150918_102240.jpg,,TRUE, +N1,61400,sortie-7318a30a-defc-450b-9647-23b5841720b8,https://biolit.fr/sorties/sortie-7318a30a-defc-450b-9647-23b5841720b8/,Phil,,9/18/2015 0:00,10.0:15,10.0000000,47.792144000000,-4.294999000000,,Le Guilvinec - 29 Finistère,56774,observation-7318a30a-defc-450b-9647-23b5841720b8,https://biolit.fr/observations/observation-7318a30a-defc-450b-9647-23b5841720b8/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/20150918_101928.jpg,,TRUE, +N1,61400,sortie-7318a30a-defc-450b-9647-23b5841720b8,https://biolit.fr/sorties/sortie-7318a30a-defc-450b-9647-23b5841720b8/,Phil,,9/18/2015 0:00,10.0:15,10.0000000,47.792144000000,-4.294999000000,,Le Guilvinec - 29 Finistère,56776,observation-7318a30a-defc-450b-9647-23b5841720b8-2,https://biolit.fr/observations/observation-7318a30a-defc-450b-9647-23b5841720b8-2/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/20150918_101937.jpg,,TRUE, +N1,61401,sortie-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c,https://biolit.fr/sorties/sortie-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c/,Phil,,09/10/2015,11.0000000,12.0000000,47.809648000000,-4.172270000000,,Lodonnec - 29 finistère,56778,observation-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c,https://biolit.fr/observations/observation-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c/,Phymatolithon lenormandii,Algue encroûtante rouge de Lenormand,,https://biolit.fr/wp-content/uploads/2023/07/20150910_113848.jpg,,TRUE, +N1,61401,sortie-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c,https://biolit.fr/sorties/sortie-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c/,Phil,,09/10/2015,11.0000000,12.0000000,47.809648000000,-4.172270000000,,Lodonnec - 29 finistère,56780,observation-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c-2,https://biolit.fr/observations/observation-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c-2/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/2023/07/20150910_113910.jpg,,TRUE, +N1,61401,sortie-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c,https://biolit.fr/sorties/sortie-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c/,Phil,,09/10/2015,11.0000000,12.0000000,47.809648000000,-4.172270000000,,Lodonnec - 29 finistère,56782,observation-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c-3,https://biolit.fr/observations/observation-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150910_115116.jpg,,FALSE, +N1,61401,sortie-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c,https://biolit.fr/sorties/sortie-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c/,Phil,,09/10/2015,11.0000000,12.0000000,47.809648000000,-4.172270000000,,Lodonnec - 29 finistère,56784,observation-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c-4,https://biolit.fr/observations/observation-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150910_121205.jpg,,TRUE, +N1,61401,sortie-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c,https://biolit.fr/sorties/sortie-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c/,Phil,,09/10/2015,11.0000000,12.0000000,47.809648000000,-4.172270000000,,Lodonnec - 29 finistère,56786,observation-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c-5,https://biolit.fr/observations/observation-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150910_121242.jpg,,FALSE, +N1,61401,sortie-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c,https://biolit.fr/sorties/sortie-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c/,Phil,,09/10/2015,11.0000000,12.0000000,47.809648000000,-4.172270000000,,Lodonnec - 29 finistère,56788,observation-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c-6,https://biolit.fr/observations/observation-9d9c2bfb-0a87-4275-8d98-ac37cfb01d8c-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150910_121518.jpg,,FALSE, +N1,61402,sortie-ed7cc27a-9fdf-44e4-a1e1-a0795c309df9,https://biolit.fr/sorties/sortie-ed7cc27a-9fdf-44e4-a1e1-a0795c309df9/,maximee,,10/03/2015,14.0000000,15.0000000,43.15501800000,6.480415000000,,domaine du rayol,56790,observation-ed7cc27a-9fdf-44e4-a1e1-a0795c309df9,https://biolit.fr/observations/observation-ed7cc27a-9fdf-44e4-a1e1-a0795c309df9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0495-scaled.jpg,,FALSE, +N1,61402,sortie-ed7cc27a-9fdf-44e4-a1e1-a0795c309df9,https://biolit.fr/sorties/sortie-ed7cc27a-9fdf-44e4-a1e1-a0795c309df9/,maximee,,10/03/2015,14.0000000,15.0000000,43.15501800000,6.480415000000,,domaine du rayol,56792,observation-ed7cc27a-9fdf-44e4-a1e1-a0795c309df9-2,https://biolit.fr/observations/observation-ed7cc27a-9fdf-44e4-a1e1-a0795c309df9-2/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0494-scaled.jpg,,TRUE, +N1,61403,sortie-127e842f-7cbe-4fec-b5eb-3b2653167eb8,https://biolit.fr/sorties/sortie-127e842f-7cbe-4fec-b5eb-3b2653167eb8/,Phil,,09/10/2015,11.0000000,11.0000000,47.809528000000,-4.171766000000,,Lodonnec - 29 finistère,56794,observation-127e842f-7cbe-4fec-b5eb-3b2653167eb8,https://biolit.fr/observations/observation-127e842f-7cbe-4fec-b5eb-3b2653167eb8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150910_113818-scaled.jpg,,FALSE, +N1,61403,sortie-127e842f-7cbe-4fec-b5eb-3b2653167eb8,https://biolit.fr/sorties/sortie-127e842f-7cbe-4fec-b5eb-3b2653167eb8/,Phil,,09/10/2015,11.0000000,11.0000000,47.809528000000,-4.171766000000,,Lodonnec - 29 finistère,56796,observation-127e842f-7cbe-4fec-b5eb-3b2653167eb8-2,https://biolit.fr/observations/observation-127e842f-7cbe-4fec-b5eb-3b2653167eb8-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150910_113804.jpg,,TRUE, +N1,61403,sortie-127e842f-7cbe-4fec-b5eb-3b2653167eb8,https://biolit.fr/sorties/sortie-127e842f-7cbe-4fec-b5eb-3b2653167eb8/,Phil,,09/10/2015,11.0000000,11.0000000,47.809528000000,-4.171766000000,,Lodonnec - 29 finistère,56798,observation-127e842f-7cbe-4fec-b5eb-3b2653167eb8-3,https://biolit.fr/observations/observation-127e842f-7cbe-4fec-b5eb-3b2653167eb8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150910_113703-scaled.jpg,,FALSE, +N1,61403,sortie-127e842f-7cbe-4fec-b5eb-3b2653167eb8,https://biolit.fr/sorties/sortie-127e842f-7cbe-4fec-b5eb-3b2653167eb8/,Phil,,09/10/2015,11.0000000,11.0000000,47.809528000000,-4.171766000000,,Lodonnec - 29 finistère,56800,observation-127e842f-7cbe-4fec-b5eb-3b2653167eb8-4,https://biolit.fr/observations/observation-127e842f-7cbe-4fec-b5eb-3b2653167eb8-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150910_113711-scaled.jpg,,FALSE, +N1,61403,sortie-127e842f-7cbe-4fec-b5eb-3b2653167eb8,https://biolit.fr/sorties/sortie-127e842f-7cbe-4fec-b5eb-3b2653167eb8/,Phil,,09/10/2015,11.0000000,11.0000000,47.809528000000,-4.171766000000,,Lodonnec - 29 finistère,56802,observation-127e842f-7cbe-4fec-b5eb-3b2653167eb8-5,https://biolit.fr/observations/observation-127e842f-7cbe-4fec-b5eb-3b2653167eb8-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150910_114044-scaled.jpg,,FALSE, +N1,61404,sortie-47111126-5c7c-439e-986b-86ecb8ba8c27,https://biolit.fr/sorties/sortie-47111126-5c7c-439e-986b-86ecb8ba8c27/,Phil,,09/10/2015,11.0000000,11.0000000,47.810086000000,-4.172931000000,,Lodonnec - 29 finistère,56804,observation-47111126-5c7c-439e-986b-86ecb8ba8c27,https://biolit.fr/observations/observation-47111126-5c7c-439e-986b-86ecb8ba8c27/,Rivularia bullata,Rivulaire en forme de bulle,,https://biolit.fr/wp-content/uploads/2023/07/20150910_115351.jpg,,TRUE, +N1,61404,sortie-47111126-5c7c-439e-986b-86ecb8ba8c27,https://biolit.fr/sorties/sortie-47111126-5c7c-439e-986b-86ecb8ba8c27/,Phil,,09/10/2015,11.0000000,11.0000000,47.810086000000,-4.172931000000,,Lodonnec - 29 finistère,56806,observation-47111126-5c7c-439e-986b-86ecb8ba8c27-2,https://biolit.fr/observations/observation-47111126-5c7c-439e-986b-86ecb8ba8c27-2/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20150910_115327.jpg,,TRUE, +N1,61404,sortie-47111126-5c7c-439e-986b-86ecb8ba8c27,https://biolit.fr/sorties/sortie-47111126-5c7c-439e-986b-86ecb8ba8c27/,Phil,,09/10/2015,11.0000000,11.0000000,47.810086000000,-4.172931000000,,Lodonnec - 29 finistère,56808,observation-47111126-5c7c-439e-986b-86ecb8ba8c27-3,https://biolit.fr/observations/observation-47111126-5c7c-439e-986b-86ecb8ba8c27-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150910_113627.jpg,,FALSE, +N1,61404,sortie-47111126-5c7c-439e-986b-86ecb8ba8c27,https://biolit.fr/sorties/sortie-47111126-5c7c-439e-986b-86ecb8ba8c27/,Phil,,09/10/2015,11.0000000,11.0000000,47.810086000000,-4.172931000000,,Lodonnec - 29 finistère,56810,observation-47111126-5c7c-439e-986b-86ecb8ba8c27-4,https://biolit.fr/observations/observation-47111126-5c7c-439e-986b-86ecb8ba8c27-4/,Janua heterostropha,Spirorbe de Pagenstecher,,https://biolit.fr/wp-content/uploads/2023/07/20150910_113603.jpg,,TRUE, +N1,61404,sortie-47111126-5c7c-439e-986b-86ecb8ba8c27,https://biolit.fr/sorties/sortie-47111126-5c7c-439e-986b-86ecb8ba8c27/,Phil,,09/10/2015,11.0000000,11.0000000,47.810086000000,-4.172931000000,,Lodonnec - 29 finistère,56812,observation-47111126-5c7c-439e-986b-86ecb8ba8c27-5,https://biolit.fr/observations/observation-47111126-5c7c-439e-986b-86ecb8ba8c27-5/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20150910_112955.jpg,,TRUE, +N1,61404,sortie-47111126-5c7c-439e-986b-86ecb8ba8c27,https://biolit.fr/sorties/sortie-47111126-5c7c-439e-986b-86ecb8ba8c27/,Phil,,09/10/2015,11.0000000,11.0000000,47.810086000000,-4.172931000000,,Lodonnec - 29 finistère,56814,observation-47111126-5c7c-439e-986b-86ecb8ba8c27-6,https://biolit.fr/observations/observation-47111126-5c7c-439e-986b-86ecb8ba8c27-6/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20150910_112945.jpg,,TRUE, +N1,61405,sortie-5307429a-9bda-4d11-858b-600f83a5e6e8,https://biolit.fr/sorties/sortie-5307429a-9bda-4d11-858b-600f83a5e6e8/,Phil,,09/10/2015,12.0000000,12.000005,47.809799000000,-4.17217300000,,Lodonnec - 29 finistère,56816,observation-5307429a-9bda-4d11-858b-600f83a5e6e8,https://biolit.fr/observations/observation-5307429a-9bda-4d11-858b-600f83a5e6e8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150910_120332_0.jpg,,FALSE, +N1,61405,sortie-5307429a-9bda-4d11-858b-600f83a5e6e8,https://biolit.fr/sorties/sortie-5307429a-9bda-4d11-858b-600f83a5e6e8/,Phil,,09/10/2015,12.0000000,12.000005,47.809799000000,-4.17217300000,,Lodonnec - 29 finistère,56818,observation-5307429a-9bda-4d11-858b-600f83a5e6e8-2,https://biolit.fr/observations/observation-5307429a-9bda-4d11-858b-600f83a5e6e8-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150910_120313_0.jpg,,FALSE, +N1,61405,sortie-5307429a-9bda-4d11-858b-600f83a5e6e8,https://biolit.fr/sorties/sortie-5307429a-9bda-4d11-858b-600f83a5e6e8/,Phil,,09/10/2015,12.0000000,12.000005,47.809799000000,-4.17217300000,,Lodonnec - 29 finistère,56820,observation-5307429a-9bda-4d11-858b-600f83a5e6e8-3,https://biolit.fr/observations/observation-5307429a-9bda-4d11-858b-600f83a5e6e8-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150910_120235.jpg,,FALSE, +N1,61406,sortie-eb5afbba-18ec-4193-a2f5-009f2ff426e2,https://biolit.fr/sorties/sortie-eb5afbba-18ec-4193-a2f5-009f2ff426e2/,Phil,,8/16/2015 0:00,20.0000000,20.0:45,48.826153000000,-3.48880100000,,Randreuz - Côtes-d'Armor,56822,observation-eb5afbba-18ec-4193-a2f5-009f2ff426e2,https://biolit.fr/observations/observation-eb5afbba-18ec-4193-a2f5-009f2ff426e2/,Halimione portulacoides,Obione faux-pourpier,,https://biolit.fr/wp-content/uploads/2023/07/20150816_204118-scaled.jpg,,TRUE, +N1,61406,sortie-eb5afbba-18ec-4193-a2f5-009f2ff426e2,https://biolit.fr/sorties/sortie-eb5afbba-18ec-4193-a2f5-009f2ff426e2/,Phil,,8/16/2015 0:00,20.0000000,20.0:45,48.826153000000,-3.48880100000,,Randreuz - Côtes-d'Armor,56824,observation-eb5afbba-18ec-4193-a2f5-009f2ff426e2-2,https://biolit.fr/observations/observation-eb5afbba-18ec-4193-a2f5-009f2ff426e2-2/,Halimione portulacoides,Obione faux-pourpier,,https://biolit.fr/wp-content/uploads/2023/07/20150816_204127-scaled.jpg,,TRUE, +N1,61407,sortie-7cc02307-496d-4e11-a2b7-60a17f222a9d,https://biolit.fr/sorties/sortie-7cc02307-496d-4e11-a2b7-60a17f222a9d/,Phil,,8/16/2015 0:00,19.0000000,19.0000000,48.832303000000,-3.487165000000,,Ploumanac'h - Côtes-d'Armor,56826,observation-7cc02307-496d-4e11-a2b7-60a17f222a9d,https://biolit.fr/observations/observation-7cc02307-496d-4e11-a2b7-60a17f222a9d/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20150816_194951.jpg,,TRUE, +N1,61408,sortie-205f30bb-5a8d-4031-a0b1-ada692294b4d,https://biolit.fr/sorties/sortie-205f30bb-5a8d-4031-a0b1-ada692294b4d/,Phil,,8/16/2015 0:00,19.0000000,19.0000000,48.832556000000,-3.48802000000,,Ploumanac'h - Côtes-d'Armor,56828,observation-205f30bb-5a8d-4031-a0b1-ada692294b4d,https://biolit.fr/observations/observation-205f30bb-5a8d-4031-a0b1-ada692294b4d/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/20150816_192944-scaled.jpg,,TRUE, +N1,61408,sortie-205f30bb-5a8d-4031-a0b1-ada692294b4d,https://biolit.fr/sorties/sortie-205f30bb-5a8d-4031-a0b1-ada692294b4d/,Phil,,8/16/2015 0:00,19.0000000,19.0000000,48.832556000000,-3.48802000000,,Ploumanac'h - Côtes-d'Armor,56830,observation-205f30bb-5a8d-4031-a0b1-ada692294b4d-2,https://biolit.fr/observations/observation-205f30bb-5a8d-4031-a0b1-ada692294b4d-2/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/2023/07/20150816_192956.jpg,,TRUE, +N1,61408,sortie-205f30bb-5a8d-4031-a0b1-ada692294b4d,https://biolit.fr/sorties/sortie-205f30bb-5a8d-4031-a0b1-ada692294b4d/,Phil,,8/16/2015 0:00,19.0000000,19.0000000,48.832556000000,-3.48802000000,,Ploumanac'h - Côtes-d'Armor,56832,observation-205f30bb-5a8d-4031-a0b1-ada692294b4d-3,https://biolit.fr/observations/observation-205f30bb-5a8d-4031-a0b1-ada692294b4d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150816_193017-scaled.jpg,,FALSE, +N1,61408,sortie-205f30bb-5a8d-4031-a0b1-ada692294b4d,https://biolit.fr/sorties/sortie-205f30bb-5a8d-4031-a0b1-ada692294b4d/,Phil,,8/16/2015 0:00,19.0000000,19.0000000,48.832556000000,-3.48802000000,,Ploumanac'h - Côtes-d'Armor,56834,observation-205f30bb-5a8d-4031-a0b1-ada692294b4d-4,https://biolit.fr/observations/observation-205f30bb-5a8d-4031-a0b1-ada692294b4d-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150816_193032.jpg,,FALSE, +N1,61409,sortie-0b9f45dd-a08c-44cf-bfab-4632aadc441b,https://biolit.fr/sorties/sortie-0b9f45dd-a08c-44cf-bfab-4632aadc441b/,Phil,,9/14/2015 0:00,12.0000000,12.0000000,47.873184000000,-3.931594000000,,Concarneau - Finistère,56836,observation-0b9f45dd-a08c-44cf-bfab-4632aadc441b,https://biolit.fr/observations/observation-0b9f45dd-a08c-44cf-bfab-4632aadc441b/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20150914_122959.jpg,,TRUE, +N1,61409,sortie-0b9f45dd-a08c-44cf-bfab-4632aadc441b,https://biolit.fr/sorties/sortie-0b9f45dd-a08c-44cf-bfab-4632aadc441b/,Phil,,9/14/2015 0:00,12.0000000,12.0000000,47.873184000000,-3.931594000000,,Concarneau - Finistère,56838,observation-0b9f45dd-a08c-44cf-bfab-4632aadc441b-2,https://biolit.fr/observations/observation-0b9f45dd-a08c-44cf-bfab-4632aadc441b-2/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20150914_122919.jpg,,TRUE, +N1,61409,sortie-0b9f45dd-a08c-44cf-bfab-4632aadc441b,https://biolit.fr/sorties/sortie-0b9f45dd-a08c-44cf-bfab-4632aadc441b/,Phil,,9/14/2015 0:00,12.0000000,12.0000000,47.873184000000,-3.931594000000,,Concarneau - Finistère,56840,observation-0b9f45dd-a08c-44cf-bfab-4632aadc441b-3,https://biolit.fr/observations/observation-0b9f45dd-a08c-44cf-bfab-4632aadc441b-3/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20150914_122945.jpg,,TRUE, +N1,61409,sortie-0b9f45dd-a08c-44cf-bfab-4632aadc441b,https://biolit.fr/sorties/sortie-0b9f45dd-a08c-44cf-bfab-4632aadc441b/,Phil,,9/14/2015 0:00,12.0000000,12.0000000,47.873184000000,-3.931594000000,,Concarneau - Finistère,56842,observation-0b9f45dd-a08c-44cf-bfab-4632aadc441b-4,https://biolit.fr/observations/observation-0b9f45dd-a08c-44cf-bfab-4632aadc441b-4/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20150914_123029.jpg,,TRUE, +N1,61409,sortie-0b9f45dd-a08c-44cf-bfab-4632aadc441b,https://biolit.fr/sorties/sortie-0b9f45dd-a08c-44cf-bfab-4632aadc441b/,Phil,,9/14/2015 0:00,12.0000000,12.0000000,47.873184000000,-3.931594000000,,Concarneau - Finistère,56844,observation-0b9f45dd-a08c-44cf-bfab-4632aadc441b-5,https://biolit.fr/observations/observation-0b9f45dd-a08c-44cf-bfab-4632aadc441b-5/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/20150914_123037.jpg,,TRUE, +N1,61410,sortie-ded3bfb5-bfae-4447-b62f-a560392ad321,https://biolit.fr/sorties/sortie-ded3bfb5-bfae-4447-b62f-a560392ad321/,CPIE Iles de Lérins et Pays d'Azur,,8/27/2015 0:00,11.0000000,15.0000000,43.517736000000,7.069839000000,,Côte Nord Iles Sainte-Marguerite,56846,observation-ded3bfb5-bfae-4447-b62f-a560392ad321,https://biolit.fr/observations/observation-ded3bfb5-bfae-4447-b62f-a560392ad321/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0141.jpg,,FALSE, +N1,61410,sortie-ded3bfb5-bfae-4447-b62f-a560392ad321,https://biolit.fr/sorties/sortie-ded3bfb5-bfae-4447-b62f-a560392ad321/,CPIE Iles de Lérins et Pays d'Azur,,8/27/2015 0:00,11.0000000,15.0000000,43.517736000000,7.069839000000,,Côte Nord Iles Sainte-Marguerite,56848,observation-ded3bfb5-bfae-4447-b62f-a560392ad321-2,https://biolit.fr/observations/observation-ded3bfb5-bfae-4447-b62f-a560392ad321-2/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0142.jpg,,TRUE, +N1,61410,sortie-ded3bfb5-bfae-4447-b62f-a560392ad321,https://biolit.fr/sorties/sortie-ded3bfb5-bfae-4447-b62f-a560392ad321/,CPIE Iles de Lérins et Pays d'Azur,,8/27/2015 0:00,11.0000000,15.0000000,43.517736000000,7.069839000000,,Côte Nord Iles Sainte-Marguerite,56850,observation-ded3bfb5-bfae-4447-b62f-a560392ad321-3,https://biolit.fr/observations/observation-ded3bfb5-bfae-4447-b62f-a560392ad321-3/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0155.jpg,,TRUE, +N1,61410,sortie-ded3bfb5-bfae-4447-b62f-a560392ad321,https://biolit.fr/sorties/sortie-ded3bfb5-bfae-4447-b62f-a560392ad321/,CPIE Iles de Lérins et Pays d'Azur,,8/27/2015 0:00,11.0000000,15.0000000,43.517736000000,7.069839000000,,Côte Nord Iles Sainte-Marguerite,56852,observation-ded3bfb5-bfae-4447-b62f-a560392ad321-4,https://biolit.fr/observations/observation-ded3bfb5-bfae-4447-b62f-a560392ad321-4/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0144.jpg,,TRUE, +N1,61410,sortie-ded3bfb5-bfae-4447-b62f-a560392ad321,https://biolit.fr/sorties/sortie-ded3bfb5-bfae-4447-b62f-a560392ad321/,CPIE Iles de Lérins et Pays d'Azur,,8/27/2015 0:00,11.0000000,15.0000000,43.517736000000,7.069839000000,,Côte Nord Iles Sainte-Marguerite,56854,observation-ded3bfb5-bfae-4447-b62f-a560392ad321-5,https://biolit.fr/observations/observation-ded3bfb5-bfae-4447-b62f-a560392ad321-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0157.jpg,,FALSE, +N1,61410,sortie-ded3bfb5-bfae-4447-b62f-a560392ad321,https://biolit.fr/sorties/sortie-ded3bfb5-bfae-4447-b62f-a560392ad321/,CPIE Iles de Lérins et Pays d'Azur,,8/27/2015 0:00,11.0000000,15.0000000,43.517736000000,7.069839000000,,Côte Nord Iles Sainte-Marguerite,56856,observation-ded3bfb5-bfae-4447-b62f-a560392ad321-6,https://biolit.fr/observations/observation-ded3bfb5-bfae-4447-b62f-a560392ad321-6/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0139.jpg,,TRUE, +N1,61411,sortie-9cdfec5e-cfaa-4273-b1c4-6040ac9734e8,https://biolit.fr/sorties/sortie-9cdfec5e-cfaa-4273-b1c4-6040ac9734e8/,Nikko,,8/28/2015 0:00,11.0000000,12.0000000,48.733651000000,-3.541268000000,,"Lann Guerven, estuaire du Léguer, début de la baie de la Vierge",56858,observation-9cdfec5e-cfaa-4273-b1c4-6040ac9734e8,https://biolit.fr/observations/observation-9cdfec5e-cfaa-4273-b1c4-6040ac9734e8/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/IMG-20150830-WA0001.jpg,,TRUE, +N1,61413,sortie-8f131ccf-e538-4bea-b789-44550d420333,https://biolit.fr/sorties/sortie-8f131ccf-e538-4bea-b789-44550d420333/,CPIE Iles de Lérins et Pays d'Azur,,8/13/2015 0:00,11.0000000,15.0000000,43.517977000000,7.068995000000,,Côte Nord de l'Ile Sainte-Marguerite,56862,observation-8f131ccf-e538-4bea-b789-44550d420333,https://biolit.fr/observations/observation-8f131ccf-e538-4bea-b789-44550d420333/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0131.jpg,,FALSE, +N1,61413,sortie-8f131ccf-e538-4bea-b789-44550d420333,https://biolit.fr/sorties/sortie-8f131ccf-e538-4bea-b789-44550d420333/,CPIE Iles de Lérins et Pays d'Azur,,8/13/2015 0:00,11.0000000,15.0000000,43.517977000000,7.068995000000,,Côte Nord de l'Ile Sainte-Marguerite,56864,observation-8f131ccf-e538-4bea-b789-44550d420333-2,https://biolit.fr/observations/observation-8f131ccf-e538-4bea-b789-44550d420333-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0123.jpg,,FALSE, +N1,61413,sortie-8f131ccf-e538-4bea-b789-44550d420333,https://biolit.fr/sorties/sortie-8f131ccf-e538-4bea-b789-44550d420333/,CPIE Iles de Lérins et Pays d'Azur,,8/13/2015 0:00,11.0000000,15.0000000,43.517977000000,7.068995000000,,Côte Nord de l'Ile Sainte-Marguerite,56866,observation-8f131ccf-e538-4bea-b789-44550d420333-3,https://biolit.fr/observations/observation-8f131ccf-e538-4bea-b789-44550d420333-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0125.jpg,,FALSE, +N1,61413,sortie-8f131ccf-e538-4bea-b789-44550d420333,https://biolit.fr/sorties/sortie-8f131ccf-e538-4bea-b789-44550d420333/,CPIE Iles de Lérins et Pays d'Azur,,8/13/2015 0:00,11.0000000,15.0000000,43.517977000000,7.068995000000,,Côte Nord de l'Ile Sainte-Marguerite,56868,observation-8f131ccf-e538-4bea-b789-44550d420333-4,https://biolit.fr/observations/observation-8f131ccf-e538-4bea-b789-44550d420333-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0126.jpg,,FALSE, +N1,61413,sortie-8f131ccf-e538-4bea-b789-44550d420333,https://biolit.fr/sorties/sortie-8f131ccf-e538-4bea-b789-44550d420333/,CPIE Iles de Lérins et Pays d'Azur,,8/13/2015 0:00,11.0000000,15.0000000,43.517977000000,7.068995000000,,Côte Nord de l'Ile Sainte-Marguerite,56870,observation-8f131ccf-e538-4bea-b789-44550d420333-5,https://biolit.fr/observations/observation-8f131ccf-e538-4bea-b789-44550d420333-5/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0127.jpg,,TRUE, +N1,61413,sortie-8f131ccf-e538-4bea-b789-44550d420333,https://biolit.fr/sorties/sortie-8f131ccf-e538-4bea-b789-44550d420333/,CPIE Iles de Lérins et Pays d'Azur,,8/13/2015 0:00,11.0000000,15.0000000,43.517977000000,7.068995000000,,Côte Nord de l'Ile Sainte-Marguerite,56872,observation-8f131ccf-e538-4bea-b789-44550d420333-6,https://biolit.fr/observations/observation-8f131ccf-e538-4bea-b789-44550d420333-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0129.jpg,,FALSE, +N1,61413,sortie-8f131ccf-e538-4bea-b789-44550d420333,https://biolit.fr/sorties/sortie-8f131ccf-e538-4bea-b789-44550d420333/,CPIE Iles de Lérins et Pays d'Azur,,8/13/2015 0:00,11.0000000,15.0000000,43.517977000000,7.068995000000,,Côte Nord de l'Ile Sainte-Marguerite,56874,observation-8f131ccf-e538-4bea-b789-44550d420333-7,https://biolit.fr/observations/observation-8f131ccf-e538-4bea-b789-44550d420333-7/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0130.jpg,,TRUE, +N1,61413,sortie-8f131ccf-e538-4bea-b789-44550d420333,https://biolit.fr/sorties/sortie-8f131ccf-e538-4bea-b789-44550d420333/,CPIE Iles de Lérins et Pays d'Azur,,8/13/2015 0:00,11.0000000,15.0000000,43.517977000000,7.068995000000,,Côte Nord de l'Ile Sainte-Marguerite,56876,observation-8f131ccf-e538-4bea-b789-44550d420333-8,https://biolit.fr/observations/observation-8f131ccf-e538-4bea-b789-44550d420333-8/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0132.jpg,,TRUE, +N1,61413,sortie-8f131ccf-e538-4bea-b789-44550d420333,https://biolit.fr/sorties/sortie-8f131ccf-e538-4bea-b789-44550d420333/,CPIE Iles de Lérins et Pays d'Azur,,8/13/2015 0:00,11.0000000,15.0000000,43.517977000000,7.068995000000,,Côte Nord de l'Ile Sainte-Marguerite,56878,observation-8f131ccf-e538-4bea-b789-44550d420333-9,https://biolit.fr/observations/observation-8f131ccf-e538-4bea-b789-44550d420333-9/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0128.jpg,,TRUE, +N1,61414,sortie-bf6530b4-f6db-4dd4-92bf-a8c82aae5cd8,https://biolit.fr/sorties/sortie-bf6530b4-f6db-4dd4-92bf-a8c82aae5cd8/,CPIE Iles de Lérins et Pays d'Azur,,08/06/2015,11.0000000,15.0000000,43.517978000000,7.068952000000,,Côte Nord de l'Ile Sainte-Marguerite,56880,observation-bf6530b4-f6db-4dd4-92bf-a8c82aae5cd8,https://biolit.fr/observations/observation-bf6530b4-f6db-4dd4-92bf-a8c82aae5cd8/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0118bis-scaled.jpg,,TRUE, +N1,61414,sortie-bf6530b4-f6db-4dd4-92bf-a8c82aae5cd8,https://biolit.fr/sorties/sortie-bf6530b4-f6db-4dd4-92bf-a8c82aae5cd8/,CPIE Iles de Lérins et Pays d'Azur,,08/06/2015,11.0000000,15.0000000,43.517978000000,7.068952000000,,Côte Nord de l'Ile Sainte-Marguerite,56882,observation-bf6530b4-f6db-4dd4-92bf-a8c82aae5cd8-2,https://biolit.fr/observations/observation-bf6530b4-f6db-4dd4-92bf-a8c82aae5cd8-2/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0117bis-scaled.jpg,,TRUE, +N1,61415,sortie-61c9a81c-0045-4e1e-9a29-de5a0261a86b,https://biolit.fr/sorties/sortie-61c9a81c-0045-4e1e-9a29-de5a0261a86b/,Audrey,,7/30/2015 0:00,16.0000000,19.0000000,49.506026000000,-1.852211000000,,Plage de sciotot,56884,observation-61c9a81c-0045-4e1e-9a29-de5a0261a86b,https://biolit.fr/observations/observation-61c9a81c-0045-4e1e-9a29-de5a0261a86b/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/Meduses_Sciotot_20150730 (2).jpg,,TRUE, +N1,61415,sortie-61c9a81c-0045-4e1e-9a29-de5a0261a86b,https://biolit.fr/sorties/sortie-61c9a81c-0045-4e1e-9a29-de5a0261a86b/,Audrey,,7/30/2015 0:00,16.0000000,19.0000000,49.506026000000,-1.852211000000,,Plage de sciotot,56886,observation-61c9a81c-0045-4e1e-9a29-de5a0261a86b-2,https://biolit.fr/observations/observation-61c9a81c-0045-4e1e-9a29-de5a0261a86b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Meduses_Sciotot_20150730 (6).jpg,,FALSE, +N1,61415,sortie-61c9a81c-0045-4e1e-9a29-de5a0261a86b,https://biolit.fr/sorties/sortie-61c9a81c-0045-4e1e-9a29-de5a0261a86b/,Audrey,,7/30/2015 0:00,16.0000000,19.0000000,49.506026000000,-1.852211000000,,Plage de sciotot,56888,observation-61c9a81c-0045-4e1e-9a29-de5a0261a86b-3,https://biolit.fr/observations/observation-61c9a81c-0045-4e1e-9a29-de5a0261a86b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Meduses_Sciotot_20150730 (8).jpg,,FALSE, +N1,61416,sortie-c3f5a476-4794-4a30-82ee-bb33d4692e2a,https://biolit.fr/sorties/sortie-c3f5a476-4794-4a30-82ee-bb33d4692e2a/,Audrey,,7/26/2015 0:00,17.0000000,18.0000000,49.679048000000,-1.72468800000,,Plage de l'école de voile de Urville,56890,observation-c3f5a476-4794-4a30-82ee-bb33d4692e2a,https://biolit.fr/observations/observation-c3f5a476-4794-4a30-82ee-bb33d4692e2a/,,,,https://biolit.fr/wp-content/uploads/2023/07/Aplysie_Urville_20150706 (6).jpg,,FALSE, +N1,61416,sortie-c3f5a476-4794-4a30-82ee-bb33d4692e2a,https://biolit.fr/sorties/sortie-c3f5a476-4794-4a30-82ee-bb33d4692e2a/,Audrey,,7/26/2015 0:00,17.0000000,18.0000000,49.679048000000,-1.72468800000,,Plage de l'école de voile de Urville,56892,observation-c3f5a476-4794-4a30-82ee-bb33d4692e2a-2,https://biolit.fr/observations/observation-c3f5a476-4794-4a30-82ee-bb33d4692e2a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Aplysie_Urville_20150706 (4).jpg,,FALSE, +N1,61416,sortie-c3f5a476-4794-4a30-82ee-bb33d4692e2a,https://biolit.fr/sorties/sortie-c3f5a476-4794-4a30-82ee-bb33d4692e2a/,Audrey,,7/26/2015 0:00,17.0000000,18.0000000,49.679048000000,-1.72468800000,,Plage de l'école de voile de Urville,56894,observation-c3f5a476-4794-4a30-82ee-bb33d4692e2a-3,https://biolit.fr/observations/observation-c3f5a476-4794-4a30-82ee-bb33d4692e2a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Aplysie_Urville_20150706 (12).jpg,,FALSE, +N1,61417,sortie-e74f209a-af97-48ef-b35e-9514bcfd2774,https://biolit.fr/sorties/sortie-e74f209a-af97-48ef-b35e-9514bcfd2774/,Morice,,6/18/2015 0:00,14.0000000,18.0:45,48.634464000000,-2.140911000000,,Ile Dame Jouane,56896,observation-e74f209a-af97-48ef-b35e-9514bcfd2774,https://biolit.fr/observations/observation-e74f209a-af97-48ef-b35e-9514bcfd2774/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_5826_0.jpg,,TRUE, +N1,61418,sortie-15b11e83-8214-43f1-bbf5-78179038188d,https://biolit.fr/sorties/sortie-15b11e83-8214-43f1-bbf5-78179038188d/,CPIE Iles de Lérins et Pays d'Azur,,7/30/2015 0:00,11.0000000,15.0000000,43.518065000000,7.068722000000,,Côte Nord de l'Ile Sainte-Marguerite,56898,observation-15b11e83-8214-43f1-bbf5-78179038188d,https://biolit.fr/observations/observation-15b11e83-8214-43f1-bbf5-78179038188d/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0113bis-scaled.jpg,,FALSE, +N1,61418,sortie-15b11e83-8214-43f1-bbf5-78179038188d,https://biolit.fr/sorties/sortie-15b11e83-8214-43f1-bbf5-78179038188d/,CPIE Iles de Lérins et Pays d'Azur,,7/30/2015 0:00,11.0000000,15.0000000,43.518065000000,7.068722000000,,Côte Nord de l'Ile Sainte-Marguerite,56900,observation-15b11e83-8214-43f1-bbf5-78179038188d-2,https://biolit.fr/observations/observation-15b11e83-8214-43f1-bbf5-78179038188d-2/,Luria lurida,Porcelaine livide,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0114bis-scaled.jpg,,TRUE, +N1,61418,sortie-15b11e83-8214-43f1-bbf5-78179038188d,https://biolit.fr/sorties/sortie-15b11e83-8214-43f1-bbf5-78179038188d/,CPIE Iles de Lérins et Pays d'Azur,,7/30/2015 0:00,11.0000000,15.0000000,43.518065000000,7.068722000000,,Côte Nord de l'Ile Sainte-Marguerite,56902,observation-15b11e83-8214-43f1-bbf5-78179038188d-3,https://biolit.fr/observations/observation-15b11e83-8214-43f1-bbf5-78179038188d-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0115bis-scaled.jpg,,FALSE, +N1,61418,sortie-15b11e83-8214-43f1-bbf5-78179038188d,https://biolit.fr/sorties/sortie-15b11e83-8214-43f1-bbf5-78179038188d/,CPIE Iles de Lérins et Pays d'Azur,,7/30/2015 0:00,11.0000000,15.0000000,43.518065000000,7.068722000000,,Côte Nord de l'Ile Sainte-Marguerite,56904,observation-15b11e83-8214-43f1-bbf5-78179038188d-4,https://biolit.fr/observations/observation-15b11e83-8214-43f1-bbf5-78179038188d-4/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0116bis-scaled.jpg,,TRUE, +N1,61419,sortie-1e84f5b2-de48-4974-b3e8-ed29045aab5d,https://biolit.fr/sorties/sortie-1e84f5b2-de48-4974-b3e8-ed29045aab5d/,Emmanuelle,,7/28/2015 0:00,11.0000000,13.0000000,47.725056000000,-4.001830000000,,Archipel des Glénan,56906,observation-1e84f5b2-de48-4974-b3e8-ed29045aab5d,https://biolit.fr/observations/observation-1e84f5b2-de48-4974-b3e8-ed29045aab5d/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/2023/07/20150728_120442-scaled.jpg,,TRUE, +N1,61419,sortie-1e84f5b2-de48-4974-b3e8-ed29045aab5d,https://biolit.fr/sorties/sortie-1e84f5b2-de48-4974-b3e8-ed29045aab5d/,Emmanuelle,,7/28/2015 0:00,11.0000000,13.0000000,47.725056000000,-4.001830000000,,Archipel des Glénan,56908,observation-1e84f5b2-de48-4974-b3e8-ed29045aab5d-2,https://biolit.fr/observations/observation-1e84f5b2-de48-4974-b3e8-ed29045aab5d-2/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/2023/07/Chardons-scaled.jpg,,TRUE, +N1,61420,sortie-6cee43e0-0d14-4716-9520-ff2cb14c5b7e,https://biolit.fr/sorties/sortie-6cee43e0-0d14-4716-9520-ff2cb14c5b7e/,Marine,,7/28/2015 0:00,11.0:35,17.0000000,47.725351000000,-4.001755000000,,Archipel des Glénan,56910,observation-6cee43e0-0d14-4716-9520-ff2cb14c5b7e,https://biolit.fr/observations/observation-6cee43e0-0d14-4716-9520-ff2cb14c5b7e/,Echinus esculentus,Oursin globuleux,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0754-scaled.jpg,,TRUE, +N1,61420,sortie-6cee43e0-0d14-4716-9520-ff2cb14c5b7e,https://biolit.fr/sorties/sortie-6cee43e0-0d14-4716-9520-ff2cb14c5b7e/,Marine,,7/28/2015 0:00,11.0:35,17.0000000,47.725351000000,-4.001755000000,,Archipel des Glénan,56913,observation-6cee43e0-0d14-4716-9520-ff2cb14c5b7e-3,https://biolit.fr/observations/observation-6cee43e0-0d14-4716-9520-ff2cb14c5b7e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0757-scaled.jpg,,FALSE, +N1,61420,sortie-6cee43e0-0d14-4716-9520-ff2cb14c5b7e,https://biolit.fr/sorties/sortie-6cee43e0-0d14-4716-9520-ff2cb14c5b7e/,Marine,,7/28/2015 0:00,11.0:35,17.0000000,47.725351000000,-4.001755000000,,Archipel des Glénan,56915,observation-6cee43e0-0d14-4716-9520-ff2cb14c5b7e-4,https://biolit.fr/observations/observation-6cee43e0-0d14-4716-9520-ff2cb14c5b7e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0758-scaled.jpg,,FALSE, +N1,61420,sortie-6cee43e0-0d14-4716-9520-ff2cb14c5b7e,https://biolit.fr/sorties/sortie-6cee43e0-0d14-4716-9520-ff2cb14c5b7e/,Marine,,7/28/2015 0:00,11.0:35,17.0000000,47.725351000000,-4.001755000000,,Archipel des Glénan,56917,observation-6cee43e0-0d14-4716-9520-ff2cb14c5b7e-5,https://biolit.fr/observations/observation-6cee43e0-0d14-4716-9520-ff2cb14c5b7e-5/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0759-scaled.jpg,,TRUE, +N1,61421,sortie-0e9610ba-d2a6-4b6d-aa48-1f3f1ae25f81,https://biolit.fr/sorties/sortie-0e9610ba-d2a6-4b6d-aa48-1f3f1ae25f81/,Phil,,7/18/2015 0:00,11.0:35,11.0:45,47.900387000000,-3.980042000000,,La Forêt-Fouesnant - Finistère,56919,observation-0e9610ba-d2a6-4b6d-aa48-1f3f1ae25f81,https://biolit.fr/observations/observation-0e9610ba-d2a6-4b6d-aa48-1f3f1ae25f81/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/2023/07/20150718_113833-scaled.jpg,,TRUE, +N1,61421,sortie-0e9610ba-d2a6-4b6d-aa48-1f3f1ae25f81,https://biolit.fr/sorties/sortie-0e9610ba-d2a6-4b6d-aa48-1f3f1ae25f81/,Phil,,7/18/2015 0:00,11.0:35,11.0:45,47.900387000000,-3.980042000000,,La Forêt-Fouesnant - Finistère,56921,observation-0e9610ba-d2a6-4b6d-aa48-1f3f1ae25f81-2,https://biolit.fr/observations/observation-0e9610ba-d2a6-4b6d-aa48-1f3f1ae25f81-2/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/20150718_113405-scaled.jpg,,TRUE, +N1,61422,sortie-b29baa92-58ad-4b9a-bcdf-8cdc3760217f,https://biolit.fr/sorties/sortie-b29baa92-58ad-4b9a-bcdf-8cdc3760217f/,Phil,,7/18/2015 0:00,11.0000000,11.0:35,47.900854000000,-3.979765000000,,La Forêt-Fouesnant - Finistère,56923,observation-b29baa92-58ad-4b9a-bcdf-8cdc3760217f,https://biolit.fr/observations/observation-b29baa92-58ad-4b9a-bcdf-8cdc3760217f/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150718_113119-scaled.jpg,,TRUE, +N1,61422,sortie-b29baa92-58ad-4b9a-bcdf-8cdc3760217f,https://biolit.fr/sorties/sortie-b29baa92-58ad-4b9a-bcdf-8cdc3760217f/,Phil,,7/18/2015 0:00,11.0000000,11.0:35,47.900854000000,-3.979765000000,,La Forêt-Fouesnant - Finistère,56925,observation-b29baa92-58ad-4b9a-bcdf-8cdc3760217f-2,https://biolit.fr/observations/observation-b29baa92-58ad-4b9a-bcdf-8cdc3760217f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150718_112932-scaled.jpg,,FALSE, +N1,61422,sortie-b29baa92-58ad-4b9a-bcdf-8cdc3760217f,https://biolit.fr/sorties/sortie-b29baa92-58ad-4b9a-bcdf-8cdc3760217f/,Phil,,7/18/2015 0:00,11.0000000,11.0:35,47.900854000000,-3.979765000000,,La Forêt-Fouesnant - Finistère,56927,observation-b29baa92-58ad-4b9a-bcdf-8cdc3760217f-3,https://biolit.fr/observations/observation-b29baa92-58ad-4b9a-bcdf-8cdc3760217f-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20150718_112951-scaled.jpg,,TRUE, +N1,61423,sortie-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed,https://biolit.fr/sorties/sortie-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed/,CPIE Iles de Lérins et Pays d'Azur,,7/16/2015 0:00,11.0000000,15.0000000,43.517812000000,7.069361000000,,Côte Nord de l'Ile Sainte-Marguerite,56929,observation-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed,https://biolit.fr/observations/observation-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0101bis-scaled.jpg,,FALSE, +N1,61423,sortie-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed,https://biolit.fr/sorties/sortie-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed/,CPIE Iles de Lérins et Pays d'Azur,,7/16/2015 0:00,11.0000000,15.0000000,43.517812000000,7.069361000000,,Côte Nord de l'Ile Sainte-Marguerite,56931,observation-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed-2,https://biolit.fr/observations/observation-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed-2/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0102bis-scaled.jpg,,TRUE, +N1,61423,sortie-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed,https://biolit.fr/sorties/sortie-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed/,CPIE Iles de Lérins et Pays d'Azur,,7/16/2015 0:00,11.0000000,15.0000000,43.517812000000,7.069361000000,,Côte Nord de l'Ile Sainte-Marguerite,56933,observation-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed-3,https://biolit.fr/observations/observation-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed-3/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0104bis-scaled.jpg,,TRUE, +N1,61423,sortie-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed,https://biolit.fr/sorties/sortie-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed/,CPIE Iles de Lérins et Pays d'Azur,,7/16/2015 0:00,11.0000000,15.0000000,43.517812000000,7.069361000000,,Côte Nord de l'Ile Sainte-Marguerite,56935,observation-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed-4,https://biolit.fr/observations/observation-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed-4/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0105bis-scaled.jpg,,TRUE, +N1,61423,sortie-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed,https://biolit.fr/sorties/sortie-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed/,CPIE Iles de Lérins et Pays d'Azur,,7/16/2015 0:00,11.0000000,15.0000000,43.517812000000,7.069361000000,,Côte Nord de l'Ile Sainte-Marguerite,56937,observation-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed-5,https://biolit.fr/observations/observation-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0108bis-scaled.jpg,,FALSE, +N1,61423,sortie-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed,https://biolit.fr/sorties/sortie-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed/,CPIE Iles de Lérins et Pays d'Azur,,7/16/2015 0:00,11.0000000,15.0000000,43.517812000000,7.069361000000,,Côte Nord de l'Ile Sainte-Marguerite,56939,observation-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed-6,https://biolit.fr/observations/observation-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed-6/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0111bis-scaled.jpg,,TRUE, +N1,61423,sortie-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed,https://biolit.fr/sorties/sortie-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed/,CPIE Iles de Lérins et Pays d'Azur,,7/16/2015 0:00,11.0000000,15.0000000,43.517812000000,7.069361000000,,Côte Nord de l'Ile Sainte-Marguerite,56941,observation-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed-7,https://biolit.fr/observations/observation-2727c6f6-fbb4-4312-bd40-e29f4c4ed7ed-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0109bis-scaled.jpg,,FALSE, +N1,61424,sortie-d74ec77b-78c7-4a70-aadc-5410f14c69c7,https://biolit.fr/sorties/sortie-d74ec77b-78c7-4a70-aadc-5410f14c69c7/,CPIE Iles de Lérins et Pays d'Azur,,07/09/2015,11.0000000,15.0000000,43.520963000000,7.032368000000,,Pointe Nord-ouest de l'Ile Sainte-Marguerite,56943,observation-d74ec77b-78c7-4a70-aadc-5410f14c69c7,https://biolit.fr/observations/observation-d74ec77b-78c7-4a70-aadc-5410f14c69c7/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0084bis-scaled.jpg,,TRUE, +N1,61424,sortie-d74ec77b-78c7-4a70-aadc-5410f14c69c7,https://biolit.fr/sorties/sortie-d74ec77b-78c7-4a70-aadc-5410f14c69c7/,CPIE Iles de Lérins et Pays d'Azur,,07/09/2015,11.0000000,15.0000000,43.520963000000,7.032368000000,,Pointe Nord-ouest de l'Ile Sainte-Marguerite,56945,observation-d74ec77b-78c7-4a70-aadc-5410f14c69c7-2,https://biolit.fr/observations/observation-d74ec77b-78c7-4a70-aadc-5410f14c69c7-2/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0093bis-scaled.jpg,,TRUE, +N1,61424,sortie-d74ec77b-78c7-4a70-aadc-5410f14c69c7,https://biolit.fr/sorties/sortie-d74ec77b-78c7-4a70-aadc-5410f14c69c7/,CPIE Iles de Lérins et Pays d'Azur,,07/09/2015,11.0000000,15.0000000,43.520963000000,7.032368000000,,Pointe Nord-ouest de l'Ile Sainte-Marguerite,56947,observation-d74ec77b-78c7-4a70-aadc-5410f14c69c7-3,https://biolit.fr/observations/observation-d74ec77b-78c7-4a70-aadc-5410f14c69c7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0096bis-scaled.jpg,,FALSE, +N1,61424,sortie-d74ec77b-78c7-4a70-aadc-5410f14c69c7,https://biolit.fr/sorties/sortie-d74ec77b-78c7-4a70-aadc-5410f14c69c7/,CPIE Iles de Lérins et Pays d'Azur,,07/09/2015,11.0000000,15.0000000,43.520963000000,7.032368000000,,Pointe Nord-ouest de l'Ile Sainte-Marguerite,56949,observation-d74ec77b-78c7-4a70-aadc-5410f14c69c7-4,https://biolit.fr/observations/observation-d74ec77b-78c7-4a70-aadc-5410f14c69c7-4/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0100bis-scaled.jpg,,TRUE, +N1,61424,sortie-d74ec77b-78c7-4a70-aadc-5410f14c69c7,https://biolit.fr/sorties/sortie-d74ec77b-78c7-4a70-aadc-5410f14c69c7/,CPIE Iles de Lérins et Pays d'Azur,,07/09/2015,11.0000000,15.0000000,43.520963000000,7.032368000000,,Pointe Nord-ouest de l'Ile Sainte-Marguerite,56951,observation-d74ec77b-78c7-4a70-aadc-5410f14c69c7-5,https://biolit.fr/observations/observation-d74ec77b-78c7-4a70-aadc-5410f14c69c7-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0072bis-scaled.jpg,,FALSE, +N1,61424,sortie-d74ec77b-78c7-4a70-aadc-5410f14c69c7,https://biolit.fr/sorties/sortie-d74ec77b-78c7-4a70-aadc-5410f14c69c7/,CPIE Iles de Lérins et Pays d'Azur,,07/09/2015,11.0000000,15.0000000,43.520963000000,7.032368000000,,Pointe Nord-ouest de l'Ile Sainte-Marguerite,56953,observation-d74ec77b-78c7-4a70-aadc-5410f14c69c7-6,https://biolit.fr/observations/observation-d74ec77b-78c7-4a70-aadc-5410f14c69c7-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0069bis-scaled.jpg,,FALSE, +N1,61424,sortie-d74ec77b-78c7-4a70-aadc-5410f14c69c7,https://biolit.fr/sorties/sortie-d74ec77b-78c7-4a70-aadc-5410f14c69c7/,CPIE Iles de Lérins et Pays d'Azur,,07/09/2015,11.0000000,15.0000000,43.520963000000,7.032368000000,,Pointe Nord-ouest de l'Ile Sainte-Marguerite,56955,observation-d74ec77b-78c7-4a70-aadc-5410f14c69c7-7,https://biolit.fr/observations/observation-d74ec77b-78c7-4a70-aadc-5410f14c69c7-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0066bis-scaled.jpg,,FALSE, +N1,61424,sortie-d74ec77b-78c7-4a70-aadc-5410f14c69c7,https://biolit.fr/sorties/sortie-d74ec77b-78c7-4a70-aadc-5410f14c69c7/,CPIE Iles de Lérins et Pays d'Azur,,07/09/2015,11.0000000,15.0000000,43.520963000000,7.032368000000,,Pointe Nord-ouest de l'Ile Sainte-Marguerite,56957,observation-d74ec77b-78c7-4a70-aadc-5410f14c69c7-8,https://biolit.fr/observations/observation-d74ec77b-78c7-4a70-aadc-5410f14c69c7-8/,Lissoclinum perforatum,Didemne lisse perforé,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0063bis-scaled.jpg,,TRUE, +N1,61425,sortie-0bbfdad3-5b03-4dab-aa33-a46dbd359fd8,https://biolit.fr/sorties/sortie-0bbfdad3-5b03-4dab-aa33-a46dbd359fd8/,Phil,,7/18/2015 0:00,11.0:25,11.0000000,47.900940000000,-3.979626000000,, La Forêt-Fouesnant - Finistère,56959,observation-0bbfdad3-5b03-4dab-aa33-a46dbd359fd8,https://biolit.fr/observations/observation-0bbfdad3-5b03-4dab-aa33-a46dbd359fd8/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150718_112747-scaled.jpg,,TRUE, +N1,61426,sortie-fffc9d62-d8b0-49bc-9b0c-e5d86efb459f,https://biolit.fr/sorties/sortie-fffc9d62-d8b0-49bc-9b0c-e5d86efb459f/,Centre de Découverte Mer et Montagne,,7/22/2015 0:00,14.0:15,15.0000000,43.692315000000,7.290474000000,,Nice,56961,observation-fffc9d62-d8b0-49bc-9b0c-e5d86efb459f,https://biolit.fr/observations/observation-fffc9d62-d8b0-49bc-9b0c-e5d86efb459f/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP2553-scaled.jpg,,FALSE, +N1,61426,sortie-fffc9d62-d8b0-49bc-9b0c-e5d86efb459f,https://biolit.fr/sorties/sortie-fffc9d62-d8b0-49bc-9b0c-e5d86efb459f/,Centre de Découverte Mer et Montagne,,7/22/2015 0:00,14.0:15,15.0000000,43.692315000000,7.290474000000,,Nice,56963,observation-fffc9d62-d8b0-49bc-9b0c-e5d86efb459f-2,https://biolit.fr/observations/observation-fffc9d62-d8b0-49bc-9b0c-e5d86efb459f-2/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/2023/07/IMGP2555-scaled.jpg,,TRUE, +N1,61427,sortie-d0e2a337-c8af-4369-bb4c-2250b28a6ce1,https://biolit.fr/sorties/sortie-d0e2a337-c8af-4369-bb4c-2250b28a6ce1/,Ville de Marseille,,04/01/2015,10.0000000,13.0000000,43.359459000000,5.293776000000,,"Entrée Tunnel du Rove, Port de la Lave",56965,observation-d0e2a337-c8af-4369-bb4c-2250b28a6ce1,https://biolit.fr/observations/observation-d0e2a337-c8af-4369-bb4c-2250b28a6ce1/,Astropecten platyacanthus,Etoile-peigne à piquants plats,,https://biolit.fr/wp-content/uploads/2023/07/P4010055_0-scaled.jpg,,TRUE, +N1,61427,sortie-d0e2a337-c8af-4369-bb4c-2250b28a6ce1,https://biolit.fr/sorties/sortie-d0e2a337-c8af-4369-bb4c-2250b28a6ce1/,Ville de Marseille,,04/01/2015,10.0000000,13.0000000,43.359459000000,5.293776000000,,"Entrée Tunnel du Rove, Port de la Lave",56967,observation-d0e2a337-c8af-4369-bb4c-2250b28a6ce1-2,https://biolit.fr/observations/observation-d0e2a337-c8af-4369-bb4c-2250b28a6ce1-2/,Astropecten platyacanthus,Etoile-peigne à piquants plats,,https://biolit.fr/wp-content/uploads/2023/07/P4010056-scaled.jpg,,TRUE, +N1,61427,sortie-d0e2a337-c8af-4369-bb4c-2250b28a6ce1,https://biolit.fr/sorties/sortie-d0e2a337-c8af-4369-bb4c-2250b28a6ce1/,Ville de Marseille,,04/01/2015,10.0000000,13.0000000,43.359459000000,5.293776000000,,"Entrée Tunnel du Rove, Port de la Lave",56969,observation-d0e2a337-c8af-4369-bb4c-2250b28a6ce1-3,https://biolit.fr/observations/observation-d0e2a337-c8af-4369-bb4c-2250b28a6ce1-3/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/P4010078-scaled.jpg,,TRUE, +N1,61427,sortie-d0e2a337-c8af-4369-bb4c-2250b28a6ce1,https://biolit.fr/sorties/sortie-d0e2a337-c8af-4369-bb4c-2250b28a6ce1/,Ville de Marseille,,04/01/2015,10.0000000,13.0000000,43.359459000000,5.293776000000,,"Entrée Tunnel du Rove, Port de la Lave",56971,observation-d0e2a337-c8af-4369-bb4c-2250b28a6ce1-4,https://biolit.fr/observations/observation-d0e2a337-c8af-4369-bb4c-2250b28a6ce1-4/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/P4010059-scaled.jpg,,TRUE, +N1,61427,sortie-d0e2a337-c8af-4369-bb4c-2250b28a6ce1,https://biolit.fr/sorties/sortie-d0e2a337-c8af-4369-bb4c-2250b28a6ce1/,Ville de Marseille,,04/01/2015,10.0000000,13.0000000,43.359459000000,5.293776000000,,"Entrée Tunnel du Rove, Port de la Lave",56973,observation-d0e2a337-c8af-4369-bb4c-2250b28a6ce1-5,https://biolit.fr/observations/observation-d0e2a337-c8af-4369-bb4c-2250b28a6ce1-5/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/P4010063-scaled.jpg,,TRUE, +N1,61427,sortie-d0e2a337-c8af-4369-bb4c-2250b28a6ce1,https://biolit.fr/sorties/sortie-d0e2a337-c8af-4369-bb4c-2250b28a6ce1/,Ville de Marseille,,04/01/2015,10.0000000,13.0000000,43.359459000000,5.293776000000,,"Entrée Tunnel du Rove, Port de la Lave",56975,observation-d0e2a337-c8af-4369-bb4c-2250b28a6ce1-6,https://biolit.fr/observations/observation-d0e2a337-c8af-4369-bb4c-2250b28a6ce1-6/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/P4010069-scaled.jpg,,TRUE, +N1,61428,sortie-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125,https://biolit.fr/sorties/sortie-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125/,Phil,,07/12/2015,17.0:45,18.0000000,47.896772000000,-3.974975000000,,Port la Forêt - La Forêt-Fouesnant - Finistère,56977,observation-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125,https://biolit.fr/observations/observation-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150712_174448-scaled.jpg,,TRUE, +N1,61428,sortie-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125,https://biolit.fr/sorties/sortie-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125/,Phil,,07/12/2015,17.0:45,18.0000000,47.896772000000,-3.974975000000,,Port la Forêt - La Forêt-Fouesnant - Finistère,56979,observation-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125-2,https://biolit.fr/observations/observation-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150712_174433-scaled.jpg,,TRUE, +N1,61428,sortie-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125,https://biolit.fr/sorties/sortie-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125/,Phil,,07/12/2015,17.0:45,18.0000000,47.896772000000,-3.974975000000,,Port la Forêt - La Forêt-Fouesnant - Finistère,56981,observation-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125-3,https://biolit.fr/observations/observation-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150712_180140-scaled.jpg,,TRUE, +N1,61428,sortie-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125,https://biolit.fr/sorties/sortie-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125/,Phil,,07/12/2015,17.0:45,18.0000000,47.896772000000,-3.974975000000,,Port la Forêt - La Forêt-Fouesnant - Finistère,56983,observation-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125-4,https://biolit.fr/observations/observation-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125-4/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150712_180237-scaled.jpg,,TRUE, +N1,61428,sortie-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125,https://biolit.fr/sorties/sortie-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125/,Phil,,07/12/2015,17.0:45,18.0000000,47.896772000000,-3.974975000000,,Port la Forêt - La Forêt-Fouesnant - Finistère,56985,observation-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125-5,https://biolit.fr/observations/observation-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125-5/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150712_180311-scaled.jpg,,TRUE, +N1,61428,sortie-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125,https://biolit.fr/sorties/sortie-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125/,Phil,,07/12/2015,17.0:45,18.0000000,47.896772000000,-3.974975000000,,Port la Forêt - La Forêt-Fouesnant - Finistère,56987,observation-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125-6,https://biolit.fr/observations/observation-6e73fedf-a0ae-4a93-aff4-3ee34e8b9125-6/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20150712_180642-scaled.jpg,,TRUE, +N1,61429,sortie-a262e1b7-75a3-41e8-8277-36ce61dd16f6,https://biolit.fr/sorties/sortie-a262e1b7-75a3-41e8-8277-36ce61dd16f6/,Phil,,07/12/2015,17.0000000,17.0:45,47.895118000000,-3.973353000000,,Kerleven - La Forêt-Fouesnant - Finistère,56989,observation-a262e1b7-75a3-41e8-8277-36ce61dd16f6,https://biolit.fr/observations/observation-a262e1b7-75a3-41e8-8277-36ce61dd16f6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150712_180903-scaled.jpg,,FALSE, +N1,61429,sortie-a262e1b7-75a3-41e8-8277-36ce61dd16f6,https://biolit.fr/sorties/sortie-a262e1b7-75a3-41e8-8277-36ce61dd16f6/,Phil,,07/12/2015,17.0000000,17.0:45,47.895118000000,-3.973353000000,,Kerleven - La Forêt-Fouesnant - Finistère,56991,observation-a262e1b7-75a3-41e8-8277-36ce61dd16f6-2,https://biolit.fr/observations/observation-a262e1b7-75a3-41e8-8277-36ce61dd16f6-2/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/20150712_175952-scaled.jpg,,TRUE, +N1,61429,sortie-a262e1b7-75a3-41e8-8277-36ce61dd16f6,https://biolit.fr/sorties/sortie-a262e1b7-75a3-41e8-8277-36ce61dd16f6/,Phil,,07/12/2015,17.0000000,17.0:45,47.895118000000,-3.973353000000,,Kerleven - La Forêt-Fouesnant - Finistère,56993,observation-a262e1b7-75a3-41e8-8277-36ce61dd16f6-3,https://biolit.fr/observations/observation-a262e1b7-75a3-41e8-8277-36ce61dd16f6-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150712_175846-scaled.jpg,,TRUE, +N1,61429,sortie-a262e1b7-75a3-41e8-8277-36ce61dd16f6,https://biolit.fr/sorties/sortie-a262e1b7-75a3-41e8-8277-36ce61dd16f6/,Phil,,07/12/2015,17.0000000,17.0:45,47.895118000000,-3.973353000000,,Kerleven - La Forêt-Fouesnant - Finistère,56995,observation-a262e1b7-75a3-41e8-8277-36ce61dd16f6-4,https://biolit.fr/observations/observation-a262e1b7-75a3-41e8-8277-36ce61dd16f6-4/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20150712_175556-scaled.jpg,,TRUE, +N1,61429,sortie-a262e1b7-75a3-41e8-8277-36ce61dd16f6,https://biolit.fr/sorties/sortie-a262e1b7-75a3-41e8-8277-36ce61dd16f6/,Phil,,07/12/2015,17.0000000,17.0:45,47.895118000000,-3.973353000000,,Kerleven - La Forêt-Fouesnant - Finistère,56997,observation-a262e1b7-75a3-41e8-8277-36ce61dd16f6-5,https://biolit.fr/observations/observation-a262e1b7-75a3-41e8-8277-36ce61dd16f6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150712_175331-scaled.jpg,,FALSE, +N1,61429,sortie-a262e1b7-75a3-41e8-8277-36ce61dd16f6,https://biolit.fr/sorties/sortie-a262e1b7-75a3-41e8-8277-36ce61dd16f6/,Phil,,07/12/2015,17.0000000,17.0:45,47.895118000000,-3.973353000000,,Kerleven - La Forêt-Fouesnant - Finistère,56999,observation-a262e1b7-75a3-41e8-8277-36ce61dd16f6-6,https://biolit.fr/observations/observation-a262e1b7-75a3-41e8-8277-36ce61dd16f6-6/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/20150712_174952-scaled.jpg,,TRUE, +N1,61429,sortie-a262e1b7-75a3-41e8-8277-36ce61dd16f6,https://biolit.fr/sorties/sortie-a262e1b7-75a3-41e8-8277-36ce61dd16f6/,Phil,,07/12/2015,17.0000000,17.0:45,47.895118000000,-3.973353000000,,Kerleven - La Forêt-Fouesnant - Finistère,57001,observation-a262e1b7-75a3-41e8-8277-36ce61dd16f6-7,https://biolit.fr/observations/observation-a262e1b7-75a3-41e8-8277-36ce61dd16f6-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150712_173330-scaled.jpg,,FALSE, +N1,61430,sortie-7f759f4c-7e70-4fd4-832b-1d82b7ea85bf,https://biolit.fr/sorties/sortie-7f759f4c-7e70-4fd4-832b-1d82b7ea85bf/,Phil,,07/12/2015,16.0000000,17.0000000,47.895797000000,-3.969353000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,57003,observation-7f759f4c-7e70-4fd4-832b-1d82b7ea85bf,https://biolit.fr/observations/observation-7f759f4c-7e70-4fd4-832b-1d82b7ea85bf/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150712_174020-scaled.jpg,,FALSE, +N1,61430,sortie-7f759f4c-7e70-4fd4-832b-1d82b7ea85bf,https://biolit.fr/sorties/sortie-7f759f4c-7e70-4fd4-832b-1d82b7ea85bf/,Phil,,07/12/2015,16.0000000,17.0000000,47.895797000000,-3.969353000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,57005,observation-7f759f4c-7e70-4fd4-832b-1d82b7ea85bf-2,https://biolit.fr/observations/observation-7f759f4c-7e70-4fd4-832b-1d82b7ea85bf-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150712_174108-scaled.jpg,,FALSE, +N1,61430,sortie-7f759f4c-7e70-4fd4-832b-1d82b7ea85bf,https://biolit.fr/sorties/sortie-7f759f4c-7e70-4fd4-832b-1d82b7ea85bf/,Phil,,07/12/2015,16.0000000,17.0000000,47.895797000000,-3.969353000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,57007,observation-7f759f4c-7e70-4fd4-832b-1d82b7ea85bf-3,https://biolit.fr/observations/observation-7f759f4c-7e70-4fd4-832b-1d82b7ea85bf-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150712_172928-scaled.jpg,,FALSE, +N1,61431,sortie-2541130d-19dd-425d-8cf7-85acab4b9758,https://biolit.fr/sorties/sortie-2541130d-19dd-425d-8cf7-85acab4b9758/,Phil,,07/12/2015,15.0000000,16.0000000,47.896315000000,-3.965367000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,57009,observation-2541130d-19dd-425d-8cf7-85acab4b9758,https://biolit.fr/observations/observation-2541130d-19dd-425d-8cf7-85acab4b9758/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150712_182229-scaled.jpg,,FALSE, +N1,61431,sortie-2541130d-19dd-425d-8cf7-85acab4b9758,https://biolit.fr/sorties/sortie-2541130d-19dd-425d-8cf7-85acab4b9758/,Phil,,07/12/2015,15.0000000,16.0000000,47.896315000000,-3.965367000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,57011,observation-2541130d-19dd-425d-8cf7-85acab4b9758-2,https://biolit.fr/observations/observation-2541130d-19dd-425d-8cf7-85acab4b9758-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150712_181835-scaled.jpg,,FALSE, +N1,61431,sortie-2541130d-19dd-425d-8cf7-85acab4b9758,https://biolit.fr/sorties/sortie-2541130d-19dd-425d-8cf7-85acab4b9758/,Phil,,07/12/2015,15.0000000,16.0000000,47.896315000000,-3.965367000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,57013,observation-2541130d-19dd-425d-8cf7-85acab4b9758-3,https://biolit.fr/observations/observation-2541130d-19dd-425d-8cf7-85acab4b9758-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150712_171906-scaled.jpg,,FALSE, +N1,61432,sortie-52d0e84e-abba-4cf5-8033-54bf534db680,https://biolit.fr/sorties/sortie-52d0e84e-abba-4cf5-8033-54bf534db680/,Romuald VIALE - EXPENATURE,,07/11/2015,10.0000000,10.0000000,43.158225000000,5.620048000000,,Ile Verte,57015,observation-52d0e84e-abba-4cf5-8033-54bf534db680,https://biolit.fr/observations/observation-52d0e84e-abba-4cf5-8033-54bf534db680/,,,,https://biolit.fr/wp-content/uploads/2023/07/2015-07-11 Ciotat Voisins GALLO 054b.jpg,,FALSE, +N1,61433,sortie-02eb8711-620c-4431-9fde-57e923fd7957,https://biolit.fr/sorties/sortie-02eb8711-620c-4431-9fde-57e923fd7957/,Romuald VIALE - EXPENATURE,,07/11/2015,11.0000000,11.0:25,43.160347000000,5.604534000000,,Bec de l'Aigle,57017,observation-02eb8711-620c-4431-9fde-57e923fd7957,https://biolit.fr/observations/observation-02eb8711-620c-4431-9fde-57e923fd7957/,,,,https://biolit.fr/wp-content/uploads/2023/07/2015-07-11 Ciotat Voisins GALLO 068-scaled.jpg,,FALSE, +N1,61433,sortie-02eb8711-620c-4431-9fde-57e923fd7957,https://biolit.fr/sorties/sortie-02eb8711-620c-4431-9fde-57e923fd7957/,Romuald VIALE - EXPENATURE,,07/11/2015,11.0000000,11.0:25,43.160347000000,5.604534000000,,Bec de l'Aigle,57019,observation-02eb8711-620c-4431-9fde-57e923fd7957-2,https://biolit.fr/observations/observation-02eb8711-620c-4431-9fde-57e923fd7957-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/2015-07-11 Ciotat Voisins GALLO 069-scaled.jpg,,FALSE, +N1,61434,sortie-e431750e-ce94-48ae-a6cf-35bbe55d5401,https://biolit.fr/sorties/sortie-e431750e-ce94-48ae-a6cf-35bbe55d5401/,Phil,,07/04/2015,12.0000000,12.0:15,47.838008000000,-4.351223000000,,Pointe de la Torche - Plomeur - Finistère,57021,observation-e431750e-ce94-48ae-a6cf-35bbe55d5401,https://biolit.fr/observations/observation-e431750e-ce94-48ae-a6cf-35bbe55d5401/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_120725-scaled.jpg,,FALSE, +N1,61434,sortie-e431750e-ce94-48ae-a6cf-35bbe55d5401,https://biolit.fr/sorties/sortie-e431750e-ce94-48ae-a6cf-35bbe55d5401/,Phil,,07/04/2015,12.0000000,12.0:15,47.838008000000,-4.351223000000,,Pointe de la Torche - Plomeur - Finistère,57023,observation-e431750e-ce94-48ae-a6cf-35bbe55d5401-2,https://biolit.fr/observations/observation-e431750e-ce94-48ae-a6cf-35bbe55d5401-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_120803-scaled.jpg,,FALSE, +N1,61434,sortie-e431750e-ce94-48ae-a6cf-35bbe55d5401,https://biolit.fr/sorties/sortie-e431750e-ce94-48ae-a6cf-35bbe55d5401/,Phil,,07/04/2015,12.0000000,12.0:15,47.838008000000,-4.351223000000,,Pointe de la Torche - Plomeur - Finistère,57025,observation-e431750e-ce94-48ae-a6cf-35bbe55d5401-3,https://biolit.fr/observations/observation-e431750e-ce94-48ae-a6cf-35bbe55d5401-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_121136-scaled.jpg,,FALSE, +N1,61434,sortie-e431750e-ce94-48ae-a6cf-35bbe55d5401,https://biolit.fr/sorties/sortie-e431750e-ce94-48ae-a6cf-35bbe55d5401/,Phil,,07/04/2015,12.0000000,12.0:15,47.838008000000,-4.351223000000,,Pointe de la Torche - Plomeur - Finistère,57027,observation-e431750e-ce94-48ae-a6cf-35bbe55d5401-4,https://biolit.fr/observations/observation-e431750e-ce94-48ae-a6cf-35bbe55d5401-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_121212-scaled.jpg,,FALSE, +N1,61434,sortie-e431750e-ce94-48ae-a6cf-35bbe55d5401,https://biolit.fr/sorties/sortie-e431750e-ce94-48ae-a6cf-35bbe55d5401/,Phil,,07/04/2015,12.0000000,12.0:15,47.838008000000,-4.351223000000,,Pointe de la Torche - Plomeur - Finistère,57029,observation-e431750e-ce94-48ae-a6cf-35bbe55d5401-5,https://biolit.fr/observations/observation-e431750e-ce94-48ae-a6cf-35bbe55d5401-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_121242.jpg,,FALSE, +N1,61434,sortie-e431750e-ce94-48ae-a6cf-35bbe55d5401,https://biolit.fr/sorties/sortie-e431750e-ce94-48ae-a6cf-35bbe55d5401/,Phil,,07/04/2015,12.0000000,12.0:15,47.838008000000,-4.351223000000,,Pointe de la Torche - Plomeur - Finistère,57031,observation-e431750e-ce94-48ae-a6cf-35bbe55d5401-6,https://biolit.fr/observations/observation-e431750e-ce94-48ae-a6cf-35bbe55d5401-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_121855-scaled.jpg,,FALSE, +N1,61435,sortie-ea81802d-c418-47ad-a2f7-176a80c7f01f,https://biolit.fr/sorties/sortie-ea81802d-c418-47ad-a2f7-176a80c7f01f/,NAUSICAA,,6/27/2015 0:00,15.0000000,16.0000000,50.828607000000,1.589559000000,,Audresselles,57033,observation-ea81802d-c418-47ad-a2f7-176a80c7f01f,https://biolit.fr/observations/observation-ea81802d-c418-47ad-a2f7-176a80c7f01f/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCF9590-scaled.jpg,,FALSE, +N1,61435,sortie-ea81802d-c418-47ad-a2f7-176a80c7f01f,https://biolit.fr/sorties/sortie-ea81802d-c418-47ad-a2f7-176a80c7f01f/,NAUSICAA,,6/27/2015 0:00,15.0000000,16.0000000,50.828607000000,1.589559000000,,Audresselles,57035,observation-ea81802d-c418-47ad-a2f7-176a80c7f01f-2,https://biolit.fr/observations/observation-ea81802d-c418-47ad-a2f7-176a80c7f01f-2/,Aurelia aurita,Aurélie,,https://biolit.fr/wp-content/uploads/2023/07/DSCF9601-scaled.jpg,,TRUE, +N1,61435,sortie-ea81802d-c418-47ad-a2f7-176a80c7f01f,https://biolit.fr/sorties/sortie-ea81802d-c418-47ad-a2f7-176a80c7f01f/,NAUSICAA,,6/27/2015 0:00,15.0000000,16.0000000,50.828607000000,1.589559000000,,Audresselles,57037,observation-ea81802d-c418-47ad-a2f7-176a80c7f01f-3,https://biolit.fr/observations/observation-ea81802d-c418-47ad-a2f7-176a80c7f01f-3/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/DSCF9595-scaled.jpg,,TRUE, +N1,61436,sortie-30444c98-94ef-4e38-8177-2e2cfa248d68,https://biolit.fr/sorties/sortie-30444c98-94ef-4e38-8177-2e2cfa248d68/,Phil,,07/04/2015,11.0:55,12.000005,47.83770700000,-4.354272000000,,Pointe de la Torche - Plomeur - Finistère,57039,observation-30444c98-94ef-4e38-8177-2e2cfa248d68,https://biolit.fr/observations/observation-30444c98-94ef-4e38-8177-2e2cfa248d68/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_120511-scaled.jpg,,FALSE, +N1,61436,sortie-30444c98-94ef-4e38-8177-2e2cfa248d68,https://biolit.fr/sorties/sortie-30444c98-94ef-4e38-8177-2e2cfa248d68/,Phil,,07/04/2015,11.0:55,12.000005,47.83770700000,-4.354272000000,,Pointe de la Torche - Plomeur - Finistère,57041,observation-30444c98-94ef-4e38-8177-2e2cfa248d68-2,https://biolit.fr/observations/observation-30444c98-94ef-4e38-8177-2e2cfa248d68-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_120434-scaled.jpg,,FALSE, +N1,61436,sortie-30444c98-94ef-4e38-8177-2e2cfa248d68,https://biolit.fr/sorties/sortie-30444c98-94ef-4e38-8177-2e2cfa248d68/,Phil,,07/04/2015,11.0:55,12.000005,47.83770700000,-4.354272000000,,Pointe de la Torche - Plomeur - Finistère,57043,observation-30444c98-94ef-4e38-8177-2e2cfa248d68-3,https://biolit.fr/observations/observation-30444c98-94ef-4e38-8177-2e2cfa248d68-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_120412-scaled.jpg,,FALSE, +N1,61436,sortie-30444c98-94ef-4e38-8177-2e2cfa248d68,https://biolit.fr/sorties/sortie-30444c98-94ef-4e38-8177-2e2cfa248d68/,Phil,,07/04/2015,11.0:55,12.000005,47.83770700000,-4.354272000000,,Pointe de la Torche - Plomeur - Finistère,57045,observation-30444c98-94ef-4e38-8177-2e2cfa248d68-4,https://biolit.fr/observations/observation-30444c98-94ef-4e38-8177-2e2cfa248d68-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150704_120300-scaled.jpg,,TRUE, +N1,61436,sortie-30444c98-94ef-4e38-8177-2e2cfa248d68,https://biolit.fr/sorties/sortie-30444c98-94ef-4e38-8177-2e2cfa248d68/,Phil,,07/04/2015,11.0:55,12.000005,47.83770700000,-4.354272000000,,Pointe de la Torche - Plomeur - Finistère,57047,observation-30444c98-94ef-4e38-8177-2e2cfa248d68-5,https://biolit.fr/observations/observation-30444c98-94ef-4e38-8177-2e2cfa248d68-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_115431-scaled.jpg,,FALSE, +N1,61437,sortie-c1d23a7d-d46d-464e-88f1-98bc179fee53,https://biolit.fr/sorties/sortie-c1d23a7d-d46d-464e-88f1-98bc179fee53/,Phil,,07/05/2015,17.0:15,17.0000000,48.277486000000,-4.619506000000,,Anse de Pen Hat - Camaret sur Mer - Finistère,57049,observation-c1d23a7d-d46d-464e-88f1-98bc179fee53,https://biolit.fr/observations/observation-c1d23a7d-d46d-464e-88f1-98bc179fee53/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04565.JPG,,FALSE, +N1,61437,sortie-c1d23a7d-d46d-464e-88f1-98bc179fee53,https://biolit.fr/sorties/sortie-c1d23a7d-d46d-464e-88f1-98bc179fee53/,Phil,,07/05/2015,17.0:15,17.0000000,48.277486000000,-4.619506000000,,Anse de Pen Hat - Camaret sur Mer - Finistère,57051,observation-c1d23a7d-d46d-464e-88f1-98bc179fee53-2,https://biolit.fr/observations/observation-c1d23a7d-d46d-464e-88f1-98bc179fee53-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04567.JPG,,FALSE, +N1,61438,sortie-7476782c-e8ed-4ee9-aede-5e07d10cae19,https://biolit.fr/sorties/sortie-7476782c-e8ed-4ee9-aede-5e07d10cae19/,Phil,,07/04/2015,11.0000000,11.0:55,47.83801100000,-4.352596000000,,Pointe de la Torche - Plomeur - Finistère,57053,observation-7476782c-e8ed-4ee9-aede-5e07d10cae19,https://biolit.fr/observations/observation-7476782c-e8ed-4ee9-aede-5e07d10cae19/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_115712-scaled.jpg,,FALSE, +N1,61438,sortie-7476782c-e8ed-4ee9-aede-5e07d10cae19,https://biolit.fr/sorties/sortie-7476782c-e8ed-4ee9-aede-5e07d10cae19/,Phil,,07/04/2015,11.0000000,11.0:55,47.83801100000,-4.352596000000,,Pointe de la Torche - Plomeur - Finistère,57055,observation-7476782c-e8ed-4ee9-aede-5e07d10cae19-2,https://biolit.fr/observations/observation-7476782c-e8ed-4ee9-aede-5e07d10cae19-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_115741.jpg,,FALSE, +N1,61438,sortie-7476782c-e8ed-4ee9-aede-5e07d10cae19,https://biolit.fr/sorties/sortie-7476782c-e8ed-4ee9-aede-5e07d10cae19/,Phil,,07/04/2015,11.0000000,11.0:55,47.83801100000,-4.352596000000,,Pointe de la Torche - Plomeur - Finistère,57057,observation-7476782c-e8ed-4ee9-aede-5e07d10cae19-3,https://biolit.fr/observations/observation-7476782c-e8ed-4ee9-aede-5e07d10cae19-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_115905-scaled.jpg,,FALSE, +N1,61438,sortie-7476782c-e8ed-4ee9-aede-5e07d10cae19,https://biolit.fr/sorties/sortie-7476782c-e8ed-4ee9-aede-5e07d10cae19/,Phil,,07/04/2015,11.0000000,11.0:55,47.83801100000,-4.352596000000,,Pointe de la Torche - Plomeur - Finistère,57059,observation-7476782c-e8ed-4ee9-aede-5e07d10cae19-4,https://biolit.fr/observations/observation-7476782c-e8ed-4ee9-aede-5e07d10cae19-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_115215-scaled.jpg,,FALSE, +N1,61438,sortie-7476782c-e8ed-4ee9-aede-5e07d10cae19,https://biolit.fr/sorties/sortie-7476782c-e8ed-4ee9-aede-5e07d10cae19/,Phil,,07/04/2015,11.0000000,11.0:55,47.83801100000,-4.352596000000,,Pointe de la Torche - Plomeur - Finistère,57061,observation-7476782c-e8ed-4ee9-aede-5e07d10cae19-5,https://biolit.fr/observations/observation-7476782c-e8ed-4ee9-aede-5e07d10cae19-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_115330-scaled.jpg,,FALSE, +N1,61439,sortie-313dc31a-8796-45ca-bbc7-d7fee8323caf,https://biolit.fr/sorties/sortie-313dc31a-8796-45ca-bbc7-d7fee8323caf/,Phil,,07/04/2015,11.0:45,11.0000000,47.838300000000,-4.350018000000,,Plage de la Torche - Plomeur - Finistère,57063,observation-313dc31a-8796-45ca-bbc7-d7fee8323caf,https://biolit.fr/observations/observation-313dc31a-8796-45ca-bbc7-d7fee8323caf/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/20150704_114443-scaled.jpg,,TRUE, +N1,61439,sortie-313dc31a-8796-45ca-bbc7-d7fee8323caf,https://biolit.fr/sorties/sortie-313dc31a-8796-45ca-bbc7-d7fee8323caf/,Phil,,07/04/2015,11.0:45,11.0000000,47.838300000000,-4.350018000000,,Plage de la Torche - Plomeur - Finistère,57065,observation-313dc31a-8796-45ca-bbc7-d7fee8323caf-2,https://biolit.fr/observations/observation-313dc31a-8796-45ca-bbc7-d7fee8323caf-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_114623.jpg,,FALSE, +N1,61439,sortie-313dc31a-8796-45ca-bbc7-d7fee8323caf,https://biolit.fr/sorties/sortie-313dc31a-8796-45ca-bbc7-d7fee8323caf/,Phil,,07/04/2015,11.0:45,11.0000000,47.838300000000,-4.350018000000,,Plage de la Torche - Plomeur - Finistère,57067,observation-313dc31a-8796-45ca-bbc7-d7fee8323caf-3,https://biolit.fr/observations/observation-313dc31a-8796-45ca-bbc7-d7fee8323caf-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_114739-scaled.jpg,,FALSE, +N1,61440,sortie-267c72b5-1ad4-44d3-8b85-1d3965e4c6db,https://biolit.fr/sorties/sortie-267c72b5-1ad4-44d3-8b85-1d3965e4c6db/,Phil,,07/04/2015,11.0:35,11.0:45,47.839619000000,-4.347450000000,,Plage de la Torche - Plomeur - Finistère,57069,observation-267c72b5-1ad4-44d3-8b85-1d3965e4c6db,https://biolit.fr/observations/observation-267c72b5-1ad4-44d3-8b85-1d3965e4c6db/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_121730-scaled.jpg,,FALSE, +N1,61440,sortie-267c72b5-1ad4-44d3-8b85-1d3965e4c6db,https://biolit.fr/sorties/sortie-267c72b5-1ad4-44d3-8b85-1d3965e4c6db/,Phil,,07/04/2015,11.0:35,11.0:45,47.839619000000,-4.347450000000,,Plage de la Torche - Plomeur - Finistère,57071,observation-267c72b5-1ad4-44d3-8b85-1d3965e4c6db-2,https://biolit.fr/observations/observation-267c72b5-1ad4-44d3-8b85-1d3965e4c6db-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150704_121835.jpg,,FALSE, +N1,61441,sortie-cd42391c-0137-4352-a953-da1f5d0349e2,https://biolit.fr/sorties/sortie-cd42391c-0137-4352-a953-da1f5d0349e2/,Phil,,07/03/2015,12.0000000,12.0000000,48.134014000000,-4.275015000000,,Tréfeuntec - Finistère,57073,observation-cd42391c-0137-4352-a953-da1f5d0349e2,https://biolit.fr/observations/observation-cd42391c-0137-4352-a953-da1f5d0349e2/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/20150703_121916-scaled.jpg,,TRUE, +N1,61441,sortie-cd42391c-0137-4352-a953-da1f5d0349e2,https://biolit.fr/sorties/sortie-cd42391c-0137-4352-a953-da1f5d0349e2/,Phil,,07/03/2015,12.0000000,12.0000000,48.134014000000,-4.275015000000,,Tréfeuntec - Finistère,57075,observation-cd42391c-0137-4352-a953-da1f5d0349e2-2,https://biolit.fr/observations/observation-cd42391c-0137-4352-a953-da1f5d0349e2-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150703_121243-scaled.jpg,,FALSE, +N1,61441,sortie-cd42391c-0137-4352-a953-da1f5d0349e2,https://biolit.fr/sorties/sortie-cd42391c-0137-4352-a953-da1f5d0349e2/,Phil,,07/03/2015,12.0000000,12.0000000,48.134014000000,-4.275015000000,,Tréfeuntec - Finistère,57077,observation-cd42391c-0137-4352-a953-da1f5d0349e2-3,https://biolit.fr/observations/observation-cd42391c-0137-4352-a953-da1f5d0349e2-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150703_121113-scaled.jpg,,FALSE, +N1,61441,sortie-cd42391c-0137-4352-a953-da1f5d0349e2,https://biolit.fr/sorties/sortie-cd42391c-0137-4352-a953-da1f5d0349e2/,Phil,,07/03/2015,12.0000000,12.0000000,48.134014000000,-4.275015000000,,Tréfeuntec - Finistère,57079,observation-cd42391c-0137-4352-a953-da1f5d0349e2-4,https://biolit.fr/observations/observation-cd42391c-0137-4352-a953-da1f5d0349e2-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150703_121059-scaled.jpg,,FALSE, +N1,61441,sortie-cd42391c-0137-4352-a953-da1f5d0349e2,https://biolit.fr/sorties/sortie-cd42391c-0137-4352-a953-da1f5d0349e2/,Phil,,07/03/2015,12.0000000,12.0000000,48.134014000000,-4.275015000000,,Tréfeuntec - Finistère,57081,observation-cd42391c-0137-4352-a953-da1f5d0349e2-5,https://biolit.fr/observations/observation-cd42391c-0137-4352-a953-da1f5d0349e2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150703_121400-scaled.jpg,,FALSE, +N1,61441,sortie-cd42391c-0137-4352-a953-da1f5d0349e2,https://biolit.fr/sorties/sortie-cd42391c-0137-4352-a953-da1f5d0349e2/,Phil,,07/03/2015,12.0000000,12.0000000,48.134014000000,-4.275015000000,,Tréfeuntec - Finistère,57083,observation-cd42391c-0137-4352-a953-da1f5d0349e2-6,https://biolit.fr/observations/observation-cd42391c-0137-4352-a953-da1f5d0349e2-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150703_120802-scaled.jpg,,FALSE, +N1,61442,sortie-3a3140f1-cafe-433f-b031-731f2203bb57,https://biolit.fr/sorties/sortie-3a3140f1-cafe-433f-b031-731f2203bb57/,Phil,,07/03/2015,12.000005,12.0000000,48.1383330000,-4.275864000000,,Sainte-Anne La Palud - Finistère,57085,observation-3a3140f1-cafe-433f-b031-731f2203bb57,https://biolit.fr/observations/observation-3a3140f1-cafe-433f-b031-731f2203bb57/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150703_122354-scaled.jpg,,FALSE, +N1,61442,sortie-3a3140f1-cafe-433f-b031-731f2203bb57,https://biolit.fr/sorties/sortie-3a3140f1-cafe-433f-b031-731f2203bb57/,Phil,,07/03/2015,12.000005,12.0000000,48.1383330000,-4.275864000000,,Sainte-Anne La Palud - Finistère,57087,observation-3a3140f1-cafe-433f-b031-731f2203bb57-2,https://biolit.fr/observations/observation-3a3140f1-cafe-433f-b031-731f2203bb57-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150703_122436-scaled.jpg,,FALSE, +N1,61442,sortie-3a3140f1-cafe-433f-b031-731f2203bb57,https://biolit.fr/sorties/sortie-3a3140f1-cafe-433f-b031-731f2203bb57/,Phil,,07/03/2015,12.000005,12.0000000,48.1383330000,-4.275864000000,,Sainte-Anne La Palud - Finistère,57089,observation-3a3140f1-cafe-433f-b031-731f2203bb57-3,https://biolit.fr/observations/observation-3a3140f1-cafe-433f-b031-731f2203bb57-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150703_120328.jpg,,FALSE, +N1,61443,sortie-be252c14-db2f-4d2d-929b-09965b30a4e1,https://biolit.fr/sorties/sortie-be252c14-db2f-4d2d-929b-09965b30a4e1/,Phil,,07/03/2015,11.0:35,12.0000000,48.134377000000,-4.274212000000,,Tréfeuntec - Finistère,57091,observation-be252c14-db2f-4d2d-929b-09965b30a4e1,https://biolit.fr/observations/observation-be252c14-db2f-4d2d-929b-09965b30a4e1/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150703_115107-scaled.jpg,,FALSE, +N1,61443,sortie-be252c14-db2f-4d2d-929b-09965b30a4e1,https://biolit.fr/sorties/sortie-be252c14-db2f-4d2d-929b-09965b30a4e1/,Phil,,07/03/2015,11.0:35,12.0000000,48.134377000000,-4.274212000000,,Tréfeuntec - Finistère,57093,observation-be252c14-db2f-4d2d-929b-09965b30a4e1-2,https://biolit.fr/observations/observation-be252c14-db2f-4d2d-929b-09965b30a4e1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150703_114921-scaled.jpg,,FALSE, +N1,61443,sortie-be252c14-db2f-4d2d-929b-09965b30a4e1,https://biolit.fr/sorties/sortie-be252c14-db2f-4d2d-929b-09965b30a4e1/,Phil,,07/03/2015,11.0:35,12.0000000,48.134377000000,-4.274212000000,,Tréfeuntec - Finistère,57095,observation-be252c14-db2f-4d2d-929b-09965b30a4e1-3,https://biolit.fr/observations/observation-be252c14-db2f-4d2d-929b-09965b30a4e1-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150703_113838-scaled.jpg,,FALSE, +N1,61443,sortie-be252c14-db2f-4d2d-929b-09965b30a4e1,https://biolit.fr/sorties/sortie-be252c14-db2f-4d2d-929b-09965b30a4e1/,Phil,,07/03/2015,11.0:35,12.0000000,48.134377000000,-4.274212000000,,Tréfeuntec - Finistère,57097,observation-be252c14-db2f-4d2d-929b-09965b30a4e1-4,https://biolit.fr/observations/observation-be252c14-db2f-4d2d-929b-09965b30a4e1-4/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20150703_114016-scaled.jpg,,TRUE, +N1,61443,sortie-be252c14-db2f-4d2d-929b-09965b30a4e1,https://biolit.fr/sorties/sortie-be252c14-db2f-4d2d-929b-09965b30a4e1/,Phil,,07/03/2015,11.0:35,12.0000000,48.134377000000,-4.274212000000,,Tréfeuntec - Finistère,57099,observation-be252c14-db2f-4d2d-929b-09965b30a4e1-5,https://biolit.fr/observations/observation-be252c14-db2f-4d2d-929b-09965b30a4e1-5/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/20150703_120204.jpg,,TRUE, +N1,61444,sortie-b83ef83b-6c52-4534-9963-e1b05ecc5cdc,https://biolit.fr/sorties/sortie-b83ef83b-6c52-4534-9963-e1b05ecc5cdc/,Phil,,07/02/2015,14.0000000,15.0000000,47.864027000000,-4.081393000000,,Le Letty - Bénodet - Finistère,57101,observation-b83ef83b-6c52-4534-9963-e1b05ecc5cdc,https://biolit.fr/observations/observation-b83ef83b-6c52-4534-9963-e1b05ecc5cdc/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150702_145539-scaled.jpg,,FALSE, +N1,61444,sortie-b83ef83b-6c52-4534-9963-e1b05ecc5cdc,https://biolit.fr/sorties/sortie-b83ef83b-6c52-4534-9963-e1b05ecc5cdc/,Phil,,07/02/2015,14.0000000,15.0000000,47.864027000000,-4.081393000000,,Le Letty - Bénodet - Finistère,57103,observation-b83ef83b-6c52-4534-9963-e1b05ecc5cdc-2,https://biolit.fr/observations/observation-b83ef83b-6c52-4534-9963-e1b05ecc5cdc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150702_145558-scaled.jpg,,FALSE, +N1,61444,sortie-b83ef83b-6c52-4534-9963-e1b05ecc5cdc,https://biolit.fr/sorties/sortie-b83ef83b-6c52-4534-9963-e1b05ecc5cdc/,Phil,,07/02/2015,14.0000000,15.0000000,47.864027000000,-4.081393000000,,Le Letty - Bénodet - Finistère,57105,observation-b83ef83b-6c52-4534-9963-e1b05ecc5cdc-3,https://biolit.fr/observations/observation-b83ef83b-6c52-4534-9963-e1b05ecc5cdc-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150702_145700-scaled.jpg,,FALSE, +N1,61444,sortie-b83ef83b-6c52-4534-9963-e1b05ecc5cdc,https://biolit.fr/sorties/sortie-b83ef83b-6c52-4534-9963-e1b05ecc5cdc/,Phil,,07/02/2015,14.0000000,15.0000000,47.864027000000,-4.081393000000,,Le Letty - Bénodet - Finistère,57107,observation-b83ef83b-6c52-4534-9963-e1b05ecc5cdc-4,https://biolit.fr/observations/observation-b83ef83b-6c52-4534-9963-e1b05ecc5cdc-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150702_145445-scaled.jpg,,FALSE, +N1,61445,sortie-f7a0ea5b-2c8b-4847-82b5-977c5894f850,https://biolit.fr/sorties/sortie-f7a0ea5b-2c8b-4847-82b5-977c5894f850/,Phil,,07/02/2015,15.0000000,15.0:15,47.864331000000,-4.087005000000,,Le Letty - Bénodet - Finistère,57109,observation-f7a0ea5b-2c8b-4847-82b5-977c5894f850,https://biolit.fr/observations/observation-f7a0ea5b-2c8b-4847-82b5-977c5894f850/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150702_150517-scaled.jpg,,FALSE, +N1,61445,sortie-f7a0ea5b-2c8b-4847-82b5-977c5894f850,https://biolit.fr/sorties/sortie-f7a0ea5b-2c8b-4847-82b5-977c5894f850/,Phil,,07/02/2015,15.0000000,15.0:15,47.864331000000,-4.087005000000,,Le Letty - Bénodet - Finistère,57111,observation-f7a0ea5b-2c8b-4847-82b5-977c5894f850-2,https://biolit.fr/observations/observation-f7a0ea5b-2c8b-4847-82b5-977c5894f850-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150702_150359-scaled.jpg,,TRUE, +N1,61445,sortie-f7a0ea5b-2c8b-4847-82b5-977c5894f850,https://biolit.fr/sorties/sortie-f7a0ea5b-2c8b-4847-82b5-977c5894f850/,Phil,,07/02/2015,15.0000000,15.0:15,47.864331000000,-4.087005000000,,Le Letty - Bénodet - Finistère,57113,observation-f7a0ea5b-2c8b-4847-82b5-977c5894f850-3,https://biolit.fr/observations/observation-f7a0ea5b-2c8b-4847-82b5-977c5894f850-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150702_150001-scaled.jpg,,FALSE, +N1,61445,sortie-f7a0ea5b-2c8b-4847-82b5-977c5894f850,https://biolit.fr/sorties/sortie-f7a0ea5b-2c8b-4847-82b5-977c5894f850/,Phil,,07/02/2015,15.0000000,15.0:15,47.864331000000,-4.087005000000,,Le Letty - Bénodet - Finistère,57115,observation-f7a0ea5b-2c8b-4847-82b5-977c5894f850-4,https://biolit.fr/observations/observation-f7a0ea5b-2c8b-4847-82b5-977c5894f850-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150702_145926-scaled.jpg,,FALSE, +N1,61445,sortie-f7a0ea5b-2c8b-4847-82b5-977c5894f850,https://biolit.fr/sorties/sortie-f7a0ea5b-2c8b-4847-82b5-977c5894f850/,Phil,,07/02/2015,15.0000000,15.0:15,47.864331000000,-4.087005000000,,Le Letty - Bénodet - Finistère,57117,observation-f7a0ea5b-2c8b-4847-82b5-977c5894f850-5,https://biolit.fr/observations/observation-f7a0ea5b-2c8b-4847-82b5-977c5894f850-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150702_145853-scaled.jpg,,FALSE, +N1,61446,sortie-378c3b65-3485-483f-91f2-d42af7603168,https://biolit.fr/sorties/sortie-378c3b65-3485-483f-91f2-d42af7603168/,Phil,,07/02/2015,14.0000000,14.0000000,47.862299000000,-4.100941000000,,Bénodet - Finistère,57119,observation-378c3b65-3485-483f-91f2-d42af7603168,https://biolit.fr/observations/observation-378c3b65-3485-483f-91f2-d42af7603168/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150702_141716-scaled.jpg,,FALSE, +N1,61446,sortie-378c3b65-3485-483f-91f2-d42af7603168,https://biolit.fr/sorties/sortie-378c3b65-3485-483f-91f2-d42af7603168/,Phil,,07/02/2015,14.0000000,14.0000000,47.862299000000,-4.100941000000,,Bénodet - Finistère,57121,observation-378c3b65-3485-483f-91f2-d42af7603168-2,https://biolit.fr/observations/observation-378c3b65-3485-483f-91f2-d42af7603168-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150702_141837-scaled.jpg,,FALSE, +N1,61446,sortie-378c3b65-3485-483f-91f2-d42af7603168,https://biolit.fr/sorties/sortie-378c3b65-3485-483f-91f2-d42af7603168/,Phil,,07/02/2015,14.0000000,14.0000000,47.862299000000,-4.100941000000,,Bénodet - Finistère,57123,observation-378c3b65-3485-483f-91f2-d42af7603168-3,https://biolit.fr/observations/observation-378c3b65-3485-483f-91f2-d42af7603168-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150702_141956-scaled.jpg,,FALSE, +N1,61446,sortie-378c3b65-3485-483f-91f2-d42af7603168,https://biolit.fr/sorties/sortie-378c3b65-3485-483f-91f2-d42af7603168/,Phil,,07/02/2015,14.0000000,14.0000000,47.862299000000,-4.100941000000,,Bénodet - Finistère,57125,observation-378c3b65-3485-483f-91f2-d42af7603168-4,https://biolit.fr/observations/observation-378c3b65-3485-483f-91f2-d42af7603168-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150702_142102-scaled.jpg,,FALSE, +N1,61446,sortie-378c3b65-3485-483f-91f2-d42af7603168,https://biolit.fr/sorties/sortie-378c3b65-3485-483f-91f2-d42af7603168/,Phil,,07/02/2015,14.0000000,14.0000000,47.862299000000,-4.100941000000,,Bénodet - Finistère,57127,observation-378c3b65-3485-483f-91f2-d42af7603168-5,https://biolit.fr/observations/observation-378c3b65-3485-483f-91f2-d42af7603168-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150702_142543-scaled.jpg,,FALSE, +N1,61446,sortie-378c3b65-3485-483f-91f2-d42af7603168,https://biolit.fr/sorties/sortie-378c3b65-3485-483f-91f2-d42af7603168/,Phil,,07/02/2015,14.0000000,14.0000000,47.862299000000,-4.100941000000,,Bénodet - Finistère,57129,observation-378c3b65-3485-483f-91f2-d42af7603168-6,https://biolit.fr/observations/observation-378c3b65-3485-483f-91f2-d42af7603168-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150702_142742-scaled.jpg,,FALSE, +N1,61446,sortie-378c3b65-3485-483f-91f2-d42af7603168,https://biolit.fr/sorties/sortie-378c3b65-3485-483f-91f2-d42af7603168/,Phil,,07/02/2015,14.0000000,14.0000000,47.862299000000,-4.100941000000,,Bénodet - Finistère,57131,observation-378c3b65-3485-483f-91f2-d42af7603168-7,https://biolit.fr/observations/observation-378c3b65-3485-483f-91f2-d42af7603168-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150702_143705-scaled.jpg,,FALSE, +N1,61446,sortie-378c3b65-3485-483f-91f2-d42af7603168,https://biolit.fr/sorties/sortie-378c3b65-3485-483f-91f2-d42af7603168/,Phil,,07/02/2015,14.0000000,14.0000000,47.862299000000,-4.100941000000,,Bénodet - Finistère,57133,observation-378c3b65-3485-483f-91f2-d42af7603168-8,https://biolit.fr/observations/observation-378c3b65-3485-483f-91f2-d42af7603168-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150702_143126-scaled.jpg,,FALSE, +N1,61447,sortie-20a433a0-1700-4dc5-bd95-4d081019713b,https://biolit.fr/sorties/sortie-20a433a0-1700-4dc5-bd95-4d081019713b/,Emmanuelle,,07/01/2015,11.0:45,12.0:45,47.86094300000,-4.092896000000,,Plage de Bénodet (Finistère),57135,observation-20a433a0-1700-4dc5-bd95-4d081019713b,https://biolit.fr/observations/observation-20a433a0-1700-4dc5-bd95-4d081019713b/,,,,https://biolit.fr/wp-content/uploads/2023/07/em-scaled.jpg,,FALSE, +N1,61447,sortie-20a433a0-1700-4dc5-bd95-4d081019713b,https://biolit.fr/sorties/sortie-20a433a0-1700-4dc5-bd95-4d081019713b/,Emmanuelle,,07/01/2015,11.0:45,12.0:45,47.86094300000,-4.092896000000,,Plage de Bénodet (Finistère),57137,observation-20a433a0-1700-4dc5-bd95-4d081019713b-2,https://biolit.fr/observations/observation-20a433a0-1700-4dc5-bd95-4d081019713b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/z-scaled.jpg,,FALSE, +N1,61448,sortie-a549f57d-de00-490c-a0ad-f819e03ff42f,https://biolit.fr/sorties/sortie-a549f57d-de00-490c-a0ad-f819e03ff42f/,Phil,,07/01/2015,12.0000000,12.0:35,47.784947000000,-3.67070800000,,Brigneau - Moelan sur Mer - Finistère,57139,observation-a549f57d-de00-490c-a0ad-f819e03ff42f,https://biolit.fr/observations/observation-a549f57d-de00-490c-a0ad-f819e03ff42f/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150701_123000-scaled.jpg,,FALSE, +N1,61448,sortie-a549f57d-de00-490c-a0ad-f819e03ff42f,https://biolit.fr/sorties/sortie-a549f57d-de00-490c-a0ad-f819e03ff42f/,Phil,,07/01/2015,12.0000000,12.0:35,47.784947000000,-3.67070800000,,Brigneau - Moelan sur Mer - Finistère,57141,observation-a549f57d-de00-490c-a0ad-f819e03ff42f-2,https://biolit.fr/observations/observation-a549f57d-de00-490c-a0ad-f819e03ff42f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150701_123051-scaled.jpg,,FALSE, +N1,61448,sortie-a549f57d-de00-490c-a0ad-f819e03ff42f,https://biolit.fr/sorties/sortie-a549f57d-de00-490c-a0ad-f819e03ff42f/,Phil,,07/01/2015,12.0000000,12.0:35,47.784947000000,-3.67070800000,,Brigneau - Moelan sur Mer - Finistère,57143,observation-a549f57d-de00-490c-a0ad-f819e03ff42f-3,https://biolit.fr/observations/observation-a549f57d-de00-490c-a0ad-f819e03ff42f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150701_123206-scaled.jpg,,FALSE, +N1,61449,sortie-d161f167-d1f7-432a-b9a2-5981f44a9600,https://biolit.fr/sorties/sortie-d161f167-d1f7-432a-b9a2-5981f44a9600/,Phil,,07/01/2015,12.0:25,12.0000000,47.784807000000,-3.670606000000,,Brigneau - Moëlan sur Mer - Finistère,57145,observation-d161f167-d1f7-432a-b9a2-5981f44a9600,https://biolit.fr/observations/observation-d161f167-d1f7-432a-b9a2-5981f44a9600/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150701_122905-scaled.jpg,,FALSE, +N1,61449,sortie-d161f167-d1f7-432a-b9a2-5981f44a9600,https://biolit.fr/sorties/sortie-d161f167-d1f7-432a-b9a2-5981f44a9600/,Phil,,07/01/2015,12.0:25,12.0000000,47.784807000000,-3.670606000000,,Brigneau - Moëlan sur Mer - Finistère,57147,observation-d161f167-d1f7-432a-b9a2-5981f44a9600-2,https://biolit.fr/observations/observation-d161f167-d1f7-432a-b9a2-5981f44a9600-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150701_122818-scaled.jpg,,FALSE, +N1,61449,sortie-d161f167-d1f7-432a-b9a2-5981f44a9600,https://biolit.fr/sorties/sortie-d161f167-d1f7-432a-b9a2-5981f44a9600/,Phil,,07/01/2015,12.0:25,12.0000000,47.784807000000,-3.670606000000,,Brigneau - Moëlan sur Mer - Finistère,57149,observation-d161f167-d1f7-432a-b9a2-5981f44a9600-3,https://biolit.fr/observations/observation-d161f167-d1f7-432a-b9a2-5981f44a9600-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150701_122753-scaled.jpg,,FALSE, +N1,61450,sortie-a661d673-a4a6-4671-b091-d52570db2be6,https://biolit.fr/sorties/sortie-a661d673-a4a6-4671-b091-d52570db2be6/,Phil,,07/01/2015,12.000005,12.0:25,47.788556000000,-3.668205000000,,Brigneau - Moëlan su Mer - Finistère,57151,observation-a661d673-a4a6-4671-b091-d52570db2be6,https://biolit.fr/observations/observation-a661d673-a4a6-4671-b091-d52570db2be6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150701_120747-scaled.jpg,,FALSE, +N1,61450,sortie-a661d673-a4a6-4671-b091-d52570db2be6,https://biolit.fr/sorties/sortie-a661d673-a4a6-4671-b091-d52570db2be6/,Phil,,07/01/2015,12.000005,12.0:25,47.788556000000,-3.668205000000,,Brigneau - Moëlan su Mer - Finistère,57153,observation-a661d673-a4a6-4671-b091-d52570db2be6-2,https://biolit.fr/observations/observation-a661d673-a4a6-4671-b091-d52570db2be6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150701_120453-scaled.jpg,,FALSE, +N1,61450,sortie-a661d673-a4a6-4671-b091-d52570db2be6,https://biolit.fr/sorties/sortie-a661d673-a4a6-4671-b091-d52570db2be6/,Phil,,07/01/2015,12.000005,12.0:25,47.788556000000,-3.668205000000,,Brigneau - Moëlan su Mer - Finistère,57155,observation-a661d673-a4a6-4671-b091-d52570db2be6-3,https://biolit.fr/observations/observation-a661d673-a4a6-4671-b091-d52570db2be6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150701_120541-scaled.jpg,,FALSE, +N1,61450,sortie-a661d673-a4a6-4671-b091-d52570db2be6,https://biolit.fr/sorties/sortie-a661d673-a4a6-4671-b091-d52570db2be6/,Phil,,07/01/2015,12.000005,12.0:25,47.788556000000,-3.668205000000,,Brigneau - Moëlan su Mer - Finistère,57157,observation-a661d673-a4a6-4671-b091-d52570db2be6-4,https://biolit.fr/observations/observation-a661d673-a4a6-4671-b091-d52570db2be6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150701_120934-scaled.jpg,,FALSE, +N1,61451,sortie-de78e790-b2b0-47bd-8d0b-8719765aa90f,https://biolit.fr/sorties/sortie-de78e790-b2b0-47bd-8d0b-8719765aa90f/,Phil,,07/01/2015,11.0000000,12.0000000,47.789621000000,-3.668859000000,,Brigneau - Moëlan sur Mer - Finistère,57159,observation-de78e790-b2b0-47bd-8d0b-8719765aa90f,https://biolit.fr/observations/observation-de78e790-b2b0-47bd-8d0b-8719765aa90f/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150701_115652-scaled.jpg,,FALSE, +N1,61451,sortie-de78e790-b2b0-47bd-8d0b-8719765aa90f,https://biolit.fr/sorties/sortie-de78e790-b2b0-47bd-8d0b-8719765aa90f/,Phil,,07/01/2015,11.0000000,12.0000000,47.789621000000,-3.668859000000,,Brigneau - Moëlan sur Mer - Finistère,57161,observation-de78e790-b2b0-47bd-8d0b-8719765aa90f-2,https://biolit.fr/observations/observation-de78e790-b2b0-47bd-8d0b-8719765aa90f-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150701_115401-scaled.jpg,,FALSE, +N1,61451,sortie-de78e790-b2b0-47bd-8d0b-8719765aa90f,https://biolit.fr/sorties/sortie-de78e790-b2b0-47bd-8d0b-8719765aa90f/,Phil,,07/01/2015,11.0000000,12.0000000,47.789621000000,-3.668859000000,,Brigneau - Moëlan sur Mer - Finistère,57163,observation-de78e790-b2b0-47bd-8d0b-8719765aa90f-3,https://biolit.fr/observations/observation-de78e790-b2b0-47bd-8d0b-8719765aa90f-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150701_115703-scaled.jpg,,FALSE, +N1,61451,sortie-de78e790-b2b0-47bd-8d0b-8719765aa90f,https://biolit.fr/sorties/sortie-de78e790-b2b0-47bd-8d0b-8719765aa90f/,Phil,,07/01/2015,11.0000000,12.0000000,47.789621000000,-3.668859000000,,Brigneau - Moëlan sur Mer - Finistère,57165,observation-de78e790-b2b0-47bd-8d0b-8719765aa90f-4,https://biolit.fr/observations/observation-de78e790-b2b0-47bd-8d0b-8719765aa90f-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150701_115800-scaled.jpg,,FALSE, +N1,61452,sortie-6c8ba18e-368e-4b2b-840b-6cd15e24cf03,https://biolit.fr/sorties/sortie-6c8ba18e-368e-4b2b-840b-6cd15e24cf03/,Phil,,6/30/2015 0:00,16.0000000,16.0:15,47.861575000000,-4.112461000000,,Sainte-Marine - Finistère,57167,observation-6c8ba18e-368e-4b2b-840b-6cd15e24cf03,https://biolit.fr/observations/observation-6c8ba18e-368e-4b2b-840b-6cd15e24cf03/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150630_160906-scaled.jpg,,FALSE, +N1,61453,sortie-863b6052-e70e-40ca-bd5c-26178cc7d758,https://biolit.fr/sorties/sortie-863b6052-e70e-40ca-bd5c-26178cc7d758/,Emmanuelle,,6/30/2015 0:00,13.0000000,22.0:25,47.863419000000,-4.126327000000,,Plage de sainte Marine,57169,observation-863b6052-e70e-40ca-bd5c-26178cc7d758,https://biolit.fr/observations/observation-863b6052-e70e-40ca-bd5c-26178cc7d758/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150630_135323-scaled.jpg,,FALSE, +N1,61454,sortie-3142e4b0-9504-4e15-a565-af2841becdd4,https://biolit.fr/sorties/sortie-3142e4b0-9504-4e15-a565-af2841becdd4/,Emmanuelle,,07/01/2015,11.0000000,14.0000000,47.861404000000,-4.094270000000,,Plage de Bénodet,57171,observation-3142e4b0-9504-4e15-a565-af2841becdd4,https://biolit.fr/observations/observation-3142e4b0-9504-4e15-a565-af2841becdd4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150701_121924-scaled.jpg,,FALSE, +N1,61454,sortie-3142e4b0-9504-4e15-a565-af2841becdd4,https://biolit.fr/sorties/sortie-3142e4b0-9504-4e15-a565-af2841becdd4/,Emmanuelle,,07/01/2015,11.0000000,14.0000000,47.861404000000,-4.094270000000,,Plage de Bénodet,57173,observation-3142e4b0-9504-4e15-a565-af2841becdd4-2,https://biolit.fr/observations/observation-3142e4b0-9504-4e15-a565-af2841becdd4-2/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20150701_121742-scaled.jpg,,TRUE, +N1,61454,sortie-3142e4b0-9504-4e15-a565-af2841becdd4,https://biolit.fr/sorties/sortie-3142e4b0-9504-4e15-a565-af2841becdd4/,Emmanuelle,,07/01/2015,11.0000000,14.0000000,47.861404000000,-4.094270000000,,Plage de Bénodet,57175,observation-3142e4b0-9504-4e15-a565-af2841becdd4-3,https://biolit.fr/observations/observation-3142e4b0-9504-4e15-a565-af2841becdd4-3/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20150701_121758-scaled.jpg,,TRUE, +N1,61454,sortie-3142e4b0-9504-4e15-a565-af2841becdd4,https://biolit.fr/sorties/sortie-3142e4b0-9504-4e15-a565-af2841becdd4/,Emmanuelle,,07/01/2015,11.0000000,14.0000000,47.861404000000,-4.094270000000,,Plage de Bénodet,57177,observation-3142e4b0-9504-4e15-a565-af2841becdd4-4,https://biolit.fr/observations/observation-3142e4b0-9504-4e15-a565-af2841becdd4-4/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/20150701_121805-scaled.jpg,,TRUE, +N1,61454,sortie-3142e4b0-9504-4e15-a565-af2841becdd4,https://biolit.fr/sorties/sortie-3142e4b0-9504-4e15-a565-af2841becdd4/,Emmanuelle,,07/01/2015,11.0000000,14.0000000,47.861404000000,-4.094270000000,,Plage de Bénodet,57179,observation-3142e4b0-9504-4e15-a565-af2841becdd4-5,https://biolit.fr/observations/observation-3142e4b0-9504-4e15-a565-af2841becdd4-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/1-scaled.jpg,,TRUE,non-identifiable +N1,61455,sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3,https://biolit.fr/sorties/sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2015,14.0000000,16.0000000,43.5209830000,7.031721000000,,"Pointe du Batéguier, côté ouest, île Sainte-Marguerite",57180,observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3,https://biolit.fr/observations/observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/Actinie rouge(2)-scaled.jpg,,TRUE, +N1,61455,sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3,https://biolit.fr/sorties/sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2015,14.0000000,16.0000000,43.5209830000,7.031721000000,,"Pointe du Batéguier, côté ouest, île Sainte-Marguerite",57182,observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-2,https://biolit.fr/observations/observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Copie de Bouche de sang (2)-scaled.jpg,,FALSE, +N1,61455,sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3,https://biolit.fr/sorties/sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2015,14.0000000,16.0000000,43.5209830000,7.031721000000,,"Pointe du Batéguier, côté ouest, île Sainte-Marguerite",57184,observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-3,https://biolit.fr/observations/observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-3/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/crevette(1)-scaled.jpg,,TRUE, +N1,61455,sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3,https://biolit.fr/sorties/sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2015,14.0000000,16.0000000,43.5209830000,7.031721000000,,"Pointe du Batéguier, côté ouest, île Sainte-Marguerite",57186,observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-4,https://biolit.fr/observations/observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pontes de bouches de sang (1)-scaled.jpg,,FALSE, +N1,61455,sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3,https://biolit.fr/sorties/sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2015,14.0000000,16.0000000,43.5209830000,7.031721000000,,"Pointe du Batéguier, côté ouest, île Sainte-Marguerite",57188,observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-5,https://biolit.fr/observations/observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ponte poissons (1)-scaled.jpg,,FALSE, +N1,61455,sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3,https://biolit.fr/sorties/sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2015,14.0000000,16.0000000,43.5209830000,7.031721000000,,"Pointe du Batéguier, côté ouest, île Sainte-Marguerite",57190,observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-6,https://biolit.fr/observations/observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle bleue (1)-scaled.jpg,,FALSE, +N1,61455,sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3,https://biolit.fr/sorties/sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2015,14.0000000,16.0000000,43.5209830000,7.031721000000,,"Pointe du Batéguier, côté ouest, île Sainte-Marguerite",57192,observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-7,https://biolit.fr/observations/observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-7/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/Oursin violet (1)-scaled.jpg,,TRUE, +N1,61455,sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3,https://biolit.fr/sorties/sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2015,14.0000000,16.0000000,43.5209830000,7.031721000000,,"Pointe du Batéguier, côté ouest, île Sainte-Marguerite",57194,observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-8,https://biolit.fr/observations/observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Holothurie(1)-scaled.jpg,,FALSE, +N1,61455,sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3,https://biolit.fr/sorties/sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2015,14.0000000,16.0000000,43.5209830000,7.031721000000,,"Pointe du Batéguier, côté ouest, île Sainte-Marguerite",57196,observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-9,https://biolit.fr/observations/observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Herbier de posidonie(1)-scaled.jpg,,FALSE, +N1,61455,sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3,https://biolit.fr/sorties/sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2015,14.0000000,16.0000000,43.5209830000,7.031721000000,,"Pointe du Batéguier, côté ouest, île Sainte-Marguerite",57198,observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-10,https://biolit.fr/observations/observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-10/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/2023/07/Etoile épineuse (1)-scaled.jpg,,TRUE, +N1,61455,sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3,https://biolit.fr/sorties/sortie-53a4fb43-3682-43f4-83c4-bfeb1cd276b3/,CPIE Iles de Lérins et Pays d'Azur,,06/10/2015,14.0000000,16.0000000,43.5209830000,7.031721000000,,"Pointe du Batéguier, côté ouest, île Sainte-Marguerite",57200,observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-11,https://biolit.fr/observations/observation-53a4fb43-3682-43f4-83c4-bfeb1cd276b3-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/Eponges(1)-scaled.jpg,,FALSE, +N1,61456,sortie-ca6c578e-8a75-4ea4-be44-5953c7d65473,https://biolit.fr/sorties/sortie-ca6c578e-8a75-4ea4-be44-5953c7d65473/,Phil,,6/19/2015 0:00,10.0:25,10.0:35,47.871101000000,-3.930932000000,,Concarneau -Finistère,57202,observation-ca6c578e-8a75-4ea4-be44-5953c7d65473,https://biolit.fr/observations/observation-ca6c578e-8a75-4ea4-be44-5953c7d65473/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150619_102614-scaled.jpg,,FALSE, +N1,61456,sortie-ca6c578e-8a75-4ea4-be44-5953c7d65473,https://biolit.fr/sorties/sortie-ca6c578e-8a75-4ea4-be44-5953c7d65473/,Phil,,6/19/2015 0:00,10.0:25,10.0:35,47.871101000000,-3.930932000000,,Concarneau -Finistère,57204,observation-ca6c578e-8a75-4ea4-be44-5953c7d65473-2,https://biolit.fr/observations/observation-ca6c578e-8a75-4ea4-be44-5953c7d65473-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150619_102746-scaled.jpg,,FALSE, +N1,61456,sortie-ca6c578e-8a75-4ea4-be44-5953c7d65473,https://biolit.fr/sorties/sortie-ca6c578e-8a75-4ea4-be44-5953c7d65473/,Phil,,6/19/2015 0:00,10.0:25,10.0:35,47.871101000000,-3.930932000000,,Concarneau -Finistère,57206,observation-ca6c578e-8a75-4ea4-be44-5953c7d65473-3,https://biolit.fr/observations/observation-ca6c578e-8a75-4ea4-be44-5953c7d65473-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150619_102926-scaled.jpg,,FALSE, +N1,61456,sortie-ca6c578e-8a75-4ea4-be44-5953c7d65473,https://biolit.fr/sorties/sortie-ca6c578e-8a75-4ea4-be44-5953c7d65473/,Phil,,6/19/2015 0:00,10.0:25,10.0:35,47.871101000000,-3.930932000000,,Concarneau -Finistère,57208,observation-ca6c578e-8a75-4ea4-be44-5953c7d65473-4,https://biolit.fr/observations/observation-ca6c578e-8a75-4ea4-be44-5953c7d65473-4/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20150619_103239-scaled.jpg,,TRUE,Identifiable +N1,61456,sortie-ca6c578e-8a75-4ea4-be44-5953c7d65473,https://biolit.fr/sorties/sortie-ca6c578e-8a75-4ea4-be44-5953c7d65473/,Phil,,6/19/2015 0:00,10.0:25,10.0:35,47.871101000000,-3.930932000000,,Concarneau -Finistère,57210,observation-ca6c578e-8a75-4ea4-be44-5953c7d65473-5,https://biolit.fr/observations/observation-ca6c578e-8a75-4ea4-be44-5953c7d65473-5/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20150619_103249-scaled.jpg,,TRUE,Identifiable +N1,61457,sortie-ac92ad88-b172-4b9d-8334-b73ff827e711,https://biolit.fr/sorties/sortie-ac92ad88-b172-4b9d-8334-b73ff827e711/,Phil,,6/19/2015 0:00,10.000005,10.0000000,47.871986000000,-3.932082000000,,Concarneau - Finistère,57212,observation-ac92ad88-b172-4b9d-8334-b73ff827e711,https://biolit.fr/observations/observation-ac92ad88-b172-4b9d-8334-b73ff827e711/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20150619_101221-scaled.jpg,,TRUE,Identifiable +N1,61457,sortie-ac92ad88-b172-4b9d-8334-b73ff827e711,https://biolit.fr/sorties/sortie-ac92ad88-b172-4b9d-8334-b73ff827e711/,Phil,,6/19/2015 0:00,10.000005,10.0000000,47.871986000000,-3.932082000000,,Concarneau - Finistère,57214,observation-ac92ad88-b172-4b9d-8334-b73ff827e711-2,https://biolit.fr/observations/observation-ac92ad88-b172-4b9d-8334-b73ff827e711-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20150619_101240-scaled.jpg,,TRUE,Identifiable +N1,61457,sortie-ac92ad88-b172-4b9d-8334-b73ff827e711,https://biolit.fr/sorties/sortie-ac92ad88-b172-4b9d-8334-b73ff827e711/,Phil,,6/19/2015 0:00,10.000005,10.0000000,47.871986000000,-3.932082000000,,Concarneau - Finistère,57216,observation-ac92ad88-b172-4b9d-8334-b73ff827e711-3,https://biolit.fr/observations/observation-ac92ad88-b172-4b9d-8334-b73ff827e711-3/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/20150619_101252-scaled.jpg,,TRUE,Identifiable +N1,61457,sortie-ac92ad88-b172-4b9d-8334-b73ff827e711,https://biolit.fr/sorties/sortie-ac92ad88-b172-4b9d-8334-b73ff827e711/,Phil,,6/19/2015 0:00,10.000005,10.0000000,47.871986000000,-3.932082000000,,Concarneau - Finistère,57218,observation-ac92ad88-b172-4b9d-8334-b73ff827e711-4,https://biolit.fr/observations/observation-ac92ad88-b172-4b9d-8334-b73ff827e711-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150619_101720-scaled.jpg,,FALSE, +N1,61457,sortie-ac92ad88-b172-4b9d-8334-b73ff827e711,https://biolit.fr/sorties/sortie-ac92ad88-b172-4b9d-8334-b73ff827e711/,Phil,,6/19/2015 0:00,10.000005,10.0000000,47.871986000000,-3.932082000000,,Concarneau - Finistère,57220,observation-ac92ad88-b172-4b9d-8334-b73ff827e711-5,https://biolit.fr/observations/observation-ac92ad88-b172-4b9d-8334-b73ff827e711-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150619_102019-scaled.jpg,,FALSE, +N1,61458,sortie-5baf1133-8d69-4c52-b3e9-6ff7939076b3,https://biolit.fr/sorties/sortie-5baf1133-8d69-4c52-b3e9-6ff7939076b3/,Phil,,6/19/2015 0:00,10.0000000,10.000005,47.872711000000,-3.931254000000,,Concarneau - Finistère,57222,observation-5baf1133-8d69-4c52-b3e9-6ff7939076b3,https://biolit.fr/observations/observation-5baf1133-8d69-4c52-b3e9-6ff7939076b3/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/20150619_100337-scaled.jpg,,TRUE, +N1,61458,sortie-5baf1133-8d69-4c52-b3e9-6ff7939076b3,https://biolit.fr/sorties/sortie-5baf1133-8d69-4c52-b3e9-6ff7939076b3/,Phil,,6/19/2015 0:00,10.0000000,10.000005,47.872711000000,-3.931254000000,,Concarneau - Finistère,57224,observation-5baf1133-8d69-4c52-b3e9-6ff7939076b3-2,https://biolit.fr/observations/observation-5baf1133-8d69-4c52-b3e9-6ff7939076b3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150619_100605-scaled.jpg,,FALSE, +N1,61459,sortie-34b82af3-5402-458f-ac7d-bf0cdceddfa0,https://biolit.fr/sorties/sortie-34b82af3-5402-458f-ac7d-bf0cdceddfa0/,Phil,,6/17/2015 0:00,11.0000000,11.0000000,48.079115000000,-4.553504000000,,Pors Lesven - Beuzec Cap Sizun - Finistère,57226,observation-34b82af3-5402-458f-ac7d-bf0cdceddfa0,https://biolit.fr/observations/observation-34b82af3-5402-458f-ac7d-bf0cdceddfa0/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/12.jpg,,TRUE, +N1,61459,sortie-34b82af3-5402-458f-ac7d-bf0cdceddfa0,https://biolit.fr/sorties/sortie-34b82af3-5402-458f-ac7d-bf0cdceddfa0/,Phil,,6/17/2015 0:00,11.0000000,11.0000000,48.079115000000,-4.553504000000,,Pors Lesven - Beuzec Cap Sizun - Finistère,57228,observation-34b82af3-5402-458f-ac7d-bf0cdceddfa0-2,https://biolit.fr/observations/observation-34b82af3-5402-458f-ac7d-bf0cdceddfa0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/5-scaled.jpg,,FALSE, +N1,61459,sortie-34b82af3-5402-458f-ac7d-bf0cdceddfa0,https://biolit.fr/sorties/sortie-34b82af3-5402-458f-ac7d-bf0cdceddfa0/,Phil,,6/17/2015 0:00,11.0000000,11.0000000,48.079115000000,-4.553504000000,,Pors Lesven - Beuzec Cap Sizun - Finistère,57229,observation-34b82af3-5402-458f-ac7d-bf0cdceddfa0-3,https://biolit.fr/observations/observation-34b82af3-5402-458f-ac7d-bf0cdceddfa0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/8-scaled.jpg,,FALSE, +N1,61459,sortie-34b82af3-5402-458f-ac7d-bf0cdceddfa0,https://biolit.fr/sorties/sortie-34b82af3-5402-458f-ac7d-bf0cdceddfa0/,Phil,,6/17/2015 0:00,11.0000000,11.0000000,48.079115000000,-4.553504000000,,Pors Lesven - Beuzec Cap Sizun - Finistère,57230,observation-34b82af3-5402-458f-ac7d-bf0cdceddfa0-4,https://biolit.fr/observations/observation-34b82af3-5402-458f-ac7d-bf0cdceddfa0-4/,Spondyliosoma cantharus,Dorade grise,,https://biolit.fr/wp-content/uploads/2023/07/9-scaled.jpg,,TRUE, +N1,61460,sortie-be6c9daf-d025-4294-8143-d634c5cf9150,https://biolit.fr/sorties/sortie-be6c9daf-d025-4294-8143-d634c5cf9150/,Phil,,6/21/2015 0:00,9.0:45,9.0:55,47.856355000000,-3.905806000000,,Plage du Cabellou - Concarneau - Finistère,57231,observation-be6c9daf-d025-4294-8143-d634c5cf9150,https://biolit.fr/observations/observation-be6c9daf-d025-4294-8143-d634c5cf9150/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150621_094959-scaled.jpg,,FALSE, +N1,61460,sortie-be6c9daf-d025-4294-8143-d634c5cf9150,https://biolit.fr/sorties/sortie-be6c9daf-d025-4294-8143-d634c5cf9150/,Phil,,6/21/2015 0:00,9.0:45,9.0:55,47.856355000000,-3.905806000000,,Plage du Cabellou - Concarneau - Finistère,57233,observation-be6c9daf-d025-4294-8143-d634c5cf9150-2,https://biolit.fr/observations/observation-be6c9daf-d025-4294-8143-d634c5cf9150-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150621_094747-scaled.jpg,,FALSE, +N1,61460,sortie-be6c9daf-d025-4294-8143-d634c5cf9150,https://biolit.fr/sorties/sortie-be6c9daf-d025-4294-8143-d634c5cf9150/,Phil,,6/21/2015 0:00,9.0:45,9.0:55,47.856355000000,-3.905806000000,,Plage du Cabellou - Concarneau - Finistère,57235,observation-be6c9daf-d025-4294-8143-d634c5cf9150-3,https://biolit.fr/observations/observation-be6c9daf-d025-4294-8143-d634c5cf9150-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150621_094805-scaled.jpg,,FALSE, +N1,61460,sortie-be6c9daf-d025-4294-8143-d634c5cf9150,https://biolit.fr/sorties/sortie-be6c9daf-d025-4294-8143-d634c5cf9150/,Phil,,6/21/2015 0:00,9.0:45,9.0:55,47.856355000000,-3.905806000000,,Plage du Cabellou - Concarneau - Finistère,57237,observation-be6c9daf-d025-4294-8143-d634c5cf9150-4,https://biolit.fr/observations/observation-be6c9daf-d025-4294-8143-d634c5cf9150-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150621_094809-scaled.jpg,,FALSE, +N1,61461,sortie-d89e3031-f71a-452c-a0de-4fea2daefcb6,https://biolit.fr/sorties/sortie-d89e3031-f71a-452c-a0de-4fea2daefcb6/,Phil,,6/15/2015 0:00,16.0000000,16.0000000,48.146956000000,-4.273073000000,,Plage de Ty Anquer - Ploeven - Finistère,57239,observation-d89e3031-f71a-452c-a0de-4fea2daefcb6,https://biolit.fr/observations/observation-d89e3031-f71a-452c-a0de-4fea2daefcb6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04511.JPG,,FALSE, +N1,61461,sortie-d89e3031-f71a-452c-a0de-4fea2daefcb6,https://biolit.fr/sorties/sortie-d89e3031-f71a-452c-a0de-4fea2daefcb6/,Phil,,6/15/2015 0:00,16.0000000,16.0000000,48.146956000000,-4.273073000000,,Plage de Ty Anquer - Ploeven - Finistère,57241,observation-d89e3031-f71a-452c-a0de-4fea2daefcb6-2,https://biolit.fr/observations/observation-d89e3031-f71a-452c-a0de-4fea2daefcb6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04512.JPG,,FALSE, +N1,61461,sortie-d89e3031-f71a-452c-a0de-4fea2daefcb6,https://biolit.fr/sorties/sortie-d89e3031-f71a-452c-a0de-4fea2daefcb6/,Phil,,6/15/2015 0:00,16.0000000,16.0000000,48.146956000000,-4.273073000000,,Plage de Ty Anquer - Ploeven - Finistère,57243,observation-d89e3031-f71a-452c-a0de-4fea2daefcb6-3,https://biolit.fr/observations/observation-d89e3031-f71a-452c-a0de-4fea2daefcb6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04514.JPG,,FALSE, +N1,61461,sortie-d89e3031-f71a-452c-a0de-4fea2daefcb6,https://biolit.fr/sorties/sortie-d89e3031-f71a-452c-a0de-4fea2daefcb6/,Phil,,6/15/2015 0:00,16.0000000,16.0000000,48.146956000000,-4.273073000000,,Plage de Ty Anquer - Ploeven - Finistère,57245,observation-d89e3031-f71a-452c-a0de-4fea2daefcb6-4,https://biolit.fr/observations/observation-d89e3031-f71a-452c-a0de-4fea2daefcb6-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04542.JPG,,FALSE, +N1,61461,sortie-d89e3031-f71a-452c-a0de-4fea2daefcb6,https://biolit.fr/sorties/sortie-d89e3031-f71a-452c-a0de-4fea2daefcb6/,Phil,,6/15/2015 0:00,16.0000000,16.0000000,48.146956000000,-4.273073000000,,Plage de Ty Anquer - Ploeven - Finistère,57247,observation-d89e3031-f71a-452c-a0de-4fea2daefcb6-5,https://biolit.fr/observations/observation-d89e3031-f71a-452c-a0de-4fea2daefcb6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04544.JPG,,FALSE, +N1,61461,sortie-d89e3031-f71a-452c-a0de-4fea2daefcb6,https://biolit.fr/sorties/sortie-d89e3031-f71a-452c-a0de-4fea2daefcb6/,Phil,,6/15/2015 0:00,16.0000000,16.0000000,48.146956000000,-4.273073000000,,Plage de Ty Anquer - Ploeven - Finistère,57249,observation-d89e3031-f71a-452c-a0de-4fea2daefcb6-6,https://biolit.fr/observations/observation-d89e3031-f71a-452c-a0de-4fea2daefcb6-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04547.JPG,,FALSE, +N1,61462,sortie-72ed6e78-d1df-444e-a5af-4d51ca228aa2,https://biolit.fr/sorties/sortie-72ed6e78-d1df-444e-a5af-4d51ca228aa2/,Phil,,6/15/2015 0:00,16.0:45,17.0000000,48.144281000000,-4.274104000000,,Plage de Tréguer - Plonevez Porzay - Finistère,57251,observation-72ed6e78-d1df-444e-a5af-4d51ca228aa2,https://biolit.fr/observations/observation-72ed6e78-d1df-444e-a5af-4d51ca228aa2/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/DSC04540_0.JPG,,TRUE, +N1,61462,sortie-72ed6e78-d1df-444e-a5af-4d51ca228aa2,https://biolit.fr/sorties/sortie-72ed6e78-d1df-444e-a5af-4d51ca228aa2/,Phil,,6/15/2015 0:00,16.0:45,17.0000000,48.144281000000,-4.274104000000,,Plage de Tréguer - Plonevez Porzay - Finistère,57253,observation-72ed6e78-d1df-444e-a5af-4d51ca228aa2-2,https://biolit.fr/observations/observation-72ed6e78-d1df-444e-a5af-4d51ca228aa2-2/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/DSC04531_0.JPG,,TRUE, +N1,61462,sortie-72ed6e78-d1df-444e-a5af-4d51ca228aa2,https://biolit.fr/sorties/sortie-72ed6e78-d1df-444e-a5af-4d51ca228aa2/,Phil,,6/15/2015 0:00,16.0:45,17.0000000,48.144281000000,-4.274104000000,,Plage de Tréguer - Plonevez Porzay - Finistère,57255,observation-72ed6e78-d1df-444e-a5af-4d51ca228aa2-3,https://biolit.fr/observations/observation-72ed6e78-d1df-444e-a5af-4d51ca228aa2-3/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/DSC04537_0.JPG,,TRUE, +N1,61462,sortie-72ed6e78-d1df-444e-a5af-4d51ca228aa2,https://biolit.fr/sorties/sortie-72ed6e78-d1df-444e-a5af-4d51ca228aa2/,Phil,,6/15/2015 0:00,16.0:45,17.0000000,48.144281000000,-4.274104000000,,Plage de Tréguer - Plonevez Porzay - Finistère,57257,observation-72ed6e78-d1df-444e-a5af-4d51ca228aa2-4,https://biolit.fr/observations/observation-72ed6e78-d1df-444e-a5af-4d51ca228aa2-4/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/DSC04539_0.JPG,,TRUE, +N1,61462,sortie-72ed6e78-d1df-444e-a5af-4d51ca228aa2,https://biolit.fr/sorties/sortie-72ed6e78-d1df-444e-a5af-4d51ca228aa2/,Phil,,6/15/2015 0:00,16.0:45,17.0000000,48.144281000000,-4.274104000000,,Plage de Tréguer - Plonevez Porzay - Finistère,57259,observation-72ed6e78-d1df-444e-a5af-4d51ca228aa2-5,https://biolit.fr/observations/observation-72ed6e78-d1df-444e-a5af-4d51ca228aa2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04528_0.JPG,,FALSE, +N1,61462,sortie-72ed6e78-d1df-444e-a5af-4d51ca228aa2,https://biolit.fr/sorties/sortie-72ed6e78-d1df-444e-a5af-4d51ca228aa2/,Phil,,6/15/2015 0:00,16.0:45,17.0000000,48.144281000000,-4.274104000000,,Plage de Tréguer - Plonevez Porzay - Finistère,57261,observation-72ed6e78-d1df-444e-a5af-4d51ca228aa2-6,https://biolit.fr/observations/observation-72ed6e78-d1df-444e-a5af-4d51ca228aa2-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04523_0.JPG,,FALSE, +N1,61462,sortie-72ed6e78-d1df-444e-a5af-4d51ca228aa2,https://biolit.fr/sorties/sortie-72ed6e78-d1df-444e-a5af-4d51ca228aa2/,Phil,,6/15/2015 0:00,16.0:45,17.0000000,48.144281000000,-4.274104000000,,Plage de Tréguer - Plonevez Porzay - Finistère,57263,observation-72ed6e78-d1df-444e-a5af-4d51ca228aa2-7,https://biolit.fr/observations/observation-72ed6e78-d1df-444e-a5af-4d51ca228aa2-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04524)_0.JPG,,FALSE, +N1,61463,sortie-3820201e-d867-4742-b134-dab8e80e893b,https://biolit.fr/sorties/sortie-3820201e-d867-4742-b134-dab8e80e893b/,Phil,,6/15/2015 0:00,16.0000000,16.0000000,48.146420000000,-4.275066000000,,Ile Salgren - Plonevez Porzay - Finistère,57265,observation-3820201e-d867-4742-b134-dab8e80e893b,https://biolit.fr/observations/observation-3820201e-d867-4742-b134-dab8e80e893b/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04522.JPG,,FALSE, +N1,61463,sortie-3820201e-d867-4742-b134-dab8e80e893b,https://biolit.fr/sorties/sortie-3820201e-d867-4742-b134-dab8e80e893b/,Phil,,6/15/2015 0:00,16.0000000,16.0000000,48.146420000000,-4.275066000000,,Ile Salgren - Plonevez Porzay - Finistère,57267,observation-3820201e-d867-4742-b134-dab8e80e893b-2,https://biolit.fr/observations/observation-3820201e-d867-4742-b134-dab8e80e893b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04517.JPG,,FALSE, +N1,61463,sortie-3820201e-d867-4742-b134-dab8e80e893b,https://biolit.fr/sorties/sortie-3820201e-d867-4742-b134-dab8e80e893b/,Phil,,6/15/2015 0:00,16.0000000,16.0000000,48.146420000000,-4.275066000000,,Ile Salgren - Plonevez Porzay - Finistère,57269,observation-3820201e-d867-4742-b134-dab8e80e893b-3,https://biolit.fr/observations/observation-3820201e-d867-4742-b134-dab8e80e893b-3/,Littorina compressa,Littorine à lignes noires,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04521.JPG,,TRUE, +N1,61464,sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c,https://biolit.fr/sorties/sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c/,Phil,,6/13/2015 0:00,11.0000000,11.0:55,47.796365000000,-4.371534000000,,Penmarc'h - Finistère,57271,observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c,https://biolit.fr/observations/observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150613_113844-scaled.jpg,,FALSE, +N1,61464,sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c,https://biolit.fr/sorties/sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c/,Phil,,6/13/2015 0:00,11.0000000,11.0:55,47.796365000000,-4.371534000000,,Penmarc'h - Finistère,57273,observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-2,https://biolit.fr/observations/observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150613_113452-scaled.jpg,,FALSE, +N1,61464,sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c,https://biolit.fr/sorties/sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c/,Phil,,6/13/2015 0:00,11.0000000,11.0:55,47.796365000000,-4.371534000000,,Penmarc'h - Finistère,57275,observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-3,https://biolit.fr/observations/observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150613_113823-scaled.jpg,,FALSE, +N1,61464,sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c,https://biolit.fr/sorties/sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c/,Phil,,6/13/2015 0:00,11.0000000,11.0:55,47.796365000000,-4.371534000000,,Penmarc'h - Finistère,57277,observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-4,https://biolit.fr/observations/observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-4/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150613_114159-scaled.jpg,,TRUE, +N1,61464,sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c,https://biolit.fr/sorties/sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c/,Phil,,6/13/2015 0:00,11.0000000,11.0:55,47.796365000000,-4.371534000000,,Penmarc'h - Finistère,57279,observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-5,https://biolit.fr/observations/observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-5/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/20150613_114807-scaled.jpg,,TRUE, +N1,61464,sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c,https://biolit.fr/sorties/sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c/,Phil,,6/13/2015 0:00,11.0000000,11.0:55,47.796365000000,-4.371534000000,,Penmarc'h - Finistère,57281,observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-6,https://biolit.fr/observations/observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-6/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150613_114957-scaled.jpg,,TRUE, +N1,61464,sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c,https://biolit.fr/sorties/sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c/,Phil,,6/13/2015 0:00,11.0000000,11.0:55,47.796365000000,-4.371534000000,,Penmarc'h - Finistère,57283,observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-7,https://biolit.fr/observations/observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-7/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20150613_115150-scaled.jpg,,TRUE, +N1,61464,sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c,https://biolit.fr/sorties/sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c/,Phil,,6/13/2015 0:00,11.0000000,11.0:55,47.796365000000,-4.371534000000,,Penmarc'h - Finistère,57285,observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-8,https://biolit.fr/observations/observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150613_115528-scaled.jpg,,FALSE, +N1,61464,sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c,https://biolit.fr/sorties/sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c/,Phil,,6/13/2015 0:00,11.0000000,11.0:55,47.796365000000,-4.371534000000,,Penmarc'h - Finistère,57287,observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-9,https://biolit.fr/observations/observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-9/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/20150613_115730-scaled.jpg,,TRUE, +N1,61464,sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c,https://biolit.fr/sorties/sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c/,Phil,,6/13/2015 0:00,11.0000000,11.0:55,47.796365000000,-4.371534000000,,Penmarc'h - Finistère,57289,observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-10,https://biolit.fr/observations/observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150613_115829-scaled.jpg,,FALSE, +N1,61464,sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c,https://biolit.fr/sorties/sortie-ec8648bc-0ee8-4066-8b61-fc61c7c5815c/,Phil,,6/13/2015 0:00,11.0000000,11.0:55,47.796365000000,-4.371534000000,,Penmarc'h - Finistère,57291,observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-11,https://biolit.fr/observations/observation-ec8648bc-0ee8-4066-8b61-fc61c7c5815c-11/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/20150613_115903-scaled.jpg,,TRUE, +N1,61465,sortie-931ec3f6-9487-4f1e-8497-5bb5c2c07351,https://biolit.fr/sorties/sortie-931ec3f6-9487-4f1e-8497-5bb5c2c07351/,Phil,,5/22/2015 0:00,15.0000000,15.0000000,48.832569000000,-3.490799000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57293,observation-931ec3f6-9487-4f1e-8497-5bb5c2c07351,https://biolit.fr/observations/observation-931ec3f6-9487-4f1e-8497-5bb5c2c07351/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150522_153807-scaled.jpg,,FALSE, +N1,61465,sortie-931ec3f6-9487-4f1e-8497-5bb5c2c07351,https://biolit.fr/sorties/sortie-931ec3f6-9487-4f1e-8497-5bb5c2c07351/,Phil,,5/22/2015 0:00,15.0000000,15.0000000,48.832569000000,-3.490799000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57295,observation-931ec3f6-9487-4f1e-8497-5bb5c2c07351-2,https://biolit.fr/observations/observation-931ec3f6-9487-4f1e-8497-5bb5c2c07351-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04133.JPG,,TRUE, +N1,61465,sortie-931ec3f6-9487-4f1e-8497-5bb5c2c07351,https://biolit.fr/sorties/sortie-931ec3f6-9487-4f1e-8497-5bb5c2c07351/,Phil,,5/22/2015 0:00,15.0000000,15.0000000,48.832569000000,-3.490799000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57297,observation-931ec3f6-9487-4f1e-8497-5bb5c2c07351-3,https://biolit.fr/observations/observation-931ec3f6-9487-4f1e-8497-5bb5c2c07351-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04146.JPG,,FALSE, +N1,61465,sortie-931ec3f6-9487-4f1e-8497-5bb5c2c07351,https://biolit.fr/sorties/sortie-931ec3f6-9487-4f1e-8497-5bb5c2c07351/,Phil,,5/22/2015 0:00,15.0000000,15.0000000,48.832569000000,-3.490799000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57299,observation-931ec3f6-9487-4f1e-8497-5bb5c2c07351-4,https://biolit.fr/observations/observation-931ec3f6-9487-4f1e-8497-5bb5c2c07351-4/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04147.JPG,,TRUE, +N1,61465,sortie-931ec3f6-9487-4f1e-8497-5bb5c2c07351,https://biolit.fr/sorties/sortie-931ec3f6-9487-4f1e-8497-5bb5c2c07351/,Phil,,5/22/2015 0:00,15.0000000,15.0000000,48.832569000000,-3.490799000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57301,observation-931ec3f6-9487-4f1e-8497-5bb5c2c07351-5,https://biolit.fr/observations/observation-931ec3f6-9487-4f1e-8497-5bb5c2c07351-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04148.JPG,,FALSE, +N1,61465,sortie-931ec3f6-9487-4f1e-8497-5bb5c2c07351,https://biolit.fr/sorties/sortie-931ec3f6-9487-4f1e-8497-5bb5c2c07351/,Phil,,5/22/2015 0:00,15.0000000,15.0000000,48.832569000000,-3.490799000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57303,observation-931ec3f6-9487-4f1e-8497-5bb5c2c07351-6,https://biolit.fr/observations/observation-931ec3f6-9487-4f1e-8497-5bb5c2c07351-6/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04223.JPG,,TRUE, +N1,61465,sortie-931ec3f6-9487-4f1e-8497-5bb5c2c07351,https://biolit.fr/sorties/sortie-931ec3f6-9487-4f1e-8497-5bb5c2c07351/,Phil,,5/22/2015 0:00,15.0000000,15.0000000,48.832569000000,-3.490799000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57305,observation-931ec3f6-9487-4f1e-8497-5bb5c2c07351-7,https://biolit.fr/observations/observation-931ec3f6-9487-4f1e-8497-5bb5c2c07351-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04225.JPG,,FALSE, +N1,61466,sortie-075c11a4-249f-44c6-8287-3ea825606201,https://biolit.fr/sorties/sortie-075c11a4-249f-44c6-8287-3ea825606201/,Phil,,6/13/2015 0:00,11.0:55,12.0000000,47.797396000000,-4.372294000000,,Penmarc'h - Finistère,57307,observation-075c11a4-249f-44c6-8287-3ea825606201,https://biolit.fr/observations/observation-075c11a4-249f-44c6-8287-3ea825606201/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/20150613_120000-scaled.jpg,,TRUE, +N1,61466,sortie-075c11a4-249f-44c6-8287-3ea825606201,https://biolit.fr/sorties/sortie-075c11a4-249f-44c6-8287-3ea825606201/,Phil,,6/13/2015 0:00,11.0:55,12.0000000,47.797396000000,-4.372294000000,,Penmarc'h - Finistère,57309,observation-075c11a4-249f-44c6-8287-3ea825606201-2,https://biolit.fr/observations/observation-075c11a4-249f-44c6-8287-3ea825606201-2/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/20150613_120012-scaled.jpg,,TRUE, +N1,61466,sortie-075c11a4-249f-44c6-8287-3ea825606201,https://biolit.fr/sorties/sortie-075c11a4-249f-44c6-8287-3ea825606201/,Phil,,6/13/2015 0:00,11.0:55,12.0000000,47.797396000000,-4.372294000000,,Penmarc'h - Finistère,57311,observation-075c11a4-249f-44c6-8287-3ea825606201-3,https://biolit.fr/observations/observation-075c11a4-249f-44c6-8287-3ea825606201-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150613_120024-scaled.jpg,,FALSE, +N1,61466,sortie-075c11a4-249f-44c6-8287-3ea825606201,https://biolit.fr/sorties/sortie-075c11a4-249f-44c6-8287-3ea825606201/,Phil,,6/13/2015 0:00,11.0:55,12.0000000,47.797396000000,-4.372294000000,,Penmarc'h - Finistère,57313,observation-075c11a4-249f-44c6-8287-3ea825606201-4,https://biolit.fr/observations/observation-075c11a4-249f-44c6-8287-3ea825606201-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150613_120042-scaled.jpg,,FALSE, +N1,61466,sortie-075c11a4-249f-44c6-8287-3ea825606201,https://biolit.fr/sorties/sortie-075c11a4-249f-44c6-8287-3ea825606201/,Phil,,6/13/2015 0:00,11.0:55,12.0000000,47.797396000000,-4.372294000000,,Penmarc'h - Finistère,57315,observation-075c11a4-249f-44c6-8287-3ea825606201-5,https://biolit.fr/observations/observation-075c11a4-249f-44c6-8287-3ea825606201-5/,Ulva sp. groupe intestinalis,Ulves tubuleuses du groupe intestinalis,,https://biolit.fr/wp-content/uploads/2023/07/20150613_120128-scaled.jpg,,TRUE, +N1,61467,sortie-4426635e-cb97-4362-a325-97f19dd53979,https://biolit.fr/sorties/sortie-4426635e-cb97-4362-a325-97f19dd53979/,Phil,,6/13/2015 0:00,11.0000000,11.0000000,47.796980000000,-4.372918000000,,Pointe de Penmarc'h - Finistère,57317,observation-4426635e-cb97-4362-a325-97f19dd53979,https://biolit.fr/observations/observation-4426635e-cb97-4362-a325-97f19dd53979/,Pollachius pollachius,Lieu jaune,,https://biolit.fr/wp-content/uploads/2023/07/20150613_110849-scaled.jpg,,TRUE, +N1,61467,sortie-4426635e-cb97-4362-a325-97f19dd53979,https://biolit.fr/sorties/sortie-4426635e-cb97-4362-a325-97f19dd53979/,Phil,,6/13/2015 0:00,11.0000000,11.0000000,47.796980000000,-4.372918000000,,Pointe de Penmarc'h - Finistère,57319,observation-4426635e-cb97-4362-a325-97f19dd53979-2,https://biolit.fr/observations/observation-4426635e-cb97-4362-a325-97f19dd53979-2/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/20150613_111920-scaled.jpg,,TRUE, +N1,61467,sortie-4426635e-cb97-4362-a325-97f19dd53979,https://biolit.fr/sorties/sortie-4426635e-cb97-4362-a325-97f19dd53979/,Phil,,6/13/2015 0:00,11.0000000,11.0000000,47.796980000000,-4.372918000000,,Pointe de Penmarc'h - Finistère,57321,observation-4426635e-cb97-4362-a325-97f19dd53979-3,https://biolit.fr/observations/observation-4426635e-cb97-4362-a325-97f19dd53979-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150613_112122-scaled.jpg,,TRUE, +N1,61467,sortie-4426635e-cb97-4362-a325-97f19dd53979,https://biolit.fr/sorties/sortie-4426635e-cb97-4362-a325-97f19dd53979/,Phil,,6/13/2015 0:00,11.0000000,11.0000000,47.796980000000,-4.372918000000,,Pointe de Penmarc'h - Finistère,57323,observation-4426635e-cb97-4362-a325-97f19dd53979-4,https://biolit.fr/observations/observation-4426635e-cb97-4362-a325-97f19dd53979-4/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/20150613_112318-scaled.jpg,,TRUE, +N1,61467,sortie-4426635e-cb97-4362-a325-97f19dd53979,https://biolit.fr/sorties/sortie-4426635e-cb97-4362-a325-97f19dd53979/,Phil,,6/13/2015 0:00,11.0000000,11.0000000,47.796980000000,-4.372918000000,,Pointe de Penmarc'h - Finistère,57325,observation-4426635e-cb97-4362-a325-97f19dd53979-5,https://biolit.fr/observations/observation-4426635e-cb97-4362-a325-97f19dd53979-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150613_112426-scaled.jpg,,FALSE, +N1,61467,sortie-4426635e-cb97-4362-a325-97f19dd53979,https://biolit.fr/sorties/sortie-4426635e-cb97-4362-a325-97f19dd53979/,Phil,,6/13/2015 0:00,11.0000000,11.0000000,47.796980000000,-4.372918000000,,Pointe de Penmarc'h - Finistère,57327,observation-4426635e-cb97-4362-a325-97f19dd53979-6,https://biolit.fr/observations/observation-4426635e-cb97-4362-a325-97f19dd53979-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150613_112617-scaled.jpg,,FALSE, +N1,61467,sortie-4426635e-cb97-4362-a325-97f19dd53979,https://biolit.fr/sorties/sortie-4426635e-cb97-4362-a325-97f19dd53979/,Phil,,6/13/2015 0:00,11.0000000,11.0000000,47.796980000000,-4.372918000000,,Pointe de Penmarc'h - Finistère,57329,observation-4426635e-cb97-4362-a325-97f19dd53979-7,https://biolit.fr/observations/observation-4426635e-cb97-4362-a325-97f19dd53979-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150613_112913-scaled.jpg,,FALSE, +N1,61467,sortie-4426635e-cb97-4362-a325-97f19dd53979,https://biolit.fr/sorties/sortie-4426635e-cb97-4362-a325-97f19dd53979/,Phil,,6/13/2015 0:00,11.0000000,11.0000000,47.796980000000,-4.372918000000,,Pointe de Penmarc'h - Finistère,57331,observation-4426635e-cb97-4362-a325-97f19dd53979-8,https://biolit.fr/observations/observation-4426635e-cb97-4362-a325-97f19dd53979-8/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150613_113118-scaled.jpg,,TRUE, +N1,61467,sortie-4426635e-cb97-4362-a325-97f19dd53979,https://biolit.fr/sorties/sortie-4426635e-cb97-4362-a325-97f19dd53979/,Phil,,6/13/2015 0:00,11.0000000,11.0000000,47.796980000000,-4.372918000000,,Pointe de Penmarc'h - Finistère,57333,observation-4426635e-cb97-4362-a325-97f19dd53979-9,https://biolit.fr/observations/observation-4426635e-cb97-4362-a325-97f19dd53979-9/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/20150613_113218-scaled.jpg,,TRUE, +N1,61468,sortie-045057bd-1f04-40ff-8b0a-45e945200600,https://biolit.fr/sorties/sortie-045057bd-1f04-40ff-8b0a-45e945200600/,Phil,,6/13/2015 0:00,12.0000000,12.000005,47.7974520000,-4.371857000000,,Penmarc'h - Finistère,57335,observation-045057bd-1f04-40ff-8b0a-45e945200600,https://biolit.fr/observations/observation-045057bd-1f04-40ff-8b0a-45e945200600/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150613_120243-scaled.jpg,,FALSE, +N1,61468,sortie-045057bd-1f04-40ff-8b0a-45e945200600,https://biolit.fr/sorties/sortie-045057bd-1f04-40ff-8b0a-45e945200600/,Phil,,6/13/2015 0:00,12.0000000,12.000005,47.7974520000,-4.371857000000,,Penmarc'h - Finistère,57337,observation-045057bd-1f04-40ff-8b0a-45e945200600-2,https://biolit.fr/observations/observation-045057bd-1f04-40ff-8b0a-45e945200600-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150613_120258-scaled.jpg,,FALSE, +N1,61468,sortie-045057bd-1f04-40ff-8b0a-45e945200600,https://biolit.fr/sorties/sortie-045057bd-1f04-40ff-8b0a-45e945200600/,Phil,,6/13/2015 0:00,12.0000000,12.000005,47.7974520000,-4.371857000000,,Penmarc'h - Finistère,57339,observation-045057bd-1f04-40ff-8b0a-45e945200600-3,https://biolit.fr/observations/observation-045057bd-1f04-40ff-8b0a-45e945200600-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150613_120313-scaled.jpg,,FALSE, +N1,61469,sortie-c517bbd9-f989-41c4-aef8-8ed0cde0f129,https://biolit.fr/sorties/sortie-c517bbd9-f989-41c4-aef8-8ed0cde0f129/,Phil,,06/10/2015,17.0000000,17.0:25,47.799044000000,-3.723362000000,,Kerfany les Pins - Moëlan-sur-Mer - Finistère,57341,observation-c517bbd9-f989-41c4-aef8-8ed0cde0f129,https://biolit.fr/observations/observation-c517bbd9-f989-41c4-aef8-8ed0cde0f129/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150610_172031-scaled.jpg,,FALSE, +N1,61469,sortie-c517bbd9-f989-41c4-aef8-8ed0cde0f129,https://biolit.fr/sorties/sortie-c517bbd9-f989-41c4-aef8-8ed0cde0f129/,Phil,,06/10/2015,17.0000000,17.0:25,47.799044000000,-3.723362000000,,Kerfany les Pins - Moëlan-sur-Mer - Finistère,57343,observation-c517bbd9-f989-41c4-aef8-8ed0cde0f129-2,https://biolit.fr/observations/observation-c517bbd9-f989-41c4-aef8-8ed0cde0f129-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150610_172034.jpg,,FALSE, +N1,61469,sortie-c517bbd9-f989-41c4-aef8-8ed0cde0f129,https://biolit.fr/sorties/sortie-c517bbd9-f989-41c4-aef8-8ed0cde0f129/,Phil,,06/10/2015,17.0000000,17.0:25,47.799044000000,-3.723362000000,,Kerfany les Pins - Moëlan-sur-Mer - Finistère,57345,observation-c517bbd9-f989-41c4-aef8-8ed0cde0f129-3,https://biolit.fr/observations/observation-c517bbd9-f989-41c4-aef8-8ed0cde0f129-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150610_172036-scaled.jpg,,FALSE, +N1,61469,sortie-c517bbd9-f989-41c4-aef8-8ed0cde0f129,https://biolit.fr/sorties/sortie-c517bbd9-f989-41c4-aef8-8ed0cde0f129/,Phil,,06/10/2015,17.0000000,17.0:25,47.799044000000,-3.723362000000,,Kerfany les Pins - Moëlan-sur-Mer - Finistère,57347,observation-c517bbd9-f989-41c4-aef8-8ed0cde0f129-4,https://biolit.fr/observations/observation-c517bbd9-f989-41c4-aef8-8ed0cde0f129-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150610_172404-scaled.jpg,,FALSE, +N1,61470,sortie-aea20df3-794c-4550-b9eb-ae2ed3182846,https://biolit.fr/sorties/sortie-aea20df3-794c-4550-b9eb-ae2ed3182846/,Phil,,06/10/2015,16.0:55,17.000005,47.800268000000,-3.723163000000,,Kerfany les Pins - Moëlan-sur-Mer - Finistère,57349,observation-aea20df3-794c-4550-b9eb-ae2ed3182846,https://biolit.fr/observations/observation-aea20df3-794c-4550-b9eb-ae2ed3182846/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150610_165553-scaled.jpg,,FALSE, +N1,61470,sortie-aea20df3-794c-4550-b9eb-ae2ed3182846,https://biolit.fr/sorties/sortie-aea20df3-794c-4550-b9eb-ae2ed3182846/,Phil,,06/10/2015,16.0:55,17.000005,47.800268000000,-3.723163000000,,Kerfany les Pins - Moëlan-sur-Mer - Finistère,57351,observation-aea20df3-794c-4550-b9eb-ae2ed3182846-2,https://biolit.fr/observations/observation-aea20df3-794c-4550-b9eb-ae2ed3182846-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150610_165611-scaled.jpg,,FALSE, +N1,61470,sortie-aea20df3-794c-4550-b9eb-ae2ed3182846,https://biolit.fr/sorties/sortie-aea20df3-794c-4550-b9eb-ae2ed3182846/,Phil,,06/10/2015,16.0:55,17.000005,47.800268000000,-3.723163000000,,Kerfany les Pins - Moëlan-sur-Mer - Finistère,57353,observation-aea20df3-794c-4550-b9eb-ae2ed3182846-3,https://biolit.fr/observations/observation-aea20df3-794c-4550-b9eb-ae2ed3182846-3/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/2023/07/20150610_165529-scaled.jpg,,TRUE, +N1,61470,sortie-aea20df3-794c-4550-b9eb-ae2ed3182846,https://biolit.fr/sorties/sortie-aea20df3-794c-4550-b9eb-ae2ed3182846/,Phil,,06/10/2015,16.0:55,17.000005,47.800268000000,-3.723163000000,,Kerfany les Pins - Moëlan-sur-Mer - Finistère,57355,observation-aea20df3-794c-4550-b9eb-ae2ed3182846-4,https://biolit.fr/observations/observation-aea20df3-794c-4550-b9eb-ae2ed3182846-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150610_170051-scaled.jpg,,FALSE, +N1,61470,sortie-aea20df3-794c-4550-b9eb-ae2ed3182846,https://biolit.fr/sorties/sortie-aea20df3-794c-4550-b9eb-ae2ed3182846/,Phil,,06/10/2015,16.0:55,17.000005,47.800268000000,-3.723163000000,,Kerfany les Pins - Moëlan-sur-Mer - Finistère,57357,observation-aea20df3-794c-4550-b9eb-ae2ed3182846-5,https://biolit.fr/observations/observation-aea20df3-794c-4550-b9eb-ae2ed3182846-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150610_170418-scaled.jpg,,FALSE, +N1,61470,sortie-aea20df3-794c-4550-b9eb-ae2ed3182846,https://biolit.fr/sorties/sortie-aea20df3-794c-4550-b9eb-ae2ed3182846/,Phil,,06/10/2015,16.0:55,17.000005,47.800268000000,-3.723163000000,,Kerfany les Pins - Moëlan-sur-Mer - Finistère,57359,observation-aea20df3-794c-4550-b9eb-ae2ed3182846-6,https://biolit.fr/observations/observation-aea20df3-794c-4550-b9eb-ae2ed3182846-6/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/20150610_170423-scaled.jpg,,TRUE, +N1,61470,sortie-aea20df3-794c-4550-b9eb-ae2ed3182846,https://biolit.fr/sorties/sortie-aea20df3-794c-4550-b9eb-ae2ed3182846/,Phil,,06/10/2015,16.0:55,17.000005,47.800268000000,-3.723163000000,,Kerfany les Pins - Moëlan-sur-Mer - Finistère,57361,observation-aea20df3-794c-4550-b9eb-ae2ed3182846-7,https://biolit.fr/observations/observation-aea20df3-794c-4550-b9eb-ae2ed3182846-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150610_172846-scaled.jpg,,FALSE, +N1,61471,sortie-e14add6d-5119-4e9f-8ebd-56ab2ba94d25,https://biolit.fr/sorties/sortie-e14add6d-5119-4e9f-8ebd-56ab2ba94d25/,Phil,,5/22/2015 0:00,14.0:55,15.000005,48.833206000000,-3.487916000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57363,observation-e14add6d-5119-4e9f-8ebd-56ab2ba94d25,https://biolit.fr/observations/observation-e14add6d-5119-4e9f-8ebd-56ab2ba94d25/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04127.JPG,,FALSE, +N1,61471,sortie-e14add6d-5119-4e9f-8ebd-56ab2ba94d25,https://biolit.fr/sorties/sortie-e14add6d-5119-4e9f-8ebd-56ab2ba94d25/,Phil,,5/22/2015 0:00,14.0:55,15.000005,48.833206000000,-3.487916000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57365,observation-e14add6d-5119-4e9f-8ebd-56ab2ba94d25-2,https://biolit.fr/observations/observation-e14add6d-5119-4e9f-8ebd-56ab2ba94d25-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04129.JPG,,TRUE, +N1,61471,sortie-e14add6d-5119-4e9f-8ebd-56ab2ba94d25,https://biolit.fr/sorties/sortie-e14add6d-5119-4e9f-8ebd-56ab2ba94d25/,Phil,,5/22/2015 0:00,14.0:55,15.000005,48.833206000000,-3.487916000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57367,observation-e14add6d-5119-4e9f-8ebd-56ab2ba94d25-3,https://biolit.fr/observations/observation-e14add6d-5119-4e9f-8ebd-56ab2ba94d25-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04137.JPG,,FALSE, +N1,61471,sortie-e14add6d-5119-4e9f-8ebd-56ab2ba94d25,https://biolit.fr/sorties/sortie-e14add6d-5119-4e9f-8ebd-56ab2ba94d25/,Phil,,5/22/2015 0:00,14.0:55,15.000005,48.833206000000,-3.487916000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57369,observation-e14add6d-5119-4e9f-8ebd-56ab2ba94d25-4,https://biolit.fr/observations/observation-e14add6d-5119-4e9f-8ebd-56ab2ba94d25-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04139.JPG,,FALSE, +N1,61471,sortie-e14add6d-5119-4e9f-8ebd-56ab2ba94d25,https://biolit.fr/sorties/sortie-e14add6d-5119-4e9f-8ebd-56ab2ba94d25/,Phil,,5/22/2015 0:00,14.0:55,15.000005,48.833206000000,-3.487916000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57371,observation-e14add6d-5119-4e9f-8ebd-56ab2ba94d25-5,https://biolit.fr/observations/observation-e14add6d-5119-4e9f-8ebd-56ab2ba94d25-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04142.JPG,,FALSE, +N1,61472,sortie-f2ec6c2a-4ef3-4bf6-aa8e-e6226aad401a,https://biolit.fr/sorties/sortie-f2ec6c2a-4ef3-4bf6-aa8e-e6226aad401a/,Planète Mer,,06/03/2015,10.0000000,11.0000000,43.185996000000,5.360496000000,,Rade de Marseille,57373,observation-f2ec6c2a-4ef3-4bf6-aa8e-e6226aad401a,https://biolit.fr/observations/observation-f2ec6c2a-4ef3-4bf6-aa8e-e6226aad401a/,Caretta caretta,Tortue caouanne,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0141_0-scaled.jpg,,TRUE, +N1,61472,sortie-f2ec6c2a-4ef3-4bf6-aa8e-e6226aad401a,https://biolit.fr/sorties/sortie-f2ec6c2a-4ef3-4bf6-aa8e-e6226aad401a/,Planète Mer,,06/03/2015,10.0000000,11.0000000,43.185996000000,5.360496000000,,Rade de Marseille,57375,observation-f2ec6c2a-4ef3-4bf6-aa8e-e6226aad401a-2,https://biolit.fr/observations/observation-f2ec6c2a-4ef3-4bf6-aa8e-e6226aad401a-2/,Caretta caretta,Tortue caouanne,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0145-scaled.jpg,,TRUE, +N1,61472,sortie-f2ec6c2a-4ef3-4bf6-aa8e-e6226aad401a,https://biolit.fr/sorties/sortie-f2ec6c2a-4ef3-4bf6-aa8e-e6226aad401a/,Planète Mer,,06/03/2015,10.0000000,11.0000000,43.185996000000,5.360496000000,,Rade de Marseille,57377,observation-f2ec6c2a-4ef3-4bf6-aa8e-e6226aad401a-3,https://biolit.fr/observations/observation-f2ec6c2a-4ef3-4bf6-aa8e-e6226aad401a-3/,Caretta caretta,Tortue caouanne,,https://biolit.fr/wp-content/uploads/2023/07/P6030040-scaled.jpg,,TRUE, +N1,61472,sortie-f2ec6c2a-4ef3-4bf6-aa8e-e6226aad401a,https://biolit.fr/sorties/sortie-f2ec6c2a-4ef3-4bf6-aa8e-e6226aad401a/,Planète Mer,,06/03/2015,10.0000000,11.0000000,43.185996000000,5.360496000000,,Rade de Marseille,57379,observation-f2ec6c2a-4ef3-4bf6-aa8e-e6226aad401a-4,https://biolit.fr/observations/observation-f2ec6c2a-4ef3-4bf6-aa8e-e6226aad401a-4/,Caretta caretta,Tortue caouanne,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0147-scaled.jpg,,TRUE, +N1,61473,sortie-36e7da95-782c-408c-b3ec-627fc23a6861,https://biolit.fr/sorties/sortie-36e7da95-782c-408c-b3ec-627fc23a6861/,Phil,,5/22/2015 0:00,15.0000000,15.0:25,48.832544000000,-3.49099200000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57381,observation-36e7da95-782c-408c-b3ec-627fc23a6861,https://biolit.fr/observations/observation-36e7da95-782c-408c-b3ec-627fc23a6861/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04163.JPG,,FALSE, +N1,61473,sortie-36e7da95-782c-408c-b3ec-627fc23a6861,https://biolit.fr/sorties/sortie-36e7da95-782c-408c-b3ec-627fc23a6861/,Phil,,5/22/2015 0:00,15.0000000,15.0:25,48.832544000000,-3.49099200000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57383,observation-36e7da95-782c-408c-b3ec-627fc23a6861-2,https://biolit.fr/observations/observation-36e7da95-782c-408c-b3ec-627fc23a6861-2/,Mastocarpus stellatus,Gigartine,,https://biolit.fr/wp-content/uploads/2023/07/DSC04164.JPG,,TRUE, +N1,61473,sortie-36e7da95-782c-408c-b3ec-627fc23a6861,https://biolit.fr/sorties/sortie-36e7da95-782c-408c-b3ec-627fc23a6861/,Phil,,5/22/2015 0:00,15.0000000,15.0:25,48.832544000000,-3.49099200000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57385,observation-36e7da95-782c-408c-b3ec-627fc23a6861-3,https://biolit.fr/observations/observation-36e7da95-782c-408c-b3ec-627fc23a6861-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04165.JPG,,TRUE, +N1,61473,sortie-36e7da95-782c-408c-b3ec-627fc23a6861,https://biolit.fr/sorties/sortie-36e7da95-782c-408c-b3ec-627fc23a6861/,Phil,,5/22/2015 0:00,15.0000000,15.0:25,48.832544000000,-3.49099200000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57387,observation-36e7da95-782c-408c-b3ec-627fc23a6861-4,https://biolit.fr/observations/observation-36e7da95-782c-408c-b3ec-627fc23a6861-4/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04167.JPG,,TRUE, +N1,61473,sortie-36e7da95-782c-408c-b3ec-627fc23a6861,https://biolit.fr/sorties/sortie-36e7da95-782c-408c-b3ec-627fc23a6861/,Phil,,5/22/2015 0:00,15.0000000,15.0:25,48.832544000000,-3.49099200000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57389,observation-36e7da95-782c-408c-b3ec-627fc23a6861-5,https://biolit.fr/observations/observation-36e7da95-782c-408c-b3ec-627fc23a6861-5/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04191.JPG,,TRUE, +N1,61473,sortie-36e7da95-782c-408c-b3ec-627fc23a6861,https://biolit.fr/sorties/sortie-36e7da95-782c-408c-b3ec-627fc23a6861/,Phil,,5/22/2015 0:00,15.0000000,15.0:25,48.832544000000,-3.49099200000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57391,observation-36e7da95-782c-408c-b3ec-627fc23a6861-6,https://biolit.fr/observations/observation-36e7da95-782c-408c-b3ec-627fc23a6861-6/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04195.JPG,,TRUE, +N1,61473,sortie-36e7da95-782c-408c-b3ec-627fc23a6861,https://biolit.fr/sorties/sortie-36e7da95-782c-408c-b3ec-627fc23a6861/,Phil,,5/22/2015 0:00,15.0000000,15.0:25,48.832544000000,-3.49099200000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57393,observation-36e7da95-782c-408c-b3ec-627fc23a6861-7,https://biolit.fr/observations/observation-36e7da95-782c-408c-b3ec-627fc23a6861-7/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04196.JPG,,TRUE, +N1,61473,sortie-36e7da95-782c-408c-b3ec-627fc23a6861,https://biolit.fr/sorties/sortie-36e7da95-782c-408c-b3ec-627fc23a6861/,Phil,,5/22/2015 0:00,15.0000000,15.0:25,48.832544000000,-3.49099200000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57395,observation-36e7da95-782c-408c-b3ec-627fc23a6861-8,https://biolit.fr/observations/observation-36e7da95-782c-408c-b3ec-627fc23a6861-8/,Catenella caespitosa,Caténelle en touffe,,https://biolit.fr/wp-content/uploads/2023/07/DSC04202.JPG,,TRUE, +N1,61473,sortie-36e7da95-782c-408c-b3ec-627fc23a6861,https://biolit.fr/sorties/sortie-36e7da95-782c-408c-b3ec-627fc23a6861/,Phil,,5/22/2015 0:00,15.0000000,15.0:25,48.832544000000,-3.49099200000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57397,observation-36e7da95-782c-408c-b3ec-627fc23a6861-9,https://biolit.fr/observations/observation-36e7da95-782c-408c-b3ec-627fc23a6861-9/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04207-scaled.jpg,,TRUE, +N1,61474,sortie-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2,https://biolit.fr/sorties/sortie-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2/,Phil,,5/22/2015 0:00,17.0:35,17.0:45,48.798858000000,-3.546465000000,,Pleumeur-Bodou - Côtes d'Armor,57399,observation-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2,https://biolit.fr/observations/observation-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/DSC04233.JPG,,TRUE, +N1,61474,sortie-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2,https://biolit.fr/sorties/sortie-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2/,Phil,,5/22/2015 0:00,17.0:35,17.0:45,48.798858000000,-3.546465000000,,Pleumeur-Bodou - Côtes d'Armor,57401,observation-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2-2,https://biolit.fr/observations/observation-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2-2/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04235.JPG,,TRUE, +N1,61474,sortie-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2,https://biolit.fr/sorties/sortie-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2/,Phil,,5/22/2015 0:00,17.0:35,17.0:45,48.798858000000,-3.546465000000,,Pleumeur-Bodou - Côtes d'Armor,57403,observation-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2-3,https://biolit.fr/observations/observation-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04237.JPG,,TRUE, +N1,61474,sortie-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2,https://biolit.fr/sorties/sortie-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2/,Phil,,5/22/2015 0:00,17.0:35,17.0:45,48.798858000000,-3.546465000000,,Pleumeur-Bodou - Côtes d'Armor,57405,observation-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2-4,https://biolit.fr/observations/observation-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2-4/,Vertebrata lanosa,Pompon des ascophylles,,https://biolit.fr/wp-content/uploads/2023/07/DSC04238.JPG,,TRUE, +N1,61474,sortie-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2,https://biolit.fr/sorties/sortie-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2/,Phil,,5/22/2015 0:00,17.0:35,17.0:45,48.798858000000,-3.546465000000,,Pleumeur-Bodou - Côtes d'Armor,57407,observation-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2-5,https://biolit.fr/observations/observation-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04240.JPG,,FALSE, +N1,61474,sortie-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2,https://biolit.fr/sorties/sortie-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2/,Phil,,5/22/2015 0:00,17.0:35,17.0:45,48.798858000000,-3.546465000000,,Pleumeur-Bodou - Côtes d'Armor,57409,observation-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2-6,https://biolit.fr/observations/observation-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2-6/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04241.JPG,,TRUE, +N1,61474,sortie-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2,https://biolit.fr/sorties/sortie-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2/,Phil,,5/22/2015 0:00,17.0:35,17.0:45,48.798858000000,-3.546465000000,,Pleumeur-Bodou - Côtes d'Armor,57411,observation-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2-7,https://biolit.fr/observations/observation-c3b4aeae-b3e7-4f01-b3a2-ac1c4c8936e2-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04242.JPG,,FALSE, +N1,61475,sortie-693fc129-bab0-4477-a6f7-ccd1fb56bc56,https://biolit.fr/sorties/sortie-693fc129-bab0-4477-a6f7-ccd1fb56bc56/,Marine,,06/05/2015,18.0000000,20.0000000,43.325896000000,5.054209000000,,Plage de la Couronne Vieille,57413,observation-693fc129-bab0-4477-a6f7-ccd1fb56bc56,https://biolit.fr/observations/observation-693fc129-bab0-4477-a6f7-ccd1fb56bc56/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0659-scaled.jpg,,FALSE, +N1,61476,sortie-4341571b-fbd0-4286-9df3-ca0e321effd3,https://biolit.fr/sorties/sortie-4341571b-fbd0-4286-9df3-ca0e321effd3/,Phil,,5/26/2015 0:00,11.0000000,11.0:55,47.90895600000,-4.377249000000,,Crumuni - Plovan - Finistère,57415,observation-4341571b-fbd0-4286-9df3-ca0e321effd3,https://biolit.fr/observations/observation-4341571b-fbd0-4286-9df3-ca0e321effd3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04289.JPG,,FALSE, +N1,61476,sortie-4341571b-fbd0-4286-9df3-ca0e321effd3,https://biolit.fr/sorties/sortie-4341571b-fbd0-4286-9df3-ca0e321effd3/,Phil,,5/26/2015 0:00,11.0000000,11.0:55,47.90895600000,-4.377249000000,,Crumuni - Plovan - Finistère,57417,observation-4341571b-fbd0-4286-9df3-ca0e321effd3-2,https://biolit.fr/observations/observation-4341571b-fbd0-4286-9df3-ca0e321effd3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04295.JPG,,FALSE, +N1,61476,sortie-4341571b-fbd0-4286-9df3-ca0e321effd3,https://biolit.fr/sorties/sortie-4341571b-fbd0-4286-9df3-ca0e321effd3/,Phil,,5/26/2015 0:00,11.0000000,11.0:55,47.90895600000,-4.377249000000,,Crumuni - Plovan - Finistère,57419,observation-4341571b-fbd0-4286-9df3-ca0e321effd3-3,https://biolit.fr/observations/observation-4341571b-fbd0-4286-9df3-ca0e321effd3-3/,Laminaria hyperborea,Laminaire rugueuse,,https://biolit.fr/wp-content/uploads/2023/07/DSC04291.JPG,,TRUE, +N1,61477,sortie-60d2628e-ef51-4208-8d51-c8c15aa27ec4,https://biolit.fr/sorties/sortie-60d2628e-ef51-4208-8d51-c8c15aa27ec4/,Phil,,5/26/2015 0:00,11.0:55,12.000005,47.911815000000,-4.379438000000,,Crumuni - Plovan - Finistère,57421,observation-60d2628e-ef51-4208-8d51-c8c15aa27ec4,https://biolit.fr/observations/observation-60d2628e-ef51-4208-8d51-c8c15aa27ec4/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/DSC04292.JPG,,TRUE, +N1,61477,sortie-60d2628e-ef51-4208-8d51-c8c15aa27ec4,https://biolit.fr/sorties/sortie-60d2628e-ef51-4208-8d51-c8c15aa27ec4/,Phil,,5/26/2015 0:00,11.0:55,12.000005,47.911815000000,-4.379438000000,,Crumuni - Plovan - Finistère,57423,observation-60d2628e-ef51-4208-8d51-c8c15aa27ec4-2,https://biolit.fr/observations/observation-60d2628e-ef51-4208-8d51-c8c15aa27ec4-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04293.JPG,,FALSE, +N1,61477,sortie-60d2628e-ef51-4208-8d51-c8c15aa27ec4,https://biolit.fr/sorties/sortie-60d2628e-ef51-4208-8d51-c8c15aa27ec4/,Phil,,5/26/2015 0:00,11.0:55,12.000005,47.911815000000,-4.379438000000,,Crumuni - Plovan - Finistère,57425,observation-60d2628e-ef51-4208-8d51-c8c15aa27ec4-3,https://biolit.fr/observations/observation-60d2628e-ef51-4208-8d51-c8c15aa27ec4-3/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/DSC04306.JPG,,TRUE, +N1,61477,sortie-60d2628e-ef51-4208-8d51-c8c15aa27ec4,https://biolit.fr/sorties/sortie-60d2628e-ef51-4208-8d51-c8c15aa27ec4/,Phil,,5/26/2015 0:00,11.0:55,12.000005,47.911815000000,-4.379438000000,,Crumuni - Plovan - Finistère,57427,observation-60d2628e-ef51-4208-8d51-c8c15aa27ec4-4,https://biolit.fr/observations/observation-60d2628e-ef51-4208-8d51-c8c15aa27ec4-4/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/DSC04310.JPG,,TRUE, +N1,61477,sortie-60d2628e-ef51-4208-8d51-c8c15aa27ec4,https://biolit.fr/sorties/sortie-60d2628e-ef51-4208-8d51-c8c15aa27ec4/,Phil,,5/26/2015 0:00,11.0:55,12.000005,47.911815000000,-4.379438000000,,Crumuni - Plovan - Finistère,57429,observation-60d2628e-ef51-4208-8d51-c8c15aa27ec4-5,https://biolit.fr/observations/observation-60d2628e-ef51-4208-8d51-c8c15aa27ec4-5/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/DSC04311.JPG,,TRUE, +N1,61478,sortie-743da3bf-5ab7-442c-b32e-2aae814e2cf1,https://biolit.fr/sorties/sortie-743da3bf-5ab7-442c-b32e-2aae814e2cf1/,Phil,,5/27/2015 0:00,12.0000000,13.0000000,48.093636000000,-4.299131000000,,Plage du Ris - Ploaré - Douarnenez - Finistère,57431,observation-743da3bf-5ab7-442c-b32e-2aae814e2cf1,https://biolit.fr/observations/observation-743da3bf-5ab7-442c-b32e-2aae814e2cf1/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/DSC04324.JPG,,TRUE, +N1,61478,sortie-743da3bf-5ab7-442c-b32e-2aae814e2cf1,https://biolit.fr/sorties/sortie-743da3bf-5ab7-442c-b32e-2aae814e2cf1/,Phil,,5/27/2015 0:00,12.0000000,13.0000000,48.093636000000,-4.299131000000,,Plage du Ris - Ploaré - Douarnenez - Finistère,57433,observation-743da3bf-5ab7-442c-b32e-2aae814e2cf1-2,https://biolit.fr/observations/observation-743da3bf-5ab7-442c-b32e-2aae814e2cf1-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04326.JPG,,FALSE, +N1,61478,sortie-743da3bf-5ab7-442c-b32e-2aae814e2cf1,https://biolit.fr/sorties/sortie-743da3bf-5ab7-442c-b32e-2aae814e2cf1/,Phil,,5/27/2015 0:00,12.0000000,13.0000000,48.093636000000,-4.299131000000,,Plage du Ris - Ploaré - Douarnenez - Finistère,57435,observation-743da3bf-5ab7-442c-b32e-2aae814e2cf1-3,https://biolit.fr/observations/observation-743da3bf-5ab7-442c-b32e-2aae814e2cf1-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04332.JPG,,TRUE, +N1,61478,sortie-743da3bf-5ab7-442c-b32e-2aae814e2cf1,https://biolit.fr/sorties/sortie-743da3bf-5ab7-442c-b32e-2aae814e2cf1/,Phil,,5/27/2015 0:00,12.0000000,13.0000000,48.093636000000,-4.299131000000,,Plage du Ris - Ploaré - Douarnenez - Finistère,57437,observation-743da3bf-5ab7-442c-b32e-2aae814e2cf1-4,https://biolit.fr/observations/observation-743da3bf-5ab7-442c-b32e-2aae814e2cf1-4/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/DSC04336.JPG,,TRUE, +N1,61478,sortie-743da3bf-5ab7-442c-b32e-2aae814e2cf1,https://biolit.fr/sorties/sortie-743da3bf-5ab7-442c-b32e-2aae814e2cf1/,Phil,,5/27/2015 0:00,12.0000000,13.0000000,48.093636000000,-4.299131000000,,Plage du Ris - Ploaré - Douarnenez - Finistère,57439,observation-743da3bf-5ab7-442c-b32e-2aae814e2cf1-5,https://biolit.fr/observations/observation-743da3bf-5ab7-442c-b32e-2aae814e2cf1-5/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/2023/07/DSC04337.JPG,,TRUE, +N1,61478,sortie-743da3bf-5ab7-442c-b32e-2aae814e2cf1,https://biolit.fr/sorties/sortie-743da3bf-5ab7-442c-b32e-2aae814e2cf1/,Phil,,5/27/2015 0:00,12.0000000,13.0000000,48.093636000000,-4.299131000000,,Plage du Ris - Ploaré - Douarnenez - Finistère,57441,observation-743da3bf-5ab7-442c-b32e-2aae814e2cf1-6,https://biolit.fr/observations/observation-743da3bf-5ab7-442c-b32e-2aae814e2cf1-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04341.JPG,,FALSE, +N1,61479,sortie-7b393ba5-299e-41a7-b5c3-941a47cdb6a5,https://biolit.fr/sorties/sortie-7b393ba5-299e-41a7-b5c3-941a47cdb6a5/,Phil,,5/22/2015 0:00,15.0000000,15.0000000,48.832665000000,-3.490342000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor ,57443,observation-7b393ba5-299e-41a7-b5c3-941a47cdb6a5,https://biolit.fr/observations/observation-7b393ba5-299e-41a7-b5c3-941a47cdb6a5/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/07/DSC04149.JPG,,TRUE, +N1,61479,sortie-7b393ba5-299e-41a7-b5c3-941a47cdb6a5,https://biolit.fr/sorties/sortie-7b393ba5-299e-41a7-b5c3-941a47cdb6a5/,Phil,,5/22/2015 0:00,15.0000000,15.0000000,48.832665000000,-3.490342000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor ,57445,observation-7b393ba5-299e-41a7-b5c3-941a47cdb6a5-2,https://biolit.fr/observations/observation-7b393ba5-299e-41a7-b5c3-941a47cdb6a5-2/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04151.JPG,,TRUE, +N1,61479,sortie-7b393ba5-299e-41a7-b5c3-941a47cdb6a5,https://biolit.fr/sorties/sortie-7b393ba5-299e-41a7-b5c3-941a47cdb6a5/,Phil,,5/22/2015 0:00,15.0000000,15.0000000,48.832665000000,-3.490342000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor ,57447,observation-7b393ba5-299e-41a7-b5c3-941a47cdb6a5-3,https://biolit.fr/observations/observation-7b393ba5-299e-41a7-b5c3-941a47cdb6a5-3/,Catenella caespitosa,Caténelle en touffe,,https://biolit.fr/wp-content/uploads/2023/07/DSC04152.JPG,,TRUE, +N1,61479,sortie-7b393ba5-299e-41a7-b5c3-941a47cdb6a5,https://biolit.fr/sorties/sortie-7b393ba5-299e-41a7-b5c3-941a47cdb6a5/,Phil,,5/22/2015 0:00,15.0000000,15.0000000,48.832665000000,-3.490342000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor ,57449,observation-7b393ba5-299e-41a7-b5c3-941a47cdb6a5-4,https://biolit.fr/observations/observation-7b393ba5-299e-41a7-b5c3-941a47cdb6a5-4/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/DSC04154.JPG,,TRUE, +N1,61479,sortie-7b393ba5-299e-41a7-b5c3-941a47cdb6a5,https://biolit.fr/sorties/sortie-7b393ba5-299e-41a7-b5c3-941a47cdb6a5/,Phil,,5/22/2015 0:00,15.0000000,15.0000000,48.832665000000,-3.490342000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor ,57451,observation-7b393ba5-299e-41a7-b5c3-941a47cdb6a5-5,https://biolit.fr/observations/observation-7b393ba5-299e-41a7-b5c3-941a47cdb6a5-5/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04155.JPG,,TRUE, +N1,61479,sortie-7b393ba5-299e-41a7-b5c3-941a47cdb6a5,https://biolit.fr/sorties/sortie-7b393ba5-299e-41a7-b5c3-941a47cdb6a5/,Phil,,5/22/2015 0:00,15.0000000,15.0000000,48.832665000000,-3.490342000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor ,57453,observation-7b393ba5-299e-41a7-b5c3-941a47cdb6a5-6,https://biolit.fr/observations/observation-7b393ba5-299e-41a7-b5c3-941a47cdb6a5-6/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04156-scaled.jpg,,TRUE, +N1,61479,sortie-7b393ba5-299e-41a7-b5c3-941a47cdb6a5,https://biolit.fr/sorties/sortie-7b393ba5-299e-41a7-b5c3-941a47cdb6a5/,Phil,,5/22/2015 0:00,15.0000000,15.0000000,48.832665000000,-3.490342000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor ,57455,observation-7b393ba5-299e-41a7-b5c3-941a47cdb6a5-7,https://biolit.fr/observations/observation-7b393ba5-299e-41a7-b5c3-941a47cdb6a5-7/,Hymeniacidon perlevis,Eponge-miette de pain,,https://biolit.fr/wp-content/uploads/2023/07/DSC04158.JPG,,TRUE, +N1,61479,sortie-7b393ba5-299e-41a7-b5c3-941a47cdb6a5,https://biolit.fr/sorties/sortie-7b393ba5-299e-41a7-b5c3-941a47cdb6a5/,Phil,,5/22/2015 0:00,15.0000000,15.0000000,48.832665000000,-3.490342000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor ,57457,observation-7b393ba5-299e-41a7-b5c3-941a47cdb6a5-8,https://biolit.fr/observations/observation-7b393ba5-299e-41a7-b5c3-941a47cdb6a5-8/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/DSC04160.JPG,,TRUE,Identifiable +N1,61480,sortie-0e228366-241a-4f42-b3b8-12cc2db906ca,https://biolit.fr/sorties/sortie-0e228366-241a-4f42-b3b8-12cc2db906ca/,svenja,,5/27/2015 0:00,9.0000000,9.0000000,41.90913100000,8.688307000000,,plage de Barbicaggia,57459,observation-0e228366-241a-4f42-b3b8-12cc2db906ca,https://biolit.fr/observations/observation-0e228366-241a-4f42-b3b8-12cc2db906ca/,,,,https://biolit.fr/wp-content/uploads/2023/07/mai 25.29 Corse (177).jpg,,FALSE, +N1,61480,sortie-0e228366-241a-4f42-b3b8-12cc2db906ca,https://biolit.fr/sorties/sortie-0e228366-241a-4f42-b3b8-12cc2db906ca/,svenja,,5/27/2015 0:00,9.0000000,9.0000000,41.90913100000,8.688307000000,,plage de Barbicaggia,57461,observation-0e228366-241a-4f42-b3b8-12cc2db906ca-2,https://biolit.fr/observations/observation-0e228366-241a-4f42-b3b8-12cc2db906ca-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/mai 25.29 Corse (96)-scaled.jpg,,FALSE, +N1,61480,sortie-0e228366-241a-4f42-b3b8-12cc2db906ca,https://biolit.fr/sorties/sortie-0e228366-241a-4f42-b3b8-12cc2db906ca/,svenja,,5/27/2015 0:00,9.0000000,9.0000000,41.90913100000,8.688307000000,,plage de Barbicaggia,57463,observation-0e228366-241a-4f42-b3b8-12cc2db906ca-3,https://biolit.fr/observations/observation-0e228366-241a-4f42-b3b8-12cc2db906ca-3/,Aequorea forskalea,Equorée,,https://biolit.fr/wp-content/uploads/2023/07/mai 25.29 Corse (231).jpg,,TRUE, +N1,61481,sortie-b9ef4c5a-3251-477c-a3ff-8cc2a52f2bef,https://biolit.fr/sorties/sortie-b9ef4c5a-3251-477c-a3ff-8cc2a52f2bef/,Romuald VIALE - EXPENATURE,,06/03/2015,16.0000000,17.0000000,43.188092000000,5.555943000000,,La Ciotat,57465,observation-b9ef4c5a-3251-477c-a3ff-8cc2a52f2bef,https://biolit.fr/observations/observation-b9ef4c5a-3251-477c-a3ff-8cc2a52f2bef/,,,,https://biolit.fr/wp-content/uploads/2023/07/P6030089-scaled.jpg,,FALSE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57467,observation-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/126_1838-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57469,observation-723da99a-1067-4770-a6a6-f15d4874df7a-2,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/126_1871-scaled.jpg,,FALSE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57471,observation-723da99a-1067-4770-a6a6-f15d4874df7a-3,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/126_1872-scaled.jpg,,FALSE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57473,observation-723da99a-1067-4770-a6a6-f15d4874df7a-4,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-4/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/126_1874-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57475,observation-723da99a-1067-4770-a6a6-f15d4874df7a-5,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-5/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/126_1870-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57477,observation-723da99a-1067-4770-a6a6-f15d4874df7a-6,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-6/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/126_1866-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57479,observation-723da99a-1067-4770-a6a6-f15d4874df7a-7,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/126_1790-scaled.jpg,,FALSE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57481,observation-723da99a-1067-4770-a6a6-f15d4874df7a-8,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-8/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/2023/07/126_1827-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57483,observation-723da99a-1067-4770-a6a6-f15d4874df7a-9,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-9/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/126_1865-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57485,observation-723da99a-1067-4770-a6a6-f15d4874df7a-10,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-10/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/126_1864-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57487,observation-723da99a-1067-4770-a6a6-f15d4874df7a-11,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-11/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/126_1869-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57489,observation-723da99a-1067-4770-a6a6-f15d4874df7a-12,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/126_1878-scaled.jpg,,FALSE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57491,observation-723da99a-1067-4770-a6a6-f15d4874df7a-13,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-13/,Vermetus triquetrus,Petit vermet,,https://biolit.fr/wp-content/uploads/2023/07/126_1887-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57493,observation-723da99a-1067-4770-a6a6-f15d4874df7a-14,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/126_1889-scaled.jpg,,FALSE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57495,observation-723da99a-1067-4770-a6a6-f15d4874df7a-15,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/126_1917-scaled.jpg,,FALSE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57497,observation-723da99a-1067-4770-a6a6-f15d4874df7a-16,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-16/,Dendropoma cristatum,Petit vermet colonial,,https://biolit.fr/wp-content/uploads/2023/07/126_1898-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57499,observation-723da99a-1067-4770-a6a6-f15d4874df7a-17,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-17/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/126_1919-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57501,observation-723da99a-1067-4770-a6a6-f15d4874df7a-18,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-18/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/2023/07/126_1922-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57503,observation-723da99a-1067-4770-a6a6-f15d4874df7a-19,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-19/,,,,https://biolit.fr/wp-content/uploads/2023/07/126_1902-scaled.jpg,,FALSE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57505,observation-723da99a-1067-4770-a6a6-f15d4874df7a-20,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/126_1897-scaled.jpg,,FALSE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57507,observation-723da99a-1067-4770-a6a6-f15d4874df7a-21,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-21/,Vermetus triquetrus,Petit vermet,,https://biolit.fr/wp-content/uploads/2023/07/126_1888-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57509,observation-723da99a-1067-4770-a6a6-f15d4874df7a-22,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-22/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/126_1868-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57511,observation-723da99a-1067-4770-a6a6-f15d4874df7a-23,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-23/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/126_1832-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57513,observation-723da99a-1067-4770-a6a6-f15d4874df7a-24,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-24/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/126_1830-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57515,observation-723da99a-1067-4770-a6a6-f15d4874df7a-25,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-25/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/126_1856-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57517,observation-723da99a-1067-4770-a6a6-f15d4874df7a-26,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/126_1881-scaled.jpg,,FALSE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57519,observation-723da99a-1067-4770-a6a6-f15d4874df7a-27,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-27/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/126_1854-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57521,observation-723da99a-1067-4770-a6a6-f15d4874df7a-28,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-28/,Holothuria (Platyperona) sanctori,Concombre cracheur marron,,https://biolit.fr/wp-content/uploads/2023/07/126_1893-scaled.jpg,,TRUE, +N1,61482,sortie-723da99a-1067-4770-a6a6-f15d4874df7a,https://biolit.fr/sorties/sortie-723da99a-1067-4770-a6a6-f15d4874df7a/,CPIE Iles de Lérins et Pays d'Azur,,5/23/2015 0:00,12.0000000,17.0000000,43.518050000000,7.068611000000,,Côte Nord de l'île Sainte Marguerite,57523,observation-723da99a-1067-4770-a6a6-f15d4874df7a-29,https://biolit.fr/observations/observation-723da99a-1067-4770-a6a6-f15d4874df7a-29/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/126_1879-scaled.jpg,,TRUE, +N1,61483,sortie-c5bec688-8376-41e1-b4a4-552e86d481a7,https://biolit.fr/sorties/sortie-c5bec688-8376-41e1-b4a4-552e86d481a7/,Romuald VIALE - EXPENATURE,,06/04/2015,9.0:25,11.0:25,43.170395000000,5.615359000000,,La Ciotat,57525,observation-c5bec688-8376-41e1-b4a4-552e86d481a7,https://biolit.fr/observations/observation-c5bec688-8376-41e1-b4a4-552e86d481a7/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P6030072-scaled.jpg,,TRUE, +N1,61483,sortie-c5bec688-8376-41e1-b4a4-552e86d481a7,https://biolit.fr/sorties/sortie-c5bec688-8376-41e1-b4a4-552e86d481a7/,Romuald VIALE - EXPENATURE,,06/04/2015,9.0:25,11.0:25,43.170395000000,5.615359000000,,La Ciotat,57527,observation-c5bec688-8376-41e1-b4a4-552e86d481a7-2,https://biolit.fr/observations/observation-c5bec688-8376-41e1-b4a4-552e86d481a7-2/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P6030074-scaled.jpg,,TRUE, +N1,61484,sortie-d3b0b228-066d-4e68-8439-b2b113599485,https://biolit.fr/sorties/sortie-d3b0b228-066d-4e68-8439-b2b113599485/,Phil,,5/30/2015 0:00,14.0000000,14.0:35,47.796260000000,-4.361817000000,,Penmarc'h - Finistère,57529,observation-d3b0b228-066d-4e68-8439-b2b113599485,https://biolit.fr/observations/observation-d3b0b228-066d-4e68-8439-b2b113599485/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/DSC04480.JPG,,TRUE, +N1,61484,sortie-d3b0b228-066d-4e68-8439-b2b113599485,https://biolit.fr/sorties/sortie-d3b0b228-066d-4e68-8439-b2b113599485/,Phil,,5/30/2015 0:00,14.0000000,14.0:35,47.796260000000,-4.361817000000,,Penmarc'h - Finistère,57531,observation-d3b0b228-066d-4e68-8439-b2b113599485-2,https://biolit.fr/observations/observation-d3b0b228-066d-4e68-8439-b2b113599485-2/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/DSC04478.JPG,,TRUE, +N1,61484,sortie-d3b0b228-066d-4e68-8439-b2b113599485,https://biolit.fr/sorties/sortie-d3b0b228-066d-4e68-8439-b2b113599485/,Phil,,5/30/2015 0:00,14.0000000,14.0:35,47.796260000000,-4.361817000000,,Penmarc'h - Finistère,57533,observation-d3b0b228-066d-4e68-8439-b2b113599485-3,https://biolit.fr/observations/observation-d3b0b228-066d-4e68-8439-b2b113599485-3/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/DSC04475.JPG,,TRUE, +N1,61484,sortie-d3b0b228-066d-4e68-8439-b2b113599485,https://biolit.fr/sorties/sortie-d3b0b228-066d-4e68-8439-b2b113599485/,Phil,,5/30/2015 0:00,14.0000000,14.0:35,47.796260000000,-4.361817000000,,Penmarc'h - Finistère,57535,observation-d3b0b228-066d-4e68-8439-b2b113599485-4,https://biolit.fr/observations/observation-d3b0b228-066d-4e68-8439-b2b113599485-4/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/DSC04483.JPG,,TRUE, +N1,61485,sortie-8c0feff1-86a4-4be3-b657-7802b5357677,https://biolit.fr/sorties/sortie-8c0feff1-86a4-4be3-b657-7802b5357677/,Phil,,5/30/2015 0:00,14.0:25,14.0000000,47.795949000000,-4.362012000000,,Penmarc'h - Finistère,57537,observation-8c0feff1-86a4-4be3-b657-7802b5357677,https://biolit.fr/observations/observation-8c0feff1-86a4-4be3-b657-7802b5357677/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04497.JPG,,FALSE, +N1,61485,sortie-8c0feff1-86a4-4be3-b657-7802b5357677,https://biolit.fr/sorties/sortie-8c0feff1-86a4-4be3-b657-7802b5357677/,Phil,,5/30/2015 0:00,14.0:25,14.0000000,47.795949000000,-4.362012000000,,Penmarc'h - Finistère,57539,observation-8c0feff1-86a4-4be3-b657-7802b5357677-2,https://biolit.fr/observations/observation-8c0feff1-86a4-4be3-b657-7802b5357677-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04496.JPG,,FALSE, +N1,61485,sortie-8c0feff1-86a4-4be3-b657-7802b5357677,https://biolit.fr/sorties/sortie-8c0feff1-86a4-4be3-b657-7802b5357677/,Phil,,5/30/2015 0:00,14.0:25,14.0000000,47.795949000000,-4.362012000000,,Penmarc'h - Finistère,57541,observation-8c0feff1-86a4-4be3-b657-7802b5357677-3,https://biolit.fr/observations/observation-8c0feff1-86a4-4be3-b657-7802b5357677-3/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/DSC04490.JPG,,TRUE, +N1,61485,sortie-8c0feff1-86a4-4be3-b657-7802b5357677,https://biolit.fr/sorties/sortie-8c0feff1-86a4-4be3-b657-7802b5357677/,Phil,,5/30/2015 0:00,14.0:25,14.0000000,47.795949000000,-4.362012000000,,Penmarc'h - Finistère,57543,observation-8c0feff1-86a4-4be3-b657-7802b5357677-4,https://biolit.fr/observations/observation-8c0feff1-86a4-4be3-b657-7802b5357677-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04488.JPG,,FALSE, +N1,61486,sortie-b5eeac83-be2e-4543-acd0-0ed0a2fb83d1,https://biolit.fr/sorties/sortie-b5eeac83-be2e-4543-acd0-0ed0a2fb83d1/,Phil,,5/31/2015 0:00,14.0:55,16.0:55,47.797525000000,-4.327927000000,,Penmarc'h - Finistère,57545,observation-b5eeac83-be2e-4543-acd0-0ed0a2fb83d1,https://biolit.fr/observations/observation-b5eeac83-be2e-4543-acd0-0ed0a2fb83d1/,Leathesia marina,Léathésie difforme,,https://biolit.fr/wp-content/uploads/2023/07/DSC04460.JPG,,TRUE, +N1,61486,sortie-b5eeac83-be2e-4543-acd0-0ed0a2fb83d1,https://biolit.fr/sorties/sortie-b5eeac83-be2e-4543-acd0-0ed0a2fb83d1/,Phil,,5/31/2015 0:00,14.0:55,16.0:55,47.797525000000,-4.327927000000,,Penmarc'h - Finistère,57547,observation-b5eeac83-be2e-4543-acd0-0ed0a2fb83d1-2,https://biolit.fr/observations/observation-b5eeac83-be2e-4543-acd0-0ed0a2fb83d1-2/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/DSC04466.JPG,,TRUE, +N1,61486,sortie-b5eeac83-be2e-4543-acd0-0ed0a2fb83d1,https://biolit.fr/sorties/sortie-b5eeac83-be2e-4543-acd0-0ed0a2fb83d1/,Phil,,5/31/2015 0:00,14.0:55,16.0:55,47.797525000000,-4.327927000000,,Penmarc'h - Finistère,57549,observation-b5eeac83-be2e-4543-acd0-0ed0a2fb83d1-3,https://biolit.fr/observations/observation-b5eeac83-be2e-4543-acd0-0ed0a2fb83d1-3/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/DSC04401.JPG,,TRUE, +N1,61487,sortie-d4e33f82-2fb2-4280-98d0-aa001c50778d,https://biolit.fr/sorties/sortie-d4e33f82-2fb2-4280-98d0-aa001c50778d/,Phil,,5/30/2015 0:00,13.0:15,13.0:25,47.791102000000,-4.247389000000,,Lechiagat - Finistère,57551,observation-d4e33f82-2fb2-4280-98d0-aa001c50778d,https://biolit.fr/observations/observation-d4e33f82-2fb2-4280-98d0-aa001c50778d/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04438.JPG,,FALSE, +N1,61487,sortie-d4e33f82-2fb2-4280-98d0-aa001c50778d,https://biolit.fr/sorties/sortie-d4e33f82-2fb2-4280-98d0-aa001c50778d/,Phil,,5/30/2015 0:00,13.0:15,13.0:25,47.791102000000,-4.247389000000,,Lechiagat - Finistère,57553,observation-d4e33f82-2fb2-4280-98d0-aa001c50778d-2,https://biolit.fr/observations/observation-d4e33f82-2fb2-4280-98d0-aa001c50778d-2/,Calidris alba,Bécasseau sanderling,,https://biolit.fr/wp-content/uploads/2023/07/DSC04445.JPG,,TRUE, +N1,61488,sortie-f4f8b8d6-0e9e-4b0f-b22d-116facee38b6,https://biolit.fr/sorties/sortie-f4f8b8d6-0e9e-4b0f-b22d-116facee38b6/,Phil,,5/30/2015 0:00,12.0:15,12.0000000,47.833487000000,-4.175902000000,,Loctydy - Finistère,57555,observation-f4f8b8d6-0e9e-4b0f-b22d-116facee38b6,https://biolit.fr/observations/observation-f4f8b8d6-0e9e-4b0f-b22d-116facee38b6/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/DSC04429.JPG,,TRUE, +N1,61488,sortie-f4f8b8d6-0e9e-4b0f-b22d-116facee38b6,https://biolit.fr/sorties/sortie-f4f8b8d6-0e9e-4b0f-b22d-116facee38b6/,Phil,,5/30/2015 0:00,12.0:15,12.0000000,47.833487000000,-4.175902000000,,Loctydy - Finistère,57557,observation-f4f8b8d6-0e9e-4b0f-b22d-116facee38b6-2,https://biolit.fr/observations/observation-f4f8b8d6-0e9e-4b0f-b22d-116facee38b6-2/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/DSC04435.JPG,,TRUE, +N1,61488,sortie-f4f8b8d6-0e9e-4b0f-b22d-116facee38b6,https://biolit.fr/sorties/sortie-f4f8b8d6-0e9e-4b0f-b22d-116facee38b6/,Phil,,5/30/2015 0:00,12.0:15,12.0000000,47.833487000000,-4.175902000000,,Loctydy - Finistère,57559,observation-f4f8b8d6-0e9e-4b0f-b22d-116facee38b6-3,https://biolit.fr/observations/observation-f4f8b8d6-0e9e-4b0f-b22d-116facee38b6-3/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/2023/07/DSC04434.JPG,,TRUE, +N1,61489,sortie-cb2bc043-3bdc-4417-8ac9-8dada232a3f5,https://biolit.fr/sorties/sortie-cb2bc043-3bdc-4417-8ac9-8dada232a3f5/,Phil,,5/29/2015 0:00,12.000005,12.0000000,47.79612500000,-4.355290000000,,Kérity - Finistère,57561,observation-cb2bc043-3bdc-4417-8ac9-8dada232a3f5,https://biolit.fr/observations/observation-cb2bc043-3bdc-4417-8ac9-8dada232a3f5/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/DSC04407.JPG,,TRUE, +N1,61489,sortie-cb2bc043-3bdc-4417-8ac9-8dada232a3f5,https://biolit.fr/sorties/sortie-cb2bc043-3bdc-4417-8ac9-8dada232a3f5/,Phil,,5/29/2015 0:00,12.000005,12.0000000,47.79612500000,-4.355290000000,,Kérity - Finistère,57563,observation-cb2bc043-3bdc-4417-8ac9-8dada232a3f5-2,https://biolit.fr/observations/observation-cb2bc043-3bdc-4417-8ac9-8dada232a3f5-2/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/2023/07/DSC04411.JPG,,TRUE, +N1,61489,sortie-cb2bc043-3bdc-4417-8ac9-8dada232a3f5,https://biolit.fr/sorties/sortie-cb2bc043-3bdc-4417-8ac9-8dada232a3f5/,Phil,,5/29/2015 0:00,12.000005,12.0000000,47.79612500000,-4.355290000000,,Kérity - Finistère,57565,observation-cb2bc043-3bdc-4417-8ac9-8dada232a3f5-3,https://biolit.fr/observations/observation-cb2bc043-3bdc-4417-8ac9-8dada232a3f5-3/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/DSC04408.JPG,,TRUE, +N1,61489,sortie-cb2bc043-3bdc-4417-8ac9-8dada232a3f5,https://biolit.fr/sorties/sortie-cb2bc043-3bdc-4417-8ac9-8dada232a3f5/,Phil,,5/29/2015 0:00,12.000005,12.0000000,47.79612500000,-4.355290000000,,Kérity - Finistère,57567,observation-cb2bc043-3bdc-4417-8ac9-8dada232a3f5-4,https://biolit.fr/observations/observation-cb2bc043-3bdc-4417-8ac9-8dada232a3f5-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04426.JPG,,FALSE, +N1,61490,sortie-0ecbfbd0-9a9b-44fd-8b4d-7da13b3a61b9,https://biolit.fr/sorties/sortie-0ecbfbd0-9a9b-44fd-8b4d-7da13b3a61b9/,Phil,,5/28/2015 0:00,15.000005,15.0000000,47.792591000000,-3.85141900000,,Trévignon Finistère,57569,observation-0ecbfbd0-9a9b-44fd-8b4d-7da13b3a61b9,https://biolit.fr/observations/observation-0ecbfbd0-9a9b-44fd-8b4d-7da13b3a61b9/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/DSC04397.JPG,,TRUE, +N1,61490,sortie-0ecbfbd0-9a9b-44fd-8b4d-7da13b3a61b9,https://biolit.fr/sorties/sortie-0ecbfbd0-9a9b-44fd-8b4d-7da13b3a61b9/,Phil,,5/28/2015 0:00,15.000005,15.0000000,47.792591000000,-3.85141900000,,Trévignon Finistère,57571,observation-0ecbfbd0-9a9b-44fd-8b4d-7da13b3a61b9-2,https://biolit.fr/observations/observation-0ecbfbd0-9a9b-44fd-8b4d-7da13b3a61b9-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04398.JPG,,FALSE, +N1,61490,sortie-0ecbfbd0-9a9b-44fd-8b4d-7da13b3a61b9,https://biolit.fr/sorties/sortie-0ecbfbd0-9a9b-44fd-8b4d-7da13b3a61b9/,Phil,,5/28/2015 0:00,15.000005,15.0000000,47.792591000000,-3.85141900000,,Trévignon Finistère,57573,observation-0ecbfbd0-9a9b-44fd-8b4d-7da13b3a61b9-3,https://biolit.fr/observations/observation-0ecbfbd0-9a9b-44fd-8b4d-7da13b3a61b9-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04399.JPG,,FALSE, +N1,61491,sortie-a6bd7633-8a11-4150-96d0-ad7921870b2f,https://biolit.fr/sorties/sortie-a6bd7633-8a11-4150-96d0-ad7921870b2f/,Phil,,5/28/2015 0:00,14.0:55,15.0000000,47.792379000000,-3.851009000000,,Trévignon - Finistère,57575,observation-a6bd7633-8a11-4150-96d0-ad7921870b2f,https://biolit.fr/observations/observation-a6bd7633-8a11-4150-96d0-ad7921870b2f/,Loligo vulgaris,Encornet européen,,https://biolit.fr/wp-content/uploads/2023/07/DSC04385.JPG,,TRUE, +N1,61491,sortie-a6bd7633-8a11-4150-96d0-ad7921870b2f,https://biolit.fr/sorties/sortie-a6bd7633-8a11-4150-96d0-ad7921870b2f/,Phil,,5/28/2015 0:00,14.0:55,15.0000000,47.792379000000,-3.851009000000,,Trévignon - Finistère,57577,observation-a6bd7633-8a11-4150-96d0-ad7921870b2f-2,https://biolit.fr/observations/observation-a6bd7633-8a11-4150-96d0-ad7921870b2f-2/,Loligo vulgaris,Encornet européen,,https://biolit.fr/wp-content/uploads/2023/07/DSC04388.JPG,,TRUE, +N1,61491,sortie-a6bd7633-8a11-4150-96d0-ad7921870b2f,https://biolit.fr/sorties/sortie-a6bd7633-8a11-4150-96d0-ad7921870b2f/,Phil,,5/28/2015 0:00,14.0:55,15.0000000,47.792379000000,-3.851009000000,,Trévignon - Finistère,57579,observation-a6bd7633-8a11-4150-96d0-ad7921870b2f-3,https://biolit.fr/observations/observation-a6bd7633-8a11-4150-96d0-ad7921870b2f-3/,Loligo spp.,Calmar,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC04392.JPG,,TRUE, +N1,61491,sortie-a6bd7633-8a11-4150-96d0-ad7921870b2f,https://biolit.fr/sorties/sortie-a6bd7633-8a11-4150-96d0-ad7921870b2f/,Phil,,5/28/2015 0:00,14.0:55,15.0000000,47.792379000000,-3.851009000000,,Trévignon - Finistère,57581,observation-a6bd7633-8a11-4150-96d0-ad7921870b2f-4,https://biolit.fr/observations/observation-a6bd7633-8a11-4150-96d0-ad7921870b2f-4/,Loligo spp.,Calmar,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC04393.JPG,,TRUE, +N1,61492,sortie-0748ef29-55aa-47e4-ae06-7f833ca6fcee,https://biolit.fr/sorties/sortie-0748ef29-55aa-47e4-ae06-7f833ca6fcee/,Phil,,5/28/2015 0:00,14.0000000,14.0:55,47.791845000000,-3.850386000000,,Trévignon Finistère,57583,observation-0748ef29-55aa-47e4-ae06-7f833ca6fcee,https://biolit.fr/observations/observation-0748ef29-55aa-47e4-ae06-7f833ca6fcee/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/DSC04378.JPG,,TRUE, +N1,61492,sortie-0748ef29-55aa-47e4-ae06-7f833ca6fcee,https://biolit.fr/sorties/sortie-0748ef29-55aa-47e4-ae06-7f833ca6fcee/,Phil,,5/28/2015 0:00,14.0000000,14.0:55,47.791845000000,-3.850386000000,,Trévignon Finistère,57585,observation-0748ef29-55aa-47e4-ae06-7f833ca6fcee-2,https://biolit.fr/observations/observation-0748ef29-55aa-47e4-ae06-7f833ca6fcee-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/DSC04379.JPG,,TRUE, +N1,61492,sortie-0748ef29-55aa-47e4-ae06-7f833ca6fcee,https://biolit.fr/sorties/sortie-0748ef29-55aa-47e4-ae06-7f833ca6fcee/,Phil,,5/28/2015 0:00,14.0000000,14.0:55,47.791845000000,-3.850386000000,,Trévignon Finistère,57587,observation-0748ef29-55aa-47e4-ae06-7f833ca6fcee-3,https://biolit.fr/observations/observation-0748ef29-55aa-47e4-ae06-7f833ca6fcee-3/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/DSC04380.JPG,,TRUE, +N1,61492,sortie-0748ef29-55aa-47e4-ae06-7f833ca6fcee,https://biolit.fr/sorties/sortie-0748ef29-55aa-47e4-ae06-7f833ca6fcee/,Phil,,5/28/2015 0:00,14.0000000,14.0:55,47.791845000000,-3.850386000000,,Trévignon Finistère,57589,observation-0748ef29-55aa-47e4-ae06-7f833ca6fcee-4,https://biolit.fr/observations/observation-0748ef29-55aa-47e4-ae06-7f833ca6fcee-4/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04389.JPG,,TRUE, +N1,61493,sortie-ae2de821-6220-41b8-a359-be0635f3c383,https://biolit.fr/sorties/sortie-ae2de821-6220-41b8-a359-be0635f3c383/,Phil,,5/28/2015 0:00,14.0000000,14.0:35,47.794802000000,-3.853187000000,,Trévignon - Finistère,57591,observation-ae2de821-6220-41b8-a359-be0635f3c383,https://biolit.fr/observations/observation-ae2de821-6220-41b8-a359-be0635f3c383/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04363.JPG,,FALSE, +N1,61493,sortie-ae2de821-6220-41b8-a359-be0635f3c383,https://biolit.fr/sorties/sortie-ae2de821-6220-41b8-a359-be0635f3c383/,Phil,,5/28/2015 0:00,14.0000000,14.0:35,47.794802000000,-3.853187000000,,Trévignon - Finistère,57593,observation-ae2de821-6220-41b8-a359-be0635f3c383-2,https://biolit.fr/observations/observation-ae2de821-6220-41b8-a359-be0635f3c383-2/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/2023/07/DSC04365.JPG,,TRUE, +N1,61494,sortie-b15e3424-5b88-4af8-8653-b5e616b0f889,https://biolit.fr/sorties/sortie-b15e3424-5b88-4af8-8653-b5e616b0f889/,SIBOJAÏ - Syndicat Intercommunal du Bolmon et du Jaï,,5/22/2015 0:00,15.0000000,17.0000000,43.419355000000,5.174415000000,,Lido du Jaï - Marignane,57595,observation-b15e3424-5b88-4af8-8653-b5e616b0f889,https://biolit.fr/observations/observation-b15e3424-5b88-4af8-8653-b5e616b0f889/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP0084.JPG,,FALSE, +N1,61495,sortie-503488f6-d8e2-4d44-a21b-95649020f116,https://biolit.fr/sorties/sortie-503488f6-d8e2-4d44-a21b-95649020f116/,Phil,,5/27/2015 0:00,10.0000000,10.0:15,47.833154000000,-4.1754940000,,Loctudy - Finistère,57597,observation-503488f6-d8e2-4d44-a21b-95649020f116,https://biolit.fr/observations/observation-503488f6-d8e2-4d44-a21b-95649020f116/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/2023/07/DSC04315.JPG,,TRUE, +N1,61495,sortie-503488f6-d8e2-4d44-a21b-95649020f116,https://biolit.fr/sorties/sortie-503488f6-d8e2-4d44-a21b-95649020f116/,Phil,,5/27/2015 0:00,10.0000000,10.0:15,47.833154000000,-4.1754940000,,Loctudy - Finistère,57599,observation-503488f6-d8e2-4d44-a21b-95649020f116-2,https://biolit.fr/observations/observation-503488f6-d8e2-4d44-a21b-95649020f116-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04313.JPG,,FALSE, +N1,61495,sortie-503488f6-d8e2-4d44-a21b-95649020f116,https://biolit.fr/sorties/sortie-503488f6-d8e2-4d44-a21b-95649020f116/,Phil,,5/27/2015 0:00,10.0000000,10.0:15,47.833154000000,-4.1754940000,,Loctudy - Finistère,57601,observation-503488f6-d8e2-4d44-a21b-95649020f116-3,https://biolit.fr/observations/observation-503488f6-d8e2-4d44-a21b-95649020f116-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04317.JPG,,FALSE, +N1,61495,sortie-503488f6-d8e2-4d44-a21b-95649020f116,https://biolit.fr/sorties/sortie-503488f6-d8e2-4d44-a21b-95649020f116/,Phil,,5/27/2015 0:00,10.0000000,10.0:15,47.833154000000,-4.1754940000,,Loctudy - Finistère,57603,observation-503488f6-d8e2-4d44-a21b-95649020f116-4,https://biolit.fr/observations/observation-503488f6-d8e2-4d44-a21b-95649020f116-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04316.JPG,,FALSE, +N1,61496,sortie-13c5794b-2f91-4863-aac7-98b9bb032817,https://biolit.fr/sorties/sortie-13c5794b-2f91-4863-aac7-98b9bb032817/,Phil,,5/22/2015 0:00,15.0:25,15.0000000,48.832981000000,-3.489811000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57605,observation-13c5794b-2f91-4863-aac7-98b9bb032817,https://biolit.fr/observations/observation-13c5794b-2f91-4863-aac7-98b9bb032817/,Onchidella celtica,Limace celtique,,https://biolit.fr/wp-content/uploads/2023/07/DSC04214.JPG,,TRUE, +N1,61496,sortie-13c5794b-2f91-4863-aac7-98b9bb032817,https://biolit.fr/sorties/sortie-13c5794b-2f91-4863-aac7-98b9bb032817/,Phil,,5/22/2015 0:00,15.0:25,15.0000000,48.832981000000,-3.489811000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57607,observation-13c5794b-2f91-4863-aac7-98b9bb032817-2,https://biolit.fr/observations/observation-13c5794b-2f91-4863-aac7-98b9bb032817-2/,Onchidella celtica,Limace celtique,,https://biolit.fr/wp-content/uploads/2023/07/DSC04213.JPG,,TRUE, +N1,61496,sortie-13c5794b-2f91-4863-aac7-98b9bb032817,https://biolit.fr/sorties/sortie-13c5794b-2f91-4863-aac7-98b9bb032817/,Phil,,5/22/2015 0:00,15.0:25,15.0000000,48.832981000000,-3.489811000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57609,observation-13c5794b-2f91-4863-aac7-98b9bb032817-3,https://biolit.fr/observations/observation-13c5794b-2f91-4863-aac7-98b9bb032817-3/,Onchidella celtica,Limace celtique,,https://biolit.fr/wp-content/uploads/2023/07/DSC04210.JPG,,TRUE, +N1,61496,sortie-13c5794b-2f91-4863-aac7-98b9bb032817,https://biolit.fr/sorties/sortie-13c5794b-2f91-4863-aac7-98b9bb032817/,Phil,,5/22/2015 0:00,15.0:25,15.0000000,48.832981000000,-3.489811000000,,Ploumanac'h - Perros-Guirec - Côtes d'Armor,57611,observation-13c5794b-2f91-4863-aac7-98b9bb032817-4,https://biolit.fr/observations/observation-13c5794b-2f91-4863-aac7-98b9bb032817-4/,Onchidella celtica,Limace celtique,,https://biolit.fr/wp-content/uploads/2023/07/DSC04216.JPG,,TRUE, +N1,61497,sortie-934b2ca9-046d-49fa-9fe1-3d5fce3333e2,https://biolit.fr/sorties/sortie-934b2ca9-046d-49fa-9fe1-3d5fce3333e2/,Phil,,5/16/2015 0:00,16.0:15,16.0000000,47.803370000000,-4.375661000000,,Penmarc'h - Finistère,57613,observation-934b2ca9-046d-49fa-9fe1-3d5fce3333e2,https://biolit.fr/observations/observation-934b2ca9-046d-49fa-9fe1-3d5fce3333e2/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/DSC04046.JPG,,TRUE, +N1,61497,sortie-934b2ca9-046d-49fa-9fe1-3d5fce3333e2,https://biolit.fr/sorties/sortie-934b2ca9-046d-49fa-9fe1-3d5fce3333e2/,Phil,,5/16/2015 0:00,16.0:15,16.0000000,47.803370000000,-4.375661000000,,Penmarc'h - Finistère,57615,observation-934b2ca9-046d-49fa-9fe1-3d5fce3333e2-2,https://biolit.fr/observations/observation-934b2ca9-046d-49fa-9fe1-3d5fce3333e2-2/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/DSC04064.JPG,,TRUE, +N1,61497,sortie-934b2ca9-046d-49fa-9fe1-3d5fce3333e2,https://biolit.fr/sorties/sortie-934b2ca9-046d-49fa-9fe1-3d5fce3333e2/,Phil,,5/16/2015 0:00,16.0:15,16.0000000,47.803370000000,-4.375661000000,,Penmarc'h - Finistère,57617,observation-934b2ca9-046d-49fa-9fe1-3d5fce3333e2-3,https://biolit.fr/observations/observation-934b2ca9-046d-49fa-9fe1-3d5fce3333e2-3/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/DSC04071.JPG,,TRUE, +N1,61497,sortie-934b2ca9-046d-49fa-9fe1-3d5fce3333e2,https://biolit.fr/sorties/sortie-934b2ca9-046d-49fa-9fe1-3d5fce3333e2/,Phil,,5/16/2015 0:00,16.0:15,16.0000000,47.803370000000,-4.375661000000,,Penmarc'h - Finistère,57619,observation-934b2ca9-046d-49fa-9fe1-3d5fce3333e2-4,https://biolit.fr/observations/observation-934b2ca9-046d-49fa-9fe1-3d5fce3333e2-4/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/DSC04075.JPG,,TRUE, +N1,61497,sortie-934b2ca9-046d-49fa-9fe1-3d5fce3333e2,https://biolit.fr/sorties/sortie-934b2ca9-046d-49fa-9fe1-3d5fce3333e2/,Phil,,5/16/2015 0:00,16.0:15,16.0000000,47.803370000000,-4.375661000000,,Penmarc'h - Finistère,57621,observation-934b2ca9-046d-49fa-9fe1-3d5fce3333e2-5,https://biolit.fr/observations/observation-934b2ca9-046d-49fa-9fe1-3d5fce3333e2-5/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/DSC04078.JPG,,TRUE, +N1,61497,sortie-934b2ca9-046d-49fa-9fe1-3d5fce3333e2,https://biolit.fr/sorties/sortie-934b2ca9-046d-49fa-9fe1-3d5fce3333e2/,Phil,,5/16/2015 0:00,16.0:15,16.0000000,47.803370000000,-4.375661000000,,Penmarc'h - Finistère,57623,observation-934b2ca9-046d-49fa-9fe1-3d5fce3333e2-6,https://biolit.fr/observations/observation-934b2ca9-046d-49fa-9fe1-3d5fce3333e2-6/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/DSC04073.JPG,,TRUE, +N1,61498,sortie-0387ca71-7f00-4c62-ad68-d76e76f7bab5,https://biolit.fr/sorties/sortie-0387ca71-7f00-4c62-ad68-d76e76f7bab5/,Phil,,5/16/2015 0:00,16.0000000,16.000005,47.799409000000,-4.373862000000,,Penmarc'h - Finistère,57625,observation-0387ca71-7f00-4c62-ad68-d76e76f7bab5,https://biolit.fr/observations/observation-0387ca71-7f00-4c62-ad68-d76e76f7bab5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04082.JPG,,FALSE, +N1,61498,sortie-0387ca71-7f00-4c62-ad68-d76e76f7bab5,https://biolit.fr/sorties/sortie-0387ca71-7f00-4c62-ad68-d76e76f7bab5/,Phil,,5/16/2015 0:00,16.0000000,16.000005,47.799409000000,-4.373862000000,,Penmarc'h - Finistère,57627,observation-0387ca71-7f00-4c62-ad68-d76e76f7bab5-2,https://biolit.fr/observations/observation-0387ca71-7f00-4c62-ad68-d76e76f7bab5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04079.JPG,,FALSE, +N1,61498,sortie-0387ca71-7f00-4c62-ad68-d76e76f7bab5,https://biolit.fr/sorties/sortie-0387ca71-7f00-4c62-ad68-d76e76f7bab5/,Phil,,5/16/2015 0:00,16.0000000,16.000005,47.799409000000,-4.373862000000,,Penmarc'h - Finistère,57629,observation-0387ca71-7f00-4c62-ad68-d76e76f7bab5-3,https://biolit.fr/observations/observation-0387ca71-7f00-4c62-ad68-d76e76f7bab5-3/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04060_1.JPG,,TRUE, +N1,61499,sortie-a0bc9bb9-25b3-4709-b005-8a53f14fd6fd,https://biolit.fr/sorties/sortie-a0bc9bb9-25b3-4709-b005-8a53f14fd6fd/,Phil,,5/16/2015 0:00,15.0000000,16.0000000,47.799734000000,-4.374179000000,,Penmarc'h - Finistère,57631,observation-a0bc9bb9-25b3-4709-b005-8a53f14fd6fd,https://biolit.fr/observations/observation-a0bc9bb9-25b3-4709-b005-8a53f14fd6fd/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC04047.JPG,,TRUE, +N1,61499,sortie-a0bc9bb9-25b3-4709-b005-8a53f14fd6fd,https://biolit.fr/sorties/sortie-a0bc9bb9-25b3-4709-b005-8a53f14fd6fd/,Phil,,5/16/2015 0:00,15.0000000,16.0000000,47.799734000000,-4.374179000000,,Penmarc'h - Finistère,57633,observation-a0bc9bb9-25b3-4709-b005-8a53f14fd6fd-2,https://biolit.fr/observations/observation-a0bc9bb9-25b3-4709-b005-8a53f14fd6fd-2/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/2023/07/DSC04048_3.JPG,,TRUE, +N1,61500,sortie-0348c797-d5bc-4cd6-946d-9972897f6864,https://biolit.fr/sorties/sortie-0348c797-d5bc-4cd6-946d-9972897f6864/,Phil,,5/19/2015 0:00,16.0000000,16.0000000,47.799712000000,-4.37488900000,,Pemarc'h - Finistère,57635,observation-0348c797-d5bc-4cd6-946d-9972897f6864,https://biolit.fr/observations/observation-0348c797-d5bc-4cd6-946d-9972897f6864/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04061.JPG,,TRUE, +N1,61500,sortie-0348c797-d5bc-4cd6-946d-9972897f6864,https://biolit.fr/sorties/sortie-0348c797-d5bc-4cd6-946d-9972897f6864/,Phil,,5/19/2015 0:00,16.0000000,16.0000000,47.799712000000,-4.37488900000,,Pemarc'h - Finistère,57637,observation-0348c797-d5bc-4cd6-946d-9972897f6864-2,https://biolit.fr/observations/observation-0348c797-d5bc-4cd6-946d-9972897f6864-2/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/2023/07/DSC04057.JPG,,TRUE, +N1,61500,sortie-0348c797-d5bc-4cd6-946d-9972897f6864,https://biolit.fr/sorties/sortie-0348c797-d5bc-4cd6-946d-9972897f6864/,Phil,,5/19/2015 0:00,16.0000000,16.0000000,47.799712000000,-4.37488900000,,Pemarc'h - Finistère,57639,observation-0348c797-d5bc-4cd6-946d-9972897f6864-3,https://biolit.fr/observations/observation-0348c797-d5bc-4cd6-946d-9972897f6864-3/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/2023/07/DSC04056.JPG,,TRUE, +N1,61501,sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b,https://biolit.fr/sorties/sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b/,Malori,,5/24/2015 0:00,10.0000000,12.0000000,43.272931000000,5.362293000000,,Plage des Prophètes,57641,observation-629bd8a0-4475-4981-b2cd-c89ef67d844b,https://biolit.fr/observations/observation-629bd8a0-4475-4981-b2cd-c89ef67d844b/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/1498143_10155487939910408_3828853149811259317_o.jpg,,TRUE, +N1,61501,sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b,https://biolit.fr/sorties/sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b/,Malori,,5/24/2015 0:00,10.0000000,12.0000000,43.272931000000,5.362293000000,,Plage des Prophètes,57643,observation-629bd8a0-4475-4981-b2cd-c89ef67d844b-2,https://biolit.fr/observations/observation-629bd8a0-4475-4981-b2cd-c89ef67d844b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/11027961_10155487940055408_3911189931710345403_n.jpg,,FALSE, +N1,61501,sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b,https://biolit.fr/sorties/sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b/,Malori,,5/24/2015 0:00,10.0000000,12.0000000,43.272931000000,5.362293000000,,Plage des Prophètes,57645,observation-629bd8a0-4475-4981-b2cd-c89ef67d844b-3,https://biolit.fr/observations/observation-629bd8a0-4475-4981-b2cd-c89ef67d844b-3/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/11160646_10155487940185408_8117930157090936950_o.jpg,,TRUE, +N1,61501,sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b,https://biolit.fr/sorties/sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b/,Malori,,5/24/2015 0:00,10.0000000,12.0000000,43.272931000000,5.362293000000,,Plage des Prophètes,57647,observation-629bd8a0-4475-4981-b2cd-c89ef67d844b-4,https://biolit.fr/observations/observation-629bd8a0-4475-4981-b2cd-c89ef67d844b-4/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/11226200_10155487940050408_647450860958590368_o.jpg,,TRUE, +N1,61501,sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b,https://biolit.fr/sorties/sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b/,Malori,,5/24/2015 0:00,10.0000000,12.0000000,43.272931000000,5.362293000000,,Plage des Prophètes,57649,observation-629bd8a0-4475-4981-b2cd-c89ef67d844b-5,https://biolit.fr/observations/observation-629bd8a0-4475-4981-b2cd-c89ef67d844b-5/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/11255766_10155487940200408_4248557070134908646_o.jpg,,TRUE, +N1,61501,sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b,https://biolit.fr/sorties/sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b/,Malori,,5/24/2015 0:00,10.0000000,12.0000000,43.272931000000,5.362293000000,,Plage des Prophètes,57651,observation-629bd8a0-4475-4981-b2cd-c89ef67d844b-6,https://biolit.fr/observations/observation-629bd8a0-4475-4981-b2cd-c89ef67d844b-6/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/2023/07/11289160_10155487939890408_56453424446339670_o.jpg,,TRUE, +N1,61501,sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b,https://biolit.fr/sorties/sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b/,Malori,,5/24/2015 0:00,10.0000000,12.0000000,43.272931000000,5.362293000000,,Plage des Prophètes,57653,observation-629bd8a0-4475-4981-b2cd-c89ef67d844b-7,https://biolit.fr/observations/observation-629bd8a0-4475-4981-b2cd-c89ef67d844b-7/,Dictyota dichotoma,Dictyote,,https://biolit.fr/wp-content/uploads/2023/07/11312886_10155487939895408_1264194124361014917_o.jpg,,TRUE, +N1,61501,sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b,https://biolit.fr/sorties/sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b/,Malori,,5/24/2015 0:00,10.0000000,12.0000000,43.272931000000,5.362293000000,,Plage des Prophètes,57655,observation-629bd8a0-4475-4981-b2cd-c89ef67d844b-8,https://biolit.fr/observations/observation-629bd8a0-4475-4981-b2cd-c89ef67d844b-8/,Maja crispata,Petite araignée de mer,,https://biolit.fr/wp-content/uploads/2023/07/11336915_10155487940255408_4076737847114719371_o.jpg,,TRUE, +N1,61501,sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b,https://biolit.fr/sorties/sortie-629bd8a0-4475-4981-b2cd-c89ef67d844b/,Malori,,5/24/2015 0:00,10.0000000,12.0000000,43.272931000000,5.362293000000,,Plage des Prophètes,57657,observation-629bd8a0-4475-4981-b2cd-c89ef67d844b-9,https://biolit.fr/observations/observation-629bd8a0-4475-4981-b2cd-c89ef67d844b-9/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/2023/07/11357023_10155487940290408_765354827558513727_o.jpg,,TRUE, +N1,61502,sortie-91667b42-912c-4dd6-b7b4-6620b347088f,https://biolit.fr/sorties/sortie-91667b42-912c-4dd6-b7b4-6620b347088f/,Phil,,5/23/2015 0:00,17.0000000,18.0000000,47.787534000000,-4.271895000000,,Lehan - Treffiagat - Finistère,57659,observation-91667b42-912c-4dd6-b7b4-6620b347088f,https://biolit.fr/observations/observation-91667b42-912c-4dd6-b7b4-6620b347088f/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC04266.JPG,,TRUE, +N1,61502,sortie-91667b42-912c-4dd6-b7b4-6620b347088f,https://biolit.fr/sorties/sortie-91667b42-912c-4dd6-b7b4-6620b347088f/,Phil,,5/23/2015 0:00,17.0000000,18.0000000,47.787534000000,-4.271895000000,,Lehan - Treffiagat - Finistère,57661,observation-91667b42-912c-4dd6-b7b4-6620b347088f-2,https://biolit.fr/observations/observation-91667b42-912c-4dd6-b7b4-6620b347088f-2/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC04267.JPG,,TRUE, +N1,61502,sortie-91667b42-912c-4dd6-b7b4-6620b347088f,https://biolit.fr/sorties/sortie-91667b42-912c-4dd6-b7b4-6620b347088f/,Phil,,5/23/2015 0:00,17.0000000,18.0000000,47.787534000000,-4.271895000000,,Lehan - Treffiagat - Finistère,57663,observation-91667b42-912c-4dd6-b7b4-6620b347088f-3,https://biolit.fr/observations/observation-91667b42-912c-4dd6-b7b4-6620b347088f-3/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC04269.JPG,,TRUE, +N1,61502,sortie-91667b42-912c-4dd6-b7b4-6620b347088f,https://biolit.fr/sorties/sortie-91667b42-912c-4dd6-b7b4-6620b347088f/,Phil,,5/23/2015 0:00,17.0000000,18.0000000,47.787534000000,-4.271895000000,,Lehan - Treffiagat - Finistère,57665,observation-91667b42-912c-4dd6-b7b4-6620b347088f-4,https://biolit.fr/observations/observation-91667b42-912c-4dd6-b7b4-6620b347088f-4/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC04270.JPG,,TRUE, +N1,61502,sortie-91667b42-912c-4dd6-b7b4-6620b347088f,https://biolit.fr/sorties/sortie-91667b42-912c-4dd6-b7b4-6620b347088f/,Phil,,5/23/2015 0:00,17.0000000,18.0000000,47.787534000000,-4.271895000000,,Lehan - Treffiagat - Finistère,57667,observation-91667b42-912c-4dd6-b7b4-6620b347088f-5,https://biolit.fr/observations/observation-91667b42-912c-4dd6-b7b4-6620b347088f-5/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC04271.JPG,,TRUE, +N1,61502,sortie-91667b42-912c-4dd6-b7b4-6620b347088f,https://biolit.fr/sorties/sortie-91667b42-912c-4dd6-b7b4-6620b347088f/,Phil,,5/23/2015 0:00,17.0000000,18.0000000,47.787534000000,-4.271895000000,,Lehan - Treffiagat - Finistère,57669,observation-91667b42-912c-4dd6-b7b4-6620b347088f-6,https://biolit.fr/observations/observation-91667b42-912c-4dd6-b7b4-6620b347088f-6/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC04272.JPG,,TRUE, +N1,61503,sortie-d496d074-6e5b-419f-b1cc-6e891a2b8b8c,https://biolit.fr/sorties/sortie-d496d074-6e5b-419f-b1cc-6e891a2b8b8c/,Phil,,5/23/2015 0:00,17.0:15,17.0:25,47.790922000000,-4.262577000000,,Plage de Lehan - Treffiagat - Finistère,57671,observation-d496d074-6e5b-419f-b1cc-6e891a2b8b8c,https://biolit.fr/observations/observation-d496d074-6e5b-419f-b1cc-6e891a2b8b8c/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04279.JPG,,FALSE, +N1,61503,sortie-d496d074-6e5b-419f-b1cc-6e891a2b8b8c,https://biolit.fr/sorties/sortie-d496d074-6e5b-419f-b1cc-6e891a2b8b8c/,Phil,,5/23/2015 0:00,17.0:15,17.0:25,47.790922000000,-4.262577000000,,Plage de Lehan - Treffiagat - Finistère,57673,observation-d496d074-6e5b-419f-b1cc-6e891a2b8b8c-2,https://biolit.fr/observations/observation-d496d074-6e5b-419f-b1cc-6e891a2b8b8c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04283.JPG,,FALSE, +N1,61504,sortie-c916b564-bac7-4bd7-a78c-e0d8c50b3031,https://biolit.fr/sorties/sortie-c916b564-bac7-4bd7-a78c-e0d8c50b3031/,Phil,,5/23/2015 0:00,11.0000000,11.0:45,47.909134000000,-3.977646000000,,Bourg de la Forêt-Fouesnant - Finistère,57675,observation-c916b564-bac7-4bd7-a78c-e0d8c50b3031,https://biolit.fr/observations/observation-c916b564-bac7-4bd7-a78c-e0d8c50b3031/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04262.JPG,,FALSE, +N1,61504,sortie-c916b564-bac7-4bd7-a78c-e0d8c50b3031,https://biolit.fr/sorties/sortie-c916b564-bac7-4bd7-a78c-e0d8c50b3031/,Phil,,5/23/2015 0:00,11.0000000,11.0:45,47.909134000000,-3.977646000000,,Bourg de la Forêt-Fouesnant - Finistère,57677,observation-c916b564-bac7-4bd7-a78c-e0d8c50b3031-2,https://biolit.fr/observations/observation-c916b564-bac7-4bd7-a78c-e0d8c50b3031-2/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/2023/07/DSC04255.JPG,,TRUE, +N1,61504,sortie-c916b564-bac7-4bd7-a78c-e0d8c50b3031,https://biolit.fr/sorties/sortie-c916b564-bac7-4bd7-a78c-e0d8c50b3031/,Phil,,5/23/2015 0:00,11.0000000,11.0:45,47.909134000000,-3.977646000000,,Bourg de la Forêt-Fouesnant - Finistère,57679,observation-c916b564-bac7-4bd7-a78c-e0d8c50b3031-3,https://biolit.fr/observations/observation-c916b564-bac7-4bd7-a78c-e0d8c50b3031-3/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/2023/07/DSC04254.JPG,,TRUE, +N1,61505,sortie-4c6e6d51-3e6f-488e-a9a1-d6fe76c45606,https://biolit.fr/sorties/sortie-4c6e6d51-3e6f-488e-a9a1-d6fe76c45606/,Phil,,5/23/2015 0:00,11.0000000,11.0:15,47.904831000000,-3.945996000000,,Anse de Saint-Laurent - La Forêt-Fouesnant - Finistère,57681,observation-4c6e6d51-3e6f-488e-a9a1-d6fe76c45606,https://biolit.fr/observations/observation-4c6e6d51-3e6f-488e-a9a1-d6fe76c45606/,Fucus ceranoides,.,,https://biolit.fr/wp-content/uploads/2023/07/DSC04250.JPG,,TRUE, +N1,61505,sortie-4c6e6d51-3e6f-488e-a9a1-d6fe76c45606,https://biolit.fr/sorties/sortie-4c6e6d51-3e6f-488e-a9a1-d6fe76c45606/,Phil,,5/23/2015 0:00,11.0000000,11.0:15,47.904831000000,-3.945996000000,,Anse de Saint-Laurent - La Forêt-Fouesnant - Finistère,57683,observation-4c6e6d51-3e6f-488e-a9a1-d6fe76c45606-2,https://biolit.fr/observations/observation-4c6e6d51-3e6f-488e-a9a1-d6fe76c45606-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04252.JPG,,FALSE, +N1,61505,sortie-4c6e6d51-3e6f-488e-a9a1-d6fe76c45606,https://biolit.fr/sorties/sortie-4c6e6d51-3e6f-488e-a9a1-d6fe76c45606/,Phil,,5/23/2015 0:00,11.0000000,11.0:15,47.904831000000,-3.945996000000,,Anse de Saint-Laurent - La Forêt-Fouesnant - Finistère,57685,observation-4c6e6d51-3e6f-488e-a9a1-d6fe76c45606-3,https://biolit.fr/observations/observation-4c6e6d51-3e6f-488e-a9a1-d6fe76c45606-3/,Scrobicularia plana,Scrobiculaire,,https://biolit.fr/wp-content/uploads/2023/07/DSC04251.JPG,,TRUE, +N1,61505,sortie-4c6e6d51-3e6f-488e-a9a1-d6fe76c45606,https://biolit.fr/sorties/sortie-4c6e6d51-3e6f-488e-a9a1-d6fe76c45606/,Phil,,5/23/2015 0:00,11.0000000,11.0:15,47.904831000000,-3.945996000000,,Anse de Saint-Laurent - La Forêt-Fouesnant - Finistère,57687,observation-4c6e6d51-3e6f-488e-a9a1-d6fe76c45606-4,https://biolit.fr/observations/observation-4c6e6d51-3e6f-488e-a9a1-d6fe76c45606-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04253.JPG,,FALSE, +N1,61506,sortie-75f1530f-c6a2-4fc0-9529-db7facacf758,https://biolit.fr/sorties/sortie-75f1530f-c6a2-4fc0-9529-db7facacf758/,Marine,,5/22/2015 0:00,15.0000000,17.0000000,43.419978000000,5.17396400000,,Lido du Jaï,57689,observation-75f1530f-c6a2-4fc0-9529-db7facacf758,https://biolit.fr/observations/observation-75f1530f-c6a2-4fc0-9529-db7facacf758/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0622-scaled.jpg,,FALSE, +N1,61506,sortie-75f1530f-c6a2-4fc0-9529-db7facacf758,https://biolit.fr/sorties/sortie-75f1530f-c6a2-4fc0-9529-db7facacf758/,Marine,,5/22/2015 0:00,15.0000000,17.0000000,43.419978000000,5.17396400000,,Lido du Jaï,57691,observation-75f1530f-c6a2-4fc0-9529-db7facacf758-2,https://biolit.fr/observations/observation-75f1530f-c6a2-4fc0-9529-db7facacf758-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0623-scaled.jpg,,FALSE, +N1,61506,sortie-75f1530f-c6a2-4fc0-9529-db7facacf758,https://biolit.fr/sorties/sortie-75f1530f-c6a2-4fc0-9529-db7facacf758/,Marine,,5/22/2015 0:00,15.0000000,17.0000000,43.419978000000,5.17396400000,,Lido du Jaï,57693,observation-75f1530f-c6a2-4fc0-9529-db7facacf758-3,https://biolit.fr/observations/observation-75f1530f-c6a2-4fc0-9529-db7facacf758-3/,Zostera noltei,Zostère naine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0624-scaled.jpg,,TRUE, +N1,61506,sortie-75f1530f-c6a2-4fc0-9529-db7facacf758,https://biolit.fr/sorties/sortie-75f1530f-c6a2-4fc0-9529-db7facacf758/,Marine,,5/22/2015 0:00,15.0000000,17.0000000,43.419978000000,5.17396400000,,Lido du Jaï,57695,observation-75f1530f-c6a2-4fc0-9529-db7facacf758-4,https://biolit.fr/observations/observation-75f1530f-c6a2-4fc0-9529-db7facacf758-4/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0625-scaled.jpg,,TRUE, +N1,61506,sortie-75f1530f-c6a2-4fc0-9529-db7facacf758,https://biolit.fr/sorties/sortie-75f1530f-c6a2-4fc0-9529-db7facacf758/,Marine,,5/22/2015 0:00,15.0000000,17.0000000,43.419978000000,5.17396400000,,Lido du Jaï,57697,observation-75f1530f-c6a2-4fc0-9529-db7facacf758-5,https://biolit.fr/observations/observation-75f1530f-c6a2-4fc0-9529-db7facacf758-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0636-scaled.jpg,,FALSE, +N1,61507,sortie-0bab58bf-9c0e-4307-b21e-dd6f2824d6b0,https://biolit.fr/sorties/sortie-0bab58bf-9c0e-4307-b21e-dd6f2824d6b0/,Phil,,5/16/2015 0:00,15.0000000,16.0000000,47.798414000000,-4.374324000000,,Roches devant rue du Phare - Penmarc'h - Finistère,57699,observation-0bab58bf-9c0e-4307-b21e-dd6f2824d6b0,https://biolit.fr/observations/observation-0bab58bf-9c0e-4307-b21e-dd6f2824d6b0/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/DSC04050.JPG,,TRUE, +N1,61507,sortie-0bab58bf-9c0e-4307-b21e-dd6f2824d6b0,https://biolit.fr/sorties/sortie-0bab58bf-9c0e-4307-b21e-dd6f2824d6b0/,Phil,,5/16/2015 0:00,15.0000000,16.0000000,47.798414000000,-4.374324000000,,Roches devant rue du Phare - Penmarc'h - Finistère,57701,observation-0bab58bf-9c0e-4307-b21e-dd6f2824d6b0-2,https://biolit.fr/observations/observation-0bab58bf-9c0e-4307-b21e-dd6f2824d6b0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04052.JPG,,FALSE, +N1,61507,sortie-0bab58bf-9c0e-4307-b21e-dd6f2824d6b0,https://biolit.fr/sorties/sortie-0bab58bf-9c0e-4307-b21e-dd6f2824d6b0/,Phil,,5/16/2015 0:00,15.0000000,16.0000000,47.798414000000,-4.374324000000,,Roches devant rue du Phare - Penmarc'h - Finistère,57703,observation-0bab58bf-9c0e-4307-b21e-dd6f2824d6b0-3,https://biolit.fr/observations/observation-0bab58bf-9c0e-4307-b21e-dd6f2824d6b0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04053.JPG,,FALSE, +N1,61508,sortie-ea1f18c4-9422-4cab-9a80-6e5f649451ca,https://biolit.fr/sorties/sortie-ea1f18c4-9422-4cab-9a80-6e5f649451ca/,Phil,,5/15/2015 0:00,10.0000000,11.000005,47.791982000000,-4.289141000000,,Bas de la rue de Men-Meur - Le Guilvinec Finistère,57705,observation-ea1f18c4-9422-4cab-9a80-6e5f649451ca,https://biolit.fr/observations/observation-ea1f18c4-9422-4cab-9a80-6e5f649451ca/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/2023/07/20150515_102941-scaled.jpg,,TRUE, +N1,61508,sortie-ea1f18c4-9422-4cab-9a80-6e5f649451ca,https://biolit.fr/sorties/sortie-ea1f18c4-9422-4cab-9a80-6e5f649451ca/,Phil,,5/15/2015 0:00,10.0000000,11.000005,47.791982000000,-4.289141000000,,Bas de la rue de Men-Meur - Le Guilvinec Finistère,57707,observation-ea1f18c4-9422-4cab-9a80-6e5f649451ca-2,https://biolit.fr/observations/observation-ea1f18c4-9422-4cab-9a80-6e5f649451ca-2/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/20150515_102552-scaled.jpg,,TRUE, +N1,61508,sortie-ea1f18c4-9422-4cab-9a80-6e5f649451ca,https://biolit.fr/sorties/sortie-ea1f18c4-9422-4cab-9a80-6e5f649451ca/,Phil,,5/15/2015 0:00,10.0000000,11.000005,47.791982000000,-4.289141000000,,Bas de la rue de Men-Meur - Le Guilvinec Finistère,57709,observation-ea1f18c4-9422-4cab-9a80-6e5f649451ca-3,https://biolit.fr/observations/observation-ea1f18c4-9422-4cab-9a80-6e5f649451ca-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150515_102251-scaled.jpg,,FALSE, +N1,61508,sortie-ea1f18c4-9422-4cab-9a80-6e5f649451ca,https://biolit.fr/sorties/sortie-ea1f18c4-9422-4cab-9a80-6e5f649451ca/,Phil,,5/15/2015 0:00,10.0000000,11.000005,47.791982000000,-4.289141000000,,Bas de la rue de Men-Meur - Le Guilvinec Finistère,57711,observation-ea1f18c4-9422-4cab-9a80-6e5f649451ca-4,https://biolit.fr/observations/observation-ea1f18c4-9422-4cab-9a80-6e5f649451ca-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150515_101751-scaled.jpg,,FALSE, +N1,61508,sortie-ea1f18c4-9422-4cab-9a80-6e5f649451ca,https://biolit.fr/sorties/sortie-ea1f18c4-9422-4cab-9a80-6e5f649451ca/,Phil,,5/15/2015 0:00,10.0000000,11.000005,47.791982000000,-4.289141000000,,Bas de la rue de Men-Meur - Le Guilvinec Finistère,57713,observation-ea1f18c4-9422-4cab-9a80-6e5f649451ca-5,https://biolit.fr/observations/observation-ea1f18c4-9422-4cab-9a80-6e5f649451ca-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150515_101714-scaled.jpg,,FALSE, +N1,61509,sortie-9b9edf66-f094-4dd0-b374-c09749118d52,https://biolit.fr/sorties/sortie-9b9edf66-f094-4dd0-b374-c09749118d52/,Phil,,5/15/2015 0:00,10.0:45,10.0:55,47.791591000000,-4.288904000000,,Bas rue Men-Meur - Le Guilvinec Finistère,57715,observation-9b9edf66-f094-4dd0-b374-c09749118d52,https://biolit.fr/observations/observation-9b9edf66-f094-4dd0-b374-c09749118d52/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150515_100940-scaled.jpg,,TRUE, +N1,61509,sortie-9b9edf66-f094-4dd0-b374-c09749118d52,https://biolit.fr/sorties/sortie-9b9edf66-f094-4dd0-b374-c09749118d52/,Phil,,5/15/2015 0:00,10.0:45,10.0:55,47.791591000000,-4.288904000000,,Bas rue Men-Meur - Le Guilvinec Finistère,57717,observation-9b9edf66-f094-4dd0-b374-c09749118d52-2,https://biolit.fr/observations/observation-9b9edf66-f094-4dd0-b374-c09749118d52-2/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/20150515_101841-scaled.jpg,,TRUE, +N1,61509,sortie-9b9edf66-f094-4dd0-b374-c09749118d52,https://biolit.fr/sorties/sortie-9b9edf66-f094-4dd0-b374-c09749118d52/,Phil,,5/15/2015 0:00,10.0:45,10.0:55,47.791591000000,-4.288904000000,,Bas rue Men-Meur - Le Guilvinec Finistère,57719,observation-9b9edf66-f094-4dd0-b374-c09749118d52-3,https://biolit.fr/observations/observation-9b9edf66-f094-4dd0-b374-c09749118d52-3/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150515_101146-scaled.jpg,,TRUE, +N1,61509,sortie-9b9edf66-f094-4dd0-b374-c09749118d52,https://biolit.fr/sorties/sortie-9b9edf66-f094-4dd0-b374-c09749118d52/,Phil,,5/15/2015 0:00,10.0:45,10.0:55,47.791591000000,-4.288904000000,,Bas rue Men-Meur - Le Guilvinec Finistère,57721,observation-9b9edf66-f094-4dd0-b374-c09749118d52-4,https://biolit.fr/observations/observation-9b9edf66-f094-4dd0-b374-c09749118d52-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150515_101903-scaled.jpg,,FALSE, +N1,61509,sortie-9b9edf66-f094-4dd0-b374-c09749118d52,https://biolit.fr/sorties/sortie-9b9edf66-f094-4dd0-b374-c09749118d52/,Phil,,5/15/2015 0:00,10.0:45,10.0:55,47.791591000000,-4.288904000000,,Bas rue Men-Meur - Le Guilvinec Finistère,57723,observation-9b9edf66-f094-4dd0-b374-c09749118d52-5,https://biolit.fr/observations/observation-9b9edf66-f094-4dd0-b374-c09749118d52-5/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/20150515_101652-scaled.jpg,,TRUE, +N1,61510,sortie-3fb52004-2301-4057-b120-ac70fcafd823,https://biolit.fr/sorties/sortie-3fb52004-2301-4057-b120-ac70fcafd823/,ugomad,,5/21/2015 0:00,18.0000000,20.0000000,43.27855000000,5.35369100000,,"Marégraphe, Corniche Kennedy, Marseille",57725,observation-3fb52004-2301-4057-b120-ac70fcafd823,https://biolit.fr/observations/observation-3fb52004-2301-4057-b120-ac70fcafd823/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8336-scaled.jpg,,FALSE, +N1,61510,sortie-3fb52004-2301-4057-b120-ac70fcafd823,https://biolit.fr/sorties/sortie-3fb52004-2301-4057-b120-ac70fcafd823/,ugomad,,5/21/2015 0:00,18.0000000,20.0000000,43.27855000000,5.35369100000,,"Marégraphe, Corniche Kennedy, Marseille",57727,observation-3fb52004-2301-4057-b120-ac70fcafd823-2,https://biolit.fr/observations/observation-3fb52004-2301-4057-b120-ac70fcafd823-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8337-scaled.jpg,,FALSE, +N1,61510,sortie-3fb52004-2301-4057-b120-ac70fcafd823,https://biolit.fr/sorties/sortie-3fb52004-2301-4057-b120-ac70fcafd823/,ugomad,,5/21/2015 0:00,18.0000000,20.0000000,43.27855000000,5.35369100000,,"Marégraphe, Corniche Kennedy, Marseille",57729,observation-3fb52004-2301-4057-b120-ac70fcafd823-3,https://biolit.fr/observations/observation-3fb52004-2301-4057-b120-ac70fcafd823-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8344-scaled.jpg,,FALSE, +N1,61510,sortie-3fb52004-2301-4057-b120-ac70fcafd823,https://biolit.fr/sorties/sortie-3fb52004-2301-4057-b120-ac70fcafd823/,ugomad,,5/21/2015 0:00,18.0000000,20.0000000,43.27855000000,5.35369100000,,"Marégraphe, Corniche Kennedy, Marseille",57731,observation-3fb52004-2301-4057-b120-ac70fcafd823-4,https://biolit.fr/observations/observation-3fb52004-2301-4057-b120-ac70fcafd823-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8345-scaled.jpg,,FALSE, +N1,61510,sortie-3fb52004-2301-4057-b120-ac70fcafd823,https://biolit.fr/sorties/sortie-3fb52004-2301-4057-b120-ac70fcafd823/,ugomad,,5/21/2015 0:00,18.0000000,20.0000000,43.27855000000,5.35369100000,,"Marégraphe, Corniche Kennedy, Marseille",57733,observation-3fb52004-2301-4057-b120-ac70fcafd823-5,https://biolit.fr/observations/observation-3fb52004-2301-4057-b120-ac70fcafd823-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8350-scaled.jpg,,FALSE, +N1,61510,sortie-3fb52004-2301-4057-b120-ac70fcafd823,https://biolit.fr/sorties/sortie-3fb52004-2301-4057-b120-ac70fcafd823/,ugomad,,5/21/2015 0:00,18.0000000,20.0000000,43.27855000000,5.35369100000,,"Marégraphe, Corniche Kennedy, Marseille",57735,observation-3fb52004-2301-4057-b120-ac70fcafd823-6,https://biolit.fr/observations/observation-3fb52004-2301-4057-b120-ac70fcafd823-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8356-scaled.jpg,,FALSE, +N1,61510,sortie-3fb52004-2301-4057-b120-ac70fcafd823,https://biolit.fr/sorties/sortie-3fb52004-2301-4057-b120-ac70fcafd823/,ugomad,,5/21/2015 0:00,18.0000000,20.0000000,43.27855000000,5.35369100000,,"Marégraphe, Corniche Kennedy, Marseille",57737,observation-3fb52004-2301-4057-b120-ac70fcafd823-7,https://biolit.fr/observations/observation-3fb52004-2301-4057-b120-ac70fcafd823-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8362-scaled.jpg,,FALSE, +N1,61510,sortie-3fb52004-2301-4057-b120-ac70fcafd823,https://biolit.fr/sorties/sortie-3fb52004-2301-4057-b120-ac70fcafd823/,ugomad,,5/21/2015 0:00,18.0000000,20.0000000,43.27855000000,5.35369100000,,"Marégraphe, Corniche Kennedy, Marseille",57739,observation-3fb52004-2301-4057-b120-ac70fcafd823-8,https://biolit.fr/observations/observation-3fb52004-2301-4057-b120-ac70fcafd823-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8366-scaled.jpg,,FALSE, +N1,61510,sortie-3fb52004-2301-4057-b120-ac70fcafd823,https://biolit.fr/sorties/sortie-3fb52004-2301-4057-b120-ac70fcafd823/,ugomad,,5/21/2015 0:00,18.0000000,20.0000000,43.27855000000,5.35369100000,,"Marégraphe, Corniche Kennedy, Marseille",57741,observation-3fb52004-2301-4057-b120-ac70fcafd823-9,https://biolit.fr/observations/observation-3fb52004-2301-4057-b120-ac70fcafd823-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8373-scaled.jpg,,FALSE, +N1,61510,sortie-3fb52004-2301-4057-b120-ac70fcafd823,https://biolit.fr/sorties/sortie-3fb52004-2301-4057-b120-ac70fcafd823/,ugomad,,5/21/2015 0:00,18.0000000,20.0000000,43.27855000000,5.35369100000,,"Marégraphe, Corniche Kennedy, Marseille",57743,observation-3fb52004-2301-4057-b120-ac70fcafd823-10,https://biolit.fr/observations/observation-3fb52004-2301-4057-b120-ac70fcafd823-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8374-scaled.jpg,,FALSE, +N1,61510,sortie-3fb52004-2301-4057-b120-ac70fcafd823,https://biolit.fr/sorties/sortie-3fb52004-2301-4057-b120-ac70fcafd823/,ugomad,,5/21/2015 0:00,18.0000000,20.0000000,43.27855000000,5.35369100000,,"Marégraphe, Corniche Kennedy, Marseille",57745,observation-3fb52004-2301-4057-b120-ac70fcafd823-11,https://biolit.fr/observations/observation-3fb52004-2301-4057-b120-ac70fcafd823-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8379-scaled.jpg,,FALSE, +N1,61510,sortie-3fb52004-2301-4057-b120-ac70fcafd823,https://biolit.fr/sorties/sortie-3fb52004-2301-4057-b120-ac70fcafd823/,ugomad,,5/21/2015 0:00,18.0000000,20.0000000,43.27855000000,5.35369100000,,"Marégraphe, Corniche Kennedy, Marseille",57747,observation-3fb52004-2301-4057-b120-ac70fcafd823-12,https://biolit.fr/observations/observation-3fb52004-2301-4057-b120-ac70fcafd823-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8380-scaled.jpg,,FALSE, +N1,61511,sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0,https://biolit.fr/sorties/sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0/,Malori,,5/20/2015 0:00,14.0000000,15.0000000,43.273073000000,5.362341000000,,Plage des Prophètes,57749,observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0,https://biolit.fr/observations/observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0/,,,,https://biolit.fr/wp-content/uploads/2023/07/10828003_10155473195390408_2315959279391341122_o.jpg,,FALSE, +N1,61511,sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0,https://biolit.fr/sorties/sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0/,Malori,,5/20/2015 0:00,14.0000000,15.0000000,43.273073000000,5.362341000000,,Plage des Prophètes,57751,observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-2,https://biolit.fr/observations/observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-2/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/10900244_10155473196025408_1959251864174683850_o.jpg,,TRUE, +N1,61511,sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0,https://biolit.fr/sorties/sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0/,Malori,,5/20/2015 0:00,14.0000000,15.0000000,43.273073000000,5.362341000000,,Plage des Prophètes,57753,observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-3,https://biolit.fr/observations/observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-3/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/11012022_10155473196075408_3025648415524923151_o.jpg,,TRUE, +N1,61511,sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0,https://biolit.fr/sorties/sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0/,Malori,,5/20/2015 0:00,14.0000000,15.0000000,43.273073000000,5.362341000000,,Plage des Prophètes,57755,observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-4,https://biolit.fr/observations/observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/11025630_10155473195795408_6088842674528555787_n.jpg,,FALSE, +N1,61511,sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0,https://biolit.fr/sorties/sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0/,Malori,,5/20/2015 0:00,14.0000000,15.0000000,43.273073000000,5.362341000000,,Plage des Prophètes,57757,observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-5,https://biolit.fr/observations/observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/11059382_10155473196200408_6059018957689341738_o.jpg,,FALSE, +N1,61511,sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0,https://biolit.fr/sorties/sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0/,Malori,,5/20/2015 0:00,14.0000000,15.0000000,43.273073000000,5.362341000000,,Plage des Prophètes,57759,observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-6,https://biolit.fr/observations/observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/11062777_10155473195680408_8159057947231942509_o.jpg,,FALSE, +N1,61511,sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0,https://biolit.fr/sorties/sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0/,Malori,,5/20/2015 0:00,14.0000000,15.0000000,43.273073000000,5.362341000000,,Plage des Prophètes,57761,observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-7,https://biolit.fr/observations/observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/11070180_10155473196240408_6221323027067842968_o.jpg,,FALSE, +N1,61511,sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0,https://biolit.fr/sorties/sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0/,Malori,,5/20/2015 0:00,14.0000000,15.0000000,43.273073000000,5.362341000000,,Plage des Prophètes,57763,observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-8,https://biolit.fr/observations/observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-8/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/11073050_10155473196275408_2030842017416908010_o.jpg,,TRUE, +N1,61511,sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0,https://biolit.fr/sorties/sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0/,Malori,,5/20/2015 0:00,14.0000000,15.0000000,43.273073000000,5.362341000000,,Plage des Prophètes,57765,observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-9,https://biolit.fr/observations/observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-9/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/11216491_10155473195945408_3956842421404444367_o.jpg,,TRUE, +N1,61511,sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0,https://biolit.fr/sorties/sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0/,Malori,,5/20/2015 0:00,14.0000000,15.0000000,43.273073000000,5.362341000000,,Plage des Prophètes,57767,observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-10,https://biolit.fr/observations/observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-10/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/11226577_10155473195435408_6541689339925237049_o.jpg,,TRUE, +N1,61511,sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0,https://biolit.fr/sorties/sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0/,Malori,,5/20/2015 0:00,14.0000000,15.0000000,43.273073000000,5.362341000000,,Plage des Prophètes,57769,observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-11,https://biolit.fr/observations/observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-11/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/11249480_10155473196365408_8377025964622082916_o.jpg,,TRUE, +N1,61511,sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0,https://biolit.fr/sorties/sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0/,Malori,,5/20/2015 0:00,14.0000000,15.0000000,43.273073000000,5.362341000000,,Plage des Prophètes,57771,observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-12,https://biolit.fr/observations/observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-12/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/11312826_10155473196320408_2966608148900979450_o.jpg,,TRUE, +N1,61511,sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0,https://biolit.fr/sorties/sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0/,Malori,,5/20/2015 0:00,14.0000000,15.0000000,43.273073000000,5.362341000000,,Plage des Prophètes,57773,observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-13,https://biolit.fr/observations/observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-13/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/11334145_10155473195515408_6002341142498597879_o.jpg,,TRUE, +N1,61511,sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0,https://biolit.fr/sorties/sortie-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0/,Malori,,5/20/2015 0:00,14.0000000,15.0000000,43.273073000000,5.362341000000,,Plage des Prophètes,57775,observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-14,https://biolit.fr/observations/observation-ee120ba8-6f07-45a9-a9f8-fad38d5c14c0-14/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/11336813_10155473196475408_4882452113341500333_o.jpg,,TRUE, +N1,61512,sortie-a60af97e-30aa-4da9-a620-6db95dbe7d2a,https://biolit.fr/sorties/sortie-a60af97e-30aa-4da9-a620-6db95dbe7d2a/,Phil,,5/19/2015 0:00,11.0:35,11.0:45,47.877100000000,-3.932387000000,,Plage des Sables Blancs - Concarneau - Finistère,57777,observation-a60af97e-30aa-4da9-a620-6db95dbe7d2a,https://biolit.fr/observations/observation-a60af97e-30aa-4da9-a620-6db95dbe7d2a/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/20150519_112158-scaled.jpg,,TRUE, +N1,61512,sortie-a60af97e-30aa-4da9-a620-6db95dbe7d2a,https://biolit.fr/sorties/sortie-a60af97e-30aa-4da9-a620-6db95dbe7d2a/,Phil,,5/19/2015 0:00,11.0:35,11.0:45,47.877100000000,-3.932387000000,,Plage des Sables Blancs - Concarneau - Finistère,57779,observation-a60af97e-30aa-4da9-a620-6db95dbe7d2a-2,https://biolit.fr/observations/observation-a60af97e-30aa-4da9-a620-6db95dbe7d2a-2/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/20150519_112936-scaled.jpg,,TRUE, +N1,61512,sortie-a60af97e-30aa-4da9-a620-6db95dbe7d2a,https://biolit.fr/sorties/sortie-a60af97e-30aa-4da9-a620-6db95dbe7d2a/,Phil,,5/19/2015 0:00,11.0:35,11.0:45,47.877100000000,-3.932387000000,,Plage des Sables Blancs - Concarneau - Finistère,57781,observation-a60af97e-30aa-4da9-a620-6db95dbe7d2a-3,https://biolit.fr/observations/observation-a60af97e-30aa-4da9-a620-6db95dbe7d2a-3/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/20150519_112751-scaled.jpg,,TRUE, +N1,61512,sortie-a60af97e-30aa-4da9-a620-6db95dbe7d2a,https://biolit.fr/sorties/sortie-a60af97e-30aa-4da9-a620-6db95dbe7d2a/,Phil,,5/19/2015 0:00,11.0:35,11.0:45,47.877100000000,-3.932387000000,,Plage des Sables Blancs - Concarneau - Finistère,57783,observation-a60af97e-30aa-4da9-a620-6db95dbe7d2a-4,https://biolit.fr/observations/observation-a60af97e-30aa-4da9-a620-6db95dbe7d2a-4/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20150519_112149-scaled.jpg,,TRUE, +N1,61512,sortie-a60af97e-30aa-4da9-a620-6db95dbe7d2a,https://biolit.fr/sorties/sortie-a60af97e-30aa-4da9-a620-6db95dbe7d2a/,Phil,,5/19/2015 0:00,11.0:35,11.0:45,47.877100000000,-3.932387000000,,Plage des Sables Blancs - Concarneau - Finistère,57785,observation-a60af97e-30aa-4da9-a620-6db95dbe7d2a-5,https://biolit.fr/observations/observation-a60af97e-30aa-4da9-a620-6db95dbe7d2a-5/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/20150519_112332-scaled.jpg,,TRUE, +N1,61512,sortie-a60af97e-30aa-4da9-a620-6db95dbe7d2a,https://biolit.fr/sorties/sortie-a60af97e-30aa-4da9-a620-6db95dbe7d2a/,Phil,,5/19/2015 0:00,11.0:35,11.0:45,47.877100000000,-3.932387000000,,Plage des Sables Blancs - Concarneau - Finistère,57787,observation-a60af97e-30aa-4da9-a620-6db95dbe7d2a-6,https://biolit.fr/observations/observation-a60af97e-30aa-4da9-a620-6db95dbe7d2a-6/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/20150519_113049-scaled.jpg,,TRUE, +N1,61512,sortie-a60af97e-30aa-4da9-a620-6db95dbe7d2a,https://biolit.fr/sorties/sortie-a60af97e-30aa-4da9-a620-6db95dbe7d2a/,Phil,,5/19/2015 0:00,11.0:35,11.0:45,47.877100000000,-3.932387000000,,Plage des Sables Blancs - Concarneau - Finistère,57789,observation-a60af97e-30aa-4da9-a620-6db95dbe7d2a-7,https://biolit.fr/observations/observation-a60af97e-30aa-4da9-a620-6db95dbe7d2a-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150519_113727-scaled.jpg,,FALSE, +N1,61512,sortie-a60af97e-30aa-4da9-a620-6db95dbe7d2a,https://biolit.fr/sorties/sortie-a60af97e-30aa-4da9-a620-6db95dbe7d2a/,Phil,,5/19/2015 0:00,11.0:35,11.0:45,47.877100000000,-3.932387000000,,Plage des Sables Blancs - Concarneau - Finistère,57791,observation-a60af97e-30aa-4da9-a620-6db95dbe7d2a-8,https://biolit.fr/observations/observation-a60af97e-30aa-4da9-a620-6db95dbe7d2a-8/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/20150519_114239-scaled.jpg,,TRUE, +N1,61513,sortie-1144b88a-2e28-4369-aca8-ae10cfc4d0d3,https://biolit.fr/sorties/sortie-1144b88a-2e28-4369-aca8-ae10cfc4d0d3/,Phil,,5/19/2015 0:00,11.000005,11.0:15,47.87706900000,-3.931926000000,,Bout de la plage des Sables Blancs - Concarneau -Finistère,57793,observation-1144b88a-2e28-4369-aca8-ae10cfc4d0d3,https://biolit.fr/observations/observation-1144b88a-2e28-4369-aca8-ae10cfc4d0d3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150519_110633-scaled.jpg,,FALSE, +N1,61513,sortie-1144b88a-2e28-4369-aca8-ae10cfc4d0d3,https://biolit.fr/sorties/sortie-1144b88a-2e28-4369-aca8-ae10cfc4d0d3/,Phil,,5/19/2015 0:00,11.000005,11.0:15,47.87706900000,-3.931926000000,,Bout de la plage des Sables Blancs - Concarneau -Finistère,57795,observation-1144b88a-2e28-4369-aca8-ae10cfc4d0d3-2,https://biolit.fr/observations/observation-1144b88a-2e28-4369-aca8-ae10cfc4d0d3-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150519_110919-scaled.jpg,,FALSE, +N1,61513,sortie-1144b88a-2e28-4369-aca8-ae10cfc4d0d3,https://biolit.fr/sorties/sortie-1144b88a-2e28-4369-aca8-ae10cfc4d0d3/,Phil,,5/19/2015 0:00,11.000005,11.0:15,47.87706900000,-3.931926000000,,Bout de la plage des Sables Blancs - Concarneau -Finistère,57797,observation-1144b88a-2e28-4369-aca8-ae10cfc4d0d3-3,https://biolit.fr/observations/observation-1144b88a-2e28-4369-aca8-ae10cfc4d0d3-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150519_111048-scaled.jpg,,FALSE, +N1,61513,sortie-1144b88a-2e28-4369-aca8-ae10cfc4d0d3,https://biolit.fr/sorties/sortie-1144b88a-2e28-4369-aca8-ae10cfc4d0d3/,Phil,,5/19/2015 0:00,11.000005,11.0:15,47.87706900000,-3.931926000000,,Bout de la plage des Sables Blancs - Concarneau -Finistère,57799,observation-1144b88a-2e28-4369-aca8-ae10cfc4d0d3-4,https://biolit.fr/observations/observation-1144b88a-2e28-4369-aca8-ae10cfc4d0d3-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150519_111536-scaled.jpg,,FALSE, +N1,61513,sortie-1144b88a-2e28-4369-aca8-ae10cfc4d0d3,https://biolit.fr/sorties/sortie-1144b88a-2e28-4369-aca8-ae10cfc4d0d3/,Phil,,5/19/2015 0:00,11.000005,11.0:15,47.87706900000,-3.931926000000,,Bout de la plage des Sables Blancs - Concarneau -Finistère,57801,observation-1144b88a-2e28-4369-aca8-ae10cfc4d0d3-5,https://biolit.fr/observations/observation-1144b88a-2e28-4369-aca8-ae10cfc4d0d3-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150519_111451-scaled.jpg,,FALSE, +N1,61513,sortie-1144b88a-2e28-4369-aca8-ae10cfc4d0d3,https://biolit.fr/sorties/sortie-1144b88a-2e28-4369-aca8-ae10cfc4d0d3/,Phil,,5/19/2015 0:00,11.000005,11.0:15,47.87706900000,-3.931926000000,,Bout de la plage des Sables Blancs - Concarneau -Finistère,57803,observation-1144b88a-2e28-4369-aca8-ae10cfc4d0d3-6,https://biolit.fr/observations/observation-1144b88a-2e28-4369-aca8-ae10cfc4d0d3-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150519_114924-scaled.jpg,,TRUE, +N1,61513,sortie-1144b88a-2e28-4369-aca8-ae10cfc4d0d3,https://biolit.fr/sorties/sortie-1144b88a-2e28-4369-aca8-ae10cfc4d0d3/,Phil,,5/19/2015 0:00,11.000005,11.0:15,47.87706900000,-3.931926000000,,Bout de la plage des Sables Blancs - Concarneau -Finistère,57805,observation-1144b88a-2e28-4369-aca8-ae10cfc4d0d3-7,https://biolit.fr/observations/observation-1144b88a-2e28-4369-aca8-ae10cfc4d0d3-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150519_111209-scaled.jpg,,FALSE, +N1,61514,sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65,https://biolit.fr/sorties/sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65/,ugomad,,5/20/2015 0:00,14.0000000,15.0000000,43.272753000000,5.362084000000,,"Plage du Prophète, Marseille",57807,observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65,https://biolit.fr/observations/observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8220-scaled.jpg,,FALSE, +N1,61514,sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65,https://biolit.fr/sorties/sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65/,ugomad,,5/20/2015 0:00,14.0000000,15.0000000,43.272753000000,5.362084000000,,"Plage du Prophète, Marseille",57809,observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65-2,https://biolit.fr/observations/observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65-2/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/IMGP8222-scaled.jpg,,TRUE, +N1,61514,sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65,https://biolit.fr/sorties/sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65/,ugomad,,5/20/2015 0:00,14.0000000,15.0000000,43.272753000000,5.362084000000,,"Plage du Prophète, Marseille",57811,observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65-3,https://biolit.fr/observations/observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8224-scaled.jpg,,FALSE, +N1,61514,sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65,https://biolit.fr/sorties/sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65/,ugomad,,5/20/2015 0:00,14.0000000,15.0000000,43.272753000000,5.362084000000,,"Plage du Prophète, Marseille",57813,observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65-4,https://biolit.fr/observations/observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65-4/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMGP8225-scaled.jpg,,TRUE, +N1,61514,sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65,https://biolit.fr/sorties/sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65/,ugomad,,5/20/2015 0:00,14.0000000,15.0000000,43.272753000000,5.362084000000,,"Plage du Prophète, Marseille",57815,observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65-5,https://biolit.fr/observations/observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65-5/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/IMGP8229-scaled.jpg,,TRUE, +N1,61514,sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65,https://biolit.fr/sorties/sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65/,ugomad,,5/20/2015 0:00,14.0000000,15.0000000,43.272753000000,5.362084000000,,"Plage du Prophète, Marseille",57817,observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65-6,https://biolit.fr/observations/observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8233-scaled.jpg,,FALSE, +N1,61514,sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65,https://biolit.fr/sorties/sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65/,ugomad,,5/20/2015 0:00,14.0000000,15.0000000,43.272753000000,5.362084000000,,"Plage du Prophète, Marseille",57819,observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65-7,https://biolit.fr/observations/observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8242-scaled.jpg,,FALSE, +N1,61514,sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65,https://biolit.fr/sorties/sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65/,ugomad,,5/20/2015 0:00,14.0000000,15.0000000,43.272753000000,5.362084000000,,"Plage du Prophète, Marseille",57821,observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65-8,https://biolit.fr/observations/observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65-8/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMGP8236-scaled.jpg,,TRUE, +N1,61514,sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65,https://biolit.fr/sorties/sortie-5a4834d7-b05a-4ba1-9e5c-550e141c1d65/,ugomad,,5/20/2015 0:00,14.0000000,15.0000000,43.272753000000,5.362084000000,,"Plage du Prophète, Marseille",57823,observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65-9,https://biolit.fr/observations/observation-5a4834d7-b05a-4ba1-9e5c-550e141c1d65-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMGP8274-scaled.jpg,,FALSE, +N1,61515,sortie-72df7011-b2a2-44a1-a9fe-546de76f42ca,https://biolit.fr/sorties/sortie-72df7011-b2a2-44a1-a9fe-546de76f42ca/,CPIE Iles de Lérins et Pays d'Azur,,5/19/2015 0:00,15.0000000,16.0000000,43.521289000000,7.031638000000,,"Plage pointe du Batéguier face ouest, Ile Sainte-Marguerite, Cannes",57825,observation-72df7011-b2a2-44a1-a9fe-546de76f42ca,https://biolit.fr/observations/observation-72df7011-b2a2-44a1-a9fe-546de76f42ca/,,,,https://biolit.fr/wp-content/uploads/2023/07/araignée de mer 1.jpg,,FALSE, +N1,61515,sortie-72df7011-b2a2-44a1-a9fe-546de76f42ca,https://biolit.fr/sorties/sortie-72df7011-b2a2-44a1-a9fe-546de76f42ca/,CPIE Iles de Lérins et Pays d'Azur,,5/19/2015 0:00,15.0000000,16.0000000,43.521289000000,7.031638000000,,"Plage pointe du Batéguier face ouest, Ile Sainte-Marguerite, Cannes",57827,observation-72df7011-b2a2-44a1-a9fe-546de76f42ca-2,https://biolit.fr/observations/observation-72df7011-b2a2-44a1-a9fe-546de76f42ca-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/bernard-l'ermite-scaled.jpg,,FALSE, +N1,61515,sortie-72df7011-b2a2-44a1-a9fe-546de76f42ca,https://biolit.fr/sorties/sortie-72df7011-b2a2-44a1-a9fe-546de76f42ca/,CPIE Iles de Lérins et Pays d'Azur,,5/19/2015 0:00,15.0000000,16.0000000,43.521289000000,7.031638000000,,"Plage pointe du Batéguier face ouest, Ile Sainte-Marguerite, Cannes",57828,observation-72df7011-b2a2-44a1-a9fe-546de76f42ca-3,https://biolit.fr/observations/observation-72df7011-b2a2-44a1-a9fe-546de76f42ca-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/holothurie tubuleuse.jpg,,FALSE, +N1,61515,sortie-72df7011-b2a2-44a1-a9fe-546de76f42ca,https://biolit.fr/sorties/sortie-72df7011-b2a2-44a1-a9fe-546de76f42ca/,CPIE Iles de Lérins et Pays d'Azur,,5/19/2015 0:00,15.0000000,16.0000000,43.521289000000,7.031638000000,,"Plage pointe du Batéguier face ouest, Ile Sainte-Marguerite, Cannes",57830,observation-72df7011-b2a2-44a1-a9fe-546de76f42ca-4,https://biolit.fr/observations/observation-72df7011-b2a2-44a1-a9fe-546de76f42ca-4/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/oursin violet.jpg,,TRUE, +N1,61515,sortie-72df7011-b2a2-44a1-a9fe-546de76f42ca,https://biolit.fr/sorties/sortie-72df7011-b2a2-44a1-a9fe-546de76f42ca/,CPIE Iles de Lérins et Pays d'Azur,,5/19/2015 0:00,15.0000000,16.0000000,43.521289000000,7.031638000000,,"Plage pointe du Batéguier face ouest, Ile Sainte-Marguerite, Cannes",57832,observation-72df7011-b2a2-44a1-a9fe-546de76f42ca-5,https://biolit.fr/observations/observation-72df7011-b2a2-44a1-a9fe-546de76f42ca-5/,Scorpaena scrofa,Chapon,,https://biolit.fr/wp-content/uploads/2023/07/Rascasse-scaled.jpg,,TRUE, +N1,61515,sortie-72df7011-b2a2-44a1-a9fe-546de76f42ca,https://biolit.fr/sorties/sortie-72df7011-b2a2-44a1-a9fe-546de76f42ca/,CPIE Iles de Lérins et Pays d'Azur,,5/19/2015 0:00,15.0000000,16.0000000,43.521289000000,7.031638000000,,"Plage pointe du Batéguier face ouest, Ile Sainte-Marguerite, Cannes",57833,observation-72df7011-b2a2-44a1-a9fe-546de76f42ca-6,https://biolit.fr/observations/observation-72df7011-b2a2-44a1-a9fe-546de76f42ca-6/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/crabe marbre-scaled.jpg,,TRUE,Identifiable +N1,61515,sortie-72df7011-b2a2-44a1-a9fe-546de76f42ca,https://biolit.fr/sorties/sortie-72df7011-b2a2-44a1-a9fe-546de76f42ca/,CPIE Iles de Lérins et Pays d'Azur,,5/19/2015 0:00,15.0000000,16.0000000,43.521289000000,7.031638000000,,"Plage pointe du Batéguier face ouest, Ile Sainte-Marguerite, Cannes",57834,observation-72df7011-b2a2-44a1-a9fe-546de76f42ca-7,https://biolit.fr/observations/observation-72df7011-b2a2-44a1-a9fe-546de76f42ca-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/rochers faciés.jpg,,FALSE, +N1,61515,sortie-72df7011-b2a2-44a1-a9fe-546de76f42ca,https://biolit.fr/sorties/sortie-72df7011-b2a2-44a1-a9fe-546de76f42ca/,CPIE Iles de Lérins et Pays d'Azur,,5/19/2015 0:00,15.0000000,16.0000000,43.521289000000,7.031638000000,,"Plage pointe du Batéguier face ouest, Ile Sainte-Marguerite, Cannes",57836,observation-72df7011-b2a2-44a1-a9fe-546de76f42ca-8,https://biolit.fr/observations/observation-72df7011-b2a2-44a1-a9fe-546de76f42ca-8/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/crabe1-scaled.jpg,,TRUE, +N1,61516,sortie-c7e1d459-3c84-4211-9884-f847114c2e50,https://biolit.fr/sorties/sortie-c7e1d459-3c84-4211-9884-f847114c2e50/,Phil,,5/19/2015 0:00,11.0000000,11.0:35,47.877092000000,-3.932332000000,,Rochers plage Sables Blancs - Concarneau - Finistère,57837,observation-c7e1d459-3c84-4211-9884-f847114c2e50,https://biolit.fr/observations/observation-c7e1d459-3c84-4211-9884-f847114c2e50/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20150519_113228-scaled.jpg,,TRUE, +N1,61516,sortie-c7e1d459-3c84-4211-9884-f847114c2e50,https://biolit.fr/sorties/sortie-c7e1d459-3c84-4211-9884-f847114c2e50/,Phil,,5/19/2015 0:00,11.0000000,11.0:35,47.877092000000,-3.932332000000,,Rochers plage Sables Blancs - Concarneau - Finistère,57839,observation-c7e1d459-3c84-4211-9884-f847114c2e50-2,https://biolit.fr/observations/observation-c7e1d459-3c84-4211-9884-f847114c2e50-2/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20150519_113328-scaled.jpg,,TRUE, +N1,61516,sortie-c7e1d459-3c84-4211-9884-f847114c2e50,https://biolit.fr/sorties/sortie-c7e1d459-3c84-4211-9884-f847114c2e50/,Phil,,5/19/2015 0:00,11.0000000,11.0:35,47.877092000000,-3.932332000000,,Rochers plage Sables Blancs - Concarneau - Finistère,57841,observation-c7e1d459-3c84-4211-9884-f847114c2e50-3,https://biolit.fr/observations/observation-c7e1d459-3c84-4211-9884-f847114c2e50-3/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20150519_113412-scaled.jpg,,TRUE, +N1,61516,sortie-c7e1d459-3c84-4211-9884-f847114c2e50,https://biolit.fr/sorties/sortie-c7e1d459-3c84-4211-9884-f847114c2e50/,Phil,,5/19/2015 0:00,11.0000000,11.0:35,47.877092000000,-3.932332000000,,Rochers plage Sables Blancs - Concarneau - Finistère,57843,observation-c7e1d459-3c84-4211-9884-f847114c2e50-4,https://biolit.fr/observations/observation-c7e1d459-3c84-4211-9884-f847114c2e50-4/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/20150519_113511-scaled.jpg,,TRUE, +N1,61517,sortie-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee,https://biolit.fr/sorties/sortie-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee/,Phil,,5/19/2015 0:00,16.0000000,16.0000000,47.80044,-4.272756000000,,Cimetière des bateaux - Treffiagat - Finistère,57845,observation-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee,https://biolit.fr/observations/observation-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04122.JPG,,FALSE, +N1,61517,sortie-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee,https://biolit.fr/sorties/sortie-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee/,Phil,,5/19/2015 0:00,16.0000000,16.0000000,47.80044,-4.272756000000,,Cimetière des bateaux - Treffiagat - Finistère,57847,observation-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee-2,https://biolit.fr/observations/observation-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04119.JPG,,FALSE, +N1,61517,sortie-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee,https://biolit.fr/sorties/sortie-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee/,Phil,,5/19/2015 0:00,16.0000000,16.0000000,47.80044,-4.272756000000,,Cimetière des bateaux - Treffiagat - Finistère,57849,observation-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee-3,https://biolit.fr/observations/observation-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04118.JPG,,FALSE, +N1,61517,sortie-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee,https://biolit.fr/sorties/sortie-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee/,Phil,,5/19/2015 0:00,16.0000000,16.0000000,47.80044,-4.272756000000,,Cimetière des bateaux - Treffiagat - Finistère,57851,observation-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee-4,https://biolit.fr/observations/observation-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04113.JPG,,FALSE, +N1,61517,sortie-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee,https://biolit.fr/sorties/sortie-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee/,Phil,,5/19/2015 0:00,16.0000000,16.0000000,47.80044,-4.272756000000,,Cimetière des bateaux - Treffiagat - Finistère,57853,observation-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee-5,https://biolit.fr/observations/observation-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04112.JPG,,FALSE, +N1,61517,sortie-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee,https://biolit.fr/sorties/sortie-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee/,Phil,,5/19/2015 0:00,16.0000000,16.0000000,47.80044,-4.272756000000,,Cimetière des bateaux - Treffiagat - Finistère,57855,observation-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee-6,https://biolit.fr/observations/observation-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04111.JPG,,FALSE, +N1,61517,sortie-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee,https://biolit.fr/sorties/sortie-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee/,Phil,,5/19/2015 0:00,16.0000000,16.0000000,47.80044,-4.272756000000,,Cimetière des bateaux - Treffiagat - Finistère,57857,observation-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee-7,https://biolit.fr/observations/observation-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04109.JPG,,FALSE, +N1,61517,sortie-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee,https://biolit.fr/sorties/sortie-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee/,Phil,,5/19/2015 0:00,16.0000000,16.0000000,47.80044,-4.272756000000,,Cimetière des bateaux - Treffiagat - Finistère,57859,observation-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee-8,https://biolit.fr/observations/observation-0b33fbb3-07cb-4f1a-b885-9c3b3de754ee-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04104.JPG,,FALSE, +N1,61518,sortie-54d53067-ea16-4265-b317-cb576ccbff4a,https://biolit.fr/sorties/sortie-54d53067-ea16-4265-b317-cb576ccbff4a/,Romuald VIALE - EXPENATURE,,5/18/2015 0:00,14.0000000,14.0000000,43.160081000000,5.619415000000,,La Ciotat,57861,observation-54d53067-ea16-4265-b317-cb576ccbff4a,https://biolit.fr/observations/observation-54d53067-ea16-4265-b317-cb576ccbff4a/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sea-kayaking-calanques-Marseille-Cassis-Ciotat (46).jpg,,FALSE, +N1,61518,sortie-54d53067-ea16-4265-b317-cb576ccbff4a,https://biolit.fr/sorties/sortie-54d53067-ea16-4265-b317-cb576ccbff4a/,Romuald VIALE - EXPENATURE,,5/18/2015 0:00,14.0000000,14.0000000,43.160081000000,5.619415000000,,La Ciotat,57863,observation-54d53067-ea16-4265-b317-cb576ccbff4a-2,https://biolit.fr/observations/observation-54d53067-ea16-4265-b317-cb576ccbff4a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sea-kayaking-calanques-Marseille-Cassis-Ciotat (47).jpg,,FALSE, +N1,61518,sortie-54d53067-ea16-4265-b317-cb576ccbff4a,https://biolit.fr/sorties/sortie-54d53067-ea16-4265-b317-cb576ccbff4a/,Romuald VIALE - EXPENATURE,,5/18/2015 0:00,14.0000000,14.0000000,43.160081000000,5.619415000000,,La Ciotat,57865,observation-54d53067-ea16-4265-b317-cb576ccbff4a-3,https://biolit.fr/observations/observation-54d53067-ea16-4265-b317-cb576ccbff4a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sea-kayaking-calanques-Marseille-Cassis-Ciotat (49).jpg,,FALSE, +N1,61519,sortie-c55d972a-1d35-41b3-831a-c06ee87794e7,https://biolit.fr/sorties/sortie-c55d972a-1d35-41b3-831a-c06ee87794e7/,Phil,,5/15/2015 0:00,10.0:15,10.0:35,47.792846000000,-4.28686400000,,Rocher face rue de Men Meur - Le Guilvinec - Finistère,57867,observation-c55d972a-1d35-41b3-831a-c06ee87794e7,https://biolit.fr/observations/observation-c55d972a-1d35-41b3-831a-c06ee87794e7/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/20150515_102344-scaled.jpg,,TRUE, +N1,61519,sortie-c55d972a-1d35-41b3-831a-c06ee87794e7,https://biolit.fr/sorties/sortie-c55d972a-1d35-41b3-831a-c06ee87794e7/,Phil,,5/15/2015 0:00,10.0:15,10.0:35,47.792846000000,-4.28686400000,,Rocher face rue de Men Meur - Le Guilvinec - Finistère,57869,observation-c55d972a-1d35-41b3-831a-c06ee87794e7-2,https://biolit.fr/observations/observation-c55d972a-1d35-41b3-831a-c06ee87794e7-2/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/2023/07/20150515_102510-scaled.jpg,,TRUE, +N1,61519,sortie-c55d972a-1d35-41b3-831a-c06ee87794e7,https://biolit.fr/sorties/sortie-c55d972a-1d35-41b3-831a-c06ee87794e7/,Phil,,5/15/2015 0:00,10.0:15,10.0:35,47.792846000000,-4.28686400000,,Rocher face rue de Men Meur - Le Guilvinec - Finistère,57871,observation-c55d972a-1d35-41b3-831a-c06ee87794e7-3,https://biolit.fr/observations/observation-c55d972a-1d35-41b3-831a-c06ee87794e7-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150515_103532-scaled.jpg,,FALSE, +N1,61519,sortie-c55d972a-1d35-41b3-831a-c06ee87794e7,https://biolit.fr/sorties/sortie-c55d972a-1d35-41b3-831a-c06ee87794e7/,Phil,,5/15/2015 0:00,10.0:15,10.0:35,47.792846000000,-4.28686400000,,Rocher face rue de Men Meur - Le Guilvinec - Finistère,57873,observation-c55d972a-1d35-41b3-831a-c06ee87794e7-4,https://biolit.fr/observations/observation-c55d972a-1d35-41b3-831a-c06ee87794e7-4/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/20150515_103551-scaled.jpg,,TRUE, +N1,61520,sortie-78943823-5478-4b3a-a4e3-9d6c574a359b,https://biolit.fr/sorties/sortie-78943823-5478-4b3a-a4e3-9d6c574a359b/,Phil,,05/12/2015,11.0000000,11.0000000,47.836199000000,-4.166793000000,,Rocher- plage face rue de la palud - Loctudy - Finistère,57875,observation-78943823-5478-4b3a-a4e3-9d6c574a359b,https://biolit.fr/observations/observation-78943823-5478-4b3a-a4e3-9d6c574a359b/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04016.JPG,,TRUE, +N1,61520,sortie-78943823-5478-4b3a-a4e3-9d6c574a359b,https://biolit.fr/sorties/sortie-78943823-5478-4b3a-a4e3-9d6c574a359b/,Phil,,05/12/2015,11.0000000,11.0000000,47.836199000000,-4.166793000000,,Rocher- plage face rue de la palud - Loctudy - Finistère,57877,observation-78943823-5478-4b3a-a4e3-9d6c574a359b-2,https://biolit.fr/observations/observation-78943823-5478-4b3a-a4e3-9d6c574a359b-2/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/DSC04021.JPG,,TRUE, +N1,61520,sortie-78943823-5478-4b3a-a4e3-9d6c574a359b,https://biolit.fr/sorties/sortie-78943823-5478-4b3a-a4e3-9d6c574a359b/,Phil,,05/12/2015,11.0000000,11.0000000,47.836199000000,-4.166793000000,,Rocher- plage face rue de la palud - Loctudy - Finistère,57879,observation-78943823-5478-4b3a-a4e3-9d6c574a359b-3,https://biolit.fr/observations/observation-78943823-5478-4b3a-a4e3-9d6c574a359b-3/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04022.JPG,,TRUE, +N1,61520,sortie-78943823-5478-4b3a-a4e3-9d6c574a359b,https://biolit.fr/sorties/sortie-78943823-5478-4b3a-a4e3-9d6c574a359b/,Phil,,05/12/2015,11.0000000,11.0000000,47.836199000000,-4.166793000000,,Rocher- plage face rue de la palud - Loctudy - Finistère,57881,observation-78943823-5478-4b3a-a4e3-9d6c574a359b-4,https://biolit.fr/observations/observation-78943823-5478-4b3a-a4e3-9d6c574a359b-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04024.JPG,,FALSE, +N1,61520,sortie-78943823-5478-4b3a-a4e3-9d6c574a359b,https://biolit.fr/sorties/sortie-78943823-5478-4b3a-a4e3-9d6c574a359b/,Phil,,05/12/2015,11.0000000,11.0000000,47.836199000000,-4.166793000000,,Rocher- plage face rue de la palud - Loctudy - Finistère,57883,observation-78943823-5478-4b3a-a4e3-9d6c574a359b-5,https://biolit.fr/observations/observation-78943823-5478-4b3a-a4e3-9d6c574a359b-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04025.JPG,,FALSE, +N1,61520,sortie-78943823-5478-4b3a-a4e3-9d6c574a359b,https://biolit.fr/sorties/sortie-78943823-5478-4b3a-a4e3-9d6c574a359b/,Phil,,05/12/2015,11.0000000,11.0000000,47.836199000000,-4.166793000000,,Rocher- plage face rue de la palud - Loctudy - Finistère,57885,observation-78943823-5478-4b3a-a4e3-9d6c574a359b-6,https://biolit.fr/observations/observation-78943823-5478-4b3a-a4e3-9d6c574a359b-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04029.JPG,,FALSE, +N1,61520,sortie-78943823-5478-4b3a-a4e3-9d6c574a359b,https://biolit.fr/sorties/sortie-78943823-5478-4b3a-a4e3-9d6c574a359b/,Phil,,05/12/2015,11.0000000,11.0000000,47.836199000000,-4.166793000000,,Rocher- plage face rue de la palud - Loctudy - Finistère,57887,observation-78943823-5478-4b3a-a4e3-9d6c574a359b-7,https://biolit.fr/observations/observation-78943823-5478-4b3a-a4e3-9d6c574a359b-7/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04030.JPG,,TRUE, +N1,61520,sortie-78943823-5478-4b3a-a4e3-9d6c574a359b,https://biolit.fr/sorties/sortie-78943823-5478-4b3a-a4e3-9d6c574a359b/,Phil,,05/12/2015,11.0000000,11.0000000,47.836199000000,-4.166793000000,,Rocher- plage face rue de la palud - Loctudy - Finistère,57889,observation-78943823-5478-4b3a-a4e3-9d6c574a359b-8,https://biolit.fr/observations/observation-78943823-5478-4b3a-a4e3-9d6c574a359b-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04031.JPG,,FALSE, +N1,61520,sortie-78943823-5478-4b3a-a4e3-9d6c574a359b,https://biolit.fr/sorties/sortie-78943823-5478-4b3a-a4e3-9d6c574a359b/,Phil,,05/12/2015,11.0000000,11.0000000,47.836199000000,-4.166793000000,,Rocher- plage face rue de la palud - Loctudy - Finistère,57891,observation-78943823-5478-4b3a-a4e3-9d6c574a359b-9,https://biolit.fr/observations/observation-78943823-5478-4b3a-a4e3-9d6c574a359b-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04032.JPG,,FALSE, +N1,61520,sortie-78943823-5478-4b3a-a4e3-9d6c574a359b,https://biolit.fr/sorties/sortie-78943823-5478-4b3a-a4e3-9d6c574a359b/,Phil,,05/12/2015,11.0000000,11.0000000,47.836199000000,-4.166793000000,,Rocher- plage face rue de la palud - Loctudy - Finistère,57893,observation-78943823-5478-4b3a-a4e3-9d6c574a359b-10,https://biolit.fr/observations/observation-78943823-5478-4b3a-a4e3-9d6c574a359b-10/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/DSC04034.JPG,,TRUE, +N1,61520,sortie-78943823-5478-4b3a-a4e3-9d6c574a359b,https://biolit.fr/sorties/sortie-78943823-5478-4b3a-a4e3-9d6c574a359b/,Phil,,05/12/2015,11.0000000,11.0000000,47.836199000000,-4.166793000000,,Rocher- plage face rue de la palud - Loctudy - Finistère,57895,observation-78943823-5478-4b3a-a4e3-9d6c574a359b-11,https://biolit.fr/observations/observation-78943823-5478-4b3a-a4e3-9d6c574a359b-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04035.JPG,,FALSE, +N1,61520,sortie-78943823-5478-4b3a-a4e3-9d6c574a359b,https://biolit.fr/sorties/sortie-78943823-5478-4b3a-a4e3-9d6c574a359b/,Phil,,05/12/2015,11.0000000,11.0000000,47.836199000000,-4.166793000000,,Rocher- plage face rue de la palud - Loctudy - Finistère,57897,observation-78943823-5478-4b3a-a4e3-9d6c574a359b-12,https://biolit.fr/observations/observation-78943823-5478-4b3a-a4e3-9d6c574a359b-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04037.JPG,,FALSE, +N1,61521,sortie-bfe3c24a-4e32-47fb-86f8-8b9b24753225,https://biolit.fr/sorties/sortie-bfe3c24a-4e32-47fb-86f8-8b9b24753225/,Céline,,5/16/2015 0:00,18.0000000,18.0000000,47.512591000000,-2.847450000000,,st gildas en rhuyz plage des Govelins,57899,observation-bfe3c24a-4e32-47fb-86f8-8b9b24753225,https://biolit.fr/observations/observation-bfe3c24a-4e32-47fb-86f8-8b9b24753225/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/20150516 st Gildas Algues Rouge.jpg,,TRUE, +N1,61521,sortie-bfe3c24a-4e32-47fb-86f8-8b9b24753225,https://biolit.fr/sorties/sortie-bfe3c24a-4e32-47fb-86f8-8b9b24753225/,Céline,,5/16/2015 0:00,18.0000000,18.0000000,47.512591000000,-2.847450000000,,st gildas en rhuyz plage des Govelins,57901,observation-bfe3c24a-4e32-47fb-86f8-8b9b24753225-2,https://biolit.fr/observations/observation-bfe3c24a-4e32-47fb-86f8-8b9b24753225-2/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/2023/07/20150516 st gildas pontes-rotated.jpg,,TRUE, +N1,61521,sortie-bfe3c24a-4e32-47fb-86f8-8b9b24753225,https://biolit.fr/sorties/sortie-bfe3c24a-4e32-47fb-86f8-8b9b24753225/,Céline,,5/16/2015 0:00,18.0000000,18.0000000,47.512591000000,-2.847450000000,,st gildas en rhuyz plage des Govelins,57903,observation-bfe3c24a-4e32-47fb-86f8-8b9b24753225-3,https://biolit.fr/observations/observation-bfe3c24a-4e32-47fb-86f8-8b9b24753225-3/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/meduse-scaled.jpg,,TRUE, +N1,61522,sortie-515c9f2d-c970-4ecb-8ab1-cd69ed746d20,https://biolit.fr/sorties/sortie-515c9f2d-c970-4ecb-8ab1-cd69ed746d20/,Romuald VIALE - EXPENATURE,,5/16/2015 0:00,14.0000000,14.0:45,43.152943000000,5.686567000000,,Entre St Cyr et Port d'Alon,57904,observation-515c9f2d-c970-4ecb-8ab1-cd69ed746d20,https://biolit.fr/observations/observation-515c9f2d-c970-4ecb-8ab1-cd69ed746d20/,Mola mola,Poisson-lune,,https://biolit.fr/wp-content/uploads/2023/07/1661914_676535035802562_6696700912352734872_n_0.jpg,,TRUE, +N1,61522,sortie-515c9f2d-c970-4ecb-8ab1-cd69ed746d20,https://biolit.fr/sorties/sortie-515c9f2d-c970-4ecb-8ab1-cd69ed746d20/,Romuald VIALE - EXPENATURE,,5/16/2015 0:00,14.0000000,14.0:45,43.152943000000,5.686567000000,,Entre St Cyr et Port d'Alon,57906,observation-515c9f2d-c970-4ecb-8ab1-cd69ed746d20-2,https://biolit.fr/observations/observation-515c9f2d-c970-4ecb-8ab1-cd69ed746d20-2/,Mola mola,Poisson-lune,,https://biolit.fr/wp-content/uploads/2023/07/11219652_676535162469216_576896251419496952_n_0.jpg,,TRUE, +N1,61522,sortie-515c9f2d-c970-4ecb-8ab1-cd69ed746d20,https://biolit.fr/sorties/sortie-515c9f2d-c970-4ecb-8ab1-cd69ed746d20/,Romuald VIALE - EXPENATURE,,5/16/2015 0:00,14.0000000,14.0:45,43.152943000000,5.686567000000,,Entre St Cyr et Port d'Alon,57908,observation-515c9f2d-c970-4ecb-8ab1-cd69ed746d20-3,https://biolit.fr/observations/observation-515c9f2d-c970-4ecb-8ab1-cd69ed746d20-3/,Mola mola,Poisson-lune,,https://biolit.fr/wp-content/uploads/2023/07/11008565_676535172469215_6268918818523823147_n.jpg,,TRUE, +N1,61523,sortie-ad2d0821-92ac-4223-89af-e1f794f48be5,https://biolit.fr/sorties/sortie-ad2d0821-92ac-4223-89af-e1f794f48be5/,Phil,,05/07/2015,12.0000000,13.0000000,47.792855000000,-3.84306200000,,Rochers devant route corniche - Trégunc Finistère,57910,observation-ad2d0821-92ac-4223-89af-e1f794f48be5,https://biolit.fr/observations/observation-ad2d0821-92ac-4223-89af-e1f794f48be5/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC03717.JPG,,TRUE, +N1,61523,sortie-ad2d0821-92ac-4223-89af-e1f794f48be5,https://biolit.fr/sorties/sortie-ad2d0821-92ac-4223-89af-e1f794f48be5/,Phil,,05/07/2015,12.0000000,13.0000000,47.792855000000,-3.84306200000,,Rochers devant route corniche - Trégunc Finistère,57912,observation-ad2d0821-92ac-4223-89af-e1f794f48be5-2,https://biolit.fr/observations/observation-ad2d0821-92ac-4223-89af-e1f794f48be5-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC03713.JPG,,TRUE, +N1,61523,sortie-ad2d0821-92ac-4223-89af-e1f794f48be5,https://biolit.fr/sorties/sortie-ad2d0821-92ac-4223-89af-e1f794f48be5/,Phil,,05/07/2015,12.0000000,13.0000000,47.792855000000,-3.84306200000,,Rochers devant route corniche - Trégunc Finistère,57914,observation-ad2d0821-92ac-4223-89af-e1f794f48be5-3,https://biolit.fr/observations/observation-ad2d0821-92ac-4223-89af-e1f794f48be5-3/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC03734.JPG,,TRUE, +N1,61523,sortie-ad2d0821-92ac-4223-89af-e1f794f48be5,https://biolit.fr/sorties/sortie-ad2d0821-92ac-4223-89af-e1f794f48be5/,Phil,,05/07/2015,12.0000000,13.0000000,47.792855000000,-3.84306200000,,Rochers devant route corniche - Trégunc Finistère,57916,observation-ad2d0821-92ac-4223-89af-e1f794f48be5-4,https://biolit.fr/observations/observation-ad2d0821-92ac-4223-89af-e1f794f48be5-4/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/DSC03768.JPG,,TRUE, +N1,61523,sortie-ad2d0821-92ac-4223-89af-e1f794f48be5,https://biolit.fr/sorties/sortie-ad2d0821-92ac-4223-89af-e1f794f48be5/,Phil,,05/07/2015,12.0000000,13.0000000,47.792855000000,-3.84306200000,,Rochers devant route corniche - Trégunc Finistère,57918,observation-ad2d0821-92ac-4223-89af-e1f794f48be5-5,https://biolit.fr/observations/observation-ad2d0821-92ac-4223-89af-e1f794f48be5-5/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03710.JPG,,TRUE, +N1,61523,sortie-ad2d0821-92ac-4223-89af-e1f794f48be5,https://biolit.fr/sorties/sortie-ad2d0821-92ac-4223-89af-e1f794f48be5/,Phil,,05/07/2015,12.0000000,13.0000000,47.792855000000,-3.84306200000,,Rochers devant route corniche - Trégunc Finistère,57920,observation-ad2d0821-92ac-4223-89af-e1f794f48be5-6,https://biolit.fr/observations/observation-ad2d0821-92ac-4223-89af-e1f794f48be5-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03708.JPG,,FALSE, +N1,61523,sortie-ad2d0821-92ac-4223-89af-e1f794f48be5,https://biolit.fr/sorties/sortie-ad2d0821-92ac-4223-89af-e1f794f48be5/,Phil,,05/07/2015,12.0000000,13.0000000,47.792855000000,-3.84306200000,,Rochers devant route corniche - Trégunc Finistère,57922,observation-ad2d0821-92ac-4223-89af-e1f794f48be5-7,https://biolit.fr/observations/observation-ad2d0821-92ac-4223-89af-e1f794f48be5-7/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/DSC03705.JPG,,TRUE, +N1,61523,sortie-ad2d0821-92ac-4223-89af-e1f794f48be5,https://biolit.fr/sorties/sortie-ad2d0821-92ac-4223-89af-e1f794f48be5/,Phil,,05/07/2015,12.0000000,13.0000000,47.792855000000,-3.84306200000,,Rochers devant route corniche - Trégunc Finistère,57924,observation-ad2d0821-92ac-4223-89af-e1f794f48be5-8,https://biolit.fr/observations/observation-ad2d0821-92ac-4223-89af-e1f794f48be5-8/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03700.JPG,,TRUE, +N1,61523,sortie-ad2d0821-92ac-4223-89af-e1f794f48be5,https://biolit.fr/sorties/sortie-ad2d0821-92ac-4223-89af-e1f794f48be5/,Phil,,05/07/2015,12.0000000,13.0000000,47.792855000000,-3.84306200000,,Rochers devant route corniche - Trégunc Finistère,57926,observation-ad2d0821-92ac-4223-89af-e1f794f48be5-9,https://biolit.fr/observations/observation-ad2d0821-92ac-4223-89af-e1f794f48be5-9/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03699.JPG,,TRUE, +N1,61523,sortie-ad2d0821-92ac-4223-89af-e1f794f48be5,https://biolit.fr/sorties/sortie-ad2d0821-92ac-4223-89af-e1f794f48be5/,Phil,,05/07/2015,12.0000000,13.0000000,47.792855000000,-3.84306200000,,Rochers devant route corniche - Trégunc Finistère,57928,observation-ad2d0821-92ac-4223-89af-e1f794f48be5-10,https://biolit.fr/observations/observation-ad2d0821-92ac-4223-89af-e1f794f48be5-10/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC03692-scaled.jpg,,TRUE, +N1,61524,sortie-a752b7fc-c9c2-48ab-b107-28f9af48c223,https://biolit.fr/sorties/sortie-a752b7fc-c9c2-48ab-b107-28f9af48c223/,Romuald VIALE - EXPENATURE,,5/13/2015 0:00,9.0000000,12.0000000,43.179323000000,5.615987000000,,La Ciotat,57930,observation-a752b7fc-c9c2-48ab-b107-28f9af48c223,https://biolit.fr/observations/observation-a752b7fc-c9c2-48ab-b107-28f9af48c223/,,,,https://biolit.fr/wp-content/uploads/2023/07/Canoe-Kayak-Calanques-cycles-scolaires-colleges-lycees (31).jpg,,FALSE, +N1,61525,sortie-b5804b0b-890c-4735-935a-b766a9885ccb,https://biolit.fr/sorties/sortie-b5804b0b-890c-4735-935a-b766a9885ccb/,Romuald VIALE - EXPENATURE,,5/13/2015 0:00,9.0000000,12.0000000,43.179487000000,5.616137000000,,La Ciotat,57932,observation-b5804b0b-890c-4735-935a-b766a9885ccb,https://biolit.fr/observations/observation-b5804b0b-890c-4735-935a-b766a9885ccb/,Cestum veneris,Ceinture de Vénus,,https://biolit.fr/wp-content/uploads/2023/07/Canoe-Kayak-Calanques-cycles-scolaires-colleges-lycees (36).jpg,,TRUE, +N1,61526,sortie-fe74e2f6-080d-4b3a-8026-8a2b2d5b70fc,https://biolit.fr/sorties/sortie-fe74e2f6-080d-4b3a-8026-8a2b2d5b70fc/,Romuald VIALE - EXPENATURE,,5/13/2015 0:00,13.0000000,15.0000000,43.360959000000,5.302549000000,,l'Estaque,57934,observation-fe74e2f6-080d-4b3a-8026-8a2b2d5b70fc,https://biolit.fr/observations/observation-fe74e2f6-080d-4b3a-8026-8a2b2d5b70fc/,,,,https://biolit.fr/wp-content/uploads/2023/07/Canoe-Kayak-cote-bleue-estaque-rove-niolon-carry-le-rouet-plage (8).jpg,,FALSE, +N1,61527,sortie-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7,https://biolit.fr/sorties/sortie-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7/,Valie,,05/10/2015,11.0000000,11.0:45,43.289781000000,3.434517000000,,Plage de la tamarissière,57936,observation-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7,https://biolit.fr/observations/observation-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC01071-scaled.jpg,,FALSE, +N1,61527,sortie-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7,https://biolit.fr/sorties/sortie-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7/,Valie,,05/10/2015,11.0000000,11.0:45,43.289781000000,3.434517000000,,Plage de la tamarissière,57938,observation-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7-2,https://biolit.fr/observations/observation-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7-2/,Medicago marina,Luzerne marine,,https://biolit.fr/wp-content/uploads/2023/07/DSC01078-scaled.jpg,,TRUE, +N1,61527,sortie-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7,https://biolit.fr/sorties/sortie-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7/,Valie,,05/10/2015,11.0000000,11.0:45,43.289781000000,3.434517000000,,Plage de la tamarissière,57940,observation-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7-3,https://biolit.fr/observations/observation-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7-3/,Matthiola sinuata,Giroflée des dunes,,https://biolit.fr/wp-content/uploads/2023/07/DSC01083-scaled.jpg,,TRUE, +N1,61527,sortie-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7,https://biolit.fr/sorties/sortie-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7/,Valie,,05/10/2015,11.0000000,11.0:45,43.289781000000,3.434517000000,,Plage de la tamarissière,57942,observation-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7-4,https://biolit.fr/observations/observation-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC01074-scaled.jpg,,FALSE, +N1,61527,sortie-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7,https://biolit.fr/sorties/sortie-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7/,Valie,,05/10/2015,11.0000000,11.0:45,43.289781000000,3.434517000000,,Plage de la tamarissière,57944,observation-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7-5,https://biolit.fr/observations/observation-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC01080-scaled.jpg,,FALSE, +N1,61527,sortie-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7,https://biolit.fr/sorties/sortie-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7/,Valie,,05/10/2015,11.0000000,11.0:45,43.289781000000,3.434517000000,,Plage de la tamarissière,57946,observation-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7-6,https://biolit.fr/observations/observation-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7-6/,Lagurus ovatus,Queue de lièvre,,https://biolit.fr/wp-content/uploads/2023/07/DSC01087-scaled.jpg,,TRUE, +N1,61527,sortie-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7,https://biolit.fr/sorties/sortie-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7/,Valie,,05/10/2015,11.0000000,11.0:45,43.289781000000,3.434517000000,,Plage de la tamarissière,57948,observation-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7-7,https://biolit.fr/observations/observation-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC01116-scaled.jpg,,FALSE, +N1,61527,sortie-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7,https://biolit.fr/sorties/sortie-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7/,Valie,,05/10/2015,11.0000000,11.0:45,43.289781000000,3.434517000000,,Plage de la tamarissière,57950,observation-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7-8,https://biolit.fr/observations/observation-5bf0e0fc-549a-49d0-8c22-99cfe73b66d7-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC01118-scaled.jpg,,FALSE, +N1,61528,sortie-4be6ea6d-0d93-43eb-9d7f-67e789f1aecf,https://biolit.fr/sorties/sortie-4be6ea6d-0d93-43eb-9d7f-67e789f1aecf/,Céline,,05/12/2015,10.0000000,12.0000000,43.52133900000,7.03211300000,,Ile de lerins Ile ste Marguerite,57952,observation-4be6ea6d-0d93-43eb-9d7f-67e789f1aecf,https://biolit.fr/observations/observation-4be6ea6d-0d93-43eb-9d7f-67e789f1aecf/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/2023/07/padine ile de lerins.PNG,,TRUE, +N1,61528,sortie-4be6ea6d-0d93-43eb-9d7f-67e789f1aecf,https://biolit.fr/sorties/sortie-4be6ea6d-0d93-43eb-9d7f-67e789f1aecf/,Céline,,05/12/2015,10.0000000,12.0000000,43.52133900000,7.03211300000,,Ile de lerins Ile ste Marguerite,57954,observation-4be6ea6d-0d93-43eb-9d7f-67e789f1aecf-2,https://biolit.fr/observations/observation-4be6ea6d-0d93-43eb-9d7f-67e789f1aecf-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/bernard l'ermite ile de lerins.PNG,,FALSE, +N1,61528,sortie-4be6ea6d-0d93-43eb-9d7f-67e789f1aecf,https://biolit.fr/sorties/sortie-4be6ea6d-0d93-43eb-9d7f-67e789f1aecf/,Céline,,05/12/2015,10.0000000,12.0000000,43.52133900000,7.03211300000,,Ile de lerins Ile ste Marguerite,57956,observation-4be6ea6d-0d93-43eb-9d7f-67e789f1aecf-3,https://biolit.fr/observations/observation-4be6ea6d-0d93-43eb-9d7f-67e789f1aecf-3/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/criste marine ile de lerins.PNG,,TRUE, +N1,61528,sortie-4be6ea6d-0d93-43eb-9d7f-67e789f1aecf,https://biolit.fr/sorties/sortie-4be6ea6d-0d93-43eb-9d7f-67e789f1aecf/,Céline,,05/12/2015,10.0000000,12.0000000,43.52133900000,7.03211300000,,Ile de lerins Ile ste Marguerite,57958,observation-4be6ea6d-0d93-43eb-9d7f-67e789f1aecf-4,https://biolit.fr/observations/observation-4be6ea6d-0d93-43eb-9d7f-67e789f1aecf-4/,Aequorea forskalea,Equorée,,https://biolit.fr/wp-content/uploads/2023/07/meduse aurelia aureta.PNG,,TRUE, +N1,61529,sortie-5d5b579c-9bcb-43bc-9edb-3aa9a16b7b04,https://biolit.fr/sorties/sortie-5d5b579c-9bcb-43bc-9edb-3aa9a16b7b04/,Phil,,05/07/2015,13.0:15,13.0000000,47.7945740,-3.855234000000,,Port de Trévignon - Trégunc Finistère,57960,observation-5d5b579c-9bcb-43bc-9edb-3aa9a16b7b04,https://biolit.fr/observations/observation-5d5b579c-9bcb-43bc-9edb-3aa9a16b7b04/,Pollachius pollachius,Lieu jaune,,https://biolit.fr/wp-content/uploads/2023/07/DSC03791.JPG,,TRUE, +N1,61530,sortie-a1340a95-3057-47fb-85a2-8d99ccd7b4ce,https://biolit.fr/sorties/sortie-a1340a95-3057-47fb-85a2-8d99ccd7b4ce/,Phil,,05/07/2015,12.000005,12.0000000,47.7932310,-3.84327,,Route de la Corniche - Trégunc -Finistère,57962,observation-a1340a95-3057-47fb-85a2-8d99ccd7b4ce,https://biolit.fr/observations/observation-a1340a95-3057-47fb-85a2-8d99ccd7b4ce/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/DSC03741.JPG,,TRUE, +N1,61530,sortie-a1340a95-3057-47fb-85a2-8d99ccd7b4ce,https://biolit.fr/sorties/sortie-a1340a95-3057-47fb-85a2-8d99ccd7b4ce/,Phil,,05/07/2015,12.000005,12.0000000,47.7932310,-3.84327,,Route de la Corniche - Trégunc -Finistère,57964,observation-a1340a95-3057-47fb-85a2-8d99ccd7b4ce-2,https://biolit.fr/observations/observation-a1340a95-3057-47fb-85a2-8d99ccd7b4ce-2/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/2023/07/DSC03743.JPG,,TRUE, +N1,61531,sortie-334a13c2-958c-49b4-8085-0b69a92af1ff,https://biolit.fr/sorties/sortie-334a13c2-958c-49b4-8085-0b69a92af1ff/,Phil,,05/07/2015,12.0000000,12.0:45,47.7939100,-3.843479000000,,Route de la Corniche - Trégunc -Finistère,57966,observation-334a13c2-958c-49b4-8085-0b69a92af1ff,https://biolit.fr/observations/observation-334a13c2-958c-49b4-8085-0b69a92af1ff/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03722.JPG,,TRUE, +N1,61531,sortie-334a13c2-958c-49b4-8085-0b69a92af1ff,https://biolit.fr/sorties/sortie-334a13c2-958c-49b4-8085-0b69a92af1ff/,Phil,,05/07/2015,12.0000000,12.0:45,47.7939100,-3.843479000000,,Route de la Corniche - Trégunc -Finistère,57968,observation-334a13c2-958c-49b4-8085-0b69a92af1ff-2,https://biolit.fr/observations/observation-334a13c2-958c-49b4-8085-0b69a92af1ff-2/,Chthamalus montagui,Chthamale cerf-volant,,https://biolit.fr/wp-content/uploads/2023/07/DSC03729.JPG,,TRUE, +N1,61531,sortie-334a13c2-958c-49b4-8085-0b69a92af1ff,https://biolit.fr/sorties/sortie-334a13c2-958c-49b4-8085-0b69a92af1ff/,Phil,,05/07/2015,12.0000000,12.0:45,47.7939100,-3.843479000000,,Route de la Corniche - Trégunc -Finistère,57970,observation-334a13c2-958c-49b4-8085-0b69a92af1ff-3,https://biolit.fr/observations/observation-334a13c2-958c-49b4-8085-0b69a92af1ff-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03736.JPG,,FALSE, +N1,61531,sortie-334a13c2-958c-49b4-8085-0b69a92af1ff,https://biolit.fr/sorties/sortie-334a13c2-958c-49b4-8085-0b69a92af1ff/,Phil,,05/07/2015,12.0000000,12.0:45,47.7939100,-3.843479000000,,Route de la Corniche - Trégunc -Finistère,57972,observation-334a13c2-958c-49b4-8085-0b69a92af1ff-4,https://biolit.fr/observations/observation-334a13c2-958c-49b4-8085-0b69a92af1ff-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03766.JPG,,FALSE, +N1,61531,sortie-334a13c2-958c-49b4-8085-0b69a92af1ff,https://biolit.fr/sorties/sortie-334a13c2-958c-49b4-8085-0b69a92af1ff/,Phil,,05/07/2015,12.0000000,12.0:45,47.7939100,-3.843479000000,,Route de la Corniche - Trégunc -Finistère,57974,observation-334a13c2-958c-49b4-8085-0b69a92af1ff-5,https://biolit.fr/observations/observation-334a13c2-958c-49b4-8085-0b69a92af1ff-5/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03772.JPG,,TRUE, +N1,61531,sortie-334a13c2-958c-49b4-8085-0b69a92af1ff,https://biolit.fr/sorties/sortie-334a13c2-958c-49b4-8085-0b69a92af1ff/,Phil,,05/07/2015,12.0000000,12.0:45,47.7939100,-3.843479000000,,Route de la Corniche - Trégunc -Finistère,57976,observation-334a13c2-958c-49b4-8085-0b69a92af1ff-6,https://biolit.fr/observations/observation-334a13c2-958c-49b4-8085-0b69a92af1ff-6/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03776.JPG,,TRUE, +N1,61531,sortie-334a13c2-958c-49b4-8085-0b69a92af1ff,https://biolit.fr/sorties/sortie-334a13c2-958c-49b4-8085-0b69a92af1ff/,Phil,,05/07/2015,12.0000000,12.0:45,47.7939100,-3.843479000000,,Route de la Corniche - Trégunc -Finistère,57978,observation-334a13c2-958c-49b4-8085-0b69a92af1ff-7,https://biolit.fr/observations/observation-334a13c2-958c-49b4-8085-0b69a92af1ff-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03778.JPG,,FALSE, +N1,61531,sortie-334a13c2-958c-49b4-8085-0b69a92af1ff,https://biolit.fr/sorties/sortie-334a13c2-958c-49b4-8085-0b69a92af1ff/,Phil,,05/07/2015,12.0000000,12.0:45,47.7939100,-3.843479000000,,Route de la Corniche - Trégunc -Finistère,57980,observation-334a13c2-958c-49b4-8085-0b69a92af1ff-8,https://biolit.fr/observations/observation-334a13c2-958c-49b4-8085-0b69a92af1ff-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03780.JPG,,FALSE, +N1,61531,sortie-334a13c2-958c-49b4-8085-0b69a92af1ff,https://biolit.fr/sorties/sortie-334a13c2-958c-49b4-8085-0b69a92af1ff/,Phil,,05/07/2015,12.0000000,12.0:45,47.7939100,-3.843479000000,,Route de la Corniche - Trégunc -Finistère,57982,observation-334a13c2-958c-49b4-8085-0b69a92af1ff-9,https://biolit.fr/observations/observation-334a13c2-958c-49b4-8085-0b69a92af1ff-9/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03781.JPG,,TRUE, +N1,61531,sortie-334a13c2-958c-49b4-8085-0b69a92af1ff,https://biolit.fr/sorties/sortie-334a13c2-958c-49b4-8085-0b69a92af1ff/,Phil,,05/07/2015,12.0000000,12.0:45,47.7939100,-3.843479000000,,Route de la Corniche - Trégunc -Finistère,57984,observation-334a13c2-958c-49b4-8085-0b69a92af1ff-10,https://biolit.fr/observations/observation-334a13c2-958c-49b4-8085-0b69a92af1ff-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03784.JPG,,FALSE, +N1,61532,sortie-53a73c06-e2a2-4128-80de-a1f050ca665f,https://biolit.fr/sorties/sortie-53a73c06-e2a2-4128-80de-a1f050ca665f/,Phil,,05/07/2015,12.0000000,12.0000000,47.7930190,-3.843267000000,,Route de la Corniche - Trégunc -Finistère,57986,observation-53a73c06-e2a2-4128-80de-a1f050ca665f,https://biolit.fr/observations/observation-53a73c06-e2a2-4128-80de-a1f050ca665f/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/DSC03747.JPG,,TRUE, +N1,61532,sortie-53a73c06-e2a2-4128-80de-a1f050ca665f,https://biolit.fr/sorties/sortie-53a73c06-e2a2-4128-80de-a1f050ca665f/,Phil,,05/07/2015,12.0000000,12.0000000,47.7930190,-3.843267000000,,Route de la Corniche - Trégunc -Finistère,57988,observation-53a73c06-e2a2-4128-80de-a1f050ca665f-2,https://biolit.fr/observations/observation-53a73c06-e2a2-4128-80de-a1f050ca665f-2/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/DSC03751.JPG,,TRUE, +N1,61532,sortie-53a73c06-e2a2-4128-80de-a1f050ca665f,https://biolit.fr/sorties/sortie-53a73c06-e2a2-4128-80de-a1f050ca665f/,Phil,,05/07/2015,12.0000000,12.0000000,47.7930190,-3.843267000000,,Route de la Corniche - Trégunc -Finistère,57990,observation-53a73c06-e2a2-4128-80de-a1f050ca665f-3,https://biolit.fr/observations/observation-53a73c06-e2a2-4128-80de-a1f050ca665f-3/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/DSC03754.JPG,,TRUE, +N1,61532,sortie-53a73c06-e2a2-4128-80de-a1f050ca665f,https://biolit.fr/sorties/sortie-53a73c06-e2a2-4128-80de-a1f050ca665f/,Phil,,05/07/2015,12.0000000,12.0000000,47.7930190,-3.843267000000,,Route de la Corniche - Trégunc -Finistère,57992,observation-53a73c06-e2a2-4128-80de-a1f050ca665f-4,https://biolit.fr/observations/observation-53a73c06-e2a2-4128-80de-a1f050ca665f-4/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/DSC03759.JPG,,TRUE, +N1,61532,sortie-53a73c06-e2a2-4128-80de-a1f050ca665f,https://biolit.fr/sorties/sortie-53a73c06-e2a2-4128-80de-a1f050ca665f/,Phil,,05/07/2015,12.0000000,12.0000000,47.7930190,-3.843267000000,,Route de la Corniche - Trégunc -Finistère,57994,observation-53a73c06-e2a2-4128-80de-a1f050ca665f-5,https://biolit.fr/observations/observation-53a73c06-e2a2-4128-80de-a1f050ca665f-5/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/DSC03762.JPG,,TRUE, +N1,61532,sortie-53a73c06-e2a2-4128-80de-a1f050ca665f,https://biolit.fr/sorties/sortie-53a73c06-e2a2-4128-80de-a1f050ca665f/,Phil,,05/07/2015,12.0000000,12.0000000,47.7930190,-3.843267000000,,Route de la Corniche - Trégunc -Finistère,57996,observation-53a73c06-e2a2-4128-80de-a1f050ca665f-6,https://biolit.fr/observations/observation-53a73c06-e2a2-4128-80de-a1f050ca665f-6/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/DSC03795.JPG,,TRUE, +N1,61533,sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6,https://biolit.fr/sorties/sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6/,Phil,,05/04/2015,12.0000000,12.0000000,47.8629490,-4.073048000000,,La Mer Blanche - Fouesnant - Finistère,57998,observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6,https://biolit.fr/observations/observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03647.JPG,,FALSE, +N1,61533,sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6,https://biolit.fr/sorties/sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6/,Phil,,05/04/2015,12.0000000,12.0000000,47.8629490,-4.073048000000,,La Mer Blanche - Fouesnant - Finistère,58000,observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-2,https://biolit.fr/observations/observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03648.JPG,,FALSE, +N1,61533,sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6,https://biolit.fr/sorties/sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6/,Phil,,05/04/2015,12.0000000,12.0000000,47.8629490,-4.073048000000,,La Mer Blanche - Fouesnant - Finistère,58002,observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-3,https://biolit.fr/observations/observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03649.JPG,,FALSE, +N1,61533,sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6,https://biolit.fr/sorties/sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6/,Phil,,05/04/2015,12.0000000,12.0000000,47.8629490,-4.073048000000,,La Mer Blanche - Fouesnant - Finistère,58004,observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-4,https://biolit.fr/observations/observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/DSC03653.JPG,,TRUE, +N1,61533,sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6,https://biolit.fr/sorties/sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6/,Phil,,05/04/2015,12.0000000,12.0000000,47.8629490,-4.073048000000,,La Mer Blanche - Fouesnant - Finistère,58006,observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-5,https://biolit.fr/observations/observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03656.JPG,,FALSE, +N1,61533,sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6,https://biolit.fr/sorties/sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6/,Phil,,05/04/2015,12.0000000,12.0000000,47.8629490,-4.073048000000,,La Mer Blanche - Fouesnant - Finistère,58008,observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-6,https://biolit.fr/observations/observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-6/,Halimione portulacoides,Obione faux-pourpier,,https://biolit.fr/wp-content/uploads/2023/07/DSC03658.JPG,,TRUE,Identifiable +N1,61533,sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6,https://biolit.fr/sorties/sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6/,Phil,,05/04/2015,12.0000000,12.0000000,47.8629490,-4.073048000000,,La Mer Blanche - Fouesnant - Finistère,58010,observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-7,https://biolit.fr/observations/observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03659.JPG,,FALSE, +N1,61533,sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6,https://biolit.fr/sorties/sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6/,Phil,,05/04/2015,12.0000000,12.0000000,47.8629490,-4.073048000000,,La Mer Blanche - Fouesnant - Finistère,58012,observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-8,https://biolit.fr/observations/observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03661.JPG,,FALSE, +N1,61533,sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6,https://biolit.fr/sorties/sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6/,Phil,,05/04/2015,12.0000000,12.0000000,47.8629490,-4.073048000000,,La Mer Blanche - Fouesnant - Finistère,58014,observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-9,https://biolit.fr/observations/observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-9/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/DSC03664.JPG,,TRUE, +N1,61533,sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6,https://biolit.fr/sorties/sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6/,Phil,,05/04/2015,12.0000000,12.0000000,47.8629490,-4.073048000000,,La Mer Blanche - Fouesnant - Finistère,58016,observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-10,https://biolit.fr/observations/observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03665.JPG,,FALSE, +N1,61533,sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6,https://biolit.fr/sorties/sortie-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6/,Phil,,05/04/2015,12.0000000,12.0000000,47.8629490,-4.073048000000,,La Mer Blanche - Fouesnant - Finistère,58018,observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-11,https://biolit.fr/observations/observation-8ae71d5e-0e4e-48db-860a-a2bcf6c08ab6-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03666.JPG,,FALSE, +N1,61534,sortie-dd3dcd2a-1dc7-47d8-8dab-f645bd1e0698,https://biolit.fr/sorties/sortie-dd3dcd2a-1dc7-47d8-8dab-f645bd1e0698/,Romuald VIALE - EXPENATURE,,05/07/2015,15.0000000,15.0000000,43.211305000000,5.51692200000,,Port Miou,58020,observation-dd3dcd2a-1dc7-47d8-8dab-f645bd1e0698,https://biolit.fr/observations/observation-dd3dcd2a-1dc7-47d8-8dab-f645bd1e0698/,,,,https://biolit.fr/wp-content/uploads/2023/07/20150323_144212.jpg,,FALSE, +N1,61535,sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0,https://biolit.fr/sorties/sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0/,Phil,,05/04/2015,13.0000000,14.0:15,47.854471000000,-4.054754000000,,Plage de Kerler - Fouesnant -Finistère,58022,observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0,https://biolit.fr/observations/observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0/,Saccorhiza polyschides,Laminaire à bulbe,,https://biolit.fr/wp-content/uploads/2023/07/DSC03669.JPG,,TRUE, +N1,61535,sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0,https://biolit.fr/sorties/sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0/,Phil,,05/04/2015,13.0000000,14.0:15,47.854471000000,-4.054754000000,,Plage de Kerler - Fouesnant -Finistère,58024,observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0-2,https://biolit.fr/observations/observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03672.JPG,,FALSE, +N1,61535,sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0,https://biolit.fr/sorties/sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0/,Phil,,05/04/2015,13.0000000,14.0:15,47.854471000000,-4.054754000000,,Plage de Kerler - Fouesnant -Finistère,58026,observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0-3,https://biolit.fr/observations/observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03675.JPG,,FALSE, +N1,61535,sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0,https://biolit.fr/sorties/sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0/,Phil,,05/04/2015,13.0000000,14.0:15,47.854471000000,-4.054754000000,,Plage de Kerler - Fouesnant -Finistère,58028,observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0-4,https://biolit.fr/observations/observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0-4/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/2023/07/DSC03676.JPG,,TRUE, +N1,61535,sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0,https://biolit.fr/sorties/sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0/,Phil,,05/04/2015,13.0000000,14.0:15,47.854471000000,-4.054754000000,,Plage de Kerler - Fouesnant -Finistère,58030,observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0-5,https://biolit.fr/observations/observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03680.JPG,,FALSE, +N1,61535,sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0,https://biolit.fr/sorties/sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0/,Phil,,05/04/2015,13.0000000,14.0:15,47.854471000000,-4.054754000000,,Plage de Kerler - Fouesnant -Finistère,58032,observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0-6,https://biolit.fr/observations/observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0-6/,Cyanea lamarckii,Cyanée de Lamarck,,https://biolit.fr/wp-content/uploads/2023/07/DSC03682.JPG,,TRUE, +N1,61535,sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0,https://biolit.fr/sorties/sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0/,Phil,,05/04/2015,13.0000000,14.0:15,47.854471000000,-4.054754000000,,Plage de Kerler - Fouesnant -Finistère,58034,observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0-7,https://biolit.fr/observations/observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0-7/,Furcellaria lumbricalis,Algue-lombric,,https://biolit.fr/wp-content/uploads/2023/07/DSC03685.JPG,,TRUE, +N1,61535,sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0,https://biolit.fr/sorties/sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0/,Phil,,05/04/2015,13.0000000,14.0:15,47.854471000000,-4.054754000000,,Plage de Kerler - Fouesnant -Finistère,58036,observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0-8,https://biolit.fr/observations/observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03687.JPG,,FALSE, +N1,61535,sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0,https://biolit.fr/sorties/sortie-d1c6bcc6-d061-45eb-a2bb-27076716a1a0/,Phil,,05/04/2015,13.0000000,14.0:15,47.854471000000,-4.054754000000,,Plage de Kerler - Fouesnant -Finistère,58038,observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0-9,https://biolit.fr/observations/observation-d1c6bcc6-d061-45eb-a2bb-27076716a1a0-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03688.JPG,,FALSE, +N1,61536,sortie-c679484a-a587-41f6-b8d8-3f2998a7b70b,https://biolit.fr/sorties/sortie-c679484a-a587-41f6-b8d8-3f2998a7b70b/,Phil,,05/03/2015,12.0000000,13.0000000,47.893956000000,-3.968001000000,,Plage de Kerleven - La Forêt-Fouesnant - Finistère,58040,observation-c679484a-a587-41f6-b8d8-3f2998a7b70b,https://biolit.fr/observations/observation-c679484a-a587-41f6-b8d8-3f2998a7b70b/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03641.JPG,,FALSE, +N1,61537,sortie-064c30db-1633-4077-9f59-06449f377f36,https://biolit.fr/sorties/sortie-064c30db-1633-4077-9f59-06449f377f36/,Phil,,05/03/2015,14.0000000,15.0000000,47.86808200000,-4.101913000000,,Bout de la plage - Corniche de la Mer - Bénodet 29,58042,observation-064c30db-1633-4077-9f59-06449f377f36,https://biolit.fr/observations/observation-064c30db-1633-4077-9f59-06449f377f36/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03635.JPG,,TRUE, +N1,61537,sortie-064c30db-1633-4077-9f59-06449f377f36,https://biolit.fr/sorties/sortie-064c30db-1633-4077-9f59-06449f377f36/,Phil,,05/03/2015,14.0000000,15.0000000,47.86808200000,-4.101913000000,,Bout de la plage - Corniche de la Mer - Bénodet 29,58044,observation-064c30db-1633-4077-9f59-06449f377f36-2,https://biolit.fr/observations/observation-064c30db-1633-4077-9f59-06449f377f36-2/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03637.JPG,,TRUE, +N1,61537,sortie-064c30db-1633-4077-9f59-06449f377f36,https://biolit.fr/sorties/sortie-064c30db-1633-4077-9f59-06449f377f36/,Phil,,05/03/2015,14.0000000,15.0000000,47.86808200000,-4.101913000000,,Bout de la plage - Corniche de la Mer - Bénodet 29,58046,observation-064c30db-1633-4077-9f59-06449f377f36-3,https://biolit.fr/observations/observation-064c30db-1633-4077-9f59-06449f377f36-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03638.JPG,,TRUE, +N1,61538,sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a,https://biolit.fr/sorties/sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a/,Phil,,05/03/2015,11.0:45,12.0:45,47.893328000000,-3.966316000000,,Plage de Kerleven - La Forêt-Fouesnant 29,58048,observation-868e9966-3504-4621-a2a4-ea4d58e8b55a,https://biolit.fr/observations/observation-868e9966-3504-4621-a2a4-ea4d58e8b55a/,Lutraria lutraria,Lutraire elliptique,,https://biolit.fr/wp-content/uploads/2023/07/DSC03594.JPG,,TRUE, +N1,61538,sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a,https://biolit.fr/sorties/sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a/,Phil,,05/03/2015,11.0:45,12.0:45,47.893328000000,-3.966316000000,,Plage de Kerleven - La Forêt-Fouesnant 29,58050,observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-2,https://biolit.fr/observations/observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-2/,Lutraria lutraria,Lutraire elliptique,,https://biolit.fr/wp-content/uploads/2023/07/DSC03599.JPG,,TRUE, +N1,61538,sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a,https://biolit.fr/sorties/sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a/,Phil,,05/03/2015,11.0:45,12.0:45,47.893328000000,-3.966316000000,,Plage de Kerleven - La Forêt-Fouesnant 29,58052,observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-3,https://biolit.fr/observations/observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03601.JPG,,FALSE, +N1,61538,sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a,https://biolit.fr/sorties/sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a/,Phil,,05/03/2015,11.0:45,12.0:45,47.893328000000,-3.966316000000,,Plage de Kerleven - La Forêt-Fouesnant 29,58054,observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-4,https://biolit.fr/observations/observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03603.JPG,,FALSE, +N1,61538,sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a,https://biolit.fr/sorties/sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a/,Phil,,05/03/2015,11.0:45,12.0:45,47.893328000000,-3.966316000000,,Plage de Kerleven - La Forêt-Fouesnant 29,58056,observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-5,https://biolit.fr/observations/observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-5/,Sipunculus (Sipunculus) nudus,Ver cacahuète,,https://biolit.fr/wp-content/uploads/2023/07/DSC03593.JPG,,TRUE, +N1,61538,sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a,https://biolit.fr/sorties/sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a/,Phil,,05/03/2015,11.0:45,12.0:45,47.893328000000,-3.966316000000,,Plage de Kerleven - La Forêt-Fouesnant 29,58058,observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-6,https://biolit.fr/observations/observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-6/,Sipunculus (Sipunculus) nudus,Ver cacahuète,,https://biolit.fr/wp-content/uploads/2023/07/DSC03611.JPG,,TRUE, +N1,61538,sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a,https://biolit.fr/sorties/sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a/,Phil,,05/03/2015,11.0:45,12.0:45,47.893328000000,-3.966316000000,,Plage de Kerleven - La Forêt-Fouesnant 29,58060,observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-7,https://biolit.fr/observations/observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-7/,Sipunculus (Sipunculus) nudus,Ver cacahuète,,https://biolit.fr/wp-content/uploads/2023/07/DSC03612.JPG,,TRUE, +N1,61538,sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a,https://biolit.fr/sorties/sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a/,Phil,,05/03/2015,11.0:45,12.0:45,47.893328000000,-3.966316000000,,Plage de Kerleven - La Forêt-Fouesnant 29,58062,observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-8,https://biolit.fr/observations/observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03623.JPG,,FALSE, +N1,61538,sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a,https://biolit.fr/sorties/sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a/,Phil,,05/03/2015,11.0:45,12.0:45,47.893328000000,-3.966316000000,,Plage de Kerleven - La Forêt-Fouesnant 29,58064,observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-9,https://biolit.fr/observations/observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03624.JPG,,FALSE, +N1,61538,sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a,https://biolit.fr/sorties/sortie-868e9966-3504-4621-a2a4-ea4d58e8b55a/,Phil,,05/03/2015,11.0:45,12.0:45,47.893328000000,-3.966316000000,,Plage de Kerleven - La Forêt-Fouesnant 29,58066,observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-10,https://biolit.fr/observations/observation-868e9966-3504-4621-a2a4-ea4d58e8b55a-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03589.JPG,,FALSE, +N1,61539,sortie-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6,https://biolit.fr/sorties/sortie-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6/,Phil,,4/23/2015 0:00,10.0:45,11.0000000,47.829801000000,-4.363127000000,,Rochers bout rues des flots Penmarc'h 29,58068,observation-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6,https://biolit.fr/observations/observation-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03562.JPG,,TRUE, +N1,61539,sortie-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6,https://biolit.fr/sorties/sortie-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6/,Phil,,4/23/2015 0:00,10.0:45,11.0000000,47.829801000000,-4.363127000000,,Rochers bout rues des flots Penmarc'h 29,58070,observation-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6-2,https://biolit.fr/observations/observation-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6-2/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03568.JPG,,TRUE, +N1,61539,sortie-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6,https://biolit.fr/sorties/sortie-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6/,Phil,,4/23/2015 0:00,10.0:45,11.0000000,47.829801000000,-4.363127000000,,Rochers bout rues des flots Penmarc'h 29,58072,observation-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6-3,https://biolit.fr/observations/observation-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6-3/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03574.JPG,,TRUE, +N1,61539,sortie-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6,https://biolit.fr/sorties/sortie-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6/,Phil,,4/23/2015 0:00,10.0:45,11.0000000,47.829801000000,-4.363127000000,,Rochers bout rues des flots Penmarc'h 29,58074,observation-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6-4,https://biolit.fr/observations/observation-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6-4/,Laminaria ochroleuca,Laminaire jaune,,https://biolit.fr/wp-content/uploads/2023/07/DSC03578.JPG,,TRUE, +N1,61539,sortie-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6,https://biolit.fr/sorties/sortie-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6/,Phil,,4/23/2015 0:00,10.0:45,11.0000000,47.829801000000,-4.363127000000,,Rochers bout rues des flots Penmarc'h 29,58076,observation-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6-5,https://biolit.fr/observations/observation-0a17d9b4-8b03-4d43-896b-4bddcbcef1d6-5/,Armeria maritima,Armérie maritime,,https://biolit.fr/wp-content/uploads/2023/07/DSC03583.JPG,,TRUE, +N1,61540,sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6,https://biolit.fr/sorties/sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58078,observation-fe05f687-3568-40dc-80b9-29c92a71c8f6,https://biolit.fr/observations/observation-fe05f687-3568-40dc-80b9-29c92a71c8f6/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/DSC03524.JPG,,TRUE, +N1,61540,sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6,https://biolit.fr/sorties/sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58080,observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-2,https://biolit.fr/observations/observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03527.JPG,,FALSE, +N1,61540,sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6,https://biolit.fr/sorties/sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58082,observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-3,https://biolit.fr/observations/observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03530.JPG,,FALSE, +N1,61540,sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6,https://biolit.fr/sorties/sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58084,observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-4,https://biolit.fr/observations/observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-4/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC03531.JPG,,TRUE, +N1,61540,sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6,https://biolit.fr/sorties/sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58086,observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-5,https://biolit.fr/observations/observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03532.JPG,,FALSE, +N1,61540,sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6,https://biolit.fr/sorties/sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58088,observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-6,https://biolit.fr/observations/observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-6/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/DSC03536.JPG,,TRUE, +N1,61540,sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6,https://biolit.fr/sorties/sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58090,observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-7,https://biolit.fr/observations/observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03537.JPG,,FALSE, +N1,61540,sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6,https://biolit.fr/sorties/sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58092,observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-8,https://biolit.fr/observations/observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-8/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC03538.JPG,,TRUE, +N1,61540,sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6,https://biolit.fr/sorties/sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58094,observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-9,https://biolit.fr/observations/observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-9/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/DSC03540.JPG,,TRUE, +N1,61540,sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6,https://biolit.fr/sorties/sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58096,observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-10,https://biolit.fr/observations/observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03546.JPG,,FALSE, +N1,61540,sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6,https://biolit.fr/sorties/sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58098,observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-11,https://biolit.fr/observations/observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-11/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03548.JPG,,TRUE, +N1,61540,sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6,https://biolit.fr/sorties/sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58100,observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-12,https://biolit.fr/observations/observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-12/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC03551.JPG,,TRUE, +N1,61540,sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6,https://biolit.fr/sorties/sortie-fe05f687-3568-40dc-80b9-29c92a71c8f6/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58102,observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-13,https://biolit.fr/observations/observation-fe05f687-3568-40dc-80b9-29c92a71c8f6-13/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03552.JPG,,TRUE, +N1,61541,sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a,https://biolit.fr/sorties/sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58104,observation-2d4d6c23-636d-4355-b611-78f08c6cb10a,https://biolit.fr/observations/observation-2d4d6c23-636d-4355-b611-78f08c6cb10a/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/2023/07/DSC03524.JPG,,TRUE, +N1,61541,sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a,https://biolit.fr/sorties/sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58105,observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-2,https://biolit.fr/observations/observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-2/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC03527.JPG,,TRUE, +N1,61541,sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a,https://biolit.fr/sorties/sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58106,observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-3,https://biolit.fr/observations/observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03530.JPG,,FALSE, +N1,61541,sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a,https://biolit.fr/sorties/sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58107,observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-4,https://biolit.fr/observations/observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-4/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC03531.JPG,,TRUE, +N1,61541,sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a,https://biolit.fr/sorties/sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58108,observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-5,https://biolit.fr/observations/observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03532.JPG,,FALSE, +N1,61541,sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a,https://biolit.fr/sorties/sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58109,observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-6,https://biolit.fr/observations/observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-6/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/DSC03536.JPG,,TRUE, +N1,61541,sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a,https://biolit.fr/sorties/sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58110,observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-7,https://biolit.fr/observations/observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03537.JPG,,FALSE, +N1,61541,sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a,https://biolit.fr/sorties/sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58112,observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-9,https://biolit.fr/observations/observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-9/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/2023/07/DSC03540.JPG,,TRUE, +N1,61541,sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a,https://biolit.fr/sorties/sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58113,observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-10,https://biolit.fr/observations/observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC03546.JPG,,FALSE, +N1,61541,sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a,https://biolit.fr/sorties/sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58114,observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-11,https://biolit.fr/observations/observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-11/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03548.JPG,,TRUE, +N1,61541,sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a,https://biolit.fr/sorties/sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58115,observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-12,https://biolit.fr/observations/observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-12/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/DSC03551.JPG,,TRUE, +N1,61541,sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a,https://biolit.fr/sorties/sortie-2d4d6c23-636d-4355-b611-78f08c6cb10a/,Phil,,4/22/2015 0:00,10.0:45,11.0:15,47.869669000000,-3.911934000000,,Le Passage Lanriec - Concarneau,58116,observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-13,https://biolit.fr/observations/observation-2d4d6c23-636d-4355-b611-78f08c6cb10a-13/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC03552.JPG,,TRUE, +N1,61542,sortie-7ed447e7-2972-4e7f-9685-f53f1def1c20,https://biolit.fr/sorties/sortie-7ed447e7-2972-4e7f-9685-f53f1def1c20/,Emmanuelle,,4/23/2015 0:00,12.0000000,14.0000000,48.123790000000,-4.38060100000,,Plage du Ris,58117,observation-7ed447e7-2972-4e7f-9685-f53f1def1c20,https://biolit.fr/observations/observation-7ed447e7-2972-4e7f-9685-f53f1def1c20/,Corystes cassivelaunus,Crabe masqué,,https://biolit.fr/wp-content/uploads/2023/07/SAM_0316-scaled.jpg,,TRUE, +N1,61543,sortie-3ab83e4d-8bba-4671-b922-d796d666219e,https://biolit.fr/sorties/sortie-3ab83e4d-8bba-4671-b922-d796d666219e/,Emmanuelle,,4/23/2015 0:00,12.0000000,14.0000000,48.123790000000,-4.16087400000,,Plage du Ris,58119,observation-3ab83e4d-8bba-4671-b922-d796d666219e,https://biolit.fr/observations/observation-3ab83e4d-8bba-4671-b922-d796d666219e/,Loligo spp.,Ponte de Calmar,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/SAM_0306-scaled.jpg,,TRUE, +N1,61544,sortie-70e38629-3921-4398-9bcd-fb2565afd5c4,https://biolit.fr/sorties/sortie-70e38629-3921-4398-9bcd-fb2565afd5c4/,Emmanuelle,,4/23/2015 0:00,12.0000000,14.0000000,48.123790000000,-4.38060100000,,Plage du Ris,58121,observation-70e38629-3921-4398-9bcd-fb2565afd5c4,https://biolit.fr/observations/observation-70e38629-3921-4398-9bcd-fb2565afd5c4/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/2023/07/SAM_0314-scaled.jpg,,TRUE, +N1,61545,sortie-7c976cfa-1128-48b2-b13b-e2606029a4a5,https://biolit.fr/sorties/sortie-7c976cfa-1128-48b2-b13b-e2606029a4a5/,Emmanuelle,,4/20/2015 0:00,12.0:25,14.0:25,47.844356000000,-4.00706600000,,plage de Kerleven,58123,observation-7c976cfa-1128-48b2-b13b-e2606029a4a5,https://biolit.fr/observations/observation-7c976cfa-1128-48b2-b13b-e2606029a4a5/,Sepia officinalis,Seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/séche.jpg,,TRUE, +N1,61546,sortie-140e5627-c114-40a6-b659-f67e60a913a1,https://biolit.fr/sorties/sortie-140e5627-c114-40a6-b659-f67e60a913a1/,Anjelika,,04/07/2015,10.0:45,12.0000000,43.266387000000,5.371457000000,,"Marseille centre pédagogique de la mer, base nautique du Roucas Blanc ",58125,observation-140e5627-c114-40a6-b659-f67e60a913a1,https://biolit.fr/observations/observation-140e5627-c114-40a6-b659-f67e60a913a1/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC00265_1-scaled.jpg,,FALSE, +N1,61546,sortie-140e5627-c114-40a6-b659-f67e60a913a1,https://biolit.fr/sorties/sortie-140e5627-c114-40a6-b659-f67e60a913a1/,Anjelika,,04/07/2015,10.0:45,12.0000000,43.266387000000,5.371457000000,,"Marseille centre pédagogique de la mer, base nautique du Roucas Blanc ",58127,observation-140e5627-c114-40a6-b659-f67e60a913a1-2,https://biolit.fr/observations/observation-140e5627-c114-40a6-b659-f67e60a913a1-2/,Cratena peregrina,Hervia,,https://biolit.fr/wp-content/uploads/2023/07/DSC00269-scaled.jpg,,TRUE, +N1,61547,sortie-80096b82-2b4d-4d1f-8c63-44500642f9cc,https://biolit.fr/sorties/sortie-80096b82-2b4d-4d1f-8c63-44500642f9cc/,Morice,,4/17/2015 0:00,10.0000000,12.0000000,48.72867200000,-3.580106000000,,Kigner Bell,58129,observation-80096b82-2b4d-4d1f-8c63-44500642f9cc,https://biolit.fr/observations/observation-80096b82-2b4d-4d1f-8c63-44500642f9cc/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/2023/07/10498623_10153291614065127_4447805431130242840_o.jpg,,TRUE, +N1,61548,sortie-8da4d0d1-300c-42f4-bfc7-e4944f3c082a,https://biolit.fr/sorties/sortie-8da4d0d1-300c-42f4-bfc7-e4944f3c082a/,Emmanuelle,,4/16/2015 0:00,20.0000000,22.0000000,48.102320000000,-4.351992000000,,Douarnenez,58131,observation-8da4d0d1-300c-42f4-bfc7-e4944f3c082a,https://biolit.fr/observations/observation-8da4d0d1-300c-42f4-bfc7-e4944f3c082a/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/2023/07/20150415_191252-scaled.jpg,,TRUE, +N1,61549,sortie-cfc3b396-4ced-49ed-a85a-ec5c2a7ae034,https://biolit.fr/sorties/sortie-cfc3b396-4ced-49ed-a85a-ec5c2a7ae034/,tridimeg,,3/22/2015 0:00,14.0000000,16.0:15,48.644091000000,-2.073697000000,,Roche Pelée,58133,observation-cfc3b396-4ced-49ed-a85a-ec5c2a7ae034,https://biolit.fr/observations/observation-cfc3b396-4ced-49ed-a85a-ec5c2a7ae034/,Galathea strigosa,Galathée bicolore,,https://biolit.fr/wp-content/uploads/2023/07/galathea strigosa basse def pour envoi.jpg,,TRUE, +N1,61550,sortie-d73b2e02-e10d-4f08-8194-f43205a11cac,https://biolit.fr/sorties/sortie-d73b2e02-e10d-4f08-8194-f43205a11cac/,quebec,,3/21/2015 0:00,10.0000000,12.0000000,47.568157000000,-3.099492000000,,plage de St Colomban,58135,observation-d73b2e02-e10d-4f08-8194-f43205a11cac,https://biolit.fr/observations/observation-d73b2e02-e10d-4f08-8194-f43205a11cac/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/2023/07/Herbier 4-scaled.jpg,,TRUE, +N1,61550,sortie-d73b2e02-e10d-4f08-8194-f43205a11cac,https://biolit.fr/sorties/sortie-d73b2e02-e10d-4f08-8194-f43205a11cac/,quebec,,3/21/2015 0:00,10.0000000,12.0000000,47.568157000000,-3.099492000000,,plage de St Colomban,58137,observation-d73b2e02-e10d-4f08-8194-f43205a11cac-2,https://biolit.fr/observations/observation-d73b2e02-e10d-4f08-8194-f43205a11cac-2/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Herbier 3-scaled.jpg,,TRUE, +N1,61551,sortie-08f0670c-0248-4939-b64d-d7fa58803a49,https://biolit.fr/sorties/sortie-08f0670c-0248-4939-b64d-d7fa58803a49/,Ville de Marseille,,03/05/2015,14.0000000,15.0000000,43.16,5.22,,"Marseille, base nautique du Roucas Blanc",58139,observation-08f0670c-0248-4939-b64d-d7fa58803a49,https://biolit.fr/observations/observation-08f0670c-0248-4939-b64d-d7fa58803a49/,Limaria hians,Lime bâillante,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0166-scaled.jpg,,TRUE, +N1,61551,sortie-08f0670c-0248-4939-b64d-d7fa58803a49,https://biolit.fr/sorties/sortie-08f0670c-0248-4939-b64d-d7fa58803a49/,Ville de Marseille,,03/05/2015,14.0000000,15.0000000,43.16,5.22,,"Marseille, base nautique du Roucas Blanc",58141,observation-08f0670c-0248-4939-b64d-d7fa58803a49-2,https://biolit.fr/observations/observation-08f0670c-0248-4939-b64d-d7fa58803a49-2/,Limaria hians,Lime bâillante,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0167-scaled.jpg,,TRUE, +N1,61551,sortie-08f0670c-0248-4939-b64d-d7fa58803a49,https://biolit.fr/sorties/sortie-08f0670c-0248-4939-b64d-d7fa58803a49/,Ville de Marseille,,03/05/2015,14.0000000,15.0000000,43.16,5.22,,"Marseille, base nautique du Roucas Blanc",58143,observation-08f0670c-0248-4939-b64d-d7fa58803a49-3,https://biolit.fr/observations/observation-08f0670c-0248-4939-b64d-d7fa58803a49-3/,Limaria hians,Lime bâillante,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0169-scaled.jpg,,TRUE, +N1,61551,sortie-08f0670c-0248-4939-b64d-d7fa58803a49,https://biolit.fr/sorties/sortie-08f0670c-0248-4939-b64d-d7fa58803a49/,Ville de Marseille,,03/05/2015,14.0000000,15.0000000,43.16,5.22,,"Marseille, base nautique du Roucas Blanc",58145,observation-08f0670c-0248-4939-b64d-d7fa58803a49-4,https://biolit.fr/observations/observation-08f0670c-0248-4939-b64d-d7fa58803a49-4/,Xantho poressa,Xanthe de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0161-scaled.jpg,,TRUE, +N1,61551,sortie-08f0670c-0248-4939-b64d-d7fa58803a49,https://biolit.fr/sorties/sortie-08f0670c-0248-4939-b64d-d7fa58803a49/,Ville de Marseille,,03/05/2015,14.0000000,15.0000000,43.16,5.22,,"Marseille, base nautique du Roucas Blanc",58147,observation-08f0670c-0248-4939-b64d-d7fa58803a49-5,https://biolit.fr/observations/observation-08f0670c-0248-4939-b64d-d7fa58803a49-5/,Xantho poressa,Xanthe de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0163_0-scaled.jpg,,TRUE, +N1,61551,sortie-08f0670c-0248-4939-b64d-d7fa58803a49,https://biolit.fr/sorties/sortie-08f0670c-0248-4939-b64d-d7fa58803a49/,Ville de Marseille,,03/05/2015,14.0000000,15.0000000,43.16,5.22,,"Marseille, base nautique du Roucas Blanc",58149,observation-08f0670c-0248-4939-b64d-d7fa58803a49-6,https://biolit.fr/observations/observation-08f0670c-0248-4939-b64d-d7fa58803a49-6/,Xantho poressa,Xanthe de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0164-scaled.jpg,,TRUE, +N1,61551,sortie-08f0670c-0248-4939-b64d-d7fa58803a49,https://biolit.fr/sorties/sortie-08f0670c-0248-4939-b64d-d7fa58803a49/,Ville de Marseille,,03/05/2015,14.0000000,15.0000000,43.16,5.22,,"Marseille, base nautique du Roucas Blanc",58151,observation-08f0670c-0248-4939-b64d-d7fa58803a49-7,https://biolit.fr/observations/observation-08f0670c-0248-4939-b64d-d7fa58803a49-7/,Asterina pancerii,Astérie naine des posidonies,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0177_0-scaled.jpg,,TRUE, +N1,61551,sortie-08f0670c-0248-4939-b64d-d7fa58803a49,https://biolit.fr/sorties/sortie-08f0670c-0248-4939-b64d-d7fa58803a49/,Ville de Marseille,,03/05/2015,14.0000000,15.0000000,43.16,5.22,,"Marseille, base nautique du Roucas Blanc",58153,observation-08f0670c-0248-4939-b64d-d7fa58803a49-8,https://biolit.fr/observations/observation-08f0670c-0248-4939-b64d-d7fa58803a49-8/,Asterina pancerii,Astérie naine des posidonies,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0179-scaled.jpg,,TRUE, +N1,61551,sortie-08f0670c-0248-4939-b64d-d7fa58803a49,https://biolit.fr/sorties/sortie-08f0670c-0248-4939-b64d-d7fa58803a49/,Ville de Marseille,,03/05/2015,14.0000000,15.0000000,43.16,5.22,,"Marseille, base nautique du Roucas Blanc",58155,observation-08f0670c-0248-4939-b64d-d7fa58803a49-9,https://biolit.fr/observations/observation-08f0670c-0248-4939-b64d-d7fa58803a49-9/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0180-scaled.jpg,,TRUE, +N1,61551,sortie-08f0670c-0248-4939-b64d-d7fa58803a49,https://biolit.fr/sorties/sortie-08f0670c-0248-4939-b64d-d7fa58803a49/,Ville de Marseille,,03/05/2015,14.0000000,15.0000000,43.16,5.22,,"Marseille, base nautique du Roucas Blanc",58157,observation-08f0670c-0248-4939-b64d-d7fa58803a49-10,https://biolit.fr/observations/observation-08f0670c-0248-4939-b64d-d7fa58803a49-10/,Actitis hypoleucos,Chevalier guignette,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0203-scaled.jpg,,TRUE, +N1,61551,sortie-08f0670c-0248-4939-b64d-d7fa58803a49,https://biolit.fr/sorties/sortie-08f0670c-0248-4939-b64d-d7fa58803a49/,Ville de Marseille,,03/05/2015,14.0000000,15.0000000,43.16,5.22,,"Marseille, base nautique du Roucas Blanc",58159,observation-08f0670c-0248-4939-b64d-d7fa58803a49-11,https://biolit.fr/observations/observation-08f0670c-0248-4939-b64d-d7fa58803a49-11/,Actitis hypoleucos,Chevalier guignette,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0206-scaled.jpg,,TRUE, +N1,61552,sortie-d3c22291-2990-4594-a800-217e5e1c7a17,https://biolit.fr/sorties/sortie-d3c22291-2990-4594-a800-217e5e1c7a17/,Romuald VIALE - EXPENATURE,,02/12/2015,15.0000000,15.0000000,43.168846000000,5.610628000000,,Darse Sud Chantier naval La Ciotat,58161,observation-d3c22291-2990-4594-a800-217e5e1c7a17,https://biolit.fr/observations/observation-d3c22291-2990-4594-a800-217e5e1c7a17/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/image.jpeg,,TRUE, +N1,61553,sortie-ed2890b6-e814-4c03-ad92-099cb685fd3c,https://biolit.fr/sorties/sortie-ed2890b6-e814-4c03-ad92-099cb685fd3c/,Ville de Marseille,,1/15/2015 0:00,11.0000000,14.0:45,43.267470000000,5.291992000000,,Plage de la calanque de la Crine,58162,observation-ed2890b6-e814-4c03-ad92-099cb685fd3c,https://biolit.fr/observations/observation-ed2890b6-e814-4c03-ad92-099cb685fd3c/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1159709_0-scaled.jpg,,FALSE, +N1,61553,sortie-ed2890b6-e814-4c03-ad92-099cb685fd3c,https://biolit.fr/sorties/sortie-ed2890b6-e814-4c03-ad92-099cb685fd3c/,Ville de Marseille,,1/15/2015 0:00,11.0000000,14.0:45,43.267470000000,5.291992000000,,Plage de la calanque de la Crine,58164,observation-ed2890b6-e814-4c03-ad92-099cb685fd3c-2,https://biolit.fr/observations/observation-ed2890b6-e814-4c03-ad92-099cb685fd3c-2/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/P1159714-scaled.jpg,,TRUE, +N1,61553,sortie-ed2890b6-e814-4c03-ad92-099cb685fd3c,https://biolit.fr/sorties/sortie-ed2890b6-e814-4c03-ad92-099cb685fd3c/,Ville de Marseille,,1/15/2015 0:00,11.0000000,14.0:45,43.267470000000,5.291992000000,,Plage de la calanque de la Crine,58166,observation-ed2890b6-e814-4c03-ad92-099cb685fd3c-3,https://biolit.fr/observations/observation-ed2890b6-e814-4c03-ad92-099cb685fd3c-3/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/P1159716-scaled.jpg,,TRUE, +N1,61554,sortie-548d38a2-7257-4900-b55b-34b471f4a396,https://biolit.fr/sorties/sortie-548d38a2-7257-4900-b55b-34b471f4a396/,Ville de Marseille,,01/12/2015,13.0000000,14.0000000,43.26839200000,5.292496000000,,"Marseille, archipel du Frioul, île de Pomègues",58168,observation-548d38a2-7257-4900-b55b-34b471f4a396,https://biolit.fr/observations/observation-548d38a2-7257-4900-b55b-34b471f4a396/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050951-scaled.jpg,,FALSE, +N1,61554,sortie-548d38a2-7257-4900-b55b-34b471f4a396,https://biolit.fr/sorties/sortie-548d38a2-7257-4900-b55b-34b471f4a396/,Ville de Marseille,,01/12/2015,13.0000000,14.0000000,43.26839200000,5.292496000000,,"Marseille, archipel du Frioul, île de Pomègues",58170,observation-548d38a2-7257-4900-b55b-34b471f4a396-2,https://biolit.fr/observations/observation-548d38a2-7257-4900-b55b-34b471f4a396-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050958-scaled.jpg,,FALSE, +N1,61554,sortie-548d38a2-7257-4900-b55b-34b471f4a396,https://biolit.fr/sorties/sortie-548d38a2-7257-4900-b55b-34b471f4a396/,Ville de Marseille,,01/12/2015,13.0000000,14.0000000,43.26839200000,5.292496000000,,"Marseille, archipel du Frioul, île de Pomègues",58172,observation-548d38a2-7257-4900-b55b-34b471f4a396-3,https://biolit.fr/observations/observation-548d38a2-7257-4900-b55b-34b471f4a396-3/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1050950-scaled.jpg,,TRUE, +N1,61554,sortie-548d38a2-7257-4900-b55b-34b471f4a396,https://biolit.fr/sorties/sortie-548d38a2-7257-4900-b55b-34b471f4a396/,Ville de Marseille,,01/12/2015,13.0000000,14.0000000,43.26839200000,5.292496000000,,"Marseille, archipel du Frioul, île de Pomègues",58174,observation-548d38a2-7257-4900-b55b-34b471f4a396-4,https://biolit.fr/observations/observation-548d38a2-7257-4900-b55b-34b471f4a396-4/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/P1050971-scaled.jpg,,TRUE, +N1,61554,sortie-548d38a2-7257-4900-b55b-34b471f4a396,https://biolit.fr/sorties/sortie-548d38a2-7257-4900-b55b-34b471f4a396/,Ville de Marseille,,01/12/2015,13.0000000,14.0000000,43.26839200000,5.292496000000,,"Marseille, archipel du Frioul, île de Pomègues",58176,observation-548d38a2-7257-4900-b55b-34b471f4a396-5,https://biolit.fr/observations/observation-548d38a2-7257-4900-b55b-34b471f4a396-5/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1050972-scaled.jpg,,TRUE, +N1,61554,sortie-548d38a2-7257-4900-b55b-34b471f4a396,https://biolit.fr/sorties/sortie-548d38a2-7257-4900-b55b-34b471f4a396/,Ville de Marseille,,01/12/2015,13.0000000,14.0000000,43.26839200000,5.292496000000,,"Marseille, archipel du Frioul, île de Pomègues",58178,observation-548d38a2-7257-4900-b55b-34b471f4a396-6,https://biolit.fr/observations/observation-548d38a2-7257-4900-b55b-34b471f4a396-6/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/P1050986-scaled.jpg,,TRUE, +N1,61554,sortie-548d38a2-7257-4900-b55b-34b471f4a396,https://biolit.fr/sorties/sortie-548d38a2-7257-4900-b55b-34b471f4a396/,Ville de Marseille,,01/12/2015,13.0000000,14.0000000,43.26839200000,5.292496000000,,"Marseille, archipel du Frioul, île de Pomègues",58180,observation-548d38a2-7257-4900-b55b-34b471f4a396-7,https://biolit.fr/observations/observation-548d38a2-7257-4900-b55b-34b471f4a396-7/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/P1050961-scaled.jpg,,TRUE, +N1,61554,sortie-548d38a2-7257-4900-b55b-34b471f4a396,https://biolit.fr/sorties/sortie-548d38a2-7257-4900-b55b-34b471f4a396/,Ville de Marseille,,01/12/2015,13.0000000,14.0000000,43.26839200000,5.292496000000,,"Marseille, archipel du Frioul, île de Pomègues",58182,observation-548d38a2-7257-4900-b55b-34b471f4a396-8,https://biolit.fr/observations/observation-548d38a2-7257-4900-b55b-34b471f4a396-8/,Exaiptasia diaphana,Aiptasie diaphane,,https://biolit.fr/wp-content/uploads/2023/07/P1050974-scaled.jpg,,TRUE, +N1,61554,sortie-548d38a2-7257-4900-b55b-34b471f4a396,https://biolit.fr/sorties/sortie-548d38a2-7257-4900-b55b-34b471f4a396/,Ville de Marseille,,01/12/2015,13.0000000,14.0000000,43.26839200000,5.292496000000,,"Marseille, archipel du Frioul, île de Pomègues",58184,observation-548d38a2-7257-4900-b55b-34b471f4a396-9,https://biolit.fr/observations/observation-548d38a2-7257-4900-b55b-34b471f4a396-9/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1050955-scaled.jpg,,TRUE, +N1,61554,sortie-548d38a2-7257-4900-b55b-34b471f4a396,https://biolit.fr/sorties/sortie-548d38a2-7257-4900-b55b-34b471f4a396/,Ville de Marseille,,01/12/2015,13.0000000,14.0000000,43.26839200000,5.292496000000,,"Marseille, archipel du Frioul, île de Pomègues",58186,observation-548d38a2-7257-4900-b55b-34b471f4a396-10,https://biolit.fr/observations/observation-548d38a2-7257-4900-b55b-34b471f4a396-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050984-scaled.jpg,,FALSE, +N1,61554,sortie-548d38a2-7257-4900-b55b-34b471f4a396,https://biolit.fr/sorties/sortie-548d38a2-7257-4900-b55b-34b471f4a396/,Ville de Marseille,,01/12/2015,13.0000000,14.0000000,43.26839200000,5.292496000000,,"Marseille, archipel du Frioul, île de Pomègues",58188,observation-548d38a2-7257-4900-b55b-34b471f4a396-11,https://biolit.fr/observations/observation-548d38a2-7257-4900-b55b-34b471f4a396-11/,Exaiptasia diaphana,Aiptasie diaphane,,https://biolit.fr/wp-content/uploads/2023/07/P1050975-scaled.jpg,,TRUE, +N1,61555,sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023,https://biolit.fr/sorties/sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023/,Ville de Marseille,,01/08/2015,13.0000000,14.0000000,43.16,5.18000000000,,"Marseille, archipel du Frioul, île de Pomègues",58190,observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023,https://biolit.fr/observations/observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023/,Maja crispata,Petite araignée de mer,,https://biolit.fr/wp-content/uploads/2023/07/P1050933_0-scaled.jpg,,TRUE, +N1,61555,sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023,https://biolit.fr/sorties/sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023/,Ville de Marseille,,01/08/2015,13.0000000,14.0000000,43.16,5.18000000000,,"Marseille, archipel du Frioul, île de Pomègues",58192,observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-2,https://biolit.fr/observations/observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-2/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/2023/07/P1050936_1-scaled.jpg,,TRUE, +N1,61555,sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023,https://biolit.fr/sorties/sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023/,Ville de Marseille,,01/08/2015,13.0000000,14.0000000,43.16,5.18000000000,,"Marseille, archipel du Frioul, île de Pomègues",58194,observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-3,https://biolit.fr/observations/observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-3/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/2023/07/P1050937_0-scaled.jpg,,TRUE, +N1,61555,sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023,https://biolit.fr/sorties/sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023/,Ville de Marseille,,01/08/2015,13.0000000,14.0000000,43.16,5.18000000000,,"Marseille, archipel du Frioul, île de Pomègues",58196,observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-4,https://biolit.fr/observations/observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-4/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/2023/07/P1050938_0-scaled.jpg,,TRUE, +N1,61555,sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023,https://biolit.fr/sorties/sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023/,Ville de Marseille,,01/08/2015,13.0000000,14.0000000,43.16,5.18000000000,,"Marseille, archipel du Frioul, île de Pomègues",58198,observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-5,https://biolit.fr/observations/observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-5/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/2023/07/P1050939_0-scaled.jpg,,TRUE, +N1,61555,sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023,https://biolit.fr/sorties/sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023/,Ville de Marseille,,01/08/2015,13.0000000,14.0000000,43.16,5.18000000000,,"Marseille, archipel du Frioul, île de Pomègues",58200,observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-6,https://biolit.fr/observations/observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050944-scaled.jpg,,FALSE, +N1,61555,sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023,https://biolit.fr/sorties/sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023/,Ville de Marseille,,01/08/2015,13.0000000,14.0000000,43.16,5.18000000000,,"Marseille, archipel du Frioul, île de Pomègues",58202,observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-7,https://biolit.fr/observations/observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-7/,Cardita calyculata,Cardite petit calice,,https://biolit.fr/wp-content/uploads/2023/07/P1050945_0-scaled.jpg,,TRUE, +N1,61555,sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023,https://biolit.fr/sorties/sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023/,Ville de Marseille,,01/08/2015,13.0000000,14.0000000,43.16,5.18000000000,,"Marseille, archipel du Frioul, île de Pomègues",58204,observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-8,https://biolit.fr/observations/observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-8/,Cardita calyculata,Cardite petit calice,,https://biolit.fr/wp-content/uploads/2023/07/P1050946_0-scaled.jpg,,TRUE, +N1,61555,sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023,https://biolit.fr/sorties/sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023/,Ville de Marseille,,01/08/2015,13.0000000,14.0000000,43.16,5.18000000000,,"Marseille, archipel du Frioul, île de Pomègues",58206,observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-9,https://biolit.fr/observations/observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-9/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/2023/07/P1050918-scaled.jpg,,TRUE, +N1,61555,sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023,https://biolit.fr/sorties/sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023/,Ville de Marseille,,01/08/2015,13.0000000,14.0000000,43.16,5.18000000000,,"Marseille, archipel du Frioul, île de Pomègues",58208,observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-10,https://biolit.fr/observations/observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-10/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/2023/07/P1050922_0-scaled.jpg,,TRUE, +N1,61555,sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023,https://biolit.fr/sorties/sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023/,Ville de Marseille,,01/08/2015,13.0000000,14.0000000,43.16,5.18000000000,,"Marseille, archipel du Frioul, île de Pomègues",58210,observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-11,https://biolit.fr/observations/observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050925-scaled.jpg,,FALSE, +N1,61555,sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023,https://biolit.fr/sorties/sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023/,Ville de Marseille,,01/08/2015,13.0000000,14.0000000,43.16,5.18000000000,,"Marseille, archipel du Frioul, île de Pomègues",58212,observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-12,https://biolit.fr/observations/observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050941_0-scaled.jpg,,FALSE, +N1,61555,sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023,https://biolit.fr/sorties/sortie-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023/,Ville de Marseille,,01/08/2015,13.0000000,14.0000000,43.16,5.18000000000,,"Marseille, archipel du Frioul, île de Pomègues",58214,observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-13,https://biolit.fr/observations/observation-cdf45b6f-96ad-4a5f-8c1e-dbffd1e34023-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050932_0-scaled.jpg,,FALSE, +N1,61556,sortie-2e379a7c-a123-4752-b6fd-70df963edf6d,https://biolit.fr/sorties/sortie-2e379a7c-a123-4752-b6fd-70df963edf6d/,Ville de Marseille,,12/03/2014,12.0000000,13.0000000,43.2,5.37,,Calanque de Marseilleveyre,58216,observation-2e379a7c-a123-4752-b6fd-70df963edf6d,https://biolit.fr/observations/observation-2e379a7c-a123-4752-b6fd-70df963edf6d/,Echinaster (Echinaster) sepositus,Etoile de mer rouge,,https://biolit.fr/wp-content/uploads/2023/07/P1050813-scaled.jpg,,TRUE, +N1,61556,sortie-2e379a7c-a123-4752-b6fd-70df963edf6d,https://biolit.fr/sorties/sortie-2e379a7c-a123-4752-b6fd-70df963edf6d/,Ville de Marseille,,12/03/2014,12.0000000,13.0000000,43.2,5.37,,Calanque de Marseilleveyre,58218,observation-2e379a7c-a123-4752-b6fd-70df963edf6d-2,https://biolit.fr/observations/observation-2e379a7c-a123-4752-b6fd-70df963edf6d-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050815-scaled.jpg,,FALSE, +N1,61556,sortie-2e379a7c-a123-4752-b6fd-70df963edf6d,https://biolit.fr/sorties/sortie-2e379a7c-a123-4752-b6fd-70df963edf6d/,Ville de Marseille,,12/03/2014,12.0000000,13.0000000,43.2,5.37,,Calanque de Marseilleveyre,58220,observation-2e379a7c-a123-4752-b6fd-70df963edf6d-3,https://biolit.fr/observations/observation-2e379a7c-a123-4752-b6fd-70df963edf6d-3/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/P1050819-scaled.jpg,,TRUE, +N1,61556,sortie-2e379a7c-a123-4752-b6fd-70df963edf6d,https://biolit.fr/sorties/sortie-2e379a7c-a123-4752-b6fd-70df963edf6d/,Ville de Marseille,,12/03/2014,12.0000000,13.0000000,43.2,5.37,,Calanque de Marseilleveyre,58222,observation-2e379a7c-a123-4752-b6fd-70df963edf6d-4,https://biolit.fr/observations/observation-2e379a7c-a123-4752-b6fd-70df963edf6d-4/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/P1050821-scaled.jpg,,TRUE, +N1,61556,sortie-2e379a7c-a123-4752-b6fd-70df963edf6d,https://biolit.fr/sorties/sortie-2e379a7c-a123-4752-b6fd-70df963edf6d/,Ville de Marseille,,12/03/2014,12.0000000,13.0000000,43.2,5.37,,Calanque de Marseilleveyre,58224,observation-2e379a7c-a123-4752-b6fd-70df963edf6d-5,https://biolit.fr/observations/observation-2e379a7c-a123-4752-b6fd-70df963edf6d-5/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/P1050818-scaled.jpg,,TRUE, +N1,61556,sortie-2e379a7c-a123-4752-b6fd-70df963edf6d,https://biolit.fr/sorties/sortie-2e379a7c-a123-4752-b6fd-70df963edf6d/,Ville de Marseille,,12/03/2014,12.0000000,13.0000000,43.2,5.37,,Calanque de Marseilleveyre,58226,observation-2e379a7c-a123-4752-b6fd-70df963edf6d-6,https://biolit.fr/observations/observation-2e379a7c-a123-4752-b6fd-70df963edf6d-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050823-scaled.jpg,,FALSE, +N1,61556,sortie-2e379a7c-a123-4752-b6fd-70df963edf6d,https://biolit.fr/sorties/sortie-2e379a7c-a123-4752-b6fd-70df963edf6d/,Ville de Marseille,,12/03/2014,12.0000000,13.0000000,43.2,5.37,,Calanque de Marseilleveyre,58228,observation-2e379a7c-a123-4752-b6fd-70df963edf6d-7,https://biolit.fr/observations/observation-2e379a7c-a123-4752-b6fd-70df963edf6d-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050820-scaled.jpg,,FALSE, +N1,61556,sortie-2e379a7c-a123-4752-b6fd-70df963edf6d,https://biolit.fr/sorties/sortie-2e379a7c-a123-4752-b6fd-70df963edf6d/,Ville de Marseille,,12/03/2014,12.0000000,13.0000000,43.2,5.37,,Calanque de Marseilleveyre,58230,observation-2e379a7c-a123-4752-b6fd-70df963edf6d-8,https://biolit.fr/observations/observation-2e379a7c-a123-4752-b6fd-70df963edf6d-8/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/P1050826-scaled.jpg,,TRUE, +N1,61556,sortie-2e379a7c-a123-4752-b6fd-70df963edf6d,https://biolit.fr/sorties/sortie-2e379a7c-a123-4752-b6fd-70df963edf6d/,Ville de Marseille,,12/03/2014,12.0000000,13.0000000,43.2,5.37,,Calanque de Marseilleveyre,58232,observation-2e379a7c-a123-4752-b6fd-70df963edf6d-9,https://biolit.fr/observations/observation-2e379a7c-a123-4752-b6fd-70df963edf6d-9/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/P1050834-scaled.jpg,,TRUE, +N1,61556,sortie-2e379a7c-a123-4752-b6fd-70df963edf6d,https://biolit.fr/sorties/sortie-2e379a7c-a123-4752-b6fd-70df963edf6d/,Ville de Marseille,,12/03/2014,12.0000000,13.0000000,43.2,5.37,,Calanque de Marseilleveyre,58234,observation-2e379a7c-a123-4752-b6fd-70df963edf6d-10,https://biolit.fr/observations/observation-2e379a7c-a123-4752-b6fd-70df963edf6d-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/P1050839-scaled.jpg,,FALSE, +N1,61557,sortie-95e45e48-2e02-4d29-8407-ba3e528c8004,https://biolit.fr/sorties/sortie-95e45e48-2e02-4d29-8407-ba3e528c8004/,tridimeg,,12/08/2014,13.0000000,14.0000000,48.712023000000,-3.828594000000,,Estran de Diben,58236,observation-95e45e48-2e02-4d29-8407-ba3e528c8004,https://biolit.fr/observations/observation-95e45e48-2e02-4d29-8407-ba3e528c8004/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/DSC_4015-scaled.jpg,,TRUE, +N1,61557,sortie-95e45e48-2e02-4d29-8407-ba3e528c8004,https://biolit.fr/sorties/sortie-95e45e48-2e02-4d29-8407-ba3e528c8004/,tridimeg,,12/08/2014,13.0000000,14.0000000,48.712023000000,-3.828594000000,,Estran de Diben,58238,observation-95e45e48-2e02-4d29-8407-ba3e528c8004-2,https://biolit.fr/observations/observation-95e45e48-2e02-4d29-8407-ba3e528c8004-2/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/2023/07/DSC_4003-scaled.jpg,,TRUE, +N1,61557,sortie-95e45e48-2e02-4d29-8407-ba3e528c8004,https://biolit.fr/sorties/sortie-95e45e48-2e02-4d29-8407-ba3e528c8004/,tridimeg,,12/08/2014,13.0000000,14.0000000,48.712023000000,-3.828594000000,,Estran de Diben,58240,observation-95e45e48-2e02-4d29-8407-ba3e528c8004-3,https://biolit.fr/observations/observation-95e45e48-2e02-4d29-8407-ba3e528c8004-3/,Aplidium pallidum,Flocon pédonculé blanc,,https://biolit.fr/wp-content/uploads/2023/07/DSC_4007-scaled.jpg,,TRUE, +N1,61558,sortie-5e171a90-e372-4a77-b7ef-ec7dd9970e36,https://biolit.fr/sorties/sortie-5e171a90-e372-4a77-b7ef-ec7dd9970e36/,Ville de Marseille,,11/26/2014 0:00,15.0000000,16.0000000,43.16,5.22,,base nautique du roucas blanc,58242,observation-5e171a90-e372-4a77-b7ef-ec7dd9970e36,https://biolit.fr/observations/observation-5e171a90-e372-4a77-b7ef-ec7dd9970e36/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2023/07/PB269626-scaled.jpg,,TRUE, +N1,61558,sortie-5e171a90-e372-4a77-b7ef-ec7dd9970e36,https://biolit.fr/sorties/sortie-5e171a90-e372-4a77-b7ef-ec7dd9970e36/,Ville de Marseille,,11/26/2014 0:00,15.0000000,16.0000000,43.16,5.22,,base nautique du roucas blanc,58244,observation-5e171a90-e372-4a77-b7ef-ec7dd9970e36-2,https://biolit.fr/observations/observation-5e171a90-e372-4a77-b7ef-ec7dd9970e36-2/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/PB269622-scaled.jpg,,TRUE, +N1,61558,sortie-5e171a90-e372-4a77-b7ef-ec7dd9970e36,https://biolit.fr/sorties/sortie-5e171a90-e372-4a77-b7ef-ec7dd9970e36/,Ville de Marseille,,11/26/2014 0:00,15.0000000,16.0000000,43.16,5.22,,base nautique du roucas blanc,58246,observation-5e171a90-e372-4a77-b7ef-ec7dd9970e36-3,https://biolit.fr/observations/observation-5e171a90-e372-4a77-b7ef-ec7dd9970e36-3/,Styela clava,Ascidie japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/PB269614-scaled.jpg,,TRUE, +N1,61558,sortie-5e171a90-e372-4a77-b7ef-ec7dd9970e36,https://biolit.fr/sorties/sortie-5e171a90-e372-4a77-b7ef-ec7dd9970e36/,Ville de Marseille,,11/26/2014 0:00,15.0000000,16.0000000,43.16,5.22,,base nautique du roucas blanc,58248,observation-5e171a90-e372-4a77-b7ef-ec7dd9970e36-4,https://biolit.fr/observations/observation-5e171a90-e372-4a77-b7ef-ec7dd9970e36-4/,Sabella spallanzanii,Spirographe,,https://biolit.fr/wp-content/uploads/2023/07/PB269611-scaled.jpg,,TRUE, +N1,61558,sortie-5e171a90-e372-4a77-b7ef-ec7dd9970e36,https://biolit.fr/sorties/sortie-5e171a90-e372-4a77-b7ef-ec7dd9970e36/,Ville de Marseille,,11/26/2014 0:00,15.0000000,16.0000000,43.16,5.22,,base nautique du roucas blanc,58250,observation-5e171a90-e372-4a77-b7ef-ec7dd9970e36-5,https://biolit.fr/observations/observation-5e171a90-e372-4a77-b7ef-ec7dd9970e36-5/,Sabella spallanzanii,Spirographe,,https://biolit.fr/wp-content/uploads/2023/07/PB269609-scaled.jpg,,TRUE, +N1,61558,sortie-5e171a90-e372-4a77-b7ef-ec7dd9970e36,https://biolit.fr/sorties/sortie-5e171a90-e372-4a77-b7ef-ec7dd9970e36/,Ville de Marseille,,11/26/2014 0:00,15.0000000,16.0000000,43.16,5.22,,base nautique du roucas blanc,58252,observation-5e171a90-e372-4a77-b7ef-ec7dd9970e36-6,https://biolit.fr/observations/observation-5e171a90-e372-4a77-b7ef-ec7dd9970e36-6/,Sabella spallanzanii,Spirographe,,https://biolit.fr/wp-content/uploads/2023/07/PB269610-scaled.jpg,,TRUE, +N1,61558,sortie-5e171a90-e372-4a77-b7ef-ec7dd9970e36,https://biolit.fr/sorties/sortie-5e171a90-e372-4a77-b7ef-ec7dd9970e36/,Ville de Marseille,,11/26/2014 0:00,15.0000000,16.0000000,43.16,5.22,,base nautique du roucas blanc,58254,observation-5e171a90-e372-4a77-b7ef-ec7dd9970e36-7,https://biolit.fr/observations/observation-5e171a90-e372-4a77-b7ef-ec7dd9970e36-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/PB269576-scaled.jpg,,FALSE, +N1,61558,sortie-5e171a90-e372-4a77-b7ef-ec7dd9970e36,https://biolit.fr/sorties/sortie-5e171a90-e372-4a77-b7ef-ec7dd9970e36/,Ville de Marseille,,11/26/2014 0:00,15.0000000,16.0000000,43.16,5.22,,base nautique du roucas blanc,58256,observation-5e171a90-e372-4a77-b7ef-ec7dd9970e36-8,https://biolit.fr/observations/observation-5e171a90-e372-4a77-b7ef-ec7dd9970e36-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/PB269577-scaled.jpg,,FALSE, +N1,61561,sortie-1e8858cf-d4af-4cb4-9675-9cd5fd80fcdc,https://biolit.fr/sorties/sortie-1e8858cf-d4af-4cb4-9675-9cd5fd80fcdc/,Céline,,11/16/2014 0:00,15.0:15,16.0:15,43.331311000000,5.071364000000,,Plage de Ste Croix,58276,observation-1e8858cf-d4af-4cb4-9675-9cd5fd80fcdc,https://biolit.fr/observations/observation-1e8858cf-d4af-4cb4-9675-9cd5fd80fcdc/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/DSCN8420-scaled.jpg,,TRUE, +N1,61561,sortie-1e8858cf-d4af-4cb4-9675-9cd5fd80fcdc,https://biolit.fr/sorties/sortie-1e8858cf-d4af-4cb4-9675-9cd5fd80fcdc/,Céline,,11/16/2014 0:00,15.0:15,16.0:15,43.331311000000,5.071364000000,,Plage de Ste Croix,58278,observation-1e8858cf-d4af-4cb4-9675-9cd5fd80fcdc-2,https://biolit.fr/observations/observation-1e8858cf-d4af-4cb4-9675-9cd5fd80fcdc-2/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/DSCN8455-scaled.jpg,,TRUE,Identifiable +N1,61561,sortie-1e8858cf-d4af-4cb4-9675-9cd5fd80fcdc,https://biolit.fr/sorties/sortie-1e8858cf-d4af-4cb4-9675-9cd5fd80fcdc/,Céline,,11/16/2014 0:00,15.0:15,16.0:15,43.331311000000,5.071364000000,,Plage de Ste Croix,58280,observation-1e8858cf-d4af-4cb4-9675-9cd5fd80fcdc-3,https://biolit.fr/observations/observation-1e8858cf-d4af-4cb4-9675-9cd5fd80fcdc-3/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/DSCN8457-scaled.jpg,,TRUE, +N1,61561,sortie-1e8858cf-d4af-4cb4-9675-9cd5fd80fcdc,https://biolit.fr/sorties/sortie-1e8858cf-d4af-4cb4-9675-9cd5fd80fcdc/,Céline,,11/16/2014 0:00,15.0:15,16.0:15,43.331311000000,5.071364000000,,Plage de Ste Croix,58282,observation-1e8858cf-d4af-4cb4-9675-9cd5fd80fcdc-4,https://biolit.fr/observations/observation-1e8858cf-d4af-4cb4-9675-9cd5fd80fcdc-4/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/2023/07/DSCN8423-scaled.jpg,,TRUE, +N1,61562,sortie-d92e45b1-843f-4881-8757-bec900a13fc5,https://biolit.fr/sorties/sortie-d92e45b1-843f-4881-8757-bec900a13fc5/,pascal vanaker,,11/03/2014,15.0:15,16.0000000,42.665427000000,9.061644000000,,Plage de l'Ostriconi dans les Agriates en Corse,58284,observation-d92e45b1-843f-4881-8757-bec900a13fc5,https://biolit.fr/observations/observation-d92e45b1-843f-4881-8757-bec900a13fc5/,Pleurobrachia pileus,Groseille de mer,,https://biolit.fr/wp-content/uploads/2023/07/observation 1.jpg,,TRUE, +N1,61562,sortie-d92e45b1-843f-4881-8757-bec900a13fc5,https://biolit.fr/sorties/sortie-d92e45b1-843f-4881-8757-bec900a13fc5/,pascal vanaker,,11/03/2014,15.0:15,16.0000000,42.665427000000,9.061644000000,,Plage de l'Ostriconi dans les Agriates en Corse,58286,observation-d92e45b1-843f-4881-8757-bec900a13fc5-2,https://biolit.fr/observations/observation-d92e45b1-843f-4881-8757-bec900a13fc5-2/,Pleurobrachia pileus,Groseille de mer,,https://biolit.fr/wp-content/uploads/2023/07/observation 2.jpg,,TRUE, +N1,61563,sortie-b4dd61c7-0f22-49bb-9d45-07280aac5e5a,https://biolit.fr/sorties/sortie-b4dd61c7-0f22-49bb-9d45-07280aac5e5a/,Ville de Marseille,,10/20/2014 0:00,10.0000000,11.0000000,43.16,5.22,,base nautique du roucas blanc,58288,observation-b4dd61c7-0f22-49bb-9d45-07280aac5e5a,https://biolit.fr/observations/observation-b4dd61c7-0f22-49bb-9d45-07280aac5e5a/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2510-scaled.jpg,,FALSE, +N1,61563,sortie-b4dd61c7-0f22-49bb-9d45-07280aac5e5a,https://biolit.fr/sorties/sortie-b4dd61c7-0f22-49bb-9d45-07280aac5e5a/,Ville de Marseille,,10/20/2014 0:00,10.0000000,11.0000000,43.16,5.22,,base nautique du roucas blanc,58290,observation-b4dd61c7-0f22-49bb-9d45-07280aac5e5a-2,https://biolit.fr/observations/observation-b4dd61c7-0f22-49bb-9d45-07280aac5e5a-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2512-scaled.jpg,,FALSE, +N1,61563,sortie-b4dd61c7-0f22-49bb-9d45-07280aac5e5a,https://biolit.fr/sorties/sortie-b4dd61c7-0f22-49bb-9d45-07280aac5e5a/,Ville de Marseille,,10/20/2014 0:00,10.0000000,11.0000000,43.16,5.22,,base nautique du roucas blanc,58292,observation-b4dd61c7-0f22-49bb-9d45-07280aac5e5a-3,https://biolit.fr/observations/observation-b4dd61c7-0f22-49bb-9d45-07280aac5e5a-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2515-scaled.jpg,,FALSE, +N1,61563,sortie-b4dd61c7-0f22-49bb-9d45-07280aac5e5a,https://biolit.fr/sorties/sortie-b4dd61c7-0f22-49bb-9d45-07280aac5e5a/,Ville de Marseille,,10/20/2014 0:00,10.0000000,11.0000000,43.16,5.22,,base nautique du roucas blanc,58294,observation-b4dd61c7-0f22-49bb-9d45-07280aac5e5a-4,https://biolit.fr/observations/observation-b4dd61c7-0f22-49bb-9d45-07280aac5e5a-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2521-scaled.jpg,,FALSE, +N1,61563,sortie-b4dd61c7-0f22-49bb-9d45-07280aac5e5a,https://biolit.fr/sorties/sortie-b4dd61c7-0f22-49bb-9d45-07280aac5e5a/,Ville de Marseille,,10/20/2014 0:00,10.0000000,11.0000000,43.16,5.22,,base nautique du roucas blanc,58296,observation-b4dd61c7-0f22-49bb-9d45-07280aac5e5a-5,https://biolit.fr/observations/observation-b4dd61c7-0f22-49bb-9d45-07280aac5e5a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2528-scaled.jpg,,FALSE, +N1,61563,sortie-b4dd61c7-0f22-49bb-9d45-07280aac5e5a,https://biolit.fr/sorties/sortie-b4dd61c7-0f22-49bb-9d45-07280aac5e5a/,Ville de Marseille,,10/20/2014 0:00,10.0000000,11.0000000,43.16,5.22,,base nautique du roucas blanc,58298,observation-b4dd61c7-0f22-49bb-9d45-07280aac5e5a-6,https://biolit.fr/observations/observation-b4dd61c7-0f22-49bb-9d45-07280aac5e5a-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2535-scaled.jpg,,FALSE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58300,observation-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Anémone rouge (4)-scaled.jpg,,TRUE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58302,observation-51e4cf06-e886-460b-b197-33828246eecc-2,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/bernard-l'ermite (2)-scaled.jpg,,FALSE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58303,observation-51e4cf06-e886-460b-b197-33828246eecc-3,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-3/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/Bigorneau (1)-scaled.jpg,,TRUE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58305,observation-51e4cf06-e886-460b-b197-33828246eecc-4,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-4/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/Carcinus (4)-scaled.jpg,,TRUE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58307,observation-51e4cf06-e886-460b-b197-33828246eecc-5,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-5/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/2023/07/Chabot buffle (3)-scaled.jpg,,TRUE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58309,observation-51e4cf06-e886-460b-b197-33828246eecc-6,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/Chondrus crispus (2)-scaled.jpg,,FALSE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58311,observation-51e4cf06-e886-460b-b197-33828246eecc-7,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-7/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/2023/07/Crabe tourteau (4)-scaled.jpg,,TRUE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58313,observation-51e4cf06-e886-460b-b197-33828246eecc-8,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crevette rose (2).JPG,,FALSE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58315,observation-51e4cf06-e886-460b-b197-33828246eecc-9,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Crevette grise (5)-scaled.jpg,,FALSE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58317,observation-51e4cf06-e886-460b-b197-33828246eecc-10,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-10/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/Etoile de Mer-scaled.jpg,,TRUE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58318,observation-51e4cf06-e886-460b-b197-33828246eecc-11,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-11/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/2023/07/Etrille (3)-scaled.jpg,,TRUE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58320,observation-51e4cf06-e886-460b-b197-33828246eecc-12,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-12/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/2023/07/Fucus serratus (2)-scaled.jpg,,TRUE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58322,observation-51e4cf06-e886-460b-b197-33828246eecc-13,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-13/,Pholis gunnellus,Gonnelle,,https://biolit.fr/wp-content/uploads/2023/07/Gonelle-scaled.jpg,,TRUE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58324,observation-51e4cf06-e886-460b-b197-33828246eecc-14,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-14/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/2023/07/Ligia oceanica (1)-scaled.jpg,,TRUE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58326,observation-51e4cf06-e886-460b-b197-33828246eecc-15,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-15/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/2023/07/Oursin (1)-scaled.jpg,,TRUE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58328,observation-51e4cf06-e886-460b-b197-33828246eecc-16,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Patelle (4)-scaled.jpg,,FALSE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58330,observation-51e4cf06-e886-460b-b197-33828246eecc-17,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-17/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/2023/05/Pelvetia caniculata-scaled.jpg,,TRUE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58331,observation-51e4cf06-e886-460b-b197-33828246eecc-18,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-18/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/2023/07/Porcellaine (1)-scaled.jpg,,TRUE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58333,observation-51e4cf06-e886-460b-b197-33828246eecc-19,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-19/,Sepiola atlantica,Sépiole atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Sepiola (7).JPG,,TRUE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58335,observation-51e4cf06-e886-460b-b197-33828246eecc-20,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-20/,Parablennius gattorugine,Cabot,,https://biolit.fr/wp-content/uploads/2023/07/Toupet marbré 01 (1)-scaled.jpg,,TRUE, +N1,61564,sortie-51e4cf06-e886-460b-b197-33828246eecc,https://biolit.fr/sorties/sortie-51e4cf06-e886-460b-b197-33828246eecc/,Cecile2706,,09/11/2014,9.0000000,11.0000000,50.750385000000,1.594074000000,,estran,58337,observation-51e4cf06-e886-460b-b197-33828246eecc-21,https://biolit.fr/observations/observation-51e4cf06-e886-460b-b197-33828246eecc-21/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/2023/07/Ulva Lactua (1)-scaled.jpg,,TRUE, +N1,61565,sortie-41dbbb82-c9fc-4342-9334-37c23d74297b,https://biolit.fr/sorties/sortie-41dbbb82-c9fc-4342-9334-37c23d74297b/,AIEJE,,08/06/2014,10.0000000,13.0000000,43.339708000000,5.258506000000,,Niolon,58339,observation-41dbbb82-c9fc-4342-9334-37c23d74297b,https://biolit.fr/observations/observation-41dbbb82-c9fc-4342-9334-37c23d74297b/,Sphyraena viridensis,Bécune à bouche jaune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20140806_102455.jpg,,TRUE, +N1,61565,sortie-41dbbb82-c9fc-4342-9334-37c23d74297b,https://biolit.fr/sorties/sortie-41dbbb82-c9fc-4342-9334-37c23d74297b/,AIEJE,,08/06/2014,10.0000000,13.0000000,43.339708000000,5.258506000000,,Niolon,58341,observation-41dbbb82-c9fc-4342-9334-37c23d74297b-2,https://biolit.fr/observations/observation-41dbbb82-c9fc-4342-9334-37c23d74297b-2/,Sphyraena viridensis,Bécune à bouche jaune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20140806_110846.jpg,,TRUE, +N1,61566,sortie-126372ca-fa06-4df9-b608-4b316b4b4261,https://biolit.fr/sorties/sortie-126372ca-fa06-4df9-b608-4b316b4b4261/,Observe la nature,,7/26/2014 0:00,17.0000000,18.0000000,43.396658000000,3.701195000000,,Le môle port de plaisance,58343,observation-126372ca-fa06-4df9-b608-4b316b4b4261,https://biolit.fr/observations/observation-126372ca-fa06-4df9-b608-4b316b4b4261/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/C crbe marbre couleur.jpg,,TRUE, +N1,61566,sortie-126372ca-fa06-4df9-b608-4b316b4b4261,https://biolit.fr/sorties/sortie-126372ca-fa06-4df9-b608-4b316b4b4261/,Observe la nature,,7/26/2014 0:00,17.0000000,18.0000000,43.396658000000,3.701195000000,,Le môle port de plaisance,58345,observation-126372ca-fa06-4df9-b608-4b316b4b4261-2,https://biolit.fr/observations/observation-126372ca-fa06-4df9-b608-4b316b4b4261-2/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/C critere 3 piques.jpg,,TRUE, +N1,61566,sortie-126372ca-fa06-4df9-b608-4b316b4b4261,https://biolit.fr/sorties/sortie-126372ca-fa06-4df9-b608-4b316b4b4261/,Observe la nature,,7/26/2014 0:00,17.0000000,18.0000000,43.396658000000,3.701195000000,,Le môle port de plaisance,58347,observation-126372ca-fa06-4df9-b608-4b316b4b4261-3,https://biolit.fr/observations/observation-126372ca-fa06-4df9-b608-4b316b4b4261-3/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/C femelle.jpg,,TRUE, +N1,61567,sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f,https://biolit.fr/sorties/sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f/,ptiteric,,7/27/2014 0:00,15.0000000,16.0000000,43.537441000000,7.084663000000,,"ANTIBES, rocher de la Fourmigue",58349,observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f,https://biolit.fr/observations/observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f/,Flabellina affinis,Flabelline mauve,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3258.jpg,,TRUE, +N1,61567,sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f,https://biolit.fr/sorties/sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f/,ptiteric,,7/27/2014 0:00,15.0000000,16.0000000,43.537441000000,7.084663000000,,"ANTIBES, rocher de la Fourmigue",58351,observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-2,https://biolit.fr/observations/observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-2/,Diplodus vulgaris,Sar à tête noire,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3261.jpg,,TRUE, +N1,61567,sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f,https://biolit.fr/sorties/sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f/,ptiteric,,7/27/2014 0:00,15.0000000,16.0000000,43.537441000000,7.084663000000,,"ANTIBES, rocher de la Fourmigue",58353,observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-3,https://biolit.fr/observations/observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-3/,Palinurus elephas,Langouste rouge,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3264.jpg,,TRUE, +N1,61567,sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f,https://biolit.fr/sorties/sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f/,ptiteric,,7/27/2014 0:00,15.0000000,16.0000000,43.537441000000,7.084663000000,,"ANTIBES, rocher de la Fourmigue",58355,observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-4,https://biolit.fr/observations/observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-4/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3268.jpg,,TRUE, +N1,61567,sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f,https://biolit.fr/sorties/sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f/,ptiteric,,7/27/2014 0:00,15.0000000,16.0000000,43.537441000000,7.084663000000,,"ANTIBES, rocher de la Fourmigue",58357,observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-5,https://biolit.fr/observations/observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-5/,Phyllidia flava,Phyllis à ponctuations blanches,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3270.jpg,,TRUE, +N1,61567,sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f,https://biolit.fr/sorties/sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f/,ptiteric,,7/27/2014 0:00,15.0000000,16.0000000,43.537441000000,7.084663000000,,"ANTIBES, rocher de la Fourmigue",58359,observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-6,https://biolit.fr/observations/observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-6/,Coris julis,Girelle commune,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3272.jpg,,TRUE, +N1,61567,sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f,https://biolit.fr/sorties/sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f/,ptiteric,,7/27/2014 0:00,15.0000000,16.0000000,43.537441000000,7.084663000000,,"ANTIBES, rocher de la Fourmigue",58361,observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-7,https://biolit.fr/observations/observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3278.jpg,,FALSE, +N1,61567,sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f,https://biolit.fr/sorties/sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f/,ptiteric,,7/27/2014 0:00,15.0000000,16.0000000,43.537441000000,7.084663000000,,"ANTIBES, rocher de la Fourmigue",58363,observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-8,https://biolit.fr/observations/observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-8/,Apogon imberbis,Apogon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3279.jpg,,TRUE, +N1,61567,sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f,https://biolit.fr/sorties/sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f/,ptiteric,,7/27/2014 0:00,15.0000000,16.0000000,43.537441000000,7.084663000000,,"ANTIBES, rocher de la Fourmigue",58365,observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-9,https://biolit.fr/observations/observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-9/,Symphodus tinca,Crénilabre-paon,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3281.jpg,,TRUE, +N1,61567,sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f,https://biolit.fr/sorties/sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f/,ptiteric,,7/27/2014 0:00,15.0000000,16.0000000,43.537441000000,7.084663000000,,"ANTIBES, rocher de la Fourmigue",58367,observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-10,https://biolit.fr/observations/observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-10/,Peltodoris atromaculata,Doris dalmatienne,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3283.jpg,,TRUE, +N1,61567,sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f,https://biolit.fr/sorties/sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f/,ptiteric,,7/27/2014 0:00,15.0000000,16.0000000,43.537441000000,7.084663000000,,"ANTIBES, rocher de la Fourmigue",58369,observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-11,https://biolit.fr/observations/observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-11/,Serranus scriba,Serran-écriture,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3288.jpg,,TRUE, +N1,61567,sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f,https://biolit.fr/sorties/sortie-4912ace8-7339-467e-b6b6-fcc8f68a9c8f/,ptiteric,,7/27/2014 0:00,15.0000000,16.0000000,43.537441000000,7.084663000000,,"ANTIBES, rocher de la Fourmigue",58371,observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-12,https://biolit.fr/observations/observation-4912ace8-7339-467e-b6b6-fcc8f68a9c8f-12/,Pinna nobilis,Grande nacre,,https://biolit.fr/wp-content/uploads/2023/07/IMG_3291.jpg,,TRUE, +N1,61568,sortie-47504677-a189-4d5d-b02b-9d809064e286,https://biolit.fr/sorties/sortie-47504677-a189-4d5d-b02b-9d809064e286/,AIEJE,,7/25/2014 0:00,9.0000000,11.0000000,43.333270000000,5.199681000000,,Port de la Redonne,58373,observation-47504677-a189-4d5d-b02b-9d809064e286,https://biolit.fr/observations/observation-47504677-a189-4d5d-b02b-9d809064e286/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20140725_104444.jpg,,TRUE,Identifiable +N1,61569,sortie-6a1ecbcf-e309-4d1f-9617-2ac9e3bcca99,https://biolit.fr/sorties/sortie-6a1ecbcf-e309-4d1f-9617-2ac9e3bcca99/,Ville de Marseille,,7/16/2014 0:00,10.0000000,11.0000000,43.266327000000,5.371378000000,,"Bassin du Roucas Blanc, 13008 Marseille",58375,observation-6a1ecbcf-e309-4d1f-9617-2ac9e3bcca99,https://biolit.fr/observations/observation-6a1ecbcf-e309-4d1f-9617-2ac9e3bcca99/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/2023/07/ponte roussette_0.jpg,,TRUE, +N1,61570,sortie-0952c2f7-74e6-40b1-a432-b428dfee61c2,https://biolit.fr/sorties/sortie-0952c2f7-74e6-40b1-a432-b428dfee61c2/,marionbrige,,7/13/2014 0:00,16.0:25,16.0000000,49.696989000000,-1.472714000000,,Fermanville,58377,observation-0952c2f7-74e6-40b1-a432-b428dfee61c2,https://biolit.fr/observations/observation-0952c2f7-74e6-40b1-a432-b428dfee61c2/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/P1090725-scaled.jpg,,TRUE, +N1,61571,sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e,https://biolit.fr/sorties/sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58379,observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e,https://biolit.fr/observations/observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/PH0076655-scaled.jpg,,TRUE, +N1,61571,sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e,https://biolit.fr/sorties/sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58381,observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-2,https://biolit.fr/observations/observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-2/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/2023/07/PH0076656-scaled.jpg,,TRUE, +N1,61571,sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e,https://biolit.fr/sorties/sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58383,observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-3,https://biolit.fr/observations/observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/PH0076667.jpg,,FALSE, +N1,61571,sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e,https://biolit.fr/sorties/sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58385,observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-4,https://biolit.fr/observations/observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/PH0076670.jpg,,FALSE, +N1,61571,sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e,https://biolit.fr/sorties/sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58387,observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-5,https://biolit.fr/observations/observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-5/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/PH0076702-scaled.jpg,,TRUE, +N1,61571,sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e,https://biolit.fr/sorties/sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58389,observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-6,https://biolit.fr/observations/observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-6/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/PH0076704-scaled.jpg,,TRUE, +N1,61571,sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e,https://biolit.fr/sorties/sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58391,observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-7,https://biolit.fr/observations/observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/PH0076663.jpg,,FALSE, +N1,61571,sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e,https://biolit.fr/sorties/sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58393,observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-8,https://biolit.fr/observations/observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/PH0076583.jpg,,FALSE, +N1,61571,sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e,https://biolit.fr/sorties/sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58395,observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-9,https://biolit.fr/observations/observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-9/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2448-scaled.jpg,,TRUE, +N1,61571,sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e,https://biolit.fr/sorties/sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58397,observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-10,https://biolit.fr/observations/observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-10/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2446-scaled.jpg,,TRUE, +N1,61571,sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e,https://biolit.fr/sorties/sortie-cdf32e5b-0daf-4291-9d00-9c488e32d17e/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58399,observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-11,https://biolit.fr/observations/observation-cdf32e5b-0daf-4291-9d00-9c488e32d17e-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/PH0076699-scaled.jpg,,FALSE, +N1,61572,sortie-71289d6a-cd9d-40d1-ab33-ec03d8297578,https://biolit.fr/sorties/sortie-71289d6a-cd9d-40d1-ab33-ec03d8297578/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58401,observation-71289d6a-cd9d-40d1-ab33-ec03d8297578,https://biolit.fr/observations/observation-71289d6a-cd9d-40d1-ab33-ec03d8297578/,Stramonita haemastoma,Bouche de sang,,https://biolit.fr/wp-content/uploads/2023/07/PH0076678.jpg,,TRUE, +N1,61572,sortie-71289d6a-cd9d-40d1-ab33-ec03d8297578,https://biolit.fr/sorties/sortie-71289d6a-cd9d-40d1-ab33-ec03d8297578/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58403,observation-71289d6a-cd9d-40d1-ab33-ec03d8297578-2,https://biolit.fr/observations/observation-71289d6a-cd9d-40d1-ab33-ec03d8297578-2/,Stramonita haemastoma,Bouche de sang,,https://biolit.fr/wp-content/uploads/2023/07/PH0076680.jpg,,TRUE, +N1,61572,sortie-71289d6a-cd9d-40d1-ab33-ec03d8297578,https://biolit.fr/sorties/sortie-71289d6a-cd9d-40d1-ab33-ec03d8297578/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58405,observation-71289d6a-cd9d-40d1-ab33-ec03d8297578-3,https://biolit.fr/observations/observation-71289d6a-cd9d-40d1-ab33-ec03d8297578-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2445-scaled.jpg,,FALSE, +N1,61572,sortie-71289d6a-cd9d-40d1-ab33-ec03d8297578,https://biolit.fr/sorties/sortie-71289d6a-cd9d-40d1-ab33-ec03d8297578/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58407,observation-71289d6a-cd9d-40d1-ab33-ec03d8297578-4,https://biolit.fr/observations/observation-71289d6a-cd9d-40d1-ab33-ec03d8297578-4/,Bolinus brandaris,Ponte de murex épineux,,https://biolit.fr/wp-content/uploads/2023/07/PH0076638.jpg,,TRUE, +N1,61572,sortie-71289d6a-cd9d-40d1-ab33-ec03d8297578,https://biolit.fr/sorties/sortie-71289d6a-cd9d-40d1-ab33-ec03d8297578/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58409,observation-71289d6a-cd9d-40d1-ab33-ec03d8297578-5,https://biolit.fr/observations/observation-71289d6a-cd9d-40d1-ab33-ec03d8297578-5/,Bolinus brandaris,Ponte de murex épineux,,https://biolit.fr/wp-content/uploads/2023/07/PH0076634.jpg,,TRUE, +N1,61572,sortie-71289d6a-cd9d-40d1-ab33-ec03d8297578,https://biolit.fr/sorties/sortie-71289d6a-cd9d-40d1-ab33-ec03d8297578/,Ville de Marseille,,6/30/2014 0:00,9.0000000,11.0000000,43.12,5.25,,Calanque de Sormiou,58411,observation-71289d6a-cd9d-40d1-ab33-ec03d8297578-6,https://biolit.fr/observations/observation-71289d6a-cd9d-40d1-ab33-ec03d8297578-6/,Bolinus brandaris,Ponte de murex épineux,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2431-scaled.jpg,,TRUE, +N1,61573,sortie-ac56b815-9164-4223-8bb7-91e3d693306b,https://biolit.fr/sorties/sortie-ac56b815-9164-4223-8bb7-91e3d693306b/,Céline,,07/02/2014,9.0000000,11.0000000,43.210648000000,5.420663000000,,Calanque de sormiou,58413,observation-ac56b815-9164-4223-8bb7-91e3d693306b,https://biolit.fr/observations/observation-ac56b815-9164-4223-8bb7-91e3d693306b/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0293-scaled.jpg,,TRUE,Identifiable +N1,61573,sortie-ac56b815-9164-4223-8bb7-91e3d693306b,https://biolit.fr/sorties/sortie-ac56b815-9164-4223-8bb7-91e3d693306b/,Céline,,07/02/2014,9.0000000,11.0000000,43.210648000000,5.420663000000,,Calanque de sormiou,58415,observation-ac56b815-9164-4223-8bb7-91e3d693306b-2,https://biolit.fr/observations/observation-ac56b815-9164-4223-8bb7-91e3d693306b-2/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0296-scaled.jpg,,TRUE, +N1,61573,sortie-ac56b815-9164-4223-8bb7-91e3d693306b,https://biolit.fr/sorties/sortie-ac56b815-9164-4223-8bb7-91e3d693306b/,Céline,,07/02/2014,9.0000000,11.0000000,43.210648000000,5.420663000000,,Calanque de sormiou,58417,observation-ac56b815-9164-4223-8bb7-91e3d693306b-3,https://biolit.fr/observations/observation-ac56b815-9164-4223-8bb7-91e3d693306b-3/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/DSCN8138-scaled.jpg,,TRUE, +N1,61573,sortie-ac56b815-9164-4223-8bb7-91e3d693306b,https://biolit.fr/sorties/sortie-ac56b815-9164-4223-8bb7-91e3d693306b/,Céline,,07/02/2014,9.0000000,11.0000000,43.210648000000,5.420663000000,,Calanque de sormiou,58419,observation-ac56b815-9164-4223-8bb7-91e3d693306b-4,https://biolit.fr/observations/observation-ac56b815-9164-4223-8bb7-91e3d693306b-4/,Stramonita haemastoma,Bouche de sang,,https://biolit.fr/wp-content/uploads/2023/07/DSCN8164-scaled.jpg,,TRUE,Identifiable +N1,61573,sortie-ac56b815-9164-4223-8bb7-91e3d693306b,https://biolit.fr/sorties/sortie-ac56b815-9164-4223-8bb7-91e3d693306b/,Céline,,07/02/2014,9.0000000,11.0000000,43.210648000000,5.420663000000,,Calanque de sormiou,58421,observation-ac56b815-9164-4223-8bb7-91e3d693306b-5,https://biolit.fr/observations/observation-ac56b815-9164-4223-8bb7-91e3d693306b-5/,Carpobrotus edulis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/2023/07/DSCN8170-scaled.jpg,,TRUE, +N1,61573,sortie-ac56b815-9164-4223-8bb7-91e3d693306b,https://biolit.fr/sorties/sortie-ac56b815-9164-4223-8bb7-91e3d693306b/,Céline,,07/02/2014,9.0000000,11.0000000,43.210648000000,5.420663000000,,Calanque de sormiou,58423,observation-ac56b815-9164-4223-8bb7-91e3d693306b-6,https://biolit.fr/observations/observation-ac56b815-9164-4223-8bb7-91e3d693306b-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN8171-scaled.jpg,,TRUE,non-identifiable +N1,61573,sortie-ac56b815-9164-4223-8bb7-91e3d693306b,https://biolit.fr/sorties/sortie-ac56b815-9164-4223-8bb7-91e3d693306b/,Céline,,07/02/2014,9.0000000,11.0000000,43.210648000000,5.420663000000,,Calanque de sormiou,58425,observation-ac56b815-9164-4223-8bb7-91e3d693306b-7,https://biolit.fr/observations/observation-ac56b815-9164-4223-8bb7-91e3d693306b-7/,Atriplex halimus,Arroche marine,,https://biolit.fr/wp-content/uploads/2023/07/DSCN8195-scaled.jpg,,TRUE,Identifiable +N1,61573,sortie-ac56b815-9164-4223-8bb7-91e3d693306b,https://biolit.fr/sorties/sortie-ac56b815-9164-4223-8bb7-91e3d693306b/,Céline,,07/02/2014,9.0000000,11.0000000,43.210648000000,5.420663000000,,Calanque de sormiou,58427,observation-ac56b815-9164-4223-8bb7-91e3d693306b-8,https://biolit.fr/observations/observation-ac56b815-9164-4223-8bb7-91e3d693306b-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN0293_0-scaled.jpg,,FALSE, +N1,61574,sortie-a78a25a0-e0ef-48e8-897f-17e8466f758b,https://biolit.fr/sorties/sortie-a78a25a0-e0ef-48e8-897f-17e8466f758b/,Marine,,06/10/2014,13.0:15,15.0:15,43.331038000000,5.20410400000,,Calanque des Anthénors,58429,observation-a78a25a0-e0ef-48e8-897f-17e8466f758b,https://biolit.fr/observations/observation-a78a25a0-e0ef-48e8-897f-17e8466f758b/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20140610_140701.jpg,,FALSE, +N1,61574,sortie-a78a25a0-e0ef-48e8-897f-17e8466f758b,https://biolit.fr/sorties/sortie-a78a25a0-e0ef-48e8-897f-17e8466f758b/,Marine,,06/10/2014,13.0:15,15.0:15,43.331038000000,5.20410400000,,Calanque des Anthénors,58431,observation-a78a25a0-e0ef-48e8-897f-17e8466f758b-2,https://biolit.fr/observations/observation-a78a25a0-e0ef-48e8-897f-17e8466f758b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_20140610_132352.jpg,,FALSE, +N1,61575,sortie-55b85dc2-80f4-413d-b20f-6c26cdaa5e28,https://biolit.fr/sorties/sortie-55b85dc2-80f4-413d-b20f-6c26cdaa5e28/,Observe la nature,,06/10/2014,15.0000000,17.0000000,48.599294000000,-2.555599000000,,Plage de piegu pleneuf val andre,58433,observation-55b85dc2-80f4-413d-b20f-6c26cdaa5e28,https://biolit.fr/observations/observation-55b85dc2-80f4-413d-b20f-6c26cdaa5e28/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC04067-scaled.jpg,,FALSE, +N1,61575,sortie-55b85dc2-80f4-413d-b20f-6c26cdaa5e28,https://biolit.fr/sorties/sortie-55b85dc2-80f4-413d-b20f-6c26cdaa5e28/,Observe la nature,,06/10/2014,15.0000000,17.0000000,48.599294000000,-2.555599000000,,Plage de piegu pleneuf val andre,58435,observation-55b85dc2-80f4-413d-b20f-6c26cdaa5e28-2,https://biolit.fr/observations/observation-55b85dc2-80f4-413d-b20f-6c26cdaa5e28-2/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/2023/07/DSC04051-scaled.jpg,,TRUE, +N1,61576,sortie-c3cf04b2-c4a4-4a54-b85d-9d0627de9dbd,https://biolit.fr/sorties/sortie-c3cf04b2-c4a4-4a54-b85d-9d0627de9dbd/,Observe la nature,,06/03/2014,16.0000000,16.0:35,48.599181000000,-2.555620000000,,Plage de piegu,58437,observation-c3cf04b2-c4a4-4a54-b85d-9d0627de9dbd,https://biolit.fr/observations/observation-c3cf04b2-c4a4-4a54-b85d-9d0627de9dbd/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04060_0-scaled.jpg,,TRUE, +N1,61577,sortie-78198da7-6699-4d7e-98a5-ff4ca8adbc52,https://biolit.fr/sorties/sortie-78198da7-6699-4d7e-98a5-ff4ca8adbc52/,Observe la nature,,06/03/2014,16.0000000,16.0:35,48.599181000000,-2.555620000000,,Plage de piegu,58439,observation-78198da7-6699-4d7e-98a5-ff4ca8adbc52,https://biolit.fr/observations/observation-78198da7-6699-4d7e-98a5-ff4ca8adbc52/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04060-scaled.jpg,,TRUE, +N1,61577,sortie-78198da7-6699-4d7e-98a5-ff4ca8adbc52,https://biolit.fr/sorties/sortie-78198da7-6699-4d7e-98a5-ff4ca8adbc52/,Observe la nature,,06/03/2014,16.0000000,16.0:35,48.599181000000,-2.555620000000,,Plage de piegu,58441,observation-78198da7-6699-4d7e-98a5-ff4ca8adbc52-2,https://biolit.fr/observations/observation-78198da7-6699-4d7e-98a5-ff4ca8adbc52-2/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04063-scaled.jpg,,TRUE, +N1,61577,sortie-78198da7-6699-4d7e-98a5-ff4ca8adbc52,https://biolit.fr/sorties/sortie-78198da7-6699-4d7e-98a5-ff4ca8adbc52/,Observe la nature,,06/03/2014,16.0000000,16.0:35,48.599181000000,-2.555620000000,,Plage de piegu,58443,observation-78198da7-6699-4d7e-98a5-ff4ca8adbc52-3,https://biolit.fr/observations/observation-78198da7-6699-4d7e-98a5-ff4ca8adbc52-3/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSC04058-scaled.jpg,,TRUE, +N1,61577,sortie-78198da7-6699-4d7e-98a5-ff4ca8adbc52,https://biolit.fr/sorties/sortie-78198da7-6699-4d7e-98a5-ff4ca8adbc52/,Observe la nature,,06/03/2014,16.0000000,16.0:35,48.599181000000,-2.555620000000,,Plage de piegu,58445,observation-78198da7-6699-4d7e-98a5-ff4ca8adbc52-4,https://biolit.fr/observations/observation-78198da7-6699-4d7e-98a5-ff4ca8adbc52-4/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/pourpre.jpg,,TRUE, +N1,61578,sortie-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed,https://biolit.fr/sorties/sortie-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed/,Ville de Marseille,,06/10/2014,11.0000000,11.0000000,43.16,5.22,,"Bassin du Roucas Blanc, 13008 Marseille",58446,observation-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed,https://biolit.fr/observations/observation-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2279-scaled.jpg,,FALSE, +N1,61578,sortie-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed,https://biolit.fr/sorties/sortie-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed/,Ville de Marseille,,06/10/2014,11.0000000,11.0000000,43.16,5.22,,"Bassin du Roucas Blanc, 13008 Marseille",58448,observation-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed-2,https://biolit.fr/observations/observation-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2280-scaled.jpg,,FALSE, +N1,61578,sortie-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed,https://biolit.fr/sorties/sortie-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed/,Ville de Marseille,,06/10/2014,11.0000000,11.0000000,43.16,5.22,,"Bassin du Roucas Blanc, 13008 Marseille",58450,observation-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed-3,https://biolit.fr/observations/observation-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2281-scaled.jpg,,FALSE, +N1,61578,sortie-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed,https://biolit.fr/sorties/sortie-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed/,Ville de Marseille,,06/10/2014,11.0000000,11.0000000,43.16,5.22,,"Bassin du Roucas Blanc, 13008 Marseille",58452,observation-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed-4,https://biolit.fr/observations/observation-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2283-scaled.jpg,,FALSE, +N1,61578,sortie-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed,https://biolit.fr/sorties/sortie-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed/,Ville de Marseille,,06/10/2014,11.0000000,11.0000000,43.16,5.22,,"Bassin du Roucas Blanc, 13008 Marseille",58454,observation-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed-5,https://biolit.fr/observations/observation-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed-5/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2291-scaled.jpg,,TRUE, +N1,61578,sortie-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed,https://biolit.fr/sorties/sortie-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed/,Ville de Marseille,,06/10/2014,11.0000000,11.0000000,43.16,5.22,,"Bassin du Roucas Blanc, 13008 Marseille",58456,observation-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed-6,https://biolit.fr/observations/observation-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed-6/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/DSCN2293-scaled.jpg,,TRUE, +N1,61578,sortie-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed,https://biolit.fr/sorties/sortie-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed/,Ville de Marseille,,06/10/2014,11.0000000,11.0000000,43.16,5.22,,"Bassin du Roucas Blanc, 13008 Marseille",58458,observation-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed-7,https://biolit.fr/observations/observation-8aaf4e5b-ec24-4c4e-84e4-b11b025571ed-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSCN2299-scaled.jpg,,FALSE, +N1,61579,sortie-5d1122c7-7fd6-4805-9a30-3a65d44c5107,https://biolit.fr/sorties/sortie-5d1122c7-7fd6-4805-9a30-3a65d44c5107/,Cathy,,5/24/2014 0:00,11.0000000,11.0000000,43.002253000000,6.373205000000,,Port-Cros Plage du Sud,58460,observation-5d1122c7-7fd6-4805-9a30-3a65d44c5107,https://biolit.fr/observations/observation-5d1122c7-7fd6-4805-9a30-3a65d44c5107/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_7670'.jpg,,TRUE, +N1,61579,sortie-5d1122c7-7fd6-4805-9a30-3a65d44c5107,https://biolit.fr/sorties/sortie-5d1122c7-7fd6-4805-9a30-3a65d44c5107/,Cathy,,5/24/2014 0:00,11.0000000,11.0000000,43.002253000000,6.373205000000,,Port-Cros Plage du Sud,58462,observation-5d1122c7-7fd6-4805-9a30-3a65d44c5107-2,https://biolit.fr/observations/observation-5d1122c7-7fd6-4805-9a30-3a65d44c5107-2/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_7669'.jpg,,TRUE, +N1,61579,sortie-5d1122c7-7fd6-4805-9a30-3a65d44c5107,https://biolit.fr/sorties/sortie-5d1122c7-7fd6-4805-9a30-3a65d44c5107/,Cathy,,5/24/2014 0:00,11.0000000,11.0000000,43.002253000000,6.373205000000,,Port-Cros Plage du Sud,58464,observation-5d1122c7-7fd6-4805-9a30-3a65d44c5107-3,https://biolit.fr/observations/observation-5d1122c7-7fd6-4805-9a30-3a65d44c5107-3/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7645-scaled.jpg,,TRUE, +N1,61579,sortie-5d1122c7-7fd6-4805-9a30-3a65d44c5107,https://biolit.fr/sorties/sortie-5d1122c7-7fd6-4805-9a30-3a65d44c5107/,Cathy,,5/24/2014 0:00,11.0000000,11.0000000,43.002253000000,6.373205000000,,Port-Cros Plage du Sud,58466,observation-5d1122c7-7fd6-4805-9a30-3a65d44c5107-4,https://biolit.fr/observations/observation-5d1122c7-7fd6-4805-9a30-3a65d44c5107-4/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/IMG_7653-scaled.jpg,,TRUE, +N1,61580,sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a,https://biolit.fr/sorties/sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a/,Ville de Marseille,,5/20/2014 0:00,15.0000000,15.0:35,43.267218000000,5.370635000000,,bassin du Roucas Blanc,58468,observation-7ac82302-62ba-465c-9afa-f7537b5ac61a,https://biolit.fr/observations/observation-7ac82302-62ba-465c-9afa-f7537b5ac61a/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Cormaillot perceur Ocenebra erinacea-scaled.jpg,,TRUE, +N1,61580,sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a,https://biolit.fr/sorties/sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a/,Ville de Marseille,,5/20/2014 0:00,15.0000000,15.0:35,43.267218000000,5.370635000000,,bassin du Roucas Blanc,58470,observation-7ac82302-62ba-465c-9afa-f7537b5ac61a-2,https://biolit.fr/observations/observation-7ac82302-62ba-465c-9afa-f7537b5ac61a-2/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Aegagropiles-scaled.jpg,,TRUE, +N1,61580,sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a,https://biolit.fr/sorties/sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a/,Ville de Marseille,,5/20/2014 0:00,15.0000000,15.0:35,43.267218000000,5.370635000000,,bassin du Roucas Blanc,58472,observation-7ac82302-62ba-465c-9afa-f7537b5ac61a-3,https://biolit.fr/observations/observation-7ac82302-62ba-465c-9afa-f7537b5ac61a-3/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/2023/07/Arapede Patella caerulea-scaled.jpg,,TRUE, +N1,61580,sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a,https://biolit.fr/sorties/sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a/,Ville de Marseille,,5/20/2014 0:00,15.0000000,15.0:35,43.267218000000,5.370635000000,,bassin du Roucas Blanc,58474,observation-7ac82302-62ba-465c-9afa-f7537b5ac61a-4,https://biolit.fr/observations/observation-7ac82302-62ba-465c-9afa-f7537b5ac61a-4/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/2023/07/Anemone verte Anemona viridis-scaled.jpg,,TRUE, +N1,61580,sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a,https://biolit.fr/sorties/sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a/,Ville de Marseille,,5/20/2014 0:00,15.0000000,15.0:35,43.267218000000,5.370635000000,,bassin du Roucas Blanc,58476,observation-7ac82302-62ba-465c-9afa-f7537b5ac61a-5,https://biolit.fr/observations/observation-7ac82302-62ba-465c-9afa-f7537b5ac61a-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ascidies blanches Phallusia mammillata-scaled.jpg,,FALSE, +N1,61580,sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a,https://biolit.fr/sorties/sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a/,Ville de Marseille,,5/20/2014 0:00,15.0000000,15.0:35,43.267218000000,5.370635000000,,bassin du Roucas Blanc,58478,observation-7ac82302-62ba-465c-9afa-f7537b5ac61a-6,https://biolit.fr/observations/observation-7ac82302-62ba-465c-9afa-f7537b5ac61a-6/,Leptomysis sp.,Leptomysis de Méditerranée,,https://biolit.fr/wp-content/uploads/2023/07/Crevettes juveniles-scaled.jpg,,TRUE, +N1,61580,sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a,https://biolit.fr/sorties/sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a/,Ville de Marseille,,5/20/2014 0:00,15.0000000,15.0:35,43.267218000000,5.370635000000,,bassin du Roucas Blanc,58480,observation-7ac82302-62ba-465c-9afa-f7537b5ac61a-7,https://biolit.fr/observations/observation-7ac82302-62ba-465c-9afa-f7537b5ac61a-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/Gibbule Gibbula divaricata-scaled.jpg,,FALSE, +N1,61580,sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a,https://biolit.fr/sorties/sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a/,Ville de Marseille,,5/20/2014 0:00,15.0000000,15.0:35,43.267218000000,5.370635000000,,bassin du Roucas Blanc,58482,observation-7ac82302-62ba-465c-9afa-f7537b5ac61a-8,https://biolit.fr/observations/observation-7ac82302-62ba-465c-9afa-f7537b5ac61a-8/,Sabella spallanzanii,Spirographe,,https://biolit.fr/wp-content/uploads/2023/07/Spirographe Sabella Spallanzanii-scaled.jpg,,TRUE, +N1,61580,sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a,https://biolit.fr/sorties/sortie-7ac82302-62ba-465c-9afa-f7537b5ac61a/,Ville de Marseille,,5/20/2014 0:00,15.0000000,15.0:35,43.267218000000,5.370635000000,,bassin du Roucas Blanc,58484,observation-7ac82302-62ba-465c-9afa-f7537b5ac61a-9,https://biolit.fr/observations/observation-7ac82302-62ba-465c-9afa-f7537b5ac61a-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ponte non identifiee-scaled.jpg,,FALSE, +N1,61581,sortie-f55a0a0f-2dc0-45b2-a25c-7a06c7a468c0,https://biolit.fr/sorties/sortie-f55a0a0f-2dc0-45b2-a25c-7a06c7a468c0/,Audrey,,5/18/2014 0:00,10.0000000,11.0000000,43.14355200000,6.383708000000,,"Le Lavandou, plage Saint Claire",58486,observation-f55a0a0f-2dc0-45b2-a25c-7a06c7a468c0,https://biolit.fr/observations/observation-f55a0a0f-2dc0-45b2-a25c-7a06c7a468c0/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/2023/07/P1040558-scaled.jpg,,TRUE, +N1,61581,sortie-f55a0a0f-2dc0-45b2-a25c-7a06c7a468c0,https://biolit.fr/sorties/sortie-f55a0a0f-2dc0-45b2-a25c-7a06c7a468c0/,Audrey,,5/18/2014 0:00,10.0000000,11.0000000,43.14355200000,6.383708000000,,"Le Lavandou, plage Saint Claire",58488,observation-f55a0a0f-2dc0-45b2-a25c-7a06c7a468c0-2,https://biolit.fr/observations/observation-f55a0a0f-2dc0-45b2-a25c-7a06c7a468c0-2/,Acetabularia acetabulum,Acétabulaire,,https://biolit.fr/wp-content/uploads/2023/07/P1040550-scaled.jpg,,TRUE, +N1,61581,sortie-f55a0a0f-2dc0-45b2-a25c-7a06c7a468c0,https://biolit.fr/sorties/sortie-f55a0a0f-2dc0-45b2-a25c-7a06c7a468c0/,Audrey,,5/18/2014 0:00,10.0000000,11.0000000,43.14355200000,6.383708000000,,"Le Lavandou, plage Saint Claire",58490,observation-f55a0a0f-2dc0-45b2-a25c-7a06c7a468c0-3,https://biolit.fr/observations/observation-f55a0a0f-2dc0-45b2-a25c-7a06c7a468c0-3/,Acetabularia acetabulum,Acétabulaire,,https://biolit.fr/wp-content/uploads/2023/07/P1040555-scaled.jpg,,TRUE, +N1,61582,sortie-23463f86-62d2-4e15-a692-6b75553755b2,https://biolit.fr/sorties/sortie-23463f86-62d2-4e15-a692-6b75553755b2/,Morice,,5/15/2014 0:00,13.0000000,15.0000000,43.163290000000,5.608750000000,,Negue Foume,58492,observation-23463f86-62d2-4e15-a692-6b75553755b2,https://biolit.fr/observations/observation-23463f86-62d2-4e15-a692-6b75553755b2/,Simnia spelta,Simnie blanche,,https://biolit.fr/wp-content/uploads/2023/07/simnie1-scaled.jpg,,TRUE, +N1,61583,sortie-e810f1b2-28c9-4f57-a20b-29156e2b5b41,https://biolit.fr/sorties/sortie-e810f1b2-28c9-4f57-a20b-29156e2b5b41/,pascal bazile,,4/24/2014 0:00,14.0000000,15.0000000,43.40809000000,5.057792000000,,Martigues,58494,observation-e810f1b2-28c9-4f57-a20b-29156e2b5b41,https://biolit.fr/observations/observation-e810f1b2-28c9-4f57-a20b-29156e2b5b41/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/05/004-scaled.jpg,,TRUE, +N1,61584,sortie-254fdb4e-059d-47b3-bde6-481dae5498db,https://biolit.fr/sorties/sortie-254fdb4e-059d-47b3-bde6-481dae5498db/,big'orneau,,04/11/2014,10.0000000,12.0000000,47.249036000000,-2.49974100000,,Batz-sur-Mer,58495,observation-254fdb4e-059d-47b3-bde6-481dae5498db,https://biolit.fr/observations/observation-254fdb4e-059d-47b3-bde6-481dae5498db/,Dermochelys coriacea,Tortue luth,,https://biolit.fr/wp-content/uploads/2023/07/IMG_1489.JPG,,TRUE, +N1,61585,sortie-5478091d-87ad-41c6-b29a-4e21e2c52e5c,https://biolit.fr/sorties/sortie-5478091d-87ad-41c6-b29a-4e21e2c52e5c/,Lilita,,2/27/2014 0:00,16.0000000,18.0000000,43.391720000000,3.660147000000,,Balaruc Les Bains,58497,observation-5478091d-87ad-41c6-b29a-4e21e2c52e5c,https://biolit.fr/observations/observation-5478091d-87ad-41c6-b29a-4e21e2c52e5c/,Sipunculus (Sipunculus) nudus,Ver cacahuète,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0014-scaled.jpg,,TRUE, +N1,61586,sortie-7d142537-0515-4107-ae69-08d057390ce6,https://biolit.fr/sorties/sortie-7d142537-0515-4107-ae69-08d057390ce6/,orovellotti,,3/31/2014 0:00,16.0000000,18.0000000,43.271048000000,5.305221000000,,Frioul,58499,observation-7d142537-0515-4107-ae69-08d057390ce6,https://biolit.fr/observations/observation-7d142537-0515-4107-ae69-08d057390ce6/,",",,https://biolit.fr/wp-content/uploads/2023/07/DSCF3972_1-scaled.jpg,,TRUE,non-identifiable, +N1,61586,sortie-7d142537-0515-4107-ae69-08d057390ce6,https://biolit.fr/sorties/sortie-7d142537-0515-4107-ae69-08d057390ce6/,orovellotti,,3/31/2014 0:00,16.0000000,18.0000000,43.271048000000,5.305221000000,,Frioul,58501,observation-7d142537-0515-4107-ae69-08d057390ce6-2,https://biolit.fr/observations/observation-7d142537-0515-4107-ae69-08d057390ce6-2/,Astragalus tragacantha,Astragale de Marseille,,https://biolit.fr/wp-content/uploads/2023/07/DSCF3990-scaled.jpg,,TRUE, +N1,61587,sortie-78424176-6cf5-461d-93e1-96448bb37be8,https://biolit.fr/sorties/sortie-78424176-6cf5-461d-93e1-96448bb37be8/,Robert,,3/19/2014 0:00,13.0000000,15.0000000,43.28504200000,5.317685000000,,Marseille - Îles du frioul,58503,observation-78424176-6cf5-461d-93e1-96448bb37be8,https://biolit.fr/observations/observation-78424176-6cf5-461d-93e1-96448bb37be8/,Lithophyllum byssoides,Algue calcaire des trottoirs,,https://biolit.fr/wp-content/uploads/2023/07/P3193994-scaled.jpg,,TRUE, +N1,61588,sortie-e0e46865-6a5d-4129-b6a6-cb44618447fd,https://biolit.fr/sorties/sortie-e0e46865-6a5d-4129-b6a6-cb44618447fd/,Lisa Kundasamy,,3/21/2014 0:00,10.0000000,12.0000000,43.519877000000,7.033862000000,,Îles de Lérins - Sainte-Marguerite,58505,observation-e0e46865-6a5d-4129-b6a6-cb44618447fd,https://biolit.fr/observations/observation-e0e46865-6a5d-4129-b6a6-cb44618447fd/,Lithophaga lithophaga,Datte de mer,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0177-scaled.jpg,,TRUE, +N1,61589,sortie-29791f04-9832-4239-8a2d-da8e1973a4a5,https://biolit.fr/sorties/sortie-29791f04-9832-4239-8a2d-da8e1973a4a5/,Lisa Kundasamy,,3/21/2014 0:00,10.0000000,12.0000000,43.520747000000,7.032602000000,,Îles de Lérins - Sainte-Marguerite,58507,observation-29791f04-9832-4239-8a2d-da8e1973a4a5,https://biolit.fr/observations/observation-29791f04-9832-4239-8a2d-da8e1973a4a5/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0142-scaled.jpg,,FALSE, +N1,61589,sortie-29791f04-9832-4239-8a2d-da8e1973a4a5,https://biolit.fr/sorties/sortie-29791f04-9832-4239-8a2d-da8e1973a4a5/,Lisa Kundasamy,,3/21/2014 0:00,10.0000000,12.0000000,43.520747000000,7.032602000000,,Îles de Lérins - Sainte-Marguerite,58508,observation-29791f04-9832-4239-8a2d-da8e1973a4a5-2,https://biolit.fr/observations/observation-29791f04-9832-4239-8a2d-da8e1973a4a5-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0140-scaled.jpg,,TRUE,non-identifiable +N1,61589,sortie-29791f04-9832-4239-8a2d-da8e1973a4a5,https://biolit.fr/sorties/sortie-29791f04-9832-4239-8a2d-da8e1973a4a5/,Lisa Kundasamy,,3/21/2014 0:00,10.0000000,12.0000000,43.520747000000,7.032602000000,,Îles de Lérins - Sainte-Marguerite,58509,observation-29791f04-9832-4239-8a2d-da8e1973a4a5-3,https://biolit.fr/observations/observation-29791f04-9832-4239-8a2d-da8e1973a4a5-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0163-scaled.jpg,,TRUE,non-identifiable +N1,61590,sortie-06414766-a8d0-4c20-9c7a-d41d6ccd29a7,https://biolit.fr/sorties/sortie-06414766-a8d0-4c20-9c7a-d41d6ccd29a7/,Laurent Debas,,3/31/2014 0:00,11.0000000,13.0000000,43.267425000000,5.292026000000,,ile du frioul - Calanque de la Crine,58511,observation-06414766-a8d0-4c20-9c7a-d41d6ccd29a7,https://biolit.fr/observations/observation-06414766-a8d0-4c20-9c7a-d41d6ccd29a7/,,,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0019-scaled.jpg,,TRUE,non-identifiable +N1,61590,sortie-06414766-a8d0-4c20-9c7a-d41d6ccd29a7,https://biolit.fr/sorties/sortie-06414766-a8d0-4c20-9c7a-d41d6ccd29a7/,Laurent Debas,,3/31/2014 0:00,11.0000000,13.0000000,43.267425000000,5.292026000000,,ile du frioul - Calanque de la Crine,58512,observation-06414766-a8d0-4c20-9c7a-d41d6ccd29a7-2,https://biolit.fr/observations/observation-06414766-a8d0-4c20-9c7a-d41d6ccd29a7-2/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/2023/07/DSC_0020-scaled.jpg,,TRUE, +N1,61590,sortie-06414766-a8d0-4c20-9c7a-d41d6ccd29a7,https://biolit.fr/sorties/sortie-06414766-a8d0-4c20-9c7a-d41d6ccd29a7/,Laurent Debas,,3/31/2014 0:00,11.0000000,13.0000000,43.267425000000,5.292026000000,,ile du frioul - Calanque de la Crine,58513,observation-06414766-a8d0-4c20-9c7a-d41d6ccd29a7-3,https://biolit.fr/observations/observation-06414766-a8d0-4c20-9c7a-d41d6ccd29a7-3/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/DSC_0023-scaled.jpg,,TRUE, +N1,62209,sortie-90887d58-b6fb-4bb9-8856-bf3fd43bcdff,https://biolit.fr/sorties/sortie-90887d58-b6fb-4bb9-8856-bf3fd43bcdff/,Observe la nature,,07/03/2023,14.0000000,16.0000000,48.693687000000,-1.895574000000,,Plage de du Guesclin saint Coulomb 35350,62207,observation-90887d58-b6fb-4bb9-8856-bf3fd43bcdff,https://biolit.fr/observations/observation-90887d58-b6fb-4bb9-8856-bf3fd43bcdff/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/Os seiche st coulomb 3 jullet animation.jpg,,TRUE, +N1,62330,sortie-59a2e7d4-db71-4297-8df7-d256cd02b209,https://biolit.fr/sorties/sortie-59a2e7d4-db71-4297-8df7-d256cd02b209/,laurence_ducourty@yahoo.fr,,06/01/2023,9.0000000,9.0:45,47.479280000000,-3.120649000000,,La Grande Plage de Quiberon,62210,observation-59a2e7d4-db71-4297-8df7-d256cd02b209,https://biolit.fr/observations/observation-59a2e7d4-db71-4297-8df7-d256cd02b209/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/2023/07/20230601_092738-scaled.jpg,,TRUE, +N1,62330,sortie-59a2e7d4-db71-4297-8df7-d256cd02b209,https://biolit.fr/sorties/sortie-59a2e7d4-db71-4297-8df7-d256cd02b209/,laurence_ducourty@yahoo.fr,,06/01/2023,9.0000000,9.0:45,47.479280000000,-3.120649000000,,La Grande Plage de Quiberon,62212,observation-59a2e7d4-db71-4297-8df7-d256cd02b209-2,https://biolit.fr/observations/observation-59a2e7d4-db71-4297-8df7-d256cd02b209-2/,Chrysaora hysoscella,Méduse rayonnée,,https://biolit.fr/wp-content/uploads/2023/07/20230601_092601-scaled.jpg,,TRUE, +N1,62330,sortie-59a2e7d4-db71-4297-8df7-d256cd02b209,https://biolit.fr/sorties/sortie-59a2e7d4-db71-4297-8df7-d256cd02b209/,laurence_ducourty@yahoo.fr,,06/01/2023,9.0000000,9.0:45,47.479280000000,-3.120649000000,,La Grande Plage de Quiberon,62214,observation-59a2e7d4-db71-4297-8df7-d256cd02b209-3,https://biolit.fr/observations/observation-59a2e7d4-db71-4297-8df7-d256cd02b209-3/,Chrysaora hysoscella,Méduse rayonnée,,https://biolit.fr/wp-content/uploads/2023/07/20230601_092617-scaled.jpg,,TRUE, +N1,62330,sortie-59a2e7d4-db71-4297-8df7-d256cd02b209,https://biolit.fr/sorties/sortie-59a2e7d4-db71-4297-8df7-d256cd02b209/,laurence_ducourty@yahoo.fr,,06/01/2023,9.0000000,9.0:45,47.479280000000,-3.120649000000,,La Grande Plage de Quiberon,62216,observation-59a2e7d4-db71-4297-8df7-d256cd02b209-4,https://biolit.fr/observations/observation-59a2e7d4-db71-4297-8df7-d256cd02b209-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230601_092550-scaled.jpg,,FALSE, +N1,62330,sortie-59a2e7d4-db71-4297-8df7-d256cd02b209,https://biolit.fr/sorties/sortie-59a2e7d4-db71-4297-8df7-d256cd02b209/,laurence_ducourty@yahoo.fr,,06/01/2023,9.0000000,9.0:45,47.479280000000,-3.120649000000,,La Grande Plage de Quiberon,62218,observation-59a2e7d4-db71-4297-8df7-d256cd02b209-5,https://biolit.fr/observations/observation-59a2e7d4-db71-4297-8df7-d256cd02b209-5/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230601_092457-scaled.jpg,,FALSE, +N1,62330,sortie-59a2e7d4-db71-4297-8df7-d256cd02b209,https://biolit.fr/sorties/sortie-59a2e7d4-db71-4297-8df7-d256cd02b209/,laurence_ducourty@yahoo.fr,,06/01/2023,9.0000000,9.0:45,47.479280000000,-3.120649000000,,La Grande Plage de Quiberon,62220,observation-59a2e7d4-db71-4297-8df7-d256cd02b209-6,https://biolit.fr/observations/observation-59a2e7d4-db71-4297-8df7-d256cd02b209-6/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/2023/07/20230601_092649-scaled.jpg,,TRUE, +N1,62330,sortie-59a2e7d4-db71-4297-8df7-d256cd02b209,https://biolit.fr/sorties/sortie-59a2e7d4-db71-4297-8df7-d256cd02b209/,laurence_ducourty@yahoo.fr,,06/01/2023,9.0000000,9.0:45,47.479280000000,-3.120649000000,,La Grande Plage de Quiberon,62222,observation-59a2e7d4-db71-4297-8df7-d256cd02b209-7,https://biolit.fr/observations/observation-59a2e7d4-db71-4297-8df7-d256cd02b209-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230601_093046-scaled.jpg,,FALSE, +N1,62330,sortie-59a2e7d4-db71-4297-8df7-d256cd02b209,https://biolit.fr/sorties/sortie-59a2e7d4-db71-4297-8df7-d256cd02b209/,laurence_ducourty@yahoo.fr,,06/01/2023,9.0000000,9.0:45,47.479280000000,-3.120649000000,,La Grande Plage de Quiberon,62224,observation-59a2e7d4-db71-4297-8df7-d256cd02b209-8,https://biolit.fr/observations/observation-59a2e7d4-db71-4297-8df7-d256cd02b209-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230601_092811-scaled.jpg,,FALSE, +N1,62330,sortie-59a2e7d4-db71-4297-8df7-d256cd02b209,https://biolit.fr/sorties/sortie-59a2e7d4-db71-4297-8df7-d256cd02b209/,laurence_ducourty@yahoo.fr,,06/01/2023,9.0000000,9.0:45,47.479280000000,-3.120649000000,,La Grande Plage de Quiberon,62226,observation-59a2e7d4-db71-4297-8df7-d256cd02b209-9,https://biolit.fr/observations/observation-59a2e7d4-db71-4297-8df7-d256cd02b209-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/20230601_092437-scaled.jpg,,FALSE, +N1,62331,sortie-bf71a27b-758f-4a74-9f34-6947fbfd53d3,https://biolit.fr/sorties/sortie-bf71a27b-758f-4a74-9f34-6947fbfd53d3/,Observe la nature,,07/03/2023,14.0000000,16.0000000,48.696256000000,-1.896073000000,,Plage de du Guesclin SAINT COULOMB,62228,observation-bf71a27b-758f-4a74-9f34-6947fbfd53d3,https://biolit.fr/observations/observation-bf71a27b-758f-4a74-9f34-6947fbfd53d3/,,,,https://biolit.fr/wp-content/uploads/2023/07/3 juillet 2023 St COULOMB.jpg,,FALSE, +N1,62332,sortie-08544f42-4b2f-4cd2-8523-d2874e6ed09c,https://biolit.fr/sorties/sortie-08544f42-4b2f-4cd2-8523-d2874e6ed09c/,Observe la nature,,07/03/2023,14.0000000,16.0000000,48.696341000000,-1.895881000000,,Plage de du Guesclin SAINT COULOMB,62230,observation-08544f42-4b2f-4cd2-8523-d2874e6ed09c,https://biolit.fr/observations/observation-08544f42-4b2f-4cd2-8523-d2874e6ed09c/,,,,https://biolit.fr/wp-content/uploads/2023/07/ST COULOMB 3 JUILLET.jpg,,FALSE, +N1,62332,sortie-08544f42-4b2f-4cd2-8523-d2874e6ed09c,https://biolit.fr/sorties/sortie-08544f42-4b2f-4cd2-8523-d2874e6ed09c/,Observe la nature,,07/03/2023,14.0000000,16.0000000,48.696341000000,-1.895881000000,,Plage de du Guesclin SAINT COULOMB,62232,observation-08544f42-4b2f-4cd2-8523-d2874e6ed09c-2,https://biolit.fr/observations/observation-08544f42-4b2f-4cd2-8523-d2874e6ed09c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/sT COULOMB 3 juillet 2023.jpg,,FALSE, +N1,62332,sortie-08544f42-4b2f-4cd2-8523-d2874e6ed09c,https://biolit.fr/sorties/sortie-08544f42-4b2f-4cd2-8523-d2874e6ed09c/,Observe la nature,,07/03/2023,14.0000000,16.0000000,48.696341000000,-1.895881000000,,Plage de du Guesclin SAINT COULOMB,62234,observation-08544f42-4b2f-4cd2-8523-d2874e6ed09c-3,https://biolit.fr/observations/observation-08544f42-4b2f-4cd2-8523-d2874e6ed09c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/St Coulomb le 3 juil 2023.jpg,,FALSE, +N1,62332,sortie-08544f42-4b2f-4cd2-8523-d2874e6ed09c,https://biolit.fr/sorties/sortie-08544f42-4b2f-4cd2-8523-d2874e6ed09c/,Observe la nature,,07/03/2023,14.0000000,16.0000000,48.696341000000,-1.895881000000,,Plage de du Guesclin SAINT COULOMB,62236,observation-08544f42-4b2f-4cd2-8523-d2874e6ed09c-4,https://biolit.fr/observations/observation-08544f42-4b2f-4cd2-8523-d2874e6ed09c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/357533938_197378876627959_7537528691777130853_n.jpg,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62238,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/2023/07/Actinia equina_27.PNG,,TRUE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62240,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-2,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue épiphyte des moules.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62242,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-3,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/algue sp_4.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62250,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-7,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/ascidie sp_10.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62252,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-8,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-8/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/2023/07/Asterina gibboa.PNG,,TRUE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62254,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-9,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-9/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/2023/07/Botryllus schlosseri_20.PNG,,TRUE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62256,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-10,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-10/,,,,https://biolit.fr/wp-content/uploads/2023/07/Cereus pedunculatus_19.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62260,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-12,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/Corallina spp.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62262,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-13,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-13/,,,,https://biolit.fr/wp-content/uploads/2023/07/doris verrucosa pe_0.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62266,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-15,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/Fucus serratus_7.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62268,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-16,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-16/,,,,https://biolit.fr/wp-content/uploads/2023/07/Fucus vesiculosus_1.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62270,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-17,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-17/,,,,https://biolit.fr/wp-content/uploads/2023/07/gobie sp_4.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62271,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-18,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-18/,,,,https://biolit.fr/wp-content/uploads/2023/07/Lepidochitona sp_3.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62273,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-19,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-19/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2023/07/Littorina obtusata_5.PNG,,TRUE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62275,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-20,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-20/,,,,https://biolit.fr/wp-content/uploads/2023/07/Marthasterias glacialis_35.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62277,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-21,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-21/,,,,https://biolit.fr/wp-content/uploads/2023/07/Melaraphes neritoides.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62278,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-22,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-22/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/2023/07/Mytilus edulis_22.PNG,,TRUE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62280,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-23,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-23/,,,,https://biolit.fr/wp-content/uploads/2023/07/Ocenebra erinaceus_9.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62282,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-24,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-24/,,,,https://biolit.fr/wp-content/uploads/2023/07/Pachygrapsus marmoratus_15.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62284,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-25,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-25/,,,,https://biolit.fr/wp-content/uploads/2023/07/palaemon elegans_0.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62285,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-26,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-26/,,,,https://biolit.fr/wp-content/uploads/2023/07/Phorcus lineatus_11.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62287,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-27,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-27/,,,,https://biolit.fr/wp-content/uploads/2023/07/Porcellana platycheles_30.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62289,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-28,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-28/,,,,https://biolit.fr/wp-content/uploads/2023/07/Sargassum sp.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62290,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-29,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-29/,,,,https://biolit.fr/wp-content/uploads/2023/07/Steromphala umbilicalis_7.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62292,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-30,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-30/,,,,https://biolit.fr/wp-content/uploads/2023/07/Terpios gelatinosus_1.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62294,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-31,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-31/,,,,https://biolit.fr/wp-content/uploads/2023/07/Venerupis corrugata_2.PNG,,FALSE, +N1,62333,sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b,https://biolit.fr/sorties/sortie-f726ab9d-3eb6-4d76-8513-db822ca1215b/,Roman,,6/22/2023 0:00,12.0000000,13.0000000,47.533159000000,-3.146366000000,,St-Pierre Quiberon,62296,observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-32,https://biolit.fr/observations/observation-f726ab9d-3eb6-4d76-8513-db822ca1215b-32/,,,,https://biolit.fr/wp-content/uploads/2023/07/Xantho hydrophilus_25.PNG,,FALSE, +N1,62334,sortie-99d6eb06-16df-4817-bf52-2990d86d563c,https://biolit.fr/sorties/sortie-99d6eb06-16df-4817-bf52-2990d86d563c/,Fanfan,,6/30/2023 0:00,9.0:15,10.0:15,43.462156000000,-1.577735000000,,"Plage La Milady, Biarritz 64200",62298,observation-99d6eb06-16df-4817-bf52-2990d86d563c,https://biolit.fr/observations/observation-99d6eb06-16df-4817-bf52-2990d86d563c/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0873-scaled.jpeg,,TRUE, +N1,62334,sortie-99d6eb06-16df-4817-bf52-2990d86d563c,https://biolit.fr/sorties/sortie-99d6eb06-16df-4817-bf52-2990d86d563c/,Fanfan,,6/30/2023 0:00,9.0:15,10.0:15,43.462156000000,-1.577735000000,,"Plage La Milady, Biarritz 64200",62300,observation-99d6eb06-16df-4817-bf52-2990d86d563c-2,https://biolit.fr/observations/observation-99d6eb06-16df-4817-bf52-2990d86d563c-2/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0875-scaled.jpeg,,FALSE, +N1,62334,sortie-99d6eb06-16df-4817-bf52-2990d86d563c,https://biolit.fr/sorties/sortie-99d6eb06-16df-4817-bf52-2990d86d563c/,Fanfan,,6/30/2023 0:00,9.0:15,10.0:15,43.462156000000,-1.577735000000,,"Plage La Milady, Biarritz 64200",62302,observation-99d6eb06-16df-4817-bf52-2990d86d563c-3,https://biolit.fr/observations/observation-99d6eb06-16df-4817-bf52-2990d86d563c-3/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0876-scaled.jpeg,,FALSE, +N1,62334,sortie-99d6eb06-16df-4817-bf52-2990d86d563c,https://biolit.fr/sorties/sortie-99d6eb06-16df-4817-bf52-2990d86d563c/,Fanfan,,6/30/2023 0:00,9.0:15,10.0:15,43.462156000000,-1.577735000000,,"Plage La Milady, Biarritz 64200",62304,observation-99d6eb06-16df-4817-bf52-2990d86d563c-4,https://biolit.fr/observations/observation-99d6eb06-16df-4817-bf52-2990d86d563c-4/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0877-scaled.jpeg,,FALSE, +N1,62334,sortie-99d6eb06-16df-4817-bf52-2990d86d563c,https://biolit.fr/sorties/sortie-99d6eb06-16df-4817-bf52-2990d86d563c/,Fanfan,,6/30/2023 0:00,9.0:15,10.0:15,43.462156000000,-1.577735000000,,"Plage La Milady, Biarritz 64200",62306,observation-99d6eb06-16df-4817-bf52-2990d86d563c-5,https://biolit.fr/observations/observation-99d6eb06-16df-4817-bf52-2990d86d563c-5/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0884-scaled.jpeg,,TRUE, +N1,62334,sortie-99d6eb06-16df-4817-bf52-2990d86d563c,https://biolit.fr/sorties/sortie-99d6eb06-16df-4817-bf52-2990d86d563c/,Fanfan,,6/30/2023 0:00,9.0:15,10.0:15,43.462156000000,-1.577735000000,,"Plage La Milady, Biarritz 64200",62308,observation-99d6eb06-16df-4817-bf52-2990d86d563c-6,https://biolit.fr/observations/observation-99d6eb06-16df-4817-bf52-2990d86d563c-6/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0886-scaled.jpeg,,FALSE, +N1,62334,sortie-99d6eb06-16df-4817-bf52-2990d86d563c,https://biolit.fr/sorties/sortie-99d6eb06-16df-4817-bf52-2990d86d563c/,Fanfan,,6/30/2023 0:00,9.0:15,10.0:15,43.462156000000,-1.577735000000,,"Plage La Milady, Biarritz 64200",62310,observation-99d6eb06-16df-4817-bf52-2990d86d563c-7,https://biolit.fr/observations/observation-99d6eb06-16df-4817-bf52-2990d86d563c-7/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0896-scaled.jpeg,,FALSE, +N1,62334,sortie-99d6eb06-16df-4817-bf52-2990d86d563c,https://biolit.fr/sorties/sortie-99d6eb06-16df-4817-bf52-2990d86d563c/,Fanfan,,6/30/2023 0:00,9.0:15,10.0:15,43.462156000000,-1.577735000000,,"Plage La Milady, Biarritz 64200",62312,observation-99d6eb06-16df-4817-bf52-2990d86d563c-8,https://biolit.fr/observations/observation-99d6eb06-16df-4817-bf52-2990d86d563c-8/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0897-scaled.jpeg,,FALSE, +N1,62334,sortie-99d6eb06-16df-4817-bf52-2990d86d563c,https://biolit.fr/sorties/sortie-99d6eb06-16df-4817-bf52-2990d86d563c/,Fanfan,,6/30/2023 0:00,9.0:15,10.0:15,43.462156000000,-1.577735000000,,"Plage La Milady, Biarritz 64200",62314,observation-99d6eb06-16df-4817-bf52-2990d86d563c-9,https://biolit.fr/observations/observation-99d6eb06-16df-4817-bf52-2990d86d563c-9/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0899-scaled.jpeg,,FALSE, +N1,62334,sortie-99d6eb06-16df-4817-bf52-2990d86d563c,https://biolit.fr/sorties/sortie-99d6eb06-16df-4817-bf52-2990d86d563c/,Fanfan,,6/30/2023 0:00,9.0:15,10.0:15,43.462156000000,-1.577735000000,,"Plage La Milady, Biarritz 64200",62318,observation-99d6eb06-16df-4817-bf52-2990d86d563c-11,https://biolit.fr/observations/observation-99d6eb06-16df-4817-bf52-2990d86d563c-11/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0906-scaled.jpeg,,FALSE, +N1,62334,sortie-99d6eb06-16df-4817-bf52-2990d86d563c,https://biolit.fr/sorties/sortie-99d6eb06-16df-4817-bf52-2990d86d563c/,Fanfan,,6/30/2023 0:00,9.0:15,10.0:15,43.462156000000,-1.577735000000,,"Plage La Milady, Biarritz 64200",62320,observation-99d6eb06-16df-4817-bf52-2990d86d563c-12,https://biolit.fr/observations/observation-99d6eb06-16df-4817-bf52-2990d86d563c-12/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0915-scaled.jpeg,,FALSE, +N1,62334,sortie-99d6eb06-16df-4817-bf52-2990d86d563c,https://biolit.fr/sorties/sortie-99d6eb06-16df-4817-bf52-2990d86d563c/,Fanfan,,6/30/2023 0:00,9.0:15,10.0:15,43.462156000000,-1.577735000000,,"Plage La Milady, Biarritz 64200",62322,observation-99d6eb06-16df-4817-bf52-2990d86d563c-13,https://biolit.fr/observations/observation-99d6eb06-16df-4817-bf52-2990d86d563c-13/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0916-scaled.jpeg,,TRUE, +N1,62334,sortie-99d6eb06-16df-4817-bf52-2990d86d563c,https://biolit.fr/sorties/sortie-99d6eb06-16df-4817-bf52-2990d86d563c/,Fanfan,,6/30/2023 0:00,9.0:15,10.0:15,43.462156000000,-1.577735000000,,"Plage La Milady, Biarritz 64200",62324,observation-99d6eb06-16df-4817-bf52-2990d86d563c-14,https://biolit.fr/observations/observation-99d6eb06-16df-4817-bf52-2990d86d563c-14/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0888-scaled.jpeg,,FALSE, +N1,62334,sortie-99d6eb06-16df-4817-bf52-2990d86d563c,https://biolit.fr/sorties/sortie-99d6eb06-16df-4817-bf52-2990d86d563c/,Fanfan,,6/30/2023 0:00,9.0:15,10.0:15,43.462156000000,-1.577735000000,,"Plage La Milady, Biarritz 64200",62326,observation-99d6eb06-16df-4817-bf52-2990d86d563c-15,https://biolit.fr/observations/observation-99d6eb06-16df-4817-bf52-2990d86d563c-15/,,,,https://biolit.fr/wp-content/uploads/2023/07/IMG_0894-scaled.jpeg,,FALSE, +N1,62334,sortie-99d6eb06-16df-4817-bf52-2990d86d563c,https://biolit.fr/sorties/sortie-99d6eb06-16df-4817-bf52-2990d86d563c/,Fanfan,,6/30/2023 0:00,9.0:15,10.0:15,43.462156000000,-1.577735000000,,"Plage La Milady, Biarritz 64200",62328,observation-99d6eb06-16df-4817-bf52-2990d86d563c-16,https://biolit.fr/observations/observation-99d6eb06-16df-4817-bf52-2990d86d563c-16/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2023/07/IMG_0911-scaled.jpeg,,TRUE, +N1,62431,Sortie #62431,https://biolit.fr/sorties/sortie-62431/,Roman,https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Aiptasia-couchii.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Anemonia-viridis.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Asterias-rubens.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Blennie-sp.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Carcinus-maenas.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Cereus-pedunculatus.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Ciliata-mustela.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Eolidien-sp.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Gobie-sp.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Lipophrys-pholis.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Nucella-lapillus.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/ophiothrix-fragilis.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Palaemons-elegans.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Psammechinus-miliaris.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Ruditapes-decussatus.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Pachygrapsus-marmoratus.png,07/11/2023 15:15,0.0000000,1.0000000,47.703412000000,-3.34986400000000,,Port-Louis,62433,Observation #62433,https://biolit.fr/observations/observation-62433/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Aiptasia-couchii.png,,TRUE,Identifiable +N1,62431,Sortie #62431,https://biolit.fr/sorties/sortie-62431/,Roman,https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Aiptasia-couchii.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Anemonia-viridis.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Asterias-rubens.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Blennie-sp.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Carcinus-maenas.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Cereus-pedunculatus.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Ciliata-mustela.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Eolidien-sp.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Gobie-sp.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Lipophrys-pholis.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Nucella-lapillus.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/ophiothrix-fragilis.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Palaemons-elegans.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Psammechinus-miliaris.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Ruditapes-decussatus.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Pachygrapsus-marmoratus.png,07/11/2023 15:15,0.0000000,1.0000000,47.703412000000,-3.34986400000000,,Port-Louis,62434,Observation #62434,https://biolit.fr/observations/observation-62434/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Anemonia-viridis.png,,TRUE,Identifiable +N1,62452,Sortie #62452,https://biolit.fr/sorties/sortie-62452/,Roman,https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Aiptasia-couchii-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Anemonia-viridis-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Asterias-rubens-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Blennie-sp-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Carcinus-maenas-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Cereus-pedunculatus-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Ciliata-mustela-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Eolidien-sp-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Gobie-sp-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Lipophrys-pholis-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Nucella-lapillus-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/ophiothrix-fragilis-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Pachygrapsus-marmoratus-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Palaemons-elegans-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Psammechinus-miliaris-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Ruditapes-decussatus-1.png,07/11/2023 15:29,0.0000000,1.0000000,47.7042330000000,-3.34834100000000,,Port-Louis,,,,,,,,,, +N1,62484,Sortie #62484,https://biolit.fr/sorties/sortie-62484/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100169-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100179-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100178-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100166-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100143-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100144-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100151-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100112-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100107-scaled.jpg,07/12/2023 11:26,16.0000000,17.0000000,46.1448610,-1.3150460,,Sainte Marie de Ré,,,,,,,,,, +N1,62492,Sortie #62492,https://biolit.fr/sorties/sortie-62492/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/07/1686834843801-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/07/Capsule-raie.png | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/07/capsule-rousette.png | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/07/IMG_20230606_144812-scaled.jpg,07/12/2023 12:09,14.0000000,16.0000000,-65.7811490000000,1003.53515600,,Dinard,,,,,,,,,, +N1,62498,Sortie #62498,https://biolit.fr/sorties/sortie-62498/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/07/1686834843801-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/07/Capsule-raie-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/07/capsule-rousette-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/07/IMG_20230606_144812-1-scaled.jpg,07/12/2023 14:23,14.0000000,16.0000000,47.8898270000000,-0.0585930000000000,,Agathe,,,,,,,,,, +N1,62502,Sortie #62502,https://biolit.fr/sorties/sortie-62502/,CORBINAUD Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/9f32844fd00d988738af1b10346307ea/2023/07/IMG_20230712_104118668-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f32844fd00d988738af1b10346307ea/2023/07/Oeufs-de-scaled.jpg,07/12/2023 14:32,10.0000000,11.0000000,43.116369,3.128896,,Plage de Mateille - Aude,62504,Observation #62504,https://biolit.fr/observations/observation-62504/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9f32844fd00d988738af1b10346307ea/2023/07/IMG_20230712_104118668-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f32844fd00d988738af1b10346307ea/2023/07/Oeufs-de-scaled.jpg,,,Ne sais pas +N1,62502,Sortie #62502,https://biolit.fr/sorties/sortie-62502/,CORBINAUD Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/9f32844fd00d988738af1b10346307ea/2023/07/IMG_20230712_104118668-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f32844fd00d988738af1b10346307ea/2023/07/Oeufs-de-scaled.jpg,07/12/2023 14:32,10.0000000,11.0000000,43.116369,3.128896,,Plage de Mateille - Aude,62505,Observation #62505,https://biolit.fr/observations/observation-62505/,Stramonita haemastoma,Ponte de bouche de sang,,https://biolit.fr/wp-content/uploads/jet-form-builder/9f32844fd00d988738af1b10346307ea/2023/07/Oeufs-de-scaled.jpg,,TRUE,Ne sais pas +N1,62509,Sortie #62509,https://biolit.fr/sorties/sortie-62509/,LPO Occitanie - Aude,https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2023/07/IMG20230712104024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2023/07/IMG20230712103958-scaled.jpg,07/12/2023 17:21,9.0000000,12.0000000,43.1180410000000,3.13100500000000,LPO Occitanie (Dt Aude),Gruissan plage de Mateille,62511,Observation #62511,https://biolit.fr/observations/observation-62511/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2023/07/IMG20230712104024-scaled.jpg,,TRUE,Identifiable +N1,62509,Sortie #62509,https://biolit.fr/sorties/sortie-62509/,LPO Occitanie - Aude,https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2023/07/IMG20230712104024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2023/07/IMG20230712103958-scaled.jpg,07/12/2023 17:21,9.0000000,12.0000000,43.1180410000000,3.13100500000000,LPO Occitanie (Dt Aude),Gruissan plage de Mateille,62512,Observation #62512,https://biolit.fr/observations/observation-62512/,Callinectes sapidus,Crabe bleu américain,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2023/07/IMG20230712103958-scaled.jpg,,TRUE,Identifiable +N1,62514,Sortie #62514,https://biolit.fr/sorties/sortie-62514/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100161-scaled.jpg,07/12/2023 18:54,16.0000000,17.0000000,46.1442320000000,-1.31567400000000,Observe la nature,Sainte Marie de Ré,,,,,,,,,, +N1,62518,Sortie #62518,https://biolit.fr/sorties/sortie-62518/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230710_163407-scaled.jpg,07/12/2023 19:16,16.0000000,17.0000000,46.1508220,-1.301411,,Sainte Marie de Ré,62520,Observation #62520,https://biolit.fr/observations/observation-62520/,Sepia officinalis,Seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230710_163407-scaled.jpg,,TRUE,Identifiable +N1,62533,Sortie #62533,https://biolit.fr/sorties/sortie-62533/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060033-scaled.jpg,7/13/2023 9:51,10.0000000,12.0000000,43.2840370000000,5.31629700000000,,Plage St Estève - Frioul,62535,Observation #62535,https://biolit.fr/observations/observation-62535/,Caulerpa cylindracea,Caulerpe cylindracée,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060015-scaled.jpg,,TRUE,Identifiable +N1,62533,Sortie #62533,https://biolit.fr/sorties/sortie-62533/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060033-scaled.jpg,7/13/2023 9:51,10.0000000,12.0000000,43.2840370000000,5.31629700000000,,Plage St Estève - Frioul,62536,Observation #62536,https://biolit.fr/observations/observation-62536/,Acetabularia acetabulum,Acétabulaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060018-scaled.jpg,,TRUE,Identifiable +N1,62533,Sortie #62533,https://biolit.fr/sorties/sortie-62533/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060033-scaled.jpg,7/13/2023 9:51,10.0000000,12.0000000,43.2840370000000,5.31629700000000,,Plage St Estève - Frioul,62537,Observation #62537,https://biolit.fr/observations/observation-62537/,Diplodus vulgaris,Sar à tête noire,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060010-scaled.jpg,,TRUE,Identifiable +N1,62550,Sortie #62550,https://biolit.fr/sorties/sortie-62550/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060021-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060022-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060023-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060025-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060028-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060031-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060033-1-scaled.jpg,7/13/2023 10:04,10.0000000,12.0000000,43.2839210000000,5.31616400000000,,Plage St Estève - Frioul,62552,Observation #62552,https://biolit.fr/observations/observation-62552/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060031-1-scaled.jpg,,TRUE,Identifiable +N1,62550,Sortie #62550,https://biolit.fr/sorties/sortie-62550/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060021-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060022-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060023-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060025-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060028-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060031-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060033-1-scaled.jpg,7/13/2023 10:04,10.0000000,12.0000000,43.2839210000000,5.31616400000000,,Plage St Estève - Frioul,62553,Observation #62553,https://biolit.fr/observations/observation-62553/,Tripterygion tripteronotum,Triptérygion rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060028-1-scaled.jpg,,TRUE,Identifiable +N1,62550,Sortie #62550,https://biolit.fr/sorties/sortie-62550/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060021-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060022-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060023-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060025-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060028-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060031-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060033-1-scaled.jpg,7/13/2023 10:04,10.0000000,12.0000000,43.2839210000000,5.31616400000000,,Plage St Estève - Frioul,62554,Observation #62554,https://biolit.fr/observations/observation-62554/,Parablennius incognitus,Blennie diabolo,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060033-1-scaled.jpg,,TRUE,Identifiable +N1,62550,Sortie #62550,https://biolit.fr/sorties/sortie-62550/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060021-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060022-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060023-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060025-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060028-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060031-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060033-1-scaled.jpg,7/13/2023 10:04,10.0000000,12.0000000,43.2839210000000,5.31616400000000,,Plage St Estève - Frioul,62555,Observation #62555,https://biolit.fr/observations/observation-62555/,Tripterygion tripteronotum,Triptérygion rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060023-1-scaled.jpg,,TRUE,Identifiable +N1,62550,Sortie #62550,https://biolit.fr/sorties/sortie-62550/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060021-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060022-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060023-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060025-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060028-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060031-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060033-1-scaled.jpg,7/13/2023 10:04,10.0000000,12.0000000,43.2839210000000,5.31616400000000,,Plage St Estève - Frioul,62556,Observation #62556,https://biolit.fr/observations/observation-62556/,Jania rubens,Janie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060026-scaled.jpg,,TRUE,Identifiable +N1,62558,Sortie #62558,https://biolit.fr/sorties/sortie-62558/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060019-1-scaled.jpg,7/13/2023 10:45,10.0000000,12.0000000,43.2841050000000,5.31626000000000,,Plage St Estève - Frioul,62560,Observation #62560,https://biolit.fr/observations/observation-62560/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/P7060019-1-scaled.jpg,,FALSE,Identifiable +N1,62569,Sortie #62569,https://biolit.fr/sorties/sortie-62569/,divers@ecrivez-moi.com,https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-04-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-05-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-06-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-07-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-08-scaled.jpg,7/14/2023 19:00,16.0:25,17.0000000,47.7260210000000,-3.3757210000000,,Anse Kermélo,,,,,,,,,, +N1,62590,Sortie #62590,https://biolit.fr/sorties/sortie-62590/,divers@ecrivez-moi.com,https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-08-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-09-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-10-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-11-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-12-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-13-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-14-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-15-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-16-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-17-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-18-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-19-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-20-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-21-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-22-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-23-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-24-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-25-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-26-scaled.jpg,7/14/2023 19:05,16.0:25,17.0000000,47.7260210000000,-3.3757210000000,,Anse Kermélo,62593,Observation #62593,https://biolit.fr/observations/observation-62593/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-08-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-09-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-10-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-11-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-12-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-13-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-14-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-15-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-16-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-17-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-18-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-19-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-20-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-21-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-22-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-23-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-24-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-25-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f71491beeb0cd6da60e28913c3e3c396/2023/07/2023-05-27-Kermelo-Kernevel-26-scaled.jpg,,,Identifiable +N1,62597,Sortie #62597,https://biolit.fr/sorties/sortie-62597/,PHILIPPE patrice,https://biolit.fr/wp-content/uploads/jet-form-builder/8dc8c52ad0aa2c4f3626c2e6d351475d/2023/07/20230715_102513-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8dc8c52ad0aa2c4f3626c2e6d351475d/2023/07/20230715_103133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8dc8c52ad0aa2c4f3626c2e6d351475d/2023/07/20230715_102124-scaled.jpg,7/16/2023 8:24,11.0000000,12.0:19,49.6960020000000,-1.46922600000000,,Cap Lévi 50,62599,Observation #62599,https://biolit.fr/observations/observation-62599/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8dc8c52ad0aa2c4f3626c2e6d351475d/2023/07/20230715_102513-scaled.jpg,,,Identifiable +N1,62597,Sortie #62597,https://biolit.fr/sorties/sortie-62597/,PHILIPPE patrice,https://biolit.fr/wp-content/uploads/jet-form-builder/8dc8c52ad0aa2c4f3626c2e6d351475d/2023/07/20230715_102513-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8dc8c52ad0aa2c4f3626c2e6d351475d/2023/07/20230715_103133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8dc8c52ad0aa2c4f3626c2e6d351475d/2023/07/20230715_102124-scaled.jpg,7/16/2023 8:24,11.0000000,12.0:19,49.6960020000000,-1.46922600000000,,Cap Lévi 50,62600,Observation #62600,https://biolit.fr/observations/observation-62600/,Phoca vitulina,Phoque commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/8dc8c52ad0aa2c4f3626c2e6d351475d/2023/07/20230715_102513-scaled.jpg,,,Identifiable +N1,62602,Sortie #62602,https://biolit.fr/sorties/sortie-62602/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/07/P1030138-scaled.jpg,7/17/2023 11:43,13.0000000,14.0000000,47.5543150000000,-2.87695900000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Kerver,,,,,,,,,, +N1,62605,Sortie #62605,https://biolit.fr/sorties/sortie-62605/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/07/P1030143-scaled.jpg,7/17/2023 12:09,13.0000000,14.0000000,47.5536130000000,-2.87740900000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Kerver,,,,,,,,,, +N1,62618,Sortie #62618,https://biolit.fr/sorties/sortie-62618/,LOMBARD KARINE,https://biolit.fr/wp-content/uploads/jet-form-builder/d790eddd9bd8e0b5f0812bf0ddce234c/2023/07/16897430795028589425282209831666-scaled.jpg,7/19/2023 7:05,7.000004,7.000004,41.9875370,3.2025540,Planète Mer,Plats,62620,Observation #62620,https://biolit.fr/observations/observation-62620/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d790eddd9bd8e0b5f0812bf0ddce234c/2023/07/16897430795028589425282209831666-scaled.jpg,,,Identifiable +N1,62622,Sortie #62622,https://biolit.fr/sorties/sortie-62622/,LOMBARD KARINE,https://biolit.fr/wp-content/uploads/jet-form-builder/d790eddd9bd8e0b5f0812bf0ddce234c/2023/07/20230719_070803-scaled.jpg,7/19/2023 7:09,7.000008,7.000008,41.9834350,3.2050710,Planète Mer,Plats,,,,,,,,,, +N1,62626,Sortie #62626,https://biolit.fr/sorties/sortie-62626/,LOMBARD KARINE,https://biolit.fr/wp-content/uploads/jet-form-builder/d790eddd9bd8e0b5f0812bf0ddce234c/2023/07/20230719_071133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d790eddd9bd8e0b5f0812bf0ddce234c/2023/07/20230719_070803-1-scaled.jpg,7/19/2023 7:13,6.0:12,7.0:12,41.980605,3.2026560,Planète Mer,Plats,62628,Observation #62628,https://biolit.fr/observations/observation-62628/,Pancratium maritimum,Lis de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/d790eddd9bd8e0b5f0812bf0ddce234c/2023/07/20230719_070803-1-scaled.jpg,,TRUE,Identifiable +N1,62626,Sortie #62626,https://biolit.fr/sorties/sortie-62626/,LOMBARD KARINE,https://biolit.fr/wp-content/uploads/jet-form-builder/d790eddd9bd8e0b5f0812bf0ddce234c/2023/07/20230719_071133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d790eddd9bd8e0b5f0812bf0ddce234c/2023/07/20230719_070803-1-scaled.jpg,7/19/2023 7:13,6.0:12,7.0:12,41.980605,3.2026560,Planète Mer,Plats,62629,Observation #62629,https://biolit.fr/observations/observation-62629/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d790eddd9bd8e0b5f0812bf0ddce234c/2023/07/20230719_071133-scaled.jpg,,,Identifiable +N1,62639,Sortie #62639,https://biolit.fr/sorties/sortie-62639/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/DSC_0023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/DSC_0050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/DSC_0064-scaled.jpg,7/19/2023 12:10,10.0000000,12.0000000,43.2840020000000,5.31585500000000,,Plage St Estève - Frioul,62643,Observation #62643,https://biolit.fr/observations/observation-62643/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/DSC_0050-scaled.jpg,,,Ne sais pas +N1,62645,Sortie #62645,https://biolit.fr/sorties/sortie-62645/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_1500031-scaled.jpg,7/19/2023 12:30,14.0000000,16.0000000,48.5579090000000,-2.72912100000000,Observe la nature,Plage de Nouëlles Plérin,62647,Observation #62647,https://biolit.fr/observations/observation-62647/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_1500031-scaled.jpg,,TRUE,Identifiable +N1,62651,Sortie #62651,https://biolit.fr/sorties/sortie-62651/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/DSC_0023-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/DSC_0044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/DSC_0064-1-scaled.jpg,7/19/2023 12:36,10.0000000,12.0000000,43.2841900000000,5.31570900000000,,Plage St Estève - Frioul,,,,,,,,,, +N1,62657,Sortie #62657,https://biolit.fr/sorties/sortie-62657/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/DSC_0023-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/DSC_0064-2-scaled.jpg,7/19/2023 12:40,10.0000000,12.0000000,43.2841650000000,5.31598400000000,,Plage St Estève - Frioul,62667,Observation #62667,https://biolit.fr/observations/observation-62667/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/DSC_0023-2-scaled.jpg,,,Ne sais pas +N1,62665,Sortie #62665,https://biolit.fr/sorties/sortie-62665/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_150522-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_150008-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_150003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_145713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_145700-scaled.jpg,7/19/2023 12:41,14.000001,16.0000000,48.5573840000000,-2.72747100000000,Observe la nature,Plage de Nouëlles Plérin,62668,Observation #62668,https://biolit.fr/observations/observation-62668/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_150522-scaled.jpg,,TRUE,Identifiable +N1,62665,Sortie #62665,https://biolit.fr/sorties/sortie-62665/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_150522-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_150008-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_150003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_145713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_145700-scaled.jpg,7/19/2023 12:41,14.000001,16.0000000,48.5573840000000,-2.72747100000000,Observe la nature,Plage de Nouëlles Plérin,62669,Observation #62669,https://biolit.fr/observations/observation-62669/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_150008-scaled.jpg,,TRUE,Identifiable +N1,62665,Sortie #62665,https://biolit.fr/sorties/sortie-62665/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_150522-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_150008-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_150003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_145713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_145700-scaled.jpg,7/19/2023 12:41,14.000001,16.0000000,48.5573840000000,-2.72747100000000,Observe la nature,Plage de Nouëlles Plérin,62670,Observation #62670,https://biolit.fr/observations/observation-62670/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_150003-scaled.jpg,,TRUE,Identifiable +N1,62687,Sortie #62687,https://biolit.fr/sorties/sortie-62687/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/07/IMG_0067-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/07/IMG_0068-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/07/IMG_0069-scaled.jpg,7/19/2023 13:43,14.0000000,15.0000000,48.1641320000000,-1.62451200000000,Observatoire du Plancton,Dinard,,,,,,,,,, +N1,62719,Sortie #62719,https://biolit.fr/sorties/sortie-62719/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_1457131-scaled.jpg,7/19/2023 18:57,14.0000000,16.0000000,48.5576220000000,-2.72840000000000,Observe la nature,Plage de Nouëlles Plérin,62721,Observation #62721,https://biolit.fr/observations/observation-62721/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230718_1457131-scaled.jpg,,,Identifiable +N1,62729,Sortie #62729,https://biolit.fr/sorties/sortie-62729/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100166-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100143-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100150-scaled.jpg,7/19/2023 19:19,16.0000000,17.0000000,46.1441380000000,-1.31525500000000,Observe la nature,Sainte Marie de Ré,62731,Observation #62731,https://biolit.fr/observations/observation-62731/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100166-1-scaled.jpg,,TRUE,Identifiable +N1,62729,Sortie #62729,https://biolit.fr/sorties/sortie-62729/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100166-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100143-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100150-scaled.jpg,7/19/2023 19:19,16.0000000,17.0000000,46.1441380000000,-1.31525500000000,Observe la nature,Sainte Marie de Ré,62732,Observation #62732,https://biolit.fr/observations/observation-62732/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100126-scaled.jpg,,,Identifiable +N1,62729,Sortie #62729,https://biolit.fr/sorties/sortie-62729/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100166-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100143-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100150-scaled.jpg,7/19/2023 19:19,16.0000000,17.0000000,46.1441380000000,-1.31525500000000,Observe la nature,Sainte Marie de Ré,62733,Observation #62733,https://biolit.fr/observations/observation-62733/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100179-1-scaled.jpg,,,Identifiable +N1,62729,Sortie #62729,https://biolit.fr/sorties/sortie-62729/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100166-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100143-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100150-scaled.jpg,7/19/2023 19:19,16.0000000,17.0000000,46.1441380000000,-1.31525500000000,Observe la nature,Sainte Marie de Ré,62734,Observation #62734,https://biolit.fr/observations/observation-62734/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100143-1-scaled.jpg,,TRUE,Identifiable +N1,62729,Sortie #62729,https://biolit.fr/sorties/sortie-62729/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100166-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100143-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100150-scaled.jpg,7/19/2023 19:19,16.0000000,17.0000000,46.1441380000000,-1.31525500000000,Observe la nature,Sainte Marie de Ré,62735,Observation #62735,https://biolit.fr/observations/observation-62735/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100150-scaled.jpg,,TRUE,Identifiable +N1,62737,Sortie #62737,https://biolit.fr/sorties/sortie-62737/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100169-1-scaled.jpg,7/19/2023 19:46,16.0000000,17.0000000,46.1441790000000,-1.31584200000000,Observe la nature,Sainte Marie de Ré,62739,Observation #62739,https://biolit.fr/observations/observation-62739/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/P7100169-1-scaled.jpg,,,Ne sais pas +N1,62742,Sortie #62742,https://biolit.fr/sorties/sortie-62742/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/07/IMG_0066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/07/IMG_0069-1-scaled.jpg,7/20/2023 9:27,14.0000000,16.0000000,45.9738060000000,0.981445000000000,Planète Mer (antenne Dinard),Dinard,,,,,,,,,, +N1,62745,Sortie #62745,https://biolit.fr/sorties/sortie-62745/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/07/IMG_0068-1-scaled.jpg,7/20/2023 9:29,14.0000000,16.0000000,48.6407950000000,-2.07305400000000,Planète Mer (antenne Dinard),Dinard,,,,,,,,,, +N1,62750,Sortie #62750,https://biolit.fr/sorties/sortie-62750/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/07/IMG_0068-2-scaled.jpg,7/20/2023 9:32,14.0000000,16.0000000,48.6413300000000,-2.07352600000000,Planète Mer (antenne Dinard),Dinard,62752,Observation #62752,https://biolit.fr/observations/observation-62752/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/07/IMG_0068-2-scaled.jpg,,TRUE,Identifiable +N1,62763,Sortie #62763,https://biolit.fr/sorties/sortie-62763/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/DSC_0055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/DSC_0064-3-scaled.jpg,7/20/2023 12:05,10.0000000,12.0000000,43.2841210000000,5.31604400000000,,Plage St Estève - Frioul,62765,Observation #62765,https://biolit.fr/observations/observation-62765/,Larus michahellis,Goéland leucophée,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2023/07/DSC_0064-3-scaled.jpg,,,Identifiable +N1,62785,Sortie #62785,https://biolit.fr/sorties/sortie-62785/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230721_153457-scaled.jpg,7/21/2023 16:05,2.0000000,16.0000000,48.8153560000000,-3.43043500000000,Observe la nature,Perros guirec plage de pors ar goret,62787,Observation #62787,https://biolit.fr/observations/observation-62787/,Sacculina carcini,Sacculine du crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230721_153457-scaled.jpg,,TRUE,Ne sais pas +N1,62790,Sortie #62790,https://biolit.fr/sorties/sortie-62790/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230721_150101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230721_144423-scaled.jpg,7/21/2023 16:12,14.0000000,16.0:11,48.8152890000000,-3.43023800000000,Observe la nature,Perros guirec pors ar goret,62792,Observation #62792,https://biolit.fr/observations/observation-62792/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230721_150101-scaled.jpg,,TRUE,Identifiable +N1,62790,Sortie #62790,https://biolit.fr/sorties/sortie-62790/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230721_150101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230721_144423-scaled.jpg,7/21/2023 16:12,14.0000000,16.0:11,48.8152890000000,-3.43023800000000,Observe la nature,Perros guirec pors ar goret,62793,Observation #62793,https://biolit.fr/observations/observation-62793/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230721_144423-scaled.jpg,,TRUE,Identifiable +N1,62810,Sortie #62810,https://biolit.fr/sorties/sortie-62810/,Roman,https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Aiptasia-couchii-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Anemonia-viridis-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Asterias-rubens-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Blennie-sp-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Carcinus-maenas-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Cereus-pedunculatus-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Ciliata-mustela-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Eolidien-sp-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Gobie-sp-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Lipophrys-pholis-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Nucella-lapillus-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/ophiothrix-fragilis-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Pachygrapsus-marmoratus-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Palaemons-elegans-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Psammechinus-miliaris-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Ruditapes-decussatus-2.png,7/22/2023 15:23,0.0000000,1.0000000,47.7060500,-3.3475170,,Port-Louis,,,,,,,,,, +N1,62813,Sortie #62813,https://biolit.fr/sorties/sortie-62813/,FREDO,https://biolit.fr/wp-content/uploads/jet-form-builder/a0ca353e17ab207e3ed1eb86c1428569/2023/07/DSCN9964.jpg,7/23/2023 7:11,16.0000000,16.0:15,43.1161340,6.0653570,,ILE DU LEVANT,62815,Observation #62815,https://biolit.fr/observations/observation-62815/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a0ca353e17ab207e3ed1eb86c1428569/2023/07/DSCN9964.jpg,,,Identifiable +N1,62818,Sortie #62818,https://biolit.fr/sorties/sortie-62818/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230722_152219-scaled.jpg,7/23/2023 19:33,14.0000000,16.0:45,48.8389090000000,-3.50280100000000,Observe la nature,Tregastel,62820,Observation #62820,https://biolit.fr/observations/observation-62820/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/07/20230722_152219-scaled.jpg,,TRUE,Identifiable +N1,62822,Sortie #62822,https://biolit.fr/sorties/sortie-62822/,Ducongé Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/471d1717eba75c469278dd35d4ddec38/2023/07/17848D5C-513A-4477-8D94-56D2054F4DE6-scaled.jpeg,7/24/2023 12:06,18.0000000,18.000001,46.0025320000000,-1.11619100000000,,Fouras,62824,Observation #62824,https://biolit.fr/observations/observation-62824/,Conger conger,Congre,,https://biolit.fr/wp-content/uploads/jet-form-builder/471d1717eba75c469278dd35d4ddec38/2023/07/17848D5C-513A-4477-8D94-56D2054F4DE6-scaled.jpeg,,TRUE,Ne sais pas +N1,62826,Sortie #62826,https://biolit.fr/sorties/sortie-62826/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/07/ALGUES-BRUNES.jpg,7/24/2023 12:08,10.0000000,11.0000000,47.5538490000000,-2.87893000000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),KERNERS,,,,,,,,,, +N1,62844,Sortie #62844,https://biolit.fr/sorties/sortie-62844/,Ducongé Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/471d1717eba75c469278dd35d4ddec38/2023/07/F65AE936-0968-4B9C-B7E3-944080F23C81-scaled.jpeg,7/25/2023 12:18,18.0000000,19.0000000,46.0024250000000,-1.12197900000000,,Fouras pointe de la Fumée,62846,Observation #62846,https://biolit.fr/observations/observation-62846/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/471d1717eba75c469278dd35d4ddec38/2023/07/F65AE936-0968-4B9C-B7E3-944080F23C81-scaled.jpeg,,,Identifiable +N1,62844,Sortie #62844,https://biolit.fr/sorties/sortie-62844/,Ducongé Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/471d1717eba75c469278dd35d4ddec38/2023/07/F65AE936-0968-4B9C-B7E3-944080F23C81-scaled.jpeg,7/25/2023 12:18,18.0000000,19.0000000,46.0024250000000,-1.12197900000000,,Fouras pointe de la Fumée,62847,Observation #62847,https://biolit.fr/observations/observation-62847/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/471d1717eba75c469278dd35d4ddec38/2023/07/F65AE936-0968-4B9C-B7E3-944080F23C81-scaled.jpeg,,TRUE,Identifiable +N1,62849,Sortie #62849,https://biolit.fr/sorties/sortie-62849/,Ducongé Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/471d1717eba75c469278dd35d4ddec38/2023/07/9B7AAE11-1A26-4CAF-B786-CA8538978951-scaled.jpeg,7/25/2023 12:30,18.0000000,19.0000000,46.0025930000000,-1.122408000000,,Fouras pointe de la Fumée,62851,Observation #62851,https://biolit.fr/observations/observation-62851/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/471d1717eba75c469278dd35d4ddec38/2023/07/9B7AAE11-1A26-4CAF-B786-CA8538978951-scaled.jpeg,,,Identifiable +N1,62875,Sortie #62875,https://biolit.fr/sorties/sortie-62875/,Ducongé Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/471d1717eba75c469278dd35d4ddec38/2023/07/B264F332-1E23-4839-92B9-CCD4346081E5-scaled.jpeg,7/27/2023 9:22,18.0000000,19.0000000,46.0027720000000,-1.12223600000000,,Fouras pointe de la Fumée,62877,Observation #62877,https://biolit.fr/observations/observation-62877/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/471d1717eba75c469278dd35d4ddec38/2023/07/B264F332-1E23-4839-92B9-CCD4346081E5-scaled.jpeg,,,Identifiable +N1,62880,Sortie #62880,https://biolit.fr/sorties/sortie-62880/,Ducongé Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/471d1717eba75c469278dd35d4ddec38/2023/07/D0D748A3-A9FC-4C2B-BE1A-C386F29388ED-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/471d1717eba75c469278dd35d4ddec38/2023/07/BAE73C57-042E-4948-8EBA-24EA2EA9D965-scaled.jpeg,7/27/2023 9:35,18.0000000,19.0000000,46.0022950000000,-1.12185000000000,,Fouras pointe de la Fumée,62882,Observation #62882,https://biolit.fr/observations/observation-62882/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/471d1717eba75c469278dd35d4ddec38/2023/07/D0D748A3-A9FC-4C2B-BE1A-C386F29388ED-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/471d1717eba75c469278dd35d4ddec38/2023/07/BAE73C57-042E-4948-8EBA-24EA2EA9D965-scaled.jpeg,,TRUE,Identifiable +N1,62903,Sortie #62903,https://biolit.fr/sorties/sortie-62903/,Roman,https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Aiptasia-couchii-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Anemonia-viridis-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Asterias-rubens-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Blennie-sp-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Carcinus-maenas-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Cereus-pedunculatus-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Ciliata-mustela-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Eolidien-sp-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Gobie-sp-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Lipophrys-pholis-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Nucella-lapillus-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/ophiothrix-fragilis-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Pachygrapsus-marmoratus-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Palaemons-elegans-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Psammechinus-miliaris-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Ruditapes-decussatus-3.png,7/27/2023 13:37,0.0000000,2.0000000,47.7035550000000,-3.34974600000000,,Port-Louis,63811,Observation #63811,https://biolit.fr/observations/observation-63811/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Asterias-rubens-3.png,,TRUE,Identifiable +N1,62926,Sortie #62926,https://biolit.fr/sorties/sortie-62926/,Roman,https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Acanthochitona-fascicularis.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Actinia-equina.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Actinia-fragacea.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Anemonia-viridis-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/ascophyllus-nodosum.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Asterina-gibbosa.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Botrylloides-spp.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/cancer-pagurus-et-sacculina.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Carcinus-maenas-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Cerastoderma-edule.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Cereus-pedunculatus-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Chthamalus-montagui.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Clibanarius-erytrhopus.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Corallina-officinalis.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Crassostrea-gigas.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Dynamene.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/eponge-sp.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Fucus-spiralis.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Lepidochitona-sp.png | https://biolit.fr/wp-content/uploads/jet-form-builder/98424b9b6893f5138ac7a237ef1865cb/2023/07/Lithophyllum-incrustans.png,7/27/2023 13:50,10.0:45,12.0000000,47.7028760000000,-3.35296500000000,Observatoire du Plancton,Port-Louis,,,,,,,,,, +N1,63027,Sortie #63027,https://biolit.fr/sorties/sortie-63027/,Lu Cio,https://biolit.fr/wp-content/uploads/jet-form-builder/e06dc1635dc2f3cfc38f06082ee65748/2023/07/Veillon-01-01-2023-Copie-2.jpg,7/28/2023 18:52,10.0000000,10.0:21,46.4328900000000,-1.65510500000000,,Le Veillon,63029,Observation #63029,https://biolit.fr/observations/observation-63029/,Hippocampus hippocampus,Hippocampe à museau court,,https://biolit.fr/wp-content/uploads/jet-form-builder/e06dc1635dc2f3cfc38f06082ee65748/2023/07/Veillon-01-01-2023-Copie-2.jpg,,TRUE,Identifiable +N1,63031,Sortie #63031,https://biolit.fr/sorties/sortie-63031/,Lu Cio,https://biolit.fr/wp-content/uploads/jet-form-builder/e06dc1635dc2f3cfc38f06082ee65748/2023/07/IMG_5648-2.jpg,7/28/2023 19:01,9.0000000,9.0000000,46.4328610000000,-1.6557490000000,,le Veillon,63033,Observation #63033,https://biolit.fr/observations/observation-63033/,Janthina janthina,Janthine commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/e06dc1635dc2f3cfc38f06082ee65748/2023/07/IMG_5648-2.jpg,,TRUE,Identifiable +N1,63048,Sortie #63048,https://biolit.fr/sorties/sortie-63048/,Techer Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/0598950d54fd0bdc239fcd4ad3c74bd3/2023/08/IMG_3733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/0598950d54fd0bdc239fcd4ad3c74bd3/2023/08/IMG_1900-scaled.jpeg,08/02/2023 9:38,16.0000000,16.0:53,46.0138710000000,-1.1700440000000,,Île d‘Aix,63050,Observation #63050,https://biolit.fr/observations/observation-63050/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0598950d54fd0bdc239fcd4ad3c74bd3/2023/08/IMG_3733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/0598950d54fd0bdc239fcd4ad3c74bd3/2023/08/IMG_1900-scaled.jpeg,,,Ne sais pas +N1,63048,Sortie #63048,https://biolit.fr/sorties/sortie-63048/,Techer Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/0598950d54fd0bdc239fcd4ad3c74bd3/2023/08/IMG_3733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/0598950d54fd0bdc239fcd4ad3c74bd3/2023/08/IMG_1900-scaled.jpeg,08/02/2023 9:38,16.0000000,16.0:53,46.0138710000000,-1.1700440000000,,Île d‘Aix,63051,Observation #63051,https://biolit.fr/observations/observation-63051/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0598950d54fd0bdc239fcd4ad3c74bd3/2023/08/IMG_1900-scaled.jpeg,,,Ne sais pas +N1,63060,Sortie #63060,https://biolit.fr/sorties/sortie-63060/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_113334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_113210-scaled.jpg,08/03/2023 11:37,11.0000000,11.0:35,46.0956710000000,-1.105693000000,,La sapinière,63062,Observation #63062,https://biolit.fr/observations/observation-63062/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_113334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_113210-scaled.jpg,,TRUE,Identifiable +N1,63060,Sortie #63060,https://biolit.fr/sorties/sortie-63060/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_113334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_113210-scaled.jpg,08/03/2023 11:37,11.0000000,11.0:35,46.0956710000000,-1.105693000000,,La sapinière,63063,Observation #63063,https://biolit.fr/observations/observation-63063/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_113210-scaled.jpg,,TRUE,Identifiable +N1,63068,Sortie #63068,https://biolit.fr/sorties/sortie-63068/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230730_100758-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230730_100825-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230730_100942-scaled.jpg,08/03/2023 14:48,9.0000000,11.0000000,48.7408480000000,-4.00689500000000,Observe la nature,Ile de Batz Plage à droite du débarcadère,,,,,,,,,, +N1,63075,Sortie #63075,https://biolit.fr/sorties/sortie-63075/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/P7220009-COMP.jpg,08/03/2023 17:23,14.0000000,16.0000000,48.8382730000000,-3.50289300000000,Observe la nature,Tregastel,63077,Observation #63077,https://biolit.fr/observations/observation-63077/,Onchidella celtica,Limace celtique,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/P7220009-COMP.jpg,,TRUE,Identifiable +N1,63081,Sortie #63081,https://biolit.fr/sorties/sortie-63081/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_114158-scaled.jpg,08/04/2023 8:42,11.0:26,11.0:34,46.0952920000000,-1.10395400000000,,La sapinière,63083,Observation #63083,https://biolit.fr/observations/observation-63083/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_114158-scaled.jpg,,TRUE,Identifiable +N1,63089,Sortie #63089,https://biolit.fr/sorties/sortie-63089/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131748-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_130923-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_125011-scaled.jpg,08/04/2023 9:00,12.0000000,12.0:55,46.110123000000,-1.13898600000000,,Pointe du chay,63091,Observation #63091,https://biolit.fr/observations/observation-63091/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131748-scaled.jpg,,TRUE,Ne sais pas +N1,63089,Sortie #63089,https://biolit.fr/sorties/sortie-63089/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131748-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_130923-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_125011-scaled.jpg,08/04/2023 9:00,12.0000000,12.0:55,46.110123000000,-1.13898600000000,,Pointe du chay,63092,Observation #63092,https://biolit.fr/observations/observation-63092/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131019-scaled.jpg,,TRUE,Identifiable +N1,63089,Sortie #63089,https://biolit.fr/sorties/sortie-63089/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131748-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_130923-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_125011-scaled.jpg,08/04/2023 9:00,12.0000000,12.0:55,46.110123000000,-1.13898600000000,,Pointe du chay,63093,Observation #63093,https://biolit.fr/observations/observation-63093/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_130923-scaled.jpg,,TRUE,Identifiable +N1,63089,Sortie #63089,https://biolit.fr/sorties/sortie-63089/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131748-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_130923-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_125011-scaled.jpg,08/04/2023 9:00,12.0000000,12.0:55,46.110123000000,-1.13898600000000,,Pointe du chay,63094,Observation #63094,https://biolit.fr/observations/observation-63094/,Ocenebra erinaceus,Ponte de Bigorneau perceur,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_125011-scaled.jpg,,TRUE,Identifiable +N1,63089,Sortie #63089,https://biolit.fr/sorties/sortie-63089/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131748-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_130923-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_125011-scaled.jpg,08/04/2023 9:00,12.0000000,12.0:55,46.110123000000,-1.13898600000000,,Pointe du chay,63095,Observation #63095,https://biolit.fr/observations/observation-63095/,Eunicella verrucosa,Gorgone verruqueuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230803_131022-scaled.jpg,,TRUE,Identifiable +N1,63206,Sortie #63206,https://biolit.fr/sorties/sortie-63206/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_131350-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_132548-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_133425-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_133655-scaled.webp,08/05/2023 12:24,11.0000000,13.0000000,47.8058650000000,-4.37390300000000,Observe la nature,Saint Guénolé Penmarc'h PK Chapelle ND de la joie,63208,Observation #63208,https://biolit.fr/observations/observation-63208/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_131350-scaled.webp,,TRUE,Identifiable +N1,63206,Sortie #63206,https://biolit.fr/sorties/sortie-63206/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_131350-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_132548-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_133425-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_133655-scaled.webp,08/05/2023 12:24,11.0000000,13.0000000,47.8058650000000,-4.37390300000000,Observe la nature,Saint Guénolé Penmarc'h PK Chapelle ND de la joie,63209,Observation #63209,https://biolit.fr/observations/observation-63209/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_132548-scaled.webp,,TRUE,Identifiable +N1,63206,Sortie #63206,https://biolit.fr/sorties/sortie-63206/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_131350-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_132548-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_133425-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_133655-scaled.webp,08/05/2023 12:24,11.0000000,13.0000000,47.8058650000000,-4.37390300000000,Observe la nature,Saint Guénolé Penmarc'h PK Chapelle ND de la joie,63210,Observation #63210,https://biolit.fr/observations/observation-63210/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_133425-scaled.webp,,TRUE,Identifiable +N1,63206,Sortie #63206,https://biolit.fr/sorties/sortie-63206/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_131350-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_132548-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_133425-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_133655-scaled.webp,08/05/2023 12:24,11.0000000,13.0000000,47.8058650000000,-4.37390300000000,Observe la nature,Saint Guénolé Penmarc'h PK Chapelle ND de la joie,63211,Observation #63211,https://biolit.fr/observations/observation-63211/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/20230804_133655-scaled.webp,,TRUE,Identifiable +N1,63214,Sortie #63214,https://biolit.fr/sorties/sortie-63214/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/P8040003-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/P8040005-scaled.webp,08/05/2023 12:45,11.0000000,13.0000000,47.8055330000000,-4.37347600000000,Observe la nature,Saint Guénolé Penmarc'h PK Chapelle ND de la joie,63216,Observation #63216,https://biolit.fr/observations/observation-63216/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/P8040003-scaled.webp,,TRUE,Identifiable +N1,63214,Sortie #63214,https://biolit.fr/sorties/sortie-63214/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/P8040003-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/P8040005-scaled.webp,08/05/2023 12:45,11.0000000,13.0000000,47.8055330000000,-4.37347600000000,Observe la nature,Saint Guénolé Penmarc'h PK Chapelle ND de la joie,63217,Observation #63217,https://biolit.fr/observations/observation-63217/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2023/08/P8040005-scaled.webp,,TRUE,Identifiable +N1,63224,Sortie #63224,https://biolit.fr/sorties/sortie-63224/,Fouquet Emeline,https://biolit.fr/wp-content/uploads/jet-form-builder/e6ef7e71b8cf75b88c3965131551ffb0/2023/08/20230807_150244-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/e6ef7e71b8cf75b88c3965131551ffb0/2023/08/20230807_150208-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/e6ef7e71b8cf75b88c3965131551ffb0/2023/08/20230807_150047-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/e6ef7e71b8cf75b88c3965131551ffb0/2023/08/20230807_150038-scaled.webp,08/07/2023 15:17,15.0000000,15.0:15,45.7036860000000,-1.197510000000,,Phare de la coubre,63226,Observation #63226,https://biolit.fr/observations/observation-63226/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/e6ef7e71b8cf75b88c3965131551ffb0/2023/08/20230807_150244-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/e6ef7e71b8cf75b88c3965131551ffb0/2023/08/20230807_150208-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/e6ef7e71b8cf75b88c3965131551ffb0/2023/08/20230807_150047-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/e6ef7e71b8cf75b88c3965131551ffb0/2023/08/20230807_150038-scaled.webp,,TRUE,Identifiable +N1,63263,Sortie #63263,https://biolit.fr/sorties/sortie-63263/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230811_102550-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230811_102532-scaled.webp,08/11/2023 15:49,10.0:15,10.0:25,46.2509110000000,-1.14125400000000,,Pointe saint Clement,63265,Observation #63265,https://biolit.fr/observations/observation-63265/,Urosalpinx cinerea,Perceur d'huîtres Atlantique,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230811_102532-scaled.webp,,TRUE,Identifiable +N1,63263,Sortie #63263,https://biolit.fr/sorties/sortie-63263/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230811_102550-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230811_102532-scaled.webp,08/11/2023 15:49,10.0:15,10.0:25,46.2509110000000,-1.14125400000000,,Pointe saint Clement,63266,Observation #63266,https://biolit.fr/observations/observation-63266/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/08/IMG_20230811_102550-scaled.webp,,,Identifiable +N1,63273,Sortie #63273,https://biolit.fr/sorties/sortie-63273/,barthe sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/B8A6AADB-C2AC-4E2A-B5ED-A0BA43B9D117-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/72668468-62C7-450F-AE6F-5A8272C4B8EB-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46042338-A547-4CD4-8769-E4D91240F417-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46769B0D-4861-495C-8C0F-D901F4D12F32-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/D514F1F3-02AD-4600-B09A-9BFEAA767E13-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/1ACB0C32-A9B7-4030-9C53-18E4A91EA4B6-scaled.webp,08/12/2023 14:41,14.0:39,15.0:39,43.8410870000000,-1.37420600000000,,Moliets et Maa,63275,Observation #63275,https://biolit.fr/observations/observation-63275/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/B8A6AADB-C2AC-4E2A-B5ED-A0BA43B9D117-scaled.webp,,,Ne sais pas +N1,63273,Sortie #63273,https://biolit.fr/sorties/sortie-63273/,barthe sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/B8A6AADB-C2AC-4E2A-B5ED-A0BA43B9D117-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/72668468-62C7-450F-AE6F-5A8272C4B8EB-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46042338-A547-4CD4-8769-E4D91240F417-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46769B0D-4861-495C-8C0F-D901F4D12F32-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/D514F1F3-02AD-4600-B09A-9BFEAA767E13-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/1ACB0C32-A9B7-4030-9C53-18E4A91EA4B6-scaled.webp,08/12/2023 14:41,14.0:39,15.0:39,43.8410870000000,-1.37420600000000,,Moliets et Maa,63276,Observation #63276,https://biolit.fr/observations/observation-63276/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/72668468-62C7-450F-AE6F-5A8272C4B8EB-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46042338-A547-4CD4-8769-E4D91240F417-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46769B0D-4861-495C-8C0F-D901F4D12F32-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/D514F1F3-02AD-4600-B09A-9BFEAA767E13-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/1ACB0C32-A9B7-4030-9C53-18E4A91EA4B6-scaled.webp,,,Ne sais pas +N1,63273,Sortie #63273,https://biolit.fr/sorties/sortie-63273/,barthe sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/B8A6AADB-C2AC-4E2A-B5ED-A0BA43B9D117-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/72668468-62C7-450F-AE6F-5A8272C4B8EB-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46042338-A547-4CD4-8769-E4D91240F417-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46769B0D-4861-495C-8C0F-D901F4D12F32-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/D514F1F3-02AD-4600-B09A-9BFEAA767E13-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/1ACB0C32-A9B7-4030-9C53-18E4A91EA4B6-scaled.webp,08/12/2023 14:41,14.0:39,15.0:39,43.8410870000000,-1.37420600000000,,Moliets et Maa,63277,Observation #63277,https://biolit.fr/observations/observation-63277/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46042338-A547-4CD4-8769-E4D91240F417-scaled.webp,,,Ne sais pas +N1,63273,Sortie #63273,https://biolit.fr/sorties/sortie-63273/,barthe sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/B8A6AADB-C2AC-4E2A-B5ED-A0BA43B9D117-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/72668468-62C7-450F-AE6F-5A8272C4B8EB-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46042338-A547-4CD4-8769-E4D91240F417-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46769B0D-4861-495C-8C0F-D901F4D12F32-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/D514F1F3-02AD-4600-B09A-9BFEAA767E13-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/1ACB0C32-A9B7-4030-9C53-18E4A91EA4B6-scaled.webp,08/12/2023 14:41,14.0:39,15.0:39,43.8410870000000,-1.37420600000000,,Moliets et Maa,63278,Observation #63278,https://biolit.fr/observations/observation-63278/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/1ACB0C32-A9B7-4030-9C53-18E4A91EA4B6-scaled.webp,,,Ne sais pas +N1,63273,Sortie #63273,https://biolit.fr/sorties/sortie-63273/,barthe sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/B8A6AADB-C2AC-4E2A-B5ED-A0BA43B9D117-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/72668468-62C7-450F-AE6F-5A8272C4B8EB-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46042338-A547-4CD4-8769-E4D91240F417-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46769B0D-4861-495C-8C0F-D901F4D12F32-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/D514F1F3-02AD-4600-B09A-9BFEAA767E13-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/1ACB0C32-A9B7-4030-9C53-18E4A91EA4B6-scaled.webp,08/12/2023 14:41,14.0:39,15.0:39,43.8410870000000,-1.37420600000000,,Moliets et Maa,63279,Observation #63279,https://biolit.fr/observations/observation-63279/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/D514F1F3-02AD-4600-B09A-9BFEAA767E13-scaled.webp,,,Ne sais pas +N1,63273,Sortie #63273,https://biolit.fr/sorties/sortie-63273/,barthe sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/B8A6AADB-C2AC-4E2A-B5ED-A0BA43B9D117-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/72668468-62C7-450F-AE6F-5A8272C4B8EB-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46042338-A547-4CD4-8769-E4D91240F417-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46769B0D-4861-495C-8C0F-D901F4D12F32-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/D514F1F3-02AD-4600-B09A-9BFEAA767E13-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/1ACB0C32-A9B7-4030-9C53-18E4A91EA4B6-scaled.webp,08/12/2023 14:41,14.0:39,15.0:39,43.8410870000000,-1.37420600000000,,Moliets et Maa,63280,Observation #63280,https://biolit.fr/observations/observation-63280/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46042338-A547-4CD4-8769-E4D91240F417-scaled.webp,,,Ne sais pas +N1,63273,Sortie #63273,https://biolit.fr/sorties/sortie-63273/,barthe sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/B8A6AADB-C2AC-4E2A-B5ED-A0BA43B9D117-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/72668468-62C7-450F-AE6F-5A8272C4B8EB-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46042338-A547-4CD4-8769-E4D91240F417-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46769B0D-4861-495C-8C0F-D901F4D12F32-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/D514F1F3-02AD-4600-B09A-9BFEAA767E13-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/1ACB0C32-A9B7-4030-9C53-18E4A91EA4B6-scaled.webp,08/12/2023 14:41,14.0:39,15.0:39,43.8410870000000,-1.37420600000000,,Moliets et Maa,63281,Observation #63281,https://biolit.fr/observations/observation-63281/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/46769B0D-4861-495C-8C0F-D901F4D12F32-scaled.webp,,, +N1,63285,Sortie #63285,https://biolit.fr/sorties/sortie-63285/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2023/08/1692019919639-scaled.webp,8/14/2023 15:35,10.0000000,12.0000000,42.53562,3.067062,,Criques de Porteils,,,,,,,,,, +N1,63288,Sortie #63288,https://biolit.fr/sorties/sortie-63288/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2023/08/1692019919639-1-scaled.webp,8/14/2023 15:41,10.0000000,12.0000000,42.5350250000000,3.064645000000,,Criques de Porteils - Argelès-sur-mer,63290,Observation #63290,https://biolit.fr/observations/observation-63290/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2023/08/1692019919639-1-scaled.webp,,,non-identifiable +N1,63292,Sortie #63292,https://biolit.fr/sorties/sortie-63292/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2023/08/1692019919639-2-scaled.webp,8/14/2023 15:45,10.0000000,12.0000000,42.5348020000000,3.06449900000000,,Criques de Porteils - Argelès-sur-mer,63294,Observation #63294,https://biolit.fr/observations/observation-63294/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2023/08/1692019919639-2-scaled.webp,,,non-identifiable +N1,63313,Sortie #63313,https://biolit.fr/sorties/sortie-63313/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2023/08/WhatsApp-Image-2023-08-14-at-14.05.18-jpeg.webp,8/18/2023 11:18,17.0000000,19.0000000,42.7666940000000,3.03857600000000,LABELBLEU,Plage de Torreilles,,,,,,,,,, +N1,63319,Sortie #63319,https://biolit.fr/sorties/sortie-63319/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2023/08/1692019919639-3-scaled.webp,8/22/2023 14:07,10.0000000,12.0000000,42.5350600000000,3.06445600000000,,Criques de Porteils - Argelès-sur-mer,63321,Observation #63321,https://biolit.fr/observations/observation-63321/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2023/08/1692019919639-3-scaled.webp,,,non-identifiable +N1,63324,Sortie #63324,https://biolit.fr/sorties/sortie-63324/,barthe sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/2A5693E0-6244-436C-BBB7-ACE9FE45A779-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/3864d160a47324d2503b81387e97908b/2023/08/78D50526-5239-4B96-8221-810CC43F0BE8-scaled.webp,8/25/2023 11:17,14.0:14,15.0:14,43.8409240000000,-1.37426700000000,,Étang blanc,,,,,,,,,, +N1,63340,Sortie #63340,https://biolit.fr/sorties/sortie-63340/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2023/08/observationBiolit2023-jpeg.webp,8/30/2023 9:17,17.0000000,17.0:45,42.7299250000000,3.03848800000000,LABELBLEU,Plage de Sainte-Marie-la-Mer,63342,Observation #63342,https://biolit.fr/observations/observation-63342/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2023/08/observationBiolit2023-jpeg.webp,,,non-identifiable +N1,63356,Sortie #63356,https://biolit.fr/sorties/sortie-63356/,Céline,https://biolit.fr/wp-content/uploads/jet-form-builder/a124436f212872e36bd7cc12bfe0fd03/2023/09/IMG_7401-scaled.webp,09/02/2023 13:09,13.000005,13.000008,43.202389000000,5.50921400000000,,Calanque port pin,,,,,,,,,, +N1,63359,Sortie #63359,https://biolit.fr/sorties/sortie-63359/,Céline,https://biolit.fr/wp-content/uploads/jet-form-builder/a124436f212872e36bd7cc12bfe0fd03/2023/09/IMG_7413-scaled.webp,09/02/2023 14:44,13.0:43,13.0000000,43.2015410000000,5.50784100000000,,Calanque port pin,63361,Observation #63361,https://biolit.fr/observations/observation-63361/,Chrysaora hysoscella,Méduse rayonnée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a124436f212872e36bd7cc12bfe0fd03/2023/09/IMG_7413-scaled.webp,,TRUE,Identifiable +N1,63374,Sortie #63374,https://biolit.fr/sorties/sortie-63374/,Belard Loïc,https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat1-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat2-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat3-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat4-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat5-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat6-scaled.webp,09/05/2023 11:19,9.0:45,15.0:45,47.4,-2.9667,,Ile de Houat,63376,Observation #63376,https://biolit.fr/observations/observation-63376/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat3-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat4-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat5-scaled.webp,,,Identifiable +N1,63374,Sortie #63374,https://biolit.fr/sorties/sortie-63374/,Belard Loïc,https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat1-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat2-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat3-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat4-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat5-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat6-scaled.webp,09/05/2023 11:19,9.0:45,15.0:45,47.4,-2.9667,,Ile de Houat,63377,Observation #63377,https://biolit.fr/observations/observation-63377/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat4-scaled.webp,,,Identifiable +N1,63374,Sortie #63374,https://biolit.fr/sorties/sortie-63374/,Belard Loïc,https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat1-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat2-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat3-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat4-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat5-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat6-scaled.webp,09/05/2023 11:19,9.0:45,15.0:45,47.4,-2.9667,,Ile de Houat,63378,Observation #63378,https://biolit.fr/observations/observation-63378/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat5-scaled.webp,,,Identifiable +N1,63374,Sortie #63374,https://biolit.fr/sorties/sortie-63374/,Belard Loïc,https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat1-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat2-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat3-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat4-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat5-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat6-scaled.webp,09/05/2023 11:19,9.0:45,15.0:45,47.4,-2.9667,,Ile de Houat,63379,Observation #63379,https://biolit.fr/observations/observation-63379/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat6-scaled.webp,,,Identifiable +N1,63374,Sortie #63374,https://biolit.fr/sorties/sortie-63374/,Belard Loïc,https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat1-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat2-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat3-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat4-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat5-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat6-scaled.webp,09/05/2023 11:19,9.0:45,15.0:45,47.4,-2.9667,,Ile de Houat,63380,Observation #63380,https://biolit.fr/observations/observation-63380/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat2-scaled.webp,,,Identifiable +N1,63374,Sortie #63374,https://biolit.fr/sorties/sortie-63374/,Belard Loïc,https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat1-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat2-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat3-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat4-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat5-scaled.webp | https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat6-scaled.webp,09/05/2023 11:19,9.0:45,15.0:45,47.4,-2.9667,,Ile de Houat,63381,Observation #63381,https://biolit.fr/observations/observation-63381/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/jet-form-builder/7808b20bb22508e54286144bb788a608/2023/09/photohouat1-scaled.webp,,,Identifiable +N1,63440,Sortie #63440,https://biolit.fr/sorties/sortie-63440/,Institut Marin du Seaquarium,https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/IMG_20230822_121230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094059812.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094116588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094140671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094131022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094138022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094107209-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094112479-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094134057-scaled.jpg,09/06/2023 14:50,9.0000000,11.0000000,43.5261170000000,4.13839100000000,Institut Marin du Seaquarium,Le Grau du Roi,63443,Observation #63443,https://biolit.fr/observations/observation-63443/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094134057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094107209-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094138022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094131022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094140671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094059812.MP_-scaled.jpg,,,Identifiable +N1,63440,Sortie #63440,https://biolit.fr/sorties/sortie-63440/,Institut Marin du Seaquarium,https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/IMG_20230822_121230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094059812.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094116588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094140671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094131022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094138022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094107209-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094112479-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094134057-scaled.jpg,09/06/2023 14:50,9.0000000,11.0000000,43.5261170000000,4.13839100000000,Institut Marin du Seaquarium,Le Grau du Roi,63444,Observation #63444,https://biolit.fr/observations/observation-63444/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094116588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094112479-scaled.jpg,,FALSE,Identifiable +N1,63440,Sortie #63440,https://biolit.fr/sorties/sortie-63440/,Institut Marin du Seaquarium,https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/IMG_20230822_121230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094059812.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094116588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094140671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094131022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094138022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094107209-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094112479-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/PXL_20230822_094134057-scaled.jpg,09/06/2023 14:50,9.0000000,11.0000000,43.5261170000000,4.13839100000000,Institut Marin du Seaquarium,Le Grau du Roi,63445,Observation #63445,https://biolit.fr/observations/observation-63445/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/95a3c6a9f23b8c38309b4776ef45e784/2023/09/IMG_20230822_121230-scaled.jpg,,,non-identifiable +N1,63447,Sortie #63447,https://biolit.fr/sorties/sortie-63447/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Biolit-gornevez-scaled.jpg,09/06/2023 15:06,10.0000000,11.0000000,47.6096690000000,-2.74778400000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),gornevez,,,,,,,,,, +N1,63452,Sortie #63452,https://biolit.fr/sorties/sortie-63452/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/IMG_0006.jpg,09/06/2023 15:15,15.0:14,17.0:14,47.5132910000000,-2.53531500000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),gornevez,,,,,,,,,, +N1,63455,Sortie #63455,https://biolit.fr/sorties/sortie-63455/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/IMG_0005.jpg,09/06/2023 15:20,15.0:14,17.0:14,47.5132910000000,-2.53531500000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),gornevez,,,,,,,,,, +N1,63458,Sortie #63458,https://biolit.fr/sorties/sortie-63458/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/P1020633-scaled.jpg,09/06/2023 15:38,10.0000000,11.0000000,47.697747000000,-2.74658200000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),gornevez,,,,,,,,,, +N1,63483,Sortie #63483,https://biolit.fr/sorties/sortie-63483/,DUFOUR Valérie,https://biolit.fr/wp-content/uploads/jet-form-builder/25341b7f91ca4b7f72ba931afce69878/2023/09/16940927004953521011640366950769-scaled.jpg,09/07/2023 15:18,15.0:18,15.0:18,44.6022680000000,-3.34022300000000,,,,,,,,,,,, +N1,63499,Sortie #63499,https://biolit.fr/sorties/sortie-63499/,Allory Pierre-Yves,https://biolit.fr/wp-content/uploads/jet-form-builder/c18157d07e1278e5f88893fd571eb7bf/2023/09/IMG20230909115954-scaled.jpg,09/09/2023 12:00,12.000001,12.000001,48.6362950,-2.2556290,,Grande plage,63501,Observation #63501,https://biolit.fr/observations/observation-63501/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c18157d07e1278e5f88893fd571eb7bf/2023/09/IMG20230909115954-scaled.jpg,,FALSE,Identifiable +N1,63520,Sortie #63520,https://biolit.fr/sorties/sortie-63520/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2371-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2375-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2376-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2379-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2381-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2383-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2384-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2390-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2391-scaled.jpg,09/10/2023 9:49,10.0000000,13.0000000,42.7666450000000,3.03841700000000,Planète Mer,Torreilles plage,63522,Observation #63522,https://biolit.fr/observations/observation-63522/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2371-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2375-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2376-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2379-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2381-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2383-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2384-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2390-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2391-scaled.jpg,,,Ne sais pas +N1,63520,Sortie #63520,https://biolit.fr/sorties/sortie-63520/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2371-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2375-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2376-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2379-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2381-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2383-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2384-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2390-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2391-scaled.jpg,09/10/2023 9:49,10.0000000,13.0000000,42.7666450000000,3.03841700000000,Planète Mer,Torreilles plage,63523,Observation #63523,https://biolit.fr/observations/observation-63523/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2371-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2375-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2376-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2379-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2381-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2383-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2384-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2390-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2391-scaled.jpg,,,Ne sais pas +N1,63520,Sortie #63520,https://biolit.fr/sorties/sortie-63520/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2371-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2375-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2376-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2379-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2381-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2383-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2384-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2390-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2391-scaled.jpg,09/10/2023 9:49,10.0000000,13.0000000,42.7666450000000,3.03841700000000,Planète Mer,Torreilles plage,63524,Observation #63524,https://biolit.fr/observations/observation-63524/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2371-scaled.jpg,,,Ne sais pas +N1,63520,Sortie #63520,https://biolit.fr/sorties/sortie-63520/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2371-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2375-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2376-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2379-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2381-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2383-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2384-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2390-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2391-scaled.jpg,09/10/2023 9:49,10.0000000,13.0000000,42.7666450000000,3.03841700000000,Planète Mer,Torreilles plage,63525,Observation #63525,https://biolit.fr/observations/observation-63525/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2371-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2383-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2384-scaled.jpg,,,Ne sais pas +N1,63538,Sortie #63538,https://biolit.fr/sorties/sortie-63538/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2392-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2394-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2396-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2398-scaled.jpg,09/10/2023 10:05,10.0000000,13.0000000,42.7666830000000,3.03896400000000,Planète Mer,Torreilles plage,63540,Observation #63540,https://biolit.fr/observations/observation-63540/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-1-scaled.jpg,,,Ne sais pas +N1,63538,Sortie #63538,https://biolit.fr/sorties/sortie-63538/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2392-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2394-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2396-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2398-scaled.jpg,09/10/2023 10:05,10.0000000,13.0000000,42.7666830000000,3.03896400000000,Planète Mer,Torreilles plage,63541,Observation #63541,https://biolit.fr/observations/observation-63541/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-1-scaled.jpg,,,Ne sais pas +N1,63538,Sortie #63538,https://biolit.fr/sorties/sortie-63538/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2392-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2394-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2396-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2398-scaled.jpg,09/10/2023 10:05,10.0000000,13.0000000,42.7666830000000,3.03896400000000,Planète Mer,Torreilles plage,63542,Observation #63542,https://biolit.fr/observations/observation-63542/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-1-scaled.jpg,,,Ne sais pas +N1,63538,Sortie #63538,https://biolit.fr/sorties/sortie-63538/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2392-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2394-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2396-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2398-scaled.jpg,09/10/2023 10:05,10.0000000,13.0000000,42.7666830000000,3.03896400000000,Planète Mer,Torreilles plage,63543,Observation #63543,https://biolit.fr/observations/observation-63543/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-1-scaled.jpg,,,Ne sais pas +N1,63538,Sortie #63538,https://biolit.fr/sorties/sortie-63538/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2392-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2394-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2396-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2398-scaled.jpg,09/10/2023 10:05,10.0000000,13.0000000,42.7666830000000,3.03896400000000,Planète Mer,Torreilles plage,63544,Observation #63544,https://biolit.fr/observations/observation-63544/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-1-scaled.jpg,,,Ne sais pas +N1,63538,Sortie #63538,https://biolit.fr/sorties/sortie-63538/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2392-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2394-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2396-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2398-scaled.jpg,09/10/2023 10:05,10.0000000,13.0000000,42.7666830000000,3.03896400000000,Planète Mer,Torreilles plage,63545,Observation #63545,https://biolit.fr/observations/observation-63545/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-1-scaled.jpg,,,Ne sais pas +N1,63538,Sortie #63538,https://biolit.fr/sorties/sortie-63538/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2392-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2394-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2396-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2398-scaled.jpg,09/10/2023 10:05,10.0000000,13.0000000,42.7666830000000,3.03896400000000,Planète Mer,Torreilles plage,63546,Observation #63546,https://biolit.fr/observations/observation-63546/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-1-scaled.jpg,,,Ne sais pas +N1,63538,Sortie #63538,https://biolit.fr/sorties/sortie-63538/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2392-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2394-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2396-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2398-scaled.jpg,09/10/2023 10:05,10.0000000,13.0000000,42.7666830000000,3.03896400000000,Planète Mer,Torreilles plage,63547,Observation #63547,https://biolit.fr/observations/observation-63547/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-1-scaled.jpg,,,Ne sais pas +N1,63538,Sortie #63538,https://biolit.fr/sorties/sortie-63538/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2392-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2394-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2396-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2398-scaled.jpg,09/10/2023 10:05,10.0000000,13.0000000,42.7666830000000,3.03896400000000,Planète Mer,Torreilles plage,63548,Observation #63548,https://biolit.fr/observations/observation-63548/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2392-scaled.jpg,,,Ne sais pas +N1,63538,Sortie #63538,https://biolit.fr/sorties/sortie-63538/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2392-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2394-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2396-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2398-scaled.jpg,09/10/2023 10:05,10.0000000,13.0000000,42.7666830000000,3.03896400000000,Planète Mer,Torreilles plage,63549,Observation #63549,https://biolit.fr/observations/observation-63549/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2394-scaled.jpg,,,Ne sais pas +N1,63538,Sortie #63538,https://biolit.fr/sorties/sortie-63538/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2392-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2394-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2396-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2398-scaled.jpg,09/10/2023 10:05,10.0000000,13.0000000,42.7666830000000,3.03896400000000,Planète Mer,Torreilles plage,63550,Observation #63550,https://biolit.fr/observations/observation-63550/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2396-scaled.jpg,,,Ne sais pas +N1,63538,Sortie #63538,https://biolit.fr/sorties/sortie-63538/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2377-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2380-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2382-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2385-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2386-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2387-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2392-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2394-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2396-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2398-scaled.jpg,09/10/2023 10:05,10.0000000,13.0000000,42.7666830000000,3.03896400000000,Planète Mer,Torreilles plage,63551,Observation #63551,https://biolit.fr/observations/observation-63551/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2398-scaled.jpg,,,Ne sais pas +N1,63565,Sortie #63565,https://biolit.fr/sorties/sortie-63565/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2416-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2419-scaled.jpg,09/10/2023 10:12,10.0000000,13.0000000,42.7665530000000,3.03842800000000,Planète Mer,Torreilles plage,63567,Observation #63567,https://biolit.fr/observations/observation-63567/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2401-scaled.jpg,,,Ne sais pas +N1,63565,Sortie #63565,https://biolit.fr/sorties/sortie-63565/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2416-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2419-scaled.jpg,09/10/2023 10:12,10.0000000,13.0000000,42.7665530000000,3.03842800000000,Planète Mer,Torreilles plage,63568,Observation #63568,https://biolit.fr/observations/observation-63568/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2403-scaled.jpg,,,Ne sais pas +N1,63565,Sortie #63565,https://biolit.fr/sorties/sortie-63565/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2416-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2419-scaled.jpg,09/10/2023 10:12,10.0000000,13.0000000,42.7665530000000,3.03842800000000,Planète Mer,Torreilles plage,63569,Observation #63569,https://biolit.fr/observations/observation-63569/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2405-scaled.jpg,,,Ne sais pas +N1,63565,Sortie #63565,https://biolit.fr/sorties/sortie-63565/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2416-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2419-scaled.jpg,09/10/2023 10:12,10.0000000,13.0000000,42.7665530000000,3.03842800000000,Planète Mer,Torreilles plage,63570,Observation #63570,https://biolit.fr/observations/observation-63570/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2406-scaled.jpg,,,Ne sais pas +N1,63565,Sortie #63565,https://biolit.fr/sorties/sortie-63565/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2416-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2419-scaled.jpg,09/10/2023 10:12,10.0000000,13.0000000,42.7665530000000,3.03842800000000,Planète Mer,Torreilles plage,63571,Observation #63571,https://biolit.fr/observations/observation-63571/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2407-scaled.jpg,,,Ne sais pas +N1,63565,Sortie #63565,https://biolit.fr/sorties/sortie-63565/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2416-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2419-scaled.jpg,09/10/2023 10:12,10.0000000,13.0000000,42.7665530000000,3.03842800000000,Planète Mer,Torreilles plage,63572,Observation #63572,https://biolit.fr/observations/observation-63572/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2411-scaled.jpg,,,Ne sais pas +N1,63565,Sortie #63565,https://biolit.fr/sorties/sortie-63565/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2416-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2419-scaled.jpg,09/10/2023 10:12,10.0000000,13.0000000,42.7665530000000,3.03842800000000,Planète Mer,Torreilles plage,63573,Observation #63573,https://biolit.fr/observations/observation-63573/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2412-scaled.jpg,,,Ne sais pas +N1,63565,Sortie #63565,https://biolit.fr/sorties/sortie-63565/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2416-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2419-scaled.jpg,09/10/2023 10:12,10.0000000,13.0000000,42.7665530000000,3.03842800000000,Planète Mer,Torreilles plage,63574,Observation #63574,https://biolit.fr/observations/observation-63574/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2414-scaled.jpg,,,Ne sais pas +N1,63565,Sortie #63565,https://biolit.fr/sorties/sortie-63565/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2416-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2419-scaled.jpg,09/10/2023 10:12,10.0000000,13.0000000,42.7665530000000,3.03842800000000,Planète Mer,Torreilles plage,63575,Observation #63575,https://biolit.fr/observations/observation-63575/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2401-scaled.jpg,,,Ne sais pas +N1,63565,Sortie #63565,https://biolit.fr/sorties/sortie-63565/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2416-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2419-scaled.jpg,09/10/2023 10:12,10.0000000,13.0000000,42.7665530000000,3.03842800000000,Planète Mer,Torreilles plage,63576,Observation #63576,https://biolit.fr/observations/observation-63576/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2416-scaled.jpg,,TRUE,non-identifiable +N1,63565,Sortie #63565,https://biolit.fr/sorties/sortie-63565/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2416-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2419-scaled.jpg,09/10/2023 10:12,10.0000000,13.0000000,42.7665530000000,3.03842800000000,Planète Mer,Torreilles plage,63577,Observation #63577,https://biolit.fr/observations/observation-63577/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2417-scaled.jpg,,,Ne sais pas +N1,63565,Sortie #63565,https://biolit.fr/sorties/sortie-63565/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2416-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2419-scaled.jpg,09/10/2023 10:12,10.0000000,13.0000000,42.7665530000000,3.03842800000000,Planète Mer,Torreilles plage,63578,Observation #63578,https://biolit.fr/observations/observation-63578/,Opuntia ficus,Figuier de barbarie,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2418-scaled.jpg,,TRUE,Ne sais pas +N1,63565,Sortie #63565,https://biolit.fr/sorties/sortie-63565/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2416-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2419-scaled.jpg,09/10/2023 10:12,10.0000000,13.0000000,42.7665530000000,3.03842800000000,Planète Mer,Torreilles plage,63579,Observation #63579,https://biolit.fr/observations/observation-63579/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/IMG_2419-scaled.jpg,,,Ne sais pas +N1,63584,Sortie #63584,https://biolit.fr/sorties/sortie-63584/,BLOT PHILIPPE,https://biolit.fr/wp-content/uploads/jet-form-builder/598328d678dbd595062aa73641b22359/2023/09/IMG_1872-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/598328d678dbd595062aa73641b22359/2023/09/IMG_1883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/598328d678dbd595062aa73641b22359/2023/09/IMG_1865-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/598328d678dbd595062aa73641b22359/2023/09/IMG_1866-scaled.jpeg,09/10/2023 16:59,17.0000000,18.0000000,43.4604440000000,3.82023800000000,,plage des ARESQUIERS,,,,,,,,,, +N1,63665,Sortie #63665,https://biolit.fr/sorties/sortie-63665/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/09/IMG_0074-scaled.jpg,09/12/2023 11:10,19.0000000,20.0000000,47.8922830000000,-3.96569800000000,Planète Mer (antenne Dinard),Plovan,,,,,,,,,, +N1,63803,Sortie #63803,https://biolit.fr/sorties/sortie-63803/,marinette29,https://biolit.fr/wp-content/uploads/jet-form-builder/1e9bcfb9a23f4fd3537fcdc6117ddff0/2023/09/DSCF0118-scaled.jpg,9/16/2023 12:50,12.0000000,14.0000000,47.7921770000000,-4.22318000000000,,"Goudoul, Lesconil",63805,Observation #63805,https://biolit.fr/observations/observation-63805/,Luidia ciliaris,Etoile à sept bras,,https://biolit.fr/wp-content/uploads/jet-form-builder/1e9bcfb9a23f4fd3537fcdc6117ddff0/2023/09/DSCF0118-scaled.jpg,,TRUE,Identifiable +N1,63818,Sortie #63818,https://biolit.fr/sorties/sortie-63818/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/B0A99063-7F96-47C2-B3EB-E2C2FF8E486E-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/1D3E568D-EDF4-4491-9306-8A4F2F859B81-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/370F4FD9-0FED-4BAC-902A-0B6322C47718-scaled.jpeg,9/18/2023 15:40,17.0:45,17.0:55,43,6,,Port-Grimaud petite plage,63820,Observation #63820,https://biolit.fr/observations/observation-63820/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/1D3E568D-EDF4-4491-9306-8A4F2F859B81-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/370F4FD9-0FED-4BAC-902A-0B6322C47718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/B0A99063-7F96-47C2-B3EB-E2C2FF8E486E-scaled.jpeg,,TRUE,Identifiable +N1,63826,Sortie #63826,https://biolit.fr/sorties/sortie-63826/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/C0829A33-7BA0-4FC9-BCA8-5C8C142EF3F7-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/AE78A536-4B61-41C5-99A1-9E23469A1CED-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/89A781BB-A656-4DE9-925D-9933C0DAEE59-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/1A8EB8B3-1DBA-4F92-A153-363549B3E15C-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/9BCFBF9B-22C7-4EFD-8E30-E009AE192AE3-scaled.jpeg,9/18/2023 15:50,13.0:25,13.0000000,43,6,,Port-Grimaud petite plage,63828,Observation #63828,https://biolit.fr/observations/observation-63828/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/C0829A33-7BA0-4FC9-BCA8-5C8C142EF3F7-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/AE78A536-4B61-41C5-99A1-9E23469A1CED-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/89A781BB-A656-4DE9-925D-9933C0DAEE59-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/1A8EB8B3-1DBA-4F92-A153-363549B3E15C-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/9BCFBF9B-22C7-4EFD-8E30-E009AE192AE3-scaled.jpeg,,TRUE,Identifiable +N1,63833,Sortie #63833,https://biolit.fr/sorties/sortie-63833/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/B9A7FE35-10B6-4AC3-A486-857588C897CD-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/93234066-25E8-4ADB-93F0-00262B7ACDE9-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/3D4883C9-670B-4139-A46E-901968DC5821-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/7093B827-5CCA-4B80-B27B-77EFFE86D3E2-scaled.jpeg,9/18/2023 17:22,13.0:21,13.0:28,43.2704620000000,6.58553100000000,,Port-Grimaud 2 petite plage,63836,Observation #63836,https://biolit.fr/observations/observation-63836/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/B9A7FE35-10B6-4AC3-A486-857588C897CD-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/93234066-25E8-4ADB-93F0-00262B7ACDE9-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/3D4883C9-670B-4139-A46E-901968DC5821-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/7093B827-5CCA-4B80-B27B-77EFFE86D3E2-scaled.jpeg,,TRUE,Identifiable +N1,63883,Sortie #63883,https://biolit.fr/sorties/sortie-63883/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/09/IMG_1195.jpeg,9/19/2023 10:47,14.0000000,18.0000000,48.6405230000000,-2.07306500000000,Planète Mer (antenne Dinard),Saint-Enogat,63885,Observation #63885,https://biolit.fr/observations/observation-63885/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2023/09/IMG_1195.jpeg,,TRUE,Identifiable +N1,63926,Sortie #63926,https://biolit.fr/sorties/sortie-63926/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/A45B6F8F-94DB-48A8-97E8-C014BFE4E14A-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/2E970398-ACF8-4298-9E2B-EC8D1701B43C-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/E2B19928-F5E5-4D59-A4F8-BE3D448D6298-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/F0D18396-0A6B-41B5-992E-1D80D8DB8032-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/737FD393-34CB-4F78-9A7F-9D8E48203147-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/0609586B-2B0D-4DB4-B2C3-0CB318585BF0-scaled.jpeg,9/19/2023 19:53,18.000005,18.0000000,43.2704620000000,6.58546700000000,,Port-Grimaud petite plage sud,63928,Observation #63928,https://biolit.fr/observations/observation-63928/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/A45B6F8F-94DB-48A8-97E8-C014BFE4E14A-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/2E970398-ACF8-4298-9E2B-EC8D1701B43C-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/E2B19928-F5E5-4D59-A4F8-BE3D448D6298-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/F0D18396-0A6B-41B5-992E-1D80D8DB8032-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/737FD393-34CB-4F78-9A7F-9D8E48203147-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/0609586B-2B0D-4DB4-B2C3-0CB318585BF0-scaled.jpeg,,TRUE,Identifiable +N1,63933,Sortie #63933,https://biolit.fr/sorties/sortie-63933/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/52716DC6-8FB5-4E5C-8C6A-4F3B1A358E6E-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/F2CD2CE4-FA51-4C5D-80E6-889654D7CC30-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/8DE6EE8F-79BB-4930-9872-517F3092EC09-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/8C739BE3-4B41-4F7F-8C4A-9F35E203630F-scaled.jpeg,9/19/2023 20:00,13.0:45,13.0000000,43.270353000000,6.58553100000000,,Port-Grimaud petite plage sud,63935,Observation #63935,https://biolit.fr/observations/observation-63935/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/52716DC6-8FB5-4E5C-8C6A-4F3B1A358E6E-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/F2CD2CE4-FA51-4C5D-80E6-889654D7CC30-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/8DE6EE8F-79BB-4930-9872-517F3092EC09-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/8C739BE3-4B41-4F7F-8C4A-9F35E203630F-scaled.jpeg,,TRUE,Identifiable +N1,63942,Sortie #63942,https://biolit.fr/sorties/sortie-63942/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/241D1580-0DA0-433D-96C0-96BD6E66996A-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/1308B37B-7693-4008-AB1D-108B2BDF2578-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/9FEA45F5-AB33-470F-9CAD-B46DE3E99356-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/440FBE50-5E24-4E91-8620-F67BF04EAB92-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/AA3609CC-BCAB-42AC-BC9C-23895D307E69-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/B778C826-856D-4DB0-A86B-6244439C96DC-scaled.jpeg,9/19/2023 21:33,17.0000000,18.0000000,43.2701940000000,6.58543500000000,,Port-Grimaud petite plage sud,63944,Observation #63944,https://biolit.fr/observations/observation-63944/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/9FEA45F5-AB33-470F-9CAD-B46DE3E99356-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/440FBE50-5E24-4E91-8620-F67BF04EAB92-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/AA3609CC-BCAB-42AC-BC9C-23895D307E69-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/B778C826-856D-4DB0-A86B-6244439C96DC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/1308B37B-7693-4008-AB1D-108B2BDF2578-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/241D1580-0DA0-433D-96C0-96BD6E66996A-scaled.jpeg,,TRUE,Identifiable +N1,63950,Sortie #63950,https://biolit.fr/sorties/sortie-63950/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/2E68F6FD-3012-449E-9246-0673A891A927-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/366CD252-375D-451B-B3CA-20C3DA6DBB93-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/6E8BBD8F-9864-403D-8C82-8E7ECE03C99A-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/EFA12C0B-7FEA-49A0-BC74-F88F0D568796-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/A1B9AA02-1035-4780-A4DF-8E3D886319F9-scaled.jpeg,9/19/2023 21:44,13.0000000,13.0000000,43.2702750000000,6.58540200000000,,Port-Grimaud petite plage sud,63952,Observation #63952,https://biolit.fr/observations/observation-63952/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/2E68F6FD-3012-449E-9246-0673A891A927-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/366CD252-375D-451B-B3CA-20C3DA6DBB93-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/6E8BBD8F-9864-403D-8C82-8E7ECE03C99A-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/EFA12C0B-7FEA-49A0-BC74-F88F0D568796-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/A1B9AA02-1035-4780-A4DF-8E3D886319F9-scaled.jpeg,,TRUE,Identifiable +N1,63963,Sortie #63963,https://biolit.fr/sorties/sortie-63963/,Andrietti Antoine,https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090103-scaled.jpg,9/20/2023 11:50,9.0000000,9.000005,47.2590330000000,-2.41696800000000,,Le Pouliguen / Penchateau,63965,Observation #63965,https://biolit.fr/observations/observation-63965/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090113-scaled.jpg,,,Ne sais pas +N1,63963,Sortie #63963,https://biolit.fr/sorties/sortie-63963/,Andrietti Antoine,https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090103-scaled.jpg,9/20/2023 11:50,9.0000000,9.000005,47.2590330000000,-2.41696800000000,,Le Pouliguen / Penchateau,63966,Observation #63966,https://biolit.fr/observations/observation-63966/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090103-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090106-scaled.jpg,,,Ne sais pas +N1,63963,Sortie #63963,https://biolit.fr/sorties/sortie-63963/,Andrietti Antoine,https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090103-scaled.jpg,9/20/2023 11:50,9.0000000,9.000005,47.2590330000000,-2.41696800000000,,Le Pouliguen / Penchateau,63967,Observation #63967,https://biolit.fr/observations/observation-63967/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090310-scaled.jpg,,,Ne sais pas +N1,63963,Sortie #63963,https://biolit.fr/sorties/sortie-63963/,Andrietti Antoine,https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090103-scaled.jpg,9/20/2023 11:50,9.0000000,9.000005,47.2590330000000,-2.41696800000000,,Le Pouliguen / Penchateau,63968,Observation #63968,https://biolit.fr/observations/observation-63968/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090157-scaled.jpg,,,Ne sais pas +N1,63963,Sortie #63963,https://biolit.fr/sorties/sortie-63963/,Andrietti Antoine,https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090103-scaled.jpg,9/20/2023 11:50,9.0000000,9.000005,47.2590330000000,-2.41696800000000,,Le Pouliguen / Penchateau,63969,Observation #63969,https://biolit.fr/observations/observation-63969/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090146-scaled.jpg,,,Ne sais pas +N1,63963,Sortie #63963,https://biolit.fr/sorties/sortie-63963/,Andrietti Antoine,https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090103-scaled.jpg,9/20/2023 11:50,9.0000000,9.000005,47.2590330000000,-2.41696800000000,,Le Pouliguen / Penchateau,63970,Observation #63970,https://biolit.fr/observations/observation-63970/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230812_090103-scaled.jpg,,,Ne sais pas +N1,63973,Sortie #63973,https://biolit.fr/sorties/sortie-63973/,Andrietti Antoine,https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230903_140206-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230903_140219-scaled.jpg,9/20/2023 11:58,14.000002,14.000003,47.2740570000000,-2.3995210000000,,LA BAULE,63975,Observation #63975,https://biolit.fr/observations/observation-63975/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230903_140206-scaled.jpg,,,Ne sais pas +N1,63973,Sortie #63973,https://biolit.fr/sorties/sortie-63973/,Andrietti Antoine,https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230903_140206-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230903_140219-scaled.jpg,9/20/2023 11:58,14.000002,14.000003,47.2740570000000,-2.3995210000000,,LA BAULE,63976,Observation #63976,https://biolit.fr/observations/observation-63976/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b3b290caf534fd566053ccf3c382b60e/2023/09/IMG_20230903_140219-scaled.jpg,,,Identifiable +N1,64000,Sortie #64000,https://biolit.fr/sorties/sortie-64000/,LPO Occitanie - Aude,https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2023/09/IMG20230913101439-scaled.jpg,9/20/2023 17:40,9.0:15,10.000005,42.8883050000000,3.05209000000000,LPO Occitanie (Dt Aude),Maison de l'étang Leucate,64002,Observation #64002,https://biolit.fr/observations/observation-64002/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2023/09/IMG20230913101439-scaled.jpg,,TRUE,Identifiable +N1,64082,Sortie #64082,https://biolit.fr/sorties/sortie-64082/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/895B4704-74EF-4431-9948-850458FE985E-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/9A3B9638-F327-482A-805F-5C60AAADB9B6-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/5A7B6498-DFE8-4C69-A5F5-B163B5B641E7-scaled.jpeg,9/21/2023 22:29,13.0000000,13.0000000,43.2703050000000,6.58548300000000,,Port-Grimaud petite plage sud,64084,Observation #64084,https://biolit.fr/observations/observation-64084/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/895B4704-74EF-4431-9948-850458FE985E-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/9A3B9638-F327-482A-805F-5C60AAADB9B6-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/5A7B6498-DFE8-4C69-A5F5-B163B5B641E7-scaled.jpeg,,TRUE,Identifiable +N1,64088,Sortie #64088,https://biolit.fr/sorties/sortie-64088/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/F14A3D3E-BB8D-4BC7-ADE0-98A59EE06656-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/95D1B8B3-E02A-46E5-B39D-72135F518475-scaled.jpeg,9/21/2023 22:41,13.0000000,13.0000000,43.2704150000000,6.58548800000000,,Port-Grimaud petite plage sud,64092,Observation #64092,https://biolit.fr/observations/observation-64092/,Bosemprella incarnata,Telline rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/F14A3D3E-BB8D-4BC7-ADE0-98A59EE06656-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/95D1B8B3-E02A-46E5-B39D-72135F518475-scaled.jpeg,,TRUE,Identifiable +N1,64100,Sortie #64100,https://biolit.fr/sorties/sortie-64100/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/48C1AA79-41CE-469F-8778-E588C0AAF73E-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/BB0F6E1A-6D30-4E6A-9104-365AD67C9DFA-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/BE724F07-982C-4973-B6F5-B84570EE7421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/22A5E28C-6401-4D60-A6B9-27A3679BC1F6-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/9C7EFE47-C345-4B64-955A-121166786D25-scaled.jpeg,9/21/2023 22:59,13.0000000,13.0000000,43.2701970000000,6.58553100000000,,Port-Grimaud petite plage sud,64102,Observation #64102,https://biolit.fr/observations/observation-64102/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/48C1AA79-41CE-469F-8778-E588C0AAF73E-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/BB0F6E1A-6D30-4E6A-9104-365AD67C9DFA-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/BE724F07-982C-4973-B6F5-B84570EE7421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/9C7EFE47-C345-4B64-955A-121166786D25-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/22A5E28C-6401-4D60-A6B9-27A3679BC1F6-scaled.jpeg,,TRUE,Identifiable +N1,64109,Sortie #64109,https://biolit.fr/sorties/sortie-64109/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/51DD872D-6D35-487C-A454-D21CC0812AC9-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/AA7E5ADD-519D-48FF-9778-DFAA2B7A1CCE-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/51D709D2-CF8C-4837-9220-B32F69A6B1E4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/D7076ACB-9720-4DF2-8A99-7C865A8438D9-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/46356B03-EA57-4E07-B3FC-D67568D7031A-scaled.jpeg,9/21/2023 23:07,13.0000000,13.0000000,43.2700620000000,6.58583200000000,,Port-Grimaud petite plage sud,,,,,,,,,, +N1,64116,Sortie #64116,https://biolit.fr/sorties/sortie-64116/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/2CC91ADD-A2A4-433C-978B-9F63760006D0-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/C6E164A3-6569-4367-867D-90AB79AC8F93-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/DAA21940-CD8A-4C74-991A-B367E02F1B62-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/BA3E8960-04D8-4A87-A5C0-1EBBD9715468-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/21384E50-0658-491C-B3A0-86877A009B00-scaled.jpeg,9/21/2023 23:11,13.0000000,13.0000000,43.270353000000,6.58546700000000,,Port-Grimaud petite plage sud,64118,Observation #64118,https://biolit.fr/observations/observation-64118/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/2CC91ADD-A2A4-433C-978B-9F63760006D0-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/C6E164A3-6569-4367-867D-90AB79AC8F93-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/DAA21940-CD8A-4C74-991A-B367E02F1B62-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/BA3E8960-04D8-4A87-A5C0-1EBBD9715468-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/21384E50-0658-491C-B3A0-86877A009B00-scaled.jpeg,,TRUE,Identifiable +N1,64125,Sortie #64125,https://biolit.fr/sorties/sortie-64125/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/2ECD9400-0397-4CE2-AB13-5DCF6A19AA06-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/E708E3DB-CAF1-427F-8E3E-A01E427F8D40-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/F78F4F26-46A0-4C53-9383-A0814058E2EA-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/EB567CA1-E9ED-4D4D-A1A4-00D2A9BABA7A-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/66EF96CB-BD20-4837-9D76-61CD4C203A2A-scaled.jpeg,9/21/2023 23:21,13.0:25,13.0:35,43.2702180000000,6.58566000000000,,Port-Grimaud petite plage sud,64127,Observation #64127,https://biolit.fr/observations/observation-64127/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/2ECD9400-0397-4CE2-AB13-5DCF6A19AA06-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/E708E3DB-CAF1-427F-8E3E-A01E427F8D40-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/F78F4F26-46A0-4C53-9383-A0814058E2EA-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/EB567CA1-E9ED-4D4D-A1A4-00D2A9BABA7A-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/66EF96CB-BD20-4837-9D76-61CD4C203A2A-scaled.jpeg,,TRUE,Identifiable +N1,64135,Sortie #64135,https://biolit.fr/sorties/sortie-64135/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/D0DFF417-CB33-4671-A3BA-C2B236BF9289-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/C687C4D7-A598-45C3-95D5-D3651F590FF6-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/5D1F30A0-9AF3-4A98-83D0-DD651DA8DFDC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/A647A406-F7DE-48A2-BEC0-81C541B04428-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/1B12C69A-6283-45E4-B154-F2BB200B0DEF-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/BAA5D3C0-DE42-40FD-B159-10896DA05BEE-scaled.jpeg,9/21/2023 23:29,13.0:25,13.0000000,43.2704180000000,6.58484500000000,,Port-Grimaud petite plage sud,64137,Observation #64137,https://biolit.fr/observations/observation-64137/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/D0DFF417-CB33-4671-A3BA-C2B236BF9289-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/C687C4D7-A598-45C3-95D5-D3651F590FF6-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/5D1F30A0-9AF3-4A98-83D0-DD651DA8DFDC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/A647A406-F7DE-48A2-BEC0-81C541B04428-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/1B12C69A-6283-45E4-B154-F2BB200B0DEF-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/BAA5D3C0-DE42-40FD-B159-10896DA05BEE-scaled.jpeg,,TRUE,Identifiable +N1,64144,Sortie #64144,https://biolit.fr/sorties/sortie-64144/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/5DC53AC3-A67E-4F22-B0C3-A01FA1A8FDB1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/9FC92061-8539-47FB-B995-D94C486B12B8-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/B714034F-5EB6-498B-A92F-82BF9E97B8A4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/48DF3A8F-0C42-4E1F-B701-2B1D0EDF283E-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/B8E32A36-37FE-4476-A586-476A71951B6D-scaled.jpeg,9/21/2023 23:36,13.0:25,13.0000000,43.2701560000000,6.58570300000000,,Port-Grimaud petite plage sud,64146,Observation #64146,https://biolit.fr/observations/observation-64146/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/5DC53AC3-A67E-4F22-B0C3-A01FA1A8FDB1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/9FC92061-8539-47FB-B995-D94C486B12B8-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/B714034F-5EB6-498B-A92F-82BF9E97B8A4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/48DF3A8F-0C42-4E1F-B701-2B1D0EDF283E-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2023/09/B8E32A36-37FE-4476-A586-476A71951B6D-scaled.jpeg,,TRUE,Identifiable +N1,64157,Sortie #64157,https://biolit.fr/sorties/sortie-64157/,Allory Pierre-Yves,https://biolit.fr/wp-content/uploads/jet-form-builder/c18157d07e1278e5f88893fd571eb7bf/2023/09/Capture-decran-2023-09-22-a-14.56.37.png,9/22/2023 14:56,16.0:55,19.0:55,48.5571540000000,-4.74609400,,plage de la mare,64159,Observation #64159,https://biolit.fr/observations/observation-64159/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/c18157d07e1278e5f88893fd571eb7bf/2023/09/Capture-decran-2023-09-22-a-14.56.37.png,,TRUE,Identifiable +N1,64167,Sortie #64167,https://biolit.fr/sorties/sortie-64167/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q1-15-09-2023.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q1-bigorneau.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q2-15-09-2023.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q2-Littorine--scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/TEST-identificat°-2023-9-15-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/TEST-Observat°15-09-2023-scaled.jpg,9/23/2023 18:24,14.0000000,14.0000000,47.6128780000000,-2.75828100000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Cadouarn, Séné",64169,Observation #64169,https://biolit.fr/observations/observation-64169/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q1-bigorneau.jpeg,,TRUE,Identifiable +N1,64167,Sortie #64167,https://biolit.fr/sorties/sortie-64167/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q1-15-09-2023.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q1-bigorneau.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q2-15-09-2023.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q2-Littorine--scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/TEST-identificat°-2023-9-15-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/TEST-Observat°15-09-2023-scaled.jpg,9/23/2023 18:24,14.0000000,14.0000000,47.6128780000000,-2.75828100000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Cadouarn, Séné",64171,Observation #64171,https://biolit.fr/observations/observation-64171/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q2-Littorine--scaled.jpeg,,TRUE,Identifiable +N1,64167,Sortie #64167,https://biolit.fr/sorties/sortie-64167/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q1-15-09-2023.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q1-bigorneau.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q2-15-09-2023.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q2-Littorine--scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/TEST-identificat°-2023-9-15-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/TEST-Observat°15-09-2023-scaled.jpg,9/23/2023 18:24,14.0000000,14.0000000,47.6128780000000,-2.75828100000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Cadouarn, Séné",64173,Observation #64173,https://biolit.fr/?post_type=observations&p=64173,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q2-Littorine--scaled.jpeg,,,Identifiable +N1,64167,Sortie #64167,https://biolit.fr/sorties/sortie-64167/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q1-15-09-2023.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q1-bigorneau.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q2-15-09-2023.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q2-Littorine--scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/TEST-identificat°-2023-9-15-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/TEST-Observat°15-09-2023-scaled.jpg,9/23/2023 18:24,14.0000000,14.0000000,47.6128780000000,-2.75828100000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Cadouarn, Séné",64175,Observation #64175,https://biolit.fr/?post_type=observations&p=64175,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/09/Q2-Littorine--scaled.jpeg,,,Identifiable +N1,64178,Sortie #64178,https://biolit.fr/sorties/sortie-64178/,Fontaine Jean Daniel,https://biolit.fr/wp-content/uploads/jet-form-builder/076ae1239c93572da2893b01b4b3bfcc/2023/09/IMG_20230922_102036860_HDR_1-scaled.jpg,9/24/2023 7:40,8.0000000,14.0000000,-21.2446100,55.5281050,,Saint-Pierre,64180,Observation #64180,https://biolit.fr/observations/observation-64180/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/076ae1239c93572da2893b01b4b3bfcc/2023/09/IMG_20230922_102036860_HDR_1-scaled.jpg,,,Ne sais pas +N1,64183,Sortie #64183,https://biolit.fr/sorties/sortie-64183/,Fontaine Jean Daniel,https://biolit.fr/wp-content/uploads/jet-form-builder/076ae1239c93572da2893b01b4b3bfcc/2023/09/IMG_5321-scaled.jpg,9/24/2023 8:17,8.0000000,9.0000000,-21.2446220,55.5280920,,Saint-Pierre,64185,Observation #64185,https://biolit.fr/observations/observation-64185/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/076ae1239c93572da2893b01b4b3bfcc/2023/09/IMG_5321-scaled.jpg,,,Ne sais pas +N1,64188,Sortie #64188,https://biolit.fr/sorties/sortie-64188/,Fontaine Jean Daniel,https://biolit.fr/wp-content/uploads/jet-form-builder/076ae1239c93572da2893b01b4b3bfcc/2023/09/IMG_5325-scaled.jpg,9/24/2023 8:23,8.0000000,9.0000000,-21.2446220,55.5280920,,Saint-Pierre,64190,Observation #64190,https://biolit.fr/observations/observation-64190/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/076ae1239c93572da2893b01b4b3bfcc/2023/09/IMG_5325-scaled.jpg,,, +N1,64196,Sortie #64196,https://biolit.fr/sorties/sortie-64196/,Boyer Jean-Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5d4c3677430fb01be06d99a5f02da5d9/2023/09/IMG_21571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5d4c3677430fb01be06d99a5f02da5d9/2023/09/IMG_2162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5d4c3677430fb01be06d99a5f02da5d9/2023/09/IMG_2159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5d4c3677430fb01be06d99a5f02da5d9/2023/09/IMG_2160-scaled.jpg,9/24/2023 21:45,13.0000000,16.0000000,50.2143710000000,1.55365000000000,,Phare du Hourdel,64198,Observation #64198,https://biolit.fr/observations/observation-64198/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5d4c3677430fb01be06d99a5f02da5d9/2023/09/IMG_21571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5d4c3677430fb01be06d99a5f02da5d9/2023/09/IMG_2162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5d4c3677430fb01be06d99a5f02da5d9/2023/09/IMG_2159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5d4c3677430fb01be06d99a5f02da5d9/2023/09/IMG_2160-scaled.jpg,,,Identifiable +N1,64196,Sortie #64196,https://biolit.fr/sorties/sortie-64196/,Boyer Jean-Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5d4c3677430fb01be06d99a5f02da5d9/2023/09/IMG_21571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5d4c3677430fb01be06d99a5f02da5d9/2023/09/IMG_2162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5d4c3677430fb01be06d99a5f02da5d9/2023/09/IMG_2159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5d4c3677430fb01be06d99a5f02da5d9/2023/09/IMG_2160-scaled.jpg,9/24/2023 21:45,13.0000000,16.0000000,50.2143710000000,1.55365000000000,,Phare du Hourdel,64200,Observation #64200,https://biolit.fr/observations/observation-64200/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5d4c3677430fb01be06d99a5f02da5d9/2023/09/IMG_21571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5d4c3677430fb01be06d99a5f02da5d9/2023/09/IMG_2162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5d4c3677430fb01be06d99a5f02da5d9/2023/09/IMG_2159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5d4c3677430fb01be06d99a5f02da5d9/2023/09/IMG_2160-scaled.jpg,,,Identifiable +N1,64209,Sortie #64209,https://biolit.fr/sorties/sortie-64209/,Mias Caroline,https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/6-scaled.jpeg,9/25/2023 11:51,13.0000000,15.0000000,50.2168960000000,1.5700740000000,,Le hourdel,64211,Observation #64211,https://biolit.fr/observations/observation-64211/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/1-scaled.jpg,,,Ne sais pas +N1,64209,Sortie #64209,https://biolit.fr/sorties/sortie-64209/,Mias Caroline,https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/6-scaled.jpeg,9/25/2023 11:51,13.0000000,15.0000000,50.2168960000000,1.5700740000000,,Le hourdel,64213,Observation #64213,https://biolit.fr/observations/observation-64213/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/2-scaled.jpg,,,Ne sais pas +N1,64209,Sortie #64209,https://biolit.fr/sorties/sortie-64209/,Mias Caroline,https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/6-scaled.jpeg,9/25/2023 11:51,13.0000000,15.0000000,50.2168960000000,1.5700740000000,,Le hourdel,64215,Observation #64215,https://biolit.fr/observations/observation-64215/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/3-scaled.jpg,,,Ne sais pas +N1,64209,Sortie #64209,https://biolit.fr/sorties/sortie-64209/,Mias Caroline,https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/6-scaled.jpeg,9/25/2023 11:51,13.0000000,15.0000000,50.2168960000000,1.5700740000000,,Le hourdel,64217,Observation #64217,https://biolit.fr/observations/observation-64217/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/4-scaled.jpeg,,,Ne sais pas +N1,64209,Sortie #64209,https://biolit.fr/sorties/sortie-64209/,Mias Caroline,https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/6-scaled.jpeg,9/25/2023 11:51,13.0000000,15.0000000,50.2168960000000,1.5700740000000,,Le hourdel,64219,Observation #64219,https://biolit.fr/observations/observation-64219/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/5-scaled.jpg,,,Ne sais pas +N1,64209,Sortie #64209,https://biolit.fr/sorties/sortie-64209/,Mias Caroline,https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/6-scaled.jpeg,9/25/2023 11:51,13.0000000,15.0000000,50.2168960000000,1.5700740000000,,Le hourdel,64221,Observation #64221,https://biolit.fr/observations/observation-64221/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/959839400be5e9a568c15c47e1b681af/2023/09/6-scaled.jpeg,,,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64281,Observation #64281,https://biolit.fr/observations/observation-64281/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg,,,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64283,Observation #64283,https://biolit.fr/observations/observation-64283/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg,,,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64285,Observation #64285,https://biolit.fr/observations/observation-64285/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg,,,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64287,Observation #64287,https://biolit.fr/observations/observation-64287/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg,,,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64289,Observation #64289,https://biolit.fr/observations/observation-64289/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg,,TRUE,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64291,Observation #64291,https://biolit.fr/observations/observation-64291/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg,,TRUE,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64293,Observation #64293,https://biolit.fr/observations/observation-64293/,Aporrhais pespelecani,Pied de pélican commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg,,TRUE,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64295,Observation #64295,https://biolit.fr/observations/observation-64295/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg,,,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64297,Observation #64297,https://biolit.fr/observations/observation-64297/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg,,,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64299,Observation #64299,https://biolit.fr/observations/observation-64299/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg,,,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64301,Observation #64301,https://biolit.fr/observations/observation-64301/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg,,TRUE,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64303,Observation #64303,https://biolit.fr/observations/observation-64303/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg,,TRUE,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64305,Observation #64305,https://biolit.fr/observations/observation-64305/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg,,,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64307,Observation #64307,https://biolit.fr/observations/observation-64307/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg,,,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64309,Observation #64309,https://biolit.fr/observations/observation-64309/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg,,,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64311,Observation #64311,https://biolit.fr/observations/observation-64311/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg,,TRUE,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64313,Observation #64313,https://biolit.fr/observations/observation-64313/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg,,,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64315,Observation #64315,https://biolit.fr/observations/observation-64315/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg,,,Ne sais pas +N1,64279,Sortie #64279,https://biolit.fr/sorties/sortie-64279/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379637809_298513506230995_4756692538334123143_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379651329_149348424915522_5171765942113298519_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379665512_1064486994713789_7721520386329252476_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/379925720_6574988269264253_6038948168917643644_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380020270_1759480524504929_1307408548156436989_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380077228_1413562449195784_7423699990681065242_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380117436_342865261512173_4661520690898902393_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380139944_280570971594406_3749763276552293613_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380259097_684101236930514_2041113239921030260_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380284571_6564562873650987_6417028854959579818_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380386437_1404859180071934_2054335074475443849_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462307_1711900959236422_3389507808398556471_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380462363_645159681071526_8543348534226548389_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380490898_1365075447443497_4774202706633530335_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576520_967086257714046_2089118846016303434_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380576525_249740018061020_8416500457942041879_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/380799003_871918997834791_3024822690069096741_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384491139_682631916860579_5141253747791832274_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,9/27/2023 13:08,10.0000000,13.0000000,46.1512970000000,-1.26754800000000,Planète Mer,Ile de Re,64317,Observation #64317,https://biolit.fr/observations/observation-64317/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/24cc168e93d9c84727b6c46d2725e86a/2023/09/384532605_866461748386033_8942536362277790046_n.jpg,,,Ne sais pas +N1,64330,Sortie #64330,https://biolit.fr/sorties/sortie-64330/,BREHO JUSTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130804-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130834-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130915.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131013-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131707-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132327-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132704.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132834.jpg,9/27/2023 14:18,12.0000000,13.0000000,48.0916310000000,-4.2983380000000,,Douarnenez,64332,Observation #64332,https://biolit.fr/observations/observation-64332/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132327-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131707-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130915.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130804-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131013-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130834-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132704.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132834.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132749.jpg,,,Ne sais pas +N1,64330,Sortie #64330,https://biolit.fr/sorties/sortie-64330/,BREHO JUSTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130804-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130834-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130915.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131013-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131707-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132327-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132704.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132834.jpg,9/27/2023 14:18,12.0000000,13.0000000,48.0916310000000,-4.2983380000000,,Douarnenez,64336,Observation #64336,https://biolit.fr/observations/observation-64336/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130834-rotated.jpg,,TRUE,Ne sais pas +N1,64330,Sortie #64330,https://biolit.fr/sorties/sortie-64330/,BREHO JUSTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130804-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130834-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130915.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131013-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131707-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132327-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132704.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132834.jpg,9/27/2023 14:18,12.0000000,13.0000000,48.0916310000000,-4.2983380000000,,Douarnenez,64338,Observation #64338,https://biolit.fr/observations/observation-64338/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130915.jpg,,, +N1,64330,Sortie #64330,https://biolit.fr/sorties/sortie-64330/,BREHO JUSTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130804-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130834-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130915.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131013-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131707-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132327-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132704.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132834.jpg,9/27/2023 14:18,12.0000000,13.0000000,48.0916310000000,-4.2983380000000,,Douarnenez,64340,Observation #64340,https://biolit.fr/observations/observation-64340/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131013-rotated.jpg,,,Ne sais pas +N1,64330,Sortie #64330,https://biolit.fr/sorties/sortie-64330/,BREHO JUSTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130804-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130834-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130915.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131013-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131707-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132327-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132704.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132834.jpg,9/27/2023 14:18,12.0000000,13.0000000,48.0916310000000,-4.2983380000000,,Douarnenez,64342,Observation #64342,https://biolit.fr/observations/observation-64342/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132327-rotated.jpg,,TRUE, +N1,64330,Sortie #64330,https://biolit.fr/sorties/sortie-64330/,BREHO JUSTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130804-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130834-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130915.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131013-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131707-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132327-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132704.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132834.jpg,9/27/2023 14:18,12.0000000,13.0000000,48.0916310000000,-4.2983380000000,,Douarnenez,64344,Observation #64344,https://biolit.fr/observations/observation-64344/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132704.jpg,,, +N1,64330,Sortie #64330,https://biolit.fr/sorties/sortie-64330/,BREHO JUSTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130804-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130834-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_130915.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131013-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_131707-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132327-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132704.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132834.jpg,9/27/2023 14:18,12.0000000,13.0000000,48.0916310000000,-4.2983380000000,,Douarnenez,64346,Observation #64346,https://biolit.fr/observations/observation-64346/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c2a90d222f0eb8c3433229d8618a2b8/2023/09/20230919_132834.jpg,,, +N1,64356,Sortie #64356,https://biolit.fr/sorties/sortie-64356/,Juliette Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-1.jpg,9/27/2023 18:50,9.0000000,16.0000000,47.2674430000000,-2.3490360000000,,Plage des libraires,64358,Observation #64358,https://biolit.fr/observations/observation-64358/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-1.jpg,,TRUE,Ne sais pas +N1,64366,Sortie #64366,https://biolit.fr/sorties/sortie-64366/,Juliette Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-7.jpg,9/27/2023 18:55,9.0000000,16.0000000,47.2653330000000,-2.34617500000000,,Plage des libraires,64368,Observation #64368,https://biolit.fr/observations/observation-64368/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-2.jpg,,TRUE,Ne sais pas +N1,64366,Sortie #64366,https://biolit.fr/sorties/sortie-64366/,Juliette Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-7.jpg,9/27/2023 18:55,9.0000000,16.0000000,47.2653330000000,-2.34617500000000,,Plage des libraires,64370,Observation #64370,https://biolit.fr/observations/observation-64370/,Ensis ensis,Couteau-sabre,,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-3.jpg,,TRUE,Ne sais pas +N1,64366,Sortie #64366,https://biolit.fr/sorties/sortie-64366/,Juliette Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-7.jpg,9/27/2023 18:55,9.0000000,16.0000000,47.2653330000000,-2.34617500000000,,Plage des libraires,64372,Observation #64372,https://biolit.fr/observations/observation-64372/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-4.jpg,,TRUE,Ne sais pas +N1,64366,Sortie #64366,https://biolit.fr/sorties/sortie-64366/,Juliette Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-7.jpg,9/27/2023 18:55,9.0000000,16.0000000,47.2653330000000,-2.34617500000000,,Plage des libraires,64374,Observation #64374,https://biolit.fr/observations/observation-64374/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-5.jpg,,TRUE,Ne sais pas +N1,64366,Sortie #64366,https://biolit.fr/sorties/sortie-64366/,Juliette Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-7.jpg,9/27/2023 18:55,9.0000000,16.0000000,47.2653330000000,-2.34617500000000,,Plage des libraires,64376,Observation #64376,https://biolit.fr/observations/observation-64376/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-6.jpg,,TRUE, +N1,64366,Sortie #64366,https://biolit.fr/sorties/sortie-64366/,Juliette Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-7.jpg,9/27/2023 18:55,9.0000000,16.0000000,47.2653330000000,-2.34617500000000,,Plage des libraires,64378,Observation #64378,https://biolit.fr/observations/observation-64378/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2023/09/Photo-7.jpg,,TRUE,Ne sais pas +N1,64392,Sortie #64392,https://biolit.fr/sorties/sortie-64392/,briant karell,https://biolit.fr/wp-content/uploads/jet-form-builder/ccf23a11248cc67fba87dfa053dc8af9/2023/09/20230919_132717-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ccf23a11248cc67fba87dfa053dc8af9/2023/09/20230919_133047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ccf23a11248cc67fba87dfa053dc8af9/2023/09/20230919_133157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ccf23a11248cc67fba87dfa053dc8af9/2023/09/20230919_133218-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ccf23a11248cc67fba87dfa053dc8af9/2023/09/20230919_133945-scaled.jpg,9/28/2023 12:11,13.0000000,14.0000000,48.0908960000000,-4.30006400000000,,Plage du RIS à Douarnenez,64394,Observation #64394,https://biolit.fr/observations/observation-64394/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/ccf23a11248cc67fba87dfa053dc8af9/2023/09/20230919_133047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ccf23a11248cc67fba87dfa053dc8af9/2023/09/20230919_133157-scaled.jpg,,TRUE,Identifiable +N1,64392,Sortie #64392,https://biolit.fr/sorties/sortie-64392/,briant karell,https://biolit.fr/wp-content/uploads/jet-form-builder/ccf23a11248cc67fba87dfa053dc8af9/2023/09/20230919_132717-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ccf23a11248cc67fba87dfa053dc8af9/2023/09/20230919_133047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ccf23a11248cc67fba87dfa053dc8af9/2023/09/20230919_133157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ccf23a11248cc67fba87dfa053dc8af9/2023/09/20230919_133218-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ccf23a11248cc67fba87dfa053dc8af9/2023/09/20230919_133945-scaled.jpg,9/28/2023 12:11,13.0000000,14.0000000,48.0908960000000,-4.30006400000000,,Plage du RIS à Douarnenez,64396,Observation #64396,https://biolit.fr/observations/observation-64396/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/ccf23a11248cc67fba87dfa053dc8af9/2023/09/20230919_132717-scaled.jpg,,TRUE,Ne sais pas +N1,64402,Sortie #64402,https://biolit.fr/sorties/sortie-64402/,NEMARD SEVERINE,https://biolit.fr/wp-content/uploads/jet-form-builder/8fd81add05cc311222017b1804a45520/2023/09/20230919_132220-scaled.jpg,9/29/2023 10:38,12.0000000,14.0000000,48.0891200000000,-4.30578200000000,,DOUARNENEZ PLAGE DU RIS,64404,Observation #64404,https://biolit.fr/observations/observation-64404/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/8fd81add05cc311222017b1804a45520/2023/09/20230919_132220-scaled.jpg,,TRUE,Ne sais pas +N1,64437,Sortie #64437,https://biolit.fr/sorties/sortie-64437/,Magali LHOMMET CARPENTIER,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174804-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174839-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174914-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174920-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175706-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_180848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_180936-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_181816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_182313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_182327-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183337-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_184239-scaled.jpg,10/02/2023 9:24,17.0:41,18.0:42,49.8561790000000,0.608089000000000,,Veullettes sur mer - le pont rouge,,,,,,,,,, +N1,64445,Sortie #64445,https://biolit.fr/sorties/sortie-64445/,Magali LHOMMET CARPENTIER,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174145-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175744-1-scaled.jpg,10/02/2023 9:45,17.0:41,18.0:42,49.8559150000000,0.608454000000000,,Veullettes sur mer - le pont rouge,64447,Observation #64447,https://biolit.fr/observations/observation-64447/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174145-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175744-1-scaled.jpg,,TRUE,Identifiable +N1,64459,Sortie #64459,https://biolit.fr/sorties/sortie-64459/,Magali LHOMMET CARPENTIER,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174804-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175101-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175229-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175706-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183242-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183337-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-1-scaled.jpg,10/02/2023 10:09,17.0:41,18.0:42,49.8561730000000,0.607874000000000,,Veullettes sur mer - le pont rouge,64461,Observation #64461,https://biolit.fr/observations/observation-64461/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175101-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175229-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175706-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183242-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183337-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174804-1-scaled.jpg,,,Ne sais pas +N1,64459,Sortie #64459,https://biolit.fr/sorties/sortie-64459/,Magali LHOMMET CARPENTIER,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174804-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175101-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175229-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175706-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183242-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183337-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-1-scaled.jpg,10/02/2023 10:09,17.0:41,18.0:42,49.8561730000000,0.607874000000000,,Veullettes sur mer - le pont rouge,64463,Observation #64463,https://biolit.fr/observations/observation-64463/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174804-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175101-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175229-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175706-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183242-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183337-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-1-scaled.jpg,,,Ne sais pas +N1,64459,Sortie #64459,https://biolit.fr/sorties/sortie-64459/,Magali LHOMMET CARPENTIER,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174804-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175101-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175229-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175706-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183242-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183337-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-1-scaled.jpg,10/02/2023 10:09,17.0:41,18.0:42,49.8561730000000,0.607874000000000,,Veullettes sur mer - le pont rouge,64465,Observation #64465,https://biolit.fr/observations/observation-64465/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175229-1-scaled.jpg,,,non-identifiable +N1,64459,Sortie #64459,https://biolit.fr/sorties/sortie-64459/,Magali LHOMMET CARPENTIER,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174804-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175101-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175229-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175706-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183242-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183337-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-1-scaled.jpg,10/02/2023 10:09,17.0:41,18.0:42,49.8561730000000,0.607874000000000,,Veullettes sur mer - le pont rouge,64467,Observation #64467,https://biolit.fr/observations/observation-64467/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175706-1-scaled.jpg,,,Ne sais pas +N1,64459,Sortie #64459,https://biolit.fr/sorties/sortie-64459/,Magali LHOMMET CARPENTIER,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174804-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175101-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175229-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175706-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183242-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183337-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-1-scaled.jpg,10/02/2023 10:09,17.0:41,18.0:42,49.8561730000000,0.607874000000000,,Veullettes sur mer - le pont rouge,64469,Observation #64469,https://biolit.fr/observations/observation-64469/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183242-1-scaled.jpg,,,Ne sais pas +N1,64459,Sortie #64459,https://biolit.fr/sorties/sortie-64459/,Magali LHOMMET CARPENTIER,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174804-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175101-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175229-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175706-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183242-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183337-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-1-scaled.jpg,10/02/2023 10:09,17.0:41,18.0:42,49.8561730000000,0.607874000000000,,Veullettes sur mer - le pont rouge,64471,Observation #64471,https://biolit.fr/observations/observation-64471/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183337-1-scaled.jpg,,,Ne sais pas +N1,64459,Sortie #64459,https://biolit.fr/sorties/sortie-64459/,Magali LHOMMET CARPENTIER,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174804-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175101-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175229-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175706-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183242-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183337-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-1-scaled.jpg,10/02/2023 10:09,17.0:41,18.0:42,49.8561730000000,0.607874000000000,,Veullettes sur mer - le pont rouge,64473,Observation #64473,https://biolit.fr/observations/observation-64473/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183337-1-scaled.jpg,,TRUE,Ne sais pas +N1,64459,Sortie #64459,https://biolit.fr/sorties/sortie-64459/,Magali LHOMMET CARPENTIER,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174804-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175101-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175229-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175706-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183242-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183337-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-1-scaled.jpg,10/02/2023 10:09,17.0:41,18.0:42,49.8561730000000,0.607874000000000,,Veullettes sur mer - le pont rouge,64475,Observation #64475,https://biolit.fr/observations/observation-64475/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-1-scaled.jpg,,TRUE,Ne sais pas +N1,64486,Sortie #64486,https://biolit.fr/sorties/sortie-64486/,Magali LHOMMET CARPENTIER,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174839-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174914-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174920-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175014-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_180848-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_181816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_182313-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_182327-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-2-scaled.jpg,10/02/2023 10:16,17.0:41,18.0:42,49.8564500000000,0.607831000000000,,Veullettes sur mer - le pont rouge,64488,Observation #64488,https://biolit.fr/observations/observation-64488/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174839-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174914-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174920-1-scaled.jpg,,,Ne sais pas +N1,64486,Sortie #64486,https://biolit.fr/sorties/sortie-64486/,Magali LHOMMET CARPENTIER,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174839-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174914-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174920-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175014-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_180848-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_181816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_182313-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_182327-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-2-scaled.jpg,10/02/2023 10:16,17.0:41,18.0:42,49.8564500000000,0.607831000000000,,Veullettes sur mer - le pont rouge,64490,Observation #64490,https://biolit.fr/observations/observation-64490/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175014-1-scaled.jpg,,TRUE,Identifiable +N1,64486,Sortie #64486,https://biolit.fr/sorties/sortie-64486/,Magali LHOMMET CARPENTIER,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174839-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174914-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174920-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175014-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_180848-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_181816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_182313-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_182327-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-2-scaled.jpg,10/02/2023 10:16,17.0:41,18.0:42,49.8564500000000,0.607831000000000,,Veullettes sur mer - le pont rouge,64492,Observation #64492,https://biolit.fr/observations/observation-64492/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_180848-1-scaled.jpg,,TRUE,Identifiable +N1,64486,Sortie #64486,https://biolit.fr/sorties/sortie-64486/,Magali LHOMMET CARPENTIER,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174839-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174914-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174920-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175014-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_180848-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_181816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_182313-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_182327-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-2-scaled.jpg,10/02/2023 10:16,17.0:41,18.0:42,49.8564500000000,0.607831000000000,,Veullettes sur mer - le pont rouge,64494,Observation #64494,https://biolit.fr/observations/observation-64494/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_181816-1-scaled.jpg,,TRUE,Identifiable +N1,64486,Sortie #64486,https://biolit.fr/sorties/sortie-64486/,Magali LHOMMET CARPENTIER,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174839-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174914-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174920-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175014-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_180848-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_181816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_182313-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_182327-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-2-scaled.jpg,10/02/2023 10:16,17.0:41,18.0:42,49.8564500000000,0.607831000000000,,Veullettes sur mer - le pont rouge,64496,Observation #64496,https://biolit.fr/observations/observation-64496/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_182313-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_182327-1-scaled.jpg,,,Ne sais pas +N1,64486,Sortie #64486,https://biolit.fr/sorties/sortie-64486/,Magali LHOMMET CARPENTIER,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174839-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174914-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_174920-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_175014-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_180848-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_181816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_182313-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_182327-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-2-scaled.jpg,10/02/2023 10:16,17.0:41,18.0:42,49.8564500000000,0.607831000000000,,Veullettes sur mer - le pont rouge,64498,Observation #64498,https://biolit.fr/observations/observation-64498/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2a0e08fac8ee1639816bc40e7a543125/2023/10/20230930_183939-2-scaled.jpg,,,Ne sais pas +N1,64639,Sortie #64639,https://biolit.fr/sorties/sortie-64639/,Rintz Cam Ly,https://biolit.fr/wp-content/uploads/jet-form-builder/2732bff279b4dea01fc8689a49331717/2023/10/WhatsApp-Image-2023-09-12-at-16.40.57.jpeg,10/06/2023 13:57,0.0000000,0.000001,0,0,Planète Mer (antenne Dinard),A,,,,,,,,,, +N1,64642,Sortie #64642,https://biolit.fr/sorties/sortie-64642/,Rintz Cam Ly,https://biolit.fr/wp-content/uploads/jet-form-builder/2732bff279b4dea01fc8689a49331717/2023/10/WhatsApp-Image-2023-09-12-at-16.40.38.jpeg,10/06/2023 13:59,0.0000000,0.000001,0,0,Planète Mer (antenne Dinard),A,,,,,,,,,, +N1,64662,Sortie #64662,https://biolit.fr/sorties/sortie-64662/,RONDY Philippe,https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7681-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7682-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7683-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7684-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7685-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7686-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7687-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7688-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7690-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7691-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7692-scaled.jpg,10/06/2023 14:39,12.0000000,14.0000000,43.4365800000000,6.81667300000000,,Saint-Raphael,,,,,,,,,, +N1,64679,Sortie #64679,https://biolit.fr/sorties/sortie-64679/,RONDY Philippe,https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7839-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7841-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7842-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7845-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7846-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7847-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7849-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7851-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7852-scaled.jpg,10/06/2023 14:44,12.0000000,14.0000000,43.4149770000000,6.85386700000000,,Saint-Raphael,64681,Observation #64681,https://biolit.fr/observations/observation-64681/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7840-scaled.jpg,,,Ne sais pas +N1,64690,Sortie #64690,https://biolit.fr/sorties/sortie-64690/,RONDY Philippe,https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7914-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7915-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7916-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7918-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7920-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7921-scaled.jpg,10/06/2023 18:08,16.0000000,17.0000000,43.4144650000000,6.81181000000000,,saint-raphael,64692,Observation #64692,https://biolit.fr/observations/observation-64692/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d5953cd8d3b9fc8bfcf2cddba4a8de10/2023/10/IMG_7914-scaled.jpg,,,Ne sais pas +N1,64725,Sortie #64725,https://biolit.fr/sorties/sortie-64725/,Cecars,https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3103-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3096-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3095-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3076-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3072-scaled.jpg,10/07/2023 23:01,15.0000000,16.0:15,49.9173490000000,0.986695000000000,,Varengeville,64727,Observation #64727,https://biolit.fr/observations/observation-64727/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3103-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3096-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3095-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3076-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3072-scaled.jpg,,, +N1,64725,Sortie #64725,https://biolit.fr/sorties/sortie-64725/,Cecars,https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3103-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3096-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3095-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3076-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3072-scaled.jpg,10/07/2023 23:01,15.0000000,16.0:15,49.9173490000000,0.986695000000000,,Varengeville,64729,Observation #64729,https://biolit.fr/observations/observation-64729/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3103-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3096-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3095-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3076-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2bb2e06309c28fca3a12fbe571e57472/2023/10/AnyConv.com__IMG_3072-scaled.jpg,,,Ne sais pas +N1,64760,Sortie #64760,https://biolit.fr/sorties/sortie-64760/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Fucus-spirale-en-octobre-5-10-2023.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/gibbules-au-sec-5-10-2023-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-identificat°-2023-10-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Observat°-2023-10-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-5-10-2023.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-bigorneau-5-10-2023.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-gibbule-ombiliquee-5-10-2023.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-5-10-2023.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-bigorneau-5-10-2023.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-gibbule-ombiliquee-5-10-2023.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-monodonte-5-10-2023.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-tous-5-10-2023-scaled.jpeg,10/09/2023 15:47,17.0000000,18.0000000,47.6077400000000,-2.74704100000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Gornevez Séné 56860,64762,Observation #64762,https://biolit.fr/observations/observation-64762/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Fucus-spirale-en-octobre-5-10-2023.png,,,Identifiable +N1,64776,Sortie #64776,https://biolit.fr/sorties/sortie-64776/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Fucus-spirale-en-octobre-5-10-2023-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/gibbules-au-sec-5-10-2023-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-identificat°-2023-10-5-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Observat°-2023-10-5-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-5-10-2023-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-bigorneau-5-10-2023-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-gibbule-ombiliquee-5-10-2023-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-5-10-2023-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-bigorneau-5-10-2023-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-gibbule-ombiliquee-5-10-2023-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-monodonte-5-10-2023-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-tous-5-10-2023-1-scaled.jpeg,10/09/2023 16:00,17.0000000,18.0000000,47.6076820000000,-2.74688000000000,,Gornevez Séné 56860,,,,,,,,,, +N1,64792,Sortie #64792,https://biolit.fr/sorties/sortie-64792/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Fucus-spirale-en-octobre-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/gibbules-au-sec-5-10-2023-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-identificat°-2023-10-5-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Observat°-2023-10-5-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-5-10-2023-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-bigorneau-5-10-2023-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-gibbule-ombiliquee-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-5-10-2023-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-bigorneau-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-gibbule-ombiliquee-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-monodonte-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-tous-5-10-2023-2-scaled.jpeg,10/09/2023 16:07,17.0000000,18.0000000,47.6076260000000,-2.74692100000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Gornevez Séné 56860,64796,Observation #64796,https://biolit.fr/observations/observation-64796/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/gibbules-au-sec-5-10-2023-2-scaled.jpeg,,,Identifiable +N1,64792,Sortie #64792,https://biolit.fr/sorties/sortie-64792/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Fucus-spirale-en-octobre-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/gibbules-au-sec-5-10-2023-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-identificat°-2023-10-5-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Observat°-2023-10-5-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-5-10-2023-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-bigorneau-5-10-2023-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-gibbule-ombiliquee-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-5-10-2023-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-bigorneau-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-gibbule-ombiliquee-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-monodonte-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-tous-5-10-2023-2-scaled.jpeg,10/09/2023 16:07,17.0000000,18.0000000,47.6076260000000,-2.74692100000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Gornevez Séné 56860,64798,Observation #64798,https://biolit.fr/observations/observation-64798/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-bigorneau-5-10-2023-2.jpeg,,TRUE,Identifiable +N1,64792,Sortie #64792,https://biolit.fr/sorties/sortie-64792/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Fucus-spirale-en-octobre-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/gibbules-au-sec-5-10-2023-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-identificat°-2023-10-5-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Observat°-2023-10-5-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-5-10-2023-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-bigorneau-5-10-2023-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-gibbule-ombiliquee-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-5-10-2023-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-bigorneau-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-gibbule-ombiliquee-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-monodonte-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-tous-5-10-2023-2-scaled.jpeg,10/09/2023 16:07,17.0000000,18.0000000,47.6076260000000,-2.74692100000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Gornevez Séné 56860,64800,Observation #64800,https://biolit.fr/observations/observation-64800/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-gibbule-ombiliquee-5-10-2023-2.png,,TRUE,Identifiable +N1,64792,Sortie #64792,https://biolit.fr/sorties/sortie-64792/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Fucus-spirale-en-octobre-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/gibbules-au-sec-5-10-2023-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-identificat°-2023-10-5-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Observat°-2023-10-5-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-5-10-2023-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-bigorneau-5-10-2023-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-gibbule-ombiliquee-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-5-10-2023-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-bigorneau-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-gibbule-ombiliquee-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-monodonte-5-10-2023-2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-tous-5-10-2023-2-scaled.jpeg,10/09/2023 16:07,17.0000000,18.0000000,47.6076260000000,-2.74692100000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Gornevez Séné 56860,64811,Observation #64811,https://biolit.fr/observations/observation-64811/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-monodonte-5-10-2023-2.png,,TRUE,Identifiable +N1,64803,Sortie #64803,https://biolit.fr/sorties/sortie-64803/,LE CORRE DYLANN,https://biolit.fr/wp-content/uploads/jet-form-builder/0a9e301fb2b8201f38d0105cde2e6367/2023/10/20230919_132339-scaled.jpg,10/09/2023 16:16,13.0000000,14.0000000,48.0891110000000,-4.30515500000000,,DOUARNENEZ,64807,Observation #64807,https://biolit.fr/observations/observation-64807/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0a9e301fb2b8201f38d0105cde2e6367/2023/10/20230919_132339-scaled.jpg,,,Identifiable +N1,64803,Sortie #64803,https://biolit.fr/sorties/sortie-64803/,LE CORRE DYLANN,https://biolit.fr/wp-content/uploads/jet-form-builder/0a9e301fb2b8201f38d0105cde2e6367/2023/10/20230919_132339-scaled.jpg,10/09/2023 16:16,13.0000000,14.0000000,48.0891110000000,-4.30515500000000,,DOUARNENEZ,64809,Observation #64809,https://biolit.fr/observations/observation-64809/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0a9e301fb2b8201f38d0105cde2e6367/2023/10/20230919_132339-scaled.jpg,,,Identifiable +N1,64848,Sortie #64848,https://biolit.fr/sorties/sortie-64848/,YAHIAOUI Sofiane,https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0576-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0578-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0581-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0583-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0592-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0593-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0594-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0597-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0598-scaled.jpg,10/10/2023 10:47,9.0000000,16.0000000,49.6469490000000,0.153825000000000,,saint-jouin-bruneval,,,,,,,,,, +N1,64870,Sortie #64870,https://biolit.fr/sorties/sortie-64870/,YAHIAOUI Sofiane,https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0601-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0605-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0606-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0607-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0608-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0609-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0610-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0611-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0612-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0613-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0615-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0616-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0618-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0619-scaled.jpeg,10/10/2023 10:50,9.0000000,16.0000000,49.6467400000000,0.153760000000000,,saint-jouin-bruneval,,,,,,,,,, +N1,64892,Sortie #64892,https://biolit.fr/sorties/sortie-64892/,YAHIAOUI Sofiane,https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0622-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0623-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0624-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0625-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0626-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0629-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0630-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0636-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0637-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0639-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0640-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0641-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0642-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0644-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0645-scaled.jpg,10/10/2023 10:52,9.0000000,16.0000000,49.6467820000000,0.153916000000000,,saint-jouin-bruneval,,,,,,,,,, +N1,64914,Sortie #64914,https://biolit.fr/sorties/sortie-64914/,YAHIAOUI Sofiane,https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0652-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0653-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0654-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0655-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0656-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0676-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0677-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0679-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0680-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0681-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0682-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0683-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0690-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0691-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0692-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0693-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0694-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0695-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0704-scaled.jpeg,10/10/2023 10:56,9.0000000,16.0000000,49.6485020000000,0.154002000000000,,saint-jouin-bruneval,,,,,,,,,, +N1,64933,Sortie #64933,https://biolit.fr/sorties/sortie-64933/,YAHIAOUI Sofiane,https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0706-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0707-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0712-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0714-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0715-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0716-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0717-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0718-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0719-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0720-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0721-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/472aa91aaafdc7e6f13d8f6a23a882ff/2023/10/IMG_0727-scaled.jpg,10/10/2023 10:59,9.0000000,16.0000000,49.6473830000000,0.153927000000000,,saint-jouin-bruneval,,,,,,,,,, +N1,65012,Sortie #65012,https://biolit.fr/sorties/sortie-65012/,DELEYE EMMANUEL,https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0081-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0091-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0116-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0128-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0135-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0137-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0143-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0145-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0152-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0158-1-scaled.jpg,10/11/2023 11:15,14.0000000,16.0000000,47.2591530000000,-2.1707550000000,,saint brévin les pins,65014,Observation #65014,https://biolit.fr/observations/observation-65014/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0081-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0091-1-scaled.jpg,,,Identifiable +N1,65012,Sortie #65012,https://biolit.fr/sorties/sortie-65012/,DELEYE EMMANUEL,https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0081-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0091-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0116-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0128-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0135-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0137-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0143-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0145-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0152-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0158-1-scaled.jpg,10/11/2023 11:15,14.0000000,16.0000000,47.2591530000000,-2.1707550000000,,saint brévin les pins,65016,Observation #65016,https://biolit.fr/observations/observation-65016/,Charadrius hiaticula,Grand gravelot,,https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0128-1-scaled.jpg,,,Identifiable +N1,65012,Sortie #65012,https://biolit.fr/sorties/sortie-65012/,DELEYE EMMANUEL,https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0081-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0091-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0116-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0128-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0135-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0137-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0143-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0145-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0152-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0158-1-scaled.jpg,10/11/2023 11:15,14.0000000,16.0000000,47.2591530000000,-2.1707550000000,,saint brévin les pins,65018,Observation #65018,https://biolit.fr/observations/observation-65018/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0116-1-scaled.jpg,,,Identifiable +N1,65012,Sortie #65012,https://biolit.fr/sorties/sortie-65012/,DELEYE EMMANUEL,https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0081-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0091-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0116-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0128-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0135-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0137-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0143-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0145-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0152-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0158-1-scaled.jpg,10/11/2023 11:15,14.0000000,16.0000000,47.2591530000000,-2.1707550000000,,saint brévin les pins,65020,Observation #65020,https://biolit.fr/observations/observation-65020/,Synodus variegatus,Poisson-lézard tacheté,,https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0145-1-scaled.jpg,,,Identifiable +N1,65012,Sortie #65012,https://biolit.fr/sorties/sortie-65012/,DELEYE EMMANUEL,https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0081-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0091-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0116-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0128-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0135-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0137-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0143-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0145-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0152-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0158-1-scaled.jpg,10/11/2023 11:15,14.0000000,16.0000000,47.2591530000000,-2.1707550000000,,saint brévin les pins,65022,Observation #65022,https://biolit.fr/observations/observation-65022/,Charadrius hiaticula,Grand gravelot,,https://biolit.fr/wp-content/uploads/jet-form-builder/f592e7e090a693bfab0bb9cb52286c43/2023/10/IMG_0081-1-scaled.jpg,,,Identifiable +N1,65031,Sortie #65031,https://biolit.fr/sorties/sortie-65031/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/11-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/21-scaled.jpg,10/11/2023 14:28,14.0000000,17.0000000,47.266898000000,-2.17040600000000,,St Brévin les Pins,,,,,,,,,, +N1,65053,Sortie #65053,https://biolit.fr/sorties/sortie-65053/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/11-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/15.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/19.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/20.jpg,10/11/2023 14:42,14.0000000,17.0000000,47.2660930000000,-2.17061800000000,,St Brévin les Pins,65063,Observation #65063,https://biolit.fr/observations/observation-65063/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/20.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/19.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/17.jpg,,,Identifiable +N1,65053,Sortie #65053,https://biolit.fr/sorties/sortie-65053/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/11-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/15.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/19.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/20.jpg,10/11/2023 14:42,14.0000000,17.0000000,47.2660930000000,-2.17061800000000,,St Brévin les Pins,65067,Observation #65067,https://biolit.fr/observations/observation-65067/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/8.jpg,,,Identifiable +N1,65053,Sortie #65053,https://biolit.fr/sorties/sortie-65053/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/11-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/15.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/19.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/20.jpg,10/11/2023 14:42,14.0000000,17.0000000,47.2660930000000,-2.17061800000000,,St Brévin les Pins,65069,Observation #65069,https://biolit.fr/observations/observation-65069/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/17.jpg,,,Identifiable +N1,65053,Sortie #65053,https://biolit.fr/sorties/sortie-65053/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/11-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/15.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/19.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/20.jpg,10/11/2023 14:42,14.0000000,17.0000000,47.2660930000000,-2.17061800000000,,St Brévin les Pins,65071,Observation #65071,https://biolit.fr/observations/observation-65071/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/6.jpg,,,Identifiable +N1,65053,Sortie #65053,https://biolit.fr/sorties/sortie-65053/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/11-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/15.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/19.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/20.jpg,10/11/2023 14:42,14.0000000,17.0000000,47.2660930000000,-2.17061800000000,,St Brévin les Pins,65073,Observation #65073,https://biolit.fr/observations/observation-65073/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/11-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/13.jpg,,,Ne sais pas +N1,65053,Sortie #65053,https://biolit.fr/sorties/sortie-65053/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/11-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/15.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/19.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/20.jpg,10/11/2023 14:42,14.0000000,17.0000000,47.2660930000000,-2.17061800000000,,St Brévin les Pins,65075,Observation #65075,https://biolit.fr/observations/observation-65075/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/14.jpg,,,Identifiable +N1,65053,Sortie #65053,https://biolit.fr/sorties/sortie-65053/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/11-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/15.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/19.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/20.jpg,10/11/2023 14:42,14.0000000,17.0000000,47.2660930000000,-2.17061800000000,,St Brévin les Pins,65077,Observation #65077,https://biolit.fr/observations/observation-65077/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/15.jpg,,,Ne sais pas +N1,65053,Sortie #65053,https://biolit.fr/sorties/sortie-65053/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/11-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/15.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/19.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/20.jpg,10/11/2023 14:42,14.0000000,17.0000000,47.2660930000000,-2.17061800000000,,St Brévin les Pins,65079,Observation #65079,https://biolit.fr/observations/observation-65079/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2023/10/10.jpg,,,Ne sais pas +N1,65099,Sortie #65099,https://biolit.fr/sorties/sortie-65099/,TIGNON Anthony,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010140426-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010140429-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142139-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143141-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143227-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143327-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143357_01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150333-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150645-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150648-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150732-scaled.jpg,10/11/2023 16:59,14.0000000,17.0000000,47.2670010000000,-2.17026100000000,,SAINT BREVIN LES PINS,65101,Observation #65101,https://biolit.fr/observations/observation-65101/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010140426-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010140429-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142139-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143141-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143227-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143327-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143357_01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150333-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150645-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150648-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150732-scaled.jpg,,,Ne sais pas +N1,65120,Sortie #65120,https://biolit.fr/sorties/sortie-65120/,TIGNON Anthony,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010140429-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142139-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142807-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143141-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143145-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143220-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143226-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143227-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143322-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143327-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143357_01-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150329-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150333-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150643-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150645-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150648-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150732-1-scaled.jpg,10/12/2023 11:42,14.0000000,17.0000000,47.2646450000000,-2.17072200000000,,SAINT BREVIN LES PINS,,,,,,,,,, +N1,65139,Sortie #65139,https://biolit.fr/sorties/sortie-65139/,TIGNON Anthony,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010140429-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142139-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142807-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143141-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143145-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143220-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143226-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143227-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143322-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143327-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143357_01-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150329-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150333-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150643-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150645-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150648-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150732-2-scaled.jpg,10/12/2023 11:48,14.0000000,17.0000000,47.2664480000000,-2.17056200000000,,SAINT BREVIN LES PINS,65141,Observation #65141,https://biolit.fr/observations/observation-65141/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142139-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142807-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143141-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143145-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143220-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143227-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143226-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143327-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143322-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143357_01-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150329-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150333-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150643-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150648-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150645-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150732-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010140429-2-scaled.jpg,,,Ne sais pas +N1,65139,Sortie #65139,https://biolit.fr/sorties/sortie-65139/,TIGNON Anthony,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010140429-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142139-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142807-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143141-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143145-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143220-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143226-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143227-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143322-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143327-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143357_01-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150329-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150333-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150643-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150645-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150648-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150732-2-scaled.jpg,10/12/2023 11:48,14.0000000,17.0000000,47.2664480000000,-2.17056200000000,,SAINT BREVIN LES PINS,65143,Observation #65143,https://biolit.fr/observations/observation-65143/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142807-2-scaled.jpg,,,Ne sais pas +N1,65139,Sortie #65139,https://biolit.fr/sorties/sortie-65139/,TIGNON Anthony,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010140429-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142139-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142807-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143141-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143145-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143220-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143226-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143227-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143322-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143327-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143357_01-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150329-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150333-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150643-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150645-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150648-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150732-2-scaled.jpg,10/12/2023 11:48,14.0000000,17.0000000,47.2664480000000,-2.17056200000000,,SAINT BREVIN LES PINS,65145,Observation #65145,https://biolit.fr/observations/observation-65145/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143141-2-scaled.jpg,,,Ne sais pas +N1,65139,Sortie #65139,https://biolit.fr/sorties/sortie-65139/,TIGNON Anthony,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010140429-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142139-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142807-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143141-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143145-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143220-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143226-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143227-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143322-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143327-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143357_01-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150329-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150333-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150643-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150645-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150648-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150732-2-scaled.jpg,10/12/2023 11:48,14.0000000,17.0000000,47.2664480000000,-2.17056200000000,,SAINT BREVIN LES PINS,65147,Observation #65147,https://biolit.fr/observations/observation-65147/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143145-2-scaled.jpg,,,Ne sais pas +N1,65139,Sortie #65139,https://biolit.fr/sorties/sortie-65139/,TIGNON Anthony,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010140429-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142139-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142807-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143141-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143145-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143220-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143226-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143227-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143322-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143327-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143357_01-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150329-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150333-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150643-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150645-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150648-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150732-2-scaled.jpg,10/12/2023 11:48,14.0000000,17.0000000,47.2664480000000,-2.17056200000000,,SAINT BREVIN LES PINS,65149,Observation #65149,https://biolit.fr/observations/observation-65149/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143220-2-scaled.jpg,,,Ne sais pas +N1,65139,Sortie #65139,https://biolit.fr/sorties/sortie-65139/,TIGNON Anthony,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010140429-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142139-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142807-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143141-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143145-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143220-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143226-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143227-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143322-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143327-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143357_01-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150329-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150333-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150643-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150645-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150648-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150732-2-scaled.jpg,10/12/2023 11:48,14.0000000,17.0000000,47.2664480000000,-2.17056200000000,,SAINT BREVIN LES PINS,65151,Observation #65151,https://biolit.fr/observations/observation-65151/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150333-2-scaled.jpg,,, +N1,65139,Sortie #65139,https://biolit.fr/sorties/sortie-65139/,TIGNON Anthony,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010140429-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142139-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142807-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143141-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143145-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143220-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143226-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143227-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143322-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143327-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143357_01-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150329-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150333-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150643-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150645-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150648-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150732-2-scaled.jpg,10/12/2023 11:48,14.0000000,17.0000000,47.2664480000000,-2.17056200000000,,SAINT BREVIN LES PINS,65153,Observation #65153,https://biolit.fr/observations/observation-65153/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150732-2-scaled.jpg,,, +N1,65139,Sortie #65139,https://biolit.fr/sorties/sortie-65139/,TIGNON Anthony,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010140429-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142139-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010142807-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143141-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143145-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143220-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143226-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143227-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143322-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143327-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143357_01-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150329-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150333-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150643-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150645-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150648-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010150732-2-scaled.jpg,10/12/2023 11:48,14.0000000,17.0000000,47.2664480000000,-2.17056200000000,,SAINT BREVIN LES PINS,65155,Observation #65155,https://biolit.fr/observations/observation-65155/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2023/10/IMG20231010143357_01-2-scaled.jpg,,, +N1,65170,Sortie #65170,https://biolit.fr/sorties/sortie-65170/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-8-scaled.jpg,10/12/2023 16:18,14.0000000,17.0000000,47.2509020000000,-2.16976200000000,,St Brévin Les Pins (Loire Atlantique),65172,Observation #65172,https://biolit.fr/observations/observation-65172/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-1-scaled.jpg,,,Ne sais pas +N1,65170,Sortie #65170,https://biolit.fr/sorties/sortie-65170/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-8-scaled.jpg,10/12/2023 16:18,14.0000000,17.0000000,47.2509020000000,-2.16976200000000,,St Brévin Les Pins (Loire Atlantique),65174,Observation #65174,https://biolit.fr/observations/observation-65174/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-2-scaled.jpg,,,Ne sais pas +N1,65170,Sortie #65170,https://biolit.fr/sorties/sortie-65170/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-8-scaled.jpg,10/12/2023 16:18,14.0000000,17.0000000,47.2509020000000,-2.16976200000000,,St Brévin Les Pins (Loire Atlantique),65176,Observation #65176,https://biolit.fr/observations/observation-65176/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-3-scaled.jpg,,,Ne sais pas +N1,65170,Sortie #65170,https://biolit.fr/sorties/sortie-65170/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-8-scaled.jpg,10/12/2023 16:18,14.0000000,17.0000000,47.2509020000000,-2.16976200000000,,St Brévin Les Pins (Loire Atlantique),65178,Observation #65178,https://biolit.fr/observations/observation-65178/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-4-scaled.jpg,,,Ne sais pas +N1,65170,Sortie #65170,https://biolit.fr/sorties/sortie-65170/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-8-scaled.jpg,10/12/2023 16:18,14.0000000,17.0000000,47.2509020000000,-2.16976200000000,,St Brévin Les Pins (Loire Atlantique),65180,Observation #65180,https://biolit.fr/observations/observation-65180/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-5.jpg,,,Ne sais pas +N1,65170,Sortie #65170,https://biolit.fr/sorties/sortie-65170/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-8-scaled.jpg,10/12/2023 16:18,14.0000000,17.0000000,47.2509020000000,-2.16976200000000,,St Brévin Les Pins (Loire Atlantique),65182,Observation #65182,https://biolit.fr/observations/observation-65182/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-6-scaled.jpg,,,Ne sais pas +N1,65170,Sortie #65170,https://biolit.fr/sorties/sortie-65170/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-8-scaled.jpg,10/12/2023 16:18,14.0000000,17.0000000,47.2509020000000,-2.16976200000000,,St Brévin Les Pins (Loire Atlantique),65184,Observation #65184,https://biolit.fr/observations/observation-65184/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-7-scaled.jpg,,,Ne sais pas +N1,65170,Sortie #65170,https://biolit.fr/sorties/sortie-65170/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-8-scaled.jpg,10/12/2023 16:18,14.0000000,17.0000000,47.2509020000000,-2.16976200000000,,St Brévin Les Pins (Loire Atlantique),65186,Observation #65186,https://biolit.fr/observations/observation-65186/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2023/10/St-Brevin-8-scaled.jpg,,,Ne sais pas +N1,65194,Sortie #65194,https://biolit.fr/sorties/sortie-65194/,CATARINA Sébastien,https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/IMG_2917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/IMG_2918-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/IMG_2919-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/IMG_2920-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/IMG_2921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/IMG_2922-scaled.jpg,10/12/2023 17:01,10.0000000,13.0000000,49.4156950000000,0.181446000000000,,Honfleur,,,,,,,,,, +N1,65198,Sortie #65198,https://biolit.fr/sorties/sortie-65198/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/JEUNE-GOELAND-scaled.jpg,10/13/2023 9:25,14.0000000,17.0000000,47.2625810000000,-2.17103900000000,,SAINT BREVIN LES PINS,,,,,,,,,, +N1,65208,Sortie #65208,https://biolit.fr/sorties/sortie-65208/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GOELAND-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/JEUNE-GOELAND-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/BERNIQUE-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAUX-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/ESCARGOT-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/INSECTE-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/PALOURDES-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAU-EN-VOLE-scaled.jpg,10/13/2023 9:31,14.0000000,17.0000000,47.2625810000000,-2.17103900000000,,SAINT BREVIN LES PINS,65210,Observation #65210,https://biolit.fr/observations/observation-65210/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GOELAND-scaled.jpg,,,Identifiable +N1,65223,Sortie #65223,https://biolit.fr/sorties/sortie-65223/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/PALOURDES-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/INSECTE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAUX-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAU-EN-VOLE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/ESCARGOT-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/COQUE-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GOELAND-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/JEUNE-GOELAND-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/BERNIQUE-1-scaled.jpg,10/13/2023 9:37,14.0000000,17.0000000,47.2632470000000,-2.17119500000000,,SAINT BREVIN LES PINS,65225,Observation #65225,https://biolit.fr/observations/observation-65225/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/PALOURDES-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/INSECTE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAUX-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAU-EN-VOLE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/ESCARGOT-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/COQUE-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GOELAND-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/JEUNE-GOELAND-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/BERNIQUE-1-scaled.jpg,,,Ne sais pas +N1,65223,Sortie #65223,https://biolit.fr/sorties/sortie-65223/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/PALOURDES-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/INSECTE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAUX-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAU-EN-VOLE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/ESCARGOT-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/COQUE-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GOELAND-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/JEUNE-GOELAND-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/BERNIQUE-1-scaled.jpg,10/13/2023 9:37,14.0000000,17.0000000,47.2632470000000,-2.17119500000000,,SAINT BREVIN LES PINS,65227,Observation #65227,https://biolit.fr/observations/observation-65227/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/PALOURDES-1-scaled.jpg,,,Ne sais pas +N1,65223,Sortie #65223,https://biolit.fr/sorties/sortie-65223/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/PALOURDES-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/INSECTE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAUX-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAU-EN-VOLE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/ESCARGOT-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/COQUE-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GOELAND-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/JEUNE-GOELAND-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/BERNIQUE-1-scaled.jpg,10/13/2023 9:37,14.0000000,17.0000000,47.2632470000000,-2.17119500000000,,SAINT BREVIN LES PINS,65229,Observation #65229,https://biolit.fr/observations/observation-65229/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/INSECTE-1-scaled.jpg,,,Ne sais pas +N1,65223,Sortie #65223,https://biolit.fr/sorties/sortie-65223/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/PALOURDES-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/INSECTE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAUX-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAU-EN-VOLE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/ESCARGOT-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/COQUE-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GOELAND-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/JEUNE-GOELAND-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/BERNIQUE-1-scaled.jpg,10/13/2023 9:37,14.0000000,17.0000000,47.2632470000000,-2.17119500000000,,SAINT BREVIN LES PINS,65231,Observation #65231,https://biolit.fr/observations/observation-65231/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAUX-1-scaled.jpg,,,Ne sais pas +N1,65223,Sortie #65223,https://biolit.fr/sorties/sortie-65223/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/PALOURDES-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/INSECTE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAUX-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAU-EN-VOLE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/ESCARGOT-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/COQUE-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GOELAND-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/JEUNE-GOELAND-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/BERNIQUE-1-scaled.jpg,10/13/2023 9:37,14.0000000,17.0000000,47.2632470000000,-2.17119500000000,,SAINT BREVIN LES PINS,65233,Observation #65233,https://biolit.fr/observations/observation-65233/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAU-EN-VOLE-1-scaled.jpg,,,Ne sais pas +N1,65223,Sortie #65223,https://biolit.fr/sorties/sortie-65223/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/PALOURDES-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/INSECTE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAUX-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAU-EN-VOLE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/ESCARGOT-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/COQUE-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GOELAND-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/JEUNE-GOELAND-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/BERNIQUE-1-scaled.jpg,10/13/2023 9:37,14.0000000,17.0000000,47.2632470000000,-2.17119500000000,,SAINT BREVIN LES PINS,65235,Observation #65235,https://biolit.fr/observations/observation-65235/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/ESCARGOT-1-scaled.jpg,,,Ne sais pas +N1,65223,Sortie #65223,https://biolit.fr/sorties/sortie-65223/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/PALOURDES-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/INSECTE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAUX-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAU-EN-VOLE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/ESCARGOT-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/COQUE-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GOELAND-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/JEUNE-GOELAND-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/BERNIQUE-1-scaled.jpg,10/13/2023 9:37,14.0000000,17.0000000,47.2632470000000,-2.17119500000000,,SAINT BREVIN LES PINS,65237,Observation #65237,https://biolit.fr/observations/observation-65237/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/COQUE-scaled.jpg,,,Ne sais pas +N1,65223,Sortie #65223,https://biolit.fr/sorties/sortie-65223/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/PALOURDES-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/INSECTE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAUX-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAU-EN-VOLE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/ESCARGOT-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/COQUE-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GOELAND-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/JEUNE-GOELAND-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/BERNIQUE-1-scaled.jpg,10/13/2023 9:37,14.0000000,17.0000000,47.2632470000000,-2.17119500000000,,SAINT BREVIN LES PINS,65239,Observation #65239,https://biolit.fr/observations/observation-65239/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GOELAND-1-scaled.jpg,,,Ne sais pas +N1,65223,Sortie #65223,https://biolit.fr/sorties/sortie-65223/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/PALOURDES-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/INSECTE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAUX-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAU-EN-VOLE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/ESCARGOT-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/COQUE-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GOELAND-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/JEUNE-GOELAND-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/BERNIQUE-1-scaled.jpg,10/13/2023 9:37,14.0000000,17.0000000,47.2632470000000,-2.17119500000000,,SAINT BREVIN LES PINS,65241,Observation #65241,https://biolit.fr/observations/observation-65241/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/JEUNE-GOELAND-2-scaled.jpg,,,Ne sais pas +N1,65223,Sortie #65223,https://biolit.fr/sorties/sortie-65223/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/PALOURDES-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/INSECTE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAUX-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GRAVELEAU-EN-VOLE-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/ESCARGOT-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/COQUE-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/GOELAND-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/JEUNE-GOELAND-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/BERNIQUE-1-scaled.jpg,10/13/2023 9:37,14.0000000,17.0000000,47.2632470000000,-2.17119500000000,,SAINT BREVIN LES PINS,65243,Observation #65243,https://biolit.fr/observations/observation-65243/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2023/10/BERNIQUE-1-scaled.jpg,,,Ne sais pas +N1,65257,Sortie #65257,https://biolit.fr/sorties/sortie-65257/,Hupp,FALSE,10/13/2023 16:32,16.0:32,16.0:32,48.5948840,-2.3227480,Planète Mer,jjjj,,,,,,,,,, +N1,65276,Sortie #65276,https://biolit.fr/sorties/sortie-65276/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/image1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-identificat°-2023-10-5-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Observat°-2023-10-5-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-gibbule-ombiliquee-5-10-2023-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-5-10-2023-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-bigorneau-5-10-2023-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-tous-5-10-2023-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-5-10-2023-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-bigorneau-5-10-2023-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-gibbule-ombiliquee-5-10-2023-3.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-monodonte-5-10-2023-3.png,10/14/2023 10:53,17.0000000,18.0000000,47.6076730000000,-2.74670200000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Gornevez, Séné 56860",,,,,,,,,, +N1,65291,Sortie #65291,https://biolit.fr/sorties/sortie-65291/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/image1-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-identificat°-2023-10-5-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Observat°-2023-10-5-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-gibbule-ombiliquee-5-10-2023-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-5-10-2023-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-bigorneau-5-10-2023-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-tous-5-10-2023-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-5-10-2023-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-bigorneau-5-10-2023-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-gibbule-ombiliquee-5-10-2023-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-monodonte-5-10-2023-4.png,10/14/2023 10:59,17.0000000,18.0000000,47.6073830000000,-2.74665100000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Gornevez, Séné 56860",65293,Observation #65293,https://biolit.fr/observations/observation-65293/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/image1-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-gibbule-ombiliquee-5-10-2023-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-bigorneau-5-10-2023-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-bigorneau-5-10-2023-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-gibbule-ombiliquee-5-10-2023-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-monodonte-5-10-2023-4.png,,TRUE,Identifiable +N1,65291,Sortie #65291,https://biolit.fr/sorties/sortie-65291/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/image1-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-identificat°-2023-10-5-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Observat°-2023-10-5-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-gibbule-ombiliquee-5-10-2023-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-5-10-2023-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-bigorneau-5-10-2023-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-tous-5-10-2023-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-5-10-2023-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-bigorneau-5-10-2023-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-gibbule-ombiliquee-5-10-2023-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-monodonte-5-10-2023-4.png,10/14/2023 10:59,17.0000000,18.0000000,47.6073830000000,-2.74665100000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Gornevez, Séné 56860",65295,Observation #65295,https://biolit.fr/observations/observation-65295/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-gibbule-ombiliquee-5-10-2023-4.png,,TRUE,Identifiable +N1,65291,Sortie #65291,https://biolit.fr/sorties/sortie-65291/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/image1-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-identificat°-2023-10-5-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Observat°-2023-10-5-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-gibbule-ombiliquee-5-10-2023-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-5-10-2023-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-bigorneau-5-10-2023-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-tous-5-10-2023-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-5-10-2023-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-bigorneau-5-10-2023-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-gibbule-ombiliquee-5-10-2023-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-monodonte-5-10-2023-4.png,10/14/2023 10:59,17.0000000,18.0000000,47.6073830000000,-2.74665100000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Gornevez, Séné 56860",65297,Observation #65297,https://biolit.fr/observations/observation-65297/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-bigorneau-5-10-2023-4.png,,TRUE,Identifiable +N1,65291,Sortie #65291,https://biolit.fr/sorties/sortie-65291/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/image1-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-identificat°-2023-10-5-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Observat°-2023-10-5-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-gibbule-ombiliquee-5-10-2023-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-5-10-2023-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-bigorneau-5-10-2023-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-tous-5-10-2023-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-5-10-2023-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q1-bigorneau-5-10-2023-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-gibbule-ombiliquee-5-10-2023-4.png | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-monodonte-5-10-2023-4.png,10/14/2023 10:59,17.0000000,18.0000000,47.6073830000000,-2.74665100000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Gornevez, Séné 56860",65299,Observation #65299,https://biolit.fr/observations/observation-65299/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/LAV-Q2-monodonte-5-10-2023-4.png,,TRUE,Identifiable +N1,65313,Sortie #65313,https://biolit.fr/sorties/sortie-65313/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/IMG_4764-2-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/IMG_4765-2-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/IMG_8530-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/IMG_8532-2-scaled.jpg,10/14/2023 14:01,13.0:45,16.0000000,47.6056010000000,-2.75773800000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Ile de Boëd, Séné 56860",65315,Observation #65315,https://biolit.fr/observations/observation-65315/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/IMG_8532-2-scaled.jpg,,TRUE,Identifiable +N1,65367,Sortie #65367,https://biolit.fr/sorties/sortie-65367/,Thibaut Edouard,https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2023/10/IMG_8548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2023/10/IMG_8549-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2023/10/IMG_8550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2023/10/IMG_8551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2023/10/IMG_8552-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2023/10/IMG_8553-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2023/10/IMG_8554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2023/10/IMG_8555-scaled.jpg,10/17/2023 13:20,12.0000000,14.0000000,50.189013000000,1.62462500000000,,Saint Valery Sur Somme,65369,Observation #65369,https://biolit.fr/observations/observation-65369/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2023/10/IMG_8548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2023/10/IMG_8549-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2023/10/IMG_8550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2023/10/IMG_8551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2023/10/IMG_8552-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2023/10/IMG_8553-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2023/10/IMG_8554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2023/10/IMG_8555-scaled.jpg,,,Ne sais pas +N1,65388,Sortie #65388,https://biolit.fr/sorties/sortie-65388/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141546-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-scaled.jpg,10/17/2023 23:07,13.0000000,14.0000000,46.1741650,-1.1637990,Planète Mer,Plage de Saint Froult,,,,,,,,,, +N1,65401,Sortie #65401,https://biolit.fr/sorties/sortie-65401/,YNESTA Karine,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1389-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1388-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1387-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1386-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1385-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1384-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1382-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1381-scaled.jpeg,10/18/2023 16:52,14.0000000,15.0000000,43.3576600000000,5.29074300000000,,"Plage du Fortin, corbières",65403,Observation #65403,https://biolit.fr/observations/observation-65403/,Holothuria (Holothuria) tubulosa,Holothurie tubuleuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1389-scaled.jpeg,,TRUE,Identifiable +N1,65401,Sortie #65401,https://biolit.fr/sorties/sortie-65401/,YNESTA Karine,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1389-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1388-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1387-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1386-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1385-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1384-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1382-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1381-scaled.jpeg,10/18/2023 16:52,14.0000000,15.0000000,43.3576600000000,5.29074300000000,,"Plage du Fortin, corbières",65405,Observation #65405,https://biolit.fr/observations/observation-65405/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1388-scaled.jpeg,,TRUE,Identifiable +N1,65401,Sortie #65401,https://biolit.fr/sorties/sortie-65401/,YNESTA Karine,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1389-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1388-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1387-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1386-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1385-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1384-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1382-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1381-scaled.jpeg,10/18/2023 16:52,14.0000000,15.0000000,43.3576600000000,5.29074300000000,,"Plage du Fortin, corbières",65408,Observation #65408,https://biolit.fr/observations/observation-65408/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1387-scaled.jpeg,,TRUE,Identifiable +N1,65401,Sortie #65401,https://biolit.fr/sorties/sortie-65401/,YNESTA Karine,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1389-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1388-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1387-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1386-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1385-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1384-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1382-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1381-scaled.jpeg,10/18/2023 16:52,14.0000000,15.0000000,43.3576600000000,5.29074300000000,,"Plage du Fortin, corbières",65410,Observation #65410,https://biolit.fr/observations/observation-65410/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1386-scaled.jpeg,,TRUE,Identifiable +N1,65401,Sortie #65401,https://biolit.fr/sorties/sortie-65401/,YNESTA Karine,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1389-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1388-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1387-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1386-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1385-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1384-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1382-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1381-scaled.jpeg,10/18/2023 16:52,14.0000000,15.0000000,43.3576600000000,5.29074300000000,,"Plage du Fortin, corbières",65412,Observation #65412,https://biolit.fr/observations/observation-65412/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1385-scaled.jpeg,,,Ne sais pas +N1,65401,Sortie #65401,https://biolit.fr/sorties/sortie-65401/,YNESTA Karine,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1389-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1388-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1387-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1386-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1385-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1384-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1382-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1381-scaled.jpeg,10/18/2023 16:52,14.0000000,15.0000000,43.3576600000000,5.29074300000000,,"Plage du Fortin, corbières",65415,Observation #65415,https://biolit.fr/observations/observation-65415/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1384-scaled.jpeg,,,Ne sais pas +N1,65401,Sortie #65401,https://biolit.fr/sorties/sortie-65401/,YNESTA Karine,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1389-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1388-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1387-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1386-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1385-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1384-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1382-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1381-scaled.jpeg,10/18/2023 16:52,14.0000000,15.0000000,43.3576600000000,5.29074300000000,,"Plage du Fortin, corbières",65417,Observation #65417,https://biolit.fr/observations/observation-65417/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1382-scaled.jpeg,,,Ne sais pas +N1,65401,Sortie #65401,https://biolit.fr/sorties/sortie-65401/,YNESTA Karine,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1389-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1388-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1387-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1386-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1385-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1384-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1382-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1381-scaled.jpeg,10/18/2023 16:52,14.0000000,15.0000000,43.3576600000000,5.29074300000000,,"Plage du Fortin, corbières",65419,Observation #65419,https://biolit.fr/observations/observation-65419/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1382-scaled.jpeg,,,Ne sais pas +N1,65401,Sortie #65401,https://biolit.fr/sorties/sortie-65401/,YNESTA Karine,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1389-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1388-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1387-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1386-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1385-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1384-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1382-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1381-scaled.jpeg,10/18/2023 16:52,14.0000000,15.0000000,43.3576600000000,5.29074300000000,,"Plage du Fortin, corbières",65421,Observation #65421,https://biolit.fr/observations/observation-65421/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/20b3aed1bf4f71e2089cc8d3b6317628/2023/10/IMG_1381-scaled.jpeg,,,Identifiable +N1,65443,Sortie #65443,https://biolit.fr/sorties/sortie-65443/,LEMAITRE Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2315-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2314-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2309-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2307-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2305-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2297-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2290-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2289-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2312-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2311-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2300-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2299-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2301-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2295-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2293-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2292-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2291-scaled.jpeg,10/19/2023 12:02,10.0000000,13.0000000,49.4196350000000,0.197274000000000,,Honfleur Plage du Butin,65445,Observation #65445,https://biolit.fr/observations/observation-65445/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2309-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2314-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2315-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2307-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2305-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2297-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2290-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2289-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2312-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2311-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2300-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2299-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2301-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2295-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2293-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2292-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2291-scaled.jpeg,,,Ne sais pas +N1,65443,Sortie #65443,https://biolit.fr/sorties/sortie-65443/,LEMAITRE Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2315-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2314-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2309-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2307-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2305-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2297-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2290-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2289-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2312-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2311-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2300-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2299-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2301-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2295-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2293-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2292-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2291-scaled.jpeg,10/19/2023 12:02,10.0000000,13.0000000,49.4196350000000,0.197274000000000,,Honfleur Plage du Butin,65451,Observation #65451,https://biolit.fr/observations/observation-65451/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2306-scaled.jpeg,,,Ne sais pas +N1,65443,Sortie #65443,https://biolit.fr/sorties/sortie-65443/,LEMAITRE Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2315-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2314-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2309-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2307-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2305-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2297-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2290-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2289-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2312-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2311-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2300-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2299-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2301-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2295-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2293-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2292-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2291-scaled.jpeg,10/19/2023 12:02,10.0000000,13.0000000,49.4196350000000,0.197274000000000,,Honfleur Plage du Butin,65455,Observation #65455,https://biolit.fr/observations/observation-65455/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2291-scaled.jpeg,,,Ne sais pas +N1,65443,Sortie #65443,https://biolit.fr/sorties/sortie-65443/,LEMAITRE Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2315-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2314-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2309-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2307-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2305-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2297-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2290-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2289-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2312-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2311-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2300-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2299-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2301-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2295-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2293-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2292-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2291-scaled.jpeg,10/19/2023 12:02,10.0000000,13.0000000,49.4196350000000,0.197274000000000,,Honfleur Plage du Butin,65457,Observation #65457,https://biolit.fr/observations/observation-65457/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2293-scaled.jpeg,,,Ne sais pas +N1,65443,Sortie #65443,https://biolit.fr/sorties/sortie-65443/,LEMAITRE Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2315-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2314-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2309-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2307-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2305-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2297-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2290-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2289-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2312-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2311-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2300-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2299-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2301-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2295-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2293-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2292-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2291-scaled.jpeg,10/19/2023 12:02,10.0000000,13.0000000,49.4196350000000,0.197274000000000,,Honfleur Plage du Butin,65459,Observation #65459,https://biolit.fr/observations/observation-65459/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2301-scaled.jpeg,,,Ne sais pas +N1,65443,Sortie #65443,https://biolit.fr/sorties/sortie-65443/,LEMAITRE Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2315-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2314-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2309-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2307-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2305-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2297-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2290-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2289-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2312-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2311-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2300-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2299-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2301-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2295-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2293-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2292-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2291-scaled.jpeg,10/19/2023 12:02,10.0000000,13.0000000,49.4196350000000,0.197274000000000,,Honfleur Plage du Butin,65461,Observation #65461,https://biolit.fr/observations/observation-65461/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2300-scaled.jpeg,,,Ne sais pas +N1,65443,Sortie #65443,https://biolit.fr/sorties/sortie-65443/,LEMAITRE Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2315-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2314-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2309-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2307-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2305-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2297-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2290-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2289-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2312-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2311-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2300-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2299-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2301-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2295-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2293-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2292-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2291-scaled.jpeg,10/19/2023 12:02,10.0000000,13.0000000,49.4196350000000,0.197274000000000,,Honfleur Plage du Butin,65463,Observation #65463,https://biolit.fr/observations/observation-65463/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2312-scaled.jpeg,,,Ne sais pas +N1,65443,Sortie #65443,https://biolit.fr/sorties/sortie-65443/,LEMAITRE Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2315-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2314-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2309-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2307-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2305-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2297-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2290-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2289-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2312-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2311-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2300-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2299-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2301-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2295-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2293-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2292-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2291-scaled.jpeg,10/19/2023 12:02,10.0000000,13.0000000,49.4196350000000,0.197274000000000,,Honfleur Plage du Butin,65465,Observation #65465,https://biolit.fr/observations/observation-65465/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2294-scaled.jpeg,,,Ne sais pas +N1,65443,Sortie #65443,https://biolit.fr/sorties/sortie-65443/,LEMAITRE Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2315-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2314-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2309-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2307-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2305-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2297-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2290-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2289-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2312-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2311-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2300-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2299-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2301-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2295-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2293-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2292-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2291-scaled.jpeg,10/19/2023 12:02,10.0000000,13.0000000,49.4196350000000,0.197274000000000,,Honfleur Plage du Butin,65467,Observation #65467,https://biolit.fr/observations/observation-65467/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2305-scaled.jpeg,,,Ne sais pas +N1,65443,Sortie #65443,https://biolit.fr/sorties/sortie-65443/,LEMAITRE Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2315-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2314-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2309-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2307-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2305-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2297-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2290-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2289-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2312-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2311-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2300-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2299-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2301-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2295-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2293-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2292-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2291-scaled.jpeg,10/19/2023 12:02,10.0000000,13.0000000,49.4196350000000,0.197274000000000,,Honfleur Plage du Butin,65469,Observation #65469,https://biolit.fr/observations/observation-65469/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e816b5681d60575b0bac7544887b2584/2023/10/IMG_2303-scaled.jpeg,,,Ne sais pas +N1,65486,Sortie #65486,https://biolit.fr/sorties/sortie-65486/,Mourier Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112916-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_111054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110434-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105745-scaled.jpg,10/19/2023 12:12,10.0000000,13.0000000,49.41985,0.23294,,Honfleur plage du Butin,65488,Observation #65488,https://biolit.fr/observations/observation-65488/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112916-scaled.jpg,,,Ne sais pas +N1,65486,Sortie #65486,https://biolit.fr/sorties/sortie-65486/,Mourier Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112916-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_111054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110434-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105745-scaled.jpg,10/19/2023 12:12,10.0000000,13.0000000,49.41985,0.23294,,Honfleur plage du Butin,65490,Observation #65490,https://biolit.fr/observations/observation-65490/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112822-scaled.jpg,,TRUE,Ne sais pas +N1,65486,Sortie #65486,https://biolit.fr/sorties/sortie-65486/,Mourier Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112916-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_111054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110434-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105745-scaled.jpg,10/19/2023 12:12,10.0000000,13.0000000,49.41985,0.23294,,Honfleur plage du Butin,65492,Observation #65492,https://biolit.fr/observations/observation-65492/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112538-scaled.jpg,,TRUE,Ne sais pas +N1,65486,Sortie #65486,https://biolit.fr/sorties/sortie-65486/,Mourier Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112916-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_111054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110434-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105745-scaled.jpg,10/19/2023 12:12,10.0000000,13.0000000,49.41985,0.23294,,Honfleur plage du Butin,65494,Observation #65494,https://biolit.fr/observations/observation-65494/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112334-scaled.jpg,,,Ne sais pas +N1,65486,Sortie #65486,https://biolit.fr/sorties/sortie-65486/,Mourier Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112916-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_111054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110434-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105745-scaled.jpg,10/19/2023 12:12,10.0000000,13.0000000,49.41985,0.23294,,Honfleur plage du Butin,65496,Observation #65496,https://biolit.fr/observations/observation-65496/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110555-scaled.jpg,,, +N1,65486,Sortie #65486,https://biolit.fr/sorties/sortie-65486/,Mourier Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112916-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_111054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110434-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105745-scaled.jpg,10/19/2023 12:12,10.0000000,13.0000000,49.41985,0.23294,,Honfleur plage du Butin,65498,Observation #65498,https://biolit.fr/observations/observation-65498/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105746-scaled.jpg,,, +N1,65486,Sortie #65486,https://biolit.fr/sorties/sortie-65486/,Mourier Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112916-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_111054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110434-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105745-scaled.jpg,10/19/2023 12:12,10.0000000,13.0000000,49.41985,0.23294,,Honfleur plage du Butin,65500,Observation #65500,https://biolit.fr/observations/observation-65500/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110311-scaled.jpg,,, +N1,65486,Sortie #65486,https://biolit.fr/sorties/sortie-65486/,Mourier Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112916-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_111054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110434-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105745-scaled.jpg,10/19/2023 12:12,10.0000000,13.0000000,49.41985,0.23294,,Honfleur plage du Butin,65502,Observation #65502,https://biolit.fr/observations/observation-65502/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105632-scaled.jpg,,, +N1,65486,Sortie #65486,https://biolit.fr/sorties/sortie-65486/,Mourier Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112916-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_111054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110434-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105745-scaled.jpg,10/19/2023 12:12,10.0000000,13.0000000,49.41985,0.23294,,Honfleur plage du Butin,65504,Observation #65504,https://biolit.fr/observations/observation-65504/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105525-scaled.jpg,,, +N1,65486,Sortie #65486,https://biolit.fr/sorties/sortie-65486/,Mourier Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112916-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_111054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110434-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105745-scaled.jpg,10/19/2023 12:12,10.0000000,13.0000000,49.41985,0.23294,,Honfleur plage du Butin,65506,Observation #65506,https://biolit.fr/observations/observation-65506/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110434-scaled.jpg,,, +N1,65486,Sortie #65486,https://biolit.fr/sorties/sortie-65486/,Mourier Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112916-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_111054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110434-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105745-scaled.jpg,10/19/2023 12:12,10.0000000,13.0000000,49.41985,0.23294,,Honfleur plage du Butin,65508,Observation #65508,https://biolit.fr/observations/observation-65508/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105745-scaled.jpg,,, +N1,65486,Sortie #65486,https://biolit.fr/sorties/sortie-65486/,Mourier Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112916-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_112334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_111054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110434-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_110525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105745-scaled.jpg,10/19/2023 12:12,10.0000000,13.0000000,49.41985,0.23294,,Honfleur plage du Butin,65510,Observation #65510,https://biolit.fr/observations/observation-65510/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/85e858935dd8d7a0810da10e18394c04/2023/10/IMG_20231012_105725-scaled.jpg,,, +N1,65523,Sortie #65523,https://biolit.fr/sorties/sortie-65523/,VANNIER VIRGINIE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00002-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00004-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00009-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00014-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00016-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00017-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00019-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00028.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00029-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00026-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00027-scaled.jpeg,10/19/2023 12:19,10.0000000,13.0000000,49.41985,0.23294,,"Plage du Butin, Honfleur",65525,Observation #65525,https://biolit.fr/observations/observation-65525/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00002-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00004-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00009-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00014-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00016-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00017-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00019-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00028.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00029-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00026-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00027-scaled.jpeg,,,Ne sais pas +N1,65523,Sortie #65523,https://biolit.fr/sorties/sortie-65523/,VANNIER VIRGINIE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00002-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00004-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00009-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00014-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00016-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00017-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00019-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00028.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00029-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00026-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00027-scaled.jpeg,10/19/2023 12:19,10.0000000,13.0000000,49.41985,0.23294,,"Plage du Butin, Honfleur",65527,Observation #65527,https://biolit.fr/observations/observation-65527/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00002-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00009-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00014-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00016-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00019-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00017-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00028.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00029-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00026-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00027-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e10ac502c7e2e20e8f9692fc1972ecd/2023/10/image00004-scaled.jpeg,,,Ne sais pas +N1,65530,Sortie #65530,https://biolit.fr/sorties/sortie-65530/,Allory Pierre-Yves,FALSE,10/19/2023 16:03,17.000002,18.000002,48,-2,Planète Mer,uuuuu,,,,,,,,,, +N1,65549,Sortie #65549,https://biolit.fr/sorties/sortie-65549/,CATARINA Sébastien,https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/Image-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/Image-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/Image-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/Image-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/Image-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/Image-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/Image-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/Image-10-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/Image-11-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/Image-12-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/Image-13-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/Image-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/Image-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/Image-9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d260055270dd2ff81333a43129638f88/2023/10/Image-14-scaled.jpg,10/19/2023 16:46,9.0000000,12.0000000,49.4236760000000,0.209702000000000,,plage honfleur,,,,,,,,,, +N1,65557,Sortie #65557,https://biolit.fr/sorties/sortie-65557/,Marine,FALSE,10/19/2023 16:55,10.0000000,12.0000000,45.0292800000000,-1.3623050000,,marseille,,,,,,,,,, +N1,65569,Sortie #65569,https://biolit.fr/sorties/sortie-65569/,ALABERT FRANCOIS,https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/algue-rouge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Baies-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Ajonc-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7304-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7306-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/roseaux-sur-plage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/KT-Boundary-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Figuier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7319-scaled.jpg,10/19/2023 17:49,11.0000000,14.0000000,43.4494220,-1.5868300,,Plage et ENS Erretegia,65571,Observation #65571,https://biolit.fr/observations/observation-65571/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/algue-rouge-scaled.jpg,,,Ne sais pas +N1,65569,Sortie #65569,https://biolit.fr/sorties/sortie-65569/,ALABERT FRANCOIS,https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/algue-rouge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Baies-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Ajonc-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7304-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7306-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/roseaux-sur-plage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/KT-Boundary-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Figuier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7319-scaled.jpg,10/19/2023 17:49,11.0000000,14.0000000,43.4494220,-1.5868300,,Plage et ENS Erretegia,65573,Observation #65573,https://biolit.fr/observations/observation-65573/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Baies-scaled.jpg,,,Ne sais pas +N1,65569,Sortie #65569,https://biolit.fr/sorties/sortie-65569/,ALABERT FRANCOIS,https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/algue-rouge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Baies-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Ajonc-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7304-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7306-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/roseaux-sur-plage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/KT-Boundary-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Figuier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7319-scaled.jpg,10/19/2023 17:49,11.0000000,14.0000000,43.4494220,-1.5868300,,Plage et ENS Erretegia,65575,Observation #65575,https://biolit.fr/observations/observation-65575/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Ajonc-scaled.jpg,,,Identifiable +N1,65569,Sortie #65569,https://biolit.fr/sorties/sortie-65569/,ALABERT FRANCOIS,https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/algue-rouge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Baies-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Ajonc-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7304-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7306-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/roseaux-sur-plage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/KT-Boundary-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Figuier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7319-scaled.jpg,10/19/2023 17:49,11.0000000,14.0000000,43.4494220,-1.5868300,,Plage et ENS Erretegia,65577,Observation #65577,https://biolit.fr/observations/observation-65577/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7304-scaled.jpg,,, +N1,65569,Sortie #65569,https://biolit.fr/sorties/sortie-65569/,ALABERT FRANCOIS,https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/algue-rouge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Baies-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Ajonc-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7304-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7306-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/roseaux-sur-plage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/KT-Boundary-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Figuier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7319-scaled.jpg,10/19/2023 17:49,11.0000000,14.0000000,43.4494220,-1.5868300,,Plage et ENS Erretegia,65581,Observation #65581,https://biolit.fr/observations/observation-65581/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Ajonc-scaled.jpg,,,Identifiable +N1,65569,Sortie #65569,https://biolit.fr/sorties/sortie-65569/,ALABERT FRANCOIS,https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/algue-rouge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Baies-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Ajonc-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7304-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7306-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/roseaux-sur-plage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/KT-Boundary-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Figuier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7319-scaled.jpg,10/19/2023 17:49,11.0000000,14.0000000,43.4494220,-1.5868300,,Plage et ENS Erretegia,65583,Observation #65583,https://biolit.fr/observations/observation-65583/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/KT-Boundary-5-scaled.jpg,,,Ne sais pas +N1,65569,Sortie #65569,https://biolit.fr/sorties/sortie-65569/,ALABERT FRANCOIS,https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/algue-rouge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Baies-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Ajonc-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7304-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7306-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/roseaux-sur-plage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/KT-Boundary-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Figuier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7319-scaled.jpg,10/19/2023 17:49,11.0000000,14.0000000,43.4494220,-1.5868300,,Plage et ENS Erretegia,65585,Observation #65585,https://biolit.fr/observations/observation-65585/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7319-scaled.jpg,,,Ne sais pas +N1,65569,Sortie #65569,https://biolit.fr/sorties/sortie-65569/,ALABERT FRANCOIS,https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/algue-rouge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Baies-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Ajonc-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7304-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7306-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/roseaux-sur-plage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/KT-Boundary-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/Figuier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7319-scaled.jpg,10/19/2023 17:49,11.0000000,14.0000000,43.4494220,-1.5868300,,Plage et ENS Erretegia,65588,Observation #65588,https://biolit.fr/observations/observation-65588/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/736fcd30d305281c3b8af7689f6657bb/2023/10/IMG_7318-scaled.jpg,,,Ne sais pas +N1,65607,Sortie #65607,https://biolit.fr/sorties/sortie-65607/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2023/10/Biolit.jpeg,10/20/2023 10:45,14.0000000,16.0000000,42.5353480000000,3.06434000000000,LABELBLEU,Criques de Porteils (Argelès-sur-mer),65609,Observation #65609,https://biolit.fr/observations/observation-65609/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2023/10/Biolit.jpeg,,,non-identifiable +N1,65629,Sortie #65629,https://biolit.fr/sorties/sortie-65629/,DUPUIS GODEFROY,https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_115320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_123720-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_130708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_114816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_125440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_130333-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_132231-scaled.jpg,10/20/2023 13:16,11.0:15,16.0:15,43.447530000000,-1.58865600000000,,Erreteguia,65631,Observation #65631,https://biolit.fr/observations/observation-65631/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_125440-scaled.jpg,,,non-identifiable +N1,65629,Sortie #65629,https://biolit.fr/sorties/sortie-65629/,DUPUIS GODEFROY,https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_115320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_123720-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_130708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_114816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_125440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_130333-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_132231-scaled.jpg,10/20/2023 13:16,11.0:15,16.0:15,43.447530000000,-1.58865600000000,,Erreteguia,65633,Observation #65633,https://biolit.fr/observations/observation-65633/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_123720-scaled.jpg,,,Identifiable +N1,65629,Sortie #65629,https://biolit.fr/sorties/sortie-65629/,DUPUIS GODEFROY,https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_115320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_123720-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_130708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_114816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_125440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_130333-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_132231-scaled.jpg,10/20/2023 13:16,11.0:15,16.0:15,43.447530000000,-1.58865600000000,,Erreteguia,65635,Observation #65635,https://biolit.fr/observations/observation-65635/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_115320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_114816-scaled.jpg,,TRUE,Identifiable +N1,65629,Sortie #65629,https://biolit.fr/sorties/sortie-65629/,DUPUIS GODEFROY,https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_115320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_123720-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_130708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_114816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_125440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_130333-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_132231-scaled.jpg,10/20/2023 13:16,11.0:15,16.0:15,43.447530000000,-1.58865600000000,,Erreteguia,65637,Observation #65637,https://biolit.fr/observations/observation-65637/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/c69984b858c01f4fbad1ebca0a04d187/2023/10/20231019_114816-scaled.jpg,,TRUE,Identifiable +N1,65667,Sortie #65667,https://biolit.fr/sorties/sortie-65667/,Marec Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0118-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0119-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0121-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0122-2-scaled.jpg,10/20/2023 18:00,9.0000000,12.0000000,484851,32632,,Perros GUIREC,,,,,,,,,, +N1,65691,Sortie #65691,https://biolit.fr/sorties/sortie-65691/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140027-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135525-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141546-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-1-scaled.jpg,10/22/2023 9:53,13.0:45,14.0:29,47.9182380,1.8962180,,Plage de St Fourlt,,,,,,,,,, +N1,65709,Sortie #65709,https://biolit.fr/sorties/sortie-65709/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,10/22/2023 10:30,13.0:45,14.0000000,45.9101500,-1.0750420,,Plage de saint froult,65711,Observation #65711,https://biolit.fr/observations/observation-65711/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg,,FALSE,Ne sais pas +N1,65709,Sortie #65709,https://biolit.fr/sorties/sortie-65709/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,10/22/2023 10:30,13.0:45,14.0000000,45.9101500,-1.0750420,,Plage de saint froult,65713,Observation #65713,https://biolit.fr/observations/observation-65713/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,,FALSE,Ne sais pas +N1,65709,Sortie #65709,https://biolit.fr/sorties/sortie-65709/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,10/22/2023 10:30,13.0:45,14.0000000,45.9101500,-1.0750420,,Plage de saint froult,65715,Observation #65715,https://biolit.fr/observations/observation-65715/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg,,FALSE,Ne sais pas +N1,65709,Sortie #65709,https://biolit.fr/sorties/sortie-65709/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,10/22/2023 10:30,13.0:45,14.0000000,45.9101500,-1.0750420,,Plage de saint froult,65717,Observation #65717,https://biolit.fr/observations/observation-65717/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg,,FALSE,Ne sais pas +N1,65709,Sortie #65709,https://biolit.fr/sorties/sortie-65709/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,10/22/2023 10:30,13.0:45,14.0000000,45.9101500,-1.0750420,,Plage de saint froult,65719,Observation #65719,https://biolit.fr/observations/observation-65719/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg,,FALSE,Ne sais pas +N1,65709,Sortie #65709,https://biolit.fr/sorties/sortie-65709/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,10/22/2023 10:30,13.0:45,14.0000000,45.9101500,-1.0750420,,Plage de saint froult,65721,Observation #65721,https://biolit.fr/observations/observation-65721/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg,,FALSE,Ne sais pas +N1,65709,Sortie #65709,https://biolit.fr/sorties/sortie-65709/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,10/22/2023 10:30,13.0:45,14.0000000,45.9101500,-1.0750420,,Plage de saint froult,65723,Observation #65723,https://biolit.fr/observations/observation-65723/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg,,FALSE,Ne sais pas +N1,65709,Sortie #65709,https://biolit.fr/sorties/sortie-65709/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,10/22/2023 10:30,13.0:45,14.0000000,45.9101500,-1.0750420,,Plage de saint froult,65725,Observation #65725,https://biolit.fr/observations/observation-65725/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,,FALSE,Ne sais pas +N1,65709,Sortie #65709,https://biolit.fr/sorties/sortie-65709/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,10/22/2023 10:30,13.0:45,14.0000000,45.9101500,-1.0750420,,Plage de saint froult,65727,Observation #65727,https://biolit.fr/observations/observation-65727/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg,,FALSE,Ne sais pas +N1,65709,Sortie #65709,https://biolit.fr/sorties/sortie-65709/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,10/22/2023 10:30,13.0:45,14.0000000,45.9101500,-1.0750420,,Plage de saint froult,65729,Observation #65729,https://biolit.fr/observations/observation-65729/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg,,FALSE,Ne sais pas +N1,65709,Sortie #65709,https://biolit.fr/sorties/sortie-65709/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,10/22/2023 10:30,13.0:45,14.0000000,45.9101500,-1.0750420,,Plage de saint froult,65731,Observation #65731,https://biolit.fr/observations/observation-65731/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg,,FALSE,Ne sais pas +N1,65709,Sortie #65709,https://biolit.fr/sorties/sortie-65709/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,10/22/2023 10:30,13.0:45,14.0000000,45.9101500,-1.0750420,,Plage de saint froult,65733,Observation #65733,https://biolit.fr/observations/observation-65733/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg,,FALSE,Ne sais pas +N1,65709,Sortie #65709,https://biolit.fr/sorties/sortie-65709/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,10/22/2023 10:30,13.0:45,14.0000000,45.9101500,-1.0750420,,Plage de saint froult,65735,Observation #65735,https://biolit.fr/observations/observation-65735/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg,,FALSE,Ne sais pas +N1,65709,Sortie #65709,https://biolit.fr/sorties/sortie-65709/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,10/22/2023 10:30,13.0:45,14.0000000,45.9101500,-1.0750420,,Plage de saint froult,65737,Observation #65737,https://biolit.fr/observations/observation-65737/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg,,FALSE,Ne sais pas +N1,65709,Sortie #65709,https://biolit.fr/sorties/sortie-65709/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,10/22/2023 10:30,13.0:45,14.0000000,45.9101500,-1.0750420,,Plage de saint froult,65739,Observation #65739,https://biolit.fr/observations/observation-65739/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,,FALSE,Ne sais pas +N1,65709,Sortie #65709,https://biolit.fr/sorties/sortie-65709/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_142116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141734-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141652-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141622-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141541-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141245-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140216-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140050-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_140014-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135736-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135640-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135629-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_135337-2-scaled.jpg,10/22/2023 10:30,13.0:45,14.0000000,45.9101500,-1.0750420,,Plage de saint froult,65741,Observation #65741,https://biolit.fr/observations/observation-65741/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_141425-2-scaled.jpg,,FALSE,Ne sais pas +N1,65751,Sortie #65751,https://biolit.fr/sorties/sortie-65751/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165343-scaled.jpg,10/22/2023 10:46,16.0000000,17.0000000,45.884899,-1.188313,,Citadelle château d'oleron,65753,Observation #65753,https://biolit.fr/observations/observation-65753/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165409-scaled.jpg,,FALSE,Identifiable +N1,65751,Sortie #65751,https://biolit.fr/sorties/sortie-65751/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165343-scaled.jpg,10/22/2023 10:46,16.0000000,17.0000000,45.884899,-1.188313,,Citadelle château d'oleron,65755,Observation #65755,https://biolit.fr/observations/observation-65755/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165350-scaled.jpg,,FALSE,Ne sais pas +N1,65751,Sortie #65751,https://biolit.fr/sorties/sortie-65751/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165343-scaled.jpg,10/22/2023 10:46,16.0000000,17.0000000,45.884899,-1.188313,,Citadelle château d'oleron,65757,Observation #65757,https://biolit.fr/observations/observation-65757/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165343-scaled.jpg,,TRUE,Ne sais pas +N1,65751,Sortie #65751,https://biolit.fr/sorties/sortie-65751/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165343-scaled.jpg,10/22/2023 10:46,16.0000000,17.0000000,45.884899,-1.188313,,Citadelle château d'oleron,65759,Observation #65759,https://biolit.fr/observations/observation-65759/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165444-scaled.jpg,,FALSE,Ne sais pas +N1,65751,Sortie #65751,https://biolit.fr/sorties/sortie-65751/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165343-scaled.jpg,10/22/2023 10:46,16.0000000,17.0000000,45.884899,-1.188313,,Citadelle château d'oleron,65761,Observation #65761,https://biolit.fr/observations/observation-65761/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165535-scaled.jpg,,FALSE,Ne sais pas +N1,65751,Sortie #65751,https://biolit.fr/sorties/sortie-65751/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165343-scaled.jpg,10/22/2023 10:46,16.0000000,17.0000000,45.884899,-1.188313,,Citadelle château d'oleron,65763,Observation #65763,https://biolit.fr/observations/observation-65763/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170226-scaled.jpg,,FALSE,Ne sais pas +N1,65751,Sortie #65751,https://biolit.fr/sorties/sortie-65751/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165343-scaled.jpg,10/22/2023 10:46,16.0000000,17.0000000,45.884899,-1.188313,,Citadelle château d'oleron,65765,Observation #65765,https://biolit.fr/observations/observation-65765/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170242-scaled.jpg,,TRUE,Ne sais pas +N1,65751,Sortie #65751,https://biolit.fr/sorties/sortie-65751/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_165343-scaled.jpg,10/22/2023 10:46,16.0000000,17.0000000,45.884899,-1.188313,,Citadelle château d'oleron,65767,Observation #65767,https://biolit.fr/observations/observation-65767/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231017_170408-scaled.jpg,,TRUE,Ne sais pas +N1,65782,Sortie #65782,https://biolit.fr/sorties/sortie-65782/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125650-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125143-scaled.jpg,10/22/2023 10:56,12.0000000,13.0000000,46.141188,-1.171148,,Plage des minimes,65784,Observation #65784,https://biolit.fr/observations/observation-65784/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130334-scaled.jpg,,TRUE,Ne sais pas +N1,65782,Sortie #65782,https://biolit.fr/sorties/sortie-65782/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125650-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125143-scaled.jpg,10/22/2023 10:56,12.0000000,13.0000000,46.141188,-1.171148,,Plage des minimes,65786,Observation #65786,https://biolit.fr/observations/observation-65786/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130019-scaled.jpg,,FALSE,Ne sais pas +N1,65782,Sortie #65782,https://biolit.fr/sorties/sortie-65782/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125650-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125143-scaled.jpg,10/22/2023 10:56,12.0000000,13.0000000,46.141188,-1.171148,,Plage des minimes,65788,Observation #65788,https://biolit.fr/observations/observation-65788/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130016-scaled.jpg,,TRUE,Ne sais pas +N1,65782,Sortie #65782,https://biolit.fr/sorties/sortie-65782/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125650-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125143-scaled.jpg,10/22/2023 10:56,12.0000000,13.0000000,46.141188,-1.171148,,Plage des minimes,65790,Observation #65790,https://biolit.fr/observations/observation-65790/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125937-scaled.jpg,,FALSE,Ne sais pas +N1,65782,Sortie #65782,https://biolit.fr/sorties/sortie-65782/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125650-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125143-scaled.jpg,10/22/2023 10:56,12.0000000,13.0000000,46.141188,-1.171148,,Plage des minimes,65792,Observation #65792,https://biolit.fr/observations/observation-65792/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125650-scaled.jpg,,FALSE,Ne sais pas +N1,65782,Sortie #65782,https://biolit.fr/sorties/sortie-65782/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125650-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125143-scaled.jpg,10/22/2023 10:56,12.0000000,13.0000000,46.141188,-1.171148,,Plage des minimes,65794,Observation #65794,https://biolit.fr/observations/observation-65794/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125817-scaled.jpg,,FALSE,Ne sais pas +N1,65782,Sortie #65782,https://biolit.fr/sorties/sortie-65782/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125650-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125143-scaled.jpg,10/22/2023 10:56,12.0000000,13.0000000,46.141188,-1.171148,,Plage des minimes,65796,Observation #65796,https://biolit.fr/observations/observation-65796/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125650-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125143-scaled.jpg,,FALSE,Ne sais pas +N1,65782,Sortie #65782,https://biolit.fr/sorties/sortie-65782/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125650-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125143-scaled.jpg,10/22/2023 10:56,12.0000000,13.0000000,46.141188,-1.171148,,Plage des minimes,65798,Observation #65798,https://biolit.fr/observations/observation-65798/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125556-scaled.jpg,,FALSE,Ne sais pas +N1,65782,Sortie #65782,https://biolit.fr/sorties/sortie-65782/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125650-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125143-scaled.jpg,10/22/2023 10:56,12.0000000,13.0000000,46.141188,-1.171148,,Plage des minimes,65800,Observation #65800,https://biolit.fr/observations/observation-65800/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125537-scaled.jpg,,TRUE,Ne sais pas +N1,65782,Sortie #65782,https://biolit.fr/sorties/sortie-65782/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125650-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125143-scaled.jpg,10/22/2023 10:56,12.0000000,13.0000000,46.141188,-1.171148,,Plage des minimes,65802,Observation #65802,https://biolit.fr/observations/observation-65802/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125526-scaled.jpg,,FALSE,Ne sais pas +N1,65782,Sortie #65782,https://biolit.fr/sorties/sortie-65782/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125650-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125143-scaled.jpg,10/22/2023 10:56,12.0000000,13.0000000,46.141188,-1.171148,,Plage des minimes,65804,Observation #65804,https://biolit.fr/observations/observation-65804/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125501-scaled.jpg,,TRUE,Ne sais pas +N1,65782,Sortie #65782,https://biolit.fr/sorties/sortie-65782/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_130016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125650-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125143-scaled.jpg,10/22/2023 10:56,12.0000000,13.0000000,46.141188,-1.171148,,Plage des minimes,65806,Observation #65806,https://biolit.fr/observations/observation-65806/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_125143-scaled.jpg,,FALSE,Ne sais pas +N1,65815,Sortie #65815,https://biolit.fr/sorties/sortie-65815/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_175138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_1746230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174520-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_172835-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_172730-scaled.jpg,10/22/2023 11:06,17.0000000,18.0000000,46.2541850,-1.1382870,,Pointe saint Clément,65817,Observation #65817,https://biolit.fr/observations/observation-65817/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_175138-scaled.jpg,,TRUE,Ne sais pas +N1,65815,Sortie #65815,https://biolit.fr/sorties/sortie-65815/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_175138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_1746230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174520-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_172835-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_172730-scaled.jpg,10/22/2023 11:06,17.0000000,18.0000000,46.2541850,-1.1382870,,Pointe saint Clément,65821,Observation #65821,https://biolit.fr/observations/observation-65821/,Ocinebrellus inornatus,Bigorneau perceur japonais,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174806-scaled.jpg,,TRUE,Ne sais pas +N1,65815,Sortie #65815,https://biolit.fr/sorties/sortie-65815/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_175138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_1746230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174520-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_172835-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_172730-scaled.jpg,10/22/2023 11:06,17.0000000,18.0000000,46.2541850,-1.1382870,,Pointe saint Clément,65823,Observation #65823,https://biolit.fr/observations/observation-65823/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_1746230-scaled.jpg,,FALSE,Ne sais pas +N1,65815,Sortie #65815,https://biolit.fr/sorties/sortie-65815/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_175138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_1746230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174520-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_172835-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_172730-scaled.jpg,10/22/2023 11:06,17.0000000,18.0000000,46.2541850,-1.1382870,,Pointe saint Clément,65825,Observation #65825,https://biolit.fr/observations/observation-65825/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174520-scaled.jpg,,FALSE,Ne sais pas +N1,65815,Sortie #65815,https://biolit.fr/sorties/sortie-65815/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_175138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_1746230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174520-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_172835-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_172730-scaled.jpg,10/22/2023 11:06,17.0000000,18.0000000,46.2541850,-1.1382870,,Pointe saint Clément,65827,Observation #65827,https://biolit.fr/observations/observation-65827/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174440-scaled.jpg,,FALSE,Ne sais pas +N1,65815,Sortie #65815,https://biolit.fr/sorties/sortie-65815/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_175138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_1746230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174520-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_172835-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_172730-scaled.jpg,10/22/2023 11:06,17.0000000,18.0000000,46.2541850,-1.1382870,,Pointe saint Clément,65829,Observation #65829,https://biolit.fr/observations/observation-65829/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_172835-scaled.jpg,,FALSE,Ne sais pas +N1,65815,Sortie #65815,https://biolit.fr/sorties/sortie-65815/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_175138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_1746230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174520-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_174440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_172835-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_172730-scaled.jpg,10/22/2023 11:06,17.0000000,18.0000000,46.2541850,-1.1382870,,Pointe saint Clément,65831,Observation #65831,https://biolit.fr/observations/observation-65831/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231018_172730-scaled.jpg,,FALSE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65855,Observation #65855,https://biolit.fr/observations/observation-65855/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg,,TRUE,Identifiable +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65857,Observation #65857,https://biolit.fr/observations/observation-65857/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg,,FALSE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65859,Observation #65859,https://biolit.fr/observations/observation-65859/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg,,FALSE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65861,Observation #65861,https://biolit.fr/observations/observation-65861/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg,,TRUE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65863,Observation #65863,https://biolit.fr/observations/observation-65863/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg,,FALSE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65867,Observation #65867,https://biolit.fr/observations/observation-65867/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg,,FALSE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65869,Observation #65869,https://biolit.fr/observations/observation-65869/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg,,FALSE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65871,Observation #65871,https://biolit.fr/observations/observation-65871/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg,,FALSE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65873,Observation #65873,https://biolit.fr/observations/observation-65873/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg,,FALSE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65875,Observation #65875,https://biolit.fr/observations/observation-65875/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg,,FALSE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65877,Observation #65877,https://biolit.fr/observations/observation-65877/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg,,FALSE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65879,Observation #65879,https://biolit.fr/observations/observation-65879/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg,,FALSE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65881,Observation #65881,https://biolit.fr/observations/observation-65881/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg,,FALSE, +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65883,Observation #65883,https://biolit.fr/observations/observation-65883/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg,,FALSE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65885,Observation #65885,https://biolit.fr/observations/observation-65885/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg,,FALSE, +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65887,Observation #65887,https://biolit.fr/observations/observation-65887/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg,,FALSE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65889,Observation #65889,https://biolit.fr/observations/observation-65889/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg,,FALSE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65893,Observation #65893,https://biolit.fr/observations/observation-65893/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg,,FALSE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,65895,Observation #65895,https://biolit.fr/observations/observation-65895/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,,FALSE,Ne sais pas +N1,65853,Sortie #65853,https://biolit.fr/sorties/sortie-65853/,Leroux Emilie,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_181543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_180130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_175806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_170045-scaled.jpg,10/22/2023 11:16,16.0000000,18.0000000,46.2440860,-1.5411660,,La conche des baleines,67751,Observation #67751,https://biolit.fr/observations/observation-67751/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/ed9a26ec9a3fd306dbbdf82adb500849/2023/10/20231019_182123-scaled.jpg,,TRUE,Identifiable +N1,65903,Sortie #65903,https://biolit.fr/sorties/sortie-65903/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/IMG_4766-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/IMG_4767-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Qadra-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Quadra-1-bis-scaled.jpg,10/22/2023 14:20,15.0000000,16.0000000,47.6176180000000,-2.7724740000000,,"Séné, cale de Langle",65905,Observation #65905,https://biolit.fr/observations/observation-65905/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/littorine-1-scaled.jpg,,TRUE,Identifiable +N1,65912,Sortie #65912,https://biolit.fr/sorties/sortie-65912/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/IMG_4766-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/IMG_4767-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/littorine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Qadra-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Quadra-1-bis-1-scaled.jpg,10/22/2023 14:29,15.0000000,16.0000000,47.6175720000000,-2.77245600000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Séné, cale de Langle",65914,Observation #65914,https://biolit.fr/observations/observation-65914/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/littorine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Qadra-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Quadra-1-bis-1-scaled.jpg,,TRUE,Identifiable +N1,65912,Sortie #65912,https://biolit.fr/sorties/sortie-65912/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/IMG_4766-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/IMG_4767-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/littorine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Qadra-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Quadra-1-bis-1-scaled.jpg,10/22/2023 14:29,15.0000000,16.0000000,47.6175720000000,-2.77245600000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Séné, cale de Langle",65916,Observation #65916,https://biolit.fr/observations/observation-65916/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Qadra-2-1-scaled.jpg,,,Identifiable +N1,65912,Sortie #65912,https://biolit.fr/sorties/sortie-65912/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/IMG_4766-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/IMG_4767-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/littorine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Qadra-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Quadra-1-bis-1-scaled.jpg,10/22/2023 14:29,15.0000000,16.0000000,47.6175720000000,-2.77245600000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Séné, cale de Langle",65918,Observation #65918,https://biolit.fr/observations/observation-65918/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Quadra-1-bis-1-scaled.jpg,,,Identifiable +N1,65923,Sortie #65923,https://biolit.fr/sorties/sortie-65923/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Document-de-terrain-BioLit-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Document-de-terrain-BioLit-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Photo-quadrat-1-scaled.jpg,10/24/2023 11:44,11.0000000,12.0000000,47.5913840000000,-2.72325400000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Séné, passage de Saint Armel",,,,,,,,,, +N1,65928,Sortie #65928,https://biolit.fr/sorties/sortie-65928/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Document-de-terrain-BioLit-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Document-de-terrain-BioLit-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Photo-quadrat-1-1-scaled.jpg,10/24/2023 11:50,11.0000000,12.0000000,47.5913840000000,-2.72325400000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Séné, passage de Saint Armel",65930,Observation #65930,https://biolit.fr/observations/observation-65930/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Photo-quadrat-1-1-scaled.jpg,,,Identifiable +N1,65928,Sortie #65928,https://biolit.fr/sorties/sortie-65928/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Document-de-terrain-BioLit-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Document-de-terrain-BioLit-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Photo-quadrat-1-1-scaled.jpg,10/24/2023 11:50,11.0000000,12.0000000,47.5913840000000,-2.72325400000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Séné, passage de Saint Armel",65932,Observation #65932,https://biolit.fr/observations/observation-65932/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Photo-quadrat-1-1-scaled.jpg,,,Identifiable +N1,65965,Sortie #65965,https://biolit.fr/sorties/sortie-65965/,DIRAISON CAROLE,https://biolit.fr/wp-content/uploads/jet-form-builder/734d2fb63f066abc27d8e00a7e48bd03/2023/10/1000014083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/734d2fb63f066abc27d8e00a7e48bd03/2023/10/1000014093-scaled.jpg,10/26/2023 17:14,13.0000000,14.0000000,48.0935940,-4.3220990,,PLAGE DU RIS - DOUARNENEZ,65967,Observation #65967,https://biolit.fr/observations/observation-65967/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/734d2fb63f066abc27d8e00a7e48bd03/2023/10/1000014083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/734d2fb63f066abc27d8e00a7e48bd03/2023/10/1000014093-scaled.jpg,,,Ne sais pas +N1,65965,Sortie #65965,https://biolit.fr/sorties/sortie-65965/,DIRAISON CAROLE,https://biolit.fr/wp-content/uploads/jet-form-builder/734d2fb63f066abc27d8e00a7e48bd03/2023/10/1000014083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/734d2fb63f066abc27d8e00a7e48bd03/2023/10/1000014093-scaled.jpg,10/26/2023 17:14,13.0000000,14.0000000,48.0935940,-4.3220990,,PLAGE DU RIS - DOUARNENEZ,65969,Observation #65969,https://biolit.fr/observations/observation-65969/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/734d2fb63f066abc27d8e00a7e48bd03/2023/10/1000014093-scaled.jpg,,,Ne sais pas +N1,65977,Sortie #65977,https://biolit.fr/sorties/sortie-65977/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/DSC_6854-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/DSC_6856-Littorine-obtuse.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/DSC_6857-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/DSC_6860-Littorine-obtuse.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Releve-3_page-0001.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Releve-3_page-0002.jpg,10/29/2023 13:36,18.0000000,18.0:45,47.6177720000000,-2.80148500000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Arrtadon, cale de Penboch",65979,Observation #65979,https://biolit.fr/observations/observation-65979/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/DSC_6854-scaled.jpg,,TRUE,Identifiable +N1,65977,Sortie #65977,https://biolit.fr/sorties/sortie-65977/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/DSC_6854-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/DSC_6856-Littorine-obtuse.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/DSC_6857-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/DSC_6860-Littorine-obtuse.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Releve-3_page-0001.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Releve-3_page-0002.jpg,10/29/2023 13:36,18.0000000,18.0:45,47.6177720000000,-2.80148500000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Arrtadon, cale de Penboch",65981,Observation #65981,https://biolit.fr/observations/observation-65981/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/DSC_6856-Littorine-obtuse.jpg,,TRUE,Identifiable +N1,65977,Sortie #65977,https://biolit.fr/sorties/sortie-65977/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/DSC_6854-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/DSC_6856-Littorine-obtuse.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/DSC_6857-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/DSC_6860-Littorine-obtuse.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Releve-3_page-0001.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/Releve-3_page-0002.jpg,10/29/2023 13:36,18.0000000,18.0:45,47.6177720000000,-2.80148500000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),"Arrtadon, cale de Penboch",65983,Observation #65983,https://biolit.fr/observations/observation-65983/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/10/DSC_6860-Littorine-obtuse.jpg,,TRUE, +N1,65991,Sortie #65991,https://biolit.fr/sorties/sortie-65991/,Dufrenoy Loïc,https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004678.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004677.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004672.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004684.jpg,10/29/2023 20:23,10.0000000,11.0000000,43.5135140000000,-1.51555600000000,CPIE Littoral Basque - Euskal Itsasbazterra,Hendaye Deux Jumeaux,65993,Observation #65993,https://biolit.fr/observations/observation-65993/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004678.jpg,,TRUE,Identifiable +N1,65991,Sortie #65991,https://biolit.fr/sorties/sortie-65991/,Dufrenoy Loïc,https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004678.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004677.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004672.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004684.jpg,10/29/2023 20:23,10.0000000,11.0000000,43.5135140000000,-1.51555600000000,CPIE Littoral Basque - Euskal Itsasbazterra,Hendaye Deux Jumeaux,65995,Observation #65995,https://biolit.fr/observations/observation-65995/,Xantho pilipes,Xanthe poilu,,https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004684.jpg,,TRUE,Identifiable +N1,65991,Sortie #65991,https://biolit.fr/sorties/sortie-65991/,Dufrenoy Loïc,https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004678.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004677.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004672.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004684.jpg,10/29/2023 20:23,10.0000000,11.0000000,43.5135140000000,-1.51555600000000,CPIE Littoral Basque - Euskal Itsasbazterra,Hendaye Deux Jumeaux,65997,Observation #65997,https://biolit.fr/observations/observation-65997/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004677.jpg,,TRUE,Identifiable +N1,65991,Sortie #65991,https://biolit.fr/sorties/sortie-65991/,Dufrenoy Loïc,https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004678.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004677.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004672.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004684.jpg,10/29/2023 20:23,10.0000000,11.0000000,43.5135140000000,-1.51555600000000,CPIE Littoral Basque - Euskal Itsasbazterra,Hendaye Deux Jumeaux,65999,Observation #65999,https://biolit.fr/observations/observation-65999/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/09a45f1a400891944e0ea6c989c01fe8/2023/10/1000004672.jpg,,TRUE,Identifiable +N1,66005,Sortie #66005,https://biolit.fr/sorties/sortie-66005/,Céline,https://biolit.fr/wp-content/uploads/jet-form-builder/a124436f212872e36bd7cc12bfe0fd03/2023/10/31A10F54-8DBD-4F6F-95DD-2659F4E7F7DB-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a124436f212872e36bd7cc12bfe0fd03/2023/10/D8BF818A-8074-4560-8159-1A5E055E184B-scaled.jpeg,10/30/2023 11:21,11.0000000,11.0000000,42.97621600000,3.0477670000000,,Leucate,66007,Observation #66007,https://biolit.fr/observations/observation-66007/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/a124436f212872e36bd7cc12bfe0fd03/2023/10/31A10F54-8DBD-4F6F-95DD-2659F4E7F7DB-scaled.jpeg,,TRUE,Identifiable +N1,66005,Sortie #66005,https://biolit.fr/sorties/sortie-66005/,Céline,https://biolit.fr/wp-content/uploads/jet-form-builder/a124436f212872e36bd7cc12bfe0fd03/2023/10/31A10F54-8DBD-4F6F-95DD-2659F4E7F7DB-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a124436f212872e36bd7cc12bfe0fd03/2023/10/D8BF818A-8074-4560-8159-1A5E055E184B-scaled.jpeg,10/30/2023 11:21,11.0000000,11.0000000,42.97621600000,3.0477670000000,,Leucate,66009,Observation #66009,https://biolit.fr/observations/observation-66009/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a124436f212872e36bd7cc12bfe0fd03/2023/10/D8BF818A-8074-4560-8159-1A5E055E184B-scaled.jpeg,,,Ne sais pas +N1,66013,Sortie #66013,https://biolit.fr/sorties/sortie-66013/,Marec Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0118-5-scaled.jpg,10/30/2023 14:15,9.0000000,12.0000000,48.8170260000000,-3.45447300000000,PEP 22,Perros GUIREC,66015,Observation #66015,https://biolit.fr/observations/observation-66015/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0118-5-scaled.jpg,,FALSE,Ne sais pas +N1,66021,Sortie #66021,https://biolit.fr/sorties/sortie-66021/,Marec Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0122-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0132-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0134-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0135-1-scaled.jpg,10/30/2023 14:31,9.0000000,12.0000000,48.8168850000000,-3.45306900000000,PEP 22,Perros GUIREC,66023,Observation #66023,https://biolit.fr/observations/observation-66023/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0122-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0132-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0134-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0135-1-scaled.jpg,,FALSE,Ne sais pas +N1,66021,Sortie #66021,https://biolit.fr/sorties/sortie-66021/,Marec Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0122-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0132-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0134-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0135-1-scaled.jpg,10/30/2023 14:31,9.0000000,12.0000000,48.8168850000000,-3.45306900000000,PEP 22,Perros GUIREC,66025,Observation #66025,https://biolit.fr/observations/observation-66025/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0122-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0132-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0134-1-scaled.jpg,,FALSE,Ne sais pas +N1,66021,Sortie #66021,https://biolit.fr/sorties/sortie-66021/,Marec Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0122-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0132-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0134-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0135-1-scaled.jpg,10/30/2023 14:31,9.0000000,12.0000000,48.8168850000000,-3.45306900000000,PEP 22,Perros GUIREC,66027,Observation #66027,https://biolit.fr/observations/observation-66027/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0134-1-scaled.jpg,,FALSE,Ne sais pas +N1,66030,Sortie #66030,https://biolit.fr/sorties/sortie-66030/,Marec Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0213-scaled.jpg,10/30/2023 14:47,9.0000000,12.0000000,48,3,PEP 22,Perros GUIREC,66032,Observation #66032,https://biolit.fr/observations/observation-66032/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0213-scaled.jpg,,FALSE,Ne sais pas +N1,66036,Sortie #66036,https://biolit.fr/sorties/sortie-66036/,Marec Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0225-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0226-scaled.jpg,10/30/2023 14:50,9.0000000,12.0000000,48,3,PEP 22,Perros GUIREC,66038,Observation #66038,https://biolit.fr/observations/observation-66038/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0225-scaled.jpg,,FALSE,Ne sais pas +N1,66036,Sortie #66036,https://biolit.fr/sorties/sortie-66036/,Marec Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0225-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0226-scaled.jpg,10/30/2023 14:50,9.0000000,12.0000000,48,3,PEP 22,Perros GUIREC,66040,Observation #66040,https://biolit.fr/observations/observation-66040/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2023/10/DSC_0226-scaled.jpg,,FALSE,Ne sais pas +N1,66099,Sortie #66099,https://biolit.fr/sorties/sortie-66099/,Observatoire du Plancton,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Crassotrea-gigas.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/crepidula-fornicata.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/fiche-eni.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/grateloupia-turuturu.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/sargassum-japonica.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Urosalpinx-cinerea.png,10/31/2023 16:52,10.0000000,12.0000000,47.7038460000000,-3.35574400000000,Observatoire du Plancton,Lohic,66101,Observation #66101,https://biolit.fr/observations/observation-66101/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Crassotrea-gigas.png,,TRUE,Identifiable +N1,66099,Sortie #66099,https://biolit.fr/sorties/sortie-66099/,Observatoire du Plancton,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Crassotrea-gigas.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/crepidula-fornicata.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/fiche-eni.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/grateloupia-turuturu.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/sargassum-japonica.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Urosalpinx-cinerea.png,10/31/2023 16:52,10.0000000,12.0000000,47.7038460000000,-3.35574400000000,Observatoire du Plancton,Lohic,66103,Observation #66103,https://biolit.fr/observations/observation-66103/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/crepidula-fornicata.png,,TRUE,Identifiable +N1,66111,Sortie #66111,https://biolit.fr/sorties/sortie-66111/,Observatoire du Plancton,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Crassotrea-gigas-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/crepidula-fornicata-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/grateloupia-turuturu-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/sargassum-japonica-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Urosalpinx-cinerea-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/fiche-eni-1.png,10/31/2023 16:56,10.0000000,12.0000000,47.707756,-3.353581,Observatoire du Plancton,Le Lohic,66113,Observation #66113,https://biolit.fr/observations/observation-66113/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Crassotrea-gigas-1.png,,,Identifiable +N1,66111,Sortie #66111,https://biolit.fr/sorties/sortie-66111/,Observatoire du Plancton,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Crassotrea-gigas-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/crepidula-fornicata-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/grateloupia-turuturu-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/sargassum-japonica-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Urosalpinx-cinerea-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/fiche-eni-1.png,10/31/2023 16:56,10.0000000,12.0000000,47.707756,-3.353581,Observatoire du Plancton,Le Lohic,66115,Observation #66115,https://biolit.fr/observations/observation-66115/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Crassotrea-gigas-1.png,,TRUE,Identifiable +N1,66111,Sortie #66111,https://biolit.fr/sorties/sortie-66111/,Observatoire du Plancton,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Crassotrea-gigas-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/crepidula-fornicata-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/grateloupia-turuturu-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/sargassum-japonica-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Urosalpinx-cinerea-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/fiche-eni-1.png,10/31/2023 16:56,10.0000000,12.0000000,47.707756,-3.353581,Observatoire du Plancton,Le Lohic,66117,Observation #66117,https://biolit.fr/observations/observation-66117/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/crepidula-fornicata-1.png,,TRUE,Identifiable +N1,66111,Sortie #66111,https://biolit.fr/sorties/sortie-66111/,Observatoire du Plancton,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Crassotrea-gigas-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/crepidula-fornicata-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/grateloupia-turuturu-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/sargassum-japonica-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Urosalpinx-cinerea-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/fiche-eni-1.png,10/31/2023 16:56,10.0000000,12.0000000,47.707756,-3.353581,Observatoire du Plancton,Le Lohic,66119,Observation #66119,https://biolit.fr/observations/observation-66119/,Grateloupia turuturu,Grateloupe du Pacifique,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/grateloupia-turuturu-1.png,,TRUE,Identifiable +N1,66111,Sortie #66111,https://biolit.fr/sorties/sortie-66111/,Observatoire du Plancton,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Crassotrea-gigas-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/crepidula-fornicata-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/grateloupia-turuturu-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/sargassum-japonica-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Urosalpinx-cinerea-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/fiche-eni-1.png,10/31/2023 16:56,10.0000000,12.0000000,47.707756,-3.353581,Observatoire du Plancton,Le Lohic,66121,Observation #66121,https://biolit.fr/observations/observation-66121/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/sargassum-japonica-1.png,,TRUE,Identifiable +N1,66111,Sortie #66111,https://biolit.fr/sorties/sortie-66111/,Observatoire du Plancton,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Crassotrea-gigas-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/crepidula-fornicata-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/grateloupia-turuturu-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/sargassum-japonica-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Urosalpinx-cinerea-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/fiche-eni-1.png,10/31/2023 16:56,10.0000000,12.0000000,47.707756,-3.353581,Observatoire du Plancton,Le Lohic,66123,Observation #66123,https://biolit.fr/observations/observation-66123/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Urosalpinx-cinerea-1.png,,TRUE,Identifiable +N1,66111,Sortie #66111,https://biolit.fr/sorties/sortie-66111/,Observatoire du Plancton,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Crassotrea-gigas-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/crepidula-fornicata-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/grateloupia-turuturu-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/sargassum-japonica-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/Urosalpinx-cinerea-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/fiche-eni-1.png,10/31/2023 16:56,10.0000000,12.0000000,47.707756,-3.353581,Observatoire du Plancton,Le Lohic,66125,Observation #66125,https://biolit.fr/observations/observation-66125/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ab036bc465eab78e257332802d887335/2023/10/fiche-eni-1.png,,,Ne sais pas +N1,66138,Sortie #66138,https://biolit.fr/sorties/sortie-66138/,HOCHET Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7652-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7530-scaled.jpg,11/01/2023 17:01,8.0000000,11.0000000,47.5700810000000,-2.7240510000000,,Marais de Lasné,66140,Observation #66140,https://biolit.fr/observations/observation-66140/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7530-scaled.jpg,,,Identifiable +N1,66138,Sortie #66138,https://biolit.fr/sorties/sortie-66138/,HOCHET Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7652-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7530-scaled.jpg,11/01/2023 17:01,8.0000000,11.0000000,47.5700810000000,-2.7240510000000,,Marais de Lasné,66142,Observation #66142,https://biolit.fr/observations/observation-66142/,Sterna hirundo,Sterne pierregarin,,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7543-scaled.jpg,,,Identifiable +N1,66138,Sortie #66138,https://biolit.fr/sorties/sortie-66138/,HOCHET Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7652-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7530-scaled.jpg,11/01/2023 17:01,8.0000000,11.0000000,47.5700810000000,-2.7240510000000,,Marais de Lasné,66144,Observation #66144,https://biolit.fr/observations/observation-66144/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7551-scaled.jpg,,TRUE,Identifiable +N1,66138,Sortie #66138,https://biolit.fr/sorties/sortie-66138/,HOCHET Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7652-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7530-scaled.jpg,11/01/2023 17:01,8.0000000,11.0000000,47.5700810000000,-2.7240510000000,,Marais de Lasné,66146,Observation #66146,https://biolit.fr/observations/observation-66146/,Cygnus olor,Cygne tuberculé,,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7599-scaled.jpg,,,Identifiable +N1,66138,Sortie #66138,https://biolit.fr/sorties/sortie-66138/,HOCHET Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7652-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7530-scaled.jpg,11/01/2023 17:01,8.0000000,11.0000000,47.5700810000000,-2.7240510000000,,Marais de Lasné,66148,Observation #66148,https://biolit.fr/observations/observation-66148/,Branta bernicla,Bernache cravant,,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7590-scaled.jpg,,,Identifiable +N1,66138,Sortie #66138,https://biolit.fr/sorties/sortie-66138/,HOCHET Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7652-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7530-scaled.jpg,11/01/2023 17:01,8.0000000,11.0000000,47.5700810000000,-2.7240510000000,,Marais de Lasné,66150,Observation #66150,https://biolit.fr/observations/observation-66150/,Tadorna tadorna,Tadorne de Belon,,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7571-scaled.jpg,,,Identifiable +N1,66138,Sortie #66138,https://biolit.fr/sorties/sortie-66138/,HOCHET Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7652-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7530-scaled.jpg,11/01/2023 17:01,8.0000000,11.0000000,47.5700810000000,-2.7240510000000,,Marais de Lasné,66152,Observation #66152,https://biolit.fr/observations/observation-66152/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7587-scaled.jpg,,TRUE,Identifiable +N1,66138,Sortie #66138,https://biolit.fr/sorties/sortie-66138/,HOCHET Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7652-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7530-scaled.jpg,11/01/2023 17:01,8.0000000,11.0000000,47.5700810000000,-2.7240510000000,,Marais de Lasné,66154,Observation #66154,https://biolit.fr/observations/observation-66154/,Salicornia spp.,Salicorne,,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7652-scaled.jpg,,TRUE,Identifiable +N1,66138,Sortie #66138,https://biolit.fr/sorties/sortie-66138/,HOCHET Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7652-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7530-scaled.jpg,11/01/2023 17:01,8.0000000,11.0000000,47.5700810000000,-2.7240510000000,,Marais de Lasné,66156,Observation #66156,https://biolit.fr/observations/observation-66156/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7647-scaled.jpg,,,Ne sais pas +N1,66138,Sortie #66138,https://biolit.fr/sorties/sortie-66138/,HOCHET Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7652-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7530-scaled.jpg,11/01/2023 17:01,8.0000000,11.0000000,47.5700810000000,-2.7240510000000,,Marais de Lasné,66158,Observation #66158,https://biolit.fr/observations/observation-66158/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0afa833962dc744bbbe579afe32ec416/2023/11/DSC_7539-scaled.jpg,,,Ne sais pas +N1,66164,Sortie #66164,https://biolit.fr/sorties/sortie-66164/,Rooms Olivier,https://biolit.fr/wp-content/uploads/jet-form-builder/b2af3cc0c12310a687d2e3c1f5659358/2023/11/IMG20231031111608-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b2af3cc0c12310a687d2e3c1f5659358/2023/11/IMG20231031111511-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b2af3cc0c12310a687d2e3c1f5659358/2023/11/IMG20231031111508-scaled.jpg,11/02/2023 16:36,10.0000000,10.0:55,43.0846240000000,5.196533000000,,Frioul,,,,,,,,,, +N1,66169,Sortie #66169,https://biolit.fr/sorties/sortie-66169/,Rooms Olivier,https://biolit.fr/wp-content/uploads/jet-form-builder/b2af3cc0c12310a687d2e3c1f5659358/2023/11/IMG20231031111608-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b2af3cc0c12310a687d2e3c1f5659358/2023/11/IMG20231031111511-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b2af3cc0c12310a687d2e3c1f5659358/2023/11/IMG20231031111508-1-scaled.jpg,11/02/2023 16:39,10.0000000,11.0000000,43.0946530000000,5.185547000,,Frioul,,,,,,,,,, +N1,66173,Sortie #66173,https://biolit.fr/sorties/sortie-66173/,MAMIS GREGORY,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2023/11/action-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2023/11/action2-scaled.jpg,11/03/2023 14:03,14.000001,17.000001,43.0671630000000,5.78567500000000,,ile du grand rouveau,,,,,,,,,, +N1,66195,Sortie #66195,https://biolit.fr/sorties/sortie-66195/,LASSUS Remi,https://biolit.fr/wp-content/uploads/jet-form-builder/640de99411fcf05b0bc92d9c7a96677c/2023/11/Photo-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/640de99411fcf05b0bc92d9c7a96677c/2023/11/Photo-2.jpg,11/06/2023 10:52,13.0000000,16.0000000,43.6716440000000,-1.44150800000000,,Hossegor - La Gravière,66197,Observation #66197,https://biolit.fr/observations/observation-66197/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/640de99411fcf05b0bc92d9c7a96677c/2023/11/Photo-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/640de99411fcf05b0bc92d9c7a96677c/2023/11/Photo-1.jpg,,,Ne sais pas +N1,66195,Sortie #66195,https://biolit.fr/sorties/sortie-66195/,LASSUS Remi,https://biolit.fr/wp-content/uploads/jet-form-builder/640de99411fcf05b0bc92d9c7a96677c/2023/11/Photo-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/640de99411fcf05b0bc92d9c7a96677c/2023/11/Photo-2.jpg,11/06/2023 10:52,13.0000000,16.0000000,43.6716440000000,-1.44150800000000,,Hossegor - La Gravière,66199,Observation #66199,https://biolit.fr/observations/observation-66199/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/640de99411fcf05b0bc92d9c7a96677c/2023/11/Photo-1.jpg,,,Ne sais pas +N1,66283,Sortie #66283,https://biolit.fr/sorties/sortie-66283/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112148-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112225-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_113159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_113204-scaled.jpg,11/07/2023 12:04,10.0:45,12.0000000,48.8119800000000,-3.01693300000000,,Anse de Launay,66285,Observation #66285,https://biolit.fr/observations/observation-66285/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112225-scaled.jpg,,TRUE,Identifiable +N1,66283,Sortie #66283,https://biolit.fr/sorties/sortie-66283/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112148-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112225-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_113159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_113204-scaled.jpg,11/07/2023 12:04,10.0:45,12.0000000,48.8119800000000,-3.01693300000000,,Anse de Launay,66287,Observation #66287,https://biolit.fr/observations/observation-66287/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112528-scaled.jpg,,TRUE,Identifiable +N1,66283,Sortie #66283,https://biolit.fr/sorties/sortie-66283/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112148-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112225-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_113159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_113204-scaled.jpg,11/07/2023 12:04,10.0:45,12.0000000,48.8119800000000,-3.01693300000000,,Anse de Launay,66289,Observation #66289,https://biolit.fr/observations/observation-66289/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_113159-scaled.jpg,,TRUE,Identifiable +N1,66283,Sortie #66283,https://biolit.fr/sorties/sortie-66283/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112148-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112225-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_112535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_113159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_113204-scaled.jpg,11/07/2023 12:04,10.0:45,12.0000000,48.8119800000000,-3.01693300000000,,Anse de Launay,66291,Observation #66291,https://biolit.fr/observations/observation-66291/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/IMG_20231026_113204-scaled.jpg,,TRUE,Identifiable +N1,66353,Sortie #66353,https://biolit.fr/sorties/sortie-66353/,GATTO SANDRINE,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-nouvelle-28102023-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-9.jpg,11/07/2023 15:49,10.0000000,12.0000000,43.0189290000000,3.04973600000000,,Port la Nouvelle,66355,Observation #66355,https://biolit.fr/observations/observation-66355/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-nouvelle-28102023-1.jpg,,,Ne sais pas +N1,66353,Sortie #66353,https://biolit.fr/sorties/sortie-66353/,GATTO SANDRINE,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-nouvelle-28102023-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-9.jpg,11/07/2023 15:49,10.0000000,12.0000000,43.0189290000000,3.04973600000000,,Port la Nouvelle,66357,Observation #66357,https://biolit.fr/observations/observation-66357/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-2.jpg,,,Ne sais pas +N1,66353,Sortie #66353,https://biolit.fr/sorties/sortie-66353/,GATTO SANDRINE,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-nouvelle-28102023-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-9.jpg,11/07/2023 15:49,10.0000000,12.0000000,43.0189290000000,3.04973600000000,,Port la Nouvelle,66359,Observation #66359,https://biolit.fr/observations/observation-66359/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-3.jpg,,,Ne sais pas +N1,66353,Sortie #66353,https://biolit.fr/sorties/sortie-66353/,GATTO SANDRINE,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-nouvelle-28102023-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-9.jpg,11/07/2023 15:49,10.0000000,12.0000000,43.0189290000000,3.04973600000000,,Port la Nouvelle,66361,Observation #66361,https://biolit.fr/observations/observation-66361/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-4.jpg,,,Ne sais pas +N1,66353,Sortie #66353,https://biolit.fr/sorties/sortie-66353/,GATTO SANDRINE,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-nouvelle-28102023-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-9.jpg,11/07/2023 15:49,10.0000000,12.0000000,43.0189290000000,3.04973600000000,,Port la Nouvelle,66363,Observation #66363,https://biolit.fr/observations/observation-66363/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-5.jpg,,,Identifiable +N1,66353,Sortie #66353,https://biolit.fr/sorties/sortie-66353/,GATTO SANDRINE,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-nouvelle-28102023-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-9.jpg,11/07/2023 15:49,10.0000000,12.0000000,43.0189290000000,3.04973600000000,,Port la Nouvelle,66365,Observation #66365,https://biolit.fr/observations/observation-66365/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-7.jpg,,,Identifiable +N1,66353,Sortie #66353,https://biolit.fr/sorties/sortie-66353/,GATTO SANDRINE,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-nouvelle-28102023-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-9.jpg,11/07/2023 15:49,10.0000000,12.0000000,43.0189290000000,3.04973600000000,,Port la Nouvelle,66367,Observation #66367,https://biolit.fr/observations/observation-66367/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-7.jpg,,,Ne sais pas +N1,66353,Sortie #66353,https://biolit.fr/sorties/sortie-66353/,GATTO SANDRINE,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-nouvelle-28102023-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-9.jpg,11/07/2023 15:49,10.0000000,12.0000000,43.0189290000000,3.04973600000000,,Port la Nouvelle,66369,Observation #66369,https://biolit.fr/observations/observation-66369/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-8.jpg,,,Ne sais pas +N1,66353,Sortie #66353,https://biolit.fr/sorties/sortie-66353/,GATTO SANDRINE,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-nouvelle-28102023-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-9.jpg,11/07/2023 15:49,10.0000000,12.0000000,43.0189290000000,3.04973600000000,,Port la Nouvelle,66371,Observation #66371,https://biolit.fr/observations/observation-66371/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6582bbb0ed2ef45e1e05ae4adc2a10fa/2023/11/Port-la-Nouvelle-28102023-9.jpg,,,Ne sais pas +N1,66424,Sortie #66424,https://biolit.fr/sorties/sortie-66424/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Gibule-ombiliquee.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-quadrat-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commun.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-quadrat-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombilique.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-quadrat-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/01bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/02ne-sait-pas-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/03peut-etre-avec-une-dent--scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/04ne-sait-pas-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/05-littorine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/06-pourpier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/07ne-sait-pas-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/08bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/09ne-sait-pas-scaled.jpg,11/08/2023 13:59,10.0000000,13.0000000,48.8080930000000,-3.01468300000000,,plage du Launay,,,,,,,,,, +N1,66532,Sortie #66532,https://biolit.fr/sorties/sortie-66532/,Couet Dominique,https://biolit.fr/wp-content/uploads/jet-form-builder/887f8c0166d9b17c8c3c43ea3ddbb894/2023/11/IMG_20231112_120153-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/887f8c0166d9b17c8c3c43ea3ddbb894/2023/11/IMG_20231112_105313-scaled.jpg,11/12/2023 15:13,10.0000000,11.0000000,45.9925210000000,-1.38681900000000,,Plage de Chaucre île d'Oleron,,,,,,,,,, +N1,66536,Sortie #66536,https://biolit.fr/sorties/sortie-66536/,Couet Dominique,https://biolit.fr/wp-content/uploads/jet-form-builder/887f8c0166d9b17c8c3c43ea3ddbb894/2023/11/IMG_20231112_120153-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/887f8c0166d9b17c8c3c43ea3ddbb894/2023/11/IMG_20231112_105313-1-scaled.jpg,11/12/2023 15:18,10.0000000,11.0000000,45.994063000000,-1.38669500000000,,Plage de Chaucre Oléron,66538,Observation #66538,https://biolit.fr/observations/observation-66538/,Janthina janthina,Janthine commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/887f8c0166d9b17c8c3c43ea3ddbb894/2023/11/IMG_20231112_120153-1-scaled.jpg,,TRUE,Identifiable +N1,66536,Sortie #66536,https://biolit.fr/sorties/sortie-66536/,Couet Dominique,https://biolit.fr/wp-content/uploads/jet-form-builder/887f8c0166d9b17c8c3c43ea3ddbb894/2023/11/IMG_20231112_120153-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/887f8c0166d9b17c8c3c43ea3ddbb894/2023/11/IMG_20231112_105313-1-scaled.jpg,11/12/2023 15:18,10.0000000,11.0000000,45.994063000000,-1.38669500000000,,Plage de Chaucre Oléron,66540,Observation #66540,https://biolit.fr/observations/observation-66540/,Janthina janthina,Janthine commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/887f8c0166d9b17c8c3c43ea3ddbb894/2023/11/IMG_20231112_120153-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/887f8c0166d9b17c8c3c43ea3ddbb894/2023/11/IMG_20231112_105313-1-scaled.jpg,,,Identifiable +N1,66536,Sortie #66536,https://biolit.fr/sorties/sortie-66536/,Couet Dominique,https://biolit.fr/wp-content/uploads/jet-form-builder/887f8c0166d9b17c8c3c43ea3ddbb894/2023/11/IMG_20231112_120153-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/887f8c0166d9b17c8c3c43ea3ddbb894/2023/11/IMG_20231112_105313-1-scaled.jpg,11/12/2023 15:18,10.0000000,11.0000000,45.994063000000,-1.38669500000000,,Plage de Chaucre Oléron,67963,Observation #67963,https://biolit.fr/observations/observation-67963/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/887f8c0166d9b17c8c3c43ea3ddbb894/2023/11/IMG_20231112_105313-1-scaled.jpg,,,non-identifiable +N1,66548,Sortie #66548,https://biolit.fr/sorties/sortie-66548/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/11/DSC_6864-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/11/DSC_6868-Littorine-obtuse.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/11/DSC_6869-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/11/DSC_6872-Littorine-obtuse.jpg,11/13/2023 16:15,15.0000000,16.0000000,47.5646870000000,-2.907099,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Plage du Berchis Larmor Baden,,,,,,,,,, +N1,66558,Sortie #66558,https://biolit.fr/sorties/sortie-66558/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/11/DSC_6864-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/11/DSC_6869-1-scaled.jpg,11/13/2023 16:52,15.0000000,16.0000000,47.5710100000000,-2.907099,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),PLAGE DU BERCHIS LARMOR BADEN,,,,,,,,,, +N1,66563,Sortie #66563,https://biolit.fr/sorties/sortie-66563/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/11/Donnees-scaled.jpg,11/13/2023 16:58,15.0000000,16.0000000,47.4431240000000,-2.907099,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),PLAGE DU BERCHIS LARMOR BADEN,,,,,,,,,, +N1,66577,Sortie #66577,https://biolit.fr/sorties/sortie-66577/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Gibule-ombiliquee-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-quadrat-1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commune.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-quadrat-2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombiliquee.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-quadrat-3-1.jpg,11/14/2023 11:41,10.0000000,13.0000000,48.8082300000000,-3.01427100000000,Escale Bretagne,plage du Launay,,,,,,,,,, +N1,66630,Sortie #66630,https://biolit.fr/sorties/sortie-66630/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Gibule-ombiliquee-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombiliquee-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/01bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/02ne-sait-pas-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/03peut-etre-avec-une-dent-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/04ne-sait-pas-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/05-littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/06-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/07ne-sait-pas-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/08bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/09ne-sait-pas-1-scaled.jpg,11/14/2023 11:54,10.0000000,13.0000000,48.8079470000000,-3.01435700000000,Escale Bretagne,plage du Launay PLOUBAZLANEC 22,,,,,,,,,, +N1,66665,Sortie #66665,https://biolit.fr/sorties/sortie-66665/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Gibule-ombiliquee-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commune-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombiliquee-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/01bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/02ne-sait-pas-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/03peut-etre-avec-une-dent-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/04ne-sait-pas-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/05-littorine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/06-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/07ne-sait-pas-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/08bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/09ne-sait-pas-2-scaled.jpg,11/14/2023 12:03,10.0000000,13.0000000,48.8080600000000,-3.01452800000000,Escale Bretagne,plage du Launay PLOUBAZLANEC 22,66690,Observation #66690,https://biolit.fr/observations/observation-66690/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Gibule-ombiliquee-3.jpg,,TRUE,Identifiable +N1,66718,Sortie #66718,https://biolit.fr/sorties/sortie-66718/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commune-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombiliquee-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/01bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/02ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/03peut-etre-avec-une-dent-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/04ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/05-littorine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/06-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/07ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/08bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/09ne-sait-pas-3-scaled.jpg,11/14/2023 12:23,10.0000000,13.0000000,48.8080150000000,-3.01444200000000,Escale Bretagne,plage du Launay PLOUBAZLANEC 22,66720,Observation #66720,https://biolit.fr/observations/observation-66720/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle-4.jpg,,TRUE,Identifiable +N1,66718,Sortie #66718,https://biolit.fr/sorties/sortie-66718/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commune-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombiliquee-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/01bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/02ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/03peut-etre-avec-une-dent-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/04ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/05-littorine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/06-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/07ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/08bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/09ne-sait-pas-3-scaled.jpg,11/14/2023 12:23,10.0000000,13.0000000,48.8080150000000,-3.01444200000000,Escale Bretagne,plage du Launay PLOUBAZLANEC 22,66734,Observation #66734,https://biolit.fr/observations/observation-66734/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commune-3.jpg,,TRUE,Identifiable +N1,66718,Sortie #66718,https://biolit.fr/sorties/sortie-66718/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commune-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombiliquee-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/01bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/02ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/03peut-etre-avec-une-dent-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/04ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/05-littorine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/06-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/07ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/08bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/09ne-sait-pas-3-scaled.jpg,11/14/2023 12:23,10.0000000,13.0000000,48.8080150000000,-3.01444200000000,Escale Bretagne,plage du Launay PLOUBAZLANEC 22,66738,Observation #66738,https://biolit.fr/observations/observation-66738/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee-4.jpg,,TRUE,Identifiable +N1,66718,Sortie #66718,https://biolit.fr/sorties/sortie-66718/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commune-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombiliquee-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/01bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/02ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/03peut-etre-avec-une-dent-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/04ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/05-littorine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/06-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/07ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/08bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/09ne-sait-pas-3-scaled.jpg,11/14/2023 12:23,10.0000000,13.0000000,48.8080150000000,-3.01444200000000,Escale Bretagne,plage du Launay PLOUBAZLANEC 22,66758,Observation #66758,https://biolit.fr/observations/observation-66758/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre-4.jpg,,,Identifiable +N1,66718,Sortie #66718,https://biolit.fr/sorties/sortie-66718/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commune-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombiliquee-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/01bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/02ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/03peut-etre-avec-une-dent-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/04ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/05-littorine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/06-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/07ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/08bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/09ne-sait-pas-3-scaled.jpg,11/14/2023 12:23,10.0000000,13.0000000,48.8080150000000,-3.01444200000000,Escale Bretagne,plage du Launay PLOUBAZLANEC 22,66765,Observation #66765,https://biolit.fr/observations/observation-66765/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombiliquee-3.jpg,,TRUE,Identifiable +N1,66718,Sortie #66718,https://biolit.fr/sorties/sortie-66718/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commune-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombiliquee-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/01bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/02ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/03peut-etre-avec-une-dent-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/04ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/05-littorine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/06-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/07ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/08bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/09ne-sait-pas-3-scaled.jpg,11/14/2023 12:23,10.0000000,13.0000000,48.8080150000000,-3.01444200000000,Escale Bretagne,plage du Launay PLOUBAZLANEC 22,66778,Observation #66778,https://biolit.fr/observations/observation-66778/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse-4.jpg,,TRUE,Identifiable +N1,66718,Sortie #66718,https://biolit.fr/sorties/sortie-66718/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commune-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombiliquee-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/01bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/02ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/03peut-etre-avec-une-dent-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/04ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/05-littorine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/06-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/07ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/08bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/09ne-sait-pas-3-scaled.jpg,11/14/2023 12:23,10.0000000,13.0000000,48.8080150000000,-3.01444200000000,Escale Bretagne,plage du Launay PLOUBAZLANEC 22,66780,Observation #66780,https://biolit.fr/observations/observation-66780/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/01bigorneau-3-scaled.jpg,,TRUE,Identifiable +N1,66718,Sortie #66718,https://biolit.fr/sorties/sortie-66718/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commune-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombiliquee-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/01bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/02ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/03peut-etre-avec-une-dent-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/04ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/05-littorine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/06-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/07ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/08bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/09ne-sait-pas-3-scaled.jpg,11/14/2023 12:23,10.0000000,13.0000000,48.8080150000000,-3.01444200000000,Escale Bretagne,plage du Launay PLOUBAZLANEC 22,66782,Observation #66782,https://biolit.fr/observations/observation-66782/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/02ne-sait-pas-3-scaled.jpg,,TRUE,Ne sais pas +N1,66718,Sortie #66718,https://biolit.fr/sorties/sortie-66718/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commune-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombiliquee-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/01bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/02ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/03peut-etre-avec-une-dent-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/04ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/05-littorine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/06-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/07ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/08bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/09ne-sait-pas-3-scaled.jpg,11/14/2023 12:23,10.0000000,13.0000000,48.8080150000000,-3.01444200000000,Escale Bretagne,plage du Launay PLOUBAZLANEC 22,66791,Observation #66791,https://biolit.fr/observations/observation-66791/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/03peut-etre-avec-une-dent-1-3-scaled.jpg,,,Ne sais pas +N1,66718,Sortie #66718,https://biolit.fr/sorties/sortie-66718/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commune-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombiliquee-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/01bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/02ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/03peut-etre-avec-une-dent-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/04ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/05-littorine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/06-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/07ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/08bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/09ne-sait-pas-3-scaled.jpg,11/14/2023 12:23,10.0000000,13.0000000,48.8080150000000,-3.01444200000000,Escale Bretagne,plage du Launay PLOUBAZLANEC 22,66795,Observation #66795,https://biolit.fr/observations/observation-66795/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/04ne-sait-pas-3-scaled.jpg,,TRUE,Ne sais pas +N1,66718,Sortie #66718,https://biolit.fr/sorties/sortie-66718/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commune-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombiliquee-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/01bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/02ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/03peut-etre-avec-une-dent-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/04ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/05-littorine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/06-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/07ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/08bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/09ne-sait-pas-3-scaled.jpg,11/14/2023 12:23,10.0000000,13.0000000,48.8080150000000,-3.01444200000000,Escale Bretagne,plage du Launay PLOUBAZLANEC 22,66799,Observation #66799,https://biolit.fr/observations/observation-66799/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/05-littorine-3-scaled.jpg,,TRUE,Identifiable +N1,66718,Sortie #66718,https://biolit.fr/sorties/sortie-66718/,VivArmor Nature,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/1-Patelle-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-commune-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Gibule-ombiliquee-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/2-Pourpre-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Gibule-ombiliquee-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/3-Littorine-obtuse-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/01bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/02ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/03peut-etre-avec-une-dent-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/04ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/05-littorine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/06-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/07ne-sait-pas-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/08bigorneau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/09ne-sait-pas-3-scaled.jpg,11/14/2023 12:23,10.0000000,13.0000000,48.8080150000000,-3.01444200000000,Escale Bretagne,plage du Launay PLOUBAZLANEC 22,66805,Observation #66805,https://biolit.fr/observations/observation-66805/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b76547ca6a1d2cfeb202ba28f996b977/2023/11/06-pourpre-2-scaled.jpg,,,Identifiable +N1,67029,Sortie #67029,https://biolit.fr/sorties/sortie-67029/,Tassez Florent,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0622-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0623-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0631-scaled.jpg,11/16/2023 10:24,15.0:15,15.0000000,51.0009150000000,2.06886300000000,,Platier d'Oye,67031,Observation #67031,https://biolit.fr/observations/observation-67031/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0629-scaled.jpg,,,Ne sais pas +N1,67029,Sortie #67029,https://biolit.fr/sorties/sortie-67029/,Tassez Florent,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0622-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0623-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0631-scaled.jpg,11/16/2023 10:24,15.0:15,15.0000000,51.0009150000000,2.06886300000000,,Platier d'Oye,67033,Observation #67033,https://biolit.fr/observations/observation-67033/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0623-scaled.jpg,,,Ne sais pas +N1,67029,Sortie #67029,https://biolit.fr/sorties/sortie-67029/,Tassez Florent,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0622-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0623-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0631-scaled.jpg,11/16/2023 10:24,15.0:15,15.0000000,51.0009150000000,2.06886300000000,,Platier d'Oye,67035,Observation #67035,https://biolit.fr/observations/observation-67035/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0622-scaled.jpg,,,Identifiable +N1,67048,Sortie #67048,https://biolit.fr/sorties/sortie-67048/,Tassez Florent,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0644-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0646-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0648-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0649-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0651-scaled.jpg,11/16/2023 10:36,15.0000000,16.0000000,50.993258000000,2.07504300000000,,Platier d'Oye,67050,Observation #67050,https://biolit.fr/observations/observation-67050/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0646-scaled.jpg,,TRUE,Identifiable +N1,67048,Sortie #67048,https://biolit.fr/sorties/sortie-67048/,Tassez Florent,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0644-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0646-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0648-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0649-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0651-scaled.jpg,11/16/2023 10:36,15.0000000,16.0000000,50.993258000000,2.07504300000000,,Platier d'Oye,67074,Observation #67074,https://biolit.fr/observations/observation-67074/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0647-scaled.jpg,,TRUE,Identifiable +N1,67048,Sortie #67048,https://biolit.fr/sorties/sortie-67048/,Tassez Florent,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0644-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0646-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0648-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0649-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0651-scaled.jpg,11/16/2023 10:36,15.0000000,16.0000000,50.993258000000,2.07504300000000,,Platier d'Oye,67095,Observation #67095,https://biolit.fr/observations/observation-67095/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0648-scaled.jpg,,,non-identifiable +N1,67085,Sortie #67085,https://biolit.fr/sorties/sortie-67085/,HERBAUX SEBASTIEN,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0011-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0050-scaled.jpg,11/16/2023 10:39,14.0000000,17.0000000,51.0075000000000,2.07309000000000,,Réserve Naturelle Nationale du Platier d'Oye,67097,Observation #67097,https://biolit.fr/observations/observation-67097/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0011-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0050-scaled.jpg,,,Ne sais pas +N1,67085,Sortie #67085,https://biolit.fr/sorties/sortie-67085/,HERBAUX SEBASTIEN,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0011-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0050-scaled.jpg,11/16/2023 10:39,14.0000000,17.0000000,51.0075000000000,2.07309000000000,,Réserve Naturelle Nationale du Platier d'Oye,67099,Observation #67099,https://biolit.fr/observations/observation-67099/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0004-scaled.jpg,,,Ne sais pas +N1,67085,Sortie #67085,https://biolit.fr/sorties/sortie-67085/,HERBAUX SEBASTIEN,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0011-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0050-scaled.jpg,11/16/2023 10:39,14.0000000,17.0000000,51.0075000000000,2.07309000000000,,Réserve Naturelle Nationale du Platier d'Oye,67101,Observation #67101,https://biolit.fr/observations/observation-67101/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0005-scaled.jpg,,,Ne sais pas +N1,67085,Sortie #67085,https://biolit.fr/sorties/sortie-67085/,HERBAUX SEBASTIEN,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0011-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0050-scaled.jpg,11/16/2023 10:39,14.0000000,17.0000000,51.0075000000000,2.07309000000000,,Réserve Naturelle Nationale du Platier d'Oye,67103,Observation #67103,https://biolit.fr/observations/observation-67103/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0022-scaled.jpg,,,Ne sais pas +N1,67085,Sortie #67085,https://biolit.fr/sorties/sortie-67085/,HERBAUX SEBASTIEN,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0011-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0050-scaled.jpg,11/16/2023 10:39,14.0000000,17.0000000,51.0075000000000,2.07309000000000,,Réserve Naturelle Nationale du Platier d'Oye,67109,Observation #67109,https://biolit.fr/observations/observation-67109/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0049-scaled.jpg,,,Ne sais pas +N1,67128,Sortie #67128,https://biolit.fr/sorties/sortie-67128/,Tassez Florent,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0662-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0663-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0664-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0665-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0668-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0673-scaled.jpg,11/16/2023 10:45,16.0000000,17.0:15,51.0008540000000,2.06783300000000,,Platier d'Oye,67150,Observation #67150,https://biolit.fr/observations/observation-67150/,Salamandra salamandra,Salamandre,,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0662-scaled.jpg,,,Identifiable +N1,67128,Sortie #67128,https://biolit.fr/sorties/sortie-67128/,Tassez Florent,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0662-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0663-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0664-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0665-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0668-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0673-scaled.jpg,11/16/2023 10:45,16.0000000,17.0:15,51.0008540000000,2.06783300000000,,Platier d'Oye,67155,Observation #67155,https://biolit.fr/observations/observation-67155/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0663-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0664-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0665-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0673-scaled.jpg,,,non-identifiable +N1,67128,Sortie #67128,https://biolit.fr/sorties/sortie-67128/,Tassez Florent,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0662-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0663-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0664-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0665-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0668-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0673-scaled.jpg,11/16/2023 10:45,16.0000000,17.0:15,51.0008540000000,2.06783300000000,,Platier d'Oye,67165,Observation #67165,https://biolit.fr/observations/observation-67165/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0668-scaled.jpg,,,non-identifiable +N1,67153,Sortie #67153,https://biolit.fr/sorties/sortie-67153/,HERBAUX SEBASTIEN,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0068-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0069-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0082-scaled.jpg,11/16/2023 10:46,14.0000000,17.0000000,51.0061710000000,2.06219000000000,,Réserve Naturelle Nationale du Platier d'Oye,67166,Observation #67166,https://biolit.fr/observations/observation-67166/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0053-scaled.jpg,,,Ne sais pas +N1,67153,Sortie #67153,https://biolit.fr/sorties/sortie-67153/,HERBAUX SEBASTIEN,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0068-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0069-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0082-scaled.jpg,11/16/2023 10:46,14.0000000,17.0000000,51.0061710000000,2.06219000000000,,Réserve Naturelle Nationale du Platier d'Oye,67169,Observation #67169,https://biolit.fr/observations/observation-67169/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0056-scaled.jpg,,TRUE,Ne sais pas +N1,67153,Sortie #67153,https://biolit.fr/sorties/sortie-67153/,HERBAUX SEBASTIEN,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0068-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0069-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0082-scaled.jpg,11/16/2023 10:46,14.0000000,17.0000000,51.0061710000000,2.06219000000000,,Réserve Naturelle Nationale du Platier d'Oye,67171,Observation #67171,https://biolit.fr/observations/observation-67171/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0058-scaled.jpg,,,Ne sais pas +N1,67153,Sortie #67153,https://biolit.fr/sorties/sortie-67153/,HERBAUX SEBASTIEN,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0068-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0069-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0082-scaled.jpg,11/16/2023 10:46,14.0000000,17.0000000,51.0061710000000,2.06219000000000,,Réserve Naturelle Nationale du Platier d'Oye,67173,Observation #67173,https://biolit.fr/observations/observation-67173/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0064-scaled.jpg,,,Ne sais pas +N1,67153,Sortie #67153,https://biolit.fr/sorties/sortie-67153/,HERBAUX SEBASTIEN,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0068-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0069-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0082-scaled.jpg,11/16/2023 10:46,14.0000000,17.0000000,51.0061710000000,2.06219000000000,,Réserve Naturelle Nationale du Platier d'Oye,67175,Observation #67175,https://biolit.fr/observations/observation-67175/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0069-scaled.jpg,,,Ne sais pas +N1,67153,Sortie #67153,https://biolit.fr/sorties/sortie-67153/,HERBAUX SEBASTIEN,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0068-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0069-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0082-scaled.jpg,11/16/2023 10:46,14.0000000,17.0000000,51.0061710000000,2.06219000000000,,Réserve Naturelle Nationale du Platier d'Oye,67177,Observation #67177,https://biolit.fr/observations/observation-67177/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0071-scaled.jpg,,,Ne sais pas +N1,67153,Sortie #67153,https://biolit.fr/sorties/sortie-67153/,HERBAUX SEBASTIEN,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0068-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0069-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0082-scaled.jpg,11/16/2023 10:46,14.0000000,17.0000000,51.0061710000000,2.06219000000000,,Réserve Naturelle Nationale du Platier d'Oye,67191,Observation #67191,https://biolit.fr/observations/observation-67191/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/46ec7c04ffd0114b4f522142deebf8fe/2023/11/DSC_0077-scaled.jpg,,,Ne sais pas +N1,67189,Sortie #67189,https://biolit.fr/sorties/sortie-67189/,Tassez Florent,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0625-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0626-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0627-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0649-1-scaled.jpg,11/16/2023 10:50,15.0:15,16.0000000,51.0051750000000,2.0767590000000,,Platier d'Oye,67196,Observation #67196,https://biolit.fr/observations/observation-67196/,Ammophila arenaria,Oyat,,https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0625-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0626-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0627-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e9b565a84385d6b85d61668aacbe7456/2023/11/DSC_0649-1-scaled.jpg,,,Identifiable +N1,67487,Sortie #67487,https://biolit.fr/sorties/sortie-67487/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2023/11/IMG_1523.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2023/11/IMG_1527-rotated.jpg,11/17/2023 18:13,13.0000000,15.0000000,48.7424,-3.4439170,Escale Bretagne,Landrellec,67489,Observation #67489,https://biolit.fr/observations/observation-67489/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2023/11/IMG_1523.jpg,,,Identifiable +N1,67501,Sortie #67501,https://biolit.fr/sorties/sortie-67501/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_5-scaled.jpg,11/17/2023 18:30,15.0000000,16.0000000,48.6548480000000,-2.02240700000000,,Plage de l'éventail_Fort National_Saint-Malo,67503,Observation #67503,https://biolit.fr/observations/observation-67503/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1-scaled.jpg,,TRUE,Identifiable +N1,67501,Sortie #67501,https://biolit.fr/sorties/sortie-67501/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_5-scaled.jpg,11/17/2023 18:30,15.0000000,16.0000000,48.6548480000000,-2.02240700000000,,Plage de l'éventail_Fort National_Saint-Malo,67505,Observation #67505,https://biolit.fr/observations/observation-67505/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_1-scaled.jpg,,TRUE,Identifiable +N1,67501,Sortie #67501,https://biolit.fr/sorties/sortie-67501/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_5-scaled.jpg,11/17/2023 18:30,15.0000000,16.0000000,48.6548480000000,-2.02240700000000,,Plage de l'éventail_Fort National_Saint-Malo,67507,Observation #67507,https://biolit.fr/observations/observation-67507/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_2-scaled.jpg,,TRUE,Identifiable +N1,67501,Sortie #67501,https://biolit.fr/sorties/sortie-67501/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_5-scaled.jpg,11/17/2023 18:30,15.0000000,16.0000000,48.6548480000000,-2.02240700000000,,Plage de l'éventail_Fort National_Saint-Malo,67511,Observation #67511,https://biolit.fr/observations/observation-67511/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_1-scaled.jpg,,TRUE,Identifiable +N1,67501,Sortie #67501,https://biolit.fr/sorties/sortie-67501/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_5-scaled.jpg,11/17/2023 18:30,15.0000000,16.0000000,48.6548480000000,-2.02240700000000,,Plage de l'éventail_Fort National_Saint-Malo,67514,Observation #67514,https://biolit.fr/observations/observation-67514/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_4-scaled.jpg,,TRUE,Identifiable +N1,67501,Sortie #67501,https://biolit.fr/sorties/sortie-67501/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_5-scaled.jpg,11/17/2023 18:30,15.0000000,16.0000000,48.6548480000000,-2.02240700000000,,Plage de l'éventail_Fort National_Saint-Malo,67516,Observation #67516,https://biolit.fr/observations/observation-67516/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_3-scaled.jpg,,TRUE,Identifiable +N1,67501,Sortie #67501,https://biolit.fr/sorties/sortie-67501/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_5-scaled.jpg,11/17/2023 18:30,15.0000000,16.0000000,48.6548480000000,-2.02240700000000,,Plage de l'éventail_Fort National_Saint-Malo,67518,Observation #67518,https://biolit.fr/observations/observation-67518/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_5-scaled.jpg,,TRUE,Identifiable +N1,67501,Sortie #67501,https://biolit.fr/sorties/sortie-67501/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_5-scaled.jpg,11/17/2023 18:30,15.0000000,16.0000000,48.6548480000000,-2.02240700000000,,Plage de l'éventail_Fort National_Saint-Malo,67520,Observation #67520,https://biolit.fr/observations/observation-67520/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_2-scaled.jpg,,TRUE,Identifiable +N1,67501,Sortie #67501,https://biolit.fr/sorties/sortie-67501/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_5-scaled.jpg,11/17/2023 18:30,15.0000000,16.0000000,48.6548480000000,-2.02240700000000,,Plage de l'éventail_Fort National_Saint-Malo,67522,Observation #67522,https://biolit.fr/observations/observation-67522/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q2_3-scaled.jpg,,TRUE,Identifiable +N1,67510,Sortie #67510,https://biolit.fr/sorties/sortie-67510/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2023/11/IMG_1509.jpg,11/17/2023 18:35,13.0000000,15.0000000,48.7603190000000,-3.31512500000000,,Landrellec,,,,,,,,,, +N1,67528,Sortie #67528,https://biolit.fr/sorties/sortie-67528/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2023/11/BioLit_20231117_Q1_3-1-scaled.jpg,11/17/2023 18:49,15.0000000,16.0000000,48.6549530000000,-2.02251400000000,,Plage de l'éventail_Fort National_Saint-Malo,,,,,,,,,, +N1,67571,Sortie #67571,https://biolit.fr/sorties/sortie-67571/,BOGDANSKI Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/IMG_4135-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/7759711344255830993.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/4553559760017753620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/251333675806521702.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/9196695494588381573.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/3326993235815387127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/8348134087021402714.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/3248231024956526962.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/1700418800926-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/1700418800942-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/1700418800934-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/IMG_1444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/IMG_1428-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/IMG_1441-scaled.jpg,11/19/2023 19:42,14.0000000,17.0000000,50.408188,1.591865,,Berck sur Mer,,,,,,,,,, +N1,67587,Sortie #67587,https://biolit.fr/sorties/sortie-67587/,BOGDANSKI Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/IMG_1444-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/IMG_1428-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/IMG_1441-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/IMG_4135-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/7759711344255830993-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/4553559760017753620-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/251333675806521702-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/9196695494588381573-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/3326993235815387127-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/8348134087021402714-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/3248231024956526962-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/1700418800926-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/1700418800942-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/1700418800934-1-scaled.jpg,11/19/2023 19:45,14.0000000,17.0000000,50.408188,1.591865,,Berck sur Mer,67589,Observation #67589,https://biolit.fr/observations/observation-67589/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/IMG_4135-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/251333675806521702-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/de90f7e4d1fe2bf11d3001e3ed826b59/2023/11/8348134087021402714-1.jpg,,,Ne sais pas +N1,67789,Sortie #67789,https://biolit.fr/sorties/sortie-67789/,Allory Pierre-Yves,https://biolit.fr/wp-content/uploads/jet-form-builder/c18157d07e1278e5f88893fd571eb7bf/2023/11/IMG_20231117_143840_966.jpg,11/15/2023 0:00,11.0:26,8.0:26,48.5926600,-2.2871250,,Ghihg,,,,,,,,,, +N1,67897,Sortie #67897,https://biolit.fr/sorties/sortie-67897/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100244-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100428-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101410-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101820-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_103254-scaled.jpg,10/31/2023 0:00,10.0000000,11.0000000,43.2842660000000,5.31592500000000,,Calanque de St Estève,67899,Observation #67899,https://biolit.fr/observations/observation-67899/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100104-scaled.jpg,,,Ne sais pas +N1,67897,Sortie #67897,https://biolit.fr/sorties/sortie-67897/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100244-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100428-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101410-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101820-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_103254-scaled.jpg,10/31/2023 0:00,10.0000000,11.0000000,43.2842660000000,5.31592500000000,,Calanque de St Estève,67901,Observation #67901,https://biolit.fr/observations/observation-67901/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100244-scaled.jpg,,,Ne sais pas +N1,67897,Sortie #67897,https://biolit.fr/sorties/sortie-67897/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100244-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100428-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101410-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101820-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_103254-scaled.jpg,10/31/2023 0:00,10.0000000,11.0000000,43.2842660000000,5.31592500000000,,Calanque de St Estève,67903,Observation #67903,https://biolit.fr/observations/observation-67903/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100405-scaled.jpg,,,Ne sais pas +N1,67897,Sortie #67897,https://biolit.fr/sorties/sortie-67897/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100244-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100428-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101410-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101820-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_103254-scaled.jpg,10/31/2023 0:00,10.0000000,11.0000000,43.2842660000000,5.31592500000000,,Calanque de St Estève,67905,Observation #67905,https://biolit.fr/observations/observation-67905/,Peyssonnelia squamaria,Peyssonnelia,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100428-scaled.jpg,,,Ne sais pas +N1,67897,Sortie #67897,https://biolit.fr/sorties/sortie-67897/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100244-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100428-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101410-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101820-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_103254-scaled.jpg,10/31/2023 0:00,10.0000000,11.0000000,43.2842660000000,5.31592500000000,,Calanque de St Estève,67907,Observation #67907,https://biolit.fr/observations/observation-67907/,Corallina officinalis/caespitosa,Coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100726-scaled.jpg,,,Ne sais pas +N1,67897,Sortie #67897,https://biolit.fr/sorties/sortie-67897/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100244-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100428-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101410-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101820-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_103254-scaled.jpg,10/31/2023 0:00,10.0000000,11.0000000,43.2842660000000,5.31592500000000,,Calanque de St Estève,67909,Observation #67909,https://biolit.fr/observations/observation-67909/,Caulerpa cylindracea,Caulerpe cylindracée,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101129-scaled.jpg,,TRUE,Ne sais pas +N1,67897,Sortie #67897,https://biolit.fr/sorties/sortie-67897/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100244-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100428-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101410-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101820-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_103254-scaled.jpg,10/31/2023 0:00,10.0000000,11.0000000,43.2842660000000,5.31592500000000,,Calanque de St Estève,67911,Observation #67911,https://biolit.fr/observations/observation-67911/,Corallina officinalis/caespitosa,Coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101315-scaled.jpg,,,Ne sais pas +N1,67897,Sortie #67897,https://biolit.fr/sorties/sortie-67897/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100244-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100428-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101410-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101820-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_103254-scaled.jpg,10/31/2023 0:00,10.0000000,11.0000000,43.2842660000000,5.31592500000000,,Calanque de St Estève,67913,Observation #67913,https://biolit.fr/observations/observation-67913/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101410-scaled.jpg,,TRUE,Identifiable +N1,67897,Sortie #67897,https://biolit.fr/sorties/sortie-67897/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100244-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100428-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101410-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101820-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_103254-scaled.jpg,10/31/2023 0:00,10.0000000,11.0000000,43.2842660000000,5.31592500000000,,Calanque de St Estève,67917,Observation #67917,https://biolit.fr/observations/observation-67917/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101820-scaled.jpg,,,Ne sais pas +N1,67897,Sortie #67897,https://biolit.fr/sorties/sortie-67897/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100244-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100428-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_100726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101410-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_101820-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_103254-scaled.jpg,10/31/2023 0:00,10.0000000,11.0000000,43.2842660000000,5.31592500000000,,Calanque de St Estève,67919,Observation #67919,https://biolit.fr/observations/observation-67919/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/11/IMG_20231031_103254-scaled.jpg,,,Ne sais pas +N1,67953,Sortie #67953,https://biolit.fr/sorties/sortie-67953/,CALLENS Estelle,https://biolit.fr/wp-content/uploads/jet-form-builder/f34fc74045a641e92b6e325571064ba1/2023/11/signal-2023-11-22-205440_002.jpeg,11/22/2023 0:00,16.0:38,16.0000000,43.6526860000000,7.15542600000000,,,67955,Observation #67955,https://biolit.fr/observations/observation-67955/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/jet-form-builder/f34fc74045a641e92b6e325571064ba1/2023/11/signal-2023-11-22-205440_002.jpeg,,TRUE,Identifiable +N1,67959,Sortie #67959,https://biolit.fr/sorties/sortie-67959/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/11/IMG_20221124_093800-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2023/11/IMG_20221124_111328-scaled.jpg,11/22/2023 0:00,10.0000000,10.0000000,43.2398590000000,5.36236900000000,,Marseille,,,,,,,,,, +N1,68068,Sortie #68068,https://biolit.fr/sorties/sortie-68068/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/11/DSC_6854-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/11/DSC_6872-Littorine-obtuse-1.jpg,11/03/2023,15.0000000,16.0000000,47.6193080000000,-2.83048200000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Plage du Perchis (Larmor Baden),68070,Observation #68070,https://biolit.fr/observations/observation-68070/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/11/DSC_6872-Littorine-obtuse-1.jpg,,TRUE,Identifiable +N1,68074,Sortie #68074,https://biolit.fr/sorties/sortie-68074/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/11/DSC_6872-Littorine-obtuse-2.jpg,11/06/2023,15.0000000,16.0000000,47.6142310000000,-2.75399900000000,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),plage du perchis,,,,,,,,,, +N1,68313,Sortie #68313,https://biolit.fr/sorties/sortie-68313/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2023/11/Crabe-sanguin.png | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2023/11/Crevettes-roses.png | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2023/11/Crabes-verts-juveniles-.png,7/23/2023 0:00,14.0000000,16.0000000,43.7825460000000,-1.41015000000000,,Lac Marin du Port d'Albret,68315,Observation #68315,https://biolit.fr/observations/observation-68315/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2023/11/Crabe-sanguin.png,,,Identifiable +N1,68313,Sortie #68313,https://biolit.fr/sorties/sortie-68313/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2023/11/Crabe-sanguin.png | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2023/11/Crevettes-roses.png | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2023/11/Crabes-verts-juveniles-.png,7/23/2023 0:00,14.0000000,16.0000000,43.7825460000000,-1.41015000000000,,Lac Marin du Port d'Albret,68317,Observation #68317,https://biolit.fr/observations/observation-68317/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2023/11/Crevettes-roses.png,,,Identifiable +N1,68313,Sortie #68313,https://biolit.fr/sorties/sortie-68313/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2023/11/Crabe-sanguin.png | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2023/11/Crevettes-roses.png | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2023/11/Crabes-verts-juveniles-.png,7/23/2023 0:00,14.0000000,16.0000000,43.7825460000000,-1.41015000000000,,Lac Marin du Port d'Albret,68319,Observation #68319,https://biolit.fr/observations/observation-68319/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2023/11/Crabes-verts-juveniles-.png,,,Identifiable +N1,68327,Sortie #68327,https://biolit.fr/sorties/sortie-68327/,Tigreat Justin,https://biolit.fr/wp-content/uploads/jet-form-builder/20e70711914e8599d8692594f2376a13/2023/11/7DA93234-BFB4-48E7-8260-59E8885215E3-scaled.jpeg,11/27/2023 0:00,23.000004,23.000007,41.6689830000000,8.9025250000000,,P,,,,,,,,,, +N1,68353,Sortie #68353,https://biolit.fr/sorties/sortie-68353/,CALLENS Estelle,https://biolit.fr/wp-content/uploads/jet-form-builder/f34fc74045a641e92b6e325571064ba1/2023/11/IMG_20231122_164333-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f34fc74045a641e92b6e325571064ba1/2023/11/IMG_20231122_164341-scaled.jpg,11/22/2023 0:00,10.0:38,10.0000000,43.6527450000000,7.15557600000000,,ZNP Cagnes,68355,Observation #68355,https://biolit.fr/observations/observation-68355/,Cygnus olor,Cygne tuberculé,,https://biolit.fr/wp-content/uploads/jet-form-builder/f34fc74045a641e92b6e325571064ba1/2023/11/IMG_20231122_164333-scaled.jpg,,TRUE,Identifiable +N1,68353,Sortie #68353,https://biolit.fr/sorties/sortie-68353/,CALLENS Estelle,https://biolit.fr/wp-content/uploads/jet-form-builder/f34fc74045a641e92b6e325571064ba1/2023/11/IMG_20231122_164333-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f34fc74045a641e92b6e325571064ba1/2023/11/IMG_20231122_164341-scaled.jpg,11/22/2023 0:00,10.0:38,10.0000000,43.6527450000000,7.15557600000000,,ZNP Cagnes,68357,Observation #68357,https://biolit.fr/observations/observation-68357/,Anas platyrhynchos,Canard colvert,,https://biolit.fr/wp-content/uploads/jet-form-builder/f34fc74045a641e92b6e325571064ba1/2023/11/IMG_20231122_164333-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f34fc74045a641e92b6e325571064ba1/2023/11/IMG_20231122_164341-scaled.jpg,,TRUE,Identifiable +N1,68383,Sortie #68383,https://biolit.fr/sorties/sortie-68383/,SMAHA Pascaline,https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1664-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1696-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1687-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1685-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1684-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1686-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1679-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1678-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1677-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1675-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1672-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1670-20.14.58-1-scaled.jpg,11/03/2023,14.0000000,16.0000000,46.8308290000000,-2.14508100000000,,Notre Dame de Monts,68385,Observation #68385,https://biolit.fr/observations/observation-68385/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1687-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1685-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1684-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1686-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1679-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1672-1-scaled.jpg,,,Identifiable +N1,68383,Sortie #68383,https://biolit.fr/sorties/sortie-68383/,SMAHA Pascaline,https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1664-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1696-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1687-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1685-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1684-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1686-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1679-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1678-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1677-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1675-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1672-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1670-20.14.58-1-scaled.jpg,11/03/2023,14.0000000,16.0000000,46.8308290000000,-2.14508100000000,,Notre Dame de Monts,68387,Observation #68387,https://biolit.fr/observations/observation-68387/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1696-20.14.58-1-scaled.jpg,,,non-identifiable +N1,68383,Sortie #68383,https://biolit.fr/sorties/sortie-68383/,SMAHA Pascaline,https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1664-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1696-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1687-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1685-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1684-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1686-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1679-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1678-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1677-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1675-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1672-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1670-20.14.58-1-scaled.jpg,11/03/2023,14.0000000,16.0000000,46.8308290000000,-2.14508100000000,,Notre Dame de Monts,68389,Observation #68389,https://biolit.fr/observations/observation-68389/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1677-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1678-20.14.58-1-scaled.jpg,,,non-identifiable +N1,68383,Sortie #68383,https://biolit.fr/sorties/sortie-68383/,SMAHA Pascaline,https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1664-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1696-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1687-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1685-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1684-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1686-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1679-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1678-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1677-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1675-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1672-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1670-20.14.58-1-scaled.jpg,11/03/2023,14.0000000,16.0000000,46.8308290000000,-2.14508100000000,,Notre Dame de Monts,68391,Observation #68391,https://biolit.fr/observations/observation-68391/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1664-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1675-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1670-20.14.58-1-scaled.jpg,,,Ne sais pas +N1,68383,Sortie #68383,https://biolit.fr/sorties/sortie-68383/,SMAHA Pascaline,https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1664-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1696-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1687-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1685-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1684-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1686-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1679-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1678-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1677-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1675-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1672-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1670-20.14.58-1-scaled.jpg,11/03/2023,14.0000000,16.0000000,46.8308290000000,-2.14508100000000,,Notre Dame de Monts,68393,Observation #68393,https://biolit.fr/observations/observation-68393/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1685-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1684-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1679-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1686-1-scaled.jpg,,,Identifiable +N1,68383,Sortie #68383,https://biolit.fr/sorties/sortie-68383/,SMAHA Pascaline,https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1664-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1696-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1687-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1685-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1684-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1686-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1679-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1678-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1677-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1675-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1672-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1670-20.14.58-1-scaled.jpg,11/03/2023,14.0000000,16.0000000,46.8308290000000,-2.14508100000000,,Notre Dame de Monts,68395,Observation #68395,https://biolit.fr/observations/observation-68395/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1672-1-scaled.jpg,,,Identifiable +N1,68383,Sortie #68383,https://biolit.fr/sorties/sortie-68383/,SMAHA Pascaline,https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1664-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1696-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1687-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1685-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1684-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1686-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1679-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1678-20.14.58-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1677-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1675-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1672-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1670-20.14.58-1-scaled.jpg,11/03/2023,14.0000000,16.0000000,46.8308290000000,-2.14508100000000,,Notre Dame de Monts,68397,Observation #68397,https://biolit.fr/observations/observation-68397/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7ac39224fde5a2ca33d5646e1243e1c3/2023/11/IMG_1686-1-scaled.jpg,,,Identifiable +N1,68406,Sortie #68406,https://biolit.fr/sorties/sortie-68406/,Djalti benziane Ismahane,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0026439bac721d3c8079228d9f137e/2023/11/IMG_4558-scaled.jpg,11/16/2023 0:00,14.0000000,15.0000000,36.4926360000000,1.1865230000,AIEJE,Plage des pebraire,,,,,,,,,, +N1,68411,Sortie #68411,https://biolit.fr/sorties/sortie-68411/,cinzia leana,https://biolit.fr/wp-content/uploads/jet-form-builder/cfdab7ebc8a66992796b1ffb954ed7b0/2023/11/IMG_4569-scaled.jpg,11/16/2023 0:00,14.0000000,15.0000000,43.3324680000000,5.19770800000000,,plage de la pebraire,68418,Observation #68418,https://biolit.fr/observations/observation-68418/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cfdab7ebc8a66992796b1ffb954ed7b0/2023/11/IMG_4569-scaled.jpg,,,Ne sais pas +N1,68416,Sortie #68416,https://biolit.fr/sorties/sortie-68416/,cherif sabrine,https://biolit.fr/wp-content/uploads/jet-form-builder/943aea8ba373c408600703030224fc6e/2023/11/IMG_4557-scaled.jpg,11/16/2023 0:00,14.0000000,15.0000000,43.2177500000000,5.48492400000000,,plage de la pebraire,,,,,,,,,, +N1,68423,Sortie #68423,https://biolit.fr/sorties/sortie-68423/,cinzia leana,https://biolit.fr/wp-content/uploads/jet-form-builder/cfdab7ebc8a66992796b1ffb954ed7b0/2023/11/IMG_4570-scaled.jpg,11/16/2023 0:00,14.0000000,15.0000000,-55.0842140000000,-176.739807000000,,plage de la dugnes,68425,Observation #68425,https://biolit.fr/observations/observation-68425/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cfdab7ebc8a66992796b1ffb954ed7b0/2023/11/IMG_4570-scaled.jpg,,FALSE,Ne sais pas +N1,68428,Sortie #68428,https://biolit.fr/sorties/sortie-68428/,cherif sabrine,https://biolit.fr/wp-content/uploads/jet-form-builder/943aea8ba373c408600703030224fc6e/2023/11/IMG_4558-scaled.jpg,11/16/2023 0:00,14.0000000,15.0000000,43.1673760000000,5.416260000000,,plage de la pebraire,68430,Observation #68430,https://biolit.fr/observations/observation-68430/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/943aea8ba373c408600703030224fc6e/2023/11/IMG_4558-scaled.jpg,,, +N1,68433,Sortie #68433,https://biolit.fr/sorties/sortie-68433/,cinzia leana,https://biolit.fr/wp-content/uploads/jet-form-builder/cfdab7ebc8a66992796b1ffb954ed7b0/2023/11/IMG_4571-scaled.jpg,11/16/2023 0:00,14.0000000,15.0000000,43.3338490000000,5.19798700000000,,plage de la pebraire,68440,Observation #68440,https://biolit.fr/observations/observation-68440/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cfdab7ebc8a66992796b1ffb954ed7b0/2023/11/IMG_4571-scaled.jpg,,,Identifiable +N1,68436,Sortie #68436,https://biolit.fr/sorties/sortie-68436/,cherif sabrine,https://biolit.fr/wp-content/uploads/jet-form-builder/943aea8ba373c408600703030224fc6e/2023/11/IMG_4559-scaled.jpg,11/16/2023 0:00,14.0000000,15.0000000,43.1662490000000,5.3228760000000,,plage de la pebraire,68438,Observation #68438,https://biolit.fr/observations/observation-68438/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/943aea8ba373c408600703030224fc6e/2023/11/IMG_4559-scaled.jpg,,,Ne sais pas +N1,68443,Sortie #68443,https://biolit.fr/sorties/sortie-68443/,KARA Berfin,https://biolit.fr/wp-content/uploads/jet-form-builder/7fb517a382686994764c7b1453ea0709/2023/11/calypso-scaled.jpg,11/16/2023 0:00,14.0000000,15.0000000,43.3331790000000,-354.801579000000,AIEJE,la plage des pebraire,,,,,,,,,, +N1,68447,Sortie #68447,https://biolit.fr/sorties/sortie-68447/,MOUSSA BEN IDRISSA Mohamed,https://biolit.fr/wp-content/uploads/jet-form-builder/b39d765b3281790ef9b11ecfe9aa0b9e/2023/11/IMG_4580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b39d765b3281790ef9b11ecfe9aa0b9e/2023/11/IMG_4582-scaled.jpg,11/16/2023 0:00,14.0000000,15.0000000,43.3325890000000,5.19755000000000,AIEJE,anthénors,68450,Observation #68450,https://biolit.fr/observations/observation-68450/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b39d765b3281790ef9b11ecfe9aa0b9e/2023/11/IMG_4580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b39d765b3281790ef9b11ecfe9aa0b9e/2023/11/IMG_4582-scaled.jpg,,,Identifiable +N1,68447,Sortie #68447,https://biolit.fr/sorties/sortie-68447/,MOUSSA BEN IDRISSA Mohamed,https://biolit.fr/wp-content/uploads/jet-form-builder/b39d765b3281790ef9b11ecfe9aa0b9e/2023/11/IMG_4580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b39d765b3281790ef9b11ecfe9aa0b9e/2023/11/IMG_4582-scaled.jpg,11/16/2023 0:00,14.0000000,15.0000000,43.3325890000000,5.19755000000000,AIEJE,anthénors,68454,Observation #68454,https://biolit.fr/observations/observation-68454/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b39d765b3281790ef9b11ecfe9aa0b9e/2023/11/IMG_4582-scaled.jpg,,, +N1,68452,Sortie #68452,https://biolit.fr/sorties/sortie-68452/,Djalti benziane Ismahane,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0026439bac721d3c8079228d9f137e/2023/11/IMG_45581-scaled.jpg,11/16/2023 0:00,14.0000000,15.0000000,43.3332130000000,5.19898200000000,AIEJE,Plage des pebraire,,,,,,,,,, +N1,68457,Sortie #68457,https://biolit.fr/sorties/sortie-68457/,cinzia leana,https://biolit.fr/wp-content/uploads/jet-form-builder/cfdab7ebc8a66992796b1ffb954ed7b0/2023/11/IMG_4576-scaled.jpg,11/16/2023 0:00,14.0000000,15.0000000,44.017632000000,0.6756590000000,,plage de la pebraire,68462,Observation #68462,https://biolit.fr/observations/observation-68462/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cfdab7ebc8a66992796b1ffb954ed7b0/2023/11/IMG_4576-scaled.jpg,,FALSE,Identifiable +N1,68460,Sortie #68460,https://biolit.fr/sorties/sortie-68460/,cherif sabrine,https://biolit.fr/wp-content/uploads/jet-form-builder/943aea8ba373c408600703030224fc6e/2023/11/IMG_4570-scaled.jpg,11/16/2023 0:00,14.0000000,15.0000000,43.3338880000000,5.19772700000000,,plage de la pebraire,,,,,,,,,, +N1,68466,Sortie #68466,https://biolit.fr/sorties/sortie-68466/,KARA Berfin,https://biolit.fr/wp-content/uploads/jet-form-builder/7fb517a382686994764c7b1453ea0709/2023/11/IMG_4558-scaled.jpg,11/15/2023 0:00,14.0000000,15.0000000,43.3331160000000,5.19842100000000,AIEJE,la plage des pebraire,68469,Observation #68469,https://biolit.fr/observations/observation-68469/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7fb517a382686994764c7b1453ea0709/2023/11/IMG_4558-scaled.jpg,,,Identifiable +N1,68472,Sortie #68472,https://biolit.fr/sorties/sortie-68472/,KARADENIZ SEDEF,https://biolit.fr/wp-content/uploads/jet-form-builder/6400fc42e593323ecd7623015c774dfa/2023/11/IMG_4573-scaled.jpg,11/16/2023 0:00,14.0000000,15.0000000,43.3339110000000,5.19768900000000,AIEJE,Dugue,68480,Observation #68480,https://biolit.fr/observations/observation-68480/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6400fc42e593323ecd7623015c774dfa/2023/11/IMG_4573-scaled.jpg,,,Identifiable +N1,68478,Sortie #68478,https://biolit.fr/sorties/sortie-68478/,cinzia leana,https://biolit.fr/wp-content/uploads/jet-form-builder/cfdab7ebc8a66992796b1ffb954ed7b0/2023/11/IMG_4576-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cfdab7ebc8a66992796b1ffb954ed7b0/2023/11/IMG_4569-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cfdab7ebc8a66992796b1ffb954ed7b0/2023/11/IMG_4570-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cfdab7ebc8a66992796b1ffb954ed7b0/2023/11/IMG_4571-1-scaled.jpg,11/16/2023 0:00,8.0000000,15.0000000,48.8669180,2.3330820,AIEJE,ensués la redonne,68490,Observation #68490,https://biolit.fr/observations/observation-68490/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cfdab7ebc8a66992796b1ffb954ed7b0/2023/11/IMG_4571-1-scaled.jpg,,FALSE,Identifiable +N1,68483,Sortie #68483,https://biolit.fr/sorties/sortie-68483/,KARA Berfin,https://biolit.fr/wp-content/uploads/jet-form-builder/7fb517a382686994764c7b1453ea0709/2023/11/DORIS-CAPTURE.png,11/16/2023 0:00,14.0000000,15.0000000,43.3596720000000,5.20408600000000,AIEJE,pebraire,68488,Observation #68488,https://biolit.fr/observations/observation-68488/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7fb517a382686994764c7b1453ea0709/2023/11/DORIS-CAPTURE.png,,, +N1,68486,Sortie #68486,https://biolit.fr/sorties/sortie-68486/,Djalti benziane Ismahane,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0026439bac721d3c8079228d9f137e/2023/11/IMG_4565-scaled.jpg,11/16/2023 0:00,14.0000000,15.0000000,-83.488843000000,-6.6796880,AIEJE,pedraire ou dugue,68492,Observation #68492,https://biolit.fr/observations/observation-68492/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0026439bac721d3c8079228d9f137e/2023/11/IMG_4565-scaled.jpg,,,Identifiable +N1,68510,Sortie #68510,https://biolit.fr/sorties/sortie-68510/,DELALANDE Jean,https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3106-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3108-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3119-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3121-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3122-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3124-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3128-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3130-scaled.jpg,11/13/2023 0:00,14.0000000,17.0000000,51.006532,2.065706,,"Plage des Escardines, 62215 Oye-Plage",68512,Observation #68512,https://biolit.fr/observations/observation-68512/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3106-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3108-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3119-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3121-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3122-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3124-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3128-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3130-scaled.jpg,,,Ne sais pas +N1,68520,Sortie #68520,https://biolit.fr/sorties/sortie-68520/,DELALANDE Jean,https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3137-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3144-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3145-scaled.jpg,11/13/2023 0:00,14.0000000,17.0000000,51.006532,2.065706,,"Plage des Escardines, 62215 Oye-Plage",68522,Observation #68522,https://biolit.fr/observations/observation-68522/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3137-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3144-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aa8993174fcc4c8ca5775d0c9f49d98/2023/11/IMG_3145-scaled.jpg,,,Ne sais pas +N1,68528,Sortie #68528,https://biolit.fr/sorties/sortie-68528/,Tigreat Justin,https://biolit.fr/wp-content/uploads/jet-form-builder/20e70711914e8599d8692594f2376a13/2023/11/FEC88DCB-19E8-4819-99BF-C303112352B6.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20e70711914e8599d8692594f2376a13/2023/11/D12E4635-11A5-488E-9447-7E22BAFBEC54.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20e70711914e8599d8692594f2376a13/2023/11/5215D5A7-0A39-4BDA-B119-0B875AFDCE4F.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20e70711914e8599d8692594f2376a13/2023/11/E4A8BF06-219C-4953-A5E6-DF6AFE86A86C.jpeg,11/28/2023 0:00,15.0000000,16.0000000,41.6859860000000,8.91875300000000,,Plage Baracci,68530,Observation #68530,https://biolit.fr/observations/observation-68530/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/20e70711914e8599d8692594f2376a13/2023/11/FEC88DCB-19E8-4819-99BF-C303112352B6.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20e70711914e8599d8692594f2376a13/2023/11/D12E4635-11A5-488E-9447-7E22BAFBEC54.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20e70711914e8599d8692594f2376a13/2023/11/5215D5A7-0A39-4BDA-B119-0B875AFDCE4F.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/20e70711914e8599d8692594f2376a13/2023/11/E4A8BF06-219C-4953-A5E6-DF6AFE86A86C.jpeg,,,Identifiable +N1,68561,Sortie #68561,https://biolit.fr/sorties/sortie-68561/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/IMG_20231130_151935_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/IMG_20231130_151944_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/IMG_20231130_152004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/huitreQ1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/patelle-Q1.jpg,11/30/2023 0:00,15.0000000,15.0000000,47.5190000,-2.858107,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Le Rohu (Saint-Gildas de Rhuys,68563,Observation #68563,https://biolit.fr/observations/observation-68563/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/IMG_20231130_151935_1-scaled.jpg,,TRUE,Identifiable +N1,68561,Sortie #68561,https://biolit.fr/sorties/sortie-68561/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/IMG_20231130_151935_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/IMG_20231130_151944_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/IMG_20231130_152004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/huitreQ1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/patelle-Q1.jpg,11/30/2023 0:00,15.0000000,15.0000000,47.5190000,-2.858107,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Le Rohu (Saint-Gildas de Rhuys,68567,Observation #68567,https://biolit.fr/observations/observation-68567/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/IMG_20231130_152004-scaled.jpg,,,Ne sais pas +N1,68561,Sortie #68561,https://biolit.fr/sorties/sortie-68561/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/IMG_20231130_151935_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/IMG_20231130_151944_1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/IMG_20231130_152004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/huitreQ1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/patelle-Q1.jpg,11/30/2023 0:00,15.0000000,15.0000000,47.5190000,-2.858107,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Le Rohu (Saint-Gildas de Rhuys,68598,Observation #68598,https://biolit.fr/observations/observation-68598/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/IMG_20231130_151944_1-scaled.jpg,,TRUE,Identifiable +N1,68573,Sortie #68573,https://biolit.fr/sorties/sortie-68573/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/IMG_20231130_151249-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/IMG_20231130_151345-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/huitreQ1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/patelle-Q1-1.jpg,11/30/2023 0:00,15.0000000,15.0000000,47.5190000,-2.858107,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),,68577,Observation #68577,https://biolit.fr/observations/observation-68577/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/huitreQ1-1.jpg,,TRUE,Identifiable +N1,68573,Sortie #68573,https://biolit.fr/sorties/sortie-68573/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/IMG_20231130_151249-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/IMG_20231130_151345-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/huitreQ1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/patelle-Q1-1.jpg,11/30/2023 0:00,15.0000000,15.0000000,47.5190000,-2.858107,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),,68579,Observation #68579,https://biolit.fr/observations/observation-68579/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/patelle-Q1-1.jpg,,TRUE,Identifiable +N1,68604,Sortie #68604,https://biolit.fr/sorties/sortie-68604/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/P_20231210_093529-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/P_20231210_103829-Monodonte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/P_20231210_103913-Littorine-obtuse-scaled.jpg,12/10/2023,9.0:35,9.0000000,47.583293,-2.907099,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Plage du Berchis (Larmor-Baden),68606,Observation #68606,https://biolit.fr/observations/observation-68606/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/P_20231210_093529-scaled.jpg,,TRUE,Identifiable +N1,68604,Sortie #68604,https://biolit.fr/sorties/sortie-68604/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/P_20231210_093529-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/P_20231210_103829-Monodonte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/P_20231210_103913-Littorine-obtuse-scaled.jpg,12/10/2023,9.0:35,9.0000000,47.583293,-2.907099,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Plage du Berchis (Larmor-Baden),68608,Observation #68608,https://biolit.fr/observations/observation-68608/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/P_20231210_103829-Monodonte-scaled.jpg,,TRUE,Identifiable +N1,68604,Sortie #68604,https://biolit.fr/sorties/sortie-68604/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/P_20231210_093529-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/P_20231210_103829-Monodonte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/P_20231210_103913-Littorine-obtuse-scaled.jpg,12/10/2023,9.0:35,9.0000000,47.583293,-2.907099,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Plage du Berchis (Larmor-Baden),68610,Observation #68610,https://biolit.fr/observations/observation-68610/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2023/12/P_20231210_103913-Littorine-obtuse-scaled.jpg,,TRUE,Identifiable +N1,68619,Sortie #68619,https://biolit.fr/sorties/sortie-68619/,branchu jacques,https://biolit.fr/wp-content/uploads/jet-form-builder/225716a4af32b64dcc24cac34d695229/2023/12/IMGP2621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/225716a4af32b64dcc24cac34d695229/2023/12/IMGP2622-scaled.jpg,12/17/2023 0:00,14.0000000,17.0000000,50.214057000000,1.55911400000000,,pointe du Ourdel,,,,,,,,,, +N1,68622,Sortie #68622,https://biolit.fr/sorties/sortie-68622/,branchu jacques,https://biolit.fr/wp-content/uploads/jet-form-builder/225716a4af32b64dcc24cac34d695229/2023/12/IMGP2605-scaled.jpg,12/17/2023 0:00,14.0000000,17.0000000,50.2166860000000,1.56988600000000,,pointe du Ourdel,68624,Observation #68624,https://biolit.fr/observations/observation-68624/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/225716a4af32b64dcc24cac34d695229/2023/12/IMGP2605-scaled.jpg,,,Identifiable +N1,68628,Sortie #68628,https://biolit.fr/sorties/sortie-68628/,branchu jacques,https://biolit.fr/wp-content/uploads/jet-form-builder/225716a4af32b64dcc24cac34d695229/2023/12/IMGP2621-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/225716a4af32b64dcc24cac34d695229/2023/12/IMGP2622-1-scaled.jpg,12/17/2023 0:00,14.0000000,17.0000000,50.2169570000000,1.5700360000000,,pointe du Ourdel,68630,Observation #68630,https://biolit.fr/observations/observation-68630/,Halimione portulacoides,Obione faux-pourpier,,https://biolit.fr/wp-content/uploads/jet-form-builder/225716a4af32b64dcc24cac34d695229/2023/12/IMGP2621-1-scaled.jpg,,,Identifiable +N1,68628,Sortie #68628,https://biolit.fr/sorties/sortie-68628/,branchu jacques,https://biolit.fr/wp-content/uploads/jet-form-builder/225716a4af32b64dcc24cac34d695229/2023/12/IMGP2621-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/225716a4af32b64dcc24cac34d695229/2023/12/IMGP2622-1-scaled.jpg,12/17/2023 0:00,14.0000000,17.0000000,50.2169570000000,1.5700360000000,,pointe du Ourdel,68632,Observation #68632,https://biolit.fr/observations/observation-68632/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/225716a4af32b64dcc24cac34d695229/2023/12/IMGP2622-1-scaled.jpg,,,non-identifiable +N1,68667,Sortie #68667,https://biolit.fr/sorties/sortie-68667/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0075_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0359-01_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0405_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0437_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0469_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0480_redimensionner-scaled.jpg,12/03/2023,8.0000000,9.0000000,47.3599220,-2.5210240,,Marais salants de Guérande,68669,Observation #68669,https://biolit.fr/observations/observation-68669/,Ardea alba,Grande aigrette,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0075_redimensionner-scaled.jpg,,TRUE,Identifiable +N1,68667,Sortie #68667,https://biolit.fr/sorties/sortie-68667/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0075_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0359-01_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0405_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0437_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0469_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0480_redimensionner-scaled.jpg,12/03/2023,8.0000000,9.0000000,47.3599220,-2.5210240,,Marais salants de Guérande,68671,Observation #68671,https://biolit.fr/observations/observation-68671/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0359-01_redimensionner-scaled.jpg,,TRUE,Identifiable +N1,68667,Sortie #68667,https://biolit.fr/sorties/sortie-68667/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0075_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0359-01_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0405_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0437_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0469_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0480_redimensionner-scaled.jpg,12/03/2023,8.0000000,9.0000000,47.3599220,-2.5210240,,Marais salants de Guérande,68673,Observation #68673,https://biolit.fr/observations/observation-68673/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0405_redimensionner-scaled.jpg,,TRUE,Identifiable +N1,68667,Sortie #68667,https://biolit.fr/sorties/sortie-68667/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0075_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0359-01_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0405_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0437_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0469_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0480_redimensionner-scaled.jpg,12/03/2023,8.0000000,9.0000000,47.3599220,-2.5210240,,Marais salants de Guérande,68675,Observation #68675,https://biolit.fr/observations/observation-68675/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0437_redimensionner-scaled.jpg,,,Identifiable +N1,68667,Sortie #68667,https://biolit.fr/sorties/sortie-68667/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0075_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0359-01_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0405_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0437_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0469_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0480_redimensionner-scaled.jpg,12/03/2023,8.0000000,9.0000000,47.3599220,-2.5210240,,Marais salants de Guérande,68677,Observation #68677,https://biolit.fr/observations/observation-68677/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0469_redimensionner-scaled.jpg,,,Identifiable +N1,68681,Sortie #68681,https://biolit.fr/sorties/sortie-68681/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0485_redimensionner-scaled.jpg,12/03/2023,8.0000000,9.0000000,47.3356000000000,-2.49830600000000,,Marais salants de Guérande,68683,Observation #68683,https://biolit.fr/observations/observation-68683/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC0485_redimensionner-scaled.jpg,,,Identifiable +N1,68695,Sortie #68695,https://biolit.fr/sorties/sortie-68695/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9123_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9151_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9297_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9350_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9516_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9811_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9862_redimensionner-scaled.jpg,06/10/2023,10.0000000,11.0000000,47.3041100000000,-2.47809300000000,,Marais salants de Guérande,68697,Observation #68697,https://biolit.fr/observations/observation-68697/,Sterna hirundo,Sterne pierregarin,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9123_redimensionner-scaled.jpg,,,Identifiable +N1,68695,Sortie #68695,https://biolit.fr/sorties/sortie-68695/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9123_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9151_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9297_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9350_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9516_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9811_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9862_redimensionner-scaled.jpg,06/10/2023,10.0000000,11.0000000,47.3041100000000,-2.47809300000000,,Marais salants de Guérande,68699,Observation #68699,https://biolit.fr/observations/observation-68699/,Recurvirostra avosetta,Avocette élégante,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9151_redimensionner-scaled.jpg,,,Identifiable +N1,68695,Sortie #68695,https://biolit.fr/sorties/sortie-68695/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9123_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9151_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9297_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9350_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9516_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9811_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9862_redimensionner-scaled.jpg,06/10/2023,10.0000000,11.0000000,47.3041100000000,-2.47809300000000,,Marais salants de Guérande,68701,Observation #68701,https://biolit.fr/observations/observation-68701/,Himantopus himantopus,Echasse blanche,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9297_redimensionner-scaled.jpg,,,Identifiable +N1,68695,Sortie #68695,https://biolit.fr/sorties/sortie-68695/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9123_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9151_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9297_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9350_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9516_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9811_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9862_redimensionner-scaled.jpg,06/10/2023,10.0000000,11.0000000,47.3041100000000,-2.47809300000000,,Marais salants de Guérande,68703,Observation #68703,https://biolit.fr/observations/observation-68703/,Recurvirostra avosetta,Avocette élégante,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9350_redimensionner-scaled.jpg,,,Identifiable +N1,68695,Sortie #68695,https://biolit.fr/sorties/sortie-68695/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9123_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9151_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9297_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9350_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9516_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9811_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9862_redimensionner-scaled.jpg,06/10/2023,10.0000000,11.0000000,47.3041100000000,-2.47809300000000,,Marais salants de Guérande,68705,Observation #68705,https://biolit.fr/observations/observation-68705/,Recurvirostra avosetta,Avocette élégante,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9516_redimensionner-scaled.jpg,,,Identifiable +N1,68695,Sortie #68695,https://biolit.fr/sorties/sortie-68695/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9123_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9151_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9297_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9350_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9516_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9811_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9862_redimensionner-scaled.jpg,06/10/2023,10.0000000,11.0000000,47.3041100000000,-2.47809300000000,,Marais salants de Guérande,68707,Observation #68707,https://biolit.fr/observations/observation-68707/,Himantopus himantopus,Echasse blanche,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9811_redimensionner-scaled.jpg,,,Identifiable +N1,68695,Sortie #68695,https://biolit.fr/sorties/sortie-68695/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9123_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9151_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9297_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9350_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9516_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9811_redimensionner-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9862_redimensionner-scaled.jpg,06/10/2023,10.0000000,11.0000000,47.3041100000000,-2.47809300000000,,Marais salants de Guérande,68709,Observation #68709,https://biolit.fr/observations/observation-68709/,Recurvirostra avosetta,Avocette élégante,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC9862_redimensionner-scaled.jpg,,,Identifiable +N1,68718,Sortie #68718,https://biolit.fr/sorties/sortie-68718/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC5097_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC5143_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC6633_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7611_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7615_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7901_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC8045_2.jpg,05/05/2023,10.0000000,12.0000000,48.4832280000000,-5.07336600000000,,Ouessant,68720,Observation #68720,https://biolit.fr/observations/observation-68720/,Numenius arquata,Courlis cendré,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC5097_2-scaled.jpg,,TRUE,Identifiable +N1,68718,Sortie #68718,https://biolit.fr/sorties/sortie-68718/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC5097_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC5143_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC6633_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7611_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7615_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7901_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC8045_2.jpg,05/05/2023,10.0000000,12.0000000,48.4832280000000,-5.07336600000000,,Ouessant,68722,Observation #68722,https://biolit.fr/observations/observation-68722/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC5143_2-scaled.jpg,,,Identifiable +N1,68718,Sortie #68718,https://biolit.fr/sorties/sortie-68718/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC5097_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC5143_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC6633_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7611_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7615_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7901_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC8045_2.jpg,05/05/2023,10.0000000,12.0000000,48.4832280000000,-5.07336600000000,,Ouessant,68724,Observation #68724,https://biolit.fr/observations/observation-68724/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC6633_2-scaled.jpg,,TRUE,Identifiable +N1,68718,Sortie #68718,https://biolit.fr/sorties/sortie-68718/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC5097_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC5143_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC6633_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7611_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7615_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7901_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC8045_2.jpg,05/05/2023,10.0000000,12.0000000,48.4832280000000,-5.07336600000000,,Ouessant,68726,Observation #68726,https://biolit.fr/observations/observation-68726/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7611_2-scaled.jpg,,TRUE,Identifiable +N1,68718,Sortie #68718,https://biolit.fr/sorties/sortie-68718/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC5097_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC5143_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC6633_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7611_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7615_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7901_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC8045_2.jpg,05/05/2023,10.0000000,12.0000000,48.4832280000000,-5.07336600000000,,Ouessant,68728,Observation #68728,https://biolit.fr/observations/observation-68728/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7615_2-scaled.jpg,,,Identifiable +N1,68718,Sortie #68718,https://biolit.fr/sorties/sortie-68718/,denniel.alain@wanadoo.fr,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC5097_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC5143_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC6633_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7611_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7615_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7901_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC8045_2.jpg,05/05/2023,10.0000000,12.0000000,48.4832280000000,-5.07336600000000,,Ouessant,68730,Observation #68730,https://biolit.fr/observations/observation-68730/,Halichoerus grypus,Phoque gris,,https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC7901_2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/74fb480ef32fb853d52d3c0eed48df03/2023/12/DSC8045_2.jpg,,,Identifiable +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68767,Observation #68767,https://biolit.fr/observations/observation-68767/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68769,Observation #68769,https://biolit.fr/observations/observation-68769/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68771,Observation #68771,https://biolit.fr/observations/observation-68771/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68774,Observation #68774,https://biolit.fr/observations/observation-68774/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68776,Observation #68776,https://biolit.fr/observations/observation-68776/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg,,, +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68778,Observation #68778,https://biolit.fr/observations/observation-68778/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68780,Observation #68780,https://biolit.fr/observations/observation-68780/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68782,Observation #68782,https://biolit.fr/observations/observation-68782/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68784,Observation #68784,https://biolit.fr/observations/observation-68784/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68786,Observation #68786,https://biolit.fr/observations/observation-68786/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68788,Observation #68788,https://biolit.fr/observations/observation-68788/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68790,Observation #68790,https://biolit.fr/observations/observation-68790/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68792,Observation #68792,https://biolit.fr/observations/observation-68792/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68794,Observation #68794,https://biolit.fr/observations/observation-68794/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68796,Observation #68796,https://biolit.fr/observations/observation-68796/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68798,Observation #68798,https://biolit.fr/observations/observation-68798/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68800,Observation #68800,https://biolit.fr/observations/observation-68800/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68802,Observation #68802,https://biolit.fr/observations/observation-68802/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,,,Ne sais pas +N1,68765,Sortie #68765,https://biolit.fr/sorties/sortie-68765/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5714-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5715-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5717-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5718-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5719-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5720-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5721-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5722-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5723-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5724-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5725-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5726-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5728-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5729-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5731-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5732-scaled.jpeg,12/20/2023 0:00,16.0:52,19.000007,47.113142000000,-2.15012100000000,,Flanc est plage du porteau à Pornic(44),68804,Observation #68804,https://biolit.fr/observations/observation-68804/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5730-scaled.jpeg,,,Ne sais pas +N1,68819,Sortie #68819,https://biolit.fr/sorties/sortie-68819/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5740-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5741-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5743-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5744-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5745-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5746-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5747-scaled.jpeg,12/20/2023 0:00,17.000009,17.0:48,47.1152180000000,-2.15972500000000,,Plage de la gauviniere,,,,,,,,,, +N1,68833,Sortie #68833,https://biolit.fr/sorties/sortie-68833/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5734-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5736-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5737-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5739-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5740-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5741-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5742-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5743-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5744-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5745-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5746-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5747-1-scaled.jpeg,12/19/2023 0:00,16.0:41,17.0:52,47.1151270000000,-2.15985400000000,,Plage de la gauviniere Pornic 44,68835,Observation #68835,https://biolit.fr/observations/observation-68835/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5734-1-scaled.jpeg,,,Ne sais pas +N1,68833,Sortie #68833,https://biolit.fr/sorties/sortie-68833/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5734-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5736-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5737-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5739-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5740-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5741-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5742-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5743-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5744-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5745-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5746-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5747-1-scaled.jpeg,12/19/2023 0:00,16.0:41,17.0:52,47.1151270000000,-2.15985400000000,,Plage de la gauviniere Pornic 44,68837,Observation #68837,https://biolit.fr/observations/observation-68837/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5736-1-scaled.jpeg,,,Ne sais pas +N1,68833,Sortie #68833,https://biolit.fr/sorties/sortie-68833/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5734-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5736-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5737-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5739-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5740-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5741-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5742-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5743-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5744-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5745-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5746-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5747-1-scaled.jpeg,12/19/2023 0:00,16.0:41,17.0:52,47.1151270000000,-2.15985400000000,,Plage de la gauviniere Pornic 44,68839,Observation #68839,https://biolit.fr/observations/observation-68839/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5737-scaled.jpeg,,,Ne sais pas +N1,68833,Sortie #68833,https://biolit.fr/sorties/sortie-68833/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5734-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5736-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5737-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5739-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5740-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5741-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5742-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5743-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5744-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5745-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5746-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5747-1-scaled.jpeg,12/19/2023 0:00,16.0:41,17.0:52,47.1151270000000,-2.15985400000000,,Plage de la gauviniere Pornic 44,68841,Observation #68841,https://biolit.fr/observations/observation-68841/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5739-1-scaled.jpeg,,,Ne sais pas +N1,68833,Sortie #68833,https://biolit.fr/sorties/sortie-68833/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5734-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5736-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5737-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5739-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5740-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5741-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5742-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5743-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5744-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5745-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5746-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5747-1-scaled.jpeg,12/19/2023 0:00,16.0:41,17.0:52,47.1151270000000,-2.15985400000000,,Plage de la gauviniere Pornic 44,68843,Observation #68843,https://biolit.fr/observations/observation-68843/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5740-1-scaled.jpeg,,,Ne sais pas +N1,68833,Sortie #68833,https://biolit.fr/sorties/sortie-68833/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5734-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5736-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5737-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5739-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5740-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5741-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5742-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5743-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5744-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5745-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5746-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5747-1-scaled.jpeg,12/19/2023 0:00,16.0:41,17.0:52,47.1151270000000,-2.15985400000000,,Plage de la gauviniere Pornic 44,68845,Observation #68845,https://biolit.fr/observations/observation-68845/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5741-1-scaled.jpeg,,,Ne sais pas +N1,68833,Sortie #68833,https://biolit.fr/sorties/sortie-68833/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5734-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5736-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5737-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5739-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5740-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5741-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5742-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5743-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5744-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5745-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5746-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5747-1-scaled.jpeg,12/19/2023 0:00,16.0:41,17.0:52,47.1151270000000,-2.15985400000000,,Plage de la gauviniere Pornic 44,68847,Observation #68847,https://biolit.fr/observations/observation-68847/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5742-1-scaled.jpeg,,,Ne sais pas +N1,68833,Sortie #68833,https://biolit.fr/sorties/sortie-68833/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5734-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5736-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5737-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5739-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5740-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5741-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5742-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5743-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5744-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5745-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5746-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5747-1-scaled.jpeg,12/19/2023 0:00,16.0:41,17.0:52,47.1151270000000,-2.15985400000000,,Plage de la gauviniere Pornic 44,68849,Observation #68849,https://biolit.fr/observations/observation-68849/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5743-1-scaled.jpeg,,,Ne sais pas +N1,68833,Sortie #68833,https://biolit.fr/sorties/sortie-68833/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5734-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5736-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5737-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5739-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5740-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5741-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5742-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5743-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5744-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5745-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5746-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5747-1-scaled.jpeg,12/19/2023 0:00,16.0:41,17.0:52,47.1151270000000,-2.15985400000000,,Plage de la gauviniere Pornic 44,68851,Observation #68851,https://biolit.fr/observations/observation-68851/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5744-1-scaled.jpeg,,,Ne sais pas +N1,68833,Sortie #68833,https://biolit.fr/sorties/sortie-68833/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5734-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5736-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5737-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5739-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5740-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5741-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5742-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5743-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5744-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5745-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5746-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5747-1-scaled.jpeg,12/19/2023 0:00,16.0:41,17.0:52,47.1151270000000,-2.15985400000000,,Plage de la gauviniere Pornic 44,68853,Observation #68853,https://biolit.fr/observations/observation-68853/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5745-1-scaled.jpeg,,,Ne sais pas +N1,68833,Sortie #68833,https://biolit.fr/sorties/sortie-68833/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5734-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5736-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5737-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5739-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5740-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5741-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5742-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5743-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5744-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5745-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5746-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5747-1-scaled.jpeg,12/19/2023 0:00,16.0:41,17.0:52,47.1151270000000,-2.15985400000000,,Plage de la gauviniere Pornic 44,68855,Observation #68855,https://biolit.fr/observations/observation-68855/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5746-1-scaled.jpeg,,,Ne sais pas +N1,68833,Sortie #68833,https://biolit.fr/sorties/sortie-68833/,d'AIETTI Matthieu,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5734-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5736-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5737-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5739-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5740-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5741-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5742-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5743-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5744-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5745-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5746-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5747-1-scaled.jpeg,12/19/2023 0:00,16.0:41,17.0:52,47.1151270000000,-2.15985400000000,,Plage de la gauviniere Pornic 44,68857,Observation #68857,https://biolit.fr/observations/observation-68857/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/208efd40811de8c19a03d1b853092ce6/2023/12/IMG_5747-1-scaled.jpeg,,,Ne sais pas +N1,68870,Sortie #68870,https://biolit.fr/sorties/sortie-68870/,LEVENARD Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2121-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2121-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2140-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2165-scaled.jpg,9/15/2023 0:00,9.0:31,9.0:53,48.650733000000,-2.21880900000000,,Saint Cast le Guildo,68872,Observation #68872,https://biolit.fr/observations/observation-68872/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2121-scaled.jpg,,TRUE,Identifiable +N1,68877,Sortie #68877,https://biolit.fr/sorties/sortie-68877/,LEVENARD Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2145-1-scaled.jpg,9/15/2023 0:00,9.0:41,9.0:41,48.650733000000,-2.21880900000000,,Saint Cast le Guildo,68879,Observation #68879,https://biolit.fr/observations/observation-68879/,Sepia officinalis,Seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2145-1-scaled.jpg,,TRUE,Identifiable +N1,68882,Sortie #68882,https://biolit.fr/sorties/sortie-68882/,LEVENARD Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2152-1-scaled.jpg,9/15/2023 0:00,9.0:45,9.0:45,48.650733000000,-2.21880900000000,,Saint Cast le Guildo,68884,Observation #68884,https://biolit.fr/observations/observation-68884/,Eunicella cavolini,Gorgone jaune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2152-1-scaled.jpg,,TRUE,Identifiable +N1,68887,Sortie #68887,https://biolit.fr/sorties/sortie-68887/,LEVENARD Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2140-1-scaled.jpg,9/15/2023 0:00,9.0:36,9.0:36,48.650733000000,-2.21880900000000,,Saint Cast le Guildo,68889,Observation #68889,https://biolit.fr/observations/observation-68889/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2140-1-scaled.jpg,,TRUE,Ne sais pas +N1,68892,Sortie #68892,https://biolit.fr/sorties/sortie-68892/,LEVENARD Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2165-1-scaled.jpg,9/15/2023 0:00,9.0:53,9.0:53,48.650733000000,-2.21880900000000,,Saint Cast le Guildo,68894,Observation #68894,https://biolit.fr/observations/observation-68894/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2165-1-scaled.jpg,,TRUE,Identifiable +N1,68897,Sortie #68897,https://biolit.fr/sorties/sortie-68897/,LEVENARD Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2180-scaled.jpg,9/15/2023 0:00,15.0:42,15.0:42,48.650733000000,-2.21880900000000,,Saint Cast le Guildo,68899,Observation #68899,https://biolit.fr/observations/observation-68899/,Pollachius pollachius,Lieu jaune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2180-scaled.jpg,,,Identifiable +N1,68902,Sortie #68902,https://biolit.fr/sorties/sortie-68902/,LEVENARD Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2193-scaled.jpg,9/15/2023 0:00,15.0:44,15.0:44,48.650733000000,-2.21880900000000,,Saint Cast le Guildo,68904,Observation #68904,https://biolit.fr/observations/observation-68904/,Homarus gammarus,Homard européen,,https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2193-scaled.jpg,,TRUE,Identifiable +N1,68907,Sortie #68907,https://biolit.fr/sorties/sortie-68907/,LEVENARD Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2121-2-scaled.jpg,9/15/2023 0:00,9.0:31,9.0:31,48.650733000000,-2.21880900000000,,Saint Cast le Guildo,68909,Observation #68909,https://biolit.fr/observations/observation-68909/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/jet-form-builder/5750f4b5da477938d41aa02cfc13efac/2023/12/GOPR2121-2-scaled.jpg,,,Identifiable +N1,68913,Sortie #68913,https://biolit.fr/sorties/sortie-68913/,Berdon Mouhoud Christine,https://biolit.fr/wp-content/uploads/jet-form-builder/1975b259327839ceb4235febaa38f3b2/2023/12/IMG_6925-1-scaled.jpeg,12/27/2023 0:00,14.0:44,14.0:46,48.8597430000000,-3.13166100000000,,Port la chaîne 22610,68915,Observation #68915,https://biolit.fr/observations/observation-68915/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1975b259327839ceb4235febaa38f3b2/2023/12/IMG_6925-1-scaled.jpeg,,,Identifiable +N1,68925,Sortie #68925,https://biolit.fr/sorties/sortie-68925/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_113116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_113250-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_110529354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_110632117-scaled.jpg,12/26/2023 0:00,11.0000000,11.0000000,43.2102500000000,5.42035100000000,,Plage de la calanque de Sormiou,68927,Observation #68927,https://biolit.fr/observations/observation-68927/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112126-scaled.jpg,,TRUE,Identifiable +N1,68925,Sortie #68925,https://biolit.fr/sorties/sortie-68925/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_113116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_113250-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_110529354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_110632117-scaled.jpg,12/26/2023 0:00,11.0000000,11.0000000,43.2102500000000,5.42035100000000,,Plage de la calanque de Sormiou,68929,Observation #68929,https://biolit.fr/observations/observation-68929/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112855-scaled.jpg,,,Ne sais pas +N1,68925,Sortie #68925,https://biolit.fr/sorties/sortie-68925/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_113116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_113250-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_110529354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_110632117-scaled.jpg,12/26/2023 0:00,11.0000000,11.0000000,43.2102500000000,5.42035100000000,,Plage de la calanque de Sormiou,68931,Observation #68931,https://biolit.fr/observations/observation-68931/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112939-scaled.jpg,,,Ne sais pas +N1,68925,Sortie #68925,https://biolit.fr/sorties/sortie-68925/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_113116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_113250-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_110529354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_110632117-scaled.jpg,12/26/2023 0:00,11.0000000,11.0000000,43.2102500000000,5.42035100000000,,Plage de la calanque de Sormiou,68933,Observation #68933,https://biolit.fr/observations/observation-68933/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_113116-scaled.jpg,,,Ne sais pas +N1,68925,Sortie #68925,https://biolit.fr/sorties/sortie-68925/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_113116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_113250-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_110529354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_110632117-scaled.jpg,12/26/2023 0:00,11.0000000,11.0000000,43.2102500000000,5.42035100000000,,Plage de la calanque de Sormiou,68935,Observation #68935,https://biolit.fr/observations/observation-68935/,Halopteris scoparia,Algue balai,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_113250-scaled.jpg,,,Ne sais pas +N1,68925,Sortie #68925,https://biolit.fr/sorties/sortie-68925/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_113116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_113250-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_110529354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_110632117-scaled.jpg,12/26/2023 0:00,11.0000000,11.0000000,43.2102500000000,5.42035100000000,,Plage de la calanque de Sormiou,68937,Observation #68937,https://biolit.fr/observations/observation-68937/,Flabellia petiolata,Udotée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_110529354-scaled.jpg,,TRUE,Ne sais pas +N1,68925,Sortie #68925,https://biolit.fr/sorties/sortie-68925/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_112939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_113116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_113250-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_110529354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_110632117-scaled.jpg,12/26/2023 0:00,11.0000000,11.0000000,43.2102500000000,5.42035100000000,,Plage de la calanque de Sormiou,68939,Observation #68939,https://biolit.fr/observations/observation-68939/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2023/12/IMG_20231225_110632117-scaled.jpg,,,Ne sais pas +N1,68943,Sortie #68943,https://biolit.fr/sorties/sortie-68943/,Desclaux Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/be27204f0ab937e376516f317f439e90/2023/12/IMG_20231226_170834-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/be27204f0ab937e376516f317f439e90/2023/12/IMG_20231226_170831-scaled.jpg,12/26/2023 0:00,17.0000000,17.0000000,43.2604680000000,5.28810200000000,,Cap caveau Frioul,68945,Observation #68945,https://biolit.fr/observations/observation-68945/,Pyrosoma atlanticum,Pyrosome,,https://biolit.fr/wp-content/uploads/jet-form-builder/be27204f0ab937e376516f317f439e90/2023/12/IMG_20231226_170831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/be27204f0ab937e376516f317f439e90/2023/12/IMG_20231226_170834-scaled.jpg,,TRUE,Ne sais pas +N1,68943,Sortie #68943,https://biolit.fr/sorties/sortie-68943/,Desclaux Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/be27204f0ab937e376516f317f439e90/2023/12/IMG_20231226_170834-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/be27204f0ab937e376516f317f439e90/2023/12/IMG_20231226_170831-scaled.jpg,12/26/2023 0:00,17.0000000,17.0000000,43.2604680000000,5.28810200000000,,Cap caveau Frioul,68949,Observation #68949,https://biolit.fr/observations/observation-68949/,Pyrosoma atlanticum,Pyrosome,,https://biolit.fr/wp-content/uploads/jet-form-builder/be27204f0ab937e376516f317f439e90/2023/12/IMG_20231226_170834-scaled.jpg,,TRUE,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,68991,Observation #68991,https://biolit.fr/observations/observation-68991/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,68993,Observation #68993,https://biolit.fr/observations/observation-68993/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,68995,Observation #68995,https://biolit.fr/observations/observation-68995/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,68997,Observation #68997,https://biolit.fr/observations/observation-68997/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,68999,Observation #68999,https://biolit.fr/observations/observation-68999/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,69001,Observation #69001,https://biolit.fr/observations/observation-69001/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,69003,Observation #69003,https://biolit.fr/observations/observation-69003/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,69005,Observation #69005,https://biolit.fr/observations/observation-69005/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,69007,Observation #69007,https://biolit.fr/observations/observation-69007/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,69009,Observation #69009,https://biolit.fr/observations/observation-69009/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,69011,Observation #69011,https://biolit.fr/observations/observation-69011/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg,,, +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,69013,Observation #69013,https://biolit.fr/observations/observation-69013/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,69015,Observation #69015,https://biolit.fr/observations/observation-69015/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,69017,Observation #69017,https://biolit.fr/observations/observation-69017/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,69019,Observation #69019,https://biolit.fr/observations/observation-69019/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,69021,Observation #69021,https://biolit.fr/observations/observation-69021/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,69023,Observation #69023,https://biolit.fr/observations/observation-69023/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,69025,Observation #69025,https://biolit.fr/observations/observation-69025/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg,,,Ne sais pas +N1,68989,Sortie #68989,https://biolit.fr/sorties/sortie-68989/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070038-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,12/27/2023 0:00,12.0:14,16.0:19,49.3621830000000,-1.15538100000000,,Pointe de Brevands - La baie des Veys,69027,Observation #69027,https://biolit.fr/observations/observation-69027/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070056-scaled.jpg,,, +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69051,Observation #69051,https://biolit.fr/observations/observation-69051/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg,,,non-identifiable +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69053,Observation #69053,https://biolit.fr/observations/observation-69053/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg,,,non-identifiable +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69055,Observation #69055,https://biolit.fr/observations/observation-69055/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg,,,Ne sais pas +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69057,Observation #69057,https://biolit.fr/observations/observation-69057/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg,,,Ne sais pas +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69059,Observation #69059,https://biolit.fr/observations/observation-69059/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg,,,Ne sais pas +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69061,Observation #69061,https://biolit.fr/observations/observation-69061/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg,,,Ne sais pas +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69063,Observation #69063,https://biolit.fr/observations/observation-69063/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg,,,Ne sais pas +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69065,Observation #69065,https://biolit.fr/observations/observation-69065/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg,,,Ne sais pas +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69067,Observation #69067,https://biolit.fr/observations/observation-69067/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg,,,Ne sais pas +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69069,Observation #69069,https://biolit.fr/observations/observation-69069/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg,,,Ne sais pas +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69071,Observation #69071,https://biolit.fr/observations/observation-69071/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg,,,Ne sais pas +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69073,Observation #69073,https://biolit.fr/observations/observation-69073/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg,,,Ne sais pas +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69075,Observation #69075,https://biolit.fr/observations/observation-69075/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg,,,Ne sais pas +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69077,Observation #69077,https://biolit.fr/observations/observation-69077/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg,,,Ne sais pas +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69079,Observation #69079,https://biolit.fr/observations/observation-69079/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg,,,Ne sais pas +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69081,Observation #69081,https://biolit.fr/observations/observation-69081/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg,,,Ne sais pas +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69083,Observation #69083,https://biolit.fr/observations/observation-69083/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg,,,Ne sais pas +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69085,Observation #69085,https://biolit.fr/observations/observation-69085/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg,,,Ne sais pas +N1,69049,Sortie #69049,https://biolit.fr/sorties/sortie-69049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070084-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,12/28/2023 0:00,14.0000000,17.0000000,49.1973220000000,-1.60741900000000,,Créance,69087,Observation #69087,https://biolit.fr/observations/observation-69087/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070094-scaled.jpg,,,Ne sais pas +N1,69108,Sortie #69108,https://biolit.fr/sorties/sortie-69108/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070139-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0411850000000,-1.60039200000000,,Agon-Coutainville,,,,,,,,,, +N1,69128,Sortie #69128,https://biolit.fr/sorties/sortie-69128/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070165-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070173-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0622510000000,-1.60538400000000,,Blainville,,,,,,,,,, +N1,69146,Sortie #69146,https://biolit.fr/sorties/sortie-69146/,Menandez Maxence,https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/algues-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/algues-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/algues-et-coquillages.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/algues-et-gland.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/algues-et-seche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/algues-gland-et-seches.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/algues.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/crabe.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/meduse-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/meduse.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/oiseau-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/pin-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/pin.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/plume.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/pomme-de-pin.jpg,12/21/2023 0:00,14.0000000,17.0000000,44.6594520000000,-1.19385100000000,,Arcachon - perreire,69150,Observation #69150,https://biolit.fr/observations/observation-69150/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/algues-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/algues-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/algues-et-coquillages.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/algues-et-gland.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/algues-et-seche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/algues-gland-et-seches.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/algues.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/crabe.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/meduse-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/meduse.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/oiseau-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/pin-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/pin.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/plume.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2024/01/pomme-de-pin.jpg,,,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69172,Observation #69172,https://biolit.fr/observations/observation-69172/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg,,,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69174,Observation #69174,https://biolit.fr/observations/observation-69174/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg,,TRUE,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69176,Observation #69176,https://biolit.fr/observations/observation-69176/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg,,TRUE,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69178,Observation #69178,https://biolit.fr/observations/observation-69178/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg,,TRUE,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69180,Observation #69180,https://biolit.fr/observations/observation-69180/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg,,,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69182,Observation #69182,https://biolit.fr/observations/observation-69182/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg,,,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69184,Observation #69184,https://biolit.fr/observations/observation-69184/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg,,TRUE,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69186,Observation #69186,https://biolit.fr/observations/observation-69186/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg,,TRUE,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69188,Observation #69188,https://biolit.fr/observations/observation-69188/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg,,,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69190,Observation #69190,https://biolit.fr/observations/observation-69190/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg,,,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69192,Observation #69192,https://biolit.fr/observations/observation-69192/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg,,,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69194,Observation #69194,https://biolit.fr/observations/observation-69194/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg,,,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69196,Observation #69196,https://biolit.fr/observations/observation-69196/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg,,TRUE,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69198,Observation #69198,https://biolit.fr/observations/observation-69198/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg,,,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69200,Observation #69200,https://biolit.fr/observations/observation-69200/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg,,TRUE,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69202,Observation #69202,https://biolit.fr/observations/observation-69202/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg,,,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69204,Observation #69204,https://biolit.fr/observations/observation-69204/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg,,,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69206,Observation #69206,https://biolit.fr/observations/observation-69206/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg,,,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69208,Observation #69208,https://biolit.fr/observations/observation-69208/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg,,,Ne sais pas +N1,69170,Sortie #69170,https://biolit.fr/sorties/sortie-69170/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070107-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070110-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070112-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070113-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070116-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070118-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070120-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070122-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070126-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070136-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070140-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070141-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070143-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070145-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070147-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070150-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070151-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070153-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070154-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,12/29/2023 0:00,14.0000000,17.0000000,49.0415290000000,-1.60024200000000,,Agon-Coutainville,69210,Observation #69210,https://biolit.fr/observations/observation-69210/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070155-Copie-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69232,Observation #69232,https://biolit.fr/observations/observation-69232/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69234,Observation #69234,https://biolit.fr/observations/observation-69234/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69236,Observation #69236,https://biolit.fr/observations/observation-69236/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69238,Observation #69238,https://biolit.fr/observations/observation-69238/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69240,Observation #69240,https://biolit.fr/observations/observation-69240/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69242,Observation #69242,https://biolit.fr/observations/observation-69242/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69244,Observation #69244,https://biolit.fr/observations/observation-69244/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69246,Observation #69246,https://biolit.fr/observations/observation-69246/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69248,Observation #69248,https://biolit.fr/observations/observation-69248/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69250,Observation #69250,https://biolit.fr/observations/observation-69250/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69252,Observation #69252,https://biolit.fr/observations/observation-69252/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69254,Observation #69254,https://biolit.fr/observations/observation-69254/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg,,TRUE,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69256,Observation #69256,https://biolit.fr/observations/observation-69256/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69258,Observation #69258,https://biolit.fr/observations/observation-69258/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69260,Observation #69260,https://biolit.fr/observations/observation-69260/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69262,Observation #69262,https://biolit.fr/observations/observation-69262/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69264,Observation #69264,https://biolit.fr/observations/observation-69264/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69266,Observation #69266,https://biolit.fr/observations/observation-69266/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg,,,Ne sais pas +N1,69230,Sortie #69230,https://biolit.fr/sorties/sortie-69230/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070174-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070186-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,12/26/2023 0:00,14.0000000,17.0000000,49.0656820000000,-1.60604200000000,,Blainville,69268,Observation #69268,https://biolit.fr/observations/observation-69268/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-1-scaled.jpg,,,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69289,Observation #69289,https://biolit.fr/observations/observation-69289/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg,,,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69291,Observation #69291,https://biolit.fr/observations/observation-69291/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg,,,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69293,Observation #69293,https://biolit.fr/observations/observation-69293/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg,,,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69295,Observation #69295,https://biolit.fr/observations/observation-69295/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg,,,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69297,Observation #69297,https://biolit.fr/observations/observation-69297/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg,,,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69299,Observation #69299,https://biolit.fr/observations/observation-69299/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg,,,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69301,Observation #69301,https://biolit.fr/observations/observation-69301/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg,,,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69303,Observation #69303,https://biolit.fr/observations/observation-69303/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg,,,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69305,Observation #69305,https://biolit.fr/observations/observation-69305/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg,,,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69307,Observation #69307,https://biolit.fr/observations/observation-69307/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg,,,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69309,Observation #69309,https://biolit.fr/observations/observation-69309/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg,,,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69311,Observation #69311,https://biolit.fr/observations/observation-69311/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg,,TRUE,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69313,Observation #69313,https://biolit.fr/observations/observation-69313/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg,,,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69315,Observation #69315,https://biolit.fr/observations/observation-69315/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg,,,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69317,Observation #69317,https://biolit.fr/observations/observation-69317/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg,,,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69319,Observation #69319,https://biolit.fr/observations/observation-69319/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg,,,Ne sais pas +N1,69287,Sortie #69287,https://biolit.fr/sorties/sortie-69287/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070170-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070175-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070176-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070177-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070179-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070181-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070183-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070184-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070185-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070188-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070190-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,12/26/2023 0:00,14.0000000,18.0000000,49.0638330000000,-1.60544900000000,,Blainville,69321,Observation #69321,https://biolit.fr/observations/observation-69321/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/01/P1070191-2-scaled.jpg,,,Ne sais pas +N1,69385,Sortie #69385,https://biolit.fr/sorties/sortie-69385/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104353882-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104712986-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104749015-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105027330_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105138603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105233084-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105322673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105439486_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105637172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105847029_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_110136408-scaled.jpg,12/31/2023 0:00,10.0000000,10.0000000,43.2398300000000,5.36239100000000,,Plage de l’Anse du Bain des Dames,69387,Observation #69387,https://biolit.fr/observations/observation-69387/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105847029_HDR-rotated.jpg,,TRUE,Identifiable +N1,69385,Sortie #69385,https://biolit.fr/sorties/sortie-69385/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104353882-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104712986-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104749015-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105027330_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105138603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105233084-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105322673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105439486_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105637172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105847029_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_110136408-scaled.jpg,12/31/2023 0:00,10.0000000,10.0000000,43.2398300000000,5.36239100000000,,Plage de l’Anse du Bain des Dames,69389,Observation #69389,https://biolit.fr/observations/observation-69389/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104353882-scaled.jpg,,,Identifiable +N1,69385,Sortie #69385,https://biolit.fr/sorties/sortie-69385/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104353882-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104712986-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104749015-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105027330_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105138603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105233084-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105322673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105439486_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105637172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105847029_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_110136408-scaled.jpg,12/31/2023 0:00,10.0000000,10.0000000,43.2398300000000,5.36239100000000,,Plage de l’Anse du Bain des Dames,69391,Observation #69391,https://biolit.fr/observations/observation-69391/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_110136408-scaled.jpg,,TRUE,Identifiable +N1,69385,Sortie #69385,https://biolit.fr/sorties/sortie-69385/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104353882-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104712986-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104749015-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105027330_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105138603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105233084-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105322673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105439486_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105637172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105847029_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_110136408-scaled.jpg,12/31/2023 0:00,10.0000000,10.0000000,43.2398300000000,5.36239100000000,,Plage de l’Anse du Bain des Dames,69393,Observation #69393,https://biolit.fr/observations/observation-69393/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105637172-scaled.jpg,,TRUE,Identifiable +N1,69385,Sortie #69385,https://biolit.fr/sorties/sortie-69385/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104353882-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104712986-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104749015-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105027330_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105138603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105233084-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105322673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105439486_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105637172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105847029_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_110136408-scaled.jpg,12/31/2023 0:00,10.0000000,10.0000000,43.2398300000000,5.36239100000000,,Plage de l’Anse du Bain des Dames,69395,Observation #69395,https://biolit.fr/observations/observation-69395/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105233084-rotated.jpg,,,Identifiable +N1,69385,Sortie #69385,https://biolit.fr/sorties/sortie-69385/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104353882-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104712986-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104749015-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105027330_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105138603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105233084-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105322673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105439486_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105637172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105847029_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_110136408-scaled.jpg,12/31/2023 0:00,10.0000000,10.0000000,43.2398300000000,5.36239100000000,,Plage de l’Anse du Bain des Dames,69399,Observation #69399,https://biolit.fr/observations/observation-69399/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104749015-rotated.jpg,,,Identifiable +N1,69385,Sortie #69385,https://biolit.fr/sorties/sortie-69385/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104353882-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104712986-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104749015-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105027330_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105138603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105233084-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105322673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105439486_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105637172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105847029_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_110136408-scaled.jpg,12/31/2023 0:00,10.0000000,10.0000000,43.2398300000000,5.36239100000000,,Plage de l’Anse du Bain des Dames,69403,Observation #69403,https://biolit.fr/observations/observation-69403/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104712986-rotated.jpg,,,Ne sais pas +N1,69385,Sortie #69385,https://biolit.fr/sorties/sortie-69385/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104353882-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104712986-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104749015-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105027330_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105138603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105233084-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105322673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105439486_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105637172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105847029_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_110136408-scaled.jpg,12/31/2023 0:00,10.0000000,10.0000000,43.2398300000000,5.36239100000000,,Plage de l’Anse du Bain des Dames,69405,Observation #69405,https://biolit.fr/observations/observation-69405/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105322673-scaled.jpg,,,Ne sais pas +N1,69385,Sortie #69385,https://biolit.fr/sorties/sortie-69385/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104353882-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104712986-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_104749015-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105027330_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105138603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105233084-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105322673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105439486_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105637172-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105847029_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_110136408-scaled.jpg,12/31/2023 0:00,10.0000000,10.0000000,43.2398300000000,5.36239100000000,,Plage de l’Anse du Bain des Dames,69407,Observation #69407,https://biolit.fr/observations/observation-69407/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20231231_105439486_HDR-scaled.jpg,,TRUE,Identifiable +N1,69410,Sortie #69410,https://biolit.fr/sorties/sortie-69410/,Miaud rodolphe,https://biolit.fr/wp-content/uploads/jet-form-builder/f6e0ba5c502de0fac09b7f654ed1aec2/2024/01/20240103_162130-scaled.jpg,01/03/2024,15.0000000,15.0000000,47.6616790,-3.2059600,,Ria d Etel,,,,,,,,,, +N1,69419,Sortie #69419,https://biolit.fr/sorties/sortie-69419/,Miaud rodolphe,https://biolit.fr/wp-content/uploads/jet-form-builder/f6e0ba5c502de0fac09b7f654ed1aec2/2024/01/20240103_162130-1-scaled.jpg,01/03/2024,15.0000000,15.0000000,47.6616030,-3.2059950,,Ria d Etel,,,,,,,,,, +N1,69422,Sortie #69422,https://biolit.fr/sorties/sortie-69422/,Miaud rodolphe,https://biolit.fr/wp-content/uploads/jet-form-builder/f6e0ba5c502de0fac09b7f654ed1aec2/2024/01/20240103_162130-2-scaled.jpg,01/04/2024,16.0:18,16.0:18,47.6616790,-3.2059600,,Ria d Etel,69424,Observation #69424,https://biolit.fr/observations/observation-69424/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f6e0ba5c502de0fac09b7f654ed1aec2/2024/01/20240103_162130-2-scaled.jpg,,,Ne sais pas +N1,69428,Sortie #69428,https://biolit.fr/sorties/sortie-69428/,Catrou Anna,https://biolit.fr/wp-content/uploads/jet-form-builder/d4b19b30ff116d0bdf49057485c46007/2024/01/IMG_7770-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d4b19b30ff116d0bdf49057485c46007/2024/01/IMG_5418-scaled.jpeg,01/06/2024,16.0000000,16.0:21,47.72879400000,-3.4771730000000,,la Nourriguel,69430,Observation #69430,https://biolit.fr/observations/observation-69430/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/d4b19b30ff116d0bdf49057485c46007/2024/01/IMG_7770-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d4b19b30ff116d0bdf49057485c46007/2024/01/IMG_5418-scaled.jpeg,,TRUE,Ne sais pas +N1,69428,Sortie #69428,https://biolit.fr/sorties/sortie-69428/,Catrou Anna,https://biolit.fr/wp-content/uploads/jet-form-builder/d4b19b30ff116d0bdf49057485c46007/2024/01/IMG_7770-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d4b19b30ff116d0bdf49057485c46007/2024/01/IMG_5418-scaled.jpeg,01/06/2024,16.0000000,16.0:21,47.72879400000,-3.4771730000000,,la Nourriguel,69432,Observation #69432,https://biolit.fr/observations/observation-69432/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d4b19b30ff116d0bdf49057485c46007/2024/01/IMG_5418-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d4b19b30ff116d0bdf49057485c46007/2024/01/IMG_7770-scaled.jpeg,,,Ne sais pas +N1,69441,Sortie #69441,https://biolit.fr/sorties/sortie-69441/,DUFOUR Valérie,https://biolit.fr/wp-content/uploads/jet-form-builder/25341b7f91ca4b7f72ba931afce69878/2024/01/1er-quadra-4-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/25341b7f91ca4b7f72ba931afce69878/2024/01/1er-quadra-3-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/25341b7f91ca4b7f72ba931afce69878/2024/01/2eme-quadra-3-rotated.jpg,12/15/2023 0:00,11.0:33,12.0000000,47.940438,-4.405446,,Penhors 29710 Pouldreuzic,,,,,,,,,, +N1,69450,Sortie #69450,https://biolit.fr/sorties/sortie-69450/,DUFOUR Valérie,https://biolit.fr/wp-content/uploads/jet-form-builder/25341b7f91ca4b7f72ba931afce69878/2024/01/1er-quadra-3-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/25341b7f91ca4b7f72ba931afce69878/2024/01/2eme-quadra-2-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/25341b7f91ca4b7f72ba931afce69878/2024/01/2eme-quadra-3-1-rotated.jpg,12/15/2023 0:00,11.0:33,12.0000000,47.940438,-4.405446,,Penhors 29710 Pouldreuzic,69452,Observation #69452,https://biolit.fr/observations/observation-69452/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/25341b7f91ca4b7f72ba931afce69878/2024/01/1er-quadra-3-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/25341b7f91ca4b7f72ba931afce69878/2024/01/2eme-quadra-3-1-rotated.jpg,,TRUE,Identifiable +N1,69459,Sortie #69459,https://biolit.fr/sorties/sortie-69459/,DUFOUR Valérie,https://biolit.fr/wp-content/uploads/jet-form-builder/25341b7f91ca4b7f72ba931afce69878/2024/01/1er-quadra-3-2-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/25341b7f91ca4b7f72ba931afce69878/2024/01/1er-quadra-4-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/25341b7f91ca4b7f72ba931afce69878/2024/01/2eme-quadra-2-1-rotated.jpg,12/15/2023 0:00,11.0:33,12.0000000,47.940438,-4.405446,,Penhors 29710 Pouldreuzic,,,,,,,,,, +N1,69497,Sortie #69497,https://biolit.fr/sorties/sortie-69497/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/Track_6999fdcb-433b-4cfc-92b2-7e3e5e8aee40-scaled.jpg,01/10/2024,1.000004,1.000004,46.8762640000000,0.32959000000,La Girelle,,,,,,,,,,, +N1,69513,Sortie #69513,https://biolit.fr/sorties/sortie-69513/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_102954297-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103305158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103438616-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103850292-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103955406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_104108572_HDR-rotated.jpg,1/14/2024 0:00,10.0000000,11.0000000,43.2381180000000,5.36173400000000,,Plage de l'Anse des Phocéens,69515,Observation #69515,https://biolit.fr/observations/observation-69515/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103305158-scaled.jpg,,TRUE,Identifiable +N1,69513,Sortie #69513,https://biolit.fr/sorties/sortie-69513/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_102954297-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103305158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103438616-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103850292-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103955406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_104108572_HDR-rotated.jpg,1/14/2024 0:00,10.0000000,11.0000000,43.2381180000000,5.36173400000000,,Plage de l'Anse des Phocéens,69517,Observation #69517,https://biolit.fr/observations/observation-69517/,Electra posidoniae,Bryozoaire de la posidonie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103955406-scaled.jpg,,,Identifiable +N1,69513,Sortie #69513,https://biolit.fr/sorties/sortie-69513/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_102954297-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103305158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103438616-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103850292-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103955406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_104108572_HDR-rotated.jpg,1/14/2024 0:00,10.0000000,11.0000000,43.2381180000000,5.36173400000000,,Plage de l'Anse des Phocéens,69519,Observation #69519,https://biolit.fr/observations/observation-69519/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103850292-scaled.jpg,,,Identifiable +N1,69513,Sortie #69513,https://biolit.fr/sorties/sortie-69513/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_102954297-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103305158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103438616-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103850292-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103955406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_104108572_HDR-rotated.jpg,1/14/2024 0:00,10.0000000,11.0000000,43.2381180000000,5.36173400000000,,Plage de l'Anse des Phocéens,69521,Observation #69521,https://biolit.fr/observations/observation-69521/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103438616-scaled.jpg,,,Ne sais pas +N1,69513,Sortie #69513,https://biolit.fr/sorties/sortie-69513/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_102954297-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103305158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103438616-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103850292-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103955406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_104108572_HDR-rotated.jpg,1/14/2024 0:00,10.0000000,11.0000000,43.2381180000000,5.36173400000000,,Plage de l'Anse des Phocéens,69523,Observation #69523,https://biolit.fr/observations/observation-69523/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_102954297-scaled.jpg,,,Ne sais pas +N1,69513,Sortie #69513,https://biolit.fr/sorties/sortie-69513/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_102954297-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103305158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103438616-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103850292-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103955406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_104108572_HDR-rotated.jpg,1/14/2024 0:00,10.0000000,11.0000000,43.2381180000000,5.36173400000000,,Plage de l'Anse des Phocéens,69525,Observation #69525,https://biolit.fr/observations/observation-69525/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_104108572_HDR-rotated.jpg,,,Ne sais pas +N1,69528,Sortie #69528,https://biolit.fr/sorties/sortie-69528/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103533-scaled.jpg,1/14/2024 0:00,11.0000000,11.0000000,43.2380330000000,5.36173100000000,,Plage de l'Anse des Phocéens,,,,,,,,,, +N1,69531,Sortie #69531,https://biolit.fr/sorties/sortie-69531/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103533-1-scaled.jpg,1/14/2024 0:00,11.0000000,11.0000000,43.2379990000000,5.36177400000000,,Plage de l'Anse des Phocéens,69533,Observation #69533,https://biolit.fr/observations/observation-69533/,Peyssonnelia squamaria,Peyssonnelia,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240114_103533-1-scaled.jpg,,,Ne sais pas +N1,69545,Sortie #69545,https://biolit.fr/sorties/sortie-69545/,AUBRUN JEAN-ALBERT,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_093934-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_094400-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_094403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_093949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_101847-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_092817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_101901-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_092805-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_100015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_100619-scaled.jpg,1/15/2023 0:00,9.0:15,10.0000000,49.403591000000,0.129896000000000,,Villerville,69547,Observation #69547,https://biolit.fr/observations/observation-69547/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_100015-scaled.jpg,,,Identifiable +N1,69545,Sortie #69545,https://biolit.fr/sorties/sortie-69545/,AUBRUN JEAN-ALBERT,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_093934-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_094400-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_094403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_093949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_101847-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_092817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_101901-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_092805-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_100015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_100619-scaled.jpg,1/15/2023 0:00,9.0:15,10.0000000,49.403591000000,0.129896000000000,,Villerville,69549,Observation #69549,https://biolit.fr/observations/observation-69549/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_093949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_101847-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_093934-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_101901-scaled.jpg,,,Identifiable +N1,69545,Sortie #69545,https://biolit.fr/sorties/sortie-69545/,AUBRUN JEAN-ALBERT,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_093934-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_094400-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_094403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_093949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_101847-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_092817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_101901-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_092805-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_100015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_100619-scaled.jpg,1/15/2023 0:00,9.0:15,10.0000000,49.403591000000,0.129896000000000,,Villerville,69551,Observation #69551,https://biolit.fr/observations/observation-69551/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_092817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_092805-scaled.jpg,,,Identifiable +N1,69545,Sortie #69545,https://biolit.fr/sorties/sortie-69545/,AUBRUN JEAN-ALBERT,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_093934-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_094400-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_094403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_093949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_101847-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_092817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_101901-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_092805-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_100015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_100619-scaled.jpg,1/15/2023 0:00,9.0:15,10.0000000,49.403591000000,0.129896000000000,,Villerville,69563,Observation #69563,https://biolit.fr/observations/observation-69563/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_094400-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_094403-scaled.jpg,,,Ne sais pas +N1,69545,Sortie #69545,https://biolit.fr/sorties/sortie-69545/,AUBRUN JEAN-ALBERT,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_093934-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_094400-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_094403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_093949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_101847-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_092817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_101901-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_092805-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_100015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_100619-scaled.jpg,1/15/2023 0:00,9.0:15,10.0000000,49.403591000000,0.129896000000000,,Villerville,69568,Observation #69568,https://biolit.fr/observations/observation-69568/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240115_100619-scaled.jpg,,,Identifiable +N1,69587,Sortie #69587,https://biolit.fr/sorties/sortie-69587/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4248-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4254-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4268-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4272-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4280-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4283-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4265-scaled.jpg,01/12/2024,12.0:35,12.0:55,43.240952000000,5.36249500000000,Planète Mer,Bain des dames,69589,Observation #69589,https://biolit.fr/observations/observation-69589/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4248-scaled.jpg,,,Ne sais pas +N1,69587,Sortie #69587,https://biolit.fr/sorties/sortie-69587/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4248-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4254-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4268-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4272-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4280-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4283-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4265-scaled.jpg,01/12/2024,12.0:35,12.0:55,43.240952000000,5.36249500000000,Planète Mer,Bain des dames,69591,Observation #69591,https://biolit.fr/observations/observation-69591/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4254-scaled.jpg,,TRUE,Identifiable +N1,69587,Sortie #69587,https://biolit.fr/sorties/sortie-69587/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4248-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4254-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4268-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4272-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4280-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4283-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4265-scaled.jpg,01/12/2024,12.0:35,12.0:55,43.240952000000,5.36249500000000,Planète Mer,Bain des dames,69593,Observation #69593,https://biolit.fr/observations/observation-69593/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4268-scaled.jpg,,,Identifiable +N1,69587,Sortie #69587,https://biolit.fr/sorties/sortie-69587/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4248-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4254-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4268-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4272-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4280-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4283-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4265-scaled.jpg,01/12/2024,12.0:35,12.0:55,43.240952000000,5.36249500000000,Planète Mer,Bain des dames,69595,Observation #69595,https://biolit.fr/observations/observation-69595/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4272-scaled.jpg,,TRUE,Identifiable +N1,69587,Sortie #69587,https://biolit.fr/sorties/sortie-69587/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4248-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4254-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4268-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4272-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4280-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4283-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4265-scaled.jpg,01/12/2024,12.0:35,12.0:55,43.240952000000,5.36249500000000,Planète Mer,Bain des dames,69597,Observation #69597,https://biolit.fr/observations/observation-69597/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4265-scaled.jpg,,TRUE,Identifiable +N1,69607,Sortie #69607,https://biolit.fr/sorties/sortie-69607/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4252-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4257-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4280-1-scaled.jpg,01/12/2024,12.0:35,12.0:55,43.2409610000000,5.3625290000000,Planète Mer,Bain des dames,69609,Observation #69609,https://biolit.fr/observations/observation-69609/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4252-1-scaled.jpg,,TRUE,Identifiable +N1,69607,Sortie #69607,https://biolit.fr/sorties/sortie-69607/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4252-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4257-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4280-1-scaled.jpg,01/12/2024,12.0:35,12.0:55,43.2409610000000,5.3625290000000,Planète Mer,Bain des dames,69611,Observation #69611,https://biolit.fr/observations/observation-69611/,Peyssonnelia squamaria,Peyssonnelia,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4257-1-scaled.jpg,,TRUE,Identifiable +N1,69607,Sortie #69607,https://biolit.fr/sorties/sortie-69607/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4252-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4257-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4280-1-scaled.jpg,01/12/2024,12.0:35,12.0:55,43.2409610000000,5.3625290000000,Planète Mer,Bain des dames,69613,Observation #69613,https://biolit.fr/observations/observation-69613/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/01/IMG_4280-1-scaled.jpg,,,Ne sais pas +N1,69623,Sortie #69623,https://biolit.fr/sorties/sortie-69623/,Saintoin Morgan,https://biolit.fr/wp-content/uploads/jet-form-builder/2a6361a5174945459706d1d2b0b76c18/2024/01/DSCF0070-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a6361a5174945459706d1d2b0b76c18/2024/01/DSCF00721-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a6361a5174945459706d1d2b0b76c18/2024/01/DSCF00641-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a6361a5174945459706d1d2b0b76c18/2024/01/DSCF00681-1-scaled.jpg,01/08/2024,15.0000000,16.0000000,50.691941,1.562812,,Plgae de Ningles,69625,Observation #69625,https://biolit.fr/observations/observation-69625/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/2a6361a5174945459706d1d2b0b76c18/2024/01/DSCF00721-scaled.jpg,,TRUE,Identifiable +N1,69633,Sortie #69633,https://biolit.fr/sorties/sortie-69633/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.55-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.54-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.54-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.54-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-14-at-21.09.15.jpeg,1/14/2024 0:00,15.0000000,17.0000000,42.5729390000000,9.5230030000000,La Girelle,"Lucciana, Lido de la Marana",69635,Observation #69635,https://biolit.fr/observations/observation-69635/,Argonauta argo,Argonaute,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.55-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.54-2.jpeg,,TRUE,Identifiable +N1,69633,Sortie #69633,https://biolit.fr/sorties/sortie-69633/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.55-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.54-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.54-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.54-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-14-at-21.09.15.jpeg,1/14/2024 0:00,15.0000000,17.0000000,42.5729390000000,9.5230030000000,La Girelle,"Lucciana, Lido de la Marana",69637,Observation #69637,https://biolit.fr/observations/observation-69637/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.54-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.54-1.jpeg,,TRUE,Identifiable +N1,69633,Sortie #69633,https://biolit.fr/sorties/sortie-69633/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.55-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.54-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.54-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.54-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-14-at-21.09.15.jpeg,1/14/2024 0:00,15.0000000,17.0000000,42.5729390000000,9.5230030000000,La Girelle,"Lucciana, Lido de la Marana",69639,Observation #69639,https://biolit.fr/observations/observation-69639/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-14-at-21.09.15.jpeg,,TRUE,Identifiable +N1,69633,Sortie #69633,https://biolit.fr/sorties/sortie-69633/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.55-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.54-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.54-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-15-at-17.11.54-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-14-at-21.09.15.jpeg,1/14/2024 0:00,15.0000000,17.0000000,42.5729390000000,9.5230030000000,La Girelle,"Lucciana, Lido de la Marana",69641,Observation #69641,https://biolit.fr/observations/observation-69641/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/01/WhatsApp-Image-2024-01-14-at-21.09.15.jpeg,,TRUE,Identifiable +N1,69644,Sortie #69644,https://biolit.fr/sorties/sortie-69644/,ddewick,https://biolit.fr/wp-content/uploads/jet-form-builder/85dc31265b02ee6bc98827390cda1446/2024/01/starfish4aug23.jpg,08/04/2023,10.0000000,11.0000000,48.2337560000000,-4.43354100000000,,Plage Aber,69646,Observation #69646,https://biolit.fr/observations/observation-69646/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/85dc31265b02ee6bc98827390cda1446/2024/01/starfish4aug23.jpg,,,Ne sais pas +N1,69650,Sortie #69650,https://biolit.fr/sorties/sortie-69650/,ddewick,https://biolit.fr/wp-content/uploads/jet-form-builder/85dc31265b02ee6bc98827390cda1446/2024/01/2023-12-26-Plants-Plage-Aber.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85dc31265b02ee6bc98827390cda1446/2024/01/2023-12-26-Jellyfish-Plage-Aber.jpg,12/26/2023 0:00,10.0000000,11.0000000,48.2337560000000,-4.43354100000000,,Plage Aber,69652,Observation #69652,https://biolit.fr/observations/observation-69652/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/85dc31265b02ee6bc98827390cda1446/2024/01/2023-12-26-Plants-Plage-Aber.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85dc31265b02ee6bc98827390cda1446/2024/01/2023-12-26-Jellyfish-Plage-Aber.jpg,,,Ne sais pas +N1,69650,Sortie #69650,https://biolit.fr/sorties/sortie-69650/,ddewick,https://biolit.fr/wp-content/uploads/jet-form-builder/85dc31265b02ee6bc98827390cda1446/2024/01/2023-12-26-Plants-Plage-Aber.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/85dc31265b02ee6bc98827390cda1446/2024/01/2023-12-26-Jellyfish-Plage-Aber.jpg,12/26/2023 0:00,10.0000000,11.0000000,48.2337560000000,-4.43354100000000,,Plage Aber,69654,Observation #69654,https://biolit.fr/observations/observation-69654/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/85dc31265b02ee6bc98827390cda1446/2024/01/2023-12-26-Jellyfish-Plage-Aber.jpg,,TRUE,Ne sais pas +N1,69657,Sortie #69657,https://biolit.fr/sorties/sortie-69657/,ddewick,https://biolit.fr/wp-content/uploads/jet-form-builder/85dc31265b02ee6bc98827390cda1446/2024/01/2023-12-29-Plage-Goulien.jpg,12/29/2023 0:00,10.0000000,11.0000000,48.2402320000000,-4.55025700000000,,Plage Goulien,69659,Observation #69659,https://biolit.fr/observations/observation-69659/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/85dc31265b02ee6bc98827390cda1446/2024/01/2023-12-29-Plage-Goulien.jpg,,,Ne sais pas +N1,69662,Sortie #69662,https://biolit.fr/sorties/sortie-69662/,ddewick,https://biolit.fr/wp-content/uploads/jet-form-builder/85dc31265b02ee6bc98827390cda1446/2024/01/2023-12-29-Plage-Kersigenou.jpg,12/29/2023 0:00,10.0:55,11.0:55,48.2518880000000,-4.5487830000000,,Plage Kerzigenou,69664,Observation #69664,https://biolit.fr/observations/observation-69664/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/85dc31265b02ee6bc98827390cda1446/2024/01/2023-12-29-Plage-Kersigenou.jpg,,TRUE,Ne sais pas +N1,69683,Sortie #69683,https://biolit.fr/sorties/sortie-69683/,AUBRUN JEAN-ALBERT,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095613-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_100443-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_100438-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095358-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095811-scaled.jpg,1/18/2023 0:00,9.0:15,10.0:15,49.4041230000000,0.130403000000000,,Villerville,69685,Observation #69685,https://biolit.fr/observations/observation-69685/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095358-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095354-scaled.jpg,,,Identifiable +N1,69683,Sortie #69683,https://biolit.fr/sorties/sortie-69683/,AUBRUN JEAN-ALBERT,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095613-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_100443-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_100438-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095358-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095811-scaled.jpg,1/18/2023 0:00,9.0:15,10.0:15,49.4041230000000,0.130403000000000,,Villerville,69687,Observation #69687,https://biolit.fr/observations/observation-69687/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095613-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095604-scaled.jpg,,,Ne sais pas +N1,69683,Sortie #69683,https://biolit.fr/sorties/sortie-69683/,AUBRUN JEAN-ALBERT,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095613-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_100443-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_100438-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095358-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095811-scaled.jpg,1/18/2023 0:00,9.0:15,10.0:15,49.4041230000000,0.130403000000000,,Villerville,69689,Observation #69689,https://biolit.fr/observations/observation-69689/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_100443-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_100438-scaled.jpg,,,Ne sais pas +N1,69683,Sortie #69683,https://biolit.fr/sorties/sortie-69683/,AUBRUN JEAN-ALBERT,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095613-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_100443-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_100438-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095358-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095811-scaled.jpg,1/18/2023 0:00,9.0:15,10.0:15,49.4041230000000,0.130403000000000,,Villerville,69691,Observation #69691,https://biolit.fr/observations/observation-69691/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1cb385991024be6880823ad06f042ed8/2024/01/20240118_095813-scaled.jpg,,,Ne sais pas +N1,69695,Sortie #69695,https://biolit.fr/sorties/sortie-69695/,Gueguen Quentin,https://biolit.fr/wp-content/uploads/jet-form-builder/d068403b61e10947d364c23052ec6107/2024/01/IMG_9675-scaled.jpeg,10/17/2023 0:00,13.0000000,14.0000000,43.210550000000,5.45222300000000,AIEJE,Sugiton,69709,Observation #69709,https://biolit.fr/observations/observation-69709/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d068403b61e10947d364c23052ec6107/2024/01/IMG_9675-scaled.jpeg,,,Identifiable +N1,69697,Sortie #69697,https://biolit.fr/sorties/sortie-69697/,Kab Ilyes,https://biolit.fr/wp-content/uploads/jet-form-builder/56c082abeaeaf326dddccc77a839e4d4/2024/01/IMG_8025-scaled.jpeg,10/17/2023 0:00,13.0000000,14.0000000,43.2106130000000,5.45042000000000,AIEJE,Calanques de Suggiton,69704,Observation #69704,https://biolit.fr/observations/observation-69704/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/56c082abeaeaf326dddccc77a839e4d4/2024/01/IMG_8025-scaled.jpeg,,,Identifiable +N1,69700,Sortie #69700,https://biolit.fr/sorties/sortie-69700/,Alaoui Aida,https://biolit.fr/wp-content/uploads/jet-form-builder/bf5615c188ee06920b229405f115739b/2024/01/BC49D030-D3F7-4F0D-B8B6-0E512C7ABA2D-scaled.jpeg,10/17/2023 0:00,13.0000000,14.0000000,43.2103000000000,5.45085000000000,AIEJE,Sugiton,69702,Observation #69702,https://biolit.fr/observations/observation-69702/,Codium decorticatum,Codium allongé,,https://biolit.fr/wp-content/uploads/jet-form-builder/bf5615c188ee06920b229405f115739b/2024/01/BC49D030-D3F7-4F0D-B8B6-0E512C7ABA2D-scaled.jpeg,,,Ne sais pas +N1,69707,Sortie #69707,https://biolit.fr/sorties/sortie-69707/,Galland Adrien,https://biolit.fr/wp-content/uploads/jet-form-builder/4f86029738da1cd0264a905b52267f9d/2024/01/IMG_6671-scaled.jpg,10/17/2023 0:00,13.0000000,14.0000000,43.2120420000000,5.45414300000000,AIEJE,Sugiton,69711,Observation #69711,https://biolit.fr/observations/observation-69711/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/4f86029738da1cd0264a905b52267f9d/2024/01/IMG_6671-scaled.jpg,,,Identifiable +N1,69716,Sortie #69716,https://biolit.fr/sorties/sortie-69716/,Meddour Abdel,https://biolit.fr/wp-content/uploads/jet-form-builder/87622097de367dec4f24efb816f5a9a6/2024/01/D59F853C-F3E1-42AA-A22F-2AA8781A6E94.jpeg,10/17/2023 0:00,14.0:44,17.0:41,43.2935190000000,5.40096100000000,,Les calanques,,,,,,,,,, +N1,69719,Sortie #69719,https://biolit.fr/sorties/sortie-69719/,Kebaili Ayman,https://biolit.fr/wp-content/uploads/jet-form-builder/1ceb7b33bc4a53cfe1c49b6fceb33f7c/2024/01/IMG_20231017_130013-scaled.jpg,10/17/2023 0:00,14.0000000,14.0000000,43.2935260,5.4009080,,Calanques sugiton,69721,Observation #69721,https://biolit.fr/observations/observation-69721/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1ceb7b33bc4a53cfe1c49b6fceb33f7c/2024/01/IMG_20231017_130013-scaled.jpg,,,Ne sais pas +N1,69724,Sortie #69724,https://biolit.fr/sorties/sortie-69724/,Dorbane Youcef,https://biolit.fr/wp-content/uploads/jet-form-builder/d0b468b0df8576ed6c47c6a7b81bbaa2/2024/01/IMG_3693.png,10/17/2023 0:00,11.0000000,14.0:45,43.21168,5.45553,,Calanque de sugiton,69726,Observation #69726,https://biolit.fr/observations/observation-69726/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d0b468b0df8576ed6c47c6a7b81bbaa2/2024/01/IMG_3693.png,,, +N1,69724,Sortie #69724,https://biolit.fr/sorties/sortie-69724/,Dorbane Youcef,https://biolit.fr/wp-content/uploads/jet-form-builder/d0b468b0df8576ed6c47c6a7b81bbaa2/2024/01/IMG_3693.png,10/17/2023 0:00,11.0000000,14.0:45,43.21168,5.45553,,Calanque de sugiton,69728,Observation #69728,https://biolit.fr/observations/observation-69728/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d0b468b0df8576ed6c47c6a7b81bbaa2/2024/01/IMG_3693.png,,,Ne sais pas +N1,69731,Sortie #69731,https://biolit.fr/sorties/sortie-69731/,Kebaili Ayman,https://biolit.fr/wp-content/uploads/jet-form-builder/1ceb7b33bc4a53cfe1c49b6fceb33f7c/2024/01/IMG_20231017_130020-scaled.jpg,10/17/2023 0:00,13.0000000,14.0000000,43.2935260,5.4009080,AIEJE,Calanques sugiton,69733,Observation #69733,https://biolit.fr/observations/observation-69733/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1ceb7b33bc4a53cfe1c49b6fceb33f7c/2024/01/IMG_20231017_130020-scaled.jpg,,,Ne sais pas +N1,69736,Sortie #69736,https://biolit.fr/sorties/sortie-69736/,Blaise Julie,https://biolit.fr/wp-content/uploads/jet-form-builder/95d06ec25246d2554c2aeb354e0b2510/2024/01/IMG_20231017_130020-2-scaled.jpg,1/18/2024 0:00,11.0000000,11.0000000,43.2935210,5.4009110,,,,,,,,,,,, +N1,69739,Sortie #69739,https://biolit.fr/sorties/sortie-69739/,Foamouwe Marc-bril,https://biolit.fr/wp-content/uploads/jet-form-builder/044b490433aec356c29d515a736066dc/2024/01/IMG_20231017_130020-scaled.jpg,10/17/2023 0:00,13.0000000,17.0000000,43.3475540000000,-1074.48324800000,AIEJE,La calanque de sugiton,69741,Observation #69741,https://biolit.fr/observations/observation-69741/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/044b490433aec356c29d515a736066dc/2024/01/IMG_20231017_130020-scaled.jpg,,,Identifiable +N1,69759,Sortie #69759,https://biolit.fr/sorties/sortie-69759/,BEAUPUY Elodie,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095205485.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,1/17/2024 0:00,10.000004,10.0:53,43.1074760000000,5.94536500000000,,plages du mourillon,69761,Observation #69761,https://biolit.fr/observations/observation-69761/,Larus michahellis,Goéland leucophée,,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg,,TRUE,Identifiable +N1,69759,Sortie #69759,https://biolit.fr/sorties/sortie-69759/,BEAUPUY Elodie,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095205485.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,1/17/2024 0:00,10.000004,10.0:53,43.1074760000000,5.94536500000000,,plages du mourillon,69763,Observation #69763,https://biolit.fr/observations/observation-69763/,Larus michahellis,Goéland leucophée,,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg,,TRUE,Identifiable +N1,69759,Sortie #69759,https://biolit.fr/sorties/sortie-69759/,BEAUPUY Elodie,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095205485.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,1/17/2024 0:00,10.000004,10.0:53,43.1074760000000,5.94536500000000,,plages du mourillon,69765,Observation #69765,https://biolit.fr/observations/observation-69765/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg,,TRUE,Identifiable +N1,69759,Sortie #69759,https://biolit.fr/sorties/sortie-69759/,BEAUPUY Elodie,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095205485.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,1/17/2024 0:00,10.000004,10.0:53,43.1074760000000,5.94536500000000,,plages du mourillon,69767,Observation #69767,https://biolit.fr/observations/observation-69767/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg,,TRUE,Identifiable +N1,69759,Sortie #69759,https://biolit.fr/sorties/sortie-69759/,BEAUPUY Elodie,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095205485.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,1/17/2024 0:00,10.000004,10.0:53,43.1074760000000,5.94536500000000,,plages du mourillon,69769,Observation #69769,https://biolit.fr/observations/observation-69769/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg,,,Ne sais pas +N1,69759,Sortie #69759,https://biolit.fr/sorties/sortie-69759/,BEAUPUY Elodie,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095205485.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,1/17/2024 0:00,10.000004,10.0:53,43.1074760000000,5.94536500000000,,plages du mourillon,69771,Observation #69771,https://biolit.fr/observations/observation-69771/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg,,TRUE,Identifiable +N1,69759,Sortie #69759,https://biolit.fr/sorties/sortie-69759/,BEAUPUY Elodie,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095205485.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,1/17/2024 0:00,10.000004,10.0:53,43.1074760000000,5.94536500000000,,plages du mourillon,69773,Observation #69773,https://biolit.fr/observations/observation-69773/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,,,Ne sais pas +N1,69759,Sortie #69759,https://biolit.fr/sorties/sortie-69759/,BEAUPUY Elodie,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095205485.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,1/17/2024 0:00,10.000004,10.0:53,43.1074760000000,5.94536500000000,,plages du mourillon,69775,Observation #69775,https://biolit.fr/observations/observation-69775/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg,,,Ne sais pas +N1,69759,Sortie #69759,https://biolit.fr/sorties/sortie-69759/,BEAUPUY Elodie,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095205485.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,1/17/2024 0:00,10.000004,10.0:53,43.1074760000000,5.94536500000000,,plages du mourillon,69777,Observation #69777,https://biolit.fr/observations/observation-69777/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg,,,Ne sais pas +N1,69759,Sortie #69759,https://biolit.fr/sorties/sortie-69759/,BEAUPUY Elodie,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095205485.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,1/17/2024 0:00,10.000004,10.0:53,43.1074760000000,5.94536500000000,,plages du mourillon,69779,Observation #69779,https://biolit.fr/observations/observation-69779/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg,,, +N1,69759,Sortie #69759,https://biolit.fr/sorties/sortie-69759/,BEAUPUY Elodie,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095205485.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,1/17/2024 0:00,10.000004,10.0:53,43.1074760000000,5.94536500000000,,plages du mourillon,69781,Observation #69781,https://biolit.fr/observations/observation-69781/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg,,TRUE,Identifiable +N1,69759,Sortie #69759,https://biolit.fr/sorties/sortie-69759/,BEAUPUY Elodie,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095205485.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,1/17/2024 0:00,10.000004,10.0:53,43.1074760000000,5.94536500000000,,plages du mourillon,69783,Observation #69783,https://biolit.fr/observations/observation-69783/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg,,,Ne sais pas +N1,69759,Sortie #69759,https://biolit.fr/sorties/sortie-69759/,BEAUPUY Elodie,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095205485.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,1/17/2024 0:00,10.000004,10.0:53,43.1074760000000,5.94536500000000,,plages du mourillon,69785,Observation #69785,https://biolit.fr/observations/observation-69785/,Epimenia australis/babai,Mollusques solénogastres vermiformes,,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg,,,Identifiable +N1,69759,Sortie #69759,https://biolit.fr/sorties/sortie-69759/,BEAUPUY Elodie,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095205485.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,1/17/2024 0:00,10.000004,10.0:53,43.1074760000000,5.94536500000000,,plages du mourillon,69787,Observation #69787,https://biolit.fr/observations/observation-69787/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg,,,Ne sais pas +N1,69759,Sortie #69759,https://biolit.fr/sorties/sortie-69759/,BEAUPUY Elodie,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095205485.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,1/17/2024 0:00,10.000004,10.0:53,43.1074760000000,5.94536500000000,,plages du mourillon,69789,Observation #69789,https://biolit.fr/observations/observation-69789/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg,,,Identifiable +N1,69759,Sortie #69759,https://biolit.fr/sorties/sortie-69759/,BEAUPUY Elodie,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_090722395.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095315658.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095153841.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095205485.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095023248.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_094253843.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093605158.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093314134.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093220447.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_093123243.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092715862.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092619069.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092612451.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092608206.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_092234062.MP_-scaled.jpg,1/17/2024 0:00,10.000004,10.0:53,43.1074760000000,5.94536500000000,,plages du mourillon,69791,Observation #69791,https://biolit.fr/observations/observation-69791/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27a9978d4653621e1f46ba29e5568f9f/2024/01/PXL_20240117_095013430.MP_-scaled.jpg,,,Ne sais pas +N1,69824,Sortie #69824,https://biolit.fr/sorties/sortie-69824/,TOUPET AXEL,https://biolit.fr/wp-content/uploads/jet-form-builder/79aa59ab2b6357a0074f251459d1e384/2024/01/1000000207.jpg,01/11/2024,15.0000000,16.0000000,50.6893750000000,1.56302000000000,,Plage de ningles,,,,,,,,,, +N1,69831,Sortie #69831,https://biolit.fr/sorties/sortie-69831/,Doudouh Sarah,"""https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6076-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6082-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6106-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6094-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6114-scaled.jpeg""",1/17/2024 0:00,10.000007,10.0:17,43.1076940000000,5.94047800000000,,Les plages du Mourillons,69833,Observation #69833,https://biolit.fr/observations/observation-69833/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6076-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6082-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6106-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6094-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6114-scaled.jpeg,,,Ne sais pas +N1,69831,Sortie #69831,https://biolit.fr/sorties/sortie-69831/,Doudouh Sarah,https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6076-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6082-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6106-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6094-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6114-scaled.jpeg,1/17/2024 0:00,10.000007,10.0:17,43.1076940000000,5.94047800000000,,Les plages du Mourillons,69835,Observation #69835,https://biolit.fr/observations/observation-69835/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6094-scaled.jpeg,,,Ne sais pas +N1,69831,Sortie #69831,https://biolit.fr/sorties/sortie-69831/,Doudouh Sarah,https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6076-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6082-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6106-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6094-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6114-scaled.jpeg,1/17/2024 0:00,10.000007,10.0:17,43.1076940000000,5.94047800000000,,Les plages du Mourillons,69837,Observation #69837,https://biolit.fr/observations/observation-69837/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6106-scaled.jpeg,,,Ne sais pas +N1,69831,Sortie #69831,https://biolit.fr/sorties/sortie-69831/,Doudouh Sarah,https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6076-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6082-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6106-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6094-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6114-scaled.jpeg,1/17/2024 0:00,10.000007,10.0:17,43.1076940000000,5.94047800000000,,Les plages du Mourillons,69839,Observation #69839,https://biolit.fr/observations/observation-69839/,Larus michahellis,Goéland leucophée,,https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6076-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6082-scaled.jpeg,,TRUE,Ne sais pas +N1,69831,Sortie #69831,https://biolit.fr/sorties/sortie-69831/,Doudouh Sarah,https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6076-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6082-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6106-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6094-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6114-scaled.jpeg,1/17/2024 0:00,10.000007,10.0:17,43.1076940000000,5.94047800000000,,Les plages du Mourillons,69841,Observation #69841,https://biolit.fr/observations/observation-69841/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/1d8eb0ab34018ee06f7ddc2bcf035b2c/2024/01/IMG_6114-scaled.jpeg,,TRUE,Ne sais pas +N1,69854,Sortie #69854,https://biolit.fr/sorties/sortie-69854/,Gemel-normandie,https://biolit.fr/wp-content/uploads/jet-form-builder/8e8cc625ef3af7b41bb8ea094502bc7c/2024/01/IMG_0768-scaled.jpg,1/22/2024 0:00,13.0000000,13.0000000,49.3197310000000,-0.352185000000000,,Luc-sur-mer,69856,Observation #69856,https://biolit.fr/observations/observation-69856/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8e8cc625ef3af7b41bb8ea094502bc7c/2024/01/IMG_0768-scaled.jpg,,,Ne sais pas +N1,69860,Sortie #69860,https://biolit.fr/sorties/sortie-69860/,Monsigny Ilan,https://biolit.fr/wp-content/uploads/jet-form-builder/5528ca1f93ce4b4f54c6299f7ae61295/2024/01/20240111_155232019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5528ca1f93ce4b4f54c6299f7ae61295/2024/01/20240111_154813086-scaled.jpg,01/11/2024,14.0000000,4.0000000,50.7125980,1.754955,,Plage de Ningles,69862,Observation #69862,https://biolit.fr/observations/observation-69862/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5528ca1f93ce4b4f54c6299f7ae61295/2024/01/20240111_154813086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5528ca1f93ce4b4f54c6299f7ae61295/2024/01/20240111_155232019-scaled.jpg,,FALSE,Identifiable +N1,69867,Sortie #69867,https://biolit.fr/sorties/sortie-69867/,Soussi Sirine,https://biolit.fr/wp-content/uploads/jet-form-builder/ad29c3513c79e96ba31b7071d31a1ecb/2024/01/IMG_4440-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad29c3513c79e96ba31b7071d31a1ecb/2024/01/IMG_4439-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad29c3513c79e96ba31b7071d31a1ecb/2024/01/IMG_4441-scaled.jpeg,01/10/2024,10.0000000,12.0000000,43.141904000000,5.88896900000000,Planète Mer,Plage du morillon,69869,Observation #69869,https://biolit.fr/observations/observation-69869/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ad29c3513c79e96ba31b7071d31a1ecb/2024/01/IMG_4440-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad29c3513c79e96ba31b7071d31a1ecb/2024/01/IMG_4439-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad29c3513c79e96ba31b7071d31a1ecb/2024/01/IMG_4441-scaled.jpeg,,FALSE,Ne sais pas +N1,69873,Sortie #69873,https://biolit.fr/sorties/sortie-69873/,Pequiman Caro,https://biolit.fr/wp-content/uploads/jet-form-builder/d582e78d55ad0d0f25b85b54f38554a6/2024/01/20240124_123032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d582e78d55ad0d0f25b85b54f38554a6/2024/01/20240124_123035-scaled.jpg,1/24/2024 0:00,12.0:24,12.0000000,48.6899830000000,-2.04620400000000,,St enogat,69875,Observation #69875,https://biolit.fr/observations/observation-69875/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d582e78d55ad0d0f25b85b54f38554a6/2024/01/20240124_123032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d582e78d55ad0d0f25b85b54f38554a6/2024/01/20240124_123035-scaled.jpg,,,non-identifiable +N1,69880,Sortie #69880,https://biolit.fr/sorties/sortie-69880/,Guyader Marie-Jose,https://biolit.fr/wp-content/uploads/jet-form-builder/af1604f1c92c0ff0e28ec36193a2f762/2024/01/IMG_20230901_1138242-scaled.jpg,09/01/2023,10.0000000,12.0000000,43.3800460000000,-1.75652500000000,CPIE Littoral Basque - Euskal Itsasbazterra,"Plage des Jumeaux, Hendaye",,,,,,,,,, +N1,69883,Sortie #69883,https://biolit.fr/sorties/sortie-69883/,CENATIEMPO Yannick,https://biolit.fr/wp-content/uploads/jet-form-builder/a8895767c3ce1e06a0074e6d8fe83315/2024/01/57441a620c279.jpeg,01/01/2022,9.0000000,9.0000000,47.7810100000000,-4.48313000000000,,test,,,,,,,,,, +N1,69886,Sortie #69886,https://biolit.fr/sorties/sortie-69886/,Bernader Barnaber,https://biolit.fr/wp-content/uploads/jet-form-builder/6f1b76884193889d89c225518eb3e7b8/2024/01/ref_dss.jpg,01/11/2024,21.0:56,21.0:59,48.2749300000000,-4.63968100000000,,totoland,,,,,,,,,, +N1,69907,Sortie #69907,https://biolit.fr/sorties/sortie-69907/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171445823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171540006-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171641852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171737021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171840393_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172651196-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172803193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172849997-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172940680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173117654.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173147140.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174015515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174101550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174139514-scaled.jpg,1/21/2024 0:00,17.0000000,18.0000000,43.2594090000000,5.3750080000000,,Plage de l'Huveaune,69909,Observation #69909,https://biolit.fr/observations/observation-69909/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172940680-scaled.jpg,,TRUE,Identifiable +N1,69907,Sortie #69907,https://biolit.fr/sorties/sortie-69907/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171445823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171540006-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171641852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171737021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171840393_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172651196-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172803193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172849997-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172940680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173117654.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173147140.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174015515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174101550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174139514-scaled.jpg,1/21/2024 0:00,17.0000000,18.0000000,43.2594090000000,5.3750080000000,,Plage de l'Huveaune,69915,Observation #69915,https://biolit.fr/observations/observation-69915/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175807-scaled.jpg,,TRUE,Identifiable +N1,69907,Sortie #69907,https://biolit.fr/sorties/sortie-69907/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171445823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171540006-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171641852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171737021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171840393_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172651196-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172803193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172849997-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172940680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173117654.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173147140.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174015515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174101550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174139514-scaled.jpg,1/21/2024 0:00,17.0000000,18.0000000,43.2594090000000,5.3750080000000,,Plage de l'Huveaune,69917,Observation #69917,https://biolit.fr/observations/observation-69917/,Corallina officinalis/caespitosa,Coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173117654.jpg,,,Identifiable +N1,69907,Sortie #69907,https://biolit.fr/sorties/sortie-69907/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171445823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171540006-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171641852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171737021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171840393_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172651196-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172803193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172849997-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172940680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173117654.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173147140.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174015515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174101550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174139514-scaled.jpg,1/21/2024 0:00,17.0000000,18.0000000,43.2594090000000,5.3750080000000,,Plage de l'Huveaune,69919,Observation #69919,https://biolit.fr/observations/observation-69919/,Corallina officinalis/caespitosa,Coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173147140.jpg,,,Identifiable +N1,69907,Sortie #69907,https://biolit.fr/sorties/sortie-69907/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171445823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171540006-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171641852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171737021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171840393_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172651196-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172803193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172849997-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172940680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173117654.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173147140.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174015515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174101550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174139514-scaled.jpg,1/21/2024 0:00,17.0000000,18.0000000,43.2594090000000,5.3750080000000,,Plage de l'Huveaune,69921,Observation #69921,https://biolit.fr/observations/observation-69921/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174015515-scaled.jpg,,TRUE,Identifiable +N1,69907,Sortie #69907,https://biolit.fr/sorties/sortie-69907/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171445823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171540006-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171641852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171737021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171840393_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172651196-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172803193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172849997-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172940680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173117654.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173147140.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174015515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174101550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174139514-scaled.jpg,1/21/2024 0:00,17.0000000,18.0000000,43.2594090000000,5.3750080000000,,Plage de l'Huveaune,69923,Observation #69923,https://biolit.fr/observations/observation-69923/,Electra posidoniae,Bryozoaire de la posidonie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171445823-scaled.jpg,,,Identifiable +N1,69907,Sortie #69907,https://biolit.fr/sorties/sortie-69907/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171445823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171540006-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171641852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171737021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171840393_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172651196-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172803193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172849997-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172940680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173117654.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173147140.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174015515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174101550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174139514-scaled.jpg,1/21/2024 0:00,17.0000000,18.0000000,43.2594090000000,5.3750080000000,,Plage de l'Huveaune,69925,Observation #69925,https://biolit.fr/observations/observation-69925/,Electra posidoniae,Bryozoaire de la posidonie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171540006-rotated.jpg,,,Identifiable +N1,69907,Sortie #69907,https://biolit.fr/sorties/sortie-69907/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171445823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171540006-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171641852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171737021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171840393_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172651196-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172803193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172849997-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172940680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173117654.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173147140.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174015515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174101550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174139514-scaled.jpg,1/21/2024 0:00,17.0000000,18.0000000,43.2594090000000,5.3750080000000,,Plage de l'Huveaune,69931,Observation #69931,https://biolit.fr/observations/observation-69931/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175431-scaled.jpg,,,Identifiable +N1,69907,Sortie #69907,https://biolit.fr/sorties/sortie-69907/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171445823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171540006-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171641852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171737021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171840393_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172651196-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172803193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172849997-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172940680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173117654.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173147140.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174015515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174101550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174139514-scaled.jpg,1/21/2024 0:00,17.0000000,18.0000000,43.2594090000000,5.3750080000000,,Plage de l'Huveaune,69933,Observation #69933,https://biolit.fr/observations/observation-69933/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172651196-scaled.jpg,,TRUE,Identifiable +N1,69907,Sortie #69907,https://biolit.fr/sorties/sortie-69907/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171445823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171540006-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171641852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171737021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171840393_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172651196-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172803193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172849997-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172940680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173117654.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173147140.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174015515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174101550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174139514-scaled.jpg,1/21/2024 0:00,17.0000000,18.0000000,43.2594090000000,5.3750080000000,,Plage de l'Huveaune,69935,Observation #69935,https://biolit.fr/observations/observation-69935/,Jania rubens,Janie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172803193-scaled.jpg,,,Ne sais pas +N1,69907,Sortie #69907,https://biolit.fr/sorties/sortie-69907/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171445823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171540006-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171641852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171737021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171840393_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172651196-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172803193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172849997-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172940680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173117654.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173147140.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174015515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174101550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174139514-scaled.jpg,1/21/2024 0:00,17.0000000,18.0000000,43.2594090000000,5.3750080000000,,Plage de l'Huveaune,69937,Observation #69937,https://biolit.fr/observations/observation-69937/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172849997-scaled.jpg,,,Identifiable +N1,69907,Sortie #69907,https://biolit.fr/sorties/sortie-69907/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171445823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171540006-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171641852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171737021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171840393_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172651196-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172803193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172849997-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172940680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173117654.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173147140.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174015515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174101550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174139514-scaled.jpg,1/21/2024 0:00,17.0000000,18.0000000,43.2594090000000,5.3750080000000,,Plage de l'Huveaune,69939,Observation #69939,https://biolit.fr/observations/observation-69939/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174139514-scaled.jpg,,,Ne sais pas +N1,69907,Sortie #69907,https://biolit.fr/sorties/sortie-69907/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171445823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171540006-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171641852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171737021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171840393_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172651196-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172803193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172849997-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172940680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173117654.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173147140.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174015515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174101550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174139514-scaled.jpg,1/21/2024 0:00,17.0000000,18.0000000,43.2594090000000,5.3750080000000,,Plage de l'Huveaune,69941,Observation #69941,https://biolit.fr/observations/observation-69941/,Tritia corniculum,Tritia corniculum,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171840393_HDR-scaled.jpg,,,Ne sais pas +N1,69907,Sortie #69907,https://biolit.fr/sorties/sortie-69907/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171445823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171540006-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171641852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171737021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171840393_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172651196-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172803193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172849997-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172940680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173117654.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173147140.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174015515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174101550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174139514-scaled.jpg,1/21/2024 0:00,17.0000000,18.0000000,43.2594090000000,5.3750080000000,,Plage de l'Huveaune,69943,Observation #69943,https://biolit.fr/observations/observation-69943/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174451-scaled.jpg,,TRUE,Identifiable +N1,69907,Sortie #69907,https://biolit.fr/sorties/sortie-69907/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_175807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171445823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171540006-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171641852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171737021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171840393_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172651196-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172803193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172849997-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_172940680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173117654.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_173147140.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174015515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174101550-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_174139514-scaled.jpg,1/21/2024 0:00,17.0000000,18.0000000,43.2594090000000,5.3750080000000,,Plage de l'Huveaune,73451,Observation #73451,https://biolit.fr/observations/observation-73451/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171641852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240121_171737021.jpg,,,Ne sais pas +N1,69958,Sortie #69958,https://biolit.fr/sorties/sortie-69958/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162825-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_161838305_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162056662_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162425959_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_163945462_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164447050_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164517048-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164913719_HDR-rotated.jpg,1/27/2024 0:00,16.0:15,16.0:45,43.2359330000000,5.35990700000000,,Plage de la Verrerie,69960,Observation #69960,https://biolit.fr/observations/observation-69960/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162056662_HDR-scaled.jpg,,TRUE,Identifiable +N1,69958,Sortie #69958,https://biolit.fr/sorties/sortie-69958/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162825-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_161838305_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162056662_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162425959_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_163945462_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164447050_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164517048-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164913719_HDR-rotated.jpg,1/27/2024 0:00,16.0:15,16.0:45,43.2359330000000,5.35990700000000,,Plage de la Verrerie,69962,Observation #69962,https://biolit.fr/observations/observation-69962/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164447050_HDR-rotated.jpg,,,Identifiable +N1,69958,Sortie #69958,https://biolit.fr/sorties/sortie-69958/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162825-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_161838305_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162056662_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162425959_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_163945462_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164447050_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164517048-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164913719_HDR-rotated.jpg,1/27/2024 0:00,16.0:15,16.0:45,43.2359330000000,5.35990700000000,,Plage de la Verrerie,69964,Observation #69964,https://biolit.fr/observations/observation-69964/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164913719_HDR-rotated.jpg,,,Identifiable +N1,69958,Sortie #69958,https://biolit.fr/sorties/sortie-69958/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162825-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_161838305_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162056662_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162425959_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_163945462_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164447050_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164517048-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164913719_HDR-rotated.jpg,1/27/2024 0:00,16.0:15,16.0:45,43.2359330000000,5.35990700000000,,Plage de la Verrerie,69966,Observation #69966,https://biolit.fr/observations/observation-69966/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_161838305_HDR-rotated.jpg,,TRUE,Identifiable +N1,69958,Sortie #69958,https://biolit.fr/sorties/sortie-69958/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162825-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_161838305_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162056662_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162425959_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_163945462_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164447050_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164517048-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164913719_HDR-rotated.jpg,1/27/2024 0:00,16.0:15,16.0:45,43.2359330000000,5.35990700000000,,Plage de la Verrerie,69968,Observation #69968,https://biolit.fr/observations/observation-69968/,Melarhaphe neritoides,Littorine bleue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164517048-rotated.jpg,,,Identifiable +N1,69958,Sortie #69958,https://biolit.fr/sorties/sortie-69958/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162825-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_161838305_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162056662_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_162425959_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_163945462_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164447050_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164517048-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_164913719_HDR-rotated.jpg,1/27/2024 0:00,16.0:15,16.0:45,43.2359330000000,5.35990700000000,,Plage de la Verrerie,69974,Observation #69974,https://biolit.fr/observations/observation-69974/,Sertularella polyzonias,Sertularelle polyzonias,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_163945462_HDR-rotated.jpg,,,Ne sais pas +N1,69981,Sortie #69981,https://biolit.fr/sorties/sortie-69981/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173140-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_165210758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173851943-rotated.jpg,1/27/2024 0:00,17.0000000,17.0:45,43.2380210000000,5.3617150000000,,Plage de l'Anse des Phocéens,69983,Observation #69983,https://biolit.fr/observations/observation-69983/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173430-scaled.jpg,,TRUE,Identifiable +N1,69981,Sortie #69981,https://biolit.fr/sorties/sortie-69981/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173140-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_165210758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173851943-rotated.jpg,1/27/2024 0:00,17.0000000,17.0:45,43.2380210000000,5.3617150000000,,Plage de l'Anse des Phocéens,69985,Observation #69985,https://biolit.fr/observations/observation-69985/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173536-scaled.jpg,,TRUE,Identifiable +N1,69981,Sortie #69981,https://biolit.fr/sorties/sortie-69981/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173140-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_165210758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173851943-rotated.jpg,1/27/2024 0:00,17.0000000,17.0:45,43.2380210000000,5.3617150000000,,Plage de l'Anse des Phocéens,69987,Observation #69987,https://biolit.fr/observations/observation-69987/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173140-scaled.jpg,,,Identifiable +N1,69981,Sortie #69981,https://biolit.fr/sorties/sortie-69981/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173140-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_165210758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173851943-rotated.jpg,1/27/2024 0:00,17.0000000,17.0:45,43.2380210000000,5.3617150000000,,Plage de l'Anse des Phocéens,69989,Observation #69989,https://biolit.fr/observations/observation-69989/,Flabellia petiolata,Udotée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_165210758_HDR-scaled.jpg,,TRUE,Ne sais pas +N1,69981,Sortie #69981,https://biolit.fr/sorties/sortie-69981/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173140-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_165210758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173851943-rotated.jpg,1/27/2024 0:00,17.0000000,17.0:45,43.2380210000000,5.3617150000000,,Plage de l'Anse des Phocéens,69991,Observation #69991,https://biolit.fr/observations/observation-69991/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_173851943-rotated.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70013,Observation #70013,https://biolit.fr/observations/observation-70013/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg,,TRUE,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70015,Observation #70015,https://biolit.fr/observations/observation-70015/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70017,Observation #70017,https://biolit.fr/observations/observation-70017/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg,,TRUE,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70019,Observation #70019,https://biolit.fr/observations/observation-70019/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70021,Observation #70021,https://biolit.fr/observations/observation-70021/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg,,TRUE,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70023,Observation #70023,https://biolit.fr/observations/observation-70023/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70025,Observation #70025,https://biolit.fr/observations/observation-70025/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70027,Observation #70027,https://biolit.fr/observations/observation-70027/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70029,Observation #70029,https://biolit.fr/observations/observation-70029/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70031,Observation #70031,https://biolit.fr/observations/observation-70031/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70033,Observation #70033,https://biolit.fr/observations/observation-70033/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70035,Observation #70035,https://biolit.fr/observations/observation-70035/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70037,Observation #70037,https://biolit.fr/observations/observation-70037/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70039,Observation #70039,https://biolit.fr/observations/observation-70039/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70041,Observation #70041,https://biolit.fr/observations/observation-70041/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70043,Observation #70043,https://biolit.fr/observations/observation-70043/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70045,Observation #70045,https://biolit.fr/observations/observation-70045/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70047,Observation #70047,https://biolit.fr/observations/observation-70047/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70049,Observation #70049,https://biolit.fr/observations/observation-70049/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,,,Ne sais pas +N1,70011,Sortie #70011,https://biolit.fr/sorties/sortie-70011/,ADJUDEANU IRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_154946-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153726-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_152536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151320-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151557-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_153741-scaled.jpg,1/28/2024 0:00,15.000001,17.000001,43.5085030000000,6.94036800000000,,Plage Theoule sur Mer,70051,Observation #70051,https://biolit.fr/observations/observation-70051/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d824c3e4c21a51f9bb371fbce983b917/2024/01/IMG_20240128_151413-scaled.jpg,,,Ne sais pas +N1,70071,Sortie #70071,https://biolit.fr/sorties/sortie-70071/,GAUTIER Manon,https://biolit.fr/wp-content/uploads/jet-form-builder/8d6946266fc8e5216122b1e859e5f5b3/2024/01/IMG_20231223_1510356951-scaled.jpg,12/23/2023 0:00,15.0000000,16.0000000,48.6367980000000,-2.12033700000000,,Plage de longchamp Saint Lunaire,70073,Observation #70073,https://biolit.fr/observations/observation-70073/,Morus bassanus,Fou de Bassan,,https://biolit.fr/wp-content/uploads/jet-form-builder/8d6946266fc8e5216122b1e859e5f5b3/2024/01/IMG_20231223_1510356951-scaled.jpg,,TRUE,Identifiable +N1,70078,Sortie #70078,https://biolit.fr/sorties/sortie-70078/,admin biolit,https://biolit.fr/wp-content/uploads/jet-form-builder/5e9647a2e573e408c911ec2521328db5/2024/01/Asteria_rubenscBioLit-Francoise.jpg,1/30/2024 0:00,12.0:23,14.0:23,47.9548900000000,3.37503400000000,,la,,,,,,,,,, +N1,70081,Sortie #70081,https://biolit.fr/sorties/sortie-70081/,admin biolit,https://biolit.fr/wp-content/uploads/jet-form-builder/5e9647a2e573e408c911ec2521328db5/2024/01/Asteria_rubenscBioLit-Francoise-1.jpg,1/30/2024 0:00,12.0:37,12.0:41,48.87366,2.473184,,la,,,,,,,,,, +N1,70085,Sortie #70085,https://biolit.fr/sorties/sortie-70085/,admin biolit,https://biolit.fr/wp-content/uploads/jet-form-builder/5e9647a2e573e408c911ec2521328db5/2024/01/20210604_Marseilleveyre_Rugolopterix_arkamurae_BioLit_Marine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e9647a2e573e408c911ec2521328db5/2024/01/Asteria_rubenscBioLit-Francoise-2.jpg,1/30/2024 0:00,12.0:38,17.0:43,48.873427,2.47385,,la,,,,,,,,,, +N1,70092,Sortie #70092,https://biolit.fr/sorties/sortie-70092/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_170457-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_170556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_171625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_172802-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_171236657_BURST008-rotated.jpg,1/27/2024 0:00,17.0000000,17.0000000,43.236913000000,5.36045000000000,,Plage de l’Anse des Sablettes,70094,Observation #70094,https://biolit.fr/observations/observation-70094/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_170457-scaled.jpg,,TRUE,Identifiable +N1,70092,Sortie #70092,https://biolit.fr/sorties/sortie-70092/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_170457-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_170556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_171625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_172802-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_171236657_BURST008-rotated.jpg,1/27/2024 0:00,17.0000000,17.0000000,43.236913000000,5.36045000000000,,Plage de l’Anse des Sablettes,70096,Observation #70096,https://biolit.fr/observations/observation-70096/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_170556-scaled.jpg,,,Ne sais pas +N1,70092,Sortie #70092,https://biolit.fr/sorties/sortie-70092/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_170457-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_170556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_171625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_172802-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_171236657_BURST008-rotated.jpg,1/27/2024 0:00,17.0000000,17.0000000,43.236913000000,5.36045000000000,,Plage de l’Anse des Sablettes,70100,Observation #70100,https://biolit.fr/observations/observation-70100/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_172802-scaled.jpg,,TRUE,Identifiable +N1,70092,Sortie #70092,https://biolit.fr/sorties/sortie-70092/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_170457-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_170556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_171625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_172802-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_171236657_BURST008-rotated.jpg,1/27/2024 0:00,17.0000000,17.0000000,43.236913000000,5.36045000000000,,Plage de l’Anse des Sablettes,70102,Observation #70102,https://biolit.fr/observations/observation-70102/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240127_171236657_BURST008-rotated.jpg,,,Ne sais pas +N1,70107,Sortie #70107,https://biolit.fr/sorties/sortie-70107/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_111930-scaled.jpg,1/27/2024 0:00,16.0:45,17.0000000,43.2359880000000,5.3599500000000,,Plage de la Verrerie,70109,Observation #70109,https://biolit.fr/observations/observation-70109/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_111930-scaled.jpg,,,Ne sais pas +N1,70131,Sortie #70131,https://biolit.fr/sorties/sortie-70131/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_130501145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_131247631_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_140725702_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131153498.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131247428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131425128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132115370.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132623531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132934194.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133020193.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133237790.jpg,1/28/2024 0:00,11.0000000,12.0000000,43.2398940000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70133,Observation #70133,https://biolit.fr/observations/observation-70133/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_130501145-scaled.jpg,,,Identifiable +N1,70131,Sortie #70131,https://biolit.fr/sorties/sortie-70131/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_130501145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_131247631_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_140725702_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131153498.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131247428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131425128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132115370.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132623531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132934194.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133020193.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133237790.jpg,1/28/2024 0:00,11.0000000,12.0000000,43.2398940000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70135,Observation #70135,https://biolit.fr/observations/observation-70135/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_131247631_HDR.jpg,,,Identifiable +N1,70131,Sortie #70131,https://biolit.fr/sorties/sortie-70131/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_130501145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_131247631_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_140725702_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131153498.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131247428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131425128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132115370.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132623531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132934194.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133020193.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133237790.jpg,1/28/2024 0:00,11.0000000,12.0000000,43.2398940000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70137,Observation #70137,https://biolit.fr/observations/observation-70137/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131247428.jpg,,,Identifiable +N1,70131,Sortie #70131,https://biolit.fr/sorties/sortie-70131/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_130501145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_131247631_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_140725702_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131153498.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131247428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131425128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132115370.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132623531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132934194.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133020193.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133237790.jpg,1/28/2024 0:00,11.0000000,12.0000000,43.2398940000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70139,Observation #70139,https://biolit.fr/observations/observation-70139/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131153498.jpg,,,Identifiable +N1,70131,Sortie #70131,https://biolit.fr/sorties/sortie-70131/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_130501145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_131247631_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_140725702_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131153498.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131247428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131425128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132115370.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132623531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132934194.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133020193.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133237790.jpg,1/28/2024 0:00,11.0000000,12.0000000,43.2398940000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70141,Observation #70141,https://biolit.fr/observations/observation-70141/,Pusia ebenus,Pusia ébène,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131425128.jpg,,,Identifiable +N1,70131,Sortie #70131,https://biolit.fr/sorties/sortie-70131/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_130501145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_131247631_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_140725702_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131153498.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131247428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131425128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132115370.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132623531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132934194.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133020193.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133237790.jpg,1/28/2024 0:00,11.0000000,12.0000000,43.2398940000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70143,Observation #70143,https://biolit.fr/observations/observation-70143/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132115370.jpg,,TRUE,Identifiable +N1,70131,Sortie #70131,https://biolit.fr/sorties/sortie-70131/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_130501145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_131247631_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_140725702_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131153498.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131247428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131425128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132115370.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132623531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132934194.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133020193.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133237790.jpg,1/28/2024 0:00,11.0000000,12.0000000,43.2398940000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70145,Observation #70145,https://biolit.fr/observations/observation-70145/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132934194.jpg,,TRUE,Identifiable +N1,70131,Sortie #70131,https://biolit.fr/sorties/sortie-70131/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_130501145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_131247631_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_140725702_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131153498.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131247428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131425128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132115370.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132623531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132934194.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133020193.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133237790.jpg,1/28/2024 0:00,11.0000000,12.0000000,43.2398940000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70149,Observation #70149,https://biolit.fr/observations/observation-70149/,Modiolus barbatus,Modiole barbue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_140725702_HDR-scaled.jpg,,,Identifiable +N1,70131,Sortie #70131,https://biolit.fr/sorties/sortie-70131/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_130501145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_131247631_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_140725702_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131153498.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131247428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131425128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132115370.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132623531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132934194.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133020193.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133237790.jpg,1/28/2024 0:00,11.0000000,12.0000000,43.2398940000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70151,Observation #70151,https://biolit.fr/observations/observation-70151/,Cardita calyculata,Cardite petit calice,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132623531.jpg,,,Identifiable +N1,70131,Sortie #70131,https://biolit.fr/sorties/sortie-70131/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_130501145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_131247631_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_140725702_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131153498.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131247428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131425128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132115370.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132623531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132934194.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133020193.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133237790.jpg,1/28/2024 0:00,11.0000000,12.0000000,43.2398940000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70153,Observation #70153,https://biolit.fr/observations/observation-70153/,Bittium reticulatum,Cérithe réticulé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133020193.jpg,,,Identifiable +N1,70165,Sortie #70165,https://biolit.fr/sorties/sortie-70165/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/01/20240131_0847391-scaled.jpg,1/22/2024 0:00,12.0:45,14.0000000,48.819009,-3.501012,,Plage de Landrélec,,,,,,,,,, +N1,70177,Sortie #70177,https://biolit.fr/sorties/sortie-70177/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133302537.jpg,1/28/2024 0:00,12.0000000,12.0000000,43.2398850000000,5.36244400000000,,Plage de l’Anse du Bain des Dames,70179,Observation #70179,https://biolit.fr/observations/observation-70179/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-1-scaled.jpg,,,Ne sais pas +N1,70177,Sortie #70177,https://biolit.fr/sorties/sortie-70177/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133302537.jpg,1/28/2024 0:00,12.0000000,12.0000000,43.2398850000000,5.36244400000000,,Plage de l’Anse du Bain des Dames,70181,Observation #70181,https://biolit.fr/observations/observation-70181/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032-1.jpg,,,Ne sais pas +N1,70177,Sortie #70177,https://biolit.fr/sorties/sortie-70177/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133302537.jpg,1/28/2024 0:00,12.0000000,12.0000000,43.2398850000000,5.36244400000000,,Plage de l’Anse du Bain des Dames,70189,Observation #70189,https://biolit.fr/observations/observation-70189/,Sertularella mediterranea,Sertularelle de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848-1.jpg,,,Ne sais pas +N1,70177,Sortie #70177,https://biolit.fr/sorties/sortie-70177/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133302537.jpg,1/28/2024 0:00,12.0000000,12.0000000,43.2398850000000,5.36244400000000,,Plage de l’Anse du Bain des Dames,70191,Observation #70191,https://biolit.fr/observations/observation-70191/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607-1.jpg,,,Ne sais pas +N1,70177,Sortie #70177,https://biolit.fr/sorties/sortie-70177/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133302537.jpg,1/28/2024 0:00,12.0000000,12.0000000,43.2398850000000,5.36244400000000,,Plage de l’Anse du Bain des Dames,70193,Observation #70193,https://biolit.fr/observations/observation-70193/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860-1.jpg,,,Ne sais pas +N1,70177,Sortie #70177,https://biolit.fr/sorties/sortie-70177/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133302537.jpg,1/28/2024 0:00,12.0000000,12.0000000,43.2398850000000,5.36244400000000,,Plage de l’Anse du Bain des Dames,70197,Observation #70197,https://biolit.fr/observations/observation-70197/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133302537.jpg,,,Ne sais pas +N1,70177,Sortie #70177,https://biolit.fr/sorties/sortie-70177/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240128_133758795_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131655032-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132143800-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132539280-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132725848-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132809607-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_132855860-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133214378-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_133302537.jpg,1/28/2024 0:00,12.0000000,12.0000000,43.2398850000000,5.36244400000000,,Plage de l’Anse du Bain des Dames,74892,Observation #74892,https://biolit.fr/observations/observation-74892/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/01/IMG_20240129_131933634-1.jpg,,,Ne sais pas +N1,70415,Sortie #70415,https://biolit.fr/sorties/sortie-70415/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2024/02/Q2-littorine-fabalis-28-12-2023.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2024/02/Q2-monodonte-28-12-2023.jpeg,1/30/2024 0:00,16.0000000,16.0:45,47.6077880,-2.747549,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Gornevez Séné 56860,,,,,,,,,, +N1,70453,Sortie #70453,https://biolit.fr/sorties/sortie-70453/,Pequiman Caro,https://biolit.fr/wp-content/uploads/jet-form-builder/d582e78d55ad0d0f25b85b54f38554a6/2024/02/20240203_173321-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d582e78d55ad0d0f25b85b54f38554a6/2024/02/20240203_173331-scaled.jpg,02/03/2024,17.0:38,17.0000000,48.6388240000000,-2.07110100000000,,Saint Enogat,70455,Observation #70455,https://biolit.fr/observations/observation-70455/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d582e78d55ad0d0f25b85b54f38554a6/2024/02/20240203_173321-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d582e78d55ad0d0f25b85b54f38554a6/2024/02/20240203_173331-scaled.jpg,,,non-identifiable +N1,70519,Sortie #70519,https://biolit.fr/sorties/sortie-70519/,HEUZE Alexandre,https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3606-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3607-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3608-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3609-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3610-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3611-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3612-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3614-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3615-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3616-scaled.jpeg,02/07/2024,14.0000000,16.0000000,49.4913250000000,0.0930620000000000,,Digue Nord Le Havre,70521,Observation #70521,https://biolit.fr/observations/observation-70521/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3606-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3607-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3608-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3609-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3610-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3611-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3612-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3616-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3615-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8ebfec8797e0f332e2db5e71e3e3316b/2024/02/IMG_3614-scaled.jpeg,,,Ne sais pas +N1,70524,Sortie #70524,https://biolit.fr/sorties/sortie-70524/,Berdon Mouhoud Christine,https://biolit.fr/wp-content/uploads/jet-form-builder/1975b259327839ceb4235febaa38f3b2/2024/02/IMG_7088-scaled.jpeg,02/08/2024,10.0000000,10.0:17,48.8596580000000,-3.13239100000000,,Port la chaîne,70526,Observation #70526,https://biolit.fr/observations/observation-70526/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/1975b259327839ceb4235febaa38f3b2/2024/02/IMG_7088-scaled.jpeg,,,Identifiable +N1,70529,Sortie #70529,https://biolit.fr/sorties/sortie-70529/,Berdon Mouhoud Christine,https://biolit.fr/wp-content/uploads/jet-form-builder/1975b259327839ceb4235febaa38f3b2/2024/02/IMG_7089-scaled.jpeg,02/08/2024,10.000004,10.0:14,48.8595740000000,-3.13127500000000,,Port la Chaîne,70531,Observation #70531,https://biolit.fr/observations/observation-70531/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/jet-form-builder/1975b259327839ceb4235febaa38f3b2/2024/02/IMG_7089-scaled.jpeg,,TRUE,Identifiable +N1,70534,Sortie #70534,https://biolit.fr/sorties/sortie-70534/,Berdon Mouhoud Christine,https://biolit.fr/wp-content/uploads/jet-form-builder/1975b259327839ceb4235febaa38f3b2/2024/02/IMG_7086-scaled.jpeg,02/08/2024,10.0000000,10.000005,48.8592350000000,-3.13101800000000,,Port la Chaîne,70536,Observation #70536,https://biolit.fr/observations/observation-70536/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/1975b259327839ceb4235febaa38f3b2/2024/02/IMG_7086-scaled.jpeg,,TRUE,Identifiable +N1,70541,Sortie #70541,https://biolit.fr/sorties/sortie-70541/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240204_115832099-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240208_131844411.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131031167-scaled.jpg,02/04/2024,11.0:45,12.0000000,43.2380430000000,5.3617690000000,,Plage de l'Anse des Phocéens,70543,Observation #70543,https://biolit.fr/observations/observation-70543/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240204_115832099-rotated.jpg,,TRUE,Identifiable +N1,70541,Sortie #70541,https://biolit.fr/sorties/sortie-70541/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240204_115832099-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240208_131844411.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131031167-scaled.jpg,02/04/2024,11.0:45,12.0000000,43.2380430000000,5.3617690000000,,Plage de l'Anse des Phocéens,70545,Observation #70545,https://biolit.fr/observations/observation-70545/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240208_131844411.jpg,,,Ne sais pas +N1,70554,Sortie #70554,https://biolit.fr/sorties/sortie-70554/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/02/IMG_20231129_141848-scaled.jpg,11/29/2023 0:00,14.0000000,15.0000000,48.6260290000000,-2.19870300000000,,La Nellière Saint-Jacut-de-la-mer,,,,,,,,,, +N1,70568,Sortie #70568,https://biolit.fr/sorties/sortie-70568/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-09-133403.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131326773-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131409355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131548420.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131630718.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131733388.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131844941.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132036972-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132117586.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132159020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132238118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132314153.jpg,02/03/2024,16.0000000,17.0000000,43.2398330000000,5.36246000000000,,Plage de l’Anse du Bain des Dames,70570,Observation #70570,https://biolit.fr/observations/observation-70570/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-09-133403.jpg,,,Identifiable +N1,70568,Sortie #70568,https://biolit.fr/sorties/sortie-70568/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-09-133403.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131326773-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131409355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131548420.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131630718.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131733388.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131844941.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132036972-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132117586.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132159020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132238118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132314153.jpg,02/03/2024,16.0000000,17.0000000,43.2398330000000,5.36246000000000,,Plage de l’Anse du Bain des Dames,70572,Observation #70572,https://biolit.fr/observations/observation-70572/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131326773-scaled.jpg,,TRUE,Identifiable +N1,70568,Sortie #70568,https://biolit.fr/sorties/sortie-70568/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-09-133403.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131326773-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131409355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131548420.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131630718.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131733388.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131844941.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132036972-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132117586.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132159020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132238118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132314153.jpg,02/03/2024,16.0000000,17.0000000,43.2398330000000,5.36246000000000,,Plage de l’Anse du Bain des Dames,70574,Observation #70574,https://biolit.fr/observations/observation-70574/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131844941.jpg,,TRUE,Identifiable +N1,70568,Sortie #70568,https://biolit.fr/sorties/sortie-70568/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-09-133403.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131326773-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131409355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131548420.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131630718.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131733388.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131844941.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132036972-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132117586.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132159020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132238118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132314153.jpg,02/03/2024,16.0000000,17.0000000,43.2398330000000,5.36246000000000,,Plage de l’Anse du Bain des Dames,70576,Observation #70576,https://biolit.fr/observations/observation-70576/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131733388.jpg,,TRUE,Identifiable +N1,70568,Sortie #70568,https://biolit.fr/sorties/sortie-70568/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-09-133403.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131326773-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131409355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131548420.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131630718.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131733388.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131844941.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132036972-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132117586.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132159020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132238118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132314153.jpg,02/03/2024,16.0000000,17.0000000,43.2398330000000,5.36246000000000,,Plage de l’Anse du Bain des Dames,70578,Observation #70578,https://biolit.fr/observations/observation-70578/,Lithophaga lithophaga,Datte de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132238118-scaled.jpg,,TRUE,Identifiable +N1,70568,Sortie #70568,https://biolit.fr/sorties/sortie-70568/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-09-133403.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131326773-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131409355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131548420.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131630718.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131733388.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131844941.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132036972-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132117586.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132159020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132238118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132314153.jpg,02/03/2024,16.0000000,17.0000000,43.2398330000000,5.36246000000000,,Plage de l’Anse du Bain des Dames,70580,Observation #70580,https://biolit.fr/observations/observation-70580/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131548420.jpg,,,Identifiable +N1,70568,Sortie #70568,https://biolit.fr/sorties/sortie-70568/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-09-133403.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131326773-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131409355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131548420.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131630718.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131733388.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131844941.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132036972-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132117586.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132159020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132238118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132314153.jpg,02/03/2024,16.0000000,17.0000000,43.2398330000000,5.36246000000000,,Plage de l’Anse du Bain des Dames,70584,Observation #70584,https://biolit.fr/observations/observation-70584/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132117586.jpg,,,Identifiable +N1,70568,Sortie #70568,https://biolit.fr/sorties/sortie-70568/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-09-133403.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131326773-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131409355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131548420.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131630718.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131733388.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131844941.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132036972-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132117586.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132159020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132238118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_132314153.jpg,02/03/2024,16.0000000,17.0000000,43.2398330000000,5.36246000000000,,Plage de l’Anse du Bain des Dames,70588,Observation #70588,https://biolit.fr/observations/observation-70588/,Euthria cornea,Buccin veiné,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240209_131630718.jpg,,,Identifiable +N1,70597,Sortie #70597,https://biolit.fr/sorties/sortie-70597/,HECKER Nathalie,https://biolit.fr/wp-content/uploads/jet-form-builder/b0aed2bf40921579b3b28ba678d08eef/2024/02/WhatsApp-Image-2024-02-12-at-14.30.38.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/b0aed2bf40921579b3b28ba678d08eef/2024/02/WhatsApp-Image-2024-02-12-at-14.30.57.jpeg,02/11/2024,16.0000000,16.0000000,47.8553030000000,-4.34980300000000,,Plage de Tronoën,70599,Observation #70599,https://biolit.fr/observations/observation-70599/,Raja brachyura,Raie lisse,,https://biolit.fr/wp-content/uploads/jet-form-builder/b0aed2bf40921579b3b28ba678d08eef/2024/02/WhatsApp-Image-2024-02-12-at-14.30.38.jpeg,,TRUE,Identifiable +N1,70597,Sortie #70597,https://biolit.fr/sorties/sortie-70597/,HECKER Nathalie,https://biolit.fr/wp-content/uploads/jet-form-builder/b0aed2bf40921579b3b28ba678d08eef/2024/02/WhatsApp-Image-2024-02-12-at-14.30.38.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/b0aed2bf40921579b3b28ba678d08eef/2024/02/WhatsApp-Image-2024-02-12-at-14.30.57.jpeg,02/11/2024,16.0000000,16.0000000,47.8553030000000,-4.34980300000000,,Plage de Tronoën,70601,Observation #70601,https://biolit.fr/observations/observation-70601/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/b0aed2bf40921579b3b28ba678d08eef/2024/02/WhatsApp-Image-2024-02-12-at-14.30.57.jpeg,,TRUE,Identifiable +N1,70604,Sortie #70604,https://biolit.fr/sorties/sortie-70604/,HECKER Nathalie,https://biolit.fr/wp-content/uploads/jet-form-builder/b0aed2bf40921579b3b28ba678d08eef/2024/02/WhatsApp-Image-2024-02-12-at-13.20.19.jpeg,02/12/2024,11.0000000,12.0000000,47.7926620000000,-4.24206400000000,,Plage de Skividen,70606,Observation #70606,https://biolit.fr/observations/observation-70606/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/b0aed2bf40921579b3b28ba678d08eef/2024/02/WhatsApp-Image-2024-02-12-at-13.20.19.jpeg,,TRUE,Identifiable +N1,70613,Sortie #70613,https://biolit.fr/sorties/sortie-70613/,LAURANS Loïc,https://biolit.fr/wp-content/uploads/jet-form-builder/83984ba3123e4923df0e71f76dd17c00/2024/02/photo_1.jpeg,02/12/2024,12.0000000,12.0000000,48.3505060000000,-4.69840800000000,,Plougonvelin Plage du Trez Hir,70615,Observation #70615,https://biolit.fr/observations/observation-70615/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/83984ba3123e4923df0e71f76dd17c00/2024/02/photo_1.jpeg,,TRUE,Identifiable +N1,70704,Sortie #70704,https://biolit.fr/sorties/sortie-70704/,Di Costanzo Estelle,https://biolit.fr/wp-content/uploads/jet-form-builder/436631c2e65e66a3af3802f509b1e101/2024/02/20230528_113508-scaled.jpg,2/15/2024 0:00,9.0:12,12.0:12,43.1379070,6.0707310,Association Med.IA Nature,Alamanare,,,,,,,,,, +N1,70723,Sortie #70723,https://biolit.fr/sorties/sortie-70723/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131447.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_202742183-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203220496-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203344804-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203826582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_205347745-scaled.jpg,02/03/2024,16.0000000,16.0000000,43.2398400000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70725,Observation #70725,https://biolit.fr/observations/observation-70725/,Stramonita haemastoma,Bouche de sang,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131009.jpg,,TRUE,Identifiable +N1,70723,Sortie #70723,https://biolit.fr/sorties/sortie-70723/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131447.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_202742183-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203220496-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203344804-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203826582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_205347745-scaled.jpg,02/03/2024,16.0000000,16.0000000,43.2398400000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70727,Observation #70727,https://biolit.fr/observations/observation-70727/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_202742183-scaled.jpg,,TRUE,Identifiable +N1,70723,Sortie #70723,https://biolit.fr/sorties/sortie-70723/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131447.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_202742183-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203220496-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203344804-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203826582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_205347745-scaled.jpg,02/03/2024,16.0000000,16.0000000,43.2398400000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70729,Observation #70729,https://biolit.fr/observations/observation-70729/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203220496-scaled.jpg,,,Identifiable +N1,70723,Sortie #70723,https://biolit.fr/sorties/sortie-70723/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131447.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_202742183-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203220496-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203344804-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203826582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_205347745-scaled.jpg,02/03/2024,16.0000000,16.0000000,43.2398400000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70731,Observation #70731,https://biolit.fr/observations/observation-70731/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203826582.jpg,,,Identifiable +N1,70723,Sortie #70723,https://biolit.fr/sorties/sortie-70723/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131447.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_202742183-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203220496-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203344804-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203826582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_205347745-scaled.jpg,02/03/2024,16.0000000,16.0000000,43.2398400000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70733,Observation #70733,https://biolit.fr/observations/observation-70733/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131144.jpg,,TRUE,Identifiable +N1,70723,Sortie #70723,https://biolit.fr/sorties/sortie-70723/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131447.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_202742183-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203220496-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203344804-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203826582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_205347745-scaled.jpg,02/03/2024,16.0000000,16.0000000,43.2398400000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70735,Observation #70735,https://biolit.fr/observations/observation-70735/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203344804-scaled.jpg,,TRUE,Identifiable +N1,70723,Sortie #70723,https://biolit.fr/sorties/sortie-70723/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131447.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_202742183-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203220496-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203344804-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203826582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_205347745-scaled.jpg,02/03/2024,16.0000000,16.0000000,43.2398400000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70737,Observation #70737,https://biolit.fr/observations/observation-70737/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_205347745-scaled.jpg,,,Identifiable +N1,70723,Sortie #70723,https://biolit.fr/sorties/sortie-70723/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131447.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_202742183-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203220496-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203344804-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_203826582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240210_205347745-scaled.jpg,02/03/2024,16.0000000,16.0000000,43.2398400000000,5.36246600000000,,Plage de l’Anse du Bain des Dames,70741,Observation #70741,https://biolit.fr/observations/observation-70741/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-16-131447.jpg,,,Ne sais pas +N1,70748,Sortie #70748,https://biolit.fr/sorties/sortie-70748/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_1332561-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_1401271-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_1415121-scaled.jpg,1/29/2024 0:00,13.0000000,14.0000000,48.8168,-3.4905,,Plage de Landrélec,70750,Observation #70750,https://biolit.fr/observations/observation-70750/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_1332561-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_1401271-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_1415121-scaled.jpg,,,Identifiable +N1,70748,Sortie #70748,https://biolit.fr/sorties/sortie-70748/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_1332561-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_1401271-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_1415121-scaled.jpg,1/29/2024 0:00,13.0000000,14.0000000,48.8168,-3.4905,,Plage de Landrélec,70752,Observation #70752,https://biolit.fr/observations/observation-70752/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_1401271-scaled.jpg,,, +N1,70748,Sortie #70748,https://biolit.fr/sorties/sortie-70748/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_1332561-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_1401271-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_1415121-scaled.jpg,1/29/2024 0:00,13.0000000,14.0000000,48.8168,-3.4905,,Plage de Landrélec,70754,Observation #70754,https://biolit.fr/observations/observation-70754/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_1415121-scaled.jpg,,, +N1,70758,Sortie #70758,https://biolit.fr/sorties/sortie-70758/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_135435-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_134156-scaled.jpg,1/29/2024 0:00,13.0000000,14.0000000,48.8167680000000,-3.54049900000000,,Plage de Landrelec,70760,Observation #70760,https://biolit.fr/observations/observation-70760/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_135435-scaled.jpg,,,Identifiable +N1,70758,Sortie #70758,https://biolit.fr/sorties/sortie-70758/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_135435-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_134156-scaled.jpg,1/29/2024 0:00,13.0000000,14.0000000,48.8167680000000,-3.54049900000000,,Plage de Landrelec,70762,Observation #70762,https://biolit.fr/observations/observation-70762/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/20240129_134156-scaled.jpg,,,Identifiable +N1,70765,Sortie #70765,https://biolit.fr/sorties/sortie-70765/,Gouble Jean Jacques,https://biolit.fr/wp-content/uploads/jet-form-builder/7e0266bf349218c144435b4837c80b9c/2024/02/20210204_141610-scaled.jpg,02/04/2021,10.0000000,12.0000000,49.3595680,0.0781270,,Trouville-sur-Mer,,,,,,,,,, +N1,70770,Sortie #70770,https://biolit.fr/sorties/sortie-70770/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/Q1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/Q1-1--scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/Quadra-1-Gibule-ombiliquee-scaled.jpg,10/16/2023 0:00,12.0000000,13.0000000,48.7522300,-3.4373630,,Landrellec,,,,,,,,,, +N1,70775,Sortie #70775,https://biolit.fr/sorties/sortie-70775/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/Quadra-1-Littorine-des-rochers-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/Q1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/Quadra-1-scaled.jpg,10/16/2023 0:00,12.0000000,13.0:29,48.7522300,-3.4373630,,Landrellec,,,,,,,,,, +N1,70780,Sortie #70780,https://biolit.fr/sorties/sortie-70780/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/Quadra-1-Littorine-des-rochers-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/Quadra-1-Gibule-ombiliquee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/Q1-2-1-scaled.jpg,10/16/2023 0:00,12.0000000,13.0000000,48.7522300,-3.4373630,,Landrellec,70782,Observation #70782,https://biolit.fr/observations/observation-70782/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/Quadra-1-Littorine-des-rochers-1-scaled.jpg,,TRUE,Identifiable +N1,70780,Sortie #70780,https://biolit.fr/sorties/sortie-70780/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/Quadra-1-Littorine-des-rochers-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/Quadra-1-Gibule-ombiliquee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/Q1-2-1-scaled.jpg,10/16/2023 0:00,12.0000000,13.0000000,48.7522300,-3.4373630,,Landrellec,70784,Observation #70784,https://biolit.fr/observations/observation-70784/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/Quadra-1-Gibule-ombiliquee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/02/Q1-2-1-scaled.jpg,,TRUE,Identifiable +N1,70787,Sortie #70787,https://biolit.fr/sorties/sortie-70787/,Di Costanzo Estelle,https://biolit.fr/wp-content/uploads/jet-form-builder/436631c2e65e66a3af3802f509b1e101/2024/02/20240216_164908-scaled.jpg,2/16/2024 0:00,15.0000000,16.0:33,43.027657000000,6.15009200000000,Association Med.IA Nature,Plage du Pradeau,70789,Observation #70789,https://biolit.fr/observations/observation-70789/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/436631c2e65e66a3af3802f509b1e101/2024/02/20240216_164908-scaled.jpg,,TRUE,Identifiable +N1,70909,Sortie #70909,https://biolit.fr/sorties/sortie-70909/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233212.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233335.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233706.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233924.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113731163_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113836940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115311057_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115326960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_120914532-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155516302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155555417.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155623472_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155650971.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155721874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_161732524.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3577540000000,5.29086200000000,,Plage de la Batterie,70911,Observation #70911,https://biolit.fr/observations/observation-70911/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233706.jpg,,,Identifiable +N1,70909,Sortie #70909,https://biolit.fr/sorties/sortie-70909/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233212.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233335.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233706.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233924.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113731163_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113836940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115311057_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115326960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_120914532-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155516302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155555417.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155623472_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155650971.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155721874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_161732524.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3577540000000,5.29086200000000,,Plage de la Batterie,70913,Observation #70913,https://biolit.fr/observations/observation-70913/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155623472_HDR.jpg,,,Identifiable +N1,70909,Sortie #70909,https://biolit.fr/sorties/sortie-70909/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233212.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233335.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233706.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233924.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113731163_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113836940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115311057_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115326960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_120914532-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155516302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155555417.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155623472_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155650971.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155721874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_161732524.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3577540000000,5.29086200000000,,Plage de la Batterie,70915,Observation #70915,https://biolit.fr/observations/observation-70915/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155650971.jpg,,TRUE,Identifiable +N1,70909,Sortie #70909,https://biolit.fr/sorties/sortie-70909/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233212.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233335.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233706.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233924.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113731163_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113836940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115311057_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115326960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_120914532-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155516302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155555417.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155623472_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155650971.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155721874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_161732524.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3577540000000,5.29086200000000,,Plage de la Batterie,70917,Observation #70917,https://biolit.fr/observations/observation-70917/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155516302-scaled.jpg,,TRUE,Identifiable +N1,70909,Sortie #70909,https://biolit.fr/sorties/sortie-70909/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233212.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233335.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233706.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233924.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113731163_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113836940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115311057_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115326960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_120914532-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155516302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155555417.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155623472_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155650971.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155721874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_161732524.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3577540000000,5.29086200000000,,Plage de la Batterie,70919,Observation #70919,https://biolit.fr/observations/observation-70919/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113836940_HDR-scaled.jpg,,TRUE,Identifiable +N1,70909,Sortie #70909,https://biolit.fr/sorties/sortie-70909/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233212.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233335.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233706.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233924.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113731163_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113836940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115311057_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115326960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_120914532-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155516302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155555417.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155623472_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155650971.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155721874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_161732524.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3577540000000,5.29086200000000,,Plage de la Batterie,70921,Observation #70921,https://biolit.fr/observations/observation-70921/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233212.jpg,,,Ne sais pas +N1,70909,Sortie #70909,https://biolit.fr/sorties/sortie-70909/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233212.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233335.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233706.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233924.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113731163_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113836940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115311057_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115326960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_120914532-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155516302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155555417.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155623472_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155650971.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155721874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_161732524.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3577540000000,5.29086200000000,,Plage de la Batterie,70923,Observation #70923,https://biolit.fr/observations/observation-70923/,Diodora graeca,Fissurelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233335.jpg,,,Ne sais pas +N1,70909,Sortie #70909,https://biolit.fr/sorties/sortie-70909/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233212.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233335.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233706.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233924.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113731163_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113836940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115311057_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115326960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_120914532-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155516302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155555417.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155623472_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155650971.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155721874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_161732524.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3577540000000,5.29086200000000,,Plage de la Batterie,70925,Observation #70925,https://biolit.fr/observations/observation-70925/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233924.jpg,,,Ne sais pas +N1,70909,Sortie #70909,https://biolit.fr/sorties/sortie-70909/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233212.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233335.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233706.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233924.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113731163_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113836940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115311057_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115326960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_120914532-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155516302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155555417.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155623472_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155650971.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155721874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_161732524.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3577540000000,5.29086200000000,,Plage de la Batterie,70927,Observation #70927,https://biolit.fr/observations/observation-70927/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113731163_HDR.jpg,,,Ne sais pas +N1,70909,Sortie #70909,https://biolit.fr/sorties/sortie-70909/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233212.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233335.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233706.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233924.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113731163_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113836940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115311057_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115326960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_120914532-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155516302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155555417.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155623472_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155650971.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155721874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_161732524.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3577540000000,5.29086200000000,,Plage de la Batterie,70929,Observation #70929,https://biolit.fr/observations/observation-70929/,Oxalis pes-caprae,Oxalide pied-de-chèvre,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115311057_HDR-scaled.jpg,,,Ne sais pas +N1,70909,Sortie #70909,https://biolit.fr/sorties/sortie-70909/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233212.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233335.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233706.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233924.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113731163_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113836940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115311057_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115326960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_120914532-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155516302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155555417.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155623472_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155650971.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155721874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_161732524.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3577540000000,5.29086200000000,,Plage de la Batterie,70931,Observation #70931,https://biolit.fr/observations/observation-70931/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115326960-scaled.jpg,,,Ne sais pas +N1,70909,Sortie #70909,https://biolit.fr/sorties/sortie-70909/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233212.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233335.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233706.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233924.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113731163_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113836940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115311057_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115326960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_120914532-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155516302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155555417.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155623472_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155650971.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155721874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_161732524.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3577540000000,5.29086200000000,,Plage de la Batterie,70933,Observation #70933,https://biolit.fr/observations/observation-70933/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_120914532-rotated.jpg,,,Ne sais pas +N1,70909,Sortie #70909,https://biolit.fr/sorties/sortie-70909/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233212.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233335.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233706.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233924.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113731163_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113836940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115311057_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115326960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_120914532-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155516302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155555417.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155623472_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155650971.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155721874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_161732524.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3577540000000,5.29086200000000,,Plage de la Batterie,70937,Observation #70937,https://biolit.fr/observations/observation-70937/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155721874_HDR.jpg,,,Ne sais pas +N1,70909,Sortie #70909,https://biolit.fr/sorties/sortie-70909/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233212.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233335.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233706.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-19-233924.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113731163_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_113836940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115311057_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_115326960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_120914532-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155516302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155555417.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155623472_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155650971.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_155721874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_161732524.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3577540000000,5.29086200000000,,Plage de la Batterie,70939,Observation #70939,https://biolit.fr/observations/observation-70939/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240218_161732524.jpg,,,Ne sais pas +N1,71082,Sortie #71082,https://biolit.fr/sorties/sortie-71082/,SV,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1364-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1367-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1368-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1369-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1370-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1371-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1375-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1376-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1377-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1383-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1388-scaled.jpg,2/21/2024 0:00,13.0000000,17.0000000,42.8198870000000,3.04106100000000,Planète Mer,Le Barcarès - Les Portes du Roussillon,71084,Observation #71084,https://biolit.fr/observations/observation-71084/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1364-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1367-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1368-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1369-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1370-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1371-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1375-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1376-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1377-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1383-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1388-scaled.jpg,,,Ne sais pas +N1,71100,Sortie #71100,https://biolit.fr/sorties/sortie-71100/,SV,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1389-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1390-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1391-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1395-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1396-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1397-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1398-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1399-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1400-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1407-scaled.jpg,2/21/2024 0:00,13.0000000,17.0000000,42.8197150000000,3.04098100000000,Planète Mer,Le Barcarès - Les Portes du Roussillon,71102,Observation #71102,https://biolit.fr/observations/observation-71102/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1389-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1390-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1391-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1395-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1396-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1397-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1398-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1399-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1400-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2024/02/IMG_1407-scaled.jpg,,,Ne sais pas +N1,71106,Sortie #71106,https://biolit.fr/sorties/sortie-71106/,philippe DE OLIVEIRA,https://biolit.fr/wp-content/uploads/jet-form-builder/ad2d986edfde3266b0cf176520742b58/2024/02/1000025184-scaled.jpg,2/28/2024 0:00,10.000008,10.0000000,-0.2866750,73.4107350,,Fumahvulah,71108,Observation #71108,https://biolit.fr/observations/observation-71108/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ad2d986edfde3266b0cf176520742b58/2024/02/1000025184-scaled.jpg,,,Ne sais pas +N1,71111,Sortie #71111,https://biolit.fr/sorties/sortie-71111/,philippe DE OLIVEIRA,https://biolit.fr/wp-content/uploads/jet-form-builder/ad2d986edfde3266b0cf176520742b58/2024/02/1000025185-scaled.jpg,2/28/2024 0:00,10.000009,10.000009,-0.2878160,73.4126800,,Fumahvulah,71113,Observation #71113,https://biolit.fr/observations/observation-71113/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ad2d986edfde3266b0cf176520742b58/2024/02/1000025185-scaled.jpg,,,Ne sais pas +N1,71124,Sortie #71124,https://biolit.fr/sorties/sortie-71124/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-28-233851.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-28-234058.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_091910084_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_092103590_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_093423000_HDR-scaled.jpg,2/28/2024 0:00,9.0000000,11.0000000,43.238008000000,5.36170700000000,,Plage de l'Anse des Phocéens,71126,Observation #71126,https://biolit.fr/observations/observation-71126/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-28-233851.jpg,,,Ne sais pas +N1,71124,Sortie #71124,https://biolit.fr/sorties/sortie-71124/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-28-233851.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-28-234058.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_091910084_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_092103590_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_093423000_HDR-scaled.jpg,2/28/2024 0:00,9.0000000,11.0000000,43.238008000000,5.36170700000000,,Plage de l'Anse des Phocéens,71128,Observation #71128,https://biolit.fr/observations/observation-71128/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-28-234058.jpg,,TRUE,Identifiable +N1,71124,Sortie #71124,https://biolit.fr/sorties/sortie-71124/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-28-233851.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-28-234058.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_091910084_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_092103590_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_093423000_HDR-scaled.jpg,2/28/2024 0:00,9.0000000,11.0000000,43.238008000000,5.36170700000000,,Plage de l'Anse des Phocéens,71130,Observation #71130,https://biolit.fr/observations/observation-71130/,Tridentata perpusilla,Sertulaire minuscule,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_091910084_HDR.jpg,,,Ne sais pas +N1,71124,Sortie #71124,https://biolit.fr/sorties/sortie-71124/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-28-233851.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-28-234058.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_091910084_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_092103590_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_093423000_HDR-scaled.jpg,2/28/2024 0:00,9.0000000,11.0000000,43.238008000000,5.36170700000000,,Plage de l'Anse des Phocéens,71132,Observation #71132,https://biolit.fr/observations/observation-71132/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_092103590_HDR-rotated.jpg,,,Ne sais pas +N1,71124,Sortie #71124,https://biolit.fr/sorties/sortie-71124/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-28-233851.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/Capture-decran-2024-02-28-234058.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_091910084_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_092103590_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_093423000_HDR-scaled.jpg,2/28/2024 0:00,9.0000000,11.0000000,43.238008000000,5.36170700000000,,Plage de l'Anse des Phocéens,71134,Observation #71134,https://biolit.fr/observations/observation-71134/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20240228_093423000_HDR-scaled.jpg,,TRUE,Identifiable +N1,71147,Sortie #71147,https://biolit.fr/sorties/sortie-71147/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20231231_105138603-rotated.jpg,12/26/2023 0:00,11.0000000,11.0000000,43.2101160000000,5.42018800000000,,Plage de la calanque de Sormiou,71149,Observation #71149,https://biolit.fr/observations/observation-71149/,Striarca lactea,Striarca laiteuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20231231_105138603-rotated.jpg,,,Identifiable +N1,71152,Sortie #71152,https://biolit.fr/sorties/sortie-71152/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20231231_105027330_HDR-rotated.jpg,12/26/2023 0:00,10.0000000,11.0000000,43.2101340000000,5.42020600000000,,Plage de la calanque de Sormiou,71154,Observation #71154,https://biolit.fr/observations/observation-71154/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/02/IMG_20231231_105027330_HDR-rotated.jpg,,TRUE,Identifiable +N1,71176,Sortie #71176,https://biolit.fr/sorties/sortie-71176/,Gasc Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114729-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114653-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114650-scaled.jpg,03/02/2024,10.0:15,11.000005,43.5256410,3.9293190,Ailerons,Palavas,71178,Observation #71178,https://biolit.fr/observations/observation-71178/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114653-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114650-scaled.jpg,,TRUE,Identifiable +N1,71176,Sortie #71176,https://biolit.fr/sorties/sortie-71176/,Gasc Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114729-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114653-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114650-scaled.jpg,03/02/2024,10.0:15,11.000005,43.5256410,3.9293190,Ailerons,Palavas,71180,Observation #71180,https://biolit.fr/observations/observation-71180/,Raja asterias,Raie étoilée,,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114700-scaled.jpg,,,Identifiable +N1,71176,Sortie #71176,https://biolit.fr/sorties/sortie-71176/,Gasc Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114729-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114653-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114650-scaled.jpg,03/02/2024,10.0:15,11.000005,43.5256410,3.9293190,Ailerons,Palavas,71182,Observation #71182,https://biolit.fr/observations/observation-71182/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114700-scaled.jpg,,,Identifiable +N1,71176,Sortie #71176,https://biolit.fr/sorties/sortie-71176/,Gasc Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114729-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114653-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114650-scaled.jpg,03/02/2024,10.0:15,11.000005,43.5256410,3.9293190,Ailerons,Palavas,71184,Observation #71184,https://biolit.fr/observations/observation-71184/,Eunicella singularis,Gorgone blanche,,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114724-scaled.jpg,,,Identifiable +N1,71176,Sortie #71176,https://biolit.fr/sorties/sortie-71176/,Gasc Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114729-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114653-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114650-scaled.jpg,03/02/2024,10.0:15,11.000005,43.5256410,3.9293190,Ailerons,Palavas,71186,Observation #71186,https://biolit.fr/observations/observation-71186/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114729-scaled.jpg,,,Ne sais pas +N1,71176,Sortie #71176,https://biolit.fr/sorties/sortie-71176/,Gasc Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114729-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114653-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114650-scaled.jpg,03/02/2024,10.0:15,11.000005,43.5256410,3.9293190,Ailerons,Palavas,71188,Observation #71188,https://biolit.fr/observations/observation-71188/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114729-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114708-scaled.jpg,,, +N1,71176,Sortie #71176,https://biolit.fr/sorties/sortie-71176/,Gasc Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114729-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114653-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114650-scaled.jpg,03/02/2024,10.0:15,11.000005,43.5256410,3.9293190,Ailerons,Palavas,71190,Observation #71190,https://biolit.fr/observations/observation-71190/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/03/20240302_114704-scaled.jpg,,,Identifiable +N1,71195,Sortie #71195,https://biolit.fr/sorties/sortie-71195/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/03/IMG_20240302_145109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/03/IMG_20240302_145132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/03/IMG_20240302_145146-scaled.jpg,03/02/2024,14.0000000,14.0:56,46.1477370000000,-1.2103520000000,,chef de baie,71197,Observation #71197,https://biolit.fr/observations/observation-71197/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/03/IMG_20240302_145109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/03/IMG_20240302_145132-scaled.jpg,,TRUE,Identifiable +N1,71195,Sortie #71195,https://biolit.fr/sorties/sortie-71195/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/03/IMG_20240302_145109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/03/IMG_20240302_145132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/03/IMG_20240302_145146-scaled.jpg,03/02/2024,14.0000000,14.0:56,46.1477370000000,-1.2103520000000,,chef de baie,71199,Observation #71199,https://biolit.fr/observations/observation-71199/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/03/IMG_20240302_145146-scaled.jpg,,TRUE,Identifiable +N1,71210,Sortie #71210,https://biolit.fr/sorties/sortie-71210/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Gibbule_toupie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_102803611_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103035325_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103218880_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_122950424.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_123022497_BURST000_COVER.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Patella-rustica_Patelle-ponctuee-scaled.jpg,2/26/2024 0:00,10.0000000,11.0000000,43.2095180000000,5.37258900000000,,Calanque de Marseilleveyre,71212,Observation #71212,https://biolit.fr/observations/observation-71212/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151024.jpg,,TRUE,Identifiable +N1,71210,Sortie #71210,https://biolit.fr/sorties/sortie-71210/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Gibbule_toupie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_102803611_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103035325_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103218880_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_122950424.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_123022497_BURST000_COVER.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Patella-rustica_Patelle-ponctuee-scaled.jpg,2/26/2024 0:00,10.0000000,11.0000000,43.2095180000000,5.37258900000000,,Calanque de Marseilleveyre,71214,Observation #71214,https://biolit.fr/observations/observation-71214/,Carpobrotus acinaciformis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151211.jpg,,TRUE,Identifiable +N1,71210,Sortie #71210,https://biolit.fr/sorties/sortie-71210/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Gibbule_toupie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_102803611_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103035325_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103218880_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_122950424.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_123022497_BURST000_COVER.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Patella-rustica_Patelle-ponctuee-scaled.jpg,2/26/2024 0:00,10.0000000,11.0000000,43.2095180000000,5.37258900000000,,Calanque de Marseilleveyre,71216,Observation #71216,https://biolit.fr/observations/observation-71216/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Gibbule_toupie.jpg,,,Identifiable +N1,71210,Sortie #71210,https://biolit.fr/sorties/sortie-71210/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Gibbule_toupie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_102803611_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103035325_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103218880_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_122950424.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_123022497_BURST000_COVER.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Patella-rustica_Patelle-ponctuee-scaled.jpg,2/26/2024 0:00,10.0000000,11.0000000,43.2095180000000,5.37258900000000,,Calanque de Marseilleveyre,71218,Observation #71218,https://biolit.fr/observations/observation-71218/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_102803611_HDR-rotated.jpg,,,Ne sais pas +N1,71210,Sortie #71210,https://biolit.fr/sorties/sortie-71210/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Gibbule_toupie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_102803611_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103035325_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103218880_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_122950424.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_123022497_BURST000_COVER.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Patella-rustica_Patelle-ponctuee-scaled.jpg,2/26/2024 0:00,10.0000000,11.0000000,43.2095180000000,5.37258900000000,,Calanque de Marseilleveyre,71220,Observation #71220,https://biolit.fr/observations/observation-71220/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103035325_HDR-rotated.jpg,,TRUE,Identifiable +N1,71210,Sortie #71210,https://biolit.fr/sorties/sortie-71210/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Gibbule_toupie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_102803611_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103035325_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103218880_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_122950424.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_123022497_BURST000_COVER.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Patella-rustica_Patelle-ponctuee-scaled.jpg,2/26/2024 0:00,10.0000000,11.0000000,43.2095180000000,5.37258900000000,,Calanque de Marseilleveyre,71222,Observation #71222,https://biolit.fr/observations/observation-71222/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_123022497_BURST000_COVER.jpg,,TRUE,Identifiable +N1,71210,Sortie #71210,https://biolit.fr/sorties/sortie-71210/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Gibbule_toupie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_102803611_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103035325_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103218880_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_122950424.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_123022497_BURST000_COVER.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Patella-rustica_Patelle-ponctuee-scaled.jpg,2/26/2024 0:00,10.0000000,11.0000000,43.2095180000000,5.37258900000000,,Calanque de Marseilleveyre,71224,Observation #71224,https://biolit.fr/observations/observation-71224/,Barnea candida,Pholade blanche,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103218880_HDR-scaled.jpg,,TRUE,Ne sais pas +N1,71210,Sortie #71210,https://biolit.fr/sorties/sortie-71210/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Gibbule_toupie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_102803611_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103035325_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103218880_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_122950424.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_123022497_BURST000_COVER.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Patella-rustica_Patelle-ponctuee-scaled.jpg,2/26/2024 0:00,10.0000000,11.0000000,43.2095180000000,5.37258900000000,,Calanque de Marseilleveyre,71226,Observation #71226,https://biolit.fr/observations/observation-71226/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_122950424.jpg,,,Ne sais pas +N1,71210,Sortie #71210,https://biolit.fr/sorties/sortie-71210/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-02-151211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Gibbule_toupie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_102803611_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103035325_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240226_103218880_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_122950424.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_123022497_BURST000_COVER.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Patella-rustica_Patelle-ponctuee-scaled.jpg,2/26/2024 0:00,10.0000000,11.0000000,43.2095180000000,5.37258900000000,,Calanque de Marseilleveyre,71228,Observation #71228,https://biolit.fr/observations/observation-71228/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Patella-rustica_Patelle-ponctuee-scaled.jpg,,,Identifiable +N1,71241,Sortie #71241,https://biolit.fr/sorties/sortie-71241/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0022.jpg,2/28/2024 0:00,9.0000000,11.0000000,43.2369100000000,5.36043800000000,Planète Mer,Plage de l'abri-côtier,71243,Observation #71243,https://biolit.fr/observations/observation-71243/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0020.jpg,,TRUE,Identifiable +N1,71241,Sortie #71241,https://biolit.fr/sorties/sortie-71241/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0022.jpg,2/28/2024 0:00,9.0000000,11.0000000,43.2369100000000,5.36043800000000,Planète Mer,Plage de l'abri-côtier,71245,Observation #71245,https://biolit.fr/observations/observation-71245/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0015.jpg,,TRUE,Identifiable +N1,71241,Sortie #71241,https://biolit.fr/sorties/sortie-71241/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0022.jpg,2/28/2024 0:00,9.0000000,11.0000000,43.2369100000000,5.36043800000000,Planète Mer,Plage de l'abri-côtier,71247,Observation #71247,https://biolit.fr/observations/observation-71247/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0005.jpg,,,Ne sais pas +N1,71241,Sortie #71241,https://biolit.fr/sorties/sortie-71241/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0022.jpg,2/28/2024 0:00,9.0000000,11.0000000,43.2369100000000,5.36043800000000,Planète Mer,Plage de l'abri-côtier,71249,Observation #71249,https://biolit.fr/observations/observation-71249/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0022.jpg,,TRUE,Identifiable +N1,71241,Sortie #71241,https://biolit.fr/sorties/sortie-71241/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0022.jpg,2/28/2024 0:00,9.0000000,11.0000000,43.2369100000000,5.36043800000000,Planète Mer,Plage de l'abri-côtier,71251,Observation #71251,https://biolit.fr/observations/observation-71251/,Peyssonnelia squamaria,Peyssonnelia,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0004.jpg,,TRUE,Identifiable +N1,71283,Sortie #71283,https://biolit.fr/sorties/sortie-71283/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-04-163004.jpg,08/08/2023,10.0000000,10.0000000,45.8758280000000,-1.26319600000000,,Plage de Vertbois,71285,Observation #71285,https://biolit.fr/observations/observation-71285/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-04-163004.jpg,,TRUE,Identifiable +N1,71298,Sortie #71298,https://biolit.fr/sorties/sortie-71298/,Guillardeau Francois,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8917-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8931-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8944-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8947-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8948-scaled.jpeg,2/19/2024 0:00,9.0000000,11.0000000,51.00519,2.06686,,Platier d'OYE,71307,Observation #71307,https://biolit.fr/observations/observation-71307/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8917-scaled.jpeg,,,Identifiable +N1,71298,Sortie #71298,https://biolit.fr/sorties/sortie-71298/,Guillardeau Francois,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8917-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8931-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8944-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8947-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8948-scaled.jpeg,2/19/2024 0:00,9.0000000,11.0000000,51.00519,2.06686,,Platier d'OYE,71309,Observation #71309,https://biolit.fr/observations/observation-71309/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8931-scaled.jpeg,,,Ne sais pas +N1,71298,Sortie #71298,https://biolit.fr/sorties/sortie-71298/,Guillardeau Francois,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8917-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8931-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8944-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8947-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8948-scaled.jpeg,2/19/2024 0:00,9.0000000,11.0000000,51.00519,2.06686,,Platier d'OYE,71311,Observation #71311,https://biolit.fr/observations/observation-71311/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8944-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8947-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/platier-d-OYE-DSC_8948-scaled.jpeg,,,Ne sais pas +N1,71315,Sortie #71315,https://biolit.fr/sorties/sortie-71315/,Guillardeau Francois,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/plage-de-Malo-becasseau-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/plage-de-Malo-Goeland-scaled.jpeg,01/11/2024,15.0000000,16.0000000,51.05,2.4,,Plage Malo Les Bains (Dunkerque),71317,Observation #71317,https://biolit.fr/observations/observation-71317/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/plage-de-Malo-becasseau-scaled.jpeg,,,Identifiable +N1,71315,Sortie #71315,https://biolit.fr/sorties/sortie-71315/,Guillardeau Francois,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/plage-de-Malo-becasseau-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/plage-de-Malo-Goeland-scaled.jpeg,01/11/2024,15.0000000,16.0000000,51.05,2.4,,Plage Malo Les Bains (Dunkerque),71319,Observation #71319,https://biolit.fr/observations/observation-71319/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/plage-de-Malo-Goeland-scaled.jpeg,,,Identifiable +N1,71322,Sortie #71322,https://biolit.fr/sorties/sortie-71322/,Guillardeau Francois,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/plage-de-Malo-scaled.jpeg,03/06/2021,12.0000000,13.0000000,51.05,2.4,,Plage Malo Les Bains (Dunkerque),71324,Observation #71324,https://biolit.fr/observations/observation-71324/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/plage-de-Malo-scaled.jpeg,,TRUE,Ne sais pas +N1,71327,Sortie #71327,https://biolit.fr/sorties/sortie-71327/,Guillardeau Francois,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/plage-Malo-DSC_9053-scaled.jpeg,7/17/2020 0:00,18.0000000,19.0000000,51.05,2.4,,Plage Malo Les Bains (Dunkerque),71329,Observation #71329,https://biolit.fr/observations/observation-71329/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/plage-Malo-DSC_9053-scaled.jpeg,,TRUE,Ne sais pas +N1,71334,Sortie #71334,https://biolit.fr/sorties/sortie-71334/,Guillardeau Francois,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/port-Est-Dunkerque-DSC_8952-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/port-Est-Dunkerque-DSC_8960-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/port-Est-Dunkerque-DSC_8962-scaled.jpeg,2/19/2024 0:00,12.0000000,13.0000000,51.05,2.3667,,Dunkerque port Est,71336,Observation #71336,https://biolit.fr/observations/observation-71336/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/port-Est-Dunkerque-DSC_8952-scaled.jpeg,,,Identifiable +N1,71334,Sortie #71334,https://biolit.fr/sorties/sortie-71334/,Guillardeau Francois,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/port-Est-Dunkerque-DSC_8952-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/port-Est-Dunkerque-DSC_8960-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/port-Est-Dunkerque-DSC_8962-scaled.jpeg,2/19/2024 0:00,12.0000000,13.0000000,51.05,2.3667,,Dunkerque port Est,71338,Observation #71338,https://biolit.fr/observations/observation-71338/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/port-Est-Dunkerque-DSC_8960-scaled.jpeg,,,Ne sais pas +N1,71334,Sortie #71334,https://biolit.fr/sorties/sortie-71334/,Guillardeau Francois,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/port-Est-Dunkerque-DSC_8952-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/port-Est-Dunkerque-DSC_8960-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/port-Est-Dunkerque-DSC_8962-scaled.jpeg,2/19/2024 0:00,12.0000000,13.0000000,51.05,2.3667,,Dunkerque port Est,71340,Observation #71340,https://biolit.fr/observations/observation-71340/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d0a9562e5a5aeada3c0669338cd3f9e9/2024/03/port-Est-Dunkerque-DSC_8962-scaled.jpeg,,,Ne sais pas +N1,71343,Sortie #71343,https://biolit.fr/sorties/sortie-71343/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-05-150815.jpg,2/26/2024 0:00,11.0000000,11.0:15,43.2093380000000,5.37276000000000,,Calanque de Marseilleveyre,71345,Observation #71345,https://biolit.fr/observations/observation-71345/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-05-150815.jpg,,,Identifiable +N1,71348,Sortie #71348,https://biolit.fr/sorties/sortie-71348/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_091853440-rotated.jpg,2/28/2024 0:00,9.0000000,9.0000000,43.2378130000000,5.36148500000000,,Plage de l'Anse des Phocéens,71350,Observation #71350,https://biolit.fr/observations/observation-71350/,Teredo navalis,Taret commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240228_091853440-rotated.jpg,,,Identifiable +N1,71353,Sortie #71353,https://biolit.fr/sorties/sortie-71353/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-05-153820.jpg,03/11/2023,12.0000000,12.0000000,43.3509460000000,4.87934900000000,,Plage Napoléon,71355,Observation #71355,https://biolit.fr/observations/observation-71355/,Acanthocardia echinata,Bucarde rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-05-153820.jpg,,,Ne sais pas +N1,71382,Sortie #71382,https://biolit.fr/sorties/sortie-71382/,Agent007,https://biolit.fr/wp-content/uploads/jet-form-builder/fa48c90e98059886ec47dde64c49cc32/2024/03/IMG_2274-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fa48c90e98059886ec47dde64c49cc32/2024/03/IMG_2278-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fa48c90e98059886ec47dde64c49cc32/2024/03/IMG_2280-scaled.jpeg,03/05/2024,15.0000000,15.0000000,43.7098750000000,7.27195000000000,,Nice Promenade des Anglais,71384,Observation #71384,https://biolit.fr/observations/observation-71384/,Pegea confoederata,Salpe Pégée,,https://biolit.fr/wp-content/uploads/jet-form-builder/fa48c90e98059886ec47dde64c49cc32/2024/03/IMG_2274-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fa48c90e98059886ec47dde64c49cc32/2024/03/IMG_2278-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fa48c90e98059886ec47dde64c49cc32/2024/03/IMG_2280-scaled.jpeg,,TRUE, +N1,71382,Sortie #71382,https://biolit.fr/sorties/sortie-71382/,Agent007,https://biolit.fr/wp-content/uploads/jet-form-builder/fa48c90e98059886ec47dde64c49cc32/2024/03/IMG_2274-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fa48c90e98059886ec47dde64c49cc32/2024/03/IMG_2278-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fa48c90e98059886ec47dde64c49cc32/2024/03/IMG_2280-scaled.jpeg,03/05/2024,15.0000000,15.0000000,43.7098750000000,7.27195000000000,,Nice Promenade des Anglais,71386,Observation #71386,https://biolit.fr/observations/observation-71386/,Pegea confoederata,Salpe Pégée,,https://biolit.fr/wp-content/uploads/jet-form-builder/fa48c90e98059886ec47dde64c49cc32/2024/03/IMG_2274-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fa48c90e98059886ec47dde64c49cc32/2024/03/IMG_2278-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fa48c90e98059886ec47dde64c49cc32/2024/03/IMG_2280-scaled.jpeg,,TRUE,Identifiable +N1,71505,Sortie #71505,https://biolit.fr/sorties/sortie-71505/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240209_132036972-scaled.jpg,02/03/2024,16.0000000,16.0:15,43.2399630000000,5.3624310000000,,Plage de l’Anse du Bain des Dames,,,,,,,,,, +N1,71508,Sortie #71508,https://biolit.fr/sorties/sortie-71508/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240209_132036972-1-scaled.jpg,02/03/2024,16.0000000,16.0:15,43.2398920000000,5.36242300000000,,Plage de l’Anse du Bain des Dames,71510,Observation #71510,https://biolit.fr/observations/observation-71510/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240209_132036972-1-scaled.jpg,,TRUE,Identifiable +N1,71522,Sortie #71522,https://biolit.fr/sorties/sortie-71522/,Decaix Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_143252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_143907-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_144019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_144128-scaled.jpg,03/06/2024,14.0000000,16.0000000,49.5003620000000,0.0886340000000000,,Plage Du Havre,71524,Observation #71524,https://biolit.fr/observations/observation-71524/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_143907-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_144019-scaled.jpg,,,Identifiable +N1,71522,Sortie #71522,https://biolit.fr/sorties/sortie-71522/,Decaix Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_143252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_143907-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_144019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_144128-scaled.jpg,03/06/2024,14.0000000,16.0000000,49.5003620000000,0.0886340000000000,,Plage Du Havre,71526,Observation #71526,https://biolit.fr/observations/observation-71526/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_143907-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_144128-scaled.jpg,,,Ne sais pas +N1,71530,Sortie #71530,https://biolit.fr/sorties/sortie-71530/,Decaix Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_144019-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_144128-1-scaled.jpg,02/06/2024,14.0000000,16.0000000,49.5000090000000,0.0889780000000000,,Plage du Havre,71532,Observation #71532,https://biolit.fr/observations/observation-71532/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_144019-1-scaled.jpg,,,Ne sais pas +N1,71530,Sortie #71530,https://biolit.fr/sorties/sortie-71530/,Decaix Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_144019-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_144128-1-scaled.jpg,02/06/2024,14.0000000,16.0000000,49.5000090000000,0.0889780000000000,,Plage du Havre,71534,Observation #71534,https://biolit.fr/observations/observation-71534/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_144128-1-scaled.jpg,,,Ne sais pas +N1,71537,Sortie #71537,https://biolit.fr/sorties/sortie-71537/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0006.jpg,2/28/2024 0:00,9.0000000,11.0000000,43.2369100000000,5.36043800000000,Planète Mer,Plage de l'abri-côtier,,,,,,,,,, +N1,71540,Sortie #71540,https://biolit.fr/sorties/sortie-71540/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0006-1.jpg,2/28/2024 0:00,9.0000000,11.0000000,43.2369100000000,5.36043800000000,Planète Mer,Plage de l'abri-côtier,71542,Observation #71542,https://biolit.fr/observations/observation-71542/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/03/IMG-20240228-WA0006-1.jpg,,TRUE,Identifiable +N1,71545,Sortie #71545,https://biolit.fr/sorties/sortie-71545/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Gibbula-umbilicaris.jpg,02/03/2024,12.0000000,12.0:15,43.2398990000000,5.36242900000000,,Plage de l’Anse du Bain des Dames,71547,Observation #71547,https://biolit.fr/observations/observation-71547/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Gibbula-umbilicaris.jpg,,,Ne sais pas +N1,71552,Sortie #71552,https://biolit.fr/sorties/sortie-71552/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/03/20240307_174807-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/03/20240307_174751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/03/20240307_174728-scaled.jpg,03/07/2024,17.0000000,17.0000000,43.0068610000000,9.38911600000000,Observe la nature,Tollare,,,,,,,,,, +N1,71556,Sortie #71556,https://biolit.fr/sorties/sortie-71556/,Decaix Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_1428311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_1429201-scaled.jpg,03/07/2024,14.0000000,16.0000000,49.4999190000000,0.088863000000000,,Plage du Havre,71558,Observation #71558,https://biolit.fr/observations/observation-71558/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_1428311-scaled.jpg,,,Ne sais pas +N1,71556,Sortie #71556,https://biolit.fr/sorties/sortie-71556/,Decaix Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_1428311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_1429201-scaled.jpg,03/07/2024,14.0000000,16.0000000,49.4999190000000,0.088863000000000,,Plage du Havre,71560,Observation #71560,https://biolit.fr/observations/observation-71560/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a14119faf27afd2e92bd9403d4805046/2024/03/20240306_1429201-scaled.jpg,,,Ne sais pas +N1,71581,Sortie #71581,https://biolit.fr/sorties/sortie-71581/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/03/20240307_180151-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/03/20240307_174807-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/03/20240307_174751-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/03/20240307_174728-1-scaled.jpg,03/07/2024,17.0000000,17.0:15,43.0065590000000,9.38936200000000,Observe la nature,Tollare cap corse,71583,Observation #71583,https://biolit.fr/observations/observation-71583/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/03/20240307_174807-1-scaled.jpg,,TRUE,Identifiable +N1,71595,Sortie #71595,https://biolit.fr/sorties/sortie-71595/,ROY ZOE,https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0245-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0240-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0233-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0237-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0238-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0229-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0228-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0222-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0220-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0219-scaled.jpeg,03/08/2024,14.0000000,15.0000000,48.6281610000000,-2.01582000000000,Planète Mer (antenne Dinard),plage des Fours à Chaux côté Roches aux mouettes,71597,Observation #71597,https://biolit.fr/observations/observation-71597/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0245-scaled.jpeg,,TRUE,Identifiable +N1,71595,Sortie #71595,https://biolit.fr/sorties/sortie-71595/,ROY ZOE,https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0245-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0240-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0233-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0237-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0238-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0229-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0228-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0222-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0220-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0219-scaled.jpeg,03/08/2024,14.0000000,15.0000000,48.6281610000000,-2.01582000000000,Planète Mer (antenne Dinard),plage des Fours à Chaux côté Roches aux mouettes,71599,Observation #71599,https://biolit.fr/observations/observation-71599/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0233-scaled.jpeg,,TRUE,Identifiable +N1,71595,Sortie #71595,https://biolit.fr/sorties/sortie-71595/,ROY ZOE,https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0245-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0240-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0233-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0237-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0238-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0229-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0228-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0222-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0220-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0219-scaled.jpeg,03/08/2024,14.0000000,15.0000000,48.6281610000000,-2.01582000000000,Planète Mer (antenne Dinard),plage des Fours à Chaux côté Roches aux mouettes,71601,Observation #71601,https://biolit.fr/observations/observation-71601/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0237-scaled.jpeg,,,Identifiable +N1,71595,Sortie #71595,https://biolit.fr/sorties/sortie-71595/,ROY ZOE,https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0245-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0240-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0233-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0237-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0238-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0229-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0228-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0222-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0220-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0219-scaled.jpeg,03/08/2024,14.0000000,15.0000000,48.6281610000000,-2.01582000000000,Planète Mer (antenne Dinard),plage des Fours à Chaux côté Roches aux mouettes,71603,Observation #71603,https://biolit.fr/observations/observation-71603/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0237-scaled.jpeg,,TRUE,Identifiable +N1,71595,Sortie #71595,https://biolit.fr/sorties/sortie-71595/,ROY ZOE,https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0245-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0240-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0233-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0237-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0238-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0229-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0228-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0222-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0220-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0219-scaled.jpeg,03/08/2024,14.0000000,15.0000000,48.6281610000000,-2.01582000000000,Planète Mer (antenne Dinard),plage des Fours à Chaux côté Roches aux mouettes,71605,Observation #71605,https://biolit.fr/observations/observation-71605/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0238-scaled.jpeg,,,Ne sais pas +N1,71595,Sortie #71595,https://biolit.fr/sorties/sortie-71595/,ROY ZOE,https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0245-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0240-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0233-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0237-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0238-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0229-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0228-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0222-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0220-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0219-scaled.jpeg,03/08/2024,14.0000000,15.0000000,48.6281610000000,-2.01582000000000,Planète Mer (antenne Dinard),plage des Fours à Chaux côté Roches aux mouettes,71607,Observation #71607,https://biolit.fr/observations/observation-71607/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0228-scaled.jpeg,,TRUE,Identifiable +N1,71595,Sortie #71595,https://biolit.fr/sorties/sortie-71595/,ROY ZOE,https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0245-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0240-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0233-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0237-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0238-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0229-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0228-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0222-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0220-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0219-scaled.jpeg,03/08/2024,14.0000000,15.0000000,48.6281610000000,-2.01582000000000,Planète Mer (antenne Dinard),plage des Fours à Chaux côté Roches aux mouettes,71609,Observation #71609,https://biolit.fr/observations/observation-71609/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a77061e03012eac75ff879a518d1bea4/2024/03/IMG_0220-scaled.jpeg,,TRUE,Identifiable +N1,71612,Sortie #71612,https://biolit.fr/sorties/sortie-71612/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-09-000349.jpg,1/21/2024 0:00,16.0000000,17.0000000,43.2593570000000,5.37523400000000,,Plage de l'Huveaune,71614,Observation #71614,https://biolit.fr/observations/observation-71614/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-09-000349.jpg,,,Identifiable +N1,71618,Sortie #71618,https://biolit.fr/sorties/sortie-71618/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Cardites-antiquatus.jpg,5/21/2023 0:00,11.0000000,11.0000000,43.0461580000000,6.15022300000000,,Plage de la Bergerie,71620,Observation #71620,https://biolit.fr/observations/observation-71620/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Cardites-antiquatus.jpg,,,Ne sais pas +N1,71624,Sortie #71624,https://biolit.fr/sorties/sortie-71624/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.25-1.jpeg,1/28/2024 0:00,15.0000000,17.0000000,42.5501800000000,9.53146300000000,La Girelle,Lido de la Marana,,,,,,,,,, +N1,71631,Sortie #71631,https://biolit.fr/sorties/sortie-71631/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.25-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.06.54-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.06.35-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.36-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.44-1.jpeg,1/28/2024 0:00,15.0000000,17.0000000,42.5501800000000,9.53146300000000,La Girelle,Lido de la Marana,71633,Observation #71633,https://biolit.fr/observations/observation-71633/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.25-1-1.jpeg,,,Identifiable +N1,71631,Sortie #71631,https://biolit.fr/sorties/sortie-71631/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.25-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.06.54-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.06.35-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.36-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.44-1.jpeg,1/28/2024 0:00,15.0000000,17.0000000,42.5501800000000,9.53146300000000,La Girelle,Lido de la Marana,71635,Observation #71635,https://biolit.fr/observations/observation-71635/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.06.54-1.jpeg,,,Identifiable +N1,71631,Sortie #71631,https://biolit.fr/sorties/sortie-71631/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.25-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.06.54-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.06.35-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.36-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.44-1.jpeg,1/28/2024 0:00,15.0000000,17.0000000,42.5501800000000,9.53146300000000,La Girelle,Lido de la Marana,71637,Observation #71637,https://biolit.fr/observations/observation-71637/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.06.35-1.jpeg,,,Identifiable +N1,71631,Sortie #71631,https://biolit.fr/sorties/sortie-71631/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.25-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.06.54-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.06.35-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.36-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.44-1.jpeg,1/28/2024 0:00,15.0000000,17.0000000,42.5501800000000,9.53146300000000,La Girelle,Lido de la Marana,71639,Observation #71639,https://biolit.fr/observations/observation-71639/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.36-1.jpeg,,,Identifiable +N1,71631,Sortie #71631,https://biolit.fr/sorties/sortie-71631/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.25-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.06.54-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.06.35-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.36-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.44-1.jpeg,1/28/2024 0:00,15.0000000,17.0000000,42.5501800000000,9.53146300000000,La Girelle,Lido de la Marana,71641,Observation #71641,https://biolit.fr/observations/observation-71641/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/03/WhatsApp-Image-2024-01-28-at-20.07.44-1.jpeg,,,Identifiable +N1,71644,Sortie #71644,https://biolit.fr/sorties/sortie-71644/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-153607.jpg,02/04/2024,11.0:45,12.0000000,43.2379870000000,5.36172700000000,,Plage de l'Anse des Phocéens,71646,Observation #71646,https://biolit.fr/observations/observation-71646/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-153607.jpg,,,Identifiable +N1,71649,Sortie #71649,https://biolit.fr/sorties/sortie-71649/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-08-235359.jpg,02/03/2024,16.0000000,17.0000000,43.2398740000000,5.36244500000000,,Plage de l’Anse du Bain des Dames,71651,Observation #71651,https://biolit.fr/observations/observation-71651/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-08-235359.jpg,,,Identifiable +N1,71660,Sortie #71660,https://biolit.fr/sorties/sortie-71660/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160227.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160730.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160903.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150439166_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150501736_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150605636_HDR-scaled.jpg,08/08/2023,16.0000000,16.0000000,45.8060120000000,-1.2361090000000,,Plage de Maumusson,71662,Observation #71662,https://biolit.fr/observations/observation-71662/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160227.jpg,,TRUE,Identifiable +N1,71660,Sortie #71660,https://biolit.fr/sorties/sortie-71660/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160227.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160730.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160903.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150439166_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150501736_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150605636_HDR-scaled.jpg,08/08/2023,16.0000000,16.0000000,45.8060120000000,-1.2361090000000,,Plage de Maumusson,71664,Observation #71664,https://biolit.fr/observations/observation-71664/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160500.jpg,,,Identifiable +N1,71660,Sortie #71660,https://biolit.fr/sorties/sortie-71660/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160227.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160730.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160903.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150439166_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150501736_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150605636_HDR-scaled.jpg,08/08/2023,16.0000000,16.0000000,45.8060120000000,-1.2361090000000,,Plage de Maumusson,71666,Observation #71666,https://biolit.fr/observations/observation-71666/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160730.jpg,,TRUE,Identifiable +N1,71660,Sortie #71660,https://biolit.fr/sorties/sortie-71660/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160227.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160730.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160903.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150439166_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150501736_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150605636_HDR-scaled.jpg,08/08/2023,16.0000000,16.0000000,45.8060120000000,-1.2361090000000,,Plage de Maumusson,71668,Observation #71668,https://biolit.fr/observations/observation-71668/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150501736_HDR.jpg,,TRUE,Identifiable +N1,71660,Sortie #71660,https://biolit.fr/sorties/sortie-71660/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160227.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160730.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160903.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150439166_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150501736_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150605636_HDR-scaled.jpg,08/08/2023,16.0000000,16.0000000,45.8060120000000,-1.2361090000000,,Plage de Maumusson,71670,Observation #71670,https://biolit.fr/observations/observation-71670/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150605636_HDR-scaled.jpg,,,Identifiable +N1,71660,Sortie #71660,https://biolit.fr/sorties/sortie-71660/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160227.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160730.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160903.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150439166_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150501736_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150605636_HDR-scaled.jpg,08/08/2023,16.0000000,16.0000000,45.8060120000000,-1.2361090000000,,Plage de Maumusson,71672,Observation #71672,https://biolit.fr/observations/observation-71672/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150439166_HDR-scaled.jpg,,,Identifiable +N1,71660,Sortie #71660,https://biolit.fr/sorties/sortie-71660/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160227.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160730.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160903.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150439166_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150501736_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_150605636_HDR-scaled.jpg,08/08/2023,16.0000000,16.0000000,45.8060120000000,-1.2361090000000,,Plage de Maumusson,71674,Observation #71674,https://biolit.fr/observations/observation-71674/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-10-160903.jpg,,TRUE,Identifiable +N1,71691,Sortie #71691,https://biolit.fr/sorties/sortie-71691/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_3.jpg,03/10/2024,14.0:15,15.0000000,48.6236280000000,-2.19971200000000,,La Nellière - Iles de Ebihens,71693,Observation #71693,https://biolit.fr/observations/observation-71693/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_2.jpg,,TRUE,Identifiable +N1,71691,Sortie #71691,https://biolit.fr/sorties/sortie-71691/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_3.jpg,03/10/2024,14.0:15,15.0000000,48.6236280000000,-2.19971200000000,,La Nellière - Iles de Ebihens,71695,Observation #71695,https://biolit.fr/observations/observation-71695/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_3.jpg,,TRUE,Identifiable +N1,71691,Sortie #71691,https://biolit.fr/sorties/sortie-71691/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_3.jpg,03/10/2024,14.0:15,15.0000000,48.6236280000000,-2.19971200000000,,La Nellière - Iles de Ebihens,71697,Observation #71697,https://biolit.fr/observations/observation-71697/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_4.jpg,,TRUE,Identifiable +N1,71691,Sortie #71691,https://biolit.fr/sorties/sortie-71691/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_3.jpg,03/10/2024,14.0:15,15.0000000,48.6236280000000,-2.19971200000000,,La Nellière - Iles de Ebihens,71699,Observation #71699,https://biolit.fr/observations/observation-71699/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_5.jpg,,TRUE,Identifiable +N1,71691,Sortie #71691,https://biolit.fr/sorties/sortie-71691/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_3.jpg,03/10/2024,14.0:15,15.0000000,48.6236280000000,-2.19971200000000,,La Nellière - Iles de Ebihens,71701,Observation #71701,https://biolit.fr/observations/observation-71701/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_3.jpg,,TRUE,Identifiable +N1,71691,Sortie #71691,https://biolit.fr/sorties/sortie-71691/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_3.jpg,03/10/2024,14.0:15,15.0000000,48.6236280000000,-2.19971200000000,,La Nellière - Iles de Ebihens,71703,Observation #71703,https://biolit.fr/observations/observation-71703/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_3.jpg,,TRUE,Identifiable +N1,71691,Sortie #71691,https://biolit.fr/sorties/sortie-71691/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_3.jpg,03/10/2024,14.0:15,15.0000000,48.6236280000000,-2.19971200000000,,La Nellière - Iles de Ebihens,71705,Observation #71705,https://biolit.fr/observations/observation-71705/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_2.jpg,,TRUE,Identifiable +N1,71691,Sortie #71691,https://biolit.fr/sorties/sortie-71691/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q1_20240310_6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q2_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q3_20240310_3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_3.jpg,03/10/2024,14.0:15,15.0000000,48.6236280000000,-2.19971200000000,,La Nellière - Iles de Ebihens,71707,Observation #71707,https://biolit.fr/observations/observation-71707/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2024/03/Q4_20240310_3.jpg,,,Ne sais pas +N1,71922,Sortie #71922,https://biolit.fr/sorties/sortie-71922/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-140729.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-141115.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-141518.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240309_151733452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240309_152626033_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_132935285_HD_2.jpg,03/09/2024,15.0000000,15.0000000,43.2566360000000,5.37535600000000,,Plage de Borély,71928,Observation #71928,https://biolit.fr/observations/observation-71928/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240309_151733452_HDR-scaled.jpg,,TRUE,Identifiable +N1,71922,Sortie #71922,https://biolit.fr/sorties/sortie-71922/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-140729.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-141115.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-141518.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240309_151733452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240309_152626033_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_132935285_HD_2.jpg,03/09/2024,15.0000000,15.0000000,43.2566360000000,5.37535600000000,,Plage de Borély,71930,Observation #71930,https://biolit.fr/observations/observation-71930/,Teredo navalis,Taret commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240309_152626033_HDR.jpg,,,Identifiable +N1,71939,Sortie #71939,https://biolit.fr/sorties/sortie-71939/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-140729-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-141115-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-141518-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240309_151733452_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240309_152626033_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_132935285_HD_2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_135343652-scaled.jpg,03/09/2024,15.0000000,15.0000000,43.2562330000000,5.37520300000000,,Plage de Borély,71941,Observation #71941,https://biolit.fr/observations/observation-71941/,Tridentata perpusilla,Sertulaire minuscule,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-140729-1.jpg,,,Identifiable +N1,71939,Sortie #71939,https://biolit.fr/sorties/sortie-71939/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-140729-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-141115-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-141518-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240309_151733452_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240309_152626033_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_132935285_HD_2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_135343652-scaled.jpg,03/09/2024,15.0000000,15.0000000,43.2562330000000,5.37520300000000,,Plage de Borély,71943,Observation #71943,https://biolit.fr/observations/observation-71943/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-141115-1.jpg,,,Identifiable +N1,71939,Sortie #71939,https://biolit.fr/sorties/sortie-71939/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-140729-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-141115-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-141518-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240309_151733452_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240309_152626033_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_132935285_HD_2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_135343652-scaled.jpg,03/09/2024,15.0000000,15.0000000,43.2562330000000,5.37520300000000,,Plage de Borély,71945,Observation #71945,https://biolit.fr/observations/observation-71945/,Corallina officinalis/caespitosa,Coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-141518-1.jpg,,,Ne sais pas +N1,71939,Sortie #71939,https://biolit.fr/sorties/sortie-71939/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-140729-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-141115-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-141518-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240309_151733452_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240309_152626033_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_132935285_HD_2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_135343652-scaled.jpg,03/09/2024,15.0000000,15.0000000,43.2562330000000,5.37520300000000,,Plage de Borély,71951,Observation #71951,https://biolit.fr/observations/observation-71951/,Flabellia petiolata,Udotée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_132935285_HD_2-1.jpg,,TRUE,Ne sais pas +N1,71939,Sortie #71939,https://biolit.fr/sorties/sortie-71939/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-140729-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-141115-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-141518-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240309_151733452_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240309_152626033_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_132935285_HD_2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_135343652-scaled.jpg,03/09/2024,15.0000000,15.0000000,43.2562330000000,5.37520300000000,,Plage de Borély,71953,Observation #71953,https://biolit.fr/observations/observation-71953/,Jania rubens,Janie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_135343652-scaled.jpg,,,Ne sais pas +N1,71978,Sortie #71978,https://biolit.fr/sorties/sortie-71978/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-235509.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581250000000,5.37575400000000,,Plage de l'Huveaune,,,,,,,,,, +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72002,Observation #72002,https://biolit.fr/observations/observation-72002/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg,,,Identifiable +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72004,Observation #72004,https://biolit.fr/observations/observation-72004/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg,,,Identifiable +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72006,Observation #72006,https://biolit.fr/observations/observation-72006/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg,,,Identifiable +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72008,Observation #72008,https://biolit.fr/observations/observation-72008/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg,,,Identifiable +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72010,Observation #72010,https://biolit.fr/observations/observation-72010/,Flexopecten hyalinus,Pétoncle hyalin,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg,,,Identifiable +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72012,Observation #72012,https://biolit.fr/observations/observation-72012/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg,,,Identifiable +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72014,Observation #72014,https://biolit.fr/observations/observation-72014/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg,,,Identifiable +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72016,Observation #72016,https://biolit.fr/observations/observation-72016/,Tritia nitida,Nasse brillante,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg,,,Identifiable +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72018,Observation #72018,https://biolit.fr/observations/observation-72018/,Tritia mutabilis,Noisette de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg,,,Ne sais pas +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72020,Observation #72020,https://biolit.fr/observations/observation-72020/,Loripes orbiculatus,Loripes orbiculaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg,,,Ne sais pas +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72022,Observation #72022,https://biolit.fr/observations/observation-72022/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg,,,Ne sais pas +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72024,Observation #72024,https://biolit.fr/observations/observation-72024/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg,,,Ne sais pas +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72026,Observation #72026,https://biolit.fr/observations/observation-72026/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg,,,Ne sais pas +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72028,Observation #72028,https://biolit.fr/observations/observation-72028/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg,,TRUE,Ne sais pas +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72030,Observation #72030,https://biolit.fr/observations/observation-72030/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg,,,Ne sais pas +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72032,Observation #72032,https://biolit.fr/observations/observation-72032/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg,,,Ne sais pas +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72034,Observation #72034,https://biolit.fr/observations/observation-72034/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg,,TRUE,Ne sais pas +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72036,Observation #72036,https://biolit.fr/observations/observation-72036/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg,,,Ne sais pas +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72038,Observation #72038,https://biolit.fr/observations/observation-72038/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg,,,Ne sais pas +N1,72000,Sortie #72000,https://biolit.fr/sorties/sortie-72000/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-221823-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-222703-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223246-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223452-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-223636-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224033-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224221-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-224752-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225242-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225528-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-225732-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-230344-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-075845.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140413253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_140954567_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,03/09/2024,15.0000000,16.0000000,43.2581770000000,5.37576000000000,,Plage de l'Huveaune,72040,Observation #72040,https://biolit.fr/observations/observation-72040/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_141440747_HDR-1-rotated.jpg,,,Ne sais pas +N1,72208,Sortie #72208,https://biolit.fr/sorties/sortie-72208/,Tacchino Clémentine,https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Observation-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Oeuf-de-raie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Velelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Arche-barbu-scaled.jpg,03/12/2024,10.0000000,12.0000000,43.2263130000000,5.3489690000000,,Plage de la Maronaise,72210,Observation #72210,https://biolit.fr/observations/observation-72210/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Velelle-scaled.jpg,,TRUE,Identifiable +N1,72208,Sortie #72208,https://biolit.fr/sorties/sortie-72208/,Tacchino Clémentine,https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Observation-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Oeuf-de-raie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Velelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Arche-barbu-scaled.jpg,03/12/2024,10.0000000,12.0000000,43.2263130000000,5.3489690000000,,Plage de la Maronaise,72212,Observation #72212,https://biolit.fr/observations/observation-72212/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Observation-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Oeuf-de-raie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Velelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Arche-barbu-scaled.jpg,,,Identifiable +N1,72208,Sortie #72208,https://biolit.fr/sorties/sortie-72208/,Tacchino Clémentine,https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Observation-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Oeuf-de-raie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Velelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Arche-barbu-scaled.jpg,03/12/2024,10.0000000,12.0000000,43.2263130000000,5.3489690000000,,Plage de la Maronaise,72214,Observation #72214,https://biolit.fr/observations/observation-72214/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Eponge-scaled.jpg,,TRUE,Identifiable +N1,72208,Sortie #72208,https://biolit.fr/sorties/sortie-72208/,Tacchino Clémentine,https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Observation-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Oeuf-de-raie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Velelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Arche-barbu-scaled.jpg,03/12/2024,10.0000000,12.0000000,43.2263130000000,5.3489690000000,,Plage de la Maronaise,72216,Observation #72216,https://biolit.fr/observations/observation-72216/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Patelle-1-scaled.jpg,,,Identifiable +N1,72208,Sortie #72208,https://biolit.fr/sorties/sortie-72208/,Tacchino Clémentine,https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Observation-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Oeuf-de-raie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Velelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Arche-barbu-scaled.jpg,03/12/2024,10.0000000,12.0000000,43.2263130000000,5.3489690000000,,Plage de la Maronaise,72218,Observation #72218,https://biolit.fr/observations/observation-72218/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Patelle-2-scaled.jpg,,,Identifiable +N1,72208,Sortie #72208,https://biolit.fr/sorties/sortie-72208/,Tacchino Clémentine,https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Observation-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Oeuf-de-raie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Velelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Arche-barbu-scaled.jpg,03/12/2024,10.0000000,12.0000000,43.2263130000000,5.3489690000000,,Plage de la Maronaise,72220,Observation #72220,https://biolit.fr/observations/observation-72220/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7ec23bc7214f5ae17b46c25c8ad04aef/2024/03/Arche-barbu-scaled.jpg,,,Identifiable +N1,72223,Sortie #72223,https://biolit.fr/sorties/sortie-72223/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-235509-1.jpg,08/09/2023,10.0000000,10.0000000,45.8206960000000,-1.20895200000000,,Digue Pacaud,72225,Observation #72225,https://biolit.fr/observations/observation-72225/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-11-235509-1.jpg,,TRUE,Identifiable +N1,72228,Sortie #72228,https://biolit.fr/sorties/sortie-72228/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-233124.jpg,10/01/2022,10.0000000,11.0000000,43.2397140000000,5.36238000000000,,Plage de l’Anse du Bain des Dames,,,,,,,,,, +N1,72233,Sortie #72233,https://biolit.fr/sorties/sortie-72233/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_144614509.jpg,03/09/2024,15.0:15,15.0000000,43.2579530000000,5.37579100000000,,Plage de l'Huveaune,72235,Observation #72235,https://biolit.fr/observations/observation-72235/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240310_144614509.jpg,,,Identifiable +N1,72238,Sortie #72238,https://biolit.fr/sorties/sortie-72238/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-233124-1.jpg,03/11/2023,12.0000000,12.0000000,43.3793200000000,4.91383600000000,,,72240,Observation #72240,https://biolit.fr/observations/observation-72240/,Tritia neritea,Cyclope néritoïde,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-12-233124-1.jpg,,,Identifiable +N1,72251,Sortie #72251,https://biolit.fr/sorties/sortie-72251/,Club subaquatique Narbonnais,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011327-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011338.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011348.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011349-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011352-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011355-scaled.jpg,03/10/2024,11.0000000,12.0000000,43.1681360000000,3.1796250000000,Club Subaquatique Narbonnais CSN/FSGT,Plage de Narbonne-plage,72253,Observation #72253,https://biolit.fr/observations/observation-72253/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011326-scaled.jpg,,TRUE,Identifiable +N1,72251,Sortie #72251,https://biolit.fr/sorties/sortie-72251/,Club subaquatique Narbonnais,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011327-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011338.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011348.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011349-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011352-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011355-scaled.jpg,03/10/2024,11.0000000,12.0000000,43.1681360000000,3.1796250000000,Club Subaquatique Narbonnais CSN/FSGT,Plage de Narbonne-plage,72255,Observation #72255,https://biolit.fr/observations/observation-72255/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011327-scaled.jpg,,,Identifiable +N1,72251,Sortie #72251,https://biolit.fr/sorties/sortie-72251/,Club subaquatique Narbonnais,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011327-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011338.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011348.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011349-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011352-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011355-scaled.jpg,03/10/2024,11.0000000,12.0000000,43.1681360000000,3.1796250000000,Club Subaquatique Narbonnais CSN/FSGT,Plage de Narbonne-plage,72260,Observation #72260,https://biolit.fr/observations/observation-72260/,Conger conger,Congre,,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011334-scaled.jpg,,TRUE,Identifiable +N1,72251,Sortie #72251,https://biolit.fr/sorties/sortie-72251/,Club subaquatique Narbonnais,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011327-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011338.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011348.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011349-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011352-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011355-scaled.jpg,03/10/2024,11.0000000,12.0000000,43.1681360000000,3.1796250000000,Club Subaquatique Narbonnais CSN/FSGT,Plage de Narbonne-plage,72262,Observation #72262,https://biolit.fr/observations/observation-72262/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011338.jpg,,TRUE,Identifiable +N1,72251,Sortie #72251,https://biolit.fr/sorties/sortie-72251/,Club subaquatique Narbonnais,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011327-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011338.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011348.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011349-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011352-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011355-scaled.jpg,03/10/2024,11.0000000,12.0000000,43.1681360000000,3.1796250000000,Club Subaquatique Narbonnais CSN/FSGT,Plage de Narbonne-plage,72264,Observation #72264,https://biolit.fr/observations/observation-72264/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011348.jpg,,,Identifiable +N1,72251,Sortie #72251,https://biolit.fr/sorties/sortie-72251/,Club subaquatique Narbonnais,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011327-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011338.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011348.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011349-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011352-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011355-scaled.jpg,03/10/2024,11.0000000,12.0000000,43.1681360000000,3.1796250000000,Club Subaquatique Narbonnais CSN/FSGT,Plage de Narbonne-plage,72266,Observation #72266,https://biolit.fr/observations/observation-72266/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011350-scaled.jpg,,TRUE,Identifiable +N1,72251,Sortie #72251,https://biolit.fr/sorties/sortie-72251/,Club subaquatique Narbonnais,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011327-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011338.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011348.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011349-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011352-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011355-scaled.jpg,03/10/2024,11.0000000,12.0000000,43.1681360000000,3.1796250000000,Club Subaquatique Narbonnais CSN/FSGT,Plage de Narbonne-plage,72268,Observation #72268,https://biolit.fr/observations/observation-72268/,Raja asterias,Raie étoilée,,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011352-scaled.jpg,,,Identifiable +N1,72251,Sortie #72251,https://biolit.fr/sorties/sortie-72251/,Club subaquatique Narbonnais,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011327-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011338.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011348.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011349-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011352-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011355-scaled.jpg,03/10/2024,11.0000000,12.0000000,43.1681360000000,3.1796250000000,Club Subaquatique Narbonnais CSN/FSGT,Plage de Narbonne-plage,72270,Observation #72270,https://biolit.fr/observations/observation-72270/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011355-scaled.jpg,,TRUE,Identifiable +N1,72251,Sortie #72251,https://biolit.fr/sorties/sortie-72251/,Club subaquatique Narbonnais,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011327-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011338.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011348.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011349-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011352-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011355-scaled.jpg,03/10/2024,11.0000000,12.0000000,43.1681360000000,3.1796250000000,Club Subaquatique Narbonnais CSN/FSGT,Plage de Narbonne-plage,72272,Observation #72272,https://biolit.fr/observations/observation-72272/,Corystes cassivelaunus,Crabe masqué,,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/03/P1011349-scaled.jpg,,,Identifiable +N1,72278,Sortie #72278,https://biolit.fr/sorties/sortie-72278/,Favre Christine,https://biolit.fr/wp-content/uploads/jet-form-builder/37c306a7c29f612385383b64aa7eb529/2024/03/IMG_20240313_160419-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/37c306a7c29f612385383b64aa7eb529/2024/03/IMG_20240313_160411-scaled.jpg,3/13/2024 0:00,15.0000000,15.0000000,48.6370310,-2.0170240,,Saint Malo plage du Mole,72280,Observation #72280,https://biolit.fr/observations/observation-72280/,Loligo spp.,Ponte de Calmar,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/37c306a7c29f612385383b64aa7eb529/2024/03/IMG_20240313_160419-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/37c306a7c29f612385383b64aa7eb529/2024/03/IMG_20240313_160411-scaled.jpg,,TRUE,Ne sais pas +N1,72278,Sortie #72278,https://biolit.fr/sorties/sortie-72278/,Favre Christine,https://biolit.fr/wp-content/uploads/jet-form-builder/37c306a7c29f612385383b64aa7eb529/2024/03/IMG_20240313_160419-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/37c306a7c29f612385383b64aa7eb529/2024/03/IMG_20240313_160411-scaled.jpg,3/13/2024 0:00,15.0000000,15.0000000,48.6370310,-2.0170240,,Saint Malo plage du Mole,72282,Observation #72282,https://biolit.fr/observations/observation-72282/,Loligo spp.,Ponte de Calmar,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/37c306a7c29f612385383b64aa7eb529/2024/03/IMG_20240313_160419-scaled.jpg,,TRUE,Ne sais pas +N1,72318,Sortie #72318,https://biolit.fr/sorties/sortie-72318/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-15-140031.jpg,02/03/2024,12.0000000,12.0000000,43.2398300000000,5.36243600000000,,Plage de l’Anse du Bain des Dames,72320,Observation #72320,https://biolit.fr/observations/observation-72320/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-15-140031.jpg,,,Ne sais pas +N1,72324,Sortie #72324,https://biolit.fr/sorties/sortie-72324/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-15-140925.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-15-141403.jpg,1/28/2024 0:00,12.0000000,12.0000000,43.2398580000000,5.36245800000000,,Plage de l’Anse du Bain des Dames,72326,Observation #72326,https://biolit.fr/observations/observation-72326/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-15-140925.jpg,,,Ne sais pas +N1,72324,Sortie #72324,https://biolit.fr/sorties/sortie-72324/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-15-140925.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-15-141403.jpg,1/28/2024 0:00,12.0000000,12.0000000,43.2398580000000,5.36245800000000,,Plage de l’Anse du Bain des Dames,76678,Observation #76678,https://biolit.fr/observations/observation-76678/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-15-141403.jpg,,,Ne sais pas +N1,72416,Sortie #72416,https://biolit.fr/sorties/sortie-72416/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-135820.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140110.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140301.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140553.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141227.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141528.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141748.jpg,3/17/2024 0:00,11.0000000,11.0000000,43.2553080000000,5.3745300000000,,Plage de Borély,72418,Observation #72418,https://biolit.fr/observations/observation-72418/,Corbicula fluminea,Corbicule asiatique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-135820.jpg,,,Identifiable +N1,72416,Sortie #72416,https://biolit.fr/sorties/sortie-72416/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-135820.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140110.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140301.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140553.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141227.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141528.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141748.jpg,3/17/2024 0:00,11.0000000,11.0000000,43.2553080000000,5.3745300000000,,Plage de Borély,72420,Observation #72420,https://biolit.fr/observations/observation-72420/,Loripes orbiculatus,Loripes orbiculaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140110.jpg,,,Identifiable +N1,72416,Sortie #72416,https://biolit.fr/sorties/sortie-72416/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-135820.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140110.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140301.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140553.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141227.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141528.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141748.jpg,3/17/2024 0:00,11.0000000,11.0000000,43.2553080000000,5.3745300000000,,Plage de Borély,72422,Observation #72422,https://biolit.fr/observations/observation-72422/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140301.jpg,,TRUE,Identifiable +N1,72416,Sortie #72416,https://biolit.fr/sorties/sortie-72416/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-135820.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140110.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140301.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140553.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141227.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141528.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141748.jpg,3/17/2024 0:00,11.0000000,11.0000000,43.2553080000000,5.3745300000000,,Plage de Borély,72424,Observation #72424,https://biolit.fr/observations/observation-72424/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140553.jpg,,,Identifiable +N1,72416,Sortie #72416,https://biolit.fr/sorties/sortie-72416/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-135820.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140110.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140301.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140553.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141227.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141528.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141748.jpg,3/17/2024 0:00,11.0000000,11.0000000,43.2553080000000,5.3745300000000,,Plage de Borély,72426,Observation #72426,https://biolit.fr/observations/observation-72426/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140919.jpg,,,Ne sais pas +N1,72416,Sortie #72416,https://biolit.fr/sorties/sortie-72416/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-135820.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140110.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140301.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140553.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141227.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141528.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141748.jpg,3/17/2024 0:00,11.0000000,11.0000000,43.2553080000000,5.3745300000000,,Plage de Borély,72430,Observation #72430,https://biolit.fr/observations/observation-72430/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141528.jpg,,,Ne sais pas +N1,72416,Sortie #72416,https://biolit.fr/sorties/sortie-72416/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-135820.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140110.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140301.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140553.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-140919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141227.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141528.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141748.jpg,3/17/2024 0:00,11.0000000,11.0000000,43.2553080000000,5.3745300000000,,Plage de Borély,72432,Observation #72432,https://biolit.fr/observations/observation-72432/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-141748.jpg,,,Identifiable +N1,72442,Sortie #72442,https://biolit.fr/sorties/sortie-72442/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-233315.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-234638.jpg,3/17/2024 0:00,11.0000000,11.0000000,43.2552950000000,5.37445600000000,,Plage de Borély,72444,Observation #72444,https://biolit.fr/observations/observation-72444/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-233315.jpg,,,Identifiable +N1,72449,Sortie #72449,https://biolit.fr/sorties/sortie-72449/,llido lou,https://biolit.fr/wp-content/uploads/jet-form-builder/eeee67b87f2b41055aedaed89953c2db/2024/03/logo_cpie.png,3/19/2024 0:00,14.0000000,15.0000000,43.4507310000000,3.80912800000000,Planète Mer,les aresquiers,,,,,,,,,, +N1,72455,Sortie #72455,https://biolit.fr/sorties/sortie-72455/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-19-161730.jpg,3/17/2024 0:00,11.0000000,11.0000000,43.2553000000000,5.3745480000000,,Plage de Borély,72457,Observation #72457,https://biolit.fr/observations/observation-72457/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-19-161730.jpg,,,Ne sais pas +N1,72475,Sortie #72475,https://biolit.fr/sorties/sortie-72475/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-213946.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-214336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-215150.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-221613.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_141935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_104759321_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_105000905_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_140635102.jpg,3/17/2024 0:00,10.0000000,10.0000000,43.252379000000,5.3723740000000,,Plage de la Vielle Chapelle,72477,Observation #72477,https://biolit.fr/observations/observation-72477/,Tridentata perpusilla,Sertulaire minuscule,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-213946.jpg,,,Identifiable +N1,72475,Sortie #72475,https://biolit.fr/sorties/sortie-72475/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-213946.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-214336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-215150.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-221613.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_141935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_104759321_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_105000905_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_140635102.jpg,3/17/2024 0:00,10.0000000,10.0000000,43.252379000000,5.3723740000000,,Plage de la Vielle Chapelle,72479,Observation #72479,https://biolit.fr/observations/observation-72479/,Dictyota dichotoma,Dictyote,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-214336.jpg,,,Identifiable +N1,72475,Sortie #72475,https://biolit.fr/sorties/sortie-72475/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-213946.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-214336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-215150.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-221613.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_141935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_104759321_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_105000905_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_140635102.jpg,3/17/2024 0:00,10.0000000,10.0000000,43.252379000000,5.3723740000000,,Plage de la Vielle Chapelle,72481,Observation #72481,https://biolit.fr/observations/observation-72481/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-215150.jpg,,TRUE,Identifiable +N1,72475,Sortie #72475,https://biolit.fr/sorties/sortie-72475/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-213946.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-214336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-215150.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-221613.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_141935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_104759321_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_105000905_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_140635102.jpg,3/17/2024 0:00,10.0000000,10.0000000,43.252379000000,5.3723740000000,,Plage de la Vielle Chapelle,72483,Observation #72483,https://biolit.fr/observations/observation-72483/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220234.jpg,,,Ne sais pas +N1,72475,Sortie #72475,https://biolit.fr/sorties/sortie-72475/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-213946.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-214336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-215150.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-221613.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_141935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_104759321_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_105000905_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_140635102.jpg,3/17/2024 0:00,10.0000000,10.0000000,43.252379000000,5.3723740000000,,Plage de la Vielle Chapelle,72485,Observation #72485,https://biolit.fr/observations/observation-72485/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220736-scaled.jpg,,,Ne sais pas +N1,72475,Sortie #72475,https://biolit.fr/sorties/sortie-72475/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-213946.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-214336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-215150.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-221613.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_141935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_104759321_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_105000905_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_140635102.jpg,3/17/2024 0:00,10.0000000,10.0000000,43.252379000000,5.3723740000000,,Plage de la Vielle Chapelle,72487,Observation #72487,https://biolit.fr/observations/observation-72487/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-221613.jpg,,,Ne sais pas +N1,72475,Sortie #72475,https://biolit.fr/sorties/sortie-72475/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-213946.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-214336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-215150.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-221613.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_141935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_104759321_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_105000905_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_140635102.jpg,3/17/2024 0:00,10.0000000,10.0000000,43.252379000000,5.3723740000000,,Plage de la Vielle Chapelle,72489,Observation #72489,https://biolit.fr/observations/observation-72489/,Ceramium virgatum,Céramium rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_141935-scaled.jpg,,,Ne sais pas +N1,72475,Sortie #72475,https://biolit.fr/sorties/sortie-72475/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-213946.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-214336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-215150.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-221613.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_141935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_104759321_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_105000905_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_140635102.jpg,3/17/2024 0:00,10.0000000,10.0000000,43.252379000000,5.3723740000000,,Plage de la Vielle Chapelle,72491,Observation #72491,https://biolit.fr/observations/observation-72491/,Jania rubens,Janie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_104759321_HDR.jpg,,,Ne sais pas +N1,72475,Sortie #72475,https://biolit.fr/sorties/sortie-72475/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-213946.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-214336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-215150.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-221613.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_141935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_104759321_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_105000905_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_140635102.jpg,3/17/2024 0:00,10.0000000,10.0000000,43.252379000000,5.3723740000000,,Plage de la Vielle Chapelle,72493,Observation #72493,https://biolit.fr/observations/observation-72493/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_105000905_.jpg,,,Ne sais pas +N1,72475,Sortie #72475,https://biolit.fr/sorties/sortie-72475/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-213946.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-214336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-215150.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-220736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-20-221613.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_141935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_104759321_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_105000905_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_140635102.jpg,3/17/2024 0:00,10.0000000,10.0000000,43.252379000000,5.3723740000000,,Plage de la Vielle Chapelle,72495,Observation #72495,https://biolit.fr/observations/observation-72495/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240317_140635102.jpg,,,Ne sais pas +N1,72522,Sortie #72522,https://biolit.fr/sorties/sortie-72522/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20231225_111545860_HDR-scaled.jpg,12/26/2023 0:00,11.0000000,11.0000000,43.2102370000000,5.42024000000000,,Plage de la calanque de Sormiou,72524,Observation #72524,https://biolit.fr/observations/observation-72524/,Carpobrotus acinaciformis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20231225_111545860_HDR-scaled.jpg,,,Identifiable +N1,72600,Sortie #72600,https://biolit.fr/sorties/sortie-72600/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222145.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223349.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182432.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182724.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-231803.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232333.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20230618_080754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_082918589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083721573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083759948.jpg,5/20/2023 0:00,10.0000000,15.0000000,43.0433720000000,6.15064100000000,,Plage de la Bergerie,72602,Observation #72602,https://biolit.fr/observations/observation-72602/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222145.jpg,,,Identifiable +N1,72600,Sortie #72600,https://biolit.fr/sorties/sortie-72600/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222145.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223349.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182432.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182724.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-231803.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232333.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20230618_080754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_082918589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083721573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083759948.jpg,5/20/2023 0:00,10.0000000,15.0000000,43.0433720000000,6.15064100000000,,Plage de la Bergerie,72604,Observation #72604,https://biolit.fr/observations/observation-72604/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222409.jpg,,,Identifiable +N1,72600,Sortie #72600,https://biolit.fr/sorties/sortie-72600/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222145.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223349.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182432.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182724.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-231803.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232333.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20230618_080754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_082918589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083721573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083759948.jpg,5/20/2023 0:00,10.0000000,15.0000000,43.0433720000000,6.15064100000000,,Plage de la Bergerie,72606,Observation #72606,https://biolit.fr/observations/observation-72606/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223043.jpg,,,Ne sais pas +N1,72600,Sortie #72600,https://biolit.fr/sorties/sortie-72600/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222145.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223349.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182432.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182724.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-231803.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232333.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20230618_080754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_082918589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083721573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083759948.jpg,5/20/2023 0:00,10.0000000,15.0000000,43.0433720000000,6.15064100000000,,Plage de la Bergerie,72608,Observation #72608,https://biolit.fr/observations/observation-72608/,Polititapes aureus,Palourde jaune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223349.jpg,,,Identifiable +N1,72600,Sortie #72600,https://biolit.fr/sorties/sortie-72600/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222145.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223349.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182432.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182724.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-231803.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232333.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20230618_080754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_082918589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083721573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083759948.jpg,5/20/2023 0:00,10.0000000,15.0000000,43.0433720000000,6.15064100000000,,Plage de la Bergerie,72610,Observation #72610,https://biolit.fr/observations/observation-72610/,Corbicula fluminea,Corbicule asiatique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182432.jpg,,,Identifiable +N1,72600,Sortie #72600,https://biolit.fr/sorties/sortie-72600/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222145.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223349.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182432.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182724.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-231803.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232333.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20230618_080754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_082918589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083721573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083759948.jpg,5/20/2023 0:00,10.0000000,15.0000000,43.0433720000000,6.15064100000000,,Plage de la Bergerie,72612,Observation #72612,https://biolit.fr/observations/observation-72612/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182724.jpg,,,Identifiable +N1,72600,Sortie #72600,https://biolit.fr/sorties/sortie-72600/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222145.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223349.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182432.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182724.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-231803.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232333.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20230618_080754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_082918589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083721573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083759948.jpg,5/20/2023 0:00,10.0000000,15.0000000,43.0433720000000,6.15064100000000,,Plage de la Bergerie,72614,Observation #72614,https://biolit.fr/observations/observation-72614/,Laevicardium crassum,Bucarde de Norvège,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-231803.jpg,,,Ne sais pas +N1,72600,Sortie #72600,https://biolit.fr/sorties/sortie-72600/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222145.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223349.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182432.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182724.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-231803.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232333.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20230618_080754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_082918589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083721573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083759948.jpg,5/20/2023 0:00,10.0000000,15.0000000,43.0433720000000,6.15064100000000,,Plage de la Bergerie,72616,Observation #72616,https://biolit.fr/observations/observation-72616/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232035-scaled.jpg,,,Identifiable +N1,72600,Sortie #72600,https://biolit.fr/sorties/sortie-72600/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222145.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223349.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182432.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182724.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-231803.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232333.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20230618_080754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_082918589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083721573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083759948.jpg,5/20/2023 0:00,10.0000000,15.0000000,43.0433720000000,6.15064100000000,,Plage de la Bergerie,72618,Observation #72618,https://biolit.fr/observations/observation-72618/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232333.jpg,,,Ne sais pas +N1,72600,Sortie #72600,https://biolit.fr/sorties/sortie-72600/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222145.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223349.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182432.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182724.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-231803.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232333.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20230618_080754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_082918589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083721573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083759948.jpg,5/20/2023 0:00,10.0000000,15.0000000,43.0433720000000,6.15064100000000,,Plage de la Bergerie,72620,Observation #72620,https://biolit.fr/observations/observation-72620/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232735.jpg,,,Ne sais pas +N1,72600,Sortie #72600,https://biolit.fr/sorties/sortie-72600/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222145.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223349.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182432.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182724.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-231803.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232333.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20230618_080754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_082918589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083721573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083759948.jpg,5/20/2023 0:00,10.0000000,15.0000000,43.0433720000000,6.15064100000000,,Plage de la Bergerie,72622,Observation #72622,https://biolit.fr/observations/observation-72622/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20230618_080754-scaled.jpg,,,Ne sais pas +N1,72600,Sortie #72600,https://biolit.fr/sorties/sortie-72600/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222145.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223349.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182432.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182724.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-231803.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232333.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20230618_080754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_082918589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083721573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083759948.jpg,5/20/2023 0:00,10.0000000,15.0000000,43.0433720000000,6.15064100000000,,Plage de la Bergerie,72624,Observation #72624,https://biolit.fr/observations/observation-72624/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_082918589-scaled.jpg,,,Identifiable +N1,72600,Sortie #72600,https://biolit.fr/sorties/sortie-72600/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222145.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223349.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182432.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182724.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-231803.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232333.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20230618_080754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_082918589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083721573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083759948.jpg,5/20/2023 0:00,10.0000000,15.0000000,43.0433720000000,6.15064100000000,,Plage de la Bergerie,72626,Observation #72626,https://biolit.fr/observations/observation-72626/,Ensis minor,Petit couteau-silique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083721573-scaled.jpg,,,Identifiable +N1,72600,Sortie #72600,https://biolit.fr/sorties/sortie-72600/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222145.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-222409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-223349.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182432.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-26-182724.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-231803.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232333.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-27-232735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20230618_080754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_082918589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083721573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083759948.jpg,5/20/2023 0:00,10.0000000,15.0000000,43.0433720000000,6.15064100000000,,Plage de la Bergerie,72628,Observation #72628,https://biolit.fr/observations/observation-72628/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240322_083759948.jpg,,,Identifiable +N1,72646,Sortie #72646,https://biolit.fr/sorties/sortie-72646/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-15-135734.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-132220.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-132222.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-131929.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-131948.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-132234.jpg,10/02/2022,10.0000000,11.0000000,43.2398650000000,5.36244700000000,,Plage de l’Anse du Bain des Dames,72648,Observation #72648,https://biolit.fr/observations/observation-72648/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-15-135734.jpg,,,Ne sais pas +N1,72646,Sortie #72646,https://biolit.fr/sorties/sortie-72646/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-15-135734.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-132220.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-132222.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-131929.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-131948.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-132234.jpg,10/02/2022,10.0000000,11.0000000,43.2398650000000,5.36244700000000,,Plage de l’Anse du Bain des Dames,72650,Observation #72650,https://biolit.fr/observations/observation-72650/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-132220.jpg,,,Ne sais pas +N1,72646,Sortie #72646,https://biolit.fr/sorties/sortie-72646/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-15-135734.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-132220.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-132222.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-131929.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-131948.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-132234.jpg,10/02/2022,10.0000000,11.0000000,43.2398650000000,5.36244700000000,,Plage de l’Anse du Bain des Dames,72652,Observation #72652,https://biolit.fr/observations/observation-72652/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-132222.jpg,,,Ne sais pas +N1,72646,Sortie #72646,https://biolit.fr/sorties/sortie-72646/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-15-135734.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-132220.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-132222.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-131929.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-131948.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-132234.jpg,10/02/2022,10.0000000,11.0000000,43.2398650000000,5.36244700000000,,Plage de l’Anse du Bain des Dames,72654,Observation #72654,https://biolit.fr/observations/observation-72654/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-131929.jpg,,,Ne sais pas +N1,72646,Sortie #72646,https://biolit.fr/sorties/sortie-72646/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-15-135734.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-132220.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-132222.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-131929.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-131948.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-132234.jpg,10/02/2022,10.0000000,11.0000000,43.2398650000000,5.36244700000000,,Plage de l’Anse du Bain des Dames,72656,Observation #72656,https://biolit.fr/observations/observation-72656/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-131948.jpg,,,Identifiable +N1,72646,Sortie #72646,https://biolit.fr/sorties/sortie-72646/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-15-135734.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-18-132220.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-25-132222.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-131929.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-131948.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-132234.jpg,10/02/2022,10.0000000,11.0000000,43.2398650000000,5.36244700000000,,Plage de l’Anse du Bain des Dames,72658,Observation #72658,https://biolit.fr/observations/observation-72658/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-132234.jpg,,,Ne sais pas +N1,72661,Sortie #72661,https://biolit.fr/sorties/sortie-72661/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG-20240324-WA0000-rotated.jpg,3/24/2024 0:00,10.0000000,11.0000000,43.2398660000000,5.36243300000000,,Plage de l’Anse du Bain des Dames,72663,Observation #72663,https://biolit.fr/observations/observation-72663/,Dictyota fasciola,Dictyote rubanée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG-20240324-WA0000-rotated.jpg,,,Identifiable +N1,72694,Sortie #72694,https://biolit.fr/sorties/sortie-72694/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-231341.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-231900.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_141948002.jpg,3/24/2024 0:00,10.0000000,11.0000000,43.2398070000000,5.36243900000000,,Plage de l’Anse du Bain des Dames,72696,Observation #72696,https://biolit.fr/observations/observation-72696/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-231341.jpg,,,Ne sais pas +N1,72694,Sortie #72694,https://biolit.fr/sorties/sortie-72694/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-231341.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-231900.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_141948002.jpg,3/24/2024 0:00,10.0000000,11.0000000,43.2398070000000,5.36243900000000,,Plage de l’Anse du Bain des Dames,72698,Observation #72698,https://biolit.fr/observations/observation-72698/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-231900.jpg,,,Ne sais pas +N1,72694,Sortie #72694,https://biolit.fr/sorties/sortie-72694/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-231341.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-28-231900.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_141948002.jpg,3/24/2024 0:00,10.0000000,11.0000000,43.2398070000000,5.36243900000000,,Plage de l’Anse du Bain des Dames,72700,Observation #72700,https://biolit.fr/observations/observation-72700/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_141948002.jpg,,,Ne sais pas +N1,72727,Sortie #72727,https://biolit.fr/sorties/sortie-72727/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234726.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235036.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235329.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235701.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235923.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_110609116.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_112820191.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113758489_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113827519-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_114128795_HDR.jpg,3/24/2024 0:00,11.0000000,11.0000000,43.23988000000,5.36243400000000,,Plage de l’Anse du Bain des Dames,72729,Observation #72729,https://biolit.fr/observations/observation-72729/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234513.jpg,,,Ne sais pas +N1,72727,Sortie #72727,https://biolit.fr/sorties/sortie-72727/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234726.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235036.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235329.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235701.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235923.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_110609116.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_112820191.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113758489_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113827519-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_114128795_HDR.jpg,3/24/2024 0:00,11.0000000,11.0000000,43.23988000000,5.36243400000000,,Plage de l’Anse du Bain des Dames,72731,Observation #72731,https://biolit.fr/observations/observation-72731/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234726.jpg,,,Ne sais pas +N1,72727,Sortie #72727,https://biolit.fr/sorties/sortie-72727/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234726.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235036.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235329.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235701.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235923.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_110609116.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_112820191.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113758489_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113827519-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_114128795_HDR.jpg,3/24/2024 0:00,11.0000000,11.0000000,43.23988000000,5.36243400000000,,Plage de l’Anse du Bain des Dames,72733,Observation #72733,https://biolit.fr/observations/observation-72733/,Striarca lactea,Striarca laiteuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235036.jpg,,,Identifiable +N1,72727,Sortie #72727,https://biolit.fr/sorties/sortie-72727/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234726.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235036.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235329.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235701.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235923.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_110609116.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_112820191.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113758489_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113827519-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_114128795_HDR.jpg,3/24/2024 0:00,11.0000000,11.0000000,43.23988000000,5.36243400000000,,Plage de l’Anse du Bain des Dames,72735,Observation #72735,https://biolit.fr/observations/observation-72735/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235329.jpg,,,Ne sais pas +N1,72727,Sortie #72727,https://biolit.fr/sorties/sortie-72727/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234726.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235036.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235329.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235701.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235923.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_110609116.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_112820191.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113758489_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113827519-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_114128795_HDR.jpg,3/24/2024 0:00,11.0000000,11.0000000,43.23988000000,5.36243400000000,,Plage de l’Anse du Bain des Dames,72737,Observation #72737,https://biolit.fr/observations/observation-72737/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235701.jpg,,,Ne sais pas +N1,72727,Sortie #72727,https://biolit.fr/sorties/sortie-72727/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234726.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235036.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235329.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235701.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235923.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_110609116.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_112820191.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113758489_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113827519-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_114128795_HDR.jpg,3/24/2024 0:00,11.0000000,11.0000000,43.23988000000,5.36243400000000,,Plage de l’Anse du Bain des Dames,72743,Observation #72743,https://biolit.fr/observations/observation-72743/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000409.jpg,,,Identifiable +N1,72727,Sortie #72727,https://biolit.fr/sorties/sortie-72727/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234726.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235036.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235329.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235701.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235923.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_110609116.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_112820191.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113758489_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113827519-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_114128795_HDR.jpg,3/24/2024 0:00,11.0000000,11.0000000,43.23988000000,5.36243400000000,,Plage de l’Anse du Bain des Dames,72745,Observation #72745,https://biolit.fr/observations/observation-72745/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_110609116.jpg,,TRUE,Identifiable +N1,72727,Sortie #72727,https://biolit.fr/sorties/sortie-72727/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234726.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235036.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235329.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235701.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235923.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_110609116.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_112820191.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113758489_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113827519-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_114128795_HDR.jpg,3/24/2024 0:00,11.0000000,11.0000000,43.23988000000,5.36243400000000,,Plage de l’Anse du Bain des Dames,72747,Observation #72747,https://biolit.fr/observations/observation-72747/,Cardita calyculata,Cardite petit calice,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_112820191.jpg,,,Identifiable +N1,72727,Sortie #72727,https://biolit.fr/sorties/sortie-72727/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234726.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235036.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235329.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235701.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235923.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_110609116.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_112820191.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113758489_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113827519-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_114128795_HDR.jpg,3/24/2024 0:00,11.0000000,11.0000000,43.23988000000,5.36243400000000,,Plage de l’Anse du Bain des Dames,72749,Observation #72749,https://biolit.fr/observations/observation-72749/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113758489_HDR.jpg,,,Identifiable +N1,72727,Sortie #72727,https://biolit.fr/sorties/sortie-72727/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234726.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235036.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235329.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235701.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235923.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_110609116.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_112820191.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113758489_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113827519-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_114128795_HDR.jpg,3/24/2024 0:00,11.0000000,11.0000000,43.23988000000,5.36243400000000,,Plage de l’Anse du Bain des Dames,72751,Observation #72751,https://biolit.fr/observations/observation-72751/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113827519-rotated.jpg,,TRUE,Identifiable +N1,72727,Sortie #72727,https://biolit.fr/sorties/sortie-72727/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234726.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235036.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235329.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235701.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235923.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_110609116.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_112820191.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113758489_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113827519-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_114128795_HDR.jpg,3/24/2024 0:00,11.0000000,11.0000000,43.23988000000,5.36243400000000,,Plage de l’Anse du Bain des Dames,72753,Observation #72753,https://biolit.fr/observations/observation-72753/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_114128795_HDR.jpg,,,Identifiable +N1,72727,Sortie #72727,https://biolit.fr/sorties/sortie-72727/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234726.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235036.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235329.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235701.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235923.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_110609116.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_112820191.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113758489_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113827519-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_114128795_HDR.jpg,3/24/2024 0:00,11.0000000,11.0000000,43.23988000000,5.36243400000000,,Plage de l’Anse du Bain des Dames,81785,Observation #81785,https://biolit.fr/observations/observation-81785/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235923.jpg,,,Ne sais pas +N1,72727,Sortie #72727,https://biolit.fr/sorties/sortie-72727/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-234726.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235036.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235329.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235701.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-29-235923.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000409.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240324_110609116.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_112820191.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113758489_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_113827519-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/IMG_20240329_114128795_HDR.jpg,3/24/2024 0:00,11.0000000,11.0000000,43.23988000000,5.36243400000000,,Plage de l’Anse du Bain des Dames,81787,Observation #81787,https://biolit.fr/observations/observation-81787/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/03/Capture-decran-2024-03-30-000127.jpg,,,Ne sais pas +N1,72766,Sortie #72766,https://biolit.fr/sorties/sortie-72766/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230837.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-231217.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120321728_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120341896_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121107123_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121441733-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121709763.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121830603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123039999-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123202765-scaled.jpg,04/01/2024,12.0000000,13.0000000,43.2116270000000,5.45566200000000,,Plage de Sugiton EST,72768,Observation #72768,https://biolit.fr/observations/observation-72768/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230234.jpg,,,Identifiable +N1,72766,Sortie #72766,https://biolit.fr/sorties/sortie-72766/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230837.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-231217.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120321728_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120341896_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121107123_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121441733-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121709763.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121830603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123039999-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123202765-scaled.jpg,04/01/2024,12.0000000,13.0000000,43.2116270000000,5.45566200000000,,Plage de Sugiton EST,72770,Observation #72770,https://biolit.fr/observations/observation-72770/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230837.jpg,,,Identifiable +N1,72766,Sortie #72766,https://biolit.fr/sorties/sortie-72766/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230837.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-231217.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120321728_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120341896_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121107123_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121441733-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121709763.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121830603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123039999-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123202765-scaled.jpg,04/01/2024,12.0000000,13.0000000,43.2116270000000,5.45566200000000,,Plage de Sugiton EST,72772,Observation #72772,https://biolit.fr/observations/observation-72772/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-231217.jpg,,TRUE,Ne sais pas +N1,72766,Sortie #72766,https://biolit.fr/sorties/sortie-72766/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230837.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-231217.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120321728_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120341896_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121107123_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121441733-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121709763.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121830603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123039999-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123202765-scaled.jpg,04/01/2024,12.0000000,13.0000000,43.2116270000000,5.45566200000000,,Plage de Sugiton EST,72774,Observation #72774,https://biolit.fr/observations/observation-72774/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120321728_HDR-scaled.jpg,,TRUE,Identifiable +N1,72766,Sortie #72766,https://biolit.fr/sorties/sortie-72766/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230837.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-231217.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120321728_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120341896_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121107123_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121441733-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121709763.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121830603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123039999-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123202765-scaled.jpg,04/01/2024,12.0000000,13.0000000,43.2116270000000,5.45566200000000,,Plage de Sugiton EST,72776,Observation #72776,https://biolit.fr/observations/observation-72776/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120341896_HDR-scaled.jpg,,,Identifiable +N1,72766,Sortie #72766,https://biolit.fr/sorties/sortie-72766/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230837.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-231217.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120321728_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120341896_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121107123_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121441733-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121709763.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121830603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123039999-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123202765-scaled.jpg,04/01/2024,12.0000000,13.0000000,43.2116270000000,5.45566200000000,,Plage de Sugiton EST,72778,Observation #72778,https://biolit.fr/observations/observation-72778/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121107123_HDR-scaled.jpg,,,Ne sais pas +N1,72766,Sortie #72766,https://biolit.fr/sorties/sortie-72766/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230837.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-231217.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120321728_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120341896_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121107123_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121441733-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121709763.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121830603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123039999-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123202765-scaled.jpg,04/01/2024,12.0000000,13.0000000,43.2116270000000,5.45566200000000,,Plage de Sugiton EST,72780,Observation #72780,https://biolit.fr/observations/observation-72780/,Jania rubens,Janie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121441733-rotated.jpg,,,Ne sais pas +N1,72766,Sortie #72766,https://biolit.fr/sorties/sortie-72766/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230837.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-231217.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120321728_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120341896_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121107123_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121441733-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121709763.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121830603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123039999-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123202765-scaled.jpg,04/01/2024,12.0000000,13.0000000,43.2116270000000,5.45566200000000,,Plage de Sugiton EST,72782,Observation #72782,https://biolit.fr/observations/observation-72782/,Dictyota dichotoma,Dictyote,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121709763.jpg,,,Identifiable +N1,72766,Sortie #72766,https://biolit.fr/sorties/sortie-72766/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230837.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-231217.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120321728_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120341896_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121107123_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121441733-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121709763.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121830603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123039999-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123202765-scaled.jpg,04/01/2024,12.0000000,13.0000000,43.2116270000000,5.45566200000000,,Plage de Sugiton EST,72784,Observation #72784,https://biolit.fr/observations/observation-72784/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121830603-rotated.jpg,,,Ne sais pas +N1,72766,Sortie #72766,https://biolit.fr/sorties/sortie-72766/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230837.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-231217.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120321728_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120341896_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121107123_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121441733-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121709763.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121830603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123039999-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123202765-scaled.jpg,04/01/2024,12.0000000,13.0000000,43.2116270000000,5.45566200000000,,Plage de Sugiton EST,72786,Observation #72786,https://biolit.fr/observations/observation-72786/,Dictyota fasciola,Dictyote rubanée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123039999-rotated.jpg,,,Identifiable +N1,72766,Sortie #72766,https://biolit.fr/sorties/sortie-72766/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-230837.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-231217.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120321728_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_120341896_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121107123_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121441733-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121709763.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_121830603-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123039999-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123202765-scaled.jpg,04/01/2024,12.0000000,13.0000000,43.2116270000000,5.45566200000000,,Plage de Sugiton EST,72788,Observation #72788,https://biolit.fr/observations/observation-72788/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240401_123202765-scaled.jpg,,,Identifiable +N1,72791,Sortie #72791,https://biolit.fr/sorties/sortie-72791/,Seb Mahee,https://biolit.fr/wp-content/uploads/jet-form-builder/5a7a420c23e5fe6089a573f647bfeacb/2024/04/IMG_5431-scaled.jpeg,3/19/2024 0:00,15.0:15,16.0000000,43.0388810000000,6.09328200000000,,Plage de l’esquilier,72793,Observation #72793,https://biolit.fr/observations/observation-72793/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5a7a420c23e5fe6089a573f647bfeacb/2024/04/IMG_5431-scaled.jpeg,,TRUE,Identifiable +N1,72815,Sortie #72815,https://biolit.fr/sorties/sortie-72815/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596750000000,5.37462300000000,,Plage de l'Huveaune,,,,,,,,,, +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72838,Observation #72838,https://biolit.fr/observations/observation-72838/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg,,TRUE,Identifiable +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72840,Observation #72840,https://biolit.fr/observations/observation-72840/,Tritia nitida,Nasse brillante,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg,,,Identifiable +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72842,Observation #72842,https://biolit.fr/observations/observation-72842/,Solecurtus strigilatus,Solécurte rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg,,,Identifiable +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72844,Observation #72844,https://biolit.fr/observations/observation-72844/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg,,,Identifiable +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72846,Observation #72846,https://biolit.fr/observations/observation-72846/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg,,,Identifiable +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72848,Observation #72848,https://biolit.fr/observations/observation-72848/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg,,,Identifiable +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72850,Observation #72850,https://biolit.fr/observations/observation-72850/,Tritia mutabilis,Noisette de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg,,,Identifiable +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72852,Observation #72852,https://biolit.fr/observations/observation-72852/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg,,TRUE,Identifiable +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72854,Observation #72854,https://biolit.fr/observations/observation-72854/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg,,,Ne sais pas +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72856,Observation #72856,https://biolit.fr/observations/observation-72856/,Corbicula fluminea,Corbicule asiatique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg,,,Identifiable +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72858,Observation #72858,https://biolit.fr/observations/observation-72858/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg,,,Ne sais pas +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72860,Observation #72860,https://biolit.fr/observations/observation-72860/,Modiolus barbatus,Modiole barbue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg,,,Identifiable +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72862,Observation #72862,https://biolit.fr/observations/observation-72862/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg,,,Ne sais pas +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72864,Observation #72864,https://biolit.fr/observations/observation-72864/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg,,,Ne sais pas +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72866,Observation #72866,https://biolit.fr/observations/observation-72866/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg,,,Ne sais pas +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72868,Observation #72868,https://biolit.fr/observations/observation-72868/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg,,,Ne sais pas +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72870,Observation #72870,https://biolit.fr/observations/observation-72870/,Scrobicularia plana,Scrobiculaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg,,,Ne sais pas +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72872,Observation #72872,https://biolit.fr/observations/observation-72872/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg,,,Ne sais pas +N1,72836,Sortie #72836,https://biolit.fr/sorties/sortie-72836/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-232913-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-233956-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-234429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-01-235359-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-000646-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152229-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-152634-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153937-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-154905-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155256-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155516-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-155725-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160332-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-160959-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-161409-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162116-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2596720000000,5.37466000000000,,Plage de l'Huveaune,72874,Observation #72874,https://biolit.fr/observations/observation-72874/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162519-1.jpg,,,Ne sais pas +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72898,Observation #72898,https://biolit.fr/observations/observation-72898/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg,,TRUE,Identifiable +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72900,Observation #72900,https://biolit.fr/observations/observation-72900/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg,,,Ne sais pas +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72902,Observation #72902,https://biolit.fr/observations/observation-72902/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg,,,Ne sais pas +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72904,Observation #72904,https://biolit.fr/observations/observation-72904/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg,,,Ne sais pas +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72906,Observation #72906,https://biolit.fr/observations/observation-72906/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg,,,Ne sais pas +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72908,Observation #72908,https://biolit.fr/observations/observation-72908/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg,,,Identifiable +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72910,Observation #72910,https://biolit.fr/observations/observation-72910/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg,,,Identifiable +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72912,Observation #72912,https://biolit.fr/observations/observation-72912/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg,,,Ne sais pas +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72914,Observation #72914,https://biolit.fr/observations/observation-72914/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg,,,Ne sais pas +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72918,Observation #72918,https://biolit.fr/observations/observation-72918/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg,,,Identifiable +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72920,Observation #72920,https://biolit.fr/observations/observation-72920/,Polititapes aureus,Palourde jaune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg,,,Identifiable +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72922,Observation #72922,https://biolit.fr/observations/observation-72922/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg,,,Identifiable +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72924,Observation #72924,https://biolit.fr/observations/observation-72924/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg,,,Identifiable +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72926,Observation #72926,https://biolit.fr/observations/observation-72926/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg,,,Identifiable +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72928,Observation #72928,https://biolit.fr/observations/observation-72928/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg,,,Identifiable +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72930,Observation #72930,https://biolit.fr/observations/observation-72930/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg,,,Identifiable +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72932,Observation #72932,https://biolit.fr/observations/observation-72932/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg,,,Identifiable +N1,72896,Sortie #72896,https://biolit.fr/sorties/sortie-72896/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-162818-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163404.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-163632.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164629.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165228.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-165436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-211821.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212132.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-212933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113630543_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_113910677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114156491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114321553_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_114409861-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120336303.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_120943765-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121108551-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,3/30/2024 0:00,15.0000000,16.0000000,43.2597170000000,5.37459100000000,,Plage de l'Huveaune,72934,Observation #72934,https://biolit.fr/observations/observation-72934/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121205078-scaled.jpg,,TRUE,Ne sais pas +N1,72945,Sortie #72945,https://biolit.fr/sorties/sortie-72945/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-03-222020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-03-222252.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3574230000000,5.29081900000000,,Plage de la Batterie,,,,,,,,,, +N1,72949,Sortie #72949,https://biolit.fr/sorties/sortie-72949/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-03-222020-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-03-222252-1.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3574400000000,5.29080100000000,,Plage de la Batterie,72951,Observation #72951,https://biolit.fr/observations/observation-72951/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-03-222020-1.jpg,,,Ne sais pas +N1,72949,Sortie #72949,https://biolit.fr/sorties/sortie-72949/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-03-222020-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-03-222252-1.jpg,2/18/2024 0:00,11.0000000,12.0000000,43.3574400000000,5.29080100000000,,Plage de la Batterie,72953,Observation #72953,https://biolit.fr/observations/observation-72953/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-03-222252-1.jpg,,,Ne sais pas +N1,72956,Sortie #72956,https://biolit.fr/sorties/sortie-72956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-03-221145.jpg,04/01/2024,12.0000000,12.0000000,43.2116480000000,5.45566500000000,,Plage de Sugiton EST,72960,Observation #72960,https://biolit.fr/observations/observation-72960/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-03-221145.jpg,,,Ne sais pas +N1,72964,Sortie #72964,https://biolit.fr/sorties/sortie-72964/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/04/IMG_4579-scaled.jpeg,04/02/2024,5.0000000,7.0000000,43.2524520000000,5.374117000000,Planète Mer,Fausse monnaie,,,,,,,,,, +N1,72967,Sortie #72967,https://biolit.fr/sorties/sortie-72967/,Laliche Flora,https://biolit.fr/wp-content/uploads/jet-form-builder/023c6e8df887f1dc06066cb56e68cd5a/2024/04/IMG20240310170006-scaled.jpg,04/04/2024,8.0:53,9.0:53,43.2567630,5.3835480,Planète Mer,Vallon des auffes,,,,,,,,,, +N1,72974,Sortie #72974,https://biolit.fr/sorties/sortie-72974/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/04/IMG_4577-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/04/IMG_4579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/04/IMG_4581-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/04/IMG_4583-scaled.jpg,04/02/2024,12.0000000,12.0000000,43.247859000000,5.37290400000000,Planète Mer,Vieille Chapelle,72976,Observation #72976,https://biolit.fr/observations/observation-72976/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/04/IMG_4583-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/04/IMG_4581-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/04/IMG_4579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/04/IMG_4577-scaled.jpg,,TRUE,Identifiable +N1,72979,Sortie #72979,https://biolit.fr/sorties/sortie-72979/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/04/P3310079-scaled.jpg,3/31/2024 0:00,14.0000000,14.000005,42.669054,9.446606,La Girelle,"Furiani, Plage Arinella",72981,Observation #72981,https://biolit.fr/observations/observation-72981/,Argonauta argo,Argonaute,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/04/P3310079-scaled.jpg,,TRUE,Identifiable +N1,72984,Sortie #72984,https://biolit.fr/sorties/sortie-72984/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/04/433042213_1366803103993295_8736559649657282870_n-1.jpg,03/07/2024,8.0000000,8.000009,42.9633020000000,9.45153100000000,La Girelle,"Corse, Macinaggio",,,,,,,,,, +N1,72989,Sortie #72989,https://biolit.fr/sorties/sortie-72989/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/04/433042213_1366803103993295_8736559649657282870_n-1-1.jpg,3/27/2024 0:00,8.0000000,8.000003,42.9634600000000,9.45145000000000,La Girelle,"Corse, Macinaggio",72991,Observation #72991,https://biolit.fr/observations/observation-72991/,Argonauta argo,Argonaute,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/04/433042213_1366803103993295_8736559649657282870_n-1-1.jpg,,TRUE,Identifiable +N1,72994,Sortie #72994,https://biolit.fr/sorties/sortie-72994/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/04/434364075_1488177702074014_1575211027591723871_n.jpg,3/31/2024 0:00,0.0000000,0.0000000,42.6527910000000,9.45141800000000,La Girelle,"Corse, Lido de la Marana",72996,Observation #72996,https://biolit.fr/observations/observation-72996/,Argonauta argo,Argonaute,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/04/434364075_1488177702074014_1575211027591723871_n.jpg,,TRUE,Identifiable +N1,73006,Sortie #73006,https://biolit.fr/sorties/sortie-73006/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240404_114053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240404_113506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240404_110957-scaled.jpg,04/04/2024,11.0000000,11.0000000,47.6585810000000,-3.20637700000000,,pontons du port d'Etel,73008,Observation #73008,https://biolit.fr/observations/observation-73008/,Antedon bifida,Comatule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240404_114053-scaled.jpg,,TRUE,Ne sais pas +N1,73006,Sortie #73006,https://biolit.fr/sorties/sortie-73006/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240404_114053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240404_113506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240404_110957-scaled.jpg,04/04/2024,11.0000000,11.0000000,47.6585810000000,-3.20637700000000,,pontons du port d'Etel,73010,Observation #73010,https://biolit.fr/observations/observation-73010/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240404_113506-scaled.jpg,,,Ne sais pas +N1,73006,Sortie #73006,https://biolit.fr/sorties/sortie-73006/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240404_114053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240404_113506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240404_110957-scaled.jpg,04/04/2024,11.0000000,11.0000000,47.6585810000000,-3.20637700000000,,pontons du port d'Etel,73012,Observation #73012,https://biolit.fr/observations/observation-73012/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240404_110957-scaled.jpg,,,Ne sais pas +N1,73022,Sortie #73022,https://biolit.fr/sorties/sortie-73022/,Gasc Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103256-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103248-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_102526-scaled.jpg,04/06/2024,9.0000000,10.0:32,43.5253890,3.9278140,Ailerons,Palavas,73024,Observation #73024,https://biolit.fr/observations/observation-73024/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103330-scaled.jpg,,TRUE,Identifiable +N1,73022,Sortie #73022,https://biolit.fr/sorties/sortie-73022/,Gasc Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103256-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103248-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_102526-scaled.jpg,04/06/2024,9.0000000,10.0:32,43.5253890,3.9278140,Ailerons,Palavas,73026,Observation #73026,https://biolit.fr/observations/observation-73026/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103248-scaled.jpg,,TRUE,Identifiable +N1,73022,Sortie #73022,https://biolit.fr/sorties/sortie-73022/,Gasc Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103256-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103248-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_102526-scaled.jpg,04/06/2024,9.0000000,10.0:32,43.5253890,3.9278140,Ailerons,Palavas,73028,Observation #73028,https://biolit.fr/observations/observation-73028/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_102526-scaled.jpg,,,Ne sais pas +N1,73022,Sortie #73022,https://biolit.fr/sorties/sortie-73022/,Gasc Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103256-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103248-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_102526-scaled.jpg,04/06/2024,9.0000000,10.0:32,43.5253890,3.9278140,Ailerons,Palavas,73030,Observation #73030,https://biolit.fr/observations/observation-73030/,Raja polystigma,Raie tachetée,,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103300-scaled.jpg,,,Identifiable +N1,73022,Sortie #73022,https://biolit.fr/sorties/sortie-73022/,Gasc Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103256-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103248-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_102526-scaled.jpg,04/06/2024,9.0000000,10.0:32,43.5253890,3.9278140,Ailerons,Palavas,73032,Observation #73032,https://biolit.fr/observations/observation-73032/,Eunicella singularis,Gorgone blanche,,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103310-scaled.jpg,,TRUE,Identifiable +N1,73022,Sortie #73022,https://biolit.fr/sorties/sortie-73022/,Gasc Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103256-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103248-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_102526-scaled.jpg,04/06/2024,9.0000000,10.0:32,43.5253890,3.9278140,Ailerons,Palavas,73034,Observation #73034,https://biolit.fr/observations/observation-73034/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/jet-form-builder/609e8bc581b063ed1554a7275d1c3342/2024/04/20240406_103256-scaled.jpg,,TRUE,Identifiable +N1,73039,Sortie #73039,https://biolit.fr/sorties/sortie-73039/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-03-220757.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121357307_HDR.jpg,3/30/2024 0:00,15.0000000,15.0000000,43.259718000000,5.37455700000000,,Plage de l'Huveaune,73041,Observation #73041,https://biolit.fr/observations/observation-73041/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121357307_HDR.jpg,,,Identifiable +N1,73039,Sortie #73039,https://biolit.fr/sorties/sortie-73039/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-03-220757.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121357307_HDR.jpg,3/30/2024 0:00,15.0000000,15.0000000,43.259718000000,5.37455700000000,,Plage de l'Huveaune,73043,Observation #73043,https://biolit.fr/observations/observation-73043/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935-1.jpg,,,Ne sais pas +N1,73039,Sortie #73039,https://biolit.fr/sorties/sortie-73039/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-164935-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-03-220757.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240331_121357307_HDR.jpg,3/30/2024 0:00,15.0000000,15.0000000,43.259718000000,5.37455700000000,,Plage de l'Huveaune,73045,Observation #73045,https://biolit.fr/observations/observation-73045/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-03-220757.jpg,,,Ne sais pas +N1,73048,Sortie #73048,https://biolit.fr/sorties/sortie-73048/,AILERONS,https://biolit.fr/wp-content/uploads/jet-form-builder/104a3ad0debfd3bf7c7f67cd28f4351b/2024/04/VideoCapture_20240407-125045.jpg,04/07/2024,10.0000000,11.0000000,43.5411860000000,3.97105900000000,Ailerons,"Plage des Roquilles, Carnon-Ouest",,,,,,,,,, +N1,73051,Sortie #73051,https://biolit.fr/sorties/sortie-73051/,AILERONS,https://biolit.fr/wp-content/uploads/jet-form-builder/104a3ad0debfd3bf7c7f67cd28f4351b/2024/04/VideoCapture_20240407-125045-1.jpg,04/07/2024,10.0000000,11.0000000,43.5411710000000,3.97143300000000,Ailerons,"Plage des Roquilles, Carnon-Ouest",73053,Observation #73053,https://biolit.fr/observations/observation-73053/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/104a3ad0debfd3bf7c7f67cd28f4351b/2024/04/VideoCapture_20240407-125045-1.jpg,,TRUE,Identifiable +N1,73090,Sortie #73090,https://biolit.fr/sorties/sortie-73090/,Andrieux Pierre,https://biolit.fr/wp-content/uploads/jet-form-builder/58e21038551e40752dd0b6a308772a71/2024/04/347142a9-c681-4e3c-9613-c29484628b9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/58e21038551e40752dd0b6a308772a71/2024/04/91d7a9b6-ddf8-4c01-a634-2a7bf6755b7a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/58e21038551e40752dd0b6a308772a71/2024/04/c82a7b1d-5e54-4c22-aaf6-3b1a3995f58c.jpg,04/07/2024,11.0000000,12.0000000,17.9111200000000,-62.8438830000000,,Anse des Cayes - Saint Barthélémy,73092,Observation #73092,https://biolit.fr/observations/observation-73092/,Sargassum fluitans,Sargasse flottante,,https://biolit.fr/wp-content/uploads/jet-form-builder/58e21038551e40752dd0b6a308772a71/2024/04/c82a7b1d-5e54-4c22-aaf6-3b1a3995f58c.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/58e21038551e40752dd0b6a308772a71/2024/04/91d7a9b6-ddf8-4c01-a634-2a7bf6755b7a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/58e21038551e40752dd0b6a308772a71/2024/04/347142a9-c681-4e3c-9613-c29484628b9d.jpg,,,Identifiable +N1,73104,Sortie #73104,https://biolit.fr/sorties/sortie-73104/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222135.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222539.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222942.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-223622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165134691-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165209514-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170101822_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170304060-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170839337-rotated.jpg,04/06/2024,16.0000000,16.0000000,43.2804100000000,5.35016500000000,,Plage de Maldormé,73106,Observation #73106,https://biolit.fr/observations/observation-73106/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222135.jpg,,,Identifiable +N1,73104,Sortie #73104,https://biolit.fr/sorties/sortie-73104/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222135.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222539.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222942.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-223622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165134691-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165209514-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170101822_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170304060-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170839337-rotated.jpg,04/06/2024,16.0000000,16.0000000,43.2804100000000,5.35016500000000,,Plage de Maldormé,73108,Observation #73108,https://biolit.fr/observations/observation-73108/,Diodora graeca,Fissurelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222414-scaled.jpg,,,Identifiable +N1,73104,Sortie #73104,https://biolit.fr/sorties/sortie-73104/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222135.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222539.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222942.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-223622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165134691-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165209514-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170101822_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170304060-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170839337-rotated.jpg,04/06/2024,16.0000000,16.0000000,43.2804100000000,5.35016500000000,,Plage de Maldormé,73110,Observation #73110,https://biolit.fr/observations/observation-73110/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222539.jpg,,,Identifiable +N1,73104,Sortie #73104,https://biolit.fr/sorties/sortie-73104/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222135.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222539.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222942.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-223622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165134691-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165209514-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170101822_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170304060-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170839337-rotated.jpg,04/06/2024,16.0000000,16.0000000,43.2804100000000,5.35016500000000,,Plage de Maldormé,73112,Observation #73112,https://biolit.fr/observations/observation-73112/,Tritia grana,Nasse-grain,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222942.jpg,,,Identifiable +N1,73104,Sortie #73104,https://biolit.fr/sorties/sortie-73104/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222135.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222539.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222942.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-223622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165134691-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165209514-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170101822_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170304060-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170839337-rotated.jpg,04/06/2024,16.0000000,16.0000000,43.2804100000000,5.35016500000000,,Plage de Maldormé,73114,Observation #73114,https://biolit.fr/observations/observation-73114/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-223622.jpg,,,Ne sais pas +N1,73104,Sortie #73104,https://biolit.fr/sorties/sortie-73104/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222135.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222539.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222942.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-223622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165134691-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165209514-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170101822_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170304060-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170839337-rotated.jpg,04/06/2024,16.0000000,16.0000000,43.2804100000000,5.35016500000000,,Plage de Maldormé,73116,Observation #73116,https://biolit.fr/observations/observation-73116/,Dictyota fasciola,Dictyote rubanée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165134691-scaled.jpg,,,Identifiable +N1,73104,Sortie #73104,https://biolit.fr/sorties/sortie-73104/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222135.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222539.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222942.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-223622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165134691-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165209514-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170101822_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170304060-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170839337-rotated.jpg,04/06/2024,16.0000000,16.0000000,43.2804100000000,5.35016500000000,,Plage de Maldormé,73118,Observation #73118,https://biolit.fr/observations/observation-73118/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165209514-scaled.jpg,,TRUE,Identifiable +N1,73104,Sortie #73104,https://biolit.fr/sorties/sortie-73104/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222135.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222539.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222942.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-223622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165134691-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165209514-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170101822_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170304060-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170839337-rotated.jpg,04/06/2024,16.0000000,16.0000000,43.2804100000000,5.35016500000000,,Plage de Maldormé,73120,Observation #73120,https://biolit.fr/observations/observation-73120/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170101822_HDR.jpg,,,Identifiable +N1,73104,Sortie #73104,https://biolit.fr/sorties/sortie-73104/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222135.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222539.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222942.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-223622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165134691-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165209514-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170101822_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170304060-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170839337-rotated.jpg,04/06/2024,16.0000000,16.0000000,43.2804100000000,5.35016500000000,,Plage de Maldormé,73122,Observation #73122,https://biolit.fr/observations/observation-73122/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170304060-rotated.jpg,,,Identifiable +N1,73104,Sortie #73104,https://biolit.fr/sorties/sortie-73104/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222135.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222539.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-222942.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-223622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165134691-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_165209514-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170101822_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170304060-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170839337-rotated.jpg,04/06/2024,16.0000000,16.0000000,43.2804100000000,5.35016500000000,,Plage de Maldormé,73124,Observation #73124,https://biolit.fr/observations/observation-73124/,Electra posidoniae,Bryozoaire de la posidonie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240406_170839337-rotated.jpg,,,Identifiable +N1,73131,Sortie #73131,https://biolit.fr/sorties/sortie-73131/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225621.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225813.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-230040.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240407_180221273.jpg,04/06/2024,17.0000000,18.0000000,43.2805030000000,5.35292300000000,,Anse de la Fausse Monnaie,73133,Observation #73133,https://biolit.fr/observations/observation-73133/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225250.jpg,,,Ne sais pas +N1,73131,Sortie #73131,https://biolit.fr/sorties/sortie-73131/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225621.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225813.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-230040.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240407_180221273.jpg,04/06/2024,17.0000000,18.0000000,43.2805030000000,5.35292300000000,,Anse de la Fausse Monnaie,73135,Observation #73135,https://biolit.fr/observations/observation-73135/,Tridentata perpusilla,Sertulaire minuscule,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225621.jpg,,,Identifiable +N1,73131,Sortie #73131,https://biolit.fr/sorties/sortie-73131/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225621.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225813.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-230040.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240407_180221273.jpg,04/06/2024,17.0000000,18.0000000,43.2805030000000,5.35292300000000,,Anse de la Fausse Monnaie,73137,Observation #73137,https://biolit.fr/observations/observation-73137/,Tritia corniculum,Tritia corniculum,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225813.jpg,,,Identifiable +N1,73131,Sortie #73131,https://biolit.fr/sorties/sortie-73131/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225621.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225813.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-230040.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240407_180221273.jpg,04/06/2024,17.0000000,18.0000000,43.2805030000000,5.35292300000000,,Anse de la Fausse Monnaie,73139,Observation #73139,https://biolit.fr/observations/observation-73139/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-230040.jpg,,,Identifiable +N1,73131,Sortie #73131,https://biolit.fr/sorties/sortie-73131/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225621.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-225813.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-230040.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240407_180221273.jpg,04/06/2024,17.0000000,18.0000000,43.2805030000000,5.35292300000000,,Anse de la Fausse Monnaie,73141,Observation #73141,https://biolit.fr/observations/observation-73141/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240407_180221273.jpg,,,Identifiable +N1,73151,Sortie #73151,https://biolit.fr/sorties/sortie-73151/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-231814-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-232740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-233737.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234746.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235202.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235519.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235745.jpg,04/07/2024,16.0000000,17.0000000,43.2577930000000,5.37579700000000,,Plage de l'Huveaune,73153,Observation #73153,https://biolit.fr/observations/observation-73153/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-231814-scaled.jpg,,,Identifiable +N1,73151,Sortie #73151,https://biolit.fr/sorties/sortie-73151/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-231814-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-232740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-233737.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234746.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235202.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235519.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235745.jpg,04/07/2024,16.0000000,17.0000000,43.2577930000000,5.37579700000000,,Plage de l'Huveaune,73155,Observation #73155,https://biolit.fr/observations/observation-73155/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-232740.jpg,,,Ne sais pas +N1,73151,Sortie #73151,https://biolit.fr/sorties/sortie-73151/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-231814-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-232740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-233737.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234746.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235202.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235519.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235745.jpg,04/07/2024,16.0000000,17.0000000,43.2577930000000,5.37579700000000,,Plage de l'Huveaune,73157,Observation #73157,https://biolit.fr/observations/observation-73157/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-233737.jpg,,,Ne sais pas +N1,73151,Sortie #73151,https://biolit.fr/sorties/sortie-73151/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-231814-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-232740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-233737.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234746.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235202.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235519.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235745.jpg,04/07/2024,16.0000000,17.0000000,43.2577930000000,5.37579700000000,,Plage de l'Huveaune,73159,Observation #73159,https://biolit.fr/observations/observation-73159/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234428.jpg,,,Identifiable +N1,73151,Sortie #73151,https://biolit.fr/sorties/sortie-73151/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-231814-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-232740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-233737.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234746.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235202.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235519.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235745.jpg,04/07/2024,16.0000000,17.0000000,43.2577930000000,5.37579700000000,,Plage de l'Huveaune,73161,Observation #73161,https://biolit.fr/observations/observation-73161/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234746.jpg,,,Ne sais pas +N1,73151,Sortie #73151,https://biolit.fr/sorties/sortie-73151/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-231814-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-232740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-233737.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234746.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235202.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235519.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235745.jpg,04/07/2024,16.0000000,17.0000000,43.2577930000000,5.37579700000000,,Plage de l'Huveaune,73163,Observation #73163,https://biolit.fr/observations/observation-73163/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235202.jpg,,,Ne sais pas +N1,73151,Sortie #73151,https://biolit.fr/sorties/sortie-73151/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-231814-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-232740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-233737.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234746.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235202.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235519.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235745.jpg,04/07/2024,16.0000000,17.0000000,43.2577930000000,5.37579700000000,,Plage de l'Huveaune,73165,Observation #73165,https://biolit.fr/observations/observation-73165/,Tritia grana,Nasse-grain,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235519.jpg,,,Identifiable +N1,73151,Sortie #73151,https://biolit.fr/sorties/sortie-73151/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-231814-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-232740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-233737.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-234746.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235202.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235519.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235745.jpg,04/07/2024,16.0000000,17.0000000,43.2577930000000,5.37579700000000,,Plage de l'Huveaune,73167,Observation #73167,https://biolit.fr/observations/observation-73167/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-08-235745.jpg,,,Ne sais pas +N1,73172,Sortie #73172,https://biolit.fr/sorties/sortie-73172/,VIAL Thérèse,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20240406_172157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20240406_172309-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20240406_172322-scaled.jpg,04/06/2024,17.0000000,17.0000000,43.2790190000000,5.35334700000000,,Corniche de Marseille,73174,Observation #73174,https://biolit.fr/observations/observation-73174/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20240406_172309-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20240406_172322-scaled.jpg,,,Identifiable +N1,73172,Sortie #73172,https://biolit.fr/sorties/sortie-73172/,VIAL Thérèse,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20240406_172157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20240406_172309-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20240406_172322-scaled.jpg,04/06/2024,17.0000000,17.0000000,43.2790190000000,5.35334700000000,,Corniche de Marseille,73176,Observation #73176,https://biolit.fr/observations/observation-73176/,Malva arborea,Lavatère arborescente,,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20240406_172157-scaled.jpg,,,Ne sais pas +N1,73205,Sortie #73205,https://biolit.fr/sorties/sortie-73205/,Club subaquatique Narbonnais,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/04/velelle1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/04/velelleplage.jpg,04/08/2024,15.0000000,15.0:15,43.16802000000,3.1798230000000,Club Subaquatique Narbonnais CSN/FSGT,Plage de Narbonne-plage,73207,Observation #73207,https://biolit.fr/observations/observation-73207/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/04/velelle1.jpg,,TRUE,Identifiable +N1,73205,Sortie #73205,https://biolit.fr/sorties/sortie-73205/,Club subaquatique Narbonnais,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/04/velelle1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/04/velelleplage.jpg,04/08/2024,15.0000000,15.0:15,43.16802000000,3.1798230000000,Club Subaquatique Narbonnais CSN/FSGT,Plage de Narbonne-plage,73209,Observation #73209,https://biolit.fr/observations/observation-73209/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/15e6a9f4170226e380ef7ed4a32fe698/2024/04/velelleplage.jpg,,TRUE,Identifiable +N1,73293,Sortie #73293,https://biolit.fr/sorties/sortie-73293/,VIAL Thérèse,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20210514_133124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20210514_133213-scaled.jpg,5/14/2023 0:00,13.0000000,14.0000000,43.3490980000000,4.87295900000000,,Plage Napoléon,73295,Observation #73295,https://biolit.fr/observations/observation-73295/,Salicornia spp.,Salicorne,,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20210514_133124-scaled.jpg,,,Ne sais pas +N1,73293,Sortie #73293,https://biolit.fr/sorties/sortie-73293/,VIAL Thérèse,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20210514_133124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20210514_133213-scaled.jpg,5/14/2023 0:00,13.0000000,14.0000000,43.3490980000000,4.87295900000000,,Plage Napoléon,73297,Observation #73297,https://biolit.fr/observations/observation-73297/,Halimione portulacoides,Obione faux-pourpier,,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20210514_133213-scaled.jpg,,,Ne sais pas +N1,73301,Sortie #73301,https://biolit.fr/sorties/sortie-73301/,VIAL Thérèse,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230410_140448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230410_140949-scaled.jpg,04/10/2023,14.0000000,14.0000000,43.2795490000000,5.32528500000000,,Ile d'If,73303,Observation #73303,https://biolit.fr/observations/observation-73303/,Pallenis maritima,Astérolide maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230410_140448-scaled.jpg,,,Identifiable +N1,73301,Sortie #73301,https://biolit.fr/sorties/sortie-73301/,VIAL Thérèse,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230410_140448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230410_140949-scaled.jpg,04/10/2023,14.0000000,14.0000000,43.2795490000000,5.32528500000000,,Ile d'If,73305,Observation #73305,https://biolit.fr/observations/observation-73305/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230410_140949-scaled.jpg,,,Ne sais pas +N1,73309,Sortie #73309,https://biolit.fr/sorties/sortie-73309/,VIAL Thérèse,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230528_103228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230528_111324-scaled.jpg,5/24/2023 0:00,10.0000000,11.0000000,43.0338110000000,6.16941500000000,,Cap de l'Esterel,73311,Observation #73311,https://biolit.fr/observations/observation-73311/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230528_103228-scaled.jpg,,,Ne sais pas +N1,73309,Sortie #73309,https://biolit.fr/sorties/sortie-73309/,VIAL Thérèse,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230528_103228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230528_111324-scaled.jpg,5/24/2023 0:00,10.0000000,11.0000000,43.0338110000000,6.16941500000000,,Cap de l'Esterel,73313,Observation #73313,https://biolit.fr/observations/observation-73313/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230528_111324-scaled.jpg,,,Ne sais pas +N1,73318,Sortie #73318,https://biolit.fr/sorties/sortie-73318/,VIAL Thérèse,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230805_191148-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230805_191226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230805_191337-scaled.jpg,08/05/2023,19.0000000,19.0000000,45.8120200000000,-1.2199530000000,,Plage de Gatseau,73320,Observation #73320,https://biolit.fr/observations/observation-73320/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230805_191148-scaled.jpg,,,Ne sais pas +N1,73318,Sortie #73318,https://biolit.fr/sorties/sortie-73318/,VIAL Thérèse,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230805_191148-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230805_191226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230805_191337-scaled.jpg,08/05/2023,19.0000000,19.0000000,45.8120200000000,-1.2199530000000,,Plage de Gatseau,73322,Observation #73322,https://biolit.fr/observations/observation-73322/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230805_191226-scaled.jpg,,,Ne sais pas +N1,73318,Sortie #73318,https://biolit.fr/sorties/sortie-73318/,VIAL Thérèse,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230805_191148-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230805_191226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230805_191337-scaled.jpg,08/05/2023,19.0000000,19.0000000,45.8120200000000,-1.2199530000000,,Plage de Gatseau,73324,Observation #73324,https://biolit.fr/observations/observation-73324/,Pancratium maritimum,Lis de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/04/IMG_20230805_191337-scaled.jpg,,,Ne sais pas +N1,73342,Sortie #73342,https://biolit.fr/sorties/sortie-73342/,Velghe Louna,https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/1-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/2-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/3-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/4-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/5-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/6-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/7-1.png,04/02/2024,10.0000000,11.0000000,50.6944720,1.5927950,,"Le portel ,plage de Ningles",73344,Observation #73344,https://biolit.fr/observations/observation-73344/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/2-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/3-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/5-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/6-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/7-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/4-1.png,,,Ne sais pas +N1,73342,Sortie #73342,https://biolit.fr/sorties/sortie-73342/,Velghe Louna,https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/1-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/2-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/3-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/4-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/5-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/6-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/7-1.png,04/02/2024,10.0000000,11.0000000,50.6944720,1.5927950,,"Le portel ,plage de Ningles",73346,Observation #73346,https://biolit.fr/observations/observation-73346/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/2-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/611ff0b5d37bedb3a6f150ab1ee23960/2024/04/3-1.png,,,Ne sais pas +N1,73354,Sortie #73354,https://biolit.fr/sorties/sortie-73354/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-14-232602.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-14-232753.jpg,4/13/2024 0:00,17.0000000,17.0000000,43.2642050000000,5.36965500000000,,Plage du Grand Roucas Blanc - Prado Nord,73356,Observation #73356,https://biolit.fr/observations/observation-73356/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-14-232602.jpg,,,Identifiable +N1,73354,Sortie #73354,https://biolit.fr/sorties/sortie-73354/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-14-232602.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-14-232753.jpg,4/13/2024 0:00,17.0000000,17.0000000,43.2642050000000,5.36965500000000,,Plage du Grand Roucas Blanc - Prado Nord,73358,Observation #73358,https://biolit.fr/observations/observation-73358/,Scytosiphon lomentaria,Scytosiphon en forme de gousse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-14-232753.jpg,,,Ne sais pas +N1,73392,Sortie #73392,https://biolit.fr/sorties/sortie-73392/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_143638-scaled.jpg,04/12/2024,13.0000000,14.0000000,46.1886930000000,-1.32444700000000,,estran de la flotte,73394,Observation #73394,https://biolit.fr/observations/observation-73394/,Ensis magnus,Couteau arqué,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_143638-scaled.jpg,,TRUE,Identifiable +N1,73399,Sortie #73399,https://biolit.fr/sorties/sortie-73399/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_144213-scaled.jpg,04/12/2024,13.0000000,14.0000000,46.1890540000000,-1.32526900000000,,estran de la flotte,73401,Observation #73401,https://biolit.fr/observations/observation-73401/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_144213-scaled.jpg,,TRUE,Identifiable +N1,73408,Sortie #73408,https://biolit.fr/sorties/sortie-73408/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_143728-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_143724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135502-scaled.jpg,04/12/2024,13.0000000,14.0000000,46.1889150000000,-1.32496800000000,,estran de la flotte,73410,Observation #73410,https://biolit.fr/observations/observation-73410/,Ocenebra erinaceus,Ponte de Bigorneau perceur,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_143728-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_143724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135502-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140318-scaled.jpg,,TRUE,Identifiable +N1,73419,Sortie #73419,https://biolit.fr/sorties/sortie-73419/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_143137-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_141049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140429-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140425-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135044-scaled.jpg,04/12/2024,13.0000000,14.0000000,46.188770000000,-1.32459300000000,,estran de la flotte,73421,Observation #73421,https://biolit.fr/observations/observation-73421/,Conger conger,Congre,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140429-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140425-scaled.jpg,,TRUE,Identifiable +N1,73419,Sortie #73419,https://biolit.fr/sorties/sortie-73419/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_143137-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_141049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140429-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140425-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135044-scaled.jpg,04/12/2024,13.0000000,14.0000000,46.188770000000,-1.32459300000000,,estran de la flotte,73423,Observation #73423,https://biolit.fr/observations/observation-73423/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140909-scaled.jpg,,TRUE,Identifiable +N1,73419,Sortie #73419,https://biolit.fr/sorties/sortie-73419/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_143137-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_141049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140429-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140425-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135044-scaled.jpg,04/12/2024,13.0000000,14.0000000,46.188770000000,-1.32459300000000,,estran de la flotte,73425,Observation #73425,https://biolit.fr/observations/observation-73425/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_141049-scaled.jpg,,TRUE,Identifiable +N1,73419,Sortie #73419,https://biolit.fr/sorties/sortie-73419/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_143137-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_141049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140429-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140425-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135044-scaled.jpg,04/12/2024,13.0000000,14.0000000,46.188770000000,-1.32459300000000,,estran de la flotte,73427,Observation #73427,https://biolit.fr/observations/observation-73427/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135146-scaled.jpg,,TRUE,Identifiable +N1,73419,Sortie #73419,https://biolit.fr/sorties/sortie-73419/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_143137-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_141049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140429-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140425-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135044-scaled.jpg,04/12/2024,13.0000000,14.0000000,46.188770000000,-1.32459300000000,,estran de la flotte,73429,Observation #73429,https://biolit.fr/observations/observation-73429/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_143137-scaled.jpg,,,Ne sais pas +N1,73419,Sortie #73419,https://biolit.fr/sorties/sortie-73419/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_143137-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_141049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140429-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_140425-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135044-scaled.jpg,04/12/2024,13.0000000,14.0000000,46.188770000000,-1.32459300000000,,estran de la flotte,73431,Observation #73431,https://biolit.fr/observations/observation-73431/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_135044-scaled.jpg,,,Ne sais pas +N1,73439,Sortie #73439,https://biolit.fr/sorties/sortie-73439/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_182052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_183054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_172523-scaled.jpg,04/12/2024,17.0000000,17.0000000,46.1444990000000,-1.31550000000000,,plage de la basse benaie,73445,Observation #73445,https://biolit.fr/observations/observation-73445/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173430-scaled.jpg,,,Ne sais pas +N1,73439,Sortie #73439,https://biolit.fr/sorties/sortie-73439/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_182052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_183054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_172523-scaled.jpg,04/12/2024,17.0000000,17.0000000,46.1444990000000,-1.31550000000000,,plage de la basse benaie,73447,Observation #73447,https://biolit.fr/observations/observation-73447/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_183054-scaled.jpg,,TRUE,Ne sais pas +N1,73510,Sortie #73510,https://biolit.fr/sorties/sortie-73510/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240415_131225-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240415_131234-scaled.jpg,4/15/2024 0:00,10.0000000,11.0000000,43.273424,5.361923,,Plage du Prophète,73517,Observation #73517,https://biolit.fr/observations/observation-73517/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240415_131225-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240415_131234-scaled.jpg,,TRUE,Identifiable +N1,73566,Sortie #73566,https://biolit.fr/sorties/sortie-73566/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114549-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114607-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114616-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114611-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114559-scaled.jpg,04/02/2024,10.0:45,11.0000000,43.272843,5.362154,,Plage du prophète,73568,Observation #73568,https://biolit.fr/observations/observation-73568/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114549-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114607-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114616-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114611-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114559-scaled.jpg,,TRUE,Identifiable +N1,73580,Sortie #73580,https://biolit.fr/sorties/sortie-73580/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114549-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114554-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114607-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114616-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114629-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114621-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114625-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114603-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114559-1-scaled.jpg,04/02/2024,10.0:45,11.0000000,43.272843,5.362154,,Plage du Prophète,73582,Observation #73582,https://biolit.fr/observations/observation-73582/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114554-1-scaled.jpg,,TRUE,Identifiable +N1,73580,Sortie #73580,https://biolit.fr/sorties/sortie-73580/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114549-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114554-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114607-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114616-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114629-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114621-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114625-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114603-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114559-1-scaled.jpg,04/02/2024,10.0:45,11.0000000,43.272843,5.362154,,Plage du Prophète,73584,Observation #73584,https://biolit.fr/observations/observation-73584/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114607-1-scaled.jpg,,TRUE,Identifiable +N1,73580,Sortie #73580,https://biolit.fr/sorties/sortie-73580/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114549-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114554-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114607-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114616-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114629-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114621-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114625-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114603-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114559-1-scaled.jpg,04/02/2024,10.0:45,11.0000000,43.272843,5.362154,,Plage du Prophète,73586,Observation #73586,https://biolit.fr/observations/observation-73586/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114616-1-scaled.jpg,,TRUE,Identifiable +N1,73580,Sortie #73580,https://biolit.fr/sorties/sortie-73580/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114549-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114554-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114607-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114616-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114629-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114621-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114625-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114603-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114559-1-scaled.jpg,04/02/2024,10.0:45,11.0000000,43.272843,5.362154,,Plage du Prophète,73588,Observation #73588,https://biolit.fr/observations/observation-73588/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114611-1-scaled.jpg,,TRUE,Identifiable +N1,73580,Sortie #73580,https://biolit.fr/sorties/sortie-73580/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114549-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114554-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114607-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114616-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114629-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114621-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114625-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114603-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114559-1-scaled.jpg,04/02/2024,10.0:45,11.0000000,43.272843,5.362154,,Plage du Prophète,73590,Observation #73590,https://biolit.fr/observations/observation-73590/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114629-1-scaled.jpg,,TRUE,Identifiable +N1,73580,Sortie #73580,https://biolit.fr/sorties/sortie-73580/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114549-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114554-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114607-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114616-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114629-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114621-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114625-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114603-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114559-1-scaled.jpg,04/02/2024,10.0:45,11.0000000,43.272843,5.362154,,Plage du Prophète,73592,Observation #73592,https://biolit.fr/observations/observation-73592/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114621-1-scaled.jpg,,TRUE,Identifiable +N1,73580,Sortie #73580,https://biolit.fr/sorties/sortie-73580/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114549-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114554-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114607-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114616-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114629-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114621-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114625-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114603-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114559-1-scaled.jpg,04/02/2024,10.0:45,11.0000000,43.272843,5.362154,,Plage du Prophète,73594,Observation #73594,https://biolit.fr/observations/observation-73594/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114625-1-scaled.jpg,,TRUE,Identifiable +N1,73580,Sortie #73580,https://biolit.fr/sorties/sortie-73580/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114549-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114554-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114607-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114616-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114629-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114621-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114625-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114603-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114559-1-scaled.jpg,04/02/2024,10.0:45,11.0000000,43.272843,5.362154,,Plage du Prophète,73596,Observation #73596,https://biolit.fr/observations/observation-73596/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114603-1-scaled.jpg,,TRUE,Identifiable +N1,73580,Sortie #73580,https://biolit.fr/sorties/sortie-73580/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114549-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114554-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114607-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114616-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114629-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114621-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114625-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114603-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114559-1-scaled.jpg,04/02/2024,10.0:45,11.0000000,43.272843,5.362154,,Plage du Prophète,73598,Observation #73598,https://biolit.fr/observations/observation-73598/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/04/IMG_20240416_114559-1-scaled.jpg,,TRUE,Identifiable +N1,73610,Sortie #73610,https://biolit.fr/sorties/sortie-73610/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_6578-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/D3F9F3D7-6212-4D80-AABA-A6309CC5B439-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_6576-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1124-scaled.jpeg,04/11/2024,16.0:18,16.0:33,49.51,-1.86,,Le Havre Jouan Anse de Sciotot,,,,,,,,,, +N1,73615,Sortie #73615,https://biolit.fr/sorties/sortie-73615/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_5989-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_5988-scaled.jpeg,04/11/2024,16.0000000,16.0000000,49.5122270000000,-1.86021900000000,,Le Havre Jouan Anse de Sciotot,,,,,,,,,, +N1,73627,Sortie #73627,https://biolit.fr/sorties/sortie-73627/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4343-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4344-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4345-scaled.jpeg,04/11/2024,16.0000000,16.0000000,49.5124910000000,-1.86168500000000,,"Le Havre Jouan, L’Anse de Sciotot",,,,,,,,,, +N1,73631,Sortie #73631,https://biolit.fr/sorties/sortie-73631/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4343-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4345-1-scaled.jpeg,04/11/2024,16.0000000,16.0000000,49.5124770000000,-1.86167700000000,,"Le Havre Jouan, L’Anse de Sciotot",73642,Observation #73642,https://biolit.fr/observations/observation-73642/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4345-1-scaled.jpeg,,TRUE,Identifiable +N1,73631,Sortie #73631,https://biolit.fr/sorties/sortie-73631/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4343-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4345-1-scaled.jpeg,04/11/2024,16.0000000,16.0000000,49.5124770000000,-1.86167700000000,,"Le Havre Jouan, L’Anse de Sciotot",73649,Observation #73649,https://biolit.fr/observations/observation-73649/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4343-1-scaled.jpeg,,,Identifiable +N1,73631,Sortie #73631,https://biolit.fr/sorties/sortie-73631/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4343-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4345-1-scaled.jpeg,04/11/2024,16.0000000,16.0000000,49.5124770000000,-1.86167700000000,,"Le Havre Jouan, L’Anse de Sciotot",73651,Observation #73651,https://biolit.fr/observations/observation-73651/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4343-1-scaled.jpeg,,,Identifiable +N1,73631,Sortie #73631,https://biolit.fr/sorties/sortie-73631/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4343-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4345-1-scaled.jpeg,04/11/2024,16.0000000,16.0000000,49.5124770000000,-1.86167700000000,,"Le Havre Jouan, L’Anse de Sciotot",73657,Observation #73657,https://biolit.fr/observations/observation-73657/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4343-1-scaled.jpeg,,,Identifiable +N1,73631,Sortie #73631,https://biolit.fr/sorties/sortie-73631/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4343-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4345-1-scaled.jpeg,04/11/2024,16.0000000,16.0000000,49.5124770000000,-1.86167700000000,,"Le Havre Jouan, L’Anse de Sciotot",73661,Observation #73661,https://biolit.fr/observations/observation-73661/,Amphibalanus eburneus,Balane ivoire,,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4343-1-scaled.jpeg,,,Identifiable +N1,73631,Sortie #73631,https://biolit.fr/sorties/sortie-73631/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4343-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4345-1-scaled.jpeg,04/11/2024,16.0000000,16.0000000,49.5124770000000,-1.86167700000000,,"Le Havre Jouan, L’Anse de Sciotot",73669,Observation #73669,https://biolit.fr/observations/observation-73669/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4343-1-scaled.jpeg,,TRUE,Identifiable +N1,73640,Sortie #73640,https://biolit.fr/sorties/sortie-73640/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1140-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1139-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_6578-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/D3F9F3D7-6212-4D80-AABA-A6309CC5B439-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_6576-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1854-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1124-2-scaled.jpeg,04/11/2024,16.0:18,16.0:34,49.5129720000000,-1.86141000000000,,Le Havre Jouan Anse de Sciotot,73644,Observation #73644,https://biolit.fr/observations/observation-73644/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1140-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1139-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_6578-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/D3F9F3D7-6212-4D80-AABA-A6309CC5B439-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_6576-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1854-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1124-2-scaled.jpeg,,,Ne sais pas +N1,73647,Sortie #73647,https://biolit.fr/sorties/sortie-73647/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1160.jpeg,04/11/2024,16.0000000,16.0000000,49.5122730000000,-1.86059500000000,,Havre Jouan,73652,Observation #73652,https://biolit.fr/observations/observation-73652/,Littorina compressa,Littorine à lignes noires,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1160.jpeg,,,Identifiable +N1,73647,Sortie #73647,https://biolit.fr/sorties/sortie-73647/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1160.jpeg,04/11/2024,16.0000000,16.0000000,49.5122730000000,-1.86059500000000,,Havre Jouan,73655,Observation #73655,https://biolit.fr/observations/observation-73655/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1160.jpeg,,,Identifiable +N1,73647,Sortie #73647,https://biolit.fr/sorties/sortie-73647/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1160.jpeg,04/11/2024,16.0000000,16.0000000,49.5122730000000,-1.86059500000000,,Havre Jouan,73659,Observation #73659,https://biolit.fr/observations/observation-73659/,Agarum clathratum,Laminaire criblée,,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1160.jpeg,,,Identifiable +N1,73647,Sortie #73647,https://biolit.fr/sorties/sortie-73647/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1160.jpeg,04/11/2024,16.0000000,16.0000000,49.5122730000000,-1.86059500000000,,Havre Jouan,73671,Observation #73671,https://biolit.fr/observations/observation-73671/,Euraphia depressa,Balane rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_1160.jpeg,,,Identifiable +N1,73679,Sortie #73679,https://biolit.fr/sorties/sortie-73679/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2287-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2286-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2285-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2283-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2260-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2259-1-scaled.jpeg,04/11/2024,16.000001,16.0:21,49.5127910000000,-1.8603770000000,,Le Havre Jouan Anse de Sciotot,73690,Observation #73690,https://biolit.fr/observations/observation-73690/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2283-1-scaled.jpeg,,,Identifiable +N1,73679,Sortie #73679,https://biolit.fr/sorties/sortie-73679/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2287-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2286-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2285-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2283-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2260-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2259-1-scaled.jpeg,04/11/2024,16.000001,16.0:21,49.5127910000000,-1.8603770000000,,Le Havre Jouan Anse de Sciotot,73692,Observation #73692,https://biolit.fr/observations/observation-73692/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2260-1-scaled.jpeg,,,Identifiable +N1,73679,Sortie #73679,https://biolit.fr/sorties/sortie-73679/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2287-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2286-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2285-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2283-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2260-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2259-1-scaled.jpeg,04/11/2024,16.000001,16.0:21,49.5127910000000,-1.8603770000000,,Le Havre Jouan Anse de Sciotot,73695,Observation #73695,https://biolit.fr/observations/observation-73695/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2259-1-scaled.jpeg,,,Identifiable +N1,73679,Sortie #73679,https://biolit.fr/sorties/sortie-73679/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2287-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2286-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2285-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2283-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2260-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2259-1-scaled.jpeg,04/11/2024,16.000001,16.0:21,49.5127910000000,-1.8603770000000,,Le Havre Jouan Anse de Sciotot,73698,Observation #73698,https://biolit.fr/observations/observation-73698/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2285-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2286-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2287-1-scaled.jpeg,,,Ne sais pas +N1,73683,Sortie #73683,https://biolit.fr/sorties/sortie-73683/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4366-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_4367-scaled.jpeg,04/11/2024,16.0000000,16.0000000,49.5124670000000,-1.86168900000000,,"Le Havre Jouan, Anse de Sciotot",,,,,,,,,, +N1,73688,Sortie #73688,https://biolit.fr/sorties/sortie-73688/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2022.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_0530-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_0529-scaled.jpeg,04/11/2024,16.0:15,16.0:25,49.5015910000000,-1.84467300000000,,"Le Havre Jouan, Anse de Sciotot",73694,Observation #73694,https://biolit.fr/observations/observation-73694/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2022.jpeg,,,Identifiable +N1,73688,Sortie #73688,https://biolit.fr/sorties/sortie-73688/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2022.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_0530-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_0529-scaled.jpeg,04/11/2024,16.0:15,16.0:25,49.5015910000000,-1.84467300000000,,"Le Havre Jouan, Anse de Sciotot",73700,Observation #73700,https://biolit.fr/observations/observation-73700/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2022.jpeg,,,Identifiable +N1,73688,Sortie #73688,https://biolit.fr/sorties/sortie-73688/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2022.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_0530-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_0529-scaled.jpeg,04/11/2024,16.0:15,16.0:25,49.5015910000000,-1.84467300000000,,"Le Havre Jouan, Anse de Sciotot",73702,Observation #73702,https://biolit.fr/observations/observation-73702/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2022.jpeg,,TRUE,Identifiable +N1,73688,Sortie #73688,https://biolit.fr/sorties/sortie-73688/,COULIE Sandrine,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2022.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_0530-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_0529-scaled.jpeg,04/11/2024,16.0:15,16.0:25,49.5015910000000,-1.84467300000000,,"Le Havre Jouan, Anse de Sciotot",73704,Observation #73704,https://biolit.fr/observations/observation-73704/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/jet-form-builder/45fea1c64246d73b956fc263c0dc4b29/2024/04/IMG_2022.jpeg,,,Identifiable +N1,73708,Sortie #73708,https://biolit.fr/sorties/sortie-73708/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-16-230926.jpg,03/11/2023,12.0000000,13.0000000,43.3481040000000,4.87531900000000,,Plage Napoléon,73710,Observation #73710,https://biolit.fr/observations/observation-73710/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-16-230926.jpg,,,Ne sais pas +N1,73714,Sortie #73714,https://biolit.fr/sorties/sortie-73714/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-16-230715.jpg,3/30/2024 0:00,15.0000000,17.0000000,43.2594710000000,5.37495500000000,,Plage de l'Huveaune,73716,Observation #73716,https://biolit.fr/observations/observation-73716/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041_.jpg,,,Ne sais pas +N1,73714,Sortie #73714,https://biolit.fr/sorties/sortie-73714/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-02-153041_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-16-230715.jpg,3/30/2024 0:00,15.0000000,17.0000000,43.2594710000000,5.37495500000000,,Plage de l'Huveaune,73718,Observation #73718,https://biolit.fr/observations/observation-73718/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-16-230715.jpg,,,Ne sais pas +N1,73807,Sortie #73807,https://biolit.fr/sorties/sortie-73807/,BONNEFOY Isabelle,https://biolit.fr/wp-content/uploads/jet-form-builder/386a13d7d813bf1b4fb68a262102a436/2024/04/20240328_0936371-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/386a13d7d813bf1b4fb68a262102a436/2024/04/20240328_0938231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/386a13d7d813bf1b4fb68a262102a436/2024/04/20240328_0938231.png,3/28/2024 0:00,9.0000000,19.0000000,41.3886190000000,9.16533900000000,,Fond du port de Bonifacio,73809,Observation #73809,https://biolit.fr/observations/observation-73809/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/386a13d7d813bf1b4fb68a262102a436/2024/04/20240328_0938231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/386a13d7d813bf1b4fb68a262102a436/2024/04/20240328_0936371-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/386a13d7d813bf1b4fb68a262102a436/2024/04/20240328_0938231.png,,TRUE,Identifiable +N1,73866,Sortie #73866,https://biolit.fr/sorties/sortie-73866/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173627-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_182046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_182052-1-scaled.jpg,04/12/2024,17.0000000,17.0:15,46.144472000000,-1.31547300000000,,plage basse benaie,73868,Observation #73868,https://biolit.fr/observations/observation-73868/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_182046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_182052-1-scaled.jpg,,,Ne sais pas +N1,73866,Sortie #73866,https://biolit.fr/sorties/sortie-73866/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173627-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_182046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_182052-1-scaled.jpg,04/12/2024,17.0000000,17.0:15,46.144472000000,-1.31547300000000,,plage basse benaie,73870,Observation #73870,https://biolit.fr/observations/observation-73870/,Eunicella singularis,Gorgone blanche,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173627-1-scaled.jpg,,,Identifiable +N1,73866,Sortie #73866,https://biolit.fr/sorties/sortie-73866/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173627-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_182046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_182052-1-scaled.jpg,04/12/2024,17.0000000,17.0:15,46.144472000000,-1.31547300000000,,plage basse benaie,73872,Observation #73872,https://biolit.fr/observations/observation-73872/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173638-scaled.jpg,,,Ne sais pas +N1,73888,Sortie #73888,https://biolit.fr/sorties/sortie-73888/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_182052-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173638-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173627-2-scaled.jpg,04/12/2024,17.0000000,17.0000000,46.1442310000000,-1.31501200000000,,plage de basse bennaie,73890,Observation #73890,https://biolit.fr/observations/observation-73890/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_182052-2-scaled.jpg,,,Ne sais pas +N1,73888,Sortie #73888,https://biolit.fr/sorties/sortie-73888/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_182052-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173638-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173627-2-scaled.jpg,04/12/2024,17.0000000,17.0000000,46.1442310000000,-1.31501200000000,,plage de basse bennaie,73892,Observation #73892,https://biolit.fr/observations/observation-73892/,Eunicella singularis,Gorgone blanche,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173627-2-scaled.jpg,,,Identifiable +N1,73888,Sortie #73888,https://biolit.fr/sorties/sortie-73888/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_182052-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173638-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173627-2-scaled.jpg,04/12/2024,17.0000000,17.0000000,46.1442310000000,-1.31501200000000,,plage de basse bennaie,73894,Observation #73894,https://biolit.fr/observations/observation-73894/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/04/IMG_20240412_173638-1-scaled.jpg,,TRUE,Ne sais pas +N1,73903,Sortie #73903,https://biolit.fr/sorties/sortie-73903/,AIEJE,https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/04/Nouveau-Logo-ecritures.png,4/22/2024 0:00,13.0000000,14.0000000,43.4077700,5.3116930,AIEJE,les anthenors,,,,,,,,,, +N1,73909,Sortie #73909,https://biolit.fr/sorties/sortie-73909/,AIEJE,https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/04/IMG_5531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/04/IMG_5534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/04/IMG_5535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/04/IMG_5537-scaled.jpg,4/22/2024 0:00,13.0000000,14.0000000,43.4077700,5.3116930,,les anthenors,73911,Observation #73911,https://biolit.fr/observations/observation-73911/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/04/IMG_5531-scaled.jpg,,TRUE,Identifiable +N1,73909,Sortie #73909,https://biolit.fr/sorties/sortie-73909/,AIEJE,https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/04/IMG_5531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/04/IMG_5534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/04/IMG_5535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/04/IMG_5537-scaled.jpg,4/22/2024 0:00,13.0000000,14.0000000,43.4077700,5.3116930,,les anthenors,73913,Observation #73913,https://biolit.fr/observations/observation-73913/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/04/IMG_5534-scaled.jpg,,TRUE,Identifiable +N1,73909,Sortie #73909,https://biolit.fr/sorties/sortie-73909/,AIEJE,https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/04/IMG_5531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/04/IMG_5534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/04/IMG_5535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/04/IMG_5537-scaled.jpg,4/22/2024 0:00,13.0000000,14.0000000,43.4077700,5.3116930,,les anthenors,73915,Observation #73915,https://biolit.fr/observations/observation-73915/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/04/IMG_5537-scaled.jpg,,TRUE,Identifiable +N1,73918,Sortie #73918,https://biolit.fr/sorties/sortie-73918/,Allory Pierre-Yves,FALSE,04/01/2024,10.0:11,9.0:11,49.2197090000000,-2.1368410000000,CDMM (Centre de Découverte Mer et Montagne),Fhhhf,,,,,,,,,, +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73958,Observation #73958,https://biolit.fr/observations/observation-73958/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg,,TRUE,Identifiable +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73960,Observation #73960,https://biolit.fr/observations/observation-73960/,Spondylus gaederopus,Spondyle pied-d'âne,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg,,TRUE,Identifiable +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73962,Observation #73962,https://biolit.fr/observations/observation-73962/,Maja crispata,Petite araignée de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg,,,Identifiable +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73964,Observation #73964,https://biolit.fr/observations/observation-73964/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg,,,Ne sais pas +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73966,Observation #73966,https://biolit.fr/observations/observation-73966/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg,,,Identifiable +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73968,Observation #73968,https://biolit.fr/observations/observation-73968/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg,,,Identifiable +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73970,Observation #73970,https://biolit.fr/observations/observation-73970/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg,,,Ne sais pas +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73972,Observation #73972,https://biolit.fr/observations/observation-73972/,Tritia corniculum,Tritia corniculum,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg,,,Identifiable +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73974,Observation #73974,https://biolit.fr/observations/observation-73974/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg,,,Ne sais pas +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73976,Observation #73976,https://biolit.fr/observations/observation-73976/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg,,,Identifiable +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73978,Observation #73978,https://biolit.fr/observations/observation-73978/,Diodora graeca,Fissurelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg,,,Identifiable +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73980,Observation #73980,https://biolit.fr/observations/observation-73980/,Loripes orbiculatus,Loripes orbiculaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg,,,Identifiable +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73982,Observation #73982,https://biolit.fr/observations/observation-73982/,Polititapes aureus,Palourde jaune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg,,,Identifiable +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73984,Observation #73984,https://biolit.fr/observations/observation-73984/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg,,,Identifiable +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73986,Observation #73986,https://biolit.fr/observations/observation-73986/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg,,TRUE,Identifiable +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73988,Observation #73988,https://biolit.fr/observations/observation-73988/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg,,,Identifiable +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73990,Observation #73990,https://biolit.fr/observations/observation-73990/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg,,TRUE,Identifiable +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73992,Observation #73992,https://biolit.fr/observations/observation-73992/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg,,TRUE,Identifiable +N1,73956,Sortie #73956,https://biolit.fr/sorties/sortie-73956/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-233944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234314.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-21-234808.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224740.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-224953.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225244.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-225919.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230147.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230606.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-230735.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/Capture-decran-2024-04-22-231016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075605697_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_075801877-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135923089.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_135932030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,4/21/2024 0:00,7.0000000,8.0000000,43.259514000000,5.37489000000000,,Plage de l'Huveaune,73994,Observation #73994,https://biolit.fr/observations/observation-73994/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240421_140211729-scaled.jpg,,TRUE,Identifiable +N1,74129,Sortie #74129,https://biolit.fr/sorties/sortie-74129/,Granger Angélique,https://biolit.fr/wp-content/uploads/jet-form-builder/8e86d13fc378bd139f5f8e3577ea00f1/2024/04/20240428_112034-scaled.jpg,4/28/2024 0:00,11.0000000,11.0:55,49.110127000000,-1.60648600000000,,Plage de Gouville sur Mer,74131,Observation #74131,https://biolit.fr/observations/observation-74131/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8e86d13fc378bd139f5f8e3577ea00f1/2024/04/20240428_112034-scaled.jpg,,TRUE,Identifiable +N1,74145,Sortie #74145,https://biolit.fr/sorties/sortie-74145/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155148072_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155910220_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155942562-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_160742884.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161755935-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161815007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161824556.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162101470_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162247374_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162258316_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_211039593.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_211046406.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2397800000000,5.36241500000000,,Plage de l’Anse du Bain des Dames,74147,Observation #74147,https://biolit.fr/observations/observation-74147/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155910220_HDR-scaled.jpg,,TRUE,Identifiable +N1,74145,Sortie #74145,https://biolit.fr/sorties/sortie-74145/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155148072_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155910220_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155942562-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_160742884.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161755935-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161815007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161824556.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162101470_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162247374_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162258316_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_211039593.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_211046406.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2397800000000,5.36241500000000,,Plage de l’Anse du Bain des Dames,74149,Observation #74149,https://biolit.fr/observations/observation-74149/,Euthria cornea,Buccin veiné,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155148072_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155942562-rotated.jpg,,,Identifiable +N1,74145,Sortie #74145,https://biolit.fr/sorties/sortie-74145/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155148072_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155910220_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155942562-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_160742884.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161755935-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161815007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161824556.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162101470_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162247374_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162258316_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_211039593.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_211046406.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2397800000000,5.36241500000000,,Plage de l’Anse du Bain des Dames,74151,Observation #74151,https://biolit.fr/observations/observation-74151/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_160742884.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161755935-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161815007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161824556.jpg,,,Identifiable +N1,74145,Sortie #74145,https://biolit.fr/sorties/sortie-74145/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155148072_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155910220_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155942562-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_160742884.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161755935-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161815007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161824556.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162101470_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162247374_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162258316_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_211039593.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_211046406.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2397800000000,5.36241500000000,,Plage de l’Anse du Bain des Dames,74153,Observation #74153,https://biolit.fr/observations/observation-74153/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162101470_HDR-scaled.jpg,,,Ne sais pas +N1,74145,Sortie #74145,https://biolit.fr/sorties/sortie-74145/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155148072_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155910220_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155942562-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_160742884.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161755935-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161815007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161824556.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162101470_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162247374_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162258316_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_211039593.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_211046406.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2397800000000,5.36241500000000,,Plage de l’Anse du Bain des Dames,74155,Observation #74155,https://biolit.fr/observations/observation-74155/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162247374_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162258316_HDR.jpg,,,Identifiable +N1,74145,Sortie #74145,https://biolit.fr/sorties/sortie-74145/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155148072_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155910220_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_155942562-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_160742884.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161755935-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161815007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_161824556.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162101470_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162247374_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_162258316_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_211039593.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_211046406.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2397800000000,5.36241500000000,,Plage de l’Anse du Bain des Dames,74157,Observation #74157,https://biolit.fr/observations/observation-74157/,Bulla striata,Bulle striée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_211039593.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/04/IMG_20240427_211046406.jpg,,,Identifiable +N1,74162,Sortie #74162,https://biolit.fr/sorties/sortie-74162/,picault patrick,https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/04/1000010171-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/04/1000010170-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/04/1000010169-scaled.jpg,4/28/2024 0:00,6.0000000,6.0000000,43.6638850,3.9221240,,La Grande Motte,,,,,,,,,, +N1,74296,Sortie #74296,https://biolit.fr/sorties/sortie-74296/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240501_181310009-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240501_180927201.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240501_180841443-scaled.jpg,05/01/2024,18.0:25,18.0000000,43.0329260000000,6.16900500000000,,Giens,74298,Observation #74298,https://biolit.fr/observations/observation-74298/,Phyllophora crispa,Algue rouge à frisottis,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240501_181310009-rotated.jpg,,,Ne sais pas +N1,74296,Sortie #74296,https://biolit.fr/sorties/sortie-74296/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240501_181310009-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240501_180927201.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240501_180841443-scaled.jpg,05/01/2024,18.0:25,18.0000000,43.0329260000000,6.16900500000000,,Giens,74300,Observation #74300,https://biolit.fr/observations/observation-74300/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240501_180927201.jpg,,TRUE,Identifiable +N1,74296,Sortie #74296,https://biolit.fr/sorties/sortie-74296/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240501_181310009-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240501_180927201.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240501_180841443-scaled.jpg,05/01/2024,18.0:25,18.0000000,43.0329260000000,6.16900500000000,,Giens,74302,Observation #74302,https://biolit.fr/observations/observation-74302/,Carpobrotus acinaciformis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240501_180841443-scaled.jpg,,TRUE,Identifiable +N1,74324,Sortie #74324,https://biolit.fr/sorties/sortie-74324/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165033431_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165022555_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163652979-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163632829_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163500161_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163451397-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163414884-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163400435-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163327202-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163253462-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162556878-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162516762-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162504674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162320229-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162303654-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162248950-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162213771-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162205826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162127749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162035386-rotated.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2595030000000,5.37497400000000,,Plage de l'Huveaune,74326,Observation #74326,https://biolit.fr/observations/observation-74326/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165033431_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165022555_HDR-rotated.jpg,,,Identifiable +N1,74324,Sortie #74324,https://biolit.fr/sorties/sortie-74324/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165033431_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165022555_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163652979-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163632829_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163500161_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163451397-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163414884-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163400435-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163327202-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163253462-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162556878-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162516762-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162504674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162320229-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162303654-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162248950-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162213771-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162205826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162127749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162035386-rotated.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2595030000000,5.37497400000000,,Plage de l'Huveaune,74328,Observation #74328,https://biolit.fr/observations/observation-74328/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163652979-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163632829_HDR-rotated.jpg,,,Ne sais pas +N1,74324,Sortie #74324,https://biolit.fr/sorties/sortie-74324/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165033431_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165022555_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163652979-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163632829_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163500161_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163451397-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163414884-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163400435-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163327202-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163253462-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162556878-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162516762-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162504674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162320229-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162303654-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162248950-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162213771-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162205826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162127749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162035386-rotated.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2595030000000,5.37497400000000,,Plage de l'Huveaune,74330,Observation #74330,https://biolit.fr/observations/observation-74330/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163500161_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163451397-rotated.jpg,,,Ne sais pas +N1,74324,Sortie #74324,https://biolit.fr/sorties/sortie-74324/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165033431_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165022555_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163652979-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163632829_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163500161_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163451397-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163414884-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163400435-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163327202-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163253462-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162556878-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162516762-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162504674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162320229-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162303654-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162248950-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162213771-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162205826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162127749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162035386-rotated.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2595030000000,5.37497400000000,,Plage de l'Huveaune,74332,Observation #74332,https://biolit.fr/observations/observation-74332/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163414884-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163400435-rotated.jpg,,,Identifiable +N1,74324,Sortie #74324,https://biolit.fr/sorties/sortie-74324/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165033431_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165022555_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163652979-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163632829_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163500161_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163451397-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163414884-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163400435-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163327202-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163253462-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162556878-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162516762-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162504674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162320229-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162303654-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162248950-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162213771-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162205826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162127749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162035386-rotated.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2595030000000,5.37497400000000,,Plage de l'Huveaune,74334,Observation #74334,https://biolit.fr/observations/observation-74334/,Cardita calyculata,Cardite petit calice,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163327202-scaled.jpg,,,Identifiable +N1,74324,Sortie #74324,https://biolit.fr/sorties/sortie-74324/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165033431_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165022555_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163652979-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163632829_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163500161_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163451397-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163414884-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163400435-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163327202-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163253462-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162556878-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162516762-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162504674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162320229-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162303654-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162248950-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162213771-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162205826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162127749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162035386-rotated.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2595030000000,5.37497400000000,,Plage de l'Huveaune,74336,Observation #74336,https://biolit.fr/observations/observation-74336/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163253462-rotated.jpg,,,Identifiable +N1,74324,Sortie #74324,https://biolit.fr/sorties/sortie-74324/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165033431_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165022555_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163652979-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163632829_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163500161_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163451397-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163414884-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163400435-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163327202-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163253462-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162556878-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162516762-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162504674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162320229-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162303654-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162248950-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162213771-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162205826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162127749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162035386-rotated.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2595030000000,5.37497400000000,,Plage de l'Huveaune,74338,Observation #74338,https://biolit.fr/observations/observation-74338/,Diodora graeca,Fissurelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162556878-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162516762-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162504674.jpg,,,Identifiable +N1,74324,Sortie #74324,https://biolit.fr/sorties/sortie-74324/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165033431_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165022555_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163652979-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163632829_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163500161_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163451397-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163414884-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163400435-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163327202-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163253462-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162556878-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162516762-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162504674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162320229-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162303654-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162248950-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162213771-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162205826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162127749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162035386-rotated.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2595030000000,5.37497400000000,,Plage de l'Huveaune,74340,Observation #74340,https://biolit.fr/observations/observation-74340/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162320229-rotated.jpg,,TRUE,Identifiable +N1,74324,Sortie #74324,https://biolit.fr/sorties/sortie-74324/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165033431_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165022555_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163652979-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163632829_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163500161_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163451397-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163414884-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163400435-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163327202-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163253462-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162556878-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162516762-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162504674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162320229-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162303654-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162248950-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162213771-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162205826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162127749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162035386-rotated.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2595030000000,5.37497400000000,,Plage de l'Huveaune,74342,Observation #74342,https://biolit.fr/observations/observation-74342/,Donax vittatus,Donace des canards,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162303654-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162248950-rotated.jpg,,,Identifiable +N1,74324,Sortie #74324,https://biolit.fr/sorties/sortie-74324/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165033431_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165022555_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163652979-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163632829_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163500161_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163451397-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163414884-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163400435-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163327202-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163253462-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162556878-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162516762-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162504674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162320229-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162303654-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162248950-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162213771-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162205826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162127749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162035386-rotated.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2595030000000,5.37497400000000,,Plage de l'Huveaune,74344,Observation #74344,https://biolit.fr/observations/observation-74344/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162213771-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162205826-rotated.jpg,,,Identifiable +N1,74324,Sortie #74324,https://biolit.fr/sorties/sortie-74324/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165033431_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165022555_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163652979-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163632829_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163500161_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163451397-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163414884-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163400435-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163327202-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163253462-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162556878-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162516762-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162504674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162320229-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162303654-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162248950-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162213771-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162205826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162127749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162035386-rotated.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2595030000000,5.37497400000000,,Plage de l'Huveaune,74346,Observation #74346,https://biolit.fr/observations/observation-74346/,Tritia corniculum,Tritia corniculum,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162127749.jpg,,,Identifiable +N1,74324,Sortie #74324,https://biolit.fr/sorties/sortie-74324/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165033431_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_165022555_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163652979-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163632829_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163500161_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163451397-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163414884-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163400435-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163327202-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_163253462-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162556878-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162516762-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162504674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162320229-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162303654-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162248950-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162213771-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162205826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162127749.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162035386-rotated.jpg,4/27/2024 0:00,16.0000000,17.0000000,43.2595030000000,5.37497400000000,,Plage de l'Huveaune,74348,Observation #74348,https://biolit.fr/observations/observation-74348/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240430_162035386-rotated.jpg,,,Ne sais pas +N1,74351,Sortie #74351,https://biolit.fr/sorties/sortie-74351/,MAILLARD Damien,https://biolit.fr/wp-content/uploads/jet-form-builder/8697d82fdc0031c472cee2bfe6dd5175/2024/05/meduse.jpg,05/01/2024,14.0000000,17.0000000,47.2684530000000,-2.16390600000000,,Saint Brevin Les Pins,74353,Observation #74353,https://biolit.fr/observations/observation-74353/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8697d82fdc0031c472cee2bfe6dd5175/2024/05/meduse.jpg,,,Ne sais pas +N1,74397,Sortie #74397,https://biolit.fr/sorties/sortie-74397/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_144359942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143922585-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143912377-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143758395-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143508668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143457452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143026916_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143003918_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_142938598_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141752170_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141052228_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141042063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140603377_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140522724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140508483-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140313486-scaled.jpg,05/02/2024,16.0:15,17.0000000,43.0285740000000,6.15746300000000,,Tour fondue,74399,Observation #74399,https://biolit.fr/observations/observation-74399/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143758395-rotated.jpg,,,Identifiable +N1,74397,Sortie #74397,https://biolit.fr/sorties/sortie-74397/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_144359942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143922585-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143912377-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143758395-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143508668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143457452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143026916_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143003918_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_142938598_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141752170_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141052228_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141042063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140603377_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140522724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140508483-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140313486-scaled.jpg,05/02/2024,16.0:15,17.0000000,43.0285740000000,6.15746300000000,,Tour fondue,74401,Observation #74401,https://biolit.fr/observations/observation-74401/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_142938598_HDR-rotated.jpg,,TRUE,Identifiable +N1,74397,Sortie #74397,https://biolit.fr/sorties/sortie-74397/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_144359942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143922585-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143912377-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143758395-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143508668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143457452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143026916_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143003918_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_142938598_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141752170_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141052228_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141042063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140603377_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140522724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140508483-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140313486-scaled.jpg,05/02/2024,16.0:15,17.0000000,43.0285740000000,6.15746300000000,,Tour fondue,74403,Observation #74403,https://biolit.fr/observations/observation-74403/,Malva arborea,Lavatère arborescente,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_144359942_HDR-scaled.jpg,,,Identifiable +N1,74397,Sortie #74397,https://biolit.fr/sorties/sortie-74397/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_144359942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143922585-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143912377-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143758395-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143508668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143457452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143026916_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143003918_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_142938598_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141752170_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141052228_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141042063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140603377_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140522724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140508483-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140313486-scaled.jpg,05/02/2024,16.0:15,17.0000000,43.0285740000000,6.15746300000000,,Tour fondue,74405,Observation #74405,https://biolit.fr/observations/observation-74405/,Maja crispata,Petite araignée de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143922585-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143912377-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143026916_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143003918_HDR-rotated.jpg,,,Identifiable +N1,74397,Sortie #74397,https://biolit.fr/sorties/sortie-74397/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_144359942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143922585-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143912377-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143758395-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143508668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143457452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143026916_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143003918_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_142938598_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141752170_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141052228_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141042063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140603377_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140522724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140508483-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140313486-scaled.jpg,05/02/2024,16.0:15,17.0000000,43.0285740000000,6.15746300000000,,Tour fondue,74407,Observation #74407,https://biolit.fr/observations/observation-74407/,Dictyota fasciola,Dictyote rubanée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143508668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143457452_HDR-scaled.jpg,,,Ne sais pas +N1,74397,Sortie #74397,https://biolit.fr/sorties/sortie-74397/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_144359942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143922585-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143912377-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143758395-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143508668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143457452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143026916_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143003918_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_142938598_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141752170_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141052228_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141042063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140603377_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140522724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140508483-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140313486-scaled.jpg,05/02/2024,16.0:15,17.0000000,43.0285740000000,6.15746300000000,,Tour fondue,74409,Observation #74409,https://biolit.fr/observations/observation-74409/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141752170_HDR-scaled.jpg,,TRUE,Identifiable +N1,74397,Sortie #74397,https://biolit.fr/sorties/sortie-74397/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_144359942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143922585-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143912377-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143758395-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143508668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143457452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143026916_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143003918_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_142938598_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141752170_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141052228_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141042063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140603377_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140522724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140508483-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140313486-scaled.jpg,05/02/2024,16.0:15,17.0000000,43.0285740000000,6.15746300000000,,Tour fondue,74411,Observation #74411,https://biolit.fr/observations/observation-74411/,Oxalis pes-caprae,Oxalide pied-de-chèvre,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141052228_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141042063_HDR-scaled.jpg,,,Identifiable +N1,74397,Sortie #74397,https://biolit.fr/sorties/sortie-74397/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_144359942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143922585-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143912377-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143758395-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143508668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143457452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143026916_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143003918_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_142938598_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141752170_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141052228_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141042063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140603377_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140522724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140508483-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140313486-scaled.jpg,05/02/2024,16.0:15,17.0000000,43.0285740000000,6.15746300000000,,Tour fondue,74413,Observation #74413,https://biolit.fr/observations/observation-74413/,Carpobrotus edulis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140603377_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140313486-scaled.jpg,,TRUE,Identifiable +N1,74397,Sortie #74397,https://biolit.fr/sorties/sortie-74397/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_144359942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143922585-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143912377-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143758395-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143508668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143457452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143026916_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_143003918_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_142938598_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141752170_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141052228_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_141042063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140603377_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140522724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140508483-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140313486-scaled.jpg,05/02/2024,16.0:15,17.0000000,43.0285740000000,6.15746300000000,,Tour fondue,74415,Observation #74415,https://biolit.fr/observations/observation-74415/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140522724-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_140508483-scaled.jpg,,TRUE,Identifiable +N1,74437,Sortie #74437,https://biolit.fr/sorties/sortie-74437/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202257643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202222995-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162953999_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162500910.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162408216-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130848572.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130824879-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130736911-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130631762.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130423914.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130407172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130313604-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130127558-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130114826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130034425-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130021363-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125910832-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125520827.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125507104.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125438310-scaled.jpg,05/02/2024,10.0000000,11.0000000,43.0346250000000,6.16525800000000,,Estérel,74439,Observation #74439,https://biolit.fr/observations/observation-74439/,Trivia mediterranea,Grain de café de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202257643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202222995-rotated.jpg,,,Identifiable +N1,74437,Sortie #74437,https://biolit.fr/sorties/sortie-74437/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202257643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202222995-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162953999_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162500910.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162408216-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130848572.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130824879-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130736911-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130631762.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130423914.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130407172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130313604-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130127558-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130114826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130034425-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130021363-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125910832-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125520827.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125507104.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125438310-scaled.jpg,05/02/2024,10.0000000,11.0000000,43.0346250000000,6.16525800000000,,Estérel,74441,Observation #74441,https://biolit.fr/observations/observation-74441/,Pusia ebenus,Pusia ébène,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162953999_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162500910.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162408216-rotated.jpg,,,Identifiable +N1,74437,Sortie #74437,https://biolit.fr/sorties/sortie-74437/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202257643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202222995-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162953999_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162500910.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162408216-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130848572.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130824879-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130736911-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130631762.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130423914.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130407172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130313604-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130127558-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130114826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130034425-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130021363-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125910832-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125520827.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125507104.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125438310-scaled.jpg,05/02/2024,10.0000000,11.0000000,43.0346250000000,6.16525800000000,,Estérel,74443,Observation #74443,https://biolit.fr/observations/observation-74443/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130848572.jpg,,,Identifiable +N1,74437,Sortie #74437,https://biolit.fr/sorties/sortie-74437/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202257643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202222995-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162953999_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162500910.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162408216-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130848572.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130824879-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130736911-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130631762.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130423914.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130407172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130313604-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130127558-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130114826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130034425-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130021363-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125910832-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125520827.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125507104.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125438310-scaled.jpg,05/02/2024,10.0000000,11.0000000,43.0346250000000,6.16525800000000,,Estérel,74445,Observation #74445,https://biolit.fr/observations/observation-74445/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130824879-rotated.jpg,,,Identifiable +N1,74437,Sortie #74437,https://biolit.fr/sorties/sortie-74437/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202257643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202222995-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162953999_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162500910.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162408216-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130848572.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130824879-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130736911-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130631762.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130423914.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130407172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130313604-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130127558-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130114826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130034425-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130021363-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125910832-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125520827.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125507104.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125438310-scaled.jpg,05/02/2024,10.0000000,11.0000000,43.0346250000000,6.16525800000000,,Estérel,74447,Observation #74447,https://biolit.fr/observations/observation-74447/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130736911-rotated.jpg,,,Identifiable +N1,74437,Sortie #74437,https://biolit.fr/sorties/sortie-74437/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202257643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202222995-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162953999_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162500910.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162408216-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130848572.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130824879-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130736911-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130631762.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130423914.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130407172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130313604-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130127558-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130114826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130034425-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130021363-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125910832-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125520827.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125507104.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125438310-scaled.jpg,05/02/2024,10.0000000,11.0000000,43.0346250000000,6.16525800000000,,Estérel,74449,Observation #74449,https://biolit.fr/observations/observation-74449/,Bittium reticulatum,Cérithe réticulé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130631762.jpg,,,Identifiable +N1,74437,Sortie #74437,https://biolit.fr/sorties/sortie-74437/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202257643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202222995-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162953999_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162500910.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162408216-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130848572.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130824879-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130736911-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130631762.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130423914.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130407172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130313604-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130127558-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130114826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130034425-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130021363-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125910832-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125520827.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125507104.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125438310-scaled.jpg,05/02/2024,10.0000000,11.0000000,43.0346250000000,6.16525800000000,,Estérel,74451,Observation #74451,https://biolit.fr/observations/observation-74451/,Cardita calyculata,Cardite petit calice,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130423914.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130407172.jpg,,,Identifiable +N1,74437,Sortie #74437,https://biolit.fr/sorties/sortie-74437/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202257643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202222995-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162953999_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162500910.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162408216-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130848572.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130824879-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130736911-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130631762.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130423914.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130407172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130313604-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130127558-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130114826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130034425-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130021363-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125910832-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125520827.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125507104.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125438310-scaled.jpg,05/02/2024,10.0000000,11.0000000,43.0346250000000,6.16525800000000,,Estérel,74453,Observation #74453,https://biolit.fr/observations/observation-74453/,Tritia corniculum,Tritia corniculum,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130313604-rotated.jpg,,,Identifiable +N1,74437,Sortie #74437,https://biolit.fr/sorties/sortie-74437/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202257643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202222995-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162953999_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162500910.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162408216-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130848572.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130824879-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130736911-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130631762.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130423914.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130407172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130313604-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130127558-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130114826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130034425-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130021363-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125910832-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125520827.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125507104.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125438310-scaled.jpg,05/02/2024,10.0000000,11.0000000,43.0346250000000,6.16525800000000,,Estérel,74455,Observation #74455,https://biolit.fr/observations/observation-74455/,Diodora graeca,Fissurelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130127558-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130114826-rotated.jpg,,,Identifiable +N1,74437,Sortie #74437,https://biolit.fr/sorties/sortie-74437/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202257643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202222995-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162953999_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162500910.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162408216-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130848572.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130824879-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130736911-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130631762.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130423914.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130407172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130313604-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130127558-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130114826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130034425-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130021363-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125910832-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125520827.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125507104.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125438310-scaled.jpg,05/02/2024,10.0000000,11.0000000,43.0346250000000,6.16525800000000,,Estérel,74457,Observation #74457,https://biolit.fr/observations/observation-74457/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130034425-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130021363-rotated.jpg,,,Identifiable +N1,74437,Sortie #74437,https://biolit.fr/sorties/sortie-74437/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202257643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202222995-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162953999_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162500910.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162408216-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130848572.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130824879-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130736911-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130631762.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130423914.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130407172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130313604-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130127558-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130114826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130034425-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130021363-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125910832-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125520827.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125507104.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125438310-scaled.jpg,05/02/2024,10.0000000,11.0000000,43.0346250000000,6.16525800000000,,Estérel,74459,Observation #74459,https://biolit.fr/observations/observation-74459/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125910832-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125520827.jpg,,,Identifiable +N1,74437,Sortie #74437,https://biolit.fr/sorties/sortie-74437/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202257643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202222995-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162953999_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162500910.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162408216-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130848572.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130824879-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130736911-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130631762.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130423914.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130407172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130313604-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130127558-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130114826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130034425-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130021363-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125910832-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125520827.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125507104.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125438310-scaled.jpg,05/02/2024,10.0000000,11.0000000,43.0346250000000,6.16525800000000,,Estérel,74461,Observation #74461,https://biolit.fr/observations/observation-74461/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125507104.jpg,,,Identifiable +N1,74437,Sortie #74437,https://biolit.fr/sorties/sortie-74437/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202257643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_202222995-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162953999_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162500910.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_162408216-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130848572.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130824879-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130736911-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130631762.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130423914.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130407172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130313604-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130127558-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130114826-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130034425-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_130021363-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125910832-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125520827.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125507104.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125438310-scaled.jpg,05/02/2024,10.0000000,11.0000000,43.0346250000000,6.16525800000000,,Estérel,74463,Observation #74463,https://biolit.fr/observations/observation-74463/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_125438310-scaled.jpg,,,Identifiable +N1,74467,Sortie #74467,https://biolit.fr/sorties/sortie-74467/,Djaileb Ilhem,https://biolit.fr/wp-content/uploads/jet-form-builder/5b72a4644baaa045615f581112ee98dd/2024/05/VideoCapture_20240503-090553.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b72a4644baaa045615f581112ee98dd/2024/05/VideoCapture_20240503-090621.jpg,4/15/2024 0:00,19.0000000,19.0000000,35.8893460000000,0.0457930000000000,,Mostaganem,,,,,,,,,, +N1,74471,Sortie #74471,https://biolit.fr/sorties/sortie-74471/,Djaileb Ilhem,https://biolit.fr/wp-content/uploads/jet-form-builder/5b72a4644baaa045615f581112ee98dd/2024/05/VideoCapture_20240503-090553-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b72a4644baaa045615f581112ee98dd/2024/05/VideoCapture_20240503-090621-1.jpg,4/15/2024 0:00,19.0000000,19.0000000,35.8893460000000,0.0457930000000000,,Mostaganem,,,,,,,,,, +N1,74476,Sortie #74476,https://biolit.fr/sorties/sortie-74476/,Djaileb Ilhem,https://biolit.fr/wp-content/uploads/jet-form-builder/5b72a4644baaa045615f581112ee98dd/2024/05/20240415_180604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b72a4644baaa045615f581112ee98dd/2024/05/20240415_175215-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b72a4644baaa045615f581112ee98dd/2024/05/20240415_180600-scaled.jpg,4/15/2024 0:00,18.0000000,19.0000000,35.9173630000000,0.0581320000000000,,Mostaganem,74480,Observation #74480,https://biolit.fr/observations/observation-74480/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5b72a4644baaa045615f581112ee98dd/2024/05/20240415_180604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b72a4644baaa045615f581112ee98dd/2024/05/20240415_175215-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b72a4644baaa045615f581112ee98dd/2024/05/20240415_180600-scaled.jpg,,,Identifiable +N1,74485,Sortie #74485,https://biolit.fr/sorties/sortie-74485/,BASTIAN Thomas,https://biolit.fr/wp-content/uploads/jet-form-builder/04e09e97f7d6d69f0329a511e09d3511/2024/05/20240503_162408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04e09e97f7d6d69f0329a511e09d3511/2024/05/20240503_162505-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04e09e97f7d6d69f0329a511e09d3511/2024/05/20240503_162554-scaled.jpg,4/29/2024 0:00,14.0000000,15.0000000,48.2619800000000,-4.61225200000000,,plage de Veryac'h,74487,Observation #74487,https://biolit.fr/observations/observation-74487/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/04e09e97f7d6d69f0329a511e09d3511/2024/05/20240503_162408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04e09e97f7d6d69f0329a511e09d3511/2024/05/20240503_162505-scaled.jpg,,TRUE,Identifiable +N1,74485,Sortie #74485,https://biolit.fr/sorties/sortie-74485/,BASTIAN Thomas,https://biolit.fr/wp-content/uploads/jet-form-builder/04e09e97f7d6d69f0329a511e09d3511/2024/05/20240503_162408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04e09e97f7d6d69f0329a511e09d3511/2024/05/20240503_162505-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04e09e97f7d6d69f0329a511e09d3511/2024/05/20240503_162554-scaled.jpg,4/29/2024 0:00,14.0000000,15.0000000,48.2619800000000,-4.61225200000000,,plage de Veryac'h,74489,Observation #74489,https://biolit.fr/observations/observation-74489/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/04e09e97f7d6d69f0329a511e09d3511/2024/05/20240503_162554-scaled.jpg,,TRUE,Identifiable +N1,74492,Sortie #74492,https://biolit.fr/sorties/sortie-74492/,BASTIAN Thomas,https://biolit.fr/wp-content/uploads/jet-form-builder/04e09e97f7d6d69f0329a511e09d3511/2024/05/20240503_162958.jpg,4/29/2024 0:00,15.0000000,17.0000000,48.2392190000000,-4.46355500000000,,plage de Postolonec,74494,Observation #74494,https://biolit.fr/observations/observation-74494/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/04e09e97f7d6d69f0329a511e09d3511/2024/05/20240503_162958.jpg,,TRUE,Identifiable +N1,74497,Sortie #74497,https://biolit.fr/sorties/sortie-74497/,BASTIAN Thomas,https://biolit.fr/wp-content/uploads/jet-form-builder/04e09e97f7d6d69f0329a511e09d3511/2024/05/20240503_163702.jpg,4/30/2024 0:00,17.0000000,18.0000000,48.2184030000000,-4.37891000000000,,plage de Telgruc-sur-Mer,74499,Observation #74499,https://biolit.fr/observations/observation-74499/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/04e09e97f7d6d69f0329a511e09d3511/2024/05/20240503_163702.jpg,,,Ne sais pas +N1,74584,Sortie #74584,https://biolit.fr/sorties/sortie-74584/,Beslay Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7592-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7591-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7589-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7588-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7587-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7586-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7584-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7583-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7582-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7580-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7579-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7577-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7576-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7575-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7573-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7571-4-scaled.jpeg,05/02/2024,18.0000000,19.000005,48.65417,-2.02374,,plage de l'éventaille,74586,Observation #74586,https://biolit.fr/observations/observation-74586/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7591-3-scaled.jpeg,,TRUE,Identifiable +N1,74584,Sortie #74584,https://biolit.fr/sorties/sortie-74584/,Beslay Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7592-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7591-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7589-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7588-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7587-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7586-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7584-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7583-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7582-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7580-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7579-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7577-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7576-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7575-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7573-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7571-4-scaled.jpeg,05/02/2024,18.0000000,19.000005,48.65417,-2.02374,,plage de l'éventaille,74588,Observation #74588,https://biolit.fr/observations/observation-74588/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7576-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7582-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7586-4-scaled.jpeg,,TRUE,Identifiable +N1,74584,Sortie #74584,https://biolit.fr/sorties/sortie-74584/,Beslay Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7592-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7591-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7589-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7588-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7587-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7586-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7584-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7583-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7582-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7580-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7579-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7577-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7576-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7575-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7573-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7571-4-scaled.jpeg,05/02/2024,18.0000000,19.000005,48.65417,-2.02374,,plage de l'éventaille,74590,Observation #74590,https://biolit.fr/observations/observation-74590/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7571-4-scaled.jpeg,,,Identifiable +N1,74584,Sortie #74584,https://biolit.fr/sorties/sortie-74584/,Beslay Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7592-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7591-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7589-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7588-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7587-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7586-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7584-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7583-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7582-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7580-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7579-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7577-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7576-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7575-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7573-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7571-4-scaled.jpeg,05/02/2024,18.0000000,19.000005,48.65417,-2.02374,,plage de l'éventaille,74592,Observation #74592,https://biolit.fr/observations/observation-74592/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7592-4-scaled.jpeg,,TRUE,Identifiable +N1,74584,Sortie #74584,https://biolit.fr/sorties/sortie-74584/,Beslay Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7592-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7591-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7589-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7588-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7587-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7586-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7584-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7583-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7582-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7580-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7579-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7577-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7576-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7575-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7573-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7571-4-scaled.jpeg,05/02/2024,18.0000000,19.000005,48.65417,-2.02374,,plage de l'éventaille,74594,Observation #74594,https://biolit.fr/observations/observation-74594/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7575-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7580-4-scaled.jpeg,,TRUE,Identifiable +N1,74584,Sortie #74584,https://biolit.fr/sorties/sortie-74584/,Beslay Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7592-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7591-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7589-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7588-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7587-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7586-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7584-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7583-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7582-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7580-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7579-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7577-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7576-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7575-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7573-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7571-4-scaled.jpeg,05/02/2024,18.0000000,19.000005,48.65417,-2.02374,,plage de l'éventaille,74596,Observation #74596,https://biolit.fr/observations/observation-74596/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7577-4-scaled.jpeg,,TRUE,Identifiable +N1,74584,Sortie #74584,https://biolit.fr/sorties/sortie-74584/,Beslay Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7592-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7591-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7589-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7588-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7587-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7586-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7584-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7583-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7582-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7580-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7579-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7577-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7576-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7575-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7573-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7571-4-scaled.jpeg,05/02/2024,18.0000000,19.000005,48.65417,-2.02374,,plage de l'éventaille,74598,Observation #74598,https://biolit.fr/observations/observation-74598/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7584-4-scaled.jpeg,,TRUE,Identifiable +N1,74584,Sortie #74584,https://biolit.fr/sorties/sortie-74584/,Beslay Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7592-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7591-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7589-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7588-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7587-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7586-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7584-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7583-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7582-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7580-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7579-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7577-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7576-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7575-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7573-4-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7571-4-scaled.jpeg,05/02/2024,18.0000000,19.000005,48.65417,-2.02374,,plage de l'éventaille,74600,Observation #74600,https://biolit.fr/observations/observation-74600/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5fd92e2a978474cdbc387722cc4a7276/2024/05/IMG_7588-4-scaled.jpeg,,TRUE,Identifiable +N1,74610,Sortie #74610,https://biolit.fr/sorties/sortie-74610/,sylviemuz@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/baudroie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040136.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040098-Copie3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040122.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040091-Copiem.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040142.jpg,05/01/2024,10.0000000,11.0000000,43.6732320,7.222865,,"tombant à andre, villefranche 06",74612,Observation #74612,https://biolit.fr/observations/observation-74612/,Lophius piscatorius,Baudroie,,https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/baudroie.jpg,,TRUE,Identifiable +N1,74610,Sortie #74610,https://biolit.fr/sorties/sortie-74610/,sylviemuz@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/baudroie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040136.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040098-Copie3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040122.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040091-Copiem.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040142.jpg,05/01/2024,10.0000000,11.0000000,43.6732320,7.222865,,"tombant à andre, villefranche 06",74614,Observation #74614,https://biolit.fr/observations/observation-74614/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040136.jpg,,,Identifiable +N1,74610,Sortie #74610,https://biolit.fr/sorties/sortie-74610/,sylviemuz@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/baudroie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040136.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040098-Copie3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040122.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040091-Copiem.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040142.jpg,05/01/2024,10.0000000,11.0000000,43.6732320,7.222865,,"tombant à andre, villefranche 06",74617,Observation #74617,https://biolit.fr/observations/observation-74617/,Edmundsella pedata,Coryphelle mauve,,https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040098-Copie3.jpg,,TRUE,Identifiable +N1,74610,Sortie #74610,https://biolit.fr/sorties/sortie-74610/,sylviemuz@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/baudroie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040136.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040098-Copie3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040122.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040091-Copiem.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040142.jpg,05/01/2024,10.0000000,11.0000000,43.6732320,7.222865,,"tombant à andre, villefranche 06",74619,Observation #74619,https://biolit.fr/observations/observation-74619/,Thetys vagina,Salpe Thétys,,https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040136.jpg,,,Identifiable +N1,74610,Sortie #74610,https://biolit.fr/sorties/sortie-74610/,sylviemuz@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/baudroie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040136.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040098-Copie3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040122.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040091-Copiem.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040142.jpg,05/01/2024,10.0000000,11.0000000,43.6732320,7.222865,,"tombant à andre, villefranche 06",74621,Observation #74621,https://biolit.fr/observations/observation-74621/,Scorpaena scrofa,Chapon,,https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040122.jpg,,TRUE,Identifiable +N1,74610,Sortie #74610,https://biolit.fr/sorties/sortie-74610/,sylviemuz@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/baudroie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040136.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040098-Copie3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040122.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040091-Copiem.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040142.jpg,05/01/2024,10.0000000,11.0000000,43.6732320,7.222865,,"tombant à andre, villefranche 06",74623,Observation #74623,https://biolit.fr/observations/observation-74623/,Sabella pavonina,Sabelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040091-Copiem.jpg,,TRUE,Identifiable +N1,74610,Sortie #74610,https://biolit.fr/sorties/sortie-74610/,sylviemuz@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/baudroie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040136.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040098-Copie3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040122.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040091-Copiem.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040142.jpg,05/01/2024,10.0000000,11.0000000,43.6732320,7.222865,,"tombant à andre, villefranche 06",74625,Observation #74625,https://biolit.fr/observations/observation-74625/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/16e3e237735c0918212766ae7efcdc60/2024/05/P5040142.jpg,,TRUE,Identifiable +N1,74687,Sortie #74687,https://biolit.fr/sorties/sortie-74687/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120722671_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140101611-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144630324.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144725624_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145111818-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145510260.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145516298.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145716508_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150652901-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164315494.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164326275.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164443731.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164452534.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164820220.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_165427575.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171031604.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102439747.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102450717.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103203309_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103151161_HDR-rotated.jpg,05/05/2024,10.0000000,11.0000000,43.0352510000000,6.15368400000000,,Estérel Nord,,,,,,,,,, +N1,74709,Sortie #74709,https://biolit.fr/sorties/sortie-74709/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140101611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144630324-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144725624_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145111818-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145510260-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145516298-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145716508_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150652901-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164315494-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164326275-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164443731-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164452534-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_165427575-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171038742.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171031604-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171237151.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171247628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171256773.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102439747-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102450717-1.jpg,05/05/2024,10.0000000,11.0000000,43.0339530000000,6.16208700000000,,Estérel Nord,74711,Observation #74711,https://biolit.fr/observations/observation-74711/,Acetabularia acetabulum,Acétabulaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140101611-1-scaled.jpg,,TRUE,Ne sais pas +N1,74709,Sortie #74709,https://biolit.fr/sorties/sortie-74709/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140101611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144630324-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144725624_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145111818-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145510260-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145516298-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145716508_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150652901-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164315494-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164326275-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164443731-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164452534-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_165427575-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171038742.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171031604-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171237151.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171247628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171256773.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102439747-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102450717-1.jpg,05/05/2024,10.0000000,11.0000000,43.0339530000000,6.16208700000000,,Estérel Nord,74713,Observation #74713,https://biolit.fr/observations/observation-74713/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144630324-1.jpg,,,Identifiable +N1,74709,Sortie #74709,https://biolit.fr/sorties/sortie-74709/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140101611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144630324-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144725624_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145111818-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145510260-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145516298-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145716508_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150652901-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164315494-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164326275-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164443731-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164452534-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_165427575-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171038742.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171031604-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171237151.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171247628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171256773.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102439747-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102450717-1.jpg,05/05/2024,10.0000000,11.0000000,43.0339530000000,6.16208700000000,,Estérel Nord,74715,Observation #74715,https://biolit.fr/observations/observation-74715/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144725624_HDR-1-scaled.jpg,,TRUE,Ne sais pas +N1,74709,Sortie #74709,https://biolit.fr/sorties/sortie-74709/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140101611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144630324-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144725624_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145111818-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145510260-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145516298-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145716508_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150652901-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164315494-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164326275-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164443731-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164452534-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_165427575-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171038742.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171031604-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171237151.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171247628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171256773.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102439747-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102450717-1.jpg,05/05/2024,10.0000000,11.0000000,43.0339530000000,6.16208700000000,,Estérel Nord,74717,Observation #74717,https://biolit.fr/observations/observation-74717/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145111818-1-scaled.jpg,,,Ne sais pas +N1,74709,Sortie #74709,https://biolit.fr/sorties/sortie-74709/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140101611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144630324-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144725624_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145111818-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145510260-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145516298-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145716508_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150652901-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164315494-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164326275-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164443731-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164452534-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_165427575-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171038742.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171031604-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171237151.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171247628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171256773.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102439747-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102450717-1.jpg,05/05/2024,10.0000000,11.0000000,43.0339530000000,6.16208700000000,,Estérel Nord,74719,Observation #74719,https://biolit.fr/observations/observation-74719/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145510260-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145516298-1.jpg,,TRUE,Identifiable +N1,74709,Sortie #74709,https://biolit.fr/sorties/sortie-74709/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140101611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144630324-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144725624_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145111818-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145510260-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145516298-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145716508_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150652901-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164315494-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164326275-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164443731-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164452534-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_165427575-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171038742.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171031604-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171237151.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171247628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171256773.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102439747-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102450717-1.jpg,05/05/2024,10.0000000,11.0000000,43.0339530000000,6.16208700000000,,Estérel Nord,74721,Observation #74721,https://biolit.fr/observations/observation-74721/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145716508_HDR-1.jpg,,,Ne sais pas +N1,74709,Sortie #74709,https://biolit.fr/sorties/sortie-74709/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140101611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144630324-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144725624_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145111818-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145510260-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145516298-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145716508_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150652901-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164315494-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164326275-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164443731-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164452534-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_165427575-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171038742.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171031604-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171237151.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171247628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171256773.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102439747-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102450717-1.jpg,05/05/2024,10.0000000,11.0000000,43.0339530000000,6.16208700000000,,Estérel Nord,74723,Observation #74723,https://biolit.fr/observations/observation-74723/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150652901-1-scaled.jpg,,TRUE,Ne sais pas +N1,74709,Sortie #74709,https://biolit.fr/sorties/sortie-74709/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140101611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144630324-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144725624_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145111818-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145510260-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145516298-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145716508_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150652901-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164315494-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164326275-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164443731-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164452534-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_165427575-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171038742.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171031604-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171237151.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171247628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171256773.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102439747-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102450717-1.jpg,05/05/2024,10.0000000,11.0000000,43.0339530000000,6.16208700000000,,Estérel Nord,74727,Observation #74727,https://biolit.fr/observations/observation-74727/,Spondylus gaederopus,Spondyle pied-d'âne,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164443731-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164452534-1.jpg,,,Identifiable +N1,74709,Sortie #74709,https://biolit.fr/sorties/sortie-74709/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140101611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144630324-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144725624_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145111818-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145510260-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145516298-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145716508_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150652901-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164315494-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164326275-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164443731-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164452534-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_165427575-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171038742.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171031604-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171237151.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171247628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171256773.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102439747-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102450717-1.jpg,05/05/2024,10.0000000,11.0000000,43.0339530000000,6.16208700000000,,Estérel Nord,74729,Observation #74729,https://biolit.fr/observations/observation-74729/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_165427575-1.jpg,,TRUE,Identifiable +N1,74709,Sortie #74709,https://biolit.fr/sorties/sortie-74709/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140101611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144630324-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144725624_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145111818-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145510260-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145516298-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145716508_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150652901-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164315494-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164326275-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164443731-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164452534-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_165427575-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171038742.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171031604-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171237151.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171247628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171256773.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102439747-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102450717-1.jpg,05/05/2024,10.0000000,11.0000000,43.0339530000000,6.16208700000000,,Estérel Nord,74731,Observation #74731,https://biolit.fr/observations/observation-74731/,Tritia pellucida,Cyclope translucide,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171038742.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171031604-1.jpg,,,Identifiable +N1,74709,Sortie #74709,https://biolit.fr/sorties/sortie-74709/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140101611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144630324-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144725624_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145111818-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145510260-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145516298-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145716508_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150652901-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164315494-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164326275-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164443731-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164452534-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_165427575-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171038742.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171031604-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171237151.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171247628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171256773.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102439747-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102450717-1.jpg,05/05/2024,10.0000000,11.0000000,43.0339530000000,6.16208700000000,,Estérel Nord,74733,Observation #74733,https://biolit.fr/observations/observation-74733/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171237151.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171247628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171256773.jpg,,,Identifiable +N1,74709,Sortie #74709,https://biolit.fr/sorties/sortie-74709/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140101611-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144630324-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144725624_HDR-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145111818-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145510260-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145516298-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_145716508_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150652901-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164315494-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164326275-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164443731-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164452534-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_165427575-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171038742.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171031604-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171237151.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171247628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171256773.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102439747-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102450717-1.jpg,05/05/2024,10.0000000,11.0000000,43.0339530000000,6.16208700000000,,Estérel Nord,74735,Observation #74735,https://biolit.fr/observations/observation-74735/,Coscinasterias tenuispina,Etoile de mer épineuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102439747-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_102450717-1.jpg,,TRUE,Ne sais pas +N1,74757,Sortie #74757,https://biolit.fr/sorties/sortie-74757/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103203309_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103151161_HDR-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143021613_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143039139_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171101534-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150453801-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144141334_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143640545_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_141903877_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140401794_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140331477_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121048322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121013419_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120607633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120604318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120214008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_115922415_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113024766-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113020312-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_112943081-scaled.jpg,05/05/2024,10.0000000,11.0000000,43.0340080000000,6.16216000000000,,Estérel Nord,74759,Observation #74759,https://biolit.fr/observations/observation-74759/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103203309_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103151161_HDR-1-rotated.jpg,,,Ne sais pas +N1,74757,Sortie #74757,https://biolit.fr/sorties/sortie-74757/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103203309_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103151161_HDR-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143021613_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143039139_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171101534-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150453801-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144141334_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143640545_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_141903877_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140401794_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140331477_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121048322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121013419_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120607633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120604318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120214008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_115922415_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113024766-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113020312-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_112943081-scaled.jpg,05/05/2024,10.0000000,11.0000000,43.0340080000000,6.16216000000000,,Estérel Nord,74761,Observation #74761,https://biolit.fr/observations/observation-74761/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143021613_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143039139_HDR.jpg,,,Identifiable +N1,74757,Sortie #74757,https://biolit.fr/sorties/sortie-74757/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103203309_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103151161_HDR-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143021613_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143039139_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171101534-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150453801-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144141334_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143640545_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_141903877_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140401794_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140331477_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121048322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121013419_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120607633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120604318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120214008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_115922415_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113024766-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113020312-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_112943081-scaled.jpg,05/05/2024,10.0000000,11.0000000,43.0340080000000,6.16216000000000,,Estérel Nord,74763,Observation #74763,https://biolit.fr/observations/observation-74763/,Tritia neritea,Cyclope néritoïde,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171101534-rotated.jpg,,,Identifiable +N1,74757,Sortie #74757,https://biolit.fr/sorties/sortie-74757/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103203309_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103151161_HDR-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143021613_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143039139_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171101534-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150453801-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144141334_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143640545_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_141903877_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140401794_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140331477_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121048322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121013419_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120607633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120604318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120214008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_115922415_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113024766-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113020312-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_112943081-scaled.jpg,05/05/2024,10.0000000,11.0000000,43.0340080000000,6.16216000000000,,Estérel Nord,74765,Observation #74765,https://biolit.fr/observations/observation-74765/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150453801-scaled.jpg,,TRUE,Ne sais pas +N1,74757,Sortie #74757,https://biolit.fr/sorties/sortie-74757/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103203309_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103151161_HDR-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143021613_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143039139_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171101534-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150453801-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144141334_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143640545_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_141903877_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140401794_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140331477_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121048322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121013419_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120607633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120604318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120214008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_115922415_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113024766-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113020312-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_112943081-scaled.jpg,05/05/2024,10.0000000,11.0000000,43.0340080000000,6.16216000000000,,Estérel Nord,74767,Observation #74767,https://biolit.fr/observations/observation-74767/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144141334_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143640545_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140331477_HDR-scaled.jpg,,TRUE,Identifiable +N1,74757,Sortie #74757,https://biolit.fr/sorties/sortie-74757/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103203309_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103151161_HDR-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143021613_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143039139_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171101534-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150453801-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144141334_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143640545_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_141903877_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140401794_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140331477_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121048322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121013419_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120607633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120604318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120214008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_115922415_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113024766-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113020312-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_112943081-scaled.jpg,05/05/2024,10.0000000,11.0000000,43.0340080000000,6.16216000000000,,Estérel Nord,74769,Observation #74769,https://biolit.fr/observations/observation-74769/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_141903877_HDR-rotated.jpg,,,Identifiable +N1,74757,Sortie #74757,https://biolit.fr/sorties/sortie-74757/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103203309_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103151161_HDR-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143021613_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143039139_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171101534-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150453801-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144141334_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143640545_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_141903877_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140401794_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140331477_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121048322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121013419_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120607633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120604318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120214008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_115922415_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113024766-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113020312-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_112943081-scaled.jpg,05/05/2024,10.0000000,11.0000000,43.0340080000000,6.16216000000000,,Estérel Nord,74771,Observation #74771,https://biolit.fr/observations/observation-74771/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140401794_HDR-scaled.jpg,,TRUE,Identifiable +N1,74757,Sortie #74757,https://biolit.fr/sorties/sortie-74757/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103203309_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103151161_HDR-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143021613_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143039139_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171101534-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150453801-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144141334_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143640545_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_141903877_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140401794_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140331477_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121048322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121013419_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120607633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120604318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120214008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_115922415_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113024766-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113020312-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_112943081-scaled.jpg,05/05/2024,10.0000000,11.0000000,43.0340080000000,6.16216000000000,,Estérel Nord,74773,Observation #74773,https://biolit.fr/observations/observation-74773/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121048322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120214008.jpg,,TRUE,Identifiable +N1,74757,Sortie #74757,https://biolit.fr/sorties/sortie-74757/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103203309_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103151161_HDR-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143021613_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143039139_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171101534-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150453801-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144141334_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143640545_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_141903877_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140401794_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140331477_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121048322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121013419_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120607633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120604318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120214008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_115922415_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113024766-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113020312-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_112943081-scaled.jpg,05/05/2024,10.0000000,11.0000000,43.0340080000000,6.16216000000000,,Estérel Nord,74775,Observation #74775,https://biolit.fr/observations/observation-74775/,Dictyota fasciola,Dictyote rubanée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121013419_HDR-rotated.jpg,,TRUE,Ne sais pas +N1,74757,Sortie #74757,https://biolit.fr/sorties/sortie-74757/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103203309_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103151161_HDR-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143021613_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143039139_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171101534-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150453801-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144141334_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143640545_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_141903877_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140401794_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140331477_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121048322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121013419_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120607633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120604318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120214008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_115922415_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113024766-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113020312-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_112943081-scaled.jpg,05/05/2024,10.0000000,11.0000000,43.0340080000000,6.16216000000000,,Estérel Nord,74777,Observation #74777,https://biolit.fr/observations/observation-74777/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120607633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120604318-scaled.jpg,,TRUE,Identifiable +N1,74757,Sortie #74757,https://biolit.fr/sorties/sortie-74757/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103203309_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103151161_HDR-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143021613_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143039139_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171101534-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150453801-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144141334_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143640545_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_141903877_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140401794_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140331477_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121048322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121013419_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120607633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120604318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120214008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_115922415_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113024766-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113020312-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_112943081-scaled.jpg,05/05/2024,10.0000000,11.0000000,43.0340080000000,6.16216000000000,,Estérel Nord,74779,Observation #74779,https://biolit.fr/observations/observation-74779/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_115922415_HDR-rotated.jpg,,TRUE,Identifiable +N1,74757,Sortie #74757,https://biolit.fr/sorties/sortie-74757/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103203309_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103151161_HDR-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143021613_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143039139_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171101534-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150453801-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144141334_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143640545_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_141903877_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140401794_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140331477_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121048322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121013419_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120607633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120604318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120214008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_115922415_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113024766-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113020312-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_112943081-scaled.jpg,05/05/2024,10.0000000,11.0000000,43.0340080000000,6.16216000000000,,Estérel Nord,74781,Observation #74781,https://biolit.fr/observations/observation-74781/,Caulerpa taxifolia,Caulerpe à feuilles d'if,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113024766-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113020312-rotated.jpg,,TRUE,Ne sais pas +N1,74757,Sortie #74757,https://biolit.fr/sorties/sortie-74757/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103203309_HDR-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240505_103151161_HDR-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143021613_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143039139_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171101534-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_150453801-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_144141334_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_143640545_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_141903877_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140401794_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_140331477_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121048322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_121013419_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120607633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120604318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_120214008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_115922415_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113024766-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_113020312-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_112943081-scaled.jpg,05/05/2024,10.0000000,11.0000000,43.0340080000000,6.16216000000000,,Estérel Nord,74783,Observation #74783,https://biolit.fr/observations/observation-74783/,Dictyota spiralis,Dictyote spatulée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_112943081-scaled.jpg,,,Ne sais pas +N1,74789,Sortie #74789,https://biolit.fr/sorties/sortie-74789/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_103103701-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_103111904_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_104325150_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_1045402282.jpg,05/04/2024,10.0000000,11.0000000,43.031997000000,6.16591100000000,,Giens Sud,74791,Observation #74791,https://biolit.fr/observations/observation-74791/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_103103701-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_103111904_HDR-rotated.jpg,,,Ne sais pas +N1,74789,Sortie #74789,https://biolit.fr/sorties/sortie-74789/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_103103701-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_103111904_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_104325150_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_1045402282.jpg,05/04/2024,10.0000000,11.0000000,43.031997000000,6.16591100000000,,Giens Sud,74793,Observation #74793,https://biolit.fr/observations/observation-74793/,Flabellia petiolata,Udotée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_104325150_HDR.jpg,,TRUE,Identifiable +N1,74789,Sortie #74789,https://biolit.fr/sorties/sortie-74789/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_103103701-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240502_103111904_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_104325150_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_1045402282.jpg,05/04/2024,10.0000000,11.0000000,43.031997000000,6.16591100000000,,Giens Sud,74795,Observation #74795,https://biolit.fr/observations/observation-74795/,Jania rubens,Janie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_1045402282.jpg,,,Identifiable +N1,74810,Sortie #74810,https://biolit.fr/sorties/sortie-74810/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150511393_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150714250_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150726715.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_151057896-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_153127603_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_163706887.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164515173.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171433828.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171503430.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171520752.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193352638.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193414323.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193423362.jpg,05/03/2024,15.0000000,15.0000000,43.0399270000000,6.15129600000000,,Giens Est sable,74812,Observation #74812,https://biolit.fr/observations/observation-74812/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150511393_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150714250_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150726715.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171503430.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171520752.jpg,,,Identifiable +N1,74810,Sortie #74810,https://biolit.fr/sorties/sortie-74810/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150511393_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150714250_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150726715.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_151057896-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_153127603_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_163706887.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164515173.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171433828.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171503430.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171520752.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193352638.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193414323.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193423362.jpg,05/03/2024,15.0000000,15.0000000,43.0399270000000,6.15129600000000,,Giens Est sable,74814,Observation #74814,https://biolit.fr/observations/observation-74814/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_151057896-scaled.jpg,,,Identifiable +N1,74810,Sortie #74810,https://biolit.fr/sorties/sortie-74810/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150511393_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150714250_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150726715.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_151057896-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_153127603_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_163706887.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164515173.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171433828.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171503430.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171520752.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193352638.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193414323.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193423362.jpg,05/03/2024,15.0000000,15.0000000,43.0399270000000,6.15129600000000,,Giens Est sable,74816,Observation #74816,https://biolit.fr/observations/observation-74816/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164515173.jpg,,,Identifiable +N1,74810,Sortie #74810,https://biolit.fr/sorties/sortie-74810/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150511393_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150714250_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150726715.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_151057896-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_153127603_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_163706887.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164515173.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171433828.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171503430.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171520752.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193352638.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193414323.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193423362.jpg,05/03/2024,15.0000000,15.0000000,43.0399270000000,6.15129600000000,,Giens Est sable,74818,Observation #74818,https://biolit.fr/observations/observation-74818/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171433828.jpg,,,Identifiable +N1,74810,Sortie #74810,https://biolit.fr/sorties/sortie-74810/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150511393_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150714250_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150726715.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_151057896-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_153127603_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_163706887.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164515173.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171433828.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171503430.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171520752.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193352638.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193414323.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193423362.jpg,05/03/2024,15.0000000,15.0000000,43.0399270000000,6.15129600000000,,Giens Est sable,74820,Observation #74820,https://biolit.fr/observations/observation-74820/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193352638.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193414323.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193423362.jpg,,,Identifiable +N1,74810,Sortie #74810,https://biolit.fr/sorties/sortie-74810/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150511393_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150714250_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150726715.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_151057896-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_153127603_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_163706887.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164515173.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171433828.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171503430.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171520752.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193352638.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193414323.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193423362.jpg,05/03/2024,15.0000000,15.0000000,43.0399270000000,6.15129600000000,,Giens Est sable,74822,Observation #74822,https://biolit.fr/observations/observation-74822/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_163706887.jpg,,TRUE,Identifiable +N1,74810,Sortie #74810,https://biolit.fr/sorties/sortie-74810/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150511393_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150714250_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_150726715.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_151057896-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_153127603_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_163706887.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_164515173.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171433828.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171503430.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240504_171520752.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193352638.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193414323.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240506_193423362.jpg,05/03/2024,15.0000000,15.0000000,43.0399270000000,6.15129600000000,,Giens Est sable,74824,Observation #74824,https://biolit.fr/observations/observation-74824/,Pallenis maritima,Astérolide maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240503_153127603_HDR-scaled.jpg,,TRUE,Identifiable +N1,74828,Sortie #74828,https://biolit.fr/sorties/sortie-74828/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_9486-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_9487-scaled.jpg,05/04/2024,14.0000000,14.0000000,43.034525000000,6.16371200000000,,Giens Sus-Est,,,,,,,,,, +N1,74832,Sortie #74832,https://biolit.fr/sorties/sortie-74832/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_9486-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_9487-1-scaled.jpg,05/04/2024,14.0000000,14.0000000,43.0345440000000,6.1635460000000,,Giens Sus-Est,74834,Observation #74834,https://biolit.fr/observations/observation-74834/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_9486-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_9487-1-scaled.jpg,,TRUE,Identifiable +N1,74846,Sortie #74846,https://biolit.fr/sorties/sortie-74846/,Le Moal Nathalie,https://biolit.fr/wp-content/uploads/jet-form-builder/ecdbc5b27288c8b75ca677fa834bbbea/2024/05/20240510_142617-1-scaled.jpg,05/10/2024,14.0:26,14.0:26,48.574775000000,-4.6455430000000,,Coulouarn - Saint Pabu,74848,Observation #74848,https://biolit.fr/observations/observation-74848/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/ecdbc5b27288c8b75ca677fa834bbbea/2024/05/20240510_142617-1-scaled.jpg,,TRUE,Ne sais pas +N1,74854,Sortie #74854,https://biolit.fr/sorties/sortie-74854/,AILERONS,https://biolit.fr/wp-content/uploads/jet-form-builder/104a3ad0debfd3bf7c7f67cd28f4351b/2024/05/IMG_20240512_100843-scaled.jpg,05/12/2024,9.0000000,10.0000000,43.5236870000000,3.92484100000000,,"Plage de Palavas, Maison de la Mer",74856,Observation #74856,https://biolit.fr/observations/observation-74856/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/104a3ad0debfd3bf7c7f67cd28f4351b/2024/05/IMG_20240512_100843-scaled.jpg,,,Identifiable +N1,74878,Sortie #74878,https://biolit.fr/sorties/sortie-74878/,Varrier Marie Helene,https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG_20240507_151839_395.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0027.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0023.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0000.jpg,05/07/2024,14.0000000,15.0:45,49.6482340000000,0.154009000000000,GEMEL Normandie,Plage Antifer Saint Jouin de Bruneval,74880,Observation #74880,https://biolit.fr/observations/observation-74880/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0030.jpg,,,Ne sais pas +N1,74878,Sortie #74878,https://biolit.fr/sorties/sortie-74878/,Varrier Marie Helene,https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG_20240507_151839_395.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0027.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0023.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0000.jpg,05/07/2024,14.0000000,15.0:45,49.6482340000000,0.154009000000000,GEMEL Normandie,Plage Antifer Saint Jouin de Bruneval,74882,Observation #74882,https://biolit.fr/observations/observation-74882/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG_20240507_151839_395.jpg,,,Ne sais pas +N1,74878,Sortie #74878,https://biolit.fr/sorties/sortie-74878/,Varrier Marie Helene,https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG_20240507_151839_395.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0027.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0023.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0000.jpg,05/07/2024,14.0000000,15.0:45,49.6482340000000,0.154009000000000,GEMEL Normandie,Plage Antifer Saint Jouin de Bruneval,74884,Observation #74884,https://biolit.fr/observations/observation-74884/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0000.jpg,,,Ne sais pas +N1,74878,Sortie #74878,https://biolit.fr/sorties/sortie-74878/,Varrier Marie Helene,https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG_20240507_151839_395.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0027.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0023.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0000.jpg,05/07/2024,14.0000000,15.0:45,49.6482340000000,0.154009000000000,GEMEL Normandie,Plage Antifer Saint Jouin de Bruneval,74886,Observation #74886,https://biolit.fr/observations/observation-74886/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0029.jpg,,,Ne sais pas +N1,74878,Sortie #74878,https://biolit.fr/sorties/sortie-74878/,Varrier Marie Helene,https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG_20240507_151839_395.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0027.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0023.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0000.jpg,05/07/2024,14.0000000,15.0:45,49.6482340000000,0.154009000000000,GEMEL Normandie,Plage Antifer Saint Jouin de Bruneval,74888,Observation #74888,https://biolit.fr/observations/observation-74888/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0027.jpg,,TRUE,Ne sais pas +N1,74878,Sortie #74878,https://biolit.fr/sorties/sortie-74878/,Varrier Marie Helene,https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG_20240507_151839_395.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0027.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0023.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0000.jpg,05/07/2024,14.0000000,15.0:45,49.6482340000000,0.154009000000000,GEMEL Normandie,Plage Antifer Saint Jouin de Bruneval,74890,Observation #74890,https://biolit.fr/observations/observation-74890/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/14a937f0060f9b9e23a158149145ef61/2024/05/IMG-20240507-WA0025.jpg,,,Ne sais pas +N1,74898,Sortie #74898,https://biolit.fr/sorties/sortie-74898/,loiret francoise,https://biolit.fr/wp-content/uploads/jet-form-builder/ee140a939d9bc4a1964f3543e85a7ab7/2024/05/DAUPHINS.jpg,05/11/2024,21.0000000,22.0000000,47.4170680000000,-3.08647200000000,,BELLE ILE,,,,,,,,,, +N1,74915,Sortie #74915,https://biolit.fr/sorties/sortie-74915/,Colombier Jean-christophe,https://biolit.fr/wp-content/uploads/jet-form-builder/44e0d41337489840b454515bd7ff1877/2024/05/2024_05_14-18_36-Office-Lens.jpg,5/14/2024 0:00,16.0000000,17.0000000,47.7688420000000,-3.58769600000000,,Plage de la roche percée - Clohars-Carnoet,,,,,,,,,, +N1,74918,Sortie #74918,https://biolit.fr/sorties/sortie-74918/,Colombier Jean-christophe,https://biolit.fr/wp-content/uploads/jet-form-builder/44e0d41337489840b454515bd7ff1877/2024/05/2024_05_14-18_36-Office-Lens-1.jpg,5/14/2024 0:00,16.0000000,17.0000000,47.7688420000000,-3.58769600000000,,Plage de la roche percée - Clohars-Carnoet,,,,,,,,,, +N1,74929,Sortie #74929,https://biolit.fr/sorties/sortie-74929/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_172641109.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_172657102.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_172857076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_172905828.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_172913888.jpg,1/28/2024 0:00,12.0000000,12.0000000,43.2397010000000,5.36239100000000,,Plage de l’Anse du Bain des Dames,74931,Observation #74931,https://biolit.fr/observations/observation-74931/,Jujubinus exasperatus,Troque pygmée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_172641109.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_172657102.jpg,,,Identifiable +N1,74929,Sortie #74929,https://biolit.fr/sorties/sortie-74929/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_172641109.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_172657102.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_172857076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_172905828.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_172913888.jpg,1/28/2024 0:00,12.0000000,12.0000000,43.2397010000000,5.36239100000000,,Plage de l’Anse du Bain des Dames,74933,Observation #74933,https://biolit.fr/observations/observation-74933/,Jujubinus striatus,Troque jujube striée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_172857076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_172905828.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_172913888.jpg,,,Identifiable +N1,74939,Sortie #74939,https://biolit.fr/sorties/sortie-74939/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_153122835_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_153215001_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_153256198.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_154109451.jpg,05/04/2024,10.0000000,10.0000000,43.0342550000000,6.1625480000000,,Giens Sus-Est,74941,Observation #74941,https://biolit.fr/observations/observation-74941/,Jujubinus exasperatus,Troque pygmée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_153122835_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_153215001_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_153256198.jpg,,,Identifiable +N1,74939,Sortie #74939,https://biolit.fr/sorties/sortie-74939/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_153122835_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_153215001_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_153256198.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_154109451.jpg,05/04/2024,10.0000000,10.0000000,43.0342550000000,6.1625480000000,,Giens Sus-Est,74943,Observation #74943,https://biolit.fr/observations/observation-74943/,Jujubinus striatus,Troque jujube striée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_154109451.jpg,,,Identifiable +N1,74952,Sortie #74952,https://biolit.fr/sorties/sortie-74952/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_143552864_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_144442894-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_144447001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145202404_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145419746_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145430506.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145452818.jpg,05/11/2024,14.0000000,15.0000000,43.3501840000000,4.87883800000000,,Plage Napoléon,74956,Observation #74956,https://biolit.fr/observations/observation-74956/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_144442894-scaled.jpg,,,Identifiable +N1,74952,Sortie #74952,https://biolit.fr/sorties/sortie-74952/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_143552864_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_144442894-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_144447001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145202404_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145419746_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145430506.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145452818.jpg,05/11/2024,14.0000000,15.0000000,43.3501840000000,4.87883800000000,,Plage Napoléon,74958,Observation #74958,https://biolit.fr/observations/observation-74958/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_144447001-scaled.jpg,,,Identifiable +N1,74952,Sortie #74952,https://biolit.fr/sorties/sortie-74952/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_143552864_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_144442894-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_144447001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145202404_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145419746_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145430506.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145452818.jpg,05/11/2024,14.0000000,15.0000000,43.3501840000000,4.87883800000000,,Plage Napoléon,74960,Observation #74960,https://biolit.fr/observations/observation-74960/,Loripes orbiculatus,Loripes orbiculaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145202404_HDR.jpg,,,Identifiable +N1,74952,Sortie #74952,https://biolit.fr/sorties/sortie-74952/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_143552864_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_144442894-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_144447001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145202404_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145419746_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145430506.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145452818.jpg,05/11/2024,14.0000000,15.0000000,43.3501840000000,4.87883800000000,,Plage Napoléon,74962,Observation #74962,https://biolit.fr/observations/observation-74962/,Barnea candida,Pholade blanche,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145419746_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145430506.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240511_145452818.jpg,,TRUE,Identifiable +N1,74967,Sortie #74967,https://biolit.fr/sorties/sortie-74967/,RAHHALI Chaimae,https://biolit.fr/wp-content/uploads/jet-form-builder/fbefb71e86a4176d6a41132f6d947a7b/2024/05/Forteresse_Jadida_01-2-scaled.jpeg,5/15/2024 0:00,13.0000000,17.0000000,33.2316330,-8.5007120,,El jadida,,,,,,,,,, +N1,74972,Sortie #74972,https://biolit.fr/sorties/sortie-74972/,RAHHALI Chaimae,https://biolit.fr/wp-content/uploads/jet-form-builder/fbefb71e86a4176d6a41132f6d947a7b/2024/05/3000x2000-scaled.jpeg,5/15/2024 0:00,13.0000000,17.0000000,31.507026,-9.76927,,Essaouira,,,,,,,,,, +N1,74979,Sortie #74979,https://biolit.fr/sorties/sortie-74979/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/05/tempImageIbI3eB-scaled.jpg,4/24/2024 0:00,12.0000000,12.0000000,43.4569500000000,3.81669800000000,Planète Mer,Frontignan,74981,Observation #74981,https://biolit.fr/observations/observation-74981/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/05/tempImageIbI3eB-scaled.jpg,,TRUE,Identifiable +N1,74984,Sortie #74984,https://biolit.fr/sorties/sortie-74984/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/05/monodonte.jpg,5/15/2024 0:00,13.0:34,14.000005,48.6385960000000,-2.076416000000,Planète Mer,'-èè-(,,,,,,,,,, +N1,75014,Sortie #75014,https://biolit.fr/sorties/sortie-75014/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4728-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4730-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4734-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4735-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4740-scaled.jpg,05/09/2024,16.0000000,16.0000000,47.1312680000000,-2.23049100000000,,Préfailles,75016,Observation #75016,https://biolit.fr/observations/observation-75016/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4728-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4730-scaled.jpg,,TRUE,Identifiable +N1,75014,Sortie #75014,https://biolit.fr/sorties/sortie-75014/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4728-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4730-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4734-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4735-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4740-scaled.jpg,05/09/2024,16.0000000,16.0000000,47.1312680000000,-2.23049100000000,,Préfailles,75018,Observation #75018,https://biolit.fr/observations/observation-75018/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4732-scaled.jpg,,TRUE,Identifiable +N1,75014,Sortie #75014,https://biolit.fr/sorties/sortie-75014/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4728-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4730-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4734-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4735-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4740-scaled.jpg,05/09/2024,16.0000000,16.0000000,47.1312680000000,-2.23049100000000,,Préfailles,75020,Observation #75020,https://biolit.fr/observations/observation-75020/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4735-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4736-scaled.jpg,,TRUE,Identifiable +N1,75014,Sortie #75014,https://biolit.fr/sorties/sortie-75014/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4728-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4730-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4734-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4735-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4740-scaled.jpg,05/09/2024,16.0000000,16.0000000,47.1312680000000,-2.23049100000000,,Préfailles,75022,Observation #75022,https://biolit.fr/observations/observation-75022/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4740-scaled.jpg,,TRUE,Identifiable +N1,75014,Sortie #75014,https://biolit.fr/sorties/sortie-75014/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4728-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4730-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4734-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4735-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4740-scaled.jpg,05/09/2024,16.0000000,16.0000000,47.1312680000000,-2.23049100000000,,Préfailles,75024,Observation #75024,https://biolit.fr/observations/observation-75024/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4734-scaled.jpg,,,Ne sais pas +N1,75014,Sortie #75014,https://biolit.fr/sorties/sortie-75014/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4728-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4730-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4734-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4735-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4740-scaled.jpg,05/09/2024,16.0000000,16.0000000,47.1312680000000,-2.23049100000000,,Préfailles,75026,Observation #75026,https://biolit.fr/observations/observation-75026/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4737-scaled.jpg,,,Ne sais pas +N1,75031,Sortie #75031,https://biolit.fr/sorties/sortie-75031/,Marwen Charon,https://biolit.fr/wp-content/uploads/jet-form-builder/00ebb9e5156458eafe699000fd7dc07e/2024/05/Screenshot_2024-05-16-17-07-00-585_com.android.chrome-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/00ebb9e5156458eafe699000fd7dc07e/2024/05/Screenshot_2024-05-16-17-06-47-742_com.android.chrome-scaled.jpg,5/18/2024 0:00,20.0:34,22.000005,24.3667790000000,-12.9361050000000,,Bernie en retz,,,,,,,,,, +N1,75034,Sortie #75034,https://biolit.fr/sorties/sortie-75034/,Allory Pierre-Yves,https://biolit.fr/wp-content/uploads/jet-form-builder/c18157d07e1278e5f88893fd571eb7bf/2024/05/1000016260-scaled.jpg,5/19/2024 0:00,15.0000000,15.0000000,48.6324180,-2.2550650,,Grande plage,75036,Observation #75036,https://biolit.fr/observations/observation-75036/,Dosinia exoleta,Dosinie radiée,,https://biolit.fr/wp-content/uploads/jet-form-builder/c18157d07e1278e5f88893fd571eb7bf/2024/05/1000016260-scaled.jpg,,,Identifiable +N1,75042,Sortie #75042,https://biolit.fr/sorties/sortie-75042/,Eskenazi Henri,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7b43300a8619ca87f70293722ac13f/2024/05/IMG_0998-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7b43300a8619ca87f70293722ac13f/2024/05/IMG_0997-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7b43300a8619ca87f70293722ac13f/2024/05/IMG_0995-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7b43300a8619ca87f70293722ac13f/2024/05/IMG_0994-scaled.jpeg,5/19/2024 0:00,14.0000000,20.0000000,43.2109590000000,5.42170800000000,,Sormiou,75044,Observation #75044,https://biolit.fr/observations/observation-75044/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7b43300a8619ca87f70293722ac13f/2024/05/IMG_0998-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7b43300a8619ca87f70293722ac13f/2024/05/IMG_0997-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7b43300a8619ca87f70293722ac13f/2024/05/IMG_0995-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7b43300a8619ca87f70293722ac13f/2024/05/IMG_0994-scaled.jpeg,,TRUE,Identifiable +N1,75048,Sortie #75048,https://biolit.fr/sorties/sortie-75048/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/05/tempImagei8bvoI-scaled.jpg,5/17/2024 0:00,16.0000000,16.0000000,43.1665170000000,5.60611500000000,,Calanque du Mugel,75050,Observation #75050,https://biolit.fr/observations/observation-75050/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/05/tempImagei8bvoI-scaled.jpg,,TRUE,Identifiable +N1,75053,Sortie #75053,https://biolit.fr/sorties/sortie-75053/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/05/tempImagewPpceG-scaled.jpg,5/18/2024 0:00,14.0000000,14.0000000,43.2842680000000,5.31585700000000,,Frioul,75055,Observation #75055,https://biolit.fr/observations/observation-75055/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/05/tempImagewPpceG-scaled.jpg,,TRUE,Identifiable +N1,75058,Sortie #75058,https://biolit.fr/sorties/sortie-75058/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/05/tempImagetgt8bq-scaled.jpg,5/18/2024 0:00,14.0000000,14.0000000,43.2842870000000,5.315942000000,,Frioul,75060,Observation #75060,https://biolit.fr/observations/observation-75060/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/05/tempImagetgt8bq-scaled.jpg,,TRUE,non-identifiable +N1,75109,Sortie #75109,https://biolit.fr/sorties/sortie-75109/,VIAL Thérèse,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/05/IMG_20240520_152619573_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/05/IMG_20240520_152640910_HDR-scaled.jpg,5/20/2024 0:00,14.0000000,15.0000000,43.2900680000000,5.35557800000000,,Plage des Catalans,75111,Observation #75111,https://biolit.fr/observations/observation-75111/,Pallenis maritima,Astérolide maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/05/IMG_20240520_152619573_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/05/IMG_20240520_152640910_HDR-scaled.jpg,,TRUE,Identifiable +N1,75116,Sortie #75116,https://biolit.fr/sorties/sortie-75116/,VIAL Thérèse,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/05/IMG_20240521_121209946_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/05/IMG_20240521_112456666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/05/IMG_20240521_112300869_HDR-scaled.jpg,5/21/2024 0:00,11.0000000,12.0000000,43.2847040000000,5.34948300000000,,Vallon des Auffes,75120,Observation #75120,https://biolit.fr/observations/observation-75120/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/05/IMG_20240521_121209946_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/05/IMG_20240521_112456666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/05/IMG_20240521_112300869_HDR-scaled.jpg,,TRUE,Identifiable +N1,75171,Sortie #75171,https://biolit.fr/sorties/sortie-75171/,Chevalier Raphaël,https://biolit.fr/wp-content/uploads/jet-form-builder/54141746fea9bf833df52df7dca0838e/2024/05/IMG_20240522_101931-scaled.jpg,5/22/2024 0:00,10.0000000,11.0000000,43.2148430000000,5.34295500000000,,Anse de la maronaise,75173,Observation #75173,https://biolit.fr/observations/observation-75173/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/54141746fea9bf833df52df7dca0838e/2024/05/IMG_20240522_101931-scaled.jpg,,TRUE,Identifiable +N1,75177,Sortie #75177,https://biolit.fr/sorties/sortie-75177/,Chevalier Raphaël,https://biolit.fr/wp-content/uploads/jet-form-builder/54141746fea9bf833df52df7dca0838e/2024/05/IMG_20240522_101648-scaled.jpg,5/22/2024 0:00,10.0000000,11.0000000,43.2148430000000,5.34295500000000,,Anse de la maronaise,,,,,,,,,, +N1,75180,Sortie #75180,https://biolit.fr/sorties/sortie-75180/,Chevalier Raphaël,https://biolit.fr/wp-content/uploads/jet-form-builder/54141746fea9bf833df52df7dca0838e/2024/05/IMG_20240522_101648-1-scaled.jpg,5/22/2024 0:00,10.0000000,11.0000000,43.2148310000000,5.34293800000000,,Anse de la maronaise,75182,Observation #75182,https://biolit.fr/observations/observation-75182/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/54141746fea9bf833df52df7dca0838e/2024/05/IMG_20240522_101648-1-scaled.jpg,,TRUE,Identifiable +N1,75188,Sortie #75188,https://biolit.fr/sorties/sortie-75188/,blandine melis,https://biolit.fr/wp-content/uploads/jet-form-builder/ffcf88956e22be64aec794a823940a79/2024/05/B-Melis-P5190037red.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ffcf88956e22be64aec794a823940a79/2024/05/B-Melis-P5190045red.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ffcf88956e22be64aec794a823940a79/2024/05/B-Melis-P5190049red.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ffcf88956e22be64aec794a823940a79/2024/05/B-Melis-P5190102red.jpg,5/19/2024 0:00,10.0000000,15.0000000,43.2116670000000,5.45526700000000,,calanque de Sugiton,75190,Observation #75190,https://biolit.fr/observations/observation-75190/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/ffcf88956e22be64aec794a823940a79/2024/05/B-Melis-P5190037red.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ffcf88956e22be64aec794a823940a79/2024/05/B-Melis-P5190045red.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ffcf88956e22be64aec794a823940a79/2024/05/B-Melis-P5190049red.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ffcf88956e22be64aec794a823940a79/2024/05/B-Melis-P5190102red.jpg,,TRUE,Identifiable +N1,75193,Sortie #75193,https://biolit.fr/sorties/sortie-75193/,picault patrick,https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/05/PXL_20240427_165259184_exported_1716445492483-scaled.jpg,4/28/2024 0:00,6.0000000,6.0000000,43.556842,4.068511,,La Grande Motte,75195,Observation #75195,https://biolit.fr/observations/observation-75195/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/05/PXL_20240427_165259184_exported_1716445492483-scaled.jpg,,FALSE,Ne sais pas +N1,75229,Sortie #75229,https://biolit.fr/sorties/sortie-75229/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/05/IMG_3392.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/05/IMG_3393.jpg,5/18/2024 0:00,14.0000000,14.0000000,43.2842520000000,5.31587500000000,,Frioul,75231,Observation #75231,https://biolit.fr/observations/observation-75231/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/05/IMG_3392.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/05/IMG_3393.jpg,,TRUE,Identifiable +N1,75237,Sortie #75237,https://biolit.fr/sorties/sortie-75237/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00131.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0013.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.6483160000000,-362.030742000000,Planète Mer (antenne Dinard),SAINT-MALO,,,,,,,,,, +N1,75243,Sortie #75243,https://biolit.fr/sorties/sortie-75243/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0007-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0007-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0008-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0008.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.644096,-1.9955710,,Saint-Malo,,,,,,,,,, +N1,75250,Sortie #75250,https://biolit.fr/sorties/sortie-75250/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA00051.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.6482950000000,357.96914900000,Planète Mer (antenne Dinard),Plage de bonsecours,,,,,,,,,, +N1,75254,Sortie #75254,https://biolit.fr/sorties/sortie-75254/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0012-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00131-1-rotated.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.6482300000000,-2.03080200000000,Planète Mer (antenne Dinard),SAINT-MALO,75256,Observation #75256,https://biolit.fr/observations/observation-75256/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0012-1-rotated.jpg,,TRUE,Identifiable +N1,75254,Sortie #75254,https://biolit.fr/sorties/sortie-75254/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0012-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00131-1-rotated.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.6482300000000,-2.03080200000000,Planète Mer (antenne Dinard),SAINT-MALO,75273,Observation #75273,https://biolit.fr/observations/observation-75273/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00131-1-rotated.jpg,,,Identifiable +N1,75263,Sortie #75263,https://biolit.fr/sorties/sortie-75263/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA00051-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0009-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0008-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0007-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0006-1.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.6482370000000,-2.03079200000000,,Plage de bonsecours,75265,Observation #75265,https://biolit.fr/observations/observation-75265/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA00051-1-rotated.jpg,,TRUE,Identifiable +N1,75271,Sortie #75271,https://biolit.fr/sorties/sortie-75271/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00044.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00056.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00094.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00113.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.6475740,-2.0277380,,Saint-Malo,,,,,,,,,, +N1,75279,Sortie #75279,https://biolit.fr/sorties/sortie-75279/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00044-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00056-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00094-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00113-1-rotated.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.6484120000000,-2.03095200000000,,Saint-Malo,75281,Observation #75281,https://biolit.fr/observations/observation-75281/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00044-1-rotated.jpg,,TRUE,Identifiable +N1,75279,Sortie #75279,https://biolit.fr/sorties/sortie-75279/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00044-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00056-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00094-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00113-1-rotated.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.6484120000000,-2.03095200000000,,Saint-Malo,75283,Observation #75283,https://biolit.fr/observations/observation-75283/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00056-1-rotated.jpg,,TRUE,Identifiable +N1,75279,Sortie #75279,https://biolit.fr/sorties/sortie-75279/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00044-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00056-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00094-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00113-1-rotated.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.6484120000000,-2.03095200000000,,Saint-Malo,75285,Observation #75285,https://biolit.fr/observations/observation-75285/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00094-1-rotated.jpg,,TRUE,Identifiable +N1,75279,Sortie #75279,https://biolit.fr/sorties/sortie-75279/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00044-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00056-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00094-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00113-1-rotated.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.6484120000000,-2.03095200000000,,Saint-Malo,75287,Observation #75287,https://biolit.fr/observations/observation-75287/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00113-1-rotated.jpg,,TRUE,Identifiable +N1,75294,Sortie #75294,https://biolit.fr/sorties/sortie-75294/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0004-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00051-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00061-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00091-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00111-rotated.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.647717,-2.028082,Planète Mer (antenne Dinard),Plage Bon secours Saint-Malo,75296,Observation #75296,https://biolit.fr/observations/observation-75296/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0004-rotated.jpg,,TRUE,Identifiable +N1,75294,Sortie #75294,https://biolit.fr/sorties/sortie-75294/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0004-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00051-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00061-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00091-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00111-rotated.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.647717,-2.028082,Planète Mer (antenne Dinard),Plage Bon secours Saint-Malo,75298,Observation #75298,https://biolit.fr/observations/observation-75298/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00051-rotated.jpg,,TRUE,Identifiable +N1,75294,Sortie #75294,https://biolit.fr/sorties/sortie-75294/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0004-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00051-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00061-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00091-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00111-rotated.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.647717,-2.028082,Planète Mer (antenne Dinard),Plage Bon secours Saint-Malo,75300,Observation #75300,https://biolit.fr/observations/observation-75300/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00061-rotated.jpg,,TRUE,Identifiable +N1,75294,Sortie #75294,https://biolit.fr/sorties/sortie-75294/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0004-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00051-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00061-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00091-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00111-rotated.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.647717,-2.028082,Planète Mer (antenne Dinard),Plage Bon secours Saint-Malo,75302,Observation #75302,https://biolit.fr/observations/observation-75302/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00091-rotated.jpg,,,Identifiable +N1,75294,Sortie #75294,https://biolit.fr/sorties/sortie-75294/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0004-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00051-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00061-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00091-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00111-rotated.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.647717,-2.028082,Planète Mer (antenne Dinard),Plage Bon secours Saint-Malo,75304,Observation #75304,https://biolit.fr/observations/observation-75304/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA00111-rotated.jpg,,TRUE,Identifiable +N1,75308,Sortie #75308,https://biolit.fr/sorties/sortie-75308/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0007-1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0008-2.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.644096,-1.9955710,Planète Mer (antenne Dinard),PLage de Bon Secours - Saint-Malo,,,,,,,,,, +N1,75314,Sortie #75314,https://biolit.fr/sorties/sortie-75314/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0009-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0008-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0007-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0006-2.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.6482380000000,-2.03071500000000,Planète Mer (antenne Dinard),Plage de Bon Secours - Saint Malo,75316,Observation #75316,https://biolit.fr/observations/observation-75316/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0009-2.jpg,,TRUE,Identifiable +N1,75314,Sortie #75314,https://biolit.fr/sorties/sortie-75314/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0009-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0008-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0007-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0006-2.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.6482380000000,-2.03071500000000,Planète Mer (antenne Dinard),Plage de Bon Secours - Saint Malo,75319,Observation #75319,https://biolit.fr/observations/observation-75319/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0008-2.jpg,,TRUE,Identifiable +N1,75314,Sortie #75314,https://biolit.fr/sorties/sortie-75314/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0009-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0008-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0007-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0006-2.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.6482380000000,-2.03071500000000,Planète Mer (antenne Dinard),Plage de Bon Secours - Saint Malo,75321,Observation #75321,https://biolit.fr/observations/observation-75321/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0007-2.jpg,,TRUE,Identifiable +N1,75314,Sortie #75314,https://biolit.fr/sorties/sortie-75314/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0009-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0008-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0007-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0006-2.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.6482380000000,-2.03071500000000,Planète Mer (antenne Dinard),Plage de Bon Secours - Saint Malo,75323,Observation #75323,https://biolit.fr/observations/observation-75323/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240523-WA0006-2.jpg,,TRUE,Identifiable +N1,75327,Sortie #75327,https://biolit.fr/sorties/sortie-75327/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0007-1-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0008-3.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.6475690,-2.0278490,Planète Mer (antenne Dinard),PLage de Bon Secours - Saint-Malo,75329,Observation #75329,https://biolit.fr/observations/observation-75329/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0007-1-2.jpg,,TRUE,Identifiable +N1,75327,Sortie #75327,https://biolit.fr/sorties/sortie-75327/,Ecole Grand Be,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0007-1-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0008-3.jpg,5/21/2024 0:00,13.0000000,15.0000000,48.6475690,-2.0278490,Planète Mer (antenne Dinard),PLage de Bon Secours - Saint-Malo,75331,Observation #75331,https://biolit.fr/observations/observation-75331/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/840bfa7bc96735fe9da4bd00f1843402/2024/05/IMG-20240521-WA0008-3.jpg,,TRUE,Identifiable +N1,75334,Sortie #75334,https://biolit.fr/sorties/sortie-75334/,Théo DEMONCHY,https://biolit.fr/wp-content/uploads/jet-form-builder/0588f3394f394e9490762b51fc822759/2024/05/Capture-decran-2024-05-23-182227.png,2/23/2023 0:00,18.0000000,18.0000000,43.5061770000000,6.9537880000000,Watch The Sea,Pointe de l'Aiguille,75336,Observation #75336,https://biolit.fr/observations/observation-75336/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0588f3394f394e9490762b51fc822759/2024/05/Capture-decran-2024-05-23-182227.png,,,Ne sais pas +N1,75334,Sortie #75334,https://biolit.fr/sorties/sortie-75334/,Théo DEMONCHY,https://biolit.fr/wp-content/uploads/jet-form-builder/0588f3394f394e9490762b51fc822759/2024/05/Capture-decran-2024-05-23-182227.png,2/23/2023 0:00,18.0000000,18.0000000,43.5061770000000,6.9537880000000,Watch The Sea,Pointe de l'Aiguille,75338,Observation #75338,https://biolit.fr/observations/observation-75338/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0588f3394f394e9490762b51fc822759/2024/05/Capture-decran-2024-05-23-182227.png,,,Ne sais pas +N1,75344,Sortie #75344,https://biolit.fr/sorties/sortie-75344/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240519_175524260_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240519_174102598_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240519_174046755_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240519_171421499_HDR-rotated.jpg,5/19/2024 0:00,17.0000000,18.0000000,43.2560420000000,5.37525300000000,,Plage Borély,75346,Observation #75346,https://biolit.fr/observations/observation-75346/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240519_175524260_HDR-scaled.jpg,,TRUE,Identifiable +N1,75344,Sortie #75344,https://biolit.fr/sorties/sortie-75344/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240519_175524260_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240519_174102598_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240519_174046755_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240519_171421499_HDR-rotated.jpg,5/19/2024 0:00,17.0000000,18.0000000,43.2560420000000,5.37525300000000,,Plage Borély,75348,Observation #75348,https://biolit.fr/observations/observation-75348/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240519_174102598_HDR-scaled.jpg,,TRUE,Identifiable +N1,75344,Sortie #75344,https://biolit.fr/sorties/sortie-75344/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240519_175524260_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240519_174102598_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240519_174046755_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240519_171421499_HDR-rotated.jpg,5/19/2024 0:00,17.0000000,18.0000000,43.2560420000000,5.37525300000000,,Plage Borély,75350,Observation #75350,https://biolit.fr/observations/observation-75350/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240519_174046755_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240519_171421499_HDR-rotated.jpg,,TRUE,Identifiable +N1,75372,Sortie #75372,https://biolit.fr/sorties/sortie-75372/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104820230.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104712261.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104756316.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054193532.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054106582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055496962.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055374722.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104954105.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104942565-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104932790-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104920949-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104913117-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104859163.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104846273-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104811049.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_103256291-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102802629_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102729501-scaled.jpg,5/23/2024 0:00,10.0000000,10.0:15,43.2597650000000,5.37459800000000,,Plage de l'Huveaune,75374,Observation #75374,https://biolit.fr/observations/observation-75374/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104820230.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104811049.jpg,,,Identifiable +N1,75372,Sortie #75372,https://biolit.fr/sorties/sortie-75372/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104820230.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104712261.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104756316.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054193532.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054106582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055496962.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055374722.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104954105.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104942565-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104932790-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104920949-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104913117-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104859163.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104846273-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104811049.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_103256291-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102802629_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102729501-scaled.jpg,5/23/2024 0:00,10.0000000,10.0:15,43.2597650000000,5.37459800000000,,Plage de l'Huveaune,75376,Observation #75376,https://biolit.fr/observations/observation-75376/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104712261.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104756316.jpg,,TRUE,Identifiable +N1,75372,Sortie #75372,https://biolit.fr/sorties/sortie-75372/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104820230.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104712261.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104756316.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054193532.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054106582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055496962.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055374722.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104954105.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104942565-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104932790-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104920949-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104913117-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104859163.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104846273-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104811049.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_103256291-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102802629_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102729501-scaled.jpg,5/23/2024 0:00,10.0000000,10.0:15,43.2597650000000,5.37459800000000,,Plage de l'Huveaune,75378,Observation #75378,https://biolit.fr/observations/observation-75378/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054193532.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054106582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_103256291-rotated.jpg,,,Identifiable +N1,75372,Sortie #75372,https://biolit.fr/sorties/sortie-75372/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104820230.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104712261.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104756316.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054193532.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054106582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055496962.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055374722.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104954105.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104942565-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104932790-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104920949-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104913117-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104859163.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104846273-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104811049.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_103256291-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102802629_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102729501-scaled.jpg,5/23/2024 0:00,10.0000000,10.0:15,43.2597650000000,5.37459800000000,,Plage de l'Huveaune,75380,Observation #75380,https://biolit.fr/observations/observation-75380/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055496962.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055374722.jpg,,,Identifiable +N1,75372,Sortie #75372,https://biolit.fr/sorties/sortie-75372/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104820230.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104712261.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104756316.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054193532.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054106582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055496962.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055374722.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104954105.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104942565-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104932790-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104920949-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104913117-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104859163.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104846273-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104811049.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_103256291-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102802629_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102729501-scaled.jpg,5/23/2024 0:00,10.0000000,10.0:15,43.2597650000000,5.37459800000000,,Plage de l'Huveaune,75382,Observation #75382,https://biolit.fr/observations/observation-75382/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104954105.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104942565-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104932790-rotated.jpg,,,Identifiable +N1,75372,Sortie #75372,https://biolit.fr/sorties/sortie-75372/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104820230.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104712261.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104756316.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054193532.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054106582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055496962.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055374722.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104954105.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104942565-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104932790-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104920949-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104913117-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104859163.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104846273-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104811049.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_103256291-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102802629_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102729501-scaled.jpg,5/23/2024 0:00,10.0000000,10.0:15,43.2597650000000,5.37459800000000,,Plage de l'Huveaune,75384,Observation #75384,https://biolit.fr/observations/observation-75384/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104920949-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104913117-rotated.jpg,,TRUE,Identifiable +N1,75372,Sortie #75372,https://biolit.fr/sorties/sortie-75372/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104820230.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104712261.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104756316.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054193532.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054106582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055496962.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055374722.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104954105.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104942565-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104932790-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104920949-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104913117-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104859163.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104846273-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104811049.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_103256291-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102802629_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102729501-scaled.jpg,5/23/2024 0:00,10.0000000,10.0:15,43.2597650000000,5.37459800000000,,Plage de l'Huveaune,75386,Observation #75386,https://biolit.fr/observations/observation-75386/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104859163.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104846273-rotated.jpg,,,Identifiable +N1,75372,Sortie #75372,https://biolit.fr/sorties/sortie-75372/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104820230.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104712261.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104756316.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054193532.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1054106582.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055496962.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_1055374722.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104954105.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104942565-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104932790-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104920949-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104913117-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104859163.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104846273-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_104811049.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_103256291-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102802629_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102729501-scaled.jpg,5/23/2024 0:00,10.0000000,10.0:15,43.2597650000000,5.37459800000000,,Plage de l'Huveaune,75388,Observation #75388,https://biolit.fr/observations/observation-75388/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102802629_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240523_102729501-scaled.jpg,,TRUE,Identifiable +N1,75401,Sortie #75401,https://biolit.fr/sorties/sortie-75401/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_9490-scaled.jpg,05/11/2024,14.0000000,15.0000000,43.3666450000000,4.86824500000000,,Plage Napoléon,75403,Observation #75403,https://biolit.fr/observations/observation-75403/,Phoenicopterus roseus,Flamant rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_9490-scaled.jpg,,TRUE,Identifiable +N1,75409,Sortie #75409,https://biolit.fr/sorties/sortie-75409/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_173303415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_173315330.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_173433867.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_173455613.jpg,05/03/2024,10.0000000,11.0000000,43.0345010000000,6.16451200000000,,Giens Sud-Est,75411,Observation #75411,https://biolit.fr/observations/observation-75411/,Tricolia pullus,Phasianelle minuscule,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_173303415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_173315330.jpg,,,Identifiable +N1,75409,Sortie #75409,https://biolit.fr/sorties/sortie-75409/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_173303415.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_173315330.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_173433867.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_173455613.jpg,05/03/2024,10.0000000,11.0000000,43.0345010000000,6.16451200000000,,Giens Sud-Est,75413,Observation #75413,https://biolit.fr/observations/observation-75413/,Tricolia speciosa,Phasianelle esthétique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_173433867.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240525_173455613.jpg,,,Identifiable +N1,75418,Sortie #75418,https://biolit.fr/sorties/sortie-75418/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240526_112606956.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240526_112621191.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240526_112634855.jpg,05/03/2024,10.0000000,10.0:15,43.0345060000000,6.1577180000000,,Giens,75420,Observation #75420,https://biolit.fr/observations/observation-75420/,Epitonium clathrus,Scalaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240526_112606956.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240526_112621191.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240526_112634855.jpg,,,Identifiable +N1,75476,Sortie #75476,https://biolit.fr/sorties/sortie-75476/,RAHHALI Chaimae,https://biolit.fr/wp-content/uploads/jet-form-builder/cbc831ed740f2bea15efbf31e21b23c2/2024/05/sur-rive.jpeg,5/27/2024 0:00,13.0000000,18.0000000,33.2316330,-8.5007120,,El Jadida,75478,Observation #75478,https://biolit.fr/observations/observation-75478/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cbc831ed740f2bea15efbf31e21b23c2/2024/05/sur-rive.jpeg,,,non-identifiable +N1,75580,Sortie #75580,https://biolit.fr/sorties/sortie-75580/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240526_112725197.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240526_112734113.jpg,05/03/2024,10.0000000,11.0000000,43.0345840000000,6.16573500000000,,Giens Sud-Est,75582,Observation #75582,https://biolit.fr/observations/observation-75582/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240526_112725197.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240526_112734113.jpg,,,Identifiable +N1,75586,Sortie #75586,https://biolit.fr/sorties/sortie-75586/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_145054226_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_145110748.jpg,05/03/2024,10.0000000,11.0000000,43.0327040000000,6.16701200000000,,Giens Sud-Est,75588,Observation #75588,https://biolit.fr/observations/observation-75588/,Talochlamys multistriata,Pétoncle strié,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_145054226_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240512_145110748.jpg,,,Identifiable +N1,75703,Sortie #75703,https://biolit.fr/sorties/sortie-75703/,Cblondet,https://biolit.fr/wp-content/uploads/jet-form-builder/c197b1e0d91dcec93e7ffa5eb529bc9d/2024/05/velelles.jpg,5/26/2024 0:00,15.0:42,16.0000000,43.3722990000000,4.56344600000000,,Plage de Beauduc,,,,,,,,,, +N1,75708,Sortie #75708,https://biolit.fr/sorties/sortie-75708/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/05/MicrosoftTeams-image-11.jpg,5/22/2024 0:00,15.0000000,15.0000000,48.6427640000000,-2.07344400000000,Planète Mer (antenne Dinard),Plage de Saint Enogat,75710,Observation #75710,https://biolit.fr/observations/observation-75710/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/05/MicrosoftTeams-image-11.jpg,,TRUE,Identifiable +N1,75713,Sortie #75713,https://biolit.fr/sorties/sortie-75713/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4663-scaled.jpg,5/25/2024 0:00,16.0000000,16.0000000,43.2399050000000,5.36247900000000,Planète Mer,Bain des dames,,,,,,,,,, +N1,75725,Sortie #75725,https://biolit.fr/sorties/sortie-75725/,Cblondet,https://biolit.fr/wp-content/uploads/jet-form-builder/c197b1e0d91dcec93e7ffa5eb529bc9d/2024/05/velelles-1.jpg,5/28/2024 0:00,15.0:42,16.0000000,43.3722990000000,4.56344600000000,,Plage de Beauduc,,,,,,,,,, +N1,75728,Sortie #75728,https://biolit.fr/sorties/sortie-75728/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4668a-scaled.jpg,5/22/2024 0:00,16.0000000,16.0000000,43.2399050000000,5.36247900000000,,Bain des dames,,,,,,,,,, +N1,75735,Sortie #75735,https://biolit.fr/sorties/sortie-75735/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/05/MicrosoftTeams-image-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/05/MicrosoftTeams-image-13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/05/MicrosoftTeams-image-12.jpg,04/01/2024,15.0000000,15.0000000,43.1739530000000,5.69304800000000,Planète Mer,Saint Cyr Les Lecques,75739,Observation #75739,https://biolit.fr/observations/observation-75739/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/05/MicrosoftTeams-image-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/05/MicrosoftTeams-image-13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/05/MicrosoftTeams-image-12.jpg,,TRUE,Identifiable +N1,75780,Sortie #75780,https://biolit.fr/sorties/sortie-75780/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174756646.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174803662.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071525052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071600336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071609161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071618814.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071631882.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071550643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123135940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123128971_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_122814352_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121557723-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121545783-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121205144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121155628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120908846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120901898_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115318416_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115147323_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_114951990_HDR-rotated.jpg,5/28/2024 0:00,12.0000000,13.0000000,43.2594820000000,5.37518600000000,,Huveaune,75782,Observation #75782,https://biolit.fr/observations/observation-75782/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174756646.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174803662.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115318416_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_114951990_HDR-rotated.jpg,,TRUE,Identifiable +N1,75780,Sortie #75780,https://biolit.fr/sorties/sortie-75780/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174756646.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174803662.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071525052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071600336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071609161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071618814.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071631882.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071550643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123135940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123128971_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_122814352_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121557723-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121545783-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121205144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121155628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120908846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120901898_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115318416_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115147323_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_114951990_HDR-rotated.jpg,5/28/2024 0:00,12.0000000,13.0000000,43.2594820000000,5.37518600000000,,Huveaune,75784,Observation #75784,https://biolit.fr/observations/observation-75784/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071525052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071600336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071609161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071550643.jpg,,,Identifiable +N1,75780,Sortie #75780,https://biolit.fr/sorties/sortie-75780/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174756646.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174803662.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071525052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071600336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071609161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071618814.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071631882.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071550643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123135940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123128971_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_122814352_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121557723-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121545783-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121205144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121155628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120908846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120901898_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115318416_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115147323_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_114951990_HDR-rotated.jpg,5/28/2024 0:00,12.0000000,13.0000000,43.2594820000000,5.37518600000000,,Huveaune,75786,Observation #75786,https://biolit.fr/observations/observation-75786/,Corbicula fluminea,Corbicule asiatique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071618814.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071631882.jpg,,,Identifiable +N1,75780,Sortie #75780,https://biolit.fr/sorties/sortie-75780/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174756646.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174803662.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071525052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071600336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071609161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071618814.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071631882.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071550643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123135940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123128971_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_122814352_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121557723-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121545783-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121205144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121155628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120908846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120901898_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115318416_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115147323_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_114951990_HDR-rotated.jpg,5/28/2024 0:00,12.0000000,13.0000000,43.2594820000000,5.37518600000000,,Huveaune,75788,Observation #75788,https://biolit.fr/observations/observation-75788/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123135940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123128971_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_122814352_HDR-rotated.jpg,,TRUE,Identifiable +N1,75780,Sortie #75780,https://biolit.fr/sorties/sortie-75780/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174756646.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174803662.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071525052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071600336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071609161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071618814.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071631882.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071550643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123135940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123128971_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_122814352_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121557723-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121545783-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121205144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121155628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120908846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120901898_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115318416_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115147323_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_114951990_HDR-rotated.jpg,5/28/2024 0:00,12.0000000,13.0000000,43.2594820000000,5.37518600000000,,Huveaune,75790,Observation #75790,https://biolit.fr/observations/observation-75790/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121557723-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121545783-scaled.jpg,,,Identifiable +N1,75780,Sortie #75780,https://biolit.fr/sorties/sortie-75780/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174756646.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174803662.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071525052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071600336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071609161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071618814.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071631882.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071550643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123135940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123128971_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_122814352_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121557723-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121545783-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121205144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121155628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120908846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120901898_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115318416_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115147323_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_114951990_HDR-rotated.jpg,5/28/2024 0:00,12.0000000,13.0000000,43.2594820000000,5.37518600000000,,Huveaune,75792,Observation #75792,https://biolit.fr/observations/observation-75792/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121205144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121155628.jpg,,,Identifiable +N1,75780,Sortie #75780,https://biolit.fr/sorties/sortie-75780/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174756646.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174803662.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071525052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071600336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071609161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071618814.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071631882.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071550643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123135940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123128971_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_122814352_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121557723-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121545783-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121205144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121155628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120908846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120901898_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115318416_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115147323_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_114951990_HDR-rotated.jpg,5/28/2024 0:00,12.0000000,13.0000000,43.2594820000000,5.37518600000000,,Huveaune,75794,Observation #75794,https://biolit.fr/observations/observation-75794/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120908846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120901898_HDR-scaled.jpg,,,Identifiable +N1,75780,Sortie #75780,https://biolit.fr/sorties/sortie-75780/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174756646.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_174803662.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071525052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071600336.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071609161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071618814.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071631882.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240529_071550643.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123135940_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_123128971_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_122814352_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121557723-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121545783-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121205144.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_121155628.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120908846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_120901898_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115318416_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115147323_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_114951990_HDR-rotated.jpg,5/28/2024 0:00,12.0000000,13.0000000,43.2594820000000,5.37518600000000,,Huveaune,75796,Observation #75796,https://biolit.fr/observations/observation-75796/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/05/IMG_20240528_115147323_HDR-rotated.jpg,,,Identifiable +N1,75806,Sortie #75806,https://biolit.fr/sorties/sortie-75806/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/05/IMG_4669a-scaled.jpg,5/22/2024 0:00,16.0000000,16.0000000,43.2399050000000,5.36247900000000,,Bain des dames,,,,,,,,,, +N1,75809,Sortie #75809,https://biolit.fr/sorties/sortie-75809/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/05/bigorneau.jpg,05/09/2024,15.0000000,15.0000000,48.623408000000,-2.0819090000000,Planète Mer (antenne Dinard),Plage de Saint Enogat,,,,,,,,,, +N1,75816,Sortie #75816,https://biolit.fr/sorties/sortie-75816/,Cblondet,https://biolit.fr/wp-content/uploads/jet-form-builder/c197b1e0d91dcec93e7ffa5eb529bc9d/2024/05/Sabot-de-Venus-Bis.jpg,5/30/2024 0:00,15.0:42,16.0000000,43.3722990000000,4.56344600000000,,Plage de Beauduc,,,,,,,,,, +N1,75821,Sortie #75821,https://biolit.fr/sorties/sortie-75821/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/05/monodonte-1.jpg,05/09/2024,15.0000000,15.0000000,49.2082070000000,-2.1258540000000,Planète Mer,Plage de Saint Enogat,,,,,,,,,, +N1,75841,Sortie #75841,https://biolit.fr/sorties/sortie-75841/,Céline,https://biolit.fr/wp-content/uploads/jet-form-builder/a124436f212872e36bd7cc12bfe0fd03/2024/05/velelles.jpg,5/26/2024 0:00,15.0:38,16.0000000,43.3634980000000,4.57912400000000,,Plage de beauduc,75843,Observation #75843,https://biolit.fr/observations/observation-75843/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a124436f212872e36bd7cc12bfe0fd03/2024/05/velelles.jpg,,TRUE,Identifiable +N1,75898,Sortie #75898,https://biolit.fr/sorties/sortie-75898/,ROBERT CLEMENT,https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145656-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145711-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145914-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150513-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150553-scaled.jpg,5/31/2024 0:00,14.0000000,15.0000000,49.2909600000000,-0.13407800000000,,Cabourg,75900,Observation #75900,https://biolit.fr/observations/observation-75900/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145914-scaled.jpg,,TRUE,Identifiable +N1,75898,Sortie #75898,https://biolit.fr/sorties/sortie-75898/,ROBERT CLEMENT,https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145656-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145711-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145914-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150513-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150553-scaled.jpg,5/31/2024 0:00,14.0000000,15.0000000,49.2909600000000,-0.13407800000000,,Cabourg,75902,Observation #75902,https://biolit.fr/observations/observation-75902/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145656-scaled.jpg,,TRUE,Identifiable +N1,75898,Sortie #75898,https://biolit.fr/sorties/sortie-75898/,ROBERT CLEMENT,https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145656-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145711-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145914-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150513-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150553-scaled.jpg,5/31/2024 0:00,14.0000000,15.0000000,49.2909600000000,-0.13407800000000,,Cabourg,75904,Observation #75904,https://biolit.fr/observations/observation-75904/,Phyllophora crispa,Algue rouge à frisottis,,https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145711-scaled.jpg,,,Identifiable +N1,75898,Sortie #75898,https://biolit.fr/sorties/sortie-75898/,ROBERT CLEMENT,https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145656-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145711-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145914-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150513-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150553-scaled.jpg,5/31/2024 0:00,14.0000000,15.0000000,49.2909600000000,-0.13407800000000,,Cabourg,75906,Observation #75906,https://biolit.fr/observations/observation-75906/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150553-scaled.jpg,,TRUE,Identifiable +N1,75898,Sortie #75898,https://biolit.fr/sorties/sortie-75898/,ROBERT CLEMENT,https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145656-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145711-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145914-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150513-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150553-scaled.jpg,5/31/2024 0:00,14.0000000,15.0000000,49.2909600000000,-0.13407800000000,,Cabourg,75908,Observation #75908,https://biolit.fr/observations/observation-75908/,Ensis magnus,Couteau arqué,,https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145737-scaled.jpg,,,Identifiable +N1,75898,Sortie #75898,https://biolit.fr/sorties/sortie-75898/,ROBERT CLEMENT,https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145656-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145711-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_145914-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150513-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150553-scaled.jpg,5/31/2024 0:00,14.0000000,15.0000000,49.2909600000000,-0.13407800000000,,Cabourg,75910,Observation #75910,https://biolit.fr/observations/observation-75910/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150513-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b6a532d36b7ca006aad5bee0f50c9afa/2024/05/IMG_20240531_150233-scaled.jpg,,,non-identifiable +N1,75922,Sortie #75922,https://biolit.fr/sorties/sortie-75922/,VIAL Thérèse,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/06/IMG_20240517_115016527_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/06/IMG_20240517_115035581_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/06/IMG_20240517_115303792_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/06/IMG_20240517_115331801_HDR-scaled.jpg,5/17/2024 0:00,11.0000000,12.0000000,43.2109530000000,5.45648400000000,,Plage de Sugiton EST,75924,Observation #75924,https://biolit.fr/observations/observation-75924/,Pusia ebenus,Pusia ébène,,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/06/IMG_20240517_115016527_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/06/IMG_20240517_115035581_HDR.jpg,,,Identifiable +N1,75922,Sortie #75922,https://biolit.fr/sorties/sortie-75922/,VIAL Thérèse,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/06/IMG_20240517_115016527_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/06/IMG_20240517_115035581_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/06/IMG_20240517_115303792_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/06/IMG_20240517_115331801_HDR-scaled.jpg,5/17/2024 0:00,11.0000000,12.0000000,43.2109530000000,5.45648400000000,,Plage de Sugiton EST,75926,Observation #75926,https://biolit.fr/observations/observation-75926/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/06/IMG_20240517_115303792_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27bbac193bef9a95fb21040a852a4eb0/2024/06/IMG_20240517_115331801_HDR-scaled.jpg,,,Identifiable +N1,75936,Sortie #75936,https://biolit.fr/sorties/sortie-75936/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_115608445_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120102892_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120200874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120207075_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120357626_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120552984_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_122419191_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_115547994_HDR-scaled.jpg,5/21/2024 0:00,11.0000000,12.0000000,43.2803130000000,5.35016500000000,,Malmousque,75938,Observation #75938,https://biolit.fr/observations/observation-75938/,Maja crispata,Petite araignée de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_115608445_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_115547994_HDR-scaled.jpg,,,Ne sais pas +N1,75936,Sortie #75936,https://biolit.fr/sorties/sortie-75936/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_115608445_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120102892_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120200874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120207075_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120357626_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120552984_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_122419191_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_115547994_HDR-scaled.jpg,5/21/2024 0:00,11.0000000,12.0000000,43.2803130000000,5.35016500000000,,Malmousque,75940,Observation #75940,https://biolit.fr/observations/observation-75940/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120102892_HDR.jpg,,,Identifiable +N1,75936,Sortie #75936,https://biolit.fr/sorties/sortie-75936/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_115608445_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120102892_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120200874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120207075_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120357626_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120552984_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_122419191_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_115547994_HDR-scaled.jpg,5/21/2024 0:00,11.0000000,12.0000000,43.2803130000000,5.35016500000000,,Malmousque,75942,Observation #75942,https://biolit.fr/observations/observation-75942/,Peyssonnelia squamaria,Peyssonnelia,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120200874_HDR.jpg,,TRUE,Identifiable +N1,75936,Sortie #75936,https://biolit.fr/sorties/sortie-75936/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_115608445_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120102892_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120200874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120207075_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120357626_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120552984_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_122419191_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_115547994_HDR-scaled.jpg,5/21/2024 0:00,11.0000000,12.0000000,43.2803130000000,5.35016500000000,,Malmousque,75944,Observation #75944,https://biolit.fr/observations/observation-75944/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120207075_HDR.jpg,,TRUE,Identifiable +N1,75936,Sortie #75936,https://biolit.fr/sorties/sortie-75936/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_115608445_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120102892_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120200874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120207075_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120357626_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120552984_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_122419191_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_115547994_HDR-scaled.jpg,5/21/2024 0:00,11.0000000,12.0000000,43.2803130000000,5.35016500000000,,Malmousque,75946,Observation #75946,https://biolit.fr/observations/observation-75946/,Dictyota spiralis,Dictyote spatulée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120357626_HDR.jpg,,,Ne sais pas +N1,75936,Sortie #75936,https://biolit.fr/sorties/sortie-75936/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_115608445_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120102892_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120200874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120207075_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120357626_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120552984_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_122419191_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_115547994_HDR-scaled.jpg,5/21/2024 0:00,11.0000000,12.0000000,43.2803130000000,5.35016500000000,,Malmousque,75948,Observation #75948,https://biolit.fr/observations/observation-75948/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120552984_HDR-rotated.jpg,,,Identifiable +N1,75936,Sortie #75936,https://biolit.fr/sorties/sortie-75936/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_115608445_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120102892_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120200874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120207075_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120357626_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_120552984_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_122419191_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_115547994_HDR-scaled.jpg,5/21/2024 0:00,11.0000000,12.0000000,43.2803130000000,5.35016500000000,,Malmousque,75950,Observation #75950,https://biolit.fr/observations/observation-75950/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240521_122419191_HDR-scaled.jpg,,TRUE,Identifiable +N1,75953,Sortie #75953,https://biolit.fr/sorties/sortie-75953/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-02-151250.jpg,5/21/2024 0:00,11.0000000,12.0000000,43.2803630000000,5.3501730000000,,Malmousque,75955,Observation #75955,https://biolit.fr/observations/observation-75955/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-02-151250.jpg,,,Ne sais pas +N1,75977,Sortie #75977,https://biolit.fr/sorties/sortie-75977/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_080717682-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081159245-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081237541_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081323858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081337175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081411025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081525176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081751912-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081814446-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081817016-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081953859-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082000191-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082039944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082056069_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082230166-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082359796.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082408006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082409407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082440771_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082502199-rotated.jpg,06/02/2024,8.0000000,8.0000000,43.2382260000000,5.36178000000000,,Plage de l'Anse des Phocéens,75979,Observation #75979,https://biolit.fr/observations/observation-75979/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_080717682-rotated.jpg,,,Ne sais pas +N1,75977,Sortie #75977,https://biolit.fr/sorties/sortie-75977/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_080717682-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081159245-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081237541_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081323858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081337175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081411025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081525176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081751912-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081814446-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081817016-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081953859-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082000191-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082039944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082056069_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082230166-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082359796.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082408006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082409407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082440771_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082502199-rotated.jpg,06/02/2024,8.0000000,8.0000000,43.2382260000000,5.36178000000000,,Plage de l'Anse des Phocéens,75981,Observation #75981,https://biolit.fr/observations/observation-75981/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081953859-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082000191-rotated.jpg,,,Ne sais pas +N1,75977,Sortie #75977,https://biolit.fr/sorties/sortie-75977/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_080717682-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081159245-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081237541_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081323858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081337175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081411025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081525176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081751912-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081814446-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081817016-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081953859-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082000191-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082039944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082056069_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082230166-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082359796.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082408006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082409407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082440771_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082502199-rotated.jpg,06/02/2024,8.0000000,8.0000000,43.2382260000000,5.36178000000000,,Plage de l'Anse des Phocéens,75983,Observation #75983,https://biolit.fr/observations/observation-75983/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082230166-rotated.jpg,,,Ne sais pas +N1,75977,Sortie #75977,https://biolit.fr/sorties/sortie-75977/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_080717682-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081159245-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081237541_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081323858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081337175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081411025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081525176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081751912-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081814446-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081817016-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081953859-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082000191-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082039944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082056069_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082230166-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082359796.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082408006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082409407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082440771_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082502199-rotated.jpg,06/02/2024,8.0000000,8.0000000,43.2382260000000,5.36178000000000,,Plage de l'Anse des Phocéens,75985,Observation #75985,https://biolit.fr/observations/observation-75985/,Dictyota fasciola,Dictyote rubanée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081159245-rotated.jpg,,,Identifiable +N1,75977,Sortie #75977,https://biolit.fr/sorties/sortie-75977/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_080717682-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081159245-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081237541_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081323858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081337175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081411025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081525176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081751912-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081814446-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081817016-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081953859-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082000191-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082039944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082056069_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082230166-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082359796.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082408006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082409407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082440771_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082502199-rotated.jpg,06/02/2024,8.0000000,8.0000000,43.2382260000000,5.36178000000000,,Plage de l'Anse des Phocéens,75987,Observation #75987,https://biolit.fr/observations/observation-75987/,Tridentata perpusilla,Sertulaire minuscule,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081237541_HDR-rotated.jpg,,,Ne sais pas +N1,75977,Sortie #75977,https://biolit.fr/sorties/sortie-75977/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_080717682-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081159245-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081237541_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081323858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081337175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081411025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081525176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081751912-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081814446-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081817016-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081953859-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082000191-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082039944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082056069_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082230166-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082359796.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082408006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082409407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082440771_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082502199-rotated.jpg,06/02/2024,8.0000000,8.0000000,43.2382260000000,5.36178000000000,,Plage de l'Anse des Phocéens,75989,Observation #75989,https://biolit.fr/observations/observation-75989/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081323858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081337175-scaled.jpg,,TRUE,Identifiable +N1,75977,Sortie #75977,https://biolit.fr/sorties/sortie-75977/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_080717682-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081159245-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081237541_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081323858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081337175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081411025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081525176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081751912-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081814446-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081817016-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081953859-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082000191-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082039944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082056069_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082230166-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082359796.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082408006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082409407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082440771_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082502199-rotated.jpg,06/02/2024,8.0000000,8.0000000,43.2382260000000,5.36178000000000,,Plage de l'Anse des Phocéens,75991,Observation #75991,https://biolit.fr/observations/observation-75991/,Euthria cornea,Buccin veiné,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082440771_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082502199-rotated.jpg,,,Identifiable +N1,75977,Sortie #75977,https://biolit.fr/sorties/sortie-75977/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_080717682-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081159245-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081237541_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081323858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081337175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081411025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081525176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081751912-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081814446-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081817016-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081953859-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082000191-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082039944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082056069_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082230166-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082359796.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082408006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082409407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082440771_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082502199-rotated.jpg,06/02/2024,8.0000000,8.0000000,43.2382260000000,5.36178000000000,,Plage de l'Anse des Phocéens,75993,Observation #75993,https://biolit.fr/observations/observation-75993/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081411025.jpg,,,Ne sais pas +N1,75977,Sortie #75977,https://biolit.fr/sorties/sortie-75977/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_080717682-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081159245-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081237541_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081323858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081337175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081411025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081525176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081751912-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081814446-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081817016-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081953859-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082000191-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082039944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082056069_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082230166-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082359796.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082408006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082409407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082440771_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082502199-rotated.jpg,06/02/2024,8.0000000,8.0000000,43.2382260000000,5.36178000000000,,Plage de l'Anse des Phocéens,75995,Observation #75995,https://biolit.fr/observations/observation-75995/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081525176-scaled.jpg,,TRUE,Identifiable +N1,75977,Sortie #75977,https://biolit.fr/sorties/sortie-75977/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_080717682-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081159245-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081237541_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081323858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081337175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081411025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081525176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081751912-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081814446-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081817016-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081953859-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082000191-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082039944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082056069_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082230166-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082359796.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082408006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082409407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082440771_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082502199-rotated.jpg,06/02/2024,8.0000000,8.0000000,43.2382260000000,5.36178000000000,,Plage de l'Anse des Phocéens,75997,Observation #75997,https://biolit.fr/observations/observation-75997/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081751912-rotated.jpg,,TRUE,Identifiable +N1,75977,Sortie #75977,https://biolit.fr/sorties/sortie-75977/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_080717682-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081159245-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081237541_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081323858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081337175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081411025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081525176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081751912-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081814446-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081817016-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081953859-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082000191-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082039944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082056069_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082230166-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082359796.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082408006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082409407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082440771_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082502199-rotated.jpg,06/02/2024,8.0000000,8.0000000,43.2382260000000,5.36178000000000,,Plage de l'Anse des Phocéens,75999,Observation #75999,https://biolit.fr/observations/observation-75999/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081814446-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081817016-rotated.jpg,,TRUE,Identifiable +N1,75977,Sortie #75977,https://biolit.fr/sorties/sortie-75977/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_080717682-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081159245-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081237541_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081323858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081337175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081411025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081525176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081751912-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081814446-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081817016-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081953859-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082000191-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082039944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082056069_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082230166-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082359796.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082408006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082409407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082440771_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082502199-rotated.jpg,06/02/2024,8.0000000,8.0000000,43.2382260000000,5.36178000000000,,Plage de l'Anse des Phocéens,76001,Observation #76001,https://biolit.fr/observations/observation-76001/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082039944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082056069_HDR-scaled.jpg,,,Identifiable +N1,75977,Sortie #75977,https://biolit.fr/sorties/sortie-75977/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_080717682-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081159245-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081237541_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081323858-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081337175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081411025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081525176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081751912-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081814446-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081817016-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_081953859-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082000191-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082039944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082056069_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082230166-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082359796.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082408006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082409407.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082440771_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082502199-rotated.jpg,06/02/2024,8.0000000,8.0000000,43.2382260000000,5.36178000000000,,Plage de l'Anse des Phocéens,76003,Observation #76003,https://biolit.fr/observations/observation-76003/,Ligia italica,Ligie italienne,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082359796.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082408006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082409407.jpg,,,Ne sais pas +N1,76010,Sortie #76010,https://biolit.fr/sorties/sortie-76010/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082619342-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082639175_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082651670_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082712306_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082932978_HDR-scaled.jpg,06/02/2024,8.0000000,8.0000000,43.2382400000000,5.36183400000000,,Plage de l'Anse des Phocéens,76012,Observation #76012,https://biolit.fr/observations/observation-76012/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082619342-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082639175_HDR-rotated.jpg,,,Identifiable +N1,76010,Sortie #76010,https://biolit.fr/sorties/sortie-76010/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082619342-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082639175_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082651670_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082712306_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082932978_HDR-scaled.jpg,06/02/2024,8.0000000,8.0000000,43.2382400000000,5.36183400000000,,Plage de l'Anse des Phocéens,76014,Observation #76014,https://biolit.fr/observations/observation-76014/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082651670_HDR-rotated.jpg,,TRUE,Identifiable +N1,76010,Sortie #76010,https://biolit.fr/sorties/sortie-76010/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082619342-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082639175_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082651670_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082712306_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082932978_HDR-scaled.jpg,06/02/2024,8.0000000,8.0000000,43.2382400000000,5.36183400000000,,Plage de l'Anse des Phocéens,76016,Observation #76016,https://biolit.fr/observations/observation-76016/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082712306_HDR-rotated.jpg,,TRUE,Identifiable +N1,76010,Sortie #76010,https://biolit.fr/sorties/sortie-76010/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082619342-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082639175_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082651670_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082712306_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082932978_HDR-scaled.jpg,06/02/2024,8.0000000,8.0000000,43.2382400000000,5.36183400000000,,Plage de l'Anse des Phocéens,76018,Observation #76018,https://biolit.fr/observations/observation-76018/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_082932978_HDR-scaled.jpg,,TRUE,Identifiable +N1,76021,Sortie #76021,https://biolit.fr/sorties/sortie-76021/,Céline,https://biolit.fr/wp-content/uploads/jet-form-builder/a124436f212872e36bd7cc12bfe0fd03/2024/06/paysage.jpg,06/02/2024,15.0:38,16.0000000,43.3281330000000,5.11322000000000,,Plage de beauduc,,,,,,,,,, +N1,76026,Sortie #76026,https://biolit.fr/sorties/sortie-76026/,Cblondet,https://biolit.fr/wp-content/uploads/jet-form-builder/c197b1e0d91dcec93e7ffa5eb529bc9d/2024/06/velelles.jpg,06/03/2024,15.0:42,16.0000000,43.3722990000000,4.56344600000000,,Plage de Beauduc,,,,,,,,,, +N1,76031,Sortie #76031,https://biolit.fr/sorties/sortie-76031/,Cblondet,https://biolit.fr/wp-content/uploads/jet-form-builder/c197b1e0d91dcec93e7ffa5eb529bc9d/2024/06/Sabot-de-Venus-Bis.jpg,06/03/2024,15.0:42,16.0000000,43.3722990000000,4.56344600000000,,Plage de Beauduc,,,,,,,,,, +N1,76036,Sortie #76036,https://biolit.fr/sorties/sortie-76036/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/06/IMG_4668a-scaled.jpg,5/22/2024 0:00,16.0000000,16.0000000,43.2399050000000,5.36247900000000,Planète Mer,Bain des dames,,,,,,,,,, +N1,76041,Sortie #76041,https://biolit.fr/sorties/sortie-76041/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/06/IMG_4663-scaled.jpg,5/22/2024 0:00,16.0000000,16.0000000,43.2399050000000,5.36247900000000,Planète Mer,Bain des dames,,,,,,,,,, +N1,76047,Sortie #76047,https://biolit.fr/sorties/sortie-76047/,Cblondet,https://biolit.fr/wp-content/uploads/jet-form-builder/c197b1e0d91dcec93e7ffa5eb529bc9d/2024/06/Sabot-de-Venus-Bis-1.jpg,06/03/2024,15.0:42,16.0000000,43.3722990000000,4.56344600000000,,Plage de Beauduc,,,,,,,,,, +N1,76068,Sortie #76068,https://biolit.fr/sorties/sortie-76068/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/06/NOUVEAUX_ARRIVANTS_20171026-crabe-bleu_Estran_Cite_Mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/06/Watersipora_subatraciNaturalist_Daniel-Percy.jpeg,5/22/2024 0:00,16.0000000,16.0000000,43.2399050000000,5.36247900000000,,Bain des dames,,,,,,,,,, +N1,76083,Sortie #76083,https://biolit.fr/sorties/sortie-76083/,Hupp,FALSE,5/28/2024 0:00,15.0:32,19.0000000,48.5981690,-2.2727890,,ggg,,,,,,,,,, +N1,76092,Sortie #76092,https://biolit.fr/sorties/sortie-76092/,Hupp,FALSE,5/28/2024 0:00,15.0:32,19.0000000,48.5981690,-2.2727890,,ggg,,,,,,,,,, +N1,76099,Sortie #76099,https://biolit.fr/sorties/sortie-76099/,Hupp,FALSE,5/28/2024 0:00,15.0:32,19.0000000,48.5981690,-2.2727890,,ggg,,,,,,,,,, +N1,76104,Sortie #76104,https://biolit.fr/sorties/sortie-76104/,Cblondet,https://biolit.fr/wp-content/uploads/jet-form-builder/c197b1e0d91dcec93e7ffa5eb529bc9d/2024/06/Sabot-de-Venus.jpg,06/04/2024,8.0:42,9.0000000,43.3722990000000,4.56344600000000,,Plage de Beauduc,,,,,,,,,, +N1,76109,Sortie #76109,https://biolit.fr/sorties/sortie-76109/,Cblondet,https://biolit.fr/wp-content/uploads/jet-form-builder/c197b1e0d91dcec93e7ffa5eb529bc9d/2024/06/Sabot-de-Venus-Bis-2.jpg,06/04/2024,8.0:42,9.0000000,43.3722990000000,4.56344600000000,,Plage de Beauduc,,,,,,,,,, +N1,76147,Sortie #76147,https://biolit.fr/sorties/sortie-76147/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085209735_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085220742_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085320297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085400854.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085408710_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085536874_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085818173_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090440063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090808642_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091451752_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092244899_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092250949_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092411370_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092600238_HDR-rotated.jpg,06/02/2024,8.0:45,9.0000000,43.2399210000000,5.36244500000000,,Plage de l’Anse du Bain des Dames,76149,Observation #76149,https://biolit.fr/observations/observation-76149/,Asparagopsis armata,Algue à crochets,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085209735_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085220742_HDR-rotated.jpg,,TRUE,Identifiable +N1,76147,Sortie #76147,https://biolit.fr/sorties/sortie-76147/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085209735_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085220742_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085320297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085400854.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085408710_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085536874_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085818173_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090440063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090808642_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091451752_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092244899_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092250949_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092411370_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092600238_HDR-rotated.jpg,06/02/2024,8.0:45,9.0000000,43.2399210000000,5.36244500000000,,Plage de l’Anse du Bain des Dames,76151,Observation #76151,https://biolit.fr/observations/observation-76151/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085320297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085536874_HDR-rotated.jpg,,,Identifiable +N1,76147,Sortie #76147,https://biolit.fr/sorties/sortie-76147/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085209735_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085220742_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085320297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085400854.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085408710_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085536874_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085818173_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090440063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090808642_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091451752_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092244899_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092250949_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092411370_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092600238_HDR-rotated.jpg,06/02/2024,8.0:45,9.0000000,43.2399210000000,5.36244500000000,,Plage de l’Anse du Bain des Dames,76153,Observation #76153,https://biolit.fr/observations/observation-76153/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085400854.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085408710_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092244899_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092250949_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092600238_HDR-rotated.jpg,,,Identifiable +N1,76147,Sortie #76147,https://biolit.fr/sorties/sortie-76147/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085209735_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085220742_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085320297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085400854.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085408710_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085536874_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085818173_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090440063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090808642_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091451752_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092244899_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092250949_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092411370_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092600238_HDR-rotated.jpg,06/02/2024,8.0:45,9.0000000,43.2399210000000,5.36244500000000,,Plage de l’Anse du Bain des Dames,76155,Observation #76155,https://biolit.fr/observations/observation-76155/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085818173_HDR-scaled.jpg,,,Identifiable +N1,76147,Sortie #76147,https://biolit.fr/sorties/sortie-76147/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085209735_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085220742_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085320297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085400854.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085408710_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085536874_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085818173_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090440063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090808642_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091451752_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092244899_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092250949_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092411370_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092600238_HDR-rotated.jpg,06/02/2024,8.0:45,9.0000000,43.2399210000000,5.36244500000000,,Plage de l’Anse du Bain des Dames,76157,Observation #76157,https://biolit.fr/observations/observation-76157/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090440063_HDR-scaled.jpg,,TRUE,Identifiable +N1,76147,Sortie #76147,https://biolit.fr/sorties/sortie-76147/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085209735_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085220742_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085320297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085400854.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085408710_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085536874_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085818173_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090440063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090808642_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091451752_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092244899_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092250949_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092411370_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092600238_HDR-rotated.jpg,06/02/2024,8.0:45,9.0000000,43.2399210000000,5.36244500000000,,Plage de l’Anse du Bain des Dames,76159,Observation #76159,https://biolit.fr/observations/observation-76159/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090808642_HDR-rotated.jpg,,TRUE,Identifiable +N1,76147,Sortie #76147,https://biolit.fr/sorties/sortie-76147/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085209735_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085220742_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085320297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085400854.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085408710_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085536874_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085818173_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090440063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090808642_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091451752_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092244899_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092250949_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092411370_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092600238_HDR-rotated.jpg,06/02/2024,8.0:45,9.0000000,43.2399210000000,5.36244500000000,,Plage de l’Anse du Bain des Dames,76161,Observation #76161,https://biolit.fr/observations/observation-76161/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091451752_HDR-scaled.jpg,,TRUE,Identifiable +N1,76147,Sortie #76147,https://biolit.fr/sorties/sortie-76147/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085209735_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085220742_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085320297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085400854.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085408710_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085536874_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_085818173_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090440063_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090808642_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091451752_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092244899_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092250949_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092411370_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092600238_HDR-rotated.jpg,06/02/2024,8.0:45,9.0000000,43.2399210000000,5.36244500000000,,Plage de l’Anse du Bain des Dames,76163,Observation #76163,https://biolit.fr/observations/observation-76163/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092411370_HDR-rotated.jpg,,TRUE,Identifiable +N1,76180,Sortie #76180,https://biolit.fr/sorties/sortie-76180/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090929420-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090941307.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091559150-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091608681_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091637507-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091646418-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091713316_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091734589.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092006581_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092018314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092025885-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092733817-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092744671-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092805589_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092916237-rotated.jpg,06/02/2024,8.0:45,9.0000000,43.2398720000000,5.36243900000000,,Plage de l’Anse du Bain des Dames,76182,Observation #76182,https://biolit.fr/observations/observation-76182/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090929420-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090941307.jpg,,,Ne sais pas +N1,76180,Sortie #76180,https://biolit.fr/sorties/sortie-76180/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090929420-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090941307.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091559150-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091608681_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091637507-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091646418-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091713316_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091734589.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092006581_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092018314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092025885-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092733817-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092744671-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092805589_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092916237-rotated.jpg,06/02/2024,8.0:45,9.0000000,43.2398720000000,5.36243900000000,,Plage de l’Anse du Bain des Dames,76184,Observation #76184,https://biolit.fr/observations/observation-76184/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091559150-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091608681_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092805589_HDR-rotated.jpg,,,Identifiable +N1,76180,Sortie #76180,https://biolit.fr/sorties/sortie-76180/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090929420-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090941307.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091559150-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091608681_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091637507-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091646418-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091713316_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091734589.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092006581_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092018314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092025885-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092733817-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092744671-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092805589_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092916237-rotated.jpg,06/02/2024,8.0:45,9.0000000,43.2398720000000,5.36243900000000,,Plage de l’Anse du Bain des Dames,76186,Observation #76186,https://biolit.fr/observations/observation-76186/,Euthria cornea,Buccin veiné,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091637507-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091646418-rotated.jpg,,,Identifiable +N1,76180,Sortie #76180,https://biolit.fr/sorties/sortie-76180/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090929420-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090941307.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091559150-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091608681_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091637507-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091646418-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091713316_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091734589.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092006581_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092018314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092025885-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092733817-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092744671-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092805589_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092916237-rotated.jpg,06/02/2024,8.0:45,9.0000000,43.2398720000000,5.36243900000000,,Plage de l’Anse du Bain des Dames,76188,Observation #76188,https://biolit.fr/observations/observation-76188/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091713316_HDR-rotated.jpg,,TRUE,Identifiable +N1,76180,Sortie #76180,https://biolit.fr/sorties/sortie-76180/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090929420-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090941307.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091559150-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091608681_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091637507-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091646418-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091713316_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091734589.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092006581_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092018314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092025885-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092733817-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092744671-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092805589_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092916237-rotated.jpg,06/02/2024,8.0:45,9.0000000,43.2398720000000,5.36243900000000,,Plage de l’Anse du Bain des Dames,76190,Observation #76190,https://biolit.fr/observations/observation-76190/,Tridentata perpusilla,Sertulaire minuscule,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091734589.jpg,,,Identifiable +N1,76180,Sortie #76180,https://biolit.fr/sorties/sortie-76180/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090929420-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090941307.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091559150-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091608681_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091637507-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091646418-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091713316_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091734589.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092006581_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092018314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092025885-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092733817-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092744671-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092805589_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092916237-rotated.jpg,06/02/2024,8.0:45,9.0000000,43.2398720000000,5.36243900000000,,Plage de l’Anse du Bain des Dames,76192,Observation #76192,https://biolit.fr/observations/observation-76192/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092006581_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092018314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092025885-rotated.jpg,,,Identifiable +N1,76180,Sortie #76180,https://biolit.fr/sorties/sortie-76180/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090929420-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090941307.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091559150-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091608681_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091637507-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091646418-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091713316_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091734589.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092006581_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092018314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092025885-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092733817-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092744671-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092805589_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092916237-rotated.jpg,06/02/2024,8.0:45,9.0000000,43.2398720000000,5.36243900000000,,Plage de l’Anse du Bain des Dames,76194,Observation #76194,https://biolit.fr/observations/observation-76194/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092733817-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092744671-rotated.jpg,,,Identifiable +N1,76180,Sortie #76180,https://biolit.fr/sorties/sortie-76180/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090929420-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_090941307.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091559150-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091608681_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091637507-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091646418-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091713316_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_091734589.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092006581_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092018314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092025885-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092733817-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092744671-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092805589_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092916237-rotated.jpg,06/02/2024,8.0:45,9.0000000,43.2398720000000,5.36243900000000,,Plage de l’Anse du Bain des Dames,76196,Observation #76196,https://biolit.fr/observations/observation-76196/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240602_092916237-rotated.jpg,,,Identifiable +N1,76208,Sortie #76208,https://biolit.fr/sorties/sortie-76208/,Cblondet,https://biolit.fr/wp-content/uploads/jet-form-builder/c197b1e0d91dcec93e7ffa5eb529bc9d/2024/06/Sabot-de-Venus-Bis-3.jpg,06/06/2024,8.0:42,9.0000000,43.3722990000000,4.56344600000000,,Plage de Beauduc,,,,,,,,,, +N1,76213,Sortie #76213,https://biolit.fr/sorties/sortie-76213/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/06/P3070002-scaled.jpg,5/22/2024 0:00,16.0000000,16.0000000,43.2399050000000,5.36247900000000,Planète Mer,Bain des dames,,,,,,,,,, +N1,76228,Sortie #76228,https://biolit.fr/sorties/sortie-76228/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/06/IMG_4849-scaled.jpeg,06/04/2024,11.0:21,0.0:22,43.2398760000000,5.36249200000000,Planète Mer,Bain des dames,,,,,,,,,, +N1,76236,Sortie #76236,https://biolit.fr/sorties/sortie-76236/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/06/IMG_4668a-1-scaled.jpg,5/22/2024 0:00,16.0000000,16.0000000,43.2399050000000,5.36247900000000,Planète Mer,Bain des dames,,,,,,,,,, +N1,76239,Sortie #76239,https://biolit.fr/sorties/sortie-76239/,Cblondet,https://biolit.fr/wp-content/uploads/jet-form-builder/c197b1e0d91dcec93e7ffa5eb529bc9d/2024/06/velelles-1.jpg,06/06/2024,8.0:42,9.0000000,43.8271590000000,7.90191700000000,,Plage de Beauduc,,,,,,,,,, +N1,76252,Sortie #76252,https://biolit.fr/sorties/sortie-76252/,Cblondet,https://biolit.fr/wp-content/uploads/jet-form-builder/c197b1e0d91dcec93e7ffa5eb529bc9d/2024/06/Sabot-de-Venus-Bis-4.jpg,06/06/2024,8.0:42,9.0000000,43.2336980000000,4.81201200000,,Plage de Beauduc,,,,,,,,,, +N1,76296,Sortie #76296,https://biolit.fr/sorties/sortie-76296/,XAVIER LEBOUTEILLER,https://biolit.fr/wp-content/uploads/jet-form-builder/58b3ec0e028c6b89bf207d6212843440/2024/06/IMG_20240606_152334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/58b3ec0e028c6b89bf207d6212843440/2024/06/IMG_20240606_154145-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/58b3ec0e028c6b89bf207d6212843440/2024/06/IMG_20240606_154222-scaled.jpg,06/06/2024,13.0000000,15.0000000,48.7708790000000,-1.57134000000000,,Jullouville,76298,Observation #76298,https://biolit.fr/observations/observation-76298/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/58b3ec0e028c6b89bf207d6212843440/2024/06/IMG_20240606_152334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/58b3ec0e028c6b89bf207d6212843440/2024/06/IMG_20240606_154145-scaled.jpg,,,Ne sais pas +N1,76329,Sortie #76329,https://biolit.fr/sorties/sortie-76329/,picault patrick,https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011674-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011672-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011670-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011669-scaled.jpg,06/08/2024,19.0000000,20.0000000,43.556842,4.068511,,La Grande Motte,76331,Observation #76331,https://biolit.fr/observations/observation-76331/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011674-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011672-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011670-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/021c34e1a020e1f4e87446997f163288/2024/06/1000011669-scaled.jpg,,FALSE,Identifiable +N1,76399,Sortie #76399,https://biolit.fr/sorties/sortie-76399/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-10-235318.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-10-235609.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155205423_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155219406_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155651126_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155842547-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155850644_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155922360.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155929645.jpg,5/23/2024 0:00,12.0000000,12.0000000,43.2595920000000,5.37487000000000,,Plage de l'Huveaune,76401,Observation #76401,https://biolit.fr/observations/observation-76401/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-10-235318.jpg,,,Ne sais pas +N1,76399,Sortie #76399,https://biolit.fr/sorties/sortie-76399/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-10-235318.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-10-235609.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155205423_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155219406_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155651126_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155842547-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155850644_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155922360.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155929645.jpg,5/23/2024 0:00,12.0000000,12.0000000,43.2595920000000,5.37487000000000,,Plage de l'Huveaune,76403,Observation #76403,https://biolit.fr/observations/observation-76403/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-10-235609.jpg,,,Ne sais pas +N1,76399,Sortie #76399,https://biolit.fr/sorties/sortie-76399/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-10-235318.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-10-235609.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155205423_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155219406_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155651126_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155842547-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155850644_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155922360.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155929645.jpg,5/23/2024 0:00,12.0000000,12.0000000,43.2595920000000,5.37487000000000,,Plage de l'Huveaune,76405,Observation #76405,https://biolit.fr/observations/observation-76405/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155205423_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155219406_HDR-rotated.jpg,,,Identifiable +N1,76399,Sortie #76399,https://biolit.fr/sorties/sortie-76399/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-10-235318.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-10-235609.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155205423_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155219406_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155651126_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155842547-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155850644_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155922360.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155929645.jpg,5/23/2024 0:00,12.0000000,12.0000000,43.2595920000000,5.37487000000000,,Plage de l'Huveaune,76407,Observation #76407,https://biolit.fr/observations/observation-76407/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155651126_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155842547-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155850644_HDR-rotated.jpg,,,Ne sais pas +N1,76399,Sortie #76399,https://biolit.fr/sorties/sortie-76399/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-10-235318.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-10-235609.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155205423_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155219406_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155651126_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155842547-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155850644_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155922360.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155929645.jpg,5/23/2024 0:00,12.0000000,12.0000000,43.2595920000000,5.37487000000000,,Plage de l'Huveaune,76409,Observation #76409,https://biolit.fr/observations/observation-76409/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155922360.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_155929645.jpg,,,Ne sais pas +N1,76421,Sortie #76421,https://biolit.fr/sorties/sortie-76421/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/06/IMG_20240601_175844-scaled.jpg,06/01/2024,17.0000000,17.0:15,43.0910670000000,6.02442900000000,,plage de la garonne,76423,Observation #76423,https://biolit.fr/observations/observation-76423/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/06/IMG_20240601_175844-scaled.jpg,,TRUE,Identifiable +N1,76441,Sortie #76441,https://biolit.fr/sorties/sortie-76441/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-12-095500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Doris-forum.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_143552864_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_144633488_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_144715010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160317496.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160336736.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160856610.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160911033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160930311.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160952640.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161010063.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161039940.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161111893.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161331219.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161446266.jpg,05/11/2024,14.0000000,14.0000000,43.3496720000000,4.87767900000000,,Plage Napoléon,76443,Observation #76443,https://biolit.fr/observations/observation-76443/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-12-095500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_144633488_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_144715010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160952640.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161010063.jpg,,,Ne sais pas +N1,76441,Sortie #76441,https://biolit.fr/sorties/sortie-76441/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-12-095500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Doris-forum.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_143552864_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_144633488_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_144715010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160317496.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160336736.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160856610.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160911033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160930311.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160952640.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161010063.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161039940.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161111893.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161331219.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161446266.jpg,05/11/2024,14.0000000,14.0000000,43.3496720000000,4.87767900000000,,Plage Napoléon,76445,Observation #76445,https://biolit.fr/observations/observation-76445/,Radix auricularia,Limnée conque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Doris-forum.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161331219.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161446266.jpg,,,Ne sais pas +N1,76441,Sortie #76441,https://biolit.fr/sorties/sortie-76441/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-12-095500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Doris-forum.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_143552864_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_144633488_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_144715010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160317496.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160336736.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160856610.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160911033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160930311.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160952640.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161010063.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161039940.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161111893.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161331219.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161446266.jpg,05/11/2024,14.0000000,14.0000000,43.3496720000000,4.87767900000000,,Plage Napoléon,76447,Observation #76447,https://biolit.fr/observations/observation-76447/,Scrobicularia plana,Scrobiculaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_143552864_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161039940.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161111893.jpg,,,Identifiable +N1,76441,Sortie #76441,https://biolit.fr/sorties/sortie-76441/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-12-095500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Doris-forum.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_143552864_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_144633488_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_144715010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160317496.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160336736.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160856610.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160911033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160930311.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160952640.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161010063.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161039940.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161111893.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161331219.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161446266.jpg,05/11/2024,14.0000000,14.0000000,43.3496720000000,4.87767900000000,,Plage Napoléon,76449,Observation #76449,https://biolit.fr/observations/observation-76449/,Pharus legumen,Couteau-gousse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160317496.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160336736.jpg,,,Identifiable +N1,76441,Sortie #76441,https://biolit.fr/sorties/sortie-76441/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-12-095500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Doris-forum.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_143552864_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_144633488_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240511_144715010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160317496.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160336736.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160856610.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160911033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160930311.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160952640.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161010063.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161039940.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161111893.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161331219.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_161446266.jpg,05/11/2024,14.0000000,14.0000000,43.3496720000000,4.87767900000000,,Plage Napoléon,76451,Observation #76451,https://biolit.fr/observations/observation-76451/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160856610.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160911033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240609_160930311.jpg,,,Ne sais pas +N1,76485,Sortie #76485,https://biolit.fr/sorties/sortie-76485/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2024/06/Q1-bigorneau.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2024/06/Q1-gibbule-ombiliquee.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2024/06/Q1-huitre.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2024/06/Q1-littorine-fabalis.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2024/06/Q1-monodonte.jpeg,06/12/2024,15.0000000,15.0000000,47.6077880,-2.747549,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),Plage Le Gornevèze SENE,,,,,,,,,, +N1,76530,Sortie #76530,https://biolit.fr/sorties/sortie-76530/,Granger Angélique,https://biolit.fr/wp-content/uploads/jet-form-builder/8e86d13fc378bd139f5f8e3577ea00f1/2024/06/20240616_114904-scaled.jpg,6/16/2024 0:00,11.0000000,11.0:55,49.1100880000000,-1.60627800000000,,Plage de Gouville sur Mer,76532,Observation #76532,https://biolit.fr/observations/observation-76532/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/jet-form-builder/8e86d13fc378bd139f5f8e3577ea00f1/2024/06/20240616_114904-scaled.jpg,,TRUE,Identifiable +N1,76550,Sortie #76550,https://biolit.fr/sorties/sortie-76550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-083935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084057.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084304.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084602.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085558.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_113957-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_114026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112229124.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112243252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112304190.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112317043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112345017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112409523.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112433777.jpg,5/20/2024 0:00,12.0000000,13.0000000,43.2904170000000,5.35527400000000,,Plage des Catalans,76552,Observation #76552,https://biolit.fr/observations/observation-76552/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-083935.jpg,,,Identifiable +N1,76550,Sortie #76550,https://biolit.fr/sorties/sortie-76550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-083935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084057.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084304.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084602.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085558.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_113957-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_114026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112229124.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112243252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112304190.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112317043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112345017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112409523.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112433777.jpg,5/20/2024 0:00,12.0000000,13.0000000,43.2904170000000,5.35527400000000,,Plage des Catalans,76554,Observation #76554,https://biolit.fr/observations/observation-76554/,Loripes orbiculatus,Loripes orbiculaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084057.jpg,,,Identifiable +N1,76550,Sortie #76550,https://biolit.fr/sorties/sortie-76550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-083935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084057.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084304.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084602.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085558.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_113957-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_114026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112229124.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112243252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112304190.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112317043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112345017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112409523.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112433777.jpg,5/20/2024 0:00,12.0000000,13.0000000,43.2904170000000,5.35527400000000,,Plage des Catalans,76556,Observation #76556,https://biolit.fr/observations/observation-76556/,Calyptraea chinensis,Chapeau chinois,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084304.jpg,,,Identifiable +N1,76550,Sortie #76550,https://biolit.fr/sorties/sortie-76550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-083935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084057.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084304.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084602.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085558.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_113957-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_114026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112229124.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112243252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112304190.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112317043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112345017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112409523.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112433777.jpg,5/20/2024 0:00,12.0000000,13.0000000,43.2904170000000,5.35527400000000,,Plage des Catalans,76558,Observation #76558,https://biolit.fr/observations/observation-76558/,Polititapes rhomboides,Palourde rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084602.jpg,,,Ne sais pas +N1,76550,Sortie #76550,https://biolit.fr/sorties/sortie-76550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-083935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084057.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084304.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084602.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085558.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_113957-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_114026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112229124.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112243252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112304190.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112317043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112345017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112409523.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112433777.jpg,5/20/2024 0:00,12.0000000,13.0000000,43.2904170000000,5.35527400000000,,Plage des Catalans,76560,Observation #76560,https://biolit.fr/observations/observation-76560/,Tritia pellucida,Cyclope translucide,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084741.jpg,,,Ne sais pas +N1,76550,Sortie #76550,https://biolit.fr/sorties/sortie-76550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-083935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084057.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084304.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084602.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085558.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_113957-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_114026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112229124.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112243252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112304190.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112317043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112345017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112409523.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112433777.jpg,5/20/2024 0:00,12.0000000,13.0000000,43.2904170000000,5.35527400000000,,Plage des Catalans,76562,Observation #76562,https://biolit.fr/observations/observation-76562/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085250.jpg,,,Ne sais pas +N1,76550,Sortie #76550,https://biolit.fr/sorties/sortie-76550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-083935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084057.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084304.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084602.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085558.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_113957-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_114026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112229124.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112243252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112304190.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112317043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112345017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112409523.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112433777.jpg,5/20/2024 0:00,12.0000000,13.0000000,43.2904170000000,5.35527400000000,,Plage des Catalans,76564,Observation #76564,https://biolit.fr/observations/observation-76564/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085558.jpg,,,Ne sais pas +N1,76550,Sortie #76550,https://biolit.fr/sorties/sortie-76550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-083935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084057.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084304.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084602.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085558.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_113957-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_114026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112229124.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112243252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112304190.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112317043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112345017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112409523.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112433777.jpg,5/20/2024 0:00,12.0000000,13.0000000,43.2904170000000,5.35527400000000,,Plage des Catalans,76566,Observation #76566,https://biolit.fr/observations/observation-76566/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_113957-scaled.jpg,,,Identifiable +N1,76550,Sortie #76550,https://biolit.fr/sorties/sortie-76550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-083935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084057.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084304.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084602.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085558.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_113957-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_114026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112229124.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112243252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112304190.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112317043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112345017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112409523.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112433777.jpg,5/20/2024 0:00,12.0000000,13.0000000,43.2904170000000,5.35527400000000,,Plage des Catalans,76568,Observation #76568,https://biolit.fr/observations/observation-76568/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_114026-scaled.jpg,,,Identifiable +N1,76550,Sortie #76550,https://biolit.fr/sorties/sortie-76550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-083935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084057.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084304.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084602.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085558.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_113957-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_114026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112229124.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112243252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112304190.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112317043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112345017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112409523.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112433777.jpg,5/20/2024 0:00,12.0000000,13.0000000,43.2904170000000,5.35527400000000,,Plage des Catalans,76570,Observation #76570,https://biolit.fr/observations/observation-76570/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112229124.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112243252.jpg,,,Ne sais pas +N1,76550,Sortie #76550,https://biolit.fr/sorties/sortie-76550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-083935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084057.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084304.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084602.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085558.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_113957-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_114026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112229124.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112243252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112304190.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112317043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112345017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112409523.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112433777.jpg,5/20/2024 0:00,12.0000000,13.0000000,43.2904170000000,5.35527400000000,,Plage des Catalans,76572,Observation #76572,https://biolit.fr/observations/observation-76572/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112304190.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112317043.jpg,,,Ne sais pas +N1,76550,Sortie #76550,https://biolit.fr/sorties/sortie-76550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-083935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084057.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084304.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084602.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085558.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_113957-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_114026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112229124.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112243252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112304190.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112317043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112345017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112409523.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112433777.jpg,5/20/2024 0:00,12.0000000,13.0000000,43.2904170000000,5.35527400000000,,Plage des Catalans,76574,Observation #76574,https://biolit.fr/observations/observation-76574/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112345017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112409523.jpg,,,Ne sais pas +N1,76550,Sortie #76550,https://biolit.fr/sorties/sortie-76550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-083935.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084057.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084304.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084602.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-084741.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085250.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-17-085558.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_113957-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_114026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112229124.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112243252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112304190.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112317043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112345017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112409523.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112433777.jpg,5/20/2024 0:00,12.0000000,13.0000000,43.2904170000000,5.35527400000000,,Plage des Catalans,76576,Observation #76576,https://biolit.fr/observations/observation-76576/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240616_112433777.jpg,,,Identifiable +N1,76597,Sortie #76597,https://biolit.fr/sorties/sortie-76597/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155420583_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155429049_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155456670_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155505169_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155540841_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155548462_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160241087_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160254076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160501970.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160511136.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160607630_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160620003_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160818091_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160949578_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161047850_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161111874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161119372_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161222523-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161229673.jpg,5/15/2024 0:00,15.0:45,16.0:15,43.259757000000,5.374656000000,,Plage de l'Huveaune,76599,Observation #76599,https://biolit.fr/observations/observation-76599/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155420583_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155429049_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160501970.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160511136.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161047850_HDR-scaled.jpg,,,Identifiable +N1,76597,Sortie #76597,https://biolit.fr/sorties/sortie-76597/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155420583_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155429049_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155456670_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155505169_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155540841_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155548462_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160241087_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160254076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160501970.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160511136.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160607630_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160620003_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160818091_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160949578_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161047850_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161111874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161119372_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161222523-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161229673.jpg,5/15/2024 0:00,15.0:45,16.0:15,43.259757000000,5.374656000000,,Plage de l'Huveaune,76601,Observation #76601,https://biolit.fr/observations/observation-76601/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155456670_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155505169_HDR.jpg,,,Ne sais pas +N1,76597,Sortie #76597,https://biolit.fr/sorties/sortie-76597/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155420583_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155429049_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155456670_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155505169_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155540841_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155548462_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160241087_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160254076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160501970.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160511136.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160607630_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160620003_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160818091_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160949578_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161047850_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161111874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161119372_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161222523-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161229673.jpg,5/15/2024 0:00,15.0:45,16.0:15,43.259757000000,5.374656000000,,Plage de l'Huveaune,76603,Observation #76603,https://biolit.fr/observations/observation-76603/,Tritia corniculum,Tritia corniculum,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155540841_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155548462_HDR.jpg,,,Identifiable +N1,76597,Sortie #76597,https://biolit.fr/sorties/sortie-76597/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155420583_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155429049_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155456670_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155505169_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155540841_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155548462_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160241087_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160254076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160501970.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160511136.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160607630_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160620003_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160818091_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160949578_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161047850_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161111874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161119372_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161222523-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161229673.jpg,5/15/2024 0:00,15.0:45,16.0:15,43.259757000000,5.374656000000,,Plage de l'Huveaune,76605,Observation #76605,https://biolit.fr/observations/observation-76605/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160241087_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160254076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160607630_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160620003_HDR-rotated.jpg,,,Identifiable +N1,76597,Sortie #76597,https://biolit.fr/sorties/sortie-76597/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155420583_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155429049_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155456670_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155505169_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155540841_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155548462_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160241087_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160254076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160501970.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160511136.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160607630_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160620003_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160818091_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160949578_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161047850_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161111874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161119372_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161222523-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161229673.jpg,5/15/2024 0:00,15.0:45,16.0:15,43.259757000000,5.374656000000,,Plage de l'Huveaune,76607,Observation #76607,https://biolit.fr/observations/observation-76607/,Corallina officinalis/caespitosa,Coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160818091_HDR.jpg,,,Identifiable +N1,76597,Sortie #76597,https://biolit.fr/sorties/sortie-76597/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155420583_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155429049_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155456670_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155505169_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155540841_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155548462_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160241087_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160254076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160501970.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160511136.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160607630_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160620003_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160818091_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160949578_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161047850_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161111874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161119372_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161222523-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161229673.jpg,5/15/2024 0:00,15.0:45,16.0:15,43.259757000000,5.374656000000,,Plage de l'Huveaune,76609,Observation #76609,https://biolit.fr/observations/observation-76609/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160949578_HDR-scaled.jpg,,,Identifiable +N1,76597,Sortie #76597,https://biolit.fr/sorties/sortie-76597/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155420583_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155429049_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155456670_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155505169_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155540841_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155548462_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160241087_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160254076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160501970.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160511136.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160607630_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160620003_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160818091_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160949578_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161047850_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161111874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161119372_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161222523-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161229673.jpg,5/15/2024 0:00,15.0:45,16.0:15,43.259757000000,5.374656000000,,Plage de l'Huveaune,76611,Observation #76611,https://biolit.fr/observations/observation-76611/,Loripes orbiculatus,Loripes orbiculaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161111874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161119372_HDR.jpg,,,Identifiable +N1,76597,Sortie #76597,https://biolit.fr/sorties/sortie-76597/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155420583_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155429049_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155456670_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155505169_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155540841_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_155548462_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160241087_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160254076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160501970.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160511136.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160607630_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160620003_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160818091_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_160949578_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161047850_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161111874_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161119372_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161222523-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161229673.jpg,5/15/2024 0:00,15.0:45,16.0:15,43.259757000000,5.374656000000,,Plage de l'Huveaune,76613,Observation #76613,https://biolit.fr/observations/observation-76613/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161222523-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240615_161229673.jpg,,,Identifiable +N1,76620,Sortie #76620,https://biolit.fr/sorties/sortie-76620/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/06/IMG_4297.png,6/15/2024 0:00,15.0000000,15.0000000,43.2733120000000,5.36163100000000,,Prophète,76622,Observation #76622,https://biolit.fr/observations/observation-76622/,Caulerpa cylindracea,Caulerpe cylindracée,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/06/IMG_4297.png,,TRUE,Identifiable +N1,76625,Sortie #76625,https://biolit.fr/sorties/sortie-76625/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/06/IMG_4298.png,6/15/2024 0:00,15.0000000,15.0000000,43.2733120000000,5.36163100000000,,Prophète,76627,Observation #76627,https://biolit.fr/observations/observation-76627/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/06/IMG_4298.png,,TRUE,Identifiable +N1,76630,Sortie #76630,https://biolit.fr/sorties/sortie-76630/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/06/IMG_4323.png,6/15/2024 0:00,15.0000000,15.0000000,43.2733120000000,5.36163100000000,,Prophète,76632,Observation #76632,https://biolit.fr/observations/observation-76632/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/06/IMG_4323.png,,,Identifiable +N1,76635,Sortie #76635,https://biolit.fr/sorties/sortie-76635/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/06/IMG_4326.png,6/15/2024 0:00,15.0000000,15.0000000,43.2733120000000,5.36163100000000,,Prophète,76637,Observation #76637,https://biolit.fr/observations/observation-76637/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/06/IMG_4326.png,,TRUE,Identifiable +N1,76640,Sortie #76640,https://biolit.fr/sorties/sortie-76640/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/06/IMG_4325.png,6/15/2024 0:00,15.0000000,15.0000000,43.2733120000000,5.36163100000000,,Prophète,76642,Observation #76642,https://biolit.fr/observations/observation-76642/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/06/IMG_4325.png,,,Ne sais pas +N1,76645,Sortie #76645,https://biolit.fr/sorties/sortie-76645/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/06/IMG_4306.png,6/15/2024 0:00,15.0000000,15.0000000,43.2733120000000,5.36163100000000,,Prophète,76647,Observation #76647,https://biolit.fr/observations/observation-76647/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/06/IMG_4306.png,,,Ne sais pas +N1,76651,Sortie #76651,https://biolit.fr/sorties/sortie-76651/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/06/IMG_4317.png | https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/06/IMG_4319.png,6/15/2024 0:00,15.0000000,15.0000000,43.2733120000000,5.36163100000000,,Prophète,76653,Observation #76653,https://biolit.fr/observations/observation-76653/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/06/IMG_4317.png | https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/06/IMG_4319.png,,,Ne sais pas +N1,76656,Sortie #76656,https://biolit.fr/sorties/sortie-76656/,SANA Astrid,https://biolit.fr/wp-content/uploads/jet-form-builder/b38ef41aa6aa41f444df6a86405155ce/2024/06/IMG_20230915_130503_792.jpg,9/15/2023 0:00,14.0000000,15.0000000,43.7585110000000,7.4528370000000,,Cabbé,,,,,,,,,, +N1,76659,Sortie #76659,https://biolit.fr/sorties/sortie-76659/,SANA Astrid,https://biolit.fr/wp-content/uploads/jet-form-builder/b38ef41aa6aa41f444df6a86405155ce/2024/06/IMG_20230915_130503_792-1.jpg,9/15/2023 0:00,14.0000000,15.0000000,43.7585110000000,7.4528370000000,,Cabbé,76661,Observation #76661,https://biolit.fr/observations/observation-76661/,Thalassoma pavo,Girelle-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/b38ef41aa6aa41f444df6a86405155ce/2024/06/IMG_20230915_130503_792-1.jpg,,,Identifiable +N1,76659,Sortie #76659,https://biolit.fr/sorties/sortie-76659/,SANA Astrid,https://biolit.fr/wp-content/uploads/jet-form-builder/b38ef41aa6aa41f444df6a86405155ce/2024/06/IMG_20230915_130503_792-1.jpg,9/15/2023 0:00,14.0000000,15.0000000,43.7585110000000,7.4528370000000,,Cabbé,76663,Observation #76663,https://biolit.fr/observations/observation-76663/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b38ef41aa6aa41f444df6a86405155ce/2024/06/IMG_20230915_130503_792-1.jpg,,,Ne sais pas +N1,76666,Sortie #76666,https://biolit.fr/sorties/sortie-76666/,Loche Kodjo,https://biolit.fr/wp-content/uploads/jet-form-builder/34b905f78174d7d479ded466b5cd6611/2024/06/114835_1718650963543.jpg,06/12/2024,15.0000000,15.0:35,48.2598460000000,-4.58404500000000,,Grotte de Morgat,76668,Observation #76668,https://biolit.fr/observations/observation-76668/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/34b905f78174d7d479ded466b5cd6611/2024/06/114835_1718650963543.jpg,,TRUE,Identifiable +N1,76672,Sortie #76672,https://biolit.fr/sorties/sortie-76672/,Loche Kodjo,https://biolit.fr/wp-content/uploads/jet-form-builder/34b905f78174d7d479ded466b5cd6611/2024/06/110153_1718654364329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/34b905f78174d7d479ded466b5cd6611/2024/06/110154_1718654336203.jpg,6/14/2024 0:00,12.0000000,12.0:45,48.2598460000000,-4.58404500000000,,Plouha - Gwin Zegal,76674,Observation #76674,https://biolit.fr/observations/observation-76674/,Scyliorhinus canicula,Petite roussette,,https://biolit.fr/wp-content/uploads/jet-form-builder/34b905f78174d7d479ded466b5cd6611/2024/06/110153_1718654364329-scaled.jpg,,TRUE,Identifiable +N1,76672,Sortie #76672,https://biolit.fr/sorties/sortie-76672/,Loche Kodjo,https://biolit.fr/wp-content/uploads/jet-form-builder/34b905f78174d7d479ded466b5cd6611/2024/06/110153_1718654364329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/34b905f78174d7d479ded466b5cd6611/2024/06/110154_1718654336203.jpg,6/14/2024 0:00,12.0000000,12.0:45,48.2598460000000,-4.58404500000000,,Plouha - Gwin Zegal,76676,Observation #76676,https://biolit.fr/observations/observation-76676/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/34b905f78174d7d479ded466b5cd6611/2024/06/110154_1718654336203.jpg,,,Identifiable +N1,76776,Sortie #76776,https://biolit.fr/sorties/sortie-76776/,Hervé Alexandre,https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1071.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1072.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1073.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1074.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1075.jpeg,6/20/2024 0:00,13.0:47,14.0000000,48.6400450000000,-2.07252500000000,Planète Mer (antenne Dinard),Dinard,76780,Observation #76780,https://biolit.fr/observations/observation-76780/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1071.jpeg,,TRUE,Identifiable +N1,76776,Sortie #76776,https://biolit.fr/sorties/sortie-76776/,Hervé Alexandre,https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1071.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1072.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1073.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1074.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1075.jpeg,6/20/2024 0:00,13.0:47,14.0000000,48.6400450000000,-2.07252500000000,Planète Mer (antenne Dinard),Dinard,76794,Observation #76794,https://biolit.fr/observations/observation-76794/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1072.jpeg,,TRUE,Identifiable +N1,76776,Sortie #76776,https://biolit.fr/sorties/sortie-76776/,Hervé Alexandre,https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1071.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1072.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1073.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1074.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1075.jpeg,6/20/2024 0:00,13.0:47,14.0000000,48.6400450000000,-2.07252500000000,Planète Mer (antenne Dinard),Dinard,76801,Observation #76801,https://biolit.fr/observations/observation-76801/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1072.jpeg,,TRUE,Identifiable +N1,76776,Sortie #76776,https://biolit.fr/sorties/sortie-76776/,Hervé Alexandre,https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1071.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1072.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1073.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1074.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1075.jpeg,6/20/2024 0:00,13.0:47,14.0000000,48.6400450000000,-2.07252500000000,Planète Mer (antenne Dinard),Dinard,76804,Observation #76804,https://biolit.fr/observations/observation-76804/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1073.jpeg,,TRUE,Identifiable +N1,76776,Sortie #76776,https://biolit.fr/sorties/sortie-76776/,Hervé Alexandre,https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1071.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1072.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1073.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1074.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1075.jpeg,6/20/2024 0:00,13.0:47,14.0000000,48.6400450000000,-2.07252500000000,Planète Mer (antenne Dinard),Dinard,76806,Observation #76806,https://biolit.fr/observations/observation-76806/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1074.jpeg,,TRUE,Identifiable +N1,76776,Sortie #76776,https://biolit.fr/sorties/sortie-76776/,Hervé Alexandre,https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1071.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1072.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1073.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1074.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1075.jpeg,6/20/2024 0:00,13.0:47,14.0000000,48.6400450000000,-2.07252500000000,Planète Mer (antenne Dinard),Dinard,76819,Observation #76819,https://biolit.fr/observations/observation-76819/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/30995c72c2ee452f4d5ddd3c371a40b2/2024/06/IMG_1075.jpeg,,TRUE,Identifiable +N1,76877,Sortie #76877,https://biolit.fr/sorties/sortie-76877/,Charrier Guy,https://biolit.fr/wp-content/uploads/jet-form-builder/4a6f3950e758b2efc95efe92400e1c2b/2024/06/WhatsApp-Image-2024-06-21-a-14.32.26_2f9ea660.jpg,6/21/2024 0:00,11.000005,11.0000000,46.4481770,-1.6812680,,Plage de la république Talmont st hilaire,76879,Observation #76879,https://biolit.fr/observations/observation-76879/,Felimare cantabrica,Doris cantabrique,,https://biolit.fr/wp-content/uploads/jet-form-builder/4a6f3950e758b2efc95efe92400e1c2b/2024/06/WhatsApp-Image-2024-06-21-a-14.32.26_2f9ea660.jpg,,TRUE,Identifiable +N1,76886,Sortie #76886,https://biolit.fr/sorties/sortie-76886/,Bourgeat Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.36.56.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.37.03.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.37.08.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.37.13.png,6/21/2024 0:00,13.0000000,14.0:45,43.3576030000000,5.29034300000000,Centre Initiation et Découverte Mer Ville de Marseille,"Corbière, plage du Fortin",76888,Observation #76888,https://biolit.fr/observations/observation-76888/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.36.56.png,,TRUE,Identifiable +N1,76886,Sortie #76886,https://biolit.fr/sorties/sortie-76886/,Bourgeat Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.36.56.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.37.03.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.37.08.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.37.13.png,6/21/2024 0:00,13.0000000,14.0:45,43.3576030000000,5.29034300000000,Centre Initiation et Découverte Mer Ville de Marseille,"Corbière, plage du Fortin",76890,Observation #76890,https://biolit.fr/observations/observation-76890/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.37.03.png,,TRUE,Ne sais pas +N1,76886,Sortie #76886,https://biolit.fr/sorties/sortie-76886/,Bourgeat Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.36.56.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.37.03.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.37.08.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.37.13.png,6/21/2024 0:00,13.0000000,14.0:45,43.3576030000000,5.29034300000000,Centre Initiation et Découverte Mer Ville de Marseille,"Corbière, plage du Fortin",76892,Observation #76892,https://biolit.fr/observations/observation-76892/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.37.08.png,,TRUE,Identifiable +N1,76886,Sortie #76886,https://biolit.fr/sorties/sortie-76886/,Bourgeat Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.36.56.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.37.03.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.37.08.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.37.13.png,6/21/2024 0:00,13.0000000,14.0:45,43.3576030000000,5.29034300000000,Centre Initiation et Découverte Mer Ville de Marseille,"Corbière, plage du Fortin",76894,Observation #76894,https://biolit.fr/observations/observation-76894/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/5b6ab43499e4f6d8c972c37dc8ff7646/2024/06/Capture-decran-2024-06-25-a-09.37.13.png,,TRUE,Identifiable +N1,76912,Sortie #76912,https://biolit.fr/sorties/sortie-76912/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,5/19/2024 0:00,15.0000000,17.0000000,43.257282000000,5.37519200000000,,Plage de Borély,76914,Observation #76914,https://biolit.fr/observations/observation-76914/,Euthria cornea,Buccin veiné,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg,,,Identifiable +N1,76912,Sortie #76912,https://biolit.fr/sorties/sortie-76912/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,5/19/2024 0:00,15.0000000,17.0000000,43.257282000000,5.37519200000000,,Plage de Borély,76916,Observation #76916,https://biolit.fr/observations/observation-76916/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg,,,Identifiable +N1,76912,Sortie #76912,https://biolit.fr/sorties/sortie-76912/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,5/19/2024 0:00,15.0000000,17.0000000,43.257282000000,5.37519200000000,,Plage de Borély,76918,Observation #76918,https://biolit.fr/observations/observation-76918/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg,,,Identifiable +N1,76912,Sortie #76912,https://biolit.fr/sorties/sortie-76912/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,5/19/2024 0:00,15.0000000,17.0000000,43.257282000000,5.37519200000000,,Plage de Borély,76920,Observation #76920,https://biolit.fr/observations/observation-76920/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg,,,Ne sais pas +N1,76912,Sortie #76912,https://biolit.fr/sorties/sortie-76912/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,5/19/2024 0:00,15.0000000,17.0000000,43.257282000000,5.37519200000000,,Plage de Borély,76922,Observation #76922,https://biolit.fr/observations/observation-76922/,Striarca lactea,Striarca laiteuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg,,,Ne sais pas +N1,76912,Sortie #76912,https://biolit.fr/sorties/sortie-76912/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,5/19/2024 0:00,15.0000000,17.0000000,43.257282000000,5.37519200000000,,Plage de Borély,76924,Observation #76924,https://biolit.fr/observations/observation-76924/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg,,,Ne sais pas +N1,76912,Sortie #76912,https://biolit.fr/sorties/sortie-76912/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,5/19/2024 0:00,15.0000000,17.0000000,43.257282000000,5.37519200000000,,Plage de Borély,76926,Observation #76926,https://biolit.fr/observations/observation-76926/,Lepas (Anatifa) hillii,Anatife à ceinture orange,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg,,,Ne sais pas +N1,76912,Sortie #76912,https://biolit.fr/sorties/sortie-76912/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,5/19/2024 0:00,15.0000000,17.0000000,43.257282000000,5.37519200000000,,Plage de Borély,76928,Observation #76928,https://biolit.fr/observations/observation-76928/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg,,,Identifiable +N1,76912,Sortie #76912,https://biolit.fr/sorties/sortie-76912/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,5/19/2024 0:00,15.0000000,17.0000000,43.257282000000,5.37519200000000,,Plage de Borély,76930,Observation #76930,https://biolit.fr/observations/observation-76930/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg,,,Ne sais pas +N1,76912,Sortie #76912,https://biolit.fr/sorties/sortie-76912/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,5/19/2024 0:00,15.0000000,17.0000000,43.257282000000,5.37519200000000,,Plage de Borély,76932,Observation #76932,https://biolit.fr/observations/observation-76932/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg,,,Ne sais pas +N1,76912,Sortie #76912,https://biolit.fr/sorties/sortie-76912/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,5/19/2024 0:00,15.0000000,17.0000000,43.257282000000,5.37519200000000,,Plage de Borély,76934,Observation #76934,https://biolit.fr/observations/observation-76934/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg,,,Identifiable +N1,76912,Sortie #76912,https://biolit.fr/sorties/sortie-76912/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,5/19/2024 0:00,15.0000000,17.0000000,43.257282000000,5.37519200000000,,Plage de Borély,76936,Observation #76936,https://biolit.fr/observations/observation-76936/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg,,,Identifiable +N1,76912,Sortie #76912,https://biolit.fr/sorties/sortie-76912/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,5/19/2024 0:00,15.0000000,17.0000000,43.257282000000,5.37519200000000,,Plage de Borély,76938,Observation #76938,https://biolit.fr/observations/observation-76938/,Tritia corniculum,Tritia corniculum,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg,,,Identifiable +N1,76912,Sortie #76912,https://biolit.fr/sorties/sortie-76912/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,5/19/2024 0:00,15.0000000,17.0000000,43.257282000000,5.37519200000000,,Plage de Borély,76940,Observation #76940,https://biolit.fr/observations/observation-76940/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg,,,Identifiable +N1,76912,Sortie #76912,https://biolit.fr/sorties/sortie-76912/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,5/19/2024 0:00,15.0000000,17.0000000,43.257282000000,5.37519200000000,,Plage de Borély,76942,Observation #76942,https://biolit.fr/observations/observation-76942/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg,,TRUE,Identifiable +N1,76912,Sortie #76912,https://biolit.fr/sorties/sortie-76912/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-085928.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090035.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090153.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-090533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091408.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-091658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-132504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/Capture-decran-2024-06-26-140155.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182506633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182534243.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182608788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_182626111.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183217128.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,5/19/2024 0:00,15.0000000,17.0000000,43.257282000000,5.37519200000000,,Plage de Borély,76944,Observation #76944,https://biolit.fr/observations/observation-76944/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/06/IMG_20240625_183248183.jpg,,,Ne sais pas +N1,76949,(empty),https://biolit.fr/sorties/empty-2/,Eric Blanchard,,5/30/2024 0:00,,,,,,,,,,,,,,,, +N1,76951,(empty),https://biolit.fr/sorties/empty-3/,Eric Blanchard,,5/30/2024 0:00,,,,,,,,,,,,,,,, +N1,76953,(empty),https://biolit.fr/sorties/empty-4/,Eric Blanchard,,5/30/2024 0:00,,,,,,,,,,,,,,,, +N1,76961,Sortie #76961,https://biolit.fr/sorties/sortie-76961/,Eric Blanchard,FALSE,5/31/2024 0:00,18.0000000,22.0:28,49.2853590000000,-0.274658000000,,,,,,,,,,,, +N1,76970,Sortie #76970,https://biolit.fr/sorties/sortie-76970/,Eric Blanchard,FALSE,06/05/2024,22.0:31,23.0:31,49.3390770000000,-0.32959000000,,plage de la mare,,,,,,,,,, +N1,76973,Sortie #76973,https://biolit.fr/sorties/sortie-76973/,Eric Blanchard,FALSE,5/30/2024 0:00,21.0000000,19.0000000,48.5926960,-2.2870500,,plage de la mare,,,,,,,,,, +N1,76977,(empty),https://biolit.fr/sorties/empty-8/,Eric Blanchard,,5/30/2024 0:00,,,,,,,,,,,,,,,, +N1,76979,Sortie #76979,https://biolit.fr/sorties/sortie-76979/,Eric Blanchard,FALSE,5/30/2024 0:00,21.0000000,19.0000000,48.4311580000000,-4.7900390000,,plage de la mare,,,,,,,,,, +N1,76995,Sortie #76995,https://biolit.fr/sorties/sortie-76995/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/06/lagune-scaled.jpg,05/11/2024,14.0000000,16.0000000,42.5353450000000,3.06435900000000,LABELBLEU,Crique de porteils - Argelès sur mer,,,,,,,,,, +N1,76998,Sortie #76998,https://biolit.fr/sorties/sortie-76998/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/06/Biolit.jpg,5/22/2024 0:00,14.0000000,14.0:45,42.7345000000000,3.0377570000000,LABELBLEU,Plage Sainte marie la mer,,,,,,,,,, +N1,77001,Sortie #77001,https://biolit.fr/sorties/sortie-77001/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/06/Biolit-1.jpg,5/22/2024 0:00,14.0000000,14.0:45,42.7350850000000,3.03753700000000,LABELBLEU,Plage Sainte marie la mer,77003,Observation #77003,https://biolit.fr/observations/observation-77003/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/06/Biolit-1.jpg,,, +N1,77006,Sortie #77006,https://biolit.fr/sorties/sortie-77006/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/06/WhatsApp-Image-2024-06-28-a-16.55.46_022b411d.jpg,5/25/2024 0:00,14.0000000,14.0:45,42.502021000000,3.12487000000000,LABELBLEU,plage de paulilles,77008,Observation #77008,https://biolit.fr/observations/observation-77008/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/06/WhatsApp-Image-2024-06-28-a-16.55.46_022b411d.jpg,,,Identifiable +N1,77016,Sortie #77016,https://biolit.fr/sorties/sortie-77016/,PASTOR Enzo,https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060265-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060262-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060247-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060258-scaled.jpg,6/29/2024 0:00,9.0000000,10.0000000,43.546232,6.938309,,Plage du château. Mandelieu la napoule,77018,Observation #77018,https://biolit.fr/observations/observation-77018/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060265-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060262-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060247-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060258-scaled.jpg,,,Ne sais pas +N1,77016,Sortie #77016,https://biolit.fr/sorties/sortie-77016/,PASTOR Enzo,https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060265-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060262-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060247-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060258-scaled.jpg,6/29/2024 0:00,9.0000000,10.0000000,43.546232,6.938309,,Plage du château. Mandelieu la napoule,77020,Observation #77020,https://biolit.fr/observations/observation-77020/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060257-scaled.jpg,,,Ne sais pas +N1,77016,Sortie #77016,https://biolit.fr/sorties/sortie-77016/,PASTOR Enzo,https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060265-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060262-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060247-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060258-scaled.jpg,6/29/2024 0:00,9.0000000,10.0000000,43.546232,6.938309,,Plage du château. Mandelieu la napoule,77022,Observation #77022,https://biolit.fr/observations/observation-77022/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060262-scaled.jpg,,,Ne sais pas +N1,77016,Sortie #77016,https://biolit.fr/sorties/sortie-77016/,PASTOR Enzo,https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060265-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060262-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060247-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060258-scaled.jpg,6/29/2024 0:00,9.0000000,10.0000000,43.546232,6.938309,,Plage du château. Mandelieu la napoule,77024,Observation #77024,https://biolit.fr/observations/observation-77024/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060247-scaled.jpg,,TRUE,Identifiable +N1,77016,Sortie #77016,https://biolit.fr/sorties/sortie-77016/,PASTOR Enzo,https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060265-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060262-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060247-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060258-scaled.jpg,6/29/2024 0:00,9.0000000,10.0000000,43.546232,6.938309,,Plage du château. Mandelieu la napoule,77026,Observation #77026,https://biolit.fr/observations/observation-77026/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7683b47f05cc72e6803663164d2b960c/2024/06/1000060258-scaled.jpg,,,Identifiable +N1,77042,Sortie #77042,https://biolit.fr/sorties/sortie-77042/,DABAUX Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/eed4a23e728895dbbc26f48c6512ede6/2024/07/1719817624647-scaled.jpg,6/28/2024 0:00,9.0:48,10.0000000,43.3575680000000,5.29019800000000,,plage de Corbière,,,,,,,,,, +N1,77049,Sortie #77049,https://biolit.fr/sorties/sortie-77049/,Ligue de l'enseignement,https://biolit.fr/wp-content/uploads/jet-form-builder/53c37a35e4213448a6b3fbbb6ceddb5d/2024/07/Bus-832-Cannes.png,6/13/2024 0:00,10.0000000,11.0000000,47.2536480000000,-2.33486900000000,,Plage des sablons,,,,,,,,,, +N1,77055,Sortie #77055,https://biolit.fr/sorties/sortie-77055/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_142754161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_143017355-scaled.jpg,6/23/2024 0:00,14.0000000,14.0000000,43.2904140000000,5.35532500000000,,Plage des Catalans,77057,Observation #77057,https://biolit.fr/observations/observation-77057/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_142754161-scaled.jpg,,,Ne sais pas +N1,77055,Sortie #77055,https://biolit.fr/sorties/sortie-77055/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_142754161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_143017355-scaled.jpg,6/23/2024 0:00,14.0000000,14.0000000,43.2904140000000,5.35532500000000,,Plage des Catalans,77059,Observation #77059,https://biolit.fr/observations/observation-77059/,Codium effusum,Codium étalé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_143017355-scaled.jpg,,,Ne sais pas +N1,77073,Sortie #77073,https://biolit.fr/sorties/sortie-77073/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/07/IMG_4768-scaled.jpg,6/29/2024 0:00,11.0000000,12.0000000,43.2111350000000,5.38440900000000,,Podestat,77076,Observation #77076,https://biolit.fr/observations/observation-77076/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/07/IMG_4768-scaled.jpg,,,Identifiable +N1,77082,Sortie #77082,https://biolit.fr/sorties/sortie-77082/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164332-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164325-scaled.jpg,6/23/2024 0:00,17.0000000,17.0000000,43.1065500000000,6.29853200000000,,L'estagnol,,,,,,,,,, +N1,77092,Sortie #77092,https://biolit.fr/sorties/sortie-77092/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_152848524_HDR_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_152906487_HDR_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_153110732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_153206806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_153850638-scaled.jpg,6/23/2024 0:00,16.0000000,16.0000000,43.2945600000000,5.35924800000000,,Falaises du Pharo,77094,Observation #77094,https://biolit.fr/observations/observation-77094/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_152848524_HDR_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_152906487_HDR_.jpg,,,Identifiable +N1,77092,Sortie #77092,https://biolit.fr/sorties/sortie-77092/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_152848524_HDR_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_152906487_HDR_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_153110732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_153206806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_153850638-scaled.jpg,6/23/2024 0:00,16.0000000,16.0000000,43.2945600000000,5.35924800000000,,Falaises du Pharo,77096,Observation #77096,https://biolit.fr/observations/observation-77096/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_153110732-scaled.jpg,,,Identifiable +N1,77092,Sortie #77092,https://biolit.fr/sorties/sortie-77092/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_152848524_HDR_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_152906487_HDR_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_153110732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_153206806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_153850638-scaled.jpg,6/23/2024 0:00,16.0000000,16.0000000,43.2945600000000,5.35924800000000,,Falaises du Pharo,77098,Observation #77098,https://biolit.fr/observations/observation-77098/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_153206806-scaled.jpg,,,Ne sais pas +N1,77092,Sortie #77092,https://biolit.fr/sorties/sortie-77092/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_152848524_HDR_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_152906487_HDR_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_153110732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_153206806-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_153850638-scaled.jpg,6/23/2024 0:00,16.0000000,16.0000000,43.2945600000000,5.35924800000000,,Falaises du Pharo,77100,Observation #77100,https://biolit.fr/observations/observation-77100/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240623_153850638-scaled.jpg,,TRUE,Identifiable +N1,77106,Sortie #77106,https://biolit.fr/sorties/sortie-77106/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164332-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164325-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164316-1-scaled.jpg,6/23/2024 0:00,17.0000000,17.0000000,43.1072520000000,6.29899900000000,,L'estagnol,,,,,,,,,, +N1,77111,Sortie #77111,https://biolit.fr/sorties/sortie-77111/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164332-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164325-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164316-2-scaled.jpg,6/23/2024 0:00,17.0000000,17.0000000,43.1072330000000,6.29897200000000,,L'estagnol,77113,Observation #77113,https://biolit.fr/observations/observation-77113/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164332-2-scaled.jpg,,TRUE,Identifiable +N1,77111,Sortie #77111,https://biolit.fr/sorties/sortie-77111/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164332-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164325-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164316-2-scaled.jpg,6/23/2024 0:00,17.0000000,17.0000000,43.1072330000000,6.29897200000000,,L'estagnol,77115,Observation #77115,https://biolit.fr/observations/observation-77115/,Cymodocea nodosa,Cymodocée,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164325-2-scaled.jpg,,,Identifiable +N1,77111,Sortie #77111,https://biolit.fr/sorties/sortie-77111/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164332-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164325-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164316-2-scaled.jpg,6/23/2024 0:00,17.0000000,17.0000000,43.1072330000000,6.29897200000000,,L'estagnol,77117,Observation #77117,https://biolit.fr/observations/observation-77117/,Caulerpa cylindracea,Caulerpe cylindracée,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/07/IMG_20240623_164316-2-scaled.jpg,,TRUE,Identifiable +N1,77129,Sortie #77129,https://biolit.fr/sorties/sortie-77129/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-01-233110.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183735-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_110645444.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_110652149_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183337033-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183352537_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183850120-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183858508-rotated.jpg,6/30/2024 0:00,11.0000000,11.0000000,43.2522300000000,5.37264500000000,,Plage de la Vielle Chapelle,77131,Observation #77131,https://biolit.fr/observations/observation-77131/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-01-233110.jpg,,,Ne sais pas +N1,77129,Sortie #77129,https://biolit.fr/sorties/sortie-77129/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-01-233110.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183735-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_110645444.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_110652149_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183337033-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183352537_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183850120-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183858508-rotated.jpg,6/30/2024 0:00,11.0000000,11.0000000,43.2522300000000,5.37264500000000,,Plage de la Vielle Chapelle,77133,Observation #77133,https://biolit.fr/observations/observation-77133/,Jania rubens,Janie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183352537_HDR.jpg,,,Identifiable +N1,77129,Sortie #77129,https://biolit.fr/sorties/sortie-77129/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-01-233110.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183735-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_110645444.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_110652149_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183337033-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183352537_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183850120-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183858508-rotated.jpg,6/30/2024 0:00,11.0000000,11.0000000,43.2522300000000,5.37264500000000,,Plage de la Vielle Chapelle,77135,Observation #77135,https://biolit.fr/observations/observation-77135/,Corallina officinalis/caespitosa,Coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183337033-rotated.jpg,,,Identifiable +N1,77129,Sortie #77129,https://biolit.fr/sorties/sortie-77129/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-01-233110.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183735-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_110645444.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_110652149_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183337033-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183352537_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183850120-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183858508-rotated.jpg,6/30/2024 0:00,11.0000000,11.0000000,43.2522300000000,5.37264500000000,,Plage de la Vielle Chapelle,77137,Observation #77137,https://biolit.fr/observations/observation-77137/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_110645444.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_110652149_HDR-scaled.jpg,,,Identifiable +N1,77129,Sortie #77129,https://biolit.fr/sorties/sortie-77129/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-01-233110.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183735-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_110645444.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_110652149_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183337033-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183352537_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183850120-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183858508-rotated.jpg,6/30/2024 0:00,11.0000000,11.0000000,43.2522300000000,5.37264500000000,,Plage de la Vielle Chapelle,77139,Observation #77139,https://biolit.fr/observations/observation-77139/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183850120-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183858508-rotated.jpg,,,Ne sais pas +N1,77129,Sortie #77129,https://biolit.fr/sorties/sortie-77129/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-01-233110.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183735-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_110645444.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_110652149_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183337033-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183352537_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183850120-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183858508-rotated.jpg,6/30/2024 0:00,11.0000000,11.0000000,43.2522300000000,5.37264500000000,,Plage de la Vielle Chapelle,77141,Observation #77141,https://biolit.fr/observations/observation-77141/,Cladostephus spongiosus,Cladostéphus spongieux,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240630_183735-scaled.jpg,,,Ne sais pas +N1,77163,Sortie #77163,https://biolit.fr/sorties/sortie-77163/,BOADA Kathrine,https://biolit.fr/wp-content/uploads/jet-form-builder/8e3bf19452965d01429ae561e46baaf0/2024/07/P5190381-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e3bf19452965d01429ae561e46baaf0/2024/07/P5190380-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e3bf19452965d01429ae561e46baaf0/2024/07/P5190384-scaled.jpg,05/04/2024,20.0000000,21.0000000,43.3290120000000,5.10087500000000,,Les 3 frères SAUSSET LES PINS,77165,Observation #77165,https://biolit.fr/observations/observation-77165/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8e3bf19452965d01429ae561e46baaf0/2024/07/P5190384-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e3bf19452965d01429ae561e46baaf0/2024/07/P5190380-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e3bf19452965d01429ae561e46baaf0/2024/07/P5190381-scaled.jpg,,TRUE,Identifiable +N1,77175,Sortie #77175,https://biolit.fr/sorties/sortie-77175/,Carvin Laetitia,https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/7196fe70-434f-46df-bb63-a6417658b323.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/a7ee840c-22d8-4736-9fd1-4b508ed6af36.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/aa71b180-63a0-4c47-add0-5ba147f0d5fe.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6622-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6626-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6607-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6606-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6604-scaled.jpeg,07/03/2024,8.0:31,11.0:31,43.0094510000000,6.2178560000000,,Car Porquerolles plage de la Courtade 3,77177,Observation #77177,https://biolit.fr/observations/observation-77177/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/7196fe70-434f-46df-bb63-a6417658b323.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/a7ee840c-22d8-4736-9fd1-4b508ed6af36.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/aa71b180-63a0-4c47-add0-5ba147f0d5fe.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6622-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6626-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6607-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6606-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6604-scaled.jpeg,,,Ne sais pas +N1,77175,Sortie #77175,https://biolit.fr/sorties/sortie-77175/,Carvin Laetitia,https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/7196fe70-434f-46df-bb63-a6417658b323.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/a7ee840c-22d8-4736-9fd1-4b508ed6af36.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/aa71b180-63a0-4c47-add0-5ba147f0d5fe.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6622-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6626-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6607-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6606-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6604-scaled.jpeg,07/03/2024,8.0:31,11.0:31,43.0094510000000,6.2178560000000,,Car Porquerolles plage de la Courtade 3,77181,Observation #77181,https://biolit.fr/observations/observation-77181/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6604-scaled.jpeg,,,Ne sais pas +N1,77175,Sortie #77175,https://biolit.fr/sorties/sortie-77175/,Carvin Laetitia,https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/7196fe70-434f-46df-bb63-a6417658b323.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/a7ee840c-22d8-4736-9fd1-4b508ed6af36.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/aa71b180-63a0-4c47-add0-5ba147f0d5fe.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6622-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6626-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6607-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6606-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6604-scaled.jpeg,07/03/2024,8.0:31,11.0:31,43.0094510000000,6.2178560000000,,Car Porquerolles plage de la Courtade 3,77183,Observation #77183,https://biolit.fr/observations/observation-77183/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6607-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6606-scaled.jpeg,,TRUE,Ne sais pas +N1,77175,Sortie #77175,https://biolit.fr/sorties/sortie-77175/,Carvin Laetitia,https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/7196fe70-434f-46df-bb63-a6417658b323.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/a7ee840c-22d8-4736-9fd1-4b508ed6af36.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/aa71b180-63a0-4c47-add0-5ba147f0d5fe.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6622-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6626-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6607-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6606-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6604-scaled.jpeg,07/03/2024,8.0:31,11.0:31,43.0094510000000,6.2178560000000,,Car Porquerolles plage de la Courtade 3,77185,Observation #77185,https://biolit.fr/observations/observation-77185/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/efe108071336fd87f771c25d18b6884d/2024/07/IMG_6622-scaled.jpeg,,,Identifiable +N1,77198,Sortie #77198,https://biolit.fr/sorties/sortie-77198/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Acanthocardia.jpeg,04/08/2024,16.0000000,17.0000000,42.6420110000000,9.46061300000000,La Girelle,Borgo,77200,Observation #77200,https://biolit.fr/observations/observation-77200/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpg,,,Identifiable +N1,77198,Sortie #77198,https://biolit.fr/sorties/sortie-77198/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Acanthocardia.jpeg,04/08/2024,16.0000000,17.0000000,42.6420110000000,9.46061300000000,La Girelle,Borgo,77202,Observation #77202,https://biolit.fr/observations/observation-77202/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpg,,,Identifiable +N1,77198,Sortie #77198,https://biolit.fr/sorties/sortie-77198/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Acanthocardia.jpeg,04/08/2024,16.0000000,17.0000000,42.6420110000000,9.46061300000000,La Girelle,Borgo,77204,Observation #77204,https://biolit.fr/observations/observation-77204/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1.jpg,,,Identifiable +N1,77198,Sortie #77198,https://biolit.fr/sorties/sortie-77198/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Acanthocardia.jpeg,04/08/2024,16.0000000,17.0000000,42.6420110000000,9.46061300000000,La Girelle,Borgo,77206,Observation #77206,https://biolit.fr/observations/observation-77206/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large.jpg,,,Identifiable +N1,77198,Sortie #77198,https://biolit.fr/sorties/sortie-77198/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Acanthocardia.jpeg,04/08/2024,16.0000000,17.0000000,42.6420110000000,9.46061300000000,La Girelle,Borgo,77208,Observation #77208,https://biolit.fr/observations/observation-77208/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1.jpeg,,,Identifiable +N1,77198,Sortie #77198,https://biolit.fr/sorties/sortie-77198/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Acanthocardia.jpeg,04/08/2024,16.0000000,17.0000000,42.6420110000000,9.46061300000000,La Girelle,Borgo,77210,Observation #77210,https://biolit.fr/observations/observation-77210/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large.jpeg,,,Identifiable +N1,77198,Sortie #77198,https://biolit.fr/sorties/sortie-77198/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Acanthocardia.jpeg,04/08/2024,16.0000000,17.0000000,42.6420110000000,9.46061300000000,La Girelle,Borgo,77212,Observation #77212,https://biolit.fr/observations/observation-77212/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Acanthocardia.jpeg,,,Ne sais pas +N1,77226,Sortie #77226,https://biolit.fr/sorties/sortie-77226/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpg,04/09/2024,15.0000000,17.0000000,42.7415610000000,9.46219500000000,La Girelle,Santa-Maria-Di-Lota,77228,Observation #77228,https://biolit.fr/observations/observation-77228/,Maja squinado,Grande araignée de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpg,,,Identifiable +N1,77226,Sortie #77226,https://biolit.fr/sorties/sortie-77226/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpg,04/09/2024,15.0000000,17.0000000,42.7415610000000,9.46219500000000,La Girelle,Santa-Maria-Di-Lota,77230,Observation #77230,https://biolit.fr/observations/observation-77230/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpg,,,Identifiable +N1,77226,Sortie #77226,https://biolit.fr/sorties/sortie-77226/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpg,04/09/2024,15.0000000,17.0000000,42.7415610000000,9.46219500000000,La Girelle,Santa-Maria-Di-Lota,77232,Observation #77232,https://biolit.fr/observations/observation-77232/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpg,,,Ne sais pas +N1,77226,Sortie #77226,https://biolit.fr/sorties/sortie-77226/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpg,04/09/2024,15.0000000,17.0000000,42.7415610000000,9.46219500000000,La Girelle,Santa-Maria-Di-Lota,77234,Observation #77234,https://biolit.fr/observations/observation-77234/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpg,,,Identifiable +N1,77226,Sortie #77226,https://biolit.fr/sorties/sortie-77226/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpg,04/09/2024,15.0000000,17.0000000,42.7415610000000,9.46219500000000,La Girelle,Santa-Maria-Di-Lota,77236,Observation #77236,https://biolit.fr/observations/observation-77236/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpg,,,Identifiable +N1,77226,Sortie #77226,https://biolit.fr/sorties/sortie-77226/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpg,04/09/2024,15.0000000,17.0000000,42.7415610000000,9.46219500000000,La Girelle,Santa-Maria-Di-Lota,77238,Observation #77238,https://biolit.fr/observations/observation-77238/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpg,,,Identifiable +N1,77226,Sortie #77226,https://biolit.fr/sorties/sortie-77226/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpg,04/09/2024,15.0000000,17.0000000,42.7415610000000,9.46219500000000,La Girelle,Santa-Maria-Di-Lota,77240,Observation #77240,https://biolit.fr/observations/observation-77240/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpg,,,Ne sais pas +N1,77226,Sortie #77226,https://biolit.fr/sorties/sortie-77226/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpg,04/09/2024,15.0000000,17.0000000,42.7415610000000,9.46219500000000,La Girelle,Santa-Maria-Di-Lota,77242,Observation #77242,https://biolit.fr/observations/observation-77242/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpg,,,Identifiable +N1,77226,Sortie #77226,https://biolit.fr/sorties/sortie-77226/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpg,04/09/2024,15.0000000,17.0000000,42.7415610000000,9.46219500000000,La Girelle,Santa-Maria-Di-Lota,77244,Observation #77244,https://biolit.fr/observations/observation-77244/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpg,,,Identifiable +N1,77262,Sortie #77262,https://biolit.fr/sorties/sortie-77262/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16.jpeg,04/11/2024,13.0000000,15.0000000,42.5732240000000,9.52286700000000,La Girelle,Borgo,77264,Observation #77264,https://biolit.fr/observations/observation-77264/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15.jpeg,,,Identifiable +N1,77262,Sortie #77262,https://biolit.fr/sorties/sortie-77262/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16.jpeg,04/11/2024,13.0000000,15.0000000,42.5732240000000,9.52286700000000,La Girelle,Borgo,77266,Observation #77266,https://biolit.fr/observations/observation-77266/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpeg,,,Identifiable +N1,77262,Sortie #77262,https://biolit.fr/sorties/sortie-77262/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16.jpeg,04/11/2024,13.0000000,15.0000000,42.5732240000000,9.52286700000000,La Girelle,Borgo,77268,Observation #77268,https://biolit.fr/observations/observation-77268/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpeg,,,Identifiable +N1,77262,Sortie #77262,https://biolit.fr/sorties/sortie-77262/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16.jpeg,04/11/2024,13.0000000,15.0000000,42.5732240000000,9.52286700000000,La Girelle,Borgo,77270,Observation #77270,https://biolit.fr/observations/observation-77270/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpeg,,,Identifiable +N1,77262,Sortie #77262,https://biolit.fr/sorties/sortie-77262/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16.jpeg,04/11/2024,13.0000000,15.0000000,42.5732240000000,9.52286700000000,La Girelle,Borgo,77272,Observation #77272,https://biolit.fr/observations/observation-77272/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpeg,,,Identifiable +N1,77262,Sortie #77262,https://biolit.fr/sorties/sortie-77262/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16.jpeg,04/11/2024,13.0000000,15.0000000,42.5732240000000,9.52286700000000,La Girelle,Borgo,77274,Observation #77274,https://biolit.fr/observations/observation-77274/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpeg,,,Identifiable +N1,77262,Sortie #77262,https://biolit.fr/sorties/sortie-77262/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16.jpeg,04/11/2024,13.0000000,15.0000000,42.5732240000000,9.52286700000000,La Girelle,Borgo,77276,Observation #77276,https://biolit.fr/observations/observation-77276/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpeg,,,Identifiable +N1,77262,Sortie #77262,https://biolit.fr/sorties/sortie-77262/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16.jpeg,04/11/2024,13.0000000,15.0000000,42.5732240000000,9.52286700000000,La Girelle,Borgo,77278,Observation #77278,https://biolit.fr/observations/observation-77278/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpeg,,,Identifiable +N1,77262,Sortie #77262,https://biolit.fr/sorties/sortie-77262/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16.jpeg,04/11/2024,13.0000000,15.0000000,42.5732240000000,9.52286700000000,La Girelle,Borgo,77280,Observation #77280,https://biolit.fr/observations/observation-77280/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpeg,,,Ne sais pas +N1,77262,Sortie #77262,https://biolit.fr/sorties/sortie-77262/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16.jpeg,04/11/2024,13.0000000,15.0000000,42.5732240000000,9.52286700000000,La Girelle,Borgo,77282,Observation #77282,https://biolit.fr/observations/observation-77282/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpeg,,,Ne sais pas +N1,77262,Sortie #77262,https://biolit.fr/sorties/sortie-77262/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16.jpeg,04/11/2024,13.0000000,15.0000000,42.5732240000000,9.52286700000000,La Girelle,Borgo,77284,Observation #77284,https://biolit.fr/observations/observation-77284/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpeg,,,Ne sais pas +N1,77262,Sortie #77262,https://biolit.fr/sorties/sortie-77262/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16.jpeg,04/11/2024,13.0000000,15.0000000,42.5732240000000,9.52286700000000,La Girelle,Borgo,77286,Observation #77286,https://biolit.fr/observations/observation-77286/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpeg,,,Ne sais pas +N1,77262,Sortie #77262,https://biolit.fr/sorties/sortie-77262/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-6.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16.jpeg,04/11/2024,13.0000000,15.0000000,42.5732240000000,9.52286700000000,La Girelle,Borgo,77288,Observation #77288,https://biolit.fr/observations/observation-77288/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16.jpeg,,,Ne sais pas +N1,77293,Sortie #77293,https://biolit.fr/sorties/sortie-77293/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpg,04/11/2024,15.0000000,17.0000000,42.7359500000000,9.34510100000000,La Girelle,Farinole,77295,Observation #77295,https://biolit.fr/observations/observation-77295/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpg,,TRUE,Identifiable +N1,77293,Sortie #77293,https://biolit.fr/sorties/sortie-77293/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpg,04/11/2024,15.0000000,17.0000000,42.7359500000000,9.34510100000000,La Girelle,Farinole,77297,Observation #77297,https://biolit.fr/observations/observation-77297/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpg,,TRUE,Identifiable +N1,77293,Sortie #77293,https://biolit.fr/sorties/sortie-77293/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12.jpg,04/11/2024,15.0000000,17.0000000,42.7359500000000,9.34510100000000,La Girelle,Farinole,77299,Observation #77299,https://biolit.fr/observations/observation-77299/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-2.jpg,,,Ne sais pas +N1,77305,Sortie #77305,https://biolit.fr/sorties/sortie-77305/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpg,4/15/2024 0:00,16.0000000,17.0000000,42.5730030000000,9.52295800000000,La Girelle,Borgo,77307,Observation #77307,https://biolit.fr/observations/observation-77307/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-3.jpg,,,Identifiable +N1,77305,Sortie #77305,https://biolit.fr/sorties/sortie-77305/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpg,4/15/2024 0:00,16.0000000,17.0000000,42.5730030000000,9.52295800000000,La Girelle,Borgo,77309,Observation #77309,https://biolit.fr/observations/observation-77309/,Glycymeris glycymeris,Amande de mer commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpg,,,Identifiable +N1,77305,Sortie #77305,https://biolit.fr/sorties/sortie-77305/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpg,4/15/2024 0:00,16.0000000,17.0000000,42.5730030000000,9.52295800000000,La Girelle,Borgo,77311,Observation #77311,https://biolit.fr/observations/observation-77311/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpg,,TRUE,Identifiable +N1,77305,Sortie #77305,https://biolit.fr/sorties/sortie-77305/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpg,4/15/2024 0:00,16.0000000,17.0000000,42.5730030000000,9.52295800000000,La Girelle,Borgo,77313,Observation #77313,https://biolit.fr/observations/observation-77313/,Callinectes sapidus,Crabe bleu américain,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpg,,TRUE,Identifiable +N1,77316,Sortie #77316,https://biolit.fr/sorties/sortie-77316/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpg,04/09/2024,16.0000000,17.0000000,42.8114280000000,9.49010100000000,La Girelle,Sisco,77318,Observation #77318,https://biolit.fr/observations/observation-77318/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpg,,,Ne sais pas +N1,77326,Sortie #77326,https://biolit.fr/sorties/sortie-77326/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17.jpeg,4/19/2024 0:00,9.0000000,11.0000000,42.5553650000000,8.77451400000000,La Girelle,Calvi,77328,Observation #77328,https://biolit.fr/observations/observation-77328/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-1.jpeg,,,Ne sais pas +N1,77326,Sortie #77326,https://biolit.fr/sorties/sortie-77326/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17.jpeg,4/19/2024 0:00,9.0000000,11.0000000,42.5553650000000,8.77451400000000,La Girelle,Calvi,77330,Observation #77330,https://biolit.fr/observations/observation-77330/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpeg,,,Identifiable +N1,77326,Sortie #77326,https://biolit.fr/sorties/sortie-77326/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17.jpeg,4/19/2024 0:00,9.0000000,11.0000000,42.5553650000000,8.77451400000000,La Girelle,Calvi,77332,Observation #77332,https://biolit.fr/observations/observation-77332/,Limaria tuberculata,Lime tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpeg,,,Identifiable +N1,77326,Sortie #77326,https://biolit.fr/sorties/sortie-77326/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17.jpeg,4/19/2024 0:00,9.0000000,11.0000000,42.5553650000000,8.77451400000000,La Girelle,Calvi,77334,Observation #77334,https://biolit.fr/observations/observation-77334/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpeg,,,Identifiable +N1,77326,Sortie #77326,https://biolit.fr/sorties/sortie-77326/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17.jpeg,4/19/2024 0:00,9.0000000,11.0000000,42.5553650000000,8.77451400000000,La Girelle,Calvi,77336,Observation #77336,https://biolit.fr/observations/observation-77336/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-2.jpeg,,,Identifiable +N1,77326,Sortie #77326,https://biolit.fr/sorties/sortie-77326/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17.jpeg,4/19/2024 0:00,9.0000000,11.0000000,42.5553650000000,8.77451400000000,La Girelle,Calvi,77338,Observation #77338,https://biolit.fr/observations/observation-77338/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17.jpeg,,,Identifiable +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77362,Observation #77362,https://biolit.fr/observations/observation-77362/,Loripes orbiculatus,Loripes orbiculaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg,,,Identifiable +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77364,Observation #77364,https://biolit.fr/observations/observation-77364/,Loripes orbiculatus,Loripes orbiculaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg,,,Identifiable +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77366,Observation #77366,https://biolit.fr/observations/observation-77366/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg,,,Identifiable +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77368,Observation #77368,https://biolit.fr/observations/observation-77368/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg,,,Identifiable +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77370,Observation #77370,https://biolit.fr/observations/observation-77370/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg,,,Ne sais pas +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77372,Observation #77372,https://biolit.fr/observations/observation-77372/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg,,,Identifiable +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77374,Observation #77374,https://biolit.fr/observations/observation-77374/,Loripes orbiculatus,Loripes orbiculaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg,,,Identifiable +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77376,Observation #77376,https://biolit.fr/observations/observation-77376/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg,,,Ne sais pas +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77378,Observation #77378,https://biolit.fr/observations/observation-77378/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg,,,Identifiable +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77380,Observation #77380,https://biolit.fr/observations/observation-77380/,Talochlamys multistriata,Pétoncle strié,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg,,,Identifiable +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77382,Observation #77382,https://biolit.fr/observations/observation-77382/,Talochlamys multistriata,Pétoncle strié,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg,,,Identifiable +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77384,Observation #77384,https://biolit.fr/observations/observation-77384/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg,,,Ne sais pas +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77386,Observation #77386,https://biolit.fr/observations/observation-77386/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg,,,Ne sais pas +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77388,Observation #77388,https://biolit.fr/observations/observation-77388/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg,,,Ne sais pas +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77390,Observation #77390,https://biolit.fr/observations/observation-77390/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg,,,Ne sais pas +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77392,Observation #77392,https://biolit.fr/observations/observation-77392/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg,,,Identifiable +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77394,Observation #77394,https://biolit.fr/observations/observation-77394/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg,,,Ne sais pas +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77396,Observation #77396,https://biolit.fr/observations/observation-77396/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg,,,Identifiable +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77398,Observation #77398,https://biolit.fr/observations/observation-77398/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg,,,Identifiable +N1,77360,Sortie #77360,https://biolit.fr/sorties/sortie-77360/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-19.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-18.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-17-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-16-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-15-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-13-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-12-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-11-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-10-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-9-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-8-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-7-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-5-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-3-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-2-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-1-3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,4/19/2024 0:00,15.0000000,16.0000000,42.6346400000000,8.94015700000000,La Girelle,L'île rousse,77400,Observation #77400,https://biolit.fr/observations/observation-77400/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-20.jpeg,,,Identifiable +N1,77403,Sortie #77403,https://biolit.fr/sorties/sortie-77403/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/gib.jpg,4/18/2024 0:00,15.0000000,16.0000000,42.6021610000000,8.82856600000000,La Girelle,Sant' Ambroggio,77405,Observation #77405,https://biolit.fr/observations/observation-77405/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/gib.jpg,,,Identifiable +N1,77408,Sortie #77408,https://biolit.fr/sorties/sortie-77408/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-3.jpg,4/26/2024 0:00,10.0000000,10.0000000,42.1188700000000,9.55307900000000,La Girelle,Aléria,77410,Observation #77410,https://biolit.fr/observations/observation-77410/,Naticarius stercusmuscarum,Natice mouchetée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/large-4-3.jpg,,,Identifiable +N1,77419,Sortie #77419,https://biolit.fr/sorties/sortie-77419/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P4030005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P4030001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Screenshot_20240404-084521_Gallery.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Screenshot_20240404-084505_Gallery.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310084-scaled.jpg,3/31/2024 0:00,6.0000000,6.0000000,42.6552440000000,9.45274800000000,La Girelle,Furiani,77421,Observation #77421,https://biolit.fr/observations/observation-77421/,Janthina pallida,Janthine pâle,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310086-scaled.jpg,,,Identifiable +N1,77419,Sortie #77419,https://biolit.fr/sorties/sortie-77419/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P4030005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P4030001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Screenshot_20240404-084521_Gallery.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Screenshot_20240404-084505_Gallery.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310084-scaled.jpg,3/31/2024 0:00,6.0000000,6.0000000,42.6552440000000,9.45274800000000,La Girelle,Furiani,77423,Observation #77423,https://biolit.fr/observations/observation-77423/,Janthina pallida,Janthine pâle,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310087-scaled.jpg,,,Identifiable +N1,77419,Sortie #77419,https://biolit.fr/sorties/sortie-77419/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P4030005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P4030001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Screenshot_20240404-084521_Gallery.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Screenshot_20240404-084505_Gallery.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310084-scaled.jpg,3/31/2024 0:00,6.0000000,6.0000000,42.6552440000000,9.45274800000000,La Girelle,Furiani,77425,Observation #77425,https://biolit.fr/observations/observation-77425/,Janthina pallida,Janthine pâle,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P4030005-scaled.jpg,,,Identifiable +N1,77419,Sortie #77419,https://biolit.fr/sorties/sortie-77419/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P4030005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P4030001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Screenshot_20240404-084521_Gallery.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Screenshot_20240404-084505_Gallery.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310084-scaled.jpg,3/31/2024 0:00,6.0000000,6.0000000,42.6552440000000,9.45274800000000,La Girelle,Furiani,77427,Observation #77427,https://biolit.fr/observations/observation-77427/,Janthina pallida,Janthine pâle,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310084-scaled.jpg,,,Identifiable +N1,77419,Sortie #77419,https://biolit.fr/sorties/sortie-77419/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P4030005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P4030001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Screenshot_20240404-084521_Gallery.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Screenshot_20240404-084505_Gallery.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310084-scaled.jpg,3/31/2024 0:00,6.0000000,6.0000000,42.6552440000000,9.45274800000000,La Girelle,Furiani,77429,Observation #77429,https://biolit.fr/observations/observation-77429/,Balanus crenatus,Balane crénelée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P4030001-scaled.jpg,,,Identifiable +N1,77419,Sortie #77419,https://biolit.fr/sorties/sortie-77419/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P4030005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P4030001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Screenshot_20240404-084521_Gallery.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Screenshot_20240404-084505_Gallery.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310084-scaled.jpg,3/31/2024 0:00,6.0000000,6.0000000,42.6552440000000,9.45274800000000,La Girelle,Furiani,77431,Observation #77431,https://biolit.fr/observations/observation-77431/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Screenshot_20240404-084505_Gallery.jpg,,TRUE,Identifiable +N1,77419,Sortie #77419,https://biolit.fr/sorties/sortie-77419/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310086-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P4030005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P4030001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Screenshot_20240404-084521_Gallery.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Screenshot_20240404-084505_Gallery.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/P3310084-scaled.jpg,3/31/2024 0:00,6.0000000,6.0000000,42.6552440000000,9.45274800000000,La Girelle,Furiani,77433,Observation #77433,https://biolit.fr/observations/observation-77433/,Callinectes sapidus,Crabe bleu américain,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/Screenshot_20240404-084521_Gallery.jpg,,TRUE,Identifiable +N1,77436,Sortie #77436,https://biolit.fr/sorties/sortie-77436/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/WhatsApp-Image-2024-04-29-at-10.32.27.jpeg,4/29/2024 0:00,10.0000000,10.0000000,42.5727500000000,9.52295800000000,La Girelle,Furiani,77438,Observation #77438,https://biolit.fr/observations/observation-77438/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/WhatsApp-Image-2024-04-29-at-10.32.27.jpeg,,,Identifiable +N1,77441,Sortie #77441,https://biolit.fr/sorties/sortie-77441/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/WhatsApp-Image-2024-04-23-at-16.54.09.jpeg,11/26/2023 0:00,15.0000000,16.0000000,42.5586300000000,9.52884800000000,La Girelle,Lucciana,77443,Observation #77443,https://biolit.fr/observations/observation-77443/,Raja asterias,Raie étoilée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/WhatsApp-Image-2024-04-23-at-16.54.09.jpeg,,,Identifiable +N1,77455,Sortie #77455,https://biolit.fr/sorties/sortie-77455/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/3879eb3a-30ea-4f80-8f29-19fc855b490f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/2f6ddfdd-b7b5-455f-993c-4cf9d99022ee.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/0b4f6c98-2522-4094-abcf-db85a3b8f02d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/5b663d26-446d-4f54-8f65-a88d9246bbfd.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/146b813c-8bd6-48aa-9d71-ee93d7b9221e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/83a14d3d-3bfe-4b0e-b1e7-ebba5aa065dd.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/bf9506a6-d5f6-44d3-87f0-c5ab54417310.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/181a9e57-a4ff-4e32-89aa-e19046b56e0a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/8372338a-515a-4bff-8a08-2f391d32cbe7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/15813466-ecd8-4062-97e8-862a26627150.jpg,4/24/2024 0:00,15.0000000,16.0000000,42.9637110000000,9.45149300000000,La Girelle,Macinaggio,77457,Observation #77457,https://biolit.fr/observations/observation-77457/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/3879eb3a-30ea-4f80-8f29-19fc855b490f.jpg,,,Ne sais pas +N1,77455,Sortie #77455,https://biolit.fr/sorties/sortie-77455/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/3879eb3a-30ea-4f80-8f29-19fc855b490f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/2f6ddfdd-b7b5-455f-993c-4cf9d99022ee.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/0b4f6c98-2522-4094-abcf-db85a3b8f02d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/5b663d26-446d-4f54-8f65-a88d9246bbfd.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/146b813c-8bd6-48aa-9d71-ee93d7b9221e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/83a14d3d-3bfe-4b0e-b1e7-ebba5aa065dd.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/bf9506a6-d5f6-44d3-87f0-c5ab54417310.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/181a9e57-a4ff-4e32-89aa-e19046b56e0a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/8372338a-515a-4bff-8a08-2f391d32cbe7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/15813466-ecd8-4062-97e8-862a26627150.jpg,4/24/2024 0:00,15.0000000,16.0000000,42.9637110000000,9.45149300000000,La Girelle,Macinaggio,77459,Observation #77459,https://biolit.fr/observations/observation-77459/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/2f6ddfdd-b7b5-455f-993c-4cf9d99022ee.jpg,,,Ne sais pas +N1,77455,Sortie #77455,https://biolit.fr/sorties/sortie-77455/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/3879eb3a-30ea-4f80-8f29-19fc855b490f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/2f6ddfdd-b7b5-455f-993c-4cf9d99022ee.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/0b4f6c98-2522-4094-abcf-db85a3b8f02d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/5b663d26-446d-4f54-8f65-a88d9246bbfd.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/146b813c-8bd6-48aa-9d71-ee93d7b9221e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/83a14d3d-3bfe-4b0e-b1e7-ebba5aa065dd.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/bf9506a6-d5f6-44d3-87f0-c5ab54417310.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/181a9e57-a4ff-4e32-89aa-e19046b56e0a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/8372338a-515a-4bff-8a08-2f391d32cbe7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/15813466-ecd8-4062-97e8-862a26627150.jpg,4/24/2024 0:00,15.0000000,16.0000000,42.9637110000000,9.45149300000000,La Girelle,Macinaggio,77461,Observation #77461,https://biolit.fr/observations/observation-77461/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/0b4f6c98-2522-4094-abcf-db85a3b8f02d.jpg,,,Identifiable +N1,77455,Sortie #77455,https://biolit.fr/sorties/sortie-77455/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/3879eb3a-30ea-4f80-8f29-19fc855b490f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/2f6ddfdd-b7b5-455f-993c-4cf9d99022ee.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/0b4f6c98-2522-4094-abcf-db85a3b8f02d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/5b663d26-446d-4f54-8f65-a88d9246bbfd.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/146b813c-8bd6-48aa-9d71-ee93d7b9221e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/83a14d3d-3bfe-4b0e-b1e7-ebba5aa065dd.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/bf9506a6-d5f6-44d3-87f0-c5ab54417310.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/181a9e57-a4ff-4e32-89aa-e19046b56e0a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/8372338a-515a-4bff-8a08-2f391d32cbe7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/15813466-ecd8-4062-97e8-862a26627150.jpg,4/24/2024 0:00,15.0000000,16.0000000,42.9637110000000,9.45149300000000,La Girelle,Macinaggio,77463,Observation #77463,https://biolit.fr/observations/observation-77463/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/83a14d3d-3bfe-4b0e-b1e7-ebba5aa065dd.jpg,,,Identifiable +N1,77455,Sortie #77455,https://biolit.fr/sorties/sortie-77455/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/3879eb3a-30ea-4f80-8f29-19fc855b490f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/2f6ddfdd-b7b5-455f-993c-4cf9d99022ee.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/0b4f6c98-2522-4094-abcf-db85a3b8f02d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/5b663d26-446d-4f54-8f65-a88d9246bbfd.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/146b813c-8bd6-48aa-9d71-ee93d7b9221e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/83a14d3d-3bfe-4b0e-b1e7-ebba5aa065dd.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/bf9506a6-d5f6-44d3-87f0-c5ab54417310.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/181a9e57-a4ff-4e32-89aa-e19046b56e0a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/8372338a-515a-4bff-8a08-2f391d32cbe7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/15813466-ecd8-4062-97e8-862a26627150.jpg,4/24/2024 0:00,15.0000000,16.0000000,42.9637110000000,9.45149300000000,La Girelle,Macinaggio,77465,Observation #77465,https://biolit.fr/observations/observation-77465/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/bf9506a6-d5f6-44d3-87f0-c5ab54417310.jpg,,,Identifiable +N1,77455,Sortie #77455,https://biolit.fr/sorties/sortie-77455/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/3879eb3a-30ea-4f80-8f29-19fc855b490f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/2f6ddfdd-b7b5-455f-993c-4cf9d99022ee.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/0b4f6c98-2522-4094-abcf-db85a3b8f02d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/5b663d26-446d-4f54-8f65-a88d9246bbfd.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/146b813c-8bd6-48aa-9d71-ee93d7b9221e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/83a14d3d-3bfe-4b0e-b1e7-ebba5aa065dd.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/bf9506a6-d5f6-44d3-87f0-c5ab54417310.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/181a9e57-a4ff-4e32-89aa-e19046b56e0a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/8372338a-515a-4bff-8a08-2f391d32cbe7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/15813466-ecd8-4062-97e8-862a26627150.jpg,4/24/2024 0:00,15.0000000,16.0000000,42.9637110000000,9.45149300000000,La Girelle,Macinaggio,77467,Observation #77467,https://biolit.fr/observations/observation-77467/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/8372338a-515a-4bff-8a08-2f391d32cbe7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/15813466-ecd8-4062-97e8-862a26627150.jpg,,,Identifiable +N1,77455,Sortie #77455,https://biolit.fr/sorties/sortie-77455/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/3879eb3a-30ea-4f80-8f29-19fc855b490f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/2f6ddfdd-b7b5-455f-993c-4cf9d99022ee.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/0b4f6c98-2522-4094-abcf-db85a3b8f02d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/5b663d26-446d-4f54-8f65-a88d9246bbfd.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/146b813c-8bd6-48aa-9d71-ee93d7b9221e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/83a14d3d-3bfe-4b0e-b1e7-ebba5aa065dd.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/bf9506a6-d5f6-44d3-87f0-c5ab54417310.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/181a9e57-a4ff-4e32-89aa-e19046b56e0a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/8372338a-515a-4bff-8a08-2f391d32cbe7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/15813466-ecd8-4062-97e8-862a26627150.jpg,4/24/2024 0:00,15.0000000,16.0000000,42.9637110000000,9.45149300000000,La Girelle,Macinaggio,77469,Observation #77469,https://biolit.fr/observations/observation-77469/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/5b663d26-446d-4f54-8f65-a88d9246bbfd.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/146b813c-8bd6-48aa-9d71-ee93d7b9221e.jpg,,,Ne sais pas +N1,77472,Sortie #77472,https://biolit.fr/sorties/sortie-77472/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/WhatsApp-Image-2024-04-25-at-16.52.18.jpeg,4/24/2024 0:00,15.0000000,16.0000000,42.9636950000000,9.4515570000000,La Girelle,Macinaggio,77474,Observation #77474,https://biolit.fr/observations/observation-77474/,Sepia officinalis,Seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/WhatsApp-Image-2024-04-25-at-16.52.18.jpeg,,TRUE,Identifiable +N1,77496,Sortie #77496,https://biolit.fr/sorties/sortie-77496/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-06-233231.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_133457337_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135118695_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135143357-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135629210_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_141052666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152434304_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152556361_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172614078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172728210-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173033699.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173044025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173115190-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173121320-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173138171-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173149518-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173530214-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173540580-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173615473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173629892.jpg,07/03/2024,13.0000000,14.0000000,43.2587990000000,5.37551300000000,,Plage de l'Huveaune,77498,Observation #77498,https://biolit.fr/observations/observation-77498/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-06-233231.jpg,,,Ne sais pas +N1,77496,Sortie #77496,https://biolit.fr/sorties/sortie-77496/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-06-233231.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_133457337_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135118695_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135143357-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135629210_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_141052666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152434304_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152556361_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172614078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172728210-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173033699.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173044025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173115190-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173121320-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173138171-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173149518-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173530214-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173540580-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173615473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173629892.jpg,07/03/2024,13.0000000,14.0000000,43.2587990000000,5.37551300000000,,Plage de l'Huveaune,77500,Observation #77500,https://biolit.fr/observations/observation-77500/,Peronaea planata,Telline aplatie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_133457337_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173615473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173629892.jpg,,,Identifiable +N1,77496,Sortie #77496,https://biolit.fr/sorties/sortie-77496/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-06-233231.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_133457337_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135118695_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135143357-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135629210_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_141052666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152434304_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152556361_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172614078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172728210-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173033699.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173044025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173115190-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173121320-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173138171-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173149518-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173530214-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173540580-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173615473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173629892.jpg,07/03/2024,13.0000000,14.0000000,43.2587990000000,5.37551300000000,,Plage de l'Huveaune,77502,Observation #77502,https://biolit.fr/observations/observation-77502/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135118695_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135143357-scaled.jpg,,TRUE,Identifiable +N1,77496,Sortie #77496,https://biolit.fr/sorties/sortie-77496/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-06-233231.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_133457337_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135118695_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135143357-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135629210_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_141052666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152434304_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152556361_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172614078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172728210-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173033699.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173044025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173115190-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173121320-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173138171-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173149518-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173530214-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173540580-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173615473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173629892.jpg,07/03/2024,13.0000000,14.0000000,43.2587990000000,5.37551300000000,,Plage de l'Huveaune,77506,Observation #77506,https://biolit.fr/observations/observation-77506/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_141052666_HDR-scaled.jpg,,,Identifiable +N1,77496,Sortie #77496,https://biolit.fr/sorties/sortie-77496/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-06-233231.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_133457337_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135118695_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135143357-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135629210_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_141052666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152434304_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152556361_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172614078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172728210-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173033699.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173044025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173115190-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173121320-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173138171-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173149518-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173530214-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173540580-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173615473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173629892.jpg,07/03/2024,13.0000000,14.0000000,43.2587990000000,5.37551300000000,,Plage de l'Huveaune,77508,Observation #77508,https://biolit.fr/observations/observation-77508/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152434304_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152556361_HDR-scaled.jpg,,TRUE,Identifiable +N1,77496,Sortie #77496,https://biolit.fr/sorties/sortie-77496/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-06-233231.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_133457337_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135118695_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135143357-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135629210_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_141052666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152434304_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152556361_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172614078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172728210-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173033699.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173044025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173115190-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173121320-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173138171-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173149518-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173530214-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173540580-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173615473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173629892.jpg,07/03/2024,13.0000000,14.0000000,43.2587990000000,5.37551300000000,,Plage de l'Huveaune,77510,Observation #77510,https://biolit.fr/observations/observation-77510/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172614078-scaled.jpg,,,Identifiable +N1,77496,Sortie #77496,https://biolit.fr/sorties/sortie-77496/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-06-233231.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_133457337_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135118695_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135143357-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135629210_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_141052666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152434304_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152556361_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172614078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172728210-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173033699.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173044025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173115190-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173121320-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173138171-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173149518-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173530214-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173540580-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173615473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173629892.jpg,07/03/2024,13.0000000,14.0000000,43.2587990000000,5.37551300000000,,Plage de l'Huveaune,77520,Observation #77520,https://biolit.fr/observations/observation-77520/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172728210-scaled.jpg,,TRUE,Identifiable +N1,77496,Sortie #77496,https://biolit.fr/sorties/sortie-77496/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-06-233231.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_133457337_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135118695_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135143357-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135629210_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_141052666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152434304_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152556361_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172614078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172728210-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173033699.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173044025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173115190-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173121320-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173138171-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173149518-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173530214-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173540580-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173615473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173629892.jpg,07/03/2024,13.0000000,14.0000000,43.2587990000000,5.37551300000000,,Plage de l'Huveaune,77523,Observation #77523,https://biolit.fr/observations/observation-77523/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173033699.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173044025.jpg,,,Identifiable +N1,77496,Sortie #77496,https://biolit.fr/sorties/sortie-77496/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-06-233231.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_133457337_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135118695_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135143357-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135629210_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_141052666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152434304_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152556361_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172614078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172728210-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173033699.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173044025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173115190-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173121320-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173138171-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173149518-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173530214-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173540580-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173615473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173629892.jpg,07/03/2024,13.0000000,14.0000000,43.2587990000000,5.37551300000000,,Plage de l'Huveaune,77527,Observation #77527,https://biolit.fr/observations/observation-77527/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173115190-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173121320-rotated.jpg,,,Identifiable +N1,77496,Sortie #77496,https://biolit.fr/sorties/sortie-77496/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-06-233231.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_133457337_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135118695_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135143357-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135629210_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_141052666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152434304_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152556361_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172614078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172728210-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173033699.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173044025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173115190-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173121320-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173138171-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173149518-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173530214-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173540580-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173615473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173629892.jpg,07/03/2024,13.0000000,14.0000000,43.2587990000000,5.37551300000000,,Plage de l'Huveaune,77531,Observation #77531,https://biolit.fr/observations/observation-77531/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173138171-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173149518-rotated.jpg,,,Identifiable +N1,77496,Sortie #77496,https://biolit.fr/sorties/sortie-77496/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-06-233231.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_133457337_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135118695_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135143357-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135629210_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_141052666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152434304_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152556361_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172614078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172728210-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173033699.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173044025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173115190-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173121320-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173138171-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173149518-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173530214-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173540580-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173615473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173629892.jpg,07/03/2024,13.0000000,14.0000000,43.2587990000000,5.37551300000000,,Plage de l'Huveaune,77533,Observation #77533,https://biolit.fr/observations/observation-77533/,Cardita calyculata,Cardite petit calice,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173530214-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173540580-rotated.jpg,,,Identifiable +N1,77496,Sortie #77496,https://biolit.fr/sorties/sortie-77496/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/Capture-decran-2024-07-06-233231.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_133457337_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135118695_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135143357-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135629210_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_141052666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152434304_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_152556361_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172614078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_172728210-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173033699.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173044025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173115190-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173121320-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173138171-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173149518-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173530214-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173540580-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173615473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173629892.jpg,07/03/2024,13.0000000,14.0000000,43.2587990000000,5.37551300000000,,Plage de l'Huveaune,78841,Observation #78841,https://biolit.fr/observations/observation-78841/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_135629210_HDR-scaled.jpg,,TRUE,Identifiable +N1,77519,Sortie #77519,https://biolit.fr/sorties/sortie-77519/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/c60ede52-1792-4e97-8b18-d7a6fef2e43c.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/1a1b4728-d13d-4bb2-9921-fdcb98d63fe9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/85f5298c-edfd-4e78-9976-78d393386256.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/ad811c03-14e8-43a0-88c7-b936d1740d6e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/0dfe43de-aa35-49d7-9e32-fe584d2166e5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/d243c1a4-f97b-499f-b7ab-1b9e8e37df60.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/b48dc78b-651d-4e2e-94b6-b158615a184d.jpg,4/24/2024 0:00,15.0000000,16.0000000,42.9684910000000,9.35035200000000,La Girelle,centuri,77525,Observation #77525,https://biolit.fr/observations/observation-77525/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/c60ede52-1792-4e97-8b18-d7a6fef2e43c.jpg,,TRUE,Identifiable +N1,77519,Sortie #77519,https://biolit.fr/sorties/sortie-77519/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/c60ede52-1792-4e97-8b18-d7a6fef2e43c.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/1a1b4728-d13d-4bb2-9921-fdcb98d63fe9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/85f5298c-edfd-4e78-9976-78d393386256.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/ad811c03-14e8-43a0-88c7-b936d1740d6e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/0dfe43de-aa35-49d7-9e32-fe584d2166e5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/d243c1a4-f97b-499f-b7ab-1b9e8e37df60.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/b48dc78b-651d-4e2e-94b6-b158615a184d.jpg,4/24/2024 0:00,15.0000000,16.0000000,42.9684910000000,9.35035200000000,La Girelle,centuri,77529,Observation #77529,https://biolit.fr/observations/observation-77529/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/1a1b4728-d13d-4bb2-9921-fdcb98d63fe9.jpg,,,Identifiable +N1,77519,Sortie #77519,https://biolit.fr/sorties/sortie-77519/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/c60ede52-1792-4e97-8b18-d7a6fef2e43c.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/1a1b4728-d13d-4bb2-9921-fdcb98d63fe9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/85f5298c-edfd-4e78-9976-78d393386256.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/ad811c03-14e8-43a0-88c7-b936d1740d6e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/0dfe43de-aa35-49d7-9e32-fe584d2166e5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/d243c1a4-f97b-499f-b7ab-1b9e8e37df60.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/b48dc78b-651d-4e2e-94b6-b158615a184d.jpg,4/24/2024 0:00,15.0000000,16.0000000,42.9684910000000,9.35035200000000,La Girelle,centuri,77535,Observation #77535,https://biolit.fr/observations/observation-77535/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/85f5298c-edfd-4e78-9976-78d393386256.jpg,,,Ne sais pas +N1,77519,Sortie #77519,https://biolit.fr/sorties/sortie-77519/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/c60ede52-1792-4e97-8b18-d7a6fef2e43c.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/1a1b4728-d13d-4bb2-9921-fdcb98d63fe9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/85f5298c-edfd-4e78-9976-78d393386256.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/ad811c03-14e8-43a0-88c7-b936d1740d6e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/0dfe43de-aa35-49d7-9e32-fe584d2166e5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/d243c1a4-f97b-499f-b7ab-1b9e8e37df60.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/b48dc78b-651d-4e2e-94b6-b158615a184d.jpg,4/24/2024 0:00,15.0000000,16.0000000,42.9684910000000,9.35035200000000,La Girelle,centuri,77537,Observation #77537,https://biolit.fr/observations/observation-77537/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/ad811c03-14e8-43a0-88c7-b936d1740d6e.jpg,,,Ne sais pas +N1,77519,Sortie #77519,https://biolit.fr/sorties/sortie-77519/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/c60ede52-1792-4e97-8b18-d7a6fef2e43c.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/1a1b4728-d13d-4bb2-9921-fdcb98d63fe9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/85f5298c-edfd-4e78-9976-78d393386256.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/ad811c03-14e8-43a0-88c7-b936d1740d6e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/0dfe43de-aa35-49d7-9e32-fe584d2166e5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/d243c1a4-f97b-499f-b7ab-1b9e8e37df60.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/b48dc78b-651d-4e2e-94b6-b158615a184d.jpg,4/24/2024 0:00,15.0000000,16.0000000,42.9684910000000,9.35035200000000,La Girelle,centuri,77539,Observation #77539,https://biolit.fr/observations/observation-77539/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/0dfe43de-aa35-49d7-9e32-fe584d2166e5.jpg,,,Ne sais pas +N1,77519,Sortie #77519,https://biolit.fr/sorties/sortie-77519/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/c60ede52-1792-4e97-8b18-d7a6fef2e43c.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/1a1b4728-d13d-4bb2-9921-fdcb98d63fe9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/85f5298c-edfd-4e78-9976-78d393386256.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/ad811c03-14e8-43a0-88c7-b936d1740d6e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/0dfe43de-aa35-49d7-9e32-fe584d2166e5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/d243c1a4-f97b-499f-b7ab-1b9e8e37df60.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/b48dc78b-651d-4e2e-94b6-b158615a184d.jpg,4/24/2024 0:00,15.0000000,16.0000000,42.9684910000000,9.35035200000000,La Girelle,centuri,77541,Observation #77541,https://biolit.fr/observations/observation-77541/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/d243c1a4-f97b-499f-b7ab-1b9e8e37df60.jpg,,,Ne sais pas +N1,77519,Sortie #77519,https://biolit.fr/sorties/sortie-77519/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/c60ede52-1792-4e97-8b18-d7a6fef2e43c.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/1a1b4728-d13d-4bb2-9921-fdcb98d63fe9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/85f5298c-edfd-4e78-9976-78d393386256.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/ad811c03-14e8-43a0-88c7-b936d1740d6e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/0dfe43de-aa35-49d7-9e32-fe584d2166e5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/d243c1a4-f97b-499f-b7ab-1b9e8e37df60.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/b48dc78b-651d-4e2e-94b6-b158615a184d.jpg,4/24/2024 0:00,15.0000000,16.0000000,42.9684910000000,9.35035200000000,La Girelle,centuri,77543,Observation #77543,https://biolit.fr/observations/observation-77543/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/b48dc78b-651d-4e2e-94b6-b158615a184d.jpg,,,Ne sais pas +N1,77554,Sortie #77554,https://biolit.fr/sorties/sortie-77554/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_140219026_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_140230464_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173701092.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173709060-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173725704-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173806592-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173816943-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173824581-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_174046532-rotated.jpg,07/03/2024,13.0000000,14.0000000,43.2580380000000,5.37585700000000,,Plage de l'Huveaune,77556,Observation #77556,https://biolit.fr/observations/observation-77556/,Teredo navalis,Taret commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_140219026_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_140230464_HDR-rotated.jpg,,,Identifiable +N1,77554,Sortie #77554,https://biolit.fr/sorties/sortie-77554/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_140219026_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_140230464_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173701092.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173709060-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173725704-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173806592-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173816943-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173824581-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_174046532-rotated.jpg,07/03/2024,13.0000000,14.0000000,43.2580380000000,5.37585700000000,,Plage de l'Huveaune,77558,Observation #77558,https://biolit.fr/observations/observation-77558/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173701092.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173709060-rotated.jpg,,TRUE,Identifiable +N1,77554,Sortie #77554,https://biolit.fr/sorties/sortie-77554/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_140219026_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_140230464_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173701092.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173709060-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173725704-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173806592-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173816943-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173824581-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_174046532-rotated.jpg,07/03/2024,13.0000000,14.0000000,43.2580380000000,5.37585700000000,,Plage de l'Huveaune,77560,Observation #77560,https://biolit.fr/observations/observation-77560/,Tritia mutabilis,Noisette de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173725704-rotated.jpg,,,Identifiable +N1,77554,Sortie #77554,https://biolit.fr/sorties/sortie-77554/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_140219026_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_140230464_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173701092.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173709060-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173725704-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173806592-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173816943-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173824581-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_174046532-rotated.jpg,07/03/2024,13.0000000,14.0000000,43.2580380000000,5.37585700000000,,Plage de l'Huveaune,77562,Observation #77562,https://biolit.fr/observations/observation-77562/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173806592-rotated.jpg,,TRUE,Identifiable +N1,77554,Sortie #77554,https://biolit.fr/sorties/sortie-77554/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_140219026_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_140230464_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173701092.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173709060-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173725704-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173806592-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173816943-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173824581-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_174046532-rotated.jpg,07/03/2024,13.0000000,14.0000000,43.2580380000000,5.37585700000000,,Plage de l'Huveaune,77564,Observation #77564,https://biolit.fr/observations/observation-77564/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173816943-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173824581-rotated.jpg,,,Ne sais pas +N1,77554,Sortie #77554,https://biolit.fr/sorties/sortie-77554/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_140219026_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240703_140230464_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173701092.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173709060-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173725704-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173806592-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173816943-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_173824581-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_174046532-rotated.jpg,07/03/2024,13.0000000,14.0000000,43.2580380000000,5.37585700000000,,Plage de l'Huveaune,77566,Observation #77566,https://biolit.fr/observations/observation-77566/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/07/IMG_20240706_174046532-rotated.jpg,,,Ne sais pas +N1,77572,Sortie #77572,https://biolit.fr/sorties/sortie-77572/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/WhatsApp-Image-2024-04-29-at-17.56.20.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/WhatsApp-Image-2024-04-29-at-17.56.21.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/WhatsApp-Image-2024-04-29-at-17.56.21-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/WhatsApp-Image-2024-04-29-at-17.56.21-2.jpeg,4/29/2024 0:00,15.0000000,16.0000000,42.5391690000000,9.481201000000,La Girelle,Corse,,,,,,,,,, +N1,77575,Sortie #77575,https://biolit.fr/sorties/sortie-77575/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/WhatsApp-Image-2024-07-07-at-00.07.48.jpeg,5/30/2024 0:00,9.0000000,9.0:15,41.9124200000000,8.72558000000000,La Girelle,Ajaccio,77577,Observation #77577,https://biolit.fr/observations/observation-77577/,Cymbulia peronii,Sabot de Vénus,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/07/WhatsApp-Image-2024-07-07-at-00.07.48.jpeg,,TRUE,Identifiable +N1,77593,Sortie #77593,https://biolit.fr/sorties/sortie-77593/,Clauzel Viviane,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123424-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124216-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124143-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124828-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_131019-scaled.jpg,07/04/2024,12.0:15,13.0:15,48.6364900000000,-2.08345400000000,,Port Blanc,77595,Observation #77595,https://biolit.fr/observations/observation-77595/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123424-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123411-scaled.jpg,,TRUE,Identifiable +N1,77593,Sortie #77593,https://biolit.fr/sorties/sortie-77593/,Clauzel Viviane,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123424-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124216-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124143-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124828-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_131019-scaled.jpg,07/04/2024,12.0:15,13.0:15,48.6364900000000,-2.08345400000000,,Port Blanc,77597,Observation #77597,https://biolit.fr/observations/observation-77597/,Pleurobrachia pileus,Groseille de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_131019-scaled.jpg,,TRUE,Identifiable +N1,77593,Sortie #77593,https://biolit.fr/sorties/sortie-77593/,Clauzel Viviane,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123424-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124216-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124143-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124828-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_131019-scaled.jpg,07/04/2024,12.0:15,13.0:15,48.6364900000000,-2.08345400000000,,Port Blanc,77599,Observation #77599,https://biolit.fr/observations/observation-77599/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124216-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124143-scaled.jpg,,TRUE,Identifiable +N1,77593,Sortie #77593,https://biolit.fr/sorties/sortie-77593/,Clauzel Viviane,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123424-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124216-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124143-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124828-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_131019-scaled.jpg,07/04/2024,12.0:15,13.0:15,48.6364900000000,-2.08345400000000,,Port Blanc,77601,Observation #77601,https://biolit.fr/observations/observation-77601/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130311-scaled.jpg,,TRUE,Ne sais pas +N1,77593,Sortie #77593,https://biolit.fr/sorties/sortie-77593/,Clauzel Viviane,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123424-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124216-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124143-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124828-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_131019-scaled.jpg,07/04/2024,12.0:15,13.0:15,48.6364900000000,-2.08345400000000,,Port Blanc,77603,Observation #77603,https://biolit.fr/observations/observation-77603/,Crambe crambe,Eponge encroûtante orange-rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130048-scaled.jpg,,,Identifiable +N1,77593,Sortie #77593,https://biolit.fr/sorties/sortie-77593/,Clauzel Viviane,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123424-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124216-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124143-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124828-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_131019-scaled.jpg,07/04/2024,12.0:15,13.0:15,48.6364900000000,-2.08345400000000,,Port Blanc,77605,Observation #77605,https://biolit.fr/observations/observation-77605/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125747-scaled.jpg,,TRUE,Identifiable +N1,77593,Sortie #77593,https://biolit.fr/sorties/sortie-77593/,Clauzel Viviane,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123424-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124216-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124143-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124828-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_131019-scaled.jpg,07/04/2024,12.0:15,13.0:15,48.6364900000000,-2.08345400000000,,Port Blanc,77607,Observation #77607,https://biolit.fr/observations/observation-77607/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125713-scaled.jpg,,TRUE,Ne sais pas +N1,77593,Sortie #77593,https://biolit.fr/sorties/sortie-77593/,Clauzel Viviane,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123424-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124216-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124143-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124828-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_131019-scaled.jpg,07/04/2024,12.0:15,13.0:15,48.6364900000000,-2.08345400000000,,Port Blanc,77609,Observation #77609,https://biolit.fr/observations/observation-77609/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125226-scaled.jpg,,TRUE,Ne sais pas +N1,77593,Sortie #77593,https://biolit.fr/sorties/sortie-77593/,Clauzel Viviane,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_123424-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124216-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124143-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_130012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_125226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124828-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_131019-scaled.jpg,07/04/2024,12.0:15,13.0:15,48.6364900000000,-2.08345400000000,,Port Blanc,77611,Observation #77611,https://biolit.fr/observations/observation-77611/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/731a9704219e64329d88f8029d89be78/2024/07/IMG_20240704_124828-scaled.jpg,,TRUE,Identifiable +N1,77616,Sortie #77616,https://biolit.fr/sorties/sortie-77616/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/441289603_3347057822255050_952250804442869586_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/441155011_1918245491967920_4064950720801512329_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449693700_354770070793274_8106035323862582279_n.jpg,05/09/2024,12.0000000,13.0000000,43.0238670000000,6.24504100000000,,Cap des Medes - ile de Porquerolles,77618,Observation #77618,https://biolit.fr/observations/observation-77618/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/441289603_3347057822255050_952250804442869586_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/441155011_1918245491967920_4064950720801512329_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449693700_354770070793274_8106035323862582279_n.jpg,,,Identifiable +N1,77616,Sortie #77616,https://biolit.fr/sorties/sortie-77616/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/441289603_3347057822255050_952250804442869586_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/441155011_1918245491967920_4064950720801512329_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449693700_354770070793274_8106035323862582279_n.jpg,05/09/2024,12.0000000,13.0000000,43.0238670000000,6.24504100000000,,Cap des Medes - ile de Porquerolles,77620,Observation #77620,https://biolit.fr/observations/observation-77620/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/441155011_1918245491967920_4064950720801512329_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449693700_354770070793274_8106035323862582279_n.jpg,,,Identifiable +N1,77616,Sortie #77616,https://biolit.fr/sorties/sortie-77616/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/441289603_3347057822255050_952250804442869586_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/441155011_1918245491967920_4064950720801512329_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449693700_354770070793274_8106035323862582279_n.jpg,05/09/2024,12.0000000,13.0000000,43.0238670000000,6.24504100000000,,Cap des Medes - ile de Porquerolles,77622,Observation #77622,https://biolit.fr/observations/observation-77622/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449693700_354770070793274_8106035323862582279_n.jpg,,,Identifiable +N1,77627,Sortie #77627,https://biolit.fr/sorties/sortie-77627/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/440345885_3799800203572321_2836098945730878998_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/440392456_965179152004607_7978389260738676036_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/440566111_830856352240724_4120780743890165908_n.jpg,05/09/2024,12.0000000,13.0000000,43.0227920000000,6.24126400000000,,Cap des Medes - ile de Porquerolles,77629,Observation #77629,https://biolit.fr/observations/observation-77629/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/440392456_965179152004607_7978389260738676036_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/440566111_830856352240724_4120780743890165908_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/440345885_3799800203572321_2836098945730878998_n.jpg,,TRUE,Identifiable +N1,77627,Sortie #77627,https://biolit.fr/sorties/sortie-77627/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/440345885_3799800203572321_2836098945730878998_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/440392456_965179152004607_7978389260738676036_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/440566111_830856352240724_4120780743890165908_n.jpg,05/09/2024,12.0000000,13.0000000,43.0227920000000,6.24126400000000,,Cap des Medes - ile de Porquerolles,77631,Observation #77631,https://biolit.fr/observations/observation-77631/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/440345885_3799800203572321_2836098945730878998_n.jpg,,TRUE,Identifiable +N1,77627,Sortie #77627,https://biolit.fr/sorties/sortie-77627/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/440345885_3799800203572321_2836098945730878998_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/440392456_965179152004607_7978389260738676036_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/440566111_830856352240724_4120780743890165908_n.jpg,05/09/2024,12.0000000,13.0000000,43.0227920000000,6.24126400000000,,Cap des Medes - ile de Porquerolles,77633,Observation #77633,https://biolit.fr/observations/observation-77633/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/440566111_830856352240724_4120780743890165908_n.jpg,,TRUE,Identifiable +N1,77637,Sortie #77637,https://biolit.fr/sorties/sortie-77637/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712129_440483775483148_440594459173987985_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449432300_1560403144540299_6866754139721062898_n.jpg,5/16/2024 0:00,16.0:55,17.0000000,43.1676620000000,6.62836100000000,,Cap taillat - Ramatuelle,77639,Observation #77639,https://biolit.fr/observations/observation-77639/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712129_440483775483148_440594459173987985_n.jpg,,TRUE,Identifiable +N1,77637,Sortie #77637,https://biolit.fr/sorties/sortie-77637/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712129_440483775483148_440594459173987985_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449432300_1560403144540299_6866754139721062898_n.jpg,5/16/2024 0:00,16.0:55,17.0000000,43.1676620000000,6.62836100000000,,Cap taillat - Ramatuelle,77641,Observation #77641,https://biolit.fr/observations/observation-77641/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449432300_1560403144540299_6866754139721062898_n.jpg,,TRUE,Identifiable +N1,77663,Sortie #77663,https://biolit.fr/sorties/sortie-77663/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449969254_1446123779424694_8550554573171368124_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449116980_1181156586566700_6294719809434803153_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449136372_314346998424214_5052237989810912049_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445833689_2395762490610126_1112503281127745166_n-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,5/19/2024 0:00,12.0000000,13.0000000,43.1584950000000,6.62222400000000,,Ilot du crocodile - plage de jovat,77665,Observation #77665,https://biolit.fr/observations/observation-77665/,Symphodus melops,Crénilabre commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg,,,Identifiable +N1,77663,Sortie #77663,https://biolit.fr/sorties/sortie-77663/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449969254_1446123779424694_8550554573171368124_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449116980_1181156586566700_6294719809434803153_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449136372_314346998424214_5052237989810912049_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445833689_2395762490610126_1112503281127745166_n-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,5/19/2024 0:00,12.0000000,13.0000000,43.1584950000000,6.62222400000000,,Ilot du crocodile - plage de jovat,77667,Observation #77667,https://biolit.fr/observations/observation-77667/,Thalassoma pavo,Girelle-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg,,,Identifiable +N1,77663,Sortie #77663,https://biolit.fr/sorties/sortie-77663/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449969254_1446123779424694_8550554573171368124_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449116980_1181156586566700_6294719809434803153_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449136372_314346998424214_5052237989810912049_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445833689_2395762490610126_1112503281127745166_n-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,5/19/2024 0:00,12.0000000,13.0000000,43.1584950000000,6.62222400000000,,Ilot du crocodile - plage de jovat,77669,Observation #77669,https://biolit.fr/observations/observation-77669/,Symphodus tinca,Crénilabre-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg,,,Identifiable +N1,77663,Sortie #77663,https://biolit.fr/sorties/sortie-77663/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449969254_1446123779424694_8550554573171368124_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449116980_1181156586566700_6294719809434803153_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449136372_314346998424214_5052237989810912049_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445833689_2395762490610126_1112503281127745166_n-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,5/19/2024 0:00,12.0000000,13.0000000,43.1584950000000,6.62222400000000,,Ilot du crocodile - plage de jovat,77671,Observation #77671,https://biolit.fr/observations/observation-77671/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg,,TRUE,Identifiable +N1,77663,Sortie #77663,https://biolit.fr/sorties/sortie-77663/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449969254_1446123779424694_8550554573171368124_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449116980_1181156586566700_6294719809434803153_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449136372_314346998424214_5052237989810912049_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445833689_2395762490610126_1112503281127745166_n-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,5/19/2024 0:00,12.0000000,13.0000000,43.1584950000000,6.62222400000000,,Ilot du crocodile - plage de jovat,77673,Observation #77673,https://biolit.fr/observations/observation-77673/,Crangon crangon,Crevette grise européenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg,,,Identifiable +N1,77663,Sortie #77663,https://biolit.fr/sorties/sortie-77663/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449969254_1446123779424694_8550554573171368124_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449116980_1181156586566700_6294719809434803153_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449136372_314346998424214_5052237989810912049_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445833689_2395762490610126_1112503281127745166_n-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,5/19/2024 0:00,12.0000000,13.0000000,43.1584950000000,6.62222400000000,,Ilot du crocodile - plage de jovat,77675,Observation #77675,https://biolit.fr/observations/observation-77675/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg,,,Ne sais pas +N1,77663,Sortie #77663,https://biolit.fr/sorties/sortie-77663/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449969254_1446123779424694_8550554573171368124_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449116980_1181156586566700_6294719809434803153_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449136372_314346998424214_5052237989810912049_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445833689_2395762490610126_1112503281127745166_n-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,5/19/2024 0:00,12.0000000,13.0000000,43.1584950000000,6.62222400000000,,Ilot du crocodile - plage de jovat,77677,Observation #77677,https://biolit.fr/observations/observation-77677/,Chelon labrosus,Mulet lippu,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg,,,Identifiable +N1,77663,Sortie #77663,https://biolit.fr/sorties/sortie-77663/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449969254_1446123779424694_8550554573171368124_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449116980_1181156586566700_6294719809434803153_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449136372_314346998424214_5052237989810912049_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445833689_2395762490610126_1112503281127745166_n-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,5/19/2024 0:00,12.0000000,13.0000000,43.1584950000000,6.62222400000000,,Ilot du crocodile - plage de jovat,77679,Observation #77679,https://biolit.fr/observations/observation-77679/,Coris julis,Girelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg,,,Identifiable +N1,77663,Sortie #77663,https://biolit.fr/sorties/sortie-77663/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449969254_1446123779424694_8550554573171368124_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449116980_1181156586566700_6294719809434803153_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449136372_314346998424214_5052237989810912049_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445833689_2395762490610126_1112503281127745166_n-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,5/19/2024 0:00,12.0000000,13.0000000,43.1584950000000,6.62222400000000,,Ilot du crocodile - plage de jovat,77681,Observation #77681,https://biolit.fr/observations/observation-77681/,Symphodus roissali,Crénilabre à cinq taches,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg,,,Identifiable +N1,77663,Sortie #77663,https://biolit.fr/sorties/sortie-77663/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449969254_1446123779424694_8550554573171368124_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449116980_1181156586566700_6294719809434803153_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449136372_314346998424214_5052237989810912049_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445833689_2395762490610126_1112503281127745166_n-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,5/19/2024 0:00,12.0000000,13.0000000,43.1584950000000,6.62222400000000,,Ilot du crocodile - plage de jovat,77683,Observation #77683,https://biolit.fr/observations/observation-77683/,Symphodus tinca,Crénilabre-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg,,,Identifiable +N1,77663,Sortie #77663,https://biolit.fr/sorties/sortie-77663/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449969254_1446123779424694_8550554573171368124_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449116980_1181156586566700_6294719809434803153_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449136372_314346998424214_5052237989810912049_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445833689_2395762490610126_1112503281127745166_n-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,5/19/2024 0:00,12.0000000,13.0000000,43.1584950000000,6.62222400000000,,Ilot du crocodile - plage de jovat,77685,Observation #77685,https://biolit.fr/observations/observation-77685/,Thalassoma pavo,Girelle-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg,,,Identifiable +N1,77663,Sortie #77663,https://biolit.fr/sorties/sortie-77663/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449969254_1446123779424694_8550554573171368124_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449116980_1181156586566700_6294719809434803153_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449136372_314346998424214_5052237989810912049_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445833689_2395762490610126_1112503281127745166_n-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,5/19/2024 0:00,12.0000000,13.0000000,43.1584950000000,6.62222400000000,,Ilot du crocodile - plage de jovat,77687,Observation #77687,https://biolit.fr/observations/observation-77687/,Thalassoma pavo,Girelle-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg,,,Identifiable +N1,77663,Sortie #77663,https://biolit.fr/sorties/sortie-77663/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449969254_1446123779424694_8550554573171368124_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449116980_1181156586566700_6294719809434803153_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449136372_314346998424214_5052237989810912049_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445833689_2395762490610126_1112503281127745166_n-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,5/19/2024 0:00,12.0000000,13.0000000,43.1584950000000,6.62222400000000,,Ilot du crocodile - plage de jovat,77689,Observation #77689,https://biolit.fr/observations/observation-77689/,Mullus surmuletus,Rouget-barbet de roche,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg,,,Identifiable +N1,77663,Sortie #77663,https://biolit.fr/sorties/sortie-77663/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449969254_1446123779424694_8550554573171368124_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449116980_1181156586566700_6294719809434803153_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449136372_314346998424214_5052237989810912049_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445833689_2395762490610126_1112503281127745166_n-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,5/19/2024 0:00,12.0000000,13.0000000,43.1584950000000,6.62222400000000,,Ilot du crocodile - plage de jovat,77691,Observation #77691,https://biolit.fr/observations/observation-77691/,Diplodus vulgaris,Sar à tête noire,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg,,,Identifiable +N1,77663,Sortie #77663,https://biolit.fr/sorties/sortie-77663/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449969254_1446123779424694_8550554573171368124_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449116980_1181156586566700_6294719809434803153_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449136372_314346998424214_5052237989810912049_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445833689_2395762490610126_1112503281127745166_n-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,5/19/2024 0:00,12.0000000,13.0000000,43.1584950000000,6.62222400000000,,Ilot du crocodile - plage de jovat,77693,Observation #77693,https://biolit.fr/observations/observation-77693/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg,,TRUE,Identifiable +N1,77663,Sortie #77663,https://biolit.fr/sorties/sortie-77663/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722295_1013393087090174_8946911334640390707_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449645142_855944379764107_770591781910829827_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442659425_1000465058453080_2118101389206141395_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449969254_1446123779424694_8550554573171368124_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449193314_1146980923231206_8733113823464125200_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771364_897278415751609_602225594360408674_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442686200_768022138799601_413382408405963893_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/442561816_1369577670382886_5490989281308965286_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445641479_2488728751335147_8090915929078702341_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450405938_1142827513609291_1140981824683322592_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449116980_1181156586566700_6294719809434803153_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449801976_1292190985088459_5034303105083072986_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449136372_314346998424214_5052237989810912049_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480979_1192284912119315_5032227716296069_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449164141_2536789516522230_195400969347262552_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449409318_1831470387347250_5580223294251209379_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450498745_3872526859642771_236419195742064632_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445833689_2395762490610126_1112503281127745166_n-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/444764476_1215223449856761_8201187198978225494_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,5/19/2024 0:00,12.0000000,13.0000000,43.1584950000000,6.62222400000000,,Ilot du crocodile - plage de jovat,77695,Observation #77695,https://biolit.fr/observations/observation-77695/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445777374_763259982646094_1228289838853527767_n.jpg,,,Ne sais pas +N1,77701,Sortie #77701,https://biolit.fr/sorties/sortie-77701/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449814575_1168736467735536_5325578215777666618_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449138958_497494582677424_2326013233215198349_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449766441_1051119979920815_2583622848945229878_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445745691_445681318248607_8812594221198755893_n.jpg,06/04/2024,12.0000000,13.0000000,43.0880870000000,6.35902400000000,,Ilot du crocodile - plage de jovat,77703,Observation #77703,https://biolit.fr/observations/observation-77703/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449814575_1168736467735536_5325578215777666618_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449138958_497494582677424_2326013233215198349_n.jpg,,TRUE,Identifiable +N1,77701,Sortie #77701,https://biolit.fr/sorties/sortie-77701/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449814575_1168736467735536_5325578215777666618_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449138958_497494582677424_2326013233215198349_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449766441_1051119979920815_2583622848945229878_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445745691_445681318248607_8812594221198755893_n.jpg,06/04/2024,12.0000000,13.0000000,43.0880870000000,6.35902400000000,,Ilot du crocodile - plage de jovat,77705,Observation #77705,https://biolit.fr/observations/observation-77705/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449138958_497494582677424_2326013233215198349_n.jpg,,TRUE,Identifiable +N1,77701,Sortie #77701,https://biolit.fr/sorties/sortie-77701/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449814575_1168736467735536_5325578215777666618_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449138958_497494582677424_2326013233215198349_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449766441_1051119979920815_2583622848945229878_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445745691_445681318248607_8812594221198755893_n.jpg,06/04/2024,12.0000000,13.0000000,43.0880870000000,6.35902400000000,,Ilot du crocodile - plage de jovat,77707,Observation #77707,https://biolit.fr/observations/observation-77707/,Apogon imberbis,Apogon,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449766441_1051119979920815_2583622848945229878_n.jpg,,TRUE,Identifiable +N1,77701,Sortie #77701,https://biolit.fr/sorties/sortie-77701/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449814575_1168736467735536_5325578215777666618_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449138958_497494582677424_2326013233215198349_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449766441_1051119979920815_2583622848945229878_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445745691_445681318248607_8812594221198755893_n.jpg,06/04/2024,12.0000000,13.0000000,43.0880870000000,6.35902400000000,,Ilot du crocodile - plage de jovat,77709,Observation #77709,https://biolit.fr/observations/observation-77709/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/445745691_445681318248607_8812594221198755893_n.jpg,,,Identifiable +N1,77718,Sortie #77718,https://biolit.fr/sorties/sortie-77718/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448809801_801557262120278_7458771948191898179_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448946263_1190597422113195_2923235369145493485_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712129_1235463121199724_1086952136429436504_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449733512_2137976703240586_4259025075658241596_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449795277_1026002825851263_268585354771586845_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449523697_526638629695049_9197393125436053831_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449372386_774221164791553_1077790501321772790_n.jpg,07/01/2024,12.0000000,13.0000000,43.1050640000000,5.97759200000000,,Anse Magaud - La Garde,77720,Observation #77720,https://biolit.fr/observations/observation-77720/,Echinaster (Echinaster) sepositus,Etoile de mer rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448809801_801557262120278_7458771948191898179_n.jpg,,TRUE,Identifiable +N1,77718,Sortie #77718,https://biolit.fr/sorties/sortie-77718/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448809801_801557262120278_7458771948191898179_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448946263_1190597422113195_2923235369145493485_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712129_1235463121199724_1086952136429436504_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449733512_2137976703240586_4259025075658241596_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449795277_1026002825851263_268585354771586845_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449523697_526638629695049_9197393125436053831_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449372386_774221164791553_1077790501321772790_n.jpg,07/01/2024,12.0000000,13.0000000,43.1050640000000,5.97759200000000,,Anse Magaud - La Garde,77722,Observation #77722,https://biolit.fr/observations/observation-77722/,Echinaster (Echinaster) sepositus,Etoile de mer rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448946263_1190597422113195_2923235369145493485_n.jpg,,TRUE,Identifiable +N1,77718,Sortie #77718,https://biolit.fr/sorties/sortie-77718/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448809801_801557262120278_7458771948191898179_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448946263_1190597422113195_2923235369145493485_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712129_1235463121199724_1086952136429436504_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449733512_2137976703240586_4259025075658241596_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449795277_1026002825851263_268585354771586845_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449523697_526638629695049_9197393125436053831_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449372386_774221164791553_1077790501321772790_n.jpg,07/01/2024,12.0000000,13.0000000,43.1050640000000,5.97759200000000,,Anse Magaud - La Garde,77724,Observation #77724,https://biolit.fr/observations/observation-77724/,Echinaster (Echinaster) sepositus,Etoile de mer rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712129_1235463121199724_1086952136429436504_n.jpg,,TRUE,Identifiable +N1,77718,Sortie #77718,https://biolit.fr/sorties/sortie-77718/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448809801_801557262120278_7458771948191898179_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448946263_1190597422113195_2923235369145493485_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712129_1235463121199724_1086952136429436504_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449733512_2137976703240586_4259025075658241596_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449795277_1026002825851263_268585354771586845_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449523697_526638629695049_9197393125436053831_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449372386_774221164791553_1077790501321772790_n.jpg,07/01/2024,12.0000000,13.0000000,43.1050640000000,5.97759200000000,,Anse Magaud - La Garde,77726,Observation #77726,https://biolit.fr/observations/observation-77726/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449733512_2137976703240586_4259025075658241596_n.jpg,,TRUE,Identifiable +N1,77718,Sortie #77718,https://biolit.fr/sorties/sortie-77718/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448809801_801557262120278_7458771948191898179_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448946263_1190597422113195_2923235369145493485_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712129_1235463121199724_1086952136429436504_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449733512_2137976703240586_4259025075658241596_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449795277_1026002825851263_268585354771586845_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449523697_526638629695049_9197393125436053831_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449372386_774221164791553_1077790501321772790_n.jpg,07/01/2024,12.0000000,13.0000000,43.1050640000000,5.97759200000000,,Anse Magaud - La Garde,77728,Observation #77728,https://biolit.fr/observations/observation-77728/,Acetabularia acetabulum,Acétabulaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449795277_1026002825851263_268585354771586845_n.jpg,,TRUE,Identifiable +N1,77718,Sortie #77718,https://biolit.fr/sorties/sortie-77718/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448809801_801557262120278_7458771948191898179_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448946263_1190597422113195_2923235369145493485_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712129_1235463121199724_1086952136429436504_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449733512_2137976703240586_4259025075658241596_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449795277_1026002825851263_268585354771586845_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449523697_526638629695049_9197393125436053831_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449372386_774221164791553_1077790501321772790_n.jpg,07/01/2024,12.0000000,13.0000000,43.1050640000000,5.97759200000000,,Anse Magaud - La Garde,77730,Observation #77730,https://biolit.fr/observations/observation-77730/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449523697_526638629695049_9197393125436053831_n.jpg,,,Ne sais pas +N1,77718,Sortie #77718,https://biolit.fr/sorties/sortie-77718/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448809801_801557262120278_7458771948191898179_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448946263_1190597422113195_2923235369145493485_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712129_1235463121199724_1086952136429436504_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449733512_2137976703240586_4259025075658241596_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449795277_1026002825851263_268585354771586845_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449523697_526638629695049_9197393125436053831_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449372386_774221164791553_1077790501321772790_n.jpg,07/01/2024,12.0000000,13.0000000,43.1050640000000,5.97759200000000,,Anse Magaud - La Garde,77732,Observation #77732,https://biolit.fr/observations/observation-77732/,Diplodus puntazzo,Sar à museau pointu,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449372386_774221164791553_1077790501321772790_n.jpg,,TRUE,Identifiable +N1,77744,Sortie #77744,https://biolit.fr/sorties/sortie-77744/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771362_993041138790813_6236238237583664567_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449744496_1962640144181882_9222433197441126298_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480689_7918146704910647_8629253310398571107_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712127_3703183473332340_3915520402004311130_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722274_1001115518467573_7176021620965414478_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449657717_1823678764789706_273091617613895765_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449803603_1144576163437854_267295239425654502_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448808512_768769445333272_3665274533696480216_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449517912_489687640086140_6057903096212618624_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449756295_3792626347683922_3058930575318418893_n.jpg,07/06/2024,12.0000000,13.0000000,43.1030590000000,5.97965200000000,,Anse Magaud - La Garde,77746,Observation #77746,https://biolit.fr/observations/observation-77746/,Thalassoma pavo,Girelle-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771362_993041138790813_6236238237583664567_n.jpg,,TRUE,Identifiable +N1,77744,Sortie #77744,https://biolit.fr/sorties/sortie-77744/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771362_993041138790813_6236238237583664567_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449744496_1962640144181882_9222433197441126298_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480689_7918146704910647_8629253310398571107_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712127_3703183473332340_3915520402004311130_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722274_1001115518467573_7176021620965414478_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449657717_1823678764789706_273091617613895765_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449803603_1144576163437854_267295239425654502_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448808512_768769445333272_3665274533696480216_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449517912_489687640086140_6057903096212618624_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449756295_3792626347683922_3058930575318418893_n.jpg,07/06/2024,12.0000000,13.0000000,43.1030590000000,5.97965200000000,,Anse Magaud - La Garde,77748,Observation #77748,https://biolit.fr/observations/observation-77748/,Parablennius incognitus,Blennie diabolo,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449744496_1962640144181882_9222433197441126298_n.jpg,,TRUE,Identifiable +N1,77744,Sortie #77744,https://biolit.fr/sorties/sortie-77744/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771362_993041138790813_6236238237583664567_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449744496_1962640144181882_9222433197441126298_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480689_7918146704910647_8629253310398571107_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712127_3703183473332340_3915520402004311130_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722274_1001115518467573_7176021620965414478_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449657717_1823678764789706_273091617613895765_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449803603_1144576163437854_267295239425654502_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448808512_768769445333272_3665274533696480216_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449517912_489687640086140_6057903096212618624_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449756295_3792626347683922_3058930575318418893_n.jpg,07/06/2024,12.0000000,13.0000000,43.1030590000000,5.97965200000000,,Anse Magaud - La Garde,77750,Observation #77750,https://biolit.fr/observations/observation-77750/,Thalassoma pavo,Girelle-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480689_7918146704910647_8629253310398571107_n.jpg,,TRUE,Identifiable +N1,77744,Sortie #77744,https://biolit.fr/sorties/sortie-77744/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771362_993041138790813_6236238237583664567_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449744496_1962640144181882_9222433197441126298_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480689_7918146704910647_8629253310398571107_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712127_3703183473332340_3915520402004311130_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722274_1001115518467573_7176021620965414478_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449657717_1823678764789706_273091617613895765_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449803603_1144576163437854_267295239425654502_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448808512_768769445333272_3665274533696480216_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449517912_489687640086140_6057903096212618624_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449756295_3792626347683922_3058930575318418893_n.jpg,07/06/2024,12.0000000,13.0000000,43.1030590000000,5.97965200000000,,Anse Magaud - La Garde,77752,Observation #77752,https://biolit.fr/observations/observation-77752/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712127_3703183473332340_3915520402004311130_n.jpg,,TRUE,Identifiable +N1,77744,Sortie #77744,https://biolit.fr/sorties/sortie-77744/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771362_993041138790813_6236238237583664567_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449744496_1962640144181882_9222433197441126298_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480689_7918146704910647_8629253310398571107_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712127_3703183473332340_3915520402004311130_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722274_1001115518467573_7176021620965414478_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449657717_1823678764789706_273091617613895765_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449803603_1144576163437854_267295239425654502_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448808512_768769445333272_3665274533696480216_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449517912_489687640086140_6057903096212618624_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449756295_3792626347683922_3058930575318418893_n.jpg,07/06/2024,12.0000000,13.0000000,43.1030590000000,5.97965200000000,,Anse Magaud - La Garde,77754,Observation #77754,https://biolit.fr/observations/observation-77754/,Serranus scriba,Serran-écriture,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722274_1001115518467573_7176021620965414478_n.jpg,,TRUE,Identifiable +N1,77744,Sortie #77744,https://biolit.fr/sorties/sortie-77744/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771362_993041138790813_6236238237583664567_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449744496_1962640144181882_9222433197441126298_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480689_7918146704910647_8629253310398571107_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712127_3703183473332340_3915520402004311130_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722274_1001115518467573_7176021620965414478_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449657717_1823678764789706_273091617613895765_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449803603_1144576163437854_267295239425654502_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448808512_768769445333272_3665274533696480216_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449517912_489687640086140_6057903096212618624_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449756295_3792626347683922_3058930575318418893_n.jpg,07/06/2024,12.0000000,13.0000000,43.1030590000000,5.97965200000000,,Anse Magaud - La Garde,77756,Observation #77756,https://biolit.fr/observations/observation-77756/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449657717_1823678764789706_273091617613895765_n.jpg,,TRUE,Ne sais pas +N1,77744,Sortie #77744,https://biolit.fr/sorties/sortie-77744/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771362_993041138790813_6236238237583664567_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449744496_1962640144181882_9222433197441126298_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480689_7918146704910647_8629253310398571107_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712127_3703183473332340_3915520402004311130_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722274_1001115518467573_7176021620965414478_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449657717_1823678764789706_273091617613895765_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449803603_1144576163437854_267295239425654502_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448808512_768769445333272_3665274533696480216_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449517912_489687640086140_6057903096212618624_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449756295_3792626347683922_3058930575318418893_n.jpg,07/06/2024,12.0000000,13.0000000,43.1030590000000,5.97965200000000,,Anse Magaud - La Garde,77758,Observation #77758,https://biolit.fr/observations/observation-77758/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448808512_768769445333272_3665274533696480216_n.jpg,,TRUE,Identifiable +N1,77744,Sortie #77744,https://biolit.fr/sorties/sortie-77744/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771362_993041138790813_6236238237583664567_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449744496_1962640144181882_9222433197441126298_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480689_7918146704910647_8629253310398571107_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712127_3703183473332340_3915520402004311130_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722274_1001115518467573_7176021620965414478_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449657717_1823678764789706_273091617613895765_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449803603_1144576163437854_267295239425654502_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448808512_768769445333272_3665274533696480216_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449517912_489687640086140_6057903096212618624_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449756295_3792626347683922_3058930575318418893_n.jpg,07/06/2024,12.0000000,13.0000000,43.1030590000000,5.97965200000000,,Anse Magaud - La Garde,77760,Observation #77760,https://biolit.fr/observations/observation-77760/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449517912_489687640086140_6057903096212618624_n.jpg,,TRUE,Identifiable +N1,77744,Sortie #77744,https://biolit.fr/sorties/sortie-77744/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449771362_993041138790813_6236238237583664567_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449744496_1962640144181882_9222433197441126298_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/450480689_7918146704910647_8629253310398571107_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449712127_3703183473332340_3915520402004311130_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449722274_1001115518467573_7176021620965414478_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449657717_1823678764789706_273091617613895765_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449803603_1144576163437854_267295239425654502_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/448808512_768769445333272_3665274533696480216_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449517912_489687640086140_6057903096212618624_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449756295_3792626347683922_3058930575318418893_n.jpg,07/06/2024,12.0000000,13.0000000,43.1030590000000,5.97965200000000,,Anse Magaud - La Garde,77762,Observation #77762,https://biolit.fr/observations/observation-77762/,Thalassoma pavo,Girelle-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449756295_3792626347683922_3058930575318418893_n.jpg,,TRUE,Identifiable +N1,77767,Sortie #77767,https://biolit.fr/sorties/sortie-77767/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449420832_1188086042503722_7292126502262352726_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449648703_1908192166356643_1479157960897203382_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449965779_1001672007822249_204552125272803381_n.jpg,07/06/2024,12.0000000,13.0000000,43.1021270000000,5.95527600000000,,Anse Magaud - La Garde,77769,Observation #77769,https://biolit.fr/observations/observation-77769/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449420832_1188086042503722_7292126502262352726_n.jpg,,TRUE,Identifiable +N1,77767,Sortie #77767,https://biolit.fr/sorties/sortie-77767/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449420832_1188086042503722_7292126502262352726_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449648703_1908192166356643_1479157960897203382_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449965779_1001672007822249_204552125272803381_n.jpg,07/06/2024,12.0000000,13.0000000,43.1021270000000,5.95527600000000,,Anse Magaud - La Garde,77771,Observation #77771,https://biolit.fr/observations/observation-77771/,Parablennius incognitus,Blennie diabolo,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449648703_1908192166356643_1479157960897203382_n.jpg,,TRUE,Identifiable +N1,77767,Sortie #77767,https://biolit.fr/sorties/sortie-77767/,MEUNIER CHARLOTTE,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449420832_1188086042503722_7292126502262352726_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449648703_1908192166356643_1479157960897203382_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449965779_1001672007822249_204552125272803381_n.jpg,07/06/2024,12.0000000,13.0000000,43.1021270000000,5.95527600000000,,Anse Magaud - La Garde,77773,Observation #77773,https://biolit.fr/observations/observation-77773/,Diplodus sargus,Sar commun de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/541683a707b9922ab7833f6b11bc5572/2024/07/449965779_1001672007822249_204552125272803381_n.jpg,,TRUE,Identifiable +N1,77789,Sortie #77789,https://biolit.fr/sorties/sortie-77789/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_073735-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_073959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_074155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_074247-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_074323-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_074820-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_074844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_074854-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_074907-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_075100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_075109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_075418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_075549-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_075703-scaled.jpg,6/27/2024 0:00,7.0000000,9.0:45,43.2728560000000,3.35284700000000,,Portiragnes Plage,77791,Observation #77791,https://biolit.fr/observations/observation-77791/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_073735-scaled.jpg,,,Identifiable +N1,77804,Sortie #77804,https://biolit.fr/sorties/sortie-77804/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_080339-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_080511-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_080723-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_081000-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_081339-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_081823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_082014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_082028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_082656-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_082816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_082820-scaled.jpg,6/27/2024 0:00,7.0000000,9.0:45,43.2728560000000,3.35284700000000,,Portiragnes Plage,77806,Observation #77806,https://biolit.fr/observations/observation-77806/,Himantopus himantopus,Echasse blanche,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_082028-scaled.jpg,,TRUE,Identifiable +N1,77820,Sortie #77820,https://biolit.fr/sorties/sortie-77820/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_083015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_083215-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_083218-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_083447-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_083505-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_083706-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_083800-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_083802-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_083951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_084012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_085332-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_085640-scaled.jpg,6/27/2024 0:00,7.0000000,9.0:45,43.2728560000000,3.35284700000000,,Portiragnes Plage,77822,Observation #77822,https://biolit.fr/observations/observation-77822/,Sternula albifrons,Sterne naine,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_083447-scaled.jpg,,,Identifiable +N1,77834,Sortie #77834,https://biolit.fr/sorties/sortie-77834/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_090031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_090141-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_090448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_090627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_090756-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_090916-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_091111-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_091608-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_091840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_091929-scaled.jpg,6/27/2024 0:00,7.0000000,9.0:45,43.2728560000000,3.35284700000000,,Portiragnes Plage,77836,Observation #77836,https://biolit.fr/observations/observation-77836/,Pancratium maritimum,Lis de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_090448-scaled.jpg,,TRUE,Identifiable +N1,77849,Sortie #77849,https://biolit.fr/sorties/sortie-77849/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_092004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_092344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_092414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_092608-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_092906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_093022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_093229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_093346-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_093740-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_094156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_094522-scaled.jpg,6/27/2024 0:00,7.0000000,9.0:45,43.2728560000000,3.35284700000000,,Portiragnes Plage,77851,Observation #77851,https://biolit.fr/observations/observation-77851/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/07/P_20240627_092608-scaled.jpg,,,Identifiable +N1,77858,Sortie #77858,https://biolit.fr/sorties/sortie-77858/,Epaminondas Sara,https://biolit.fr/wp-content/uploads/jet-form-builder/31ce3779fe2c1cb10d12009e8927e497/2024/07/GPTempDownload-scaled.jpeg,6/18/2024 0:00,11.0000000,11.0000000,43.2110600000000,5.45626000000000,,Sugiton,,,,,,,,,, +N1,78448,Sortie #78448,https://biolit.fr/sorties/sortie-78448/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Diplodus_vulgaris-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Laurencia_obtusa1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Laurencia_obtusa2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Octopus_vulgaris2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Octopus_vulgaris5-scaled.jpg,7/16/2024 0:00,19.0000000,20.0000000,43.2287920000000,5.34915200000000,,Calanque de Samena,78450,Observation #78450,https://biolit.fr/observations/observation-78450/,Diplodus vulgaris,Sar à tête noire,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Diplodus_vulgaris-scaled.jpg,,TRUE,Identifiable +N1,78458,Sortie #78458,https://biolit.fr/sorties/sortie-78458/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Laurencia_obtusa1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Laurencia_obtusa2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Octopus_vulgaris2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Octopus_vulgaris5-1-scaled.jpg,7/16/2024 0:00,19.0000000,20.0000000,43.2285450000000,5.34873700000000,,Calanque de Samena,78460,Observation #78460,https://biolit.fr/observations/observation-78460/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Laurencia_obtusa1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Laurencia_obtusa2-1-scaled.jpg,,,Identifiable +N1,78458,Sortie #78458,https://biolit.fr/sorties/sortie-78458/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Laurencia_obtusa1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Laurencia_obtusa2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Octopus_vulgaris2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Octopus_vulgaris5-1-scaled.jpg,7/16/2024 0:00,19.0000000,20.0000000,43.2285450000000,5.34873700000000,,Calanque de Samena,78462,Observation #78462,https://biolit.fr/observations/observation-78462/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Octopus_vulgaris2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/07/Octopus_vulgaris5-1-scaled.jpg,,TRUE,Identifiable +N1,78476,Sortie #78476,https://biolit.fr/sorties/sortie-78476/,RAHHALI Chaimae,https://biolit.fr/wp-content/uploads/jet-form-builder/cbc831ed740f2bea15efbf31e21b23c2/2024/07/focus.png,7/18/2024 0:00,9.0000000,18.0000000,33.2316330,-8.5007120,,El Jadida,78478,Observation #78478,https://biolit.fr/observations/observation-78478/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cbc831ed740f2bea15efbf31e21b23c2/2024/07/focus.png,,,non-identifiable +N1,78488,Sortie #78488,https://biolit.fr/sorties/sortie-78488/,RAHHALI Chaimae,https://biolit.fr/wp-content/uploads/jet-form-builder/cbc831ed740f2bea15efbf31e21b23c2/2024/07/herbemer.png,7/19/2024 0:00,9.0000000,18.0000000,33.2316330,-8.5007120,,El Jadida,,,,,,,,,, +N1,78497,Sortie #78497,https://biolit.fr/sorties/sortie-78497/,CHAPELOT PIERRE,https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2024/07/IMG_15151-scaled.jpg,7/19/2024 0:00,14.000001,16.0:58,43.5529830000000,7.14362800000000,,CAP D'ANTIBES - Sentier du littoral,78505,Observation #78505,https://biolit.fr/observations/observation-78505/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2024/07/IMG_15151-scaled.jpg,,, +N1,78547,Sortie #78547,https://biolit.fr/sorties/sortie-78547/,ALVAREZ JOSE IGNACIO,https://biolit.fr/wp-content/uploads/jet-form-builder/9670200552a07e1872a2ed3e75285a01/2024/07/PHOTO-2024-07-15-19-07-55.jpg,7/15/2024 0:00,17.0000000,20.0000000,43.3759440000000,-361.788266000000,,HENDAYE,78549,Observation #78549,https://biolit.fr/observations/observation-78549/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/9670200552a07e1872a2ed3e75285a01/2024/07/PHOTO-2024-07-15-19-07-55.jpg,,,Identifiable +N1,78553,Sortie #78553,https://biolit.fr/sorties/sortie-78553/,LPO Occitanie - Aude,https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2024/07/IMG-20240722-WA0000.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2024/07/IMG_20240722_172739.jpg,7/18/2024 0:00,10.0000000,11.0000000,42.9398240000000,3.03648400000000,LPO Occitanie (Dt Aude),Leucate La Franqui,,,,,,,,,, +N1,78556,Sortie #78556,https://biolit.fr/sorties/sortie-78556/,LPO Occitanie - Aude,https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2024/07/IMG-20240722-WA0000-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2024/07/IMG_20240722_172739-1.jpg,7/18/2024 0:00,10.0000000,11.0000000,42.9398240000000,3.03648400000000,LPO Occitanie (Dt Aude),Leucate La Franqui,78559,Observation #78559,https://biolit.fr/observations/observation-78559/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2024/07/IMG-20240722-WA0000-1.jpg,,TRUE,Identifiable +N1,78617,Sortie #78617,https://biolit.fr/sorties/sortie-78617/,Juliette Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00001-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00002-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00003-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00004-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00005-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00006-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00007-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00008-scaled.jpeg,7/25/2024 0:00,21.0:45,23.0000000,47.2653330000000,-2.34617500000000,,Plage des libraires,78619,Observation #78619,https://biolit.fr/observations/observation-78619/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00001-scaled.jpeg,,,Ne sais pas +N1,78617,Sortie #78617,https://biolit.fr/sorties/sortie-78617/,Juliette Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00001-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00002-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00003-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00004-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00005-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00006-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00007-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00008-scaled.jpeg,7/25/2024 0:00,21.0:45,23.0000000,47.2653330000000,-2.34617500000000,,Plage des libraires,78621,Observation #78621,https://biolit.fr/observations/observation-78621/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00002-scaled.jpeg,,,Ne sais pas +N1,78617,Sortie #78617,https://biolit.fr/sorties/sortie-78617/,Juliette Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00001-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00002-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00003-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00004-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00005-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00006-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00007-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00008-scaled.jpeg,7/25/2024 0:00,21.0:45,23.0000000,47.2653330000000,-2.34617500000000,,Plage des libraires,78623,Observation #78623,https://biolit.fr/observations/observation-78623/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00003-scaled.jpeg,,,Ne sais pas +N1,78617,Sortie #78617,https://biolit.fr/sorties/sortie-78617/,Juliette Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00001-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00002-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00003-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00004-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00005-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00006-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00007-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00008-scaled.jpeg,7/25/2024 0:00,21.0:45,23.0000000,47.2653330000000,-2.34617500000000,,Plage des libraires,78625,Observation #78625,https://biolit.fr/observations/observation-78625/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00004-scaled.jpeg,,,Ne sais pas +N1,78617,Sortie #78617,https://biolit.fr/sorties/sortie-78617/,Juliette Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00001-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00002-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00003-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00004-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00005-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00006-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00007-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00008-scaled.jpeg,7/25/2024 0:00,21.0:45,23.0000000,47.2653330000000,-2.34617500000000,,Plage des libraires,78627,Observation #78627,https://biolit.fr/observations/observation-78627/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00005-scaled.jpeg,,TRUE,Ne sais pas +N1,78617,Sortie #78617,https://biolit.fr/sorties/sortie-78617/,Juliette Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00001-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00002-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00003-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00004-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00005-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00006-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00007-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00008-scaled.jpeg,7/25/2024 0:00,21.0:45,23.0000000,47.2653330000000,-2.34617500000000,,Plage des libraires,78629,Observation #78629,https://biolit.fr/observations/observation-78629/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00006-scaled.jpeg,,TRUE,Ne sais pas +N1,78617,Sortie #78617,https://biolit.fr/sorties/sortie-78617/,Juliette Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00001-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00002-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00003-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00004-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00005-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00006-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00007-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00008-scaled.jpeg,7/25/2024 0:00,21.0:45,23.0000000,47.2653330000000,-2.34617500000000,,Plage des libraires,78631,Observation #78631,https://biolit.fr/observations/observation-78631/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00007-scaled.jpeg,,TRUE,Ne sais pas +N1,78617,Sortie #78617,https://biolit.fr/sorties/sortie-78617/,Juliette Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00001-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00002-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00003-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00004-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00005-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00006-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00007-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00008-scaled.jpeg,7/25/2024 0:00,21.0:45,23.0000000,47.2653330000000,-2.34617500000000,,Plage des libraires,78633,Observation #78633,https://biolit.fr/observations/observation-78633/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/63a3313ddd804ca9406d5746d008064d/2024/07/image00008-scaled.jpeg,,,Ne sais pas +N1,78689,Sortie #78689,https://biolit.fr/sorties/sortie-78689/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_102534_908-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104936-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104952-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110252-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.4463240,3.753891,LPO Occitanie (Dt Hérault),Frontignan,78691,Observation #78691,https://biolit.fr/observations/observation-78691/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-scaled.jpg,,TRUE,Identifiable +N1,78689,Sortie #78689,https://biolit.fr/sorties/sortie-78689/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_102534_908-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104936-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104952-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110252-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.4463240,3.753891,LPO Occitanie (Dt Hérault),Frontignan,78693,Observation #78693,https://biolit.fr/observations/observation-78693/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7588-scaled.jpg,,,Identifiable +N1,78689,Sortie #78689,https://biolit.fr/sorties/sortie-78689/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_102534_908-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104936-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104952-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110252-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.4463240,3.753891,LPO Occitanie (Dt Hérault),Frontignan,78695,Observation #78695,https://biolit.fr/observations/observation-78695/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7589-scaled.jpg,,,Identifiable +N1,78689,Sortie #78689,https://biolit.fr/sorties/sortie-78689/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_102534_908-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104936-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104952-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110252-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.4463240,3.753891,LPO Occitanie (Dt Hérault),Frontignan,78697,Observation #78697,https://biolit.fr/observations/observation-78697/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-scaled.jpg,,, +N1,78689,Sortie #78689,https://biolit.fr/sorties/sortie-78689/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_102534_908-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104936-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104952-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110252-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.4463240,3.753891,LPO Occitanie (Dt Hérault),Frontignan,78700,Observation #78700,https://biolit.fr/observations/observation-78700/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_102534_908-scaled.jpg,,TRUE, +N1,78689,Sortie #78689,https://biolit.fr/sorties/sortie-78689/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_102534_908-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104936-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104952-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110252-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.4463240,3.753891,LPO Occitanie (Dt Hérault),Frontignan,78702,Observation #78702,https://biolit.fr/observations/observation-78702/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104936-scaled.jpg,,,Ne sais pas +N1,78689,Sortie #78689,https://biolit.fr/sorties/sortie-78689/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_102534_908-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104936-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104952-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110252-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.4463240,3.753891,LPO Occitanie (Dt Hérault),Frontignan,78704,Observation #78704,https://biolit.fr/observations/observation-78704/,Ensis siliqua,Couteau-silique,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104952-scaled.jpg,,,Identifiable +N1,78689,Sortie #78689,https://biolit.fr/sorties/sortie-78689/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_102534_908-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104936-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104952-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110252-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.4463240,3.753891,LPO Occitanie (Dt Hérault),Frontignan,78706,Observation #78706,https://biolit.fr/observations/observation-78706/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105001-scaled.jpg,,, +N1,78689,Sortie #78689,https://biolit.fr/sorties/sortie-78689/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_102534_908-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104936-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104952-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110252-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.4463240,3.753891,LPO Occitanie (Dt Hérault),Frontignan,78709,Observation #78709,https://biolit.fr/observations/observation-78709/,Tritia incrassata,Nasse épaisse,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105131-scaled.jpg,,,Identifiable +N1,78689,Sortie #78689,https://biolit.fr/sorties/sortie-78689/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_102534_908-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104936-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104952-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110252-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.4463240,3.753891,LPO Occitanie (Dt Hérault),Frontignan,78711,Observation #78711,https://biolit.fr/observations/observation-78711/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105154-scaled.jpg,,TRUE,Identifiable +N1,78689,Sortie #78689,https://biolit.fr/sorties/sortie-78689/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_102534_908-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104936-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104952-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110252-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.4463240,3.753891,LPO Occitanie (Dt Hérault),Frontignan,78713,Observation #78713,https://biolit.fr/observations/observation-78713/,Raja brachyura,Raie lisse,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-scaled.jpg,,,non-identifiable +N1,78689,Sortie #78689,https://biolit.fr/sorties/sortie-78689/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_102534_908-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104936-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104952-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110252-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.4463240,3.753891,LPO Occitanie (Dt Hérault),Frontignan,78715,Observation #78715,https://biolit.fr/observations/observation-78715/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110222-scaled.jpg,,TRUE,Identifiable +N1,78689,Sortie #78689,https://biolit.fr/sorties/sortie-78689/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_102534_908-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104936-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104952-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110252-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.4463240,3.753891,LPO Occitanie (Dt Hérault),Frontignan,78717,Observation #78717,https://biolit.fr/observations/observation-78717/,Acetabularia acetabulum,Acétabulaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110252-scaled.jpg,,TRUE,Identifiable +N1,78745,Sortie #78745,https://biolit.fr/sorties/sortie-78745/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104219-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104247-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104257-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104306-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104323-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104338-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105215-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-2-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.45,3.8,LPO Occitanie (Dt Hérault),Frontignan,78747,Observation #78747,https://biolit.fr/observations/observation-78747/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104219-2-scaled.jpg,,,Identifiable +N1,78745,Sortie #78745,https://biolit.fr/sorties/sortie-78745/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104219-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104247-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104257-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104306-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104323-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104338-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105215-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-2-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.45,3.8,LPO Occitanie (Dt Hérault),Frontignan,78749,Observation #78749,https://biolit.fr/observations/observation-78749/,Bittium reticulatum,Cérithe réticulé,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104247-2-scaled.jpg,,,Identifiable +N1,78745,Sortie #78745,https://biolit.fr/sorties/sortie-78745/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104219-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104247-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104257-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104306-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104323-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104338-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105215-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-2-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.45,3.8,LPO Occitanie (Dt Hérault),Frontignan,78751,Observation #78751,https://biolit.fr/observations/observation-78751/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104257-2-scaled.jpg,,,Identifiable +N1,78745,Sortie #78745,https://biolit.fr/sorties/sortie-78745/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104219-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104247-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104257-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104306-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104323-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104338-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105215-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-2-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.45,3.8,LPO Occitanie (Dt Hérault),Frontignan,78753,Observation #78753,https://biolit.fr/observations/observation-78753/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104306-2-scaled.jpg,,, +N1,78760,Sortie #78760,https://biolit.fr/sorties/sortie-78760/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104323-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104338-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105215-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-3-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.45,3.8,LPO Occitanie (Dt Hérault),Frontignan,78762,Observation #78762,https://biolit.fr/observations/observation-78762/,Epitonium clathrus,Scalaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104323-3-scaled.jpg,,,Identifiable +N1,78760,Sortie #78760,https://biolit.fr/sorties/sortie-78760/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104323-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104338-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105215-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-3-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.45,3.8,LPO Occitanie (Dt Hérault),Frontignan,78764,Observation #78764,https://biolit.fr/observations/observation-78764/,Turritellinella tricarinata,Turritelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104338-3-scaled.jpg,,,Identifiable +N1,78760,Sortie #78760,https://biolit.fr/sorties/sortie-78760/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104323-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104338-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105215-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-3-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.45,3.8,LPO Occitanie (Dt Hérault),Frontignan,78766,Observation #78766,https://biolit.fr/observations/observation-78766/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105215-3-scaled.jpg,,TRUE,Identifiable +N1,78760,Sortie #78760,https://biolit.fr/sorties/sortie-78760/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104323-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_104338-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_105215-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-3-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.45,3.8,LPO Occitanie (Dt Hérault),Frontignan,78768,Observation #78768,https://biolit.fr/observations/observation-78768/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-3-scaled.jpg,,TRUE,Ne sais pas +N1,78775,Sortie #78775,https://biolit.fr/sorties/sortie-78775/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-1-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.45,3.8,LPO Occitanie (Dt Hérault),Frontignan - Aresquiers,78777,Observation #78777,https://biolit.fr/observations/observation-78777/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-1-scaled.jpg,,TRUE,Identifiable +N1,78775,Sortie #78775,https://biolit.fr/sorties/sortie-78775/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-1-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.45,3.8,LPO Occitanie (Dt Hérault),Frontignan - Aresquiers,78779,Observation #78779,https://biolit.fr/observations/observation-78779/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-1-scaled.jpg,,TRUE,Identifiable +N1,78775,Sortie #78775,https://biolit.fr/sorties/sortie-78775/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-1-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.45,3.8,LPO Occitanie (Dt Hérault),Frontignan - Aresquiers,78781,Observation #78781,https://biolit.fr/observations/observation-78781/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-1-scaled.jpg,,,Identifiable +N1,78775,Sortie #78775,https://biolit.fr/sorties/sortie-78775/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7579-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7587-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_7591-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110058-1-scaled.jpg,7/31/2024 0:00,10.0000000,11.0:15,43.45,3.8,LPO Occitanie (Dt Hérault),Frontignan - Aresquiers,78783,Observation #78783,https://biolit.fr/observations/observation-78783/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/07/IMG_20240731_110049-4-scaled.jpg,,TRUE,Ne sais pas +N1,78791,Sortie #78791,https://biolit.fr/sorties/sortie-78791/,Vincent Jean-Pierre,https://biolit.fr/wp-content/uploads/jet-form-builder/8786ee06708d47d13b28e5c141632720/2024/08/IMG_8821.png,08/01/2024,8.0000000,10.000007,42.4902320000000,3.14346300000000,,Les Paulilles port vendre,,,,,,,,,, +N1,78824,Sortie #78824,https://biolit.fr/sorties/sortie-78824/,BRIQUET Damien,https://biolit.fr/wp-content/uploads/jet-form-builder/5c9f6cd7dcfa80a55ec313c1907fc1f3/2024/08/IMG_7169-scaled.jpg,7/18/2024 0:00,10.0000000,10.000002,42.1139240000000,9.5536210000000,,Aleria,78826,Observation #78826,https://biolit.fr/observations/observation-78826/,Delphinus delphis,Dauphin commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/5c9f6cd7dcfa80a55ec313c1907fc1f3/2024/08/IMG_7169-scaled.jpg,,,Identifiable +N1,78829,Sortie #78829,https://biolit.fr/sorties/sortie-78829/,BRIQUET Damien,https://biolit.fr/wp-content/uploads/jet-form-builder/5c9f6cd7dcfa80a55ec313c1907fc1f3/2024/08/IMG_7296-scaled.jpg,7/30/2024 0:00,21.0:17,21.0:18,42.1104020000000,9.54944200000000,,Aleria,78831,Observation #78831,https://biolit.fr/observations/observation-78831/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5c9f6cd7dcfa80a55ec313c1907fc1f3/2024/08/IMG_7296-scaled.jpg,,,Identifiable +N1,78834,Sortie #78834,https://biolit.fr/sorties/sortie-78834/,BRIQUET Damien,https://biolit.fr/wp-content/uploads/jet-form-builder/5c9f6cd7dcfa80a55ec313c1907fc1f3/2024/08/IMG_7210-scaled.jpg,7/26/2024 0:00,11.0000000,17.0000000,42.1018250000000,9.21461100000000,,Ghisoni,78836,Observation #78836,https://biolit.fr/observations/observation-78836/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/jet-form-builder/5c9f6cd7dcfa80a55ec313c1907fc1f3/2024/08/IMG_7210-scaled.jpg,,TRUE,Identifiable +N1,78839,Sortie #78839,https://biolit.fr/sorties/sortie-78839/,BRIQUET Damien,https://biolit.fr/wp-content/uploads/jet-form-builder/5c9f6cd7dcfa80a55ec313c1907fc1f3/2024/08/IMG_7270-scaled.jpg,7/26/2024 0:00,22.0000000,22.000001,42.1099320000000,9.54993300000000,,Aleria,,,,,,,,,, +N1,78846,Sortie #78846,https://biolit.fr/sorties/sortie-78846/,Alezrah Sarah,https://biolit.fr/wp-content/uploads/jet-form-builder/a5e17d493235fcf0cd1e91213d8f0bf6/2024/08/bassin-arcachon-juillet-2023.jpg,08/04/2023,17.0000000,17.0000000,44.6376660000000,-1.20437600000000,,Plage des Abatilles - Arcachon,78848,Observation #78848,https://biolit.fr/observations/observation-78848/,Conger conger,Congre,,https://biolit.fr/wp-content/uploads/jet-form-builder/a5e17d493235fcf0cd1e91213d8f0bf6/2024/08/bassin-arcachon-juillet-2023.jpg,,TRUE,Ne sais pas +N1,78852,Sortie #78852,https://biolit.fr/sorties/sortie-78852/,Alezrah Sarah,https://biolit.fr/wp-content/uploads/jet-form-builder/a5e17d493235fcf0cd1e91213d8f0bf6/2024/08/La-teste-de-Buch-dec-23.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5e17d493235fcf0cd1e91213d8f0bf6/2024/08/La-Teste-de-Buch2-dec-23.jpg,12/30/2023 0:00,15.000002,15.000004,44.6424140000000,-1.13502500000000,,La Teste de Buch,78854,Observation #78854,https://biolit.fr/observations/observation-78854/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a5e17d493235fcf0cd1e91213d8f0bf6/2024/08/La-teste-de-Buch-dec-23.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5e17d493235fcf0cd1e91213d8f0bf6/2024/08/La-Teste-de-Buch2-dec-23.jpg,,,Identifiable +N1,78857,Sortie #78857,https://biolit.fr/sorties/sortie-78857/,Alezrah Sarah,https://biolit.fr/wp-content/uploads/jet-form-builder/a5e17d493235fcf0cd1e91213d8f0bf6/2024/08/banc-dArguin-_-juillet-24.jpg,7/19/2024 0:00,12.0:34,12.0:34,44.5792880000000,-1.24591800000000,,Banc d'Arguin - bassin d'Arcachon,78859,Observation #78859,https://biolit.fr/observations/observation-78859/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a5e17d493235fcf0cd1e91213d8f0bf6/2024/08/banc-dArguin-_-juillet-24.jpg,,TRUE, +N1,78857,Sortie #78857,https://biolit.fr/sorties/sortie-78857/,Alezrah Sarah,https://biolit.fr/wp-content/uploads/jet-form-builder/a5e17d493235fcf0cd1e91213d8f0bf6/2024/08/banc-dArguin-_-juillet-24.jpg,7/19/2024 0:00,12.0:34,12.0:34,44.5792880000000,-1.24591800000000,,Banc d'Arguin - bassin d'Arcachon,78861,Observation #78861,https://biolit.fr/observations/observation-78861/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a5e17d493235fcf0cd1e91213d8f0bf6/2024/08/banc-dArguin-_-juillet-24.jpg,,TRUE,Identifiable +N1,78867,Sortie #78867,https://biolit.fr/sorties/sortie-78867/,Commune du Lavandou Lavandou,https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-6.jpg,7/29/2022 0:00,9.0000000,18.0000000,43.1511730000000,6.43288900000000,,plage de Cavalière,78869,Observation #78869,https://biolit.fr/observations/observation-78869/,Pancratium maritimum,Lis de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-6.jpg,,TRUE,Identifiable +N1,78867,Sortie #78867,https://biolit.fr/sorties/sortie-78867/,Commune du Lavandou Lavandou,https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-6.jpg,7/29/2022 0:00,9.0000000,18.0000000,43.1511730000000,6.43288900000000,,plage de Cavalière,78871,Observation #78871,https://biolit.fr/observations/observation-78871/,Pancratium maritimum,Lis de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-2.jpg,,TRUE,Identifiable +N1,78867,Sortie #78867,https://biolit.fr/sorties/sortie-78867/,Commune du Lavandou Lavandou,https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-6.jpg,7/29/2022 0:00,9.0000000,18.0000000,43.1511730000000,6.43288900000000,,plage de Cavalière,78873,Observation #78873,https://biolit.fr/observations/observation-78873/,Pancratium maritimum,Lis de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-6.jpg,,TRUE,Identifiable +N1,78867,Sortie #78867,https://biolit.fr/sorties/sortie-78867/,Commune du Lavandou Lavandou,https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-6.jpg,7/29/2022 0:00,9.0000000,18.0000000,43.1511730000000,6.43288900000000,,plage de Cavalière,78875,Observation #78875,https://biolit.fr/observations/observation-78875/,Pancratium maritimum,Lis de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/lys-6.jpg,,TRUE,Identifiable +N1,78878,Sortie #78878,https://biolit.fr/sorties/sortie-78878/,Commune du Lavandou Lavandou,https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/soude-2.jpg,7/29/2022 0:00,8.0:46,19.0:46,43.1404210000000,6.38131600000000,,plage de Saint-Clair,78880,Observation #78880,https://biolit.fr/observations/observation-78880/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/soude-2.jpg,,,non-identifiable +N1,78883,Sortie #78883,https://biolit.fr/sorties/sortie-78883/,Commune du Lavandou Lavandou,https://biolit.fr/wp-content/uploads/jet-form-builder/9b8ba615340ea07996780c933f2a791c/2024/08/silene-de-nice.jpg,7/27/2022 0:00,15.0000000,15.0:53,43.1281560000000,6.3636780000000,,plage de l'anglade,,,,,,,,,, +N1,78887,Sortie #78887,https://biolit.fr/sorties/sortie-78887/,Simon Franck,https://biolit.fr/wp-content/uploads/jet-form-builder/37361f63c46ac3644a4ae124bd74496a/2024/08/inbound3698871983044948021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/37361f63c46ac3644a4ae124bd74496a/2024/08/inbound292854278234254613.jpg,8/13/2023 0:00,10.0:13,10.0:16,43.1399630000000,6.381778000000,,Plage St clair,,,,,,,,,, +N1,78929,Sortie #78929,https://biolit.fr/sorties/sortie-78929/,CORREIA Pascal Dominique,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/72147182-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/72147192-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7214732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7214768-scaled.jpg,7/21/2024 0:00,9.0:45,10.0:45,43.0929960000000,6.44022000000000,,Bormes les Mimosas,78931,Observation #78931,https://biolit.fr/observations/observation-78931/,Parazoanthus axinellae,Anémone encroûtante jaune,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/72147192-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7214732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7214768-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/72147182-scaled.jpg,,TRUE,Identifiable +N1,78935,Sortie #78935,https://biolit.fr/sorties/sortie-78935/,CORREIA Pascal Dominique,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/721471401-01-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/721473801-01-scaled.jpeg,7/22/2024 0:00,9.0:15,10.0:15,42.9944960000000,6.41369800000000,,Port Cros,78937,Observation #78937,https://biolit.fr/observations/observation-78937/,Cratena peregrina,Hervia,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/721471401-01-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/721473801-01-scaled.jpeg,,TRUE,Identifiable +N1,78935,Sortie #78935,https://biolit.fr/sorties/sortie-78935/,CORREIA Pascal Dominique,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/721471401-01-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/721473801-01-scaled.jpeg,7/22/2024 0:00,9.0:15,10.0:15,42.9944960000000,6.41369800000000,,Port Cros,78939,Observation #78939,https://biolit.fr/observations/observation-78939/,Cratena peregrina,Hervia,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/721473801-01-scaled.jpeg,,TRUE,Identifiable +N1,78943,Sortie #78943,https://biolit.fr/sorties/sortie-78943/,CORREIA Pascal Dominique,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7214732-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/721473301-01-scaled.jpeg,7/21/2024 0:00,9.0:45,10.0:45,43.067902000000,6.40494300000000,,Bormes les Mimosas,78945,Observation #78945,https://biolit.fr/observations/observation-78945/,Parazoanthus axinellae,Anémone encroûtante jaune,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7214732-1-scaled.jpg,,TRUE,Identifiable +N1,78943,Sortie #78943,https://biolit.fr/sorties/sortie-78943/,CORREIA Pascal Dominique,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7214732-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/721473301-01-scaled.jpeg,7/21/2024 0:00,9.0:45,10.0:45,43.067902000000,6.40494300000000,,Bormes les Mimosas,78947,Observation #78947,https://biolit.fr/observations/observation-78947/,Parazoanthus axinellae,Anémone encroûtante jaune,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/721473301-01-scaled.jpeg,,TRUE,Identifiable +N1,78952,Sortie #78952,https://biolit.fr/sorties/sortie-78952/,CORREIA Pascal Dominique,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7214751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/721476301-01-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7214765-scaled.jpg,7/23/2024 0:00,9.0:15,10.0:15,42.987810000000,6.39667200000000,,Port Cros,78954,Observation #78954,https://biolit.fr/observations/observation-78954/,Flabellina affinis,Flabelline mauve,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7214751-scaled.jpg,,TRUE,Identifiable +N1,78952,Sortie #78952,https://biolit.fr/sorties/sortie-78952/,CORREIA Pascal Dominique,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7214751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/721476301-01-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7214765-scaled.jpg,7/23/2024 0:00,9.0:15,10.0:15,42.987810000000,6.39667200000000,,Port Cros,78956,Observation #78956,https://biolit.fr/observations/observation-78956/,Flabellina affinis,Flabelline mauve,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/721476301-01-scaled.jpeg,,TRUE,Identifiable +N1,78952,Sortie #78952,https://biolit.fr/sorties/sortie-78952/,CORREIA Pascal Dominique,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7214751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/721476301-01-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7214765-scaled.jpg,7/23/2024 0:00,9.0:15,10.0:15,42.987810000000,6.39667200000000,,Port Cros,78958,Observation #78958,https://biolit.fr/observations/observation-78958/,Flabellina affinis,Flabelline mauve,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7214765-scaled.jpg,,TRUE,Identifiable +N1,78963,Sortie #78963,https://biolit.fr/sorties/sortie-78963/,CORREIA Pascal Dominique,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7264833-01-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/72648342-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7264835-scaled.jpg,7/19/2024 0:00,10.0000000,11.0000000,42.9972580000000,6.25659600000000,,Ile de Porquerolles,78965,Observation #78965,https://biolit.fr/observations/observation-78965/,Astrospartus mediterraneus,Gorgonocéphale,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7264833-01-scaled.jpeg,,TRUE,Identifiable +N1,78963,Sortie #78963,https://biolit.fr/sorties/sortie-78963/,CORREIA Pascal Dominique,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7264833-01-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/72648342-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7264835-scaled.jpg,7/19/2024 0:00,10.0000000,11.0000000,42.9972580000000,6.25659600000000,,Ile de Porquerolles,78967,Observation #78967,https://biolit.fr/observations/observation-78967/,Astrospartus mediterraneus,Gorgonocéphale,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/72648342-scaled.jpg,,TRUE,Identifiable +N1,78963,Sortie #78963,https://biolit.fr/sorties/sortie-78963/,CORREIA Pascal Dominique,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7264833-01-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/72648342-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7264835-scaled.jpg,7/19/2024 0:00,10.0000000,11.0000000,42.9972580000000,6.25659600000000,,Ile de Porquerolles,78969,Observation #78969,https://biolit.fr/observations/observation-78969/,Astrospartus mediterraneus,Gorgonocéphale,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a4cc0e4bd8fd33354f4df9bd9764962/2024/08/7264835-scaled.jpg,,TRUE,Identifiable +N1,78974,Sortie #78974,https://biolit.fr/sorties/sortie-78974/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_094522-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_094559.jpg,6/27/2024 0:00,9.0:45,9.0:45,43.275411,3.35483,,Portiragnes Plage,78976,Observation #78976,https://biolit.fr/observations/observation-78976/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_094522-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_094559.jpg,,,Identifiable +N1,78974,Sortie #78974,https://biolit.fr/sorties/sortie-78974/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_094522-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_094559.jpg,6/27/2024 0:00,9.0:45,9.0:45,43.275411,3.35483,,Portiragnes Plage,78978,Observation #78978,https://biolit.fr/observations/observation-78978/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_094522-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_094559.jpg,,,Identifiable +N1,78982,Sortie #78982,https://biolit.fr/sorties/sortie-78982/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_094522-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_094559-1.jpg,6/27/2024 0:00,9.0:45,9.0:45,43.275411,3.35483,,Portiragnes Plage,,,,,,,,,, +N1,78985,Sortie #78985,https://biolit.fr/sorties/sortie-78985/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074103.jpg,6/27/2024 0:00,7.0:41,7.0:41,43.273326,3.344401,,Portiragnes Plage,,,,,,,,,, +N1,78990,Sortie #78990,https://biolit.fr/sorties/sortie-78990/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074247-scaled.jpg,6/27/2024 0:00,7.0:42,7.0:42,43.273326,3.344401,,Portiragnes Plage,78992,Observation #78992,https://biolit.fr/observations/observation-78992/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074247-scaled.jpg,,,non-identifiable +N1,78996,Sortie #78996,https://biolit.fr/sorties/sortie-78996/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074323-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074516.jpg,6/27/2024 0:00,7.0:43,7.0:43,43.275453,3.353151,,Portiragnes Plage,78998,Observation #78998,https://biolit.fr/observations/observation-78998/,Helichrysum italicum,Immortelle d'Italie,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074323-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074516.jpg,,,Identifiable +N1,79002,Sortie #79002,https://biolit.fr/sorties/sortie-79002/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074655.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074820-scaled.jpg,6/27/2024 0:00,7.0:46,7.0:48,43.273984,3.352936,,Portiragnes Plage,79004,Observation #79004,https://biolit.fr/observations/observation-79004/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074655.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074820-scaled.jpg,,,non-identifiable +N1,79008,Sortie #79008,https://biolit.fr/sorties/sortie-79008/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074854-scaled.jpg,6/27/2024 0:00,7.0:48,7.0:48,43.273868,3.352932,,Portiragnes Plage,79010,Observation #79010,https://biolit.fr/observations/observation-79010/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074854-scaled.jpg,,,Ne sais pas +N1,79014,Sortie #79014,https://biolit.fr/sorties/sortie-79014/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074907-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075014.jpg,6/27/2024 0:00,7.0:49,7.0:49,43.275275,3.353268,,Portiragnes Plage,79016,Observation #79016,https://biolit.fr/observations/observation-79016/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_074907-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075014.jpg,,,non-identifiable +N1,79019,Sortie #79019,https://biolit.fr/sorties/sortie-79019/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075100-scaled.jpg,6/27/2024 0:00,7.0:51,7.0:51,43.275124,3.352314,,Portiragnes Plage,79021,Observation #79021,https://biolit.fr/observations/observation-79021/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075100-scaled.jpg,,,non-identifiable +N1,79025,Sortie #79025,https://biolit.fr/sorties/sortie-79025/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075233.jpg,6/27/2024 0:00,7.0:51,7.0:52,43.275124,3.352314,,Portiragnes Plage,79027,Observation #79027,https://biolit.fr/observations/observation-79027/,Echinophora spinosa,Panais épineux,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075233.jpg,,,Identifiable +N1,79031,Sortie #79031,https://biolit.fr/sorties/sortie-79031/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075109-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075359.jpg,6/27/2024 0:00,7.0:53,7.0:53,43.275124,3.352314,,Portiragnes Plage,79033,Observation #79033,https://biolit.fr/observations/observation-79033/,Molva molva,Julienne,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075109-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075359.jpg,,,Identifiable +N1,79037,Sortie #79037,https://biolit.fr/sorties/sortie-79037/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075509.jpg,6/27/2024 0:00,7.0:54,7.0:55,43.275335,3.352445,,Portiragnes Plage,79039,Observation #79039,https://biolit.fr/observations/observation-79039/,Anthemis maritima,Anthémis maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075509.jpg,,,Identifiable +N1,79043,Sortie #79043,https://biolit.fr/sorties/sortie-79043/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075549-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075653.jpg,6/27/2024 0:00,7.0:55,7.0:56,43.27324,3.352916,,Portiragnes Plage,79045,Observation #79045,https://biolit.fr/observations/observation-79045/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075549-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075653.jpg,,,non-identifiable +N1,79049,Sortie #79049,https://biolit.fr/sorties/sortie-79049/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075703-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075816.jpg,6/27/2024 0:00,7.0:57,7.0:58,43.273205,3.352918,,Portiragnes Plage,79051,Observation #79051,https://biolit.fr/observations/observation-79051/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075703-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_075816.jpg,,,Identifiable +N1,79055,Sortie #79055,https://biolit.fr/sorties/sortie-79055/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_080511-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_080601.jpg,6/27/2024 0:00,8.000005,8.000006,43.271722,3.349177,,Portiragnes Plage,79057,Observation #79057,https://biolit.fr/observations/observation-79057/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_080511-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_080601.jpg,,,Identifiable +N1,79061,Sortie #79061,https://biolit.fr/sorties/sortie-79061/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_080723-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_080930.jpg,6/27/2024 0:00,8.000007,8.000009,43.269967,3.340094,,Portiragnes Plage,79063,Observation #79063,https://biolit.fr/observations/observation-79063/,Salicornia spp.,Salicorne,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_080723-scaled.jpg,,,Identifiable +N1,79068,Sortie #79068,https://biolit.fr/sorties/sortie-79068/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_081000-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_081052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_081125.jpg,6/27/2024 0:00,8.0000000,8.0:11,43.269918,3.340098,,Portiragnes Plage,79070,Observation #79070,https://biolit.fr/observations/observation-79070/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_081000-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_081052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_081125.jpg,",",Identifiable, +N1,79074,Sortie #79074,https://biolit.fr/sorties/sortie-79074/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_082028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_082300.jpg,6/27/2024 0:00,8.0000000,8.0:23,43.26987,3.340177,,Portiragnes Plage,79076,Observation #79076,https://biolit.fr/observations/observation-79076/,Himantopus himantopus,Echasse blanche,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_082028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_082300.jpg,,,Identifiable +N1,79088,Sortie #79088,https://biolit.fr/sorties/sortie-79088/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_081339-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_081823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_082014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_082633.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_082656-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_083215-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_083447-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_083800-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_083802-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090031-scaled.jpg,6/27/2024 0:00,8.0:13,9.0:23,43.269901,3.340138,,Portiragnes Plage,79090,Observation #79090,https://biolit.fr/observations/observation-79090/,Sternula albifrons,Sterne naine,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_081823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_082014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_082656-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_083215-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_083447-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_083800-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_083802-scaled.jpg,,FALSE,Identifiable +N1,79095,Sortie #79095,https://biolit.fr/sorties/sortie-79095/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_082816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_082820-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_082942.jpg,6/27/2024 0:00,8.0:28,8.0:29,43.27006,3.345665,,Portiragnes Plage,79097,Observation #79097,https://biolit.fr/observations/observation-79097/,Phragmites australis,Roseau,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_082816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_082820-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_082942.jpg,,,Identifiable +N1,79101,Sortie #79101,https://biolit.fr/sorties/sortie-79101/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_083015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_083115.jpg,6/27/2024 0:00,8.0000000,8.0:31,43.27001,3.345493,,Portiragnes Plage,79103,Observation #79103,https://biolit.fr/observations/observation-79103/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_083015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_083115.jpg,,,Identifiable +N1,79108,Sortie #79108,https://biolit.fr/sorties/sortie-79108/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_085332-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_085426.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_085553.jpg,6/27/2024 0:00,8.0:53,8.0:55,43.284738,3.377158,,Portiragnes Plage,79110,Observation #79110,https://biolit.fr/observations/observation-79110/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_085332-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_085426.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_085553.jpg,,,Ne sais pas +N1,79114,Sortie #79114,https://biolit.fr/sorties/sortie-79114/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_085640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_085721.jpg,6/27/2024 0:00,8.0:56,8.0:57,43.27211,3.3502,,Portiragnes Plage,79116,Observation #79116,https://biolit.fr/observations/observation-79116/,Medicago marina,Luzerne marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_085640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_085721.jpg,,,Identifiable +N1,79120,Sortie #79120,https://biolit.fr/sorties/sortie-79120/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090141-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090226.jpg,6/27/2024 0:00,9.000001,9.000002,43.272848,3.350858,,Portiragnes Plage,79122,Observation #79122,https://biolit.fr/observations/observation-79122/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090141-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090226.jpg,,,Identifiable +N1,79126,Sortie #79126,https://biolit.fr/sorties/sortie-79126/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090552.jpg,6/27/2024 0:00,9.000004,9.000005,43.273372,3.351668,,Portiragnes Plage,79128,Observation #79128,https://biolit.fr/observations/observation-79128/,Pancratium maritimum,Lis de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090552.jpg,,TRUE,Identifiable +N1,79132,Sortie #79132,https://biolit.fr/sorties/sortie-79132/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090727.jpg,6/27/2024 0:00,9.0:59,9.000007,43.27531,3.34881,,Portiragnes Plage,79134,Observation #79134,https://biolit.fr/observations/observation-79134/,Lagurus ovatus,Queue de lièvre,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090727.jpg,,TRUE,Identifiable +N1,79138,Sortie #79138,https://biolit.fr/sorties/sortie-79138/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090756-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090853.jpg,6/27/2024 0:00,9.000007,9.000008,43.273497,3.35187,,Portiragnes Plage,79140,Observation #79140,https://biolit.fr/observations/observation-79140/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090756-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090853.jpg,,,non-identifiable +N1,79144,Sortie #79144,https://biolit.fr/sorties/sortie-79144/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090916-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_091013.jpg,6/27/2024 0:00,9.000009,9.0000000,43.273517,3.351857,,Portiragnes Plage,79146,Observation #79146,https://biolit.fr/observations/observation-79146/,Artemisia caerulescens subsp. gallica,Armoise de France,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_090916-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_091013.jpg,,,Identifiable +N1,79150,Sortie #79150,https://biolit.fr/sorties/sortie-79150/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_091111-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_091410.jpg,6/27/2024 0:00,9.0:11,9.0:14,43.27351,3.34881,,Portiragnes Plage,79152,Observation #79152,https://biolit.fr/observations/observation-79152/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_091111-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_091410.jpg,,,Ne sais pas +N1,79156,Sortie #79156,https://biolit.fr/sorties/sortie-79156/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_091608-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_091711.jpg,6/27/2024 0:00,9.0:16,9.0:17,43.276246,3.352819,,Portiragnes Plage,79158,Observation #79158,https://biolit.fr/observations/observation-79158/,Malva arborea,Lavatère arborescente,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_091711.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_091608-scaled.jpg,,,Identifiable +N1,79162,Sortie #79162,https://biolit.fr/sorties/sortie-79162/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_091840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_091919.jpg,6/27/2024 0:00,9.0:18,9.0:19,43.275876,3.351999,,Portiragnes Plage,79164,Observation #79164,https://biolit.fr/observations/observation-79164/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_091840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_091919.jpg,,,non-identifiable +N1,79169,Sortie #79169,https://biolit.fr/sorties/sortie-79169/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_091929-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_092004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_092239.jpg,6/27/2024 0:00,9.0:19,0.0:22,43.273811,3.352066,,Portiragnes Plage,79171,Observation #79171,https://biolit.fr/observations/observation-79171/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_091929-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_092004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_092239.jpg,,,non-identifiable +N1,79175,Sortie #79175,https://biolit.fr/sorties/sortie-79175/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_092414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_092544.jpg,6/27/2024 0:00,9.0:24,9.0:25,43.273933,3.35256,,Portiragnes Plage,,,,,,,,,, +N1,79179,Sortie #79179,https://biolit.fr/sorties/sortie-79179/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_092906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_092944.jpg,6/27/2024 0:00,9.0:29,9.0:29,43.275567,3.352761,,Portiragnes Plage,79181,Observation #79181,https://biolit.fr/observations/observation-79181/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_092906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_092944.jpg,,,non-identifiable +N1,79185,Sortie #79185,https://biolit.fr/sorties/sortie-79185/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_093022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_093104.jpg,6/27/2024 0:00,9.0000000,9.0:31,43.274361,3.353882,,Portiragnes Plage,79187,Observation #79187,https://biolit.fr/observations/observation-79187/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_093022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_093104.jpg,,,non-identifiable +N1,79191,Sortie #79191,https://biolit.fr/sorties/sortie-79191/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_093229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_093318.jpg,6/27/2024 0:00,9.0:32,9.0:33,43.27531,3.34881,,Portiragnes Plage,79193,Observation #79193,https://biolit.fr/observations/observation-79193/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_093229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_093318.jpg,,,non-identifiable +N1,79197,Sortie #79197,https://biolit.fr/sorties/sortie-79197/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_093346-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_093633.jpg,6/27/2024 0:00,9.0:33,9.0:36,43.276377,3.352919,,Portiragnes Plage,79199,Observation #79199,https://biolit.fr/observations/observation-79199/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_093346-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_093633.jpg,,,non-identifiable +N1,79203,Sortie #79203,https://biolit.fr/sorties/sortie-79203/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_093740-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_094059.jpg,6/27/2024 0:00,9.0:37,9.0000000,43.274841,3.354803,,Portiragnes Plage,79205,Observation #79205,https://biolit.fr/observations/observation-79205/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_093740-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_094059.jpg,,,non-identifiable +N1,79208,Sortie #79208,https://biolit.fr/sorties/sortie-79208/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_213245.jpg,6/27/2024 0:00,21.0:32,21.0:32,43.274841,3.354803,,Portiragnes Plage,,,,,,,,,, +N1,79213,Sortie #79213,https://biolit.fr/sorties/sortie-79213/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240627_213926.jpg,6/27/2024 0:00,21.0:39,21.0:39,43.274841,3.354803,,Portiragnes Plage,,,,,,,,,, +N1,79218,Sortie #79218,https://biolit.fr/sorties/sortie-79218/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240629_175028.jpg,6/29/2024 0:00,17.0000000,17.0000000,43.274841,3.354803,,Portiragnes Plage,,,,,,,,,, +N1,79223,Sortie #79223,https://biolit.fr/sorties/sortie-79223/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240702_213708.jpg,07/02/2024,21.0:37,21.0:37,43.274841,3.354803,,Portiragnes Plage,,,,,,,,,, +N1,79228,Sortie #79228,https://biolit.fr/sorties/sortie-79228/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240706_085531.jpg,07/06/2024,8.0:55,8.0:55,43.274841,3.354803,,Portiragnes Plage,,,,,,,,,, +N1,79241,Sortie #79241,https://biolit.fr/sorties/sortie-79241/,Sarrasin Jérôme,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240706_083320-scaled.jpg,07/06/2024,8.0:33,8.0:33,43.283063,3.379657,,Portiragnes Plage,79243,Observation #79243,https://biolit.fr/observations/observation-79243/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/jet-form-builder/f83f58b45c0c8a15a8000b56b91b51ba/2024/08/P_20240706_083320-scaled.jpg,,TRUE,Ne sais pas +N1,79250,Sortie #79250,https://biolit.fr/sorties/sortie-79250/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/B312BA65-5241-4E99-80EA-2246E91F81DF-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/650B561B-C423-4740-A049-E32A09D05D26-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/DEEEF4FD-22B8-43D8-B0EB-9AFCE399E021-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/681D5A92-D4A5-42AD-AED1-BE2CA4452421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/DDB58E38-7982-4734-8DDB-D1D49545D4EE-scaled.jpeg,06/09/2024,0.0:22,14.0:26,43.2702090000000,6.5856390000000,,Port-Grimaud petite plage sud,79252,Observation #79252,https://biolit.fr/observations/observation-79252/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/650B561B-C423-4740-A049-E32A09D05D26-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/DEEEF4FD-22B8-43D8-B0EB-9AFCE399E021-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/681D5A92-D4A5-42AD-AED1-BE2CA4452421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/DDB58E38-7982-4734-8DDB-D1D49545D4EE-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/B312BA65-5241-4E99-80EA-2246E91F81DF-scaled.jpeg,,TRUE,Identifiable +N1,79250,Sortie #79250,https://biolit.fr/sorties/sortie-79250/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/B312BA65-5241-4E99-80EA-2246E91F81DF-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/650B561B-C423-4740-A049-E32A09D05D26-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/DEEEF4FD-22B8-43D8-B0EB-9AFCE399E021-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/681D5A92-D4A5-42AD-AED1-BE2CA4452421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/DDB58E38-7982-4734-8DDB-D1D49545D4EE-scaled.jpeg,06/09/2024,0.0:22,14.0:26,43.2702090000000,6.5856390000000,,Port-Grimaud petite plage sud,79254,Observation #79254,https://biolit.fr/observations/observation-79254/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/DEEEF4FD-22B8-43D8-B0EB-9AFCE399E021-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/681D5A92-D4A5-42AD-AED1-BE2CA4452421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/DDB58E38-7982-4734-8DDB-D1D49545D4EE-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/650B561B-C423-4740-A049-E32A09D05D26-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/B312BA65-5241-4E99-80EA-2246E91F81DF-scaled.jpeg,,TRUE,Identifiable +N1,79262,Sortie #79262,https://biolit.fr/sorties/sortie-79262/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/E7D9E95D-9A7E-45B6-B519-35D76A82A6BD-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/1C8A26D4-E052-450F-9C5E-651BDEE27C64-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/F6E2A10A-FA31-4658-8D45-AD9646A30521-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/01B2072F-21C0-4EEF-8F18-428A94A9F37D-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/F1E7414D-72D3-42CE-85BA-BA029031FAF0-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/8234CF29-C0CC-4BD5-80AD-EE1FD69A972D-scaled.jpeg,06/09/2024,14.0:25,14.0:35,43.270286000000,6.58552100000000,,Port-Grimaud petite plage sud,79264,Observation #79264,https://biolit.fr/observations/observation-79264/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/E7D9E95D-9A7E-45B6-B519-35D76A82A6BD-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/1C8A26D4-E052-450F-9C5E-651BDEE27C64-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/F6E2A10A-FA31-4658-8D45-AD9646A30521-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/01B2072F-21C0-4EEF-8F18-428A94A9F37D-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/F1E7414D-72D3-42CE-85BA-BA029031FAF0-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/8234CF29-C0CC-4BD5-80AD-EE1FD69A972D-scaled.jpeg,,TRUE,Identifiable +N1,79269,Sortie #79269,https://biolit.fr/sorties/sortie-79269/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/0012F358-2C7F-4591-A6BF-9C186050CA7B-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/831DFB6E-33B4-4BB2-A198-ECEC78617305-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/A277A250-FF1B-4716-8164-7A90DC973EC4-scaled.jpeg,06/09/2024,14.0:25,14.0:35,43.2701690000000,6.58552100000000,,Port-Grimaud petite plage sud,79271,Observation #79271,https://biolit.fr/observations/observation-79271/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/0012F358-2C7F-4591-A6BF-9C186050CA7B-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/831DFB6E-33B4-4BB2-A198-ECEC78617305-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/A277A250-FF1B-4716-8164-7A90DC973EC4-scaled.jpeg,,TRUE,Identifiable +N1,79277,Sortie #79277,https://biolit.fr/sorties/sortie-79277/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/4D113499-1D52-4D9B-A43C-7126E86EC3A1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/E7AA902D-7CC0-489D-8B64-A28FDCFABF22-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/0C4789A7-C4A9-45E0-A9F6-EE31CDC1FCEC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/AAD8ABB8-2D2C-470D-A3B3-6F0DA677545B-scaled.jpeg,06/09/2024,14.0:25,14.0:35,43.270262000000,6.58546700000000,,Port-Grimaud petite plage sud,,,,,,,,,, +N1,79282,Sortie #79282,https://biolit.fr/sorties/sortie-79282/,QUERARD LAURENCE,https://biolit.fr/wp-content/uploads/jet-form-builder/cd6caa666804281842dc104f2fc9d41f/2024/08/IMG_4313-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cd6caa666804281842dc104f2fc9d41f/2024/08/IMG_4312-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cd6caa666804281842dc104f2fc9d41f/2024/08/IMG_4311-scaled.jpeg,6/20/2024 0:00,9.0000000,15.0000000,48.6971110000000,-1.87969900000000,Al-Lark,Plage du Verger / CANCALE,79284,Observation #79284,https://biolit.fr/observations/observation-79284/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cd6caa666804281842dc104f2fc9d41f/2024/08/IMG_4313-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cd6caa666804281842dc104f2fc9d41f/2024/08/IMG_4312-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cd6caa666804281842dc104f2fc9d41f/2024/08/IMG_4311-scaled.jpeg,,,Ne sais pas +N1,79282,Sortie #79282,https://biolit.fr/sorties/sortie-79282/,QUERARD LAURENCE,https://biolit.fr/wp-content/uploads/jet-form-builder/cd6caa666804281842dc104f2fc9d41f/2024/08/IMG_4313-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cd6caa666804281842dc104f2fc9d41f/2024/08/IMG_4312-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cd6caa666804281842dc104f2fc9d41f/2024/08/IMG_4311-scaled.jpeg,6/20/2024 0:00,9.0000000,15.0000000,48.6971110000000,-1.87969900000000,Al-Lark,Plage du Verger / CANCALE,79286,Observation #79286,https://biolit.fr/observations/observation-79286/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cd6caa666804281842dc104f2fc9d41f/2024/08/IMG_4313-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cd6caa666804281842dc104f2fc9d41f/2024/08/IMG_4312-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cd6caa666804281842dc104f2fc9d41f/2024/08/IMG_4311-scaled.jpeg,,,Ne sais pas +N1,79303,Sortie #79303,https://biolit.fr/sorties/sortie-79303/,Strullu Danielle,https://biolit.fr/wp-content/uploads/jet-form-builder/55aa00a6bf3cc9d90a1fb054f444e8e5/2024/08/IMG_2757.jpeg,08/11/2024,16.0:46,17.0:15,47.9639620000000,-4.4269320000000,,,79305,Observation #79305,https://biolit.fr/observations/observation-79305/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/55aa00a6bf3cc9d90a1fb054f444e8e5/2024/08/IMG_2757.jpeg,,,Identifiable +N1,79316,Sortie #79316,https://biolit.fr/sorties/sortie-79316/,Céline,https://biolit.fr/wp-content/uploads/jet-form-builder/a124436f212872e36bd7cc12bfe0fd03/2024/08/image-scaled.jpg,8/16/2024 0:00,12.0:14,12.0:17,47.550806000000,-2.86949200000000,,Pointe de sont nicolas,79318,Observation #79318,https://biolit.fr/observations/observation-79318/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a124436f212872e36bd7cc12bfe0fd03/2024/08/image-scaled.jpg,,TRUE,Ne sais pas +N1,79362,Sortie #79362,https://biolit.fr/sorties/sortie-79362/,MERAND Violaine,https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240819_182812.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240819_182755.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_120639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_120318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_120244-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_120234-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_120125-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_115959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_115612-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_115531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_115526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_115003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_114901-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_114825-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_114744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_114229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_114150-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_113705-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_113507-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbce856a51611bebe22545179fc69af9/2024/08/IMG_20240815_113152-scaled.jpg,8/15/2024 0:00,12.0000000,13.0000000,573377,5214877,,La Bernerie-en-Retz,,,,,,,,,, +N1,79365,Sortie #79365,https://biolit.fr/sorties/sortie-79365/,Dufour Valerie,https://biolit.fr/wp-content/uploads/jet-form-builder/fb7abd36fb343b5eb691e055c1409ef2/2024/08/17241465721388195060696447707018-scaled.jpg,8/20/2024 0:00,11.0:35,12.0:35,47.9759030,-4.4474210,Communauté de communes du Haut Pays Bigouden,Prat meur,,,,,,,,,, +N1,79374,Sortie #79374,https://biolit.fr/sorties/sortie-79374/,Pascual Cassandre,https://biolit.fr/wp-content/uploads/jet-form-builder/167be8f110e1e633e6865c292c7739b5/2024/08/P8152880-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/167be8f110e1e633e6865c292c7739b5/2024/08/P8152879-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/167be8f110e1e633e6865c292c7739b5/2024/08/P8152878-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/167be8f110e1e633e6865c292c7739b5/2024/08/P8152877-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/167be8f110e1e633e6865c292c7739b5/2024/08/P8152876-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/167be8f110e1e633e6865c292c7739b5/2024/08/P8152869-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/167be8f110e1e633e6865c292c7739b5/2024/08/P8152864-scaled.jpg,8/15/2023 0:00,11.0000000,11.0:25,43.1106880000000,6.36713900000000,,,,,,,,,,,, +N1,79382,Sortie #79382,https://biolit.fr/sorties/sortie-79382/,Anne,https://biolit.fr/wp-content/uploads/jet-form-builder/11f0c1625bbddcdf87d48aaece0067b0/2024/08/Biolit-Pornichet-20240726-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11f0c1625bbddcdf87d48aaece0067b0/2024/08/Biolit-Pornichet-2-20240726-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11f0c1625bbddcdf87d48aaece0067b0/2024/08/Biolit-Pornichet-3-20240726-1-scaled.jpg,7/26/2024 0:00,14.0000000,17.0000000,47.2515270000000,-2.33363200000000,,"Plage de Bonne Source, Pornichet",79384,Observation #79384,https://biolit.fr/observations/observation-79384/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/11f0c1625bbddcdf87d48aaece0067b0/2024/08/Biolit-Pornichet-3-20240726-1-scaled.jpg,,,Ne sais pas +N1,79382,Sortie #79382,https://biolit.fr/sorties/sortie-79382/,Anne,https://biolit.fr/wp-content/uploads/jet-form-builder/11f0c1625bbddcdf87d48aaece0067b0/2024/08/Biolit-Pornichet-20240726-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11f0c1625bbddcdf87d48aaece0067b0/2024/08/Biolit-Pornichet-2-20240726-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11f0c1625bbddcdf87d48aaece0067b0/2024/08/Biolit-Pornichet-3-20240726-1-scaled.jpg,7/26/2024 0:00,14.0000000,17.0000000,47.2515270000000,-2.33363200000000,,"Plage de Bonne Source, Pornichet",79386,Observation #79386,https://biolit.fr/observations/observation-79386/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/11f0c1625bbddcdf87d48aaece0067b0/2024/08/Biolit-Pornichet-20240726-1-scaled.jpg,,,Ne sais pas +N1,79382,Sortie #79382,https://biolit.fr/sorties/sortie-79382/,Anne,https://biolit.fr/wp-content/uploads/jet-form-builder/11f0c1625bbddcdf87d48aaece0067b0/2024/08/Biolit-Pornichet-20240726-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11f0c1625bbddcdf87d48aaece0067b0/2024/08/Biolit-Pornichet-2-20240726-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11f0c1625bbddcdf87d48aaece0067b0/2024/08/Biolit-Pornichet-3-20240726-1-scaled.jpg,7/26/2024 0:00,14.0000000,17.0000000,47.2515270000000,-2.33363200000000,,"Plage de Bonne Source, Pornichet",79388,Observation #79388,https://biolit.fr/observations/observation-79388/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/11f0c1625bbddcdf87d48aaece0067b0/2024/08/Biolit-Pornichet-2-20240726-1-scaled.jpg,,,Ne sais pas +N1,79391,Sortie #79391,https://biolit.fr/sorties/sortie-79391/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/P7317516-scaled.jpg,7/31/2024 0:00,9.0000000,9.0:47,43.0993690000000,6.02291100000000,,la Garonne le Pradet,79393,Observation #79393,https://biolit.fr/observations/observation-79393/,Olindias muelleri,Olindias,,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/P7317516-scaled.jpg,,TRUE,Ne sais pas +N1,79401,Sortie #79401,https://biolit.fr/sorties/sortie-79401/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/4D35EDD8-947D-4C8D-9D71-66A9127A4383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/7C4ECC11-5384-4959-8347-5CCCFC306B8D.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/9630E916-A41A-4AAB-BF71-8AC93A80FE90.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/DA1F78F6-24EA-4EF4-928F-135CB73EFA71-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/5D58751A-2EE8-4F05-85CA-2A482982ED88-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/7FEC8E44-DD92-46FF-88BB-60A72594C56D-scaled.jpeg,5/23/2023 0:00,16.0:15,16.0:45,43.2704200000000,6.58544500000000,,Port-Grimaud petite plage sud,79403,Observation #79403,https://biolit.fr/observations/observation-79403/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/4D35EDD8-947D-4C8D-9D71-66A9127A4383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/7C4ECC11-5384-4959-8347-5CCCFC306B8D.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/9630E916-A41A-4AAB-BF71-8AC93A80FE90.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/DA1F78F6-24EA-4EF4-928F-135CB73EFA71-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/5D58751A-2EE8-4F05-85CA-2A482982ED88-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/08/7FEC8E44-DD92-46FF-88BB-60A72594C56D-scaled.jpeg,,TRUE,Identifiable +N1,79408,Sortie #79408,https://biolit.fr/sorties/sortie-79408/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/08/IMG_20240730_134046172_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/08/IMG_20240730_134053743_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/08/IMG_20240730_141200405_HDR-rotated.jpg,7/30/2024 0:00,12.0000000,12.0000000,43.1472950000000,5.70938400000000,,Plage d'Alon,79410,Observation #79410,https://biolit.fr/observations/observation-79410/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/08/IMG_20240730_134046172_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/08/IMG_20240730_134053743_HDR.jpg,,TRUE,Identifiable +N1,79408,Sortie #79408,https://biolit.fr/sorties/sortie-79408/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/08/IMG_20240730_134046172_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/08/IMG_20240730_134053743_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/08/IMG_20240730_141200405_HDR-rotated.jpg,7/30/2024 0:00,12.0000000,12.0000000,43.1472950000000,5.70938400000000,,Plage d'Alon,79412,Observation #79412,https://biolit.fr/observations/observation-79412/,Cladostephus spongiosus,Cladostéphus spongieux,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/08/IMG_20240730_141200405_HDR-rotated.jpg,,,Identifiable +N1,79423,Sortie #79423,https://biolit.fr/sorties/sortie-79423/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/47CFC55D-1868-4013-A7FA-661B4DF32985.jpeg,7/31/2024 0:00,9.0:55,9.0:59,43.6536350000000,6.47995900000000,,La Garonne le Pradet 8,,,,,,,,,, +N1,79426,Sortie #79426,https://biolit.fr/sorties/sortie-79426/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/6C8FE438-D6F1-4819-9C35-9C6160F72B95.jpeg,6/28/2024 0:00,9.0000000,9.0:42,43.0901790000000,6.02565800000000,,La Garonne le Pradet 83,79428,Observation #79428,https://biolit.fr/observations/observation-79428/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/6C8FE438-D6F1-4819-9C35-9C6160F72B95.jpeg,,TRUE,Identifiable +N1,79431,Sortie #79431,https://biolit.fr/sorties/sortie-79431/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/83C00EDA-D986-4588-9B4E-9AA5CB605522.jpeg,07/01/2024,9.0:52,9.0:53,43.1208460000000,5.9326170000,,Digue du fort St Louis Toulon 83,79433,Observation #79433,https://biolit.fr/observations/observation-79433/,Parablennius pilicornis,Blennie pilicorne,,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/83C00EDA-D986-4588-9B4E-9AA5CB605522.jpeg,,TRUE,Identifiable +N1,79436,Sortie #79436,https://biolit.fr/sorties/sortie-79436/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/24295EA0-EBF8-485C-8AF2-18DE4B70E48D.jpeg,07/07/2024,10.0:34,10.0:39,43.1189350000000,5.92987100000000,,Anse Méjean ( Mourillon) Toulon 83,79438,Observation #79438,https://biolit.fr/observations/observation-79438/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/24295EA0-EBF8-485C-8AF2-18DE4B70E48D.jpeg,,,Ne sais pas +N1,79441,Sortie #79441,https://biolit.fr/sorties/sortie-79441/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/D525C977-0E32-4E67-B53E-5E87EFA6211F.jpeg,7/14/2024 0:00,9.0:49,9.0:55,43.1128260000000,5.93536400000000,,Anse Mistral (Mourillon) Toulon 83,79443,Observation #79443,https://biolit.fr/observations/observation-79443/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/D525C977-0E32-4E67-B53E-5E87EFA6211F.jpeg,,,Identifiable +N1,79446,Sortie #79446,https://biolit.fr/sorties/sortie-79446/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/45C6DE06-F456-4709-906D-FA20A6F4D842.jpeg,7/27/2024 0:00,9.0:54,9.0:59,43.1064740000000,5.94326000000000,,Anse Mistral (Mourillon) 83,79448,Observation #79448,https://biolit.fr/observations/observation-79448/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/45C6DE06-F456-4709-906D-FA20A6F4D842.jpeg,,,Identifiable +N1,79451,Sortie #79451,https://biolit.fr/sorties/sortie-79451/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/4A25E6EA-00E5-435D-8C1D-BB70F04B7606.jpeg,8/22/2024 0:00,9.0000000,10.0000000,43.1052320000000,5.97261400000000,,Anse Méjean Toulon83,79453,Observation #79453,https://biolit.fr/observations/observation-79453/,Cratena peregrina,Hervia,,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/4A25E6EA-00E5-435D-8C1D-BB70F04B7606.jpeg,,TRUE,Identifiable +N1,79456,Sortie #79456,https://biolit.fr/sorties/sortie-79456/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/0FAAEF4B-D6BF-48B9-BA18-25891EDD50B2.jpeg,8/21/2024 0:00,9.0:43,9.0000000,43.1069330000000,5.94523400000000,,Anse la Source (Mourillon) Toulon 83,,,,,,,,,, +N1,79459,Sortie #79459,https://biolit.fr/sorties/sortie-79459/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/5E4EB2C1-B15A-40E2-954F-5BA690C8B59F.jpeg,8/26/2024 0:00,10.000009,10.0:15,43.106418000000,5.94240200000000,,Anse Mistral ( Mourillon) Toulon 83,,,,,,,,,, +N1,79462,Sortie #79462,https://biolit.fr/sorties/sortie-79462/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/998422B2-DC88-49CA-9BEB-5DC9E280EDBA.jpeg,8/25/2024 0:00,10.0000000,10.0:32,43.1064650000000,5.94268100000000,,Anse Mistral ( Mourillon) Toulon 83,,,,,,,,,, +N1,79465,Sortie #79465,https://biolit.fr/sorties/sortie-79465/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/45EBACED-B547-4F9B-A3C4-C8C1BD7482A6.jpeg,8/23/2024 0:00,10.0:26,10.0:37,43.1065270000000,5.94255200000000,,Anse Mistral ( Mourillon) Toulon 83,,,,,,,,,, +N1,79468,Sortie #79468,https://biolit.fr/sorties/sortie-79468/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/4AFCDE41-7DB5-4298-8073-7988E1C1CEC5.jpeg,8/27/2024 0:00,10.0:47,10.0:47,44.3902490000000,6.141357000000,,Entre la Garonne et les Oursinieres le Pradet 83,,,,,,,,,, +N1,79482,Sortie #79482,https://biolit.fr/sorties/sortie-79482/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/08/IMG_5677-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/08/IMG_5652-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/08/IMG_5649-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/08/IMG_5645-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/08/IMG_5644-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/08/IMG_5646-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/08/IMG_5650-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/08/IMG_5651-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/08/IMG_5653-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/08/IMG_5654-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2024/08/IMG_5643-scaled.jpeg,8/19/2024 0:00,13.0000000,15.0000000,48.8199340000000,-3.53485100000000,,Plage de Landrellec Pleumeur Bodou,,,,,,,,,, +N1,79497,Sortie #79497,https://biolit.fr/sorties/sortie-79497/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/A92D3134-C885-4E2D-81D3-74B13F66640D.jpeg,8/21/2024 0:00,9.0:43,9.0:56,43.1069970000000,5.94448300000000,,Anse la Source ( Mourillon) Toulon 83,,,,,,,,,, +N1,79500,Sortie #79500,https://biolit.fr/sorties/sortie-79500/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/1F5A96B0-26BD-47D4-A8F0-9E06323A8312.jpeg,8/26/2024 0:00,10.000009,10.0:12,43.106418000000,5.94268100000000,,Anse Mistral,79502,Observation #79502,https://biolit.fr/observations/observation-79502/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/1F5A96B0-26BD-47D4-A8F0-9E06323A8312.jpeg,,TRUE,Identifiable +N1,79507,Sortie #79507,https://biolit.fr/sorties/sortie-79507/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/08/DE59C986-7B10-41FA-A469-253083639426.jpeg,8/21/2024 0:00,9.0:43,9.0:55,43.1069820000000,5.94517000000000,,Anse la Source (Mourillon) Toulon 83,,,,,,,,,, +N1,79514,Sortie #79514,https://biolit.fr/sorties/sortie-79514/,DEUX MICKAEL,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0399-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0398-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0397-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0396-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0395-scaled.jpeg,09/01/2024,17.0:35,17.0:44,47.2671540000000,-2.45454400000000,,,,,,,,,,,, +N1,79521,Sortie #79521,https://biolit.fr/sorties/sortie-79521/,DEUX MICKAEL,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0399-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0398-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0397-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0396-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0395-1-scaled.jpeg,09/01/2024,17.0:47,17.0000000,47.2665470000000,-2.45431400000000,,La Govelle,79523,Observation #79523,https://biolit.fr/observations/observation-79523/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0397-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0399-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0398-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0396-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0395-1-scaled.jpeg,,,Ne sais pas +N1,79526,Sortie #79526,https://biolit.fr/sorties/sortie-79526/,DEUX MICKAEL,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0398-2-scaled.jpeg,09/01/2024,17.0:53,17.0:53,47.2670970000000,-2.45459500000000,,La Govelle,79528,Observation #79528,https://biolit.fr/observations/observation-79528/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0398-2-scaled.jpeg,,TRUE,Ne sais pas +N1,79531,Sortie #79531,https://biolit.fr/sorties/sortie-79531/,DEUX MICKAEL,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0395-2-scaled.jpeg,09/01/2024,17.0:56,17.0:56,47.2670970000000,-2.45459500000000,,La Govelle,79533,Observation #79533,https://biolit.fr/observations/observation-79533/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0395-2-scaled.jpeg,,,Ne sais pas +N1,79536,Sortie #79536,https://biolit.fr/sorties/sortie-79536/,DEUX MICKAEL,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0397-2-scaled.jpeg,09/01/2024,17.0:58,17.0:58,47.2670970000000,-2.45459500000000,,La Govelle,79538,Observation #79538,https://biolit.fr/observations/observation-79538/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0397-2-scaled.jpeg,,,Ne sais pas +N1,79536,Sortie #79536,https://biolit.fr/sorties/sortie-79536/,DEUX MICKAEL,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0397-2-scaled.jpeg,09/01/2024,17.0:58,17.0:58,47.2670970000000,-2.45459500000000,,La Govelle,79540,Observation #79540,https://biolit.fr/observations/observation-79540/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2024/09/IMG_0397-2-scaled.jpeg,,,Ne sais pas +N1,79557,Sortie #79557,https://biolit.fr/sorties/sortie-79557/,Royal Emeraude Hotel,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005016-scaled.jpg,09/02/2024,14.0000000,15.0000000,48.6350630,-2.0557350,Planète Mer,,,,,,,,,,, +N1,79562,Sortie #79562,https://biolit.fr/sorties/sortie-79562/,Royal Emeraude Hotel,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005031-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005030-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005029-1-scaled.jpg,09/02/2024,14.0000000,15.0000000,48.6350630,-2.0557350,Planète Mer (antenne Dinard),Plage de Saint Enogat,,,,,,,,,, +N1,79565,Sortie #79565,https://biolit.fr/sorties/sortie-79565/,Royal Emeraude Hotel,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005031-2-scaled.jpg,09/02/2024,14.0000000,15.0000000,48.6350630,-2.0557350,Planète Mer (antenne Dinard),Saint Enogat,,,,,,,,,, +N1,79580,Sortie #79580,https://biolit.fr/sorties/sortie-79580/,Royal Emeraude Hotel,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902133440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134535-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902141809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902141853-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902143047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902143330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902144145-scaled.jpg,09/02/2024,14.0000000,15.0000000,48.6403330000000,-2.07271600000000,Planète Mer (antenne Dinard),SAINT ENOGAT,79597,Observation #79597,https://biolit.fr/observations/observation-79597/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902133440-scaled.jpg,,TRUE,Identifiable +N1,79580,Sortie #79580,https://biolit.fr/sorties/sortie-79580/,Royal Emeraude Hotel,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902133440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134535-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902141809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902141853-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902143047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902143330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902144145-scaled.jpg,09/02/2024,14.0000000,15.0000000,48.6403330000000,-2.07271600000000,Planète Mer (antenne Dinard),SAINT ENOGAT,79601,Observation #79601,https://biolit.fr/observations/observation-79601/,Symsagittifera roscoffensis,Ver plat de Roscoff,,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134226-scaled.jpg,,TRUE,Identifiable +N1,79580,Sortie #79580,https://biolit.fr/sorties/sortie-79580/,Royal Emeraude Hotel,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902133440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134535-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902141809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902141853-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902143047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902143330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902144145-scaled.jpg,09/02/2024,14.0000000,15.0000000,48.6403330000000,-2.07271600000000,Planète Mer (antenne Dinard),SAINT ENOGAT,79607,Observation #79607,https://biolit.fr/observations/observation-79607/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902141809-scaled.jpg,,TRUE,Identifiable +N1,79580,Sortie #79580,https://biolit.fr/sorties/sortie-79580/,Royal Emeraude Hotel,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902133440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134535-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902141809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902141853-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902143047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902143330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902144145-scaled.jpg,09/02/2024,14.0000000,15.0000000,48.6403330000000,-2.07271600000000,Planète Mer (antenne Dinard),SAINT ENOGAT,79609,Observation #79609,https://biolit.fr/observations/observation-79609/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142039-scaled.jpg,,TRUE,Identifiable +N1,79580,Sortie #79580,https://biolit.fr/sorties/sortie-79580/,Royal Emeraude Hotel,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902133440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134535-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902141809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902141853-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902143047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902143330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902144145-scaled.jpg,09/02/2024,14.0000000,15.0000000,48.6403330000000,-2.07271600000000,Planète Mer (antenne Dinard),SAINT ENOGAT,79615,Observation #79615,https://biolit.fr/observations/observation-79615/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902144145-scaled.jpg,,TRUE,Ne sais pas +N1,79580,Sortie #79580,https://biolit.fr/sorties/sortie-79580/,Royal Emeraude Hotel,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902133440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134226-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134535-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902134543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902141809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902141853-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902143047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902143330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902144145-scaled.jpg,09/02/2024,14.0000000,15.0000000,48.6403330000000,-2.07271600000000,Planète Mer (antenne Dinard),SAINT ENOGAT,79618,Observation #79618,https://biolit.fr/observations/observation-79618/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902143047-scaled.jpg,,,Ne sais pas +N1,79595,Sortie #79595,https://biolit.fr/sorties/sortie-79595/,Royal Emeraude Hotel,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005030-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005029-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005026-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005028-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005024-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005023-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005022-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005019-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005020-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005021-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005018-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005017-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005016-1-scaled.jpg,09/02/2024,14.0000000,15.0000000,48.6391870000000,-2.07271300000000,Planète Mer (antenne Dinard),Saint Enogat,,,,,,,,,, +N1,79612,Sortie #79612,https://biolit.fr/sorties/sortie-79612/,Royal Emeraude Hotel,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005031-3-scaled.jpg,09/02/2024,14.0000000,15.0000000,48.6337690000000,-2.09414000000000,Planète Mer (antenne Dinard),Saint Enogat,79614,Observation #79614,https://biolit.fr/observations/observation-79614/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005031-3-scaled.jpg,,TRUE,Identifiable +N1,79624,Sortie #79624,https://biolit.fr/sorties/sortie-79624/,Royal Emeraude Hotel,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005029-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005030-3-scaled.jpg,09/02/2024,14.0000000,15.0000000,48.6401950000000,-2.07418400000000,Planète Mer (antenne Dinard),Saint Enogat,79626,Observation #79626,https://biolit.fr/observations/observation-79626/,Botrylloides spp. (leachii violaceus diegensis),Botrylles,,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005029-3-scaled.jpg,,TRUE,Ne sais pas +N1,79631,Sortie #79631,https://biolit.fr/sorties/sortie-79631/,Royal Emeraude Hotel,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142450-1-scaled.jpg,09/02/2024,14.0000000,15.0000000,48.6401610000000,-2.07253900000000,Planète Mer (antenne Dinard),SAINT ENOGAT,,,,,,,,,, +N1,79634,Sortie #79634,https://biolit.fr/sorties/sortie-79634/,Royal Emeraude Hotel,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005030-4-scaled.jpg,09/02/2024,14.0000000,15.0000000,48.6392780000000,-2.07272500000000,Planète Mer (antenne Dinard),Saint Enogat,79636,Observation #79636,https://biolit.fr/observations/observation-79636/,Lithophyllum incrustans,Algue feuille de pierre encroûtante,,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/1000005030-4-scaled.jpg,,TRUE,Identifiable +N1,79639,Sortie #79639,https://biolit.fr/sorties/sortie-79639/,Royal Emeraude Hotel,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142450-2-scaled.jpg,09/02/2024,14.0000000,15.0000000,48.6400940000000,-2.07244300000000,Planète Mer (antenne Dinard),SAINT ENOGAT,79641,Observation #79641,https://biolit.fr/observations/observation-79641/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/4ea57f233e435f3aa8de6acb34096af5/2024/09/IMG20240902142450-2-scaled.jpg,,TRUE,Identifiable +N1,79644,Sortie #79644,https://biolit.fr/sorties/sortie-79644/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/20240821_145224-scaled.jpg,8/21/2024 0:00,14.0000000,15.0000000,48.6943190000000,-1.89472300000000,Observe la nature,Plage de du Guesclin Saint Coulomb,,,,,,,,,, +N1,79647,Sortie #79647,https://biolit.fr/sorties/sortie-79647/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/20240821_151232-scaled.jpg,8/21/2024 0:00,14.0000000,15.0000000,48.6927250000000,-1.89561400000000,Observe la nature,Plage de du Guesclin Saint Coulomb,,,,,,,,,, +N1,79651,Sortie #79651,https://biolit.fr/sorties/sortie-79651/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/20240821_152045-REC-COMP-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/20240821_155215-REC-COMP-scaled.jpg,8/21/2024 0:00,14.0000000,15.0000000,48.6951040000000,-1.89544200000000,Observe la nature,Plage de du Guesclin Saint Coulomb,,,,,,,,,, +N1,79654,Sortie #79654,https://biolit.fr/sorties/sortie-79654/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/20240821_152045-REC-COMP-1-scaled.jpg,8/21/2024 0:00,14.0000000,16.0000000,48.6956710000000,-1.89552800000000,Observe la nature,Plage de du Guesclin Saint Coulomb,,,,,,,,,, +N1,79682,Sortie #79682,https://biolit.fr/sorties/sortie-79682/,Ligue de l'enseignement,https://biolit.fr/wp-content/uploads/jet-form-builder/53c37a35e4213448a6b3fbbb6ceddb5d/2024/09/APRIL-rotated.jpg,09/02/2024,8.0000000,9.0000000,47.2834540000000,-2.39484800000000,,La Baule,,,,,,,,,, +N1,79712,Sortie #79712,https://biolit.fr/sorties/sortie-79712/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/20240821_155215-REC-COMP-1-scaled.jpg,8/21/2024 0:00,14.0000000,16.0000000,48.6955010000000,-1.89587100000000,Observe la nature,Plage de du Guesclin Saint Coulomb,,,,,,,,,, +N1,79715,Sortie #79715,https://biolit.fr/sorties/sortie-79715/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P8250001-REC-COMP.jpg,8/23/2024 0:00,14.0000000,16.0000000,48.6939220000000,-1.89488400000000,Observe la nature,Plage de du Guesclin Saint Coulomb,,,,,,,,,, +N1,79719,Sortie #79719,https://biolit.fr/sorties/sortie-79719/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P8250002-REC-COMP.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P8250001-REC-COMP-1.jpg,8/25/2024 0:00,15.0000000,17.0000000,48.6962370000000,-1.89574200000000,Observe la nature,Plage de du Guesclin Saint Coulomb,79721,Observation #79721,https://biolit.fr/observations/observation-79721/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P8250001-REC-COMP-1.jpg,,TRUE,Identifiable +N1,79728,Sortie #79728,https://biolit.fr/sorties/sortie-79728/,Lebreton Betty,https://biolit.fr/wp-content/uploads/jet-form-builder/fbdbb43e679b55b54b95de2c48cd1c7e/2024/09/20240811_211252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fbdbb43e679b55b54b95de2c48cd1c7e/2024/09/20240811_211235-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fbdbb43e679b55b54b95de2c48cd1c7e/2024/09/20240811_120836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fbdbb43e679b55b54b95de2c48cd1c7e/2024/09/20240811_120832-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fbdbb43e679b55b54b95de2c48cd1c7e/2024/09/20240811_120824-scaled.jpg,08/11/2024,12.0000000,12.0000000,49.0609550000000,-1.57470000000000,,Montmartin sur mer,,,,,,,,,, +N1,79733,Sortie #79733,https://biolit.fr/sorties/sortie-79733/,Lebreton Betty,https://biolit.fr/wp-content/uploads/jet-form-builder/fbdbb43e679b55b54b95de2c48cd1c7e/2024/09/20240816_185752-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fbdbb43e679b55b54b95de2c48cd1c7e/2024/09/20240816_185840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fbdbb43e679b55b54b95de2c48cd1c7e/2024/09/20240813_174413-scaled.jpg,8/18/2024 0:00,18.0000000,19.0000000,49.0425720000000,-1.60062100000000,,Agon coutainville,,,,,,,,,, +N1,79739,Sortie #79739,https://biolit.fr/sorties/sortie-79739/,MEBARKI CELIA,https://biolit.fr/wp-content/uploads/jet-form-builder/11713ebc20259aa245dee014de84111b/2024/09/Monodonte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11713ebc20259aa245dee014de84111b/2024/09/Espece-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11713ebc20259aa245dee014de84111b/2024/09/Espece-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11713ebc20259aa245dee014de84111b/2024/09/Lance-de-quadrat.jpg,09/05/2024,14.0000000,15.0000000,48.6395360000000,-2.07219600000000,Planète Mer (antenne Dinard),Plage de saint ENOGAT,79741,Observation #79741,https://biolit.fr/observations/observation-79741/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/11713ebc20259aa245dee014de84111b/2024/09/Espece-2.jpg,,TRUE,Identifiable +N1,79739,Sortie #79739,https://biolit.fr/sorties/sortie-79739/,MEBARKI CELIA,https://biolit.fr/wp-content/uploads/jet-form-builder/11713ebc20259aa245dee014de84111b/2024/09/Monodonte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11713ebc20259aa245dee014de84111b/2024/09/Espece-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11713ebc20259aa245dee014de84111b/2024/09/Espece-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11713ebc20259aa245dee014de84111b/2024/09/Lance-de-quadrat.jpg,09/05/2024,14.0000000,15.0000000,48.6395360000000,-2.07219600000000,Planète Mer (antenne Dinard),Plage de saint ENOGAT,79743,Observation #79743,https://biolit.fr/observations/observation-79743/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/11713ebc20259aa245dee014de84111b/2024/09/Monodonte.jpg,,TRUE,Identifiable +N1,79739,Sortie #79739,https://biolit.fr/sorties/sortie-79739/,MEBARKI CELIA,https://biolit.fr/wp-content/uploads/jet-form-builder/11713ebc20259aa245dee014de84111b/2024/09/Monodonte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11713ebc20259aa245dee014de84111b/2024/09/Espece-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11713ebc20259aa245dee014de84111b/2024/09/Espece-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11713ebc20259aa245dee014de84111b/2024/09/Lance-de-quadrat.jpg,09/05/2024,14.0000000,15.0000000,48.6395360000000,-2.07219600000000,Planète Mer (antenne Dinard),Plage de saint ENOGAT,79745,Observation #79745,https://biolit.fr/observations/observation-79745/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/11713ebc20259aa245dee014de84111b/2024/09/Espece-3.jpg,,TRUE,Identifiable +N1,79749,Sortie #79749,https://biolit.fr/sorties/sortie-79749/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/458739248_553052040484156_8024497434131756055_n.jpg,8/27/2024 0:00,10.0000000,12.0000000,42.7330670000000,3.03739400000000,CPIE Littoral d'Occitanie,Sainte-Marie-la-Mer,,,,,,,,,, +N1,79756,Sortie #79756,https://biolit.fr/sorties/sortie-79756/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/09/IMG_20240905_165415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/09/IMG_20240905_165434-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/09/IMG_20240905_170207-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/09/IMG_20240905_170204-scaled.jpg,09/05/2024,17.0000000,17.0000000,48.6363990000000,-2.0818560000000,Planète Mer (antenne Dinard),port blanc,79758,Observation #79758,https://biolit.fr/observations/observation-79758/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/09/IMG_20240905_165415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/09/IMG_20240905_165434-scaled.jpg,,,Ne sais pas +N1,79756,Sortie #79756,https://biolit.fr/sorties/sortie-79756/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/09/IMG_20240905_165415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/09/IMG_20240905_165434-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/09/IMG_20240905_170207-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/09/IMG_20240905_170204-scaled.jpg,09/05/2024,17.0000000,17.0000000,48.6363990000000,-2.0818560000000,Planète Mer (antenne Dinard),port blanc,79760,Observation #79760,https://biolit.fr/observations/observation-79760/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/09/IMG_20240905_170204-scaled.jpg,,TRUE,Identifiable +N1,79756,Sortie #79756,https://biolit.fr/sorties/sortie-79756/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/09/IMG_20240905_165415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/09/IMG_20240905_165434-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/09/IMG_20240905_170207-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/09/IMG_20240905_170204-scaled.jpg,09/05/2024,17.0000000,17.0000000,48.6363990000000,-2.0818560000000,Planète Mer (antenne Dinard),port blanc,79762,Observation #79762,https://biolit.fr/observations/observation-79762/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/09/IMG_20240905_170207-scaled.jpg,,TRUE,Identifiable +N1,79766,Sortie #79766,https://biolit.fr/sorties/sortie-79766/,Gali83,https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/09/00DCB6A0-59B6-4986-A840-F2C277C8E267.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7717fe6d900a3cf01a9fa123c3334e39/2024/09/5A70F63C-0F07-48E8-A472-AAC29BD1FF3F.jpeg,09/06/2024,11.000005,0.0:22,43.1063380000000,5.94270200000000,,Anse Mistral ( Mourillon) Toulon 83,,,,,,,,,, +N1,79784,Sortie #79784,https://biolit.fr/sorties/sortie-79784/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111510088_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111629310_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111636717_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_113814339_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114137200_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114815012_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135805-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140107-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140938-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141323-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141610-scaled.jpg,8/14/2024 0:00,11.0000000,12.0000000,43.2577090000000,5.37573800000000,,Plage de l'Huveaune,79786,Observation #79786,https://biolit.fr/observations/observation-79786/,Teredo navalis,Taret commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111510088_HDR-rotated.jpg,,,Identifiable +N1,79784,Sortie #79784,https://biolit.fr/sorties/sortie-79784/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111510088_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111629310_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111636717_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_113814339_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114137200_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114815012_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135805-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140107-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140938-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141323-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141610-scaled.jpg,8/14/2024 0:00,11.0000000,12.0000000,43.2577090000000,5.37573800000000,,Plage de l'Huveaune,79788,Observation #79788,https://biolit.fr/observations/observation-79788/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111629310_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111636717_HDR.jpg,,,Identifiable +N1,79784,Sortie #79784,https://biolit.fr/sorties/sortie-79784/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111510088_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111629310_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111636717_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_113814339_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114137200_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114815012_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135805-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140107-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140938-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141323-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141610-scaled.jpg,8/14/2024 0:00,11.0000000,12.0000000,43.2577090000000,5.37573800000000,,Plage de l'Huveaune,79790,Observation #79790,https://biolit.fr/observations/observation-79790/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_113814339_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135638-scaled.jpg,,TRUE,Identifiable +N1,79784,Sortie #79784,https://biolit.fr/sorties/sortie-79784/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111510088_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111629310_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111636717_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_113814339_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114137200_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114815012_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135805-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140107-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140938-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141323-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141610-scaled.jpg,8/14/2024 0:00,11.0000000,12.0000000,43.2577090000000,5.37573800000000,,Plage de l'Huveaune,79792,Observation #79792,https://biolit.fr/observations/observation-79792/,Cardita calyculata,Cardite petit calice,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114137200_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114815012_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135805-scaled.jpg,,,Identifiable +N1,79784,Sortie #79784,https://biolit.fr/sorties/sortie-79784/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111510088_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111629310_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111636717_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_113814339_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114137200_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114815012_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135805-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140107-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140938-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141323-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141610-scaled.jpg,8/14/2024 0:00,11.0000000,12.0000000,43.2577090000000,5.37573800000000,,Plage de l'Huveaune,79794,Observation #79794,https://biolit.fr/observations/observation-79794/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114815012_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140107-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140156-scaled.jpg,,,Ne sais pas +N1,79784,Sortie #79784,https://biolit.fr/sorties/sortie-79784/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111510088_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111629310_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111636717_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_113814339_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114137200_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114815012_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135805-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140107-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140938-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141323-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141610-scaled.jpg,8/14/2024 0:00,11.0000000,12.0000000,43.2577090000000,5.37573800000000,,Plage de l'Huveaune,79796,Observation #79796,https://biolit.fr/observations/observation-79796/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140938-scaled.jpg,,,Ne sais pas +N1,79784,Sortie #79784,https://biolit.fr/sorties/sortie-79784/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111510088_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111629310_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111636717_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_113814339_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114137200_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114815012_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135805-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140107-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140938-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141323-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141610-scaled.jpg,8/14/2024 0:00,11.0000000,12.0000000,43.2577090000000,5.37573800000000,,Plage de l'Huveaune,79798,Observation #79798,https://biolit.fr/observations/observation-79798/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141323-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141344-scaled.jpg,,,Ne sais pas +N1,79784,Sortie #79784,https://biolit.fr/sorties/sortie-79784/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111510088_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111629310_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_111636717_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_113814339_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114137200_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240814_114815012_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_135805-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140107-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_140938-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141323-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141610-scaled.jpg,8/14/2024 0:00,11.0000000,12.0000000,43.2577090000000,5.37573800000000,,Plage de l'Huveaune,79800,Observation #79800,https://biolit.fr/observations/observation-79800/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141610-scaled.jpg,,,Ne sais pas +N1,79852,Sortie #79852,https://biolit.fr/sorties/sortie-79852/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/458739248_553052040484156_8024497434131756055_n-1.jpg,8/27/2024 0:00,10.0000000,12.0000000,42.7319750000000,3.03749100000000,LABELBLEU,Sainte-Marie-la-Mer,,,,,,,,,, +N1,79871,Sortie #79871,https://biolit.fr/sorties/sortie-79871/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_103751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_103823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104803-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104928-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104942-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141223-scaled.jpg,09/01/2024,10.0000000,12.0000000,43.2640840000000,5.36985000000000,,Plage du Grand Roucas Blanc - Prado Nord,79873,Observation #79873,https://biolit.fr/observations/observation-79873/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_103751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104928-scaled.jpg,,TRUE,Identifiable +N1,79871,Sortie #79871,https://biolit.fr/sorties/sortie-79871/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_103751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_103823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104803-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104928-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104942-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141223-scaled.jpg,09/01/2024,10.0000000,12.0000000,43.2640840000000,5.36985000000000,,Plage du Grand Roucas Blanc - Prado Nord,79875,Observation #79875,https://biolit.fr/observations/observation-79875/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104647-scaled.jpg,,,Identifiable +N1,79871,Sortie #79871,https://biolit.fr/sorties/sortie-79871/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_103751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_103823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104803-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104928-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104942-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141223-scaled.jpg,09/01/2024,10.0000000,12.0000000,43.2640840000000,5.36985000000000,,Plage du Grand Roucas Blanc - Prado Nord,79877,Observation #79877,https://biolit.fr/observations/observation-79877/,Caulerpa cylindracea,Caulerpe cylindracée,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104803-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104817-scaled.jpg,,TRUE,Identifiable +N1,79871,Sortie #79871,https://biolit.fr/sorties/sortie-79871/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_103751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_103823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104803-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104928-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104942-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141223-scaled.jpg,09/01/2024,10.0000000,12.0000000,43.2640840000000,5.36985000000000,,Plage du Grand Roucas Blanc - Prado Nord,79879,Observation #79879,https://biolit.fr/observations/observation-79879/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104942-scaled.jpg,,TRUE,Identifiable +N1,79871,Sortie #79871,https://biolit.fr/sorties/sortie-79871/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_103751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_103823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104803-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104928-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104942-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141223-scaled.jpg,09/01/2024,10.0000000,12.0000000,43.2640840000000,5.36985000000000,,Plage du Grand Roucas Blanc - Prado Nord,79881,Observation #79881,https://biolit.fr/observations/observation-79881/,Loripes orbiculatus,Loripes orbiculaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141223-scaled.jpg,,,Identifiable +N1,79871,Sortie #79871,https://biolit.fr/sorties/sortie-79871/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_103751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_103823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104803-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104928-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104942-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240904_141223-scaled.jpg,09/01/2024,10.0000000,12.0000000,43.2640840000000,5.36985000000000,,Plage du Grand Roucas Blanc - Prado Nord,79883,Observation #79883,https://biolit.fr/observations/observation-79883/,Rhyssoplax olivacea,Chiton vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_103823-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240901_104228-scaled.jpg,,,Identifiable +N1,80003,Sortie #80003,https://biolit.fr/sorties/sortie-80003/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6714080000000,8.88312200000000,,Corse du sud Capu Laurosu,80005,Observation #80005,https://biolit.fr/observations/observation-80005/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-scaled.jpeg,,,Ne sais pas +N1,80003,Sortie #80003,https://biolit.fr/sorties/sortie-80003/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6714080000000,8.88312200000000,,Corse du sud Capu Laurosu,80007,Observation #80007,https://biolit.fr/observations/observation-80007/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-scaled.jpeg,,,Ne sais pas +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80031,Observation #80031,https://biolit.fr/observations/observation-80031/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80033,Observation #80033,https://biolit.fr/observations/observation-80033/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80035,Observation #80035,https://biolit.fr/observations/observation-80035/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80037,Observation #80037,https://biolit.fr/observations/observation-80037/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80039,Observation #80039,https://biolit.fr/observations/observation-80039/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80041,Observation #80041,https://biolit.fr/observations/observation-80041/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80043,Observation #80043,https://biolit.fr/observations/observation-80043/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80045,Observation #80045,https://biolit.fr/observations/observation-80045/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80047,Observation #80047,https://biolit.fr/observations/observation-80047/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80049,Observation #80049,https://biolit.fr/observations/observation-80049/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80051,Observation #80051,https://biolit.fr/observations/observation-80051/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80053,Observation #80053,https://biolit.fr/observations/observation-80053/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80055,Observation #80055,https://biolit.fr/observations/observation-80055/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80057,Observation #80057,https://biolit.fr/observations/observation-80057/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80059,Observation #80059,https://biolit.fr/observations/observation-80059/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80061,Observation #80061,https://biolit.fr/observations/observation-80061/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg,,TRUE, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80063,Observation #80063,https://biolit.fr/observations/observation-80063/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80065,Observation #80065,https://biolit.fr/observations/observation-80065/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80067,Observation #80067,https://biolit.fr/observations/observation-80067/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80069,Observation #80069,https://biolit.fr/observations/observation-80069/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg,,, +N1,80029,Sortie #80029,https://biolit.fr/sorties/sortie-80029/,carodub,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0553-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0529-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0527-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0525-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0524-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0516-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0513-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0512-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0511-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0510-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0509-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,8/18/2024 0:00,8.0000000,10.0000000,41.6712570000000,8.88416300000000,,Capo Laurosu,80071,Observation #80071,https://biolit.fr/observations/observation-80071/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3c3ab964cd4915270ae523effabf2f10/2024/09/IMG_0508-1-scaled.jpeg,,, +N1,80074,Sortie #80074,https://biolit.fr/sorties/sortie-80074/,Le B Myr,https://biolit.fr/wp-content/uploads/jet-form-builder/b1e5fc59839d749d07b0c750dec60b4f/2024/09/1000009435.jpg,9/14/2024 0:00,15.0000000,15.0:35,48.6845340000000,-1.97369700000000,,"Plage du val, Saint Malo",,,,,,,,,, +N1,80106,Sortie #80106,https://biolit.fr/sorties/sortie-80106/,HEYRIES Aurélie,https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3025-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3027-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3031-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3033-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3037.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3038.jpeg,9/17/2024 0:00,10.0000000,12.0000000,43.4935180000000,4.12296300000000,,Plage de l’Espiguette,,,,,,,,,, +N1,80114,Sortie #80114,https://biolit.fr/sorties/sortie-80114/,HEYRIES Aurélie,https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3025-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3027-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3031-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3033-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3037-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3038-1.jpeg,9/17/2024 0:00,10.0000000,12.0000000,43.4969930000000,4.12090300000000,,Espiguette,80116,Observation #80116,https://biolit.fr/observations/observation-80116/,Larus michahellis,Goéland leucophée,,https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3025-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3027-1-scaled.jpeg,,TRUE,Ne sais pas +N1,80123,Sortie #80123,https://biolit.fr/sorties/sortie-80123/,HEYRIES Aurélie,https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3051-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3048-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3047-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3049.jpeg,9/17/2024 0:00,14.0000000,16.0000000,43.5269560000000,4.1391630000000,,Grau du roi,80125,Observation #80125,https://biolit.fr/observations/observation-80125/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3051-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3048-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3047-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7ada23311d0170ac8b7ab5c24a2839da/2024/09/IMG_3049.jpeg,,TRUE,Ne sais pas +N1,80426,Sortie #80426,https://biolit.fr/sorties/sortie-80426/,Vidon Julie,https://biolit.fr/wp-content/uploads/jet-form-builder/446301764fefa32fea202f489ee4809d/2024/09/IMG_0037-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/446301764fefa32fea202f489ee4809d/2024/09/IMG_0034-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/446301764fefa32fea202f489ee4809d/2024/09/IMG_0032-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/446301764fefa32fea202f489ee4809d/2024/09/image-scaled.jpg,09/12/2024,8.0:15,9.0:15,48.6495650000000,-2.03032500000000,,Plage du bon secours st malo,,,,,,,,,, +N1,80433,Sortie #80433,https://biolit.fr/sorties/sortie-80433/,Vidon Julie,https://biolit.fr/wp-content/uploads/jet-form-builder/446301764fefa32fea202f489ee4809d/2024/09/IMG_0032-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/446301764fefa32fea202f489ee4809d/2024/09/IMG_0034-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/446301764fefa32fea202f489ee4809d/2024/09/IMG_0037-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/446301764fefa32fea202f489ee4809d/2024/09/image-1-scaled.jpg,09/12/2024,8.0:15,9.0:15,48.6491390000000,-2.03036800000000,,Plage bon secours st malo,,,,,,,,,, +N1,80472,Sortie #80472,https://biolit.fr/sorties/sortie-80472/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180059-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180066-scaled.jpg,9/18/2024 0:00,14.0000000,16.0000000,48.6968850000000,-1.89722300000000,Observe la nature,Plage Du Guesclin,80474,Observation #80474,https://biolit.fr/observations/observation-80474/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180018-scaled.jpg,,TRUE,Identifiable +N1,80485,Sortie #80485,https://biolit.fr/sorties/sortie-80485/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180020-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180032-1-scaled.jpg,9/18/2024 0:00,14.0000000,16.0000000,48.6971240000000,-1.89693300000000,Observe la nature,Plage Du Guesclin,80487,Observation #80487,https://biolit.fr/observations/observation-80487/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180020-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180022-scaled.jpg,,TRUE,Identifiable +N1,80485,Sortie #80485,https://biolit.fr/sorties/sortie-80485/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180020-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180032-1-scaled.jpg,9/18/2024 0:00,14.0000000,16.0000000,48.6971240000000,-1.89693300000000,Observe la nature,Plage Du Guesclin,80489,Observation #80489,https://biolit.fr/observations/observation-80489/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180032-1-scaled.jpg,,TRUE,Ne sais pas +N1,80506,Sortie #80506,https://biolit.fr/sorties/sortie-80506/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180034-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180035-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180036-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180040-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180041-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180042-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180044-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180055-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180056-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180059-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180060-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180063-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180066-1-scaled.jpg,9/18/2024 0:00,14.0000000,16.0000000,48.6971380000000,-1.89725500000000,Observe la nature,Plage Du Guesclin,80508,Observation #80508,https://biolit.fr/observations/observation-80508/,Steromphala cineraria,Gibbule cendrée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180034-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180035-1-scaled.jpg,,TRUE,Identifiable +N1,80506,Sortie #80506,https://biolit.fr/sorties/sortie-80506/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180034-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180035-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180036-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180040-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180041-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180042-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180044-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180055-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180056-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180059-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180060-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180063-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180066-1-scaled.jpg,9/18/2024 0:00,14.0000000,16.0000000,48.6971380000000,-1.89725500000000,Observe la nature,Plage Du Guesclin,80510,Observation #80510,https://biolit.fr/observations/observation-80510/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180036-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180037-scaled.jpg,,TRUE,Identifiable +N1,80506,Sortie #80506,https://biolit.fr/sorties/sortie-80506/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180034-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180035-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180036-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180040-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180041-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180042-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180044-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180055-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180056-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180059-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180060-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180063-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180066-1-scaled.jpg,9/18/2024 0:00,14.0000000,16.0000000,48.6971380000000,-1.89725500000000,Observe la nature,Plage Du Guesclin,80512,Observation #80512,https://biolit.fr/observations/observation-80512/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180040-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180041-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180042-1-scaled.jpg,,TRUE,Ne sais pas +N1,80506,Sortie #80506,https://biolit.fr/sorties/sortie-80506/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180034-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180035-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180036-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180040-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180041-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180042-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180044-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180055-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180056-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180059-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180060-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180063-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180066-1-scaled.jpg,9/18/2024 0:00,14.0000000,16.0000000,48.6971380000000,-1.89725500000000,Observe la nature,Plage Du Guesclin,80514,Observation #80514,https://biolit.fr/observations/observation-80514/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180044-1-scaled.jpg,,TRUE, +N1,80506,Sortie #80506,https://biolit.fr/sorties/sortie-80506/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180034-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180035-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180036-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180040-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180041-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180042-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180044-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180055-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180056-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180059-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180060-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180063-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180066-1-scaled.jpg,9/18/2024 0:00,14.0000000,16.0000000,48.6971380000000,-1.89725500000000,Observe la nature,Plage Du Guesclin,80517,Observation #80517,https://biolit.fr/observations/observation-80517/,Electra pilosa,Ecorce pileuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180055-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180056-1-scaled.jpg,,TRUE,Ne sais pas +N1,80506,Sortie #80506,https://biolit.fr/sorties/sortie-80506/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180034-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180035-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180036-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180040-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180041-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180042-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180044-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180055-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180056-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180059-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180060-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180063-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180066-1-scaled.jpg,9/18/2024 0:00,14.0000000,16.0000000,48.6971380000000,-1.89725500000000,Observe la nature,Plage Du Guesclin,80519,Observation #80519,https://biolit.fr/observations/observation-80519/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180059-1-scaled.jpg,,TRUE,Identifiable +N1,80506,Sortie #80506,https://biolit.fr/sorties/sortie-80506/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180034-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180035-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180036-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180040-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180041-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180042-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180044-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180055-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180056-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180059-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180060-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180063-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180066-1-scaled.jpg,9/18/2024 0:00,14.0000000,16.0000000,48.6971380000000,-1.89725500000000,Observe la nature,Plage Du Guesclin,80523,Observation #80523,https://biolit.fr/observations/observation-80523/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180063-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180064-scaled.jpg,,,Ne sais pas +N1,80506,Sortie #80506,https://biolit.fr/sorties/sortie-80506/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180034-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180035-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180036-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180040-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180041-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180042-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180044-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180055-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180056-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180059-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180060-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180063-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180066-1-scaled.jpg,9/18/2024 0:00,14.0000000,16.0000000,48.6971380000000,-1.89725500000000,Observe la nature,Plage Du Guesclin,80525,Observation #80525,https://biolit.fr/observations/observation-80525/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180060-1-scaled.jpg,,TRUE,Identifiable +N1,80506,Sortie #80506,https://biolit.fr/sorties/sortie-80506/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180034-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180035-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180036-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180040-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180041-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180042-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180044-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180055-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180056-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180059-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180060-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180063-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180066-1-scaled.jpg,9/18/2024 0:00,14.0000000,16.0000000,48.6971380000000,-1.89725500000000,Observe la nature,Plage Du Guesclin,80527,Observation #80527,https://biolit.fr/observations/observation-80527/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9180066-1-scaled.jpg,,,Ne sais pas +N1,80567,Sortie #80567,https://biolit.fr/sorties/sortie-80567/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190008-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190032-scaled.jpg,9/19/2024 0:00,15.0000000,16.0000000,48.6968830000000,-1.8969980000000,Observe la nature,Plage Du Guesclin saint coulomb,80569,Observation #80569,https://biolit.fr/observations/observation-80569/,Pagurus prideaux,Gonfaron,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190008-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190018-scaled.jpg,,TRUE,Ne sais pas +N1,80567,Sortie #80567,https://biolit.fr/sorties/sortie-80567/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190008-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190032-scaled.jpg,9/19/2024 0:00,15.0000000,16.0000000,48.6968830000000,-1.8969980000000,Observe la nature,Plage Du Guesclin saint coulomb,80571,Observation #80571,https://biolit.fr/observations/observation-80571/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190021-scaled.jpg,,,Ne sais pas +N1,80567,Sortie #80567,https://biolit.fr/sorties/sortie-80567/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190008-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190032-scaled.jpg,9/19/2024 0:00,15.0000000,16.0000000,48.6968830000000,-1.8969980000000,Observe la nature,Plage Du Guesclin saint coulomb,80573,Observation #80573,https://biolit.fr/observations/observation-80573/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190027-scaled.jpg,,,Ne sais pas +N1,80567,Sortie #80567,https://biolit.fr/sorties/sortie-80567/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190008-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190032-scaled.jpg,9/19/2024 0:00,15.0000000,16.0000000,48.6968830000000,-1.8969980000000,Observe la nature,Plage Du Guesclin saint coulomb,80575,Observation #80575,https://biolit.fr/observations/observation-80575/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2024/09/P9190032-scaled.jpg,,TRUE,Identifiable +N1,80651,Sortie #80651,https://biolit.fr/sorties/sortie-80651/,MichelB,https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/C4E5B354-42C5-40B2-8E51-0B34EA38EE9C-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/5A508085-955A-471D-A73C-1C2D1AF64F0E-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/8DFB1027-B614-4B1C-BE4E-FCAD427AD0DB-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/66403253-AE98-4031-8110-8F348E05F103-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/0E1B008B-1EA5-45D7-A7A3-FB161A77D3C8-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/128F5635-1267-4946-81DD-5C723DE9038C-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/0EE96B79-7C41-48CA-85CC-F90B0607EA3B-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/71DACC5E-8010-453F-B9FC-D7F038BFE536-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/EC599DE9-A5EC-41D1-B95A-846F397BB552-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/3300A3EA-527F-4977-A4A7-F136C635177D-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/70B44358-ED1A-4FB7-B092-B6884FD1730B-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/F849F861-2A3F-4113-9CAD-535493FF086F-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/B3F0D7B2-2CA0-400B-9212-14D92DC47D86-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/071863DF-734A-41DA-82B5-634EFDF14EC0-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/CECB6C47-E75B-4E4D-B103-9EDB6D40D050-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/51B3E2A5-7F65-41CB-8C6B-4C79DD30000B-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/6D374415-EAB3-4587-9F3F-791D57152F60-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/0EF01B48-9B31-45F9-A6B7-74B22215DB57-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7aee3f74f0b8e0e8b299b36fb4b59cbe/2024/09/11171473-B0F7-4A3B-8C3D-4B5CC3DA5E4A-scaled.jpeg,8/21/2024 0:00,18.0:45,20.0:45,49.8657770000000,0.608368000000000,,Veulette sur mer,,,,,,,,,, +N1,80655,Sortie #80655,https://biolit.fr/sorties/sortie-80655/,BARELIER SARAH,https://biolit.fr/wp-content/uploads/jet-form-builder/4a906aed122a4f3d01e7b5d15e6d1ac2/2024/09/IMG_3440-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/4a906aed122a4f3d01e7b5d15e6d1ac2/2024/09/IMG_3439-scaled.jpeg,9/21/2024 0:00,9.0000000,10.0000000,43.214886,5.342952,Planète Mer,Anse de la maronnaise,80657,Observation #80657,https://biolit.fr/observations/observation-80657/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/4a906aed122a4f3d01e7b5d15e6d1ac2/2024/09/IMG_3440-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/4a906aed122a4f3d01e7b5d15e6d1ac2/2024/09/IMG_3439-scaled.jpeg,,FALSE,Ne sais pas +N1,80655,Sortie #80655,https://biolit.fr/sorties/sortie-80655/,BARELIER SARAH,https://biolit.fr/wp-content/uploads/jet-form-builder/4a906aed122a4f3d01e7b5d15e6d1ac2/2024/09/IMG_3440-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/4a906aed122a4f3d01e7b5d15e6d1ac2/2024/09/IMG_3439-scaled.jpeg,9/21/2024 0:00,9.0000000,10.0000000,43.214886,5.342952,Planète Mer,Anse de la maronnaise,89085,Observation #89085,https://biolit.fr/observations/observation-89085/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/4a906aed122a4f3d01e7b5d15e6d1ac2/2024/09/IMG_3439-scaled.jpeg,,FALSE,Ne sais pas +N1,80750,Sortie #80750,https://biolit.fr/sorties/sortie-80750/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240914_192312-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240914_192326-scaled.jpg,9/14/2024 0:00,19.0000000,19.0000000,43.1291300000000,5.78067600000000,,Sanary-sur-Mer,80752,Observation #80752,https://biolit.fr/observations/observation-80752/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240914_192312-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240914_192326-scaled.jpg,,TRUE,Identifiable +N1,80905,Sortie #80905,https://biolit.fr/sorties/sortie-80905/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100846289_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100915500_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102656584_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102708727-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_103045147_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_104329501_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105243743_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105456295_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105506611-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105703758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105716792-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110312581_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110811810_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111643452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111703732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_112003174_HDR-rotated.jpg,9/22/2024 0:00,10.0000000,12.0000000,43.2587710000000,5.3756300000000,,Plage de l'Huveaune,80907,Observation #80907,https://biolit.fr/observations/observation-80907/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0636-scaled.jpg,,TRUE,Identifiable +N1,80905,Sortie #80905,https://biolit.fr/sorties/sortie-80905/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100846289_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100915500_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102656584_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102708727-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_103045147_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_104329501_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105243743_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105456295_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105506611-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105703758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105716792-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110312581_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110811810_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111643452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111703732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_112003174_HDR-rotated.jpg,9/22/2024 0:00,10.0000000,12.0000000,43.2587710000000,5.3756300000000,,Plage de l'Huveaune,80909,Observation #80909,https://biolit.fr/observations/observation-80909/,Corbicula fluminea,Corbicule asiatique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115411-scaled.jpg,,,Identifiable +N1,80905,Sortie #80905,https://biolit.fr/sorties/sortie-80905/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100846289_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100915500_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102656584_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102708727-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_103045147_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_104329501_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105243743_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105456295_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105506611-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105703758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105716792-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110312581_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110811810_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111643452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111703732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_112003174_HDR-rotated.jpg,9/22/2024 0:00,10.0000000,12.0000000,43.2587710000000,5.3756300000000,,Plage de l'Huveaune,80911,Observation #80911,https://biolit.fr/observations/observation-80911/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100846289_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100915500_HDR-scaled.jpg,,,Identifiable +N1,80905,Sortie #80905,https://biolit.fr/sorties/sortie-80905/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100846289_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100915500_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102656584_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102708727-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_103045147_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_104329501_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105243743_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105456295_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105506611-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105703758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105716792-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110312581_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110811810_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111643452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111703732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_112003174_HDR-rotated.jpg,9/22/2024 0:00,10.0000000,12.0000000,43.2587710000000,5.3756300000000,,Plage de l'Huveaune,80913,Observation #80913,https://biolit.fr/observations/observation-80913/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102656584_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102708727-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111643452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110312581_HDR-scaled.jpg,,,Identifiable +N1,80905,Sortie #80905,https://biolit.fr/sorties/sortie-80905/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100846289_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100915500_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102656584_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102708727-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_103045147_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_104329501_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105243743_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105456295_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105506611-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105703758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105716792-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110312581_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110811810_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111643452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111703732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_112003174_HDR-rotated.jpg,9/22/2024 0:00,10.0000000,12.0000000,43.2587710000000,5.3756300000000,,Plage de l'Huveaune,80915,Observation #80915,https://biolit.fr/observations/observation-80915/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_103045147_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_104329501_HDR-scaled.jpg,,TRUE,Identifiable +N1,80905,Sortie #80905,https://biolit.fr/sorties/sortie-80905/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100846289_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100915500_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102656584_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102708727-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_103045147_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_104329501_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105243743_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105456295_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105506611-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105703758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105716792-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110312581_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110811810_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111643452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111703732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_112003174_HDR-rotated.jpg,9/22/2024 0:00,10.0000000,12.0000000,43.2587710000000,5.3756300000000,,Plage de l'Huveaune,80917,Observation #80917,https://biolit.fr/observations/observation-80917/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105243743_HDR-scaled.jpg,,TRUE,Identifiable +N1,80905,Sortie #80905,https://biolit.fr/sorties/sortie-80905/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100846289_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100915500_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102656584_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102708727-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_103045147_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_104329501_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105243743_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105456295_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105506611-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105703758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105716792-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110312581_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110811810_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111643452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111703732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_112003174_HDR-rotated.jpg,9/22/2024 0:00,10.0000000,12.0000000,43.2587710000000,5.3756300000000,,Plage de l'Huveaune,80919,Observation #80919,https://biolit.fr/observations/observation-80919/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105456295_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105506611-rotated.jpg,,,Identifiable +N1,80905,Sortie #80905,https://biolit.fr/sorties/sortie-80905/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100846289_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100915500_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102656584_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102708727-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_103045147_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_104329501_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105243743_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105456295_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105506611-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105703758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105716792-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110312581_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110811810_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111643452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111703732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_112003174_HDR-rotated.jpg,9/22/2024 0:00,10.0000000,12.0000000,43.2587710000000,5.3756300000000,,Plage de l'Huveaune,80921,Observation #80921,https://biolit.fr/observations/observation-80921/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105703758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105716792-scaled.jpg,,TRUE,Identifiable +N1,80905,Sortie #80905,https://biolit.fr/sorties/sortie-80905/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100846289_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100915500_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102656584_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102708727-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_103045147_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_104329501_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105243743_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105456295_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105506611-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105703758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105716792-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110312581_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110811810_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111643452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111703732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_112003174_HDR-rotated.jpg,9/22/2024 0:00,10.0000000,12.0000000,43.2587710000000,5.3756300000000,,Plage de l'Huveaune,80923,Observation #80923,https://biolit.fr/observations/observation-80923/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110811810_HDR.jpg,,,Identifiable +N1,80905,Sortie #80905,https://biolit.fr/sorties/sortie-80905/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100846289_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100915500_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102656584_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102708727-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_103045147_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_104329501_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105243743_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105456295_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105506611-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105703758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105716792-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110312581_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110811810_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111643452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111703732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_112003174_HDR-rotated.jpg,9/22/2024 0:00,10.0000000,12.0000000,43.2587710000000,5.3756300000000,,Plage de l'Huveaune,80925,Observation #80925,https://biolit.fr/observations/observation-80925/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111703732-scaled.jpg,,TRUE,Identifiable +N1,80905,Sortie #80905,https://biolit.fr/sorties/sortie-80905/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_0636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100846289_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_100915500_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102656584_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_102708727-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_103045147_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_104329501_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105243743_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105456295_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105506611-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105703758_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_105716792-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110312581_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_110811810_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111643452_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_111703732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_112003174_HDR-rotated.jpg,9/22/2024 0:00,10.0000000,12.0000000,43.2587710000000,5.3756300000000,,Plage de l'Huveaune,80927,Observation #80927,https://biolit.fr/observations/observation-80927/,Loripes orbiculatus,Loripes orbiculaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_112003174_HDR-rotated.jpg,,,Identifiable +N1,80931,Sortie #80931,https://biolit.fr/sorties/sortie-80931/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_113639888_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115814560_HDR-scaled.jpg,9/22/2024 0:00,10.0000000,12.0000000,43.2586370000000,5.37562400000000,,Plage de l'Huveaune,80933,Observation #80933,https://biolit.fr/observations/observation-80933/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_113639888_HDR-scaled.jpg,,,Identifiable +N1,80931,Sortie #80931,https://biolit.fr/sorties/sortie-80931/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_113639888_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115814560_HDR-scaled.jpg,9/22/2024 0:00,10.0000000,12.0000000,43.2586370000000,5.37562400000000,,Plage de l'Huveaune,80935,Observation #80935,https://biolit.fr/observations/observation-80935/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/09/IMG_20240922_115814560_HDR-scaled.jpg,,,Identifiable +N1,81003,Sortie #81003,https://biolit.fr/sorties/sortie-81003/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0026.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0028.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0032.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0037.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0045.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0047.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0049.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0051.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0053.jpg,9/21/2024 0:00,10.0000000,11.0000000,43.5526630000000,4.01011200000000,LABELBLEU,Plage du Petit travers,81007,Observation #81007,https://biolit.fr/observations/observation-81007/,Polititapes aureus,Palourde jaune,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0004.jpg,,,Identifiable +N1,81003,Sortie #81003,https://biolit.fr/sorties/sortie-81003/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0026.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0028.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0032.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0037.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0045.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0047.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0049.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0051.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0053.jpg,9/21/2024 0:00,10.0000000,11.0000000,43.5526630000000,4.01011200000000,LABELBLEU,Plage du Petit travers,81009,Observation #81009,https://biolit.fr/observations/observation-81009/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0005.jpg,,TRUE,Identifiable +N1,81003,Sortie #81003,https://biolit.fr/sorties/sortie-81003/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0026.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0028.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0032.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0037.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0045.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0047.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0049.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0051.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0053.jpg,9/21/2024 0:00,10.0000000,11.0000000,43.5526630000000,4.01011200000000,LABELBLEU,Plage du Petit travers,81011,Observation #81011,https://biolit.fr/observations/observation-81011/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0007.jpg,,TRUE,Identifiable +N1,81035,Sortie #81035,https://biolit.fr/sorties/sortie-81035/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0012-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0028-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0029-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0032-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0037-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0045-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0047-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0049-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0051-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0053-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0022.jpg,9/21/2024 0:00,10.0000000,11.0000000,43.5527560000000,4.01019800000000,LABELBLEU,Plage du Petit travers,81037,Observation #81037,https://biolit.fr/observations/observation-81037/,Fabulina fabula,Telline striée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0015.jpg,,,Identifiable +N1,81035,Sortie #81035,https://biolit.fr/sorties/sortie-81035/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0012-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0028-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0029-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0032-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0037-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0045-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0047-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0049-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0051-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0053-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0022.jpg,9/21/2024 0:00,10.0000000,11.0000000,43.5527560000000,4.01019800000000,LABELBLEU,Plage du Petit travers,81039,Observation #81039,https://biolit.fr/observations/observation-81039/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0018.jpg,,TRUE,Identifiable +N1,81035,Sortie #81035,https://biolit.fr/sorties/sortie-81035/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0012-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0028-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0029-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0031-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0032-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0037-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0045-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0047-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0049-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0051-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0053-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0020.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0021.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0022.jpg,9/21/2024 0:00,10.0000000,11.0000000,43.5527560000000,4.01019800000000,LABELBLEU,Plage du Petit travers,81043,Observation #81043,https://biolit.fr/observations/observation-81043/,Scrobicularia plana,Scrobiculaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/09/IMG-20240927-WA0053-1.jpg,,,Identifiable +N1,81052,Sortie #81052,https://biolit.fr/sorties/sortie-81052/,Serra Maria,https://biolit.fr/wp-content/uploads/jet-form-builder/279e94bca62f912ce7aec21fa0cb7610/2024/09/IMG_1382.jpeg,8/24/2024 0:00,9.0000000,12.0000000,43.2898080000000,5.34865700000000,,Digue des Catalans,81054,Observation #81054,https://biolit.fr/observations/observation-81054/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/279e94bca62f912ce7aec21fa0cb7610/2024/09/IMG_1382.jpeg,,TRUE, +N1,81062,Sortie #81062,https://biolit.fr/sorties/sortie-81062/,AILERONS,https://biolit.fr/wp-content/uploads/jet-form-builder/104a3ad0debfd3bf7c7f67cd28f4351b/2024/09/20240928_104658-scaled.jpg,9/28/2024 0:00,9.0000000,10.0:15,43.52509100000,3.92843900000000,Ailerons,"Plage des coquilles, Palavas-les-Flots",81064,Observation #81064,https://biolit.fr/observations/observation-81064/,Callinectes sapidus,Crabe bleu américain,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/104a3ad0debfd3bf7c7f67cd28f4351b/2024/09/20240928_104658-scaled.jpg,,TRUE,Identifiable +N1,81077,Sortie #81077,https://biolit.fr/sorties/sortie-81077/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20240927-WA0084.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20240927-WA0027-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20240927-WA0006-1.jpg,9/21/2024 0:00,10.0000000,11.0000000,43.5526630000000,4.00989700000000,,Plage du Petit travers,81079,Observation #81079,https://biolit.fr/observations/observation-81079/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20240927-WA0084.jpg,,,Ne sais pas +N1,81077,Sortie #81077,https://biolit.fr/sorties/sortie-81077/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20240927-WA0084.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20240927-WA0027-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20240927-WA0006-1.jpg,9/21/2024 0:00,10.0000000,11.0000000,43.5526630000000,4.00989700000000,,Plage du Petit travers,81081,Observation #81081,https://biolit.fr/observations/observation-81081/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20240927-WA0027-1.jpg,,,Identifiable +N1,81077,Sortie #81077,https://biolit.fr/sorties/sortie-81077/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20240927-WA0084.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20240927-WA0027-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20240927-WA0006-1.jpg,9/21/2024 0:00,10.0000000,11.0000000,43.5526630000000,4.00989700000000,,Plage du Petit travers,81083,Observation #81083,https://biolit.fr/observations/observation-81083/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20240927-WA0006-1.jpg,,,Identifiable +N1,81086,Sortie #81086,https://biolit.fr/sorties/sortie-81086/,Dufraine Catherine,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2024/10/P_20240924_151235-scaled.jpg,9/26/2024 0:00,10.0000000,15.0000000,44.6620320000000,-1.17132500000000,,Arcachon,81088,Observation #81088,https://biolit.fr/observations/observation-81088/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2024/10/P_20240924_151235-scaled.jpg,,,Ne sais pas +N1,81096,Sortie #81096,https://biolit.fr/sorties/sortie-81096/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/petoncle2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/lutraire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/x.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/couteau.jpg,9/21/2024 0:00,10.0000000,11.0000000,43.5527560000000,4.01005800000000,LABELBLEU,Plage du Petit travers,81106,Observation #81106,https://biolit.fr/observations/observation-81106/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/couteau.jpg,,,Ne sais pas +N1,81096,Sortie #81096,https://biolit.fr/sorties/sortie-81096/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/petoncle2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/lutraire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/x.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/couteau.jpg,9/21/2024 0:00,10.0000000,11.0000000,43.5527560000000,4.01005800000000,LABELBLEU,Plage du Petit travers,81108,Observation #81108,https://biolit.fr/observations/observation-81108/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/patelle.jpg,,TRUE,Identifiable +N1,81096,Sortie #81096,https://biolit.fr/sorties/sortie-81096/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/petoncle2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/lutraire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/x.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/couteau.jpg,9/21/2024 0:00,10.0000000,11.0000000,43.5527560000000,4.01005800000000,LABELBLEU,Plage du Petit travers,81110,Observation #81110,https://biolit.fr/observations/observation-81110/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/lutraire.jpg,,,Ne sais pas +N1,81096,Sortie #81096,https://biolit.fr/sorties/sortie-81096/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/petoncle2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/lutraire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/x.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/couteau.jpg,9/21/2024 0:00,10.0000000,11.0000000,43.5527560000000,4.01005800000000,LABELBLEU,Plage du Petit travers,81112,Observation #81112,https://biolit.fr/observations/observation-81112/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/petoncle2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/x.jpg,,,Identifiable +N1,81096,Sortie #81096,https://biolit.fr/sorties/sortie-81096/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/petoncle2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/lutraire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/x.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/couteau.jpg,9/21/2024 0:00,10.0000000,11.0000000,43.5527560000000,4.01005800000000,LABELBLEU,Plage du Petit travers,81114,Observation #81114,https://biolit.fr/observations/observation-81114/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/x.jpg,,,Ne sais pas +N1,81100,Sortie #81100,https://biolit.fr/sorties/sortie-81100/,Dufraine Catherine,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2024/10/P_20240924_153522-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2024/10/P_20240924_151301-scaled.jpg,9/26/2024 0:00,10.0000000,15.0000000,44.6648910000000,-1.16798400000000,,Arcachon,81102,Observation #81102,https://biolit.fr/observations/observation-81102/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2024/10/P_20240924_153522-scaled.jpg,,,Ne sais pas +N1,81100,Sortie #81100,https://biolit.fr/sorties/sortie-81100/,Dufraine Catherine,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2024/10/P_20240924_153522-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2024/10/P_20240924_151301-scaled.jpg,9/26/2024 0:00,10.0000000,15.0000000,44.6648910000000,-1.16798400000000,,Arcachon,81104,Observation #81104,https://biolit.fr/observations/observation-81104/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2024/10/P_20240924_151301-scaled.jpg,,,Ne sais pas +N1,81248,Sortie #81248,https://biolit.fr/sorties/sortie-81248/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/gibule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/huitre-creuse-scaled.jpg,10/02/2024,14.0:45,16.0000000,48.7024260000000,-1.84813900000000,,Rochers de la plage de Port Mer,81250,Observation #81250,https://biolit.fr/observations/observation-81250/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Anemone-solaire-scaled.jpg,,TRUE,Identifiable +N1,81248,Sortie #81248,https://biolit.fr/sorties/sortie-81248/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/gibule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/huitre-creuse-scaled.jpg,10/02/2024,14.0:45,16.0000000,48.7024260000000,-1.84813900000000,,Rochers de la plage de Port Mer,81252,Observation #81252,https://biolit.fr/observations/observation-81252/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-verte-scaled.jpg,,TRUE,Identifiable +N1,81248,Sortie #81248,https://biolit.fr/sorties/sortie-81248/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/gibule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/huitre-creuse-scaled.jpg,10/02/2024,14.0:45,16.0000000,48.7024260000000,-1.84813900000000,,Rochers de la plage de Port Mer,81254,Observation #81254,https://biolit.fr/observations/observation-81254/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-scaled.jpg,,,Ne sais pas +N1,81248,Sortie #81248,https://biolit.fr/sorties/sortie-81248/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/gibule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/huitre-creuse-scaled.jpg,10/02/2024,14.0:45,16.0000000,48.7024260000000,-1.84813900000000,,Rochers de la plage de Port Mer,81256,Observation #81256,https://biolit.fr/observations/observation-81256/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/bigorneau-scaled.jpg,,TRUE,Identifiable +N1,81248,Sortie #81248,https://biolit.fr/sorties/sortie-81248/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/gibule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/huitre-creuse-scaled.jpg,10/02/2024,14.0:45,16.0000000,48.7024260000000,-1.84813900000000,,Rochers de la plage de Port Mer,81258,Observation #81258,https://biolit.fr/observations/observation-81258/,Acanthochitona crinita,Petit chiton épineux,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/chiton-scaled.jpg,,,Identifiable +N1,81248,Sortie #81248,https://biolit.fr/sorties/sortie-81248/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/gibule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/huitre-creuse-scaled.jpg,10/02/2024,14.0:45,16.0000000,48.7024260000000,-1.84813900000000,,Rochers de la plage de Port Mer,81260,Observation #81260,https://biolit.fr/observations/observation-81260/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-porcellane-scaled.jpg,,TRUE,Identifiable +N1,81248,Sortie #81248,https://biolit.fr/sorties/sortie-81248/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/gibule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/huitre-creuse-scaled.jpg,10/02/2024,14.0:45,16.0000000,48.7024260000000,-1.84813900000000,,Rochers de la plage de Port Mer,81262,Observation #81262,https://biolit.fr/observations/observation-81262/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-vert-scaled.jpg,,TRUE,Ne sais pas +N1,81248,Sortie #81248,https://biolit.fr/sorties/sortie-81248/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/gibule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/huitre-creuse-scaled.jpg,10/02/2024,14.0:45,16.0000000,48.7024260000000,-1.84813900000000,,Rochers de la plage de Port Mer,81265,Observation #81265,https://biolit.fr/observations/observation-81265/,Crangon crangon,Crevette grise européenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crevette-grise-scaled.jpg,,,Identifiable +N1,81248,Sortie #81248,https://biolit.fr/sorties/sortie-81248/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/gibule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/huitre-creuse-scaled.jpg,10/02/2024,14.0:45,16.0000000,48.7024260000000,-1.84813900000000,,Rochers de la plage de Port Mer,81267,Observation #81267,https://biolit.fr/observations/observation-81267/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/gibule-scaled.jpg,,TRUE,Identifiable +N1,81248,Sortie #81248,https://biolit.fr/sorties/sortie-81248/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/gibule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/huitre-creuse-scaled.jpg,10/02/2024,14.0:45,16.0000000,48.7024260000000,-1.84813900000000,,Rochers de la plage de Port Mer,81269,Observation #81269,https://biolit.fr/observations/observation-81269/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/hermelles-scaled.jpg,,TRUE,Identifiable +N1,81248,Sortie #81248,https://biolit.fr/sorties/sortie-81248/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/gibule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/huitre-creuse-scaled.jpg,10/02/2024,14.0:45,16.0000000,48.7024260000000,-1.84813900000000,,Rochers de la plage de Port Mer,81271,Observation #81271,https://biolit.fr/observations/observation-81271/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/huitre-creuse-scaled.jpg,,TRUE,Identifiable +N1,81248,Sortie #81248,https://biolit.fr/sorties/sortie-81248/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crabe-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/gibule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/huitre-creuse-scaled.jpg,10/02/2024,14.0:45,16.0000000,48.7024260000000,-1.84813900000000,,Rochers de la plage de Port Mer,81273,Observation #81273,https://biolit.fr/observations/observation-81273/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/eponge-orange-scaled.jpg,,,Identifiable +N1,81282,Sortie #81282,https://biolit.fr/sorties/sortie-81282/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Nereis-multicolor-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/tourteau-scaled.jpg,10/02/2024,14.0:45,16.0:58,48.7024490000000,-1.84812800000000,,Rochers de la plage de Port Mer,81284,Observation #81284,https://biolit.fr/observations/observation-81284/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/moule-scaled.jpg,,TRUE,Identifiable +N1,81282,Sortie #81282,https://biolit.fr/sorties/sortie-81282/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Nereis-multicolor-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/tourteau-scaled.jpg,10/02/2024,14.0:45,16.0:58,48.7024490000000,-1.84812800000000,,Rochers de la plage de Port Mer,81286,Observation #81286,https://biolit.fr/observations/observation-81286/,Hediste diversicolor,Néréis multicolore,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Nereis-multicolor-scaled.jpg,,TRUE,Identifiable +N1,81282,Sortie #81282,https://biolit.fr/sorties/sortie-81282/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Nereis-multicolor-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/tourteau-scaled.jpg,10/02/2024,14.0:45,16.0:58,48.7024490000000,-1.84812800000000,,Rochers de la plage de Port Mer,81288,Observation #81288,https://biolit.fr/observations/observation-81288/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/nerophis-scaled.jpg,,TRUE,Identifiable +N1,81282,Sortie #81282,https://biolit.fr/sorties/sortie-81282/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Nereis-multicolor-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/tourteau-scaled.jpg,10/02/2024,14.0:45,16.0:58,48.7024490000000,-1.84812800000000,,Rochers de la plage de Port Mer,81290,Observation #81290,https://biolit.fr/observations/observation-81290/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/palourde-scaled.jpg,,,Identifiable +N1,81282,Sortie #81282,https://biolit.fr/sorties/sortie-81282/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Nereis-multicolor-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/tourteau-scaled.jpg,10/02/2024,14.0:45,16.0:58,48.7024490000000,-1.84812800000000,,Rochers de la plage de Port Mer,81292,Observation #81292,https://biolit.fr/observations/observation-81292/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/patelle-scaled.jpg,,TRUE,Identifiable +N1,81282,Sortie #81282,https://biolit.fr/sorties/sortie-81282/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Nereis-multicolor-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/tourteau-scaled.jpg,10/02/2024,14.0:45,16.0:58,48.7024490000000,-1.84812800000000,,Rochers de la plage de Port Mer,81294,Observation #81294,https://biolit.fr/observations/observation-81294/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/pourpre-scaled.jpg,,TRUE,Identifiable +N1,81282,Sortie #81282,https://biolit.fr/sorties/sortie-81282/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/Nereis-multicolor-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/tourteau-scaled.jpg,10/02/2024,14.0:45,16.0:58,48.7024490000000,-1.84812800000000,,Rochers de la plage de Port Mer,81296,Observation #81296,https://biolit.fr/observations/observation-81296/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/10/tourteau-scaled.jpg,,TRUE,Identifiable +N1,81311,Sortie #81311,https://biolit.fr/sorties/sortie-81311/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_141555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_141621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_141837-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142425-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142921-scaled.jpg,10/05/2024,13.0000000,14.0000000,43.2112310000000,5.42275700000000,,Port de Sormiou,81313,Observation #81313,https://biolit.fr/observations/observation-81313/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_141555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_141621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142026-scaled.jpg,,,Identifiable +N1,81311,Sortie #81311,https://biolit.fr/sorties/sortie-81311/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_141555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_141621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_141837-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142425-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142921-scaled.jpg,10/05/2024,13.0000000,14.0000000,43.2112310000000,5.42275700000000,,Port de Sormiou,81315,Observation #81315,https://biolit.fr/observations/observation-81315/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_141837-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142425-scaled.jpg,,,Identifiable +N1,81311,Sortie #81311,https://biolit.fr/sorties/sortie-81311/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_141555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_141621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_141837-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142425-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142921-scaled.jpg,10/05/2024,13.0000000,14.0000000,43.2112310000000,5.42275700000000,,Port de Sormiou,81317,Observation #81317,https://biolit.fr/observations/observation-81317/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142230-scaled.jpg,,TRUE,Identifiable +N1,81311,Sortie #81311,https://biolit.fr/sorties/sortie-81311/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_141555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_141621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_141837-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142425-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142921-scaled.jpg,10/05/2024,13.0000000,14.0000000,43.2112310000000,5.42275700000000,,Port de Sormiou,81319,Observation #81319,https://biolit.fr/observations/observation-81319/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241005_142921-scaled.jpg,,TRUE,Identifiable +N1,81324,Sortie #81324,https://biolit.fr/sorties/sortie-81324/,AIEJE,https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/10/IMG_6700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b058404ba152d9000f6bf03b97b3a1b7/2024/10/IMG_6701-scaled.jpg,09/10/2024,10.0000000,12.0000000,43.3339320000000,5.19775700000000,AIEJE,plage pebraire,,,,,,,,,, +N1,81378,Sortie #81378,https://biolit.fr/sorties/sortie-81378/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-3D6A661D-FFE8-44C8-8B7B-1C6FDF200104-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-6D9FCE3A-6340-4194-8987-B2D02891BD81-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8A77C198-6430-4056-9C18-4F443F3D94E6-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8BA0029B-0E8E-4CE8-BF05-4E1EFA577D92-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-54D7F7FF-FA1C-4AC0-8C47-C98B632B05DC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-108DF8F6-0E70-45DE-A7EF-99D1F287F769-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-556FE20B-F065-49BF-AC5A-94328A0DE9CC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8959E438-0722-4F00-9BB1-4028885232C0-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-999531BA-291C-43CD-AB87-443CDBC22619-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-D9B45CC2-CB8C-48DB-BDBF-EB0931711412-scaled.jpeg,10/08/2024,9.0000000,16.0000000,46.4650630000000,-1.73272800000000,,L'Anse aux Moines - 85 LES SABLES D'OLONNE,81380,Observation #81380,https://biolit.fr/observations/observation-81380/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8A77C198-6430-4056-9C18-4F443F3D94E6-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8959E438-0722-4F00-9BB1-4028885232C0-scaled.jpeg,,,Identifiable +N1,81378,Sortie #81378,https://biolit.fr/sorties/sortie-81378/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-3D6A661D-FFE8-44C8-8B7B-1C6FDF200104-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-6D9FCE3A-6340-4194-8987-B2D02891BD81-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8A77C198-6430-4056-9C18-4F443F3D94E6-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8BA0029B-0E8E-4CE8-BF05-4E1EFA577D92-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-54D7F7FF-FA1C-4AC0-8C47-C98B632B05DC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-108DF8F6-0E70-45DE-A7EF-99D1F287F769-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-556FE20B-F065-49BF-AC5A-94328A0DE9CC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8959E438-0722-4F00-9BB1-4028885232C0-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-999531BA-291C-43CD-AB87-443CDBC22619-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-D9B45CC2-CB8C-48DB-BDBF-EB0931711412-scaled.jpeg,10/08/2024,9.0000000,16.0000000,46.4650630000000,-1.73272800000000,,L'Anse aux Moines - 85 LES SABLES D'OLONNE,81382,Observation #81382,https://biolit.fr/observations/observation-81382/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8BA0029B-0E8E-4CE8-BF05-4E1EFA577D92-scaled.jpeg,,TRUE,Identifiable +N1,81378,Sortie #81378,https://biolit.fr/sorties/sortie-81378/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-3D6A661D-FFE8-44C8-8B7B-1C6FDF200104-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-6D9FCE3A-6340-4194-8987-B2D02891BD81-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8A77C198-6430-4056-9C18-4F443F3D94E6-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8BA0029B-0E8E-4CE8-BF05-4E1EFA577D92-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-54D7F7FF-FA1C-4AC0-8C47-C98B632B05DC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-108DF8F6-0E70-45DE-A7EF-99D1F287F769-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-556FE20B-F065-49BF-AC5A-94328A0DE9CC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8959E438-0722-4F00-9BB1-4028885232C0-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-999531BA-291C-43CD-AB87-443CDBC22619-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-D9B45CC2-CB8C-48DB-BDBF-EB0931711412-scaled.jpeg,10/08/2024,9.0000000,16.0000000,46.4650630000000,-1.73272800000000,,L'Anse aux Moines - 85 LES SABLES D'OLONNE,81384,Observation #81384,https://biolit.fr/observations/observation-81384/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-54D7F7FF-FA1C-4AC0-8C47-C98B632B05DC-scaled.jpeg,,,Identifiable +N1,81378,Sortie #81378,https://biolit.fr/sorties/sortie-81378/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-3D6A661D-FFE8-44C8-8B7B-1C6FDF200104-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-6D9FCE3A-6340-4194-8987-B2D02891BD81-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8A77C198-6430-4056-9C18-4F443F3D94E6-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8BA0029B-0E8E-4CE8-BF05-4E1EFA577D92-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-54D7F7FF-FA1C-4AC0-8C47-C98B632B05DC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-108DF8F6-0E70-45DE-A7EF-99D1F287F769-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-556FE20B-F065-49BF-AC5A-94328A0DE9CC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8959E438-0722-4F00-9BB1-4028885232C0-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-999531BA-291C-43CD-AB87-443CDBC22619-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-D9B45CC2-CB8C-48DB-BDBF-EB0931711412-scaled.jpeg,10/08/2024,9.0000000,16.0000000,46.4650630000000,-1.73272800000000,,L'Anse aux Moines - 85 LES SABLES D'OLONNE,81386,Observation #81386,https://biolit.fr/observations/observation-81386/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-108DF8F6-0E70-45DE-A7EF-99D1F287F769-scaled.jpeg,,,Identifiable +N1,81378,Sortie #81378,https://biolit.fr/sorties/sortie-81378/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-3D6A661D-FFE8-44C8-8B7B-1C6FDF200104-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-6D9FCE3A-6340-4194-8987-B2D02891BD81-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8A77C198-6430-4056-9C18-4F443F3D94E6-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8BA0029B-0E8E-4CE8-BF05-4E1EFA577D92-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-54D7F7FF-FA1C-4AC0-8C47-C98B632B05DC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-108DF8F6-0E70-45DE-A7EF-99D1F287F769-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-556FE20B-F065-49BF-AC5A-94328A0DE9CC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8959E438-0722-4F00-9BB1-4028885232C0-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-999531BA-291C-43CD-AB87-443CDBC22619-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-D9B45CC2-CB8C-48DB-BDBF-EB0931711412-scaled.jpeg,10/08/2024,9.0000000,16.0000000,46.4650630000000,-1.73272800000000,,L'Anse aux Moines - 85 LES SABLES D'OLONNE,81388,Observation #81388,https://biolit.fr/observations/observation-81388/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-D9B45CC2-CB8C-48DB-BDBF-EB0931711412-scaled.jpeg,,,Identifiable +N1,81378,Sortie #81378,https://biolit.fr/sorties/sortie-81378/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-3D6A661D-FFE8-44C8-8B7B-1C6FDF200104-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-6D9FCE3A-6340-4194-8987-B2D02891BD81-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8A77C198-6430-4056-9C18-4F443F3D94E6-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8BA0029B-0E8E-4CE8-BF05-4E1EFA577D92-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-54D7F7FF-FA1C-4AC0-8C47-C98B632B05DC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-108DF8F6-0E70-45DE-A7EF-99D1F287F769-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-556FE20B-F065-49BF-AC5A-94328A0DE9CC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-8959E438-0722-4F00-9BB1-4028885232C0-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-999531BA-291C-43CD-AB87-443CDBC22619-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-D9B45CC2-CB8C-48DB-BDBF-EB0931711412-scaled.jpeg,10/08/2024,9.0000000,16.0000000,46.4650630000000,-1.73272800000000,,L'Anse aux Moines - 85 LES SABLES D'OLONNE,81390,Observation #81390,https://biolit.fr/observations/observation-81390/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-3D6A661D-FFE8-44C8-8B7B-1C6FDF200104-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-6D9FCE3A-6340-4194-8987-B2D02891BD81-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-556FE20B-F065-49BF-AC5A-94328A0DE9CC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/de03b5eca7afcc0b4ca9ddd80817a525/2024/10/processed-999531BA-291C-43CD-AB87-443CDBC22619-scaled.jpeg,,,Ne sais pas +N1,81410,Sortie #81410,https://biolit.fr/sorties/sortie-81410/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164204.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_143906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145147-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145559-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145717-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145821-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150413-scaled.jpg,9/22/2024 0:00,10.0000000,11.0000000,43.2581520000000,5.37567800000000,,Plage de l'Huveaune,81412,Observation #81412,https://biolit.fr/observations/observation-81412/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164204.jpg,,,Ne sais pas +N1,81410,Sortie #81410,https://biolit.fr/sorties/sortie-81410/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164204.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_143906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145147-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145559-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145717-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145821-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150413-scaled.jpg,9/22/2024 0:00,10.0000000,11.0000000,43.2581520000000,5.37567800000000,,Plage de l'Huveaune,81414,Observation #81414,https://biolit.fr/observations/observation-81414/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164513.jpg,,,Ne sais pas +N1,81410,Sortie #81410,https://biolit.fr/sorties/sortie-81410/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164204.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_143906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145147-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145559-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145717-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145821-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150413-scaled.jpg,9/22/2024 0:00,10.0000000,11.0000000,43.2581520000000,5.37567800000000,,Plage de l'Huveaune,81416,Observation #81416,https://biolit.fr/observations/observation-81416/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_143906-scaled.jpg,,,Identifiable +N1,81410,Sortie #81410,https://biolit.fr/sorties/sortie-81410/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164204.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_143906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145147-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145559-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145717-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145821-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150413-scaled.jpg,9/22/2024 0:00,10.0000000,11.0000000,43.2581520000000,5.37567800000000,,Plage de l'Huveaune,81418,Observation #81418,https://biolit.fr/observations/observation-81418/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145147-scaled.jpg,,,Identifiable +N1,81410,Sortie #81410,https://biolit.fr/sorties/sortie-81410/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164204.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_143906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145147-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145559-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145717-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145821-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150413-scaled.jpg,9/22/2024 0:00,10.0000000,11.0000000,43.2581520000000,5.37567800000000,,Plage de l'Huveaune,81420,Observation #81420,https://biolit.fr/observations/observation-81420/,Tritia corniculum,Tritia corniculum,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145326-scaled.jpg,,,Identifiable +N1,81410,Sortie #81410,https://biolit.fr/sorties/sortie-81410/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164204.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_143906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145147-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145559-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145717-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145821-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150413-scaled.jpg,9/22/2024 0:00,10.0000000,11.0000000,43.2581520000000,5.37567800000000,,Plage de l'Huveaune,81422,Observation #81422,https://biolit.fr/observations/observation-81422/,Polititapes aureus,Palourde jaune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145451-scaled.jpg,,,Identifiable +N1,81410,Sortie #81410,https://biolit.fr/sorties/sortie-81410/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164204.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_143906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145147-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145559-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145717-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145821-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150413-scaled.jpg,9/22/2024 0:00,10.0000000,11.0000000,43.2581520000000,5.37567800000000,,Plage de l'Huveaune,81424,Observation #81424,https://biolit.fr/observations/observation-81424/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145559-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145630-scaled.jpg,,,Identifiable +N1,81410,Sortie #81410,https://biolit.fr/sorties/sortie-81410/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164204.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_143906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145147-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145559-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145717-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145821-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150413-scaled.jpg,9/22/2024 0:00,10.0000000,11.0000000,43.2581520000000,5.37567800000000,,Plage de l'Huveaune,81426,Observation #81426,https://biolit.fr/observations/observation-81426/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145717-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145821-scaled.jpg,,,Ne sais pas +N1,81410,Sortie #81410,https://biolit.fr/sorties/sortie-81410/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164204.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_143906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145147-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145559-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145717-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145821-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150413-scaled.jpg,9/22/2024 0:00,10.0000000,11.0000000,43.2581520000000,5.37567800000000,,Plage de l'Huveaune,81428,Observation #81428,https://biolit.fr/observations/observation-81428/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150330-scaled.jpg,,,Identifiable +N1,81410,Sortie #81410,https://biolit.fr/sorties/sortie-81410/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164204.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/Capture-decran-2024-10-09-164513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_143906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145147-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145415-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145559-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145717-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_145821-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150413-scaled.jpg,9/22/2024 0:00,10.0000000,11.0000000,43.2581520000000,5.37567800000000,,Plage de l'Huveaune,81430,Observation #81430,https://biolit.fr/observations/observation-81430/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_150413-scaled.jpg,,,Identifiable +N1,81442,Sortie #81442,https://biolit.fr/sorties/sortie-81442/,Martinez Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011756-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011753-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011737-scaled.jpg,10/10/2024,14.0000000,17.0000000,43.3474740000000,5.02551500000000,,Ponteau,81444,Observation #81444,https://biolit.fr/observations/observation-81444/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011753-scaled.jpg,,TRUE,Identifiable +N1,81442,Sortie #81442,https://biolit.fr/sorties/sortie-81442/,Martinez Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011756-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011753-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011737-scaled.jpg,10/10/2024,14.0000000,17.0000000,43.3474740000000,5.02551500000000,,Ponteau,81446,Observation #81446,https://biolit.fr/observations/observation-81446/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011751-scaled.jpg,,TRUE,Identifiable +N1,81442,Sortie #81442,https://biolit.fr/sorties/sortie-81442/,Martinez Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011756-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011753-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011737-scaled.jpg,10/10/2024,14.0000000,17.0000000,43.3474740000000,5.02551500000000,,Ponteau,81448,Observation #81448,https://biolit.fr/observations/observation-81448/,Mesembryanthemum nodiflorum,Ficoïde à fleurs nodales,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011738-scaled.jpg,,,Identifiable +N1,81442,Sortie #81442,https://biolit.fr/sorties/sortie-81442/,Martinez Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011756-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011753-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011737-scaled.jpg,10/10/2024,14.0000000,17.0000000,43.3474740000000,5.02551500000000,,Ponteau,81450,Observation #81450,https://biolit.fr/observations/observation-81450/,Ligia italica,Ligie italienne,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011756-scaled.jpg,,TRUE,Identifiable +N1,81442,Sortie #81442,https://biolit.fr/sorties/sortie-81442/,Martinez Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011756-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011753-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011737-scaled.jpg,10/10/2024,14.0000000,17.0000000,43.3474740000000,5.02551500000000,,Ponteau,81452,Observation #81452,https://biolit.fr/observations/observation-81452/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14ff952a5dd728add1a6c2f54816fee/2024/10/1000011737-scaled.jpg,,,Ne sais pas +N1,81479,Sortie #81479,https://biolit.fr/sorties/sortie-81479/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9557-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9556-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9555-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9554.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9553.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9552.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9550-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9549-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9546-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9547-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9544-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9543-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9542.jpeg,10/08/2024,9.0000000,14.0000000,46.4652900000000,-1.73137700000000,,Les Sables D’Olonne,,,,,,,,,, +N1,81512,Sortie #81512,https://biolit.fr/sorties/sortie-81512/,Marec Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2024/10/DSC_0232-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2024/10/DSC_0234-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2024/10/DSC_0237-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2024/10/DSC_0243-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2024/10/DSC_0253-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2024/10/DSC_0260-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2024/10/DSC_0263-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2024/10/DSC_0272-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2024/10/DSC_0273-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2024/10/DSC_0276-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2024/10/DSC_0278-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2024/10/DSC_0279-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2024/10/DSC_0282-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2024/10/DSC_0283-1-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/dbb7285aa80f9efeea1618efc76fc854/2024/10/DSC_0284-1.jpg,10/11/2024,9.0000000,12.0000000,484851,32632,PEP 22,Bassin du Lenn Louannec,,,,,,,,,, +N1,81518,Sortie #81518,https://biolit.fr/sorties/sortie-81518/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9542-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9543-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9544-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9546-1-scaled.jpeg,10/08/2024,9.0000000,14.0000000,46.4638680000000,-1.73178400000000,,Les Sables D’Olonne,81520,Observation #81520,https://biolit.fr/observations/observation-81520/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9542-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9543-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9544-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9546-1-scaled.jpeg,,,Ne sais pas +N1,81518,Sortie #81518,https://biolit.fr/sorties/sortie-81518/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9542-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9543-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9544-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9546-1-scaled.jpeg,10/08/2024,9.0000000,14.0000000,46.4638680000000,-1.73178400000000,,Les Sables D’Olonne,81522,Observation #81522,https://biolit.fr/observations/observation-81522/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9543-1-scaled.jpeg,,,Ne sais pas +N1,81518,Sortie #81518,https://biolit.fr/sorties/sortie-81518/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9542-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9543-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9544-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9546-1-scaled.jpeg,10/08/2024,9.0000000,14.0000000,46.4638680000000,-1.73178400000000,,Les Sables D’Olonne,81524,Observation #81524,https://biolit.fr/observations/observation-81524/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9544-1-scaled.jpeg,,TRUE,Ne sais pas +N1,81518,Sortie #81518,https://biolit.fr/sorties/sortie-81518/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9542-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9543-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9544-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9546-1-scaled.jpeg,10/08/2024,9.0000000,14.0000000,46.4638680000000,-1.73178400000000,,Les Sables D’Olonne,81526,Observation #81526,https://biolit.fr/observations/observation-81526/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9546-1-scaled.jpeg,,TRUE,Ne sais pas +N1,81536,Sortie #81536,https://biolit.fr/sorties/sortie-81536/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9549-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9550-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9552-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9553-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9554-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9557-1-scaled.jpeg,10/08/2024,9.0000000,14.0000000,46.4638980000000,-1.73177400000000,,Les Sables D’Olonne,81538,Observation #81538,https://biolit.fr/observations/observation-81538/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9549-1-scaled.jpeg,,TRUE,Ne sais pas +N1,81536,Sortie #81536,https://biolit.fr/sorties/sortie-81536/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9549-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9550-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9552-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9553-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9554-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9557-1-scaled.jpeg,10/08/2024,9.0000000,14.0000000,46.4638980000000,-1.73177400000000,,Les Sables D’Olonne,81540,Observation #81540,https://biolit.fr/observations/observation-81540/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9550-1-scaled.jpeg,,TRUE,Ne sais pas +N1,81536,Sortie #81536,https://biolit.fr/sorties/sortie-81536/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9549-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9550-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9552-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9553-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9554-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9557-1-scaled.jpeg,10/08/2024,9.0000000,14.0000000,46.4638980000000,-1.73177400000000,,Les Sables D’Olonne,81542,Observation #81542,https://biolit.fr/observations/observation-81542/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9552-1.jpeg,,,Ne sais pas +N1,81536,Sortie #81536,https://biolit.fr/sorties/sortie-81536/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9549-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9550-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9552-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9553-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9554-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9557-1-scaled.jpeg,10/08/2024,9.0000000,14.0000000,46.4638980000000,-1.73177400000000,,Les Sables D’Olonne,81544,Observation #81544,https://biolit.fr/observations/observation-81544/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9553-1.jpeg,,TRUE,Ne sais pas +N1,81536,Sortie #81536,https://biolit.fr/sorties/sortie-81536/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9549-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9550-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9552-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9553-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9554-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9557-1-scaled.jpeg,10/08/2024,9.0000000,14.0000000,46.4638980000000,-1.73177400000000,,Les Sables D’Olonne,81546,Observation #81546,https://biolit.fr/observations/observation-81546/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9554-1.jpeg,,,Ne sais pas +N1,81536,Sortie #81536,https://biolit.fr/sorties/sortie-81536/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9549-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9550-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9552-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9553-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9554-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9557-1-scaled.jpeg,10/08/2024,9.0000000,14.0000000,46.4638980000000,-1.73177400000000,,Les Sables D’Olonne,81548,Observation #81548,https://biolit.fr/observations/observation-81548/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9555-1-scaled.jpeg,,TRUE,Ne sais pas +N1,81536,Sortie #81536,https://biolit.fr/sorties/sortie-81536/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9549-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9550-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9552-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9553-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9554-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9557-1-scaled.jpeg,10/08/2024,9.0000000,14.0000000,46.4638980000000,-1.73177400000000,,Les Sables D’Olonne,81550,Observation #81550,https://biolit.fr/observations/observation-81550/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9556-1-scaled.jpeg,,,Ne sais pas +N1,81536,Sortie #81536,https://biolit.fr/sorties/sortie-81536/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9549-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9550-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9552-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9553-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9554-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9555-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9556-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9557-1-scaled.jpeg,10/08/2024,9.0000000,14.0000000,46.4638980000000,-1.73177400000000,,Les Sables D’Olonne,81552,Observation #81552,https://biolit.fr/observations/observation-81552/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7912d9fd532dff0535647c872268d38c/2024/10/IMG_9557-1-scaled.jpeg,,,Ne sais pas +N1,81574,Sortie #81574,https://biolit.fr/sorties/sortie-81574/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_095853258_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_105126668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112846321_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112901070_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113343320_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113459390_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152247-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152415-scaled.jpg,9/28/2024 0:00,10.0000000,12.0000000,43.2400060000000,5.36253800000000,,Plage de l’Anse du Bain des Dames,81576,Observation #81576,https://biolit.fr/observations/observation-81576/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_095853258_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_105126668_HDR-rotated.jpg,,TRUE,Identifiable +N1,81574,Sortie #81574,https://biolit.fr/sorties/sortie-81574/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_095853258_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_105126668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112846321_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112901070_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113343320_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113459390_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152247-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152415-scaled.jpg,9/28/2024 0:00,10.0000000,12.0000000,43.2400060000000,5.36253800000000,,Plage de l’Anse du Bain des Dames,81578,Observation #81578,https://biolit.fr/observations/observation-81578/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112846321_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152329-scaled.jpg,,TRUE,Identifiable +N1,81574,Sortie #81574,https://biolit.fr/sorties/sortie-81574/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_095853258_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_105126668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112846321_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112901070_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113343320_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113459390_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152247-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152415-scaled.jpg,9/28/2024 0:00,10.0000000,12.0000000,43.2400060000000,5.36253800000000,,Plage de l’Anse du Bain des Dames,81580,Observation #81580,https://biolit.fr/observations/observation-81580/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112901070_HDR-scaled.jpg,,TRUE,Identifiable +N1,81574,Sortie #81574,https://biolit.fr/sorties/sortie-81574/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_095853258_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_105126668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112846321_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112901070_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113343320_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113459390_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152247-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152415-scaled.jpg,9/28/2024 0:00,10.0000000,12.0000000,43.2400060000000,5.36253800000000,,Plage de l’Anse du Bain des Dames,81582,Observation #81582,https://biolit.fr/observations/observation-81582/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113343320_HDR-scaled.jpg,,TRUE,Identifiable +N1,81574,Sortie #81574,https://biolit.fr/sorties/sortie-81574/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_095853258_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_105126668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112846321_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112901070_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113343320_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113459390_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152247-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152415-scaled.jpg,9/28/2024 0:00,10.0000000,12.0000000,43.2400060000000,5.36253800000000,,Plage de l’Anse du Bain des Dames,81584,Observation #81584,https://biolit.fr/observations/observation-81584/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113459390_HDR-scaled.jpg,,TRUE,Identifiable +N1,81574,Sortie #81574,https://biolit.fr/sorties/sortie-81574/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_095853258_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_105126668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112846321_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112901070_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113343320_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113459390_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152247-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152415-scaled.jpg,9/28/2024 0:00,10.0000000,12.0000000,43.2400060000000,5.36253800000000,,Plage de l’Anse du Bain des Dames,81586,Observation #81586,https://biolit.fr/observations/observation-81586/,Euthria cornea,Buccin veiné,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152046-scaled.jpg,,TRUE,Identifiable +N1,81574,Sortie #81574,https://biolit.fr/sorties/sortie-81574/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_095853258_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_105126668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112846321_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112901070_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113343320_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113459390_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152247-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152415-scaled.jpg,9/28/2024 0:00,10.0000000,12.0000000,43.2400060000000,5.36253800000000,,Plage de l’Anse du Bain des Dames,81588,Observation #81588,https://biolit.fr/observations/observation-81588/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152247-scaled.jpg,,,Identifiable +N1,81574,Sortie #81574,https://biolit.fr/sorties/sortie-81574/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_095853258_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_105126668_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112846321_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_112901070_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113343320_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20240928_113459390_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152035-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152247-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152415-scaled.jpg,9/28/2024 0:00,10.0000000,12.0000000,43.2400060000000,5.36253800000000,,Plage de l’Anse du Bain des Dames,81590,Observation #81590,https://biolit.fr/observations/observation-81590/,Muricopsis cristata,Murex à crêtes,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241006_152415-scaled.jpg,,,Ne sais pas +N1,81616,Sortie #81616,https://biolit.fr/sorties/sortie-81616/,DE PINTO Magali,https://biolit.fr/wp-content/uploads/jet-form-builder/ea8dab3790d482dfb19b766a675629b0/2024/10/IMG_7659-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea8dab3790d482dfb19b766a675629b0/2024/10/IMG_7660-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea8dab3790d482dfb19b766a675629b0/2024/10/IMG_7661-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea8dab3790d482dfb19b766a675629b0/2024/10/IMG_7662-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea8dab3790d482dfb19b766a675629b0/2024/10/IMG_7663-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea8dab3790d482dfb19b766a675629b0/2024/10/IMG_7664-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea8dab3790d482dfb19b766a675629b0/2024/10/IMG_7665-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea8dab3790d482dfb19b766a675629b0/2024/10/IMG_7666-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea8dab3790d482dfb19b766a675629b0/2024/10/IMG_7667-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea8dab3790d482dfb19b766a675629b0/2024/10/IMG_7668-scaled.jpg,10/11/2024,10.0000000,11.0000000,43.5164890000000,7.40148900000000,,PLAGE DU FORTIN,,,,,,,,,, +N1,81674,Sortie #81674,https://biolit.fr/sorties/sortie-81674/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462261220_1001653471975558_7274567837076352452_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462264968_913441010662237_7947987078519342599_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462446750_1978449599265001_8669635310921526051_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462463865_2929190627239807_7236267491793487617_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462542988_1532287667457219_5972689518930143587_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543028_1972897539805151_7941190656694056078_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543036_2711979872337520_8965268542753602924_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462547331_1295864501578344_4688693891697285433_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462548344_563493672922609_8360533780669361875_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462549920_922071173172559_6454230092849074383_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462555469_1247356476311743_3184433366080332740_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462568268_1592756751320957_2806831230250578603_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462585760_1280859549993194_6208195224904657434_n.jpg,10/12/2024,9.0000000,12.0000000,42.7669070000000,3.0383230000000,LABELBLEU,Plage du centre,81676,Observation #81676,https://biolit.fr/observations/observation-81676/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462463865_2929190627239807_7236267491793487617_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462585760_1280859549993194_6208195224904657434_n.jpg,,,Identifiable +N1,81674,Sortie #81674,https://biolit.fr/sorties/sortie-81674/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462261220_1001653471975558_7274567837076352452_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462264968_913441010662237_7947987078519342599_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462446750_1978449599265001_8669635310921526051_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462463865_2929190627239807_7236267491793487617_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462542988_1532287667457219_5972689518930143587_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543028_1972897539805151_7941190656694056078_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543036_2711979872337520_8965268542753602924_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462547331_1295864501578344_4688693891697285433_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462548344_563493672922609_8360533780669361875_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462549920_922071173172559_6454230092849074383_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462555469_1247356476311743_3184433366080332740_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462568268_1592756751320957_2806831230250578603_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462585760_1280859549993194_6208195224904657434_n.jpg,10/12/2024,9.0000000,12.0000000,42.7669070000000,3.0383230000000,LABELBLEU,Plage du centre,81678,Observation #81678,https://biolit.fr/observations/observation-81678/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462446750_1978449599265001_8669635310921526051_n.jpg,,TRUE,Identifiable +N1,81674,Sortie #81674,https://biolit.fr/sorties/sortie-81674/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462261220_1001653471975558_7274567837076352452_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462264968_913441010662237_7947987078519342599_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462446750_1978449599265001_8669635310921526051_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462463865_2929190627239807_7236267491793487617_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462542988_1532287667457219_5972689518930143587_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543028_1972897539805151_7941190656694056078_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543036_2711979872337520_8965268542753602924_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462547331_1295864501578344_4688693891697285433_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462548344_563493672922609_8360533780669361875_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462549920_922071173172559_6454230092849074383_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462555469_1247356476311743_3184433366080332740_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462568268_1592756751320957_2806831230250578603_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462585760_1280859549993194_6208195224904657434_n.jpg,10/12/2024,9.0000000,12.0000000,42.7669070000000,3.0383230000000,LABELBLEU,Plage du centre,81680,Observation #81680,https://biolit.fr/observations/observation-81680/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462542988_1532287667457219_5972689518930143587_n.jpg,,TRUE,Identifiable +N1,81674,Sortie #81674,https://biolit.fr/sorties/sortie-81674/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462261220_1001653471975558_7274567837076352452_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462264968_913441010662237_7947987078519342599_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462446750_1978449599265001_8669635310921526051_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462463865_2929190627239807_7236267491793487617_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462542988_1532287667457219_5972689518930143587_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543028_1972897539805151_7941190656694056078_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543036_2711979872337520_8965268542753602924_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462547331_1295864501578344_4688693891697285433_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462548344_563493672922609_8360533780669361875_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462549920_922071173172559_6454230092849074383_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462555469_1247356476311743_3184433366080332740_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462568268_1592756751320957_2806831230250578603_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462585760_1280859549993194_6208195224904657434_n.jpg,10/12/2024,9.0000000,12.0000000,42.7669070000000,3.0383230000000,LABELBLEU,Plage du centre,81682,Observation #81682,https://biolit.fr/observations/observation-81682/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543036_2711979872337520_8965268542753602924_n.jpg,,TRUE,Identifiable +N1,81674,Sortie #81674,https://biolit.fr/sorties/sortie-81674/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462261220_1001653471975558_7274567837076352452_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462264968_913441010662237_7947987078519342599_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462446750_1978449599265001_8669635310921526051_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462463865_2929190627239807_7236267491793487617_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462542988_1532287667457219_5972689518930143587_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543028_1972897539805151_7941190656694056078_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543036_2711979872337520_8965268542753602924_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462547331_1295864501578344_4688693891697285433_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462548344_563493672922609_8360533780669361875_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462549920_922071173172559_6454230092849074383_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462555469_1247356476311743_3184433366080332740_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462568268_1592756751320957_2806831230250578603_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462585760_1280859549993194_6208195224904657434_n.jpg,10/12/2024,9.0000000,12.0000000,42.7669070000000,3.0383230000000,LABELBLEU,Plage du centre,81684,Observation #81684,https://biolit.fr/observations/observation-81684/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543036_2711979872337520_8965268542753602924_n.jpg,,,Identifiable +N1,81674,Sortie #81674,https://biolit.fr/sorties/sortie-81674/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462261220_1001653471975558_7274567837076352452_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462264968_913441010662237_7947987078519342599_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462446750_1978449599265001_8669635310921526051_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462463865_2929190627239807_7236267491793487617_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462542988_1532287667457219_5972689518930143587_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543028_1972897539805151_7941190656694056078_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543036_2711979872337520_8965268542753602924_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462547331_1295864501578344_4688693891697285433_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462548344_563493672922609_8360533780669361875_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462549920_922071173172559_6454230092849074383_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462555469_1247356476311743_3184433366080332740_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462568268_1592756751320957_2806831230250578603_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462585760_1280859549993194_6208195224904657434_n.jpg,10/12/2024,9.0000000,12.0000000,42.7669070000000,3.0383230000000,LABELBLEU,Plage du centre,81686,Observation #81686,https://biolit.fr/observations/observation-81686/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462548344_563493672922609_8360533780669361875_n.jpg,,,Identifiable +N1,81674,Sortie #81674,https://biolit.fr/sorties/sortie-81674/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462261220_1001653471975558_7274567837076352452_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462264968_913441010662237_7947987078519342599_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462446750_1978449599265001_8669635310921526051_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462463865_2929190627239807_7236267491793487617_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462542988_1532287667457219_5972689518930143587_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543028_1972897539805151_7941190656694056078_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543036_2711979872337520_8965268542753602924_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462547331_1295864501578344_4688693891697285433_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462548344_563493672922609_8360533780669361875_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462549920_922071173172559_6454230092849074383_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462555469_1247356476311743_3184433366080332740_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462568268_1592756751320957_2806831230250578603_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462585760_1280859549993194_6208195224904657434_n.jpg,10/12/2024,9.0000000,12.0000000,42.7669070000000,3.0383230000000,LABELBLEU,Plage du centre,81688,Observation #81688,https://biolit.fr/observations/observation-81688/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462568268_1592756751320957_2806831230250578603_n.jpg,,,Identifiable +N1,81674,Sortie #81674,https://biolit.fr/sorties/sortie-81674/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462261220_1001653471975558_7274567837076352452_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462264968_913441010662237_7947987078519342599_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462446750_1978449599265001_8669635310921526051_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462463865_2929190627239807_7236267491793487617_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462542988_1532287667457219_5972689518930143587_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543028_1972897539805151_7941190656694056078_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543036_2711979872337520_8965268542753602924_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462547331_1295864501578344_4688693891697285433_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462548344_563493672922609_8360533780669361875_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462549920_922071173172559_6454230092849074383_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462555469_1247356476311743_3184433366080332740_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462568268_1592756751320957_2806831230250578603_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462585760_1280859549993194_6208195224904657434_n.jpg,10/12/2024,9.0000000,12.0000000,42.7669070000000,3.0383230000000,LABELBLEU,Plage du centre,81690,Observation #81690,https://biolit.fr/observations/observation-81690/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462261220_1001653471975558_7274567837076352452_n.jpg,,,Identifiable +N1,81674,Sortie #81674,https://biolit.fr/sorties/sortie-81674/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462261220_1001653471975558_7274567837076352452_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462264968_913441010662237_7947987078519342599_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462446750_1978449599265001_8669635310921526051_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462463865_2929190627239807_7236267491793487617_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462542988_1532287667457219_5972689518930143587_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543028_1972897539805151_7941190656694056078_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543036_2711979872337520_8965268542753602924_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462547331_1295864501578344_4688693891697285433_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462548344_563493672922609_8360533780669361875_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462549920_922071173172559_6454230092849074383_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462555469_1247356476311743_3184433366080332740_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462568268_1592756751320957_2806831230250578603_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462585760_1280859549993194_6208195224904657434_n.jpg,10/12/2024,9.0000000,12.0000000,42.7669070000000,3.0383230000000,LABELBLEU,Plage du centre,81692,Observation #81692,https://biolit.fr/observations/observation-81692/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543028_1972897539805151_7941190656694056078_n.jpg,,,Identifiable +N1,81674,Sortie #81674,https://biolit.fr/sorties/sortie-81674/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462261220_1001653471975558_7274567837076352452_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462264968_913441010662237_7947987078519342599_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462446750_1978449599265001_8669635310921526051_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462463865_2929190627239807_7236267491793487617_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462542988_1532287667457219_5972689518930143587_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543028_1972897539805151_7941190656694056078_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543036_2711979872337520_8965268542753602924_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462547331_1295864501578344_4688693891697285433_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462548344_563493672922609_8360533780669361875_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462549920_922071173172559_6454230092849074383_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462555469_1247356476311743_3184433366080332740_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462568268_1592756751320957_2806831230250578603_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462585760_1280859549993194_6208195224904657434_n.jpg,10/12/2024,9.0000000,12.0000000,42.7669070000000,3.0383230000000,LABELBLEU,Plage du centre,81694,Observation #81694,https://biolit.fr/observations/observation-81694/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543028_1972897539805151_7941190656694056078_n.jpg,,,Identifiable +N1,81674,Sortie #81674,https://biolit.fr/sorties/sortie-81674/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462261220_1001653471975558_7274567837076352452_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462264968_913441010662237_7947987078519342599_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462446750_1978449599265001_8669635310921526051_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462463865_2929190627239807_7236267491793487617_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462542988_1532287667457219_5972689518930143587_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543028_1972897539805151_7941190656694056078_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543036_2711979872337520_8965268542753602924_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462547331_1295864501578344_4688693891697285433_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462548344_563493672922609_8360533780669361875_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462549920_922071173172559_6454230092849074383_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462555469_1247356476311743_3184433366080332740_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462568268_1592756751320957_2806831230250578603_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462585760_1280859549993194_6208195224904657434_n.jpg,10/12/2024,9.0000000,12.0000000,42.7669070000000,3.0383230000000,LABELBLEU,Plage du centre,81696,Observation #81696,https://biolit.fr/observations/observation-81696/,Callinectes sapidus,Crabe bleu américain,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462547331_1295864501578344_4688693891697285433_n.jpg,,TRUE,Identifiable +N1,81674,Sortie #81674,https://biolit.fr/sorties/sortie-81674/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462261220_1001653471975558_7274567837076352452_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462264968_913441010662237_7947987078519342599_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462446750_1978449599265001_8669635310921526051_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462463865_2929190627239807_7236267491793487617_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462542988_1532287667457219_5972689518930143587_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543028_1972897539805151_7941190656694056078_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462543036_2711979872337520_8965268542753602924_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462547331_1295864501578344_4688693891697285433_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462548344_563493672922609_8360533780669361875_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462549920_922071173172559_6454230092849074383_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462555469_1247356476311743_3184433366080332740_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462568268_1592756751320957_2806831230250578603_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462585760_1280859549993194_6208195224904657434_n.jpg,10/12/2024,9.0000000,12.0000000,42.7669070000000,3.0383230000000,LABELBLEU,Plage du centre,81698,Observation #81698,https://biolit.fr/observations/observation-81698/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462555469_1247356476311743_3184433366080332740_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462549920_922071173172559_6454230092849074383_n.jpg,,,Ne sais pas +N1,81701,Sortie #81701,https://biolit.fr/sorties/sortie-81701/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/462547331_1295864501578344_4688693891697285433_n-1.jpg,10/12/2024,9.0000000,12.0000000,42.767070000000,3.03838200000000,LABELBLEU,Plage du centre Torreilles,,,,,,,,,, +N1,81713,Sortie #81713,https://biolit.fr/sorties/sortie-81713/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0966-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0964-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0963-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0961-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0960-scaled.jpeg,9/20/2024 0:00,16.0:15,16.0000000,43.2744150000000,6.58430800000000,,Port grimaud grande plage,,,,,,,,,, +N1,81720,Sortie #81720,https://biolit.fr/sorties/sortie-81720/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0966-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0964-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0963-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0961-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0960-1-scaled.jpeg,9/20/2024 0:00,16.0:15,16.0000000,43.274149000000,6.58433000000000,,Port Grimaud grande plage,81722,Observation #81722,https://biolit.fr/observations/observation-81722/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0966-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0964-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0963-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0961-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0960-1-scaled.jpeg,,TRUE,Identifiable +N1,81726,Sortie #81726,https://biolit.fr/sorties/sortie-81726/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0928.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0930-scaled.jpeg,9/20/2024 0:00,16.0:15,16.0000000,43.2740240000000,6.58413600000000,,Port grimaud grande plage,81730,Observation #81730,https://biolit.fr/observations/observation-81730/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0928.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0930-scaled.jpeg,,TRUE,Identifiable +N1,81734,Sortie #81734,https://biolit.fr/sorties/sortie-81734/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0935-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0933-scaled.jpeg,9/20/2024 0:00,16.0:15,16.0000000,43.2738740000000,6.58394300000000,,Port grimaud grande plage,81736,Observation #81736,https://biolit.fr/observations/observation-81736/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0935-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0933-scaled.jpeg,,TRUE,Identifiable +N1,81741,Sortie #81741,https://biolit.fr/sorties/sortie-81741/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0954-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0949-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0948-scaled.jpeg,9/20/2024 0:00,16.0:15,16.0000000,43.2740210000000,6.58433000000000,,Port grimaud grande plage,81743,Observation #81743,https://biolit.fr/observations/observation-81743/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0954-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0949-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0948-scaled.jpeg,,TRUE,Identifiable +N1,81747,Sortie #81747,https://biolit.fr/sorties/sortie-81747/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0944-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0943-scaled.jpeg,9/20/2024 0:00,16.0:15,16.0000000,43.2734510000000,6.58446900000000,,Port grimaud grande plage,81751,Observation #81751,https://biolit.fr/observations/observation-81751/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0944-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0943-scaled.jpeg,,TRUE,Identifiable +N1,81757,Sortie #81757,https://biolit.fr/sorties/sortie-81757/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_5495-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_5495-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_5494-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_5493-scaled.jpeg,9/22/2022 0:00,16.0000000,17.0000000,43.2739060000000,6.58415800000000,,Port grimaud grande plage,81759,Observation #81759,https://biolit.fr/observations/observation-81759/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_5495-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_5495-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_5494-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_5493-scaled.jpeg,,,Ne sais pas +N1,81765,Sortie #81765,https://biolit.fr/sorties/sortie-81765/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_4127.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_4127-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_4126.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_4126-1-scaled.jpeg,9/19/2023 0:00,18.0000000,18.0000000,43.2745980000000,6.58011300000000,,Port grimaud canaux,81767,Observation #81767,https://biolit.fr/observations/observation-81767/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_4127.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_4127-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_4126.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_4126-1-scaled.jpeg,,TRUE,Ne sais pas +N1,81771,Sortie #81771,https://biolit.fr/sorties/sortie-81771/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0899-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0898-scaled.jpeg,9/16/2024 0:00,18.0000000,19.0000000,43.2741810000000,6.58415800000000,,Port grimaud grande plage,81773,Observation #81773,https://biolit.fr/observations/observation-81773/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0899-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_0898-scaled.jpeg,,TRUE,Identifiable +N1,81778,Sortie #81778,https://biolit.fr/sorties/sortie-81778/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_6898.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_6899.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_6897.jpeg,09/12/2024,21.0:36,21.0000000,43.2628060000000,6.60347000000000,,,81780,Observation #81780,https://biolit.fr/observations/observation-81780/,Neogobius melanostomus,Gobie à taches noires,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_6898.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_6899.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2024/10/IMG_6897.jpeg,,,Identifiable +N1,81808,Sortie #81808,https://biolit.fr/sorties/sortie-81808/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101920530_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102108491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102239777_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102345772_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102358514_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102755877_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102820620_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103155817_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103512146_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103519138_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103836615_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103845923_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_104959818_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105031211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105602890-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105746449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101720148-rotated.jpg,10/13/2024 0:00,10.0000000,11.0000000,43.2397520000000,5.36243100000000,,Plage de l’Anse du Bain des Dames,81810,Observation #81810,https://biolit.fr/observations/observation-81810/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101720148-rotated.jpg,,TRUE,Identifiable +N1,81808,Sortie #81808,https://biolit.fr/sorties/sortie-81808/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101920530_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102108491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102239777_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102345772_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102358514_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102755877_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102820620_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103155817_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103512146_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103519138_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103836615_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103845923_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_104959818_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105031211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105602890-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105746449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101720148-rotated.jpg,10/13/2024 0:00,10.0000000,11.0000000,43.2397520000000,5.36243100000000,,Plage de l’Anse du Bain des Dames,81812,Observation #81812,https://biolit.fr/observations/observation-81812/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101920530_HDR-scaled.jpg,,TRUE,Identifiable +N1,81808,Sortie #81808,https://biolit.fr/sorties/sortie-81808/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101920530_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102108491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102239777_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102345772_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102358514_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102755877_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102820620_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103155817_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103512146_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103519138_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103836615_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103845923_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_104959818_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105031211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105602890-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105746449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101720148-rotated.jpg,10/13/2024 0:00,10.0000000,11.0000000,43.2397520000000,5.36243100000000,,Plage de l’Anse du Bain des Dames,81814,Observation #81814,https://biolit.fr/observations/observation-81814/,Lithophaga lithophaga,Datte de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102108491_HDR-scaled.jpg,,,Identifiable +N1,81808,Sortie #81808,https://biolit.fr/sorties/sortie-81808/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101920530_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102108491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102239777_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102345772_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102358514_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102755877_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102820620_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103155817_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103512146_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103519138_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103836615_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103845923_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_104959818_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105031211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105602890-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105746449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101720148-rotated.jpg,10/13/2024 0:00,10.0000000,11.0000000,43.2397520000000,5.36243100000000,,Plage de l’Anse du Bain des Dames,81816,Observation #81816,https://biolit.fr/observations/observation-81816/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102239777_HDR-scaled.jpg,,TRUE,Identifiable +N1,81808,Sortie #81808,https://biolit.fr/sorties/sortie-81808/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101920530_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102108491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102239777_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102345772_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102358514_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102755877_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102820620_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103155817_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103512146_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103519138_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103836615_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103845923_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_104959818_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105031211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105602890-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105746449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101720148-rotated.jpg,10/13/2024 0:00,10.0000000,11.0000000,43.2397520000000,5.36243100000000,,Plage de l’Anse du Bain des Dames,81818,Observation #81818,https://biolit.fr/observations/observation-81818/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102345772_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102358514_HDR-rotated.jpg,,,Ne sais pas +N1,81808,Sortie #81808,https://biolit.fr/sorties/sortie-81808/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101920530_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102108491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102239777_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102345772_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102358514_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102755877_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102820620_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103155817_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103512146_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103519138_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103836615_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103845923_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_104959818_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105031211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105602890-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105746449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101720148-rotated.jpg,10/13/2024 0:00,10.0000000,11.0000000,43.2397520000000,5.36243100000000,,Plage de l’Anse du Bain des Dames,81820,Observation #81820,https://biolit.fr/observations/observation-81820/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102755877_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102820620_HDR.jpg,,TRUE,Identifiable +N1,81808,Sortie #81808,https://biolit.fr/sorties/sortie-81808/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101920530_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102108491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102239777_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102345772_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102358514_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102755877_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102820620_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103155817_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103512146_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103519138_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103836615_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103845923_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_104959818_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105031211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105602890-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105746449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101720148-rotated.jpg,10/13/2024 0:00,10.0000000,11.0000000,43.2397520000000,5.36243100000000,,Plage de l’Anse du Bain des Dames,81822,Observation #81822,https://biolit.fr/observations/observation-81822/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103155817_HDR-scaled.jpg,,TRUE,Identifiable +N1,81808,Sortie #81808,https://biolit.fr/sorties/sortie-81808/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101920530_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102108491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102239777_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102345772_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102358514_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102755877_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102820620_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103155817_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103512146_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103519138_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103836615_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103845923_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_104959818_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105031211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105602890-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105746449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101720148-rotated.jpg,10/13/2024 0:00,10.0000000,11.0000000,43.2397520000000,5.36243100000000,,Plage de l’Anse du Bain des Dames,81824,Observation #81824,https://biolit.fr/observations/observation-81824/,Tritia nitida,Nasse brillante,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103512146_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103519138_HDR.jpg,,,Identifiable +N1,81808,Sortie #81808,https://biolit.fr/sorties/sortie-81808/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101920530_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102108491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102239777_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102345772_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102358514_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102755877_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102820620_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103155817_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103512146_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103519138_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103836615_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103845923_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_104959818_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105031211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105602890-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105746449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101720148-rotated.jpg,10/13/2024 0:00,10.0000000,11.0000000,43.2397520000000,5.36243100000000,,Plage de l’Anse du Bain des Dames,81826,Observation #81826,https://biolit.fr/observations/observation-81826/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_104959818_HDR-scaled.jpg,,,Ne sais pas +N1,81808,Sortie #81808,https://biolit.fr/sorties/sortie-81808/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101920530_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102108491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102239777_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102345772_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102358514_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102755877_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102820620_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103155817_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103512146_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103519138_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103836615_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103845923_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_104959818_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105031211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105602890-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105746449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101720148-rotated.jpg,10/13/2024 0:00,10.0000000,11.0000000,43.2397520000000,5.36243100000000,,Plage de l’Anse du Bain des Dames,81828,Observation #81828,https://biolit.fr/observations/observation-81828/,Cardita calyculata,Cardite petit calice,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105031211.jpg,,TRUE,Identifiable +N1,81808,Sortie #81808,https://biolit.fr/sorties/sortie-81808/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101920530_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102108491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102239777_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102345772_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102358514_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102755877_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102820620_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103155817_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103512146_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103519138_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103836615_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103845923_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_104959818_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105031211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105602890-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105746449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101720148-rotated.jpg,10/13/2024 0:00,10.0000000,11.0000000,43.2397520000000,5.36243100000000,,Plage de l’Anse du Bain des Dames,81830,Observation #81830,https://biolit.fr/observations/observation-81830/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105602890-rotated.jpg,,TRUE,Identifiable +N1,81808,Sortie #81808,https://biolit.fr/sorties/sortie-81808/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101920530_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102108491_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102239777_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102345772_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102358514_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102755877_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_102820620_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103155817_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103512146_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103519138_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103836615_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_103845923_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_104959818_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105031211.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105602890-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105746449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101720148-rotated.jpg,10/13/2024 0:00,10.0000000,11.0000000,43.2397520000000,5.36243100000000,,Plage de l’Anse du Bain des Dames,81832,Observation #81832,https://biolit.fr/observations/observation-81832/,Peyssonnelia squamaria,Peyssonnelia,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_105746449_HDR-rotated.jpg,,TRUE,Identifiable +N1,81845,Sortie #81845,https://biolit.fr/sorties/sortie-81845/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_100850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_100929-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241016_095411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241016_095435-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241016_095443-scaled.jpg,10/13/2024 0:00,10.0000000,11.0000000,43.2397610000000,5.36242400000000,,Plage de l’Anse du Bain des Dames,81847,Observation #81847,https://biolit.fr/observations/observation-81847/,Stramonita haemastoma,Ponte de bouche de sang,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_100850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_100929-scaled.jpg,,,Identifiable +N1,81845,Sortie #81845,https://biolit.fr/sorties/sortie-81845/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_100850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_100929-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241016_095411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241016_095435-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241016_095443-scaled.jpg,10/13/2024 0:00,10.0000000,11.0000000,43.2397610000000,5.36242400000000,,Plage de l’Anse du Bain des Dames,81849,Observation #81849,https://biolit.fr/observations/observation-81849/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101604-scaled.jpg,,TRUE,Identifiable +N1,81845,Sortie #81845,https://biolit.fr/sorties/sortie-81845/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_100850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_100929-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241016_095411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241016_095435-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241016_095443-scaled.jpg,10/13/2024 0:00,10.0000000,11.0000000,43.2397610000000,5.36242400000000,,Plage de l’Anse du Bain des Dames,81851,Observation #81851,https://biolit.fr/observations/observation-81851/,Euthria cornea,Buccin veiné,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101632-scaled.jpg,,,Identifiable +N1,81845,Sortie #81845,https://biolit.fr/sorties/sortie-81845/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_100850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_100929-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241013_101632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241016_095411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241016_095435-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241016_095443-scaled.jpg,10/13/2024 0:00,10.0000000,11.0000000,43.2397610000000,5.36242400000000,,Plage de l’Anse du Bain des Dames,81853,Observation #81853,https://biolit.fr/observations/observation-81853/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241016_095411-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241016_095435-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/10/IMG_20241016_095443-scaled.jpg,,TRUE,Identifiable +N1,81861,Sortie #81861,https://biolit.fr/sorties/sortie-81861/,Bissonet AUGUSTIN,https://biolit.fr/wp-content/uploads/jet-form-builder/e0731198c4ac20c01d7dcdaeb7e5603a/2024/10/IMG_0366-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e0731198c4ac20c01d7dcdaeb7e5603a/2024/10/IMG_0368-scaled.jpeg,10/16/2024 0:00,14.0000000,15.0000000,49.6776760000000,-1.73523900000000,,Urville nacqueville,,,,,,,,,, +N1,81864,Sortie #81864,https://biolit.fr/sorties/sortie-81864/,Bissonet AUGUSTIN,https://biolit.fr/wp-content/uploads/jet-form-builder/e0731198c4ac20c01d7dcdaeb7e5603a/2024/10/IMG_0367-scaled.jpeg,10/16/2024 0:00,14.0000000,15.0000000,49.6776510000000,-1.73506700000000,,Urville nacqueville,,,,,,,,,, +N1,81868,Sortie #81868,https://biolit.fr/sorties/sortie-81868/,Auneveux--Chaffraix Frédéric,https://biolit.fr/wp-content/uploads/jet-form-builder/2c8b8b997a94fbba2cdd5805a88a6d73/2024/10/Biolit-1.jpg,10/06/2024,14.0:55,15.0000000,49.4619580000000,-1.83066100000000,,Plage de Surtainville,81870,Observation #81870,https://biolit.fr/observations/observation-81870/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2c8b8b997a94fbba2cdd5805a88a6d73/2024/10/Biolit-1.jpg,,,Identifiable +N1,81873,Sortie #81873,https://biolit.fr/sorties/sortie-81873/,Bissonet AUGUSTIN,https://biolit.fr/wp-content/uploads/jet-form-builder/e0731198c4ac20c01d7dcdaeb7e5603a/2024/10/IMG_0366-1-scaled.jpeg,10/17/2024 0:00,14.0000000,15.0000000,49.6774790000000,-1.73534600000000,,Urville Nacqueville,,,,,,,,,, +N1,81902,Sortie #81902,https://biolit.fr/sorties/sortie-81902/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/10/20210604_Marseilleveyre_Rugolopterix_arkamurae_2_BioLit_Marine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/10/20210604_Marseilleveyre_Rugolopterix_arkamurae_BioLit_Marine-scaled.jpg,06/04/2021,14.0000000,14.0000000,43.2095730000000,5.37236400000000,Planète Mer,Calanque de Marseilleveyre,81904,Observation #81904,https://biolit.fr/observations/observation-81904/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/10/20210604_Marseilleveyre_Rugolopterix_arkamurae_2_BioLit_Marine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2024/10/20210604_Marseilleveyre_Rugolopterix_arkamurae_BioLit_Marine-scaled.jpg,,TRUE,Identifiable +N1,81935,Sortie #81935,https://biolit.fr/sorties/sortie-81935/,Fredj Adem,https://biolit.fr/wp-content/uploads/jet-form-builder/0999539c1f50017466f0110034a28cbe/2024/10/image-scaled.jpg,10/20/2024 0:00,16.000003,16.000005,43.312813000000,5.416260000000,Naturoscope (Antenne Marseille),Plage marseille,81937,Observation #81937,https://biolit.fr/observations/observation-81937/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/0999539c1f50017466f0110034a28cbe/2024/10/image-scaled.jpg,,TRUE,Ne sais pas +N1,81945,Sortie #81945,https://biolit.fr/sorties/sortie-81945/,Bernardin Herve,https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/IMG_8522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/IMG_8523.png | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/IMG_8524-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/IMG_8525-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/IMG_8526-scaled.jpeg,10/20/2024 0:00,16.0:23,18.0000000,48.6836230000000,-1.94595300000000,,Saint Malo,,,,,,,,,, +N1,81951,Sortie #81951,https://biolit.fr/sorties/sortie-81951/,LACROIX MARTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/quadrat-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/phot-quad-1-monodonte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/phot-quad-1-patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/phot-quad1-littorine-des-R.jpg,10/20/2024 0:00,16.0:23,18.0000000,48.6860140000000,-1.96167800000000,,HAVRE DE ROTHENEUF,81955,Observation #81955,https://biolit.fr/observations/observation-81955/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/phot-quad-1-monodonte.jpg,,TRUE,Identifiable +N1,81951,Sortie #81951,https://biolit.fr/sorties/sortie-81951/,LACROIX MARTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/quadrat-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/phot-quad-1-monodonte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/phot-quad-1-patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/phot-quad1-littorine-des-R.jpg,10/20/2024 0:00,16.0:23,18.0000000,48.6860140000000,-1.96167800000000,,HAVRE DE ROTHENEUF,81963,Observation #81963,https://biolit.fr/observations/observation-81963/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/phot-quad1-littorine-des-R.jpg,,TRUE,Identifiable +N1,81951,Sortie #81951,https://biolit.fr/sorties/sortie-81951/,LACROIX MARTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/quadrat-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/phot-quad-1-monodonte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/phot-quad-1-patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/phot-quad1-littorine-des-R.jpg,10/20/2024 0:00,16.0:23,18.0000000,48.6860140000000,-1.96167800000000,,HAVRE DE ROTHENEUF,81965,Observation #81965,https://biolit.fr/observations/observation-81965/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/phot-quad-1-patelle.jpg,,TRUE,Identifiable +N1,81984,Sortie #81984,https://biolit.fr/sorties/sortie-81984/,Berry Anais,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0000.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0002.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0013.jpg,10/20/2024 0:00,9.0000000,11.0000000,43.449753000000,3.80820000000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,81987,Observation #81987,https://biolit.fr/observations/observation-81987/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0000.jpg,,,Identifiable +N1,81984,Sortie #81984,https://biolit.fr/sorties/sortie-81984/,Berry Anais,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0000.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0002.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0013.jpg,10/20/2024 0:00,9.0000000,11.0000000,43.449753000000,3.80820000000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,81990,Observation #81990,https://biolit.fr/observations/observation-81990/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0002.jpg,,,Identifiable +N1,81984,Sortie #81984,https://biolit.fr/sorties/sortie-81984/,Berry Anais,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0000.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0002.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0013.jpg,10/20/2024 0:00,9.0000000,11.0000000,43.449753000000,3.80820000000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,81992,Observation #81992,https://biolit.fr/observations/observation-81992/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0003.jpg,,,Identifiable +N1,81984,Sortie #81984,https://biolit.fr/sorties/sortie-81984/,Berry Anais,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0000.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0002.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0013.jpg,10/20/2024 0:00,9.0000000,11.0000000,43.449753000000,3.80820000000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,81994,Observation #81994,https://biolit.fr/observations/observation-81994/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0004.jpg,,TRUE,Identifiable +N1,81984,Sortie #81984,https://biolit.fr/sorties/sortie-81984/,Berry Anais,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0000.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0002.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0013.jpg,10/20/2024 0:00,9.0000000,11.0000000,43.449753000000,3.80820000000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,81996,Observation #81996,https://biolit.fr/observations/observation-81996/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0005.jpg,,, +N1,82009,Sortie #82009,https://biolit.fr/sorties/sortie-82009/,Berry Anais,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0007-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0008-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0009-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0010-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0012-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0013-1.jpg,10/20/2024 0:00,9.0000000,11.0000000,43.4497120000000,3.80802900000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,82011,Observation #82011,https://biolit.fr/observations/observation-82011/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0006-1.jpg,,TRUE,Identifiable +N1,82009,Sortie #82009,https://biolit.fr/sorties/sortie-82009/,Berry Anais,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0007-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0008-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0009-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0010-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0012-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0013-1.jpg,10/20/2024 0:00,9.0000000,11.0000000,43.4497120000000,3.80802900000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,82013,Observation #82013,https://biolit.fr/observations/observation-82013/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0007-1.jpg,,TRUE,Identifiable +N1,82009,Sortie #82009,https://biolit.fr/sorties/sortie-82009/,Berry Anais,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0007-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0008-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0009-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0010-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0012-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0013-1.jpg,10/20/2024 0:00,9.0000000,11.0000000,43.4497120000000,3.80802900000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,82015,Observation #82015,https://biolit.fr/observations/observation-82015/,Eunicella singularis,Gorgone blanche,,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0008-1.jpg,,TRUE,Identifiable +N1,82009,Sortie #82009,https://biolit.fr/sorties/sortie-82009/,Berry Anais,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0007-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0008-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0009-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0010-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0012-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0013-1.jpg,10/20/2024 0:00,9.0000000,11.0000000,43.4497120000000,3.80802900000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,82017,Observation #82017,https://biolit.fr/observations/observation-82017/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0009-1.jpg,,,Identifiable +N1,82009,Sortie #82009,https://biolit.fr/sorties/sortie-82009/,Berry Anais,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0007-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0008-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0009-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0010-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0012-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0013-1.jpg,10/20/2024 0:00,9.0000000,11.0000000,43.4497120000000,3.80802900000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,82019,Observation #82019,https://biolit.fr/observations/observation-82019/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0010-1.jpg,,,Ne sais pas +N1,82009,Sortie #82009,https://biolit.fr/sorties/sortie-82009/,Berry Anais,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0007-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0008-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0009-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0010-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0012-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0013-1.jpg,10/20/2024 0:00,9.0000000,11.0000000,43.4497120000000,3.80802900000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,82021,Observation #82021,https://biolit.fr/observations/observation-82021/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0011-1.jpg,,TRUE,Identifiable +N1,82009,Sortie #82009,https://biolit.fr/sorties/sortie-82009/,Berry Anais,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0007-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0008-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0009-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0010-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0012-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0013-1.jpg,10/20/2024 0:00,9.0000000,11.0000000,43.4497120000000,3.80802900000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,82023,Observation #82023,https://biolit.fr/observations/observation-82023/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0012-1.jpg,,TRUE,Identifiable +N1,82009,Sortie #82009,https://biolit.fr/sorties/sortie-82009/,Berry Anais,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0007-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0008-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0009-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0010-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0011-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0012-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0013-1.jpg,10/20/2024 0:00,9.0000000,11.0000000,43.4497120000000,3.80802900000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,82025,Observation #82025,https://biolit.fr/observations/observation-82025/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6cdb8396721d449d3f78770a05759ba3/2024/10/IMG-20241020-WA0013-1.jpg,,,Identifiable +N1,82041,Sortie #82041,https://biolit.fr/sorties/sortie-82041/,Bernardin Herve,https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/GPSQ4-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Ombilique-Q4-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Patelle-Q4-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Photo-Q4-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Pourpe-Q4-1.jpg,10/20/2024 0:00,16.0:23,18.0000000,48.6677940,-1.9762590,,Saint Malo Havre du Lupin,82043,Observation #82043,https://biolit.fr/observations/observation-82043/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Ombilique-Q4-1.jpg,,TRUE,Identifiable +N1,82041,Sortie #82041,https://biolit.fr/sorties/sortie-82041/,Bernardin Herve,https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/GPSQ4-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Ombilique-Q4-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Patelle-Q4-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Photo-Q4-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Pourpe-Q4-1.jpg,10/20/2024 0:00,16.0:23,18.0000000,48.6677940,-1.9762590,,Saint Malo Havre du Lupin,82045,Observation #82045,https://biolit.fr/observations/observation-82045/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Patelle-Q4-1.jpg,,TRUE,Identifiable +N1,82041,Sortie #82041,https://biolit.fr/sorties/sortie-82041/,Bernardin Herve,https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/GPSQ4-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Ombilique-Q4-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Patelle-Q4-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Photo-Q4-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Pourpe-Q4-1.jpg,10/20/2024 0:00,16.0:23,18.0000000,48.6677940,-1.9762590,,Saint Malo Havre du Lupin,82047,Observation #82047,https://biolit.fr/observations/observation-82047/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Pourpe-Q4-1.jpg,,TRUE,Identifiable +N1,82041,Sortie #82041,https://biolit.fr/sorties/sortie-82041/,Bernardin Herve,https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/GPSQ4-1.png | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Ombilique-Q4-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Patelle-Q4-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Photo-Q4-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Pourpe-Q4-1.jpg,10/20/2024 0:00,16.0:23,18.0000000,48.6677940,-1.9762590,,Saint Malo Havre du Lupin,82049,Observation #82049,https://biolit.fr/observations/observation-82049/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/10/Patelle-Q4-1.jpg,,TRUE,Identifiable +N1,82053,Sortie #82053,https://biolit.fr/sorties/sortie-82053/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_7949-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_7950-scaled.jpeg,10/22/2024 0:00,7.0000000,8.0000000,48.6399330000000,-2.07320800000000,,Dinard,82055,Observation #82055,https://biolit.fr/observations/observation-82055/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_7949-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_7950-scaled.jpeg,,TRUE,Identifiable +N1,82058,Sortie #82058,https://biolit.fr/sorties/sortie-82058/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_7962-scaled.jpeg,10/22/2024 0:00,7.0000000,8.0000000,48.6405260000000,-2.07517700000000,,Dinard,82060,Observation #82060,https://biolit.fr/observations/observation-82060/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_7962-scaled.jpeg,,TRUE,Identifiable +N1,82063,Sortie #82063,https://biolit.fr/sorties/sortie-82063/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_7945.jpeg,10/22/2024 0:00,7.0000000,8.0000000,48.6402370000000,-2.07420600000000,,Dinard,82065,Observation #82065,https://biolit.fr/observations/observation-82065/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_7945.jpeg,,TRUE,Identifiable +N1,82068,Sortie #82068,https://biolit.fr/sorties/sortie-82068/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_7936.jpeg,10/22/2024 0:00,7.0000000,8.0000000,48.6402170000000,-2.07400200000000,,Dinard,,,,,,,,,, +N1,82071,Sortie #82071,https://biolit.fr/sorties/sortie-82071/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_7936-1.jpeg,10/22/2024 0:00,7.0000000,8.0000000,48.640378000000,-2.07493500000000,,Dinard,82073,Observation #82073,https://biolit.fr/observations/observation-82073/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_7936-1.jpeg,,TRUE,Identifiable +N1,82082,Sortie #82082,https://biolit.fr/sorties/sortie-82082/,LACROIX MARTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/quad-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/Quad3-photB.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/Quad-3-phot-C.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/Quad3-photB-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/Quad-3-photA.jpg,10/20/2024 0:00,16.0:23,18.0000000,48.6855080000000,-1.96142900000000,,Le Havre de Rontheneuf - St Malo,82084,Observation #82084,https://biolit.fr/observations/observation-82084/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/Quad-3-photA.jpg,,TRUE,Identifiable +N1,82082,Sortie #82082,https://biolit.fr/sorties/sortie-82082/,LACROIX MARTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/quad-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/Quad3-photB.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/Quad-3-phot-C.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/Quad3-photB-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/Quad-3-photA.jpg,10/20/2024 0:00,16.0:23,18.0000000,48.6855080000000,-1.96142900000000,,Le Havre de Rontheneuf - St Malo,82086,Observation #82086,https://biolit.fr/observations/observation-82086/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/Quad3-photB.jpg,,TRUE,Identifiable +N1,82082,Sortie #82082,https://biolit.fr/sorties/sortie-82082/,LACROIX MARTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/quad-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/Quad3-photB.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/Quad-3-phot-C.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/Quad3-photB-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/Quad-3-photA.jpg,10/20/2024 0:00,16.0:23,18.0000000,48.6855080000000,-1.96142900000000,,Le Havre de Rontheneuf - St Malo,82088,Observation #82088,https://biolit.fr/observations/observation-82088/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/Quad-3-phot-C.jpg,,TRUE,Identifiable +N1,82091,Sortie #82091,https://biolit.fr/sorties/sortie-82091/,LACROIX MARTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/60e32cd0963d5d1ea34da25d5860a3f5/2024/10/quad-3-1.jpg,10/20/2024 0:00,16.0:23,18.0000000,48.6865660000000,-1.96158300000000,,Le Havre de Rotheneuf - St Malo,,,,,,,,,, +N1,82113,Sortie #82113,https://biolit.fr/sorties/sortie-82113/,Margot Augeix,https://biolit.fr/wp-content/uploads/jet-form-builder/374ce002fc9c6e5ed1ebee3d63be62c5/2024/10/IMG_1794-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/374ce002fc9c6e5ed1ebee3d63be62c5/2024/10/IMG_1793-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/374ce002fc9c6e5ed1ebee3d63be62c5/2024/10/IMG_1790-scaled.jpeg,10/23/2024 0:00,9.0000000,10.0000000,43.2841100000000,5.31550500000000,,Esteve,,,,,,,,,, +N1,82135,Sortie #82135,https://biolit.fr/sorties/sortie-82135/,Augeix Annie,https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5603-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5602-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5601-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5600-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5599-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5598-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5597-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5596-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5595-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5594-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5593-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5592-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5591-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5590-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5587-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5581-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5572-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5570-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5568-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/86669ffb0785e786593cba281d946b57/2024/10/IMG_5566-scaled.jpeg,10/23/2024 0:00,9.0000000,10.0:36,43.1847770000000,5.152588000000,,,,,,,,,,,, +N1,82142,Sortie #82142,https://biolit.fr/sorties/sortie-82142/,Augeix Yves,https://biolit.fr/wp-content/uploads/jet-form-builder/6ee5aa238d475f088f106d1812925bcd/2024/10/DSC_7038-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6ee5aa238d475f088f106d1812925bcd/2024/10/DSC_7037-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6ee5aa238d475f088f106d1812925bcd/2024/10/DSC_7036-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6ee5aa238d475f088f106d1812925bcd/2024/10/DSC_7035-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6ee5aa238d475f088f106d1812925bcd/2024/10/DSC_7034-scaled.jpeg,10/23/2024 0:00,10.0:53,10.0:53,43.2840580000000,5.31544100000000,,Plage de saint esteve,82144,Observation #82144,https://biolit.fr/observations/observation-82144/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6ee5aa238d475f088f106d1812925bcd/2024/10/DSC_7038-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6ee5aa238d475f088f106d1812925bcd/2024/10/DSC_7037-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6ee5aa238d475f088f106d1812925bcd/2024/10/DSC_7036-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6ee5aa238d475f088f106d1812925bcd/2024/10/DSC_7035-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6ee5aa238d475f088f106d1812925bcd/2024/10/DSC_7034-scaled.jpeg,,,Ne sais pas +N1,82150,Sortie #82150,https://biolit.fr/sorties/sortie-82150/,CAUDRILLIER Camille,https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_103006-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_102959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_101619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_100258-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.284270000000,5.31575500000000,Planète Mer,Plage de St-Estève,82157,Observation #82157,https://biolit.fr/observations/observation-82157/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_103006-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_102959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_101619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_100258-scaled.jpg,,,Ne sais pas +N1,82150,Sortie #82150,https://biolit.fr/sorties/sortie-82150/,CAUDRILLIER Camille,https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_103006-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_102959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_101619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_100258-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.284270000000,5.31575500000000,Planète Mer,Plage de St-Estève,82183,Observation #82183,https://biolit.fr/observations/observation-82183/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_103006-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_102959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_101619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_100258-scaled.jpg,,,Ne sais pas +N1,82150,Sortie #82150,https://biolit.fr/sorties/sortie-82150/,CAUDRILLIER Camille,https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_103006-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_102959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_101619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_100258-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.284270000000,5.31575500000000,Planète Mer,Plage de St-Estève,82187,Observation #82187,https://biolit.fr/observations/observation-82187/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_102959-scaled.jpg,,,Ne sais pas +N1,82150,Sortie #82150,https://biolit.fr/sorties/sortie-82150/,CAUDRILLIER Camille,https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_103006-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_102959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_101619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_100258-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.284270000000,5.31575500000000,Planète Mer,Plage de St-Estève,82190,Observation #82190,https://biolit.fr/observations/observation-82190/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_101619-scaled.jpg,,,Ne sais pas +N1,82150,Sortie #82150,https://biolit.fr/sorties/sortie-82150/,CAUDRILLIER Camille,https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_103006-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_102959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_101619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_100258-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.284270000000,5.31575500000000,Planète Mer,Plage de St-Estève,82193,Observation #82193,https://biolit.fr/observations/observation-82193/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/8e851be189c613eba3332c352ea9847d/2024/10/20241023_100258-scaled.jpg,,TRUE, +N1,82153,Sortie #82153,https://biolit.fr/sorties/sortie-82153/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5947-scaled.jpeg,10/23/2024 0:00,9.0000000,10.0000000,43.2842810000000,5.31589200000000,Planète Mer,Plage de St Estève,82160,Observation #82160,https://biolit.fr/observations/observation-82160/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5947-scaled.jpeg,,TRUE,Identifiable +N1,82159,Sortie #82159,https://biolit.fr/sorties/sortie-82159/,Margot Augeix,https://biolit.fr/wp-content/uploads/jet-form-builder/374ce002fc9c6e5ed1ebee3d63be62c5/2024/10/IMG_1794-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/374ce002fc9c6e5ed1ebee3d63be62c5/2024/10/IMG_1793-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/374ce002fc9c6e5ed1ebee3d63be62c5/2024/10/IMG_1790-1-scaled.jpeg,10/23/2024 0:00,11.0:13,11.0:13,43.2844210000000,5.31598800000000,Planète Mer,Evrette,,,,,,,,,, +N1,82172,Sortie #82172,https://biolit.fr/sorties/sortie-82172/,Barrocas Diane,https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4114-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4112-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4109-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4108-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4107-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4106-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4104-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4102-scaled.jpeg,10/23/2024 0:00,10.0000000,10.0000000,43.2819310000000,5.30914300000000,Planète Mer,Île du Frioul - Plage de St Esteve,82181,Observation #82181,https://biolit.fr/observations/observation-82181/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4114-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4112-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4109-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4108-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4107-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4106-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4104-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4102-scaled.jpeg,,,Ne sais pas +N1,82172,Sortie #82172,https://biolit.fr/sorties/sortie-82172/,Barrocas Diane,https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4114-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4112-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4109-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4108-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4107-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4106-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4104-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4102-scaled.jpeg,10/23/2024 0:00,10.0000000,10.0000000,43.2819310000000,5.30914300000000,Planète Mer,Île du Frioul - Plage de St Esteve,82201,Observation #82201,https://biolit.fr/observations/observation-82201/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4106-scaled.jpeg,,TRUE,Identifiable +N1,82172,Sortie #82172,https://biolit.fr/sorties/sortie-82172/,Barrocas Diane,https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4114-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4112-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4109-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4108-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4107-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4106-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4104-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4102-scaled.jpeg,10/23/2024 0:00,10.0000000,10.0000000,43.2819310000000,5.30914300000000,Planète Mer,Île du Frioul - Plage de St Esteve,82203,Observation #82203,https://biolit.fr/observations/observation-82203/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4112-scaled.jpeg,,TRUE,Ne sais pas +N1,82172,Sortie #82172,https://biolit.fr/sorties/sortie-82172/,Barrocas Diane,https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4114-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4112-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4109-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4108-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4107-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4106-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4104-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4102-scaled.jpeg,10/23/2024 0:00,10.0000000,10.0000000,43.2819310000000,5.30914300000000,Planète Mer,Île du Frioul - Plage de St Esteve,82205,Observation #82205,https://biolit.fr/observations/observation-82205/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7a8c57d2fcd9970eb13c4887638f6bf7/2024/10/IMG_4109-scaled.jpeg,,,Ne sais pas +N1,82179,Sortie #82179,https://biolit.fr/sorties/sortie-82179/,Barrocas Adrien,https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1615-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1614-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1610-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1609-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1613-scaled.jpeg,10/23/2024 0:00,10.0000000,10.0:45,43.2842190000000,5.31598300000000,Planète Mer,Frioul - Plage de Saint-Estève,82185,Observation #82185,https://biolit.fr/observations/observation-82185/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1615-scaled.jpeg,,,Ne sais pas +N1,82179,Sortie #82179,https://biolit.fr/sorties/sortie-82179/,Barrocas Adrien,https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1615-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1614-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1610-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1609-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1613-scaled.jpeg,10/23/2024 0:00,10.0000000,10.0:45,43.2842190000000,5.31598300000000,Planète Mer,Frioul - Plage de Saint-Estève,82189,Observation #82189,https://biolit.fr/observations/observation-82189/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1614-scaled.jpeg,,,Ne sais pas +N1,82179,Sortie #82179,https://biolit.fr/sorties/sortie-82179/,Barrocas Adrien,https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1615-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1614-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1610-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1609-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1613-scaled.jpeg,10/23/2024 0:00,10.0000000,10.0:45,43.2842190000000,5.31598300000000,Planète Mer,Frioul - Plage de Saint-Estève,82195,Observation #82195,https://biolit.fr/observations/observation-82195/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1610-scaled.jpeg,,,Ne sais pas +N1,82179,Sortie #82179,https://biolit.fr/sorties/sortie-82179/,Barrocas Adrien,https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1615-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1614-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1610-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1609-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1613-scaled.jpeg,10/23/2024 0:00,10.0000000,10.0:45,43.2842190000000,5.31598300000000,Planète Mer,Frioul - Plage de Saint-Estève,82197,Observation #82197,https://biolit.fr/observations/observation-82197/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1609-scaled.jpeg,,,Ne sais pas +N1,82179,Sortie #82179,https://biolit.fr/sorties/sortie-82179/,Barrocas Adrien,https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1615-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1614-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1610-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1609-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1613-scaled.jpeg,10/23/2024 0:00,10.0000000,10.0:45,43.2842190000000,5.31598300000000,Planète Mer,Frioul - Plage de Saint-Estève,82199,Observation #82199,https://biolit.fr/observations/observation-82199/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/821fa6ba18e5cd3c2dcc61c619428762/2024/10/IMG_1613-scaled.jpeg,,,Ne sais pas +N1,82217,Sortie #82217,https://biolit.fr/sorties/sortie-82217/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/monodonte-q1-scaled.jpg,10/24/2024 0:00,4.0000000,4.0000000,48.6973610000000,-1.87368400000000,,Plage de la Touesse,,,,,,,,,, +N1,82233,Sortie #82233,https://biolit.fr/sorties/sortie-82233/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_145937434.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20241024-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151328246-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154455870.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160058768.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162122951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162419546.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162629975-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151123278.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154248432.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160301757.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162139224.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_163011818.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_165811202-scaled.jpg,10/23/2024 0:00,17.0000000,18.0000000,43.5464030000000,4.1224320000000,LABELBLEU,Plage du Boucanet,82235,Observation #82235,https://biolit.fr/observations/observation-82235/,Mnemiopsis leidyi,Mnémiopsis,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20241024-WA0003.jpg,,TRUE,Identifiable +N1,82233,Sortie #82233,https://biolit.fr/sorties/sortie-82233/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_145937434.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20241024-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151328246-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154455870.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160058768.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162122951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162419546.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162629975-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151123278.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154248432.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160301757.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162139224.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_163011818.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_165811202-scaled.jpg,10/23/2024 0:00,17.0000000,18.0000000,43.5464030000000,4.1224320000000,LABELBLEU,Plage du Boucanet,82237,Observation #82237,https://biolit.fr/observations/observation-82237/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154455870.MP_-scaled.jpg,,,Ne sais pas +N1,82233,Sortie #82233,https://biolit.fr/sorties/sortie-82233/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_145937434.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20241024-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151328246-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154455870.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160058768.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162122951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162419546.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162629975-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151123278.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154248432.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160301757.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162139224.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_163011818.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_165811202-scaled.jpg,10/23/2024 0:00,17.0000000,18.0000000,43.5464030000000,4.1224320000000,LABELBLEU,Plage du Boucanet,82239,Observation #82239,https://biolit.fr/observations/observation-82239/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160058768.MP_-scaled.jpg,,,Identifiable +N1,82233,Sortie #82233,https://biolit.fr/sorties/sortie-82233/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_145937434.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20241024-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151328246-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154455870.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160058768.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162122951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162419546.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162629975-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151123278.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154248432.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160301757.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162139224.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_163011818.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_165811202-scaled.jpg,10/23/2024 0:00,17.0000000,18.0000000,43.5464030000000,4.1224320000000,LABELBLEU,Plage du Boucanet,82241,Observation #82241,https://biolit.fr/observations/observation-82241/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162122951-scaled.jpg,,TRUE,Identifiable +N1,82233,Sortie #82233,https://biolit.fr/sorties/sortie-82233/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_145937434.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20241024-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151328246-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154455870.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160058768.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162122951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162419546.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162629975-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151123278.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154248432.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160301757.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162139224.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_163011818.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_165811202-scaled.jpg,10/23/2024 0:00,17.0000000,18.0000000,43.5464030000000,4.1224320000000,LABELBLEU,Plage du Boucanet,82243,Observation #82243,https://biolit.fr/observations/observation-82243/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162419546.MP_-scaled.jpg,,TRUE,Identifiable +N1,82233,Sortie #82233,https://biolit.fr/sorties/sortie-82233/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_145937434.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20241024-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151328246-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154455870.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160058768.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162122951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162419546.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162629975-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151123278.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154248432.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160301757.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162139224.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_163011818.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_165811202-scaled.jpg,10/23/2024 0:00,17.0000000,18.0000000,43.5464030000000,4.1224320000000,LABELBLEU,Plage du Boucanet,82245,Observation #82245,https://biolit.fr/observations/observation-82245/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162629975-scaled.jpg,,,Ne sais pas +N1,82233,Sortie #82233,https://biolit.fr/sorties/sortie-82233/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_145937434.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20241024-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151328246-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154455870.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160058768.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162122951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162419546.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162629975-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151123278.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154248432.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160301757.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162139224.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_163011818.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_165811202-scaled.jpg,10/23/2024 0:00,17.0000000,18.0000000,43.5464030000000,4.1224320000000,LABELBLEU,Plage du Boucanet,82247,Observation #82247,https://biolit.fr/observations/observation-82247/,Bolinus brandaris,Murex épineux,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151123278.MP_-scaled.jpg,,TRUE,Identifiable +N1,82233,Sortie #82233,https://biolit.fr/sorties/sortie-82233/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_145937434.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20241024-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151328246-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154455870.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160058768.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162122951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162419546.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162629975-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151123278.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154248432.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160301757.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162139224.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_163011818.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_165811202-scaled.jpg,10/23/2024 0:00,17.0000000,18.0000000,43.5464030000000,4.1224320000000,LABELBLEU,Plage du Boucanet,82249,Observation #82249,https://biolit.fr/observations/observation-82249/,Bosemprella incarnata,Telline rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162139224.MP_-scaled.jpg,,,Identifiable +N1,82233,Sortie #82233,https://biolit.fr/sorties/sortie-82233/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_145937434.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/IMG-20241024-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151328246-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154455870.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160058768.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162122951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162419546.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162629975-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151123278.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_154248432.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_160301757.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_162139224.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_163011818.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_165811202-scaled.jpg,10/23/2024 0:00,17.0000000,18.0000000,43.5464030000000,4.1224320000000,LABELBLEU,Plage du Boucanet,82251,Observation #82251,https://biolit.fr/observations/observation-82251/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/10/PXL_20241023_151328246-scaled.jpg,,,Ne sais pas +N1,82263,Sortie #82263,https://biolit.fr/sorties/sortie-82263/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6273-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6275-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6290-scaled.jpg,10/17/2024 0:00,9.0000000,11.0000000,47.8695250000000,-4.11411200000000,Planète Mer (antenne Dinard),Centre Nautique de Sainte Marine,82265,Observation #82265,https://biolit.fr/observations/observation-82265/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6290-scaled.jpg,,TRUE,Identifiable +N1,82263,Sortie #82263,https://biolit.fr/sorties/sortie-82263/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6273-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6275-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6290-scaled.jpg,10/17/2024 0:00,9.0000000,11.0000000,47.8695250000000,-4.11411200000000,Planète Mer (antenne Dinard),Centre Nautique de Sainte Marine,82267,Observation #82267,https://biolit.fr/observations/observation-82267/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6275-scaled.jpg,,TRUE,Identifiable +N1,82263,Sortie #82263,https://biolit.fr/sorties/sortie-82263/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6273-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6275-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6290-scaled.jpg,10/17/2024 0:00,9.0000000,11.0000000,47.8695250000000,-4.11411200000000,Planète Mer (antenne Dinard),Centre Nautique de Sainte Marine,82269,Observation #82269,https://biolit.fr/observations/observation-82269/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6273-scaled.jpg,,TRUE,Identifiable +N1,82273,Sortie #82273,https://biolit.fr/sorties/sortie-82273/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6453-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6463-scaled.jpg,10/22/2024 0:00,13.0000000,18.0000000,48.6652920000000,-3.86117900000000,Planète Mer (antenne Dinard),Rivière de Morlaix,82275,Observation #82275,https://biolit.fr/observations/observation-82275/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6453-scaled.jpg,,TRUE,Identifiable +N1,82273,Sortie #82273,https://biolit.fr/sorties/sortie-82273/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6453-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6463-scaled.jpg,10/22/2024 0:00,13.0000000,18.0000000,48.6652920000000,-3.86117900000000,Planète Mer (antenne Dinard),Rivière de Morlaix,82277,Observation #82277,https://biolit.fr/observations/observation-82277/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/10/IMG_6463-scaled.jpg,,TRUE,Ne sais pas +N1,82285,Sortie #82285,https://biolit.fr/sorties/sortie-82285/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_8232-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_8233-scaled.jpeg,10/24/2024 0:00,15.0000000,16.0000000,48.6413510000000,-2.41644500000000,,Fréhel,82287,Observation #82287,https://biolit.fr/observations/observation-82287/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_8232-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_8233-scaled.jpeg,,TRUE,Identifiable +N1,82300,Sortie #82300,https://biolit.fr/sorties/sortie-82300/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163532-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163910-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163941-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164109-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.273547,5.361856,,Plage du Prophète,82302,Observation #82302,https://biolit.fr/observations/observation-82302/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164109-scaled.jpg,,TRUE,Identifiable +N1,82300,Sortie #82300,https://biolit.fr/sorties/sortie-82300/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163532-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163910-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163941-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164109-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.273547,5.361856,,Plage du Prophète,82304,Observation #82304,https://biolit.fr/observations/observation-82304/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164109-scaled.jpg,,TRUE,Identifiable +N1,82300,Sortie #82300,https://biolit.fr/sorties/sortie-82300/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163532-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163910-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163941-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164109-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.273547,5.361856,,Plage du Prophète,82306,Observation #82306,https://biolit.fr/observations/observation-82306/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163617-scaled.jpg,,TRUE,Identifiable +N1,82300,Sortie #82300,https://biolit.fr/sorties/sortie-82300/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163532-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163910-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163941-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164109-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.273547,5.361856,,Plage du Prophète,82308,Observation #82308,https://biolit.fr/observations/observation-82308/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163614-scaled.jpg,,,Identifiable +N1,82300,Sortie #82300,https://biolit.fr/sorties/sortie-82300/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163532-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163910-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163941-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164109-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.273547,5.361856,,Plage du Prophète,82310,Observation #82310,https://biolit.fr/observations/observation-82310/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163910-scaled.jpg,,TRUE,Identifiable +N1,82300,Sortie #82300,https://biolit.fr/sorties/sortie-82300/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163532-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163910-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163941-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164109-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.273547,5.361856,,Plage du Prophète,82312,Observation #82312,https://biolit.fr/observations/observation-82312/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163917-scaled.jpg,,TRUE,Identifiable +N1,82300,Sortie #82300,https://biolit.fr/sorties/sortie-82300/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163532-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163910-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163941-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164109-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.273547,5.361856,,Plage du Prophète,82314,Observation #82314,https://biolit.fr/observations/observation-82314/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163532-scaled.jpg,,,non-identifiable +N1,82300,Sortie #82300,https://biolit.fr/sorties/sortie-82300/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163532-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163910-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163941-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164109-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.273547,5.361856,,Plage du Prophète,82316,Observation #82316,https://biolit.fr/observations/observation-82316/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163432-scaled.jpg,,,Ne sais pas +N1,82300,Sortie #82300,https://biolit.fr/sorties/sortie-82300/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163532-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163910-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163941-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164109-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.273547,5.361856,,Plage du Prophète,82318,Observation #82318,https://biolit.fr/observations/observation-82318/,Flabellia petiolata,Udotée,,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163950-scaled.jpg,,TRUE,Ne sais pas +N1,82300,Sortie #82300,https://biolit.fr/sorties/sortie-82300/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163532-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163910-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163941-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164109-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.273547,5.361856,,Plage du Prophète,82320,Observation #82320,https://biolit.fr/observations/observation-82320/,Flabellia petiolata,Udotée,,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163941-scaled.jpg,,TRUE,Ne sais pas +N1,82300,Sortie #82300,https://biolit.fr/sorties/sortie-82300/,Naturoscope (Antenne Marseille),https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163532-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163910-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163941-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_164109-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.273547,5.361856,,Plage du Prophète,82322,Observation #82322,https://biolit.fr/observations/observation-82322/,Serpula vermicularis,Serpule,,https://biolit.fr/wp-content/uploads/jet-form-builder/619ea835aa5b2c14b77102ad78cddbc6/2024/10/IMG_20241023_163913-scaled.jpg,,,Identifiable +N1,82329,Sortie #82329,https://biolit.fr/sorties/sortie-82329/,Guidicelli Pierre-Ange,https://biolit.fr/wp-content/uploads/jet-form-builder/5c722d873dd906e225b7c851645f4852/2024/10/posidonie.jpg,10/25/2024 0:00,6.000003,6.000005,42.7409540000000,9.46152400000000,,,,,,,,,,,, +N1,82400,Sortie #82400,https://biolit.fr/sorties/sortie-82400/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5953-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5955-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5961-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5963-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5964-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5965-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5966-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5967-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.2842860000000,5.31601700000000,Planète Mer,St Estève,82402,Observation #82402,https://biolit.fr/observations/observation-82402/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5951-scaled.jpg,,TRUE,Identifiable +N1,82400,Sortie #82400,https://biolit.fr/sorties/sortie-82400/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5953-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5955-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5961-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5963-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5964-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5965-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5966-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5967-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.2842860000000,5.31601700000000,Planète Mer,St Estève,82404,Observation #82404,https://biolit.fr/observations/observation-82404/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5953-scaled.jpg,,TRUE,Identifiable +N1,82400,Sortie #82400,https://biolit.fr/sorties/sortie-82400/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5953-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5955-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5961-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5963-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5964-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5965-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5966-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5967-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.2842860000000,5.31601700000000,Planète Mer,St Estève,82406,Observation #82406,https://biolit.fr/observations/observation-82406/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5955-scaled.jpg,,TRUE,Identifiable +N1,82400,Sortie #82400,https://biolit.fr/sorties/sortie-82400/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5953-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5955-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5961-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5963-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5964-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5965-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5966-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5967-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.2842860000000,5.31601700000000,Planète Mer,St Estève,82408,Observation #82408,https://biolit.fr/observations/observation-82408/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5959-scaled.jpg,,,Ne sais pas +N1,82400,Sortie #82400,https://biolit.fr/sorties/sortie-82400/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5953-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5955-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5961-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5963-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5964-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5965-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5966-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5967-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.2842860000000,5.31601700000000,Planète Mer,St Estève,82410,Observation #82410,https://biolit.fr/observations/observation-82410/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5966-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5967-scaled.jpg,,TRUE,Identifiable +N1,82400,Sortie #82400,https://biolit.fr/sorties/sortie-82400/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5953-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5955-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5961-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5963-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5964-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5965-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5966-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5967-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.2842860000000,5.31601700000000,Planète Mer,St Estève,82412,Observation #82412,https://biolit.fr/observations/observation-82412/,Stramonita haemastoma,Bouche de sang,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5964-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5965-scaled.jpg,,TRUE,Identifiable +N1,82400,Sortie #82400,https://biolit.fr/sorties/sortie-82400/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5950-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5953-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5955-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5961-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5963-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5964-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5965-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5966-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5967-scaled.jpg,10/23/2024 0:00,10.0000000,11.0000000,43.2842860000000,5.31601700000000,Planète Mer,St Estève,82414,Observation #82414,https://biolit.fr/observations/observation-82414/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5960-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/10/IMG_5961-scaled.jpg,,,Ne sais pas +N1,82419,Sortie #82419,https://biolit.fr/sorties/sortie-82419/,Fouchs Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_7993-scaled.jpeg,10/22/2024 0:00,18.0000000,19.0000000,48.6362440000000,-2.05569300000000,,Dinard,82421,Observation #82421,https://biolit.fr/observations/observation-82421/,Styela clava,Ascidie japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/107d3d82ed94a94e7f623e3a65b37b36/2024/10/IMG_7993-scaled.jpeg,,TRUE,Identifiable +N1,82447,Sortie #82447,https://biolit.fr/sorties/sortie-82447/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3614.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3617.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3619.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3623.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3625.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3626.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3631.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3633.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3635.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3641.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3642.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3644.jpg,10/29/2024 0:00,9.0000000,16.0000000,46.6947140000000,-1.94819600000000,,Saint Gilles Croix de Vie,82449,Observation #82449,https://biolit.fr/observations/observation-82449/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3614.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3617.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3619.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3623.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3625.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3626.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3631.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3633.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3635.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3641.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3642.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3644.jpg,,,Ne sais pas +N1,82447,Sortie #82447,https://biolit.fr/sorties/sortie-82447/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3614.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3617.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3619.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3623.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3625.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3626.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3631.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3633.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3635.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3641.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3642.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3644.jpg,10/29/2024 0:00,9.0000000,16.0000000,46.6947140000000,-1.94819600000000,,Saint Gilles Croix de Vie,82451,Observation #82451,https://biolit.fr/observations/observation-82451/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3614.jpg,,,Ne sais pas +N1,82447,Sortie #82447,https://biolit.fr/sorties/sortie-82447/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3614.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3617.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3619.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3623.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3625.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3626.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3631.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3633.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3635.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3641.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3642.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3644.jpg,10/29/2024 0:00,9.0000000,16.0000000,46.6947140000000,-1.94819600000000,,Saint Gilles Croix de Vie,82453,Observation #82453,https://biolit.fr/observations/observation-82453/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3617.jpg,,,Ne sais pas +N1,82447,Sortie #82447,https://biolit.fr/sorties/sortie-82447/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3614.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3617.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3619.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3623.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3625.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3626.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3631.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3633.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3635.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3641.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3642.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3644.jpg,10/29/2024 0:00,9.0000000,16.0000000,46.6947140000000,-1.94819600000000,,Saint Gilles Croix de Vie,82455,Observation #82455,https://biolit.fr/observations/observation-82455/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3619.jpg,,,Ne sais pas +N1,82447,Sortie #82447,https://biolit.fr/sorties/sortie-82447/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3614.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3617.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3619.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3623.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3625.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3626.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3631.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3633.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3635.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3641.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3642.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3644.jpg,10/29/2024 0:00,9.0000000,16.0000000,46.6947140000000,-1.94819600000000,,Saint Gilles Croix de Vie,82457,Observation #82457,https://biolit.fr/observations/observation-82457/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3622.jpg,,,Ne sais pas +N1,82447,Sortie #82447,https://biolit.fr/sorties/sortie-82447/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3614.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3617.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3619.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3623.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3625.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3626.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3631.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3633.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3635.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3641.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3642.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3644.jpg,10/29/2024 0:00,9.0000000,16.0000000,46.6947140000000,-1.94819600000000,,Saint Gilles Croix de Vie,82459,Observation #82459,https://biolit.fr/observations/observation-82459/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3623.jpg,,TRUE,Ne sais pas +N1,82447,Sortie #82447,https://biolit.fr/sorties/sortie-82447/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3614.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3617.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3619.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3623.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3625.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3626.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3631.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3633.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3635.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3641.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3642.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3644.jpg,10/29/2024 0:00,9.0000000,16.0000000,46.6947140000000,-1.94819600000000,,Saint Gilles Croix de Vie,82461,Observation #82461,https://biolit.fr/observations/observation-82461/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3625.jpg,,,Ne sais pas +N1,82447,Sortie #82447,https://biolit.fr/sorties/sortie-82447/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3614.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3617.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3619.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3623.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3625.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3626.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3631.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3633.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3635.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3641.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3642.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3644.jpg,10/29/2024 0:00,9.0000000,16.0000000,46.6947140000000,-1.94819600000000,,Saint Gilles Croix de Vie,82463,Observation #82463,https://biolit.fr/observations/observation-82463/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3626.jpg,,,Ne sais pas +N1,82447,Sortie #82447,https://biolit.fr/sorties/sortie-82447/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3614.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3617.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3619.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3623.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3625.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3626.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3631.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3633.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3635.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3641.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3642.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3644.jpg,10/29/2024 0:00,9.0000000,16.0000000,46.6947140000000,-1.94819600000000,,Saint Gilles Croix de Vie,82465,Observation #82465,https://biolit.fr/observations/observation-82465/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3631.jpg,,,Ne sais pas +N1,82447,Sortie #82447,https://biolit.fr/sorties/sortie-82447/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3614.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3617.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3619.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3623.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3625.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3626.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3631.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3633.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3635.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3641.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3642.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3644.jpg,10/29/2024 0:00,9.0000000,16.0000000,46.6947140000000,-1.94819600000000,,Saint Gilles Croix de Vie,82467,Observation #82467,https://biolit.fr/observations/observation-82467/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3633.jpg,,,Ne sais pas +N1,82447,Sortie #82447,https://biolit.fr/sorties/sortie-82447/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3614.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3617.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3619.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3623.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3625.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3626.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3631.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3633.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3635.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3641.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3642.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3644.jpg,10/29/2024 0:00,9.0000000,16.0000000,46.6947140000000,-1.94819600000000,,Saint Gilles Croix de Vie,82469,Observation #82469,https://biolit.fr/observations/observation-82469/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3635.jpg,,,Ne sais pas +N1,82447,Sortie #82447,https://biolit.fr/sorties/sortie-82447/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3614.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3617.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3619.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3623.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3625.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3626.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3631.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3633.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3635.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3641.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3642.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3644.jpg,10/29/2024 0:00,9.0000000,16.0000000,46.6947140000000,-1.94819600000000,,Saint Gilles Croix de Vie,82471,Observation #82471,https://biolit.fr/observations/observation-82471/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3641.jpg,,,Ne sais pas +N1,82447,Sortie #82447,https://biolit.fr/sorties/sortie-82447/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3614.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3617.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3619.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3623.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3625.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3626.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3631.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3633.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3635.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3641.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3642.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3644.jpg,10/29/2024 0:00,9.0000000,16.0000000,46.6947140000000,-1.94819600000000,,Saint Gilles Croix de Vie,82473,Observation #82473,https://biolit.fr/observations/observation-82473/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3642.jpg,,,Ne sais pas +N1,82447,Sortie #82447,https://biolit.fr/sorties/sortie-82447/,CHAFFOT JOHAN,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3614.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3617.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3619.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3622.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3623.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3625.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3626.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3631.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3633.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3635.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3641.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3642.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3644.jpg,10/29/2024 0:00,9.0000000,16.0000000,46.6947140000000,-1.94819600000000,,Saint Gilles Croix de Vie,82475,Observation #82475,https://biolit.fr/observations/observation-82475/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cb30a458cb3d632e407996cca7a52edb/2024/10/IMG_3644.jpg,,,Ne sais pas +N1,82497,Sortie #82497,https://biolit.fr/sorties/sortie-82497/,TIGNON Anthony,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029102844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029102850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029103036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029103042_01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029103048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029103228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029103230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029103458-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029103547-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029104813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029105313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029105338-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029105816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029105821-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029114328-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029114429-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029114444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029114448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029114450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/10/IMG20241029115334-scaled.jpg,10/29/2024 0:00,9.0:45,16.0000000,46.6903190000000,-1.94101800000000,,SAINT GILLES CROIX DE VIE,,,,,,,,,, +N1,82532,Sortie #82532,https://biolit.fr/sorties/sortie-82532/,BENSOUSSAN NOAM,https://biolit.fr/wp-content/uploads/jet-form-builder/badb8f677b380e1097819da771a72519/2024/11/21-OS-DE-SEICHE.png,11/01/2024,15.0:15,16.0000000,48.358799000000,-4.54189000000000,,"sainte Anne du portzic, Brest",,,,,,,,,, +N1,82535,Sortie #82535,https://biolit.fr/sorties/sortie-82535/,AILERONS,https://biolit.fr/wp-content/uploads/jet-form-builder/104a3ad0debfd3bf7c7f67cd28f4351b/2024/11/20241103_111827.jpg,11/03/2024,11.0000000,11.0:19,43.5230780000000,3.92322400000000,Ailerons,"Plage du zénith, Palavas-les-Flots",82537,Observation #82537,https://biolit.fr/observations/observation-82537/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/104a3ad0debfd3bf7c7f67cd28f4351b/2024/11/20241103_111827.jpg,,TRUE,Identifiable +N1,82559,Sortie #82559,https://biolit.fr/sorties/sortie-82559/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1596-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1595-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1594-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1593-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1591-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1590-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1589-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1588-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1579-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1578-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1575-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1571-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1570-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1569-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1567-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1565-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1563.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1561-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1559.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1554.jpeg,11/01/2024,14.0000000,17.0000000,49.5885650000000,0.110722000000000,,Octeville-sur-Mer,,,,,,,,,, +N1,82562,Sortie #82562,https://biolit.fr/sorties/sortie-82562/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1596-1-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5885650000000,0.110722000000000,,Octeville-sur-Mer,,,,,,,,,, +N1,82566,Sortie #82566,https://biolit.fr/sorties/sortie-82566/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1595-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1594-1-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5888430000000,0.112009000000000,,Octeville-sur-Mer,,,,,,,,,, +N1,82569,Sortie #82569,https://biolit.fr/sorties/sortie-82569/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1593-1-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5895610000000,0.112438000000000,,Octeville-sur-Mer,83286,Observation #83286,https://biolit.fr/observations/observation-83286/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1593-1-scaled.jpeg,,,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82613,Observation #82613,https://biolit.fr/observations/observation-82613/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg,,,Identifiable +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82615,Observation #82615,https://biolit.fr/observations/observation-82615/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,,,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82617,Observation #82617,https://biolit.fr/observations/observation-82617/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg,,,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82619,Observation #82619,https://biolit.fr/observations/observation-82619/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg,,,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82621,Observation #82621,https://biolit.fr/observations/observation-82621/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg,,TRUE,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82623,Observation #82623,https://biolit.fr/observations/observation-82623/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg,,,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82625,Observation #82625,https://biolit.fr/observations/observation-82625/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg,,,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82627,Observation #82627,https://biolit.fr/observations/observation-82627/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg,,TRUE,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82629,Observation #82629,https://biolit.fr/observations/observation-82629/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg,,,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82631,Observation #82631,https://biolit.fr/observations/observation-82631/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg,,TRUE,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82633,Observation #82633,https://biolit.fr/observations/observation-82633/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg,,,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82635,Observation #82635,https://biolit.fr/observations/observation-82635/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg,,,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82637,Observation #82637,https://biolit.fr/observations/observation-82637/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg,,,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82640,Observation #82640,https://biolit.fr/observations/observation-82640/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg,,,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82645,Observation #82645,https://biolit.fr/observations/observation-82645/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg,,TRUE,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82647,Observation #82647,https://biolit.fr/observations/observation-82647/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg,,,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82657,Observation #82657,https://biolit.fr/observations/observation-82657/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg,,TRUE,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82659,Observation #82659,https://biolit.fr/observations/observation-82659/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg,,,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82661,Observation #82661,https://biolit.fr/observations/observation-82661/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg,,,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82663,Observation #82663,https://biolit.fr/observations/observation-82663/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg,,,Ne sais pas +N1,82611,Sortie #82611,https://biolit.fr/sorties/sortie-82611/,Bonvalot Frank,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6567-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6587-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6588-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,11/03/2024,14.0000000,17.0000000,43.7755220000000,-1.4166600000000,,Lac Marin de Port d'Albret et la Dune de Souston,82665,Observation #82665,https://biolit.fr/observations/observation-82665/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a643dd2fc5472e79c711bf8fd236af75/2024/11/IMG_6603-scaled.jpg,,,Ne sais pas +N1,82673,Sortie #82673,https://biolit.fr/sorties/sortie-82673/,RIEM,https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2024/11/quadrat1_01vue-generale.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2024/11/quadrat1_02fucus-dente.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2024/11/quadrat1_03-photo-tous-specimens.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2024/11/quadrat1_04-Gibbules.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2f71ae30032ed151048e5958e2f15197/2024/11/quadrat1_05-gibbule-seule.jpg,11/02/2024,11.0000000,12.0:25,47.581953,2.905577,Réseau Initiatives des Eco-explorateurs de la Mer (RIEM),PLAGE DU BERCHIS LARMOR BADEN,,,,,,,,,, +N1,82699,Sortie #82699,https://biolit.fr/sorties/sortie-82699/,MARTINEZ JEAN YVES,https://biolit.fr/wp-content/uploads/jet-form-builder/4309c546716df390144c2b035dd6feda/2024/11/20241026_181511-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4309c546716df390144c2b035dd6feda/2024/11/20241026_181200-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4309c546716df390144c2b035dd6feda/2024/11/20241026_181203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4309c546716df390144c2b035dd6feda/2024/11/20241026_182030-scaled.jpg,10/26/2024 0:00,17.0000000,18.0000000,47.8394640000000,-4.16708000000000,,plage de l'île Tudy (29 finistère sud),,,,,,,,,, +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82723,Observation #82723,https://biolit.fr/observations/observation-82723/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg,,TRUE,Identifiable +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82725,Observation #82725,https://biolit.fr/observations/observation-82725/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg,,TRUE,Identifiable +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82727,Observation #82727,https://biolit.fr/observations/observation-82727/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg,,TRUE,Identifiable +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82729,Observation #82729,https://biolit.fr/observations/observation-82729/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg,,TRUE,Identifiable +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82731,Observation #82731,https://biolit.fr/observations/observation-82731/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg,,TRUE,Identifiable +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82733,Observation #82733,https://biolit.fr/observations/observation-82733/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg,,,Identifiable +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82735,Observation #82735,https://biolit.fr/observations/observation-82735/,Ascidia mentula,Ascidie rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg,,,Identifiable +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82737,Observation #82737,https://biolit.fr/observations/observation-82737/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg,,,Identifiable +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82739,Observation #82739,https://biolit.fr/observations/observation-82739/,Botrylloides spp. (leachii violaceus diegensis),Botrylles,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg,,,Identifiable +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82741,Observation #82741,https://biolit.fr/observations/observation-82741/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg,,TRUE,Identifiable +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82743,Observation #82743,https://biolit.fr/observations/observation-82743/,Crangon crangon,Crevette grise européenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg,,,Identifiable +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82745,Observation #82745,https://biolit.fr/observations/observation-82745/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg,,,Ne sais pas +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82747,Observation #82747,https://biolit.fr/observations/observation-82747/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg,,TRUE,Identifiable +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82749,Observation #82749,https://biolit.fr/observations/observation-82749/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg,,TRUE,Identifiable +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82751,Observation #82751,https://biolit.fr/observations/observation-82751/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg,,,Ne sais pas +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82753,Observation #82753,https://biolit.fr/observations/observation-82753/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg,,,Ne sais pas +N1,82721,Sortie #82721,https://biolit.fr/sorties/sortie-82721/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ascidia-mentula-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-de-mer-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_151315-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/IMG_20241105_152619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7025180000000,-1.84797800000000,,Rochers de la plage de Port Mer,82755,Observation #82755,https://biolit.fr/observations/observation-82755/,Gaidropsarus vulgaris,Motelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Motelle-scaled.jpg,,,Identifiable +N1,82766,Sortie #82766,https://biolit.fr/sorties/sortie-82766/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Murex-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nudibranche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Tomate-de-mer-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7031770,-1.8452270,,Rochers de la plage de Port Mer,82768,Observation #82768,https://biolit.fr/observations/observation-82768/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Murex-scaled.jpg,,TRUE,Identifiable +N1,82766,Sortie #82766,https://biolit.fr/sorties/sortie-82766/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Murex-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nudibranche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Tomate-de-mer-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7031770,-1.8452270,,Rochers de la plage de Port Mer,82770,Observation #82770,https://biolit.fr/observations/observation-82770/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-scaled.jpg,,TRUE,Identifiable +N1,82766,Sortie #82766,https://biolit.fr/sorties/sortie-82766/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Murex-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nudibranche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Tomate-de-mer-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7031770,-1.8452270,,Rochers de la plage de Port Mer,82772,Observation #82772,https://biolit.fr/observations/observation-82772/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nephtis-scaled.jpg,,TRUE,Identifiable +N1,82766,Sortie #82766,https://biolit.fr/sorties/sortie-82766/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Murex-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nudibranche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Tomate-de-mer-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7031770,-1.8452270,,Rochers de la plage de Port Mer,82774,Observation #82774,https://biolit.fr/observations/observation-82774/,Hediste diversicolor,Néréis multicolore,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-scaled.jpg,,TRUE,Identifiable +N1,82766,Sortie #82766,https://biolit.fr/sorties/sortie-82766/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Murex-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nudibranche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Tomate-de-mer-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7031770,-1.8452270,,Rochers de la plage de Port Mer,82776,Observation #82776,https://biolit.fr/observations/observation-82776/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nudibranche-scaled.jpg,,TRUE,Identifiable +N1,82766,Sortie #82766,https://biolit.fr/sorties/sortie-82766/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Murex-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nudibranche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Tomate-de-mer-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7031770,-1.8452270,,Rochers de la plage de Port Mer,82778,Observation #82778,https://biolit.fr/observations/observation-82778/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-scaled.jpg,,TRUE,Identifiable +N1,82766,Sortie #82766,https://biolit.fr/sorties/sortie-82766/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Murex-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nudibranche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Tomate-de-mer-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7031770,-1.8452270,,Rochers de la plage de Port Mer,82780,Observation #82780,https://biolit.fr/observations/observation-82780/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/ponte-de-pourpre-scaled.jpg,,,Identifiable +N1,82766,Sortie #82766,https://biolit.fr/sorties/sortie-82766/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Murex-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nudibranche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Tomate-de-mer-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7031770,-1.8452270,,Rochers de la plage de Port Mer,82782,Observation #82782,https://biolit.fr/observations/observation-82782/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/pourpre-scaled.jpg,,TRUE,Identifiable +N1,82766,Sortie #82766,https://biolit.fr/sorties/sortie-82766/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Murex-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nudibranche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Tomate-de-mer-scaled.jpg,11/05/2024,15.0000000,16.0000000,48.7031770,-1.8452270,,Rochers de la plage de Port Mer,82784,Observation #82784,https://biolit.fr/observations/observation-82784/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Tomate-de-mer-scaled.jpg,,TRUE,Identifiable +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82820,Observation #82820,https://biolit.fr/observations/observation-82820/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg,,,Ne sais pas +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82822,Observation #82822,https://biolit.fr/observations/observation-82822/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg,,TRUE,Identifiable +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82824,Observation #82824,https://biolit.fr/observations/observation-82824/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg,,TRUE,Identifiable +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82826,Observation #82826,https://biolit.fr/observations/observation-82826/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg,,TRUE,Identifiable +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82828,Observation #82828,https://biolit.fr/observations/observation-82828/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg,,,Identifiable +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82830,Observation #82830,https://biolit.fr/observations/observation-82830/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg,,TRUE,Identifiable +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82832,Observation #82832,https://biolit.fr/observations/observation-82832/,Botryllus sp. 1,Botrylle,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg,,,Identifiable +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82834,Observation #82834,https://biolit.fr/observations/observation-82834/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg,,,Identifiable +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82836,Observation #82836,https://biolit.fr/observations/observation-82836/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg,,TRUE,Ne sais pas +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82838,Observation #82838,https://biolit.fr/observations/observation-82838/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg,,TRUE,Identifiable +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82840,Observation #82840,https://biolit.fr/observations/observation-82840/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg,,,Ne sais pas +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82842,Observation #82842,https://biolit.fr/observations/observation-82842/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg,,TRUE,Identifiable +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82844,Observation #82844,https://biolit.fr/observations/observation-82844/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg,,TRUE,Identifiable +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82846,Observation #82846,https://biolit.fr/observations/observation-82846/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg,,TRUE,Identifiable +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82848,Observation #82848,https://biolit.fr/observations/observation-82848/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg,,TRUE,Identifiable +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82850,Observation #82850,https://biolit.fr/observations/observation-82850/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg,,TRUE,Identifiable +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82852,Observation #82852,https://biolit.fr/observations/observation-82852/,Hediste diversicolor,Néréis multicolore,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg,,TRUE,Identifiable +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82854,Observation #82854,https://biolit.fr/observations/observation-82854/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,,,Identifiable +N1,82818,Sortie #82818,https://biolit.fr/sorties/sortie-82818/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Botrylle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-inconnu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Eponge-chewing-gum-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Etoile-sherif-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Hermelles-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.702458000000,-1.84839100000000,,Rochers de la plage de Port Mer,82856,Observation #82856,https://biolit.fr/observations/observation-82856/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Patelle-bis-scaled.jpg,,,Ne sais pas +N1,82863,Sortie #82863,https://biolit.fr/sorties/sortie-82863/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Siponcle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Tomate-de-mer-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.7023980000000,-1.84829400000000,,Rochers de la plage de Port Mer,82865,Observation #82865,https://biolit.fr/observations/observation-82865/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ponte-de-pourpre-1-scaled.jpg,,,Identifiable +N1,82863,Sortie #82863,https://biolit.fr/sorties/sortie-82863/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Siponcle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Tomate-de-mer-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.7023980000000,-1.84829400000000,,Rochers de la plage de Port Mer,82867,Observation #82867,https://biolit.fr/observations/observation-82867/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Porcellane-scaled.jpg,,,Identifiable +N1,82863,Sortie #82863,https://biolit.fr/sorties/sortie-82863/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Siponcle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Tomate-de-mer-1-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.7023980000000,-1.84829400000000,,Rochers de la plage de Port Mer,82869,Observation #82869,https://biolit.fr/observations/observation-82869/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Pourpre-1-scaled.jpg,,TRUE,Identifiable +N1,82875,Sortie #82875,https://biolit.fr/sorties/sortie-82875/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Siponcle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Tomate-de-mer-2-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.703176,-1.8452290,,Rochers de la plage de Port Mer,82877,Observation #82877,https://biolit.fr/observations/observation-82877/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Siponcle-1-scaled.jpg,,,Ne sais pas +N1,82875,Sortie #82875,https://biolit.fr/sorties/sortie-82875/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Siponcle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Tomate-de-mer-2-scaled.jpg,11/06/2024,15.0:15,16.0:15,48.703176,-1.8452290,,Rochers de la plage de Port Mer,82879,Observation #82879,https://biolit.fr/observations/observation-82879/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2024/11/Tomate-de-mer-2-scaled.jpg,,TRUE,Identifiable +N1,82882,Sortie #82882,https://biolit.fr/sorties/sortie-82882/,Joseph Anais,https://biolit.fr/wp-content/uploads/jet-form-builder/45039957c07166d23841df83f8376df0/2024/11/IMG_5174.jpeg,10/23/2024 0:00,16.0000000,18.0000000,49.7205950000000,-1.9281010000000,,Goury,82884,Observation #82884,https://biolit.fr/observations/observation-82884/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/45039957c07166d23841df83f8376df0/2024/11/IMG_5174.jpeg,,,Ne sais pas +N1,82900,Sortie #82900,https://biolit.fr/sorties/sortie-82900/,Perrin Thomas,https://biolit.fr/wp-content/uploads/jet-form-builder/1f97f62a72da5d65ccac8f413c7eda4b/2024/11/IMG_20241107_151702-scaled.jpg,11/07/2024,15.0:17,15.0:19,48.6041080000000,-1.76182200000000,,Cherrueix,,,,,,,,,, +N1,82903,Sortie #82903,https://biolit.fr/sorties/sortie-82903/,Perrin Thomas,https://biolit.fr/wp-content/uploads/jet-form-builder/1f97f62a72da5d65ccac8f413c7eda4b/2024/11/IMG_20241107_151702-1-scaled.jpg,11/07/2024,15.0:23,15.0:23,48.4836730000000,-1.75466000000000,,Cherrueix,,,,,,,,,, +N1,82906,Sortie #82906,https://biolit.fr/sorties/sortie-82906/,Perrin Thomas,https://biolit.fr/wp-content/uploads/jet-form-builder/1f97f62a72da5d65ccac8f413c7eda4b/2024/11/IMG_20241107_151702-2-scaled.jpg,11/07/2024,15.0:34,15.0:34,48.4671230,-1.7680340,,Cherrueix,,,,,,,,,, +N1,82913,Sortie #82913,https://biolit.fr/sorties/sortie-82913/,perez killian,https://biolit.fr/wp-content/uploads/jet-form-builder/ac1a96b9d6c0916ed2166eae78ea2822/2024/11/2bea3f7926351917d92d74598fd17d2e-pearlsquare.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ac1a96b9d6c0916ed2166eae78ea2822/2024/11/8a9a2a6e12b8f5ad72e453857005592f-pearlsquare.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ac1a96b9d6c0916ed2166eae78ea2822/2024/11/8a9a2a6e12b8f5ad72e453857005592f-pearlsquare-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ac1a96b9d6c0916ed2166eae78ea2822/2024/11/8a9a2a6e12b8f5ad72e453857005592f-pearlsquare-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ac1a96b9d6c0916ed2166eae78ea2822/2024/11/43775ae3ca02f3579ec45395bf13bce9-pearlsquare.jpg,10/17/2024 0:00,11.0000000,12.0000000,43.319296,5.4165500,AIEJE,plage saint esteve,82915,Observation #82915,https://biolit.fr/observations/observation-82915/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ac1a96b9d6c0916ed2166eae78ea2822/2024/11/8a9a2a6e12b8f5ad72e453857005592f-pearlsquare-1.jpg,,,Identifiable +N1,82919,Sortie #82919,https://biolit.fr/sorties/sortie-82919/,perez killian,https://biolit.fr/wp-content/uploads/jet-form-builder/ac1a96b9d6c0916ed2166eae78ea2822/2024/11/152df79ab6b29029495963c199709e8f-pearlsquare.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ac1a96b9d6c0916ed2166eae78ea2822/2024/11/644470c07beb6ff8153c26a808a7a0a3-pearlsquare.jpg,10/17/2024 0:00,11.0000000,12.0000000,43.319296,5.4165500,AIEJE,plage saint esteve,82922,Observation #82922,https://biolit.fr/observations/observation-82922/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ac1a96b9d6c0916ed2166eae78ea2822/2024/11/644470c07beb6ff8153c26a808a7a0a3-pearlsquare.jpg,,,Identifiable +N1,82927,Sortie #82927,https://biolit.fr/sorties/sortie-82927/,pereiravaz daniela,https://biolit.fr/wp-content/uploads/jet-form-builder/531eb6fe34251789b1e9a22d68bb71d5/2024/11/IMG_20241017_104321_427.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/531eb6fe34251789b1e9a22d68bb71d5/2024/11/IMG_20241017_104320_616.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/531eb6fe34251789b1e9a22d68bb71d5/2024/11/IMG_20241017_104317_450.jpg,10/17/2024 0:00,11.0000000,12.0000000,43.2842060000000,5.31640600000000,AIEJE,Saint estève,,,,,,,,,, +N1,82933,Sortie #82933,https://biolit.fr/sorties/sortie-82933/,Perrin Thomas,https://biolit.fr/wp-content/uploads/jet-form-builder/1f97f62a72da5d65ccac8f413c7eda4b/2024/11/IMG_20241107_151702-3-scaled.jpg,11/07/2024,15.0:15,15.0000000,48.6046200000000,-1.76160400000000,,Cherrueix,,,,,,,,,, +N1,82936,Sortie #82936,https://biolit.fr/sorties/sortie-82936/,Perrin Thomas,https://biolit.fr/wp-content/uploads/jet-form-builder/1f97f62a72da5d65ccac8f413c7eda4b/2024/11/IMG_20241107_151702-4-scaled.jpg,11/07/2024,15.0:15,15.0000000,48.603948000000,-1.76240200000000,,Cherrueix,,,,,,,,,, +N1,82939,Sortie #82939,https://biolit.fr/sorties/sortie-82939/,Perrin Thomas,https://biolit.fr/wp-content/uploads/jet-form-builder/1f97f62a72da5d65ccac8f413c7eda4b/2024/11/IMG_20241107_151702-5-scaled.jpg,11/07/2024,15.0:15,15.0000000,48.6040440000000,-1.76232900000000,,cherrueix,,,,,,,,,, +N1,82942,Sortie #82942,https://biolit.fr/sorties/sortie-82942/,Perrin Thomas,https://biolit.fr/wp-content/uploads/jet-form-builder/1f97f62a72da5d65ccac8f413c7eda4b/2024/11/20240422173438_IMG_9031-scaled.jpg,11/09/2024,14.0000000,15.0000000,48.6204020000000,-1.85067100000000,,Saint Benoît des ondes,,,,,,,,,, +N1,82954,Sortie #82954,https://biolit.fr/sorties/sortie-82954/,Ruel Fiona,https://biolit.fr/wp-content/uploads/jet-form-builder/f84b24ea8db2e9d97819a4241cc09276/2024/11/IMG_0171-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f84b24ea8db2e9d97819a4241cc09276/2024/11/IMG_0218-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f84b24ea8db2e9d97819a4241cc09276/2024/11/IMG_0221-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f84b24ea8db2e9d97819a4241cc09276/2024/11/IMG_0238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f84b24ea8db2e9d97819a4241cc09276/2024/11/IMG_0239-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f84b24ea8db2e9d97819a4241cc09276/2024/11/IMG_0246-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f84b24ea8db2e9d97819a4241cc09276/2024/11/IMG_0249-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f84b24ea8db2e9d97819a4241cc09276/2024/11/IMG_0253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f84b24ea8db2e9d97819a4241cc09276/2024/11/IMG_0259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f84b24ea8db2e9d97819a4241cc09276/2024/11/IMG_0261-scaled.jpg,10/10/2022,14.000001,17.000002,49.54832,0.08321,,Octeville sur mer,94833,Observation #94833,https://biolit.fr/observations/observation-94833/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f84b24ea8db2e9d97819a4241cc09276/2024/11/IMG_0253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f84b24ea8db2e9d97819a4241cc09276/2024/11/IMG_0259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f84b24ea8db2e9d97819a4241cc09276/2024/11/IMG_0261-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f84b24ea8db2e9d97819a4241cc09276/2024/11/IMG_0246-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f84b24ea8db2e9d97819a4241cc09276/2024/11/IMG_0249-scaled.jpg,,,Ne sais pas +N1,82977,Sortie #82977,https://biolit.fr/sorties/sortie-82977/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2024/11/09-2024_Justificatif_Leroymerlin_AB.jpg,11/12/2024,14.0000000,16.0000000,47.581953,-2.905577,Planète Mer,uooui,,,,,,,,,, +N1,82987,Sortie #82987,https://biolit.fr/sorties/sortie-82987/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241023_101730-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241023_101748-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241023_102632-scaled.jpg,10/23/2024 0:00,11.0000000,11.0000000,43.2842960000000,5.31606400000000,Planète Mer,Saint-Estève,82989,Observation #82989,https://biolit.fr/observations/observation-82989/,Jujubinus striatus,Troque jujube striée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241023_101730-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241023_101748-scaled.jpg,,,Identifiable +N1,82987,Sortie #82987,https://biolit.fr/sorties/sortie-82987/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241023_101730-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241023_101748-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241023_102632-scaled.jpg,10/23/2024 0:00,11.0000000,11.0000000,43.2842960000000,5.31606400000000,Planète Mer,Saint-Estève,82991,Observation #82991,https://biolit.fr/observations/observation-82991/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241023_102632-scaled.jpg,,TRUE,Identifiable +N1,82995,Sortie #82995,https://biolit.fr/sorties/sortie-82995/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241023_141831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241023_143144-scaled.jpg,10/23/2024 0:00,14.0000000,14.0000000,43.2795100000000,5.29511300000000,Planète Mer,'île de Ratonneau,82997,Observation #82997,https://biolit.fr/observations/observation-82997/,Pallenis maritima,Astérolide maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241023_141831-scaled.jpg,,,Identifiable +N1,82995,Sortie #82995,https://biolit.fr/sorties/sortie-82995/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241023_141831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241023_143144-scaled.jpg,10/23/2024 0:00,14.0000000,14.0000000,43.2795100000000,5.29511300000000,Planète Mer,'île de Ratonneau,82999,Observation #82999,https://biolit.fr/observations/observation-82999/,Astragalus tragacantha,Astragale de Marseille,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241023_143144-scaled.jpg,,,Identifiable +N1,83021,Sortie #83021,https://biolit.fr/sorties/sortie-83021/,De Ketelaere Mikael,https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/Becasseau-sanderling.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/ChenillePapillon.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/Coquille-saint-jacques.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/DSC09595.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/DSC09601.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/DSC09603.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/DSC09612.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/DSC09613.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/DSC09625.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/DSC09627.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/DSC09636.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/Eponge.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/Eponge-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/Goelands.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/huitre-commune-v0.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/huitre-commune-v1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/huitre-commune-v2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/huitre-commune-v3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/meduse-Aurelia-aurita.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/meduse_Gonades-Aurelia-aurita.jpg,11/12/2024,10.0000000,15.0000000,51.3630760000000,3.33744000000000,,knokke,,,,,,,,,, +N1,83027,Sortie #83027,https://biolit.fr/sorties/sortie-83027/,De Ketelaere Mikael,https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/Varech-de-vessie-v1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/Varech-de-vessie-v2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/Varech-de-vessie-v3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/Varech-de-vessie-v4.jpg,11/12/2024,10.0000000,15.0000000,51.362605000000,3.3343510000000,,knokke,,,,,,,,,, +N1,83031,Sortie #83031,https://biolit.fr/sorties/sortie-83031/,De Ketelaere Mikael,https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/meduse-Aurelia-aurita-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f85f506931744ffa99bfa1c091746d82/2024/11/meduse_Gonades-Aurelia-aurita-1.jpg,11/12/2024,10.0000000,15.0000000,51.3642320000000,3.33709700000000,,knokke,,,,,,,,,, +N1,83049,Sortie #83049,https://biolit.fr/sorties/sortie-83049/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04061-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04132-scaled.jpg,11/12/2024,10.0000000,16.0000000,51.3602800000000,3.32121800000000,,Plage de knokke,83051,Observation #83051,https://biolit.fr/observations/observation-83051/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04061-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04132-scaled.jpg,,,Ne sais pas +N1,83049,Sortie #83049,https://biolit.fr/sorties/sortie-83049/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04061-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04132-scaled.jpg,11/12/2024,10.0000000,16.0000000,51.3602800000000,3.32121800000000,,Plage de knokke,83054,Observation #83054,https://biolit.fr/observations/observation-83054/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04132-scaled.jpg,,,Ne sais pas +N1,83049,Sortie #83049,https://biolit.fr/sorties/sortie-83049/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04061-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04132-scaled.jpg,11/12/2024,10.0000000,16.0000000,51.3602800000000,3.32121800000000,,Plage de knokke,83056,Observation #83056,https://biolit.fr/observations/observation-83056/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04132-scaled.jpg,,,Ne sais pas +N1,83072,Sortie #83072,https://biolit.fr/sorties/sortie-83072/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04123-scaled.jpg,11/12/2024,10.0000000,16.0000000,51.3630780000000,3.3341360000000,,Plage de Knokke,83082,Observation #83082,https://biolit.fr/observations/observation-83082/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04123-scaled.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83119,Observation #83119,https://biolit.fr/observations/observation-83119/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83121,Observation #83121,https://biolit.fr/observations/observation-83121/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83123,Observation #83123,https://biolit.fr/observations/observation-83123/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83125,Observation #83125,https://biolit.fr/observations/observation-83125/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83127,Observation #83127,https://biolit.fr/observations/observation-83127/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83129,Observation #83129,https://biolit.fr/observations/observation-83129/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83131,Observation #83131,https://biolit.fr/observations/observation-83131/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83133,Observation #83133,https://biolit.fr/observations/observation-83133/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83135,Observation #83135,https://biolit.fr/observations/observation-83135/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg,,TRUE,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83137,Observation #83137,https://biolit.fr/observations/observation-83137/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83139,Observation #83139,https://biolit.fr/observations/observation-83139/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83141,Observation #83141,https://biolit.fr/observations/observation-83141/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83143,Observation #83143,https://biolit.fr/observations/observation-83143/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83145,Observation #83145,https://biolit.fr/observations/observation-83145/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83147,Observation #83147,https://biolit.fr/observations/observation-83147/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83149,Observation #83149,https://biolit.fr/observations/observation-83149/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83151,Observation #83151,https://biolit.fr/observations/observation-83151/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83153,Observation #83153,https://biolit.fr/observations/observation-83153/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83155,Observation #83155,https://biolit.fr/observations/observation-83155/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg,,,Ne sais pas +N1,83117,Sortie #83117,https://biolit.fr/sorties/sortie-83117/,M H,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04071.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04073.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04078.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04086.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04121.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04127.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04138.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04139.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04092-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04099-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04101-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04062-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04063-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04079-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04095-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04112-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04142-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04050-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,11/12/2024,10.0000000,16.0000000,51.3640480000000,3.3387280000000,,Plage de Knokke,83157,Observation #83157,https://biolit.fr/observations/observation-83157/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/84d7880f50ec52fc4bda195642524670/2024/11/DSC04118-1.jpg,,,Ne sais pas +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83181,Observation #83181,https://biolit.fr/observations/observation-83181/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg,,,Identifiable +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83183,Observation #83183,https://biolit.fr/observations/observation-83183/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg,,,non-identifiable +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83185,Observation #83185,https://biolit.fr/observations/observation-83185/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg,,,non-identifiable +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83187,Observation #83187,https://biolit.fr/observations/observation-83187/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg,,,Identifiable +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83189,Observation #83189,https://biolit.fr/observations/observation-83189/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg,,,Identifiable +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83191,Observation #83191,https://biolit.fr/observations/observation-83191/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg,,,Identifiable +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83193,Observation #83193,https://biolit.fr/observations/observation-83193/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg,,,Identifiable +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83195,Observation #83195,https://biolit.fr/observations/observation-83195/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg,,,non-identifiable +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83197,Observation #83197,https://biolit.fr/observations/observation-83197/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg,,,non-identifiable +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83199,Observation #83199,https://biolit.fr/observations/observation-83199/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg,,,Identifiable +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83201,Observation #83201,https://biolit.fr/observations/observation-83201/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg,,,Identifiable +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83203,Observation #83203,https://biolit.fr/observations/observation-83203/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg,,,Identifiable +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83205,Observation #83205,https://biolit.fr/observations/observation-83205/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg,,,Identifiable +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83207,Observation #83207,https://biolit.fr/observations/observation-83207/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg,,,non-identifiable +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83209,Observation #83209,https://biolit.fr/observations/observation-83209/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg,,,non-identifiable +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83211,Observation #83211,https://biolit.fr/observations/observation-83211/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg,,TRUE,Identifiable +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83213,Observation #83213,https://biolit.fr/observations/observation-83213/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg,,,Ne sais pas +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83215,Observation #83215,https://biolit.fr/observations/observation-83215/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg,,,Ne sais pas +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83217,Observation #83217,https://biolit.fr/observations/observation-83217/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg,,,Ne sais pas +N1,83179,Sortie #83179,https://biolit.fr/sorties/sortie-83179/,sarazin benjamin,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Algues-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Ascophyllum-nodosum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Becasseau-sanderling-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Coquillage-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Frelon-asiatique-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Huitrier-pie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Meduse-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-zoom.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Migration-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Moules-et-Elminius-modestus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,11/12/2024,10.0000000,17.0000000,51.3596330000000,3.31501100000000,,Plage de Knokke,83219,Observation #83219,https://biolit.fr/observations/observation-83219/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7dcf01690ba4db39b1436bcfd14d6c64/2024/11/Pierre-de-mer-04-scaled.jpg,,,Ne sais pas +N1,83276,Sortie #83276,https://biolit.fr/sorties/sortie-83276/,Alarcon Messaline,https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2024/11/ID-BioLit.png,11/14/2024 0:00,14.0000000,15.0000000,43.2610270000000,5.37270100000000,,Plage prado,,,,,,,,,, +N1,83279,Sortie #83279,https://biolit.fr/sorties/sortie-83279/,Alarcon Messaline,https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2024/11/ID-BioLit-1.png,11/13/2024 0:00,14.0:11,15.0000000,43.2558800000000,5.37515800000000,,,,,,,,,,,, +N1,83308,Sortie #83308,https://biolit.fr/sorties/sortie-83308/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1596-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1595-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1594-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1593-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1591-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1590-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1589-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1588-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1579-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1578-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1575-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1571-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1570-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1569-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1567-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1565-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1563-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1561-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1559-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1554-1.jpeg,11/01/2024,14.0000000,17.0000000,49.5479610000000,0.0842640000000000,,Octeville sur mer,,,,,,,,,, +N1,83312,Sortie #83312,https://biolit.fr/sorties/sortie-83312/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1595-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1594-3-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5483650000000,0.0832990000000000,,Octeville-sur-Mer,83314,Observation #83314,https://biolit.fr/observations/observation-83314/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1595-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1594-3-scaled.jpeg,,,Ne sais pas +N1,83321,Sortie #83321,https://biolit.fr/sorties/sortie-83321/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1591-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1590-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1589-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1588-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1596-3-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5480990000000,0.0831270000000000,,Octeville-sur-Mer,83323,Observation #83323,https://biolit.fr/observations/observation-83323/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1591-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1590-2-scaled.jpeg,,,Ne sais pas +N1,83321,Sortie #83321,https://biolit.fr/sorties/sortie-83321/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1591-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1590-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1589-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1588-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1596-3-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5480990000000,0.0831270000000000,,Octeville-sur-Mer,83325,Observation #83325,https://biolit.fr/observations/observation-83325/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1589-2-scaled.jpeg,,,Identifiable +N1,83321,Sortie #83321,https://biolit.fr/sorties/sortie-83321/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1591-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1590-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1589-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1588-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1596-3-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5480990000000,0.0831270000000000,,Octeville-sur-Mer,83327,Observation #83327,https://biolit.fr/observations/observation-83327/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1588-2-scaled.jpeg,,,Identifiable +N1,83321,Sortie #83321,https://biolit.fr/sorties/sortie-83321/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1591-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1590-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1589-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1588-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1596-3-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5480990000000,0.0831270000000000,,Octeville-sur-Mer,83329,Observation #83329,https://biolit.fr/observations/observation-83329/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1596-3-scaled.jpeg,,,Ne sais pas +N1,83334,Sortie #83334,https://biolit.fr/sorties/sortie-83334/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1579-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1575-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1578-2-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5478220000000,0.0829120000000000,,Octeville-sur-Mer,83336,Observation #83336,https://biolit.fr/observations/observation-83336/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1579-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1575-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1578-2-scaled.jpeg,,,Ne sais pas +N1,83354,Sortie #83354,https://biolit.fr/sorties/sortie-83354/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1571-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1570-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1569-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1567-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1563-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1565-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1561-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1559-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1554-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1548.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1549.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1547.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1542.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1545.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1543.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1541.jpeg,11/01/2024,14.0000000,17.0000000,49.5479600000000,0.0832560000000000,,Octeville-sur-Mer,83356,Observation #83356,https://biolit.fr/observations/observation-83356/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1571-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1570-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1569-2-scaled.jpeg,,TRUE,Ne sais pas +N1,83354,Sortie #83354,https://biolit.fr/sorties/sortie-83354/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1571-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1570-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1569-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1567-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1563-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1565-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1561-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1559-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1554-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1548.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1549.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1547.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1542.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1545.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1543.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1541.jpeg,11/01/2024,14.0000000,17.0000000,49.5479600000000,0.0832560000000000,,Octeville-sur-Mer,83358,Observation #83358,https://biolit.fr/observations/observation-83358/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1567-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1563-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1565-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1561-2-scaled.jpeg,,TRUE,Ne sais pas +N1,83354,Sortie #83354,https://biolit.fr/sorties/sortie-83354/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1571-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1570-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1569-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1567-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1563-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1565-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1561-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1559-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1554-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1548.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1549.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1547.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1542.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1545.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1543.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1541.jpeg,11/01/2024,14.0000000,17.0000000,49.5479600000000,0.0832560000000000,,Octeville-sur-Mer,83360,Observation #83360,https://biolit.fr/observations/observation-83360/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1559-2.jpeg,,,Ne sais pas +N1,83354,Sortie #83354,https://biolit.fr/sorties/sortie-83354/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1571-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1570-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1569-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1567-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1563-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1565-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1561-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1559-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1554-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1548.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1549.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1547.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1542.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1545.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1543.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1541.jpeg,11/01/2024,14.0000000,17.0000000,49.5479600000000,0.0832560000000000,,Octeville-sur-Mer,83362,Observation #83362,https://biolit.fr/observations/observation-83362/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1554-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1548.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1549.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1547.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1542.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1545.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1543.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1541.jpeg,,TRUE,Ne sais pas +N1,83372,Sortie #83372,https://biolit.fr/sorties/sortie-83372/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1540-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1536.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1535.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1534-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1531-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1530-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1529-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1525-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5482080000000,0.0834270000000000,,Octeville-sur-Mer,83374,Observation #83374,https://biolit.fr/observations/observation-83374/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1540-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1536.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1535.jpeg,,TRUE,Ne sais pas +N1,83372,Sortie #83372,https://biolit.fr/sorties/sortie-83372/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1540-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1536.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1535.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1534-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1531-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1530-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1529-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1525-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5482080000000,0.0834270000000000,,Octeville-sur-Mer,83376,Observation #83376,https://biolit.fr/observations/observation-83376/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1534-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1531-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1530-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1529-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1525-scaled.jpeg,,TRUE,Ne sais pas +N1,83386,Sortie #83386,https://biolit.fr/sorties/sortie-83386/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1495.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1494.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1480.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1479.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1481.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1490.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1491-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1497-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.547947000000,0.0827620000000000,,Octeville-sur-Mer,83388,Observation #83388,https://biolit.fr/observations/observation-83388/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1495.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1494.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1480.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1479.jpeg,,,Ne sais pas +N1,83386,Sortie #83386,https://biolit.fr/sorties/sortie-83386/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1495.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1494.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1480.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1479.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1481.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1490.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1491-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1497-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.547947000000,0.0827620000000000,,Octeville-sur-Mer,83390,Observation #83390,https://biolit.fr/observations/observation-83390/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1481.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1490.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1491-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1497-scaled.jpeg,,,Ne sais pas +N1,83399,Sortie #83399,https://biolit.fr/sorties/sortie-83399/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1524-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1488-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1482-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1486-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1474-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1472-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1473-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5477060000000,0.0834270000000000,,Octeville-sur-Mer,83401,Observation #83401,https://biolit.fr/observations/observation-83401/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1524-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1488-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1482-scaled.jpeg,,,Identifiable +N1,83399,Sortie #83399,https://biolit.fr/sorties/sortie-83399/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1524-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1488-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1482-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1486-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1474-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1472-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1473-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5477060000000,0.0834270000000000,,Octeville-sur-Mer,83403,Observation #83403,https://biolit.fr/observations/observation-83403/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1486-scaled.jpeg,,TRUE,Identifiable +N1,83399,Sortie #83399,https://biolit.fr/sorties/sortie-83399/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1524-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1488-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1482-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1486-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1474-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1472-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1473-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5477060000000,0.0834270000000000,,Octeville-sur-Mer,83405,Observation #83405,https://biolit.fr/observations/observation-83405/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1474-scaled.jpeg,,TRUE,Ne sais pas +N1,83399,Sortie #83399,https://biolit.fr/sorties/sortie-83399/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1524-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1488-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1482-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1486-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1474-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1472-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1473-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5477060000000,0.0834270000000000,,Octeville-sur-Mer,83407,Observation #83407,https://biolit.fr/observations/observation-83407/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1472-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1473-scaled.jpeg,,,Ne sais pas +N1,83417,Sortie #83417,https://biolit.fr/sorties/sortie-83417/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1487-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1485.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1497-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1521.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1476-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1475-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1471.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1468.jpeg,11/01/2024,14.0000000,17.0000000,49.5480430000000,0.0832130000000000,,Octeville-sur-Mer,,,,,,,,,, +N1,83425,Sortie #83425,https://biolit.fr/sorties/sortie-83425/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1517-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1476-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1487-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1485-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1475-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1471-1.jpeg,11/01/2024,14.0000000,17.0000000,49.5478220000000,0.0828700000000000,,Octeville-sur-Mer,83427,Observation #83427,https://biolit.fr/observations/observation-83427/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1517-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1476-1-scaled.jpeg,,,Ne sais pas +N1,83425,Sortie #83425,https://biolit.fr/sorties/sortie-83425/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1517-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1476-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1487-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1485-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1475-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1471-1.jpeg,11/01/2024,14.0000000,17.0000000,49.5478220000000,0.0828700000000000,,Octeville-sur-Mer,83429,Observation #83429,https://biolit.fr/observations/observation-83429/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1487-1-scaled.jpeg,,,Ne sais pas +N1,83425,Sortie #83425,https://biolit.fr/sorties/sortie-83425/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1517-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1476-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1487-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1485-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1475-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1471-1.jpeg,11/01/2024,14.0000000,17.0000000,49.5478220000000,0.0828700000000000,,Octeville-sur-Mer,83431,Observation #83431,https://biolit.fr/observations/observation-83431/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1485-1.jpeg,,TRUE,Ne sais pas +N1,83425,Sortie #83425,https://biolit.fr/sorties/sortie-83425/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1517-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1476-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1487-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1485-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1475-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1471-1.jpeg,11/01/2024,14.0000000,17.0000000,49.5478220000000,0.0828700000000000,,Octeville-sur-Mer,83433,Observation #83433,https://biolit.fr/observations/observation-83433/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1475-1-scaled.jpeg,,, +N1,83425,Sortie #83425,https://biolit.fr/sorties/sortie-83425/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1517-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1476-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1487-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1485-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1475-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1471-1.jpeg,11/01/2024,14.0000000,17.0000000,49.5478220000000,0.0828700000000000,,Octeville-sur-Mer,83435,Observation #83435,https://biolit.fr/observations/observation-83435/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1471-1.jpeg,,,Ne sais pas +N1,83445,Sortie #83445,https://biolit.fr/sorties/sortie-83445/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1470-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1469-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1468-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1467.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1461-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1460.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1459-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1458-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5477940000000,0.0825910000000000,,Octeville-sur-Mer,83447,Observation #83447,https://biolit.fr/observations/observation-83447/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1470-scaled.jpeg,,,Ne sais pas +N1,83445,Sortie #83445,https://biolit.fr/sorties/sortie-83445/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1470-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1469-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1468-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1467.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1461-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1460.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1459-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1458-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5477940000000,0.0825910000000000,,Octeville-sur-Mer,83449,Observation #83449,https://biolit.fr/observations/observation-83449/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1469-scaled.jpeg,,,Ne sais pas +N1,83445,Sortie #83445,https://biolit.fr/sorties/sortie-83445/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1470-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1469-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1468-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1467.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1461-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1460.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1459-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1458-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5477940000000,0.0825910000000000,,Octeville-sur-Mer,83451,Observation #83451,https://biolit.fr/observations/observation-83451/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1468-1.jpeg,,,Ne sais pas +N1,83445,Sortie #83445,https://biolit.fr/sorties/sortie-83445/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1470-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1469-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1468-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1467.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1461-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1460.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1459-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1458-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5477940000000,0.0825910000000000,,Octeville-sur-Mer,83453,Observation #83453,https://biolit.fr/observations/observation-83453/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1467.jpeg,,, +N1,83445,Sortie #83445,https://biolit.fr/sorties/sortie-83445/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1470-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1469-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1468-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1467.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1461-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1460.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1459-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1458-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5477940000000,0.0825910000000000,,Octeville-sur-Mer,83455,Observation #83455,https://biolit.fr/observations/observation-83455/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1461-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1460.jpeg,,,Ne sais pas +N1,83445,Sortie #83445,https://biolit.fr/sorties/sortie-83445/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1470-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1469-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1468-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1467.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1461-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1460.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1459-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1458-scaled.jpeg,11/01/2024,14.0000000,17.0000000,49.5477940000000,0.0825910000000000,,Octeville-sur-Mer,83457,Observation #83457,https://biolit.fr/observations/observation-83457/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1459-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1a543719480b4bd92cbc718166c3a982/2024/11/IMG_1458-scaled.jpeg,,,Ne sais pas +N1,83534,Sortie #83534,https://biolit.fr/sorties/sortie-83534/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_114316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115524_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_1155482-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120832-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120838-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_171948-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_172406-scaled.jpg,10/25/2024 0:00,12.0000000,13.0000000,43.3761440000000,4.9138070000000,Planète Mer,Plage Napoléon,83536,Observation #83536,https://biolit.fr/observations/observation-83536/,Salicornia spp.,Salicorne,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_114316-scaled.jpg,,,Identifiable +N1,83534,Sortie #83534,https://biolit.fr/sorties/sortie-83534/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_114316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115524_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_1155482-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120832-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120838-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_171948-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_172406-scaled.jpg,10/25/2024 0:00,12.0000000,13.0000000,43.3761440000000,4.9138070000000,Planète Mer,Plage Napoléon,83538,Observation #83538,https://biolit.fr/observations/observation-83538/,Polygonum maritimum,Renouée maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115436-scaled.jpg,,,Identifiable +N1,83534,Sortie #83534,https://biolit.fr/sorties/sortie-83534/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_114316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115524_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_1155482-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120832-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120838-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_171948-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_172406-scaled.jpg,10/25/2024 0:00,12.0000000,13.0000000,43.3761440000000,4.9138070000000,Planète Mer,Plage Napoléon,83540,Observation #83540,https://biolit.fr/observations/observation-83540/,Anthemis maritima,Anthémis maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115524_2.jpg,,,Identifiable +N1,83534,Sortie #83534,https://biolit.fr/sorties/sortie-83534/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_114316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115524_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_1155482-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120832-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120838-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_171948-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_172406-scaled.jpg,10/25/2024 0:00,12.0000000,13.0000000,43.3761440000000,4.9138070000000,Planète Mer,Plage Napoléon,83542,Observation #83542,https://biolit.fr/observations/observation-83542/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_1155482-scaled.jpg,,,Identifiable +N1,83534,Sortie #83534,https://biolit.fr/sorties/sortie-83534/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_114316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115524_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_1155482-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120832-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120838-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_171948-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_172406-scaled.jpg,10/25/2024 0:00,12.0000000,13.0000000,43.3761440000000,4.9138070000000,Planète Mer,Plage Napoléon,83544,Observation #83544,https://biolit.fr/observations/observation-83544/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120832-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120838-scaled.jpg,,TRUE,Identifiable +N1,83534,Sortie #83534,https://biolit.fr/sorties/sortie-83534/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_114316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115524_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_1155482-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120832-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120838-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_171948-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_172406-scaled.jpg,10/25/2024 0:00,12.0000000,13.0000000,43.3761440000000,4.9138070000000,Planète Mer,Plage Napoléon,83546,Observation #83546,https://biolit.fr/observations/observation-83546/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121056-scaled.jpg,,,Identifiable +N1,83534,Sortie #83534,https://biolit.fr/sorties/sortie-83534/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_114316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115524_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_1155482-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120832-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120838-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_171948-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_172406-scaled.jpg,10/25/2024 0:00,12.0000000,13.0000000,43.3761440000000,4.9138070000000,Planète Mer,Plage Napoléon,83548,Observation #83548,https://biolit.fr/observations/observation-83548/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121302-scaled.jpg,,,Identifiable +N1,83534,Sortie #83534,https://biolit.fr/sorties/sortie-83534/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_114316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_115524_2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_1155482-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120832-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_120838-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_171948-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_172406-scaled.jpg,10/25/2024 0:00,12.0000000,13.0000000,43.3761440000000,4.9138070000000,Planète Mer,Plage Napoléon,83550,Observation #83550,https://biolit.fr/observations/observation-83550/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_121708-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_171948-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/11/IMG_20241025_172406-scaled.jpg,,,Ne sais pas +N1,83571,Sortie #83571,https://biolit.fr/sorties/sortie-83571/,Bellour Ronan,https://biolit.fr/wp-content/uploads/jet-form-builder/625f0ec0e8182ce4296db3e6b92c053e/2024/11/15112024-rotated.jpg,11/21/2024 0:00,14.0:59,15.0000000,48.317516000000,-4.28677100000000,,mm,,,,,,,,,, +N1,83613,Sortie #83613,https://biolit.fr/sorties/sortie-83613/,Gabanoti denis,https://biolit.fr/wp-content/uploads/jet-form-builder/bae17f85904c12171acb84b2b961aa78/2024/11/IMG_7178-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bae17f85904c12171acb84b2b961aa78/2024/11/IMG_7179-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bae17f85904c12171acb84b2b961aa78/2024/11/IMG_7180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bae17f85904c12171acb84b2b961aa78/2024/11/IMG_7181-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bae17f85904c12171acb84b2b961aa78/2024/11/IMG_7182-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bae17f85904c12171acb84b2b961aa78/2024/11/IMG_7183-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bae17f85904c12171acb84b2b961aa78/2024/11/IMG_7184-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0692820000000,5.79142600000000,,La Presqu'ile du GAOU,,,,,,,,,, +N1,83616,Sortie #83616,https://biolit.fr/sorties/sortie-83616/,Pomeyrol Margaux,https://biolit.fr/wp-content/uploads/jet-form-builder/105fbce235943e0d272f2c83e5352857/2024/11/1000004006-scaled.jpg,11/25/2024 0:00,14.0000000,14.0000000,43.5240620,7.0442430,CPIE îles de Lérins,Île Sainte Marguerite,,,,,,,,,, +N1,83619,Sortie #83619,https://biolit.fr/sorties/sortie-83619/,Brunet Ludovic,https://biolit.fr/wp-content/uploads/jet-form-builder/d8141c40ea5ff4685ce737f99fa059db/2024/11/IMG_3134-scaled.jpeg,11/25/2024 0:00,14.0000000,14.0000000,43.5241050000000,7.04408700000000,CPIE îles de Lérins,Îles de Lérins,,,,,,,,,, +N1,83624,Sortie #83624,https://biolit.fr/sorties/sortie-83624/,Durand Camille,https://biolit.fr/wp-content/uploads/jet-form-builder/dfe65a41811ed6c3021dcc6b653273d7/2024/11/IMG_7691-scaled.jpeg,11/25/2024 0:00,14.0000000,15.0000000,43.5204360000000,7.03340600000000,CPIE îles de Lérins,Plage de la Partègue Île Saint-Marguerite,,,,,,,,,, +N1,83628,Sortie #83628,https://biolit.fr/sorties/sortie-83628/,BOCCAGNY CAMILLE,https://biolit.fr/wp-content/uploads/jet-form-builder/2a7c746adb40b99fe2e33c1e498072c6/2024/11/1000024034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2a7c746adb40b99fe2e33c1e498072c6/2024/11/1000024033-scaled.jpg,11/25/2024 0:00,14.0000000,15.0000000,43.5211420000000,7.03228900000000,CPIE îles de Lérins,Île Sainte Marguerite,83630,Observation #83630,https://biolit.fr/observations/observation-83630/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/2a7c746adb40b99fe2e33c1e498072c6/2024/11/1000024034-scaled.jpg,,TRUE,Identifiable +N1,83633,Sortie #83633,https://biolit.fr/sorties/sortie-83633/,Durand Camille,https://biolit.fr/wp-content/uploads/jet-form-builder/dfe65a41811ed6c3021dcc6b653273d7/2024/11/IMG_7691-1-scaled.jpeg,11/25/2024 0:00,14.0000000,15.0000000,43.5206550000000,7.03328800000000,CPIE îles de Lérins,Plage de la Partègue,,,,,,,,,, +N1,83637,Sortie #83637,https://biolit.fr/sorties/sortie-83637/,Pomeyrol Margaux,https://biolit.fr/wp-content/uploads/jet-form-builder/105fbce235943e0d272f2c83e5352857/2024/11/1000004023.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/105fbce235943e0d272f2c83e5352857/2024/11/1000004006-1-scaled.jpg,11/25/2024 0:00,14.0:45,15.0:15,43.5240630,7.0442400,CPIE îles de Lérins,Île Sainte Marguerite,83639,Observation #83639,https://biolit.fr/observations/observation-83639/,Muraena helena,Murène commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/105fbce235943e0d272f2c83e5352857/2024/11/1000004023.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/105fbce235943e0d272f2c83e5352857/2024/11/1000004006-1-scaled.jpg,,TRUE,Identifiable +N1,83658,Sortie #83658,https://biolit.fr/sorties/sortie-83658/,MAMIS GREGORY,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0170-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0179-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0187-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0189-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0191-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0195-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0196-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0201-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0218-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0698850000000,5.78831900000000,,PRESQU'ILE DU GAOU,,,,,,,,,, +N1,83674,Sortie #83674,https://biolit.fr/sorties/sortie-83674/,ROBERT SABRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0180-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0187-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0189-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0191-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0195-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0201-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0218-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0754460000000,5.78251700000000,,PRESQU'ILE DU GAOU,,,,,,,,,, +N1,83690,Sortie #83690,https://biolit.fr/sorties/sortie-83690/,DULIGNER STEPHANIE,https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0180-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0187-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0189-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0191-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0195-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0218-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.067458000000,5.79199200000000,,PRESQU'ILE DU GAOU,,,,,,,,,, +N1,83706,Sortie #83706,https://biolit.fr/sorties/sortie-83706/,Nathalie Morand,https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0180-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0187-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0189-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0191-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0195-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0218-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0702300000000,5.79213000000000,,PRESQU'ILE DU GAOU,,,,,,,,,, +N1,83722,Sortie #83722,https://biolit.fr/sorties/sortie-83722/,LAURENT DI MALTA,https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0180-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0187-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0189-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0191-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0195-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0218-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0681600000000,5.79171700000000,,PRESQU'ILE DU GAOU,,,,,,,,,, +N1,83738,Sortie #83738,https://biolit.fr/sorties/sortie-83738/,MASCLE FLORENT,https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0180-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0187-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0189-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0191-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0195-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0218-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0706810000000,5.79034400000000,,PRESQU'ILE DU GAOU,,,,,,,,,, +N1,83754,Sortie #83754,https://biolit.fr/sorties/sortie-83754/,THIERRY MARTINI,https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0180-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0187-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0189-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0191-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0195-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0218-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0693640000000,5.79212900000000,,PRESQU'ILE DU GAOU,,,,,,,,,, +N1,83770,Sortie #83770,https://biolit.fr/sorties/sortie-83770/,EDWIGE VEDERE,https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0180-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0187-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0189-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0191-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0195-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0218-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0711700000000,5.78842200000000,,PRESQU'ILE DU GAOU,,,,,,,,,, +N1,83786,Sortie #83786,https://biolit.fr/sorties/sortie-83786/,MAINI VALERIE,https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0180-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0187-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0189-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0191-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0193-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0195-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0218-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0701670000000,5.7873230000000,,PRESQU'ILE DU GAOU,,,,,,,,,, +N1,83808,Sortie #83808,https://biolit.fr/sorties/sortie-83808/,TIGNON Anthony,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029102809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029102844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029102850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029103036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029103042_01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029103048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029103228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029103230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029103458-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029103547-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029104813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029105313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029105338-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029105816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029105821-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029114328-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029114429-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029114444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029114448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029114450-scaled.jpg,10/29/2024 0:00,9.0:15,16.0000000,46.6946130000000,-1.94666100000000,,SAINT GILLES CROIX DE VIE,83810,Observation #83810,https://biolit.fr/observations/observation-83810/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029102809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029102844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029102850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029103036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029103042_01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029103048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029103228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029103230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029103547-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029103458-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029104813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029105313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029105338-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029105816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029105821-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029114328-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029114429-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029114444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029114448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43dde485658faa1d811364a16aebba9b/2024/11/IMG20241029114450-scaled.jpg,,,Ne sais pas +N1,83821,Sortie #83821,https://biolit.fr/sorties/sortie-83821/,MAINI VALERIE,https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0170-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0189-Copie-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0748570000000,5.78430200000000,,PRESQU'ILE DU GAOU,83823,Observation #83823,https://biolit.fr/observations/observation-83823/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0180-Copie-1-scaled.jpg,,,Ne sais pas +N1,83821,Sortie #83821,https://biolit.fr/sorties/sortie-83821/,MAINI VALERIE,https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0170-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0189-Copie-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0748570000000,5.78430200000000,,PRESQU'ILE DU GAOU,83825,Observation #83825,https://biolit.fr/observations/observation-83825/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27b39ab4657e4e2fe47d4589f37a7b34/2024/11/IMG_0189-Copie-1-scaled.jpg,,,Ne sais pas +N1,83829,Sortie #83829,https://biolit.fr/sorties/sortie-83829/,EDWIGE VEDERE,https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0196-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0217-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0685740000000,5.79020700000000,,PRESQU'ILE DU GAOU,83831,Observation #83831,https://biolit.fr/observations/observation-83831/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0196-Copie-1-scaled.jpg,,,Ne sais pas +N1,83829,Sortie #83829,https://biolit.fr/sorties/sortie-83829/,EDWIGE VEDERE,https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0196-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0217-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0685740000000,5.79020700000000,,PRESQU'ILE DU GAOU,83833,Observation #83833,https://biolit.fr/observations/observation-83833/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/29060b8f885bd6415e6a392256dcea03/2024/11/IMG_0217-1-scaled.jpg,,,Ne sais pas +N1,83837,Sortie #83837,https://biolit.fr/sorties/sortie-83837/,ROBERT SABRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0218-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0195-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0706310000000,5.79144300000000,,PRESQU'ILE DU GAOU,83839,Observation #83839,https://biolit.fr/observations/observation-83839/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0218-1-scaled.jpg,,,Ne sais pas +N1,83837,Sortie #83837,https://biolit.fr/sorties/sortie-83837/,ROBERT SABRINA,https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0218-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0195-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0706310000000,5.79144300000000,,PRESQU'ILE DU GAOU,83841,Observation #83841,https://biolit.fr/observations/observation-83841/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/92b2dfa7c89819346324ccc7576d433b/2024/11/IMG_0195-1-scaled.jpg,,,Ne sais pas +N1,83845,Sortie #83845,https://biolit.fr/sorties/sortie-83845/,DULIGNER STEPHANIE,https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0187-Copie-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0697660000000,5.79075600000000,,PRESQU'ILE DU GAOU,83847,Observation #83847,https://biolit.fr/observations/observation-83847/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0180-Copie-1-scaled.jpg,,,Ne sais pas +N1,83845,Sortie #83845,https://biolit.fr/sorties/sortie-83845/,DULIGNER STEPHANIE,https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0187-Copie-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0697660000000,5.79075600000000,,PRESQU'ILE DU GAOU,83849,Observation #83849,https://biolit.fr/observations/observation-83849/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9048fb3bd2fb91ccc1a669f143e69d05/2024/11/IMG_0187-Copie-1-scaled.jpg,,,Ne sais pas +N1,83853,Sortie #83853,https://biolit.fr/sorties/sortie-83853/,LAURENT DI MALTA,https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0189-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0191-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0703670000000,5.79171800000000,,PRESQU'ILE DU GAOU,83855,Observation #83855,https://biolit.fr/observations/observation-83855/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0189-Copie-1-scaled.jpg,,,Ne sais pas +N1,83853,Sortie #83853,https://biolit.fr/sorties/sortie-83853/,LAURENT DI MALTA,https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0189-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0191-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0703670000000,5.79171800000000,,PRESQU'ILE DU GAOU,83857,Observation #83857,https://biolit.fr/observations/observation-83857/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ae475a526da07eb632fe39abd58e8619/2024/11/IMG_0191-1-scaled.jpg,,,Ne sais pas +N1,83861,Sortie #83861,https://biolit.fr/sorties/sortie-83861/,MASCLE FLORENT,https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0179-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0218-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0690630000000,5.79089400000000,,PRESQU'ILE DU GAOU,83863,Observation #83863,https://biolit.fr/observations/observation-83863/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0179-Copie-1-scaled.jpg,,,Ne sais pas +N1,83861,Sortie #83861,https://biolit.fr/sorties/sortie-83861/,MASCLE FLORENT,https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0179-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0218-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0690630000000,5.79089400000000,,PRESQU'ILE DU GAOU,83865,Observation #83865,https://biolit.fr/observations/observation-83865/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/59278f361a7d1ab9dbe89fe936e2ca31/2024/11/IMG_0218-1-scaled.jpg,,,Ne sais pas +N1,83869,Sortie #83869,https://biolit.fr/sorties/sortie-83869/,THIERRY MARTINI,https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0196-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0708690000000,5.7913060000000,,PRESQU'ILE DU GAOU,83871,Observation #83871,https://biolit.fr/observations/observation-83871/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0180-Copie-1-scaled.jpg,,,Ne sais pas +N1,83869,Sortie #83869,https://biolit.fr/sorties/sortie-83869/,THIERRY MARTINI,https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0196-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0708690000000,5.7913060000000,,PRESQU'ILE DU GAOU,83873,Observation #83873,https://biolit.fr/observations/observation-83873/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3d07a9efdf8a42584825ce5a5869e6e9/2024/11/IMG_0196-scaled.jpg,,,Ne sais pas +N1,83877,Sortie #83877,https://biolit.fr/sorties/sortie-83877/,Nathalie Morand,https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0187-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0191-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0715710000000,5.79336500000000,,PRESQU'ILE DU GAOU,83879,Observation #83879,https://biolit.fr/observations/observation-83879/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0187-Copie-1-scaled.jpg,,,Ne sais pas +N1,83877,Sortie #83877,https://biolit.fr/sorties/sortie-83877/,Nathalie Morand,https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0187-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0191-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.0715710000000,5.79336500000000,,PRESQU'ILE DU GAOU,83881,Observation #83881,https://biolit.fr/observations/observation-83881/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/46f41aefb0c271f76f77bae19349199c/2024/11/IMG_0191-1-scaled.jpg,,,Ne sais pas +N1,83898,Sortie #83898,https://biolit.fr/sorties/sortie-83898/,MAMIS GREGORY,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0187-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0191-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0193-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0195-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0203-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0217-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0218-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.069565000000,5.79158000000000,,PRESQU'ILE DU GAOU,83900,Observation #83900,https://biolit.fr/observations/observation-83900/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0179-Copie-scaled.jpg,,,Ne sais pas +N1,83898,Sortie #83898,https://biolit.fr/sorties/sortie-83898/,MAMIS GREGORY,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0187-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0191-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0193-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0195-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0203-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0217-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0218-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.069565000000,5.79158000000000,,PRESQU'ILE DU GAOU,83902,Observation #83902,https://biolit.fr/observations/observation-83902/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-Copie-1-scaled.jpg,,,Ne sais pas +N1,83898,Sortie #83898,https://biolit.fr/sorties/sortie-83898/,MAMIS GREGORY,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0187-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0191-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0193-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0195-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0203-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0217-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0218-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.069565000000,5.79158000000000,,PRESQU'ILE DU GAOU,83904,Observation #83904,https://biolit.fr/observations/observation-83904/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-1-scaled.jpg,,,Ne sais pas +N1,83898,Sortie #83898,https://biolit.fr/sorties/sortie-83898/,MAMIS GREGORY,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0187-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0191-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0193-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0195-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0203-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0217-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0218-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.069565000000,5.79158000000000,,PRESQU'ILE DU GAOU,83906,Observation #83906,https://biolit.fr/observations/observation-83906/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0187-1-scaled.jpg,,, +N1,83898,Sortie #83898,https://biolit.fr/sorties/sortie-83898/,MAMIS GREGORY,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0187-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0191-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0193-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0195-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0203-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0217-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0218-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.069565000000,5.79158000000000,,PRESQU'ILE DU GAOU,83908,Observation #83908,https://biolit.fr/observations/observation-83908/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0189-1-scaled.jpg,,,Ne sais pas +N1,83898,Sortie #83898,https://biolit.fr/sorties/sortie-83898/,MAMIS GREGORY,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0187-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0191-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0193-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0195-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0203-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0217-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0218-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.069565000000,5.79158000000000,,PRESQU'ILE DU GAOU,83910,Observation #83910,https://biolit.fr/observations/observation-83910/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0187-1-scaled.jpg,,,Ne sais pas +N1,83898,Sortie #83898,https://biolit.fr/sorties/sortie-83898/,MAMIS GREGORY,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0187-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0191-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0193-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0195-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0203-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0217-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0218-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.069565000000,5.79158000000000,,PRESQU'ILE DU GAOU,83912,Observation #83912,https://biolit.fr/observations/observation-83912/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0193-1-scaled.jpg,,,Ne sais pas +N1,83898,Sortie #83898,https://biolit.fr/sorties/sortie-83898/,MAMIS GREGORY,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0187-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0191-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0193-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0195-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0203-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0217-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0218-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.069565000000,5.79158000000000,,PRESQU'ILE DU GAOU,83914,Observation #83914,https://biolit.fr/observations/observation-83914/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0195-1-scaled.jpg,,,Ne sais pas +N1,83898,Sortie #83898,https://biolit.fr/sorties/sortie-83898/,MAMIS GREGORY,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0187-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0191-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0193-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0195-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0203-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0217-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0218-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.069565000000,5.79158000000000,,PRESQU'ILE DU GAOU,83916,Observation #83916,https://biolit.fr/observations/observation-83916/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0203-1-scaled.jpg,,,Ne sais pas +N1,83898,Sortie #83898,https://biolit.fr/sorties/sortie-83898/,MAMIS GREGORY,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0187-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0191-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0193-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0195-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0203-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0217-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0218-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.069565000000,5.79158000000000,,PRESQU'ILE DU GAOU,83918,Observation #83918,https://biolit.fr/observations/observation-83918/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0201-Copie-scaled.jpg,,,Ne sais pas +N1,83898,Sortie #83898,https://biolit.fr/sorties/sortie-83898/,MAMIS GREGORY,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0170-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0179-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-Copie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0180-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0187-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0189-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0191-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0193-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0195-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0196-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0201-Copie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0203-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0217-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0218-1-scaled.jpg,11/22/2024 0:00,9.0000000,12.0000000,43.069565000000,5.79158000000000,,PRESQU'ILE DU GAOU,83920,Observation #83920,https://biolit.fr/observations/observation-83920/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0217-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5bf00e06f18cb0a22020687be7f2d72b/2024/11/IMG_0218-1-scaled.jpg,,,Ne sais pas +N1,83944,Sortie #83944,https://biolit.fr/sorties/sortie-83944/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6234-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6235-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6237-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6239-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6240-scaled.jpg,11/27/2024 0:00,10.0:35,11.0000000,43.2734220000000,5.36178700000000,Planète Mer,Plage du Prophète,83946,Observation #83946,https://biolit.fr/observations/observation-83946/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6228-scaled.jpg,,,Ne sais pas +N1,83944,Sortie #83944,https://biolit.fr/sorties/sortie-83944/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6234-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6235-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6237-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6239-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6240-scaled.jpg,11/27/2024 0:00,10.0:35,11.0000000,43.2734220000000,5.36178700000000,Planète Mer,Plage du Prophète,83948,Observation #83948,https://biolit.fr/observations/observation-83948/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6239-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6240-scaled.jpg,,TRUE,Ne sais pas +N1,83944,Sortie #83944,https://biolit.fr/sorties/sortie-83944/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6234-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6235-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6237-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6239-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6240-scaled.jpg,11/27/2024 0:00,10.0:35,11.0000000,43.2734220000000,5.36178700000000,Planète Mer,Plage du Prophète,83950,Observation #83950,https://biolit.fr/observations/observation-83950/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6229-scaled.jpg,,,Ne sais pas +N1,83944,Sortie #83944,https://biolit.fr/sorties/sortie-83944/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6234-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6235-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6237-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6239-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6240-scaled.jpg,11/27/2024 0:00,10.0:35,11.0000000,43.2734220000000,5.36178700000000,Planète Mer,Plage du Prophète,83952,Observation #83952,https://biolit.fr/observations/observation-83952/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6232-scaled.jpg,,,Ne sais pas +N1,83944,Sortie #83944,https://biolit.fr/sorties/sortie-83944/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6234-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6235-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6237-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6239-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6240-scaled.jpg,11/27/2024 0:00,10.0:35,11.0000000,43.2734220000000,5.36178700000000,Planète Mer,Plage du Prophète,83954,Observation #83954,https://biolit.fr/observations/observation-83954/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6234-scaled.jpg,,,Ne sais pas +N1,83944,Sortie #83944,https://biolit.fr/sorties/sortie-83944/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6234-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6235-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6237-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6239-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6240-scaled.jpg,11/27/2024 0:00,10.0:35,11.0000000,43.2734220000000,5.36178700000000,Planète Mer,Plage du Prophète,83956,Observation #83956,https://biolit.fr/observations/observation-83956/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6235-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2024/11/IMG_6237-scaled.jpg,,,Ne sais pas +N1,83983,Sortie #83983,https://biolit.fr/sorties/sortie-83983/,BITEAU Guillaume,https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1250-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1251-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1254-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1256-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1258-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1260-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1261-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1262-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1263-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1264-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1265-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1266-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1267-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1268-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1269-scaled.jpg,11/29/2024 0:00,14.0000000,15.0000000,49.5001940000000,0.0883560000000000,,Le Havre plage,83985,Observation #83985,https://biolit.fr/observations/observation-83985/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1250-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1251-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1254-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1256-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1258-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1260-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1261-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1262-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1263-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1264-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1265-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1266-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1267-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1268-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1269-scaled.jpg,,,Ne sais pas +N1,84000,Sortie #84000,https://biolit.fr/sorties/sortie-84000/,BITEAU Guillaume,https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1278-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1279-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1280-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1281-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1282-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1283-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1284-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1285-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1286-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1287-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1288-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1289-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1290-scaled.jpg,11/29/2024 0:00,15.0000000,17.0000000,49.510234000000,0.0661540000000000,,cap de la hève,84002,Observation #84002,https://biolit.fr/observations/observation-84002/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1278-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1280-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1279-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1281-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1282-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1283-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1284-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1285-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1286-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1287-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1288-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1289-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/320be7bba930f8cb1d9f1417846f5d4d/2024/11/IMG_1290-scaled.jpg,,,Ne sais pas +N1,84065,Sortie #84065,https://biolit.fr/sorties/sortie-84065/,SOROSTE FRANCK JON,https://biolit.fr/wp-content/uploads/jet-form-builder/87e5f608d2631bc462911bea16945f44/2024/12/1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/87e5f608d2631bc462911bea16945f44/2024/12/2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/87e5f608d2631bc462911bea16945f44/2024/12/3.jpg,11/30/2024 0:00,15.0000000,17.0000000,43.4324330000000,-1.59912800000000,,Bidart,,,,,,,,,, +N1,84070,Sortie #84070,https://biolit.fr/sorties/sortie-84070/,SOROSTE FRANCK JON,https://biolit.fr/wp-content/uploads/jet-form-builder/87e5f608d2631bc462911bea16945f44/2024/12/1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/87e5f608d2631bc462911bea16945f44/2024/12/2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/87e5f608d2631bc462911bea16945f44/2024/12/3-1.jpg,11/30/2024 0:00,14.0000000,17.0000000,43.4320250000000,-1.5980080000000,,Bidart,84072,Observation #84072,https://biolit.fr/observations/observation-84072/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/87e5f608d2631bc462911bea16945f44/2024/12/1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/87e5f608d2631bc462911bea16945f44/2024/12/2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/87e5f608d2631bc462911bea16945f44/2024/12/3-1.jpg,,,Identifiable +N1,84086,Sortie #84086,https://biolit.fr/sorties/sortie-84086/,CANOURGUES Juliette,https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-12-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-11-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-10-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-1-scaled.jpg,10/30/2024 0:00,9.0000000,12.0000000,43.2730230000000,5.36220800000000,,Marseille,84088,Observation #84088,https://biolit.fr/observations/observation-84088/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-12-scaled.jpg,,,Ne sais pas +N1,84086,Sortie #84086,https://biolit.fr/sorties/sortie-84086/,CANOURGUES Juliette,https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-12-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-11-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-10-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-1-scaled.jpg,10/30/2024 0:00,9.0000000,12.0000000,43.2730230000000,5.36220800000000,,Marseille,84090,Observation #84090,https://biolit.fr/observations/observation-84090/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-11-scaled.jpg,,TRUE,Identifiable +N1,84086,Sortie #84086,https://biolit.fr/sorties/sortie-84086/,CANOURGUES Juliette,https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-12-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-11-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-10-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-1-scaled.jpg,10/30/2024 0:00,9.0000000,12.0000000,43.2730230000000,5.36220800000000,,Marseille,84092,Observation #84092,https://biolit.fr/observations/observation-84092/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-11-scaled.jpg,,TRUE,Identifiable +N1,84086,Sortie #84086,https://biolit.fr/sorties/sortie-84086/,CANOURGUES Juliette,https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-12-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-11-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-10-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-1-scaled.jpg,10/30/2024 0:00,9.0000000,12.0000000,43.2730230000000,5.36220800000000,,Marseille,84094,Observation #84094,https://biolit.fr/observations/observation-84094/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/79d097f8fc4f8b612fcd1e9f4bbdc3d0/2024/12/Image-5-scaled.jpg,,TRUE,Identifiable +N1,84114,Sortie #84114,https://biolit.fr/sorties/sortie-84114/,Maes Simon,https://biolit.fr/wp-content/uploads/jet-form-builder/d73d599c5a77070d5691de014304c039/2024/12/1733236775717-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d73d599c5a77070d5691de014304c039/2024/12/1733224105033-scaled.jpg,11/10/2024,14.0000000,16.0000000,45.7059730000000,-1.02911000000000,,Mornac sur Seudre,,,,,,,,,, +N1,84117,Sortie #84117,https://biolit.fr/sorties/sortie-84117/,Bernardin Herve,https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/12/photo_1-2-scaled.jpeg,12/01/2024,14.0:58,15.0000000,48.684873000000,-1.96020100000000,Planète Mer (antenne Dinard),Saint Malo Havre du Lupin,,,,,,,,,, +N1,84120,Sortie #84120,https://biolit.fr/sorties/sortie-84120/,Bernardin Herve,https://biolit.fr/wp-content/uploads/jet-form-builder/52a2958fea4a04abbb35dab4320713f8/2024/12/photo_1-2-1-scaled.jpeg,01/12/2104,14.0:58,15.0000000,48.6847430000000,-1.96131700000000,Planète Mer (antenne Dinard),Saint Malo Havre du Lupin,,,,,,,,,, +N1,84151,Sortie #84151,https://biolit.fr/sorties/sortie-84151/,Perrin Thomas,https://biolit.fr/wp-content/uploads/jet-form-builder/1f97f62a72da5d65ccac8f413c7eda4b/2024/12/IMG_20241107_151702-scaled.jpg,12/04/2024,3.0:14,3.0:14,48.6042200000000,-1.7587080000000,,Cherrueix,,,,,,,,,, +N1,84154,Sortie #84154,https://biolit.fr/sorties/sortie-84154/,Perrin Thomas,https://biolit.fr/wp-content/uploads/jet-form-builder/1f97f62a72da5d65ccac8f413c7eda4b/2024/12/IMG_20241107_151702-1-scaled.jpg,12/04/2024,10.0:55,11.0:55,48.6039800000000,-1.7625420000000,,Cherrueix,84156,Observation #84156,https://biolit.fr/observations/observation-84156/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/1f97f62a72da5d65ccac8f413c7eda4b/2024/12/IMG_20241107_151702-1-scaled.jpg,,TRUE,Identifiable +N1,84199,Sortie #84199,https://biolit.fr/sorties/sortie-84199/,KUONG AUDREY,https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/Cakkkpture-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/Capture-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/ftrdtdtd-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/hggff-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/hkhkh-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/jhgjgjg-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/jjjj-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/jklkjlkj-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/kk-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/kkkkkhhj-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/kljlkjljg-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/kmlkmlkml-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/ljlkjljljggg-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/lkjljljk-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/lkkmk-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/lklkjlkjlkj-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/lklklklk-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/llklklk-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/llll-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/lllllmm-1.jpg,12/06/2024,9.0000000,16.0000000,49.8859530000000,0.72235100000000,,DEAUVILLE,84201,Observation #84201,https://biolit.fr/observations/observation-84201/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/Cakkkpture-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/Capture-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/ftrdtdtd-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/hggff-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/hkhkh-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/jhgjgjg-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/jjjj-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/jklkjlkj-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/kk-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/kkkkkhhj-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/kljlkjljg-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/kmlkmlkml-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/ljlkjljljggg-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/lkjljljk-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/lkkmk-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/lklkjlkjlkj-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/lklklklk-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/llklklk-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/llll-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/336a60d2263bdf6ce20fafc423243742/2024/12/lllllmm-1.jpg,,,Ne sais pas +N1,84207,Sortie #84207,https://biolit.fr/sorties/sortie-84207/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/IMG-20241207-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/IMG-20241207-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/IMG-20241207-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_101512508.MP_-scaled.jpg,12/07/2024,11.0000000,12.0000000,43.5286400000000,4.13919600000000,LABELBLEU,Plage du Boucanet,84209,Observation #84209,https://biolit.fr/observations/observation-84209/,Holothuria (Roweothuria) poli,Concombre de mer ensablé,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/IMG-20241207-WA0011.jpg,,,Identifiable +N1,84207,Sortie #84207,https://biolit.fr/sorties/sortie-84207/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/IMG-20241207-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/IMG-20241207-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/IMG-20241207-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_101512508.MP_-scaled.jpg,12/07/2024,11.0000000,12.0000000,43.5286400000000,4.13919600000000,LABELBLEU,Plage du Boucanet,84211,Observation #84211,https://biolit.fr/observations/observation-84211/,Callinectes sapidus,Crabe bleu américain,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/IMG-20241207-WA0012.jpg,,TRUE,Identifiable +N1,84207,Sortie #84207,https://biolit.fr/sorties/sortie-84207/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/IMG-20241207-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/IMG-20241207-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/IMG-20241207-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_101512508.MP_-scaled.jpg,12/07/2024,11.0000000,12.0000000,43.5286400000000,4.13919600000000,LABELBLEU,Plage du Boucanet,84213,Observation #84213,https://biolit.fr/observations/observation-84213/,Callinectes sapidus,Crabe bleu américain,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/IMG-20241207-WA0013.jpg,,TRUE,Identifiable +N1,84207,Sortie #84207,https://biolit.fr/sorties/sortie-84207/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/IMG-20241207-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/IMG-20241207-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/IMG-20241207-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_101512508.MP_-scaled.jpg,12/07/2024,11.0000000,12.0000000,43.5286400000000,4.13919600000000,LABELBLEU,Plage du Boucanet,84215,Observation #84215,https://biolit.fr/observations/observation-84215/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_101512508.MP_-scaled.jpg,,TRUE,Identifiable +N1,84222,Sortie #84222,https://biolit.fr/sorties/sortie-84222/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_101517363.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_102201929.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_102959000.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_103131005.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_105907772-scaled.jpg,12/07/2024,11.0000000,12.0000000,43.5289200000000,4.13913100000000,LABELBLEU,Plage Nord du Grau-du-Roi,84224,Observation #84224,https://biolit.fr/observations/observation-84224/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_102201929.MP_-scaled.jpg,,,Ne sais pas +N1,84222,Sortie #84222,https://biolit.fr/sorties/sortie-84222/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_101517363.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_102201929.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_102959000.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_103131005.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_105907772-scaled.jpg,12/07/2024,11.0000000,12.0000000,43.5289200000000,4.13913100000000,LABELBLEU,Plage Nord du Grau-du-Roi,84226,Observation #84226,https://biolit.fr/observations/observation-84226/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_102959000.MP_-scaled.jpg,,TRUE,Identifiable +N1,84222,Sortie #84222,https://biolit.fr/sorties/sortie-84222/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_101517363.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_102201929.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_102959000.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_103131005.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_105907772-scaled.jpg,12/07/2024,11.0000000,12.0000000,43.5289200000000,4.13913100000000,LABELBLEU,Plage Nord du Grau-du-Roi,84228,Observation #84228,https://biolit.fr/observations/observation-84228/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_105907772-scaled.jpg,,TRUE,Ne sais pas +N1,84222,Sortie #84222,https://biolit.fr/sorties/sortie-84222/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_101517363.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_102201929.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_102959000.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_103131005.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_105907772-scaled.jpg,12/07/2024,11.0000000,12.0000000,43.5289200000000,4.13913100000000,LABELBLEU,Plage Nord du Grau-du-Roi,84230,Observation #84230,https://biolit.fr/observations/observation-84230/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_103131005.MP_-scaled.jpg,,TRUE,Ne sais pas +N1,84222,Sortie #84222,https://biolit.fr/sorties/sortie-84222/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_101517363.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_102201929.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_102959000.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_103131005.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_105907772-scaled.jpg,12/07/2024,11.0000000,12.0000000,43.5289200000000,4.13913100000000,LABELBLEU,Plage Nord du Grau-du-Roi,84232,Observation #84232,https://biolit.fr/observations/observation-84232/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2024/12/PXL_20241207_101517363.MP_-scaled.jpg,,,Ne sais pas +N1,84266,Sortie #84266,https://biolit.fr/sorties/sortie-84266/,Mosaic Benoit,https://biolit.fr/wp-content/uploads/jet-form-builder/2a98c60ab16f4ff7d7de03f7576a0d05/2024/12/profil-agri.jpg,12/04/2024,8.0000000,8.0000000,48.4928180000000,-2.67776300000000,,,,,,,,,,,, +N1,84717,Sortie #84717,https://biolit.fr/sorties/sortie-84717/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_467.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_113102_575-scaled.jpg,12/10/2024,9.0000000,11.0000000,43.4531650000000,3.81311400000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84719,Observation #84719,https://biolit.fr/observations/observation-84719/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_467.jpg,,TRUE,Identifiable +N1,84717,Sortie #84717,https://biolit.fr/sorties/sortie-84717/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_467.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_113102_575-scaled.jpg,12/10/2024,9.0000000,11.0000000,43.4531650000000,3.81311400000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84721,Observation #84721,https://biolit.fr/observations/observation-84721/,Callinectes sapidus,Crabe bleu américain,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_113102_575-scaled.jpg,,TRUE,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84745,Observation #84745,https://biolit.fr/observations/observation-84745/,Thylacodes arenarius,Grand vermet,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg,,TRUE,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84747,Observation #84747,https://biolit.fr/observations/observation-84747/,Pecten jacobaeus,Coquille Saint-Jacques de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg,,,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84749,Observation #84749,https://biolit.fr/observations/observation-84749/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg,,TRUE,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84751,Observation #84751,https://biolit.fr/observations/observation-84751/,Eunicella singularis,Gorgone blanche,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg,,,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84753,Observation #84753,https://biolit.fr/observations/observation-84753/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg,,TRUE,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84755,Observation #84755,https://biolit.fr/observations/observation-84755/,Corallina officinalis/caespitosa,Coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg,,,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84757,Observation #84757,https://biolit.fr/observations/observation-84757/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg,,TRUE,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84759,Observation #84759,https://biolit.fr/observations/observation-84759/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg,,,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84761,Observation #84761,https://biolit.fr/observations/observation-84761/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg,,TRUE,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84763,Observation #84763,https://biolit.fr/observations/observation-84763/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg,,TRUE,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84765,Observation #84765,https://biolit.fr/observations/observation-84765/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg,,TRUE,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84767,Observation #84767,https://biolit.fr/observations/observation-84767/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg,,TRUE,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84769,Observation #84769,https://biolit.fr/observations/observation-84769/,Naticarius stercusmuscarum,Natice mouchetée,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg,,TRUE,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84771,Observation #84771,https://biolit.fr/observations/observation-84771/,Bittium reticulatum,Cérithe réticulé,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg,,,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84773,Observation #84773,https://biolit.fr/observations/observation-84773/,Microcosmus claudicans,Ascidie boiteuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg,,,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84775,Observation #84775,https://biolit.fr/observations/observation-84775/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg,,,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84777,Observation #84777,https://biolit.fr/observations/observation-84777/,Ensis siliqua,Couteau-silique,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg,,,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84779,Observation #84779,https://biolit.fr/observations/observation-84779/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg,,TRUE,Identifiable +N1,84743,Sortie #84743,https://biolit.fr/sorties/sortie-84743/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241210_104613_981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_436.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_679.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_771.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_774.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_788.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125757_944.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_156-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_330-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125811_620.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125820_658.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_048.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125821_437.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_802.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125829_841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_076.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,12/10/2024,9.0000000,11.0000000,43.4535360000000,3.81345700000000,LPO Occitanie (Dt Hérault),Plage des Aresquiers,84781,Observation #84781,https://biolit.fr/observations/observation-84781/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/IMG_20241220_125830_103.jpg,,,non-identifiable +N1,84784,Sortie #84784,https://biolit.fr/sorties/sortie-84784/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/469780424_2952190911612901_8642401188607923896_n.jpg,12/11/2024,17.0000000,17.0000000,43.4436310000000,3.80187000000000,LPO Occitanie (Dt Hérault),Frontignan,84786,Observation #84786,https://biolit.fr/observations/observation-84786/,Callinectes sapidus,Crabe bleu américain,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2024/12/469780424_2952190911612901_8642401188607923896_n.jpg,,TRUE,Identifiable +N1,84813,Sortie #84813,https://biolit.fr/sorties/sortie-84813/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111331-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111427-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111453-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111459-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111532-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111619-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111731-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111740-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111853-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112607-scaled.jpg,12/22/2024 0:00,10.0000000,11.0000000,43.3396970000000,5.258177000000,Planète Mer,Niolon,,,,,,,,,, +N1,84830,Sortie #84830,https://biolit.fr/sorties/sortie-84830/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/Capture-decran-2024-12-22-220757_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111138-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111331-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111427-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111453-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111459-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111532-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111619-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111631-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111731-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111740-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112010-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112129-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112407-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112607-1-scaled.jpg,12/22/2024 0:00,10.0000000,11.0000000,43.3396920000000,5.25818700000000,Planète Mer,Niolon,84832,Observation #84832,https://biolit.fr/observations/observation-84832/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/Capture-decran-2024-12-22-220757_.jpg,,,Ne sais pas +N1,84830,Sortie #84830,https://biolit.fr/sorties/sortie-84830/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/Capture-decran-2024-12-22-220757_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111138-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111331-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111427-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111453-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111459-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111532-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111619-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111631-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111731-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111740-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112010-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112129-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112407-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112607-1-scaled.jpg,12/22/2024 0:00,10.0000000,11.0000000,43.3396920000000,5.25818700000000,Planète Mer,Niolon,84834,Observation #84834,https://biolit.fr/observations/observation-84834/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111138-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112010-1-scaled.jpg,,,Identifiable +N1,84830,Sortie #84830,https://biolit.fr/sorties/sortie-84830/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/Capture-decran-2024-12-22-220757_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111138-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111331-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111427-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111453-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111459-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111532-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111619-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111631-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111731-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111740-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112010-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112129-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112407-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112607-1-scaled.jpg,12/22/2024 0:00,10.0000000,11.0000000,43.3396920000000,5.25818700000000,Planète Mer,Niolon,84836,Observation #84836,https://biolit.fr/observations/observation-84836/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111331-1-scaled.jpg,,TRUE,Identifiable +N1,84830,Sortie #84830,https://biolit.fr/sorties/sortie-84830/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/Capture-decran-2024-12-22-220757_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111138-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111331-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111427-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111453-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111459-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111532-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111619-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111631-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111731-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111740-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112010-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112129-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112407-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112607-1-scaled.jpg,12/22/2024 0:00,10.0000000,11.0000000,43.3396920000000,5.25818700000000,Planète Mer,Niolon,84838,Observation #84838,https://biolit.fr/observations/observation-84838/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111427-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112407-1-scaled.jpg,,TRUE,Identifiable +N1,84830,Sortie #84830,https://biolit.fr/sorties/sortie-84830/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/Capture-decran-2024-12-22-220757_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111138-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111331-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111427-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111453-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111459-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111532-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111619-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111631-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111731-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111740-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112010-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112129-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112407-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112607-1-scaled.jpg,12/22/2024 0:00,10.0000000,11.0000000,43.3396920000000,5.25818700000000,Planète Mer,Niolon,84840,Observation #84840,https://biolit.fr/observations/observation-84840/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111453-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111459-1-scaled.jpg,,,Identifiable +N1,84830,Sortie #84830,https://biolit.fr/sorties/sortie-84830/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/Capture-decran-2024-12-22-220757_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111138-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111331-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111427-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111453-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111459-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111532-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111619-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111631-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111731-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111740-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112010-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112129-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112407-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112607-1-scaled.jpg,12/22/2024 0:00,10.0000000,11.0000000,43.3396920000000,5.25818700000000,Planète Mer,Niolon,84842,Observation #84842,https://biolit.fr/observations/observation-84842/,Jujubinus striatus,Troque jujube striée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111532-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111619-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111631-1-scaled.jpg,,,Identifiable +N1,84830,Sortie #84830,https://biolit.fr/sorties/sortie-84830/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/Capture-decran-2024-12-22-220757_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111138-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111331-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111427-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111453-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111459-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111532-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111619-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111631-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111731-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111740-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112010-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112129-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112407-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112607-1-scaled.jpg,12/22/2024 0:00,10.0000000,11.0000000,43.3396920000000,5.25818700000000,Planète Mer,Niolon,84844,Observation #84844,https://biolit.fr/observations/observation-84844/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111731-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111740-1-scaled.jpg,,,Identifiable +N1,84830,Sortie #84830,https://biolit.fr/sorties/sortie-84830/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/Capture-decran-2024-12-22-220757_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111138-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111331-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111427-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111453-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111459-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111532-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111619-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111631-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111731-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_111740-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112010-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112129-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112407-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112607-1-scaled.jpg,12/22/2024 0:00,10.0000000,11.0000000,43.3396920000000,5.25818700000000,Planète Mer,Niolon,84846,Observation #84846,https://biolit.fr/observations/observation-84846/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241222_112607-1-scaled.jpg,,TRUE,Identifiable +N1,84859,Sortie #84859,https://biolit.fr/sorties/sortie-84859/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_114408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_114440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115437-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115456-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115654-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115811-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_120034-scaled.jpg,11/02/2024,11.0000000,12.0000000,43.2625510000000,5.37089900000000,Planète Mer,Prado Sud,84861,Observation #84861,https://biolit.fr/observations/observation-84861/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_114408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_114440-scaled.jpg,,,Ne sais pas +N1,84859,Sortie #84859,https://biolit.fr/sorties/sortie-84859/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_114408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_114440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115437-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115456-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115654-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115811-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_120034-scaled.jpg,11/02/2024,11.0000000,12.0000000,43.2625510000000,5.37089900000000,Planète Mer,Prado Sud,84863,Observation #84863,https://biolit.fr/observations/observation-84863/,Dictyota spiralis,Dictyote spatulée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115437-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115456-scaled.jpg,,,Identifiable +N1,84859,Sortie #84859,https://biolit.fr/sorties/sortie-84859/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_114408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_114440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115437-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115456-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115654-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115811-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_120034-scaled.jpg,11/02/2024,11.0000000,12.0000000,43.2625510000000,5.37089900000000,Planète Mer,Prado Sud,84865,Observation #84865,https://biolit.fr/observations/observation-84865/,Polititapes aureus,Palourde jaune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115654-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115713-scaled.jpg,,,Identifiable +N1,84859,Sortie #84859,https://biolit.fr/sorties/sortie-84859/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_114408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_114440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115437-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115456-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115654-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115811-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_120034-scaled.jpg,11/02/2024,11.0000000,12.0000000,43.2625510000000,5.37089900000000,Planète Mer,Prado Sud,84867,Observation #84867,https://biolit.fr/observations/observation-84867/,Caulerpa cylindracea,Caulerpe cylindracée,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115811-scaled.jpg,,TRUE,Identifiable +N1,84859,Sortie #84859,https://biolit.fr/sorties/sortie-84859/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_114408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_114440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115437-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115456-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115654-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_115811-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_120034-scaled.jpg,11/02/2024,11.0000000,12.0000000,43.2625510000000,5.37089900000000,Planète Mer,Prado Sud,84869,Observation #84869,https://biolit.fr/observations/observation-84869/,Corallina officinalis/caespitosa,Coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_120034-scaled.jpg,,,Identifiable +N1,84888,Sortie #84888,https://biolit.fr/sorties/sortie-84888/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153359862_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153407340_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153515521-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153614724_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153621519_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154230434_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154417053_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154424669_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154921284_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160946259_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160954157_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162502669-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162508685-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162827682_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_163142843-scaled.jpg,11/17/2024 0:00,15.0000000,16.0000000,43.25955800000,5.37504300000000,Planète Mer,Plage de l'Huveaune,84890,Observation #84890,https://biolit.fr/observations/observation-84890/,Cardita calyculata,Cardite petit calice,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155501-scaled.jpg,,,Identifiable +N1,84888,Sortie #84888,https://biolit.fr/sorties/sortie-84888/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153359862_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153407340_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153515521-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153614724_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153621519_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154230434_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154417053_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154424669_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154921284_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160946259_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160954157_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162502669-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162508685-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162827682_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_163142843-scaled.jpg,11/17/2024 0:00,15.0000000,16.0000000,43.25955800000,5.37504300000000,Planète Mer,Plage de l'Huveaune,84892,Observation #84892,https://biolit.fr/observations/observation-84892/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153359862_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153407340_HDR-scaled.jpg,,TRUE,Identifiable +N1,84888,Sortie #84888,https://biolit.fr/sorties/sortie-84888/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153359862_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153407340_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153515521-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153614724_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153621519_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154230434_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154417053_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154424669_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154921284_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160946259_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160954157_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162502669-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162508685-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162827682_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_163142843-scaled.jpg,11/17/2024 0:00,15.0000000,16.0000000,43.25955800000,5.37504300000000,Planète Mer,Plage de l'Huveaune,84894,Observation #84894,https://biolit.fr/observations/observation-84894/,Chamelea gallina,Petite praire,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153515521-rotated.jpg,,,Identifiable +N1,84888,Sortie #84888,https://biolit.fr/sorties/sortie-84888/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153359862_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153407340_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153515521-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153614724_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153621519_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154230434_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154417053_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154424669_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154921284_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160946259_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160954157_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162502669-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162508685-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162827682_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_163142843-scaled.jpg,11/17/2024 0:00,15.0000000,16.0000000,43.25955800000,5.37504300000000,Planète Mer,Plage de l'Huveaune,84896,Observation #84896,https://biolit.fr/observations/observation-84896/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153614724_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153621519_HDR-scaled.jpg,,,Identifiable +N1,84888,Sortie #84888,https://biolit.fr/sorties/sortie-84888/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153359862_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153407340_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153515521-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153614724_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153621519_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154230434_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154417053_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154424669_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154921284_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160946259_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160954157_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162502669-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162508685-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162827682_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_163142843-scaled.jpg,11/17/2024 0:00,15.0000000,16.0000000,43.25955800000,5.37504300000000,Planète Mer,Plage de l'Huveaune,84898,Observation #84898,https://biolit.fr/observations/observation-84898/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154417053_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154424669_HDR-rotated.jpg,,TRUE,Identifiable +N1,84888,Sortie #84888,https://biolit.fr/sorties/sortie-84888/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153359862_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153407340_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153515521-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153614724_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153621519_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154230434_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154417053_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154424669_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154921284_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160946259_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160954157_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162502669-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162508685-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162827682_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_163142843-scaled.jpg,11/17/2024 0:00,15.0000000,16.0000000,43.25955800000,5.37504300000000,Planète Mer,Plage de l'Huveaune,84900,Observation #84900,https://biolit.fr/observations/observation-84900/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154921284_HDR-scaled.jpg,,,Identifiable +N1,84888,Sortie #84888,https://biolit.fr/sorties/sortie-84888/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153359862_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153407340_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153515521-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153614724_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153621519_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154230434_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154417053_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154424669_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154921284_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160946259_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160954157_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162502669-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162508685-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162827682_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_163142843-scaled.jpg,11/17/2024 0:00,15.0000000,16.0000000,43.25955800000,5.37504300000000,Planète Mer,Plage de l'Huveaune,84902,Observation #84902,https://biolit.fr/observations/observation-84902/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160946259_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160954157_HDR-scaled.jpg,,,Identifiable +N1,84888,Sortie #84888,https://biolit.fr/sorties/sortie-84888/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153359862_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153407340_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153515521-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153614724_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153621519_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154230434_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154417053_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154424669_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154921284_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160946259_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160954157_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162502669-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162508685-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162827682_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_163142843-scaled.jpg,11/17/2024 0:00,15.0000000,16.0000000,43.25955800000,5.37504300000000,Planète Mer,Plage de l'Huveaune,84904,Observation #84904,https://biolit.fr/observations/observation-84904/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162502669-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162508685-scaled.jpg,,TRUE,Identifiable +N1,84888,Sortie #84888,https://biolit.fr/sorties/sortie-84888/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153359862_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153407340_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153515521-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153614724_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153621519_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154230434_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154417053_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154424669_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154921284_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160946259_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160954157_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162502669-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162508685-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162827682_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_163142843-scaled.jpg,11/17/2024 0:00,15.0000000,16.0000000,43.25955800000,5.37504300000000,Planète Mer,Plage de l'Huveaune,84906,Observation #84906,https://biolit.fr/observations/observation-84906/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162827682_HDR-scaled.jpg,,,Identifiable +N1,84888,Sortie #84888,https://biolit.fr/sorties/sortie-84888/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_155501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153359862_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153407340_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153515521-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153614724_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_153621519_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154230434_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154417053_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154424669_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_154921284_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160946259_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_160954157_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162502669-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162508685-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_162827682_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_163142843-scaled.jpg,11/17/2024 0:00,15.0000000,16.0000000,43.25955800000,5.37504300000000,Planète Mer,Plage de l'Huveaune,84908,Observation #84908,https://biolit.fr/observations/observation-84908/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241117_163142843-scaled.jpg,,,Identifiable +N1,84944,Sortie #84944,https://biolit.fr/sorties/sortie-84944/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_104814329_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105017225-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105029509-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105058500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105116847-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105128385_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105704431_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110356449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110434629_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110439972_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110459197-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_111650641_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112231362-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112240378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113743437_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_114241075.jpg,11/01/2024,10.0000000,12.0000000,43.2396680000000,5.36232100000000,Planète Mer,Plage de l’Anse du Bain des Dames,84946,Observation #84946,https://biolit.fr/observations/observation-84946/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113743437_.jpg,,,Identifiable +N1,84944,Sortie #84944,https://biolit.fr/sorties/sortie-84944/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_104814329_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105017225-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105029509-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105058500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105116847-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105128385_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105704431_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110356449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110434629_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110439972_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110459197-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_111650641_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112231362-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112240378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113743437_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_114241075.jpg,11/01/2024,10.0000000,12.0000000,43.2396680000000,5.36232100000000,Planète Mer,Plage de l’Anse du Bain des Dames,84948,Observation #84948,https://biolit.fr/observations/observation-84948/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_104814329_HDR-rotated.jpg,,,Identifiable +N1,84944,Sortie #84944,https://biolit.fr/sorties/sortie-84944/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_104814329_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105017225-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105029509-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105058500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105116847-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105128385_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105704431_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110356449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110434629_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110439972_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110459197-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_111650641_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112231362-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112240378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113743437_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_114241075.jpg,11/01/2024,10.0000000,12.0000000,43.2396680000000,5.36232100000000,Planète Mer,Plage de l’Anse du Bain des Dames,84950,Observation #84950,https://biolit.fr/observations/observation-84950/,Euthria cornea,Buccin veiné,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105017225-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105029509-rotated.jpg,,,Identifiable +N1,84944,Sortie #84944,https://biolit.fr/sorties/sortie-84944/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_104814329_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105017225-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105029509-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105058500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105116847-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105128385_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105704431_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110356449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110434629_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110439972_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110459197-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_111650641_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112231362-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112240378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113743437_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_114241075.jpg,11/01/2024,10.0000000,12.0000000,43.2396680000000,5.36232100000000,Planète Mer,Plage de l’Anse du Bain des Dames,84952,Observation #84952,https://biolit.fr/observations/observation-84952/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105058500.jpg,,,Identifiable +N1,84944,Sortie #84944,https://biolit.fr/sorties/sortie-84944/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_104814329_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105017225-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105029509-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105058500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105116847-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105128385_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105704431_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110356449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110434629_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110439972_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110459197-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_111650641_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112231362-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112240378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113743437_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_114241075.jpg,11/01/2024,10.0000000,12.0000000,43.2396680000000,5.36232100000000,Planète Mer,Plage de l’Anse du Bain des Dames,84954,Observation #84954,https://biolit.fr/observations/observation-84954/,Diodora graeca,Fissurelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105116847-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105128385_HDR.jpg,,,Identifiable +N1,84944,Sortie #84944,https://biolit.fr/sorties/sortie-84944/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_104814329_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105017225-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105029509-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105058500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105116847-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105128385_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105704431_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110356449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110434629_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110439972_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110459197-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_111650641_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112231362-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112240378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113743437_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_114241075.jpg,11/01/2024,10.0000000,12.0000000,43.2396680000000,5.36232100000000,Planète Mer,Plage de l’Anse du Bain des Dames,84956,Observation #84956,https://biolit.fr/observations/observation-84956/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105704431_HDR-scaled.jpg,,,Identifiable +N1,84944,Sortie #84944,https://biolit.fr/sorties/sortie-84944/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_104814329_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105017225-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105029509-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105058500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105116847-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105128385_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105704431_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110356449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110434629_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110439972_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110459197-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_111650641_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112231362-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112240378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113743437_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_114241075.jpg,11/01/2024,10.0000000,12.0000000,43.2396680000000,5.36232100000000,Planète Mer,Plage de l’Anse du Bain des Dames,84958,Observation #84958,https://biolit.fr/observations/observation-84958/,Bolma rugosa,Astrée rugueuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110356449_HDR-rotated.jpg,,,Identifiable +N1,84944,Sortie #84944,https://biolit.fr/sorties/sortie-84944/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_104814329_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105017225-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105029509-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105058500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105116847-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105128385_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105704431_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110356449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110434629_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110439972_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110459197-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_111650641_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112231362-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112240378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113743437_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_114241075.jpg,11/01/2024,10.0000000,12.0000000,43.2396680000000,5.36232100000000,Planète Mer,Plage de l’Anse du Bain des Dames,84960,Observation #84960,https://biolit.fr/observations/observation-84960/,Striarca lactea,Striarca laiteuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110434629_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110439972_HDR.jpg,,,Identifiable +N1,84944,Sortie #84944,https://biolit.fr/sorties/sortie-84944/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_104814329_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105017225-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105029509-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105058500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105116847-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105128385_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105704431_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110356449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110434629_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110439972_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110459197-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_111650641_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112231362-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112240378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113743437_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_114241075.jpg,11/01/2024,10.0000000,12.0000000,43.2396680000000,5.36232100000000,Planète Mer,Plage de l’Anse du Bain des Dames,84962,Observation #84962,https://biolit.fr/observations/observation-84962/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110459197-rotated.jpg,,,Identifiable +N1,84944,Sortie #84944,https://biolit.fr/sorties/sortie-84944/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_104814329_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105017225-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105029509-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105058500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105116847-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105128385_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105704431_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110356449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110434629_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110439972_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110459197-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_111650641_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112231362-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112240378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113743437_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_114241075.jpg,11/01/2024,10.0000000,12.0000000,43.2396680000000,5.36232100000000,Planète Mer,Plage de l’Anse du Bain des Dames,84964,Observation #84964,https://biolit.fr/observations/observation-84964/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_111650641_HDR-scaled.jpg,,TRUE,Identifiable +N1,84944,Sortie #84944,https://biolit.fr/sorties/sortie-84944/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_104814329_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105017225-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105029509-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105058500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105116847-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105128385_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105704431_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110356449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110434629_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110439972_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110459197-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_111650641_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112231362-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112240378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113743437_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_114241075.jpg,11/01/2024,10.0000000,12.0000000,43.2396680000000,5.36232100000000,Planète Mer,Plage de l’Anse du Bain des Dames,84966,Observation #84966,https://biolit.fr/observations/observation-84966/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112231362-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112240378-scaled.jpg,,,Ne sais pas +N1,84944,Sortie #84944,https://biolit.fr/sorties/sortie-84944/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_104814329_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105017225-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105029509-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105058500.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105116847-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105128385_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_105704431_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110356449_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110434629_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110439972_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_110459197-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_111650641_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112231362-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_112240378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_113743437_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_114241075.jpg,11/01/2024,10.0000000,12.0000000,43.2396680000000,5.36232100000000,Planète Mer,Plage de l’Anse du Bain des Dames,84968,Observation #84968,https://biolit.fr/observations/observation-84968/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241101_114241075.jpg,,,Ne sais pas +N1,84975,Sortie #84975,https://biolit.fr/sorties/sortie-84975/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_104650336_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_104853168-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_104918214-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_110812987-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_110821182-scaled.jpg,11/02/2024,11.0000000,12.0000000,43.2621760000000,5.37065800000000,Planète Mer,Prado Sud,84977,Observation #84977,https://biolit.fr/observations/observation-84977/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_104650336_HDR-scaled.jpg,,TRUE,Identifiable +N1,84975,Sortie #84975,https://biolit.fr/sorties/sortie-84975/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_104650336_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_104853168-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_104918214-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_110812987-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_110821182-scaled.jpg,11/02/2024,11.0000000,12.0000000,43.2621760000000,5.37065800000000,Planète Mer,Prado Sud,84979,Observation #84979,https://biolit.fr/observations/observation-84979/,Aidablennius sphynx,Blennie sphinx,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_104853168-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_104918214-scaled.jpg,,,Identifiable +N1,84975,Sortie #84975,https://biolit.fr/sorties/sortie-84975/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_104650336_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_104853168-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_104918214-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_110812987-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_110821182-scaled.jpg,11/02/2024,11.0000000,12.0000000,43.2621760000000,5.37065800000000,Planète Mer,Prado Sud,84981,Observation #84981,https://biolit.fr/observations/observation-84981/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_110812987-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241102_110821182-scaled.jpg,,TRUE,Identifiable +N1,84990,Sortie #84990,https://biolit.fr/sorties/sortie-84990/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_130811951_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_130821036_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132009853-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132016643-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132343091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132350760-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132414009-rotated.jpg,11/11/2024,13.0000000,13.0000000,43.237927000000,5.36184700000000,Planète Mer,Plage des Phocéens,84992,Observation #84992,https://biolit.fr/observations/observation-84992/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_130811951_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_130821036_HDR-rotated.jpg,,,Identifiable +N1,84990,Sortie #84990,https://biolit.fr/sorties/sortie-84990/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_130811951_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_130821036_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132009853-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132016643-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132343091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132350760-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132414009-rotated.jpg,11/11/2024,13.0000000,13.0000000,43.237927000000,5.36184700000000,Planète Mer,Plage des Phocéens,84994,Observation #84994,https://biolit.fr/observations/observation-84994/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132009853-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132016643-rotated.jpg,,,Identifiable +N1,84990,Sortie #84990,https://biolit.fr/sorties/sortie-84990/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_130811951_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_130821036_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132009853-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132016643-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132343091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132350760-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132414009-rotated.jpg,11/11/2024,13.0000000,13.0000000,43.237927000000,5.36184700000000,Planète Mer,Plage des Phocéens,84996,Observation #84996,https://biolit.fr/observations/observation-84996/,Columbella rustica,Columbelle rustique,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132343091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132350760-rotated.jpg,,,Identifiable +N1,84990,Sortie #84990,https://biolit.fr/sorties/sortie-84990/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_130811951_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_130821036_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132009853-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132016643-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132343091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132350760-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132414009-rotated.jpg,11/11/2024,13.0000000,13.0000000,43.237927000000,5.36184700000000,Planète Mer,Plage des Phocéens,84998,Observation #84998,https://biolit.fr/observations/observation-84998/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2024/12/IMG_20241111_132414009-rotated.jpg,,,Ne sais pas +N1,85008,Sortie #85008,https://biolit.fr/sorties/sortie-85008/,THERON GUILHEM,https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008865-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008862-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008863-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008856-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008853-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008854-scaled.jpg,12/27/2024 0:00,13.0000000,16.0000000,43.2826,4.951,,L Espiguette,85010,Observation #85010,https://biolit.fr/observations/observation-85010/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008865-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008862-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008863-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008856-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008853-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008854-scaled.jpg,,,Ne sais pas +N1,85008,Sortie #85008,https://biolit.fr/sorties/sortie-85008/,THERON GUILHEM,https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008865-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008862-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008863-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008856-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008853-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008854-scaled.jpg,12/27/2024 0:00,13.0000000,16.0000000,43.2826,4.951,,L Espiguette,85912,Observation #85574,https://biolit.fr/observations/observation-85574/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008850-scaled.jpg,,TRUE,Identifiable +N1,85008,Sortie #85008,https://biolit.fr/sorties/sortie-85008/,THERON GUILHEM,https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008865-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008862-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008863-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008856-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008853-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008854-scaled.jpg,12/27/2024 0:00,13.0000000,16.0000000,43.2826,4.951,,L Espiguette,85914,Observation #85570,https://biolit.fr/observations/observation-85570/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008865-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008853-scaled.jpg,,TRUE,Identifiable +N1,85008,Sortie #85008,https://biolit.fr/sorties/sortie-85008/,THERON GUILHEM,https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008865-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008862-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008863-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008856-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008853-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008854-scaled.jpg,12/27/2024 0:00,13.0000000,16.0000000,43.2826,4.951,,L Espiguette,85916,Observation #85576,https://biolit.fr/observations/observation-85576/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008862-scaled.jpg,,TRUE,Identifiable +N1,85008,Sortie #85008,https://biolit.fr/sorties/sortie-85008/,THERON GUILHEM,https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008865-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008862-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008863-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008856-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008853-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008854-scaled.jpg,12/27/2024 0:00,13.0000000,16.0000000,43.2826,4.951,,L Espiguette,85918,Observation #85572,https://biolit.fr/observations/observation-85572/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/a5f7b712a4bde49b8115eca76e7d1219/2024/12/1000008854-scaled.jpg,,TRUE,Identifiable +N1,85018,Sortie #85018,https://biolit.fr/sorties/sortie-85018/,GELLY Ludovic,https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4561-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4565-scaled.jpg,12/27/2024 0:00,13.0000000,16.0000000,43.4731050000000,4.16542800000000,,plage de l'Espiguette 2 eme épis,85020,Observation #85020,https://biolit.fr/observations/observation-85020/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4556-scaled.jpg,,TRUE,Identifiable +N1,85018,Sortie #85018,https://biolit.fr/sorties/sortie-85018/,GELLY Ludovic,https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4561-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4565-scaled.jpg,12/27/2024 0:00,13.0000000,16.0000000,43.4731050000000,4.16542800000000,,plage de l'Espiguette 2 eme épis,85022,Observation #85022,https://biolit.fr/observations/observation-85022/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4560-scaled.jpg,,TRUE,Identifiable +N1,85018,Sortie #85018,https://biolit.fr/sorties/sortie-85018/,GELLY Ludovic,https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4561-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4565-scaled.jpg,12/27/2024 0:00,13.0000000,16.0000000,43.4731050000000,4.16542800000000,,plage de l'Espiguette 2 eme épis,85024,Observation #85024,https://biolit.fr/observations/observation-85024/,Sabellaria spinulosa,Hermelle épineuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4564-scaled.jpg,,,Identifiable +N1,85018,Sortie #85018,https://biolit.fr/sorties/sortie-85018/,GELLY Ludovic,https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4561-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4565-scaled.jpg,12/27/2024 0:00,13.0000000,16.0000000,43.4731050000000,4.16542800000000,,plage de l'Espiguette 2 eme épis,85026,Observation #85026,https://biolit.fr/observations/observation-85026/,Corallina officinalis/caespitosa,Coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4561-scaled.jpg,,,Identifiable +N1,85018,Sortie #85018,https://biolit.fr/sorties/sortie-85018/,GELLY Ludovic,https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4560-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4561-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4564-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4565-scaled.jpg,12/27/2024 0:00,13.0000000,16.0000000,43.4731050000000,4.16542800000000,,plage de l'Espiguette 2 eme épis,85028,Observation #85028,https://biolit.fr/observations/observation-85028/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1267187041be17e63ec2c4c59910451c/2024/12/IMG_4558-scaled.jpg,,,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85051,Observation #85051,https://biolit.fr/observations/observation-85051/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,,,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85053,Observation #85053,https://biolit.fr/observations/observation-85053/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg,,,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85055,Observation #85055,https://biolit.fr/observations/observation-85055/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg,,,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85057,Observation #85057,https://biolit.fr/observations/observation-85057/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg,,,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85059,Observation #85059,https://biolit.fr/observations/observation-85059/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg,,,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85061,Observation #85061,https://biolit.fr/observations/observation-85061/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg,,,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85063,Observation #85063,https://biolit.fr/observations/observation-85063/,Ammophila arenaria,Oyat,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg,,TRUE,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85065,Observation #85065,https://biolit.fr/observations/observation-85065/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg,,, +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85067,Observation #85067,https://biolit.fr/observations/observation-85067/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg,,,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85069,Observation #85069,https://biolit.fr/observations/observation-85069/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg,,,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85071,Observation #85071,https://biolit.fr/observations/observation-85071/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg,,,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85073,Observation #85073,https://biolit.fr/observations/observation-85073/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg,,,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85075,Observation #85075,https://biolit.fr/observations/observation-85075/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg,,,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85077,Observation #85077,https://biolit.fr/observations/observation-85077/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg,,TRUE,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85079,Observation #85079,https://biolit.fr/observations/observation-85079/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg,,,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85081,Observation #85081,https://biolit.fr/observations/observation-85081/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg,,,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85083,Observation #85083,https://biolit.fr/observations/observation-85083/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg,,,Ne sais pas +N1,85049,Sortie #85049,https://biolit.fr/sorties/sortie-85049/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080064-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080065-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080090-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080091-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080094-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080114-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,12/23/2024 0:00,14.0000000,17.0000000,49.2168530000000,-1.61364000000000,,Pointe du Becquet,85085,Observation #85085,https://biolit.fr/observations/observation-85085/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080115-scaled.jpg,,,Ne sais pas +N1,85095,Sortie #85095,https://biolit.fr/sorties/sortie-85095/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080125-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080122-scaled.jpg,12/24/2024 0:00,14.0000000,17.0000000,49.0412970000000,-1.6007050000000,,Agon-Coutainville,85097,Observation #85097,https://biolit.fr/observations/observation-85097/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080142-scaled.jpg,,,Ne sais pas +N1,85095,Sortie #85095,https://biolit.fr/sorties/sortie-85095/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080125-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080122-scaled.jpg,12/24/2024 0:00,14.0000000,17.0000000,49.0412970000000,-1.6007050000000,,Agon-Coutainville,85099,Observation #85099,https://biolit.fr/observations/observation-85099/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080131-scaled.jpg,,,Ne sais pas +N1,85095,Sortie #85095,https://biolit.fr/sorties/sortie-85095/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080125-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080122-scaled.jpg,12/24/2024 0:00,14.0000000,17.0000000,49.0412970000000,-1.6007050000000,,Agon-Coutainville,85101,Observation #85101,https://biolit.fr/observations/observation-85101/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080130-scaled.jpg,,TRUE,Ne sais pas +N1,85095,Sortie #85095,https://biolit.fr/sorties/sortie-85095/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080125-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080122-scaled.jpg,12/24/2024 0:00,14.0000000,17.0000000,49.0412970000000,-1.6007050000000,,Agon-Coutainville,85103,Observation #85103,https://biolit.fr/observations/observation-85103/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080128-scaled.jpg,,,Ne sais pas +N1,85095,Sortie #85095,https://biolit.fr/sorties/sortie-85095/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080125-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080122-scaled.jpg,12/24/2024 0:00,14.0000000,17.0000000,49.0412970000000,-1.6007050000000,,Agon-Coutainville,85105,Observation #85105,https://biolit.fr/observations/observation-85105/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080118-scaled.jpg,,,Ne sais pas +N1,85095,Sortie #85095,https://biolit.fr/sorties/sortie-85095/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080125-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080122-scaled.jpg,12/24/2024 0:00,14.0000000,17.0000000,49.0412970000000,-1.6007050000000,,Agon-Coutainville,85107,Observation #85107,https://biolit.fr/observations/observation-85107/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080125-scaled.jpg,,,Ne sais pas +N1,85095,Sortie #85095,https://biolit.fr/sorties/sortie-85095/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080125-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080122-scaled.jpg,12/24/2024 0:00,14.0000000,17.0000000,49.0412970000000,-1.6007050000000,,Agon-Coutainville,85109,Observation #85109,https://biolit.fr/observations/observation-85109/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080123-scaled.jpg,,,Ne sais pas +N1,85095,Sortie #85095,https://biolit.fr/sorties/sortie-85095/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080131-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080118-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080125-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080122-scaled.jpg,12/24/2024 0:00,14.0000000,17.0000000,49.0412970000000,-1.6007050000000,,Agon-Coutainville,85111,Observation #85111,https://biolit.fr/observations/observation-85111/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080122-scaled.jpg,,,Ne sais pas +N1,85121,Sortie #85121,https://biolit.fr/sorties/sortie-85121/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080153-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080166-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080202-scaled.jpg,12/26/2024 0:00,14.0000000,17.0000000,49.1552930000000,-1.59727800000000,,Pirou,85123,Observation #85123,https://biolit.fr/observations/observation-85123/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080146-scaled.jpg,,,Ne sais pas +N1,85121,Sortie #85121,https://biolit.fr/sorties/sortie-85121/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080153-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080166-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080202-scaled.jpg,12/26/2024 0:00,14.0000000,17.0000000,49.1552930000000,-1.59727800000000,,Pirou,85125,Observation #85125,https://biolit.fr/observations/observation-85125/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080152-scaled.jpg,,,Ne sais pas +N1,85121,Sortie #85121,https://biolit.fr/sorties/sortie-85121/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080153-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080166-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080202-scaled.jpg,12/26/2024 0:00,14.0000000,17.0000000,49.1552930000000,-1.59727800000000,,Pirou,85127,Observation #85127,https://biolit.fr/observations/observation-85127/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080153-scaled.jpg,,,non-identifiable +N1,85121,Sortie #85121,https://biolit.fr/sorties/sortie-85121/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080153-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080166-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080202-scaled.jpg,12/26/2024 0:00,14.0000000,17.0000000,49.1552930000000,-1.59727800000000,,Pirou,85129,Observation #85129,https://biolit.fr/observations/observation-85129/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080157-scaled.jpg,,,Ne sais pas +N1,85121,Sortie #85121,https://biolit.fr/sorties/sortie-85121/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080153-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080166-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080202-scaled.jpg,12/26/2024 0:00,14.0000000,17.0000000,49.1552930000000,-1.59727800000000,,Pirou,85131,Observation #85131,https://biolit.fr/observations/observation-85131/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080158-scaled.jpg,,,Ne sais pas +N1,85121,Sortie #85121,https://biolit.fr/sorties/sortie-85121/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080153-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080166-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080202-scaled.jpg,12/26/2024 0:00,14.0000000,17.0000000,49.1552930000000,-1.59727800000000,,Pirou,85133,Observation #85133,https://biolit.fr/observations/observation-85133/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080166-scaled.jpg,,,Ne sais pas +N1,85121,Sortie #85121,https://biolit.fr/sorties/sortie-85121/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080153-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080166-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080202-scaled.jpg,12/26/2024 0:00,14.0000000,17.0000000,49.1552930000000,-1.59727800000000,,Pirou,85135,Observation #85135,https://biolit.fr/observations/observation-85135/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080176-scaled.jpg,,,Ne sais pas +N1,85121,Sortie #85121,https://biolit.fr/sorties/sortie-85121/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080153-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080166-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080176-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080202-scaled.jpg,12/26/2024 0:00,14.0000000,17.0000000,49.1552930000000,-1.59727800000000,,Pirou,85137,Observation #85137,https://biolit.fr/observations/observation-85137/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080202-scaled.jpg,,,Ne sais pas +N1,85147,Sortie #85147,https://biolit.fr/sorties/sortie-85147/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080258-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080317-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080341-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080343-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080314-scaled.jpg,12/27/2024 0:00,14.0000000,17.0000000,49.1987620000000,-1.60666900000000,,Créance,85149,Observation #85149,https://biolit.fr/observations/observation-85149/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080252-scaled.jpg,,,non-identifiable +N1,85147,Sortie #85147,https://biolit.fr/sorties/sortie-85147/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080258-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080317-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080341-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080343-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080314-scaled.jpg,12/27/2024 0:00,14.0000000,17.0000000,49.1987620000000,-1.60666900000000,,Créance,85151,Observation #85151,https://biolit.fr/observations/observation-85151/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080253-scaled.jpg,,,Ne sais pas +N1,85147,Sortie #85147,https://biolit.fr/sorties/sortie-85147/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080258-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080317-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080341-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080343-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080314-scaled.jpg,12/27/2024 0:00,14.0000000,17.0000000,49.1987620000000,-1.60666900000000,,Créance,85153,Observation #85153,https://biolit.fr/observations/observation-85153/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080258-scaled.jpg,,,Ne sais pas +N1,85147,Sortie #85147,https://biolit.fr/sorties/sortie-85147/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080258-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080317-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080341-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080343-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080314-scaled.jpg,12/27/2024 0:00,14.0000000,17.0000000,49.1987620000000,-1.60666900000000,,Créance,85155,Observation #85155,https://biolit.fr/observations/observation-85155/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080317-scaled.jpg,,,Ne sais pas +N1,85147,Sortie #85147,https://biolit.fr/sorties/sortie-85147/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080258-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080317-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080341-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080343-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080314-scaled.jpg,12/27/2024 0:00,14.0000000,17.0000000,49.1987620000000,-1.60666900000000,,Créance,85157,Observation #85157,https://biolit.fr/observations/observation-85157/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080340-scaled.jpg,,,Ne sais pas +N1,85147,Sortie #85147,https://biolit.fr/sorties/sortie-85147/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080258-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080317-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080341-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080343-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080314-scaled.jpg,12/27/2024 0:00,14.0000000,17.0000000,49.1987620000000,-1.60666900000000,,Créance,85159,Observation #85159,https://biolit.fr/observations/observation-85159/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080341-scaled.jpg,,,Ne sais pas +N1,85147,Sortie #85147,https://biolit.fr/sorties/sortie-85147/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080258-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080317-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080341-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080343-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080314-scaled.jpg,12/27/2024 0:00,14.0000000,17.0000000,49.1987620000000,-1.60666900000000,,Créance,85161,Observation #85161,https://biolit.fr/observations/observation-85161/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080343-scaled.jpg,,,Ne sais pas +N1,85147,Sortie #85147,https://biolit.fr/sorties/sortie-85147/,Virginie H,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080258-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080317-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080341-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080343-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080314-scaled.jpg,12/27/2024 0:00,14.0000000,17.0000000,49.1987620000000,-1.60666900000000,,Créance,85163,Observation #85163,https://biolit.fr/observations/observation-85163/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/49b0b46793861dc737df8bac3a0e0d44/2024/12/P1080314-scaled.jpg,,,Ne sais pas +N1,85167,Sortie #85167,https://biolit.fr/sorties/sortie-85167/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/461265335_2026397597782563_6335419826561598961_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/461252551_2026397491115907_4723805473285607736_n.jpg,9/29/2024 0:00,14.0000000,14.000005,41.6294980000000,8.81620600000000,La Girelle,Campomoro,85169,Observation #85169,https://biolit.fr/observations/observation-85169/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/461252551_2026397491115907_4723805473285607736_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/461265335_2026397597782563_6335419826561598961_n.jpg,,,Identifiable +N1,85172,Sortie #85172,https://biolit.fr/sorties/sortie-85172/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/438030087_10222794049110506_2115704816487075087_n.jpg,4/14/2024 0:00,15.0000000,15.000005,42.7121870000000,9.45500700000000,La Girelle,"Bastia, port de Toga",85176,Observation #85176,https://biolit.fr/observations/observation-85176/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/438030087_10222794049110506_2115704816487075087_n.jpg,,TRUE,Identifiable +N1,85179,Sortie #85179,https://biolit.fr/sorties/sortie-85179/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/438030087_10222794049110506_2115704816487075087_n-1.jpg,4/14/2024 0:00,15.000005,15.0000000,42.7122820000000,9.45509300000000,La Girelle,"Bastia, port de Toga",85181,Observation #85181,https://biolit.fr/observations/observation-85181/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/438030087_10222794049110506_2115704816487075087_n-1.jpg,,TRUE,Identifiable +N1,85184,Sortie #85184,https://biolit.fr/sorties/sortie-85184/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/436392613_7974123419283296_5352615133455421438_n.jpg,9/15/2024 0:00,15.0000000,15.000005,42.6725010000000,9.44641800000000,La Girelle,"Bastia, plage de l'Arinella",85186,Observation #85186,https://biolit.fr/observations/observation-85186/,Argonauta argo,Argonaute,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/436392613_7974123419283296_5352615133455421438_n.jpg,,TRUE,Identifiable +N1,85184,Sortie #85184,https://biolit.fr/sorties/sortie-85184/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/436392613_7974123419283296_5352615133455421438_n.jpg,9/15/2024 0:00,15.0000000,15.000005,42.6725010000000,9.44641800000000,La Girelle,"Bastia, plage de l'Arinella",85188,Observation #85188,https://biolit.fr/observations/observation-85188/,Argonauta argo,Argonaute,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/436392613_7974123419283296_5352615133455421438_n.jpg,,TRUE,Identifiable +N1,85191,Sortie #85191,https://biolit.fr/sorties/sortie-85191/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/438939643_1872433099866663_6876157393202456048_n.jpg,4/21/2024 0:00,15.0000000,15.000005,42.5740860000000,9.52214200000000,La Girelle,Lido de la Marana,85193,Observation #85193,https://biolit.fr/observations/observation-85193/,Lepas (Anatifa) anserifera,Anatife nonnette,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/438939643_1872433099866663_6876157393202456048_n.jpg,,,Identifiable +N1,85196,Sortie #85196,https://biolit.fr/sorties/sortie-85196/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/440806800_1876764782766828_7927527719255288070_n.jpg,4/28/2024 0:00,15.0000000,15.000005,42.575147000000,9.52164900000000,La Girelle,Lido de la Marana,85198,Observation #85198,https://biolit.fr/observations/observation-85198/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/440806800_1876764782766828_7927527719255288070_n.jpg,,,Identifiable +N1,85202,Sortie #85202,https://biolit.fr/sorties/sortie-85202/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/461755768_8396810053743154_4912405268347535210_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/461750828_8396810127076480_7256795602576268453_n.jpg,10/06/2024,16.0000000,16.0000000,42.6573590000000,9.4518630000000,La Girelle,Lido de la Marana,85204,Observation #85204,https://biolit.fr/observations/observation-85204/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/461750828_8396810127076480_7256795602576268453_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/461755768_8396810053743154_4912405268347535210_n.jpg,,,Identifiable +N1,85208,Sortie #85208,https://biolit.fr/sorties/sortie-85208/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/463241317_3783247492003969_3315288819379114526_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/463395916_3783244068670978_8295205184313193064_n.jpg,4/28/2024 0:00,15.0000000,15.000005,42.6572910000000,9.45212600000000,La Girelle,Lido de la Marana,85210,Observation #85210,https://biolit.fr/observations/observation-85210/,Janthina pallida,Janthine pâle,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/463241317_3783247492003969_3315288819379114526_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/463395916_3783244068670978_8295205184313193064_n.jpg,,,Identifiable +N1,85213,Sortie #85213,https://biolit.fr/sorties/sortie-85213/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/461494251_8329986177092209_2198206662012987490_n.jpg,9/29/2024 0:00,16.000005,17.0000000,42.654558000000,9.45330600000000,La Girelle,Lido de la Marana,85215,Observation #85215,https://biolit.fr/observations/observation-85215/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/461494251_8329986177092209_2198206662012987490_n.jpg,,,Identifiable +N1,85219,Sortie #85219,https://biolit.fr/sorties/sortie-85219/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/464089101_3789215994740452_6439658423737238525_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/463968261_3789215904740461_3853364845661570561_n.jpg,4/28/2024 0:00,16.0000000,16.0000000,42.6517810000000,9.45467900000000,La Girelle,Lido de la Marana,85221,Observation #85221,https://biolit.fr/observations/observation-85221/,Balanus crenatus,Balane crénelée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/464089101_3789215994740452_6439658423737238525_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/463968261_3789215904740461_3853364845661570561_n.jpg,,,Identifiable +N1,85224,Sortie #85224,https://biolit.fr/sorties/sortie-85224/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/464210163_2003015643475074_6468276588313074049_n.jpg,10/22/2024 0:00,16.0000000,16.0000000,42.6577010000000,9.45148200000000,La Girelle,Lido de la Marana,85226,Observation #85226,https://biolit.fr/observations/observation-85226/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/464210163_2003015643475074_6468276588313074049_n.jpg,,,Identifiable +N1,85230,Sortie #85230,https://biolit.fr/sorties/sortie-85230/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/465261344_1100803501767871_8499167429619747861_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/465251896_1100803478434540_6438486186048288220_n.jpg,4/18/2024 0:00,15.0000000,15.000005,42.556630000000,8.78120900000000,La Girelle,"calvi, arinella",85232,Observation #85232,https://biolit.fr/observations/observation-85232/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/465251896_1100803478434540_6438486186048288220_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/465261344_1100803501767871_8499167429619747861_n.jpg,,,Identifiable +N1,85235,Sortie #85235,https://biolit.fr/sorties/sortie-85235/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/465284505_2011047462671892_2990401573182183888_n.jpg,11/02/2024,15.0000000,15.0000000,42.6541800000000,9.45330600000000,La Girelle,Lido de la Marana,85237,Observation #85237,https://biolit.fr/observations/observation-85237/,Uranoscopus scaber,Uranoscope,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/465284505_2011047462671892_2990401573182183888_n.jpg,,TRUE,Identifiable +N1,85240,Sortie #85240,https://biolit.fr/sorties/sortie-85240/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/465062624_1975444936249769_5656263353588467917_n.jpg,11/01/2024,15.0000000,15.0000000,42.6183320000000,9.48068600000000,La Girelle,Lido de la Marana,85242,Observation #85242,https://biolit.fr/observations/observation-85242/,Callinectes sapidus,Crabe bleu américain,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/465062624_1975444936249769_5656263353588467917_n.jpg,,TRUE,Identifiable +N1,85245,Sortie #85245,https://biolit.fr/sorties/sortie-85245/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/465814547_1978194985974764_9057727618775367936_n.jpg,03/11/2024,15.0000000,15.000005,42.6212740000000,9.47798300000000,La Girelle,Lido de la Marana,85247,Observation #85247,https://biolit.fr/observations/observation-85247/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/465814547_1978194985974764_9057727618775367936_n.jpg,,TRUE,Identifiable +N1,85251,Sortie #85251,https://biolit.fr/sorties/sortie-85251/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/466017753_2016736178769687_4988079748798965190_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/465897988_2016735088769796_941053718649108880_n.jpg,11/10/2024,15.0000000,15.000005,42.620841000000,9.47802500000000,La Girelle,Lido de la Marana,85253,Observation #85253,https://biolit.fr/observations/observation-85253/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/466017753_2016736178769687_4988079748798965190_n.jpg,,TRUE,Identifiable +N1,85251,Sortie #85251,https://biolit.fr/sorties/sortie-85251/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/466017753_2016736178769687_4988079748798965190_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/465897988_2016735088769796_941053718649108880_n.jpg,11/10/2024,15.0000000,15.000005,42.620841000000,9.47802500000000,La Girelle,Lido de la Marana,85255,Observation #85255,https://biolit.fr/observations/observation-85255/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/465897988_2016735088769796_941053718649108880_n.jpg,,TRUE,Identifiable +N1,85258,Sortie #85258,https://biolit.fr/sorties/sortie-85258/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/467263000_3809622786033106_1913873504650875953_n.jpg,4/29/2024 0:00,15.0000000,15.000005,42.6143980000000,9.48472000000000,La Girelle,Lido de la Marana,85260,Observation #85260,https://biolit.fr/observations/observation-85260/,Macomangulus tenuis,Telline-papillon,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/467263000_3809622786033106_1913873504650875953_n.jpg,,,Identifiable +N1,85264,Sortie #85264,https://biolit.fr/sorties/sortie-85264/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/468620324_1118327546682133_1954213418808462626_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/468280259_1118327590015462_5777925126402730765_n.jpg,4/19/2024 0:00,15.0000000,15.000005,42.620101000000,9.4786260000000,La Girelle,Lido de la Marana,85266,Observation #85266,https://biolit.fr/observations/observation-85266/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/468620324_1118327546682133_1954213418808462626_n.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/468280259_1118327590015462_5777925126402730765_n.jpg,,TRUE,Identifiable +N1,85269,Sortie #85269,https://biolit.fr/sorties/sortie-85269/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/468893934_1541587543170331_939672172616801528_n.jpg,09/07/2024,15.0000000,15.000005,42.6345440000000,8.94053800000000,La Girelle,l'île rousse,85271,Observation #85271,https://biolit.fr/observations/observation-85271/,Brissus unicolor,Oursin de sable gris,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/468893934_1541587543170331_939672172616801528_n.jpg,,TRUE,Identifiable +N1,85274,Sortie #85274,https://biolit.fr/sorties/sortie-85274/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/468331339_1994784400982489_366614644422992703_n.jpg,4/29/2024 0:00,15.000005,15.0000000,42.6271560000000,9.47236100000000,La Girelle,Lido de la Marana,85276,Observation #85276,https://biolit.fr/observations/observation-85276/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/468331339_1994784400982489_366614644422992703_n.jpg,,TRUE,Identifiable +N1,85279,Sortie #85279,https://biolit.fr/sorties/sortie-85279/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/471384214_8903798849710936_7955913928983573164_n.jpg,12/22/2024 0:00,15.0000000,15.000005,41.6302660000000,8.81340600000000,La Girelle,campomoro,85281,Observation #85281,https://biolit.fr/observations/observation-85281/,Raja brachyura,Raie lisse,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2024/12/471384214_8903798849710936_7955913928983573164_n.jpg,,TRUE,Identifiable +N1,85290,Sortie #85290,https://biolit.fr/sorties/sortie-85290/,Benente Alix,https://biolit.fr/wp-content/uploads/jet-form-builder/4403abaf14d7318575f5124dc0e63985/2025/01/Image-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4403abaf14d7318575f5124dc0e63985/2025/01/Image-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4403abaf14d7318575f5124dc0e63985/2025/01/Image-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4403abaf14d7318575f5124dc0e63985/2025/01/Image-1.jpg,10/30/2024 0:00,9.0000000,12.0000000,43.3,5.4,,Plage du prophete,,,,,,,,,, +N1,85342,Sortie #85342,https://biolit.fr/sorties/sortie-85342/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1129582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1130072-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110529942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110556982_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110604045-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110610612-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110715006_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110855038_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110910460_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111023052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111228536-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111234210-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111304565-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111829973_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111837846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112106086_HDR-scaled.jpg,12/25/2024 0:00,11.0000000,12.0000000,43.239980000000,5.36243400000000,Planète Mer,Plage de l’Anse du Bain des Dames,85344,Observation #85344,https://biolit.fr/observations/observation-85344/,Limaria hians,Lime bâillante,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112822-scaled.jpg,,,Identifiable +N1,85342,Sortie #85342,https://biolit.fr/sorties/sortie-85342/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1129582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1130072-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110529942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110556982_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110604045-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110610612-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110715006_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110855038_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110910460_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111023052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111228536-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111234210-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111304565-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111829973_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111837846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112106086_HDR-scaled.jpg,12/25/2024 0:00,11.0000000,12.0000000,43.239980000000,5.36243400000000,Planète Mer,Plage de l’Anse du Bain des Dames,85346,Observation #85346,https://biolit.fr/observations/observation-85346/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1129582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1130072-scaled.jpg,,,Identifiable +N1,85342,Sortie #85342,https://biolit.fr/sorties/sortie-85342/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1129582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1130072-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110529942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110556982_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110604045-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110610612-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110715006_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110855038_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110910460_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111023052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111228536-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111234210-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111304565-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111829973_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111837846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112106086_HDR-scaled.jpg,12/25/2024 0:00,11.0000000,12.0000000,43.239980000000,5.36243400000000,Planète Mer,Plage de l’Anse du Bain des Dames,85348,Observation #85348,https://biolit.fr/observations/observation-85348/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110529942_HDR-scaled.jpg,,TRUE,Identifiable +N1,85342,Sortie #85342,https://biolit.fr/sorties/sortie-85342/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1129582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1130072-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110529942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110556982_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110604045-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110610612-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110715006_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110855038_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110910460_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111023052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111228536-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111234210-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111304565-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111829973_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111837846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112106086_HDR-scaled.jpg,12/25/2024 0:00,11.0000000,12.0000000,43.239980000000,5.36243400000000,Planète Mer,Plage de l’Anse du Bain des Dames,85350,Observation #85350,https://biolit.fr/observations/observation-85350/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110556982_HDR-scaled.jpg,,TRUE,Identifiable +N1,85342,Sortie #85342,https://biolit.fr/sorties/sortie-85342/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1129582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1130072-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110529942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110556982_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110604045-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110610612-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110715006_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110855038_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110910460_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111023052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111228536-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111234210-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111304565-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111829973_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111837846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112106086_HDR-scaled.jpg,12/25/2024 0:00,11.0000000,12.0000000,43.239980000000,5.36243400000000,Planète Mer,Plage de l’Anse du Bain des Dames,85352,Observation #85352,https://biolit.fr/observations/observation-85352/,Lithophaga lithophaga,Datte de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110604045-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110610612-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110715006_HDR-scaled.jpg,,TRUE,Identifiable +N1,85342,Sortie #85342,https://biolit.fr/sorties/sortie-85342/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1129582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1130072-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110529942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110556982_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110604045-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110610612-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110715006_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110855038_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110910460_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111023052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111228536-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111234210-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111304565-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111829973_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111837846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112106086_HDR-scaled.jpg,12/25/2024 0:00,11.0000000,12.0000000,43.239980000000,5.36243400000000,Planète Mer,Plage de l’Anse du Bain des Dames,85354,Observation #85354,https://biolit.fr/observations/observation-85354/,Flabellia petiolata,Udotée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110855038_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110910460_HDR-rotated.jpg,,TRUE,Identifiable +N1,85342,Sortie #85342,https://biolit.fr/sorties/sortie-85342/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1129582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1130072-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110529942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110556982_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110604045-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110610612-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110715006_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110855038_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110910460_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111023052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111228536-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111234210-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111304565-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111829973_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111837846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112106086_HDR-scaled.jpg,12/25/2024 0:00,11.0000000,12.0000000,43.239980000000,5.36243400000000,Planète Mer,Plage de l’Anse du Bain des Dames,85356,Observation #85356,https://biolit.fr/observations/observation-85356/,Astropecten spinulosus,Petite étoile-peigne,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111023052.jpg,,,Ne sais pas +N1,85342,Sortie #85342,https://biolit.fr/sorties/sortie-85342/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1129582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1130072-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110529942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110556982_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110604045-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110610612-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110715006_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110855038_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110910460_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111023052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111228536-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111234210-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111304565-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111829973_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111837846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112106086_HDR-scaled.jpg,12/25/2024 0:00,11.0000000,12.0000000,43.239980000000,5.36243400000000,Planète Mer,Plage de l’Anse du Bain des Dames,85358,Observation #85358,https://biolit.fr/observations/observation-85358/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111228536-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111234210-rotated.jpg,,TRUE,Identifiable +N1,85342,Sortie #85342,https://biolit.fr/sorties/sortie-85342/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1129582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1130072-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110529942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110556982_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110604045-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110610612-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110715006_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110855038_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110910460_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111023052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111228536-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111234210-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111304565-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111829973_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111837846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112106086_HDR-scaled.jpg,12/25/2024 0:00,11.0000000,12.0000000,43.239980000000,5.36243400000000,Planète Mer,Plage de l’Anse du Bain des Dames,85360,Observation #85360,https://biolit.fr/observations/observation-85360/,Peyssonnelia squamaria,Peyssonnelia,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111304565-scaled.jpg,,,Identifiable +N1,85342,Sortie #85342,https://biolit.fr/sorties/sortie-85342/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1129582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1130072-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110529942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110556982_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110604045-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110610612-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110715006_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110855038_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110910460_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111023052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111228536-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111234210-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111304565-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111829973_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111837846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112106086_HDR-scaled.jpg,12/25/2024 0:00,11.0000000,12.0000000,43.239980000000,5.36243400000000,Planète Mer,Plage de l’Anse du Bain des Dames,85362,Observation #85362,https://biolit.fr/observations/observation-85362/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112106086_HDR-scaled.jpg,,TRUE,Identifiable +N1,85342,Sortie #85342,https://biolit.fr/sorties/sortie-85342/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1129582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_1130072-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110529942_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110556982_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110604045-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110610612-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110715006_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110855038_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_110910460_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111023052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111228536-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111234210-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111304565-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111829973_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111837846_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_112106086_HDR-scaled.jpg,12/25/2024 0:00,11.0000000,12.0000000,43.239980000000,5.36243400000000,Planète Mer,Plage de l’Anse du Bain des Dames,96912,Observation #96912,https://biolit.fr/observations/observation-96912/,Lima lima,Lime écailleuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111829973_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241225_111837846_HDR-scaled.jpg,,,Identifiable +N1,85366,Sortie #85366,https://biolit.fr/sorties/sortie-85366/,EXPLORE & PRESERVE E& P,https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/01/IMG20250108120049.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/01/IMG20250108120112.jpg,01/08/2025,11.0000000,12.0000000,43.035496000000,6.15303400000000,Explore & Préserve,Plage Carbet Badine Sud,85368,Observation #85368,https://biolit.fr/observations/observation-85368/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/01/IMG20250108120112.jpg,,TRUE,Identifiable +N1,85371,Sortie #85371,https://biolit.fr/sorties/sortie-85371/,EXPLORE & PRESERVE E& P,https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/01/IMG20250108120112-1.jpg,01/08/2025,11.0000000,12.0000000,43.0354700000000,6.15307500000000,Explore & Préserve,Plage Carbet Badine Sud,85373,Observation #85373,https://biolit.fr/observations/observation-85373/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/01/IMG20250108120112-1.jpg,,TRUE,Identifiable +N1,85378,Sortie #85378,https://biolit.fr/sorties/sortie-85378/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/01/liste_nouveaux_arrivants.png | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/01/Fond_visio_PM.png,01/07/2025,14.0000000,15.0000000,48.641556000000,-2.07296100000000,Planète Mer,Plage de Saint Enogat,,,,,,,,,, +N1,85710,Sortie #85407,https://biolit.fr/sorties/sortie-85407/,Neau Estelle,https://biolit.fr/wp-content/uploads/2025/01/1000014617-scaled.jpg | https://biolit.fr/wp-content/uploads/2025/01/1000014618-scaled.jpg | https://biolit.fr/wp-content/uploads/2025/01/1000014619-scaled.jpg,01/11/2025,12.0000000,12.0:19,48.6371320,-2.050669,,Passage vers petit bé,,,,,,,,,, +N1,85714,Sortie #85402,https://biolit.fr/sorties/sortie-85402/,Neau Estelle,https://biolit.fr/wp-content/uploads/2025/01/1000014613-scaled.jpg,01/11/2025,12.0000000,12.000001,48.6506950,-2.0324730,,Passage vers petit bé,,,,,,,,,, +N1,85716,Sortie #85412,https://biolit.fr/sorties/sortie-85412/,Agent007,https://biolit.fr/wp-content/uploads/2025/01/IMG_8306-scaled.jpeg | https://biolit.fr/wp-content/uploads/2025/01/IMG_8315-scaled.jpeg | https://biolit.fr/wp-content/uploads/2025/01/IMG_8321-scaled.jpeg,01/12/2025,14.0000000,17.0000000,43.5702950000000,7.10516900000000,,Juan les Pins Plage du Midi,85805,Observation #85416,https://biolit.fr/observations/observation-85416/,,,,https://biolit.fr/wp-content/uploads/2025/01/IMG_8306-scaled.jpeg | https://biolit.fr/wp-content/uploads/2025/01/IMG_8315-scaled.jpeg | https://biolit.fr/wp-content/uploads/2025/01/IMG_8321-scaled.jpeg,,FALSE,Identifiable +N1,85716,Sortie #85412,https://biolit.fr/sorties/sortie-85412/,Agent007,https://biolit.fr/wp-content/uploads/2025/01/IMG_8306-scaled.jpeg | https://biolit.fr/wp-content/uploads/2025/01/IMG_8315-scaled.jpeg | https://biolit.fr/wp-content/uploads/2025/01/IMG_8321-scaled.jpeg,01/12/2025,14.0000000,17.0000000,43.5702950000000,7.10516900000000,,Juan les Pins Plage du Midi,85807,Observation #85414,https://biolit.fr/observations/observation-85414/,Meganyctiphanes norvegica,Krill atlantique,,https://biolit.fr/wp-content/uploads/2025/01/IMG_8321-scaled.jpeg | https://biolit.fr/wp-content/uploads/2025/01/IMG_8315-scaled.jpeg | https://biolit.fr/wp-content/uploads/2025/01/IMG_8306-scaled.jpeg,,TRUE, +N1,85720,Sortie #85431,https://biolit.fr/sorties/sortie-85431/,Bolling Laurence,https://biolit.fr/wp-content/uploads/2025/01/IMG_3569-scaled.jpg,1/13/2025 0:00,10.0000000,10.0:45,43.4836330000000,-1.56302300000000,Centre de la mer,Biarritz,,,,,,,,,, +N1,85722,Sortie #85566,https://biolit.fr/sorties/sortie-85566/,MOTTIER Rozenn,https://biolit.fr/wp-content/uploads/2025/01/tempImageooSoFI.jpg,1/15/2025 0:00,13.0:43,13.0:43,48.5136920000000,-2.75078800000000,,SAINT BRIEUC,85853,Observation #85568,https://biolit.fr/observations/observation-85568/,,,,https://biolit.fr/wp-content/uploads/2025/01/tempImageooSoFI.jpg,,FALSE,Ne sais pas +N1,85725,Sortie #85554,https://biolit.fr/sorties/sortie-85554/,Alarcon Messaline,https://biolit.fr/wp-content/uploads/2025/01/IMG_20250115_144152-scaled.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20250115_144015-scaled.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20250115_144008-scaled.jpg,1/15/2025 0:00,14.0000000,14.0:45,43.2534870000000,5.37441200000000,,Plage de Bonneveine,85855,Observation #85560,https://biolit.fr/observations/observation-85560/,,,,https://biolit.fr/wp-content/uploads/2025/01/IMG_20250115_144152-scaled-1.jpg,,FALSE,Ne sais pas +N1,85725,Sortie #85554,https://biolit.fr/sorties/sortie-85554/,Alarcon Messaline,https://biolit.fr/wp-content/uploads/2025/01/IMG_20250115_144152-scaled.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20250115_144015-scaled.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20250115_144008-scaled.jpg,1/15/2025 0:00,14.0000000,14.0:45,43.2534870000000,5.37441200000000,,Plage de Bonneveine,85857,Observation #85556,https://biolit.fr/observations/observation-85556/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2025/01/IMG_20250115_144008-scaled-1.jpg,,TRUE,Identifiable +N1,85725,Sortie #85554,https://biolit.fr/sorties/sortie-85554/,Alarcon Messaline,https://biolit.fr/wp-content/uploads/2025/01/IMG_20250115_144152-scaled.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20250115_144015-scaled.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20250115_144008-scaled.jpg,1/15/2025 0:00,14.0000000,14.0:45,43.2534870000000,5.37441200000000,,Plage de Bonneveine,85859,Observation #85558,https://biolit.fr/observations/observation-85558/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/2025/01/IMG_20250115_144015-scaled-1.jpg,,TRUE,Identifiable +N1,85729,Sortie #85630,https://biolit.fr/sorties/sortie-85630/,Kaufmann Josee,https://biolit.fr/wp-content/uploads/2025/01/nautilus-argonaute-1-scaled.jpg | https://biolit.fr/wp-content/uploads/2025/01/nautilus-argonaute-2-rotated.jpg | https://biolit.fr/wp-content/uploads/2025/01/nautilus-argonaute-3-scaled.jpg,1/18/2025 0:00,16.0000000,16.0000000,41.5241240000000,8.87726200000000,,"Plage de Tralicetu, Corse",,,,,,,,,, +N1,85876,Sortie #85441,https://biolit.fr/sorties/sortie-85441/,Lai Aurore,https://biolit.fr/wp-content/uploads/2025/01/1000009493-scaled-1.jpg,01/03/2025 15:24,14.0000000,15.000005,49.2954180,-0.3829750,,Luc sur mer,85878,Observation #85443,https://biolit.fr/observations/observation-85443/,Loligo spp.,Plume de Calmar,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/2025/01/1000009493-scaled-1.jpg,,TRUE,Identifiable +N1,85885,Sortie #85606,https://biolit.fr/sorties/sortie-85606/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165309-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165303-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165159-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165155-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165115-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164543-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164433-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164325-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164313-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164142-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164128-scaled-1.jpg,12/27/2024 0:00,16.0000000,17.0000000,43.7815300000000,7.51157500000000,Planète Mer (antenne Dinard),Menton,85898,Observation #85622,https://biolit.fr/observations/observation-85622/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165303-scaled-1.jpg,,FALSE,Ne sais pas +N1,85885,Sortie #85606,https://biolit.fr/sorties/sortie-85606/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165309-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165303-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165159-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165155-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165115-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164543-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164433-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164325-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164313-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164142-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164128-scaled-1.jpg,12/27/2024 0:00,16.0000000,17.0000000,43.7815300000000,7.51157500000000,Planète Mer (antenne Dinard),Menton,85900,Observation #85620,https://biolit.fr/observations/observation-85620/,,,,https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165155-scaled-1.jpg,,FALSE,Ne sais pas +N1,85885,Sortie #85606,https://biolit.fr/sorties/sortie-85606/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165309-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165303-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165159-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165155-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165115-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164543-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164433-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164325-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164313-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164142-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164128-scaled-1.jpg,12/27/2024 0:00,16.0000000,17.0000000,43.7815300000000,7.51157500000000,Planète Mer (antenne Dinard),Menton,85902,Observation #85618,https://biolit.fr/observations/observation-85618/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165115-scaled-1.jpg,,TRUE,Identifiable +N1,85885,Sortie #85606,https://biolit.fr/sorties/sortie-85606/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165309-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165303-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165159-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165155-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165115-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164543-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164433-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164325-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164313-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164142-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164128-scaled-1.jpg,12/27/2024 0:00,16.0000000,17.0000000,43.7815300000000,7.51157500000000,Planète Mer (antenne Dinard),Menton,85904,Observation #85616,https://biolit.fr/observations/observation-85616/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164543-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165159-scaled-1.jpg,,TRUE,Identifiable +N1,85885,Sortie #85606,https://biolit.fr/sorties/sortie-85606/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165309-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165303-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165159-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165155-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165115-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164543-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164433-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164325-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164313-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164142-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164128-scaled-1.jpg,12/27/2024 0:00,16.0000000,17.0000000,43.7815300000000,7.51157500000000,Planète Mer (antenne Dinard),Menton,85906,Observation #85614,https://biolit.fr/observations/observation-85614/,Corallina officinalis/caespitosa,Coralline,,https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164433-scaled-1.jpg,,FALSE,Identifiable +N1,85885,Sortie #85606,https://biolit.fr/sorties/sortie-85606/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165309-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165303-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165159-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165155-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165115-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164543-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164433-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164325-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164313-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164142-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164128-scaled-1.jpg,12/27/2024 0:00,16.0000000,17.0000000,43.7815300000000,7.51157500000000,Planète Mer (antenne Dinard),Menton,85908,Observation #85610,https://biolit.fr/observations/observation-85610/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164313-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164325-scaled-1.jpg,,FALSE,Identifiable +N1,85885,Sortie #85606,https://biolit.fr/sorties/sortie-85606/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165309-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165303-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165159-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165155-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_165115-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164543-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164433-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164325-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164313-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164142-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164128-scaled-1.jpg,12/27/2024 0:00,16.0000000,17.0000000,43.7815300000000,7.51157500000000,Planète Mer (antenne Dinard),Menton,85910,Observation #85608,https://biolit.fr/observations/observation-85608/,Loripes orbiculatus,Loripes orbiculaire,,https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164142-scaled-1.jpg | https://biolit.fr/wp-content/uploads/2025/01/IMG_20241227_164128-scaled-1.jpg,,FALSE,Identifiable +N1,85993,Sortie #85993,https://biolit.fr/sorties/sortie-85993/,Zsolnay Nikola,https://biolit.fr/wp-content/uploads/jet-form-builder/c24bd323db893a1527cfb6819d33fe73/2025/01/IMG-20250118-WA0023.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c24bd323db893a1527cfb6819d33fe73/2025/01/IMG-20250118-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c24bd323db893a1527cfb6819d33fe73/2025/01/IMG-20250118-WA0025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c24bd323db893a1527cfb6819d33fe73/2025/01/IMG-20250118-WA0026.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c24bd323db893a1527cfb6819d33fe73/2025/01/IMG-20250118-WA0027.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c24bd323db893a1527cfb6819d33fe73/2025/01/IMG-20250118-WA0028.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c24bd323db893a1527cfb6819d33fe73/2025/01/IMG-20250118-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c24bd323db893a1527cfb6819d33fe73/2025/01/IMG-20250118-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c24bd323db893a1527cfb6819d33fe73/2025/01/IMG-20250118-WA0032.jpg,1/18/2025 0:00,13.0000000,14.0000000,43.0091020000000,6.2175420000000,Explore & Préserve,"Plage du Lequin, Porquerolles, Hyères",,,,,,,,,, +N1,85997,Sortie #85997,https://biolit.fr/sorties/sortie-85997/,Zsolnay Nikola,https://biolit.fr/wp-content/uploads/jet-form-builder/c24bd323db893a1527cfb6819d33fe73/2025/01/IMG-20250118-WA0032-1.jpg,1/18/2025 0:00,13.0000000,14.0000000,43.0090810000000,6.2175240000000,Explore & Préserve,"Plage du Lequin, Porquerolles, Hyères",,,,,,,,,, +N1,86005,Sortie #86005,https://biolit.fr/sorties/sortie-86005/,Groupe addap13,https://biolit.fr/wp-content/uploads/jet-form-builder/15f9375534c08fa3299c57a76805f115/2025/01/17376408447208122786442424204979-scaled.jpg,1/23/2025 0:00,14.0:59,15.000001,43.2714420000000,5.30111800000000,,Calanque de pomegues,86008,Observation #86008,https://biolit.fr/observations/observation-86008/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/15f9375534c08fa3299c57a76805f115/2025/01/17376408447208122786442424204979-scaled.jpg,,TRUE,Identifiable +N1,86027,Sortie #86027,https://biolit.fr/sorties/sortie-86027/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/cd6074e82695631e6cb675ce44b100a8/2025/01/@AnemoneDeMer-scaled.jpg,09/08/2009,11.0:26,11.0:26,43.328466000000,5.15999500000000,,,,,,,,,,,, +N1,86070,Sortie #86070,https://biolit.fr/sorties/sortie-86070/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_132827-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_133329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_134242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/biolit-scaled.jpg,7/26/2024 0:00,14.0000000,16.0000000,43.8195920000000,-1.37478400000000,Atlantique Landes Récifs,lac du Port d'Albert,86073,Observation #86073,https://biolit.fr/observations/observation-86073/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_132827-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_133329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_134242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/biolit-scaled.jpg,,,Ne sais pas +N1,86070,Sortie #86070,https://biolit.fr/sorties/sortie-86070/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_132827-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_133329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_134242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/biolit-scaled.jpg,7/26/2024 0:00,14.0000000,16.0000000,43.8195920000000,-1.37478400000000,Atlantique Landes Récifs,lac du Port d'Albert,86075,Observation #86075,https://biolit.fr/observations/observation-86075/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_132827-scaled.jpg,,,Ne sais pas +N1,86070,Sortie #86070,https://biolit.fr/sorties/sortie-86070/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_132827-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_133329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_134242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/biolit-scaled.jpg,7/26/2024 0:00,14.0000000,16.0000000,43.8195920000000,-1.37478400000000,Atlantique Landes Récifs,lac du Port d'Albert,86077,Observation #86077,https://biolit.fr/observations/observation-86077/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_133329-scaled.jpg,,,Ne sais pas +N1,86070,Sortie #86070,https://biolit.fr/sorties/sortie-86070/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_132827-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_133329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_134242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/biolit-scaled.jpg,7/26/2024 0:00,14.0000000,16.0000000,43.8195920000000,-1.37478400000000,Atlantique Landes Récifs,lac du Port d'Albert,86079,Observation #86079,https://biolit.fr/observations/observation-86079/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_134242-scaled.jpg,,,Ne sais pas +N1,86070,Sortie #86070,https://biolit.fr/sorties/sortie-86070/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_132827-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_133329-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/20240627_134242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/biolit-scaled.jpg,7/26/2024 0:00,14.0000000,16.0000000,43.8195920000000,-1.37478400000000,Atlantique Landes Récifs,lac du Port d'Albert,86081,Observation #86081,https://biolit.fr/observations/observation-86081/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/biolit-scaled.jpg,,,Ne sais pas +N1,86106,Sortie #86106,https://biolit.fr/sorties/sortie-86106/,Hovhannessian Diane,https://biolit.fr/wp-content/uploads/jet-form-builder/c4b5304c6e107a4b697fa50c84dc3e9a/2025/01/Tournepierres.jpg,12/08/2024,15.0000000,16.0000000,49.5077550000000,0.0681280000000000,,Le Havre,,,,,,,,,, +N1,86127,Sortie #86127,https://biolit.fr/sorties/sortie-86127/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/01/20250116_Araignee-des-anemones_Plage-de-Saint-Enogat-15H41-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/01/20250116_Galathe-intermediaire_Plage-de-Saint-Enogat-15H09-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/01/20250116_Oeuf-de-petite-roussette_Plage-de-Saint-Enogat-15H22-scaled.jpg,1/16/2025 0:00,15.000009,15.0:41,48.6426330000000,-2.07366200000000,,Plage de Saint Enogat,86131,Observation #86131,https://biolit.fr/observations/observation-86131/,Galathea intermedia,Galathée intermédiaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/01/20250116_Galathe-intermediaire_Plage-de-Saint-Enogat-15H09-scaled.jpg,,TRUE,Identifiable +N1,86127,Sortie #86127,https://biolit.fr/sorties/sortie-86127/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/01/20250116_Araignee-des-anemones_Plage-de-Saint-Enogat-15H41-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/01/20250116_Galathe-intermediaire_Plage-de-Saint-Enogat-15H09-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/01/20250116_Oeuf-de-petite-roussette_Plage-de-Saint-Enogat-15H22-scaled.jpg,1/16/2025 0:00,15.000009,15.0:41,48.6426330000000,-2.07366200000000,,Plage de Saint Enogat,86133,Observation #86133,https://biolit.fr/observations/observation-86133/,Inachus phalangium,Araignée des anémones,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/01/20250116_Araignee-des-anemones_Plage-de-Saint-Enogat-15H41-scaled.jpg,,TRUE,Identifiable +N1,86127,Sortie #86127,https://biolit.fr/sorties/sortie-86127/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/01/20250116_Araignee-des-anemones_Plage-de-Saint-Enogat-15H41-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/01/20250116_Galathe-intermediaire_Plage-de-Saint-Enogat-15H09-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/01/20250116_Oeuf-de-petite-roussette_Plage-de-Saint-Enogat-15H22-scaled.jpg,1/16/2025 0:00,15.000009,15.0:41,48.6426330000000,-2.07366200000000,,Plage de Saint Enogat,96873,Observation #96873,https://biolit.fr/observations/observation-96873/,Scyliorhinus canicula,Capsule de petite roussette,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/01/20250116_Oeuf-de-petite-roussette_Plage-de-Saint-Enogat-15H22-scaled.jpg,,TRUE,Identifiable +N1,86138,Sortie #86138,https://biolit.fr/sorties/sortie-86138/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/baliste-scaled.jpg,3/26/2022 0:00,10.0000000,12.0000000,43.6458620000000,-361.465816000000,Atlantique Landes Récifs,Capbreton,,,,,,,,,, +N1,86142,Sortie #86142,https://biolit.fr/sorties/sortie-86142/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/2021_07_19_MB_MM_BA_FM_SERRAN-CHEVRETTE-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/2021_09_23_MB_MM_BA_FM_SERRAN-CHEVRETTE.jpg,9/22/2021 0:00,10.0000000,12.0000000,43.6456140000000,-1.47886300000000,Atlantique Landes Récifs,Capbreton,86144,Observation #86144,https://biolit.fr/observations/observation-86144/,Serranus cabrilla,Serran-chèvre,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/2021_07_19_MB_MM_BA_FM_SERRAN-CHEVRETTE-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/2021_09_23_MB_MM_BA_FM_SERRAN-CHEVRETTE.jpg,,TRUE,Ne sais pas +N1,86148,Sortie #86148,https://biolit.fr/sorties/sortie-86148/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/25082020-DSC03461-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/28072020-DSC03117-scaled.jpg,3/24/2022 0:00,10.0000000,12.0000000,43.6453170000000,-1.48066500000000,Atlantique Landes Récifs,Capbreton,86149,Observation #86149,https://biolit.fr/observations/observation-86149/,Seriola rivoliana,Sériole-limon,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/25082020-DSC03461-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/28072020-DSC03117-scaled.jpg,,TRUE,Identifiable +N1,86153,Sortie #86153,https://biolit.fr/sorties/sortie-86153/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/27082019-DSC00973-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/29072021-DSC04781-scaled.jpg,11/04/2022,10.0000000,12.0000000,43.6431290000000,-1.47302600000000,Atlantique Landes Récifs,Capbreton,86154,Observation #86154,https://biolit.fr/observations/observation-86154/,Sepia officinalis,Seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/27082019-DSC00973-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/29072021-DSC04781-scaled.jpg,,TRUE,Identifiable +N1,86157,Sortie #86157,https://biolit.fr/sorties/sortie-86157/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Copie-de-Sar-A-tAate-noire-scaled.jpg,10/25/2022 0:00,10.0000000,12.0000000,43.646833000000,-1.45824200000000,Atlantique Landes Récifs,Capbreton,86158,Observation #86158,https://biolit.fr/observations/observation-86158/,Diplodus vulgaris,Sar à tête noire,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Copie-de-Sar-A-tAate-noire-scaled.jpg,,,Identifiable +N1,86161,Sortie #86161,https://biolit.fr/sorties/sortie-86161/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Copie-de-Salpe-scaled.jpg,10/25/2022 0:00,10.0000000,12.0000000,43.6495880000000,-1.51113500000000,Atlantique Landes Récifs,Capbreton,86162,Observation #86162,https://biolit.fr/observations/observation-86162/,Thalia democratica,Salpe démocratique,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Copie-de-Salpe-scaled.jpg,,,Identifiable +N1,86166,Sortie #86166,https://biolit.fr/sorties/sortie-86166/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/17092019-DSC01276-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/27082019-DSC00895-scaled.jpg,3/26/2022 0:00,10.0000000,12.0000000,43.6468560000000,-1.51010500000000,Atlantique Landes Récifs,Capbreton,86167,Observation #86167,https://biolit.fr/observations/observation-86167/,Zeus faber,Saint-pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/17092019-DSC01276-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/27082019-DSC00895-scaled.jpg,,TRUE,Identifiable +N1,86170,Sortie #86170,https://biolit.fr/sorties/sortie-86170/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Copie-de-Rascasse-brune-2-scaled.jpg,10/11/2022,10.0000000,12.0000000,43.6428810000000,-1.49465600000000,Atlantique Landes Récifs,capbreton,86171,Observation #86171,https://biolit.fr/observations/observation-86171/,Scorpaena porcus,Rascasse brune,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Copie-de-Rascasse-brune-2-scaled.jpg,,,Identifiable +N1,86174,Sortie #86174,https://biolit.fr/sorties/sortie-86174/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/poulpe-scaled.jpg,10/11/2022,10.0000000,12.0000000,43.641735000000,-1.5054700000000,Atlantique Landes Récifs,capbreton,86175,Observation #86175,https://biolit.fr/observations/observation-86175/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/poulpe-scaled.jpg,,TRUE,Identifiable +N1,86178,Sortie #86178,https://biolit.fr/sorties/sortie-86178/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/palourde-scaled.jpg,02/07/2023,10.0000000,12.0000000,43.6432050000000,-1.47156700000000,Atlantique Landes Récifs,palourde,86179,Observation #86179,https://biolit.fr/observations/observation-86179/,Polititapes rhomboides,Palourde rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/palourde-scaled.jpg,,,Identifiable +N1,86182,Sortie #86182,https://biolit.fr/sorties/sortie-86182/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Copie-de-Pageot-scaled.jpg,10/11/2022,10.0000000,12.0000000,43.6399750000000,-1.47276900000000,Atlantique Landes Récifs,capbreton,86183,Observation #86183,https://biolit.fr/observations/observation-86183/,Pagellus erythrinus,Pageot commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Copie-de-Pageot-scaled.jpg,,,Identifiable +N1,86186,Sortie #86186,https://biolit.fr/sorties/sortie-86186/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/28052021-Flabellina-pedata-2-scaled.jpg,11/04/2022,10.0000000,12.0000000,43.6461100000000,-1.48195300000000,Atlantique Landes Récifs,capbreton,86187,Observation #86187,https://biolit.fr/observations/observation-86187/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/28052021-Flabellina-pedata-2-scaled.jpg,,,Identifiable +N1,86190,Sortie #86190,https://biolit.fr/sorties/sortie-86190/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/mola-mola-scaled.jpg,3/26/2022 0:00,10.0000000,12.0000000,43.6433780000000,-1.50358200000000,,capbreton,86191,Observation #86191,https://biolit.fr/observations/observation-86191/,Mola mola,Poisson-lune,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/mola-mola-scaled.jpg,,TRUE,Identifiable +N1,86194,Sortie #86194,https://biolit.fr/sorties/sortie-86194/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/homard-scaled.jpg,3/26/2022 0:00,10.0000000,12.0000000,43.6441990000000,-1.49130800000000,Atlantique Landes Récifs,capbreton,86195,Observation #86195,https://biolit.fr/observations/observation-86195/,Homarus gammarus,Homard européen,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/homard-scaled.jpg,,TRUE,Identifiable +N1,86198,Sortie #86198,https://biolit.fr/sorties/sortie-86198/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Copie-de-Etrille-2-scaled.jpg,07/09/2022,10.0000000,12.0000000,43.6438740000000,-1.48984900000000,Atlantique Landes Récifs,capbreton,86199,Observation #86199,https://biolit.fr/observations/observation-86199/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Copie-de-Etrille-2-scaled.jpg,,TRUE,Identifiable +N1,86202,Sortie #86202,https://biolit.fr/sorties/sortie-86202/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/2021_11_07_MB_MM_S3_FM_ETOILE-DE-MER-EPINEUSE-scaled.jpg,11/26/2021 0:00,10.0000000,12.0000000,43.6408930000000,-1.48778900000000,Atlantique Landes Récifs,capbreton,86203,Observation #86203,https://biolit.fr/observations/observation-86203/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/2021_11_07_MB_MM_S3_FM_ETOILE-DE-MER-EPINEUSE-scaled.jpg,,TRUE,Identifiable +N1,86206,Sortie #86206,https://biolit.fr/sorties/sortie-86206/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/2021_11_07_MB_MM_S3_FF_HERMELLES_EPONGES-scaled.jpg,11/26/2021 0:00,10.0000000,12.0000000,43.6434530000000,-1.4904500000000,Atlantique Landes Récifs,capbreton,86207,Observation #86207,https://biolit.fr/observations/observation-86207/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/2021_11_07_MB_MM_S3_FF_HERMELLES_EPONGES-scaled.jpg,,TRUE,Identifiable +N1,86210,Sortie #86210,https://biolit.fr/sorties/sortie-86210/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/2021_09_23_MB_MM_S3_FM_CTENOLABRE.jpg,10/06/2021,10.0000000,12.0000000,43.6414330000000,-1.51954700000000,Atlantique Landes Récifs,capbreton,86211,Observation #86211,https://biolit.fr/observations/observation-86211/,Ctenolabrus rupestris,Rouquié,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/2021_09_23_MB_MM_S3_FM_CTENOLABRE.jpg,,TRUE,Ne sais pas +N1,86215,Sortie #86215,https://biolit.fr/sorties/sortie-86215/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/congre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/CONGRE-5-scaled.jpg,11/26/2022 0:00,10.0000000,12.0000000,43.6441230000000,-1.48778900000000,Atlantique Landes Récifs,capbreton,86218,Observation #86218,https://biolit.fr/observations/observation-86218/,Conger conger,Congre,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/congre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/CONGRE-5-scaled.jpg,,,Identifiable +N1,86221,Sortie #86221,https://biolit.fr/sorties/sortie-86221/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Copie-de-Chinchards-scaled.jpg,10/11/2022,10.0000000,12.0000000,43.7860530000000,-1.4042330000000,Atlantique Landes Récifs,récifs articiels atlantique landes récifs,86222,Observation #86222,https://biolit.fr/observations/observation-86222/,Trachurus trachurus,Chinchard commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Copie-de-Chinchards-scaled.jpg,,,Identifiable +N1,86225,Sortie #86225,https://biolit.fr/sorties/sortie-86225/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/8166868-2-copie.jpg,11/26/2022 0:00,10.0000000,12.0000000,43.787807000000,-1.40198000000000,Atlantique Landes Récifs,Récifs artificiels d'atlantique landes récifs,86226,Observation #86226,https://biolit.fr/observations/observation-86226/,Parablennius pilicornis,Blennie pilicorne,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/8166868-2-copie.jpg,,,Identifiable +N1,86229,Sortie #86229,https://biolit.fr/sorties/sortie-86229/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Blennie-gattorugine-scaled.jpg,11/26/2022 0:00,10.0000000,12.0000000,43.7870450000000,-1.40131500000000,Atlantique Landes Récifs,Récifs artificiels d'atlantique landes récifs,86230,Observation #86230,https://biolit.fr/observations/observation-86230/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Blennie-gattorugine-scaled.jpg,,,Ne sais pas +N1,86233,Sortie #86233,https://biolit.fr/sorties/sortie-86233/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Bivalve-2-scaled.jpg,11/26/2022 0:00,10.0000000,12.0000000,43.7867350000000,-1.40217300000000,Atlantique Landes Récifs,Récifs artificiels d'atlantique landes récifs,86234,Observation #86234,https://biolit.fr/observations/observation-86234/,Chama gryphoides,Petit bivalve épineux,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Bivalve-2-scaled.jpg,,,Identifiable +N1,86237,Sortie #86237,https://biolit.fr/sorties/sortie-86237/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Copie-de-Bernard-lermite-scaled.jpg,11/26/2022 0:00,10.0000000,12.0000000,43.7874040000000,-1.40270900000000,Atlantique Landes Récifs,Récifs artificiels d'atlantique landes récifs,86238,Observation #86238,https://biolit.fr/observations/observation-86238/,Calcinus latens,Bernard-l'ermite timide,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Copie-de-Bernard-lermite-scaled.jpg,,,Identifiable +N1,86241,Sortie #86241,https://biolit.fr/sorties/sortie-86241/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Copie-de-AnA©mone-bijou-scaled.jpg,11/26/2022 0:00,10.0000000,12.0000000,43.7864440000000,-1.40090700000000,Atlantique Landes Récifs,Récifs artificiels d'atlantique landes récifs,86242,Observation #86242,https://biolit.fr/observations/observation-86242/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/Copie-de-AnA©mone-bijou-scaled.jpg,,,Ne sais pas +N1,86245,Sortie #86245,https://biolit.fr/sorties/sortie-86245/,Atlantique Landes Recifs,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/AnA©mone-marguerite-bouquet-chinchards-scaled.jpg,11/26/2022 0:00,10.0000000,12.0000000,43.7878630000000,-1.40235500000000,Atlantique Landes Récifs,récifs artificiels d'atlantique landes récifs,86246,Observation #86246,https://biolit.fr/observations/observation-86246/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6d966f719600fbe0d08ccf743104b928/2025/01/AnA©mone-marguerite-bouquet-chinchards-scaled.jpg,,,Ne sais pas +N1,86266,Sortie #86266,https://biolit.fr/sorties/sortie-86266/,herve laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/4888052912dfaac1a7784a6f29995572/2025/01/photos-du-01-29-2025_5395-.jpg,1/29/2025 0:00,13.0000000,14.0000000,48.5094360000000,-4.76695400000000,,,86267,Observation #86267,https://biolit.fr/observations/observation-86267/,Atriolum robustum,Synascidie pomme de pin,,https://biolit.fr/wp-content/uploads/jet-form-builder/4888052912dfaac1a7784a6f29995572/2025/01/photos-du-01-29-2025_5395-.jpg,,,Identifiable +N1,86482,Sortie #86482,https://biolit.fr/sorties/sortie-86482/,huet Mélyne,https://biolit.fr/wp-content/uploads/jet-form-builder/7e1c6213c1971d088004ee1ed73e878b/2025/01/tempImageNIbM7S-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7e1c6213c1971d088004ee1ed73e878b/2025/01/tempImageq4BUfh-scaled.jpg,1/30/2025 0:00,13.0000000,14.0000000,48.6550010000000,-2.02405900000000,Planète Mer (antenne Dinard),FORT national,86490,Observation #86490,https://biolit.fr/observations/observation-86490/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/7e1c6213c1971d088004ee1ed73e878b/2025/01/tempImageNIbM7S-scaled.jpg,,TRUE,Identifiable +N1,86482,Sortie #86482,https://biolit.fr/sorties/sortie-86482/,huet Mélyne,https://biolit.fr/wp-content/uploads/jet-form-builder/7e1c6213c1971d088004ee1ed73e878b/2025/01/tempImageNIbM7S-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7e1c6213c1971d088004ee1ed73e878b/2025/01/tempImageq4BUfh-scaled.jpg,1/30/2025 0:00,13.0000000,14.0000000,48.6550010000000,-2.02405900000000,Planète Mer (antenne Dinard),FORT national,86509,Observation #86509,https://biolit.fr/observations/observation-86509/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/7e1c6213c1971d088004ee1ed73e878b/2025/01/tempImageq4BUfh-scaled.jpg,,TRUE,Identifiable +N1,86515,Sortie #86515,https://biolit.fr/sorties/sortie-86515/,Charrier Lilian,https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0001.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0002.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.05_2b8ac7c9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.10_71fab3bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.10_d4daf2b1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_990f7bd6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_e7d39b03.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_f6c30463.jpg,1/30/2025 0:00,13.0000000,15.0000000,48.657669,-1.969669,Planète Mer (antenne Dinard),Fort national,86526,Observation #86526,https://biolit.fr/observations/observation-86526/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0005.jpg,,TRUE,Identifiable +N1,86515,Sortie #86515,https://biolit.fr/sorties/sortie-86515/,Charrier Lilian,https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0001.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0002.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.05_2b8ac7c9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.10_71fab3bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.10_d4daf2b1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_990f7bd6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_e7d39b03.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_f6c30463.jpg,1/30/2025 0:00,13.0000000,15.0000000,48.657669,-1.969669,Planète Mer (antenne Dinard),Fort national,86541,Observation #86541,https://biolit.fr/observations/observation-86541/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_f6c30463.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_990f7bd6.jpg,,TRUE,Identifiable +N1,86515,Sortie #86515,https://biolit.fr/sorties/sortie-86515/,Charrier Lilian,https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0001.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0002.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.05_2b8ac7c9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.10_71fab3bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.10_d4daf2b1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_990f7bd6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_e7d39b03.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_f6c30463.jpg,1/30/2025 0:00,13.0000000,15.0000000,48.657669,-1.969669,Planète Mer (antenne Dinard),Fort national,86547,Observation #86547,https://biolit.fr/observations/observation-86547/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.10_71fab3bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0002.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_e7d39b03.jpg,,TRUE,Identifiable +N1,86515,Sortie #86515,https://biolit.fr/sorties/sortie-86515/,Charrier Lilian,https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0001.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0002.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.05_2b8ac7c9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.10_71fab3bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.10_d4daf2b1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_990f7bd6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_e7d39b03.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_f6c30463.jpg,1/30/2025 0:00,13.0000000,15.0000000,48.657669,-1.969669,Planète Mer (antenne Dinard),Fort national,86549,Observation #86549,https://biolit.fr/observations/observation-86549/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.05_2b8ac7c9.jpg,,TRUE,Identifiable +N1,86515,Sortie #86515,https://biolit.fr/sorties/sortie-86515/,Charrier Lilian,https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0001.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0002.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.05_2b8ac7c9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.10_71fab3bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.10_d4daf2b1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_990f7bd6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_e7d39b03.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/WhatsApp-Image-2025-01-30-a-15.27.12_f6c30463.jpg,1/30/2025 0:00,13.0000000,15.0000000,48.657669,-1.969669,Planète Mer (antenne Dinard),Fort national,86559,Observation #86559,https://biolit.fr/observations/observation-86559/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/jet-form-builder/4ee27c6557e4fbc1dc8cf0e4d09ea341/2025/01/IMG-20250130-WA0004.jpg,,TRUE,Identifiable +N1,86573,Sortie #86573,https://biolit.fr/sorties/sortie-86573/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241229_170207-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241229_170214-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241229_171215-3-scaled.jpg,12/29/2024 0:00,17.0000000,17.0000000,43.259668000000,5.37480700000000,Planète Mer,Plage de l'Huveaune,86574,Observation #86574,https://biolit.fr/observations/observation-86574/,Tritia mutabilis,Noisette de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241229_170207-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241229_170214-3-scaled.jpg,,,Identifiable +N1,86573,Sortie #86573,https://biolit.fr/sorties/sortie-86573/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241229_170207-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241229_170214-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241229_171215-3-scaled.jpg,12/29/2024 0:00,17.0000000,17.0000000,43.259668000000,5.37480700000000,Planète Mer,Plage de l'Huveaune,86576,Observation #86576,https://biolit.fr/observations/observation-86576/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/01/IMG_20241229_171215-3-scaled.jpg,,TRUE,Identifiable +N1,86579,Sortie #86579,https://biolit.fr/sorties/sortie-86579/,Furcy Céline,https://biolit.fr/wp-content/uploads/jet-form-builder/6c5af26155c3a623bc7926006b0f3f56/2025/01/1000025280-scaled.jpg,1/31/2025 0:00,9.0:48,11.0:48,43.3564600,5.3274990,AIEJE,Plage de Corbières Marseille,86580,Observation #86580,https://biolit.fr/observations/observation-86580/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c5af26155c3a623bc7926006b0f3f56/2025/01/1000025280-scaled.jpg,,TRUE,Identifiable +N1,86652,Sortie #86652,https://biolit.fr/sorties/sortie-86652/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010650-scaled.jpg,02/02/2025,12.0000000,13.0000000,46.0036290000000,-1.14378000000000,,fort enet,86653,Observation #86653,https://biolit.fr/observations/observation-86653/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010640-scaled.jpg,,TRUE,Identifiable +N1,86652,Sortie #86652,https://biolit.fr/sorties/sortie-86652/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010650-scaled.jpg,02/02/2025,12.0000000,13.0000000,46.0036290000000,-1.14378000000000,,fort enet,86655,Observation #86655,https://biolit.fr/observations/observation-86655/,Conger conger,Congre,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010634-scaled.jpg,,TRUE,Identifiable +N1,86652,Sortie #86652,https://biolit.fr/sorties/sortie-86652/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010650-scaled.jpg,02/02/2025,12.0000000,13.0000000,46.0036290000000,-1.14378000000000,,fort enet,86657,Observation #86657,https://biolit.fr/observations/observation-86657/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010621-scaled.jpg,,TRUE,Identifiable +N1,86652,Sortie #86652,https://biolit.fr/sorties/sortie-86652/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010650-scaled.jpg,02/02/2025,12.0000000,13.0000000,46.0036290000000,-1.14378000000000,,fort enet,86659,Observation #86659,https://biolit.fr/observations/observation-86659/,Palaemon sp.,Crevette,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010620-scaled.jpg,,TRUE,Identifiable +N1,86652,Sortie #86652,https://biolit.fr/sorties/sortie-86652/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010650-scaled.jpg,02/02/2025,12.0000000,13.0000000,46.0036290000000,-1.14378000000000,,fort enet,86661,Observation #86661,https://biolit.fr/observations/observation-86661/,Aeolidia filomenae,Eolis de Filomène,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010650-scaled.jpg,,TRUE,Identifiable +N1,86652,Sortie #86652,https://biolit.fr/sorties/sortie-86652/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010650-scaled.jpg,02/02/2025,12.0000000,13.0000000,46.0036290000000,-1.14378000000000,,fort enet,86663,Observation #86663,https://biolit.fr/observations/observation-86663/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010624-scaled.jpg,,TRUE,Ne sais pas +N1,86652,Sortie #86652,https://biolit.fr/sorties/sortie-86652/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010650-scaled.jpg,02/02/2025,12.0000000,13.0000000,46.0036290000000,-1.14378000000000,,fort enet,86665,Observation #86665,https://biolit.fr/observations/observation-86665/,Tritia reticulata,Ponte de nasse réticulée,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010627-scaled.jpg,,TRUE,Ne sais pas +N1,86652,Sortie #86652,https://biolit.fr/sorties/sortie-86652/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010650-scaled.jpg,02/02/2025,12.0000000,13.0000000,46.0036290000000,-1.14378000000000,,fort enet,86667,Observation #86667,https://biolit.fr/observations/observation-86667/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010629-scaled.jpg,,,Ne sais pas +N1,86652,Sortie #86652,https://biolit.fr/sorties/sortie-86652/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010650-scaled.jpg,02/02/2025,12.0000000,13.0000000,46.0036290000000,-1.14378000000000,,fort enet,86669,Observation #86669,https://biolit.fr/observations/observation-86669/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010631-scaled.jpg,,,Ne sais pas +N1,86652,Sortie #86652,https://biolit.fr/sorties/sortie-86652/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010650-scaled.jpg,02/02/2025,12.0000000,13.0000000,46.0036290000000,-1.14378000000000,,fort enet,86671,Observation #86671,https://biolit.fr/observations/observation-86671/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010638-scaled.jpg,,TRUE,Ne sais pas +N1,86652,Sortie #86652,https://biolit.fr/sorties/sortie-86652/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010650-scaled.jpg,02/02/2025,12.0000000,13.0000000,46.0036290000000,-1.14378000000000,,fort enet,86673,Observation #86673,https://biolit.fr/observations/observation-86673/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010635-scaled.jpg,,,Ne sais pas +N1,86652,Sortie #86652,https://biolit.fr/sorties/sortie-86652/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010650-scaled.jpg,02/02/2025,12.0000000,13.0000000,46.0036290000000,-1.14378000000000,,fort enet,86675,Observation #86675,https://biolit.fr/observations/observation-86675/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010627-scaled.jpg,,,Ne sais pas +N1,86652,Sortie #86652,https://biolit.fr/sorties/sortie-86652/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010621-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010627-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010650-scaled.jpg,02/02/2025,12.0000000,13.0000000,46.0036290000000,-1.14378000000000,,fort enet,86677,Observation #86677,https://biolit.fr/observations/observation-86677/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/02/1000010628-scaled.jpg,,,Ne sais pas +N1,86715,Sortie #86715,https://biolit.fr/sorties/sortie-86715/,DE PINTO Magali,https://biolit.fr/wp-content/uploads/jet-form-builder/ea8dab3790d482dfb19b766a675629b0/2025/02/img_7662-scaled.jpg,10/11/2024,10.0000000,11.0:45,43.357384000000,5.29029500000000,AIEJE,PLAGE DU FORTIN,,,,,,,,,, +N1,86822,Sortie #86822,https://biolit.fr/sorties/sortie-86822/,Bolling Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/6a2ff5804221cc096949f05f707da7ab/2025/02/1I8A6348-scaled.jpg,02/05/2025,11.0000000,11.0000000,43.4835760000000,-1.56326400000000,Centre de la mer,Biarritz,,,,,,,,,, +N1,86826,Sortie #86826,https://biolit.fr/sorties/sortie-86826/,Bolling Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/6a2ff5804221cc096949f05f707da7ab/2025/02/IMG_3567-scaled.jpg,02/05/2025,11.0000000,11.0000000,43.4835760000000,-1.56324100000000,Centre de la mer,Biarritz,,,,,,,,,, +N1,86833,Sortie #86833,https://biolit.fr/sorties/sortie-86833/,MARCEL Killian,https://biolit.fr/wp-content/uploads/jet-form-builder/63c2293df7a7cefdff0eb4145f089d44/2025/02/Grande-claveline-Pointe-du-Diable-29.jpeg,8/23/2024 0:00,15.000001,15.000002,48.3542930000000,-4.55853600000000,,Pointe du Diable,86834,Observation #86834,https://biolit.fr/observations/observation-86834/,Clavelina lepadiformis,Grande claveline,,https://biolit.fr/wp-content/uploads/jet-form-builder/63c2293df7a7cefdff0eb4145f089d44/2025/02/Grande-claveline-Pointe-du-Diable-29.jpeg,,TRUE,Identifiable +N1,86837,Sortie #86837,https://biolit.fr/sorties/sortie-86837/,MARCEL Killian,https://biolit.fr/wp-content/uploads/jet-form-builder/63c2293df7a7cefdff0eb4145f089d44/2025/02/Ascidie-japonaire-Logona-Daoulas-29.jpeg,06/07/2020,13.000002,13.000003,48.30816,-4.27106,,Logona-Daoulas,,,,,,,,,, +N1,86841,Sortie #86841,https://biolit.fr/sorties/sortie-86841/,MARCEL Killian,https://biolit.fr/wp-content/uploads/jet-form-builder/63c2293df7a7cefdff0eb4145f089d44/2025/02/Ascidie-japonaire-Logona-Daoulas-29-1.jpeg,06/07/2024,13.000002,13.000003,48.3073240000000,-4.27066900000000,,Logona-Daoulas,86842,Observation #86842,https://biolit.fr/observations/observation-86842/,Styela clava,Ascidie japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/63c2293df7a7cefdff0eb4145f089d44/2025/02/Ascidie-japonaire-Logona-Daoulas-29-1.jpeg,,,Identifiable +N1,86845,Sortie #86845,https://biolit.fr/sorties/sortie-86845/,MARCEL Killian,https://biolit.fr/wp-content/uploads/jet-form-builder/63c2293df7a7cefdff0eb4145f089d44/2025/02/Oeuf-Grande-roussette-Archipel-Brehat-22.jpeg,07/10/2024,17.0000000,17.000005,48.8355230000000,-3.02319500000000,,Île Raguenès,86846,Observation #86846,https://biolit.fr/observations/observation-86846/,Scyliorhinus stellaris,Grande roussette,,https://biolit.fr/wp-content/uploads/jet-form-builder/63c2293df7a7cefdff0eb4145f089d44/2025/02/Oeuf-Grande-roussette-Archipel-Brehat-22.jpeg,,TRUE,Identifiable +N1,86850,Sortie #86850,https://biolit.fr/sorties/sortie-86850/,MARCEL Killian,https://biolit.fr/wp-content/uploads/jet-form-builder/63c2293df7a7cefdff0eb4145f089d44/2025/02/Poulpe-commun-Ajaccio.jpeg,10/29/2024 0:00,15.0000000,15.0000000,41.9152610000000,8.74000000000000,,Ajaccio,86851,Observation #86851,https://biolit.fr/observations/observation-86851/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/63c2293df7a7cefdff0eb4145f089d44/2025/02/Poulpe-commun-Ajaccio.jpeg,,TRUE,Identifiable +N1,87149,Sortie #87149,https://biolit.fr/sorties/sortie-87149/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat2-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220253.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220255.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220256-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220257-rotated.jpg,2/13/2025 0:00,12.0000000,13.0000000,48.8164880000000,-3.54094500000000,E.T.A.P.E.S,Landrellec,87150,Observation #87150,https://biolit.fr/observations/observation-87150/,Pelvetia canaliculata,Pelvétie,,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat1.jpg,,,Identifiable +N1,87149,Sortie #87149,https://biolit.fr/sorties/sortie-87149/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat2-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220253.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220255.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220256-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220257-rotated.jpg,2/13/2025 0:00,12.0000000,13.0000000,48.8164880000000,-3.54094500000000,E.T.A.P.E.S,Landrellec,87152,Observation #87152,https://biolit.fr/observations/observation-87152/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat2-rotated.jpg,,,Identifiable +N1,87149,Sortie #87149,https://biolit.fr/sorties/sortie-87149/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat2-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220253.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220255.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220256-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220257-rotated.jpg,2/13/2025 0:00,12.0000000,13.0000000,48.8164880000000,-3.54094500000000,E.T.A.P.E.S,Landrellec,87154,Observation #87154,https://biolit.fr/observations/observation-87154/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220253.jpg,,TRUE,Identifiable +N1,87149,Sortie #87149,https://biolit.fr/sorties/sortie-87149/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat2-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220253.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220255.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220256-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220257-rotated.jpg,2/13/2025 0:00,12.0000000,13.0000000,48.8164880000000,-3.54094500000000,E.T.A.P.E.S,Landrellec,87156,Observation #87156,https://biolit.fr/observations/observation-87156/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025-rotated.jpg,,TRUE,Identifiable +N1,87149,Sortie #87149,https://biolit.fr/sorties/sortie-87149/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat2-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220253.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220255.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220256-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220257-rotated.jpg,2/13/2025 0:00,12.0000000,13.0000000,48.8164880000000,-3.54094500000000,E.T.A.P.E.S,Landrellec,87158,Observation #87158,https://biolit.fr/observations/observation-87158/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220255.jpg,,TRUE,Identifiable +N1,87149,Sortie #87149,https://biolit.fr/sorties/sortie-87149/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat2-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220253.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220255.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220256-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220257-rotated.jpg,2/13/2025 0:00,12.0000000,13.0000000,48.8164880000000,-3.54094500000000,E.T.A.P.E.S,Landrellec,87161,Observation #87161,https://biolit.fr/observations/observation-87161/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220256-rotated.jpg,,TRUE,Identifiable +N1,87149,Sortie #87149,https://biolit.fr/sorties/sortie-87149/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat2-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025quadrat3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220252.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220253.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit13022025-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220255.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220256-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220257-rotated.jpg,2/13/2025 0:00,12.0000000,13.0000000,48.8164880000000,-3.54094500000000,E.T.A.P.E.S,Landrellec,87163,Observation #87163,https://biolit.fr/observations/observation-87163/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/biolit130220257-rotated.jpg,,TRUE,Identifiable +N1,87168,Sortie #87168,https://biolit.fr/sorties/sortie-87168/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/fiche-equipe113022025-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/02/ficheequipe213022025-rotated.jpg,2/13/2025 0:00,12.0000000,13.0000000,48.8163750000000,-3.54146000000000,E.T.A.P.E.S,Landrellec,,,,,,,,,, +N1,87171,Sortie #87171,https://biolit.fr/sorties/sortie-87171/,Bonnafoux Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0003-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0006-Copie.jpg,2/17/2025 0:00,15.0000000,16.0000000,43.55563,4.007063,,plage du petit travers,87172,Observation #87172,https://biolit.fr/observations/observation-87172/,Carpobrotus acinaciformis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0006-Copie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0003-Copie.jpg,,TRUE,Identifiable +N1,87180,Sortie #87180,https://biolit.fr/sorties/sortie-87180/,Bonnafoux Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0032.jpg,2/17/2025 0:00,15.0000000,16.0000000,43.55563,4.007063,,plage du petit travers,87181,Observation #87181,https://biolit.fr/observations/observation-87181/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0007.jpg,,,Ne sais pas +N1,87180,Sortie #87180,https://biolit.fr/sorties/sortie-87180/,Bonnafoux Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0032.jpg,2/17/2025 0:00,15.0000000,16.0000000,43.55563,4.007063,,plage du petit travers,87183,Observation #87183,https://biolit.fr/observations/observation-87183/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0025.jpg,,TRUE,Identifiable +N1,87180,Sortie #87180,https://biolit.fr/sorties/sortie-87180/,Bonnafoux Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0032.jpg,2/17/2025 0:00,15.0000000,16.0000000,43.55563,4.007063,,plage du petit travers,87185,Observation #87185,https://biolit.fr/observations/observation-87185/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0014.jpg,,TRUE,Identifiable +N1,87180,Sortie #87180,https://biolit.fr/sorties/sortie-87180/,Bonnafoux Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0032.jpg,2/17/2025 0:00,15.0000000,16.0000000,43.55563,4.007063,,plage du petit travers,87187,Observation #87187,https://biolit.fr/observations/observation-87187/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0017.jpg,,TRUE,Identifiable +N1,87180,Sortie #87180,https://biolit.fr/sorties/sortie-87180/,Bonnafoux Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0032.jpg,2/17/2025 0:00,15.0000000,16.0000000,43.55563,4.007063,,plage du petit travers,87189,Observation #87189,https://biolit.fr/observations/observation-87189/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0032.jpg,,,non-identifiable +N1,87192,Sortie #87192,https://biolit.fr/sorties/sortie-87192/,Bonnafoux Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0027.jpg,2/17/2025 0:00,15.0000000,16.0000000,43.55563,4.007063,,plage du petit travers,87193,Observation #87193,https://biolit.fr/observations/observation-87193/,Cakile maritima,Cakilier maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/b5f6d336be5098a641bc98ab65036c6b/2025/02/IMG-20250219-WA0027.jpg,,TRUE,Identifiable +N1,87206,Sortie #87206,https://biolit.fr/sorties/sortie-87206/,Ripoll Steven,https://biolit.fr/wp-content/uploads/jet-form-builder/1ae435db560a9be8ba8d1f65e4794f16/2025/02/1000035817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1ae435db560a9be8ba8d1f65e4794f16/2025/02/1000035818-scaled.jpg,2/20/2025 0:00,10.0000000,10.0:11,43.273394,5.3625160,Planète Mer,Plage du Prophète,87207,Observation #87207,https://biolit.fr/observations/observation-87207/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/jet-form-builder/1ae435db560a9be8ba8d1f65e4794f16/2025/02/1000035817-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1ae435db560a9be8ba8d1f65e4794f16/2025/02/1000035818-scaled.jpg,,TRUE,Ne sais pas +N1,87211,Sortie #87211,https://biolit.fr/sorties/sortie-87211/,Keruzoré Flavien,https://biolit.fr/wp-content/uploads/jet-form-builder/f336683773895330b322e55dc93c11f9/2025/02/image-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f336683773895330b322e55dc93c11f9/2025/02/image-1-scaled.jpg,2/20/2025 0:00,10.0000000,10.0000000,43.2728990000000,5.36179200000000,Planète Mer,Plage du prophète,87212,Observation #87212,https://biolit.fr/observations/observation-87212/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f336683773895330b322e55dc93c11f9/2025/02/image-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f336683773895330b322e55dc93c11f9/2025/02/image-1-scaled.jpg,,,Ne sais pas +N1,87215,Sortie #87215,https://biolit.fr/sorties/sortie-87215/,Brehier Manon,https://biolit.fr/wp-content/uploads/jet-form-builder/ef148f3c603b0ada98b7e0667aff93ae/2025/02/IMG_1483-scaled.jpeg,2/20/2025 0:00,10.0000000,10.0:11,43.2732250000000,5.36173600000000,,Plage du prophète,87216,Observation #87216,https://biolit.fr/observations/observation-87216/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/ef148f3c603b0ada98b7e0667aff93ae/2025/02/IMG_1483-scaled.jpeg,,TRUE,Identifiable +N1,87220,Sortie #87220,https://biolit.fr/sorties/sortie-87220/,Ripoll Steven,https://biolit.fr/wp-content/uploads/jet-form-builder/1ae435db560a9be8ba8d1f65e4794f16/2025/02/1000035822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1ae435db560a9be8ba8d1f65e4794f16/2025/02/1000035821-scaled.jpg,2/20/2025 0:00,10.0:13,10.0:13,43.2733010,5.3626370,Planète Mer,Plage du Prophète,87225,Observation #87225,https://biolit.fr/observations/observation-87225/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/1ae435db560a9be8ba8d1f65e4794f16/2025/02/1000035822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1ae435db560a9be8ba8d1f65e4794f16/2025/02/1000035821-scaled.jpg,,TRUE,Ne sais pas +N1,87222,Sortie #87222,https://biolit.fr/sorties/sortie-87222/,Blain Severine,https://biolit.fr/wp-content/uploads/jet-form-builder/9b1ea317367d491e889450218d970c49/2025/02/20250220_095845-scaled.jpg,2/20/2025 0:00,9.0000000,10.0:14,43.2729030,5.3627310,Planète Mer,Plage des profetes,87223,Observation #87223,https://biolit.fr/observations/observation-87223/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9b1ea317367d491e889450218d970c49/2025/02/20250220_095845-scaled.jpg,,,Ne sais pas +N1,87228,Sortie #87228,https://biolit.fr/sorties/sortie-87228/,Keruzoré Flavien,https://biolit.fr/wp-content/uploads/jet-form-builder/f336683773895330b322e55dc93c11f9/2025/02/image-2-scaled.jpg,2/20/2025 0:00,10.0:15,10.0:15,43.2731110000000,5.36192900000000,Planète Mer,Plage du prophète,87229,Observation #87229,https://biolit.fr/observations/observation-87229/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f336683773895330b322e55dc93c11f9/2025/02/image-2-scaled.jpg,,,Ne sais pas +N1,87239,Sortie #87239,https://biolit.fr/sorties/sortie-87239/,Degaey Frederic,https://biolit.fr/wp-content/uploads/jet-form-builder/475117d30eb4817b71bffd4c3843b0a8/2025/02/IMG_2073-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/475117d30eb4817b71bffd4c3843b0a8/2025/02/IMG_2074-scaled.jpeg,2/21/2025 0:00,18.0:15,0.0:22,41.7793070000000,3.03119700000000,,St Féliu Espagne,87240,Observation #87240,https://biolit.fr/observations/observation-87240/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/475117d30eb4817b71bffd4c3843b0a8/2025/02/IMG_2074-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/475117d30eb4817b71bffd4c3843b0a8/2025/02/IMG_2073-scaled.jpeg,,TRUE,Identifiable +N1,87263,Sortie #87263,https://biolit.fr/sorties/sortie-87263/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250203_153958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250206_164947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Pourpre-et-oeufs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-scaled.jpg,02/03/2025,15.0000000,16.0000000,48.7025820000000,-1.84739800000000,,Rochers de la plage de Port Mer,87264,Observation #87264,https://biolit.fr/observations/observation-87264/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-scaled.jpg,,TRUE,Identifiable +N1,87263,Sortie #87263,https://biolit.fr/sorties/sortie-87263/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250203_153958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250206_164947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Pourpre-et-oeufs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-scaled.jpg,02/03/2025,15.0000000,16.0000000,48.7025820000000,-1.84739800000000,,Rochers de la plage de Port Mer,87266,Observation #87266,https://biolit.fr/observations/observation-87266/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Blennie-scaled.jpg,,,Identifiable +N1,87263,Sortie #87263,https://biolit.fr/sorties/sortie-87263/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250203_153958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250206_164947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Pourpre-et-oeufs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-scaled.jpg,02/03/2025,15.0000000,16.0000000,48.7025820000000,-1.84739800000000,,Rochers de la plage de Port Mer,87268,Observation #87268,https://biolit.fr/observations/observation-87268/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250203_153958-scaled.jpg,,TRUE,Identifiable +N1,87263,Sortie #87263,https://biolit.fr/sorties/sortie-87263/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250203_153958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250206_164947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Pourpre-et-oeufs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-scaled.jpg,02/03/2025,15.0000000,16.0000000,48.7025820000000,-1.84739800000000,,Rochers de la plage de Port Mer,87270,Observation #87270,https://biolit.fr/observations/observation-87270/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/crabe-porcellane-scaled.jpg,,TRUE,Identifiable +N1,87263,Sortie #87263,https://biolit.fr/sorties/sortie-87263/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250203_153958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250206_164947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Pourpre-et-oeufs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-scaled.jpg,02/03/2025,15.0000000,16.0000000,48.7025820000000,-1.84739800000000,,Rochers de la plage de Port Mer,87272,Observation #87272,https://biolit.fr/observations/observation-87272/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-vert-scaled.jpg,,TRUE,Identifiable +N1,87263,Sortie #87263,https://biolit.fr/sorties/sortie-87263/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250203_153958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250206_164947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Pourpre-et-oeufs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-scaled.jpg,02/03/2025,15.0000000,16.0000000,48.7025820000000,-1.84739800000000,,Rochers de la plage de Port Mer,87274,Observation #87274,https://biolit.fr/observations/observation-87274/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-scaled.jpg,,,Identifiable +N1,87263,Sortie #87263,https://biolit.fr/sorties/sortie-87263/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250203_153958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250206_164947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Pourpre-et-oeufs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-scaled.jpg,02/03/2025,15.0000000,16.0000000,48.7025820000000,-1.84739800000000,,Rochers de la plage de Port Mer,87276,Observation #87276,https://biolit.fr/observations/observation-87276/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle2-scaled.jpg,,TRUE,Identifiable +N1,87263,Sortie #87263,https://biolit.fr/sorties/sortie-87263/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250203_153958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250206_164947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Pourpre-et-oeufs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-scaled.jpg,02/03/2025,15.0000000,16.0000000,48.7025820000000,-1.84739800000000,,Rochers de la plage de Port Mer,87278,Observation #87278,https://biolit.fr/observations/observation-87278/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine2-scaled.jpg,,TRUE,Identifiable +N1,87263,Sortie #87263,https://biolit.fr/sorties/sortie-87263/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250203_153958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250206_164947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Pourpre-et-oeufs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-scaled.jpg,02/03/2025,15.0000000,16.0000000,48.7025820000000,-1.84739800000000,,Rochers de la plage de Port Mer,87280,Observation #87280,https://biolit.fr/observations/observation-87280/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nerophis-scaled.jpg,,TRUE,Identifiable +N1,87263,Sortie #87263,https://biolit.fr/sorties/sortie-87263/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250203_153958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250206_164947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Pourpre-et-oeufs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-scaled.jpg,02/03/2025,15.0000000,16.0000000,48.7025820000000,-1.84739800000000,,Rochers de la plage de Port Mer,87282,Observation #87282,https://biolit.fr/observations/observation-87282/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis3-scaled.jpg,,,Identifiable +N1,87263,Sortie #87263,https://biolit.fr/sorties/sortie-87263/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250203_153958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250206_164947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Pourpre-et-oeufs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-scaled.jpg,02/03/2025,15.0000000,16.0000000,48.7025820000000,-1.84739800000000,,Rochers de la plage de Port Mer,87284,Observation #87284,https://biolit.fr/observations/observation-87284/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/patelle-scaled.jpg,,,Identifiable +N1,87263,Sortie #87263,https://biolit.fr/sorties/sortie-87263/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250203_153958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250206_164947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Pourpre-et-oeufs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-scaled.jpg,02/03/2025,15.0000000,16.0000000,48.7025820000000,-1.84739800000000,,Rochers de la plage de Port Mer,87286,Observation #87286,https://biolit.fr/observations/observation-87286/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Pourpre-et-oeufs-scaled.jpg,,TRUE,Identifiable +N1,87263,Sortie #87263,https://biolit.fr/sorties/sortie-87263/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250203_153958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250206_164947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Pourpre-et-oeufs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-scaled.jpg,02/03/2025,15.0000000,16.0000000,48.7025820000000,-1.84739800000000,,Rochers de la plage de Port Mer,87288,Observation #87288,https://biolit.fr/observations/observation-87288/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-scaled.jpg,,TRUE,Identifiable +N1,87263,Sortie #87263,https://biolit.fr/sorties/sortie-87263/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Gibulle2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250203_153958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250206_164947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nerophis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ophiure-fragilis3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Pourpre-et-oeufs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Tomate-de-mer-scaled.jpg,02/03/2025,15.0000000,16.0000000,48.7025820000000,-1.84739800000000,,Rochers de la plage de Port Mer,94495,Observation #94495,https://biolit.fr/observations/observation-94495/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/IMG_20250203_153958-scaled.jpg,,TRUE,Identifiable +N1,87295,Sortie #87295,https://biolit.fr/sorties/sortie-87295/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/02/Os-de-seiche-commune-1-sepia-officinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/02/Os-de-seiche-commune-2-sepia-officinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/02/Os-de-seiche-rose-1-sepia-orbignyana-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/02/Os-de-seiche-rose-2-sepia-orbignyana-scaled.jpg,12/20/2024 0:00,14.0000000,15.0000000,48.6592650000000,-1.99847100000000,,Plage de la Hoguette,87296,Observation #87296,https://biolit.fr/observations/observation-87296/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/02/Os-de-seiche-commune-1-sepia-officinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/02/Os-de-seiche-commune-2-sepia-officinalis-scaled.jpg,,TRUE,Identifiable +N1,87295,Sortie #87295,https://biolit.fr/sorties/sortie-87295/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/02/Os-de-seiche-commune-1-sepia-officinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/02/Os-de-seiche-commune-2-sepia-officinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/02/Os-de-seiche-rose-1-sepia-orbignyana-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/02/Os-de-seiche-rose-2-sepia-orbignyana-scaled.jpg,12/20/2024 0:00,14.0000000,15.0000000,48.6592650000000,-1.99847100000000,,Plage de la Hoguette,87298,Observation #87298,https://biolit.fr/observations/observation-87298/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/02/Os-de-seiche-rose-1-sepia-orbignyana-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/02/Os-de-seiche-rose-2-sepia-orbignyana-scaled.jpg,,TRUE,Identifiable +N1,87319,Sortie #87319,https://biolit.fr/sorties/sortie-87319/,DURAND DELPHINE,https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104059-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104125-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104151-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104201-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104842-scaled.jpg,2/24/2025 0:00,10.0000000,10.0000000,43.3575990,5.2902830,,PLAGE DU FORTIN MARSEILLE,87320,Observation #87320,https://biolit.fr/observations/observation-87320/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104059-scaled.jpg,,TRUE,Identifiable +N1,87319,Sortie #87319,https://biolit.fr/sorties/sortie-87319/,DURAND DELPHINE,https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104059-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104125-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104151-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104201-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104842-scaled.jpg,2/24/2025 0:00,10.0000000,10.0000000,43.3575990,5.2902830,,PLAGE DU FORTIN MARSEILLE,87322,Observation #87322,https://biolit.fr/observations/observation-87322/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104119-scaled.jpg,,TRUE,Identifiable +N1,87319,Sortie #87319,https://biolit.fr/sorties/sortie-87319/,DURAND DELPHINE,https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104059-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104125-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104151-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104201-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104842-scaled.jpg,2/24/2025 0:00,10.0000000,10.0000000,43.3575990,5.2902830,,PLAGE DU FORTIN MARSEILLE,87324,Observation #87324,https://biolit.fr/observations/observation-87324/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104201-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104842-scaled.jpg,,,Ne sais pas +N1,87319,Sortie #87319,https://biolit.fr/sorties/sortie-87319/,DURAND DELPHINE,https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104059-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104125-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104151-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104201-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104842-scaled.jpg,2/24/2025 0:00,10.0000000,10.0000000,43.3575990,5.2902830,,PLAGE DU FORTIN MARSEILLE,87326,Observation #87326,https://biolit.fr/observations/observation-87326/,Flabellia petiolata,Udotée,,https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104842-scaled.jpg,,TRUE,Identifiable +N1,87319,Sortie #87319,https://biolit.fr/sorties/sortie-87319/,DURAND DELPHINE,https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104059-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104125-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104151-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104201-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104842-scaled.jpg,2/24/2025 0:00,10.0000000,10.0000000,43.3575990,5.2902830,,PLAGE DU FORTIN MARSEILLE,87328,Observation #87328,https://biolit.fr/observations/observation-87328/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104155-scaled.jpg,,TRUE,Identifiable +N1,87319,Sortie #87319,https://biolit.fr/sorties/sortie-87319/,DURAND DELPHINE,https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104059-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104125-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104151-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104201-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104842-scaled.jpg,2/24/2025 0:00,10.0000000,10.0000000,43.3575990,5.2902830,,PLAGE DU FORTIN MARSEILLE,87330,Observation #87330,https://biolit.fr/observations/observation-87330/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104151-scaled.jpg,,,Identifiable +N1,87319,Sortie #87319,https://biolit.fr/sorties/sortie-87319/,DURAND DELPHINE,https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104059-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104125-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104151-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104201-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104842-scaled.jpg,2/24/2025 0:00,10.0000000,10.0000000,43.3575990,5.2902830,,PLAGE DU FORTIN MARSEILLE,87332,Observation #87332,https://biolit.fr/observations/observation-87332/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/27c165f7f566251466e0d444b60b1dbf/2025/02/IMG_20250224_104208-scaled.jpg,,,Ne sais pas +N1,87357,Sortie #87357,https://biolit.fr/sorties/sortie-87357/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0026.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0034.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0035-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0040.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0047.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0053.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0056.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0058.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0060.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0061.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0062.jpg,2/27/2025 0:00,10.0000000,11.0000000,43.214787000000,5.34289200000000,Planète Mer,Anse de la Maronnaise,87363,Observation #87363,https://biolit.fr/observations/observation-87363/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0022.jpg,,TRUE,Identifiable +N1,87357,Sortie #87357,https://biolit.fr/sorties/sortie-87357/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0026.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0034.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0035-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0040.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0047.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0053.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0056.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0058.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0060.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0061.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0062.jpg,2/27/2025 0:00,10.0000000,11.0000000,43.214787000000,5.34289200000000,Planète Mer,Anse de la Maronnaise,87368,Observation #87368,https://biolit.fr/observations/observation-87368/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0034.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0033.jpg,,TRUE,Identifiable +N1,87357,Sortie #87357,https://biolit.fr/sorties/sortie-87357/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0026.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0034.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0035-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0040.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0047.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0053.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0056.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0058.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0060.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0061.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0062.jpg,2/27/2025 0:00,10.0000000,11.0000000,43.214787000000,5.34289200000000,Planète Mer,Anse de la Maronnaise,87370,Observation #87370,https://biolit.fr/observations/observation-87370/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0047.jpg,,TRUE,Identifiable +N1,87357,Sortie #87357,https://biolit.fr/sorties/sortie-87357/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0026.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0034.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0035-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0040.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0047.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0053.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0056.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0058.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0060.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0061.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0062.jpg,2/27/2025 0:00,10.0000000,11.0000000,43.214787000000,5.34289200000000,Planète Mer,Anse de la Maronnaise,87381,Observation #87381,https://biolit.fr/observations/observation-87381/,Corallina officinalis/caespitosa,Coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0035-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0040.jpg,,,Identifiable +N1,87357,Sortie #87357,https://biolit.fr/sorties/sortie-87357/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0026.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0034.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0035-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0040.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0047.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0053.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0056.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0058.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0060.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0061.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0062.jpg,2/27/2025 0:00,10.0000000,11.0000000,43.214787000000,5.34289200000000,Planète Mer,Anse de la Maronnaise,87383,Observation #87383,https://biolit.fr/observations/observation-87383/,Jania rubens,Janie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0024.jpg,,,Identifiable +N1,87357,Sortie #87357,https://biolit.fr/sorties/sortie-87357/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0026.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0034.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0035-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0040.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0047.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0053.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0056.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0058.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0060.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0061.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0062.jpg,2/27/2025 0:00,10.0000000,11.0000000,43.214787000000,5.34289200000000,Planète Mer,Anse de la Maronnaise,87387,Observation #87387,https://biolit.fr/observations/observation-87387/,Colpomenia peregrina,Voleuse d'huîtres,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0058.jpg,,TRUE,Identifiable +N1,87357,Sortie #87357,https://biolit.fr/sorties/sortie-87357/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0026.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0034.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0035-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0040.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0047.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0053.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0056.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0058.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0060.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0061.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0062.jpg,2/27/2025 0:00,10.0000000,11.0000000,43.214787000000,5.34289200000000,Planète Mer,Anse de la Maronnaise,87392,Observation #87392,https://biolit.fr/observations/observation-87392/,Corallina officinalis/caespitosa,Coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0056.jpg,,,Identifiable +N1,87357,Sortie #87357,https://biolit.fr/sorties/sortie-87357/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0026.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0034.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0035-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0040.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0047.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0053.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0056.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0058.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0060.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0061.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0062.jpg,2/27/2025 0:00,10.0000000,11.0000000,43.214787000000,5.34289200000000,Planète Mer,Anse de la Maronnaise,87394,Observation #87394,https://biolit.fr/observations/observation-87394/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0052.jpg,,,Ne sais pas +N1,87357,Sortie #87357,https://biolit.fr/sorties/sortie-87357/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0026.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0034.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0035-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0040.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0047.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0053.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0056.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0058.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0060.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0061.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0062.jpg,2/27/2025 0:00,10.0000000,11.0000000,43.214787000000,5.34289200000000,Planète Mer,Anse de la Maronnaise,87409,Observation #87409,https://biolit.fr/observations/observation-87409/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0060.jpg,,,Identifiable +N1,87357,Sortie #87357,https://biolit.fr/sorties/sortie-87357/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0026.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0034.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0035-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0040.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0047.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0053.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0056.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0058.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0060.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0061.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0062.jpg,2/27/2025 0:00,10.0000000,11.0000000,43.214787000000,5.34289200000000,Planète Mer,Anse de la Maronnaise,87411,Observation #87411,https://biolit.fr/observations/observation-87411/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0053.jpg,,TRUE,Identifiable +N1,87357,Sortie #87357,https://biolit.fr/sorties/sortie-87357/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0022.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0024.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0026.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0029.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0030.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0031.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0033.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0034.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0035-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0040.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0043.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0047.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0052.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0053.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0056.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0058.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0060.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0061.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0062.jpg,2/27/2025 0:00,10.0000000,11.0000000,43.214787000000,5.34289200000000,Planète Mer,Anse de la Maronnaise,87413,Observation #87413,https://biolit.fr/observations/observation-87413/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/02/IMG-20250227-WA0061.jpg,,TRUE,Identifiable +N1,87400,Sortie #87400,https://biolit.fr/sorties/sortie-87400/,Alarcon Messaline,https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_111635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_113028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_114635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_114741-scaled.jpg,2/27/2025 0:00,10.0000000,11.0000000,43.2148020000000,5.34295600000000,,Anse de la Maronaise,87401,Observation #87401,https://biolit.fr/observations/observation-87401/,Ulva compressa,Entéromorphe,,https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_111635-scaled.jpg,,,Identifiable +N1,87400,Sortie #87400,https://biolit.fr/sorties/sortie-87400/,Alarcon Messaline,https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_111635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_113028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_114635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_114741-scaled.jpg,2/27/2025 0:00,10.0000000,11.0000000,43.2148020000000,5.34295600000000,,Anse de la Maronaise,87403,Observation #87403,https://biolit.fr/observations/observation-87403/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_113028-scaled.jpg,,TRUE,Identifiable +N1,87400,Sortie #87400,https://biolit.fr/sorties/sortie-87400/,Alarcon Messaline,https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_111635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_113028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_114635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_114741-scaled.jpg,2/27/2025 0:00,10.0000000,11.0000000,43.2148020000000,5.34295600000000,,Anse de la Maronaise,87405,Observation #87405,https://biolit.fr/observations/observation-87405/,Jania virgata,Janie à branches fines,,https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_114635-scaled.jpg,,,Identifiable +N1,87400,Sortie #87400,https://biolit.fr/sorties/sortie-87400/,Alarcon Messaline,https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_111635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_113028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_114635-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_114741-scaled.jpg,2/27/2025 0:00,10.0000000,11.0000000,43.2148020000000,5.34295600000000,,Anse de la Maronaise,87407,Observation #87407,https://biolit.fr/observations/observation-87407/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/706e8cd54244862ac6f8117c119bfd84/2025/02/IMG_20250227_114741-scaled.jpg,,TRUE,Identifiable +N1,87438,Sortie #87438,https://biolit.fr/sorties/sortie-87438/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeternimee-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-2-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7025900000000,-1.84742000000000,,Rochers de la plage de Port Mer,87439,Observation #87439,https://biolit.fr/observations/observation-87439/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-scaled.jpg,,,non-identifiable +N1,87438,Sortie #87438,https://biolit.fr/sorties/sortie-87438/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeternimee-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-2-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7025900000000,-1.84742000000000,,Rochers de la plage de Port Mer,87441,Observation #87441,https://biolit.fr/observations/observation-87441/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeternimee-3-scaled.jpg,,,non-identifiable +N1,87438,Sortie #87438,https://biolit.fr/sorties/sortie-87438/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeternimee-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-2-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7025900000000,-1.84742000000000,,Rochers de la plage de Port Mer,87443,Observation #87443,https://biolit.fr/observations/observation-87443/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-2-scaled.jpg,,,Identifiable +N1,87438,Sortie #87438,https://biolit.fr/sorties/sortie-87438/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeternimee-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-2-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7025900000000,-1.84742000000000,,Rochers de la plage de Port Mer,87445,Observation #87445,https://biolit.fr/observations/observation-87445/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-2-scaled.jpg,,TRUE,Identifiable +N1,87438,Sortie #87438,https://biolit.fr/sorties/sortie-87438/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeternimee-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-2-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7025900000000,-1.84742000000000,,Rochers de la plage de Port Mer,87447,Observation #87447,https://biolit.fr/observations/observation-87447/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-3-scaled.jpg,,TRUE,Identifiable +N1,87438,Sortie #87438,https://biolit.fr/sorties/sortie-87438/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeternimee-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-2-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7025900000000,-1.84742000000000,,Rochers de la plage de Port Mer,87449,Observation #87449,https://biolit.fr/observations/observation-87449/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-2-scaled.jpg,,TRUE,Identifiable +N1,87438,Sortie #87438,https://biolit.fr/sorties/sortie-87438/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeternimee-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-2-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7025900000000,-1.84742000000000,,Rochers de la plage de Port Mer,87451,Observation #87451,https://biolit.fr/observations/observation-87451/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Chiton-scaled.jpg,,,non-identifiable +N1,87438,Sortie #87438,https://biolit.fr/sorties/sortie-87438/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeternimee-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-2-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7025900000000,-1.84742000000000,,Rochers de la plage de Port Mer,87453,Observation #87453,https://biolit.fr/observations/observation-87453/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-2-scaled.jpg,,,non-identifiable +N1,87438,Sortie #87438,https://biolit.fr/sorties/sortie-87438/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeternimee-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-2-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7025900000000,-1.84742000000000,,Rochers de la plage de Port Mer,87455,Observation #87455,https://biolit.fr/observations/observation-87455/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-porcellane-1-scaled.jpg,,TRUE,Identifiable +N1,87438,Sortie #87438,https://biolit.fr/sorties/sortie-87438/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeternimee-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-2-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7025900000000,-1.84742000000000,,Rochers de la plage de Port Mer,87457,Observation #87457,https://biolit.fr/observations/observation-87457/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-1-scaled.jpg,,,non-identifiable +N1,87438,Sortie #87438,https://biolit.fr/sorties/sortie-87438/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-indeternimee-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Bigorneau-perceur-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Chiton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Crabe-porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-2-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7025900000000,-1.84742000000000,,Rochers de la plage de Port Mer,87459,Observation #87459,https://biolit.fr/observations/observation-87459/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Etoile-sherif-2-scaled.jpg,,TRUE,Identifiable +N1,87481,Sortie #87481,https://biolit.fr/sorties/sortie-87481/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Siponcle-1-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7026030000000,-1.84743000000000,,Rochers de la plage de Port Mer,87482,Observation #87482,https://biolit.fr/observations/observation-87482/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Huitre-creuse-scaled.jpg,,TRUE,Identifiable +N1,87481,Sortie #87481,https://biolit.fr/sorties/sortie-87481/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Siponcle-1-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7026030000000,-1.84743000000000,,Rochers de la plage de Port Mer,87484,Observation #87484,https://biolit.fr/observations/observation-87484/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-2-scaled.jpg,,,Identifiable +N1,87481,Sortie #87481,https://biolit.fr/sorties/sortie-87481/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Siponcle-1-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7026030000000,-1.84743000000000,,Rochers de la plage de Port Mer,87486,Observation #87486,https://biolit.fr/observations/observation-87486/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-2-scaled.jpg,,TRUE,Identifiable +N1,87481,Sortie #87481,https://biolit.fr/sorties/sortie-87481/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Siponcle-1-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7026030000000,-1.84743000000000,,Rochers de la plage de Port Mer,87488,Observation #87488,https://biolit.fr/observations/observation-87488/,Nerophis ophidion,Nérophis ophidion,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-3-scaled.jpg,,TRUE,Identifiable +N1,87481,Sortie #87481,https://biolit.fr/sorties/sortie-87481/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Siponcle-1-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7026030000000,-1.84743000000000,,Rochers de la plage de Port Mer,87490,Observation #87490,https://biolit.fr/observations/observation-87490/,Hediste diversicolor,Néréis multicolore,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-4-scaled.jpg,,TRUE,Identifiable +N1,87481,Sortie #87481,https://biolit.fr/sorties/sortie-87481/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Siponcle-1-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7026030000000,-1.84743000000000,,Rochers de la plage de Port Mer,87492,Observation #87492,https://biolit.fr/observations/observation-87492/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-2-scaled.jpg,,,Identifiable +N1,87481,Sortie #87481,https://biolit.fr/sorties/sortie-87481/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Siponcle-1-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7026030000000,-1.84743000000000,,Rochers de la plage de Port Mer,87494,Observation #87494,https://biolit.fr/observations/observation-87494/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-2-scaled.jpg,,TRUE,Identifiable +N1,87481,Sortie #87481,https://biolit.fr/sorties/sortie-87481/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Siponcle-1-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7026030000000,-1.84743000000000,,Rochers de la plage de Port Mer,87496,Observation #87496,https://biolit.fr/observations/observation-87496/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ponte-de-pourpre-scaled.jpg,,,Identifiable +N1,87481,Sortie #87481,https://biolit.fr/sorties/sortie-87481/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Siponcle-1-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7026030000000,-1.84743000000000,,Rochers de la plage de Port Mer,87498,Observation #87498,https://biolit.fr/observations/observation-87498/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indeterminee-scaled.jpg,,,non-identifiable +N1,87481,Sortie #87481,https://biolit.fr/sorties/sortie-87481/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Littorine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nephtis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Nereis-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Palourde-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Patelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/ponte-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Siponcle-1-scaled.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7026030000000,-1.84743000000000,,Rochers de la plage de Port Mer,87500,Observation #87500,https://biolit.fr/observations/observation-87500/,Aspidosiphon muelleri,Siponcle commensal,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/02/Siponcle-1-scaled.jpg,,,Identifiable +N1,87505,Sortie #87505,https://biolit.fr/sorties/sortie-87505/,Lam Evlyn,https://biolit.fr/wp-content/uploads/jet-form-builder/bfe1f1f95fd7dd2fca523a5db473bfdd/2025/02/F44C8C8C-C334-456C-9FA2-E65614A52916-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/bfe1f1f95fd7dd2fca523a5db473bfdd/2025/02/CFDDEC2A-27DF-40CD-8AE5-4D5289181CE7-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/bfe1f1f95fd7dd2fca523a5db473bfdd/2025/02/AC69AD18-F079-4398-9236-2B348BEE57FC-scaled.jpeg,2/27/2025 0:00,15.0:12,17.0:12,41.5211040000000,8.88124500000000,,Corse,,,,,,,,,, +N1,87510,Sortie #87510,https://biolit.fr/sorties/sortie-87510/,Lam Evlyn,https://biolit.fr/wp-content/uploads/jet-form-builder/bfe1f1f95fd7dd2fca523a5db473bfdd/2025/02/012AD1E1-D06A-469E-AF7E-C0240B0B7A08-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/bfe1f1f95fd7dd2fca523a5db473bfdd/2025/02/D024183A-9AED-464A-98A1-4B70B202E684-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/bfe1f1f95fd7dd2fca523a5db473bfdd/2025/02/A4D773E2-49FB-4686-8D68-5051069D5790-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/bfe1f1f95fd7dd2fca523a5db473bfdd/2025/02/1AE60D83-2901-417C-9778-E6D50F2F1FE7-scaled.jpeg,2/27/2025 0:00,13.0:17,16.0:17,41.5219330000000,8.88193100000000,,Corse,87511,Observation #87511,https://biolit.fr/observations/observation-87511/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/bfe1f1f95fd7dd2fca523a5db473bfdd/2025/02/012AD1E1-D06A-469E-AF7E-C0240B0B7A08-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/bfe1f1f95fd7dd2fca523a5db473bfdd/2025/02/D024183A-9AED-464A-98A1-4B70B202E684-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/bfe1f1f95fd7dd2fca523a5db473bfdd/2025/02/A4D773E2-49FB-4686-8D68-5051069D5790-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/bfe1f1f95fd7dd2fca523a5db473bfdd/2025/02/1AE60D83-2901-417C-9778-E6D50F2F1FE7-scaled.jpeg,,TRUE,Identifiable +N1,87632,Sortie #87632,https://biolit.fr/sorties/sortie-87632/,DELEUIL Aurélie,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5289-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5290-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5291-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5292-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5293-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5293-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5295-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5296-scaled.jpeg,11/18/2024 0:00,10.0000000,11.0000000,43.319296,5.4820860,AIEJE,FORTIN,,,,,,,,,, +N1,87641,Sortie #87641,https://biolit.fr/sorties/sortie-87641/,DELEUIL Aurélie,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5289-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5290-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5291-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5292-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5293-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5294-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5295-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5296-1-scaled.jpeg,11/18/2024 0:00,10.0000000,11.0000000,43.319296,5.4820860,AIEJE,FORTIN,,,,,,,,,, +N1,87650,Sortie #87650,https://biolit.fr/sorties/sortie-87650/,DELEUIL Aurélie,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5289-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5290-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5291-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5292-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5293-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5294-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5295-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5296-2-scaled.jpeg,11/18/2024 0:00,10.0000000,11.0000000,43.3576320000000,5.29019300000000,AIEJE,FORTIN,87651,Observation #87651,https://biolit.fr/observations/observation-87651/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5289-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5290-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5291-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5292-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5293-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5294-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5295-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5296-2-scaled.jpeg,,FALSE,Ne sais pas +N1,87650,Sortie #87650,https://biolit.fr/sorties/sortie-87650/,DELEUIL Aurélie,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5289-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5290-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5291-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5292-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5293-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5294-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5295-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5296-2-scaled.jpeg,11/18/2024 0:00,10.0000000,11.0000000,43.3576320000000,5.29019300000000,AIEJE,FORTIN,91233,Observation #91233,https://biolit.fr/observations/observation-91233/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5291-2-scaled.jpeg,,FALSE,Identifiable +N1,87650,Sortie #87650,https://biolit.fr/sorties/sortie-87650/,DELEUIL Aurélie,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5289-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5290-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5291-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5292-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5293-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5294-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5295-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5296-2-scaled.jpeg,11/18/2024 0:00,10.0000000,11.0000000,43.3576320000000,5.29019300000000,AIEJE,FORTIN,91236,Observation #91236,https://biolit.fr/observations/observation-91236/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5292-2-scaled.jpeg,,,Identifiable +N1,87650,Sortie #87650,https://biolit.fr/sorties/sortie-87650/,DELEUIL Aurélie,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5289-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5290-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5291-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5292-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5293-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5294-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5295-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5296-2-scaled.jpeg,11/18/2024 0:00,10.0000000,11.0000000,43.3576320000000,5.29019300000000,AIEJE,FORTIN,91238,Observation #91238,https://biolit.fr/observations/observation-91238/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5293-3-scaled.jpeg,,TRUE,Identifiable +N1,87650,Sortie #87650,https://biolit.fr/sorties/sortie-87650/,DELEUIL Aurélie,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5289-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5290-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5291-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5292-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5293-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5294-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5295-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5296-2-scaled.jpeg,11/18/2024 0:00,10.0000000,11.0000000,43.3576320000000,5.29019300000000,AIEJE,FORTIN,91240,Observation #91240,https://biolit.fr/observations/observation-91240/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5296-2-scaled.jpeg,,,Identifiable +N1,87650,Sortie #87650,https://biolit.fr/sorties/sortie-87650/,DELEUIL Aurélie,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5289-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5290-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5291-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5292-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5293-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5294-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5295-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5296-2-scaled.jpeg,11/18/2024 0:00,10.0000000,11.0000000,43.3576320000000,5.29019300000000,AIEJE,FORTIN,91242,Observation #91242,https://biolit.fr/observations/observation-91242/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5290-2-scaled.jpeg,,,Ne sais pas +N1,87650,Sortie #87650,https://biolit.fr/sorties/sortie-87650/,DELEUIL Aurélie,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5289-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5290-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5291-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5292-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5293-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5294-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5295-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5296-2-scaled.jpeg,11/18/2024 0:00,10.0000000,11.0000000,43.3576320000000,5.29019300000000,AIEJE,FORTIN,91244,Observation #91244,https://biolit.fr/observations/observation-91244/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5294-2-scaled.jpeg,,,Ne sais pas +N1,87650,Sortie #87650,https://biolit.fr/sorties/sortie-87650/,DELEUIL Aurélie,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5289-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5290-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5291-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5292-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5293-3-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5294-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5295-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5296-2-scaled.jpeg,11/18/2024 0:00,10.0000000,11.0000000,43.3576320000000,5.29019300000000,AIEJE,FORTIN,91246,Observation #91246,https://biolit.fr/observations/observation-91246/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/144943d97c36b9613799f64d4a51620f/2025/03/IMG_5295-2-scaled.jpeg,,,non-identifiable +N1,87657,Sortie #87657,https://biolit.fr/sorties/sortie-87657/,Bigoin Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_1128581-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_1129461-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_1130531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_1130571-scaled.jpg,03/01/2025,10.000005,11.000003,47.1365370000000,-2.246103000000,,Pointe Saint-Gildas,87658,Observation #87658,https://biolit.fr/observations/observation-87658/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_1128581-scaled.jpg,,TRUE,Identifiable +N1,87657,Sortie #87657,https://biolit.fr/sorties/sortie-87657/,Bigoin Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_1128581-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_1129461-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_1130531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_1130571-scaled.jpg,03/01/2025,10.000005,11.000003,47.1365370000000,-2.246103000000,,Pointe Saint-Gildas,87660,Observation #87660,https://biolit.fr/observations/observation-87660/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_1129461-scaled.jpg,,TRUE,Identifiable +N1,87657,Sortie #87657,https://biolit.fr/sorties/sortie-87657/,Bigoin Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_1128581-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_1129461-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_1130531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_1130571-scaled.jpg,03/01/2025,10.000005,11.000003,47.1365370000000,-2.246103000000,,Pointe Saint-Gildas,87662,Observation #87662,https://biolit.fr/observations/observation-87662/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_1130531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_1130571-scaled.jpg,,TRUE,Identifiable +N1,87677,Sortie #87677,https://biolit.fr/sorties/sortie-87677/,michele.lebascle,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image0.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image61-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image6-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image9-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image101-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image121-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image12-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image3-rotated.jpeg,03/01/2025,10.0000000,11.000003,47.1319830000000,-2.24848900000000,,Pointe Saint Gildas Préfailles,87682,Observation #87682,https://biolit.fr/observations/observation-87682/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image0.jpeg,,TRUE,Identifiable +N1,87677,Sortie #87677,https://biolit.fr/sorties/sortie-87677/,michele.lebascle,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image0.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image61-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image6-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image9-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image101-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image121-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image12-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image3-rotated.jpeg,03/01/2025,10.0000000,11.000003,47.1319830000000,-2.24848900000000,,Pointe Saint Gildas Préfailles,87685,Observation #87685,https://biolit.fr/observations/observation-87685/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image1.jpeg,,TRUE,Identifiable +N1,87677,Sortie #87677,https://biolit.fr/sorties/sortie-87677/,michele.lebascle,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image0.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image61-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image6-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image9-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image101-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image121-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image12-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image3-rotated.jpeg,03/01/2025,10.0000000,11.000003,47.1319830000000,-2.24848900000000,,Pointe Saint Gildas Préfailles,87692,Observation #87692,https://biolit.fr/observations/observation-87692/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image2.jpeg,,TRUE,Identifiable +N1,87677,Sortie #87677,https://biolit.fr/sorties/sortie-87677/,michele.lebascle,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image0.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image61-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image6-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image9-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image101-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image121-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image12-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image3-rotated.jpeg,03/01/2025,10.0000000,11.000003,47.1319830000000,-2.24848900000000,,Pointe Saint Gildas Préfailles,87694,Observation #87694,https://biolit.fr/observations/observation-87694/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image61-rotated.jpeg,,TRUE,Identifiable +N1,87677,Sortie #87677,https://biolit.fr/sorties/sortie-87677/,michele.lebascle,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image0.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image61-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image6-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image9-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image101-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image121-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image12-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image3-rotated.jpeg,03/01/2025,10.0000000,11.000003,47.1319830000000,-2.24848900000000,,Pointe Saint Gildas Préfailles,87708,Observation #87708,https://biolit.fr/observations/observation-87708/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image9-rotated.jpeg,,TRUE,Identifiable +N1,87677,Sortie #87677,https://biolit.fr/sorties/sortie-87677/,michele.lebascle,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image0.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image61-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image6-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image9-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image101-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image121-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image12-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image3-rotated.jpeg,03/01/2025,10.0000000,11.000003,47.1319830000000,-2.24848900000000,,Pointe Saint Gildas Préfailles,87710,Observation #87710,https://biolit.fr/observations/observation-87710/,Littorina fabalis,Littorine fabalis,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image10.jpeg,,TRUE,Identifiable +N1,87677,Sortie #87677,https://biolit.fr/sorties/sortie-87677/,michele.lebascle,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image0.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image61-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image6-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image9-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image101-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image121-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image12-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image3-rotated.jpeg,03/01/2025,10.0000000,11.000003,47.1319830000000,-2.24848900000000,,Pointe Saint Gildas Préfailles,87714,Observation #87714,https://biolit.fr/observations/observation-87714/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image121-rotated.jpeg,,TRUE,Identifiable +N1,87677,Sortie #87677,https://biolit.fr/sorties/sortie-87677/,michele.lebascle,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image0.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image61-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image6-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image9-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image101-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image121-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image12-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image3-rotated.jpeg,03/01/2025,10.0000000,11.000003,47.1319830000000,-2.24848900000000,,Pointe Saint Gildas Préfailles,87716,Observation #87716,https://biolit.fr/observations/observation-87716/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image12-rotated.jpeg,,TRUE,Identifiable +N1,87677,Sortie #87677,https://biolit.fr/sorties/sortie-87677/,michele.lebascle,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image0.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image61-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image6-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image9-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image101-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image121-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image12-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image3-rotated.jpeg,03/01/2025,10.0000000,11.000003,47.1319830000000,-2.24848900000000,,Pointe Saint Gildas Préfailles,87745,Observation #87745,https://biolit.fr/observations/observation-87745/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg,,TRUE,Identifiable +N1,87677,Sortie #87677,https://biolit.fr/sorties/sortie-87677/,michele.lebascle,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image0.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image61-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image6-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image9-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image101-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image121-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image12-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image3-rotated.jpeg,03/01/2025,10.0000000,11.000003,47.1319830000000,-2.24848900000000,,Pointe Saint Gildas Préfailles,87747,Observation #87747,https://biolit.fr/observations/observation-87747/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image6-rotated.jpeg,,TRUE,Identifiable +N1,87677,Sortie #87677,https://biolit.fr/sorties/sortie-87677/,michele.lebascle,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image0.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image61-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image6-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image9-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image101-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image121-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image12-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image3-rotated.jpeg,03/01/2025,10.0000000,11.000003,47.1319830000000,-2.24848900000000,,Pointe Saint Gildas Préfailles,87749,Observation #87749,https://biolit.fr/observations/observation-87749/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image101-rotated.jpeg,,TRUE,Identifiable +N1,87677,Sortie #87677,https://biolit.fr/sorties/sortie-87677/,michele.lebascle,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image0.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image61-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image6-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image9-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image101-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image121-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image12-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image3-rotated.jpeg,03/01/2025,10.0000000,11.000003,47.1319830000000,-2.24848900000000,,Pointe Saint Gildas Préfailles,87751,Observation #87751,https://biolit.fr/observations/observation-87751/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg,,TRUE,Identifiable +N1,87677,Sortie #87677,https://biolit.fr/sorties/sortie-87677/,michele.lebascle,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image0.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image61-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image6-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image9-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image101-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image121-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image12-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image3-rotated.jpeg,03/01/2025,10.0000000,11.000003,47.1319830000000,-2.24848900000000,,Pointe Saint Gildas Préfailles,87753,Observation #87753,https://biolit.fr/observations/observation-87753/,Pelvetia canaliculata,Pelvétie,,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg,,,Identifiable +N1,87677,Sortie #87677,https://biolit.fr/sorties/sortie-87677/,michele.lebascle,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image0.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image4-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image61-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image6-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image9-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image101-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image10.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image121-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image12-rotated.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image3-rotated.jpeg,03/01/2025,10.0000000,11.000003,47.1319830000000,-2.24848900000000,,Pointe Saint Gildas Préfailles,87755,Observation #87755,https://biolit.fr/observations/observation-87755/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/jet-form-builder/d23f2fe599c3108e47fc5ac7dadd009d/2025/03/image3-rotated.jpeg,,TRUE,Identifiable +N1,87681,Sortie #87681,https://biolit.fr/sorties/sortie-87681/,Bigoin Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_111137-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_104529-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_104840.jpg,03/01/2025,10.000005,11.000003,47.1369280000000,-2.24770000000000,,Pointe Saint-Gildas,87684,Observation #87684,https://biolit.fr/observations/observation-87684/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_111137-scaled.jpg,,TRUE,Identifiable +N1,87681,Sortie #87681,https://biolit.fr/sorties/sortie-87681/,Bigoin Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_111137-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_104529-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_104840.jpg,03/01/2025,10.000005,11.000003,47.1369280000000,-2.24770000000000,,Pointe Saint-Gildas,87688,Observation #87688,https://biolit.fr/observations/observation-87688/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_104529-scaled.jpg,,TRUE,Identifiable +N1,87681,Sortie #87681,https://biolit.fr/sorties/sortie-87681/,Bigoin Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_111137-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_104529-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_104840.jpg,03/01/2025,10.000005,11.000003,47.1369280000000,-2.24770000000000,,Pointe Saint-Gildas,87690,Observation #87690,https://biolit.fr/observations/observation-87690/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_104840.jpg,,TRUE,Identifiable +N1,87707,Sortie #87707,https://biolit.fr/sorties/sortie-87707/,BOUDAUD Marie,https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/WhatsApp-Image-2025-03-01-a-18.02.57_bd11962b.jpg,03/01/2025,10.000005,11.0000000,47.1362130000000,-2.24626100000000,,Pointe Saint Gildas,87712,Observation #87712,https://biolit.fr/observations/observation-87712/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0008.jpg,,TRUE,Identifiable +N1,87707,Sortie #87707,https://biolit.fr/sorties/sortie-87707/,BOUDAUD Marie,https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/WhatsApp-Image-2025-03-01-a-18.02.57_bd11962b.jpg,03/01/2025,10.000005,11.0000000,47.1362130000000,-2.24626100000000,,Pointe Saint Gildas,87718,Observation #87718,https://biolit.fr/observations/observation-87718/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0015.jpg,,TRUE,Identifiable +N1,87707,Sortie #87707,https://biolit.fr/sorties/sortie-87707/,BOUDAUD Marie,https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/WhatsApp-Image-2025-03-01-a-18.02.57_bd11962b.jpg,03/01/2025,10.000005,11.0000000,47.1362130000000,-2.24626100000000,,Pointe Saint Gildas,87720,Observation #87720,https://biolit.fr/observations/observation-87720/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0016.jpg,,TRUE,Identifiable +N1,87707,Sortie #87707,https://biolit.fr/sorties/sortie-87707/,BOUDAUD Marie,https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/WhatsApp-Image-2025-03-01-a-18.02.57_bd11962b.jpg,03/01/2025,10.000005,11.0000000,47.1362130000000,-2.24626100000000,,Pointe Saint Gildas,87724,Observation #87724,https://biolit.fr/observations/observation-87724/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0018.jpg,,TRUE,Identifiable +N1,87707,Sortie #87707,https://biolit.fr/sorties/sortie-87707/,BOUDAUD Marie,https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0014.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/WhatsApp-Image-2025-03-01-a-18.02.57_bd11962b.jpg,03/01/2025,10.000005,11.0000000,47.1362130000000,-2.24626100000000,,Pointe Saint Gildas,87739,Observation #87739,https://biolit.fr/observations/observation-87739/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/cc7bd83892cfa319998b243b4cb09841/2025/03/IMG-20250301-WA0017.jpg,,TRUE,Ne sais pas +N1,87727,Sortie #87727,https://biolit.fr/sorties/sortie-87727/,Bigoin Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_105435.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_105435-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_104529-1-scaled.jpg,03/01/2015,10.000005,11.000003,47.1331040000000,-2.2465670000000,,Pointe Saint-Gildas,87728,Observation #87728,https://biolit.fr/observations/observation-87728/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_105435.jpg,,TRUE,Identifiable +N1,87727,Sortie #87727,https://biolit.fr/sorties/sortie-87727/,Bigoin Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_105435.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_105435-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_104529-1-scaled.jpg,03/01/2015,10.000005,11.000003,47.1331040000000,-2.2465670000000,,Pointe Saint-Gildas,87730,Observation #87730,https://biolit.fr/observations/observation-87730/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_104529-1-scaled.jpg,,TRUE,Identifiable +N1,87738,Sortie #87738,https://biolit.fr/sorties/sortie-87738/,Bigoin Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_111137-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_105435-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_111419-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_105441.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_104529-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_104840-1.jpg,03/01/2025,10.0000000,11.000003,47.136384000000,-2.24555400000000,,Pointe Saint-Gildas,,,,,,,,,, +N1,87742,Sortie #87742,https://biolit.fr/sorties/sortie-87742/,Bigoin Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_111419-1-scaled.jpg,03/01/2025,10.0000000,11.000003,47.1362890000000,-2.24574300000000,,Pointe Saint-Gildas,87743,Observation #87743,https://biolit.fr/observations/observation-87743/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/61b061051b8d9e39d3e9fa8c846428ee/2025/03/20250301_111419-1-scaled.jpg,,TRUE,Identifiable +N1,87765,Sortie #87765,https://biolit.fr/sorties/sortie-87765/,LECLERCQ Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_145917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_152618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153309-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153335-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153350-scaled.jpg,03/02/2023,14.0000000,16.0000000,49.2969510000000,-0.296803000000000,,Hermanville sur Mer,87766,Observation #87766,https://biolit.fr/observations/observation-87766/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_145917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150543-scaled.jpg,,,Ne sais pas +N1,87765,Sortie #87765,https://biolit.fr/sorties/sortie-87765/,LECLERCQ Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_145917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_152618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153309-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153335-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153350-scaled.jpg,03/02/2023,14.0000000,16.0000000,49.2969510000000,-0.296803000000000,,Hermanville sur Mer,87768,Observation #87768,https://biolit.fr/observations/observation-87768/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153309-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153335-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153350-scaled.jpg,,,Identifiable +N1,87765,Sortie #87765,https://biolit.fr/sorties/sortie-87765/,LECLERCQ Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_145917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_152618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153309-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153335-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153350-scaled.jpg,03/02/2023,14.0000000,16.0000000,49.2969510000000,-0.296803000000000,,Hermanville sur Mer,87770,Observation #87770,https://biolit.fr/observations/observation-87770/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150152-scaled.jpg,,,Ne sais pas +N1,87765,Sortie #87765,https://biolit.fr/sorties/sortie-87765/,LECLERCQ Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_145917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_152618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153309-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153335-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153350-scaled.jpg,03/02/2023,14.0000000,16.0000000,49.2969510000000,-0.296803000000000,,Hermanville sur Mer,87772,Observation #87772,https://biolit.fr/observations/observation-87772/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150543-scaled.jpg,,,Ne sais pas +N1,87765,Sortie #87765,https://biolit.fr/sorties/sortie-87765/,LECLERCQ Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_145917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_152618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153309-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153335-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153350-scaled.jpg,03/02/2023,14.0000000,16.0000000,49.2969510000000,-0.296803000000000,,Hermanville sur Mer,87774,Observation #87774,https://biolit.fr/observations/observation-87774/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_152618-scaled.jpg,,,Identifiable +N1,87765,Sortie #87765,https://biolit.fr/sorties/sortie-87765/,LECLERCQ Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_145917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_152618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153309-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153335-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153350-scaled.jpg,03/02/2023,14.0000000,16.0000000,49.2969510000000,-0.296803000000000,,Hermanville sur Mer,87776,Observation #87776,https://biolit.fr/observations/observation-87776/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153335-scaled.jpg,,,Identifiable +N1,87765,Sortie #87765,https://biolit.fr/sorties/sortie-87765/,LECLERCQ Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_145917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_150543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_152618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153309-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153335-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153350-scaled.jpg,03/02/2023,14.0000000,16.0000000,49.2969510000000,-0.296803000000000,,Hermanville sur Mer,87778,Observation #87778,https://biolit.fr/observations/observation-87778/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250302_153344-scaled.jpg,,,Identifiable +N1,88051,Sortie #88051,https://biolit.fr/sorties/sortie-88051/,capelle Jérémy,https://biolit.fr/wp-content/uploads/jet-form-builder/f95f22645f154241b28ebe19f2ea2115/2025/03/1000030055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f95f22645f154241b28ebe19f2ea2115/2025/03/1000030032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f95f22645f154241b28ebe19f2ea2115/2025/03/1000030056-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f95f22645f154241b28ebe19f2ea2115/2025/03/1000030023-scaled.jpg,2/27/2025 0:00,16.0000000,17.0000000,49.7227670000000,-1.91054500000000,Planète Mer,Havre de Bombec,88052,Observation #88052,https://biolit.fr/observations/observation-88052/,Tritia reticulata,Ponte de nasse réticulée,,https://biolit.fr/wp-content/uploads/jet-form-builder/f95f22645f154241b28ebe19f2ea2115/2025/03/1000030055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f95f22645f154241b28ebe19f2ea2115/2025/03/1000030032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f95f22645f154241b28ebe19f2ea2115/2025/03/1000030056-scaled.jpg,,TRUE,Identifiable +N1,88055,Sortie #88055,https://biolit.fr/sorties/sortie-88055/,Boucher Patrick,https://biolit.fr/wp-content/uploads/jet-form-builder/df8f05bd0681ee898207ad18dfc7783e/2025/03/IMG_20250302_163630-scaled.jpg,02/03/2025,16.0:15,16.0:15,48.6485960000000,-2.30249400000000,,Port de Saint Géran,88056,Observation #88056,https://biolit.fr/observations/observation-88056/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/df8f05bd0681ee898207ad18dfc7783e/2025/03/IMG_20250302_163630-scaled.jpg,,TRUE,Ne sais pas +N1,88063,Sortie #88063,https://biolit.fr/sorties/sortie-88063/,LALICHE FLORA,https://biolit.fr/wp-content/uploads/jet-form-builder/100d43d357668a96abad5cb15ae21d59/2025/03/IMG20250228112719-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/100d43d357668a96abad5cb15ae21d59/2025/03/IMG20250228112356-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/100d43d357668a96abad5cb15ae21d59/2025/03/IMG20250228112354-scaled.jpg,2/28/2025 0:00,10.0000000,12.0000000,43.2735050000000,5.36182000000000,,Plage du prophète,88064,Observation #88064,https://biolit.fr/observations/observation-88064/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/100d43d357668a96abad5cb15ae21d59/2025/03/IMG20250228112354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/100d43d357668a96abad5cb15ae21d59/2025/03/IMG20250228112356-scaled.jpg,,TRUE,Ne sais pas +N1,88063,Sortie #88063,https://biolit.fr/sorties/sortie-88063/,LALICHE FLORA,https://biolit.fr/wp-content/uploads/jet-form-builder/100d43d357668a96abad5cb15ae21d59/2025/03/IMG20250228112719-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/100d43d357668a96abad5cb15ae21d59/2025/03/IMG20250228112356-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/100d43d357668a96abad5cb15ae21d59/2025/03/IMG20250228112354-scaled.jpg,2/28/2025 0:00,10.0000000,12.0000000,43.2735050000000,5.36182000000000,,Plage du prophète,88066,Observation #88066,https://biolit.fr/observations/observation-88066/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/100d43d357668a96abad5cb15ae21d59/2025/03/IMG20250228112719-scaled.jpg,,,Ne sais pas +N1,88069,Sortie #88069,https://biolit.fr/sorties/sortie-88069/,Céline,https://biolit.fr/wp-content/uploads/jet-form-builder/a124436f212872e36bd7cc12bfe0fd03/2025/03/IMG_3226-scaled.jpeg,2/28/2025 0:00,13.0:25,13.0000000,43.1098130000000,5.8132270000000,,Plage de sanary,88070,Observation #88070,https://biolit.fr/observations/observation-88070/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a124436f212872e36bd7cc12bfe0fd03/2025/03/IMG_3226-scaled.jpeg,,TRUE,Identifiable +N1,88075,Sortie #88075,https://biolit.fr/sorties/sortie-88075/,LECLERCQ Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250303_181137-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250303_181121-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250303_181609-scaled.jpg,03/03/2025,18.0000000,19.0000000,49.2969510000000,-0.296803000000000,,Hermanville sur Mer,88076,Observation #88076,https://biolit.fr/observations/observation-88076/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250303_181609-scaled.jpg,,,Identifiable +N1,88075,Sortie #88075,https://biolit.fr/sorties/sortie-88075/,LECLERCQ Fabrice,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250303_181137-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250303_181121-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250303_181609-scaled.jpg,03/03/2025,18.0000000,19.0000000,49.2969510000000,-0.296803000000000,,Hermanville sur Mer,88078,Observation #88078,https://biolit.fr/observations/observation-88078/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/999dd555d1f8d385bc830164cfe97883/2025/03/20250303_181121-scaled.jpg,,,Identifiable +N1,88124,Sortie #88124,https://biolit.fr/sorties/sortie-88124/,Loisel Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054623-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054633-scaled.jpg,2/22/2025 0:00,14.0000000,15.0000000,43.0973840000000,3.11320500000000,,Plage des chalets,88125,Observation #88125,https://biolit.fr/observations/observation-88125/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054623-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054704-scaled.jpg,,TRUE,Identifiable +N1,88124,Sortie #88124,https://biolit.fr/sorties/sortie-88124/,Loisel Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054623-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054633-scaled.jpg,2/22/2025 0:00,14.0000000,15.0000000,43.0973840000000,3.11320500000000,,Plage des chalets,88127,Observation #88127,https://biolit.fr/observations/observation-88127/,Brissus unicolor,Oursin de sable gris,,https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054632-scaled.jpg,,,Identifiable +N1,88124,Sortie #88124,https://biolit.fr/sorties/sortie-88124/,Loisel Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054623-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054633-scaled.jpg,2/22/2025 0:00,14.0000000,15.0000000,43.0973840000000,3.11320500000000,,Plage des chalets,88132,Observation #88132,https://biolit.fr/observations/observation-88132/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/jet-form-builder/b8e07cba3922df6c47f40149275030ca/2025/03/1000054633-scaled.jpg,,,Identifiable +N1,88135,Sortie #88135,https://biolit.fr/sorties/sortie-88135/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine.jpg,2/27/2025 0:00,15.0000000,16.0000000,48.7026170000000,-1.847506000000,,Rochers de la plage de Port Mer,88136,Observation #88136,https://biolit.fr/observations/observation-88136/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine.jpg,,,non-identifiable +N1,88158,Sortie #88158,https://biolit.fr/sorties/sortie-88158/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeternimee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026140000000,-1.84734500000000,,Rochers de la plage de Port Mer,88159,Observation #88159,https://biolit.fr/observations/observation-88159/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeternimee-1-scaled.jpg,,,Identifiable +N1,88158,Sortie #88158,https://biolit.fr/sorties/sortie-88158/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeternimee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026140000000,-1.84734500000000,,Rochers de la plage de Port Mer,88161,Observation #88161,https://biolit.fr/observations/observation-88161/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-2-scaled.jpg,,TRUE,Identifiable +N1,88158,Sortie #88158,https://biolit.fr/sorties/sortie-88158/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeternimee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026140000000,-1.84734500000000,,Rochers de la plage de Port Mer,88163,Observation #88163,https://biolit.fr/observations/observation-88163/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-scaled.jpg,,TRUE,Identifiable +N1,88158,Sortie #88158,https://biolit.fr/sorties/sortie-88158/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeternimee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026140000000,-1.84734500000000,,Rochers de la plage de Port Mer,88165,Observation #88165,https://biolit.fr/observations/observation-88165/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-2-scaled.jpg,,TRUE,Identifiable +N1,88158,Sortie #88158,https://biolit.fr/sorties/sortie-88158/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeternimee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026140000000,-1.84734500000000,,Rochers de la plage de Port Mer,88167,Observation #88167,https://biolit.fr/observations/observation-88167/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-2-scaled.jpg,,, +N1,88158,Sortie #88158,https://biolit.fr/sorties/sortie-88158/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeternimee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026140000000,-1.84734500000000,,Rochers de la plage de Port Mer,88170,Observation #88170,https://biolit.fr/observations/observation-88170/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-2-scaled.jpg,,TRUE,Identifiable +N1,88158,Sortie #88158,https://biolit.fr/sorties/sortie-88158/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeternimee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026140000000,-1.84734500000000,,Rochers de la plage de Port Mer,88172,Observation #88172,https://biolit.fr/observations/observation-88172/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-2-scaled.jpg,,,Identifiable +N1,88158,Sortie #88158,https://biolit.fr/sorties/sortie-88158/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeternimee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026140000000,-1.84734500000000,,Rochers de la plage de Port Mer,88174,Observation #88174,https://biolit.fr/observations/observation-88174/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-1-scaled.jpg,,TRUE,Identifiable +N1,88158,Sortie #88158,https://biolit.fr/sorties/sortie-88158/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeternimee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026140000000,-1.84734500000000,,Rochers de la plage de Port Mer,88176,Observation #88176,https://biolit.fr/observations/observation-88176/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-scaled.jpg,,TRUE,Identifiable +N1,88158,Sortie #88158,https://biolit.fr/sorties/sortie-88158/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeternimee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026140000000,-1.84734500000000,,Rochers de la plage de Port Mer,88178,Observation #88178,https://biolit.fr/observations/observation-88178/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-scaled.jpg,,TRUE,Identifiable +N1,88158,Sortie #88158,https://biolit.fr/sorties/sortie-88158/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-indeternimee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-de-mer-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etoile-sherif-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026140000000,-1.84734500000000,,Rochers de la plage de Port Mer,88180,Observation #88180,https://biolit.fr/observations/observation-88180/,Nerophis ophidion,Nérophis ophidion,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-scaled.jpg,,TRUE,Identifiable +N1,88195,Sortie #88195,https://biolit.fr/sorties/sortie-88195/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026450000000,-1.84738200000000,,Rochers de la plage de Port Mer,88196,Observation #88196,https://biolit.fr/observations/observation-88196/,Aeolidia filomenae,Eolis de Filomène,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-4-scaled.jpg,,TRUE,Identifiable +N1,88195,Sortie #88195,https://biolit.fr/sorties/sortie-88195/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026450000000,-1.84738200000000,,Rochers de la plage de Port Mer,88198,Observation #88198,https://biolit.fr/observations/observation-88198/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-2-scaled.jpg,,,Identifiable +N1,88195,Sortie #88195,https://biolit.fr/sorties/sortie-88195/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026450000000,-1.84738200000000,,Rochers de la plage de Port Mer,88200,Observation #88200,https://biolit.fr/observations/observation-88200/,Patella caerulea,Patelle bleue,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Patelle-scaled.jpg,,,Identifiable +N1,88195,Sortie #88195,https://biolit.fr/sorties/sortie-88195/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026450000000,-1.84738200000000,,Rochers de la plage de Port Mer,88202,Observation #88202,https://biolit.fr/observations/observation-88202/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-2-scaled.jpg,,TRUE,Identifiable +N1,88195,Sortie #88195,https://biolit.fr/sorties/sortie-88195/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026450000000,-1.84738200000000,,Rochers de la plage de Port Mer,88204,Observation #88204,https://biolit.fr/observations/observation-88204/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-scaled.jpg,,TRUE,Identifiable +N1,88195,Sortie #88195,https://biolit.fr/sorties/sortie-88195/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026450000000,-1.84738200000000,,Rochers de la plage de Port Mer,88206,Observation #88206,https://biolit.fr/observations/observation-88206/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-scaled.jpg,,TRUE,Identifiable +N1,88195,Sortie #88195,https://biolit.fr/sorties/sortie-88195/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nudibranche-indetermine-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-scaled.jpg,03/04/2025,14.0:45,16.0000000,48.7026450000000,-1.84738200000000,,Rochers de la plage de Port Mer,88208,Observation #88208,https://biolit.fr/observations/observation-88208/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-scaled.jpg,,TRUE,Identifiable +N1,88223,Sortie #88223,https://biolit.fr/sorties/sortie-88223/,Breda Isabelle,https://biolit.fr/wp-content/uploads/jet-form-builder/25da241fd882fd548d4d15d20281188b/2025/03/IMG_0187-scaled.jpeg,2/28/2025 0:00,15.0000000,15.0:13,43.266356000000,6.69805500000000,,"Saint Tropez, cap des Salins",,,,,,,,,, +N1,88351,Sortie #88351,https://biolit.fr/sorties/sortie-88351/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/03/20250313_AnseSablette_MP-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/03/20250313_AnseSablette_MP-17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/03/20250313_AnseSablette_MP-39.jpg,3/13/2025 0:00,16.0000000,16.0000000,43.2369600000000,5.36039200000000,Planète Mer,Anse des Sablettes,88352,Observation #88352,https://biolit.fr/observations/observation-88352/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/03/20250313_AnseSablette_MP-17.jpg,,TRUE,Identifiable +N1,88351,Sortie #88351,https://biolit.fr/sorties/sortie-88351/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/03/20250313_AnseSablette_MP-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/03/20250313_AnseSablette_MP-17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/03/20250313_AnseSablette_MP-39.jpg,3/13/2025 0:00,16.0000000,16.0000000,43.2369600000000,5.36039200000000,Planète Mer,Anse des Sablettes,88357,Observation #88357,https://biolit.fr/observations/observation-88357/,Dictyota fasciola,Dictyote rubanée,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/03/20250313_AnseSablette_MP-39.jpg,,TRUE,Identifiable +N1,88356,Sortie #88356,https://biolit.fr/sorties/sortie-88356/,Poirier Vanessa,https://biolit.fr/wp-content/uploads/jet-form-builder/30f984dbfec0b554815d23b894e48ae5/2025/03/1000044288-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30f984dbfec0b554815d23b894e48ae5/2025/03/1000044286-scaled.jpg,3/13/2025 0:00,14.000009,16.000009,43.0585330000000,6.13260300000000,,Plage de l'Almanarre,88359,Observation #88359,https://biolit.fr/observations/observation-88359/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/30f984dbfec0b554815d23b894e48ae5/2025/03/1000044288-scaled.jpg,,TRUE,Identifiable +N1,88381,Sortie #88381,https://biolit.fr/sorties/sortie-88381/,SV,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5328-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5331-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3370-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3367-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3366-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3361-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3358-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3356-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3351-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3345-scaled.jpg,3/14/2025 0:00,14.0:15,16.0000000,43.2526510000000,3.30639700000000,Planète Mer,Plage Naturelle des Orpellières,88407,Observation #88407,https://biolit.fr/observations/observation-88407/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3345-scaled.jpg,,FALSE,non-identifiable +N1,88381,Sortie #88381,https://biolit.fr/sorties/sortie-88381/,SV,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5328-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5331-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3370-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3367-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3366-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3361-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3358-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3356-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3351-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3345-scaled.jpg,3/14/2025 0:00,14.0:15,16.0000000,43.2526510000000,3.30639700000000,Planète Mer,Plage Naturelle des Orpellières,88459,Observation #88459,https://biolit.fr/observations/observation-88459/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5311-scaled.jpg,,,Ne sais pas +N1,88381,Sortie #88381,https://biolit.fr/sorties/sortie-88381/,SV,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5328-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5331-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3370-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3367-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3366-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3361-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3358-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3356-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3351-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3345-scaled.jpg,3/14/2025 0:00,14.0:15,16.0000000,43.2526510000000,3.30639700000000,Planète Mer,Plage Naturelle des Orpellières,88536,Observation #88536,https://biolit.fr/observations/observation-88536/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3367-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3356-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3345-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3351-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3358-scaled.jpg,,,non-identifiable +N1,88381,Sortie #88381,https://biolit.fr/sorties/sortie-88381/,SV,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5328-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5331-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3370-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3367-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3366-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3361-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3358-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3356-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3351-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3345-scaled.jpg,3/14/2025 0:00,14.0:15,16.0000000,43.2526510000000,3.30639700000000,Planète Mer,Plage Naturelle des Orpellières,88538,Observation #88538,https://biolit.fr/observations/observation-88538/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3334-scaled.jpg,,,Identifiable +N1,88381,Sortie #88381,https://biolit.fr/sorties/sortie-88381/,SV,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5328-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5331-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3370-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3367-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3366-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3361-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3358-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3356-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3351-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3345-scaled.jpg,3/14/2025 0:00,14.0:15,16.0000000,43.2526510000000,3.30639700000000,Planète Mer,Plage Naturelle des Orpellières,88540,Observation #88540,https://biolit.fr/observations/observation-88540/,Magallana gigas / Ostrea edulis,Huître,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5318-scaled.jpg,,TRUE,Identifiable +N1,88381,Sortie #88381,https://biolit.fr/sorties/sortie-88381/,SV,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5328-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5331-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3370-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3367-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3366-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3361-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3358-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3356-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3351-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3345-scaled.jpg,3/14/2025 0:00,14.0:15,16.0000000,43.2526510000000,3.30639700000000,Planète Mer,Plage Naturelle des Orpellières,88542,Observation #88542,https://biolit.fr/observations/observation-88542/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5331-scaled.jpg,,,Ne sais pas +N1,88381,Sortie #88381,https://biolit.fr/sorties/sortie-88381/,SV,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5328-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5331-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3370-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3367-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3366-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3361-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3358-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3356-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3351-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3345-scaled.jpg,3/14/2025 0:00,14.0:15,16.0000000,43.2526510000000,3.30639700000000,Planète Mer,Plage Naturelle des Orpellières,88544,Observation #88544,https://biolit.fr/observations/observation-88544/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3388-scaled.jpg,,,Ne sais pas +N1,88381,Sortie #88381,https://biolit.fr/sorties/sortie-88381/,SV,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5328-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5331-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3370-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3367-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3366-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3361-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3358-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3356-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3351-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3345-scaled.jpg,3/14/2025 0:00,14.0:15,16.0000000,43.2526510000000,3.30639700000000,Planète Mer,Plage Naturelle des Orpellières,88546,Observation #88546,https://biolit.fr/observations/observation-88546/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3385-scaled.jpg,,,Ne sais pas +N1,88381,Sortie #88381,https://biolit.fr/sorties/sortie-88381/,SV,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5328-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5331-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3370-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3367-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3366-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3361-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3358-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3356-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3351-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3345-scaled.jpg,3/14/2025 0:00,14.0:15,16.0000000,43.2526510000000,3.30639700000000,Planète Mer,Plage Naturelle des Orpellières,88548,Observation #88548,https://biolit.fr/observations/observation-88548/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3366-scaled.jpg,,,Ne sais pas +N1,88381,Sortie #88381,https://biolit.fr/sorties/sortie-88381/,SV,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5311-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5313-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5318-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5328-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5331-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3385-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3370-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3367-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3366-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3361-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3358-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3356-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3351-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3345-scaled.jpg,3/14/2025 0:00,14.0:15,16.0000000,43.2526510000000,3.30639700000000,Planète Mer,Plage Naturelle des Orpellières,88550,Observation #88550,https://biolit.fr/observations/observation-88550/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5328-scaled.jpg,,,Identifiable +N1,88400,Sortie #88400,https://biolit.fr/sorties/sortie-88400/,SV,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5386-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3390-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3365-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_7160-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5326-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_3363-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5327-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_7178-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_7182-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5372-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_7157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5302-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5382-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5380-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/03/IMG_5381-scaled.jpg,3/14/2025 0:00,14.0:15,16.0000000,43.2526130000000,3.30653100000000,Planète Mer,Plage Naturelle des Orpellières,,,,,,,,,, +N1,88402,Sortie #88402,https://biolit.fr/sorties/sortie-88402/,chaigneau lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/0badbbb47bab13a88652bff7e564ad09/2025/03/ocean.jpg,6/18/2024 0:00,7.0:54,8.0:54,45.511674000000,-1.12215000000000,,Hourtin,,,,,,,,,, +N1,88415,Sortie #88415,https://biolit.fr/sorties/sortie-88415/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Huitre-creuse_Biolit-SAPAL_Seignosse-casernes-37-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Meduse_Rhizostoma-pulmo_Seignosse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Sargasse_Seignosse-1.jpg,3/14/2025 0:00,10.0000000,12.0000000,43.729924,-1.432475,Centre de la mer,Plage des casernes de Seignosse,88416,Observation #88416,https://biolit.fr/observations/observation-88416/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Huitre-creuse_Biolit-SAPAL_Seignosse-casernes-37-1-scaled.jpg,,TRUE,Identifiable +N1,88415,Sortie #88415,https://biolit.fr/sorties/sortie-88415/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Huitre-creuse_Biolit-SAPAL_Seignosse-casernes-37-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Meduse_Rhizostoma-pulmo_Seignosse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Sargasse_Seignosse-1.jpg,3/14/2025 0:00,10.0000000,12.0000000,43.729924,-1.432475,Centre de la mer,Plage des casernes de Seignosse,88418,Observation #88418,https://biolit.fr/observations/observation-88418/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Meduse_Rhizostoma-pulmo_Seignosse-1-scaled.jpg,,TRUE,Identifiable +N1,88415,Sortie #88415,https://biolit.fr/sorties/sortie-88415/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Huitre-creuse_Biolit-SAPAL_Seignosse-casernes-37-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Meduse_Rhizostoma-pulmo_Seignosse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Sargasse_Seignosse-1.jpg,3/14/2025 0:00,10.0000000,12.0000000,43.729924,-1.432475,Centre de la mer,Plage des casernes de Seignosse,96145,Observation #96145,https://biolit.fr/observations/observation-96145/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Sargasse_Seignosse-1.jpg,,TRUE,Identifiable +N1,88423,Sortie #88423,https://biolit.fr/sorties/sortie-88423/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Biolit-SAPAL_Seignosse-casernes-33-scaled.jpg,3/14/2025 0:00,10.0000000,12.0000000,43.729924,-1.432475,Centre de la mer,Plage des casernes de Seignosse,,,,,,,,,, +N1,88434,Sortie #88434,https://biolit.fr/sorties/sortie-88434/,Groupe addap13,https://biolit.fr/wp-content/uploads/jet-form-builder/15f9375534c08fa3299c57a76805f115/2025/03/20250314_143409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15f9375534c08fa3299c57a76805f115/2025/03/20250314_143418-scaled.jpg,3/14/2025 0:00,15.0:33,15.0:36,43.245506000000,5.36572400000000,Groupe Addap 13,Port de la pointe rouge,88436,Observation #88436,https://biolit.fr/observations/observation-88436/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/15f9375534c08fa3299c57a76805f115/2025/03/20250314_143409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/15f9375534c08fa3299c57a76805f115/2025/03/20250314_143418-scaled.jpg,,TRUE,Identifiable +N1,88553,Sortie #88553,https://biolit.fr/sorties/sortie-88553/,LPO Occitanie - Aude,https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2025/03/image00000011001.jpg,2/22/2025 0:00,15.0000000,15.000001,42.9391520000000,3.03662100000000,,La Franqui,88554,Observation #88554,https://biolit.fr/observations/observation-88554/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2025/03/image00000011001.jpg,,TRUE,Identifiable +N1,88559,Sortie #88559,https://biolit.fr/sorties/sortie-88559/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250311_155530-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250311_155534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250311_160406-scaled.jpg,03/11/2025,15.0000000,16.0000000,43.1238930000000,6.36249500000000,Observe la nature,Port de Bormes les Mimosas,88560,Observation #88560,https://biolit.fr/observations/observation-88560/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250311_155530-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250311_155534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250311_160406-scaled.jpg,,TRUE,Identifiable +N1,88559,Sortie #88559,https://biolit.fr/sorties/sortie-88559/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250311_155530-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250311_155534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250311_160406-scaled.jpg,03/11/2025,15.0000000,16.0000000,43.1238930000000,6.36249500000000,Observe la nature,Port de Bormes les Mimosas,88562,Observation #88562,https://biolit.fr/observations/observation-88562/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250311_155534-scaled.jpg,,TRUE,Identifiable +N1,88559,Sortie #88559,https://biolit.fr/sorties/sortie-88559/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250311_155530-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250311_155534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250311_160406-scaled.jpg,03/11/2025,15.0000000,16.0000000,43.1238930000000,6.36249500000000,Observe la nature,Port de Bormes les Mimosas,88564,Observation #88564,https://biolit.fr/observations/observation-88564/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250311_160406-scaled.jpg,,TRUE,Identifiable +N1,88568,Sortie #88568,https://biolit.fr/sorties/sortie-88568/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250315_1655501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250315_1655551-scaled.jpg,3/15/2025 0:00,16.0000000,17.0000000,41.468912000000,9.01825200000000,Observe la nature,Bruzzi,88569,Observation #88569,https://biolit.fr/observations/observation-88569/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250315_1655501-scaled.jpg,,TRUE,Identifiable +N1,88568,Sortie #88568,https://biolit.fr/sorties/sortie-88568/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250315_1655501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250315_1655551-scaled.jpg,3/15/2025 0:00,16.0000000,17.0000000,41.468912000000,9.01825200000000,Observe la nature,Bruzzi,88571,Observation #88571,https://biolit.fr/observations/observation-88571/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250315_1655551-scaled.jpg,,TRUE,Identifiable +N1,88568,Sortie #88568,https://biolit.fr/sorties/sortie-88568/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250315_1655501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250315_1655551-scaled.jpg,3/15/2025 0:00,16.0000000,17.0000000,41.468912000000,9.01825200000000,Observe la nature,Bruzzi,88573,Observation #88573,https://biolit.fr/observations/observation-88573/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6737384134b446c20bfdfec199a5df9a/2025/03/20250315_1655501-scaled.jpg,,TRUE,Identifiable +N1,88618,Sortie #88618,https://biolit.fr/sorties/sortie-88618/,Picard Claire,https://biolit.fr/wp-content/uploads/jet-form-builder/4693277998948f314020e603ce25f090/2025/03/1000001882.jpg,3/19/2025 0:00,9.0000000,10.0000000,43.3228800000000,6.66508900000000,,Sainte maxime,88619,Observation #88619,https://biolit.fr/observations/observation-88619/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/4693277998948f314020e603ce25f090/2025/03/1000001882.jpg,,TRUE,Ne sais pas +N1,88624,Sortie #88624,https://biolit.fr/sorties/sortie-88624/,Kevin Paris,https://biolit.fr/wp-content/uploads/jet-form-builder/20f5b8963f95fa15f87db5cfdd166039/2025/03/pro-TRGB2SLW-scaled.jpeg,3/16/2025 0:00,9.0:29,10.0:29,45.8555350000000,-1.22782400000000,,Le Grand Village Plage,,,,,,,,,, +N1,88646,Sortie #88646,https://biolit.fr/sorties/sortie-88646/,CAINJO Yoann,https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030878-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030881-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030884-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030887-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030889-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030894-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030896-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030898-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030899-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030900-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030902-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030904-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030905-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030912-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030915-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030918-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030930-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030933-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030937-scaled.jpg,3/16/2025 0:00,10.0000000,14.0000000,47.5569630000000,-2.95161800000000,Planète Mer,Plage de Locmariaquer,88647,Observation #88647,https://biolit.fr/observations/observation-88647/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030909-scaled.jpg,,TRUE,Identifiable +N1,88646,Sortie #88646,https://biolit.fr/sorties/sortie-88646/,CAINJO Yoann,https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030878-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030881-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030884-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030887-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030889-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030894-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030896-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030898-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030899-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030900-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030902-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030904-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030905-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030912-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030915-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030918-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030930-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030933-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030937-scaled.jpg,3/16/2025 0:00,10.0000000,14.0000000,47.5569630000000,-2.95161800000000,Planète Mer,Plage de Locmariaquer,88649,Observation #88649,https://biolit.fr/observations/observation-88649/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030902-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030933-scaled.jpg,,,Identifiable +N1,88646,Sortie #88646,https://biolit.fr/sorties/sortie-88646/,CAINJO Yoann,https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030878-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030881-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030884-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030887-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030889-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030894-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030896-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030898-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030899-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030900-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030902-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030904-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030905-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030912-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030915-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030918-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030930-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030933-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030937-scaled.jpg,3/16/2025 0:00,10.0000000,14.0000000,47.5569630000000,-2.95161800000000,Planète Mer,Plage de Locmariaquer,88651,Observation #88651,https://biolit.fr/observations/observation-88651/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030918-scaled.jpg,,,Identifiable +N1,88646,Sortie #88646,https://biolit.fr/sorties/sortie-88646/,CAINJO Yoann,https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030878-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030881-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030884-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030887-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030889-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030894-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030896-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030898-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030899-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030900-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030902-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030904-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030905-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030912-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030915-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030918-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030930-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030933-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030937-scaled.jpg,3/16/2025 0:00,10.0000000,14.0000000,47.5569630000000,-2.95161800000000,Planète Mer,Plage de Locmariaquer,88653,Observation #88653,https://biolit.fr/observations/observation-88653/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030878-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030884-scaled.jpg,,TRUE,Identifiable +N1,88646,Sortie #88646,https://biolit.fr/sorties/sortie-88646/,CAINJO Yoann,https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030878-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030881-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030884-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030887-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030889-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030894-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030896-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030898-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030899-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030900-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030902-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030904-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030905-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030912-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030915-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030918-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030930-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030933-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030937-scaled.jpg,3/16/2025 0:00,10.0000000,14.0000000,47.5569630000000,-2.95161800000000,Planète Mer,Plage de Locmariaquer,88655,Observation #88655,https://biolit.fr/observations/observation-88655/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030884-scaled.jpg,,TRUE,Identifiable +N1,88646,Sortie #88646,https://biolit.fr/sorties/sortie-88646/,CAINJO Yoann,https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030878-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030881-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030884-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030887-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030889-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030894-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030896-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030898-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030899-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030900-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030902-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030904-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030905-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030912-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030915-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030918-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030930-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030933-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030937-scaled.jpg,3/16/2025 0:00,10.0000000,14.0000000,47.5569630000000,-2.95161800000000,Planète Mer,Plage de Locmariaquer,88657,Observation #88657,https://biolit.fr/observations/observation-88657/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030905-scaled.jpg,,,Identifiable +N1,88646,Sortie #88646,https://biolit.fr/sorties/sortie-88646/,CAINJO Yoann,https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030878-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030881-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030884-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030887-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030889-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030894-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030896-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030898-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030899-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030900-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030902-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030904-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030905-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030909-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030912-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030915-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030918-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030930-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030933-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030937-scaled.jpg,3/16/2025 0:00,10.0000000,14.0000000,47.5569630000000,-2.95161800000000,Planète Mer,Plage de Locmariaquer,88659,Observation #88659,https://biolit.fr/observations/observation-88659/,Palaemon sp.,Crevette,,https://biolit.fr/wp-content/uploads/jet-form-builder/d6811d9ee1264ba62192298e1d8a3161/2025/03/P1030937-scaled.jpg,,TRUE,Identifiable +N1,88662,Sortie #88662,https://biolit.fr/sorties/sortie-88662/,BOISSEL PHILIPPE,https://biolit.fr/wp-content/uploads/jet-form-builder/11be3eb7adf79c85c6d8de5ae78c8b31/2025/03/52899731833_bbaed51508_c-1.jpg,4/21/2023 0:00,0.0000000,0.0000000,47.8071280000000,-4.37313800000000,,Penmarch,88663,Observation #88663,https://biolit.fr/observations/observation-88663/,Aeolidiella sanguinea,Eolis sanguine,,https://biolit.fr/wp-content/uploads/jet-form-builder/11be3eb7adf79c85c6d8de5ae78c8b31/2025/03/52899731833_bbaed51508_c-1.jpg,,TRUE, +N1,88702,Sortie #88702,https://biolit.fr/sorties/sortie-88702/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Amenome-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-1-scaled.jpg,3/18/2025 0:00,15.0000000,16.0000000,48.7025140000000,-1.84715200000000,,Rochers de la plage de Port Mer,88703,Observation #88703,https://biolit.fr/observations/observation-88703/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Amenome-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-parasite-3-scaled.jpg,,TRUE,Identifiable +N1,88702,Sortie #88702,https://biolit.fr/sorties/sortie-88702/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Amenome-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-1-scaled.jpg,3/18/2025 0:00,15.0000000,16.0000000,48.7025140000000,-1.84715200000000,,Rochers de la plage de Port Mer,88705,Observation #88705,https://biolit.fr/observations/observation-88705/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-1-scaled.jpg,,TRUE,Identifiable +N1,88702,Sortie #88702,https://biolit.fr/sorties/sortie-88702/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Amenome-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-1-scaled.jpg,3/18/2025 0:00,15.0000000,16.0000000,48.7025140000000,-1.84715200000000,,Rochers de la plage de Port Mer,88707,Observation #88707,https://biolit.fr/observations/observation-88707/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre1-scaled.jpg,,TRUE,Identifiable +N1,88702,Sortie #88702,https://biolit.fr/sorties/sortie-88702/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Amenome-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-1-scaled.jpg,3/18/2025 0:00,15.0000000,16.0000000,48.7025140000000,-1.84715200000000,,Rochers de la plage de Port Mer,88709,Observation #88709,https://biolit.fr/observations/observation-88709/,Axius stirhynchus,Axie stirhynque,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-3-scaled.jpg,,,Identifiable +N1,88702,Sortie #88702,https://biolit.fr/sorties/sortie-88702/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Amenome-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-1-scaled.jpg,3/18/2025 0:00,15.0000000,16.0000000,48.7025140000000,-1.84715200000000,,Rochers de la plage de Port Mer,88711,Observation #88711,https://biolit.fr/observations/observation-88711/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-orange-2-scaled.jpg,,,Identifiable +N1,88702,Sortie #88702,https://biolit.fr/sorties/sortie-88702/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Amenome-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-1-scaled.jpg,3/18/2025 0:00,15.0000000,16.0000000,48.7025140000000,-1.84715200000000,,Rochers de la plage de Port Mer,88713,Observation #88713,https://biolit.fr/observations/observation-88713/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etrille-2-scaled.jpg,,TRUE,Identifiable +N1,88702,Sortie #88702,https://biolit.fr/sorties/sortie-88702/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Amenome-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crabe-pierre1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crevette-vase-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-1-scaled.jpg,3/18/2025 0:00,15.0000000,16.0000000,48.7025140000000,-1.84715200000000,,Rochers de la plage de Port Mer,88715,Observation #88715,https://biolit.fr/observations/observation-88715/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Huitre-creuse-1-scaled.jpg,,,Identifiable +N1,88735,Sortie #88735,https://biolit.fr/sorties/sortie-88735/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-2-scaled.jpg,3/18/2025 0:00,15.0000000,16.0000000,48.7025640000000,-1.84715200000000,,Rochers de la plage de Port Mer,88736,Observation #88736,https://biolit.fr/observations/observation-88736/,Lepadogaster candolii,Porte-écuelle de Candolle,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-5-scaled.jpg,,,Identifiable +N1,88735,Sortie #88735,https://biolit.fr/sorties/sortie-88735/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-2-scaled.jpg,3/18/2025 0:00,15.0000000,16.0000000,48.7025640000000,-1.84715200000000,,Rochers de la plage de Port Mer,88738,Observation #88738,https://biolit.fr/observations/observation-88738/,Nerophis ophidion,Nérophis ophidion,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-1-scaled.jpg,,,Identifiable +N1,88735,Sortie #88735,https://biolit.fr/sorties/sortie-88735/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-2-scaled.jpg,3/18/2025 0:00,15.0000000,16.0000000,48.7025640000000,-1.84715200000000,,Rochers de la plage de Port Mer,88740,Observation #88740,https://biolit.fr/observations/observation-88740/,Ophiura albida,Ophiure blanche,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-3-scaled.jpg,,,Identifiable +N1,88735,Sortie #88735,https://biolit.fr/sorties/sortie-88735/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-2-scaled.jpg,3/18/2025 0:00,15.0000000,16.0000000,48.7025640000000,-1.84715200000000,,Rochers de la plage de Port Mer,88742,Observation #88742,https://biolit.fr/observations/observation-88742/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-2-1-scaled.jpg,,,Identifiable +N1,88735,Sortie #88735,https://biolit.fr/sorties/sortie-88735/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-2-scaled.jpg,3/18/2025 0:00,15.0000000,16.0000000,48.7025640000000,-1.84715200000000,,Rochers de la plage de Port Mer,88744,Observation #88744,https://biolit.fr/observations/observation-88744/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-scaled.jpg,,TRUE,Identifiable +N1,88735,Sortie #88735,https://biolit.fr/sorties/sortie-88735/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-2-scaled.jpg,3/18/2025 0:00,15.0000000,16.0000000,48.7025640000000,-1.84715200000000,,Rochers de la plage de Port Mer,88746,Observation #88746,https://biolit.fr/observations/observation-88746/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-scaled.jpg,,TRUE,Identifiable +N1,88735,Sortie #88735,https://biolit.fr/sorties/sortie-88735/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Lepadogaster-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nerophis-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiura-albida-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ophiure-fragile-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-2-scaled.jpg,3/18/2025 0:00,15.0000000,16.0000000,48.7025640000000,-1.84715200000000,,Rochers de la plage de Port Mer,88748,Observation #88748,https://biolit.fr/observations/observation-88748/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-2-scaled.jpg,,TRUE,Identifiable +N1,88772,Sortie #88772,https://biolit.fr/sorties/sortie-88772/,L Anne-Claire,https://biolit.fr/wp-content/uploads/jet-form-builder/ea440a201bba1fe7199fd3434999faff/2025/03/IMG_9464-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea440a201bba1fe7199fd3434999faff/2025/03/IMG_9455-scaled.jpeg,3/21/2025 0:00,16.0000000,16.0000000,43.0116080000000,3.06484200000000,,Port La Nouvelle,88773,Observation #88773,https://biolit.fr/observations/observation-88773/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/ea440a201bba1fe7199fd3434999faff/2025/03/IMG_9464-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea440a201bba1fe7199fd3434999faff/2025/03/IMG_9455-scaled.jpeg,,TRUE,Identifiable +N1,88780,Sortie #88780,https://biolit.fr/sorties/sortie-88780/,REYNAUD Véronique,https://biolit.fr/wp-content/uploads/jet-form-builder/216fd41a4772c62476510593f8d97439/2025/03/20250322_182014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/216fd41a4772c62476510593f8d97439/2025/03/20250322_181816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/216fd41a4772c62476510593f8d97439/2025/03/20250322_181610-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/216fd41a4772c62476510593f8d97439/2025/03/20250322_180113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/216fd41a4772c62476510593f8d97439/2025/03/20250322_175912-scaled.jpg,3/22/2025 0:00,17.000006,0.0000000,43.287762000000,3.51884500000000,,Grau d'Agde,88781,Observation #88781,https://biolit.fr/observations/observation-88781/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/216fd41a4772c62476510593f8d97439/2025/03/20250322_182014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/216fd41a4772c62476510593f8d97439/2025/03/20250322_181816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/216fd41a4772c62476510593f8d97439/2025/03/20250322_181610-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/216fd41a4772c62476510593f8d97439/2025/03/20250322_180113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/216fd41a4772c62476510593f8d97439/2025/03/20250322_175912-scaled.jpg,,TRUE,Identifiable +N1,88784,Sortie #88784,https://biolit.fr/sorties/sortie-88784/,pelisson alain,https://biolit.fr/wp-content/uploads/jet-form-builder/2b3fc413fde505512cb6bab18a0b00ca/2025/03/IMG_1136.jpg,3/23/2025 0:00,10.0000000,11.0000000,43.5219980000000,3.92220500000000,,palavas-les-flots,88785,Observation #88785,https://biolit.fr/observations/observation-88785/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/2b3fc413fde505512cb6bab18a0b00ca/2025/03/IMG_1136.jpg,,TRUE,Identifiable +N1,88790,Sortie #88790,https://biolit.fr/sorties/sortie-88790/,Di Costanzo Estelle,https://biolit.fr/wp-content/uploads/jet-form-builder/436631c2e65e66a3af3802f509b1e101/2025/03/WhatsApp-Image-2025-03-11-a-17.02.00_d3a6aff3.jpg,03/11/2025,13.0:56,16.0000000,43.0787040000000,6.12367600000000,Association Med.IA Nature,Plage Almanarre,88791,Observation #88791,https://biolit.fr/observations/observation-88791/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/436631c2e65e66a3af3802f509b1e101/2025/03/WhatsApp-Image-2025-03-11-a-17.02.00_d3a6aff3.jpg,,TRUE,Identifiable +N1,88794,Sortie #88794,https://biolit.fr/sorties/sortie-88794/,Di Costanzo Estelle,https://biolit.fr/wp-content/uploads/jet-form-builder/436631c2e65e66a3af3802f509b1e101/2025/03/WhatsApp-Image-2025-03-11-a-17.01.59_a3e86737.jpg,03/11/2025,13.0:32,15.0:32,43.0574120000000,6.13861100000000,Association Med.IA Nature,Plage Almanarre,88795,Observation #88795,https://biolit.fr/observations/observation-88795/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/436631c2e65e66a3af3802f509b1e101/2025/03/WhatsApp-Image-2025-03-11-a-17.01.59_a3e86737.jpg,,,Ne sais pas +N1,88885,Sortie #88885,https://biolit.fr/sorties/sortie-88885/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/huitre-creuse_Vieux-boucau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/identification-inconnue_Vieux-boucau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Sargasse-algue-brune_Vieux-boucau-2-scaled.jpg,3/21/2025 0:00,10.0:15,12.0:15,43.79311,-1.4131,Centre de la mer,Plage Nord de Vieux-Boucau,88890,Observation #88890,https://biolit.fr/observations/observation-88890/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/huitre-creuse_Vieux-boucau-2-scaled.jpg,,TRUE,Identifiable +N1,88885,Sortie #88885,https://biolit.fr/sorties/sortie-88885/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/huitre-creuse_Vieux-boucau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/identification-inconnue_Vieux-boucau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Sargasse-algue-brune_Vieux-boucau-2-scaled.jpg,3/21/2025 0:00,10.0:15,12.0:15,43.79311,-1.4131,Centre de la mer,Plage Nord de Vieux-Boucau,88892,Observation #88892,https://biolit.fr/observations/observation-88892/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/identification-inconnue_Vieux-boucau-2-scaled.jpg,,,Ne sais pas +N1,88885,Sortie #88885,https://biolit.fr/sorties/sortie-88885/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/huitre-creuse_Vieux-boucau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/identification-inconnue_Vieux-boucau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Sargasse-algue-brune_Vieux-boucau-2-scaled.jpg,3/21/2025 0:00,10.0:15,12.0:15,43.79311,-1.4131,Centre de la mer,Plage Nord de Vieux-Boucau,88894,Observation #88894,https://biolit.fr/observations/observation-88894/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Sargasse-algue-brune_Vieux-boucau-2-scaled.jpg,,TRUE,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,88981,Observation #88981,https://biolit.fr/observations/observation-88981/,Acroloxus lacustris,Patelline d'Europe,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,,,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,88983,Observation #88983,https://biolit.fr/observations/observation-88983/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg,,TRUE,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,88985,Observation #88985,https://biolit.fr/observations/observation-88985/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg,,,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,88987,Observation #88987,https://biolit.fr/observations/observation-88987/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg,,TRUE,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,88989,Observation #88989,https://biolit.fr/observations/observation-88989/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg,,TRUE,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,88991,Observation #88991,https://biolit.fr/observations/observation-88991/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg,,,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,88993,Observation #88993,https://biolit.fr/observations/observation-88993/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg,,,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,88995,Observation #88995,https://biolit.fr/observations/observation-88995/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg,,,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,88997,Observation #88997,https://biolit.fr/observations/observation-88997/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg,,TRUE,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,88999,Observation #88999,https://biolit.fr/observations/observation-88999/,Mactra stultorum,Mactre coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg,,,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,89001,Observation #89001,https://biolit.fr/observations/observation-89001/,Mactra glauca,Mactre fauve,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg,,,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,89003,Observation #89003,https://biolit.fr/observations/observation-89003/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg,,,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,89005,Observation #89005,https://biolit.fr/observations/observation-89005/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg,,,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,89007,Observation #89007,https://biolit.fr/observations/observation-89007/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg,,,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,89009,Observation #89009,https://biolit.fr/observations/observation-89009/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg,,,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,89011,Observation #89011,https://biolit.fr/observations/observation-89011/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg,,TRUE,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,89013,Observation #89013,https://biolit.fr/observations/observation-89013/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg,,,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,89016,Observation #89016,https://biolit.fr/observations/observation-89016/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg,,TRUE,Identifiable +N1,88980,Sortie #88980,https://biolit.fr/sorties/sortie-88980/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Balane.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Huitre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Loursin-coeur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Mactre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/mactre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/meduse-audelie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-natice.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeuf-de-raie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/os-de-seiche.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Patelle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Plume-oiseau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/racines-de-posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/Telline.jpg,3/20/2025 0:00,14.0000000,15.0000000,42.9058350000000,3.05630200000000,LABELBLEU,Leucate,89018,Observation #89018,https://biolit.fr/observations/observation-89018/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/03/oeufs-de-bulot.jpg,,TRUE,Identifiable +N1,89192,Sortie #89192,https://biolit.fr/sorties/sortie-89192/,pauline.chouquet@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095328597-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095336097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095341548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095349430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095355599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095401636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095410012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095420124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095430241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095440080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095450041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095501675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095528206-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095536704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095543127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095551133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095625089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095634153-scaled.jpg,3/17/2025 0:00,10.0:15,11.0:15,43.3577280000000,5.2907110000000,AIEJE,Plage de Corbière,89215,Observation #89215,https://biolit.fr/observations/observation-89215/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095440080-scaled.jpg,,TRUE,Identifiable +N1,89192,Sortie #89192,https://biolit.fr/sorties/sortie-89192/,pauline.chouquet@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095328597-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095336097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095341548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095349430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095355599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095401636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095410012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095420124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095430241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095440080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095450041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095501675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095528206-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095536704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095543127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095551133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095625089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095634153-scaled.jpg,3/17/2025 0:00,10.0:15,11.0:15,43.3577280000000,5.2907110000000,AIEJE,Plage de Corbière,89217,Observation #89217,https://biolit.fr/observations/observation-89217/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095328597-scaled.jpg,,,Identifiable +N1,89192,Sortie #89192,https://biolit.fr/sorties/sortie-89192/,pauline.chouquet@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095328597-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095336097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095341548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095349430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095355599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095401636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095410012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095420124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095430241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095440080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095450041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095501675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095528206-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095536704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095543127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095551133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095625089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095634153-scaled.jpg,3/17/2025 0:00,10.0:15,11.0:15,43.3577280000000,5.2907110000000,AIEJE,Plage de Corbière,89219,Observation #89219,https://biolit.fr/observations/observation-89219/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095528206-scaled.jpg,,TRUE,Identifiable +N1,89192,Sortie #89192,https://biolit.fr/sorties/sortie-89192/,pauline.chouquet@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095328597-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095336097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095341548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095349430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095355599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095401636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095410012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095420124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095430241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095440080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095450041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095501675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095528206-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095536704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095543127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095551133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095625089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095634153-scaled.jpg,3/17/2025 0:00,10.0:15,11.0:15,43.3577280000000,5.2907110000000,AIEJE,Plage de Corbière,89221,Observation #89221,https://biolit.fr/observations/observation-89221/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095543127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095450041-scaled.jpg,,,Identifiable +N1,89192,Sortie #89192,https://biolit.fr/sorties/sortie-89192/,pauline.chouquet@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095328597-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095336097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095341548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095349430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095355599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095401636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095410012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095420124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095430241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095440080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095450041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095501675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095528206-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095536704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095543127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095551133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095625089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095634153-scaled.jpg,3/17/2025 0:00,10.0:15,11.0:15,43.3577280000000,5.2907110000000,AIEJE,Plage de Corbière,89223,Observation #89223,https://biolit.fr/observations/observation-89223/,Epitonium clathrus,Scalaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095625089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095341548-scaled.jpg,,,Identifiable +N1,89192,Sortie #89192,https://biolit.fr/sorties/sortie-89192/,pauline.chouquet@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095328597-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095336097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095341548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095349430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095355599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095401636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095410012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095420124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095430241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095440080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095450041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095501675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095528206-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095536704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095543127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095551133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095625089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095634153-scaled.jpg,3/17/2025 0:00,10.0:15,11.0:15,43.3577280000000,5.2907110000000,AIEJE,Plage de Corbière,89225,Observation #89225,https://biolit.fr/observations/observation-89225/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095634153-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095536704-scaled.jpg,,,Identifiable +N1,89192,Sortie #89192,https://biolit.fr/sorties/sortie-89192/,pauline.chouquet@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095328597-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095336097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095341548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095349430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095355599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095401636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095410012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095420124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095430241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095440080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095450041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095501675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095528206-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095536704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095543127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095551133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095625089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095634153-scaled.jpg,3/17/2025 0:00,10.0:15,11.0:15,43.3577280000000,5.2907110000000,AIEJE,Plage de Corbière,89227,Observation #89227,https://biolit.fr/observations/observation-89227/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095551133-scaled.jpg,,,Identifiable +N1,89192,Sortie #89192,https://biolit.fr/sorties/sortie-89192/,pauline.chouquet@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095328597-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095336097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095341548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095349430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095355599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095401636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095410012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095420124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095430241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095440080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095450041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095501675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095528206-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095536704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095543127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095551133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095625089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095634153-scaled.jpg,3/17/2025 0:00,10.0:15,11.0:15,43.3577280000000,5.2907110000000,AIEJE,Plage de Corbière,89229,Observation #89229,https://biolit.fr/observations/observation-89229/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095401636-scaled.jpg,,,Identifiable +N1,89192,Sortie #89192,https://biolit.fr/sorties/sortie-89192/,pauline.chouquet@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095328597-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095336097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095341548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095349430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095355599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095401636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095410012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095420124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095430241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095440080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095450041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095501675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095528206-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095536704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095543127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095551133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095625089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095634153-scaled.jpg,3/17/2025 0:00,10.0:15,11.0:15,43.3577280000000,5.2907110000000,AIEJE,Plage de Corbière,89231,Observation #89231,https://biolit.fr/observations/observation-89231/,Pholas dactylus,Pholade,,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095420124-scaled.jpg,,,Identifiable +N1,89192,Sortie #89192,https://biolit.fr/sorties/sortie-89192/,pauline.chouquet@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095328597-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095336097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095341548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095349430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095355599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095401636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095410012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095420124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095430241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095440080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095450041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095501675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095528206-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095536704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095543127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095551133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095625089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095634153-scaled.jpg,3/17/2025 0:00,10.0:15,11.0:15,43.3577280000000,5.2907110000000,AIEJE,Plage de Corbière,89233,Observation #89233,https://biolit.fr/observations/observation-89233/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095349430-scaled.jpg,,,Identifiable +N1,89192,Sortie #89192,https://biolit.fr/sorties/sortie-89192/,pauline.chouquet@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095328597-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095336097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095341548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095349430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095355599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095401636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095410012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095420124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095430241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095440080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095450041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095501675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095528206-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095536704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095543127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095551133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095625089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095634153-scaled.jpg,3/17/2025 0:00,10.0:15,11.0:15,43.3577280000000,5.2907110000000,AIEJE,Plage de Corbière,89235,Observation #89235,https://biolit.fr/observations/observation-89235/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095355599-scaled.jpg,,,Identifiable +N1,89192,Sortie #89192,https://biolit.fr/sorties/sortie-89192/,pauline.chouquet@gmail.com,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095328597-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095336097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095341548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095349430-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095355599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095401636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095410012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095420124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095430241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095440080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095450041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095501675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095528206-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095536704-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095543127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095551133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095625089-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095634153-scaled.jpg,3/17/2025 0:00,10.0:15,11.0:15,43.3577280000000,5.2907110000000,AIEJE,Plage de Corbière,89237,Observation #89237,https://biolit.fr/observations/observation-89237/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095430241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095501675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095336097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/185ee2e50da406ed3d6098bc23fec1c1/2025/03/PXL_20250317_095401636-scaled.jpg,,,non-identifiable +N1,89200,Sortie #89200,https://biolit.fr/sorties/sortie-89200/,Kevin Paris,https://biolit.fr/wp-content/uploads/jet-form-builder/20f5b8963f95fa15f87db5cfdd166039/2025/03/2025-03-25-163637.png,3/16/2025 0:00,17.0000000,18.0000000,45.8556650000000,-1.22789100000000,Nature Environnement 17,Le Grand Village Plage,,,,,,,,,, +N1,89202,Sortie #89202,https://biolit.fr/sorties/sortie-89202/,Kevin Paris,https://biolit.fr/wp-content/uploads/jet-form-builder/20f5b8963f95fa15f87db5cfdd166039/2025/03/2025-03-25-163637-1.png,3/16/2025 0:00,16.0:41,16.0:41,45.8530240000000,-1.22853800000000,,Le Grand Village Plage,89203,Observation #89203,https://biolit.fr/observations/observation-89203/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/20f5b8963f95fa15f87db5cfdd166039/2025/03/2025-03-25-163637-1.png,,,Ne sais pas +N1,89254,Sortie #89254,https://biolit.fr/sorties/sortie-89254/,LETERRIER CHRISTELLE,https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164149-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163920-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163844-scaled.jpg,2/27/2025 0:00,16.0:35,16.0:45,49.6726660000000,-1.66395300000000,,Digue de Querqueville,89255,Observation #89255,https://biolit.fr/observations/observation-89255/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163920-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163844-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164031-scaled.jpg,,,Ne sais pas +N1,89254,Sortie #89254,https://biolit.fr/sorties/sortie-89254/,LETERRIER CHRISTELLE,https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164149-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163920-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163844-scaled.jpg,2/27/2025 0:00,16.0:35,16.0:45,49.6726660000000,-1.66395300000000,,Digue de Querqueville,89257,Observation #89257,https://biolit.fr/observations/observation-89257/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163848-scaled.jpg,,TRUE,Identifiable +N1,89254,Sortie #89254,https://biolit.fr/sorties/sortie-89254/,LETERRIER CHRISTELLE,https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164149-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163920-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163844-scaled.jpg,2/27/2025 0:00,16.0:35,16.0:45,49.6726660000000,-1.66395300000000,,Digue de Querqueville,89259,Observation #89259,https://biolit.fr/observations/observation-89259/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163949-scaled.jpg,,,Ne sais pas +N1,89254,Sortie #89254,https://biolit.fr/sorties/sortie-89254/,LETERRIER CHRISTELLE,https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164149-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163920-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163844-scaled.jpg,2/27/2025 0:00,16.0:35,16.0:45,49.6726660000000,-1.66395300000000,,Digue de Querqueville,89261,Observation #89261,https://biolit.fr/observations/observation-89261/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164031-scaled.jpg,,TRUE,Ne sais pas +N1,89254,Sortie #89254,https://biolit.fr/sorties/sortie-89254/,LETERRIER CHRISTELLE,https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164149-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163920-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163844-scaled.jpg,2/27/2025 0:00,16.0:35,16.0:45,49.6726660000000,-1.66395300000000,,Digue de Querqueville,89263,Observation #89263,https://biolit.fr/observations/observation-89263/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163911-scaled.jpg,,,Ne sais pas +N1,89254,Sortie #89254,https://biolit.fr/sorties/sortie-89254/,LETERRIER CHRISTELLE,https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164149-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163920-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163844-scaled.jpg,2/27/2025 0:00,16.0:35,16.0:45,49.6726660000000,-1.66395300000000,,Digue de Querqueville,89265,Observation #89265,https://biolit.fr/observations/observation-89265/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163920-scaled.jpg,,,Identifiable +N1,89254,Sortie #89254,https://biolit.fr/sorties/sortie-89254/,LETERRIER CHRISTELLE,https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164417-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164149-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227164003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163920-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163844-scaled.jpg,2/27/2025 0:00,16.0:35,16.0:45,49.6726660000000,-1.66395300000000,,Digue de Querqueville,89267,Observation #89267,https://biolit.fr/observations/observation-89267/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d33385a5ebf88444e3c3a7fd5371d6c8/2025/03/IMG20250227163844-scaled.jpg,,,Identifiable +N1,89323,Sortie #89323,https://biolit.fr/sorties/sortie-89323/,Dufraine Catherine,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_141725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_141442-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135740-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135426-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135323-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135255-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134438-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134214-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134137-scaled.jpg,3/26/2025 0:00,13.0:15,14.0000000,38.7331820,-9.1434860,,Nazare,,,,,,,,,, +N1,89336,Sortie #89336,https://biolit.fr/sorties/sortie-89336/,Dufraine Catherine,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_141725-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_141442-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135740-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135700-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135426-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135323-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135255-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134438-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134249-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134214-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134137-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134030-scaled.jpg,3/26/2025 0:00,14.0:15,16.0:21,38.7331820,-9.1434860,,Nazare,89337,Observation #89337,https://biolit.fr/observations/observation-89337/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_141725-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135740-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135700-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_141442-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135323-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135426-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135255-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134438-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134214-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134249-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134137-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134030-scaled.jpg,,,Ne sais pas +N1,89336,Sortie #89336,https://biolit.fr/sorties/sortie-89336/,Dufraine Catherine,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_141725-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_141442-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135740-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135700-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135426-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135323-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135255-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134438-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134249-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134214-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134137-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134030-scaled.jpg,3/26/2025 0:00,14.0:15,16.0:21,38.7331820,-9.1434860,,Nazare,89339,Observation #89339,https://biolit.fr/observations/observation-89339/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135740-1-scaled.jpg,,,Ne sais pas +N1,89336,Sortie #89336,https://biolit.fr/sorties/sortie-89336/,Dufraine Catherine,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_141725-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_141442-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135740-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135700-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135426-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135323-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135255-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134438-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134249-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134214-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134137-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134030-scaled.jpg,3/26/2025 0:00,14.0:15,16.0:21,38.7331820,-9.1434860,,Nazare,89341,Observation #89341,https://biolit.fr/observations/observation-89341/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135700-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135426-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135323-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_135255-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134214-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134438-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134249-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250326_134137-1-scaled.jpg,,,Ne sais pas +N1,89344,Sortie #89344,https://biolit.fr/sorties/sortie-89344/,Dufraine Catherine,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250325_124034-scaled.jpg,3/25/2025 0:00,12.0000000,13.0000000,38.7331820,-9.1434860,,Lisbonne,,,,,,,,,, +N1,89347,Sortie #89347,https://biolit.fr/sorties/sortie-89347/,Dufraine Catherine,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250324_102246-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250324_095244-scaled.jpg,3/24/2025 0:00,10.000009,10.0000000,38.7331820,-9.1434860,,Cascais,,,,,,,,,, +N1,89351,Sortie #89351,https://biolit.fr/sorties/sortie-89351/,Dufraine Catherine,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250323_152629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250323_150207-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250323_145706-scaled.jpg,3/23/2025 0:00,14.0000000,14.0:55,38.7331820,-9.1434860,,Lisbonne,89352,Observation #89352,https://biolit.fr/observations/observation-89352/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250323_152629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250323_150207-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/30fc0b4fb490bd21ffea9ba41238388a/2025/03/P_20250323_145706-scaled.jpg,,,Ne sais pas +N1,89382,Sortie #89382,https://biolit.fr/sorties/sortie-89382/,Joulaud Paul-Émile,https://biolit.fr/wp-content/uploads/jet-form-builder/e840933c58ac88044c2c04f9f6cd180c/2025/03/IMG_20250327_125809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e840933c58ac88044c2c04f9f6cd180c/2025/03/IMG_20250327_125525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e840933c58ac88044c2c04f9f6cd180c/2025/03/IMG_20250327_125214-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e840933c58ac88044c2c04f9f6cd180c/2025/03/IMG_20250327_124844-scaled.jpg,3/27/2025 0:00,12.0000000,13.000005,48.6492190000000,-2.02687100000000,Planète Mer,Fort National,89389,Observation #89389,https://biolit.fr/observations/observation-89389/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e840933c58ac88044c2c04f9f6cd180c/2025/03/IMG_20250327_125214-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e840933c58ac88044c2c04f9f6cd180c/2025/03/IMG_20250327_125809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e840933c58ac88044c2c04f9f6cd180c/2025/03/IMG_20250327_125525-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e840933c58ac88044c2c04f9f6cd180c/2025/03/IMG_20250327_124844-scaled.jpg,,,Identifiable +N1,89388,Sortie #89388,https://biolit.fr/sorties/sortie-89388/,Lecavelier Gaspard,https://biolit.fr/wp-content/uploads/jet-form-builder/25d7cee1ce64e574b10b8e105be75aba/2025/03/IMG_2016-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/25d7cee1ce64e574b10b8e105be75aba/2025/03/IMG_2011-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/25d7cee1ce64e574b10b8e105be75aba/2025/03/IMG_2013-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/25d7cee1ce64e574b10b8e105be75aba/2025/03/IMG_2012-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/25d7cee1ce64e574b10b8e105be75aba/2025/03/IMG_2009-scaled.jpeg,3/27/2025 0:00,12.0:28,15.0:28,48.6482500000000,-2.00912500000000,Planète Mer,Fort national,89391,Observation #89391,https://biolit.fr/observations/observation-89391/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/25d7cee1ce64e574b10b8e105be75aba/2025/03/IMG_2011-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/25d7cee1ce64e574b10b8e105be75aba/2025/03/IMG_2016-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/25d7cee1ce64e574b10b8e105be75aba/2025/03/IMG_2013-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/25d7cee1ce64e574b10b8e105be75aba/2025/03/IMG_2012-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/25d7cee1ce64e574b10b8e105be75aba/2025/03/IMG_2009-scaled.jpeg,,,Ne sais pas +N1,89408,Sortie #89408,https://biolit.fr/sorties/sortie-89408/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidula-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-2-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025990000000,-1.84718900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89409,Observation #89409,https://biolit.fr/observations/observation-89409/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-2-scaled.jpg,,TRUE,Identifiable +N1,89408,Sortie #89408,https://biolit.fr/sorties/sortie-89408/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidula-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-2-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025990000000,-1.84718900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89411,Observation #89411,https://biolit.fr/observations/observation-89411/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-2-scaled.jpg,,TRUE,Identifiable +N1,89408,Sortie #89408,https://biolit.fr/sorties/sortie-89408/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidula-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-2-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025990000000,-1.84718900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89413,Observation #89413,https://biolit.fr/observations/observation-89413/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-2-scaled.jpg,,TRUE,Identifiable +N1,89408,Sortie #89408,https://biolit.fr/sorties/sortie-89408/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidula-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-2-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025990000000,-1.84718900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89415,Observation #89415,https://biolit.fr/observations/observation-89415/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-scaled.jpg,,TRUE,Identifiable +N1,89408,Sortie #89408,https://biolit.fr/sorties/sortie-89408/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidula-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-2-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025990000000,-1.84718900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89417,Observation #89417,https://biolit.fr/observations/observation-89417/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-scaled.jpg,,TRUE,Identifiable +N1,89408,Sortie #89408,https://biolit.fr/sorties/sortie-89408/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidula-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-2-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025990000000,-1.84718900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89419,Observation #89419,https://biolit.fr/observations/observation-89419/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-2-scaled.jpg,,,Identifiable +N1,89408,Sortie #89408,https://biolit.fr/sorties/sortie-89408/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidula-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-2-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025990000000,-1.84718900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89421,Observation #89421,https://biolit.fr/observations/observation-89421/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidula-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidule-2-scaled.jpg,,TRUE,Identifiable +N1,89408,Sortie #89408,https://biolit.fr/sorties/sortie-89408/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidula-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-2-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025990000000,-1.84718900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89423,Observation #89423,https://biolit.fr/observations/observation-89423/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-1-scaled.jpg,,,Identifiable +N1,89408,Sortie #89408,https://biolit.fr/sorties/sortie-89408/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-fraise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Chiton-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidula-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Gibbule-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-2-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025990000000,-1.84718900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89425,Observation #89425,https://biolit.fr/observations/observation-89425/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Monodonte-2-scaled.jpg,,TRUE,Identifiable +N1,89445,Sortie #89445,https://biolit.fr/sorties/sortie-89445/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-Nymphon-grele-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tube-Lanice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-3-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025850000000,-1.84716800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89446,Observation #89446,https://biolit.fr/observations/observation-89446/,Hediste diversicolor,Néréis multicolore,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-3-scaled.jpg,,,Identifiable +N1,89445,Sortie #89445,https://biolit.fr/sorties/sortie-89445/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-Nymphon-grele-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tube-Lanice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-3-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025850000000,-1.84716800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89448,Observation #89448,https://biolit.fr/observations/observation-89448/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-scaled.jpg,,TRUE,Identifiable +N1,89445,Sortie #89445,https://biolit.fr/sorties/sortie-89445/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-Nymphon-grele-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tube-Lanice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-3-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025850000000,-1.84716800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89450,Observation #89450,https://biolit.fr/observations/observation-89450/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-1-scaled.jpg,,TRUE,Identifiable +N1,89445,Sortie #89445,https://biolit.fr/sorties/sortie-89445/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-Nymphon-grele-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tube-Lanice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-3-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025850000000,-1.84716800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89452,Observation #89452,https://biolit.fr/observations/observation-89452/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-1-scaled.jpg,,TRUE,Identifiable +N1,89445,Sortie #89445,https://biolit.fr/sorties/sortie-89445/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-Nymphon-grele-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tube-Lanice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-3-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025850000000,-1.84716800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89454,Observation #89454,https://biolit.fr/observations/observation-89454/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-Nymphon-grele-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-scaled.jpg,,,Identifiable +N1,89445,Sortie #89445,https://biolit.fr/sorties/sortie-89445/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-Nymphon-grele-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tube-Lanice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-3-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025850000000,-1.84716800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89456,Observation #89456,https://biolit.fr/observations/observation-89456/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-3-scaled.jpg,,,Identifiable +N1,89445,Sortie #89445,https://biolit.fr/sorties/sortie-89445/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-Nymphon-grele-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tube-Lanice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-3-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025850000000,-1.84716800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89458,Observation #89458,https://biolit.fr/observations/observation-89458/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-3-scaled.jpg,,TRUE,Identifiable +N1,89445,Sortie #89445,https://biolit.fr/sorties/sortie-89445/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-Nymphon-grele-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tube-Lanice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-3-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025850000000,-1.84716800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89460,Observation #89460,https://biolit.fr/observations/observation-89460/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tube-Lanice-scaled.jpg,,,Identifiable +N1,89445,Sortie #89445,https://biolit.fr/sorties/sortie-89445/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Nereis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Porcellane-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-Nymphon-grele-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Pycnogonide-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tomate-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Tube-Lanice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-3-scaled.jpg,3/27/2025 0:00,10.0000000,11.0000000,48.7025850000000,-1.84716800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,89462,Observation #89462,https://biolit.fr/observations/observation-89462/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/03/Vers-indetermine-3-scaled.jpg,,,Ne sais pas +N1,89482,Sortie #89482,https://biolit.fr/sorties/sortie-89482/,claire sauget,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0025.jpg,3/29/2025 0:00,14.000008,16.000008,49.6699560000000,-1.25733400000000,,Barfleur,89483,Observation #89483,https://biolit.fr/observations/observation-89483/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0005.jpg,,TRUE,Identifiable +N1,89482,Sortie #89482,https://biolit.fr/sorties/sortie-89482/,claire sauget,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0025.jpg,3/29/2025 0:00,14.000008,16.000008,49.6699560000000,-1.25733400000000,,Barfleur,89485,Observation #89485,https://biolit.fr/observations/observation-89485/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0012.jpg,,TRUE,Identifiable +N1,89482,Sortie #89482,https://biolit.fr/sorties/sortie-89482/,claire sauget,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0025.jpg,3/29/2025 0:00,14.000008,16.000008,49.6699560000000,-1.25733400000000,,Barfleur,89487,Observation #89487,https://biolit.fr/observations/observation-89487/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0025.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0006.jpg,,,Identifiable +N1,89482,Sortie #89482,https://biolit.fr/sorties/sortie-89482/,claire sauget,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0025.jpg,3/29/2025 0:00,14.000008,16.000008,49.6699560000000,-1.25733400000000,,Barfleur,89489,Observation #89489,https://biolit.fr/observations/observation-89489/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0009.jpg,,TRUE,non-identifiable +N1,89482,Sortie #89482,https://biolit.fr/sorties/sortie-89482/,claire sauget,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0025.jpg,3/29/2025 0:00,14.000008,16.000008,49.6699560000000,-1.25733400000000,,Barfleur,89491,Observation #89491,https://biolit.fr/observations/observation-89491/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0018.jpg,,TRUE,Identifiable +N1,89482,Sortie #89482,https://biolit.fr/sorties/sortie-89482/,claire sauget,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0025.jpg,3/29/2025 0:00,14.000008,16.000008,49.6699560000000,-1.25733400000000,,Barfleur,89493,Observation #89493,https://biolit.fr/observations/observation-89493/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0008.jpg,,TRUE,Identifiable +N1,89482,Sortie #89482,https://biolit.fr/sorties/sortie-89482/,claire sauget,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0025.jpg,3/29/2025 0:00,14.000008,16.000008,49.6699560000000,-1.25733400000000,,Barfleur,89495,Observation #89495,https://biolit.fr/observations/observation-89495/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0010.jpg,,,Identifiable +N1,89482,Sortie #89482,https://biolit.fr/sorties/sortie-89482/,claire sauget,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0025.jpg,3/29/2025 0:00,14.000008,16.000008,49.6699560000000,-1.25733400000000,,Barfleur,89497,Observation #89497,https://biolit.fr/observations/observation-89497/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0011.jpg,,,Identifiable +N1,89482,Sortie #89482,https://biolit.fr/sorties/sortie-89482/,claire sauget,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0010.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0011.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0012.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0013.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0015.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0016.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0017.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0018.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0019.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0025.jpg,3/29/2025 0:00,14.000008,16.000008,49.6699560000000,-1.25733400000000,,Barfleur,89499,Observation #89499,https://biolit.fr/observations/observation-89499/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f173927602fadf3cd7db5eb267ce69f8/2025/03/IMG-20250330-WA0019.jpg,,,Ne sais pas +N1,89519,Sortie #89519,https://biolit.fr/sorties/sortie-89519/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/ponte_Natice-porte-chaine_Euspira-catena-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Biolit-SAPAL_Seignosse-casernes_Nassarius-reticule-1-scaled.jpg,3/14/2025 0:00,10.0:15,12.0:15,43.729924,-1.432475,Centre de la mer,Plage des casernes de Seignosse,89520,Observation #89520,https://biolit.fr/observations/observation-89520/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/ponte_Natice-porte-chaine_Euspira-catena-scaled.jpg,,TRUE,Identifiable +N1,89519,Sortie #89519,https://biolit.fr/sorties/sortie-89519/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/ponte_Natice-porte-chaine_Euspira-catena-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Biolit-SAPAL_Seignosse-casernes_Nassarius-reticule-1-scaled.jpg,3/14/2025 0:00,10.0:15,12.0:15,43.729924,-1.432475,Centre de la mer,Plage des casernes de Seignosse,89522,Observation #89522,https://biolit.fr/observations/observation-89522/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/03/Biolit-SAPAL_Seignosse-casernes_Nassarius-reticule-1-scaled.jpg,,FALSE,Identifiable +N1,89530,Sortie #89530,https://biolit.fr/sorties/sortie-89530/,Birouste Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/be2e918f0b4c658602a5701e4746a4bc/2025/03/20250327_145521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/be2e918f0b4c658602a5701e4746a4bc/2025/03/20250327_150543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/be2e918f0b4c658602a5701e4746a4bc/2025/03/IMG_1970.jpeg,3/27/2025 0:00,14.0000000,15.0000000,43.1443710000000,3.15271100000000,,narbonne-plage,89531,Observation #89531,https://biolit.fr/observations/observation-89531/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/be2e918f0b4c658602a5701e4746a4bc/2025/03/20250327_145521-scaled.jpg,,TRUE,Identifiable +N1,89530,Sortie #89530,https://biolit.fr/sorties/sortie-89530/,Birouste Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/be2e918f0b4c658602a5701e4746a4bc/2025/03/20250327_145521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/be2e918f0b4c658602a5701e4746a4bc/2025/03/20250327_150543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/be2e918f0b4c658602a5701e4746a4bc/2025/03/IMG_1970.jpeg,3/27/2025 0:00,14.0000000,15.0000000,43.1443710000000,3.15271100000000,,narbonne-plage,89533,Observation #89533,https://biolit.fr/observations/observation-89533/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/be2e918f0b4c658602a5701e4746a4bc/2025/03/20250327_150543-scaled.jpg,,TRUE,Identifiable +N1,89530,Sortie #89530,https://biolit.fr/sorties/sortie-89530/,Birouste Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/be2e918f0b4c658602a5701e4746a4bc/2025/03/20250327_145521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/be2e918f0b4c658602a5701e4746a4bc/2025/03/20250327_150543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/be2e918f0b4c658602a5701e4746a4bc/2025/03/IMG_1970.jpeg,3/27/2025 0:00,14.0000000,15.0000000,43.1443710000000,3.15271100000000,,narbonne-plage,89535,Observation #89535,https://biolit.fr/observations/observation-89535/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/be2e918f0b4c658602a5701e4746a4bc/2025/03/IMG_1970.jpeg,,TRUE,Identifiable +N1,89539,Sortie #89539,https://biolit.fr/sorties/sortie-89539/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/04/Os-seiche_Sepia-officinalis_Seignosse-scaled.jpg,3/14/2025 0:00,10.0:15,12.0:15,43.729924,-1.432475,Centre de la mer,Plage des casernes de Seignosse,89540,Observation #89540,https://biolit.fr/observations/observation-89540/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/04/Os-seiche_Sepia-officinalis_Seignosse-scaled.jpg,,TRUE,Identifiable +N1,89562,Sortie #89562,https://biolit.fr/sorties/sortie-89562/,ROLAND PRIOUL,https://biolit.fr/wp-content/uploads/jet-form-builder/4d81066a8224014dad6eb2c165e389d7/2025/04/CHERRUEIX-26-04-2023-Gorgebleue-a-miroir-41.jpg,4/19/2023 0:00,18.0:55,19.0000000,48.6052360000000,-1.71086300000000,,CHERRUEIX,,,,,,,,,, +N1,89564,Sortie #89564,https://biolit.fr/sorties/sortie-89564/,ROLAND PRIOUL,https://biolit.fr/wp-content/uploads/jet-form-builder/4d81066a8224014dad6eb2c165e389d7/2025/04/CHERRUEIX-26-04-2023-Gorgebleue-a-miroir-41-1.jpg,4/19/2023 0:00,18.0:55,19.0000000,48.6050250000000,-1.71060600000000,,CHERRUEIX,,,,,,,,,, +N1,89568,Sortie #89568,https://biolit.fr/sorties/sortie-89568/,Garcia Veronique,https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250308_153910-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250308_153833-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250308_153850-scaled.jpg,03/08/2025,11.0000000,15.0000000,48.818224000000,-3.55682400000000,,ploulec'h,89569,Observation #89569,https://biolit.fr/observations/observation-89569/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250308_153910-scaled.jpg,,TRUE,Identifiable +N1,89568,Sortie #89568,https://biolit.fr/sorties/sortie-89568/,Garcia Veronique,https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250308_153910-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250308_153833-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250308_153850-scaled.jpg,03/08/2025,11.0000000,15.0000000,48.818224000000,-3.55682400000000,,ploulec'h,89571,Observation #89571,https://biolit.fr/observations/observation-89571/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250308_153833-scaled.jpg,,TRUE,Identifiable +N1,89568,Sortie #89568,https://biolit.fr/sorties/sortie-89568/,Garcia Veronique,https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250308_153910-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250308_153833-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250308_153850-scaled.jpg,03/08/2025,11.0000000,15.0000000,48.818224000000,-3.55682400000000,,ploulec'h,89573,Observation #89573,https://biolit.fr/observations/observation-89573/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250308_153850-scaled.jpg,,TRUE,Identifiable +N1,89579,Sortie #89579,https://biolit.fr/sorties/sortie-89579/,Garcia Veronique,https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_121631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120213-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120544-scaled.jpg,2/22/2025 0:00,14.0000000,17.0000000,48.6679680000000,-3.60171300000000,,saint efflam,89580,Observation #89580,https://biolit.fr/observations/observation-89580/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_121631-scaled.jpg,,,Identifiable +N1,89579,Sortie #89579,https://biolit.fr/sorties/sortie-89579/,Garcia Veronique,https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_121631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120213-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120544-scaled.jpg,2/22/2025 0:00,14.0000000,17.0000000,48.6679680000000,-3.60171300000000,,saint efflam,89582,Observation #89582,https://biolit.fr/observations/observation-89582/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120213-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120544-scaled.jpg,,,Ne sais pas +N1,89579,Sortie #89579,https://biolit.fr/sorties/sortie-89579/,Garcia Veronique,https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_121631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120213-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120544-scaled.jpg,2/22/2025 0:00,14.0000000,17.0000000,48.6679680000000,-3.60171300000000,,saint efflam,89584,Observation #89584,https://biolit.fr/observations/observation-89584/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120213-scaled.jpg,,,Ne sais pas +N1,89579,Sortie #89579,https://biolit.fr/sorties/sortie-89579/,Garcia Veronique,https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_121631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120213-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120544-scaled.jpg,2/22/2025 0:00,14.0000000,17.0000000,48.6679680000000,-3.60171300000000,,saint efflam,89586,Observation #89586,https://biolit.fr/observations/observation-89586/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/32d7d69f9fcee6ee34522b6ea4e47a55/2025/04/20250222_120544-scaled.jpg,,,Ne sais pas +N1,89589,Sortie #89589,https://biolit.fr/sorties/sortie-89589/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/arche-barbue-28-12-24-cala-longa-sartene.jpg,12/28/2024 0:00,0.0:22,14.0:23,41.548343000000,8.83307200000000,La Girelle,Plage de cala longa Sartène,89590,Observation #89590,https://biolit.fr/observations/observation-89590/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/arche-barbue-28-12-24-cala-longa-sartene.jpg,,,Identifiable +N1,89596,Sortie #89596,https://biolit.fr/sorties/sortie-89596/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/nacelle-d-argonaute-26-01-25-marana.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/nacelle-d-argonaute-26-01-25-marana.02.jpg,1/26/2025 0:00,14.0:48,15.0:48,42.5718740000000,9.5236340000000,La Girelle,Marana,89598,Observation #89598,https://biolit.fr/observations/observation-89598/,Argonauta argo,Argonaute,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/nacelle-d-argonaute-26-01-25-marana.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/nacelle-d-argonaute-26-01-25-marana.02.jpg,,TRUE,Identifiable +N1,89605,Sortie #89605,https://biolit.fr/sorties/sortie-89605/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/anatifes-a-peigne-28-03-25-marana.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/anatifes-a-peigne-28-03-25-marana.02.jpg,3/28/2025 0:00,14.0000000,15.0000000,42.5896330000000,9.50961100000000,La Girelle,plage de la Marana,89606,Observation #89606,https://biolit.fr/observations/observation-89606/,Lepas (Anatifa) pectinata,Petit anatife à peigne,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/anatifes-a-peigne-28-03-25-marana.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/anatifes-a-peigne-28-03-25-marana.02.jpg,,,Identifiable +N1,89610,Sortie #89610,https://biolit.fr/sorties/sortie-89610/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/arche-de-noe-26-01-25-marana.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/arche-de-noe-26-01-25-marana.02.jpg,1/26/2025 0:00,14.0:52,15.0:52,42.5983700000000,9.49922600000000,La Girelle,plage de la Marana,89611,Observation #89611,https://biolit.fr/observations/observation-89611/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/arche-de-noe-26-01-25-marana.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/arche-de-noe-26-01-25-marana.02.jpg,,,Identifiable +N1,89615,Sortie #89615,https://biolit.fr/sorties/sortie-89615/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/arche-de-noe-26-01-25-marana.01-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/arche-de-noe-26-01-25-marana.02-1.jpg,1/26/2025 0:00,14.0:54,15.0:54,42.6011860000000,9.49939700000000,La Girelle,plage de la Marana,89616,Observation #89616,https://biolit.fr/observations/observation-89616/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/arche-de-noe-26-01-25-marana.01-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/arche-de-noe-26-01-25-marana.02-1.jpg,,TRUE,Identifiable +N1,89619,Sortie #89619,https://biolit.fr/sorties/sortie-89619/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/arche-de-noe-28-02-25-losari.jpg,2/28/2025 0:00,14.0:55,15.0:55,42.6430240000000,9.0193250000000,La Girelle,plage de Losari,89620,Observation #89620,https://biolit.fr/observations/observation-89620/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/arche-de-noe-28-02-25-losari.jpg,,TRUE,Identifiable +N1,89623,Sortie #89623,https://biolit.fr/sorties/sortie-89623/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/baudroie-11-02-25-marana.jpg,02/11/2025,14.0:57,15.0:57,42.5991640000000,9.50077100000000,La Girelle,plage de la Marana,89624,Observation #89624,https://biolit.fr/observations/observation-89624/,Lophius piscatorius,Baudroie,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/baudroie-11-02-25-marana.jpg,,TRUE,Identifiable +N1,89627,Sortie #89627,https://biolit.fr/sorties/sortie-89627/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/calamar-commun-04-02-25-marana.jpg,02/04/2025,14.0:58,15.0:58,42.5968540000000,9.50162900000000,La Girelle,plage de la Marana,89628,Observation #89628,https://biolit.fr/observations/observation-89628/,Loligo vulgaris,Encornet européen,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/calamar-commun-04-02-25-marana.jpg,,,Ne sais pas +N1,89633,Sortie #89633,https://biolit.fr/sorties/sortie-89633/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/capsule-de-raie-etoilee-04-02-25-marana.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/capsule-de-raie-etoilee-04-02-25-marana.02.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/capsule-de-raie-etoilee-04-02-25-marana.03.jpg,02/04/2025,15.000002,16.000002,42.6026490000000,9.49450500000000,La Girelle,plage de la Marana,89634,Observation #89634,https://biolit.fr/observations/observation-89634/,Raja asterias,Raie étoilée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/capsule-de-raie-etoilee-04-02-25-marana.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/capsule-de-raie-etoilee-04-02-25-marana.02.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/capsule-de-raie-etoilee-04-02-25-marana.03.jpg,,,Identifiable +N1,89638,Sortie #89638,https://biolit.fr/sorties/sortie-89638/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/capsule-raie-etoilee-19-02-25-marana.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/capsule-raie-etoilee-19-02-25-marana.02.jpg,2/19/2025 0:00,16.000003,16.000004,42.6021610000000,9.49441900000000,La Girelle,plage de la Marana,89639,Observation #89639,https://biolit.fr/observations/observation-89639/,Raja asterias,Raie étoilée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/capsule-raie-etoilee-19-02-25-marana.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/capsule-raie-etoilee-19-02-25-marana.02.jpg,,,Identifiable +N1,89643,Sortie #89643,https://biolit.fr/sorties/sortie-89643/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/crabe-bleu-28-03-25-biguglia.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/crabe-bleu-28-03-25-biguglia.02.jpg,3/28/2025 0:00,15.000004,16.000004,42.6067450000000,9.49184400000000,La Girelle,plage de la Marana,89644,Observation #89644,https://biolit.fr/observations/observation-89644/,Callinectes sapidus,Crabe bleu américain,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/crabe-bleu-28-03-25-biguglia.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/crabe-bleu-28-03-25-biguglia.02.jpg,,TRUE,Identifiable +N1,89651,Sortie #89651,https://biolit.fr/sorties/sortie-89651/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.02.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.03.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.05.jpg,3/31/2025 0:00,15.000006,16.000006,42.8895580000000,9.4743400000000,La Girelle,plage de Santa Severa,89652,Observation #89652,https://biolit.fr/observations/observation-89652/,Janthina pallida,Janthine pâle,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.02.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.03.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.05.jpg,,,Identifiable +N1,89651,Sortie #89651,https://biolit.fr/sorties/sortie-89651/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.02.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.03.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.05.jpg,3/31/2025 0:00,15.000006,16.000006,42.8895580000000,9.4743400000000,La Girelle,plage de Santa Severa,89654,Observation #89654,https://biolit.fr/observations/observation-89654/,Janthina pallida,Janthine pâle,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.02.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.03.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/janthine-pale-31-03-25-santa-severa-.05.jpg,,,Identifiable +N1,89657,Sortie #89657,https://biolit.fr/sorties/sortie-89657/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/murene-commune-18-02-25-erbalunga.jpg,2/18/2025 0:00,15.0:12,16.0:12,42.7730430000000,9.47487100000000,La Girelle,Erbalunga,89658,Observation #89658,https://biolit.fr/observations/observation-89658/,Muraena helena,Murène commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/murene-commune-18-02-25-erbalunga.jpg,,TRUE,Identifiable +N1,89663,Sortie #89663,https://biolit.fr/sorties/sortie-89663/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/nacelle-d-argonaute-03-02-25-marana.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/nacelle-d-argonaute-03-02-25-marana.02.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/nacelle-d-argonaute-03-02-25-marana.03.jpg,02/03/2025,15.0:14,16.0:14,42.6097240000000,9.48712300000000,La Girelle,plage de la Marana,89664,Observation #89664,https://biolit.fr/observations/observation-89664/,Argonauta argo,Argonaute,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/nacelle-d-argonaute-03-02-25-marana.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/nacelle-d-argonaute-03-02-25-marana.02.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/nacelle-d-argonaute-03-02-25-marana.03.jpg,,TRUE,Identifiable +N1,89669,Sortie #89669,https://biolit.fr/sorties/sortie-89669/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/nacelle-d-argonaute-11-03-25-biguglia.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/nacelle-d-argonaute-11-03-25-biguglia.02.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/nacelle-d-argonaute-11-03-25-biguglia.03.jpg,03/11/2025,15.0:16,16.0:16,42.6560920000000,9.45169700000000,La Girelle,Biguglia,89670,Observation #89670,https://biolit.fr/observations/observation-89670/,Argonauta argo,Argonaute,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/nacelle-d-argonaute-11-03-25-biguglia.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/nacelle-d-argonaute-11-03-25-biguglia.02.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/nacelle-d-argonaute-11-03-25-biguglia.03.jpg,,TRUE,Identifiable +N1,89674,Sortie #89674,https://biolit.fr/sorties/sortie-89674/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/orange-de-mer-27-03-25-marana.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/orange-de-mer-27-03-25-marana.02.jpg,3/27/2025 0:00,0.0:22,16.0:23,42.6021960000000,9.49390400000000,La Girelle,plage de la Marana,89675,Observation #89675,https://biolit.fr/observations/observation-89675/,Tethya aurantium,Orange de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/orange-de-mer-27-03-25-marana.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/orange-de-mer-27-03-25-marana.02.jpg,,,Identifiable +N1,89679,Sortie #89679,https://biolit.fr/sorties/sortie-89679/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/ormeau-02-02-25-patrimonio.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/ormeau-02-02-25-patrimonio.02.jpg,02/02/2025,15.0:26,16.0:26,42.6969500000000,9.32295100000000,La Girelle,Patrimonio,89680,Observation #89680,https://biolit.fr/observations/observation-89680/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/ormeau-02-02-25-patrimonio.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/ormeau-02-02-25-patrimonio.02.jpg,,,Identifiable +N1,89683,Sortie #89683,https://biolit.fr/sorties/sortie-89683/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/petit-couteau-silique-28-02-25-arinella-calvi.jpg,2/28/2025 0:00,15.0:27,16.0:28,42.5568150000000,8.76419300000000,La Girelle,Arinella di Calvi,89684,Observation #89684,https://biolit.fr/observations/observation-89684/,Ensis minor,Petit couteau-silique,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/petit-couteau-silique-28-02-25-arinella-calvi.jpg,,,Identifiable +N1,89688,Sortie #89688,https://biolit.fr/sorties/sortie-89688/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/rocher-fascie-01-02-25-embouchure-urbino.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/rocher-fascie-01-02-25-embouchure-urbino.02.jpg,02/01/2025,15.0000000,16.0000000,42.0495490000000,9.49796500000000,La Girelle,Embouchure de l'etang d'Urbino,89689,Observation #89689,https://biolit.fr/observations/observation-89689/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/rocher-fascie-01-02-25-embouchure-urbino.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/rocher-fascie-01-02-25-embouchure-urbino.02.jpg,,,Identifiable +N1,89693,Sortie #89693,https://biolit.fr/sorties/sortie-89693/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/velelles-27-03-25-marana.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/velelles-27-03-25-marana.02.jpg,3/27/2025 0:00,15.0:32,16.0:32,42.602919000000,9.4951060000000,La Girelle,plage de la Marana,89694,Observation #89694,https://biolit.fr/observations/observation-89694/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/velelles-27-03-25-marana.01.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/velelles-27-03-25-marana.02.jpg,,TRUE,Identifiable +N1,89697,Sortie #89697,https://biolit.fr/sorties/sortie-89697/,Hagneré Alban,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/seiche-commune-28-03-25-marana.jpg,3/28/2025 0:00,15.0:33,16.0:33,42.6082260000000,9.49270200000000,La Girelle,plage de la Marana,89698,Observation #89698,https://biolit.fr/observations/observation-89698/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8556aef8257ac34557b9db42ddb8ee49/2025/04/seiche-commune-28-03-25-marana.jpg,,TRUE,Identifiable +N1,89720,Sortie #89720,https://biolit.fr/sorties/sortie-89720/,Salé Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_164639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170107-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_165544-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_165050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170249-scaled.jpg,04/01/2025,16.0:46,17.000005,49.7400990000000,0.307274000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89721,Observation #89721,https://biolit.fr/observations/observation-89721/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170107-scaled.jpg,,TRUE,Identifiable +N1,89720,Sortie #89720,https://biolit.fr/sorties/sortie-89720/,Salé Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_164639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170107-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_165544-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_165050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170249-scaled.jpg,04/01/2025,16.0:46,17.000005,49.7400990000000,0.307274000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89729,Observation #89729,https://biolit.fr/observations/observation-89729/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_165050-scaled.jpg,,TRUE,Identifiable +N1,89720,Sortie #89720,https://biolit.fr/sorties/sortie-89720/,Salé Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_164639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170107-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_165544-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_165050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170249-scaled.jpg,04/01/2025,16.0:46,17.000005,49.7400990000000,0.307274000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89733,Observation #89733,https://biolit.fr/observations/observation-89733/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170129-scaled.jpg,,TRUE,Identifiable +N1,89720,Sortie #89720,https://biolit.fr/sorties/sortie-89720/,Salé Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_164639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170107-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_165544-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_165050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170249-scaled.jpg,04/01/2025,16.0:46,17.000005,49.7400990000000,0.307274000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89735,Observation #89735,https://biolit.fr/observations/observation-89735/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_170450-scaled.jpg,,TRUE,Identifiable +N1,89728,Sortie #89728,https://biolit.fr/sorties/sortie-89728/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage7UBszl-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageYHo7Q7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageAJkrvZ-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageUqCMoC-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagekpO5AD-scaled.jpg,04/01/2025,17.000009,17.0:47,49.7408330,0.306667000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89731,Observation #89731,https://biolit.fr/observations/observation-89731/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage7UBszl-scaled.jpg,,TRUE,Identifiable +N1,89728,Sortie #89728,https://biolit.fr/sorties/sortie-89728/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage7UBszl-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageYHo7Q7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageAJkrvZ-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageUqCMoC-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagekpO5AD-scaled.jpg,04/01/2025,17.000009,17.0:47,49.7408330,0.306667000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89737,Observation #89737,https://biolit.fr/observations/observation-89737/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageYHo7Q7-scaled.jpg,,TRUE,Identifiable +N1,89728,Sortie #89728,https://biolit.fr/sorties/sortie-89728/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage7UBszl-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageYHo7Q7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageAJkrvZ-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageUqCMoC-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagekpO5AD-scaled.jpg,04/01/2025,17.000009,17.0:47,49.7408330,0.306667000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89739,Observation #89739,https://biolit.fr/observations/observation-89739/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageAJkrvZ-scaled.jpg,,TRUE,Identifiable +N1,89728,Sortie #89728,https://biolit.fr/sorties/sortie-89728/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage7UBszl-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageYHo7Q7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageAJkrvZ-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageUqCMoC-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagekpO5AD-scaled.jpg,04/01/2025,17.000009,17.0:47,49.7408330,0.306667000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89741,Observation #89741,https://biolit.fr/observations/observation-89741/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageUqCMoC-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagekpO5AD-scaled.jpg,,TRUE,Identifiable +N1,89744,Sortie #89744,https://biolit.fr/sorties/sortie-89744/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage2WZ3cd-scaled.jpg,04/01/2025,17.000009,17.0:47,49.7408330,0.306667000000000,Université Le Havre Normandie (UMR SEBIO),Yport,,,,,,,,,, +N1,89750,Sortie #89750,https://biolit.fr/sorties/sortie-89750/,Salé Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173003-scaled.jpg,04/01/2025,17.0:11,17.0000000,49.7401950000000,0.306941000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89753,Observation #89753,https://biolit.fr/observations/observation-89753/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173003-scaled.jpg,,TRUE,Identifiable +N1,89750,Sortie #89750,https://biolit.fr/sorties/sortie-89750/,Salé Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173003-scaled.jpg,04/01/2025,17.0:11,17.0000000,49.7401950000000,0.306941000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89759,Observation #89759,https://biolit.fr/observations/observation-89759/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172021-scaled.jpg,,TRUE,Identifiable +N1,89750,Sortie #89750,https://biolit.fr/sorties/sortie-89750/,Salé Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173003-scaled.jpg,04/01/2025,17.0:11,17.0000000,49.7401950000000,0.306941000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89763,Observation #89763,https://biolit.fr/observations/observation-89763/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172958-scaled.jpg,,TRUE,Identifiable +N1,89750,Sortie #89750,https://biolit.fr/sorties/sortie-89750/,Salé Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173003-scaled.jpg,04/01/2025,17.0:11,17.0000000,49.7401950000000,0.306941000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89767,Observation #89767,https://biolit.fr/observations/observation-89767/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172408-scaled.jpg,,TRUE,Identifiable +N1,89750,Sortie #89750,https://biolit.fr/sorties/sortie-89750/,Salé Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172408-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173003-scaled.jpg,04/01/2025,17.0:11,17.0000000,49.7401950000000,0.306941000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89769,Observation #89769,https://biolit.fr/observations/observation-89769/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_172600-scaled.jpg,,TRUE,Identifiable +N1,89756,Sortie #89756,https://biolit.fr/sorties/sortie-89756/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage8xf555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageEEFYIu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagenhaRRe-scaled.jpg,04/01/2025,16.0000000,17.0000000,49.7408330,0.306667000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89757,Observation #89757,https://biolit.fr/observations/observation-89757/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage8xf555-scaled.jpg,,TRUE,Identifiable +N1,89756,Sortie #89756,https://biolit.fr/sorties/sortie-89756/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage8xf555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageEEFYIu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagenhaRRe-scaled.jpg,04/01/2025,16.0000000,17.0000000,49.7408330,0.306667000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89761,Observation #89761,https://biolit.fr/observations/observation-89761/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageEEFYIu-scaled.jpg,,TRUE,Identifiable +N1,89756,Sortie #89756,https://biolit.fr/sorties/sortie-89756/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage8xf555-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageEEFYIu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagenhaRRe-scaled.jpg,04/01/2025,16.0000000,17.0000000,49.7408330,0.306667000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89765,Observation #89765,https://biolit.fr/observations/observation-89765/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagenhaRRe-scaled.jpg,,TRUE,Identifiable +N1,89780,Sortie #89780,https://biolit.fr/sorties/sortie-89780/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagesV57oc-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageitljs6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageNBk2v6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageuvaCAb-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage9mKgtT-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageGm3nDo-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageDH7dtX-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage6CD8Rr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagetSWOL1-scaled.jpg,04/01/2025,17.000009,17.0:47,49.7408330,0.306667000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89782,Observation #89782,https://biolit.fr/observations/observation-89782/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageitljs6-scaled.jpg,,,Identifiable +N1,89780,Sortie #89780,https://biolit.fr/sorties/sortie-89780/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagesV57oc-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageitljs6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageNBk2v6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageuvaCAb-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage9mKgtT-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageGm3nDo-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageDH7dtX-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage6CD8Rr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagetSWOL1-scaled.jpg,04/01/2025,17.000009,17.0:47,49.7408330,0.306667000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89784,Observation #89784,https://biolit.fr/observations/observation-89784/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageuvaCAb-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageDH7dtX-scaled.jpg,,TRUE,Identifiable +N1,89780,Sortie #89780,https://biolit.fr/sorties/sortie-89780/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagesV57oc-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageitljs6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageNBk2v6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageuvaCAb-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage9mKgtT-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageGm3nDo-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageDH7dtX-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage6CD8Rr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagetSWOL1-scaled.jpg,04/01/2025,17.000009,17.0:47,49.7408330,0.306667000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89791,Observation #89791,https://biolit.fr/observations/observation-89791/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagesV57oc-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage6CD8Rr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageGm3nDo-scaled.jpg,,TRUE,Identifiable +N1,89780,Sortie #89780,https://biolit.fr/sorties/sortie-89780/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagesV57oc-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageitljs6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageNBk2v6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageuvaCAb-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage9mKgtT-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageGm3nDo-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageDH7dtX-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage6CD8Rr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagetSWOL1-scaled.jpg,04/01/2025,17.000009,17.0:47,49.7408330,0.306667000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89797,Observation #89797,https://biolit.fr/observations/observation-89797/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagetSWOL1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageNBk2v6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage9mKgtT-scaled.jpg,,TRUE,Identifiable +N1,89796,Sortie #89796,https://biolit.fr/sorties/sortie-89796/,Salé Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173903-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174800-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174752-scaled.jpg,04/01/2025,17.0:34,17.0:49,49.7401240000000,0.307158000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89799,Observation #89799,https://biolit.fr/observations/observation-89799/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173903-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174800-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174407-scaled.jpg,,TRUE,Identifiable +N1,89796,Sortie #89796,https://biolit.fr/sorties/sortie-89796/,Salé Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173903-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174800-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174752-scaled.jpg,04/01/2025,17.0:34,17.0:49,49.7401240000000,0.307158000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89802,Observation #89802,https://biolit.fr/observations/observation-89802/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174800-scaled.jpg,,TRUE,Identifiable +N1,89796,Sortie #89796,https://biolit.fr/sorties/sortie-89796/,Salé Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174407-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173913-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173903-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174800-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174752-scaled.jpg,04/01/2025,17.0:34,17.0:49,49.7401240000000,0.307158000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89804,Observation #89804,https://biolit.fr/observations/observation-89804/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_173921-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_174432-scaled.jpg,,TRUE,Identifiable +N1,89817,Sortie #89817,https://biolit.fr/sorties/sortie-89817/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagelH9BhS-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageZyXaSM-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImaget7b7iH-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagevlmRv2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageY6b8b1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageaC1c8q-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageBN3cuu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageP7i7bZ-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageJA7A6C-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage54A56W-scaled.jpg,04/01/2025,17.0:47,17.0:58,49.7408330,0.306944000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89818,Observation #89818,https://biolit.fr/observations/observation-89818/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageP7i7bZ-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagevlmRv2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageY6b8b1-scaled.jpg,,TRUE,Identifiable +N1,89817,Sortie #89817,https://biolit.fr/sorties/sortie-89817/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagelH9BhS-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageZyXaSM-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImaget7b7iH-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagevlmRv2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageY6b8b1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageaC1c8q-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageBN3cuu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageP7i7bZ-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageJA7A6C-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage54A56W-scaled.jpg,04/01/2025,17.0:47,17.0:58,49.7408330,0.306944000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89821,Observation #89821,https://biolit.fr/observations/observation-89821/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagelH9BhS-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageZyXaSM-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageaC1c8q-scaled.jpg,,TRUE,Identifiable +N1,89817,Sortie #89817,https://biolit.fr/sorties/sortie-89817/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagelH9BhS-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageZyXaSM-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImaget7b7iH-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImagevlmRv2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageY6b8b1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageaC1c8q-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageBN3cuu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageP7i7bZ-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageJA7A6C-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage54A56W-scaled.jpg,04/01/2025,17.0:47,17.0:58,49.7408330,0.306944000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89824,Observation #89824,https://biolit.fr/observations/observation-89824/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageBN3cuu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage54A56W-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImaget7b7iH-scaled.jpg,,TRUE,Identifiable +N1,89832,Sortie #89832,https://biolit.fr/sorties/sortie-89832/,Salé Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175953-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175948-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175758-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175443-scaled.jpg,04/01/2025,17.0:51,18.0:15,49.7402660000000,0.3067200000000,Université Le Havre Normandie (UMR SEBIO),Yport,89834,Observation #89834,https://biolit.fr/observations/observation-89834/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175443-scaled.jpg,,TRUE,Identifiable +N1,89832,Sortie #89832,https://biolit.fr/sorties/sortie-89832/,Salé Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175953-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175948-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175758-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175443-scaled.jpg,04/01/2025,17.0:51,18.0:15,49.7402660000000,0.3067200000000,Université Le Havre Normandie (UMR SEBIO),Yport,89836,Observation #89836,https://biolit.fr/observations/observation-89836/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175953-scaled.jpg,,TRUE,Identifiable +N1,89832,Sortie #89832,https://biolit.fr/sorties/sortie-89832/,Salé Inès,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175953-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175751-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175948-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175758-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175443-scaled.jpg,04/01/2025,17.0:51,18.0:15,49.7402660000000,0.3067200000000,Université Le Havre Normandie (UMR SEBIO),Yport,89838,Observation #89838,https://biolit.fr/observations/observation-89838/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175948-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5358fed83f49e3943b254c5158c7bb64/2025/04/20250401_175758-scaled.jpg,,TRUE,Identifiable +N1,89849,Sortie #89849,https://biolit.fr/sorties/sortie-89849/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage99H5qq-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageJV7cSd-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageaGSj0N-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage8s88Qc-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageEsN1rW-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageRfsJsE-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageOgiyia-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageJqAIWS-scaled.jpg,04/01/2025,17.0:58,18.0000000,49.7408330,0.306944000000000,Université Le Havre Normandie (UMR SEBIO),Yport,,,,,,,,,, +N1,89868,Sortie #89868,https://biolit.fr/sorties/sortie-89868/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage6UoU3c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageM0SInv-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage0FQGFX-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageGCpyQt-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage2FNIN9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageri6L2q-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageBzJQ1V-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage7dFOTF-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageQ6Gen4-scaled.jpg,04/01/2025,17.0:58,18.0000000,49.7408330,0.306944000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89871,Observation #89871,https://biolit.fr/observations/observation-89871/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage2FNIN9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage0FQGFX-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage6UoU3c-scaled.jpg,,TRUE,Identifiable +N1,89868,Sortie #89868,https://biolit.fr/sorties/sortie-89868/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage6UoU3c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageM0SInv-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage0FQGFX-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageGCpyQt-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage2FNIN9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageri6L2q-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageBzJQ1V-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage7dFOTF-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageQ6Gen4-scaled.jpg,04/01/2025,17.0:58,18.0000000,49.7408330,0.306944000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89873,Observation #89873,https://biolit.fr/observations/observation-89873/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageQ6Gen4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage7dFOTF-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageM0SInv-scaled.jpg,,TRUE,Identifiable +N1,89868,Sortie #89868,https://biolit.fr/sorties/sortie-89868/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage6UoU3c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageM0SInv-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage0FQGFX-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageGCpyQt-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage2FNIN9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageri6L2q-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageBzJQ1V-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage7dFOTF-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageQ6Gen4-scaled.jpg,04/01/2025,17.0:58,18.0000000,49.7408330,0.306944000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89876,Observation #89876,https://biolit.fr/observations/observation-89876/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageGCpyQt-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage7dFOTF-scaled.jpg,,TRUE,Identifiable +N1,89868,Sortie #89868,https://biolit.fr/sorties/sortie-89868/,Mouchelet Zoé,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage6UoU3c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageM0SInv-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage0FQGFX-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageGCpyQt-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage2FNIN9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageri6L2q-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageBzJQ1V-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage7dFOTF-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImageQ6Gen4-scaled.jpg,04/01/2025,17.0:58,18.0000000,49.7408330,0.306944000000000,Université Le Havre Normandie (UMR SEBIO),Yport,89878,Observation #89878,https://biolit.fr/observations/observation-89878/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/265badc01674362335ff1e3b12c87f8c/2025/04/tempImage0FQGFX-scaled.jpg,,,Identifiable +N1,89920,Sortie #89920,https://biolit.fr/sorties/sortie-89920/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/04/Obs-pointe-du-decolle-scaled.jpg,04/01/2025,17.0000000,17.0000000,48.64272300000,-2.11209500000000,,Pointe du Décollé,89921,Observation #89921,https://biolit.fr/observations/observation-89921/,Macropodia deflexa,Macropode à rostre plongeant,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/04/Obs-pointe-du-decolle-scaled.jpg,,TRUE,Ne sais pas +N1,90032,Sortie #90032,https://biolit.fr/sorties/sortie-90032/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7532-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7531-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7528-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7526-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7527-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7523-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7522-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7520-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7519-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7517-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7518-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7524-scaled.jpeg,04/01/2025,17.0:15,17.0:45,48.6426070000000,-2.11182100000000,Planète Mer (antenne Dinard),Grande Plage de Saint Lunaire,,,,,,,,,, +N1,90034,Sortie #90034,https://biolit.fr/sorties/sortie-90034/,EXPLORE & PRESERVE E& P,https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/IMG20250403112900-scaled.jpg,04/03/2025,11.0:15,11.0000000,43.0091670000000,6.21761300000000,Explore & Préserve,Plage Du Lequin,,,,,,,,,, +N1,90043,Sortie #90043,https://biolit.fr/sorties/sortie-90043/,Chatelier Marie,https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5423-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5424-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5425-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5419-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5428-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5453-scaled.jpeg,04/04/2025,9.0:25,10.0000000,48.5766650000000,-1.9831770000000,cogitOcean,Pointe de Garel - Saint-Suliax,90044,Observation #90044,https://biolit.fr/observations/observation-90044/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5425-scaled.jpeg,,,Identifiable +N1,90043,Sortie #90043,https://biolit.fr/sorties/sortie-90043/,Chatelier Marie,https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5423-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5424-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5425-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5419-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5428-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5453-scaled.jpeg,04/04/2025,9.0:25,10.0000000,48.5766650000000,-1.9831770000000,cogitOcean,Pointe de Garel - Saint-Suliax,90048,Observation #90048,https://biolit.fr/observations/observation-90048/,Pelvetia canaliculata,Pelvétie,,https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5419-scaled.jpeg,,TRUE,Identifiable +N1,90043,Sortie #90043,https://biolit.fr/sorties/sortie-90043/,Chatelier Marie,https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5423-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5424-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5425-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5419-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5428-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5453-scaled.jpeg,04/04/2025,9.0:25,10.0000000,48.5766650000000,-1.9831770000000,cogitOcean,Pointe de Garel - Saint-Suliax,90050,Observation #90050,https://biolit.fr/observations/observation-90050/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/9e8d1e08a83fc458e1a276e646b69933/2025/04/IMG_5428-scaled.jpeg,,TRUE,Identifiable +N1,90082,Sortie #90082,https://biolit.fr/sorties/sortie-90082/,Dariel Antoinette,https://biolit.fr/wp-content/uploads/jet-form-builder/e48aa105691edf2bad23b668769741c1/2025/04/IMG-20250405-WA0032-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e48aa105691edf2bad23b668769741c1/2025/04/20250405_192559.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e48aa105691edf2bad23b668769741c1/2025/04/Screenshot_20250405_192754_Google.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e48aa105691edf2bad23b668769741c1/2025/04/IMG-20250405-WA0030-scaled.jpeg,04/05/2025,18.0:29,19.0:59,42.1829360,8.4937150,,"Au large d'Ajaccio, Chiuni / Corse",90083,Observation #90083,https://biolit.fr/observations/observation-90083/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/e48aa105691edf2bad23b668769741c1/2025/04/IMG-20250405-WA0032-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e48aa105691edf2bad23b668769741c1/2025/04/20250405_192559.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e48aa105691edf2bad23b668769741c1/2025/04/IMG-20250405-WA0030-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e48aa105691edf2bad23b668769741c1/2025/04/Screenshot_20250405_192754_Google.jpg,,TRUE, +N1,90105,Sortie #90105,https://biolit.fr/sorties/sortie-90105/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-scaled.jpg,04/01/2025,15.0000000,16.0000000,48.7025360000000,-1.84706000000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90106,Observation #90106,https://biolit.fr/observations/observation-90106/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-4-scaled.jpg,,TRUE,Identifiable +N1,90105,Sortie #90105,https://biolit.fr/sorties/sortie-90105/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-scaled.jpg,04/01/2025,15.0000000,16.0000000,48.7025360000000,-1.84706000000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90108,Observation #90108,https://biolit.fr/observations/observation-90108/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-indeterminee-scaled.jpg,,,Identifiable +N1,90105,Sortie #90105,https://biolit.fr/sorties/sortie-90105/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-scaled.jpg,04/01/2025,15.0000000,16.0000000,48.7025360000000,-1.84706000000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90110,Observation #90110,https://biolit.fr/observations/observation-90110/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Asterie-bossue-scaled.jpg,,TRUE,Identifiable +N1,90105,Sortie #90105,https://biolit.fr/sorties/sortie-90105/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-scaled.jpg,04/01/2025,15.0000000,16.0000000,48.7025360000000,-1.84706000000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90112,Observation #90112,https://biolit.fr/observations/observation-90112/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-perceur-scaled.jpg,,,Identifiable +N1,90105,Sortie #90105,https://biolit.fr/sorties/sortie-90105/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-scaled.jpg,04/01/2025,15.0000000,16.0000000,48.7025360000000,-1.84706000000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90114,Observation #90114,https://biolit.fr/observations/observation-90114/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-3-scaled.jpg,,,Identifiable +N1,90105,Sortie #90105,https://biolit.fr/sorties/sortie-90105/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-scaled.jpg,04/01/2025,15.0000000,16.0000000,48.7025360000000,-1.84706000000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90116,Observation #90116,https://biolit.fr/observations/observation-90116/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-2-scaled.jpg,,TRUE,Identifiable +N1,90105,Sortie #90105,https://biolit.fr/sorties/sortie-90105/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-scaled.jpg,04/01/2025,15.0000000,16.0000000,48.7025360000000,-1.84706000000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90118,Observation #90118,https://biolit.fr/observations/observation-90118/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-3-scaled.jpg,,TRUE,Identifiable +N1,90105,Sortie #90105,https://biolit.fr/sorties/sortie-90105/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-scaled.jpg,04/01/2025,15.0000000,16.0000000,48.7025360000000,-1.84706000000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90120,Observation #90120,https://biolit.fr/observations/observation-90120/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-2-scaled.jpg,,,Identifiable +N1,90105,Sortie #90105,https://biolit.fr/sorties/sortie-90105/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-verte-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Blennie-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Crepidule-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-scaled.jpg,04/01/2025,15.0000000,16.0000000,48.7025360000000,-1.84706000000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90122,Observation #90122,https://biolit.fr/observations/observation-90122/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-scaled.jpg,,TRUE,Identifiable +N1,90144,Sortie #90144,https://biolit.fr/sorties/sortie-90144/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-10-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-11-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-12-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-13-scaled.jpg,04/01/2025,15.0000000,16.0000000,48.7025540000000,-1.84697000000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90145,Observation #90145,https://biolit.fr/observations/observation-90145/,Lepadogaster candolii,Porte-écuelle de Candolle,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Lepadogaster-3-scaled.jpg,,,Identifiable +N1,90144,Sortie #90144,https://biolit.fr/sorties/sortie-90144/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-10-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-11-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-12-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-13-scaled.jpg,04/01/2025,15.0000000,16.0000000,48.7025540000000,-1.84697000000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90147,Observation #90147,https://biolit.fr/observations/observation-90147/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-scaled.jpg,,TRUE,Identifiable +N1,90144,Sortie #90144,https://biolit.fr/sorties/sortie-90144/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-10-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-11-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-12-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-13-scaled.jpg,04/01/2025,15.0000000,16.0000000,48.7025540000000,-1.84697000000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90149,Observation #90149,https://biolit.fr/observations/observation-90149/,Nerophis ophidion,Nérophis ophidion,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nerophis-2-scaled.jpg,,,Identifiable +N1,90144,Sortie #90144,https://biolit.fr/sorties/sortie-90144/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-10-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-11-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-12-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-13-scaled.jpg,04/01/2025,15.0000000,16.0000000,48.7025540000000,-1.84697000000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90151,Observation #90151,https://biolit.fr/observations/observation-90151/,Aeolidia papillosa,Eolis à papilles,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-13-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-12-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-11-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-10-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Nudibranche-violet-indetermine-8-scaled.jpg,,,Identifiable +N1,90185,Sortie #90185,https://biolit.fr/sorties/sortie-90185/,barrera Felix,https://biolit.fr/wp-content/uploads/jet-form-builder/5d9e9f2448db1d798b280018d67689de/2025/04/17442035949276393112060166072624-scaled.jpg,04/09/2025,14.0000000,14.0:59,43.4535340000000,3.81150200000000,CPIE Littoral d'Occitanie,plage des aresquiers,90190,Observation #90190,https://biolit.fr/observations/observation-90190/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/5d9e9f2448db1d798b280018d67689de/2025/04/17442035949276393112060166072624-scaled.jpg,,TRUE,Identifiable +N1,90189,Sortie #90189,https://biolit.fr/sorties/sortie-90189/,Matringe Aloyse,https://biolit.fr/wp-content/uploads/jet-form-builder/d3e6214e120e66b25ed1c86e40478406/2025/04/1000055303-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d3e6214e120e66b25ed1c86e40478406/2025/04/1000055304-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d3e6214e120e66b25ed1c86e40478406/2025/04/1000055299-scaled.jpg,04/09/2025,14.0:25,14.0:45,43.4541620,3.81385,,Plage des arsquiers,90192,Observation #90192,https://biolit.fr/observations/observation-90192/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d3e6214e120e66b25ed1c86e40478406/2025/04/1000055303-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d3e6214e120e66b25ed1c86e40478406/2025/04/1000055299-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d3e6214e120e66b25ed1c86e40478406/2025/04/1000055304-scaled.jpg,,,Ne sais pas +N1,90189,Sortie #90189,https://biolit.fr/sorties/sortie-90189/,Matringe Aloyse,https://biolit.fr/wp-content/uploads/jet-form-builder/d3e6214e120e66b25ed1c86e40478406/2025/04/1000055303-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d3e6214e120e66b25ed1c86e40478406/2025/04/1000055304-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d3e6214e120e66b25ed1c86e40478406/2025/04/1000055299-scaled.jpg,04/09/2025,14.0:25,14.0:45,43.4541620,3.81385,,Plage des arsquiers,90194,Observation #90194,https://biolit.fr/observations/observation-90194/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d3e6214e120e66b25ed1c86e40478406/2025/04/1000055299-scaled.jpg,,,Ne sais pas +N1,90208,Sortie #90208,https://biolit.fr/sorties/sortie-90208/,Zamora Marco,https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011041.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011044-scaled.jpg,04/10/2025,9.0000000,11.0000000,43.214876,5.342933,,Anse de la Maronaise,90209,Observation #90209,https://biolit.fr/observations/observation-90209/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011041.jpg,,TRUE,Identifiable +N1,90208,Sortie #90208,https://biolit.fr/sorties/sortie-90208/,Zamora Marco,https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011041.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011044-scaled.jpg,04/10/2025,9.0000000,11.0000000,43.214876,5.342933,,Anse de la Maronaise,90211,Observation #90211,https://biolit.fr/observations/observation-90211/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011045-scaled.jpg,,TRUE,Identifiable +N1,90208,Sortie #90208,https://biolit.fr/sorties/sortie-90208/,Zamora Marco,https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011041.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011044-scaled.jpg,04/10/2025,9.0000000,11.0000000,43.214876,5.342933,,Anse de la Maronaise,90213,Observation #90213,https://biolit.fr/observations/observation-90213/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011045-scaled.jpg,,TRUE,Identifiable +N1,90208,Sortie #90208,https://biolit.fr/sorties/sortie-90208/,Zamora Marco,https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011048-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011041.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011044-scaled.jpg,04/10/2025,9.0000000,11.0000000,43.214876,5.342933,,Anse de la Maronaise,90215,Observation #90215,https://biolit.fr/observations/observation-90215/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011044-scaled.jpg,,FALSE,Identifiable +N1,90229,Sortie #90229,https://biolit.fr/sorties/sortie-90229/,Zamora Marco,https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011053-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011050-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011051-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011052-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011049-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011048-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011047-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011046-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011045-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011044-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011043-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/797660bffb74b3ea072353514461bb2f/2025/04/1000011041-1.jpg,04/10/2025,9.0000000,11.0000000,43.2670980,5.3889440,,Anse de la Maronaise,,,,,,,,,, +N1,90239,Sortie #90239,https://biolit.fr/sorties/sortie-90239/,CHIMERE PATTERSON INGRID,https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132430.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132435.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132438.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132446.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132454.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132459.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132506.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132551.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132638.jpg,04/10/2025,9.0000000,11.0000000,43.1995700000000,5.38330100000,,ANSE DE LA MARONAISE,90244,Observation #90244,https://biolit.fr/observations/observation-90244/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132430.jpg,,TRUE,Identifiable +N1,90239,Sortie #90239,https://biolit.fr/sorties/sortie-90239/,CHIMERE PATTERSON INGRID,https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132430.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132435.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132438.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132446.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132454.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132459.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132506.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132551.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132638.jpg,04/10/2025,9.0000000,11.0000000,43.1995700000000,5.38330100000,,ANSE DE LA MARONAISE,90259,Observation #90259,https://biolit.fr/observations/observation-90259/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132435.jpg,,,Ne sais pas +N1,90239,Sortie #90239,https://biolit.fr/sorties/sortie-90239/,CHIMERE PATTERSON INGRID,https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132430.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132435.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132438.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132446.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132454.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132459.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132506.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132551.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132638.jpg,04/10/2025,9.0000000,11.0000000,43.1995700000000,5.38330100000,,ANSE DE LA MARONAISE,90261,Observation #90261,https://biolit.fr/observations/observation-90261/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132638.jpg,,,Ne sais pas +N1,90239,Sortie #90239,https://biolit.fr/sorties/sortie-90239/,CHIMERE PATTERSON INGRID,https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132430.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132435.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132438.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132446.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132454.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132459.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132506.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132551.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132638.jpg,04/10/2025,9.0000000,11.0000000,43.1995700000000,5.38330100000,,ANSE DE LA MARONAISE,90263,Observation #90263,https://biolit.fr/observations/observation-90263/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132551.jpg,,,Ne sais pas +N1,90239,Sortie #90239,https://biolit.fr/sorties/sortie-90239/,CHIMERE PATTERSON INGRID,https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132430.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132435.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132438.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132446.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132454.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132459.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132506.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132551.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132638.jpg,04/10/2025,9.0000000,11.0000000,43.1995700000000,5.38330100000,,ANSE DE LA MARONAISE,90265,Observation #90265,https://biolit.fr/observations/observation-90265/,Lophocladia lallemandii,Lophoclade de Lallemand,,https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132438.jpg,,,Identifiable +N1,90254,Sortie #90254,https://biolit.fr/sorties/sortie-90254/,CHIMERE PATTERSON INGRID,https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132446-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132438-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132454-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132506-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132430-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132638-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132435-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0be7489c3377b1cfbfa44708bb7f4129/2025/04/IMG_20250410_132551-1.jpg,04/10/2025,9.0000000,11.0000000,43.1621840000000,5.33935500000,,,,,,,,,,,, +N1,90310,Sortie #90310,https://biolit.fr/sorties/sortie-90310/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153121-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153122-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153321-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152333-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9206,1.0891,Eco2Nature,Sainte-Marguerite-sur-Mer,90311,Observation #90311,https://biolit.fr/observations/observation-90311/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150746-scaled.jpg,,TRUE,Identifiable +N1,90310,Sortie #90310,https://biolit.fr/sorties/sortie-90310/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153121-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153122-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153321-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152333-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9206,1.0891,Eco2Nature,Sainte-Marguerite-sur-Mer,90313,Observation #90313,https://biolit.fr/observations/observation-90313/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150850-scaled.jpg,,TRUE,Identifiable +N1,90310,Sortie #90310,https://biolit.fr/sorties/sortie-90310/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153121-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153122-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153321-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152333-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9206,1.0891,Eco2Nature,Sainte-Marguerite-sur-Mer,90315,Observation #90315,https://biolit.fr/observations/observation-90315/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153321-scaled.jpg,,TRUE,Identifiable +N1,90310,Sortie #90310,https://biolit.fr/sorties/sortie-90310/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153121-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153122-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153321-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152333-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9206,1.0891,Eco2Nature,Sainte-Marguerite-sur-Mer,90317,Observation #90317,https://biolit.fr/observations/observation-90317/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151058-scaled.jpg,,TRUE,Identifiable +N1,90310,Sortie #90310,https://biolit.fr/sorties/sortie-90310/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153121-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153122-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153321-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152333-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9206,1.0891,Eco2Nature,Sainte-Marguerite-sur-Mer,90319,Observation #90319,https://biolit.fr/observations/observation-90319/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152252-scaled.jpg,,TRUE,Identifiable +N1,90310,Sortie #90310,https://biolit.fr/sorties/sortie-90310/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153121-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153122-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153321-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152333-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9206,1.0891,Eco2Nature,Sainte-Marguerite-sur-Mer,90321,Observation #90321,https://biolit.fr/observations/observation-90321/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152333-scaled.jpg,,TRUE,Identifiable +N1,90310,Sortie #90310,https://biolit.fr/sorties/sortie-90310/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153121-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153122-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153321-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152333-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9206,1.0891,Eco2Nature,Sainte-Marguerite-sur-Mer,90323,Observation #90323,https://biolit.fr/observations/observation-90323/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153122-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153121-scaled.jpg,,TRUE,Identifiable +N1,90310,Sortie #90310,https://biolit.fr/sorties/sortie-90310/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153121-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153122-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153310-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153321-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150850-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152333-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9206,1.0891,Eco2Nature,Sainte-Marguerite-sur-Mer,90325,Observation #90325,https://biolit.fr/observations/observation-90325/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_150954-scaled.jpg,,TRUE,Identifiable +N1,90347,Sortie #90347,https://biolit.fr/sorties/sortie-90347/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153956-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152545-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151808-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151050-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9220740,1.0735260,Eco2Nature,Sainte-Marguerite-sur-Mer,90403,Observation #90403,https://biolit.fr/observations/observation-90403/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152545-scaled.jpg,,TRUE,Identifiable +N1,90347,Sortie #90347,https://biolit.fr/sorties/sortie-90347/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153956-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152545-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151808-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151050-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9220740,1.0735260,Eco2Nature,Sainte-Marguerite-sur-Mer,90405,Observation #90405,https://biolit.fr/observations/observation-90405/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151446-scaled.jpg,,TRUE,Identifiable +N1,90347,Sortie #90347,https://biolit.fr/sorties/sortie-90347/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153956-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152545-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151808-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151050-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9220740,1.0735260,Eco2Nature,Sainte-Marguerite-sur-Mer,90407,Observation #90407,https://biolit.fr/observations/observation-90407/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151808-scaled.jpg,,TRUE,Identifiable +N1,90347,Sortie #90347,https://biolit.fr/sorties/sortie-90347/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153956-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152545-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151808-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151050-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9220740,1.0735260,Eco2Nature,Sainte-Marguerite-sur-Mer,90409,Observation #90409,https://biolit.fr/observations/observation-90409/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151855-scaled.jpg,,TRUE,Identifiable +N1,90347,Sortie #90347,https://biolit.fr/sorties/sortie-90347/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153956-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152545-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151808-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151050-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9220740,1.0735260,Eco2Nature,Sainte-Marguerite-sur-Mer,90411,Observation #90411,https://biolit.fr/observations/observation-90411/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151911-scaled.jpg,,TRUE,Identifiable +N1,90347,Sortie #90347,https://biolit.fr/sorties/sortie-90347/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153956-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152545-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151808-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151050-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9220740,1.0735260,Eco2Nature,Sainte-Marguerite-sur-Mer,90413,Observation #90413,https://biolit.fr/observations/observation-90413/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152012-scaled.jpg,,TRUE,Identifiable +N1,90347,Sortie #90347,https://biolit.fr/sorties/sortie-90347/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153956-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152545-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151808-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151050-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9220740,1.0735260,Eco2Nature,Sainte-Marguerite-sur-Mer,90415,Observation #90415,https://biolit.fr/observations/observation-90415/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152032-scaled.jpg,,TRUE,Identifiable +N1,90347,Sortie #90347,https://biolit.fr/sorties/sortie-90347/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153956-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152545-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151808-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151050-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9220740,1.0735260,Eco2Nature,Sainte-Marguerite-sur-Mer,90417,Observation #90417,https://biolit.fr/observations/observation-90417/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152949-scaled.jpg,,TRUE,Identifiable +N1,90347,Sortie #90347,https://biolit.fr/sorties/sortie-90347/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153956-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152545-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151808-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151050-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9220740,1.0735260,Eco2Nature,Sainte-Marguerite-sur-Mer,90419,Observation #90419,https://biolit.fr/observations/observation-90419/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153058-scaled.jpg,,TRUE,Identifiable +N1,90347,Sortie #90347,https://biolit.fr/sorties/sortie-90347/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153956-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152545-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151808-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151050-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9220740,1.0735260,Eco2Nature,Sainte-Marguerite-sur-Mer,90421,Observation #90421,https://biolit.fr/observations/observation-90421/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153539-scaled.jpg,,TRUE,Identifiable +N1,90347,Sortie #90347,https://biolit.fr/sorties/sortie-90347/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153956-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152545-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151808-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151050-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9220740,1.0735260,Eco2Nature,Sainte-Marguerite-sur-Mer,90423,Observation #90423,https://biolit.fr/observations/observation-90423/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153939-scaled.jpg,,TRUE,Identifiable +N1,90347,Sortie #90347,https://biolit.fr/sorties/sortie-90347/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153956-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152545-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151808-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151050-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9220740,1.0735260,Eco2Nature,Sainte-Marguerite-sur-Mer,90425,Observation #90425,https://biolit.fr/observations/observation-90425/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153956-scaled.jpg,,TRUE,Identifiable +N1,90347,Sortie #90347,https://biolit.fr/sorties/sortie-90347/,BONVOISIN Victor,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153956-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153539-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153229-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_153039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152949-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152545-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152032-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_152012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151855-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151808-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_151050-scaled.jpg,04/08/2025,14.0:45,15.0:45,49.9220740,1.0735260,Eco2Nature,Sainte-Marguerite-sur-Mer,90427,Observation #90427,https://biolit.fr/observations/observation-90427/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5327386d8fc3c8f35b388d8676977eeb/2025/04/IMG_20250408_154024-scaled.jpg,,TRUE,Identifiable +N1,90371,Sortie #90371,https://biolit.fr/sorties/sortie-90371/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-2-scaled.jpg,04/10/2025,14.0000000,15.0000000,48.7026130000000,-1.84724800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90372,Observation #90372,https://biolit.fr/observations/observation-90372/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-2-scaled.jpg,,TRUE,Identifiable +N1,90371,Sortie #90371,https://biolit.fr/sorties/sortie-90371/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-2-scaled.jpg,04/10/2025,14.0000000,15.0000000,48.7026130000000,-1.84724800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90374,Observation #90374,https://biolit.fr/observations/observation-90374/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-2-scaled.jpg,,,Identifiable +N1,90371,Sortie #90371,https://biolit.fr/sorties/sortie-90371/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-2-scaled.jpg,04/10/2025,14.0000000,15.0000000,48.7026130000000,-1.84724800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90376,Observation #90376,https://biolit.fr/observations/observation-90376/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-2-scaled.jpg,,TRUE,Identifiable +N1,90371,Sortie #90371,https://biolit.fr/sorties/sortie-90371/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-2-scaled.jpg,04/10/2025,14.0000000,15.0000000,48.7026130000000,-1.84724800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90378,Observation #90378,https://biolit.fr/observations/observation-90378/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-2-scaled.jpg,,,Identifiable +N1,90371,Sortie #90371,https://biolit.fr/sorties/sortie-90371/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-2-scaled.jpg,04/10/2025,14.0000000,15.0000000,48.7026130000000,-1.84724800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90380,Observation #90380,https://biolit.fr/observations/observation-90380/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-1-scaled.jpg,,TRUE,Identifiable +N1,90371,Sortie #90371,https://biolit.fr/sorties/sortie-90371/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-2-scaled.jpg,04/10/2025,14.0000000,15.0000000,48.7026130000000,-1.84724800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90382,Observation #90382,https://biolit.fr/observations/observation-90382/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150521-scaled.jpg,,,Identifiable +N1,90371,Sortie #90371,https://biolit.fr/sorties/sortie-90371/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-2-scaled.jpg,04/10/2025,14.0000000,15.0000000,48.7026130000000,-1.84724800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90384,Observation #90384,https://biolit.fr/observations/observation-90384/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150518-scaled.jpg,,,Identifiable +N1,90371,Sortie #90371,https://biolit.fr/sorties/sortie-90371/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-2-scaled.jpg,04/10/2025,14.0000000,15.0000000,48.7026130000000,-1.84724800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90386,Observation #90386,https://biolit.fr/observations/observation-90386/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-1-scaled.jpg,,TRUE,Identifiable +N1,90371,Sortie #90371,https://biolit.fr/sorties/sortie-90371/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-2-scaled.jpg,04/10/2025,14.0000000,15.0000000,48.7026130000000,-1.84724800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90388,Observation #90388,https://biolit.fr/observations/observation-90388/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Patelle-scaled.jpg,,TRUE,Identifiable +N1,90371,Sortie #90371,https://biolit.fr/sorties/sortie-90371/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-2-scaled.jpg,04/10/2025,14.0000000,15.0000000,48.7026130000000,-1.84724800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90390,Observation #90390,https://biolit.fr/observations/observation-90390/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ponte-de-pourpre-scaled.jpg,,TRUE,Identifiable +N1,90371,Sortie #90371,https://biolit.fr/sorties/sortie-90371/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-2-scaled.jpg,04/10/2025,14.0000000,15.0000000,48.7026130000000,-1.84724800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90395,Observation #90395,https://biolit.fr/observations/observation-90395/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Porcellane-scaled.jpg,,TRUE,Identifiable +N1,90371,Sortie #90371,https://biolit.fr/sorties/sortie-90371/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-2-scaled.jpg,04/10/2025,14.0000000,15.0000000,48.7026130000000,-1.84724800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90397,Observation #90397,https://biolit.fr/observations/observation-90397/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Pourpre-scaled.jpg,,TRUE,Identifiable +N1,90371,Sortie #90371,https://biolit.fr/sorties/sortie-90371/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-2-scaled.jpg,04/10/2025,14.0000000,15.0000000,48.7026130000000,-1.84724800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90399,Observation #90399,https://biolit.fr/observations/observation-90399/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tomate-de-mer-scaled.jpg,,TRUE,Identifiable +N1,90371,Sortie #90371,https://biolit.fr/sorties/sortie-90371/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ascidie-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Eponge-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/IMG_20250410_150521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-2-scaled.jpg,04/10/2025,14.0000000,15.0000000,48.7026130000000,-1.84724800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,90401,Observation #90401,https://biolit.fr/observations/observation-90401/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Tourteau-2-scaled.jpg,,TRUE,Identifiable +N1,90468,Sortie #90468,https://biolit.fr/sorties/sortie-90468/,Carré Laelys,https://biolit.fr/wp-content/uploads/jet-form-builder/5af00f00ca53472f05d6dec6879268f9/2025/04/IMG_3522-scaled.jpeg,12/11/2024,9.0000000,17.0000000,49.0740190000000,-1.61020500000000,,Blainville-sur-mer,,,,,,,,,, +N1,90470,Sortie #90470,https://biolit.fr/sorties/sortie-90470/,Carré Laelys,https://biolit.fr/wp-content/uploads/jet-form-builder/5af00f00ca53472f05d6dec6879268f9/2025/04/IMG_8623-scaled.jpeg,2/27/2025 0:00,11.0000000,13.0000000,48.6089630000000,-2.18872500000000,Saint Jacut Environnement,Saint Jacut de la mer,90471,Observation #90471,https://biolit.fr/observations/observation-90471/,Scyliorhinus canicula,Capsule de petite roussette,,https://biolit.fr/wp-content/uploads/jet-form-builder/5af00f00ca53472f05d6dec6879268f9/2025/04/IMG_8623-scaled.jpeg,,TRUE,Identifiable +N1,90477,Sortie #90477,https://biolit.fr/sorties/sortie-90477/,Camoin Lucie Marie,https://biolit.fr/wp-content/uploads/jet-form-builder/b7faf25ee00f966f7bc1801df8dedb04/2025/04/IMG-20250413-WA0094.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b7faf25ee00f966f7bc1801df8dedb04/2025/04/IMG-20250413-WA0095.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b7faf25ee00f966f7bc1801df8dedb04/2025/04/IMG-20250413-WA0096.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b7faf25ee00f966f7bc1801df8dedb04/2025/04/IMG-20250413-WA0093.jpg,04/12/2025,14.0000000,18.0000000,41.907407000000,8.63297800000000,,Plage Moorea,90478,Observation #90478,https://biolit.fr/observations/observation-90478/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/b7faf25ee00f966f7bc1801df8dedb04/2025/04/IMG-20250413-WA0094.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b7faf25ee00f966f7bc1801df8dedb04/2025/04/IMG-20250413-WA0095.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b7faf25ee00f966f7bc1801df8dedb04/2025/04/IMG-20250413-WA0093.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/b7faf25ee00f966f7bc1801df8dedb04/2025/04/IMG-20250413-WA0096.jpg,,TRUE,Identifiable +N1,90481,Sortie #90481,https://biolit.fr/sorties/sortie-90481/,Camoin Lucie Marie,https://biolit.fr/wp-content/uploads/jet-form-builder/b7faf25ee00f966f7bc1801df8dedb04/2025/04/20250412_152615-scaled.jpg,04/12/2025,15.0000000,17.0000000,41.9071520000000,8.63232800000000,,Plage Moorea,90482,Observation #90482,https://biolit.fr/observations/observation-90482/,Phalacrocorax aristotelis,Cormoran huppé,,https://biolit.fr/wp-content/uploads/jet-form-builder/b7faf25ee00f966f7bc1801df8dedb04/2025/04/20250412_152615-scaled.jpg,,,Identifiable +N1,90489,Sortie #90489,https://biolit.fr/sorties/sortie-90489/,CarpeDiem,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/04/20250414_104856-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/04/olive-de-posidonie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/04/olive-posidonie-scaled.jpg,4/14/2025 0:00,11.0000000,11.0:45,43.0979610000000,6.16854000000000,,Plage de la Marquise 83400 Hyères,90490,Observation #90490,https://biolit.fr/observations/observation-90490/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/04/20250414_104856-scaled.jpg,,TRUE,Identifiable +N1,90494,Sortie #90494,https://biolit.fr/sorties/sortie-90494/,CarpeDiem,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/04/olive-de-posidonie-2-scaled.jpg,4/14/2025 0:00,11.0000000,11.0:45,43.0978680000000,6.16850100000000,,Plage de la Marquise 83400 Hyères,90495,Observation #90495,https://biolit.fr/observations/observation-90495/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/04/olive-de-posidonie-2-scaled.jpg,,TRUE,Identifiable +N1,90494,Sortie #90494,https://biolit.fr/sorties/sortie-90494/,CarpeDiem,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/04/olive-de-posidonie-2-scaled.jpg,4/14/2025 0:00,11.0000000,11.0:45,43.0978680000000,6.16850100000000,,Plage de la Marquise 83400 Hyères,90512,Observation #90512,https://biolit.fr/observations/observation-90512/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/04/olive-de-posidonie-2-scaled.jpg,,TRUE,Identifiable +N1,90501,Sortie #90501,https://biolit.fr/sorties/sortie-90501/,EXPLORE & PRESERVE E& P,https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_67550209-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_67536897-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_67552257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_168174849-scaled.jpg,04/12/2025,12.0000000,12.0:45,43.0359130000000,6.15267800000000,Explore & Préserve,Badine Sud,90502,Observation #90502,https://biolit.fr/observations/observation-90502/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_67550209-scaled.jpg,,TRUE,Identifiable +N1,90501,Sortie #90501,https://biolit.fr/sorties/sortie-90501/,EXPLORE & PRESERVE E& P,https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_67550209-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_67536897-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_67552257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_168174849-scaled.jpg,04/12/2025,12.0000000,12.0:45,43.0359130000000,6.15267800000000,Explore & Préserve,Badine Sud,90504,Observation #90504,https://biolit.fr/observations/observation-90504/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_67536897-scaled.jpg,,TRUE,Identifiable +N1,90501,Sortie #90501,https://biolit.fr/sorties/sortie-90501/,EXPLORE & PRESERVE E& P,https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_67550209-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_67536897-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_67552257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_168174849-scaled.jpg,04/12/2025,12.0000000,12.0:45,43.0359130000000,6.15267800000000,Explore & Préserve,Badine Sud,90506,Observation #90506,https://biolit.fr/observations/observation-90506/,Larus michahellis,Goéland leucophée,,https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_67552257-scaled.jpg,,,Identifiable +N1,90501,Sortie #90501,https://biolit.fr/sorties/sortie-90501/,EXPLORE & PRESERVE E& P,https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_67550209-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_67536897-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_67552257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_168174849-scaled.jpg,04/12/2025,12.0000000,12.0:45,43.0359130000000,6.15267800000000,Explore & Préserve,Badine Sud,90508,Observation #90508,https://biolit.fr/observations/observation-90508/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/92cd5dd2c6e3690446a00fae4ebbd93e/2025/04/image_168174849-scaled.jpg,,TRUE,Identifiable +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90582,Observation #90582,https://biolit.fr/observations/observation-90582/,Phymatolithon lenormandii,Algue encroûtante rouge de Lenormand,,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg,,,Ne sais pas +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90584,Observation #90584,https://biolit.fr/observations/observation-90584/,Lanice conchilega,Lanice,,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg,,,Identifiable +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90586,Observation #90586,https://biolit.fr/observations/observation-90586/,Petrolisthes marginatus,Crabe porcelaine rouge à plumeau,,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg,,TRUE,Ne sais pas +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90588,Observation #90588,https://biolit.fr/observations/observation-90588/,Gaidropsarus vulgaris,Motelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg,,TRUE,Identifiable +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90590,Observation #90590,https://biolit.fr/observations/observation-90590/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg,,TRUE,Identifiable +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90592,Observation #90592,https://biolit.fr/observations/observation-90592/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg,,TRUE,Identifiable +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90594,Observation #90594,https://biolit.fr/observations/observation-90594/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg,,TRUE,Ne sais pas +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90596,Observation #90596,https://biolit.fr/observations/observation-90596/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg,,TRUE,Identifiable +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90598,Observation #90598,https://biolit.fr/observations/observation-90598/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg,,TRUE,Identifiable +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90600,Observation #90600,https://biolit.fr/observations/observation-90600/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg,,TRUE,Identifiable +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90602,Observation #90602,https://biolit.fr/observations/observation-90602/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg,,TRUE,Ne sais pas +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90604,Observation #90604,https://biolit.fr/observations/observation-90604/,Pisidia longicornis,Crabe porcelaine à longues pinces,,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg,,TRUE,Identifiable +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90606,Observation #90606,https://biolit.fr/observations/observation-90606/,Lepadogaster lepadogaster,Porte-écuelle de Gouan,,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg,,,Identifiable +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90608,Observation #90608,https://biolit.fr/observations/observation-90608/,Ocenebra erinaceus,Ponte de Bigorneau perceur,,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg,,TRUE,Ne sais pas +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90610,Observation #90610,https://biolit.fr/observations/observation-90610/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg,,,Ne sais pas +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90612,Observation #90612,https://biolit.fr/observations/observation-90612/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,,,Ne sais pas +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90614,Observation #90614,https://biolit.fr/observations/observation-90614/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg,,TRUE,Identifiable +N1,90581,Sortie #90581,https://biolit.fr/sorties/sortie-90581/,Fautrel Gabrielle,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_161924-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162232-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162418-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_162843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163334-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163347-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163558-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163647-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_163759-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_164039-scaled.jpg,4/14/2025 0:00,15.0000000,17.0:15,48.6545380000000,-2.02184900000000,Grand Aquarium St Malo,Fort national,90616,Observation #90616,https://biolit.fr/observations/observation-90616/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/4e58836473efda1154804f38e93e826c/2025/04/IMG_20250414_160314-scaled.jpg,,,Ne sais pas +N1,90619,Sortie #90619,https://biolit.fr/sorties/sortie-90619/,Moncomble Aurélien,https://biolit.fr/wp-content/uploads/jet-form-builder/ea165c3dcb530d48887c73ef17ff07fc/2025/04/1000027678-scaled.jpg,04/12/2025,9.0:45,11.0000000,43.4825980000000,-1.56868000000000,CPIE Littoral Basque - Euskal Itsasbazterra,,90620,Observation #90620,https://biolit.fr/observations/observation-90620/,Antiopella cristata,Antiopelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/ea165c3dcb530d48887c73ef17ff07fc/2025/04/1000027678-scaled.jpg,,TRUE,Identifiable +N1,90623,Sortie #90623,https://biolit.fr/sorties/sortie-90623/,Moncomble Aurélien,https://biolit.fr/wp-content/uploads/jet-form-builder/ea165c3dcb530d48887c73ef17ff07fc/2025/04/1000027677-scaled.jpg,04/12/2025,9.0:45,11.0000000,43.4826330000000,-1.56875000000000,CPIE Littoral Basque - Euskal Itsasbazterra,Plage du Port vieux,90624,Observation #90624,https://biolit.fr/observations/observation-90624/,Hermaea variopicta,Hermès arlequin,,https://biolit.fr/wp-content/uploads/jet-form-builder/ea165c3dcb530d48887c73ef17ff07fc/2025/04/1000027677-scaled.jpg,,TRUE,Identifiable +N1,90627,Sortie #90627,https://biolit.fr/sorties/sortie-90627/,Moncomble Aurélien,https://biolit.fr/wp-content/uploads/jet-form-builder/ea165c3dcb530d48887c73ef17ff07fc/2025/04/1000027681-scaled.jpg,04/12/2025,9.0:45,11.0000000,43.4829870000000,-1.56841000000000,CPIE Littoral Basque - Euskal Itsasbazterra,Plage du Port vieux,90628,Observation #90628,https://biolit.fr/observations/observation-90628/,Parablennius pilicornis,Blennie pilicorne,,https://biolit.fr/wp-content/uploads/jet-form-builder/ea165c3dcb530d48887c73ef17ff07fc/2025/04/1000027681-scaled.jpg,,TRUE,Identifiable +N1,90641,Sortie #90641,https://biolit.fr/sorties/sortie-90641/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7521-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7518-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7528-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7526-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7524-1-scaled.jpeg,04/01/2025,17.0000000,17.0:45,48.6424360000000,-2.11147800000000,Planète Mer (antenne Dinard),Grande Plage de Saint Lunaire,90652,Observation #90652,https://biolit.fr/observations/observation-90652/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7517-1-scaled.jpeg,,TRUE,Identifiable +N1,90641,Sortie #90641,https://biolit.fr/sorties/sortie-90641/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7521-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7518-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7528-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7526-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7524-1-scaled.jpeg,04/01/2025,17.0000000,17.0:45,48.6424360000000,-2.11147800000000,Planète Mer (antenne Dinard),Grande Plage de Saint Lunaire,90654,Observation #90654,https://biolit.fr/observations/observation-90654/,Gibbula magus,Gibbule mage,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7522-1-scaled.jpeg,,TRUE,Identifiable +N1,90641,Sortie #90641,https://biolit.fr/sorties/sortie-90641/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7521-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7518-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7528-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7526-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7524-1-scaled.jpeg,04/01/2025,17.0000000,17.0:45,48.6424360000000,-2.11147800000000,Planète Mer (antenne Dinard),Grande Plage de Saint Lunaire,90656,Observation #90656,https://biolit.fr/observations/observation-90656/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7519-1-scaled.jpeg,,TRUE,Identifiable +N1,90641,Sortie #90641,https://biolit.fr/sorties/sortie-90641/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7521-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7518-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7528-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7526-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7524-1-scaled.jpeg,04/01/2025,17.0000000,17.0:45,48.6424360000000,-2.11147800000000,Planète Mer (antenne Dinard),Grande Plage de Saint Lunaire,90658,Observation #90658,https://biolit.fr/observations/observation-90658/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7528-1-scaled.jpeg,,TRUE,Identifiable +N1,90641,Sortie #90641,https://biolit.fr/sorties/sortie-90641/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7521-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7518-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7528-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7526-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7524-1-scaled.jpeg,04/01/2025,17.0000000,17.0:45,48.6424360000000,-2.11147800000000,Planète Mer (antenne Dinard),Grande Plage de Saint Lunaire,90660,Observation #90660,https://biolit.fr/observations/observation-90660/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7532-1-scaled.jpeg,,TRUE,Identifiable +N1,90641,Sortie #90641,https://biolit.fr/sorties/sortie-90641/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7521-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7518-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7528-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7526-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7524-1-scaled.jpeg,04/01/2025,17.0000000,17.0:45,48.6424360000000,-2.11147800000000,Planète Mer (antenne Dinard),Grande Plage de Saint Lunaire,90662,Observation #90662,https://biolit.fr/observations/observation-90662/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7531-1-scaled.jpeg,,TRUE,Identifiable +N1,90641,Sortie #90641,https://biolit.fr/sorties/sortie-90641/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7521-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7518-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7528-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7526-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7524-1-scaled.jpeg,04/01/2025,17.0000000,17.0:45,48.6424360000000,-2.11147800000000,Planète Mer (antenne Dinard),Grande Plage de Saint Lunaire,90664,Observation #90664,https://biolit.fr/observations/observation-90664/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7524-1-scaled.jpeg,,TRUE,Identifiable +N1,90641,Sortie #90641,https://biolit.fr/sorties/sortie-90641/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7517-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7519-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7521-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7522-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7518-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7528-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7532-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7531-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7526-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7523-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7524-1-scaled.jpeg,04/01/2025,17.0000000,17.0:45,48.6424360000000,-2.11147800000000,Planète Mer (antenne Dinard),Grande Plage de Saint Lunaire,90666,Observation #90666,https://biolit.fr/observations/observation-90666/,Watersipora subtorquata,Bryozoaire rouge orange vif à points noirs,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/04/IMG_7526-1-scaled.jpeg,,TRUE,Identifiable +N1,90670,Sortie #90670,https://biolit.fr/sorties/sortie-90670/,Boualam Lou,https://biolit.fr/wp-content/uploads/jet-form-builder/ef72ea2930545a0646fddf6ddfeaa07a/2025/04/1000010039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ef72ea2930545a0646fddf6ddfeaa07a/2025/04/1000010036-scaled.jpg,4/15/2025 0:00,15.0000000,17.0000000,43.6204890,4.0026060,,Palavas-les-flots,90671,Observation #90671,https://biolit.fr/observations/observation-90671/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/ef72ea2930545a0646fddf6ddfeaa07a/2025/04/1000010039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ef72ea2930545a0646fddf6ddfeaa07a/2025/04/1000010036-scaled.jpg,,TRUE,Identifiable +N1,90756,Sortie #90756,https://biolit.fr/sorties/sortie-90756/,Thibaut Edouard,https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3095-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3096-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3103-scaled.jpg,4/15/2025 0:00,11.0:32,13.0:33,50.1762390000000,1.57470700000000,,Cap Hornu,90757,Observation #90757,https://biolit.fr/observations/observation-90757/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3095-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3096-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3103-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/beb16e11810e42c041d959609f0bc893/2025/04/IMG_3100-scaled.jpg,,,Ne sais pas +N1,90813,Sortie #90813,https://biolit.fr/sorties/sortie-90813/,Durix Nathanael,https://biolit.fr/wp-content/uploads/jet-form-builder/a3953dc2fce87e617178ece74630175c/2025/04/IMG_4183-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a3953dc2fce87e617178ece74630175c/2025/04/IMG_4182-scaled.jpeg,4/17/2025 0:00,17.0000000,17.000001,43.3142160000000,3.55347600000000,,Marseillan plage,90814,Observation #90814,https://biolit.fr/observations/observation-90814/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a3953dc2fce87e617178ece74630175c/2025/04/IMG_4182-scaled.jpeg,,TRUE,Identifiable +N1,90822,Sortie #90822,https://biolit.fr/sorties/sortie-90822/,Cadieu Christine,https://biolit.fr/wp-content/uploads/jet-form-builder/a4bb5def20e5f124ae13c9f8cffaba0e/2025/04/IMG_20250414_111156-scaled.jpg,4/14/2025 0:00,11.0:15,11.0000000,41.6708110000000,8.88187100000000,,Propriano,90823,Observation #90823,https://biolit.fr/observations/observation-90823/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a4bb5def20e5f124ae13c9f8cffaba0e/2025/04/IMG_20250414_111156-scaled.jpg,,TRUE, +N1,90829,Sortie #90829,https://biolit.fr/sorties/sortie-90829/,Honnorat Frédéric,https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000026739-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000026738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000026737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000026736-scaled.jpg,4/20/2025 0:00,14.0000000,16.0000000,43.3540710000000,4.7186280000000,,"Plage de la courbe, Salin de Giraud",90830,Observation #90830,https://biolit.fr/observations/observation-90830/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000026737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000026736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000026738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000026739-scaled.jpg,,TRUE,Ne sais pas +N1,90829,Sortie #90829,https://biolit.fr/sorties/sortie-90829/,Honnorat Frédéric,https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000026739-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000026738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000026737-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000026736-scaled.jpg,4/20/2025 0:00,14.0000000,16.0000000,43.3540710000000,4.7186280000000,,"Plage de la courbe, Salin de Giraud",90832,Observation #90832,https://biolit.fr/observations/observation-90832/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000026739-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000026738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000026736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000026737-scaled.jpg,,TRUE,Ne sais pas +N1,90882,Sortie #90882,https://biolit.fr/sorties/sortie-90882/,Desjonquères Damien,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1031-scaled.jpg,4/22/2025 0:00,10.0000000,16.0000000,48.8167440000000,-3.37331800000000,,Keriec (22) Commune de Trélévern,90883,Observation #90883,https://biolit.fr/observations/observation-90883/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1029-scaled.jpg,,TRUE,Identifiable +N1,90882,Sortie #90882,https://biolit.fr/sorties/sortie-90882/,Desjonquères Damien,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1031-scaled.jpg,4/22/2025 0:00,10.0000000,16.0000000,48.8167440000000,-3.37331800000000,,Keriec (22) Commune de Trélévern,90885,Observation #90885,https://biolit.fr/observations/observation-90885/,Calyptraea chinensis,Chapeau chinois,,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1012-scaled.jpg,,,Identifiable +N1,90882,Sortie #90882,https://biolit.fr/sorties/sortie-90882/,Desjonquères Damien,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1031-scaled.jpg,4/22/2025 0:00,10.0000000,16.0000000,48.8167440000000,-3.37331800000000,,Keriec (22) Commune de Trélévern,90887,Observation #90887,https://biolit.fr/observations/observation-90887/,Calyptraea chinensis,Chapeau chinois,,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1013-scaled.jpg,,,Identifiable +N1,90882,Sortie #90882,https://biolit.fr/sorties/sortie-90882/,Desjonquères Damien,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1031-scaled.jpg,4/22/2025 0:00,10.0000000,16.0000000,48.8167440000000,-3.37331800000000,,Keriec (22) Commune de Trélévern,90889,Observation #90889,https://biolit.fr/observations/observation-90889/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1023-scaled.jpg,,,Ne sais pas +N1,90882,Sortie #90882,https://biolit.fr/sorties/sortie-90882/,Desjonquères Damien,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1031-scaled.jpg,4/22/2025 0:00,10.0000000,16.0000000,48.8167440000000,-3.37331800000000,,Keriec (22) Commune de Trélévern,90891,Observation #90891,https://biolit.fr/observations/observation-90891/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1025-scaled.jpg,,TRUE,Ne sais pas +N1,90882,Sortie #90882,https://biolit.fr/sorties/sortie-90882/,Desjonquères Damien,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1031-scaled.jpg,4/22/2025 0:00,10.0000000,16.0000000,48.8167440000000,-3.37331800000000,,Keriec (22) Commune de Trélévern,90893,Observation #90893,https://biolit.fr/observations/observation-90893/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1021-scaled.jpg,,,Identifiable +N1,90882,Sortie #90882,https://biolit.fr/sorties/sortie-90882/,Desjonquères Damien,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1031-scaled.jpg,4/22/2025 0:00,10.0000000,16.0000000,48.8167440000000,-3.37331800000000,,Keriec (22) Commune de Trélévern,90895,Observation #90895,https://biolit.fr/observations/observation-90895/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1030-scaled.jpg,,,Ne sais pas +N1,90882,Sortie #90882,https://biolit.fr/sorties/sortie-90882/,Desjonquères Damien,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1031-scaled.jpg,4/22/2025 0:00,10.0000000,16.0000000,48.8167440000000,-3.37331800000000,,Keriec (22) Commune de Trélévern,90897,Observation #90897,https://biolit.fr/observations/observation-90897/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1020-scaled.jpg,,,Ne sais pas +N1,90882,Sortie #90882,https://biolit.fr/sorties/sortie-90882/,Desjonquères Damien,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1031-scaled.jpg,4/22/2025 0:00,10.0000000,16.0000000,48.8167440000000,-3.37331800000000,,Keriec (22) Commune de Trélévern,90899,Observation #90899,https://biolit.fr/observations/observation-90899/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1031-scaled.jpg,,,Ne sais pas +N1,90882,Sortie #90882,https://biolit.fr/sorties/sortie-90882/,Desjonquères Damien,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1016-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1022-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1024-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1027-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1028-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1031-scaled.jpg,4/22/2025 0:00,10.0000000,16.0000000,48.8167440000000,-3.37331800000000,,Keriec (22) Commune de Trélévern,90901,Observation #90901,https://biolit.fr/observations/observation-90901/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/2469e0d26ed6795065eba3afdccbdaca/2025/04/IMG_1016-scaled.jpg,,,Ne sais pas +N1,90907,Sortie #90907,https://biolit.fr/sorties/sortie-90907/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/04/photos-Michel20250228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/04/michel20250228-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/04/Micel202502284-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/04/20250228_115130-scaled.jpg,2/28/2025 0:00,11.0:15,12.0:55,48.7424280,-3.2964570,E.T.A.P.E.S,Beg Hent,,,,,,,,,, +N1,90910,Sortie #90910,https://biolit.fr/sorties/sortie-90910/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/04/Michel202502285-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/04/Micel202502286-scaled.jpg,2/28/2025 0:00,11.0:15,12.0:55,48.7424280,-3.2964570,E.T.A.P.E.S,Beg Hent,,,,,,,,,, +N1,90917,Sortie #90917,https://biolit.fr/sorties/sortie-90917/,D. Lenig,https://biolit.fr/wp-content/uploads/jet-form-builder/949e03b8cf20259b48abc1530143e58d/2025/04/17454138326431451461540210636885-scaled.jpg,4/23/2025 0:00,1.000005,15.000005,47.7702360000000,-3.60568500000000,,M,,,,,,,,,, +N1,90938,Sortie #90938,https://biolit.fr/sorties/sortie-90938/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/04/os-de-seiche-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/04/algue-rouge-sp-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/04/ponte-natice-scaled.jpg,04/11/2025,9.0000000,11.0000000,43.77577,-1.41867,Centre de la mer,plage Océane de Soustons,90939,Observation #90939,https://biolit.fr/observations/observation-90939/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/04/os-de-seiche-commune-scaled.jpg,,TRUE,Identifiable +N1,90938,Sortie #90938,https://biolit.fr/sorties/sortie-90938/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/04/os-de-seiche-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/04/algue-rouge-sp-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/04/ponte-natice-scaled.jpg,04/11/2025,9.0000000,11.0000000,43.77577,-1.41867,Centre de la mer,plage Océane de Soustons,90941,Observation #90941,https://biolit.fr/observations/observation-90941/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/04/ponte-natice-scaled.jpg,,TRUE,Identifiable +N1,90938,Sortie #90938,https://biolit.fr/sorties/sortie-90938/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/04/os-de-seiche-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/04/algue-rouge-sp-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/04/ponte-natice-scaled.jpg,04/11/2025,9.0000000,11.0000000,43.77577,-1.41867,Centre de la mer,plage Océane de Soustons,90943,Observation #90943,https://biolit.fr/observations/observation-90943/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/04/algue-rouge-sp-scaled.jpg,,,non-identifiable +N1,90950,Sortie #90950,https://biolit.fr/sorties/sortie-90950/,Honnorat Frédéric,https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000027146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000027144-scaled.jpg,4/23/2025 0:00,16.0000000,16.0000000,43.3012380,3.538353,,Marseillan plage,90951,Observation #90951,https://biolit.fr/observations/observation-90951/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000027146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000027144-scaled.jpg,,TRUE,Ne sais pas +N1,90950,Sortie #90950,https://biolit.fr/sorties/sortie-90950/,Honnorat Frédéric,https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000027146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000027144-scaled.jpg,4/23/2025 0:00,16.0000000,16.0000000,43.3012380,3.538353,,Marseillan plage,90953,Observation #90953,https://biolit.fr/observations/observation-90953/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000027146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f6407591e235d6fc67d3885d471d4c37/2025/04/1000027144-scaled.jpg,,TRUE,Ne sais pas +N1,90956,Sortie #90956,https://biolit.fr/sorties/sortie-90956/,barrera Felix,https://biolit.fr/wp-content/uploads/jet-form-builder/5d9e9f2448db1d798b280018d67689de/2025/04/RIVAGE-roseaux-seuls-Photoroom.png,4/24/2025 0:00,11.0:17,11.0:23,42.6361210000000,3.02330000000000,,,,,,,,,,,, +N1,91021,Sortie #91021,https://biolit.fr/sorties/sortie-91021/,SV,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6264-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6266.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6269-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6271-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6274-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6277-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6280.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6281.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6298.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6258-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6260-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6261-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6264-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6267-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6270-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6273-scaled.jpg,4/25/2025 0:00,14.0000000,17.0000000,42.3608280000000,3.16283400000000,Planète Mer,Plage du Cau del Llop,91022,Observation #91022,https://biolit.fr/observations/observation-91022/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6264-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6266.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6269-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6271-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6274-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6277-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6280.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6261-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6260-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6273-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6258-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6298.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6270-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6267-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6281.jpg,,,Ne sais pas +N1,91036,Sortie #91036,https://biolit.fr/sorties/sortie-91036/,SV,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6280-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6278-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6279-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6282-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6284-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6287-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6290-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6291-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6292-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6295-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6296-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6297-scaled.jpg,4/25/2025 0:00,14.0000000,17.0000000,43.2526130000000,3.30653100000000,Planète Mer,Plage du Cau del Llop,91037,Observation #91037,https://biolit.fr/observations/observation-91037/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6280-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6291-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6278-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6292-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6295-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6296-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6297-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6290-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6287-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6284-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6282-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6279-scaled.jpg,,,Ne sais pas +N1,91036,Sortie #91036,https://biolit.fr/sorties/sortie-91036/,SV,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6280-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6278-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6279-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6282-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6284-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6287-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6290-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6291-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6292-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6295-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6296-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6297-scaled.jpg,4/25/2025 0:00,14.0000000,17.0000000,43.2526130000000,3.30653100000000,Planète Mer,Plage du Cau del Llop,91039,Observation #91039,https://biolit.fr/observations/observation-91039/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6280-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6291-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6292-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6278-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6279-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6295-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6296-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6297-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6284-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6282-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6287-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18a042fea73c88c0384c1e3f7d1d341/2025/04/IMG_6290-scaled.jpg,,,Ne sais pas +N1,91043,Sortie #91043,https://biolit.fr/sorties/sortie-91043/,Carré Loïc,https://biolit.fr/wp-content/uploads/jet-form-builder/beabb9a9809b2788339b454e67dc391b/2025/04/20250330_152428.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/beabb9a9809b2788339b454e67dc391b/2025/04/20250330_152440.jpeg,3/31/2025 0:00,16.0000000,16.000005,48.6383330000000,-2.16121700000000,Saint Jacut Environnement,Île agot,91044,Observation #91044,https://biolit.fr/observations/observation-91044/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/beabb9a9809b2788339b454e67dc391b/2025/04/20250330_152428.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/beabb9a9809b2788339b454e67dc391b/2025/04/20250330_152440.jpeg,,,Ne sais pas +N1,91062,Sortie #91062,https://biolit.fr/sorties/sortie-91062/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Gibbule-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_Collecte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Bigorneau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Gibbule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Collecte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_A-Identifier.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_Gibbule-commune.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q4_N_quadrat-scaled.jpg,4/27/2025 0:00,14.0000000,15.0000000,48.6234750000000,-2.19996900000000,Saint Jacut Environnement,La Nellière - Ile Ebihens,91063,Observation #91063,https://biolit.fr/observations/observation-91063/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_A-identifier-scaled.jpg,,,non-identifiable +N1,91062,Sortie #91062,https://biolit.fr/sorties/sortie-91062/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Gibbule-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_Collecte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Bigorneau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Gibbule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Collecte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_A-Identifier.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_Gibbule-commune.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q4_N_quadrat-scaled.jpg,4/27/2025 0:00,14.0000000,15.0000000,48.6234750000000,-2.19996900000000,Saint Jacut Environnement,La Nellière - Ile Ebihens,91065,Observation #91065,https://biolit.fr/observations/observation-91065/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Bigorneau-scaled.jpg,,TRUE,Identifiable +N1,91062,Sortie #91062,https://biolit.fr/sorties/sortie-91062/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Gibbule-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_Collecte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Bigorneau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Gibbule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Collecte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_A-Identifier.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_Gibbule-commune.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q4_N_quadrat-scaled.jpg,4/27/2025 0:00,14.0000000,15.0000000,48.6234750000000,-2.19996900000000,Saint Jacut Environnement,La Nellière - Ile Ebihens,91067,Observation #91067,https://biolit.fr/observations/observation-91067/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Gibbule-commune-scaled.jpg,,TRUE,Identifiable +N1,91062,Sortie #91062,https://biolit.fr/sorties/sortie-91062/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Gibbule-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_Collecte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Bigorneau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Gibbule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Collecte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_A-Identifier.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_Gibbule-commune.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q4_N_quadrat-scaled.jpg,4/27/2025 0:00,14.0000000,15.0000000,48.6234750000000,-2.19996900000000,Saint Jacut Environnement,La Nellière - Ile Ebihens,91069,Observation #91069,https://biolit.fr/observations/observation-91069/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_A-identifier-scaled.jpg,,,non-identifiable +N1,91062,Sortie #91062,https://biolit.fr/sorties/sortie-91062/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Gibbule-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_Collecte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Bigorneau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Gibbule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Collecte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_A-Identifier.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_Gibbule-commune.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q4_N_quadrat-scaled.jpg,4/27/2025 0:00,14.0000000,15.0000000,48.6234750000000,-2.19996900000000,Saint Jacut Environnement,La Nellière - Ile Ebihens,91071,Observation #91071,https://biolit.fr/observations/observation-91071/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Bigorneau.jpg,,TRUE,Identifiable +N1,91062,Sortie #91062,https://biolit.fr/sorties/sortie-91062/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Gibbule-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_Collecte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Bigorneau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Gibbule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Collecte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_A-Identifier.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_Gibbule-commune.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q4_N_quadrat-scaled.jpg,4/27/2025 0:00,14.0000000,15.0000000,48.6234750000000,-2.19996900000000,Saint Jacut Environnement,La Nellière - Ile Ebihens,91073,Observation #91073,https://biolit.fr/observations/observation-91073/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Gibbule.jpg,,,Identifiable +N1,91062,Sortie #91062,https://biolit.fr/sorties/sortie-91062/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Gibbule-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_Collecte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Bigorneau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Gibbule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Collecte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_A-Identifier.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_Gibbule-commune.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q4_N_quadrat-scaled.jpg,4/27/2025 0:00,14.0000000,15.0000000,48.6234750000000,-2.19996900000000,Saint Jacut Environnement,La Nellière - Ile Ebihens,91075,Observation #91075,https://biolit.fr/observations/observation-91075/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Praire.jpg,,,Identifiable +N1,91062,Sortie #91062,https://biolit.fr/sorties/sortie-91062/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Gibbule-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_Collecte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Bigorneau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Gibbule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Collecte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_A-Identifier.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_Gibbule-commune.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q4_N_quadrat-scaled.jpg,4/27/2025 0:00,14.0000000,15.0000000,48.6234750000000,-2.19996900000000,Saint Jacut Environnement,La Nellière - Ile Ebihens,91077,Observation #91077,https://biolit.fr/observations/observation-91077/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Pourpre-scaled.jpg,,TRUE,Identifiable +N1,91062,Sortie #91062,https://biolit.fr/sorties/sortie-91062/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Gibbule-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_Collecte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Bigorneau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Gibbule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Collecte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_A-Identifier.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_Gibbule-commune.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q4_N_quadrat-scaled.jpg,4/27/2025 0:00,14.0000000,15.0000000,48.6234750000000,-2.19996900000000,Saint Jacut Environnement,La Nellière - Ile Ebihens,91079,Observation #91079,https://biolit.fr/observations/observation-91079/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_A-Identifier.jpg,,,non-identifiable +N1,91062,Sortie #91062,https://biolit.fr/sorties/sortie-91062/,DUPOUX CYNDIE,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Bigorneau-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q1_N1_Gibbule-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_Collecte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_A-identifier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Bigorneau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Gibbule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q2_N2_Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Collecte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_Pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N_quadrat-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_A-Identifier.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_Gibbule-commune.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q4_N_quadrat-scaled.jpg,4/27/2025 0:00,14.0000000,15.0000000,48.6234750000000,-2.19996900000000,Saint Jacut Environnement,La Nellière - Ile Ebihens,91081,Observation #91081,https://biolit.fr/observations/observation-91081/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95d2b8e06c76517646314f37b685f0ae/2025/04/Q3_N3_Gibbule-commune.jpg,,,Identifiable +N1,91202,Sortie #91202,https://biolit.fr/sorties/sortie-91202/,GOBERT Evelyne,https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_142725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_143113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_143401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144204-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_1452212-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145609-scaled.jpg,4/15/2025 0:00,14.0:15,16.0:15,49.9026120,1.053154,,Pourville sur Mer,91209,Observation #91209,https://biolit.fr/observations/observation-91209/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_143113-scaled.jpg,,,Identifiable +N1,91202,Sortie #91202,https://biolit.fr/sorties/sortie-91202/,GOBERT Evelyne,https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_142725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_143113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_143401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144204-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_1452212-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145609-scaled.jpg,4/15/2025 0:00,14.0:15,16.0:15,49.9026120,1.053154,,Pourville sur Mer,91211,Observation #91211,https://biolit.fr/observations/observation-91211/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144204-scaled.jpg,,TRUE,Identifiable +N1,91202,Sortie #91202,https://biolit.fr/sorties/sortie-91202/,GOBERT Evelyne,https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_142725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_143113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_143401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144204-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_1452212-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145609-scaled.jpg,4/15/2025 0:00,14.0:15,16.0:15,49.9026120,1.053154,,Pourville sur Mer,91213,Observation #91213,https://biolit.fr/observations/observation-91213/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144104-scaled.jpg,,TRUE,Identifiable +N1,91202,Sortie #91202,https://biolit.fr/sorties/sortie-91202/,GOBERT Evelyne,https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_142725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_143113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_143401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144204-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_1452212-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145609-scaled.jpg,4/15/2025 0:00,14.0:15,16.0:15,49.9026120,1.053154,,Pourville sur Mer,91219,Observation #91219,https://biolit.fr/observations/observation-91219/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145406-scaled.jpg,,TRUE,Identifiable +N1,91202,Sortie #91202,https://biolit.fr/sorties/sortie-91202/,GOBERT Evelyne,https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_142725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_143113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_143401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144204-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_1452212-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145609-scaled.jpg,4/15/2025 0:00,14.0:15,16.0:15,49.9026120,1.053154,,Pourville sur Mer,91221,Observation #91221,https://biolit.fr/observations/observation-91221/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144603-scaled.jpg,,,Identifiable +N1,91202,Sortie #91202,https://biolit.fr/sorties/sortie-91202/,GOBERT Evelyne,https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_142725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_143113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_143401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144204-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_1452212-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145609-scaled.jpg,4/15/2025 0:00,14.0:15,16.0:15,49.9026120,1.053154,,Pourville sur Mer,91223,Observation #91223,https://biolit.fr/observations/observation-91223/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144603-scaled.jpg,,,Identifiable +N1,91202,Sortie #91202,https://biolit.fr/sorties/sortie-91202/,GOBERT Evelyne,https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_142725-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_143113-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_143401-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144204-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_144603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_1452212-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145406-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145609-scaled.jpg,4/15/2025 0:00,14.0:15,16.0:15,49.9026120,1.053154,,Pourville sur Mer,91225,Observation #91225,https://biolit.fr/observations/observation-91225/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/54a2763a371e8b99a6e38b671d3969b4/2025/04/20250423_145034-scaled.jpg,,TRUE,Identifiable +N1,91204,Sortie #91204,https://biolit.fr/sorties/sortie-91204/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/04/anemone-verte-plage-du-verger-scaled.jpg,4/27/2025 0:00,15.0000000,16.0000000,48.6962050000000,-1.87946900000000,,Plage du Verger,91205,Observation #91205,https://biolit.fr/observations/observation-91205/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/04/anemone-verte-plage-du-verger-scaled.jpg,,TRUE,Identifiable +N1,91216,Sortie #91216,https://biolit.fr/sorties/sortie-91216/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/04/anemone-de-mer-verte-colori-grisatre-plage-du-verger-scaled.jpg,4/27/2025 0:00,16.0000000,16.0000000,48.6961890000000,-1.87948800000000,,Plage du Verger,91217,Observation #91217,https://biolit.fr/observations/observation-91217/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/04/anemone-de-mer-verte-colori-grisatre-plage-du-verger-scaled.jpg,,TRUE,Identifiable +N1,91380,Sortie #91380,https://biolit.fr/sorties/sortie-91380/,ANTOINE Cyril,https://biolit.fr/wp-content/uploads/jet-form-builder/e1d6bec5e2da533608be3cda9b47ae80/2025/04/1000000402-scaled.jpg,4/29/2025 0:00,17.0:58,22.0:58,39.7957890,3.1210650,,Playa de muro,,,,,,,,,, +N1,91389,Sortie #91389,https://biolit.fr/sorties/sortie-91389/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/04/20250425_111715-rotated.jpg,4/27/2025 0:00,10.0:28,10.0000000,43.25376,5.40672,,Plage de la Pointe Rouge,91390,Observation #91390,https://biolit.fr/observations/observation-91390/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/04/20250425_111715-rotated.jpg,,TRUE,Ne sais pas +N1,91404,Sortie #91404,https://biolit.fr/sorties/sortie-91404/,CHAPELOT PIERRE,https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1531-scaled.jpg,7/19/2024 0:00,15.0000000,17.0000000,43.5522210000000,7.14445000000000,,"Antibes, la garoupe",91405,Observation #91405,https://biolit.fr/observations/observation-91405/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1531-scaled.jpg,,,Identifiable +N1,91411,Sortie #91411,https://biolit.fr/sorties/sortie-91411/,CHAPELOT PIERRE,https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1517-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1523-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1561-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1554-scaled.jpg,7/19/2024 0:00,15.0000000,17.0000000,43.5522210000000,7.14445000000000,,"Antibes, la garoupe",91412,Observation #91412,https://biolit.fr/observations/observation-91412/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1517-scaled.jpg,,,Identifiable +N1,91411,Sortie #91411,https://biolit.fr/sorties/sortie-91411/,CHAPELOT PIERRE,https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1517-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1523-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1561-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1554-scaled.jpg,7/19/2024 0:00,15.0000000,17.0000000,43.5522210000000,7.14445000000000,,"Antibes, la garoupe",91414,Observation #91414,https://biolit.fr/observations/observation-91414/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1554-scaled.jpg,,,Identifiable +N1,91411,Sortie #91411,https://biolit.fr/sorties/sortie-91411/,CHAPELOT PIERRE,https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1517-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1523-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1561-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1554-scaled.jpg,7/19/2024 0:00,15.0000000,17.0000000,43.5522210000000,7.14445000000000,,"Antibes, la garoupe",91416,Observation #91416,https://biolit.fr/observations/observation-91416/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1554-scaled.jpg,,,Identifiable +N1,91411,Sortie #91411,https://biolit.fr/sorties/sortie-91411/,CHAPELOT PIERRE,https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1517-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1523-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1561-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1554-scaled.jpg,7/19/2024 0:00,15.0000000,17.0000000,43.5522210000000,7.14445000000000,,"Antibes, la garoupe",91418,Observation #91418,https://biolit.fr/observations/observation-91418/,Atriplex halimus,Arroche marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/04/IMG_1561-scaled.jpg,,,Identifiable +N1,91425,Sortie #91425,https://biolit.fr/sorties/sortie-91425/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Aplysia.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Vers-vert.jpg,4/24/2025 0:00,10.0000000,11.0000000,48.7026050000000,-1.84742000000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,91426,Observation #91426,https://biolit.fr/observations/observation-91426/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Aplysia.jpg,,,Identifiable +N1,91425,Sortie #91425,https://biolit.fr/sorties/sortie-91425/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Aplysia.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Vers-vert.jpg,4/24/2025 0:00,10.0000000,11.0000000,48.7026050000000,-1.84742000000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,91428,Observation #91428,https://biolit.fr/observations/observation-91428/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/04/Vers-vert.jpg,,TRUE,Identifiable +N1,91448,Sortie #91448,https://biolit.fr/sorties/sortie-91448/,CPIE Bastia U Marinu,https://biolit.fr/wp-content/uploads/jet-form-builder/1f5fbe50d5584b4f12c90f576445a323/2025/05/golo-avril-25-scaled.jpg,4/24/2025 0:00,10.0000000,12.0000000,42.5330240000000,9.53354900000000,CPIE Bastia Golo Méditerranée U Marinu,Golo,91449,Observation #91449,https://biolit.fr/observations/observation-91449/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/1f5fbe50d5584b4f12c90f576445a323/2025/05/golo-avril-25-scaled.jpg,,TRUE,Identifiable +N1,91496,Sortie #91496,https://biolit.fr/sorties/sortie-91496/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_155158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_155202-scaled.jpg,4/29/2025 0:00,15.0000000,16.0000000,48.6607830000000,-2.00073500000000,,Plage de la Hoguette,91497,Observation #91497,https://biolit.fr/observations/observation-91497/,Acanthocardia aculeata,Bucarde épineuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154057-scaled.jpg,,,Identifiable +N1,91496,Sortie #91496,https://biolit.fr/sorties/sortie-91496/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_155158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_155202-scaled.jpg,4/29/2025 0:00,15.0000000,16.0000000,48.6607830000000,-2.00073500000000,,Plage de la Hoguette,91499,Observation #91499,https://biolit.fr/observations/observation-91499/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154629-scaled.jpg,,TRUE,Identifiable +N1,91496,Sortie #91496,https://biolit.fr/sorties/sortie-91496/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_155158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_155202-scaled.jpg,4/29/2025 0:00,15.0000000,16.0000000,48.6607830000000,-2.00073500000000,,Plage de la Hoguette,91501,Observation #91501,https://biolit.fr/observations/observation-91501/,Ensis ensis,Couteau-sabre,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_155158-scaled.jpg,,TRUE,Identifiable +N1,91496,Sortie #91496,https://biolit.fr/sorties/sortie-91496/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_154629-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_155158-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_155202-scaled.jpg,4/29/2025 0:00,15.0000000,16.0000000,48.6607830000000,-2.00073500000000,,Plage de la Hoguette,91503,Observation #91503,https://biolit.fr/observations/observation-91503/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250429_155202-scaled.jpg,,,Identifiable +N1,91525,Sortie #91525,https://biolit.fr/sorties/sortie-91525/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Calliostoma-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Calliostoma-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6577330000000,-1.57280400000000,,Plage de collignon,91526,Observation #91526,https://biolit.fr/observations/observation-91526/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Anemone-indeterminee-2-scaled.jpg,,,Identifiable +N1,91525,Sortie #91525,https://biolit.fr/sorties/sortie-91525/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Calliostoma-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Calliostoma-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6577330000000,-1.57280400000000,,Plage de collignon,91528,Observation #91528,https://biolit.fr/observations/observation-91528/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-6-scaled.jpg,,,Identifiable +N1,91525,Sortie #91525,https://biolit.fr/sorties/sortie-91525/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Calliostoma-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Calliostoma-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6577330000000,-1.57280400000000,,Plage de collignon,91530,Observation #91530,https://biolit.fr/observations/observation-91530/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bernard-lhermite-2-scaled.jpg,,,Identifiable +N1,91525,Sortie #91525,https://biolit.fr/sorties/sortie-91525/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Calliostoma-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Calliostoma-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6577330000000,-1.57280400000000,,Plage de collignon,91532,Observation #91532,https://biolit.fr/observations/observation-91532/,Watersipora subtorquata,Bryozoaire rouge orange vif à points noirs,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-2-scaled.jpg,,,Identifiable +N1,91525,Sortie #91525,https://biolit.fr/sorties/sortie-91525/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Calliostoma-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Calliostoma-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6577330000000,-1.57280400000000,,Plage de collignon,91534,Observation #91534,https://biolit.fr/observations/observation-91534/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-4-scaled.jpg,,,Ne sais pas +N1,91525,Sortie #91525,https://biolit.fr/sorties/sortie-91525/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Aplysia-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryo-ascidie-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Bryozoaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Calliostoma-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Calliostoma-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6577330000000,-1.57280400000000,,Plage de collignon,91536,Observation #91536,https://biolit.fr/observations/observation-91536/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Calliostoma-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Calliostoma-2-scaled.jpg,,TRUE,Identifiable +N1,91553,Sortie #91553,https://biolit.fr/sorties/sortie-91553/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_151556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_152143-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575480000000,-1.57177400000000,,Plage de collignon,91554,Observation #91554,https://biolit.fr/observations/observation-91554/,Elysia viridis,Elysie verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-2-scaled.jpg,,,Identifiable +N1,91553,Sortie #91553,https://biolit.fr/sorties/sortie-91553/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_151556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_152143-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575480000000,-1.57177400000000,,Plage de collignon,91556,Observation #91556,https://biolit.fr/observations/observation-91556/,Aeolidia papillosa,Eolis à papilles,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-3-scaled.jpg,,,Identifiable +N1,91553,Sortie #91553,https://biolit.fr/sorties/sortie-91553/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_151556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_152143-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575480000000,-1.57177400000000,,Plage de collignon,91558,Observation #91558,https://biolit.fr/observations/observation-91558/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_152143-scaled.jpg,,,Identifiable +N1,91553,Sortie #91553,https://biolit.fr/sorties/sortie-91553/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_151556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_152143-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575480000000,-1.57177400000000,,Plage de collignon,91560,Observation #91560,https://biolit.fr/observations/observation-91560/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-mie-de-pain-scaled.jpg,,,Identifiable +N1,91553,Sortie #91553,https://biolit.fr/sorties/sortie-91553/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_151556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_152143-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575480000000,-1.57177400000000,,Plage de collignon,91562,Observation #91562,https://biolit.fr/observations/observation-91562/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-orange-scaled.jpg,,,Identifiable +N1,91553,Sortie #91553,https://biolit.fr/sorties/sortie-91553/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_151556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_152143-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575480000000,-1.57177400000000,,Plage de collignon,91564,Observation #91564,https://biolit.fr/observations/observation-91564/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-scaled.jpg,,,Identifiable +N1,91553,Sortie #91553,https://biolit.fr/sorties/sortie-91553/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_151556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_152143-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575480000000,-1.57177400000000,,Plage de collignon,91566,Observation #91566,https://biolit.fr/observations/observation-91566/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-2-scaled.jpg,,TRUE,Identifiable +N1,91553,Sortie #91553,https://biolit.fr/sorties/sortie-91553/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_151556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_152143-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575480000000,-1.57177400000000,,Plage de collignon,91568,Observation #91568,https://biolit.fr/observations/observation-91568/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Gobie-scaled.jpg,,,Identifiable +N1,91553,Sortie #91553,https://biolit.fr/sorties/sortie-91553/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_151556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_152143-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575480000000,-1.57177400000000,,Plage de collignon,91570,Observation #91570,https://biolit.fr/observations/observation-91570/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Gobie-scaled.jpg,,,Identifiable +N1,91553,Sortie #91553,https://biolit.fr/sorties/sortie-91553/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Elysia-viridis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Eolis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Galathea-squamifera-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_151556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_152143-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575480000000,-1.57177400000000,,Plage de collignon,91572,Observation #91572,https://biolit.fr/observations/observation-91572/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250426_151556-scaled.jpg,,,Ne sais pas +N1,91592,Sortie #91592,https://biolit.fr/sorties/sortie-91592/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150449-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150841-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_151021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_151023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Sabelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Sabelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-3-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575740000000,-1.57198900000000,,Plage de collignon,91593,Observation #91593,https://biolit.fr/observations/observation-91593/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150449-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150452-scaled.jpg,,,Ne sais pas +N1,91592,Sortie #91592,https://biolit.fr/sorties/sortie-91592/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150449-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150841-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_151021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_151023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Sabelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Sabelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-3-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575740000000,-1.57198900000000,,Plage de collignon,91595,Observation #91595,https://biolit.fr/observations/observation-91595/,Elysia viridis,Elysie verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150841-scaled.jpg,,,Identifiable +N1,91592,Sortie #91592,https://biolit.fr/sorties/sortie-91592/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150449-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150841-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_151021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_151023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Sabelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Sabelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-3-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575740000000,-1.57198900000000,,Plage de collignon,91597,Observation #91597,https://biolit.fr/observations/observation-91597/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_151021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_151023-scaled.jpg,,TRUE,Identifiable +N1,91592,Sortie #91592,https://biolit.fr/sorties/sortie-91592/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150449-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150841-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_151021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_151023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Sabelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Sabelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-3-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575740000000,-1.57198900000000,,Plage de collignon,91599,Observation #91599,https://biolit.fr/observations/observation-91599/,Lepadogaster candolii,Porte-écuelle de Candolle,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-4-scaled.jpg,,,Identifiable +N1,91592,Sortie #91592,https://biolit.fr/sorties/sortie-91592/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150449-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150841-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_151021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_151023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Sabelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Sabelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-3-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575740000000,-1.57198900000000,,Plage de collignon,91601,Observation #91601,https://biolit.fr/observations/observation-91601/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-3-scaled.jpg,,,Identifiable +N1,91592,Sortie #91592,https://biolit.fr/sorties/sortie-91592/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150449-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150841-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_151021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_151023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Sabelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Sabelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-3-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575740000000,-1.57198900000000,,Plage de collignon,91603,Observation #91603,https://biolit.fr/observations/observation-91603/,Sabella pavonina,Sabelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Sabelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Sabelle-2-scaled.jpg,,,Identifiable +N1,91592,Sortie #91592,https://biolit.fr/sorties/sortie-91592/,Schuck Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150449-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_150841-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_151021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/IMG_20250427_151023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Lepadogaster-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Ponte-Aplysia-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Sabelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Sabelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-3-scaled.jpg,4/26/2025 0:00,15.0000000,16.0000000,49.6575740000000,-1.57198900000000,,Plage de collignon,91605,Observation #91605,https://biolit.fr/observations/observation-91605/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/755eb31d27bb2d593287d5682b6e0c80/2025/05/Tourteau-3-scaled.jpg,,,Identifiable +N1,91670,Sortie #91670,https://biolit.fr/sorties/sortie-91670/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/cd6074e82695631e6cb675ce44b100a8/2025/05/1000017969-scaled.jpg,05/05/2025,8.0000000,8.0:45,43.2531830000000,5.37430300000000,,Plage du prado,91671,Observation #91671,https://biolit.fr/observations/observation-91671/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/cd6074e82695631e6cb675ce44b100a8/2025/05/1000017969-scaled.jpg,,TRUE,Identifiable +N1,91831,Sortie #91831,https://biolit.fr/sorties/sortie-91831/,Parigot Franck,https://biolit.fr/wp-content/uploads/jet-form-builder/3a6d97bc20f2c7efc9f69da7dba5e80e/2025/05/20250503_164335-scaled.jpg,05/03/2025,15.0000000,18.0000000,43.531716,5.038763,,"La petite camargue, Saint Chamas",,,,,,,,,, +N1,91833,Sortie #91833,https://biolit.fr/sorties/sortie-91833/,Parigot Franck,https://biolit.fr/wp-content/uploads/jet-form-builder/3a6d97bc20f2c7efc9f69da7dba5e80e/2025/05/20250503_164335-1-scaled.jpg,05/03/2025,15.0000000,18.0000000,43.5329700000000,5.03800400000000,,"La petite camargue, Saint Chamas",91834,Observation #91834,https://biolit.fr/observations/observation-91834/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3a6d97bc20f2c7efc9f69da7dba5e80e/2025/05/20250503_164335-1-scaled.jpg,,,Ne sais pas +N1,91848,Sortie #91848,https://biolit.fr/sorties/sortie-91848/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Calliostoma-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Chiton.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Galathee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG_20250430_165815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ormeau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Seau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-scaled.jpg,4/29/2025 0:00,15.0000000,16.0000000,48.7040830000000,-1.84444800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,91883,Observation #91883,https://biolit.fr/observations/observation-91883/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-scaled.jpg,,,Identifiable +N1,91848,Sortie #91848,https://biolit.fr/sorties/sortie-91848/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Calliostoma-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Chiton.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Galathee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG_20250430_165815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ormeau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Seau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-scaled.jpg,4/29/2025 0:00,15.0000000,16.0000000,48.7040830000000,-1.84444800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,91885,Observation #91885,https://biolit.fr/observations/observation-91885/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-scaled.jpg,,,Identifiable +N1,91848,Sortie #91848,https://biolit.fr/sorties/sortie-91848/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Calliostoma-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Chiton.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Galathee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG_20250430_165815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ormeau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Seau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-scaled.jpg,4/29/2025 0:00,15.0000000,16.0000000,48.7040830000000,-1.84444800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,91887,Observation #91887,https://biolit.fr/observations/observation-91887/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Calliostoma-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-scaled.jpg,,TRUE,Identifiable +N1,91848,Sortie #91848,https://biolit.fr/sorties/sortie-91848/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Calliostoma-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Chiton.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Galathee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG_20250430_165815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ormeau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Seau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-scaled.jpg,4/29/2025 0:00,15.0000000,16.0000000,48.7040830000000,-1.84444800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,91889,Observation #91889,https://biolit.fr/observations/observation-91889/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Chiton.jpg,,,Identifiable +N1,91848,Sortie #91848,https://biolit.fr/sorties/sortie-91848/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Calliostoma-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Chiton.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Galathee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG_20250430_165815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ormeau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Seau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-scaled.jpg,4/29/2025 0:00,15.0000000,16.0000000,48.7040830000000,-1.84444800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,91891,Observation #91891,https://biolit.fr/observations/observation-91891/,Crangon crangon,Crevette grise européenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-grise-scaled.jpg,,,Identifiable +N1,91848,Sortie #91848,https://biolit.fr/sorties/sortie-91848/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Calliostoma-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Chiton.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Galathee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG_20250430_165815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ormeau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Seau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-scaled.jpg,4/29/2025 0:00,15.0000000,16.0000000,48.7040830000000,-1.84444800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,91893,Observation #91893,https://biolit.fr/observations/observation-91893/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Galathee-scaled.jpg,,,Identifiable +N1,91848,Sortie #91848,https://biolit.fr/sorties/sortie-91848/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Calliostoma-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Chiton.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Galathee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG_20250430_165815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ormeau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Seau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-scaled.jpg,4/29/2025 0:00,15.0000000,16.0000000,48.7040830000000,-1.84444800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,91895,Observation #91895,https://biolit.fr/observations/observation-91895/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG_20250430_165815-scaled.jpg,,,Identifiable +N1,91848,Sortie #91848,https://biolit.fr/sorties/sortie-91848/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Calliostoma-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Chiton.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Galathee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG_20250430_165815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ormeau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Seau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-scaled.jpg,4/29/2025 0:00,15.0000000,16.0000000,48.7040830000000,-1.84444800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,91897,Observation #91897,https://biolit.fr/observations/observation-91897/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG_20250430_165815-scaled.jpg,,,Identifiable +N1,91848,Sortie #91848,https://biolit.fr/sorties/sortie-91848/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Calliostoma-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Chiton.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Galathee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG_20250430_165815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ormeau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Seau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-scaled.jpg,4/29/2025 0:00,15.0000000,16.0000000,48.7040830000000,-1.84444800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,91899,Observation #91899,https://biolit.fr/observations/observation-91899/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ormeau.jpg,,TRUE,Identifiable +N1,91848,Sortie #91848,https://biolit.fr/sorties/sortie-91848/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Calliostoma-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Chiton.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Galathee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG_20250430_165815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ormeau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Seau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-scaled.jpg,4/29/2025 0:00,15.0000000,16.0000000,48.7040830000000,-1.84444800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,91901,Observation #91901,https://biolit.fr/observations/observation-91901/,Mimachlamys varia,Pétoncle noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Petoncle.jpg,,,Identifiable +N1,91848,Sortie #91848,https://biolit.fr/sorties/sortie-91848/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Calliostoma-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Chiton.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Galathee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG_20250430_165815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ormeau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Seau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-scaled.jpg,4/29/2025 0:00,15.0000000,16.0000000,48.7040830000000,-1.84444800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,91903,Observation #91903,https://biolit.fr/observations/observation-91903/,Nerophis ophidion,Nérophis ophidion,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Seau.jpg,,,Identifiable +N1,91864,Sortie #91864,https://biolit.fr/sorties/sortie-91864/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0158.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0160.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0162.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0164.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0165.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0166.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0167.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0168.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0171.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0173.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0178.jpg,05/02/2025,10.0000000,11.0000000,47.5239530000000,-3.12913500000000,,Plage de Kéraude,91865,Observation #91865,https://biolit.fr/observations/observation-91865/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0158.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0160.jpg,,TRUE,Identifiable +N1,91864,Sortie #91864,https://biolit.fr/sorties/sortie-91864/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0158.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0160.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0162.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0164.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0165.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0166.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0167.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0168.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0171.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0173.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0178.jpg,05/02/2025,10.0000000,11.0000000,47.5239530000000,-3.12913500000000,,Plage de Kéraude,91867,Observation #91867,https://biolit.fr/observations/observation-91867/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0161.jpg,,TRUE,Identifiable +N1,91864,Sortie #91864,https://biolit.fr/sorties/sortie-91864/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0158.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0160.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0162.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0164.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0165.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0166.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0167.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0168.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0171.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0173.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0178.jpg,05/02/2025,10.0000000,11.0000000,47.5239530000000,-3.12913500000000,,Plage de Kéraude,91869,Observation #91869,https://biolit.fr/observations/observation-91869/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0171.jpg,,,Identifiable +N1,91864,Sortie #91864,https://biolit.fr/sorties/sortie-91864/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0158.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0160.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0162.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0164.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0165.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0166.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0167.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0168.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0171.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0173.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0178.jpg,05/02/2025,10.0000000,11.0000000,47.5239530000000,-3.12913500000000,,Plage de Kéraude,91871,Observation #91871,https://biolit.fr/observations/observation-91871/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0166.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0172.jpg,,TRUE,Identifiable +N1,91864,Sortie #91864,https://biolit.fr/sorties/sortie-91864/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0158.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0160.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0162.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0164.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0165.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0166.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0167.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0168.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0171.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0173.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0178.jpg,05/02/2025,10.0000000,11.0000000,47.5239530000000,-3.12913500000000,,Plage de Kéraude,91873,Observation #91873,https://biolit.fr/observations/observation-91873/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0173.jpg,,TRUE,Ne sais pas +N1,91864,Sortie #91864,https://biolit.fr/sorties/sortie-91864/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0158.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0160.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0162.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0164.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0165.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0166.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0167.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0168.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0171.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0173.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0178.jpg,05/02/2025,10.0000000,11.0000000,47.5239530000000,-3.12913500000000,,Plage de Kéraude,91875,Observation #91875,https://biolit.fr/observations/observation-91875/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0168.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0178.jpg,,,Ne sais pas +N1,91864,Sortie #91864,https://biolit.fr/sorties/sortie-91864/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0158.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0160.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0162.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0164.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0165.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0166.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0167.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0168.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0171.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0173.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0178.jpg,05/02/2025,10.0000000,11.0000000,47.5239530000000,-3.12913500000000,,Plage de Kéraude,91877,Observation #91877,https://biolit.fr/observations/observation-91877/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0167.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0165.jpg,,, +N1,91864,Sortie #91864,https://biolit.fr/sorties/sortie-91864/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0158.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0160.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0162.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0164.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0165.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0166.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0167.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0168.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0171.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0173.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0178.jpg,05/02/2025,10.0000000,11.0000000,47.5239530000000,-3.12913500000000,,Plage de Kéraude,91879,Observation #91879,https://biolit.fr/observations/observation-91879/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0176.jpg,,,Identifiable +N1,91864,Sortie #91864,https://biolit.fr/sorties/sortie-91864/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0156.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0158.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0160.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0161.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0162.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0164.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0165.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0166.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0167.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0168.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0171.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0172.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0173.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0176.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0178.jpg,05/02/2025,10.0000000,11.0000000,47.5239530000000,-3.12913500000000,,Plage de Kéraude,91881,Observation #91881,https://biolit.fr/observations/observation-91881/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0162.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG-20250505-WA0164.jpg,,TRUE,Ne sais pas +N1,91920,Sortie #91920,https://biolit.fr/sorties/sortie-91920/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/86cb527166bfe2e965f9462e7dd41c94/2025/05/IMG_7112-scaled.jpeg,05/06/2025,14.0:31,15.0:32,43.2733620000000,5.3617250000000,Planète Mer,Plage du prophète,,,,,,,,,, +N1,91927,Sortie #91927,https://biolit.fr/sorties/sortie-91927/,Rouimi Célia,https://biolit.fr/wp-content/uploads/jet-form-builder/a8f91100d8789712a85f96332d86c6e0/2025/05/1000043731-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a8f91100d8789712a85f96332d86c6e0/2025/05/1000043732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a8f91100d8789712a85f96332d86c6e0/2025/05/1000043733-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a8f91100d8789712a85f96332d86c6e0/2025/05/1000043734-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a8f91100d8789712a85f96332d86c6e0/2025/05/1000043735-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a8f91100d8789712a85f96332d86c6e0/2025/05/1000043736-scaled.jpg,05/06/2025,14.0000000,15.000005,43.2735110,5.3621710,Planète Mer,Plage du Prophète,,,,,,,,,, +N1,91932,Sortie #91932,https://biolit.fr/sorties/sortie-91932/,Nathan Moru,https://biolit.fr/wp-content/uploads/jet-form-builder/77f681fb61a341d321fd84bb69f4ab91/2025/05/1000032672-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/77f681fb61a341d321fd84bb69f4ab91/2025/05/1000032676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/77f681fb61a341d321fd84bb69f4ab91/2025/05/1000032674-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/77f681fb61a341d321fd84bb69f4ab91/2025/05/1000032670.jpg,05/06/2025,14.0000000,15.0:15,43.2732170,5.3619320,Planète Mer,Plage du prophete,91933,Observation #91933,https://biolit.fr/observations/observation-91933/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/77f681fb61a341d321fd84bb69f4ab91/2025/05/1000032674-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/77f681fb61a341d321fd84bb69f4ab91/2025/05/1000032672-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/77f681fb61a341d321fd84bb69f4ab91/2025/05/1000032670.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/77f681fb61a341d321fd84bb69f4ab91/2025/05/1000032676-scaled.jpg,,,Ne sais pas +N1,91946,Sortie #91946,https://biolit.fr/sorties/sortie-91946/,RAIMBAUD Axelle,https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7797-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7798-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7799-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7800-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7801-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7802-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7803-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7804-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7805-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7806-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7807-scaled.jpeg,05/06/2025,14.0000000,16.0000000,43.2731660000000,5.36203600000000,Planète Mer,Plage du prophète,91947,Observation #91947,https://biolit.fr/observations/observation-91947/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7807-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7805-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7806-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7804-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7803-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7801-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7802-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7799-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7797-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7798-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/54c62e5593959cbab50e6ee47f4d4e37/2025/05/IMG_7800-scaled.jpeg,,,Ne sais pas +N1,91954,Sortie #91954,https://biolit.fr/sorties/sortie-91954/,Gresçu swann,https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/92C6CBBB-7BA1-4475-8CF1-57E334BBF4F9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0365-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0364-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0363-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0362-scaled.jpeg,3/23/2025 0:00,10.0:45,12.0000000,47.8831380000000,-4.36043500000000,,Plage de Tréguennec,91955,Observation #91955,https://biolit.fr/observations/observation-91955/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0365-scaled.jpeg,,TRUE,Identifiable +N1,91954,Sortie #91954,https://biolit.fr/sorties/sortie-91954/,Gresçu swann,https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/92C6CBBB-7BA1-4475-8CF1-57E334BBF4F9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0365-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0364-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0363-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0362-scaled.jpeg,3/23/2025 0:00,10.0:45,12.0000000,47.8831380000000,-4.36043500000000,,Plage de Tréguennec,91957,Observation #91957,https://biolit.fr/observations/observation-91957/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0363-scaled.jpeg,,,Identifiable +N1,91954,Sortie #91954,https://biolit.fr/sorties/sortie-91954/,Gresçu swann,https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/92C6CBBB-7BA1-4475-8CF1-57E334BBF4F9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0365-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0364-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0363-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0362-scaled.jpeg,3/23/2025 0:00,10.0:45,12.0000000,47.8831380000000,-4.36043500000000,,Plage de Tréguennec,91959,Observation #91959,https://biolit.fr/observations/observation-91959/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/92C6CBBB-7BA1-4475-8CF1-57E334BBF4F9.jpeg,,TRUE,Ne sais pas +N1,91954,Sortie #91954,https://biolit.fr/sorties/sortie-91954/,Gresçu swann,https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/92C6CBBB-7BA1-4475-8CF1-57E334BBF4F9.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0365-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0364-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0363-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0362-scaled.jpeg,3/23/2025 0:00,10.0:45,12.0000000,47.8831380000000,-4.36043500000000,,Plage de Tréguennec,91961,Observation #91961,https://biolit.fr/observations/observation-91961/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0362-scaled.jpeg,,,Ne sais pas +N1,91964,Sortie #91964,https://biolit.fr/sorties/sortie-91964/,Gresçu swann,https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0364-1.jpeg,3/23/2025 0:00,10.0:46,12.0000000,47.8828460000000,-4.36019900000000,,Plage de tréguennec,91965,Observation #91965,https://biolit.fr/observations/observation-91965/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ad9557a44e52d9e06323993cda3752a4/2025/05/IMG_0364-1.jpeg,,,Identifiable +N1,91968,Sortie #91968,https://biolit.fr/sorties/sortie-91968/,Deydier Julia,https://biolit.fr/wp-content/uploads/jet-form-builder/db4944bcf7eea81d309bef0f2e142930/2025/05/posidonie.jpeg,1/20/2025 0:00,10.0000000,12.0000000,43.3579740000000,5.2913760000000,,Plage de Corbières,91969,Observation #91969,https://biolit.fr/observations/observation-91969/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/db4944bcf7eea81d309bef0f2e142930/2025/05/posidonie.jpeg,,TRUE,Identifiable +N1,91974,Sortie #91974,https://biolit.fr/sorties/sortie-91974/,Bonnet Pacome,https://biolit.fr/wp-content/uploads/jet-form-builder/c801b17f1f1ed4fa20688b529a2f1f83/2025/05/IMG_1402-scaled.jpeg,05/03/2025,10.000005,12.000005,46.6643410000000,-1.93084700000000,Association Hirondelle,,,,,,,,,,, +N1,91995,Sortie #91995,https://biolit.fr/sorties/sortie-91995/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/huitre-creuse-scaled.jpg,05/06/2025,10.0000000,11.0000000,48.7026420000000,-1.84722700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,91996,Observation #91996,https://biolit.fr/observations/observation-91996/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-3-scaled.jpg,,,Identifiable +N1,91995,Sortie #91995,https://biolit.fr/sorties/sortie-91995/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/huitre-creuse-scaled.jpg,05/06/2025,10.0000000,11.0000000,48.7026420000000,-1.84722700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,91998,Observation #91998,https://biolit.fr/observations/observation-91998/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-2-scaled.jpg,,,Identifiable +N1,91995,Sortie #91995,https://biolit.fr/sorties/sortie-91995/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/huitre-creuse-scaled.jpg,05/06/2025,10.0000000,11.0000000,48.7026420000000,-1.84722700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,92000,Observation #92000,https://biolit.fr/observations/observation-92000/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-2-scaled.jpg,,TRUE,Identifiable +N1,91995,Sortie #91995,https://biolit.fr/sorties/sortie-91995/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/huitre-creuse-scaled.jpg,05/06/2025,10.0000000,11.0000000,48.7026420000000,-1.84722700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,92002,Observation #92002,https://biolit.fr/observations/observation-92002/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-2-scaled.jpg,,,Identifiable +N1,91995,Sortie #91995,https://biolit.fr/sorties/sortie-91995/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/huitre-creuse-scaled.jpg,05/06/2025,10.0000000,11.0000000,48.7026420000000,-1.84722700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,92004,Observation #92004,https://biolit.fr/observations/observation-92004/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-1-scaled.jpg,,TRUE,Identifiable +N1,91995,Sortie #91995,https://biolit.fr/sorties/sortie-91995/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/huitre-creuse-scaled.jpg,05/06/2025,10.0000000,11.0000000,48.7026420000000,-1.84722700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,92006,Observation #92006,https://biolit.fr/observations/observation-92006/,Sacculina carcini,Sacculine du crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-2-scaled.jpg,,TRUE,Identifiable +N1,91995,Sortie #91995,https://biolit.fr/sorties/sortie-91995/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/huitre-creuse-scaled.jpg,05/06/2025,10.0000000,11.0000000,48.7026420000000,-1.84722700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,92008,Observation #92008,https://biolit.fr/observations/observation-92008/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-2-scaled.jpg,,TRUE,Identifiable +N1,91995,Sortie #91995,https://biolit.fr/sorties/sortie-91995/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/huitre-creuse-scaled.jpg,05/06/2025,10.0000000,11.0000000,48.7026420000000,-1.84722700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,92010,Observation #92010,https://biolit.fr/observations/observation-92010/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/eponge-orange-scaled.jpg,,,Ne sais pas +N1,91995,Sortie #91995,https://biolit.fr/sorties/sortie-91995/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/huitre-creuse-scaled.jpg,05/06/2025,10.0000000,11.0000000,48.7026420000000,-1.84722700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,92012,Observation #92012,https://biolit.fr/observations/observation-92012/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-2-scaled.jpg,,TRUE,Identifiable +N1,91995,Sortie #91995,https://biolit.fr/sorties/sortie-91995/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/chiton-cendre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-marbre-et-sacculina-carcini-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Grand-chiton-epineux-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/huitre-creuse-scaled.jpg,05/06/2025,10.0000000,11.0000000,48.7026420000000,-1.84722700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,92014,Observation #92014,https://biolit.fr/observations/observation-92014/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/huitre-creuse-scaled.jpg,,,Identifiable +N1,92019,Sortie #92019,https://biolit.fr/sorties/sortie-92019/,barroin laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/00e4beca4c46cd4c1059dce65e94574e/2025/05/IMG_6984-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/00e4beca4c46cd4c1059dce65e94574e/2025/05/IMG_6986-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/00e4beca4c46cd4c1059dce65e94574e/2025/05/IMG_6987-scaled.jpg,4/20/2025 0:00,15.0000000,18.0000000,48.807936,2.2872060,,CROIX VALMER,,,,,,,,,, +N1,92024,Sortie #92024,https://biolit.fr/sorties/sortie-92024/,Moncomble Aurélien,https://biolit.fr/wp-content/uploads/jet-form-builder/ea165c3dcb530d48887c73ef17ff07fc/2025/05/1000029042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea165c3dcb530d48887c73ef17ff07fc/2025/05/1000028973-scaled.jpg,05/09/2025,9.0000000,10.0000000,43.4825630000000,-1.56874400000000,CPIE Littoral Basque - Euskal Itsasbazterra,Plage du Port vieux,92025,Observation #92025,https://biolit.fr/observations/observation-92025/,Polycera quadrilineata,Polycère à quatre lignes,,https://biolit.fr/wp-content/uploads/jet-form-builder/ea165c3dcb530d48887c73ef17ff07fc/2025/05/1000029042-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea165c3dcb530d48887c73ef17ff07fc/2025/05/1000028973-scaled.jpg,,TRUE,Identifiable +N1,92030,Sortie #92030,https://biolit.fr/sorties/sortie-92030/,Moncomble Aurélien,https://biolit.fr/wp-content/uploads/jet-form-builder/ea165c3dcb530d48887c73ef17ff07fc/2025/05/1000029050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea165c3dcb530d48887c73ef17ff07fc/2025/05/1000029052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea165c3dcb530d48887c73ef17ff07fc/2025/05/1000029051-scaled.jpg,05/09/2025,9.0000000,10.0000000,43.4825010000000,-1.56869900000000,CPIE Littoral Basque - Euskal Itsasbazterra,Plage du Port vieux,92031,Observation #92031,https://biolit.fr/observations/observation-92031/,Yungia aurantiaca,Ver plat orange,,https://biolit.fr/wp-content/uploads/jet-form-builder/ea165c3dcb530d48887c73ef17ff07fc/2025/05/1000029051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea165c3dcb530d48887c73ef17ff07fc/2025/05/1000029050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ea165c3dcb530d48887c73ef17ff07fc/2025/05/1000029052-scaled.jpg,,TRUE,Identifiable +N1,92038,Sortie #92038,https://biolit.fr/sorties/sortie-92038/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110433-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104134-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.5031940,-4.4367870,,Boutrouilles kerlouan,92059,Observation #92059,https://biolit.fr/observations/observation-92059/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104134-scaled.jpg,,,Identifiable +N1,92038,Sortie #92038,https://biolit.fr/sorties/sortie-92038/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110433-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104134-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.5031940,-4.4367870,,Boutrouilles kerlouan,92075,Observation #92075,https://biolit.fr/observations/observation-92075/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110433-scaled.jpg,,,Identifiable +N1,92038,Sortie #92038,https://biolit.fr/sorties/sortie-92038/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110433-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104134-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.5031940,-4.4367870,,Boutrouilles kerlouan,92077,Observation #92077,https://biolit.fr/observations/observation-92077/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105744-scaled.jpg,,,Identifiable +N1,92038,Sortie #92038,https://biolit.fr/sorties/sortie-92038/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110433-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104134-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.5031940,-4.4367870,,Boutrouilles kerlouan,92080,Observation #92080,https://biolit.fr/observations/observation-92080/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110433-scaled.jpg,,,Identifiable +N1,92038,Sortie #92038,https://biolit.fr/sorties/sortie-92038/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110433-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104134-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.5031940,-4.4367870,,Boutrouilles kerlouan,92083,Observation #92083,https://biolit.fr/observations/observation-92083/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105534-scaled.jpg,,,Identifiable +N1,92038,Sortie #92038,https://biolit.fr/sorties/sortie-92038/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110433-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104353-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104134-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.5031940,-4.4367870,,Boutrouilles kerlouan,92087,Observation #92087,https://biolit.fr/observations/observation-92087/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104353-scaled.jpg,,,Identifiable +N1,92052,Sortie #92052,https://biolit.fr/sorties/sortie-92052/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144006-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142709-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142612-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142305-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142036-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141651-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141512-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141510-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141155-scaled.jpg,05/06/2025,14.0:15,16.0000000,48.7137700000000,-3.592529000000,,Boutrouilles,92114,Observation #92114,https://biolit.fr/observations/observation-92114/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142305-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141651-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141510-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142036-scaled.jpg,,,Identifiable +N1,92074,Sortie #92074,https://biolit.fr/sorties/sortie-92074/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105530-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104859-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104743-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104703-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104702-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104527-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104220-scaled.jpg,05/06/2025,9.0000000,16.0000000,48.5031940,-4.4367870,,Boutrouille,92085,Observation #92085,https://biolit.fr/observations/observation-92085/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104220-scaled.jpg,,,Ne sais pas +N1,92074,Sortie #92074,https://biolit.fr/sorties/sortie-92074/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105530-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104859-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104743-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104703-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104702-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104527-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104220-scaled.jpg,05/06/2025,9.0000000,16.0000000,48.5031940,-4.4367870,,Boutrouille,92112,Observation #92112,https://biolit.fr/observations/observation-92112/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104220-scaled.jpg,,TRUE,Identifiable +N1,92074,Sortie #92074,https://biolit.fr/sorties/sortie-92074/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105530-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104859-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104743-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104703-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104702-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104527-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104220-scaled.jpg,05/06/2025,9.0000000,16.0000000,48.5031940,-4.4367870,,Boutrouille,92118,Observation #92118,https://biolit.fr/observations/observation-92118/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104527-scaled.jpg,,,Identifiable +N1,92074,Sortie #92074,https://biolit.fr/sorties/sortie-92074/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105530-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104859-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104743-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104703-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104702-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104527-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104220-scaled.jpg,05/06/2025,9.0000000,16.0000000,48.5031940,-4.4367870,,Boutrouille,92121,Observation #92121,https://biolit.fr/observations/observation-92121/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104527-scaled.jpg,,,Identifiable +N1,92074,Sortie #92074,https://biolit.fr/sorties/sortie-92074/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105530-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104859-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104743-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104703-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104702-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104527-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104220-scaled.jpg,05/06/2025,9.0000000,16.0000000,48.5031940,-4.4367870,,Boutrouille,92124,Observation #92124,https://biolit.fr/observations/observation-92124/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104220-scaled.jpg,,,Identifiable +N1,92074,Sortie #92074,https://biolit.fr/sorties/sortie-92074/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141058-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105530-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105100-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104859-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104743-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104703-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104702-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104527-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104403-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104220-scaled.jpg,05/06/2025,9.0000000,16.0000000,48.5031940,-4.4367870,,Boutrouille,92134,Observation #92134,https://biolit.fr/observations/observation-92134/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104220-scaled.jpg,,TRUE,Identifiable +N1,92094,Sortie #92094,https://biolit.fr/sorties/sortie-92094/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105221-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104342-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6545980000000,6835.58727300000,,Boutrouille Kerlouan,92106,Observation #92106,https://biolit.fr/observations/observation-92106/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105221-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104342-scaled.jpg,,,Ne sais pas +N1,92094,Sortie #92094,https://biolit.fr/sorties/sortie-92094/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105221-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104342-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6545980000000,6835.58727300000,,Boutrouille Kerlouan,92128,Observation #92128,https://biolit.fr/observations/observation-92128/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104515-scaled.jpg,,, +N1,92094,Sortie #92094,https://biolit.fr/sorties/sortie-92094/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105221-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104342-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6545980000000,6835.58727300000,,Boutrouille Kerlouan,92130,Observation #92130,https://biolit.fr/observations/observation-92130/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104452-scaled.jpg,,TRUE, +N1,92094,Sortie #92094,https://biolit.fr/sorties/sortie-92094/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105221-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104452-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104342-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6545980000000,6835.58727300000,,Boutrouille Kerlouan,92132,Observation #92132,https://biolit.fr/observations/observation-92132/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104342-scaled.jpg,,TRUE, +N1,92098,Sortie #92098,https://biolit.fr/sorties/sortie-92098/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144249-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141716-scaled.jpg,05/06/2025,13.0000000,16.0000000,48.6417950000000,-4.22515900000000,,Kerlouan,92140,Observation #92140,https://biolit.fr/observations/observation-92140/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144249-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141716-scaled.jpg,,, +N1,92109,Sortie #92109,https://biolit.fr/sorties/sortie-92109/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110803-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110645-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110517-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110441-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105510-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104918-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104756-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.5031940,-4.4367870,,Boutrouille kerlouan,92115,Observation #92115,https://biolit.fr/observations/observation-92115/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104918-scaled.jpg,,,Identifiable +N1,92109,Sortie #92109,https://biolit.fr/sorties/sortie-92109/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110803-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110645-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110517-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110441-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105510-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104918-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104756-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.5031940,-4.4367870,,Boutrouille kerlouan,92120,Observation #92120,https://biolit.fr/observations/observation-92120/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105510-scaled.jpg,,,Identifiable +N1,92109,Sortie #92109,https://biolit.fr/sorties/sortie-92109/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141257-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110803-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110645-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110517-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110441-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105510-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104918-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104756-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.5031940,-4.4367870,,Boutrouille kerlouan,92126,Observation #92126,https://biolit.fr/observations/observation-92126/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110441-scaled.jpg,,,Identifiable +N1,92139,Sortie #92139,https://biolit.fr/sorties/sortie-92139/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_103625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_103416-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_102946-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.504883,-4.4289370,,Kerlouan boutrouille,92142,Observation #92142,https://biolit.fr/observations/observation-92142/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_103625-scaled.jpg,,,Identifiable +N1,92139,Sortie #92139,https://biolit.fr/sorties/sortie-92139/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_103625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_103416-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_102946-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.504883,-4.4289370,,Kerlouan boutrouille,92144,Observation #92144,https://biolit.fr/observations/observation-92144/,Agarum clathratum,Laminaire criblée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_103416-scaled.jpg,,,Identifiable +N1,92139,Sortie #92139,https://biolit.fr/sorties/sortie-92139/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_103625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_103416-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_102946-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.504883,-4.4289370,,Kerlouan boutrouille,92146,Observation #92146,https://biolit.fr/observations/observation-92146/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_102946-scaled.jpg,,,Identifiable +N1,92155,Sortie #92155,https://biolit.fr/sorties/sortie-92155/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_144138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_143624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_142808-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_142452-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.504883,-4,,Boutrouilles Kerlouan,92156,Observation #92156,https://biolit.fr/observations/observation-92156/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143939-scaled.jpg,,,Identifiable +N1,92155,Sortie #92155,https://biolit.fr/sorties/sortie-92155/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_144138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_143624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_142808-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_142452-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.504883,-4,,Boutrouilles Kerlouan,92158,Observation #92158,https://biolit.fr/observations/observation-92158/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142154-scaled.jpg,,,Identifiable +N1,92155,Sortie #92155,https://biolit.fr/sorties/sortie-92155/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143939-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142154-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_144138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_143624-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_142808-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_142452-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.504883,-4,,Boutrouilles Kerlouan,92160,Observation #92160,https://biolit.fr/observations/observation-92160/,Littorina compressa,Littorine à lignes noires,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142154-scaled.jpg,,,Identifiable +N1,92193,Sortie #92193,https://biolit.fr/sorties/sortie-92193/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_1432240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142445-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141601-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141341-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6543750000000,-4.40971800000000,,Boutrouil,92217,Observation #92217,https://biolit.fr/observations/observation-92217/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142732-scaled.jpg,,,Identifiable +N1,92193,Sortie #92193,https://biolit.fr/sorties/sortie-92193/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_1432240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142445-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141601-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141341-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6543750000000,-4.40971800000000,,Boutrouil,92236,Observation #92236,https://biolit.fr/observations/observation-92236/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144350-scaled.jpg,,,Identifiable +N1,92193,Sortie #92193,https://biolit.fr/sorties/sortie-92193/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_1432240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142445-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141601-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141341-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6543750000000,-4.40971800000000,,Boutrouil,92241,Observation #92241,https://biolit.fr/observations/observation-92241/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145253-scaled.jpg,,,Identifiable +N1,92193,Sortie #92193,https://biolit.fr/sorties/sortie-92193/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_1432240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142445-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141601-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141341-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6543750000000,-4.40971800000000,,Boutrouil,92243,Observation #92243,https://biolit.fr/observations/observation-92243/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142119-scaled.jpg,,,Identifiable +N1,92193,Sortie #92193,https://biolit.fr/sorties/sortie-92193/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_1432240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142445-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141601-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141341-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6543750000000,-4.40971800000000,,Boutrouil,92257,Observation #92257,https://biolit.fr/observations/observation-92257/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142445-scaled.jpg,,TRUE,Identifiable +N1,92193,Sortie #92193,https://biolit.fr/sorties/sortie-92193/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_1432240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142445-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141601-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141341-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6543750000000,-4.40971800000000,,Boutrouil,92266,Observation #92266,https://biolit.fr/observations/observation-92266/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145515-scaled.jpg,,,Ne sais pas +N1,92193,Sortie #92193,https://biolit.fr/sorties/sortie-92193/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_1432240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142445-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141601-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141341-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6543750000000,-4.40971800000000,,Boutrouil,92276,Observation #92276,https://biolit.fr/observations/observation-92276/,Abudefduf notatus,Sergent à queue jaune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145515-scaled.jpg,,,Identifiable +N1,92193,Sortie #92193,https://biolit.fr/sorties/sortie-92193/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_1432240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142445-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141601-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141341-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6543750000000,-4.40971800000000,,Boutrouil,92294,Observation #92294,https://biolit.fr/observations/observation-92294/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145813-scaled.jpg,,,Identifiable +N1,92193,Sortie #92193,https://biolit.fr/sorties/sortie-92193/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_1432240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142445-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141601-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141341-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6543750000000,-4.40971800000000,,Boutrouil,92314,Observation #92314,https://biolit.fr/observations/observation-92314/,Caloplaca marina,Lichen encroûtant orange,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144350-scaled.jpg,,,Identifiable +N1,92193,Sortie #92193,https://biolit.fr/sorties/sortie-92193/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_1432240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142445-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141601-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141341-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6543750000000,-4.40971800000000,,Boutrouil,92328,Observation #92328,https://biolit.fr/observations/observation-92328/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143104-scaled.jpg,,,Identifiable +N1,92193,Sortie #92193,https://biolit.fr/sorties/sortie-92193/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_1432240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142445-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141601-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141341-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6543750000000,-4.40971800000000,,Boutrouil,92341,Observation #92341,https://biolit.fr/observations/observation-92341/,Littorina saxatilis,Littorine des rochers,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_1432240-scaled.jpg,,TRUE,Identifiable +N1,92193,Sortie #92193,https://biolit.fr/sorties/sortie-92193/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_1432240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142445-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141601-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141341-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6543750000000,-4.40971800000000,,Boutrouil,92347,Observation #92347,https://biolit.fr/observations/observation-92347/,Littorina compressa,Littorine à lignes noires,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143132-scaled.jpg,,,Identifiable +N1,92193,Sortie #92193,https://biolit.fr/sorties/sortie-92193/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_1432240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142445-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141601-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141341-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6543750000000,-4.40971800000000,,Boutrouil,92362,Observation #92362,https://biolit.fr/observations/observation-92362/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141341-scaled.jpg,,,Identifiable +N1,92193,Sortie #92193,https://biolit.fr/sorties/sortie-92193/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145515-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_1432240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142445-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142340-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142119-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141601-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141341-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6543750000000,-4.40971800000000,,Boutrouil,92366,Observation #92366,https://biolit.fr/observations/observation-92366/,Myrionema strangulans,Myrionema des ulves,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142119-scaled.jpg,,,Identifiable +N1,92197,Sortie #92197,https://biolit.fr/sorties/sortie-92197/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145524-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144430-scaled.jpg,05/06/2025,8.0000000,16.0000000,48.6544940000000,-4.40958000000000,,boutrouilles,,,,,,,,,, +N1,92201,Sortie #92201,https://biolit.fr/sorties/sortie-92201/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145524-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144430-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142246-scaled.jpg,05/06/2025,8.0000000,16.0000000,48.6543020000000,-4.40966200000000,,boutrouilles,,,,,,,,,, +N1,92209,Sortie #92209,https://biolit.fr/sorties/sortie-92209/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144006-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143516-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142709-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142521-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142305-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141155-1-scaled.jpg,05/06/2025,13.0000000,15.0000000,48.6636620000000,-4.40094000000000,,Boutrouilles,,,,,,,,,, +N1,92213,Sortie #92213,https://biolit.fr/sorties/sortie-92213/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145524-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144430-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142246-1-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6540980000000,-4.40975900000000,,Boutrouille,,,,,,,,,, +N1,92235,Sortie #92235,https://biolit.fr/sorties/sortie-92235/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141716-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144249-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141716-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141436-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144249-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142731-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142544-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141716-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141436-2-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.6429550000000,-4.36346100000000,,Boutrouilles,92270,Observation #92270,https://biolit.fr/observations/observation-92270/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141716-1-scaled.jpg,,,Identifiable +N1,92235,Sortie #92235,https://biolit.fr/sorties/sortie-92235/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141716-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144249-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141716-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141436-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144249-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142731-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142544-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141716-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141436-2-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.6429550000000,-4.36346100000000,,Boutrouilles,92300,Observation #92300,https://biolit.fr/observations/observation-92300/,Palmaria palmata,Goémon à vache,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141436-scaled.jpg,,,Identifiable +N1,92235,Sortie #92235,https://biolit.fr/sorties/sortie-92235/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141716-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144249-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141716-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141436-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144249-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142731-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142544-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141716-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141436-2-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.6429550000000,-4.36346100000000,,Boutrouilles,92304,Observation #92304,https://biolit.fr/observations/observation-92304/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144249-1-scaled.jpg,,TRUE,Identifiable +N1,92235,Sortie #92235,https://biolit.fr/sorties/sortie-92235/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141716-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141436-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144249-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141716-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141436-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144249-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142731-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142544-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141716-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141436-2-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.6429550000000,-4.36346100000000,,Boutrouilles,92354,Observation #92354,https://biolit.fr/observations/observation-92354/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142544-scaled.jpg,,,Identifiable +N1,92239,Sortie #92239,https://biolit.fr/sorties/sortie-92239/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143939-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143157-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143355-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143305-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142154-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141447-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141344-1-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.6451360000000,-4.36363200000000,,Boutrouilles,92246,Observation #92246,https://biolit.fr/observations/observation-92246/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143939-1-scaled.jpg,,,Identifiable +N1,92269,Sortie #92269,https://biolit.fr/sorties/sortie-92269/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144658-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_140754-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.653813000000,-4.40965200000000,,Boutrouilles,92280,Observation #92280,https://biolit.fr/observations/observation-92280/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145105-scaled.jpg,,,Identifiable +N1,92269,Sortie #92269,https://biolit.fr/sorties/sortie-92269/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144658-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_140754-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.653813000000,-4.40965200000000,,Boutrouilles,92292,Observation #92292,https://biolit.fr/observations/observation-92292/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144658-scaled.jpg,,TRUE,Identifiable +N1,92269,Sortie #92269,https://biolit.fr/sorties/sortie-92269/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144658-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_140754-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.653813000000,-4.40965200000000,,Boutrouilles,92296,Observation #92296,https://biolit.fr/observations/observation-92296/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144230-scaled.jpg,,,Identifiable +N1,92269,Sortie #92269,https://biolit.fr/sorties/sortie-92269/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144658-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_140754-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.653813000000,-4.40965200000000,,Boutrouilles,92302,Observation #92302,https://biolit.fr/observations/observation-92302/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143813-scaled.jpg,,,Identifiable +N1,92269,Sortie #92269,https://biolit.fr/sorties/sortie-92269/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144658-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_140754-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.653813000000,-4.40965200000000,,Boutrouilles,92307,Observation #92307,https://biolit.fr/observations/observation-92307/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143538-scaled.jpg,,,Identifiable +N1,92269,Sortie #92269,https://biolit.fr/sorties/sortie-92269/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144658-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_140754-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.653813000000,-4.40965200000000,,Boutrouilles,92316,Observation #92316,https://biolit.fr/observations/observation-92316/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143007-scaled.jpg,,,Identifiable +N1,92269,Sortie #92269,https://biolit.fr/sorties/sortie-92269/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144658-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_140754-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.653813000000,-4.40965200000000,,Boutrouilles,92322,Observation #92322,https://biolit.fr/observations/observation-92322/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142713-scaled.jpg,,,Identifiable +N1,92269,Sortie #92269,https://biolit.fr/sorties/sortie-92269/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144658-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_140754-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.653813000000,-4.40965200000000,,Boutrouilles,92332,Observation #92332,https://biolit.fr/observations/observation-92332/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142414-scaled.jpg,,,Identifiable +N1,92269,Sortie #92269,https://biolit.fr/sorties/sortie-92269/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144658-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_140754-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.653813000000,-4.40965200000000,,Boutrouilles,92337,Observation #92337,https://biolit.fr/observations/observation-92337/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142344-scaled.jpg,,,Identifiable +N1,92269,Sortie #92269,https://biolit.fr/sorties/sortie-92269/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144658-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144230-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142124-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_140754-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.653813000000,-4.40965200000000,,Boutrouilles,92343,Observation #92343,https://biolit.fr/observations/observation-92343/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142159-scaled.jpg,,,Identifiable +N1,92279,Sortie #92279,https://biolit.fr/sorties/sortie-92279/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145524-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144430-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143149-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142246-2-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6540210000000,-4.40960900000000,,Boutrouille,92282,Observation #92282,https://biolit.fr/observations/observation-92282/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145524-3-scaled.jpg,,,Identifiable +N1,92279,Sortie #92279,https://biolit.fr/sorties/sortie-92279/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145524-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144430-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143149-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142246-2-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6540210000000,-4.40960900000000,,Boutrouille,92290,Observation #92290,https://biolit.fr/observations/observation-92290/,Caloplaca marina,Lichen encroûtant orange,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144430-3-scaled.jpg,,,Identifiable +N1,92279,Sortie #92279,https://biolit.fr/sorties/sortie-92279/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145524-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144430-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143149-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142246-2-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6540210000000,-4.40960900000000,,Boutrouille,92297,Observation #92297,https://biolit.fr/observations/observation-92297/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143149-scaled.jpg,,,Identifiable +N1,92279,Sortie #92279,https://biolit.fr/sorties/sortie-92279/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145524-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144430-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143149-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142246-2-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6540210000000,-4.40960900000000,,Boutrouille,92310,Observation #92310,https://biolit.fr/observations/observation-92310/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142638-scaled.jpg,,,Identifiable +N1,92279,Sortie #92279,https://biolit.fr/sorties/sortie-92279/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145524-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144430-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143149-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142246-2-scaled.jpg,05/06/2025,13.0:45,15.0000000,48.6540210000000,-4.40960900000000,,Boutrouille,92318,Observation #92318,https://biolit.fr/observations/observation-92318/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142246-2-scaled.jpg,,,Identifiable +N1,92289,Sortie #92289,https://biolit.fr/sorties/sortie-92289/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143305-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143155-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142154-2-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.6423880000000,-4.36180100000000,,Boutrouilles,92312,Observation #92312,https://biolit.fr/observations/observation-92312/,Littorina obtusata,Littorine obtuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142154-2-scaled.jpg,,,Identifiable +N1,92289,Sortie #92289,https://biolit.fr/sorties/sortie-92289/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143305-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143155-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142154-2-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.6423880000000,-4.36180100000000,,Boutrouilles,92320,Observation #92320,https://biolit.fr/observations/observation-92320/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143155-1-scaled.jpg,,TRUE,Identifiable +N1,92289,Sortie #92289,https://biolit.fr/sorties/sortie-92289/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143305-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143155-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142154-2-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.6423880000000,-4.36180100000000,,Boutrouilles,92334,Observation #92334,https://biolit.fr/observations/observation-92334/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143305-1-scaled.jpg,,,Identifiable +N1,92308,Sortie #92308,https://biolit.fr/sorties/sortie-92308/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141751-scaled.jpg,05/06/2025,13.0000000,16.0000000,48.6527460000000,-4.39567600000000,,Boutrouille,92330,Observation #92330,https://biolit.fr/observations/observation-92330/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141751-scaled.jpg,,,Identifiable +N1,92353,Sortie #92353,https://biolit.fr/sorties/sortie-92353/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143631-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143355-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141447-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141344-2-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.6423880000000,-4.36180100000000,,Boutrouilles,,,,,,,,,, +N1,92359,Sortie #92359,https://biolit.fr/sorties/sortie-92359/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142305-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141651-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141155-2-scaled.jpg,05/06/2025,13.0000000,15.0000000,48.6542070000000,-4.40903700000000,,Boutrouilles,92370,Observation #92370,https://biolit.fr/observations/observation-92370/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142305-2-scaled.jpg,,TRUE,Identifiable +N1,92359,Sortie #92359,https://biolit.fr/sorties/sortie-92359/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142305-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141651-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141155-2-scaled.jpg,05/06/2025,13.0000000,15.0000000,48.6542070000000,-4.40903700000000,,Boutrouilles,92384,Observation #92384,https://biolit.fr/observations/observation-92384/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141651-1-scaled.jpg,,,Identifiable +N1,92359,Sortie #92359,https://biolit.fr/sorties/sortie-92359/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142305-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141651-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141155-2-scaled.jpg,05/06/2025,13.0000000,15.0000000,48.6542070000000,-4.40903700000000,,Boutrouilles,92387,Observation #92387,https://biolit.fr/observations/observation-92387/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_141155-2-scaled.jpg,,,Identifiable +N1,92365,Sortie #92365,https://biolit.fr/sorties/sortie-92365/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143807-scaled.jpg,05/06/2025,13.0000000,16.0000000,48.6542120000000,-4.40967300000000,,boutrouille,92377,Observation #92377,https://biolit.fr/observations/observation-92377/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143807-scaled.jpg,,,Identifiable +N1,92385,Sortie #92385,https://biolit.fr/sorties/sortie-92385/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144612-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144245-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143811-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143733-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144245-1-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.6459620000000,-4.36406100000000,,Boutrouilles,92390,Observation #92390,https://biolit.fr/observations/observation-92390/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144612-scaled.jpg,,,Identifiable +N1,92385,Sortie #92385,https://biolit.fr/sorties/sortie-92385/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144612-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144245-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143811-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143733-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144245-1-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.6459620000000,-4.36406100000000,,Boutrouilles,92392,Observation #92392,https://biolit.fr/observations/observation-92392/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142614-scaled.jpg,,,Identifiable +N1,92385,Sortie #92385,https://biolit.fr/sorties/sortie-92385/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144612-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144245-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143811-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143733-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144245-1-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.6459620000000,-4.36406100000000,,Boutrouilles,92398,Observation #92398,https://biolit.fr/observations/observation-92398/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143811-scaled.jpg,,,Identifiable +N1,92385,Sortie #92385,https://biolit.fr/sorties/sortie-92385/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144612-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144245-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143811-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143733-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144245-1-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.6459620000000,-4.36406100000000,,Boutrouilles,92406,Observation #92406,https://biolit.fr/observations/observation-92406/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143733-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143526-scaled.jpg,,,Identifiable +N1,92385,Sortie #92385,https://biolit.fr/sorties/sortie-92385/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144612-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144245-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143811-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143733-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144245-1-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.6459620000000,-4.36406100000000,,Boutrouilles,92408,Observation #92408,https://biolit.fr/observations/observation-92408/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144245-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144245-scaled.jpg,,,Identifiable +N1,92385,Sortie #92385,https://biolit.fr/sorties/sortie-92385/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144612-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144245-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143811-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143733-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144245-1-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.6459620000000,-4.36406100000000,,Boutrouilles,92411,Observation #92411,https://biolit.fr/observations/observation-92411/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143009-scaled.jpg,,,Identifiable +N1,92385,Sortie #92385,https://biolit.fr/sorties/sortie-92385/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144612-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144245-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143811-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143733-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143046-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_144245-1-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.6459620000000,-4.36406100000000,,Boutrouilles,92414,Observation #92414,https://biolit.fr/observations/observation-92414/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143617-scaled.jpg,,,Ne sais pas +N1,92397,Sortie #92397,https://biolit.fr/sorties/sortie-92397/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145105-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143813-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142124-1-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.653738000000,-4.40952300000000,,Boutrouilles,92399,Observation #92399,https://biolit.fr/observations/observation-92399/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145105-1-scaled.jpg,,,Identifiable +N1,92397,Sortie #92397,https://biolit.fr/sorties/sortie-92397/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145105-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143813-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142124-1-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.653738000000,-4.40952300000000,,Boutrouilles,92402,Observation #92402,https://biolit.fr/observations/observation-92402/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143813-1-scaled.jpg,,,Identifiable +N1,92397,Sortie #92397,https://biolit.fr/sorties/sortie-92397/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_145105-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143813-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142124-1-scaled.jpg,05/06/2025,14.0000000,15.0000000,48.653738000000,-4.40952300000000,,Boutrouilles,92404,Observation #92404,https://biolit.fr/observations/observation-92404/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_142124-1-scaled.jpg,,,Identifiable +N1,92479,Sortie #92479,https://biolit.fr/sorties/sortie-92479/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105502-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104535-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104449-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6539050000000,-4.40960900000000,,Boutrouilles,,,,,,,,,, +N1,92482,Sortie #92482,https://biolit.fr/sorties/sortie-92482/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104219-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.5048830,-4.4289370,,Boutrouille,,,,,,,,,, +N1,92485,Sortie #92485,https://biolit.fr/sorties/sortie-92485/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104923-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104540-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104543-scaled.jpg,05/06/2025,10.0000000,11.0:45,49.4189400000000,-8.7945560000000,,Boutrouille,,,,,,,,,, +N1,92502,Sortie #92502,https://biolit.fr/sorties/sortie-92502/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110814-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110703-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110225-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105259-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105055-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104914-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104819-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104744-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104701-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104527-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104307-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104202-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104122-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6546210000000,-4.41057400000000,,Kerlouan,,,,,,,,,, +N1,92506,Sortie #92506,https://biolit.fr/sorties/sortie-92506/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105502-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104535-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104449-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6607220000000,-4.37976800000000,,Boutrouilles,92515,Observation #92515,https://biolit.fr/observations/observation-92515/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105502-1-scaled.jpg,,,Identifiable +N1,92506,Sortie #92506,https://biolit.fr/sorties/sortie-92506/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105502-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104535-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104449-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6607220000000,-4.37976800000000,,Boutrouilles,92518,Observation #92518,https://biolit.fr/observations/observation-92518/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104535-1-scaled.jpg,,,Identifiable +N1,92506,Sortie #92506,https://biolit.fr/sorties/sortie-92506/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105502-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104535-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104449-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6607220000000,-4.37976800000000,,Boutrouilles,92527,Observation #92527,https://biolit.fr/observations/observation-92527/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104449-1-scaled.jpg,,,Identifiable +N1,92510,Sortie #92510,https://biolit.fr/sorties/sortie-92510/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104923-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104543-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104540-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6542650000000,-4.4094980000000,,Boutrouille Kerlouan,92536,Observation #92536,https://biolit.fr/observations/observation-92536/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104540-1-scaled.jpg,,,Identifiable +N1,92510,Sortie #92510,https://biolit.fr/sorties/sortie-92510/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104923-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104543-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104540-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6542650000000,-4.4094980000000,,Boutrouille Kerlouan,92557,Observation #92557,https://biolit.fr/observations/observation-92557/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104543-1-scaled.jpg,,,Identifiable +N1,92510,Sortie #92510,https://biolit.fr/sorties/sortie-92510/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104923-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104543-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104540-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6542650000000,-4.4094980000000,,Boutrouille Kerlouan,92567,Observation #92567,https://biolit.fr/observations/observation-92567/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104540-1-scaled.jpg,,,Identifiable +N1,92510,Sortie #92510,https://biolit.fr/sorties/sortie-92510/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104923-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104543-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104540-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6542650000000,-4.4094980000000,,Boutrouille Kerlouan,92577,Observation #92577,https://biolit.fr/observations/observation-92577/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104923-1-scaled.jpg,,,Identifiable +N1,92516,Sortie #92516,https://biolit.fr/sorties/sortie-92516/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105141-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110451-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6541060000000,-4.40932300000000,,Boutrouille - kerlouan,92530,Observation #92530,https://biolit.fr/observations/observation-92530/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110451-scaled.jpg,,,Identifiable +N1,92516,Sortie #92516,https://biolit.fr/sorties/sortie-92516/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105141-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110451-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6541060000000,-4.40932300000000,,Boutrouille - kerlouan,92534,Observation #92534,https://biolit.fr/observations/observation-92534/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105141-scaled.jpg,,,Identifiable +N1,92516,Sortie #92516,https://biolit.fr/sorties/sortie-92516/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105141-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110451-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6541060000000,-4.40932300000000,,Boutrouille - kerlouan,92559,Observation #92559,https://biolit.fr/observations/observation-92559/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105052-scaled.jpg,,,Identifiable +N1,92516,Sortie #92516,https://biolit.fr/sorties/sortie-92516/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105141-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110451-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6541060000000,-4.40932300000000,,Boutrouille - kerlouan,92571,Observation #92571,https://biolit.fr/observations/observation-92571/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105141-scaled.jpg,,TRUE,Identifiable +N1,92524,Sortie #92524,https://biolit.fr/sorties/sortie-92524/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104210-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104309-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105457-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105206-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.5048830,-4.4289370,,Boutrouille,,,,,,,,,, +N1,92533,Sortie #92533,https://biolit.fr/sorties/sortie-92533/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110225-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110030-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105312-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104409-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6547620000000,-4.41131100000000,,Kermouan,92545,Observation #92545,https://biolit.fr/observations/observation-92545/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110225-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110030-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105312-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104409-1-scaled.jpg,,,Identifiable +N1,92533,Sortie #92533,https://biolit.fr/sorties/sortie-92533/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110225-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110030-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105312-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104409-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6547620000000,-4.41131100000000,,Kermouan,92569,Observation #92569,https://biolit.fr/observations/observation-92569/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110030-1-scaled.jpg,,,Identifiable +N1,92533,Sortie #92533,https://biolit.fr/sorties/sortie-92533/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110225-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110030-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105312-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104409-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6547620000000,-4.41131100000000,,Kermouan,92579,Observation #92579,https://biolit.fr/observations/observation-92579/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110225-1-scaled.jpg,,,Identifiable +N1,92548,Sortie #92548,https://biolit.fr/sorties/sortie-92548/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105642-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_103906-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_142452-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143155-2-scaled.jpg,05/06/2025,9.0000000,15.0000000,48.6382590000000,-4.41375700000000,,Kerlouan,92573,Observation #92573,https://biolit.fr/observations/observation-92573/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_142452-1-scaled.jpg,,,Identifiable +N1,92560,Sortie #92560,https://biolit.fr/sorties/sortie-92560/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104528-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104300-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104220-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6538750000000,-4.40948400000000,,Boutrouilles Kerlouan,92575,Observation #92575,https://biolit.fr/observations/observation-92575/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104528-1-scaled.jpg,,,Identifiable +N1,92560,Sortie #92560,https://biolit.fr/sorties/sortie-92560/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104528-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104300-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104220-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6538750000000,-4.40948400000000,,Boutrouilles Kerlouan,92583,Observation #92583,https://biolit.fr/observations/observation-92583/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104300-1-scaled.jpg,,TRUE,Identifiable +N1,92560,Sortie #92560,https://biolit.fr/sorties/sortie-92560/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104528-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104300-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104220-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6538750000000,-4.40948400000000,,Boutrouilles Kerlouan,92587,Observation #92587,https://biolit.fr/observations/observation-92587/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104220-1-scaled.jpg,,TRUE,Identifiable +N1,92561,Sortie #92561,https://biolit.fr/sorties/sortie-92561/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104210-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104309-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105457-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105206-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6567790000000,-4.38823700000000,,boutrouille,92580,Observation #92580,https://biolit.fr/observations/observation-92580/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104210-1-scaled.jpg,,TRUE,Identifiable +N1,92561,Sortie #92561,https://biolit.fr/sorties/sortie-92561/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104210-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104309-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105457-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105206-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6567790000000,-4.38823700000000,,boutrouille,92584,Observation #92584,https://biolit.fr/observations/observation-92584/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104309-1-scaled.jpg,,TRUE,Identifiable +N1,92561,Sortie #92561,https://biolit.fr/sorties/sortie-92561/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104210-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104309-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105457-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105206-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6567790000000,-4.38823700000000,,boutrouille,92589,Observation #92589,https://biolit.fr/observations/observation-92589/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105206-1-scaled.jpg,,,Identifiable +N1,92561,Sortie #92561,https://biolit.fr/sorties/sortie-92561/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104210-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104309-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105457-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105206-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6567790000000,-4.38823700000000,,boutrouille,92613,Observation #92613,https://biolit.fr/observations/observation-92613/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105457-1-scaled.jpg,,,Identifiable +N1,92562,Sortie #92562,https://biolit.fr/sorties/sortie-92562/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110152-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105441-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110152-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105214-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6543730000000,-4.40946600000000,,Kerlouan boutrouille,,,,,,,,,, +N1,92594,Sortie #92594,https://biolit.fr/sorties/sortie-92594/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143155-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_142452-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_141255-scaled.jpg,05/06/2025,9.0000000,15.0000000,48.6797030000000,-3.6309810000000,,Kerlouan,92595,Observation #92595,https://biolit.fr/observations/observation-92595/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_142452-2-scaled.jpg,,,Identifiable +N1,92594,Sortie #92594,https://biolit.fr/sorties/sortie-92594/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143155-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_142452-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_141255-scaled.jpg,05/06/2025,9.0000000,15.0000000,48.6797030000000,-3.6309810000000,,Kerlouan,92601,Observation #92601,https://biolit.fr/observations/observation-92601/,Osmundea pinnatifida,Dulse poivrée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_141255-scaled.jpg,,,Identifiable +N1,92594,Sortie #92594,https://biolit.fr/sorties/sortie-92594/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143155-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_142452-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250429_141255-scaled.jpg,05/06/2025,9.0000000,15.0000000,48.6797030000000,-3.6309810000000,,Kerlouan,92609,Observation #92609,https://biolit.fr/observations/observation-92609/,Acinetospora crinita,Algues brunes filamenteuses,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_143155-3-scaled.jpg,,,Identifiable +N1,92600,Sortie #92600,https://biolit.fr/sorties/sortie-92600/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104923-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104543-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104540-2-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.7316620000000,-4.39819300000000,,Boutrouille Kerlouan,92606,Observation #92606,https://biolit.fr/observations/observation-92606/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104923-2-scaled.jpg,,,Identifiable +N1,92600,Sortie #92600,https://biolit.fr/sorties/sortie-92600/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104923-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104543-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104540-2-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.7316620000000,-4.39819300000000,,Boutrouille Kerlouan,92615,Observation #92615,https://biolit.fr/observations/observation-92615/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104543-2-scaled.jpg,,,Identifiable +N1,92600,Sortie #92600,https://biolit.fr/sorties/sortie-92600/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104923-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104543-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104540-2-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.7316620000000,-4.39819300000000,,Boutrouille Kerlouan,92617,Observation #92617,https://biolit.fr/observations/observation-92617/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104540-2-scaled.jpg,,,Identifiable +N1,92612,Sortie #92612,https://biolit.fr/sorties/sortie-92612/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110152-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105441-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104732-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104712-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6546000000000,-4.4092660000000,,,92637,Observation #92637,https://biolit.fr/observations/observation-92637/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105441-1-scaled.jpg,,,Identifiable +N1,92612,Sortie #92612,https://biolit.fr/sorties/sortie-92612/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110152-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105441-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104732-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104712-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6546000000000,-4.4092660000000,,,92639,Observation #92639,https://biolit.fr/observations/observation-92639/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110152-3-scaled.jpg,,,Identifiable +N1,92612,Sortie #92612,https://biolit.fr/sorties/sortie-92612/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110152-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105441-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104732-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104712-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6546000000000,-4.4092660000000,,,92641,Observation #92641,https://biolit.fr/observations/observation-92641/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104732-1-scaled.jpg,,,Identifiable +N1,92612,Sortie #92612,https://biolit.fr/sorties/sortie-92612/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110152-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105441-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104732-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104712-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6546000000000,-4.4092660000000,,,92649,Observation #92649,https://biolit.fr/observations/observation-92649/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104712-scaled.jpg,,,Identifiable +N1,92623,Sortie #92623,https://biolit.fr/sorties/sortie-92623/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110451-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110152-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105141-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105052-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6543580000000,-4.40953000000000,,Boutrouille- kerlouan,92624,Observation #92624,https://biolit.fr/observations/observation-92624/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110451-1-scaled.jpg,,,Identifiable +N1,92623,Sortie #92623,https://biolit.fr/sorties/sortie-92623/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110451-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110152-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105141-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105052-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6543580000000,-4.40953000000000,,Boutrouille- kerlouan,92626,Observation #92626,https://biolit.fr/observations/observation-92626/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110152-4-scaled.jpg,,,Identifiable +N1,92623,Sortie #92623,https://biolit.fr/sorties/sortie-92623/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110451-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110152-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105141-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105052-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6543580000000,-4.40953000000000,,Boutrouille- kerlouan,92628,Observation #92628,https://biolit.fr/observations/observation-92628/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105141-1-scaled.jpg,,,Identifiable +N1,92634,Sortie #92634,https://biolit.fr/sorties/sortie-92634/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110703-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110030-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105055-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104701-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6548290000000,-4.41092500000000,,Boutrouilles,92635,Observation #92635,https://biolit.fr/observations/observation-92635/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110030-2-scaled.jpg,,,Identifiable +N1,92634,Sortie #92634,https://biolit.fr/sorties/sortie-92634/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110703-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110030-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105055-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104701-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6548290000000,-4.41092500000000,,Boutrouilles,92643,Observation #92643,https://biolit.fr/observations/observation-92643/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105055-1-scaled.jpg,,,Identifiable +N1,92634,Sortie #92634,https://biolit.fr/sorties/sortie-92634/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110703-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110030-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105055-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104701-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6548290000000,-4.41092500000000,,Boutrouilles,92645,Observation #92645,https://biolit.fr/observations/observation-92645/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110703-1-scaled.jpg,,,Ne sais pas +N1,92634,Sortie #92634,https://biolit.fr/sorties/sortie-92634/,Collège Saint Joseph,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110703-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_110030-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_105055-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104701-1-scaled.jpg,05/06/2025,10.0000000,11.0:45,48.6548290000000,-4.41092500000000,,Boutrouilles,92647,Observation #92647,https://biolit.fr/observations/observation-92647/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a6592f4de2d368294410ebb6fcd0c6a2/2025/05/20250506_104701-1-scaled.jpg,,,Ne sais pas +N1,92679,Sortie #92679,https://biolit.fr/sorties/sortie-92679/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7537.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7536.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7535.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7534.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7533.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7532.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7531.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7530.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7527.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7526.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7525.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7524.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7523.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7522.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7521.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7520.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7519.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7518.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7517.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7516.jpg,5/14/2025 0:00,9.000004,10.000004,49.9260270,1.0649080,ESTRAN cité de la Mer,plage de dieppe,,,,,,,,,, +N1,92700,Sortie #92700,https://biolit.fr/sorties/sortie-92700/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7537-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7536-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7535-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7534-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7533-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7532-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7531-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7530-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7527-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7526-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7525-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7524-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7523-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7521-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7520-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7519-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7518-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7517-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7515.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7514.jpg,5/14/2025 0:00,9.000004,10.000004,49.9260270,1.0649080,ESTRAN cité de la Mer,plage de dieppe,,,,,,,,,, +N1,92704,Sortie #92704,https://biolit.fr/sorties/sortie-92704/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7515-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7514-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7513-Copie.jpg,5/14/2025 0:00,9.000004,10.000004,49.9260340,1.0652000,ESTRAN cité de la Mer,plage de dieppe,92705,Observation #92705,https://biolit.fr/observations/observation-92705/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7513-Copie.jpg,,TRUE,Identifiable +N1,92704,Sortie #92704,https://biolit.fr/sorties/sortie-92704/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7515-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7514-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7513-Copie.jpg,5/14/2025 0:00,9.000004,10.000004,49.9260340,1.0652000,ESTRAN cité de la Mer,plage de dieppe,92707,Observation #92707,https://biolit.fr/observations/observation-92707/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7514-1.jpg,,TRUE,Identifiable +N1,92704,Sortie #92704,https://biolit.fr/sorties/sortie-92704/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7515-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7514-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7513-Copie.jpg,5/14/2025 0:00,9.000004,10.000004,49.9260340,1.0652000,ESTRAN cité de la Mer,plage de dieppe,92709,Observation #92709,https://biolit.fr/observations/observation-92709/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7515-1.jpg,,TRUE,Identifiable +N1,92714,Sortie #92714,https://biolit.fr/sorties/sortie-92714/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7521-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7520-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7519-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9268330,1.0639430,ESTRAN cité de la Mer,plage de dieppe,92715,Observation #92715,https://biolit.fr/observations/observation-92715/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7519-2.jpg,,TRUE,Identifiable +N1,92714,Sortie #92714,https://biolit.fr/sorties/sortie-92714/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7521-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7520-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7519-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9268330,1.0639430,ESTRAN cité de la Mer,plage de dieppe,92717,Observation #92717,https://biolit.fr/observations/observation-92717/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7520-2.jpg,,TRUE,Identifiable +N1,92714,Sortie #92714,https://biolit.fr/sorties/sortie-92714/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7521-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7520-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7519-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9268330,1.0639430,ESTRAN cité de la Mer,plage de dieppe,92719,Observation #92719,https://biolit.fr/observations/observation-92719/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7521-2.jpg,,TRUE,Identifiable +N1,92724,Sortie #92724,https://biolit.fr/sorties/sortie-92724/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7525-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7524-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7523-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9262460,1.0627510,ESTRAN cité de la Mer,plage de dieppe,92725,Observation #92725,https://biolit.fr/observations/observation-92725/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7523-2.jpg,,TRUE,Identifiable +N1,92724,Sortie #92724,https://biolit.fr/sorties/sortie-92724/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7525-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7524-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7523-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9262460,1.0627510,ESTRAN cité de la Mer,plage de dieppe,92727,Observation #92727,https://biolit.fr/observations/observation-92727/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7523-2.jpg,,,Identifiable +N1,92724,Sortie #92724,https://biolit.fr/sorties/sortie-92724/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7525-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7524-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7523-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9262460,1.0627510,ESTRAN cité de la Mer,plage de dieppe,92729,Observation #92729,https://biolit.fr/observations/observation-92729/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7524-2.jpg,,TRUE,Identifiable +N1,92724,Sortie #92724,https://biolit.fr/sorties/sortie-92724/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7525-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7524-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7523-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9262460,1.0627510,ESTRAN cité de la Mer,plage de dieppe,92731,Observation #92731,https://biolit.fr/observations/observation-92731/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7525-2.jpg,,TRUE,Identifiable +N1,92737,Sortie #92737,https://biolit.fr/sorties/sortie-92737/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7529-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/20250514_095128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/20250514_095152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7527-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9263970,1.0645600,ESTRAN cité de la Mer,plage de dieppe,92738,Observation #92738,https://biolit.fr/observations/observation-92738/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7527-2.jpg,,TRUE,Identifiable +N1,92737,Sortie #92737,https://biolit.fr/sorties/sortie-92737/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7529-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/20250514_095128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/20250514_095152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7527-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9263970,1.0645600,ESTRAN cité de la Mer,plage de dieppe,92740,Observation #92740,https://biolit.fr/observations/observation-92740/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/20250514_095152-scaled.jpg,,,Identifiable +N1,92737,Sortie #92737,https://biolit.fr/sorties/sortie-92737/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7529-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/20250514_095128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/20250514_095152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7527-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9263970,1.0645600,ESTRAN cité de la Mer,plage de dieppe,92742,Observation #92742,https://biolit.fr/observations/observation-92742/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/20250514_095128-scaled.jpg,,TRUE,Identifiable +N1,92737,Sortie #92737,https://biolit.fr/sorties/sortie-92737/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7529-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/20250514_095128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/20250514_095152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7527-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9263970,1.0645600,ESTRAN cité de la Mer,plage de dieppe,92744,Observation #92744,https://biolit.fr/observations/observation-92744/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7529-scaled.jpg,,,Identifiable +N1,92737,Sortie #92737,https://biolit.fr/sorties/sortie-92737/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7529-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/20250514_095128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/20250514_095152-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7527-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9263970,1.0645600,ESTRAN cité de la Mer,plage de dieppe,92746,Observation #92746,https://biolit.fr/observations/observation-92746/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/20250514_095152-scaled.jpg,,,Identifiable +N1,92755,Sortie #92755,https://biolit.fr/sorties/sortie-92755/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7536-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7535-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7534-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7533-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7532-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7531-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7530-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9262640,1.06479,ESTRAN cité de la Mer,plage de dieppe,92756,Observation #92756,https://biolit.fr/observations/observation-92756/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7530-2.jpg,,TRUE,Identifiable +N1,92755,Sortie #92755,https://biolit.fr/sorties/sortie-92755/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7536-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7535-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7534-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7533-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7532-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7531-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7530-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9262640,1.06479,ESTRAN cité de la Mer,plage de dieppe,92758,Observation #92758,https://biolit.fr/observations/observation-92758/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7531-2.jpg,,TRUE,Identifiable +N1,92755,Sortie #92755,https://biolit.fr/sorties/sortie-92755/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7536-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7535-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7534-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7533-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7532-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7531-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7530-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9262640,1.06479,ESTRAN cité de la Mer,plage de dieppe,92760,Observation #92760,https://biolit.fr/observations/observation-92760/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7532-2.jpg,,TRUE,Identifiable +N1,92755,Sortie #92755,https://biolit.fr/sorties/sortie-92755/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7536-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7535-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7534-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7533-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7532-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7531-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7530-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9262640,1.06479,ESTRAN cité de la Mer,plage de dieppe,92762,Observation #92762,https://biolit.fr/observations/observation-92762/,Ostrea edulis,Huître plate,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7533-2.jpg,,TRUE,Identifiable +N1,92755,Sortie #92755,https://biolit.fr/sorties/sortie-92755/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7536-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7535-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7534-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7533-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7532-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7531-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7530-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9262640,1.06479,ESTRAN cité de la Mer,plage de dieppe,92764,Observation #92764,https://biolit.fr/observations/observation-92764/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7534-2.jpg,,TRUE,Identifiable +N1,92755,Sortie #92755,https://biolit.fr/sorties/sortie-92755/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7536-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7535-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7534-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7533-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7532-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7531-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7530-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9262640,1.06479,ESTRAN cité de la Mer,plage de dieppe,92766,Observation #92766,https://biolit.fr/observations/observation-92766/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7535-2.jpg,,TRUE,Identifiable +N1,92755,Sortie #92755,https://biolit.fr/sorties/sortie-92755/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7536-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7535-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7534-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7533-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7532-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7531-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7530-2.jpg,5/14/2025 0:00,9.000004,10.000004,49.9262640,1.06479,ESTRAN cité de la Mer,plage de dieppe,92768,Observation #92768,https://biolit.fr/observations/observation-92768/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/05/IMG_7536-2.jpg,,TRUE,Identifiable +N1,92783,Sortie #92783,https://biolit.fr/sorties/sortie-92783/,Tarjus Oceane,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3222-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3231-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3228-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3230-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3227-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3229-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/E298EE2A-3891-4759-9E7F-0A0377D2B3DC-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/053EFDE3-43B3-4E28-A23A-6B7BD9F8DCB2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/52ECF2E0-61BA-4175-B409-C2D552C5831C-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/00321D64-EA2B-45DC-BAC6-4973470C7A24-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3239-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/A5507209-8908-468A-8EC8-191BE2275328-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3254-scaled.jpeg,5/14/2025 0:00,9.0:16,10.0000000,42.5723690000000,3.04500500000000,,"Zone Natura 2000, embouchure du tech et grau de la massane",,,,,,,,,, +N1,92795,Sortie #92795,https://biolit.fr/sorties/sortie-92795/,Tarjus Oceane,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/29F8981B-C005-4F97-B0A9-E63B203A3B08.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/52ECF2E0-61BA-4175-B409-C2D552C5831C.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/9076B225-4E15-433F-9671-F671522144E6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3239-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3254-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/obularia-maritima.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed.jpg,5/14/2025 0:00,9.0:16,10.000005,42.5722210000000,3.04499800000000,Fédération des réserves naturelles catalanes,Zone Natura 2000-Embouchure du Tech et Grau de la Massane,92796,Observation #92796,https://biolit.fr/observations/observation-92796/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/29F8981B-C005-4F97-B0A9-E63B203A3B08.jpg,,,Identifiable +N1,92795,Sortie #92795,https://biolit.fr/sorties/sortie-92795/,Tarjus Oceane,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/29F8981B-C005-4F97-B0A9-E63B203A3B08.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/52ECF2E0-61BA-4175-B409-C2D552C5831C.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/9076B225-4E15-433F-9671-F671522144E6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3239-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3254-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/obularia-maritima.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed.jpg,5/14/2025 0:00,9.0:16,10.000005,42.5722210000000,3.04499800000000,Fédération des réserves naturelles catalanes,Zone Natura 2000-Embouchure du Tech et Grau de la Massane,92798,Observation #92798,https://biolit.fr/observations/observation-92798/,Paronychia argentea,Paronyche argentée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/52ECF2E0-61BA-4175-B409-C2D552C5831C.jpg,,,Identifiable +N1,92795,Sortie #92795,https://biolit.fr/sorties/sortie-92795/,Tarjus Oceane,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/29F8981B-C005-4F97-B0A9-E63B203A3B08.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/52ECF2E0-61BA-4175-B409-C2D552C5831C.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/9076B225-4E15-433F-9671-F671522144E6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3239-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3254-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/obularia-maritima.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed.jpg,5/14/2025 0:00,9.0:16,10.000005,42.5722210000000,3.04499800000000,Fédération des réserves naturelles catalanes,Zone Natura 2000-Embouchure du Tech et Grau de la Massane,92800,Observation #92800,https://biolit.fr/observations/observation-92800/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/9076B225-4E15-433F-9671-F671522144E6.jpg,,,Identifiable +N1,92795,Sortie #92795,https://biolit.fr/sorties/sortie-92795/,Tarjus Oceane,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/29F8981B-C005-4F97-B0A9-E63B203A3B08.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/52ECF2E0-61BA-4175-B409-C2D552C5831C.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/9076B225-4E15-433F-9671-F671522144E6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3239-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3254-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/obularia-maritima.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed.jpg,5/14/2025 0:00,9.0:16,10.000005,42.5722210000000,3.04499800000000,Fédération des réserves naturelles catalanes,Zone Natura 2000-Embouchure du Tech et Grau de la Massane,92802,Observation #92802,https://biolit.fr/observations/observation-92802/,Medicago marina,Luzerne marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3239-rotated.jpg,,,Identifiable +N1,92795,Sortie #92795,https://biolit.fr/sorties/sortie-92795/,Tarjus Oceane,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/29F8981B-C005-4F97-B0A9-E63B203A3B08.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/52ECF2E0-61BA-4175-B409-C2D552C5831C.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/9076B225-4E15-433F-9671-F671522144E6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3239-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3254-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/obularia-maritima.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed.jpg,5/14/2025 0:00,9.0:16,10.000005,42.5722210000000,3.04499800000000,Fédération des réserves naturelles catalanes,Zone Natura 2000-Embouchure du Tech et Grau de la Massane,92804,Observation #92804,https://biolit.fr/observations/observation-92804/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3254-rotated.jpg,,,Identifiable +N1,92795,Sortie #92795,https://biolit.fr/sorties/sortie-92795/,Tarjus Oceane,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/29F8981B-C005-4F97-B0A9-E63B203A3B08.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/52ECF2E0-61BA-4175-B409-C2D552C5831C.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/9076B225-4E15-433F-9671-F671522144E6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3239-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3254-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/obularia-maritima.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed.jpg,5/14/2025 0:00,9.0:16,10.000005,42.5722210000000,3.04499800000000,Fédération des réserves naturelles catalanes,Zone Natura 2000-Embouchure du Tech et Grau de la Massane,92806,Observation #92806,https://biolit.fr/observations/observation-92806/,Lobularia maritima,Alysson maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/obularia-maritima.jpg,,,Identifiable +N1,92795,Sortie #92795,https://biolit.fr/sorties/sortie-92795/,Tarjus Oceane,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/29F8981B-C005-4F97-B0A9-E63B203A3B08.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/52ECF2E0-61BA-4175-B409-C2D552C5831C.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/9076B225-4E15-433F-9671-F671522144E6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3239-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3254-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/obularia-maritima.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed.jpg,5/14/2025 0:00,9.0:16,10.000005,42.5722210000000,3.04499800000000,Fédération des réserves naturelles catalanes,Zone Natura 2000-Embouchure du Tech et Grau de la Massane,92808,Observation #92808,https://biolit.fr/observations/observation-92808/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-1-scaled.jpg,,,Identifiable +N1,92795,Sortie #92795,https://biolit.fr/sorties/sortie-92795/,Tarjus Oceane,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/29F8981B-C005-4F97-B0A9-E63B203A3B08.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/52ECF2E0-61BA-4175-B409-C2D552C5831C.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/9076B225-4E15-433F-9671-F671522144E6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3239-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3254-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/obularia-maritima.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed.jpg,5/14/2025 0:00,9.0:16,10.000005,42.5722210000000,3.04499800000000,Fédération des réserves naturelles catalanes,Zone Natura 2000-Embouchure du Tech et Grau de la Massane,92810,Observation #92810,https://biolit.fr/observations/observation-92810/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-2-scaled.jpg,,,Identifiable +N1,92795,Sortie #92795,https://biolit.fr/sorties/sortie-92795/,Tarjus Oceane,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/29F8981B-C005-4F97-B0A9-E63B203A3B08.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/52ECF2E0-61BA-4175-B409-C2D552C5831C.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/9076B225-4E15-433F-9671-F671522144E6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3239-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3254-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/obularia-maritima.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed.jpg,5/14/2025 0:00,9.0:16,10.000005,42.5722210000000,3.04499800000000,Fédération des réserves naturelles catalanes,Zone Natura 2000-Embouchure du Tech et Grau de la Massane,92812,Observation #92812,https://biolit.fr/observations/observation-92812/,Ephedra distachya,Ephédra à chatons opposés,,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-3.jpg,,,Identifiable +N1,92795,Sortie #92795,https://biolit.fr/sorties/sortie-92795/,Tarjus Oceane,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/29F8981B-C005-4F97-B0A9-E63B203A3B08.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/52ECF2E0-61BA-4175-B409-C2D552C5831C.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/9076B225-4E15-433F-9671-F671522144E6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3239-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/IMG_3254-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/obularia-maritima.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed.jpg,5/14/2025 0:00,9.0:16,10.000005,42.5722210000000,3.04499800000000,Fédération des réserves naturelles catalanes,Zone Natura 2000-Embouchure du Tech et Grau de la Massane,92814,Observation #92814,https://biolit.fr/observations/observation-92814/,Lagurus ovatus,Queue de lièvre,,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/unnamed-4-scaled.jpg,,,Identifiable +N1,92817,Sortie #92817,https://biolit.fr/sorties/sortie-92817/,Tarjus Oceane,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/053EFDE3-43B3-4E28-A23A-6B7BD9F8DCB2-scaled.jpg,5/14/2025 0:00,9.0:15,10.000005,42.5724050000000,3.0450510000000,Fédération des réserves naturelles catalanes,Zone Natura 2000-Embouchure du Tech et Grau de la Massane,92818,Observation #92818,https://biolit.fr/observations/observation-92818/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a2c84a096cb29cf20c75ea973a8174ad/2025/05/053EFDE3-43B3-4E28-A23A-6B7BD9F8DCB2-scaled.jpg,,,Identifiable +N1,92933,Sortie #92933,https://biolit.fr/sorties/sortie-92933/,Ecole Gentillerie,https://biolit.fr/wp-content/uploads/jet-form-builder/ade2af53b0571d4f44a346640af988d9/2025/05/WhatsApp-Image-2025-05-15-at-16.37.281.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ade2af53b0571d4f44a346640af988d9/2025/05/WhatsApp-Image-2025-05-15-at-16.37.28.jpeg,5/15/2025 0:00,14.0000000,16.0000000,48.6544180000000,-2.02415600000000,Planète Mer,Fort National,92934,Observation #92934,https://biolit.fr/observations/observation-92934/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/ade2af53b0571d4f44a346640af988d9/2025/05/WhatsApp-Image-2025-05-15-at-16.37.281.jpeg,,,Identifiable +N1,92933,Sortie #92933,https://biolit.fr/sorties/sortie-92933/,Ecole Gentillerie,https://biolit.fr/wp-content/uploads/jet-form-builder/ade2af53b0571d4f44a346640af988d9/2025/05/WhatsApp-Image-2025-05-15-at-16.37.281.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ade2af53b0571d4f44a346640af988d9/2025/05/WhatsApp-Image-2025-05-15-at-16.37.28.jpeg,5/15/2025 0:00,14.0000000,16.0000000,48.6544180000000,-2.02415600000000,Planète Mer,Fort National,92936,Observation #92936,https://biolit.fr/observations/observation-92936/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ade2af53b0571d4f44a346640af988d9/2025/05/WhatsApp-Image-2025-05-15-at-16.37.28.jpeg,,,Identifiable +N1,93107,Sortie #93107,https://biolit.fr/sorties/sortie-93107/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bryozoaire-orange-vif-a-point-noir-1-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026210000000,-1.84731500000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93108,Observation #93108,https://biolit.fr/observations/observation-93108/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-scaled.jpg,,,Ne sais pas +N1,93107,Sortie #93107,https://biolit.fr/sorties/sortie-93107/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bryozoaire-orange-vif-a-point-noir-1-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026210000000,-1.84731500000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93110,Observation #93110,https://biolit.fr/observations/observation-93110/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-1-scaled.jpg,,TRUE,Identifiable +N1,93107,Sortie #93107,https://biolit.fr/sorties/sortie-93107/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bryozoaire-orange-vif-a-point-noir-1-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026210000000,-1.84731500000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93112,Observation #93112,https://biolit.fr/observations/observation-93112/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-1-scaled.jpg,,,Identifiable +N1,93107,Sortie #93107,https://biolit.fr/sorties/sortie-93107/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bryozoaire-orange-vif-a-point-noir-1-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026210000000,-1.84731500000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93114,Observation #93114,https://biolit.fr/observations/observation-93114/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-scaled.jpg,,TRUE,Identifiable +N1,93107,Sortie #93107,https://biolit.fr/sorties/sortie-93107/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bryozoaire-orange-vif-a-point-noir-1-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026210000000,-1.84731500000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93116,Observation #93116,https://biolit.fr/observations/observation-93116/,Dendrodoa grossularia,Ascidie groseille,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-5-scaled.jpg,,,Identifiable +N1,93107,Sortie #93107,https://biolit.fr/sorties/sortie-93107/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bryozoaire-orange-vif-a-point-noir-1-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026210000000,-1.84731500000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93118,Observation #93118,https://biolit.fr/observations/observation-93118/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-2-scaled.jpg,,TRUE,Identifiable +N1,93107,Sortie #93107,https://biolit.fr/sorties/sortie-93107/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bryozoaire-orange-vif-a-point-noir-1-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026210000000,-1.84731500000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93120,Observation #93120,https://biolit.fr/observations/observation-93120/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-1-scaled.jpg,,TRUE,Identifiable +N1,93107,Sortie #93107,https://biolit.fr/sorties/sortie-93107/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bryozoaire-orange-vif-a-point-noir-1-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026210000000,-1.84731500000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93122,Observation #93122,https://biolit.fr/observations/observation-93122/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-etoile-1-scaled.jpg,,TRUE,Identifiable +N1,93107,Sortie #93107,https://biolit.fr/sorties/sortie-93107/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bryozoaire-orange-vif-a-point-noir-1-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026210000000,-1.84731500000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93124,Observation #93124,https://biolit.fr/observations/observation-93124/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-4-scaled.jpg,,,Identifiable +N1,93107,Sortie #93107,https://biolit.fr/sorties/sortie-93107/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ascidie-groseille-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Botrylle-orange-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bryozoaire-orange-vif-a-point-noir-1-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026210000000,-1.84731500000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93126,Observation #93126,https://biolit.fr/observations/observation-93126/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bryozoaire-orange-vif-a-point-noir-1-scaled.jpg,,TRUE,Identifiable +N1,93140,Sortie #93140,https://biolit.fr/sorties/sortie-93140/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ciona-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ciona-intestinale-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Cione-intestinale-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-a-capuchon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-a-capuchon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Eponge-orange-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7027030000000,-1.84756500000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93141,Observation #93141,https://biolit.fr/observations/observation-93141/,Ciona intestinalis,Cione intestinale,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ciona-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ciona-intestinale-2-scaled.jpg,,TRUE,Identifiable +N1,93140,Sortie #93140,https://biolit.fr/sorties/sortie-93140/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ciona-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ciona-intestinale-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Cione-intestinale-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-a-capuchon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-a-capuchon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Eponge-orange-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7027030000000,-1.84756500000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93143,Observation #93143,https://biolit.fr/observations/observation-93143/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-marbre-2-scaled.jpg,,TRUE,Identifiable +N1,93140,Sortie #93140,https://biolit.fr/sorties/sortie-93140/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ciona-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ciona-intestinale-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Cione-intestinale-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-a-capuchon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-a-capuchon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Eponge-orange-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7027030000000,-1.84756500000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93145,Observation #93145,https://biolit.fr/observations/observation-93145/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-2-1-scaled.jpg,,TRUE,Identifiable +N1,93140,Sortie #93140,https://biolit.fr/sorties/sortie-93140/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ciona-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ciona-intestinale-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Cione-intestinale-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-a-capuchon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-a-capuchon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Eponge-orange-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7027030000000,-1.84756500000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93147,Observation #93147,https://biolit.fr/observations/observation-93147/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crepidule-1-scaled.jpg,,TRUE,Identifiable +N1,93140,Sortie #93140,https://biolit.fr/sorties/sortie-93140/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ciona-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ciona-intestinale-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Cione-intestinale-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-a-capuchon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-a-capuchon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Eponge-orange-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7027030000000,-1.84756500000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93149,Observation #93149,https://biolit.fr/observations/observation-93149/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-a-capuchon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-a-capuchon-2-scaled.jpg,,,Identifiable +N1,93140,Sortie #93140,https://biolit.fr/sorties/sortie-93140/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ciona-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ciona-intestinale-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Cione-intestinale-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-a-capuchon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-a-capuchon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Eponge-orange-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7027030000000,-1.84756500000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93151,Observation #93151,https://biolit.fr/observations/observation-93151/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Eponge-orange-2-scaled.jpg,,,Identifiable +N1,93165,Sortie #93165,https://biolit.fr/sorties/sortie-93165/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gibbule-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gobie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gobie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG20250513153655-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Oeufs-de-bigorneau-perceur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-indeterminee-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026170000000,-1.84714900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93166,Observation #93166,https://biolit.fr/observations/observation-93166/,Steromphala pennanti,Gibbule commune,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gibbule-2-1-scaled.jpg,,TRUE,Identifiable +N1,93165,Sortie #93165,https://biolit.fr/sorties/sortie-93165/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gibbule-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gobie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gobie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG20250513153655-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Oeufs-de-bigorneau-perceur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-indeterminee-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026170000000,-1.84714900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93168,Observation #93168,https://biolit.fr/observations/observation-93168/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gobie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gobie-2-scaled.jpg,,,Identifiable +N1,93165,Sortie #93165,https://biolit.fr/sorties/sortie-93165/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gibbule-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gobie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gobie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG20250513153655-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Oeufs-de-bigorneau-perceur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-indeterminee-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026170000000,-1.84714900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93170,Observation #93170,https://biolit.fr/observations/observation-93170/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG20250513153655-scaled.jpg,,,Ne sais pas +N1,93165,Sortie #93165,https://biolit.fr/sorties/sortie-93165/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gibbule-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gobie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gobie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG20250513153655-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Oeufs-de-bigorneau-perceur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-indeterminee-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026170000000,-1.84714900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93172,Observation #93172,https://biolit.fr/observations/observation-93172/,Nerophis ophidion,Nérophis ophidion,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-3-scaled.jpg,,,Identifiable +N1,93165,Sortie #93165,https://biolit.fr/sorties/sortie-93165/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gibbule-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gobie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gobie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG20250513153655-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Oeufs-de-bigorneau-perceur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-indeterminee-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026170000000,-1.84714900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93174,Observation #93174,https://biolit.fr/observations/observation-93174/,Ocenebra erinaceus,Ponte de Bigorneau perceur,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Oeufs-de-bigorneau-perceur.jpg,,TRUE,Identifiable +N1,93165,Sortie #93165,https://biolit.fr/sorties/sortie-93165/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gibbule-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gobie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gobie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG20250513153655-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Oeufs-de-bigorneau-perceur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-indeterminee-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026170000000,-1.84714900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93176,Observation #93176,https://biolit.fr/observations/observation-93176/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-de-pourpre-2-scaled.jpg,,TRUE,Identifiable +N1,93165,Sortie #93165,https://biolit.fr/sorties/sortie-93165/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gibbule-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gibbule-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gobie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Gobie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG20250513153655-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Nerophis-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Oeufs-de-bigorneau-perceur.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-indeterminee-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026170000000,-1.84714900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93178,Observation #93178,https://biolit.fr/observations/observation-93178/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-indeterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Ponte-indeterminee-2-scaled.jpg,,,Ne sais pas +N1,93188,Sortie #93188,https://biolit.fr/sorties/sortie-93188/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Siponcle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Siponcle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026500000000,-1.84733800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93189,Observation #93189,https://biolit.fr/observations/observation-93189/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Porcellane-2-scaled.jpg,,TRUE,Identifiable +N1,93188,Sortie #93188,https://biolit.fr/sorties/sortie-93188/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Siponcle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Siponcle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026500000000,-1.84733800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93191,Observation #93191,https://biolit.fr/observations/observation-93191/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Pourpre-2-scaled.jpg,,TRUE,Identifiable +N1,93188,Sortie #93188,https://biolit.fr/sorties/sortie-93188/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Siponcle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Siponcle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026500000000,-1.84733800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93193,Observation #93193,https://biolit.fr/observations/observation-93193/,Aspidosiphon muelleri,Siponcle commensal,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Siponcle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Siponcle-2-scaled.jpg,,,Identifiable +N1,93188,Sortie #93188,https://biolit.fr/sorties/sortie-93188/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Siponcle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Siponcle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-2-scaled.jpg,5/13/2025 0:00,15.0000000,16.0000000,48.7026500000000,-1.84733800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93195,Observation #93195,https://biolit.fr/observations/observation-93195/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Tomate-de-mer-2-scaled.jpg,,TRUE,Identifiable +N1,93235,Sortie #93235,https://biolit.fr/sorties/sortie-93235/,Carré Laelys,https://biolit.fr/wp-content/uploads/jet-form-builder/5af00f00ca53472f05d6dec6879268f9/2025/05/IMG_1532.jpeg,5/17/2025 0:00,11.0:56,11.0:57,48.6187970000000,-2.17392000000000,Saint Jacut Environnement,Baie de lancieux,93236,Observation #93236,https://biolit.fr/observations/observation-93236/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5af00f00ca53472f05d6dec6879268f9/2025/05/IMG_1532.jpeg,,,non-identifiable +N1,93242,Sortie #93242,https://biolit.fr/sorties/sortie-93242/,Louisclaire,https://biolit.fr/wp-content/uploads/jet-form-builder/fcad1075fa45bedbb9f432a57b2380f1/2025/05/20250509_121022-scaled.jpg,05/09/2025,10.000002,10.000002,48.8576550,2.4904490,Association IODDE - CPIE Marennes-Oléron,Saint trojan les bains,93243,Observation #93243,https://biolit.fr/observations/observation-93243/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/fcad1075fa45bedbb9f432a57b2380f1/2025/05/20250509_121022-scaled.jpg,,FALSE,Identifiable +N1,93242,Sortie #93242,https://biolit.fr/sorties/sortie-93242/,Louisclaire,https://biolit.fr/wp-content/uploads/jet-form-builder/fcad1075fa45bedbb9f432a57b2380f1/2025/05/20250509_121022-scaled.jpg,05/09/2025,10.000002,10.000002,48.8576550,2.4904490,Association IODDE - CPIE Marennes-Oléron,Saint trojan les bains,93412,Observation #93412,https://biolit.fr/observations/observation-93412/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/fcad1075fa45bedbb9f432a57b2380f1/2025/05/20250509_121022-scaled.jpg,,FALSE, +N1,93252,Sortie #93252,https://biolit.fr/sorties/sortie-93252/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5622.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5621.jpeg,05/09/2025,16.0:12,16.0:15,43.2697290000000,6.58688300000000,,Port Grimaud petite plage,93253,Observation #93253,https://biolit.fr/observations/observation-93253/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5622.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5621.jpeg,,TRUE,Identifiable +N1,93257,Sortie #93257,https://biolit.fr/sorties/sortie-93257/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5620.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5619.jpeg,05/09/2025,16.0:43,16.0:47,43.2709790000000,6.5877630000000,,Port grimaud passe d’entrée,93258,Observation #93258,https://biolit.fr/observations/observation-93258/,Sterna hirundo,Sterne pierregarin,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5620.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5619.jpeg,,TRUE,Identifiable +N1,93261,Sortie #93261,https://biolit.fr/sorties/sortie-93261/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5495.jpg,05/09/2025,16.000006,16.0000000,43.2714320000000,6.58601400000000,,Port grimaud petite plage,93262,Observation #93262,https://biolit.fr/observations/observation-93262/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5495.jpg,,TRUE,Identifiable +N1,93265,Sortie #93265,https://biolit.fr/sorties/sortie-93265/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5499-scaled.jpeg,05/09/2025,16.000006,16.0000000,43.271417000000,6.58602200000000,,Port grimaud petite plage,93266,Observation #93266,https://biolit.fr/observations/observation-93266/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5499-scaled.jpeg,,TRUE,Identifiable +N1,93270,Sortie #93270,https://biolit.fr/sorties/sortie-93270/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5512.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5512-1-scaled.jpg,05/09/2025,16.000007,16.0:12,43.2714480000000,6.58601400000000,,Port grimaud petite plage,93271,Observation #93271,https://biolit.fr/observations/observation-93271/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5512-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5512.jpg,,TRUE,Identifiable +N1,93274,Sortie #93274,https://biolit.fr/sorties/sortie-93274/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5457.jpg,05/09/2025,15.0:59,16.000008,43.2714480000000,6.58605700000000,,Port Grimaud petite plage,93275,Observation #93275,https://biolit.fr/observations/observation-93275/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5457.jpg,,TRUE,Identifiable +N1,93279,Sortie #93279,https://biolit.fr/sorties/sortie-93279/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5259.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5257.jpeg,05/06/2025,17.0:54,17.0:59,43.2723850000000,6.58711900000000,,Port grimaud grande plage jetée,93280,Observation #93280,https://biolit.fr/observations/observation-93280/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5259.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5257.jpeg,,TRUE,Identifiable +N1,93285,Sortie #93285,https://biolit.fr/sorties/sortie-93285/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4261.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4268.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4269.jpg,4/23/2025 0:00,15.0:33,15.0:49,43.2939440000000,6.63737300000000,,Large sainte maxime,93286,Observation #93286,https://biolit.fr/observations/observation-93286/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4261.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4268.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4269.jpg,,TRUE,Identifiable +N1,93306,Sortie #93306,https://biolit.fr/sorties/sortie-93306/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Amenome-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anguille-jeune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-2-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025960000000,-1.84733900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93307,Observation #93307,https://biolit.fr/observations/observation-93307/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Amenome-fraise-1-scaled.jpg,,,Identifiable +N1,93306,Sortie #93306,https://biolit.fr/sorties/sortie-93306/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Amenome-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anguille-jeune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-2-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025960000000,-1.84733900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93309,Observation #93309,https://biolit.fr/observations/observation-93309/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-2-scaled.jpg,,,Ne sais pas +N1,93306,Sortie #93306,https://biolit.fr/sorties/sortie-93306/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Amenome-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anguille-jeune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-2-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025960000000,-1.84733900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93311,Observation #93311,https://biolit.fr/observations/observation-93311/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-2-scaled.jpg,,,Identifiable +N1,93306,Sortie #93306,https://biolit.fr/sorties/sortie-93306/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Amenome-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anguille-jeune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-2-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025960000000,-1.84733900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93313,Observation #93313,https://biolit.fr/observations/observation-93313/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-1-scaled.jpg,,TRUE,Identifiable +N1,93306,Sortie #93306,https://biolit.fr/sorties/sortie-93306/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Amenome-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anguille-jeune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-2-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025960000000,-1.84733900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93315,Observation #93315,https://biolit.fr/observations/observation-93315/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anguille-jeune-1.jpg,,,Identifiable +N1,93306,Sortie #93306,https://biolit.fr/sorties/sortie-93306/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Amenome-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anguille-jeune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-2-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025960000000,-1.84733900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93317,Observation #93317,https://biolit.fr/observations/observation-93317/,Semibalanus balanoides,Balane commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Balane-scaled.jpg,,TRUE,Identifiable +N1,93306,Sortie #93306,https://biolit.fr/sorties/sortie-93306/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Amenome-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anguille-jeune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-2-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025960000000,-1.84733900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93319,Observation #93319,https://biolit.fr/observations/observation-93319/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-1-scaled.jpg,,TRUE,Identifiable +N1,93306,Sortie #93306,https://biolit.fr/sorties/sortie-93306/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Amenome-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anguille-jeune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-2-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025960000000,-1.84733900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93321,Observation #93321,https://biolit.fr/observations/observation-93321/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-3-scaled.jpg,,,Identifiable +N1,93306,Sortie #93306,https://biolit.fr/sorties/sortie-93306/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Amenome-fraise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-solaire-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anemone-verte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Anguille-jeune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Balane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Birgorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Blennie-paon-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-2-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025960000000,-1.84733900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93323,Observation #93323,https://biolit.fr/observations/observation-93323/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Coque-2-scaled.jpg,,,Identifiable +N1,93338,Sortie #93338,https://biolit.fr/sorties/sortie-93338/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-albinos-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-marbre-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-marbre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-a-capuchon-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Crevette-a-capuchon-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG20250522102432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/IMG20250522102438-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Lancon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Lancon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/05/Lancon-3-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7026110000000,-1.84746800000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,,,,,,,,,, +N1,93340,Sortie #93340,https://biolit.fr/sorties/sortie-93340/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5038.jpeg,05/01/2025,14.0:47,14.0000000,43.0483170000000,5.86823300000000,,Cap Sicié Six Fours large,93341,Observation #93341,https://biolit.fr/observations/observation-93341/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_5038.jpeg,,,Identifiable +N1,93347,Sortie #93347,https://biolit.fr/sorties/sortie-93347/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4030.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4029.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4031-scaled.jpeg,4/18/2025 0:00,13.000006,13.000009,43.2707980000000,6.58701200000000,,Port grimaud Petite plage,93348,Observation #93348,https://biolit.fr/observations/observation-93348/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4030.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4029.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4031-scaled.jpeg,,,Identifiable +N1,93353,Sortie #93353,https://biolit.fr/sorties/sortie-93353/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/85cb2d94-f42a-4cbf-bf20-c39ec4ae2812.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_6380.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_6379.jpeg,4/29/2025 0:00,19.0000000,19.000006,43.2696710000000,6.5798020000000,,Port grimaud plagette PG2,93354,Observation #93354,https://biolit.fr/observations/observation-93354/,Serranus hepatus,Serran-hépate,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/85cb2d94-f42a-4cbf-bf20-c39ec4ae2812.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_6380.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_6379.jpeg,,TRUE,Identifiable +N1,93361,Sortie #93361,https://biolit.fr/sorties/sortie-93361/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_0221.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_0221-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4543-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4546-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4490-scaled.jpeg,4/25/2025 0:00,15.0:45,17.0:45,43.2735150000000,6.59853500000000,,Golfe de Saint tropez,93362,Observation #93362,https://biolit.fr/observations/observation-93362/,Puffinus yelkouan,Puffin de Yelkouan,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_0221.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_0221-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4546-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4543-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_4490-scaled.jpeg,,TRUE,Identifiable +N1,93365,Sortie #93365,https://biolit.fr/sorties/sortie-93365/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_3463.jpeg,3/17/2025 0:00,17.0:53,18.0000000,43.2704950000000,6.58541900000000,,Port Grimaud petite plage,93366,Observation #93366,https://biolit.fr/observations/observation-93366/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_3463.jpeg,,TRUE,Identifiable +N1,93369,Sortie #93369,https://biolit.fr/sorties/sortie-93369/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_3465.jpeg,3/17/2025 0:00,17.0:56,17.0:59,43.2705070000000,6.585494000000,,Port Grimaud petite plage,93370,Observation #93370,https://biolit.fr/observations/observation-93370/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_3465.jpeg,,TRUE,Identifiable +N1,93373,Sortie #93373,https://biolit.fr/sorties/sortie-93373/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_3505.jpg,3/19/2025 0:00,17.0:26,16.0:33,43.2707290000000,6.58540800000000,,Port Grimaud petite plage,93374,Observation #93374,https://biolit.fr/observations/observation-93374/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_3505.jpg,,TRUE,Identifiable +N1,93378,Sortie #93378,https://biolit.fr/sorties/sortie-93378/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_2938.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_2937.jpg,03/08/2025,12.000001,12.000009,43.2707410000000,6.58551000000000,,Port Grimaud petite plage,93379,Observation #93379,https://biolit.fr/observations/observation-93379/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_2938.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/05/IMG_2937.jpg,,TRUE,Identifiable +N1,93383,Sortie #93383,https://biolit.fr/sorties/sortie-93383/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/sepia-officinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/salpe-3-scaled.jpg,05/09/2025,9.0000000,11.0000000,43.4323,1.2556,Centre de la mer,Plage des casernes de Seignosse,93384,Observation #93384,https://biolit.fr/observations/observation-93384/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/sepia-officinalis-scaled.jpg,,TRUE,Identifiable +N1,93383,Sortie #93383,https://biolit.fr/sorties/sortie-93383/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/sepia-officinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/salpe-3-scaled.jpg,05/09/2025,9.0000000,11.0000000,43.4323,1.2556,Centre de la mer,Plage des casernes de Seignosse,93386,Observation #93386,https://biolit.fr/observations/observation-93386/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/salpe-3-scaled.jpg,,FALSE,non-identifiable +N1,93402,Sortie #93402,https://biolit.fr/sorties/sortie-93402/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/oeuf-de-raie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/Test-dOursin-coeur-ou-souris-de-mer_echinocardium-cordatum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/Periostracum-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/gorgone-sp_leptogorgia-sarmentosa-a-confirmer-2-scaled.jpg,05/09/2025,9.0000000,11.0000000,43.7236790000000,-1.4320960000000,Centre de la mer,Plage des casernes de Seignosse,93405,Observation #93405,https://biolit.fr/observations/observation-93405/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/Test-dOursin-coeur-ou-souris-de-mer_echinocardium-cordatum-scaled.jpg,,TRUE,Identifiable +N1,93402,Sortie #93402,https://biolit.fr/sorties/sortie-93402/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/oeuf-de-raie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/Test-dOursin-coeur-ou-souris-de-mer_echinocardium-cordatum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/Periostracum-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/gorgone-sp_leptogorgia-sarmentosa-a-confirmer-2-scaled.jpg,05/09/2025,9.0000000,11.0000000,43.7236790000000,-1.4320960000000,Centre de la mer,Plage des casernes de Seignosse,93407,Observation #93407,https://biolit.fr/observations/observation-93407/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/Periostracum-2-scaled.jpg,,,Ne sais pas +N1,93402,Sortie #93402,https://biolit.fr/sorties/sortie-93402/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/oeuf-de-raie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/Test-dOursin-coeur-ou-souris-de-mer_echinocardium-cordatum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/Periostracum-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/gorgone-sp_leptogorgia-sarmentosa-a-confirmer-2-scaled.jpg,05/09/2025,9.0000000,11.0000000,43.7236790000000,-1.4320960000000,Centre de la mer,Plage des casernes de Seignosse,93409,Observation #93409,https://biolit.fr/observations/observation-93409/,Eunicella verrucosa,Gorgone verruqueuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/gorgone-sp_leptogorgia-sarmentosa-a-confirmer-2-scaled.jpg,,TRUE,Identifiable +N1,93402,Sortie #93402,https://biolit.fr/sorties/sortie-93402/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/oeuf-de-raie-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/Test-dOursin-coeur-ou-souris-de-mer_echinocardium-cordatum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/Periostracum-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/gorgone-sp_leptogorgia-sarmentosa-a-confirmer-2-scaled.jpg,05/09/2025,9.0000000,11.0000000,43.7236790000000,-1.4320960000000,Centre de la mer,Plage des casernes de Seignosse,96147,Observation #96147,https://biolit.fr/observations/observation-96147/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/05/oeuf-de-raie-1-scaled.jpg,,TRUE,Identifiable +N1,93415,Sortie #93415,https://biolit.fr/sorties/sortie-93415/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/05/1000017172-scaled.jpg,5/26/2025 0:00,14.0:25,14.0:31,48.654265000000,-2.02321200000000,Planète Mer (antenne Dinard),fort national,93416,Observation #93416,https://biolit.fr/observations/observation-93416/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/05/1000017172-scaled.jpg,,TRUE,Identifiable +N1,93567,Sortie #93567,https://biolit.fr/sorties/sortie-93567/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/05/c-Agathe_Bouet_PM-2-scaled.jpg,5/26/2025 0:00,14.0000000,15.0000000,48.6548710000000,-2.02422200000000,Planète Mer (antenne Dinard),Fort National,93568,Observation #93568,https://biolit.fr/observations/observation-93568/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/05/c-Agathe_Bouet_PM-2-scaled.jpg,,TRUE,Identifiable +N1,93572,Sortie #93572,https://biolit.fr/sorties/sortie-93572/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/05/Crabe_vert_juvenile-c-Agathe_Bouet_PM.jpg,5/26/2025 0:00,14.0000000,15.0000000,48.6544880000000,-2.0241420000000,Planète Mer (antenne Dinard),Fort National,93573,Observation #93573,https://biolit.fr/observations/observation-93573/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/05/Crabe_vert_juvenile-c-Agathe_Bouet_PM.jpg,,TRUE,Identifiable +N1,93581,Sortie #93581,https://biolit.fr/sorties/sortie-93581/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024139-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024150-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024145-scaled.jpg,5/27/2025 0:00,14.0:15,15.0:45,43.5261980000000,4.13842300000000,LABELBLEU,Plage Nord Grau-du-Roi,93582,Observation #93582,https://biolit.fr/observations/observation-93582/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024139-scaled.jpg,,TRUE,Identifiable +N1,93581,Sortie #93581,https://biolit.fr/sorties/sortie-93581/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024139-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024150-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024145-scaled.jpg,5/27/2025 0:00,14.0:15,15.0:45,43.5261980000000,4.13842300000000,LABELBLEU,Plage Nord Grau-du-Roi,93584,Observation #93584,https://biolit.fr/observations/observation-93584/,Callinectes sapidus,Crabe bleu américain,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024150-scaled.jpg,,TRUE,Identifiable +N1,93581,Sortie #93581,https://biolit.fr/sorties/sortie-93581/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024139-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024150-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024145-scaled.jpg,5/27/2025 0:00,14.0:15,15.0:45,43.5261980000000,4.13842300000000,LABELBLEU,Plage Nord Grau-du-Roi,93586,Observation #93586,https://biolit.fr/observations/observation-93586/,Styela plicata,Ascidie plissée,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024145-scaled.jpg,,,Identifiable +N1,93581,Sortie #93581,https://biolit.fr/sorties/sortie-93581/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024139-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024150-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024145-scaled.jpg,5/27/2025 0:00,14.0:15,15.0:45,43.5261980000000,4.13842300000000,LABELBLEU,Plage Nord Grau-du-Roi,93588,Observation #93588,https://biolit.fr/observations/observation-93588/,Undaria pinnatifida,Wakamé,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/05/1000024128-scaled.jpg,,,Identifiable +N1,93603,Sortie #93603,https://biolit.fr/sorties/sortie-93603/,ABCplouguerneau,https://biolit.fr/wp-content/uploads/jet-form-builder/ae988d37daa45e499013e9aa15343ee1/2025/05/IMG-20250525-WA0014.jpg,5/26/2025 0:00,9.0000000,11.0000000,48.6254740000000,-4.55902100000000,,Aod ar Reun,,,,,,,,,, +N1,93718,Sortie #93718,https://biolit.fr/sorties/sortie-93718/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_0090-1.jpg,5/29/2025 0:00,19.0:55,19.0:55,43.3863410000000,3.46221000000000,,Plage du Castellas,,,,,,,,,, +N1,93722,Sortie #93722,https://biolit.fr/sorties/sortie-93722/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_9860.jpg,1/19/2025 0:00,18.0000000,18.0000000,43.3251320000000,3.5653520000000,,Plage Robinson,,,,,,,,,, +N1,93726,Sortie #93726,https://biolit.fr/sorties/sortie-93726/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_9688-2-scaled.jpg,4/26/2025 0:00,17.0:21,17.0:21,43.3257680000000,3.56596500000000,,Plage Robinson,,,,,,,,,, +N1,93728,Sortie #93728,https://biolit.fr/sorties/sortie-93728/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_9499-scaled.jpg,4/21/2025 0:00,18.0:24,18.0:24,43.3333910000000,3.57422100000000,,Plage Vassal,93729,Observation #93729,https://biolit.fr/observations/observation-93729/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_9499-scaled.jpg,,,Identifiable +N1,93732,Sortie #93732,https://biolit.fr/sorties/sortie-93732/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_9667.jpg,4/26/2025 0:00,17.000006,17.000006,43.16288,3.29106,,Plage Rochelongue,93733,Observation #93733,https://biolit.fr/observations/observation-93733/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_9667.jpg,,,Identifiable +N1,93736,Sortie #93736,https://biolit.fr/sorties/sortie-93736/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_8963-scaled.jpg,04/11/2025,19.000002,19.000002,43.16288,3.29106,,Plage Robinson,93737,Observation #93737,https://biolit.fr/observations/observation-93737/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_8963-scaled.jpg,,TRUE,Identifiable +N1,93740,Sortie #93740,https://biolit.fr/sorties/sortie-93740/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_8258-scaled.jpg,1/26/2025 0:00,15.0:34,15.0:34,43.3333750000000,3.57419500000000,,Plage Vassal,93741,Observation #93741,https://biolit.fr/observations/observation-93741/,Acrocnida brachiata,Ophiure fouisseuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_8258-scaled.jpg,,,Identifiable +N1,93744,Sortie #93744,https://biolit.fr/sorties/sortie-93744/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/DSC_0043-scaled.jpg,3/22/2025 0:00,11.0000000,11.0000000,43.3377720000000,3.58223500000000,,Plage du Castellas,93745,Observation #93745,https://biolit.fr/observations/observation-93745/,Janthina janthina,Janthine commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/DSC_0043-scaled.jpg,,,Identifiable +N1,93748,Sortie #93748,https://biolit.fr/sorties/sortie-93748/,bourigault christine,https://biolit.fr/wp-content/uploads/jet-form-builder/45d50e00ea1eb1588afbc6d6ed3d68ad/2025/05/IMG_20250530_125436-scaled.jpg,5/30/2025 0:00,12.0000000,12.0000000,47.541897000000,-362.797608000000,,FOURNEVAY SARZEAU,93749,Observation #93749,https://biolit.fr/observations/observation-93749/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/45d50e00ea1eb1588afbc6d6ed3d68ad/2025/05/IMG_20250530_125436-scaled.jpg,,,Ne sais pas +N1,93752,Sortie #93752,https://biolit.fr/sorties/sortie-93752/,bourigault christine,https://biolit.fr/wp-content/uploads/jet-form-builder/45d50e00ea1eb1588afbc6d6ed3d68ad/2025/05/IMG_20250529_200607-scaled.jpg,5/29/2025 0:00,19.0:38,19.0:38,47.5548080000000,-2.73834200000000,,FOURNEVAY SARZEAU,93753,Observation #93753,https://biolit.fr/observations/observation-93753/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/45d50e00ea1eb1588afbc6d6ed3d68ad/2025/05/IMG_20250529_200607-scaled.jpg,,,Identifiable +N1,93756,Sortie #93756,https://biolit.fr/sorties/sortie-93756/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_0180-scaled.jpg,5/30/2025 0:00,20.000008,20.000008,43.288366,3.436941,,La Tamarissière,93757,Observation #93757,https://biolit.fr/observations/observation-93757/,Jania rubens,Janie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_0180-scaled.jpg,,,Identifiable +N1,93760,Sortie #93760,https://biolit.fr/sorties/sortie-93760/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_0098-scaled.jpg,5/30/2025 0:00,19.000008,19.000008,43.288366,3.436941,,La Tamarissière,93761,Observation #93761,https://biolit.fr/observations/observation-93761/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_0098-scaled.jpg,,TRUE,Identifiable +N1,93764,Sortie #93764,https://biolit.fr/sorties/sortie-93764/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_0169-scaled.jpg,5/30/2025 0:00,20.000004,20.000004,43.28836,3.437013,,La Tamarissière,93765,Observation #93765,https://biolit.fr/observations/observation-93765/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_0169-scaled.jpg,,TRUE,Identifiable +N1,93768,Sortie #93768,https://biolit.fr/sorties/sortie-93768/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_0100.jpg,5/30/2025 0:00,19.0:12,19.0:12,43.28836,3.437013,,La Tamarissière,93769,Observation #93769,https://biolit.fr/observations/observation-93769/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_0100.jpg,,TRUE,Identifiable +N1,93772,Sortie #93772,https://biolit.fr/sorties/sortie-93772/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_0170-scaled.jpg,5/30/2025 0:00,20.000004,20.000004,43.28836,3.437013,,La Tamarissière,93773,Observation #93773,https://biolit.fr/observations/observation-93773/,Euraphia depressa,Balane rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/05/IMG_0170-scaled.jpg,,,Identifiable +N1,93776,Sortie #93776,https://biolit.fr/sorties/sortie-93776/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/06/IMG_0246-scaled.jpg,5/31/2025 0:00,20.000009,20.000009,43.322431,3.561839,,Plage Robinson,93777,Observation #93777,https://biolit.fr/observations/observation-93777/,Portumnus latipes,Etrille élégante,,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/06/IMG_0246-scaled.jpg,,TRUE,Identifiable +N1,93780,Sortie #93780,https://biolit.fr/sorties/sortie-93780/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/06/IMG_0237-scaled.jpg,5/31/2025 0:00,19.000006,19.000006,43.3243150000000,3.56386700000000,,Plage Robinson,93781,Observation #93781,https://biolit.fr/observations/observation-93781/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/06/IMG_0237-scaled.jpg,,,Identifiable +N1,93784,Sortie #93784,https://biolit.fr/sorties/sortie-93784/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/06/IMG_0257-scaled.jpg,5/31/2025 0:00,20.0:26,20.0:26,43.3276930000000,3.5677460000000,,Plage Robinson,93785,Observation #93785,https://biolit.fr/observations/observation-93785/,Ophiura ophiura,Ophiure commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/06/IMG_0257-scaled.jpg,,TRUE,Identifiable +N1,93831,Sortie #93831,https://biolit.fr/sorties/sortie-93831/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/06/IMG_0205-scaled.jpg,5/30/2025 0:00,20.0:17,20.0:17,43.28995,3.433302,,La Tamarissière,93832,Observation #93832,https://biolit.fr/observations/observation-93832/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/06/IMG_0205-scaled.jpg,,,Identifiable +N1,93835,Sortie #93835,https://biolit.fr/sorties/sortie-93835/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/06/IMG_0209-scaled.jpg,5/30/2025 0:00,20.000004,20.000004,43.28995,3.433302,,La Tamarissière,93836,Observation #93836,https://biolit.fr/observations/observation-93836/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/06/IMG_0209-scaled.jpg,,TRUE,Identifiable +N1,93839,Sortie #93839,https://biolit.fr/sorties/sortie-93839/,Larroque Ophéelie,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/06/IMG_0212-scaled.jpg,5/30/2025 0:00,20.0:24,20.0:24,43.28995,3.433302,,La Tamarissière,93840,Observation #93840,https://biolit.fr/observations/observation-93840/,Dictyota dichotoma,Dictyote,,https://biolit.fr/wp-content/uploads/jet-form-builder/e89c0f62c69f5fe03ba9e3ed845dc9c7/2025/06/IMG_0212-scaled.jpg,,,Ne sais pas +N1,93857,Sortie #93857,https://biolit.fr/sorties/sortie-93857/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Coque-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-albinos-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-a-capuchon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-a-capuchon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/IMG20250522102432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/IMG20250522102438-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-3-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025990000000,-1.84718600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93858,Observation #93858,https://biolit.fr/observations/observation-93858/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Coque-2-scaled.jpg,,,Identifiable +N1,93857,Sortie #93857,https://biolit.fr/sorties/sortie-93857/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Coque-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-albinos-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-a-capuchon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-a-capuchon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/IMG20250522102432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/IMG20250522102438-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-3-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025990000000,-1.84718600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93860,Observation #93860,https://biolit.fr/observations/observation-93860/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-albinos-1-scaled.jpg,,,Ne sais pas +N1,93857,Sortie #93857,https://biolit.fr/sorties/sortie-93857/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Coque-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-albinos-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-a-capuchon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-a-capuchon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/IMG20250522102432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/IMG20250522102438-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-3-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025990000000,-1.84718600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93862,Observation #93862,https://biolit.fr/observations/observation-93862/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-2-scaled.jpg,,TRUE,Identifiable +N1,93857,Sortie #93857,https://biolit.fr/sorties/sortie-93857/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Coque-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-albinos-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-a-capuchon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-a-capuchon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/IMG20250522102432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/IMG20250522102438-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-3-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025990000000,-1.84718600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93864,Observation #93864,https://biolit.fr/observations/observation-93864/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-3-scaled.jpg,,,Identifiable +N1,93857,Sortie #93857,https://biolit.fr/sorties/sortie-93857/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Coque-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-albinos-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-a-capuchon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-a-capuchon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/IMG20250522102432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/IMG20250522102438-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-3-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025990000000,-1.84718600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93866,Observation #93866,https://biolit.fr/observations/observation-93866/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-a-capuchon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-a-capuchon-2-scaled.jpg,,,Identifiable +N1,93857,Sortie #93857,https://biolit.fr/sorties/sortie-93857/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Coque-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-albinos-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-a-capuchon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-a-capuchon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/IMG20250522102432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/IMG20250522102438-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-3-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025990000000,-1.84718600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93868,Observation #93868,https://biolit.fr/observations/observation-93868/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/IMG20250522102432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/IMG20250522102438-scaled.jpg,,,Ne sais pas +N1,93857,Sortie #93857,https://biolit.fr/sorties/sortie-93857/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Coque-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Coque-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-albinos-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-a-capuchon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-a-capuchon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/IMG20250522102432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/IMG20250522102438-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-3-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025990000000,-1.84718600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93870,Observation #93870,https://biolit.fr/observations/observation-93870/,Ammodytes americanus,Lançon,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Lancon-3-scaled.jpg,,,Identifiable +N1,93888,Sortie #93888,https://biolit.fr/sorties/sortie-93888/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-et-sacculine-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93889,Observation #93889,https://biolit.fr/observations/observation-93889/,Gaidropsarus vulgaris,Motelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-4-scaled.jpg,,,Identifiable +N1,93888,Sortie #93888,https://biolit.fr/sorties/sortie-93888/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-et-sacculine-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93891,Observation #93891,https://biolit.fr/observations/observation-93891/,Nerophis ophidion,Nérophis ophidion,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-2-scaled.jpg,,,Identifiable +N1,93888,Sortie #93888,https://biolit.fr/sorties/sortie-93888/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-et-sacculine-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93893,Observation #93893,https://biolit.fr/observations/observation-93893/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-scaled.jpg,,,Identifiable +N1,93888,Sortie #93888,https://biolit.fr/sorties/sortie-93888/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-et-sacculine-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93895,Observation #93895,https://biolit.fr/observations/observation-93895/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-scaled.jpg,,,Identifiable +N1,93888,Sortie #93888,https://biolit.fr/sorties/sortie-93888/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-et-sacculine-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93897,Observation #93897,https://biolit.fr/observations/observation-93897/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-1-scaled.jpg,,TRUE,Identifiable +N1,93888,Sortie #93888,https://biolit.fr/sorties/sortie-93888/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-et-sacculine-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93899,Observation #93899,https://biolit.fr/observations/observation-93899/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Pourpre-1-scaled.jpg,,TRUE,Identifiable +N1,93888,Sortie #93888,https://biolit.fr/sorties/sortie-93888/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-et-sacculine-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93901,Observation #93901,https://biolit.fr/observations/observation-93901/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-scaled.jpg,,,Identifiable +N1,93888,Sortie #93888,https://biolit.fr/sorties/sortie-93888/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-et-sacculine-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93903,Observation #93903,https://biolit.fr/observations/observation-93903/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-3-scaled.jpg,,TRUE,Identifiable +N1,93888,Sortie #93888,https://biolit.fr/sorties/sortie-93888/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-et-sacculine-scaled.jpg,5/22/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,93905,Observation #93905,https://biolit.fr/observations/observation-93905/,Sacculina carcini,Sacculine du crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-et-sacculine-scaled.jpg,,,Identifiable +N1,93913,Sortie #93913,https://biolit.fr/sorties/sortie-93913/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/06/IMG_7799.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/06/IMG_7798.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/06/IMG_7797.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/06/IMG_7796.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/06/IMG_7795.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/06/IMG_7794.jpg,5/30/2025 0:00,9.0000000,9.0:45,49.9203810,1.036257,ESTRAN cité de la Mer,Pourville,,,,,,,,,, +N1,94028,Sortie #94028,https://biolit.fr/sorties/sortie-94028/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bogorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Cione-intestinale-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-2-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040650000000,-1.84457900000000,Centre Virginie Hériot,Plage du Potelet,94029,Observation #94029,https://biolit.fr/observations/observation-94029/,Dendrodoa grossularia,Ascidie groseille,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ascidie-groseille-2-scaled.jpg,,,Identifiable +N1,94028,Sortie #94028,https://biolit.fr/sorties/sortie-94028/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bogorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Cione-intestinale-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-2-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040650000000,-1.84457900000000,Centre Virginie Hériot,Plage du Potelet,94031,Observation #94031,https://biolit.fr/observations/observation-94031/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Asterie-bossue-2-scaled.jpg,,TRUE,Identifiable +N1,94028,Sortie #94028,https://biolit.fr/sorties/sortie-94028/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bogorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Cione-intestinale-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-2-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040650000000,-1.84457900000000,Centre Virginie Hériot,Plage du Potelet,94033,Observation #94033,https://biolit.fr/observations/observation-94033/,Pagurus bernhardus,Bernard-l'ermite commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lhermite-2-scaled.jpg,,,Identifiable +N1,94028,Sortie #94028,https://biolit.fr/sorties/sortie-94028/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bogorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Cione-intestinale-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-2-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040650000000,-1.84457900000000,Centre Virginie Hériot,Plage du Potelet,94035,Observation #94035,https://biolit.fr/observations/observation-94035/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bogorneau-perceur-1-scaled.jpg,,TRUE,Identifiable +N1,94028,Sortie #94028,https://biolit.fr/sorties/sortie-94028/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bogorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Cione-intestinale-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-2-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040650000000,-1.84457900000000,Centre Virginie Hériot,Plage du Potelet,94037,Observation #94037,https://biolit.fr/observations/observation-94037/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-scaled.jpg,,TRUE,Identifiable +N1,94028,Sortie #94028,https://biolit.fr/sorties/sortie-94028/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bogorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Cione-intestinale-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-2-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040650000000,-1.84457900000000,Centre Virginie Hériot,Plage du Potelet,94041,Observation #94041,https://biolit.fr/observations/observation-94041/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-orange-2-scaled.jpg,,,Identifiable +N1,94028,Sortie #94028,https://biolit.fr/sorties/sortie-94028/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ascidie-groseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bogorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Calliostome-jujube-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Cione-intestinale-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-marbre-2-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040650000000,-1.84457900000000,Centre Virginie Hériot,Plage du Potelet,94045,Observation #94045,https://biolit.fr/observations/observation-94045/,Ciona intestinalis,Cione intestinale,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Cione-intestinale-2-scaled.jpg,,,Identifiable +N1,94064,Sortie #94064,https://biolit.fr/sorties/sortie-94064/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7039920000000,-1.84466200000000,Centre Virginie Hériot,Plage du Potelet,94065,Observation #94065,https://biolit.fr/observations/observation-94065/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-4-scaled.jpg,,TRUE,Identifiable +N1,94064,Sortie #94064,https://biolit.fr/sorties/sortie-94064/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7039920000000,-1.84466200000000,Centre Virginie Hériot,Plage du Potelet,94067,Observation #94067,https://biolit.fr/observations/observation-94067/,Crangon crangon,Crevette grise européenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-scaled.jpg,,,Identifiable +N1,94064,Sortie #94064,https://biolit.fr/sorties/sortie-94064/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7039920000000,-1.84466200000000,Centre Virginie Hériot,Plage du Potelet,94069,Observation #94069,https://biolit.fr/observations/observation-94069/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-scaled.jpg,,TRUE,Identifiable +N1,94064,Sortie #94064,https://biolit.fr/sorties/sortie-94064/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7039920000000,-1.84466200000000,Centre Virginie Hériot,Plage du Potelet,94073,Observation #94073,https://biolit.fr/observations/observation-94073/,Gaidropsarus vulgaris,Motelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-1-scaled.jpg,,TRUE,Identifiable +N1,94064,Sortie #94064,https://biolit.fr/sorties/sortie-94064/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7039920000000,-1.84466200000000,Centre Virginie Hériot,Plage du Potelet,94075,Observation #94075,https://biolit.fr/observations/observation-94075/,Nerophis ophidion,Nérophis ophidion,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-1-scaled.jpg,,,Identifiable +N1,94064,Sortie #94064,https://biolit.fr/sorties/sortie-94064/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7039920000000,-1.84466200000000,Centre Virginie Hériot,Plage du Potelet,94077,Observation #94077,https://biolit.fr/observations/observation-94077/,Tethya citrina,Orange de mer de Manche Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-scaled.jpg,,TRUE,Identifiable +N1,94064,Sortie #94064,https://biolit.fr/sorties/sortie-94064/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7039920000000,-1.84466200000000,Centre Virginie Hériot,Plage du Potelet,94083,Observation #94083,https://biolit.fr/observations/observation-94083/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-scaled.jpg,,TRUE,Identifiable +N1,94064,Sortie #94064,https://biolit.fr/sorties/sortie-94064/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7039920000000,-1.84466200000000,Centre Virginie Hériot,Plage du Potelet,94085,Observation #94085,https://biolit.fr/observations/observation-94085/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-1-scaled.jpg,,TRUE,Identifiable +N1,94064,Sortie #94064,https://biolit.fr/sorties/sortie-94064/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7039920000000,-1.84466200000000,Centre Virginie Hériot,Plage du Potelet,94087,Observation #94087,https://biolit.fr/observations/observation-94087/,Sacculina carcini,Sacculine du crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-scaled.jpg,,TRUE,Identifiable +N1,94102,Sortie #94102,https://biolit.fr/sorties/sortie-94102/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040910000000,-1.84500600000000,Centre Virginie Hériot,Plage du Potelet,94103,Observation #94103,https://biolit.fr/observations/observation-94103/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-1-scaled.jpg,,TRUE,Identifiable +N1,94102,Sortie #94102,https://biolit.fr/sorties/sortie-94102/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040910000000,-1.84500600000000,Centre Virginie Hériot,Plage du Potelet,94105,Observation #94105,https://biolit.fr/observations/observation-94105/,Crangon crangon,Crevette grise européenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-1-scaled.jpg,,TRUE,Identifiable +N1,94102,Sortie #94102,https://biolit.fr/sorties/sortie-94102/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040910000000,-1.84500600000000,Centre Virginie Hériot,Plage du Potelet,94107,Observation #94107,https://biolit.fr/observations/observation-94107/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-1-scaled.jpg,,TRUE,Identifiable +N1,94102,Sortie #94102,https://biolit.fr/sorties/sortie-94102/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040910000000,-1.84500600000000,Centre Virginie Hériot,Plage du Potelet,94109,Observation #94109,https://biolit.fr/observations/observation-94109/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-1-scaled.jpg,,TRUE,Identifiable +N1,94102,Sortie #94102,https://biolit.fr/sorties/sortie-94102/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040910000000,-1.84500600000000,Centre Virginie Hériot,Plage du Potelet,94111,Observation #94111,https://biolit.fr/observations/observation-94111/,Gaidropsarus vulgaris,Motelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-2-scaled.jpg,,,Identifiable +N1,94102,Sortie #94102,https://biolit.fr/sorties/sortie-94102/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040910000000,-1.84500600000000,Centre Virginie Hériot,Plage du Potelet,94113,Observation #94113,https://biolit.fr/observations/observation-94113/,Nerophis ophidion,Nérophis ophidion,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-2-scaled.jpg,,,Identifiable +N1,94102,Sortie #94102,https://biolit.fr/sorties/sortie-94102/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040910000000,-1.84500600000000,Centre Virginie Hériot,Plage du Potelet,94115,Observation #94115,https://biolit.fr/observations/observation-94115/,Tethya citrina,Orange de mer de Manche Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-1-scaled.jpg,,,Identifiable +N1,94102,Sortie #94102,https://biolit.fr/sorties/sortie-94102/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040910000000,-1.84500600000000,Centre Virginie Hériot,Plage du Potelet,94117,Observation #94117,https://biolit.fr/observations/observation-94117/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-1-scaled.jpg,,,Ne sais pas +N1,94102,Sortie #94102,https://biolit.fr/sorties/sortie-94102/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040910000000,-1.84500600000000,Centre Virginie Hériot,Plage du Potelet,94119,Observation #94119,https://biolit.fr/observations/observation-94119/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-1-scaled.jpg,,TRUE,Ne sais pas +N1,94102,Sortie #94102,https://biolit.fr/sorties/sortie-94102/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040910000000,-1.84500600000000,Centre Virginie Hériot,Plage du Potelet,94121,Observation #94121,https://biolit.fr/observations/observation-94121/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-scaled.jpg,,TRUE,Identifiable +N1,94102,Sortie #94102,https://biolit.fr/sorties/sortie-94102/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040910000000,-1.84500600000000,Centre Virginie Hériot,Plage du Potelet,94123,Observation #94123,https://biolit.fr/observations/observation-94123/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-2-scaled.jpg,,TRUE,Identifiable +N1,94102,Sortie #94102,https://biolit.fr/sorties/sortie-94102/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crevette-grise-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Etrille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-des-rochers-3-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Motelle-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Nerophis-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Orange-de-mer-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-natice-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-1-scaled.jpg,5/29/2025 0:00,15.0000000,16.0000000,48.7040910000000,-1.84500600000000,Centre Virginie Hériot,Plage du Potelet,94125,Observation #94125,https://biolit.fr/observations/observation-94125/,Sacculina carcini,Sacculine du crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tourteau-sacculine-1-1-scaled.jpg,,TRUE,Identifiable +N1,94129,Sortie #94129,https://biolit.fr/sorties/sortie-94129/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/06/IMG_20250526_135830-scaled.jpg,06/02/2025,10.0000000,10.0:15,43.154284000000,6.48184500000000,,test,,,,,,,,,, +N1,94131,Sortie #94131,https://biolit.fr/sorties/sortie-94131/,Soussi Sirine,https://biolit.fr/wp-content/uploads/jet-form-builder/3659ef75a00bb3f09df8a5958c0fe798/2025/06/image-scaled.jpg,06/03/2025,13.0:52,13.0:55,43.0795970000000,6.12459600000000,,Almanarre,,,,,,,,,, +N1,94141,Sortie #94141,https://biolit.fr/sorties/sortie-94141/,Bonkoski Alison,https://biolit.fr/wp-content/uploads/jet-form-builder/90161f1dceeab686023190c02691f496/2025/06/1000023812.png,7/24/2024 0:00,13.0000000,13.0:25,47.9867,-4.4983,,Plouhinec,94142,Observation #94142,https://biolit.fr/observations/observation-94142/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/90161f1dceeab686023190c02691f496/2025/06/1000023812.png,,,Ne sais pas +N1,94146,Sortie #94146,https://biolit.fr/sorties/sortie-94146/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/Photo-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/Photo-2-scaled.jpg,5/29/2025 0:00,9.0000000,11.0000000,43.7233380000000,-1.43128000000000,Centre de la mer,Plage des casernes de Seignosse,94147,Observation #94147,https://biolit.fr/observations/observation-94147/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/Photo-1-scaled.jpg,,TRUE,Identifiable +N1,94146,Sortie #94146,https://biolit.fr/sorties/sortie-94146/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/Photo-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/Photo-2-scaled.jpg,5/29/2025 0:00,9.0000000,11.0000000,43.7233380000000,-1.43128000000000,Centre de la mer,Plage des casernes de Seignosse,94149,Observation #94149,https://biolit.fr/observations/observation-94149/,Echinocardium cordatum,Oursin cœur,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/Photo-2-scaled.jpg,,TRUE,Ne sais pas +N1,94166,Sortie #94166,https://biolit.fr/sorties/sortie-94166/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/Photo-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/Photo-5-scaled.jpg,5/29/2025 0:00,9.0000000,11.0000000,43.7238020000000,-1.43242300000000,Centre de la mer,Plage des casernes de Seignosse,94167,Observation #94167,https://biolit.fr/observations/observation-94167/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/Photo-4-scaled.jpg,,TRUE,Identifiable +N1,94166,Sortie #94166,https://biolit.fr/sorties/sortie-94166/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/Photo-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/Photo-5-scaled.jpg,5/29/2025 0:00,9.0000000,11.0000000,43.7238020000000,-1.43242300000000,Centre de la mer,Plage des casernes de Seignosse,94169,Observation #94169,https://biolit.fr/observations/observation-94169/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/Photo-5-scaled.jpg,,TRUE,non-identifiable +N1,94179,Sortie #94179,https://biolit.fr/sorties/sortie-94179/,TRUBERT Laetitia,https://biolit.fr/wp-content/uploads/jet-form-builder/6368cd15eef1ec8fc4e1eeede7a902d2/2025/06/Acanthocardia-aculeata-Linne-1758-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6368cd15eef1ec8fc4e1eeede7a902d2/2025/06/Bourse-de-sirene-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6368cd15eef1ec8fc4e1eeede7a902d2/2025/06/Eriphia-verrucosa-scaled.jpg,06/04/2025,14.0000000,16.0000000,43.347351,4.656677,Planète Mer,Port du Grau de la Dent,94187,Observation #94187,https://biolit.fr/observations/observation-94187/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/jet-form-builder/6368cd15eef1ec8fc4e1eeede7a902d2/2025/06/Eriphia-verrucosa-scaled.jpg,,TRUE,Identifiable +N1,94179,Sortie #94179,https://biolit.fr/sorties/sortie-94179/,TRUBERT Laetitia,https://biolit.fr/wp-content/uploads/jet-form-builder/6368cd15eef1ec8fc4e1eeede7a902d2/2025/06/Acanthocardia-aculeata-Linne-1758-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6368cd15eef1ec8fc4e1eeede7a902d2/2025/06/Bourse-de-sirene-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6368cd15eef1ec8fc4e1eeede7a902d2/2025/06/Eriphia-verrucosa-scaled.jpg,06/04/2025,14.0000000,16.0000000,43.347351,4.656677,Planète Mer,Port du Grau de la Dent,94189,Observation #94189,https://biolit.fr/observations/observation-94189/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6368cd15eef1ec8fc4e1eeede7a902d2/2025/06/Bourse-de-sirene-scaled.jpg,,,Ne sais pas +N1,94179,Sortie #94179,https://biolit.fr/sorties/sortie-94179/,TRUBERT Laetitia,https://biolit.fr/wp-content/uploads/jet-form-builder/6368cd15eef1ec8fc4e1eeede7a902d2/2025/06/Acanthocardia-aculeata-Linne-1758-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6368cd15eef1ec8fc4e1eeede7a902d2/2025/06/Bourse-de-sirene-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6368cd15eef1ec8fc4e1eeede7a902d2/2025/06/Eriphia-verrucosa-scaled.jpg,06/04/2025,14.0000000,16.0000000,43.347351,4.656677,Planète Mer,Port du Grau de la Dent,94191,Observation #94191,https://biolit.fr/observations/observation-94191/,Acanthocardia aculeata,Bucarde épineuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/6368cd15eef1ec8fc4e1eeede7a902d2/2025/06/Acanthocardia-aculeata-Linne-1758-scaled.jpg,,,Identifiable +N1,94228,Sortie #94228,https://biolit.fr/sorties/sortie-94228/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-4-scaled.jpg,06/05/2025,11.0000000,12.0000000,43.2539690,5.4155790,,Plage de la Pointe Rouge,94229,Observation #94229,https://biolit.fr/observations/observation-94229/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-4-scaled.jpg,,TRUE,Identifiable +N1,94228,Sortie #94228,https://biolit.fr/sorties/sortie-94228/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-4-scaled.jpg,06/05/2025,11.0000000,12.0000000,43.2539690,5.4155790,,Plage de la Pointe Rouge,94231,Observation #94231,https://biolit.fr/observations/observation-94231/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-2-scaled.jpg,,TRUE,Identifiable +N1,94228,Sortie #94228,https://biolit.fr/sorties/sortie-94228/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-4-scaled.jpg,06/05/2025,11.0000000,12.0000000,43.2539690,5.4155790,,Plage de la Pointe Rouge,94233,Observation #94233,https://biolit.fr/observations/observation-94233/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-3-scaled.jpg,,TRUE,Identifiable +N1,94228,Sortie #94228,https://biolit.fr/sorties/sortie-94228/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-4-scaled.jpg,06/05/2025,11.0000000,12.0000000,43.2539690,5.4155790,,Plage de la Pointe Rouge,94235,Observation #94235,https://biolit.fr/observations/observation-94235/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Meduse-Pelagia-Noctiluca-Pointe-Rouge-Marseille-4-scaled.jpg,,TRUE,Identifiable +N1,94259,Sortie #94259,https://biolit.fr/sorties/sortie-94259/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/Q1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/Q1-Comptage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/Q2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/Q2-Comptage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/Q2-Proche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/Q3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/Q3-Comptage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/Q4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/Q4-Comptage-Selection-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/Q5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/IMG_6528-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/IMG_6531-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/IMG_6532-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/IMG_6533-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/IMG_6535-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/IMG_6536-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/IMG_6537-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/IMG_6539-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/IMG_6540.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/fb0006af70db1c8e5f168daebda1a1fe/2025/06/IMG_6541-rotated.jpg,5/27/2025 0:00,11.0000000,15.0000000,48.8374270,-3.489792,E.T.A.P.E.S,plage de landrellec à Pleumeur Bodou,,,,,,,,,, +N1,94281,Sortie #94281,https://biolit.fr/sorties/sortie-94281/,MORAES EVA,https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081223-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_084549-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_085848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082849-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101144-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_083350-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3296420000000,5.03780300000000,Planète Mer,Carro,94282,Observation #94282,https://biolit.fr/observations/observation-94282/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081223-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_084549-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082003-scaled.jpg,,,Ne sais pas +N1,94281,Sortie #94281,https://biolit.fr/sorties/sortie-94281/,MORAES EVA,https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081223-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_084549-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_085848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082849-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101144-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_083350-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3296420000000,5.03780300000000,Planète Mer,Carro,94284,Observation #94284,https://biolit.fr/observations/observation-94284/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_083350-scaled.jpg,,,Identifiable +N1,94281,Sortie #94281,https://biolit.fr/sorties/sortie-94281/,MORAES EVA,https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081223-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_084549-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_085848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082849-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101144-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_083350-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3296420000000,5.03780300000000,Planète Mer,Carro,94286,Observation #94286,https://biolit.fr/observations/observation-94286/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082849-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101144-scaled.jpg,,,Ne sais pas +N1,94281,Sortie #94281,https://biolit.fr/sorties/sortie-94281/,MORAES EVA,https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081223-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_084549-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_085848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082849-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101144-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_083350-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3296420000000,5.03780300000000,Planète Mer,Carro,94288,Observation #94288,https://biolit.fr/observations/observation-94288/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080633-scaled.jpg,,TRUE,Identifiable +N1,94281,Sortie #94281,https://biolit.fr/sorties/sortie-94281/,MORAES EVA,https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081223-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_084549-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_085848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082849-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101144-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_083350-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3296420000000,5.03780300000000,Planète Mer,Carro,94290,Observation #94290,https://biolit.fr/observations/observation-94290/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_085848-scaled.jpg,,TRUE,Ne sais pas +N1,94281,Sortie #94281,https://biolit.fr/sorties/sortie-94281/,MORAES EVA,https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081223-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_084549-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_085848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082849-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101144-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_083350-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3296420000000,5.03780300000000,Planète Mer,Carro,94292,Observation #94292,https://biolit.fr/observations/observation-94292/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082951-scaled.jpg,,,Identifiable +N1,94281,Sortie #94281,https://biolit.fr/sorties/sortie-94281/,MORAES EVA,https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081223-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_084549-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_085848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082849-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101144-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_083350-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3296420000000,5.03780300000000,Planète Mer,Carro,94294,Observation #94294,https://biolit.fr/observations/observation-94294/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082738-scaled.jpg,,,Identifiable +N1,94281,Sortie #94281,https://biolit.fr/sorties/sortie-94281/,MORAES EVA,https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081223-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080556-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080409-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_080633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_084549-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_085848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081747-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082849-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_101144-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_082951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_083350-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3296420000000,5.03780300000000,Planète Mer,Carro,94296,Observation #94296,https://biolit.fr/observations/observation-94296/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/43f7f55a164824a1352a535a521ad286/2025/06/20250606_081747-scaled.jpg,,TRUE,Identifiable +N1,94306,Sortie #94306,https://biolit.fr/sorties/sortie-94306/,MALCOTTI Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_100628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_101037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_101108-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_101523-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_101758-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_102140-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_102209-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_102415-scaled.jpg,06/06/2025,10.0000000,11.0000000,43.3315170000000,5.05168300000000,Planète Mer,La Courrone,94307,Observation #94307,https://biolit.fr/observations/observation-94307/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_102140-scaled.jpg,,TRUE,Ne sais pas +N1,94306,Sortie #94306,https://biolit.fr/sorties/sortie-94306/,MALCOTTI Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_100628-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_101037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_101108-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_101523-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_101758-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_102140-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_102209-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_102415-scaled.jpg,06/06/2025,10.0000000,11.0000000,43.3315170000000,5.05168300000000,Planète Mer,La Courrone,94309,Observation #94309,https://biolit.fr/observations/observation-94309/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_101108-scaled.jpg,,TRUE,Ne sais pas +N1,94381,Sortie #94381,https://biolit.fr/sorties/sortie-94381/,MALCOTTI Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-1-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-2-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-3-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-7-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-8-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-10-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-11-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-12-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-13-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-14-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-15-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-16-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-18-scaled.jpg,06/06/2025,8.0000000,8.0:45,43.3295350000000,5.03767100000000,Planète Mer,Carro,94382,Observation #94382,https://biolit.fr/observations/observation-94382/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-5-scaled.jpg,,,Ne sais pas +N1,94381,Sortie #94381,https://biolit.fr/sorties/sortie-94381/,MALCOTTI Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-1-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-2-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-3-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-7-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-8-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-10-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-11-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-12-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-13-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-14-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-15-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-16-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-18-scaled.jpg,06/06/2025,8.0000000,8.0:45,43.3295350000000,5.03767100000000,Planète Mer,Carro,94384,Observation #94384,https://biolit.fr/observations/observation-94384/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-8-p-scaled.jpg,,,Ne sais pas +N1,94381,Sortie #94381,https://biolit.fr/sorties/sortie-94381/,MALCOTTI Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-1-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-2-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-3-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-7-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-8-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-9-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-10-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-11-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-12-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-13-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-14-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-15-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-16-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-18-scaled.jpg,06/06/2025,8.0000000,8.0:45,43.3295350000000,5.03767100000000,Planète Mer,Carro,94386,Observation #94386,https://biolit.fr/observations/observation-94386/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-12-scaled.jpg,,TRUE,Ne sais pas +N1,94404,Sortie #94404,https://biolit.fr/sorties/sortie-94404/,MALCOTTI Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-18-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-19-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-20-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-21-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-22-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-23-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-24-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-25-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-26-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-27-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-28-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-29-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-30-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-31-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-32-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-33-p-scaled.jpg,06/06/2025,8.0:45,9.0000000,43.3291760000000,5.03859400000000,Planète Mer,Carro,94405,Observation #94405,https://biolit.fr/observations/observation-94405/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-25-scaled.jpg,,,Identifiable +N1,94404,Sortie #94404,https://biolit.fr/sorties/sortie-94404/,MALCOTTI Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-18-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-19-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-20-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-21-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-22-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-23-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-24-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-25-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-26-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-27-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-28-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-29-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-30-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-31-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-32-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-33-p-scaled.jpg,06/06/2025,8.0:45,9.0000000,43.3291760000000,5.03859400000000,Planète Mer,Carro,94407,Observation #94407,https://biolit.fr/observations/observation-94407/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-31-scaled.jpg,,TRUE,Ne sais pas +N1,94404,Sortie #94404,https://biolit.fr/sorties/sortie-94404/,MALCOTTI Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-18-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-19-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-20-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-21-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-22-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-23-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-24-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-25-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-26-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-27-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-28-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-29-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-30-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-31-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-32-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-33-p-scaled.jpg,06/06/2025,8.0:45,9.0000000,43.3291760000000,5.03859400000000,Planète Mer,Carro,94409,Observation #94409,https://biolit.fr/observations/observation-94409/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-30-scaled.jpg,,,Ne sais pas +N1,94427,Sortie #94427,https://biolit.fr/sorties/sortie-94427/,MALCOTTI Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-34-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-35-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-36-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-37-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-38-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-39-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-40-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-41-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-42-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-43-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-44-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-47-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-48-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-50-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-51-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-52-scaled.jpg,06/06/2025,9.0000000,10.0000000,43.3315320000000,5.03479100000000,Planète Mer,Carro,94428,Observation #94428,https://biolit.fr/observations/observation-94428/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-38-p-scaled.jpg,,,Ne sais pas +N1,94427,Sortie #94427,https://biolit.fr/sorties/sortie-94427/,MALCOTTI Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-34-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-35-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-36-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-37-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-38-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-39-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-40-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-41-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-42-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-43-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-44-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-47-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-48-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-50-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-51-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-52-scaled.jpg,06/06/2025,9.0000000,10.0000000,43.3315320000000,5.03479100000000,Planète Mer,Carro,94430,Observation #94430,https://biolit.fr/observations/observation-94430/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-52-scaled.jpg,,,Ne sais pas +N1,94427,Sortie #94427,https://biolit.fr/sorties/sortie-94427/,MALCOTTI Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-34-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-35-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-36-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-37-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-38-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-39-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-40-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-41-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-42-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-43-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-44-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-47-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-48-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-50-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-51-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-52-scaled.jpg,06/06/2025,9.0000000,10.0000000,43.3315320000000,5.03479100000000,Planète Mer,Carro,94432,Observation #94432,https://biolit.fr/observations/observation-94432/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-51-scaled.jpg,,TRUE,Ne sais pas +N1,94427,Sortie #94427,https://biolit.fr/sorties/sortie-94427/,MALCOTTI Lisa,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-34-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-35-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-36-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-37-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-38-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-39-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-40-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-41-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-42-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-43-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-44-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-47-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-48-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-50-p-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-51-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-52-scaled.jpg,06/06/2025,9.0000000,10.0000000,43.3315320000000,5.03479100000000,Planète Mer,Carro,94434,Observation #94434,https://biolit.fr/observations/observation-94434/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e7f8212a2716a049fd8db0e2e34be50/2025/06/20250606_carro-41-scaled.jpg,,,Ne sais pas +N1,94443,Sortie #94443,https://biolit.fr/sorties/sortie-94443/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/M0pG0sBk.jpg,5/23/2025 0:00,10.0000000,11.0000000,42.9052900000000,3.05623500000000,LABELBLEU,Leucate,,,,,,,,,, +N1,94448,Sortie #94448,https://biolit.fr/sorties/sortie-94448/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/2-1.jpg,5/24/2025 0:00,11.0000000,12.0000000,42.9053390000000,3.0563320000000,LABELBLEU,Leucate,94449,Observation #94449,https://biolit.fr/observations/observation-94449/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/coque.jpg,,TRUE,Identifiable +N1,94448,Sortie #94448,https://biolit.fr/sorties/sortie-94448/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/2-1.jpg,5/24/2025 0:00,11.0000000,12.0000000,42.9053390000000,3.0563320000000,LABELBLEU,Leucate,94451,Observation #94451,https://biolit.fr/observations/observation-94451/,Fabulina fabula,Telline striée,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/2.jpg,,,Identifiable +N1,94448,Sortie #94448,https://biolit.fr/sorties/sortie-94448/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/coque.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/2-1.jpg,5/24/2025 0:00,11.0000000,12.0000000,42.9053390000000,3.0563320000000,LABELBLEU,Leucate,94453,Observation #94453,https://biolit.fr/observations/observation-94453/,Mactra glauca,Mactre fauve,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/2-1.jpg,,,Identifiable +N1,94474,Sortie #94474,https://biolit.fr/sorties/sortie-94474/,Moncelet Morgan,https://biolit.fr/wp-content/uploads/jet-form-builder/4b0f23ed024c9032a76bae6c3754bd4a/2025/06/langouste.png,04/09/2025,10.0000000,10.0000000,43.104004000000,5.991533000000,,Sainte,94475,Observation #94475,https://biolit.fr/observations/observation-94475/,Palinurus elephas,Langouste rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/4b0f23ed024c9032a76bae6c3754bd4a/2025/06/langouste.png,,,Identifiable +N1,94483,Sortie #94483,https://biolit.fr/sorties/sortie-94483/,Desclaux Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/be27204f0ab937e376516f317f439e90/2025/06/fruit-de-posidonie-scaled.jpg,06/10/2025,10.0000000,12.0000000,43.2408450000000,5.36207400000000,Centre Initiation et Découverte Mer Ville de Marseille,Plage de la batterie,94486,Observation #94486,https://biolit.fr/observations/observation-94486/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/be27204f0ab937e376516f317f439e90/2025/06/fruit-de-posidonie-scaled.jpg,,TRUE,Identifiable +N1,94795,Sortie #94795,https://biolit.fr/sorties/sortie-94795/,Dorrell Richard,https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0002.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0001.jpg,5/22/2025 0:00,13.0000000,15.0000000,49.564813000000,0.0948320000000000,,"octeville-sur-mer, les basses falaises, plage",94796,Observation #94796,https://biolit.fr/observations/observation-94796/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0009.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0008.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0007.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0006.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0005.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0004.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0002.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0001.jpg,,,Ne sais pas +N1,94807,Sortie #94807,https://biolit.fr/sorties/sortie-94807/,Dorrell Richard,https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0009-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0008-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0007-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0005-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0004-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0003-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0002-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0001-1.jpg,5/22/2025 0:00,13.0000000,15.0000000,49.5661450000000,0.0960020000000000,,"octeville-sur-mer, les basses falaises, plage",94808,Observation #94808,https://biolit.fr/observations/observation-94808/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0004-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0003-1.jpg,,TRUE,Identifiable +N1,94807,Sortie #94807,https://biolit.fr/sorties/sortie-94807/,Dorrell Richard,https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0009-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0008-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0007-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0005-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0004-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0003-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0002-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0001-1.jpg,5/22/2025 0:00,13.0000000,15.0000000,49.5661450000000,0.0960020000000000,,"octeville-sur-mer, les basses falaises, plage",94810,Observation #94810,https://biolit.fr/observations/observation-94810/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0001-1.jpg,,,Identifiable +N1,94807,Sortie #94807,https://biolit.fr/sorties/sortie-94807/,Dorrell Richard,https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0009-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0008-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0007-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0005-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0004-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0003-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0002-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0001-1.jpg,5/22/2025 0:00,13.0000000,15.0000000,49.5661450000000,0.0960020000000000,,"octeville-sur-mer, les basses falaises, plage",94812,Observation #94812,https://biolit.fr/observations/observation-94812/,Ulva flexuosa,Ulve flexueuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0002-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0009-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0008-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0007-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0006-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/024e10cc651bf2be8309de869621b13f/2025/06/IMG-20250611-WA0005-1.jpg,,,Identifiable +N1,94841,Sortie #94841,https://biolit.fr/sorties/sortie-94841/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-26-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-25-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-24-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-23-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-22-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-21.jpg,06/11/2025,14.0000000,16.0000000,48.6916820000000,-1.95000000000000,Planète Mer (antenne Dinard),Plage des Chevrets,94842,Observation #94842,https://biolit.fr/observations/observation-94842/,Zostera marina,Zostère marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-26-scaled.jpg,,TRUE,Identifiable +N1,94841,Sortie #94841,https://biolit.fr/sorties/sortie-94841/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-26-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-25-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-24-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-23-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-22-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-21.jpg,06/11/2025,14.0000000,16.0000000,48.6916820000000,-1.95000000000000,Planète Mer (antenne Dinard),Plage des Chevrets,94844,Observation #94844,https://biolit.fr/observations/observation-94844/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-25-scaled.jpg,,TRUE,Identifiable +N1,94841,Sortie #94841,https://biolit.fr/sorties/sortie-94841/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-26-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-25-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-24-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-23-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-22-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-21.jpg,06/11/2025,14.0000000,16.0000000,48.6916820000000,-1.95000000000000,Planète Mer (antenne Dinard),Plage des Chevrets,94846,Observation #94846,https://biolit.fr/observations/observation-94846/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-24-scaled.jpg,,TRUE,Identifiable +N1,94841,Sortie #94841,https://biolit.fr/sorties/sortie-94841/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-26-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-25-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-24-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-23-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-22-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-21.jpg,06/11/2025,14.0000000,16.0000000,48.6916820000000,-1.95000000000000,Planète Mer (antenne Dinard),Plage des Chevrets,94848,Observation #94848,https://biolit.fr/observations/observation-94848/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-23-scaled.jpg,,TRUE,Identifiable +N1,94841,Sortie #94841,https://biolit.fr/sorties/sortie-94841/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-26-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-25-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-24-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-23-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-22-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-21.jpg,06/11/2025,14.0000000,16.0000000,48.6916820000000,-1.95000000000000,Planète Mer (antenne Dinard),Plage des Chevrets,94850,Observation #94850,https://biolit.fr/observations/observation-94850/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-22-scaled.jpg,,TRUE,Identifiable +N1,94841,Sortie #94841,https://biolit.fr/sorties/sortie-94841/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-26-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-25-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-24-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-23-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-22-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-21.jpg,06/11/2025,14.0000000,16.0000000,48.6916820000000,-1.95000000000000,Planète Mer (antenne Dinard),Plage des Chevrets,94853,Observation #94853,https://biolit.fr/observations/observation-94853/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/Image-21.jpg,,TRUE,Identifiable +N1,94867,Sortie #94867,https://biolit.fr/sorties/sortie-94867/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoile-de-mer-communes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoiles-de-mer-communes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoiles-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoiles-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_poisson-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_ponte-natice-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_ponte-natice-scaled.jpg,5/26/2025 0:00,21.0:15,22.0000000,47.8835800000000,-4.36052800000000,,Plage de Kermarbec,94870,Observation #94870,https://biolit.fr/observations/observation-94870/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_crabe-vert-scaled.jpg,,TRUE,Identifiable +N1,94867,Sortie #94867,https://biolit.fr/sorties/sortie-94867/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoile-de-mer-communes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoiles-de-mer-communes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoiles-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoiles-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_poisson-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_ponte-natice-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_ponte-natice-scaled.jpg,5/26/2025 0:00,21.0:15,22.0000000,47.8835800000000,-4.36052800000000,,Plage de Kermarbec,94874,Observation #94874,https://biolit.fr/observations/observation-94874/,Euspira sp.,Ponte de natice,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_ponte-natice-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_ponte-natice-scaled.jpg,,TRUE,Identifiable +N1,94867,Sortie #94867,https://biolit.fr/sorties/sortie-94867/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoile-de-mer-communes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoiles-de-mer-communes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoiles-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoiles-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_poisson-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_ponte-natice-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_ponte-natice-scaled.jpg,5/26/2025 0:00,21.0:15,22.0000000,47.8835800000000,-4.36052800000000,,Plage de Kermarbec,94876,Observation #94876,https://biolit.fr/observations/observation-94876/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_poisson-scaled.jpg,,,Ne sais pas +N1,94867,Sortie #94867,https://biolit.fr/sorties/sortie-94867/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoile-de-mer-communes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoiles-de-mer-communes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoiles-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoiles-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_poisson-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_ponte-natice-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_ponte-natice-scaled.jpg,5/26/2025 0:00,21.0:15,22.0000000,47.8835800000000,-4.36052800000000,,Plage de Kermarbec,94878,Observation #94878,https://biolit.fr/observations/observation-94878/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoiles-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoiles-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoile-de-mer-communes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/20250526_etoiles-de-mer-communes-scaled.jpg,,TRUE,Identifiable +N1,94869,Sortie #94869,https://biolit.fr/sorties/sortie-94869/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/anomia-scaled.jpg,06/11/2025,14.0000000,16.0000000,48.6917030000000,-1.95044700000000,Planète Mer (antenne Dinard),Plage des Chevrets,94872,Observation #94872,https://biolit.fr/observations/observation-94872/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/6553ea0bedfc3fedebf5fa4361dc1f68/2025/06/anomia-scaled.jpg,,TRUE,Identifiable +N1,94884,Sortie #94884,https://biolit.fr/sorties/sortie-94884/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/anomia-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/araignee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/ponte-bulot_buccin-scaled.jpg,06/11/2025,14.0000000,16.0000000,48.6916610000000,-1.94684300000000,Planète Mer,Plage des Chevrets,94885,Observation #94885,https://biolit.fr/observations/observation-94885/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/araignee-scaled.jpg,,TRUE,Identifiable +N1,94884,Sortie #94884,https://biolit.fr/sorties/sortie-94884/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/anomia-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/araignee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/ponte-bulot_buccin-scaled.jpg,06/11/2025,14.0000000,16.0000000,48.6916610000000,-1.94684300000000,Planète Mer,Plage des Chevrets,94887,Observation #94887,https://biolit.fr/observations/observation-94887/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/os-de-seiche-scaled.jpg,,TRUE,Identifiable +N1,94884,Sortie #94884,https://biolit.fr/sorties/sortie-94884/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/anomia-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/araignee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/os-de-seiche-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/ponte-bulot_buccin-scaled.jpg,06/11/2025,14.0000000,16.0000000,48.6916610000000,-1.94684300000000,Planète Mer,Plage des Chevrets,94889,Observation #94889,https://biolit.fr/observations/observation-94889/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/06/ponte-bulot_buccin-scaled.jpg,,TRUE,Identifiable +N1,94952,Sortie #94952,https://biolit.fr/sorties/sortie-94952/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Amande.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Balanes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Coque-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Spirorbes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Strobiculaire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Telline.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Venus.jpg,02/10/2025,14.0000000,16.0000000,42.6596960000000,3.03446700000000,LABELBLEU,"Plage du Lido, Canet-en-Roussillon",94953,Observation #94953,https://biolit.fr/observations/observation-94953/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Amande.jpg,,,Ne sais pas +N1,94952,Sortie #94952,https://biolit.fr/sorties/sortie-94952/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Amande.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Balanes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Coque-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Spirorbes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Strobiculaire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Telline.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Venus.jpg,02/10/2025,14.0000000,16.0000000,42.6596960000000,3.03446700000000,LABELBLEU,"Plage du Lido, Canet-en-Roussillon",94955,Observation #94955,https://biolit.fr/observations/observation-94955/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Anomie.jpg,,,Identifiable +N1,94952,Sortie #94952,https://biolit.fr/sorties/sortie-94952/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Amande.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Balanes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Coque-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Spirorbes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Strobiculaire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Telline.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Venus.jpg,02/10/2025,14.0000000,16.0000000,42.6596960000000,3.03446700000000,LABELBLEU,"Plage du Lido, Canet-en-Roussillon",94957,Observation #94957,https://biolit.fr/observations/observation-94957/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Balanes.jpg,,,Ne sais pas +N1,94952,Sortie #94952,https://biolit.fr/sorties/sortie-94952/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Amande.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Balanes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Coque-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Spirorbes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Strobiculaire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Telline.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Venus.jpg,02/10/2025,14.0000000,16.0000000,42.6596960000000,3.03446700000000,LABELBLEU,"Plage du Lido, Canet-en-Roussillon",94964,Observation #94964,https://biolit.fr/observations/observation-94964/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Bucarde.jpg,,,Ne sais pas +N1,94952,Sortie #94952,https://biolit.fr/sorties/sortie-94952/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Amande.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Balanes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Coque-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Spirorbes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Strobiculaire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Telline.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Venus.jpg,02/10/2025,14.0000000,16.0000000,42.6596960000000,3.03446700000000,LABELBLEU,"Plage du Lido, Canet-en-Roussillon",94966,Observation #94966,https://biolit.fr/observations/observation-94966/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Coque-1.jpg,,,Identifiable +N1,94952,Sortie #94952,https://biolit.fr/sorties/sortie-94952/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Amande.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Balanes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Coque-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Spirorbes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Strobiculaire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Telline.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Venus.jpg,02/10/2025,14.0000000,16.0000000,42.6596960000000,3.03446700000000,LABELBLEU,"Plage du Lido, Canet-en-Roussillon",94970,Observation #94970,https://biolit.fr/observations/observation-94970/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Couteau.jpg,,,Ne sais pas +N1,94952,Sortie #94952,https://biolit.fr/sorties/sortie-94952/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Amande.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Balanes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Coque-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Spirorbes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Strobiculaire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Telline.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Venus.jpg,02/10/2025,14.0000000,16.0000000,42.6596960000000,3.03446700000000,LABELBLEU,"Plage du Lido, Canet-en-Roussillon",94974,Observation #94974,https://biolit.fr/observations/observation-94974/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Moule.jpg,,,Identifiable +N1,94952,Sortie #94952,https://biolit.fr/sorties/sortie-94952/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Amande.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Balanes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Coque-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Spirorbes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Strobiculaire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Telline.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Venus.jpg,02/10/2025,14.0000000,16.0000000,42.6596960000000,3.03446700000000,LABELBLEU,"Plage du Lido, Canet-en-Roussillon",94978,Observation #94978,https://biolit.fr/observations/observation-94978/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Petoncle.jpg,,,Ne sais pas +N1,94952,Sortie #94952,https://biolit.fr/sorties/sortie-94952/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Amande.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Balanes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Coque-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Spirorbes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Strobiculaire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Telline.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Venus.jpg,02/10/2025,14.0000000,16.0000000,42.6596960000000,3.03446700000000,LABELBLEU,"Plage du Lido, Canet-en-Roussillon",94980,Observation #94980,https://biolit.fr/observations/observation-94980/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Posidonie.jpg,,TRUE,Identifiable +N1,94952,Sortie #94952,https://biolit.fr/sorties/sortie-94952/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Amande.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Balanes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Coque-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Spirorbes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Strobiculaire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Telline.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Venus.jpg,02/10/2025,14.0000000,16.0000000,42.6596960000000,3.03446700000000,LABELBLEU,"Plage du Lido, Canet-en-Roussillon",94982,Observation #94982,https://biolit.fr/observations/observation-94982/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Praire.jpg,,,Ne sais pas +N1,94952,Sortie #94952,https://biolit.fr/sorties/sortie-94952/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Amande.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Balanes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Coque-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Spirorbes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Strobiculaire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Telline.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Venus.jpg,02/10/2025,14.0000000,16.0000000,42.6596960000000,3.03446700000000,LABELBLEU,"Plage du Lido, Canet-en-Roussillon",94984,Observation #94984,https://biolit.fr/observations/observation-94984/,Spirorbis (Spirorbis) spirorbis,Spirorbe,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Spirorbes.jpg,,,Identifiable +N1,94952,Sortie #94952,https://biolit.fr/sorties/sortie-94952/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Amande.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Balanes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Coque-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Spirorbes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Strobiculaire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Telline.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Venus.jpg,02/10/2025,14.0000000,16.0000000,42.6596960000000,3.03446700000000,LABELBLEU,"Plage du Lido, Canet-en-Roussillon",94986,Observation #94986,https://biolit.fr/observations/observation-94986/,Scrobicularia plana,Scrobiculaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Strobiculaire.jpg,,,Identifiable +N1,94952,Sortie #94952,https://biolit.fr/sorties/sortie-94952/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Amande.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Balanes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Coque-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Spirorbes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Strobiculaire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Telline.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Venus.jpg,02/10/2025,14.0000000,16.0000000,42.6596960000000,3.03446700000000,LABELBLEU,"Plage du Lido, Canet-en-Roussillon",94997,Observation #94997,https://biolit.fr/observations/observation-94997/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Telline.jpg,,,Ne sais pas +N1,94952,Sortie #94952,https://biolit.fr/sorties/sortie-94952/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Amande.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Anomie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Balanes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Bucarde.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Coque-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Couteau.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Moule.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Petoncle.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Posidonie.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Praire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Spirorbes.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Strobiculaire.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Telline.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Venus.jpg,02/10/2025,14.0000000,16.0000000,42.6596960000000,3.03446700000000,LABELBLEU,"Plage du Lido, Canet-en-Roussillon",95001,Observation #95001,https://biolit.fr/observations/observation-95001/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/Venus.jpg,,,Ne sais pas +N1,95034,Sortie #95034,https://biolit.fr/sorties/sortie-95034/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_7031-scaled.jpg,5/31/2025 0:00,19.0:49,19.0:54,43.2722830000000,6.58710800000000,,Grande plage Port Grimaud jetée,95035,Observation #95035,https://biolit.fr/observations/observation-95035/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_7031-scaled.jpg,,TRUE,Identifiable +N1,95038,Sortie #95038,https://biolit.fr/sorties/sortie-95038/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_7004-scaled.jpg,5/31/2025 0:00,19.0000000,19.0:58,43.2723910000000,6.58679500000000,,Port grimaud jetée grande plage,95039,Observation #95039,https://biolit.fr/observations/observation-95039/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_7004-scaled.jpg,,TRUE,Identifiable +N1,95051,Sortie #95051,https://biolit.fr/sorties/sortie-95051/,Herbette Florian,https://biolit.fr/wp-content/uploads/jet-form-builder/f761cad14e4b283c0c8c4403ec36cbed/2025/06/1000030652-scaled.jpg,6/13/2025 0:00,10.0000000,11.0:37,43.5530380000000,4.01075900000000,LABELBLEU,Plage du petit travers,95052,Observation #95052,https://biolit.fr/observations/observation-95052/,Scyliorhinus canicula,Capsule de petite roussette,,https://biolit.fr/wp-content/uploads/jet-form-builder/f761cad14e4b283c0c8c4403ec36cbed/2025/06/1000030652-scaled.jpg,,TRUE,Identifiable +N1,95056,Sortie #95056,https://biolit.fr/sorties/sortie-95056/,Herbette Florian,https://biolit.fr/wp-content/uploads/jet-form-builder/f761cad14e4b283c0c8c4403ec36cbed/2025/06/1000030650-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f761cad14e4b283c0c8c4403ec36cbed/2025/06/1000030649-scaled.jpg,6/13/2025 0:00,10.0000000,11.0:39,43.5530380,4.0107580,LABELBLEU,plage du petit travers,95064,Observation #95064,https://biolit.fr/observations/observation-95064/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f761cad14e4b283c0c8c4403ec36cbed/2025/06/1000030650-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f761cad14e4b283c0c8c4403ec36cbed/2025/06/1000030649-scaled.jpg,,,Ne sais pas +N1,95063,Sortie #95063,https://biolit.fr/sorties/sortie-95063/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/1000024506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/1000024505-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/1000024499-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/1000024496-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/1000024493-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/1000024494-scaled.jpg,6/13/2025 0:00,10.0000000,11.0:37,43.5541470,4.0157540,LABELBLEU,Plage du Petit travers,,,,,,,,,, +N1,95073,Sortie #95073,https://biolit.fr/sorties/sortie-95073/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_080843039.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081136105.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081208677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081524212-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_082543650.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_082608874.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_085919352-scaled.jpg,6/13/2025 0:00,10.0000000,11.0000000,43.5532490000000,4.01363600000000,LABELBLEU,Plage du Petit travers,95074,Observation #95074,https://biolit.fr/observations/observation-95074/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_080843039.MP_-scaled.jpg,,TRUE,Identifiable +N1,95073,Sortie #95073,https://biolit.fr/sorties/sortie-95073/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_080843039.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081136105.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081208677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081524212-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_082543650.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_082608874.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_085919352-scaled.jpg,6/13/2025 0:00,10.0000000,11.0000000,43.5532490000000,4.01363600000000,LABELBLEU,Plage du Petit travers,95076,Observation #95076,https://biolit.fr/observations/observation-95076/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081136105.MP_-scaled.jpg,,TRUE,Identifiable +N1,95073,Sortie #95073,https://biolit.fr/sorties/sortie-95073/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_080843039.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081136105.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081208677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081524212-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_082543650.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_082608874.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_085919352-scaled.jpg,6/13/2025 0:00,10.0000000,11.0000000,43.5532490000000,4.01363600000000,LABELBLEU,Plage du Petit travers,95078,Observation #95078,https://biolit.fr/observations/observation-95078/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081208677-scaled.jpg,,,Identifiable +N1,95073,Sortie #95073,https://biolit.fr/sorties/sortie-95073/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_080843039.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081136105.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081208677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081524212-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_082543650.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_082608874.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_085919352-scaled.jpg,6/13/2025 0:00,10.0000000,11.0000000,43.5532490000000,4.01363600000000,LABELBLEU,Plage du Petit travers,95080,Observation #95080,https://biolit.fr/observations/observation-95080/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081524212-scaled.jpg,,TRUE,Identifiable +N1,95073,Sortie #95073,https://biolit.fr/sorties/sortie-95073/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_080843039.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081136105.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081208677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081524212-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_082543650.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_082608874.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_085919352-scaled.jpg,6/13/2025 0:00,10.0000000,11.0000000,43.5532490000000,4.01363600000000,LABELBLEU,Plage du Petit travers,95082,Observation #95082,https://biolit.fr/observations/observation-95082/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_082543650.MP_-scaled.jpg,,,Identifiable +N1,95073,Sortie #95073,https://biolit.fr/sorties/sortie-95073/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_080843039.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081136105.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081208677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081524212-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_082543650.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_082608874.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_085919352-scaled.jpg,6/13/2025 0:00,10.0000000,11.0000000,43.5532490000000,4.01363600000000,LABELBLEU,Plage du Petit travers,95084,Observation #95084,https://biolit.fr/observations/observation-95084/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_082608874.MP_-scaled.jpg,,,Ne sais pas +N1,95073,Sortie #95073,https://biolit.fr/sorties/sortie-95073/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_080843039.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081136105.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081208677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_081524212-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_082543650.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_082608874.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_085919352-scaled.jpg,6/13/2025 0:00,10.0000000,11.0000000,43.5532490000000,4.01363600000000,LABELBLEU,Plage du Petit travers,95086,Observation #95086,https://biolit.fr/observations/observation-95086/,Scyliorhinus canicula,Capsule de petite roussette,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250613_085919352-scaled.jpg,,TRUE,Identifiable +N1,95089,Sortie #95089,https://biolit.fr/sorties/sortie-95089/,PERSON Marie-Laure,https://biolit.fr/wp-content/uploads/jet-form-builder/664311ca380cbd0c0974ee5e1ecdf961/2025/06/Capture.jpg,06/11/2025,14.0000000,15.0:45,48.692593000000,-1.94180400000000,Planète Mer (antenne Dinard),PLAGE DES CHEVRETS 35350 SAINT COULOMB,95090,Observation #95090,https://biolit.fr/observations/observation-95090/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/664311ca380cbd0c0974ee5e1ecdf961/2025/06/Capture.jpg,,,Ne sais pas +N1,95093,Sortie #95093,https://biolit.fr/sorties/sortie-95093/,Vas Isabelle,https://biolit.fr/wp-content/uploads/jet-form-builder/9f97d3c7201687115c96f4573e640623/2025/06/1CAF64DA-C8A2-4711-95FC-A7C40CB834B5-scaled.jpeg,6/14/2025 0:00,10.0:21,11.0:21,43.2732980000000,5.36220800000000,Planète Mer,Plage du prophète,95094,Observation #95094,https://biolit.fr/observations/observation-95094/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9f97d3c7201687115c96f4573e640623/2025/06/1CAF64DA-C8A2-4711-95FC-A7C40CB834B5-scaled.jpeg,,,Ne sais pas +N1,95099,Sortie #95099,https://biolit.fr/sorties/sortie-95099/,MONTAGNON Géraldine,https://biolit.fr/wp-content/uploads/jet-form-builder/ca2f46a7a9bf9f68d6466e5b95142239/2025/06/IMG_0244-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca2f46a7a9bf9f68d6466e5b95142239/2025/06/IMG_0238-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca2f46a7a9bf9f68d6466e5b95142239/2025/06/IMG_0235-scaled.jpeg,6/14/2025 0:00,10.0000000,11.0000000,43.2730310000000,5.36236800000000,Planète Mer,Plage du Prophète,,,,,,,,,, +N1,95109,Sortie #95109,https://biolit.fr/sorties/sortie-95109/,COUVRET Claire,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058578-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058577-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058576-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058554-scaled.jpg,6/14/2025 0:00,10.0000000,12.0000000,43.2736840,5.3623580,Planète Mer,Plage du Prophète,95110,Observation #95110,https://biolit.fr/observations/observation-95110/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058578-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058577-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058576-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058554-scaled.jpg,,,Ne sais pas +N1,95109,Sortie #95109,https://biolit.fr/sorties/sortie-95109/,COUVRET Claire,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058578-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058577-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058576-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058554-scaled.jpg,6/14/2025 0:00,10.0000000,12.0000000,43.2736840,5.3623580,Planète Mer,Plage du Prophète,95112,Observation #95112,https://biolit.fr/observations/observation-95112/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058578-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058577-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058576-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058554-scaled.jpg,,,Ne sais pas +N1,95109,Sortie #95109,https://biolit.fr/sorties/sortie-95109/,COUVRET Claire,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058578-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058577-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058576-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058554-scaled.jpg,6/14/2025 0:00,10.0000000,12.0000000,43.2736840,5.3623580,Planète Mer,Plage du Prophète,95114,Observation #95114,https://biolit.fr/observations/observation-95114/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058578-scaled.jpg,,,Ne sais pas +N1,95109,Sortie #95109,https://biolit.fr/sorties/sortie-95109/,COUVRET Claire,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058578-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058577-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058576-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058554-scaled.jpg,6/14/2025 0:00,10.0000000,12.0000000,43.2736840,5.3623580,Planète Mer,Plage du Prophète,95116,Observation #95116,https://biolit.fr/observations/observation-95116/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058577-scaled.jpg,,,Ne sais pas +N1,95109,Sortie #95109,https://biolit.fr/sorties/sortie-95109/,COUVRET Claire,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058578-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058577-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058576-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058554-scaled.jpg,6/14/2025 0:00,10.0000000,12.0000000,43.2736840,5.3623580,Planète Mer,Plage du Prophète,95118,Observation #95118,https://biolit.fr/observations/observation-95118/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058576-scaled.jpg,,,Ne sais pas +N1,95109,Sortie #95109,https://biolit.fr/sorties/sortie-95109/,COUVRET Claire,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058578-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058577-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058576-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058554-scaled.jpg,6/14/2025 0:00,10.0000000,12.0000000,43.2736840,5.3623580,Planète Mer,Plage du Prophète,95120,Observation #95120,https://biolit.fr/observations/observation-95120/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058574-scaled.jpg,,,Ne sais pas +N1,95109,Sortie #95109,https://biolit.fr/sorties/sortie-95109/,COUVRET Claire,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058578-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058577-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058576-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058554-scaled.jpg,6/14/2025 0:00,10.0000000,12.0000000,43.2736840,5.3623580,Planète Mer,Plage du Prophète,95122,Observation #95122,https://biolit.fr/observations/observation-95122/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058575-scaled.jpg,,,Ne sais pas +N1,95109,Sortie #95109,https://biolit.fr/sorties/sortie-95109/,COUVRET Claire,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058578-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058577-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058576-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058554-scaled.jpg,6/14/2025 0:00,10.0000000,12.0000000,43.2736840,5.3623580,Planète Mer,Plage du Prophète,95124,Observation #95124,https://biolit.fr/observations/observation-95124/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058571-scaled.jpg,,,Ne sais pas +N1,95109,Sortie #95109,https://biolit.fr/sorties/sortie-95109/,COUVRET Claire,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058578-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058577-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058576-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058554-scaled.jpg,6/14/2025 0:00,10.0000000,12.0000000,43.2736840,5.3623580,Planète Mer,Plage du Prophète,95126,Observation #95126,https://biolit.fr/observations/observation-95126/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/7df14fd643c792d29447f43d70683fb2/2025/06/1000058554-scaled.jpg,,TRUE,Identifiable +N1,95139,Sortie #95139,https://biolit.fr/sorties/sortie-95139/,GASMI Nabila,https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_112210-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_112147-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_112116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_112047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_112039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_112031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_112026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_111445-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_111435-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_105526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_105338-scaled.jpg,6/14/2025 0:00,10.0000000,11.0:15,43.2782230000000,5.36215000000000,Planète Mer,Plage des Prophètes,95140,Observation #95140,https://biolit.fr/observations/observation-95140/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_111445-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_112147-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_112026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_112039-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_112210-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_112116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_112047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_112031-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_105526-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_111435-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/29b50f34580751a520f90aded121fe8f/2025/06/IMG_20250614_105338-scaled.jpg,,,Ne sais pas +N1,95178,Sortie #95178,https://biolit.fr/sorties/sortie-95178/,MONTAGNON Géraldine,https://biolit.fr/wp-content/uploads/jet-form-builder/ca2f46a7a9bf9f68d6466e5b95142239/2025/06/IMG_0244-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca2f46a7a9bf9f68d6466e5b95142239/2025/06/IMG_0240-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca2f46a7a9bf9f68d6466e5b95142239/2025/06/IMG_0235-1-scaled.jpeg,6/14/2025 0:00,10.0000000,11.0000000,43.2730130000000,5.36287300000000,Planète Mer,Plage des prophètes,95179,Observation #95179,https://biolit.fr/observations/observation-95179/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca2f46a7a9bf9f68d6466e5b95142239/2025/06/IMG_0244-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca2f46a7a9bf9f68d6466e5b95142239/2025/06/IMG_0235-1-scaled.jpeg,,,Ne sais pas +N1,95178,Sortie #95178,https://biolit.fr/sorties/sortie-95178/,MONTAGNON Géraldine,https://biolit.fr/wp-content/uploads/jet-form-builder/ca2f46a7a9bf9f68d6466e5b95142239/2025/06/IMG_0244-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca2f46a7a9bf9f68d6466e5b95142239/2025/06/IMG_0240-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca2f46a7a9bf9f68d6466e5b95142239/2025/06/IMG_0235-1-scaled.jpeg,6/14/2025 0:00,10.0000000,11.0000000,43.2730130000000,5.36287300000000,Planète Mer,Plage des prophètes,95181,Observation #95181,https://biolit.fr/observations/observation-95181/,Amphilectus fucorum,Eponge mousse de carotte,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca2f46a7a9bf9f68d6466e5b95142239/2025/06/IMG_0240-scaled.jpeg,,,Identifiable +N1,95185,Sortie #95185,https://biolit.fr/sorties/sortie-95185/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8366-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8368-scaled.jpg,6/14/2025 0:00,23.0:26,23.0:29,43.2696630000000,6.57968900000000,,Port grimaud plagette canal,95186,Observation #95186,https://biolit.fr/observations/observation-95186/,Chelon labrosus,Mulet lippu,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8366-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8368-scaled.jpg,,,Identifiable +N1,95189,Sortie #95189,https://biolit.fr/sorties/sortie-95189/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8490-scaled.jpeg,6/15/2025 0:00,23.000003,23.000009,43.2705930000000,6.57854900000000,,Port Grimaud plagette canaux,95190,Observation #95190,https://biolit.fr/observations/observation-95190/,Taurulus bubalis,Chabot-buffle,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8490-scaled.jpeg,,,Identifiable +N1,95421,Sortie #95421,https://biolit.fr/sorties/sortie-95421/,Lemaire Lea,https://biolit.fr/wp-content/uploads/jet-form-builder/8697acf3fe48a690cc6f55e098a10f07/2025/06/IMG_20250509_163450_915-scaled.jpg,05/09/2025,15.0000000,16.0000000,49.9186980000000,1.03516000000000,Eco2Nature,Pourville-sur-mer,95422,Observation #95422,https://biolit.fr/observations/observation-95422/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8697acf3fe48a690cc6f55e098a10f07/2025/06/IMG_20250509_163450_915-scaled.jpg,,,Identifiable +N1,95428,Sortie #95428,https://biolit.fr/sorties/sortie-95428/,Lemaire Lea,https://biolit.fr/wp-content/uploads/jet-form-builder/8697acf3fe48a690cc6f55e098a10f07/2025/06/IMG_20250509_162822_171-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8697acf3fe48a690cc6f55e098a10f07/2025/06/IMG_20250509_161553_722-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8697acf3fe48a690cc6f55e098a10f07/2025/06/IMG_20250509_161109_993-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8697acf3fe48a690cc6f55e098a10f07/2025/06/IMG_20250509_160914_884-scaled.jpg,05/09/2025,15.0000000,16.0000000,49.9186710000000,1.03516800000000,Eco2Nature,Pourville-sur-mer,95429,Observation #95429,https://biolit.fr/observations/observation-95429/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/jet-form-builder/8697acf3fe48a690cc6f55e098a10f07/2025/06/IMG_20250509_162822_171-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8697acf3fe48a690cc6f55e098a10f07/2025/06/IMG_20250509_161553_722-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8697acf3fe48a690cc6f55e098a10f07/2025/06/IMG_20250509_161109_993-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8697acf3fe48a690cc6f55e098a10f07/2025/06/IMG_20250509_160914_884-scaled.jpg,,,Identifiable +N1,95440,Sortie #95440,https://biolit.fr/sorties/sortie-95440/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-2-scaled.jpg,06/06/2025,10.0000000,11.0000000,48.7022100000000,-1.84654000000000,Centre Virginie Hériot,Rocher port mer,95441,Observation #95441,https://biolit.fr/observations/observation-95441/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-parasite-1-scaled.jpg,,,Identifiable +N1,95440,Sortie #95440,https://biolit.fr/sorties/sortie-95440/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-2-scaled.jpg,06/06/2025,10.0000000,11.0000000,48.7022100000000,-1.84654000000000,Centre Virginie Hériot,Rocher port mer,95443,Observation #95443,https://biolit.fr/observations/observation-95443/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-2-scaled.jpg,,TRUE,Identifiable +N1,95440,Sortie #95440,https://biolit.fr/sorties/sortie-95440/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-2-scaled.jpg,06/06/2025,10.0000000,11.0000000,48.7022100000000,-1.84654000000000,Centre Virginie Hériot,Rocher port mer,95445,Observation #95445,https://biolit.fr/observations/observation-95445/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Blennie-2-scaled.jpg,,,Identifiable +N1,95440,Sortie #95440,https://biolit.fr/sorties/sortie-95440/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-2-scaled.jpg,06/06/2025,10.0000000,11.0000000,48.7022100000000,-1.84654000000000,Centre Virginie Hériot,Rocher port mer,95447,Observation #95447,https://biolit.fr/observations/observation-95447/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-1-scaled.jpg,,,Identifiable +N1,95440,Sortie #95440,https://biolit.fr/sorties/sortie-95440/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-2-scaled.jpg,06/06/2025,10.0000000,11.0000000,48.7022100000000,-1.84654000000000,Centre Virginie Hériot,Rocher port mer,95449,Observation #95449,https://biolit.fr/observations/observation-95449/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-1-scaled.jpg,,,Ne sais pas +N1,95440,Sortie #95440,https://biolit.fr/sorties/sortie-95440/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-2-scaled.jpg,06/06/2025,10.0000000,11.0000000,48.7022100000000,-1.84654000000000,Centre Virginie Hériot,Rocher port mer,95451,Observation #95451,https://biolit.fr/observations/observation-95451/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Littorine-2-scaled.jpg,,TRUE,Identifiable +N1,95461,Sortie #95461,https://biolit.fr/sorties/sortie-95461/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Palourde-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-1-scaled.jpg,06/06/2025,10.0000000,11.0000000,48.7023960000000,-1.846335000000,Centre Virginie Hériot,Rocher port mer,95462,Observation #95462,https://biolit.fr/observations/observation-95462/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Monodonte-2-scaled.jpg,,TRUE,Identifiable +N1,95461,Sortie #95461,https://biolit.fr/sorties/sortie-95461/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Palourde-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-1-scaled.jpg,06/06/2025,10.0000000,11.0000000,48.7023960000000,-1.846335000000,Centre Virginie Hériot,Rocher port mer,95464,Observation #95464,https://biolit.fr/observations/observation-95464/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-1-scaled.jpg,,,Identifiable +N1,95461,Sortie #95461,https://biolit.fr/sorties/sortie-95461/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Palourde-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-1-scaled.jpg,06/06/2025,10.0000000,11.0000000,48.7023960000000,-1.846335000000,Centre Virginie Hériot,Rocher port mer,95466,Observation #95466,https://biolit.fr/observations/observation-95466/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Palourde-2-scaled.jpg,,,Identifiable +N1,95461,Sortie #95461,https://biolit.fr/sorties/sortie-95461/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Palourde-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-1-scaled.jpg,06/06/2025,10.0000000,11.0000000,48.7023960000000,-1.846335000000,Centre Virginie Hériot,Rocher port mer,95468,Observation #95468,https://biolit.fr/observations/observation-95468/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-1-scaled.jpg,,,Identifiable +N1,95461,Sortie #95461,https://biolit.fr/sorties/sortie-95461/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Palourde-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-1-scaled.jpg,06/06/2025,10.0000000,11.0000000,48.7023960000000,-1.846335000000,Centre Virginie Hériot,Rocher port mer,95470,Observation #95470,https://biolit.fr/observations/observation-95470/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-scaled.jpg,,TRUE,Identifiable +N1,95461,Sortie #95461,https://biolit.fr/sorties/sortie-95461/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Palourde-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-1-scaled.jpg,06/06/2025,10.0000000,11.0000000,48.7023960000000,-1.846335000000,Centre Virginie Hériot,Rocher port mer,95472,Observation #95472,https://biolit.fr/observations/observation-95472/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-1-scaled.jpg,,,Identifiable +N1,95490,Sortie #95490,https://biolit.fr/sorties/sortie-95490/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-fraise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylee-leachi-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/ponte-de-nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-1-scaled.jpg,06/12/2025,15.0000000,16.0000000,48.7022660000000,-1.84619700000000,Centre Virginie Hériot,Rocher port mer,95492,Observation #95492,https://biolit.fr/observations/observation-95492/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-fraise-scaled.jpg,,TRUE,Identifiable +N1,95490,Sortie #95490,https://biolit.fr/sorties/sortie-95490/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-fraise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylee-leachi-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/ponte-de-nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-1-scaled.jpg,06/12/2025,15.0000000,16.0000000,48.7022660000000,-1.84619700000000,Centre Virginie Hériot,Rocher port mer,95494,Observation #95494,https://biolit.fr/observations/observation-95494/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-indeterminee-scaled.jpg,,,Ne sais pas +N1,95490,Sortie #95490,https://biolit.fr/sorties/sortie-95490/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-fraise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylee-leachi-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/ponte-de-nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-1-scaled.jpg,06/12/2025,15.0000000,16.0000000,48.7022660000000,-1.84619700000000,Centre Virginie Hériot,Rocher port mer,95496,Observation #95496,https://biolit.fr/observations/observation-95496/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-solaire-2-scaled.jpg,,,Identifiable +N1,95490,Sortie #95490,https://biolit.fr/sorties/sortie-95490/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-fraise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylee-leachi-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/ponte-de-nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-1-scaled.jpg,06/12/2025,15.0000000,16.0000000,48.7022660000000,-1.84619700000000,Centre Virginie Hériot,Rocher port mer,95498,Observation #95498,https://biolit.fr/observations/observation-95498/,Pagurus bernhardus,Bernard-l'ermite commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-2-scaled.jpg,,,Identifiable +N1,95490,Sortie #95490,https://biolit.fr/sorties/sortie-95490/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-fraise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylee-leachi-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/ponte-de-nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-1-scaled.jpg,06/12/2025,15.0000000,16.0000000,48.7022660000000,-1.84619700000000,Centre Virginie Hériot,Rocher port mer,95500,Observation #95500,https://biolit.fr/observations/observation-95500/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylee-leachi-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-leachi-scaled.jpg,,,Identifiable +N1,95490,Sortie #95490,https://biolit.fr/sorties/sortie-95490/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-fraise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylee-leachi-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/ponte-de-nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-1-scaled.jpg,06/12/2025,15.0000000,16.0000000,48.7022660000000,-1.84619700000000,Centre Virginie Hériot,Rocher port mer,95502,Observation #95502,https://biolit.fr/observations/observation-95502/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-1-scaled.jpg,,,Identifiable +N1,95490,Sortie #95490,https://biolit.fr/sorties/sortie-95490/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-fraise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylee-leachi-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/ponte-de-nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-1-scaled.jpg,06/12/2025,15.0000000,16.0000000,48.7022660000000,-1.84619700000000,Centre Virginie Hériot,Rocher port mer,95504,Observation #95504,https://biolit.fr/observations/observation-95504/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-porcellane-scaled.jpg,,TRUE,Identifiable +N1,95490,Sortie #95490,https://biolit.fr/sorties/sortie-95490/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-fraise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylee-leachi-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/ponte-de-nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-1-scaled.jpg,06/12/2025,15.0000000,16.0000000,48.7022660000000,-1.84619700000000,Centre Virginie Hériot,Rocher port mer,95506,Observation #95506,https://biolit.fr/observations/observation-95506/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-2-scaled.jpg,,,Identifiable +N1,95490,Sortie #95490,https://biolit.fr/sorties/sortie-95490/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-fraise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylee-leachi-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/ponte-de-nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-1-scaled.jpg,06/12/2025,15.0000000,16.0000000,48.7022660000000,-1.84619700000000,Centre Virginie Hériot,Rocher port mer,95508,Observation #95508,https://biolit.fr/observations/observation-95508/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-scaled.jpg,,,Ne sais pas +N1,95490,Sortie #95490,https://biolit.fr/sorties/sortie-95490/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-fraise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylee-leachi-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/ponte-de-nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-1-scaled.jpg,06/12/2025,15.0000000,16.0000000,48.7022660000000,-1.84619700000000,Centre Virginie Hériot,Rocher port mer,95510,Observation #95510,https://biolit.fr/observations/observation-95510/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-2-scaled.jpg,,,Identifiable +N1,95490,Sortie #95490,https://biolit.fr/sorties/sortie-95490/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-fraise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylee-leachi-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/ponte-de-nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-1-scaled.jpg,06/12/2025,15.0000000,16.0000000,48.7022660000000,-1.84619700000000,Centre Virginie Hériot,Rocher port mer,95512,Observation #95512,https://biolit.fr/observations/observation-95512/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/ponte-de-nasse-scaled.jpg,,,Identifiable +N1,95490,Sortie #95490,https://biolit.fr/sorties/sortie-95490/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-fraise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylee-leachi-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/ponte-de-nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-1-scaled.jpg,06/12/2025,15.0000000,16.0000000,48.7022660000000,-1.84619700000000,Centre Virginie Hériot,Rocher port mer,95514,Observation #95514,https://biolit.fr/observations/observation-95514/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/ponte-de-nasse-scaled.jpg,,,Identifiable +N1,95490,Sortie #95490,https://biolit.fr/sorties/sortie-95490/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-fraise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-indeterminee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Bernard-lermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylee-leachi-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-etoile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/ponte-de-nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-1-scaled.jpg,06/12/2025,15.0000000,16.0000000,48.7022660000000,-1.84619700000000,Centre Virginie Hériot,Rocher port mer,95516,Observation #95516,https://biolit.fr/observations/observation-95516/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/06/Tomate-de-mer-2-1-scaled.jpg,,TRUE,Identifiable +N1,95520,Sortie #95520,https://biolit.fr/sorties/sortie-95520/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8511.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8509.jpg,6/16/2025 0:00,19.0:24,19.0:31,43.2629160000000,6.60308400000000,,Cogolin ancienne usine des torpilles,95521,Observation #95521,https://biolit.fr/observations/observation-95521/,Egretta garzetta,Aigrette garzette,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8511.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8509.jpg,,TRUE,Identifiable +N1,95524,Sortie #95524,https://biolit.fr/sorties/sortie-95524/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8475.jpg,6/15/2025 0:00,22.0000000,23.0000000,43.2696920000000,6.57978100000000,,Port grimaud canaux plagette rue Giscle,,,,,,,,,, +N1,95526,Sortie #95526,https://biolit.fr/sorties/sortie-95526/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8475-1.jpg,6/15/2025 0:00,22.0000000,22.0:57,43.2696630000000,6.57978600000000,,Port Grimaud canaux plagette rue Giscle,95527,Observation #95527,https://biolit.fr/observations/observation-95527/,Gobius niger,Gobie noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8475-1.jpg,,TRUE,Identifiable +N1,95530,Sortie #95530,https://biolit.fr/sorties/sortie-95530/,COULAUD ROMAIN,https://biolit.fr/wp-content/uploads/jet-form-builder/1bb882ba9ff1c0ce28ffdadbd6939776/2025/06/PES-1123-06929-scaled.jpg,6/16/2025 0:00,10.0000000,12.0000000,49.5559970000000,0.113678000000000,Université Le Havre Normandie (UMR SEBIO),Plage du Havre,,,,,,,,,, +N1,95532,Sortie #95532,https://biolit.fr/sorties/sortie-95532/,COULAUD ROMAIN,https://biolit.fr/wp-content/uploads/jet-form-builder/1bb882ba9ff1c0ce28ffdadbd6939776/2025/06/Sans-titre.jpg,6/16/2025 0:00,10.0000000,12.0000000,49.5559970000000,0.113678000000000,Université Le Havre Normandie (UMR SEBIO),Plage du Havre,,,,,,,,,, +N1,95535,Sortie #95535,https://biolit.fr/sorties/sortie-95535/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8577.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8574.jpeg,6/16/2025 0:00,20.0000000,20.000005,43.262620000000,6.60320700000000,,Gassin plage après usine des torpilles,95536,Observation #95536,https://biolit.fr/observations/observation-95536/,Sepia officinalis,Seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8577.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8574.jpeg,,TRUE,Identifiable +N1,95548,Sortie #95548,https://biolit.fr/sorties/sortie-95548/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_5059-scaled.jpeg,9/24/2020 0:00,15.0000000,15.0:37,43.2708840000000,6.57858700000000,,Port grimaud canaux,95549,Observation #95549,https://biolit.fr/observations/observation-95549/,Diplodus sargus,Sar commun de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_5059-scaled.jpeg,,TRUE,Identifiable +N1,95553,Sortie #95553,https://biolit.fr/sorties/sortie-95553/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8672.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8598.jpeg,6/16/2025 0:00,0.0:22,23.0:28,43.2696550000000,6.57978600000000,,Port grimaud canaux plagette rue Giscle,95554,Observation #95554,https://biolit.fr/observations/observation-95554/,Eriocheir sinensis,Crabe chinois à mitaines,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8598.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8672.jpeg,,,Identifiable +N1,95558,Sortie #95558,https://biolit.fr/sorties/sortie-95558/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/G0010881.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/G0010898.jpeg,09/03/2024,18.0:32,18.0:36,43.2625990000000,6.60300600000000,,Gassin plage après usine de torpilles,95559,Observation #95559,https://biolit.fr/observations/observation-95559/,Sparus aurata,Dorade (daurade) royale,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/G0010881.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/G0010898.jpeg,,TRUE,Identifiable +N1,95609,Sortie #95609,https://biolit.fr/sorties/sortie-95609/,Morange Solène,https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1216-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1215-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1214-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1213-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1212-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1211-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1210-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.129-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.128-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.127-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.126-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.124-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.123-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.122-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.121-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.12_Moules-2.jpg,11/12/2024,11.000008,14.000008,51.3625360000000,3.33292000000000,,Lekkerbek Beach,95610,Observation #95610,https://biolit.fr/observations/observation-95610/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1216-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1215-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1214-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1213-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1212-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1211-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1210-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.122-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.123-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.124-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.126-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.127-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.128-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.129-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.121-2.jpg,,,Ne sais pas +N1,95609,Sortie #95609,https://biolit.fr/sorties/sortie-95609/,Morange Solène,https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1216-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1215-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1214-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1213-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1212-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1211-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1210-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.129-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.128-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.127-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.126-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.124-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.123-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.122-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.121-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.12_Moules-2.jpg,11/12/2024,11.000008,14.000008,51.3625360000000,3.33292000000000,,Lekkerbek Beach,95612,Observation #95612,https://biolit.fr/observations/observation-95612/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.12_Moules-2.jpg,,,Identifiable +N1,95609,Sortie #95609,https://biolit.fr/sorties/sortie-95609/,Morange Solène,https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1216-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1215-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1214-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1213-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1212-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1211-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1210-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.129-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.128-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.127-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.126-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.124-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.123-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.122-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.121-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.12_Moules-2.jpg,11/12/2024,11.000008,14.000008,51.3625360000000,3.33292000000000,,Lekkerbek Beach,95614,Observation #95614,https://biolit.fr/observations/observation-95614/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1211-2.jpg,,,non-identifiable +N1,95609,Sortie #95609,https://biolit.fr/sorties/sortie-95609/,Morange Solène,https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1216-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1215-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1214-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1213-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1212-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1211-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1210-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.129-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.128-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.127-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.126-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.124-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.123-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.122-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.121-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.12_Moules-2.jpg,11/12/2024,11.000008,14.000008,51.3625360000000,3.33292000000000,,Lekkerbek Beach,95616,Observation #95616,https://biolit.fr/observations/observation-95616/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1215-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1214-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1213-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1216-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1211-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1212-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.1210-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.129-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.127-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.128-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.126-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.124-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.122-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.123-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.121-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/1579709de47390c22f5a720eb1bc5198/2025/06/24.11.12_Moules-2.jpg,,,Ne sais pas +N1,95622,Sortie #95622,https://biolit.fr/sorties/sortie-95622/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_3513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_3512.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_3504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_3503.jpg,3/19/2025 0:00,17.0:28,17.0:39,43.270585000000,6.57856300000000,,Port grimaud plagette canaux,95623,Observation #95623,https://biolit.fr/observations/observation-95623/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_3513.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_3512.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_3504.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_3503.jpg,,TRUE,Identifiable +N1,95628,Sortie #95628,https://biolit.fr/sorties/sortie-95628/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_5495.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_5495-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_5494.jpeg,9/22/2022 0:00,16.0:48,16.0:58,43.2741730000000,6.58415800000000,,Port Grimaud grande plage,95629,Observation #95629,https://biolit.fr/observations/observation-95629/,Antalis vulgaris,Dentale,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_5495.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_5495-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_5494.jpeg,,,Identifiable +N1,95652,Sortie #95652,https://biolit.fr/sorties/sortie-95652/,BOUSSAC Shirley,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075723-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075730-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075826-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080223-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080236-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080312-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080342-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080644-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080901-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080905-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3296890000000,5.03734700000000,Planète Mer,Carro,95653,Observation #95653,https://biolit.fr/observations/observation-95653/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080901-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080905-scaled.jpg,,TRUE,Identifiable +N1,95652,Sortie #95652,https://biolit.fr/sorties/sortie-95652/,BOUSSAC Shirley,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075723-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075730-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075826-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080223-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080236-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080312-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080342-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080644-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080901-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080905-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3296890000000,5.03734700000000,Planète Mer,Carro,95655,Observation #95655,https://biolit.fr/observations/observation-95655/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080644-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080342-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080312-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080236-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075723-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075730-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075826-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080223-scaled.jpg,,,Ne sais pas +N1,95652,Sortie #95652,https://biolit.fr/sorties/sortie-95652/,BOUSSAC Shirley,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075723-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075730-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075826-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080223-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080236-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080312-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080342-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080644-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080901-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080905-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3296890000000,5.03734700000000,Planète Mer,Carro,95657,Observation #95657,https://biolit.fr/observations/observation-95657/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080300-scaled.jpg,,TRUE,Identifiable +N1,95652,Sortie #95652,https://biolit.fr/sorties/sortie-95652/,BOUSSAC Shirley,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075723-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075730-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075754-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_075826-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080223-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080236-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080300-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080312-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080342-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080404-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080548-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080644-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080901-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080905-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3296890000000,5.03734700000000,Planète Mer,Carro,95659,Observation #95659,https://biolit.fr/observations/observation-95659/,Achelous hastatus,Etrille nageuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080156-scaled.jpg,,,Identifiable +N1,95681,Sortie #95681,https://biolit.fr/sorties/sortie-95681/,BOUSSAC Shirley,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081839-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081849-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_082017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_082054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_082538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_082630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_082813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_082819-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083303-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083306-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083611-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083644-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083911-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3296780000000,5.03724500000000,Planète Mer,Carro,95682,Observation #95682,https://biolit.fr/observations/observation-95682/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083611-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083617-scaled.jpg,,,Identifiable +N1,95681,Sortie #95681,https://biolit.fr/sorties/sortie-95681/,BOUSSAC Shirley,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081839-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081849-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_082017-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_082054-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_082538-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_082630-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_082813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_082819-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083110-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083217-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083303-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083306-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083611-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083617-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083644-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_083911-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3296780000000,5.03724500000000,Planète Mer,Carro,95684,Observation #95684,https://biolit.fr/observations/observation-95684/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081839-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081849-scaled.jpg,,TRUE,Ne sais pas +N1,95706,Sortie #95706,https://biolit.fr/sorties/sortie-95706/,BOUSSAC Shirley,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084337-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084542-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084606-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085359-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_090444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_092442-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_092448-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.329428000000,5.037682000000,Planète Mer,Carro,95707,Observation #95707,https://biolit.fr/observations/observation-95707/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084337-scaled.jpg,,TRUE,Identifiable +N1,95706,Sortie #95706,https://biolit.fr/sorties/sortie-95706/,BOUSSAC Shirley,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084337-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084542-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084606-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085359-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_090444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_092442-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_092448-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.329428000000,5.037682000000,Planète Mer,Carro,95709,Observation #95709,https://biolit.fr/observations/observation-95709/,Amblyeleotris aurora,Gobie magnifique,,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091130-scaled.jpg,,,Identifiable +N1,95706,Sortie #95706,https://biolit.fr/sorties/sortie-95706/,BOUSSAC Shirley,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084337-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084542-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084606-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085359-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_090444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_092442-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_092448-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.329428000000,5.037682000000,Planète Mer,Carro,95711,Observation #95711,https://biolit.fr/observations/observation-95711/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091809-scaled.jpg,,TRUE,Identifiable +N1,95706,Sortie #95706,https://biolit.fr/sorties/sortie-95706/,BOUSSAC Shirley,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084337-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084542-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084606-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085359-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_090444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_092442-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_092448-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.329428000000,5.037682000000,Planète Mer,Carro,95713,Observation #95713,https://biolit.fr/observations/observation-95713/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_090444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085359-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_092442-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_092448-scaled.jpg,,,Ne sais pas +N1,95706,Sortie #95706,https://biolit.fr/sorties/sortie-95706/,BOUSSAC Shirley,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084337-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084412-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084542-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084606-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084815-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085029-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085050-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085241-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085359-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_085528-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_090444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091049-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091052-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091809-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091917-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_091951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_092442-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_092448-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.329428000000,5.037682000000,Planète Mer,Carro,95715,Observation #95715,https://biolit.fr/observations/observation-95715/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_084606-scaled.jpg,,,Identifiable +N1,95737,Sortie #95737,https://biolit.fr/sorties/sortie-95737/,BOUSSAC Shirley,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080954-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080959-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081335-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081338-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081354-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081419-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081428-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081521-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081606-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081839-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081849-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_082017-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_082054-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_082538-1-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3295810000000,5.03760200000000,Planète Mer,Carro,95738,Observation #95738,https://biolit.fr/observations/observation-95738/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080937-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_080943-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081419-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_081428-scaled.jpg,,,Identifiable +N1,95746,Sortie #95746,https://biolit.fr/sorties/sortie-95746/,BOUSSAC Shirley,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_093546-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_093728-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_093732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_101501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_102339-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_102512-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3293790000000,5.03814300000000,Planète Mer,Carro,95747,Observation #95747,https://biolit.fr/observations/observation-95747/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_101501-scaled.jpg,,,Identifiable +N1,95746,Sortie #95746,https://biolit.fr/sorties/sortie-95746/,BOUSSAC Shirley,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_093546-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_093728-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_093732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_101501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_102339-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_102512-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3293790000000,5.03814300000000,Planète Mer,Carro,95749,Observation #95749,https://biolit.fr/observations/observation-95749/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_102512-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_093728-scaled.jpg,,,Identifiable +N1,95746,Sortie #95746,https://biolit.fr/sorties/sortie-95746/,BOUSSAC Shirley,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_093546-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_093728-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_093732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_101501-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_102339-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_102512-scaled.jpg,06/06/2025,8.0000000,11.0000000,43.3293790000000,5.03814300000000,Planète Mer,Carro,95751,Observation #95751,https://biolit.fr/observations/observation-95751/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_093546-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_093728-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_093732-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_102339-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/9d9755aa9e4fd19fee8cff6b38c6f76f/2025/06/20250606_102512-scaled.jpg,,,Ne sais pas +N1,95765,Sortie #95765,https://biolit.fr/sorties/sortie-95765/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8705-scaled.jpeg,6/18/2025 0:00,17.0000000,17.0:54,43.2706080000000,6.57852800000000,,Port Grimaud plagette canaux 4 Vents,95766,Observation #95766,https://biolit.fr/observations/observation-95766/,Chelon labrosus,Mulet lippu,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8705-scaled.jpeg,,,Identifiable +N1,95770,Sortie #95770,https://biolit.fr/sorties/sortie-95770/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8861.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8859.jpeg,8/24/2024 0:00,20.0:44,20.0:48,43.2726270000000,6.58654500000000,,Port grimaud grande plage jetée nord,95771,Observation #95771,https://biolit.fr/observations/observation-95771/,Dasyatis pastinaca,Pastenague commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8861.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8859.jpeg,,TRUE,Identifiable +N1,95774,Sortie #95774,https://biolit.fr/sorties/sortie-95774/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8824.jpeg,6/19/2025 0:00,11.0000000,11.0:26,43.2701750000000,6.57797800000000,,Port Grimaud plagette canaux 4 vents,95775,Observation #95775,https://biolit.fr/observations/observation-95775/,Sparus aurata,Dorade (daurade) royale,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8824.jpeg,,TRUE,Identifiable +N1,95778,Sortie #95778,https://biolit.fr/sorties/sortie-95778/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Cerianthus-membranaceus.jpg,6/20/2025 0:00,9.0000000,9.0:45,43.2539530,5.4153940,,"Plage de la Pointe Rouge, 2m de profondeur à 60 mètres de la plage",95779,Observation #95779,https://biolit.fr/observations/observation-95779/,Cerianthus membranaceus,Grand cérianthe,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e07dcf80ee78bdb65745f39b6fa27e4/2025/06/Cerianthus-membranaceus.jpg,,FALSE,Identifiable +N1,95783,Sortie #95783,https://biolit.fr/sorties/sortie-95783/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9281.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9278-scaled.jpeg,6/20/2025 0:00,22.0:47,22.0000000,43.2701530000000,6.57798200000000,,Port grimaud plagette 4 vents,95784,Observation #95784,https://biolit.fr/observations/observation-95784/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9281.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9278-scaled.jpeg,,TRUE,Identifiable +N1,95787,Sortie #95787,https://biolit.fr/sorties/sortie-95787/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9117.jpeg,6/20/2025 0:00,16.0:44,16.0:48,43.272455000000,6.5872590000000,,Port grimaud grande plage jetée,95788,Observation #95788,https://biolit.fr/observations/observation-95788/,Crambe crambe,Eponge encroûtante orange-rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9117.jpeg,,,Identifiable +N1,95791,Sortie #95791,https://biolit.fr/sorties/sortie-95791/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9047.jpeg,6/20/2025 0:00,15.0:43,15.0:47,43.272471000000,6.58683500000000,,Port grimaud grande plage PG1 jetée,95792,Observation #95792,https://biolit.fr/observations/observation-95792/,Tripterygion tripteronotum,Triptérygion rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9047.jpeg,,,Identifiable +N1,95795,Sortie #95795,https://biolit.fr/sorties/sortie-95795/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9021.jpeg,6/20/2025 0:00,15.0:19,15.0:24,43.2724520000000,6.58707100000000,,Port Grimaud grande plage PG1 jetée,95796,Observation #95796,https://biolit.fr/observations/observation-95796/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9021.jpeg,,,Ne sais pas +N1,95799,Sortie #95799,https://biolit.fr/sorties/sortie-95799/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8892.jpeg,6/20/2025 0:00,13.0:33,13.0:35,43.2722720000000,6.58752700000000,,Port Grimaud grande plage PG1 jetée,95800,Observation #95800,https://biolit.fr/observations/observation-95800/,Dicentrarchus labrax,Bar commun loup,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_8892.jpeg,,TRUE,Identifiable +N1,95815,Sortie #95815,https://biolit.fr/sorties/sortie-95815/,Bodi Xavier,https://biolit.fr/wp-content/uploads/jet-form-builder/5b434f0825647024cd8b560bbcdd341f/2025/06/1000005830-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b434f0825647024cd8b560bbcdd341f/2025/06/1000005827-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b434f0825647024cd8b560bbcdd341f/2025/06/1000005828-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b434f0825647024cd8b560bbcdd341f/2025/06/1000005831-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b434f0825647024cd8b560bbcdd341f/2025/06/1000005832-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b434f0825647024cd8b560bbcdd341f/2025/06/1000005829-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b434f0825647024cd8b560bbcdd341f/2025/06/1000005833.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b434f0825647024cd8b560bbcdd341f/2025/06/1000005834-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b434f0825647024cd8b560bbcdd341f/2025/06/1000005835-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b434f0825647024cd8b560bbcdd341f/2025/06/1000005836-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b434f0825647024cd8b560bbcdd341f/2025/06/1000005837-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5b434f0825647024cd8b560bbcdd341f/2025/06/1000005839-rotated.jpg,6/21/2025 0:00,18.0:45,19.0000000,48.6175120,-2.0287920,,Plage des fours à chaux,,,,,,,,,, +N1,95820,Sortie #95820,https://biolit.fr/sorties/sortie-95820/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_5787.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_5751.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_5751-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9533.jpeg,10/04/2022,17.0:35,17.0:45,43.2795460000000,6.59072400000000,,Port Grimaud niveau plage PG1 vers camping,95821,Observation #95821,https://biolit.fr/observations/observation-95821/,Salpa fusiformis,Salpe fuselée,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_5787.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_5751.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_5751-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9533.jpeg,,,Identifiable +N1,95824,Sortie #95824,https://biolit.fr/sorties/sortie-95824/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9538-scaled.jpeg,6/20/2025 0:00,11.000004,11.000007,43.2724660000000,6.58720000000000,,Port grimaud grande plage PG1 ling de la jetée,95825,Observation #95825,https://biolit.fr/observations/observation-95825/,Atherina sp.,Joël de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9538-scaled.jpeg,,TRUE,Identifiable +N1,95830,Sortie #95830,https://biolit.fr/sorties/sortie-95830/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_2933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_2936.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_2934.jpg,11/17/2024 0:00,14.0:43,14.0:51,43.263081000000,6.59149600000000,,Port Grimaud petite plage côté PG2,95831,Observation #95831,https://biolit.fr/observations/observation-95831/,Spondylus gaederopus,Spondyle pied-d'âne,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_2933.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_2936.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_2934.jpg,,,Identifiable +N1,95835,Sortie #95835,https://biolit.fr/sorties/sortie-95835/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9551.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9549.jpeg,6/16/2025 0:00,19.0:45,19.0000000,43.2632970000000,6.60235400000000,,Gassin après usine de torpilles,95836,Observation #95836,https://biolit.fr/observations/observation-95836/,Scoloplos sp.,Ver de Scoloplos,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9551.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9549.jpeg,,,Ne sais pas +N1,95841,Sortie #95841,https://biolit.fr/sorties/sortie-95841/,Payet Florian,https://biolit.fr/wp-content/uploads/jet-form-builder/0754dfe29f024f3daf825dfec8d91231/2025/06/IMG_0969-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/0754dfe29f024f3daf825dfec8d91231/2025/06/IMG_0971-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/0754dfe29f024f3daf825dfec8d91231/2025/06/IMG_0965-scaled.jpeg,6/17/2025 0:00,9.0:44,11.0:39,49.5089540000000,0.067141000000000,Université Le Havre Normandie (UMR SEBIO),,,,,,,,,,, +N1,95850,Sortie #95850,https://biolit.fr/sorties/sortie-95850/,Rinaldi Arthur,https://biolit.fr/wp-content/uploads/jet-form-builder/22d1022f60971dc608aae3e45e21873d/2025/06/IMG_1122-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/22d1022f60971dc608aae3e45e21873d/2025/06/IMG_1121.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/22d1022f60971dc608aae3e45e21873d/2025/06/IMG_1113-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/22d1022f60971dc608aae3e45e21873d/2025/06/IMG_1117-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/22d1022f60971dc608aae3e45e21873d/2025/06/IMG_1119-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/22d1022f60971dc608aae3e45e21873d/2025/06/IMG_1120-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/22d1022f60971dc608aae3e45e21873d/2025/06/IMG_1118-scaled.jpeg,6/17/2025 0:00,9.0:55,10.0000000,49.4594220000000,0.10986300000,,Le Havre,95851,Observation #95851,https://biolit.fr/observations/observation-95851/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/22d1022f60971dc608aae3e45e21873d/2025/06/IMG_1122-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/22d1022f60971dc608aae3e45e21873d/2025/06/IMG_1117-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/22d1022f60971dc608aae3e45e21873d/2025/06/IMG_1119-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/22d1022f60971dc608aae3e45e21873d/2025/06/IMG_1120-scaled.jpeg,,,Identifiable +N1,95856,Sortie #95856,https://biolit.fr/sorties/sortie-95856/,Soudet THEO,https://biolit.fr/wp-content/uploads/jet-form-builder/8a77d90b14f4f33d76f75bf7d6340a34/2025/06/IMG_0971-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8a77d90b14f4f33d76f75bf7d6340a34/2025/06/IMG_0969-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8a77d90b14f4f33d76f75bf7d6340a34/2025/06/IMG_0965-scaled.jpeg,6/17/2025 0:00,9.0:45,11.0000000,49.5090010000000,0.0669690000000000,Université Le Havre Normandie (UMR SEBIO),Cap de la Hève,95862,Observation #95862,https://biolit.fr/observations/observation-95862/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/8a77d90b14f4f33d76f75bf7d6340a34/2025/06/IMG_0971-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8a77d90b14f4f33d76f75bf7d6340a34/2025/06/IMG_0969-scaled.jpeg,,TRUE,Identifiable +N1,95856,Sortie #95856,https://biolit.fr/sorties/sortie-95856/,Soudet THEO,https://biolit.fr/wp-content/uploads/jet-form-builder/8a77d90b14f4f33d76f75bf7d6340a34/2025/06/IMG_0971-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8a77d90b14f4f33d76f75bf7d6340a34/2025/06/IMG_0969-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/8a77d90b14f4f33d76f75bf7d6340a34/2025/06/IMG_0965-scaled.jpeg,6/17/2025 0:00,9.0:45,11.0000000,49.5090010000000,0.0669690000000000,Université Le Havre Normandie (UMR SEBIO),Cap de la Hève,95870,Observation #95870,https://biolit.fr/observations/observation-95870/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8a77d90b14f4f33d76f75bf7d6340a34/2025/06/IMG_0965-scaled.jpeg,,,Ne sais pas +N1,95887,Sortie #95887,https://biolit.fr/sorties/sortie-95887/,Hauguel Clément,https://biolit.fr/wp-content/uploads/jet-form-builder/1f3a91a079875785ed6280cfc1c83ea3/2025/06/IMG_0448-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1f3a91a079875785ed6280cfc1c83ea3/2025/06/IMG_0447-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1f3a91a079875785ed6280cfc1c83ea3/2025/06/IMG_0446-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1f3a91a079875785ed6280cfc1c83ea3/2025/06/IMG_0437-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1f3a91a079875785ed6280cfc1c83ea3/2025/06/IMG_0436-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1f3a91a079875785ed6280cfc1c83ea3/2025/06/IMG_0420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/1f3a91a079875785ed6280cfc1c83ea3/2025/06/IMG_0419-scaled.jpeg,6/17/2025 0:00,9.0:45,11.0000000,49.5078200000000,0.0678330000000000,Université Le Havre Normandie (UMR SEBIO),Sainte adresse,,,,,,,,,, +N1,95890,Sortie #95890,https://biolit.fr/sorties/sortie-95890/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9652.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9624.jpg,6/23/2025 0:00,0.0:37,0.0000000,43.2696530000000,6.57979100000000,,Port grimaud plagette rue de la giscle,95891,Observation #95891,https://biolit.fr/observations/observation-95891/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9652.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9624.jpg,,TRUE,Identifiable +N1,95895,Sortie #95895,https://biolit.fr/sorties/sortie-95895/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9655.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9619-scaled.jpg,6/23/2025 0:00,0.0:36,0.0000000,43.2696450000000,6.57972400000000,,Port grimaud plagette rue de la Giscle,95896,Observation #95896,https://biolit.fr/observations/observation-95896/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9655.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9619-scaled.jpg,,TRUE,Identifiable +N1,95900,Sortie #95900,https://biolit.fr/sorties/sortie-95900/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9667.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9663.png,6/23/2025 0:00,0.0:37,0.0:42,43.2696440000000,6.57972000000000,,Port grimaud plagette rue de la Giscle,95901,Observation #95901,https://biolit.fr/observations/observation-95901/,Talitrus saltator,Talitre sauteur,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9667.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9663.png,,TRUE,Identifiable +N1,95904,Sortie #95904,https://biolit.fr/sorties/sortie-95904/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9635.jpg,6/23/2025 0:00,0.0:38,0.0:44,43.2696440000000,6.57972000000000,,Port Grimaud plagette rue de la Giscle,95905,Observation #95905,https://biolit.fr/observations/observation-95905/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9635.jpg,,TRUE,Identifiable +N1,95908,Sortie #95908,https://biolit.fr/sorties/sortie-95908/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9642-scaled.jpg,6/23/2025 0:00,0.0:39,0.0:43,43.2696410000000,6.57971900000000,,Port Grimaud plagette rue de la Giscle,95909,Observation #95909,https://biolit.fr/observations/observation-95909/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9642-scaled.jpg,,TRUE,Identifiable +N1,95912,Sortie #95912,https://biolit.fr/sorties/sortie-95912/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9673.jpeg,6/23/2025 0:00,0.0:33,0.0:39,43.2696490000000,6.57971100000000,,Port Grimaud plagette rue de la Giscle,95913,Observation #95913,https://biolit.fr/observations/observation-95913/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9673.jpeg,,TRUE,Identifiable +N1,95916,Sortie #95916,https://biolit.fr/sorties/sortie-95916/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9674.jpeg,6/16/2025 0:00,19.0:47,19.0:57,43.2628230000000,6.60259000000000,,Gassin après usine de torpilles,95917,Observation #95917,https://biolit.fr/observations/observation-95917/,Acetabularia acetabulum,Acétabulaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9674.jpeg,,TRUE,Identifiable +N1,96033,Sortie #96033,https://biolit.fr/sorties/sortie-96033/,Deflandre Léa,https://biolit.fr/wp-content/uploads/jet-form-builder/cafbaedf2fe06792d1fd97c7a4f33723/2025/06/39B28ABA-813B-41B2-8563-6A7EC9ACA995-scaled.jpeg,6/15/2025 0:00,14.0:14,14.0:15,48.6659710000000,-1.99029600000000,Al-Lark,Plage de Rochebonne,96034,Observation #96034,https://biolit.fr/observations/observation-96034/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cafbaedf2fe06792d1fd97c7a4f33723/2025/06/39B28ABA-813B-41B2-8563-6A7EC9ACA995-scaled.jpeg,,,Ne sais pas +N1,96040,Sortie #96040,https://biolit.fr/sorties/sortie-96040/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9089.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9091.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9686.jpeg,6/20/2025 0:00,12.0000000,12.0:38,43.272471000000,6.58699600000000,,Port Grimaud grande plage PG1 jetée,96041,Observation #96041,https://biolit.fr/observations/observation-96041/,Anomia ephippium,Anomie pelure d'oignon,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9089.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9091.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9686.jpeg,,TRUE,Ne sais pas +N1,96056,Sortie #96056,https://biolit.fr/sorties/sortie-96056/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9687.jpeg,6/23/2025 0:00,20.0:38,20.0:58,43.2709360000000,6.57864600000000,,Port Grimaud canal ile verte,96057,Observation #96057,https://biolit.fr/observations/observation-96057/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9687.jpeg,,TRUE,Identifiable +N1,96063,Sortie #96063,https://biolit.fr/sorties/sortie-96063/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9735.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9732.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9729.jpeg,6/23/2025 0:00,23.0:39,23.0:43,43.2696550000000,6.57972000000000,,Port Grimaud plagette rue de Giscle,96064,Observation #96064,https://biolit.fr/observations/observation-96064/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9735.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9732.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9729.jpeg,,TRUE,Identifiable +N1,96075,Sortie #96075,https://biolit.fr/sorties/sortie-96075/,DEUX MICKAEL,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6795-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6796-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6789-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6791-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6792-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6793-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6794-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6797-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6798-scaled.jpeg,6/22/2025 0:00,10.0000000,10.0:55,47.2711870000000,-2.41458900000000,,Le Pouliguen,96078,Observation #96078,https://biolit.fr/observations/observation-96078/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6796-scaled.jpeg,,TRUE,Identifiable +N1,96075,Sortie #96075,https://biolit.fr/sorties/sortie-96075/,DEUX MICKAEL,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6795-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6796-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6789-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6791-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6792-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6793-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6794-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6797-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6798-scaled.jpeg,6/22/2025 0:00,10.0000000,10.0:55,47.2711870000000,-2.41458900000000,,Le Pouliguen,96080,Observation #96080,https://biolit.fr/observations/observation-96080/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6789-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6797-scaled.jpeg,,,Identifiable +N1,96075,Sortie #96075,https://biolit.fr/sorties/sortie-96075/,DEUX MICKAEL,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6795-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6796-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6789-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6791-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6792-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6793-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6794-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6797-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6798-scaled.jpeg,6/22/2025 0:00,10.0000000,10.0:55,47.2711870000000,-2.41458900000000,,Le Pouliguen,96082,Observation #96082,https://biolit.fr/observations/observation-96082/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6791-scaled.jpeg,,TRUE,Identifiable +N1,96075,Sortie #96075,https://biolit.fr/sorties/sortie-96075/,DEUX MICKAEL,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6795-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6796-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6789-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6791-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6792-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6793-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6794-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6797-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6798-scaled.jpeg,6/22/2025 0:00,10.0000000,10.0:55,47.2711870000000,-2.41458900000000,,Le Pouliguen,96084,Observation #96084,https://biolit.fr/observations/observation-96084/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6792-scaled.jpeg,,TRUE,Identifiable +N1,96075,Sortie #96075,https://biolit.fr/sorties/sortie-96075/,DEUX MICKAEL,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6795-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6796-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6789-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6791-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6792-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6793-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6794-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6797-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6798-scaled.jpeg,6/22/2025 0:00,10.0000000,10.0:55,47.2711870000000,-2.41458900000000,,Le Pouliguen,96086,Observation #96086,https://biolit.fr/observations/observation-96086/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6793-scaled.jpeg,,TRUE,Identifiable +N1,96075,Sortie #96075,https://biolit.fr/sorties/sortie-96075/,DEUX MICKAEL,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6795-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6796-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6789-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6791-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6792-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6793-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6794-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6797-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6798-scaled.jpeg,6/22/2025 0:00,10.0000000,10.0:55,47.2711870000000,-2.41458900000000,,Le Pouliguen,96088,Observation #96088,https://biolit.fr/observations/observation-96088/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/d884ed14fc465e73736b1bf4384f4f21/2025/06/IMG_6798-scaled.jpeg,,TRUE,Identifiable +N1,96101,Sortie #96101,https://biolit.fr/sorties/sortie-96101/,panchout william,https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4664-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4665-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4666-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4667-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4670-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4672-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4677-scaled.jpg,6/25/2025 0:00,8.000001,13.000001,49.508897000000,0.0672380000000000,Observe la nature,plage sainte-adresse 76310,96102,Observation #96102,https://biolit.fr/observations/observation-96102/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4664-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4665-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4666-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4667-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4670-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4672-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4677-scaled.jpg,,,Ne sais pas +N1,96101,Sortie #96101,https://biolit.fr/sorties/sortie-96101/,panchout william,https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4664-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4665-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4666-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4667-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4670-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4672-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4677-scaled.jpg,6/25/2025 0:00,8.000001,13.000001,49.508897000000,0.0672380000000000,Observe la nature,plage sainte-adresse 76310,96104,Observation #96104,https://biolit.fr/observations/observation-96104/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4664-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4665-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4666-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4667-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4670-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4672-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4673-scaled.jpg,,,non-identifiable +N1,96101,Sortie #96101,https://biolit.fr/sorties/sortie-96101/,panchout william,https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4664-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4665-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4666-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4667-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4670-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4672-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4677-scaled.jpg,6/25/2025 0:00,8.000001,13.000001,49.508897000000,0.0672380000000000,Observe la nature,plage sainte-adresse 76310,96106,Observation #96106,https://biolit.fr/observations/observation-96106/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4665-scaled.jpg,,,non-identifiable +N1,96101,Sortie #96101,https://biolit.fr/sorties/sortie-96101/,panchout william,https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4664-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4665-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4666-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4667-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4670-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4672-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4677-scaled.jpg,6/25/2025 0:00,8.000001,13.000001,49.508897000000,0.0672380000000000,Observe la nature,plage sainte-adresse 76310,96108,Observation #96108,https://biolit.fr/observations/observation-96108/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4666-scaled.jpg,,,Ne sais pas +N1,96101,Sortie #96101,https://biolit.fr/sorties/sortie-96101/,panchout william,https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4664-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4665-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4666-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4667-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4670-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4672-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4677-scaled.jpg,6/25/2025 0:00,8.000001,13.000001,49.508897000000,0.0672380000000000,Observe la nature,plage sainte-adresse 76310,96110,Observation #96110,https://biolit.fr/observations/observation-96110/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4667-scaled.jpg,,,Ne sais pas +N1,96101,Sortie #96101,https://biolit.fr/sorties/sortie-96101/,panchout william,https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4664-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4665-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4666-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4667-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4670-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4672-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4677-scaled.jpg,6/25/2025 0:00,8.000001,13.000001,49.508897000000,0.0672380000000000,Observe la nature,plage sainte-adresse 76310,96112,Observation #96112,https://biolit.fr/observations/observation-96112/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4670-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4671-scaled.jpg,,,Ne sais pas +N1,96101,Sortie #96101,https://biolit.fr/sorties/sortie-96101/,panchout william,https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4664-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4665-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4666-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4667-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4670-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4671-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4672-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4673-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4677-scaled.jpg,6/25/2025 0:00,8.000001,13.000001,49.508897000000,0.0672380000000000,Observe la nature,plage sainte-adresse 76310,96114,Observation #96114,https://biolit.fr/observations/observation-96114/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4675-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7bcb81f5f9de4b9c6571e12a1346798b/2025/06/IMG_4677-scaled.jpg,,,Ne sais pas +N1,96120,Sortie #96120,https://biolit.fr/sorties/sortie-96120/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_083012534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_085422886.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_090931554.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_091004057.MP_-scaled.jpg,6/25/2025 0:00,10.0000000,12.0000000,43.5470260000000,4.12170800000000,LABELBLEU,Plage du Boucanet au Grau-du-Roi,96121,Observation #96121,https://biolit.fr/observations/observation-96121/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_083012534-scaled.jpg,,TRUE,Identifiable +N1,96120,Sortie #96120,https://biolit.fr/sorties/sortie-96120/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_083012534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_085422886.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_090931554.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_091004057.MP_-scaled.jpg,6/25/2025 0:00,10.0000000,12.0000000,43.5470260000000,4.12170800000000,LABELBLEU,Plage du Boucanet au Grau-du-Roi,96123,Observation #96123,https://biolit.fr/observations/observation-96123/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_085422886.MP_-scaled.jpg,,,Ne sais pas +N1,96120,Sortie #96120,https://biolit.fr/sorties/sortie-96120/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_083012534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_085422886.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_090931554.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_091004057.MP_-scaled.jpg,6/25/2025 0:00,10.0000000,12.0000000,43.5470260000000,4.12170800000000,LABELBLEU,Plage du Boucanet au Grau-du-Roi,96125,Observation #96125,https://biolit.fr/observations/observation-96125/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_090931554.MP_-scaled.jpg,,,Ne sais pas +N1,96120,Sortie #96120,https://biolit.fr/sorties/sortie-96120/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_083012534-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_085422886.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_090931554.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_091004057.MP_-scaled.jpg,6/25/2025 0:00,10.0000000,12.0000000,43.5470260000000,4.12170800000000,LABELBLEU,Plage du Boucanet au Grau-du-Roi,96127,Observation #96127,https://biolit.fr/observations/observation-96127/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/06/PXL_20250625_091004057.MP_-scaled.jpg,,,Identifiable +N1,96188,Sortie #96188,https://biolit.fr/sorties/sortie-96188/,Monllor Monica,https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImagef8nYRl-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImageYl6LKu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImageDtIqQJ-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImage5ucqgf-scaled.jpg,6/25/2025 0:00,8.0000000,11.0000000,43.4314410000000,3.77489800000000,LPO Occitanie (Dt Hérault),Port de Frontignan,96189,Observation #96189,https://biolit.fr/observations/observation-96189/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImageYl6LKu-scaled.jpg,,TRUE,Identifiable +N1,96188,Sortie #96188,https://biolit.fr/sorties/sortie-96188/,Monllor Monica,https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImagef8nYRl-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImageYl6LKu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImageDtIqQJ-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImage5ucqgf-scaled.jpg,6/25/2025 0:00,8.0000000,11.0000000,43.4314410000000,3.77489800000000,LPO Occitanie (Dt Hérault),Port de Frontignan,96191,Observation #96191,https://biolit.fr/observations/observation-96191/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImage5ucqgf-scaled.jpg,,TRUE,Identifiable +N1,96188,Sortie #96188,https://biolit.fr/sorties/sortie-96188/,Monllor Monica,https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImagef8nYRl-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImageYl6LKu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImageDtIqQJ-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImage5ucqgf-scaled.jpg,6/25/2025 0:00,8.0000000,11.0000000,43.4314410000000,3.77489800000000,LPO Occitanie (Dt Hérault),Port de Frontignan,96193,Observation #96193,https://biolit.fr/observations/observation-96193/,Haliotis tuberculata f. lamellosa,Ormeau méditerranéen,,https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImagef8nYRl-scaled.jpg,,TRUE,Identifiable +N1,96188,Sortie #96188,https://biolit.fr/sorties/sortie-96188/,Monllor Monica,https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImagef8nYRl-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImageYl6LKu-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImageDtIqQJ-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImage5ucqgf-scaled.jpg,6/25/2025 0:00,8.0000000,11.0000000,43.4314410000000,3.77489800000000,LPO Occitanie (Dt Hérault),Port de Frontignan,96195,Observation #96195,https://biolit.fr/observations/observation-96195/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/jet-form-builder/101a67baa028e6c1d46d83e8f6d741eb/2025/06/tempImageDtIqQJ-scaled.jpg,,TRUE,Identifiable +N1,96199,Sortie #96199,https://biolit.fr/sorties/sortie-96199/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/7d54d3f0-7e5d-4e47-8f5a-477155ab7ac5.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9772.jpeg,6/21/2025 0:00,15.0000000,15.0000000,43.2628150000000,6.59386800000000,,Port Grimaud petite plage,96200,Observation #96200,https://biolit.fr/observations/observation-96200/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/7d54d3f0-7e5d-4e47-8f5a-477155ab7ac5.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/06/IMG_9772.jpeg,,,Identifiable +N1,96203,Sortie #96203,https://biolit.fr/sorties/sortie-96203/,Termignon Delphine,https://biolit.fr/wp-content/uploads/jet-form-builder/3dcd28de0566460139dd63f2ec8704a8/2025/06/1000035606-scaled.jpg,6/25/2025 0:00,9.0000000,11.0000000,43.4313620000000,3.77487900000000,LPO Occitanie (Dt Hérault),Frontignan plage,96204,Observation #96204,https://biolit.fr/observations/observation-96204/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3dcd28de0566460139dd63f2ec8704a8/2025/06/1000035606-scaled.jpg,,,Identifiable +N1,96203,Sortie #96203,https://biolit.fr/sorties/sortie-96203/,Termignon Delphine,https://biolit.fr/wp-content/uploads/jet-form-builder/3dcd28de0566460139dd63f2ec8704a8/2025/06/1000035606-scaled.jpg,6/25/2025 0:00,9.0000000,11.0000000,43.4313620000000,3.77487900000000,LPO Occitanie (Dt Hérault),Frontignan plage,96206,Observation #96206,https://biolit.fr/observations/observation-96206/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/3dcd28de0566460139dd63f2ec8704a8/2025/06/1000035606-scaled.jpg,,TRUE,Identifiable +N1,96220,Sortie #96220,https://biolit.fr/sorties/sortie-96220/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8813-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8814-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8815-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8817-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8818-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8819-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8821-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8822-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8823-scaled.jpeg,6/18/2025 0:00,11.0000000,12.0000000,48.638003000000,-2.02955200000000,,St Servan,96221,Observation #96221,https://biolit.fr/observations/observation-96221/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8813-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8814-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8815-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8817-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8818-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8819-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8821-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8822-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8823-scaled.jpeg,,,Ne sais pas +N1,96220,Sortie #96220,https://biolit.fr/sorties/sortie-96220/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8813-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8814-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8815-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8817-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8818-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8819-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8821-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8822-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8823-scaled.jpeg,6/18/2025 0:00,11.0000000,12.0000000,48.638003000000,-2.02955200000000,,St Servan,96223,Observation #96223,https://biolit.fr/observations/observation-96223/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8813-1-scaled.jpeg,,,Ne sais pas +N1,96220,Sortie #96220,https://biolit.fr/sorties/sortie-96220/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8813-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8814-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8815-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8817-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8818-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8819-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8821-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8822-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8823-scaled.jpeg,6/18/2025 0:00,11.0000000,12.0000000,48.638003000000,-2.02955200000000,,St Servan,96225,Observation #96225,https://biolit.fr/observations/observation-96225/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8813-1-scaled.jpeg,,,Ne sais pas +N1,96220,Sortie #96220,https://biolit.fr/sorties/sortie-96220/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8813-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8814-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8815-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8817-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8818-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8819-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8821-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8822-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8823-scaled.jpeg,6/18/2025 0:00,11.0000000,12.0000000,48.638003000000,-2.02955200000000,,St Servan,96227,Observation #96227,https://biolit.fr/observations/observation-96227/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8823-scaled.jpeg,,,Ne sais pas +N1,96220,Sortie #96220,https://biolit.fr/sorties/sortie-96220/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8813-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8814-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8815-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8817-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8818-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8819-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8821-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8822-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8823-scaled.jpeg,6/18/2025 0:00,11.0000000,12.0000000,48.638003000000,-2.02955200000000,,St Servan,96229,Observation #96229,https://biolit.fr/observations/observation-96229/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8822-scaled.jpeg,,,Ne sais pas +N1,96220,Sortie #96220,https://biolit.fr/sorties/sortie-96220/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8813-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8814-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8815-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8817-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8818-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8819-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8821-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8822-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8823-scaled.jpeg,6/18/2025 0:00,11.0000000,12.0000000,48.638003000000,-2.02955200000000,,St Servan,96231,Observation #96231,https://biolit.fr/observations/observation-96231/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8821-scaled.jpeg,,,Ne sais pas +N1,96220,Sortie #96220,https://biolit.fr/sorties/sortie-96220/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8813-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8814-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8815-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8817-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8818-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8819-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8821-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8822-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8823-scaled.jpeg,6/18/2025 0:00,11.0000000,12.0000000,48.638003000000,-2.02955200000000,,St Servan,96233,Observation #96233,https://biolit.fr/observations/observation-96233/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8819-scaled.jpeg,,,Ne sais pas +N1,96220,Sortie #96220,https://biolit.fr/sorties/sortie-96220/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8813-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8814-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8815-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8817-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8818-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8819-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8821-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8822-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8823-scaled.jpeg,6/18/2025 0:00,11.0000000,12.0000000,48.638003000000,-2.02955200000000,,St Servan,96235,Observation #96235,https://biolit.fr/observations/observation-96235/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8818-scaled.jpeg,,,Ne sais pas +N1,96220,Sortie #96220,https://biolit.fr/sorties/sortie-96220/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8813-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8814-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8815-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8817-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8818-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8819-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8821-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8822-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8823-scaled.jpeg,6/18/2025 0:00,11.0000000,12.0000000,48.638003000000,-2.02955200000000,,St Servan,96237,Observation #96237,https://biolit.fr/observations/observation-96237/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8817-scaled.jpeg,,,Ne sais pas +N1,96220,Sortie #96220,https://biolit.fr/sorties/sortie-96220/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8813-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8814-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8815-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8817-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8818-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8819-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8821-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8822-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8823-scaled.jpeg,6/18/2025 0:00,11.0000000,12.0000000,48.638003000000,-2.02955200000000,,St Servan,96239,Observation #96239,https://biolit.fr/observations/observation-96239/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8815-1-scaled.jpeg,,,Ne sais pas +N1,96220,Sortie #96220,https://biolit.fr/sorties/sortie-96220/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8813-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8814-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8815-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8817-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8818-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8819-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8821-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8822-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8823-scaled.jpeg,6/18/2025 0:00,11.0000000,12.0000000,48.638003000000,-2.02955200000000,,St Servan,96241,Observation #96241,https://biolit.fr/observations/observation-96241/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8814-1-scaled.jpeg,,,Ne sais pas +N1,96220,Sortie #96220,https://biolit.fr/sorties/sortie-96220/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8813-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8814-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8815-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8817-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8818-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8819-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8821-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8822-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8823-scaled.jpeg,6/18/2025 0:00,11.0000000,12.0000000,48.638003000000,-2.02955200000000,,St Servan,96243,Observation #96243,https://biolit.fr/observations/observation-96243/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_8813-1-scaled.jpeg,,,Ne sais pas +N1,96252,Sortie #96252,https://biolit.fr/sorties/sortie-96252/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9661-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9667-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9668-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9670-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9672-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9673-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9674-scaled.jpeg,6/26/2025 0:00,15.0000000,16.0000000,48.650447000000,-2.0314090000000,,St malo,96253,Observation #96253,https://biolit.fr/observations/observation-96253/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9661-scaled.jpeg,,TRUE,Ne sais pas +N1,96252,Sortie #96252,https://biolit.fr/sorties/sortie-96252/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9661-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9667-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9668-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9670-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9672-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9673-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9674-scaled.jpeg,6/26/2025 0:00,15.0000000,16.0000000,48.650447000000,-2.0314090000000,,St malo,96255,Observation #96255,https://biolit.fr/observations/observation-96255/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9667-scaled.jpeg,,,Ne sais pas +N1,96252,Sortie #96252,https://biolit.fr/sorties/sortie-96252/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9661-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9667-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9668-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9670-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9672-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9673-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9674-scaled.jpeg,6/26/2025 0:00,15.0000000,16.0000000,48.650447000000,-2.0314090000000,,St malo,96257,Observation #96257,https://biolit.fr/observations/observation-96257/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9668-scaled.jpeg,,,Ne sais pas +N1,96252,Sortie #96252,https://biolit.fr/sorties/sortie-96252/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9661-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9667-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9668-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9670-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9672-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9673-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9674-scaled.jpeg,6/26/2025 0:00,15.0000000,16.0000000,48.650447000000,-2.0314090000000,,St malo,96259,Observation #96259,https://biolit.fr/observations/observation-96259/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9670-scaled.jpeg,,TRUE,Ne sais pas +N1,96252,Sortie #96252,https://biolit.fr/sorties/sortie-96252/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9661-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9667-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9668-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9670-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9672-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9673-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9674-scaled.jpeg,6/26/2025 0:00,15.0000000,16.0000000,48.650447000000,-2.0314090000000,,St malo,96261,Observation #96261,https://biolit.fr/observations/observation-96261/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9672-scaled.jpeg,,TRUE,Ne sais pas +N1,96252,Sortie #96252,https://biolit.fr/sorties/sortie-96252/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9661-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9667-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9668-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9670-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9672-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9673-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9674-scaled.jpeg,6/26/2025 0:00,15.0000000,16.0000000,48.650447000000,-2.0314090000000,,St malo,96263,Observation #96263,https://biolit.fr/observations/observation-96263/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9673-scaled.jpeg,,TRUE,Ne sais pas +N1,96252,Sortie #96252,https://biolit.fr/sorties/sortie-96252/,Escalup Laurence,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9661-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9667-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9668-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9670-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9672-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9673-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9674-scaled.jpeg,6/26/2025 0:00,15.0000000,16.0000000,48.650447000000,-2.0314090000000,,St malo,96265,Observation #96265,https://biolit.fr/observations/observation-96265/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ca4156eac4e38463d752d231b41619af/2025/06/IMG_9674-scaled.jpeg,,,Ne sais pas +N1,96293,Sortie #96293,https://biolit.fr/sorties/sortie-96293/,Pelloux Nathalie,https://biolit.fr/wp-content/uploads/jet-form-builder/0682ee7eace84b4e3310c3dd17e2194c/2025/06/IMG_9534-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/0682ee7eace84b4e3310c3dd17e2194c/2025/06/IMG_9533-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/0682ee7eace84b4e3310c3dd17e2194c/2025/06/IMG_9536-scaled.jpeg,06/10/2025,9.0:33,11.0000000,43.3580730000000,5.29114000000000,AIEJE,Plage du Fortin,96294,Observation #96294,https://biolit.fr/observations/observation-96294/,Arbacia lixula,Oursin noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/0682ee7eace84b4e3310c3dd17e2194c/2025/06/IMG_9534-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/0682ee7eace84b4e3310c3dd17e2194c/2025/06/IMG_9533-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/0682ee7eace84b4e3310c3dd17e2194c/2025/06/IMG_9536-scaled.jpeg,,,Identifiable +N1,96316,Sortie #96316,https://biolit.fr/sorties/sortie-96316/,HOAREAU Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7782-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7781-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7780-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7779-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7774-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7771-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7768-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7760-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7759-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7762-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7758-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7757-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7756-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7755-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7754-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7753-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7752-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/IMG_7749-1-scaled.jpeg,06/06/2025,8.0000000,12.0000000,43.3318410000000,5.04336800000000,Planète Mer,Carro,,,,,,,,,, +N1,96338,Sortie #96338,https://biolit.fr/sorties/sortie-96338/,HOAREAU Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-15.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-3.jpg,06/06/2025,8.0000000,12.0000000,43.3325180000000,5.05017000000000,Planète Mer,Plage de Carro,96339,Observation #96339,https://biolit.fr/observations/observation-96339/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-1.jpg,,,Identifiable +N1,96338,Sortie #96338,https://biolit.fr/sorties/sortie-96338/,HOAREAU Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-15.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-3.jpg,06/06/2025,8.0000000,12.0000000,43.3325180000000,5.05017000000000,Planète Mer,Plage de Carro,96341,Observation #96341,https://biolit.fr/observations/observation-96341/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-3.jpg,,,Identifiable +N1,96338,Sortie #96338,https://biolit.fr/sorties/sortie-96338/,HOAREAU Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-15.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-3.jpg,06/06/2025,8.0000000,12.0000000,43.3325180000000,5.05017000000000,Planète Mer,Plage de Carro,96343,Observation #96343,https://biolit.fr/observations/observation-96343/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-1.jpg,,,Identifiable +N1,96338,Sortie #96338,https://biolit.fr/sorties/sortie-96338/,HOAREAU Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-15.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-3.jpg,06/06/2025,8.0000000,12.0000000,43.3325180000000,5.05017000000000,Planète Mer,Plage de Carro,96345,Observation #96345,https://biolit.fr/observations/observation-96345/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-16.jpg,,,Identifiable +N1,96338,Sortie #96338,https://biolit.fr/sorties/sortie-96338/,HOAREAU Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-15.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-3.jpg,06/06/2025,8.0000000,12.0000000,43.3325180000000,5.05017000000000,Planète Mer,Plage de Carro,96347,Observation #96347,https://biolit.fr/observations/observation-96347/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-14.jpg,,,Identifiable +N1,96338,Sortie #96338,https://biolit.fr/sorties/sortie-96338/,HOAREAU Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-15.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-3.jpg,06/06/2025,8.0000000,12.0000000,43.3325180000000,5.05017000000000,Planète Mer,Plage de Carro,96349,Observation #96349,https://biolit.fr/observations/observation-96349/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-15.jpg,,,Identifiable +N1,96338,Sortie #96338,https://biolit.fr/sorties/sortie-96338/,HOAREAU Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-15.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-3.jpg,06/06/2025,8.0000000,12.0000000,43.3325180000000,5.05017000000000,Planète Mer,Plage de Carro,96351,Observation #96351,https://biolit.fr/observations/observation-96351/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-16.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-8.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-15.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-17.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-10.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-18.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Plage-Carro-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-13.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-14.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-7.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e95d31dc350d5e9926bd6e52e29de748/2025/06/Carro-1.jpg,,,Ne sais pas +N1,96355,Sortie #96355,https://biolit.fr/sorties/sortie-96355/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/sepia-officinalis-1-scaled.jpg,6/27/2025 0:00,10.0000000,11.0000000,44.1732880000000,-1.30587100000000,Centre de la mer,Mimizan plage de Lespecier,96356,Observation #96356,https://biolit.fr/observations/observation-96356/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/sepia-officinalis-1-scaled.jpg,,TRUE,Identifiable +N1,96361,Sortie #96361,https://biolit.fr/sorties/sortie-96361/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/coquillage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/escargot-mer_3-cm_mimizan-1-scaled.jpg,6/27/2025 0:00,10.0000000,11.0000000,44.1734060000000,-1.30546300000000,Centre de la mer,Mimizan plage de Lespecier,96362,Observation #96362,https://biolit.fr/observations/observation-96362/,Aporrhais pespelecani,Pied de pélican commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/coquillage-scaled.jpg,,TRUE,Identifiable +N1,96361,Sortie #96361,https://biolit.fr/sorties/sortie-96361/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/coquillage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/escargot-mer_3-cm_mimizan-1-scaled.jpg,6/27/2025 0:00,10.0000000,11.0000000,44.1734060000000,-1.30546300000000,Centre de la mer,Mimizan plage de Lespecier,96364,Observation #96364,https://biolit.fr/observations/observation-96364/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/06/escargot-mer_3-cm_mimizan-1-scaled.jpg,,TRUE,non-identifiable +N1,96390,Sortie #96390,https://biolit.fr/sorties/sortie-96390/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/07/20250625_crabe-verruqueux-benodet-scaled.jpg,6/25/2025 0:00,12.0000000,12.0:45,47.8611410000000,-4.09330600000000,,Pointe de Saint Gilles,96391,Observation #96391,https://biolit.fr/observations/observation-96391/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/07/20250625_crabe-verruqueux-benodet-scaled.jpg,,TRUE,Identifiable +N1,96456,Sortie #96456,https://biolit.fr/sorties/sortie-96456/,Mailly Enzo,https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200864-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200865-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200866-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200870-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200872-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200873-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200876-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200878-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200879-scaled.jpg,07/01/2025,11.0000000,14.0000000,51.0829720000000,2.52578400000000,,Plage de Bray-Dunes,96457,Observation #96457,https://biolit.fr/observations/observation-96457/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200864-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200865-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200879-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200878-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200866-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200870-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200872-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200873-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7be2ec25c79ff81a464ac7a0714994ab/2025/07/P1200876-scaled.jpg,,,Ne sais pas +N1,96462,Sortie #96462,https://biolit.fr/sorties/sortie-96462/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_2909.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_2914.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_2913.jpeg,11/16/2024 0:00,12.0:23,12.0:25,43.262892000000,6.59171100000000,,Port Grimaud petite plage PG2,96463,Observation #96463,https://biolit.fr/observations/observation-96463/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_2914.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_2909.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_2913.jpeg,,TRUE,Identifiable +N1,96467,Sortie #96467,https://biolit.fr/sorties/sortie-96467/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_2906.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_2904.jpeg,11/16/2024 0:00,12.0:21,12.0:23,43.2630340000000,6.59147500000000,,Port Grimaud plagette canaux 4 vents,96468,Observation #96468,https://biolit.fr/observations/observation-96468/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_2906.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_2904.jpeg,,,Identifiable +N1,96472,Sortie #96472,https://biolit.fr/sorties/sortie-96472/,Bernard-Griffiths Nathalie,https://biolit.fr/wp-content/uploads/jet-form-builder/b61aa0280de59b30e4957665c29ae3d4/2025/07/hermelles2.png | https://biolit.fr/wp-content/uploads/jet-form-builder/b61aa0280de59b30e4957665c29ae3d4/2025/07/hermelles.png,11/17/2024 0:00,14.0000000,18.0000000,48.6823800000000,-1.98647800000000,,Plage de la Varde,,,,,,,,,, +N1,96524,Sortie #96524,https://biolit.fr/sorties/sortie-96524/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/07/Capbreton-Hossegor_grand-truc-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/07/Capbreton-Hossegor_grand-truc_02072025-scaled.jpg,07/02/2025,10.0000000,12.0000000,43.6563320000000,-1.44603300000000,Centre de la mer,plage piste de Capbreton à la gravière d'Hossegor,96527,Observation #96527,https://biolit.fr/observations/observation-96527/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/07/Capbreton-Hossegor_grand-truc_02072025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c14684390c30ef30c06511b355a1a2aa/2025/07/Capbreton-Hossegor_grand-truc-1-scaled.jpg,,TRUE,non-identifiable +N1,96544,Sortie #96544,https://biolit.fr/sorties/sortie-96544/,RBBBM,https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Antiopella-limace-a-cerathes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bryozoaire-rouge-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bryozoaire-et-Hydrozoaires-sur-Fucus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bifurcaire-algue-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Cormaillot-Ocenebra-et-ponte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Clavelines-Tunicier-scaled.jpg,5/25/2021 0:00,11.0000000,12.0000000,47.7994,-3.6996,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),anse du Gorgen au Bélon,96545,Observation #96545,https://biolit.fr/observations/observation-96545/,Antiopella cristata,Antiopelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Antiopella-limace-a-cerathes-scaled.jpg,,TRUE,Identifiable +N1,96544,Sortie #96544,https://biolit.fr/sorties/sortie-96544/,RBBBM,https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Antiopella-limace-a-cerathes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bryozoaire-rouge-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bryozoaire-et-Hydrozoaires-sur-Fucus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bifurcaire-algue-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Cormaillot-Ocenebra-et-ponte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Clavelines-Tunicier-scaled.jpg,5/25/2021 0:00,11.0000000,12.0000000,47.7994,-3.6996,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),anse du Gorgen au Bélon,96547,Observation #96547,https://biolit.fr/observations/observation-96547/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bryozoaire-rouge-a-points-noirs-scaled.jpg,,TRUE,Identifiable +N1,96544,Sortie #96544,https://biolit.fr/sorties/sortie-96544/,RBBBM,https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Antiopella-limace-a-cerathes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bryozoaire-rouge-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bryozoaire-et-Hydrozoaires-sur-Fucus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bifurcaire-algue-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Cormaillot-Ocenebra-et-ponte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Clavelines-Tunicier-scaled.jpg,5/25/2021 0:00,11.0000000,12.0000000,47.7994,-3.6996,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),anse du Gorgen au Bélon,96549,Observation #96549,https://biolit.fr/observations/observation-96549/,Bifurcaria bifurcata,Bifurcaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bifurcaire-algue-verte-scaled.jpg,,TRUE,Identifiable +N1,96544,Sortie #96544,https://biolit.fr/sorties/sortie-96544/,RBBBM,https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Antiopella-limace-a-cerathes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bryozoaire-rouge-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bryozoaire-et-Hydrozoaires-sur-Fucus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bifurcaire-algue-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Cormaillot-Ocenebra-et-ponte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Clavelines-Tunicier-scaled.jpg,5/25/2021 0:00,11.0000000,12.0000000,47.7994,-3.6996,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),anse du Gorgen au Bélon,96551,Observation #96551,https://biolit.fr/observations/observation-96551/,Ocenebra erinaceus,Ponte de Bigorneau perceur,,https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Cormaillot-Ocenebra-et-ponte.jpg,,TRUE,Identifiable +N1,96544,Sortie #96544,https://biolit.fr/sorties/sortie-96544/,RBBBM,https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Antiopella-limace-a-cerathes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bryozoaire-rouge-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bryozoaire-et-Hydrozoaires-sur-Fucus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Bifurcaire-algue-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Cormaillot-Ocenebra-et-ponte.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Clavelines-Tunicier-scaled.jpg,5/25/2021 0:00,11.0000000,12.0000000,47.7994,-3.6996,Rivières et Bocage Belon-Brigneau-Merrien (RBBBM),anse du Gorgen au Bélon,96553,Observation #96553,https://biolit.fr/observations/observation-96553/,Clavelina lepadiformis,Grande claveline,,https://biolit.fr/wp-content/uploads/jet-form-builder/2585d232a51eb5f9fce291a1072c0166/2025/07/Clavelines-Tunicier-scaled.jpg,,TRUE,Identifiable +N1,96561,Sortie #96561,https://biolit.fr/sorties/sortie-96561/,COURTOIS Tiphaine,https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-17-scaled.jpg,07/01/2025,11.0000000,14.0000000,51.0706890000000,2.52211800000000,,dune du perroquet,96562,Observation #96562,https://biolit.fr/observations/observation-96562/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-17-scaled.jpg,,,Ne sais pas +N1,96570,Sortie #96570,https://biolit.fr/sorties/sortie-96570/,COURTOIS Tiphaine,https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-16-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-15-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-14-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-10.jpg,07/01/2025,11.0000000,14.0000000,51.0706890000000,2.52211800000000,,dune du perroquet,96571,Observation #96571,https://biolit.fr/observations/observation-96571/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-16-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-15-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-14-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-10.jpg,,,Ne sais pas +N1,96570,Sortie #96570,https://biolit.fr/sorties/sortie-96570/,COURTOIS Tiphaine,https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-16-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-15-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-14-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-10.jpg,07/01/2025,11.0000000,14.0000000,51.0706890000000,2.52211800000000,,dune du perroquet,96575,Observation #96575,https://biolit.fr/observations/observation-96575/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-16-scaled.jpg,,,Ne sais pas +N1,96570,Sortie #96570,https://biolit.fr/sorties/sortie-96570/,COURTOIS Tiphaine,https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-16-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-15-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-14-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-10.jpg,07/01/2025,11.0000000,14.0000000,51.0706890000000,2.52211800000000,,dune du perroquet,96577,Observation #96577,https://biolit.fr/observations/observation-96577/,Trisopterus luscus,Tacaud commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-15-scaled.jpg,,TRUE,Ne sais pas +N1,96570,Sortie #96570,https://biolit.fr/sorties/sortie-96570/,COURTOIS Tiphaine,https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-16-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-15-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-14-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-10.jpg,07/01/2025,11.0000000,14.0000000,51.0706890000000,2.52211800000000,,dune du perroquet,96579,Observation #96579,https://biolit.fr/observations/observation-96579/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-14-scaled.jpg,,,Ne sais pas +N1,96570,Sortie #96570,https://biolit.fr/sorties/sortie-96570/,COURTOIS Tiphaine,https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-16-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-15-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-14-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-10.jpg,07/01/2025,11.0000000,14.0000000,51.0706890000000,2.52211800000000,,dune du perroquet,96581,Observation #96581,https://biolit.fr/observations/observation-96581/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-11.jpg,,,Ne sais pas +N1,96570,Sortie #96570,https://biolit.fr/sorties/sortie-96570/,COURTOIS Tiphaine,https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-16-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-15-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-14-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-12.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-11.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-10.jpg,07/01/2025,11.0000000,14.0000000,51.0706890000000,2.52211800000000,,dune du perroquet,96583,Observation #96583,https://biolit.fr/observations/observation-96583/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/71de87be25393e7bc7062a149674d8d6/2025/07/image-10.jpg,,,Ne sais pas +N1,96586,Sortie #96586,https://biolit.fr/sorties/sortie-96586/,Clerc Ségolène,https://biolit.fr/wp-content/uploads/jet-form-builder/164fce063b27ca43338703bc3fbb736d/2025/07/20250701_145910-scaled.jpg,07/01/2025,15.0000000,16.0000000,43.3575420000000,5.29018900000000,AIEJE,"plages de Corbières, Marseille",96587,Observation #96587,https://biolit.fr/observations/observation-96587/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/164fce063b27ca43338703bc3fbb736d/2025/07/20250701_145910-scaled.jpg,,,Ne sais pas +N1,96590,Sortie #96590,https://biolit.fr/sorties/sortie-96590/,Eric Tinguy,https://biolit.fr/wp-content/uploads/jet-form-builder/38b93828d23ad85b3aaa45af11760f61/2025/07/1000015606-scaled.jpg,07/04/2025,11.0:29,11.0:29,46.3425080,-1.4659670,,La terrière,96591,Observation #96591,https://biolit.fr/observations/observation-96591/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/jet-form-builder/38b93828d23ad85b3aaa45af11760f61/2025/07/1000015606-scaled.jpg,,TRUE,Ne sais pas +N1,96597,Sortie #96597,https://biolit.fr/sorties/sortie-96597/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_9925.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0013-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0012-scaled.jpeg,6/30/2025 0:00,23.0:32,23.0000000,43.2701550000000,6.57797800000000,,Port grimaud canal plagette ile des 4 vents,96598,Observation #96598,https://biolit.fr/observations/observation-96598/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0012-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_9925.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0013-scaled.jpeg,,TRUE,Identifiable +N1,96604,Sortie #96604,https://biolit.fr/sorties/sortie-96604/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_9926-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0014-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0017-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0016.jpeg,6/30/2025 0:00,23.0:32,23.0:35,43.2701510000000,6.57797400000000,,Port Grimaud plagette canaux ile des 4 vents,96605,Observation #96605,https://biolit.fr/observations/observation-96605/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_9926-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0014-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0017-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0016.jpeg,,TRUE,Identifiable +N1,96610,Sortie #96610,https://biolit.fr/sorties/sortie-96610/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0022.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0021.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0019.jpeg,6/30/2025 0:00,23.0:26,23.0000000,43.2705930000000,6.57855300000000,,Port grimaud plagette canaux ile des 4 vents (1),96611,Observation #96611,https://biolit.fr/observations/observation-96611/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0022.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0021.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0019.jpeg,,,Identifiable +N1,96616,Sortie #96616,https://biolit.fr/sorties/sortie-96616/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0031.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0030.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0029.jpeg,6/28/2025 0:00,23.0:33,23.0:36,43.2705940000000,6.57854500000000,,Port Grimaud plagette canaux ile des 4 vents (1),96617,Observation #96617,https://biolit.fr/observations/observation-96617/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0031.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0030.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0029.jpeg,,TRUE,Identifiable +N1,96623,Sortie #96623,https://biolit.fr/sorties/sortie-96623/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0034.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0035.jpeg,6/16/2025 0:00,19.0:45,19.0000000,43.2630180000000,6.60200500000000,,Gassin roite de saint tropez après usine de torpilles,96624,Observation #96624,https://biolit.fr/observations/observation-96624/,Sarpa salpa,Saupe,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0034.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0035.jpeg,,,Identifiable +N1,96627,Sortie #96627,https://biolit.fr/sorties/sortie-96627/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0033.jpeg,6/23/2025 0:00,23.0:37,23.0000000,43.2696490000000,6.57972400000000,,Port Grimaud plagette canaux rue de Giscle,96628,Observation #96628,https://biolit.fr/observations/observation-96628/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0033.jpeg,,TRUE,Identifiable +N1,96635,Sortie #96635,https://biolit.fr/sorties/sortie-96635/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0040.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0036.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_1234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_1233.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_1230.jpeg,9/21/2024 0:00,18.0:11,18.0:15,43.2711880000000,6.57912100000000,,Port Grimaud ile verte,96636,Observation #96636,https://biolit.fr/observations/observation-96636/,Theodoxus fluviatilis,Nérite des rivières,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0040.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0036.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_1233.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_1234.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_1230.jpeg,,,Identifiable +N1,96649,Sortie #96649,https://biolit.fr/sorties/sortie-96649/,fxhuet,https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213315_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213317_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213319_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213320_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213326_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213327_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213329_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213330_cr-scaled.jpg,6/21/2025 0:00,8.0000000,9.0000000,48.5964510000000,-4.57057500000000,,Plage de la Baie des Anges - 29870 Landéda,96650,Observation #96650,https://biolit.fr/observations/observation-96650/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213315_cr-scaled.jpg,,,Identifiable +N1,96649,Sortie #96649,https://biolit.fr/sorties/sortie-96649/,fxhuet,https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213315_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213317_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213319_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213320_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213326_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213327_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213329_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213330_cr-scaled.jpg,6/21/2025 0:00,8.0000000,9.0000000,48.5964510000000,-4.57057500000000,,Plage de la Baie des Anges - 29870 Landéda,96652,Observation #96652,https://biolit.fr/observations/observation-96652/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213317_cr-scaled.jpg,,,Identifiable +N1,96649,Sortie #96649,https://biolit.fr/sorties/sortie-96649/,fxhuet,https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213315_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213317_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213319_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213320_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213326_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213327_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213329_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213330_cr-scaled.jpg,6/21/2025 0:00,8.0000000,9.0000000,48.5964510000000,-4.57057500000000,,Plage de la Baie des Anges - 29870 Landéda,96654,Observation #96654,https://biolit.fr/observations/observation-96654/,Ulva compressa,Entéromorphe,,https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213319_cr-scaled.jpg,,,Identifiable +N1,96649,Sortie #96649,https://biolit.fr/sorties/sortie-96649/,fxhuet,https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213315_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213317_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213319_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213320_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213326_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213327_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213329_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213330_cr-scaled.jpg,6/21/2025 0:00,8.0000000,9.0000000,48.5964510000000,-4.57057500000000,,Plage de la Baie des Anges - 29870 Landéda,96656,Observation #96656,https://biolit.fr/observations/observation-96656/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213320_cr-scaled.jpg,,,Identifiable +N1,96649,Sortie #96649,https://biolit.fr/sorties/sortie-96649/,fxhuet,https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213315_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213317_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213319_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213320_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213326_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213327_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213329_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213330_cr-scaled.jpg,6/21/2025 0:00,8.0000000,9.0000000,48.5964510000000,-4.57057500000000,,Plage de la Baie des Anges - 29870 Landéda,96658,Observation #96658,https://biolit.fr/observations/observation-96658/,Littorina fabalis/obtusata,Littorine fabalis/ obstuse,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213329_cr-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f60e72144e9fb7b0ac6685302acc52df/2025/07/20250621-Landeda-Anges-Q1-T6213330_cr-scaled.jpg,,TRUE,Identifiable +N1,96692,Sortie #96692,https://biolit.fr/sorties/sortie-96692/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2025/07/IMG_20250625_105226_099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2025/07/IMG_20250625_105230_112-scaled.jpg,6/25/2025 0:00,9.0000000,10.0000000,43.4313120000000,3.77484400000000,LPO Occitanie (Dt Hérault),Poste de secours,,,,,,,,,, +N1,96696,Sortie #96696,https://biolit.fr/sorties/sortie-96696/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2025/07/IMG_20250625_105226_099-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2025/07/IMG_20250625_105230_112-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2025/07/ponte-seiche-scaled.jpg,6/25/2025 0:00,9.0000000,10.0000000,43.4315480000000,3.77507000000000,LPO Occitanie (Dt Hérault),Poste de secours,96697,Observation #96697,https://biolit.fr/observations/observation-96697/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2025/07/IMG_20250625_105230_112-1-scaled.jpg,,TRUE,Identifiable +N1,96696,Sortie #96696,https://biolit.fr/sorties/sortie-96696/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2025/07/IMG_20250625_105226_099-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2025/07/IMG_20250625_105230_112-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2025/07/ponte-seiche-scaled.jpg,6/25/2025 0:00,9.0000000,10.0000000,43.4315480000000,3.77507000000000,LPO Occitanie (Dt Hérault),Poste de secours,96699,Observation #96699,https://biolit.fr/observations/observation-96699/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2025/07/IMG_20250625_105226_099-1-scaled.jpg,,TRUE,Identifiable +N1,96696,Sortie #96696,https://biolit.fr/sorties/sortie-96696/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2025/07/IMG_20250625_105226_099-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2025/07/IMG_20250625_105230_112-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2025/07/ponte-seiche-scaled.jpg,6/25/2025 0:00,9.0000000,10.0000000,43.4315480000000,3.77507000000000,LPO Occitanie (Dt Hérault),Poste de secours,96701,Observation #96701,https://biolit.fr/observations/observation-96701/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/3e0815970b4b9a2f53f21a809ea519d0/2025/07/ponte-seiche-scaled.jpg,,TRUE,Identifiable +N1,96842,Sortie #96842,https://biolit.fr/sorties/sortie-96842/,Hammoudi Sami,https://biolit.fr/wp-content/uploads/jet-form-builder/5516ea8719876c91640369a8ca40ed8c/2025/07/100_0149-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5516ea8719876c91640369a8ca40ed8c/2025/07/100_0150-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5516ea8719876c91640369a8ca40ed8c/2025/07/100_0152-scaled.jpg,07/07/2025,15.0:34,15.0:54,48.6862090000000,-1.97050600000000,,ROTHENEUF crique ouest de la pointe du christ,96847,Observation #96847,https://biolit.fr/observations/observation-96847/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5516ea8719876c91640369a8ca40ed8c/2025/07/100_0152-scaled.jpg,,,Identifiable +N1,96852,Sortie #96852,https://biolit.fr/sorties/sortie-96852/,Hammoudi Sami,https://biolit.fr/wp-content/uploads/jet-form-builder/5516ea8719876c91640369a8ca40ed8c/2025/07/100_0149-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5516ea8719876c91640369a8ca40ed8c/2025/07/100_0150-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5516ea8719876c91640369a8ca40ed8c/2025/07/100_0152-1-scaled.jpg,07/07/2025,15.0:34,15.0:54,48.6862340000000,-1.97060900000000,,ROTHENEUF crique ouest de la pointe du christ,96853,Observation #96853,https://biolit.fr/observations/observation-96853/,Sargassum muticum,Sargasse japonaise,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5516ea8719876c91640369a8ca40ed8c/2025/07/100_0149-1-scaled.jpg,,,Identifiable +N1,96852,Sortie #96852,https://biolit.fr/sorties/sortie-96852/,Hammoudi Sami,https://biolit.fr/wp-content/uploads/jet-form-builder/5516ea8719876c91640369a8ca40ed8c/2025/07/100_0149-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5516ea8719876c91640369a8ca40ed8c/2025/07/100_0150-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5516ea8719876c91640369a8ca40ed8c/2025/07/100_0152-1-scaled.jpg,07/07/2025,15.0:34,15.0:54,48.6862340000000,-1.97060900000000,,ROTHENEUF crique ouest de la pointe du christ,96855,Observation #96855,https://biolit.fr/observations/observation-96855/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5516ea8719876c91640369a8ca40ed8c/2025/07/100_0150-1-scaled.jpg,,TRUE,Identifiable +N1,96860,Sortie #96860,https://biolit.fr/sorties/sortie-96860/,Hovhannessian Diane,https://biolit.fr/wp-content/uploads/jet-form-builder/c4b5304c6e107a4b697fa50c84dc3e9a/2025/07/Tournepierres.jpg,12/08/2024,16.0000000,16.0000000,49.5050400000000,0.0737290000000000,,Plage du Havre,96861,Observation #96861,https://biolit.fr/observations/observation-96861/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/jet-form-builder/c4b5304c6e107a4b697fa50c84dc3e9a/2025/07/Tournepierres.jpg,,,Identifiable +N1,96864,Sortie #96864,https://biolit.fr/sorties/sortie-96864/,PANDINI Laurent,https://biolit.fr/wp-content/uploads/jet-form-builder/fcbe2625642d6fe3a3b78b22c76304ea/2025/07/Velelle-08.07.2025.jpg,07/08/2025,12.0000000,12.0000000,48.8055740000000,-3.58549100000000,,Ile Grande,96865,Observation #96865,https://biolit.fr/observations/observation-96865/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/fcbe2625642d6fe3a3b78b22c76304ea/2025/07/Velelle-08.07.2025.jpg,,TRUE,Identifiable +N1,96922,Sortie #96922,https://biolit.fr/sorties/sortie-96922/,Groupe Associatif Estuaire,https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_114958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_115432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_115437-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_115803-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_115852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_120034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_120123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_123941-scaled.jpg,5/15/2025 0:00,11.0000000,13.0000000,46.4373030000000,-1.66668400000000,Groupe Associatif Estuaire (Association Estuaire),Anse de la République,96923,Observation #96923,https://biolit.fr/observations/observation-96923/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_114958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_115432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_120123-scaled.jpg,,TRUE,Identifiable +N1,96922,Sortie #96922,https://biolit.fr/sorties/sortie-96922/,Groupe Associatif Estuaire,https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_114958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_115432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_115437-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_115803-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_115852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_120034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_120123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_123941-scaled.jpg,5/15/2025 0:00,11.0000000,13.0000000,46.4373030000000,-1.66668400000000,Groupe Associatif Estuaire (Association Estuaire),Anse de la République,96925,Observation #96925,https://biolit.fr/observations/observation-96925/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_115437-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_115852-scaled.jpg,,TRUE,Identifiable +N1,96922,Sortie #96922,https://biolit.fr/sorties/sortie-96922/,Groupe Associatif Estuaire,https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_114958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_115432-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_115437-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_115803-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_115852-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_120034-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_120123-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_123941-scaled.jpg,5/15/2025 0:00,11.0000000,13.0000000,46.4373030000000,-1.66668400000000,Groupe Associatif Estuaire (Association Estuaire),Anse de la République,96927,Observation #96927,https://biolit.fr/observations/observation-96927/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/867a1e456608e29bb39243b3aff8fdb8/2025/07/IMG_20250515_123941-scaled.jpg,,TRUE,Identifiable +N1,96934,Sortie #96934,https://biolit.fr/sorties/sortie-96934/,LAMETRIE Bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0425-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0426-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0427-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0428-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0429-scaled.jpeg,07/11/2025,17.0:34,18.000004,42.0869560000000,8.70821000000000,,À Punta,96935,Observation #96935,https://biolit.fr/observations/observation-96935/,Carpobrotus acinaciformis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0429-scaled.jpeg,,TRUE,Identifiable +N1,96934,Sortie #96934,https://biolit.fr/sorties/sortie-96934/,LAMETRIE Bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0425-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0426-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0427-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0428-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0429-scaled.jpeg,07/11/2025,17.0:34,18.000004,42.0869560000000,8.70821000000000,,À Punta,96937,Observation #96937,https://biolit.fr/observations/observation-96937/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0425-scaled.jpeg,,,Ne sais pas +N1,96934,Sortie #96934,https://biolit.fr/sorties/sortie-96934/,LAMETRIE Bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0425-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0426-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0427-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0428-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0429-scaled.jpeg,07/11/2025,17.0:34,18.000004,42.0869560000000,8.70821000000000,,À Punta,96939,Observation #96939,https://biolit.fr/observations/observation-96939/,Helichrysum italicum,Immortelle d'Italie,,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0427-scaled.jpeg,,,Identifiable +N1,96934,Sortie #96934,https://biolit.fr/sorties/sortie-96934/,LAMETRIE Bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0425-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0426-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0427-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0428-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0429-scaled.jpeg,07/11/2025,17.0:34,18.000004,42.0869560000000,8.70821000000000,,À Punta,96941,Observation #96941,https://biolit.fr/observations/observation-96941/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0428-scaled.jpeg,,,Identifiable +N1,96945,Sortie #96945,https://biolit.fr/sorties/sortie-96945/,LAMETRIE Bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0430-scaled.jpeg,07/11/2025,18.0000000,18.0:25,42.0866590000000,8.70803800000000,,À Punta,96946,Observation #96946,https://biolit.fr/observations/observation-96946/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0430-scaled.jpeg,,,Identifiable +N1,96955,Sortie #96955,https://biolit.fr/sorties/sortie-96955/,LAMETRIE Bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0570-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0567-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0562-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0561-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0560-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0559-scaled.jpeg,7/14/2025 0:00,10.0000000,11.0:35,42.1090470000000,8.70123600000000,,Sagone plagette sampiero,96956,Observation #96956,https://biolit.fr/observations/observation-96956/,Helichrysum italicum,Immortelle d'Italie,,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0570-scaled.jpeg,,,Identifiable +N1,96955,Sortie #96955,https://biolit.fr/sorties/sortie-96955/,LAMETRIE Bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0570-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0567-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0562-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0561-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0560-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0559-scaled.jpeg,7/14/2025 0:00,10.0000000,11.0:35,42.1090470000000,8.70123600000000,,Sagone plagette sampiero,96958,Observation #96958,https://biolit.fr/observations/observation-96958/,Carpobrotus acinaciformis,Griffes de sorcière,,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0561-scaled.jpeg,,,Identifiable +N1,96955,Sortie #96955,https://biolit.fr/sorties/sortie-96955/,LAMETRIE Bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0570-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0567-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0562-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0561-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0560-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0559-scaled.jpeg,7/14/2025 0:00,10.0000000,11.0:35,42.1090470000000,8.70123600000000,,Sagone plagette sampiero,96960,Observation #96960,https://biolit.fr/observations/observation-96960/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0559-scaled.jpeg,,TRUE,Identifiable +N1,96955,Sortie #96955,https://biolit.fr/sorties/sortie-96955/,LAMETRIE Bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0570-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0567-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0562-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0561-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0560-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0559-scaled.jpeg,7/14/2025 0:00,10.0000000,11.0:35,42.1090470000000,8.70123600000000,,Sagone plagette sampiero,96973,Observation #96973,https://biolit.fr/observations/observation-96973/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0560-scaled.jpeg,,,Ne sais pas +N1,96955,Sortie #96955,https://biolit.fr/sorties/sortie-96955/,LAMETRIE Bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0570-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0567-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0562-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0561-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0560-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0559-scaled.jpeg,7/14/2025 0:00,10.0000000,11.0:35,42.1090470000000,8.70123600000000,,Sagone plagette sampiero,96982,Observation #96982,https://biolit.fr/observations/observation-96982/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0567-scaled.jpeg,,,Identifiable +N1,96955,Sortie #96955,https://biolit.fr/sorties/sortie-96955/,LAMETRIE Bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0570-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0567-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0562-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0561-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0560-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0559-scaled.jpeg,7/14/2025 0:00,10.0000000,11.0:35,42.1090470000000,8.70123600000000,,Sagone plagette sampiero,96987,Observation #96987,https://biolit.fr/observations/observation-96987/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/99a598b98666aee007e772170121b473/2025/07/IMG_0562-scaled.jpeg,,,Ne sais pas +N1,98239,Sortie #98239,https://biolit.fr/sorties/sortie-98239/,MONELL CHRISTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155246423-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155341843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155454040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155554591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155611080_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160049705_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160055535_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160108219_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160127297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160152333_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160207245_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160354420-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160407566-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160726810_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160745736_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160832974-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160921164-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161430631_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161912635_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161914784_HDR-scaled.jpg,6/13/2025 0:00,15.0000000,17.0000000,43.1094470000000,3.12391500000000,,Plage des Chalets à Gruissan (11),98240,Observation #98240,https://biolit.fr/observations/observation-98240/,Larus michahellis,Goéland leucophée,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155246423-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155341843-scaled.jpg,,,Identifiable +N1,98239,Sortie #98239,https://biolit.fr/sorties/sortie-98239/,MONELL CHRISTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155246423-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155341843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155454040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155554591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155611080_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160049705_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160055535_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160108219_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160127297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160152333_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160207245_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160354420-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160407566-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160726810_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160745736_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160832974-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160921164-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161430631_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161912635_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161914784_HDR-scaled.jpg,6/13/2025 0:00,15.0000000,17.0000000,43.1094470000000,3.12391500000000,,Plage des Chalets à Gruissan (11),98242,Observation #98242,https://biolit.fr/observations/observation-98242/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160055535_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160726810_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160407566-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160049705_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155554591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160108219_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160127297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160745736_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161914784_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161912635_HDR-scaled.jpg,,,Ne sais pas +N1,98239,Sortie #98239,https://biolit.fr/sorties/sortie-98239/,MONELL CHRISTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155246423-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155341843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155454040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155554591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155611080_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160049705_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160055535_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160108219_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160127297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160152333_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160207245_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160354420-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160407566-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160726810_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160745736_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160832974-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160921164-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161430631_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161912635_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161914784_HDR-scaled.jpg,6/13/2025 0:00,15.0000000,17.0000000,43.1094470000000,3.12391500000000,,Plage des Chalets à Gruissan (11),98244,Observation #98244,https://biolit.fr/observations/observation-98244/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160152333_HDR-scaled.jpg,,,Identifiable +N1,98239,Sortie #98239,https://biolit.fr/sorties/sortie-98239/,MONELL CHRISTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155246423-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155341843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155454040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155554591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155611080_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160049705_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160055535_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160108219_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160127297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160152333_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160207245_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160354420-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160407566-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160726810_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160745736_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160832974-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160921164-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161430631_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161912635_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161914784_HDR-scaled.jpg,6/13/2025 0:00,15.0000000,17.0000000,43.1094470000000,3.12391500000000,,Plage des Chalets à Gruissan (11),98246,Observation #98246,https://biolit.fr/observations/observation-98246/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160207245_HDR-scaled.jpg,,,Identifiable +N1,98239,Sortie #98239,https://biolit.fr/sorties/sortie-98239/,MONELL CHRISTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155246423-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155341843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155454040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155554591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155611080_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160049705_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160055535_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160108219_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160127297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160152333_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160207245_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160354420-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160407566-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160726810_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160745736_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160832974-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160921164-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161430631_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161912635_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161914784_HDR-scaled.jpg,6/13/2025 0:00,15.0000000,17.0000000,43.1094470000000,3.12391500000000,,Plage des Chalets à Gruissan (11),98248,Observation #98248,https://biolit.fr/observations/observation-98248/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160921164-scaled.jpg,,TRUE,Identifiable +N1,98239,Sortie #98239,https://biolit.fr/sorties/sortie-98239/,MONELL CHRISTINE,https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155246423-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155341843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155454040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155554591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155611080_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160049705_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160055535_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160108219_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160127297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160152333_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160207245_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160354420-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160407566-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160726810_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160745736_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160832974-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160921164-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161430631_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161912635_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161914784_HDR-scaled.jpg,6/13/2025 0:00,15.0000000,17.0000000,43.1094470000000,3.12391500000000,,Plage des Chalets à Gruissan (11),98250,Observation #98250,https://biolit.fr/observations/observation-98250/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160745736_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160832974-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161914784_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_161912635_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160726810_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160407566-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160049705_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160055535_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160354420-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160127297_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_160108219_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155454040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155554591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f18e4fa7827f4ebf4e0ef9184ba38e19/2025/07/IMG_20250613_155611080_HDR-scaled.jpg,,,Ne sais pas +N1,98601,Sortie #98601,https://biolit.fr/sorties/sortie-98601/,CHAPELOT PIERRE,https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/07/IMG_0458.png,7/17/2025 0:00,15.0000000,18.0000000,43.5522210000000,7.14445000000000,,"Antibes, la garoupe",,,,,,,,,, +N1,98605,Sortie #98605,https://biolit.fr/sorties/sortie-98605/,CHAPELOT PIERRE,https://biolit.fr/wp-content/uploads/jet-form-builder/0e041e195ce53f8ae6500dde181f63d0/2025/07/IMG_0462.png,7/17/2025 0:00,15.0000000,18.0000000,43.5522210000000,7.14445000000000,,"Antibes, la garoupe",,,,,,,,,, +N1,98657,Sortie #98657,https://biolit.fr/sorties/sortie-98657/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0475.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0471-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0473-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0420-scaled.jpeg,7/21/2025 0:00,0.0:12,0.0:17,43.2696580000000,6.5797120000000,,Port grimaud canaux plagette rue de la Giscle,98658,Observation #98658,https://biolit.fr/observations/observation-98658/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0475.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0471-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0473-scaled.jpeg,,TRUE,Identifiable +N1,98663,Sortie #98663,https://biolit.fr/sorties/sortie-98663/,LACOURT Loreane,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250715_133023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250715_134658-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250715_134712-scaled.jpg,7/15/2025 0:00,11.0000000,12.0000000,46.0678290000000,-1.09332200000000,,Chatelaillon Plage,98664,Observation #98664,https://biolit.fr/observations/observation-98664/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250715_134658-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250715_133023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250715_134712-scaled.jpg,,TRUE,Identifiable +N1,98663,Sortie #98663,https://biolit.fr/sorties/sortie-98663/,LACOURT Loreane,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250715_133023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250715_134658-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250715_134712-scaled.jpg,7/15/2025 0:00,11.0000000,12.0000000,46.0678290000000,-1.09332200000000,,Chatelaillon Plage,98666,Observation #98666,https://biolit.fr/observations/observation-98666/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250715_133023-scaled.jpg,,,Identifiable +N1,98663,Sortie #98663,https://biolit.fr/sorties/sortie-98663/,LACOURT Loreane,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250715_133023-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250715_134658-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250715_134712-scaled.jpg,7/15/2025 0:00,11.0000000,12.0000000,46.0678290000000,-1.09332200000000,,Chatelaillon Plage,98668,Observation #98668,https://biolit.fr/observations/observation-98668/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250715_134712-scaled.jpg,,,Identifiable +N1,98671,Sortie #98671,https://biolit.fr/sorties/sortie-98671/,LACOURT Loreane,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250715_135108-scaled.jpg,7/15/2025 0:00,11.0:42,12.0:42,46.0730240000000,-1.0936440000000,,Chatelaillon Plage,98672,Observation #98672,https://biolit.fr/observations/observation-98672/,Larus marinus,Goéland marin,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250715_135108-scaled.jpg,,,Identifiable +N1,98675,Sortie #98675,https://biolit.fr/sorties/sortie-98675/,LACOURT Loreane,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250716_111716-scaled.jpg,7/16/2025 0:00,9.0:45,11.0:45,46.0173100000000,-1.17673600000000,,Île d'Aix,98676,Observation #98676,https://biolit.fr/observations/observation-98676/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250716_111716-scaled.jpg,,,Ne sais pas +N1,98679,Sortie #98679,https://biolit.fr/sorties/sortie-98679/,LACOURT Loreane,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250716_115929-scaled.jpg,7/16/2025 0:00,12.0:55,13.0:56,46.0238690000000,-1.1725840000000,,Île d'Aix,98680,Observation #98680,https://biolit.fr/observations/observation-98680/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250716_115929-scaled.jpg,,,Ne sais pas +N1,98685,Sortie #98685,https://biolit.fr/sorties/sortie-98685/,LACOURT Loreane,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250717_093742-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250717_093955-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250717_100653-scaled.jpg,7/17/2025 0:00,9.0000000,12.0000000,46.1432330000000,-1.30939500000000,,Île de Ré,98686,Observation #98686,https://biolit.fr/observations/observation-98686/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250717_093742-scaled.jpg,,,Identifiable +N1,98685,Sortie #98685,https://biolit.fr/sorties/sortie-98685/,LACOURT Loreane,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250717_093742-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250717_093955-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250717_100653-scaled.jpg,7/17/2025 0:00,9.0000000,12.0000000,46.1432330000000,-1.30939500000000,,Île de Ré,98688,Observation #98688,https://biolit.fr/observations/observation-98688/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250717_093955-scaled.jpg,,,Identifiable +N1,98685,Sortie #98685,https://biolit.fr/sorties/sortie-98685/,LACOURT Loreane,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250717_093742-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250717_093955-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250717_100653-scaled.jpg,7/17/2025 0:00,9.0000000,12.0000000,46.1432330000000,-1.30939500000000,,Île de Ré,98690,Observation #98690,https://biolit.fr/observations/observation-98690/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ed17641769d70cb5d3e7cea054f8f46c/2025/07/IMG_20250717_100653-scaled.jpg,,,Ne sais pas +N1,98887,Sortie #98887,https://biolit.fr/sorties/sortie-98887/,Pottiez Fannie,https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010615.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010616.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010631.jpg,7/21/2025 0:00,16.0000000,16.0:44,49.8383640,0.860228,,Saint Valery en Caux,98888,Observation #98888,https://biolit.fr/observations/observation-98888/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010615.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010616.jpg,,TRUE,Ne sais pas +N1,98887,Sortie #98887,https://biolit.fr/sorties/sortie-98887/,Pottiez Fannie,https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010615.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010616.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010631.jpg,7/21/2025 0:00,16.0000000,16.0:44,49.8383640,0.860228,,Saint Valery en Caux,98890,Observation #98890,https://biolit.fr/observations/observation-98890/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010626-scaled.jpg,,TRUE,Ne sais pas +N1,98887,Sortie #98887,https://biolit.fr/sorties/sortie-98887/,Pottiez Fannie,https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010615.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010616.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010631.jpg,7/21/2025 0:00,16.0000000,16.0:44,49.8383640,0.860228,,Saint Valery en Caux,98892,Observation #98892,https://biolit.fr/observations/observation-98892/,Hemigrapsus sanguineus,Grapse sanguin,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010616.jpg,,TRUE,Ne sais pas +N1,98887,Sortie #98887,https://biolit.fr/sorties/sortie-98887/,Pottiez Fannie,https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010615.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010616.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010631.jpg,7/21/2025 0:00,16.0000000,16.0:44,49.8383640,0.860228,,Saint Valery en Caux,98894,Observation #98894,https://biolit.fr/observations/observation-98894/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010614-scaled.jpg,,FALSE,Ne sais pas +N1,98887,Sortie #98887,https://biolit.fr/sorties/sortie-98887/,Pottiez Fannie,https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010615.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010616.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010631.jpg,7/21/2025 0:00,16.0000000,16.0:44,49.8383640,0.860228,,Saint Valery en Caux,98896,Observation #98896,https://biolit.fr/observations/observation-98896/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010620-scaled.jpg,,TRUE,Ne sais pas +N1,98887,Sortie #98887,https://biolit.fr/sorties/sortie-98887/,Pottiez Fannie,https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010615.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010616.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010614-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010620-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010631.jpg,7/21/2025 0:00,16.0000000,16.0:44,49.8383640,0.860228,,Saint Valery en Caux,98898,Observation #98898,https://biolit.fr/observations/observation-98898/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/4c9471c543e72e05fce1ea1a80301126/2025/07/1000010631.jpg,,FALSE,Ne sais pas +N1,98901,Sortie #98901,https://biolit.fr/sorties/sortie-98901/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0595-scaled.jpeg,7/22/2025 0:00,0.0:22,1.0:26,43.2705660000000,6.57860600000000,,Port Grimaud plagette ile des 4 vents,98902,Observation #98902,https://biolit.fr/observations/observation-98902/,Cottus gobio,Chabot commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0595-scaled.jpeg,,,Identifiable +N1,98905,Sortie #98905,https://biolit.fr/sorties/sortie-98905/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0594.jpeg,7/22/2025 0:00,1.0:35,1.0:39,43.2705940000000,6.57859000000000,,Port Grimaud plagette ile des 4 vents,98906,Observation #98906,https://biolit.fr/observations/observation-98906/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0594.jpeg,,TRUE,Identifiable +N1,99295,Sortie #99295,https://biolit.fr/sorties/sortie-99295/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0634.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0633.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0632.jpeg,7/22/2025 0:00,19.0:28,19.0:34,43.2696500000000,6.57975000000000,,Port Grimaud canaux plagette rue de la giscle,99296,Observation #99296,https://biolit.fr/observations/observation-99296/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0633.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0632.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0634.jpeg,,,Identifiable +N1,99300,Sortie #99300,https://biolit.fr/sorties/sortie-99300/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0674-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0673-scaled.jpeg,7/22/2025 0:00,0.0:47,0.0:49,43.2696540000000,6.57971800000000,,Port Grimaud canaux plagette rue de la Giscle,99301,Observation #99301,https://biolit.fr/observations/observation-99301/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0674-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0673-scaled.jpeg,,TRUE,Identifiable +N1,99307,Sortie #99307,https://biolit.fr/sorties/sortie-99307/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0680.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0679-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0676.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0675-scaled.jpeg,7/22/2025 0:00,0.0:49,0.0:51,43.2696600000000,6.57972700000000,,Port Grimaud canaux plagette rue de la Giscle,99308,Observation #99308,https://biolit.fr/observations/observation-99308/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0680.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0679-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0676.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0675-scaled.jpeg,,TRUE,Identifiable +N1,99313,Sortie #99313,https://biolit.fr/sorties/sortie-99313/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0646-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0644-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0643-scaled.jpg,7/22/2025 0:00,22.0:56,23.0000000,43.2696670000000,6.57975400000000,,Port Grimaud canaux plagette rue de la Giscle,99314,Observation #99314,https://biolit.fr/observations/observation-99314/,Eriphia verrucosa,Crabe verruqueux,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0646-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0644-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0643-scaled.jpg,,TRUE,Identifiable +N1,99321,Sortie #99321,https://biolit.fr/sorties/sortie-99321/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0684.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0682.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0681.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0684-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0682-1.jpeg,7/22/2025 0:00,22.0:59,23.000004,43.2696630000000,6.57970800000000,,Port Grimaud canaux plagette rue de la Giscle,99322,Observation #99322,https://biolit.fr/observations/observation-99322/,Palaemon elegans,Petite crevette rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0684.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0682.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/07/IMG_0681.jpeg,,,Identifiable +N1,100279,Sortie #100279,https://biolit.fr/sorties/sortie-100279/,Poupel Marie christine,https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1012582514112484.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1297885168654567.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_662769980157616.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_724242360496917.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1699888110667998.jpeg,7/26/2025 0:00,19.0:15,19.0:35,49.738698,0.290739,,Vaucottes commune de Vattetot sur mer,100280,Observation #100280,https://biolit.fr/observations/observation-100280/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_662769980157616.jpeg,,TRUE,Identifiable +N1,100279,Sortie #100279,https://biolit.fr/sorties/sortie-100279/,Poupel Marie christine,https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1012582514112484.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1297885168654567.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_662769980157616.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_724242360496917.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1699888110667998.jpeg,7/26/2025 0:00,19.0:15,19.0:35,49.738698,0.290739,,Vaucottes commune de Vattetot sur mer,100282,Observation #100282,https://biolit.fr/observations/observation-100282/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1699888110667998.jpeg,,TRUE,Identifiable +N1,100279,Sortie #100279,https://biolit.fr/sorties/sortie-100279/,Poupel Marie christine,https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1012582514112484.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1297885168654567.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_662769980157616.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_724242360496917.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1699888110667998.jpeg,7/26/2025 0:00,19.0:15,19.0:35,49.738698,0.290739,,Vaucottes commune de Vattetot sur mer,100284,Observation #100284,https://biolit.fr/observations/observation-100284/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_724242360496917.jpeg,,,Ne sais pas +N1,100279,Sortie #100279,https://biolit.fr/sorties/sortie-100279/,Poupel Marie christine,https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1012582514112484.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1297885168654567.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_662769980157616.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_724242360496917.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1699888110667998.jpeg,7/26/2025 0:00,19.0:15,19.0:35,49.738698,0.290739,,Vaucottes commune de Vattetot sur mer,100286,Observation #100286,https://biolit.fr/observations/observation-100286/,Fucus serratus,Fucus denté,,https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1012582514112484.jpeg,,,Identifiable +N1,100279,Sortie #100279,https://biolit.fr/sorties/sortie-100279/,Poupel Marie christine,https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1012582514112484.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1297885168654567.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_662769980157616.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_724242360496917.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1699888110667998.jpeg,7/26/2025 0:00,19.0:15,19.0:35,49.738698,0.290739,,Vaucottes commune de Vattetot sur mer,100288,Observation #100288,https://biolit.fr/observations/observation-100288/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/07/received_1297885168654567.jpeg,,,Ne sais pas +N1,100307,Sortie #100307,https://biolit.fr/sorties/sortie-100307/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103942-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103945-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_105816-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110153-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110542-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111339-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112342-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112618-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112935-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_113413_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_114328-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_115353-scaled.jpg,12/30/2024 0:00,11.0000000,12.0000000,43.2138760000000,5.33737600000000,Planète Mer,Port des Croisette,,,,,,,,,, +N1,100322,Sortie #100322,https://biolit.fr/sorties/sortie-100322/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103942-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103945-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_105816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110153-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110531-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110542-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111013-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111339-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112342-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112618-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112935-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_113413_-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_114328-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_115353-1-scaled.jpg,12/30/2024 0:00,11.0000000,12.0000000,43.2138920000000,5.33749500000000,Planète Mer,Port des Croisettes,100323,Observation #100323,https://biolit.fr/observations/observation-100323/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103942-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103945-1-scaled.jpg,,,Identifiable +N1,100322,Sortie #100322,https://biolit.fr/sorties/sortie-100322/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103942-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103945-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_105816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110153-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110531-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110542-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111013-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111339-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112342-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112618-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112935-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_113413_-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_114328-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_115353-1-scaled.jpg,12/30/2024 0:00,11.0000000,12.0000000,43.2138920000000,5.33749500000000,Planète Mer,Port des Croisettes,100325,Observation #100325,https://biolit.fr/observations/observation-100325/,Striarca lactea,Striarca laiteuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_105816-1-scaled.jpg,,,Identifiable +N1,100322,Sortie #100322,https://biolit.fr/sorties/sortie-100322/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103942-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103945-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_105816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110153-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110531-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110542-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111013-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111339-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112342-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112618-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112935-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_113413_-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_114328-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_115353-1-scaled.jpg,12/30/2024 0:00,11.0000000,12.0000000,43.2138920000000,5.33749500000000,Planète Mer,Port des Croisettes,100327,Observation #100327,https://biolit.fr/observations/observation-100327/,Jujubinus exasperatus,Troque pygmée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110153-1-scaled.jpg,,,Identifiable +N1,100322,Sortie #100322,https://biolit.fr/sorties/sortie-100322/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103942-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103945-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_105816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110153-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110531-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110542-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111013-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111339-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112342-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112618-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112935-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_113413_-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_114328-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_115353-1-scaled.jpg,12/30/2024 0:00,11.0000000,12.0000000,43.2138920000000,5.33749500000000,Planète Mer,Port des Croisettes,100329,Observation #100329,https://biolit.fr/observations/observation-100329/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110531-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110542-1-scaled.jpg,,,Ne sais pas +N1,100322,Sortie #100322,https://biolit.fr/sorties/sortie-100322/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103942-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103945-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_105816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110153-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110531-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110542-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111013-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111339-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112342-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112618-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112935-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_113413_-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_114328-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_115353-1-scaled.jpg,12/30/2024 0:00,11.0000000,12.0000000,43.2138920000000,5.33749500000000,Planète Mer,Port des Croisettes,100331,Observation #100331,https://biolit.fr/observations/observation-100331/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111013-1-scaled.jpg,,,Identifiable +N1,100322,Sortie #100322,https://biolit.fr/sorties/sortie-100322/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103942-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103945-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_105816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110153-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110531-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110542-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111013-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111339-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112342-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112618-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112935-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_113413_-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_114328-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_115353-1-scaled.jpg,12/30/2024 0:00,11.0000000,12.0000000,43.2138920000000,5.33749500000000,Planète Mer,Port des Croisettes,100333,Observation #100333,https://biolit.fr/observations/observation-100333/,Patella rustica,Patelle ponctuée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111339-1-scaled.jpg,,,Identifiable +N1,100322,Sortie #100322,https://biolit.fr/sorties/sortie-100322/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103942-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103945-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_105816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110153-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110531-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110542-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111013-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111339-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112342-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112618-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112935-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_113413_-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_114328-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_115353-1-scaled.jpg,12/30/2024 0:00,11.0000000,12.0000000,43.2138920000000,5.33749500000000,Planète Mer,Port des Croisettes,100335,Observation #100335,https://biolit.fr/observations/observation-100335/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112342-1-scaled.jpg,,,Identifiable +N1,100322,Sortie #100322,https://biolit.fr/sorties/sortie-100322/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103942-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103945-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_105816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110153-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110531-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110542-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111013-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111339-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112342-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112618-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112935-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_113413_-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_114328-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_115353-1-scaled.jpg,12/30/2024 0:00,11.0000000,12.0000000,43.2138920000000,5.33749500000000,Planète Mer,Port des Croisettes,100337,Observation #100337,https://biolit.fr/observations/observation-100337/,Calliostoma laugieri,Calliostome de Laugier,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112935-1-scaled.jpg,,,Identifiable +N1,100322,Sortie #100322,https://biolit.fr/sorties/sortie-100322/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103942-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103945-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_105816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110153-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110531-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110542-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111013-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111339-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112342-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112618-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112935-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_113413_-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_114328-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_115353-1-scaled.jpg,12/30/2024 0:00,11.0000000,12.0000000,43.2138920000000,5.33749500000000,Planète Mer,Port des Croisettes,100339,Observation #100339,https://biolit.fr/observations/observation-100339/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_113413_-1-scaled.jpg,,,Ne sais pas +N1,100322,Sortie #100322,https://biolit.fr/sorties/sortie-100322/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103942-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103945-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_105816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110153-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110531-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110542-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111013-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111339-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112342-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112618-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112935-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_113413_-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_114328-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_115353-1-scaled.jpg,12/30/2024 0:00,11.0000000,12.0000000,43.2138920000000,5.33749500000000,Planète Mer,Port des Croisettes,100341,Observation #100341,https://biolit.fr/observations/observation-100341/,Pallenis maritima,Astérolide maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_114328-1-scaled.jpg,,,Identifiable +N1,100322,Sortie #100322,https://biolit.fr/sorties/sortie-100322/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103942-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103945-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_105816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110153-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110531-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110542-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111013-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111339-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112342-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112618-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112935-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_113413_-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_114328-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_115353-1-scaled.jpg,12/30/2024 0:00,11.0000000,12.0000000,43.2138920000000,5.33749500000000,Planète Mer,Port des Croisettes,100343,Observation #100343,https://biolit.fr/observations/observation-100343/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_115353-1-scaled.jpg,,,Ne sais pas +N1,100322,Sortie #100322,https://biolit.fr/sorties/sortie-100322/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103942-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_103945-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_105816-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110153-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110531-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_110542-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111013-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_111339-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112342-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112618-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112935-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_113413_-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_114328-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_115353-1-scaled.jpg,12/30/2024 0:00,11.0000000,12.0000000,43.2138920000000,5.33749500000000,Planète Mer,Port des Croisettes,100345,Observation #100345,https://biolit.fr/observations/observation-100345/,Tricolia pullus,Phasianelle minuscule,,https://biolit.fr/wp-content/uploads/jet-form-builder/a093c6f124e6a8714c612dae65b3c93f/2025/07/IMG_20241230_112618-1-scaled.jpg,,,Identifiable +N1,100379,Sortie #100379,https://biolit.fr/sorties/sortie-100379/,riviere romain,https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_162701-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_161122-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_161116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160825-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160810-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160530-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160505-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160000-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_155840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_155625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_155524-scaled.jpg,7/28/2025 0:00,13.0000000,16.0:45,48.6612970,-4.2941020,,Brignognan,100380,Observation #100380,https://biolit.fr/observations/observation-100380/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_162701-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_161116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_161122-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160825-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160530-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160810-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160505-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160000-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_155625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_155840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_155524-scaled.jpg,,,Ne sais pas +N1,100379,Sortie #100379,https://biolit.fr/sorties/sortie-100379/,riviere romain,https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_162701-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_161122-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_161116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160825-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160810-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160530-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160505-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160000-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_155840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_155625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_155524-scaled.jpg,7/28/2025 0:00,13.0000000,16.0:45,48.6612970,-4.2941020,,Brignognan,100382,Observation #100382,https://biolit.fr/observations/observation-100382/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163822-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163813-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163350-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163344-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_163030-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_162701-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_161116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_161122-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160951-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160825-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160530-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160810-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160505-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160516-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160000-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_160220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_155625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_155840-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/a26832612e070fb2a29d2e4d5ac40871/2025/07/IMG_20250728_155524-scaled.jpg,,,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100425,Observation #100425,https://biolit.fr/observations/observation-100425/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg,,TRUE,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100427,Observation #100427,https://biolit.fr/observations/observation-100427/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg,,TRUE,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100429,Observation #100429,https://biolit.fr/observations/observation-100429/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg,,TRUE,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100431,Observation #100431,https://biolit.fr/observations/observation-100431/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg,,TRUE,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100433,Observation #100433,https://biolit.fr/observations/observation-100433/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg,,TRUE,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100435,Observation #100435,https://biolit.fr/observations/observation-100435/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg,,TRUE,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100437,Observation #100437,https://biolit.fr/observations/observation-100437/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg,,TRUE,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100439,Observation #100439,https://biolit.fr/observations/observation-100439/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg,,,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100441,Observation #100441,https://biolit.fr/observations/observation-100441/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg,,TRUE,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100443,Observation #100443,https://biolit.fr/observations/observation-100443/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg,,,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100445,Observation #100445,https://biolit.fr/observations/observation-100445/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg,,,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100447,Observation #100447,https://biolit.fr/observations/observation-100447/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg,,,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100449,Observation #100449,https://biolit.fr/observations/observation-100449/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg,,,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100451,Observation #100451,https://biolit.fr/observations/observation-100451/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg,,,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100453,Observation #100453,https://biolit.fr/observations/observation-100453/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg,,,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100455,Observation #100455,https://biolit.fr/observations/observation-100455/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg,,,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100457,Observation #100457,https://biolit.fr/observations/observation-100457/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg,,,Ne sais pas +N1,100424,Sortie #100424,https://biolit.fr/sorties/sortie-100424/,LECLERCQ Cédric,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7825-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7826-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7828-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7829-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7835-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7840-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7847-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7854-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7849-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7857-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7861-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7864-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7866-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7881-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7883-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,7/30/2025 0:00,15.0000000,17.0000000,47.5296400000000,-3.141099000000,,"Saint Pierre Quiberon, Portivy",100459,Observation #100459,https://biolit.fr/observations/observation-100459/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/9f4f6aa214f00a7ba700df8cfd2ba88c/2025/07/IMG_7885-scaled.jpeg,,,Ne sais pas +N1,100473,Sortie #100473,https://biolit.fr/sorties/sortie-100473/,VANDEN BERGHE Franck,https://biolit.fr/wp-content/uploads/jet-form-builder/866dd9372aa5bbd6a2141643f4c07cfc/2025/08/IMG_1618-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/866dd9372aa5bbd6a2141643f4c07cfc/2025/08/IMG_1616-scaled.jpeg,7/31/2025 0:00,18.0000000,18.0000000,43.3317410000000,5.218506000000,,Calanque de Mejean (Ensues La Redonne),100474,Observation #100474,https://biolit.fr/observations/observation-100474/,Callinectes sapidus,Crabe bleu américain,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/866dd9372aa5bbd6a2141643f4c07cfc/2025/08/IMG_1618-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/866dd9372aa5bbd6a2141643f4c07cfc/2025/08/IMG_1616-scaled.jpeg,,TRUE,Identifiable +N1,100473,Sortie #100473,https://biolit.fr/sorties/sortie-100473/,VANDEN BERGHE Franck,https://biolit.fr/wp-content/uploads/jet-form-builder/866dd9372aa5bbd6a2141643f4c07cfc/2025/08/IMG_1618-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/866dd9372aa5bbd6a2141643f4c07cfc/2025/08/IMG_1616-scaled.jpeg,7/31/2025 0:00,18.0000000,18.0000000,43.3317410000000,5.218506000000,,Calanque de Mejean (Ensues La Redonne),100478,Observation #100478,https://biolit.fr/observations/observation-100478/,Callinectes sapidus,Crabe bleu américain,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/866dd9372aa5bbd6a2141643f4c07cfc/2025/08/IMG_1618-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/866dd9372aa5bbd6a2141643f4c07cfc/2025/08/IMG_1616-scaled.jpeg,,TRUE,Identifiable +N1,100488,Sortie #100488,https://biolit.fr/sorties/sortie-100488/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4296-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4298-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4302-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4307-scaled.jpeg,08/02/2025,17.0000000,18.0000000,48.5656820000000,-2.7621850000000,,St Brieuc,100489,Observation #100489,https://biolit.fr/observations/observation-100489/,Pomatoschistus minutus,Gobie de sable buhotte,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4294-scaled.jpeg,,,Identifiable +N1,100488,Sortie #100488,https://biolit.fr/sorties/sortie-100488/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4296-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4298-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4302-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4307-scaled.jpeg,08/02/2025,17.0000000,18.0000000,48.5656820000000,-2.7621850000000,,St Brieuc,100491,Observation #100491,https://biolit.fr/observations/observation-100491/,Pomatoschistus minutus,Gobie de sable buhotte,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4298-scaled.jpeg,,,Identifiable +N1,100488,Sortie #100488,https://biolit.fr/sorties/sortie-100488/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4296-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4298-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4302-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4307-scaled.jpeg,08/02/2025,17.0000000,18.0000000,48.5656820000000,-2.7621850000000,,St Brieuc,100493,Observation #100493,https://biolit.fr/observations/observation-100493/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4303-scaled.jpeg,,TRUE,Identifiable +N1,100488,Sortie #100488,https://biolit.fr/sorties/sortie-100488/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4296-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4298-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4302-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4307-scaled.jpeg,08/02/2025,17.0000000,18.0000000,48.5656820000000,-2.7621850000000,,St Brieuc,100495,Observation #100495,https://biolit.fr/observations/observation-100495/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4302-scaled.jpeg,,TRUE,Identifiable +N1,100488,Sortie #100488,https://biolit.fr/sorties/sortie-100488/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4296-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4298-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4302-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4307-scaled.jpeg,08/02/2025,17.0000000,18.0000000,48.5656820000000,-2.7621850000000,,St Brieuc,100497,Observation #100497,https://biolit.fr/observations/observation-100497/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4296-scaled.jpeg,,,Identifiable +N1,100488,Sortie #100488,https://biolit.fr/sorties/sortie-100488/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4296-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4298-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4302-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4307-scaled.jpeg,08/02/2025,17.0000000,18.0000000,48.5656820000000,-2.7621850000000,,St Brieuc,100499,Observation #100499,https://biolit.fr/observations/observation-100499/,Ligia oceanica,Ligie océanique,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4306-scaled.jpeg,,,Identifiable +N1,100488,Sortie #100488,https://biolit.fr/sorties/sortie-100488/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4294-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4296-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4298-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4302-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4303-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4306-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4307-scaled.jpeg,08/02/2025,17.0000000,18.0000000,48.5656820000000,-2.7621850000000,,St Brieuc,100501,Observation #100501,https://biolit.fr/observations/observation-100501/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4307-scaled.jpeg,,,Identifiable +N1,100511,Sortie #100511,https://biolit.fr/sorties/sortie-100511/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4313-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4314-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4321-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4324-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4326-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4327-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4330-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4331-scaled.jpeg,08/03/2025,10.0000000,12.0000000,48.5325100000000,-2.71053300000000,,St Brieuc,,,,,,,,,, +N1,100520,Sortie #100520,https://biolit.fr/sorties/sortie-100520/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4313-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4314-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4321-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4324-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4326-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4327-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4330-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4331-1-scaled.jpeg,08/03/2025,10.0000000,12.0000000,48.5314870000000,-2.71139100000000,,St Brieuc,100521,Observation #100521,https://biolit.fr/observations/observation-100521/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4314-1-scaled.jpeg,,TRUE,Identifiable +N1,100520,Sortie #100520,https://biolit.fr/sorties/sortie-100520/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4313-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4314-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4321-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4324-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4326-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4327-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4330-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4331-1-scaled.jpeg,08/03/2025,10.0000000,12.0000000,48.5314870000000,-2.71139100000000,,St Brieuc,100523,Observation #100523,https://biolit.fr/observations/observation-100523/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4313-1-scaled.jpeg,,,Identifiable +N1,100520,Sortie #100520,https://biolit.fr/sorties/sortie-100520/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4313-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4314-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4321-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4324-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4326-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4327-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4330-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4331-1-scaled.jpeg,08/03/2025,10.0000000,12.0000000,48.5314870000000,-2.71139100000000,,St Brieuc,100525,Observation #100525,https://biolit.fr/observations/observation-100525/,Chelon labrosus,Mulet lippu,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4321-1-scaled.jpeg,,,Identifiable +N1,100520,Sortie #100520,https://biolit.fr/sorties/sortie-100520/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4313-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4314-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4321-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4324-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4326-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4327-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4330-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4331-1-scaled.jpeg,08/03/2025,10.0000000,12.0000000,48.5314870000000,-2.71139100000000,,St Brieuc,100527,Observation #100527,https://biolit.fr/observations/observation-100527/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4327-1-scaled.jpeg,,TRUE,Identifiable +N1,100520,Sortie #100520,https://biolit.fr/sorties/sortie-100520/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4313-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4314-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4321-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4324-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4326-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4327-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4330-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4331-1-scaled.jpeg,08/03/2025,10.0000000,12.0000000,48.5314870000000,-2.71139100000000,,St Brieuc,100529,Observation #100529,https://biolit.fr/observations/observation-100529/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4324-1-scaled.jpeg,,TRUE,Identifiable +N1,100520,Sortie #100520,https://biolit.fr/sorties/sortie-100520/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4313-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4314-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4321-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4324-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4326-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4327-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4330-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4331-1-scaled.jpeg,08/03/2025,10.0000000,12.0000000,48.5314870000000,-2.71139100000000,,St Brieuc,100531,Observation #100531,https://biolit.fr/observations/observation-100531/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4330-1-scaled.jpeg,,TRUE,Identifiable +N1,100520,Sortie #100520,https://biolit.fr/sorties/sortie-100520/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4313-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4314-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4321-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4324-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4326-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4327-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4330-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4331-1-scaled.jpeg,08/03/2025,10.0000000,12.0000000,48.5314870000000,-2.71139100000000,,St Brieuc,100533,Observation #100533,https://biolit.fr/observations/observation-100533/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4331-1-scaled.jpeg,,TRUE,Identifiable +N1,100597,Sortie #100597,https://biolit.fr/sorties/sortie-100597/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1336.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1335.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1291-scaled.jpeg,08/03/2025,19.0:53,20.0:36,43.2625890000000,6.60333600000000,,Gassin Malribes,100598,Observation #100598,https://biolit.fr/observations/observation-100598/,Phalacrocorax aristotelis,Cormoran huppé,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1336.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1335.jpeg,,,Identifiable +N1,100603,Sortie #100603,https://biolit.fr/sorties/sortie-100603/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_0904-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_0894-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_0963-scaled.jpg,7/30/2025 0:00,18.0:48,19.0000000,43.2705970000000,6.57854700000000,,Port Grimaud canaux plagette 4 vents,100604,Observation #100604,https://biolit.fr/observations/observation-100604/,Cygnus olor,Cygne tuberculé,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_0904-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_0894-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_0963-scaled.jpg,,,Identifiable +N1,100609,Sortie #100609,https://biolit.fr/sorties/sortie-100609/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1352.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1350.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1349.jpeg,08/03/2025,23.0:38,23.0:41,43.2696570000000,6.57973000000000,,Port Grimaud canaux plagette rue de la Giscle,100610,Observation #100610,https://biolit.fr/observations/observation-100610/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1352.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1350.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1349.jpeg,,TRUE,Identifiable +N1,100614,Sortie #100614,https://biolit.fr/sorties/sortie-100614/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1359.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1357.jpeg,08/03/2025,23.0:39,23.0:42,43.2696590000000,6.57972200000000,,Port Grimaud canaux plagette Giscle,100615,Observation #100615,https://biolit.fr/observations/observation-100615/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1359.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1357.jpeg,,TRUE,Identifiable +N1,100622,Sortie #100622,https://biolit.fr/sorties/sortie-100622/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1356.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1354.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1353-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1351.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1351-1.jpeg,08/03/2025,23.0:37,23.0:43,43.2696510000000,6.57971900000000,,Port Grimaud canaux plagette Giscle,100623,Observation #100623,https://biolit.fr/observations/observation-100623/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1356.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1354.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1351.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1353-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1351-1.jpeg,,,Identifiable +N1,100627,Sortie #100627,https://biolit.fr/sorties/sortie-100627/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1369-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1368.jpeg,08/02/2025,0.0:23,0.0:28,43.2701540000000,6.57797300000000,,Port Grimaud canaux plagette 4 vents (2),100628,Observation #100628,https://biolit.fr/observations/observation-100628/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1369-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_1368.jpeg,,,Ne sais pas +N1,100855,Sortie #100855,https://biolit.fr/sorties/sortie-100855/,ALVES CHRISTOPHE,https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/00-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/05-scaled.jpg,7/31/2025 0:00,8.0000000,17.0000000,47.4021590000000,-2.46246100000000,,mesquer,100856,Observation #100856,https://biolit.fr/observations/observation-100856/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/00-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/05-scaled.jpg,,,Ne sais pas +N1,100855,Sortie #100855,https://biolit.fr/sorties/sortie-100855/,ALVES CHRISTOPHE,https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/00-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/05-scaled.jpg,7/31/2025 0:00,8.0000000,17.0000000,47.4021590000000,-2.46246100000000,,mesquer,100858,Observation #100858,https://biolit.fr/observations/observation-100858/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/00-scaled.jpg,,,Ne sais pas +N1,100855,Sortie #100855,https://biolit.fr/sorties/sortie-100855/,ALVES CHRISTOPHE,https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/00-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/05-scaled.jpg,7/31/2025 0:00,8.0000000,17.0000000,47.4021590000000,-2.46246100000000,,mesquer,100860,Observation #100860,https://biolit.fr/observations/observation-100860/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/01-scaled.jpg,,,Ne sais pas +N1,100855,Sortie #100855,https://biolit.fr/sorties/sortie-100855/,ALVES CHRISTOPHE,https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/00-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/05-scaled.jpg,7/31/2025 0:00,8.0000000,17.0000000,47.4021590000000,-2.46246100000000,,mesquer,100863,Observation #100863,https://biolit.fr/observations/observation-100863/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/05-scaled.jpg,,,Ne sais pas +N1,100855,Sortie #100855,https://biolit.fr/sorties/sortie-100855/,ALVES CHRISTOPHE,https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/00-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/05-scaled.jpg,7/31/2025 0:00,8.0000000,17.0000000,47.4021590000000,-2.46246100000000,,mesquer,100865,Observation #100865,https://biolit.fr/observations/observation-100865/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/03-scaled.jpg,,,Ne sais pas +N1,100855,Sortie #100855,https://biolit.fr/sorties/sortie-100855/,ALVES CHRISTOPHE,https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/00-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/01-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/02-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/03-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/05-scaled.jpg,7/31/2025 0:00,8.0000000,17.0000000,47.4021590000000,-2.46246100000000,,mesquer,100867,Observation #100867,https://biolit.fr/observations/observation-100867/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/0d786ac2bb6c93cd1a1b1bbf73797f1f/2025/08/05-scaled.jpg,,TRUE,Ne sais pas +N1,101042,Sortie #101042,https://biolit.fr/sorties/sortie-101042/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4340-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4341-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4343-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4346-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4348-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4349-scaled.jpeg,08/04/2025,13.0000000,17.0000000,48.6164320000000,-2.48106300000000,,Erquy,101043,Observation #101043,https://biolit.fr/observations/observation-101043/,Aurelia aurita,Aurélie,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4340-scaled.jpeg,,,Identifiable +N1,101042,Sortie #101042,https://biolit.fr/sorties/sortie-101042/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4340-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4341-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4343-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4346-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4348-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4349-scaled.jpeg,08/04/2025,13.0000000,17.0000000,48.6164320000000,-2.48106300000000,,Erquy,101045,Observation #101045,https://biolit.fr/observations/observation-101045/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4343-scaled.jpeg,,,Identifiable +N1,101042,Sortie #101042,https://biolit.fr/sorties/sortie-101042/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4340-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4341-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4343-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4346-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4348-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4349-scaled.jpeg,08/04/2025,13.0000000,17.0000000,48.6164320000000,-2.48106300000000,,Erquy,101047,Observation #101047,https://biolit.fr/observations/observation-101047/,Pomatoschistus minutus,Gobie de sable buhotte,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4346-scaled.jpeg,,,Identifiable +N1,101042,Sortie #101042,https://biolit.fr/sorties/sortie-101042/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4340-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4341-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4343-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4346-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4348-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4349-scaled.jpeg,08/04/2025,13.0000000,17.0000000,48.6164320000000,-2.48106300000000,,Erquy,101049,Observation #101049,https://biolit.fr/observations/observation-101049/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4349-scaled.jpeg,,TRUE,Identifiable +N1,101042,Sortie #101042,https://biolit.fr/sorties/sortie-101042/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4340-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4341-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4343-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4346-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4348-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4349-scaled.jpeg,08/04/2025,13.0000000,17.0000000,48.6164320000000,-2.48106300000000,,Erquy,101051,Observation #101051,https://biolit.fr/observations/observation-101051/,Haliotis tuberculata tuberculata,Ormeau,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4348-scaled.jpeg,,TRUE,Identifiable +N1,101042,Sortie #101042,https://biolit.fr/sorties/sortie-101042/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4340-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4341-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4343-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4346-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4348-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4349-scaled.jpeg,08/04/2025,13.0000000,17.0000000,48.6164320000000,-2.48106300000000,,Erquy,101053,Observation #101053,https://biolit.fr/observations/observation-101053/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4341-scaled.jpeg,,TRUE,Identifiable +N1,101130,Sortie #101130,https://biolit.fr/sorties/sortie-101130/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4356-scaled.jpeg,08/05/2025,10.0000000,11.0000000,48.6266670000000,-2.4674090000000,,Erquy,101131,Observation #101131,https://biolit.fr/observations/observation-101131/,Pagurus bernhardus,Bernard-l'ermite commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4356-scaled.jpeg,,,Identifiable +N1,101552,Sortie #101552,https://biolit.fr/sorties/sortie-101552/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_9450-scaled.jpeg,6/21/2025 0:00,13.0:15,13.0000000,42.9903110000000,5.73932600000000,,Large de Sanary et Cap Sicié,,,,,,,,,, +N1,101556,Sortie #101556,https://biolit.fr/sorties/sortie-101556/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_9450-1-scaled.jpeg,6/21/2025 0:00,13.0:15,13.0000000,43.0257280000000,5.82481400000000,,Large de Sanary - Cap Sicié,101557,Observation #101557,https://biolit.fr/observations/observation-101557/,Caretta caretta,Tortue caouanne,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_9450-1-scaled.jpeg,,TRUE,Identifiable +N1,101985,Sortie #101985,https://biolit.fr/sorties/sortie-101985/,LPO Occitanie - Aude,https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2025/08/IMG20250514142517-scaled.jpg,5/14/2025 0:00,14.0000000,16.0000000,43.1512210000000,3.16088700000000,LPO Occitanie (Dt Aude),Narbonne Plage,101988,Observation #101988,https://biolit.fr/observations/observation-101988/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2025/08/IMG20250514142517-scaled.jpg,,TRUE,Identifiable +N1,102001,Sortie #102001,https://biolit.fr/sorties/sortie-102001/,LPO Occitanie - Aude,https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2025/08/IMG20250618153244-scaled.jpg,6/18/2025 0:00,14.0000000,15.0000000,43.0836640000000,3.05700200000000,LPO Occitanie (Dt Aude),"Île Saint-Martin, étang de l'Ayrolle à Gruissan",102002,Observation #102002,https://biolit.fr/observations/observation-102002/,Carcinus aestuarii,Crabe vert de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/a119008983b0e2495a32d2e5508d3e33/2025/08/IMG20250618153244-scaled.jpg,,,Identifiable +N1,102086,Sortie #102086,https://biolit.fr/sorties/sortie-102086/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/DSC_1705.jpeg,6/21/2025 0:00,12.0:57,13.0000000,43.0496640000000,5.80374200000000,,Large Sanary Cap Sicié,102087,Observation #102087,https://biolit.fr/observations/observation-102087/,Delphinus delphis,Dauphin commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/DSC_1705.jpeg,,TRUE,Identifiable +N1,102090,Sortie #102090,https://biolit.fr/sorties/sortie-102090/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_9437.jpeg,6/21/2025 0:00,13.000005,13.0000000,43.042541000000,5.79297100000000,,Large de Sanary Cap Sicié,102091,Observation #102091,https://biolit.fr/observations/observation-102091/,Stenella coeruleoalba,Dauphin bleu et blanc,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_9437.jpeg,,TRUE,Identifiable +N1,102094,Sortie #102094,https://biolit.fr/sorties/sortie-102094/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/DSC_1530.jpeg,6/21/2025 0:00,13.0000000,13.0:34,43.0456150000000,5.79597500000000,,Large Sanary Cop Sicié,102095,Observation #102095,https://biolit.fr/observations/observation-102095/,Stenella coeruleoalba,Dauphin bleu et blanc,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/DSC_1530.jpeg,,TRUE,Identifiable +N1,102199,Sortie #102199,https://biolit.fr/sorties/sortie-102199/,Siaudeau Magali,https://biolit.fr/wp-content/uploads/jet-form-builder/253cade5ab62c509c58bbdf73aa78ed6/2025/08/IMG_8790-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/253cade5ab62c509c58bbdf73aa78ed6/2025/08/IMG_8791-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/253cade5ab62c509c58bbdf73aa78ed6/2025/08/IMG_8792-scaled.jpeg,08/09/2025,13.0000000,13.0000000,49.5145350000000,-1.28445600000000,,Plage de Quinéville,102200,Observation #102200,https://biolit.fr/observations/observation-102200/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/jet-form-builder/253cade5ab62c509c58bbdf73aa78ed6/2025/08/IMG_8790-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/253cade5ab62c509c58bbdf73aa78ed6/2025/08/IMG_8792-scaled.jpeg,,TRUE,Ne sais pas +N1,102210,Sortie #102210,https://biolit.fr/sorties/sortie-102210/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4403-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4405-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4407-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4418-scaled.jpeg,08/10/2025,10.0000000,12.0000000,48.5829660000000,-2.5661550000000,,Pléneuf-Val-André,102211,Observation #102211,https://biolit.fr/observations/observation-102211/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4403-scaled.jpeg,,TRUE,Identifiable +N1,102210,Sortie #102210,https://biolit.fr/sorties/sortie-102210/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4403-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4405-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4407-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4418-scaled.jpeg,08/10/2025,10.0000000,12.0000000,48.5829660000000,-2.5661550000000,,Pléneuf-Val-André,102213,Observation #102213,https://biolit.fr/observations/observation-102213/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4410-scaled.jpeg,,TRUE,Identifiable +N1,102210,Sortie #102210,https://biolit.fr/sorties/sortie-102210/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4403-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4405-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4407-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4418-scaled.jpeg,08/10/2025,10.0000000,12.0000000,48.5829660000000,-2.5661550000000,,Pléneuf-Val-André,102215,Observation #102215,https://biolit.fr/observations/observation-102215/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4414-scaled.jpeg,,,Identifiable +N1,102210,Sortie #102210,https://biolit.fr/sorties/sortie-102210/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4403-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4405-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4407-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4418-scaled.jpeg,08/10/2025,10.0000000,12.0000000,48.5829660000000,-2.5661550000000,,Pléneuf-Val-André,102217,Observation #102217,https://biolit.fr/observations/observation-102217/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4408-scaled.jpeg,,TRUE,Identifiable +N1,102210,Sortie #102210,https://biolit.fr/sorties/sortie-102210/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4403-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4405-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4407-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4418-scaled.jpeg,08/10/2025,10.0000000,12.0000000,48.5829660000000,-2.5661550000000,,Pléneuf-Val-André,102219,Observation #102219,https://biolit.fr/observations/observation-102219/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4411-scaled.jpeg,,TRUE,Identifiable +N1,102210,Sortie #102210,https://biolit.fr/sorties/sortie-102210/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4403-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4405-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4407-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4418-scaled.jpeg,08/10/2025,10.0000000,12.0000000,48.5829660000000,-2.5661550000000,,Pléneuf-Val-André,102221,Observation #102221,https://biolit.fr/observations/observation-102221/,Chelon labrosus,Mulet lippu,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4407-scaled.jpeg,,,Identifiable +N1,102210,Sortie #102210,https://biolit.fr/sorties/sortie-102210/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4403-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4405-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4407-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4418-scaled.jpeg,08/10/2025,10.0000000,12.0000000,48.5829660000000,-2.5661550000000,,Pléneuf-Val-André,102223,Observation #102223,https://biolit.fr/observations/observation-102223/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4405-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4418-scaled.jpeg,,,Ne sais pas +N1,102210,Sortie #102210,https://biolit.fr/sorties/sortie-102210/,Champigny Léo,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4403-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4405-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4407-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4418-scaled.jpeg,08/10/2025,10.0000000,12.0000000,48.5829660000000,-2.5661550000000,,Pléneuf-Val-André,102225,Observation #102225,https://biolit.fr/observations/observation-102225/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/66f30530c020551fc9f67b84210bc45e/2025/08/IMG_4418-scaled.jpeg,,,Ne sais pas +N1,102375,Sortie #102375,https://biolit.fr/sorties/sortie-102375/,SACHER William,https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200851-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200847-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200845-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200842.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200841.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200837.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200835.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200852.jpg,07/01/2025,10.0000000,15.0000000,51.0827850000000,2.52523500000000,,Bray Dunes,102376,Observation #102376,https://biolit.fr/observations/observation-102376/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200837.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200851-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200848-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200852.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200847-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200845-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200842.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2a78a4c657d55ff5060fec7d1117671/2025/08/P1200841.jpg,,,Ne sais pas +N1,102384,Sortie #102384,https://biolit.fr/sorties/sortie-102384/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_2030-scaled.jpeg,08/12/2025,23.0:54,23.0:59,43.2696590000000,6.57971800000000,,Port Grimaud plagette rue de la Giscle,102385,Observation #102385,https://biolit.fr/observations/observation-102385/,Salaria fluviatilis,Blennie fluviatile,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_2030-scaled.jpeg,,,Identifiable +N1,102391,Sortie #102391,https://biolit.fr/sorties/sortie-102391/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_2013-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_2014.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_2017-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_2016-scaled.jpeg,08/12/2025,23.0:53,23.0:58,43.2696480000000,6.57972200000000,,Port Grimaud plagette rue de la Giscle,102392,Observation #102392,https://biolit.fr/observations/observation-102392/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_2013-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_2014.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_2017-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/627cb20f3aaea6a4d9d6536f6a55ade3/2025/08/IMG_2016-scaled.jpeg,,TRUE,Identifiable +N1,102398,Sortie #102398,https://biolit.fr/sorties/sortie-102398/,Cardona Ariane,https://biolit.fr/wp-content/uploads/jet-form-builder/cc9cd2c2e3d259e01a8a33d2088e0f98/2025/08/IMG_5569-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc9cd2c2e3d259e01a8a33d2088e0f98/2025/08/IMG_5577-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc9cd2c2e3d259e01a8a33d2088e0f98/2025/08/IMG_5576-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc9cd2c2e3d259e01a8a33d2088e0f98/2025/08/IMG_5583-1-scaled.jpeg,08/12/2025,14.0000000,15.0:15,43.0795620,6.1229380,,Site archéologique d’Olbia sentier sous marin,102399,Observation #102399,https://biolit.fr/observations/observation-102399/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/cc9cd2c2e3d259e01a8a33d2088e0f98/2025/08/IMG_5583-1-scaled.jpeg,,TRUE,Ne sais pas +N1,102398,Sortie #102398,https://biolit.fr/sorties/sortie-102398/,Cardona Ariane,https://biolit.fr/wp-content/uploads/jet-form-builder/cc9cd2c2e3d259e01a8a33d2088e0f98/2025/08/IMG_5569-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc9cd2c2e3d259e01a8a33d2088e0f98/2025/08/IMG_5577-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc9cd2c2e3d259e01a8a33d2088e0f98/2025/08/IMG_5576-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc9cd2c2e3d259e01a8a33d2088e0f98/2025/08/IMG_5583-1-scaled.jpeg,08/12/2025,14.0000000,15.0:15,43.0795620,6.1229380,,Site archéologique d’Olbia sentier sous marin,103261,Observation #103261,https://biolit.fr/observations/observation-103261/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cc9cd2c2e3d259e01a8a33d2088e0f98/2025/08/IMG_5569-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc9cd2c2e3d259e01a8a33d2088e0f98/2025/08/IMG_5577-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc9cd2c2e3d259e01a8a33d2088e0f98/2025/08/IMG_5576-1-scaled.jpeg,,,Ne sais pas +N1,102407,Sortie #102407,https://biolit.fr/sorties/sortie-102407/,Cardona Ariane,https://biolit.fr/wp-content/uploads/jet-form-builder/cc9cd2c2e3d259e01a8a33d2088e0f98/2025/08/IMG_5529-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc9cd2c2e3d259e01a8a33d2088e0f98/2025/08/IMG_5528-2-scaled.jpeg,08/11/2025,12.0000000,14.0000000,43.0083190,6.3837400,,Port Cros route du Manoir,102408,Observation #102408,https://biolit.fr/observations/observation-102408/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cc9cd2c2e3d259e01a8a33d2088e0f98/2025/08/IMG_5529-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cc9cd2c2e3d259e01a8a33d2088e0f98/2025/08/IMG_5528-2-scaled.jpeg,,,Ne sais pas +N1,102414,Sortie #102414,https://biolit.fr/sorties/sortie-102414/,DHULESIA Olivier,https://biolit.fr/wp-content/uploads/jet-form-builder/3ce65d81b38d59af242fa2c8a55049d3/2025/08/IMG_20250814_195718-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3ce65d81b38d59af242fa2c8a55049d3/2025/08/IMG_20250814_195713-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3ce65d81b38d59af242fa2c8a55049d3/2025/08/IMG_20250814_195643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/3ce65d81b38d59af242fa2c8a55049d3/2025/08/IMG_20250814_195444-scaled.jpg,8/14/2025 0:00,17.0:25,20.0:26,43.4963050000000,-1.54237700000000,,Anglet,,,,,,,,,, +N1,102438,Sortie #102438,https://biolit.fr/sorties/sortie-102438/,BONAMY-DOUDARD Nelly,https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Avocette_elegante-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Courlis_Corlieu-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_Cendre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_cendre_2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Spatules_Blanches_2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Cisticole_des_joncs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Soude_Commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/oenothera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Queue-de-lievre-ou-Lagure-ovale-1-scaled.jpg,8/13/2025 0:00,13.0000000,13.0000000,47.49432,2.47954,CPIE Loire Oceane Environnement,MEN AR MOR PENESTIN,102439,Observation #102439,https://biolit.fr/observations/observation-102439/,Recurvirostra avosetta,Avocette élégante,,https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Avocette_elegante-1.jpg,,FALSE,Identifiable +N1,102438,Sortie #102438,https://biolit.fr/sorties/sortie-102438/,BONAMY-DOUDARD Nelly,https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Avocette_elegante-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Courlis_Corlieu-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_Cendre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_cendre_2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Spatules_Blanches_2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Cisticole_des_joncs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Soude_Commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/oenothera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Queue-de-lievre-ou-Lagure-ovale-1-scaled.jpg,8/13/2025 0:00,13.0000000,13.0000000,47.49432,2.47954,CPIE Loire Oceane Environnement,MEN AR MOR PENESTIN,102441,Observation #102441,https://biolit.fr/observations/observation-102441/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Courlis_Corlieu-1.jpg,,FALSE,Identifiable +N1,102438,Sortie #102438,https://biolit.fr/sorties/sortie-102438/,BONAMY-DOUDARD Nelly,https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Avocette_elegante-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Courlis_Corlieu-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_Cendre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_cendre_2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Spatules_Blanches_2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Cisticole_des_joncs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Soude_Commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/oenothera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Queue-de-lievre-ou-Lagure-ovale-1-scaled.jpg,8/13/2025 0:00,13.0000000,13.0000000,47.49432,2.47954,CPIE Loire Oceane Environnement,MEN AR MOR PENESTIN,102443,Observation #102443,https://biolit.fr/observations/observation-102443/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_Cendre-1.jpg,,FALSE,Identifiable +N1,102438,Sortie #102438,https://biolit.fr/sorties/sortie-102438/,BONAMY-DOUDARD Nelly,https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Avocette_elegante-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Courlis_Corlieu-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_Cendre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_cendre_2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Spatules_Blanches_2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Cisticole_des_joncs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Soude_Commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/oenothera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Queue-de-lievre-ou-Lagure-ovale-1-scaled.jpg,8/13/2025 0:00,13.0000000,13.0000000,47.49432,2.47954,CPIE Loire Oceane Environnement,MEN AR MOR PENESTIN,102445,Observation #102445,https://biolit.fr/observations/observation-102445/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Spatules_Blanches_2-1-scaled.jpg,,FALSE,Identifiable +N1,102438,Sortie #102438,https://biolit.fr/sorties/sortie-102438/,BONAMY-DOUDARD Nelly,https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Avocette_elegante-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Courlis_Corlieu-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_Cendre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_cendre_2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Spatules_Blanches_2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Cisticole_des_joncs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Soude_Commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/oenothera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Queue-de-lievre-ou-Lagure-ovale-1-scaled.jpg,8/13/2025 0:00,13.0000000,13.0000000,47.49432,2.47954,CPIE Loire Oceane Environnement,MEN AR MOR PENESTIN,102447,Observation #102447,https://biolit.fr/observations/observation-102447/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Cisticole_des_joncs-1-scaled.jpg,,FALSE,Identifiable +N1,102438,Sortie #102438,https://biolit.fr/sorties/sortie-102438/,BONAMY-DOUDARD Nelly,https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Avocette_elegante-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Courlis_Corlieu-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_Cendre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_cendre_2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Spatules_Blanches_2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Cisticole_des_joncs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Soude_Commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/oenothera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Queue-de-lievre-ou-Lagure-ovale-1-scaled.jpg,8/13/2025 0:00,13.0000000,13.0000000,47.49432,2.47954,CPIE Loire Oceane Environnement,MEN AR MOR PENESTIN,102449,Observation #102449,https://biolit.fr/observations/observation-102449/,Suaeda maritima,Soude maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-1.jpg,,FALSE,Identifiable +N1,102438,Sortie #102438,https://biolit.fr/sorties/sortie-102438/,BONAMY-DOUDARD Nelly,https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Avocette_elegante-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Courlis_Corlieu-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_Cendre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_cendre_2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Spatules_Blanches_2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Cisticole_des_joncs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Soude_Commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/oenothera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Queue-de-lievre-ou-Lagure-ovale-1-scaled.jpg,8/13/2025 0:00,13.0000000,13.0000000,47.49432,2.47954,CPIE Loire Oceane Environnement,MEN AR MOR PENESTIN,102451,Observation #102451,https://biolit.fr/observations/observation-102451/,Lagurus ovatus,Queue de lièvre,,https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Queue-de-lievre-ou-Lagure-ovale-1-scaled.jpg,,TRUE,Identifiable +N1,102438,Sortie #102438,https://biolit.fr/sorties/sortie-102438/,BONAMY-DOUDARD Nelly,https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Avocette_elegante-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Courlis_Corlieu-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_Cendre-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Heron_cendre_2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Spatules_Blanches_2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Cisticole_des_joncs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Soude_Commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/oenothera-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Plante_Soude_Commune-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/Queue-de-lievre-ou-Lagure-ovale-1-scaled.jpg,8/13/2025 0:00,13.0000000,13.0000000,47.49432,2.47954,CPIE Loire Oceane Environnement,MEN AR MOR PENESTIN,102453,Observation #102453,https://biolit.fr/observations/observation-102453/,Oenothera glazioviana,Onagre à sépales rouges,,https://biolit.fr/wp-content/uploads/jet-form-builder/04b2ad91c05aa757b93c96046dde7acf/2025/08/oenothera-1-scaled.jpg,,FALSE,Identifiable +N1,102456,Sortie #102456,https://biolit.fr/sorties/sortie-102456/,DHULESIA Olivier,https://biolit.fr/wp-content/uploads/jet-form-builder/3ce65d81b38d59af242fa2c8a55049d3/2025/08/IMG_20250814_195718-1-scaled.jpg,8/16/2025 0:00,13.000001,16.000001,43.5000400000000,-1.54306400000000,,Anglet,102457,Observation #102457,https://biolit.fr/observations/observation-102457/,Larus michahellis,Goéland leucophée,,https://biolit.fr/wp-content/uploads/jet-form-builder/3ce65d81b38d59af242fa2c8a55049d3/2025/08/IMG_20250814_195718-1-scaled.jpg,,TRUE,Ne sais pas +N1,102460,Sortie #102460,https://biolit.fr/sorties/sortie-102460/,DHULESIA Olivier,https://biolit.fr/wp-content/uploads/jet-form-builder/3ce65d81b38d59af242fa2c8a55049d3/2025/08/IMG_20250814_195713-1-scaled.jpg,8/15/2025 0:00,14.000003,16.000003,43.499044000000,-1.54375100000000,,Anglet,102461,Observation #102461,https://biolit.fr/observations/observation-102461/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/3ce65d81b38d59af242fa2c8a55049d3/2025/08/IMG_20250814_195713-1-scaled.jpg,,,Ne sais pas +N1,102481,Sortie #102481,https://biolit.fr/sorties/sortie-102481/,Frédérique Houdbert,https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/Image-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/Image.jpg,08/10/2025,18.0000000,18.000005,47.8646170000000,-4.08339000000000,,Bénodet (mer blanche),102482,Observation #102482,https://biolit.fr/observations/observation-102482/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/Image-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/Image.jpg,,,Ne sais pas +N1,102481,Sortie #102481,https://biolit.fr/sorties/sortie-102481/,Frédérique Houdbert,https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/Image-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/Image.jpg,08/10/2025,18.0000000,18.000005,47.8646170000000,-4.08339000000000,,Bénodet (mer blanche),102484,Observation #102484,https://biolit.fr/observations/observation-102484/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/Image.jpg,,,Ne sais pas +N1,102492,Sortie #102492,https://biolit.fr/sorties/sortie-102492/,Frédérique Houdbert,https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1250-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1251-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1254-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1255-scaled.jpg,08/05/2025,15.0000000,15.0000000,48.2804020000000,-4.59387300000000,,Camaret-sur-mer,102493,Observation #102493,https://biolit.fr/observations/observation-102493/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1250-scaled.jpg,,,Ne sais pas +N1,102492,Sortie #102492,https://biolit.fr/sorties/sortie-102492/,Frédérique Houdbert,https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1250-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1251-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1254-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1255-scaled.jpg,08/05/2025,15.0000000,15.0000000,48.2804020000000,-4.59387300000000,,Camaret-sur-mer,102495,Observation #102495,https://biolit.fr/observations/observation-102495/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1251-scaled.jpg,,,Ne sais pas +N1,102492,Sortie #102492,https://biolit.fr/sorties/sortie-102492/,Frédérique Houdbert,https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1250-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1251-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1254-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1255-scaled.jpg,08/05/2025,15.0000000,15.0000000,48.2804020000000,-4.59387300000000,,Camaret-sur-mer,102497,Observation #102497,https://biolit.fr/observations/observation-102497/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1252-scaled.jpg,,,Ne sais pas +N1,102492,Sortie #102492,https://biolit.fr/sorties/sortie-102492/,Frédérique Houdbert,https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1250-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1251-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1254-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1255-scaled.jpg,08/05/2025,15.0000000,15.0000000,48.2804020000000,-4.59387300000000,,Camaret-sur-mer,102499,Observation #102499,https://biolit.fr/observations/observation-102499/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1253-scaled.jpg,,TRUE,Ne sais pas +N1,102492,Sortie #102492,https://biolit.fr/sorties/sortie-102492/,Frédérique Houdbert,https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1250-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1251-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1254-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1255-scaled.jpg,08/05/2025,15.0000000,15.0000000,48.2804020000000,-4.59387300000000,,Camaret-sur-mer,102501,Observation #102501,https://biolit.fr/observations/observation-102501/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1254-scaled.jpg,,,Ne sais pas +N1,102492,Sortie #102492,https://biolit.fr/sorties/sortie-102492/,Frédérique Houdbert,https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1250-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1251-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1254-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1255-scaled.jpg,08/05/2025,15.0000000,15.0000000,48.2804020000000,-4.59387300000000,,Camaret-sur-mer,102503,Observation #102503,https://biolit.fr/observations/observation-102503/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/e087b71de5bd1f0f2b897af748e9b2f1/2025/08/IMG_1255-scaled.jpg,,,Ne sais pas +N1,102509,Sortie #102509,https://biolit.fr/sorties/sortie-102509/,Poupel Marie christine,https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/08/1000003782-2.jpg,8/17/2025 0:00,12.0000000,12.0:45,49.44259,0.183,,Yport,102510,Observation #102510,https://biolit.fr/observations/observation-102510/,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/95199f29cd1adc3eda9f561e6327a5fb/2025/08/1000003782-2.jpg,,TRUE,Identifiable +N1,102518,Sortie #102518,https://biolit.fr/sorties/sortie-102518/,Auroire Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/b49bd926831a4f300960f9233dd9956b/2025/08/Almanarre-OK-scaled.jpg,8/15/2025 0:00,17.0000000,20.0000000,43.0789550000000,6.12333300000000,,"Plage de l'Almanarre, Hyères",102519,Observation #102519,https://biolit.fr/observations/observation-102519/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/b49bd926831a4f300960f9233dd9956b/2025/08/Almanarre-OK-scaled.jpg,,,Ne sais pas +N1,102528,Sortie #102528,https://biolit.fr/sorties/sortie-102528/,CarpeDiem,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013642-scaled.jpg,08/08/2025,20.0000000,20.0:55,42.9629310000000,9.34774200000000,,Centuri0,102529,Observation #102529,https://biolit.fr/observations/observation-102529/,Stramonita haemastoma,Ponte de bouche de sang,,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013631-scaled.jpg,,TRUE,Identifiable +N1,102528,Sortie #102528,https://biolit.fr/sorties/sortie-102528/,CarpeDiem,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013642-scaled.jpg,08/08/2025,20.0000000,20.0:55,42.9629310000000,9.34774200000000,,Centuri0,102564,Observation #102564,https://biolit.fr/observations/observation-102564/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013638-scaled.jpg,,TRUE,Identifiable +N1,102528,Sortie #102528,https://biolit.fr/sorties/sortie-102528/,CarpeDiem,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013642-scaled.jpg,08/08/2025,20.0000000,20.0:55,42.9629310000000,9.34774200000000,,Centuri0,102566,Observation #102566,https://biolit.fr/observations/observation-102566/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013634-scaled.jpg,,TRUE,Identifiable +N1,102528,Sortie #102528,https://biolit.fr/sorties/sortie-102528/,CarpeDiem,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013642-scaled.jpg,08/08/2025,20.0000000,20.0:55,42.9629310000000,9.34774200000000,,Centuri0,102570,Observation #102570,https://biolit.fr/observations/observation-102570/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013639-scaled.jpg,,TRUE,Ne sais pas +N1,102528,Sortie #102528,https://biolit.fr/sorties/sortie-102528/,CarpeDiem,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013631-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013633-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013638-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013639-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013642-scaled.jpg,08/08/2025,20.0000000,20.0:55,42.9629310000000,9.34774200000000,,Centuri0,103214,Observation #103214,https://biolit.fr/observations/observation-103214/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013642-scaled.jpg,,,Ne sais pas +N1,102532,Sortie #102532,https://biolit.fr/sorties/sortie-102532/,CarpeDiem,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013632-1-scaled.jpg,08/08/2025,20.0000000,20.0:55,42.9629910000000,9.34772400000000,,Centori,102533,Observation #102533,https://biolit.fr/observations/observation-102533/,Hexaplex trunculus,Ponte de rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013632-1-scaled.jpg,,TRUE,Identifiable +N1,102536,Sortie #102536,https://biolit.fr/sorties/sortie-102536/,CarpeDiem,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013633-1-scaled.jpg,08/08/2025,8.0000000,20.0:55,42.9629870000000,9.34768900000000,,Centuri,102537,Observation #102537,https://biolit.fr/observations/observation-102537/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000013633-1-scaled.jpg,,TRUE,Identifiable +N1,102722,Sortie #102722,https://biolit.fr/sorties/sortie-102722/,BOUCHER Alain,https://biolit.fr/wp-content/uploads/jet-form-builder/088cdc61d00c23d2d858f4492be0cb83/2025/08/1000003979-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/088cdc61d00c23d2d858f4492be0cb83/2025/08/1000003977-scaled.jpg,8/18/2025 0:00,15.0000000,17.0000000,46.2797000000000,-1.22348800000000,,La baie de l'aiguillon (85),,,,,,,,,, +N1,103237,Sortie #103237,https://biolit.fr/sorties/sortie-103237/,VUILLIER Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_161647146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162110842-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162139142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162158682-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162212134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162609222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162931689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163401242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163441047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163502161-scaled.jpg,8/16/2025 0:00,16.0000000,19.0000000,45.9491380000000,-1.08677700000000,,Port des Barques,103238,Observation #103238,https://biolit.fr/observations/observation-103238/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162110842-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_161647146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162139142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162158682-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162212134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162609222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162931689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163502161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163441047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163401242-scaled.jpg,,,Ne sais pas +N1,103237,Sortie #103237,https://biolit.fr/sorties/sortie-103237/,VUILLIER Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_161647146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162110842-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162139142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162158682-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162212134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162609222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162931689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163401242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163441047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163502161-scaled.jpg,8/16/2025 0:00,16.0000000,19.0000000,45.9491380000000,-1.08677700000000,,Port des Barques,103240,Observation #103240,https://biolit.fr/observations/observation-103240/,Eryngium maritimum,Panicaut de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_161647146-scaled.jpg,,TRUE, +N1,103237,Sortie #103237,https://biolit.fr/sorties/sortie-103237/,VUILLIER Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_161647146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162110842-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162139142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162158682-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162212134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162609222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162931689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163401242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163441047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163502161-scaled.jpg,8/16/2025 0:00,16.0000000,19.0000000,45.9491380000000,-1.08677700000000,,Port des Barques,103242,Observation #103242,https://biolit.fr/observations/observation-103242/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162139142-scaled.jpg,,, +N1,103237,Sortie #103237,https://biolit.fr/sorties/sortie-103237/,VUILLIER Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_161647146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162110842-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162139142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162158682-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162212134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162609222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162931689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163401242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163441047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163502161-scaled.jpg,8/16/2025 0:00,16.0000000,19.0000000,45.9491380000000,-1.08677700000000,,Port des Barques,103244,Observation #103244,https://biolit.fr/observations/observation-103244/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162158682-scaled.jpg,,TRUE, +N1,103237,Sortie #103237,https://biolit.fr/sorties/sortie-103237/,VUILLIER Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_161647146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162110842-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162139142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162158682-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162212134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162609222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162931689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163401242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163441047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163502161-scaled.jpg,8/16/2025 0:00,16.0000000,19.0000000,45.9491380000000,-1.08677700000000,,Port des Barques,103246,Observation #103246,https://biolit.fr/observations/observation-103246/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162212134-scaled.jpg,,, +N1,103237,Sortie #103237,https://biolit.fr/sorties/sortie-103237/,VUILLIER Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_161647146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162110842-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162139142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162158682-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162212134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162609222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162931689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163401242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163441047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163502161-scaled.jpg,8/16/2025 0:00,16.0000000,19.0000000,45.9491380000000,-1.08677700000000,,Port des Barques,103248,Observation #103248,https://biolit.fr/observations/observation-103248/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162609222-scaled.jpg,,TRUE, +N1,103237,Sortie #103237,https://biolit.fr/sorties/sortie-103237/,VUILLIER Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_161647146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162110842-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162139142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162158682-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162212134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162609222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162931689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163401242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163441047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163502161-scaled.jpg,8/16/2025 0:00,16.0000000,19.0000000,45.9491380000000,-1.08677700000000,,Port des Barques,103250,Observation #103250,https://biolit.fr/observations/observation-103250/,Spartina martitima,Spartine maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162931689-scaled.jpg,,TRUE, +N1,103237,Sortie #103237,https://biolit.fr/sorties/sortie-103237/,VUILLIER Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_161647146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162110842-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162139142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162158682-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162212134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162609222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162931689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163401242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163441047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163502161-scaled.jpg,8/16/2025 0:00,16.0000000,19.0000000,45.9491380000000,-1.08677700000000,,Port des Barques,103252,Observation #103252,https://biolit.fr/observations/observation-103252/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163401242-scaled.jpg,,TRUE, +N1,103237,Sortie #103237,https://biolit.fr/sorties/sortie-103237/,VUILLIER Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_161647146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162110842-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162139142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162158682-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162212134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162609222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162931689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163401242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163441047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163502161-scaled.jpg,8/16/2025 0:00,16.0000000,19.0000000,45.9491380000000,-1.08677700000000,,Port des Barques,103254,Observation #103254,https://biolit.fr/observations/observation-103254/,Lagurus ovatus,Queue de lièvre,,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163441047-scaled.jpg,,TRUE, +N1,103237,Sortie #103237,https://biolit.fr/sorties/sortie-103237/,VUILLIER Vincent,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_161647146-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162110842-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162139142-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162158682-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162212134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162609222-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_162931689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163401242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163441047-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163502161-scaled.jpg,8/16/2025 0:00,16.0000000,19.0000000,45.9491380000000,-1.08677700000000,,Port des Barques,103256,Observation #103256,https://biolit.fr/observations/observation-103256/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/6340edbd2de4246fef1ce154a713d4af/2025/08/PXL_20250816_163502161-scaled.jpg,,, +N1,103412,Sortie #103412,https://biolit.fr/sorties/sortie-103412/,CarpeDiem,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014006-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014021-scaled.jpg,8/13/2025 0:00,11.0000000,11.0000000,42.9540050000000,9.34678500000000,,Côté rocheuse au Sud de Mute,103413,Observation #103413,https://biolit.fr/observations/observation-103413/,Chthamalus stellatus,Chthamale étoilé commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014006-scaled.jpg,,,Identifiable +N1,103412,Sortie #103412,https://biolit.fr/sorties/sortie-103412/,CarpeDiem,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014006-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014021-scaled.jpg,8/13/2025 0:00,11.0000000,11.0000000,42.9540050000000,9.34678500000000,,Côté rocheuse au Sud de Mute,103415,Observation #103415,https://biolit.fr/observations/observation-103415/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014007-scaled.jpg,,,Ne sais pas +N1,103412,Sortie #103412,https://biolit.fr/sorties/sortie-103412/,CarpeDiem,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014006-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014021-scaled.jpg,8/13/2025 0:00,11.0000000,11.0000000,42.9540050000000,9.34678500000000,,Côté rocheuse au Sud de Mute,103417,Observation #103417,https://biolit.fr/observations/observation-103417/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014010-scaled.jpg,,,Ne sais pas +N1,103412,Sortie #103412,https://biolit.fr/sorties/sortie-103412/,CarpeDiem,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014006-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014021-scaled.jpg,8/13/2025 0:00,11.0000000,11.0000000,42.9540050000000,9.34678500000000,,Côté rocheuse au Sud de Mute,103419,Observation #103419,https://biolit.fr/observations/observation-103419/,Salaria pavo,Blennie-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014015-scaled.jpg,,,Identifiable +N1,103412,Sortie #103412,https://biolit.fr/sorties/sortie-103412/,CarpeDiem,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014006-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014021-scaled.jpg,8/13/2025 0:00,11.0000000,11.0000000,42.9540050000000,9.34678500000000,,Côté rocheuse au Sud de Mute,103421,Observation #103421,https://biolit.fr/observations/observation-103421/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014020-scaled.jpg,,TRUE,Identifiable +N1,103412,Sortie #103412,https://biolit.fr/sorties/sortie-103412/,CarpeDiem,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014006-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014019-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014020-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014021-scaled.jpg,8/13/2025 0:00,11.0000000,11.0000000,42.9540050000000,9.34678500000000,,Côté rocheuse au Sud de Mute,103423,Observation #103423,https://biolit.fr/observations/observation-103423/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/42cffbdc3d017c2371c010e253ac7e3f/2025/08/1000014021-scaled.jpg,,,Identifiable +N1,103442,Sortie #103442,https://biolit.fr/sorties/sortie-103442/,Menandez Maxence,https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5347-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5348.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5349.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5350.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5351.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5352.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5353.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5354.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5355.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5356.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5357.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5358.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5360.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5361.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5362.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5363.jpg,7/13/2025 0:00,15.0000000,18.0000000,44.6517620000000,-1.19649300000000,,Arcachon plage Pereire,103443,Observation #103443,https://biolit.fr/observations/observation-103443/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5347-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5348.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5349.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5350.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5351.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5352.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5353.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5360.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5359.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5358.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5357.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5356.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5363.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5362.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5355.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5354.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c9027f0b880eb992edde4d0fb9d87543/2025/08/thumbnail_IMG_5361.jpg,,,Ne sais pas +N1,103467,Sortie #103467,https://biolit.fr/sorties/sortie-103467/,BOUTHILLON Hélène,https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008480-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008425-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008424-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008395-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008389-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008378-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008379-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008384-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008360-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008239-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008238-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008236-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008231-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008227-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008221-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008215-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008205-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008204-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008198-scaled.jpg,06/10/2025,9.0000000,13.0000000,48.874930000000,-1.83698900000000,,Îles Chausey,,,,,,,,,, +N1,103488,Sortie #103488,https://biolit.fr/sorties/sortie-103488/,BOUTHILLON Hélène,https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008198-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008204-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008211-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008218-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008221-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008227-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008231-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008238-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008239-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008360-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008379-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008384-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008388-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008395-1-scaled.jpg,06/10/2025,9.0000000,13.0000000,48.8748640000000,-1.84223200000000,,Îles Chausey - Bas de la Grande Grève,103489,Observation #103489,https://biolit.fr/observations/observation-103489/,Haematopus ostralegus,Huîtrier pie,,https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008384-1-scaled.jpg,,,Identifiable +N1,103488,Sortie #103488,https://biolit.fr/sorties/sortie-103488/,BOUTHILLON Hélène,https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008198-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008204-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008211-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008218-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008221-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008227-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008231-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008238-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008239-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008360-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008379-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008384-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008388-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008395-1-scaled.jpg,06/10/2025,9.0000000,13.0000000,48.8748640000000,-1.84223200000000,,Îles Chausey - Bas de la Grande Grève,103491,Observation #103491,https://biolit.fr/observations/observation-103491/,Elysia crispata,Limace de mer frisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008204-1-scaled.jpg,,,Identifiable +N1,103488,Sortie #103488,https://biolit.fr/sorties/sortie-103488/,BOUTHILLON Hélène,https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008198-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008204-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008211-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008218-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008221-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008227-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008231-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008238-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008239-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008360-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008379-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008384-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008388-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008395-1-scaled.jpg,06/10/2025,9.0000000,13.0000000,48.8748640000000,-1.84223200000000,,Îles Chausey - Bas de la Grande Grève,103493,Observation #103493,https://biolit.fr/observations/observation-103493/,Ammodytes americanus,Lançon,,https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008221-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008231-1-scaled.jpg,,,Identifiable +N1,103488,Sortie #103488,https://biolit.fr/sorties/sortie-103488/,BOUTHILLON Hélène,https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008198-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008204-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008211-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008218-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008221-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008227-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008231-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008238-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008239-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008360-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008379-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008384-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008388-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008395-1-scaled.jpg,06/10/2025,9.0000000,13.0000000,48.8748640000000,-1.84223200000000,,Îles Chausey - Bas de la Grande Grève,103495,Observation #103495,https://biolit.fr/observations/observation-103495/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008388-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008379-1-scaled.jpg,,,Identifiable +N1,103488,Sortie #103488,https://biolit.fr/sorties/sortie-103488/,BOUTHILLON Hélène,https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008198-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008204-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008211-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008218-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008221-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008227-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008231-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008238-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008239-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008360-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008379-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008384-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008388-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008395-1-scaled.jpg,06/10/2025,9.0000000,13.0000000,48.8748640000000,-1.84223200000000,,Îles Chausey - Bas de la Grande Grève,103497,Observation #103497,https://biolit.fr/observations/observation-103497/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008379-1-scaled.jpg,,,Identifiable +N1,103488,Sortie #103488,https://biolit.fr/sorties/sortie-103488/,BOUTHILLON Hélène,https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008198-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008204-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008205-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008208-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008211-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008218-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008221-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008224-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008227-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008231-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008233-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008238-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008239-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008360-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008378-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008379-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008384-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008388-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008389-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008395-1-scaled.jpg,06/10/2025,9.0000000,13.0000000,48.8748640000000,-1.84223200000000,,Îles Chausey - Bas de la Grande Grève,103500,Observation #103500,https://biolit.fr/observations/observation-103500/,Salicornia spp.,Salicorne,,https://biolit.fr/wp-content/uploads/jet-form-builder/bdc8f39c980dc97fb8290c8e26fb8503/2025/08/1000008395-1-scaled.jpg,,,Identifiable +N1,103538,Sortie #103538,https://biolit.fr/sorties/sortie-103538/,VIEL per-yann,https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1057-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1062-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1067-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1080-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1091-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1070-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1071-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1078-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1088-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1089-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1064-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1074-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1079-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1085-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1087-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1090-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1061-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1075-scaled.jpg,8/22/2025 0:00,13.0:15,16.0:15,48.7558490000000,-4.81268300000000,,PLOUGUERNEAU,103539,Observation #103539,https://biolit.fr/observations/observation-103539/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1057-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1062-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1067-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1080-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1091-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1070-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1071-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1078-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1088-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1089-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1064-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1074-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1079-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1085-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1087-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1090-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1061-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/ba80cd90e71ad2124e34b413165c8e67/2025/08/IMG_1075-scaled.jpg,,FALSE,Ne sais pas +N1,103561,Sortie #103561,https://biolit.fr/sorties/sortie-103561/,Blanchard Arthur,https://biolit.fr/wp-content/uploads/jet-form-builder/124045251ce28cbd60669f1853bdcb23/2025/08/IMG_4110-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/124045251ce28cbd60669f1853bdcb23/2025/08/IMG_4111-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/124045251ce28cbd60669f1853bdcb23/2025/08/IMG_4112-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/124045251ce28cbd60669f1853bdcb23/2025/08/IMG_4113-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/124045251ce28cbd60669f1853bdcb23/2025/08/IMG_4114-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/124045251ce28cbd60669f1853bdcb23/2025/08/IMG_4115-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/124045251ce28cbd60669f1853bdcb23/2025/08/IMG_4119-scaled.jpeg,8/25/2025 0:00,14.0000000,16.0000000,48.6382380000000,-2.06025800000000,Planète Mer,Dinard,,,,,,,,,, +N1,103568,Sortie #103568,https://biolit.fr/sorties/sortie-103568/,Brendolise Justin,https://biolit.fr/wp-content/uploads/jet-form-builder/23f96b7ec56ceee1c25b9fda1c334172/2025/08/IMG_8286-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/23f96b7ec56ceee1c25b9fda1c334172/2025/08/IMG_8285-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/23f96b7ec56ceee1c25b9fda1c334172/2025/08/image0000001.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/23f96b7ec56ceee1c25b9fda1c334172/2025/08/image0000011.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/23f96b7ec56ceee1c25b9fda1c334172/2025/08/image0000021.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/23f96b7ec56ceee1c25b9fda1c334172/2025/08/image0000031.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/23f96b7ec56ceee1c25b9fda1c334172/2025/08/image0000041.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/23f96b7ec56ceee1c25b9fda1c334172/2025/08/image0000051.jpeg,8/25/2025 0:00,15.0000000,16.0000000,48.64,-2.07,,Dinard,,,,,,,,,, +N1,103577,Sortie #103577,https://biolit.fr/sorties/sortie-103577/,Blanchard Arthur,https://biolit.fr/wp-content/uploads/jet-form-builder/124045251ce28cbd60669f1853bdcb23/2025/08/IMG_4112-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/124045251ce28cbd60669f1853bdcb23/2025/08/IMG_4113-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/124045251ce28cbd60669f1853bdcb23/2025/08/IMG_4111-1-scaled.jpeg,8/25/2025 0:00,14.0000000,16.0000000,48.6382390000000,-2.06026900000000,Planète Mer (antenne Dinard),Dinard,,,,,,,,,, +N1,103667,Sortie #103667,https://biolit.fr/sorties/sortie-103667/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/Grand-chiton-epineux.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/Porcellane-grise.jpg,8/25/2025 0:00,15.0000000,15.0:45,48.642911000000,-2.11207700000000,Planète Mer,Plage de Saint Lunaire,103668,Observation #103668,https://biolit.fr/observations/observation-103668/,Acanthochitona fascicularis,Grand chiton épineux,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/Grand-chiton-epineux.jpg,,TRUE,Identifiable +N1,103667,Sortie #103667,https://biolit.fr/sorties/sortie-103667/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/Grand-chiton-epineux.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/Porcellane-grise.jpg,8/25/2025 0:00,15.0000000,15.0:45,48.642911000000,-2.11207700000000,Planète Mer,Plage de Saint Lunaire,103670,Observation #103670,https://biolit.fr/observations/observation-103670/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/Porcellane-grise.jpg,,TRUE,Identifiable +N1,103693,Sortie #103693,https://biolit.fr/sorties/sortie-103693/,OMS Didier,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4656-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4661-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4669.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4678-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4684-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4687-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4690-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4698-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4708-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4709-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4711-1.jpg,8/21/2025 0:00,16.0000000,18.0000000,42.698,3.033,,Sainte Marie la Mer,103705,Observation #103705,https://biolit.fr/observations/observation-103705/,Opuntia ficus,Figuier de barbarie,,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4678-1.jpg,,,Identifiable +N1,103693,Sortie #103693,https://biolit.fr/sorties/sortie-103693/,OMS Didier,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4656-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4661-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4669.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4678-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4684-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4687-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4690-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4698-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4708-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4709-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4711-1.jpg,8/21/2025 0:00,16.0000000,18.0000000,42.698,3.033,,Sainte Marie la Mer,103707,Observation #103707,https://biolit.fr/observations/observation-103707/,Euphorbia paralias,Euphorbe des dunes,,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4656-1.jpg,,,Identifiable +N1,103693,Sortie #103693,https://biolit.fr/sorties/sortie-103693/,OMS Didier,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4656-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4661-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4669.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4678-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4684-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4687-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4690-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4698-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4708-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4709-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4711-1.jpg,8/21/2025 0:00,16.0000000,18.0000000,42.698,3.033,,Sainte Marie la Mer,103709,Observation #103709,https://biolit.fr/observations/observation-103709/,Calystegia soldanella,Liseron des dunes,,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4661-1.jpg,,,Identifiable +N1,103693,Sortie #103693,https://biolit.fr/sorties/sortie-103693/,OMS Didier,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4656-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4661-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4669.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4678-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4684-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4687-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4690-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4698-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4708-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4709-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4711-1.jpg,8/21/2025 0:00,16.0000000,18.0000000,42.698,3.033,,Sainte Marie la Mer,103711,Observation #103711,https://biolit.fr/observations/observation-103711/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4669.jpg,,,Identifiable +N1,103693,Sortie #103693,https://biolit.fr/sorties/sortie-103693/,OMS Didier,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4656-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4661-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4669.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4678-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4684-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4687-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4690-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4698-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4708-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4709-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4711-1.jpg,8/21/2025 0:00,16.0000000,18.0000000,42.698,3.033,,Sainte Marie la Mer,103713,Observation #103713,https://biolit.fr/observations/observation-103713/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4684-1.jpg,,,non-identifiable +N1,103693,Sortie #103693,https://biolit.fr/sorties/sortie-103693/,OMS Didier,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4656-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4661-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4669.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4678-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4684-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4687-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4690-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4698-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4708-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4709-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4711-1.jpg,8/21/2025 0:00,16.0000000,18.0000000,42.698,3.033,,Sainte Marie la Mer,103715,Observation #103715,https://biolit.fr/observations/observation-103715/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4687-1.jpg,,,Identifiable +N1,103693,Sortie #103693,https://biolit.fr/sorties/sortie-103693/,OMS Didier,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4656-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4661-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4669.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4678-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4684-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4687-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4690-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4698-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4708-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4709-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4711-1.jpg,8/21/2025 0:00,16.0000000,18.0000000,42.698,3.033,,Sainte Marie la Mer,103717,Observation #103717,https://biolit.fr/observations/observation-103717/,Glaucium flavum,Pavot jaune des sables,,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4690-1.jpg,,,Identifiable +N1,103693,Sortie #103693,https://biolit.fr/sorties/sortie-103693/,OMS Didier,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4656-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4661-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4669.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4678-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4684-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4687-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4690-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4698-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4708-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4709-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4711-1.jpg,8/21/2025 0:00,16.0000000,18.0000000,42.698,3.033,,Sainte Marie la Mer,103719,Observation #103719,https://biolit.fr/observations/observation-103719/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4698-1.jpg,,,non-identifiable +N1,103693,Sortie #103693,https://biolit.fr/sorties/sortie-103693/,OMS Didier,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4656-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4661-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4669.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4678-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4684-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4687-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4690-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4698-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4708-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4709-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4711-1.jpg,8/21/2025 0:00,16.0000000,18.0000000,42.698,3.033,,Sainte Marie la Mer,103721,Observation #103721,https://biolit.fr/observations/observation-103721/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4708-1.jpg,,,Identifiable +N1,103693,Sortie #103693,https://biolit.fr/sorties/sortie-103693/,OMS Didier,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4656-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4661-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4669.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4678-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4684-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4687-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4690-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4698-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4708-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4709-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4711-1.jpg,8/21/2025 0:00,16.0000000,18.0000000,42.698,3.033,,Sainte Marie la Mer,103723,Observation #103723,https://biolit.fr/observations/observation-103723/,Malva arborea,Lavatère arborescente,,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/IMG_4711-1.jpg,,,Identifiable +N1,103726,Sortie #103726,https://biolit.fr/sorties/sortie-103726/,OMS Didier,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/31ce9fbe07405f876fdcdb2fc7d3d83a4b8ccc60.jpg,8/21/2025 0:00,16.0000000,18.0000000,42.698,3.033,,Sainte Marie la Mer,103727,Observation #103727,https://biolit.fr/observations/observation-103727/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/c95201bb5afe527f6b77564b0cea81f0/2025/08/31ce9fbe07405f876fdcdb2fc7d3d83a4b8ccc60.jpg,,,Ne sais pas +N1,103955,Sortie #103955,https://biolit.fr/sorties/sortie-103955/,Sorensen Mael,https://biolit.fr/wp-content/uploads/jet-form-builder/6e044604adcc4c5ac9abb057fa36f9e3/2025/08/IMG_4509-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6e044604adcc4c5ac9abb057fa36f9e3/2025/08/IMG_4511-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/6e044604adcc4c5ac9abb057fa36f9e3/2025/08/IMG_4512-scaled.jpeg,8/25/2025 0:00,14.0000000,15.0000000,48.6384060000000,-2.06019100000000,Planète Mer (antenne Dinard),Plage de Saint-Enogat,,,,,,,,,, +N1,103980,Sortie #103980,https://biolit.fr/sorties/sortie-103980/,Hirrien Maho,https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1340-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1341-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1342-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1344-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1335-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1345-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1346-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1347-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1348-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1349-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1351-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1352-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1353-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1354-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1355-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1357-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1359-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1360-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1361-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1362-scaled.jpeg,8/25/2025 0:00,14.0000000,16.0000000,48.6398920000000,-2.07229600000000,Planète Mer (antenne Dinard),Plage de Saint Enogat,103985,Observation #103985,https://biolit.fr/observations/observation-103985/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/31c1d95b94f888bfa59e4217571e79e6/2025/08/IMG_1348-scaled.jpeg,,,Identifiable +N1,104001,Sortie #104001,https://biolit.fr/sorties/sortie-104001/,Mounier Baptiste,https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/08/20250826_104225-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/08/20250826_104531-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/08/20250826_110609-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/08/20250826_110846-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/08/20250826_110902-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/08/20250826_112414-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/08/20250826_112444-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/08/20250826_113405-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/08/20250826_113719-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f56cee2f1504c47c8e034401d857d20/2025/08/20250826_113806-scaled.jpg,8/26/2025 0:00,10.0000000,11.0000000,49.9328,1.0813,ESTRAN cité de la Mer,Plage de Puys,,,,,,,,,, +N1,104263,Sortie #104263,https://biolit.fr/sorties/sortie-104263/,Allory Pierre-Yves,https://biolit.fr/wp-content/uploads/jet-form-builder/e97d2558d9854da515f2da2dd36e60b9/2025/08/ChatGPT-Image-28-aout-2025-12_46_05.png,08/07/2025,20.000007,21.000007,48.4664280000000,-2.51143600000000,,kskdkk,,,,,,,,,, +N1,104303,Sortie #104303,https://biolit.fr/sorties/sortie-104303/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023269-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023272-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023279-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023281-scaled.jpg,8/30/2025 0:00,17.0:45,17.0:56,48.640247000000,-2.07258700000000,Planète Mer (antenne Dinard),saint enogat,104304,Observation #104304,https://biolit.fr/observations/observation-104304/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023269-scaled.jpg,,TRUE,Identifiable +N1,104303,Sortie #104303,https://biolit.fr/sorties/sortie-104303/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023269-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023272-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023279-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023281-scaled.jpg,8/30/2025 0:00,17.0:45,17.0:56,48.640247000000,-2.07258700000000,Planète Mer (antenne Dinard),saint enogat,104306,Observation #104306,https://biolit.fr/observations/observation-104306/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023281-scaled.jpg,,TRUE,Identifiable +N1,104303,Sortie #104303,https://biolit.fr/sorties/sortie-104303/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023269-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023272-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023279-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023281-scaled.jpg,8/30/2025 0:00,17.0:45,17.0:56,48.640247000000,-2.07258700000000,Planète Mer (antenne Dinard),saint enogat,104308,Observation #104308,https://biolit.fr/observations/observation-104308/,Doris pseudoargus,Ponte de Citron de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023272-scaled.jpg,,TRUE,non-identifiable +N1,104303,Sortie #104303,https://biolit.fr/sorties/sortie-104303/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023269-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023272-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023279-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023281-scaled.jpg,8/30/2025 0:00,17.0:45,17.0:56,48.640247000000,-2.07258700000000,Planète Mer (antenne Dinard),saint enogat,104310,Observation #104310,https://biolit.fr/observations/observation-104310/,Nerophis lumbriciformis,Nérophis lombric,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023279-scaled.jpg,,,Identifiable +N1,104317,Sortie #104317,https://biolit.fr/sorties/sortie-104317/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/anemone-verte-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/eulalie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/ophiure-fragile.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/tourteau-scaled.jpg,8/30/2025 0:00,15.0:59,17.0000000,48.6417870000000,-2.07344400000000,Planète Mer,Plage de Saint Enogat,104318,Observation #104318,https://biolit.fr/observations/observation-104318/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/anemone-solaire-scaled.jpg,,TRUE,Identifiable +N1,104317,Sortie #104317,https://biolit.fr/sorties/sortie-104317/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/anemone-verte-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/eulalie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/ophiure-fragile.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/tourteau-scaled.jpg,8/30/2025 0:00,15.0:59,17.0000000,48.6417870000000,-2.07344400000000,Planète Mer,Plage de Saint Enogat,104320,Observation #104320,https://biolit.fr/observations/observation-104320/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/anemone-verte-de-mer-scaled.jpg,,TRUE,Identifiable +N1,104317,Sortie #104317,https://biolit.fr/sorties/sortie-104317/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/anemone-verte-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/eulalie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/ophiure-fragile.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/tourteau-scaled.jpg,8/30/2025 0:00,15.0:59,17.0000000,48.6417870000000,-2.07344400000000,Planète Mer,Plage de Saint Enogat,104322,Observation #104322,https://biolit.fr/observations/observation-104322/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/eulalie-scaled.jpg,,TRUE,Identifiable +N1,104317,Sortie #104317,https://biolit.fr/sorties/sortie-104317/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/anemone-verte-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/eulalie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/ophiure-fragile.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/tourteau-scaled.jpg,8/30/2025 0:00,15.0:59,17.0000000,48.6417870000000,-2.07344400000000,Planète Mer,Plage de Saint Enogat,104324,Observation #104324,https://biolit.fr/observations/observation-104324/,Amphipholis squamata,Ophiure écailleuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/ophiure-fragile.jpg,,TRUE,Identifiable +N1,104317,Sortie #104317,https://biolit.fr/sorties/sortie-104317/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/anemone-verte-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/eulalie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/ophiure-fragile.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/tourteau-scaled.jpg,8/30/2025 0:00,15.0:59,17.0000000,48.6417870000000,-2.07344400000000,Planète Mer,Plage de Saint Enogat,104326,Observation #104326,https://biolit.fr/observations/observation-104326/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/5f82b64da824dae67613e57bfea7ca53/2025/08/tourteau-scaled.jpg,,TRUE,Identifiable +N1,104610,Sortie #104610,https://biolit.fr/sorties/sortie-104610/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023181-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023184-scaled.jpg,8/30/2025 0:00,5.0:55,6.000005,48.6396370000000,-2.07207400000000,Planète Mer,saint enogat,104611,Observation #104611,https://biolit.fr/observations/observation-104611/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023181-scaled.jpg,,TRUE,Identifiable +N1,104610,Sortie #104610,https://biolit.fr/sorties/sortie-104610/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023181-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023184-scaled.jpg,8/30/2025 0:00,5.0:55,6.000005,48.6396370000000,-2.07207400000000,Planète Mer,saint enogat,104613,Observation #104613,https://biolit.fr/observations/observation-104613/,Sepia officinalis,Seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/6c01a5869814dd6070318f10d0f43f06/2025/08/1000023184-scaled.jpg,,TRUE,Identifiable +N1,104824,Sortie #104824,https://biolit.fr/sorties/sortie-104824/,SORIN ROBIN,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022400-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022400-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022402-scaled.jpg,09/02/2025,18.0:15,18.0000000,47.8619090,-4.2787620,,Foret-Fouesnant,104825,Observation #104825,https://biolit.fr/observations/observation-104825/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022400-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022402-scaled.jpg,,, +N1,104828,Sortie #104828,https://biolit.fr/sorties/sortie-104828/,SORIN ROBIN,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022432-scaled.jpg,09/03/2025,17.0000000,17.0:55,47.8619090,-4.2787620,,Fouesnant,104829,Observation #104829,https://biolit.fr/observations/observation-104829/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022432-scaled.jpg,,TRUE,non-identifiable +N1,104836,Sortie #104836,https://biolit.fr/sorties/sortie-104836/,SORIN ROBIN,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022597-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022589-scaled.jpg,09/04/2025,16.0000000,16.0000000,47.902161,-4.2875780,,Pointe de la Torche,104837,Observation #104837,https://biolit.fr/observations/observation-104837/,Acinetospora crinita,Algues brunes filamenteuses,,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022589-scaled.jpg,,,Identifiable +N1,104836,Sortie #104836,https://biolit.fr/sorties/sortie-104836/,SORIN ROBIN,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022597-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022589-scaled.jpg,09/04/2025,16.0000000,16.0000000,47.902161,-4.2875780,,Pointe de la Torche,104839,Observation #104839,https://biolit.fr/observations/observation-104839/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022597-scaled.jpg,,,non-identifiable +N1,104921,Sortie #104921,https://biolit.fr/sorties/sortie-104921/,SÉVENO Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250905_193658-scaled.jpg,09/05/2025,19.0000000,19.0:45,47.3513510000000,-2.52650900000000,,Piriac sur mer. Lérat,104922,Observation #104922,https://biolit.fr/observations/observation-104922/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250905_193658-scaled.jpg,,,Identifiable +N1,104930,Sortie #104930,https://biolit.fr/sorties/sortie-104930/,SÉVENO Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_131701-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_125934-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_123057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_123003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_122938-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_120527-scaled.jpg,09/06/2025,11.0:15,13.0:42,47.3693690000000,-2.55397600000000,,Piriac / Port Lorec,104931,Observation #104931,https://biolit.fr/observations/observation-104931/,Gobius paganellus,Gobie paganel,,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_131701-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_123057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_123003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_122938-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_120527-scaled.jpg,,,Identifiable +N1,104930,Sortie #104930,https://biolit.fr/sorties/sortie-104930/,SÉVENO Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_131701-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_125934-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_123057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_123003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_122938-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_120527-scaled.jpg,09/06/2025,11.0:15,13.0:42,47.3693690000000,-2.55397600000000,,Piriac / Port Lorec,104933,Observation #104933,https://biolit.fr/observations/observation-104933/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/20250906_125934-scaled.jpg,,TRUE,non-identifiable +N1,104946,Sortie #104946,https://biolit.fr/sorties/sortie-104946/,SÉVENO Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/aster-maritime-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/aster-maritime-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/aster-maritime-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/aster-maritime-vue-ensemble-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/lavande-de-mer-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/lavande-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-scaled.jpg,09/06/2025,14.0:15,15.0:45,47.3108540000000,-2.50064000000000,,Pen-Bron,104947,Observation #104947,https://biolit.fr/observations/observation-104947/,Tripolium pannonicum,Aster maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/aster-maritime-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/aster-maritime-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/aster-maritime-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/aster-maritime-vue-ensemble-scaled.jpg,,,Identifiable +N1,104946,Sortie #104946,https://biolit.fr/sorties/sortie-104946/,SÉVENO Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/aster-maritime-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/aster-maritime-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/aster-maritime-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/aster-maritime-vue-ensemble-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/lavande-de-mer-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/lavande-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-scaled.jpg,09/06/2025,14.0:15,15.0:45,47.3108540000000,-2.50064000000000,,Pen-Bron,104949,Observation #104949,https://biolit.fr/observations/observation-104949/,Limonium vulgare,Lavande de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/lavande-de-mer-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/lavande-de-mer-scaled.jpg,,,Identifiable +N1,104946,Sortie #104946,https://biolit.fr/sorties/sortie-104946/,SÉVENO Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/aster-maritime-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/aster-maritime-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/aster-maritime-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/aster-maritime-vue-ensemble-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/lavande-de-mer-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/lavande-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-scaled.jpg,09/06/2025,14.0:15,15.0:45,47.3108540000000,-2.50064000000000,,Pen-Bron,104951,Observation #104951,https://biolit.fr/observations/observation-104951/,Halimione portulacoides,Obione faux-pourpier,,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/obione-faux-pourpier-scaled.jpg,,,Identifiable +N1,104963,Sortie #104963,https://biolit.fr/sorties/sortie-104963/,SÉVENO Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/salicorne-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/salicorne-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/salicorne-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-ligneuse-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-ligneuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-ligneuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-maritime-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-maritime-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/tetragone-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/tetragone-2-scaled.jpg,09/06/2025,14.0:15,15.0:45,47.3109410000000,-2.5004360000000,,Pen-Bron,104964,Observation #104964,https://biolit.fr/observations/observation-104964/,Salicornia spp.,Salicorne,,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/salicorne-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/salicorne-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/salicorne-4-scaled.jpg,,,Identifiable +N1,104963,Sortie #104963,https://biolit.fr/sorties/sortie-104963/,SÉVENO Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/salicorne-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/salicorne-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/salicorne-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-ligneuse-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-ligneuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-ligneuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-maritime-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-maritime-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/tetragone-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/tetragone-2-scaled.jpg,09/06/2025,14.0:15,15.0:45,47.3109410000000,-2.5004360000000,,Pen-Bron,104966,Observation #104966,https://biolit.fr/observations/observation-104966/,Suaeda vera,Soude ligneuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-ligneuse-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-ligneuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-ligneuse-2-scaled.jpg,,,Identifiable +N1,104963,Sortie #104963,https://biolit.fr/sorties/sortie-104963/,SÉVENO Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/salicorne-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/salicorne-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/salicorne-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-ligneuse-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-ligneuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-ligneuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-maritime-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-maritime-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/tetragone-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/tetragone-2-scaled.jpg,09/06/2025,14.0:15,15.0:45,47.3109410000000,-2.5004360000000,,Pen-Bron,104968,Observation #104968,https://biolit.fr/observations/observation-104968/,Suaeda maritima,Soude maritime,,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-maritime-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-maritime-2-scaled.jpg,,,Identifiable +N1,104963,Sortie #104963,https://biolit.fr/sorties/sortie-104963/,SÉVENO Nicolas,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/salicorne-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/salicorne-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/salicorne-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-ligneuse-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-ligneuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-ligneuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-maritime-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/soude-maritime-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/tetragone-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/tetragone-2-scaled.jpg,09/06/2025,14.0:15,15.0:45,47.3109410000000,-2.5004360000000,,Pen-Bron,104970,Observation #104970,https://biolit.fr/observations/observation-104970/,Tetragonia tetragonoides,Épinard de Nouvelle-Zélande,,https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/tetragone-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/11eb398d3197c561f2e3aef1556efc06/2025/09/tetragone-2-scaled.jpg,,,Identifiable +N1,105039,Sortie #105039,https://biolit.fr/sorties/sortie-105039/,druelles jerome,https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019542-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019544-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019513-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019511-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019510-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019507-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019503-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019502-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019498-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019497-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019494-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019493-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019492-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019489-scaled.jpg,09/06/2025,18.0000000,20.0000000,50.4802940,1.581598,,Stella plage,105048,Observation #105048,https://biolit.fr/observations/observation-105048/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019544-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019542-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019513-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019511-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019510-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019507-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019503-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019502-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019498-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019497-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019494-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019493-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019492-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019489-scaled.jpg,,,Ne sais pas +N1,105039,Sortie #105039,https://biolit.fr/sorties/sortie-105039/,druelles jerome,https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019542-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019544-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019513-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019511-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019510-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019507-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019503-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019502-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019498-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019497-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019494-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019493-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019492-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019489-scaled.jpg,09/06/2025,18.0000000,20.0000000,50.4802940,1.581598,,Stella plage,105096,Observation #105096,https://biolit.fr/observations/observation-105096/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019543-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019542-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019544-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019537-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019536-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019513-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019511-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019510-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019508-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019507-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019506-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019504-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019503-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019502-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019497-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019498-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019494-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019493-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019492-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019489-scaled.jpg,,,Ne sais pas +N1,105043,Sortie #105043,https://biolit.fr/sorties/sortie-105043/,druelles jerome,https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019572-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019569-scaled.jpg,09/07/2025,11.0000000,13.0000000,50.4802340,1.5813460,,Stella plage,105044,Observation #105044,https://biolit.fr/observations/observation-105044/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019572-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019569-scaled.jpg,,,Ne sais pas +N1,105043,Sortie #105043,https://biolit.fr/sorties/sortie-105043/,druelles jerome,https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019572-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019571-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019569-scaled.jpg,09/07/2025,11.0000000,13.0000000,50.4802340,1.5813460,,Stella plage,105046,Observation #105046,https://biolit.fr/observations/observation-105046/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5cec098a12a6ba0baff44027bf29a5da/2025/09/1000019571-scaled.jpg,,,Ne sais pas +N1,105054,Sortie #105054,https://biolit.fr/sorties/sortie-105054/,JAMBU Stéphanie,https://biolit.fr/wp-content/uploads/jet-form-builder/cfcedc080d62c99a1d6dce0dc72a87c4/2025/09/IMG_1936-1-scaled.jpeg,09/07/2025,16.0000000,16.0000000,46.7727460000000,-2.05169700000000,,"Plages des oiseaux, saint Jean de monts, Vendée",105055,Observation #105055,https://biolit.fr/observations/observation-105055/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/cfcedc080d62c99a1d6dce0dc72a87c4/2025/09/IMG_1936-1-scaled.jpeg,,TRUE,Ne sais pas +N1,105058,Sortie #105058,https://biolit.fr/sorties/sortie-105058/,JAMBU Stéphanie,https://biolit.fr/wp-content/uploads/jet-form-builder/cfcedc080d62c99a1d6dce0dc72a87c4/2025/09/IMG_1934-scaled.jpeg,09/07/2025,16.0000000,16.0000000,46.7815430000000,-2.06929200000000,,"Plage des oiseaux, saint Jean de monts, Vendée",105059,Observation #105059,https://biolit.fr/observations/observation-105059/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cfcedc080d62c99a1d6dce0dc72a87c4/2025/09/IMG_1934-scaled.jpeg,,, +N1,105070,Sortie #105070,https://biolit.fr/sorties/sortie-105070/,JAMBU Stéphanie,https://biolit.fr/wp-content/uploads/jet-form-builder/cfcedc080d62c99a1d6dce0dc72a87c4/2025/09/IMG_1898-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cfcedc080d62c99a1d6dce0dc72a87c4/2025/09/IMG_1899-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cfcedc080d62c99a1d6dce0dc72a87c4/2025/09/IMG_1900-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cfcedc080d62c99a1d6dce0dc72a87c4/2025/09/IMG_1901-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cfcedc080d62c99a1d6dce0dc72a87c4/2025/09/IMG_1902-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cfcedc080d62c99a1d6dce0dc72a87c4/2025/09/IMG_1903-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cfcedc080d62c99a1d6dce0dc72a87c4/2025/09/IMG_1904-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cfcedc080d62c99a1d6dce0dc72a87c4/2025/09/IMG_1905-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/cfcedc080d62c99a1d6dce0dc72a87c4/2025/09/IMG_1906-scaled.jpeg,09/06/2025,15.0000000,15.0000000,47.266764000000,-2.45411400000000,,"Plage de govelle, batz sur mer, Loire-Atlantique",105071,Observation #105071,https://biolit.fr/observations/observation-105071/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/cfcedc080d62c99a1d6dce0dc72a87c4/2025/09/IMG_1898-scaled.jpeg,,TRUE,non-identifiable +N1,105118,Sortie #105118,https://biolit.fr/sorties/sortie-105118/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,6/26/2025 0:00,15.0000000,16.0000000,48.7038640000000,-1.84446400000000,Centre Virginie Hériot,Plage Potelet,105119,Observation #105119,https://biolit.fr/observations/observation-105119/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg,,,Identifiable +N1,105118,Sortie #105118,https://biolit.fr/sorties/sortie-105118/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,6/26/2025 0:00,15.0000000,16.0000000,48.7038640000000,-1.84446400000000,Centre Virginie Hériot,Plage Potelet,105121,Observation #105121,https://biolit.fr/observations/observation-105121/,Dendrodoa grossularia,Ascidie groseille,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg,,,Identifiable +N1,105118,Sortie #105118,https://biolit.fr/sorties/sortie-105118/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,6/26/2025 0:00,15.0000000,16.0000000,48.7038640000000,-1.84446400000000,Centre Virginie Hériot,Plage Potelet,105123,Observation #105123,https://biolit.fr/observations/observation-105123/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg,,TRUE,Identifiable +N1,105118,Sortie #105118,https://biolit.fr/sorties/sortie-105118/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,6/26/2025 0:00,15.0000000,16.0000000,48.7038640000000,-1.84446400000000,Centre Virginie Hériot,Plage Potelet,105125,Observation #105125,https://biolit.fr/observations/observation-105125/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg,,,Identifiable +N1,105118,Sortie #105118,https://biolit.fr/sorties/sortie-105118/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,6/26/2025 0:00,15.0000000,16.0000000,48.7038640000000,-1.84446400000000,Centre Virginie Hériot,Plage Potelet,105127,Observation #105127,https://biolit.fr/observations/observation-105127/,Botryllus sp. 1,Botrylle,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg,,,Identifiable +N1,105118,Sortie #105118,https://biolit.fr/sorties/sortie-105118/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,6/26/2025 0:00,15.0000000,16.0000000,48.7038640000000,-1.84446400000000,Centre Virginie Hériot,Plage Potelet,105129,Observation #105129,https://biolit.fr/observations/observation-105129/,Botrylloides diegensis,Botrylle de San Diego,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg,,TRUE,Identifiable +N1,105118,Sortie #105118,https://biolit.fr/sorties/sortie-105118/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,6/26/2025 0:00,15.0000000,16.0000000,48.7038640000000,-1.84446400000000,Centre Virginie Hériot,Plage Potelet,105131,Observation #105131,https://biolit.fr/observations/observation-105131/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg,,,Identifiable +N1,105118,Sortie #105118,https://biolit.fr/sorties/sortie-105118/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,6/26/2025 0:00,15.0000000,16.0000000,48.7038640000000,-1.84446400000000,Centre Virginie Hériot,Plage Potelet,105133,Observation #105133,https://biolit.fr/observations/observation-105133/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg,,TRUE,Identifiable +N1,105118,Sortie #105118,https://biolit.fr/sorties/sortie-105118/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,6/26/2025 0:00,15.0000000,16.0000000,48.7038640000000,-1.84446400000000,Centre Virginie Hériot,Plage Potelet,105135,Observation #105135,https://biolit.fr/observations/observation-105135/,Ciona intestinalis,Cione intestinale,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg,,,Identifiable +N1,105118,Sortie #105118,https://biolit.fr/sorties/sortie-105118/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,6/26/2025 0:00,15.0000000,16.0000000,48.7038640000000,-1.84446400000000,Centre Virginie Hériot,Plage Potelet,105137,Observation #105137,https://biolit.fr/observations/observation-105137/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg,,,Identifiable +N1,105118,Sortie #105118,https://biolit.fr/sorties/sortie-105118/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,6/26/2025 0:00,15.0000000,16.0000000,48.7038640000000,-1.84446400000000,Centre Virginie Hériot,Plage Potelet,105139,Observation #105139,https://biolit.fr/observations/observation-105139/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg,,TRUE,Identifiable +N1,105118,Sortie #105118,https://biolit.fr/sorties/sortie-105118/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,6/26/2025 0:00,15.0000000,16.0000000,48.7038640000000,-1.84446400000000,Centre Virginie Hériot,Plage Potelet,105141,Observation #105141,https://biolit.fr/observations/observation-105141/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg,,,Identifiable +N1,105118,Sortie #105118,https://biolit.fr/sorties/sortie-105118/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,6/26/2025 0:00,15.0000000,16.0000000,48.7038640000000,-1.84446400000000,Centre Virginie Hériot,Plage Potelet,105143,Observation #105143,https://biolit.fr/observations/observation-105143/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg,,,Identifiable +N1,105118,Sortie #105118,https://biolit.fr/sorties/sortie-105118/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,6/26/2025 0:00,15.0000000,16.0000000,48.7038640000000,-1.84446400000000,Centre Virginie Hériot,Plage Potelet,105145,Observation #105145,https://biolit.fr/observations/observation-105145/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg,,,Identifiable +N1,105118,Sortie #105118,https://biolit.fr/sorties/sortie-105118/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,6/26/2025 0:00,15.0000000,16.0000000,48.7038640000000,-1.84446400000000,Centre Virginie Hériot,Plage Potelet,105147,Observation #105147,https://biolit.fr/observations/observation-105147/,Macropodia rostrata,Macropode rostré,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,,,Identifiable +N1,105118,Sortie #105118,https://biolit.fr/sorties/sortie-105118/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Asterie-bossue-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-San-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-a-points-noirs-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Callyostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-intestinalis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-oeufs-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,6/26/2025 0:00,15.0000000,16.0000000,48.7038640000000,-1.84446400000000,Centre Virginie Hériot,Plage Potelet,105149,Observation #105149,https://biolit.fr/observations/observation-105149/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250626151220-scaled.jpg,,,Ne sais pas +N1,105158,Sortie #105158,https://biolit.fr/sorties/sortie-105158/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_083004045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_083220787.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_085003466-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_085635761-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_090459866.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_090807440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_091346724.MP_-scaled.jpg,09/08/2025,10.0000000,12.0000000,43.5515590000000,4.00569100000000,LABELBLEU,Plage du Petit travers,105159,Observation #105159,https://biolit.fr/observations/observation-105159/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_083004045-scaled.jpg,,,Identifiable +N1,105158,Sortie #105158,https://biolit.fr/sorties/sortie-105158/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_083004045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_083220787.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_085003466-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_085635761-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_090459866.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_090807440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_091346724.MP_-scaled.jpg,09/08/2025,10.0000000,12.0000000,43.5515590000000,4.00569100000000,LABELBLEU,Plage du Petit travers,105161,Observation #105161,https://biolit.fr/observations/observation-105161/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_083220787.MP_-scaled.jpg,,,Identifiable +N1,105158,Sortie #105158,https://biolit.fr/sorties/sortie-105158/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_083004045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_083220787.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_085003466-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_085635761-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_090459866.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_090807440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_091346724.MP_-scaled.jpg,09/08/2025,10.0000000,12.0000000,43.5515590000000,4.00569100000000,LABELBLEU,Plage du Petit travers,105163,Observation #105163,https://biolit.fr/observations/observation-105163/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_085003466-scaled.jpg,,,Identifiable +N1,105158,Sortie #105158,https://biolit.fr/sorties/sortie-105158/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_083004045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_083220787.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_085003466-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_085635761-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_090459866.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_090807440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_091346724.MP_-scaled.jpg,09/08/2025,10.0000000,12.0000000,43.5515590000000,4.00569100000000,LABELBLEU,Plage du Petit travers,105165,Observation #105165,https://biolit.fr/observations/observation-105165/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_085635761-scaled.jpg,,TRUE,Identifiable +N1,105158,Sortie #105158,https://biolit.fr/sorties/sortie-105158/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_083004045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_083220787.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_085003466-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_085635761-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_090459866.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_090807440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_091346724.MP_-scaled.jpg,09/08/2025,10.0000000,12.0000000,43.5515590000000,4.00569100000000,LABELBLEU,Plage du Petit travers,105167,Observation #105167,https://biolit.fr/observations/observation-105167/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_090459866.MP_-scaled.jpg,,,Ne sais pas +N1,105158,Sortie #105158,https://biolit.fr/sorties/sortie-105158/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_083004045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_083220787.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_085003466-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_085635761-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_090459866.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_090807440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_091346724.MP_-scaled.jpg,09/08/2025,10.0000000,12.0000000,43.5515590000000,4.00569100000000,LABELBLEU,Plage du Petit travers,105169,Observation #105169,https://biolit.fr/observations/observation-105169/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_090807440-scaled.jpg,,,non-identifiable +N1,105158,Sortie #105158,https://biolit.fr/sorties/sortie-105158/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_083004045-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_083220787.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_085003466-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_085635761-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_090459866.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_090807440-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_091346724.MP_-scaled.jpg,09/08/2025,10.0000000,12.0000000,43.5515590000000,4.00569100000000,LABELBLEU,Plage du Petit travers,105171,Observation #105171,https://biolit.fr/observations/observation-105171/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/09/PXL_20250908_091346724.MP_-scaled.jpg,,TRUE,Identifiable +N1,105180,Sortie #105180,https://biolit.fr/sorties/sortie-105180/,SORIN ROBIN,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022664-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022665-scaled.jpg,09/05/2025,10.0:57,11.000005,48.2081980,-2.068796,,Douarnenez,105181,Observation #105181,https://biolit.fr/observations/observation-105181/,Acinetospora crinita,Algues brunes filamenteuses,,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022664-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022665-scaled.jpg,,,Identifiable +N1,105184,Sortie #105184,https://biolit.fr/sorties/sortie-105184/,SORIN ROBIN,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022670-scaled.jpg,09/05/2025,11.0:39,11.0000000,48.1869290,-1.9877700,,Douarnenez,105185,Observation #105185,https://biolit.fr/observations/observation-105185/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022670-scaled.jpg,,,Identifiable +N1,105188,Sortie #105188,https://biolit.fr/sorties/sortie-105188/,SORIN ROBIN,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022666-scaled.jpg,09/05/2025,12.0000000,12.000001,48.1729950,-1.911236,,Kelaz,105189,Observation #105189,https://biolit.fr/observations/observation-105189/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022666-scaled.jpg,,,Identifiable +N1,105193,Sortie #105193,https://biolit.fr/sorties/sortie-105193/,SORIN ROBIN,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022679-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022680-scaled.jpg,09/07/2025,14.0:15,14.0:25,48.1776750,-1.9181540,,Crozon,105194,Observation #105194,https://biolit.fr/observations/observation-105194/,Solen marginatus,Couteau-gaine,,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022679-scaled.jpg,,,Identifiable +N1,105193,Sortie #105193,https://biolit.fr/sorties/sortie-105193/,SORIN ROBIN,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022679-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022680-scaled.jpg,09/07/2025,14.0:15,14.0:25,48.1776750,-1.9181540,,Crozon,105196,Observation #105196,https://biolit.fr/observations/observation-105196/,Ascophyllum nodosum,Ascophylle,,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022680-scaled.jpg,,,Identifiable +N1,105201,Sortie #105201,https://biolit.fr/sorties/sortie-105201/,SORIN ROBIN,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022838-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022839-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022840-scaled.jpg,09/08/2025,11.0000000,11.0:52,48.1765130,-1.9206740,,Plougonvelin,,,,,,,,,, +N1,105205,Sortie #105205,https://biolit.fr/sorties/sortie-105205/,SORIN ROBIN,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022838-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022839-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022840-1-scaled.jpg,09/08/2025,11.0:53,11.0:56,48.1670680,-1.874811,,Plougonvelin,105206,Observation #105206,https://biolit.fr/observations/observation-105206/,Balanus crenatus,Balane crénelée,,https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022838-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022839-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/7f630ad2af39e58789a84cdb2b7b64c0/2025/09/1000022840-1-scaled.jpg,,,Identifiable +N1,105224,Sortie #105224,https://biolit.fr/sorties/sortie-105224/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8120003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8120007-scaled.jpg,08/12/2025,12.0000000,12.0:45,48.2357020000000,-4.49053300000000,,Plage du Porzic,105225,Observation #105225,https://biolit.fr/observations/observation-105225/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8120003-scaled.jpg,,,Identifiable +N1,105224,Sortie #105224,https://biolit.fr/sorties/sortie-105224/,"""Goascoz Marion""",https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8120003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8120007-scaled.jpg,08/12/2025,12.0000000,12.0:45,48.2357020000000,-4.49053300000000,,Plage du Porzic,105227,Observation #105227,https://biolit.fr/observations/observation-105227/,Aulactinia verrucosa,Anémone gemme,,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8120007-scaled.jpg,,,Identifiable +N1,105244,Sortie #105244,https://biolit.fr/sorties/sortie-105244/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140107-scaled.jpg,8/14/2025 0:00,15.0:45,17.0000000,48.1969270000000,-4.55147300000000,,Plage de la Palue,105245,Observation #105245,https://biolit.fr/observations/observation-105245/,Idotea emarginata,Idotée échancrée,,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140037-scaled.jpg,,,Identifiable +N1,105244,Sortie #105244,https://biolit.fr/sorties/sortie-105244/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140107-scaled.jpg,8/14/2025 0:00,15.0:45,17.0000000,48.1969270000000,-4.55147300000000,,Plage de la Palue,105247,Observation #105247,https://biolit.fr/observations/observation-105247/,Idotea balthica,Idotée de la Baltique,,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140063-scaled.jpg,,,Identifiable +N1,105244,Sortie #105244,https://biolit.fr/sorties/sortie-105244/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140107-scaled.jpg,8/14/2025 0:00,15.0:45,17.0000000,48.1969270000000,-4.55147300000000,,Plage de la Palue,105249,Observation #105249,https://biolit.fr/observations/observation-105249/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140041-scaled.jpg,,,Ne sais pas +N1,105244,Sortie #105244,https://biolit.fr/sorties/sortie-105244/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140107-scaled.jpg,8/14/2025 0:00,15.0:45,17.0000000,48.1969270000000,-4.55147300000000,,Plage de la Palue,105251,Observation #105251,https://biolit.fr/observations/observation-105251/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140051-scaled.jpg,,,Ne sais pas +N1,105244,Sortie #105244,https://biolit.fr/sorties/sortie-105244/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140107-scaled.jpg,8/14/2025 0:00,15.0:45,17.0000000,48.1969270000000,-4.55147300000000,,Plage de la Palue,105253,Observation #105253,https://biolit.fr/observations/observation-105253/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140066-scaled.jpg,,,Ne sais pas +N1,105244,Sortie #105244,https://biolit.fr/sorties/sortie-105244/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140107-scaled.jpg,8/14/2025 0:00,15.0:45,17.0000000,48.1969270000000,-4.55147300000000,,Plage de la Palue,105255,Observation #105255,https://biolit.fr/observations/observation-105255/,Patella pellucida,Helcion,,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140081-scaled.jpg,,,Identifiable +N1,105244,Sortie #105244,https://biolit.fr/sorties/sortie-105244/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140107-scaled.jpg,8/14/2025 0:00,15.0:45,17.0000000,48.1969270000000,-4.55147300000000,,Plage de la Palue,105257,Observation #105257,https://biolit.fr/observations/observation-105257/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140082-scaled.jpg,,,Ne sais pas +N1,105244,Sortie #105244,https://biolit.fr/sorties/sortie-105244/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140107-scaled.jpg,8/14/2025 0:00,15.0:45,17.0000000,48.1969270000000,-4.55147300000000,,Plage de la Palue,105259,Observation #105259,https://biolit.fr/observations/observation-105259/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140083-scaled.jpg,,,Identifiable +N1,105244,Sortie #105244,https://biolit.fr/sorties/sortie-105244/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140107-scaled.jpg,8/14/2025 0:00,15.0:45,17.0000000,48.1969270000000,-4.55147300000000,,Plage de la Palue,105261,Observation #105261,https://biolit.fr/observations/observation-105261/,Palaemon serratus,Grande crevette rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140087-scaled.jpg,,,Identifiable +N1,105244,Sortie #105244,https://biolit.fr/sorties/sortie-105244/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140107-scaled.jpg,8/14/2025 0:00,15.0:45,17.0000000,48.1969270000000,-4.55147300000000,,Plage de la Palue,105263,Observation #105263,https://biolit.fr/observations/observation-105263/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140092-scaled.jpg,,,Ne sais pas +N1,105244,Sortie #105244,https://biolit.fr/sorties/sortie-105244/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140107-scaled.jpg,8/14/2025 0:00,15.0:45,17.0000000,48.1969270000000,-4.55147300000000,,Plage de la Palue,105265,Observation #105265,https://biolit.fr/observations/observation-105265/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140105-scaled.jpg,,,Ne sais pas +N1,105244,Sortie #105244,https://biolit.fr/sorties/sortie-105244/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140107-scaled.jpg,8/14/2025 0:00,15.0:45,17.0000000,48.1969270000000,-4.55147300000000,,Plage de la Palue,105267,Observation #105267,https://biolit.fr/observations/observation-105267/,Fucus vesiculosus,Fucus vésiculeux,,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140106-scaled.jpg,,,Identifiable +N1,105244,Sortie #105244,https://biolit.fr/sorties/sortie-105244/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140107-scaled.jpg,8/14/2025 0:00,15.0:45,17.0000000,48.1969270000000,-4.55147300000000,,Plage de la Palue,105269,Observation #105269,https://biolit.fr/observations/observation-105269/,Fucus spiralis,Fucus spiralé,,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140107-scaled.jpg,,,Identifiable +N1,105244,Sortie #105244,https://biolit.fr/sorties/sortie-105244/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140037-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140041-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140044-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140051-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140060-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140063-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140081-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140082-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140083-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140087-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140092-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140107-scaled.jpg,8/14/2025 0:00,15.0:45,17.0000000,48.1969270000000,-4.55147300000000,,Plage de la Palue,105271,Observation #105271,https://biolit.fr/observations/observation-105271/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/f4a455858bc47cf013685e06c6ed5480/2025/09/P8140105-scaled.jpg,,,Ne sais pas +N1,105377,Sortie #105377,https://biolit.fr/sorties/sortie-105377/,WAMBERGUE QUENTIN,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1192-3-scaled.jpg,09/12/2025,0.0:22,12.0000000,49.3138840000000,-0.0416710000000000,,Plage des vaches noires - Villers sur Mer ( Calvados ),,,,,,,,,, +N1,105380,Sortie #105380,https://biolit.fr/sorties/sortie-105380/,WAMBERGUE QUENTIN,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1203-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1204-1-scaled.jpg,09/12/2025,0.0:22,12.0000000,49.3149440000000,-0.0423360000000000,,Plage des vaches noires - Villers sur Mer ( Calvados ),,,,,,,,,, +N1,105382,Sortie #105382,https://biolit.fr/sorties/sortie-105382/,WAMBERGUE QUENTIN,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1214-scaled.jpg,09/12/2025,0.0:22,12.0000000,49.3141640000000,-0.0412420000000000,,Plage des vaches noires - Villers sur Mer ( Calvados ),105383,Observation #105383,https://biolit.fr/observations/observation-105383/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1214-scaled.jpg,,,Identifiable +N1,105386,Sortie #105386,https://biolit.fr/sorties/sortie-105386/,WAMBERGUE QUENTIN,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1211-1-scaled.jpg,09/12/2025,0.0:22,12.0000000,49.3166500000000,-0.0259210000000000,,Plage des vaches noires - Villers sur Mer ( Calvados ),,,,,,,,,, +N1,105388,Sortie #105388,https://biolit.fr/sorties/sortie-105388/,WAMBERGUE QUENTIN,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1206-scaled.jpg,09/12/2025,0.0:22,12.0000000,49.3135490000000,-0.042272000000000,,Plage des vaches noires - Villers sur Mer ( Calvados ),,,,,,,,,, +N1,105390,Sortie #105390,https://biolit.fr/sorties/sortie-105390/,WAMBERGUE QUENTIN,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1216-scaled.jpg,09/12/2025,0.0:22,12.0000000,49.3139960000000,-0.0411560000000000,,Plage des vaches noires - Villers sur Mer ( Calvados ),,,,,,,,,, +N1,105392,Sortie #105392,https://biolit.fr/sorties/sortie-105392/,WAMBERGUE QUENTIN,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1209-scaled.jpg,09/12/2025,0.0:22,12.0000000,49.313605000000,-0.0416710000000000,,Plage des vaches noires - Villers sur Mer,,,,,,,,,, +N1,105394,Sortie #105394,https://biolit.fr/sorties/sortie-105394/,WAMBERGUE QUENTIN,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1212-scaled.jpg,09/12/2025,0.0:22,12.0000000,49.3139400000000,-0.0416710000000000,,Plage des vaches noires - Villers sur Mer ( Calvados ),,,,,,,,,, +N1,105396,Sortie #105396,https://biolit.fr/sorties/sortie-105396/,WAMBERGUE QUENTIN,FALSE,09/12/2025,0.0:22,12.0000000,49.3133250000000,-0.0415850000000000,,Plage des vaches noires - Villers sur Mer,,,,,,,,,, +N1,105400,Sortie #105400,https://biolit.fr/sorties/sortie-105400/,WAMBERGUE QUENTIN,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1219-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1219-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1220-scaled.jpg,09/12/2025,0.0:22,12.0000000,49.3139400000000,-0.0417570000000000,,Plage des vaches noires - Villers sur Mer ( Calvados ),105401,Observation #105401,https://biolit.fr/observations/observation-105401/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1219-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1220-scaled.jpg,,, +N1,105400,Sortie #105400,https://biolit.fr/sorties/sortie-105400/,WAMBERGUE QUENTIN,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1219-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1219-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1220-scaled.jpg,09/12/2025,0.0:22,12.0000000,49.3139400000000,-0.0417570000000000,,Plage des vaches noires - Villers sur Mer ( Calvados ),105403,Observation #105403,https://biolit.fr/observations/observation-105403/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1219-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1220-scaled.jpg,,,Ne sais pas +N1,105400,Sortie #105400,https://biolit.fr/sorties/sortie-105400/,WAMBERGUE QUENTIN,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1219-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1219-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1220-scaled.jpg,09/12/2025,0.0:22,12.0000000,49.3139400000000,-0.0417570000000000,,Plage des vaches noires - Villers sur Mer ( Calvados ),105405,Observation #105405,https://biolit.fr/observations/observation-105405/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1220-scaled.jpg,,, +N1,105408,Sortie #105408,https://biolit.fr/sorties/sortie-105408/,WAMBERGUE QUENTIN,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1222-scaled.jpg,09/12/2025,0.0:22,12.0000000,49.3134930000000,-0.0416710000000000,,Plage des vaches noires - Villers sur Mer,,,,,,,,,, +N1,105410,Sortie #105410,https://biolit.fr/sorties/sortie-105410/,WAMBERGUE QUENTIN,FALSE,09/12/2025,0.0:22,12.0000000,49.3125970000000,-0.0446750000000000,,Plage des vaches noires - Villers sur Mer ( Calvados ),,,,,,,,,, +N1,105412,Sortie #105412,https://biolit.fr/sorties/sortie-105412/,WAMBERGUE QUENTIN,https://biolit.fr/wp-content/uploads/jet-form-builder/d1cee5b5b56e02541c05884e09a5b34b/2025/09/IMG_1199-scaled.jpg,09/12/2025,0.0:22,12.0000000,49.3135490000000,-0.0421000000000000,,Plage des vaches noires - Villers sur Mer,,,,,,,,,, +N1,105414,Sortie #105414,https://biolit.fr/sorties/sortie-105414/,WAMBERGUE QUENTIN,FALSE,09/12/2025,0.0:22,12.0000000,49.313605000000,-0.0414130000000000,,Plage des vaches noires - Villers sur Mer,,,,,,,,,, +N1,105462,Sortie #105462,https://biolit.fr/sorties/sortie-105462/,Peschard LAETITIA,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a5c0fe7fa5cc3ca4f79a60b8c0636da1/2025/09/1000055123.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a5c0fe7fa5cc3ca4f79a60b8c0636da1/2025/09/1000055122.jpg,9/17/2025 0:00,19.0:55,19.0:55,47.4774660,-3.1093390,,Quiberon grande plage,,,,,,,,,, +N1,105463,Sortie #105463,https://biolit.fr/sorties/sortie-105463/,Peschard LAETITIA,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a5c0fe7fa5cc3ca4f79a60b8c0636da1/2025/09/1000055122.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a5c0fe7fa5cc3ca4f79a60b8c0636da1/2025/09/1000055123.jpg,9/17/2025 0:00,19.0:55,19.0:55,47.4709250000000,-3.10183700000000,,Quiberon grande plage,,,,,,,,,, +N1,105480,Sortie #105480,https://biolit.fr/sorties/sortie-105480/,Peschard LAETITIA,FALSE,9/18/2025 0:00,16.0:53,16.0:55,47.47801,-3.108675,Escale Bretagne,Quiberon grande plage,,,,,,,,,, +N1,105483,Sortie #105483,https://biolit.fr/sorties/sortie-105483/,paugam marc,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/94907bd46319e1a24e980928655351fa/2025/09/IMG-20250919-WA0001.jpg,9/19/2025 0:00,16.0000000,16.0000000,48.3544290000000,-4.67474400000000,,portez loc maria plouzane,105484,Observation #105484,https://biolit.fr/observations/observation-105484/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/94907bd46319e1a24e980928655351fa/2025/09/IMG-20250919-WA0001.jpg,,TRUE,Identifiable +N1,105490,Sortie #105490,https://biolit.fr/sorties/sortie-105490/,Chevanne Jean,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a4cc3bc693afb4f595bdd01898282522/2025/09/20250920_101431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a4cc3bc693afb4f595bdd01898282522/2025/09/20250920_100049-scaled.jpg,9/20/2025 0:00,11.000008,12.000008,43.2842570000000,5.31574800000000,Planète Mer,Plage saint Estève,105491,Observation #105491,https://biolit.fr/observations/observation-105491/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a4cc3bc693afb4f595bdd01898282522/2025/09/20250920_101431-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a4cc3bc693afb4f595bdd01898282522/2025/09/20250920_100049-scaled.jpg,,,Ne sais pas +N1,105513,Sortie #105513,https://biolit.fr/sorties/sortie-105513/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-6-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9401380000000,-4.40507000000000,,Penhors,105514,Observation #105514,https://biolit.fr/observations/observation-105514/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1b-scaled.jpg,,TRUE,Identifiable +N1,105513,Sortie #105513,https://biolit.fr/sorties/sortie-105513/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-6-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9401380000000,-4.40507000000000,,Penhors,105516,Observation #105516,https://biolit.fr/observations/observation-105516/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/asterie-bossue-scaled.jpg,,TRUE,Identifiable +N1,105513,Sortie #105513,https://biolit.fr/sorties/sortie-105513/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-6-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9401380000000,-4.40507000000000,,Penhors,105518,Observation #105518,https://biolit.fr/observations/observation-105518/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1b-scaled.jpg,,TRUE,Identifiable +N1,105513,Sortie #105513,https://biolit.fr/sorties/sortie-105513/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-6-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9401380000000,-4.40507000000000,,Penhors,105520,Observation #105520,https://biolit.fr/observations/observation-105520/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1b-scaled.jpg,,TRUE,Identifiable +N1,105513,Sortie #105513,https://biolit.fr/sorties/sortie-105513/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-6-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9401380000000,-4.40507000000000,,Penhors,105522,Observation #105522,https://biolit.fr/observations/observation-105522/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-vert-scaled.jpg,,,Identifiable +N1,105513,Sortie #105513,https://biolit.fr/sorties/sortie-105513/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-6-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9401380000000,-4.40507000000000,,Penhors,105524,Observation #105524,https://biolit.fr/observations/observation-105524/,Athanas nitescens,Crevette à capuchon,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1b-scaled.jpg,,,Identifiable +N1,105513,Sortie #105513,https://biolit.fr/sorties/sortie-105513/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-6-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9401380000000,-4.40507000000000,,Penhors,105526,Observation #105526,https://biolit.fr/observations/observation-105526/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1b-scaled.jpg,,,Identifiable +N1,105513,Sortie #105513,https://biolit.fr/sorties/sortie-105513/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-6-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9401380000000,-4.40507000000000,,Penhors,105528,Observation #105528,https://biolit.fr/observations/observation-105528/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-commune-scaled.jpg,,,Identifiable +N1,105513,Sortie #105513,https://biolit.fr/sorties/sortie-105513/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-6-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9401380000000,-4.40507000000000,,Penhors,105530,Observation #105530,https://biolit.fr/observations/observation-105530/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1b-scaled.jpg,,,Identifiable +N1,105513,Sortie #105513,https://biolit.fr/sorties/sortie-105513/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-6-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9401380000000,-4.40507000000000,,Penhors,105532,Observation #105532,https://biolit.fr/observations/observation-105532/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-2-scaled.jpg,,TRUE,Identifiable +N1,105513,Sortie #105513,https://biolit.fr/sorties/sortie-105513/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-6-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9401380000000,-4.40507000000000,,Penhors,105534,Observation #105534,https://biolit.fr/observations/observation-105534/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-3-scaled.jpg,,,Identifiable +N1,105513,Sortie #105513,https://biolit.fr/sorties/sortie-105513/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-6-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9401380000000,-4.40507000000000,,Penhors,105536,Observation #105536,https://biolit.fr/observations/observation-105536/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-4-scaled.jpg,,,Identifiable +N1,105513,Sortie #105513,https://biolit.fr/sorties/sortie-105513/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-6-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9401380000000,-4.40507000000000,,Penhors,105538,Observation #105538,https://biolit.fr/observations/observation-105538/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-5-scaled.jpg,,,Identifiable +N1,105513,Sortie #105513,https://biolit.fr/sorties/sortie-105513/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/anemone-de-mer-verte-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/botrylle-etoile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-de-pierre-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/crevette-a-capuchon-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/eponge-mie-de-pain-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-commune-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-6-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9401380000000,-4.40507000000000,,Penhors,105540,Observation #105540,https://biolit.fr/observations/observation-105540/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-6-scaled.jpg,,,Identifiable +N1,105562,Sortie #105562,https://biolit.fr/sorties/sortie-105562/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etrille-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etrille-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/fraise-de-mer-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/fraise-de-mer-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/gobie-a-grosse-tete-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/gobie-a-grosse-tete-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1d-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1e-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1f-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1g-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1h-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1i-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1j-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1k-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/mordocet-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400160000000,-4.40536200000000,,Penhors,105563,Observation #105563,https://biolit.fr/observations/observation-105563/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-7-scaled.jpg,,,Identifiable +N1,105562,Sortie #105562,https://biolit.fr/sorties/sortie-105562/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etrille-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etrille-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/fraise-de-mer-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/fraise-de-mer-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/gobie-a-grosse-tete-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/gobie-a-grosse-tete-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1d-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1e-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1f-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1g-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1h-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1i-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1j-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1k-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/mordocet-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400160000000,-4.40536200000000,,Penhors,105565,Observation #105565,https://biolit.fr/observations/observation-105565/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-8-scaled.jpg,,,Identifiable +N1,105562,Sortie #105562,https://biolit.fr/sorties/sortie-105562/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etrille-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etrille-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/fraise-de-mer-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/fraise-de-mer-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/gobie-a-grosse-tete-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/gobie-a-grosse-tete-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1d-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1e-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1f-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1g-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1h-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1i-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1j-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1k-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/mordocet-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400160000000,-4.40536200000000,,Penhors,105567,Observation #105567,https://biolit.fr/observations/observation-105567/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etrille-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etrille-1b-scaled.jpg,,,Identifiable +N1,105562,Sortie #105562,https://biolit.fr/sorties/sortie-105562/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etrille-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etrille-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/fraise-de-mer-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/fraise-de-mer-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/gobie-a-grosse-tete-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/gobie-a-grosse-tete-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1d-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1e-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1f-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1g-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1h-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1i-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1j-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1k-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/mordocet-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400160000000,-4.40536200000000,,Penhors,105569,Observation #105569,https://biolit.fr/observations/observation-105569/,Actinia fragacea,Anémone fraise,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/fraise-de-mer-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/fraise-de-mer-1a-scaled.jpg,,TRUE,Identifiable +N1,105562,Sortie #105562,https://biolit.fr/sorties/sortie-105562/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etrille-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etrille-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/fraise-de-mer-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/fraise-de-mer-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/gobie-a-grosse-tete-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/gobie-a-grosse-tete-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1d-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1e-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1f-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1g-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1h-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1i-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1j-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1k-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/mordocet-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400160000000,-4.40536200000000,,Penhors,105571,Observation #105571,https://biolit.fr/observations/observation-105571/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/gobie-a-grosse-tete-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/gobie-a-grosse-tete-1b-scaled.jpg,,,Identifiable +N1,105562,Sortie #105562,https://biolit.fr/sorties/sortie-105562/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etrille-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etrille-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/fraise-de-mer-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/fraise-de-mer-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/gobie-a-grosse-tete-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/gobie-a-grosse-tete-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1d-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1e-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1f-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1g-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1h-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1i-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1j-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1k-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/mordocet-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400160000000,-4.40536200000000,,Penhors,105573,Observation #105573,https://biolit.fr/observations/observation-105573/,Aplysia punctata,Lièvre de mer moucheté,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1k-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1h-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1f-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1e-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1g-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1i-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1j-scaled.jpg,,,Identifiable +N1,105562,Sortie #105562,https://biolit.fr/sorties/sortie-105562/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etoile-de-mer-glaciaire-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etrille-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/etrille-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/fraise-de-mer-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/fraise-de-mer-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/gobie-a-grosse-tete-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/gobie-a-grosse-tete-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1d-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1e-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1f-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1g-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1h-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1i-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1j-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/lievre-de-mer-mouchete-1k-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/mordocet-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400160000000,-4.40536200000000,,Penhors,105575,Observation #105575,https://biolit.fr/observations/observation-105575/,Lipophrys pholis,Mordocet,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/mordocet-scaled.jpg,,,Identifiable +N1,105597,Sortie #105597,https://biolit.fr/sorties/sortie-105597/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-7-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400300000000,-4.40487700000000,,Penhors,105598,Observation #105598,https://biolit.fr/observations/observation-105598/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1c-scaled.jpg,,, +N1,105597,Sortie #105597,https://biolit.fr/sorties/sortie-105597/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-7-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400300000000,-4.40487700000000,,Penhors,105600,Observation #105600,https://biolit.fr/observations/observation-105600/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-2-scaled.jpg,,,Ne sais pas +N1,105597,Sortie #105597,https://biolit.fr/sorties/sortie-105597/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-7-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400300000000,-4.40487700000000,,Penhors,105602,Observation #105602,https://biolit.fr/observations/observation-105602/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-3-scaled.jpg,,,Ne sais pas +N1,105597,Sortie #105597,https://biolit.fr/sorties/sortie-105597/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-7-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400300000000,-4.40487700000000,,Penhors,105604,Observation #105604,https://biolit.fr/observations/observation-105604/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-5-scaled.jpg,,,Ne sais pas +N1,105597,Sortie #105597,https://biolit.fr/sorties/sortie-105597/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-7-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400300000000,-4.40487700000000,,Penhors,105606,Observation #105606,https://biolit.fr/observations/observation-105606/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1a-scaled.jpg,,,Identifiable +N1,105597,Sortie #105597,https://biolit.fr/sorties/sortie-105597/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-7-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400300000000,-4.40487700000000,,Penhors,105608,Observation #105608,https://biolit.fr/observations/observation-105608/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1c-scaled.jpg,,,Identifiable +N1,105597,Sortie #105597,https://biolit.fr/sorties/sortie-105597/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-7-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400300000000,-4.40487700000000,,Penhors,105610,Observation #105610,https://biolit.fr/observations/observation-105610/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2-scaled.jpg,,,Identifiable +N1,105597,Sortie #105597,https://biolit.fr/sorties/sortie-105597/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-7-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400300000000,-4.40487700000000,,Penhors,105612,Observation #105612,https://biolit.fr/observations/observation-105612/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2b-scaled.jpg,,,Identifiable +N1,105597,Sortie #105597,https://biolit.fr/sorties/sortie-105597/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-7-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400300000000,-4.40487700000000,,Penhors,105614,Observation #105614,https://biolit.fr/observations/observation-105614/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-3-scaled.jpg,,,Identifiable +N1,105597,Sortie #105597,https://biolit.fr/sorties/sortie-105597/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-7-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400300000000,-4.40487700000000,,Penhors,105616,Observation #105616,https://biolit.fr/observations/observation-105616/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-4-scaled.jpg,,,Identifiable +N1,105597,Sortie #105597,https://biolit.fr/sorties/sortie-105597/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-7-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400300000000,-4.40487700000000,,Penhors,105618,Observation #105618,https://biolit.fr/observations/observation-105618/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-5-scaled.jpg,,,Identifiable +N1,105597,Sortie #105597,https://biolit.fr/sorties/sortie-105597/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-7-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400300000000,-4.40487700000000,,Penhors,105620,Observation #105620,https://biolit.fr/observations/observation-105620/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6b-scaled.jpg,,,Identifiable +N1,105597,Sortie #105597,https://biolit.fr/sorties/sortie-105597/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/NI-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ophiure-fragile-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-1c-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-2b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-6b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-7-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9400300000000,-4.40487700000000,,Penhors,105622,Observation #105622,https://biolit.fr/observations/observation-105622/,Psammechinus miliaris,Oursin vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/oursin-vert-7-scaled.jpg,,,Identifiable +N1,105638,Sortie #105638,https://biolit.fr/sorties/sortie-105638/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcelane-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcellane-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1b-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9399730000000,-4.405158000000,,Penhors,105639,Observation #105639,https://biolit.fr/observations/observation-105639/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-de-pourpre-scaled.jpg,,TRUE,Identifiable +N1,105638,Sortie #105638,https://biolit.fr/sorties/sortie-105638/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcelane-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcellane-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1b-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9399730000000,-4.405158000000,,Penhors,105641,Observation #105641,https://biolit.fr/observations/observation-105641/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-1-scaled.jpg,,TRUE,Identifiable +N1,105638,Sortie #105638,https://biolit.fr/sorties/sortie-105638/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcelane-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcellane-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1b-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9399730000000,-4.405158000000,,Penhors,105643,Observation #105643,https://biolit.fr/observations/observation-105643/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-2-scaled.jpg,,TRUE,Identifiable +N1,105638,Sortie #105638,https://biolit.fr/sorties/sortie-105638/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcelane-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcellane-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1b-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9399730000000,-4.405158000000,,Penhors,105645,Observation #105645,https://biolit.fr/observations/observation-105645/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-3-scaled.jpg,,TRUE,Identifiable +N1,105638,Sortie #105638,https://biolit.fr/sorties/sortie-105638/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcelane-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcellane-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1b-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9399730000000,-4.405158000000,,Penhors,105647,Observation #105647,https://biolit.fr/observations/observation-105647/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-4-scaled.jpg,,TRUE,Identifiable +N1,105638,Sortie #105638,https://biolit.fr/sorties/sortie-105638/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcelane-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcellane-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1b-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9399730000000,-4.405158000000,,Penhors,105649,Observation #105649,https://biolit.fr/observations/observation-105649/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcelane-grise-scaled.jpg,,TRUE,Identifiable +N1,105638,Sortie #105638,https://biolit.fr/sorties/sortie-105638/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcelane-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcellane-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1b-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9399730000000,-4.405158000000,,Penhors,105651,Observation #105651,https://biolit.fr/observations/observation-105651/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcellane-grise-2-scaled.jpg,,,Identifiable +N1,105638,Sortie #105638,https://biolit.fr/sorties/sortie-105638/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcelane-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcellane-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1b-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9399730000000,-4.405158000000,,Penhors,105653,Observation #105653,https://biolit.fr/observations/observation-105653/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1b-scaled.jpg,,TRUE,Identifiable +N1,105638,Sortie #105638,https://biolit.fr/sorties/sortie-105638/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcelane-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcellane-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1b-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9399730000000,-4.405158000000,,Penhors,105655,Observation #105655,https://biolit.fr/observations/observation-105655/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-2-scaled.jpg,,,Identifiable +N1,105638,Sortie #105638,https://biolit.fr/sorties/sortie-105638/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcelane-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcellane-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1b-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9399730000000,-4.405158000000,,Penhors,105657,Observation #105657,https://biolit.fr/observations/observation-105657/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-3-scaled.jpg,,TRUE,Identifiable +N1,105638,Sortie #105638,https://biolit.fr/sorties/sortie-105638/,Emma,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/ponte-lievre-de-mer-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcelane-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/porcellane-grise-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-1b-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tomate-de-mer-de-latlantique-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1b-scaled.jpg,9/18/2025 0:00,19.0000000,20.0:45,47.9399730000000,-4.405158000000,,Penhors,105659,Observation #105659,https://biolit.fr/observations/observation-105659/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1a-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5f82b64da824dae67613e57bfea7ca53/2025/09/tourteau-1b-scaled.jpg,,,Identifiable +N1,105667,Sortie #105667,https://biolit.fr/sorties/sortie-105667/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6744-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6741-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6743-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6760.jpeg,9/20/2025 0:00,10.0000000,10.0000000,43.2319320000000,5.43420600000000,Planète Mer,,105668,Observation #105668,https://biolit.fr/observations/observation-105668/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6734-scaled.jpeg,,TRUE,Identifiable +N1,105667,Sortie #105667,https://biolit.fr/sorties/sortie-105667/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6744-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6741-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6743-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6760.jpeg,9/20/2025 0:00,10.0000000,10.0000000,43.2319320000000,5.43420600000000,Planète Mer,,105670,Observation #105670,https://biolit.fr/observations/observation-105670/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6744-scaled.jpeg,,,Ne sais pas +N1,105667,Sortie #105667,https://biolit.fr/sorties/sortie-105667/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6744-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6741-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6743-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6760.jpeg,9/20/2025 0:00,10.0000000,10.0000000,43.2319320000000,5.43420600000000,Planète Mer,,105672,Observation #105672,https://biolit.fr/observations/observation-105672/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6741-scaled.jpeg,,, +N1,105667,Sortie #105667,https://biolit.fr/sorties/sortie-105667/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6744-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6741-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6743-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6760.jpeg,9/20/2025 0:00,10.0000000,10.0000000,43.2319320000000,5.43420600000000,Planète Mer,,105674,Observation #105674,https://biolit.fr/observations/observation-105674/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6743-scaled.jpeg,,TRUE,non-identifiable +N1,105667,Sortie #105667,https://biolit.fr/sorties/sortie-105667/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6744-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6741-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6743-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6760.jpeg,9/20/2025 0:00,10.0000000,10.0000000,43.2319320000000,5.43420600000000,Planète Mer,,105676,Observation #105676,https://biolit.fr/observations/observation-105676/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6742-scaled.jpeg,,,Ne sais pas +N1,105667,Sortie #105667,https://biolit.fr/sorties/sortie-105667/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6744-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6741-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6743-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6760.jpeg,9/20/2025 0:00,10.0000000,10.0000000,43.2319320000000,5.43420600000000,Planète Mer,,105678,Observation #105678,https://biolit.fr/observations/observation-105678/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6760.jpeg,,TRUE,Identifiable +N1,105695,Sortie #105695,https://biolit.fr/sorties/sortie-105695/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160115-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160182.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160183.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160184.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160188-scaled.jpg,8/16/2025 0:00,17.0000000,18.0000000,48.235254000000,-4.49011800000000,,Plage du Porzic,105696,Observation #105696,https://biolit.fr/observations/observation-105696/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160115-scaled.jpg,,TRUE,Identifiable +N1,105695,Sortie #105695,https://biolit.fr/sorties/sortie-105695/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160115-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160182.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160183.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160184.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160188-scaled.jpg,8/16/2025 0:00,17.0000000,18.0000000,48.235254000000,-4.49011800000000,,Plage du Porzic,105698,Observation #105698,https://biolit.fr/observations/observation-105698/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160116-scaled.jpg,,,Identifiable +N1,105695,Sortie #105695,https://biolit.fr/sorties/sortie-105695/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160115-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160182.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160183.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160184.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160188-scaled.jpg,8/16/2025 0:00,17.0000000,18.0000000,48.235254000000,-4.49011800000000,,Plage du Porzic,105700,Observation #105700,https://biolit.fr/observations/observation-105700/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160130-scaled.jpg,,,Identifiable +N1,105695,Sortie #105695,https://biolit.fr/sorties/sortie-105695/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160115-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160182.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160183.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160184.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160188-scaled.jpg,8/16/2025 0:00,17.0000000,18.0000000,48.235254000000,-4.49011800000000,,Plage du Porzic,105702,Observation #105702,https://biolit.fr/observations/observation-105702/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160133-scaled.jpg,,,Identifiable +N1,105695,Sortie #105695,https://biolit.fr/sorties/sortie-105695/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160115-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160182.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160183.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160184.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160188-scaled.jpg,8/16/2025 0:00,17.0000000,18.0000000,48.235254000000,-4.49011800000000,,Plage du Porzic,105704,Observation #105704,https://biolit.fr/observations/observation-105704/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160155-scaled.jpg,,,Identifiable +N1,105695,Sortie #105695,https://biolit.fr/sorties/sortie-105695/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160115-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160182.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160183.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160184.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160188-scaled.jpg,8/16/2025 0:00,17.0000000,18.0000000,48.235254000000,-4.49011800000000,,Plage du Porzic,105706,Observation #105706,https://biolit.fr/observations/observation-105706/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160156-scaled.jpg,,,Identifiable +N1,105695,Sortie #105695,https://biolit.fr/sorties/sortie-105695/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160115-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160182.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160183.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160184.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160188-scaled.jpg,8/16/2025 0:00,17.0000000,18.0000000,48.235254000000,-4.49011800000000,,Plage du Porzic,105708,Observation #105708,https://biolit.fr/observations/observation-105708/,Serpula vermicularis,Serpule,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160159-scaled.jpg,,,Identifiable +N1,105695,Sortie #105695,https://biolit.fr/sorties/sortie-105695/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160115-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160182.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160183.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160184.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160188-scaled.jpg,8/16/2025 0:00,17.0000000,18.0000000,48.235254000000,-4.49011800000000,,Plage du Porzic,105710,Observation #105710,https://biolit.fr/observations/observation-105710/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160161-scaled.jpg,,TRUE,Identifiable +N1,105695,Sortie #105695,https://biolit.fr/sorties/sortie-105695/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160115-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160182.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160183.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160184.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160188-scaled.jpg,8/16/2025 0:00,17.0000000,18.0000000,48.235254000000,-4.49011800000000,,Plage du Porzic,105712,Observation #105712,https://biolit.fr/observations/observation-105712/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160162-scaled.jpg,,,Identifiable +N1,105695,Sortie #105695,https://biolit.fr/sorties/sortie-105695/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160115-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160182.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160183.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160184.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160188-scaled.jpg,8/16/2025 0:00,17.0000000,18.0000000,48.235254000000,-4.49011800000000,,Plage du Porzic,105714,Observation #105714,https://biolit.fr/observations/observation-105714/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160163-scaled.jpg,,,Ne sais pas +N1,105695,Sortie #105695,https://biolit.fr/sorties/sortie-105695/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160115-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160182.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160183.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160184.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160188-scaled.jpg,8/16/2025 0:00,17.0000000,18.0000000,48.235254000000,-4.49011800000000,,Plage du Porzic,105716,Observation #105716,https://biolit.fr/observations/observation-105716/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160180-scaled.jpg,,,Identifiable +N1,105695,Sortie #105695,https://biolit.fr/sorties/sortie-105695/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160115-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160182.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160183.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160184.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160188-scaled.jpg,8/16/2025 0:00,17.0000000,18.0000000,48.235254000000,-4.49011800000000,,Plage du Porzic,105718,Observation #105718,https://biolit.fr/observations/observation-105718/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160182.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160183.jpg,,,Ne sais pas +N1,105695,Sortie #105695,https://biolit.fr/sorties/sortie-105695/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160115-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160182.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160183.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160184.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160188-scaled.jpg,8/16/2025 0:00,17.0000000,18.0000000,48.235254000000,-4.49011800000000,,Plage du Porzic,105720,Observation #105720,https://biolit.fr/observations/observation-105720/,Mullus surmuletus,Rouget-barbet de roche,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160184.jpg,,,Identifiable +N1,105695,Sortie #105695,https://biolit.fr/sorties/sortie-105695/,Goascoz Marion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160115-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160116-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160130-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160133-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160155-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160156-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160180-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160182.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160183.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160184.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160188-scaled.jpg,8/16/2025 0:00,17.0000000,18.0000000,48.235254000000,-4.49011800000000,,Plage du Porzic,105722,Observation #105722,https://biolit.fr/observations/observation-105722/,Diplodus vulgaris,Sar à tête noire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f4a455858bc47cf013685e06c6ed5480/2025/09/P8160188-scaled.jpg,,,Identifiable +N1,105726,Sortie #105726,https://biolit.fr/sorties/sortie-105726/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/mouette-port-de-MARTIGUES-175308-1.jpg,7/28/2025 0:00,11.0:15,11.0:45,43.9168170,2.1591550,,martigues,105727,Observation #105727,https://biolit.fr/observations/observation-105727/,Rissa tridactyla,Mouette tridactyle,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/mouette-port-de-MARTIGUES-175308-1.jpg,,FALSE,Ne sais pas +N1,105732,Sortie #105732,https://biolit.fr/sorties/sortie-105732/,Goossens Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/09/IMG-20250922-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/09/IMG-20250922-WA0000.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/09/IMG-20250922-WA0001.jpg,9/17/2025 0:00,10.0000000,12.0000000,42.535406000000,3.06430000000000,LPO Occitanie (Dt Pyrénées Orientales),Criques de Porteils,105733,Observation #105733,https://biolit.fr/observations/observation-105733/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/09/IMG-20250922-WA0000.jpg,,,Identifiable +N1,105732,Sortie #105732,https://biolit.fr/sorties/sortie-105732/,Goossens Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/09/IMG-20250922-WA0003.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/09/IMG-20250922-WA0000.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/09/IMG-20250922-WA0001.jpg,9/17/2025 0:00,10.0000000,12.0000000,42.535406000000,3.06430000000000,LPO Occitanie (Dt Pyrénées Orientales),Criques de Porteils,105735,Observation #105735,https://biolit.fr/observations/observation-105735/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/09/IMG-20250922-WA0001.jpg,,,Ne sais pas +N1,105744,Sortie #105744,https://biolit.fr/sorties/sortie-105744/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/Etoile-de-mer-290725.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/geolette.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.9168170,2.1591550,,Carro / plage Sainte croix,105745,Observation #105745,https://biolit.fr/observations/observation-105745/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/Etoile-de-mer-290725.jpg,,FALSE,Identifiable +N1,105744,Sortie #105744,https://biolit.fr/sorties/sortie-105744/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/Etoile-de-mer-290725.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/geolette.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.9168170,2.1591550,,Carro / plage Sainte croix,105747,Observation #105747,https://biolit.fr/observations/observation-105747/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/geolette.jpg,,FALSE, +N1,105744,Sortie #105744,https://biolit.fr/sorties/sortie-105744/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/Etoile-de-mer-290725.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/geolette.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.9168170,2.1591550,,Carro / plage Sainte croix,105749,Observation #105749,https://biolit.fr/observations/observation-105749/,Larus canus,Goéland cendré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/geolette.jpg,,FALSE,Identifiable +N1,105751,Sortie #105751,https://biolit.fr/sorties/sortie-105751/,SALLE Sophie,,7/30/2025 0:00,10.0000000,12.0000000,43.9168170,2.1591550,,Carro / plage Sainte croix,,,,,,,,,, +N1,105760,Sortie #105760,https://biolit.fr/sorties/sortie-105760/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165309.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165435.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/oiseau-noir.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.3317660000000,5.06991100000000,,Carro / plage Sainte croix,105761,Observation #105761,https://biolit.fr/observations/observation-105761/,Octopus cyanea,Poulpe de récif,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165435.jpg,,,Identifiable +N1,105760,Sortie #105760,https://biolit.fr/sorties/sortie-105760/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165309.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165435.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/oiseau-noir.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.3317660000000,5.06991100000000,,Carro / plage Sainte croix,105763,Observation #105763,https://biolit.fr/observations/observation-105763/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/oiseau-noir.jpg,,,Ne sais pas +N1,105760,Sortie #105760,https://biolit.fr/sorties/sortie-105760/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165309.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165435.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/oiseau-noir.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.3317660000000,5.06991100000000,,Carro / plage Sainte croix,105765,Observation #105765,https://biolit.fr/observations/observation-105765/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-1.jpg,,,Ne sais pas +N1,105760,Sortie #105760,https://biolit.fr/sorties/sortie-105760/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165309.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165435.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/oiseau-noir.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.3317660000000,5.06991100000000,,Carro / plage Sainte croix,105767,Observation #105767,https://biolit.fr/observations/observation-105767/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-1-scaled.jpg,,, +N1,105760,Sortie #105760,https://biolit.fr/sorties/sortie-105760/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165309.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165435.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/oiseau-noir.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.3317660000000,5.06991100000000,,Carro / plage Sainte croix,105769,Observation #105769,https://biolit.fr/observations/observation-105769/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-1.jpg,,,Ne sais pas +N1,105760,Sortie #105760,https://biolit.fr/sorties/sortie-105760/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165309.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165435.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/oiseau-noir.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.3317660000000,5.06991100000000,,Carro / plage Sainte croix,105771,Observation #105771,https://biolit.fr/observations/observation-105771/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-1.jpg,,,Ne sais pas +N1,105760,Sortie #105760,https://biolit.fr/sorties/sortie-105760/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165309.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165435.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/oiseau-noir.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.3317660000000,5.06991100000000,,Carro / plage Sainte croix,105773,Observation #105773,https://biolit.fr/observations/observation-105773/,Diplodus sargus,Sar commun de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165309.jpg,,TRUE, +N1,105775,Sortie #105775,https://biolit.fr/sorties/sortie-105775/,SALLE Sophie,,7/30/2025 0:00,10.0000000,12.0000000,43.9168170,2.1591550,,Carro / plage Sainte croix,,,,,,,,,, +N1,105784,Sortie #105784,https://biolit.fr/sorties/sortie-105784/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250809_131518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165309-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165435-1.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.3311740000000,5.07040500000000,,Carro / plage Sainte croix,105785,Observation #105785,https://biolit.fr/observations/observation-105785/,Rissa tridactyla,Mouette tridactyle,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250809_131518-scaled.jpg,,,Identifiable +N1,105784,Sortie #105784,https://biolit.fr/sorties/sortie-105784/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250809_131518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165309-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165435-1.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.3311740000000,5.07040500000000,,Carro / plage Sainte croix,105787,Observation #105787,https://biolit.fr/observations/observation-105787/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165435-1.jpg,,,Identifiable +N1,105784,Sortie #105784,https://biolit.fr/sorties/sortie-105784/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250809_131518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165309-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165435-1.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.3311740000000,5.07040500000000,,Carro / plage Sainte croix,105789,Observation #105789,https://biolit.fr/observations/observation-105789/,Diplodus cadenati,Sar commun atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165309-1.jpg,,,Identifiable +N1,105784,Sortie #105784,https://biolit.fr/sorties/sortie-105784/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250809_131518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165309-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165435-1.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.3311740000000,5.07040500000000,,Carro / plage Sainte croix,105791,Observation #105791,https://biolit.fr/observations/observation-105791/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-2-scaled.jpg,,,Ne sais pas +N1,105784,Sortie #105784,https://biolit.fr/sorties/sortie-105784/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250809_131518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165309-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165435-1.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.3311740000000,5.07040500000000,,Carro / plage Sainte croix,105793,Observation #105793,https://biolit.fr/observations/observation-105793/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738-2.jpg,,,Ne sais pas +N1,105784,Sortie #105784,https://biolit.fr/sorties/sortie-105784/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250809_131518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165309-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165435-1.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.3311740000000,5.07040500000000,,Carro / plage Sainte croix,105795,Observation #105795,https://biolit.fr/observations/observation-105795/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-2.jpg,,,Ne sais pas +N1,105784,Sortie #105784,https://biolit.fr/sorties/sortie-105784/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_092616-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_103738-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250730_122136-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_113844-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250809_131518-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165309-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250904_165435-1.jpg,7/30/2025 0:00,10.0000000,12.0000000,43.3311740000000,5.07040500000000,,Carro / plage Sainte croix,105797,Observation #105797,https://biolit.fr/observations/observation-105797/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/IMG_20250731_122429-2.jpg,,, +N1,105801,Sortie #105801,https://biolit.fr/sorties/sortie-105801/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/plante-fleur-jaune_103732.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/plantes_113858.jpg,7/31/2025 0:00,10.0000000,12.0000000,43.3274310000000,5.15267400000000,,carry le rouet,105802,Observation #105802,https://biolit.fr/observations/observation-105802/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/plante-fleur-jaune_103732.jpg,,,Ne sais pas +N1,105801,Sortie #105801,https://biolit.fr/sorties/sortie-105801/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/plante-fleur-jaune_103732.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/plantes_113858.jpg,7/31/2025 0:00,10.0000000,12.0000000,43.3274310000000,5.15267400000000,,carry le rouet,105804,Observation #105804,https://biolit.fr/observations/observation-105804/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/09/plantes_113858.jpg,,,Identifiable +N1,105998,Sortie #105998,https://biolit.fr/sorties/sortie-105998/,AUBER Quentin,,9/21/2025 0:00,10.0000000,11.0000000,47.8899680000000,-3.97312800000000,,Cap coz,,,,,,,,,, +N1,105999,Sortie #105999,https://biolit.fr/sorties/sortie-105999/,AUBER Quentin,,9/20/2025 0:00,10.0000000,11.0000000,47.8885480000000,-3.97844600000000,,Cap coz,,,,,,,,,, +N1,106021,Sortie #106021,https://biolit.fr/sorties/sortie-106021/,Pierre Corbrion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203449-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203447-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203484-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203485-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203483-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203482-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203481-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203479-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203480-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203478-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203477-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203476-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203475-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203474-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203472-scaled.jpg,9/20/2025 0:00,15.0000000,17.0000000,48.5703180000000,-1.97632700000000,,Saint-Suliac,106022,Observation #106022,https://biolit.fr/observations/observation-106022/,Elysia viridis,Elysie verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203449-scaled.jpg,,TRUE,Identifiable +N1,106021,Sortie #106021,https://biolit.fr/sorties/sortie-106021/,Pierre Corbrion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203449-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203447-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203484-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203485-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203483-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203482-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203481-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203479-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203480-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203478-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203477-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203476-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203475-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203474-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203472-scaled.jpg,9/20/2025 0:00,15.0000000,17.0000000,48.5703180000000,-1.97632700000000,,Saint-Suliac,106024,Observation #106024,https://biolit.fr/observations/observation-106024/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203448-scaled.jpg,,TRUE,Identifiable +N1,106021,Sortie #106021,https://biolit.fr/sorties/sortie-106021/,Pierre Corbrion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203449-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203447-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203484-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203485-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203483-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203482-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203481-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203479-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203480-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203478-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203477-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203476-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203475-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203474-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203472-scaled.jpg,9/20/2025 0:00,15.0000000,17.0000000,48.5703180000000,-1.97632700000000,,Saint-Suliac,106026,Observation #106026,https://biolit.fr/observations/observation-106026/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203447-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203446-scaled.jpg,,,Identifiable +N1,106021,Sortie #106021,https://biolit.fr/sorties/sortie-106021/,Pierre Corbrion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203449-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203447-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203484-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203485-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203483-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203482-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203481-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203479-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203480-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203478-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203477-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203476-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203475-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203474-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203472-scaled.jpg,9/20/2025 0:00,15.0000000,17.0000000,48.5703180000000,-1.97632700000000,,Saint-Suliac,106028,Observation #106028,https://biolit.fr/observations/observation-106028/,Aeolidiella alderi,Eolis d'Alder,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203476-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203475-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203478-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203483-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203482-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203481-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203479-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203480-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203484-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203485-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203477-scaled.jpg,,,Identifiable +N1,106021,Sortie #106021,https://biolit.fr/sorties/sortie-106021/,Pierre Corbrion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203449-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203447-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203484-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203485-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203483-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203482-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203481-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203479-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203480-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203478-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203477-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203476-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203475-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203474-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203472-scaled.jpg,9/20/2025 0:00,15.0000000,17.0000000,48.5703180000000,-1.97632700000000,,Saint-Suliac,106030,Observation #106030,https://biolit.fr/observations/observation-106030/,Goniodoris castanea,Goniodoris châtaigne,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203472-scaled.jpg,,,Identifiable +N1,106021,Sortie #106021,https://biolit.fr/sorties/sortie-106021/,Pierre Corbrion,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203451-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203450-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203449-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203448-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203447-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203446-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203484-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203485-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203483-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203482-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203481-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203479-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203480-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203478-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203477-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203476-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203475-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203474-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203473-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203472-scaled.jpg,9/20/2025 0:00,15.0000000,17.0000000,48.5703180000000,-1.97632700000000,,Saint-Suliac,106032,Observation #106032,https://biolit.fr/observations/observation-106032/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b14c80d2060cab840a3edfbafe3010ff/2025/09/P9203472-scaled.jpg,,,Identifiable +N1,106037,Sortie #106037,https://biolit.fr/sorties/sortie-106037/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/09/IMG_4651-scaled.jpeg,9/24/2025 0:00,23.0:21,23.0:26,43.2696520000000,6.57971500000000,,Port Grimaud plagette rue de la Giscle,106038,Observation #106038,https://biolit.fr/observations/observation-106038/,Atherina boyeri,Joël,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/09/IMG_4651-scaled.jpeg,,,Identifiable +N1,106042,Sortie #106042,https://biolit.fr/sorties/sortie-106042/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/09/IMG_4668-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/09/IMG_4666-scaled.png,9/21/2025 0:00,16.0:32,16.0:42,43.2711270000000,6.57906700000000,,Port Grimaud ile verte,106043,Observation #106043,https://biolit.fr/observations/observation-106043/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/09/IMG_4668-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/09/IMG_4666-scaled.png,,,Identifiable +N1,106042,Sortie #106042,https://biolit.fr/sorties/sortie-106042/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/09/IMG_4668-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/09/IMG_4666-scaled.png,9/21/2025 0:00,16.0:32,16.0:42,43.2711270000000,6.57906700000000,,Port Grimaud ile verte,106150,Observation #106150,https://biolit.fr/observations/observation-106150/,Amphibalanus amphitrite,Balane amphitrite,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/09/IMG_4668-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/09/IMG_4666-scaled.png,,,Identifiable +N1,106046,Sortie #106046,https://biolit.fr/sorties/sortie-106046/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/09/IMG_4665-scaled.png,9/21/2025 0:00,16.0:33,16.0:45,43.2711620000000,6.57903000000000,,Port Grimaud ile verte,106047,Observation #106047,https://biolit.fr/observations/observation-106047/,Spirorbis (Spirorbis) spirorbis,Spirorbe,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/09/IMG_4665-scaled.png,,,Identifiable +N1,106051,Sortie #106051,https://biolit.fr/sorties/sortie-106051/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/09/IMG_4672.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/09/IMG_4671.jpeg,9/24/2025 0:00,23.0:16,23.0:24,43.269653000000,6.57970800000000,,Port Grimaud plagette rue de la Giscle,106052,Observation #106052,https://biolit.fr/observations/observation-106052/,Gobius cobitis,Gobie à grosse tête,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/09/IMG_4672.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/09/IMG_4671.jpeg,,,Identifiable +N1,106074,Sortie #106074,https://biolit.fr/sorties/sortie-106074/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040760000000,-1.84451800000000,Centre Virginie Hériot,Plage du Potelet,106077,Observation #106077,https://biolit.fr/observations/observation-106077/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-1-scaled.jpg,,,Identifiable +N1,106074,Sortie #106074,https://biolit.fr/sorties/sortie-106074/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040760000000,-1.84451800000000,Centre Virginie Hériot,Plage du Potelet,106079,Observation #106079,https://biolit.fr/observations/observation-106079/,Maja brachydactyla,Araignée de mer Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-3-scaled.jpg,,,Identifiable +N1,106074,Sortie #106074,https://biolit.fr/sorties/sortie-106074/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040760000000,-1.84451800000000,Centre Virginie Hériot,Plage du Potelet,106081,Observation #106081,https://biolit.fr/observations/observation-106081/,Dendrodoa grossularia,Ascidie groseille,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-1-scaled.jpg,,,Identifiable +N1,106074,Sortie #106074,https://biolit.fr/sorties/sortie-106074/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040760000000,-1.84451800000000,Centre Virginie Hériot,Plage du Potelet,106083,Observation #106083,https://biolit.fr/observations/observation-106083/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-3-scaled.jpg,,,Identifiable +N1,106074,Sortie #106074,https://biolit.fr/sorties/sortie-106074/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040760000000,-1.84451800000000,Centre Virginie Hériot,Plage du Potelet,106085,Observation #106085,https://biolit.fr/observations/observation-106085/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-2-scaled.jpg,,TRUE,Identifiable +N1,106074,Sortie #106074,https://biolit.fr/sorties/sortie-106074/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040760000000,-1.84451800000000,Centre Virginie Hériot,Plage du Potelet,106087,Observation #106087,https://biolit.fr/observations/observation-106087/,Ocinebrellus inornatus,Bigorneau perceur japonais,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-2-scaled.jpg,,TRUE,Identifiable +N1,106074,Sortie #106074,https://biolit.fr/sorties/sortie-106074/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040760000000,-1.84451800000000,Centre Virginie Hériot,Plage du Potelet,106089,Observation #106089,https://biolit.fr/observations/observation-106089/,Botrylloides diegensis,Botrylle de San Diego,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-san-diego-1-scaled.jpg,,TRUE,Identifiable +N1,106074,Sortie #106074,https://biolit.fr/sorties/sortie-106074/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040760000000,-1.84451800000000,Centre Virginie Hériot,Plage du Potelet,106091,Observation #106091,https://biolit.fr/observations/observation-106091/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-1-scaled.jpg,,,Identifiable +N1,106074,Sortie #106074,https://biolit.fr/sorties/sortie-106074/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040760000000,-1.84451800000000,Centre Virginie Hériot,Plage du Potelet,106093,Observation #106093,https://biolit.fr/observations/observation-106093/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg,,TRUE,Identifiable +N1,106074,Sortie #106074,https://biolit.fr/sorties/sortie-106074/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040760000000,-1.84451800000000,Centre Virginie Hériot,Plage du Potelet,106095,Observation #106095,https://biolit.fr/observations/observation-106095/,Ciona intestinalis,Cione intestinale,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-1-scaled.jpg,,TRUE,Identifiable +N1,106074,Sortie #106074,https://biolit.fr/sorties/sortie-106074/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040760000000,-1.84451800000000,Centre Virginie Hériot,Plage du Potelet,106097,Observation #106097,https://biolit.fr/observations/observation-106097/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-3-scaled.jpg,,,Identifiable +N1,106074,Sortie #106074,https://biolit.fr/sorties/sortie-106074/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040760000000,-1.84451800000000,Centre Virginie Hériot,Plage du Potelet,106099,Observation #106099,https://biolit.fr/observations/observation-106099/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-1-scaled.jpg,,TRUE,Identifiable +N1,106074,Sortie #106074,https://biolit.fr/sorties/sortie-106074/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Araignee-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Ascidie-groseille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bernard-lhermite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Bryozoaire-orange-vif-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040760000000,-1.84451800000000,Centre Virginie Hériot,Plage du Potelet,106101,Observation #106101,https://biolit.fr/observations/observation-106101/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Crabe-scaled.jpg,,,Ne sais pas +N1,106120,Sortie #106120,https://biolit.fr/sorties/sortie-106120/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Galathee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250909152307-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-2-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040540000000,-1.84455000000000,Centre Virginie Hériot,Plage du Potelet,106121,Observation #106121,https://biolit.fr/observations/observation-106121/,Crangon crangon,Crevette grise européenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/crevette-grise-1-scaled.jpg,,,Identifiable +N1,106120,Sortie #106120,https://biolit.fr/sorties/sortie-106120/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Galathee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250909152307-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-2-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040540000000,-1.84455000000000,Centre Virginie Hériot,Plage du Potelet,106123,Observation #106123,https://biolit.fr/observations/observation-106123/,Aeolidia papillosa,Eolis à papilles,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-3-scaled.jpg,,,Identifiable +N1,106120,Sortie #106120,https://biolit.fr/sorties/sortie-106120/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Galathee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250909152307-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-2-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040540000000,-1.84455000000000,Centre Virginie Hériot,Plage du Potelet,106125,Observation #106125,https://biolit.fr/observations/observation-106125/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-2-scaled.jpg,,,Ne sais pas +N1,106120,Sortie #106120,https://biolit.fr/sorties/sortie-106120/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Galathee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250909152307-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-2-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040540000000,-1.84455000000000,Centre Virginie Hériot,Plage du Potelet,106127,Observation #106127,https://biolit.fr/observations/observation-106127/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Galathee-2-scaled.jpg,,,Identifiable +N1,106120,Sortie #106120,https://biolit.fr/sorties/sortie-106120/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Galathee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250909152307-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-2-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040540000000,-1.84455000000000,Centre Virginie Hériot,Plage du Potelet,106129,Observation #106129,https://biolit.fr/observations/observation-106129/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Huitre-creuse-1-scaled.jpg,,,Identifiable +N1,106120,Sortie #106120,https://biolit.fr/sorties/sortie-106120/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Galathee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250909152307-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-2-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040540000000,-1.84455000000000,Centre Virginie Hériot,Plage du Potelet,106131,Observation #106131,https://biolit.fr/observations/observation-106131/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250909152307-scaled.jpg,,,Identifiable +N1,106120,Sortie #106120,https://biolit.fr/sorties/sortie-106120/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Galathee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250909152307-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-2-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040540000000,-1.84455000000000,Centre Virginie Hériot,Plage du Potelet,106133,Observation #106133,https://biolit.fr/observations/observation-106133/,Macropodia rostrata,Macropode rostré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg,,,Identifiable +N1,106120,Sortie #106120,https://biolit.fr/sorties/sortie-106120/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Galathee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250909152307-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-2-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040540000000,-1.84455000000000,Centre Virginie Hériot,Plage du Potelet,106135,Observation #106135,https://biolit.fr/observations/observation-106135/,Nerophis ophidion,Nérophis ophidion,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Nerophis-1-scaled.jpg,,,Identifiable +N1,106120,Sortie #106120,https://biolit.fr/sorties/sortie-106120/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Galathee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250909152307-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-2-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040540000000,-1.84455000000000,Centre Virginie Hériot,Plage du Potelet,106137,Observation #106137,https://biolit.fr/observations/observation-106137/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Patelle-1-scaled.jpg,,TRUE,Identifiable +N1,106120,Sortie #106120,https://biolit.fr/sorties/sortie-106120/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Galathee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250909152307-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-2-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040540000000,-1.84455000000000,Centre Virginie Hériot,Plage du Potelet,106139,Observation #106139,https://biolit.fr/observations/observation-106139/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Petoncle-1-scaled.jpg,,,Identifiable +N1,106120,Sortie #106120,https://biolit.fr/sorties/sortie-106120/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Galathee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250909152307-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-2-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040540000000,-1.84455000000000,Centre Virginie Hériot,Plage du Potelet,106141,Observation #106141,https://biolit.fr/observations/observation-106141/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Porcellane-1-scaled.jpg,,,Identifiable +N1,106120,Sortie #106120,https://biolit.fr/sorties/sortie-106120/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Galathee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250909152307-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-2-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040540000000,-1.84455000000000,Centre Virginie Hériot,Plage du Potelet,106143,Observation #106143,https://biolit.fr/observations/observation-106143/,Solea solea,Sole,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-2-scaled.jpg,,,Identifiable +N1,106120,Sortie #106120,https://biolit.fr/sorties/sortie-106120/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eolis-a-papille-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Eponge-orange-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Galathee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/IMG20250909152307-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Macropode-rostre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Nerophis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Patelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Petoncle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Sole-commune-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-2-scaled.jpg,09/09/2025,15.0000000,16.0000000,48.7040540000000,-1.84455000000000,Centre Virginie Hériot,Plage du Potelet,106145,Observation #106145,https://biolit.fr/observations/observation-106145/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/09/Tourteau-2-scaled.jpg,,,Identifiable +N1,106148,Sortie #106148,https://biolit.fr/sorties/sortie-106148/,LABELBLEU,,09/10/2025,16.0000000,17.0000000,42.7401620000000,3.037926000000,LABELBLEU,Plage de Sainte-Marie-La-Mer,,,,,,,,,, +N1,106149,Sortie #106149,https://biolit.fr/sorties/sortie-106149/,LABELBLEU,,09/10/2025,16.0000000,17.0000000,42.7426920000000,3.03792600000000,LABELBLEU,Plage de Sainte-Marie-La-Mer,,,,,,,,,, +N1,106152,Sortie #106152,https://biolit.fr/sorties/sortie-106152/,Wieringa Freija,,9/25/2025 0:00,9.0:45,10.0:45,43.446684000000,3.66231200000000,,"Plage de la pyramide, Bouzigues",,,,,,,,,, +N1,106155,Sortie #106155,https://biolit.fr/sorties/sortie-106155/,Cevaer Angelo,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3fcbbc4af851fbaa9fbb70c01fb9e26f/2025/09/004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3fcbbc4af851fbaa9fbb70c01fb9e26f/2025/09/005-scaled.jpg,9/25/2025 0:00,9.0:45,10.0:45,43.4467700000000,3.66243700000000,,Plage de la pyramide Bouzigues,106156,Observation #106156,https://biolit.fr/observations/observation-106156/,Rapana venosa,Rapane veiné,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3fcbbc4af851fbaa9fbb70c01fb9e26f/2025/09/004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3fcbbc4af851fbaa9fbb70c01fb9e26f/2025/09/005-scaled.jpg,,,Identifiable +N1,106159,Sortie #106159,https://biolit.fr/sorties/sortie-106159/,Cevaer Angelo,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3fcbbc4af851fbaa9fbb70c01fb9e26f/2025/09/014-scaled.jpg,9/25/2025 0:00,9.0:45,10.0:45,43.4464550000000,3.66238000000000,,Plage de la pyramide Bouzigues,106160,Observation #106160,https://biolit.fr/observations/observation-106160/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3fcbbc4af851fbaa9fbb70c01fb9e26f/2025/09/014-scaled.jpg,,TRUE,Identifiable +N1,106159,Sortie #106159,https://biolit.fr/sorties/sortie-106159/,Cevaer Angelo,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3fcbbc4af851fbaa9fbb70c01fb9e26f/2025/09/014-scaled.jpg,9/25/2025 0:00,9.0:45,10.0:45,43.4464550000000,3.66238000000000,,Plage de la pyramide Bouzigues,108937,Observation #108937,https://biolit.fr/observations/observation-108937/,Hippocampus guttulatus,Hippocampe moucheté,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3fcbbc4af851fbaa9fbb70c01fb9e26f/2025/09/014-scaled.jpg,,TRUE,Identifiable +N1,106164,Sortie #106164,https://biolit.fr/sorties/sortie-106164/,BAUGNIES THIBAUT,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c08dadf394b2370858e9b7be0b52a534/2025/09/IMG_8564.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c08dadf394b2370858e9b7be0b52a534/2025/09/IMG_8565.jpeg,9/25/2025 0:00,9.0:45,10.0:45,43.4468010000000,3.66243800000000,,Plage de la pyramide-Bouzigues,106165,Observation #106165,https://biolit.fr/observations/observation-106165/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c08dadf394b2370858e9b7be0b52a534/2025/09/IMG_8564.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c08dadf394b2370858e9b7be0b52a534/2025/09/IMG_8565.jpeg,,,Identifiable +N1,106168,Sortie #106168,https://biolit.fr/sorties/sortie-106168/,Cevaer Angelo,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3fcbbc4af851fbaa9fbb70c01fb9e26f/2025/09/046-scaled.jpg,9/25/2025 0:00,9.0:45,10.0:45,43.446569000000,3.66264800000000,,Plage de la pyramide Bouzigues,106169,Observation #106169,https://biolit.fr/observations/observation-106169/,Styela plicata,Ascidie plissée,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3fcbbc4af851fbaa9fbb70c01fb9e26f/2025/09/046-scaled.jpg,,,Identifiable +N1,106175,Sortie #106175,https://biolit.fr/sorties/sortie-106175/,Guidicelli Lou,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f36974a4c6d8d3e5186bfbd6062fa156/2025/09/IMG_5523-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f36974a4c6d8d3e5186bfbd6062fa156/2025/09/IMG_5525-scaled.jpeg,9/25/2025 0:00,9.0:45,10.0:45,43.4464200000000,3.66316800000000,,Plage de la pyramide - Bouzigues,106176,Observation #106176,https://biolit.fr/observations/observation-106176/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f36974a4c6d8d3e5186bfbd6062fa156/2025/09/IMG_5523-scaled.jpeg,,TRUE,Identifiable +N1,106175,Sortie #106175,https://biolit.fr/sorties/sortie-106175/,Guidicelli Lou,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f36974a4c6d8d3e5186bfbd6062fa156/2025/09/IMG_5523-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f36974a4c6d8d3e5186bfbd6062fa156/2025/09/IMG_5525-scaled.jpeg,9/25/2025 0:00,9.0:45,10.0:45,43.4464200000000,3.66316800000000,,Plage de la pyramide - Bouzigues,106180,Observation #106180,https://biolit.fr/observations/observation-106180/,Ficopomatus enigmaticus,Cascail,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f36974a4c6d8d3e5186bfbd6062fa156/2025/09/IMG_5525-scaled.jpeg,,,Identifiable +N1,106184,Sortie #106184,https://biolit.fr/sorties/sortie-106184/,Wieringa Freija,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3887ff375471adf2bea546d8a65fa6e1/2025/09/IMG-20250925-WA0015-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3887ff375471adf2bea546d8a65fa6e1/2025/09/IMG-20250925-WA0028-1.jpg,9/25/2025 0:00,9.0:45,10.0:45,43.4468140000000,3.66233800000000,,"Plage de la pyramide, Bouzigues",106185,Observation #106185,https://biolit.fr/observations/observation-106185/,Styela plicata,Ascidie plissée,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3887ff375471adf2bea546d8a65fa6e1/2025/09/IMG-20250925-WA0015-2.jpg,,,Identifiable +N1,106184,Sortie #106184,https://biolit.fr/sorties/sortie-106184/,Wieringa Freija,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3887ff375471adf2bea546d8a65fa6e1/2025/09/IMG-20250925-WA0015-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3887ff375471adf2bea546d8a65fa6e1/2025/09/IMG-20250925-WA0028-1.jpg,9/25/2025 0:00,9.0:45,10.0:45,43.4468140000000,3.66233800000000,,"Plage de la pyramide, Bouzigues",106188,Observation #106188,https://biolit.fr/observations/observation-106188/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3887ff375471adf2bea546d8a65fa6e1/2025/09/IMG-20250925-WA0028-1.jpg,,,Identifiable +N1,106191,Sortie #106191,https://biolit.fr/sorties/sortie-106191/,Joseph Chloé,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fa0ec13c02562a3f79594761c31229b8/2025/09/029-2-scaled.jpg,9/25/2025 0:00,9.0:45,10.0:45,43.4468600000000,3.66243300000000,,Plage de la pyramide,106192,Observation #106192,https://biolit.fr/observations/observation-106192/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fa0ec13c02562a3f79594761c31229b8/2025/09/029-2-scaled.jpg,,,Identifiable +N1,106195,Sortie #106195,https://biolit.fr/sorties/sortie-106195/,JARNIAS Anaïs,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/70cc6ba1d41968404d4a0ac6dfa261ad/2025/09/044-scaled.jpg,9/25/2025 0:00,9.0:45,10.0:45,43.4464950000000,3.66235400000000,,Plage de la Pyramide Bouzigues,,,,,,,,,, +N1,106196,Sortie #106196,https://biolit.fr/sorties/sortie-106196/,Joseph Chloé,,9/25/2025 0:00,9.0:45,10.0:45,43.4467970000000,3.66239000000000,,Plage de la pyramide,,,,,,,,,, +N1,106198,Sortie #106198,https://biolit.fr/sorties/sortie-106198/,JARNIAS Anaïs,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/70cc6ba1d41968404d4a0ac6dfa261ad/2025/09/A6_00455.jpg,9/25/2025 0:00,9.0:45,10.0:45,43.4467510000000,3.66230000000000,,Plage de la Pyramide Bouzigues,,,,,,,,,, +N1,106200,Sortie #106200,https://biolit.fr/sorties/sortie-106200/,JARNIAS Anaïs,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/70cc6ba1d41968404d4a0ac6dfa261ad/2025/09/A6_00482.jpg,9/25/2025 0:00,9.0:45,10.0:45,43.446343000000,3.6623350000000,,Plage de la Pyramide Bouzigues,106201,Observation #106201,https://biolit.fr/observations/observation-106201/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/70cc6ba1d41968404d4a0ac6dfa261ad/2025/09/A6_00482.jpg,,,Identifiable +N1,106204,Sortie #106204,https://biolit.fr/sorties/sortie-106204/,JARNIAS Anaïs,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/70cc6ba1d41968404d4a0ac6dfa261ad/2025/09/A6_00455-1.jpg,9/25/2025 0:00,9.0:45,10.0:45,43.4463210000000,3.66233200000000,,Plage de la Pyramide Bouzigues,106205,Observation #106205,https://biolit.fr/observations/observation-106205/,Rapana venosa,Rapane veiné,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/70cc6ba1d41968404d4a0ac6dfa261ad/2025/09/A6_00455-1.jpg,,,Identifiable +N1,106208,Sortie #106208,https://biolit.fr/sorties/sortie-106208/,JARNIAS Anaïs,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/70cc6ba1d41968404d4a0ac6dfa261ad/2025/09/044-1-scaled.jpg,9/25/2025 0:00,9.0:45,10.0:45,43.4464450000000,3.66235800000000,,Plage de la Pyramide Bouzigues,106209,Observation #106209,https://biolit.fr/observations/observation-106209/,Styela plicata,Ascidie plissée,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/70cc6ba1d41968404d4a0ac6dfa261ad/2025/09/044-1-scaled.jpg,,,Identifiable +N1,106214,Sortie #106214,https://biolit.fr/sorties/sortie-106214/,Pasqualini Felix,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/13a686104ed5a97ad83fc5b6c2f15595/2025/09/IMG_7445-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/13a686104ed5a97ad83fc5b6c2f15595/2025/09/IMG_7441-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/13a686104ed5a97ad83fc5b6c2f15595/2025/09/IMG_7439-scaled.jpeg,9/25/2025 0:00,16.000007,16.000006,43.2910070000000,5.35583600000000,Cap vers la Nature,Marseille,,,,,,,,,, +N1,106228,Sortie #106228,https://biolit.fr/sorties/sortie-106228/,HERAUVILLE CAMILLE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010581-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010609-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010586-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010593-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010623-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010583-scaled.jpg,9/25/2025 0:00,14.0000000,16.0000000,49.6867440000000,-1.27458600000000,,PHARE DE GATTEVILLE,106242,Observation #106242,https://biolit.fr/observations/observation-106242/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010593-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010602-scaled.jpg,,TRUE,Identifiable +N1,106228,Sortie #106228,https://biolit.fr/sorties/sortie-106228/,HERAUVILLE CAMILLE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010581-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010609-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010586-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010593-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010623-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010583-scaled.jpg,9/25/2025 0:00,14.0000000,16.0000000,49.6867440000000,-1.27458600000000,,PHARE DE GATTEVILLE,106246,Observation #106246,https://biolit.fr/observations/observation-106246/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010586-scaled.jpg,,,Identifiable +N1,106228,Sortie #106228,https://biolit.fr/sorties/sortie-106228/,HERAUVILLE CAMILLE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010581-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010609-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010586-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010593-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010623-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010583-scaled.jpg,9/25/2025 0:00,14.0000000,16.0000000,49.6867440000000,-1.27458600000000,,PHARE DE GATTEVILLE,106252,Observation #106252,https://biolit.fr/observations/observation-106252/,Rissa tridactyla,Mouette tridactyle,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010623-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010604-scaled.jpg,,,Identifiable +N1,106228,Sortie #106228,https://biolit.fr/sorties/sortie-106228/,HERAUVILLE CAMILLE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010581-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010609-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010586-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010593-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010623-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010583-scaled.jpg,9/25/2025 0:00,14.0000000,16.0000000,49.6867440000000,-1.27458600000000,,PHARE DE GATTEVILLE,106258,Observation #106258,https://biolit.fr/observations/observation-106258/,Chlorodesmis fastigiata,Algue chevelue verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010593-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010602-scaled.jpg,,,Identifiable +N1,106228,Sortie #106228,https://biolit.fr/sorties/sortie-106228/,HERAUVILLE CAMILLE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010581-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010609-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010586-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010593-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010623-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010583-scaled.jpg,9/25/2025 0:00,14.0000000,16.0000000,49.6867440000000,-1.27458600000000,,PHARE DE GATTEVILLE,106264,Observation #106264,https://biolit.fr/observations/observation-106264/,Laminaria digitata,Laminaire digitée,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010581-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010583-scaled.jpg,,,Identifiable +N1,106239,Sortie #106239,https://biolit.fr/sorties/sortie-106239/,JOUAN ISABELLE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469585-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469592-scaled.jpg,9/25/2025 0:00,14.0000000,17.0000000,49.6869660000000,-1.27698900000000,,Gatteville phare,106240,Observation #106240,https://biolit.fr/observations/observation-106240/,Rissa tridactyla,Mouette tridactyle,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023099-scaled.jpg,,,Identifiable +N1,106239,Sortie #106239,https://biolit.fr/sorties/sortie-106239/,JOUAN ISABELLE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469585-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469592-scaled.jpg,9/25/2025 0:00,14.0000000,17.0000000,49.6869660000000,-1.27698900000000,,Gatteville phare,106244,Observation #106244,https://biolit.fr/observations/observation-106244/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469592-scaled.jpg,,TRUE,Identifiable +N1,106239,Sortie #106239,https://biolit.fr/sorties/sortie-106239/,JOUAN ISABELLE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469585-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469592-scaled.jpg,9/25/2025 0:00,14.0000000,17.0000000,49.6869660000000,-1.27698900000000,,Gatteville phare,106248,Observation #106248,https://biolit.fr/observations/observation-106248/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469599-scaled.jpg,,TRUE,Identifiable +N1,106239,Sortie #106239,https://biolit.fr/sorties/sortie-106239/,JOUAN ISABELLE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469585-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469592-scaled.jpg,9/25/2025 0:00,14.0000000,17.0000000,49.6869660000000,-1.27698900000000,,Gatteville phare,106250,Observation #106250,https://biolit.fr/observations/observation-106250/,Chaetophora lobata,Algue,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023106-scaled.jpg,,,Identifiable +N1,106239,Sortie #106239,https://biolit.fr/sorties/sortie-106239/,JOUAN ISABELLE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469585-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469592-scaled.jpg,9/25/2025 0:00,14.0000000,17.0000000,49.6869660000000,-1.27698900000000,,Gatteville phare,106254,Observation #106254,https://biolit.fr/observations/observation-106254/,Chaetophora lobata,Algue,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023104-scaled.jpg,,,Identifiable +N1,106239,Sortie #106239,https://biolit.fr/sorties/sortie-106239/,JOUAN ISABELLE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469585-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469592-scaled.jpg,9/25/2025 0:00,14.0000000,17.0000000,49.6869660000000,-1.27698900000000,,Gatteville phare,106256,Observation #106256,https://biolit.fr/observations/observation-106256/,Chaetophora lobata,Algue,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023105-scaled.jpg,,,Identifiable +N1,106239,Sortie #106239,https://biolit.fr/sorties/sortie-106239/,JOUAN ISABELLE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469585-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469592-scaled.jpg,9/25/2025 0:00,14.0000000,17.0000000,49.6869660000000,-1.27698900000000,,Gatteville phare,106260,Observation #106260,https://biolit.fr/observations/observation-106260/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023098-scaled.jpg,,,Identifiable +N1,106239,Sortie #106239,https://biolit.fr/sorties/sortie-106239/,JOUAN ISABELLE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023098-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023099-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023104-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023106-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469585-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1758871469592-scaled.jpg,9/25/2025 0:00,14.0000000,17.0000000,49.6869660000000,-1.27698900000000,,Gatteville phare,106262,Observation #106262,https://biolit.fr/observations/observation-106262/,Chaetophora lobata,Algue,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000023097-scaled.jpg,,,Identifiable +N1,106267,Sortie #106267,https://biolit.fr/sorties/sortie-106267/,HERAUVILLE CAMILLE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010609-1-scaled.jpg,9/25/2025 0:00,14.0000000,16.0000000,49.6860780000000,-1.27870600000000,,GATTEVILLE LE PHARE,106268,Observation #106268,https://biolit.fr/observations/observation-106268/,Crangon crangon,Crevette grise européenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b7f9e14ddbde5194c69e11aefea9060a/2025/09/1000010609-1-scaled.jpg,,,Identifiable +N1,106271,Sortie #106271,https://biolit.fr/sorties/sortie-106271/,JOUAN ISABELLE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000010609-scaled.jpg,9/25/2025 0:00,14.0000000,17.0000000,49.6869660000000,-1.27698900000000,,Gatteville phare,106272,Observation #106272,https://biolit.fr/observations/observation-106272/,Crangon crangon,Crevette grise européenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9018f9869e737cbcf621867ebd2b4092/2025/09/1000010609-scaled.jpg,,,Identifiable +N1,106421,Sortie #106421,https://biolit.fr/sorties/sortie-106421/,De Filippis Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073391-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073388-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073386-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073384-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073382-scaled.jpg,9/28/2025 0:00,9.0000000,10.0000000,43.668188,4.1252690,,Espiguette,,,,,,,,,, +N1,106427,Sortie #106427,https://biolit.fr/sorties/sortie-106427/,De Filippis Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073391-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073388-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073386-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073384-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073382-1-scaled.jpg,9/28/2025 0:00,9.0000000,10.000001,43.6682840,4.1252220,,Espiguette,,,,,,,,,, +N1,106429,Sortie #106429,https://biolit.fr/sorties/sortie-106429/,De Filippis Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073391-2-scaled.jpg,9/28/2025 0:00,9.000004,10.000004,43.6682900,4.1252340,,Espiguette,106430,Observation #106430,https://biolit.fr/observations/observation-106430/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073391-2-scaled.jpg,,,Ne sais pas +N1,106429,Sortie #106429,https://biolit.fr/sorties/sortie-106429/,De Filippis Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073391-2-scaled.jpg,9/28/2025 0:00,9.000004,10.000004,43.6682900,4.1252340,,Espiguette,106432,Observation #106432,https://biolit.fr/observations/observation-106432/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073391-2-scaled.jpg,,,Ne sais pas +N1,106438,Sortie #106438,https://biolit.fr/sorties/sortie-106438/,De Filippis Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073382-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073388-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073386-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073384-2-scaled.jpg,9/28/2025 0:00,9.0000000,10.000007,43.6682840,4.1252240,,Espiguette,106439,Observation #106439,https://biolit.fr/observations/observation-106439/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073382-2-scaled.jpg,,,Identifiable +N1,106438,Sortie #106438,https://biolit.fr/sorties/sortie-106438/,De Filippis Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073382-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073388-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073386-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073384-2-scaled.jpg,9/28/2025 0:00,9.0000000,10.000007,43.6682840,4.1252240,,Espiguette,106441,Observation #106441,https://biolit.fr/observations/observation-106441/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073388-2-scaled.jpg,,,Identifiable +N1,106438,Sortie #106438,https://biolit.fr/sorties/sortie-106438/,De Filippis Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073382-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073388-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073386-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073384-2-scaled.jpg,9/28/2025 0:00,9.0000000,10.000007,43.6682840,4.1252240,,Espiguette,106443,Observation #106443,https://biolit.fr/observations/observation-106443/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073384-2-scaled.jpg,,,Ne sais pas +N1,106438,Sortie #106438,https://biolit.fr/sorties/sortie-106438/,De Filippis Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073382-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073388-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073386-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073384-2-scaled.jpg,9/28/2025 0:00,9.0000000,10.000007,43.6682840,4.1252240,,Espiguette,106445,Observation #106445,https://biolit.fr/observations/observation-106445/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/09/1000073386-2-scaled.jpg,,,Ne sais pas +N1,106447,Sortie #106447,https://biolit.fr/sorties/sortie-106447/,De Filippis Agnès,,9/28/2025 0:00,9.0000000,10.000007,43.6682840,4.1252240,,Espiguette,,,,,,,,,, +N1,106526,Sortie #106526,https://biolit.fr/sorties/sortie-106526/,BROQUERE MARION,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/10e1d59ec6c945b4a2ae007190cdc498/2025/09/ctenophore-scaled.jpg,07/07/2025,10.0000000,12.0000000,43.4379710000000,3.78041300000000,CPIE Littoral d'Occitanie,étang d'Ingril,,,,,,,,,, +N1,106531,Sortie #106531,https://biolit.fr/sorties/sortie-106531/,DHULESIA Olivier,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_145736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_150127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_150240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_150558-scaled.jpg,9/27/2025 0:00,15.000007,17.000007,43.2692720000000,5.29596800000000,,Ile de Frioul,106532,Observation #106532,https://biolit.fr/observations/observation-106532/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_150240-scaled.jpg,,TRUE,Identifiable +N1,106531,Sortie #106531,https://biolit.fr/sorties/sortie-106531/,DHULESIA Olivier,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_145736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_150127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_150240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_150558-scaled.jpg,9/27/2025 0:00,15.000007,17.000007,43.2692720000000,5.29596800000000,,Ile de Frioul,106534,Observation #106534,https://biolit.fr/observations/observation-106534/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_150127-scaled.jpg,,,Ne sais pas +N1,106531,Sortie #106531,https://biolit.fr/sorties/sortie-106531/,DHULESIA Olivier,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_145736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_150127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_150240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_150558-scaled.jpg,9/27/2025 0:00,15.000007,17.000007,43.2692720000000,5.29596800000000,,Ile de Frioul,106536,Observation #106536,https://biolit.fr/observations/observation-106536/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_150240-scaled.jpg,,TRUE,Ne sais pas +N1,106531,Sortie #106531,https://biolit.fr/sorties/sortie-106531/,DHULESIA Olivier,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_145736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_150127-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_150240-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_150558-scaled.jpg,9/27/2025 0:00,15.000007,17.000007,43.2692720000000,5.29596800000000,,Ile de Frioul,106538,Observation #106538,https://biolit.fr/observations/observation-106538/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3ce65d81b38d59af242fa2c8a55049d3/2025/09/IMG_20250927_150558-scaled.jpg,,,Ne sais pas +N1,106562,Sortie #106562,https://biolit.fr/sorties/sortie-106562/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6892-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6891-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6890-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6889-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6898-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6893-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6906-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6901-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6911-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6907-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6894-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6899-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6900-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6897-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6902-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6905-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6896-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6913-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6903-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6908-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399050000000,5.36246000000000,Planète Mer,Plage au bain des dames,106565,Observation #106565,https://biolit.fr/observations/observation-106565/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6892-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6891-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6889-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6890-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6898-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6901-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6906-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6893-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6911-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6907-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6894-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6899-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6900-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6897-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6905-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6902-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6913-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6896-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6908-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6903-scaled.jpeg,,,Ne sais pas +N1,106562,Sortie #106562,https://biolit.fr/sorties/sortie-106562/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6892-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6891-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6890-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6889-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6898-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6893-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6906-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6901-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6911-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6907-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6894-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6899-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6900-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6897-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6902-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6905-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6896-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6913-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6903-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6908-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399050000000,5.36246000000000,Planète Mer,Plage au bain des dames,108373,Observation #108373,https://biolit.fr/observations/observation-108373/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6891-scaled.jpeg,,TRUE, +N1,106562,Sortie #106562,https://biolit.fr/sorties/sortie-106562/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6892-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6891-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6890-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6889-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6898-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6893-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6906-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6901-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6911-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6907-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6894-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6899-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6900-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6897-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6902-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6905-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6896-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6913-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6903-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6908-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399050000000,5.36246000000000,Planète Mer,Plage au bain des dames,108376,Observation #108376,https://biolit.fr/observations/observation-108376/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6889-scaled.jpeg,,, +N1,106562,Sortie #106562,https://biolit.fr/sorties/sortie-106562/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6892-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6891-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6890-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6889-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6898-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6893-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6906-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6901-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6911-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6907-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6894-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6899-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6900-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6897-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6902-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6905-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6896-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6913-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6903-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6908-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399050000000,5.36246000000000,Planète Mer,Plage au bain des dames,108378,Observation #108378,https://biolit.fr/observations/observation-108378/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6896-scaled.jpeg,,, +N1,106562,Sortie #106562,https://biolit.fr/sorties/sortie-106562/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6892-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6891-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6890-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6889-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6898-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6893-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6906-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6901-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6911-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6907-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6894-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6899-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6900-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6897-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6902-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6905-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6896-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6913-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6903-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6908-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399050000000,5.36246000000000,Planète Mer,Plage au bain des dames,108380,Observation #108380,https://biolit.fr/observations/observation-108380/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6898-scaled.jpeg,,, +N1,106562,Sortie #106562,https://biolit.fr/sorties/sortie-106562/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6892-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6891-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6890-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6889-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6898-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6893-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6906-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6901-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6911-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6907-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6894-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6899-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6900-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6897-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6902-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6905-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6896-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6913-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6903-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6908-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399050000000,5.36246000000000,Planète Mer,Plage au bain des dames,108382,Observation #108382,https://biolit.fr/observations/observation-108382/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6894-scaled.jpeg,,, +N1,106562,Sortie #106562,https://biolit.fr/sorties/sortie-106562/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6892-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6891-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6890-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6889-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6898-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6893-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6906-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6901-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6911-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6907-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6894-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6899-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6900-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6897-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6902-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6905-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6896-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6913-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6903-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6908-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399050000000,5.36246000000000,Planète Mer,Plage au bain des dames,108384,Observation #108384,https://biolit.fr/observations/observation-108384/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6890-scaled.jpeg,,, +N1,106562,Sortie #106562,https://biolit.fr/sorties/sortie-106562/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6892-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6891-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6890-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6889-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6898-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6893-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6906-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6901-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6911-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6907-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6894-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6899-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6900-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6897-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6902-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6905-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6896-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6913-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6903-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6908-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399050000000,5.36246000000000,Planète Mer,Plage au bain des dames,108386,Observation #108386,https://biolit.fr/observations/observation-108386/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6903-scaled.jpeg,,, +N1,106562,Sortie #106562,https://biolit.fr/sorties/sortie-106562/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6892-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6891-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6890-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6889-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6898-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6893-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6906-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6901-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6911-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6907-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6894-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6899-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6900-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6897-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6902-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6905-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6896-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6913-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6903-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6908-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399050000000,5.36246000000000,Planète Mer,Plage au bain des dames,108388,Observation #108388,https://biolit.fr/observations/observation-108388/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6905-scaled.jpeg,,, +N1,106562,Sortie #106562,https://biolit.fr/sorties/sortie-106562/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6892-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6891-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6890-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6889-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6898-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6893-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6906-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6901-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6911-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6907-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6894-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6899-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6900-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6897-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6902-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6905-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6896-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6913-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6903-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6908-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399050000000,5.36246000000000,Planète Mer,Plage au bain des dames,108390,Observation #108390,https://biolit.fr/observations/observation-108390/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6906-scaled.jpeg,,, +N1,106562,Sortie #106562,https://biolit.fr/sorties/sortie-106562/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6892-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6891-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6890-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6889-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6898-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6893-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6906-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6901-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6911-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6907-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6894-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6899-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6900-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6897-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6902-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6905-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6896-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6913-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6903-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6908-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399050000000,5.36246000000000,Planète Mer,Plage au bain des dames,108392,Observation #108392,https://biolit.fr/observations/observation-108392/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/09/IMG_6913-scaled.jpeg,,, +N1,106595,Sortie #106595,https://biolit.fr/sorties/sortie-106595/,Goossens Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4678-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4679-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4681-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4682-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4685-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4686-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4687-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4688-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4691-scaled.jpg,10/01/2025,10.0000000,12.0000000,42.5000450000000,3.12850300000000,CPIE Littoral d'Occitanie,Plage del Forat,106596,Observation #106596,https://biolit.fr/observations/observation-106596/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4686-scaled.jpg,,TRUE,Identifiable +N1,106595,Sortie #106595,https://biolit.fr/sorties/sortie-106595/,Goossens Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4678-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4679-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4681-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4682-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4685-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4686-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4687-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4688-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4691-scaled.jpg,10/01/2025,10.0000000,12.0000000,42.5000450000000,3.12850300000000,CPIE Littoral d'Occitanie,Plage del Forat,106598,Observation #106598,https://biolit.fr/observations/observation-106598/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4677-scaled.jpg,,,Ne sais pas +N1,106595,Sortie #106595,https://biolit.fr/sorties/sortie-106595/,Goossens Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4678-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4679-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4681-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4682-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4685-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4686-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4687-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4688-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4691-scaled.jpg,10/01/2025,10.0000000,12.0000000,42.5000450000000,3.12850300000000,CPIE Littoral d'Occitanie,Plage del Forat,106600,Observation #106600,https://biolit.fr/observations/observation-106600/,Hexaplex trunculus,Rocher fascié,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4687-scaled.jpg,,,Identifiable +N1,106595,Sortie #106595,https://biolit.fr/sorties/sortie-106595/,Goossens Alice,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4677-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4678-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4679-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4681-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4682-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4685-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4686-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4687-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4688-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4689-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4691-scaled.jpg,10/01/2025,10.0000000,12.0000000,42.5000450000000,3.12850300000000,CPIE Littoral d'Occitanie,Plage del Forat,106602,Observation #106602,https://biolit.fr/observations/observation-106602/,Padina pavonica,Padine queue de paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/917c36175ae3f2107140a1d04c585c48/2025/10/IMG_4682-scaled.jpg,,,Identifiable +N1,106610,Sortie #106610,https://biolit.fr/sorties/sortie-106610/,De Filippis Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/10/1000074101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/10/1000074097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/10/1000074082-scaled.jpg,10/05/2025,10.0000000,11.0000000,43.6682280,4.1251650,,Espiguette,106611,Observation #106611,https://biolit.fr/observations/observation-106611/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/10/1000074101-scaled.jpg,,,Identifiable +N1,106610,Sortie #106610,https://biolit.fr/sorties/sortie-106610/,De Filippis Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/10/1000074101-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/10/1000074097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/10/1000074082-scaled.jpg,10/05/2025,10.0000000,11.0000000,43.6682280,4.1251650,,Espiguette,106613,Observation #106613,https://biolit.fr/observations/observation-106613/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/10/1000074097-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/10/1000074082-scaled.jpg,,,Identifiable +N1,106615,Sortie #106615,https://biolit.fr/sorties/sortie-106615/,De Filippis Agnès,,10/05/2025,10.0000000,11.0000000,43.6682280,4.1251650,,Espiguette,,,,,,,,,, +N1,106616,Sortie #106616,https://biolit.fr/sorties/sortie-106616/,JEAN Antoines,,10/01/2025,14.0000000,15.0000000,47.1346080000000,-2.24730500000000,,Préfailles Pointe Saint-Gildas,,,,,,,,,, +N1,106708,Sortie #106708,https://biolit.fr/sorties/sortie-106708/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/CIone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tomate-de-mer-scaled.jpg,9/23/2025 0:00,15.0000000,16.0000000,48.7025750000000,-1.84708700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,106741,Observation #106741,https://biolit.fr/observations/observation-106741/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-2-scaled.jpg,,TRUE,Identifiable +N1,106708,Sortie #106708,https://biolit.fr/sorties/sortie-106708/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/CIone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tomate-de-mer-scaled.jpg,9/23/2025 0:00,15.0000000,16.0000000,48.7025750000000,-1.84708700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,106743,Observation #106743,https://biolit.fr/observations/observation-106743/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-scaled.jpg,,TRUE,Identifiable +N1,106708,Sortie #106708,https://biolit.fr/sorties/sortie-106708/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/CIone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tomate-de-mer-scaled.jpg,9/23/2025 0:00,15.0000000,16.0000000,48.7025750000000,-1.84708700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,106745,Observation #106745,https://biolit.fr/observations/observation-106745/,Botrylloides diegensis,Botrylle de San Diego,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-1-scaled.jpg,,TRUE,Identifiable +N1,106708,Sortie #106708,https://biolit.fr/sorties/sortie-106708/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/CIone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tomate-de-mer-scaled.jpg,9/23/2025 0:00,15.0000000,16.0000000,48.7025750000000,-1.84708700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,106747,Observation #106747,https://biolit.fr/observations/observation-106747/,Ciona intestinalis,Cione intestinale,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-scaled.jpg,,,Identifiable +N1,106708,Sortie #106708,https://biolit.fr/sorties/sortie-106708/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/CIone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tomate-de-mer-scaled.jpg,9/23/2025 0:00,15.0000000,16.0000000,48.7025750000000,-1.84708700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,106749,Observation #106749,https://biolit.fr/observations/observation-106749/,Conger conger,Congre,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-8-scaled.jpg,,,Identifiable +N1,106708,Sortie #106708,https://biolit.fr/sorties/sortie-106708/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/CIone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tomate-de-mer-scaled.jpg,9/23/2025 0:00,15.0000000,16.0000000,48.7025750000000,-1.84708700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,106751,Observation #106751,https://biolit.fr/observations/observation-106751/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-scaled.jpg,,TRUE,Identifiable +N1,106708,Sortie #106708,https://biolit.fr/sorties/sortie-106708/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/CIone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tomate-de-mer-scaled.jpg,9/23/2025 0:00,15.0000000,16.0000000,48.7025750000000,-1.84708700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,106753,Observation #106753,https://biolit.fr/observations/observation-106753/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-2-scaled.jpg,,TRUE,Identifiable +N1,106708,Sortie #106708,https://biolit.fr/sorties/sortie-106708/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/CIone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tomate-de-mer-scaled.jpg,9/23/2025 0:00,15.0000000,16.0000000,48.7025750000000,-1.84708700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,106755,Observation #106755,https://biolit.fr/observations/observation-106755/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-2-scaled.jpg,,TRUE,Identifiable +N1,106708,Sortie #106708,https://biolit.fr/sorties/sortie-106708/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-san-diego-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/CIone-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-5-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-6-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-7-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Congre-8-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gibulle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tomate-de-mer-scaled.jpg,9/23/2025 0:00,15.0000000,16.0000000,48.7025750000000,-1.84708700000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,106757,Observation #106757,https://biolit.fr/observations/observation-106757/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tomate-de-mer-scaled.jpg,,,Identifiable +N1,106739,Sortie #106739,https://biolit.fr/sorties/sortie-106739/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c01a5869814dd6070318f10d0f43f06/2025/10/20190226-sabot-BioLit-Jessica-Bourcillier_La-teste-de-Buch.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c01a5869814dd6070318f10d0f43f06/2025/10/20190821_RhizostomecBioLit-Lexton-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c01a5869814dd6070318f10d0f43f06/2025/10/Actinia_equina_BioLit-_Phil.jpg,10/03/2025,10.0000000,11.0000000,45.9470120000000,-1.12060500000,,test,,,,,,,,,, +N1,106768,Sortie #106768,https://biolit.fr/sorties/sortie-106768/,PATRON Esther,,10/03/2025,9.0000000,12.0000000,48.4382790000000,-4.78646600000000,,Île Ségal Plouarzel,,,,,,,,,, +N1,106775,Sortie #106775,https://biolit.fr/sorties/sortie-106775/,PATRON Esther,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5214.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5212.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5211.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5209.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5208.jpeg,10/03/2025,9.0000000,12.0000000,48.4382940000000,-4.78684200000000,,Île Ségal Plouarzel,,,,,,,,,, +N1,106793,Sortie #106793,https://biolit.fr/sorties/sortie-106793/,PATRON Esther,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5214-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5212-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5211-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5209-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5208-1.jpeg,10/03/2025,9.0000000,12.0000000,48.4382150000000,-4.78689600000000,,Île Ségal Plouarzel,106794,Observation #106794,https://biolit.fr/observations/observation-106794/,Clibanarius erythropus,Pagure des rochers,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5214-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5212-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5211-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5209-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5208-1.jpeg,,,Identifiable +N1,106797,Sortie #106797,https://biolit.fr/sorties/sortie-106797/,PATRON Esther,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_1968-scaled.jpeg,5/18/2025 0:00,16.0000000,16.0:45,48.0182140000000,-4.53538200000000,,Audierne sentier de grande randonnée 34,,,,,,,,,, +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106831,Observation #106831,https://biolit.fr/observations/observation-106831/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg,,TRUE,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106833,Observation #106833,https://biolit.fr/observations/observation-106833/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg,,TRUE,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106835,Observation #106835,https://biolit.fr/observations/observation-106835/,Pagurus bernhardus,Bernard-l'ermite commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg,,,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106837,Observation #106837,https://biolit.fr/observations/observation-106837/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg,,TRUE,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106839,Observation #106839,https://biolit.fr/observations/observation-106839/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg,,,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106841,Observation #106841,https://biolit.fr/observations/observation-106841/,Acanthocardia aculeata,Bucarde épineuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg,,TRUE,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106843,Observation #106843,https://biolit.fr/observations/observation-106843/,Calliostoma zizyphinum,Calliostome,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg,,TRUE,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106845,Observation #106845,https://biolit.fr/observations/observation-106845/,Ciona intestinalis,Cione intestinale,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg,,,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106847,Observation #106847,https://biolit.fr/observations/observation-106847/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg,,TRUE,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106849,Observation #106849,https://biolit.fr/observations/observation-106849/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg,,TRUE,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106851,Observation #106851,https://biolit.fr/observations/observation-106851/,Halichondria (Halichondria) panicea,Eponge mie de pain,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg,,,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106853,Observation #106853,https://biolit.fr/observations/observation-106853/,Necora puber,Etrille commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg,,TRUE,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106855,Observation #106855,https://biolit.fr/observations/observation-106855/,Galathea squamifera,Galathée noire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg,,TRUE,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106857,Observation #106857,https://biolit.fr/observations/observation-106857/,Laevicardium crassum,Bucarde de Norvège,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg,,,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106859,Observation #106859,https://biolit.fr/observations/observation-106859/,Macropodia rostrata,Macropode rostré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg,,,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106861,Observation #106861,https://biolit.fr/observations/observation-106861/,Tethya citrina,Orange de mer de Manche Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg,,,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106863,Observation #106863,https://biolit.fr/observations/observation-106863/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg,,TRUE,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106865,Observation #106865,https://biolit.fr/observations/observation-106865/,Pecten maximus,Coquille Saint-Jacques de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg,,TRUE,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106867,Observation #106867,https://biolit.fr/observations/observation-106867/,Cancer pagurus,Tourteau,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,,TRUE,Identifiable +N1,106830,Sortie #106830,https://biolit.fr/sorties/sortie-106830/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-parasite-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bernard-lhermite-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Botrylle-leachi-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Bucarde-epineuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Calliostome-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Cione-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crabe-pierre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Crepidule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Eponge-mie-de-pain-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Etrille-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Galathee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007153109-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/IMG20251007154947-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Macropode-rostre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Orange-de-mer-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Saint-Jacques-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,10/07/2025,15.0000000,16.0000000,48.7038070000000,-1.84451200000000,Centre Virginie Hériot,Plage du Potelet,106869,Observation #106869,https://biolit.fr/observations/observation-106869/,Sacculina carcini,Sacculine du crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/10/Tourteau-et-sacculine-2-scaled.jpg,,TRUE,Identifiable +N1,106873,Sortie #106873,https://biolit.fr/sorties/sortie-106873/,PATRON Esther,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5238.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/6C3C75BB-D8C3-4470-B820-A25FA383DAF4.jpeg,10/03/2025,9.0000000,12.0000000,48.4381730000000,-4.78660600000000,,Île Ségal Plouarzel,106874,Observation #106874,https://biolit.fr/observations/observation-106874/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5238.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/6C3C75BB-D8C3-4470-B820-A25FA383DAF4.jpeg,,,Identifiable +N1,106873,Sortie #106873,https://biolit.fr/sorties/sortie-106873/,PATRON Esther,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5238.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/6C3C75BB-D8C3-4470-B820-A25FA383DAF4.jpeg,10/03/2025,9.0000000,12.0000000,48.4381730000000,-4.78660600000000,,Île Ségal Plouarzel,106876,Observation #106876,https://biolit.fr/observations/observation-106876/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/IMG_5238.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b62e67cd0b01bab3cfb7b0d03ad084b7/2025/10/6C3C75BB-D8C3-4470-B820-A25FA383DAF4.jpeg,,,Identifiable +N1,106880,Sortie #106880,https://biolit.fr/sorties/sortie-106880/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6296-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6289.jpeg,10/08/2025,12.0000000,12.0:33,43.271131000000,6.57889100000000,,Port Grimaud Ile Verte,106881,Observation #106881,https://biolit.fr/observations/observation-106881/,Alcedo atthis,Martin-pêcheur d'Europe,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6296-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6289.jpeg,,TRUE,Identifiable +N1,106890,Sortie #106890,https://biolit.fr/sorties/sortie-106890/,Pigeuad Thierry,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ccf65fe1e36ff560da2d4d5b07c60572/2025/10/IMG_2466-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ccf65fe1e36ff560da2d4d5b07c60572/2025/10/IMG_2467-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ccf65fe1e36ff560da2d4d5b07c60572/2025/10/IMG_2468-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ccf65fe1e36ff560da2d4d5b07c60572/2025/10/IMG_2470-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ccf65fe1e36ff560da2d4d5b07c60572/2025/10/IMG_2472-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ccf65fe1e36ff560da2d4d5b07c60572/2025/10/IMG_2473-scaled.jpeg,10/09/2025,14.0:15,16.0:15,44.6572820000000,-1.23879400000000,Planète Mer,Ponton du cap ferret,,,,,,,,,, +N1,106903,Sortie #106903,https://biolit.fr/sorties/sortie-106903/,Pigeuad Thierry,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ccf65fe1e36ff560da2d4d5b07c60572/2025/10/IMG_2474-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ccf65fe1e36ff560da2d4d5b07c60572/2025/10/IMG_2475-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ccf65fe1e36ff560da2d4d5b07c60572/2025/10/IMG_2478-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ccf65fe1e36ff560da2d4d5b07c60572/2025/10/IMG_2481-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ccf65fe1e36ff560da2d4d5b07c60572/2025/10/IMG_2479-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ccf65fe1e36ff560da2d4d5b07c60572/2025/10/IMG_2480-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ccf65fe1e36ff560da2d4d5b07c60572/2025/10/IMG_2477-scaled.jpeg,10/09/2025,16.0:19,18.0:19,44.6499340000000,-1.26016600000000,Planète Mer,Cap ferret plage atlantique,,,,,,,,,, +N1,106905,Sortie #106905,https://biolit.fr/sorties/sortie-106905/,Vargas Hugo,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/821c82c61a1ba60957770f32cfae2434/2025/10/IMG_0118-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/821c82c61a1ba60957770f32cfae2434/2025/10/IMG_0124-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/821c82c61a1ba60957770f32cfae2434/2025/10/IMG_0123-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/821c82c61a1ba60957770f32cfae2434/2025/10/IMG_0122-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/821c82c61a1ba60957770f32cfae2434/2025/10/IMG_0120-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/821c82c61a1ba60957770f32cfae2434/2025/10/IMG_0116-scaled.jpeg,10/09/2025,15.0:16,18.0:17,44.6636140000000,-1.16411800000000,,Cap ferret,,,,,,,,,, +N1,106918,Sortie #106918,https://biolit.fr/sorties/sortie-106918/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5608-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5609-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5610-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5613-scaled.jpg,09/06/2025,14.0000000,16.0000000,42.8979490000000,3.05500000000000,,Leucate,106919,Observation #106919,https://biolit.fr/observations/observation-106919/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5608-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5609-scaled.jpg,,,Ne sais pas +N1,106918,Sortie #106918,https://biolit.fr/sorties/sortie-106918/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5608-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5609-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5610-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5613-scaled.jpg,09/06/2025,14.0000000,16.0000000,42.8979490000000,3.05500000000000,,Leucate,106921,Observation #106921,https://biolit.fr/observations/observation-106921/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5610-scaled.jpg,,,non-identifiable +N1,106918,Sortie #106918,https://biolit.fr/sorties/sortie-106918/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5608-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5609-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5610-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5613-scaled.jpg,09/06/2025,14.0000000,16.0000000,42.8979490000000,3.05500000000000,,Leucate,106923,Observation #106923,https://biolit.fr/observations/observation-106923/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5613-scaled.jpg,,,Ne sais pas +N1,106927,Sortie #106927,https://biolit.fr/sorties/sortie-106927/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5600.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5601.jpg,9/13/2025 0:00,10.0000000,10.0000000,43.129653000000,3.14460800000000,,Gruissan,106928,Observation #106928,https://biolit.fr/observations/observation-106928/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5600.jpg,,,Identifiable +N1,106927,Sortie #106927,https://biolit.fr/sorties/sortie-106927/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5600.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5601.jpg,9/13/2025 0:00,10.0000000,10.0000000,43.129653000000,3.14460800000000,,Gruissan,106930,Observation #106930,https://biolit.fr/observations/observation-106930/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5601.jpg,,,Ne sais pas +N1,106933,Sortie #106933,https://biolit.fr/sorties/sortie-106933/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_7912-scaled.jpg,08/02/2025,11.0000000,12.0000000,42.9893460000000,6.18907900000000,,porquerolles,106934,Observation #106934,https://biolit.fr/observations/observation-106934/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_7912-scaled.jpg,,TRUE,Identifiable +N1,106937,Sortie #106937,https://biolit.fr/sorties/sortie-106937/,SALLE Sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5617-scaled.jpg,09/10/2025,14.0000000,14.0000000,43.1577920000000,3.16886900000000,,Narbonne Plage,106938,Observation #106938,https://biolit.fr/observations/observation-106938/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f145efe5cdf80fe89dcb2ca7b206a3d7/2025/10/IMG_5617-scaled.jpg,,,Identifiable +N1,107023,Sortie #107023,https://biolit.fr/sorties/sortie-107023/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6686-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6691-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6696-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6701-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-scaled.jpeg,10/08/2025,10.000001,15.0000000,46.4872270000000,-1.76815500000000,,LES SABLES D'OLONNE,107024,Observation #107024,https://biolit.fr/observations/observation-107024/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6686-scaled.jpeg,,,Identifiable +N1,107023,Sortie #107023,https://biolit.fr/sorties/sortie-107023/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6686-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6691-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6696-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6701-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-scaled.jpeg,10/08/2025,10.000001,15.0000000,46.4872270000000,-1.76815500000000,,LES SABLES D'OLONNE,107026,Observation #107026,https://biolit.fr/observations/observation-107026/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6686-scaled.jpeg,,,Identifiable +N1,107028,Sortie #107028,https://biolit.fr/sorties/sortie-107028/,CHAILLOU PATRICK,,10/08/2025,10.0000000,15.0000000,46.4873450000000,-1.76764000000000,,LES SABLES D'OLONNE,,,,,,,,,, +N1,107041,Sortie #107041,https://biolit.fr/sorties/sortie-107041/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6691-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6696-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6701-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-1-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4873450000000,-1.76764000000000,,LES SABLES D'OLONNE,107042,Observation #107042,https://biolit.fr/observations/observation-107042/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6691-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6696-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6701-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-1-scaled.jpeg,,,Ne sais pas +N1,107058,Sortie #107058,https://biolit.fr/sorties/sortie-107058/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6696-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6701-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-2-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.490742000000,-1.77384100000000,,LES SABLES D'OLONNE,107059,Observation #107059,https://biolit.fr/observations/observation-107059/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6696-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6701-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-2-scaled.jpeg,,,Ne sais pas +N1,107058,Sortie #107058,https://biolit.fr/sorties/sortie-107058/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6696-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6701-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-2-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.490742000000,-1.77384100000000,,LES SABLES D'OLONNE,107061,Observation #107061,https://biolit.fr/observations/observation-107061/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-2-scaled.jpeg,,TRUE,Ne sais pas +N1,107058,Sortie #107058,https://biolit.fr/sorties/sortie-107058/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6696-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6701-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-2-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.490742000000,-1.77384100000000,,LES SABLES D'OLONNE,107063,Observation #107063,https://biolit.fr/observations/observation-107063/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-2-scaled.jpeg,,TRUE,Identifiable +N1,107058,Sortie #107058,https://biolit.fr/sorties/sortie-107058/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6696-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6701-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-2-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.490742000000,-1.77384100000000,,LES SABLES D'OLONNE,107065,Observation #107065,https://biolit.fr/observations/observation-107065/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-2-scaled.jpeg,,,Ne sais pas +N1,107058,Sortie #107058,https://biolit.fr/sorties/sortie-107058/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6696-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6701-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-2-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.490742000000,-1.77384100000000,,LES SABLES D'OLONNE,107067,Observation #107067,https://biolit.fr/observations/observation-107067/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-2-scaled.jpeg,,,Ne sais pas +N1,107058,Sortie #107058,https://biolit.fr/sorties/sortie-107058/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6696-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6701-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-2-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.490742000000,-1.77384100000000,,LES SABLES D'OLONNE,107069,Observation #107069,https://biolit.fr/observations/observation-107069/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-2-scaled.jpeg,,,Ne sais pas +N1,107058,Sortie #107058,https://biolit.fr/sorties/sortie-107058/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6696-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6701-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-2-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.490742000000,-1.77384100000000,,LES SABLES D'OLONNE,107071,Observation #107071,https://biolit.fr/observations/observation-107071/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-2-scaled.jpeg,,,Ne sais pas +N1,107058,Sortie #107058,https://biolit.fr/sorties/sortie-107058/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6696-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6701-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-2-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.490742000000,-1.77384100000000,,LES SABLES D'OLONNE,107073,Observation #107073,https://biolit.fr/observations/observation-107073/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-2-scaled.jpeg,,,Ne sais pas +N1,107058,Sortie #107058,https://biolit.fr/sorties/sortie-107058/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6696-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6701-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-2-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.490742000000,-1.77384100000000,,LES SABLES D'OLONNE,107075,Observation #107075,https://biolit.fr/observations/observation-107075/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712-2.jpeg,,,Ne sais pas +N1,107058,Sortie #107058,https://biolit.fr/sorties/sortie-107058/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6696-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6701-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-2-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.490742000000,-1.77384100000000,,LES SABLES D'OLONNE,107077,Observation #107077,https://biolit.fr/observations/observation-107077/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-2-scaled.jpeg,,,Ne sais pas +N1,107058,Sortie #107058,https://biolit.fr/sorties/sortie-107058/,CHAILLOU PATRICK,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6696-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6700-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6701-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6703-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6705-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6706-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6709-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6711-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6712-2.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6716-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-2-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.490742000000,-1.77384100000000,,LES SABLES D'OLONNE,107079,Observation #107079,https://biolit.fr/observations/observation-107079/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/de03b5eca7afcc0b4ca9ddd80817a525/2025/10/IMG_6717-2-scaled.jpeg,,TRUE,Ne sais pas +N1,107180,Sortie #107180,https://biolit.fr/sorties/sortie-107180/,Leroux Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000025988-scaled.jpg,10/12/2025,16.0000000,17.0000000,50.8038440,1.6198570,,SLACK / POINTE AUX OIES,107181,Observation #107181,https://biolit.fr/observations/observation-107181/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000025988-scaled.jpg,,TRUE,Identifiable +N1,107184,Sortie #107184,https://biolit.fr/sorties/sortie-107184/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6598-5.jpeg,10/11/2025,11.0:55,12.0000000,43.2711550000000,6.57894900000000,,Port Grimaud - Ile Verte,107187,Observation #107187,https://biolit.fr/observations/observation-107187/,Ardea cinerea,Héron cendré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6598-5.jpeg,,,Identifiable +N1,107193,Sortie #107193,https://biolit.fr/sorties/sortie-107193/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6582.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6581.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6580.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6537.jpeg,10/11/2025,13.0:35,13.0000000,43.2696590000000,6.57956300000000,,Port Grimaud - plagette rie de la Giscle,107194,Observation #107194,https://biolit.fr/observations/observation-107194/,Actitis hypoleucos,Chevalier guignette,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6582.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6580.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6537.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6581.jpeg,,,Identifiable +N1,107197,Sortie #107197,https://biolit.fr/sorties/sortie-107197/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6589-scaled.jpeg,10/12/2025,12.000005,12.0000000,43.2696690000000,6.57974000000000,,Port grimaud - plagette rue de la Giscle,107198,Observation #107198,https://biolit.fr/observations/observation-107198/,Atherina boyeri,Joël,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6589-scaled.jpeg,,,Identifiable +N1,107201,Sortie #107201,https://biolit.fr/sorties/sortie-107201/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6626.jpeg,10/10/2025,17.0:38,17.0000000,43.2846830000000,6.60085200000000,,Beauvallon,107202,Observation #107202,https://biolit.fr/observations/observation-107202/,Phalacrocorax aristotelis,Cormoran huppé,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6626.jpeg,,,Identifiable +N1,107206,Sortie #107206,https://biolit.fr/sorties/sortie-107206/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6350.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6351-scaled.jpeg,10/10/2025,13.0:21,13.0:25,43.2861520000000,6.60452100000000,,Beauvallon,107207,Observation #107207,https://biolit.fr/observations/observation-107207/,Octopus vulgaris,Poulpe commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6350.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6351-scaled.jpeg,,TRUE,Identifiable +N1,107211,Sortie #107211,https://biolit.fr/sorties/sortie-107211/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6386-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6640.jpeg,10/10/2025,16.0:31,16.0000000,43.2702600000000,6.59394300000000,,Port Grimaud,107212,Observation #107212,https://biolit.fr/observations/observation-107212/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6640.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6386-scaled.jpeg,,,Identifiable +N1,107216,Sortie #107216,https://biolit.fr/sorties/sortie-107216/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6647-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6648.jpeg,10/10/2025,18.0:33,18.0:37,43.2720410000000,6.58202300000000,,Port Grimaud - grand bassin,107217,Observation #107217,https://biolit.fr/observations/observation-107217/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6648.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6647-scaled.jpeg,,,Identifiable +N1,107221,Sortie #107221,https://biolit.fr/sorties/sortie-107221/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_4904.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6661.jpeg,9/29/2025 0:00,18.0:53,19.0000000,43.2705890000000,6.57855300000000,,Port Grimaud plagette Ile des 4 vents,107222,Observation #107222,https://biolit.fr/observations/observation-107222/,Actitis hypoleucos,Chevalier guignette,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6661.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_4904.jpeg,,,Identifiable +N1,107225,Sortie #107225,https://biolit.fr/sorties/sortie-107225/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_4789-scaled.jpeg,9/27/2025 0:00,11.0000000,11.000003,43.270936000000,6.57850400000000,,Port grimaud ile des 4 vents,107226,Observation #107226,https://biolit.fr/observations/observation-107226/,Sparus aurata,Dorade (daurade) royale,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_4789-scaled.jpeg,,,Identifiable +N1,107230,Sortie #107230,https://biolit.fr/sorties/sortie-107230/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6663.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6664.jpeg,9/27/2025 0:00,10.0:59,11.000007,43.2709240000000,6.5785600000000,,Port Grimaud - ile des 4 vents,107231,Observation #107231,https://biolit.fr/observations/observation-107231/,Diplodus sargus,Sar commun de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6663.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_6664.jpeg,,,Identifiable +N1,107234,Sortie #107234,https://biolit.fr/sorties/sortie-107234/,BROSSARD ANGELIQUE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f96e60b2089a6b58e414574587153c1d/2025/10/IMG_5610-oiseau-scaled.png,10/09/2025,10.0000000,12.0000000,46.9240950000000,-2.16018700000000,,POLDER SEBASTOPOL,,,,,,,,,, +N1,107236,Sortie #107236,https://biolit.fr/sorties/sortie-107236/,BROSSARD ANGELIQUE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f96e60b2089a6b58e414574587153c1d/2025/10/IMG_5616-oiseaux-scaled.jpg,10/09/2025,10.0000000,12.0000000,46.9478070000000,-2.15392100000000,,POLDER SEBASTOPOL,,,,,,,,,, +N1,107238,Sortie #107238,https://biolit.fr/sorties/sortie-107238/,BROSSARD ANGELIQUE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f96e60b2089a6b58e414574587153c1d/2025/10/IMG_5623-Oiseaux--scaled.jpg,10/09/2025,10.0000000,12.0000000,46.9465180000000,-2.15718300000000,,POLDER SEBASTOPOL,,,,,,,,,, +N1,107242,Sortie #107242,https://biolit.fr/sorties/sortie-107242/,MAUNOURY Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d160b91cf3c249fd9674d0b8575b58b8/2025/10/goeland-argente-juvenile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d160b91cf3c249fd9674d0b8575b58b8/2025/10/Avocettes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d160b91cf3c249fd9674d0b8575b58b8/2025/10/Grand-Cormoran-scaled.jpg,10/09/2025,10.0000000,12.0000000,46.9418860000000,-2.15705400000000,,Noirmoutier,107243,Observation #107243,https://biolit.fr/observations/observation-107243/,Larus argentatus,Goéland argenté,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d160b91cf3c249fd9674d0b8575b58b8/2025/10/goeland-argente-juvenile-scaled.jpg,,,Identifiable +N1,107242,Sortie #107242,https://biolit.fr/sorties/sortie-107242/,MAUNOURY Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d160b91cf3c249fd9674d0b8575b58b8/2025/10/goeland-argente-juvenile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d160b91cf3c249fd9674d0b8575b58b8/2025/10/Avocettes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d160b91cf3c249fd9674d0b8575b58b8/2025/10/Grand-Cormoran-scaled.jpg,10/09/2025,10.0000000,12.0000000,46.9418860000000,-2.15705400000000,,Noirmoutier,107245,Observation #107245,https://biolit.fr/observations/observation-107245/,Recurvirostra avosetta,Avocette élégante,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d160b91cf3c249fd9674d0b8575b58b8/2025/10/Avocettes-scaled.jpg,,,Identifiable +N1,107242,Sortie #107242,https://biolit.fr/sorties/sortie-107242/,MAUNOURY Mathilde,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d160b91cf3c249fd9674d0b8575b58b8/2025/10/goeland-argente-juvenile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d160b91cf3c249fd9674d0b8575b58b8/2025/10/Avocettes-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d160b91cf3c249fd9674d0b8575b58b8/2025/10/Grand-Cormoran-scaled.jpg,10/09/2025,10.0000000,12.0000000,46.9418860000000,-2.15705400000000,,Noirmoutier,107247,Observation #107247,https://biolit.fr/observations/observation-107247/,Phalacrocorax carbo,Grand cormoran,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d160b91cf3c249fd9674d0b8575b58b8/2025/10/Grand-Cormoran-scaled.jpg,,,Identifiable +N1,107259,Sortie #107259,https://biolit.fr/sorties/sortie-107259/,Yuste Enrique,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4c373576005c21ebf1c5a49e86625f55/2025/10/20251010_114554-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4c373576005c21ebf1c5a49e86625f55/2025/10/20251009_180738-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4c373576005c21ebf1c5a49e86625f55/2025/10/20251010_114603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4c373576005c21ebf1c5a49e86625f55/2025/10/20251010_143442-scaled.jpg,10/09/2025,9.0000000,17.0000000,44.6009830000000,-1.21103700000000,,Arcachon,,,,,,,,,, +N1,107268,Sortie #107268,https://biolit.fr/sorties/sortie-107268/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-de-norvege_Laevicardium-crassum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-rouge_acanthocardia-echinata-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/couteau-americain_ensis-leei-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Couteau-gousse_Pharus-legumen-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/flion-tronque_donax-trunculus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Lutraire-elliptique_Lutraria-lutraria-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/semicassis-saburon-2-scaled.jpg,10/10/2025,11.0000000,12.0000000,43.724531000000,-1.43094800000000,Centre de la mer,Plage des casernes de Seignosse,107269,Observation #107269,https://biolit.fr/observations/observation-107269/,Laevicardium crassum,Bucarde de Norvège,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-de-norvege_Laevicardium-crassum-scaled.jpg,,TRUE,Identifiable +N1,107268,Sortie #107268,https://biolit.fr/sorties/sortie-107268/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-de-norvege_Laevicardium-crassum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-rouge_acanthocardia-echinata-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/couteau-americain_ensis-leei-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Couteau-gousse_Pharus-legumen-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/flion-tronque_donax-trunculus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Lutraire-elliptique_Lutraria-lutraria-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/semicassis-saburon-2-scaled.jpg,10/10/2025,11.0000000,12.0000000,43.724531000000,-1.43094800000000,Centre de la mer,Plage des casernes de Seignosse,107271,Observation #107271,https://biolit.fr/observations/observation-107271/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-rouge_acanthocardia-echinata-scaled.jpg,,TRUE,Identifiable +N1,107268,Sortie #107268,https://biolit.fr/sorties/sortie-107268/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-de-norvege_Laevicardium-crassum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-rouge_acanthocardia-echinata-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/couteau-americain_ensis-leei-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Couteau-gousse_Pharus-legumen-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/flion-tronque_donax-trunculus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Lutraire-elliptique_Lutraria-lutraria-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/semicassis-saburon-2-scaled.jpg,10/10/2025,11.0000000,12.0000000,43.724531000000,-1.43094800000000,Centre de la mer,Plage des casernes de Seignosse,107273,Observation #107273,https://biolit.fr/observations/observation-107273/,Ensis leei,Couteau américain,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/couteau-americain_ensis-leei-2.jpg,,,Identifiable +N1,107268,Sortie #107268,https://biolit.fr/sorties/sortie-107268/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-de-norvege_Laevicardium-crassum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-rouge_acanthocardia-echinata-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/couteau-americain_ensis-leei-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Couteau-gousse_Pharus-legumen-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/flion-tronque_donax-trunculus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Lutraire-elliptique_Lutraria-lutraria-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/semicassis-saburon-2-scaled.jpg,10/10/2025,11.0000000,12.0000000,43.724531000000,-1.43094800000000,Centre de la mer,Plage des casernes de Seignosse,107275,Observation #107275,https://biolit.fr/observations/observation-107275/,Pharus legumen,Couteau-gousse,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Couteau-gousse_Pharus-legumen-1-scaled.jpg,,,Identifiable +N1,107268,Sortie #107268,https://biolit.fr/sorties/sortie-107268/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-de-norvege_Laevicardium-crassum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-rouge_acanthocardia-echinata-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/couteau-americain_ensis-leei-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Couteau-gousse_Pharus-legumen-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/flion-tronque_donax-trunculus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Lutraire-elliptique_Lutraria-lutraria-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/semicassis-saburon-2-scaled.jpg,10/10/2025,11.0000000,12.0000000,43.724531000000,-1.43094800000000,Centre de la mer,Plage des casernes de Seignosse,107277,Observation #107277,https://biolit.fr/observations/observation-107277/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/flion-tronque_donax-trunculus-scaled.jpg,,TRUE,Identifiable +N1,107268,Sortie #107268,https://biolit.fr/sorties/sortie-107268/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-de-norvege_Laevicardium-crassum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-rouge_acanthocardia-echinata-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/couteau-americain_ensis-leei-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Couteau-gousse_Pharus-legumen-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/flion-tronque_donax-trunculus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Lutraire-elliptique_Lutraria-lutraria-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/semicassis-saburon-2-scaled.jpg,10/10/2025,11.0000000,12.0000000,43.724531000000,-1.43094800000000,Centre de la mer,Plage des casernes de Seignosse,107279,Observation #107279,https://biolit.fr/observations/observation-107279/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/huitre-creuse-scaled.jpg,,TRUE,Identifiable +N1,107268,Sortie #107268,https://biolit.fr/sorties/sortie-107268/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-de-norvege_Laevicardium-crassum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-rouge_acanthocardia-echinata-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/couteau-americain_ensis-leei-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Couteau-gousse_Pharus-legumen-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/flion-tronque_donax-trunculus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Lutraire-elliptique_Lutraria-lutraria-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/semicassis-saburon-2-scaled.jpg,10/10/2025,11.0000000,12.0000000,43.724531000000,-1.43094800000000,Centre de la mer,Plage des casernes de Seignosse,107281,Observation #107281,https://biolit.fr/observations/observation-107281/,Lutraria lutraria,Lutraire elliptique,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Lutraire-elliptique_Lutraria-lutraria-scaled.jpg,,TRUE,Identifiable +N1,107268,Sortie #107268,https://biolit.fr/sorties/sortie-107268/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-de-norvege_Laevicardium-crassum-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Bucarde-rouge_acanthocardia-echinata-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/couteau-americain_ensis-leei-2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Couteau-gousse_Pharus-legumen-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/flion-tronque_donax-trunculus-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/Lutraire-elliptique_Lutraria-lutraria-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/semicassis-saburon-2-scaled.jpg,10/10/2025,11.0000000,12.0000000,43.724531000000,-1.43094800000000,Centre de la mer,Plage des casernes de Seignosse,107283,Observation #107283,https://biolit.fr/observations/observation-107283/,Semicassis granulata,Casque granuleux,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/10/semicassis-saburon-2-scaled.jpg,,,Identifiable +N1,107286,Sortie #107286,https://biolit.fr/sorties/sortie-107286/,jeancler dominique,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ac8ca8accf60c901f3b72e538d93d5d0/2025/10/20251009_160420-scaled.jpg,10/09/2025,14.0000000,17.0000000,44.63,-1.26,Planète Mer,Cap Ferret Plage de l'Ouest,107287,Observation #107287,https://biolit.fr/observations/observation-107287/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ac8ca8accf60c901f3b72e538d93d5d0/2025/10/20251009_160420-scaled.jpg,,,Identifiable +N1,107290,Sortie #107290,https://biolit.fr/sorties/sortie-107290/,Céline,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/image-scaled.jpg,10/13/2025 0:00,17.0000000,17.0000000,43.2399360000000,5.36246500000000,Planète Mer,Bain des dames,107291,Observation #107291,https://biolit.fr/observations/observation-107291/,Peyssonnelia squamaria,Peyssonnelia,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/image-scaled.jpg,,,Identifiable +N1,107296,Sortie #107296,https://biolit.fr/sorties/sortie-107296/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6553ea0bedfc3fedebf5fa4361dc1f68/2025/10/IMG_9892-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6553ea0bedfc3fedebf5fa4361dc1f68/2025/10/IMG_9893-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6553ea0bedfc3fedebf5fa4361dc1f68/2025/10/IMG_9895-scaled.jpeg,10/13/2025 0:00,17.0:15,17.0:45,43.2397380000000,5.36229400000000,Planète Mer,Plage du bain des dames,107297,Observation #107297,https://biolit.fr/observations/observation-107297/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6553ea0bedfc3fedebf5fa4361dc1f68/2025/10/IMG_9892-scaled.jpeg,,TRUE,Identifiable +N1,107296,Sortie #107296,https://biolit.fr/sorties/sortie-107296/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6553ea0bedfc3fedebf5fa4361dc1f68/2025/10/IMG_9892-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6553ea0bedfc3fedebf5fa4361dc1f68/2025/10/IMG_9893-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6553ea0bedfc3fedebf5fa4361dc1f68/2025/10/IMG_9895-scaled.jpeg,10/13/2025 0:00,17.0:15,17.0:45,43.2397380000000,5.36229400000000,Planète Mer,Plage du bain des dames,107299,Observation #107299,https://biolit.fr/observations/observation-107299/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6553ea0bedfc3fedebf5fa4361dc1f68/2025/10/IMG_9895-scaled.jpeg,,,Ne sais pas +N1,107296,Sortie #107296,https://biolit.fr/sorties/sortie-107296/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6553ea0bedfc3fedebf5fa4361dc1f68/2025/10/IMG_9892-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6553ea0bedfc3fedebf5fa4361dc1f68/2025/10/IMG_9893-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6553ea0bedfc3fedebf5fa4361dc1f68/2025/10/IMG_9895-scaled.jpeg,10/13/2025 0:00,17.0:15,17.0:45,43.2397380000000,5.36229400000000,Planète Mer,Plage du bain des dames,107301,Observation #107301,https://biolit.fr/observations/observation-107301/,Sphaerococcus coronopifolius,Sphérocoque,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6553ea0bedfc3fedebf5fa4361dc1f68/2025/10/IMG_9893-scaled.jpeg,,,Identifiable +N1,107306,Sortie #107306,https://biolit.fr/sorties/sortie-107306/,Laliche Flora,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/023c6e8df887f1dc06066cb56e68cd5a/2025/10/IMG20251013170746-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/023c6e8df887f1dc06066cb56e68cd5a/2025/10/IMG20251013170741-scaled.jpg,10/13/2025 0:00,17.0000000,17.0000000,43.2403520,5.3625210,Planète Mer,Bain des dames,107307,Observation #107307,https://biolit.fr/observations/observation-107307/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/023c6e8df887f1dc06066cb56e68cd5a/2025/10/IMG20251013170741-scaled.jpg,,,Ne sais pas +N1,107309,Sortie #107309,https://biolit.fr/sorties/sortie-107309/,Céline,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6910-scaled.jpeg,10/13/2025 0:00,17.0:18,17.0:25,43.2398730000000,5.36244900000000,,Bain des dames,107310,Observation #107310,https://biolit.fr/observations/observation-107310/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6910-scaled.jpeg,,TRUE,Identifiable +N1,107313,Sortie #107313,https://biolit.fr/sorties/sortie-107313/,Laliche Flora,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/023c6e8df887f1dc06066cb56e68cd5a/2025/10/IMG20251013170547-scaled.jpg,10/13/2025 0:00,17.0000000,17.0000000,43.2755290,5.3584640,Planète Mer,Bain des dames,107314,Observation #107314,https://biolit.fr/observations/observation-107314/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/023c6e8df887f1dc06066cb56e68cd5a/2025/10/IMG20251013170547-scaled.jpg,,TRUE,Ne sais pas +N1,107317,Sortie #107317,https://biolit.fr/sorties/sortie-107317/,Laliche Flora,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/023c6e8df887f1dc06066cb56e68cd5a/2025/10/IMG20251013170504-scaled.jpg,10/13/2025 0:00,17.0000000,17.0000000,43.6588790,4.8399910,Planète Mer,Bain des dames,107318,Observation #107318,https://biolit.fr/observations/observation-107318/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/023c6e8df887f1dc06066cb56e68cd5a/2025/10/IMG20251013170504-scaled.jpg,,FALSE,Ne sais pas +N1,107321,Sortie #107321,https://biolit.fr/sorties/sortie-107321/,Laliche Flora,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/023c6e8df887f1dc06066cb56e68cd5a/2025/10/1760369129246707758799416219574-scaled.jpg,10/13/2025 0:00,17.0000000,17.0000000,43.2755290,5.3584640,Planète Mer,Bain des dames,,,,,,,,,, +N1,107323,Sortie #107323,https://biolit.fr/sorties/sortie-107323/,Laliche Flora,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/023c6e8df887f1dc06066cb56e68cd5a/2025/10/17603692381433285525644876612736-scaled.jpg,10/13/2025 0:00,17.0000000,17.0000000,43.2755290,5.3584640,Planète Mer,Bain des dames,,,,,,,,,, +N1,107325,Sortie #107325,https://biolit.fr/sorties/sortie-107325/,Laliche Flora,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/023c6e8df887f1dc06066cb56e68cd5a/2025/10/17603694394087856784759342325353-scaled.jpg,10/13/2025 0:00,17.0000000,17.0000000,43.2755290,5.3584640,Planète Mer,Bain des dames,107326,Observation #107326,https://biolit.fr/observations/observation-107326/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/023c6e8df887f1dc06066cb56e68cd5a/2025/10/17603694394087856784759342325353-scaled.jpg,,,Ne sais pas +N1,107328,Sortie #107328,https://biolit.fr/sorties/sortie-107328/,ESCOBAR Rebeca,,10/09/2025,14.0000000,18.0000000,44.6566800000000,-1.23916200000000,Planète Mer,Cap Ferret,,,,,,,,,, +N1,107329,Sortie #107329,https://biolit.fr/sorties/sortie-107329/,ESCOBAR Rebeca,,10/09/2025,14.0000000,18.0000000,44.6565670000000,-1.23984600000000,Planète Mer,Cap Ferret,,,,,,,,,, +N1,107331,Sortie #107331,https://biolit.fr/sorties/sortie-107331/,Mickael_Racine,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/26edd234e60fbe42a09b8fb02f4d63aa/2025/10/image-scaled.jpg,10/13/2025 0:00,17.000001,17.0:36,43.2396920000000,5.36231400000000,Planète Mer,Bain des dames - Marseille,107332,Observation #107332,https://biolit.fr/observations/observation-107332/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/26edd234e60fbe42a09b8fb02f4d63aa/2025/10/image-scaled.jpg,,TRUE,Identifiable +N1,107334,Sortie #107334,https://biolit.fr/sorties/sortie-107334/,ESCOBAR Rebeca,,10/09/2025,14.0000000,18.0000000,44.6396830000000,-1.26100300000000,Planète Mer,Cap Ferret,,,,,,,,,, +N1,107338,Sortie #107338,https://biolit.fr/sorties/sortie-107338/,Mickael_Racine,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/26edd234e60fbe42a09b8fb02f4d63aa/2025/10/2410f164-6776-4413-be3c-b92f24a24cf3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/26edd234e60fbe42a09b8fb02f4d63aa/2025/10/c3adbaf8-ac45-421f-b2a9-da61b86bd7bc.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/26edd234e60fbe42a09b8fb02f4d63aa/2025/10/0ad125e9-8a5c-4fea-b623-8771a2ff74f7.jpeg,10/13/2025 0:00,17.000001,17.0:36,43.2401010000000,5.3626420000000,Planète Mer,Bain des dames - Marseille,107340,Observation #107340,https://biolit.fr/observations/observation-107340/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/26edd234e60fbe42a09b8fb02f4d63aa/2025/10/2410f164-6776-4413-be3c-b92f24a24cf3.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/26edd234e60fbe42a09b8fb02f4d63aa/2025/10/c3adbaf8-ac45-421f-b2a9-da61b86bd7bc.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/26edd234e60fbe42a09b8fb02f4d63aa/2025/10/0ad125e9-8a5c-4fea-b623-8771a2ff74f7.jpeg,,,Ne sais pas +N1,107339,Sortie #107339,https://biolit.fr/sorties/sortie-107339/,ESCOBAR Rebeca,,10/10/2025,14.0000000,18.0000000,44.6145460000000,-1.20705800000000,Planète Mer,Arcachon,,,,,,,,,, +N1,107342,Sortie #107342,https://biolit.fr/sorties/sortie-107342/,ESCOBAR Rebeca,,10/10/2025,14.0000000,18.0000000,44.6108850000000,-1.21235800000000,Planète Mer,Arcachon,,,,,,,,,, +N1,107343,Sortie #107343,https://biolit.fr/sorties/sortie-107343/,ESCOBAR Rebeca,,10/09/2025,14.0000000,18.0000000,44.6559610000000,-1.23999600000000,Planète Mer,Cap Ferret,,,,,,,,,, +N1,107355,Sortie #107355,https://biolit.fr/sorties/sortie-107355/,ESCOBAR Rebeca,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8347-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8350-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8348-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8349-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8353-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8351-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8352-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8356-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8355-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8354-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8357-scaled.jpeg,10/09/2025,14.0000000,18.0000000,44.6574300000000,-1.24197000000000,Planète Mer,Cap Ferret,107365,Observation #107365,https://biolit.fr/observations/observation-107365/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8347-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8350-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8348-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8349-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8353-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8351-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8352-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8357-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8354-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8355-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8356-scaled.jpeg,,,Ne sais pas +N1,107355,Sortie #107355,https://biolit.fr/sorties/sortie-107355/,ESCOBAR Rebeca,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8347-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8350-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8348-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8349-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8353-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8351-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8352-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8356-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8355-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8354-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8357-scaled.jpeg,10/09/2025,14.0000000,18.0000000,44.6574300000000,-1.24197000000000,Planète Mer,Cap Ferret,108616,Observation #108616,https://biolit.fr/observations/observation-108616/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8356-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8354-scaled.jpeg,,,Ne sais pas +N1,107368,Sortie #107368,https://biolit.fr/sorties/sortie-107368/,ESCOBAR Rebeca,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8371-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8369-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8370-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8372-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8368-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8366-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8367-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8365-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8378-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8361-scaled.jpeg,10/09/2025,14.0000000,18.0000000,44.6680470000000,-1.25810600000000,Planète Mer,Cap Ferret,107369,Observation #107369,https://biolit.fr/observations/observation-107369/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8371-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8369-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8370-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8372-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8368-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8366-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8365-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8367-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8361-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8378-scaled.jpeg,,,Ne sais pas +N1,107379,Sortie #107379,https://biolit.fr/sorties/sortie-107379/,ESCOBAR Rebeca,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8406-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8407-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8413-scaled.jpeg,10/10/2025,14.0000000,16.0000000,44.6162330000000,-1.20060000000000,Planète Mer,ARCACHON,107380,Observation #107380,https://biolit.fr/observations/observation-107380/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8413-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8411-scaled.jpeg,,, +N1,107379,Sortie #107379,https://biolit.fr/sorties/sortie-107379/,ESCOBAR Rebeca,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8406-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8407-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8413-scaled.jpeg,10/10/2025,14.0000000,16.0000000,44.6162330000000,-1.20060000000000,Planète Mer,ARCACHON,107382,Observation #107382,https://biolit.fr/?post_type=observations&p=107382,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8406-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8407-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8413-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8411-scaled.jpeg,,,Ne sais pas +N1,107379,Sortie #107379,https://biolit.fr/sorties/sortie-107379/,ESCOBAR Rebeca,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8406-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8407-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8413-scaled.jpeg,10/10/2025,14.0000000,16.0000000,44.6162330000000,-1.20060000000000,Planète Mer,ARCACHON,108614,Observation #108614,https://biolit.fr/observations/observation-108614/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8406-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0cf0475de8d86c331715dc4ddee81693/2025/10/IMG_8407-scaled.jpeg,,,Identifiable +N1,107391,Sortie #107391,https://biolit.fr/sorties/sortie-107391/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012637-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012642-scaled.jpg,10/14/2025 0:00,10.0000000,11.0000000,43.5564570,4.0908700,CPIE Littoral d'Occitanie,La grande motte,107392,Observation #107392,https://biolit.fr/observations/observation-107392/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012626-scaled.jpg,,,Identifiable +N1,107391,Sortie #107391,https://biolit.fr/sorties/sortie-107391/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012625-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012626-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012634-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012637-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012640-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012642-scaled.jpg,10/14/2025 0:00,10.0000000,11.0000000,43.5564570,4.0908700,CPIE Littoral d'Occitanie,La grande motte,107396,Observation #107396,https://biolit.fr/observations/observation-107396/,Buccinum undatum,Buccin commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012632-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012634-scaled.jpg,,,Identifiable +N1,107398,Sortie #107398,https://biolit.fr/sorties/sortie-107398/,LABELBLEU,,10/14/2025 0:00,10.0000000,11.0000000,43.5568730,4.0905760,CPIE Littoral d'Occitanie,La grande motte,,,,,,,,,, +N1,107451,Sortie #107451,https://biolit.fr/sorties/sortie-107451/,VERON-TARABEUX Marc,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5816-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5817-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5818-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5819-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5822-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5823.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5824-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5825-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5826-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5827-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5828-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5830-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5831-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5833-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5834-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5835-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5836-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5837-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5838-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5840-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5841-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5842-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5844-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5850-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5853.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5856.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5861.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5865.jpeg,10/10/2025,14.0000000,17.0000000,49.6452790000000,0.152779000000000,,Saint-Jouin-Brunevale,107452,Observation #107452,https://biolit.fr/observations/observation-107452/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5816-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5817-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5818-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5819-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5822-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5823.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5824-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5826-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5825-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5827-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5828-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5830-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5831-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5833-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5834-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5835-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5837-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5840-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5841-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5842-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5838-1.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5844-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5855-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5845-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5850-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5853.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5856.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5861.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5862-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5863-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1a543719480b4bd92cbc718166c3a982/2025/10/IMG_5865.jpeg,,,Ne sais pas +N1,107463,Sortie #107463,https://biolit.fr/sorties/sortie-107463/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_9248.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_9247.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_3602.jpeg,09/10/2025,19.0:35,19.0:42,43.2708210000000,6.57900800000000,,Port Grimaud - Ile des 4 vents,107464,Observation #107464,https://biolit.fr/observations/observation-107464/,Phoenicopterus roseus,Flamant rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_9248.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_9247.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_3602.jpeg,,,Identifiable +N1,107467,Sortie #107467,https://biolit.fr/sorties/sortie-107467/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/565d77c2-db91-4289-932e-cd9eef888cc4.jpeg,08/06/2025,15.0000000,15.0:35,43.2720480000000,6.58785900000000,,Port Grimaud - jetée nord,107468,Observation #107468,https://biolit.fr/observations/observation-107468/,Cladocora caespitosa,Cladocore en touffe,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/565d77c2-db91-4289-932e-cd9eef888cc4.jpeg,,,Identifiable +N1,107471,Sortie #107471,https://biolit.fr/sorties/sortie-107471/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/f391315c-ccd5-4996-b122-d53436f3dbd7.jpeg,08/06/2025,15.0000000,15.0000000,43.2723030000000,6.58762300000000,,Port Grimaud - Jetée nord,107472,Observation #107472,https://biolit.fr/observations/observation-107472/,Cladocora caespitosa,Cladocore en touffe,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/f391315c-ccd5-4996-b122-d53436f3dbd7.jpeg,,,Identifiable +N1,107475,Sortie #107475,https://biolit.fr/sorties/sortie-107475/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_8247-scaled.jpeg,6/14/2025 0:00,15.0:36,15.0000000,43.2724460000000,6.58721600000000,,Port Grimaud - jetée nord,107476,Observation #107476,https://biolit.fr/observations/observation-107476/,Cladocora caespitosa,Cladocore en touffe,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_8247-scaled.jpeg,,,Identifiable +N1,107479,Sortie #107479,https://biolit.fr/sorties/sortie-107479/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_8250-scaled.jpeg,6/14/2025 0:00,15.0:39,15.0000000,43.2723130000000,6.58757000000000,,Port Grimaud - jetée Nord,107480,Observation #107480,https://biolit.fr/observations/observation-107480/,Cladocora caespitosa,Cladocore en touffe,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_8250-scaled.jpeg,,,Identifiable +N1,107484,Sortie #107484,https://biolit.fr/sorties/sortie-107484/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_8269-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_8268-scaled.jpeg,6/13/2025 0:00,21.0:45,21.0:55,43.2723220000000,6.5873500000000,,Port grimaud - jetée nord,107485,Observation #107485,https://biolit.fr/observations/observation-107485/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_8268-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_8269-scaled.jpeg,,,Identifiable +N1,107488,Sortie #107488,https://biolit.fr/sorties/sortie-107488/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_3635.jpeg,09/11/2025,18.0:47,18.0:51,43.2714350000000,6.58562800000000,,Port Grimaud - petite plage,107489,Observation #107489,https://biolit.fr/observations/observation-107489/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_3635.jpeg,,,Identifiable +N1,107492,Sortie #107492,https://biolit.fr/sorties/sortie-107492/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_3074.jpeg,09/04/2025,13.0:49,13.0:55,43.2687800000000,6.66513900000000,,Les Canebiers,107493,Observation #107493,https://biolit.fr/observations/observation-107493/,Larus ridibundus,Mouette rieuse,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_3074.jpeg,,,Identifiable +N1,107496,Sortie #107496,https://biolit.fr/sorties/sortie-107496/,Nat83,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_9239.jpeg,6/19/2025 0:00,19.0:25,19.0000000,43.2632600000000,6.60295500000000,,Gassin - La Moune,107497,Observation #107497,https://biolit.fr/observations/observation-107497/,Symphodus tinca,Crénilabre-paon,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/627cb20f3aaea6a4d9d6536f6a55ade3/2025/10/IMG_9239.jpeg,,,Identifiable +N1,107500,Sortie #107500,https://biolit.fr/sorties/sortie-107500/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Bioerosion-par-Lithophaga-lithofaga.jpg,10/15/2025 0:00,17.0000000,17.0000000,43.2504830,5.4263810,,Plage Bain des Dames,,,,,,,,,, +N1,107502,Sortie #107502,https://biolit.fr/sorties/sortie-107502/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Corbule-bossue-Varicorbula-gibba.jpg,10/15/2025 0:00,17.0:44,17.0:45,43.2504830,5.4263810,,Plage Bain des Dames,107503,Observation #107503,https://biolit.fr/observations/observation-107503/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Corbule-bossue-Varicorbula-gibba.jpg,,FALSE,Identifiable +N1,107506,Sortie #107506,https://biolit.fr/sorties/sortie-107506/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Bioerosion-par-Lithophaga-lithofaga-1.jpg,10/14/2025 0:00,17.0:35,17.0:36,43.2504830,5.4263810,,Plage Bain des Dames,107507,Observation #107507,https://biolit.fr/observations/observation-107507/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Bioerosion-par-Lithophaga-lithofaga-1.jpg,,FALSE,Identifiable +N1,107510,Sortie #107510,https://biolit.fr/sorties/sortie-107510/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Tricolie-striee-Tricolia-pullus.jpg,10/14/2025 0:00,17.0000000,17.0:55,43.2504830,5.4263810,,Plage Bain des Dames,107511,Observation #107511,https://biolit.fr/observations/observation-107511/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Tricolie-striee-Tricolia-pullus.jpg,,FALSE,Identifiable +N1,107514,Sortie #107514,https://biolit.fr/sorties/sortie-107514/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Laurencie-obtuse-Laurencia-obtusa.jpg,10/14/2025 0:00,18.0000000,18.000002,43.2539980,5.415579,,Plage Bain des Dames,107515,Observation #107515,https://biolit.fr/observations/observation-107515/,Gymnogongrus griffithsiae,Algue rouge de Griffiths,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Laurencie-obtuse-Laurencia-obtusa.jpg,,,Identifiable +N1,107520,Sortie #107520,https://biolit.fr/sorties/sortie-107520/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Haloptere-scopaire-Halopteris-scoparia.jpg,10/14/2025 0:00,18.000002,18.000003,43.2540080,5.4155120,,Plage Bain des Dames,107521,Observation #107521,https://biolit.fr/observations/observation-107521/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Haloptere-scopaire-Halopteris-scoparia.jpg,,FALSE,Identifiable +N1,107524,Sortie #107524,https://biolit.fr/sorties/sortie-107524/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Grand-Cormoran-Phalacrocorax-carbo-juvenile1-scaled.jpg,07/01/2025,14.0:52,14.0:53,43.2504830,5.4263810,,Plage de la Pointe Rouge,107525,Observation #107525,https://biolit.fr/observations/observation-107525/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Grand-Cormoran-Phalacrocorax-carbo-juvenile1-scaled.jpg,,FALSE,Identifiable +N1,107528,Sortie #107528,https://biolit.fr/sorties/sortie-107528/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Oblade-Oblada-melanura.jpg,10/13/2025 0:00,11.0:31,11.0:33,43.2504830,5.4263810,,Plage de la Pointe Rouge,107529,Observation #107529,https://biolit.fr/observations/observation-107529/,Diplodus sargus,Sar commun de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Oblade-Oblada-melanura.jpg,,TRUE,Identifiable +N1,107532,Sortie #107532,https://biolit.fr/sorties/sortie-107532/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Mulet-a-levres-fines-Chelon-ramada-scaled.jpg,10/13/2025 0:00,11.0:45,11.0:46,43.2539880,5.4155030,,Plage de la Pointe Rouge,107533,Observation #107533,https://biolit.fr/observations/observation-107533/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Mulet-a-levres-fines-Chelon-ramada-scaled.jpg,,,Identifiable +N1,107536,Sortie #107536,https://biolit.fr/sorties/sortie-107536/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Marbre-Lithognathus-mormyrus1.jpg,10/13/2025 0:00,11.0:46,11.0:48,43.2504830,5.4263810,,Plage de la Pointe Rouge,107537,Observation #107537,https://biolit.fr/observations/observation-107537/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Marbre-Lithognathus-mormyrus1.jpg,,FALSE,Identifiable +N1,107600,Sortie #107600,https://biolit.fr/sorties/sortie-107600/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_13055376.MP_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_13172045.MP_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_125007693.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_125423980-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_131235962-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/original_a523cbf1-8398-49af-99db-985ed5ff15d9_PXL_20251015_075434450.MP_-scaled.jpg,10/14/2025 0:00,14.0000000,15.0000000,43.5456560000000,4.12425600000000,LABELBLEU,Plage du Boucanet au Grau-du-Roi,107623,Observation #107623,https://biolit.fr/observations/observation-107623/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_13055376.MP_.jpg,,,Ne sais pas +N1,107600,Sortie #107600,https://biolit.fr/sorties/sortie-107600/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_13055376.MP_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_13172045.MP_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_125007693.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_125423980-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_131235962-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/original_a523cbf1-8398-49af-99db-985ed5ff15d9_PXL_20251015_075434450.MP_-scaled.jpg,10/14/2025 0:00,14.0000000,15.0000000,43.5456560000000,4.12425600000000,LABELBLEU,Plage du Boucanet au Grau-du-Roi,107625,Observation #107625,https://biolit.fr/observations/observation-107625/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_13172045.MP_.jpg,,,Ne sais pas +N1,107600,Sortie #107600,https://biolit.fr/sorties/sortie-107600/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_13055376.MP_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_13172045.MP_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_125007693.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_125423980-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_131235962-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/original_a523cbf1-8398-49af-99db-985ed5ff15d9_PXL_20251015_075434450.MP_-scaled.jpg,10/14/2025 0:00,14.0000000,15.0000000,43.5456560000000,4.12425600000000,LABELBLEU,Plage du Boucanet au Grau-du-Roi,107627,Observation #107627,https://biolit.fr/observations/observation-107627/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_125007693.MP_-scaled.jpg,,,Identifiable +N1,107600,Sortie #107600,https://biolit.fr/sorties/sortie-107600/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_13055376.MP_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_13172045.MP_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_125007693.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_125423980-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_131235962-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/original_a523cbf1-8398-49af-99db-985ed5ff15d9_PXL_20251015_075434450.MP_-scaled.jpg,10/14/2025 0:00,14.0000000,15.0000000,43.5456560000000,4.12425600000000,LABELBLEU,Plage du Boucanet au Grau-du-Roi,107629,Observation #107629,https://biolit.fr/observations/observation-107629/,Rugulopteryx okamurae,Dictyote d'Okamura,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_125423980-scaled.jpg,,,Identifiable +N1,107600,Sortie #107600,https://biolit.fr/sorties/sortie-107600/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_13055376.MP_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_13172045.MP_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_125007693.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_125423980-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_131235962-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/original_a523cbf1-8398-49af-99db-985ed5ff15d9_PXL_20251015_075434450.MP_-scaled.jpg,10/14/2025 0:00,14.0000000,15.0000000,43.5456560000000,4.12425600000000,LABELBLEU,Plage du Boucanet au Grau-du-Roi,107631,Observation #107631,https://biolit.fr/observations/observation-107631/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_131235962-scaled.jpg,,TRUE,Identifiable +N1,107600,Sortie #107600,https://biolit.fr/sorties/sortie-107600/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_13055376.MP_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_13172045.MP_.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_125007693.MP_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_125423980-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/PXL_20251014_131235962-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/original_a523cbf1-8398-49af-99db-985ed5ff15d9_PXL_20251015_075434450.MP_-scaled.jpg,10/14/2025 0:00,14.0000000,15.0000000,43.5456560000000,4.12425600000000,LABELBLEU,Plage du Boucanet au Grau-du-Roi,107633,Observation #107633,https://biolit.fr/observations/observation-107633/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/original_a523cbf1-8398-49af-99db-985ed5ff15d9_PXL_20251015_075434450.MP_-scaled.jpg,,,Ne sais pas +N1,107649,Sortie #107649,https://biolit.fr/sorties/sortie-107649/,Larue joséphine,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/1-Tournepierre-a-collier-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/2-Tournepierre-a-collier-scaled.jpg,10/15/2025 0:00,10.0000000,11.0000000,43.3949080000000,-1.68292900000000,,Fort de Socoa,,,,,,,,,, +N1,107652,Sortie #107652,https://biolit.fr/sorties/sortie-107652/,Larue joséphine,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/1-Tournepierre-a-collier-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/2-Tournepierre-a-collier-1-scaled.jpg,10/15/2025 0:00,10.0000000,11.0000000,43.3959600000000,-1.68258900000000,,Fort de Socoa,107653,Observation #107653,https://biolit.fr/observations/observation-107653/,Arenaria interpres,Tourne-pierre à collier,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/1-Tournepierre-a-collier-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/2-Tournepierre-a-collier-1-scaled.jpg,,TRUE,Identifiable +N1,107657,Sortie #107657,https://biolit.fr/sorties/sortie-107657/,Larue joséphine,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/3-Criste-marine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/4-Criste-marine-scaled.jpg,10/15/2025 0:00,11.0000000,12.0000000,43.3960360000000,-1.68235700000000,,Fort de Socoa,107658,Observation #107658,https://biolit.fr/observations/observation-107658/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/3-Criste-marine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/4-Criste-marine-scaled.jpg,,TRUE,Identifiable +N1,107662,Sortie #107662,https://biolit.fr/sorties/sortie-107662/,Larue joséphine,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/5-Crabe-marbre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/6-Crabe-marbre-scaled.jpg,10/15/2025 0:00,12.0000000,13.0000000,43.3960110000000,-1.68225700000000,,Fort de Socoa,107663,Observation #107663,https://biolit.fr/observations/observation-107663/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/5-Crabe-marbre.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/6-Crabe-marbre-scaled.jpg,,,Identifiable +N1,107667,Sortie #107667,https://biolit.fr/sorties/sortie-107667/,Larue joséphine,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/7-Jeune-Pachygrapsus-marmoratus.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/8.-Jeune-Pachygrapsus-marmoratus-scaled.jpg,10/15/2025 0:00,14.0000000,15.0000000,43.3959310000000,-1.68240700000000,,Fort de Socoa,107668,Observation #107668,https://biolit.fr/observations/observation-107668/,Pachygrapsus maurus,Grapse noir,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/7-Jeune-Pachygrapsus-marmoratus.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/8.-Jeune-Pachygrapsus-marmoratus-scaled.jpg,,,Ne sais pas +N1,107671,Sortie #107671,https://biolit.fr/sorties/sortie-107671/,Larue joséphine,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/9-Herbe-de-la-pampa-scaled.jpg,10/15/2025 0:00,15.0000000,16.0000000,43.3957940000000,-1.68229000000000,,Fort de Socoa,107672,Observation #107672,https://biolit.fr/observations/observation-107672/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0c33d9d0e8b40ab4772cd1fdade246/2025/10/9-Herbe-de-la-pampa-scaled.jpg,,,Identifiable +N1,107682,Sortie #107682,https://biolit.fr/sorties/sortie-107682/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/86cb527166bfe2e965f9462e7dd41c94/2025/10/20251013_173700.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/86cb527166bfe2e965f9462e7dd41c94/2025/10/20251013_ObsBioLit.jpg,10/13/2025 0:00,17.0000000,17.0000000,43.2397900000000,5.36240500000000,Planète Mer,Bain des dames,107707,Observation #107707,https://biolit.fr/observations/observation-107707/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/86cb527166bfe2e965f9462e7dd41c94/2025/10/20251013_173700.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/86cb527166bfe2e965f9462e7dd41c94/2025/10/20251013_ObsBioLit.jpg,,,Ne sais pas +N1,107682,Sortie #107682,https://biolit.fr/sorties/sortie-107682/,Manon P,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/86cb527166bfe2e965f9462e7dd41c94/2025/10/20251013_173700.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/86cb527166bfe2e965f9462e7dd41c94/2025/10/20251013_ObsBioLit.jpg,10/13/2025 0:00,17.0000000,17.0000000,43.2397900000000,5.36240500000000,Planète Mer,Bain des dames,107709,Observation #107709,https://biolit.fr/observations/observation-107709/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/86cb527166bfe2e965f9462e7dd41c94/2025/10/20251013_173700.jpg,,,non-identifiable +N1,107688,Sortie #107688,https://biolit.fr/sorties/sortie-107688/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012683-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012682-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012681-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012679-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012678-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012645-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012644-scaled.jpg,10/14/2025 0:00,1.0:15,16.0:13,43.5534200000000,4.09691100000000,LABELBLEU,La grande motte,,,,,,,,,, +N1,107689,Sortie #107689,https://biolit.fr/sorties/sortie-107689/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012683-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012682-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012681-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012679-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012678-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012645-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012644-scaled.jpg,10/14/2025 0:00,1.0:15,16.0:13,43.5534200000000,4.09691100000000,LABELBLEU,La grande motte,107690,Observation #107690,https://biolit.fr/observations/observation-107690/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012683-1-scaled.jpg,,TRUE,Identifiable +N1,107689,Sortie #107689,https://biolit.fr/sorties/sortie-107689/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012683-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012682-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012681-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012679-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012678-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012645-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012644-scaled.jpg,10/14/2025 0:00,1.0:15,16.0:13,43.5534200000000,4.09691100000000,LABELBLEU,La grande motte,107692,Observation #107692,https://biolit.fr/observations/observation-107692/,Aporrhais pespelecani,Pied de pélican commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012681-scaled.jpg,,TRUE,Identifiable +N1,107689,Sortie #107689,https://biolit.fr/sorties/sortie-107689/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012683-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012682-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012681-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012679-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012678-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012645-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012644-scaled.jpg,10/14/2025 0:00,1.0:15,16.0:13,43.5534200000000,4.09691100000000,LABELBLEU,La grande motte,107694,Observation #107694,https://biolit.fr/observations/observation-107694/,Buccinum undatum,Ponte de buccin commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012680-scaled.jpg,,TRUE,Identifiable +N1,107689,Sortie #107689,https://biolit.fr/sorties/sortie-107689/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012683-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012682-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012681-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012679-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012678-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012645-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012644-scaled.jpg,10/14/2025 0:00,1.0:15,16.0:13,43.5534200000000,4.09691100000000,LABELBLEU,La grande motte,107696,Observation #107696,https://biolit.fr/observations/observation-107696/,Tritia incrassata,Nasse épaisse,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012679-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012678-scaled.jpg,,,Identifiable +N1,107689,Sortie #107689,https://biolit.fr/sorties/sortie-107689/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012683-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012682-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012681-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012679-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012678-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012645-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012644-scaled.jpg,10/14/2025 0:00,1.0:15,16.0:13,43.5534200000000,4.09691100000000,LABELBLEU,La grande motte,107698,Observation #107698,https://biolit.fr/observations/observation-107698/,Codium fragile subsp. fragile,Codium fragile,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012676-scaled.jpg,,TRUE,Identifiable +N1,107689,Sortie #107689,https://biolit.fr/sorties/sortie-107689/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012683-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012682-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012681-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012679-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012678-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012645-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012644-scaled.jpg,10/14/2025 0:00,1.0:15,16.0:13,43.5534200000000,4.09691100000000,LABELBLEU,La grande motte,107700,Observation #107700,https://biolit.fr/observations/observation-107700/,Solecurtus strigilatus,Solécurte rose,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012645-scaled.jpg,,,Identifiable +N1,107689,Sortie #107689,https://biolit.fr/sorties/sortie-107689/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012683-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012682-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012681-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012679-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012678-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012645-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012644-scaled.jpg,10/14/2025 0:00,1.0:15,16.0:13,43.5534200000000,4.09691100000000,LABELBLEU,La grande motte,107702,Observation #107702,https://biolit.fr/observations/observation-107702/,Neverita josephinia,Natice Joséphine,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012644-scaled.jpg,,,Identifiable +N1,107689,Sortie #107689,https://biolit.fr/sorties/sortie-107689/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012683-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012682-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012681-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012680-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012679-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012678-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012676-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012645-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012643-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012644-scaled.jpg,10/14/2025 0:00,1.0:15,16.0:13,43.5534200000000,4.09691100000000,LABELBLEU,La grande motte,107705,Observation #107705,https://biolit.fr/observations/observation-107705/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/10/1000012682-1-scaled.jpg,,,Ne sais pas +N1,107714,Sortie #107714,https://biolit.fr/sorties/sortie-107714/,HERVEIC HONORINE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d705c87df3396c2b56a68e8504212eec/2025/10/IMG_20251017_114846-1.jpg,9/29/2025 0:00,14.0000000,17.0000000,48.6147,2,,Plage du Corps de Garde,107715,Observation #107715,https://biolit.fr/observations/observation-107715/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d705c87df3396c2b56a68e8504212eec/2025/10/IMG_20251017_114846-1.jpg,,FALSE,Ne sais pas +N1,107718,Sortie #107718,https://biolit.fr/sorties/sortie-107718/,ROGER PIERRE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/53120e6c0601f8f3f06f9e025c81d8de/2025/10/IMG_20250929_152505978_HDR-rotated.jpg,9/29/2025 0:00,14.0000000,17.0000000,48.6142220000000,-2.81574100000000,,Plage du Corps de Garde,107719,Observation #107719,https://biolit.fr/observations/observation-107719/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/53120e6c0601f8f3f06f9e025c81d8de/2025/10/IMG_20250929_152505978_HDR-rotated.jpg,,,Ne sais pas +N1,107725,Sortie #107725,https://biolit.fr/sorties/sortie-107725/,BEGUE ANTOINE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/2b86ac5afe3484ec0d041ed9d35078d2/2025/10/IMG_20250929_153638861_HDR.jpg,9/29/2025 0:00,14.0000000,17.0000000,48.6142310000000,-2.81572400000000,,Plage du Corps de Garde,107726,Observation #107726,https://biolit.fr/observations/observation-107726/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/2b86ac5afe3484ec0d041ed9d35078d2/2025/10/IMG_20250929_153638861_HDR.jpg,,,Ne sais pas +N1,107725,Sortie #107725,https://biolit.fr/sorties/sortie-107725/,BEGUE ANTOINE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/2b86ac5afe3484ec0d041ed9d35078d2/2025/10/IMG_20250929_153638861_HDR.jpg,9/29/2025 0:00,14.0000000,17.0000000,48.6142310000000,-2.81572400000000,,Plage du Corps de Garde,107728,Observation #107728,https://biolit.fr/observations/observation-107728/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/2b86ac5afe3484ec0d041ed9d35078d2/2025/10/IMG_20250929_153638861_HDR.jpg,,,Ne sais pas +N1,107731,Sortie #107731,https://biolit.fr/sorties/sortie-107731/,LADON BENOIST,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/70f9f8e002fecbc9f44cdf4c020b390a/2025/10/IMG_20251017_114430.jpg,9/29/2025 0:00,14.0000000,17.0000000,48.6143790000000,-2.81563700000000,,"Plage du Corps de Garde, Binic",107732,Observation #107732,https://biolit.fr/observations/observation-107732/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/70f9f8e002fecbc9f44cdf4c020b390a/2025/10/IMG_20251017_114430.jpg,,,Identifiable +N1,107735,Sortie #107735,https://biolit.fr/sorties/sortie-107735/,PAUGAM MATTHIEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/cf05ae6dbf385550623f289894c457d5/2025/10/IMG_20251015_180555.jpg,9/29/2025 0:00,14.0000000,17.0000000,48.6143570000000,-2.81567300000000,,Plage du Corps de Garde,107736,Observation #107736,https://biolit.fr/observations/observation-107736/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/cf05ae6dbf385550623f289894c457d5/2025/10/IMG_20251015_180555.jpg,,,Identifiable +N1,107739,Sortie #107739,https://biolit.fr/sorties/sortie-107739/,GUEGAN Yveline,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/834d6bf6ac3a2ab266673a980cab610a/2025/10/IMG_20251017_114346.jpg,9/29/2025 0:00,14.0000000,17.0000000,48.6143920000000,-2.81566800000000,,Plage du Corps de garde,107740,Observation #107740,https://biolit.fr/observations/observation-107740/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/834d6bf6ac3a2ab266673a980cab610a/2025/10/IMG_20251017_114346.jpg,,,Identifiable +N1,107743,Sortie #107743,https://biolit.fr/sorties/sortie-107743/,BLEJEAN DIDIER,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/905a640885bdf2d3c15fdd4f3c78cd03/2025/10/IMG_20251017_114420.jpg,9/29/2025 0:00,14.0000000,15.0000000,48.6140900000000,-2.81576700000000,,Plage du Corps de Garde,107744,Observation #107744,https://biolit.fr/observations/observation-107744/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/905a640885bdf2d3c15fdd4f3c78cd03/2025/10/IMG_20251017_114420.jpg,,,Identifiable +N1,107771,Sortie #107771,https://biolit.fr/sorties/sortie-107771/,COURTAY YANNICK,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/635cb7b93fb6993a6b1c05481c45dfec/2025/10/IMG_20251015_180555.jpg,9/29/2025 0:00,14.0000000,17.0000000,48.6144400000000,-2.81561000000000,,Plage du Corps de GArde,107772,Observation #107772,https://biolit.fr/observations/observation-107772/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/635cb7b93fb6993a6b1c05481c45dfec/2025/10/IMG_20251015_180555.jpg,,,Identifiable +N1,107771,Sortie #107771,https://biolit.fr/sorties/sortie-107771/,COURTAY YANNICK,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/635cb7b93fb6993a6b1c05481c45dfec/2025/10/IMG_20251015_180555.jpg,9/29/2025 0:00,14.0000000,17.0000000,48.6144400000000,-2.81561000000000,,Plage du Corps de GArde,107774,Observation #107774,https://biolit.fr/observations/observation-107774/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/635cb7b93fb6993a6b1c05481c45dfec/2025/10/IMG_20251015_180555.jpg,,,Identifiable +N1,107777,Sortie #107777,https://biolit.fr/sorties/sortie-107777/,DEREANI EVE MARIE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3cc7addbe10f492fb73828a0b49efb50/2025/10/IMG_20251015_181747.jpg,9/29/2025 0:00,14.0000000,17.0000000,48.614024000000,-2.81581700000000,,Plage du Corps de Garde,107778,Observation #107778,https://biolit.fr/observations/observation-107778/,Rhizostoma pulmo / octopus,Rhizostome,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3cc7addbe10f492fb73828a0b49efb50/2025/10/IMG_20251015_181747.jpg,,TRUE,Identifiable +N1,107846,Sortie #107846,https://biolit.fr/sorties/sortie-107846/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7418-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7409-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7400-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7399-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7413-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7416-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7417-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7419-scaled.jpeg,10/17/2025 0:00,14.0000000,15.0000000,43.2360220000000,5.36000800000000,Planète Mer,Plage de la brise,107847,Observation #107847,https://biolit.fr/observations/observation-107847/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7409-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7408-scaled.jpeg,,TRUE,Identifiable +N1,107846,Sortie #107846,https://biolit.fr/sorties/sortie-107846/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7418-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7409-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7400-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7399-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7413-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7416-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7417-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7419-scaled.jpeg,10/17/2025 0:00,14.0000000,15.0000000,43.2360220000000,5.36000800000000,Planète Mer,Plage de la brise,107849,Observation #107849,https://biolit.fr/observations/observation-107849/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7419-scaled.jpeg,,, +N1,107846,Sortie #107846,https://biolit.fr/sorties/sortie-107846/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7418-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7409-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7400-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7399-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7413-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7416-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7417-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7419-scaled.jpeg,10/17/2025 0:00,14.0000000,15.0000000,43.2360220000000,5.36000800000000,Planète Mer,Plage de la brise,107851,Observation #107851,https://biolit.fr/observations/observation-107851/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7420-scaled.jpeg,,, +N1,107846,Sortie #107846,https://biolit.fr/sorties/sortie-107846/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7418-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7409-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7400-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7399-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7413-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7416-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7417-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7419-scaled.jpeg,10/17/2025 0:00,14.0000000,15.0000000,43.2360220000000,5.36000800000000,Planète Mer,Plage de la brise,107853,Observation #107853,https://biolit.fr/observations/observation-107853/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7421-scaled.jpeg,,, +N1,107846,Sortie #107846,https://biolit.fr/sorties/sortie-107846/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7418-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7409-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7400-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7399-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7413-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7416-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7417-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7419-scaled.jpeg,10/17/2025 0:00,14.0000000,15.0000000,43.2360220000000,5.36000800000000,Planète Mer,Plage de la brise,107855,Observation #107855,https://biolit.fr/observations/observation-107855/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7418-scaled.jpeg,,, +N1,107846,Sortie #107846,https://biolit.fr/sorties/sortie-107846/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7418-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7409-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7400-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7399-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7413-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7416-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7417-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7419-scaled.jpeg,10/17/2025 0:00,14.0000000,15.0000000,43.2360220000000,5.36000800000000,Planète Mer,Plage de la brise,107857,Observation #107857,https://biolit.fr/observations/observation-107857/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7400-scaled.jpeg,,, +N1,107846,Sortie #107846,https://biolit.fr/sorties/sortie-107846/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7418-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7409-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7400-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7399-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7413-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7416-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7417-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7419-scaled.jpeg,10/17/2025 0:00,14.0000000,15.0000000,43.2360220000000,5.36000800000000,Planète Mer,Plage de la brise,107859,Observation #107859,https://biolit.fr/observations/observation-107859/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7399-scaled.jpeg,,, +N1,107846,Sortie #107846,https://biolit.fr/sorties/sortie-107846/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7418-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7409-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7400-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7399-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7413-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7416-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7417-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7419-scaled.jpeg,10/17/2025 0:00,14.0000000,15.0000000,43.2360220000000,5.36000800000000,Planète Mer,Plage de la brise,107861,Observation #107861,https://biolit.fr/observations/observation-107861/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7383-scaled.jpeg,,TRUE, +N1,107846,Sortie #107846,https://biolit.fr/sorties/sortie-107846/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7418-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7409-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7400-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7399-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7413-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7416-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7417-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7419-scaled.jpeg,10/17/2025 0:00,14.0000000,15.0000000,43.2360220000000,5.36000800000000,Planète Mer,Plage de la brise,107863,Observation #107863,https://biolit.fr/observations/observation-107863/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7412-scaled.jpeg,,TRUE,Identifiable +N1,107846,Sortie #107846,https://biolit.fr/sorties/sortie-107846/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7418-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7409-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7400-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7399-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7413-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7416-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7417-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7419-scaled.jpeg,10/17/2025 0:00,14.0000000,15.0000000,43.2360220000000,5.36000800000000,Planète Mer,Plage de la brise,107865,Observation #107865,https://biolit.fr/observations/observation-107865/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7415-scaled.jpeg,,TRUE, +N1,107846,Sortie #107846,https://biolit.fr/sorties/sortie-107846/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7418-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7409-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7400-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7399-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7413-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7416-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7417-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7419-scaled.jpeg,10/17/2025 0:00,14.0000000,15.0000000,43.2360220000000,5.36000800000000,Planète Mer,Plage de la brise,107867,Observation #107867,https://biolit.fr/observations/observation-107867/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7417-scaled.jpeg,,TRUE, +N1,107846,Sortie #107846,https://biolit.fr/sorties/sortie-107846/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7418-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7409-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7400-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7399-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7413-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7416-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7417-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7419-scaled.jpeg,10/17/2025 0:00,14.0000000,15.0000000,43.2360220000000,5.36000800000000,Planète Mer,Plage de la brise,107869,Observation #107869,https://biolit.fr/observations/observation-107869/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7416-scaled.jpeg,,TRUE,non-identifiable +N1,107846,Sortie #107846,https://biolit.fr/sorties/sortie-107846/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7421-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7418-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7408-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7420-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7409-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7400-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7399-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7383-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7410-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7411-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7412-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7413-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7414-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7415-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7416-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7417-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7419-scaled.jpeg,10/17/2025 0:00,14.0000000,15.0000000,43.2360220000000,5.36000800000000,Planète Mer,Plage de la brise,107871,Observation #107871,https://biolit.fr/observations/observation-107871/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_7414-scaled.jpeg,,TRUE,non-identifiable +N1,107875,Sortie #107875,https://biolit.fr/sorties/sortie-107875/,De Filippis Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/10/1000075237-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/10/1000075238-scaled.jpg,10/18/2025 0:00,15.0000000,17.0:15,43.6683210,4.1251190,,Aresquier,107876,Observation #107876,https://biolit.fr/observations/observation-107876/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/10/1000075238-scaled.jpg,,,Identifiable +N1,107878,Sortie #107878,https://biolit.fr/sorties/sortie-107878/,De Filippis Agnès,,10/18/2025 0:00,15.0000000,17.0:15,43.668296,4.1252010,,Aresquier,,,,,,,,,, +N1,107880,Sortie #107880,https://biolit.fr/sorties/sortie-107880/,De Filippis Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/10/1000075237-1-scaled.jpg,10/18/2025 0:00,15.0:21,17.0:21,43.6681340,4.125246,,Plage Aresquier,107881,Observation #107881,https://biolit.fr/observations/observation-107881/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/10/1000075237-1-scaled.jpg,,,Identifiable +N1,107880,Sortie #107880,https://biolit.fr/sorties/sortie-107880/,De Filippis Agnès,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/10/1000075237-1-scaled.jpg,10/18/2025 0:00,15.0:21,17.0:21,43.6681340,4.125246,,Plage Aresquier,107883,Observation #107883,https://biolit.fr/observations/observation-107883/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ab8c3d1f2e9274a583689cc36cf71dd1/2025/10/1000075237-1-scaled.jpg,,,Identifiable +N1,107995,Sortie #107995,https://biolit.fr/sorties/sortie-107995/,LAMETRIE Bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1344-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1343-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1342-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1340-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1339-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1338-scaled.jpeg,09/01/2025,9.0000000,11.0000000,42.9545630000000,3.03291300000000,,"Complexe Lagunaire de Lapalme, Eurovélo 8, 11370 Leucate",107996,Observation #107996,https://biolit.fr/observations/observation-107996/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1344-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1343-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1342-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1340-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1339-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1338-scaled.jpeg,,, +N1,107995,Sortie #107995,https://biolit.fr/sorties/sortie-107995/,LAMETRIE Bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1344-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1343-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1342-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1340-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1339-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1338-scaled.jpeg,09/01/2025,9.0000000,11.0000000,42.9545630000000,3.03291300000000,,"Complexe Lagunaire de Lapalme, Eurovélo 8, 11370 Leucate",107998,Observation #107998,https://biolit.fr/observations/observation-107998/,Cellaria salicornioides,Cellaire salicorne,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1338-scaled.jpeg,,,Identifiable +N1,108003,Sortie #108003,https://biolit.fr/sorties/sortie-108003/,LAMETRIE Bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1542-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1538-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1537-scaled.jpeg,09/03/2025,15.0000000,17.0000000,43.144357000000,2.99656400000000,,"Complexe Lagunaire de Bages-Sigean, 11100 Narbonne, France",108004,Observation #108004,https://biolit.fr/observations/observation-108004/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1542-1-scaled.jpeg,,,non-identifiable +N1,108003,Sortie #108003,https://biolit.fr/sorties/sortie-108003/,LAMETRIE Bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1542-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1538-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1537-scaled.jpeg,09/03/2025,15.0000000,17.0000000,43.144357000000,2.99656400000000,,"Complexe Lagunaire de Bages-Sigean, 11100 Narbonne, France",108006,Observation #108006,https://biolit.fr/observations/observation-108006/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1538-scaled.jpeg,,,Ne sais pas +N1,108003,Sortie #108003,https://biolit.fr/sorties/sortie-108003/,LAMETRIE Bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1542-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1538-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1537-scaled.jpeg,09/03/2025,15.0000000,17.0000000,43.144357000000,2.99656400000000,,"Complexe Lagunaire de Bages-Sigean, 11100 Narbonne, France",108008,Observation #108008,https://biolit.fr/observations/observation-108008/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/99a598b98666aee007e772170121b473/2025/10/IMG_1537-scaled.jpeg,,,Ne sais pas +N1,108011,Sortie #108011,https://biolit.fr/sorties/sortie-108011/,Durand Simon,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/af3e2a4d381279968613437502881b48/2025/10/UNADJUSTEDNONRAW_thumb_437c.jpg,10/20/2025 0:00,10.0000000,11.0000000,43.4313730000000,3.77473700000000,LPO Occitanie (Dt Hérault),"Plage du port de plaisance ouest, Frontignan",108012,Observation #108012,https://biolit.fr/observations/observation-108012/,Phorcus turbinatus,Gibbule toupie,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/af3e2a4d381279968613437502881b48/2025/10/UNADJUSTEDNONRAW_thumb_437c.jpg,,,Identifiable +N1,108015,Sortie #108015,https://biolit.fr/sorties/sortie-108015/,Durand Simon,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/af3e2a4d381279968613437502881b48/2025/10/UNADJUSTEDNONRAW_thumb_4377.jpg,2/20/2025 0:00,10.0000000,11.0000000,43.4313920000000,3.77476000000000,LPO Occitanie (Dt Hérault),"Plage du port de plaisance ouest, Frontignan",108016,Observation #108016,https://biolit.fr/observations/observation-108016/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/af3e2a4d381279968613437502881b48/2025/10/UNADJUSTEDNONRAW_thumb_4377.jpg,,,Identifiable +N1,108015,Sortie #108015,https://biolit.fr/sorties/sortie-108015/,Durand Simon,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/af3e2a4d381279968613437502881b48/2025/10/UNADJUSTEDNONRAW_thumb_4377.jpg,2/20/2025 0:00,10.0000000,11.0000000,43.4313920000000,3.77476000000000,LPO Occitanie (Dt Hérault),"Plage du port de plaisance ouest, Frontignan",108018,Observation #108018,https://biolit.fr/observations/observation-108018/,Cerithium vulgatum,Cérithe-goumier,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/af3e2a4d381279968613437502881b48/2025/10/UNADJUSTEDNONRAW_thumb_4377.jpg,,,Identifiable +N1,108021,Sortie #108021,https://biolit.fr/sorties/sortie-108021/,Durand Simon,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/af3e2a4d381279968613437502881b48/2025/10/UNADJUSTEDNONRAW_thumb_437a.jpg,10/20/2025 0:00,10.0000000,11.0000000,43.4315360000000,3.77471000000000,LPO Occitanie (Dt Hérault),"Plage du port de plaisance ouest, Frontignan",108022,Observation #108022,https://biolit.fr/observations/observation-108022/,Venus verrucosa,Praire commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/af3e2a4d381279968613437502881b48/2025/10/UNADJUSTEDNONRAW_thumb_437a.jpg,,TRUE,Identifiable +N1,108025,Sortie #108025,https://biolit.fr/sorties/sortie-108025/,Durand Simon,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/af3e2a4d381279968613437502881b48/2025/10/UNADJUSTEDNONRAW_thumb_4376.jpg,10/20/2025 0:00,10.0000000,11.0000000,43.4314050000000,3.7745390000000,LPO Occitanie (Dt Hérault),"Plage du port de plaisance ouest, Frontignan",108026,Observation #108026,https://biolit.fr/observations/observation-108026/,Dosinia exoleta,Dosinie radiée,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/af3e2a4d381279968613437502881b48/2025/10/UNADJUSTEDNONRAW_thumb_4376.jpg,,,Identifiable +N1,108029,Sortie #108029,https://biolit.fr/sorties/sortie-108029/,Durand Simon,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/af3e2a4d381279968613437502881b48/2025/10/UNADJUSTEDNONRAW_thumb_4379.jpg,10/20/2025 0:00,10.0000000,11.0000000,43.4314970000000,3.77464100000000,LPO Occitanie (Dt Hérault),"Plage du port de plaisance ouest, Frontignan",108030,Observation #108030,https://biolit.fr/observations/observation-108030/,Perforatus perforatus,Grande balane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/af3e2a4d381279968613437502881b48/2025/10/UNADJUSTEDNONRAW_thumb_4379.jpg,,TRUE,Identifiable +N1,108033,Sortie #108033,https://biolit.fr/sorties/sortie-108033/,Durand Simon,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/af3e2a4d381279968613437502881b48/2025/10/UNADJUSTEDNONRAW_thumb_437b.jpg,10/20/2025 0:00,10.0000000,11.0000000,43.4314890000000,3.77451200000000,LPO Occitanie (Dt Hérault),"Plage du port de plaisance ouest, Frontignan",108034,Observation #108034,https://biolit.fr/observations/observation-108034/,Ulva spp.,Ulve laitue de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/af3e2a4d381279968613437502881b48/2025/10/UNADJUSTEDNONRAW_thumb_437b.jpg,,TRUE,Identifiable +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108064,Observation #108064,https://biolit.fr/observations/observation-108064/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108066,Observation #108066,https://biolit.fr/observations/observation-108066/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108068,Observation #108068,https://biolit.fr/observations/observation-108068/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108070,Observation #108070,https://biolit.fr/observations/observation-108070/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108072,Observation #108072,https://biolit.fr/observations/observation-108072/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108074,Observation #108074,https://biolit.fr/observations/observation-108074/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108076,Observation #108076,https://biolit.fr/observations/observation-108076/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108078,Observation #108078,https://biolit.fr/observations/observation-108078/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108080,Observation #108080,https://biolit.fr/observations/observation-108080/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108082,Observation #108082,https://biolit.fr/observations/observation-108082/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg,,TRUE,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108084,Observation #108084,https://biolit.fr/observations/observation-108084/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108086,Observation #108086,https://biolit.fr/observations/observation-108086/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108088,Observation #108088,https://biolit.fr/observations/observation-108088/,Asterias rubens,Etoile de mer commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg,,TRUE,Identifiable +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108090,Observation #108090,https://biolit.fr/observations/observation-108090/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108092,Observation #108092,https://biolit.fr/observations/observation-108092/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108094,Observation #108094,https://biolit.fr/observations/observation-108094/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108096,Observation #108096,https://biolit.fr/observations/observation-108096/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108098,Observation #108098,https://biolit.fr/observations/observation-108098/,Marthasterias glacialis,Etoile de mer glaciaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg,,TRUE,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108100,Observation #108100,https://biolit.fr/observations/observation-108100/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108102,Observation #108102,https://biolit.fr/observations/observation-108102/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg,,,Ne sais pas +N1,108063,Sortie #108063,https://biolit.fr/sorties/sortie-108063/,LAMBERT GUY,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1759.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1758-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1753.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1756-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1755-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1754-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1751-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1752.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1749.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1748.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1746.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1745.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1738-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1742-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1735-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1736-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1733-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1739-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1750-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1734-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,10/08/2025,10.0000000,15.0000000,46.4891770000000,-1.77181400000000,,Les Sables D’Olonne,108104,Observation #108104,https://biolit.fr/observations/observation-108104/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7912d9fd532dff0535647c872268d38c/2025/10/IMG_1743-scaled.jpeg,,,Ne sais pas +N1,108128,Sortie #108128,https://biolit.fr/sorties/sortie-108128/,etapes22560 Michelle,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0006af70db1c8e5f168daebda1a1fe/2025/10/20251021_135615.jpgquadrat1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0006af70db1c8e5f168daebda1a1fe/2025/10/20251021_140902.jpgQ1_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0006af70db1c8e5f168daebda1a1fe/2025/10/20251021_141214.jpgquadrat2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0006af70db1c8e5f168daebda1a1fe/2025/10/20251021_141742.jpgQ2_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0006af70db1c8e5f168daebda1a1fe/2025/10/20251021_142023.jpgquadrat3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0006af70db1c8e5f168daebda1a1fe/2025/10/20251021_143203.jpgQ3mage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0006af70db1c8e5f168daebda1a1fe/2025/10/20251021_143144.jpgQ3_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0006af70db1c8e5f168daebda1a1fe/2025/10/20251021_143701.jpgquadrat4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0006af70db1c8e5f168daebda1a1fe/2025/10/20251021_144903.jpgQ4_-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0006af70db1c8e5f168daebda1a1fe/2025/10/Q4gibule-ombiliquee-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/fb0006af70db1c8e5f168daebda1a1fe/2025/10/20251021-fiche-biolit-rotated.jpg,10/21/2025 0:00,13.0000000,14.0000000,48.8162180000000,-3.54034700000000,E.T.A.P.E.S,Landrellec,,,,,,,,,, +N1,108139,Sortie #108139,https://biolit.fr/sorties/sortie-108139/,Audige Julie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113301-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113242-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113222-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113200-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113131-3-scaled.jpg,10/20/2025 0:00,9.0000000,11.0000000,43433539,3773253,LPO Occitanie (Dt Hérault),Frontignan Plage,108140,Observation #108140,https://biolit.fr/observations/observation-108140/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113301-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113242-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113222-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113200-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113131-3-scaled.jpg,,,Ne sais pas +N1,108139,Sortie #108139,https://biolit.fr/sorties/sortie-108139/,Audige Julie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113301-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113242-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113222-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113200-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113131-3-scaled.jpg,10/20/2025 0:00,9.0000000,11.0000000,43433539,3773253,LPO Occitanie (Dt Hérault),Frontignan Plage,108142,Observation #108142,https://biolit.fr/observations/observation-108142/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113301-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113242-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113222-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113200-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113131-3-scaled.jpg,,,Ne sais pas +N1,108139,Sortie #108139,https://biolit.fr/sorties/sortie-108139/,Audige Julie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113301-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113242-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113222-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113200-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113131-3-scaled.jpg,10/20/2025 0:00,9.0000000,11.0000000,43433539,3773253,LPO Occitanie (Dt Hérault),Frontignan Plage,108144,Observation #108144,https://biolit.fr/observations/observation-108144/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113242-2-scaled.jpg,,,Ne sais pas +N1,108139,Sortie #108139,https://biolit.fr/sorties/sortie-108139/,Audige Julie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113301-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113242-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113222-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113200-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113131-3-scaled.jpg,10/20/2025 0:00,9.0000000,11.0000000,43433539,3773253,LPO Occitanie (Dt Hérault),Frontignan Plage,108146,Observation #108146,https://biolit.fr/observations/observation-108146/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113222-2-scaled.jpg,,,Ne sais pas +N1,108139,Sortie #108139,https://biolit.fr/sorties/sortie-108139/,Audige Julie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113301-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113242-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113222-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113200-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113131-3-scaled.jpg,10/20/2025 0:00,9.0000000,11.0000000,43433539,3773253,LPO Occitanie (Dt Hérault),Frontignan Plage,108148,Observation #108148,https://biolit.fr/observations/observation-108148/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113200-3-scaled.jpg,,TRUE,Ne sais pas +N1,108139,Sortie #108139,https://biolit.fr/sorties/sortie-108139/,Audige Julie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113301-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113242-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113222-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113200-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113131-3-scaled.jpg,10/20/2025 0:00,9.0000000,11.0000000,43433539,3773253,LPO Occitanie (Dt Hérault),Frontignan Plage,108150,Observation #108150,https://biolit.fr/observations/observation-108150/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/17797c731e3ebc082ea9da947f3070c2/2025/10/20251020_113131-3-scaled.jpg,,TRUE,Ne sais pas +N1,108201,Sortie #108201,https://biolit.fr/sorties/sortie-108201/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Callianasse-tyrrhenienne-—-Pestarella-tyrrhena-syn.-Callianassa-tyrrhena-crevette-fouisseuse-des-plages-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Callianasse-tyrrhenienne-—-Pestarella-tyrrhena-syn.-Callianassa-tyrrhena-crevette-fouisseuse-des-plages-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Callianasse-tyrrhenienne-—-Pestarella-tyrrhena-syn.-Callianassa-tyrrhena-crevette-fouisseuse-des-plages-3-scaled.jpg,10/22/2025 0:00,16.0:15,16.0000000,43.0699900000000,6.12842600000000,,"Plage de l'Almanare, Giens",108202,Observation #108202,https://biolit.fr/observations/observation-108202/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Callianasse-tyrrhenienne-—-Pestarella-tyrrhena-syn.-Callianassa-tyrrhena-crevette-fouisseuse-des-plages-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Callianasse-tyrrhenienne-—-Pestarella-tyrrhena-syn.-Callianassa-tyrrhena-crevette-fouisseuse-des-plages-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/10/Callianasse-tyrrhenienne-—-Pestarella-tyrrhena-syn.-Callianassa-tyrrhena-crevette-fouisseuse-des-plages-3-scaled.jpg,,TRUE,non-identifiable +N1,108207,Sortie #108207,https://biolit.fr/sorties/sortie-108207/,Naturoscope (Antenne Marseille),,10/23/2025 0:00,11.0000000,11.0000000,43.27366000,5.3619590,Naturoscope (Antenne Marseille),Plage du Prophète,,,,,,,,,, +N1,108234,Sortie #108234,https://biolit.fr/sorties/sortie-108234/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c01a5869814dd6070318f10d0f43f06/2025/10/1000025981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c01a5869814dd6070318f10d0f43f06/2025/10/1000025982-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c01a5869814dd6070318f10d0f43f06/2025/10/1000025980-scaled.jpg,10/22/2025 0:00,11.0000000,11.0000000,46.1383300000000,-1.17594500000000,E.C.O.L.E de la Mer (Espace de Culture Océane du Littoral et de l'Environnement),estran des Minimes,108235,Observation #108235,https://biolit.fr/observations/observation-108235/,Aplysia spp.,Ponte de lièvre de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c01a5869814dd6070318f10d0f43f06/2025/10/1000025981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c01a5869814dd6070318f10d0f43f06/2025/10/1000025982-scaled.jpg,,TRUE,Identifiable +N1,108234,Sortie #108234,https://biolit.fr/sorties/sortie-108234/,Marine,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c01a5869814dd6070318f10d0f43f06/2025/10/1000025981-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c01a5869814dd6070318f10d0f43f06/2025/10/1000025982-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c01a5869814dd6070318f10d0f43f06/2025/10/1000025980-scaled.jpg,10/22/2025 0:00,11.0000000,11.0000000,46.1383300000000,-1.17594500000000,E.C.O.L.E de la Mer (Espace de Culture Océane du Littoral et de l'Environnement),estran des Minimes,108237,Observation #108237,https://biolit.fr/observations/observation-108237/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c01a5869814dd6070318f10d0f43f06/2025/10/1000025980-scaled.jpg,,TRUE,Identifiable +N1,108247,Sortie #108247,https://biolit.fr/sorties/sortie-108247/,Laliche Flora,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/023c6e8df887f1dc06066cb56e68cd5a/2025/10/IMG20251023155714-scaled.jpg,10/23/2025 0:00,16.000001,16.0000000,43.2374170,5.361407,Planète Mer,Plage de la sablette,108248,Observation #108248,https://biolit.fr/observations/observation-108248/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/023c6e8df887f1dc06066cb56e68cd5a/2025/10/IMG20251023155714-scaled.jpg,,TRUE,non-identifiable +N1,108250,Sortie #108250,https://biolit.fr/sorties/sortie-108250/,Céline,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6976-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6975-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6973-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6971-scaled.jpeg,10/23/2025 0:00,16.0000000,16.0000000,43.2368980000000,5.36062000000000,Planète Mer,Plage des sablettes,108251,Observation #108251,https://biolit.fr/observations/observation-108251/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6976-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6975-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6973-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6971-scaled.jpeg,,,Ne sais pas +N1,108250,Sortie #108250,https://biolit.fr/sorties/sortie-108250/,Céline,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6976-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6975-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6973-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6971-scaled.jpeg,10/23/2025 0:00,16.0000000,16.0000000,43.2368980000000,5.36062000000000,Planète Mer,Plage des sablettes,108253,Observation #108253,https://biolit.fr/observations/observation-108253/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6975-scaled.jpeg,,TRUE,Ne sais pas +N1,108250,Sortie #108250,https://biolit.fr/sorties/sortie-108250/,Céline,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6976-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6975-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6973-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6971-scaled.jpeg,10/23/2025 0:00,16.0000000,16.0000000,43.2368980000000,5.36062000000000,Planète Mer,Plage des sablettes,108255,Observation #108255,https://biolit.fr/observations/observation-108255/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6973-scaled.jpeg,,TRUE,non-identifiable +N1,108250,Sortie #108250,https://biolit.fr/sorties/sortie-108250/,Céline,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6976-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6975-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6973-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6971-scaled.jpeg,10/23/2025 0:00,16.0000000,16.0000000,43.2368980000000,5.36062000000000,Planète Mer,Plage des sablettes,108257,Observation #108257,https://biolit.fr/observations/observation-108257/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a124436f212872e36bd7cc12bfe0fd03/2025/10/IMG_6971-scaled.jpeg,,TRUE,non-identifiable +N1,108279,Sortie #108279,https://biolit.fr/sorties/sortie-108279/,Leroux Julien,,10/25/2025 0:00,10.0000000,12.0000000,50.787627000000,1.6025180000000,,Pointe aux oies,,,,,,,,,, +N1,108287,Sortie #108287,https://biolit.fr/sorties/sortie-108287/,Leroux Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026254-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026253-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026252-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026247-scaled.jpg,10/25/2025 0:00,10.0:32,15.0:32,50.8037430,1.6165630,,La pointe aux oies,,,,,,,,,, +N1,108292,Sortie #108292,https://biolit.fr/sorties/sortie-108292/,Leroux Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026254-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026008-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026247-1-scaled.jpg,10/25/2025 0:00,15.0:36,15.0:36,50.8245610000000,1.56579100000000,,,108293,Observation #108293,https://biolit.fr/observations/observation-108293/,Himanthalia elongata,Himanthale,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026254-1-scaled.jpg,,TRUE,Identifiable +N1,108292,Sortie #108292,https://biolit.fr/sorties/sortie-108292/,Leroux Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026254-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026008-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026247-1-scaled.jpg,10/25/2025 0:00,15.0:36,15.0:36,50.8245610000000,1.56579100000000,,,108295,Observation #108295,https://biolit.fr/observations/observation-108295/,Aetobatus narinari,Raie léopard,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026008-1-scaled.jpg,,,Identifiable +N1,108292,Sortie #108292,https://biolit.fr/sorties/sortie-108292/,Leroux Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026254-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026253-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026008-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026247-1-scaled.jpg,10/25/2025 0:00,15.0:36,15.0:36,50.8245610000000,1.56579100000000,,,108297,Observation #108297,https://biolit.fr/observations/observation-108297/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/10/1000026247-1-scaled.jpg,,TRUE,non-identifiable +N1,108301,Sortie #108301,https://biolit.fr/sorties/sortie-108301/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6737384134b446c20bfdfec199a5df9a/2025/10/20251026_161529-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6737384134b446c20bfdfec199a5df9a/2025/10/20251026_161505-scaled.jpg,10/26/2025 0:00,16.0000000,17.000004,48.6922180000000,-1.89780200000000,Observe la nature,Plage Duguesclin,108302,Observation #108302,https://biolit.fr/observations/observation-108302/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6737384134b446c20bfdfec199a5df9a/2025/10/20251026_161529-scaled.jpg,,,Ne sais pas +N1,108311,Sortie #108311,https://biolit.fr/sorties/sortie-108311/,DURAND ALEXANDRA,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5606-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5607-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5610-scaled.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5611-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5612-scaled.jpg,10/09/2025,10.0000000,12.0000000,46.9728440000000,-2.25357100000000,,ILE DE NOIRMOUTIERS,108312,Observation #108312,https://biolit.fr/observations/observation-108312/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5606-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5607-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5611-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5610-scaled.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5612-scaled.jpg,,,Ne sais pas +N1,108311,Sortie #108311,https://biolit.fr/sorties/sortie-108311/,DURAND ALEXANDRA,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5606-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5607-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5610-scaled.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5611-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5612-scaled.jpg,10/09/2025,10.0000000,12.0000000,46.9728440000000,-2.25357100000000,,ILE DE NOIRMOUTIERS,108315,Observation #108315,https://biolit.fr/observations/observation-108315/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5611-scaled.jpg,,,Ne sais pas +N1,108311,Sortie #108311,https://biolit.fr/sorties/sortie-108311/,DURAND ALEXANDRA,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5606-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5607-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5610-scaled.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5611-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5612-scaled.jpg,10/09/2025,10.0000000,12.0000000,46.9728440000000,-2.25357100000000,,ILE DE NOIRMOUTIERS,108317,Observation #108317,https://biolit.fr/observations/observation-108317/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5607-scaled.jpg,,,Ne sais pas +N1,108311,Sortie #108311,https://biolit.fr/sorties/sortie-108311/,DURAND ALEXANDRA,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5606-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5607-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5610-scaled.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5611-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5612-scaled.jpg,10/09/2025,10.0000000,12.0000000,46.9728440000000,-2.25357100000000,,ILE DE NOIRMOUTIERS,108319,Observation #108319,https://biolit.fr/observations/observation-108319/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5610-scaled.png,,,Ne sais pas +N1,108311,Sortie #108311,https://biolit.fr/sorties/sortie-108311/,DURAND ALEXANDRA,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5606-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5607-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5610-scaled.png | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5611-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5612-scaled.jpg,10/09/2025,10.0000000,12.0000000,46.9728440000000,-2.25357100000000,,ILE DE NOIRMOUTIERS,108321,Observation #108321,https://biolit.fr/observations/observation-108321/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/9a916555e2c6549d6c44acbdd2b597e6/2025/10/IMG_5612-scaled.jpg,,,Ne sais pas +N1,108355,Sortie #108355,https://biolit.fr/sorties/sortie-108355/,Agathe Bouet,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6553ea0bedfc3fedebf5fa4361dc1f68/2025/10/Image-33.jpg,10/28/2025 0:00,11.0000000,11.000005,48.6384050000000,-2.07002400000000,Planète Mer (antenne Dinard),Plage de Saint-Enogat,108356,Observation #108356,https://biolit.fr/observations/observation-108356/,Scyliorhinus canicula,Capsule de petite roussette,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6553ea0bedfc3fedebf5fa4361dc1f68/2025/10/Image-33.jpg,,TRUE,Identifiable +N1,108409,Sortie #108409,https://biolit.fr/sorties/sortie-108409/,Vial Pauline,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_104330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103833-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101649-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101305-scaled.jpg,10/29/2025 0:00,9.0000000,12.0000000,43.214882000000,5.34292600000000,Planète Mer,,108410,Observation #108410,https://biolit.fr/observations/observation-108410/,Halocynthia papillosa,Ascidie rouge,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101043-scaled.jpg,,TRUE,Identifiable +N1,108409,Sortie #108409,https://biolit.fr/sorties/sortie-108409/,Vial Pauline,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_104330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103833-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101649-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101305-scaled.jpg,10/29/2025 0:00,9.0000000,12.0000000,43.214882000000,5.34292600000000,Planète Mer,,108412,Observation #108412,https://biolit.fr/observations/observation-108412/,Actinia mediterranea,Tomate de mer de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103833-scaled.jpg,,TRUE,Identifiable +N1,108409,Sortie #108409,https://biolit.fr/sorties/sortie-108409/,Vial Pauline,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_104330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103833-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101649-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101305-scaled.jpg,10/29/2025 0:00,9.0000000,12.0000000,43.214882000000,5.34292600000000,Planète Mer,,108414,Observation #108414,https://biolit.fr/observations/observation-108414/,Corallina officinalis/caespitosa,Coralline,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101649-scaled.jpg,,,Identifiable +N1,108409,Sortie #108409,https://biolit.fr/sorties/sortie-108409/,Vial Pauline,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_104330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103833-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101649-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101305-scaled.jpg,10/29/2025 0:00,9.0000000,12.0000000,43.214882000000,5.34292600000000,Planète Mer,,108416,Observation #108416,https://biolit.fr/observations/observation-108416/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101040-scaled.jpg,,,Identifiable +N1,108409,Sortie #108409,https://biolit.fr/sorties/sortie-108409/,Vial Pauline,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_104330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103833-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101649-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101305-scaled.jpg,10/29/2025 0:00,9.0000000,12.0000000,43.214882000000,5.34292600000000,Planète Mer,,108418,Observation #108418,https://biolit.fr/observations/observation-108418/,Peyssonnelia squamaria,Peyssonnelia,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101305-scaled.jpg,,,Identifiable +N1,108409,Sortie #108409,https://biolit.fr/sorties/sortie-108409/,Vial Pauline,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_104330-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103833-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101649-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101040-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101305-scaled.jpg,10/29/2025 0:00,9.0000000,12.0000000,43.214882000000,5.34292600000000,Planète Mer,,108420,Observation #108420,https://biolit.fr/observations/observation-108420/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103033-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_101053-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/88d3ea8aac8d40875f8a7742225b8e75/2025/10/IMG_20251029_103128-scaled.jpg,,,non-identifiable +N1,108449,Sortie #108449,https://biolit.fr/sorties/sortie-108449/,Naturoscope (Antenne Marseille),,10/30/2025 0:00,15.0000000,16.0000000,43.2731010000000,5.36195900000000,Naturoscope (Antenne Marseille),Plage du Prophète,,,,,,,,,, +N1,108458,Sortie #108458,https://biolit.fr/sorties/sortie-108458/,Brenier Traoré David,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d0e0a92cd1ac77457924656c0ef9448d/2025/10/IMG_20251029_1026322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d0e0a92cd1ac77457924656c0ef9448d/2025/10/IMG_20251029_105242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d0e0a92cd1ac77457924656c0ef9448d/2025/10/IMG_20251029_102259-scaled.jpg,10/29/2025 0:00,9.0000000,11.0000000,43.2149550000000,5.3428320000000,Planète Mer,Anse de la Maronnaise,108459,Observation #108459,https://biolit.fr/observations/observation-108459/,Lithophyllum byssoides,Algue calcaire des trottoirs,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d0e0a92cd1ac77457924656c0ef9448d/2025/10/IMG_20251029_1026322-scaled.jpg,,,Identifiable +N1,108458,Sortie #108458,https://biolit.fr/sorties/sortie-108458/,Brenier Traoré David,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d0e0a92cd1ac77457924656c0ef9448d/2025/10/IMG_20251029_1026322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d0e0a92cd1ac77457924656c0ef9448d/2025/10/IMG_20251029_105242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d0e0a92cd1ac77457924656c0ef9448d/2025/10/IMG_20251029_102259-scaled.jpg,10/29/2025 0:00,9.0000000,11.0000000,43.2149550000000,5.3428320000000,Planète Mer,Anse de la Maronnaise,108461,Observation #108461,https://biolit.fr/observations/observation-108461/,Arca noae,Arche de Noé,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d0e0a92cd1ac77457924656c0ef9448d/2025/10/IMG_20251029_105242-scaled.jpg,,,Identifiable +N1,108458,Sortie #108458,https://biolit.fr/sorties/sortie-108458/,Brenier Traoré David,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d0e0a92cd1ac77457924656c0ef9448d/2025/10/IMG_20251029_1026322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d0e0a92cd1ac77457924656c0ef9448d/2025/10/IMG_20251029_105242-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d0e0a92cd1ac77457924656c0ef9448d/2025/10/IMG_20251029_102259-scaled.jpg,10/29/2025 0:00,9.0000000,11.0000000,43.2149550000000,5.3428320000000,Planète Mer,Anse de la Maronnaise,108463,Observation #108463,https://biolit.fr/observations/observation-108463/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d0e0a92cd1ac77457924656c0ef9448d/2025/10/IMG_20251029_102259-scaled.jpg,,,Identifiable +N1,108471,Sortie #108471,https://biolit.fr/sorties/sortie-108471/,boulier bruno,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c2d32434316102a7d2d6f5a531991c2/2025/10/20251030_125447-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c2d32434316102a7d2d6f5a531991c2/2025/10/20251030_125845-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c2d32434316102a7d2d6f5a531991c2/2025/10/20251030_130356-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c2d32434316102a7d2d6f5a531991c2/2025/10/20251030_130402-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6c2d32434316102a7d2d6f5a531991c2/2025/10/20251030_130406-scaled.jpg,10/30/2025 0:00,12.0:45,13.0000000,47.7022850000000,-3.39593400000000,,larmor plage,,,,,,,,,, +N1,108473,Sortie #108473,https://biolit.fr/sorties/sortie-108473/,Maison Baie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/628d9c0b2cdffc5082d2cff9d8328158/2025/10/1000058083-scaled.jpg,10/31/2025 0:00,15.0:23,16.0:23,48.6786050,-1.8600980,Al-Lark,Plage de St Benoît des Ondes,108474,Observation #108474,https://biolit.fr/observations/observation-108474/,Raja undulata,Raie brunette,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/628d9c0b2cdffc5082d2cff9d8328158/2025/10/1000058083-scaled.jpg,,TRUE,non-identifiable +N1,108477,Sortie #108477,https://biolit.fr/sorties/sortie-108477/,Maison Baie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/628d9c0b2cdffc5082d2cff9d8328158/2025/10/IMG_20251031_125126-scaled.jpg,10/31/2025 0:00,15.0:34,15.0:35,48.620664,-1.849253,Al-Lark,Saint Benoît des ondes,108478,Observation #108478,https://biolit.fr/observations/observation-108478/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/628d9c0b2cdffc5082d2cff9d8328158/2025/10/IMG_20251031_125126-scaled.jpg,,TRUE,non-identifiable +N1,108483,Sortie #108483,https://biolit.fr/sorties/sortie-108483/,Landrain Claudine,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/2095c86a7aebe4823a724b0ae6a9c3b6/2025/10/IMG_20251031_144843-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/2095c86a7aebe4823a724b0ae6a9c3b6/2025/10/IMG_20251031_144734-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/2095c86a7aebe4823a724b0ae6a9c3b6/2025/10/IMG_20251031_144305-scaled.jpg,10/31/2025 0:00,15.0000000,15.0:24,47.8135780,-3.6666690,Naturau’fil,Finistere moelan,,,,,,,,,, +N1,108487,Sortie #108487,https://biolit.fr/sorties/sortie-108487/,Landrain Claudine,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/2095c86a7aebe4823a724b0ae6a9c3b6/2025/10/IMG_20251031_144843-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/2095c86a7aebe4823a724b0ae6a9c3b6/2025/10/IMG_20251031_144734-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/2095c86a7aebe4823a724b0ae6a9c3b6/2025/10/IMG_20251031_144305-1-scaled.jpg,10/31/2025 0:00,15.0:14,16.0:15,47.8136340,-3.672091,Naturau’fil,Finistere moelan,108488,Observation #108488,https://biolit.fr/observations/observation-108488/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/2095c86a7aebe4823a724b0ae6a9c3b6/2025/10/IMG_20251031_144843-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/2095c86a7aebe4823a724b0ae6a9c3b6/2025/10/IMG_20251031_144734-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/2095c86a7aebe4823a724b0ae6a9c3b6/2025/10/IMG_20251031_144305-1-scaled.jpg,,TRUE,Identifiable +N1,108499,Sortie #108499,https://biolit.fr/sorties/sortie-108499/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6884-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6885-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6886-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6887-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6888-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6930-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6931-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6933-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6927-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399100000000,5.36230400000000,Planète Mer,Au bain des dames,108500,Observation #108500,https://biolit.fr/observations/observation-108500/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6884-scaled.jpeg,,, +N1,108499,Sortie #108499,https://biolit.fr/sorties/sortie-108499/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6884-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6885-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6886-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6887-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6888-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6930-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6931-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6933-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6927-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399100000000,5.36230400000000,Planète Mer,Au bain des dames,108502,Observation #108502,https://biolit.fr/observations/observation-108502/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6885-scaled.jpeg,,, +N1,108499,Sortie #108499,https://biolit.fr/sorties/sortie-108499/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6884-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6885-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6886-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6887-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6888-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6930-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6931-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6933-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6927-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399100000000,5.36230400000000,Planète Mer,Au bain des dames,108504,Observation #108504,https://biolit.fr/observations/observation-108504/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6886-scaled.jpeg,,, +N1,108499,Sortie #108499,https://biolit.fr/sorties/sortie-108499/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6884-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6885-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6886-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6887-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6888-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6930-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6931-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6933-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6927-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399100000000,5.36230400000000,Planète Mer,Au bain des dames,108506,Observation #108506,https://biolit.fr/observations/observation-108506/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6887-scaled.jpeg,,, +N1,108499,Sortie #108499,https://biolit.fr/sorties/sortie-108499/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6884-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6885-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6886-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6887-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6888-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6930-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6931-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6933-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6927-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399100000000,5.36230400000000,Planète Mer,Au bain des dames,108508,Observation #108508,https://biolit.fr/observations/observation-108508/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6888-scaled.jpeg,,, +N1,108499,Sortie #108499,https://biolit.fr/sorties/sortie-108499/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6884-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6885-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6886-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6887-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6888-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6930-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6931-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6933-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6927-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399100000000,5.36230400000000,Planète Mer,Au bain des dames,108510,Observation #108510,https://biolit.fr/observations/observation-108510/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6930-scaled.jpeg,,, +N1,108499,Sortie #108499,https://biolit.fr/sorties/sortie-108499/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6884-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6885-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6886-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6887-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6888-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6930-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6931-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6933-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6927-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399100000000,5.36230400000000,Planète Mer,Au bain des dames,108512,Observation #108512,https://biolit.fr/observations/observation-108512/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6931-scaled.jpeg,,, +N1,108499,Sortie #108499,https://biolit.fr/sorties/sortie-108499/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6884-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6885-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6886-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6887-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6888-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6930-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6931-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6933-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6927-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399100000000,5.36230400000000,Planète Mer,Au bain des dames,108514,Observation #108514,https://biolit.fr/observations/observation-108514/,",",,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6933-scaled.jpeg,,,, +N1,108499,Sortie #108499,https://biolit.fr/sorties/sortie-108499/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6884-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6885-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6886-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6887-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6888-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6930-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6931-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6933-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6927-scaled.jpeg,9/27/2025 0:00,9.0000000,11.0000000,43.2399100000000,5.36230400000000,Planète Mer,Au bain des dames,108516,Observation #108516,https://biolit.fr/observations/observation-108516/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/10/IMG_6927-scaled.jpeg,,, +N1,108524,Sortie #108524,https://biolit.fr/sorties/sortie-108524/,clouet chrystele,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/712cf221d4e64d1f30abab900ed1a85c/2025/11/IMG_1066-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/712cf221d4e64d1f30abab900ed1a85c/2025/11/IMG_1063-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/712cf221d4e64d1f30abab900ed1a85c/2025/11/IMG_1067-1-scaled.jpeg,11/01/2025,16.0000000,16.0:44,47.8004870000000,-4.20433000000000,Communauté de communes du Haut Pays Bigouden,Plage des Sables Blancs Lesconil,108525,Observation #108525,https://biolit.fr/observations/observation-108525/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/712cf221d4e64d1f30abab900ed1a85c/2025/11/IMG_1066-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/712cf221d4e64d1f30abab900ed1a85c/2025/11/IMG_1067-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/712cf221d4e64d1f30abab900ed1a85c/2025/11/IMG_1063-1-scaled.jpeg,,TRUE,Ne sais pas +N1,108524,Sortie #108524,https://biolit.fr/sorties/sortie-108524/,clouet chrystele,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/712cf221d4e64d1f30abab900ed1a85c/2025/11/IMG_1066-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/712cf221d4e64d1f30abab900ed1a85c/2025/11/IMG_1063-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/712cf221d4e64d1f30abab900ed1a85c/2025/11/IMG_1067-1-scaled.jpeg,11/01/2025,16.0000000,16.0:44,47.8004870000000,-4.20433000000000,Communauté de communes du Haut Pays Bigouden,Plage des Sables Blancs Lesconil,108527,Observation #108527,https://biolit.fr/?post_type=observations&p=108527,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/712cf221d4e64d1f30abab900ed1a85c/2025/11/IMG_1066-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/712cf221d4e64d1f30abab900ed1a85c/2025/11/IMG_1063-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/712cf221d4e64d1f30abab900ed1a85c/2025/11/IMG_1067-1-scaled.jpeg,,,Ne sais pas +N1,108533,Sortie #108533,https://biolit.fr/sorties/sortie-108533/,DENEFLE MARIE CLARISSE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/57e3899a3a7e3ffc66db9cf1c74cc8fb/2025/11/IMG20251101085149-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/57e3899a3a7e3ffc66db9cf1c74cc8fb/2025/11/IMG20251101085132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/57e3899a3a7e3ffc66db9cf1c74cc8fb/2025/11/IMG20251101084658-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/57e3899a3a7e3ffc66db9cf1c74cc8fb/2025/11/IMG20251101084617-scaled.jpg,10/31/2025 0:00,13.0:14,22.0:14,48.9215000,2.2986210,,Plage du pouldu Audierne 29,108534,Observation #108534,https://biolit.fr/observations/observation-108534/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/57e3899a3a7e3ffc66db9cf1c74cc8fb/2025/11/IMG20251101085149-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/57e3899a3a7e3ffc66db9cf1c74cc8fb/2025/11/IMG20251101085132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/57e3899a3a7e3ffc66db9cf1c74cc8fb/2025/11/IMG20251101084658-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/57e3899a3a7e3ffc66db9cf1c74cc8fb/2025/11/IMG20251101084617-scaled.jpg,,TRUE,Identifiable +N1,108550,Sortie #108550,https://biolit.fr/sorties/sortie-108550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250529_100438937_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250529_112231666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250530_1423322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_093934-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_094132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_094454-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_095700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_102745-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_103824-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_110904-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_172138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_172234-scaled.jpg,5/30/2025 0:00,10.0000000,10.0000000,43.0345370000000,6.15694000000000,Planète Mer,Giens - Plage de l'Estanci,108551,Observation #108551,https://biolit.fr/observations/observation-108551/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250529_100438937_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250529_112231666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_094132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_094454-scaled.jpg,,,Identifiable +N1,108550,Sortie #108550,https://biolit.fr/sorties/sortie-108550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250529_100438937_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250529_112231666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250530_1423322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_093934-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_094132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_094454-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_095700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_102745-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_103824-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_110904-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_172138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_172234-scaled.jpg,5/30/2025 0:00,10.0000000,10.0000000,43.0345370000000,6.15694000000000,Planète Mer,Giens - Plage de l'Estanci,108553,Observation #108553,https://biolit.fr/observations/observation-108553/,Posidonia oceanica,Olive de Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250530_1423322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_093934-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_095700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_102745-scaled.jpg,,,Identifiable +N1,108550,Sortie #108550,https://biolit.fr/sorties/sortie-108550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250529_100438937_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250529_112231666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250530_1423322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_093934-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_094132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_094454-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_095700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_102745-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_103824-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_110904-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_172138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_172234-scaled.jpg,5/30/2025 0:00,10.0000000,10.0000000,43.0345370000000,6.15694000000000,Planète Mer,Giens - Plage de l'Estanci,108555,Observation #108555,https://biolit.fr/observations/observation-108555/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_103824-scaled.jpg,,,Identifiable +N1,108550,Sortie #108550,https://biolit.fr/sorties/sortie-108550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250529_100438937_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250529_112231666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250530_1423322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_093934-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_094132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_094454-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_095700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_102745-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_103824-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_110904-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_172138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_172234-scaled.jpg,5/30/2025 0:00,10.0000000,10.0000000,43.0345370000000,6.15694000000000,Planète Mer,Giens - Plage de l'Estanci,108557,Observation #108557,https://biolit.fr/observations/observation-108557/,Conus ventricosus,Cône de Méditerranée,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_110904-scaled.jpg,,,Identifiable +N1,108550,Sortie #108550,https://biolit.fr/sorties/sortie-108550/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250529_100438937_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250529_112231666_HDR-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250530_1423322-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_093934-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_094132-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_094454-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_095700-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_102745-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_103824-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_110904-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_172138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_172234-scaled.jpg,5/30/2025 0:00,10.0000000,10.0000000,43.0345370000000,6.15694000000000,Planète Mer,Giens - Plage de l'Estanci,108559,Observation #108559,https://biolit.fr/observations/observation-108559/,Donax trunculus,Flion tronqué,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_172138-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250531_172234-scaled.jpg,,,Identifiable +N1,108563,Sortie #108563,https://biolit.fr/sorties/sortie-108563/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250601_094128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250530_152845-scaled.jpg,5/30/2025 0:00,15.0000000,15.0000000,43.0352630000000,6.15510100000000,Planète Mer,Giens,108564,Observation #108564,https://biolit.fr/observations/observation-108564/,Barbatia barbata,Arche barbue,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250601_094128-scaled.jpg,,,Identifiable +N1,108563,Sortie #108563,https://biolit.fr/sorties/sortie-108563/,MATEJCEKOVA Miroslava,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250601_094128-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250530_152845-scaled.jpg,5/30/2025 0:00,15.0000000,15.0000000,43.0352630000000,6.15510100000000,Planète Mer,Giens,108566,Observation #108566,https://biolit.fr/observations/observation-108566/,Tritia mutabilis,Noisette de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a093c6f124e6a8714c612dae65b3c93f/2025/11/IMG_20250530_152845-scaled.jpg,,,Identifiable +N1,108569,Sortie #108569,https://biolit.fr/sorties/sortie-108569/,cloarec gisèle,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0a7e3e8c90bad55b44019f07a3da5a4b/2025/11/20251102_145925-scaled.jpg,11/02/2025,15.0000000,15.0:45,48.4278120000000,-4.78625400000000,,Trézien (Plouarzel),,,,,,,,,, +N1,108571,Sortie #108571,https://biolit.fr/sorties/sortie-108571/,POCHAT FLORENT,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d2d6e9462ecf867e5a52be19607d655c/2025/11/IMG_3595-scaled.jpeg,11/02/2025,15.000003,17.000004,47.7102620000000,-3.34743100000000,Escale Bretagne,Port Louis plage du LOHIC,108572,Observation #108572,https://biolit.fr/observations/observation-108572/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d2d6e9462ecf867e5a52be19607d655c/2025/11/IMG_3595-scaled.jpeg,,TRUE,Identifiable +N1,108575,Sortie #108575,https://biolit.fr/sorties/sortie-108575/,POCHAT FLORENT,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d2d6e9462ecf867e5a52be19607d655c/2025/11/IMG_3596-scaled.jpeg,11/02/2025,16.0:11,17.0:11,47.7034290000000,-3.35481500000000,Escale Bretagne,Port Louis plage du LOHIC,,,,,,,,,, +N1,108577,Sortie #108577,https://biolit.fr/sorties/sortie-108577/,POCHAT FLORENT,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d2d6e9462ecf867e5a52be19607d655c/2025/11/IMG_3619-scaled.jpeg,11/02/2025,16.0:11,17.0:11,47.7034290000000,-3.35481500000000,Escale Bretagne,Port Louis plage du LOHIC,108578,Observation #108578,https://biolit.fr/observations/observation-108578/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d2d6e9462ecf867e5a52be19607d655c/2025/11/IMG_3619-scaled.jpeg,,,Ne sais pas +N1,108581,Sortie #108581,https://biolit.fr/sorties/sortie-108581/,POCHAT FLORENT,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d2d6e9462ecf867e5a52be19607d655c/2025/11/IMG_3617-scaled.jpeg,11/02/2025,16.0:17,17.0:17,47.704269000000,-3.35568200000000,Escale Bretagne,Port Louis plage du LOHIC,108582,Observation #108582,https://biolit.fr/observations/observation-108582/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d2d6e9462ecf867e5a52be19607d655c/2025/11/IMG_3617-scaled.jpeg,,TRUE,Ne sais pas +N1,108585,Sortie #108585,https://biolit.fr/sorties/sortie-108585/,POCHAT FLORENT,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d2d6e9462ecf867e5a52be19607d655c/2025/11/IMG_3617-1-scaled.jpeg,11/02/2025,16.0:21,17.0000000,47.7042390000000,-3.35575500000000,Escale Bretagne,Port Louis plage du LOHIC,108586,Observation #108586,https://biolit.fr/?post_type=observations&p=108586,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d2d6e9462ecf867e5a52be19607d655c/2025/11/IMG_3617-1-scaled.jpeg,,, +N1,108585,Sortie #108585,https://biolit.fr/sorties/sortie-108585/,POCHAT FLORENT,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d2d6e9462ecf867e5a52be19607d655c/2025/11/IMG_3617-1-scaled.jpeg,11/02/2025,16.0:21,17.0000000,47.7042390000000,-3.35575500000000,Escale Bretagne,Port Louis plage du LOHIC,108588,Observation #108588,https://biolit.fr/?post_type=observations&p=108588,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d2d6e9462ecf867e5a52be19607d655c/2025/11/IMG_3617-1-scaled.jpeg,,,Ne sais pas +N1,108592,Sortie #108592,https://biolit.fr/sorties/sortie-108592/,POCHAT FLORENT,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d2d6e9462ecf867e5a52be19607d655c/2025/11/IMG_3597-scaled.jpeg,11/02/2025,16.000004,17.0:23,48.0466900000000,-2.73339800000000,Escale Bretagne,Port Louis plage du LOHIC,108593,Observation #108593,https://biolit.fr/observations/observation-108593/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d2d6e9462ecf867e5a52be19607d655c/2025/11/IMG_3597-scaled.jpeg,,FALSE,Ne sais pas +N1,108597,Sortie #108597,https://biolit.fr/sorties/sortie-108597/,POCHAT FLORENT,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d2d6e9462ecf867e5a52be19607d655c/2025/11/IMG_3600-scaled.jpeg,11/02/2025,16.0:28,0.0:22,47.7042710000000,-3.35564800000000,Escale Bretagne,Port Louis plage du LOHIC,108598,Observation #108598,https://biolit.fr/observations/observation-108598/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d2d6e9462ecf867e5a52be19607d655c/2025/11/IMG_3600-scaled.jpeg,,,Ne sais pas +N1,108641,Sortie #108641,https://biolit.fr/sorties/sortie-108641/,RAVERTA Mariano,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0067-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0068-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0069-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0070-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0072-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0076-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0079-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0103-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0104-1-scaled.jpg,10/09/2025,14.0000000,18.0000000,44.656817,-1.239036,,Cap Ferret,108642,Observation #108642,https://biolit.fr/observations/observation-108642/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0067-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0068-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0069-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0070-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0072-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0079-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0076-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0103-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0104-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0102-scaled.jpg,,,Ne sais pas +N1,108641,Sortie #108641,https://biolit.fr/sorties/sortie-108641/,RAVERTA Mariano,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0066-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0067-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0068-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0069-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0070-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0072-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0073-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0074-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0075-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0076-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0077-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0078-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0079-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0080-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0102-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0103-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0104-1-scaled.jpg,10/09/2025,14.0000000,18.0000000,44.656817,-1.239036,,Cap Ferret,108645,Observation #108645,https://biolit.fr/observations/observation-108645/,Eriocheir sinensis,Crabe chinois à mitaines,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0068-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0069-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0070-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0071-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d545ba3f150932bd0c86ddca494b7b19/2025/11/DSC_0072-scaled.jpg,,,Identifiable +N1,108717,Sortie #108717,https://biolit.fr/sorties/sortie-108717/,Groupe Associatif Estuaire,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135624-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135848-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135934-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_140937-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141002-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141017-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141037-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141047-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141058-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120254-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120256-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120258-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120262-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120263-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120264-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120266-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120267-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120268-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120269-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120271-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120272-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120274-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120277-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/Zone-1-K1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/Zone-1-K1-N2-1-scaled.jpg,8/13/2025 0:00,13.0000000,15.0000000,46.435112,-1.66685,Groupe Associatif Estuaire (Association Estuaire),Anse de la République,108718,Observation #108718,https://biolit.fr/observations/observation-108718/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135848-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135934-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_140937-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141002-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141037-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141047-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120254-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120256-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120258-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120262-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120263-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120272-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120277-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/Zone-1-K1-N2-1-scaled.jpg,,,Identifiable +N1,108717,Sortie #108717,https://biolit.fr/sorties/sortie-108717/,Groupe Associatif Estuaire,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135624-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135848-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135934-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_140937-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141002-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141017-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141037-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141047-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141058-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120254-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120256-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120258-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120262-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120263-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120264-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120266-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120267-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120268-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120269-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120271-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120272-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120274-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120277-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/Zone-1-K1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/Zone-1-K1-N2-1-scaled.jpg,8/13/2025 0:00,13.0000000,15.0000000,46.435112,-1.66685,Groupe Associatif Estuaire (Association Estuaire),Anse de la République,108720,Observation #108720,https://biolit.fr/?post_type=observations&p=108720,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135934-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120272-1-scaled.jpg,,,Identifiable +N1,108717,Sortie #108717,https://biolit.fr/sorties/sortie-108717/,Groupe Associatif Estuaire,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135624-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135848-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135934-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_140937-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141002-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141017-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141037-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141047-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141058-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120254-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120256-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120258-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120262-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120263-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120264-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120266-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120267-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120268-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120269-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120271-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120272-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120274-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120277-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/Zone-1-K1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/Zone-1-K1-N2-1-scaled.jpg,8/13/2025 0:00,13.0000000,15.0000000,46.435112,-1.66685,Groupe Associatif Estuaire (Association Estuaire),Anse de la République,108722,Observation #108722,https://biolit.fr/?post_type=observations&p=108722,Steromphala umbilicalis,Gibbule ombiliquée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_140937-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120254-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120256-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120258-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120262-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120263-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120277-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/Zone-1-K1-N2-1-scaled.jpg,,,Identifiable +N1,108717,Sortie #108717,https://biolit.fr/sorties/sortie-108717/,Groupe Associatif Estuaire,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135624-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135848-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135934-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_140937-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141002-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141017-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141037-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141047-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141058-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120254-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120256-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120258-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120262-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120263-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120264-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120266-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120267-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120268-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120269-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120271-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120272-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120274-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120277-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/Zone-1-K1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/Zone-1-K1-N2-1-scaled.jpg,8/13/2025 0:00,13.0000000,15.0000000,46.435112,-1.66685,Groupe Associatif Estuaire (Association Estuaire),Anse de la République,108724,Observation #108724,https://biolit.fr/?post_type=observations&p=108724,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141002-1-scaled.jpg,,,Identifiable +N1,108717,Sortie #108717,https://biolit.fr/sorties/sortie-108717/,Groupe Associatif Estuaire,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135624-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135848-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135934-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_140937-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141002-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141017-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141037-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141047-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141058-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120254-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120256-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120258-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120262-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120263-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120264-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120266-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120267-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120268-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120269-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120271-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120272-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120274-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120277-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/Zone-1-K1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/Zone-1-K1-N2-1-scaled.jpg,8/13/2025 0:00,13.0000000,15.0000000,46.435112,-1.66685,Groupe Associatif Estuaire (Association Estuaire),Anse de la République,108726,Observation #108726,https://biolit.fr/observations/observation-108726/,Austrominius modestus,Balane croix de Malte,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141037-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141047-1-scaled.jpg,,,Identifiable +N1,108717,Sortie #108717,https://biolit.fr/sorties/sortie-108717/,Groupe Associatif Estuaire,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135624-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135848-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_135934-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_140937-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141002-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141017-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141037-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141047-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141058-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120254-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120256-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120258-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120262-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120263-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120264-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120266-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120267-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120268-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120269-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120271-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120272-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120274-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/P1120277-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/Zone-1-K1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/Zone-1-K1-N2-1-scaled.jpg,8/13/2025 0:00,13.0000000,15.0000000,46.435112,-1.66685,Groupe Associatif Estuaire (Association Estuaire),Anse de la République,108728,Observation #108728,https://biolit.fr/observations/observation-108728/,Sabellaria alveolata,Hermelle,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/867a1e456608e29bb39243b3aff8fdb8/2025/11/20250813_141017-1-scaled.jpg,,,Identifiable +N1,108730,Sortie #108730,https://biolit.fr/sorties/sortie-108730/,Observe la nature,,11/03/2025,16.0000000,16.0:29,45.5495720000000,-1.09542500000000,Observe la nature,Soulac sur mer,,,,,,,,,, +N1,108732,Sortie #108732,https://biolit.fr/sorties/sortie-108732/,Observe la nature,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6737384134b446c20bfdfec199a5df9a/2025/11/20251103_171434-scaled.jpg,11/03/2025,16.0000000,16.0000000,45.5315810000000,-1.11142200000000,Observe la nature,Soulac sur mer,108733,Observation #108733,https://biolit.fr/observations/observation-108733/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/6737384134b446c20bfdfec199a5df9a/2025/11/20251103_171434-scaled.jpg,,,Ne sais pas +N1,108743,Sortie #108743,https://biolit.fr/sorties/sortie-108743/,LE JALLE NORIG,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_143646736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144051736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144101188-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144133175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144145194-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144204316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144328093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_145005853-scaled.jpg,11/03/2025,14.0000000,17.0000000,43.483856,-1.562935,,Biarritz,108744,Observation #108744,https://biolit.fr/observations/observation-108744/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_143646736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144051736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144101188-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144133175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144145194-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144204316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144328093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_145005853-scaled.jpg,,,Ne sais pas +N1,108743,Sortie #108743,https://biolit.fr/sorties/sortie-108743/,LE JALLE NORIG,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_143646736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144051736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144101188-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144133175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144145194-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144204316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144328093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_145005853-scaled.jpg,11/03/2025,14.0000000,17.0000000,43.483856,-1.562935,,Biarritz,108746,Observation #108746,https://biolit.fr/observations/observation-108746/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144051736-scaled.jpg,,TRUE,Ne sais pas +N1,108743,Sortie #108743,https://biolit.fr/sorties/sortie-108743/,LE JALLE NORIG,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_143646736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144051736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144101188-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144133175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144145194-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144204316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144328093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_145005853-scaled.jpg,11/03/2025,14.0000000,17.0000000,43.483856,-1.562935,,Biarritz,108748,Observation #108748,https://biolit.fr/observations/observation-108748/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144101188-scaled.jpg,,TRUE,Ne sais pas +N1,108743,Sortie #108743,https://biolit.fr/sorties/sortie-108743/,LE JALLE NORIG,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_143646736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144051736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144101188-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144133175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144145194-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144204316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144328093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_145005853-scaled.jpg,11/03/2025,14.0000000,17.0000000,43.483856,-1.562935,,Biarritz,108750,Observation #108750,https://biolit.fr/observations/observation-108750/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144133175-scaled.jpg,,,Ne sais pas +N1,108743,Sortie #108743,https://biolit.fr/sorties/sortie-108743/,LE JALLE NORIG,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_143646736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144051736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144101188-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144133175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144145194-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144204316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144328093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_145005853-scaled.jpg,11/03/2025,14.0000000,17.0000000,43.483856,-1.562935,,Biarritz,108752,Observation #108752,https://biolit.fr/observations/observation-108752/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144145194-scaled.jpg,,,Ne sais pas +N1,108743,Sortie #108743,https://biolit.fr/sorties/sortie-108743/,LE JALLE NORIG,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_143646736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144051736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144101188-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144133175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144145194-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144204316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144328093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_145005853-scaled.jpg,11/03/2025,14.0000000,17.0000000,43.483856,-1.562935,,Biarritz,108754,Observation #108754,https://biolit.fr/observations/observation-108754/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144204316-scaled.jpg,,,Ne sais pas +N1,108743,Sortie #108743,https://biolit.fr/sorties/sortie-108743/,LE JALLE NORIG,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_143646736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144051736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144101188-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144133175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144145194-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144204316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144328093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_145005853-scaled.jpg,11/03/2025,14.0000000,17.0000000,43.483856,-1.562935,,Biarritz,108756,Observation #108756,https://biolit.fr/observations/observation-108756/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144328093-scaled.jpg,,TRUE,Ne sais pas +N1,108743,Sortie #108743,https://biolit.fr/sorties/sortie-108743/,LE JALLE NORIG,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_143646736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144051736-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144101188-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144133175-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144145194-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144204316-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_144328093-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_145005853-scaled.jpg,11/03/2025,14.0000000,17.0000000,43.483856,-1.562935,,Biarritz,108758,Observation #108758,https://biolit.fr/observations/observation-108758/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d43aa760f09fb6d2f33772a3010facc3/2025/11/PXL_20251103_145005853-scaled.jpg,,,non-identifiable +N1,108796,Sortie #108796,https://biolit.fr/sorties/sortie-108796/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-scaled.jpg,10/16/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.846604000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108797,Observation #108797,https://biolit.fr/observations/observation-108797/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-2-scaled.jpg,,,non-identifiable +N1,108796,Sortie #108796,https://biolit.fr/sorties/sortie-108796/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-scaled.jpg,10/16/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.846604000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108799,Observation #108799,https://biolit.fr/observations/observation-108799/,Doris pseudoargus,Citron de mer,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-3-scaled.jpg,,TRUE,Identifiable +N1,108796,Sortie #108796,https://biolit.fr/sorties/sortie-108796/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-scaled.jpg,10/16/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.846604000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108801,Observation #108801,https://biolit.fr/observations/observation-108801/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-scaled.jpg,,TRUE,Identifiable +N1,108796,Sortie #108796,https://biolit.fr/sorties/sortie-108796/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-scaled.jpg,10/16/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.846604000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108803,Observation #108803,https://biolit.fr/observations/observation-108803/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-scaled.jpg,,TRUE,Identifiable +N1,108796,Sortie #108796,https://biolit.fr/sorties/sortie-108796/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-scaled.jpg,10/16/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.846604000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108805,Observation #108805,https://biolit.fr/observations/observation-108805/,Crangon crangon,Crevette grise européenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-scaled.jpg,,,Identifiable +N1,108796,Sortie #108796,https://biolit.fr/sorties/sortie-108796/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-scaled.jpg,10/16/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.846604000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108807,Observation #108807,https://biolit.fr/observations/observation-108807/,Eulalia clavigera,Eulalie,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-2-scaled.jpg,,TRUE,Identifiable +N1,108796,Sortie #108796,https://biolit.fr/sorties/sortie-108796/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-scaled.jpg,10/16/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.846604000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108809,Observation #108809,https://biolit.fr/observations/observation-108809/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-2-scaled.jpg,,TRUE,Identifiable +N1,108796,Sortie #108796,https://biolit.fr/sorties/sortie-108796/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-scaled.jpg,10/16/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.846604000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108811,Observation #108811,https://biolit.fr/observations/observation-108811/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-scaled.jpg,,TRUE,Identifiable +N1,108796,Sortie #108796,https://biolit.fr/sorties/sortie-108796/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-scaled.jpg,10/16/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.846604000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108813,Observation #108813,https://biolit.fr/observations/observation-108813/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-scaled.jpg,,TRUE,Identifiable +N1,108796,Sortie #108796,https://biolit.fr/sorties/sortie-108796/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-scaled.jpg,10/16/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.846604000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108815,Observation #108815,https://biolit.fr/observations/observation-108815/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-2-scaled.jpg,,TRUE,Identifiable +N1,108796,Sortie #108796,https://biolit.fr/sorties/sortie-108796/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-scaled.jpg,10/16/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.846604000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108817,Observation #108817,https://biolit.fr/observations/observation-108817/,Hediste diversicolor,Néréis multicolore,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-2-scaled.jpg,,TRUE,Identifiable +N1,108796,Sortie #108796,https://biolit.fr/sorties/sortie-108796/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-scaled.jpg,10/16/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.846604000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108819,Observation #108819,https://biolit.fr/observations/observation-108819/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/palourde-scaled.jpg,,,Identifiable +N1,108796,Sortie #108796,https://biolit.fr/sorties/sortie-108796/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Citron-de-mer-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eulalia-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibbule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nereis-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/palourde-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-scaled.jpg,10/16/2025 0:00,10.0000000,11.0000000,48.7025780000000,-1.846604000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108821,Observation #108821,https://biolit.fr/observations/observation-108821/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-scaled.jpg,,TRUE,Identifiable +N1,108859,Sortie #108859,https://biolit.fr/sorties/sortie-108859/,YAHIAOUI Sofiane,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0573-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0574-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0575-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0576-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0578-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0579-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0580-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0581-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0582-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0583-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0589-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0590-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0591-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0592-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0593-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0594-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0595-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0596-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0597-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0598-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0599-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0600-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0601-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0602-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0603-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0604-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0605-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0606-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0607-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0608-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0609-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0610-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0611-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0612-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c3d7ea2548cb8e7c9976c9b4d5c62555/2025/11/IMG_0613-scaled.jpg,8/26/2025 0:00,9.0:47,16.0:47,49.6466660000000,0.153709000000000,,st jouin,,,,,,,,,, +N1,108962,Sortie #108962,https://biolit.fr/sorties/sortie-108962/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-ideterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-de-san-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/nereis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Sacculine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-scaled.jpg,11/04/2025,10.0000000,11.0000000,48.7025210000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108963,Observation #108963,https://biolit.fr/observations/observation-108963/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-ideterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-indeterminee-2-scaled.jpg,,,Ne sais pas +N1,108962,Sortie #108962,https://biolit.fr/sorties/sortie-108962/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-ideterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-de-san-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/nereis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Sacculine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-scaled.jpg,11/04/2025,10.0000000,11.0000000,48.7025210000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108965,Observation #108965,https://biolit.fr/observations/observation-108965/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-2-scaled.jpg,,,Identifiable +N1,108962,Sortie #108962,https://biolit.fr/sorties/sortie-108962/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-ideterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-de-san-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/nereis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Sacculine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-scaled.jpg,11/04/2025,10.0000000,11.0000000,48.7025210000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108967,Observation #108967,https://biolit.fr/observations/observation-108967/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-2-scaled.jpg,,TRUE,Identifiable +N1,108962,Sortie #108962,https://biolit.fr/sorties/sortie-108962/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-ideterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-de-san-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/nereis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Sacculine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-scaled.jpg,11/04/2025,10.0000000,11.0000000,48.7025210000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108969,Observation #108969,https://biolit.fr/observations/observation-108969/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-scaled.jpg,,TRUE,Identifiable +N1,108962,Sortie #108962,https://biolit.fr/sorties/sortie-108962/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-ideterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-de-san-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/nereis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Sacculine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-scaled.jpg,11/04/2025,10.0000000,11.0000000,48.7025210000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108971,Observation #108971,https://biolit.fr/observations/observation-108971/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-scaled.jpg,,TRUE,Identifiable +N1,108962,Sortie #108962,https://biolit.fr/sorties/sortie-108962/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-ideterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-de-san-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/nereis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Sacculine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-scaled.jpg,11/04/2025,10.0000000,11.0000000,48.7025210000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108973,Observation #108973,https://biolit.fr/observations/observation-108973/,Botrylloides diegensis,Botrylle de San Diego,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-de-san-diego-scaled.jpg,,,Identifiable +N1,108962,Sortie #108962,https://biolit.fr/sorties/sortie-108962/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-ideterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-de-san-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/nereis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Sacculine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-scaled.jpg,11/04/2025,10.0000000,11.0000000,48.7025210000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108975,Observation #108975,https://biolit.fr/observations/observation-108975/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-scaled.jpg,,TRUE,Identifiable +N1,108962,Sortie #108962,https://biolit.fr/sorties/sortie-108962/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-ideterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-de-san-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/nereis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Sacculine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-scaled.jpg,11/04/2025,10.0000000,11.0000000,48.7025210000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108977,Observation #108977,https://biolit.fr/observations/observation-108977/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-1-scaled.jpg,,TRUE,Identifiable +N1,108962,Sortie #108962,https://biolit.fr/sorties/sortie-108962/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-ideterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-de-san-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/nereis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Sacculine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-scaled.jpg,11/04/2025,10.0000000,11.0000000,48.7025210000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108979,Observation #108979,https://biolit.fr/observations/observation-108979/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/moule-scaled.jpg,,TRUE,Identifiable +N1,108962,Sortie #108962,https://biolit.fr/sorties/sortie-108962/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-ideterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-de-san-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/nereis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Sacculine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-scaled.jpg,11/04/2025,10.0000000,11.0000000,48.7025210000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108981,Observation #108981,https://biolit.fr/observations/observation-108981/,Hediste diversicolor,Néréis multicolore,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/nereis-1-1-scaled.jpg,,TRUE,Identifiable +N1,108962,Sortie #108962,https://biolit.fr/sorties/sortie-108962/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-ideterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-de-san-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/nereis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Sacculine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-scaled.jpg,11/04/2025,10.0000000,11.0000000,48.7025210000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108983,Observation #108983,https://biolit.fr/observations/observation-108983/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-2-scaled.jpg,,,Identifiable +N1,108962,Sortie #108962,https://biolit.fr/sorties/sortie-108962/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-ideterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-de-san-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/nereis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Sacculine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-scaled.jpg,11/04/2025,10.0000000,11.0000000,48.7025210000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108985,Observation #108985,https://biolit.fr/observations/observation-108985/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/porcellane-scaled.jpg,,TRUE,Identifiable +N1,108962,Sortie #108962,https://biolit.fr/sorties/sortie-108962/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-ideterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-de-san-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/nereis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Sacculine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-scaled.jpg,11/04/2025,10.0000000,11.0000000,48.7025210000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108987,Observation #108987,https://biolit.fr/observations/observation-108987/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-2-scaled.jpg,,TRUE,Identifiable +N1,108962,Sortie #108962,https://biolit.fr/sorties/sortie-108962/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-ideterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-de-san-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/nereis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Sacculine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-scaled.jpg,11/04/2025,10.0000000,11.0000000,48.7025210000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108989,Observation #108989,https://biolit.fr/observations/observation-108989/,Sacculina carcini,Sacculine du crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Sacculine-scaled.jpg,,TRUE,Identifiable +N1,108962,Sortie #108962,https://biolit.fr/sorties/sortie-108962/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-ideterminee-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-indeterminee-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anguille-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-de-san-diego-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/moule-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/nereis-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ophiure-fragile-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/porcellane-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/pourpre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Sacculine-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-scaled.jpg,11/04/2025,10.0000000,11.0000000,48.7025210000000,-1.84719200000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,108991,Observation #108991,https://biolit.fr/observations/observation-108991/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-scaled.jpg,,TRUE,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109016,Observation #109016,https://biolit.fr/observations/observation-109016/,Calliactis parasitica,Anémone parasite,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg,,,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109018,Observation #109018,https://biolit.fr/observations/observation-109018/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg,,TRUE,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109020,Observation #109020,https://biolit.fr/observations/observation-109020/,Anemonia viridis,Anémone de mer verte,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg,,TRUE,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109022,Observation #109022,https://biolit.fr/observations/observation-109022/,Asterina gibbosa,Astérie bossue,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg,,TRUE,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109024,Observation #109024,https://biolit.fr/observations/observation-109024/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg,,TRUE,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109026,Observation #109026,https://biolit.fr/observations/observation-109026/,Ocenebra erinaceus,Bigorneau perceur,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg,,TRUE,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109028,Observation #109028,https://biolit.fr/observations/observation-109028/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg,,TRUE,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109030,Observation #109030,https://biolit.fr/observations/observation-109030/,Botrylloides spp. (leachii violaceus diegensis),Botrylles,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg,,TRUE,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109032,Observation #109032,https://biolit.fr/observations/observation-109032/,Lepidochitona (Lepidochitona) cinerea,Chiton cendré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg,,,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109034,Observation #109034,https://biolit.fr/observations/observation-109034/,Ciona intestinalis,Cione intestinale,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg,,,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109036,Observation #109036,https://biolit.fr/observations/observation-109036/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg,,TRUE,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109038,Observation #109038,https://biolit.fr/observations/observation-109038/,Xantho hydrophilus,Crabe de pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg,,TRUE,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109040,Observation #109040,https://biolit.fr/observations/observation-109040/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg,,TRUE,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109042,Observation #109042,https://biolit.fr/observations/observation-109042/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg,,,Ne sais pas +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109044,Observation #109044,https://biolit.fr/observations/observation-109044/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg,,TRUE,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109046,Observation #109046,https://biolit.fr/observations/observation-109046/,Nerophis ophidion,Nérophis ophidion,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg,,,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109048,Observation #109048,https://biolit.fr/observations/observation-109048/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg,,TRUE,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109050,Observation #109050,https://biolit.fr/observations/observation-109050/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg,,TRUE,Identifiable +N1,109015,Sortie #109015,https://biolit.fr/sorties/sortie-109015/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-parasite-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/anemone-solaire-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-verte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/asterie-bossue-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/bigorneau-perceur-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-perceur-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-etoile-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Botrylle-leachi-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Chiton-cendre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-pierre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-vert-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/eponge-ornage-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/huitre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nephtis-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/ponte-de-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-et-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,11/06/2025,15.0000000,16.0000000,48.7025180000000,-1.84714600000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109052,Observation #109052,https://biolit.fr/observations/observation-109052/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/tomate-de-mer-1-scaled.jpg,,TRUE,Identifiable +N1,109065,Sortie #109065,https://biolit.fr/sorties/sortie-109065/,Marie Claude GOUIN,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e98b497a9c25303f40702ab429f57337/2025/11/IMG_0322-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e98b497a9c25303f40702ab429f57337/2025/11/IMG_0319-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e98b497a9c25303f40702ab429f57337/2025/11/IMG_0321-scaled.jpeg,11/09/2025,9.0000000,10.0:15,48.1945720000000,-4.0869140000,,LOCTUDY,,,,,,,,,, +N1,109070,Sortie #109070,https://biolit.fr/sorties/sortie-109070/,Philippe Feron,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c9b0496b455c2a9c0c8f7d3c5af3d7c4/2025/11/20251109_111808-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c9b0496b455c2a9c0c8f7d3c5af3d7c4/2025/11/20251109_111812-1-scaled.jpg,11/09/2025,10.0000000,12.000003,47.5706910000000,-3.05422100000000,,Plage de la guerite,,,,,,,,,, +N1,109166,Sortie #109166,https://biolit.fr/sorties/sortie-109166/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2467-2-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32118,0.35572,,Luc sur mer,109167,Observation #109167,https://biolit.fr/observations/observation-109167/,Crepidula fornicata,Crépidule,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2467-2-scaled.jpg,,TRUE,Identifiable +N1,109179,Sortie #109179,https://biolit.fr/sorties/sortie-109179/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2476-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2478-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2481-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2482-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2484-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2489-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2490-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2495-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2500-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2502-1-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32385,0.36218,,Langrune,109180,Observation #109180,https://biolit.fr/observations/observation-109180/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2476-1-scaled.jpg,,FALSE, +N1,109179,Sortie #109179,https://biolit.fr/sorties/sortie-109179/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2476-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2478-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2481-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2482-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2484-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2489-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2490-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2495-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2500-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2502-1-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32385,0.36218,,Langrune,109182,Observation #109182,https://biolit.fr/observations/observation-109182/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2481-1-scaled.jpg,,TRUE,Identifiable +N1,109179,Sortie #109179,https://biolit.fr/sorties/sortie-109179/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2476-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2478-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2481-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2482-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2484-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2489-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2490-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2495-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2500-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2502-1-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32385,0.36218,,Langrune,109184,Observation #109184,https://biolit.fr/observations/observation-109184/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2478-1-scaled.jpg,,TRUE,non-identifiable +N1,109179,Sortie #109179,https://biolit.fr/sorties/sortie-109179/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2476-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2478-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2481-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2482-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2484-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2489-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2490-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2495-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2500-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2502-1-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32385,0.36218,,Langrune,109186,Observation #109186,https://biolit.fr/observations/observation-109186/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2482-1-scaled.jpg,,FALSE,Ne sais pas +N1,109179,Sortie #109179,https://biolit.fr/sorties/sortie-109179/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2476-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2478-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2481-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2482-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2484-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2489-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2490-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2495-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2500-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2502-1-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32385,0.36218,,Langrune,109188,Observation #109188,https://biolit.fr/observations/observation-109188/,Raja clavata,Raie bouclée,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2484-1-scaled.jpg,,TRUE,Ne sais pas +N1,109179,Sortie #109179,https://biolit.fr/sorties/sortie-109179/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2476-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2478-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2481-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2482-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2484-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2489-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2490-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2495-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2500-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2502-1-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32385,0.36218,,Langrune,109190,Observation #109190,https://biolit.fr/observations/observation-109190/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2489-1-scaled.jpg,,FALSE,Ne sais pas +N1,109179,Sortie #109179,https://biolit.fr/sorties/sortie-109179/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2476-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2478-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2481-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2482-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2484-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2489-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2490-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2495-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2500-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2502-1-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32385,0.36218,,Langrune,109192,Observation #109192,https://biolit.fr/observations/observation-109192/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2495-1-scaled.jpg,,FALSE,Ne sais pas +N1,109179,Sortie #109179,https://biolit.fr/sorties/sortie-109179/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2476-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2478-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2481-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2482-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2484-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2489-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2490-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2495-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2500-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2502-1-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32385,0.36218,,Langrune,109727,Observation #109727,https://biolit.fr/observations/observation-109727/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2502-1-scaled.jpg,,FALSE,Ne sais pas +N1,109179,Sortie #109179,https://biolit.fr/sorties/sortie-109179/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2476-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2478-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2481-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2482-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2484-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2489-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2490-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2495-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2500-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2502-1-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32385,0.36218,,Langrune,109729,Observation #109729,https://biolit.fr/observations/observation-109729/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2500-1-scaled.jpg,,TRUE,Ne sais pas +N1,109179,Sortie #109179,https://biolit.fr/sorties/sortie-109179/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2476-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2478-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2481-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2482-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2484-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2489-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2490-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2495-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2500-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2502-1-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32385,0.36218,,Langrune,109731,Observation #109731,https://biolit.fr/observations/observation-109731/,Ophiothrix fragilis,Ophiure fragile,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2490-1-scaled.jpg,,TRUE,Ne sais pas +N1,109197,Sortie #109197,https://biolit.fr/sorties/sortie-109197/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2507-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2514-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2516-1-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32193,0.35568,,Luc sur mer,109198,Observation #109198,https://biolit.fr/observations/observation-109198/,Patella sp.,Patelle,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2507-1-scaled.jpg,,TRUE,Ne sais pas +N1,109197,Sortie #109197,https://biolit.fr/sorties/sortie-109197/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2507-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2514-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2516-1-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32193,0.35568,,Luc sur mer,109200,Observation #109200,https://biolit.fr/observations/observation-109200/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2514-1-scaled.jpg,,FALSE,Ne sais pas +N1,109197,Sortie #109197,https://biolit.fr/sorties/sortie-109197/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2507-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2514-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2516-1-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32193,0.35568,,Luc sur mer,109202,Observation #109202,https://biolit.fr/?post_type=observations&p=109202,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2514-1-scaled.jpg,,, +N1,109197,Sortie #109197,https://biolit.fr/sorties/sortie-109197/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2507-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2514-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2516-1-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32193,0.35568,,Luc sur mer,109204,Observation #109204,https://biolit.fr/observations/observation-109204/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2516-1-scaled.jpg,,FALSE,Ne sais pas +N1,109206,Sortie #109206,https://biolit.fr/sorties/sortie-109206/,Myriam GOURMAND-ARNAUD,,11/09/2025,14.0000000,17.0000000,49.32193,0.35568,,Luc sur mer,,,,,,,,,, +N1,109210,Sortie #109210,https://biolit.fr/sorties/sortie-109210/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2507-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2514-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2516-2-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32193,0.35568,,Luc sur mer,109211,Observation #109211,https://biolit.fr/?post_type=observations&p=109211,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2507-2-scaled.jpg,,,Ne sais pas +N1,109210,Sortie #109210,https://biolit.fr/sorties/sortie-109210/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2507-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2514-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2516-2-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32193,0.35568,,Luc sur mer,109213,Observation #109213,https://biolit.fr/?post_type=observations&p=109213,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2514-2-scaled.jpg,,,Ne sais pas +N1,109210,Sortie #109210,https://biolit.fr/sorties/sortie-109210/,Myriam GOURMAND-ARNAUD,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2507-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2514-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2516-2-scaled.jpg,11/09/2025,14.0000000,17.0000000,49.32193,0.35568,,Luc sur mer,109215,Observation #109215,https://biolit.fr/?post_type=observations&p=109215,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ad43166d9ed494b1e0c91bad3475ed61/2025/11/IMG_2516-2-scaled.jpg,,,Ne sais pas +N1,109223,Sortie #109223,https://biolit.fr/sorties/sortie-109223/,Dominique ROUSSEAU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f7e5c8afb376e528e9a29d4ad7143963/2025/11/IMG_20251110_173135-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f7e5c8afb376e528e9a29d4ad7143963/2025/11/IMG_20251110_173105-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f7e5c8afb376e528e9a29d4ad7143963/2025/11/IMG_20251110_173043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f7e5c8afb376e528e9a29d4ad7143963/2025/11/IMG_20251110_173021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f7e5c8afb376e528e9a29d4ad7143963/2025/11/IMG_20251110_172958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f7e5c8afb376e528e9a29d4ad7143963/2025/11/IMG_20251110_172916-scaled.jpg,11/10/2025,5.0:24,5.0:35,47.7849710000000,-3.69306700000000,,Moelan sur mer Kerliguet,109224,Observation #109224,https://biolit.fr/observations/observation-109224/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f7e5c8afb376e528e9a29d4ad7143963/2025/11/IMG_20251110_173135-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f7e5c8afb376e528e9a29d4ad7143963/2025/11/IMG_20251110_173043-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f7e5c8afb376e528e9a29d4ad7143963/2025/11/IMG_20251110_173021-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f7e5c8afb376e528e9a29d4ad7143963/2025/11/IMG_20251110_172958-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f7e5c8afb376e528e9a29d4ad7143963/2025/11/IMG_20251110_172916-scaled.jpg,,TRUE,Identifiable +N1,109229,Sortie #109229,https://biolit.fr/sorties/sortie-109229/,Caroline Le Grand,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e2d3bc0d96dbc3444e21e9754e7cbd58/2025/11/8ba73a15-906e-4964-ab3b-01450beef092.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e2d3bc0d96dbc3444e21e9754e7cbd58/2025/11/ff011ab9-a451-47bc-9e68-95ddd44546ff.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e2d3bc0d96dbc3444e21e9754e7cbd58/2025/11/bd38d6d2-201f-4c0d-b18c-73bc2259769e.jpeg,11/10/2025,9.0000000,22.0000000,47.796006000000,-3.81938000000000,,Kersidan,109230,Observation #109230,https://biolit.fr/observations/observation-109230/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e2d3bc0d96dbc3444e21e9754e7cbd58/2025/11/8ba73a15-906e-4964-ab3b-01450beef092.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e2d3bc0d96dbc3444e21e9754e7cbd58/2025/11/ff011ab9-a451-47bc-9e68-95ddd44546ff.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e2d3bc0d96dbc3444e21e9754e7cbd58/2025/11/bd38d6d2-201f-4c0d-b18c-73bc2259769e.jpeg,,TRUE,Identifiable +N1,109233,Sortie #109233,https://biolit.fr/sorties/sortie-109233/,Maëlle Lepetit,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a24e928c5a31e48eb7f294dac0823458/2025/11/3F217D08-B045-462D-BCBA-EB8F3191CEB8-scaled.jpeg,11/10/2025,15.0000000,15.0000000,47.8986510000000,-3.94872700000000,,Anse Saint Jean Concarneau,109234,Observation #109234,https://biolit.fr/observations/observation-109234/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a24e928c5a31e48eb7f294dac0823458/2025/11/3F217D08-B045-462D-BCBA-EB8F3191CEB8-scaled.jpeg,,TRUE,Identifiable +N1,109236,Sortie #109236,https://biolit.fr/sorties/sortie-109236/,Gwenaël PHILIPPE,,11/10/2025,16.0000000,16.0:45,47.788933,-3.671697,,plage Poulguen - Moelan-sur-Mer,,,,,,,,,, +N1,109238,Sortie #109238,https://biolit.fr/sorties/sortie-109238/,Gwenaël PHILIPPE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/2ffd001518bf57e1a8d35e3267decdad/2025/11/velelle.jpg,11/10/2025,16.0000000,16.0:45,47.788933,-3.671697,,plage Poulguen à Moelan-sur-Mer,,,,,,,,,, +N1,109239,Sortie #109239,https://biolit.fr/sorties/sortie-109239/,Laurent THIBAUDEAU,,11/10/2025,13.0000000,16.0000000,46.8744450000000,-2.15543500000000,,Plage de la grande côte,,,,,,,,,, +N1,109242,Sortie #109242,https://biolit.fr/sorties/sortie-109242/,Laure Mo,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4f9c71a137daef3ca4ecf73520ba097c/2025/11/IMG_3266-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4f9c71a137daef3ca4ecf73520ba097c/2025/11/IMG_3265-scaled.jpeg,11/10/2025,12.000005,12.000005,46.1964330000000,-1.44549500000000,,Plage de la couarde à l île de ré,109243,Observation #109243,https://biolit.fr/observations/observation-109243/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4f9c71a137daef3ca4ecf73520ba097c/2025/11/IMG_3266-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4f9c71a137daef3ca4ecf73520ba097c/2025/11/IMG_3265-scaled.jpeg,,TRUE,Identifiable +N1,109247,Sortie #109247,https://biolit.fr/sorties/sortie-109247/,Nelly Mansart,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/503c13d4f9cefe24df830e2cb5f4df66/2025/11/IMG_6077-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/503c13d4f9cefe24df830e2cb5f4df66/2025/11/IMG_6076-scaled.jpeg,11/11/2025,11.0000000,15.000007,47.5148960000000,-2.55226100000000,,Damgan,109248,Observation #109248,https://biolit.fr/observations/observation-109248/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/503c13d4f9cefe24df830e2cb5f4df66/2025/11/IMG_6077-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/503c13d4f9cefe24df830e2cb5f4df66/2025/11/IMG_6076-scaled.jpeg,,TRUE,Identifiable +N1,109251,Sortie #109251,https://biolit.fr/sorties/sortie-109251/,Olivier Dugast,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/19da0bdccd1bff93df7cf161f15efa8e/2025/11/IMG_0757-scaled.jpeg,11/11/2025,10.0:48,11.0:48,47.2633010000000,-2.4498440000000,CPIE Loire Oceane Environnement,Baie du Scall Le Pouliguen,109252,Observation #109252,https://biolit.fr/observations/observation-109252/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/19da0bdccd1bff93df7cf161f15efa8e/2025/11/IMG_0757-scaled.jpeg,,TRUE,Identifiable +N1,109254,Sortie #109254,https://biolit.fr/sorties/sortie-109254/,nicolas le coroller,,11/11/2025,10.0000000,12.0:15,47.6903740000000,-3.35186000000000,,Presqu'ile de Gavres,,,,,,,,,, +N1,109259,Sortie #109259,https://biolit.fr/sorties/sortie-109259/,Marie Claude GOUIN,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e98b497a9c25303f40702ab429f57337/2025/11/IMG_0331-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e98b497a9c25303f40702ab429f57337/2025/11/IMG_0329-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e98b497a9c25303f40702ab429f57337/2025/11/IMG_0334-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e98b497a9c25303f40702ab429f57337/2025/11/IMG_0335-scaled.jpeg,11/11/2025,10.0:34,16.0000000,47.8185580000000,-4.16519200000000,,LOCTUDY,,,,,,,,,, +N1,109262,Sortie #109262,https://biolit.fr/sorties/sortie-109262/,Christophe Duval,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/98d4eae984d5bbae591466419f162c5b/2025/11/IMG_8539-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/98d4eae984d5bbae591466419f162c5b/2025/11/IMG_8538-scaled.jpeg,11/12/2025,10.0000000,11.0000000,48.3460390000000,-4.71288300000000,,Plougonvelin,109263,Observation #109263,https://biolit.fr/observations/observation-109263/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/98d4eae984d5bbae591466419f162c5b/2025/11/IMG_8539-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/98d4eae984d5bbae591466419f162c5b/2025/11/IMG_8538-scaled.jpeg,,TRUE,Identifiable +N1,109293,Sortie #109293,https://biolit.fr/sorties/sortie-109293/,CHEVALIER MARIE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/15-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/14-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/13-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/12-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/11-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/10-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/9-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/8-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/7-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/5-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/4-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/3-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/1-1.jpg,10/30/2025 0:00,11.0000000,11.0000000,4757340,303255,,Men Du Carnac,109294,Observation #109294,https://biolit.fr/observations/observation-109294/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/15-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/14-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/13-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/12-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/11-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/10-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/9-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/1-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/2-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/3-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/4-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/5-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/7-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/74cc7cc5a78a3e912b9ab73590988ed2/2025/11/8-1.jpg,,,Ne sais pas +N1,109299,Sortie #109299,https://biolit.fr/sorties/sortie-109299/,Emmanuelle POUPON,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/95650c903a1c0386c833e231130edc35/2025/11/velelles.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/95650c903a1c0386c833e231130edc35/2025/11/physalis.jpeg,11/11/2025,11.0000000,12.0:15,48.3065820000000,-4.39819300000000,,Plage de Kerhornou,109300,Observation #109300,https://biolit.fr/?post_type=observations&p=109300,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/95650c903a1c0386c833e231130edc35/2025/11/velelles.jpeg,,,Identifiable +N1,109299,Sortie #109299,https://biolit.fr/sorties/sortie-109299/,Emmanuelle POUPON,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/95650c903a1c0386c833e231130edc35/2025/11/velelles.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/95650c903a1c0386c833e231130edc35/2025/11/physalis.jpeg,11/11/2025,11.0000000,12.0:15,48.3065820000000,-4.39819300000000,,Plage de Kerhornou,109302,Observation #109302,https://biolit.fr/?post_type=observations&p=109302,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/95650c903a1c0386c833e231130edc35/2025/11/physalis.jpeg,,,Identifiable +N1,109306,Sortie #109306,https://biolit.fr/sorties/sortie-109306/,Emmanuelle POUPON,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/95650c903a1c0386c833e231130edc35/2025/11/physalis-scaled.jpg,11/11/2025,11.0000000,12.0:15,48.4060930000000,-4.77447500000000,,Plage de Kerhornou,109307,Observation #109307,https://biolit.fr/observations/observation-109307/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/95650c903a1c0386c833e231130edc35/2025/11/physalis-scaled.jpg,,TRUE,Identifiable +N1,109310,Sortie #109310,https://biolit.fr/sorties/sortie-109310/,Emmanuelle POUPON,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/95650c903a1c0386c833e231130edc35/2025/11/velelles-1-scaled.jpg,11/11/2025,11.0000000,12.0:15,48.4065120000000,-4.77547300000000,,Plage de Kerhornou,109311,Observation #109311,https://biolit.fr/observations/observation-109311/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/95650c903a1c0386c833e231130edc35/2025/11/velelles-1-scaled.jpg,,TRUE,Identifiable +N1,109357,Sortie #109357,https://biolit.fr/sorties/sortie-109357/,Julia Stanilovskaya,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_2003-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_2033-3-scaled.jpeg,7/25/2025 0:00,8.0:37,9.0:37,41.5245320000000,9.2724070000000,,Plage Santa Giulia,109358,Observation #109358,https://biolit.fr/observations/observation-109358/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_2003-2-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_2033-3-scaled.jpeg,,,Identifiable +N1,109361,Sortie #109361,https://biolit.fr/sorties/sortie-109361/,marie begkoyian,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/54116e944cfc73b0a9d83819d0b52a4a/2025/11/1000013104-scaled.jpg,11/12/2025,13.0:15,13.0000000,47.67625800000,-3.10932700000000,,Locmariaquer,109362,Observation #109362,https://biolit.fr/observations/observation-109362/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/54116e944cfc73b0a9d83819d0b52a4a/2025/11/1000013104-scaled.jpg,,TRUE,Identifiable +N1,109366,Sortie #109366,https://biolit.fr/sorties/sortie-109366/,Sabine Loeillot,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ca04ce3acaafb4287c982ae045ab9a0a/2025/11/IMG_7424-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ca04ce3acaafb4287c982ae045ab9a0a/2025/11/IMG_7423-scaled.jpeg,11/12/2025,12.000001,12.0:14,47.7997880000000,-4.30389400000000,,Penmarc’h,109367,Observation #109367,https://biolit.fr/observations/observation-109367/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ca04ce3acaafb4287c982ae045ab9a0a/2025/11/IMG_7424-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ca04ce3acaafb4287c982ae045ab9a0a/2025/11/IMG_7423-scaled.jpeg,,TRUE,Identifiable +N1,109371,Sortie #109371,https://biolit.fr/sorties/sortie-109371/,Lucie Vaillant,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d7bac26598f318af357cab63dfc89373/2025/11/IMG_0500-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d7bac26598f318af357cab63dfc89373/2025/11/IMG_0499-scaled.jpeg,11/10/2025,12.0000000,14.0000000,47.3878600000000,-3.25093100000000,,Phare des poulains Belle-Ile,109372,Observation #109372,https://biolit.fr/observations/observation-109372/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d7bac26598f318af357cab63dfc89373/2025/11/IMG_0500-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d7bac26598f318af357cab63dfc89373/2025/11/IMG_0499-scaled.jpeg,,TRUE,Identifiable +N1,109380,Sortie #109380,https://biolit.fr/sorties/sortie-109380/,Loumeaud Margot,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.49_a74d7a21.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.58_3c9b5f7a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.49_c4462d8a-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.58_a8f033df.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.39.05_da14dd79.jpg,10/22/2025 0:00,13.0000000,15.0000000,43.3362000000000,5.41714300000000,,Butte écologique St-Jérome,109381,Observation #109381,https://biolit.fr/observations/observation-109381/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.49_c4462d8a-1.jpg,,,Identifiable +N1,109380,Sortie #109380,https://biolit.fr/sorties/sortie-109380/,Loumeaud Margot,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.49_a74d7a21.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.58_3c9b5f7a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.49_c4462d8a-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.58_a8f033df.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.39.05_da14dd79.jpg,10/22/2025 0:00,13.0000000,15.0000000,43.3362000000000,5.41714300000000,,Butte écologique St-Jérome,109383,Observation #109383,https://biolit.fr/observations/observation-109383/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.49_a74d7a21.jpg,,,Identifiable +N1,109380,Sortie #109380,https://biolit.fr/sorties/sortie-109380/,Loumeaud Margot,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.49_a74d7a21.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.58_3c9b5f7a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.49_c4462d8a-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.58_a8f033df.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.39.05_da14dd79.jpg,10/22/2025 0:00,13.0000000,15.0000000,43.3362000000000,5.41714300000000,,Butte écologique St-Jérome,109385,Observation #109385,https://biolit.fr/observations/observation-109385/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.58_3c9b5f7a.jpg,,,Identifiable +N1,109380,Sortie #109380,https://biolit.fr/sorties/sortie-109380/,Loumeaud Margot,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.49_a74d7a21.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.58_3c9b5f7a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.49_c4462d8a-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.58_a8f033df.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.39.05_da14dd79.jpg,10/22/2025 0:00,13.0000000,15.0000000,43.3362000000000,5.41714300000000,,Butte écologique St-Jérome,109387,Observation #109387,https://biolit.fr/observations/observation-109387/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.39.05_da14dd79.jpg,,,Identifiable +N1,109380,Sortie #109380,https://biolit.fr/sorties/sortie-109380/,Loumeaud Margot,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.49_a74d7a21.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.58_3c9b5f7a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.49_c4462d8a-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.58_a8f033df.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.39.05_da14dd79.jpg,10/22/2025 0:00,13.0000000,15.0000000,43.3362000000000,5.41714300000000,,Butte écologique St-Jérome,109389,Observation #109389,https://biolit.fr/observations/observation-109389/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-09.38.58_a8f033df.jpg,,,Identifiable +N1,109396,Sortie #109396,https://biolit.fr/sorties/sortie-109396/,Loumeaud Margot,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-10.22.41_73bae43d.jpg,9/20/2025 0:00,9.0000000,12.0000000,43.2843420000000,5.31617400000000,Planète Mer,ile du Frioul,109397,Observation #109397,https://biolit.fr/observations/observation-109397/,Crithmum maritimum,Criste marine,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F.jpg,,,Identifiable +N1,109396,Sortie #109396,https://biolit.fr/sorties/sortie-109396/,Loumeaud Margot,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-10.22.41_73bae43d.jpg,9/20/2025 0:00,9.0000000,12.0000000,43.2843420000000,5.31617400000000,Planète Mer,ile du Frioul,109399,Observation #109399,https://biolit.fr/observations/observation-109399/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F3.jpg,,,Identifiable +N1,109396,Sortie #109396,https://biolit.fr/sorties/sortie-109396/,Loumeaud Margot,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-10.22.41_73bae43d.jpg,9/20/2025 0:00,9.0000000,12.0000000,43.2843420000000,5.31617400000000,Planète Mer,ile du Frioul,109401,Observation #109401,https://biolit.fr/observations/observation-109401/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F2.jpg,,,Identifiable +N1,109396,Sortie #109396,https://biolit.fr/sorties/sortie-109396/,Loumeaud Margot,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-10.22.41_73bae43d.jpg,9/20/2025 0:00,9.0000000,12.0000000,43.2843420000000,5.31617400000000,Planète Mer,ile du Frioul,109403,Observation #109403,https://biolit.fr/observations/observation-109403/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-10.22.41_73bae43d.jpg,,,Identifiable +N1,109396,Sortie #109396,https://biolit.fr/sorties/sortie-109396/,Loumeaud Margot,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F2.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/WhatsApp-Image-2025-11-13-a-10.22.41_73bae43d.jpg,9/20/2025 0:00,9.0000000,12.0000000,43.2843420000000,5.31617400000000,Planète Mer,ile du Frioul,109405,Observation #109405,https://biolit.fr/observations/observation-109405/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/67432d5b22ad6ab4d4c505b3db4d10b2/2025/11/F4.jpg,,,Identifiable +N1,109545,Sortie #109545,https://biolit.fr/sorties/sortie-109545/,Julia Stanilovskaya,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_2076-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_2078-scaled.jpeg,7/23/2025 0:00,15.0000000,15.0000000,41.387532000000,9.14942300000000,,"‎⁨Corsica⁩, ⁨Bonifacio⁩",109546,Observation #109546,https://biolit.fr/observations/observation-109546/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_2076-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_2078-scaled.jpeg,,,Ne sais pas +N1,109551,Sortie #109551,https://biolit.fr/sorties/sortie-109551/,Julia Stanilovskaya,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_1922-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_1931-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_1930-scaled.jpeg,7/20/2025 0:00,16.0000000,17.0000000,42.1897080000000,8.57980700000000,,"‎⁨Porto Scandola Revellata Calvi Calanches de Piana Zone Terrestre et Marine⁩, ⁨Piana⁩, ⁨Port de Ficajola⁩",109552,Observation #109552,https://biolit.fr/observations/observation-109552/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_1922-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_1931-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_1930-scaled.jpeg,,,Identifiable +N1,109557,Sortie #109557,https://biolit.fr/sorties/sortie-109557/,Julia Stanilovskaya,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_1915-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_1914-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_1917-scaled.jpeg,7/20/2025 0:00,14.0000000,15.0000000,42.1485630000000,8.59060000000000,,"Cargèse⁩, ⁨‎⁨Corsica⁩,",109558,Observation #109558,https://biolit.fr/observations/observation-109558/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_1915-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e865f66f3f99bfed434ca5ace370bd06/2025/11/IMG_1914-scaled.jpeg,,,Identifiable +N1,109563,Sortie #109563,https://biolit.fr/sorties/sortie-109563/,Elodie Philiponet,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/decf28256c4d8eb44e1db7ce47887e64/2025/11/IMG_5188-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/decf28256c4d8eb44e1db7ce47887e64/2025/11/IMG_5190-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/decf28256c4d8eb44e1db7ce47887e64/2025/11/099772D3-2502-4D3C-AAB0-5B38856CBE47-scaled.jpeg,11/13/2025 0:00,9.0000000,9.0000000,47.7046470000000,-3.42747700000000,,Anse du stole à ploemeur 56,109564,Observation #109564,https://biolit.fr/observations/observation-109564/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/decf28256c4d8eb44e1db7ce47887e64/2025/11/099772D3-2502-4D3C-AAB0-5B38856CBE47-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/decf28256c4d8eb44e1db7ce47887e64/2025/11/IMG_5188-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/decf28256c4d8eb44e1db7ce47887e64/2025/11/IMG_5190-scaled.jpeg,,TRUE,Identifiable +N1,109604,Sortie #109604,https://biolit.fr/sorties/sortie-109604/,Hélène Barbier,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/68fdea3d30a7c345fc3de3ef9aa09663/2025/11/1000012134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/68fdea3d30a7c345fc3de3ef9aa09663/2025/11/1000012157-1-scaled.jpg,11/14/2025 0:00,15.0000000,16.0:47,46.7245790,-2.3483660,,Plage notre dame de monts,109605,Observation #109605,https://biolit.fr/observations/observation-109605/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/68fdea3d30a7c345fc3de3ef9aa09663/2025/11/1000012134-scaled.jpg,,TRUE,Identifiable +N1,109604,Sortie #109604,https://biolit.fr/sorties/sortie-109604/,Hélène Barbier,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/68fdea3d30a7c345fc3de3ef9aa09663/2025/11/1000012134-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/68fdea3d30a7c345fc3de3ef9aa09663/2025/11/1000012157-1-scaled.jpg,11/14/2025 0:00,15.0000000,16.0:47,46.7245790,-2.3483660,,Plage notre dame de monts,109607,Observation #109607,https://biolit.fr/observations/observation-109607/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/68fdea3d30a7c345fc3de3ef9aa09663/2025/11/1000012157-1-scaled.jpg,,TRUE,Identifiable +N1,109611,Sortie #109611,https://biolit.fr/sorties/sortie-109611/,Hélène Barbier,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/68fdea3d30a7c345fc3de3ef9aa09663/2025/11/1000012057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/68fdea3d30a7c345fc3de3ef9aa09663/2025/11/1000012058-scaled.jpg,11/09/2025,9.0000000,10.0000000,46.7245790,-2.3483660,,Plage notre dame de monts,109612,Observation #109612,https://biolit.fr/observations/observation-109612/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/68fdea3d30a7c345fc3de3ef9aa09663/2025/11/1000012057-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/68fdea3d30a7c345fc3de3ef9aa09663/2025/11/1000012058-scaled.jpg,,TRUE,Identifiable +N1,109615,Sortie #109615,https://biolit.fr/sorties/sortie-109615/,Leroux Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/11/1000026924-scaled.jpg,11/09/2025,11.0:33,12.0:33,50.8038860,1.619823,,Audresselles,,,,,,,,,, +N1,109617,Sortie #109617,https://biolit.fr/sorties/sortie-109617/,Leroux Julien,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/11/1000026924-1-scaled.jpg,11/09/2025,11.0:35,12.0:36,50.803413,1.6169140,,Audresselles,109618,Observation #109618,https://biolit.fr/observations/observation-109618/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/1c1b0428443ecc5a8a70db008bfeb70f/2025/11/1000026924-1-scaled.jpg,,TRUE,non-identifiable +N1,109634,Sortie #109634,https://biolit.fr/sorties/sortie-109634/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8029-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8032-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8021-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8024-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8025-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8028-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8027-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8026-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8031-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8022-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8023-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8019-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8016-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8030-scaled.jpeg,11/14/2025 0:00,14.0000000,16.0000000,43.2380570000000,5.36163100000000,Planète Mer,Plage de l’abris côtier,109635,Observation #109635,https://biolit.fr/observations/observation-109635/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8029-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8032-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8024-scaled.jpeg,,, +N1,109634,Sortie #109634,https://biolit.fr/sorties/sortie-109634/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8029-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8032-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8021-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8024-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8025-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8028-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8027-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8026-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8031-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8022-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8023-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8019-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8016-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8030-scaled.jpeg,11/14/2025 0:00,14.0000000,16.0000000,43.2380570000000,5.36163100000000,Planète Mer,Plage de l’abris côtier,109637,Observation #109637,https://biolit.fr/observations/observation-109637/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8028-scaled.jpeg,,, +N1,109634,Sortie #109634,https://biolit.fr/sorties/sortie-109634/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8029-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8032-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8021-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8024-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8025-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8028-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8027-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8026-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8031-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8022-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8023-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8019-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8016-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8030-scaled.jpeg,11/14/2025 0:00,14.0000000,16.0000000,43.2380570000000,5.36163100000000,Planète Mer,Plage de l’abris côtier,109639,Observation #109639,https://biolit.fr/observations/observation-109639/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8023-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8022-scaled.jpeg,,TRUE, +N1,109634,Sortie #109634,https://biolit.fr/sorties/sortie-109634/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8029-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8032-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8021-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8024-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8025-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8028-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8027-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8026-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8031-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8022-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8023-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8019-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8016-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8030-scaled.jpeg,11/14/2025 0:00,14.0000000,16.0000000,43.2380570000000,5.36163100000000,Planète Mer,Plage de l’abris côtier,109641,Observation #109641,https://biolit.fr/observations/observation-109641/,Codium bursa,Béret basque,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8019-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8016-scaled.jpeg,,TRUE, +N1,109634,Sortie #109634,https://biolit.fr/sorties/sortie-109634/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8029-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8032-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8021-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8024-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8025-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8028-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8027-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8026-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8031-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8022-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8023-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8019-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8016-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8030-scaled.jpeg,11/14/2025 0:00,14.0000000,16.0000000,43.2380570000000,5.36163100000000,Planète Mer,Plage de l’abris côtier,109643,Observation #109643,https://biolit.fr/observations/observation-109643/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8027-scaled.jpeg,,, +N1,109634,Sortie #109634,https://biolit.fr/sorties/sortie-109634/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8029-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8032-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8021-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8024-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8025-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8028-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8027-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8026-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8031-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8022-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8023-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8019-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8016-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8030-scaled.jpeg,11/14/2025 0:00,14.0000000,16.0000000,43.2380570000000,5.36163100000000,Planète Mer,Plage de l’abris côtier,109645,Observation #109645,https://biolit.fr/observations/observation-109645/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8021-scaled.jpeg,,, +N1,109634,Sortie #109634,https://biolit.fr/sorties/sortie-109634/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8029-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8032-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8021-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8024-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8025-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8028-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8027-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8026-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8031-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8022-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8023-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8019-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8016-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8030-scaled.jpeg,11/14/2025 0:00,14.0000000,16.0000000,43.2380570000000,5.36163100000000,Planète Mer,Plage de l’abris côtier,109647,Observation #109647,https://biolit.fr/observations/observation-109647/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8030-scaled.jpeg,,, +N1,109634,Sortie #109634,https://biolit.fr/sorties/sortie-109634/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8029-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8032-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8021-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8024-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8025-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8028-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8027-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8026-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8031-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8022-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8023-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8019-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8016-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8030-scaled.jpeg,11/14/2025 0:00,14.0000000,16.0000000,43.2380570000000,5.36163100000000,Planète Mer,Plage de l’abris côtier,109649,Observation #109649,https://biolit.fr/observations/observation-109649/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8026-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8031-scaled.jpeg,,, +N1,109634,Sortie #109634,https://biolit.fr/sorties/sortie-109634/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8029-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8032-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8021-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8024-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8025-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8028-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8027-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8026-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8031-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8022-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8023-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8019-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8016-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8030-scaled.jpeg,11/14/2025 0:00,14.0000000,16.0000000,43.2380570000000,5.36163100000000,Planète Mer,Plage de l’abris côtier,109651,Observation #109651,https://biolit.fr/observations/observation-109651/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8025-scaled.jpeg,,, +N1,109634,Sortie #109634,https://biolit.fr/sorties/sortie-109634/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8029-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8032-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8021-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8024-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8025-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8028-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8027-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8026-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8031-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8022-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8023-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8019-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8016-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8030-scaled.jpeg,11/14/2025 0:00,14.0000000,16.0000000,43.2380570000000,5.36163100000000,Planète Mer,Plage de l’abris côtier,109653,Observation #109653,https://biolit.fr/observations/observation-109653/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8021-scaled.jpeg,,, +N1,109658,Sortie #109658,https://biolit.fr/sorties/sortie-109658/,David guilleron,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a53fcea6b467eed2d14696c3fe2709e2/2025/11/1000012923-scaled.jpg,11/15/2025 0:00,12.000004,14.000005,47.5544510000000,-3.13673100000000,Escale Bretagne,Penthievre,109659,Observation #109659,https://biolit.fr/observations/observation-109659/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a53fcea6b467eed2d14696c3fe2709e2/2025/11/1000012923-scaled.jpg,,TRUE,Identifiable +N1,109662,Sortie #109662,https://biolit.fr/sorties/sortie-109662/,Cossard Manon,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/0bc7b51b097e224e7ec95fda3bbfbc7e/2025/11/IMG-20251115-WA0018.jpg,11/15/2025 0:00,13.0:15,15.0:45,42.5906400000000,9.50883900000000,La Girelle,La marane,,,,,,,,,, +N1,109667,Sortie #109667,https://biolit.fr/sorties/sortie-109667/,Karine Drean,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7bea4f7ba24f1b26bb94d92462e7869d/2025/11/IMG_9046-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7bea4f7ba24f1b26bb94d92462e7869d/2025/11/IMG_9047-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7bea4f7ba24f1b26bb94d92462e7869d/2025/11/IMG_9038-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7bea4f7ba24f1b26bb94d92462e7869d/2025/11/IMG_9037-scaled.jpeg,11/16/2025 0:00,15.000001,23.0:32,47.7063580000000,-3.00766300000000,,Plage de saint colomban,109668,Observation #109668,https://biolit.fr/observations/observation-109668/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7bea4f7ba24f1b26bb94d92462e7869d/2025/11/IMG_9046-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7bea4f7ba24f1b26bb94d92462e7869d/2025/11/IMG_9047-scaled.jpeg,,TRUE,Identifiable +N1,109711,Sortie #109711,https://biolit.fr/sorties/sortie-109711/,BENEDICK JEROME,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo011-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/photo001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo016-scaled.jpg,11/10/2025,10.0000000,11.0:45,43.078,5.929,,Saint Mandrier sur MEr,109712,Observation #109712,https://biolit.fr/observations/observation-109712/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo013-scaled.jpg,,TRUE,Ne sais pas +N1,109711,Sortie #109711,https://biolit.fr/sorties/sortie-109711/,BENEDICK JEROME,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo011-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/photo001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo016-scaled.jpg,11/10/2025,10.0000000,11.0:45,43.078,5.929,,Saint Mandrier sur MEr,109714,Observation #109714,https://biolit.fr/observations/observation-109714/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo011-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo026-scaled.jpg,,,Ne sais pas +N1,109711,Sortie #109711,https://biolit.fr/sorties/sortie-109711/,BENEDICK JEROME,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo011-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/photo001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo016-scaled.jpg,11/10/2025,10.0000000,11.0:45,43.078,5.929,,Saint Mandrier sur MEr,109716,Observation #109716,https://biolit.fr/observations/observation-109716/,Paracentrotus lividus,Oursin violet,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo013-scaled.jpg,,TRUE,Identifiable +N1,109711,Sortie #109711,https://biolit.fr/sorties/sortie-109711/,BENEDICK JEROME,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo011-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/photo001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo016-scaled.jpg,11/10/2025,10.0000000,11.0:45,43.078,5.929,,Saint Mandrier sur MEr,109718,Observation #109718,https://biolit.fr/observations/observation-109718/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/photo001-scaled.jpg,,,Ne sais pas +N1,109711,Sortie #109711,https://biolit.fr/sorties/sortie-109711/,BENEDICK JEROME,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo011-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/photo001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo016-scaled.jpg,11/10/2025,10.0000000,11.0:45,43.078,5.929,,Saint Mandrier sur MEr,109720,Observation #109720,https://biolit.fr/observations/observation-109720/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo009-scaled.jpg,,TRUE, +N1,109711,Sortie #109711,https://biolit.fr/sorties/sortie-109711/,BENEDICK JEROME,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo011-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/photo001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo016-scaled.jpg,11/10/2025,10.0000000,11.0:45,43.078,5.929,,Saint Mandrier sur MEr,109722,Observation #109722,https://biolit.fr/observations/observation-109722/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo007-scaled.jpg,,TRUE,Identifiable +N1,109711,Sortie #109711,https://biolit.fr/sorties/sortie-109711/,BENEDICK JEROME,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo015-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo014-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo013-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo012-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo011-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo010-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo009-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo007-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo026-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo005-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo025-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo004-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo003-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo002-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/photo001-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo018-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo016-scaled.jpg,11/10/2025,10.0000000,11.0:45,43.078,5.929,,Saint Mandrier sur MEr,109724,Observation #109724,https://biolit.fr/observations/observation-109724/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/ce0e792030c568526e87096006169781/2025/11/Photo025-scaled.jpg,,,Ne sais pas +N1,109740,Sortie #109740,https://biolit.fr/sorties/sortie-109740/,Ali AHMIM,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a8a5063534f39687ac80c37fe2194580/2025/11/1109079331175614345.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a8a5063534f39687ac80c37fe2194580/2025/11/4695669677308848676.jpg,11/11/2025,11.0000000,15.0000000,43.4822620000000,5.18567600000000,,Berre l'Etang,109741,Observation #109741,https://biolit.fr/observations/observation-109741/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a8a5063534f39687ac80c37fe2194580/2025/11/1109079331175614345.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/a8a5063534f39687ac80c37fe2194580/2025/11/4695669677308848676.jpg,,TRUE,non-identifiable +N1,109828,Sortie #109828,https://biolit.fr/sorties/sortie-109828/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.54_0c1e23bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.54_852db14c.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.53_674cf67a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.53_34b525fa.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.51_02debce6.jpg,10/18/2025 0:00,10.0000000,12.0000000,42.7673280000000,3.03824800000000,LABELBLEU,Plage de Torreilles,,,,,,,,,, +N1,109832,Sortie #109832,https://biolit.fr/sorties/sortie-109832/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.54_852db14c-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.54_d0137413.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.54_0c1e23bb-1.jpg,10/18/2025 0:00,10.0000000,12.0000000,42.7673280000000,3.03824800000000,LABELBLEU,Plage de Torreilles,109833,Observation #109833,https://biolit.fr/observations/observation-109833/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.54_852db14c-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.54_d0137413.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.54_0c1e23bb-1.jpg,,,Ne sais pas +N1,109832,Sortie #109832,https://biolit.fr/sorties/sortie-109832/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.54_852db14c-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.54_d0137413.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.54_0c1e23bb-1.jpg,10/18/2025 0:00,10.0000000,12.0000000,42.7673280000000,3.03824800000000,LABELBLEU,Plage de Torreilles,109836,Observation #109836,https://biolit.fr/observations/observation-109836/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.54_d0137413.jpg,,,Ne sais pas +N1,109832,Sortie #109832,https://biolit.fr/sorties/sortie-109832/,LABELBLEU,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.54_852db14c-1.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.54_d0137413.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.54_0c1e23bb-1.jpg,10/18/2025 0:00,10.0000000,12.0000000,42.7673280000000,3.03824800000000,LABELBLEU,Plage de Torreilles,109838,Observation #109838,https://biolit.fr/observations/observation-109838/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8b55cd0d65a94d4623eb79aa0fbfdaa5/2025/11/WhatsApp-Image-2025-11-18-a-10.25.54_0c1e23bb-1.jpg,,,Ne sais pas +N1,109835,Sortie #109835,https://biolit.fr/sorties/sortie-109835/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/gibule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Patelle-scaled.jpg,11/18/2025 0:00,10.0000000,11.0000000,48.7024220000000,-1.84675900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109840,Observation #109840,https://biolit.fr/observations/observation-109840/,Anguilla anguilla,Anguille,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-2-1-scaled.jpg,,TRUE,Identifiable +N1,109835,Sortie #109835,https://biolit.fr/sorties/sortie-109835/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/gibule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Patelle-scaled.jpg,11/18/2025 0:00,10.0000000,11.0000000,48.7024220000000,-1.84675900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109842,Observation #109842,https://biolit.fr/observations/observation-109842/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-2-scaled.jpg,,TRUE,Identifiable +N1,109835,Sortie #109835,https://biolit.fr/sorties/sortie-109835/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/gibule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Patelle-scaled.jpg,11/18/2025 0:00,10.0000000,11.0000000,48.7024220000000,-1.84675900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109844,Observation #109844,https://biolit.fr/observations/observation-109844/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-3-scaled.jpg,,TRUE,Identifiable +N1,109835,Sortie #109835,https://biolit.fr/sorties/sortie-109835/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/gibule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Patelle-scaled.jpg,11/18/2025 0:00,10.0000000,11.0000000,48.7024220000000,-1.84675900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109846,Observation #109846,https://biolit.fr/observations/observation-109846/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-2-1-scaled.jpg,,TRUE,Identifiable +N1,109835,Sortie #109835,https://biolit.fr/sorties/sortie-109835/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/gibule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Patelle-scaled.jpg,11/18/2025 0:00,10.0000000,11.0000000,48.7024220000000,-1.84675900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109848,Observation #109848,https://biolit.fr/observations/observation-109848/,Crangon crangon,Crevette grise européenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-1-scaled.jpg,,,Identifiable +N1,109835,Sortie #109835,https://biolit.fr/sorties/sortie-109835/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/gibule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Patelle-scaled.jpg,11/18/2025 0:00,10.0000000,11.0000000,48.7024220000000,-1.84675900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109850,Observation #109850,https://biolit.fr/observations/observation-109850/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/gibule-2-scaled.jpg,,TRUE,Identifiable +N1,109835,Sortie #109835,https://biolit.fr/sorties/sortie-109835/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/gibule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Patelle-scaled.jpg,11/18/2025 0:00,10.0000000,11.0000000,48.7024220000000,-1.84675900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109852,Observation #109852,https://biolit.fr/observations/observation-109852/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-1-scaled.jpg,,TRUE,Identifiable +N1,109835,Sortie #109835,https://biolit.fr/sorties/sortie-109835/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/gibule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Patelle-scaled.jpg,11/18/2025 0:00,10.0000000,11.0000000,48.7024220000000,-1.84675900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109854,Observation #109854,https://biolit.fr/observations/observation-109854/,Phorcus lineatus,Monodonte,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-1-scaled.jpg,,TRUE,Identifiable +N1,109835,Sortie #109835,https://biolit.fr/sorties/sortie-109835/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/gibule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Patelle-scaled.jpg,11/18/2025 0:00,10.0000000,11.0000000,48.7024220000000,-1.84675900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109856,Observation #109856,https://biolit.fr/observations/observation-109856/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-1-scaled.jpg,,TRUE,Identifiable +N1,109835,Sortie #109835,https://biolit.fr/sorties/sortie-109835/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anguille-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/crabe-marbre-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crevette-grise-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gibule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/gibule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/monodonte-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Monodonte-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Patelle-scaled.jpg,11/18/2025 0:00,10.0000000,11.0000000,48.7024220000000,-1.84675900000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,109858,Observation #109858,https://biolit.fr/observations/observation-109858/,Patella vulgata,Patelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Patelle-scaled.jpg,,TRUE,Identifiable +N1,109876,Sortie #109876,https://biolit.fr/sorties/sortie-109876/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/11/Acanthocardia-tuberculata-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/11/Acanthocardia-tuberculata2-scaled.jpg,10/25/2025 0:00,16.0:54,17.000001,43.0654760000000,6.12957000000000,,Plage de l'Almanarre,109877,Observation #109877,https://biolit.fr/observations/observation-109877/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/11/Acanthocardia-tuberculata-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/11/Acanthocardia-tuberculata2-scaled.jpg,,,Identifiable +N1,109876,Sortie #109876,https://biolit.fr/sorties/sortie-109876/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/11/Acanthocardia-tuberculata-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/11/Acanthocardia-tuberculata2-scaled.jpg,10/25/2025 0:00,16.0:54,17.000001,43.0654760000000,6.12957000000000,,Plage de l'Almanarre,109879,Observation #109879,https://biolit.fr/observations/observation-109879/,Acanthocardia tuberculata,Bucarde tuberculée,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/11/Acanthocardia-tuberculata2-scaled.jpg,,,Identifiable +N1,109904,Sortie #109904,https://biolit.fr/sorties/sortie-109904/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/11/IMG_8798-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/11/IMG_8788-scaled.jpg,11/07/2025,10.0000000,12.0000000,43.7757960000000,-1.41816300000000,Centre de la mer,soustons plage,109906,Observation #109906,https://biolit.fr/observations/observation-109906/,Rhombosepion orbignyanum,Os de seiche rose,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/11/IMG_8798-scaled.jpg,,,Identifiable +N1,109904,Sortie #109904,https://biolit.fr/sorties/sortie-109904/,Halm sophie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/11/IMG_8798-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/11/IMG_8788-scaled.jpg,11/07/2025,10.0000000,12.0000000,43.7757960000000,-1.41816300000000,Centre de la mer,soustons plage,109908,Observation #109908,https://biolit.fr/observations/observation-109908/,Sepia officinalis,Os de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/c14684390c30ef30c06511b355a1a2aa/2025/11/IMG_8788-scaled.jpg,,,Identifiable +N1,109929,Sortie #109929,https://biolit.fr/sorties/sortie-109929/,Katy Cornevin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020159-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020160-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020161-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020162-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020164-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020165-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020166-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020167-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020169-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020170-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020171-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020168-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020172-scaled.jpg,11/19/2025 0:00,9.0:15,11.0000000,43.4828890,3.6718000,LPO Occitanie (Dt Hérault),Frontignan,,,,,,,,,, +N1,109950,Sortie #109950,https://biolit.fr/sorties/sortie-109950/,Katy Cornevin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020159-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020160-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020161-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020162-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020164-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020165-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020166-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020171-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020172-1-scaled.jpg,11/19/2025 0:00,9.0:15,11.0000000,43.4828890,3.6718000,LPO Occitanie (Dt Hérault),Frontignan plage,109952,Observation #109952,https://biolit.fr/observations/observation-109952/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020159-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020160-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020161-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020162-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020164-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020166-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020165-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020172-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020171-1-scaled.jpg,,,Ne sais pas +N1,109950,Sortie #109950,https://biolit.fr/sorties/sortie-109950/,Katy Cornevin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020159-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020160-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020161-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020162-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020164-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020165-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020166-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020171-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020172-1-scaled.jpg,11/19/2025 0:00,9.0:15,11.0000000,43.4828890,3.6718000,LPO Occitanie (Dt Hérault),Frontignan plage,109954,Observation #109954,https://biolit.fr/observations/observation-109954/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020164-1-scaled.jpg,,,Identifiable +N1,109950,Sortie #109950,https://biolit.fr/sorties/sortie-109950/,Katy Cornevin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020159-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020160-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020161-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020162-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020164-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020165-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020166-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020171-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020172-1-scaled.jpg,11/19/2025 0:00,9.0:15,11.0000000,43.4828890,3.6718000,LPO Occitanie (Dt Hérault),Frontignan plage,109956,Observation #109956,https://biolit.fr/observations/observation-109956/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020170-1-scaled.jpg,,,Identifiable +N1,109950,Sortie #109950,https://biolit.fr/sorties/sortie-109950/,Katy Cornevin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020159-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020160-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020161-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020162-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020164-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020165-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020166-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020171-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020172-1-scaled.jpg,11/19/2025 0:00,9.0:15,11.0000000,43.4828890,3.6718000,LPO Occitanie (Dt Hérault),Frontignan plage,109958,Observation #109958,https://biolit.fr/observations/observation-109958/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020170-1-scaled.jpg,,,Identifiable +N1,109950,Sortie #109950,https://biolit.fr/sorties/sortie-109950/,Katy Cornevin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020159-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020160-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020161-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020162-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020163-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020164-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020165-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020166-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020170-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020167-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020168-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020169-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020171-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020172-1-scaled.jpg,11/19/2025 0:00,9.0:15,11.0000000,43.4828890,3.6718000,LPO Occitanie (Dt Hérault),Frontignan plage,109960,Observation #109960,https://biolit.fr/observations/observation-109960/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020160-1-scaled.jpg,,, +N1,109971,Sortie #109971,https://biolit.fr/sorties/sortie-109971/,Katy Cornevin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020172-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020171-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020168-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020165-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020163-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020161-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020160-2-scaled.jpg,11/19/2025 0:00,9.0:15,11.0000000,43.4828890,3.6718000,LPO Occitanie (Dt Hérault),Frontignan plage,109972,Observation #109972,https://biolit.fr/observations/observation-109972/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020172-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020171-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020168-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020165-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020163-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020161-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020160-2-scaled.jpg,,, +N1,109971,Sortie #109971,https://biolit.fr/sorties/sortie-109971/,Katy Cornevin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020172-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020171-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020168-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020165-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020163-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020161-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020160-2-scaled.jpg,11/19/2025 0:00,9.0:15,11.0000000,43.4828890,3.6718000,LPO Occitanie (Dt Hérault),Frontignan plage,109974,Observation #109974,https://biolit.fr/observations/observation-109974/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020172-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020171-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020168-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020165-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020161-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020163-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020160-2-scaled.jpg,,,Ne sais pas +N1,109971,Sortie #109971,https://biolit.fr/sorties/sortie-109971/,Katy Cornevin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020172-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020171-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020168-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020165-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020163-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020161-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020160-2-scaled.jpg,11/19/2025 0:00,9.0:15,11.0000000,43.4828890,3.6718000,LPO Occitanie (Dt Hérault),Frontignan plage,109976,Observation #109976,https://biolit.fr/observations/observation-109976/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020172-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020171-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020168-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020169-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020167-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020165-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020161-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020163-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5c10a61239840fdf274999be2efb41cb/2025/11/1000020160-2-scaled.jpg,,,Ne sais pas +N1,109980,Sortie #109980,https://biolit.fr/sorties/sortie-109980/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3e0815970b4b9a2f53f21a809ea519d0/2025/11/IMG_20251031_120208_085-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3e0815970b4b9a2f53f21a809ea519d0/2025/11/IMG_20251031_100026_071-scaled.jpg,10/31/2025 0:00,9.0000000,10.0000000,43.4747580000000,3.83525800000000,LPO Occitanie (Dt Hérault),Plage des aresquiers,109981,Observation #109981,https://biolit.fr/observations/observation-109981/,Sepia officinalis,Ponte de seiche,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3e0815970b4b9a2f53f21a809ea519d0/2025/11/IMG_20251031_120208_085-scaled.jpg,,,Identifiable +N1,109980,Sortie #109980,https://biolit.fr/sorties/sortie-109980/,LPO Occitanie (délégation Hérault),https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3e0815970b4b9a2f53f21a809ea519d0/2025/11/IMG_20251031_120208_085-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3e0815970b4b9a2f53f21a809ea519d0/2025/11/IMG_20251031_100026_071-scaled.jpg,10/31/2025 0:00,9.0000000,10.0000000,43.4747580000000,3.83525800000000,LPO Occitanie (Dt Hérault),Plage des aresquiers,109983,Observation #109983,https://biolit.fr/observations/observation-109983/,Callinectes sapidus,Crabe bleu américain,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/3e0815970b4b9a2f53f21a809ea519d0/2025/11/IMG_20251031_100026_071-scaled.jpg,,,Identifiable +N1,109990,Sortie #109990,https://biolit.fr/sorties/sortie-109990/,BENRAMDANE RACHIDA,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7643-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7642-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7640-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7639-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7638-scaled.jpeg,11/19/2025 0:00,9.0000000,11.0000000,43.420930000000,3.73930000000000,LPO Occitanie (Dt Hérault),Frontignan plage,109991,Observation #109991,https://biolit.fr/observations/observation-109991/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7638-scaled.jpeg,,,non-identifiable +N1,109990,Sortie #109990,https://biolit.fr/sorties/sortie-109990/,BENRAMDANE RACHIDA,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7643-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7642-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7640-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7639-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7638-scaled.jpeg,11/19/2025 0:00,9.0000000,11.0000000,43.420930000000,3.73930000000000,LPO Occitanie (Dt Hérault),Frontignan plage,109993,Observation #109993,https://biolit.fr/observations/observation-109993/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7643-scaled.jpeg,,,Identifiable +N1,109990,Sortie #109990,https://biolit.fr/sorties/sortie-109990/,BENRAMDANE RACHIDA,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7643-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7642-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7640-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7639-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7638-scaled.jpeg,11/19/2025 0:00,9.0000000,11.0000000,43.420930000000,3.73930000000000,LPO Occitanie (Dt Hérault),Frontignan plage,109995,Observation #109995,https://biolit.fr/observations/observation-109995/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7639-scaled.jpeg,,,Identifiable +N1,109990,Sortie #109990,https://biolit.fr/sorties/sortie-109990/,BENRAMDANE RACHIDA,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7643-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7642-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7640-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7639-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7638-scaled.jpeg,11/19/2025 0:00,9.0000000,11.0000000,43.420930000000,3.73930000000000,LPO Occitanie (Dt Hérault),Frontignan plage,109997,Observation #109997,https://biolit.fr/observations/observation-109997/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7642-scaled.jpeg,,TRUE,Identifiable +N1,109990,Sortie #109990,https://biolit.fr/sorties/sortie-109990/,BENRAMDANE RACHIDA,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7643-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7642-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7640-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7639-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7638-scaled.jpeg,11/19/2025 0:00,9.0000000,11.0000000,43.420930000000,3.73930000000000,LPO Occitanie (Dt Hérault),Frontignan plage,109999,Observation #109999,https://biolit.fr/observations/observation-109999/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/77fb22b4269da568664dd290ddfbd4bc/2025/11/IMG_7640-scaled.jpeg,,,Ne sais pas +N1,110017,Sortie #110017,https://biolit.fr/sorties/sortie-110017/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8090-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8091-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8092-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8093-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8094-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8096-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8097-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8102-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8101-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8095-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8100-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8099-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8098-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8103-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8104-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8105-scaled.jpeg,11/16/2025 0:00,9.0000000,10.0000000,43.2147650000000,5.34293800000000,Planète Mer,La baie des singes,110082,Observation #110082,https://biolit.fr/observations/observation-110082/,Mytilus galloprovincialis,Moule méditerranéenne,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8094-scaled.jpeg,,,Identifiable +N1,110017,Sortie #110017,https://biolit.fr/sorties/sortie-110017/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8090-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8091-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8092-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8093-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8094-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8096-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8097-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8102-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8101-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8095-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8100-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8099-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8098-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8103-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8104-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8105-scaled.jpeg,11/16/2025 0:00,9.0000000,10.0000000,43.2147650000000,5.34293800000000,Planète Mer,La baie des singes,110084,Observation #110084,https://biolit.fr/observations/observation-110084/,Posidonia oceanica,Posidonie,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8096-scaled.jpeg,,TRUE,Identifiable +N1,110017,Sortie #110017,https://biolit.fr/sorties/sortie-110017/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8090-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8091-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8092-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8093-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8094-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8096-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8097-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8102-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8101-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8095-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8100-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8099-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8098-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8103-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8104-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8105-scaled.jpeg,11/16/2025 0:00,9.0000000,10.0000000,43.2147650000000,5.34293800000000,Planète Mer,La baie des singes,110086,Observation #110086,https://biolit.fr/observations/observation-110086/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8090-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8091-scaled.jpeg,,, +N1,110020,Sortie #110020,https://biolit.fr/sorties/sortie-110020/,Duwez Erin,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8139-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8134-scaled.jpeg,11/18/2025 0:00,11.0000000,12.0000000,43.2451180000000,5.36805100000000,Planète Mer,Plage de la pointe rouge,110080,Observation #110080,https://biolit.fr/observations/observation-110080/,Aurelia aurita,Aurélie,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8139-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/7268e1529b9491c7a8e260eeb7980092/2025/11/IMG_8134-scaled.jpeg,,,Identifiable +N1,110038,Sortie #110038,https://biolit.fr/sorties/sortie-110038/,FRANCOIS MIGNE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/anatifes-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/velelle-rotated.jpg,11/07/2025,11.0000000,12.0000000,46.4887610000000,-1.79942500000000,,LES SABLES D'OLONNE - bassin Dombret,110039,Observation #110039,https://biolit.fr/observations/observation-110039/,Lepas (Anatifa) anatifera,Anatife commun,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/anatifes-1-scaled.jpg,,TRUE,Identifiable +N1,110038,Sortie #110038,https://biolit.fr/sorties/sortie-110038/,FRANCOIS MIGNE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/anatifes-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/velelle-rotated.jpg,11/07/2025,11.0000000,12.0000000,46.4887610000000,-1.79942500000000,,LES SABLES D'OLONNE - bassin Dombret,110041,Observation #110041,https://biolit.fr/observations/observation-110041/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/velelle-rotated.jpg,,TRUE,Identifiable +N1,110059,Sortie #110059,https://biolit.fr/sorties/sortie-110059/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-solaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-paon-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/coque-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-2-1-scaled.jpg,11/20/2025 0:00,10.0000000,11.0000000,48.7024620000000,-1.84644300000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110060,Observation #110060,https://biolit.fr/observations/observation-110060/,Cereus pedunculatus,Anémone solaire,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-solaire-3-scaled.jpg,,,Identifiable +N1,110059,Sortie #110059,https://biolit.fr/sorties/sortie-110059/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-solaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-paon-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/coque-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-2-1-scaled.jpg,11/20/2025 0:00,10.0000000,11.0000000,48.7024620000000,-1.84644300000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110062,Observation #110062,https://biolit.fr/observations/observation-110062/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-paon-scaled.jpg,,,Ne sais pas +N1,110059,Sortie #110059,https://biolit.fr/sorties/sortie-110059/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-solaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-paon-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/coque-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-2-1-scaled.jpg,11/20/2025 0:00,10.0000000,11.0000000,48.7024620000000,-1.84644300000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110064,Observation #110064,https://biolit.fr/observations/observation-110064/,Cerastoderma edule,Coque commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/coque-scaled.jpg,,,Identifiable +N1,110059,Sortie #110059,https://biolit.fr/sorties/sortie-110059/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-solaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-paon-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/coque-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-2-1-scaled.jpg,11/20/2025 0:00,10.0000000,11.0000000,48.7024620000000,-1.84644300000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110066,Observation #110066,https://biolit.fr/observations/observation-110066/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-1-scaled.jpg,,,Identifiable +N1,110059,Sortie #110059,https://biolit.fr/sorties/sortie-110059/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-solaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-paon-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/coque-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-2-1-scaled.jpg,11/20/2025 0:00,10.0000000,11.0000000,48.7024620000000,-1.84644300000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110068,Observation #110068,https://biolit.fr/observations/observation-110068/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eponge-scaled.jpg,,,Ne sais pas +N1,110059,Sortie #110059,https://biolit.fr/sorties/sortie-110059/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-solaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-paon-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/coque-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-2-1-scaled.jpg,11/20/2025 0:00,10.0000000,11.0000000,48.7024620000000,-1.84644300000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110070,Observation #110070,https://biolit.fr/observations/observation-110070/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gobie-scaled.jpg,,,Ne sais pas +N1,110059,Sortie #110059,https://biolit.fr/sorties/sortie-110059/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-solaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-paon-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/coque-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-2-1-scaled.jpg,11/20/2025 0:00,10.0000000,11.0000000,48.7024620000000,-1.84644300000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110072,Observation #110072,https://biolit.fr/observations/observation-110072/,Gaidropsarus vulgaris,Motelle commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-2-scaled.jpg,,,Identifiable +N1,110059,Sortie #110059,https://biolit.fr/sorties/sortie-110059/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-solaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-paon-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/coque-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-2-1-scaled.jpg,11/20/2025 0:00,10.0000000,11.0000000,48.7024620000000,-1.84644300000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110074,Observation #110074,https://biolit.fr/observations/observation-110074/,Tritia reticulata,Nasse réticulée,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-scaled.jpg,,TRUE,Identifiable +N1,110059,Sortie #110059,https://biolit.fr/sorties/sortie-110059/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-solaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-paon-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/coque-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-2-1-scaled.jpg,11/20/2025 0:00,10.0000000,11.0000000,48.7024620000000,-1.84644300000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110076,Observation #110076,https://biolit.fr/observations/observation-110076/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ponte-de-pourpre-1-scaled.jpg,,,Identifiable +N1,110059,Sortie #110059,https://biolit.fr/sorties/sortie-110059/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Anemone-solaire-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-paon-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/coque-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-1-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-2-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Eponge-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Gobie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Motelle-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Nasse-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Ponte-de-pourpre-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-2-1-scaled.jpg,11/20/2025 0:00,10.0000000,11.0000000,48.7024620000000,-1.84644300000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110078,Observation #110078,https://biolit.fr/observations/observation-110078/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/POurpre-2-1-scaled.jpg,,TRUE,Identifiable +N1,110092,Sortie #110092,https://biolit.fr/sorties/sortie-110092/,Julie Vasseur,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d1427f8a85000dbc27c8f96ed90b0919/2025/11/IMG_0796-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d1427f8a85000dbc27c8f96ed90b0919/2025/11/IMG_0797-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d1427f8a85000dbc27c8f96ed90b0919/2025/11/IMG_0798-scaled.jpeg,11/23/2025 0:00,15.0000000,15.0000000,48.3666010000000,-4.76707900000000,,Les blancs sablons - le conquet,110093,Observation #110093,https://biolit.fr/observations/observation-110093/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d1427f8a85000dbc27c8f96ed90b0919/2025/11/IMG_0798-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d1427f8a85000dbc27c8f96ed90b0919/2025/11/IMG_0796-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/d1427f8a85000dbc27c8f96ed90b0919/2025/11/IMG_0797-scaled.jpeg,",""true""",Identifiable, +N1,110097,Sortie #110097,https://biolit.fr/sorties/sortie-110097/,cigale33,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/86e13a5ef4a0614488dcaaddd746f397/2025/11/20251111_161636-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/86e13a5ef4a0614488dcaaddd746f397/2025/11/20251111_161501.jpg,11/11/2025,15.0000000,17.0000000,43.3786800000000,-1.75707600000000,CPIE Littoral Basque - Euskal Itsasbazterra,plage des deux Jumeaux - Hendaye,110098,Observation #110098,https://biolit.fr/observations/observation-110098/,Symsagittifera roscoffensis,Ver plat de Roscoff,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/86e13a5ef4a0614488dcaaddd746f397/2025/11/20251111_161501.jpg,,TRUE,Identifiable +N1,110102,Sortie #110102,https://biolit.fr/sorties/sortie-110102/,LABE EMILIE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4b4794fa34d29d1a607fa9a3cfa0e0bb/2025/11/20251124_092129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4b4794fa34d29d1a607fa9a3cfa0e0bb/2025/11/20251124_091810-scaled.jpg,11/24/2025 0:00,9.0:15,9.0:25,46.8396880000000,-2.1458100000000,Association Hirondelle,Plage de la braie,110103,Observation #110103,https://biolit.fr/observations/observation-110103/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4b4794fa34d29d1a607fa9a3cfa0e0bb/2025/11/20251124_092129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4b4794fa34d29d1a607fa9a3cfa0e0bb/2025/11/20251124_091810-scaled.jpg,,TRUE,Identifiable +N1,110102,Sortie #110102,https://biolit.fr/sorties/sortie-110102/,LABE EMILIE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4b4794fa34d29d1a607fa9a3cfa0e0bb/2025/11/20251124_092129-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4b4794fa34d29d1a607fa9a3cfa0e0bb/2025/11/20251124_091810-scaled.jpg,11/24/2025 0:00,9.0:15,9.0:25,46.8396880000000,-2.1458100000000,Association Hirondelle,Plage de la braie,110105,Observation #110105,https://biolit.fr/observations/observation-110105/,Physalia physalis,Galère portugaise,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4b4794fa34d29d1a607fa9a3cfa0e0bb/2025/11/20251124_091810-scaled.jpg,,TRUE,Identifiable +N1,110108,Sortie #110108,https://biolit.fr/sorties/sortie-110108/,LABE EMILIE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4b4794fa34d29d1a607fa9a3cfa0e0bb/2025/11/20251107_093600-scaled.jpg,11/07/2025,9.0:59,10.0000000,46.8534350000000,-2.14583600000000,,Plage parée grollier,110109,Observation #110109,https://biolit.fr/observations/observation-110109/,Pelagia noctiluca,Pélagie,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/4b4794fa34d29d1a607fa9a3cfa0e0bb/2025/11/20251107_093600-scaled.jpg,,TRUE,Identifiable +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110144,Observation #110144,https://biolit.fr/observations/observation-110144/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110146,Observation #110146,https://biolit.fr/observations/observation-110146/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110148,Observation #110148,https://biolit.fr/observations/observation-110148/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110150,Observation #110150,https://biolit.fr/observations/observation-110150/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg,,, +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110152,Observation #110152,https://biolit.fr/observations/observation-110152/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110154,Observation #110154,https://biolit.fr/observations/observation-110154/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110156,Observation #110156,https://biolit.fr/observations/observation-110156/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110158,Observation #110158,https://biolit.fr/observations/observation-110158/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110160,Observation #110160,https://biolit.fr/observations/observation-110160/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110162,Observation #110162,https://biolit.fr/observations/observation-110162/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110164,Observation #110164,https://biolit.fr/observations/observation-110164/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110166,Observation #110166,https://biolit.fr/observations/observation-110166/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110168,Observation #110168,https://biolit.fr/observations/observation-110168/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110170,Observation #110170,https://biolit.fr/observations/observation-110170/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110172,Observation #110172,https://biolit.fr/observations/observation-110172/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110174,Observation #110174,https://biolit.fr/observations/observation-110174/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110176,Observation #110176,https://biolit.fr/observations/observation-110176/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110178,Observation #110178,https://biolit.fr/observations/observation-110178/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110180,Observation #110180,https://biolit.fr/observations/observation-110180/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110182,Observation #110182,https://biolit.fr/observations/observation-110182/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg,,TRUE,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110184,Observation #110184,https://biolit.fr/observations/observation-110184/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110186,Observation #110186,https://biolit.fr/observations/observation-110186/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110188,Observation #110188,https://biolit.fr/observations/observation-110188/,Pollicipes pollicipes,Pouce-pied (ou pousse-pied),,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg,,TRUE,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110190,Observation #110190,https://biolit.fr/observations/observation-110190/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110192,Observation #110192,https://biolit.fr/observations/observation-110192/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg,,,Ne sais pas +N1,110143,Sortie #110143,https://biolit.fr/sorties/sortie-110143/,Andersen Louise,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/0c8ba41d-141e-4af0-aea0-ab0677896e22.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/1fa7e85d-133c-4506-9084-1349cbc194d3.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/2f8e1add-4eda-4068-8a99-d47ca9372a9d.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4a292d85-484e-4d0f-8abe-a44df31bb21a.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4ad918c2-022d-47fe-8957-fb70a0c01b2f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/4bc1bdd8-f9b0-4734-815e-4093f6a8203f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/5fb8d67f-0f3e-446b-b076-e3ffb5d8458f.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/7f29f2ab-3694-428d-b7d9-73900c154bbb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/08ed7e7b-02e2-4919-8602-5cceb6b00098.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/9b87b3c2-b14e-41b1-880a-e19e92e7c693.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/33bc5aa4-d100-4555-9c62-302c658e8674.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/48ff8267-4bf0-45c8-9642-15281d08c611.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/64ee4cc9-f01e-472b-8858-bb4171931428.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/70e82351-7322-4c77-93d8-aa4c73cafea9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/216bd3cd-00eb-4246-a1a7-1f9fdc2dbe04.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/617b99b4-6cdb-4db9-a63f-c93030deb7ca.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/265995ea-da9a-4d71-9ba8-4019915ecfa6.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/bdcb43c4-a427-4b54-b24c-3b282c02a875.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/c5a81238-aaf1-41f1-8d3c-369a2caa46b5.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/cfa9d13d-f63c-449a-803e-bff8f5abb6d9.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/dc234979-a68e-4c4f-8dec-c0565459cb78.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/e9285d6d-9387-4fb7-85f2-205208230872.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/eb20d607-9fc9-4ee3-ab7d-981b7804091e.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/ecc65abc-3cef-469a-bb51-bc3aee9fe5bb.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/efa700ed-4947-43e4-a52a-83ce14bc80e4.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,11/21/2025 0:00,9.0000000,13.0000000,43.6441970000000,-1.4466660000000,Sensations littoral,Plage Santocha - Capbreton,110194,Observation #110194,https://biolit.fr/observations/observation-110194/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/24cc168e93d9c84727b6c46d2725e86a/2025/11/f271d3e6-b37b-46a8-8ec1-2a78110a4436.jpg,,,Ne sais pas +N1,110201,Sortie #110201,https://biolit.fr/sorties/sortie-110201/,ROLLAND Jean-Michel,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5e07dcf80ee78bdb65745f39b6fa27e4/2025/11/20250612_114337-scaled.jpg,11/24/2025 0:00,15.0000000,15.0000000,43.2449570000000,5.37208600000000,,Plage de la Pointe Rouge,,,,,,,,,, +N1,110205,Sortie #110205,https://biolit.fr/sorties/sortie-110205/,Grégoire LECLERC,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/acdda1ad1c78c274b647efb6736beb80/2025/11/IMGP1620r.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/acdda1ad1c78c274b647efb6736beb80/2025/11/IMGP1639r.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/acdda1ad1c78c274b647efb6736beb80/2025/11/IMGP1640r.jpg,2/22/2024 0:00,15.0000000,15.0000000,43.0373860000000,6.06761200000000,,Fourmigues - Giens,110206,Observation #110206,https://biolit.fr/observations/observation-110206/,Puffinus yelkouan,Puffin de Yelkouan,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/acdda1ad1c78c274b647efb6736beb80/2025/11/IMGP1620r.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/acdda1ad1c78c274b647efb6736beb80/2025/11/IMGP1639r.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/acdda1ad1c78c274b647efb6736beb80/2025/11/IMGP1640r.jpg,,,Identifiable +N1,110205,Sortie #110205,https://biolit.fr/sorties/sortie-110205/,Grégoire LECLERC,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/acdda1ad1c78c274b647efb6736beb80/2025/11/IMGP1620r.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/acdda1ad1c78c274b647efb6736beb80/2025/11/IMGP1639r.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/acdda1ad1c78c274b647efb6736beb80/2025/11/IMGP1640r.jpg,2/22/2024 0:00,15.0000000,15.0000000,43.0373860000000,6.06761200000000,,Fourmigues - Giens,110208,Observation #110208,https://biolit.fr/observations/observation-110208/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/acdda1ad1c78c274b647efb6736beb80/2025/11/IMGP1620r.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/acdda1ad1c78c274b647efb6736beb80/2025/11/IMGP1639r.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/acdda1ad1c78c274b647efb6736beb80/2025/11/IMGP1640r.jpg,,,Ne sais pas +N1,110297,Sortie #110297,https://biolit.fr/sorties/sortie-110297/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pontre-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Tomate-de-mer-2-scaled.jpg,11/24/2025 0:00,15.0000000,16.0000000,48.7024290000000,-1.846784000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110299,Observation #110299,https://biolit.fr/observations/observation-110299/,Littorina littorea,Bigorneau,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-3-scaled.jpg,,,Identifiable +N1,110297,Sortie #110297,https://biolit.fr/sorties/sortie-110297/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pontre-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Tomate-de-mer-2-scaled.jpg,11/24/2025 0:00,15.0000000,16.0000000,48.7024290000000,-1.846784000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110317,Observation #110317,https://biolit.fr/observations/observation-110317/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-scaled.jpg,,,Ne sais pas +N1,110297,Sortie #110297,https://biolit.fr/sorties/sortie-110297/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pontre-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Tomate-de-mer-2-scaled.jpg,11/24/2025 0:00,15.0000000,16.0000000,48.7024290000000,-1.846784000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110321,Observation #110321,https://biolit.fr/observations/observation-110321/,Ciona intestinalis,Cione intestinale,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-1-scaled.jpg,,,Identifiable +N1,110297,Sortie #110297,https://biolit.fr/sorties/sortie-110297/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pontre-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Tomate-de-mer-2-scaled.jpg,11/24/2025 0:00,15.0000000,16.0000000,48.7024290000000,-1.846784000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110323,Observation #110323,https://biolit.fr/observations/observation-110323/,Pachygrapsus marmoratus,Crabe marbré,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-4-scaled.jpg,,TRUE,Identifiable +N1,110297,Sortie #110297,https://biolit.fr/sorties/sortie-110297/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pontre-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Tomate-de-mer-2-scaled.jpg,11/24/2025 0:00,15.0000000,16.0000000,48.7024290000000,-1.846784000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110325,Observation #110325,https://biolit.fr/observations/observation-110325/,Carcinus maenas,Crabe vert,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-ponte-scaled.jpg,,TRUE,Identifiable +N1,110297,Sortie #110297,https://biolit.fr/sorties/sortie-110297/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pontre-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Tomate-de-mer-2-scaled.jpg,11/24/2025 0:00,15.0000000,16.0000000,48.7024290000000,-1.846784000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110327,Observation #110327,https://biolit.fr/observations/observation-110327/,Magallana gigas,Huître creuse,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-2-scaled.jpg,,,Identifiable +N1,110297,Sortie #110297,https://biolit.fr/sorties/sortie-110297/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pontre-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Tomate-de-mer-2-scaled.jpg,11/24/2025 0:00,15.0000000,16.0000000,48.7024290000000,-1.846784000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110329,Observation #110329,https://biolit.fr/observations/observation-110329/,Mytilus edulis,Moule commune,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-2-scaled.jpg,,,Identifiable +N1,110297,Sortie #110297,https://biolit.fr/sorties/sortie-110297/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pontre-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Tomate-de-mer-2-scaled.jpg,11/24/2025 0:00,15.0000000,16.0000000,48.7024290000000,-1.846784000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110331,Observation #110331,https://biolit.fr/observations/observation-110331/,Ruditapes decussatus / philippinarum,Palourde croisée,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Palourde-1-scaled.jpg,,,Identifiable +N1,110297,Sortie #110297,https://biolit.fr/sorties/sortie-110297/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pontre-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Tomate-de-mer-2-scaled.jpg,11/24/2025 0:00,15.0000000,16.0000000,48.7024290000000,-1.846784000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110333,Observation #110333,https://biolit.fr/observations/observation-110333/,Nucella lapillus,Ponte de pourpre petite pierre,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pontre-pourpre-scaled.jpg,,,Identifiable +N1,110297,Sortie #110297,https://biolit.fr/sorties/sortie-110297/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pontre-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Tomate-de-mer-2-scaled.jpg,11/24/2025 0:00,15.0000000,16.0000000,48.7024290000000,-1.846784000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110335,Observation #110335,https://biolit.fr/observations/observation-110335/,Porcellana platycheles,Porcellane grise,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-2-scaled.jpg,,TRUE,Identifiable +N1,110297,Sortie #110297,https://biolit.fr/sorties/sortie-110297/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pontre-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Tomate-de-mer-2-scaled.jpg,11/24/2025 0:00,15.0000000,16.0000000,48.7024290000000,-1.846784000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110337,Observation #110337,https://biolit.fr/observations/observation-110337/,Nucella lapillus,Pourpre petite pierre,Algues Brunes et Bigorneaux,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-2-2-scaled.jpg,,TRUE,Identifiable +N1,110297,Sortie #110297,https://biolit.fr/sorties/sortie-110297/,Schuck Hachani Lucie,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Bigorneau-2-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Blennie-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Cione-intestinale-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-marbre-4-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-1-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Crabe-vert-ponte-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Huitre-creuse-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Moule-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Palourde-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pontre-pourpre-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Porcellane-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-1-3-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Pourpre-2-2-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Tomate-de-mer-2-scaled.jpg,11/24/2025 0:00,15.0000000,16.0000000,48.7024290000000,-1.846784000000,Centre Virginie Hériot,Rochers de la plage de Port Mer,110339,Observation #110339,https://biolit.fr/observations/observation-110339/,Actinia equina,Tomate de mer de l'Atlantique,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f2d2e7c07091a44f01076b7865d40bf9/2025/11/Tomate-de-mer-2-scaled.jpg,,TRUE,Identifiable +N1,110392,Sortie #110392,https://biolit.fr/sorties/sortie-110392/,Vivu Mare,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/2060eee4d37f94c58f1a7b0a6fb5d9c4/2025/11/IMG_9577-scaled.jpg,11/13/2025 0:00,9.0:15,10.0:15,42.7407710000,9.46136400000000,Mare Vivu,Plage de Miomu,110393,Observation #110393,https://biolit.fr/observations/observation-110393/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/2060eee4d37f94c58f1a7b0a6fb5d9c4/2025/11/IMG_9577-scaled.jpg,,,non-identifiable +N1,110410,Sortie #110410,https://biolit.fr/sorties/sortie-110410/,Hippolyte RIQUET,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5a0653137bb49c4c6a63b0a715ef4a5d/2025/11/1000003497-scaled.jpg,11/25/2025 0:00,9.0000000,10.0000000,48.6544290000000,-4.40230600000000,,Guisseny - Boutrrouille,110411,Observation #110411,https://biolit.fr/observations/observation-110411/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/5a0653137bb49c4c6a63b0a715ef4a5d/2025/11/1000003497-scaled.jpg,,TRUE,Identifiable +N1,110422,Sortie #110422,https://biolit.fr/sorties/sortie-110422/,Géraldine Béranger,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/428e475be22aa21b975e672a0e9ad2b9/2025/11/IMG_8515-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/428e475be22aa21b975e672a0e9ad2b9/2025/11/IMG_8512-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/428e475be22aa21b975e672a0e9ad2b9/2025/11/IMG_8513-scaled.jpeg,11/25/2025 0:00,16.0000000,16.0000000,48.0992670000000,-4.45770300000000,,Pors Peron Finistère,110423,Observation #110423,https://biolit.fr/observations/observation-110423/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/428e475be22aa21b975e672a0e9ad2b9/2025/11/IMG_8515-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/428e475be22aa21b975e672a0e9ad2b9/2025/11/IMG_8512-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/428e475be22aa21b975e672a0e9ad2b9/2025/11/IMG_8513-scaled.jpeg,,TRUE,Identifiable +N1,110439,Sortie #110439,https://biolit.fr/sorties/sortie-110439/,Solene Goulaouic,,11/04/2025,11.0000000,12.0000000,48.647768,-2.002871,Planète Mer (antenne Dinard),Fort national,,,,,,,,,, +N1,110441,Sortie #110441,https://biolit.fr/sorties/sortie-110441/,Solene Goulaouic,,11/04/2025,11.0000000,12.0000000,48.647748,-2.002853,Planète Mer (antenne Dinard),Fort national,,,,,,,,,, +N1,110443,Sortie #110443,https://biolit.fr/sorties/sortie-110443/,Solene Goulaouic,,11/04/2025,11.0000000,12.0000000,48.647748,-2.002853,Planète Mer (antenne Dinard),Fort national,,,,,,,,,, +N1,110454,Sortie #110454,https://biolit.fr/sorties/sortie-110454/,Solene Goulaouic,,11/04/2025,11.0000000,12.0000000,48.654460000000,-2.02383400000000,Planète Mer (antenne Dinard),Fort national,,,,,,,,,, +N1,110637,Sortie #110637,https://biolit.fr/sorties/sortie-110637/,FRANCOIS MIGNE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_122620059.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_125719766_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_133513911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_125649643_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_131530130_HDR-scaled.jpg,9/25/2025 0:00,11.0000000,13.0000000,46.5101890000000,-1.81913700000000,,Les Sables d'Olonne - anse chaillot,110638,Observation #110638,https://biolit.fr/observations/observation-110638/,Botryllus schlosseri,Botrylle étoilé,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_125719766_HDR.jpg,,,Identifiable +N1,110637,Sortie #110637,https://biolit.fr/sorties/sortie-110637/,FRANCOIS MIGNE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_122620059.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_125719766_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_133513911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_125649643_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_131530130_HDR-scaled.jpg,9/25/2025 0:00,11.0000000,13.0000000,46.5101890000000,-1.81913700000000,,Les Sables d'Olonne - anse chaillot,110640,Observation #110640,https://biolit.fr/observations/observation-110640/,Patella pellucida,Helcion,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_133513911-scaled.jpg,,,Identifiable +N1,110637,Sortie #110637,https://biolit.fr/sorties/sortie-110637/,FRANCOIS MIGNE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_122620059.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_125719766_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_133513911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_125649643_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_131530130_HDR-scaled.jpg,9/25/2025 0:00,11.0000000,13.0000000,46.5101890000000,-1.81913700000000,,Les Sables d'Olonne - anse chaillot,110642,Observation #110642,https://biolit.fr/observations/observation-110642/,Watersipora subatra,Bryozoaire orange vif et noir à points noirs,Les Nouveaux Arrivants,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_125649643_HDR-rotated.jpg,,,Identifiable +N1,110637,Sortie #110637,https://biolit.fr/sorties/sortie-110637/,FRANCOIS MIGNE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_122620059.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_125719766_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_133513911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_125649643_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_131530130_HDR-scaled.jpg,9/25/2025 0:00,11.0000000,13.0000000,46.5101890000000,-1.81913700000000,,Les Sables d'Olonne - anse chaillot,110644,Observation #110644,https://biolit.fr/observations/observation-110644/,Corynactis viridis,Anémone-bijou,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_122620059.jpg,,,Identifiable +N1,110637,Sortie #110637,https://biolit.fr/sorties/sortie-110637/,FRANCOIS MIGNE,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_122620059.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_125719766_HDR.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_133513911-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_125649643_HDR-rotated.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_131530130_HDR-scaled.jpg,9/25/2025 0:00,11.0000000,13.0000000,46.5101890000000,-1.81913700000000,,Les Sables d'Olonne - anse chaillot,110646,Observation #110646,https://biolit.fr/observations/observation-110646/,Chondria coerulescens,Chondria bleue,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/b43180cd9740af1f6aa39defacf534fb/2025/11/IMG_20251009_131530130_HDR-scaled.jpg,,,Identifiable +N1,110706,Sortie #110706,https://biolit.fr/sorties/sortie-110706/,CPIE Marennes-Oléron,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8bd08fa0eaf02755d3132ee7a7ba4988/2025/11/IMG_6970-rotated.jpg,11/02/2025,14.0000000,14.0:35,45.9279020000000,-1.35473500000000,Association IODDE - CPIE Marennes-Oléron,Passe des Bicles,110707,Observation #110707,https://biolit.fr/observations/observation-110707/,,,,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/8bd08fa0eaf02755d3132ee7a7ba4988/2025/11/IMG_6970-rotated.jpg,,,Identifiable +N1,110709,Sortie #110709,https://biolit.fr/sorties/sortie-110709/,Nostra Mar,,11/14/2025 0:00,10.0000000,12.0000000,42.5235190000000,3.09905400000000,,Plage de l'Oli,,,,,,,,,, +N1,110715,Sortie #110715,https://biolit.fr/sorties/sortie-110715/,Nataliia Rozmet,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f24877fc4a2715c20a7845ae488f0c03/2025/11/IMG_6976-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f24877fc4a2715c20a7845ae488f0c03/2025/11/IMG_6532-scaled.jpeg,11/28/2025 0:00,17.000009,18.0:15,48.3693660000000,-4.76356000000000,,"Plage de Blancs Sablons, Le Conquet",,,,,,,,,, +N1,110719,Sortie #110719,https://biolit.fr/sorties/sortie-110719/,Nataliia Rozmet,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f24877fc4a2715c20a7845ae488f0c03/2025/11/IMG_7007.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f24877fc4a2715c20a7845ae488f0c03/2025/11/IMG_6976-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f24877fc4a2715c20a7845ae488f0c03/2025/11/IMG_6533-scaled.jpeg,11/28/2025 0:00,17.000009,18.0:15,48.368931000000,-4.76406500000000,,"Plage de Blancs Sablons, Le Conquet",110720,Observation #110720,https://biolit.fr/observations/observation-110720/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f24877fc4a2715c20a7845ae488f0c03/2025/11/IMG_7007.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f24877fc4a2715c20a7845ae488f0c03/2025/11/IMG_6976-1-scaled.jpeg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/f24877fc4a2715c20a7845ae488f0c03/2025/11/IMG_6533-scaled.jpeg,,,Identifiable +N1,110728,Sortie #110728,https://biolit.fr/sorties/sortie-110728/,Fred LHERMINIER,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e1edda00dc2720d6ed39590de28529d0/2025/11/20251129_163708-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e1edda00dc2720d6ed39590de28529d0/2025/11/20251129_163705-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e1edda00dc2720d6ed39590de28529d0/2025/11/20251129_163703-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e1edda00dc2720d6ed39590de28529d0/2025/11/20251129_163657-scaled.jpg,11/29/2025 0:00,15.0000000,16.0000000,47.871209000000,-4.10469300000000,,Plage de Bénodet,110729,Observation #110729,https://biolit.fr/observations/observation-110729/,Velella velella,Vélelle,Les Saisons de la Mer,https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e1edda00dc2720d6ed39590de28529d0/2025/11/20251129_163708-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e1edda00dc2720d6ed39590de28529d0/2025/11/20251129_163705-1-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e1edda00dc2720d6ed39590de28529d0/2025/11/20251129_163657-scaled.jpg | https://biolit.fr/wp-content/uploads/jet-form-builder/5e0dc3c4753c4619af59b5b9c7fe4764/e1edda00dc2720d6ed39590de28529d0/2025/11/20251129_163703-scaled.jpg,,,Identifiable diff --git a/ml/yolov8_DINO/README.md b/ml/yolov8_DINO/README.md index 7005c4b..1cc4149 100644 --- a/ml/yolov8_DINO/README.md +++ b/ml/yolov8_DINO/README.md @@ -1,36 +1,41 @@ -# ML - YOLOv8 (détection + crop) +# ML - YOLOv8 / GroundingDINO -Objectif : détecter l'espèce (végétal/animal) et générer un crop centré sur l'objet. +Approche en deux temps : un premier entraînement sur ~10 000 images annotées automatiquement (quantitatif) +pour bootstrapper le modèle, suivi d'un re-entraînement sur ~1 400 images cropées et annotées manuellement (qualitatif) +pour affiner les performances. L'annotation manuelle ne porte que sur la deuxième partie. -## Entrées -Structure de données généré à partir du fichier `export_biolit.csv`. +## Partie 1 — Bootstrap autodistill -### Récupération propre des données -build_dataset.py -Pipeline de constitution du dataset Biolit pour inférence YOLO / Grounding DINO. +Annotation automatique via GroundingDINO + fine-tuning YOLOv8. Pas d'annotation manuelle. +L'ontologie est à affiner dans `configs/autodistill_boostrap.yaml`. + +```bash +python build_dataset.py # téléchargement + nettoyage images +python check_dataset.py # vérification qualité (résolutions, espèces, corrompues) +python autodistill_label.py # pseudo-labels GroundingDINO +python autodistill_train.py # fine-tuning YOLOv8 +``` + +`--limit N` sur `build_dataset.py` pour tester sur un sous-ensemble. **Structure de sortie :** ```text - dataset_biolit/ - ├── images/ - │ ├── identifiable/ - │ └── non_identifiable/ # à valider - ├── labels/ - │ ├── identifiable/ - │ └── non_identifiable/ # à valider - ├── metadata.csv # GroundingDINO - └── data.yaml #YOLO +dataset_biolit/ +├── images/ +└── labeled-images/ + ├── train/ + │ ├── images/ + │ └── labels/ + ├── valid/ + │ ├── images/ + │ └── labels/ + └── data.yaml ``` +Poids entraînés → `runs/biolit_v2_bootstrap/weights/` -## Sorties - -- Bboxes + classes : `dataset_biolit/exports/yolov8_detections.csv` -- Images crops : `dataset_biolit/crops/images/` - -## Routage +## Partie 2 — Fine-tuning (à venir) - - si détection forte → **Classification** - - si détection faible → **Label Studio (CROP)** - - si pas de détection animal ou végétal → stop +Pris en charge par un autre membre de l'équipe. +Entraînement sur des images cropées et annotées manuellement pour améliorer les performances du modèle bootstrap. diff --git a/ml/yolov8_DINO/autodistill_label.py b/ml/yolov8_DINO/autodistill_label.py new file mode 100644 index 0000000..f5ca50b --- /dev/null +++ b/ml/yolov8_DINO/autodistill_label.py @@ -0,0 +1,47 @@ +import argparse +import sys +from pathlib import Path + +import numpy as np +import torch +import yaml + +# compat —> ajustement version +torch.use_deterministic_algorithms(False) +_orig = torch.load +torch.load = lambda *a, **kw: _orig(*a, **kw, weights_only=False) + +if not hasattr(np, "trapz"): + np.trapz = np.trapezoid + +from autodistill.detection import CaptionOntology # noqa: E402 +from autodistill_grounding_dino import GroundingDINO # noqa: E402 + +sys.path.insert(0, str(Path(__file__).parent)) +from utils.logger import get_logger # noqa: E402 + +log = get_logger("autodistill_label") + + +def main(): + parser = argparse.ArgumentParser() + parser.add_argument("--config", default="configs/autodistill_boostrap.yaml") + args = parser.parse_args() + + with open(args.config) as f: + cfg = yaml.safe_load(f) + + log.info("Labeling GroundingDINO → %s", cfg["labeled_output"]) + + model = GroundingDINO(ontology=CaptionOntology(cfg["ontology"])) + model.label( + input_folder=cfg["img_path"], + output_folder=cfg["labeled_output"], + extension="", + ) + + log.info("Labels générés → %s", cfg["labeled_output"]) + + +if __name__ == "__main__": + main() diff --git a/ml/yolov8_DINO/autodistill_train.py b/ml/yolov8_DINO/autodistill_train.py new file mode 100644 index 0000000..03629b7 --- /dev/null +++ b/ml/yolov8_DINO/autodistill_train.py @@ -0,0 +1,60 @@ +import argparse +import sys +from pathlib import Path + +import numpy as np +import torch +import yaml + +# compat —> ajustement version +torch.use_deterministic_algorithms(False) +_orig = torch.load +torch.load = lambda *a, **kw: _orig(*a, **kw, weights_only=False) + +if not hasattr(np, "trapz"): + np.trapz = np.trapezoid + +from autodistill_yolov8 import YOLOv8 # noqa: E402 + +sys.path.insert(0, str(Path(__file__).parent)) +from utils.logger import get_logger # noqa: E402 + +log = get_logger("autodistill_train") + + +def _device(): + if torch.cuda.is_available(): + return "cuda" + if torch.backends.mps.is_available(): + return "mps" + return "cpu" + + +def main(): + parser = argparse.ArgumentParser() + parser.add_argument("--config", default="configs/autodistill_boostrap.yaml") + args = parser.parse_args() + + with open(args.config) as f: + cfg = yaml.safe_load(f) + + device = _device() + log.info("Training YOLOv8 | device=%s", device) + + model = YOLOv8(cfg["model"]) + model.yolo.train( + data=cfg["data_yaml"], + epochs=cfg["epochs"], + imgsz=cfg.get("imgsz", 640), + device=device, + project=cfg["project"], + name=cfg["name"], + batch=cfg.get("batch", 16), + exist_ok=True, + ) + + log.info("Entraînement terminé.") + + +if __name__ == "__main__": + main() diff --git a/ml/yolov8_DINO/build_dataset.py b/ml/yolov8_DINO/build_dataset.py index 9ebb33c..7c4f2f6 100644 --- a/ml/yolov8_DINO/build_dataset.py +++ b/ml/yolov8_DINO/build_dataset.py @@ -1,247 +1,161 @@ -import logging -import sys +import argparse +import unicodedata +import yaml +import cv2 import requests import pandas as pd from pathlib import Path from tqdm import tqdm +from concurrent.futures import ThreadPoolExecutor, as_completed +from utils.logger import get_logger +logger = get_logger("build_dataset") +VALID_IMG_EXT = {".jpg", ".jpeg", ".png", ".bmp", ".tiff", ".webp"} -# LOGGING -LOG_FILE = Path("logs/build_dataset.log") -LOG_FILE.parent.mkdir(parents=True, exist_ok=True) -logger = logging.getLogger("biolit") -logger.setLevel(logging.INFO) - -_stream_handler = logging.StreamHandler(sys.stdout) -_stream_handler.setLevel(logging.INFO) -_stream_handler.setFormatter( - logging.Formatter("%(asctime)s %(levelname)-8s %(message)s", "%H:%M:%S") -) - -_file_handler = logging.FileHandler(LOG_FILE, mode="w", encoding="utf-8") -_file_handler.setLevel(logging.INFO) -_file_handler.setFormatter( - logging.Formatter( - "%(asctime)s %(levelname)-8s %(message)s", - "%Y-%m-%d %H:%M:%S", - ) -) - -logger.addHandler(_stream_handler) -logger.addHandler(_file_handler) +def sanitize_filenames(img_dir: Path): + """Renomme les fichiers avec accents en ASCII (cv2.imread plante sur macOS sinon).""" + for f in img_dir.iterdir(): + if not f.is_file(): + continue + clean = "".join( + c for c in unicodedata.normalize("NFKD", f.name) + if not unicodedata.combining(c) + ) + if clean != f.name: + f.rename(f.parent / clean) + logger.info("Renommé : %s → %s", f.name, clean) + + +def clean_non_images(img_dir: Path): + """Écarte les fichiers non-image et les images corrompues dans un dossier tmp.""" + tmp = img_dir.parent / "_non_images_tmp" + tmp.mkdir(exist_ok=True) + removed = 0 + for f in img_dir.iterdir(): + if not f.is_file(): + continue + ok = f.suffix.lower() in VALID_IMG_EXT and cv2.imread(str(f)) is not None + if not ok: + f.rename(tmp / f.name) + logger.warning("Écarté : %s", f.name) + removed += 1 + if removed: + logger.info("%d fichier(s) non-image écartés dans _non_images_tmp/", removed) -# CONFIGS -DATA_PATH = "dataset_biolit/export_biolit.csv" -BASE_DIR = Path("dataset_biolit") -TIMEOUT = 10 -VALID_EXTS = {"jpg", "jpeg", "png", "webp"} +def load_config(path: str = "configs/build_dataset.yaml") -> dict: + with open(path) as f: + cfg = yaml.safe_load(f) + logger.info("Config chargée : %s", path) + return cfg -USE_COLS = [ - "ID - N1", - "images - observation", - "Nom commun - observation", - "validee - observation", - "espece identifiable ? - observation", -] -IDENTIFIABLE_VALUES = ["Identifiable", "Non identifiable"] +# PIPELINE TELECHARGEMENT DATASET -SUBFOLDER_MAP = { - "Identifiable": "identifiable", - "Non identifiable": "non_identifiable", -} +def load(path: str, use_cols: list) -> pd.DataFrame: + """Charge le CSV, garde uniquement les observations validées et identifiables.""" + logger.info("Chargement : %s", path) + df = pd.read_csv(path, usecols=use_cols) + df = df[df["validee - observation"] == "TRUE"].reset_index(drop=True) + logger.info("%d observations valides et identifiables", len(df)) + return df -# FONCTION UTILS -def load_and_filter(path: str) -> pd.DataFrame: - """Charge le CSV et filtre les observations validées.""" - logger.info("Chargement du CSV : %s", path) - data = pd.read_csv(path, usecols=USE_COLS) - total = len(data) - filtered = data[data["validee - observation"] == "TRUE"] - logger.info( - "CSV chargé — %d lignes totales, %d après filtrage (validée=TRUE)", - total, len(filtered), - ) - return filtered - - -def explode_image_urls(df: pd.DataFrame) -> pd.DataFrame: - """Split les URLs multiples (séparées par |) en une ligne par image.""" - logger.debug("Explosion des URLs multiples...") - result = ( - df.copy() - .assign(**{ - "images - observation": df["images - observation"] - .str.strip() - .str.split("|") - }) +def explode_urls(df: pd.DataFrame) -> pd.DataFrame: + """Une ligne par image.""" + df = ( + df.assign(**{"images - observation": df["images - observation"].str.strip().str.split("|")}) .explode("images - observation") .rename(columns={"images - observation": "image_url"}) .assign(image_url=lambda d: d["image_url"].str.strip()) - .reset_index(drop=True) - ) - logger.info("Explosion terminée — %d lignes (une par image)", len(result)) - return result - - -def prepare_dataset(df: pd.DataFrame) -> pd.DataFrame: - """Sélectionne, renomme et enrichit les colonnes utiles.""" - logger.debug("Préparation du dataset...") - dataset = ( - df[[ - "ID - N1", - "Nom commun - observation", - "espece identifiable ? - observation", - "image_url", - ]] - .copy() - .rename(columns={"espece identifiable ? - observation": "identifiable"}) - .pipe(lambda d: d[d["identifiable"].isin(IDENTIFIABLE_VALUES)]) - .reset_index(drop=True) ) + df = df[df["image_url"].notna() & (df["image_url"] != "")].reset_index(drop=True) + logger.info("%d URLs d'images après explosion", len(df)) + return df - dataset["filename"] = [_make_filename(row, i) for i, row in dataset.iterrows()] - dataset["subfolder"] = dataset["identifiable"].map(SUBFOLDER_MAP) - dataset["filepath"] = ( - str(BASE_DIR / "images") + "/" + dataset["subfolder"] + "/" + dataset["filename"] - ) - counts = dataset["subfolder"].value_counts() - logger.info( - "Dataset préparé — identifiable: %d | non_identifiable: %d | total: %d", - counts.get("identifiable", 0), - counts.get("non_identifiable", 0), - len(dataset), - ) - return dataset - - -def _make_filename(row: pd.Series, idx: int) -> str: +def make_filename(row: pd.Series, idx: int, valid_exts: set) -> str: id_n1 = str(row["ID - N1"]) nom = str(row["Nom commun - observation"]) if pd.notna(row["Nom commun - observation"]) else "inconnu" nom = nom.strip().replace(" ", "_").replace("/", "-") - ext = row["image_url"].split(".")[-1].split("?")[0].lower() - ext = ext if ext in VALID_EXTS else "jpg" + url = row["image_url"] if isinstance(row["image_url"], str) else "" + ext = url.split(".")[-1].split("?")[0].lower() if url else "jpg" + ext = ext if ext in valid_exts else "jpg" return f"{id_n1}_{nom}_{idx}.{ext}" -def create_folder_structure() -> None: - """Crée l'arborescence du dataset.""" - logger.debug("Création de l'arborescence des dossiers...") - for sub in [ - "images/identifiable", "images/non_identifiable", - "labels/identifiable", "labels/non_identifiable", - ]: - (BASE_DIR / sub).mkdir(parents=True, exist_ok=True) - logger.info("Arborescence créée dans : %s", BASE_DIR.resolve()) - +def download(df: pd.DataFrame, images_dir: Path, timeout: int, max_workers: int, valid_exts: set) -> pd.DataFrame: + """Télécharge chaque image en parallèle. Retourne les lignes réussies.""" + images_dir.mkdir(parents=True, exist_ok=True) -def download_images(dataset: pd.DataFrame) -> list[dict]: - """Télécharge les images, skippe celles déjà présentes.""" - failed = [] - skipped = 0 - success = 0 - - logger.info("Démarrage du téléchargement (%d images)...", len(dataset)) - - for _, row in tqdm(dataset.iterrows(), total=len(dataset), desc="Téléchargement"): - dest = Path(row["filepath"]) + def _download_one(row, idx): + filename = make_filename(row, idx, valid_exts) + dest = images_dir / filename if dest.exists(): - skipped += 1 - logger.debug("Skipped (déjà présente) : %s", dest.name) - continue + logger.debug("Skip (déjà présente) : %s", filename) + return {**row, "filename": filename, "filepath": str(dest)} try: - response = requests.get(row["image_url"], timeout=TIMEOUT) - response.raise_for_status() - dest.write_bytes(response.content) - success += 1 - logger.debug("OK %s", dest.name) + r = requests.get(row["image_url"], timeout=timeout) + r.raise_for_status() + dest.write_bytes(r.content) + logger.debug("OK %s", filename) + return {**row, "filename": filename, "filepath": str(dest)} except Exception as e: - failed.append({"url": row["image_url"], "erreur": str(e)}) logger.warning("ÉCHEC %s → %s", row["image_url"], e) + return None - logger.info( - "Téléchargement terminé — succès: %d | skipped: %d | échecs: %d", - success, skipped, len(failed), - ) - return failed - + futures = {} + rows_ok = [] + with ThreadPoolExecutor(max_workers=max_workers) as executor: + for idx, row in df.iterrows(): + futures[executor.submit(_download_one, row, idx)] = idx + for future in tqdm(as_completed(futures), total=len(futures), desc="Téléchargement"): + result = future.result() + if result is not None: + rows_ok.append(result) -def save_metadata(dataset: pd.DataFrame) -> None: - dest = BASE_DIR / "metadata.csv" - dataset.to_csv(dest, index=False) - logger.info("Métadonnées sauvegardées : %s (%d lignes)", dest, len(dataset)) + downloaded = pd.DataFrame(rows_ok).reset_index(drop=True) + logger.info("Téléchargement terminé — %d/%d images récupérées", len(downloaded), len(df)) + return downloaded -def save_yaml(dataset: pd.DataFrame) -> None: - classes = sorted(dataset["Nom commun - observation"].dropna().unique().tolist()) - yaml_content = ( - f"# Dataset Biolit - config YOLO\n" - f"path: {BASE_DIR.resolve()}\n" - f"train: images/identifiable\n" - f"val: images/identifiable # à splitter train/val/test\n\n" - f"nc: {len(classes)}\n" - f"names: {classes}\n" - ) - dest = BASE_DIR / "data.yaml" - dest.write_text(yaml_content) - logger.info("data.yaml sauvegardé : %d classes", len(classes)) - +# MAIN -def print_report(dataset: pd.DataFrame, failed: list[dict]) -> None: - counts = dataset["subfolder"].value_counts() - report = f""" - Dataset sauvegardé dans : {BASE_DIR.resolve()} +def build_dataset(cfg: dict, limit: int = None): + logger.info("════════ START ════════") - images/identifiable/ -> {counts.get('identifiable', 0):>5} images - images/non_identifiable/ -> {counts.get('non_identifiable', 0):>5} images - labels/ -> prêt pour annotation YOLO - metadata.csv -> {len(dataset):>5} lignes - data.yaml -> {dataset['Nom commun - observation'].nunique():>5} classes + images_dir = Path(cfg["images_dir"]) + use_cols = list(cfg["columns"].values()) - Succès : {len(dataset) - len(failed)} - Échecs : {len(failed)} - """ - print(report) - logger.info("=== RAPPORT FINAL ===") - logger.info("identifiable: %d | non_identifiable: %d", counts.get("identifiable", 0), counts.get("non_identifiable", 0)) - logger.info("Total lignes metadata: %d | Classes: %d", len(dataset), dataset["Nom commun - observation"].nunique()) - logger.info("Succès: %d | Échecs: %d", len(dataset) - len(failed), len(failed)) - logger.info("Logs sauvegardés dans : %s", LOG_FILE.resolve()) + df = load(cfg["data_path"], use_cols) + df = explode_urls(df) + if limit: + df = df.head(limit) + logger.info("Mode test : limité à %d images", limit) -# RUNNER L'EXTRACT -def build_dataset(): - logger.info("════════ START build_dataset ════════") + df_ok = download(df, images_dir, cfg["timeout"], cfg["max_workers"], set(cfg["valid_extensions"])) - logger.info("Chargement et filtrage...") - raw = load_and_filter(DATA_PATH) - exploded = explode_image_urls(raw) - dataset = prepare_dataset(exploded) - - logger.info("%d images à traiter", len(dataset)) - - create_folder_structure() - - logger.info("Téléchargement des images...") - failed = download_images(dataset) - - logger.info("Sauvegarde des métadonnées...") - save_metadata(dataset) - save_yaml(dataset) + logger.info( + "Terminé — %d images | %d espèces | dossier : %s", + len(df_ok), + df_ok["Nom commun - observation"].nunique(), + images_dir.resolve(), + ) - if failed: - dest = BASE_DIR / "failed_downloads.csv" - pd.DataFrame(failed).to_csv(dest, index=False) - logger.warning("%d échec(s) enregistré(s) dans : %s", len(failed), dest) + logger.info("Nettoyage du dossier images…") + sanitize_filenames(images_dir) + clean_non_images(images_dir) - print_report(dataset, failed) - logger.info("════════ END build_dataset ════════") + logger.info("════════ END ════════") if __name__ == "__main__": - build_dataset() + parser = argparse.ArgumentParser() + parser.add_argument("--config", default="configs/build_dataset.yaml") + parser.add_argument("--limit", type=int, default=None, help="Limite le nombre d'images téléchargées (test)") + args = parser.parse_args() + + build_dataset(load_config(args.config), limit=args.limit) diff --git a/ml/yolov8_DINO/check_dataset.py b/ml/yolov8_DINO/check_dataset.py new file mode 100644 index 0000000..dada2e5 --- /dev/null +++ b/ml/yolov8_DINO/check_dataset.py @@ -0,0 +1,87 @@ +import argparse +from collections import Counter +from pathlib import Path + +import cv2 +import yaml + +VALID_IMG_EXT = {".jpg", ".jpeg", ".png", ".bmp", ".tiff", ".webp"} +MIN_SIZE = 100 # pixels — en dessous c'est inutilisable + + +def inspect(img_dir: str): + path = Path(img_dir) + images = [f for f in path.iterdir() if f.is_file() and f.suffix.lower() in VALID_IMG_EXT] + + print(f"\n── Inspection : {path} ({len(images)} images) ──\n") + + corrupted = [] + too_small = [] + widths, heights = [], [] + species = Counter() + + for f in images: + img = cv2.imread(str(f)) + if img is None: + corrupted.append(f.name) + continue + + h, w = img.shape[:2] + widths.append(w) + heights.append(h) + + if w < MIN_SIZE or h < MIN_SIZE: + too_small.append(f.name) + + # Le format de nom est "{id}_{espece}_{idx}.ext" (cf. build_dataset.py) + parts = f.stem.split("_") + if len(parts) >= 2: + species[parts[1]] += 1 + + ok = len(images) - len(corrupted) + print(f"OK : {ok}") + print(f"Corrompues : {len(corrupted)}") + print(f"Trop petites : {len(too_small)} (< {MIN_SIZE}px)") + + if widths: + print(f"\nRésolution min : {min(widths)} x {min(heights)}") + print(f"Résolution max : {max(widths)} x {max(heights)}") + med_w = sorted(widths)[len(widths) // 2] + med_h = sorted(heights)[len(heights) // 2] + print(f"Résolution médiane : {med_w} x {med_h}") + + if species: + print(f"\nEspèces ({len(species)}) :") + for name, count in species.most_common(): + print(f"{name:<30} {count} image(s)") + + if corrupted: + print("\nFichiers corrompus :") + for name in corrupted: + print(f" - {name}") + + if too_small: + print("\nFichiers trop petits :") + for name in too_small: + print(f" - {name}") + + print() + + if corrupted or too_small: + print(f"{len(corrupted)} corrompue(s), {len(too_small)} trop petite(s)") + print("Lance build_dataset.py pour nettoyer, ou supprime-les manuellement.\n") + + +def main(): + parser = argparse.ArgumentParser() + parser.add_argument("--config", default="configs/autodistill_boostrap.yaml") + args = parser.parse_args() + + with open(args.config) as f: + cfg = yaml.safe_load(f) + + inspect(cfg["img_path"]) + + +if __name__ == "__main__": + main() diff --git a/ml/yolov8_DINO/configs/autodistill_boostrap.yaml b/ml/yolov8_DINO/configs/autodistill_boostrap.yaml new file mode 100644 index 0000000..8d65686 --- /dev/null +++ b/ml/yolov8_DINO/configs/autodistill_boostrap.yaml @@ -0,0 +1,26 @@ +# Ontologie (TODO: affiner avec Giulia) +ontology: + "plant": "plant" + "animal": "animal" + +# Chemins +img_path: dataset_biolit/images +labeled_output: dataset_biolit/labeled-images +data_yaml: dataset_biolit/labeled-images/data.yaml + +# Modèle +model: yolov8s.pt # en test utiliser n au lieu de s + +# Hyperparams +epochs: 100 +imgsz: 640 +batch: 16 +device: 0 + +# Robustesse au bruit +label_smoothing: 0.1 +dropout: 0.1 + +# Sorties +project: runs/ +name: biolit_v2_bootstrap \ No newline at end of file diff --git a/ml/yolov8_DINO/configs/build_dataset.yaml b/ml/yolov8_DINO/configs/build_dataset.yaml new file mode 100644 index 0000000..5b0f569 --- /dev/null +++ b/ml/yolov8_DINO/configs/build_dataset.yaml @@ -0,0 +1,17 @@ +# Chemins +data_path: dataset_biolit/export_biolit.csv +base_dir: dataset_biolit +images_dir: dataset_biolit/images + +# Téléchargement +timeout: 10 +max_workers: 16 +valid_extensions: ["jpg", "jpeg", "png", "webp"] + +# Colonnes CSV +columns: + id: "ID - N1" + images: "images - observation" + nom_commun: "Nom commun - observation" + validee: "validee - observation" + espece_identifiable: "espece identifiable ? - observation" diff --git a/ml/yolov8_DINO/utils/logger.py b/ml/yolov8_DINO/utils/logger.py new file mode 100644 index 0000000..e3555ea --- /dev/null +++ b/ml/yolov8_DINO/utils/logger.py @@ -0,0 +1,33 @@ +import logging +import sys +from pathlib import Path +from datetime import datetime + +# FICHIER DES LOGS +def get_logger(name: str, log_dir: str = "logs") -> logging.Logger: + Path(log_dir).mkdir(parents=True, exist_ok=True) + + logger = logging.getLogger(name) + logger.setLevel(logging.INFO) + + if logger.handlers: + return logger + + _stream_handler = logging.StreamHandler(sys.stdout) + _stream_handler.setFormatter( + logging.Formatter("%(asctime)s %(levelname)-8s %(message)s", "%H:%M:%S") + ) + + _file_handler = logging.FileHandler( + Path(log_dir) / f"{name}_{datetime.now().strftime('%Y%m%d_%H%M%S')}.log", + mode="w", + encoding="utf-8", + ) + _file_handler.setFormatter( + logging.Formatter("%(asctime)s %(levelname)-8s %(message)s", "%Y-%m-%d %H:%M:%S") + ) + + logger.addHandler(_stream_handler) + logger.addHandler(_file_handler) + + return logger diff --git a/pyproject.toml b/pyproject.toml index 6aa78c6..0b97a4b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,7 +36,16 @@ dependencies = [ "shapely>=2.1.2", "structlog>=25.5.0", "tqdm>=4.67.3", - "transformers>=5.2.0", + "transformers==4.41.2", + "torch>=2.11.0", + "roboflow>=1.2.16", + "autodistill>=0.1.29", + "autodistill-grounding-dino>=0.1.4", + "autodistill-yolov8>=0.1.4", + "supervision>=0.27.0.post2", + "scikit-learn>=1.8.0", + "boto3>=1.42.80", + "python-dotenv>=1.2.2", ] [tool.pytest.ini_options] diff --git a/uv.lock b/uv.lock index 938f1ae..c67a311 100644 --- a/uv.lock +++ b/uv.lock @@ -4,13 +4,19 @@ requires-python = ">=3.12" resolution-markers = [ "python_full_version >= '3.14' and sys_platform == 'win32'", "python_full_version >= '3.14' and sys_platform == 'emscripten'", - "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", + "python_full_version >= '3.14' and sys_platform == 'darwin'", + "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux'", + "(python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32')", "python_full_version == '3.13.*' and sys_platform == 'win32'", "python_full_version < '3.13' and sys_platform == 'win32'", "python_full_version == '3.13.*' and sys_platform == 'emscripten'", "python_full_version < '3.13' and sys_platform == 'emscripten'", - "python_full_version == '3.13.*' and sys_platform != 'emscripten' and sys_platform != 'win32'", - "python_full_version < '3.13' and sys_platform != 'emscripten' and sys_platform != 'win32'", + "python_full_version == '3.13.*' and sys_platform == 'darwin'", + "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux'", + "(python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32')", + "python_full_version < '3.13' and sys_platform == 'darwin'", + "python_full_version < '3.13' and platform_machine == 'aarch64' and sys_platform == 'linux'", + "(python_full_version < '3.13' and platform_machine != 'aarch64' and sys_platform == 'linux') or (python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32')", ] [[package]] @@ -18,6 +24,10 @@ name = "14-biolit" version = "0.1.0" source = { virtual = "." } dependencies = [ + { name = "autodistill" }, + { name = "autodistill-grounding-dino" }, + { name = "autodistill-yolov8" }, + { name = "boto3" }, { name = "bs4" }, { name = "click" }, { name = "duckdb" }, @@ -38,21 +48,30 @@ dependencies = [ { name = "plotly" }, { name = "polars" }, { name = "pre-commit" }, - { name = "psycopg2-binary" }, { name = "prefect" }, + { name = "psycopg2-binary" }, { name = "pyarrow" }, { name = "pytest" }, + { name = "python-dotenv" }, { name = "requests" }, + { name = "roboflow" }, { name = "ruff" }, + { name = "scikit-learn" }, { name = "shapely" }, { name = "sqlalchemy" }, { name = "structlog" }, + { name = "supervision" }, + { name = "torch" }, { name = "tqdm" }, { name = "transformers" }, ] [package.metadata] requires-dist = [ + { name = "autodistill", specifier = ">=0.1.29" }, + { name = "autodistill-grounding-dino", specifier = ">=0.1.4" }, + { name = "autodistill-yolov8", specifier = ">=0.1.4" }, + { name = "boto3", specifier = ">=1.42.80" }, { name = "bs4", specifier = ">=0.0.2" }, { name = "click", specifier = ">=8.1.8" }, { name = "duckdb", specifier = ">=1.1.3" }, @@ -73,17 +92,31 @@ requires-dist = [ { name = "plotly", specifier = ">=6.5.0" }, { name = "polars", specifier = ">=1.36.1" }, { name = "pre-commit", specifier = ">=4.5.1" }, - { name = "psycopg2-binary", specifier = ">=2.9.11" }, { name = "prefect", specifier = ">=3.6.22" }, + { name = "psycopg2-binary", specifier = ">=2.9.11" }, { name = "pyarrow", specifier = ">=23.0.1" }, { name = "pytest", specifier = ">=9.0.2" }, + { name = "python-dotenv", specifier = ">=1.2.2" }, { name = "requests", specifier = ">=2.32.3" }, + { name = "roboflow", specifier = ">=1.2.16" }, { name = "ruff", specifier = ">=0.14.10" }, + { name = "scikit-learn", specifier = ">=1.8.0" }, { name = "shapely", specifier = ">=2.1.2" }, { name = "sqlalchemy", specifier = ">=2.0.44" }, { name = "structlog", specifier = ">=25.5.0" }, + { name = "supervision", specifier = ">=0.27.0.post2" }, + { name = "torch", specifier = ">=2.11.0" }, { name = "tqdm", specifier = ">=4.67.3" }, - { name = "transformers", specifier = ">=5.2.0" }, + { name = "transformers", specifier = "==4.41.2" }, +] + +[[package]] +name = "addict" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/85/ef/fd7649da8af11d93979831e8f1f8097e85e82d5bfeabc8c68b39175d8e75/addict-2.4.0.tar.gz", hash = "sha256:b3b2210e0e067a281f5646c8c5db92e99b7231ea8b0eb5f74dbdf9e259d4e494", size = 9186, upload-time = "2020-11-21T16:21:31.416Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6a/00/b08f23b7d7e1e14ce01419a467b583edbb93c6cdb8654e54a9cc579cd61f/addict-2.4.0-py3-none-any.whl", hash = "sha256:249bb56bbfd3cdc2a004ea0ff4c2b6ddc84d53bc2194761636eb314d5cfa5dfc", size = 3832, upload-time = "2020-11-21T16:21:29.588Z" }, ] [[package]] @@ -311,6 +344,55 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/64/b4/17d4b0b2a2dc85a6df63d1157e028ed19f90d4cd97c36717afef2bc2f395/attrs-26.1.0-py3-none-any.whl", hash = "sha256:c647aa4a12dfbad9333ca4e71fe62ddc36f4e63b2d260a37a8b83d2f043ac309", size = 67548, upload-time = "2026-03-19T14:22:23.645Z" }, ] +[[package]] +name = "autodistill" +version = "0.1.29" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click" }, + { name = "opencv-python" }, + { name = "pillow" }, + { name = "pyyaml" }, + { name = "supervision" }, + { name = "tqdm" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2c/87/5d383e7530b2e8abce49dc7935721cdce675c3c2452202647942a6b01ead/autodistill-0.1.29.tar.gz", hash = "sha256:ed577fb8d8a510105ac8553feda4e324c6e29210d43b2d2a03ca4813c9c3ac33", size = 39484, upload-time = "2024-11-26T13:08:00.921Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2d/a8/ffc9296ebe81405f9cfea7f3c2b2894297cea7f23bdc0c2103d984f8eb94/autodistill-0.1.29-py3-none-any.whl", hash = "sha256:6b5ef69a1ea5dba918371f7806fa990f2553ee537411ac67da852f0da6374ea7", size = 32407, upload-time = "2024-11-26T13:07:59.493Z" }, +] + +[[package]] +name = "autodistill-grounding-dino" +version = "0.1.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "autodistill" }, + { name = "numpy" }, + { name = "opencv-python" }, + { name = "rf-groundingdino" }, + { name = "rf-segment-anything" }, + { name = "supervision" }, + { name = "torch" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/46/30/d0aaee19abcf8b4021c9bed596ebc2a4faaf14c286274a3bb15a074f7bf3/autodistill-grounding-dino-0.1.4.tar.gz", hash = "sha256:9c9c9e76fc20fe9e5c3c0f235998988a9146b723fda4cd312093c723e08e5bfd", size = 8212, upload-time = "2024-04-26T15:36:42.683Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/31/ee/c88e19f1e59211eb40cf43e9d5342160a44563264e178ccf8683a5f493fc/autodistill_grounding_dino-0.1.4-py3-none-any.whl", hash = "sha256:80a0c6c9ab469362c7472160b8f73aea7b566c076e85de4f972c80c43fd03cd4", size = 9060, upload-time = "2024-04-26T15:40:11.968Z" }, +] + +[[package]] +name = "autodistill-yolov8" +version = "0.1.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "autodistill" }, + { name = "torch" }, + { name = "ultralytics" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a6/41/ca8f82522726ec89dfd68ffb506cb5cd4635a3b39cfef1d0e62119cbf6a0/autodistill_yolov8-0.1.4.tar.gz", hash = "sha256:cae1a806e063e9edc9064554f43f0f72a6d47073895a7ecbf953fc1128847d58", size = 15782, upload-time = "2023-11-21T12:12:56.448Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/84/e7/abc2c372a94628843c7628ecf995cd9e47807c65bdec4adbdd7c23c5349b/autodistill_yolov8-0.1.4-py3-none-any.whl", hash = "sha256:4c497711dbc6b7927e634f80ae1a297c0f7b9b1cb0d690ba9adad969e8acc1a8", size = 14330, upload-time = "2023-11-21T12:12:54.623Z" }, +] + [[package]] name = "babel" version = "2.18.0" @@ -368,6 +450,34 @@ css = [ { name = "tinycss2" }, ] +[[package]] +name = "boto3" +version = "1.42.80" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "botocore" }, + { name = "jmespath" }, + { name = "s3transfer" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/4b/85/f1e43429ce4c81a920742f98af5cd377a020768738645a7d0ff450553ef0/boto3-1.42.80.tar.gz", hash = "sha256:797cec65f8a36dde38d2397119a114ab0d807cf92c43fb44b72b0522558acc0a", size = 112777, upload-time = "2026-03-31T19:33:46.036Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5c/3d/a36837ddfcd08e2506b34a6cb785885923f49c9e20559a832681a5e8228d/boto3-1.42.80-py3-none-any.whl", hash = "sha256:293cbdeaec7eda2a0b08e6a9c2bf1a51c54453863137d45a6431058a9280fdda", size = 140554, upload-time = "2026-03-31T19:33:43.656Z" }, +] + +[[package]] +name = "botocore" +version = "1.42.80" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jmespath" }, + { name = "python-dateutil" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2e/42/d0ce09fe5b494e2a9de513206dec90fbe72bcb101457a60f526a6b1c300b/botocore-1.42.80.tar.gz", hash = "sha256:fe32af53dc87f5f4d61879bc231e2ca2cc0719b19b8f6d268e82a34f713a8a09", size = 15110373, upload-time = "2026-03-31T19:33:33.82Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/17/b0/c03f2ed8e7817db1c22d70720636a1b22a2a4d3aa3c09da0257072b30bc5/botocore-1.42.80-py3-none-any.whl", hash = "sha256:7291632b2ede71b7c69e6e366480bb6e2a5d2fae8f7d2d2eb49215e32b7c7a12", size = 14787168, upload-time = "2026-03-31T19:33:29.396Z" }, +] + [[package]] name = "branca" version = "0.8.2" @@ -724,6 +834,75 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/48/ef/0c2f4a8e31018a986949d34a01115dd057bf536905dca38897bacd21fac3/cryptography-46.0.5-cp38-abi3-win_amd64.whl", hash = "sha256:556e106ee01aa13484ce9b0239bca667be5004efb0aabbed28d353df86445595", size = 3467050, upload-time = "2026-02-10T19:18:18.899Z" }, ] +[[package]] +name = "cuda-bindings" +version = "13.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cuda-pathfinder", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/52/c8/b2589d68acf7e3d63e2be330b84bc25712e97ed799affbca7edd7eae25d6/cuda_bindings-13.2.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e865447abfb83d6a98ad5130ed3c70b1fc295ae3eeee39fd07b4ddb0671b6788", size = 5722404, upload-time = "2026-03-11T00:12:44.041Z" }, + { url = "https://files.pythonhosted.org/packages/1f/92/f899f7bbb5617bb65ec52a6eac1e9a1447a86b916c4194f8a5001b8cde0c/cuda_bindings-13.2.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:46d8776a55d6d5da9dd6e9858fba2efcda2abe6743871dee47dd06eb8cb6d955", size = 6320619, upload-time = "2026-03-11T00:12:45.939Z" }, + { url = "https://files.pythonhosted.org/packages/df/93/eef988860a3ca985f82c4f3174fc0cdd94e07331ba9a92e8e064c260337f/cuda_bindings-13.2.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6629ca2df6f795b784752409bcaedbd22a7a651b74b56a165ebc0c9dcbd504d0", size = 5614610, upload-time = "2026-03-11T00:12:50.337Z" }, + { url = "https://files.pythonhosted.org/packages/18/23/6db3aba46864aee357ab2415135b3fe3da7e9f1fa0221fa2a86a5968099c/cuda_bindings-13.2.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7dca0da053d3b4cc4869eff49c61c03f3c5dbaa0bcd712317a358d5b8f3f385d", size = 6149914, upload-time = "2026-03-11T00:12:52.374Z" }, + { url = "https://files.pythonhosted.org/packages/c0/87/87a014f045b77c6de5c8527b0757fe644417b184e5367db977236a141602/cuda_bindings-13.2.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a6464b30f46692d6c7f65d4a0e0450d81dd29de3afc1bb515653973d01c2cd6e", size = 5685673, upload-time = "2026-03-11T00:12:56.371Z" }, + { url = "https://files.pythonhosted.org/packages/ee/5e/c0fe77a73aaefd3fff25ffaccaac69c5a63eafdf8b9a4c476626ef0ac703/cuda_bindings-13.2.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f4af9f3e1be603fa12d5ad6cfca7844c9d230befa9792b5abdf7dd79979c3626", size = 6191386, upload-time = "2026-03-11T00:12:58.965Z" }, + { url = "https://files.pythonhosted.org/packages/5f/58/ed2c3b39c8dd5f96aa7a4abef0d47a73932c7a988e30f5fa428f00ed0da1/cuda_bindings-13.2.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:df850a1ff8ce1b3385257b08e47b70e959932f5f432d0a4e46a355962b4e4771", size = 5507469, upload-time = "2026-03-11T00:13:04.063Z" }, + { url = "https://files.pythonhosted.org/packages/1f/01/0c941b112ceeb21439b05895eace78ca1aa2eaaf695c8521a068fd9b4c00/cuda_bindings-13.2.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e8a16384c6494e5485f39314b0b4afb04bee48d49edb16d5d8593fd35bbd231b", size = 6059693, upload-time = "2026-03-11T00:13:06.003Z" }, +] + +[[package]] +name = "cuda-pathfinder" +version = "1.5.0" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/93/66/0c02bd330e7d976f83fa68583d6198d76f23581bcbb5c0e98a6148f326e5/cuda_pathfinder-1.5.0-py3-none-any.whl", hash = "sha256:498f90a9e9de36044a7924742aecce11c50c49f735f1bc53e05aa46de9ea4110", size = 49739, upload-time = "2026-03-24T21:14:30.869Z" }, +] + +[[package]] +name = "cuda-toolkit" +version = "13.0.2" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/57/b2/453099f5f3b698d7d0eab38916aac44c7f76229f451709e2eb9db6615dcd/cuda_toolkit-13.0.2-py2.py3-none-any.whl", hash = "sha256:b198824cf2f54003f50d64ada3a0f184b42ca0846c1c94192fa269ecd97a66eb", size = 2364, upload-time = "2025-12-19T23:24:07.328Z" }, +] + +[package.optional-dependencies] +cublas = [ + { name = "nvidia-cublas", marker = "sys_platform == 'linux'" }, +] +cudart = [ + { name = "nvidia-cuda-runtime", marker = "sys_platform == 'linux'" }, +] +cufft = [ + { name = "nvidia-cufft", marker = "sys_platform == 'linux'" }, +] +cufile = [ + { name = "nvidia-cufile", marker = "sys_platform == 'linux'" }, +] +cupti = [ + { name = "nvidia-cuda-cupti", marker = "sys_platform == 'linux'" }, +] +curand = [ + { name = "nvidia-curand", marker = "sys_platform == 'linux'" }, +] +cusolver = [ + { name = "nvidia-cusolver", marker = "sys_platform == 'linux'" }, +] +cusparse = [ + { name = "nvidia-cusparse", marker = "sys_platform == 'linux'" }, +] +nvjitlink = [ + { name = "nvidia-nvjitlink", marker = "sys_platform == 'linux'" }, +] +nvrtc = [ + { name = "nvidia-cuda-nvrtc", marker = "sys_platform == 'linux'" }, +] +nvtx = [ + { name = "nvidia-nvtx", marker = "sys_platform == 'linux'" }, +] + [[package]] name = "cycler" version = "0.12.1" @@ -977,6 +1156,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/a4/a5/842ae8f0c08b61d6484b52f99a03510a3a72d23141942d216ebe81fefbce/filelock-3.25.2-py3-none-any.whl", hash = "sha256:ca8afb0da15f229774c9ad1b455ed96e85a81373065fb10446672f64444ddf70", size = 26759, upload-time = "2026-03-11T20:45:37.437Z" }, ] +[[package]] +name = "filetype" +version = "1.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bb/29/745f7d30d47fe0f251d3ad3dc2978a23141917661998763bebb6da007eb1/filetype-1.2.0.tar.gz", hash = "sha256:66b56cd6474bf41d8c54660347d37afcc3f7d1970648de365c102ef77548aadb", size = 998020, upload-time = "2022-11-02T17:34:04.141Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/18/79/1b8fa1bb3568781e84c9200f951c735f3f157429f44be0495da55894d620/filetype-1.2.0-py2.py3-none-any.whl", hash = "sha256:7ce71b6880181241cf7ac8697a2f1eb6a8bd9b429f7ad6d27b8db9ba5f1c2d25", size = 19970, upload-time = "2022-11-02T17:34:01.425Z" }, +] + [[package]] name = "folium" version = "0.20.0" @@ -1150,6 +1338,7 @@ dependencies = [ { name = "griffecli" }, { name = "griffelib" }, ] +sdist = { url = "https://files.pythonhosted.org/packages/04/56/28a0accac339c164b52a92c6cfc45a903acc0c174caa5c1713803467b533/griffe-2.0.0.tar.gz", hash = "sha256:c68979cd8395422083a51ea7cf02f9c119d889646d99b7b656ee43725de1b80f", size = 293906, upload-time = "2026-03-23T21:06:53.402Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/8b/94/ee21d41e7eb4f823b94603b9d40f86d3c7fde80eacc2c3c71845476dddaa/griffe-2.0.0-py3-none-any.whl", hash = "sha256:5418081135a391c3e6e757a7f3f156f1a1a746cc7b4023868ff7d5e2f9a980aa", size = 5214, upload-time = "2026-02-09T19:09:44.105Z" }, ] @@ -1162,6 +1351,7 @@ dependencies = [ { name = "colorama" }, { name = "griffelib" }, ] +sdist = { url = "https://files.pythonhosted.org/packages/a4/f8/2e129fd4a86e52e58eefe664de05e7d502decf766e7316cc9e70fdec3e18/griffecli-2.0.0.tar.gz", hash = "sha256:312fa5ebb4ce6afc786356e2d0ce85b06c1c20d45abc42d74f0cda65e159f6ef", size = 56213, upload-time = "2026-03-23T21:06:54.8Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/e6/ed/d93f7a447bbf7a935d8868e9617cbe1cadf9ee9ee6bd275d3040fbf93d60/griffecli-2.0.0-py3-none-any.whl", hash = "sha256:9f7cd9ee9b21d55e91689358978d2385ae65c22f307a63fb3269acf3f21e643d", size = 9345, upload-time = "2026-02-09T19:09:42.554Z" }, ] @@ -1170,6 +1360,7 @@ wheels = [ name = "griffelib" version = "2.0.0" source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ad/06/eccbd311c9e2b3ca45dbc063b93134c57a1ccc7607c5e545264ad092c4a9/griffelib-2.0.0.tar.gz", hash = "sha256:e504d637a089f5cab9b5daf18f7645970509bf4f53eda8d79ed71cce8bd97934", size = 166312, upload-time = "2026-03-23T21:06:55.954Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/4d/51/c936033e16d12b627ea334aaaaf42229c37620d0f15593456ab69ab48161/griffelib-2.0.0-py3-none-any.whl", hash = "sha256:01284878c966508b6d6f1dbff9b6fa607bc062d8261c5c7253cb285b06422a7f", size = 142004, upload-time = "2026-02-09T19:09:40.561Z" }, ] @@ -1272,22 +1463,21 @@ http2 = [ [[package]] name = "huggingface-hub" -version = "1.7.2" +version = "0.36.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "filelock" }, { name = "fsspec" }, - { name = "hf-xet", marker = "platform_machine == 'AMD64' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'arm64' or platform_machine == 'x86_64'" }, - { name = "httpx" }, + { name = "hf-xet", marker = "platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'arm64' or platform_machine == 'x86_64'" }, { name = "packaging" }, { name = "pyyaml" }, + { name = "requests" }, { name = "tqdm" }, - { name = "typer" }, { name = "typing-extensions" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/19/15/eafc1c57bf0f8afffb243dcd4c0cceb785e956acc17bba4d9bf2ae21fc9c/huggingface_hub-1.7.2.tar.gz", hash = "sha256:7f7e294e9bbb822e025bdb2ada025fa4344d978175a7f78e824d86e35f7ab43b", size = 724684, upload-time = "2026-03-20T10:36:08.767Z" } +sdist = { url = "https://files.pythonhosted.org/packages/7c/b7/8cb61d2eece5fb05a83271da168186721c450eb74e3c31f7ef3169fa475b/huggingface_hub-0.36.2.tar.gz", hash = "sha256:1934304d2fb224f8afa3b87007d58501acfda9215b334eed53072dd5e815ff7a", size = 649782, upload-time = "2026-02-06T09:24:13.098Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/08/de/3ad061a05f74728927ded48c90b73521b9a9328c85d841bdefb30e01fb85/huggingface_hub-1.7.2-py3-none-any.whl", hash = "sha256:288f33a0a17b2a73a1359e2a5fd28d1becb2c121748c6173ab8643fb342c850e", size = 618036, upload-time = "2026-03-20T10:36:06.824Z" }, + { url = "https://files.pythonhosted.org/packages/a8/af/48ac8483240de756d2438c380746e7130d1c6f75802ef22f3c6d49982787/huggingface_hub-0.36.2-py3-none-any.whl", hash = "sha256:48f0c8eac16145dfce371e9d2d7772854a4f591bcb56c9cf548accf531d54270", size = 566395, upload-time = "2026-02-06T09:24:11.133Z" }, ] [[package]] @@ -1319,11 +1509,11 @@ wheels = [ [[package]] name = "idna" -version = "3.11" +version = "3.7" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/6f/6d/0703ccc57f3a7233505399edb88de3cbd678da106337b9fcde432b65ed60/idna-3.11.tar.gz", hash = "sha256:795dafcc9c04ed0c1fb032c2aa73654d8e8c5023a7df64a53f39190ada629902", size = 194582, upload-time = "2025-10-12T14:55:20.501Z" } +sdist = { url = "https://files.pythonhosted.org/packages/21/ed/f86a79a07470cb07819390452f178b3bef1d375f2ec021ecfc709fc7cf07/idna-3.7.tar.gz", hash = "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc", size = 189575, upload-time = "2024-04-11T03:34:43.276Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl", hash = "sha256:771a87f49d9defaf64091e6e6fe9c18d4833f140bd19464795bc32d966ca37ea", size = 71008, upload-time = "2025-10-12T14:55:18.883Z" }, + { url = "https://files.pythonhosted.org/packages/e5/3e/741d8c82801c347547f8a2a06aa57dbb1992be9e948df2ea0eda2c8b79e8/idna-3.7-py3-none-any.whl", hash = "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0", size = 66836, upload-time = "2024-04-11T03:34:41.447Z" }, ] [[package]] @@ -1488,6 +1678,24 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/26/b4/08c9d297edd5e1182506edecccbb88a92e1122a057953068cadac420ca5d/jinja2_humanize_extension-0.4.0-py3-none-any.whl", hash = "sha256:b6326e2da0f7d425338bebf58848e830421defbce785f12ae812e65128518156", size = 4769, upload-time = "2023-09-01T12:52:41.098Z" }, ] +[[package]] +name = "jmespath" +version = "1.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d3/59/322338183ecda247fb5d1763a6cbe46eff7222eaeebafd9fa65d4bf5cb11/jmespath-1.1.0.tar.gz", hash = "sha256:472c87d80f36026ae83c6ddd0f1d05d4e510134ed462851fd5f754c8c3cbb88d", size = 27377, upload-time = "2026-01-22T16:35:26.279Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/14/2f/967ba146e6d58cf6a652da73885f52fc68001525b4197effc174321d70b4/jmespath-1.1.0-py3-none-any.whl", hash = "sha256:a5663118de4908c91729bea0acadca56526eb2698e83de10cd116ae0f4e97c64", size = 20419, upload-time = "2026-01-22T16:35:24.919Z" }, +] + +[[package]] +name = "joblib" +version = "1.5.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/41/f2/d34e8b3a08a9cc79a50b2208a93dce981fe615b64d5a4d4abee421d898df/joblib-1.5.3.tar.gz", hash = "sha256:8561a3269e6801106863fd0d6d84bb737be9e7631e33aaed3fb9ce5953688da3", size = 331603, upload-time = "2025-12-15T08:41:46.427Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/91/984aca2ec129e2757d1e4e3c81c3fcda9d0f85b74670a094cc443d9ee949/joblib-1.5.3-py3-none-any.whl", hash = "sha256:5fc3c5039fc5ca8c0276333a188bbd59d6b7ab37fe6632daa76bc7f9ec18e713", size = 309071, upload-time = "2025-12-15T08:41:44.973Z" }, +] + [[package]] name = "json5" version = "0.13.0" @@ -1665,7 +1873,7 @@ dependencies = [ { name = "nbformat" }, { name = "packaging" }, { name = "prometheus-client" }, - { name = "pywinpty", marker = "os_name == 'nt'" }, + { name = "pywinpty", marker = "(os_name == 'nt' and platform_machine != 'aarch64' and sys_platform == 'linux') or (os_name == 'nt' and sys_platform != 'darwin' and sys_platform != 'linux')" }, { name = "pyzmq" }, { name = "send2trash" }, { name = "terminado" }, @@ -1683,7 +1891,7 @@ name = "jupyter-server-terminals" version = "0.5.4" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "pywinpty", marker = "os_name == 'nt'" }, + { name = "pywinpty", marker = "(os_name == 'nt' and platform_machine != 'aarch64' and sys_platform == 'linux') or (os_name == 'nt' and sys_platform != 'darwin' and sys_platform != 'linux')" }, { name = "terminado" }, ] sdist = { url = "https://files.pythonhosted.org/packages/f4/a7/bcd0a9b0cbba88986fe944aaaf91bfda603e5a50bda8ed15123f381a3b2f/jupyter_server_terminals-0.5.4.tar.gz", hash = "sha256:bbda128ed41d0be9020349f9f1f2a4ab9952a73ed5f5ac9f1419794761fb87f5", size = 31770, upload-time = "2026-01-14T16:53:20.213Z" } @@ -2163,6 +2371,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/9b/f7/4a5e785ec9fbd65146a27b6b70b6cdc161a66f2024e4b04ac06a67f5578b/mistune-3.2.0-py3-none-any.whl", hash = "sha256:febdc629a3c78616b94393c6580551e0e34cc289987ec6c35ed3f4be42d0eee1", size = 53598, upload-time = "2025-12-23T11:36:33.211Z" }, ] +[[package]] +name = "mpmath" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e0/47/dd32fa426cc72114383ac549964eecb20ecfd886d1e5ccf5340b55b02f57/mpmath-1.3.0.tar.gz", hash = "sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f", size = 508106, upload-time = "2023-03-07T16:47:11.061Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/43/e3/7d92a15f894aa0c9c4b49b8ee9ac9850d6e63b03c9c32c0367a13ae62209/mpmath-1.3.0-py3-none-any.whl", hash = "sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c", size = 536198, upload-time = "2023-03-07T16:47:09.197Z" }, +] + [[package]] name = "msgspec" version = "0.20.0" @@ -2276,6 +2493,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl", hash = "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c", size = 5195, upload-time = "2024-01-21T14:25:17.223Z" }, ] +[[package]] +name = "networkx" +version = "3.6.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6a/51/63fe664f3908c97be9d2e4f1158eb633317598cfa6e1fc14af5383f17512/networkx-3.6.1.tar.gz", hash = "sha256:26b7c357accc0c8cde558ad486283728b65b6a95d85ee1cd66bafab4c8168509", size = 2517025, upload-time = "2025-12-08T17:02:39.908Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/c9/b2622292ea83fbb4ec318f5b9ab867d0a28ab43c5717bb85b0a5f6b3b0a4/networkx-3.6.1-py3-none-any.whl", hash = "sha256:d47fbf302e7d9cbbb9e2555a0d267983d2aa476bac30e90dfbe5669bd57f3762", size = 2068504, upload-time = "2025-12-08T17:02:38.159Z" }, +] + [[package]] name = "nodeenv" version = "1.10.0" @@ -2358,6 +2584,155 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/1f/b6/7c0d4334c15983cec7f92a69e8ce9b1e6f31857e5ee3a413ac424e6bd63d/numpy-2.4.3-cp314-cp314t-win_arm64.whl", hash = "sha256:4d382735cecd7bcf090172489a525cd7d4087bc331f7df9f60ddc9a296cf208e", size = 10565454, upload-time = "2026-03-09T07:58:33.031Z" }, ] +[[package]] +name = "nvidia-cublas" +version = "13.1.0.3" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e1/a5/fce49e2ae977e0ccc084e5adafceb4f0ac0c8333cb6863501618a7277f67/nvidia_cublas-13.1.0.3-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:c86fc7f7ae36d7528288c5d88098edcb7b02c633d262e7ddbb86b0ad91be5df2", size = 542851226, upload-time = "2025-10-09T08:59:04.818Z" }, + { url = "https://files.pythonhosted.org/packages/e7/44/423ac00af4dd95a5aeb27207e2c0d9b7118702149bf4704c3ddb55bb7429/nvidia_cublas-13.1.0.3-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:ee8722c1f0145ab246bccb9e452153b5e0515fd094c3678df50b2a0888b8b171", size = 423133236, upload-time = "2025-10-09T08:59:32.536Z" }, +] + +[[package]] +name = "nvidia-cuda-cupti" +version = "13.0.85" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2a/2a/80353b103fc20ce05ef51e928daed4b6015db4aaa9162ed0997090fe2250/nvidia_cuda_cupti-13.0.85-py3-none-manylinux_2_25_aarch64.whl", hash = "sha256:796bd679890ee55fb14a94629b698b6db54bcfd833d391d5e94017dd9d7d3151", size = 10310827, upload-time = "2025-09-04T08:26:42.012Z" }, + { url = "https://files.pythonhosted.org/packages/33/6d/737d164b4837a9bbd202f5ae3078975f0525a55730fe871d8ed4e3b952b0/nvidia_cuda_cupti-13.0.85-py3-none-manylinux_2_25_x86_64.whl", hash = "sha256:4eb01c08e859bf924d222250d2e8f8b8ff6d3db4721288cf35d14252a4d933c8", size = 10715597, upload-time = "2025-09-04T08:26:51.312Z" }, +] + +[[package]] +name = "nvidia-cuda-nvrtc" +version = "13.0.88" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c3/68/483a78f5e8f31b08fb1bb671559968c0ca3a065ac7acabfc7cee55214fd6/nvidia_cuda_nvrtc-13.0.88-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:ad9b6d2ead2435f11cbb6868809d2adeeee302e9bb94bcf0539c7a40d80e8575", size = 90215200, upload-time = "2025-09-04T08:28:44.204Z" }, + { url = "https://files.pythonhosted.org/packages/b7/dc/6bb80850e0b7edd6588d560758f17e0550893a1feaf436807d64d2da040f/nvidia_cuda_nvrtc-13.0.88-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d27f20a0ca67a4bb34268a5e951033496c5b74870b868bacd046b1b8e0c3267b", size = 43015449, upload-time = "2025-09-04T08:28:20.239Z" }, +] + +[[package]] +name = "nvidia-cuda-runtime" +version = "13.0.96" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/87/4f/17d7b9b8e285199c58ce28e31b5c5bbaa4d8271af06a89b6405258245de2/nvidia_cuda_runtime-13.0.96-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:ef9bcbe90493a2b9d810e43d249adb3d02e98dd30200d86607d8d02687c43f55", size = 2261060, upload-time = "2025-10-09T08:55:15.78Z" }, + { url = "https://files.pythonhosted.org/packages/2e/24/d1558f3b68b1d26e706813b1d10aa1d785e4698c425af8db8edc3dced472/nvidia_cuda_runtime-13.0.96-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7f82250d7782aa23b6cfe765ecc7db554bd3c2870c43f3d1821f1d18aebf0548", size = 2243632, upload-time = "2025-10-09T08:55:36.117Z" }, +] + +[[package]] +name = "nvidia-cudnn-cu13" +version = "9.19.0.56" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-cublas", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/f1/84/26025437c1e6b61a707442184fa0c03d083b661adf3a3eecfd6d21677740/nvidia_cudnn_cu13-9.19.0.56-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:6ed29ffaee1176c612daf442e4dd6cfeb6a0caa43ddcbeb59da94953030b1be4", size = 433781201, upload-time = "2026-02-03T20:40:53.805Z" }, + { url = "https://files.pythonhosted.org/packages/a3/22/0b4b932655d17a6da1b92fa92ab12844b053bb2ac2475e179ba6f043da1e/nvidia_cudnn_cu13-9.19.0.56-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:d20e1734305e9d68889a96e3f35094d733ff1f83932ebe462753973e53a572bf", size = 366066321, upload-time = "2026-02-03T20:44:52.837Z" }, +] + +[[package]] +name = "nvidia-cufft" +version = "12.0.0.61" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-nvjitlink", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/8b/ae/f417a75c0259e85c1d2f83ca4e960289a5f814ed0cea74d18c353d3e989d/nvidia_cufft-12.0.0.61-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:2708c852ef8cd89d1d2068bdbece0aa188813a0c934db3779b9b1faa8442e5f5", size = 214053554, upload-time = "2025-09-04T08:31:38.196Z" }, + { url = "https://files.pythonhosted.org/packages/a8/2f/7b57e29836ea8714f81e9898409196f47d772d5ddedddf1592eadb8ab743/nvidia_cufft-12.0.0.61-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:6c44f692dce8fd5ffd3e3df134b6cdb9c2f72d99cf40b62c32dde45eea9ddad3", size = 214085489, upload-time = "2025-09-04T08:31:56.044Z" }, +] + +[[package]] +name = "nvidia-cufile" +version = "1.15.1.6" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3f/70/4f193de89a48b71714e74602ee14d04e4019ad36a5a9f20c425776e72cd6/nvidia_cufile-1.15.1.6-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:08a3ecefae5a01c7f5117351c64f17c7c62efa5fffdbe24fc7d298da19cd0b44", size = 1223672, upload-time = "2025-09-04T08:32:22.779Z" }, + { url = "https://files.pythonhosted.org/packages/ab/73/cc4a14c9813a8a0d509417cf5f4bdaba76e924d58beb9864f5a7baceefbf/nvidia_cufile-1.15.1.6-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:bdc0deedc61f548bddf7733bdc216456c2fdb101d020e1ab4b88d232d5e2f6d1", size = 1136992, upload-time = "2025-09-04T08:32:14.119Z" }, +] + +[[package]] +name = "nvidia-curand" +version = "10.4.0.35" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1e/72/7c2ae24fb6b63a32e6ae5d241cc65263ea18d08802aaae087d9f013335a2/nvidia_curand-10.4.0.35-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:133df5a7509c3e292aaa2b477afd0194f06ce4ea24d714d616ff36439cee349a", size = 61962106, upload-time = "2025-08-04T10:21:41.128Z" }, + { url = "https://files.pythonhosted.org/packages/a5/9f/be0a41ca4a4917abf5cb9ae0daff1a6060cc5de950aec0396de9f3b52bc5/nvidia_curand-10.4.0.35-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:1aee33a5da6e1db083fe2b90082def8915f30f3248d5896bcec36a579d941bfc", size = 59544258, upload-time = "2025-08-04T10:22:03.992Z" }, +] + +[[package]] +name = "nvidia-cusolver" +version = "12.0.4.66" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-cublas", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, + { name = "nvidia-cusparse", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, + { name = "nvidia-nvjitlink", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/c8/c3/b30c9e935fc01e3da443ec0116ed1b2a009bb867f5324d3f2d7e533e776b/nvidia_cusolver-12.0.4.66-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:02c2457eaa9e39de20f880f4bd8820e6a1cfb9f9a34f820eb12a155aa5bc92d2", size = 223467760, upload-time = "2025-09-04T08:33:04.222Z" }, + { url = "https://files.pythonhosted.org/packages/5f/67/cba3777620cdacb99102da4042883709c41c709f4b6323c10781a9c3aa34/nvidia_cusolver-12.0.4.66-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:0a759da5dea5c0ea10fd307de75cdeb59e7ea4fcb8add0924859b944babf1112", size = 200941980, upload-time = "2025-09-04T08:33:22.767Z" }, +] + +[[package]] +name = "nvidia-cusparse" +version = "12.6.3.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nvidia-nvjitlink", marker = "sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'win32'" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/f8/94/5c26f33738ae35276672f12615a64bd008ed5be6d1ebcb23579285d960a9/nvidia_cusparse-12.6.3.3-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:80bcc4662f23f1054ee334a15c72b8940402975e0eab63178fc7e670aa59472c", size = 162155568, upload-time = "2025-09-04T08:33:42.864Z" }, + { url = "https://files.pythonhosted.org/packages/fa/18/623c77619c31d62efd55302939756966f3ecc8d724a14dab2b75f1508850/nvidia_cusparse-12.6.3.3-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:2b3c89c88d01ee0e477cb7f82ef60a11a4bcd57b6b87c33f789350b59759360b", size = 145942937, upload-time = "2025-09-04T08:33:58.029Z" }, +] + +[[package]] +name = "nvidia-cusparselt-cu13" +version = "0.8.0" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/46/10/8dcd1175260706a2fc92a16a52e306b71d4c1ea0b0cc4a9484183399818a/nvidia_cusparselt_cu13-0.8.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:400c6ed1cf6780fc6efedd64ec9f1345871767e6a1a0a552a1ea0578117ea77c", size = 220791277, upload-time = "2025-08-13T19:22:40.982Z" }, + { url = "https://files.pythonhosted.org/packages/fd/53/43b0d71f4e702fa9733f8b4571fdca50a8813f1e450b656c239beff12315/nvidia_cusparselt_cu13-0.8.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:25e30a8a7323935d4ad0340b95a0b69926eee755767e8e0b1cf8dd85b197d3fd", size = 169884119, upload-time = "2025-08-13T19:23:41.967Z" }, +] + +[[package]] +name = "nvidia-nccl-cu13" +version = "2.28.9" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/39/55/1920646a2e43ffd4fc958536b276197ed740e9e0c54105b4bb3521591fc7/nvidia_nccl_cu13-2.28.9-py3-none-manylinux_2_18_aarch64.whl", hash = "sha256:01c873ba1626b54caa12272ed228dc5b2781545e0ae8ba3f432a8ef1c6d78643", size = 196561677, upload-time = "2025-11-18T05:49:03.45Z" }, + { url = "https://files.pythonhosted.org/packages/b0/b4/878fefaad5b2bcc6fcf8d474a25e3e3774bc5133e4b58adff4d0bca238bc/nvidia_nccl_cu13-2.28.9-py3-none-manylinux_2_18_x86_64.whl", hash = "sha256:e4553a30f34195f3fa1da02a6da3d6337d28f2003943aa0a3d247bbc25fefc42", size = 196493177, upload-time = "2025-11-18T05:49:17.677Z" }, +] + +[[package]] +name = "nvidia-nvjitlink" +version = "13.0.88" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/56/7a/123e033aaff487c77107195fa5a2b8686795ca537935a24efae476c41f05/nvidia_nvjitlink-13.0.88-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:13a74f429e23b921c1109976abefacc69835f2f433ebd323d3946e11d804e47b", size = 40713933, upload-time = "2025-09-04T08:35:43.553Z" }, + { url = "https://files.pythonhosted.org/packages/ab/2c/93c5250e64df4f894f1cbb397c6fd71f79813f9fd79d7cd61de3f97b3c2d/nvidia_nvjitlink-13.0.88-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:e931536ccc7d467a98ba1d8b89ff7fa7f1fa3b13f2b0069118cd7f47bff07d0c", size = 38768748, upload-time = "2025-09-04T08:35:20.008Z" }, +] + +[[package]] +name = "nvidia-nvshmem-cu13" +version = "3.4.5" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/dc/0f/05cc9c720236dcd2db9c1ab97fff629e96821be2e63103569da0c9b72f19/nvidia_nvshmem_cu13-3.4.5-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:6dc2a197f38e5d0376ad52cd1a2a3617d3cdc150fd5966f4aee9bcebb1d68fe9", size = 60215947, upload-time = "2025-09-06T00:32:20.022Z" }, + { url = "https://files.pythonhosted.org/packages/3c/35/a9bf80a609e74e3b000fef598933235c908fcefcef9026042b8e6dfde2a9/nvidia_nvshmem_cu13-3.4.5-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:290f0a2ee94c9f3687a02502f3b9299a9f9fe826e6d0287ee18482e78d495b80", size = 60412546, upload-time = "2025-09-06T00:32:41.564Z" }, +] + +[[package]] +name = "nvidia-nvtx" +version = "13.0.85" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c2/f3/d86c845465a2723ad7e1e5c36dcd75ddb82898b3f53be47ebd429fb2fa5d/nvidia_nvtx-13.0.85-py3-none-manylinux1_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:4936d1d6780fbe68db454f5e72a42ff64d1fd6397df9f363ae786930fd5c1cd4", size = 148047, upload-time = "2025-09-04T08:29:01.761Z" }, + { url = "https://files.pythonhosted.org/packages/a8/64/3708a90d1ebe202ffdeb7185f878a3c84d15c2b2c31858da2ce0583e2def/nvidia_nvtx-13.0.85-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:cb7780edb6b14107373c835bf8b72e7a178bac7367e23da7acb108f973f157a6", size = 148878, upload-time = "2025-09-04T08:28:53.627Z" }, +] + [[package]] name = "oauthlib" version = "3.3.1" @@ -2367,6 +2742,41 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/be/9c/92789c596b8df838baa98fa71844d84283302f7604ed565dafe5a6b5041a/oauthlib-3.3.1-py3-none-any.whl", hash = "sha256:88119c938d2b8fb88561af5f6ee0eec8cc8d552b7bb1f712743136eb7523b7a1", size = 160065, upload-time = "2025-06-19T22:48:06.508Z" }, ] +[[package]] +name = "opencv-python" +version = "4.13.0.92" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/fc/6f/5a28fef4c4a382be06afe3938c64cc168223016fa520c5abaf37e8862aa5/opencv_python-4.13.0.92-cp37-abi3-macosx_13_0_arm64.whl", hash = "sha256:caf60c071ec391ba51ed00a4a920f996d0b64e3e46068aac1f646b5de0326a19", size = 46247052, upload-time = "2026-02-05T07:01:25.046Z" }, + { url = "https://files.pythonhosted.org/packages/08/ac/6c98c44c650b8114a0fb901691351cfb3956d502e8e9b5cd27f4ee7fbf2f/opencv_python-4.13.0.92-cp37-abi3-macosx_14_0_x86_64.whl", hash = "sha256:5868a8c028a0b37561579bfb8ac1875babdc69546d236249fff296a8c010ccf9", size = 32568781, upload-time = "2026-02-05T07:01:41.379Z" }, + { url = "https://files.pythonhosted.org/packages/3e/51/82fed528b45173bf629fa44effb76dff8bc9f4eeaee759038362dfa60237/opencv_python-4.13.0.92-cp37-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:0bc2596e68f972ca452d80f444bc404e08807d021fbba40df26b61b18e01838a", size = 47685527, upload-time = "2026-02-05T06:59:11.24Z" }, + { url = "https://files.pythonhosted.org/packages/db/07/90b34a8e2cf9c50fe8ed25cac9011cde0676b4d9d9c973751ac7616223a2/opencv_python-4.13.0.92-cp37-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:402033cddf9d294693094de5ef532339f14ce821da3ad7df7c9f6e8316da32cf", size = 70460872, upload-time = "2026-02-05T06:59:19.162Z" }, + { url = "https://files.pythonhosted.org/packages/02/6d/7a9cc719b3eaf4377b9c2e3edeb7ed3a81de41f96421510c0a169ca3cfd4/opencv_python-4.13.0.92-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:bccaabf9eb7f897ca61880ce2869dcd9b25b72129c28478e7f2a5e8dee945616", size = 46708208, upload-time = "2026-02-05T06:59:15.419Z" }, + { url = "https://files.pythonhosted.org/packages/fd/55/b3b49a1b97aabcfbbd6c7326df9cb0b6fa0c0aefa8e89d500939e04aa229/opencv_python-4.13.0.92-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:620d602b8f7d8b8dab5f4b99c6eb353e78d3fb8b0f53db1bd258bb1aa001c1d5", size = 72927042, upload-time = "2026-02-05T06:59:23.389Z" }, + { url = "https://files.pythonhosted.org/packages/fb/17/de5458312bcb07ddf434d7bfcb24bb52c59635ad58c6e7c751b48949b009/opencv_python-4.13.0.92-cp37-abi3-win32.whl", hash = "sha256:372fe164a3148ac1ca51e5f3ad0541a4a276452273f503441d718fab9c5e5f59", size = 30932638, upload-time = "2026-02-05T07:02:14.98Z" }, + { url = "https://files.pythonhosted.org/packages/e9/a5/1be1516390333ff9be3a9cb648c9f33df79d5096e5884b5df71a588af463/opencv_python-4.13.0.92-cp37-abi3-win_amd64.whl", hash = "sha256:423d934c9fafb91aad38edf26efb46da91ffbc05f3f59c4b0c72e699720706f5", size = 40212062, upload-time = "2026-02-05T07:02:12.724Z" }, +] + +[[package]] +name = "opencv-python-headless" +version = "4.10.0.84" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2f/7e/d20f68a5f1487adf19d74378d349932a386b1ece3be9be9915e5986db468/opencv-python-headless-4.10.0.84.tar.gz", hash = "sha256:f2017c6101d7c2ef8d7bc3b414c37ff7f54d64413a1847d89970b6b7069b4e1a", size = 95117755, upload-time = "2024-06-17T18:32:15.606Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1c/9b/583c8d9259f6fc19413f83fd18dd8e6cbc8eefb0b4dc6da52dd151fe3272/opencv_python_headless-4.10.0.84-cp37-abi3-macosx_11_0_arm64.whl", hash = "sha256:a4f4bcb07d8f8a7704d9c8564c224c8b064c63f430e95b61ac0bffaa374d330e", size = 54835657, upload-time = "2024-06-18T04:58:12.904Z" }, + { url = "https://files.pythonhosted.org/packages/c0/7b/b4c67f5dad7a9a61c47f7a39e4050e8a4628bd64b3c3daaeb755d759f928/opencv_python_headless-4.10.0.84-cp37-abi3-macosx_12_0_x86_64.whl", hash = "sha256:5ae454ebac0eb0a0b932e3406370aaf4212e6a3fdb5038cc86c7aea15a6851da", size = 56475470, upload-time = "2024-06-17T19:34:39.604Z" }, + { url = "https://files.pythonhosted.org/packages/91/61/f838ce2046f3ec3591ea59ea3549085e399525d3b4558c4ed60b55ed88c0/opencv_python_headless-4.10.0.84-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:46071015ff9ab40fccd8a163da0ee14ce9846349f06c6c8c0f2870856ffa45db", size = 29329705, upload-time = "2024-06-17T20:00:49.406Z" }, + { url = "https://files.pythonhosted.org/packages/d1/09/248f86a404567303cdf120e4a301f389b68e3b18e5c0cc428de327da609c/opencv_python_headless-4.10.0.84-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:377d08a7e48a1405b5e84afcbe4798464ce7ee17081c1c23619c8b398ff18295", size = 49858781, upload-time = "2024-06-17T18:31:49.495Z" }, + { url = "https://files.pythonhosted.org/packages/30/c0/66f88d58500e990a9a0a5c06f98862edf1d0a3a430781218a8c193948438/opencv_python_headless-4.10.0.84-cp37-abi3-win32.whl", hash = "sha256:9092404b65458ed87ce932f613ffbb1106ed2c843577501e5768912360fc50ec", size = 28675298, upload-time = "2024-06-17T18:28:56.897Z" }, + { url = "https://files.pythonhosted.org/packages/26/d0/22f68eb23eea053a31655960f133c0be9726c6a881547e6e9e7e2a946c4f/opencv_python_headless-4.10.0.84-cp37-abi3-win_amd64.whl", hash = "sha256:afcf28bd1209dd58810d33defb622b325d3cbe49dcd7a43a902982c33e5fad05", size = 38754031, upload-time = "2024-06-17T18:29:04.871Z" }, +] + [[package]] name = "openpyxl" version = "3.1.5" @@ -2588,6 +2998,45 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl", hash = "sha256:7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523", size = 63772, upload-time = "2023-11-25T06:56:14.81Z" }, ] +[[package]] +name = "pi-heif" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pillow" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/34/4a/4a18057a7b64254abdcc4f78d92503fc4f5b8fcc66da118ba87989111ee8/pi_heif-1.3.0.tar.gz", hash = "sha256:58151840d0d60507330654a466b06cbf7ca8fb3759eadb5234d70b4dc2bc990c", size = 17131114, upload-time = "2026-02-27T12:22:40.544Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1e/eb/4cb3f9789c2fff42ca0b40b0f57fc2a72f68cf62d54c836864cbc2032ec6/pi_heif-1.3.0-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:09cba007708cef90f95c15c382ece6f51e7ba33fb7fce96b54d786b02c9544e6", size = 1047196, upload-time = "2026-02-27T12:21:58.035Z" }, + { url = "https://files.pythonhosted.org/packages/d2/58/5aeeec1b7f0030902f9d96b168f26b7adaae0c8f758262bba0fa489036a4/pi_heif-1.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:04ce68ac95103d59b5c8fd25a8a51b40541e76d161d0eff834b9a9a3350fa401", size = 942299, upload-time = "2026-02-27T12:21:59.041Z" }, + { url = "https://files.pythonhosted.org/packages/b2/5b/d706a05b96945aabb122932028f14c21524a81e9655f38fad40de9c096f1/pi_heif-1.3.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7aa8e52e3d736cc07dd0657f87c841be069954a7717ecd6fd24ca8afcc16f6cb", size = 1361016, upload-time = "2026-02-27T12:22:00.039Z" }, + { url = "https://files.pythonhosted.org/packages/90/78/c7e141f8a9943d711a63d1f9c55b4f69b6cad0718d8c80e3a65ca3d42a61/pi_heif-1.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ed464485f7df1d1b575dc1ff539182b09b8312d06c141882bbcfd428dc842cb1", size = 1489604, upload-time = "2026-02-27T12:22:01.096Z" }, + { url = "https://files.pythonhosted.org/packages/a5/26/06f0ba0fcb6a800d8afa73e63c78be6baaae0c442d17da13ff3e7d9033af/pi_heif-1.3.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6c2f7d26435d25be915914aba7ed383025a594453e3e84fd297975a9584b580c", size = 2343656, upload-time = "2026-02-27T12:22:02.153Z" }, + { url = "https://files.pythonhosted.org/packages/87/f5/9deb76f59f36451dea69ebf0330171c1f953ae514dd03ac82ef2aa902ee3/pi_heif-1.3.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:26b3d101f838fbacebaa63e0c8b60a4333ba4d3fe93f4a3b51169ecaaf13c0ac", size = 2507970, upload-time = "2026-02-27T12:22:03.23Z" }, + { url = "https://files.pythonhosted.org/packages/95/08/41c95822b8bbbd61a15e34a25e9a170035a17ef64bf12f95ad0040441b2e/pi_heif-1.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:633b6053875b8e482538fdc18cf66ba1f94ce7704d244aa325ed7197073155ee", size = 1946959, upload-time = "2026-02-27T12:22:04.672Z" }, + { url = "https://files.pythonhosted.org/packages/87/a3/e921a28ea4b24bbd96cb9e1cd9272ab9a6525e875dcf1fadaeaf73369e81/pi_heif-1.3.0-cp313-cp313-macosx_10_15_x86_64.whl", hash = "sha256:1b151e3fb9a0ac4f3729da083eacca2ec4389d312d879ac4e01bb6a1c5fa0812", size = 1047186, upload-time = "2026-02-27T12:22:05.778Z" }, + { url = "https://files.pythonhosted.org/packages/68/c9/ea00b10871c63bc856760a47f9a40b2d6c3c50aaff2e7bc336b6f1205749/pi_heif-1.3.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:ee96ef255f37df9ed0b2d7865e6a746ff594d328c510ee457913f2f677c4f759", size = 942286, upload-time = "2026-02-27T12:22:06.799Z" }, + { url = "https://files.pythonhosted.org/packages/36/28/3accdd524cc56417df99a87d0e1416656100fe3e13e6aee42f5657540eb5/pi_heif-1.3.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d73d35540119e3ccce88a070fbe10e1cf29d119b149bd344c40ac30824edc8f5", size = 1361062, upload-time = "2026-02-27T12:22:08.56Z" }, + { url = "https://files.pythonhosted.org/packages/f2/11/e68468fea402318a1a422467b1077a053ac192281bdd04625a452c3e13ad/pi_heif-1.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dd610ad8bc319e78c65e106da2ab71f3f4ba85851f77c1634e7c2352a09e7f97", size = 1489616, upload-time = "2026-02-27T12:22:09.815Z" }, + { url = "https://files.pythonhosted.org/packages/46/9b/470790bb3f37ac52edaba9f4b6ec315060fb0e9114e6ac9b8a704754f1d3/pi_heif-1.3.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:baedb73888a9d7c2dc2cfe86831c725b6ee640d6405b709d801e09409a7d0da6", size = 2343656, upload-time = "2026-02-27T12:22:11.199Z" }, + { url = "https://files.pythonhosted.org/packages/15/50/17dcf1f8c05eb1cc0ebd479faba3f5832eb5f2dc477ce48d772bebca196c/pi_heif-1.3.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:74488dc873986f584beb27c25fa1484a9d9ae10272f442a2571ca771915c28ea", size = 2508037, upload-time = "2026-02-27T12:22:12.212Z" }, + { url = "https://files.pythonhosted.org/packages/c9/6f/5c246d55bcdcfbfdc3d43dbc29c8a845c6b1c7739c4c88b0b29b93956003/pi_heif-1.3.0-cp313-cp313-win_amd64.whl", hash = "sha256:0ce66f8ce661f5fb15e73ed91f697cec116ce41a6c6849e8b70ead1d3ad60973", size = 1946953, upload-time = "2026-02-27T12:22:13.532Z" }, + { url = "https://files.pythonhosted.org/packages/ea/e6/a4c05ae1fe025f5fe3839b8ab277a6dc861c5feac5214e286bc277ae5ae3/pi_heif-1.3.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:c00a918a20fb8da1883b3142506c0acb52ecff7901014962aa8d30b3ab78a5e2", size = 1047211, upload-time = "2026-02-27T12:22:14.835Z" }, + { url = "https://files.pythonhosted.org/packages/86/fe/b99741aa4ebd31a28ed4f1bb5703b242211b2968aec15f574a7c75993c89/pi_heif-1.3.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:e224db6932794bde6d18a2f4e417785a3944b8a61a6b582d8473026b5cdf0408", size = 942366, upload-time = "2026-02-27T12:22:15.942Z" }, + { url = "https://files.pythonhosted.org/packages/f9/2b/2a07a116a843a70b4f1320d75727ec2ab616609a4f84201fcbeb72afc685/pi_heif-1.3.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ab4764fbf8ec958c6c2b3643a2fa313a7f0275649783ce99ed68a1ce5b71ea96", size = 1361322, upload-time = "2026-02-27T12:22:16.939Z" }, + { url = "https://files.pythonhosted.org/packages/56/3c/93fb4aa1734722d4182ad521832c8e5009934d453b157e994b36e4444c02/pi_heif-1.3.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f84471adc59a80b06476aba241cfd7c56550ba891a3b6525f5b7aa8eadf8166b", size = 1489732, upload-time = "2026-02-27T12:22:17.977Z" }, + { url = "https://files.pythonhosted.org/packages/2a/5c/62f7be4abb279c8ff69bad8c811cdb1224618ab0c5c857ffdb9b4149dc28/pi_heif-1.3.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:dc2cd95a871d26d604d2a6bbf99c4e7644afbe0d302cdf34065deca41f8a2c30", size = 2343780, upload-time = "2026-02-27T12:22:18.996Z" }, + { url = "https://files.pythonhosted.org/packages/e5/7c/26bdeb9f632058d8558e409c37dddd069e58c726286247d693ecef833516/pi_heif-1.3.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:71f568ec93271bedd53917e59f617cf2410dbd8ca307e4bd55e319110d253bc1", size = 2508113, upload-time = "2026-02-27T12:22:20.066Z" }, + { url = "https://files.pythonhosted.org/packages/60/6b/42a1f0c4544d77d87116bb9ca77040566254ec45de5bca5e7201e0b56a6e/pi_heif-1.3.0-cp314-cp314-win_amd64.whl", hash = "sha256:caefadb3a8fcfb7857cd065038b24263b286ddd2ecfd8c8a6c01618d00cc8543", size = 2015496, upload-time = "2026-02-27T12:22:21.102Z" }, + { url = "https://files.pythonhosted.org/packages/95/2a/03baff344d2d664ca955c8d8797920bae49d66c8928134c0a071ab6e0319/pi_heif-1.3.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:3ffaf9a8a73c686cf6c24aedc9151f06c776591db47ff4245ee8a41a23f1cd22", size = 1048171, upload-time = "2026-02-27T12:22:22.137Z" }, + { url = "https://files.pythonhosted.org/packages/33/06/6b7f6f7e7d5bb08c720d04b15c67d4802154d4516feb371e46dd3d0f6698/pi_heif-1.3.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:42db92eb41825e9a3cb58a497bd382e61478dd4e2b0e531cdec3f5ddc2f6cefc", size = 943106, upload-time = "2026-02-27T12:22:23.189Z" }, + { url = "https://files.pythonhosted.org/packages/5c/21/75c676f96307eef0da33955481658adbedfff85c37f943b9ed528f633a76/pi_heif-1.3.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1ea595ea1fdd64dbcc29e4ab4e84902b22ef16812a12f459e876b3928d35c848", size = 1366398, upload-time = "2026-02-27T12:22:24.489Z" }, + { url = "https://files.pythonhosted.org/packages/77/aa/b8fb005c0e09dfee67fc4965d12bee41a2333e004574e47e1290a16bf851/pi_heif-1.3.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:86d10a002567de7e7b2da6ae993fb5c99d6f6a727c9b457e238987b047ad7f98", size = 1493859, upload-time = "2026-02-27T12:22:25.634Z" }, + { url = "https://files.pythonhosted.org/packages/d2/55/f76fba8d8ca1b95d89673e72067455ea1ba85c8d4cacacb0cee4c4882f52/pi_heif-1.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:95651a2a628ea1560e9f2669f9bb58ecbd02436cc52b6a8f2fff91d4f73107fb", size = 2348962, upload-time = "2026-02-27T12:22:26.992Z" }, + { url = "https://files.pythonhosted.org/packages/57/5a/af51148cf5804a120615548e5ec2fee2f22c19b1d88a0ee705a9f09b9f75/pi_heif-1.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:437f424d8d8bad9f4f23ee4febd8e93b4a2800746e45f676f4543435a7938ca1", size = 2512181, upload-time = "2026-02-27T12:22:29.11Z" }, + { url = "https://files.pythonhosted.org/packages/be/be/83f6f42c1a82cd3eb4a4d85abad9dbf917d4340ece240ba403ee4150de88/pi_heif-1.3.0-cp314-cp314t-win_amd64.whl", hash = "sha256:eba226ab71b1f6fde28a020bc3aeb4c6f2daad1cb7784f7dd57f85f9ef204892", size = 2016126, upload-time = "2026-02-27T12:22:30.377Z" }, +] + [[package]] name = "pillow" version = "12.1.1" @@ -2657,6 +3106,59 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/ec/d2/de599c95ba0a973b94410477f8bf0b6f0b5e67360eb89bcb1ad365258beb/pillow-12.1.1-cp314-cp314t-win_arm64.whl", hash = "sha256:7b03048319bfc6170e93bd60728a1af51d3dd7704935feb228c4d4faab35d334", size = 2546446, upload-time = "2026-02-11T04:22:50.342Z" }, ] +[[package]] +name = "pillow-avif-plugin" +version = "1.5.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/10/45/c779c020c0972a771778544acd1a1ee0bce83e51f4d2f5f1bda5d53bd373/pillow_avif_plugin-1.5.5.tar.gz", hash = "sha256:e97956a62fc4f252e2a54644312839e194ec09b693f2f7b4d28c44cd747baf9d", size = 20660, upload-time = "2026-01-22T20:33:47.11Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/53/ad/3f921cbde96b98db8f4300b02df97ee292bc4b2d03b6e12d21a6bbf8aaca/pillow_avif_plugin-1.5.5-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:e69411edfcd17907038c00a46c7e2ebc2c10f14895e23a853909c34ee66ffbda", size = 5097767, upload-time = "2026-01-22T20:31:05.193Z" }, + { url = "https://files.pythonhosted.org/packages/92/c6/483a8a5f4a5258a685821a055a6e0e839b7d326fe3667d1d9d4e98480c13/pillow_avif_plugin-1.5.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2252182b406327dfb94e0406f8d0b5f45b4eb921e42f1574555d094359f47f86", size = 3817683, upload-time = "2026-01-22T20:31:06.692Z" }, + { url = "https://files.pythonhosted.org/packages/25/88/2d649aa184ef4bfa35ca83dc85b301c3d620d41641f7a2746ae97a253c0d/pillow_avif_plugin-1.5.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:3c2c7ffff57675240ca0aed8f3050bc58409f8656274a1caa24d41157b98ba3b", size = 4045137, upload-time = "2026-01-22T20:31:08.134Z" }, + { url = "https://files.pythonhosted.org/packages/94/74/5b6f8552c882816d7d972a1a68764042b2ec48a932b31b05ed3129180738/pillow_avif_plugin-1.5.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:865902db0b4008bdd78004bb69aab796b1101e04e6175a83577042037485bf85", size = 7687054, upload-time = "2026-01-22T20:31:09.617Z" }, + { url = "https://files.pythonhosted.org/packages/f4/f9/23f2b8624832b0cea8fee96395d8d68e4c197b544270bdbbec560d43d416/pillow_avif_plugin-1.5.5-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:1d3d48e5d3468be246fdff58e711ad0dcba5c7d6730006bab8b9c53d7dc4bddf", size = 4059366, upload-time = "2026-01-22T20:31:11.193Z" }, + { url = "https://files.pythonhosted.org/packages/35/9e/390200bf6f9b25398584dfcb70c20c0e8880f6d3f1648c6b9849effcfad5/pillow_avif_plugin-1.5.5-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:a7bafcc8579f1ab1e8ec3f9d249528399fa50c563381e52bcf56dba797b957a3", size = 5512170, upload-time = "2026-01-22T20:31:12.451Z" }, + { url = "https://files.pythonhosted.org/packages/25/18/5363bd9e00dfdd6ed1153330d90d5875934446001d14e8713fcec3d94a32/pillow_avif_plugin-1.5.5-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:905b57c6b4ea323cf6731b8f8ee0d4bcc01847612c80b5fde8f9240cf3d06c75", size = 4378889, upload-time = "2026-01-22T20:31:14.06Z" }, + { url = "https://files.pythonhosted.org/packages/70/ec/d5d51021418ecad8650dc251bcec59db71258dec3fecd8224d515bea30ee/pillow_avif_plugin-1.5.5-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:9893395d7fe2f46b500b4c2766df4721a569bfb9fd7a2e79658ab71e9c56847b", size = 5759464, upload-time = "2026-01-22T20:31:15.428Z" }, + { url = "https://files.pythonhosted.org/packages/ec/82/b8545508013d571c2aa2e1b0093c0b8313e250495a6a7312d623dfe427e2/pillow_avif_plugin-1.5.5-cp312-cp312-win_amd64.whl", hash = "sha256:f3bffa2f01b3bac6cfebc47a1977344f1ab1400aaa78af437ab73ff1a6f865b4", size = 9874912, upload-time = "2026-01-22T20:31:17.177Z" }, + { url = "https://files.pythonhosted.org/packages/0a/07/5c8ad716fe103b66db85d756e635985084ea2965484374dc9d8fec6153d7/pillow_avif_plugin-1.5.5-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:dc277004ea675f629ac51155275f69bb18b0b7bf3ed46a788fc4a70f79b8e2bf", size = 5097763, upload-time = "2026-01-22T20:31:19.142Z" }, + { url = "https://files.pythonhosted.org/packages/da/6d/b7e9573440fed7a0c1f8861f72ae74718d873c49517e79ccc623ba9a0944/pillow_avif_plugin-1.5.5-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:5735b1373faaa890a77b91971afcc60b14cbeab3960630a76011ebdb3e6d5fe6", size = 3817677, upload-time = "2026-01-22T20:31:20.604Z" }, + { url = "https://files.pythonhosted.org/packages/ca/1b/b2ee574f3a873971bbe6ee6c3733200af994eff61f3eed84ea8066642d9e/pillow_avif_plugin-1.5.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:0a569a81287d141b6d3b8652663eac18403dfcc1662bb2e9f8f11afa3b956d13", size = 4045056, upload-time = "2026-01-22T20:31:22.162Z" }, + { url = "https://files.pythonhosted.org/packages/87/c2/3c16f3741a2ecf397af314035e49e9199d14381013ff2679f283ab79e9f4/pillow_avif_plugin-1.5.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:25b843855bd7f51d64def876d570836432576ccb10926744cef6e7b2bf851bea", size = 7686972, upload-time = "2026-01-22T20:31:23.548Z" }, + { url = "https://files.pythonhosted.org/packages/2e/c3/67716bc829df33ea5e6384d067b00a5ec9a5f50f1e53dd0af7e973236f0c/pillow_avif_plugin-1.5.5-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:e60851ea25d0674650416c915377078120f078714b708aa40492765768f7595e", size = 4059374, upload-time = "2026-01-22T20:31:24.911Z" }, + { url = "https://files.pythonhosted.org/packages/34/86/e6ad9a25a63e6cfcdd4d4fe5600a64e94468c8ee85b2946fae95437c9348/pillow_avif_plugin-1.5.5-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:b4012226dcac34f4e4ed35ed367463f8565e5f67982a9d375a39a9c377265707", size = 5512185, upload-time = "2026-01-22T20:31:26.799Z" }, + { url = "https://files.pythonhosted.org/packages/93/6e/d44826e765bc36c42fa30e94a4fdfc060ee0cd0aa832ee53ad72e45fdc2b/pillow_avif_plugin-1.5.5-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:41f91f044c34adf7b22e0e39fcdc5281df8894d1d694da09f4fc1551d2699dc2", size = 4378888, upload-time = "2026-01-22T20:31:28.91Z" }, + { url = "https://files.pythonhosted.org/packages/a7/2e/8b26a17fd308ac77bba4a044e86d16e00db2d89e776f8533f06b9517d5ea/pillow_avif_plugin-1.5.5-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e7bd1199004c61e820ef6d6bf21ab2bf76d6daea7893fe8fb06f2ddc146dfe48", size = 5759472, upload-time = "2026-01-22T20:31:30.403Z" }, + { url = "https://files.pythonhosted.org/packages/87/07/d432621fabce0c1eea7b92cf47186961a1c9605d7a23c0f54d25b35822c7/pillow_avif_plugin-1.5.5-cp313-cp313-win_amd64.whl", hash = "sha256:1831d3d75671e1c0a936ffceb98bc9fb52972088de7e4f7ec8ffb4478e241f62", size = 9869801, upload-time = "2026-01-22T20:31:32.029Z" }, + { url = "https://files.pythonhosted.org/packages/36/db/4e59f0982986fad0c58528c984f05c5ca06000d4d5fb356235a80cec5bbb/pillow_avif_plugin-1.5.5-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:c98ce14366b5f55272b44de22886e1d398ce33448536d0fd31224665291f8e13", size = 5098135, upload-time = "2026-01-22T20:31:34.253Z" }, + { url = "https://files.pythonhosted.org/packages/76/a5/15c48491809a3b94445474c9ffcfaca1a84a34219c2c68da6449c964eed0/pillow_avif_plugin-1.5.5-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:bbd18def950386cab6383054d8858b73fc239ddfe8a5c54ca9cefbe07760fb60", size = 3818033, upload-time = "2026-01-22T20:31:35.528Z" }, + { url = "https://files.pythonhosted.org/packages/b8/e5/cd3cde9f10e831e4239119c8ecb733ad614ea6096e708742edf09bf1ad21/pillow_avif_plugin-1.5.5-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:b7b596ccb0be5289ab320be6b5dc777b2c09b0ede07cc353735232cc4c73f428", size = 4050123, upload-time = "2026-01-22T20:32:37Z" }, + { url = "https://files.pythonhosted.org/packages/0a/a4/653b81ff69e9225c117e009a07d0f0fed6195c51d4aa1950c94d2b25085f/pillow_avif_plugin-1.5.5-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:787027f3cbb821627c36398b2a6c4b4c97de500e8ba966203de58e4e17943693", size = 7691199, upload-time = "2026-01-22T20:32:38.534Z" }, + { url = "https://files.pythonhosted.org/packages/80/c9/0f64fedd3573e9486956a9f68473a5d2d7be1040568ff8e91ceaa64b2b8d/pillow_avif_plugin-1.5.5-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:c0abc4b7406d23c386bfeda9620e4c9bd54b65ccb85b42dba82c6b08aedf99d7", size = 4064545, upload-time = "2026-01-22T20:32:40.378Z" }, + { url = "https://files.pythonhosted.org/packages/5c/60/7541e9771fefeade486c4527b65d5beac7aeda48a6e4f99b73451e3f02fa/pillow_avif_plugin-1.5.5-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:aa82bb5f0080ae6827b4cd0a93c906cb77c0958431ed73e3b12b1f8d1ed66d0a", size = 5516645, upload-time = "2026-01-22T20:32:41.701Z" }, + { url = "https://files.pythonhosted.org/packages/2a/3f/04e4bd7ab8ece4f61098140c11960af0cea5b00e7b1ceb9a7f4306de050b/pillow_avif_plugin-1.5.5-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:fe3d66eceae96094b39b3b5d7643d310ce59680f2138da59742582054830c882", size = 4383725, upload-time = "2026-01-22T20:32:43.047Z" }, + { url = "https://files.pythonhosted.org/packages/b0/00/43e50f35876afe5e183685528472a85ce1d7a40972f9eb0c820a3bc7b74b/pillow_avif_plugin-1.5.5-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:6e98edb1ce487898668c93599fbb004fab68ad9d48cef11dab3675c5960fef95", size = 5763593, upload-time = "2026-01-22T20:32:44.317Z" }, + { url = "https://files.pythonhosted.org/packages/73/b6/7de1618fe560378874ac63c6297e45856c7541098ddc6580336f83b49f78/pillow_avif_plugin-1.5.5-cp313-cp313t-win_amd64.whl", hash = "sha256:5e2d39f9c4400e810c951b3d1d4310142fb3af43134a07c995ab1f7275b82b5e", size = 9870375, upload-time = "2026-01-22T20:32:45.995Z" }, + { url = "https://files.pythonhosted.org/packages/c1/d2/abe74424802cbdbe3fda1aa3aa251c6863a8f8e16c481737b1f885cd21a0/pillow_avif_plugin-1.5.5-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:6c39a5abe3316551329c998ea14b24034f0e8a150c10b590121367a807e47c5e", size = 5097835, upload-time = "2026-01-22T20:32:48.184Z" }, + { url = "https://files.pythonhosted.org/packages/b8/f5/1bd31217ecf533f874a2767caa67534371bb22b716d94dd5e888dddac6af/pillow_avif_plugin-1.5.5-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:2026acc9697b64adaa328b7e8504b579d30e45f46656953a8421aafa7b6f9b33", size = 3817665, upload-time = "2026-01-22T20:32:49.781Z" }, + { url = "https://files.pythonhosted.org/packages/85/f2/5af680b42114a0a361df37c828ba9455e2699084b4a074bf89bf1005909c/pillow_avif_plugin-1.5.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:7524b9d0757a1ff4ed1337188d690b68949e3f521e02246b1469d49449294080", size = 4045282, upload-time = "2026-01-22T20:32:51.028Z" }, + { url = "https://files.pythonhosted.org/packages/d6/10/4bacc223306fad6b8823f15d0561ef6e267653a3015c7806e1d2a3c2a858/pillow_avif_plugin-1.5.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:705ddd136f03b681f5be28e72798204c957658c240d2a874d8656efecdf82b75", size = 7687078, upload-time = "2026-01-22T20:32:52.303Z" }, + { url = "https://files.pythonhosted.org/packages/13/f2/797f0631f21b5fab96b18479f1398cc3e177cfde5b97ffc76d4f07aa4953/pillow_avif_plugin-1.5.5-cp314-cp314-manylinux_2_28_aarch64.whl", hash = "sha256:7d3e56a596421a3af7970cf1a64767dc9fc76dc7b364b36919eb75b8b5ec5fcd", size = 4059618, upload-time = "2026-01-22T20:32:53.673Z" }, + { url = "https://files.pythonhosted.org/packages/d2/5a/f67fd5cae4e51173c51483f84b878af336556d14e7c6e71421341c687782/pillow_avif_plugin-1.5.5-cp314-cp314-manylinux_2_28_x86_64.whl", hash = "sha256:0ac4ce64b66b0b6eb96484b6a9985d06f56a4b57f357f6cd1d040543f6bedf1a", size = 5512333, upload-time = "2026-01-22T20:32:54.996Z" }, + { url = "https://files.pythonhosted.org/packages/1a/07/dc7e99b5fb893e3fefebce79cc3c523b05c4f57f2f559e5763898af0f3f1/pillow_avif_plugin-1.5.5-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:f102dec7f482b5ca999a923933e440a82bfd8ae2eb5893fe144ef8f47cf8d971", size = 4379122, upload-time = "2026-01-22T20:32:56.326Z" }, + { url = "https://files.pythonhosted.org/packages/3f/6f/8e0787885be7624e6b2b7abf271587ea31e8a7afb52ce2c279b98581ec67/pillow_avif_plugin-1.5.5-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:e45fbda332affe999c250de21f4aca277b3fe6805c8fce182006e854e6b4de5c", size = 5759628, upload-time = "2026-01-22T20:32:57.978Z" }, + { url = "https://files.pythonhosted.org/packages/a8/59/f7829c6683b310308a9bae037293b5ca5844de91a93e4744996cafe74b29/pillow_avif_plugin-1.5.5-cp314-cp314-win_amd64.whl", hash = "sha256:a6c6c70dc227d2810ae1e51e39e6f1adccd310a284e1f788aeb54a52fb95c05b", size = 9959135, upload-time = "2026-01-22T20:32:59.956Z" }, + { url = "https://files.pythonhosted.org/packages/9b/7d/b4b1332cd8108f9f4c171506d582f083e6df2631923976bf768dc81b5a17/pillow_avif_plugin-1.5.5-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:cff2d641b86a72c6767f19f0c5fdab54289d1fa9457bcacb19c030b620ca461e", size = 5098234, upload-time = "2026-01-22T20:33:01.701Z" }, + { url = "https://files.pythonhosted.org/packages/27/54/029a29d04e6269bdb25171d1646b23c1e2dad15c84fe5c0398c76790113c/pillow_avif_plugin-1.5.5-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:cf462e4f1463a942a77f7222b8bc4d51f0580aed49cedb36c7cfe35028a9f67b", size = 3818041, upload-time = "2026-01-22T20:33:03.616Z" }, + { url = "https://files.pythonhosted.org/packages/49/97/69fdcfe81628a1a636d92e779fc27a8bb84f036996f504090f03ca927424/pillow_avif_plugin-1.5.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d410c8f7a8f570f93cbbeffcde22574cbf57bc8e5de8ccc973530a74f1aaeee2", size = 4050268, upload-time = "2026-01-22T20:33:05.428Z" }, + { url = "https://files.pythonhosted.org/packages/27/b7/42d45dade43b08d6656982b57abef929a1af82ffe1c794128734dbb670fe/pillow_avif_plugin-1.5.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:73d37914ad82bec6583c5df70dea5ccb4d2f5435ca3c48e50b1c5fff52c92d6e", size = 7691352, upload-time = "2026-01-22T20:33:06.982Z" }, + { url = "https://files.pythonhosted.org/packages/13/28/359ff8ea591f374170949392ec20b91de1bf1149e9cc9a8d060b7bb077e8/pillow_avif_plugin-1.5.5-cp314-cp314t-manylinux_2_28_aarch64.whl", hash = "sha256:9441006c3d242dfb7b54e9294a747b578f620446998a2384cfd2926cc0c0d107", size = 4064664, upload-time = "2026-01-22T20:33:09.977Z" }, + { url = "https://files.pythonhosted.org/packages/f3/08/c8abcff61c73e3c199fd19766b792c48bc41c35cab670c9e7ea6a4c207c4/pillow_avif_plugin-1.5.5-cp314-cp314t-manylinux_2_28_x86_64.whl", hash = "sha256:465f2aa24ed03d4ad5545ab4cd7627074c181cc0e96715419cd6c8fcff509779", size = 5516782, upload-time = "2026-01-22T20:33:11.38Z" }, + { url = "https://files.pythonhosted.org/packages/5f/24/7b6f75a48d2c2b8461b461bad834b2294277040f643a09ba7ce446a603f8/pillow_avif_plugin-1.5.5-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:0b04eac3d9f13f3fb1f147dbc39a54c186d16b8696b2b984880d01803995dbd5", size = 4383836, upload-time = "2026-01-22T20:33:12.96Z" }, + { url = "https://files.pythonhosted.org/packages/8f/72/c9b4e7c2d6216d85fadde8dc3d6074d70c2734ee5627065f4ca6403cadcf/pillow_avif_plugin-1.5.5-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:1bc75fe3ce1f369bb5068911625fca1430c63b62ae8d8c1ae85e4c839b4dd23c", size = 5763739, upload-time = "2026-01-22T20:33:14.338Z" }, + { url = "https://files.pythonhosted.org/packages/53/eb/27af95ea3db131f5ed17541c74b9a14c40bc33f68ff9a78e1696f0285565/pillow_avif_plugin-1.5.5-cp314-cp314t-win_amd64.whl", hash = "sha256:3ec51ff05f6d254b3d2ec2fd134040921959554b542a5f1dbb62ee49c29e51ed", size = 9959564, upload-time = "2026-01-22T20:33:15.936Z" }, +] + [[package]] name = "platformdirs" version = "4.9.4" @@ -3013,6 +3515,38 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/50/f2/c0e76a0b451ffdf0cf788932e182758eb7558953f4f27f1aff8e2518b653/pyarrow-23.0.1-cp314-cp314t-win_amd64.whl", hash = "sha256:527e8d899f14bd15b740cd5a54ad56b7f98044955373a17179d5956ddb93d9ce", size = 28365807, upload-time = "2026-02-16T10:14:03.892Z" }, ] +[[package]] +name = "pycocotools" +version = "2.0.11" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a2/df/32354b5dda963ffdfc8f75c9acf8828ef7890723a4ed57bb3ff2dc1d6f7e/pycocotools-2.0.11.tar.gz", hash = "sha256:34254d76da85576fcaf5c1f3aa9aae16b8cb15418334ba4283b800796bd1993d", size = 25381, upload-time = "2025-12-15T22:31:46.148Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/87/12/2f2292332456e4e4aba1dec0e3de8f1fc40fb2f4fdb0ca1cb17db9861682/pycocotools-2.0.11-cp312-abi3-macosx_10_13_universal2.whl", hash = "sha256:a2e9634bc7cadfb01c88e0b98589aaf0bd12983c7927bde93f19c0103e5441f4", size = 147795, upload-time = "2025-12-15T22:31:11.519Z" }, + { url = "https://files.pythonhosted.org/packages/63/3c/68d7ea376aada9046e7ea2d7d0dad0d27e1ae8b4b3c26a28346689390ab2/pycocotools-2.0.11-cp312-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7fd4121766cc057133534679c0ec3f9023dbd96e9b31cf95c86a069ebdac2b65", size = 398434, upload-time = "2025-12-15T22:31:12.558Z" }, + { url = "https://files.pythonhosted.org/packages/23/59/dc81895beff4e1207a829d40d442ea87cefaac9f6499151965f05c479619/pycocotools-2.0.11-cp312-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a82d1c9ed83f75da0b3f244f2a3cf559351a283307bd9b79a4ee2b93ab3231dd", size = 411685, upload-time = "2025-12-15T22:31:13.995Z" }, + { url = "https://files.pythonhosted.org/packages/0b/0b/5a8a7de300862a2eb5e2ecd3cb015126231379206cd3ebba8f025388d770/pycocotools-2.0.11-cp312-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:89e853425018e2c2920ee0f2112cf7c140a1dcf5f4f49abd9c2da112c3e0f4b3", size = 390500, upload-time = "2025-12-15T22:31:15.138Z" }, + { url = "https://files.pythonhosted.org/packages/63/b5/519bb68647f06feea03d5f355c33c05800aeae4e57b9482b2859eb00752e/pycocotools-2.0.11-cp312-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:87af87b8d06d5b852a885a319d9362dca3bed9f8bbcc3feb6513acb1f88ea242", size = 409790, upload-time = "2025-12-15T22:31:16.326Z" }, + { url = "https://files.pythonhosted.org/packages/83/b4/f6708404ff494706b80e714b919f76dc4ec9845a4007affd6d6b0843f928/pycocotools-2.0.11-cp312-abi3-win_amd64.whl", hash = "sha256:ffe806ce535f5996445188f9a35643791dc54beabc61bd81e2b03367356d604f", size = 77570, upload-time = "2025-12-15T22:31:17.703Z" }, + { url = "https://files.pythonhosted.org/packages/6e/63/778cd0ddc9d4a78915ac0a72b56d7fb204f7c3fabdad067d67ea0089762e/pycocotools-2.0.11-cp312-abi3-win_arm64.whl", hash = "sha256:c230f5e7b14bd19085217b4f40bba81bf14a182b150b8e9fab1c15d504ade343", size = 64564, upload-time = "2025-12-15T22:31:18.652Z" }, + { url = "https://files.pythonhosted.org/packages/5d/78/31c81e99d596a20c137d8a2e7a25f39a88f88fada5e0b253fce7323ecf0d/pycocotools-2.0.11-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:fd72b9734e6084b217c1fc3945bfd4ec05bdc75a44e4f0c461a91442bb804973", size = 168931, upload-time = "2025-12-15T22:31:19.845Z" }, + { url = "https://files.pythonhosted.org/packages/5f/63/fdd488e4cd0fdc6f93134f2cd68b1fce441d41566e86236bf6156961ef9b/pycocotools-2.0.11-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f7eb43b79448476b094240450420b7425d06e297880144b8ea6f01e9b4340e43", size = 484856, upload-time = "2025-12-15T22:31:21.231Z" }, + { url = "https://files.pythonhosted.org/packages/a1/fc/c83648a8fb7ea3b8e2ce2e761b469807e6cadb81577bf1af31c4f2ef0d87/pycocotools-2.0.11-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c3546b93b39943347c4f5b0694b5824105cbe2174098a416bcad4acd9c21e957", size = 480994, upload-time = "2025-12-15T22:31:22.426Z" }, + { url = "https://files.pythonhosted.org/packages/b6/2d/35e1122c0d007288aa9545be9549cbc7a4987b2c22f21d75045260a8b5b8/pycocotools-2.0.11-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:efd1694b2075f2f10c5828f10f6e6c4e44368841fd07dae385c3aa015c8e25f9", size = 467956, upload-time = "2025-12-15T22:31:23.754Z" }, + { url = "https://files.pythonhosted.org/packages/e4/ff/30cfe8142470da3e45abe43a9842449ca0180d993320559890e2be19e4a5/pycocotools-2.0.11-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:368244f30eb8d6cae7003aa2c0831fbdf0153664a32859ec7fbceea52bfb6878", size = 474658, upload-time = "2025-12-15T22:31:24.883Z" }, + { url = "https://files.pythonhosted.org/packages/bc/62/254ca92604106c7a5af3258e589e465e681fe0166f9b10f97d8ca70934d6/pycocotools-2.0.11-cp313-cp313t-win_amd64.whl", hash = "sha256:ac8aa17263e6489aa521f9fa91e959dfe0ea3a5519fde2cbf547312cdce7559e", size = 89681, upload-time = "2025-12-15T22:31:26.025Z" }, + { url = "https://files.pythonhosted.org/packages/6e/f0/c019314dc122ad5e6281de420adc105abe9b59d00008f72ef3ad32b1e328/pycocotools-2.0.11-cp313-cp313t-win_arm64.whl", hash = "sha256:04480330df5013f6edd94891a0ee8294274185f1b5093d1b0f23d51778f0c0e9", size = 70520, upload-time = "2025-12-15T22:31:26.999Z" }, + { url = "https://files.pythonhosted.org/packages/66/2b/58b35c88f2086c043ff1c87bd8e7bf36f94e84f7b01a5e00b6f5fabb92a7/pycocotools-2.0.11-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:a6b13baf6bfcf881b6d6ac6e23c776f87a68304cd86e53d1d6b9afa31e363c4e", size = 169883, upload-time = "2025-12-15T22:31:28.233Z" }, + { url = "https://files.pythonhosted.org/packages/24/c0/b970eefb78746c8b4f8b3fa1b49d9f3ec4c5429ef3c5d4bbcc55abebe478/pycocotools-2.0.11-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:78bae4a9de9d34c4759754a848dfb3306f9ef1c2fcb12164ffbd3d013d008321", size = 486894, upload-time = "2025-12-15T22:31:29.283Z" }, + { url = "https://files.pythonhosted.org/packages/5b/f7/db7436820a1948d96fa9764b6026103e808840979be01246049f2c1e7f94/pycocotools-2.0.11-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:83d896f4310379849dfcfa7893afb0ff21f4f3cdb04ab3f61b05dd98953dd0ad", size = 483249, upload-time = "2025-12-15T22:31:31.687Z" }, + { url = "https://files.pythonhosted.org/packages/1e/a6/a14a12c9f50c41998fdc0d31fd3755bcbce124bac9abb1d6b99d1853cafd/pycocotools-2.0.11-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:eebd723503a2eb2c8b285f56ea3be1d9f3875cd7c40d945358a428db94f14015", size = 469070, upload-time = "2025-12-15T22:31:32.821Z" }, + { url = "https://files.pythonhosted.org/packages/46/de/aa4f65ece3da8e89310a1be00cad0700170fd13f41a3aaae2712291269d5/pycocotools-2.0.11-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:bd7a1e19ef56a828a94bace673372071d334a9232cd32ae3cd48845a04d45c4f", size = 475589, upload-time = "2025-12-15T22:31:34.188Z" }, + { url = "https://files.pythonhosted.org/packages/44/6f/04a30df03ae6236b369b361df0c50531d173d03678978806aa2182e02d1e/pycocotools-2.0.11-cp314-cp314t-win_amd64.whl", hash = "sha256:63026e11a56211058d0e84e8263f74cbccd5e786fac18d83fd221ecb9819fcc7", size = 93863, upload-time = "2025-12-15T22:31:35.38Z" }, + { url = "https://files.pythonhosted.org/packages/da/05/8942b640d6307a21c3ede188e8c56f07bedf246fac0e501437dbda72a350/pycocotools-2.0.11-cp314-cp314t-win_arm64.whl", hash = "sha256:8cedb8ccb97ffe9ed2c8c259234fa69f4f1e8665afe3a02caf93f6ef2952c07f", size = 72038, upload-time = "2025-12-15T22:31:36.768Z" }, +] + [[package]] name = "pycparser" version = "3.0" @@ -3135,6 +3669,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/00/4b/ccc026168948fec4f7555b9164c724cf4125eac006e176541483d2c959be/pydantic_settings-2.13.1-py3-none-any.whl", hash = "sha256:d56fd801823dbeae7f0975e1f8c8e25c258eb75d278ea7abb5d9cebb01b56237", size = 58929, upload-time = "2026-02-19T13:45:06.034Z" }, ] +[[package]] +name = "pydeprecate" +version = "0.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/53/8c/a2b828824b6a5d7826a3af3948b8a312064c28ef2a3312a86b003bbbe21f/pydeprecate-0.5.0.tar.gz", hash = "sha256:d4dad1a44673257385674276e08415da626f002ea12fe73cf1d70d391b63f936", size = 61364, upload-time = "2026-02-23T22:35:49.723Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4a/40/ff4ca100d6d698ce17cdc82799a4b365c3f73c1746a440bba543a1c8a4db/pydeprecate-0.5.0-py3-none-any.whl", hash = "sha256:1668d1e152f6ec6127a8ce8bd501215a4c3d756e46ced542d0222f1df2c78eca", size = 38022, upload-time = "2026-02-23T22:35:48.512Z" }, +] + [[package]] name = "pydocket" version = "0.18.2" @@ -3640,6 +4183,45 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/3b/5d/63d4ae3b9daea098d5d6f5da83984853c1bbacd5dc826764b249fe119d24/requests_oauthlib-2.0.0-py2.py3-none-any.whl", hash = "sha256:7dd8a5c40426b779b0868c404bdef9768deccf22749cde15852df527e6269b36", size = 24179, upload-time = "2024-03-22T20:32:28.055Z" }, ] +[[package]] +name = "requests-toolbelt" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "requests" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f3/61/d7545dafb7ac2230c70d38d31cbfe4cc64f7144dc41f6e4e4b78ecd9f5bb/requests-toolbelt-1.0.0.tar.gz", hash = "sha256:7681a0a3d047012b5bdc0ee37d7f8f07ebe76ab08caeccfc3921ce23c88d5bc6", size = 206888, upload-time = "2023-05-01T04:11:33.229Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3f/51/d4db610ef29373b879047326cbf6fa98b6c1969d6f6dc423279de2b1be2c/requests_toolbelt-1.0.0-py2.py3-none-any.whl", hash = "sha256:cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06", size = 54481, upload-time = "2023-05-01T04:11:28.427Z" }, +] + +[[package]] +name = "rf-groundingdino" +version = "0.1.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "addict" }, + { name = "numpy" }, + { name = "opencv-python" }, + { name = "pycocotools" }, + { name = "supervision" }, + { name = "timm" }, + { name = "torch" }, + { name = "torchvision" }, + { name = "transformers" }, + { name = "yapf" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/43/2f/dfa4bfca4c48287f80457f885b1b66c309e4bd84497a006f560976a60b4f/rf_groundingdino-0.1.2.tar.gz", hash = "sha256:fb281ec328a05972027fa83886f83780c492449e6df77829e54f39637b61df55", size = 82401, upload-time = "2023-06-05T03:42:38.285Z" } + +[[package]] +name = "rf-segment-anything" +version = "1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ee/41/695834cc9c82c04bdb51cf5ac14103bc3fd3d5d4aff1315a422f7a165fac/rf_segment_anything-1.0.tar.gz", hash = "sha256:29aa8ebdf6a821c0583d3fcaa716aa3d2bc75442cd558a88c93f323bf51e067b", size = 31896, upload-time = "2023-05-25T17:56:00.999Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/55/ca/c976a2d52068cb0ab2f9a6656a2881a67030c9aa70549ad1bc9165a15fc5/rf_segment_anything-1.0-py3-none-any.whl", hash = "sha256:8aa3b56bb776f73e3680dd1fd6b905c4e0e8281de71096a26f6d74dd716fad04", size = 36656, upload-time = "2023-05-25T17:55:58.788Z" }, +] + [[package]] name = "rfc3339-validator" version = "0.1.4" @@ -3699,6 +4281,36 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/13/2f/b4530fbf948867702d0a3f27de4a6aab1d156f406d72852ab902c4d04de9/rich_rst-1.3.2-py3-none-any.whl", hash = "sha256:a99b4907cbe118cf9d18b0b44de272efa61f15117c61e39ebdc431baf5df722a", size = 12567, upload-time = "2025-10-14T16:49:42.953Z" }, ] +[[package]] +name = "roboflow" +version = "1.2.16" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "cycler" }, + { name = "filetype" }, + { name = "idna" }, + { name = "kiwisolver" }, + { name = "matplotlib" }, + { name = "numpy" }, + { name = "opencv-python-headless" }, + { name = "pi-heif" }, + { name = "pillow" }, + { name = "pillow-avif-plugin" }, + { name = "python-dateutil" }, + { name = "python-dotenv" }, + { name = "pyyaml" }, + { name = "requests" }, + { name = "requests-toolbelt" }, + { name = "six" }, + { name = "tqdm" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7f/58/a60f5664194c7d09c9afcd04f0ccb9ce4395914c9d3aec843523d25177be/roboflow-1.2.16.tar.gz", hash = "sha256:fa74caaf14ed7cb621f2abd5da2bf5745d819b6d19fbecf6464171563821027d", size = 90855, upload-time = "2026-03-03T11:34:04.053Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2b/76/1fd57c07bc7245c1608345d4cc82befdef3352cd1ad17026e02645c6eb2e/roboflow-1.2.16-py3-none-any.whl", hash = "sha256:bc367d9659897d20d67816c42e645ea0d58a6994aaa71cf9624c3999b52032ec", size = 95770, upload-time = "2026-03-03T11:34:02.647Z" }, +] + [[package]] name = "rpds-py" version = "0.30.0" @@ -3852,6 +4464,18 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/8f/e8/726643a3ea68c727da31570bde48c7a10f1aa60eddd628d94078fec586ff/ruff-0.15.7-py3-none-win_arm64.whl", hash = "sha256:18e8d73f1c3fdf27931497972250340f92e8c861722161a9caeb89a58ead6ed2", size = 11023304, upload-time = "2026-03-19T16:26:51.669Z" }, ] +[[package]] +name = "s3transfer" +version = "0.16.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "botocore" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/05/04/74127fc843314818edfa81b5540e26dd537353b123a4edc563109d8f17dd/s3transfer-0.16.0.tar.gz", hash = "sha256:8e990f13268025792229cd52fa10cb7163744bf56e719e0b9cb925ab79abf920", size = 153827, upload-time = "2025-12-01T02:30:59.114Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fc/51/727abb13f44c1fcf6d145979e1535a35794db0f6e450a0cb46aa24732fe2/s3transfer-0.16.0-py3-none-any.whl", hash = "sha256:18e25d66fed509e3868dc1572b3f427ff947dd2c56f844a5bf09481ad3f3b2fe", size = 86830, upload-time = "2025-12-01T02:30:57.729Z" }, +] + [[package]] name = "safetensors" version = "0.7.0" @@ -3874,6 +4498,125 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/5d/e6/ec8471c8072382cb91233ba7267fd931219753bb43814cbc71757bfd4dab/safetensors-0.7.0-cp38-abi3-win_amd64.whl", hash = "sha256:d1239932053f56f3456f32eb9625590cc7582e905021f94636202a864d470755", size = 341380, upload-time = "2025-11-19T15:18:44.427Z" }, ] +[[package]] +name = "scikit-learn" +version = "1.8.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "joblib" }, + { name = "numpy" }, + { name = "scipy" }, + { name = "threadpoolctl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0e/d4/40988bf3b8e34feec1d0e6a051446b1f66225f8529b9309becaeef62b6c4/scikit_learn-1.8.0.tar.gz", hash = "sha256:9bccbb3b40e3de10351f8f5068e105d0f4083b1a65fa07b6634fbc401a6287fd", size = 7335585, upload-time = "2025-12-10T07:08:53.618Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/90/74/e6a7cc4b820e95cc38cf36cd74d5aa2b42e8ffc2d21fe5a9a9c45c1c7630/scikit_learn-1.8.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:5fb63362b5a7ddab88e52b6dbb47dac3fd7dafeee740dc6c8d8a446ddedade8e", size = 8548242, upload-time = "2025-12-10T07:07:51.568Z" }, + { url = "https://files.pythonhosted.org/packages/49/d8/9be608c6024d021041c7f0b3928d4749a706f4e2c3832bbede4fb4f58c95/scikit_learn-1.8.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:5025ce924beccb28298246e589c691fe1b8c1c96507e6d27d12c5fadd85bfd76", size = 8079075, upload-time = "2025-12-10T07:07:53.697Z" }, + { url = "https://files.pythonhosted.org/packages/dd/47/f187b4636ff80cc63f21cd40b7b2d177134acaa10f6bb73746130ee8c2e5/scikit_learn-1.8.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4496bb2cf7a43ce1a2d7524a79e40bc5da45cf598dbf9545b7e8316ccba47bb4", size = 8660492, upload-time = "2025-12-10T07:07:55.574Z" }, + { url = "https://files.pythonhosted.org/packages/97/74/b7a304feb2b49df9fafa9382d4d09061a96ee9a9449a7cbea7988dda0828/scikit_learn-1.8.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a0bcfe4d0d14aec44921545fd2af2338c7471de9cb701f1da4c9d85906ab847a", size = 8931904, upload-time = "2025-12-10T07:07:57.666Z" }, + { url = "https://files.pythonhosted.org/packages/9f/c4/0ab22726a04ede56f689476b760f98f8f46607caecff993017ac1b64aa5d/scikit_learn-1.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:35c007dedb2ffe38fe3ee7d201ebac4a2deccd2408e8621d53067733e3c74809", size = 8019359, upload-time = "2025-12-10T07:07:59.838Z" }, + { url = "https://files.pythonhosted.org/packages/24/90/344a67811cfd561d7335c1b96ca21455e7e472d281c3c279c4d3f2300236/scikit_learn-1.8.0-cp312-cp312-win_arm64.whl", hash = "sha256:8c497fff237d7b4e07e9ef1a640887fa4fb765647f86fbe00f969ff6280ce2bb", size = 7641898, upload-time = "2025-12-10T07:08:01.36Z" }, + { url = "https://files.pythonhosted.org/packages/03/aa/e22e0768512ce9255eba34775be2e85c2048da73da1193e841707f8f039c/scikit_learn-1.8.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:0d6ae97234d5d7079dc0040990a6f7aeb97cb7fa7e8945f1999a429b23569e0a", size = 8513770, upload-time = "2025-12-10T07:08:03.251Z" }, + { url = "https://files.pythonhosted.org/packages/58/37/31b83b2594105f61a381fc74ca19e8780ee923be2d496fcd8d2e1147bd99/scikit_learn-1.8.0-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:edec98c5e7c128328124a029bceb09eda2d526997780fef8d65e9a69eead963e", size = 8044458, upload-time = "2025-12-10T07:08:05.336Z" }, + { url = "https://files.pythonhosted.org/packages/2d/5a/3f1caed8765f33eabb723596666da4ebbf43d11e96550fb18bdec42b467b/scikit_learn-1.8.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:74b66d8689d52ed04c271e1329f0c61635bcaf5b926db9b12d58914cdc01fe57", size = 8610341, upload-time = "2025-12-10T07:08:07.732Z" }, + { url = "https://files.pythonhosted.org/packages/38/cf/06896db3f71c75902a8e9943b444a56e727418f6b4b4a90c98c934f51ed4/scikit_learn-1.8.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8fdf95767f989b0cfedb85f7ed8ca215d4be728031f56ff5a519ee1e3276dc2e", size = 8900022, upload-time = "2025-12-10T07:08:09.862Z" }, + { url = "https://files.pythonhosted.org/packages/1c/f9/9b7563caf3ec8873e17a31401858efab6b39a882daf6c1bfa88879c0aa11/scikit_learn-1.8.0-cp313-cp313-win_amd64.whl", hash = "sha256:2de443b9373b3b615aec1bb57f9baa6bb3a9bd093f1269ba95c17d870422b271", size = 7989409, upload-time = "2025-12-10T07:08:12.028Z" }, + { url = "https://files.pythonhosted.org/packages/49/bd/1f4001503650e72c4f6009ac0c4413cb17d2d601cef6f71c0453da2732fc/scikit_learn-1.8.0-cp313-cp313-win_arm64.whl", hash = "sha256:eddde82a035681427cbedded4e6eff5e57fa59216c2e3e90b10b19ab1d0a65c3", size = 7619760, upload-time = "2025-12-10T07:08:13.688Z" }, + { url = "https://files.pythonhosted.org/packages/d2/7d/a630359fc9dcc95496588c8d8e3245cc8fd81980251079bc09c70d41d951/scikit_learn-1.8.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:7cc267b6108f0a1499a734167282c00c4ebf61328566b55ef262d48e9849c735", size = 8826045, upload-time = "2025-12-10T07:08:15.215Z" }, + { url = "https://files.pythonhosted.org/packages/cc/56/a0c86f6930cfcd1c7054a2bc417e26960bb88d32444fe7f71d5c2cfae891/scikit_learn-1.8.0-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:fe1c011a640a9f0791146011dfd3c7d9669785f9fed2b2a5f9e207536cf5c2fd", size = 8420324, upload-time = "2025-12-10T07:08:17.561Z" }, + { url = "https://files.pythonhosted.org/packages/46/1e/05962ea1cebc1cf3876667ecb14c283ef755bf409993c5946ade3b77e303/scikit_learn-1.8.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:72358cce49465d140cc4e7792015bb1f0296a9742d5622c67e31399b75468b9e", size = 8680651, upload-time = "2025-12-10T07:08:19.952Z" }, + { url = "https://files.pythonhosted.org/packages/fe/56/a85473cd75f200c9759e3a5f0bcab2d116c92a8a02ee08ccd73b870f8bb4/scikit_learn-1.8.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:80832434a6cc114f5219211eec13dcbc16c2bac0e31ef64c6d346cde3cf054cb", size = 8925045, upload-time = "2025-12-10T07:08:22.11Z" }, + { url = "https://files.pythonhosted.org/packages/cc/b7/64d8cfa896c64435ae57f4917a548d7ac7a44762ff9802f75a79b77cb633/scikit_learn-1.8.0-cp313-cp313t-win_amd64.whl", hash = "sha256:ee787491dbfe082d9c3013f01f5991658b0f38aa8177e4cd4bf434c58f551702", size = 8507994, upload-time = "2025-12-10T07:08:23.943Z" }, + { url = "https://files.pythonhosted.org/packages/5e/37/e192ea709551799379958b4c4771ec507347027bb7c942662c7fbeba31cb/scikit_learn-1.8.0-cp313-cp313t-win_arm64.whl", hash = "sha256:bf97c10a3f5a7543f9b88cbf488d33d175e9146115a451ae34568597ba33dcde", size = 7869518, upload-time = "2025-12-10T07:08:25.71Z" }, + { url = "https://files.pythonhosted.org/packages/24/05/1af2c186174cc92dcab2233f327336058c077d38f6fe2aceb08e6ab4d509/scikit_learn-1.8.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:c22a2da7a198c28dd1a6e1136f19c830beab7fdca5b3e5c8bba8394f8a5c45b3", size = 8528667, upload-time = "2025-12-10T07:08:27.541Z" }, + { url = "https://files.pythonhosted.org/packages/a8/25/01c0af38fe969473fb292bba9dc2b8f9b451f3112ff242c647fee3d0dfe7/scikit_learn-1.8.0-cp314-cp314-macosx_12_0_arm64.whl", hash = "sha256:6b595b07a03069a2b1740dc08c2299993850ea81cce4fe19b2421e0c970de6b7", size = 8066524, upload-time = "2025-12-10T07:08:29.822Z" }, + { url = "https://files.pythonhosted.org/packages/be/ce/a0623350aa0b68647333940ee46fe45086c6060ec604874e38e9ab7d8e6c/scikit_learn-1.8.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:29ffc74089f3d5e87dfca4c2c8450f88bdc61b0fc6ed5d267f3988f19a1309f6", size = 8657133, upload-time = "2025-12-10T07:08:31.865Z" }, + { url = "https://files.pythonhosted.org/packages/b8/cb/861b41341d6f1245e6ca80b1c1a8c4dfce43255b03df034429089ca2a2c5/scikit_learn-1.8.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fb65db5d7531bccf3a4f6bec3462223bea71384e2cda41da0f10b7c292b9e7c4", size = 8923223, upload-time = "2025-12-10T07:08:34.166Z" }, + { url = "https://files.pythonhosted.org/packages/76/18/a8def8f91b18cd1ba6e05dbe02540168cb24d47e8dcf69e8d00b7da42a08/scikit_learn-1.8.0-cp314-cp314-win_amd64.whl", hash = "sha256:56079a99c20d230e873ea40753102102734c5953366972a71d5cb39a32bc40c6", size = 8096518, upload-time = "2025-12-10T07:08:36.339Z" }, + { url = "https://files.pythonhosted.org/packages/d1/77/482076a678458307f0deb44e29891d6022617b2a64c840c725495bee343f/scikit_learn-1.8.0-cp314-cp314-win_arm64.whl", hash = "sha256:3bad7565bc9cf37ce19a7c0d107742b320c1285df7aab1a6e2d28780df167242", size = 7754546, upload-time = "2025-12-10T07:08:38.128Z" }, + { url = "https://files.pythonhosted.org/packages/2d/d1/ef294ca754826daa043b2a104e59960abfab4cf653891037d19dd5b6f3cf/scikit_learn-1.8.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:4511be56637e46c25721e83d1a9cea9614e7badc7040c4d573d75fbe257d6fd7", size = 8848305, upload-time = "2025-12-10T07:08:41.013Z" }, + { url = "https://files.pythonhosted.org/packages/5b/e2/b1f8b05138ee813b8e1a4149f2f0d289547e60851fd1bb268886915adbda/scikit_learn-1.8.0-cp314-cp314t-macosx_12_0_arm64.whl", hash = "sha256:a69525355a641bf8ef136a7fa447672fb54fe8d60cab5538d9eb7c6438543fb9", size = 8432257, upload-time = "2025-12-10T07:08:42.873Z" }, + { url = "https://files.pythonhosted.org/packages/26/11/c32b2138a85dcb0c99f6afd13a70a951bfdff8a6ab42d8160522542fb647/scikit_learn-1.8.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c2656924ec73e5939c76ac4c8b026fc203b83d8900362eb2599d8aee80e4880f", size = 8678673, upload-time = "2025-12-10T07:08:45.362Z" }, + { url = "https://files.pythonhosted.org/packages/c7/57/51f2384575bdec454f4fe4e7a919d696c9ebce914590abf3e52d47607ab8/scikit_learn-1.8.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:15fc3b5d19cc2be65404786857f2e13c70c83dd4782676dd6814e3b89dc8f5b9", size = 8922467, upload-time = "2025-12-10T07:08:47.408Z" }, + { url = "https://files.pythonhosted.org/packages/35/4d/748c9e2872637a57981a04adc038dacaa16ba8ca887b23e34953f0b3f742/scikit_learn-1.8.0-cp314-cp314t-win_amd64.whl", hash = "sha256:00d6f1d66fbcf4eba6e356e1420d33cc06c70a45bb1363cd6f6a8e4ebbbdece2", size = 8774395, upload-time = "2025-12-10T07:08:49.337Z" }, + { url = "https://files.pythonhosted.org/packages/60/22/d7b2ebe4704a5e50790ba089d5c2ae308ab6bb852719e6c3bd4f04c3a363/scikit_learn-1.8.0-cp314-cp314t-win_arm64.whl", hash = "sha256:f28dd15c6bb0b66ba09728cf09fd8736c304be29409bd8445a080c1280619e8c", size = 8002647, upload-time = "2025-12-10T07:08:51.601Z" }, +] + +[[package]] +name = "scipy" +version = "1.17.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7a/97/5a3609c4f8d58b039179648e62dd220f89864f56f7357f5d4f45c29eb2cc/scipy-1.17.1.tar.gz", hash = "sha256:95d8e012d8cb8816c226aef832200b1d45109ed4464303e997c5b13122b297c0", size = 30573822, upload-time = "2026-02-23T00:26:24.851Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/35/48/b992b488d6f299dbe3f11a20b24d3dda3d46f1a635ede1c46b5b17a7b163/scipy-1.17.1-cp312-cp312-macosx_10_14_x86_64.whl", hash = "sha256:35c3a56d2ef83efc372eaec584314bd0ef2e2f0d2adb21c55e6ad5b344c0dcb8", size = 31610954, upload-time = "2026-02-23T00:17:49.855Z" }, + { url = "https://files.pythonhosted.org/packages/b2/02/cf107b01494c19dc100f1d0b7ac3cc08666e96ba2d64db7626066cee895e/scipy-1.17.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:fcb310ddb270a06114bb64bbe53c94926b943f5b7f0842194d585c65eb4edd76", size = 28172662, upload-time = "2026-02-23T00:18:01.64Z" }, + { url = "https://files.pythonhosted.org/packages/cf/a9/599c28631bad314d219cf9ffd40e985b24d603fc8a2f4ccc5ae8419a535b/scipy-1.17.1-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:cc90d2e9c7e5c7f1a482c9875007c095c3194b1cfedca3c2f3291cdc2bc7c086", size = 20344366, upload-time = "2026-02-23T00:18:12.015Z" }, + { url = "https://files.pythonhosted.org/packages/35/f5/906eda513271c8deb5af284e5ef0206d17a96239af79f9fa0aebfe0e36b4/scipy-1.17.1-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:c80be5ede8f3f8eded4eff73cc99a25c388ce98e555b17d31da05287015ffa5b", size = 22704017, upload-time = "2026-02-23T00:18:21.502Z" }, + { url = "https://files.pythonhosted.org/packages/da/34/16f10e3042d2f1d6b66e0428308ab52224b6a23049cb2f5c1756f713815f/scipy-1.17.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e19ebea31758fac5893a2ac360fedd00116cbb7628e650842a6691ba7ca28a21", size = 32927842, upload-time = "2026-02-23T00:18:35.367Z" }, + { url = "https://files.pythonhosted.org/packages/01/8e/1e35281b8ab6d5d72ebe9911edcdffa3f36b04ed9d51dec6dd140396e220/scipy-1.17.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:02ae3b274fde71c5e92ac4d54bc06c42d80e399fec704383dcd99b301df37458", size = 35235890, upload-time = "2026-02-23T00:18:49.188Z" }, + { url = "https://files.pythonhosted.org/packages/c5/5c/9d7f4c88bea6e0d5a4f1bc0506a53a00e9fcb198de372bfe4d3652cef482/scipy-1.17.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8a604bae87c6195d8b1045eddece0514d041604b14f2727bbc2b3020172045eb", size = 35003557, upload-time = "2026-02-23T00:18:54.74Z" }, + { url = "https://files.pythonhosted.org/packages/65/94/7698add8f276dbab7a9de9fb6b0e02fc13ee61d51c7c3f85ac28b65e1239/scipy-1.17.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f590cd684941912d10becc07325a3eeb77886fe981415660d9265c4c418d0bea", size = 37625856, upload-time = "2026-02-23T00:19:00.307Z" }, + { url = "https://files.pythonhosted.org/packages/a2/84/dc08d77fbf3d87d3ee27f6a0c6dcce1de5829a64f2eae85a0ecc1f0daa73/scipy-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:41b71f4a3a4cab9d366cd9065b288efc4d4f3c0b37a91a8e0947fb5bd7f31d87", size = 36549682, upload-time = "2026-02-23T00:19:07.67Z" }, + { url = "https://files.pythonhosted.org/packages/bc/98/fe9ae9ffb3b54b62559f52dedaebe204b408db8109a8c66fdd04869e6424/scipy-1.17.1-cp312-cp312-win_arm64.whl", hash = "sha256:f4115102802df98b2b0db3cce5cb9b92572633a1197c77b7553e5203f284a5b3", size = 24547340, upload-time = "2026-02-23T00:19:12.024Z" }, + { url = "https://files.pythonhosted.org/packages/76/27/07ee1b57b65e92645f219b37148a7e7928b82e2b5dbeccecb4dff7c64f0b/scipy-1.17.1-cp313-cp313-macosx_10_14_x86_64.whl", hash = "sha256:5e3c5c011904115f88a39308379c17f91546f77c1667cea98739fe0fccea804c", size = 31590199, upload-time = "2026-02-23T00:19:17.192Z" }, + { url = "https://files.pythonhosted.org/packages/ec/ae/db19f8ab842e9b724bf5dbb7db29302a91f1e55bc4d04b1025d6d605a2c5/scipy-1.17.1-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:6fac755ca3d2c3edcb22f479fceaa241704111414831ddd3bc6056e18516892f", size = 28154001, upload-time = "2026-02-23T00:19:22.241Z" }, + { url = "https://files.pythonhosted.org/packages/5b/58/3ce96251560107b381cbd6e8413c483bbb1228a6b919fa8652b0d4090e7f/scipy-1.17.1-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:7ff200bf9d24f2e4d5dc6ee8c3ac64d739d3a89e2326ba68aaf6c4a2b838fd7d", size = 20325719, upload-time = "2026-02-23T00:19:26.329Z" }, + { url = "https://files.pythonhosted.org/packages/b2/83/15087d945e0e4d48ce2377498abf5ad171ae013232ae31d06f336e64c999/scipy-1.17.1-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:4b400bdc6f79fa02a4d86640310dde87a21fba0c979efff5248908c6f15fad1b", size = 22683595, upload-time = "2026-02-23T00:19:30.304Z" }, + { url = "https://files.pythonhosted.org/packages/b4/e0/e58fbde4a1a594c8be8114eb4aac1a55bcd6587047efc18a61eb1f5c0d30/scipy-1.17.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2b64ca7d4aee0102a97f3ba22124052b4bd2152522355073580bf4845e2550b6", size = 32896429, upload-time = "2026-02-23T00:19:35.536Z" }, + { url = "https://files.pythonhosted.org/packages/f5/5f/f17563f28ff03c7b6799c50d01d5d856a1d55f2676f537ca8d28c7f627cd/scipy-1.17.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:581b2264fc0aa555f3f435a5944da7504ea3a065d7029ad60e7c3d1ae09c5464", size = 35203952, upload-time = "2026-02-23T00:19:42.259Z" }, + { url = "https://files.pythonhosted.org/packages/8d/a5/9afd17de24f657fdfe4df9a3f1ea049b39aef7c06000c13db1530d81ccca/scipy-1.17.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:beeda3d4ae615106d7094f7e7cef6218392e4465cc95d25f900bebabfded0950", size = 34979063, upload-time = "2026-02-23T00:19:47.547Z" }, + { url = "https://files.pythonhosted.org/packages/8b/13/88b1d2384b424bf7c924f2038c1c409f8d88bb2a8d49d097861dd64a57b2/scipy-1.17.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6609bc224e9568f65064cfa72edc0f24ee6655b47575954ec6339534b2798369", size = 37598449, upload-time = "2026-02-23T00:19:53.238Z" }, + { url = "https://files.pythonhosted.org/packages/35/e5/d6d0e51fc888f692a35134336866341c08655d92614f492c6860dc45bb2c/scipy-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:37425bc9175607b0268f493d79a292c39f9d001a357bebb6b88fdfaff13f6448", size = 36510943, upload-time = "2026-02-23T00:20:50.89Z" }, + { url = "https://files.pythonhosted.org/packages/2a/fd/3be73c564e2a01e690e19cc618811540ba5354c67c8680dce3281123fb79/scipy-1.17.1-cp313-cp313-win_arm64.whl", hash = "sha256:5cf36e801231b6a2059bf354720274b7558746f3b1a4efb43fcf557ccd484a87", size = 24545621, upload-time = "2026-02-23T00:20:55.871Z" }, + { url = "https://files.pythonhosted.org/packages/6f/6b/17787db8b8114933a66f9dcc479a8272e4b4da75fe03b0c282f7b0ade8cd/scipy-1.17.1-cp313-cp313t-macosx_10_14_x86_64.whl", hash = "sha256:d59c30000a16d8edc7e64152e30220bfbd724c9bbb08368c054e24c651314f0a", size = 31936708, upload-time = "2026-02-23T00:19:58.694Z" }, + { url = "https://files.pythonhosted.org/packages/38/2e/524405c2b6392765ab1e2b722a41d5da33dc5c7b7278184a8ad29b6cb206/scipy-1.17.1-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:010f4333c96c9bb1a4516269e33cb5917b08ef2166d5556ca2fd9f082a9e6ea0", size = 28570135, upload-time = "2026-02-23T00:20:03.934Z" }, + { url = "https://files.pythonhosted.org/packages/fd/c3/5bd7199f4ea8556c0c8e39f04ccb014ac37d1468e6cfa6a95c6b3562b76e/scipy-1.17.1-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:2ceb2d3e01c5f1d83c4189737a42d9cb2fc38a6eeed225e7515eef71ad301dce", size = 20741977, upload-time = "2026-02-23T00:20:07.935Z" }, + { url = "https://files.pythonhosted.org/packages/d9/b8/8ccd9b766ad14c78386599708eb745f6b44f08400a5fd0ade7cf89b6fc93/scipy-1.17.1-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:844e165636711ef41f80b4103ed234181646b98a53c8f05da12ca5ca289134f6", size = 23029601, upload-time = "2026-02-23T00:20:12.161Z" }, + { url = "https://files.pythonhosted.org/packages/6d/a0/3cb6f4d2fb3e17428ad2880333cac878909ad1a89f678527b5328b93c1d4/scipy-1.17.1-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:158dd96d2207e21c966063e1635b1063cd7787b627b6f07305315dd73d9c679e", size = 33019667, upload-time = "2026-02-23T00:20:17.208Z" }, + { url = "https://files.pythonhosted.org/packages/f3/c3/2d834a5ac7bf3a0c806ad1508efc02dda3c8c61472a56132d7894c312dea/scipy-1.17.1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:74cbb80d93260fe2ffa334efa24cb8f2f0f622a9b9febf8b483c0b865bfb3475", size = 35264159, upload-time = "2026-02-23T00:20:23.087Z" }, + { url = "https://files.pythonhosted.org/packages/4d/77/d3ed4becfdbd217c52062fafe35a72388d1bd82c2d0ba5ca19d6fcc93e11/scipy-1.17.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:dbc12c9f3d185f5c737d801da555fb74b3dcfa1a50b66a1a93e09190f41fab50", size = 35102771, upload-time = "2026-02-23T00:20:28.636Z" }, + { url = "https://files.pythonhosted.org/packages/bd/12/d19da97efde68ca1ee5538bb261d5d2c062f0c055575128f11a2730e3ac1/scipy-1.17.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:94055a11dfebe37c656e70317e1996dc197e1a15bbcc351bcdd4610e128fe1ca", size = 37665910, upload-time = "2026-02-23T00:20:34.743Z" }, + { url = "https://files.pythonhosted.org/packages/06/1c/1172a88d507a4baaf72c5a09bb6c018fe2ae0ab622e5830b703a46cc9e44/scipy-1.17.1-cp313-cp313t-win_amd64.whl", hash = "sha256:e30bdeaa5deed6bc27b4cc490823cd0347d7dae09119b8803ae576ea0ce52e4c", size = 36562980, upload-time = "2026-02-23T00:20:40.575Z" }, + { url = "https://files.pythonhosted.org/packages/70/b0/eb757336e5a76dfa7911f63252e3b7d1de00935d7705cf772db5b45ec238/scipy-1.17.1-cp313-cp313t-win_arm64.whl", hash = "sha256:a720477885a9d2411f94a93d16f9d89bad0f28ca23c3f8daa521e2dcc3f44d49", size = 24856543, upload-time = "2026-02-23T00:20:45.313Z" }, + { url = "https://files.pythonhosted.org/packages/cf/83/333afb452af6f0fd70414dc04f898647ee1423979ce02efa75c3b0f2c28e/scipy-1.17.1-cp314-cp314-macosx_10_14_x86_64.whl", hash = "sha256:a48a72c77a310327f6a3a920092fa2b8fd03d7deaa60f093038f22d98e096717", size = 31584510, upload-time = "2026-02-23T00:21:01.015Z" }, + { url = "https://files.pythonhosted.org/packages/ed/a6/d05a85fd51daeb2e4ea71d102f15b34fedca8e931af02594193ae4fd25f7/scipy-1.17.1-cp314-cp314-macosx_12_0_arm64.whl", hash = "sha256:45abad819184f07240d8a696117a7aacd39787af9e0b719d00285549ed19a1e9", size = 28170131, upload-time = "2026-02-23T00:21:05.888Z" }, + { url = "https://files.pythonhosted.org/packages/db/7b/8624a203326675d7746a254083a187398090a179335b2e4a20e2ddc46e83/scipy-1.17.1-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:3fd1fcdab3ea951b610dc4cef356d416d5802991e7e32b5254828d342f7b7e0b", size = 20342032, upload-time = "2026-02-23T00:21:09.904Z" }, + { url = "https://files.pythonhosted.org/packages/c9/35/2c342897c00775d688d8ff3987aced3426858fd89d5a0e26e020b660b301/scipy-1.17.1-cp314-cp314-macosx_14_0_x86_64.whl", hash = "sha256:7bdf2da170b67fdf10bca777614b1c7d96ae3ca5794fd9587dce41eb2966e866", size = 22678766, upload-time = "2026-02-23T00:21:14.313Z" }, + { url = "https://files.pythonhosted.org/packages/ef/f2/7cdb8eb308a1a6ae1e19f945913c82c23c0c442a462a46480ce487fdc0ac/scipy-1.17.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:adb2642e060a6549c343603a3851ba76ef0b74cc8c079a9a58121c7ec9fe2350", size = 32957007, upload-time = "2026-02-23T00:21:19.663Z" }, + { url = "https://files.pythonhosted.org/packages/0b/2e/7eea398450457ecb54e18e9d10110993fa65561c4f3add5e8eccd2b9cd41/scipy-1.17.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:eee2cfda04c00a857206a4330f0c5e3e56535494e30ca445eb19ec624ae75118", size = 35221333, upload-time = "2026-02-23T00:21:25.278Z" }, + { url = "https://files.pythonhosted.org/packages/d9/77/5b8509d03b77f093a0d52e606d3c4f79e8b06d1d38c441dacb1e26cacf46/scipy-1.17.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:d2650c1fb97e184d12d8ba010493ee7b322864f7d3d00d3f9bb97d9c21de4068", size = 35042066, upload-time = "2026-02-23T00:21:31.358Z" }, + { url = "https://files.pythonhosted.org/packages/f9/df/18f80fb99df40b4070328d5ae5c596f2f00fffb50167e31439e932f29e7d/scipy-1.17.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:08b900519463543aa604a06bec02461558a6e1cef8fdbb8098f77a48a83c8118", size = 37612763, upload-time = "2026-02-23T00:21:37.247Z" }, + { url = "https://files.pythonhosted.org/packages/4b/39/f0e8ea762a764a9dc52aa7dabcfad51a354819de1f0d4652b6a1122424d6/scipy-1.17.1-cp314-cp314-win_amd64.whl", hash = "sha256:3877ac408e14da24a6196de0ddcace62092bfc12a83823e92e49e40747e52c19", size = 37290984, upload-time = "2026-02-23T00:22:35.023Z" }, + { url = "https://files.pythonhosted.org/packages/7c/56/fe201e3b0f93d1a8bcf75d3379affd228a63d7e2d80ab45467a74b494947/scipy-1.17.1-cp314-cp314-win_arm64.whl", hash = "sha256:f8885db0bc2bffa59d5c1b72fad7a6a92d3e80e7257f967dd81abb553a90d293", size = 25192877, upload-time = "2026-02-23T00:22:39.798Z" }, + { url = "https://files.pythonhosted.org/packages/96/ad/f8c414e121f82e02d76f310f16db9899c4fcde36710329502a6b2a3c0392/scipy-1.17.1-cp314-cp314t-macosx_10_14_x86_64.whl", hash = "sha256:1cc682cea2ae55524432f3cdff9e9a3be743d52a7443d0cba9017c23c87ae2f6", size = 31949750, upload-time = "2026-02-23T00:21:42.289Z" }, + { url = "https://files.pythonhosted.org/packages/7c/b0/c741e8865d61b67c81e255f4f0a832846c064e426636cd7de84e74d209be/scipy-1.17.1-cp314-cp314t-macosx_12_0_arm64.whl", hash = "sha256:2040ad4d1795a0ae89bfc7e8429677f365d45aa9fd5e4587cf1ea737f927b4a1", size = 28585858, upload-time = "2026-02-23T00:21:47.706Z" }, + { url = "https://files.pythonhosted.org/packages/ed/1b/3985219c6177866628fa7c2595bfd23f193ceebbe472c98a08824b9466ff/scipy-1.17.1-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:131f5aaea57602008f9822e2115029b55d4b5f7c070287699fe45c661d051e39", size = 20757723, upload-time = "2026-02-23T00:21:52.039Z" }, + { url = "https://files.pythonhosted.org/packages/c0/19/2a04aa25050d656d6f7b9e7b685cc83d6957fb101665bfd9369ca6534563/scipy-1.17.1-cp314-cp314t-macosx_14_0_x86_64.whl", hash = "sha256:9cdc1a2fcfd5c52cfb3045feb399f7b3ce822abdde3a193a6b9a60b3cb5854ca", size = 23043098, upload-time = "2026-02-23T00:21:56.185Z" }, + { url = "https://files.pythonhosted.org/packages/86/f1/3383beb9b5d0dbddd030335bf8a8b32d4317185efe495374f134d8be6cce/scipy-1.17.1-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6e3dcd57ab780c741fde8dc68619de988b966db759a3c3152e8e9142c26295ad", size = 33030397, upload-time = "2026-02-23T00:22:01.404Z" }, + { url = "https://files.pythonhosted.org/packages/41/68/8f21e8a65a5a03f25a79165ec9d2b28c00e66dc80546cf5eb803aeeff35b/scipy-1.17.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a9956e4d4f4a301ebf6cde39850333a6b6110799d470dbbb1e25326ac447f52a", size = 35281163, upload-time = "2026-02-23T00:22:07.024Z" }, + { url = "https://files.pythonhosted.org/packages/84/8d/c8a5e19479554007a5632ed7529e665c315ae7492b4f946b0deb39870e39/scipy-1.17.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:a4328d245944d09fd639771de275701ccadf5f781ba0ff092ad141e017eccda4", size = 35116291, upload-time = "2026-02-23T00:22:12.585Z" }, + { url = "https://files.pythonhosted.org/packages/52/52/e57eceff0e342a1f50e274264ed47497b59e6a4e3118808ee58ddda7b74a/scipy-1.17.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:a77cbd07b940d326d39a1d1b37817e2ee4d79cb30e7338f3d0cddffae70fcaa2", size = 37682317, upload-time = "2026-02-23T00:22:18.513Z" }, + { url = "https://files.pythonhosted.org/packages/11/2f/b29eafe4a3fbc3d6de9662b36e028d5f039e72d345e05c250e121a230dd4/scipy-1.17.1-cp314-cp314t-win_amd64.whl", hash = "sha256:eb092099205ef62cd1782b006658db09e2fed75bffcae7cc0d44052d8aa0f484", size = 37345327, upload-time = "2026-02-23T00:22:24.442Z" }, + { url = "https://files.pythonhosted.org/packages/07/39/338d9219c4e87f3e708f18857ecd24d22a0c3094752393319553096b98af/scipy-1.17.1-cp314-cp314t-win_arm64.whl", hash = "sha256:200e1050faffacc162be6a486a984a0497866ec54149a01270adc8a59b7c7d21", size = 25489165, upload-time = "2026-02-23T00:22:29.563Z" }, +] + +[[package]] +name = "seaborn" +version = "0.13.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "matplotlib" }, + { name = "numpy" }, + { name = "pandas" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/86/59/a451d7420a77ab0b98f7affa3a1d78a313d2f7281a57afb1a34bae8ab412/seaborn-0.13.2.tar.gz", hash = "sha256:93e60a40988f4d65e9f4885df477e2fdaff6b73a9ded434c1ab356dd57eefff7", size = 1457696, upload-time = "2024-01-25T13:21:52.551Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/83/11/00d3c3dfc25ad54e731d91449895a79e4bf2384dc3ac01809010ba88f6d5/seaborn-0.13.2-py3-none-any.whl", hash = "sha256:636f8336facf092165e27924f223d3c62ca560b1f2bb5dff7ab7fad265361987", size = 294914, upload-time = "2024-01-25T13:21:49.598Z" }, +] + [[package]] name = "semver" version = "3.0.4" @@ -3892,13 +4635,26 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/1c/78/504fdd027da3b84ff1aecd9f6957e65f35134534ccc6da8628eb71e76d3f/send2trash-2.1.0-py3-none-any.whl", hash = "sha256:0da2f112e6d6bb22de6aa6daa7e144831a4febf2a87261451c4ad849fe9a873c", size = 17610, upload-time = "2026-01-14T06:27:35.218Z" }, ] +[[package]] +name = "sentry-sdk" +version = "2.56.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/de/df/5008954f5466085966468612a7d1638487596ee6d2fd7fb51783a85351bf/sentry_sdk-2.56.0.tar.gz", hash = "sha256:fdab72030b69625665b2eeb9738bdde748ad254e8073085a0ce95382678e8168", size = 426820, upload-time = "2026-03-24T09:56:36.575Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cd/1a/b3a3e9f6520493fed7997af4d2de7965d71549c62f994a8fd15f2ecd519e/sentry_sdk-2.56.0-py2.py3-none-any.whl", hash = "sha256:5afafb744ceb91d22f4cc650c6bd048ac6af5f7412dcc6c59305a2e36f4dbc02", size = 451568, upload-time = "2026-03-24T09:56:34.807Z" }, +] + [[package]] name = "setuptools" -version = "82.0.1" +version = "81.0.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/4f/db/cfac1baf10650ab4d1c111714410d2fbb77ac5a616db26775db562c8fab2/setuptools-82.0.1.tar.gz", hash = "sha256:7d872682c5d01cfde07da7bccc7b65469d3dca203318515ada1de5eda35efbf9", size = 1152316, upload-time = "2026-03-09T12:47:17.221Z" } +sdist = { url = "https://files.pythonhosted.org/packages/0d/1c/73e719955c59b8e424d015ab450f51c0af856ae46ea2da83eba51cc88de1/setuptools-81.0.0.tar.gz", hash = "sha256:487b53915f52501f0a79ccfd0c02c165ffe06631443a886740b91af4b7a5845a", size = 1198299, upload-time = "2026-02-06T21:10:39.601Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/9d/76/f789f7a86709c6b087c5a2f52f911838cad707cc613162401badc665acfe/setuptools-82.0.1-py3-none-any.whl", hash = "sha256:a59e362652f08dcd477c78bb6e7bd9d80a7995bc73ce773050228a348ce2e5bb", size = 1006223, upload-time = "2026-03-09T12:47:15.026Z" }, + { url = "https://files.pythonhosted.org/packages/e1/e3/c164c88b2e5ce7b24d667b9bd83589cf4f3520d97cad01534cd3c4f55fdb/setuptools-81.0.0-py3-none-any.whl", hash = "sha256:fdd925d5c5d9f62e4b74b30d6dd7828ce236fd6ed998a08d81de62ce5a6310d6", size = 1062021, upload-time = "2026-02-06T21:10:37.175Z" }, ] [[package]] @@ -4102,13 +4858,46 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/a8/45/a132b9074aa18e799b891b91ad72133c98d8042c70f6240e4c5f9dabee2f/structlog-25.5.0-py3-none-any.whl", hash = "sha256:a8453e9b9e636ec59bd9e79bbd4a72f025981b3ba0f5837aebf48f02f37a7f9f", size = 72510, upload-time = "2025-10-27T08:28:21.535Z" }, ] +[[package]] +name = "supervision" +version = "0.27.0.post2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "defusedxml" }, + { name = "matplotlib" }, + { name = "numpy" }, + { name = "opencv-python" }, + { name = "pillow" }, + { name = "pydeprecate" }, + { name = "pyyaml" }, + { name = "requests" }, + { name = "scipy" }, + { name = "tqdm" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c5/9c/46d056999c5ea6cf8dc10451163601867247bc1378b69b64c987bd44a336/supervision-0.27.0.post2.tar.gz", hash = "sha256:be1283ef2000a593a4568d83289344af95befb8b847a954d5f099a43cb253dc9", size = 186135, upload-time = "2026-03-14T08:12:10.973Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6b/34/a138692ced038c135d1a45b73a433c89c57cad2eac9dd55bb38d9de89783/supervision-0.27.0.post2-py3-none-any.whl", hash = "sha256:713a341a563774d6a4b017787baa94f8698a9ea1de57155093d70de3a5007941", size = 217448, upload-time = "2026-03-14T08:12:09.279Z" }, +] + +[[package]] +name = "sympy" +version = "1.14.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mpmath" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/83/d3/803453b36afefb7c2bb238361cd4ae6125a569b4db67cd9e79846ba2d68c/sympy-1.14.0.tar.gz", hash = "sha256:d3d3fe8df1e5a0b42f0e7bdf50541697dbe7d23746e894990c030e2b05e72517", size = 7793921, upload-time = "2025-04-27T18:05:01.611Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a2/09/77d55d46fd61b4a135c444fc97158ef34a095e5681d0a6c10b75bf356191/sympy-1.14.0-py3-none-any.whl", hash = "sha256:e091cc3e99d2141a0ba2847328f5479b05d94a6635cb96148ccb3f34671bd8f5", size = 6299353, upload-time = "2025-04-27T18:04:59.103Z" }, +] + [[package]] name = "terminado" version = "0.18.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "ptyprocess", marker = "os_name != 'nt'" }, - { name = "pywinpty", marker = "os_name == 'nt'" }, + { name = "pywinpty", marker = "(os_name == 'nt' and platform_machine != 'aarch64' and sys_platform == 'linux') or (os_name == 'nt' and sys_platform != 'darwin' and sys_platform != 'linux')" }, { name = "tornado" }, ] sdist = { url = "https://files.pythonhosted.org/packages/8a/11/965c6fd8e5cc254f1fe142d547387da17a8ebfd75a3455f637c663fb38a0/terminado-0.18.1.tar.gz", hash = "sha256:de09f2c4b85de4765f7714688fff57d3e75bad1f909b589fde880460c753fd2e", size = 32701, upload-time = "2024-03-12T14:34:39.026Z" } @@ -4125,6 +4914,42 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/a6/a5/c0b6468d3824fe3fde30dbb5e1f687b291608f9473681bbf7dabbf5a87d7/text_unidecode-1.3-py2.py3-none-any.whl", hash = "sha256:1311f10e8b895935241623731c2ba64f4c455287888b18189350b67134a822e8", size = 78154, upload-time = "2019-08-30T21:37:03.543Z" }, ] +[[package]] +name = "thop" +version = "0.1.1.post2209072238" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "torch" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/bb/0f/72beeab4ff5221dc47127c80f8834b4bcd0cb36f6ba91c0b1d04a1233403/thop-0.1.1.post2209072238-py3-none-any.whl", hash = "sha256:01473c225231927d2ad718351f78ebf7cffe6af3bed464c4f1ba1ef0f7cdda27", size = 15443, upload-time = "2022-09-07T14:38:37.211Z" }, +] + +[[package]] +name = "threadpoolctl" +version = "3.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b7/4d/08c89e34946fce2aec4fbb45c9016efd5f4d7f24af8e5d93296e935631d8/threadpoolctl-3.6.0.tar.gz", hash = "sha256:8ab8b4aa3491d812b623328249fab5302a68d2d71745c8a4c719a2fcaba9f44e", size = 21274, upload-time = "2025-03-13T13:49:23.031Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/32/d5/f9a850d79b0851d1d4ef6456097579a9005b31fea68726a4ae5f2d82ddd9/threadpoolctl-3.6.0-py3-none-any.whl", hash = "sha256:43a0b8fd5a2928500110039e43a5eed8480b918967083ea48dc3ab9f13c4a7fb", size = 18638, upload-time = "2025-03-13T13:49:21.846Z" }, +] + +[[package]] +name = "timm" +version = "1.0.26" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "huggingface-hub" }, + { name = "pyyaml" }, + { name = "safetensors" }, + { name = "torch" }, + { name = "torchvision" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7b/1e/e924b3b2326a856aaf68586f9c52a5fc81ef45715eca408393b68c597e0e/timm-1.0.26.tar.gz", hash = "sha256:f66f082f2f381cf68431c22714c8b70f723837fa2a185b155961eab90f2d5b10", size = 2419859, upload-time = "2026-03-23T18:12:10.272Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6f/e9/bebf3d50e3fc847378988235f87c37ad3ac26d386041ab915d15e92025cd/timm-1.0.26-py3-none-any.whl", hash = "sha256:985c330de5ccc3a2aa0224eb7272e6a336084702390bb7e3801f3c91603d3683", size = 2568766, upload-time = "2026-03-23T18:12:08.062Z" }, +] + [[package]] name = "tinycss2" version = "1.4.0" @@ -4139,28 +4964,25 @@ wheels = [ [[package]] name = "tokenizers" -version = "0.22.2" +version = "0.19.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "huggingface-hub" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/73/6f/f80cfef4a312e1fb34baf7d85c72d4411afde10978d4657f8cdd811d3ccc/tokenizers-0.22.2.tar.gz", hash = "sha256:473b83b915e547aa366d1eee11806deaf419e17be16310ac0a14077f1e28f917", size = 372115, upload-time = "2026-01-05T10:45:15.988Z" } +sdist = { url = "https://files.pythonhosted.org/packages/48/04/2071c150f374aab6d5e92aaec38d0f3c368d227dd9e0469a1f0966ac68d1/tokenizers-0.19.1.tar.gz", hash = "sha256:ee59e6680ed0fdbe6b724cf38bd70400a0c1dd623b07ac729087270caeac88e3", size = 321039, upload-time = "2024-04-17T21:40:41.849Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/92/97/5dbfabf04c7e348e655e907ed27913e03db0923abb5dfdd120d7b25630e1/tokenizers-0.22.2-cp39-abi3-macosx_10_12_x86_64.whl", hash = "sha256:544dd704ae7238755d790de45ba8da072e9af3eea688f698b137915ae959281c", size = 3100275, upload-time = "2026-01-05T10:41:02.158Z" }, - { url = "https://files.pythonhosted.org/packages/2e/47/174dca0502ef88b28f1c9e06b73ce33500eedfac7a7692108aec220464e7/tokenizers-0.22.2-cp39-abi3-macosx_11_0_arm64.whl", hash = "sha256:1e418a55456beedca4621dbab65a318981467a2b188e982a23e117f115ce5001", size = 2981472, upload-time = "2026-01-05T10:41:00.276Z" }, - { url = "https://files.pythonhosted.org/packages/d6/84/7990e799f1309a8b87af6b948f31edaa12a3ed22d11b352eaf4f4b2e5753/tokenizers-0.22.2-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2249487018adec45d6e3554c71d46eb39fa8ea67156c640f7513eb26f318cec7", size = 3290736, upload-time = "2026-01-05T10:40:32.165Z" }, - { url = "https://files.pythonhosted.org/packages/78/59/09d0d9ba94dcd5f4f1368d4858d24546b4bdc0231c2354aa31d6199f0399/tokenizers-0.22.2-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:25b85325d0815e86e0bac263506dd114578953b7b53d7de09a6485e4a160a7dd", size = 3168835, upload-time = "2026-01-05T10:40:38.847Z" }, - { url = "https://files.pythonhosted.org/packages/47/50/b3ebb4243e7160bda8d34b731e54dd8ab8b133e50775872e7a434e524c28/tokenizers-0.22.2-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bfb88f22a209ff7b40a576d5324bf8286b519d7358663db21d6246fb17eea2d5", size = 3521673, upload-time = "2026-01-05T10:40:56.614Z" }, - { url = "https://files.pythonhosted.org/packages/e0/fa/89f4cb9e08df770b57adb96f8cbb7e22695a4cb6c2bd5f0c4f0ebcf33b66/tokenizers-0.22.2-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1c774b1276f71e1ef716e5486f21e76333464f47bece56bbd554485982a9e03e", size = 3724818, upload-time = "2026-01-05T10:40:44.507Z" }, - { url = "https://files.pythonhosted.org/packages/64/04/ca2363f0bfbe3b3d36e95bf67e56a4c88c8e3362b658e616d1ac185d47f2/tokenizers-0.22.2-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:df6c4265b289083bf710dff49bc51ef252f9d5be33a45ee2bed151114a56207b", size = 3379195, upload-time = "2026-01-05T10:40:51.139Z" }, - { url = "https://files.pythonhosted.org/packages/2e/76/932be4b50ef6ccedf9d3c6639b056a967a86258c6d9200643f01269211ca/tokenizers-0.22.2-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:369cc9fc8cc10cb24143873a0d95438bb8ee257bb80c71989e3ee290e8d72c67", size = 3274982, upload-time = "2026-01-05T10:40:58.331Z" }, - { url = "https://files.pythonhosted.org/packages/1d/28/5f9f5a4cc211b69e89420980e483831bcc29dade307955cc9dc858a40f01/tokenizers-0.22.2-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:29c30b83d8dcd061078b05ae0cb94d3c710555fbb44861139f9f83dcca3dc3e4", size = 9478245, upload-time = "2026-01-05T10:41:04.053Z" }, - { url = "https://files.pythonhosted.org/packages/6c/fb/66e2da4704d6aadebf8cb39f1d6d1957df667ab24cff2326b77cda0dcb85/tokenizers-0.22.2-cp39-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:37ae80a28c1d3265bb1f22464c856bd23c02a05bb211e56d0c5301a435be6c1a", size = 9560069, upload-time = "2026-01-05T10:45:10.673Z" }, - { url = "https://files.pythonhosted.org/packages/16/04/fed398b05caa87ce9b1a1bb5166645e38196081b225059a6edaff6440fac/tokenizers-0.22.2-cp39-abi3-musllinux_1_2_i686.whl", hash = "sha256:791135ee325f2336f498590eb2f11dc5c295232f288e75c99a36c5dbce63088a", size = 9899263, upload-time = "2026-01-05T10:45:12.559Z" }, - { url = "https://files.pythonhosted.org/packages/05/a1/d62dfe7376beaaf1394917e0f8e93ee5f67fea8fcf4107501db35996586b/tokenizers-0.22.2-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:38337540fbbddff8e999d59970f3c6f35a82de10053206a7562f1ea02d046fa5", size = 10033429, upload-time = "2026-01-05T10:45:14.333Z" }, - { url = "https://files.pythonhosted.org/packages/fd/18/a545c4ea42af3df6effd7d13d250ba77a0a86fb20393143bbb9a92e434d4/tokenizers-0.22.2-cp39-abi3-win32.whl", hash = "sha256:a6bf3f88c554a2b653af81f3204491c818ae2ac6fbc09e76ef4773351292bc92", size = 2502363, upload-time = "2026-01-05T10:45:20.593Z" }, - { url = "https://files.pythonhosted.org/packages/65/71/0670843133a43d43070abeb1949abfdef12a86d490bea9cd9e18e37c5ff7/tokenizers-0.22.2-cp39-abi3-win_amd64.whl", hash = "sha256:c9ea31edff2968b44a88f97d784c2f16dc0729b8b143ed004699ebca91f05c48", size = 2747786, upload-time = "2026-01-05T10:45:18.411Z" }, - { url = "https://files.pythonhosted.org/packages/72/f4/0de46cfa12cdcbcd464cc59fde36912af405696f687e53a091fb432f694c/tokenizers-0.22.2-cp39-abi3-win_arm64.whl", hash = "sha256:9ce725d22864a1e965217204946f830c37876eee3b2ba6fc6255e8e903d5fcbc", size = 2612133, upload-time = "2026-01-05T10:45:17.232Z" }, + { url = "https://files.pythonhosted.org/packages/63/90/2890cd096898dcdb596ee172cde40c0f54a9cf43b0736aa260a5501252af/tokenizers-0.19.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:621d670e1b1c281a1c9698ed89451395d318802ff88d1fc1accff0867a06f153", size = 2530580, upload-time = "2024-04-17T21:37:10.688Z" }, + { url = "https://files.pythonhosted.org/packages/74/d1/f4e1e950adb36675dfd8f9d0f4be644f3f3aaf22a5677a4f5c81282b662e/tokenizers-0.19.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d924204a3dbe50b75630bd16f821ebda6a5f729928df30f582fb5aade90c818a", size = 2436682, upload-time = "2024-04-17T21:37:12.966Z" }, + { url = "https://files.pythonhosted.org/packages/ed/30/89b321a16c58d233e301ec15072c0d3ed5014825e72da98604cd3ab2fba1/tokenizers-0.19.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:4f3fefdc0446b1a1e6d81cd4c07088ac015665d2e812f6dbba4a06267d1a2c95", size = 3693494, upload-time = "2024-04-17T21:37:14.755Z" }, + { url = "https://files.pythonhosted.org/packages/05/40/fa899f32de483500fbc78befd378fd7afba4270f17db707d1a78c0a4ddc3/tokenizers-0.19.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9620b78e0b2d52ef07b0d428323fb34e8ea1219c5eac98c2596311f20f1f9266", size = 3566541, upload-time = "2024-04-17T21:37:17.067Z" }, + { url = "https://files.pythonhosted.org/packages/67/14/e7da32ae5fb4971830f1ef335932fae3fa57e76b537e852f146c850aefdf/tokenizers-0.19.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:04ce49e82d100594715ac1b2ce87d1a36e61891a91de774755f743babcd0dd52", size = 3430792, upload-time = "2024-04-17T21:37:19.055Z" }, + { url = "https://files.pythonhosted.org/packages/f2/4b/aae61bdb6ab584d2612170801703982ee0e35f8b6adacbeefe5a3b277621/tokenizers-0.19.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c5c2ff13d157afe413bf7e25789879dd463e5a4abfb529a2d8f8473d8042e28f", size = 3962812, upload-time = "2024-04-17T21:37:21.008Z" }, + { url = "https://files.pythonhosted.org/packages/0a/b6/f7b7ef89c4da7b20256e6eab23d3835f05d1ca8f451d31c16cbfe3cd9eb6/tokenizers-0.19.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3174c76efd9d08f836bfccaca7cfec3f4d1c0a4cf3acbc7236ad577cc423c840", size = 4024688, upload-time = "2024-04-17T21:37:23.659Z" }, + { url = "https://files.pythonhosted.org/packages/80/54/12047a69f5b382d7ee72044dc89151a2dd0d13b2c9bdcc22654883704d31/tokenizers-0.19.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7c9d5b6c0e7a1e979bec10ff960fae925e947aab95619a6fdb4c1d8ff3708ce3", size = 3610961, upload-time = "2024-04-17T21:37:26.234Z" }, + { url = "https://files.pythonhosted.org/packages/52/b7/1e8a913d18ac28feeda42d4d2d51781874398fb59cd1c1e2653a4b5742ed/tokenizers-0.19.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:a179856d1caee06577220ebcfa332af046d576fb73454b8f4d4b0ba8324423ea", size = 9631367, upload-time = "2024-04-17T21:37:28.752Z" }, + { url = "https://files.pythonhosted.org/packages/ac/3d/2284f6d99f8f21d09352b88b8cfefa24ab88468d962aeb0aa15c20d76b32/tokenizers-0.19.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:952b80dac1a6492170f8c2429bd11fcaa14377e097d12a1dbe0ef2fb2241e16c", size = 9950121, upload-time = "2024-04-17T21:37:31.741Z" }, + { url = "https://files.pythonhosted.org/packages/2a/94/ec3369dbc9b7200c14c8c7a1a04c78b7a7398d0c001e1b7d1ffe30eb93a0/tokenizers-0.19.1-cp312-none-win32.whl", hash = "sha256:01d62812454c188306755c94755465505836fd616f75067abcae529c35edeb57", size = 2044069, upload-time = "2024-04-17T21:37:35.672Z" }, + { url = "https://files.pythonhosted.org/packages/0c/97/80bff6937e0c67d30c0facacd4f0bcf4254e581aa4995c73cef8c8640e56/tokenizers-0.19.1-cp312-none-win_amd64.whl", hash = "sha256:b70bfbe3a82d3e3fb2a5e9b22a39f8d1740c96c68b6ace0086b39074f08ab89a", size = 2214527, upload-time = "2024-04-17T21:37:39.19Z" }, ] [[package]] @@ -4181,6 +5003,81 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/b5/11/87d6d29fb5d237229d67973a6c9e06e048f01cf4994dee194ab0ea841814/tomlkit-0.14.0-py3-none-any.whl", hash = "sha256:592064ed85b40fa213469f81ac584f67a4f2992509a7c3ea2d632208623a3680", size = 39310, upload-time = "2026-01-13T01:14:51.965Z" }, ] +[[package]] +name = "torch" +version = "2.11.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cuda-bindings", marker = "sys_platform == 'linux'" }, + { name = "cuda-toolkit", extra = ["cublas", "cudart", "cufft", "cufile", "cupti", "curand", "cusolver", "cusparse", "nvjitlink", "nvrtc", "nvtx"], marker = "sys_platform == 'linux'" }, + { name = "filelock" }, + { name = "fsspec" }, + { name = "jinja2" }, + { name = "networkx" }, + { name = "nvidia-cudnn-cu13", marker = "sys_platform == 'linux'" }, + { name = "nvidia-cusparselt-cu13", marker = "sys_platform == 'linux'" }, + { name = "nvidia-nccl-cu13", marker = "sys_platform == 'linux'" }, + { name = "nvidia-nvshmem-cu13", marker = "sys_platform == 'linux'" }, + { name = "setuptools" }, + { name = "sympy" }, + { name = "triton", marker = "sys_platform == 'linux'" }, + { name = "typing-extensions" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/6f/8b/69e3008d78e5cee2b30183340cc425081b78afc5eff3d080daab0adda9aa/torch-2.11.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4b5866312ee6e52ea625cd211dcb97d6a2cdc1131a5f15cc0d87eec948f6dd34", size = 80606338, upload-time = "2026-03-23T18:11:34.781Z" }, + { url = "https://files.pythonhosted.org/packages/13/16/42e5915ebe4868caa6bac83a8ed59db57f12e9a61b7d749d584776ed53d5/torch-2.11.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:f99924682ef0aa6a4ab3b1b76f40dc6e273fca09f367d15a524266db100a723f", size = 419731115, upload-time = "2026-03-23T18:11:06.944Z" }, + { url = "https://files.pythonhosted.org/packages/1a/c9/82638ef24d7877510f83baf821f5619a61b45568ce21c0a87a91576510aa/torch-2.11.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:0f68f4ac6d95d12e896c3b7a912b5871619542ec54d3649cf48cc1edd4dd2756", size = 530712279, upload-time = "2026-03-23T18:10:31.481Z" }, + { url = "https://files.pythonhosted.org/packages/1c/ff/6756f1c7ee302f6d202120e0f4f05b432b839908f9071157302cedfc5232/torch-2.11.0-cp312-cp312-win_amd64.whl", hash = "sha256:fbf39280699d1b869f55eac536deceaa1b60bd6788ba74f399cc67e60a5fab10", size = 114556047, upload-time = "2026-03-23T18:10:55.931Z" }, + { url = "https://files.pythonhosted.org/packages/87/89/5ea6722763acee56b045435fb84258db7375c48165ec8be7880ab2b281c5/torch-2.11.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1e6debd97ccd3205bbb37eb806a9d8219e1139d15419982c09e23ef7d4369d18", size = 80606801, upload-time = "2026-03-23T18:10:18.649Z" }, + { url = "https://files.pythonhosted.org/packages/32/d1/8ed2173589cbfe744ed54e5a73efc107c0085ba5777ee93a5f4c1ab90553/torch-2.11.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:63a68fa59de8f87acc7e85a5478bb2dddbb3392b7593ec3e78827c793c4b73fd", size = 419732382, upload-time = "2026-03-23T18:08:30.835Z" }, + { url = "https://files.pythonhosted.org/packages/3d/e1/b73f7c575a4b8f87a5928f50a1e35416b5e27295d8be9397d5293e7e8d4c/torch-2.11.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:cc89b9b173d9adfab59fd227f0ab5e5516d9a52b658ae41d64e59d2e55a418db", size = 530711509, upload-time = "2026-03-23T18:08:47.213Z" }, + { url = "https://files.pythonhosted.org/packages/66/82/3e3fcdd388fbe54e29fd3f991f36846ff4ac90b0d0181e9c8f7236565f82/torch-2.11.0-cp313-cp313-win_amd64.whl", hash = "sha256:4dda3b3f52d121063a731ddb835f010dc137b920d7fec2778e52f60d8e4bf0cd", size = 114555842, upload-time = "2026-03-23T18:09:52.111Z" }, + { url = "https://files.pythonhosted.org/packages/db/38/8ac78069621b8c2b4979c2f96dc8409ef5e9c4189f6aac629189a78677ca/torch-2.11.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:8b394322f49af4362d4f80e424bcaca7efcd049619af03a4cf4501520bdf0fb4", size = 80959574, upload-time = "2026-03-23T18:10:14.214Z" }, + { url = "https://files.pythonhosted.org/packages/6d/6c/56bfb37073e7136e6dd86bfc6af7339946dd684e0ecf2155ac0eee687ae1/torch-2.11.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:2658f34ce7e2dabf4ec73b45e2ca68aedad7a5be87ea756ad656eaf32bf1e1ea", size = 419732324, upload-time = "2026-03-23T18:09:36.604Z" }, + { url = "https://files.pythonhosted.org/packages/07/f4/1b666b6d61d3394cca306ea543ed03a64aad0a201b6cd159f1d41010aeb1/torch-2.11.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:98bb213c3084cfe176302949bdc360074b18a9da7ab59ef2edc9d9f742504778", size = 530596026, upload-time = "2026-03-23T18:09:20.842Z" }, + { url = "https://files.pythonhosted.org/packages/48/6b/30d1459fa7e4b67e9e3fe1685ca1d8bb4ce7c62ef436c3a615963c6c866c/torch-2.11.0-cp313-cp313t-win_amd64.whl", hash = "sha256:a97b94bbf62992949b4730c6cd2cc9aee7b335921ee8dc207d930f2ed09ae2db", size = 114793702, upload-time = "2026-03-23T18:09:47.304Z" }, + { url = "https://files.pythonhosted.org/packages/26/0d/8603382f61abd0db35841148ddc1ffd607bf3100b11c6e1dab6d2fc44e72/torch-2.11.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:01018087326984a33b64e04c8cb5c2795f9120e0d775ada1f6638840227b04d7", size = 80573442, upload-time = "2026-03-23T18:09:10.117Z" }, + { url = "https://files.pythonhosted.org/packages/c7/86/7cd7c66cb9cec6be330fff36db5bd0eef386d80c031b581ec81be1d4b26c/torch-2.11.0-cp314-cp314-manylinux_2_28_aarch64.whl", hash = "sha256:2bb3cc54bd0dea126b0060bb1ec9de0f9c7f7342d93d436646516b0330cd5be7", size = 419749385, upload-time = "2026-03-23T18:07:33.77Z" }, + { url = "https://files.pythonhosted.org/packages/47/e8/b98ca2d39b2e0e4730c0ee52537e488e7008025bc77ca89552ff91021f7c/torch-2.11.0-cp314-cp314-manylinux_2_28_x86_64.whl", hash = "sha256:4dc8b3809469b6c30b411bb8c4cad3828efd26236153d9beb6a3ec500f211a60", size = 530716756, upload-time = "2026-03-23T18:07:50.02Z" }, + { url = "https://files.pythonhosted.org/packages/78/88/d4a4cda8362f8a30d1ed428564878c3cafb0d87971fbd3947d4c84552095/torch-2.11.0-cp314-cp314-win_amd64.whl", hash = "sha256:2b4e811728bd0cc58fb2b0948fe939a1ee2bf1422f6025be2fca4c7bd9d79718", size = 114552300, upload-time = "2026-03-23T18:09:05.617Z" }, + { url = "https://files.pythonhosted.org/packages/bf/46/4419098ed6d801750f26567b478fc185c3432e11e2cad712bc6b4c2ab0d0/torch-2.11.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:8245477871c3700d4370352ffec94b103cfcb737229445cf9946cddb7b2ca7cd", size = 80959460, upload-time = "2026-03-23T18:09:00.818Z" }, + { url = "https://files.pythonhosted.org/packages/fd/66/54a56a4a6ceaffb567231994a9745821d3af922a854ed33b0b3a278e0a99/torch-2.11.0-cp314-cp314t-manylinux_2_28_aarch64.whl", hash = "sha256:ab9a8482f475f9ba20e12db84b0e55e2f58784bdca43a854a6ccd3fd4b9f75e6", size = 419735835, upload-time = "2026-03-23T18:07:18.974Z" }, + { url = "https://files.pythonhosted.org/packages/b1/e7/0b6665f533aa9e337662dc190425abc0af1fe3234088f4454c52393ded61/torch-2.11.0-cp314-cp314t-manylinux_2_28_x86_64.whl", hash = "sha256:563ed3d25542d7e7bbc5b235ccfacfeb97fb470c7fee257eae599adb8005c8a2", size = 530613405, upload-time = "2026-03-23T18:08:07.014Z" }, + { url = "https://files.pythonhosted.org/packages/cf/bf/c8d12a2c86dbfd7f40fb2f56fbf5a505ccf2d9ce131eb559dfc7c51e1a04/torch-2.11.0-cp314-cp314t-win_amd64.whl", hash = "sha256:b2a43985ff5ef6ddd923bbcf99943e5f58059805787c5c9a2622bf05ca2965b0", size = 114792991, upload-time = "2026-03-23T18:08:19.216Z" }, +] + +[[package]] +name = "torchvision" +version = "0.26.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "pillow" }, + { name = "torch" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/ae/e7/56b47cc3b132aea90ccce22bcb8975dec688b002150012acc842846039d0/torchvision-0.26.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c409e1c3fdebec7a3834465086dbda8bf7680eff79abf7fd2f10c6b59520a7a4", size = 1863502, upload-time = "2026-03-23T18:12:57.326Z" }, + { url = "https://files.pythonhosted.org/packages/f4/ec/5c31c92c08b65662fe9604a4067ae8232582805949f11ddc042cebe818ed/torchvision-0.26.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:406557718e62fdf10f5706e88d8a5ec000f872da913bf629aab9297622585547", size = 7767944, upload-time = "2026-03-23T18:12:42.805Z" }, + { url = "https://files.pythonhosted.org/packages/f5/d8/cb6ccda1a1f35a6597645818641701207b3e8e13553e75fce5d86bac74b2/torchvision-0.26.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:d61a5abb6b42a0c0c311996c2ac4b83a94418a97182c83b055a2a4ae985e05aa", size = 7522205, upload-time = "2026-03-23T18:12:54.654Z" }, + { url = "https://files.pythonhosted.org/packages/1c/a9/c272623a0f735c35f0f6cd6dc74784d4f970e800cf063bb76687895a2ab9/torchvision-0.26.0-cp312-cp312-win_amd64.whl", hash = "sha256:7993c01648e7c61d191b018e84d38fe0825c8fcb2720cd0f37caf7ba14404aa1", size = 4255155, upload-time = "2026-03-23T18:12:32.652Z" }, + { url = "https://files.pythonhosted.org/packages/da/80/0762f77f53605d10c9477be39bb47722cc8e383bbbc2531471ce0e396c07/torchvision-0.26.0-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:5d63dd43162691258b1b3529b9041bac7d54caa37eae0925f997108268cbf7c4", size = 1860809, upload-time = "2026-03-23T18:12:47.629Z" }, + { url = "https://files.pythonhosted.org/packages/e6/81/0b3e58d1478c660a5af4268713486b2df7203f35abd9195fea87348a5178/torchvision-0.26.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:a39c7a26538c41fda453f9a9692b5ff9b35a5437db1d94f3027f6f509c160eac", size = 7727494, upload-time = "2026-03-23T18:12:46.062Z" }, + { url = "https://files.pythonhosted.org/packages/b6/dc/d9ab5d29115aa05e12e30f1397a3eeae1d88a511241dc3bce48dc4342675/torchvision-0.26.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:b7e6213620bbf97742e5f79832f9e9d769e6cf0f744c5b53dad80b76db633691", size = 7521747, upload-time = "2026-03-23T18:12:36.815Z" }, + { url = "https://files.pythonhosted.org/packages/a9/1b/f1bc86a918c5f6feab1eeff11982e2060f4704332e96185463d27855bdf5/torchvision-0.26.0-cp313-cp313-win_amd64.whl", hash = "sha256:4280c35ec8cba1fcc8294fb87e136924708726864c379e4c54494797d86bc474", size = 4319880, upload-time = "2026-03-23T18:12:38.168Z" }, + { url = "https://files.pythonhosted.org/packages/66/28/b4ad0a723ed95b003454caffcc41894b34bd8379df340848cae2c33871de/torchvision-0.26.0-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:358fc4726d0c08615b6d83b3149854f11efb2a564ed1acb6fce882e151412d23", size = 1951973, upload-time = "2026-03-23T18:12:48.781Z" }, + { url = "https://files.pythonhosted.org/packages/71/e2/7a89096e6cf2f3336353b5338ba925e0addf9d8601920340e6bdf47e8eb3/torchvision-0.26.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:3daf9cc149cf3cdcbd4df9c59dae69ffca86c6823250442c3bbfd63fc2e26c61", size = 7728679, upload-time = "2026-03-23T18:12:26.196Z" }, + { url = "https://files.pythonhosted.org/packages/69/1d/4e1eebc17d18ce080a11dcf3df3f8f717f0efdfa00983f06e8ba79259f61/torchvision-0.26.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:82c3965eca27e86a316e31e4c3e5a16d353e0bcbe0ef8efa2e66502c54493c4b", size = 7609138, upload-time = "2026-03-23T18:12:35.327Z" }, + { url = "https://files.pythonhosted.org/packages/f3/a4/f1155e943ae5b32400d7000adc81c79bb0392b16ceb33bcf13e02e48cced/torchvision-0.26.0-cp313-cp313t-win_amd64.whl", hash = "sha256:ebc043cc5a4f0bf22e7680806dbba37ffb19e70f6953bbb44ed1a90aeb5c9bea", size = 4248202, upload-time = "2026-03-23T18:12:41.423Z" }, + { url = "https://files.pythonhosted.org/packages/7f/c8/9bffa9c7f7bdf95b2a0a2dc535c290b9f1cc580c3fb3033ab1246ffffdeb/torchvision-0.26.0-cp314-cp314-macosx_12_0_arm64.whl", hash = "sha256:eb61804eb9dbe88c5a2a6c4da8dec1d80d2d0a6f18c999c524e32266cb1ebcd3", size = 1860813, upload-time = "2026-03-23T18:12:39.636Z" }, + { url = "https://files.pythonhosted.org/packages/7b/ac/48f28ffd227991f2e14f4392dde7e8dc14352bb9428c1ef4a4bbf5f7ed85/torchvision-0.26.0-cp314-cp314-manylinux_2_28_aarch64.whl", hash = "sha256:9a904f2131cbfadab4df828088a9f66291ad33f49ff853872aed1f86848ef776", size = 7727777, upload-time = "2026-03-23T18:12:22.549Z" }, + { url = "https://files.pythonhosted.org/packages/a4/21/a2266f7f1b0e58e624ff15fd6f01041f59182c49551ece0db9a183071329/torchvision-0.26.0-cp314-cp314-manylinux_2_28_x86_64.whl", hash = "sha256:0f3e572efe62ad645017ea847e0b5e4f2f638d4e39f05bc011d1eb9ac68d4806", size = 7522174, upload-time = "2026-03-23T18:12:29.565Z" }, + { url = "https://files.pythonhosted.org/packages/fc/ba/1666f90bc0bdd77aaa11dcc42bb9f621a9c3668819c32430452e3d404730/torchvision-0.26.0-cp314-cp314-win_amd64.whl", hash = "sha256:114bec0c0e98aa4ba446f63e2fe7a2cbca37b39ac933987ee4804f65de121800", size = 4348469, upload-time = "2026-03-23T18:12:24.44Z" }, + { url = "https://files.pythonhosted.org/packages/45/8f/1f0402ac55c2ae15651ff831957d083fe70b2d12282e72612a30ba601512/torchvision-0.26.0-cp314-cp314t-macosx_12_0_arm64.whl", hash = "sha256:b7d3e295624a28b3b1769228ce1345d94cf4d390dd31136766f76f2d20f718da", size = 1860826, upload-time = "2026-03-23T18:12:34.1Z" }, + { url = "https://files.pythonhosted.org/packages/d2/6a/18a582fe3c5ee26f49b5c9fb21ad8016b4d1c06d10178894a58653946fda/torchvision-0.26.0-cp314-cp314t-manylinux_2_28_aarch64.whl", hash = "sha256:7058c5878262937e876f20c25867b33724586aa4499e2853b2d52b99a5e51953", size = 7729089, upload-time = "2026-03-23T18:12:31.394Z" }, + { url = "https://files.pythonhosted.org/packages/c5/9b/f7e119b59499edc00c55c03adc9ec3bd96144d9b81c46852c431f9c64a9a/torchvision-0.26.0-cp314-cp314t-manylinux_2_28_x86_64.whl", hash = "sha256:8008474855623c6ba52876589dc52df0aa66e518c25eca841445348e5f79844c", size = 7522704, upload-time = "2026-03-23T18:12:20.301Z" }, + { url = "https://files.pythonhosted.org/packages/d0/6a/09f3844c10643f6c0de5d95abc863420cfaf194c88c7dffd0ac523e2015f/torchvision-0.26.0-cp314-cp314t-win_amd64.whl", hash = "sha256:e9d0e022c19a78552fb055d0414d47fecb4a649309b9968573daea160ba6869c", size = 4454275, upload-time = "2026-03-23T18:12:27.487Z" }, +] + [[package]] name = "tornado" version = "6.5.5" @@ -4221,22 +5118,40 @@ wheels = [ [[package]] name = "transformers" -version = "5.3.0" +version = "4.41.2" source = { registry = "https://pypi.org/simple" } dependencies = [ + { name = "filelock" }, { name = "huggingface-hub" }, { name = "numpy" }, { name = "packaging" }, { name = "pyyaml" }, { name = "regex" }, + { name = "requests" }, { name = "safetensors" }, { name = "tokenizers" }, { name = "tqdm" }, - { name = "typer" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/fc/1a/70e830d53ecc96ce69cfa8de38f163712d2b43ac52fbd743f39f56025c31/transformers-5.3.0.tar.gz", hash = "sha256:009555b364029da9e2946d41f1c5de9f15e6b1df46b189b7293f33a161b9c557", size = 8830831, upload-time = "2026-03-04T17:41:46.119Z" } +sdist = { url = "https://files.pythonhosted.org/packages/50/c9/b8acdf584f19558e29f46d36b5ed80954c2d3831811f129a5a6e84c4537b/transformers-4.41.2.tar.gz", hash = "sha256:80a4db216533d573e9cc7388646c31ed9480918feb7c55eb211249cb23567f87", size = 7841904, upload-time = "2024-05-30T17:59:26.634Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d9/b7/98f821d70102e2d38483bbb7013a689d2d646daa4495377bc910374ad727/transformers-4.41.2-py3-none-any.whl", hash = "sha256:05555d20e43f808de1ef211ab64803cdb513170cef70d29a888b589caebefc67", size = 9092643, upload-time = "2024-05-30T17:59:20.944Z" }, +] + +[[package]] +name = "triton" +version = "3.6.0" +source = { registry = "https://pypi.org/simple" } wheels = [ - { url = "https://files.pythonhosted.org/packages/b8/88/ae8320064e32679a5429a2c9ebbc05c2bf32cefb6e076f9b07f6d685a9b4/transformers-5.3.0-py3-none-any.whl", hash = "sha256:50ac8c89c3c7033444fb3f9f53138096b997ebb70d4b5e50a2e810bf12d3d29a", size = 10661827, upload-time = "2026-03-04T17:41:42.722Z" }, + { url = "https://files.pythonhosted.org/packages/17/5d/08201db32823bdf77a0e2b9039540080b2e5c23a20706ddba942924ebcd6/triton-3.6.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:374f52c11a711fd062b4bfbb201fd9ac0a5febd28a96fb41b4a0f51dde3157f4", size = 176128243, upload-time = "2026-01-20T16:16:07.857Z" }, + { url = "https://files.pythonhosted.org/packages/ab/a8/cdf8b3e4c98132f965f88c2313a4b493266832ad47fb52f23d14d4f86bb5/triton-3.6.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:74caf5e34b66d9f3a429af689c1c7128daba1d8208df60e81106b115c00d6fca", size = 188266850, upload-time = "2026-01-20T16:00:43.041Z" }, + { url = "https://files.pythonhosted.org/packages/3c/12/34d71b350e89a204c2c7777a9bba0dcf2f19a5bfdd70b57c4dbc5ffd7154/triton-3.6.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:448e02fe6dc898e9e5aa89cf0ee5c371e99df5aa5e8ad976a80b93334f3494fd", size = 176133521, upload-time = "2026-01-20T16:16:13.321Z" }, + { url = "https://files.pythonhosted.org/packages/f9/0b/37d991d8c130ce81a8728ae3c25b6e60935838e9be1b58791f5997b24a54/triton-3.6.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:10c7f76c6e72d2ef08df639e3d0d30729112f47a56b0c81672edc05ee5116ac9", size = 188289450, upload-time = "2026-01-20T16:00:49.136Z" }, + { url = "https://files.pythonhosted.org/packages/ce/4e/41b0c8033b503fd3cfcd12392cdd256945026a91ff02452bef40ec34bee7/triton-3.6.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1722e172d34e32abc3eb7711d0025bb69d7959ebea84e3b7f7a341cd7ed694d6", size = 176276087, upload-time = "2026-01-20T16:16:18.989Z" }, + { url = "https://files.pythonhosted.org/packages/35/f8/9c66bfc55361ec6d0e4040a0337fb5924ceb23de4648b8a81ae9d33b2b38/triton-3.6.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d002e07d7180fd65e622134fbd980c9a3d4211fb85224b56a0a0efbd422ab72f", size = 188400296, upload-time = "2026-01-20T16:00:56.042Z" }, + { url = "https://files.pythonhosted.org/packages/49/55/5ecf0dcaa0f2fbbd4420f7ef227ee3cb172e91e5fede9d0ecaddc43363b4/triton-3.6.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ef5523241e7d1abca00f1d240949eebdd7c673b005edbbce0aca95b8191f1d43", size = 176138577, upload-time = "2026-01-20T16:16:25.426Z" }, + { url = "https://files.pythonhosted.org/packages/df/3d/9e7eee57b37c80cec63322c0231bb6da3cfe535a91d7a4d64896fcb89357/triton-3.6.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a17a5d5985f0ac494ed8a8e54568f092f7057ef60e1b0fa09d3fd1512064e803", size = 188273063, upload-time = "2026-01-20T16:01:07.278Z" }, + { url = "https://files.pythonhosted.org/packages/48/db/56ee649cab5eaff4757541325aca81f52d02d4a7cd3506776cad2451e060/triton-3.6.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0b3a97e8ed304dfa9bd23bb41ca04cdf6b2e617d5e782a8653d616037a5d537d", size = 176274804, upload-time = "2026-01-20T16:16:31.528Z" }, + { url = "https://files.pythonhosted.org/packages/f6/56/6113c23ff46c00aae423333eb58b3e60bdfe9179d542781955a5e1514cb3/triton-3.6.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:46bd1c1af4b6704e554cad2eeb3b0a6513a980d470ccfa63189737340c7746a7", size = 188397994, upload-time = "2026-01-20T16:01:14.236Z" }, ] [[package]] @@ -4296,6 +5211,32 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/c2/14/e2a54fabd4f08cd7af1c07030603c3356b74da07f7cc056e600436edfa17/tzlocal-5.3.1-py3-none-any.whl", hash = "sha256:eb1a66c3ef5847adf7a834f1be0800581b683b5608e74f86ecbcef8ab91bb85d", size = 18026, upload-time = "2025-03-05T21:17:39.857Z" }, ] +[[package]] +name = "ultralytics" +version = "8.0.81" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "matplotlib" }, + { name = "numpy" }, + { name = "opencv-python" }, + { name = "pandas" }, + { name = "pillow" }, + { name = "psutil" }, + { name = "pyyaml" }, + { name = "requests" }, + { name = "scipy" }, + { name = "seaborn" }, + { name = "sentry-sdk" }, + { name = "thop" }, + { name = "torch" }, + { name = "torchvision" }, + { name = "tqdm" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b9/2a/e1f6d2676e6bb666fea16a78abe7efadc0e5141c0ead2e9d8ec5f7a0ee4b/ultralytics-8.0.81.tar.gz", hash = "sha256:45cbdf7b467a7c008eaaf39639dbe09e4651b1a1c8bfc9e12a910aedc783d0f8", size = 477289, upload-time = "2023-04-16T22:47:43.123Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/bb/e275eb3b0a494f3c9c75172f3f87e1de12bc55635d11d54e52568e7d5fdd/ultralytics-8.0.81-py3-none-any.whl", hash = "sha256:242c7c499c39c4ad6cd0dea77c59a6d2c476972a61f6815400df0e41be147256", size = 527003, upload-time = "2023-04-16T22:47:40.864Z" }, +] + [[package]] name = "uncalled-for" version = "0.2.0" @@ -4524,6 +5465,18 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/ef/5c/2c189d18d495dd0fa3f27ccc60762bbc787eed95b9b0147266e72bb76585/xyzservices-2025.11.0-py3-none-any.whl", hash = "sha256:de66a7599a8d6dad63980b77defd1d8f5a5a9cb5fc8774ea1c6e89ca7c2a3d2f", size = 93916, upload-time = "2025-11-22T11:31:50.525Z" }, ] +[[package]] +name = "yapf" +version = "0.43.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "platformdirs" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/23/97/b6f296d1e9cc1ec25c7604178b48532fa5901f721bcf1b8d8148b13e5588/yapf-0.43.0.tar.gz", hash = "sha256:00d3aa24bfedff9420b2e0d5d9f5ab6d9d4268e72afbf59bb3fa542781d5218e", size = 254907, upload-time = "2024-11-14T00:11:41.584Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/37/81/6acd6601f61e31cfb8729d3da6d5df966f80f374b78eff83760714487338/yapf-0.43.0-py3-none-any.whl", hash = "sha256:224faffbc39c428cb095818cf6ef5511fdab6f7430a10783fdfb292ccf2852ca", size = 256158, upload-time = "2024-11-14T00:11:39.37Z" }, +] + [[package]] name = "zipp" version = "3.23.0"